[
  {
    "path": ".github/ISSUE_TEMPLATE.md",
    "content": "Please provide the following when reporting an issue:\n\n- [ ] Description of the problem, and how it differs from what you expected.\n- [ ] Version of Turf you are using, and of any other relevant software.\n- [ ] GeoJSON data as a [gist file](https://gist.github.com/) or [geojson.io](https://geojson.io/) (filename extension must be `.geojson`). Simple reproducible examples are preferrable.\n- [ ] Snippet of source code for complex examples using [jsfiddle](https://jsfiddle.net/).\n- [ ] Confirmation this issue hasn't already been reported, or is resolved and just hasn't been released yet.\n\n<!-- Love turf? Please consider supporting our collective:\n👉  https://opencollective.com/turf/donate -->\n"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE.md",
    "content": "Please provide the following when creating a PR:\n\n- [ ] Meaningful title, including the name of the package being modified.\n- [ ] Summary of the changes.\n- [ ] Heads up if this is a breaking change.\n- [ ] Any issues this [resolves](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests).\n- [ ] Inclusion of your details in the `contributors` field of `package.json` - you've earned it! 👏\n- [ ] Confirmation you've read the steps for [preparing a pull request](https://github.com/Turfjs/turf/blob/master/docs/CONTRIBUTING.md#preparing-a-pull-request).\n"
  },
  {
    "path": ".github/workflows/ci.yml",
    "content": "name: CI build\n\non:\n  push:\n    branches:\n      - master\n      - support/6.x\n  pull_request:\n    branches:\n      - master\n      - support/6.x\n\npermissions:\n  contents: read\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n\n    strategy:\n      matrix:\n        node-version: [18.x, 20.x, 22.x, 24.x]\n\n    steps:\n      - name: Checkout\n        uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2\n\n      - name: Install pnpm\n        uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # 4.1.0\n        with:\n          run_install: false\n\n      - name: Use Node.js ${{ matrix.node-version }}\n        uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # 4.3.0\n        with:\n          cache: \"pnpm\"\n          node-version: ${{ matrix.node-version }}\n\n      - run: pnpm install --frozen-lockfile\n      - run: git diff --exit-code\n      - run: pnpm test\n"
  },
  {
    "path": ".github/workflows/prerelease.yml",
    "content": "name: prerelease\n\non:\n  push:\n    branches: [master]\n\njobs:\n  build:\n    strategy:\n      fail-fast: true\n      matrix:\n        node:\n          - 18\n        platform:\n          - ubuntu-latest\n    name: \"${{matrix.platform}} / Node.js ${{ matrix.node }}\"\n    runs-on: ${{matrix.platform}}\n\n    steps:\n      - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2\n        with:\n          fetch-depth: 0\n\n      - name: Install pnpm\n        uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # 4.1.0\n        with:\n          run_install: false\n\n      - name: Use Node.js ${{ matrix.node-version }}\n        uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # 4.3.0\n        with:\n          node-version: ${{ matrix.node-version }}\n          registry-url: \"https://registry.npmjs.org\"\n          cache: \"pnpm\"\n\n      - run: npm whoami\n        env:\n          NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}\n\n      - run: pnpm install --frozen-lockfile\n\n      - run: pnpm test\n\n      - name: run publish\n        run: lerna publish minor --canary --include-merged-tags --force-publish  --dist-tag prerelease --ignore-scripts true --yes\n        env:\n          NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}\n"
  },
  {
    "path": ".github/workflows/release.yml",
    "content": "name: Publish release\n\non:\n  push:\n    tags:\n      - \"v*.*.*\"\n\npermissions:\n  id-token: write\n  contents: write\n\njobs:\n  build:\n    environment: release\n    strategy:\n      fail-fast: true\n      matrix:\n        node:\n          - 20\n        platform:\n          - ubuntu-latest\n    name: \"${{matrix.platform}} / Node.js ${{ matrix.node }}\"\n    runs-on: ${{matrix.platform}}\n\n    steps:\n      - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2\n        with:\n          fetch-depth: 0\n\n      - name: Install pnpm\n        uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # 4.1.0\n        with:\n          run_install: false\n\n      - name: Use Node.js ${{ matrix.node-version }}\n        uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # 4.3.0\n        with:\n          node-version: ${{ matrix.node-version }}\n          registry-url: \"https://registry.npmjs.org\"\n          cache: \"pnpm\"\n\n      - run: npm whoami\n        env:\n          NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}\n\n      - run: pnpm install --frozen-lockfile\n\n      - run: pnpm test\n\n      - name: run publish\n        run: lerna publish from-package --ignore-scripts true --yes\n        env:\n          NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}\n\n      - name: Create Github Release\n        uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # 2.2.1\n        with:\n          make_latest: true\n          generate_release_notes: true\n          draft: true\n"
  },
  {
    "path": ".gitignore",
    "content": ".rpt2_cache\npackages/*/dist\nmain.js\nmain.es.js\nmain.mjs\nmain.min.js\nindex.mjs\n*.min.js\n*.es5.js\n.esm-cache\npackage-lock.json\nenv\n.nyc_output\nlib-cov\n*.seed\n*.log\n*.csv\n*.dat\n*.out\n*.pid\n.idea/*\ntypes.js\n.DS_Store\ntypes.d.ts\n\npids\nlogs\nresults\n\nnpm-debug.log*\n\nnode_modules\n\n.vscode\n\n.nx/\n.cursor/rules/nx-rules.mdc\n.github/instructions/nx.instructions.md\n"
  },
  {
    "path": ".husky/pre-commit",
    "content": "pnpm lint-staged\n"
  },
  {
    "path": ".monorepolint.config.mjs",
    "content": "// @ts-check\nimport * as path from \"node:path\";\nimport { existsSync } from \"node:fs\";\nimport * as fs from \"node:fs/promises\";\nimport {\n  alphabeticalDependencies,\n  alphabeticalScripts,\n  packageOrder,\n  packageEntry,\n  packageScript,\n  requireDependency,\n  REMOVE,\n} from \"@monorepolint/rules\";\n\nconst TS_PACKAGES = []; // projects that use typescript to build\nconst JS_PACKAGES = []; // projects that use javascript/rollup to build\nconst MAIN_PACKAGE = \"@turf/turf\";\n\nconst TAPE_PACKAGES = []; // projects that have tape tests\nconst TYPES_PACKAGES = []; // projects that have types tests\nconst TSTYCHE_PACKAGES = []; // projects that use tstyche for type tests.\nconst BENCH_PACKAGES = []; // projects that have benchmarks\n\n// iterate all the packages and figure out what buckets everything falls into\nconst packagesPath = path.join(process.cwd(), \"packages\");\nfor (const pk of await fs.readdir(packagesPath)) {\n  if (pk === \"turf\") {\n    continue;\n  }\n\n  const name = JSON.parse(\n    await fs.readFile(path.join(packagesPath, pk, \"package.json\"), \"utf8\")\n  ).name;\n\n  if (existsSync(path.join(packagesPath, pk, \"index.ts\"))) {\n    TS_PACKAGES.push(name);\n  } else {\n    JS_PACKAGES.push(name);\n  }\n\n  if (existsSync(path.join(pk, \"test.js\"))) {\n    TAPE_PACKAGES.push(name);\n  }\n\n  if (existsSync(path.join(packagesPath, pk, \"types.ts\"))) {\n    TYPES_PACKAGES.push(name);\n  }\n\n  if (existsSync(path.join(packagesPath, pk, \"test/types.tst.ts\"))) {\n    TSTYCHE_PACKAGES.push(name);\n  }\n}\n\nconst TS_TAPE_PACKAGES = TAPE_PACKAGES.filter(\n  (pkg) => -1 !== TS_PACKAGES.indexOf(pkg)\n);\nconst JS_TAPE_PACKAGES = TAPE_PACKAGES.filter(\n  (pkg) => -1 !== JS_PACKAGES.indexOf(pkg)\n);\n\nexport default {\n  rules: [\n    packageOrder({\n      options: {\n        order: [\n          \"name\",\n          \"version\",\n          \"private\",\n          \"description\",\n          \"author\",\n          \"contributors\",\n          \"license\",\n          \"bugs\",\n          \"homepage\",\n          \"repository\",\n          \"funding\",\n          \"publishConfig\",\n          \"keywords\",\n          \"type\",\n          \"main\",\n          \"module\",\n          \"types\",\n          \"exports\",\n          \"browser\",\n          \"sideEffects\",\n          \"files\",\n          \"scripts\",\n          \"husky\",\n          \"lint-staged\",\n          \"packageManager\",\n          \"devDependencies\",\n          \"dependencies\",\n        ],\n      },\n      includeWorkspaceRoot: true,\n    }),\n    alphabeticalDependencies({ includeWorkspaceRoot: true }),\n    alphabeticalScripts({ includeWorkspaceRoot: true }),\n    packageEntry({\n      options: {\n        entries: {\n          type: \"module\",\n          main: \"dist/cjs/index.cjs\",\n          module: \"dist/esm/index.js\",\n          types: \"dist/esm/index.d.ts\",\n          sideEffects: false,\n          publishConfig: {\n            access: \"public\",\n          },\n          // @turf/turf is commonly consumed through CDNs, moving this output file is a breaking change for anyone\n          // who has a hardcoded reference to this specific file, instead of letting the CDN pick the path.\n          // Example of a URL that will break: https://unpkg.com/@turf/turf/dist/turf.min.js\n          // Example of a URL that will keep working: https://unpkg.com/@turf/turf\n          browser: \"turf.min.js\",\n          files: [\"dist\", \"turf.min.js\"],\n          exports: {\n            \"./package.json\": \"./package.json\",\n            \".\": {\n              import: {\n                types: \"./dist/esm/index.d.ts\",\n                default: \"./dist/esm/index.js\",\n              },\n              require: {\n                types: \"./dist/cjs/index.d.cts\",\n                default: \"./dist/cjs/index.cjs\",\n              },\n            },\n          },\n        },\n      },\n      includePackages: [MAIN_PACKAGE],\n    }),\n\n    packageEntry({\n      options: {\n        entries: {\n          type: \"module\",\n          main: \"dist/cjs/index.cjs\",\n          module: \"dist/esm/index.js\",\n          types: \"dist/esm/index.d.ts\",\n          sideEffects: false,\n          publishConfig: {\n            access: \"public\",\n          },\n          exports: {\n            \"./package.json\": \"./package.json\",\n            \".\": {\n              import: {\n                types: \"./dist/esm/index.d.ts\",\n                default: \"./dist/esm/index.js\",\n              },\n              require: {\n                types: \"./dist/cjs/index.d.cts\",\n                default: \"./dist/cjs/index.cjs\",\n              },\n            },\n          },\n        },\n      },\n      includePackages: [...TS_PACKAGES, ...JS_PACKAGES],\n    }),\n\n    packageEntry({\n      options: {\n        entries: {\n          files: [\"dist\"],\n        },\n      },\n      includePackages: [...TS_PACKAGES, ...JS_PACKAGES],\n    }),\n\n    packageEntry({\n      options: {\n        entries: {\n          funding: \"https://opencollective.com/turf\",\n        },\n      },\n    }),\n\n    packageScript({\n      options: {\n        scripts: {\n          docs: REMOVE,\n          test: \"pnpm run /test:.*/\",\n        },\n      },\n      excludePackages: [MAIN_PACKAGE],\n    }),\n\n    packageScript({\n      options: {\n        scripts: {\n          build: \"tsup --config ../../tsup.config.ts\",\n        },\n      },\n      includePackages: [...TS_PACKAGES, ...JS_PACKAGES],\n    }),\n\n    packageScript({\n      options: {\n        scripts: {\n          build:\n            \"tsup --config ../../tsup.config.ts && rollup -c rollup.config.js\",\n        },\n      },\n      includePackages: [MAIN_PACKAGE],\n    }),\n\n    packageScript({\n      options: {\n        scripts: {\n          bench: \"tsx bench.ts\",\n          \"test:tape\": \"tsx test.ts\",\n        },\n      },\n      includePackages: [...TS_TAPE_PACKAGES, ...JS_TAPE_PACKAGES],\n    }),\n\n    packageScript({\n      options: {\n        scripts: {\n          \"test:types\":\n            \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\",\n        },\n      },\n      includePackages: TYPES_PACKAGES,\n    }),\n\n    packageScript({\n      options: {\n        scripts: {\n          \"test:types\": \"tstyche\",\n        },\n      },\n      includePackages: TSTYCHE_PACKAGES,\n    }),\n\n    requireDependency({\n      options: {\n        devDependencies: {\n          benchmark: \"^2.1.4\",\n          glob: REMOVE,\n          tape: \"^5.9.0\",\n          tsup: \"^8.4.0\",\n          tsx: \"^4.19.4\",\n        },\n      },\n      includePackages: [...TS_PACKAGES, ...JS_PACKAGES],\n    }),\n\n    requireDependency({\n      options: {\n        dependencies: {\n          tslib: \"^2.8.1\",\n        },\n        devDependencies: {\n          \"@types/benchmark\": \"^2.1.5\",\n          \"@types/tape\": \"^5.8.1\",\n          typescript: \"^5.8.3\",\n        },\n      },\n      includePackages: TS_PACKAGES,\n    }),\n\n    requireDependency({\n      options: {\n        devDependencies: {\n          tstyche: \"^6.2.0\",\n        },\n      },\n      includePackages: TSTYCHE_PACKAGES,\n    }),\n\n    requireDependency({\n      options: {\n        dependencies: {\n          \"@types/geojson\": \"^7946.0.10\",\n        },\n      },\n      includePackages: [MAIN_PACKAGE, ...TS_PACKAGES, ...JS_PACKAGES],\n    }),\n  ],\n};\n"
  },
  {
    "path": ".prettierignore",
    "content": "dist\n*.md\nnode_modules\n\n# is actually output\npackages/turf/turf.min.js\npackages/turf/test.example.js\n\npnpm-lock.yaml\n\n/.nx/cache\n\n/.nx/workspace-data"
  },
  {
    "path": ".prettierrc.json",
    "content": "{\n  \"trailingComma\": \"es5\",\n  \"overrides\": [\n    {\n      \"files\": \"*.{geojson,json}\",\n      \"options\": {\n        \"printWidth\": 90\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "CHANGELOG.md",
    "content": "Changelog is no longer maintained. See Turf Github [releases](https://github.com/Turfjs/turf/releases)\n\n# 7.0.0\n\n## ⚠️  Breaking\n- Move to @types/geojson package instead of declaring our own. Typescript consumers of Turf will need to import from @types/geojson. (#2158)\n- Move distribution JS to target ES2017 (#2237)\n- Please change to using named exports instead of default exports from the various packages\n- [`@turf/helpers`](helpers) Correct the conversion factor for degrees (#2177)\n- [`@turf/helpers`](helpers) polygon() will now throw if the first and last coordinates are not the same (#2173)\n- [`@turf/helpers`](helpers) Separate AreaUnits into its own type (#2393)\n- [`@turf/area`](area) Fix earth radius to use WGS84 median earth radius (#2166)\n- [`@turf/turf`](turf) Remove re-exports for turf 4.x compatability (#2183)\n- [`@turf/rectangle-grid`](rectangle-grid) Fix correctness for large areas (#2106)\n- [`@turf/square-grid](square-grid) Fix correctness for large areas (#2106)\n- [`@turf/union`](union) Accept FeatureCollection for multiple inputs (#2247)\n- [`@turf/difference`](difference) Accept FeatureCollection for multiple inputs (#2247)\n- [`@turf/intersect`](intersect) Accept FeatureCollection for multiple inputs (#2247)\n- [`@turf/buffer`](buffer) Add undefined return for when the geometry is invalid (#2613)\n\n## 🏅 New Features/Enhancements\n- [`@turf/kinks`](kinks) Move to sweepline-intersections library for performance (#1896)\n- [`@turf/buffer](buffer) Reduce bundle size by moving from turf-jsts to @turf/jsts (#2217)\n- [`@turf/boolean-equal`](boolean-equal) Add option for precision (#2231)\n- [`@turf/boolean-point-in-polygon`](boolean-point-in-polygon) Move to point-in-polygon-hao library for performance and correctness (#1893)\n- [`@turf/line-intersect`][line-intersect] Move to sweepline-intersections library for performance (#2033)\n- [`@turf/boolean-contains`](boolean-contains) Add multipolygon support (#2338)\n- [`@turf/nearest-point`](nearest-point) Add unit option (#2415)\n- [`@turf/voronoi`](voronoi) Retain properties from points (#1450)\n\n## 🐛 Bug Fixes\n- [`@turf/polygon-smooth`](polygon-smooth) Options argument is now actually optional (#2149)\n- [`@turf/polygon-smooth`](polygon-smooth) Fix crashes with polygons containing multiple holes (#2323)\n- [`@turf/line-arc`](line-arc) Ensure all points are generated when the first and last points are the same (#2142)\n- [`@turf/clone`](clone) Fix cloning of features with null geometries (#2316)\n- [`@turf/dissolve`](dissolve) Now correctly depends on @turf/flatten (#2345)\n- [`@turf/clean-coords`](clean-coords) Allow 3 coordinate closed LineStrings (#2178)\n- [`@turf/helpers`](helpers) Add alternate spellings for Units: millimetres, centimetres, metres, kilometres (#2168)\n- [`@turf/ellipse`](ellipse) Add pivot and angle options to typescript (#2174)\n- [`@turf/quadrat-analysis`](quadrat-analysis) Fix test flake (#2182)\n- [`@turf/bbox`](bbox) Use input bbox instead of computing it (#2171)\n- [`@turf/transform-scale`](transform-scale) Removes invalid bbox when scaling (#2171)\n- [`@turf/invariant`](invariant) getCoord now shallow clones its result to prevent accidental mutations (#2167)\n- [`@turf/line-overlap`](line-overlap) Identify multiple overlaps on a single segment (#2134)\n- [`@turf/transform-scale`](transform-scale) Fix factor to allow only numbers >= 0 (#2169)\n- [`@turf/voronoi`](voronoi) Make options optional (#2195)\n- [`@turf/boolean-within`](boolean-within) Fix multipoint checks (#2216)\n- [`@turf/points-within-polygon`](points-within-polygon) Fix dropped properties on MultiPoint results (#2227)\n- [`@turf/random`](random) Throws error on invalid bbox inputs (#2172)\n- [`@turf/boolean-parallel`](boolean-parallel) Lines with 180 degree angle between them are also considered parallel (#2475)\n- [`@turf/unkink-polygon`](unkink-polygon) Fix a maximum call stack size exceeded error with very large polygons (#2504)\n- [`@turf/line-arc`](line-arc) Number of arc segments generated wasn't related to steps value passed in (#2524)\n- [`@turf/boolean-equal`](boolean-equal) Replace geojson-equality with new implementation (#2531)\n- [`@turf/boolean-overlap`](boolean-overlap) Replace geojson-equality with new implementation (#2531)\n- [`@turf/boolean-within`](boolean-within) Now correctly checks that the final point is contained (#2599)\n\n## 📖 Documentation\n- [`@turf/bbox`][bbox] Improve documentation (#2153)\n- [`@turf/great-circle`][great-circle] Add license for arc.js (#2175)\n- [`@turf/boolean-crosses`](boolean-crosses) Document OpenGIS Simple Feature Spec requirement (#2184)\n- [`@turf/turf-clone`](clone) Now has more useful Typescript inference (#2239)\n- [`@turf/centroid`](centroid) Improve docs (#2213)\n- [`@turf/buffer`](buffer) Clean up Typescript types (#2188)\n- [`@turf/polygon-smooth`](polygon-smooth) Clean up a typo (#2293)\n- [`@turf/nearest-point-on-line`](nearest-point-on-line) Clean up typescript types (#2296)\n- [`@turf/boolean-touches`](boolean-touches) Add boolean-touches to docs (#2431)\n- [`@turf/boolean-equal`](boolean-equal) Improve docs (#2412)\n\n- Remove Bower references (#2146)\n- Fix typo in README (#2313)\n- Lots of cleanup for CONTRIBUTING, README, and RELEASING (#2186)\n- Fix docs generation (#2279)\n- Add a link to turf_dart (#2286)\n\n## 🔔 Misc\n- [`@turf/turf](turf) Add booleanIntersects typescript export (#2157)\n- [`@turf/turf](turf) Add booleanTouches export (#2170)\n- [`@turf/turf](turf) Add booleanConcave export (#2265)\n- [`@turf/simplify`](simplify) Clean up internals for less object churn (#2561)\n- [`@turf/helpers](helpers) Make isObject a little more accurate (#2176)\n- Migrate from geojsonhint to @placemark/check-geojson (#2571)\n- Add custom types entry point to exports, required by Typescript for node16, nodenext and bundler module resolution strategies (#2400, #2452)\n- types.ts tests are now run in strict mode (#2363)\n- Uses tslib now for smaller bundles (#2165)\n- Remove object-assign dependency from all packages (#2241)\n- Lots of dependencies have been upgraded\n\n# 6.5.0\n\n## 🏅 New Features/Enhancements\n- [`@turf/points-with-polygon`](points-with-polygon) Add MultiPoint support\n  (PR https://github.com/Turfjs/turf/pull/2137 - Author @twelch)\n\n## 🐛 Bug Fixes\n- [`@turf/dissolve`](dissolve) Complete rewrite of the dissolve module to resolve many bugs\n  (PR https://github.com/Turfjs/turf/pull/2110 - Author @rowanwins)\n\n- [`@turf/mask`](mask) Complete rewrite of the mask module to resolve many bugs\n  (PR https://github.com/Turfjs/turf/pull/2130 - Author @rowanwins)\n\n- [`@turf/boolean-valid`](boolean-valid) Add missing dependency to\n  (PR https://github.com/Turfjs/turf/pull/2094 - Author @rycgar)\n\n## 📖 Documentation\n- [`@turf/boolean-overlap`](boolean-overlap) Improve clarity\n  (PR https://github.com/Turfjs/turf/pull/2133 - Author @patrickbrett)\n\n## 🔔 Misc\n- Enable TS Strict Mode\n  (PR https://github.com/Turfjs/turf/pull/2126 - Author @mfedderly)\n\n\n# 6.4.0\n\n## 🏅 New Features/Enhancements\n\n- [`@turf/boolean-point-on-line`](boolean-point-on-line) Added an `epislon` option to help in floating point comparison.\n  (PR https://github.com/Turfjs/turf/pull/2051 - Author @okcoker)\n\n## 🐛 Bug Fixes\n\n- [`@turf/line-slice-along`](line-slice-along) Fixed a bug where the offset distance equal to the length of the line\n  (PR https://github.com/Turfjs/turf/pull/2030 - Author @EricPKerr)\n\n- [`@turf/helpers`](helpers) Fixed the conversion ratio for converting meters to yards and vice-versa\n  (PR https://github.com/Turfjs/turf/pull/2046 - Author @anotherhale)\n\n- [`@turf/center-median`](center-median) Fixed a missing TS type import\n  (PR https://github.com/Turfjs/turf/pull/2044 - Author @Seairth)\n\n- [`@turf/bezier-spline](bezier-spline) Fix a bug ensuring the spline result reaches the end of the input\n  (PR https://github.com/Turfjs/turf/pull/2090 - Author @the-nemz)\n\n## 📖 Documentation\n- [`@turf/transform-rotate`](transform-rotate) and [`@turf/ellipse`](ellipse)) Improve documentation for angle parameter\n  (PR https://github.com/Turfjs/turf/pull/2016 - Author @pasieronen)\n\n- [`@turf/line-chunk`](line-chunk) Fix an invalid anchor\n  (PR https://github.com/Turfjs/turf/pull/2071 - Author @GraxMonzo)\n\n- [`@turf/distance`](distance) Enhance distance doco so supported inputs are clearer\n  (PR https://github.com/Turfjs/turf/pull/2032 - Author @rowanwins)\n\n## 🔔 Misc\n- [`@turf/concave`](concave) Replace deprecated topojson dependency\n  (PR https://github.com/Turfjs/turf/pull/2037 - Author @elliots)\n\n- Work towards enabling TS Strict Mode\n  (PR https://github.com/Turfjs/turf/pull/2053 - Author @mfedderly)\n\n\n# 6.3.0\n\n### Fix issues importing Turf for react-native, webpack 5, and other bundlers\n  (PR https://github.com/Turfjs/turf/pull/2004 - Author r0b0t3d)\n  (PR https://github.com/Turfjs/turf/pull/2011 - Author mfedderly)\n\n### [`@turf/turf`][turf] expose @turf/boolean-intersect\n  (PR https://github.com/Turfjs/turf/pull/2007 - Author rowanwins)\n\n# 6.2.0\n\nAfter a bit of hiatus, TurfJS is resuming releases.\n\n## ⭐️ Major Updates\n\n- ES Modules available for all packages\n- Tree shaking should significantly reduce import size of @turf/turf\n- Better support for ESM modules (PR https://github.com/Turfjs/turf/pull/1942 - Author @diachedelic)\n- Clean-up of test and benchmark running to make publishing easier\n- Enforce styling using Prettier\n- Enable ESLint and get rid of unused variables\n- Upgrade rollup for more correct javascript module builds\n- Only include ES5 code\n\n## 🚀 New Modules\n\n### [`@turf/boolean-touches`][boolean-touches]\n\nDetermines if two features touch but do not intersect\n\n### [`@turf/boolean-valid`][boolean-valid]\n\nChecks if the geometry is a valid according to the OGC Simple Feature Specification\n\n### [`@turf/quadrat-analysis`][quadrat-analysis]\n\nPerforms a quadrat analysis on a set of points\n\n### [`@turf/rectangle-grid`][rectangle-grid]\n\nCreates a grid of rectangles from a bounding box\n\n### [`@turf/voroni`][voronoi]\n\nTypescript types for the options parameter have been fixed\n(PR https://github.com/Turfjs/turf/pull/1424 - Author @stevage)\n\n### [`@turf/points-within-polygon`][points-within-polygon]\n\nTypescript types around the Feature's Properties will now be preserved.\n(PR https://github.com/Turfjs/turf/pull/1761 - Author @rugheid)\n\n### [`@turf/rewind`][rewind]\n\nTypescript types for the 'reverse' option are now correct. Previously it was misnamed as 'reversed'.\n(PR https://github.com/Turfjs/turf/pull/1786 - Author @jonnycornwell)\n\n### [`@turf/difference`][difference]\n\nNo longer publishes an .mjs file.\n\n### [`@turf/meta`][meta]\n\nNo longer publishes an .mjs file.\n\n### [`@turf/tag`][tag]\n\nAdd MultiPolygon support.\n(PR https://github.com/Turfjs/turf/pull/1996 - Author bryceroney)\n\n## 🐛 Bug Fixes\n\n- [`@turf/centroid`](centroid) Don't visit first point twice when calculating centroid\n  (PR https://github.com/Turfjs/turf/pull/1894 - Author @rowanwins)\n\n- [`@turf/transform-translate`](transform-translate) Better handling of negative distances\n  (PR https://github.com/Turfjs/turf/pull/1895 - Author @rowanwins)\n\n- [`@turf/union`](union), [`@turf/difference`](difference), [`@turf/intersect`](intersect) Use polygon-clipping library to fix correctness issues\n  (PR https://github.com/Turfjs/turf/pull/1916 - Authors @mbullington, @ngottlieb)\n\n- [`@turf/buffer`](buffer) Change default number of steps to 8, and actually support the steps option\n  (PR https://github.com/Turfjs/turf/pull/1931 - Author stevenchanin)\n\n- [`@turf/buffer`](buffer) Fix projection issues that produce undersized buffers at non-equatorial latitudes\n  (PR https://github.com/Turfjs/turf/pull/1956 - Author dyakovlev)\n\n- [`@turf/helpers`](helpers) Add runtime checks to point() method, fixing an API break\n  (PR https://github.com/Turfjs/turf/pull/1964)\n\n## 🏅 New Features/Enhancements\n\n- [`@turf/boolean-overlap`](boolean-overlap) Better performance for MultiPoint geometries\n  (PR https://github.com/Turfjs/turf/pull/1910 - Author @mfedderly)\n\n- [`@turf/helpers`](helpers) Add hectares to convertArea\n  (PR https://github.com/Turfjs/turf/pull/1943 - Author @DanielJDufour)\n\n- [`@turf/great-circle`](great-circle) Update Typescript types to support MultiLineString input\n  (PR https://github.com/Turfjs/turf/pull/1928 - Author kronick)\n\n## 📖 Documentation\n\n- [`@turf/square-grid`](square-grid) Clarify inputs\n  (PR https://github.com/Turfjs/turf/pull/1885 - Author @raphael-leger)\n\n- [`@turf/greater-circle`](greater-circle) Clarify properties option example\n  (PR https://github.com/Turfjs/turf/pull/1888 - Author @chris-catignani)\n\n## ⚠️ Breaking Change\n\n- [`@turf/line-to-polygon`](line-to-polygon) no longer modifies its input unless the mutate option is true\n  (PR https://github.com/Turfjs/turf/pull/1879 - Author @MortenBirk)\n\n- [`@turf/unkink-polygon`](unkink-polygon) remove Number.prototype.modulo override\n  (PR https://github.com/Turfjs/turf/pull/1978)\n\n# 5.0.0 🎉\n\n## ⭐️ Major Updates\n\n- TurfJS now supports ES Modules ([Related PR's](https://github.com/Turfjs/turf/pulls?q=is%3Apr+modules+is%3Aclosed+label%3Aes-module))\n- Optional parameters are now defined as an `Object`.\n\n## 🚀 New Modules\n\n### [`@turf/voronoi`][voronoi]\nTakes a FeatureCollection of points, and a bounding box, and returns a FeatureCollection of Voronoi polygons.\n(PR https://github.com/Turfjs/turf/pull/1043 - Author @stevage)\n\n### [`@turf/shortest-path`][shortest-path]\nReturns the shortest path from start to end without colliding with any feature in obstacles\n(PR https://github.com/Turfjs/turf/pull/956 - Author @stebogit)\n\n### [`@turf/boolean-parallel`][boolean-parallel]\nBoolean-Parallel returns True if each segment of `line1` is parallel to the correspondent segment of `line2`\n(PR https://github.com/Turfjs/turf/pull/941 - Author @stebogit)\n\n### [`@turf/nearest-point-on-line`][nearest-point-on-line]\nTakes a {@link Point} and a {@link LineString} and calculates the closest Point on the (Multi)LineString.\n(PR https://github.com/Turfjs/turf/pull/939 - Author @stebogit)\n\n## 🏅 New Features/Enhancements\n- Updates [`@turf/unkink-polygon`][unkink-polygon] testing & added `flattenEach` instead of using `flatten`.\n(PR https://github.com/Turfjs/turf/pull/889)\n\n- Add multi-geomtry support to [`@turf/line-split`](line-split)\n(PR https://github.com/Turfjs/turf/pull/1078)\n\n- Improve [`@turf/meta`](meta) `lineEach` method to provide properties, id and bbox\n(PR https://github.com/Turfjs/turf/pull/1010)\n\n## 🐛 Bug Fixes\n- Fixes [`@turf/helpers`](helpers) earth radius variable\n(PR https://github.com/Turfjs/turf/pull/1012)\n\n- Fixes [`@turf/polygon-tangents`](polygon-tangents) bug\n(PR https://github.com/Turfjs/turf/pull/1058)\n\n- Fixes [`@turf/line-chunk`](line-chunk) bug when the number of segments is integer\n(PR https://github.com/Turfjs/turf/pull/1046)\n\n- Fixes `segmentEach` and `segmentReduce` methods in [`@turf/meta`](meta) to ensure something is returned\n(PR https://github.com/Turfjs/turf/pull/968)\n\n## ⚠️ Breaking Change\n\n- Optional parameters are now defined as an `Object`:\n\n**Before**\n```js\nvar from = [-75.343, 39.984];\nvar to = [-75.534, 39.123];\nvar units = 'miles';\nvar distance = turf.distance(from, to, units);\n```\n\n**After**\n```js\nvar from = [-75.343, 39.984];\nvar to = [-75.534, 39.123];\nvar options = {units: 'miles'};\nvar distance = turf.distance(from, to, options);\n```\n\n- Reworked `@turf/random` PR https://github.com/Turfjs/turf/issues/994\n- Deprecate `@turf/idw` Issue https://github.com/Turfjs/turf/issues/887\n- Reworked Grid modules `@turf/point-grid/hex/square/triangle` PR https://github.com/Turfjs/turf/pull/1029\n- Renamed Modules/Methods\n  - [x] `@turf/inside` => `@turf/boolean-point-in-polygon` https://github.com/Turfjs/turf/issues/860#issuecomment-317216235\n  - [x] `@turf/within` => `@turf/points-within-polygon` https://github.com/Turfjs/turf/issues/860#issuecomment-317216235\n  - [x] [`@turf/bezier`](https://github.com/Turfjs/turf/blob/master/packages/turf-bezier/index.js) => `@turf/bezier-spline` Issue https://github.com/Turfjs/turf/issues/661\n  - [x] [`@turf/nearest`](https://github.com/Turfjs/turf/blob/master/packages/turf-nearest/index.js) => `@turf/nearest-point` https://github.com/Turfjs/turf/pull/858#issuecomment-317197295\n  - [x] [`@turf/point-on-line`](https://github.com/Turfjs/turf/blob/master/packages/turf-point-on-line/index.js) => `@turf/nearest-point-on-line` https://github.com/Turfjs/turf/pull/858#issuecomment-317197295\n  - [x] [`@turf/lineDistance`](https://github.com/Turfjs/turf/blob/master/packages/turf-line-distance/index.js) => `@turf/length` https://github.com/Turfjs/turf/issues/860#issuecomment-317229869\n  - [x] [`@turf/helpers`](https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/index.js)\n    - [x] `radians2degrees` => `radiansToDegrees`\n    - [x] `degrees2radians` => `degreesToRadians`\n    - [x] `distanceToDegrees` => `lengthToDegrees`\n    - [x] `distanceToRadians` => `lengthToRadians`\n    - [x] `radiansToDistance` => `radiansToLength`\n    - [x] `bearingToAngle` => `bearingToAzimuth`\n    - [x] `convertDistance` => `convertLength`\n\n# 4.7.0\n\n## 🚀 New Modules\n\n### [`@turf/projection`][projection]\n- **toMercator**: Converts a WGS84 GeoJSON object into Mercator (EPSG:900913) projection\n- **toWgs84**: Converts a Mercator (EPSG:900913) GeoJSON object into WGS84 projection\n\n(PR https://github.com/Turfjs/turf/pull/927 - Author @stebogit)\n\n### [`@turf/point-to-line-distance`][point-to-line-distance]\n\nReturns the minimum distance between a {@link Point} and a {@link LineString}, being the distance from a line the minimum distance between the point and any segment of the `LineString`.\n\n(PR https://github.com/Turfjs/turf/pull/925 - Author @stebogit)\n\n### [`@turf/boolean-within`][boolean-within]\n\nBoolean-within returns true if the first geometry is completely within the second geometry. The interiors of both geometries must intersect and, the interior and boundary of the primary (geometry a) must not intersect the exterior of the secondary (geometry b). Boolean-within returns the exact opposite result of the [`@turf/boolean-contains`][boolean-contains].\n\n(PR https://github.com/Turfjs/turf/pull/924 - Author @rowanwins)\n\n## 🏅 New Features/Enhancements\n- Updates [`@turf/unkink-polygon`][unkink-polygon] testing & added `flattenEach` instead of using `flatten`.\n(PR https://github.com/Turfjs/turf/pull/889)\n- [`@turf/concave`][concave] refactoring, replacing [`@turf/union`][union] with `geojson-dissolve` to increase speed and added support to `null` geometries\n(PR https://github.com/Turfjs/turf/pull/907 - Contributor @stebogit @DenisCarriere)\n- Adds doc note on [`@turf/polygonize`][polygonize] about \"Edges must be correctly noded\"\n(PR https://github.com/Turfjs/turf/pull/898 - Contributor @stebogit @NickCis)\n- Adds support to foreign Members to [`@turf/clone`][clone]\n(PR https://github.com/Turfjs/turf/pull/904 - Contributor @DenisCarriere)\n- Extends support of any `GeoJSON` to [`@turf/simplify`][simplify]\n(PR https://github.com/Turfjs/turf/pull/903 - Contributor @DenisCarriere @stebogit)\n- Adds new `isNumber` function and improves type checking for few [`@turf/helpers`][helpers] methods\n(PR https://github.com/Turfjs/turf/pull/920 - Contributor @DenisCarriere @stebogit)\n- Adds throw errors to invalid `MultiPolygons` for [`@turf/simplify`][simplify]\n(PR https://github.com/Turfjs/turf/pull/922 - Contributor @DenisCarriere)\n\n## 🐛 Bug Fixes\n\n- Fixes [`@turf/bbox-clip`](bbox-clip) point intersection handling, adding sanity-checks the lineclip output\n(PR https://github.com/Turfjs/turf/pull/886)\n- Fixes [`@turf/line-split`][line-split] endpoint case handling applying [`@turf/truncate`][truncate] on `splitter`\n(PR https://github.com/Turfjs/turf/pull/892 and https://github.com/Turfjs/turf/pull/855 - Contributor @stebogit)\n- Fixes [`@turf/intersect`][intersect] throwing \"uncaught exception\", adding [`@turf/truncate`][truncate] to inputs and returning `Feature<null>` if no geometry\n(PR https://github.com/Turfjs/turf/pull/890 - Contributor @stebogit @vicvolk)\n- Fixes [`@turf/hex-grid`][hex-grid] not properly cloning the last ring vertex\n(PR https://github.com/Turfjs/turf/pull/897 - Contributor @stebogit @DenisCarriere)\n- Fixes [`@turf/boolean-disjoint`][boolean-disjoint] incorrect behaviour where a poly was completely contained within another poly\n(PR https://github.com/Turfjs/turf/pull/908 - Contributor @rowanwins)\n- Fixes [`@turf/simplify`][simplify] process pending on particular geometries, applying [`@turf/clean-coords`][clean-coords] to input.\n(PR https://github.com/Turfjs/turf/pull/903 - Contributor @stebogit @DenisCarriere)\n- Fixes `boolean` properties not being translated with [`@turf/clone`][clone]\n(PR https://github.com/Turfjs/turf/pull/909 - Contributor @DenisCarriere)\n- Fixes [`@turf/boolean-contains`][boolean-contains] incorrect output when checking two polygons\n(PR https://github.com/Turfjs/turf/pull/923 - Contributor @rowanwins @DenisCarriere)\n\n# 4.6.0\n\n## 🚀 New Modules\n\n- [`@turf/clean-coords`](https://github.com/Turfjs/turf/tree/master/packages/turf-clean-coords) Removes redundant coordinates from any GeoJSON Geometry.\n(PR https://github.com/Turfjs/turf/pull/875 - Author @stebogit)\n- [`@turf/interpolate`](https://github.com/Turfjs/turf/tree/master/packages/turf-interpolate) Takes a set of points and estimates their 'property' values on a grid using the [Inverse Distance Weighting (IDW) method.](https://en.wikipedia.org/wiki/Inverse_distance_weighting).\n(PR https://github.com/Turfjs/turf/pull/832 - Author @stebogit)\n- [`@turf/clusters-dbscan`](https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-dbscan) Takes a set of Points and partition them into clusters according to [DBSCAN's](https://en.wikipedia.org/wiki/DBSCAN) data clustering algorithm.\n(PR https://github.com/Turfjs/turf/pull/812 and https://github.com/Turfjs/turf/pull/851 - Author @DenisCarriere)\n    > special mention to [this incredibly instructive and fun interactive map](https://github.com/DenisCarriere/turf-example-clusters-dbscan) by @DenisCarriere 😎👏\n- [`@turf/clusters`](https://github.com/Turfjs/turf/tree/master/packages/turf-clusters) Provides `getCluster`, `clusterEach`, and `clusterReduce` functions.\n(PR https://github.com/Turfjs/turf/pull/847 - Author @DenisCarriere)\n- [`@turf/boolean-point-on-line`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-on-line) Returns true if a point is on a line. Accepts a optional parameter to ignore the start and end vertices of the linestring.\n(PR https://github.com/Turfjs/turf/pull/858 - Author @rowanwins)\n- [`@turf/boolean-overlap`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-overlap) Takes two features and returns true or false whether or not they overlap, i.e. whether any pair of edges on the two polygons intersect. If there\nare any edge intersections, the polygons overlap.\n(PR https://github.com/Turfjs/turf/pull/856 and https://github.com/Turfjs/turf/pull/868 - Author @stebogit @tcql)\n- [`@turf/boolean-equal`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-equal) Determine whether two geometries of the same type have identical X,Y coordinate values.\n(PR https://github.com/Turfjs/turf/pull/869 - Author @stebogit @tcql)\n\n## 🏅 New Features/Enhancements\n\n- Sets `centered` param default to `true` in [`@turf/point-grid`](https://github.com/Turfjs/turf/tree/master/packages/turf-point-grid)\n(PR https://github.com/Turfjs/turf/pull/836 - Contributor @stebogit)\n- Adds `MultiLineString` support for [`@turf/point-on-line`](https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-line)\n(PR https://github.com/Turfjs/turf/pull/838 - Contributor @stebogit)\n- Renames `@turf/clusters` => `@turf/clusters-kmeans`, plus adds deprecated warning message to `@turf/clusters@4.5.2`\n(See Issue https://github.com/Turfjs/turf/issues/845)\n- Changes output type of `@turf/clusters-kmeans`\n(See Issue https://github.com/Turfjs/turf/issues/850 - Contributor @DenisCarriere)\n- Adds `segmentEach` and `segmentReduce` functions to `@turf/meta`\n(See Issue https://github.com/Turfjs/turf/issues/850 - Contributor @DenisCarriere)\n- Adds tests and linting on JSDoc in TurfJS core from `turf-www`; see Issue https://github.com/Turfjs/turf/issues/859\n(PR https://github.com/Turfjs/turf/issues/857 + https://github.com/Turfjs/turf/issues/864 + https://github.com/Turfjs/turf/issues/870 - Contributor @DenisCarriere @stebogit)\n- Introduces `null` Geometry support across TurfJS modules (See Issue https://github.com/Turfjs/turf/issues/853)\n(PR https://github.com/Turfjs/turf/issues/866 - Contributor @DenisCarriere)\n- Includes feature(Sub)Index in `coordEach`/`coordReduce` (@turf/meta) 🎉\n(PR https://github.com/Turfjs/turf/issues/872 - Contributor @DenisCarriere)\n- Adds `bbox` and `id` params plus `geometry` method to `@turf/helpers`\n(PR https://github.com/Turfjs/turf/issues/877 - Contributor @DenisCarriere)\n\n## 🐛 Bug Fixes\n\n- Applies `@turf/truncate` to [`@turf/line-split`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-split)\n`splitter` input to avoid approximation errors. Fixed #852\n(PR https://github.com/Turfjs/turf/pull/855)\n- Fixes `@turf-mask` error (See Issue https://github.com/Turfjs/turf/issues/837)\n(PR https://github.com/Turfjs/turf/pull/865 - Contributor @thiagoxvo)\n- Fixes `create-new-module` script error on `LICENSE` file creation (See Issue https://github.com/Turfjs/turf/issues/861)\n(commit [df6986e](https://github.com/Turfjs/turf/commit/df6986ec0a5c353babb60836ec97c21923913e79))\n- Fixes `@turf/isobands` error on `commonProperties` (See Issue https://github.com/Turfjs/turf/issues/831)\n(commit [1663f07](https://github.com/Turfjs/turf/commit/1663f077c075c8902dbeff4acf68b1c8e0151853))\n\n# 4.5.0\n\n## 🚀 New Modules\n\n- [`@turf/clusters`](https://github.com/Turfjs/turf/tree/master/packages/turf-clusters) Takes a set of points and partition them into clusters using the [k-means clustering](https://en.wikipedia.org/wiki/K-means_clustering) algorithm.\n(PR https://github.com/Turfjs/turf/pull/787 - Author @stebogit )\n\n- [`@turf/boolean-disjoint`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-disjoint) Boolean-disjoint returns (TRUE) if the intersection of the two geometries is an empty set.\n(PR https://github.com/Turfjs/turf/pull/805 - Author @rowanwins)\n\n- [`@turf/boolean-contains`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-contains) Boolean-contains returns True if the second geometry is completely contained by the first geometry. The interiors of both geometries must intersect and, the interior and boundary of the secondary (geometry b) must not intersect the exterior of the primary (geometry a). Boolean-contains returns the exact opposite result of the `@turf/boolean-within`.\n(PR https://github.com/Turfjs/turf/pull/797 - Author @rowanwins)\n\n- [`@turf/boolean-crosses`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-crosses) Boolean-Crosses returns True if the intersection results in a geometry whose dimension is one less than the maximum dimension of the two source geometries and the intersection set is interior to both source geometries.\nBoolean-Crosses returns t (TRUE) for only multipoint/polygon, multipoint/linestring, linestring/linestring, linestring/polygon, and linestring/multipolygon comparisons.\n(PR https://github.com/Turfjs/turf/pull/796 - Author @rowanwins)\n\n- [`@turf/boolean-clockwise`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-clockwise) Takes a ring and return true or false whether or not the ring is clockwise or counter-clockwise.\n(PR https://github.com/Turfjs/turf/pull/789 - Authors @morganherlocker @stebogit)\n\n- [`@turf/clone`](https://github.com/Turfjs/turf/tree/master/packages/turf-clone) Prevents GeoJSON coordinates from being mutated, similar to `JSON.parse(JSON.stringify(geojson))`.\nOnly cloning the coordinates can be 3x-20x faster than the **parse + stringify** approach.\n(PR https://github.com/Turfjs/turf/pull/824 - Author @DenisCarriere)\n\n## 🏅 New Features/Enhancements\n\n- [`convertArea`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#convertarea) Converts a area to the requested unit. (PR https://github.com/Turfjs/turf/pull/821 - Author @wnordmann)\n- Adds mask option to `@turf/point-grid` (PR https://github.com/Turfjs/turf/pull/791)\n- New @turf/isolines based on MarchingSquares.js (PR https://github.com/Turfjs/turf/pull/781)\n- Use ES6 modules / Add module.js to @turf/turf (PR https://github.com/Turfjs/turf/pull/793)\n- Create-new-module script (PR https://github.com/Turfjs/turf/pull/823)\n\n## 🐛 Bug Fixes\n\n- Buffer - Drop circle buffer operation (PR https://github.com/Turfjs/turf/pull/786)\n- Fixes `@turf/idw` bad property name #774  (PR https://github.com/Turfjs/turf/pull/800)\n- Fix for @turf/polygon-tangents - Resolves #785 (PR https://github.com/Turfjs/turf/pull/792)\n\n# 4.4.0\n\n## 🚀 New Modules\n\n- [`@turf/line-offset`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-offset)\nAdds a new lineOffset module as per this issue. Basically takes an input line and returns a new line offset by the distance. (PR https://github.com/Turfjs/turf/pull/729 - Author @rowanwins)\n- [`@turf/polygonize`](https://github.com/Turfjs/turf/tree/master/packages/turf-polygonize)\nPolygonizes (Multi)LineString(s) into Polygons. Implementation of GEOSPolygonize function (geos::operation::polygonize::Polygonizer). (PR https://github.com/Turfjs/turf/pull/767 - Author @NickCis)\n- [`@turf/transform-rotate`](https://github.com/Turfjs/turf/tree/master/packages/turf-transform-rotate)\nRotates any geojson Feature or Geometry of a specified angle, around its centroid or a given pivot point; all rotations follow the right-hand rule. (Issue https://github.com/Turfjs/turf/issues/747 - Author @stebogit)\n- [`@turf/transform-translate`](https://github.com/Turfjs/turf/tree/master/packages/turf-transform-translate)\nMoves any geojson Feature or Geometry of a specified distance along a Rhumb Line on the provided direction angle. (Issue https://github.com/Turfjs/turf/issues/747 - Author @stebogit)\n- [`@turf/transform-scale`](https://github.com/Turfjs/turf/tree/master/packages/turf-transform-scale)\nScale a GeoJSON from a given point by a factor of scaling (ex: factor=2 would make the GeoJSON 200% larger). If a FeatureCollection is provided, the origin point will be calculated based on each individual Feature. (Issue https://github.com/Turfjs/turf/issues/747 - Author @stebogit)\n\n## 🏅 New Features\n\n- Support z-coordinate as input for [`@turf/turf-tin`](https://github.com/Turfjs/turf/tree/master/packages/turf-tin) (PR https://github.com/Turfjs/turf/pull/772)\n- Adds properties parameter to [`@turf/centroid`](https://github.com/Turfjs/turf/tree/master/packages/turf-centroid) and [`@turf/center`](https://github.com/Turfjs/turf/tree/master/packages/turf-center) (PR https://github.com/Turfjs/turf/pull/769)\n- Include Yarn.lock for all modules & Lerna uses Yarn (Issue https://github.com/Turfjs/turf/issues/704, https://github.com/Turfjs/turf/issues/765, PR https://github.com/Turfjs/turf/pull/766)\n- Use `Tap` at root which enables code coverage reports (Issue https://github.com/Turfjs/turf/issues/328 & PR https://github.com/Turfjs/turf/pull/762)\n- Support z-coordinate as input for [`@turf/pointplane`](https://github.com/Turfjs/turf/tree/master/packages/turf-planepoint) (PR https://github.com/Turfjs/turf/pull/754)\n- Add core tests - file management & package.json rules (PR https://github.com/Turfjs/turf/pull/749 & https://github.com/Turfjs/turf/pull/756)\n\n## 🐛 Bug Fixes\n\n- Website http://turfjs.org is back up and running (Issue https://github.com/Turfjs/turf/issues/777)\n- [`@turf/rhumb-destination`](https://github.com/Turfjs/turf/tree/master/packages/turf-planepoint) issue at 180th meridian (Issue https://github.com/Turfjs/turf/issues/770 & PR https://github.com/Turfjs/turf/pull/771)\n- Getting too large numbers for Longitude (Issue https://github.com/Turfjs/turf/issues/758 & PR https://github.com/Turfjs/turf/pull/763)\n- Throw error if FeatureCollection not array #751 (PR https://github.com/Turfjs/turf/pull/760)\n- Change default param coordinates to 3 @turf/truncate (PR https://github.com/Turfjs/turf/pull/757)\n- along returns a point that is not found by [`@turf/point-on-line`](https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-line) (Issue https://github.com/Turfjs/turf/issues/691)\n- Fix location of intersect point for [`@turf/point-on-line`](https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-line). (PR https://github.com/Turfjs/turf/pull/750)\n- Handle empty geometries as undefined [`@turf/buffer`](https://github.com/Turfjs/turf/tree/master/packages/turf-buffer) (PR https://github.com/Turfjs/turf/pull/746)\n\n# 4.3.0\n\n## 🚀 New Modules\n\n- [Rhumb Line](https://en.wikipedia.org/wiki/Rhumb_line) Modules (https://github.com/Turfjs/turf/pull/728)\n  - [`@turf/rhumb-bearing`](https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-bearing)\n  - [`@turf/rhumb-distance`](https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-distance)\n  - [`@turf/rhumb-destination`](https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-destination)\n- [`@turf/polygon-tangents`](https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-tangents) Finds the tangents of a (Multi)Polygon from a Point. (https://github.com/Turfjs/turf/pull/708)\n- [`@turf/rewind`](https://github.com/Turfjs/turf/tree/master/packages/turf-rewind) Rewind LineString or Polygon outer ring ~clockwise~ counter-clockwise and inner rings ~counterclockwise~ clockwise (https://github.com/Turfjs/turf/pull/700 & https://github.com/Turfjs/turf/issues/66)\n- [`@turf/isobands`](https://github.com/Turfjs/turf/tree/master/packages/turf-isobands) - Takes a grid FeatureCollection of Point features with z-values and an array of value breaks and generates filled contour isobands. (https://github.com/Turfjs/turf/pull/619)\n\n## 🏅 New Features\n\n- New function [convertDistance](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#convertdistance) to [`@turf/helpers`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers) (https://github.com/Turfjs/turf/pull/732)\n- Add ignoreBoundary param [`@turf/inside`](https://github.com/Turfjs/turf/tree/master/packages/turf-inside) (https://github.com/Turfjs/turf/pull/706)\n- Add [flattenEach](https://github.com/Turfjs/turf/tree/master/packages/turf-meta#flatteneach)/[flattenReduce](https://github.com/Turfjs/turf/tree/master/packages/turf-meta#flattenreduce) to [`@turf/meta`](https://github.com/Turfjs/turf/tree/master/packages/turf-meta). (https://github.com/Turfjs/turf/pull/712 & https://github.com/Turfjs/turf/issues/692)\n- New Feature [`getGeom`](https://github.com/Turfjs/turf/tree/master/packages/turf-invariant#getgeom) & [`getGeomType`](https://github.com/Turfjs/turf/tree/master/packages/turf-invariant#getgeomtype) in [`@turf/invariant`](https://github.com/Turfjs/turf/tree/master/packages/turf-invariant) (https://github.com/Turfjs/turf/pull/720)\n- Adds [`round()`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#round), [`radians2degrees()`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#radians2degrees) and [`degrees2radians()`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#degrees2radians) to [`turf-helpers`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers)\n (https://github.com/Turfjs/turf/pull/715)\n- **⭐️ New** Add FeatureCollection & GeometryCollection support to [`@turf/rewind`](https://github.com/Turfjs/turf/tree/master/packages/turf-rewind) (https://github.com/Turfjs/turf/pull/741)\n\n## 🐛 Bug Fixes\n\n- Fix [`@turf/circle`](https://github.com/Turfjs/turf/tree/master/packages/turf-circle) translate properties (https://github.com/Turfjs/turf/pull/717)\n- Apply equidistance [`@turf/buffer`](https://github.com/Turfjs/turf/tree/master/packages/turf-buffer) to polygons (https://github.com/Turfjs/turf/issues/660 & https://github.com/Turfjs/turf/pull/718)\n- Fix jsts empty (Multi)Polygon error [`@turf/difference`](https://github.com/Turfjs/turf/tree/master/packages/turf-difference) (https://github.com/Turfjs/turf/pull/725)\n- Support Geometry Objects & Collection (https://github.com/Turfjs/turf/issues/710)\n  - [`@turf/line-intersect`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-intersect) (https://github.com/Turfjs/turf/pull/731)\n  - [`@turf/line-chunk`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-chunk) (https://github.com/Turfjs/turf/pull/726)\n  - [`@turf/line-segment`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-segment) (https://github.com/Turfjs/turf/pull/727 & https://github.com/Turfjs/turf/pull/711)\n  - [`@turf/line-overlap`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-overlap) (https://github.com/Turfjs/turf/pull/711)\n- **New** Reverse winding - Polygon CCW & Polygon CW [`@turf/rewind`](https://github.com/Turfjs/turf/tree/master/packages/turf-rewind) (https://github.com/Turfjs/turf/pull/741)\n- **⭐️ New** Fix Feature GeometryCollection to [`@turf/buffer`](https://github.com/Turfjs/turf/tree/master/packages/turf-buffer) (https://github.com/Turfjs/turf/pull/739)\n- **⭐️ New** Re-enable negative `radius` to [`@turf/buffer`](https://github.com/Turfjs/turf/tree/master/packages/turf-buffer) (https://github.com/Turfjs/turf/pull/736)\n\n# 4.2.0\n\n## New Modules\n\n- [`@turf/sector`](https://github.com/Turfjs/turf/pull/653)\n- [`@turf/linestring-to-polygon`](https://github.com/Turfjs/turf/pull/672)\n\n## Enhancements\n\n- [Add mutate param to `@turf/flip`](https://github.com/Turfjs/turf/issues/693)\n- [Add Geometry & GeometryCollection support to `@turf/truncate`](https://github.com/Turfjs/turf/pull/677)\n- [`@turf/inside` performance increase](https://github.com/Turfjs/turf/pull/675)\n- [Add properties param to `@turf/circle`](https://github.com/Turfjs/turf/pull/668)\n- [Added `bearingToAngle` method to turf-helpers](https://github.com/Turfjs/turf/pull/663)\n\n## Bug Fixes\n\n- [Fix `@turf/buffer` points in high latitudes](https://github.com/Turfjs/turf/pull/667)\n- [lineIntersect returns the same point several times](https://github.com/Turfjs/turf/issues/688)\n- [`@turf/flip` incorrect if z-elevation is present](https://github.com/Turfjs/turf/issues/669)\n\n## Changes\n\n- [Change output types `@turf/polygon-to-linestring`](https://github.com/Turfjs/turf/pull/686)\n\n## Documentation\n\n- [Update JSDocs examples](https://github.com/Turfjs/turf/pull/670/files)\n- [Include many more AddToMap to modules](https://github.com/Turfjs/turf/pull/664)\n\n# 4.1.0\n\n## New Modules\n\n- [`@turf/line-arc`](https://github.com/Turfjs/turf/pull/657)\n- [`@turf/polygon-to-linestring`](https://github.com/Turfjs/turf/pull/646)\n- [`@turf/bbox-clip`](https://github.com/Turfjs/turf/pull/652)\n- [`@turf/line-overlap`](https://github.com/Turfjs/turf/pull/640)\n\n## Enhancements\n\n- added centered param to point-grid (PR: https://github.com/Turfjs/turf/pull/650)\n- Single `module.export` helpers, invariant & meta (Commit: https://github.com/Turfjs/turf/commit/9cebb2100cf545fec49488c80140909ab54358b5)\n\n## Bug Fixes\n\n- Turf.invariant fails on string value as coordinate (PR: https://github.com/Turfjs/turf/pull/643)\n- Handle precision=0 turf-truncate (PR: https://github.com/Turfjs/turf/pull/641)\n- Added `radiansToDistance`, `distanceToRadians` & `distanceToDegrees` to Turf core library from `@turf/helpers`. (Commit: https://github.com/Turfjs/turf/commit/a88d77a3e7f76860b3c138a716da8b603a407c8e)\n- Removed process.hrtime in `@turf/polygon-unkink`(issue: https://github.com/mclaeysb/simplepolygon/issues/5)\n\n# 3.6.4\n\nTypescript definitions `index.d.ts` added to all the packages.\n\n# 3.0.11\n\nFix turf-line-slice bug with vertical linestrings.\n\n# 3.0.1\n\nThis is a big change in Turf! 3.0.0 is a release that targets the development\ncycle of Turf, letting us work on it more and release more often.\n\n**Monorepo**\n\nTurf 3.x and forward is a **monorepo** project. We publish lots of little modules\nas usual, but there's one repo - turfjs/turf - that contains all the code\nand the issues for the Turf source code. We use [lerna](https://lernajs.io/)\nto link these packages together and make sure they work.\n\nWhy? We already had internal turf modules, like `turf-meta`, and development\nwas harder and harder - we had a bunch of custom scripts to do releases and\ntests, and these were just written for Turf. Lerna is from the very popular\nand very well-maintained [babel](http://www.babeljs.io) project, and it\nworks really well, and reduces maintainer sadness.\n\n**Simplicity**\n\nTurf grew a bunch of modules that weren't totally necessary, or were\nexpressing only a line or two of JavaScript. We want to make things easier,\nbut these modules didn't make code more expressive and they hid complexity\nwhere it didn't need to be hidden. Turf 3.x focuses on the core\nfunctionalities we need, making sure they're tested and performant.\n\nturf-erase has been renamed turf-difference to make its name more similar to the equivalents in other libraries.\n\nRemoved modules: merge, sum, min, max, average, median, variance, deviation, filter, remove, jenks, quantile.\nSee the upgrade guide below for replacements.\n\n**Upgrading from v2**\n\n**If you were using turf-merge**\n\nturf-merge repeatedly called turf-union on an array of polygons. Here's\nhow to implement the same thing without the special module\n\n```js\nvar clone = require('clone');\nvar union = require('turf-union');\nfunction merge(polygons) {\n  var merged = clone(polygons.features[0]), features = polygons.features;\n  for (var i = 0, len = features.length; i < len; i++) {\n    var poly = features[i];\n    if (poly.geometry) merged = union(merged, poly);\n  }\n  return merged;\n}\n```\nAn alternative method that merges pairs of features recursively.\nWith large numbers and similar complexity of input geometries this can speed up run time by factor 10.\nChoose depending on your use case.\n\n```js\nvar union = require('turf-union');\nfunction mergeBin(polygons) {\n  var features = polygons.features;\n\n  do {\n    var merged = [], len = features.length;\n    for (var i = 0; i < len-1; i += 2) {\n      merged.push(turf.union(features[i], features[i+1]));\n    }\n    if (len % 2 !== 0) {\n      merged.push(features[len-1]);\n    }\n    features = merged;\n  } while(features.length > 1);\n\n  return features[0];\n}\n```\n\n**If you were using turf-sum, min, max, average, median, variance, deviation**\n\nThe `turf-collect` method provides the core of these statistical methods\nand lets you bring your own statistical library, like `simple-statistics`,\n`science.js`, or others.\n\nFor example, here's how to find the median of matched values with simple-statistics.\nFinding other statistics, like variance, mean, and so on simply use other methods\nfrom the statistics library.\n\n```js\nvar ss = require('simple-statistics');\nvar turf = require('@turf/turf');\n\nvar poly1 = turf.polygon([[[0,0],[10,0],[10,10],[0,10],[0,0]]]);\nvar poly2 = turf.polygon([[[10,0],[20,10],[20,20],[20,0],[10,0]]]);\nvar polyFC = turf.featureCollection([poly1, poly2]);\nvar pt1 = turf.point([5,5], {population: 200});\nvar pt2 = turf.point([1,3], {population: 600});\nvar pt3 = turf.point([14,2], {population: 100});\nvar pt4 = turf.point([13,1], {population: 200});\nvar pt5 = turf.point([19,7], {population: 300});\nvar ptFC = turf.featureCollection([pt1, pt2, pt3, pt4, pt5]);\n\n// collects values from matching points into an array called 'values'\nvar collected = turf.collect(polyFC, ptFC, 'population', 'values');\n\n// finds the median of those values.\ncollected.features.forEach(function (feature) {\n  feature.properties.median = ss.median(feature.properties.values);\n});\n\nconsole.log(JSON.stringify(collected, null, 2));\n```\n\n**If you were using turf-filter, turf-remove**\n\nThese modules were thin wrappers around native JavaScript methods: use\n[Array.filter](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter) instead:\n\n```js\nvar filteredFeatures = features.filter(function(feature) {\n  return feature.properties.value > 10;\n});\n```\n\n**If you were using turf-jenks, turf-quantile**\n\nUse Array.map to get values, and then bring your own statistical calculation,\nlike simple-statistics or science.js.\n\n```js\nvar values = features.map(function(feature) {\n  return feature.properties.value;\n});\n```\n\n**If you were using turf-extent**\n\nturf-extent's name was changed to turf-bbox. It is functionally the same.\n\n```js\nturf.bbox(poly) // [minx, miny, maxx, maxy]\n```\n\n# 2.0.0\n\n* turf-grid renamed turf-point-grid (turf.grid => turf.pointGrid)\n* turf-hex renamed turf-hex-grid (turf.hex => turf.hexGrid)\n* turf-hex-grid now has a required `unit` parameter\n* remove turf-isobands; use turf-isolines instead\n* added turf-square-grid (turf.squareGrid)\n* added turf-triangle-grid (turf.triangleGrid)\n* constrain turf-point-grid to the bbox\n\n# 1.4.0\n\n* update all module dependencies to master\n* add support for features in turf.intersection\n* fix issues with turf.polygon coordinate wrapping inconsistencies\n* add `unit` parameter to turf.concave\n\n# 1.3.5\n\n* harmonize turf-tin dependency tree\n\n# 1.3.4\n\n* fixes bug in turf-along\n\n# 1.3.3\n\n* added turf-line-slice for segmenting LineStrings with Points\n* turf-point-on-line for calculating the closest Point from a Point to a LineString\n\n# 1.3.2\n\n* [tin ~7x faster](https://github.com/Turfjs/turf-tin/commit/595f732435b3b7bd977cdbe996bce60cbfc490e7)\n* Fix mutability issues with `flip`, `erase`: data passed to Turf should\n  never be changed in place.\n* added turf-line-distance for geodesic measuring of LineStrings\n* added turf-along for calculating a the location of a Point x distance along a LineString\n* added turf-area for calculating the area of a given feature\n\n\n[along]: https://github.com/Turfjs/turf/tree/master/packages/turf-along\n[area]: https://github.com/Turfjs/turf/tree/master/packages/turf-area\n[bbox]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox\n[bbox-clip]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-clip\n[bbox-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-polygon\n[bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-bearing\n[bezier-spline]: https://github.com/Turfjs/turf/tree/master/packages/turf-bezier-spline\n[boolean-clockwise]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-clockwise\n[boolean-contains]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-contains\n[boolean-crosses]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-crosses\n[boolean-disjoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-disjoint\n[boolean-equal]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-equal\n[boolean-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-overlap\n[boolean-parallel]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-parallel\n[boolean-point-in-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-in-polygon\n[boolean-point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-on-line\n[boolean-within]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-within\n[buffer]: https://github.com/Turfjs/turf/tree/master/packages/turf-buffer\n[center]: https://github.com/Turfjs/turf/tree/master/packages/turf-center\n[center-of-mass]: https://github.com/Turfjs/turf/tree/master/packages/turf-center-of-mass\n[centroid]: https://github.com/Turfjs/turf/tree/master/packages/turf-centroid\n[circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-circle\n[clean-coords]: https://github.com/Turfjs/turf/tree/master/packages/turf-clean-coords\n[clone]: https://github.com/Turfjs/turf/tree/master/packages/turf-clone\n[clusters]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters\n[clusters-dbscan]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-dbscan\n[clusters-kmeans]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-kmeans\n[collect]: https://github.com/Turfjs/turf/tree/master/packages/turf-collect\n[combine]: https://github.com/Turfjs/turf/tree/master/packages/turf-combine\n[concave]: https://github.com/Turfjs/turf/tree/master/packages/turf-concave\n[convex]: https://github.com/Turfjs/turf/tree/master/packages/turf-convex\n[destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-destination\n[difference]: https://github.com/Turfjs/turf/tree/master/packages/turf-difference\n[dissolve]: https://github.com/Turfjs/turf/tree/master/packages/turf-dissolve\n[distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-distance\n[envelope]: https://github.com/Turfjs/turf/tree/master/packages/turf-envelope\n[explode]: https://github.com/Turfjs/turf/tree/master/packages/turf-explode\n[flatten]: https://github.com/Turfjs/turf/tree/master/packages/turf-flatten\n[flip]: https://github.com/Turfjs/turf/tree/master/packages/turf-flip\n[great-circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-great-circle\n[helpers]: https://github.com/Turfjs/turf/tree/master/packages/turf-helpers\n[hex-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-hex-grid\n[interpolate]: https://github.com/Turfjs/turf/tree/master/packages/turf-interpolate\n[intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-intersect\n[invariant]: https://github.com/Turfjs/turf/tree/master/packages/turf-invariant\n[isobands]: https://github.com/Turfjs/turf/tree/master/packages/turf-isobands\n[isolines]: https://github.com/Turfjs/turf/tree/master/packages/turf-isolines\n[kinks]: https://github.com/Turfjs/turf/tree/master/packages/turf-kinks\n[length]: https://github.com/Turfjs/turf/tree/master/packages/turf-length\n[line-arc]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-arc\n[line-chunk]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-chunk\n[line-intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-intersect\n[line-offset]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-offset\n[line-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-overlap\n[line-segment]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-segment\n[line-slice]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice\n[line-slice-along]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice-along\n[line-split]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-split\n[line-to-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-to-polygon\n[mask]: https://github.com/Turfjs/turf/tree/master/packages/turf-mask\n[meta]: https://github.com/Turfjs/turf/tree/master/packages/turf-meta\n[midpoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-midpoint\n[nearest-point]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point\n[nearest-point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point-on-line\n[nearest-point-to-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point-to-line\n[planepoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-planepoint\n[point-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-grid\n[point-on-feature]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-feature\n[point-to-line-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-to-line-distance\n[points-within-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-points-within-polygon\n[polygon-tangents]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-tangents\n[polygon-to-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-to-line\n[polygonize]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygonize\n[projection]: https://github.com/Turfjs/turf/tree/master/packages/turf-projection\n[random]: https://github.com/Turfjs/turf/tree/master/packages/turf-random\n[rewind]: https://github.com/Turfjs/turf/tree/master/packages/turf-rewind\n[rhumb-bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-bearing\n[rhumb-destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-destination\n[rhumb-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-distance\n[sample]: https://github.com/Turfjs/turf/tree/master/packages/turf-sample\n[sector]: https://github.com/Turfjs/turf/tree/master/packages/turf-sector\n[shortest-path]: https://github.com/Turfjs/turf/tree/master/packages/turf-shortest-path\n[simplify]: https://github.com/Turfjs/turf/tree/master/packages/turf-simplify\n[square]: https://github.com/Turfjs/turf/tree/master/packages/turf-square\n[square-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-square-grid\n[tag]: https://github.com/Turfjs/turf/tree/master/packages/turf-tag\n[tesselate]: https://github.com/Turfjs/turf/tree/master/packages/turf-tesselate\n[tin]: https://github.com/Turfjs/turf/tree/master/packages/turf-tin\n[transform-rotate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-rotate\n[transform-scale]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-scale\n[transform-translate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-translate\n[triangle-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-triangle-grid\n[truncate]: https://github.com/Turfjs/turf/tree/master/packages/turf-truncate\n[union]: https://github.com/Turfjs/turf/tree/master/packages/turf-union\n[unkink-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-unkink-polygon\n[voronoi]: https://github.com/Turfjs/turf/tree/master/packages/turf-voronoi\n"
  },
  {
    "path": "LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2019 Morgan Herlocker\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "![turf](https://raw.githubusercontent.com/Turfjs/turf/9a1d5e8d99564d4080f1e2bf1517ed41d18012fa/logo.png)\n======\n[![GitHub Actions Status](https://github.com/Turfjs/turf/actions/workflows/ci.yml/badge.svg)](https://github.com/Turfjs/turf/actions/workflows/ci.yml/badge.svg)\n[![Version Badge][npm-img]][npm-url]\n[![Gitter chat][gitter-img]][gitter-url]\n[![Backers on Open Collective][oc-backer-badge]](#backers)\n[![Sponsors on Open Collective][oc-sponsor-badge]](#sponsors) [![Coverage Status](https://coveralls.io/repos/github/Turfjs/turf/badge.svg)](https://coveralls.io/github/Turfjs/turf)\n\n[npm-img]: https://img.shields.io/npm/v/@turf/turf.svg\n[npm-url]: https://www.npmjs.com/package/@turf/turf\n[gitter-img]: https://badges.gitter.im/Turfjs/turf.svg\n[gitter-url]: https://gitter.im/Turfjs/turf\n[oc-backer-badge]: https://opencollective.com/turf/backers/badge.svg\n[oc-sponsor-badge]: https://opencollective.com/turf/sponsors/badge.svg\n\n***A modular geospatial engine written in JavaScript***\n\n[Turf](https://turfjs.org) is a [JavaScript library](https://en.wikipedia.org/wiki/JavaScript_library) for [spatial analysis](https://en.wikipedia.org/wiki/Spatial_analysis). It includes traditional spatial operations, helper functions for creating [GeoJSON](https://geojson.org) data, and data classification and statistics tools. Turf can be added to your website as a client-side module, or you can [run Turf server-side](https://www.npmjs.com/package/@turf/turf) with [Node.js](https://nodejs.org/) (see below).\n\n\n## Getting Started\n\nRead our [getting started guide](https://turfjs.org/docs/getting-started) to begin working with Turf.\n\nOr explore the Turf API and examples at [turfjs.org](https://turfjs.org/).\n\n## Runtime support\n\nTurf is currently published to work with any reasonably modern Javascript runtime.\n\nNode is a first class citizen, and we recommend using an [Active or Maintenance LTS](https://nodejs.org/en/about/previous-releases) release.\n\nOther runtimes, such as Deno or Bun, are not officially supported. We would be very interested to hear your experiences though.\n\n## Browser support\n\nTurf uses Babel to transpile to a JavaScript version usable by most\nmodern browsers. Any browser that matches the following criteria as defined by [Browserslist](https://github.com/browserslist/browserslist):\n\n[> 0.25%, last 2 versions, fully supports es5, not dead](https://browsersl.ist/#q=%3E+0.25%25%2C+last+2+versions%2C+fully+supports+es5%2C+not+dead)\n\n## Contributors\n\nThis project exists thanks to all the people who contribute. If you are interested in helping, check out the [Contributing Guide](docs/CONTRIBUTING.md).\n\n<a href=\"https://github.com/Turfjs/turf/graphs/contributors\"><img src=\"https://opencollective.com/turf/contributors.svg?width=890&button=false\" /></a>\n\n\n## Backers\n\nThank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/turf#backer)]\n\n<a href=\"https://opencollective.com/turf#backers\" target=\"_blank\"><img src=\"https://opencollective.com/turf/backers.svg?width=890\"></a>\n\n\n## Sponsors\n\nSupport this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/turf#sponsor)]\n\n<a href=\"https://opencollective.com/turf/sponsor/0/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/0/avatar.svg\"></a>\n<a href=\"https://opencollective.com/turf/sponsor/1/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/1/avatar.svg\"></a>\n<a href=\"https://opencollective.com/turf/sponsor/2/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/2/avatar.svg\"></a>\n<a href=\"https://opencollective.com/turf/sponsor/3/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/3/avatar.svg\"></a>\n<a href=\"https://opencollective.com/turf/sponsor/4/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/4/avatar.svg\"></a>\n<a href=\"https://opencollective.com/turf/sponsor/5/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/5/avatar.svg\"></a>\n<a href=\"https://opencollective.com/turf/sponsor/6/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/6/avatar.svg\"></a>\n<a href=\"https://opencollective.com/turf/sponsor/7/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/7/avatar.svg\"></a>\n<a href=\"https://opencollective.com/turf/sponsor/8/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/8/avatar.svg\"></a>\n<a href=\"https://opencollective.com/turf/sponsor/9/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/9/avatar.svg\"></a>\n"
  },
  {
    "path": "docs/CODE_OF_CONDUCT.md",
    "content": "\n# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nWe as members, contributors, and leaders pledge to make participation in our\ncommunity a harassment-free experience for everyone, regardless of age, body\nsize, visible or invisible disability, ethnicity, sex characteristics, gender\nidentity and expression, level of experience, education, socio-economic status,\nnationality, personal appearance, race, caste, color, religion, or sexual\nidentity and orientation.\n\nWe pledge to act and interact in ways that contribute to an open, welcoming,\ndiverse, inclusive, and healthy community.\n\n## Our Standards\n\nExamples of behavior that contributes to a positive environment for our\ncommunity include:\n\n* Demonstrating empathy and kindness toward other people\n* Being respectful of differing opinions, viewpoints, and experiences\n* Giving and gracefully accepting constructive feedback\n* Accepting responsibility and apologizing to those affected by our mistakes,\n  and learning from the experience\n* Focusing on what is best not just for us as individuals, but for the overall\n  community\n\nExamples of unacceptable behavior include:\n\n* The use of sexualized language or imagery, and sexual attention or advances of\n  any kind\n* Trolling, insulting or derogatory comments, and personal or political attacks\n* Public or private harassment\n* Publishing others' private information, such as a physical or email address,\n  without their explicit permission\n* Other conduct which could reasonably be considered inappropriate in a\n  professional setting\n\n## Enforcement Responsibilities\n\nCommunity leaders are responsible for clarifying and enforcing our standards of\nacceptable behavior and will take appropriate and fair corrective action in\nresponse to any behavior that they deem inappropriate, threatening, offensive,\nor harmful.\n\nCommunity leaders have the right and responsibility to remove, edit, or reject\ncomments, commits, code, wiki edits, issues, and other contributions that are\nnot aligned to this Code of Conduct, and will communicate reasons for moderation\ndecisions when appropriate.\n\n## Scope\n\nThis Code of Conduct applies within all community spaces, and also applies when\nan individual is officially representing the community in public spaces.\nExamples of representing our community include using an official email address,\nposting via an official social media account, or acting as an appointed\nrepresentative at an online or offline event.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be\nreported to the community leaders responsible for enforcement at\n[@morganherlocker](https://github.com/morganherlocker) or [@tmcw](https://github.com/tmcw).\nAll complaints will be reviewed and investigated promptly and fairly.\n\nAll community leaders are obligated to respect the privacy and security of the\nreporter of any incident.\n\n## Enforcement Guidelines\n\nCommunity leaders will follow these Community Impact Guidelines in determining\nthe consequences for any action they deem in violation of this Code of Conduct:\n\n### 1. Correction\n\n**Community Impact**: Use of inappropriate language or other behavior deemed\nunprofessional or unwelcome in the community.\n\n**Consequence**: A private, written warning from community leaders, providing\nclarity around the nature of the violation and an explanation of why the\nbehavior was inappropriate. A public apology may be requested.\n\n### 2. Warning\n\n**Community Impact**: A violation through a single incident or series of\nactions.\n\n**Consequence**: A warning with consequences for continued behavior. No\ninteraction with the people involved, including unsolicited interaction with\nthose enforcing the Code of Conduct, for a specified period of time. This\nincludes avoiding interactions in community spaces as well as external channels\nlike social media. Violating these terms may lead to a temporary or permanent\nban.\n\n### 3. Temporary Ban\n\n**Community Impact**: A serious violation of community standards, including\nsustained inappropriate behavior.\n\n**Consequence**: A temporary ban from any sort of interaction or public\ncommunication with the community for a specified period of time. No public or\nprivate interaction with the people involved, including unsolicited interaction\nwith those enforcing the Code of Conduct, is allowed during this period.\nViolating these terms may lead to a permanent ban.\n\n### 4. Permanent Ban\n\n**Community Impact**: Demonstrating a pattern of violation of community\nstandards, including sustained inappropriate behavior, harassment of an\nindividual, or aggression toward or disparagement of classes of individuals.\n\n**Consequence**: A permanent ban from any sort of public interaction within the\ncommunity.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage],\nversion 2.1, available at\n[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].\n\nCommunity Impact Guidelines were inspired by\n[Mozilla's code of conduct enforcement ladder][Mozilla CoC].\n\nFor answers to common questions about this code of conduct, see the FAQ at\n[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at\n[https://www.contributor-covenant.org/translations][translations].\n\n[homepage]: https://www.contributor-covenant.org\n[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html\n[Mozilla CoC]: https://github.com/mozilla/diversity\n[FAQ]: https://www.contributor-covenant.org/faq\n[translations]: https://www.contributor-covenant.org/translations\n"
  },
  {
    "path": "docs/CONTRIBUTING.md",
    "content": "# Contributing to Turf\n\n## Getting Started\n\nOne of the most important things you can do is report bugs. Please reference [how to report a bug](https://macwright.com/sites/polite.technology/reportabug) and when opening an [issue](https://github.com/Turfjs/turf/issues), follow the template.\n\nTo propose an enhancement for Turf, it's usually best to [start a discussion](https://github.com/Turfjs/turf/discussions) to work through the requirements. Unless you know exactly what you need! In which case [open an issue](https://github.com/Turfjs/turf/issues) to request it.\n\nTo make a code contribution, follow the steps for [how to contribute](#how-to-contribute).\n\n## Architecture\n\n- GeoJSON is the lingua franca of Turf. It should be used as the data structure for anything that can be represented as geography.\n- Turf is broken into many submodules, or packages. These are found in the `packages` directory prefixed with \"turf-\".\n- Turf packages are small, generally containing a single exported function.\n- Many Turf packages depend on other lower level Turf packages.\n\n## How to contribute\n\nThe best way for a new contributor to help with Turf is to find an open issue, fix it, and then share that back to the project via a pull request (PR). A maintainer will review your PR and get it merged with the rest of the code.\n\nHere is a great article on how to fork a repo, and start contributing to Turf.\n\nIf you'd like to become a core contributor, just start making contributions, and inquire.\n\n### Local Setup\n\nOnce you've cloned a Turf repository, and have a terminal open and currenty in the top-level turf directory. Run the following:\n- `git checkout master` (if not already)\n- `corepack enable pnpm`\n  - enable pnpm as a package manager. Requires Node 16+.  Alternatively just `npm install -g pnpm`.\n- `pnpm install`\n  - install dependencies and build packages\n- `pnpm test`\n  - run all tests and linters\n\nYou're now ready to contribute.\n\n<details>\n<summary>Structure of a Turf package</summary>\n<br>\n\nTurf packages all live under the `packages` directory. For example `packages/turf-area`. Here's how they are structured.\n\n```\nturf-<PACKAGE NAME>\n│   index.ts\n│   bench.ts\n│   test.ts\n│   package.json\n│   README.md\n│   LICENSE\n│\n└───test\n    │\n    ├───in\n    │   points.geojson\n    │\n    └───out\n        points.geojson\n```\n\n* `index.ts` - This file contains the definition of the function including [TypeScript](https://www.typescriptlang.org/) types, function implementation, the embedded [JSDocs](http://usejsdoc.org) documentation, and finally the single exported function that the package provides.\n* `bench.ts` - This file uses [Benchmark](https://benchmarkjs.com/) to establish benchmark performance tests for your function.\n* `test.ts` - This file includes your [tape](https://github.com/substack/tape)\n  unit tests. Tests can either be traditional code based tests, or tests that pull in data files and compare inputs to outputs (see below).\n* `package.json` - The [node](http://nodejs.org) metadata container file.\n  Packages imported in `index.ts` should be listed here under `dependencies`,\n  and packages used in `test.ts` or `bench.ts` should be listed under\n  `devDependencies`.\n* `README.md` - This README is generated _automatically_ by running `pnpm run\n  docs`. **DO NOT edit this file**.\n* `LICENCE` - Like the README, this file should not be edited.\n* `test/` - This directory holds the GeoJSON files that provide data for\n  dynamic tests. Input data in `./test/in`, and expected output data in `./test/out`.\n</details>\n\n<details>\n<summary>Development tips</summary>\n<br>\nWork in a feature branch when possible\n- `git checkout -b my-feature`\n- Create it right away off of master.\n- This allows you to keep your local master branch clean and in sync with the official remote. This will ease your ability to keep your local repo up to date with changes other people have made while you work on your feature.\n\nAs you make code changes\n- Regularly run `pnpm test` in whatever package you are working in to avoid unintended bugs.\n- Occasionally run `pnpm test` at the top-level directory to run test for all packages, to make sure you haven't introduced a problem that affects another package.\n</details>\n\n## Preparing a pull request\n\nA simple, complete pull request is more likely to get merged.\n\n<details>\n<summary>But I don't know how</summary>\n<br>\nIf you don't know how to make a solid PR, submit a draft PR and ask for feedback.  Take on any feedback to improve the PR ready. There may be multiple rounds of feedback. While this seems tedious it greatly reduces the risk of someone else\nhaving to revisit the same code any time soon.\n</details>\n\n### Pull Request Checklist\n- Briefly summarize the need and solution. Link to the issue it's resolving if exists.\n- Add tests.  Even for bug fixes. A simple test case that reproduces the issue and demonstrates it's fixed.\n- Update JSDoc comments if the function signature changes or docs need improvement (See for example `packages/turf-area/index.ts`)\n- Run a full `npm test` at root level, confirming no cross-package issues. If you don't catch this now, the Github CI will.\n\n### Guidelines\n\n- Feel free to [ask](#getting-started) if a feature/enhancement is needed/wanted before doing the work.\n- Keep pull requests small and focused.\n- Avoid large dependencies at all costs.\n- Make sure that your code can run in the browser (ie: don't make calls to external services, don't hit the filesystem, etc.).\n\n### Documentation\n\nThe package README.md files and https://turfjs.org API docs are auto-generated from JSDoc comments in each packages' source file.\n\nAs a contributor, all you need to do is keep the JSDoc comments up to date, and the rest is automated. For example if you change a top-level Turf functions signature (params, return type) or just want to improve the descriptiveness of the docs.\n\nJSDoc comments are found in the top-level index file for each package (for example `packages/turf-area/index.ts`). Look for the `@name`, `@params`, `@returns`, `@example` tags.\n\n## Code Style\n\nWe have lots of tooling dedicated to ensuring consistent code. We use [Prettier](https://prettier.io/), [TypeScript](https://www.typescriptlang.org/), and [ESLint](https://eslint.org/) to help us deliver quality code. These are checked by the build system and should be enforced at commit time by [Husky](https://typicode.github.io/husky/#/).\n\nMost packages are written in TypeScript, while a few plain Javascript still linger. You can generally use modern Javascript when modifying Turf itself as all exported code is transpiled to (currently es2017).\n\nCode for consumption by browsers is transpiled by Babel as described in the README.\n\nMaking sure that the monorepo packages can be managed at scale, we use [Monorepolint](https://github.com/monorepolint/monorepolint) to programmatically ensure the individual packages remain consistent.\n\n## Documentation\n\n- API docs for each turf package are extracted from JSDoc comments in the source code into the top-level README.md files. README's are automatically updated on commit via a pre-commit hook.\n\nShould you want to generate new README files manually, use `pnpm run docs`:\n  - **inside a package:** will generate the docs for that package.\n  - **from root folder:** will generate docs for all package.\n\n### Documentation - Examples\n\n**Builds docs for all packages**\n\n```bash\n$ cd ./turf\n$ pnpm run docs\n> @ docs /Users/mac/Github/turf\n> node ./scripts/generate-readmes.mts\n\nBuilding Docs: @turf/along\nBuilding Docs: @turf/area\nBuilding Docs: @turf/bbox-clip\nBuilding Docs: @turf/bbox-polygon\nBuilding Docs: @turf/bbox\nBuilding Docs: @turf/bearing\nBuilding Docs: @turf/bezier-spline\nBuilding Docs: @turf/boolean-clockwise\n....\n```\n\nNote: This should be automatically executed with a pre-commit hook when necessary\n\n### Public website\n\nThe [turfjs.org](https://turfjs.org/) website is managed in a [separate repo](https://github.com/Turfjs/turf-www) with its own [contributing guide](https://github.com/Turfjs/turf-www/blob/master/CONTRIBUTING.md).\n\n## Other Dependencies\n\n  - Turf uses [pnpm](https://pnpm.io/) and [lerna](https://lernajs.io/) during the testing, packaging and publishing process.\n  - Lerna will be automatically installed when you run `pnpm install` in the root directory.\n  - Pnpm will need to be installed on your computer, installers are available via the pnpm website. When using [corepack](https://nodejs.org/api/corepack.html), this is automatically installed when running `pnpm`.\n\n## Financial contributions\n\nWe also welcome financial contributions in full transparency on our [open collective](https://opencollective.com/turf).\nAnyone can file an expense. If the expense makes sense for the development of the community, it will be \"merged\" in the ledger of our open collective by the core contributors and the person who filed the expense will be reimbursed.\n\n\n## Credits\n\n\n### Contributors\n\nThank you to all the people who have already contributed to turf!\n<a href=\"graphs/contributors\"><img src=\"https://opencollective.com/turf/contributors.svg?width=890\" /></a>\n\n\n### Backers\n\nThank you to all our backers! [[Become a backer](https://opencollective.com/turf#backer)]\n\n<a href=\"https://opencollective.com/turf#backers\" target=\"_blank\"><img src=\"https://opencollective.com/turf/backers.svg?width=890\"></a>\n\n\n### Sponsors\n\nThank you to all our sponsors! (please ask your company to also support this open source project by [becoming a sponsor](https://opencollective.com/turf#sponsor))\n\n<a href=\"https://opencollective.com/turf/sponsor/0/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/0/avatar.svg\"></a>\n<a href=\"https://opencollective.com/turf/sponsor/1/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/1/avatar.svg\"></a>\n<a href=\"https://opencollective.com/turf/sponsor/2/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/2/avatar.svg\"></a>\n<a href=\"https://opencollective.com/turf/sponsor/3/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/3/avatar.svg\"></a>\n<a href=\"https://opencollective.com/turf/sponsor/4/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/4/avatar.svg\"></a>\n<a href=\"https://opencollective.com/turf/sponsor/5/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/5/avatar.svg\"></a>\n<a href=\"https://opencollective.com/turf/sponsor/6/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/6/avatar.svg\"></a>\n<a href=\"https://opencollective.com/turf/sponsor/7/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/7/avatar.svg\"></a>\n<a href=\"https://opencollective.com/turf/sponsor/8/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/8/avatar.svg\"></a>\n<a href=\"https://opencollective.com/turf/sponsor/9/website\" target=\"_blank\"><img src=\"https://opencollective.com/turf/sponsor/9/avatar.svg\"></a>\n"
  },
  {
    "path": "docs/OPEN_COLLECTIVE.md",
    "content": "## About Turf.js\n\n[TurfJS](http://turfjs.org/) is a modular geospatial analysis library designed for use in the browser as well as Node.js.\nWe provide almost 120 modules for people to use freely in their applications.\nOur most [popular module](https://www.npmjs.com/package/@turf/helpers) is downloaded 4,200,000 times a week via npm.\n\n\n## Why we're looking for support\n\nTurfJS is a community-driven project maintained by a small group of core contributors who work on the project in their spare time.\nTime is spent investigating issues, supporting users, improving documentation, fixing bugs, and adding new functionality.\nYour funding will go directly to development costs, marketing campaigns, promotional events, and other expenses needed to maintain and promote TurfJS.\n\nIn particular, we're looking for corporate sponsors who use TurfJS in revenue-generating ways, either by creating applications for clients, or through use in an app used by customers.\nOf course individuals are welcome to support us as well if TurfJS has helped you :) \n\n## 2024 Achievements\n\n  - First major release in a few years\n  - Modernised build and publishing infrastructure\n  - Merged many PRs that had been on hold\n  - Resolved several long standing bugs\n  - Overhauled the [documentation website](https://turfjs.org)\n\n## Goals for 2025\n\n  - Continue to work through the bug backlog\n  - Release more often\n  - Encourage more contributors by engaging with PRs\n  - Resolve disparities between planar and spherical modes\n"
  },
  {
    "path": "docs/PUBLISHING.md",
    "content": "## Publishing\n\n### Prerelease\n\nA [prerelease](https://github.com/Turfjs/turf/blob/master/.github/workflows/prerelease.yml) action is available that publishes a canary release for every commit or PR merged to the master branch.  However, this action is only [enabled](https://github.com/Turfjs/turf/actions/workflows/prerelease.yml) when needed.\n\nWhen used, it publishes an alpha release to NPM (e.g. `7.0.0-alpha.116` where 116 is the number of commits to master since the last release tag).\n- The version number is calculated by a combination of the output of `git describe` and the `publish:prerelease` script in the root package.json. It is typically setup to do a `minor` prerelease, but can be changed, such as prior to a `major` release.\n\n### Release\n\nA turf release is initiated from your local computer, and then built and published remotely via a github actions.\n\nTo make a release as a core contributor, you will need:\n- Turf repository write permission\n- Turf npm organization publish permission\n- A clean local copy of the Turf Github repository (not a fork!).  Starting with a fresh clone will ensure it's clean.\n  - Depending on your auth method\n    - `git clone git@github.com:Turfjs/turf.git turf-release`\n    - or `git clone https://github.com/Turfjs/turf.git turf-release`\n  - `cd turf-release` - start at the top-level of the repo\n  - `pnpm install`\n  - `pnpm test` - make sure everything is passing\n\n- If you choose to clean up an existing copy instead, be very careful:\n  - `git remote -v` - verify your remote origin points to `https://github.com/Turfjs/turf.git`\n  - `git checkout master`\n  - `git reset --hard` - reset your local working copy, will lose any uncommitted or unstashed work!\n  - `git fetch origin` - fetch latest commits\n  - `git rev-list master...origin/master` - verify local master in sync with remote, command output should be empty\n  - `pnpm install`\n  - `pnpm test` - make sure everything is passing\n\nBefore release:\n- If necessary, make and merge a PR with any last minute housekeeping items.\n- Turf's documentation (README.md files) should already be up to date as it is generated automatically on commit from JSDoc comments in source files.\n- Review PR's and decide the new version number to be published. See [semantic versioning](https://semver.org/).\n\nRun the following release commands, replacing `7.0.0` with your version number:\n\n- create a release branch and switch to it. All building, tagging and publishing will be done on the release branch, and then merged back into master in a later step.\n  - `git checkout origin/master -b release-7.0.0`\n\n- increment the version number of all packages, and create a local commit, without pushing to origin.  This will also create a release tag.\n  - `pnpm lerna version --no-commit-hooks --no-push 7.0.0`\n\n- Push the release branch and the release tag.\n  - `git push origin release-7.0.0 --follow-tags`\n  - Pushing the tag will trigger the Github [release](https://github.com/Turfjs/turf/blob/master/.github/workflows/release.yml) action which you can view the status of at - https://github.com/Turfjs/turf/actions.  If successful, a new [version](https://www.npmjs.com/package/@turf/turf?activeTab=versions) of all turf packages will have been published on NPM.\n\n- If the release action was not successful\n  - commit any changes to master to fix it.\n    - Make a [prerelease](#prerelease) if helpful to make sure the release action is successful.\n  - Then reset by deleting your tag and branch locally and remotely.\n    - `git push --delete origin v7.1.0`\n    - `git tag --delete v7.1.0`\n    - `git push -d origin release-7.0.0`\n    - `git branch -d release-7.0.0`\n  - Now redo the steps above starting with creating \"A clean local copy of the Turf Github repository\"\n\n- If the release action was successful, now create a Pull Request for the release to merge back to master.\n  - You may be given a link in the output of the branch/tag push command to create the PR.\n  - If you don't get this message, just go to https://github.com/Turfjs/turf/pulls and you should be prompted at the top to create a PR for this new branch you just pushed.\n  - If that prompt doesn't appear, then just create a new pull request from the PR page and make sure the title is the version number e.g. `v7.0.0` and that it is merging your release branch -> to master.\n  - Here is an example PR - https://github.com/Turfjs/turf/pull/2615.\n  - Get approval for the release PR, then \"Squash and merge\" it.\n    - Do not delete this branch in Github after merging, the release tag points to it.  If you do, click \"Restore branch\" at the bottom of the merged PR.\n\n#### Follow-on steps\n- As part of the release action, a draft Github release will have been created at https://github.com/Turfjs/turf/releases with an auto-generated changelog.\n  - Edit and add to the release notes for readability and completeness, specifically noting any breaking changes.  Use past releases as a guide.\n  - Be sure to \"Save draft\" each time, then ask for a review or edits from other contributors.\n  - Try not to leave the notes unpublished more than a day, people rely on these notes for upgrading.\n  - Once ready, click `Publish release`.  This will make the release notes publicly accessible and notify all watchers of the project.\n  - You can edit and republish your release notes after this, but that will likely notify followers, so best to get it right the first time.\n- Release a new version of the [API docs](https://github.com/Turfjs/turf-www/blob/master/CONTRIBUTING.md) for the https://turfjs.org website.\n"
  },
  {
    "path": "docs/SECURITY.md",
    "content": "# Security Policy\n\n## Supported Versions\n\nSecurity updates are applied only to the latest release.\n\n## Reporting a Vulnerability\n\nIf you have discovered a security vulnerability in this project, please report it privately. **Do not disclose it as a public issue.** This gives us time to work with you to fix the issue before public exposure, reducing the chance that the exploit will be used before a patch is released.\n\nPlease disclose it at [security advisory](https://github.com/Turfjs/turf/security/advisories/new).\n\nThis project is maintained by a team of volunteers on a reasonable-effort basis. As such, please give us at least 90 days to work on a fix before public exposure.\n"
  },
  {
    "path": "docs/SEE_ALSO.md",
    "content": "## Ports of Turf.js\n\nTurf has been ported to several other languages, listed below.\n\n- [Java](https://github.com/mapbox/mapbox-java/tree/master/services-turf/src/main/java/com/mapbox/turf) (Android, Java SE)\n  - > [The current to-do list for porting to Java](https://github.com/mapbox/mapbox-java/blob/master/docs/turf-port.md)\n- [Kotlin Multiplatform](https://maplibre.org/spatial-k/) (JVM, Android, Native, JS, WASM)\n  - > [The current to-do list for porting to Kotlin](https://github.com/maplibre/spatial-k/issues?q=sort%3Aupdated-desc%20is%3Aissue%20is%3Aopen%20label%3A%22turf%20port%22) \n- [Swift](https://github.com/mapbox/turf-swift/) (iOS, macOS, tvOS, watchOS, Linux)\n  - > Turf for Swift is **experimental** and its public API is subject to change. Please use with care.\n- [Dart/Flutter](https://github.com/dartclub/turf_dart) (Dart Web, Dart Native; Flutter for iOS, Android, macOS, Windows, Linux, Web)\n  - > The Turf for Dart port is still in progress, the implementation status can be found in the [README](https://github.com/dartclub/turf_dart#components).\n\n## Other Geospatial Analysis Software\n\nBelow are other geospatial options that aren't specifically ports of Turf.\n\n### Python\n\n* [Shapely](https://pypi.python.org/pypi/Shapely) is a friendly Python binding to GEOS\n* [geopandas](https://geopandas.org/) is a layer on top of Shapely and Fiona for PostGIS-like tasks\n\n### C++\n\n* [GEOS](https://libgeos.org/) is a port of JTS to C++\n\n### JavaScript\n\n* [jsts](https://github.com/bjornharrtell/jsts) is a port of JTS to JavaScript\n\n### Java\n\n* [JTS](https://www.tsusiatsoftware.net/jts/main.html)\n\n### Go\n\n* [gogeos](https://paulsmith.github.io/gogeos/) is a Go binding to GEOS\n* [go.geo](https://github.com/paulmach/go.geo) is a pure-Go implementation of some geometry operations and primitives\n\n### Postgres\n\n* [PostGIS](https://postgis.net/) provides geospatial operations within the Postgres database. Advanced operations rely on GEOS.\n"
  },
  {
    "path": "documentation.yml",
    "content": "toc:\n  Measurement:\n    - along\n    - area\n    - bbox\n    - bboxPolygon\n    - bearing\n    - center\n    - centerOfMass\n    - centroid\n    - destination\n    - distance\n    - envelope\n    - length\n    - midpoint\n    - pointOnFeature\n    - polygonTangents\n    - pointToLineDistance\n    - pointToPolygonDistance\n    - rhumbBearing\n    - rhumbDestination\n    - rhumbDistance\n    - square\n    - greatCircle\n  Coordinate Mutation:\n    - cleanCoords\n    - flip\n    - rewind\n    - round\n    - truncate\n  Transformation:\n    - bboxClip\n    - bezierSpline\n    - buffer\n    - circle\n    - clone\n    - concave\n    - convex\n    - difference\n    - dissolve\n    - intersect\n    - lineOffset\n    - polygonSmooth\n    - simplify\n    - tesselate\n    - transformRotate\n    - transformTranslate\n    - transformScale\n    - union\n    - voronoi\n  Feature Conversion:\n    - combine\n    - explode\n    - flatten\n    - lineToPolygon\n    - polygonize\n    - polygonToLine\n  Misc:\n    - kinks\n    - lineArc\n    - lineChunk\n    - lineIntersect\n    - lineOverlap\n    - lineSegment\n    - lineSlice\n    - lineSliceAlong\n    - lineSplit\n    - mask\n    - nearestPointOnLine\n    - sector\n    - shortestPath\n    - unkinkPolygon\n  Helper:\n    - featureCollection\n    - feature\n    - geometryCollection\n    - lineString\n    - multiLineString\n    - multiPoint\n    - multiPolygon\n    - point\n    - polygon\n  Random:\n    - randomPosition\n    - randomPoint\n    - randomLineString\n    - randomPolygon\n  Data:\n    - sample\n  Interpolation:\n    - interpolate\n    - isobands\n    - isolines\n    - planepoint\n    - tin\n  Joins:\n    - pointsWithinPolygon\n    - tag\n  Grids:\n    - hexGrid\n    - pointGrid\n    - squareGrid\n    - triangleGrid\n  Classification:\n    - nearestPoint\n  Aggregation:\n    - collect\n    - clustersDbscan\n    - clustersKmeans\n  Meta:\n    - coordAll\n    - coordEach\n    - coordReduce\n    - featureEach\n    - featureReduce\n    - flattenEach\n    - flattenReduce\n    - getCoord\n    - getCoords\n    - getGeom\n    - getType\n    - geomEach\n    - geomReduce\n    - propEach\n    - propReduce\n    - segmentEach\n    - segmentReduce\n    - getCluster\n    - clusterEach\n    - clusterReduce\n  Assertions:\n    - collectionOf\n    - containsNumber\n    - geojsonType\n    - featureOf\n  Booleans:\n    - booleanClockwise\n    - booleanConcave\n    - booleanContains\n    - booleanCrosses\n    - booleanDisjoint\n    - booleanEqual\n    - booleanIntersects\n    - booleanOverlap\n    - booleanParallel\n    - booleanPointInPolygon\n    - booleanPointOnLine\n    - booleanTouches\n    - booleanWithin\n  Unit Conversion:\n    - bearingToAzimuth\n    - azimuthToBearing\n    - convertArea\n    - convertLength\n    - degreesToRadians\n    - lengthToRadians\n    - lengthToDegrees\n    - radiansToLength\n    - radiansToDegrees\n    - toMercator\n    - toWgs84\npaths:\n  GeoJSON: \"https://tools.ietf.org/html/rfc7946#section-3\"\n  GeoJsonProperties: \"https://tools.ietf.org/html/rfc7946#section-3.2\"\n  GeometryCollection: \"https://tools.ietf.org/html/rfc7946#section-3.1.8\"\n  Point: \"https://tools.ietf.org/html/rfc7946#section-3.1.2\"\n  Points: \"https://tools.ietf.org/html/rfc7946#section-3.1.2\"\n  (Multi)Point: \"https://tools.ietf.org/html/rfc7946#section-3.1.2\"\n  (Multi)Points: \"https://tools.ietf.org/html/rfc7946#section-3.1.2\"\n  (Multi)Point(s): \"https://tools.ietf.org/html/rfc7946#section-3.1.2\"\n  MultiPoint: \"https://tools.ietf.org/html/rfc7946#section-3.1.3\"\n  MultiPoints: \"https://tools.ietf.org/html/rfc7946#section-3.1.3\"\n  LineString: \"https://tools.ietf.org/html/rfc7946#section-3.1.4\"\n  LineStrings: \"https://tools.ietf.org/html/rfc7946#section-3.1.4\"\n  (Multi)LineString: \"https://tools.ietf.org/html/rfc7946#section-3.1.4\"\n  (Multi)LineStrings: \"https://tools.ietf.org/html/rfc7946#section-3.1.4\"\n  (Multi)LineString(s): \"https://tools.ietf.org/html/rfc7946#section-3.1.4\"\n  MultiLineString: \"https://tools.ietf.org/html/rfc7946#section-3.1.5\"\n  MultiLineStrings: \"https://tools.ietf.org/html/rfc7946#section-3.1.5\"\n  Polygon: \"https://tools.ietf.org/html/rfc7946#section-3.1.6\"\n  Polygons: \"https://tools.ietf.org/html/rfc7946#section-3.1.6\"\n  (Multi)Polygon: \"https://tools.ietf.org/html/rfc7946#section-3.1.6\"\n  (Multi)Polygons: \"https://tools.ietf.org/html/rfc7946#section-3.1.6\"\n  (Multi)Polygon(s): \"https://tools.ietf.org/html/rfc7946#section-3.1.6\"\n  MultiPolygon: \"https://tools.ietf.org/html/rfc7946#section-3.1.7\"\n  MultiPolygons: \"https://tools.ietf.org/html/rfc7946#section-3.1.7\"\n  Geometry: \"https://tools.ietf.org/html/rfc7946#section-3.1\"\n  Feature: \"https://tools.ietf.org/html/rfc7946#section-3.2\"\n  Features: \"https://tools.ietf.org/html/rfc7946#section-3.3\"\n  FeatureCollection: \"https://tools.ietf.org/html/rfc7946#section-3.3\"\n  Positon: \"https://tools.ietf.org/html/rfc7946#section-3.1.1\"\n  GeometryObject: \"https://tools.ietf.org/html/rfc7946#section-3.1\"\n  GeoJSONObject: \"https://tools.ietf.org/html/rfc7946#section-3\"\n  GeoJSONText: \"https://tools.ietf.org/html/rfc7946#section-2\"\n  BBox: \"https://tools.ietf.org/html/rfc7946#section-5\"\n  BoundingBox: \"https://tools.ietf.org/html/rfc7946#section-5\"\n  Coord: \"https://tools.ietf.org/html/rfc7946#section-3.1.1\"\n"
  },
  {
    "path": "eslint.config.mjs",
    "content": "import globals from \"globals\";\nimport js from \"@eslint/js\";\nimport tsEslint from \"typescript-eslint\";\nimport prettierRecommended from \"eslint-plugin-prettier/recommended\";\n\nexport default tsEslint.config(\n  js.configs.recommended,\n  tsEslint.configs.recommended,\n  {\n    ignores: [\n      \"**/dist/**/*\",\n      \"**/node_modules\",\n      \"packages/turf/turf.js\",\n      \"packages/turf/turf.min.js\",\n      \"packages/turf/test.example.js\",\n    ],\n  },\n  {\n    plugins: {\n      \"@typescript-eslint\": tsEslint.plugin,\n    },\n\n    languageOptions: {\n      globals: {\n        ...globals.node,\n      },\n\n      parser: tsEslint.parser,\n      ecmaVersion: 6,\n      sourceType: \"module\",\n    },\n\n    rules: {\n      \"@typescript-eslint/no-unused-vars\": [\n        \"error\",\n        {\n          argsIgnorePattern: \"^_\",\n        },\n      ],\n\n      \"@typescript-eslint/explicit-module-boundary-types\": \"off\",\n      \"@typescript-eslint/no-explicit-any\": \"off\",\n      \"@typescript-eslint/no-non-null-assertion\": \"off\",\n      \"@typescript-eslint/no-var-requires\": \"off\",\n      \"no-constant-condition\": \"off\",\n      \"no-redeclare\": \"off\",\n      \"no-var\": \"off\",\n      \"prefer-const\": \"off\",\n    },\n  },\n  {\n    files: [\"packages/*/types.ts\", \"packages/*/test.ts\"],\n\n    rules: {\n      \"@typescript-eslint/no-unused-vars\": \"off\",\n      \"@typescript-eslint/no-unused-expressions\": \"off\",\n    },\n  },\n  {\n    files: [\n      \"**/.eslintrc.js\",\n      \"packages/*/bench.js\",\n      \"packages/*/test.js\",\n      \"packages/turf/rollup.config.js\",\n      \"scripts/check-dependencies.js\",\n    ],\n\n    languageOptions: {\n      globals: {\n        ...globals.node,\n      },\n    },\n  },\n  prettierRecommended\n);\n"
  },
  {
    "path": "examples/browser/index.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\" />\n    <title>Browser</title>\n    <script src=\"https://unpkg.com/@turf/turf\"></script>\n  </head>\n  <body>\n    <script>\n      console.log(turf.greatCircle([0, 0], [100, 10]));\n      console.log(turf.point([100, 0]));\n      console.log(turf.bbox(turf.point([100, 0])));\n    </script>\n  </body>\n</html>\n"
  },
  {
    "path": "examples/create-react-app/.gitignore",
    "content": "build"
  },
  {
    "path": "examples/create-react-app/package.json",
    "content": "{\n  \"private\": true,\n  \"name\": \"create-react-app\",\n  \"scripts\": {\n    \"start\": \"react-scripts start\",\n    \"build\": \"react-scripts build\",\n    \"test\": \"react-scripts test\",\n    \"eject\": \"react-scripts eject\"\n  },\n  \"dependencies\": {\n    \"react\": \"*\",\n    \"react-dom\": \"*\",\n    \"react-scripts\": \"*\",\n    \"@turf/turf\": \"*\"\n  }\n}\n"
  },
  {
    "path": "examples/create-react-app/public/index.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\" />\n    <title>React App</title>\n  </head>\n  <body></body>\n</html>\n"
  },
  {
    "path": "examples/create-react-app/src/index.js",
    "content": "import { greatCircle, point } from \"@turf/turf\";\n\nconsole.log(greatCircle([0, 0], [100, 10]));\nconsole.log(point([100, 0]));\n"
  },
  {
    "path": "examples/es-modules/index.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\" />\n    <title>ES Modules</title>\n  </head>\n  <body>\n    <script type=\"module\">\n      import { point, greatCircle } from \"https://unpkg.com/@turf/turf?module\";\n\n      console.log(greatCircle([0, 0], [100, 10]));\n      console.log(point([100, 0]));\n    </script>\n  </body>\n</html>\n"
  },
  {
    "path": "examples/es-modules-single-module/index.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\" />\n    <title>ES Modules - Single Module</title>\n  </head>\n  <body>\n    <script type=\"module\">\n      import { point } from \"https://unpkg.com/@turf/helpers?module\";\n\n      console.log(point([100, 0]));\n    </script>\n  </body>\n</html>\n"
  },
  {
    "path": "lerna.json",
    "content": "{\n  \"$schema\": \"node_modules/lerna/schemas/lerna-schema.json\",\n  \"npmClient\": \"pnpm\",\n  \"version\": \"7.3.4\",\n  \"command\": {\n    \"publish\": {\n      \"registry\": \"https://registry.npmjs.org\"\n    }\n  }\n}\n"
  },
  {
    "path": "nx.json",
    "content": "{\n  \"namedInputs\": {\n    \"default\": [\n      \"{workspaceRoot}/pnpm-lock.yaml\",\n      \"{workspaceRoot}/tsconfig.shared.json\",\n      \"{projectRoot}/package.json\",\n      \"{projectRoot}/tsconfig.json\"\n    ],\n    \"sources\": [\"{projectRoot}/index.{js,ts}\", \"{projectRoot}/lib/**\"]\n  },\n  \"targetDefaults\": {\n    \"build\": {\n      \"dependsOn\": [\"^build\"],\n      \"inputs\": [\n        \"default\",\n        \"sources\",\n        \"{workspaceRoot}/tsup.config.ts\",\n        \"{projectRoot}/index.d.ts\",\n        \"{projectRoot}/rollup.config.cjs\"\n      ],\n      \"outputs\": [\"{projectRoot}/dist\"],\n      \"cache\": true\n    },\n    \"test\": {\n      \"inputs\": [\n        \"default\",\n        \"sources\",\n        \"{projectRoot}/test.ts\",\n        \"{projectRoot}/test/**\",\n        \"{projectRoot}/types.ts\"\n      ],\n      \"dependsOn\": [\"build\"],\n      \"cache\": true\n    },\n    \"last-checks\": {\n      \"inputs\": [\"default\", \"{projectRoot}/test.ts\"],\n      \"dependsOn\": [\"build\", \"^last-checks\"],\n      \"cache\": true\n    }\n  }\n}\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"private\": true,\n  \"funding\": \"https://opencollective.com/turf\",\n  \"scripts\": {\n    \"docs\": \"node ./scripts/generate-readmes.mts\",\n    \"lint\": \"pnpm run /lint:.*/\",\n    \"lint:docs\": \"documentation lint packages/turf-*/index.js\",\n    \"lint:escheck-cjs\": \"es-check es8 packages/*/dist/cjs/index.cjs packages/turf/turf.min.js\",\n    \"lint:escheck-esm\": \"es-check --module es8 packages/*/dist/esm/index.js\",\n    \"lint:escheck-web\": \"es-check es5 packages/turf/turf.min.js\",\n    \"lint:eslint\": \"eslint packages\",\n    \"lint:mrl\": \"mrl check\",\n    \"lint:prettier\": \"prettier --check .\",\n    \"preinstall\": \"npx only-allow pnpm\",\n    \"prepare\": \"husky && lerna run build\",\n    \"test\": \"pnpm run lint && lerna run test && lerna run --scope @turf/turf last-checks\"\n  },\n  \"lint-staged\": {\n    \"package.json\": [\n      \"mrl check --paths\"\n    ],\n    \"**/*.{js,ts}\": [\n      \"eslint --fix\"\n    ],\n    \"packages/*/index.{js,ts}\": [\n      \"node ./scripts/generate-readmes.mts\",\n      \"git add ./packages/*/README.md\"\n    ],\n    \"*\": \"prettier --write --ignore-unknown\"\n  },\n  \"packageManager\": \"pnpm@10.10.0+sha256.fa0f513aa8191764d2b6b432420788c270f07b4f999099b65bb2010eec702a30\",\n  \"devDependencies\": {\n    \"@eslint/eslintrc\": \"^3.3.1\",\n    \"@eslint/js\": \"^9.31.0\",\n    \"@monorepolint/cli\": \"0.6.0-alpha.5\",\n    \"@monorepolint/config\": \"0.6.0-alpha.6\",\n    \"@monorepolint/core\": \"0.6.0-alpha.6\",\n    \"@monorepolint/rules\": \"0.6.0-alpha.6\",\n    \"@types/node\": \"22.15.3\",\n    \"acorn\": \"^8.14.1\",\n    \"camelcase\": \"^8.0.0\",\n    \"d3-queue\": \"*\",\n    \"decamelize\": \"^6.0.0\",\n    \"dependency-tree\": \"^11.1.1\",\n    \"documentation\": \"^14.0.3\",\n    \"es-check\": \"^9.0.0\",\n    \"eslint\": \"^9.31.0\",\n    \"eslint-config-prettier\": \"^10.1.8\",\n    \"eslint-plugin-prettier\": \"^5.5.3\",\n    \"esm\": \"^3.2.25\",\n    \"glob\": \"^11.1.0\",\n    \"globals\": \"^16.0.0\",\n    \"husky\": \"^9.1.7\",\n    \"lerna\": \"^9.0.3\",\n    \"lint-staged\": \"^15.5.1\",\n    \"load-json-file\": \"^7.0.1\",\n    \"meow\": \"^13.2.0\",\n    \"prettier\": \"^3.5.3\",\n    \"progress\": \"^2.0.3\",\n    \"tsup\": \"^8.4.0\",\n    \"typescript\": \"^5.8.3\",\n    \"typescript-eslint\": \"^8.38.0\",\n    \"yaml\": \"^2.8.2\"\n  }\n}\n"
  },
  {
    "path": "packages/turf/.gitignore",
    "content": "test.example.js\n"
  },
  {
    "path": "packages/turf/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf/README.md",
    "content": "# @turf/turf\n\n# turf\n\nTurf is a modular geospatial analysis engine written in JavaScript. It performs geospatial\nprocessing tasks with GeoJSON data and can be run on a server or in a browser.\n\n<!-- This file is automatically generated. Please don't edit it directly:\nif you find an error, edit the source file (likely index.js), and re-run\n./scripts/generate-readmes.mts in the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](http://turfjs.org/), an open source\nmodule collection dedicated to geographic algorithms. It is maintained in the\n[Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create\nPRs and issues.\n\n### Installation\n\nInstall this module individually:\n\n```sh\n$ npm install @turf/turf\n```\n\nOr install the Turf module that includes it as a function:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf/babel.config.json",
    "content": "{\n  \"presets\": [\n    [\n      \"@babel/preset-env\",\n      {\n        \"targets\": \"> 0.25%, last 2 versions, fully supports es5, not dead\"\n      }\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf/index.ts",
    "content": "/**\n * Turf is a modular geospatial analysis engine written in JavaScript. It performs geospatial\n * processing tasks with GeoJSON data and can be run on a server or in a browser.\n *\n * @module turf\n * @summary Geospatial analysis for JavaScript\n */\nexport { along } from \"@turf/along\";\nexport { angle } from \"@turf/angle\";\nexport { area } from \"@turf/area\";\nexport { bbox } from \"@turf/bbox\";\nexport { bboxClip } from \"@turf/bbox-clip\";\nexport { bboxPolygon } from \"@turf/bbox-polygon\";\nexport { bearing } from \"@turf/bearing\";\nexport { bezierSpline } from \"@turf/bezier-spline\";\nexport { booleanClockwise } from \"@turf/boolean-clockwise\";\nexport { booleanConcave } from \"@turf/boolean-concave\";\nexport { booleanContains } from \"@turf/boolean-contains\";\nexport { booleanCrosses } from \"@turf/boolean-crosses\";\nexport { booleanDisjoint } from \"@turf/boolean-disjoint\";\nexport { booleanEqual } from \"@turf/boolean-equal\";\nexport { booleanIntersects } from \"@turf/boolean-intersects\";\nexport { booleanOverlap } from \"@turf/boolean-overlap\";\nexport { booleanParallel } from \"@turf/boolean-parallel\";\nexport { booleanPointInPolygon } from \"@turf/boolean-point-in-polygon\";\nexport { booleanPointOnLine } from \"@turf/boolean-point-on-line\";\nexport { booleanTouches } from \"@turf/boolean-touches\";\nexport { booleanValid } from \"@turf/boolean-valid\";\nexport { booleanWithin } from \"@turf/boolean-within\";\nexport { buffer } from \"@turf/buffer\"; // JSTS Module\nexport { center } from \"@turf/center\";\nexport { centerMean } from \"@turf/center-mean\";\nexport { centerMedian } from \"@turf/center-median\";\nexport { centerOfMass } from \"@turf/center-of-mass\";\nexport { centroid } from \"@turf/centroid\";\nexport { circle } from \"@turf/circle\";\nexport { cleanCoords } from \"@turf/clean-coords\";\nexport * from \"@turf/clone\";\nexport * from \"@turf/clusters\";\nexport * as clusters from \"@turf/clusters\";\nexport { clustersDbscan } from \"@turf/clusters-dbscan\";\nexport { clustersKmeans } from \"@turf/clusters-kmeans\";\nexport { collect } from \"@turf/collect\";\nexport { combine } from \"@turf/combine\";\nexport { concave } from \"@turf/concave\";\nexport { convex } from \"@turf/convex\";\nexport { destination } from \"@turf/destination\";\nexport { difference } from \"@turf/difference\";\nexport { dissolve } from \"@turf/dissolve\";\nexport { distance } from \"@turf/distance\";\nexport { distanceWeight } from \"@turf/distance-weight\";\nexport { ellipse } from \"@turf/ellipse\";\nexport { envelope } from \"@turf/envelope\";\nexport { explode } from \"@turf/explode\";\nexport { flatten } from \"@turf/flatten\";\nexport { flip } from \"@turf/flip\";\nexport { geojsonRbush } from \"@turf/geojson-rbush\";\nexport { greatCircle } from \"@turf/great-circle\";\nexport * from \"@turf/helpers\";\nexport * as helpers from \"@turf/helpers\";\nexport { hexGrid } from \"@turf/hex-grid\";\nexport { interpolate } from \"@turf/interpolate\";\nexport { intersect } from \"@turf/intersect\";\nexport * from \"@turf/invariant\";\nexport * as invariant from \"@turf/invariant\";\nexport { isobands } from \"@turf/isobands\";\nexport { isolines } from \"@turf/isolines\";\nexport { kinks } from \"@turf/kinks\";\nexport { length } from \"@turf/length\";\nexport { lineArc } from \"@turf/line-arc\";\nexport { lineChunk } from \"@turf/line-chunk\";\nexport { lineIntersect } from \"@turf/line-intersect\";\nexport { lineOffset } from \"@turf/line-offset\";\nexport { lineOverlap } from \"@turf/line-overlap\";\nexport { lineSegment } from \"@turf/line-segment\";\nexport { lineSlice } from \"@turf/line-slice\";\nexport { lineSliceAlong } from \"@turf/line-slice-along\";\nexport { lineSplit } from \"@turf/line-split\";\nexport { lineToPolygon } from \"@turf/line-to-polygon\";\nexport { mask } from \"@turf/mask\";\nexport * from \"@turf/meta\";\nexport * as meta from \"@turf/meta\";\nexport { midpoint } from \"@turf/midpoint\";\nexport { moranIndex } from \"@turf/moran-index\";\nexport * from \"@turf/nearest-neighbor-analysis\";\nexport { nearestPoint } from \"@turf/nearest-point\";\nexport { nearestPointOnLine } from \"@turf/nearest-point-on-line\";\nexport { nearestPointToLine } from \"@turf/nearest-point-to-line\";\nexport { planepoint } from \"@turf/planepoint\";\nexport { pointGrid } from \"@turf/point-grid\";\nexport { pointOnFeature } from \"@turf/point-on-feature\";\nexport { pointsWithinPolygon } from \"@turf/points-within-polygon\";\nexport { pointToLineDistance } from \"@turf/point-to-line-distance\";\nexport { pointToPolygonDistance } from \"@turf/point-to-polygon-distance\";\nexport { polygonize } from \"@turf/polygonize\";\nexport { polygonSmooth } from \"@turf/polygon-smooth\";\nexport { polygonTangents } from \"@turf/polygon-tangents\";\nexport { polygonToLine } from \"@turf/polygon-to-line\";\nexport * from \"@turf/projection\";\nexport * as projection from \"@turf/projection\";\nexport * from \"@turf/quadrat-analysis\";\nexport * from \"@turf/random\";\nexport * as random from \"@turf/random\";\nexport { rectangleGrid } from \"@turf/rectangle-grid\";\nexport { rewind } from \"@turf/rewind\";\nexport { rhumbBearing } from \"@turf/rhumb-bearing\";\nexport { rhumbDestination } from \"@turf/rhumb-destination\";\nexport { rhumbDistance } from \"@turf/rhumb-distance\";\nexport { sample } from \"@turf/sample\";\nexport { sector } from \"@turf/sector\";\nexport { shortestPath } from \"@turf/shortest-path\";\nexport { simplify } from \"@turf/simplify\";\nexport { square } from \"@turf/square\";\nexport { squareGrid } from \"@turf/square-grid\";\nexport { standardDeviationalEllipse } from \"@turf/standard-deviational-ellipse\";\nexport { tag } from \"@turf/tag\";\nexport { tesselate } from \"@turf/tesselate\";\nexport { tin } from \"@turf/tin\";\nexport { transformRotate } from \"@turf/transform-rotate\";\nexport { transformScale } from \"@turf/transform-scale\";\nexport { transformTranslate } from \"@turf/transform-translate\";\nexport { triangleGrid } from \"@turf/triangle-grid\";\nexport { truncate } from \"@turf/truncate\";\nexport { union } from \"@turf/union\";\nexport { unkinkPolygon } from \"@turf/unkink-polygon\";\nexport { voronoi } from \"@turf/voronoi\";\nexport { directionalMean } from \"@turf/directional-mean\";\n"
  },
  {
    "path": "packages/turf/package.json",
    "content": "{\n  \"name\": \"@turf/turf\",\n  \"version\": \"7.3.4\",\n  \"description\": \"a JavaScript library for performing geospatial operations with GeoJSON\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"gis\",\n    \"geo\",\n    \"geojs\",\n    \"geospatial\",\n    \"geography\",\n    \"geometry\",\n    \"map\",\n    \"contour\",\n    \"centroid\",\n    \"tin\",\n    \"extent\",\n    \"geojson\",\n    \"grid\",\n    \"polygon\",\n    \"line\",\n    \"point\",\n    \"area\",\n    \"analysis\",\n    \"statistics\",\n    \"stats\",\n    \"midpoint\",\n    \"plane\",\n    \"quantile\",\n    \"jenks\",\n    \"sample\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"browser\": \"turf.min.js\",\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\",\n    \"turf.min.js\"\n  ],\n  \"scripts\": {\n    \"build\": \"tsup --config ../../tsup.config.ts && rollup -c rollup.config.js\",\n    \"last-checks\": \"pnpm run last-checks:testjs && pnpm run last-checks:example\",\n    \"last-checks:example\": \"tsx test.example.js\",\n    \"last-checks:testjs\": \"tsx test.ts\",\n    \"test\": \"echo '@turf/turf tests run in the last-checks step'\"\n  },\n  \"devDependencies\": {\n    \"@babel/core\": \"^7.26.10\",\n    \"@babel/preset-env\": \"^7.26.9\",\n    \"@rollup/plugin-babel\": \"^6.0.4\",\n    \"@rollup/plugin-commonjs\": \"^28.0.3\",\n    \"@rollup/plugin-node-resolve\": \"^16.0.1\",\n    \"@rollup/plugin-terser\": \"^0.4.4\",\n    \"@types/tape\": \"^5.8.1\",\n    \"camelcase\": \"^8.0.0\",\n    \"documentation\": \"^14.0.3\",\n    \"glob\": \"^11.1.0\",\n    \"rollup\": \"^4.40.1\",\n    \"rollup-plugin-polyfill-node\": \"^0.13.0\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/along\": \"workspace:*\",\n    \"@turf/angle\": \"workspace:*\",\n    \"@turf/area\": \"workspace:*\",\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/bbox-clip\": \"workspace:*\",\n    \"@turf/bbox-polygon\": \"workspace:*\",\n    \"@turf/bearing\": \"workspace:*\",\n    \"@turf/bezier-spline\": \"workspace:*\",\n    \"@turf/boolean-clockwise\": \"workspace:*\",\n    \"@turf/boolean-concave\": \"workspace:*\",\n    \"@turf/boolean-contains\": \"workspace:*\",\n    \"@turf/boolean-crosses\": \"workspace:*\",\n    \"@turf/boolean-disjoint\": \"workspace:*\",\n    \"@turf/boolean-equal\": \"workspace:*\",\n    \"@turf/boolean-intersects\": \"workspace:*\",\n    \"@turf/boolean-overlap\": \"workspace:*\",\n    \"@turf/boolean-parallel\": \"workspace:*\",\n    \"@turf/boolean-point-in-polygon\": \"workspace:*\",\n    \"@turf/boolean-point-on-line\": \"workspace:*\",\n    \"@turf/boolean-touches\": \"workspace:*\",\n    \"@turf/boolean-valid\": \"workspace:*\",\n    \"@turf/boolean-within\": \"workspace:*\",\n    \"@turf/buffer\": \"workspace:*\",\n    \"@turf/center\": \"workspace:*\",\n    \"@turf/center-mean\": \"workspace:*\",\n    \"@turf/center-median\": \"workspace:*\",\n    \"@turf/center-of-mass\": \"workspace:*\",\n    \"@turf/centroid\": \"workspace:*\",\n    \"@turf/circle\": \"workspace:*\",\n    \"@turf/clean-coords\": \"workspace:*\",\n    \"@turf/clone\": \"workspace:*\",\n    \"@turf/clusters\": \"workspace:*\",\n    \"@turf/clusters-dbscan\": \"workspace:*\",\n    \"@turf/clusters-kmeans\": \"workspace:*\",\n    \"@turf/collect\": \"workspace:*\",\n    \"@turf/combine\": \"workspace:*\",\n    \"@turf/concave\": \"workspace:*\",\n    \"@turf/convex\": \"workspace:*\",\n    \"@turf/destination\": \"workspace:*\",\n    \"@turf/difference\": \"workspace:*\",\n    \"@turf/directional-mean\": \"workspace:*\",\n    \"@turf/dissolve\": \"workspace:*\",\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/distance-weight\": \"workspace:*\",\n    \"@turf/ellipse\": \"workspace:*\",\n    \"@turf/envelope\": \"workspace:*\",\n    \"@turf/explode\": \"workspace:*\",\n    \"@turf/flatten\": \"workspace:*\",\n    \"@turf/flip\": \"workspace:*\",\n    \"@turf/geojson-rbush\": \"workspace:*\",\n    \"@turf/great-circle\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/hex-grid\": \"workspace:*\",\n    \"@turf/interpolate\": \"workspace:*\",\n    \"@turf/intersect\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/isobands\": \"workspace:*\",\n    \"@turf/isolines\": \"workspace:*\",\n    \"@turf/kinks\": \"workspace:*\",\n    \"@turf/length\": \"workspace:*\",\n    \"@turf/line-arc\": \"workspace:*\",\n    \"@turf/line-chunk\": \"workspace:*\",\n    \"@turf/line-intersect\": \"workspace:*\",\n    \"@turf/line-offset\": \"workspace:*\",\n    \"@turf/line-overlap\": \"workspace:*\",\n    \"@turf/line-segment\": \"workspace:*\",\n    \"@turf/line-slice\": \"workspace:*\",\n    \"@turf/line-slice-along\": \"workspace:*\",\n    \"@turf/line-split\": \"workspace:*\",\n    \"@turf/line-to-polygon\": \"workspace:*\",\n    \"@turf/mask\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@turf/midpoint\": \"workspace:*\",\n    \"@turf/moran-index\": \"workspace:*\",\n    \"@turf/nearest-neighbor-analysis\": \"workspace:*\",\n    \"@turf/nearest-point\": \"workspace:*\",\n    \"@turf/nearest-point-on-line\": \"workspace:*\",\n    \"@turf/nearest-point-to-line\": \"workspace:*\",\n    \"@turf/planepoint\": \"workspace:*\",\n    \"@turf/point-grid\": \"workspace:*\",\n    \"@turf/point-on-feature\": \"workspace:*\",\n    \"@turf/point-to-line-distance\": \"workspace:*\",\n    \"@turf/point-to-polygon-distance\": \"workspace:*\",\n    \"@turf/points-within-polygon\": \"workspace:*\",\n    \"@turf/polygon-smooth\": \"workspace:*\",\n    \"@turf/polygon-tangents\": \"workspace:*\",\n    \"@turf/polygon-to-line\": \"workspace:*\",\n    \"@turf/polygonize\": \"workspace:*\",\n    \"@turf/projection\": \"workspace:*\",\n    \"@turf/quadrat-analysis\": \"workspace:*\",\n    \"@turf/random\": \"workspace:*\",\n    \"@turf/rectangle-grid\": \"workspace:*\",\n    \"@turf/rewind\": \"workspace:*\",\n    \"@turf/rhumb-bearing\": \"workspace:*\",\n    \"@turf/rhumb-destination\": \"workspace:*\",\n    \"@turf/rhumb-distance\": \"workspace:*\",\n    \"@turf/sample\": \"workspace:*\",\n    \"@turf/sector\": \"workspace:*\",\n    \"@turf/shortest-path\": \"workspace:*\",\n    \"@turf/simplify\": \"workspace:*\",\n    \"@turf/square\": \"workspace:*\",\n    \"@turf/square-grid\": \"workspace:*\",\n    \"@turf/standard-deviational-ellipse\": \"workspace:*\",\n    \"@turf/tag\": \"workspace:*\",\n    \"@turf/tesselate\": \"workspace:*\",\n    \"@turf/tin\": \"workspace:*\",\n    \"@turf/transform-rotate\": \"workspace:*\",\n    \"@turf/transform-scale\": \"workspace:*\",\n    \"@turf/transform-translate\": \"workspace:*\",\n    \"@turf/triangle-grid\": \"workspace:*\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@turf/union\": \"workspace:*\",\n    \"@turf/unkink-polygon\": \"workspace:*\",\n    \"@turf/voronoi\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"@types/kdbush\": \"^3.0.5\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf/rollup.config.js",
    "content": "import { babel } from \"@rollup/plugin-babel\";\nimport { readFileSync } from \"fs\";\nimport commonjs from \"@rollup/plugin-commonjs\";\nimport nodePolyfills from \"rollup-plugin-polyfill-node\";\nimport nodeResolve from \"@rollup/plugin-node-resolve\";\nimport terser from \"@rollup/plugin-terser\";\n\nconst pckg = JSON.parse(readFileSync(\"./package.json\", \"utf-8\"));\nconst input = \"index.ts\";\n\nexport default [\n  {\n    input,\n    output: [{ file: pckg.browser, format: \"umd\", name: \"turf\" }],\n    plugins: [\n      commonjs(),\n      nodeResolve(),\n      nodePolyfills(),\n      babel({ babelHelpers: \"bundled\" }),\n      terser(),\n    ],\n  },\n];\n"
  },
  {
    "path": "packages/turf/test.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport test from \"tape\";\nimport camelCase from \"camelcase\";\nimport * as documentation from \"documentation\";\nimport * as turf from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n// Helpers\nconst directory = path.join(__dirname, \"..\");\nlet modules = [];\nfor (const name of fs.readdirSync(directory)) {\n  if (!name.includes(\"turf\")) continue;\n  const pckgPath = path.join(directory, name, \"package.json\");\n\n  if (!fs.existsSync(pckgPath)) continue;\n  const pckg = JSON.parse(fs.readFileSync(pckgPath));\n\n  let mainFile = path.join(directory, name, pckg.main);\n  if (!fs.existsSync(mainFile)) {\n    mainFile += \".js\";\n  }\n\n  const index = fs.readFileSync(mainFile, \"utf8\");\n  // Cater for JS or TS test files.\n  const test = fs.existsSync(path.join(directory, name, \"test.ts\"))\n    ? fs.readFileSync(path.join(directory, name, \"test.ts\"), \"utf8\")\n    : fs.readFileSync(path.join(directory, name, \"test.js\"), \"utf8\");\n\n  modules.push({\n    name,\n    pckg,\n    index,\n    test,\n    dir: path.join(directory, name),\n    dependencies: pckg.dependencies || {},\n    devDependencies: pckg.devDependencies || {},\n  });\n}\n// Exclude main Turf module\nmodules = modules.filter(({ name }) => name !== \"turf\");\n\ntest(\"turf -- invalid dependencies\", (t) => {\n  for (const { name, dependencies, devDependencies } of modules) {\n    for (const invalidDependency of [\n      \"load-json-file\",\n      \"write-json-file\",\n      \"tape\",\n      \"benchmark\",\n      \"glob\",\n      \"lerna\",\n      \"documentation\",\n      \"uglify-js\",\n    ]) {\n      if (dependencies[invalidDependency])\n        t.fail(\n          `${name} ${invalidDependency} should be defined as devDependencies`\n        );\n    }\n    if (devDependencies[\"eslint\"] || devDependencies[\"eslint-config-mourner\"])\n      t.fail(`${name} eslint is handled at the root level`);\n    if (devDependencies[\"@turf/helpers\"])\n      t.fail(\n        `${name} @turf/helpers should be located in Dependencies instead of DevDependencies`\n      );\n    // if (devDependencies['mkdirp']) t.fail(`${name} tests should not have to create folders`);\n  }\n  t.skip('remove \"mkdirp\" from testing');\n  t.end();\n});\n\ntest(\"turf -- strict version dependencies\", (t) => {\n  for (const { name, dependencies } of modules) {\n    if (dependencies[\"jsts\"]) t.fail(name + \" jsts must use turf-jsts\");\n    if (dependencies[\"jsts-es\"]) t.fail(name + \" jsts-es must use turf-jsts\");\n  }\n  t.end();\n});\n\ntest(\"turf -- duplicate dependencies\", (t) => {\n  for (const { name, dependencies, devDependencies } of modules) {\n    for (const dependency of Object.keys(dependencies)) {\n      if (devDependencies[dependency])\n        t.fail(`${name} ${dependency} is duplicated in devDependencies`);\n    }\n  }\n  t.end();\n});\n\ntest(\"turf -- check if files exists\", (t) => {\n  for (const { name, dir, pckg } of modules) {\n    const { files } = pckg;\n    if (!files || !files.length)\n      t.fail(`${name} (files) must be included in package.json`);\n    for (const file of files) {\n      // ignore Rollup bundle\n      if (file === \"main.js\") continue;\n      if (file === \"main.es.js\") continue;\n      if (file === \"index.d.ts\") continue;\n      if (!fs.existsSync(path.join(dir, file)))\n        t.fail(`${name} missing file ${file} in \"files\"`);\n    }\n  }\n  t.end();\n});\n\ntest(\"turf -- external files must be in the lib folder\", (t) => {\n  for (const { pckg } of modules) {\n    const { files } = pckg;\n    for (const file of files) {\n      switch (file) {\n        case \"main.js\":\n        case \"main.es.js\":\n        case \"index.js\":\n        case \"index.ts\":\n        case \"index.mjs\":\n        case \"index.d.ts\":\n        case \"lib\":\n          break;\n        default:\n        // t.fail(`${name} external files must be in the lib folder`)\n      }\n    }\n  }\n  t.end();\n});\n\ntest(\"turf -- MIT license\", (t) => {\n  const text = fs.readFileSync(path.join(__dirname, \"LICENSE\"), \"utf8\");\n  for (const { name, dir, pckg } of modules) {\n    const { license } = pckg;\n    if (license !== \"MIT\") t.fail(`${name} (license) must be \"MIT\"`);\n    if (fs.readFileSync(path.join(dir, \"LICENSE\"), \"utf8\") !== text)\n      t.fail(`${name} (LICENSE) content is different from @turf/turf`);\n  }\n  t.end();\n});\n\ntest(\"turf -- contributors\", (t) => {\n  for (const { name, pckg } of modules) {\n    for (const contributor of pckg.contributors || []) {\n      if (!contributor.match(/<@.+>/))\n        t.fail(\n          `${name} ${contributor} (contributors) should use \"Full Name <@GitHub>\"`\n        );\n    }\n  }\n  t.end();\n});\n\ntest(\"turf -- scoped package name\", (t) => {\n  for (const { name, pckg } of modules) {\n    const expected = name.replace(\"turf-\", \"@turf/\");\n    if (pckg.name !== expected)\n      t.fail(`${name} (name) must use ${expected} in package.json`);\n  }\n  t.end();\n});\n\ntest(\"turf -- pre-defined attributes in package.json\", (t) => {\n  for (const { name, pckg } of modules) {\n    if (pckg.author !== \"Turf Authors\")\n      t.fail(name + ' (author) should be \"Turf Authors\"');\n    // if (pckg.main !== 'main.js') t.skip(`${name} (main) must be \"main.js\" in package.json`);\n    // if (pckg.module !== 'main.es.js') t.skip(`${name} (module) must be \"main.es.js\" in package.json`);\n    if (pckg[\"jsnext:main\"])\n      t.fail(\n        `${name} (jsnext:main) is no longer required in favor of using (module) in package.json`\n      );\n    // if (pckg.types !== 'index.d.ts') t.fail(`${name} (types) must be \"index.d.ts\" in package.json`);\n    if (!pckg.bugs || pckg.bugs.url !== \"https://github.com/Turfjs/turf/issues\")\n      t.fail(\n        `${name} (bugs.url) must be \"https://github.com/Turfjs/turf/issues\" in package.json`\n      );\n    if (pckg.homepage !== \"https://github.com/Turfjs/turf\")\n      t.fail(\n        `${name} (homepage) must be \"https://github.com/Turfjs/turf\" in package.json`\n      );\n  }\n  t.end();\n});\n\ntest(\"turf -- parsing dependencies from index.js\", (t) => {\n  for (const { name, dependencies, index } of modules) {\n    // Read Depedencies from index.js\n    const dependenciesUsed = new Set();\n    for (const dependency of index.match(/(require\\(|from )'[@/a-z-\\d]+'/gi) ||\n      []) {\n      if (dependency.includes(\"jsts\")) continue;\n      const dependencyName = dependency.split(/'/)[1];\n      if (!dependencies[dependencyName])\n        t.skip(`${name} ${dependencyName} is missing from dependencies`);\n      if (dependenciesUsed.has(dependencyName))\n        t.skip(`${name} ${dependencyName} is duplicated in index.js`);\n      dependenciesUsed.add(dependencyName);\n    }\n\n    // Read Dependencies from package.json\n    for (const dependencyName of Object.keys(dependencies)) {\n      // Ignore @turf/helpers since it could be used in Typescript definition\n      switch (dependencyName) {\n        case \"@turf/helpers\":\n        case \"@turf/invariant\":\n        case \"@turf/meta\":\n        case \"jsts\":\n        case \"rbush\":\n        case \"topojson-client\":\n        case \"topojson-server\":\n          continue;\n      }\n      if (!dependenciesUsed.has(dependencyName))\n        t.skip(`${name} ${dependencyName} is not required in index.js`);\n    }\n  }\n  t.end();\n});\n\n// Test for missing modules\ntest(\"turf -- missing modules\", (t) => {\n  const files = {\n    typescript: fs.readFileSync(path.join(__dirname, \"dist/cjs/index.d.cts\")),\n    modules: fs.readFileSync(path.join(__dirname, \"dist/cjs/index.cjs\")),\n  };\n\n  modules.forEach(({ name }) => {\n    name = camelCase(name.replace(\"turf-\", \"\"));\n    // name exception with linestring => lineString\n    name = name\n      .replace(\"linestring\", \"lineString\")\n      .replace(\"Linestring\", \"LineString\");\n\n    // if (!files.typescript.includes(name)) t.skip(name + ' is missing from index.d.ts');\n    if (!files.modules.includes(name))\n      t.skip(name + \" is missing from index.js\");\n\n    switch (typeof turf[name]) {\n      case \"function\":\n        break;\n      case \"object\":\n        break;\n      case \"undefined\":\n        t.skip(name + \" is missing from index.js\");\n    }\n  });\n  t.end();\n});\n\nconst deprecated = {\n  modules: [\n    \"@turf/idw\",\n    \"@turf/line-distance\",\n    \"@turf/point-on-line\",\n    \"@turf/bezier\",\n    \"@turf/within\",\n    \"@turf/inside\",\n    \"@turf/nearest\",\n    \"@turf/polygon-to-linestring\",\n    \"@turf/linestring-to-polygon\",\n    \"@turf/point-on-surface\",\n  ],\n  methods: [\n    \"radians2degrees\",\n    \"degrees2radians\",\n    \"distanceToDegrees\",\n    \"distanceToRadians\",\n    \"radiansToDistance\",\n    \"bearingToAngle\",\n    \"convertDistance\",\n  ],\n};\n\ntest(\"turf -- check for deprecated modules\", (t) => {\n  for (const { name, dependencies, devDependencies } of modules) {\n    for (const dependency of [\n      ...Object.keys(dependencies),\n      ...Object.keys(devDependencies),\n    ]) {\n      if (deprecated.modules.indexOf(dependency) !== -1) {\n        throw new Error(\n          `${name} module has deprecated dependency ${dependency}`\n        );\n      }\n    }\n  }\n  t.end();\n});\n\ntest(\"turf -- check for deprecated methods\", (t) => {\n  for (const { name, index, test } of modules) {\n    // Exclude @turf/helpers from this test\n    if (name === \"turf-helpers\") continue;\n    for (const method of deprecated.methods) {\n      if ((test + index).match(method))\n        throw new Error(`${name} repo has deprecated method ${method}`);\n    }\n  }\n  t.end();\n});\n\n// TurfJS v5.0 Typescript definition uses @turf/helpers\ntest(\"turf -- update to newer Typescript definitions\", (t) => {\n  glob.sync(turfTypescriptPath).forEach((filepath) => {\n    const typescript = fs.readFileSync(filepath, \"utf8\");\n    if (typescript.includes('reference types=\"geojson\"'))\n      t.skip(filepath + \" update Typescript definition v5.0\");\n  });\n  t.end();\n});\n\n// test('turf -- require() not allowed in favor of import', t => {\n//     for (const {name, index, test} of modules) {\n//         if ((index).includes('= require(')) throw new Error(`${name} module cannot use require(), use ES import instead`);\n//     }\n//     t.end();\n// });\n\n/**\n * =========================\n * Builds => test.example.js\n * =========================\n * will be run as `posttest`\n */\n\n// File Paths\nconst testFilePath = path.join(__dirname, \"test.example.js\");\nconst turfModulesPath = path.join(__dirname, \"..\", \"turf-*\", \"index.js\");\nconst turfTypescriptPath = path.join(__dirname, \"..\", \"turf-*\", \"index.d.ts\");\n\n// Test Strings\nconst requireString = `import test from 'tape';\nimport * as turf from './dist/esm/index.js';\n`;\n\n/**\n * Generate Test String\n *\n * @param {Object} turfFunction Documentation function object\n * @param {Object} example Documentation example object\n * @returns {string} Test String\n */\nfunction testString(turfFunction, example) {\n  const turfName = turfFunction.name;\n  const testFunctionName = turfName + \"Test\";\n\n  // New modules will be excluded from tests\n  if (!turf[turfName])\n    return `\ntest('turf-example-${turfName}', t => {\n    t.skip('${turfName}');\n    t.end();\n});\n`;\n  // Specific moduels will exclude testing @example\n  switch (turfName) {\n    case \"isolines\":\n    case \"isobands\":\n      return `\n        test('turf-example-${turfName}', t => {\n            t.skip('${turfName}');\n            t.end();\n        });\n        `;\n  }\n  return `\ntest('turf-example-${turfName}', t => {\n    const ${testFunctionName} = () => {\n        ${example.description}\n    }\n    ${testFunctionName}();\n    t.pass('${turfName}');\n    t.end();\n});\n`;\n}\n\n// Iterate over each module and retrieve @example to build tests from them\nglob(turfModulesPath).then((files) => {\n  // Read each JSDocs from index.js files\n  documentation.build(files, {}).then((turfFunctions) => {\n    // Write header of test.js\n    const writeableStream = fs.createWriteStream(testFilePath);\n    writeableStream.write(requireString);\n    writeableStream.on(\"error\", (err) => {\n      throw err;\n    });\n\n    // Retrieve @example\n    turfFunctions.forEach((turfFunction) => {\n      if (turfFunction.examples) {\n        // Save to test.js\n        turfFunction.examples.forEach((example) => {\n          writeableStream.write(testString(turfFunction, example));\n        });\n      }\n    });\n    writeableStream.end();\n  });\n});\n"
  },
  {
    "path": "packages/turf/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-along/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-along/README.md",
    "content": "# @turf/along\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## along\n\nTakes a [LineString][1] and returns a [Point][2] at a specified distance along the line.\n\n### Parameters\n\n*   `line` **([Feature][3]<[LineString][1]> | [LineString][1])** input line\n*   `distance` **[number][4]** distance along the line\n*   `options` **[Object][5]?** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** Supports all valid Turf [Units][6]. (optional, default `\"kilometers\"`)\n\n### Examples\n\n```javascript\nvar line = turf.lineString([[-83, 30], [-84, 36], [-78, 41]]);\nvar options = {units: 'miles'};\n\nvar along = turf.along(line, 200, options);\n\n//addToMap\nvar addToMap = [along, line]\n```\n\nReturns **[Feature][3]<[Point][2]>** Point `distance` `units` along the line\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[6]: https://turfjs.org/docs/api/types/Units\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/along\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-along/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport Benchmark from \"benchmark\";\nimport { along } from \"./index.js\";\nimport { Feature, LineString } from \"geojson\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst line: Feature<LineString> = {\n  type: \"Feature\",\n  properties: {},\n  geometry: {\n    type: \"LineString\",\n    coordinates: [\n      [-77.0316696166992, 38.878605901789236],\n      [-77.02960968017578, 38.88194668656296],\n      [-77.02033996582031, 38.88408470638821],\n      [-77.02566146850586, 38.885821800123196],\n      [-77.02188491821289, 38.88956308852534],\n      [-77.01982498168944, 38.89236892551996],\n    ],\n  },\n};\n\nconst route = JSON.parse(\n  fs.readFileSync(__dirname + \"/test/fixtures/route.geojson\").toString()\n);\n\nconst suite = new Benchmark.Suite(\"turf-along\");\nsuite\n  .add(\"turf-along\", function () {\n    along(line, 1, { units: \"miles\" });\n  })\n  .add(\"turf-along#route 1 mile\", function () {\n    along(route, 1, { units: \"miles\" });\n  })\n  .add(\"turf-along#route 10 miles\", function () {\n    along(route, 10, { units: \"miles\" });\n  })\n  .add(\"turf-along#route 50 miles\", function () {\n    along(route, 50, { units: \"miles\" });\n  })\n  .add(\"turf-along#route 100 miles\", function () {\n    along(route, 100, { units: \"miles\" });\n  })\n  .on(\"cycle\", function (event) {\n    console.log(String(event.target));\n  })\n  .run();\n"
  },
  {
    "path": "packages/turf-along/index.ts",
    "content": "import { Feature, LineString, Point } from \"geojson\";\nimport { bearing } from \"@turf/bearing\";\nimport { destination } from \"@turf/destination\";\nimport { distance as measureDistance } from \"@turf/distance\";\nimport { point, Units } from \"@turf/helpers\";\nimport { getGeom } from \"@turf/invariant\";\n\n/**\n * Takes a {@link LineString} and returns a {@link Point} at a specified distance along the line.\n *\n * @function\n * @param {Feature<LineString>|LineString} line input line\n * @param {number} distance distance along the line\n * @param {Object} [options] Optional parameters\n * @param {Units} [options.units=\"kilometers\"] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.\n * @returns {Feature<Point>} Point `distance` `units` along the line\n * @example\n * var line = turf.lineString([[-83, 30], [-84, 36], [-78, 41]]);\n * var options = {units: 'miles'};\n *\n * var along = turf.along(line, 200, options);\n *\n * //addToMap\n * var addToMap = [along, line]\n */\nfunction along(\n  line: Feature<LineString> | LineString,\n  distance: number,\n  options: { units?: Units } = {}\n): Feature<Point> {\n  // Get Coords\n  const geom = getGeom(line);\n  const coords = geom.coordinates;\n  let travelled = 0;\n  for (let i = 0; i < coords.length; i++) {\n    if (distance >= travelled && i === coords.length - 1) {\n      break;\n    } else if (travelled >= distance) {\n      const overshot = distance - travelled;\n      if (!overshot) {\n        return point(coords[i]);\n      } else {\n        const direction = bearing(coords[i], coords[i - 1]) - 180;\n        const interpolated = destination(\n          coords[i],\n          overshot,\n          direction,\n          options\n        );\n        return interpolated;\n      }\n    } else {\n      travelled += measureDistance(coords[i], coords[i + 1], options);\n    }\n  }\n  return point(coords[coords.length - 1]);\n}\n\nexport { along };\nexport default along;\n"
  },
  {
    "path": "packages/turf-along/package.json",
    "content": "{\n  \"name\": \"@turf/along\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Calculates a point along a line at a specific distance\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"along\",\n    \"line\",\n    \"linestring\",\n    \"turf\",\n    \"distance\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/bearing\": \"workspace:*\",\n    \"@turf/destination\": \"workspace:*\",\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-along/test/fixtures/dc-line.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-77.0316696166992, 38.878605901789236],\n      [-77.02960968017578, 38.88194668656296],\n      [-77.02033996582031, 38.88408470638821],\n      [-77.02566146850586, 38.885821800123196],\n      [-77.02188491821289, 38.88956308852534],\n      [-77.01982498168944, 38.89236892551996],\n      [-77.02291488647461, 38.89370499941828],\n      [-77.02291488647461, 38.89958342598271],\n      [-77.01896667480469, 38.90011780426885],\n      [-77.01845169067383, 38.90733151751689],\n      [-77.02291488647461, 38.907865837489105],\n      [-77.02377319335936, 38.91200668090932],\n      [-77.02995300292969, 38.91254096569048],\n      [-77.03338623046875, 38.91708222394378],\n      [-77.03784942626953, 38.920821865485834],\n      [-77.03115463256836, 38.92830055730587],\n      [-77.03596115112305, 38.931505469602044]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-along/test/fixtures/dc-points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.0316696166992, 38.87406218243845]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02325820922852, 38.885688179036094]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.0222282409668, 38.89744587262311]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02377319335936, 38.910804525446686]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02840805053711, 38.91441093075183]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02840805053711, 38.92402711565758]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.04008102416992, 38.932707274379595]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.99390411376953, 38.91387666004744]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.03269958496094, 38.898648254305215]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02342987060545, 38.870587377511235]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-along/test/fixtures/route.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"name\": null,\n    \"cmt\": null,\n    \"desc\": null,\n    \"src\": null,\n    \"link1_href\": null,\n    \"link1_text\": null,\n    \"link1_type\": null,\n    \"link2_href\": null,\n    \"link2_text\": null,\n    \"link2_type\": null,\n    \"number\": null,\n    \"type\": null\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-79.254923, 36.98394],\n      [-79.254923, 36.983939],\n      [-79.255326, 36.9838],\n      [-79.255401, 36.983774],\n      [-79.25576, 36.983664],\n      [-79.256795, 36.984137],\n      [-79.257537, 36.984478],\n      [-79.258539, 36.984925],\n      [-79.259498, 36.985353],\n      [-79.260286, 36.985712],\n      [-79.261405, 36.986222],\n      [-79.262933, 36.986928],\n      [-79.263237, 36.987071],\n      [-79.263755, 36.987296],\n      [-79.264086, 36.987423],\n      [-79.264167, 36.987446],\n      [-79.264338, 36.987486],\n      [-79.264414, 36.987501],\n      [-79.264618, 36.987531],\n      [-79.2648, 36.987542],\n      [-79.264982, 36.987537],\n      [-79.265163, 36.987517],\n      [-79.26703, 36.987355],\n      [-79.267952, 36.98726],\n      [-79.268404, 36.987226],\n      [-79.268771, 36.987197],\n      [-79.26955, 36.987117],\n      [-79.271398, 36.986946],\n      [-79.271488, 36.986941],\n      [-79.271698, 36.986925],\n      [-79.271936, 36.986898],\n      [-79.272231, 36.986852],\n      [-79.272474, 36.986785],\n      [-79.272711, 36.986705],\n      [-79.272895, 36.986632],\n      [-79.273059, 36.986552],\n      [-79.273646, 36.986245],\n      [-79.274224, 36.985925],\n      [-79.274887, 36.985592],\n      [-79.275308, 36.985365],\n      [-79.275672, 36.98517],\n      [-79.276249, 36.984876],\n      [-79.277101, 36.984433],\n      [-79.277425, 36.984259],\n      [-79.277918, 36.983982],\n      [-79.27799, 36.98395],\n      [-79.278179, 36.98385],\n      [-79.278261, 36.9838],\n      [-79.278335, 36.983745],\n      [-79.278421, 36.983666],\n      [-79.27844, 36.983647],\n      [-79.278502, 36.983577],\n      [-79.278548, 36.983511],\n      [-79.278614, 36.983381],\n      [-79.278654, 36.983273],\n      [-79.278711, 36.983011],\n      [-79.278763, 36.98269],\n      [-79.278806, 36.982485],\n      [-79.278866, 36.982282],\n      [-79.278952, 36.982101],\n      [-79.279023, 36.981984],\n      [-79.280178, 36.980418],\n      [-79.280259, 36.980319],\n      [-79.280355, 36.980229],\n      [-79.280419, 36.98018],\n      [-79.280578, 36.980082],\n      [-79.280666, 36.980038],\n      [-79.280783, 36.979994],\n      [-79.280908, 36.979963],\n      [-79.281301, 36.979913],\n      [-79.281646, 36.979874],\n      [-79.282145, 36.979835],\n      [-79.282797, 36.97977],\n      [-79.283144, 36.979743],\n      [-79.283618, 36.97972],\n      [-79.28399, 36.979706],\n      [-79.284447, 36.979695],\n      [-79.284904, 36.979697],\n      [-79.286913, 36.979638],\n      [-79.287201, 36.979628],\n      [-79.287954, 36.979612],\n      [-79.288037, 36.979611],\n      [-79.288397, 36.97962],\n      [-79.288697, 36.979643],\n      [-79.289908, 36.979722],\n      [-79.289994, 36.979724],\n      [-79.290136, 36.979716],\n      [-79.290248, 36.979699],\n      [-79.290503, 36.979632],\n      [-79.291043, 36.979454],\n      [-79.291563, 36.979269],\n      [-79.292467, 36.97896],\n      [-79.292759, 36.978877],\n      [-79.292963, 36.978832],\n      [-79.293286, 36.978778],\n      [-79.293549, 36.978746],\n      [-79.293649, 36.978738],\n      [-79.293755, 36.978729],\n      [-79.293858, 36.978731],\n      [-79.294028, 36.978747],\n      [-79.294162, 36.978771],\n      [-79.294243, 36.9788],\n      [-79.294439, 36.978883],\n      [-79.294626, 36.978979],\n      [-79.294782, 36.979072],\n      [-79.294921, 36.979174],\n      [-79.295023, 36.979263],\n      [-79.295281, 36.979534],\n      [-79.295458, 36.979739],\n      [-79.296347, 36.980843],\n      [-79.296549, 36.981064],\n      [-79.296594, 36.981095],\n      [-79.296695, 36.981144],\n      [-79.296788, 36.98117],\n      [-79.296916, 36.981184],\n      [-79.297032, 36.981182],\n      [-79.297147, 36.981165],\n      [-79.297933, 36.980962],\n      [-79.298145, 36.980893],\n      [-79.298401, 36.98079],\n      [-79.298602, 36.980696],\n      [-79.298795, 36.980593],\n      [-79.299134, 36.980402],\n      [-79.299407, 36.980244],\n      [-79.299963, 36.9799],\n      [-79.301767, 36.97881],\n      [-79.301976, 36.978691],\n      [-79.3021, 36.978619],\n      [-79.302508, 36.978369],\n      [-79.302614, 36.978309],\n      [-79.3028, 36.97822],\n      [-79.302995, 36.978145],\n      [-79.303113, 36.978114],\n      [-79.303153, 36.978249],\n      [-79.303232, 36.978565],\n      [-79.303319, 36.978989],\n      [-79.303326, 36.979184],\n      [-79.303313, 36.979346],\n      [-79.30324, 36.979748],\n      [-79.303136, 36.980362],\n      [-79.303088, 36.980609],\n      [-79.302996, 36.981143],\n      [-79.302982, 36.981226],\n      [-79.302977, 36.981321],\n      [-79.302986, 36.98144],\n      [-79.303013, 36.981556],\n      [-79.303057, 36.98167],\n      [-79.303191, 36.9819],\n      [-79.303336, 36.982126],\n      [-79.303702, 36.982652],\n      [-79.304322, 36.983486],\n      [-79.304588, 36.98382],\n      [-79.304756, 36.984051],\n      [-79.304903, 36.984229],\n      [-79.305059, 36.984403],\n      [-79.305145, 36.984487],\n      [-79.305336, 36.984648],\n      [-79.305612, 36.98486],\n      [-79.30569, 36.984915],\n      [-79.305765, 36.984974],\n      [-79.305944, 36.98513],\n      [-79.306108, 36.985295],\n      [-79.306259, 36.985469],\n      [-79.306333, 36.98557],\n      [-79.306437, 36.985737],\n      [-79.306524, 36.985911],\n      [-79.306595, 36.98609],\n      [-79.306677, 36.986365],\n      [-79.306734, 36.98662],\n      [-79.306773, 36.986878],\n      [-79.306759, 36.986998],\n      [-79.306724, 36.987146],\n      [-79.306621, 36.987426],\n      [-79.306591, 36.987545],\n      [-79.306555, 36.987745],\n      [-79.306536, 36.987984],\n      [-79.30653, 36.988172],\n      [-79.306539, 36.988321],\n      [-79.30655, 36.988398],\n      [-79.306566, 36.988507],\n      [-79.306673, 36.988967],\n      [-79.306789, 36.989416],\n      [-79.30681, 36.989518],\n      [-79.306831, 36.98969],\n      [-79.306833, 36.989828],\n      [-79.306822, 36.989888],\n      [-79.306771, 36.990067],\n      [-79.306696, 36.99024],\n      [-79.306569, 36.990463],\n      [-79.306374, 36.99078],\n      [-79.30633, 36.990863],\n      [-79.306292, 36.990972],\n      [-79.306271, 36.991084],\n      [-79.306268, 36.991229],\n      [-79.306282, 36.991421],\n      [-79.306323, 36.991648],\n      [-79.30657, 36.992516],\n      [-79.306601, 36.992703],\n      [-79.306614, 36.992892],\n      [-79.306598, 36.993111],\n      [-79.306569, 36.993287],\n      [-79.306553, 36.993345],\n      [-79.306526, 36.993432],\n      [-79.306466, 36.993574],\n      [-79.306313, 36.993848],\n      [-79.305971, 36.994382],\n      [-79.305826, 36.994647],\n      [-79.305382, 36.995598],\n      [-79.305197, 36.995963],\n      [-79.305065, 36.996284],\n      [-79.304983, 36.996521],\n      [-79.304954, 36.99668],\n      [-79.30495, 36.996815],\n      [-79.304959, 36.996932],\n      [-79.304988, 36.997077],\n      [-79.305024, 36.99719],\n      [-79.305111, 36.99739],\n      [-79.305197, 36.997567],\n      [-79.30532, 36.997782],\n      [-79.305429, 36.997949],\n      [-79.305577, 36.998153],\n      [-79.306017, 36.99873],\n      [-79.306204, 36.998965],\n      [-79.306407, 36.999192],\n      [-79.306624, 36.999411],\n      [-79.30672, 36.999489],\n      [-79.306828, 36.999557],\n      [-79.306922, 36.999602],\n      [-79.307072, 36.999656],\n      [-79.307354, 36.999723],\n      [-79.307628, 36.999778],\n      [-79.308892, 36.999988],\n      [-79.309029, 37.00002],\n      [-79.309135, 37.000056],\n      [-79.30926, 37.000112],\n      [-79.309374, 37.00018],\n      [-79.309478, 37.000259],\n      [-79.30959, 37.000372],\n      [-79.309743, 37.000552],\n      [-79.31029, 37.001344],\n      [-79.31037, 37.001451],\n      [-79.310486, 37.001568],\n      [-79.310598, 37.001654],\n      [-79.310697, 37.001714],\n      [-79.310838, 37.001785],\n      [-79.310991, 37.001844],\n      [-79.31115, 37.001891],\n      [-79.311632, 37.001979],\n      [-79.312359, 37.002135],\n      [-79.312455, 37.002156],\n      [-79.312915, 37.002271],\n      [-79.313026, 37.002296],\n      [-79.313639, 37.002422],\n      [-79.314311, 37.002515],\n      [-79.314769, 37.002553],\n      [-79.315227, 37.002582],\n      [-79.315352, 37.002604],\n      [-79.315472, 37.002641],\n      [-79.315543, 37.002685],\n      [-79.315621, 37.00275],\n      [-79.315685, 37.002824],\n      [-79.315725, 37.002889],\n      [-79.315888, 37.002832],\n      [-79.316221, 37.002733],\n      [-79.316448, 37.002678],\n      [-79.31752, 37.002455],\n      [-79.318524, 37.002275],\n      [-79.319059, 37.002211],\n      [-79.319268, 37.002199],\n      [-79.319435, 37.0022],\n      [-79.319651, 37.002214],\n      [-79.319786, 37.002226],\n      [-79.320258, 37.002279],\n      [-79.320522, 37.002298],\n      [-79.320786, 37.002302],\n      [-79.320953, 37.002288],\n      [-79.321116, 37.002258],\n      [-79.321274, 37.002213],\n      [-79.321381, 37.00217],\n      [-79.321762, 37.002001],\n      [-79.322382, 37.001698],\n      [-79.322844, 37.001466],\n      [-79.323023, 37.001376],\n      [-79.323292, 37.001249],\n      [-79.32357, 37.001134],\n      [-79.323943, 37.001003],\n      [-79.324098, 37.000958],\n      [-79.324162, 37.000945],\n      [-79.32513, 37.000843],\n      [-79.325325, 37.000814],\n      [-79.325517, 37.000777],\n      [-79.325753, 37.000719],\n      [-79.327186, 37.000266],\n      [-79.327482, 37.000173],\n      [-79.327802, 37.00008],\n      [-79.328598, 36.999838],\n      [-79.329158, 36.999654],\n      [-79.329204, 36.999715],\n      [-79.329343, 36.999894],\n      [-79.32942, 36.999975],\n      [-79.329588, 37.000125],\n      [-79.329742, 37.000239],\n      [-79.329777, 37.000256],\n      [-79.329869, 37.000291],\n      [-79.329988, 37.000315],\n      [-79.330091, 37.000318],\n      [-79.33027, 37.000316],\n      [-79.330449, 37.000298],\n      [-79.331035, 37.000223],\n      [-79.331427, 37.000184],\n      [-79.331855, 37.000129],\n      [-79.333009, 37.000023],\n      [-79.334568, 36.999869],\n      [-79.335002, 36.999826],\n      [-79.33552, 36.999806],\n      [-79.33606, 36.999814],\n      [-79.336208, 36.999833],\n      [-79.336352, 36.999866],\n      [-79.33649, 36.999913],\n      [-79.336644, 36.999986],\n      [-79.336856, 37.000123],\n      [-79.336962, 37.000203],\n      [-79.337096, 37.000316],\n      [-79.337325, 37.000539],\n      [-79.337519, 37.000761],\n      [-79.338522, 37.001965],\n      [-79.339126, 37.002688],\n      [-79.339574, 37.003185],\n      [-79.340385, 37.004106],\n      [-79.340479, 37.004212],\n      [-79.340603, 37.004341],\n      [-79.340773, 37.00449],\n      [-79.340929, 37.004602],\n      [-79.341131, 37.004723],\n      [-79.341632, 37.004968],\n      [-79.341875, 37.005087],\n      [-79.342172, 37.005233],\n      [-79.342594, 37.00542],\n      [-79.343189, 37.005708],\n      [-79.343817, 37.006011],\n      [-79.344455, 37.006335],\n      [-79.344712, 37.00647],\n      [-79.345697, 37.006916],\n      [-79.345837, 37.006985],\n      [-79.346006, 37.00708],\n      [-79.346221, 37.007218],\n      [-79.347403, 37.008016],\n      [-79.347493, 37.008071],\n      [-79.347634, 37.008171],\n      [-79.347763, 37.008281],\n      [-79.347971, 37.008497],\n      [-79.348051, 37.008623],\n      [-79.348135, 37.008786],\n      [-79.348201, 37.008954],\n      [-79.34825, 37.009126],\n      [-79.348316, 37.00954],\n      [-79.348397, 37.010196],\n      [-79.34854, 37.01111],\n      [-79.348616, 37.011496],\n      [-79.348778, 37.012266],\n      [-79.349159, 37.013946],\n      [-79.349315, 37.014628],\n      [-79.349636, 37.015919],\n      [-79.349688, 37.016183],\n      [-79.349795, 37.016628],\n      [-79.349854, 37.016827],\n      [-79.349915, 37.01701],\n      [-79.350064, 37.017337],\n      [-79.350135, 37.017464],\n      [-79.350159, 37.017499],\n      [-79.350325, 37.017735],\n      [-79.35042, 37.017865],\n      [-79.350584, 37.018129],\n      [-79.35072, 37.01842],\n      [-79.350808, 37.018683],\n      [-79.35089, 37.018981],\n      [-79.350968, 37.019317],\n      [-79.35119, 37.020219],\n      [-79.351251, 37.020445],\n      [-79.351346, 37.020719],\n      [-79.351414, 37.020888],\n      [-79.351505, 37.021079],\n      [-79.351682, 37.021459],\n      [-79.351825, 37.02176],\n      [-79.352185, 37.022473],\n      [-79.352628, 37.023433],\n      [-79.352751, 37.023743],\n      [-79.35282, 37.023863],\n      [-79.352895, 37.023965],\n      [-79.353012, 37.024078],\n      [-79.353078, 37.024127],\n      [-79.353186, 37.024186],\n      [-79.353325, 37.024244],\n      [-79.353398, 37.024265],\n      [-79.353421, 37.02427],\n      [-79.353621, 37.024315],\n      [-79.353675, 37.024321],\n      [-79.35392, 37.024336],\n      [-79.354286, 37.024379],\n      [-79.354423, 37.024385],\n      [-79.354844, 37.024375],\n      [-79.355058, 37.024359],\n      [-79.355214, 37.024339],\n      [-79.355354, 37.024308],\n      [-79.355614, 37.024238],\n      [-79.355718, 37.024209],\n      [-79.355965, 37.024125],\n      [-79.356147, 37.024057],\n      [-79.356485, 37.02394],\n      [-79.356546, 37.023919],\n      [-79.356797, 37.023824],\n      [-79.356964, 37.023769],\n      [-79.357077, 37.023757],\n      [-79.357196, 37.023767],\n      [-79.357262, 37.023786],\n      [-79.357309, 37.023811],\n      [-79.35735, 37.023849],\n      [-79.357388, 37.023905],\n      [-79.357541, 37.024317],\n      [-79.357583, 37.024391],\n      [-79.357634, 37.024438],\n      [-79.357685, 37.024467],\n      [-79.357747, 37.024487],\n      [-79.35783, 37.024497],\n      [-79.357899, 37.024495],\n      [-79.35801, 37.02448],\n      [-79.358102, 37.02446],\n      [-79.358409, 37.025941],\n      [-79.358471, 37.026316],\n      [-79.358502, 37.026637],\n      [-79.358517, 37.026844],\n      [-79.358519, 37.027185],\n      [-79.358497, 37.027679],\n      [-79.358457, 37.028033],\n      [-79.358398, 37.028378],\n      [-79.358301, 37.028779],\n      [-79.358082, 37.029574],\n      [-79.357957, 37.030026],\n      [-79.357813, 37.030609],\n      [-79.357745, 37.03095],\n      [-79.357685, 37.031344],\n      [-79.357656, 37.031612],\n      [-79.357621, 37.032199],\n      [-79.357619, 37.032445],\n      [-79.357631, 37.032766],\n      [-79.357637, 37.032893],\n      [-79.357666, 37.033258],\n      [-79.357711, 37.033639],\n      [-79.357789, 37.034066],\n      [-79.357875, 37.034441],\n      [-79.357922, 37.034622],\n      [-79.358521, 37.036938],\n      [-79.358613, 37.037315],\n      [-79.358687, 37.037658],\n      [-79.358786, 37.038217],\n      [-79.358856, 37.038791],\n      [-79.358911, 37.039356],\n      [-79.358965, 37.0401],\n      [-79.359051, 37.041306],\n      [-79.359073, 37.041825],\n      [-79.359059, 37.042471],\n      [-79.359012, 37.042954],\n      [-79.35899, 37.04313],\n      [-79.358922, 37.043537],\n      [-79.358829, 37.043973],\n      [-79.358773, 37.044171],\n      [-79.358704, 37.044417],\n      [-79.358541, 37.044914],\n      [-79.358352, 37.045429],\n      [-79.357856, 37.04678],\n      [-79.357794, 37.046961],\n      [-79.357564, 37.047556],\n      [-79.357409, 37.047915],\n      [-79.357338, 37.048062],\n      [-79.357278, 37.048184],\n      [-79.356942, 37.048801],\n      [-79.356841, 37.048967],\n      [-79.356589, 37.049349],\n      [-79.356363, 37.049677],\n      [-79.354212, 37.052783],\n      [-79.353972, 37.053148],\n      [-79.353865, 37.053295],\n      [-79.353452, 37.053889],\n      [-79.352197, 37.055711],\n      [-79.352126, 37.055808],\n      [-79.351983, 37.056023],\n      [-79.351596, 37.056539],\n      [-79.351413, 37.056761],\n      [-79.35122, 37.056979],\n      [-79.351018, 37.057191],\n      [-79.35075, 37.057445],\n      [-79.350603, 37.057584],\n      [-79.35029, 37.057856],\n      [-79.348032, 37.059645],\n      [-79.346954, 37.060488],\n      [-79.345892, 37.06133],\n      [-79.345295, 37.061797],\n      [-79.344778, 37.062208],\n      [-79.344716, 37.062258],\n      [-79.343942, 37.062866],\n      [-79.343259, 37.06342],\n      [-79.342925, 37.063722],\n      [-79.342732, 37.063907],\n      [-79.342302, 37.064351],\n      [-79.342055, 37.06463],\n      [-79.341843, 37.064885],\n      [-79.341424, 37.065452],\n      [-79.341048, 37.066036],\n      [-79.340718, 37.066647],\n      [-79.340066, 37.068047],\n      [-79.338982, 37.070343],\n      [-79.336951, 37.074656],\n      [-79.336672, 37.075265],\n      [-79.335622, 37.077497],\n      [-79.335265, 37.078252],\n      [-79.33489, 37.079062],\n      [-79.334833, 37.079182],\n      [-79.334222, 37.080477],\n      [-79.333262, 37.082521],\n      [-79.333001, 37.083079],\n      [-79.332628, 37.084028],\n      [-79.332548, 37.084278],\n      [-79.332388, 37.08478],\n      [-79.332201, 37.085539],\n      [-79.33204, 37.086421],\n      [-79.33196, 37.086978],\n      [-79.331907, 37.087757],\n      [-79.331871, 37.088536],\n      [-79.33185, 37.089317],\n      [-79.331805, 37.090324],\n      [-79.331772, 37.091338],\n      [-79.331768, 37.092235],\n      [-79.33183, 37.093576],\n      [-79.331943, 37.095022],\n      [-79.332045, 37.096198],\n      [-79.332341, 37.099713],\n      [-79.332397, 37.100421],\n      [-79.332436, 37.101086],\n      [-79.332443, 37.1013],\n      [-79.332438, 37.10199],\n      [-79.332418, 37.102426],\n      [-79.332391, 37.102795],\n      [-79.332337, 37.103324],\n      [-79.332244, 37.103966],\n      [-79.332205, 37.104185],\n      [-79.332175, 37.104355],\n      [-79.332056, 37.104907],\n      [-79.332041, 37.104978],\n      [-79.331903, 37.105494],\n      [-79.331733, 37.106053],\n      [-79.331559, 37.106562],\n      [-79.33131, 37.107195],\n      [-79.331178, 37.107501],\n      [-79.330959, 37.107973],\n      [-79.330748, 37.108399],\n      [-79.330489, 37.108876],\n      [-79.330365, 37.109093],\n      [-79.330155, 37.10944],\n      [-79.329757, 37.110058],\n      [-79.328813, 37.111446],\n      [-79.328701, 37.111611],\n      [-79.327118, 37.113932],\n      [-79.327107, 37.113947],\n      [-79.326498, 37.114802],\n      [-79.326178, 37.115223],\n      [-79.326128, 37.115289],\n      [-79.32568, 37.115855],\n      [-79.325061, 37.116595],\n      [-79.324816, 37.116878],\n      [-79.324497, 37.117235],\n      [-79.324161, 37.117601],\n      [-79.323816, 37.117964],\n      [-79.323589, 37.118194],\n      [-79.323104, 37.118678],\n      [-79.322015, 37.119732],\n      [-79.320826, 37.12089],\n      [-79.320279, 37.121415],\n      [-79.31993, 37.121729],\n      [-79.319276, 37.122271],\n      [-79.318828, 37.122609],\n      [-79.318377, 37.122925],\n      [-79.317535, 37.123462],\n      [-79.316595, 37.123987],\n      [-79.315586, 37.124473],\n      [-79.314958, 37.124742],\n      [-79.311931, 37.125973],\n      [-79.303986, 37.129196],\n      [-79.303177, 37.129555],\n      [-79.302367, 37.129915],\n      [-79.30095, 37.130617],\n      [-79.298871, 37.131691],\n      [-79.298008, 37.132146],\n      [-79.293574, 37.134491],\n      [-79.293108, 37.134749],\n      [-79.292712, 37.134937],\n      [-79.292278, 37.135125],\n      [-79.291836, 37.1353],\n      [-79.291351, 37.135473],\n      [-79.290905, 37.135615],\n      [-79.290365, 37.135772],\n      [-79.289641, 37.135941],\n      [-79.289078, 37.136055],\n      [-79.288222, 37.136184],\n      [-79.287781, 37.136228],\n      [-79.287205, 37.136269],\n      [-79.281895, 37.136526],\n      [-79.280512, 37.136607],\n      [-79.279731, 37.13667],\n      [-79.278968, 37.136747],\n      [-79.277922, 37.136872],\n      [-79.276244, 37.13712],\n      [-79.273494, 37.137624],\n      [-79.272005, 37.137904],\n      [-79.271794, 37.137944],\n      [-79.266159, 37.138985],\n      [-79.265643, 37.139056],\n      [-79.265084, 37.139119],\n      [-79.264404, 37.139177],\n      [-79.263826, 37.139213],\n      [-79.263263, 37.139234],\n      [-79.262666, 37.139241],\n      [-79.262103, 37.139234],\n      [-79.26149, 37.139213],\n      [-79.260895, 37.13918],\n      [-79.260488, 37.139149],\n      [-79.257811, 37.138859],\n      [-79.253283, 37.138354],\n      [-79.251817, 37.138189],\n      [-79.251311, 37.138138],\n      [-79.25082, 37.138104],\n      [-79.250344, 37.138087],\n      [-79.249949, 37.138091],\n      [-79.249141, 37.138125],\n      [-79.248701, 37.138169],\n      [-79.248255, 37.138232],\n      [-79.247815, 37.138303],\n      [-79.247404, 37.138388],\n      [-79.246983, 37.138492],\n      [-79.24619, 37.138741],\n      [-79.246034, 37.138799],\n      [-79.245567, 37.138991],\n      [-79.243639, 37.139795],\n      [-79.242121, 37.140435],\n      [-79.241618, 37.140648],\n      [-79.241125, 37.14089],\n      [-79.240755, 37.141103],\n      [-79.240471, 37.141293],\n      [-79.240237, 37.141475],\n      [-79.240023, 37.141661],\n      [-79.239659, 37.142024],\n      [-79.238717, 37.143115],\n      [-79.238653, 37.143189],\n      [-79.238443, 37.143404],\n      [-79.23822, 37.14361],\n      [-79.237972, 37.143817],\n      [-79.237711, 37.144013],\n      [-79.237424, 37.144206],\n      [-79.237139, 37.144378],\n      [-79.236846, 37.144536],\n      [-79.23672, 37.144599],\n      [-79.235366, 37.145185],\n      [-79.235031, 37.145327],\n      [-79.233118, 37.146139],\n      [-79.232943, 37.146214],\n      [-79.23213, 37.146559],\n      [-79.23159, 37.146789],\n      [-79.231268, 37.146943],\n      [-79.230971, 37.147103],\n      [-79.230723, 37.147248],\n      [-79.230589, 37.147333],\n      [-79.230303, 37.147527],\n      [-79.230067, 37.147704],\n      [-79.229831, 37.147902],\n      [-79.229608, 37.148108],\n      [-79.229398, 37.148324],\n      [-79.229192, 37.148559],\n      [-79.229002, 37.148802],\n      [-79.228823, 37.149065],\n      [-79.228683, 37.149299],\n      [-79.228557, 37.149537],\n      [-79.228436, 37.149807],\n      [-79.228332, 37.15008],\n      [-79.22824, 37.150371],\n      [-79.228165, 37.150679],\n      [-79.228144, 37.150787],\n      [-79.22795, 37.1522],\n      [-79.227939, 37.152282],\n      [-79.227922, 37.152405],\n      [-79.227831, 37.1531],\n      [-79.227768, 37.153577],\n      [-79.22775, 37.153704],\n      [-79.227707, 37.153951],\n      [-79.227614, 37.154338],\n      [-79.227519, 37.154642],\n      [-79.227394, 37.154981],\n      [-79.227259, 37.155289],\n      [-79.227113, 37.155579],\n      [-79.227008, 37.155764],\n      [-79.226979, 37.155814],\n      [-79.226931, 37.155892],\n      [-79.22673, 37.156196],\n      [-79.226531, 37.156466],\n      [-79.226359, 37.156679],\n      [-79.226091, 37.156981],\n      [-79.225836, 37.157239],\n      [-79.225577, 37.157477],\n      [-79.225307, 37.157704],\n      [-79.225033, 37.15791],\n      [-79.224838, 37.158043],\n      [-79.223223, 37.159106],\n      [-79.222625, 37.159494],\n      [-79.222577, 37.159525],\n      [-79.222526, 37.159559],\n      [-79.222269, 37.159725],\n      [-79.221758, 37.160065],\n      [-79.219427, 37.161585],\n      [-79.218294, 37.162324],\n      [-79.218211, 37.162378],\n      [-79.216923, 37.163217],\n      [-79.216426, 37.163539],\n      [-79.215909, 37.16389],\n      [-79.215531, 37.164171],\n      [-79.215221, 37.164425],\n      [-79.214936, 37.164678],\n      [-79.214674, 37.164929],\n      [-79.214292, 37.165324],\n      [-79.214244, 37.165374],\n      [-79.213081, 37.166582],\n      [-79.212642, 37.167038],\n      [-79.212368, 37.167324],\n      [-79.212048, 37.167658],\n      [-79.211768, 37.16795],\n      [-79.211486, 37.168245],\n      [-79.211416, 37.168318],\n      [-79.211008, 37.168744],\n      [-79.210963, 37.168791],\n      [-79.210689, 37.16908],\n      [-79.210304, 37.16953],\n      [-79.2101, 37.169782],\n      [-79.209923, 37.170006],\n      [-79.209526, 37.170538],\n      [-79.209343, 37.170798],\n      [-79.207037, 37.174039],\n      [-79.206764, 37.174435],\n      [-79.206634, 37.174641],\n      [-79.206469, 37.174929],\n      [-79.206273, 37.17532],\n      [-79.20615, 37.175603],\n      [-79.206073, 37.175802],\n      [-79.206026, 37.175929],\n      [-79.205916, 37.176273],\n      [-79.205845, 37.176539],\n      [-79.205757, 37.176917],\n      [-79.205696, 37.177164],\n      [-79.205658, 37.177349],\n      [-79.205603, 37.177589],\n      [-79.205562, 37.177759],\n      [-79.205539, 37.177863],\n      [-79.205487, 37.178091],\n      [-79.205427, 37.178344],\n      [-79.205364, 37.178607],\n      [-79.205297, 37.178889],\n      [-79.205253, 37.179068],\n      [-79.20519, 37.179332],\n      [-79.205122, 37.179618],\n      [-79.205055, 37.179895],\n      [-79.204997, 37.180138],\n      [-79.204614, 37.181773],\n      [-79.204588, 37.181883],\n      [-79.204488, 37.182314],\n      [-79.204319, 37.183043],\n      [-79.204265, 37.183268],\n      [-79.204123, 37.18388],\n      [-79.203924, 37.184747],\n      [-79.203855, 37.185167],\n      [-79.203781, 37.185725],\n      [-79.203767, 37.185869],\n      [-79.203714, 37.186727],\n      [-79.203688, 37.188358],\n      [-79.203665, 37.189574],\n      [-79.203624, 37.192626],\n      [-79.203627, 37.192665],\n      [-79.203588, 37.193792],\n      [-79.203572, 37.194229],\n      [-79.203568, 37.194309],\n      [-79.203559, 37.194539],\n      [-79.203553, 37.194676],\n      [-79.203543, 37.194919],\n      [-79.203531, 37.195199],\n      [-79.203502, 37.195859],\n      [-79.203483, 37.196276],\n      [-79.203468, 37.196579],\n      [-79.203458, 37.196792],\n      [-79.203433, 37.197322],\n      [-79.203422, 37.197563],\n      [-79.20341, 37.197824],\n      [-79.203397, 37.198095],\n      [-79.20339, 37.198254],\n      [-79.203379, 37.19847],\n      [-79.203358, 37.198936],\n      [-79.20334, 37.19935],\n      [-79.203304, 37.200071],\n      [-79.203262, 37.200536],\n      [-79.203244, 37.200686],\n      [-79.203162, 37.201241],\n      [-79.203073, 37.201722],\n      [-79.20306, 37.201793],\n      [-79.203026, 37.201977],\n      [-79.202836, 37.203003],\n      [-79.202752, 37.203459],\n      [-79.202563, 37.204478],\n      [-79.202452, 37.205079],\n      [-79.202395, 37.205385],\n      [-79.201856, 37.208299],\n      [-79.201805, 37.208574],\n      [-79.201702, 37.209126],\n      [-79.201673, 37.209268],\n      [-79.201619, 37.209479],\n      [-79.201573, 37.209638],\n      [-79.201505, 37.209836],\n      [-79.201407, 37.210085],\n      [-79.201284, 37.210341],\n      [-79.201114, 37.21064],\n      [-79.201026, 37.210776],\n      [-79.200882, 37.21098],\n      [-79.200649, 37.211282],\n      [-79.200396, 37.211554],\n      [-79.199727, 37.212167],\n      [-79.199637, 37.212249],\n      [-79.199553, 37.212325],\n      [-79.199391, 37.212473],\n      [-79.199159, 37.212684],\n      [-79.19865, 37.213144],\n      [-79.197756, 37.213946],\n      [-79.197588, 37.214097],\n      [-79.197252, 37.214415],\n      [-79.196922, 37.214731],\n      [-79.196487, 37.215166],\n      [-79.196055, 37.215596],\n      [-79.195714, 37.216042],\n      [-79.195395, 37.216449],\n      [-79.194175, 37.218086],\n      [-79.193942, 37.2184],\n      [-79.193714, 37.218705],\n      [-79.193339, 37.219208],\n      [-79.193103, 37.219523],\n      [-79.192804, 37.219924],\n      [-79.192465, 37.220384],\n      [-79.191972, 37.221056],\n      [-79.191665, 37.221486],\n      [-79.191271, 37.222039],\n      [-79.191066, 37.222328],\n      [-79.190837, 37.222648],\n      [-79.190786, 37.222724],\n      [-79.190591, 37.223024],\n      [-79.190561, 37.223069],\n      [-79.190114, 37.223762],\n      [-79.189976, 37.223994],\n      [-79.189786, 37.224314],\n      [-79.189538, 37.224731],\n      [-79.189441, 37.224896],\n      [-79.189231, 37.225287],\n      [-79.188873, 37.225949],\n      [-79.188647, 37.226369],\n      [-79.188578, 37.226497],\n      [-79.188422, 37.22682],\n      [-79.187747, 37.228226],\n      [-79.187638, 37.228454],\n      [-79.186752, 37.230317],\n      [-79.186236, 37.23142],\n      [-79.186183, 37.231531],\n      [-79.186143, 37.231633],\n      [-79.186012, 37.231905],\n      [-79.185971, 37.232009],\n      [-79.185901, 37.232204],\n      [-79.185821, 37.232467],\n      [-79.185783, 37.232629],\n      [-79.185746, 37.232787],\n      [-79.185712, 37.232989],\n      [-79.185564, 37.234115],\n      [-79.18554, 37.234342],\n      [-79.185535, 37.234388],\n      [-79.185527, 37.234464],\n      [-79.185489, 37.234824],\n      [-79.185459, 37.235133],\n      [-79.185442, 37.235447],\n      [-79.185444, 37.235802],\n      [-79.185467, 37.236157],\n      [-79.185494, 37.236478],\n      [-79.185509, 37.236629],\n      [-79.185568, 37.237037],\n      [-79.185613, 37.237268],\n      [-79.185642, 37.237403],\n      [-79.185719, 37.237706],\n      [-79.185791, 37.237965],\n      [-79.185811, 37.238037],\n      [-79.185899, 37.238345],\n      [-79.185952, 37.238527],\n      [-79.18597, 37.23859],\n      [-79.186042, 37.238834],\n      [-79.186525, 37.240494],\n      [-79.186638, 37.240882],\n      [-79.186786, 37.241392],\n      [-79.186995, 37.242108],\n      [-79.187061, 37.242336],\n      [-79.187075, 37.242384],\n      [-79.187298, 37.243149],\n      [-79.187378, 37.243422],\n      [-79.187527, 37.243936],\n      [-79.187774, 37.244774],\n      [-79.187853, 37.245008],\n      [-79.187949, 37.245331],\n      [-79.187975, 37.245426],\n      [-79.18809, 37.245933],\n      [-79.188158, 37.246339],\n      [-79.188193, 37.246639],\n      [-79.188214, 37.246935],\n      [-79.188219, 37.247189],\n      [-79.188219, 37.247284],\n      [-79.188204, 37.247624],\n      [-79.188173, 37.24795],\n      [-79.188121, 37.248287],\n      [-79.188078, 37.248502],\n      [-79.188012, 37.248777],\n      [-79.187964, 37.248948],\n      [-79.18752, 37.250322],\n      [-79.187502, 37.250377],\n      [-79.187461, 37.250489],\n      [-79.187101, 37.251604],\n      [-79.186977, 37.251986],\n      [-79.186803, 37.252487],\n      [-79.186647, 37.252862],\n      [-79.186473, 37.253233],\n      [-79.1864, 37.253375],\n      [-79.186369, 37.253435],\n      [-79.186196, 37.253727],\n      [-79.186096, 37.253883],\n      [-79.185846, 37.254253],\n      [-79.185619, 37.254587],\n      [-79.184816, 37.255765],\n      [-79.184332, 37.256471],\n      [-79.184251, 37.256583],\n      [-79.183919, 37.257073],\n      [-79.183282, 37.258009],\n      [-79.183273, 37.258023],\n      [-79.182658, 37.258928],\n      [-79.182428, 37.259266],\n      [-79.182236, 37.259548],\n      [-79.182189, 37.259617],\n      [-79.181677, 37.260371],\n      [-79.180889, 37.261527],\n      [-79.180329, 37.262346],\n      [-79.179966, 37.262877],\n      [-79.178561, 37.264935],\n      [-79.177834, 37.265998],\n      [-79.17762, 37.266312],\n      [-79.177577, 37.266375],\n      [-79.177344, 37.266717],\n      [-79.177268, 37.266828],\n      [-79.175738, 37.269066],\n      [-79.175293, 37.269718],\n      [-79.175059, 37.270062],\n      [-79.175024, 37.270113],\n      [-79.174746, 37.27052],\n      [-79.174499, 37.270885],\n      [-79.174225, 37.271286],\n      [-79.17318, 37.27282],\n      [-79.172596, 37.273676],\n      [-79.172062, 37.274457],\n      [-79.17205, 37.274476],\n      [-79.171892, 37.274707],\n      [-79.171746, 37.274919],\n      [-79.170612, 37.276581],\n      [-79.170091, 37.277344],\n      [-79.170074, 37.277368],\n      [-79.169014, 37.27887],\n      [-79.168768, 37.279279],\n      [-79.168446, 37.279751],\n      [-79.168095, 37.28026],\n      [-79.167791, 37.280704],\n      [-79.167004, 37.281854],\n      [-79.166839, 37.282126],\n      [-79.166686, 37.282417],\n      [-79.166553, 37.282715],\n      [-79.166455, 37.282978],\n      [-79.166365, 37.283271],\n      [-79.166331, 37.283406],\n      [-79.166277, 37.283662],\n      [-79.166236, 37.283934],\n      [-79.166211, 37.284233],\n      [-79.166208, 37.284331],\n      [-79.16621, 37.284606],\n      [-79.166232, 37.284894],\n      [-79.166273, 37.28518],\n      [-79.166341, 37.285491],\n      [-79.166394, 37.28568],\n      [-79.166419, 37.28576],\n      [-79.16653, 37.286061],\n      [-79.16656, 37.286133],\n      [-79.166601, 37.286228],\n      [-79.167073, 37.287187],\n      [-79.167342, 37.287727],\n      [-79.167647, 37.288335],\n      [-79.167961, 37.288961],\n      [-79.168213, 37.289466],\n      [-79.168669, 37.290363],\n      [-79.169252, 37.291516],\n      [-79.169707, 37.292425],\n      [-79.170019, 37.293049],\n      [-79.170164, 37.293337],\n      [-79.170762, 37.294525],\n      [-79.171017, 37.295032],\n      [-79.171197, 37.29539],\n      [-79.171228, 37.295451],\n      [-79.171707, 37.296402],\n      [-79.171854, 37.296694],\n      [-79.172057, 37.297099],\n      [-79.172329, 37.297639],\n      [-79.172756, 37.298485],\n      [-79.172921, 37.29877],\n      [-79.173118, 37.299071],\n      [-79.173326, 37.299351],\n      [-79.1734, 37.299443],\n      [-79.173711, 37.299824],\n      [-79.174643, 37.300928],\n      [-79.177789, 37.304649],\n      [-79.17841, 37.305383],\n      [-79.179563, 37.306751],\n      [-79.18128, 37.308787],\n      [-79.181492, 37.309036],\n      [-79.181949, 37.309573],\n      [-79.182599, 37.310336],\n      [-79.183198, 37.311046],\n      [-79.183775, 37.311729],\n      [-79.183964, 37.311947],\n      [-79.18428, 37.312314],\n      [-79.18536, 37.313557],\n      [-79.18553, 37.313753],\n      [-79.18588, 37.314159],\n      [-79.186286, 37.314624],\n      [-79.186592, 37.314975],\n      [-79.186893, 37.31532],\n      [-79.187155, 37.315623],\n      [-79.187287, 37.315796],\n      [-79.187433, 37.315958],\n      [-79.187603, 37.316193],\n      [-79.187705, 37.316348],\n      [-79.187781, 37.316469],\n      [-79.187895, 37.316666],\n      [-79.188063, 37.316995],\n      [-79.188211, 37.31734],\n      [-79.188267, 37.317488],\n      [-79.188574, 37.31828],\n      [-79.18873, 37.318682],\n      [-79.188773, 37.318793],\n      [-79.188818, 37.318907],\n      [-79.188983, 37.319332],\n      [-79.189167, 37.319817],\n      [-79.18919, 37.319881],\n      [-79.189276, 37.320122],\n      [-79.189293, 37.320183],\n      [-79.189372, 37.320484],\n      [-79.189407, 37.320635],\n      [-79.189445, 37.320825],\n      [-79.189477, 37.321015],\n      [-79.189492, 37.321115],\n      [-79.189533, 37.321458],\n      [-79.189536, 37.321492],\n      [-79.189586, 37.322119],\n      [-79.189602, 37.322319],\n      [-79.189637, 37.32275],\n      [-79.189647, 37.322876],\n      [-79.189704, 37.323523],\n      [-79.189737, 37.323892],\n      [-79.189747, 37.323997],\n      [-79.189761, 37.324147],\n      [-79.189781, 37.324375],\n      [-79.189798, 37.324545],\n      [-79.189823, 37.324722],\n      [-79.189861, 37.324935],\n      [-79.189896, 37.325095],\n      [-79.189922, 37.3252],\n      [-79.190034, 37.325593],\n      [-79.190115, 37.325884],\n      [-79.190279, 37.326471],\n      [-79.190558, 37.327468],\n      [-79.190626, 37.327737],\n      [-79.190656, 37.327855],\n      [-79.190719, 37.328102],\n      [-79.190893, 37.328783],\n      [-79.19093, 37.328914],\n      [-79.19114, 37.329665],\n      [-79.191197, 37.329849],\n      [-79.191289, 37.330174],\n      [-79.191411, 37.330604],\n      [-79.191427, 37.330662],\n      [-79.191549, 37.331144],\n      [-79.191612, 37.331407],\n      [-79.191674, 37.33166],\n      [-79.191713, 37.331945],\n      [-79.191731, 37.332216],\n      [-79.191727, 37.3324],\n      [-79.191718, 37.332618],\n      [-79.191688, 37.333114],\n      [-79.191671, 37.333265],\n      [-79.191652, 37.333506],\n      [-79.191625, 37.33369],\n      [-79.191591, 37.333978],\n      [-79.191586, 37.334109],\n      [-79.191605, 37.334336],\n      [-79.19161, 37.334672],\n      [-79.191612, 37.334771],\n      [-79.191619, 37.335165],\n      [-79.191615, 37.335425],\n      [-79.191612, 37.335464],\n      [-79.191591, 37.335798],\n      [-79.191573, 37.33597],\n      [-79.19153, 37.336198],\n      [-79.191511, 37.3363],\n      [-79.191476, 37.336481],\n      [-79.191396, 37.336901],\n      [-79.191254, 37.33724],\n      [-79.191108, 37.337564],\n      [-79.190891, 37.337852],\n      [-79.190707, 37.338004],\n      [-79.190446, 37.338136],\n      [-79.190159, 37.338232],\n      [-79.189809, 37.338303],\n      [-79.189504, 37.338343],\n      [-79.189039, 37.338414],\n      [-79.188663, 37.33847],\n      [-79.188351, 37.338526],\n      [-79.18802, 37.338571],\n      [-79.18767, 37.338617],\n      [-79.187276, 37.338677],\n      [-79.18683, 37.338758],\n      [-79.186448, 37.338854],\n      [-79.186232, 37.338986],\n      [-79.186034, 37.339158],\n      [-79.185913, 37.339381],\n      [-79.185862, 37.339654],\n      [-79.185792, 37.339958],\n      [-79.185735, 37.340246],\n      [-79.185608, 37.340565],\n      [-79.185474, 37.340849],\n      [-79.185264, 37.341152],\n      [-79.185009, 37.341421],\n      [-79.184748, 37.341658],\n      [-79.184399, 37.341989],\n      [-79.184093, 37.342254],\n      [-79.183658, 37.342682],\n      [-79.18294, 37.343536],\n      [-79.182113, 37.344505],\n      [-79.181077, 37.345699],\n      [-79.180004, 37.346871],\n      [-79.178729, 37.348196],\n      [-79.177389, 37.349407],\n      [-79.177129, 37.349621],\n      [-79.176626, 37.350036],\n      [-79.173129, 37.353092],\n      [-79.169752, 37.356318],\n      [-79.169186, 37.356859],\n      [-79.166439, 37.359647],\n      [-79.165165, 37.360856],\n      [-79.164528, 37.361444],\n      [-79.163946, 37.361878],\n      [-79.162943, 37.362614],\n      [-79.161891, 37.363349],\n      [-79.159885, 37.364693],\n      [-79.158866, 37.365389],\n      [-79.157915, 37.36609],\n      [-79.156262, 37.367299],\n      [-79.153378, 37.36939],\n      [-79.1513, 37.370777],\n      [-79.148798, 37.372337],\n      [-79.146813, 37.373529],\n      [-79.146135, 37.37394],\n      [-79.145298, 37.374385],\n      [-79.144399, 37.374808],\n      [-79.143032, 37.375351],\n      [-79.142887, 37.375396],\n      [-79.141407, 37.375861],\n      [-79.13952, 37.376309],\n      [-79.137442, 37.376753],\n      [-79.136385, 37.376976],\n      [-79.135221, 37.37722],\n      [-79.134065, 37.377456],\n      [-79.132756, 37.377733],\n      [-79.131505, 37.377997],\n      [-79.130701, 37.378165],\n      [-79.129655, 37.378385],\n      [-79.128812, 37.378561],\n      [-79.127809, 37.378776],\n      [-79.127166, 37.378891],\n      [-79.124907, 37.379433],\n      [-79.122351, 37.380007],\n      [-79.119924, 37.380555],\n      [-79.118369, 37.380958],\n      [-79.116892, 37.381492],\n      [-79.11429, 37.382508],\n      [-79.111589, 37.383564],\n      [-79.110432, 37.384015],\n      [-79.108723, 37.384663],\n      [-79.107004, 37.385341],\n      [-79.10533, 37.38597],\n      [-79.10529, 37.385969],\n      [-79.104874, 37.386095],\n      [-79.104406, 37.386191],\n      [-79.103958, 37.38624],\n      [-79.103328, 37.386271],\n      [-79.101681, 37.386155],\n      [-79.101144, 37.386117],\n      [-79.100418, 37.386038],\n      [-79.097991, 37.385843],\n      [-79.09636, 37.385744],\n      [-79.095982, 37.385658],\n      [-79.095845, 37.385614],\n      [-79.09571, 37.385555],\n      [-79.095567, 37.38548],\n      [-79.095427, 37.38539],\n      [-79.095308, 37.385296],\n      [-79.09517, 37.385161],\n      [-79.09509, 37.385054],\n      [-79.094998, 37.384905],\n      [-79.094916, 37.384737],\n      [-79.094844, 37.384528],\n      [-79.094656, 37.383845],\n      [-79.094531, 37.38345],\n      [-79.094325, 37.383054],\n      [-79.094038, 37.38276],\n      [-79.093621, 37.382467],\n      [-79.093187, 37.382294],\n      [-79.092689, 37.382201],\n      [-79.092284, 37.382201],\n      [-79.091903, 37.382257],\n      [-79.091551, 37.382364],\n      [-79.091187, 37.382541],\n      [-79.090959, 37.382723],\n      [-79.090789, 37.382882],\n      [-79.090589, 37.383115],\n      [-79.090443, 37.383376],\n      [-79.090284, 37.383744],\n      [-79.090225, 37.384],\n      [-79.090179, 37.384541],\n      [-79.090062, 37.385779],\n      [-79.089925, 37.386644],\n      [-79.089849, 37.387226],\n      [-79.089779, 37.387541],\n      [-79.089689, 37.387836],\n      [-79.0895, 37.38838],\n      [-79.089436, 37.388633],\n      [-79.089405, 37.388841],\n      [-79.089289, 37.389685],\n      [-79.089161, 37.39093],\n      [-79.089008, 37.392008],\n      [-79.08881, 37.394069],\n      [-79.088768, 37.394579],\n      [-79.088645, 37.395885],\n      [-79.088477, 37.397207],\n      [-79.087956, 37.401181],\n      [-79.087825, 37.401823],\n      [-79.087665, 37.402308],\n      [-79.087554, 37.402629],\n      [-79.08736, 37.403142],\n      [-79.087142, 37.403562],\n      [-79.086923, 37.403937],\n      [-79.086762, 37.404195],\n      [-79.086439, 37.404708],\n      [-79.086251, 37.405002],\n      [-79.085982, 37.405393],\n      [-79.085647, 37.405896],\n      [-79.085037, 37.406824],\n      [-79.084691, 37.407346],\n      [-79.084239, 37.407998],\n      [-79.084081, 37.408208],\n      [-79.083969, 37.408376],\n      [-79.083852, 37.408534],\n      [-79.083752, 37.408705],\n      [-79.083641, 37.408893],\n      [-79.08253, 37.41059],\n      [-79.082107, 37.41155],\n      [-79.081937, 37.412163],\n      [-79.081833, 37.412538],\n      [-79.081757, 37.413176],\n      [-79.08171, 37.413903],\n      [-79.081751, 37.414774],\n      [-79.081781, 37.415758],\n      [-79.081777, 37.417393],\n      [-79.081646, 37.41901],\n      [-79.081485, 37.420256],\n      [-79.081292, 37.421219],\n      [-79.081057, 37.422257],\n      [-79.080513, 37.424117],\n      [-79.07951, 37.427155],\n      [-79.078061, 37.431195],\n      [-79.077269, 37.433524],\n      [-79.076993, 37.434391],\n      [-79.076647, 37.435495],\n      [-79.076395, 37.436608],\n      [-79.076304, 37.437254],\n      [-79.076229, 37.438019],\n      [-79.076213, 37.439312],\n      [-79.076213, 37.439413],\n      [-79.076155, 37.442774],\n      [-79.07614, 37.443179],\n      [-79.076116, 37.443841],\n      [-79.076046, 37.446058],\n      [-79.075976, 37.449173],\n      [-79.076002, 37.451689],\n      [-79.076065, 37.4523],\n      [-79.076262, 37.453],\n      [-79.076579, 37.453683],\n      [-79.076982, 37.454312],\n      [-79.077536, 37.45501],\n      [-79.079739, 37.457229],\n      [-79.080689, 37.458217],\n      [-79.081531, 37.459252],\n      [-79.082085, 37.460038],\n      [-79.082441, 37.460738],\n      [-79.082708, 37.461304],\n      [-79.082968, 37.461981],\n      [-79.083137, 37.462694],\n      [-79.083265, 37.463513],\n      [-79.083293, 37.464338],\n      [-79.083287, 37.464745],\n      [-79.083277, 37.465166],\n      [-79.083236, 37.465743],\n      [-79.083136, 37.466259],\n      [-79.082678, 37.468029],\n      [-79.082438, 37.469156],\n      [-79.08215, 37.470371],\n      [-79.081963, 37.471033],\n      [-79.081827, 37.471415],\n      [-79.081408, 37.472342],\n      [-79.081005, 37.47309],\n      [-79.080296, 37.474045],\n      [-79.079641, 37.474751],\n      [-79.078249, 37.476094],\n      [-79.077451, 37.477058],\n      [-79.076776, 37.477863],\n      [-79.076213, 37.478711],\n      [-79.075638, 37.479763],\n      [-79.075274, 37.480624],\n      [-79.074869, 37.481821],\n      [-79.074675, 37.482594],\n      [-79.074634, 37.482892],\n      [-79.074593, 37.483204],\n      [-79.07457, 37.483627],\n      [-79.074448, 37.484732],\n      [-79.074331, 37.485753],\n      [-79.074167, 37.486518],\n      [-79.073888, 37.487326],\n      [-79.073467, 37.488074],\n      [-79.07305, 37.488846],\n      [-79.072616, 37.489619],\n      [-79.072018, 37.490699],\n      [-79.07163, 37.49136],\n      [-79.070791, 37.492896],\n      [-79.070146, 37.494186],\n      [-79.06953, 37.495438],\n      [-79.068703, 37.497026],\n      [-79.067817, 37.498799],\n      [-79.067177, 37.500098],\n      [-79.066497, 37.501471],\n      [-79.066168, 37.502341],\n      [-79.065974, 37.503063],\n      [-79.065895, 37.503746],\n      [-79.065857, 37.504329],\n      [-79.065851, 37.505804],\n      [-79.065851, 37.506847],\n      [-79.065828, 37.508187],\n      [-79.065831, 37.509824],\n      [-79.0658, 37.510657],\n      [-79.065769, 37.511273],\n      [-79.065628, 37.51191],\n      [-79.065455, 37.512506],\n      [-79.065165, 37.513111],\n      [-79.064807, 37.513823],\n      [-79.064426, 37.514512],\n      [-79.063986, 37.515424],\n      [-79.063804, 37.515903],\n      [-79.063545, 37.516788],\n      [-79.063328, 37.51796],\n      [-79.063264, 37.519296],\n      [-79.063311, 37.520208],\n      [-79.063487, 37.521209],\n      [-79.063645, 37.522214],\n      [-79.063845, 37.523275],\n      [-79.06425, 37.525364],\n      [-79.064871, 37.528602],\n      [-79.065376, 37.531264],\n      [-79.066057, 37.534819],\n      [-79.066725, 37.538252],\n      [-79.0674, 37.541904],\n      [-79.06794, 37.544546],\n      [-79.068021, 37.545221],\n      [-79.068093, 37.545891],\n      [-79.068075, 37.546616],\n      [-79.067977, 37.547323],\n      [-79.067805, 37.547989],\n      [-79.06729, 37.549617],\n      [-79.066508, 37.552189],\n      [-79.066203, 37.55312],\n      [-79.065916, 37.554199],\n      [-79.06571, 37.554864],\n      [-79.065358, 37.555901],\n      [-79.06462, 37.558162],\n      [-79.064236, 37.559374],\n      [-79.064086, 37.559848],\n      [-79.063835, 37.560896],\n      [-79.063609, 37.561383],\n      [-79.063256, 37.561986],\n      [-79.062896, 37.562503],\n      [-79.062134, 37.563345],\n      [-79.061625, 37.563753],\n      [-79.06094, 37.564213],\n      [-79.058641, 37.565583],\n      [-79.05758, 37.566208],\n      [-79.056639, 37.566768],\n      [-79.055935, 37.567192],\n      [-79.055742, 37.567302],\n      [-79.055553, 37.567416],\n      [-79.055246, 37.567615],\n      [-79.054927, 37.567838],\n      [-79.054748, 37.567977],\n      [-79.054525, 37.568169],\n      [-79.05429, 37.568391],\n      [-79.054239, 37.568442],\n      [-79.054034, 37.568657],\n      [-79.053873, 37.56885],\n      [-79.053657, 37.569143],\n      [-79.053524, 37.569347],\n      [-79.053368, 37.569618],\n      [-79.053228, 37.569894],\n      [-79.053172, 37.570026],\n      [-79.053043, 37.570358],\n      [-79.05286, 37.57095],\n      [-79.052677, 37.571527],\n      [-79.052485, 37.572133],\n      [-79.052132, 37.573261],\n      [-79.051632, 37.57486],\n      [-79.051348, 37.57574],\n      [-79.051123, 37.576286],\n      [-79.051087, 37.576361],\n      [-79.050788, 37.576916],\n      [-79.050662, 37.577116],\n      [-79.050472, 37.577395],\n      [-79.050278, 37.577652],\n      [-79.050057, 37.577924],\n      [-79.049759, 37.578262],\n      [-79.049412, 37.578608],\n      [-79.049047, 37.578931],\n      [-79.047001, 37.580602],\n      [-79.046515, 37.580994],\n      [-79.046166, 37.58126],\n      [-79.045909, 37.581455],\n      [-79.04561, 37.58167],\n      [-79.045264, 37.581887],\n      [-79.044961, 37.582077],\n      [-79.044149, 37.582573],\n      [-79.04353, 37.582927],\n      [-79.04291, 37.58327],\n      [-79.042129, 37.58371],\n      [-79.041873, 37.583864],\n      [-79.041806, 37.58391],\n      [-79.041621, 37.584017],\n      [-79.041414, 37.584155],\n      [-79.041178, 37.58431],\n      [-79.040635, 37.584689],\n      [-79.039894, 37.585255],\n      [-79.039608, 37.585491],\n      [-79.03912, 37.585904],\n      [-79.038845, 37.586155],\n      [-79.038474, 37.586513],\n      [-79.03781, 37.587198],\n      [-79.037358, 37.587719],\n      [-79.037086, 37.588056],\n      [-79.036877, 37.588331],\n      [-79.036498, 37.588836],\n      [-79.036258, 37.589205],\n      [-79.035926, 37.589739],\n      [-79.034645, 37.591992],\n      [-79.034482, 37.592286],\n      [-79.034097, 37.592957],\n      [-79.033913, 37.593255],\n      [-79.033669, 37.593669],\n      [-79.033006, 37.594819],\n      [-79.032654, 37.595452],\n      [-79.032044, 37.596522],\n      [-79.031678, 37.597159],\n      [-79.031353, 37.597735],\n      [-79.03004, 37.600074],\n      [-79.029644, 37.600763],\n      [-79.028963, 37.601951],\n      [-79.028685, 37.602397],\n      [-79.02851, 37.602662],\n      [-79.028221, 37.603043],\n      [-79.027978, 37.603341],\n      [-79.027692, 37.60368],\n      [-79.027548, 37.60383],\n      [-79.027306, 37.604072],\n      [-79.027105, 37.604269],\n      [-79.02697, 37.604392],\n      [-79.026652, 37.60468],\n      [-79.026083, 37.605207],\n      [-79.026036, 37.60525],\n      [-79.025989, 37.605294],\n      [-79.025872, 37.605402],\n      [-79.02555, 37.605685],\n      [-79.025303, 37.605893],\n      [-79.025239, 37.605951],\n      [-79.025075, 37.606102],\n      [-79.024795, 37.606358],\n      [-79.024408, 37.606702],\n      [-79.024072, 37.607013],\n      [-79.024053, 37.607031],\n      [-79.023787, 37.607264],\n      [-79.023498, 37.607516],\n      [-79.023027, 37.607911],\n      [-79.022811, 37.60807],\n      [-79.022583, 37.608218],\n      [-79.022393, 37.608329],\n      [-79.022103, 37.608478],\n      [-79.021864, 37.608585],\n      [-79.021424, 37.608752],\n      [-79.020855, 37.608965],\n      [-79.020271, 37.609195],\n      [-79.020171, 37.609236],\n      [-79.019921, 37.609348],\n      [-79.019569, 37.609526],\n      [-79.019341, 37.609661],\n      [-79.019134, 37.609801],\n      [-79.018938, 37.609951],\n      [-79.018736, 37.61013],\n      [-79.018557, 37.610318],\n      [-79.018408, 37.6105],\n      [-79.018273, 37.610689],\n      [-79.018177, 37.610845],\n      [-79.018077, 37.611005],\n      [-79.017942, 37.61127],\n      [-79.01775, 37.611733],\n      [-79.017583, 37.612195],\n      [-79.017453, 37.612536],\n      [-79.01736, 37.612779],\n      [-79.017077, 37.613518],\n      [-79.016316, 37.615651],\n      [-79.016211, 37.615921],\n      [-79.015957, 37.616661],\n      [-79.015442, 37.618041],\n      [-79.015171, 37.618767],\n      [-79.015044, 37.619085],\n      [-79.014896, 37.619401],\n      [-79.014725, 37.619699],\n      [-79.014609, 37.619891],\n      [-79.014507, 37.620046],\n      [-79.014326, 37.620291],\n      [-79.014076, 37.620611],\n      [-79.013882, 37.620808],\n      [-79.013583, 37.621079],\n      [-79.012998, 37.621504],\n      [-79.01238, 37.621893],\n      [-79.010646, 37.622959],\n      [-79.01003, 37.623323],\n      [-79.009112, 37.623886],\n      [-79.007841, 37.62468],\n      [-79.007669, 37.624786],\n      [-79.00613, 37.625753],\n      [-79.00574, 37.625992],\n      [-79.004933, 37.626484],\n      [-79.004251, 37.626912],\n      [-79.004139, 37.626981],\n      [-79.003154, 37.627592],\n      [-79.001641, 37.628516],\n      [-79.001111, 37.628835],\n      [-79.00072, 37.62907],\n      [-79.000623, 37.62914],\n      [-79.000217, 37.629394],\n      [-78.998912, 37.630202],\n      [-78.998196, 37.630645],\n      [-78.997598, 37.631025],\n      [-78.997526, 37.631071],\n      [-78.997241, 37.631274],\n      [-78.996875, 37.631534],\n      [-78.996217, 37.63205],\n      [-78.995656, 37.632525],\n      [-78.995017, 37.633129],\n      [-78.994464, 37.633668],\n      [-78.993794, 37.634338],\n      [-78.992582, 37.635539],\n      [-78.99241, 37.635715],\n      [-78.992112, 37.636],\n      [-78.991971, 37.636127],\n      [-78.991598, 37.636454],\n      [-78.991319, 37.636676],\n      [-78.991111, 37.636827],\n      [-78.990724, 37.637089],\n      [-78.990344, 37.637324],\n      [-78.989967, 37.637537],\n      [-78.989578, 37.637737],\n      [-78.988855, 37.638052],\n      [-78.98807, 37.638382],\n      [-78.986736, 37.63892],\n      [-78.986454, 37.639034],\n      [-78.985803, 37.639316],\n      [-78.984897, 37.639687],\n      [-78.98388, 37.640096],\n      [-78.983117, 37.640414],\n      [-78.982726, 37.640573],\n      [-78.981774, 37.640959],\n      [-78.979687, 37.64182],\n      [-78.978231, 37.642417],\n      [-78.977005, 37.64291],\n      [-78.97646, 37.643116],\n      [-78.975777, 37.643333],\n      [-78.975711, 37.643354],\n      [-78.97542, 37.643425],\n      [-78.974834, 37.643551],\n      [-78.974604, 37.64359],\n      [-78.974067, 37.643681],\n      [-78.973393, 37.643752],\n      [-78.972559, 37.643813],\n      [-78.972242, 37.643839],\n      [-78.970006, 37.64399],\n      [-78.96903, 37.64406],\n      [-78.968589, 37.644095],\n      [-78.968224, 37.644136],\n      [-78.967889, 37.644182],\n      [-78.967664, 37.644226],\n      [-78.967387, 37.644293],\n      [-78.967224, 37.644341],\n      [-78.966957, 37.64443],\n      [-78.966688, 37.644536],\n      [-78.966474, 37.644631],\n      [-78.966164, 37.644789],\n      [-78.965983, 37.644902],\n      [-78.965692, 37.645098],\n      [-78.965428, 37.645294],\n      [-78.965238, 37.645456],\n      [-78.965063, 37.645628],\n      [-78.964898, 37.645816],\n      [-78.964762, 37.645992],\n      [-78.964605, 37.646219],\n      [-78.964465, 37.646453],\n      [-78.964354, 37.646672],\n      [-78.96426, 37.646896],\n      [-78.964184, 37.647124],\n      [-78.964105, 37.647472],\n      [-78.964045, 37.647822],\n      [-78.963795, 37.650137],\n      [-78.963771, 37.650446],\n      [-78.963726, 37.650831],\n      [-78.963699, 37.651104],\n      [-78.963637, 37.651545],\n      [-78.963559, 37.651968],\n      [-78.963475, 37.652244],\n      [-78.963403, 37.652439],\n      [-78.963343, 37.65259],\n      [-78.963259, 37.652771],\n      [-78.963211, 37.652855],\n      [-78.963159, 37.652948],\n      [-78.963044, 37.653119],\n      [-78.962876, 37.65334],\n      [-78.962692, 37.653554],\n      [-78.961989, 37.654258],\n      [-78.961507, 37.654728],\n      [-78.961039, 37.655181],\n      [-78.960337, 37.655875],\n      [-78.96023, 37.655972],\n      [-78.960126, 37.656071],\n      [-78.959777, 37.656385],\n      [-78.959596, 37.656559],\n      [-78.959428, 37.656733],\n      [-78.95894, 37.657212],\n      [-78.958347, 37.65781],\n      [-78.957955, 37.658265],\n      [-78.957902, 37.65834],\n      [-78.957703, 37.658582],\n      [-78.956957, 37.659613],\n      [-78.956, 37.660952],\n      [-78.95555, 37.661601],\n      [-78.95521, 37.662149],\n      [-78.955078, 37.662367],\n      [-78.954742, 37.662988],\n      [-78.954584, 37.663297],\n      [-78.954305, 37.663917],\n      [-78.954148, 37.6643],\n      [-78.953981, 37.664751],\n      [-78.953842, 37.665162],\n      [-78.953791, 37.665348],\n      [-78.953693, 37.665702],\n      [-78.953658, 37.665836],\n      [-78.953519, 37.666441],\n      [-78.953449, 37.666806],\n      [-78.953407, 37.667104],\n      [-78.953324, 37.667763],\n      [-78.953292, 37.668183],\n      [-78.953221, 37.669156],\n      [-78.953153, 37.670098],\n      [-78.953142, 37.670264],\n      [-78.953141, 37.6704],\n      [-78.953072, 37.671177],\n      [-78.95304, 37.671615],\n      [-78.952995, 37.672174],\n      [-78.952947, 37.672942],\n      [-78.95292, 37.673225],\n      [-78.952878, 37.673819],\n      [-78.952829, 37.674339],\n      [-78.952797, 37.674686],\n      [-78.952784, 37.674804],\n      [-78.952747, 37.675024],\n      [-78.952692, 37.675301],\n      [-78.952624, 37.675578],\n      [-78.952561, 37.675784],\n      [-78.952486, 37.675985],\n      [-78.952442, 37.676122],\n      [-78.952386, 37.676257],\n      [-78.95232, 37.676433],\n      [-78.952115, 37.676852],\n      [-78.952045, 37.676981],\n      [-78.951895, 37.677259],\n      [-78.951765, 37.677478],\n      [-78.951015, 37.678688],\n      [-78.950642, 37.679294],\n      [-78.950106, 37.680167],\n      [-78.949932, 37.680439],\n      [-78.949555, 37.681057],\n      [-78.948514, 37.682749],\n      [-78.948346, 37.683014],\n      [-78.94819, 37.68327],\n      [-78.947933, 37.683687],\n      [-78.947735, 37.683997],\n      [-78.946949, 37.685284],\n      [-78.946763, 37.685577],\n      [-78.946171, 37.686544],\n      [-78.946077, 37.686718],\n      [-78.945972, 37.686928],\n      [-78.945848, 37.687201],\n      [-78.945794, 37.687349],\n      [-78.945689, 37.687661],\n      [-78.945632, 37.687901],\n      [-78.945568, 37.688266],\n      [-78.945541, 37.688542],\n      [-78.945537, 37.688659],\n      [-78.945545, 37.689126],\n      [-78.945579, 37.689434],\n      [-78.945664, 37.689907],\n      [-78.945683, 37.68999],\n      [-78.945776, 37.690456],\n      [-78.945835, 37.69071],\n      [-78.945961, 37.691323],\n      [-78.946182, 37.69241],\n      [-78.946237, 37.692788],\n      [-78.946274, 37.693085],\n      [-78.946296, 37.693491],\n      [-78.946303, 37.694022],\n      [-78.946301, 37.694057],\n      [-78.946287, 37.694387],\n      [-78.946261, 37.694709],\n      [-78.946249, 37.694805],\n      [-78.946182, 37.695293],\n      [-78.946055, 37.695876],\n      [-78.945864, 37.696567],\n      [-78.945405, 37.698162],\n      [-78.945298, 37.698548],\n      [-78.944826, 37.700186],\n      [-78.944719, 37.700501],\n      [-78.94458, 37.700835],\n      [-78.944457, 37.701074],\n      [-78.944324, 37.701307],\n      [-78.944135, 37.701595],\n      [-78.944026, 37.701738],\n      [-78.943778, 37.70202],\n      [-78.943504, 37.702305],\n      [-78.943214, 37.702564],\n      [-78.94302, 37.702719],\n      [-78.942935, 37.702779],\n      [-78.942809, 37.702868],\n      [-78.942485, 37.703077],\n      [-78.942218, 37.703232],\n      [-78.9405, 37.704132],\n      [-78.940455, 37.704155],\n      [-78.940006, 37.704381],\n      [-78.938227, 37.705302],\n      [-78.93698, 37.705948],\n      [-78.93647, 37.706225],\n      [-78.93488, 37.707122],\n      [-78.934646, 37.707256],\n      [-78.93388, 37.707679],\n      [-78.933448, 37.707924],\n      [-78.932774, 37.708305],\n      [-78.931107, 37.709235],\n      [-78.929365, 37.710215],\n      [-78.928987, 37.710423],\n      [-78.928188, 37.710873],\n      [-78.927848, 37.711058],\n      [-78.927739, 37.711117],\n      [-78.927286, 37.71134],\n      [-78.927035, 37.711449],\n      [-78.926705, 37.711572],\n      [-78.926357, 37.711684],\n      [-78.926015, 37.711773],\n      [-78.925764, 37.711831],\n      [-78.925742, 37.711836],\n      [-78.925395, 37.711899],\n      [-78.925098, 37.711943],\n      [-78.92463, 37.712006],\n      [-78.924358, 37.71204],\n      [-78.9241, 37.712072],\n      [-78.923317, 37.712168],\n      [-78.922673, 37.712257],\n      [-78.921644, 37.712386],\n      [-78.920771, 37.712503],\n      [-78.91879, 37.712755],\n      [-78.917763, 37.712894],\n      [-78.916758, 37.713029],\n      [-78.916316, 37.713107],\n      [-78.915891, 37.713204],\n      [-78.915614, 37.71328],\n      [-78.915324, 37.713372],\n      [-78.915274, 37.713388],\n      [-78.914912, 37.71352],\n      [-78.91455, 37.71367],\n      [-78.914179, 37.713842],\n      [-78.913675, 37.714085],\n      [-78.912967, 37.714415],\n      [-78.910226, 37.715714],\n      [-78.90939, 37.716116],\n      [-78.908844, 37.716378],\n      [-78.908565, 37.716525],\n      [-78.908344, 37.716654],\n      [-78.908223, 37.716733],\n      [-78.907898, 37.716972],\n      [-78.907709, 37.71712],\n      [-78.907284, 37.717479],\n      [-78.905705, 37.718784],\n      [-78.905314, 37.719084],\n      [-78.90491, 37.719372],\n      [-78.904525, 37.719604],\n      [-78.904033, 37.719882],\n      [-78.903337, 37.720265],\n      [-78.902528, 37.720722],\n      [-78.902455, 37.720766],\n      [-78.902055, 37.720998],\n      [-78.901704, 37.721237],\n      [-78.901372, 37.721492],\n      [-78.901207, 37.721632],\n      [-78.901102, 37.721732],\n      [-78.90093, 37.721897],\n      [-78.900791, 37.722043],\n      [-78.900736, 37.722103],\n      [-78.900601, 37.722261],\n      [-78.900394, 37.722523],\n      [-78.900222, 37.722764],\n      [-78.900079, 37.722992],\n      [-78.900004, 37.723131],\n      [-78.899716, 37.723665],\n      [-78.899467, 37.724145],\n      [-78.899406, 37.724274],\n      [-78.89922, 37.72461],\n      [-78.899008, 37.725016],\n      [-78.898838, 37.725322],\n      [-78.898749, 37.725462],\n      [-78.898619, 37.725684],\n      [-78.898501, 37.725886],\n      [-78.898424, 37.726009],\n      [-78.898396, 37.726054],\n      [-78.89823, 37.726333],\n      [-78.897785, 37.72702],\n      [-78.897326, 37.727687],\n      [-78.897029, 37.728104],\n      [-78.896755, 37.72847],\n      [-78.896087, 37.729327],\n      [-78.895376, 37.730223],\n      [-78.89492, 37.73078],\n      [-78.894224, 37.731648],\n      [-78.893951, 37.731982],\n      [-78.893208, 37.732922],\n      [-78.893101, 37.733073],\n      [-78.892951, 37.733284],\n      [-78.892829, 37.733486],\n      [-78.892725, 37.733694],\n      [-78.892653, 37.733852],\n      [-78.892395, 37.734583],\n      [-78.892264, 37.735006],\n      [-78.891874, 37.73617],\n      [-78.891809, 37.736394],\n      [-78.891615, 37.736972],\n      [-78.891508, 37.737307],\n      [-78.891316, 37.737819],\n      [-78.891154, 37.738191],\n      [-78.891075, 37.738356],\n      [-78.891011, 37.738485],\n      [-78.890701, 37.739024],\n      [-78.890539, 37.739262],\n      [-78.890353, 37.739521],\n      [-78.890119, 37.739847],\n      [-78.889796, 37.740253],\n      [-78.889491, 37.740645],\n      [-78.889217, 37.740996],\n      [-78.888944, 37.74133],\n      [-78.888623, 37.741743],\n      [-78.888513, 37.741886],\n      [-78.888267, 37.742188],\n      [-78.887876, 37.742653],\n      [-78.887675, 37.74287],\n      [-78.887504, 37.743037],\n      [-78.887277, 37.743237],\n      [-78.887216, 37.743287],\n      [-78.887135, 37.743353],\n      [-78.886534, 37.743824],\n      [-78.886162, 37.744125],\n      [-78.8861, 37.744182],\n      [-78.885899, 37.744355],\n      [-78.885622, 37.744575],\n      [-78.885356, 37.74478],\n      [-78.884605, 37.745388],\n      [-78.884042, 37.74585],\n      [-78.882882, 37.746752],\n      [-78.882051, 37.747417],\n      [-78.880834, 37.748391],\n      [-78.88003, 37.749038],\n      [-78.879751, 37.749271],\n      [-78.879568, 37.74942],\n      [-78.879376, 37.749569],\n      [-78.878419, 37.750353],\n      [-78.877854, 37.750804],\n      [-78.877584, 37.751037],\n      [-78.877286, 37.751315],\n      [-78.877004, 37.751598],\n      [-78.876844, 37.751774],\n      [-78.876626, 37.752042],\n      [-78.876378, 37.752385],\n      [-78.876192, 37.752665],\n      [-78.876061, 37.752882],\n      [-78.875814, 37.753345],\n      [-78.875209, 37.754691],\n      [-78.874619, 37.756931],\n      [-78.874501, 37.757307],\n      [-78.874339, 37.757855],\n      [-78.873994, 37.758979],\n      [-78.873789, 37.759637],\n      [-78.873696, 37.75991],\n      [-78.873541, 37.760318],\n      [-78.873332, 37.760834],\n      [-78.873094, 37.761337],\n      [-78.872847, 37.761808],\n      [-78.872451, 37.762468],\n      [-78.872257, 37.76277],\n      [-78.871993, 37.763172],\n      [-78.871574, 37.763799],\n      [-78.871327, 37.764167],\n      [-78.871012, 37.764642],\n      [-78.870469, 37.765468],\n      [-78.870316, 37.765702],\n      [-78.870042, 37.766126],\n      [-78.869873, 37.766412],\n      [-78.869781, 37.766589],\n      [-78.869687, 37.766814],\n      [-78.869585, 37.76708],\n      [-78.869516, 37.767314],\n      [-78.869424, 37.767698],\n      [-78.869391, 37.767942],\n      [-78.86938, 37.768238],\n      [-78.869389, 37.768459],\n      [-78.869415, 37.768673],\n      [-78.869485, 37.768991],\n      [-78.869567, 37.769255],\n      [-78.86966, 37.769515],\n      [-78.869743, 37.769714],\n      [-78.869793, 37.769822],\n      [-78.870127, 37.770634],\n      [-78.870244, 37.770938],\n      [-78.870299, 37.771157],\n      [-78.870337, 37.771378],\n      [-78.870379, 37.771605],\n      [-78.870392, 37.771879],\n      [-78.870378, 37.772127],\n      [-78.870337, 37.772397],\n      [-78.870272, 37.77267],\n      [-78.870248, 37.772764],\n      [-78.87004, 37.773562],\n      [-78.869728, 37.774718],\n      [-78.869574, 37.775264],\n      [-78.869411, 37.775864],\n      [-78.869234, 37.776522],\n      [-78.869061, 37.777151],\n      [-78.868889, 37.777735],\n      [-78.868643, 37.778648],\n      [-78.868399, 37.779571],\n      [-78.868224, 37.780198],\n      [-78.868067, 37.780782],\n      [-78.867497, 37.782893],\n      [-78.867434, 37.783141],\n      [-78.867364, 37.783414],\n      [-78.867185, 37.784047],\n      [-78.867156, 37.784152],\n      [-78.867042, 37.784562],\n      [-78.866921, 37.785054],\n      [-78.866779, 37.785508],\n      [-78.866518, 37.786333],\n      [-78.866458, 37.786501],\n      [-78.866348, 37.786832],\n      [-78.866066, 37.787709],\n      [-78.865703, 37.788816],\n      [-78.865457, 37.789659],\n      [-78.865164, 37.790592],\n      [-78.864927, 37.791345],\n      [-78.864619, 37.792175],\n      [-78.864507, 37.792484],\n      [-78.864363, 37.792792],\n      [-78.864228, 37.793041],\n      [-78.864067, 37.7933],\n      [-78.863882, 37.793548],\n      [-78.863684, 37.793797],\n      [-78.863319, 37.794211],\n      [-78.863117, 37.794344],\n      [-78.86295, 37.794541],\n      [-78.862701, 37.794857],\n      [-78.86248, 37.795184],\n      [-78.862275, 37.795518],\n      [-78.862199, 37.795651],\n      [-78.862007, 37.796159],\n      [-78.861989, 37.79622],\n      [-78.861909, 37.796548],\n      [-78.861883, 37.796687],\n      [-78.861846, 37.796942],\n      [-78.861828, 37.797235],\n      [-78.861827, 37.797529],\n      [-78.861837, 37.797754],\n      [-78.861844, 37.797901],\n      [-78.861878, 37.798631],\n      [-78.861919, 37.799738],\n      [-78.861971, 37.800826],\n      [-78.862007, 37.801869],\n      [-78.862081, 37.803303],\n      [-78.862104, 37.80423],\n      [-78.86209, 37.804437],\n      [-78.862063, 37.804642],\n      [-78.862038, 37.804754],\n      [-78.862023, 37.804816],\n      [-78.861947, 37.805046],\n      [-78.861861, 37.805246],\n      [-78.861771, 37.805437],\n      [-78.86165, 37.805634],\n      [-78.861512, 37.805817],\n      [-78.861343, 37.806004],\n      [-78.860353, 37.806994],\n      [-78.859848, 37.807481],\n      [-78.858512, 37.808821],\n      [-78.858367, 37.808958],\n      [-78.858079, 37.809211],\n      [-78.857729, 37.809505],\n      [-78.857293, 37.80986],\n      [-78.856987, 37.81009],\n      [-78.856658, 37.810338],\n      [-78.855693, 37.81105],\n      [-78.85561, 37.811115],\n      [-78.855262, 37.811371],\n      [-78.854965, 37.811605],\n      [-78.853694, 37.812587],\n      [-78.853389, 37.812818],\n      [-78.852362, 37.813637],\n      [-78.851981, 37.813912],\n      [-78.851517, 37.814266],\n      [-78.851057, 37.81462],\n      [-78.85085, 37.814768],\n      [-78.850729, 37.814859],\n      [-78.850652, 37.81492],\n      [-78.850085, 37.815369],\n      [-78.848637, 37.81648],\n      [-78.846503, 37.818117],\n      [-78.846263, 37.818303],\n      [-78.845641, 37.818784],\n      [-78.845198, 37.81912],\n      [-78.844287, 37.819835],\n      [-78.843809, 37.820229],\n      [-78.841255, 37.822413],\n      [-78.840635, 37.822925],\n      [-78.840114, 37.823377],\n      [-78.839772, 37.823685],\n      [-78.839408, 37.824047],\n      [-78.839049, 37.824425],\n      [-78.838766, 37.824737],\n      [-78.838386, 37.825182],\n      [-78.838147, 37.825481],\n      [-78.837849, 37.82588],\n      [-78.837407, 37.826506],\n      [-78.837204, 37.826823],\n      [-78.837053, 37.827081],\n      [-78.836731, 37.827595],\n      [-78.836452, 37.828104],\n      [-78.836275, 37.828399],\n      [-78.836111, 37.828667],\n      [-78.835849, 37.82912],\n      [-78.835504, 37.829691],\n      [-78.835352, 37.829945],\n      [-78.83498, 37.830568],\n      [-78.834935, 37.830642],\n      [-78.834826, 37.830821],\n      [-78.834646, 37.831137],\n      [-78.834377, 37.831577],\n      [-78.833853, 37.832462],\n      [-78.833724, 37.832692],\n      [-78.833217, 37.833546],\n      [-78.831919, 37.835713],\n      [-78.831568, 37.836263],\n      [-78.831293, 37.836637],\n      [-78.831013, 37.836981],\n      [-78.83077, 37.837252],\n      [-78.829687, 37.838434],\n      [-78.829526, 37.8386],\n      [-78.829353, 37.838766],\n      [-78.828845, 37.839208],\n      [-78.828553, 37.839442],\n      [-78.828248, 37.839665],\n      [-78.827736, 37.840071],\n      [-78.82744, 37.840316],\n      [-78.827359, 37.840393],\n      [-78.827219, 37.840526],\n      [-78.827033, 37.840723],\n      [-78.82681, 37.840985],\n      [-78.826636, 37.841213],\n      [-78.826324, 37.841668],\n      [-78.825848, 37.842321],\n      [-78.825635, 37.842569],\n      [-78.825481, 37.842727],\n      [-78.825276, 37.842917],\n      [-78.825211, 37.842971],\n      [-78.825103, 37.843062],\n      [-78.824902, 37.843225],\n      [-78.824735, 37.84334],\n      [-78.824467, 37.843502],\n      [-78.824206, 37.843652],\n      [-78.82312, 37.844198],\n      [-78.822611, 37.844456],\n      [-78.821878, 37.84482],\n      [-78.820981, 37.845244],\n      [-78.82067, 37.845389],\n      [-78.820264, 37.845536],\n      [-78.820038, 37.845598],\n      [-78.819873, 37.845635],\n      [-78.81967, 37.845683],\n      [-78.819501, 37.845707],\n      [-78.819221, 37.845735],\n      [-78.818871, 37.845752],\n      [-78.818684, 37.845746],\n      [-78.818377, 37.845729],\n      [-78.818065, 37.845689],\n      [-78.817748, 37.845635],\n      [-78.817461, 37.845563],\n      [-78.817089, 37.845456],\n      [-78.81664, 37.845308],\n      [-78.816094, 37.845137],\n      [-78.815801, 37.845042],\n      [-78.815106, 37.844835],\n      [-78.814203, 37.844545],\n      [-78.813661, 37.844372],\n      [-78.813194, 37.844227],\n      [-78.812793, 37.844119],\n      [-78.812466, 37.844059],\n      [-78.812161, 37.844015],\n      [-78.811899, 37.843994],\n      [-78.811692, 37.843985],\n      [-78.81145, 37.844002],\n      [-78.811288, 37.844022],\n      [-78.810966, 37.84409],\n      [-78.810704, 37.844162],\n      [-78.810498, 37.844229],\n      [-78.810246, 37.844336],\n      [-78.80993, 37.84449],\n      [-78.809727, 37.844605],\n      [-78.809573, 37.844705],\n      [-78.809276, 37.84492],\n      [-78.809029, 37.845076],\n      [-78.808807, 37.845199],\n      [-78.808527, 37.845332],\n      [-78.808311, 37.845419],\n      [-78.808089, 37.845498],\n      [-78.807811, 37.845579],\n      [-78.807589, 37.845643],\n      [-78.807297, 37.845708],\n      [-78.807, 37.845759],\n      [-78.806691, 37.845797],\n      [-78.806302, 37.845837],\n      [-78.805184, 37.845933],\n      [-78.80503, 37.845945],\n      [-78.804012, 37.846026],\n      [-78.800837, 37.846324],\n      [-78.800537, 37.846339],\n      [-78.800237, 37.846355],\n      [-78.800014, 37.846352],\n      [-78.79976, 37.846345],\n      [-78.799425, 37.846321],\n      [-78.799048, 37.846276],\n      [-78.79881, 37.846227],\n      [-78.798587, 37.846183],\n      [-78.798334, 37.846121],\n      [-78.798127, 37.846044],\n      [-78.797833, 37.845932],\n      [-78.797473, 37.845765],\n      [-78.797183, 37.845617],\n      [-78.796923, 37.845465],\n      [-78.796357, 37.845082],\n      [-78.795818, 37.844712],\n      [-78.795607, 37.84458],\n      [-78.795352, 37.844427],\n      [-78.795147, 37.84431],\n      [-78.794915, 37.844201],\n      [-78.794645, 37.844085],\n      [-78.794419, 37.843996],\n      [-78.794095, 37.843903],\n      [-78.793805, 37.843828],\n      [-78.793467, 37.843774],\n      [-78.793125, 37.84374],\n      [-78.792933, 37.843732],\n      [-78.792722, 37.843723],\n      [-78.792238, 37.84372],\n      [-78.791688, 37.843732],\n      [-78.791137, 37.843731],\n      [-78.790713, 37.843712],\n      [-78.790444, 37.843693],\n      [-78.79016, 37.843657],\n      [-78.78988, 37.843607],\n      [-78.789604, 37.843542],\n      [-78.789363, 37.843478],\n      [-78.789067, 37.843389],\n      [-78.788706, 37.843253],\n      [-78.78839, 37.843125],\n      [-78.788101, 37.843016],\n      [-78.78765, 37.842857],\n      [-78.787324, 37.842748],\n      [-78.787056, 37.84268],\n      [-78.786677, 37.842606],\n      [-78.786459, 37.842568],\n      [-78.786292, 37.842537],\n      [-78.785994, 37.842501],\n      [-78.785649, 37.842467],\n      [-78.785267, 37.842457],\n      [-78.784945, 37.842456],\n      [-78.784589, 37.842468],\n      [-78.782212, 37.842633],\n      [-78.780497, 37.842776],\n      [-78.779987, 37.842814],\n      [-78.778924, 37.842896],\n      [-78.77812, 37.842986],\n      [-78.777773, 37.843042],\n      [-78.777066, 37.843144],\n      [-78.776444, 37.84325],\n      [-78.775647, 37.843402],\n      [-78.774632, 37.843601],\n      [-78.773646, 37.843786],\n      [-78.773282, 37.843855],\n      [-78.772981, 37.843912],\n      [-78.772128, 37.844091],\n      [-78.771161, 37.844316],\n      [-78.770651, 37.844441],\n      [-78.769991, 37.844616],\n      [-78.768859, 37.844941],\n      [-78.768162, 37.845142],\n      [-78.767015, 37.845472],\n      [-78.76637, 37.845658],\n      [-78.765119, 37.846012],\n      [-78.761663, 37.84701],\n      [-78.760903, 37.847224],\n      [-78.760298, 37.847402],\n      [-78.75996, 37.847506],\n      [-78.7597, 37.847596],\n      [-78.759532, 37.84765],\n      [-78.759113, 37.847806],\n      [-78.758783, 37.847948],\n      [-78.758412, 37.84812],\n      [-78.758057, 37.848288],\n      [-78.757154, 37.848747],\n      [-78.756986, 37.848829],\n      [-78.756546, 37.849062],\n      [-78.756115, 37.849306],\n      [-78.755862, 37.849458],\n      [-78.755244, 37.849843],\n      [-78.754769, 37.85013],\n      [-78.754377, 37.85038],\n      [-78.753945, 37.850672],\n      [-78.753673, 37.850873],\n      [-78.753364, 37.851127],\n      [-78.753217, 37.851259],\n      [-78.752739, 37.851715],\n      [-78.752046, 37.852374],\n      [-78.75166, 37.852719],\n      [-78.751401, 37.852929],\n      [-78.751134, 37.853132],\n      [-78.750789, 37.853376],\n      [-78.750504, 37.853564],\n      [-78.750081, 37.853824],\n      [-78.74973, 37.854021],\n      [-78.749369, 37.854207],\n      [-78.748998, 37.85438],\n      [-78.748624, 37.854531],\n      [-78.748053, 37.854743],\n      [-78.747045, 37.85508],\n      [-78.746537, 37.855262],\n      [-78.746473, 37.855285],\n      [-78.745985, 37.855474],\n      [-78.7456, 37.855635],\n      [-78.744986, 37.855911],\n      [-78.744673, 37.856064],\n      [-78.744246, 37.856299],\n      [-78.743761, 37.856591],\n      [-78.743416, 37.856817],\n      [-78.742954, 37.857145],\n      [-78.742639, 37.857387],\n      [-78.742337, 37.85764],\n      [-78.742294, 37.85768],\n      [-78.741896, 37.858045],\n      [-78.741503, 37.85843],\n      [-78.741291, 37.858648],\n      [-78.741254, 37.858686],\n      [-78.740963, 37.859027],\n      [-78.740705, 37.859351],\n      [-78.740668, 37.859398],\n      [-78.740453, 37.85968],\n      [-78.739901, 37.860385],\n      [-78.739675, 37.860647],\n      [-78.739434, 37.860902],\n      [-78.739176, 37.861151],\n      [-78.73895, 37.861357],\n      [-78.738655, 37.861604],\n      [-78.738411, 37.861795],\n      [-78.738094, 37.862025],\n      [-78.737733, 37.862262],\n      [-78.737429, 37.862445],\n      [-78.73708, 37.862638],\n      [-78.73657, 37.862893],\n      [-78.736186, 37.863088],\n      [-78.735435, 37.86348],\n      [-78.734529, 37.863942],\n      [-78.733874, 37.864271],\n      [-78.733562, 37.864427],\n      [-78.733042, 37.864704],\n      [-78.732039, 37.865214],\n      [-78.731948, 37.865258],\n      [-78.731785, 37.865335],\n      [-78.731411, 37.86553],\n      [-78.730148, 37.866169],\n      [-78.729986, 37.866254],\n      [-78.729722, 37.866391],\n      [-78.728688, 37.866913],\n      [-78.727888, 37.86733],\n      [-78.727529, 37.86751],\n      [-78.726765, 37.867904],\n      [-78.726166, 37.868202],\n      [-78.725869, 37.868361],\n      [-78.725428, 37.868579],\n      [-78.725084, 37.868757],\n      [-78.724518, 37.869049],\n      [-78.723898, 37.869354],\n      [-78.722779, 37.869945],\n      [-78.721592, 37.870542],\n      [-78.720481, 37.87111],\n      [-78.719958, 37.871373],\n      [-78.719701, 37.871497],\n      [-78.719365, 37.871672],\n      [-78.718719, 37.872028],\n      [-78.71847, 37.872183],\n      [-78.718164, 37.872388],\n      [-78.717945, 37.872553],\n      [-78.717592, 37.872851],\n      [-78.717285, 37.873139],\n      [-78.717049, 37.873363],\n      [-78.716739, 37.873728],\n      [-78.716536, 37.874002],\n      [-78.716395, 37.874221],\n      [-78.716144, 37.874657],\n      [-78.71604, 37.87487],\n      [-78.715888, 37.875212],\n      [-78.715814, 37.875401],\n      [-78.715694, 37.87571],\n      [-78.715495, 37.876238],\n      [-78.715377, 37.876548],\n      [-78.715275, 37.876817],\n      [-78.71521, 37.877013],\n      [-78.715136, 37.877211],\n      [-78.715081, 37.877371],\n      [-78.714995, 37.877587],\n      [-78.71492, 37.877787],\n      [-78.7148, 37.878131],\n      [-78.714687, 37.878428],\n      [-78.714533, 37.878796],\n      [-78.714454, 37.879009],\n      [-78.714417, 37.879116],\n      [-78.714256, 37.879549],\n      [-78.714141, 37.879854],\n      [-78.713896, 37.880594],\n      [-78.713756, 37.881038],\n      [-78.713682, 37.88126],\n      [-78.713617, 37.881457],\n      [-78.713533, 37.881697],\n      [-78.713446, 37.881943],\n      [-78.713394, 37.882108],\n      [-78.713314, 37.882336],\n      [-78.713184, 37.882655],\n      [-78.713006, 37.883053],\n      [-78.712892, 37.883274],\n      [-78.712733, 37.88355],\n      [-78.712558, 37.88384],\n      [-78.712369, 37.884119],\n      [-78.712275, 37.884257],\n      [-78.712136, 37.884449],\n      [-78.711974, 37.884667],\n      [-78.711814, 37.884876],\n      [-78.711641, 37.885085],\n      [-78.711418, 37.885345],\n      [-78.711139, 37.885644],\n      [-78.710798, 37.88599],\n      [-78.710465, 37.886309],\n      [-78.710195, 37.886555],\n      [-78.709928, 37.886781],\n      [-78.709577, 37.88706],\n      [-78.709406, 37.887199],\n      [-78.709211, 37.887345],\n      [-78.708778, 37.887648],\n      [-78.707968, 37.888179],\n      [-78.707642, 37.888399],\n      [-78.707473, 37.88851],\n      [-78.707244, 37.888663],\n      [-78.706965, 37.888843],\n      [-78.706601, 37.889083],\n      [-78.706088, 37.889425],\n      [-78.705712, 37.889669],\n      [-78.705189, 37.890019],\n      [-78.704893, 37.890211],\n      [-78.703445, 37.891162],\n      [-78.703041, 37.891429],\n      [-78.702721, 37.891638],\n      [-78.702327, 37.891905],\n      [-78.70184, 37.892223],\n      [-78.701163, 37.892662],\n      [-78.700778, 37.892933],\n      [-78.70071, 37.892981],\n      [-78.700622, 37.893046],\n      [-78.700337, 37.893272],\n      [-78.69999, 37.89357],\n      [-78.699755, 37.8938],\n      [-78.699482, 37.894099],\n      [-78.699289, 37.894329],\n      [-78.698787, 37.894984],\n      [-78.698558, 37.895284],\n      [-78.69837, 37.895519],\n      [-78.698116, 37.895851],\n      [-78.697966, 37.896055],\n      [-78.697696, 37.896407],\n      [-78.697057, 37.897242],\n      [-78.696439, 37.898041],\n      [-78.695681, 37.899035],\n      [-78.695049, 37.899863],\n      [-78.694658, 37.900403],\n      [-78.694519, 37.900599],\n      [-78.694429, 37.900733],\n      [-78.693954, 37.901464],\n      [-78.693721, 37.901862],\n      [-78.693473, 37.902275],\n      [-78.693102, 37.902981],\n      [-78.692879, 37.903439],\n      [-78.692797, 37.903623],\n      [-78.692129, 37.905105],\n      [-78.691808, 37.905817],\n      [-78.691268, 37.906984],\n      [-78.690987, 37.907549],\n      [-78.690814, 37.907874],\n      [-78.690688, 37.908089],\n      [-78.690521, 37.908372],\n      [-78.690275, 37.908767],\n      [-78.689663, 37.909657],\n      [-78.689078, 37.910492],\n      [-78.685485, 37.915666],\n      [-78.684467, 37.917131],\n      [-78.682047, 37.920608],\n      [-78.681785, 37.92095],\n      [-78.681517, 37.921272],\n      [-78.681241, 37.921578],\n      [-78.68101, 37.921818],\n      [-78.680605, 37.922194],\n      [-78.68013, 37.922617],\n      [-78.679566, 37.923137],\n      [-78.679307, 37.923403],\n      [-78.678986, 37.92374],\n      [-78.678605, 37.924203],\n      [-78.678345, 37.924561],\n      [-78.678124, 37.924891],\n      [-78.677903, 37.925227],\n      [-78.677688, 37.925589],\n      [-78.677544, 37.925878],\n      [-78.67731, 37.926442],\n      [-78.676551, 37.928284],\n      [-78.676404, 37.928595],\n      [-78.676242, 37.928949],\n      [-78.676148, 37.929122],\n      [-78.675977, 37.929377],\n      [-78.675612, 37.929807],\n      [-78.675385, 37.930086],\n      [-78.675213, 37.930312],\n      [-78.675004, 37.930559],\n      [-78.674617, 37.931044],\n      [-78.67407, 37.931702],\n      [-78.673673, 37.932201],\n      [-78.673281, 37.9327],\n      [-78.672994, 37.933082],\n      [-78.672166, 37.934227],\n      [-78.671112, 37.935771],\n      [-78.670762, 37.936281],\n      [-78.670385, 37.936817],\n      [-78.669877, 37.937599],\n      [-78.668999, 37.93886],\n      [-78.667671, 37.940789],\n      [-78.666721, 37.942158],\n      [-78.666126, 37.943118],\n      [-78.665597, 37.944014],\n      [-78.665125, 37.944827],\n      [-78.664642, 37.945633],\n      [-78.664087, 37.946602],\n      [-78.663665, 37.947366],\n      [-78.663523, 37.947648],\n      [-78.663363, 37.948007],\n      [-78.66312, 37.948581],\n      [-78.662992, 37.948919],\n      [-78.662788, 37.949511],\n      [-78.662392, 37.950794],\n      [-78.662127, 37.951686],\n      [-78.661907, 37.952368],\n      [-78.6618, 37.952667],\n      [-78.661673, 37.952964],\n      [-78.661549, 37.953229],\n      [-78.661377, 37.953546],\n      [-78.661172, 37.953875],\n      [-78.660975, 37.954168],\n      [-78.660712, 37.954527],\n      [-78.660589, 37.954686],\n      [-78.660525, 37.954768],\n      [-78.660204, 37.955161],\n      [-78.659899, 37.955515],\n      [-78.65946, 37.956045],\n      [-78.659107, 37.956472],\n      [-78.658939, 37.95668],\n      [-78.658404, 37.957325],\n      [-78.658185, 37.957583],\n      [-78.657413, 37.958505],\n      [-78.65713, 37.958855],\n      [-78.65677, 37.959264],\n      [-78.656612, 37.959431],\n      [-78.656439, 37.95959],\n      [-78.656251, 37.959739],\n      [-78.656068, 37.959867],\n      [-78.655989, 37.959917],\n      [-78.655752, 37.960052],\n      [-78.655575, 37.96015],\n      [-78.655228, 37.960289],\n      [-78.654931, 37.960405],\n      [-78.653275, 37.960978],\n      [-78.652399, 37.961277],\n      [-78.651659, 37.961545],\n      [-78.651372, 37.96167],\n      [-78.651131, 37.961788],\n      [-78.650953, 37.961888],\n      [-78.65077, 37.962003],\n      [-78.650655, 37.962074],\n      [-78.650545, 37.96215],\n      [-78.650369, 37.962277],\n      [-78.650124, 37.962492],\n      [-78.649827, 37.962781],\n      [-78.649528, 37.963082],\n      [-78.649157, 37.963468],\n      [-78.648771, 37.96385],\n      [-78.648569, 37.964042],\n      [-78.648236, 37.964318],\n      [-78.647928, 37.964546],\n      [-78.647355, 37.964951],\n      [-78.646421, 37.965624],\n      [-78.646034, 37.965897],\n      [-78.645591, 37.966218],\n      [-78.645351, 37.966376],\n      [-78.645051, 37.966569],\n      [-78.644735, 37.966754],\n      [-78.644581, 37.96684],\n      [-78.6444, 37.966936],\n      [-78.643915, 37.967163],\n      [-78.643555, 37.967319],\n      [-78.643147, 37.967465],\n      [-78.642853, 37.967561],\n      [-78.642519, 37.96766],\n      [-78.642395, 37.967695],\n      [-78.642095, 37.967768],\n      [-78.641871, 37.967823],\n      [-78.641449, 37.967916],\n      [-78.640993, 37.967991],\n      [-78.640408, 37.968066],\n      [-78.639997, 37.968103],\n      [-78.639496, 37.96813],\n      [-78.638995, 37.968136],\n      [-78.638434, 37.968125],\n      [-78.637944, 37.9681],\n      [-78.63612, 37.967958],\n      [-78.635136, 37.967873],\n      [-78.633802, 37.96777],\n      [-78.632073, 37.967631],\n      [-78.631801, 37.967611],\n      [-78.630935, 37.967546],\n      [-78.630424, 37.967503],\n      [-78.629697, 37.967442],\n      [-78.628686, 37.967361],\n      [-78.626167, 37.967159],\n      [-78.623282, 37.966927],\n      [-78.622258, 37.96685],\n      [-78.621932, 37.966824],\n      [-78.620819, 37.966736],\n      [-78.620381, 37.966716],\n      [-78.620004, 37.966712],\n      [-78.619679, 37.966717],\n      [-78.61937, 37.966745],\n      [-78.619064, 37.966787],\n      [-78.618761, 37.966844],\n      [-78.618523, 37.9669],\n      [-78.618222, 37.966977],\n      [-78.617837, 37.967103],\n      [-78.617525, 37.967224],\n      [-78.617264, 37.967333],\n      [-78.616866, 37.967526],\n      [-78.61666, 37.96764],\n      [-78.616487, 37.967735],\n      [-78.616266, 37.967872],\n      [-78.615844, 37.968137],\n      [-78.615555, 37.968338],\n      [-78.615229, 37.968577],\n      [-78.614931, 37.968831],\n      [-78.614607, 37.969142],\n      [-78.614381, 37.96937],\n      [-78.614151, 37.969646],\n      [-78.613964, 37.96988],\n      [-78.613494, 37.970554],\n      [-78.61301, 37.971246],\n      [-78.612831, 37.971512],\n      [-78.612279, 37.972333],\n      [-78.611229, 37.97389],\n      [-78.610819, 37.974494],\n      [-78.610719, 37.974624],\n      [-78.610499, 37.974897],\n      [-78.610319, 37.975118],\n      [-78.610116, 37.975331],\n      [-78.609966, 37.975469],\n      [-78.609796, 37.975624],\n      [-78.609591, 37.975796],\n      [-78.609317, 37.976004],\n      [-78.609071, 37.976176],\n      [-78.608849, 37.976327],\n      [-78.608744, 37.97639],\n      [-78.608365, 37.976619],\n      [-78.608101, 37.976752],\n      [-78.607845, 37.976869],\n      [-78.607584, 37.976978],\n      [-78.60725, 37.977103],\n      [-78.606977, 37.977192],\n      [-78.606625, 37.977297],\n      [-78.606266, 37.977388],\n      [-78.606123, 37.977418],\n      [-78.605902, 37.977465],\n      [-78.605646, 37.97752],\n      [-78.605621, 37.977522],\n      [-78.605549, 37.977538],\n      [-78.60423, 37.977756],\n      [-78.602588, 37.978034],\n      [-78.602162, 37.978122],\n      [-78.601825, 37.978203],\n      [-78.601492, 37.978293],\n      [-78.601094, 37.978414],\n      [-78.60071, 37.978547],\n      [-78.600334, 37.978694],\n      [-78.599967, 37.978854],\n      [-78.599486, 37.979083],\n      [-78.599163, 37.979252],\n      [-78.598789, 37.97947],\n      [-78.598549, 37.979624],\n      [-78.597946, 37.980033],\n      [-78.596889, 37.98075],\n      [-78.595137, 37.981939],\n      [-78.593704, 37.982911],\n      [-78.592376, 37.98382],\n      [-78.590854, 37.984906],\n      [-78.590225, 37.985373],\n      [-78.588999, 37.98631],\n      [-78.588012, 37.9871],\n      [-78.587089, 37.987859],\n      [-78.586722, 37.988171],\n      [-78.586183, 37.988631],\n      [-78.585023, 37.989655],\n      [-78.583908, 37.990662],\n      [-78.583686, 37.990885],\n      [-78.583478, 37.991116],\n      [-78.583203, 37.991447],\n      [-78.583057, 37.991641],\n      [-78.582889, 37.99189],\n      [-78.582734, 37.992152],\n      [-78.582584, 37.992445],\n      [-78.582451, 37.992743],\n      [-78.582318, 37.993104],\n      [-78.582229, 37.993396],\n      [-78.582158, 37.993692],\n      [-78.582061, 37.994255],\n      [-78.581989, 37.994788],\n      [-78.581919, 37.9952],\n      [-78.581831, 37.99573],\n      [-78.581596, 37.997239],\n      [-78.581525, 37.997665],\n      [-78.58147, 37.998088],\n      [-78.581083, 38.000517],\n      [-78.580993, 38.001016],\n      [-78.580912, 38.001332],\n      [-78.580857, 38.001514],\n      [-78.580851, 38.001532],\n      [-78.580827, 38.001607],\n      [-78.580788, 38.001711],\n      [-78.580764, 38.001783],\n      [-78.580638, 38.002087],\n      [-78.580501, 38.002397],\n      [-78.580338, 38.002682],\n      [-78.580176, 38.002939],\n      [-78.580026, 38.003155],\n      [-78.57984, 38.003394],\n      [-78.579631, 38.003641],\n      [-78.579528, 38.003748],\n      [-78.579258, 38.004014],\n      [-78.578985, 38.00426],\n      [-78.578784, 38.004426],\n      [-78.578575, 38.004584],\n      [-78.578379, 38.004723],\n      [-78.578122, 38.004899],\n      [-78.577709, 38.005151],\n      [-78.577431, 38.005306],\n      [-78.577141, 38.005444],\n      [-78.576923, 38.005542],\n      [-78.576628, 38.005666],\n      [-78.576327, 38.005766],\n      [-78.576154, 38.005828],\n      [-78.575371, 38.006031],\n      [-78.574274, 38.006313],\n      [-78.573929, 38.006397],\n      [-78.573678, 38.006459],\n      [-78.5731, 38.006602],\n      [-78.572544, 38.006742],\n      [-78.570845, 38.007165],\n      [-78.570536, 38.007245],\n      [-78.570147, 38.007346],\n      [-78.569511, 38.007502],\n      [-78.568866, 38.007677],\n      [-78.568449, 38.007795],\n      [-78.568216, 38.007865],\n      [-78.567861, 38.007984],\n      [-78.567483, 38.008116],\n      [-78.567008, 38.00831],\n      [-78.566642, 38.008471],\n      [-78.566222, 38.008672],\n      [-78.565813, 38.008887],\n      [-78.565381, 38.009126],\n      [-78.564818, 38.009422],\n      [-78.564544, 38.009563],\n      [-78.564196, 38.009735],\n      [-78.564075, 38.009787],\n      [-78.56369, 38.009944],\n      [-78.56326, 38.010103],\n      [-78.562849, 38.010238],\n      [-78.562529, 38.010332],\n      [-78.562124, 38.010438],\n      [-78.561805, 38.010515],\n      [-78.561564, 38.010564],\n      [-78.56093, 38.010675],\n      [-78.560028, 38.010845],\n      [-78.558824, 38.011064],\n      [-78.558024, 38.011219],\n      [-78.557648, 38.011286],\n      [-78.557386, 38.011333],\n      [-78.557058, 38.011387],\n      [-78.555118, 38.011755],\n      [-78.554112, 38.011931],\n      [-78.552878, 38.012156],\n      [-78.552449, 38.01225],\n      [-78.552186, 38.012316],\n      [-78.551829, 38.012417],\n      [-78.551365, 38.012562],\n      [-78.55109, 38.012655],\n      [-78.550658, 38.012829],\n      [-78.550236, 38.013017],\n      [-78.549599, 38.013364],\n      [-78.549376, 38.013492],\n      [-78.549058, 38.013698],\n      [-78.548469, 38.01411],\n      [-78.547659, 38.014674],\n      [-78.547468, 38.014808],\n      [-78.54736, 38.014884],\n      [-78.547042, 38.015096],\n      [-78.546611, 38.015362],\n      [-78.546269, 38.015559],\n      [-78.54592, 38.01574],\n      [-78.545223, 38.016069],\n      [-78.544841, 38.016247],\n      [-78.543906, 38.016682],\n      [-78.543654, 38.016806],\n      [-78.54333, 38.016982],\n      [-78.542733, 38.017318],\n      [-78.542466, 38.017467],\n      [-78.539711, 38.018979],\n      [-78.536725, 38.020664],\n      [-78.535885, 38.021132],\n      [-78.535518, 38.021335],\n      [-78.534742, 38.021766],\n      [-78.534188, 38.022073],\n      [-78.532955, 38.02276],\n      [-78.532173, 38.023196],\n      [-78.531193, 38.023747],\n      [-78.531125, 38.023792],\n      [-78.53075, 38.024045],\n      [-78.530445, 38.024274],\n      [-78.530203, 38.024476],\n      [-78.530016, 38.024649],\n      [-78.529931, 38.024733],\n      [-78.52985, 38.024806],\n      [-78.529798, 38.024854],\n      [-78.529758, 38.024894],\n      [-78.529598, 38.025065],\n      [-78.529327, 38.025386],\n      [-78.52916, 38.025608],\n      [-78.528945, 38.025933],\n      [-78.5288, 38.026176],\n      [-78.528672, 38.026426],\n      [-78.52861, 38.026566],\n      [-78.528405, 38.027066],\n      [-78.52833, 38.027311],\n      [-78.528283, 38.02751],\n      [-78.528235, 38.027689],\n      [-78.528151, 38.028145],\n      [-78.527582, 38.03105],\n      [-78.527126, 38.033402],\n      [-78.52703, 38.033972],\n      [-78.526914, 38.034782],\n      [-78.526868, 38.035166],\n      [-78.52679, 38.036035],\n      [-78.526753, 38.036647],\n      [-78.526715, 38.03781],\n      [-78.526642, 38.040878],\n      [-78.526607, 38.042081],\n      [-78.526584, 38.042473],\n      [-78.526544, 38.042863],\n      [-78.52645, 38.043462],\n      [-78.526353, 38.043907],\n      [-78.526306, 38.044099],\n      [-78.526225, 38.044382],\n      [-78.526103, 38.044762],\n      [-78.525978, 38.045116],\n      [-78.52595, 38.045183],\n      [-78.525619, 38.045973],\n      [-78.525226, 38.046882],\n      [-78.524837, 38.047794],\n      [-78.524807, 38.047861],\n      [-78.524712, 38.048073],\n      [-78.523664, 38.050524],\n      [-78.523608, 38.050633],\n      [-78.523449, 38.050945],\n      [-78.523194, 38.051371],\n      [-78.522992, 38.051667],\n      [-78.522896, 38.051793],\n      [-78.522708, 38.052033],\n      [-78.522379, 38.052403],\n      [-78.522049, 38.052728],\n      [-78.521736, 38.053004],\n      [-78.521375, 38.053289],\n      [-78.521061, 38.053512],\n      [-78.520792, 38.053687],\n      [-78.520433, 38.053898],\n      [-78.5202, 38.054028],\n      [-78.519924, 38.054166],\n      [-78.519561, 38.054329],\n      [-78.519179, 38.054486],\n      [-78.518827, 38.054612],\n      [-78.518437, 38.054736],\n      [-78.518106, 38.054829],\n      [-78.517883, 38.054877],\n      [-78.517638, 38.05494],\n      [-78.517298, 38.055006],\n      [-78.51674, 38.055093],\n      [-78.515503, 38.055228],\n      [-78.513125, 38.055506],\n      [-78.51298, 38.05552],\n      [-78.511721, 38.055664],\n      [-78.510089, 38.05585],\n      [-78.509444, 38.055931],\n      [-78.508892, 38.056018],\n      [-78.508324, 38.056121],\n      [-78.50762, 38.056269],\n      [-78.507101, 38.056364],\n      [-78.5063, 38.056529],\n      [-78.504207, 38.056975],\n      [-78.503544, 38.057129],\n      [-78.50332, 38.057173],\n      [-78.50218, 38.05739],\n      [-78.501769, 38.057476],\n      [-78.501588, 38.057518],\n      [-78.501288, 38.05758],\n      [-78.500918, 38.057644],\n      [-78.50053, 38.057699],\n      [-78.50025, 38.057721],\n      [-78.49999, 38.057731],\n      [-78.4996, 38.057738],\n      [-78.499258, 38.057729],\n      [-78.499228, 38.057727],\n      [-78.498789, 38.057695],\n      [-78.498509, 38.057667],\n      [-78.498249, 38.05764],\n      [-78.497868, 38.057604],\n      [-78.497658, 38.057584],\n      [-78.497235, 38.057537],\n      [-78.496848, 38.057489],\n      [-78.495893, 38.057371],\n      [-78.494978, 38.057279],\n      [-78.49472, 38.057173],\n      [-78.494659, 38.057142],\n      [-78.494592, 38.057093],\n      [-78.494549, 38.057047],\n      [-78.494516, 38.056995],\n      [-78.494502, 38.05695],\n      [-78.494493, 38.056874],\n      [-78.494502, 38.056798],\n      [-78.494522, 38.056739],\n      [-78.494562, 38.056669],\n      [-78.494623, 38.05661],\n      [-78.494697, 38.056562],\n      [-78.494781, 38.056525],\n      [-78.494872, 38.056502],\n      [-78.49496, 38.056493],\n      [-78.495044, 38.0565],\n      [-78.495109, 38.056516],\n      [-78.495169, 38.056541],\n      [-78.495238, 38.056584],\n      [-78.49528, 38.056617],\n      [-78.495339, 38.05668],\n      [-78.495381, 38.056751],\n      [-78.495402, 38.056811],\n      [-78.495415, 38.056894],\n      [-78.495413, 38.056998],\n      [-78.495388, 38.057116],\n      [-78.49528, 38.057239],\n      [-78.495007, 38.057577],\n      [-78.494845, 38.057747],\n      [-78.494782, 38.057825],\n      [-78.494593, 38.05807],\n      [-78.494413, 38.058298],\n      [-78.494268, 38.05847],\n      [-78.494235, 38.058509],\n      [-78.494159, 38.058601],\n      [-78.493967, 38.058833],\n      [-78.493505, 38.059401],\n      [-78.493364, 38.059586],\n      [-78.492889, 38.060182],\n      [-78.492564, 38.060616],\n      [-78.492196, 38.061101],\n      [-78.491916, 38.061468],\n      [-78.491724, 38.061722],\n      [-78.491723, 38.061722],\n      [-78.491578, 38.061897],\n      [-78.491244, 38.062293],\n      [-78.490863, 38.062734],\n      [-78.490477, 38.063153],\n      [-78.490269, 38.06338],\n      [-78.489937, 38.063742],\n      [-78.48969, 38.064008],\n      [-78.489478, 38.064259],\n      [-78.489344, 38.064409],\n      [-78.489289, 38.06447],\n      [-78.489212, 38.064554],\n      [-78.488761, 38.065053],\n      [-78.48815, 38.065739],\n      [-78.488116, 38.065779],\n      [-78.487867, 38.06605],\n      [-78.48713, 38.06686],\n      [-78.486995, 38.067008],\n      [-78.486825, 38.067194],\n      [-78.486343, 38.067727],\n      [-78.486218, 38.067866],\n      [-78.486208, 38.067877],\n      [-78.486134, 38.067959],\n      [-78.48576, 38.068363],\n      [-78.485475, 38.06867],\n      [-78.485154, 38.069027],\n      [-78.484295, 38.070023],\n      [-78.484063, 38.070271],\n      [-78.483776, 38.070614],\n      [-78.483281, 38.071164],\n      [-78.482433, 38.07211],\n      [-78.480968, 38.073741],\n      [-78.480778, 38.073943],\n      [-78.480706, 38.07403],\n      [-78.480376, 38.074401],\n      [-78.479882, 38.074956],\n      [-78.479801, 38.075034],\n      [-78.479272, 38.075634],\n      [-78.478606, 38.076375],\n      [-78.478527, 38.076469],\n      [-78.478367, 38.076647],\n      [-78.477091, 38.078062],\n      [-78.476397, 38.078846],\n      [-78.475743, 38.079571],\n      [-78.474543, 38.08091],\n      [-78.474163, 38.081335],\n      [-78.473969, 38.081577],\n      [-78.473788, 38.081788],\n      [-78.473613, 38.082014],\n      [-78.47347, 38.082218],\n      [-78.472971, 38.083082],\n      [-78.472639, 38.083666],\n      [-78.472264, 38.084319],\n      [-78.471709, 38.085285],\n      [-78.471146, 38.086271],\n      [-78.47079, 38.086895],\n      [-78.470583, 38.087258],\n      [-78.47026, 38.087825],\n      [-78.469568, 38.089039],\n      [-78.468607, 38.090712],\n      [-78.468501, 38.090897],\n      [-78.468139, 38.091557],\n      [-78.468043, 38.091733],\n      [-78.467922, 38.09192],\n      [-78.467732, 38.092218],\n      [-78.46735, 38.0929],\n      [-78.466766, 38.093924],\n      [-78.466497, 38.09437],\n      [-78.466369, 38.094558],\n      [-78.46599, 38.095057],\n      [-78.465526, 38.09564],\n      [-78.465381, 38.095816],\n      [-78.464933, 38.096381],\n      [-78.464463, 38.096962],\n      [-78.464049, 38.097474],\n      [-78.463974, 38.097573],\n      [-78.463441, 38.098232],\n      [-78.46294, 38.098874],\n      [-78.462231, 38.099765],\n      [-78.461478, 38.100721],\n      [-78.460943, 38.101395],\n      [-78.460544, 38.101882],\n      [-78.460009, 38.102564],\n      [-78.459568, 38.103126],\n      [-78.459337, 38.103403],\n      [-78.458603, 38.10429],\n      [-78.457804, 38.105297],\n      [-78.45751, 38.105695],\n      [-78.4569, 38.106619],\n      [-78.456598, 38.107068],\n      [-78.45544, 38.108845],\n      [-78.454988, 38.109578],\n      [-78.454476, 38.110311],\n      [-78.454296, 38.110569],\n      [-78.454206, 38.110708],\n      [-78.454093, 38.110899],\n      [-78.453942, 38.111128],\n      [-78.453769, 38.111409],\n      [-78.453294, 38.112125],\n      [-78.453172, 38.112318],\n      [-78.452856, 38.112817],\n      [-78.452688, 38.11307],\n      [-78.452602, 38.113223],\n      [-78.451975, 38.114186],\n      [-78.451686, 38.11461],\n      [-78.45106, 38.115568],\n      [-78.450908, 38.115798],\n      [-78.450496, 38.11642],\n      [-78.450419, 38.116537],\n      [-78.45032, 38.116697],\n      [-78.450137, 38.116993],\n      [-78.449702, 38.117634],\n      [-78.449172, 38.118448],\n      [-78.448773, 38.119065],\n      [-78.448006, 38.120242],\n      [-78.447677, 38.120726],\n      [-78.447299, 38.121219],\n      [-78.44692, 38.121631],\n      [-78.446411, 38.122124],\n      [-78.4458, 38.12267],\n      [-78.444661, 38.123687],\n      [-78.442392, 38.125724],\n      [-78.441529, 38.126494],\n      [-78.440922, 38.127044],\n      [-78.440006, 38.127866],\n      [-78.439371, 38.128436],\n      [-78.437997, 38.129669],\n      [-78.437902, 38.129754],\n      [-78.437019, 38.130549],\n      [-78.436453, 38.131059],\n      [-78.436187, 38.131299],\n      [-78.435995, 38.13147],\n      [-78.435251, 38.132172],\n      [-78.435106, 38.132303],\n      [-78.434673, 38.132753],\n      [-78.434293, 38.13317],\n      [-78.433695, 38.133887],\n      [-78.433416, 38.134269],\n      [-78.433195, 38.134572],\n      [-78.432173, 38.13616],\n      [-78.430917, 38.138131],\n      [-78.430468, 38.138847],\n      [-78.429836, 38.139833],\n      [-78.429464, 38.140424],\n      [-78.428859, 38.141359],\n      [-78.428348, 38.142178],\n      [-78.428275, 38.142291],\n      [-78.427887, 38.14289],\n      [-78.427641, 38.143278],\n      [-78.427277, 38.143851],\n      [-78.427263, 38.143873],\n      [-78.425718, 38.146293],\n      [-78.4249, 38.147586],\n      [-78.423982, 38.149017],\n      [-78.423879, 38.149181],\n      [-78.4234, 38.149936],\n      [-78.422346, 38.1516],\n      [-78.42208, 38.151996],\n      [-78.421684, 38.152621],\n      [-78.421337, 38.15319],\n      [-78.420383, 38.154692],\n      [-78.419605, 38.155908],\n      [-78.417659, 38.158962],\n      [-78.415009, 38.163121],\n      [-78.414626, 38.163716],\n      [-78.414541, 38.163851],\n      [-78.414293, 38.164245],\n      [-78.412771, 38.16663],\n      [-78.41231, 38.167345],\n      [-78.411781, 38.168185],\n      [-78.410521, 38.170164],\n      [-78.410064, 38.170881],\n      [-78.408661, 38.173081],\n      [-78.408289, 38.173661],\n      [-78.406754, 38.176057],\n      [-78.405791, 38.177582],\n      [-78.405633, 38.177824],\n      [-78.404819, 38.179105],\n      [-78.40451, 38.179581],\n      [-78.403702, 38.180857],\n      [-78.403534, 38.181116],\n      [-78.40229, 38.183084],\n      [-78.402, 38.183534],\n      [-78.401567, 38.184219],\n      [-78.401491, 38.184329],\n      [-78.400918, 38.18523],\n      [-78.400512, 38.185861],\n      [-78.399321, 38.187671],\n      [-78.399195, 38.187856],\n      [-78.399077, 38.188041],\n      [-78.398689, 38.188617],\n      [-78.398558, 38.18882],\n      [-78.397589, 38.190295],\n      [-78.3974, 38.190566],\n      [-78.397207, 38.19086],\n      [-78.396877, 38.191349],\n      [-78.396731, 38.191574],\n      [-78.396016, 38.192652],\n      [-78.395969, 38.192724],\n      [-78.395198, 38.193895],\n      [-78.395145, 38.193978],\n      [-78.395092, 38.194057],\n      [-78.395078, 38.194078],\n      [-78.394787, 38.194511],\n      [-78.394461, 38.19501],\n      [-78.394425, 38.195065],\n      [-78.393867, 38.195904],\n      [-78.393697, 38.196162],\n      [-78.392569, 38.197862],\n      [-78.392356, 38.198186],\n      [-78.391791, 38.199049],\n      [-78.3916, 38.199341],\n      [-78.391424, 38.19959],\n      [-78.391056, 38.200141],\n      [-78.390364, 38.201178],\n      [-78.388697, 38.203713],\n      [-78.387884, 38.204937],\n      [-78.387682, 38.20524],\n      [-78.387424, 38.205639],\n      [-78.386997, 38.206278],\n      [-78.386781, 38.206604],\n      [-78.386138, 38.207581],\n      [-78.385992, 38.207804],\n      [-78.385531, 38.2085],\n      [-78.38498, 38.209334],\n      [-78.384853, 38.209537],\n      [-78.383889, 38.210987],\n      [-78.383519, 38.211533],\n      [-78.383408, 38.211705],\n      [-78.383194, 38.212041],\n      [-78.382209, 38.213531],\n      [-78.381949, 38.213932],\n      [-78.381401, 38.214759],\n      [-78.380953, 38.215433],\n      [-78.380697, 38.215818],\n      [-78.380472, 38.216158],\n      [-78.379118, 38.218196],\n      [-78.378999, 38.218384],\n      [-78.37862, 38.21895],\n      [-78.377882, 38.220071],\n      [-78.377739, 38.220289],\n      [-78.377587, 38.220523],\n      [-78.376908, 38.221535],\n      [-78.376698, 38.221851],\n      [-78.376516, 38.222128],\n      [-78.375966, 38.222959],\n      [-78.375503, 38.223658],\n      [-78.374143, 38.225716],\n      [-78.373741, 38.226317],\n      [-78.372465, 38.228246],\n      [-78.371604, 38.229546],\n      [-78.371224, 38.230126],\n      [-78.37075, 38.230832],\n      [-78.370117, 38.231792],\n      [-78.369796, 38.23229],\n      [-78.369344, 38.233031],\n      [-78.369247, 38.233202],\n      [-78.369201, 38.233285],\n      [-78.369089, 38.233499],\n      [-78.368757, 38.234191],\n      [-78.368537, 38.23469],\n      [-78.368285, 38.235273],\n      [-78.367348, 38.237406],\n      [-78.367125, 38.237924],\n      [-78.366876, 38.23848],\n      [-78.366632, 38.239054],\n      [-78.366538, 38.239263],\n      [-78.366315, 38.239761],\n      [-78.365981, 38.240523],\n      [-78.365112, 38.242495],\n      [-78.364536, 38.243815],\n      [-78.364277, 38.244425],\n      [-78.363872, 38.245322],\n      [-78.363644, 38.245831],\n      [-78.363475, 38.246227],\n      [-78.363324, 38.246579],\n      [-78.363065, 38.24716],\n      [-78.362399, 38.248697],\n      [-78.362213, 38.249115],\n      [-78.36185, 38.249928],\n      [-78.360994, 38.251906],\n      [-78.360894, 38.252122],\n      [-78.360732, 38.252472],\n      [-78.359818, 38.254556],\n      [-78.359604, 38.255032],\n      [-78.358451, 38.257672],\n      [-78.35837, 38.257854],\n      [-78.357235, 38.260418],\n      [-78.35697, 38.261034],\n      [-78.356749, 38.261526],\n      [-78.356328, 38.262487],\n      [-78.3557, 38.26392],\n      [-78.355441, 38.264489],\n      [-78.354985, 38.265534],\n      [-78.354199, 38.267311],\n      [-78.354014, 38.267697],\n      [-78.353899, 38.267927],\n      [-78.353632, 38.268419],\n      [-78.353386, 38.268835],\n      [-78.353012, 38.269405],\n      [-78.352727, 38.269807],\n      [-78.352433, 38.270193],\n      [-78.351176, 38.271816],\n      [-78.35069, 38.272444],\n      [-78.350332, 38.272914],\n      [-78.349867, 38.273496],\n      [-78.349659, 38.273731],\n      [-78.349448, 38.273949],\n      [-78.349246, 38.274133],\n      [-78.348925, 38.274393],\n      [-78.348653, 38.274592],\n      [-78.348309, 38.274816],\n      [-78.346752, 38.275754],\n      [-78.345609, 38.276449],\n      [-78.34394, 38.277447],\n      [-78.343411, 38.277789],\n      [-78.343205, 38.277938],\n      [-78.342906, 38.278167],\n      [-78.342692, 38.278348],\n      [-78.342621, 38.27841],\n      [-78.342399, 38.278622],\n      [-78.342335, 38.278686],\n      [-78.342171, 38.278857],\n      [-78.341631, 38.279482],\n      [-78.341204, 38.280003],\n      [-78.341139, 38.280089],\n      [-78.341053, 38.280202],\n      [-78.340551, 38.280804],\n      [-78.34033, 38.281097],\n      [-78.339739, 38.281771],\n      [-78.337121, 38.284947],\n      [-78.335554, 38.286807],\n      [-78.334912, 38.287652],\n      [-78.334363, 38.288479],\n      [-78.333901, 38.289321],\n      [-78.332891, 38.291302],\n      [-78.33264, 38.291856],\n      [-78.332046, 38.29316],\n      [-78.331547, 38.294091],\n      [-78.33002, 38.297253],\n      [-78.328705, 38.299896],\n      [-78.328454, 38.300437],\n      [-78.327604, 38.302025],\n      [-78.326529, 38.303681],\n      [-78.325643, 38.304891],\n      [-78.325058, 38.305662],\n      [-78.32399, 38.30691],\n      [-78.3236, 38.307359],\n      [-78.323233, 38.30771],\n      [-78.322626, 38.308335],\n      [-78.320591, 38.310229],\n      [-78.317859, 38.312439],\n      [-78.317136, 38.313055],\n      [-78.314274, 38.315396],\n      [-78.313204, 38.316275],\n      [-78.313084, 38.316374],\n      [-78.312238, 38.317069],\n      [-78.31127, 38.317874],\n      [-78.310555, 38.318624],\n      [-78.308339, 38.321068],\n      [-78.307189, 38.322326],\n      [-78.306432, 38.323147],\n      [-78.305157, 38.324565],\n      [-78.299683, 38.33067],\n      [-78.296227, 38.334366],\n      [-78.294775, 38.336025],\n      [-78.294422, 38.336434],\n      [-78.293518, 38.337393],\n      [-78.292283, 38.338774],\n      [-78.290905, 38.340301],\n      [-78.289054, 38.34231],\n      [-78.287698, 38.343781],\n      [-78.286127, 38.345511],\n      [-78.284805, 38.346961],\n      [-78.284197, 38.347653],\n      [-78.281261, 38.350904],\n      [-78.27928, 38.353063],\n      [-78.277989, 38.354462],\n      [-78.276967, 38.355626],\n      [-78.275482, 38.357205],\n      [-78.275108, 38.357686],\n      [-78.273995, 38.359116],\n      [-78.272612, 38.361053],\n      [-78.269402, 38.365549],\n      [-78.268281, 38.367067],\n      [-78.26707, 38.368543],\n      [-78.266209, 38.369424],\n      [-78.26463, 38.370803],\n      [-78.263855, 38.371431],\n      [-78.262777, 38.372178],\n      [-78.262167, 38.372601],\n      [-78.258589, 38.375046],\n      [-78.253931, 38.378242],\n      [-78.253419, 38.378585],\n      [-78.252722, 38.379065],\n      [-78.251038, 38.380279],\n      [-78.249725, 38.3814],\n      [-78.248824, 38.38242],\n      [-78.247019, 38.384778],\n      [-78.243045, 38.39007],\n      [-78.242379, 38.390835],\n      [-78.241798, 38.391304],\n      [-78.241358, 38.391649],\n      [-78.240659, 38.392107],\n      [-78.239791, 38.392562],\n      [-78.236781, 38.394134],\n      [-78.234618, 38.395478],\n      [-78.233524, 38.396238],\n      [-78.231366, 38.397688],\n      [-78.230593, 38.398159],\n      [-78.229713, 38.398631],\n      [-78.22927, 38.398846],\n      [-78.227176, 38.399941],\n      [-78.224001, 38.401573],\n      [-78.221687, 38.402762],\n      [-78.220927, 38.403115],\n      [-78.219583, 38.403494],\n      [-78.217956, 38.403869],\n      [-78.216834, 38.404329],\n      [-78.216198, 38.404653],\n      [-78.215673, 38.404943],\n      [-78.2147, 38.405692],\n      [-78.214341, 38.406017],\n      [-78.211846, 38.409013],\n      [-78.211205, 38.409859],\n      [-78.208931, 38.412831],\n      [-78.207891, 38.413946],\n      [-78.207388, 38.414459],\n      [-78.206848, 38.414885],\n      [-78.20502, 38.416246],\n      [-78.204339, 38.416746],\n      [-78.203587, 38.417231],\n      [-78.201789, 38.418025],\n      [-78.199931, 38.418788],\n      [-78.198775, 38.419213],\n      [-78.197516, 38.419599],\n      [-78.196891, 38.419728],\n      [-78.193593, 38.420311],\n      [-78.192656, 38.420508],\n      [-78.191772, 38.420736],\n      [-78.190615, 38.421137],\n      [-78.189756, 38.421485],\n      [-78.189131, 38.421795],\n      [-78.188009, 38.422501],\n      [-78.186635, 38.423265],\n      [-78.185396, 38.423841],\n      [-78.184545, 38.424162],\n      [-78.179643, 38.425692],\n      [-78.176595, 38.426575],\n      [-78.175037, 38.427149],\n      [-78.174014, 38.427529],\n      [-78.171007, 38.428688],\n      [-78.169272, 38.429381],\n      [-78.165511, 38.430827],\n      [-78.164119, 38.431371],\n      [-78.162591, 38.431967],\n      [-78.161653, 38.432308],\n      [-78.160661, 38.43271],\n      [-78.160269, 38.432865],\n      [-78.159874, 38.433009],\n      [-78.157491, 38.433942],\n      [-78.157022, 38.434133],\n      [-78.156281, 38.434403],\n      [-78.154122, 38.435214],\n      [-78.152887, 38.435503],\n      [-78.151935, 38.435645],\n      [-78.151237, 38.435723],\n      [-78.149391, 38.435895],\n      [-78.145341, 38.436294],\n      [-78.143178, 38.436516],\n      [-78.141588, 38.436723],\n      [-78.140742, 38.436927],\n      [-78.139967, 38.43716],\n      [-78.139029, 38.437478],\n      [-78.138213, 38.437833],\n      [-78.13673, 38.438732],\n      [-78.135769, 38.439493],\n      [-78.133667, 38.441543],\n      [-78.13309, 38.442092],\n      [-78.132637, 38.442565],\n      [-78.131362, 38.443807],\n      [-78.131197, 38.443972],\n      [-78.13069, 38.444456],\n      [-78.13004, 38.445093],\n      [-78.129654, 38.445515],\n      [-78.129431, 38.445788],\n      [-78.129306, 38.445939],\n      [-78.129135, 38.446147],\n      [-78.126535, 38.449414],\n      [-78.12559, 38.450596],\n      [-78.124937, 38.451403],\n      [-78.12463, 38.451786],\n      [-78.122999, 38.453819],\n      [-78.12268, 38.454222],\n      [-78.122212, 38.454799],\n      [-78.122012, 38.455018],\n      [-78.121815, 38.455209],\n      [-78.121657, 38.455346],\n      [-78.121484, 38.455481],\n      [-78.121283, 38.455622],\n      [-78.121072, 38.455755],\n      [-78.120838, 38.455889],\n      [-78.120605, 38.456007],\n      [-78.120411, 38.456093],\n      [-78.120081, 38.45622],\n      [-78.11988, 38.456286],\n      [-78.119617, 38.456362],\n      [-78.119481, 38.456395],\n      [-78.119029, 38.456484],\n      [-78.118859, 38.456513],\n      [-78.118556, 38.456543],\n      [-78.118252, 38.456558],\n      [-78.117886, 38.45656],\n      [-78.117582, 38.456545],\n      [-78.117215, 38.456509],\n      [-78.11691, 38.456463],\n      [-78.116669, 38.456417],\n      [-78.116299, 38.456332],\n      [-78.114395, 38.455867],\n      [-78.113075, 38.455549],\n      [-78.112183, 38.455337],\n      [-78.111983, 38.455288],\n      [-78.110622, 38.454956],\n      [-78.109647, 38.454713],\n      [-78.109318, 38.454619],\n      [-78.108646, 38.454427],\n      [-78.108148, 38.454266],\n      [-78.107826, 38.454152],\n      [-78.107433, 38.454006],\n      [-78.106215, 38.453523],\n      [-78.103244, 38.452284],\n      [-78.103113, 38.45223],\n      [-78.101465, 38.451517],\n      [-78.100793, 38.451267],\n      [-78.099999, 38.450965],\n      [-78.099633, 38.450843],\n      [-78.099366, 38.450762],\n      [-78.098981, 38.450649],\n      [-78.098604, 38.450547],\n      [-78.098262, 38.45046],\n      [-78.09792, 38.450384],\n      [-78.096808, 38.450181],\n      [-78.096151, 38.450083],\n      [-78.095446, 38.449969],\n      [-78.093727, 38.449707],\n      [-78.092677, 38.449547],\n      [-78.092158, 38.449481],\n      [-78.091766, 38.449445],\n      [-78.091635, 38.449437],\n      [-78.091391, 38.44943],\n      [-78.09088, 38.449437],\n      [-78.090541, 38.449459],\n      [-78.090154, 38.449505],\n      [-78.090027, 38.449526],\n      [-78.089761, 38.44957],\n      [-78.089091, 38.449707],\n      [-78.08849, 38.449845],\n      [-78.087312, 38.450134],\n      [-78.086546, 38.450314],\n      [-78.086092, 38.450427],\n      [-78.085716, 38.450516],\n      [-78.085217, 38.45064],\n      [-78.083614, 38.45102],\n      [-78.082588, 38.451268],\n      [-78.081682, 38.451496],\n      [-78.080934, 38.451707],\n      [-78.080808, 38.451743],\n      [-78.080252, 38.451928],\n      [-78.080061, 38.451995],\n      [-78.079356, 38.452244],\n      [-78.079056, 38.452366],\n      [-78.077758, 38.452899],\n      [-78.07693, 38.453218],\n      [-78.07648, 38.453363],\n      [-78.075972, 38.453504],\n      [-78.075519, 38.453613],\n      [-78.075245, 38.453672],\n      [-78.074633, 38.453773],\n      [-78.073634, 38.453917],\n      [-78.073086, 38.453985],\n      [-78.071708, 38.454165],\n      [-78.070367, 38.45434],\n      [-78.069606, 38.454439],\n      [-78.065196, 38.455001],\n      [-78.0636, 38.455212],\n      [-78.062967, 38.455296],\n      [-78.062279, 38.455383],\n      [-78.061807, 38.45545],\n      [-78.061375, 38.455516],\n      [-78.060496, 38.455651],\n      [-78.059099, 38.455874],\n      [-78.058415, 38.455997],\n      [-78.057861, 38.456107],\n      [-78.057398, 38.456211],\n      [-78.057094, 38.456284],\n      [-78.055369, 38.456762],\n      [-78.054558, 38.456978],\n      [-78.05416, 38.457057],\n      [-78.053923, 38.4571],\n      [-78.053692, 38.457137],\n      [-78.053464, 38.457172],\n      [-78.052965, 38.457229],\n      [-78.052547, 38.457266],\n      [-78.05168, 38.457327],\n      [-78.051381, 38.457343],\n      [-78.051209, 38.457356],\n      [-78.050231, 38.457415],\n      [-78.049522, 38.45745],\n      [-78.049115, 38.457457],\n      [-78.048707, 38.45745],\n      [-78.048107, 38.457414],\n      [-78.046583, 38.457296],\n      [-78.045473, 38.457209],\n      [-78.043615, 38.457066],\n      [-78.04299, 38.457014],\n      [-78.041948, 38.456934],\n      [-78.041564, 38.4569],\n      [-78.040447, 38.456809],\n      [-78.039807, 38.456752],\n      [-78.039565, 38.456722],\n      [-78.038614, 38.456586],\n      [-78.037992, 38.45648],\n      [-78.036619, 38.456229],\n      [-78.036312, 38.456174],\n      [-78.035316, 38.455996],\n      [-78.033993, 38.455756],\n      [-78.033455, 38.455659],\n      [-78.032995, 38.455576],\n      [-78.032344, 38.455462],\n      [-78.032225, 38.455441],\n      [-78.032071, 38.455411],\n      [-78.031918, 38.455381],\n      [-78.030629, 38.455156],\n      [-78.030487, 38.455136],\n      [-78.02993, 38.455035],\n      [-78.029397, 38.454939],\n      [-78.027154, 38.454551],\n      [-78.026507, 38.454439],\n      [-78.026143, 38.454368],\n      [-78.025005, 38.454171],\n      [-78.024336, 38.45404],\n      [-78.023622, 38.453878],\n      [-78.02312, 38.453727],\n      [-78.02273, 38.453603],\n      [-78.022384, 38.453473],\n      [-78.021945, 38.453293],\n      [-78.021688, 38.453179],\n      [-78.02141, 38.45304],\n      [-78.020949, 38.452794],\n      [-78.020606, 38.452593],\n      [-78.018376, 38.451156],\n      [-78.015052, 38.449001],\n      [-78.013038, 38.447702],\n      [-78.012718, 38.447476],\n      [-78.012365, 38.447314],\n      [-78.011913, 38.44707],\n      [-78.011467, 38.446849],\n      [-78.011017, 38.446646],\n      [-78.010785, 38.446548],\n      [-78.01041, 38.446389],\n      [-78.009947, 38.446212],\n      [-78.009475, 38.446047],\n      [-78.009032, 38.44592],\n      [-78.008198, 38.445668],\n      [-78.007806, 38.445574],\n      [-78.007536, 38.445509],\n      [-78.00704, 38.445404],\n      [-78.006541, 38.445314],\n      [-78.006039, 38.445234],\n      [-78.005535, 38.445168],\n      [-78.004882, 38.445103],\n      [-78.00427, 38.44506],\n      [-78.003857, 38.445042],\n      [-78.003259, 38.445032],\n      [-77.996098, 38.445039],\n      [-77.995524, 38.445052],\n      [-77.995083, 38.445072],\n      [-77.9946, 38.445108],\n      [-77.994291, 38.44514],\n      [-77.994119, 38.445159],\n      [-77.993562, 38.445235],\n      [-77.993077, 38.445314],\n      [-77.992738, 38.44538],\n      [-77.992304, 38.445476],\n      [-77.991774, 38.445609],\n      [-77.991277, 38.445754],\n      [-77.990885, 38.44588],\n      [-77.990401, 38.446049],\n      [-77.989902, 38.446248],\n      [-77.98951, 38.446417],\n      [-77.989127, 38.446595],\n      [-77.988671, 38.446826],\n      [-77.988226, 38.44707],\n      [-77.988015, 38.447193],\n      [-77.987964, 38.447222],\n      [-77.986229, 38.448266],\n      [-77.982377, 38.450578],\n      [-77.980067, 38.451965],\n      [-77.978396, 38.452971],\n      [-77.976723, 38.453978],\n      [-77.971729, 38.456974],\n      [-77.970854, 38.457513],\n      [-77.970447, 38.457776],\n      [-77.969812, 38.458205],\n      [-77.969672, 38.458304],\n      [-77.969294, 38.458571],\n      [-77.968878, 38.458872],\n      [-77.968162, 38.459423],\n      [-77.967696, 38.459799],\n      [-77.967125, 38.46028],\n      [-77.966325, 38.460982],\n      [-77.965258, 38.461918],\n      [-77.964866, 38.462267],\n      [-77.960196, 38.466376],\n      [-77.955939, 38.470123],\n      [-77.954947, 38.470996],\n      [-77.954533, 38.471358],\n      [-77.953922, 38.471893],\n      [-77.953458, 38.472304],\n      [-77.953176, 38.472548],\n      [-77.952583, 38.473072],\n      [-77.951119, 38.474355],\n      [-77.950943, 38.474509],\n      [-77.949669, 38.47563],\n      [-77.948949, 38.476265],\n      [-77.948002, 38.477098],\n      [-77.940672, 38.483548],\n      [-77.940481, 38.483731],\n      [-77.940188, 38.484012],\n      [-77.939893, 38.484318],\n      [-77.939484, 38.484776],\n      [-77.93926, 38.485054],\n      [-77.939039, 38.48534],\n      [-77.938835, 38.485618],\n      [-77.938574, 38.486003],\n      [-77.938385, 38.4863],\n      [-77.938154, 38.486695],\n      [-77.936929, 38.489071],\n      [-77.936476, 38.48995],\n      [-77.936307, 38.490277],\n      [-77.936213, 38.490449],\n      [-77.936032, 38.490779],\n      [-77.935797, 38.491168],\n      [-77.935515, 38.491593],\n      [-77.935238, 38.491981],\n      [-77.934904, 38.492412],\n      [-77.934836, 38.492493],\n      [-77.93462, 38.492753],\n      [-77.934238, 38.493183],\n      [-77.933985, 38.493449],\n      [-77.933681, 38.493753],\n      [-77.933395, 38.494018],\n      [-77.933018, 38.494354],\n      [-77.932749, 38.494585],\n      [-77.932252, 38.494973],\n      [-77.93171, 38.495374],\n      [-77.931341, 38.495628],\n      [-77.930966, 38.495866],\n      [-77.930194, 38.496327],\n      [-77.929795, 38.496546],\n      [-77.929468, 38.496713],\n      [-77.928898, 38.496989],\n      [-77.928401, 38.497211],\n      [-77.927814, 38.497454],\n      [-77.927352, 38.49763],\n      [-77.926883, 38.497792],\n      [-77.92627, 38.497988],\n      [-77.925745, 38.498139],\n      [-77.925688, 38.498154],\n      [-77.925207, 38.498279],\n      [-77.924635, 38.498412],\n      [-77.924059, 38.498531],\n      [-77.923478, 38.498637],\n      [-77.923244, 38.498675],\n      [-77.9209, 38.499106],\n      [-77.920407, 38.499196],\n      [-77.916265, 38.499951],\n      [-77.914897, 38.500194],\n      [-77.913262, 38.500498],\n      [-77.912906, 38.500563],\n      [-77.911059, 38.5009],\n      [-77.910401, 38.501012],\n      [-77.909308, 38.501222],\n      [-77.90816, 38.501425],\n      [-77.906956, 38.501647],\n      [-77.902649, 38.502433],\n      [-77.901836, 38.502578],\n      [-77.901383, 38.502661],\n      [-77.899056, 38.503088],\n      [-77.897887, 38.503302],\n      [-77.896932, 38.503454],\n      [-77.896481, 38.503514],\n      [-77.896026, 38.50356],\n      [-77.89557, 38.503592],\n      [-77.895091, 38.503613],\n      [-77.894605, 38.503621],\n      [-77.894338, 38.503619],\n      [-77.894023, 38.503612],\n      [-77.893539, 38.503589],\n      [-77.893152, 38.50356],\n      [-77.891645, 38.503392],\n      [-77.891145, 38.503351],\n      [-77.890705, 38.503331],\n      [-77.890264, 38.503325],\n      [-77.89, 38.503328],\n      [-77.889421, 38.503346],\n      [-77.888918, 38.503375],\n      [-77.888578, 38.503406],\n      [-77.888318, 38.503429],\n      [-77.887823, 38.50349],\n      [-77.887334, 38.503566],\n      [-77.886849, 38.503655],\n      [-77.886369, 38.503759],\n      [-77.885701, 38.503929],\n      [-77.88504, 38.504114],\n      [-77.883872, 38.504451],\n      [-77.882026, 38.504972],\n      [-77.880726, 38.50535],\n      [-77.879756, 38.505628],\n      [-77.879416, 38.505726],\n      [-77.878734, 38.505916],\n      [-77.87665, 38.506514],\n      [-77.873295, 38.507467],\n      [-77.870872, 38.508164],\n      [-77.867574, 38.509112],\n      [-77.86643, 38.509426],\n      [-77.865139, 38.509804],\n      [-77.864878, 38.509875],\n      [-77.864614, 38.509946],\n      [-77.864004, 38.510124],\n      [-77.863963, 38.510136],\n      [-77.863243, 38.510359],\n      [-77.862776, 38.510515],\n      [-77.862313, 38.51068],\n      [-77.86153, 38.510992],\n      [-77.86091, 38.511252],\n      [-77.860341, 38.511504],\n      [-77.860101, 38.511597],\n      [-77.859873, 38.511706],\n      [-77.859049, 38.512033],\n      [-77.858596, 38.512199],\n      [-77.85801, 38.512393],\n      [-77.85641, 38.512859],\n      [-77.85546, 38.513131],\n      [-77.853636, 38.513652],\n      [-77.852939, 38.513842],\n      [-77.85189, 38.514117],\n      [-77.851773, 38.514147],\n      [-77.851155, 38.514282],\n      [-77.850783, 38.514355],\n      [-77.850158, 38.514468],\n      [-77.849529, 38.514566],\n      [-77.848611, 38.514673],\n      [-77.847601, 38.514814],\n      [-77.847219, 38.514874],\n      [-77.846744, 38.514961],\n      [-77.846275, 38.515063],\n      [-77.845622, 38.515227],\n      [-77.843493, 38.515828],\n      [-77.840926, 38.516554],\n      [-77.838953, 38.517123],\n      [-77.838611, 38.51724],\n      [-77.838276, 38.51737],\n      [-77.838087, 38.517452],\n      [-77.837878, 38.517559],\n      [-77.837641, 38.517698],\n      [-77.837371, 38.517879],\n      [-77.837159, 38.518042],\n      [-77.836631, 38.518508],\n      [-77.833939, 38.52107],\n      [-77.833536, 38.521444],\n      [-77.832859, 38.52207],\n      [-77.832618, 38.52227],\n      [-77.832363, 38.52246],\n      [-77.832151, 38.522605],\n      [-77.831761, 38.52284],\n      [-77.831645, 38.522905],\n      [-77.831341, 38.523059],\n      [-77.831027, 38.523201],\n      [-77.830705, 38.52333],\n      [-77.830375, 38.523446],\n      [-77.82725, 38.524408],\n      [-77.825282, 38.525005],\n      [-77.824825, 38.525153],\n      [-77.824766, 38.525172],\n      [-77.82414, 38.525403],\n      [-77.823904, 38.525501],\n      [-77.823444, 38.525707],\n      [-77.823161, 38.525842],\n      [-77.822816, 38.526023],\n      [-77.822483, 38.526216],\n      [-77.82216, 38.526429],\n      [-77.821905, 38.526618],\n      [-77.821824, 38.526681],\n      [-77.821661, 38.526816],\n      [-77.82143, 38.527024],\n      [-77.821026, 38.527454],\n      [-77.820758, 38.527783],\n      [-77.820516, 38.528112],\n      [-77.820197, 38.52856],\n      [-77.819895, 38.529029],\n      [-77.81945, 38.529798],\n      [-77.818541, 38.531386],\n      [-77.817476, 38.533249],\n      [-77.817174, 38.533749],\n      [-77.815779, 38.536111],\n      [-77.812836, 38.541042],\n      [-77.812145, 38.542152],\n      [-77.811443, 38.543345],\n      [-77.81107, 38.543916],\n      [-77.809169, 38.54677],\n      [-77.807061, 38.549912],\n      [-77.805801, 38.55177],\n      [-77.803189, 38.555743],\n      [-77.802664, 38.55653],\n      [-77.802442, 38.556869],\n      [-77.802253, 38.557175],\n      [-77.802079, 38.557492],\n      [-77.801838, 38.557971],\n      [-77.801782, 38.55809],\n      [-77.801657, 38.55838],\n      [-77.801522, 38.558722],\n      [-77.801429, 38.558994],\n      [-77.801302, 38.559432],\n      [-77.801209, 38.559822],\n      [-77.801144, 38.560169],\n      [-77.801065, 38.560727],\n      [-77.801025, 38.56131],\n      [-77.801027, 38.561813],\n      [-77.801049, 38.562487],\n      [-77.801069, 38.562893],\n      [-77.801213, 38.565749],\n      [-77.801305, 38.567636],\n      [-77.80137, 38.568961],\n      [-77.801541, 38.572402],\n      [-77.801599, 38.573623],\n      [-77.801669, 38.575224],\n      [-77.801707, 38.575829],\n      [-77.801772, 38.577117],\n      [-77.801874, 38.579138],\n      [-77.801902, 38.579759],\n      [-77.801914, 38.579914],\n      [-77.801945, 38.580642],\n      [-77.801977, 38.581198],\n      [-77.802036, 38.582417],\n      [-77.802118, 38.584113],\n      [-77.802126, 38.584391],\n      [-77.802131, 38.584986],\n      [-77.802118, 38.585525],\n      [-77.802088, 38.586052],\n      [-77.802017, 38.586791],\n      [-77.801743, 38.589112],\n      [-77.801725, 38.589268],\n      [-77.801437, 38.591698],\n      [-77.801342, 38.5925],\n      [-77.801281, 38.593006],\n      [-77.800994, 38.595455],\n      [-77.800644, 38.598437],\n      [-77.800492, 38.599704],\n      [-77.800457, 38.599972],\n      [-77.800268, 38.601612],\n      [-77.800209, 38.602305],\n      [-77.80017, 38.602992],\n      [-77.800152, 38.603904],\n      [-77.800152, 38.604035],\n      [-77.800152, 38.604483],\n      [-77.800172, 38.60559],\n      [-77.800187, 38.606551],\n      [-77.800205, 38.607644],\n      [-77.80022, 38.608813],\n      [-77.800237, 38.609384],\n      [-77.800232, 38.610093],\n      [-77.800248, 38.611162],\n      [-77.80027, 38.611781],\n      [-77.800276, 38.611972],\n      [-77.800298, 38.612639],\n      [-77.800312, 38.613039],\n      [-77.800332, 38.613399],\n      [-77.800397, 38.614527],\n      [-77.800421, 38.615203],\n      [-77.800432, 38.61575],\n      [-77.800444, 38.616559],\n      [-77.800478, 38.618723],\n      [-77.8005, 38.619601],\n      [-77.800525, 38.620811],\n      [-77.800527, 38.620908],\n      [-77.800548, 38.62192],\n      [-77.80058, 38.623403],\n      [-77.800594, 38.624213],\n      [-77.800603, 38.625413],\n      [-77.80062, 38.627386],\n      [-77.800629, 38.627856],\n      [-77.800651, 38.62934],\n      [-77.800658, 38.629863],\n      [-77.800688, 38.631295],\n      [-77.800701, 38.63219],\n      [-77.800708, 38.632656],\n      [-77.800729, 38.632937],\n      [-77.800749, 38.6331],\n      [-77.800764, 38.633194],\n      [-77.800824, 38.633493],\n      [-77.8009, 38.63375],\n      [-77.801033, 38.634132],\n      [-77.801091, 38.634277],\n      [-77.801339, 38.634852],\n      [-77.801526, 38.635289],\n      [-77.801703, 38.635692],\n      [-77.801752, 38.635808],\n      [-77.801965, 38.636295],\n      [-77.802897, 38.638462],\n      [-77.802996, 38.638693],\n      [-77.803206, 38.639174],\n      [-77.803351, 38.639505],\n      [-77.803635, 38.640158],\n      [-77.803774, 38.640485],\n      [-77.80405, 38.641121],\n      [-77.804137, 38.641325],\n      [-77.804199, 38.641471],\n      [-77.804367, 38.641868],\n      [-77.804398, 38.641941],\n      [-77.804535, 38.642359],\n      [-77.804602, 38.642621],\n      [-77.804642, 38.642832],\n      [-77.804669, 38.643038],\n      [-77.804677, 38.643118],\n      [-77.804687, 38.643291],\n      [-77.804696, 38.643722],\n      [-77.804696, 38.644409],\n      [-77.804677, 38.644766],\n      [-77.804636, 38.645023],\n      [-77.804576, 38.645279],\n      [-77.804498, 38.645531],\n      [-77.804445, 38.645671],\n      [-77.804179, 38.646296],\n      [-77.803976, 38.646795],\n      [-77.803645, 38.647584],\n      [-77.803607, 38.647672],\n      [-77.803037, 38.649027],\n      [-77.802582, 38.650099],\n      [-77.802488, 38.65032],\n      [-77.80226, 38.650816],\n      [-77.802226, 38.650891],\n      [-77.801705, 38.651973],\n      [-77.801524, 38.652348],\n      [-77.800517, 38.654435],\n      [-77.800311, 38.654856],\n      [-77.800109, 38.655223],\n      [-77.799504, 38.656216],\n      [-77.799258, 38.656629],\n      [-77.799064, 38.656995],\n      [-77.798952, 38.657238],\n      [-77.798593, 38.658126],\n      [-77.798524, 38.658287],\n      [-77.798395, 38.658591],\n      [-77.798266, 38.658901],\n      [-77.798049, 38.659428],\n      [-77.797829, 38.659963],\n      [-77.79736, 38.661105],\n      [-77.797075, 38.661795],\n      [-77.796724, 38.662641],\n      [-77.79625, 38.663783],\n      [-77.796094, 38.664161],\n      [-77.795637, 38.665271],\n      [-77.79528, 38.666132],\n      [-77.795248, 38.66621],\n      [-77.794069, 38.669063],\n      [-77.793674, 38.670024],\n      [-77.793379, 38.670723],\n      [-77.793244, 38.671036],\n      [-77.793103, 38.671307],\n      [-77.792943, 38.671571],\n      [-77.792813, 38.671755],\n      [-77.792641, 38.671968],\n      [-77.792454, 38.672174],\n      [-77.792251, 38.672371],\n      [-77.791496, 38.673047],\n      [-77.791134, 38.673372],\n      [-77.790643, 38.673809],\n      [-77.789269, 38.675032],\n      [-77.788765, 38.675507],\n      [-77.788692, 38.675576],\n      [-77.788181, 38.676104],\n      [-77.787807, 38.676549],\n      [-77.787668, 38.676743],\n      [-77.787501, 38.677031],\n      [-77.78738, 38.677265],\n      [-77.78733, 38.677383],\n      [-77.787232, 38.677659],\n      [-77.787165, 38.677911],\n      [-77.787115, 38.678177],\n      [-77.787085, 38.678445],\n      [-77.787079, 38.678552],\n      [-77.787095, 38.67913],\n      [-77.787153, 38.679798],\n      [-77.787259, 38.680924],\n      [-77.787331, 38.681886],\n      [-77.787363, 38.682419],\n      [-77.787413, 38.683635],\n      [-77.787401, 38.684203],\n      [-77.787392, 38.684611],\n      [-77.78735, 38.685019],\n      [-77.787315, 38.685264],\n      [-77.787231, 38.685728],\n      [-77.787136, 38.686251],\n      [-77.787114, 38.686332],\n      [-77.78692, 38.686986],\n      [-77.786696, 38.687619],\n      [-77.786501, 38.688074],\n      [-77.786277, 38.68855],\n      [-77.786098, 38.688888],\n      [-77.785944, 38.689154],\n      [-77.785576, 38.689748],\n      [-77.784818, 38.690938],\n      [-77.784516, 38.691425],\n      [-77.784271, 38.691807],\n      [-77.783827, 38.692506],\n      [-77.783401, 38.6932],\n      [-77.783246, 38.693444],\n      [-77.782384, 38.694802],\n      [-77.782205, 38.695084],\n      [-77.781593, 38.696059],\n      [-77.781243, 38.69667],\n      [-77.78108, 38.696994],\n      [-77.780923, 38.697347],\n      [-77.780812, 38.697637],\n      [-77.780687, 38.698004],\n      [-77.780614, 38.698231],\n      [-77.780587, 38.698314],\n      [-77.780392, 38.699181],\n      [-77.780333, 38.699659],\n      [-77.780298, 38.700094],\n      [-77.780287, 38.700389],\n      [-77.780289, 38.700757],\n      [-77.780315, 38.701452],\n      [-77.780365, 38.702797],\n      [-77.780397, 38.703509],\n      [-77.780462, 38.705131],\n      [-77.780535, 38.706895],\n      [-77.780587, 38.708144],\n      [-77.780612, 38.708911],\n      [-77.780675, 38.710324],\n      [-77.780782, 38.713019],\n      [-77.780806, 38.713639],\n      [-77.780906, 38.716128],\n      [-77.780923, 38.716557],\n      [-77.780985, 38.71812],\n      [-77.781094, 38.720811],\n      [-77.781111, 38.721348],\n      [-77.78117, 38.722771],\n      [-77.781205, 38.723428],\n      [-77.781207, 38.723933],\n      [-77.781141, 38.724638],\n      [-77.781062, 38.725028],\n      [-77.780986, 38.725313],\n      [-77.780873, 38.725651],\n      [-77.780799, 38.725838],\n      [-77.780763, 38.72593],\n      [-77.780608, 38.726258],\n      [-77.780457, 38.726537],\n      [-77.78029, 38.726814],\n      [-77.780067, 38.727137],\n      [-77.779841, 38.727426],\n      [-77.779593, 38.727712],\n      [-77.779535, 38.727773],\n      [-77.779432, 38.727882],\n      [-77.779137, 38.728163],\n      [-77.778889, 38.728379],\n      [-77.778564, 38.728638],\n      [-77.777988, 38.729064],\n      [-77.777903, 38.729128],\n      [-77.777813, 38.729195],\n      [-77.777751, 38.72924],\n      [-77.777544, 38.729395],\n      [-77.776507, 38.73018],\n      [-77.77534, 38.731069],\n      [-77.775049, 38.73127],\n      [-77.774364, 38.73177],\n      [-77.774051, 38.732009],\n      [-77.773303, 38.732554],\n      [-77.772496, 38.733155],\n      [-77.772444, 38.733192],\n      [-77.771424, 38.733941],\n      [-77.770375, 38.73472],\n      [-77.769774, 38.735166],\n      [-77.766501, 38.737595],\n      [-77.766092, 38.7379],\n      [-77.766013, 38.737957],\n      [-77.764613, 38.738973],\n      [-77.763699, 38.739647],\n      [-77.760294, 38.742188],\n      [-77.759475, 38.742805],\n      [-77.758292, 38.743704],\n      [-77.757242, 38.744507],\n      [-77.756734, 38.744888],\n      [-77.75607, 38.745394],\n      [-77.755332, 38.74595],\n      [-77.753869, 38.747051],\n      [-77.753512, 38.747317],\n      [-77.752239, 38.748266],\n      [-77.751486, 38.748835],\n      [-77.749304, 38.750477],\n      [-77.747696, 38.751677],\n      [-77.747175, 38.752069],\n      [-77.746636, 38.752468],\n      [-77.746089, 38.752858],\n      [-77.745719, 38.753113],\n      [-77.745109, 38.753534],\n      [-77.744529, 38.753946],\n      [-77.744441, 38.754016],\n      [-77.743143, 38.755039],\n      [-77.742369, 38.755648],\n      [-77.741019, 38.756723],\n      [-77.740302, 38.757289],\n      [-77.74012, 38.757439],\n      [-77.739869, 38.757633],\n      [-77.739452, 38.757933],\n      [-77.738896, 38.758325],\n      [-77.738458, 38.758616],\n      [-77.737994, 38.758912],\n      [-77.737675, 38.759109],\n      [-77.736928, 38.759546],\n      [-77.736529, 38.759764],\n      [-77.73598, 38.760062],\n      [-77.735512, 38.760302],\n      [-77.734641, 38.760749],\n      [-77.731871, 38.762168],\n      [-77.730354, 38.762946],\n      [-77.726563, 38.764904],\n      [-77.726297, 38.765042],\n      [-77.725494, 38.765462],\n      [-77.724993, 38.765717],\n      [-77.724283, 38.76606],\n      [-77.724155, 38.766114],\n      [-77.723683, 38.766274],\n      [-77.723631, 38.766287],\n      [-77.723461, 38.76633],\n      [-77.723208, 38.766384],\n      [-77.722948, 38.766425],\n      [-77.722732, 38.766449],\n      [-77.722439, 38.766466],\n      [-77.722204, 38.76647],\n      [-77.721761, 38.76645],\n      [-77.721338, 38.766416],\n      [-77.720827, 38.766373],\n      [-77.71958, 38.766268],\n      [-77.718945, 38.766226],\n      [-77.71829, 38.766214],\n      [-77.717886, 38.766231],\n      [-77.717644, 38.766248],\n      [-77.717238, 38.766296],\n      [-77.716986, 38.766333],\n      [-77.716478, 38.766426],\n      [-77.715933, 38.766539],\n      [-77.71313, 38.767126],\n      [-77.71253, 38.76725],\n      [-77.711446, 38.767475],\n      [-77.711213, 38.767521],\n      [-77.709832, 38.76781],\n      [-77.709246, 38.767933],\n      [-77.708584, 38.768078],\n      [-77.708134, 38.768177],\n      [-77.707984, 38.768211],\n      [-77.707651, 38.768287],\n      [-77.707208, 38.768389],\n      [-77.707037, 38.768429],\n      [-77.706966, 38.768445],\n      [-77.706604, 38.768529],\n      [-77.705724, 38.768733],\n      [-77.704884, 38.768928],\n      [-77.704008, 38.769125],\n      [-77.703413, 38.769266],\n      [-77.703044, 38.769359],\n      [-77.702667, 38.769454],\n      [-77.702289, 38.769565],\n      [-77.701922, 38.769687],\n      [-77.701705, 38.769766],\n      [-77.701294, 38.769925],\n      [-77.700381, 38.770277],\n      [-77.698624, 38.770957],\n      [-77.69792, 38.771222],\n      [-77.696779, 38.771656],\n      [-77.696286, 38.771839],\n      [-77.694688, 38.772451],\n      [-77.693388, 38.772942],\n      [-77.69338, 38.772945],\n      [-77.69299, 38.773092],\n      [-77.691828, 38.773541],\n      [-77.689985, 38.774273],\n      [-77.689184, 38.774593],\n      [-77.687947, 38.775099],\n      [-77.68652, 38.775696],\n      [-77.686093, 38.775875],\n      [-77.685013, 38.776323],\n      [-77.684548, 38.776508],\n      [-77.683617, 38.77688],\n      [-77.682281, 38.77742],\n      [-77.681906, 38.77757],\n      [-77.680152, 38.778273],\n      [-77.680071, 38.778309],\n      [-77.679964, 38.778348],\n      [-77.67944, 38.778559],\n      [-77.679135, 38.778682],\n      [-77.679008, 38.778733],\n      [-77.678765, 38.778831],\n      [-77.678322, 38.779011],\n      [-77.677302, 38.779417],\n      [-77.677036, 38.779514],\n      [-77.676871, 38.779569],\n      [-77.676375, 38.779711],\n      [-77.675903, 38.779834],\n      [-77.675739, 38.779874],\n      [-77.675282, 38.779966],\n      [-77.675165, 38.77999],\n      [-77.673681, 38.780291],\n      [-77.67245, 38.780538],\n      [-77.671784, 38.780666],\n      [-77.671623, 38.780699],\n      [-77.671392, 38.780752],\n      [-77.670977, 38.780857],\n      [-77.67067, 38.780949],\n      [-77.669909, 38.781181],\n      [-77.669755, 38.781229],\n      [-77.668691, 38.781557],\n      [-77.668105, 38.781729],\n      [-77.66717, 38.781984],\n      [-77.665556, 38.7824],\n      [-77.665397, 38.782443],\n      [-77.66509, 38.782528],\n      [-77.663117, 38.783041],\n      [-77.662729, 38.783142],\n      [-77.658982, 38.784122],\n      [-77.658234, 38.784318],\n      [-77.657487, 38.784515],\n      [-77.656903, 38.784668],\n      [-77.656444, 38.784785],\n      [-77.655772, 38.784954],\n      [-77.655488, 38.785028],\n      [-77.654149, 38.78538],\n      [-77.653073, 38.785665],\n      [-77.652817, 38.785732],\n      [-77.652723, 38.785757],\n      [-77.652335, 38.78586],\n      [-77.650432, 38.786358],\n      [-77.650292, 38.786394],\n      [-77.648546, 38.786845],\n      [-77.648132, 38.786953],\n      [-77.6471, 38.787217],\n      [-77.646912, 38.787266],\n      [-77.646792, 38.787296],\n      [-77.646475, 38.787378],\n      [-77.643862, 38.788066],\n      [-77.643514, 38.788151],\n      [-77.642956, 38.788288],\n      [-77.641845, 38.788545],\n      [-77.641256, 38.788678],\n      [-77.640668, 38.788812],\n      [-77.637878, 38.789456],\n      [-77.637724, 38.789491],\n      [-77.635026, 38.790112],\n      [-77.633026, 38.790572],\n      [-77.631672, 38.790883],\n      [-77.630391, 38.791179],\n      [-77.630168, 38.791231],\n      [-77.629412, 38.791414],\n      [-77.629006, 38.791523],\n      [-77.628982, 38.791529],\n      [-77.628275, 38.791722],\n      [-77.626219, 38.792284],\n      [-77.625465, 38.792483],\n      [-77.624741, 38.792675],\n      [-77.624567, 38.792721],\n      [-77.624468, 38.792748],\n      [-77.624067, 38.792856],\n      [-77.622821, 38.793191],\n      [-77.622323, 38.793326],\n      [-77.622182, 38.793359],\n      [-77.62157, 38.793529],\n      [-77.621412, 38.793572],\n      [-77.620477, 38.793825],\n      [-77.620443, 38.793835],\n      [-77.619193, 38.794171],\n      [-77.619018, 38.794213],\n      [-77.617763, 38.794556],\n      [-77.617092, 38.79473],\n      [-77.616747, 38.794832],\n      [-77.614017, 38.7956],\n      [-77.613309, 38.7958],\n      [-77.613097, 38.795859],\n      [-77.611965, 38.796178],\n      [-77.611011, 38.796432],\n      [-77.609519, 38.79683],\n      [-77.609066, 38.796955],\n      [-77.60887, 38.79701],\n      [-77.608124, 38.797223],\n      [-77.607861, 38.79729],\n      [-77.60659, 38.797608],\n      [-77.604759, 38.798106],\n      [-77.603341, 38.798433],\n      [-77.602615, 38.798623],\n      [-77.60217, 38.798681],\n      [-77.60178, 38.798726],\n      [-77.60159, 38.798739],\n      [-77.601338, 38.79876],\n      [-77.601043, 38.798748],\n      [-77.600761, 38.798726],\n      [-77.600475, 38.798685],\n      [-77.600088, 38.798626],\n      [-77.598701, 38.798329],\n      [-77.598447, 38.798288],\n      [-77.598168, 38.798263],\n      [-77.597945, 38.798266],\n      [-77.597733, 38.798267],\n      [-77.597515, 38.798295],\n      [-77.597295, 38.798329],\n      [-77.59709, 38.79838],\n      [-77.596838, 38.798472],\n      [-77.596056, 38.79873],\n      [-77.595792, 38.798802],\n      [-77.595557, 38.798839],\n      [-77.595321, 38.798872],\n      [-77.595123, 38.798893],\n      [-77.594903, 38.798906],\n      [-77.594606, 38.798902],\n      [-77.592349, 38.798571],\n      [-77.589853, 38.798246],\n      [-77.587564, 38.797961],\n      [-77.584659, 38.797708],\n      [-77.583518, 38.797592],\n      [-77.582596, 38.797507],\n      [-77.581727, 38.797465],\n      [-77.580645, 38.797422],\n      [-77.579853, 38.797408],\n      [-77.579381, 38.797391],\n      [-77.579328, 38.797391],\n      [-77.578346, 38.797391],\n      [-77.576989, 38.797404],\n      [-77.576007, 38.797446],\n      [-77.575373, 38.797504],\n      [-77.571144, 38.797797],\n      [-77.569287, 38.79792],\n      [-77.56555, 38.798187],\n      [-77.561659, 38.798447],\n      [-77.555891, 38.7988],\n      [-77.553755, 38.798951],\n      [-77.550887, 38.799152],\n      [-77.550295, 38.799193],\n      [-77.548407, 38.799331],\n      [-77.54595, 38.799494],\n      [-77.541063, 38.799812],\n      [-77.539341, 38.799946],\n      [-77.536546, 38.800151],\n      [-77.532281, 38.800448],\n      [-77.529135, 38.800667],\n      [-77.525861, 38.800895],\n      [-77.523173, 38.801079],\n      [-77.520134, 38.801324],\n      [-77.519426, 38.801374],\n      [-77.518588, 38.801436],\n      [-77.514662, 38.801698],\n      [-77.51275, 38.801833],\n      [-77.512257, 38.801883],\n      [-77.51176, 38.801949],\n      [-77.511242, 38.802033],\n      [-77.510728, 38.802133],\n      [-77.510237, 38.802245],\n      [-77.509757, 38.802371],\n      [-77.509283, 38.802511],\n      [-77.508762, 38.802686],\n      [-77.508249, 38.802874],\n      [-77.503238, 38.804849],\n      [-77.501867, 38.805383],\n      [-77.49854, 38.806696],\n      [-77.492854, 38.808929],\n      [-77.492586, 38.809039],\n      [-77.491408, 38.809499],\n      [-77.490728, 38.809768],\n      [-77.490387, 38.809903],\n      [-77.489846, 38.810125],\n      [-77.48976, 38.810159],\n      [-77.489588, 38.810228],\n      [-77.488128, 38.810814],\n      [-77.487975, 38.810876],\n      [-77.487938, 38.810891],\n      [-77.487614, 38.811027],\n      [-77.486889, 38.811312],\n      [-77.485515, 38.811841],\n      [-77.481021, 38.813606],\n      [-77.480031, 38.813987],\n      [-77.479528, 38.81418],\n      [-77.478278, 38.814671],\n      [-77.477784, 38.814859],\n      [-77.476696, 38.815283],\n      [-77.476308, 38.815444],\n      [-77.470849, 38.817587],\n      [-77.469997, 38.817934],\n      [-77.469107, 38.818314],\n      [-77.468263, 38.818692],\n      [-77.467788, 38.818912],\n      [-77.466824, 38.819384],\n      [-77.466481, 38.819559],\n      [-77.465978, 38.819814],\n      [-77.465888, 38.819862],\n      [-77.465082, 38.820299],\n      [-77.464689, 38.820516],\n      [-77.463916, 38.820976],\n      [-77.463568, 38.821184],\n      [-77.462817, 38.82165],\n      [-77.462169, 38.822067],\n      [-77.461524, 38.822499],\n      [-77.460742, 38.823046],\n      [-77.459971, 38.823615],\n      [-77.459453, 38.824009],\n      [-77.458829, 38.824505],\n      [-77.458041, 38.825157],\n      [-77.457989, 38.825199],\n      [-77.457719, 38.825436],\n      [-77.457456, 38.825667],\n      [-77.457174, 38.825914],\n      [-77.456485, 38.82655],\n      [-77.455925, 38.827089],\n      [-77.455609, 38.827408],\n      [-77.455354, 38.827664],\n      [-77.455286, 38.827736],\n      [-77.454763, 38.828288],\n      [-77.453687, 38.829492],\n      [-77.45117, 38.83231],\n      [-77.450091, 38.833546],\n      [-77.449603, 38.834072],\n      [-77.4484, 38.835411],\n      [-77.448317, 38.835496],\n      [-77.447073, 38.836883],\n      [-77.446568, 38.837456],\n      [-77.444983, 38.839239],\n      [-77.444962, 38.839261],\n      [-77.44448, 38.839771],\n      [-77.443925, 38.840374],\n      [-77.443121, 38.841151],\n      [-77.442523, 38.841683],\n      [-77.442048, 38.842083],\n      [-77.441563, 38.842472],\n      [-77.44121, 38.842729],\n      [-77.440835, 38.842989],\n      [-77.440353, 38.843301],\n      [-77.439357, 38.843895],\n      [-77.438808, 38.844189],\n      [-77.438412, 38.844388],\n      [-77.438154, 38.844513],\n      [-77.437585, 38.844773],\n      [-77.43695, 38.845042],\n      [-77.436125, 38.845358],\n      [-77.435386, 38.845611],\n      [-77.434841, 38.845778],\n      [-77.434461, 38.845886],\n      [-77.434065, 38.845989],\n      [-77.433588, 38.846102],\n      [-77.432595, 38.846311],\n      [-77.431976, 38.846424],\n      [-77.431894, 38.846439],\n      [-77.43166, 38.846482],\n      [-77.43013, 38.84677],\n      [-77.428638, 38.847052],\n      [-77.427672, 38.847201],\n      [-77.426895, 38.847336],\n      [-77.426613, 38.847387],\n      [-77.423954, 38.847868],\n      [-77.42318, 38.84802],\n      [-77.422578, 38.848129],\n      [-77.421734, 38.848284],\n      [-77.419777, 38.84865],\n      [-77.418032, 38.848977],\n      [-77.416532, 38.849246],\n      [-77.415198, 38.849482],\n      [-77.414151, 38.849672],\n      [-77.413692, 38.849756],\n      [-77.413004, 38.849886],\n      [-77.41025, 38.850388],\n      [-77.408348, 38.850725],\n      [-77.406003, 38.851167],\n      [-77.404553, 38.851419],\n      [-77.403103, 38.851676],\n      [-77.402433, 38.851803],\n      [-77.401513, 38.851954],\n      [-77.399882, 38.852249],\n      [-77.399048, 38.852319],\n      [-77.398718, 38.852375],\n      [-77.397996, 38.852492],\n      [-77.397318, 38.852624],\n      [-77.396752, 38.852714],\n      [-77.396348, 38.852749],\n      [-77.395658, 38.852767],\n      [-77.395009, 38.8528],\n      [-77.394695, 38.852837],\n      [-77.39433, 38.852891],\n      [-77.393802, 38.852984],\n      [-77.393126, 38.853114],\n      [-77.392725, 38.85318],\n      [-77.392095, 38.853297],\n      [-77.391904, 38.853339],\n      [-77.391134, 38.853478],\n      [-77.389836, 38.853723],\n      [-77.389215, 38.853845],\n      [-77.38892, 38.853895],\n      [-77.388716, 38.853941],\n      [-77.388024, 38.854062],\n      [-77.387165, 38.854196],\n      [-77.386771, 38.854162],\n      [-77.386529, 38.854111],\n      [-77.386343, 38.854055],\n      [-77.386187, 38.853987],\n      [-77.386127, 38.853954],\n      [-77.386079, 38.85392],\n      [-77.385986, 38.853839],\n      [-77.385938, 38.853785],\n      [-77.385904, 38.853738],\n      [-77.385849, 38.853638],\n      [-77.385829, 38.853585],\n      [-77.385812, 38.853521],\n      [-77.3858, 38.853402],\n      [-77.385805, 38.853336],\n      [-77.385817, 38.853271],\n      [-77.38586, 38.853155],\n      [-77.385888, 38.853105],\n      [-77.385929, 38.853047],\n      [-77.38601, 38.852959],\n      [-77.386068, 38.85291],\n      [-77.386119, 38.852873],\n      [-77.386233, 38.85281],\n      [-77.386292, 38.852784],\n      [-77.386367, 38.852757],\n      [-77.386444, 38.852736],\n      [-77.386551, 38.852715],\n      [-77.386695, 38.852705],\n      [-77.38684, 38.852711],\n      [-77.386899, 38.85272],\n      [-77.386985, 38.852739],\n      [-77.387131, 38.852784],\n      [-77.387234, 38.852827],\n      [-77.387327, 38.852872],\n      [-77.387501, 38.852977],\n      [-77.387596, 38.853046],\n      [-77.387689, 38.853125],\n      [-77.387869, 38.853301],\n      [-77.388005, 38.8535],\n      [-77.388211, 38.853861],\n      [-77.388248, 38.853958],\n      [-77.38834, 38.854202],\n      [-77.388434, 38.854509],\n      [-77.388512, 38.85483],\n      [-77.388556, 38.855045],\n      [-77.388563, 38.855077],\n      [-77.388615, 38.855398],\n      [-77.38864, 38.855726],\n      [-77.388657, 38.85606],\n      [-77.388632, 38.856494],\n      [-77.388606, 38.856728],\n      [-77.388546, 38.857062],\n      [-77.388494, 38.857283],\n      [-77.388383, 38.85759],\n      [-77.388245, 38.857898],\n      [-77.387962, 38.858392],\n      [-77.387722, 38.858713],\n      [-77.387587, 38.858842],\n      [-77.387448, 38.858992],\n      [-77.38738, 38.859049],\n      [-77.387049, 38.859315],\n      [-77.387001, 38.859355],\n      [-77.386572, 38.859616],\n      [-77.386057, 38.859876],\n      [-77.385696, 38.860037],\n      [-77.385104, 38.860297],\n      [-77.384246, 38.860678],\n      [-77.383311, 38.861091],\n      [-77.382484, 38.861549],\n      [-77.381927, 38.861964],\n      [-77.381649, 38.862271],\n      [-77.381472, 38.862656],\n      [-77.38114, 38.86254],\n      [-77.380676, 38.862336],\n      [-77.380373, 38.862167],\n      [-77.380144, 38.862016],\n      [-77.379932, 38.861857],\n      [-77.379724, 38.861669],\n      [-77.379541, 38.861495],\n      [-77.379299, 38.861256],\n      [-77.379174, 38.86114],\n      [-77.378963, 38.86097],\n      [-77.378779, 38.860822],\n      [-77.378622, 38.860715],\n      [-77.378375, 38.860584],\n      [-77.37825, 38.860526],\n      [-77.377901, 38.860354],\n      [-77.377674, 38.860258],\n      [-77.377503, 38.860194],\n      [-77.376982, 38.860031],\n      [-77.376724, 38.859968],\n      [-77.376465, 38.859908],\n      [-77.376139, 38.859843],\n      [-77.375957, 38.859809],\n      [-77.375449, 38.859704],\n      [-77.37477, 38.859591],\n      [-77.373992, 38.859482],\n      [-77.373385, 38.859411],\n      [-77.373319, 38.859405],\n      [-77.371684, 38.859251],\n      [-77.371331, 38.859226],\n      [-77.37112, 38.859211],\n      [-77.371099, 38.85942],\n      [-77.371098, 38.859619],\n      [-77.371033, 38.860102],\n      [-77.370993, 38.860407],\n      [-77.370953, 38.86073],\n      [-77.370894, 38.86095],\n      [-77.370816, 38.861165],\n      [-77.370757, 38.861296],\n      [-77.370665, 38.861443],\n      [-77.370575, 38.861587],\n      [-77.370384, 38.861875],\n      [-77.370116, 38.862301],\n      [-77.369869, 38.862675],\n      [-77.369695, 38.862937],\n      [-77.369553, 38.863149],\n      [-77.369282, 38.863562],\n      [-77.369075, 38.863878],\n      [-77.369003, 38.863978],\n      [-77.368943, 38.864053],\n      [-77.368872, 38.864143],\n      [-77.368754, 38.864281],\n      [-77.368648, 38.864383],\n      [-77.368548, 38.86448],\n      [-77.368413, 38.864611],\n      [-77.368244, 38.864751],\n      [-77.368139, 38.86483],\n      [-77.368096, 38.864859],\n      [-77.367962, 38.864949],\n      [-77.367753, 38.865087],\n      [-77.36752, 38.865221],\n      [-77.36716, 38.865425],\n      [-77.366916, 38.865565],\n      [-77.366749, 38.865664],\n      [-77.366693, 38.865696],\n      [-77.366603, 38.865757],\n      [-77.36621, 38.865941],\n      [-77.365964, 38.866096],\n      [-77.365677, 38.866275],\n      [-77.365412, 38.86648],\n      [-77.365205, 38.866666],\n      [-77.365092, 38.866802],\n      [-77.364926, 38.867027],\n      [-77.364819, 38.867215],\n      [-77.364795, 38.867271],\n      [-77.364687, 38.867526],\n      [-77.364631, 38.867731],\n      [-77.364602, 38.867885],\n      [-77.364585, 38.868103],\n      [-77.364599, 38.86833],\n      [-77.364602, 38.868416],\n      [-77.364653, 38.868646],\n      [-77.364749, 38.868903],\n      [-77.364915, 38.869232],\n      [-77.365031, 38.869489],\n      [-77.36519, 38.869811],\n      [-77.365353, 38.870145],\n      [-77.365541, 38.870577],\n      [-77.365608, 38.870714],\n      [-77.36564, 38.87078],\n      [-77.365767, 38.871048],\n      [-77.365858, 38.871232],\n      [-77.365914, 38.871335],\n      [-77.366032, 38.871546],\n      [-77.366196, 38.871805],\n      [-77.366355, 38.872046],\n      [-77.366507, 38.872259],\n      [-77.366678, 38.872501],\n      [-77.366856, 38.872754],\n      [-77.366963, 38.872925],\n      [-77.367022, 38.873039],\n      [-77.367081, 38.873163],\n      [-77.367145, 38.873344],\n      [-77.367182, 38.87346],\n      [-77.367204, 38.873534],\n      [-77.367233, 38.873695],\n      [-77.36726, 38.873889],\n      [-77.367273, 38.874003],\n      [-77.367165, 38.874012],\n      [-77.366994, 38.874012],\n      [-77.366779, 38.873999],\n      [-77.366666, 38.873986],\n      [-77.366501, 38.873968],\n      [-77.366313, 38.873934],\n      [-77.366155, 38.873897],\n      [-77.365932, 38.873832],\n      [-77.36562, 38.873728],\n      [-77.365375, 38.873647],\n      [-77.36552, 38.873752],\n      [-77.365645, 38.873824],\n      [-77.365759, 38.873875]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-along/test.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { Units, featureCollection } from \"@turf/helpers\";\nimport { along } from \"./index.js\";\nimport { Feature, LineString } from \"geojson\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst line: Feature<LineString> = loadJsonFileSync(\n  path.join(__dirname, \"test\", \"fixtures\", \"dc-line.geojson\")\n);\n\ntest(\"turf-along\", (t) => {\n  const options: { units: Units } = { units: \"miles\" };\n  const pt1 = along(line, 1, options);\n  const pt2 = along(line.geometry, 1.2, options);\n  const pt3 = along(line, 1.4, options);\n  const pt4 = along(line.geometry, 1.6, options);\n  const pt5 = along(line, 1.8, options);\n  const pt6 = along(line.geometry, 2, options);\n  const pt7 = along(line, 100, options);\n  const pt8 = along(line.geometry, 0, options);\n  const fc = featureCollection([pt1, pt2, pt3, pt4, pt5, pt6, pt7, pt8]);\n\n  fc.features.forEach((f) => {\n    t.ok(f);\n    t.equal(f.type, \"Feature\");\n    t.equal(f.geometry.type, \"Point\");\n  });\n  t.equal(fc.features.length, 8);\n  t.equal(fc.features[7].geometry.coordinates[0], pt8.geometry.coordinates[0]);\n  t.equal(fc.features[7].geometry.coordinates[1], pt8.geometry.coordinates[1]);\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-along/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-angle/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-angle/README.md",
    "content": "# @turf/angle\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## angle\n\nFinds the angle formed by two adjacent segments defined by 3 points. The result will be the (positive clockwise)\nangle with origin on the `startPoint-midPoint` segment, or its explementary angle if required.\n\n### Parameters\n\n*   `startPoint` **[Coord][1]** Start Point Coordinates\n*   `midPoint` **[Coord][1]** Mid Point Coordinates\n*   `endPoint` **[Coord][1]** End Point Coordinates\n*   `options` **[Object][2]** Optional parameters (optional, default `{}`)\n\n    *   `options.explementary` **[boolean][3]** Returns the explementary angle instead (360 - angle) (optional, default `false`)\n    *   `options.mercator` **[boolean][3]** if calculations should be performed over Mercator or WGS84 projection (optional, default `false`)\n\n### Examples\n\n```javascript\nturf.angle([5, 5], [5, 6], [3, 4]);\n//=45\n```\n\nReturns **[number][4]** Angle between the provided points, or its explementary.\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/angle\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n\n\n### Diagrams\n\n![turf-angle](diagrams/turf-angle.png)"
  },
  {
    "path": "packages/turf-angle/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { angle } from \"./index.js\";\n\n/**\n * Benchmark Results\n *\n * angle x 980,468 ops/sec ±1.30% (84 runs sampled)\n * angle -- meractor x 931,748 ops/sec ±1.27% (88 runs sampled)\n */\nnew Benchmark.Suite(\"turf-angle\")\n  .add(\"angle\", () => angle([5, 5], [5, 6], [3, 4]))\n  .add(\"angle -- mercator\", () =>\n    angle([5, 5], [5, 6], [3, 4], { mercator: true })\n  )\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-angle/index.ts",
    "content": "import { bearing } from \"@turf/bearing\";\nimport { bearingToAzimuth, Coord, isObject } from \"@turf/helpers\";\nimport { rhumbBearing } from \"@turf/rhumb-bearing\";\n\n/**\n * Finds the angle formed by two adjacent segments defined by 3 points. The result will be the (positive clockwise)\n * angle with origin on the `startPoint-midPoint` segment, or its explementary angle if required.\n *\n * @function\n * @param {Coord} startPoint Start Point Coordinates\n * @param {Coord} midPoint Mid Point Coordinates\n * @param {Coord} endPoint End Point Coordinates\n * @param {Object} [options={}] Optional parameters\n * @param {boolean} [options.explementary=false] Returns the explementary angle instead (360 - angle)\n * @param {boolean} [options.mercator=false] if calculations should be performed over Mercator or WGS84 projection\n * @returns {number} Angle between the provided points, or its explementary.\n * @example\n * turf.angle([5, 5], [5, 6], [3, 4]);\n * //=45\n */\nfunction angle(\n  startPoint: Coord,\n  midPoint: Coord,\n  endPoint: Coord,\n  options: {\n    explementary?: boolean;\n    mercator?: boolean;\n  } = {}\n): number {\n  // Optional Parameters\n  if (!isObject(options)) {\n    throw new Error(\"options is invalid\");\n  }\n\n  // Validation\n  if (!startPoint) {\n    throw new Error(\"startPoint is required\");\n  }\n  if (!midPoint) {\n    throw new Error(\"midPoint is required\");\n  }\n  if (!endPoint) {\n    throw new Error(\"endPoint is required\");\n  }\n\n  // Rename to shorter variables\n  const A = startPoint;\n  const O = midPoint;\n  const B = endPoint;\n\n  // Main\n  const azimuthOA = bearingToAzimuth(\n    options.mercator !== true ? bearing(O, A) : rhumbBearing(O, A)\n  );\n  let azimuthOB = bearingToAzimuth(\n    options.mercator !== true ? bearing(O, B) : rhumbBearing(O, B)\n  );\n  // If OB \"trails\" OA advance OB one revolution so we get the clockwise angle.\n  if (azimuthOB < azimuthOA) {\n    azimuthOB = azimuthOB + 360;\n  }\n  const angleAOB = azimuthOB - azimuthOA;\n\n  // Explementary angle\n  if (options.explementary === true) {\n    return 360 - angleAOB;\n  }\n  return angleAOB;\n}\n\nexport { angle };\nexport default angle;\n"
  },
  {
    "path": "packages/turf-angle/package.json",
    "content": "{\n  \"name\": \"@turf/angle\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Finds the angle formed by two adjacent segments.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Denis <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"angle\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/sector\": \"workspace:*\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/bearing\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/rhumb-bearing\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-angle/test.ts",
    "content": "import test from \"tape\";\nimport { point, round } from \"@turf/helpers\";\nimport { angle } from \"./index.js\";\n\ntest(\"turf-angle -- across 0 bearing\", (t) => {\n  t.equal(round(angle([-1, 1], [0, 0], [1, 1])), 90, \"90 degrees\");\n\n  t.end();\n});\n\ntest(\"turf-angle -- 90 degrees\", (t) => {\n  t.equal(\n    round(angle([124, -17], [124, -22], [131, -22]), 6),\n    91.312527,\n    \"91.312527 degrees\"\n  );\n  t.equal(\n    round(angle([124, -17], [124, -22], [131, -22], { explementary: true }), 6),\n    268.687473,\n    \"268.687473 degrees explementary\"\n  );\n  t.equal(\n    round(angle([124, -17], [124, -22], [131, -22], { mercator: true }), 6),\n    90,\n    \"90 degrees mercator\"\n  );\n  t.equal(\n    round(\n      angle([124, -17], [124, -22], [131, -22], {\n        explementary: true,\n        mercator: true,\n      }),\n      6\n    ),\n    270,\n    \"270 degrees explementary mercator\"\n  );\n  t.end();\n});\n\ntest(\"turf-angle -- 180 degrees\", (t) => {\n  t.equal(round(angle([3, -1], [2, 0], [1, 1]), 6), 180, \"180 degrees\");\n\n  t.end();\n});\n\ntest(\"turf-angle -- obtuse\", (t) => {\n  t.equal(\n    round(angle([48.5, 5.5], [51.5, 12], [59, 15.5]), 6),\n    218.715175,\n    \"218.715175 degrees\"\n  );\n  t.equal(\n    round(\n      angle([48.5, 5.5], [51.5, 12], [59, 15.5], { explementary: true }),\n      6\n    ),\n    141.284825,\n    \"141.284825 degrees explementary\"\n  );\n  t.equal(\n    round(angle([48.5, 5.5], [51.5, 12], [59, 15.5], { mercator: true }), 6),\n    219.826106,\n    \"219.826106 degrees mercator\"\n  );\n  t.equal(\n    round(\n      angle([48.5, 5.5], [51.5, 12], [59, 15.5], {\n        explementary: true,\n        mercator: true,\n      }),\n      6\n    ),\n    140.173894,\n    \"140.173894 degrees explementary mercator\"\n  );\n  t.end();\n});\n\ntest(\"turf-angle -- obtuse bigger\", (t) => {\n  t.equal(\n    round(angle([48.5, 5.5], [51.5, 12], [46.5, 19]), 6),\n    121.330117,\n    \"121.330117 degrees\"\n  );\n  t.equal(\n    round(\n      angle([48.5, 5.5], [51.5, 12], [46.5, 19], { explementary: true }),\n      6\n    ),\n    238.669883,\n    \"238.669883 degrees explementary\"\n  );\n  t.equal(\n    round(angle([48.5, 5.5], [51.5, 12], [46.5, 19], { mercator: true }), 6),\n    120.970546,\n    \"120.970546\"\n  );\n  t.equal(\n    round(\n      angle([48.5, 5.5], [51.5, 12], [46.5, 19], {\n        explementary: true,\n        mercator: true,\n      }),\n      6\n    ),\n    239.029454,\n    \"239.029454 degrees explementary mercator\"\n  );\n  t.end();\n});\n\ntest(\"turf-angle -- acute\", (t) => {\n  t.equal(\n    round(angle([48.5, 5.5], [51.5, 12], [44.5, 10.5]), 6),\n    53.608314,\n    \"53.608314 degrees\"\n  );\n  t.equal(\n    round(\n      angle([48.5, 5.5], [51.5, 12], [44.5, 10.5], { explementary: true }),\n      6\n    ),\n    306.391686,\n    \"306.391686 degrees explementary\"\n  );\n  t.equal(\n    round(angle([48.5, 5.5], [51.5, 12], [44.5, 10.5], { mercator: true }), 6),\n    53.166357,\n    \"53.166357 degrees mercator\"\n  );\n  t.equal(\n    round(\n      angle([48.5, 5.5], [51.5, 12], [44.5, 10.5], {\n        explementary: true,\n        mercator: true,\n      }),\n      6\n    ),\n    306.833643,\n    \"306.833643 degrees explementary mercator\"\n  );\n  t.end();\n});\n\ntest(\"turf-angle -- acute inverse\", (t) => {\n  t.equal(\n    round(angle([44.5, 10.5], [51.5, 12], [48.5, 5.5]), 6),\n    306.391686,\n    \"306.391686 degrees\"\n  );\n  t.equal(\n    round(\n      angle([44.5, 10.5], [51.5, 12], [48.5, 5.5], { explementary: true }),\n      6\n    ),\n    53.608314,\n    \"53.608314 degrees explementary\"\n  );\n  t.equal(\n    round(angle([44.5, 10.5], [51.5, 12], [48.5, 5.5], { mercator: true }), 6),\n    306.833643,\n    \"306.833643 degrees mercator\"\n  );\n  t.equal(\n    round(\n      angle([44.5, 10.5], [51.5, 12], [48.5, 5.5], {\n        explementary: true,\n        mercator: true,\n      }),\n      6\n    ),\n    53.166357,\n    \"53.166357 degrees explementary mercator\"\n  );\n  t.end();\n});\n\ntest(\"turf-angle -- simple\", (t) => {\n  t.equal(round(angle([5, 5], [5, 6], [3, 4])), 45, \"45 degrees\");\n  t.equal(round(angle([3, 4], [5, 6], [5, 5])), 315, \"315 degrees -- inverse\");\n  t.equal(\n    round(angle([5, 5], [5, 6], [3, 4], { explementary: true })),\n    360 - 45,\n    \"explementary angle\"\n  );\n  t.end();\n});\n\ntest(\"turf-angle -- issues\", (t) => {\n  const start = [167.72709868848324, -45.56543836343071];\n  const mid = [167.7269698586315, -45.56691059720167];\n  const end = [167.72687866352499, -45.566989345276355];\n  const a = angle(start, mid, end);\n\n  t.false(isNaN(a), \"result is not NaN\");\n  t.end();\n});\n\ntest(\"turf-angle -- throws\", (t) => {\n  const pt1 = point([-10, -30]);\n  const pt2 = point([-11, -33]);\n  const pt3 = point([-12, -36]);\n  t.throws(\n    () => angle(null, pt2, pt3),\n    /startPoint is required/,\n    \"startPoint is required\"\n  );\n  t.throws(\n    () => angle(pt1, undefined, pt3),\n    /midPoint is required/,\n    \"midPoint is required\"\n  );\n  t.throws(\n    () => angle(pt1, pt2),\n    /endPoint is required/,\n    \"endPoint is required\"\n  );\n  t.throws(\n    () => angle(pt1, pt2, pt3, \"string\"),\n    /options is invalid/,\n    \"invalid options\"\n  );\n\n  t.end();\n});\n\ntest(\"turf-angle -- 2703\", (t) => {\n  const start = [0, 1];\n  const mid = [0, 0];\n  const end = [1, 0];\n  const a = angle(start, mid, end);\n  t.equal(a, 90, \"90 clockwise\");\n\n  const start2 = [0, 1];\n  const mid2 = [0, 0];\n  const end2 = [-1, 0];\n  const a2 = angle(start2, mid2, end2);\n  t.equal(a2, 270, \"270 clockwise\");\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-angle/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-area/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-area/README.md",
    "content": "# @turf/area\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## area\n\nCalculates the geodesic area in square meters of one or more polygons.\n\n### Parameters\n\n*   `geojson` **[GeoJSON][1]** input polygon(s) as [Geometry][2], [Feature][3], or [FeatureCollection][4]\n\n### Examples\n\n```javascript\nvar polygon = turf.polygon([[[125, -15], [113, -22], [154, -27], [144, -15], [125, -15]]]);\n\nvar area = turf.area(polygon);\n\n//addToMap\nvar addToMap = [polygon]\npolygon.properties.area = area\n```\n\nReturns **[number][5]** area in square meters\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/area\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-area/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { area } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n// Define fixtures\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benmark Results\n *\n * polygon x 8,510,024 ops/sec ±0.28% (96 runs sampled)\n */\n\n// Define benchmark\nconst suite = new Benchmark.Suite(\"turf-area\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => area(geojson));\n}\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-area/index.ts",
    "content": "import { Feature, FeatureCollection, Geometry } from \"geojson\";\nimport { earthRadius } from \"@turf/helpers\";\nimport { geomReduce } from \"@turf/meta\";\n\n/**\n * Calculates the geodesic area in square meters of one or more polygons.\n *\n * @function\n * @param {GeoJSON} geojson input polygon(s) as {@link Geometry}, {@link Feature}, or {@link FeatureCollection}\n * @returns {number} area in square meters\n * @example\n * var polygon = turf.polygon([[[125, -15], [113, -22], [154, -27], [144, -15], [125, -15]]]);\n *\n * var area = turf.area(polygon);\n *\n * //addToMap\n * var addToMap = [polygon]\n * polygon.properties.area = area\n */\nfunction area(geojson: Feature<any> | FeatureCollection<any> | Geometry) {\n  return geomReduce(\n    geojson,\n    (value, geom) => {\n      return value + calculateArea(geom);\n    },\n    0\n  );\n}\n\n/**\n * Calculate Area\n *\n * @private\n * @param {Geometry} geom GeoJSON Geometries\n * @returns {number} area\n */\nfunction calculateArea(geom: Geometry): number {\n  let total = 0;\n  let i;\n  switch (geom.type) {\n    case \"Polygon\":\n      return polygonArea(geom.coordinates);\n    case \"MultiPolygon\":\n      for (i = 0; i < geom.coordinates.length; i++) {\n        total += polygonArea(geom.coordinates[i]);\n      }\n      return total;\n    case \"Point\":\n    case \"MultiPoint\":\n    case \"LineString\":\n    case \"MultiLineString\":\n      return 0;\n  }\n  return 0;\n}\n\nfunction polygonArea(coords: any) {\n  let total = 0;\n  if (coords && coords.length > 0) {\n    total += Math.abs(ringArea(coords[0]));\n    for (let i = 1; i < coords.length; i++) {\n      total -= Math.abs(ringArea(coords[i]));\n    }\n  }\n  return total;\n}\n\n/**\n * @private\n * A constant factor used to compute the area of a polygon.\n * It's derived from the square of the Earth's radius divided by 2.\n *\n * @type {number}\n */\nconst FACTOR = (earthRadius * earthRadius) / 2;\n\n/**\n * @private\n * A constant used for converting degrees to radians.\n * Represents the ratio of PI to 180.\n *\n * @type {number}\n */\nconst PI_OVER_180 = Math.PI / 180;\n\n/**\n * @private\n * Calculate the approximate area of the polygon were it projected onto the earth.\n * Note that this area will be positive if ring is oriented clockwise, otherwise it will be negative.\n *\n * Reference:\n * Robert. G. Chamberlain and William H. Duquette, \"Some Algorithms for Polygons on a Sphere\",\n * JPL Publication 07-03, Jet Propulsion\n * Laboratory, Pasadena, CA, June 2007 https://trs.jpl.nasa.gov/handle/2014/40409\n *\n * @param {Array<Array<number>>} coords Ring Coordinates\n * @returns {number} The approximate signed geodesic area of the polygon in square meters.\n */\nfunction ringArea(coords: number[][]): number {\n  const coordsLength = coords.length - 1;\n\n  if (coordsLength <= 2) return 0;\n  let total = 0;\n\n  let i = 0;\n  while (i < coordsLength) {\n    const lower = coords[i];\n    const middle = coords[i + 1 === coordsLength ? 0 : i + 1];\n    const upper =\n      coords[i + 2 >= coordsLength ? (i + 2) % coordsLength : i + 2];\n\n    const lowerX = lower[0] * PI_OVER_180;\n    const middleY = middle[1] * PI_OVER_180;\n    const upperX = upper[0] * PI_OVER_180;\n\n    total += (upperX - lowerX) * Math.sin(middleY);\n\n    i++;\n  }\n\n  return total * FACTOR;\n}\n\nexport { area };\nexport default area;\n"
  },
  {
    "path": "packages/turf-area/package.json",
    "content": "{\n  \"name\": \"@turf/area\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Calculates the geodesic area in square meters of one or more polygons.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"area\",\n    \"polygon\",\n    \"multipolygon\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-area/test/in/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [125, -15],\n        [113, -22],\n        [117, -37],\n        [130, -33],\n        [148, -39],\n        [154, -27],\n        [144, -15],\n        [125, -15]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-area/test/out/polygon.json",
    "content": "7748891609977\n"
  },
  {
    "path": "packages/turf-area/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { area } from \"./index.js\";\nimport { polygon } from \"@turf/helpers\";\nimport { Polygon } from \"geojson\";\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-area\", (t) => {\n  for (const fixture of fixtures) {\n    const name = fixture.name;\n    const geojson = fixture.geojson;\n    const results = Math.round(area(geojson));\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + name + \".json\", results);\n    t.equal(results, loadJsonFileSync(directories.out + name + \".json\"), name);\n  }\n  t.end();\n});\n\ntest(\"turf-area-length-check\", (t) => {\n  const invalidPoly: Polygon = {\n    type: \"Polygon\",\n    coordinates: [\n      [\n        [101.0, 0.0],\n        [101.0, 0.5],\n        [101.5, 0.5],\n      ],\n    ],\n  };\n  const result = area(invalidPoly);\n  t.equal(result, 0);\n\n  t.end();\n});\n\ntest(\"turf-area-rotation-consistency\", (t) => {\n  const rotatingPoly = polygon([\n    [\n      [28.321755510202507, 16.35627490376781],\n      [20.424575867090823, 1.7575215418945476],\n      [48.254218513706036, 20.42650462625916],\n      [36.310934132380964, 14.226760576846956],\n      [28.321755510202507, 16.35627490376781],\n    ],\n  ]);\n  const result = area(rotatingPoly);\n  const changingPoly = polygon([\n    [\n      [0.0, 0.0],\n      [0.0, 0.0],\n      [0.0, 0.0],\n      [0.0, 0.0],\n      [0.0, 0.0],\n    ],\n  ]);\n  for (let i = 1; i < 5; i++) {\n    changingPoly.geometry.coordinates[0][0] =\n      rotatingPoly.geometry.coordinates[0][i];\n    changingPoly.geometry.coordinates[0][1] =\n      rotatingPoly.geometry.coordinates[0][(i + 1) % 4];\n    changingPoly.geometry.coordinates[0][2] =\n      rotatingPoly.geometry.coordinates[0][(i + 2) % 4];\n    changingPoly.geometry.coordinates[0][3] =\n      rotatingPoly.geometry.coordinates[0][(i + 3) % 4];\n    changingPoly.geometry.coordinates[0][4] =\n      rotatingPoly.geometry.coordinates[0][i];\n\n    const curResult = area(changingPoly);\n    t.equal(result, curResult);\n  }\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-area/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-bbox/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-bbox/README.md",
    "content": "# @turf/bbox\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## bbox\n\nCalculates the bounding box for any GeoJSON object, including FeatureCollection.\nUses geojson.bbox if available and options.recompute is not set.\n\n### Parameters\n\n*   `geojson` **[GeoJSON][1]** any GeoJSON object\n*   `options` **[Object][2]** Optional parameters (optional, default `{}`)\n\n    *   `options.recompute` **[boolean][3]?** Whether to ignore an existing bbox property on geojson\n\n### Examples\n\n```javascript\nvar line = turf.lineString([[-74, 40], [-78, 42], [-82, 35]]);\nvar bbox = turf.bbox(line);\nvar bboxPolygon = turf.bboxPolygon(bbox);\n\n//addToMap\nvar addToMap = [line, bboxPolygon]\n```\n\nReturns **[BBox][4]** bbox extent in \\[minX, minY, maxX, maxY] order\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n[4]: https://tools.ietf.org/html/rfc7946#section-5\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/bbox\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-bbox/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { lineString } from \"@turf/helpers\";\nimport { bbox } from \"./index.js\";\n\nconst line = lineString([\n  [-74, 40],\n  [-78, 42],\n  [-82, 35],\n]);\n\n/**\n * Benchmark Results\n *\n */\nnew Benchmark.Suite(\"turf-bbox\")\n  .add(\"line\", () => bbox(line))\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-bbox/index.ts",
    "content": "import { BBox } from \"geojson\";\nimport { AllGeoJSON } from \"@turf/helpers\";\nimport { coordEach } from \"@turf/meta\";\n\n/**\n * Calculates the bounding box for any GeoJSON object, including FeatureCollection.\n * Uses geojson.bbox if available and options.recompute is not set.\n *\n * @function\n * @param {GeoJSON} geojson any GeoJSON object\n * @param {Object} [options={}] Optional parameters\n * @param {boolean} [options.recompute] Whether to ignore an existing bbox property on geojson\n * @returns {BBox} bbox extent in [minX, minY, maxX, maxY] order\n * @example\n * var line = turf.lineString([[-74, 40], [-78, 42], [-82, 35]]);\n * var bbox = turf.bbox(line);\n * var bboxPolygon = turf.bboxPolygon(bbox);\n *\n * //addToMap\n * var addToMap = [line, bboxPolygon]\n */\nfunction bbox(\n  geojson: AllGeoJSON,\n  options: {\n    recompute?: boolean;\n  } = {}\n): BBox {\n  if (geojson.bbox != null && true !== options.recompute) {\n    return geojson.bbox;\n  }\n  const result: BBox = [Infinity, Infinity, -Infinity, -Infinity];\n  coordEach(geojson, (coord) => {\n    if (result[0] > coord[0]) {\n      result[0] = coord[0];\n    }\n    if (result[1] > coord[1]) {\n      result[1] = coord[1];\n    }\n    if (result[2] < coord[0]) {\n      result[2] = coord[0];\n    }\n    if (result[3] < coord[1]) {\n      result[3] = coord[1];\n    }\n  });\n  return result;\n}\n\nexport { bbox };\nexport default bbox;\n"
  },
  {
    "path": "packages/turf-bbox/package.json",
    "content": "{\n  \"name\": \"@turf/bbox\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Generates a bounding box around a GeoJSON feature.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"extent\",\n    \"bbox\",\n    \"polygon\",\n    \"featurecollection\",\n    \"geojson\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-bbox/test.ts",
    "content": "import test from \"tape\";\nimport {\n  point,\n  polygon,\n  feature,\n  lineString,\n  multiPolygon,\n  multiLineString,\n  featureCollection,\n} from \"@turf/helpers\";\nimport { bbox } from \"./index.js\";\n\n// Fixtures\nconst pt = point([102.0, 0.5]);\nconst line = lineString([\n  [102.0, -10.0],\n  [103.0, 1.0],\n  [104.0, 0.0],\n  [130.0, 4.0],\n]);\nconst poly = polygon([\n  [\n    [101.0, 0.0],\n    [101.0, 1.0],\n    [100.0, 1.0],\n    [100.0, 0.0],\n    [101.0, 0.0],\n  ],\n]);\nconst multiLine = multiLineString([\n  [\n    [100.0, 0.0],\n    [101.0, 1.0],\n  ],\n  [\n    [102.0, 2.0],\n    [103.0, 3.0],\n  ],\n]);\nconst multiPoly = multiPolygon([\n  [\n    [\n      [102.0, 2.0],\n      [103.0, 2.0],\n      [103.0, 3.0],\n      [102.0, 3.0],\n      [102.0, 2.0],\n    ],\n  ],\n  [\n    [\n      [100.0, 0.0],\n      [101.0, 0.0],\n      [101.0, 1.0],\n      [100.0, 1.0],\n      [100.0, 0.0],\n    ],\n    [\n      [100.2, 0.2],\n      [100.8, 0.2],\n      [100.8, 0.8],\n      [100.2, 0.8],\n      [100.2, 0.2],\n    ],\n  ],\n]);\nconst fc = featureCollection([pt, line, poly, multiLine, multiPoly]);\n\ntest(\"bbox\", (t) => {\n  // FeatureCollection\n  const fcBBox = bbox(fc);\n  t.deepEqual(fcBBox, [100, -10, 130, 4], \"featureCollection\");\n\n  // Point\n  const ptBBox = bbox(pt);\n  t.deepEqual(ptBBox, [102, 0.5, 102, 0.5], \"point\");\n\n  // Line\n  const lineBBox = bbox(line);\n  t.deepEqual(lineBBox, [102, -10, 130, 4], \"lineString\");\n\n  // Polygon\n  const polyExtent = bbox(poly);\n  t.deepEqual(polyExtent, [100, 0, 101, 1], \"polygon\");\n\n  // MultiLineString\n  const multiLineBBox = bbox(multiLine);\n  t.deepEqual(multiLineBBox, [100, 0, 103, 3], \"multiLineString\");\n\n  // MultiPolygon\n  const multiPolyBBox = bbox(multiPoly);\n  t.deepEqual(multiPolyBBox, [100, 0, 103, 3], \"multiPolygon\");\n\n  t.deepEqual(bbox({ ...pt, bbox: [] }), [], \"uses built-in bbox by default\");\n  t.deepEqual(\n    bbox({ ...pt, bbox: [] }, { recompute: true }),\n    [102, 0.5, 102, 0.5],\n    \"recomputes bbox with recompute option\"\n  );\n\n  t.end();\n});\n\ntest(\"bbox -- throws\", (t) => {\n  t.throws(\n    () => bbox({}),\n    /Unknown Geometry Type/,\n    \"unknown geometry type error\"\n  );\n  t.end();\n});\n\ntest(\"bbox -- null geometries\", (t) => {\n  t.deepEqual(bbox(feature(null)), [Infinity, Infinity, -Infinity, -Infinity]);\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-bbox/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-bbox-clip/README.md",
    "content": "# @turf/bbox-clip\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## bboxClip\n\nTakes a [Feature][1] and a bbox and clips the feature to the bbox using\n[lineclip][2].\nMay result in degenerate edges when clipping Polygons.\n\n### Parameters\n\n*   `feature` **[Feature][1]<([LineString][3] | [MultiLineString][4] | [Polygon][5] | [MultiPolygon][6])>** feature to clip to the bbox\n*   `bbox` **[BBox][7]** extent in \\[minX, minY, maxX, maxY] order\n\n### Examples\n\n```javascript\nvar bbox = [0, 0, 10, 10];\nvar poly = turf.polygon([[[2, 2], [8, 4], [12, 8], [3, 7], [2, 2]]]);\n\nvar clipped = turf.bboxClip(poly, bbox);\n\n//addToMap\nvar addToMap = [bbox, poly, clipped]\n```\n\nReturns **[Feature][1]<([LineString][3] | [MultiLineString][4] | [Polygon][5] | [MultiPolygon][6])>** clipped Feature\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[2]: https://github.com/mapbox/lineclip\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.5\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[7]: https://tools.ietf.org/html/rfc7946#section-5\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/bbox-clip\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-bbox-clip/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { bbox } from \"@turf/bbox\";\nimport { bboxClip } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * linestring-single-line x 1,065,073 ops/sec ±1.11% (90 runs sampled)\n * linestring x 56,599 ops/sec ±1.17% (90 runs sampled)\n * multi-linestring x 859,048 ops/sec ±1.01% (91 runs sampled)\n * multi-polygon x 26,991 ops/sec ±0.87% (94 runs sampled)\n * polygon-crossing-hole x 25,277 ops/sec ±0.72% (92 runs sampled)\n * polygon-holes x 27,233 ops/sec ±0.89% (91 runs sampled)\n * polygon x 21,339 ops/sec ±1.19% (89 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-bbox-clip\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () =>\n    bboxClip(geojson.features[0], bbox(geojson.features[1]))\n  );\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-bbox-clip/index.ts",
    "content": "import {\n  BBox,\n  Feature,\n  LineString,\n  MultiLineString,\n  MultiPolygon,\n  GeoJsonProperties,\n  Polygon,\n} from \"geojson\";\n\nimport {\n  lineString,\n  multiLineString,\n  multiPolygon,\n  polygon,\n} from \"@turf/helpers\";\nimport { getGeom } from \"@turf/invariant\";\nimport { lineclip, polygonclip } from \"./lib/lineclip.js\";\n\n/**\n * Takes a {@link Feature} and a bbox and clips the feature to the bbox using\n * [lineclip](https://github.com/mapbox/lineclip).\n * May result in degenerate edges when clipping Polygons.\n *\n * @function\n * @param {Feature<LineString|MultiLineString|Polygon|MultiPolygon>} feature feature to clip to the bbox\n * @param {BBox} bbox extent in [minX, minY, maxX, maxY] order\n * @returns {Feature<LineString|MultiLineString|Polygon|MultiPolygon>} clipped Feature\n * @example\n * var bbox = [0, 0, 10, 10];\n * var poly = turf.polygon([[[2, 2], [8, 4], [12, 8], [3, 7], [2, 2]]]);\n *\n * var clipped = turf.bboxClip(poly, bbox);\n *\n * //addToMap\n * var addToMap = [bbox, poly, clipped]\n */\nfunction bboxClip<\n  G extends Polygon | MultiPolygon | LineString | MultiLineString,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(feature: Feature<G, P> | G, bbox: BBox) {\n  const geom = getGeom(feature);\n  const type = geom.type;\n  const properties = feature.type === \"Feature\" ? feature.properties : {};\n  let coords: any[] = geom.coordinates;\n\n  switch (type) {\n    case \"LineString\":\n    case \"MultiLineString\": {\n      const lines: any[] = [];\n      if (type === \"LineString\") {\n        coords = [coords];\n      }\n      coords.forEach((line) => {\n        lineclip(line, bbox, lines);\n      });\n      if (lines.length === 1) {\n        return lineString(lines[0], properties);\n      }\n      return multiLineString(lines, properties);\n    }\n    case \"Polygon\":\n      return polygon(clipPolygon(coords, bbox), properties);\n    case \"MultiPolygon\":\n      return multiPolygon(\n        coords.map((poly) => {\n          return clipPolygon(poly, bbox);\n        }),\n        properties\n      );\n    default:\n      throw new Error(\"geometry \" + type + \" not supported\");\n  }\n}\n\nfunction clipPolygon(rings: number[][][], bbox: BBox) {\n  const outRings = [];\n  for (const ring of rings) {\n    const clipped = polygonclip(ring, bbox);\n    if (clipped.length > 0) {\n      if (\n        clipped[0][0] !== clipped[clipped.length - 1][0] ||\n        clipped[0][1] !== clipped[clipped.length - 1][1]\n      ) {\n        clipped.push(clipped[0]);\n      }\n      if (clipped.length >= 4) {\n        outRings.push(clipped);\n      }\n    }\n  }\n  return outRings;\n}\n\nexport { bboxClip };\nexport default bboxClip;\n"
  },
  {
    "path": "packages/turf-bbox-clip/lib/lineclip.ts",
    "content": "// Cohen-Sutherland line clipping algorithm, adapted to efficiently\n// handle polylines rather than just segments\nimport { BBox } from \"geojson\";\n\nexport function lineclip(\n  points: number[][],\n  bbox: BBox,\n  result?: number[][][]\n): number[][][] {\n  var len = points.length,\n    codeA = bitCode(points[0], bbox),\n    part = [] as number[][],\n    i,\n    codeB,\n    lastCode;\n  let a: number[];\n  let b: number[];\n\n  if (!result) result = [];\n\n  for (i = 1; i < len; i++) {\n    a = points[i - 1];\n    b = points[i];\n    codeB = lastCode = bitCode(b, bbox);\n\n    while (true) {\n      if (!(codeA | codeB)) {\n        // accept\n        part.push(a);\n\n        if (codeB !== lastCode) {\n          // segment went outside\n          part.push(b);\n\n          if (i < len - 1) {\n            // start a new line\n            result.push(part);\n            part = [];\n          }\n        } else if (i === len - 1) {\n          part.push(b);\n        }\n        break;\n      } else if (codeA & codeB) {\n        // trivial reject\n        break;\n      } else if (codeA) {\n        // a outside, intersect with clip edge\n        a = intersect(a, b, codeA, bbox)!;\n        codeA = bitCode(a, bbox);\n      } else {\n        // b outside\n        b = intersect(a, b, codeB, bbox)!;\n        codeB = bitCode(b, bbox);\n      }\n    }\n\n    codeA = lastCode;\n  }\n\n  if (part.length) result.push(part);\n\n  return result;\n}\n\n// Sutherland-Hodgeman polygon clipping algorithm\n\nexport function polygonclip(points: number[][], bbox: BBox): number[][] {\n  var result: number[][], edge, prev, prevInside, i, p, inside;\n\n  // clip against each side of the clip rectangle\n  for (edge = 1; edge <= 8; edge *= 2) {\n    result = [];\n    prev = points[points.length - 1];\n    prevInside = !(bitCode(prev, bbox) & edge);\n\n    for (i = 0; i < points.length; i++) {\n      p = points[i];\n      inside = !(bitCode(p, bbox) & edge);\n\n      // if segment goes through the clip window, add an intersection\n      if (inside !== prevInside) result.push(intersect(prev, p, edge, bbox)!);\n\n      if (inside) result.push(p); // add a point if it's inside\n\n      prev = p;\n      prevInside = inside;\n    }\n\n    points = result;\n\n    if (!points.length) break;\n  }\n\n  return result!;\n}\n\n// intersect a segment against one of the 4 lines that make up the bbox\n\nfunction intersect(\n  a: number[],\n  b: number[],\n  edge: number,\n  bbox: BBox\n): number[] | null {\n  return edge & 8\n    ? [a[0] + ((b[0] - a[0]) * (bbox[3] - a[1])) / (b[1] - a[1]), bbox[3]] // top\n    : edge & 4\n      ? [a[0] + ((b[0] - a[0]) * (bbox[1] - a[1])) / (b[1] - a[1]), bbox[1]] // bottom\n      : edge & 2\n        ? [bbox[2], a[1] + ((b[1] - a[1]) * (bbox[2] - a[0])) / (b[0] - a[0])] // right\n        : edge & 1\n          ? [bbox[0], a[1] + ((b[1] - a[1]) * (bbox[0] - a[0])) / (b[0] - a[0])] // left\n          : null;\n}\n\n// bit code reflects the point position relative to the bbox:\n\n//         left  mid  right\n//    top  1001  1000  1010\n//    mid  0001  0000  0010\n// bottom  0101  0100  0110\n\nfunction bitCode(p: number[], bbox: BBox) {\n  var code = 0;\n\n  if (p[0] < bbox[0]) code |= 1;\n  // left\n  else if (p[0] > bbox[2]) code |= 2; // right\n\n  if (p[1] < bbox[1]) code |= 4;\n  // bottom\n  else if (p[1] > bbox[3]) code |= 8; // top\n\n  return code;\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/package.json",
    "content": "{\n  \"name\": \"@turf/bbox-clip\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a Feature and a bbox and clips the feature to the bbox using lineclip.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Tim Channell <@tcql>\",\n    \"Vladimir Agafonkin <@mourner>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"gis\",\n    \"bbox\",\n    \"clip\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/bbox\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/test/in/linestring-single-line.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.1240234375, 39.51251701659638],\n          [-77.618408203125, 39.24927084622338],\n          [-77.0855712890625, 38.886757140695906]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-77.72552490234374, 39.095962936305476],\n            [-77.0361328125, 39.095962936305476],\n            [-77.0361328125, 39.59722324495565],\n            [-77.72552490234374, 39.59722324495565],\n            [-77.72552490234374, 39.095962936305476]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/test/in/linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-78.869276, 38.762991],\n          [-78.835191, 38.811499],\n          [-78.808181, 38.856175],\n          [-78.788031, 38.885123],\n          [-78.779198, 38.892298],\n          [-78.757278, 38.903203],\n          [-78.719806, 38.922638],\n          [-78.719755, 38.922135],\n          [-78.716956, 38.916273],\n          [-78.714135, 38.911176],\n          [-78.710949, 38.910175],\n          [-78.601655, 38.964603],\n          [-78.557647, 39.013189],\n          [-78.554222, 39.019672],\n          [-78.565837, 39.026303],\n          [-78.571901, 39.031995],\n          [-78.544111, 39.056676],\n          [-78.508132, 39.08863],\n          [-78.459869, 39.113351],\n          [-78.439429, 39.132146],\n          [-78.418377, 39.156656],\n          [-78.41074, 39.171983],\n          [-78.426722, 39.188903],\n          [-78.438651, 39.198049],\n          [-78.437053, 39.199766],\n          [-78.43213, 39.204717],\n          [-78.431167, 39.205744],\n          [-78.429803, 39.207014],\n          [-78.427911, 39.208611],\n          [-78.423968, 39.212049],\n          [-78.399669, 39.243874],\n          [-78.399785, 39.244129],\n          [-78.360035, 39.317771],\n          [-78.35894, 39.319484],\n          [-78.34048, 39.353492],\n          [-78.362267, 39.357784],\n          [-78.347087, 39.466012],\n          [-78.228766, 39.391233],\n          [-78.033185, 39.264626],\n          [-78.033183, 39.264624],\n          [-78.032841, 39.264403],\n          [-77.828157, 39.132329],\n          [-77.822182, 39.139985],\n          [-77.771415, 39.236776],\n          [-77.767277, 39.24938],\n          [-77.768992, 39.256417],\n          [-77.768, 39.257657],\n          [-77.761768, 39.263031],\n          [-77.761217, 39.263721],\n          [-77.758733, 39.268114],\n          [-77.758412, 39.269197],\n          [-77.755698, 39.274575],\n          [-77.755193, 39.275191],\n          [-77.753105, 39.27734],\n          [-77.75306, 39.277971],\n          [-77.753357, 39.280331],\n          [-77.750267, 39.289284],\n          [-77.719029, 39.321125],\n          [-77.677505, 39.318699],\n          [-77.667749, 39.318129],\n          [-77.592739, 39.30129],\n          [-77.560854, 39.286152],\n          [-77.545846, 39.271535],\n          [-77.543228, 39.266937],\n          [-77.534461, 39.262361],\n          [-77.511222, 39.2535],\n          [-77.484605, 39.245941],\n          [-77.46021, 39.228359],\n          [-77.45768, 39.22502],\n          [-77.458779, 39.22028],\n          [-77.458884, 39.219826],\n          [-77.478596, 39.189168],\n          [-77.485971, 39.185665],\n          [-77.505162, 39.18205],\n          [-77.510631, 39.178484],\n          [-77.516426, 39.170891],\n          [-77.527282, 39.146236],\n          [-77.524559, 39.127821],\n          [-77.519929, 39.120925],\n          [-77.458202, 39.073723],\n          [-77.42318, 39.066878],\n          [-77.375079, 39.061297],\n          [-77.340287, 39.062991],\n          [-77.328002, 39.058554],\n          [-77.291605, 39.045408],\n          [-77.261403, 39.031009],\n          [-77.251803, 39.011409],\n          [-77.255703, 39.002409],\n          [-77.249803, 38.985909],\n          [-77.235403, 38.97661],\n          [-77.221502, 38.97131],\n          [-77.197502, 38.96681],\n          [-77.166901, 38.96811],\n          [-77.148179, 38.965002],\n          [-77.137701, 38.95531],\n          [-77.1199, 38.934311],\n          [-77.119863, 38.934265],\n          [-77.1012, 38.911111],\n          [-77.0902, 38.904211],\n          [-77.068199, 38.899811],\n          [-77.040599, 38.871212],\n          [-77.031698, 38.850512],\n          [-77.032986, 38.8395],\n          [-77.038598, 38.791513],\n          [-77.039239, 38.7852],\n          [-77.041398, 38.763914],\n          [-77.05991, 38.734419],\n          [-77.074599, 38.711015],\n          [-77.086113, 38.705792],\n          [-77.1059, 38.696815],\n          [-77.121101, 38.686616],\n          [-77.132501, 38.673816],\n          [-77.135901, 38.649817],\n          [-77.1302, 38.635017],\n          [-77.157501, 38.636417],\n          [-77.174902, 38.624217],\n          [-77.202002, 38.617217],\n          [-77.204302, 38.617817],\n          [-77.205103, 38.623917],\n          [-77.216303, 38.637817],\n          [-77.22235, 38.638091],\n          [-77.240604, 38.638917],\n          [-77.246704, 38.635217],\n          [-77.248904, 38.628617],\n          [-77.245104, 38.620717],\n          [-77.246441, 38.599532],\n          [-77.247003, 38.590618],\n          [-77.26443, 38.582845],\n          [-77.265304, 38.580319],\n          [-77.26083, 38.56533],\n          [-77.276603, 38.54712],\n          [-77.276303, 38.53962],\n          [-77.283503, 38.525221],\n          [-77.291103, 38.515721],\n          [-77.29582, 38.511457],\n          [-77.298844, 38.508724],\n          [-77.300776, 38.506978],\n          [-77.302457, 38.504683],\n          [-77.310334, 38.493926],\n          [-77.322622, 38.467131],\n          [-77.32544, 38.44885],\n          [-77.319036, 38.417803],\n          [-77.310719, 38.397669],\n          [-77.312201, 38.390958],\n          [-77.314848, 38.389579],\n          [-77.317288, 38.383576],\n          [-77.296077, 38.369797],\n          [-77.288145, 38.359477],\n          [-77.28835, 38.351286],\n          [-77.286202, 38.347025],\n          [-77.286202, 38.347024],\n          [-77.279633, 38.339444],\n          [-77.265295, 38.333165],\n          [-77.240072, 38.331598],\n          [-77.199433, 38.34089],\n          [-77.17934, 38.341915],\n          [-77.162692, 38.345994],\n          [-77.155191, 38.351047],\n          [-77.138224, 38.367917],\n          [-77.104717, 38.369655],\n          [-77.094665, 38.367715],\n          [-77.08481, 38.368297],\n          [-77.069956, 38.377895],\n          [-77.056032, 38.3962],\n          [-77.051437, 38.399083],\n          [-77.043526, 38.400548],\n          [-77.024866, 38.386791],\n          [-77.011827, 38.374554],\n          [-77.016932, 38.341697],\n          [-77.020947, 38.329273],\n          [-77.030683, 38.311623],\n          [-77.026304, 38.302685],\n          [-76.99767, 38.278047],\n          [-76.990255, 38.273935],\n          [-76.981372, 38.274214],\n          [-76.96215, 38.256486],\n          [-76.957796, 38.243183],\n          [-76.957417, 38.236341],\n          [-76.962375, 38.230093],\n          [-76.966553, 38.229542],\n          [-76.967335, 38.227185],\n          [-76.962311, 38.214075],\n          [-76.937134, 38.202384],\n          [-76.916922, 38.199751],\n          [-76.910832, 38.197073],\n          [-76.875272, 38.172207],\n          [-76.838795, 38.163476],\n          [-76.824274, 38.163639],\n          [-76.802968, 38.167988],\n          [-76.788445, 38.169199],\n          [-76.760241, 38.166581],\n          [-76.749685, 38.162114],\n          [-76.743064, 38.156988],\n          [-76.740278, 38.152824],\n          [-76.738938, 38.14651],\n          [-76.721722, 38.137635],\n          [-76.704048, 38.149264],\n          [-76.701297, 38.155718],\n          [-76.684892, 38.156497],\n          [-76.665127, 38.147638],\n          [-76.643448, 38.14825],\n          [-76.638983, 38.151476],\n          [-76.629476, 38.15305],\n          [-76.613939, 38.148587],\n          [-76.604131, 38.128771],\n          [-76.600937, 38.110084],\n          [-76.579497, 38.09487],\n          [-76.543155, 38.076971],\n          [-76.535919, 38.069532],\n          [-76.522354, 38.04259],\n          [-76.519536, 38.034814],\n          [-76.516547, 38.026566],\n          [-76.491998, 38.017222],\n          [-76.469343, 38.013544],\n          [-76.465291, 38.010226],\n          [-76.462542, 37.998572],\n          [-76.427487, 37.977038],\n          [-76.416299, 37.966828],\n          [-76.391439, 37.958742],\n          [-76.360211, 37.952329],\n          [-76.343848, 37.947345],\n          [-76.265998, 37.91138],\n          [-76.236725, 37.889174],\n          [-76.245072, 37.861918],\n          [-76.251358, 37.833072],\n          [-76.266057, 37.8174],\n          [-76.275178, 37.812664],\n          [-76.280544, 37.812597],\n          [-76.282592, 37.814109],\n          [-76.281985, 37.818068],\n          [-76.284904, 37.822308],\n          [-76.293525, 37.822717],\n          [-76.307482, 37.81235],\n          [-76.310307, 37.794849],\n          [-76.306489, 37.788646],\n          [-76.312108, 37.750522],\n          [-76.304917, 37.729913],\n          [-76.312858, 37.720338],\n          [-76.302803, 37.704474],\n          [-76.300067, 37.695364],\n          [-76.302545, 37.689],\n          [-76.312079, 37.684651],\n          [-76.315161, 37.68472],\n          [-76.320216, 37.680666],\n          [-76.324808, 37.676983],\n          [-76.339892, 37.655966],\n          [-76.332562, 37.645817],\n          [-76.306464, 37.642005],\n          [-76.292534, 37.636098],\n          [-76.287959, 37.631771],\n          [-76.279447, 37.618225],\n          [-76.28037, 37.613715],\n          [-76.309174, 37.621892],\n          [-76.36232, 37.610368],\n          [-76.381106, 37.627003],\n          [-76.390054, 37.630326],\n          [-76.399236, 37.628636],\n          [-76.443254, 37.652347],\n          [-76.472392, 37.665772],\n          [-76.489576, 37.666201],\n          [-76.491799, 37.663614],\n          [-76.497564, 37.647056],\n          [-76.501522, 37.643762],\n          [-76.510187, 37.642324],\n          [-76.536548, 37.663574],\n          [-76.537698, 37.66893],\n          [-76.535302, 37.687516],\n          [-76.537228, 37.698892],\n          [-76.54005, 37.704432],\n          [-76.560476, 37.727827],\n          [-76.576387, 37.757493],\n          [-76.584289, 37.76889],\n          [-76.593835, 37.772848],\n          [-76.595939, 37.77168],\n          [-76.602024, 37.772731],\n          [-76.615351, 37.780759],\n          [-76.642276, 37.792317],\n          [-76.651413, 37.796239],\n          [-76.658302, 37.806815],\n          [-76.680197, 37.825654],\n          [-76.692747, 37.82277],\n          [-76.701606, 37.822677],\n          [-76.722156, 37.83668],\n          [-76.72718, 37.842263],\n          [-76.733046, 37.852009],\n          [-76.738395, 37.865373],\n          [-76.747552, 37.875864],\n          [-76.765711, 37.879274],\n          [-76.77539, 37.874306],\n          [-76.784618, 37.869569],\n          [-76.782826, 37.863184],\n          [-76.766328, 37.840437],\n          [-76.7512, 37.824141],\n          [-76.734309, 37.79866],\n          [-76.723863, 37.788503],\n          [-76.715498, 37.785873],\n          [-76.689773, 37.78519],\n          [-76.683775, 37.781391],\n          [-76.681901, 37.778118],\n          [-76.683343, 37.775783],\n          [-76.683359, 37.770258],\n          [-76.683372, 37.765507],\n          [-76.680922, 37.759647],\n          [-76.677002, 37.7561],\n          [-76.663887, 37.751887],\n          [-76.639962, 37.750941],\n          [-76.61971, 37.744795],\n          [-76.617373, 37.742347],\n          [-76.621433, 37.737973],\n          [-76.61997, 37.731271],\n          [-76.606466, 37.724819],\n          [-76.597213, 37.717269],\n          [-76.595943, 37.712989],\n          [-76.598073, 37.70912],\n          [-76.597868, 37.702918],\n          [-76.579591, 37.671508],\n          [-76.583143, 37.661986],\n          [-76.574049, 37.646781],\n          [-76.542666, 37.616857],\n          [-76.533777, 37.61253],\n          [-76.527188, 37.611315],\n          [-76.435474, 37.612807],\n          [-76.420252, 37.598686],\n          [-76.410781, 37.581815],\n          [-76.383188, 37.573056],\n          [-76.357835, 37.573699],\n          [-76.332641, 37.570042],\n          [-76.300144, 37.561734],\n          [-76.29796, 37.557636],\n          [-76.302762, 37.551295],\n          [-76.330598, 37.536391],\n          [-76.339989, 37.53833],\n          [-76.348992, 37.536548],\n          [-76.355084, 37.527364],\n          [-76.360474, 37.51924],\n          [-76.359378, 37.513426],\n          [-76.352678, 37.504913],\n          [-76.32947, 37.49492],\n          [-76.306952, 37.497488],\n          [-76.297739, 37.506863],\n          [-76.296445, 37.511235],\n          [-76.298456, 37.512677],\n          [-76.297651, 37.515424],\n          [-76.293599, 37.516499],\n          [-76.288167, 37.514118],\n          [-76.281043, 37.507821],\n          [-76.265056, 37.481365],\n          [-76.252415, 37.447274],\n          [-76.250454, 37.421886],\n          [-76.246617, 37.404122],\n          [-76.245283, 37.386839],\n          [-76.24846, 37.375135],\n          [-76.258277, 37.36202],\n          [-76.262407, 37.360786],\n          [-76.264847, 37.357399],\n          [-76.272888, 37.335174],\n          [-76.272005, 37.322194],\n          [-76.275552, 37.309964],\n          [-76.282555, 37.319107],\n          [-76.291324, 37.324145],\n          [-76.308581, 37.329366],\n          [-76.31205, 37.338088],\n          [-76.337476, 37.364014],\n          [-76.366751, 37.374495],\n          [-76.387112, 37.385061],\n          [-76.391437, 37.390284],\n          [-76.393958, 37.39594],\n          [-76.393125, 37.398068],\n          [-76.404756, 37.400213],\n          [-76.415167, 37.402133],\n          [-76.418719, 37.3978],\n          [-76.418176, 37.385064],\n          [-76.422503, 37.381355],\n          [-76.437525, 37.37975],\n          [-76.445333, 37.36646],\n          [-76.434965, 37.354524],\n          [-76.406388, 37.332924],\n          [-76.38777, 37.30767],\n          [-76.385603, 37.294108],\n          [-76.381075, 37.28534],\n          [-76.369029, 37.279311],\n          [-76.352556, 37.278334],\n          [-76.349489, 37.273963],\n          [-76.36229, 37.270226],\n          [-76.392788, 37.264973],\n          [-76.417173, 37.26395],\n          [-76.421765, 37.255198],\n          [-76.429141, 37.25331],\n          [-76.475927, 37.250543],\n          [-76.48284, 37.254831],\n          [-76.493302, 37.24947],\n          [-76.4989, 37.241015],\n          [-76.50364, 37.233856],\n          [-76.494008, 37.225408],\n          [-76.471799, 37.216016],\n          [-76.394132, 37.22515],\n          [-76.389793, 37.222981],\n          [-76.3936, 37.214049],\n          [-76.396052, 37.201087],\n          [-76.389284, 37.193503],\n          [-76.391252, 37.179887],\n          [-76.397883, 37.164415],\n          [-76.399659, 37.160272],\n          [-76.394756, 37.157568],\n          [-76.381379, 37.155711],\n          [-76.375255, 37.16084],\n          [-76.35969, 37.16858],\n          [-76.348658, 37.170655],\n          [-76.343234, 37.166207],\n          [-76.344898, 37.164479],\n          [-76.34405, 37.160367],\n          [-76.340129, 37.151823],\n          [-76.334017, 37.144223],\n          [-76.330481, 37.141727],\n          [-76.324353, 37.142895],\n          [-76.311088, 37.138495],\n          [-76.292344, 37.126615],\n          [-76.287236, 37.117453],\n          [-76.274463, 37.094544],\n          [-76.271262, 37.084544],\n          [-76.292863, 37.035145],\n          [-76.300352, 37.00885],\n          [-76.304272, 37.001378],\n          [-76.312048, 37.000371],\n          [-76.315008, 37.001683],\n          [-76.314624, 37.00933],\n          [-76.318065, 37.013846],\n          [-76.329531, 37.014556],\n          [-76.34011, 37.015212],\n          [-76.340666, 37.015246],\n          [-76.348066, 37.006747],\n          [-76.356366, 37.002947],\n          [-76.373567, 36.998347],\n          [-76.383367, 36.993347],\n          [-76.387711, 36.989671],\n          [-76.396368, 36.982347],\n          [-76.408568, 36.969147],\n          [-76.411768, 36.962847],\n          [-76.418969, 36.964047],\n          [-76.428869, 36.969947],\n          [-76.452118, 36.998163],\n          [-76.452461, 37.004603],\n          [-76.449891, 37.004868],\n          [-76.448231, 37.007705],\n          [-76.464471, 37.027547],\n          [-76.46949, 37.030414],\n          [-76.507614, 37.052188],\n          [-76.509339, 37.053173],\n          [-76.512289, 37.054858],\n          [-76.518242, 37.055351],\n          [-76.526273, 37.062947],\n          [-76.527973, 37.068247],\n          [-76.526573, 37.070047],\n          [-76.526203, 37.077773],\n          [-76.528997, 37.079388],\n          [-76.536875, 37.083942],\n          [-76.555066, 37.075859],\n          [-76.564219, 37.077507],\n          [-76.567931, 37.080467],\n          [-76.579499, 37.096627],\n          [-76.618252, 37.119347],\n          [-76.62478, 37.127091],\n          [-76.622252, 37.142146],\n          [-76.617084, 37.144498],\n          [-76.604476, 37.160034],\n          [-76.606684, 37.166674],\n          [-76.610972, 37.166994],\n          [-76.611018, 37.167097],\n          [-76.612517, 37.170486],\n          [-76.613599, 37.172931],\n          [-76.614221, 37.174335],\n          [-76.616268, 37.178962],\n          [-76.616804, 37.18126],\n          [-76.617537, 37.184409],\n          [-76.618008, 37.186429],\n          [-76.61934, 37.192146],\n          [-76.619962, 37.193184],\n          [-76.621113, 37.195103],\n          [-76.623292, 37.198738],\n          [-76.629868, 37.206738],\n          [-76.639608, 37.214783],\n          [-76.641085, 37.216002],\n          [-76.649869, 37.220914],\n          [-76.689166, 37.222866],\n          [-76.693373, 37.221228],\n          [-76.698943, 37.219059],\n          [-76.730951, 37.213813],\n          [-76.73432, 37.204211],\n          [-76.74, 37.195379],\n          [-76.74304, 37.192611],\n          [-76.75047, 37.190098],\n          [-76.757765, 37.191658],\n          [-76.773752, 37.206061],\n          [-76.780532, 37.209336],\n          [-76.791555, 37.207564],\n          [-76.801023, 37.206043],\n          [-76.803198, 37.201513],\n          [-76.802511, 37.198308],\n          [-76.796905, 37.189404],\n          [-76.756899, 37.161582],\n          [-76.747632, 37.150548],\n          [-76.73728, 37.146164],\n          [-76.73032, 37.145395],\n          [-76.715295, 37.148035],\n          [-76.696735, 37.174403],\n          [-76.692926, 37.186147],\n          [-76.691918, 37.195731],\n          [-76.685614, 37.198851],\n          [-76.669886, 37.183571],\n          [-76.663774, 37.173875],\n          [-76.66427, 37.171027],\n          [-76.66867, 37.166771],\n          [-76.67147, 37.158739],\n          [-76.671588, 37.14206],\n          [-76.669604, 37.140534],\n          [-76.666542, 37.138179],\n          [-76.665833, 37.136098],\n          [-76.665641, 37.135534],\n          [-76.66375, 37.129979],\n          [-76.656894, 37.109843],\n          [-76.657101, 37.107617],\n          [-76.657703, 37.101161],\n          [-76.65811, 37.096787],\n          [-76.659394, 37.094019],\n          [-76.66555, 37.080746],\n          [-76.666526, 37.078643],\n          [-76.667219, 37.077149],\n          [-76.667646, 37.076228],\n          [-76.668295, 37.072656],\n          [-76.669118, 37.068132],\n          [-76.669822, 37.06426],\n          [-76.66835, 37.05506],\n          [-76.662558, 37.045748],\n          [-76.653998, 37.039172],\n          [-76.646013, 37.036228],\n          [-76.612124, 37.035604],\n          [-76.586491, 37.02874],\n          [-76.584478, 37.027349],\n          [-76.579393, 37.023835],\n          [-76.579236, 37.023726],\n          [-76.57816, 37.022982],\n          [-76.577531, 37.022548],\n          [-76.576617, 37.021374],\n          [-76.565803, 37.007493],\n          [-76.562923, 37.003796],\n          [-76.551246, 36.998946],\n          [-76.524853, 36.983833],\n          [-76.522971, 36.981085],\n          [-76.524142, 36.978316],\n          [-76.521006, 36.973187],\n          [-76.513363, 36.968057],\n          [-76.500355, 36.965212],\n          [-76.487559, 36.952372],\n          [-76.484107, 36.928916],\n          [-76.482407, 36.917364],\n          [-76.482135, 36.901108],\n          [-76.483369, 36.896239],\n          [-76.469914, 36.882898],\n          [-76.454692, 36.884077],\n          [-76.45329, 36.887031],\n          [-76.453941, 36.89274],\n          [-76.447413, 36.90322],\n          [-76.441605, 36.906116],\n          [-76.43122, 36.904532],\n          [-76.407507, 36.897444],\n          [-76.406908, 36.897507],\n          [-76.387567, 36.899547],\n          [-76.385867, 36.923247],\n          [-76.353765, 36.922747],\n          [-76.345569, 36.924531],\n          [-76.344663, 36.919313],\n          [-76.333158, 36.917293],\n          [-76.328864, 36.918447],\n          [-76.330765, 36.938647],\n          [-76.327365, 36.959447],\n          [-76.322764, 36.959147],\n          [-76.315867, 36.955351],\n          [-76.299364, 36.965547],\n          [-76.297663, 36.968147],\n          [-76.285063, 36.968747],\n          [-76.267962, 36.964547],\n          [-76.234961, 36.945147],\n          [-76.22166, 36.939547],\n          [-76.189959, 36.931447],\n          [-76.177019, 36.92929],\n          [-76.139557, 36.923047],\n          [-76.095508, 36.908817],\n          [-76.087955, 36.908647],\n          [-76.058154, 36.916947],\n          [-76.043054, 36.927547],\n          [-76.033454, 36.931946],\n          [-76.013753, 36.930746],\n          [-76.007553, 36.929047],\n          [-75.996252, 36.922047],\n          [-75.991552, 36.910847],\n          [-75.972151, 36.842268],\n          [-75.965451, 36.812449],\n          [-75.94955, 36.76115],\n          [-75.921748, 36.692051],\n          [-75.890946, 36.630753],\n          [-75.874145, 36.583853],\n          [-75.867044, 36.550754],\n          [-75.879744, 36.550754],\n          [-75.880644, 36.550754],\n          [-75.885945, 36.550754],\n          [-75.886545, 36.550754],\n          [-75.891945, 36.550754],\n          [-75.893245, 36.550654],\n          [-75.894145, 36.550754],\n          [-75.903445, 36.550654],\n          [-75.904745, 36.550654],\n          [-75.909046, 36.550654],\n          [-75.911446, 36.550654],\n          [-75.922046, 36.550654],\n          [-75.952847, 36.550553],\n          [-75.953447, 36.550553],\n          [-75.955748, 36.550553],\n          [-75.957648, 36.550553],\n          [-76.02675, 36.550553],\n          [-76.034751, 36.550653],\n          [-76.12236, 36.550621],\n          [-76.313196, 36.550551],\n          [-76.313215, 36.550551],\n          [-76.491497, 36.550365],\n          [-76.541391, 36.550312],\n          [-76.541687, 36.550312],\n          [-76.781296, 36.550659],\n          [-76.807078, 36.550606],\n          [-76.915384, 36.543856],\n          [-76.916001, 36.543818],\n          [-76.916048, 36.543815],\n          [-77.1645, 36.54633],\n          [-77.24969, 36.544745],\n          [-77.296875, 36.544746],\n          [-77.767117, 36.544752],\n          [-77.87528, 36.544754],\n          [-77.882357, 36.544737],\n          [-77.899771, 36.544663],\n          [-78.038938, 36.544173],\n          [-78.03942, 36.544196],\n          [-78.046202, 36.544168],\n          [-78.132911, 36.543811],\n          [-78.133323, 36.543847],\n          [-78.245462, 36.544411],\n          [-78.246681, 36.544341],\n          [-78.323912, 36.543809],\n          [-78.436333, 36.542666],\n          [-78.441199, 36.542687],\n          [-78.45697, 36.542474],\n          [-78.470792, 36.542316],\n          [-78.471022, 36.542307],\n          [-78.529722, 36.540981],\n          [-78.533013, 36.541004],\n          [-78.663317, 36.542011],\n          [-78.670051, 36.542035],\n          [-78.734122, 36.541902],\n          [-78.758392, 36.541852],\n          [-78.76543, 36.541727],\n          [-78.7963, 36.541713],\n          [-78.914543, 36.541972],\n          [-78.91542, 36.541974],\n          [-78.942009, 36.542113],\n          [-78.942254, 36.542079],\n          [-78.970577, 36.542154],\n          [-78.971814, 36.542123],\n          [-79.124736, 36.541568],\n          [-79.126078, 36.541533],\n          [-79.137936, 36.541739],\n          [-79.208686, 36.541571],\n          [-79.20948, 36.541594],\n          [-79.218638, 36.541579],\n          [-79.342696, 36.541382],\n          [-79.445687, 36.541218],\n          [-79.445961, 36.541195],\n          [-79.470047, 36.541025],\n          [-79.510647, 36.540738],\n          [-79.510961, 36.54074],\n          [-79.666827, 36.541772],\n          [-79.667309, 36.541772],\n          [-79.714855, 36.541884],\n          [-79.920239, 36.542365],\n          [-79.966979, 36.542475],\n          [-79.967511, 36.542502],\n          [-80.027269, 36.542495],\n          [-80.053455, 36.542623],\n          [-80.169535, 36.54319],\n          [-80.171636, 36.543219],\n          [-80.225408, 36.543748],\n          [-80.228263, 36.543867],\n          [-80.431605, 36.550219],\n          [-80.432628, 36.550302],\n          [-80.4401, 36.55063],\n          [-80.612158, 36.558127],\n          [-80.687539, 36.561411],\n          [-80.744101, 36.561686],\n          [-80.837089, 36.559154],\n          [-80.837641, 36.559118],\n          [-80.837954, 36.559131],\n          [-80.901726, 36.561751],\n          [-80.901836, 36.561754],\n          [-80.944338, 36.563058],\n          [-80.945988, 36.563196],\n          [-81.058844, 36.566976],\n          [-81.061866, 36.56702],\n          [-81.307511, 36.575024],\n          [-81.353169, 36.574724],\n          [-81.353322, 36.574723],\n          [-81.521032, 36.58052],\n          [-81.60697, 36.587094],\n          [-81.677535, 36.588117],\n          [-81.6469, 36.611918],\n          [-81.826742, 36.614215],\n          [-81.922644, 36.616213],\n          [-81.934144, 36.594213],\n          [-82.14607, 36.594712],\n          [-82.148569, 36.594718],\n          [-82.150727, 36.594673],\n          [-82.173982, 36.594607],\n          [-82.177247, 36.594768],\n          [-82.18074, 36.594928],\n          [-82.188491, 36.595179],\n          [-82.210497, 36.595772],\n          [-82.211005, 36.59586],\n          [-82.221713, 36.595814],\n          [-82.223445, 36.595721],\n          [-82.225716, 36.595744],\n          [-82.226653, 36.595743],\n          [-82.243274, 36.595699],\n          [-82.293814, 36.595565],\n          [-82.554294, 36.594876],\n          [-82.559774, 36.5948],\n          [-82.561074, 36.5948],\n          [-82.609176, 36.594099],\n          [-82.679879, 36.593698],\n          [-82.69578, 36.593698],\n          [-82.830433, 36.593761],\n          [-82.985087, 36.593829],\n          [-83.02725, 36.593847],\n          [-83.028357, 36.593893],\n          [-83.248933, 36.593827],\n          [-83.249899, 36.593898],\n          [-83.250304, 36.593935],\n          [-83.2763, 36.598187],\n          [-83.472108, 36.597284],\n          [-83.670128, 36.600764],\n          [-83.670141, 36.600797],\n          [-83.675413, 36.600814],\n          [-83.649513, 36.616683],\n          [-83.527212, 36.665984],\n          [-83.498011, 36.670485],\n          [-83.461013, 36.664916],\n          [-83.460808, 36.664885],\n          [-83.354606, 36.696153],\n          [-83.353613, 36.696699],\n          [-83.342804, 36.701286],\n          [-83.199698, 36.737487],\n          [-83.167396, 36.739187],\n          [-83.136395, 36.743088],\n          [-83.127833, 36.750828],\n          [-83.125728, 36.761276],\n          [-83.125655, 36.761407],\n          [-83.131245, 36.767105],\n          [-83.131694, 36.781488],\n          [-83.099792, 36.824889],\n          [-83.07259, 36.854589],\n          [-82.973395, 36.859097],\n          [-82.911824, 36.874243],\n          [-82.91169, 36.874248],\n          [-82.885618, 36.900415],\n          [-82.873777, 36.912299],\n          [-82.872136, 36.913456],\n          [-82.863468, 36.922308],\n          [-82.861943, 36.924236],\n          [-82.858461, 36.932717],\n          [-82.858784, 36.933065],\n          [-82.860537, 36.937439],\n          [-82.861684, 36.939316],\n          [-82.861282, 36.944848],\n          [-82.860633, 36.94584],\n          [-82.856099, 36.952471],\n          [-82.855705, 36.953808],\n          [-82.858443, 36.954036],\n          [-82.860534, 36.956015],\n          [-82.862866, 36.957765],\n          [-82.864211, 36.957983],\n          [-82.865404, 36.958084],\n          [-82.867358, 36.963182],\n          [-82.87023, 36.965498],\n          [-82.870274, 36.965993],\n          [-82.869183, 36.974182],\n          [-82.869183, 36.974183],\n          [-82.868455, 36.976481],\n          [-82.867535, 36.977518],\n          [-82.866689, 36.978052],\n          [-82.866019, 36.978272],\n          [-82.864909, 36.97901],\n          [-82.862926, 36.979975],\n          [-82.852614, 36.984963],\n          [-82.851397, 36.984497],\n          [-82.840051, 36.987113],\n          [-82.838549, 36.987027],\n          [-82.836008, 36.988837],\n          [-82.833843, 36.991973],\n          [-82.830802, 36.993445],\n          [-82.829125, 36.997541],\n          [-82.830588, 37.000945],\n          [-82.818006, 37.006161],\n          [-82.815748, 37.007196],\n          [-82.800531, 37.007944],\n          [-82.79089, 37.00676],\n          [-82.790462, 37.007263],\n          [-82.789092, 37.007995],\n          [-82.788897, 37.00816],\n          [-82.777368, 37.015279],\n          [-82.771795, 37.015716],\n          [-82.722472, 37.045101],\n          [-82.720597, 37.081833],\n          [-82.721941, 37.105689],\n          [-82.624878, 37.162932],\n          [-82.565375, 37.196092],\n          [-82.565329, 37.196118],\n          [-82.553549, 37.200867],\n          [-82.510826, 37.218091],\n          [-82.350948, 37.267077],\n          [-82.310793, 37.297387],\n          [-82.305874, 37.3011],\n          [-82.291908, 37.311642],\n          [-81.968297, 37.537798],\n          [-81.92787, 37.512118],\n          [-81.94264, 37.508844],\n          [-81.992916, 37.482969],\n          [-81.996578, 37.476705],\n          [-81.99227, 37.460916],\n          [-81.987006, 37.454878],\n          [-81.968795, 37.451496],\n          [-81.949367, 37.445687],\n          [-81.935621, 37.438397],\n          [-81.92749, 37.413251],\n          [-81.933895, 37.372747],\n          [-81.930194, 37.366728],\n          [-81.929915, 37.366589],\n          [-81.926589, 37.358942],\n          [-81.925643, 37.357316],\n          [-81.921571, 37.356423],\n          [-81.920711, 37.355416],\n          [-81.911487, 37.348839],\n          [-81.910875, 37.348729],\n          [-81.907895, 37.343783],\n          [-81.907322, 37.343119],\n          [-81.906368, 37.34276],\n          [-81.905945, 37.342775],\n          [-81.903795, 37.34305],\n          [-81.902992, 37.34234],\n          [-81.899495, 37.341102],\n          [-81.899459, 37.340277],\n          [-81.896001, 37.331967],\n          [-81.895489, 37.332022],\n          [-81.894797, 37.332012],\n          [-81.894768, 37.331381],\n          [-81.893773, 37.330105],\n          [-81.892876, 37.330134],\n          [-81.887722, 37.331156],\n          [-81.886952, 37.330725],\n          [-81.885075, 37.330665],\n          [-81.880886, 37.331146],\n          [-81.879601, 37.332074],\n          [-81.878713, 37.331753],\n          [-81.878343, 37.328837],\n          [-81.873213, 37.325065],\n          [-81.865219, 37.308839],\n          [-81.86476, 37.308404],\n          [-81.853978, 37.300418],\n          [-81.854465, 37.299937],\n          [-81.853488, 37.294763],\n          [-81.854059, 37.291352],\n          [-81.843167, 37.285586],\n          [-81.84231, 37.285556],\n          [-81.810559, 37.28298],\n          [-81.809184, 37.283003],\n          [-81.793639, 37.282188],\n          [-81.793425, 37.281674],\n          [-81.774747, 37.274847],\n          [-81.774684, 37.274807],\n          [-81.767837, 37.274216],\n          [-81.765195, 37.275099],\n          [-81.763836, 37.275218],\n          [-81.762776, 37.275391],\n          [-81.761752, 37.275713],\n          [-81.76022, 37.275254],\n          [-81.757631, 37.274003],\n          [-81.75773, 37.271934],\n          [-81.757714, 37.271124],\n          [-81.757531, 37.27001],\n          [-81.755012, 37.26772],\n          [-81.752912, 37.266614],\n          [-81.752123, 37.265568],\n          [-81.75129, 37.265131],\n          [-81.747656, 37.264329],\n          [-81.743505, 37.247601],\n          [-81.74342, 37.245858],\n          [-81.744291, 37.244178],\n          [-81.738378, 37.240917],\n          [-81.73332, 37.238127],\n          [-81.728194, 37.239823],\n          [-81.683544, 37.211452],\n          [-81.678603, 37.202467],\n          [-81.560625, 37.206663],\n          [-81.558353, 37.208145],\n          [-81.557315, 37.207697],\n          [-81.507325, 37.2338],\n          [-81.50488, 37.247697],\n          [-81.504168, 37.250115],\n          [-81.409729, 37.284837],\n          [-81.409196, 37.286071],\n          [-81.388132, 37.319903],\n          [-81.386727, 37.320474],\n          [-81.38581, 37.320085],\n          [-81.384914, 37.318832],\n          [-81.384127, 37.318596],\n          [-81.380159, 37.317838],\n          [-81.377349, 37.318447],\n          [-81.371315, 37.324115],\n          [-81.367599, 37.327569],\n          [-81.369379, 37.331827],\n          [-81.36809, 37.332423],\n          [-81.367052, 37.334504],\n          [-81.366315, 37.335927],\n          [-81.362156, 37.337687],\n          [-81.320105, 37.299323],\n          [-81.225104, 37.234874],\n          [-81.204774, 37.243013],\n          [-81.167029, 37.262881],\n          [-81.112596, 37.278497],\n          [-81.084012, 37.284401],\n          [-81.034652, 37.290751],\n          [-80.981322, 37.293465],\n          [-80.980044, 37.293118],\n          [-80.973889, 37.291444],\n          [-80.966556, 37.292158],\n          [-80.947896, 37.295872],\n          [-80.919259, 37.306163],\n          [-80.900535, 37.315],\n          [-80.849451, 37.346909],\n          [-80.872589, 37.372347],\n          [-80.862761, 37.411829],\n          [-80.859558, 37.429555],\n          [-80.859556, 37.429568],\n          [-80.858473, 37.428301],\n          [-80.85836, 37.428168],\n          [-80.811639, 37.407507],\n          [-80.798869, 37.395807],\n          [-80.776766, 37.384131],\n          [-80.776649, 37.383679],\n          [-80.770082, 37.372363],\n          [-80.622664, 37.433307],\n          [-80.511391, 37.481672],\n          [-80.494867, 37.43507],\n          [-80.475601, 37.422949],\n          [-80.46482, 37.426144],\n          [-80.443025, 37.438126],\n          [-80.425656, 37.449876],\n          [-80.320627, 37.49888],\n          [-80.314806, 37.500943],\n          [-80.330306, 37.536244],\n          [-80.312393, 37.546239],\n          [-80.288766, 37.58196],\n          [-80.240272, 37.606961],\n          [-80.223386, 37.623185],\n          [-80.220984, 37.627767],\n          [-80.239288, 37.637672],\n          [-80.254431, 37.642352],\n          [-80.254469, 37.642333],\n          [-80.263281, 37.645082],\n          [-80.263291, 37.645101],\n          [-80.26483, 37.645526],\n          [-80.264874, 37.645511],\n          [-80.267228, 37.646011],\n          [-80.267455, 37.646108],\n          [-80.270352, 37.648929],\n          [-80.270323, 37.648982],\n          [-80.292258, 37.683732],\n          [-80.292337, 37.683976],\n          [-80.296138, 37.691783],\n          [-80.287107, 37.696403],\n          [-80.263936, 37.719137],\n          [-80.259342, 37.731205],\n          [-80.260313, 37.733517],\n          [-80.262765, 37.738336],\n          [-80.257411, 37.756084],\n          [-80.231551, 37.792591],\n          [-80.227092, 37.798886],\n          [-80.162202, 37.875122],\n          [-80.148964, 37.886057],\n          [-80.147316, 37.885936],\n          [-80.14613, 37.884453],\n          [-80.130464, 37.893194],\n          [-80.055278, 37.951702],\n          [-80.002507, 37.992767],\n          [-79.978427, 38.029082],\n          [-79.959844, 38.063697],\n          [-79.933911, 38.099168],\n          [-79.931034, 38.101402],\n          [-79.938394, 38.130563],\n          [-79.933751, 38.135508],\n          [-79.928747, 38.144436],\n          [-79.928683, 38.144928],\n          [-79.925512, 38.150237],\n          [-79.925251, 38.150465],\n          [-79.921026, 38.179954],\n          [-79.921196, 38.180378],\n          [-79.917061, 38.183741],\n          [-79.916174, 38.184386],\n          [-79.892345, 38.202397],\n          [-79.891999, 38.203378],\n          [-79.794568, 38.264856],\n          [-79.790134, 38.267654],\n          [-79.788945, 38.268703],\n          [-79.810115, 38.305037],\n          [-79.808711, 38.309429],\n          [-79.731661, 38.374143],\n          [-79.691377, 38.439558],\n          [-79.689544, 38.442511],\n          [-79.688962, 38.449538],\n          [-79.688205, 38.450476],\n          [-79.699006, 38.475148],\n          [-79.695565, 38.477842],\n          [-79.669128, 38.510883],\n          [-79.669128, 38.510975],\n          [-79.649075, 38.591515],\n          [-79.597955, 38.572767],\n          [-79.555471, 38.560217],\n          [-79.53687, 38.550917],\n          [-79.521469, 38.533918],\n          [-79.476638, 38.457228],\n          [-79.312276, 38.411876],\n          [-79.297758, 38.416438],\n          [-79.295712, 38.418129],\n          [-79.291813, 38.419627],\n          [-79.290529, 38.420757],\n          [-79.280263, 38.425475],\n          [-79.282663, 38.431021],\n          [-79.267414, 38.438322],\n          [-79.265327, 38.441772],\n          [-79.263376, 38.443762],\n          [-79.26291, 38.444586],\n          [-79.242024, 38.464332],\n          [-79.240059, 38.469841],\n          [-79.234408, 38.473011],\n          [-79.23162, 38.474041],\n          [-79.225839, 38.479446],\n          [-79.210026, 38.494231],\n          [-79.210008, 38.494283],\n          [-79.209703, 38.495574],\n          [-79.207873, 38.500122],\n          [-79.207884, 38.500428],\n          [-79.174881, 38.566314],\n          [-79.174512, 38.566531],\n          [-79.146974, 38.625641],\n          [-79.146741, 38.625819],\n          [-79.137012, 38.640655],\n          [-79.136374, 38.6424],\n          [-79.135546, 38.643715],\n          [-79.135472, 38.644057],\n          [-79.092271, 38.699208],\n          [-79.092555, 38.700149],\n          [-79.057253, 38.761413],\n          [-79.055354, 38.782213],\n          [-78.999752, 38.846162],\n          [-78.993997, 38.850102]\n        ]\n      },\n      \"properties\": {},\n      \"type\": \"Feature\"\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.551513671875, 36.29741818650811],\n            [-76.475830078125, 36.29741818650811],\n            [-76.475830078125, 39.58875727696545],\n            [-81.551513671875, 39.58875727696545],\n            [-81.551513671875, 36.29741818650811]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/test/in/multi-linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-79.2498779296875, 38.74123075381231],\n            [-78.6676025390625, 39.01918369029137],\n            [-78.629150390625, 38.6897975322717],\n            [-78.1402587890625, 39.031986028740086],\n            [-77.7667236328125, 38.5825261593533]\n          ],\n          [\n            [-79.189453125, 38.929502416386605],\n            [-78.6346435546875, 39.15988184949157],\n            [-78.4149169921875, 39.031986028740086],\n            [-78.0194091796875, 39.2832938689385],\n            [-77.5579833984375, 38.65119833229951]\n          ],\n          [\n            [-77.1240234375, 39.51251701659638],\n            [-77.618408203125, 39.24927084622338],\n            [-77.0855712890625, 38.886757140695906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78.3929443359375, 38.49229419236133],\n            [-76.9097900390625, 38.49229419236133],\n            [-76.9097900390625, 39.56758783088905],\n            [-78.3929443359375, 39.56758783088905],\n            [-78.3929443359375, 38.49229419236133]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/test/in/multi-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-78.869276, 38.762991],\n              [-78.993997, 38.850102],\n              [-78.999752, 38.846162],\n              [-79.055354, 38.782213],\n              [-79.057253, 38.761413],\n              [-79.092555, 38.700149],\n              [-79.092271, 38.699208],\n              [-79.135472, 38.644057],\n              [-79.135546, 38.643715],\n              [-79.136374, 38.6424],\n              [-79.137012, 38.640655],\n              [-79.146741, 38.625819],\n              [-79.146974, 38.625641],\n              [-79.174512, 38.566531],\n              [-79.174881, 38.566314],\n              [-79.207884, 38.500428],\n              [-79.207873, 38.500122],\n              [-79.209703, 38.495574],\n              [-79.210008, 38.494283],\n              [-79.210026, 38.494231],\n              [-79.225839, 38.479446],\n              [-79.23162, 38.474041],\n              [-79.234408, 38.473011],\n              [-79.240059, 38.469841],\n              [-79.242024, 38.464332],\n              [-79.26291, 38.444586],\n              [-79.263376, 38.443762],\n              [-79.265327, 38.441772],\n              [-79.267414, 38.438322],\n              [-79.282663, 38.431021],\n              [-79.280263, 38.425475],\n              [-79.290529, 38.420757],\n              [-79.291813, 38.419627],\n              [-79.295712, 38.418129],\n              [-79.297758, 38.416438],\n              [-79.312276, 38.411876],\n              [-79.476638, 38.457228],\n              [-79.521469, 38.533918],\n              [-79.53687, 38.550917],\n              [-79.555471, 38.560217],\n              [-79.597955, 38.572767],\n              [-79.649075, 38.591515],\n              [-79.669128, 38.510975],\n              [-79.669128, 38.510883],\n              [-79.695565, 38.477842],\n              [-79.699006, 38.475148],\n              [-79.688205, 38.450476],\n              [-79.688962, 38.449538],\n              [-79.689544, 38.442511],\n              [-79.691377, 38.439558],\n              [-79.731661, 38.374143],\n              [-79.808711, 38.309429],\n              [-79.810115, 38.305037],\n              [-79.788945, 38.268703],\n              [-79.790134, 38.267654],\n              [-79.794568, 38.264856],\n              [-79.891999, 38.203378],\n              [-79.892345, 38.202397],\n              [-79.916174, 38.184386],\n              [-79.917061, 38.183741],\n              [-79.921196, 38.180378],\n              [-79.921026, 38.179954],\n              [-79.925251, 38.150465],\n              [-79.925512, 38.150237],\n              [-79.928683, 38.144928],\n              [-79.928747, 38.144436],\n              [-79.933751, 38.135508],\n              [-79.938394, 38.130563],\n              [-79.931034, 38.101402],\n              [-79.933911, 38.099168],\n              [-79.959844, 38.063697],\n              [-79.978427, 38.029082],\n              [-80.002507, 37.992767],\n              [-80.055278, 37.951702],\n              [-80.130464, 37.893194],\n              [-80.14613, 37.884453],\n              [-80.147316, 37.885936],\n              [-80.148964, 37.886057],\n              [-80.162202, 37.875122],\n              [-80.227092, 37.798886],\n              [-80.231551, 37.792591],\n              [-80.257411, 37.756084],\n              [-80.262765, 37.738336],\n              [-80.260313, 37.733517],\n              [-80.259342, 37.731205],\n              [-80.263936, 37.719137],\n              [-80.287107, 37.696403],\n              [-80.296138, 37.691783],\n              [-80.292337, 37.683976],\n              [-80.292258, 37.683732],\n              [-80.270323, 37.648982],\n              [-80.270352, 37.648929],\n              [-80.267455, 37.646108],\n              [-80.267228, 37.646011],\n              [-80.264874, 37.645511],\n              [-80.26483, 37.645526],\n              [-80.263291, 37.645101],\n              [-80.263281, 37.645082],\n              [-80.254469, 37.642333],\n              [-80.254431, 37.642352],\n              [-80.239288, 37.637672],\n              [-80.220984, 37.627767],\n              [-80.223386, 37.623185],\n              [-80.240272, 37.606961],\n              [-80.288766, 37.58196],\n              [-80.312393, 37.546239],\n              [-80.330306, 37.536244],\n              [-80.314806, 37.500943],\n              [-80.320627, 37.49888],\n              [-80.425656, 37.449876],\n              [-80.443025, 37.438126],\n              [-80.46482, 37.426144],\n              [-80.475601, 37.422949],\n              [-80.494867, 37.43507],\n              [-80.511391, 37.481672],\n              [-80.622664, 37.433307],\n              [-80.770082, 37.372363],\n              [-80.776649, 37.383679],\n              [-80.776766, 37.384131],\n              [-80.798869, 37.395807],\n              [-80.811639, 37.407507],\n              [-80.85836, 37.428168],\n              [-80.858473, 37.428301],\n              [-80.859556, 37.429568],\n              [-80.859558, 37.429555],\n              [-80.862761, 37.411829],\n              [-80.872589, 37.372347],\n              [-80.849451, 37.346909],\n              [-80.900535, 37.315],\n              [-80.919259, 37.306163],\n              [-80.947896, 37.295872],\n              [-80.966556, 37.292158],\n              [-80.973889, 37.291444],\n              [-80.980044, 37.293118],\n              [-80.981322, 37.293465],\n              [-81.034652, 37.290751],\n              [-81.084012, 37.284401],\n              [-81.112596, 37.278497],\n              [-81.167029, 37.262881],\n              [-81.204774, 37.243013],\n              [-81.225104, 37.234874],\n              [-81.320105, 37.299323],\n              [-81.362156, 37.337687],\n              [-81.366315, 37.335927],\n              [-81.367052, 37.334504],\n              [-81.36809, 37.332423],\n              [-81.369379, 37.331827],\n              [-81.367599, 37.327569],\n              [-81.371315, 37.324115],\n              [-81.377349, 37.318447],\n              [-81.380159, 37.317838],\n              [-81.384127, 37.318596],\n              [-81.384914, 37.318832],\n              [-81.38581, 37.320085],\n              [-81.386727, 37.320474],\n              [-81.388132, 37.319903],\n              [-81.409196, 37.286071],\n              [-81.409729, 37.284837],\n              [-81.504168, 37.250115],\n              [-81.50488, 37.247697],\n              [-81.507325, 37.2338],\n              [-81.557315, 37.207697],\n              [-81.558353, 37.208145],\n              [-81.560625, 37.206663],\n              [-81.678603, 37.202467],\n              [-81.683544, 37.211452],\n              [-81.728194, 37.239823],\n              [-81.73332, 37.238127],\n              [-81.738378, 37.240917],\n              [-81.744291, 37.244178],\n              [-81.74342, 37.245858],\n              [-81.743505, 37.247601],\n              [-81.747656, 37.264329],\n              [-81.75129, 37.265131],\n              [-81.752123, 37.265568],\n              [-81.752912, 37.266614],\n              [-81.755012, 37.26772],\n              [-81.757531, 37.27001],\n              [-81.757714, 37.271124],\n              [-81.75773, 37.271934],\n              [-81.757631, 37.274003],\n              [-81.76022, 37.275254],\n              [-81.761752, 37.275713],\n              [-81.762776, 37.275391],\n              [-81.763836, 37.275218],\n              [-81.765195, 37.275099],\n              [-81.767837, 37.274216],\n              [-81.774684, 37.274807],\n              [-81.774747, 37.274847],\n              [-81.793425, 37.281674],\n              [-81.793639, 37.282188],\n              [-81.809184, 37.283003],\n              [-81.810559, 37.28298],\n              [-81.84231, 37.285556],\n              [-81.843167, 37.285586],\n              [-81.854059, 37.291352],\n              [-81.853488, 37.294763],\n              [-81.854465, 37.299937],\n              [-81.853978, 37.300418],\n              [-81.86476, 37.308404],\n              [-81.865219, 37.308839],\n              [-81.873213, 37.325065],\n              [-81.878343, 37.328837],\n              [-81.878713, 37.331753],\n              [-81.879601, 37.332074],\n              [-81.880886, 37.331146],\n              [-81.885075, 37.330665],\n              [-81.886952, 37.330725],\n              [-81.887722, 37.331156],\n              [-81.892876, 37.330134],\n              [-81.893773, 37.330105],\n              [-81.894768, 37.331381],\n              [-81.894797, 37.332012],\n              [-81.895489, 37.332022],\n              [-81.896001, 37.331967],\n              [-81.899459, 37.340277],\n              [-81.899495, 37.341102],\n              [-81.902992, 37.34234],\n              [-81.903795, 37.34305],\n              [-81.905945, 37.342775],\n              [-81.906368, 37.34276],\n              [-81.907322, 37.343119],\n              [-81.907895, 37.343783],\n              [-81.910875, 37.348729],\n              [-81.911487, 37.348839],\n              [-81.920711, 37.355416],\n              [-81.921571, 37.356423],\n              [-81.925643, 37.357316],\n              [-81.926589, 37.358942],\n              [-81.929915, 37.366589],\n              [-81.930194, 37.366728],\n              [-81.933895, 37.372747],\n              [-81.92749, 37.413251],\n              [-81.935621, 37.438397],\n              [-81.949367, 37.445687],\n              [-81.968795, 37.451496],\n              [-81.987006, 37.454878],\n              [-81.99227, 37.460916],\n              [-81.996578, 37.476705],\n              [-81.992916, 37.482969],\n              [-81.94264, 37.508844],\n              [-81.92787, 37.512118],\n              [-81.968297, 37.537798],\n              [-82.291908, 37.311642],\n              [-82.305874, 37.3011],\n              [-82.310793, 37.297387],\n              [-82.350948, 37.267077],\n              [-82.510826, 37.218091],\n              [-82.553549, 37.200867],\n              [-82.565329, 37.196118],\n              [-82.565375, 37.196092],\n              [-82.624878, 37.162932],\n              [-82.721941, 37.105689],\n              [-82.720597, 37.081833],\n              [-82.722472, 37.045101],\n              [-82.771795, 37.015716],\n              [-82.777368, 37.015279],\n              [-82.788897, 37.00816],\n              [-82.789092, 37.007995],\n              [-82.790462, 37.007263],\n              [-82.79089, 37.00676],\n              [-82.800531, 37.007944],\n              [-82.815748, 37.007196],\n              [-82.818006, 37.006161],\n              [-82.830588, 37.000945],\n              [-82.829125, 36.997541],\n              [-82.830802, 36.993445],\n              [-82.833843, 36.991973],\n              [-82.836008, 36.988837],\n              [-82.838549, 36.987027],\n              [-82.840051, 36.987113],\n              [-82.851397, 36.984497],\n              [-82.852614, 36.984963],\n              [-82.862926, 36.979975],\n              [-82.864909, 36.97901],\n              [-82.866019, 36.978272],\n              [-82.866689, 36.978052],\n              [-82.867535, 36.977518],\n              [-82.868455, 36.976481],\n              [-82.869183, 36.974183],\n              [-82.869183, 36.974182],\n              [-82.870274, 36.965993],\n              [-82.87023, 36.965498],\n              [-82.867358, 36.963182],\n              [-82.865404, 36.958084],\n              [-82.864211, 36.957983],\n              [-82.862866, 36.957765],\n              [-82.860534, 36.956015],\n              [-82.858443, 36.954036],\n              [-82.855705, 36.953808],\n              [-82.856099, 36.952471],\n              [-82.860633, 36.94584],\n              [-82.861282, 36.944848],\n              [-82.861684, 36.939316],\n              [-82.860537, 36.937439],\n              [-82.858784, 36.933065],\n              [-82.858461, 36.932717],\n              [-82.861943, 36.924236],\n              [-82.863468, 36.922308],\n              [-82.872136, 36.913456],\n              [-82.873777, 36.912299],\n              [-82.885618, 36.900415],\n              [-82.91169, 36.874248],\n              [-82.911824, 36.874243],\n              [-82.973395, 36.859097],\n              [-83.07259, 36.854589],\n              [-83.099792, 36.824889],\n              [-83.131694, 36.781488],\n              [-83.131245, 36.767105],\n              [-83.125655, 36.761407],\n              [-83.125728, 36.761276],\n              [-83.127833, 36.750828],\n              [-83.136395, 36.743088],\n              [-83.167396, 36.739187],\n              [-83.199698, 36.737487],\n              [-83.342804, 36.701286],\n              [-83.353613, 36.696699],\n              [-83.354606, 36.696153],\n              [-83.460808, 36.664885],\n              [-83.461013, 36.664916],\n              [-83.498011, 36.670485],\n              [-83.527212, 36.665984],\n              [-83.649513, 36.616683],\n              [-83.675413, 36.600814],\n              [-83.670141, 36.600797],\n              [-83.670128, 36.600764],\n              [-83.472108, 36.597284],\n              [-83.2763, 36.598187],\n              [-83.250304, 36.593935],\n              [-83.249899, 36.593898],\n              [-83.248933, 36.593827],\n              [-83.028357, 36.593893],\n              [-83.02725, 36.593847],\n              [-82.985087, 36.593829],\n              [-82.830433, 36.593761],\n              [-82.69578, 36.593698],\n              [-82.679879, 36.593698],\n              [-82.609176, 36.594099],\n              [-82.561074, 36.5948],\n              [-82.559774, 36.5948],\n              [-82.554294, 36.594876],\n              [-82.293814, 36.595565],\n              [-82.243274, 36.595699],\n              [-82.226653, 36.595743],\n              [-82.225716, 36.595744],\n              [-82.223445, 36.595721],\n              [-82.221713, 36.595814],\n              [-82.211005, 36.59586],\n              [-82.210497, 36.595772],\n              [-82.188491, 36.595179],\n              [-82.18074, 36.594928],\n              [-82.177247, 36.594768],\n              [-82.173982, 36.594607],\n              [-82.150727, 36.594673],\n              [-82.148569, 36.594718],\n              [-82.14607, 36.594712],\n              [-81.934144, 36.594213],\n              [-81.922644, 36.616213],\n              [-81.826742, 36.614215],\n              [-81.6469, 36.611918],\n              [-81.677535, 36.588117],\n              [-81.60697, 36.587094],\n              [-81.521032, 36.58052],\n              [-81.353322, 36.574723],\n              [-81.353169, 36.574724],\n              [-81.307511, 36.575024],\n              [-81.061866, 36.56702],\n              [-81.058844, 36.566976],\n              [-80.945988, 36.563196],\n              [-80.944338, 36.563058],\n              [-80.901836, 36.561754],\n              [-80.901726, 36.561751],\n              [-80.837954, 36.559131],\n              [-80.837641, 36.559118],\n              [-80.837089, 36.559154],\n              [-80.744101, 36.561686],\n              [-80.687539, 36.561411],\n              [-80.612158, 36.558127],\n              [-80.4401, 36.55063],\n              [-80.432628, 36.550302],\n              [-80.431605, 36.550219],\n              [-80.228263, 36.543867],\n              [-80.225408, 36.543748],\n              [-80.171636, 36.543219],\n              [-80.169535, 36.54319],\n              [-80.053455, 36.542623],\n              [-80.027269, 36.542495],\n              [-79.967511, 36.542502],\n              [-79.966979, 36.542475],\n              [-79.920239, 36.542365],\n              [-79.714855, 36.541884],\n              [-79.667309, 36.541772],\n              [-79.666827, 36.541772],\n              [-79.510961, 36.54074],\n              [-79.510647, 36.540738],\n              [-79.470047, 36.541025],\n              [-79.445961, 36.541195],\n              [-79.445687, 36.541218],\n              [-79.342696, 36.541382],\n              [-79.218638, 36.541579],\n              [-79.20948, 36.541594],\n              [-79.208686, 36.541571],\n              [-79.137936, 36.541739],\n              [-79.126078, 36.541533],\n              [-79.124736, 36.541568],\n              [-78.971814, 36.542123],\n              [-78.970577, 36.542154],\n              [-78.942254, 36.542079],\n              [-78.942009, 36.542113],\n              [-78.91542, 36.541974],\n              [-78.914543, 36.541972],\n              [-78.7963, 36.541713],\n              [-78.76543, 36.541727],\n              [-78.758392, 36.541852],\n              [-78.734122, 36.541902],\n              [-78.670051, 36.542035],\n              [-78.663317, 36.542011],\n              [-78.533013, 36.541004],\n              [-78.529722, 36.540981],\n              [-78.471022, 36.542307],\n              [-78.470792, 36.542316],\n              [-78.45697, 36.542474],\n              [-78.441199, 36.542687],\n              [-78.436333, 36.542666],\n              [-78.323912, 36.543809],\n              [-78.246681, 36.544341],\n              [-78.245462, 36.544411],\n              [-78.133323, 36.543847],\n              [-78.132911, 36.543811],\n              [-78.046202, 36.544168],\n              [-78.03942, 36.544196],\n              [-78.038938, 36.544173],\n              [-77.899771, 36.544663],\n              [-77.882357, 36.544737],\n              [-77.87528, 36.544754],\n              [-77.767117, 36.544752],\n              [-77.296875, 36.544746],\n              [-77.24969, 36.544745],\n              [-77.1645, 36.54633],\n              [-76.916048, 36.543815],\n              [-76.916001, 36.543818],\n              [-76.915384, 36.543856],\n              [-76.807078, 36.550606],\n              [-76.781296, 36.550659],\n              [-76.541687, 36.550312],\n              [-76.541391, 36.550312],\n              [-76.491497, 36.550365],\n              [-76.313215, 36.550551],\n              [-76.313196, 36.550551],\n              [-76.12236, 36.550621],\n              [-76.034751, 36.550653],\n              [-76.02675, 36.550553],\n              [-75.957648, 36.550553],\n              [-75.955748, 36.550553],\n              [-75.953447, 36.550553],\n              [-75.952847, 36.550553],\n              [-75.922046, 36.550654],\n              [-75.911446, 36.550654],\n              [-75.909046, 36.550654],\n              [-75.904745, 36.550654],\n              [-75.903445, 36.550654],\n              [-75.894145, 36.550754],\n              [-75.893245, 36.550654],\n              [-75.891945, 36.550754],\n              [-75.886545, 36.550754],\n              [-75.885945, 36.550754],\n              [-75.880644, 36.550754],\n              [-75.879744, 36.550754],\n              [-75.867044, 36.550754],\n              [-75.874145, 36.583853],\n              [-75.890946, 36.630753],\n              [-75.921748, 36.692051],\n              [-75.94955, 36.76115],\n              [-75.965451, 36.812449],\n              [-75.972151, 36.842268],\n              [-75.991552, 36.910847],\n              [-75.996252, 36.922047],\n              [-76.007553, 36.929047],\n              [-76.013753, 36.930746],\n              [-76.033454, 36.931946],\n              [-76.043054, 36.927547],\n              [-76.058154, 36.916947],\n              [-76.087955, 36.908647],\n              [-76.095508, 36.908817],\n              [-76.139557, 36.923047],\n              [-76.177019, 36.92929],\n              [-76.189959, 36.931447],\n              [-76.22166, 36.939547],\n              [-76.234961, 36.945147],\n              [-76.267962, 36.964547],\n              [-76.285063, 36.968747],\n              [-76.297663, 36.968147],\n              [-76.299364, 36.965547],\n              [-76.315867, 36.955351],\n              [-76.322764, 36.959147],\n              [-76.327365, 36.959447],\n              [-76.330765, 36.938647],\n              [-76.328864, 36.918447],\n              [-76.333158, 36.917293],\n              [-76.344663, 36.919313],\n              [-76.345569, 36.924531],\n              [-76.353765, 36.922747],\n              [-76.385867, 36.923247],\n              [-76.387567, 36.899547],\n              [-76.406908, 36.897507],\n              [-76.407507, 36.897444],\n              [-76.43122, 36.904532],\n              [-76.441605, 36.906116],\n              [-76.447413, 36.90322],\n              [-76.453941, 36.89274],\n              [-76.45329, 36.887031],\n              [-76.454692, 36.884077],\n              [-76.469914, 36.882898],\n              [-76.483369, 36.896239],\n              [-76.482135, 36.901108],\n              [-76.482407, 36.917364],\n              [-76.484107, 36.928916],\n              [-76.487559, 36.952372],\n              [-76.500355, 36.965212],\n              [-76.513363, 36.968057],\n              [-76.521006, 36.973187],\n              [-76.524142, 36.978316],\n              [-76.522971, 36.981085],\n              [-76.524853, 36.983833],\n              [-76.551246, 36.998946],\n              [-76.562923, 37.003796],\n              [-76.565803, 37.007493],\n              [-76.576617, 37.021374],\n              [-76.577531, 37.022548],\n              [-76.57816, 37.022982],\n              [-76.579236, 37.023726],\n              [-76.579393, 37.023835],\n              [-76.584478, 37.027349],\n              [-76.586491, 37.02874],\n              [-76.612124, 37.035604],\n              [-76.646013, 37.036228],\n              [-76.653998, 37.039172],\n              [-76.662558, 37.045748],\n              [-76.66835, 37.05506],\n              [-76.669822, 37.06426],\n              [-76.669118, 37.068132],\n              [-76.668295, 37.072656],\n              [-76.667646, 37.076228],\n              [-76.667219, 37.077149],\n              [-76.666526, 37.078643],\n              [-76.66555, 37.080746],\n              [-76.659394, 37.094019],\n              [-76.65811, 37.096787],\n              [-76.657703, 37.101161],\n              [-76.657101, 37.107617],\n              [-76.656894, 37.109843],\n              [-76.66375, 37.129979],\n              [-76.665641, 37.135534],\n              [-76.665833, 37.136098],\n              [-76.666542, 37.138179],\n              [-76.669604, 37.140534],\n              [-76.671588, 37.14206],\n              [-76.67147, 37.158739],\n              [-76.66867, 37.166771],\n              [-76.66427, 37.171027],\n              [-76.663774, 37.173875],\n              [-76.669886, 37.183571],\n              [-76.685614, 37.198851],\n              [-76.691918, 37.195731],\n              [-76.692926, 37.186147],\n              [-76.696735, 37.174403],\n              [-76.715295, 37.148035],\n              [-76.73032, 37.145395],\n              [-76.73728, 37.146164],\n              [-76.747632, 37.150548],\n              [-76.756899, 37.161582],\n              [-76.796905, 37.189404],\n              [-76.802511, 37.198308],\n              [-76.803198, 37.201513],\n              [-76.801023, 37.206043],\n              [-76.791555, 37.207564],\n              [-76.780532, 37.209336],\n              [-76.773752, 37.206061],\n              [-76.757765, 37.191658],\n              [-76.75047, 37.190098],\n              [-76.74304, 37.192611],\n              [-76.74, 37.195379],\n              [-76.73432, 37.204211],\n              [-76.730951, 37.213813],\n              [-76.698943, 37.219059],\n              [-76.693373, 37.221228],\n              [-76.689166, 37.222866],\n              [-76.649869, 37.220914],\n              [-76.641085, 37.216002],\n              [-76.639608, 37.214783],\n              [-76.629868, 37.206738],\n              [-76.623292, 37.198738],\n              [-76.621113, 37.195103],\n              [-76.619962, 37.193184],\n              [-76.61934, 37.192146],\n              [-76.618008, 37.186429],\n              [-76.617537, 37.184409],\n              [-76.616804, 37.18126],\n              [-76.616268, 37.178962],\n              [-76.614221, 37.174335],\n              [-76.613599, 37.172931],\n              [-76.612517, 37.170486],\n              [-76.611018, 37.167097],\n              [-76.610972, 37.166994],\n              [-76.606684, 37.166674],\n              [-76.604476, 37.160034],\n              [-76.617084, 37.144498],\n              [-76.622252, 37.142146],\n              [-76.62478, 37.127091],\n              [-76.618252, 37.119347],\n              [-76.579499, 37.096627],\n              [-76.567931, 37.080467],\n              [-76.564219, 37.077507],\n              [-76.555066, 37.075859],\n              [-76.536875, 37.083942],\n              [-76.528997, 37.079388],\n              [-76.526203, 37.077773],\n              [-76.526573, 37.070047],\n              [-76.527973, 37.068247],\n              [-76.526273, 37.062947],\n              [-76.518242, 37.055351],\n              [-76.512289, 37.054858],\n              [-76.509339, 37.053173],\n              [-76.507614, 37.052188],\n              [-76.46949, 37.030414],\n              [-76.464471, 37.027547],\n              [-76.448231, 37.007705],\n              [-76.449891, 37.004868],\n              [-76.452461, 37.004603],\n              [-76.452118, 36.998163],\n              [-76.428869, 36.969947],\n              [-76.418969, 36.964047],\n              [-76.411768, 36.962847],\n              [-76.408568, 36.969147],\n              [-76.396368, 36.982347],\n              [-76.387711, 36.989671],\n              [-76.383367, 36.993347],\n              [-76.373567, 36.998347],\n              [-76.356366, 37.002947],\n              [-76.348066, 37.006747],\n              [-76.340666, 37.015246],\n              [-76.34011, 37.015212],\n              [-76.329531, 37.014556],\n              [-76.318065, 37.013846],\n              [-76.314624, 37.00933],\n              [-76.315008, 37.001683],\n              [-76.312048, 37.000371],\n              [-76.304272, 37.001378],\n              [-76.300352, 37.00885],\n              [-76.292863, 37.035145],\n              [-76.271262, 37.084544],\n              [-76.274463, 37.094544],\n              [-76.287236, 37.117453],\n              [-76.292344, 37.126615],\n              [-76.311088, 37.138495],\n              [-76.324353, 37.142895],\n              [-76.330481, 37.141727],\n              [-76.334017, 37.144223],\n              [-76.340129, 37.151823],\n              [-76.34405, 37.160367],\n              [-76.344898, 37.164479],\n              [-76.343234, 37.166207],\n              [-76.348658, 37.170655],\n              [-76.35969, 37.16858],\n              [-76.375255, 37.16084],\n              [-76.381379, 37.155711],\n              [-76.394756, 37.157568],\n              [-76.399659, 37.160272],\n              [-76.397883, 37.164415],\n              [-76.391252, 37.179887],\n              [-76.389284, 37.193503],\n              [-76.396052, 37.201087],\n              [-76.3936, 37.214049],\n              [-76.389793, 37.222981],\n              [-76.394132, 37.22515],\n              [-76.471799, 37.216016],\n              [-76.494008, 37.225408],\n              [-76.50364, 37.233856],\n              [-76.4989, 37.241015],\n              [-76.493302, 37.24947],\n              [-76.48284, 37.254831],\n              [-76.475927, 37.250543],\n              [-76.429141, 37.25331],\n              [-76.421765, 37.255198],\n              [-76.417173, 37.26395],\n              [-76.392788, 37.264973],\n              [-76.36229, 37.270226],\n              [-76.349489, 37.273963],\n              [-76.352556, 37.278334],\n              [-76.369029, 37.279311],\n              [-76.381075, 37.28534],\n              [-76.385603, 37.294108],\n              [-76.38777, 37.30767],\n              [-76.406388, 37.332924],\n              [-76.434965, 37.354524],\n              [-76.445333, 37.36646],\n              [-76.437525, 37.37975],\n              [-76.422503, 37.381355],\n              [-76.418176, 37.385064],\n              [-76.418719, 37.3978],\n              [-76.415167, 37.402133],\n              [-76.404756, 37.400213],\n              [-76.393125, 37.398068],\n              [-76.393958, 37.39594],\n              [-76.391437, 37.390284],\n              [-76.387112, 37.385061],\n              [-76.366751, 37.374495],\n              [-76.337476, 37.364014],\n              [-76.31205, 37.338088],\n              [-76.308581, 37.329366],\n              [-76.291324, 37.324145],\n              [-76.282555, 37.319107],\n              [-76.275552, 37.309964],\n              [-76.272005, 37.322194],\n              [-76.272888, 37.335174],\n              [-76.264847, 37.357399],\n              [-76.262407, 37.360786],\n              [-76.258277, 37.36202],\n              [-76.24846, 37.375135],\n              [-76.245283, 37.386839],\n              [-76.246617, 37.404122],\n              [-76.250454, 37.421886],\n              [-76.252415, 37.447274],\n              [-76.265056, 37.481365],\n              [-76.281043, 37.507821],\n              [-76.288167, 37.514118],\n              [-76.293599, 37.516499],\n              [-76.297651, 37.515424],\n              [-76.298456, 37.512677],\n              [-76.296445, 37.511235],\n              [-76.297739, 37.506863],\n              [-76.306952, 37.497488],\n              [-76.32947, 37.49492],\n              [-76.352678, 37.504913],\n              [-76.359378, 37.513426],\n              [-76.360474, 37.51924],\n              [-76.355084, 37.527364],\n              [-76.348992, 37.536548],\n              [-76.339989, 37.53833],\n              [-76.330598, 37.536391],\n              [-76.302762, 37.551295],\n              [-76.29796, 37.557636],\n              [-76.300144, 37.561734],\n              [-76.332641, 37.570042],\n              [-76.357835, 37.573699],\n              [-76.383188, 37.573056],\n              [-76.410781, 37.581815],\n              [-76.420252, 37.598686],\n              [-76.435474, 37.612807],\n              [-76.527188, 37.611315],\n              [-76.533777, 37.61253],\n              [-76.542666, 37.616857],\n              [-76.574049, 37.646781],\n              [-76.583143, 37.661986],\n              [-76.579591, 37.671508],\n              [-76.597868, 37.702918],\n              [-76.598073, 37.70912],\n              [-76.595943, 37.712989],\n              [-76.597213, 37.717269],\n              [-76.606466, 37.724819],\n              [-76.61997, 37.731271],\n              [-76.621433, 37.737973],\n              [-76.617373, 37.742347],\n              [-76.61971, 37.744795],\n              [-76.639962, 37.750941],\n              [-76.663887, 37.751887],\n              [-76.677002, 37.7561],\n              [-76.680922, 37.759647],\n              [-76.683372, 37.765507],\n              [-76.683359, 37.770258],\n              [-76.683343, 37.775783],\n              [-76.681901, 37.778118],\n              [-76.683775, 37.781391],\n              [-76.689773, 37.78519],\n              [-76.715498, 37.785873],\n              [-76.723863, 37.788503],\n              [-76.734309, 37.79866],\n              [-76.7512, 37.824141],\n              [-76.766328, 37.840437],\n              [-76.782826, 37.863184],\n              [-76.784618, 37.869569],\n              [-76.77539, 37.874306],\n              [-76.765711, 37.879274],\n              [-76.747552, 37.875864],\n              [-76.738395, 37.865373],\n              [-76.733046, 37.852009],\n              [-76.72718, 37.842263],\n              [-76.722156, 37.83668],\n              [-76.701606, 37.822677],\n              [-76.692747, 37.82277],\n              [-76.680197, 37.825654],\n              [-76.658302, 37.806815],\n              [-76.651413, 37.796239],\n              [-76.642276, 37.792317],\n              [-76.615351, 37.780759],\n              [-76.602024, 37.772731],\n              [-76.595939, 37.77168],\n              [-76.593835, 37.772848],\n              [-76.584289, 37.76889],\n              [-76.576387, 37.757493],\n              [-76.560476, 37.727827],\n              [-76.54005, 37.704432],\n              [-76.537228, 37.698892],\n              [-76.535302, 37.687516],\n              [-76.537698, 37.66893],\n              [-76.536548, 37.663574],\n              [-76.510187, 37.642324],\n              [-76.501522, 37.643762],\n              [-76.497564, 37.647056],\n              [-76.491799, 37.663614],\n              [-76.489576, 37.666201],\n              [-76.472392, 37.665772],\n              [-76.443254, 37.652347],\n              [-76.399236, 37.628636],\n              [-76.390054, 37.630326],\n              [-76.381106, 37.627003],\n              [-76.36232, 37.610368],\n              [-76.309174, 37.621892],\n              [-76.28037, 37.613715],\n              [-76.279447, 37.618225],\n              [-76.287959, 37.631771],\n              [-76.292534, 37.636098],\n              [-76.306464, 37.642005],\n              [-76.332562, 37.645817],\n              [-76.339892, 37.655966],\n              [-76.324808, 37.676983],\n              [-76.320216, 37.680666],\n              [-76.315161, 37.68472],\n              [-76.312079, 37.684651],\n              [-76.302545, 37.689],\n              [-76.300067, 37.695364],\n              [-76.302803, 37.704474],\n              [-76.312858, 37.720338],\n              [-76.304917, 37.729913],\n              [-76.312108, 37.750522],\n              [-76.306489, 37.788646],\n              [-76.310307, 37.794849],\n              [-76.307482, 37.81235],\n              [-76.293525, 37.822717],\n              [-76.284904, 37.822308],\n              [-76.281985, 37.818068],\n              [-76.282592, 37.814109],\n              [-76.280544, 37.812597],\n              [-76.275178, 37.812664],\n              [-76.266057, 37.8174],\n              [-76.251358, 37.833072],\n              [-76.245072, 37.861918],\n              [-76.236725, 37.889174],\n              [-76.265998, 37.91138],\n              [-76.343848, 37.947345],\n              [-76.360211, 37.952329],\n              [-76.391439, 37.958742],\n              [-76.416299, 37.966828],\n              [-76.427487, 37.977038],\n              [-76.462542, 37.998572],\n              [-76.465291, 38.010226],\n              [-76.469343, 38.013544],\n              [-76.491998, 38.017222],\n              [-76.516547, 38.026566],\n              [-76.519536, 38.034814],\n              [-76.522354, 38.04259],\n              [-76.535919, 38.069532],\n              [-76.543155, 38.076971],\n              [-76.579497, 38.09487],\n              [-76.600937, 38.110084],\n              [-76.604131, 38.128771],\n              [-76.613939, 38.148587],\n              [-76.629476, 38.15305],\n              [-76.638983, 38.151476],\n              [-76.643448, 38.14825],\n              [-76.665127, 38.147638],\n              [-76.684892, 38.156497],\n              [-76.701297, 38.155718],\n              [-76.704048, 38.149264],\n              [-76.721722, 38.137635],\n              [-76.738938, 38.14651],\n              [-76.740278, 38.152824],\n              [-76.743064, 38.156988],\n              [-76.749685, 38.162114],\n              [-76.760241, 38.166581],\n              [-76.788445, 38.169199],\n              [-76.802968, 38.167988],\n              [-76.824274, 38.163639],\n              [-76.838795, 38.163476],\n              [-76.875272, 38.172207],\n              [-76.910832, 38.197073],\n              [-76.916922, 38.199751],\n              [-76.937134, 38.202384],\n              [-76.962311, 38.214075],\n              [-76.967335, 38.227185],\n              [-76.966553, 38.229542],\n              [-76.962375, 38.230093],\n              [-76.957417, 38.236341],\n              [-76.957796, 38.243183],\n              [-76.96215, 38.256486],\n              [-76.981372, 38.274214],\n              [-76.990255, 38.273935],\n              [-76.99767, 38.278047],\n              [-77.026304, 38.302685],\n              [-77.030683, 38.311623],\n              [-77.020947, 38.329273],\n              [-77.016932, 38.341697],\n              [-77.011827, 38.374554],\n              [-77.024866, 38.386791],\n              [-77.043526, 38.400548],\n              [-77.051437, 38.399083],\n              [-77.056032, 38.3962],\n              [-77.069956, 38.377895],\n              [-77.08481, 38.368297],\n              [-77.094665, 38.367715],\n              [-77.104717, 38.369655],\n              [-77.138224, 38.367917],\n              [-77.155191, 38.351047],\n              [-77.162692, 38.345994],\n              [-77.17934, 38.341915],\n              [-77.199433, 38.34089],\n              [-77.240072, 38.331598],\n              [-77.265295, 38.333165],\n              [-77.279633, 38.339444],\n              [-77.286202, 38.347024],\n              [-77.286202, 38.347025],\n              [-77.28835, 38.351286],\n              [-77.288145, 38.359477],\n              [-77.296077, 38.369797],\n              [-77.317288, 38.383576],\n              [-77.314848, 38.389579],\n              [-77.312201, 38.390958],\n              [-77.310719, 38.397669],\n              [-77.319036, 38.417803],\n              [-77.32544, 38.44885],\n              [-77.322622, 38.467131],\n              [-77.310334, 38.493926],\n              [-77.302457, 38.504683],\n              [-77.300776, 38.506978],\n              [-77.298844, 38.508724],\n              [-77.29582, 38.511457],\n              [-77.291103, 38.515721],\n              [-77.283503, 38.525221],\n              [-77.276303, 38.53962],\n              [-77.276603, 38.54712],\n              [-77.26083, 38.56533],\n              [-77.265304, 38.580319],\n              [-77.26443, 38.582845],\n              [-77.247003, 38.590618],\n              [-77.246441, 38.599532],\n              [-77.245104, 38.620717],\n              [-77.248904, 38.628617],\n              [-77.246704, 38.635217],\n              [-77.240604, 38.638917],\n              [-77.22235, 38.638091],\n              [-77.216303, 38.637817],\n              [-77.205103, 38.623917],\n              [-77.204302, 38.617817],\n              [-77.202002, 38.617217],\n              [-77.174902, 38.624217],\n              [-77.157501, 38.636417],\n              [-77.1302, 38.635017],\n              [-77.135901, 38.649817],\n              [-77.132501, 38.673816],\n              [-77.121101, 38.686616],\n              [-77.1059, 38.696815],\n              [-77.086113, 38.705792],\n              [-77.074599, 38.711015],\n              [-77.05991, 38.734419],\n              [-77.041398, 38.763914],\n              [-77.039239, 38.7852],\n              [-77.038598, 38.791513],\n              [-77.032986, 38.8395],\n              [-77.031698, 38.850512],\n              [-77.040599, 38.871212],\n              [-77.068199, 38.899811],\n              [-77.0902, 38.904211],\n              [-77.1012, 38.911111],\n              [-77.119863, 38.934265],\n              [-77.1199, 38.934311],\n              [-77.137701, 38.95531],\n              [-77.148179, 38.965002],\n              [-77.166901, 38.96811],\n              [-77.197502, 38.96681],\n              [-77.221502, 38.97131],\n              [-77.235403, 38.97661],\n              [-77.249803, 38.985909],\n              [-77.255703, 39.002409],\n              [-77.251803, 39.011409],\n              [-77.261403, 39.031009],\n              [-77.291605, 39.045408],\n              [-77.328002, 39.058554],\n              [-77.340287, 39.062991],\n              [-77.375079, 39.061297],\n              [-77.42318, 39.066878],\n              [-77.458202, 39.073723],\n              [-77.519929, 39.120925],\n              [-77.524559, 39.127821],\n              [-77.527282, 39.146236],\n              [-77.516426, 39.170891],\n              [-77.510631, 39.178484],\n              [-77.505162, 39.18205],\n              [-77.485971, 39.185665],\n              [-77.478596, 39.189168],\n              [-77.458884, 39.219826],\n              [-77.458779, 39.22028],\n              [-77.45768, 39.22502],\n              [-77.46021, 39.228359],\n              [-77.484605, 39.245941],\n              [-77.511222, 39.2535],\n              [-77.534461, 39.262361],\n              [-77.543228, 39.266937],\n              [-77.545846, 39.271535],\n              [-77.560854, 39.286152],\n              [-77.592739, 39.30129],\n              [-77.667749, 39.318129],\n              [-77.677505, 39.318699],\n              [-77.719029, 39.321125],\n              [-77.750267, 39.289284],\n              [-77.753357, 39.280331],\n              [-77.75306, 39.277971],\n              [-77.753105, 39.27734],\n              [-77.755193, 39.275191],\n              [-77.755698, 39.274575],\n              [-77.758412, 39.269197],\n              [-77.758733, 39.268114],\n              [-77.761217, 39.263721],\n              [-77.761768, 39.263031],\n              [-77.768, 39.257657],\n              [-77.768992, 39.256417],\n              [-77.767277, 39.24938],\n              [-77.771415, 39.236776],\n              [-77.822182, 39.139985],\n              [-77.828157, 39.132329],\n              [-78.032841, 39.264403],\n              [-78.033183, 39.264624],\n              [-78.033185, 39.264626],\n              [-78.228766, 39.391233],\n              [-78.347087, 39.466012],\n              [-78.362267, 39.357784],\n              [-78.34048, 39.353492],\n              [-78.35894, 39.319484],\n              [-78.360035, 39.317771],\n              [-78.399785, 39.244129],\n              [-78.399669, 39.243874],\n              [-78.423968, 39.212049],\n              [-78.427911, 39.208611],\n              [-78.429803, 39.207014],\n              [-78.431167, 39.205744],\n              [-78.43213, 39.204717],\n              [-78.437053, 39.199766],\n              [-78.438651, 39.198049],\n              [-78.426722, 39.188903],\n              [-78.41074, 39.171983],\n              [-78.418377, 39.156656],\n              [-78.439429, 39.132146],\n              [-78.459869, 39.113351],\n              [-78.508132, 39.08863],\n              [-78.544111, 39.056676],\n              [-78.571901, 39.031995],\n              [-78.565837, 39.026303],\n              [-78.554222, 39.019672],\n              [-78.557647, 39.013189],\n              [-78.601655, 38.964603],\n              [-78.710949, 38.910175],\n              [-78.714135, 38.911176],\n              [-78.716956, 38.916273],\n              [-78.719755, 38.922135],\n              [-78.719806, 38.922638],\n              [-78.757278, 38.903203],\n              [-78.779198, 38.892298],\n              [-78.788031, 38.885123],\n              [-78.808181, 38.856175],\n              [-78.835191, 38.811499],\n              [-78.869276, 38.762991]\n            ]\n          ],\n          [\n            [\n              [-79.617919921875, 40.588928169693745],\n              [-78.94775390625, 38.993572058209466],\n              [-78.5302734375, 39.342794408952386],\n              [-78.277587890625, 39.78321267821705],\n              [-77.84912109375, 39.36827914916011],\n              [-77.18994140625, 39.80853604144591],\n              [-78.585205078125, 41.02135510866602],\n              [-79.617919921875, 40.588928169693745]\n            ]\n          ]\n        ]\n      },\n      \"properties\": {},\n      \"type\": \"Feature\"\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.1123046875, 36.2354121683998],\n            [-76.959228515625, 36.2354121683998],\n            [-76.959228515625, 41.22824901518529],\n            [-80.1123046875, 41.22824901518529],\n            [-80.1123046875, 36.2354121683998]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/test/in/polygon-crossing-hole.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78.869276, 38.762991],\n            [-78.993997, 38.850102],\n            [-78.999752, 38.846162],\n            [-79.055354, 38.782213],\n            [-79.057253, 38.761413],\n            [-79.092555, 38.700149],\n            [-79.092271, 38.699208],\n            [-79.135472, 38.644057],\n            [-79.135546, 38.643715],\n            [-79.136374, 38.6424],\n            [-79.137012, 38.640655],\n            [-79.146741, 38.625819],\n            [-79.146974, 38.625641],\n            [-79.174512, 38.566531],\n            [-79.174881, 38.566314],\n            [-79.207884, 38.500428],\n            [-79.207873, 38.500122],\n            [-79.209703, 38.495574],\n            [-79.210008, 38.494283],\n            [-79.210026, 38.494231],\n            [-79.225839, 38.479446],\n            [-79.23162, 38.474041],\n            [-79.234408, 38.473011],\n            [-79.240059, 38.469841],\n            [-79.242024, 38.464332],\n            [-79.26291, 38.444586],\n            [-79.263376, 38.443762],\n            [-79.265327, 38.441772],\n            [-79.267414, 38.438322],\n            [-79.282663, 38.431021],\n            [-79.280263, 38.425475],\n            [-79.290529, 38.420757],\n            [-79.291813, 38.419627],\n            [-79.295712, 38.418129],\n            [-79.297758, 38.416438],\n            [-79.312276, 38.411876],\n            [-79.476638, 38.457228],\n            [-79.521469, 38.533918],\n            [-79.53687, 38.550917],\n            [-79.555471, 38.560217],\n            [-79.597955, 38.572767],\n            [-79.649075, 38.591515],\n            [-79.669128, 38.510975],\n            [-79.669128, 38.510883],\n            [-79.695565, 38.477842],\n            [-79.699006, 38.475148],\n            [-79.688205, 38.450476],\n            [-79.688962, 38.449538],\n            [-79.689544, 38.442511],\n            [-79.691377, 38.439558],\n            [-79.731661, 38.374143],\n            [-79.808711, 38.309429],\n            [-79.810115, 38.305037],\n            [-79.788945, 38.268703],\n            [-79.790134, 38.267654],\n            [-79.794568, 38.264856],\n            [-79.891999, 38.203378],\n            [-79.892345, 38.202397],\n            [-79.916174, 38.184386],\n            [-79.917061, 38.183741],\n            [-79.921196, 38.180378],\n            [-79.921026, 38.179954],\n            [-79.925251, 38.150465],\n            [-79.925512, 38.150237],\n            [-79.928683, 38.144928],\n            [-79.928747, 38.144436],\n            [-79.933751, 38.135508],\n            [-79.938394, 38.130563],\n            [-79.931034, 38.101402],\n            [-79.933911, 38.099168],\n            [-79.959844, 38.063697],\n            [-79.978427, 38.029082],\n            [-80.002507, 37.992767],\n            [-80.055278, 37.951702],\n            [-80.130464, 37.893194],\n            [-80.14613, 37.884453],\n            [-80.147316, 37.885936],\n            [-80.148964, 37.886057],\n            [-80.162202, 37.875122],\n            [-80.227092, 37.798886],\n            [-80.231551, 37.792591],\n            [-80.257411, 37.756084],\n            [-80.262765, 37.738336],\n            [-80.260313, 37.733517],\n            [-80.259342, 37.731205],\n            [-80.263936, 37.719137],\n            [-80.287107, 37.696403],\n            [-80.296138, 37.691783],\n            [-80.292337, 37.683976],\n            [-80.292258, 37.683732],\n            [-80.270323, 37.648982],\n            [-80.270352, 37.648929],\n            [-80.267455, 37.646108],\n            [-80.267228, 37.646011],\n            [-80.264874, 37.645511],\n            [-80.26483, 37.645526],\n            [-80.263291, 37.645101],\n            [-80.263281, 37.645082],\n            [-80.254469, 37.642333],\n            [-80.254431, 37.642352],\n            [-80.239288, 37.637672],\n            [-80.220984, 37.627767],\n            [-80.223386, 37.623185],\n            [-80.240272, 37.606961],\n            [-80.288766, 37.58196],\n            [-80.312393, 37.546239],\n            [-80.330306, 37.536244],\n            [-80.314806, 37.500943],\n            [-80.320627, 37.49888],\n            [-80.425656, 37.449876],\n            [-80.443025, 37.438126],\n            [-80.46482, 37.426144],\n            [-80.475601, 37.422949],\n            [-80.494867, 37.43507],\n            [-80.511391, 37.481672],\n            [-80.622664, 37.433307],\n            [-80.770082, 37.372363],\n            [-80.776649, 37.383679],\n            [-80.776766, 37.384131],\n            [-80.798869, 37.395807],\n            [-80.811639, 37.407507],\n            [-80.85836, 37.428168],\n            [-80.858473, 37.428301],\n            [-80.859556, 37.429568],\n            [-80.859558, 37.429555],\n            [-80.862761, 37.411829],\n            [-80.872589, 37.372347],\n            [-80.849451, 37.346909],\n            [-80.900535, 37.315],\n            [-80.919259, 37.306163],\n            [-80.947896, 37.295872],\n            [-80.966556, 37.292158],\n            [-80.973889, 37.291444],\n            [-80.980044, 37.293118],\n            [-80.981322, 37.293465],\n            [-81.034652, 37.290751],\n            [-81.084012, 37.284401],\n            [-81.112596, 37.278497],\n            [-81.167029, 37.262881],\n            [-81.204774, 37.243013],\n            [-81.225104, 37.234874],\n            [-81.320105, 37.299323],\n            [-81.362156, 37.337687],\n            [-81.366315, 37.335927],\n            [-81.367052, 37.334504],\n            [-81.36809, 37.332423],\n            [-81.369379, 37.331827],\n            [-81.367599, 37.327569],\n            [-81.371315, 37.324115],\n            [-81.377349, 37.318447],\n            [-81.380159, 37.317838],\n            [-81.384127, 37.318596],\n            [-81.384914, 37.318832],\n            [-81.38581, 37.320085],\n            [-81.386727, 37.320474],\n            [-81.388132, 37.319903],\n            [-81.409196, 37.286071],\n            [-81.409729, 37.284837],\n            [-81.504168, 37.250115],\n            [-81.50488, 37.247697],\n            [-81.507325, 37.2338],\n            [-81.557315, 37.207697],\n            [-81.558353, 37.208145],\n            [-81.560625, 37.206663],\n            [-81.678603, 37.202467],\n            [-81.683544, 37.211452],\n            [-81.728194, 37.239823],\n            [-81.73332, 37.238127],\n            [-81.738378, 37.240917],\n            [-81.744291, 37.244178],\n            [-81.74342, 37.245858],\n            [-81.743505, 37.247601],\n            [-81.747656, 37.264329],\n            [-81.75129, 37.265131],\n            [-81.752123, 37.265568],\n            [-81.752912, 37.266614],\n            [-81.755012, 37.26772],\n            [-81.757531, 37.27001],\n            [-81.757714, 37.271124],\n            [-81.75773, 37.271934],\n            [-81.757631, 37.274003],\n            [-81.76022, 37.275254],\n            [-81.761752, 37.275713],\n            [-81.762776, 37.275391],\n            [-81.763836, 37.275218],\n            [-81.765195, 37.275099],\n            [-81.767837, 37.274216],\n            [-81.774684, 37.274807],\n            [-81.774747, 37.274847],\n            [-81.793425, 37.281674],\n            [-81.793639, 37.282188],\n            [-81.809184, 37.283003],\n            [-81.810559, 37.28298],\n            [-81.84231, 37.285556],\n            [-81.843167, 37.285586],\n            [-81.854059, 37.291352],\n            [-81.853488, 37.294763],\n            [-81.854465, 37.299937],\n            [-81.853978, 37.300418],\n            [-81.86476, 37.308404],\n            [-81.865219, 37.308839],\n            [-81.873213, 37.325065],\n            [-81.878343, 37.328837],\n            [-81.878713, 37.331753],\n            [-81.879601, 37.332074],\n            [-81.880886, 37.331146],\n            [-81.885075, 37.330665],\n            [-81.886952, 37.330725],\n            [-81.887722, 37.331156],\n            [-81.892876, 37.330134],\n            [-81.893773, 37.330105],\n            [-81.894768, 37.331381],\n            [-81.894797, 37.332012],\n            [-81.895489, 37.332022],\n            [-81.896001, 37.331967],\n            [-81.899459, 37.340277],\n            [-81.899495, 37.341102],\n            [-81.902992, 37.34234],\n            [-81.903795, 37.34305],\n            [-81.905945, 37.342775],\n            [-81.906368, 37.34276],\n            [-81.907322, 37.343119],\n            [-81.907895, 37.343783],\n            [-81.910875, 37.348729],\n            [-81.911487, 37.348839],\n            [-81.920711, 37.355416],\n            [-81.921571, 37.356423],\n            [-81.925643, 37.357316],\n            [-81.926589, 37.358942],\n            [-81.929915, 37.366589],\n            [-81.930194, 37.366728],\n            [-81.933895, 37.372747],\n            [-81.92749, 37.413251],\n            [-81.935621, 37.438397],\n            [-81.949367, 37.445687],\n            [-81.968795, 37.451496],\n            [-81.987006, 37.454878],\n            [-81.99227, 37.460916],\n            [-81.996578, 37.476705],\n            [-81.992916, 37.482969],\n            [-81.94264, 37.508844],\n            [-81.92787, 37.512118],\n            [-81.968297, 37.537798],\n            [-82.291908, 37.311642],\n            [-82.305874, 37.3011],\n            [-82.310793, 37.297387],\n            [-82.350948, 37.267077],\n            [-82.510826, 37.218091],\n            [-82.553549, 37.200867],\n            [-82.565329, 37.196118],\n            [-82.565375, 37.196092],\n            [-82.624878, 37.162932],\n            [-82.721941, 37.105689],\n            [-82.720597, 37.081833],\n            [-82.722472, 37.045101],\n            [-82.771795, 37.015716],\n            [-82.777368, 37.015279],\n            [-82.788897, 37.00816],\n            [-82.789092, 37.007995],\n            [-82.790462, 37.007263],\n            [-82.79089, 37.00676],\n            [-82.800531, 37.007944],\n            [-82.815748, 37.007196],\n            [-82.818006, 37.006161],\n            [-82.830588, 37.000945],\n            [-82.829125, 36.997541],\n            [-82.830802, 36.993445],\n            [-82.833843, 36.991973],\n            [-82.836008, 36.988837],\n            [-82.838549, 36.987027],\n            [-82.840051, 36.987113],\n            [-82.851397, 36.984497],\n            [-82.852614, 36.984963],\n            [-82.862926, 36.979975],\n            [-82.864909, 36.97901],\n            [-82.866019, 36.978272],\n            [-82.866689, 36.978052],\n            [-82.867535, 36.977518],\n            [-82.868455, 36.976481],\n            [-82.869183, 36.974183],\n            [-82.869183, 36.974182],\n            [-82.870274, 36.965993],\n            [-82.87023, 36.965498],\n            [-82.867358, 36.963182],\n            [-82.865404, 36.958084],\n            [-82.864211, 36.957983],\n            [-82.862866, 36.957765],\n            [-82.860534, 36.956015],\n            [-82.858443, 36.954036],\n            [-82.855705, 36.953808],\n            [-82.856099, 36.952471],\n            [-82.860633, 36.94584],\n            [-82.861282, 36.944848],\n            [-82.861684, 36.939316],\n            [-82.860537, 36.937439],\n            [-82.858784, 36.933065],\n            [-82.858461, 36.932717],\n            [-82.861943, 36.924236],\n            [-82.863468, 36.922308],\n            [-82.872136, 36.913456],\n            [-82.873777, 36.912299],\n            [-82.885618, 36.900415],\n            [-82.91169, 36.874248],\n            [-82.911824, 36.874243],\n            [-82.973395, 36.859097],\n            [-83.07259, 36.854589],\n            [-83.099792, 36.824889],\n            [-83.131694, 36.781488],\n            [-83.131245, 36.767105],\n            [-83.125655, 36.761407],\n            [-83.125728, 36.761276],\n            [-83.127833, 36.750828],\n            [-83.136395, 36.743088],\n            [-83.167396, 36.739187],\n            [-83.199698, 36.737487],\n            [-83.342804, 36.701286],\n            [-83.353613, 36.696699],\n            [-83.354606, 36.696153],\n            [-83.460808, 36.664885],\n            [-83.461013, 36.664916],\n            [-83.498011, 36.670485],\n            [-83.527212, 36.665984],\n            [-83.649513, 36.616683],\n            [-83.675413, 36.600814],\n            [-83.670141, 36.600797],\n            [-83.670128, 36.600764],\n            [-83.472108, 36.597284],\n            [-83.2763, 36.598187],\n            [-83.250304, 36.593935],\n            [-83.249899, 36.593898],\n            [-83.248933, 36.593827],\n            [-83.028357, 36.593893],\n            [-83.02725, 36.593847],\n            [-82.985087, 36.593829],\n            [-82.830433, 36.593761],\n            [-82.69578, 36.593698],\n            [-82.679879, 36.593698],\n            [-82.609176, 36.594099],\n            [-82.561074, 36.5948],\n            [-82.559774, 36.5948],\n            [-82.554294, 36.594876],\n            [-82.293814, 36.595565],\n            [-82.243274, 36.595699],\n            [-82.226653, 36.595743],\n            [-82.225716, 36.595744],\n            [-82.223445, 36.595721],\n            [-82.221713, 36.595814],\n            [-82.211005, 36.59586],\n            [-82.210497, 36.595772],\n            [-82.188491, 36.595179],\n            [-82.18074, 36.594928],\n            [-82.177247, 36.594768],\n            [-82.173982, 36.594607],\n            [-82.150727, 36.594673],\n            [-82.148569, 36.594718],\n            [-82.14607, 36.594712],\n            [-81.934144, 36.594213],\n            [-81.922644, 36.616213],\n            [-81.826742, 36.614215],\n            [-81.6469, 36.611918],\n            [-81.677535, 36.588117],\n            [-81.60697, 36.587094],\n            [-81.521032, 36.58052],\n            [-81.353322, 36.574723],\n            [-81.353169, 36.574724],\n            [-81.307511, 36.575024],\n            [-81.061866, 36.56702],\n            [-81.058844, 36.566976],\n            [-80.945988, 36.563196],\n            [-80.944338, 36.563058],\n            [-80.901836, 36.561754],\n            [-80.901726, 36.561751],\n            [-80.837954, 36.559131],\n            [-80.837641, 36.559118],\n            [-80.837089, 36.559154],\n            [-80.744101, 36.561686],\n            [-80.687539, 36.561411],\n            [-80.612158, 36.558127],\n            [-80.4401, 36.55063],\n            [-80.432628, 36.550302],\n            [-80.431605, 36.550219],\n            [-80.228263, 36.543867],\n            [-80.225408, 36.543748],\n            [-80.171636, 36.543219],\n            [-80.169535, 36.54319],\n            [-80.053455, 36.542623],\n            [-80.027269, 36.542495],\n            [-79.967511, 36.542502],\n            [-79.966979, 36.542475],\n            [-79.920239, 36.542365],\n            [-79.714855, 36.541884],\n            [-79.667309, 36.541772],\n            [-79.666827, 36.541772],\n            [-79.510961, 36.54074],\n            [-79.510647, 36.540738],\n            [-79.470047, 36.541025],\n            [-79.445961, 36.541195],\n            [-79.445687, 36.541218],\n            [-79.342696, 36.541382],\n            [-79.218638, 36.541579],\n            [-79.20948, 36.541594],\n            [-79.208686, 36.541571],\n            [-79.137936, 36.541739],\n            [-79.126078, 36.541533],\n            [-79.124736, 36.541568],\n            [-78.971814, 36.542123],\n            [-78.970577, 36.542154],\n            [-78.942254, 36.542079],\n            [-78.942009, 36.542113],\n            [-78.91542, 36.541974],\n            [-78.914543, 36.541972],\n            [-78.7963, 36.541713],\n            [-78.76543, 36.541727],\n            [-78.758392, 36.541852],\n            [-78.734122, 36.541902],\n            [-78.670051, 36.542035],\n            [-78.663317, 36.542011],\n            [-78.533013, 36.541004],\n            [-78.529722, 36.540981],\n            [-78.471022, 36.542307],\n            [-78.470792, 36.542316],\n            [-78.45697, 36.542474],\n            [-78.441199, 36.542687],\n            [-78.436333, 36.542666],\n            [-78.323912, 36.543809],\n            [-78.246681, 36.544341],\n            [-78.245462, 36.544411],\n            [-78.133323, 36.543847],\n            [-78.132911, 36.543811],\n            [-78.046202, 36.544168],\n            [-78.03942, 36.544196],\n            [-78.038938, 36.544173],\n            [-77.899771, 36.544663],\n            [-77.882357, 36.544737],\n            [-77.87528, 36.544754],\n            [-77.767117, 36.544752],\n            [-77.296875, 36.544746],\n            [-77.24969, 36.544745],\n            [-77.1645, 36.54633],\n            [-76.916048, 36.543815],\n            [-76.916001, 36.543818],\n            [-76.915384, 36.543856],\n            [-76.807078, 36.550606],\n            [-76.781296, 36.550659],\n            [-76.541687, 36.550312],\n            [-76.541391, 36.550312],\n            [-76.491497, 36.550365],\n            [-76.313215, 36.550551],\n            [-76.313196, 36.550551],\n            [-76.12236, 36.550621],\n            [-76.034751, 36.550653],\n            [-76.02675, 36.550553],\n            [-75.957648, 36.550553],\n            [-75.955748, 36.550553],\n            [-75.953447, 36.550553],\n            [-75.952847, 36.550553],\n            [-75.922046, 36.550654],\n            [-75.911446, 36.550654],\n            [-75.909046, 36.550654],\n            [-75.904745, 36.550654],\n            [-75.903445, 36.550654],\n            [-75.894145, 36.550754],\n            [-75.893245, 36.550654],\n            [-75.891945, 36.550754],\n            [-75.886545, 36.550754],\n            [-75.885945, 36.550754],\n            [-75.880644, 36.550754],\n            [-75.879744, 36.550754],\n            [-75.867044, 36.550754],\n            [-75.874145, 36.583853],\n            [-75.890946, 36.630753],\n            [-75.921748, 36.692051],\n            [-75.94955, 36.76115],\n            [-75.965451, 36.812449],\n            [-75.972151, 36.842268],\n            [-75.991552, 36.910847],\n            [-75.996252, 36.922047],\n            [-76.007553, 36.929047],\n            [-76.013753, 36.930746],\n            [-76.033454, 36.931946],\n            [-76.043054, 36.927547],\n            [-76.058154, 36.916947],\n            [-76.087955, 36.908647],\n            [-76.095508, 36.908817],\n            [-76.139557, 36.923047],\n            [-76.177019, 36.92929],\n            [-76.189959, 36.931447],\n            [-76.22166, 36.939547],\n            [-76.234961, 36.945147],\n            [-76.267962, 36.964547],\n            [-76.285063, 36.968747],\n            [-76.297663, 36.968147],\n            [-76.299364, 36.965547],\n            [-76.315867, 36.955351],\n            [-76.322764, 36.959147],\n            [-76.327365, 36.959447],\n            [-76.330765, 36.938647],\n            [-76.328864, 36.918447],\n            [-76.333158, 36.917293],\n            [-76.344663, 36.919313],\n            [-76.345569, 36.924531],\n            [-76.353765, 36.922747],\n            [-76.385867, 36.923247],\n            [-76.387567, 36.899547],\n            [-76.406908, 36.897507],\n            [-76.407507, 36.897444],\n            [-76.43122, 36.904532],\n            [-76.441605, 36.906116],\n            [-76.447413, 36.90322],\n            [-76.453941, 36.89274],\n            [-76.45329, 36.887031],\n            [-76.454692, 36.884077],\n            [-76.469914, 36.882898],\n            [-76.483369, 36.896239],\n            [-76.482135, 36.901108],\n            [-76.482407, 36.917364],\n            [-76.484107, 36.928916],\n            [-76.487559, 36.952372],\n            [-76.500355, 36.965212],\n            [-76.513363, 36.968057],\n            [-76.521006, 36.973187],\n            [-76.524142, 36.978316],\n            [-76.522971, 36.981085],\n            [-76.524853, 36.983833],\n            [-76.551246, 36.998946],\n            [-76.562923, 37.003796],\n            [-76.565803, 37.007493],\n            [-76.576617, 37.021374],\n            [-76.577531, 37.022548],\n            [-76.57816, 37.022982],\n            [-76.579236, 37.023726],\n            [-76.579393, 37.023835],\n            [-76.584478, 37.027349],\n            [-76.586491, 37.02874],\n            [-76.612124, 37.035604],\n            [-76.646013, 37.036228],\n            [-76.653998, 37.039172],\n            [-76.662558, 37.045748],\n            [-76.66835, 37.05506],\n            [-76.669822, 37.06426],\n            [-76.669118, 37.068132],\n            [-76.668295, 37.072656],\n            [-76.667646, 37.076228],\n            [-76.667219, 37.077149],\n            [-76.666526, 37.078643],\n            [-76.66555, 37.080746],\n            [-76.659394, 37.094019],\n            [-76.65811, 37.096787],\n            [-76.657703, 37.101161],\n            [-76.657101, 37.107617],\n            [-76.656894, 37.109843],\n            [-76.66375, 37.129979],\n            [-76.665641, 37.135534],\n            [-76.665833, 37.136098],\n            [-76.666542, 37.138179],\n            [-76.669604, 37.140534],\n            [-76.671588, 37.14206],\n            [-76.67147, 37.158739],\n            [-76.66867, 37.166771],\n            [-76.66427, 37.171027],\n            [-76.663774, 37.173875],\n            [-76.669886, 37.183571],\n            [-76.685614, 37.198851],\n            [-76.691918, 37.195731],\n            [-76.692926, 37.186147],\n            [-76.696735, 37.174403],\n            [-76.715295, 37.148035],\n            [-76.73032, 37.145395],\n            [-76.73728, 37.146164],\n            [-76.747632, 37.150548],\n            [-76.756899, 37.161582],\n            [-76.796905, 37.189404],\n            [-76.802511, 37.198308],\n            [-76.803198, 37.201513],\n            [-76.801023, 37.206043],\n            [-76.791555, 37.207564],\n            [-76.780532, 37.209336],\n            [-76.773752, 37.206061],\n            [-76.757765, 37.191658],\n            [-76.75047, 37.190098],\n            [-76.74304, 37.192611],\n            [-76.74, 37.195379],\n            [-76.73432, 37.204211],\n            [-76.730951, 37.213813],\n            [-76.698943, 37.219059],\n            [-76.693373, 37.221228],\n            [-76.689166, 37.222866],\n            [-76.649869, 37.220914],\n            [-76.641085, 37.216002],\n            [-76.639608, 37.214783],\n            [-76.629868, 37.206738],\n            [-76.623292, 37.198738],\n            [-76.621113, 37.195103],\n            [-76.619962, 37.193184],\n            [-76.61934, 37.192146],\n            [-76.618008, 37.186429],\n            [-76.617537, 37.184409],\n            [-76.616804, 37.18126],\n            [-76.616268, 37.178962],\n            [-76.614221, 37.174335],\n            [-76.613599, 37.172931],\n            [-76.612517, 37.170486],\n            [-76.611018, 37.167097],\n            [-76.610972, 37.166994],\n            [-76.606684, 37.166674],\n            [-76.604476, 37.160034],\n            [-76.617084, 37.144498],\n            [-76.622252, 37.142146],\n            [-76.62478, 37.127091],\n            [-76.618252, 37.119347],\n            [-76.579499, 37.096627],\n            [-76.567931, 37.080467],\n            [-76.564219, 37.077507],\n            [-76.555066, 37.075859],\n            [-76.536875, 37.083942],\n            [-76.528997, 37.079388],\n            [-76.526203, 37.077773],\n            [-76.526573, 37.070047],\n            [-76.527973, 37.068247],\n            [-76.526273, 37.062947],\n            [-76.518242, 37.055351],\n            [-76.512289, 37.054858],\n            [-76.509339, 37.053173],\n            [-76.507614, 37.052188],\n            [-76.46949, 37.030414],\n            [-76.464471, 37.027547],\n            [-76.448231, 37.007705],\n            [-76.449891, 37.004868],\n            [-76.452461, 37.004603],\n            [-76.452118, 36.998163],\n            [-76.428869, 36.969947],\n            [-76.418969, 36.964047],\n            [-76.411768, 36.962847],\n            [-76.408568, 36.969147],\n            [-76.396368, 36.982347],\n            [-76.387711, 36.989671],\n            [-76.383367, 36.993347],\n            [-76.373567, 36.998347],\n            [-76.356366, 37.002947],\n            [-76.348066, 37.006747],\n            [-76.340666, 37.015246],\n            [-76.34011, 37.015212],\n            [-76.329531, 37.014556],\n            [-76.318065, 37.013846],\n            [-76.314624, 37.00933],\n            [-76.315008, 37.001683],\n            [-76.312048, 37.000371],\n            [-76.304272, 37.001378],\n            [-76.300352, 37.00885],\n            [-76.292863, 37.035145],\n            [-76.271262, 37.084544],\n            [-76.274463, 37.094544],\n            [-76.287236, 37.117453],\n            [-76.292344, 37.126615],\n            [-76.311088, 37.138495],\n            [-76.324353, 37.142895],\n            [-76.330481, 37.141727],\n            [-76.334017, 37.144223],\n            [-76.340129, 37.151823],\n            [-76.34405, 37.160367],\n            [-76.344898, 37.164479],\n            [-76.343234, 37.166207],\n            [-76.348658, 37.170655],\n            [-76.35969, 37.16858],\n            [-76.375255, 37.16084],\n            [-76.381379, 37.155711],\n            [-76.394756, 37.157568],\n            [-76.399659, 37.160272],\n            [-76.397883, 37.164415],\n            [-76.391252, 37.179887],\n            [-76.389284, 37.193503],\n            [-76.396052, 37.201087],\n            [-76.3936, 37.214049],\n            [-76.389793, 37.222981],\n            [-76.394132, 37.22515],\n            [-76.471799, 37.216016],\n            [-76.494008, 37.225408],\n            [-76.50364, 37.233856],\n            [-76.4989, 37.241015],\n            [-76.493302, 37.24947],\n            [-76.48284, 37.254831],\n            [-76.475927, 37.250543],\n            [-76.429141, 37.25331],\n            [-76.421765, 37.255198],\n            [-76.417173, 37.26395],\n            [-76.392788, 37.264973],\n            [-76.36229, 37.270226],\n            [-76.349489, 37.273963],\n            [-76.352556, 37.278334],\n            [-76.369029, 37.279311],\n            [-76.381075, 37.28534],\n            [-76.385603, 37.294108],\n            [-76.38777, 37.30767],\n            [-76.406388, 37.332924],\n            [-76.434965, 37.354524],\n            [-76.445333, 37.36646],\n            [-76.437525, 37.37975],\n            [-76.422503, 37.381355],\n            [-76.418176, 37.385064],\n            [-76.418719, 37.3978],\n            [-76.415167, 37.402133],\n            [-76.404756, 37.400213],\n            [-76.393125, 37.398068],\n            [-76.393958, 37.39594],\n            [-76.391437, 37.390284],\n            [-76.387112, 37.385061],\n            [-76.366751, 37.374495],\n            [-76.337476, 37.364014],\n            [-76.31205, 37.338088],\n            [-76.308581, 37.329366],\n            [-76.291324, 37.324145],\n            [-76.282555, 37.319107],\n            [-76.275552, 37.309964],\n            [-76.272005, 37.322194],\n            [-76.272888, 37.335174],\n            [-76.264847, 37.357399],\n            [-76.262407, 37.360786],\n            [-76.258277, 37.36202],\n            [-76.24846, 37.375135],\n            [-76.245283, 37.386839],\n            [-76.246617, 37.404122],\n            [-76.250454, 37.421886],\n            [-76.252415, 37.447274],\n            [-76.265056, 37.481365],\n            [-76.281043, 37.507821],\n            [-76.288167, 37.514118],\n            [-76.293599, 37.516499],\n            [-76.297651, 37.515424],\n            [-76.298456, 37.512677],\n            [-76.296445, 37.511235],\n            [-76.297739, 37.506863],\n            [-76.306952, 37.497488],\n            [-76.32947, 37.49492],\n            [-76.352678, 37.504913],\n            [-76.359378, 37.513426],\n            [-76.360474, 37.51924],\n            [-76.355084, 37.527364],\n            [-76.348992, 37.536548],\n            [-76.339989, 37.53833],\n            [-76.330598, 37.536391],\n            [-76.302762, 37.551295],\n            [-76.29796, 37.557636],\n            [-76.300144, 37.561734],\n            [-76.332641, 37.570042],\n            [-76.357835, 37.573699],\n            [-76.383188, 37.573056],\n            [-76.410781, 37.581815],\n            [-76.420252, 37.598686],\n            [-76.435474, 37.612807],\n            [-76.527188, 37.611315],\n            [-76.533777, 37.61253],\n            [-76.542666, 37.616857],\n            [-76.574049, 37.646781],\n            [-76.583143, 37.661986],\n            [-76.579591, 37.671508],\n            [-76.597868, 37.702918],\n            [-76.598073, 37.70912],\n            [-76.595943, 37.712989],\n            [-76.597213, 37.717269],\n            [-76.606466, 37.724819],\n            [-76.61997, 37.731271],\n            [-76.621433, 37.737973],\n            [-76.617373, 37.742347],\n            [-76.61971, 37.744795],\n            [-76.639962, 37.750941],\n            [-76.663887, 37.751887],\n            [-76.677002, 37.7561],\n            [-76.680922, 37.759647],\n            [-76.683372, 37.765507],\n            [-76.683359, 37.770258],\n            [-76.683343, 37.775783],\n            [-76.681901, 37.778118],\n            [-76.683775, 37.781391],\n            [-76.689773, 37.78519],\n            [-76.715498, 37.785873],\n            [-76.723863, 37.788503],\n            [-76.734309, 37.79866],\n            [-76.7512, 37.824141],\n            [-76.766328, 37.840437],\n            [-76.782826, 37.863184],\n            [-76.784618, 37.869569],\n            [-76.77539, 37.874306],\n            [-76.765711, 37.879274],\n            [-76.747552, 37.875864],\n            [-76.738395, 37.865373],\n            [-76.733046, 37.852009],\n            [-76.72718, 37.842263],\n            [-76.722156, 37.83668],\n            [-76.701606, 37.822677],\n            [-76.692747, 37.82277],\n            [-76.680197, 37.825654],\n            [-76.658302, 37.806815],\n            [-76.651413, 37.796239],\n            [-76.642276, 37.792317],\n            [-76.615351, 37.780759],\n            [-76.602024, 37.772731],\n            [-76.595939, 37.77168],\n            [-76.593835, 37.772848],\n            [-76.584289, 37.76889],\n            [-76.576387, 37.757493],\n            [-76.560476, 37.727827],\n            [-76.54005, 37.704432],\n            [-76.537228, 37.698892],\n            [-76.535302, 37.687516],\n            [-76.537698, 37.66893],\n            [-76.536548, 37.663574],\n            [-76.510187, 37.642324],\n            [-76.501522, 37.643762],\n            [-76.497564, 37.647056],\n            [-76.491799, 37.663614],\n            [-76.489576, 37.666201],\n            [-76.472392, 37.665772],\n            [-76.443254, 37.652347],\n            [-76.399236, 37.628636],\n            [-76.390054, 37.630326],\n            [-76.381106, 37.627003],\n            [-76.36232, 37.610368],\n            [-76.309174, 37.621892],\n            [-76.28037, 37.613715],\n            [-76.279447, 37.618225],\n            [-76.287959, 37.631771],\n            [-76.292534, 37.636098],\n            [-76.306464, 37.642005],\n            [-76.332562, 37.645817],\n            [-76.339892, 37.655966],\n            [-76.324808, 37.676983],\n            [-76.320216, 37.680666],\n            [-76.315161, 37.68472],\n            [-76.312079, 37.684651],\n            [-76.302545, 37.689],\n            [-76.300067, 37.695364],\n            [-76.302803, 37.704474],\n            [-76.312858, 37.720338],\n            [-76.304917, 37.729913],\n            [-76.312108, 37.750522],\n            [-76.306489, 37.788646],\n            [-76.310307, 37.794849],\n            [-76.307482, 37.81235],\n            [-76.293525, 37.822717],\n            [-76.284904, 37.822308],\n            [-76.281985, 37.818068],\n            [-76.282592, 37.814109],\n            [-76.280544, 37.812597],\n            [-76.275178, 37.812664],\n            [-76.266057, 37.8174],\n            [-76.251358, 37.833072],\n            [-76.245072, 37.861918],\n            [-76.236725, 37.889174],\n            [-76.265998, 37.91138],\n            [-76.343848, 37.947345],\n            [-76.360211, 37.952329],\n            [-76.391439, 37.958742],\n            [-76.416299, 37.966828],\n            [-76.427487, 37.977038],\n            [-76.462542, 37.998572],\n            [-76.465291, 38.010226],\n            [-76.469343, 38.013544],\n            [-76.491998, 38.017222],\n            [-76.516547, 38.026566],\n            [-76.519536, 38.034814],\n            [-76.522354, 38.04259],\n            [-76.535919, 38.069532],\n            [-76.543155, 38.076971],\n            [-76.579497, 38.09487],\n            [-76.600937, 38.110084],\n            [-76.604131, 38.128771],\n            [-76.613939, 38.148587],\n            [-76.629476, 38.15305],\n            [-76.638983, 38.151476],\n            [-76.643448, 38.14825],\n            [-76.665127, 38.147638],\n            [-76.684892, 38.156497],\n            [-76.701297, 38.155718],\n            [-76.704048, 38.149264],\n            [-76.721722, 38.137635],\n            [-76.738938, 38.14651],\n            [-76.740278, 38.152824],\n            [-76.743064, 38.156988],\n            [-76.749685, 38.162114],\n            [-76.760241, 38.166581],\n            [-76.788445, 38.169199],\n            [-76.802968, 38.167988],\n            [-76.824274, 38.163639],\n            [-76.838795, 38.163476],\n            [-76.875272, 38.172207],\n            [-76.910832, 38.197073],\n            [-76.916922, 38.199751],\n            [-76.937134, 38.202384],\n            [-76.962311, 38.214075],\n            [-76.967335, 38.227185],\n            [-76.966553, 38.229542],\n            [-76.962375, 38.230093],\n            [-76.957417, 38.236341],\n            [-76.957796, 38.243183],\n            [-76.96215, 38.256486],\n            [-76.981372, 38.274214],\n            [-76.990255, 38.273935],\n            [-76.99767, 38.278047],\n            [-77.026304, 38.302685],\n            [-77.030683, 38.311623],\n            [-77.020947, 38.329273],\n            [-77.016932, 38.341697],\n            [-77.011827, 38.374554],\n            [-77.024866, 38.386791],\n            [-77.043526, 38.400548],\n            [-77.051437, 38.399083],\n            [-77.056032, 38.3962],\n            [-77.069956, 38.377895],\n            [-77.08481, 38.368297],\n            [-77.094665, 38.367715],\n            [-77.104717, 38.369655],\n            [-77.138224, 38.367917],\n            [-77.155191, 38.351047],\n            [-77.162692, 38.345994],\n            [-77.17934, 38.341915],\n            [-77.199433, 38.34089],\n            [-77.240072, 38.331598],\n            [-77.265295, 38.333165],\n            [-77.279633, 38.339444],\n            [-77.286202, 38.347024],\n            [-77.286202, 38.347025],\n            [-77.28835, 38.351286],\n            [-77.288145, 38.359477],\n            [-77.296077, 38.369797],\n            [-77.317288, 38.383576],\n            [-77.314848, 38.389579],\n            [-77.312201, 38.390958],\n            [-77.310719, 38.397669],\n            [-77.319036, 38.417803],\n            [-77.32544, 38.44885],\n            [-77.322622, 38.467131],\n            [-77.310334, 38.493926],\n            [-77.302457, 38.504683],\n            [-77.300776, 38.506978],\n            [-77.298844, 38.508724],\n            [-77.29582, 38.511457],\n            [-77.291103, 38.515721],\n            [-77.283503, 38.525221],\n            [-77.276303, 38.53962],\n            [-77.276603, 38.54712],\n            [-77.26083, 38.56533],\n            [-77.265304, 38.580319],\n            [-77.26443, 38.582845],\n            [-77.247003, 38.590618],\n            [-77.246441, 38.599532],\n            [-77.245104, 38.620717],\n            [-77.248904, 38.628617],\n            [-77.246704, 38.635217],\n            [-77.240604, 38.638917],\n            [-77.22235, 38.638091],\n            [-77.216303, 38.637817],\n            [-77.205103, 38.623917],\n            [-77.204302, 38.617817],\n            [-77.202002, 38.617217],\n            [-77.174902, 38.624217],\n            [-77.157501, 38.636417],\n            [-77.1302, 38.635017],\n            [-77.135901, 38.649817],\n            [-77.132501, 38.673816],\n            [-77.121101, 38.686616],\n            [-77.1059, 38.696815],\n            [-77.086113, 38.705792],\n            [-77.074599, 38.711015],\n            [-77.05991, 38.734419],\n            [-77.041398, 38.763914],\n            [-77.039239, 38.7852],\n            [-77.038598, 38.791513],\n            [-77.032986, 38.8395],\n            [-77.031698, 38.850512],\n            [-77.040599, 38.871212],\n            [-77.068199, 38.899811],\n            [-77.0902, 38.904211],\n            [-77.1012, 38.911111],\n            [-77.119863, 38.934265],\n            [-77.1199, 38.934311],\n            [-77.137701, 38.95531],\n            [-77.148179, 38.965002],\n            [-77.166901, 38.96811],\n            [-77.197502, 38.96681],\n            [-77.221502, 38.97131],\n            [-77.235403, 38.97661],\n            [-77.249803, 38.985909],\n            [-77.255703, 39.002409],\n            [-77.251803, 39.011409],\n            [-77.261403, 39.031009],\n            [-77.291605, 39.045408],\n            [-77.328002, 39.058554],\n            [-77.340287, 39.062991],\n            [-77.375079, 39.061297],\n            [-77.42318, 39.066878],\n            [-77.458202, 39.073723],\n            [-77.519929, 39.120925],\n            [-77.524559, 39.127821],\n            [-77.527282, 39.146236],\n            [-77.516426, 39.170891],\n            [-77.510631, 39.178484],\n            [-77.505162, 39.18205],\n            [-77.485971, 39.185665],\n            [-77.478596, 39.189168],\n            [-77.458884, 39.219826],\n            [-77.458779, 39.22028],\n            [-77.45768, 39.22502],\n            [-77.46021, 39.228359],\n            [-77.484605, 39.245941],\n            [-77.511222, 39.2535],\n            [-77.534461, 39.262361],\n            [-77.543228, 39.266937],\n            [-77.545846, 39.271535],\n            [-77.560854, 39.286152],\n            [-77.592739, 39.30129],\n            [-77.667749, 39.318129],\n            [-77.677505, 39.318699],\n            [-77.719029, 39.321125],\n            [-77.750267, 39.289284],\n            [-77.753357, 39.280331],\n            [-77.75306, 39.277971],\n            [-77.753105, 39.27734],\n            [-77.755193, 39.275191],\n            [-77.755698, 39.274575],\n            [-77.758412, 39.269197],\n            [-77.758733, 39.268114],\n            [-77.761217, 39.263721],\n            [-77.761768, 39.263031],\n            [-77.768, 39.257657],\n            [-77.768992, 39.256417],\n            [-77.767277, 39.24938],\n            [-77.771415, 39.236776],\n            [-77.822182, 39.139985],\n            [-77.828157, 39.132329],\n            [-78.032841, 39.264403],\n            [-78.033183, 39.264624],\n            [-78.033185, 39.264626],\n            [-78.228766, 39.391233],\n            [-78.347087, 39.466012],\n            [-78.362267, 39.357784],\n            [-78.34048, 39.353492],\n            [-78.35894, 39.319484],\n            [-78.360035, 39.317771],\n            [-78.399785, 39.244129],\n            [-78.399669, 39.243874],\n            [-78.423968, 39.212049],\n            [-78.427911, 39.208611],\n            [-78.429803, 39.207014],\n            [-78.431167, 39.205744],\n            [-78.43213, 39.204717],\n            [-78.437053, 39.199766],\n            [-78.438651, 39.198049],\n            [-78.426722, 39.188903],\n            [-78.41074, 39.171983],\n            [-78.418377, 39.156656],\n            [-78.439429, 39.132146],\n            [-78.459869, 39.113351],\n            [-78.508132, 39.08863],\n            [-78.544111, 39.056676],\n            [-78.571901, 39.031995],\n            [-78.565837, 39.026303],\n            [-78.554222, 39.019672],\n            [-78.557647, 39.013189],\n            [-78.601655, 38.964603],\n            [-78.710949, 38.910175],\n            [-78.714135, 38.911176],\n            [-78.716956, 38.916273],\n            [-78.719755, 38.922135],\n            [-78.719806, 38.922638],\n            [-78.757278, 38.903203],\n            [-78.779198, 38.892298],\n            [-78.788031, 38.885123],\n            [-78.808181, 38.856175],\n            [-78.835191, 38.811499],\n            [-78.869276, 38.762991]\n          ],\n          [\n            [-78.3050537109375, 38.62545397209084],\n            [-78.3050537109375, 39.24501680713314],\n            [-78.134765625, 39.24501680713314],\n            [-78.134765625, 38.62545397209084],\n            [-78.3050537109375, 38.62545397209084]\n          ]\n        ]\n      },\n      \"properties\": {},\n      \"type\": \"Feature\"\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.12353515625, 36.34167804918315],\n            [-76.739501953125, 36.34167804918315],\n            [-76.739501953125, 39.027718840211605],\n            [-79.12353515625, 39.027718840211605],\n            [-79.12353515625, 36.34167804918315]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/test/in/polygon-holes.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78.869276, 38.762991],\n            [-78.993997, 38.850102],\n            [-78.999752, 38.846162],\n            [-79.055354, 38.782213],\n            [-79.057253, 38.761413],\n            [-79.092555, 38.700149],\n            [-79.092271, 38.699208],\n            [-79.135472, 38.644057],\n            [-79.135546, 38.643715],\n            [-79.136374, 38.6424],\n            [-79.137012, 38.640655],\n            [-79.146741, 38.625819],\n            [-79.146974, 38.625641],\n            [-79.174512, 38.566531],\n            [-79.174881, 38.566314],\n            [-79.207884, 38.500428],\n            [-79.207873, 38.500122],\n            [-79.209703, 38.495574],\n            [-79.210008, 38.494283],\n            [-79.210026, 38.494231],\n            [-79.225839, 38.479446],\n            [-79.23162, 38.474041],\n            [-79.234408, 38.473011],\n            [-79.240059, 38.469841],\n            [-79.242024, 38.464332],\n            [-79.26291, 38.444586],\n            [-79.263376, 38.443762],\n            [-79.265327, 38.441772],\n            [-79.267414, 38.438322],\n            [-79.282663, 38.431021],\n            [-79.280263, 38.425475],\n            [-79.290529, 38.420757],\n            [-79.291813, 38.419627],\n            [-79.295712, 38.418129],\n            [-79.297758, 38.416438],\n            [-79.312276, 38.411876],\n            [-79.476638, 38.457228],\n            [-79.521469, 38.533918],\n            [-79.53687, 38.550917],\n            [-79.555471, 38.560217],\n            [-79.597955, 38.572767],\n            [-79.649075, 38.591515],\n            [-79.669128, 38.510975],\n            [-79.669128, 38.510883],\n            [-79.695565, 38.477842],\n            [-79.699006, 38.475148],\n            [-79.688205, 38.450476],\n            [-79.688962, 38.449538],\n            [-79.689544, 38.442511],\n            [-79.691377, 38.439558],\n            [-79.731661, 38.374143],\n            [-79.808711, 38.309429],\n            [-79.810115, 38.305037],\n            [-79.788945, 38.268703],\n            [-79.790134, 38.267654],\n            [-79.794568, 38.264856],\n            [-79.891999, 38.203378],\n            [-79.892345, 38.202397],\n            [-79.916174, 38.184386],\n            [-79.917061, 38.183741],\n            [-79.921196, 38.180378],\n            [-79.921026, 38.179954],\n            [-79.925251, 38.150465],\n            [-79.925512, 38.150237],\n            [-79.928683, 38.144928],\n            [-79.928747, 38.144436],\n            [-79.933751, 38.135508],\n            [-79.938394, 38.130563],\n            [-79.931034, 38.101402],\n            [-79.933911, 38.099168],\n            [-79.959844, 38.063697],\n            [-79.978427, 38.029082],\n            [-80.002507, 37.992767],\n            [-80.055278, 37.951702],\n            [-80.130464, 37.893194],\n            [-80.14613, 37.884453],\n            [-80.147316, 37.885936],\n            [-80.148964, 37.886057],\n            [-80.162202, 37.875122],\n            [-80.227092, 37.798886],\n            [-80.231551, 37.792591],\n            [-80.257411, 37.756084],\n            [-80.262765, 37.738336],\n            [-80.260313, 37.733517],\n            [-80.259342, 37.731205],\n            [-80.263936, 37.719137],\n            [-80.287107, 37.696403],\n            [-80.296138, 37.691783],\n            [-80.292337, 37.683976],\n            [-80.292258, 37.683732],\n            [-80.270323, 37.648982],\n            [-80.270352, 37.648929],\n            [-80.267455, 37.646108],\n            [-80.267228, 37.646011],\n            [-80.264874, 37.645511],\n            [-80.26483, 37.645526],\n            [-80.263291, 37.645101],\n            [-80.263281, 37.645082],\n            [-80.254469, 37.642333],\n            [-80.254431, 37.642352],\n            [-80.239288, 37.637672],\n            [-80.220984, 37.627767],\n            [-80.223386, 37.623185],\n            [-80.240272, 37.606961],\n            [-80.288766, 37.58196],\n            [-80.312393, 37.546239],\n            [-80.330306, 37.536244],\n            [-80.314806, 37.500943],\n            [-80.320627, 37.49888],\n            [-80.425656, 37.449876],\n            [-80.443025, 37.438126],\n            [-80.46482, 37.426144],\n            [-80.475601, 37.422949],\n            [-80.494867, 37.43507],\n            [-80.511391, 37.481672],\n            [-80.622664, 37.433307],\n            [-80.770082, 37.372363],\n            [-80.776649, 37.383679],\n            [-80.776766, 37.384131],\n            [-80.798869, 37.395807],\n            [-80.811639, 37.407507],\n            [-80.85836, 37.428168],\n            [-80.858473, 37.428301],\n            [-80.859556, 37.429568],\n            [-80.859558, 37.429555],\n            [-80.862761, 37.411829],\n            [-80.872589, 37.372347],\n            [-80.849451, 37.346909],\n            [-80.900535, 37.315],\n            [-80.919259, 37.306163],\n            [-80.947896, 37.295872],\n            [-80.966556, 37.292158],\n            [-80.973889, 37.291444],\n            [-80.980044, 37.293118],\n            [-80.981322, 37.293465],\n            [-81.034652, 37.290751],\n            [-81.084012, 37.284401],\n            [-81.112596, 37.278497],\n            [-81.167029, 37.262881],\n            [-81.204774, 37.243013],\n            [-81.225104, 37.234874],\n            [-81.320105, 37.299323],\n            [-81.362156, 37.337687],\n            [-81.366315, 37.335927],\n            [-81.367052, 37.334504],\n            [-81.36809, 37.332423],\n            [-81.369379, 37.331827],\n            [-81.367599, 37.327569],\n            [-81.371315, 37.324115],\n            [-81.377349, 37.318447],\n            [-81.380159, 37.317838],\n            [-81.384127, 37.318596],\n            [-81.384914, 37.318832],\n            [-81.38581, 37.320085],\n            [-81.386727, 37.320474],\n            [-81.388132, 37.319903],\n            [-81.409196, 37.286071],\n            [-81.409729, 37.284837],\n            [-81.504168, 37.250115],\n            [-81.50488, 37.247697],\n            [-81.507325, 37.2338],\n            [-81.557315, 37.207697],\n            [-81.558353, 37.208145],\n            [-81.560625, 37.206663],\n            [-81.678603, 37.202467],\n            [-81.683544, 37.211452],\n            [-81.728194, 37.239823],\n            [-81.73332, 37.238127],\n            [-81.738378, 37.240917],\n            [-81.744291, 37.244178],\n            [-81.74342, 37.245858],\n            [-81.743505, 37.247601],\n            [-81.747656, 37.264329],\n            [-81.75129, 37.265131],\n            [-81.752123, 37.265568],\n            [-81.752912, 37.266614],\n            [-81.755012, 37.26772],\n            [-81.757531, 37.27001],\n            [-81.757714, 37.271124],\n            [-81.75773, 37.271934],\n            [-81.757631, 37.274003],\n            [-81.76022, 37.275254],\n            [-81.761752, 37.275713],\n            [-81.762776, 37.275391],\n            [-81.763836, 37.275218],\n            [-81.765195, 37.275099],\n            [-81.767837, 37.274216],\n            [-81.774684, 37.274807],\n            [-81.774747, 37.274847],\n            [-81.793425, 37.281674],\n            [-81.793639, 37.282188],\n            [-81.809184, 37.283003],\n            [-81.810559, 37.28298],\n            [-81.84231, 37.285556],\n            [-81.843167, 37.285586],\n            [-81.854059, 37.291352],\n            [-81.853488, 37.294763],\n            [-81.854465, 37.299937],\n            [-81.853978, 37.300418],\n            [-81.86476, 37.308404],\n            [-81.865219, 37.308839],\n            [-81.873213, 37.325065],\n            [-81.878343, 37.328837],\n            [-81.878713, 37.331753],\n            [-81.879601, 37.332074],\n            [-81.880886, 37.331146],\n            [-81.885075, 37.330665],\n            [-81.886952, 37.330725],\n            [-81.887722, 37.331156],\n            [-81.892876, 37.330134],\n            [-81.893773, 37.330105],\n            [-81.894768, 37.331381],\n            [-81.894797, 37.332012],\n            [-81.895489, 37.332022],\n            [-81.896001, 37.331967],\n            [-81.899459, 37.340277],\n            [-81.899495, 37.341102],\n            [-81.902992, 37.34234],\n            [-81.903795, 37.34305],\n            [-81.905945, 37.342775],\n            [-81.906368, 37.34276],\n            [-81.907322, 37.343119],\n            [-81.907895, 37.343783],\n            [-81.910875, 37.348729],\n            [-81.911487, 37.348839],\n            [-81.920711, 37.355416],\n            [-81.921571, 37.356423],\n            [-81.925643, 37.357316],\n            [-81.926589, 37.358942],\n            [-81.929915, 37.366589],\n            [-81.930194, 37.366728],\n            [-81.933895, 37.372747],\n            [-81.92749, 37.413251],\n            [-81.935621, 37.438397],\n            [-81.949367, 37.445687],\n            [-81.968795, 37.451496],\n            [-81.987006, 37.454878],\n            [-81.99227, 37.460916],\n            [-81.996578, 37.476705],\n            [-81.992916, 37.482969],\n            [-81.94264, 37.508844],\n            [-81.92787, 37.512118],\n            [-81.968297, 37.537798],\n            [-82.291908, 37.311642],\n            [-82.305874, 37.3011],\n            [-82.310793, 37.297387],\n            [-82.350948, 37.267077],\n            [-82.510826, 37.218091],\n            [-82.553549, 37.200867],\n            [-82.565329, 37.196118],\n            [-82.565375, 37.196092],\n            [-82.624878, 37.162932],\n            [-82.721941, 37.105689],\n            [-82.720597, 37.081833],\n            [-82.722472, 37.045101],\n            [-82.771795, 37.015716],\n            [-82.777368, 37.015279],\n            [-82.788897, 37.00816],\n            [-82.789092, 37.007995],\n            [-82.790462, 37.007263],\n            [-82.79089, 37.00676],\n            [-82.800531, 37.007944],\n            [-82.815748, 37.007196],\n            [-82.818006, 37.006161],\n            [-82.830588, 37.000945],\n            [-82.829125, 36.997541],\n            [-82.830802, 36.993445],\n            [-82.833843, 36.991973],\n            [-82.836008, 36.988837],\n            [-82.838549, 36.987027],\n            [-82.840051, 36.987113],\n            [-82.851397, 36.984497],\n            [-82.852614, 36.984963],\n            [-82.862926, 36.979975],\n            [-82.864909, 36.97901],\n            [-82.866019, 36.978272],\n            [-82.866689, 36.978052],\n            [-82.867535, 36.977518],\n            [-82.868455, 36.976481],\n            [-82.869183, 36.974183],\n            [-82.869183, 36.974182],\n            [-82.870274, 36.965993],\n            [-82.87023, 36.965498],\n            [-82.867358, 36.963182],\n            [-82.865404, 36.958084],\n            [-82.864211, 36.957983],\n            [-82.862866, 36.957765],\n            [-82.860534, 36.956015],\n            [-82.858443, 36.954036],\n            [-82.855705, 36.953808],\n            [-82.856099, 36.952471],\n            [-82.860633, 36.94584],\n            [-82.861282, 36.944848],\n            [-82.861684, 36.939316],\n            [-82.860537, 36.937439],\n            [-82.858784, 36.933065],\n            [-82.858461, 36.932717],\n            [-82.861943, 36.924236],\n            [-82.863468, 36.922308],\n            [-82.872136, 36.913456],\n            [-82.873777, 36.912299],\n            [-82.885618, 36.900415],\n            [-82.91169, 36.874248],\n            [-82.911824, 36.874243],\n            [-82.973395, 36.859097],\n            [-83.07259, 36.854589],\n            [-83.099792, 36.824889],\n            [-83.131694, 36.781488],\n            [-83.131245, 36.767105],\n            [-83.125655, 36.761407],\n            [-83.125728, 36.761276],\n            [-83.127833, 36.750828],\n            [-83.136395, 36.743088],\n            [-83.167396, 36.739187],\n            [-83.199698, 36.737487],\n            [-83.342804, 36.701286],\n            [-83.353613, 36.696699],\n            [-83.354606, 36.696153],\n            [-83.460808, 36.664885],\n            [-83.461013, 36.664916],\n            [-83.498011, 36.670485],\n            [-83.527212, 36.665984],\n            [-83.649513, 36.616683],\n            [-83.675413, 36.600814],\n            [-83.670141, 36.600797],\n            [-83.670128, 36.600764],\n            [-83.472108, 36.597284],\n            [-83.2763, 36.598187],\n            [-83.250304, 36.593935],\n            [-83.249899, 36.593898],\n            [-83.248933, 36.593827],\n            [-83.028357, 36.593893],\n            [-83.02725, 36.593847],\n            [-82.985087, 36.593829],\n            [-82.830433, 36.593761],\n            [-82.69578, 36.593698],\n            [-82.679879, 36.593698],\n            [-82.609176, 36.594099],\n            [-82.561074, 36.5948],\n            [-82.559774, 36.5948],\n            [-82.554294, 36.594876],\n            [-82.293814, 36.595565],\n            [-82.243274, 36.595699],\n            [-82.226653, 36.595743],\n            [-82.225716, 36.595744],\n            [-82.223445, 36.595721],\n            [-82.221713, 36.595814],\n            [-82.211005, 36.59586],\n            [-82.210497, 36.595772],\n            [-82.188491, 36.595179],\n            [-82.18074, 36.594928],\n            [-82.177247, 36.594768],\n            [-82.173982, 36.594607],\n            [-82.150727, 36.594673],\n            [-82.148569, 36.594718],\n            [-82.14607, 36.594712],\n            [-81.934144, 36.594213],\n            [-81.922644, 36.616213],\n            [-81.826742, 36.614215],\n            [-81.6469, 36.611918],\n            [-81.677535, 36.588117],\n            [-81.60697, 36.587094],\n            [-81.521032, 36.58052],\n            [-81.353322, 36.574723],\n            [-81.353169, 36.574724],\n            [-81.307511, 36.575024],\n            [-81.061866, 36.56702],\n            [-81.058844, 36.566976],\n            [-80.945988, 36.563196],\n            [-80.944338, 36.563058],\n            [-80.901836, 36.561754],\n            [-80.901726, 36.561751],\n            [-80.837954, 36.559131],\n            [-80.837641, 36.559118],\n            [-80.837089, 36.559154],\n            [-80.744101, 36.561686],\n            [-80.687539, 36.561411],\n            [-80.612158, 36.558127],\n            [-80.4401, 36.55063],\n            [-80.432628, 36.550302],\n            [-80.431605, 36.550219],\n            [-80.228263, 36.543867],\n            [-80.225408, 36.543748],\n            [-80.171636, 36.543219],\n            [-80.169535, 36.54319],\n            [-80.053455, 36.542623],\n            [-80.027269, 36.542495],\n            [-79.967511, 36.542502],\n            [-79.966979, 36.542475],\n            [-79.920239, 36.542365],\n            [-79.714855, 36.541884],\n            [-79.667309, 36.541772],\n            [-79.666827, 36.541772],\n            [-79.510961, 36.54074],\n            [-79.510647, 36.540738],\n            [-79.470047, 36.541025],\n            [-79.445961, 36.541195],\n            [-79.445687, 36.541218],\n            [-79.342696, 36.541382],\n            [-79.218638, 36.541579],\n            [-79.20948, 36.541594],\n            [-79.208686, 36.541571],\n            [-79.137936, 36.541739],\n            [-79.126078, 36.541533],\n            [-79.124736, 36.541568],\n            [-78.971814, 36.542123],\n            [-78.970577, 36.542154],\n            [-78.942254, 36.542079],\n            [-78.942009, 36.542113],\n            [-78.91542, 36.541974],\n            [-78.914543, 36.541972],\n            [-78.7963, 36.541713],\n            [-78.76543, 36.541727],\n            [-78.758392, 36.541852],\n            [-78.734122, 36.541902],\n            [-78.670051, 36.542035],\n            [-78.663317, 36.542011],\n            [-78.533013, 36.541004],\n            [-78.529722, 36.540981],\n            [-78.471022, 36.542307],\n            [-78.470792, 36.542316],\n            [-78.45697, 36.542474],\n            [-78.441199, 36.542687],\n            [-78.436333, 36.542666],\n            [-78.323912, 36.543809],\n            [-78.246681, 36.544341],\n            [-78.245462, 36.544411],\n            [-78.133323, 36.543847],\n            [-78.132911, 36.543811],\n            [-78.046202, 36.544168],\n            [-78.03942, 36.544196],\n            [-78.038938, 36.544173],\n            [-77.899771, 36.544663],\n            [-77.882357, 36.544737],\n            [-77.87528, 36.544754],\n            [-77.767117, 36.544752],\n            [-77.296875, 36.544746],\n            [-77.24969, 36.544745],\n            [-77.1645, 36.54633],\n            [-76.916048, 36.543815],\n            [-76.916001, 36.543818],\n            [-76.915384, 36.543856],\n            [-76.807078, 36.550606],\n            [-76.781296, 36.550659],\n            [-76.541687, 36.550312],\n            [-76.541391, 36.550312],\n            [-76.491497, 36.550365],\n            [-76.313215, 36.550551],\n            [-76.313196, 36.550551],\n            [-76.12236, 36.550621],\n            [-76.034751, 36.550653],\n            [-76.02675, 36.550553],\n            [-75.957648, 36.550553],\n            [-75.955748, 36.550553],\n            [-75.953447, 36.550553],\n            [-75.952847, 36.550553],\n            [-75.922046, 36.550654],\n            [-75.911446, 36.550654],\n            [-75.909046, 36.550654],\n            [-75.904745, 36.550654],\n            [-75.903445, 36.550654],\n            [-75.894145, 36.550754],\n            [-75.893245, 36.550654],\n            [-75.891945, 36.550754],\n            [-75.886545, 36.550754],\n            [-75.885945, 36.550754],\n            [-75.880644, 36.550754],\n            [-75.879744, 36.550754],\n            [-75.867044, 36.550754],\n            [-75.874145, 36.583853],\n            [-75.890946, 36.630753],\n            [-75.921748, 36.692051],\n            [-75.94955, 36.76115],\n            [-75.965451, 36.812449],\n            [-75.972151, 36.842268],\n            [-75.991552, 36.910847],\n            [-75.996252, 36.922047],\n            [-76.007553, 36.929047],\n            [-76.013753, 36.930746],\n            [-76.033454, 36.931946],\n            [-76.043054, 36.927547],\n            [-76.058154, 36.916947],\n            [-76.087955, 36.908647],\n            [-76.095508, 36.908817],\n            [-76.139557, 36.923047],\n            [-76.177019, 36.92929],\n            [-76.189959, 36.931447],\n            [-76.22166, 36.939547],\n            [-76.234961, 36.945147],\n            [-76.267962, 36.964547],\n            [-76.285063, 36.968747],\n            [-76.297663, 36.968147],\n            [-76.299364, 36.965547],\n            [-76.315867, 36.955351],\n            [-76.322764, 36.959147],\n            [-76.327365, 36.959447],\n            [-76.330765, 36.938647],\n            [-76.328864, 36.918447],\n            [-76.333158, 36.917293],\n            [-76.344663, 36.919313],\n            [-76.345569, 36.924531],\n            [-76.353765, 36.922747],\n            [-76.385867, 36.923247],\n            [-76.387567, 36.899547],\n            [-76.406908, 36.897507],\n            [-76.407507, 36.897444],\n            [-76.43122, 36.904532],\n            [-76.441605, 36.906116],\n            [-76.447413, 36.90322],\n            [-76.453941, 36.89274],\n            [-76.45329, 36.887031],\n            [-76.454692, 36.884077],\n            [-76.469914, 36.882898],\n            [-76.483369, 36.896239],\n            [-76.482135, 36.901108],\n            [-76.482407, 36.917364],\n            [-76.484107, 36.928916],\n            [-76.487559, 36.952372],\n            [-76.500355, 36.965212],\n            [-76.513363, 36.968057],\n            [-76.521006, 36.973187],\n            [-76.524142, 36.978316],\n            [-76.522971, 36.981085],\n            [-76.524853, 36.983833],\n            [-76.551246, 36.998946],\n            [-76.562923, 37.003796],\n            [-76.565803, 37.007493],\n            [-76.576617, 37.021374],\n            [-76.577531, 37.022548],\n            [-76.57816, 37.022982],\n            [-76.579236, 37.023726],\n            [-76.579393, 37.023835],\n            [-76.584478, 37.027349],\n            [-76.586491, 37.02874],\n            [-76.612124, 37.035604],\n            [-76.646013, 37.036228],\n            [-76.653998, 37.039172],\n            [-76.662558, 37.045748],\n            [-76.66835, 37.05506],\n            [-76.669822, 37.06426],\n            [-76.669118, 37.068132],\n            [-76.668295, 37.072656],\n            [-76.667646, 37.076228],\n            [-76.667219, 37.077149],\n            [-76.666526, 37.078643],\n            [-76.66555, 37.080746],\n            [-76.659394, 37.094019],\n            [-76.65811, 37.096787],\n            [-76.657703, 37.101161],\n            [-76.657101, 37.107617],\n            [-76.656894, 37.109843],\n            [-76.66375, 37.129979],\n            [-76.665641, 37.135534],\n            [-76.665833, 37.136098],\n            [-76.666542, 37.138179],\n            [-76.669604, 37.140534],\n            [-76.671588, 37.14206],\n            [-76.67147, 37.158739],\n            [-76.66867, 37.166771],\n            [-76.66427, 37.171027],\n            [-76.663774, 37.173875],\n            [-76.669886, 37.183571],\n            [-76.685614, 37.198851],\n            [-76.691918, 37.195731],\n            [-76.692926, 37.186147],\n            [-76.696735, 37.174403],\n            [-76.715295, 37.148035],\n            [-76.73032, 37.145395],\n            [-76.73728, 37.146164],\n            [-76.747632, 37.150548],\n            [-76.756899, 37.161582],\n            [-76.796905, 37.189404],\n            [-76.802511, 37.198308],\n            [-76.803198, 37.201513],\n            [-76.801023, 37.206043],\n            [-76.791555, 37.207564],\n            [-76.780532, 37.209336],\n            [-76.773752, 37.206061],\n            [-76.757765, 37.191658],\n            [-76.75047, 37.190098],\n            [-76.74304, 37.192611],\n            [-76.74, 37.195379],\n            [-76.73432, 37.204211],\n            [-76.730951, 37.213813],\n            [-76.698943, 37.219059],\n            [-76.693373, 37.221228],\n            [-76.689166, 37.222866],\n            [-76.649869, 37.220914],\n            [-76.641085, 37.216002],\n            [-76.639608, 37.214783],\n            [-76.629868, 37.206738],\n            [-76.623292, 37.198738],\n            [-76.621113, 37.195103],\n            [-76.619962, 37.193184],\n            [-76.61934, 37.192146],\n            [-76.618008, 37.186429],\n            [-76.617537, 37.184409],\n            [-76.616804, 37.18126],\n            [-76.616268, 37.178962],\n            [-76.614221, 37.174335],\n            [-76.613599, 37.172931],\n            [-76.612517, 37.170486],\n            [-76.611018, 37.167097],\n            [-76.610972, 37.166994],\n            [-76.606684, 37.166674],\n            [-76.604476, 37.160034],\n            [-76.617084, 37.144498],\n            [-76.622252, 37.142146],\n            [-76.62478, 37.127091],\n            [-76.618252, 37.119347],\n            [-76.579499, 37.096627],\n            [-76.567931, 37.080467],\n            [-76.564219, 37.077507],\n            [-76.555066, 37.075859],\n            [-76.536875, 37.083942],\n            [-76.528997, 37.079388],\n            [-76.526203, 37.077773],\n            [-76.526573, 37.070047],\n            [-76.527973, 37.068247],\n            [-76.526273, 37.062947],\n            [-76.518242, 37.055351],\n            [-76.512289, 37.054858],\n            [-76.509339, 37.053173],\n            [-76.507614, 37.052188],\n            [-76.46949, 37.030414],\n            [-76.464471, 37.027547],\n            [-76.448231, 37.007705],\n            [-76.449891, 37.004868],\n            [-76.452461, 37.004603],\n            [-76.452118, 36.998163],\n            [-76.428869, 36.969947],\n            [-76.418969, 36.964047],\n            [-76.411768, 36.962847],\n            [-76.408568, 36.969147],\n            [-76.396368, 36.982347],\n            [-76.387711, 36.989671],\n            [-76.383367, 36.993347],\n            [-76.373567, 36.998347],\n            [-76.356366, 37.002947],\n            [-76.348066, 37.006747],\n            [-76.340666, 37.015246],\n            [-76.34011, 37.015212],\n            [-76.329531, 37.014556],\n            [-76.318065, 37.013846],\n            [-76.314624, 37.00933],\n            [-76.315008, 37.001683],\n            [-76.312048, 37.000371],\n            [-76.304272, 37.001378],\n            [-76.300352, 37.00885],\n            [-76.292863, 37.035145],\n            [-76.271262, 37.084544],\n            [-76.274463, 37.094544],\n            [-76.287236, 37.117453],\n            [-76.292344, 37.126615],\n            [-76.311088, 37.138495],\n            [-76.324353, 37.142895],\n            [-76.330481, 37.141727],\n            [-76.334017, 37.144223],\n            [-76.340129, 37.151823],\n            [-76.34405, 37.160367],\n            [-76.344898, 37.164479],\n            [-76.343234, 37.166207],\n            [-76.348658, 37.170655],\n            [-76.35969, 37.16858],\n            [-76.375255, 37.16084],\n            [-76.381379, 37.155711],\n            [-76.394756, 37.157568],\n            [-76.399659, 37.160272],\n            [-76.397883, 37.164415],\n            [-76.391252, 37.179887],\n            [-76.389284, 37.193503],\n            [-76.396052, 37.201087],\n            [-76.3936, 37.214049],\n            [-76.389793, 37.222981],\n            [-76.394132, 37.22515],\n            [-76.471799, 37.216016],\n            [-76.494008, 37.225408],\n            [-76.50364, 37.233856],\n            [-76.4989, 37.241015],\n            [-76.493302, 37.24947],\n            [-76.48284, 37.254831],\n            [-76.475927, 37.250543],\n            [-76.429141, 37.25331],\n            [-76.421765, 37.255198],\n            [-76.417173, 37.26395],\n            [-76.392788, 37.264973],\n            [-76.36229, 37.270226],\n            [-76.349489, 37.273963],\n            [-76.352556, 37.278334],\n            [-76.369029, 37.279311],\n            [-76.381075, 37.28534],\n            [-76.385603, 37.294108],\n            [-76.38777, 37.30767],\n            [-76.406388, 37.332924],\n            [-76.434965, 37.354524],\n            [-76.445333, 37.36646],\n            [-76.437525, 37.37975],\n            [-76.422503, 37.381355],\n            [-76.418176, 37.385064],\n            [-76.418719, 37.3978],\n            [-76.415167, 37.402133],\n            [-76.404756, 37.400213],\n            [-76.393125, 37.398068],\n            [-76.393958, 37.39594],\n            [-76.391437, 37.390284],\n            [-76.387112, 37.385061],\n            [-76.366751, 37.374495],\n            [-76.337476, 37.364014],\n            [-76.31205, 37.338088],\n            [-76.308581, 37.329366],\n            [-76.291324, 37.324145],\n            [-76.282555, 37.319107],\n            [-76.275552, 37.309964],\n            [-76.272005, 37.322194],\n            [-76.272888, 37.335174],\n            [-76.264847, 37.357399],\n            [-76.262407, 37.360786],\n            [-76.258277, 37.36202],\n            [-76.24846, 37.375135],\n            [-76.245283, 37.386839],\n            [-76.246617, 37.404122],\n            [-76.250454, 37.421886],\n            [-76.252415, 37.447274],\n            [-76.265056, 37.481365],\n            [-76.281043, 37.507821],\n            [-76.288167, 37.514118],\n            [-76.293599, 37.516499],\n            [-76.297651, 37.515424],\n            [-76.298456, 37.512677],\n            [-76.296445, 37.511235],\n            [-76.297739, 37.506863],\n            [-76.306952, 37.497488],\n            [-76.32947, 37.49492],\n            [-76.352678, 37.504913],\n            [-76.359378, 37.513426],\n            [-76.360474, 37.51924],\n            [-76.355084, 37.527364],\n            [-76.348992, 37.536548],\n            [-76.339989, 37.53833],\n            [-76.330598, 37.536391],\n            [-76.302762, 37.551295],\n            [-76.29796, 37.557636],\n            [-76.300144, 37.561734],\n            [-76.332641, 37.570042],\n            [-76.357835, 37.573699],\n            [-76.383188, 37.573056],\n            [-76.410781, 37.581815],\n            [-76.420252, 37.598686],\n            [-76.435474, 37.612807],\n            [-76.527188, 37.611315],\n            [-76.533777, 37.61253],\n            [-76.542666, 37.616857],\n            [-76.574049, 37.646781],\n            [-76.583143, 37.661986],\n            [-76.579591, 37.671508],\n            [-76.597868, 37.702918],\n            [-76.598073, 37.70912],\n            [-76.595943, 37.712989],\n            [-76.597213, 37.717269],\n            [-76.606466, 37.724819],\n            [-76.61997, 37.731271],\n            [-76.621433, 37.737973],\n            [-76.617373, 37.742347],\n            [-76.61971, 37.744795],\n            [-76.639962, 37.750941],\n            [-76.663887, 37.751887],\n            [-76.677002, 37.7561],\n            [-76.680922, 37.759647],\n            [-76.683372, 37.765507],\n            [-76.683359, 37.770258],\n            [-76.683343, 37.775783],\n            [-76.681901, 37.778118],\n            [-76.683775, 37.781391],\n            [-76.689773, 37.78519],\n            [-76.715498, 37.785873],\n            [-76.723863, 37.788503],\n            [-76.734309, 37.79866],\n            [-76.7512, 37.824141],\n            [-76.766328, 37.840437],\n            [-76.782826, 37.863184],\n            [-76.784618, 37.869569],\n            [-76.77539, 37.874306],\n            [-76.765711, 37.879274],\n            [-76.747552, 37.875864],\n            [-76.738395, 37.865373],\n            [-76.733046, 37.852009],\n            [-76.72718, 37.842263],\n            [-76.722156, 37.83668],\n            [-76.701606, 37.822677],\n            [-76.692747, 37.82277],\n            [-76.680197, 37.825654],\n            [-76.658302, 37.806815],\n            [-76.651413, 37.796239],\n            [-76.642276, 37.792317],\n            [-76.615351, 37.780759],\n            [-76.602024, 37.772731],\n            [-76.595939, 37.77168],\n            [-76.593835, 37.772848],\n            [-76.584289, 37.76889],\n            [-76.576387, 37.757493],\n            [-76.560476, 37.727827],\n            [-76.54005, 37.704432],\n            [-76.537228, 37.698892],\n            [-76.535302, 37.687516],\n            [-76.537698, 37.66893],\n            [-76.536548, 37.663574],\n            [-76.510187, 37.642324],\n            [-76.501522, 37.643762],\n            [-76.497564, 37.647056],\n            [-76.491799, 37.663614],\n            [-76.489576, 37.666201],\n            [-76.472392, 37.665772],\n            [-76.443254, 37.652347],\n            [-76.399236, 37.628636],\n            [-76.390054, 37.630326],\n            [-76.381106, 37.627003],\n            [-76.36232, 37.610368],\n            [-76.309174, 37.621892],\n            [-76.28037, 37.613715],\n            [-76.279447, 37.618225],\n            [-76.287959, 37.631771],\n            [-76.292534, 37.636098],\n            [-76.306464, 37.642005],\n            [-76.332562, 37.645817],\n            [-76.339892, 37.655966],\n            [-76.324808, 37.676983],\n            [-76.320216, 37.680666],\n            [-76.315161, 37.68472],\n            [-76.312079, 37.684651],\n            [-76.302545, 37.689],\n            [-76.300067, 37.695364],\n            [-76.302803, 37.704474],\n            [-76.312858, 37.720338],\n            [-76.304917, 37.729913],\n            [-76.312108, 37.750522],\n            [-76.306489, 37.788646],\n            [-76.310307, 37.794849],\n            [-76.307482, 37.81235],\n            [-76.293525, 37.822717],\n            [-76.284904, 37.822308],\n            [-76.281985, 37.818068],\n            [-76.282592, 37.814109],\n            [-76.280544, 37.812597],\n            [-76.275178, 37.812664],\n            [-76.266057, 37.8174],\n            [-76.251358, 37.833072],\n            [-76.245072, 37.861918],\n            [-76.236725, 37.889174],\n            [-76.265998, 37.91138],\n            [-76.343848, 37.947345],\n            [-76.360211, 37.952329],\n            [-76.391439, 37.958742],\n            [-76.416299, 37.966828],\n            [-76.427487, 37.977038],\n            [-76.462542, 37.998572],\n            [-76.465291, 38.010226],\n            [-76.469343, 38.013544],\n            [-76.491998, 38.017222],\n            [-76.516547, 38.026566],\n            [-76.519536, 38.034814],\n            [-76.522354, 38.04259],\n            [-76.535919, 38.069532],\n            [-76.543155, 38.076971],\n            [-76.579497, 38.09487],\n            [-76.600937, 38.110084],\n            [-76.604131, 38.128771],\n            [-76.613939, 38.148587],\n            [-76.629476, 38.15305],\n            [-76.638983, 38.151476],\n            [-76.643448, 38.14825],\n            [-76.665127, 38.147638],\n            [-76.684892, 38.156497],\n            [-76.701297, 38.155718],\n            [-76.704048, 38.149264],\n            [-76.721722, 38.137635],\n            [-76.738938, 38.14651],\n            [-76.740278, 38.152824],\n            [-76.743064, 38.156988],\n            [-76.749685, 38.162114],\n            [-76.760241, 38.166581],\n            [-76.788445, 38.169199],\n            [-76.802968, 38.167988],\n            [-76.824274, 38.163639],\n            [-76.838795, 38.163476],\n            [-76.875272, 38.172207],\n            [-76.910832, 38.197073],\n            [-76.916922, 38.199751],\n            [-76.937134, 38.202384],\n            [-76.962311, 38.214075],\n            [-76.967335, 38.227185],\n            [-76.966553, 38.229542],\n            [-76.962375, 38.230093],\n            [-76.957417, 38.236341],\n            [-76.957796, 38.243183],\n            [-76.96215, 38.256486],\n            [-76.981372, 38.274214],\n            [-76.990255, 38.273935],\n            [-76.99767, 38.278047],\n            [-77.026304, 38.302685],\n            [-77.030683, 38.311623],\n            [-77.020947, 38.329273],\n            [-77.016932, 38.341697],\n            [-77.011827, 38.374554],\n            [-77.024866, 38.386791],\n            [-77.043526, 38.400548],\n            [-77.051437, 38.399083],\n            [-77.056032, 38.3962],\n            [-77.069956, 38.377895],\n            [-77.08481, 38.368297],\n            [-77.094665, 38.367715],\n            [-77.104717, 38.369655],\n            [-77.138224, 38.367917],\n            [-77.155191, 38.351047],\n            [-77.162692, 38.345994],\n            [-77.17934, 38.341915],\n            [-77.199433, 38.34089],\n            [-77.240072, 38.331598],\n            [-77.265295, 38.333165],\n            [-77.279633, 38.339444],\n            [-77.286202, 38.347024],\n            [-77.286202, 38.347025],\n            [-77.28835, 38.351286],\n            [-77.288145, 38.359477],\n            [-77.296077, 38.369797],\n            [-77.317288, 38.383576],\n            [-77.314848, 38.389579],\n            [-77.312201, 38.390958],\n            [-77.310719, 38.397669],\n            [-77.319036, 38.417803],\n            [-77.32544, 38.44885],\n            [-77.322622, 38.467131],\n            [-77.310334, 38.493926],\n            [-77.302457, 38.504683],\n            [-77.300776, 38.506978],\n            [-77.298844, 38.508724],\n            [-77.29582, 38.511457],\n            [-77.291103, 38.515721],\n            [-77.283503, 38.525221],\n            [-77.276303, 38.53962],\n            [-77.276603, 38.54712],\n            [-77.26083, 38.56533],\n            [-77.265304, 38.580319],\n            [-77.26443, 38.582845],\n            [-77.247003, 38.590618],\n            [-77.246441, 38.599532],\n            [-77.245104, 38.620717],\n            [-77.248904, 38.628617],\n            [-77.246704, 38.635217],\n            [-77.240604, 38.638917],\n            [-77.22235, 38.638091],\n            [-77.216303, 38.637817],\n            [-77.205103, 38.623917],\n            [-77.204302, 38.617817],\n            [-77.202002, 38.617217],\n            [-77.174902, 38.624217],\n            [-77.157501, 38.636417],\n            [-77.1302, 38.635017],\n            [-77.135901, 38.649817],\n            [-77.132501, 38.673816],\n            [-77.121101, 38.686616],\n            [-77.1059, 38.696815],\n            [-77.086113, 38.705792],\n            [-77.074599, 38.711015],\n            [-77.05991, 38.734419],\n            [-77.041398, 38.763914],\n            [-77.039239, 38.7852],\n            [-77.038598, 38.791513],\n            [-77.032986, 38.8395],\n            [-77.031698, 38.850512],\n            [-77.040599, 38.871212],\n            [-77.068199, 38.899811],\n            [-77.0902, 38.904211],\n            [-77.1012, 38.911111],\n            [-77.119863, 38.934265],\n            [-77.1199, 38.934311],\n            [-77.137701, 38.95531],\n            [-77.148179, 38.965002],\n            [-77.166901, 38.96811],\n            [-77.197502, 38.96681],\n            [-77.221502, 38.97131],\n            [-77.235403, 38.97661],\n            [-77.249803, 38.985909],\n            [-77.255703, 39.002409],\n            [-77.251803, 39.011409],\n            [-77.261403, 39.031009],\n            [-77.291605, 39.045408],\n            [-77.328002, 39.058554],\n            [-77.340287, 39.062991],\n            [-77.375079, 39.061297],\n            [-77.42318, 39.066878],\n            [-77.458202, 39.073723],\n            [-77.519929, 39.120925],\n            [-77.524559, 39.127821],\n            [-77.527282, 39.146236],\n            [-77.516426, 39.170891],\n            [-77.510631, 39.178484],\n            [-77.505162, 39.18205],\n            [-77.485971, 39.185665],\n            [-77.478596, 39.189168],\n            [-77.458884, 39.219826],\n            [-77.458779, 39.22028],\n            [-77.45768, 39.22502],\n            [-77.46021, 39.228359],\n            [-77.484605, 39.245941],\n            [-77.511222, 39.2535],\n            [-77.534461, 39.262361],\n            [-77.543228, 39.266937],\n            [-77.545846, 39.271535],\n            [-77.560854, 39.286152],\n            [-77.592739, 39.30129],\n            [-77.667749, 39.318129],\n            [-77.677505, 39.318699],\n            [-77.719029, 39.321125],\n            [-77.750267, 39.289284],\n            [-77.753357, 39.280331],\n            [-77.75306, 39.277971],\n            [-77.753105, 39.27734],\n            [-77.755193, 39.275191],\n            [-77.755698, 39.274575],\n            [-77.758412, 39.269197],\n            [-77.758733, 39.268114],\n            [-77.761217, 39.263721],\n            [-77.761768, 39.263031],\n            [-77.768, 39.257657],\n            [-77.768992, 39.256417],\n            [-77.767277, 39.24938],\n            [-77.771415, 39.236776],\n            [-77.822182, 39.139985],\n            [-77.828157, 39.132329],\n            [-78.032841, 39.264403],\n            [-78.033183, 39.264624],\n            [-78.033185, 39.264626],\n            [-78.228766, 39.391233],\n            [-78.347087, 39.466012],\n            [-78.362267, 39.357784],\n            [-78.34048, 39.353492],\n            [-78.35894, 39.319484],\n            [-78.360035, 39.317771],\n            [-78.399785, 39.244129],\n            [-78.399669, 39.243874],\n            [-78.423968, 39.212049],\n            [-78.427911, 39.208611],\n            [-78.429803, 39.207014],\n            [-78.431167, 39.205744],\n            [-78.43213, 39.204717],\n            [-78.437053, 39.199766],\n            [-78.438651, 39.198049],\n            [-78.426722, 39.188903],\n            [-78.41074, 39.171983],\n            [-78.418377, 39.156656],\n            [-78.439429, 39.132146],\n            [-78.459869, 39.113351],\n            [-78.508132, 39.08863],\n            [-78.544111, 39.056676],\n            [-78.571901, 39.031995],\n            [-78.565837, 39.026303],\n            [-78.554222, 39.019672],\n            [-78.557647, 39.013189],\n            [-78.601655, 38.964603],\n            [-78.710949, 38.910175],\n            [-78.714135, 38.911176],\n            [-78.716956, 38.916273],\n            [-78.719755, 38.922135],\n            [-78.719806, 38.922638],\n            [-78.757278, 38.903203],\n            [-78.779198, 38.892298],\n            [-78.788031, 38.885123],\n            [-78.808181, 38.856175],\n            [-78.835191, 38.811499],\n            [-78.869276, 38.762991]\n          ],\n          [\n            [-78.8214111328125, 38.45789034424927],\n            [-78.8214111328125, 38.66406704456943],\n            [-78.5247802734375, 38.66406704456943],\n            [-78.5247802734375, 38.45789034424927],\n            [-78.8214111328125, 38.45789034424927]\n          ],\n          [\n            [-78.2940673828125, 39.138581990583525],\n            [-78.2940673828125, 39.30029918615032],\n            [-78.145751953125, 39.30029918615032],\n            [-78.145751953125, 39.138581990583525],\n            [-78.2940673828125, 39.138581990583525]\n          ]\n        ]\n      },\n      \"properties\": {},\n      \"type\": \"Feature\"\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.60693359375, 36.38591277287651],\n            [-76.717529296875, 36.38591277287651],\n            [-76.717529296875, 39.07890809706475],\n            [-79.60693359375, 39.07890809706475],\n            [-79.60693359375, 36.38591277287651]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/test/in/polygon-point-intersection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [115.872872384, -31.977789227500004],\n            [115.87413347200001, -31.978896027],\n            [115.874207392, -31.978955634],\n            [115.874293312, -31.978886666],\n            [115.875, -31.9782948325],\n            [115.873511744, -31.977027638],\n            [115.8731464, -31.977071372],\n            [115.872185504, -31.9771863865],\n            [115.872872384, -31.977789227500004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [115.875, -31.98],\n            [115.88, -31.98],\n            [115.88, -31.975],\n            [115.875, -31.975],\n            [115.875, -31.98]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/test/in/polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78.869276, 38.762991],\n            [-78.993997, 38.850102],\n            [-78.999752, 38.846162],\n            [-79.055354, 38.782213],\n            [-79.057253, 38.761413],\n            [-79.092555, 38.700149],\n            [-79.092271, 38.699208],\n            [-79.135472, 38.644057],\n            [-79.135546, 38.643715],\n            [-79.136374, 38.6424],\n            [-79.137012, 38.640655],\n            [-79.146741, 38.625819],\n            [-79.146974, 38.625641],\n            [-79.174512, 38.566531],\n            [-79.174881, 38.566314],\n            [-79.207884, 38.500428],\n            [-79.207873, 38.500122],\n            [-79.209703, 38.495574],\n            [-79.210008, 38.494283],\n            [-79.210026, 38.494231],\n            [-79.225839, 38.479446],\n            [-79.23162, 38.474041],\n            [-79.234408, 38.473011],\n            [-79.240059, 38.469841],\n            [-79.242024, 38.464332],\n            [-79.26291, 38.444586],\n            [-79.263376, 38.443762],\n            [-79.265327, 38.441772],\n            [-79.267414, 38.438322],\n            [-79.282663, 38.431021],\n            [-79.280263, 38.425475],\n            [-79.290529, 38.420757],\n            [-79.291813, 38.419627],\n            [-79.295712, 38.418129],\n            [-79.297758, 38.416438],\n            [-79.312276, 38.411876],\n            [-79.476638, 38.457228],\n            [-79.521469, 38.533918],\n            [-79.53687, 38.550917],\n            [-79.555471, 38.560217],\n            [-79.597955, 38.572767],\n            [-79.649075, 38.591515],\n            [-79.669128, 38.510975],\n            [-79.669128, 38.510883],\n            [-79.695565, 38.477842],\n            [-79.699006, 38.475148],\n            [-79.688205, 38.450476],\n            [-79.688962, 38.449538],\n            [-79.689544, 38.442511],\n            [-79.691377, 38.439558],\n            [-79.731661, 38.374143],\n            [-79.808711, 38.309429],\n            [-79.810115, 38.305037],\n            [-79.788945, 38.268703],\n            [-79.790134, 38.267654],\n            [-79.794568, 38.264856],\n            [-79.891999, 38.203378],\n            [-79.892345, 38.202397],\n            [-79.916174, 38.184386],\n            [-79.917061, 38.183741],\n            [-79.921196, 38.180378],\n            [-79.921026, 38.179954],\n            [-79.925251, 38.150465],\n            [-79.925512, 38.150237],\n            [-79.928683, 38.144928],\n            [-79.928747, 38.144436],\n            [-79.933751, 38.135508],\n            [-79.938394, 38.130563],\n            [-79.931034, 38.101402],\n            [-79.933911, 38.099168],\n            [-79.959844, 38.063697],\n            [-79.978427, 38.029082],\n            [-80.002507, 37.992767],\n            [-80.055278, 37.951702],\n            [-80.130464, 37.893194],\n            [-80.14613, 37.884453],\n            [-80.147316, 37.885936],\n            [-80.148964, 37.886057],\n            [-80.162202, 37.875122],\n            [-80.227092, 37.798886],\n            [-80.231551, 37.792591],\n            [-80.257411, 37.756084],\n            [-80.262765, 37.738336],\n            [-80.260313, 37.733517],\n            [-80.259342, 37.731205],\n            [-80.263936, 37.719137],\n            [-80.287107, 37.696403],\n            [-80.296138, 37.691783],\n            [-80.292337, 37.683976],\n            [-80.292258, 37.683732],\n            [-80.270323, 37.648982],\n            [-80.270352, 37.648929],\n            [-80.267455, 37.646108],\n            [-80.267228, 37.646011],\n            [-80.264874, 37.645511],\n            [-80.26483, 37.645526],\n            [-80.263291, 37.645101],\n            [-80.263281, 37.645082],\n            [-80.254469, 37.642333],\n            [-80.254431, 37.642352],\n            [-80.239288, 37.637672],\n            [-80.220984, 37.627767],\n            [-80.223386, 37.623185],\n            [-80.240272, 37.606961],\n            [-80.288766, 37.58196],\n            [-80.312393, 37.546239],\n            [-80.330306, 37.536244],\n            [-80.314806, 37.500943],\n            [-80.320627, 37.49888],\n            [-80.425656, 37.449876],\n            [-80.443025, 37.438126],\n            [-80.46482, 37.426144],\n            [-80.475601, 37.422949],\n            [-80.494867, 37.43507],\n            [-80.511391, 37.481672],\n            [-80.622664, 37.433307],\n            [-80.770082, 37.372363],\n            [-80.776649, 37.383679],\n            [-80.776766, 37.384131],\n            [-80.798869, 37.395807],\n            [-80.811639, 37.407507],\n            [-80.85836, 37.428168],\n            [-80.858473, 37.428301],\n            [-80.859556, 37.429568],\n            [-80.859558, 37.429555],\n            [-80.862761, 37.411829],\n            [-80.872589, 37.372347],\n            [-80.849451, 37.346909],\n            [-80.900535, 37.315],\n            [-80.919259, 37.306163],\n            [-80.947896, 37.295872],\n            [-80.966556, 37.292158],\n            [-80.973889, 37.291444],\n            [-80.980044, 37.293118],\n            [-80.981322, 37.293465],\n            [-81.034652, 37.290751],\n            [-81.084012, 37.284401],\n            [-81.112596, 37.278497],\n            [-81.167029, 37.262881],\n            [-81.204774, 37.243013],\n            [-81.225104, 37.234874],\n            [-81.320105, 37.299323],\n            [-81.362156, 37.337687],\n            [-81.366315, 37.335927],\n            [-81.367052, 37.334504],\n            [-81.36809, 37.332423],\n            [-81.369379, 37.331827],\n            [-81.367599, 37.327569],\n            [-81.371315, 37.324115],\n            [-81.377349, 37.318447],\n            [-81.380159, 37.317838],\n            [-81.384127, 37.318596],\n            [-81.384914, 37.318832],\n            [-81.38581, 37.320085],\n            [-81.386727, 37.320474],\n            [-81.388132, 37.319903],\n            [-81.409196, 37.286071],\n            [-81.409729, 37.284837],\n            [-81.504168, 37.250115],\n            [-81.50488, 37.247697],\n            [-81.507325, 37.2338],\n            [-81.557315, 37.207697],\n            [-81.558353, 37.208145],\n            [-81.560625, 37.206663],\n            [-81.678603, 37.202467],\n            [-81.683544, 37.211452],\n            [-81.728194, 37.239823],\n            [-81.73332, 37.238127],\n            [-81.738378, 37.240917],\n            [-81.744291, 37.244178],\n            [-81.74342, 37.245858],\n            [-81.743505, 37.247601],\n            [-81.747656, 37.264329],\n            [-81.75129, 37.265131],\n            [-81.752123, 37.265568],\n            [-81.752912, 37.266614],\n            [-81.755012, 37.26772],\n            [-81.757531, 37.27001],\n            [-81.757714, 37.271124],\n            [-81.75773, 37.271934],\n            [-81.757631, 37.274003],\n            [-81.76022, 37.275254],\n            [-81.761752, 37.275713],\n            [-81.762776, 37.275391],\n            [-81.763836, 37.275218],\n            [-81.765195, 37.275099],\n            [-81.767837, 37.274216],\n            [-81.774684, 37.274807],\n            [-81.774747, 37.274847],\n            [-81.793425, 37.281674],\n            [-81.793639, 37.282188],\n            [-81.809184, 37.283003],\n            [-81.810559, 37.28298],\n            [-81.84231, 37.285556],\n            [-81.843167, 37.285586],\n            [-81.854059, 37.291352],\n            [-81.853488, 37.294763],\n            [-81.854465, 37.299937],\n            [-81.853978, 37.300418],\n            [-81.86476, 37.308404],\n            [-81.865219, 37.308839],\n            [-81.873213, 37.325065],\n            [-81.878343, 37.328837],\n            [-81.878713, 37.331753],\n            [-81.879601, 37.332074],\n            [-81.880886, 37.331146],\n            [-81.885075, 37.330665],\n            [-81.886952, 37.330725],\n            [-81.887722, 37.331156],\n            [-81.892876, 37.330134],\n            [-81.893773, 37.330105],\n            [-81.894768, 37.331381],\n            [-81.894797, 37.332012],\n            [-81.895489, 37.332022],\n            [-81.896001, 37.331967],\n            [-81.899459, 37.340277],\n            [-81.899495, 37.341102],\n            [-81.902992, 37.34234],\n            [-81.903795, 37.34305],\n            [-81.905945, 37.342775],\n            [-81.906368, 37.34276],\n            [-81.907322, 37.343119],\n            [-81.907895, 37.343783],\n            [-81.910875, 37.348729],\n            [-81.911487, 37.348839],\n            [-81.920711, 37.355416],\n            [-81.921571, 37.356423],\n            [-81.925643, 37.357316],\n            [-81.926589, 37.358942],\n            [-81.929915, 37.366589],\n            [-81.930194, 37.366728],\n            [-81.933895, 37.372747],\n            [-81.92749, 37.413251],\n            [-81.935621, 37.438397],\n            [-81.949367, 37.445687],\n            [-81.968795, 37.451496],\n            [-81.987006, 37.454878],\n            [-81.99227, 37.460916],\n            [-81.996578, 37.476705],\n            [-81.992916, 37.482969],\n            [-81.94264, 37.508844],\n            [-81.92787, 37.512118],\n            [-81.968297, 37.537798],\n            [-82.291908, 37.311642],\n            [-82.305874, 37.3011],\n            [-82.310793, 37.297387],\n            [-82.350948, 37.267077],\n            [-82.510826, 37.218091],\n            [-82.553549, 37.200867],\n            [-82.565329, 37.196118],\n            [-82.565375, 37.196092],\n            [-82.624878, 37.162932],\n            [-82.721941, 37.105689],\n            [-82.720597, 37.081833],\n            [-82.722472, 37.045101],\n            [-82.771795, 37.015716],\n            [-82.777368, 37.015279],\n            [-82.788897, 37.00816],\n            [-82.789092, 37.007995],\n            [-82.790462, 37.007263],\n            [-82.79089, 37.00676],\n            [-82.800531, 37.007944],\n            [-82.815748, 37.007196],\n            [-82.818006, 37.006161],\n            [-82.830588, 37.000945],\n            [-82.829125, 36.997541],\n            [-82.830802, 36.993445],\n            [-82.833843, 36.991973],\n            [-82.836008, 36.988837],\n            [-82.838549, 36.987027],\n            [-82.840051, 36.987113],\n            [-82.851397, 36.984497],\n            [-82.852614, 36.984963],\n            [-82.862926, 36.979975],\n            [-82.864909, 36.97901],\n            [-82.866019, 36.978272],\n            [-82.866689, 36.978052],\n            [-82.867535, 36.977518],\n            [-82.868455, 36.976481],\n            [-82.869183, 36.974183],\n            [-82.869183, 36.974182],\n            [-82.870274, 36.965993],\n            [-82.87023, 36.965498],\n            [-82.867358, 36.963182],\n            [-82.865404, 36.958084],\n            [-82.864211, 36.957983],\n            [-82.862866, 36.957765],\n            [-82.860534, 36.956015],\n            [-82.858443, 36.954036],\n            [-82.855705, 36.953808],\n            [-82.856099, 36.952471],\n            [-82.860633, 36.94584],\n            [-82.861282, 36.944848],\n            [-82.861684, 36.939316],\n            [-82.860537, 36.937439],\n            [-82.858784, 36.933065],\n            [-82.858461, 36.932717],\n            [-82.861943, 36.924236],\n            [-82.863468, 36.922308],\n            [-82.872136, 36.913456],\n            [-82.873777, 36.912299],\n            [-82.885618, 36.900415],\n            [-82.91169, 36.874248],\n            [-82.911824, 36.874243],\n            [-82.973395, 36.859097],\n            [-83.07259, 36.854589],\n            [-83.099792, 36.824889],\n            [-83.131694, 36.781488],\n            [-83.131245, 36.767105],\n            [-83.125655, 36.761407],\n            [-83.125728, 36.761276],\n            [-83.127833, 36.750828],\n            [-83.136395, 36.743088],\n            [-83.167396, 36.739187],\n            [-83.199698, 36.737487],\n            [-83.342804, 36.701286],\n            [-83.353613, 36.696699],\n            [-83.354606, 36.696153],\n            [-83.460808, 36.664885],\n            [-83.461013, 36.664916],\n            [-83.498011, 36.670485],\n            [-83.527212, 36.665984],\n            [-83.649513, 36.616683],\n            [-83.675413, 36.600814],\n            [-83.670141, 36.600797],\n            [-83.670128, 36.600764],\n            [-83.472108, 36.597284],\n            [-83.2763, 36.598187],\n            [-83.250304, 36.593935],\n            [-83.249899, 36.593898],\n            [-83.248933, 36.593827],\n            [-83.028357, 36.593893],\n            [-83.02725, 36.593847],\n            [-82.985087, 36.593829],\n            [-82.830433, 36.593761],\n            [-82.69578, 36.593698],\n            [-82.679879, 36.593698],\n            [-82.609176, 36.594099],\n            [-82.561074, 36.5948],\n            [-82.559774, 36.5948],\n            [-82.554294, 36.594876],\n            [-82.293814, 36.595565],\n            [-82.243274, 36.595699],\n            [-82.226653, 36.595743],\n            [-82.225716, 36.595744],\n            [-82.223445, 36.595721],\n            [-82.221713, 36.595814],\n            [-82.211005, 36.59586],\n            [-82.210497, 36.595772],\n            [-82.188491, 36.595179],\n            [-82.18074, 36.594928],\n            [-82.177247, 36.594768],\n            [-82.173982, 36.594607],\n            [-82.150727, 36.594673],\n            [-82.148569, 36.594718],\n            [-82.14607, 36.594712],\n            [-81.934144, 36.594213],\n            [-81.922644, 36.616213],\n            [-81.826742, 36.614215],\n            [-81.6469, 36.611918],\n            [-81.677535, 36.588117],\n            [-81.60697, 36.587094],\n            [-81.521032, 36.58052],\n            [-81.353322, 36.574723],\n            [-81.353169, 36.574724],\n            [-81.307511, 36.575024],\n            [-81.061866, 36.56702],\n            [-81.058844, 36.566976],\n            [-80.945988, 36.563196],\n            [-80.944338, 36.563058],\n            [-80.901836, 36.561754],\n            [-80.901726, 36.561751],\n            [-80.837954, 36.559131],\n            [-80.837641, 36.559118],\n            [-80.837089, 36.559154],\n            [-80.744101, 36.561686],\n            [-80.687539, 36.561411],\n            [-80.612158, 36.558127],\n            [-80.4401, 36.55063],\n            [-80.432628, 36.550302],\n            [-80.431605, 36.550219],\n            [-80.228263, 36.543867],\n            [-80.225408, 36.543748],\n            [-80.171636, 36.543219],\n            [-80.169535, 36.54319],\n            [-80.053455, 36.542623],\n            [-80.027269, 36.542495],\n            [-79.967511, 36.542502],\n            [-79.966979, 36.542475],\n            [-79.920239, 36.542365],\n            [-79.714855, 36.541884],\n            [-79.667309, 36.541772],\n            [-79.666827, 36.541772],\n            [-79.510961, 36.54074],\n            [-79.510647, 36.540738],\n            [-79.470047, 36.541025],\n            [-79.445961, 36.541195],\n            [-79.445687, 36.541218],\n            [-79.342696, 36.541382],\n            [-79.218638, 36.541579],\n            [-79.20948, 36.541594],\n            [-79.208686, 36.541571],\n            [-79.137936, 36.541739],\n            [-79.126078, 36.541533],\n            [-79.124736, 36.541568],\n            [-78.971814, 36.542123],\n            [-78.970577, 36.542154],\n            [-78.942254, 36.542079],\n            [-78.942009, 36.542113],\n            [-78.91542, 36.541974],\n            [-78.914543, 36.541972],\n            [-78.7963, 36.541713],\n            [-78.76543, 36.541727],\n            [-78.758392, 36.541852],\n            [-78.734122, 36.541902],\n            [-78.670051, 36.542035],\n            [-78.663317, 36.542011],\n            [-78.533013, 36.541004],\n            [-78.529722, 36.540981],\n            [-78.471022, 36.542307],\n            [-78.470792, 36.542316],\n            [-78.45697, 36.542474],\n            [-78.441199, 36.542687],\n            [-78.436333, 36.542666],\n            [-78.323912, 36.543809],\n            [-78.246681, 36.544341],\n            [-78.245462, 36.544411],\n            [-78.133323, 36.543847],\n            [-78.132911, 36.543811],\n            [-78.046202, 36.544168],\n            [-78.03942, 36.544196],\n            [-78.038938, 36.544173],\n            [-77.899771, 36.544663],\n            [-77.882357, 36.544737],\n            [-77.87528, 36.544754],\n            [-77.767117, 36.544752],\n            [-77.296875, 36.544746],\n            [-77.24969, 36.544745],\n            [-77.1645, 36.54633],\n            [-76.916048, 36.543815],\n            [-76.916001, 36.543818],\n            [-76.915384, 36.543856],\n            [-76.807078, 36.550606],\n            [-76.781296, 36.550659],\n            [-76.541687, 36.550312],\n            [-76.541391, 36.550312],\n            [-76.491497, 36.550365],\n            [-76.313215, 36.550551],\n            [-76.313196, 36.550551],\n            [-76.12236, 36.550621],\n            [-76.034751, 36.550653],\n            [-76.02675, 36.550553],\n            [-75.957648, 36.550553],\n            [-75.955748, 36.550553],\n            [-75.953447, 36.550553],\n            [-75.952847, 36.550553],\n            [-75.922046, 36.550654],\n            [-75.911446, 36.550654],\n            [-75.909046, 36.550654],\n            [-75.904745, 36.550654],\n            [-75.903445, 36.550654],\n            [-75.894145, 36.550754],\n            [-75.893245, 36.550654],\n            [-75.891945, 36.550754],\n            [-75.886545, 36.550754],\n            [-75.885945, 36.550754],\n            [-75.880644, 36.550754],\n            [-75.879744, 36.550754],\n            [-75.867044, 36.550754],\n            [-75.874145, 36.583853],\n            [-75.890946, 36.630753],\n            [-75.921748, 36.692051],\n            [-75.94955, 36.76115],\n            [-75.965451, 36.812449],\n            [-75.972151, 36.842268],\n            [-75.991552, 36.910847],\n            [-75.996252, 36.922047],\n            [-76.007553, 36.929047],\n            [-76.013753, 36.930746],\n            [-76.033454, 36.931946],\n            [-76.043054, 36.927547],\n            [-76.058154, 36.916947],\n            [-76.087955, 36.908647],\n            [-76.095508, 36.908817],\n            [-76.139557, 36.923047],\n            [-76.177019, 36.92929],\n            [-76.189959, 36.931447],\n            [-76.22166, 36.939547],\n            [-76.234961, 36.945147],\n            [-76.267962, 36.964547],\n            [-76.285063, 36.968747],\n            [-76.297663, 36.968147],\n            [-76.299364, 36.965547],\n            [-76.315867, 36.955351],\n            [-76.322764, 36.959147],\n            [-76.327365, 36.959447],\n            [-76.330765, 36.938647],\n            [-76.328864, 36.918447],\n            [-76.333158, 36.917293],\n            [-76.344663, 36.919313],\n            [-76.345569, 36.924531],\n            [-76.353765, 36.922747],\n            [-76.385867, 36.923247],\n            [-76.387567, 36.899547],\n            [-76.406908, 36.897507],\n            [-76.407507, 36.897444],\n            [-76.43122, 36.904532],\n            [-76.441605, 36.906116],\n            [-76.447413, 36.90322],\n            [-76.453941, 36.89274],\n            [-76.45329, 36.887031],\n            [-76.454692, 36.884077],\n            [-76.469914, 36.882898],\n            [-76.483369, 36.896239],\n            [-76.482135, 36.901108],\n            [-76.482407, 36.917364],\n            [-76.484107, 36.928916],\n            [-76.487559, 36.952372],\n            [-76.500355, 36.965212],\n            [-76.513363, 36.968057],\n            [-76.521006, 36.973187],\n            [-76.524142, 36.978316],\n            [-76.522971, 36.981085],\n            [-76.524853, 36.983833],\n            [-76.551246, 36.998946],\n            [-76.562923, 37.003796],\n            [-76.565803, 37.007493],\n            [-76.576617, 37.021374],\n            [-76.577531, 37.022548],\n            [-76.57816, 37.022982],\n            [-76.579236, 37.023726],\n            [-76.579393, 37.023835],\n            [-76.584478, 37.027349],\n            [-76.586491, 37.02874],\n            [-76.612124, 37.035604],\n            [-76.646013, 37.036228],\n            [-76.653998, 37.039172],\n            [-76.662558, 37.045748],\n            [-76.66835, 37.05506],\n            [-76.669822, 37.06426],\n            [-76.669118, 37.068132],\n            [-76.668295, 37.072656],\n            [-76.667646, 37.076228],\n            [-76.667219, 37.077149],\n            [-76.666526, 37.078643],\n            [-76.66555, 37.080746],\n            [-76.659394, 37.094019],\n            [-76.65811, 37.096787],\n            [-76.657703, 37.101161],\n            [-76.657101, 37.107617],\n            [-76.656894, 37.109843],\n            [-76.66375, 37.129979],\n            [-76.665641, 37.135534],\n            [-76.665833, 37.136098],\n            [-76.666542, 37.138179],\n            [-76.669604, 37.140534],\n            [-76.671588, 37.14206],\n            [-76.67147, 37.158739],\n            [-76.66867, 37.166771],\n            [-76.66427, 37.171027],\n            [-76.663774, 37.173875],\n            [-76.669886, 37.183571],\n            [-76.685614, 37.198851],\n            [-76.691918, 37.195731],\n            [-76.692926, 37.186147],\n            [-76.696735, 37.174403],\n            [-76.715295, 37.148035],\n            [-76.73032, 37.145395],\n            [-76.73728, 37.146164],\n            [-76.747632, 37.150548],\n            [-76.756899, 37.161582],\n            [-76.796905, 37.189404],\n            [-76.802511, 37.198308],\n            [-76.803198, 37.201513],\n            [-76.801023, 37.206043],\n            [-76.791555, 37.207564],\n            [-76.780532, 37.209336],\n            [-76.773752, 37.206061],\n            [-76.757765, 37.191658],\n            [-76.75047, 37.190098],\n            [-76.74304, 37.192611],\n            [-76.74, 37.195379],\n            [-76.73432, 37.204211],\n            [-76.730951, 37.213813],\n            [-76.698943, 37.219059],\n            [-76.693373, 37.221228],\n            [-76.689166, 37.222866],\n            [-76.649869, 37.220914],\n            [-76.641085, 37.216002],\n            [-76.639608, 37.214783],\n            [-76.629868, 37.206738],\n            [-76.623292, 37.198738],\n            [-76.621113, 37.195103],\n            [-76.619962, 37.193184],\n            [-76.61934, 37.192146],\n            [-76.618008, 37.186429],\n            [-76.617537, 37.184409],\n            [-76.616804, 37.18126],\n            [-76.616268, 37.178962],\n            [-76.614221, 37.174335],\n            [-76.613599, 37.172931],\n            [-76.612517, 37.170486],\n            [-76.611018, 37.167097],\n            [-76.610972, 37.166994],\n            [-76.606684, 37.166674],\n            [-76.604476, 37.160034],\n            [-76.617084, 37.144498],\n            [-76.622252, 37.142146],\n            [-76.62478, 37.127091],\n            [-76.618252, 37.119347],\n            [-76.579499, 37.096627],\n            [-76.567931, 37.080467],\n            [-76.564219, 37.077507],\n            [-76.555066, 37.075859],\n            [-76.536875, 37.083942],\n            [-76.528997, 37.079388],\n            [-76.526203, 37.077773],\n            [-76.526573, 37.070047],\n            [-76.527973, 37.068247],\n            [-76.526273, 37.062947],\n            [-76.518242, 37.055351],\n            [-76.512289, 37.054858],\n            [-76.509339, 37.053173],\n            [-76.507614, 37.052188],\n            [-76.46949, 37.030414],\n            [-76.464471, 37.027547],\n            [-76.448231, 37.007705],\n            [-76.449891, 37.004868],\n            [-76.452461, 37.004603],\n            [-76.452118, 36.998163],\n            [-76.428869, 36.969947],\n            [-76.418969, 36.964047],\n            [-76.411768, 36.962847],\n            [-76.408568, 36.969147],\n            [-76.396368, 36.982347],\n            [-76.387711, 36.989671],\n            [-76.383367, 36.993347],\n            [-76.373567, 36.998347],\n            [-76.356366, 37.002947],\n            [-76.348066, 37.006747],\n            [-76.340666, 37.015246],\n            [-76.34011, 37.015212],\n            [-76.329531, 37.014556],\n            [-76.318065, 37.013846],\n            [-76.314624, 37.00933],\n            [-76.315008, 37.001683],\n            [-76.312048, 37.000371],\n            [-76.304272, 37.001378],\n            [-76.300352, 37.00885],\n            [-76.292863, 37.035145],\n            [-76.271262, 37.084544],\n            [-76.274463, 37.094544],\n            [-76.287236, 37.117453],\n            [-76.292344, 37.126615],\n            [-76.311088, 37.138495],\n            [-76.324353, 37.142895],\n            [-76.330481, 37.141727],\n            [-76.334017, 37.144223],\n            [-76.340129, 37.151823],\n            [-76.34405, 37.160367],\n            [-76.344898, 37.164479],\n            [-76.343234, 37.166207],\n            [-76.348658, 37.170655],\n            [-76.35969, 37.16858],\n            [-76.375255, 37.16084],\n            [-76.381379, 37.155711],\n            [-76.394756, 37.157568],\n            [-76.399659, 37.160272],\n            [-76.397883, 37.164415],\n            [-76.391252, 37.179887],\n            [-76.389284, 37.193503],\n            [-76.396052, 37.201087],\n            [-76.3936, 37.214049],\n            [-76.389793, 37.222981],\n            [-76.394132, 37.22515],\n            [-76.471799, 37.216016],\n            [-76.494008, 37.225408],\n            [-76.50364, 37.233856],\n            [-76.4989, 37.241015],\n            [-76.493302, 37.24947],\n            [-76.48284, 37.254831],\n            [-76.475927, 37.250543],\n            [-76.429141, 37.25331],\n            [-76.421765, 37.255198],\n            [-76.417173, 37.26395],\n            [-76.392788, 37.264973],\n            [-76.36229, 37.270226],\n            [-76.349489, 37.273963],\n            [-76.352556, 37.278334],\n            [-76.369029, 37.279311],\n            [-76.381075, 37.28534],\n            [-76.385603, 37.294108],\n            [-76.38777, 37.30767],\n            [-76.406388, 37.332924],\n            [-76.434965, 37.354524],\n            [-76.445333, 37.36646],\n            [-76.437525, 37.37975],\n            [-76.422503, 37.381355],\n            [-76.418176, 37.385064],\n            [-76.418719, 37.3978],\n            [-76.415167, 37.402133],\n            [-76.404756, 37.400213],\n            [-76.393125, 37.398068],\n            [-76.393958, 37.39594],\n            [-76.391437, 37.390284],\n            [-76.387112, 37.385061],\n            [-76.366751, 37.374495],\n            [-76.337476, 37.364014],\n            [-76.31205, 37.338088],\n            [-76.308581, 37.329366],\n            [-76.291324, 37.324145],\n            [-76.282555, 37.319107],\n            [-76.275552, 37.309964],\n            [-76.272005, 37.322194],\n            [-76.272888, 37.335174],\n            [-76.264847, 37.357399],\n            [-76.262407, 37.360786],\n            [-76.258277, 37.36202],\n            [-76.24846, 37.375135],\n            [-76.245283, 37.386839],\n            [-76.246617, 37.404122],\n            [-76.250454, 37.421886],\n            [-76.252415, 37.447274],\n            [-76.265056, 37.481365],\n            [-76.281043, 37.507821],\n            [-76.288167, 37.514118],\n            [-76.293599, 37.516499],\n            [-76.297651, 37.515424],\n            [-76.298456, 37.512677],\n            [-76.296445, 37.511235],\n            [-76.297739, 37.506863],\n            [-76.306952, 37.497488],\n            [-76.32947, 37.49492],\n            [-76.352678, 37.504913],\n            [-76.359378, 37.513426],\n            [-76.360474, 37.51924],\n            [-76.355084, 37.527364],\n            [-76.348992, 37.536548],\n            [-76.339989, 37.53833],\n            [-76.330598, 37.536391],\n            [-76.302762, 37.551295],\n            [-76.29796, 37.557636],\n            [-76.300144, 37.561734],\n            [-76.332641, 37.570042],\n            [-76.357835, 37.573699],\n            [-76.383188, 37.573056],\n            [-76.410781, 37.581815],\n            [-76.420252, 37.598686],\n            [-76.435474, 37.612807],\n            [-76.527188, 37.611315],\n            [-76.533777, 37.61253],\n            [-76.542666, 37.616857],\n            [-76.574049, 37.646781],\n            [-76.583143, 37.661986],\n            [-76.579591, 37.671508],\n            [-76.597868, 37.702918],\n            [-76.598073, 37.70912],\n            [-76.595943, 37.712989],\n            [-76.597213, 37.717269],\n            [-76.606466, 37.724819],\n            [-76.61997, 37.731271],\n            [-76.621433, 37.737973],\n            [-76.617373, 37.742347],\n            [-76.61971, 37.744795],\n            [-76.639962, 37.750941],\n            [-76.663887, 37.751887],\n            [-76.677002, 37.7561],\n            [-76.680922, 37.759647],\n            [-76.683372, 37.765507],\n            [-76.683359, 37.770258],\n            [-76.683343, 37.775783],\n            [-76.681901, 37.778118],\n            [-76.683775, 37.781391],\n            [-76.689773, 37.78519],\n            [-76.715498, 37.785873],\n            [-76.723863, 37.788503],\n            [-76.734309, 37.79866],\n            [-76.7512, 37.824141],\n            [-76.766328, 37.840437],\n            [-76.782826, 37.863184],\n            [-76.784618, 37.869569],\n            [-76.77539, 37.874306],\n            [-76.765711, 37.879274],\n            [-76.747552, 37.875864],\n            [-76.738395, 37.865373],\n            [-76.733046, 37.852009],\n            [-76.72718, 37.842263],\n            [-76.722156, 37.83668],\n            [-76.701606, 37.822677],\n            [-76.692747, 37.82277],\n            [-76.680197, 37.825654],\n            [-76.658302, 37.806815],\n            [-76.651413, 37.796239],\n            [-76.642276, 37.792317],\n            [-76.615351, 37.780759],\n            [-76.602024, 37.772731],\n            [-76.595939, 37.77168],\n            [-76.593835, 37.772848],\n            [-76.584289, 37.76889],\n            [-76.576387, 37.757493],\n            [-76.560476, 37.727827],\n            [-76.54005, 37.704432],\n            [-76.537228, 37.698892],\n            [-76.535302, 37.687516],\n            [-76.537698, 37.66893],\n            [-76.536548, 37.663574],\n            [-76.510187, 37.642324],\n            [-76.501522, 37.643762],\n            [-76.497564, 37.647056],\n            [-76.491799, 37.663614],\n            [-76.489576, 37.666201],\n            [-76.472392, 37.665772],\n            [-76.443254, 37.652347],\n            [-76.399236, 37.628636],\n            [-76.390054, 37.630326],\n            [-76.381106, 37.627003],\n            [-76.36232, 37.610368],\n            [-76.309174, 37.621892],\n            [-76.28037, 37.613715],\n            [-76.279447, 37.618225],\n            [-76.287959, 37.631771],\n            [-76.292534, 37.636098],\n            [-76.306464, 37.642005],\n            [-76.332562, 37.645817],\n            [-76.339892, 37.655966],\n            [-76.324808, 37.676983],\n            [-76.320216, 37.680666],\n            [-76.315161, 37.68472],\n            [-76.312079, 37.684651],\n            [-76.302545, 37.689],\n            [-76.300067, 37.695364],\n            [-76.302803, 37.704474],\n            [-76.312858, 37.720338],\n            [-76.304917, 37.729913],\n            [-76.312108, 37.750522],\n            [-76.306489, 37.788646],\n            [-76.310307, 37.794849],\n            [-76.307482, 37.81235],\n            [-76.293525, 37.822717],\n            [-76.284904, 37.822308],\n            [-76.281985, 37.818068],\n            [-76.282592, 37.814109],\n            [-76.280544, 37.812597],\n            [-76.275178, 37.812664],\n            [-76.266057, 37.8174],\n            [-76.251358, 37.833072],\n            [-76.245072, 37.861918],\n            [-76.236725, 37.889174],\n            [-76.265998, 37.91138],\n            [-76.343848, 37.947345],\n            [-76.360211, 37.952329],\n            [-76.391439, 37.958742],\n            [-76.416299, 37.966828],\n            [-76.427487, 37.977038],\n            [-76.462542, 37.998572],\n            [-76.465291, 38.010226],\n            [-76.469343, 38.013544],\n            [-76.491998, 38.017222],\n            [-76.516547, 38.026566],\n            [-76.519536, 38.034814],\n            [-76.522354, 38.04259],\n            [-76.535919, 38.069532],\n            [-76.543155, 38.076971],\n            [-76.579497, 38.09487],\n            [-76.600937, 38.110084],\n            [-76.604131, 38.128771],\n            [-76.613939, 38.148587],\n            [-76.629476, 38.15305],\n            [-76.638983, 38.151476],\n            [-76.643448, 38.14825],\n            [-76.665127, 38.147638],\n            [-76.684892, 38.156497],\n            [-76.701297, 38.155718],\n            [-76.704048, 38.149264],\n            [-76.721722, 38.137635],\n            [-76.738938, 38.14651],\n            [-76.740278, 38.152824],\n            [-76.743064, 38.156988],\n            [-76.749685, 38.162114],\n            [-76.760241, 38.166581],\n            [-76.788445, 38.169199],\n            [-76.802968, 38.167988],\n            [-76.824274, 38.163639],\n            [-76.838795, 38.163476],\n            [-76.875272, 38.172207],\n            [-76.910832, 38.197073],\n            [-76.916922, 38.199751],\n            [-76.937134, 38.202384],\n            [-76.962311, 38.214075],\n            [-76.967335, 38.227185],\n            [-76.966553, 38.229542],\n            [-76.962375, 38.230093],\n            [-76.957417, 38.236341],\n            [-76.957796, 38.243183],\n            [-76.96215, 38.256486],\n            [-76.981372, 38.274214],\n            [-76.990255, 38.273935],\n            [-76.99767, 38.278047],\n            [-77.026304, 38.302685],\n            [-77.030683, 38.311623],\n            [-77.020947, 38.329273],\n            [-77.016932, 38.341697],\n            [-77.011827, 38.374554],\n            [-77.024866, 38.386791],\n            [-77.043526, 38.400548],\n            [-77.051437, 38.399083],\n            [-77.056032, 38.3962],\n            [-77.069956, 38.377895],\n            [-77.08481, 38.368297],\n            [-77.094665, 38.367715],\n            [-77.104717, 38.369655],\n            [-77.138224, 38.367917],\n            [-77.155191, 38.351047],\n            [-77.162692, 38.345994],\n            [-77.17934, 38.341915],\n            [-77.199433, 38.34089],\n            [-77.240072, 38.331598],\n            [-77.265295, 38.333165],\n            [-77.279633, 38.339444],\n            [-77.286202, 38.347024],\n            [-77.286202, 38.347025],\n            [-77.28835, 38.351286],\n            [-77.288145, 38.359477],\n            [-77.296077, 38.369797],\n            [-77.317288, 38.383576],\n            [-77.314848, 38.389579],\n            [-77.312201, 38.390958],\n            [-77.310719, 38.397669],\n            [-77.319036, 38.417803],\n            [-77.32544, 38.44885],\n            [-77.322622, 38.467131],\n            [-77.310334, 38.493926],\n            [-77.302457, 38.504683],\n            [-77.300776, 38.506978],\n            [-77.298844, 38.508724],\n            [-77.29582, 38.511457],\n            [-77.291103, 38.515721],\n            [-77.283503, 38.525221],\n            [-77.276303, 38.53962],\n            [-77.276603, 38.54712],\n            [-77.26083, 38.56533],\n            [-77.265304, 38.580319],\n            [-77.26443, 38.582845],\n            [-77.247003, 38.590618],\n            [-77.246441, 38.599532],\n            [-77.245104, 38.620717],\n            [-77.248904, 38.628617],\n            [-77.246704, 38.635217],\n            [-77.240604, 38.638917],\n            [-77.22235, 38.638091],\n            [-77.216303, 38.637817],\n            [-77.205103, 38.623917],\n            [-77.204302, 38.617817],\n            [-77.202002, 38.617217],\n            [-77.174902, 38.624217],\n            [-77.157501, 38.636417],\n            [-77.1302, 38.635017],\n            [-77.135901, 38.649817],\n            [-77.132501, 38.673816],\n            [-77.121101, 38.686616],\n            [-77.1059, 38.696815],\n            [-77.086113, 38.705792],\n            [-77.074599, 38.711015],\n            [-77.05991, 38.734419],\n            [-77.041398, 38.763914],\n            [-77.039239, 38.7852],\n            [-77.038598, 38.791513],\n            [-77.032986, 38.8395],\n            [-77.031698, 38.850512],\n            [-77.040599, 38.871212],\n            [-77.068199, 38.899811],\n            [-77.0902, 38.904211],\n            [-77.1012, 38.911111],\n            [-77.119863, 38.934265],\n            [-77.1199, 38.934311],\n            [-77.137701, 38.95531],\n            [-77.148179, 38.965002],\n            [-77.166901, 38.96811],\n            [-77.197502, 38.96681],\n            [-77.221502, 38.97131],\n            [-77.235403, 38.97661],\n            [-77.249803, 38.985909],\n            [-77.255703, 39.002409],\n            [-77.251803, 39.011409],\n            [-77.261403, 39.031009],\n            [-77.291605, 39.045408],\n            [-77.328002, 39.058554],\n            [-77.340287, 39.062991],\n            [-77.375079, 39.061297],\n            [-77.42318, 39.066878],\n            [-77.458202, 39.073723],\n            [-77.519929, 39.120925],\n            [-77.524559, 39.127821],\n            [-77.527282, 39.146236],\n            [-77.516426, 39.170891],\n            [-77.510631, 39.178484],\n            [-77.505162, 39.18205],\n            [-77.485971, 39.185665],\n            [-77.478596, 39.189168],\n            [-77.458884, 39.219826],\n            [-77.458779, 39.22028],\n            [-77.45768, 39.22502],\n            [-77.46021, 39.228359],\n            [-77.484605, 39.245941],\n            [-77.511222, 39.2535],\n            [-77.534461, 39.262361],\n            [-77.543228, 39.266937],\n            [-77.545846, 39.271535],\n            [-77.560854, 39.286152],\n            [-77.592739, 39.30129],\n            [-77.667749, 39.318129],\n            [-77.677505, 39.318699],\n            [-77.719029, 39.321125],\n            [-77.750267, 39.289284],\n            [-77.753357, 39.280331],\n            [-77.75306, 39.277971],\n            [-77.753105, 39.27734],\n            [-77.755193, 39.275191],\n            [-77.755698, 39.274575],\n            [-77.758412, 39.269197],\n            [-77.758733, 39.268114],\n            [-77.761217, 39.263721],\n            [-77.761768, 39.263031],\n            [-77.768, 39.257657],\n            [-77.768992, 39.256417],\n            [-77.767277, 39.24938],\n            [-77.771415, 39.236776],\n            [-77.822182, 39.139985],\n            [-77.828157, 39.132329],\n            [-78.032841, 39.264403],\n            [-78.033183, 39.264624],\n            [-78.033185, 39.264626],\n            [-78.228766, 39.391233],\n            [-78.347087, 39.466012],\n            [-78.362267, 39.357784],\n            [-78.34048, 39.353492],\n            [-78.35894, 39.319484],\n            [-78.360035, 39.317771],\n            [-78.399785, 39.244129],\n            [-78.399669, 39.243874],\n            [-78.423968, 39.212049],\n            [-78.427911, 39.208611],\n            [-78.429803, 39.207014],\n            [-78.431167, 39.205744],\n            [-78.43213, 39.204717],\n            [-78.437053, 39.199766],\n            [-78.438651, 39.198049],\n            [-78.426722, 39.188903],\n            [-78.41074, 39.171983],\n            [-78.418377, 39.156656],\n            [-78.439429, 39.132146],\n            [-78.459869, 39.113351],\n            [-78.508132, 39.08863],\n            [-78.544111, 39.056676],\n            [-78.571901, 39.031995],\n            [-78.565837, 39.026303],\n            [-78.554222, 39.019672],\n            [-78.557647, 39.013189],\n            [-78.601655, 38.964603],\n            [-78.710949, 38.910175],\n            [-78.714135, 38.911176],\n            [-78.716956, 38.916273],\n            [-78.719755, 38.922135],\n            [-78.719806, 38.922638],\n            [-78.757278, 38.903203],\n            [-78.779198, 38.892298],\n            [-78.788031, 38.885123],\n            [-78.808181, 38.856175],\n            [-78.835191, 38.811499],\n            [-78.869276, 38.762991]\n          ]\n        ]\n      },\n      \"properties\": {},\n      \"type\": \"Feature\"\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.321044921875, 36.26199220445664],\n            [-76.541748046875, 36.26199220445664],\n            [-76.541748046875, 39.68182601089365],\n            [-80.321044921875, 39.68182601089365],\n            [-80.321044921875, 36.26199220445664]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/test/out/linestring-single-line.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#080\",\n        \"fill\": \"#080\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.1240234375, 39.51251701659638],\n          [-77.618408203125, 39.24927084622338],\n          [-77.0855712890625, 38.886757140695906]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.1240234375, 39.51251701659638],\n          [-77.618408203125, 39.24927084622338],\n          [-77.39307020244674, 39.095962936305476]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"stroke-width\": 3,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-77.72552490234374, 39.095962936305476],\n            [-77.0361328125, 39.095962936305476],\n            [-77.0361328125, 39.59722324495565],\n            [-77.72552490234374, 39.59722324495565],\n            [-77.72552490234374, 39.095962936305476]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/test/out/linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-78.869276, 38.762991],\n          [-78.835191, 38.811499],\n          [-78.808181, 38.856175],\n          [-78.788031, 38.885123],\n          [-78.779198, 38.892298],\n          [-78.757278, 38.903203],\n          [-78.719806, 38.922638],\n          [-78.719755, 38.922135],\n          [-78.716956, 38.916273],\n          [-78.714135, 38.911176],\n          [-78.710949, 38.910175],\n          [-78.601655, 38.964603],\n          [-78.557647, 39.013189],\n          [-78.554222, 39.019672],\n          [-78.565837, 39.026303],\n          [-78.571901, 39.031995],\n          [-78.544111, 39.056676],\n          [-78.508132, 39.08863],\n          [-78.459869, 39.113351],\n          [-78.439429, 39.132146],\n          [-78.418377, 39.156656],\n          [-78.41074, 39.171983],\n          [-78.426722, 39.188903],\n          [-78.438651, 39.198049],\n          [-78.437053, 39.199766],\n          [-78.43213, 39.204717],\n          [-78.431167, 39.205744],\n          [-78.429803, 39.207014],\n          [-78.427911, 39.208611],\n          [-78.423968, 39.212049],\n          [-78.399669, 39.243874],\n          [-78.399785, 39.244129],\n          [-78.360035, 39.317771],\n          [-78.35894, 39.319484],\n          [-78.34048, 39.353492],\n          [-78.362267, 39.357784],\n          [-78.347087, 39.466012],\n          [-78.228766, 39.391233],\n          [-78.033185, 39.264626],\n          [-78.033183, 39.264624],\n          [-78.032841, 39.264403],\n          [-77.828157, 39.132329],\n          [-77.822182, 39.139985],\n          [-77.771415, 39.236776],\n          [-77.767277, 39.24938],\n          [-77.768992, 39.256417],\n          [-77.768, 39.257657],\n          [-77.761768, 39.263031],\n          [-77.761217, 39.263721],\n          [-77.758733, 39.268114],\n          [-77.758412, 39.269197],\n          [-77.755698, 39.274575],\n          [-77.755193, 39.275191],\n          [-77.753105, 39.27734],\n          [-77.75306, 39.277971],\n          [-77.753357, 39.280331],\n          [-77.750267, 39.289284],\n          [-77.719029, 39.321125],\n          [-77.677505, 39.318699],\n          [-77.667749, 39.318129],\n          [-77.592739, 39.30129],\n          [-77.560854, 39.286152],\n          [-77.545846, 39.271535],\n          [-77.543228, 39.266937],\n          [-77.534461, 39.262361],\n          [-77.511222, 39.2535],\n          [-77.484605, 39.245941],\n          [-77.46021, 39.228359],\n          [-77.45768, 39.22502],\n          [-77.458779, 39.22028],\n          [-77.458884, 39.219826],\n          [-77.478596, 39.189168],\n          [-77.485971, 39.185665],\n          [-77.505162, 39.18205],\n          [-77.510631, 39.178484],\n          [-77.516426, 39.170891],\n          [-77.527282, 39.146236],\n          [-77.524559, 39.127821],\n          [-77.519929, 39.120925],\n          [-77.458202, 39.073723],\n          [-77.42318, 39.066878],\n          [-77.375079, 39.061297],\n          [-77.340287, 39.062991],\n          [-77.328002, 39.058554],\n          [-77.291605, 39.045408],\n          [-77.261403, 39.031009],\n          [-77.251803, 39.011409],\n          [-77.255703, 39.002409],\n          [-77.249803, 38.985909],\n          [-77.235403, 38.97661],\n          [-77.221502, 38.97131],\n          [-77.197502, 38.96681],\n          [-77.166901, 38.96811],\n          [-77.148179, 38.965002],\n          [-77.137701, 38.95531],\n          [-77.1199, 38.934311],\n          [-77.119863, 38.934265],\n          [-77.1012, 38.911111],\n          [-77.0902, 38.904211],\n          [-77.068199, 38.899811],\n          [-77.040599, 38.871212],\n          [-77.031698, 38.850512],\n          [-77.032986, 38.8395],\n          [-77.038598, 38.791513],\n          [-77.039239, 38.7852],\n          [-77.041398, 38.763914],\n          [-77.05991, 38.734419],\n          [-77.074599, 38.711015],\n          [-77.086113, 38.705792],\n          [-77.1059, 38.696815],\n          [-77.121101, 38.686616],\n          [-77.132501, 38.673816],\n          [-77.135901, 38.649817],\n          [-77.1302, 38.635017],\n          [-77.157501, 38.636417],\n          [-77.174902, 38.624217],\n          [-77.202002, 38.617217],\n          [-77.204302, 38.617817],\n          [-77.205103, 38.623917],\n          [-77.216303, 38.637817],\n          [-77.22235, 38.638091],\n          [-77.240604, 38.638917],\n          [-77.246704, 38.635217],\n          [-77.248904, 38.628617],\n          [-77.245104, 38.620717],\n          [-77.246441, 38.599532],\n          [-77.247003, 38.590618],\n          [-77.26443, 38.582845],\n          [-77.265304, 38.580319],\n          [-77.26083, 38.56533],\n          [-77.276603, 38.54712],\n          [-77.276303, 38.53962],\n          [-77.283503, 38.525221],\n          [-77.291103, 38.515721],\n          [-77.29582, 38.511457],\n          [-77.298844, 38.508724],\n          [-77.300776, 38.506978],\n          [-77.302457, 38.504683],\n          [-77.310334, 38.493926],\n          [-77.322622, 38.467131],\n          [-77.32544, 38.44885],\n          [-77.319036, 38.417803],\n          [-77.310719, 38.397669],\n          [-77.312201, 38.390958],\n          [-77.314848, 38.389579],\n          [-77.317288, 38.383576],\n          [-77.296077, 38.369797],\n          [-77.288145, 38.359477],\n          [-77.28835, 38.351286],\n          [-77.286202, 38.347025],\n          [-77.286202, 38.347024],\n          [-77.279633, 38.339444],\n          [-77.265295, 38.333165],\n          [-77.240072, 38.331598],\n          [-77.199433, 38.34089],\n          [-77.17934, 38.341915],\n          [-77.162692, 38.345994],\n          [-77.155191, 38.351047],\n          [-77.138224, 38.367917],\n          [-77.104717, 38.369655],\n          [-77.094665, 38.367715],\n          [-77.08481, 38.368297],\n          [-77.069956, 38.377895],\n          [-77.056032, 38.3962],\n          [-77.051437, 38.399083],\n          [-77.043526, 38.400548],\n          [-77.024866, 38.386791],\n          [-77.011827, 38.374554],\n          [-77.016932, 38.341697],\n          [-77.020947, 38.329273],\n          [-77.030683, 38.311623],\n          [-77.026304, 38.302685],\n          [-76.99767, 38.278047],\n          [-76.990255, 38.273935],\n          [-76.981372, 38.274214],\n          [-76.96215, 38.256486],\n          [-76.957796, 38.243183],\n          [-76.957417, 38.236341],\n          [-76.962375, 38.230093],\n          [-76.966553, 38.229542],\n          [-76.967335, 38.227185],\n          [-76.962311, 38.214075],\n          [-76.937134, 38.202384],\n          [-76.916922, 38.199751],\n          [-76.910832, 38.197073],\n          [-76.875272, 38.172207],\n          [-76.838795, 38.163476],\n          [-76.824274, 38.163639],\n          [-76.802968, 38.167988],\n          [-76.788445, 38.169199],\n          [-76.760241, 38.166581],\n          [-76.749685, 38.162114],\n          [-76.743064, 38.156988],\n          [-76.740278, 38.152824],\n          [-76.738938, 38.14651],\n          [-76.721722, 38.137635],\n          [-76.704048, 38.149264],\n          [-76.701297, 38.155718],\n          [-76.684892, 38.156497],\n          [-76.665127, 38.147638],\n          [-76.643448, 38.14825],\n          [-76.638983, 38.151476],\n          [-76.629476, 38.15305],\n          [-76.613939, 38.148587],\n          [-76.604131, 38.128771],\n          [-76.600937, 38.110084],\n          [-76.579497, 38.09487],\n          [-76.543155, 38.076971],\n          [-76.535919, 38.069532],\n          [-76.522354, 38.04259],\n          [-76.519536, 38.034814],\n          [-76.516547, 38.026566],\n          [-76.491998, 38.017222],\n          [-76.469343, 38.013544],\n          [-76.465291, 38.010226],\n          [-76.462542, 37.998572],\n          [-76.427487, 37.977038],\n          [-76.416299, 37.966828],\n          [-76.391439, 37.958742],\n          [-76.360211, 37.952329],\n          [-76.343848, 37.947345],\n          [-76.265998, 37.91138],\n          [-76.236725, 37.889174],\n          [-76.245072, 37.861918],\n          [-76.251358, 37.833072],\n          [-76.266057, 37.8174],\n          [-76.275178, 37.812664],\n          [-76.280544, 37.812597],\n          [-76.282592, 37.814109],\n          [-76.281985, 37.818068],\n          [-76.284904, 37.822308],\n          [-76.293525, 37.822717],\n          [-76.307482, 37.81235],\n          [-76.310307, 37.794849],\n          [-76.306489, 37.788646],\n          [-76.312108, 37.750522],\n          [-76.304917, 37.729913],\n          [-76.312858, 37.720338],\n          [-76.302803, 37.704474],\n          [-76.300067, 37.695364],\n          [-76.302545, 37.689],\n          [-76.312079, 37.684651],\n          [-76.315161, 37.68472],\n          [-76.320216, 37.680666],\n          [-76.324808, 37.676983],\n          [-76.339892, 37.655966],\n          [-76.332562, 37.645817],\n          [-76.306464, 37.642005],\n          [-76.292534, 37.636098],\n          [-76.287959, 37.631771],\n          [-76.279447, 37.618225],\n          [-76.28037, 37.613715],\n          [-76.309174, 37.621892],\n          [-76.36232, 37.610368],\n          [-76.381106, 37.627003],\n          [-76.390054, 37.630326],\n          [-76.399236, 37.628636],\n          [-76.443254, 37.652347],\n          [-76.472392, 37.665772],\n          [-76.489576, 37.666201],\n          [-76.491799, 37.663614],\n          [-76.497564, 37.647056],\n          [-76.501522, 37.643762],\n          [-76.510187, 37.642324],\n          [-76.536548, 37.663574],\n          [-76.537698, 37.66893],\n          [-76.535302, 37.687516],\n          [-76.537228, 37.698892],\n          [-76.54005, 37.704432],\n          [-76.560476, 37.727827],\n          [-76.576387, 37.757493],\n          [-76.584289, 37.76889],\n          [-76.593835, 37.772848],\n          [-76.595939, 37.77168],\n          [-76.602024, 37.772731],\n          [-76.615351, 37.780759],\n          [-76.642276, 37.792317],\n          [-76.651413, 37.796239],\n          [-76.658302, 37.806815],\n          [-76.680197, 37.825654],\n          [-76.692747, 37.82277],\n          [-76.701606, 37.822677],\n          [-76.722156, 37.83668],\n          [-76.72718, 37.842263],\n          [-76.733046, 37.852009],\n          [-76.738395, 37.865373],\n          [-76.747552, 37.875864],\n          [-76.765711, 37.879274],\n          [-76.77539, 37.874306],\n          [-76.784618, 37.869569],\n          [-76.782826, 37.863184],\n          [-76.766328, 37.840437],\n          [-76.7512, 37.824141],\n          [-76.734309, 37.79866],\n          [-76.723863, 37.788503],\n          [-76.715498, 37.785873],\n          [-76.689773, 37.78519],\n          [-76.683775, 37.781391],\n          [-76.681901, 37.778118],\n          [-76.683343, 37.775783],\n          [-76.683359, 37.770258],\n          [-76.683372, 37.765507],\n          [-76.680922, 37.759647],\n          [-76.677002, 37.7561],\n          [-76.663887, 37.751887],\n          [-76.639962, 37.750941],\n          [-76.61971, 37.744795],\n          [-76.617373, 37.742347],\n          [-76.621433, 37.737973],\n          [-76.61997, 37.731271],\n          [-76.606466, 37.724819],\n          [-76.597213, 37.717269],\n          [-76.595943, 37.712989],\n          [-76.598073, 37.70912],\n          [-76.597868, 37.702918],\n          [-76.579591, 37.671508],\n          [-76.583143, 37.661986],\n          [-76.574049, 37.646781],\n          [-76.542666, 37.616857],\n          [-76.533777, 37.61253],\n          [-76.527188, 37.611315],\n          [-76.435474, 37.612807],\n          [-76.420252, 37.598686],\n          [-76.410781, 37.581815],\n          [-76.383188, 37.573056],\n          [-76.357835, 37.573699],\n          [-76.332641, 37.570042],\n          [-76.300144, 37.561734],\n          [-76.29796, 37.557636],\n          [-76.302762, 37.551295],\n          [-76.330598, 37.536391],\n          [-76.339989, 37.53833],\n          [-76.348992, 37.536548],\n          [-76.355084, 37.527364],\n          [-76.360474, 37.51924],\n          [-76.359378, 37.513426],\n          [-76.352678, 37.504913],\n          [-76.32947, 37.49492],\n          [-76.306952, 37.497488],\n          [-76.297739, 37.506863],\n          [-76.296445, 37.511235],\n          [-76.298456, 37.512677],\n          [-76.297651, 37.515424],\n          [-76.293599, 37.516499],\n          [-76.288167, 37.514118],\n          [-76.281043, 37.507821],\n          [-76.265056, 37.481365],\n          [-76.252415, 37.447274],\n          [-76.250454, 37.421886],\n          [-76.246617, 37.404122],\n          [-76.245283, 37.386839],\n          [-76.24846, 37.375135],\n          [-76.258277, 37.36202],\n          [-76.262407, 37.360786],\n          [-76.264847, 37.357399],\n          [-76.272888, 37.335174],\n          [-76.272005, 37.322194],\n          [-76.275552, 37.309964],\n          [-76.282555, 37.319107],\n          [-76.291324, 37.324145],\n          [-76.308581, 37.329366],\n          [-76.31205, 37.338088],\n          [-76.337476, 37.364014],\n          [-76.366751, 37.374495],\n          [-76.387112, 37.385061],\n          [-76.391437, 37.390284],\n          [-76.393958, 37.39594],\n          [-76.393125, 37.398068],\n          [-76.404756, 37.400213],\n          [-76.415167, 37.402133],\n          [-76.418719, 37.3978],\n          [-76.418176, 37.385064],\n          [-76.422503, 37.381355],\n          [-76.437525, 37.37975],\n          [-76.445333, 37.36646],\n          [-76.434965, 37.354524],\n          [-76.406388, 37.332924],\n          [-76.38777, 37.30767],\n          [-76.385603, 37.294108],\n          [-76.381075, 37.28534],\n          [-76.369029, 37.279311],\n          [-76.352556, 37.278334],\n          [-76.349489, 37.273963],\n          [-76.36229, 37.270226],\n          [-76.392788, 37.264973],\n          [-76.417173, 37.26395],\n          [-76.421765, 37.255198],\n          [-76.429141, 37.25331],\n          [-76.475927, 37.250543],\n          [-76.48284, 37.254831],\n          [-76.493302, 37.24947],\n          [-76.4989, 37.241015],\n          [-76.50364, 37.233856],\n          [-76.494008, 37.225408],\n          [-76.471799, 37.216016],\n          [-76.394132, 37.22515],\n          [-76.389793, 37.222981],\n          [-76.3936, 37.214049],\n          [-76.396052, 37.201087],\n          [-76.389284, 37.193503],\n          [-76.391252, 37.179887],\n          [-76.397883, 37.164415],\n          [-76.399659, 37.160272],\n          [-76.394756, 37.157568],\n          [-76.381379, 37.155711],\n          [-76.375255, 37.16084],\n          [-76.35969, 37.16858],\n          [-76.348658, 37.170655],\n          [-76.343234, 37.166207],\n          [-76.344898, 37.164479],\n          [-76.34405, 37.160367],\n          [-76.340129, 37.151823],\n          [-76.334017, 37.144223],\n          [-76.330481, 37.141727],\n          [-76.324353, 37.142895],\n          [-76.311088, 37.138495],\n          [-76.292344, 37.126615],\n          [-76.287236, 37.117453],\n          [-76.274463, 37.094544],\n          [-76.271262, 37.084544],\n          [-76.292863, 37.035145],\n          [-76.300352, 37.00885],\n          [-76.304272, 37.001378],\n          [-76.312048, 37.000371],\n          [-76.315008, 37.001683],\n          [-76.314624, 37.00933],\n          [-76.318065, 37.013846],\n          [-76.329531, 37.014556],\n          [-76.34011, 37.015212],\n          [-76.340666, 37.015246],\n          [-76.348066, 37.006747],\n          [-76.356366, 37.002947],\n          [-76.373567, 36.998347],\n          [-76.383367, 36.993347],\n          [-76.387711, 36.989671],\n          [-76.396368, 36.982347],\n          [-76.408568, 36.969147],\n          [-76.411768, 36.962847],\n          [-76.418969, 36.964047],\n          [-76.428869, 36.969947],\n          [-76.452118, 36.998163],\n          [-76.452461, 37.004603],\n          [-76.449891, 37.004868],\n          [-76.448231, 37.007705],\n          [-76.464471, 37.027547],\n          [-76.46949, 37.030414],\n          [-76.507614, 37.052188],\n          [-76.509339, 37.053173],\n          [-76.512289, 37.054858],\n          [-76.518242, 37.055351],\n          [-76.526273, 37.062947],\n          [-76.527973, 37.068247],\n          [-76.526573, 37.070047],\n          [-76.526203, 37.077773],\n          [-76.528997, 37.079388],\n          [-76.536875, 37.083942],\n          [-76.555066, 37.075859],\n          [-76.564219, 37.077507],\n          [-76.567931, 37.080467],\n          [-76.579499, 37.096627],\n          [-76.618252, 37.119347],\n          [-76.62478, 37.127091],\n          [-76.622252, 37.142146],\n          [-76.617084, 37.144498],\n          [-76.604476, 37.160034],\n          [-76.606684, 37.166674],\n          [-76.610972, 37.166994],\n          [-76.611018, 37.167097],\n          [-76.612517, 37.170486],\n          [-76.613599, 37.172931],\n          [-76.614221, 37.174335],\n          [-76.616268, 37.178962],\n          [-76.616804, 37.18126],\n          [-76.617537, 37.184409],\n          [-76.618008, 37.186429],\n          [-76.61934, 37.192146],\n          [-76.619962, 37.193184],\n          [-76.621113, 37.195103],\n          [-76.623292, 37.198738],\n          [-76.629868, 37.206738],\n          [-76.639608, 37.214783],\n          [-76.641085, 37.216002],\n          [-76.649869, 37.220914],\n          [-76.689166, 37.222866],\n          [-76.693373, 37.221228],\n          [-76.698943, 37.219059],\n          [-76.730951, 37.213813],\n          [-76.73432, 37.204211],\n          [-76.74, 37.195379],\n          [-76.74304, 37.192611],\n          [-76.75047, 37.190098],\n          [-76.757765, 37.191658],\n          [-76.773752, 37.206061],\n          [-76.780532, 37.209336],\n          [-76.791555, 37.207564],\n          [-76.801023, 37.206043],\n          [-76.803198, 37.201513],\n          [-76.802511, 37.198308],\n          [-76.796905, 37.189404],\n          [-76.756899, 37.161582],\n          [-76.747632, 37.150548],\n          [-76.73728, 37.146164],\n          [-76.73032, 37.145395],\n          [-76.715295, 37.148035],\n          [-76.696735, 37.174403],\n          [-76.692926, 37.186147],\n          [-76.691918, 37.195731],\n          [-76.685614, 37.198851],\n          [-76.669886, 37.183571],\n          [-76.663774, 37.173875],\n          [-76.66427, 37.171027],\n          [-76.66867, 37.166771],\n          [-76.67147, 37.158739],\n          [-76.671588, 37.14206],\n          [-76.669604, 37.140534],\n          [-76.666542, 37.138179],\n          [-76.665833, 37.136098],\n          [-76.665641, 37.135534],\n          [-76.66375, 37.129979],\n          [-76.656894, 37.109843],\n          [-76.657101, 37.107617],\n          [-76.657703, 37.101161],\n          [-76.65811, 37.096787],\n          [-76.659394, 37.094019],\n          [-76.66555, 37.080746],\n          [-76.666526, 37.078643],\n          [-76.667219, 37.077149],\n          [-76.667646, 37.076228],\n          [-76.668295, 37.072656],\n          [-76.669118, 37.068132],\n          [-76.669822, 37.06426],\n          [-76.66835, 37.05506],\n          [-76.662558, 37.045748],\n          [-76.653998, 37.039172],\n          [-76.646013, 37.036228],\n          [-76.612124, 37.035604],\n          [-76.586491, 37.02874],\n          [-76.584478, 37.027349],\n          [-76.579393, 37.023835],\n          [-76.579236, 37.023726],\n          [-76.57816, 37.022982],\n          [-76.577531, 37.022548],\n          [-76.576617, 37.021374],\n          [-76.565803, 37.007493],\n          [-76.562923, 37.003796],\n          [-76.551246, 36.998946],\n          [-76.524853, 36.983833],\n          [-76.522971, 36.981085],\n          [-76.524142, 36.978316],\n          [-76.521006, 36.973187],\n          [-76.513363, 36.968057],\n          [-76.500355, 36.965212],\n          [-76.487559, 36.952372],\n          [-76.484107, 36.928916],\n          [-76.482407, 36.917364],\n          [-76.482135, 36.901108],\n          [-76.483369, 36.896239],\n          [-76.469914, 36.882898],\n          [-76.454692, 36.884077],\n          [-76.45329, 36.887031],\n          [-76.453941, 36.89274],\n          [-76.447413, 36.90322],\n          [-76.441605, 36.906116],\n          [-76.43122, 36.904532],\n          [-76.407507, 36.897444],\n          [-76.406908, 36.897507],\n          [-76.387567, 36.899547],\n          [-76.385867, 36.923247],\n          [-76.353765, 36.922747],\n          [-76.345569, 36.924531],\n          [-76.344663, 36.919313],\n          [-76.333158, 36.917293],\n          [-76.328864, 36.918447],\n          [-76.330765, 36.938647],\n          [-76.327365, 36.959447],\n          [-76.322764, 36.959147],\n          [-76.315867, 36.955351],\n          [-76.299364, 36.965547],\n          [-76.297663, 36.968147],\n          [-76.285063, 36.968747],\n          [-76.267962, 36.964547],\n          [-76.234961, 36.945147],\n          [-76.22166, 36.939547],\n          [-76.189959, 36.931447],\n          [-76.177019, 36.92929],\n          [-76.139557, 36.923047],\n          [-76.095508, 36.908817],\n          [-76.087955, 36.908647],\n          [-76.058154, 36.916947],\n          [-76.043054, 36.927547],\n          [-76.033454, 36.931946],\n          [-76.013753, 36.930746],\n          [-76.007553, 36.929047],\n          [-75.996252, 36.922047],\n          [-75.991552, 36.910847],\n          [-75.972151, 36.842268],\n          [-75.965451, 36.812449],\n          [-75.94955, 36.76115],\n          [-75.921748, 36.692051],\n          [-75.890946, 36.630753],\n          [-75.874145, 36.583853],\n          [-75.867044, 36.550754],\n          [-75.879744, 36.550754],\n          [-75.880644, 36.550754],\n          [-75.885945, 36.550754],\n          [-75.886545, 36.550754],\n          [-75.891945, 36.550754],\n          [-75.893245, 36.550654],\n          [-75.894145, 36.550754],\n          [-75.903445, 36.550654],\n          [-75.904745, 36.550654],\n          [-75.909046, 36.550654],\n          [-75.911446, 36.550654],\n          [-75.922046, 36.550654],\n          [-75.952847, 36.550553],\n          [-75.953447, 36.550553],\n          [-75.955748, 36.550553],\n          [-75.957648, 36.550553],\n          [-76.02675, 36.550553],\n          [-76.034751, 36.550653],\n          [-76.12236, 36.550621],\n          [-76.313196, 36.550551],\n          [-76.313215, 36.550551],\n          [-76.491497, 36.550365],\n          [-76.541391, 36.550312],\n          [-76.541687, 36.550312],\n          [-76.781296, 36.550659],\n          [-76.807078, 36.550606],\n          [-76.915384, 36.543856],\n          [-76.916001, 36.543818],\n          [-76.916048, 36.543815],\n          [-77.1645, 36.54633],\n          [-77.24969, 36.544745],\n          [-77.296875, 36.544746],\n          [-77.767117, 36.544752],\n          [-77.87528, 36.544754],\n          [-77.882357, 36.544737],\n          [-77.899771, 36.544663],\n          [-78.038938, 36.544173],\n          [-78.03942, 36.544196],\n          [-78.046202, 36.544168],\n          [-78.132911, 36.543811],\n          [-78.133323, 36.543847],\n          [-78.245462, 36.544411],\n          [-78.246681, 36.544341],\n          [-78.323912, 36.543809],\n          [-78.436333, 36.542666],\n          [-78.441199, 36.542687],\n          [-78.45697, 36.542474],\n          [-78.470792, 36.542316],\n          [-78.471022, 36.542307],\n          [-78.529722, 36.540981],\n          [-78.533013, 36.541004],\n          [-78.663317, 36.542011],\n          [-78.670051, 36.542035],\n          [-78.734122, 36.541902],\n          [-78.758392, 36.541852],\n          [-78.76543, 36.541727],\n          [-78.7963, 36.541713],\n          [-78.914543, 36.541972],\n          [-78.91542, 36.541974],\n          [-78.942009, 36.542113],\n          [-78.942254, 36.542079],\n          [-78.970577, 36.542154],\n          [-78.971814, 36.542123],\n          [-79.124736, 36.541568],\n          [-79.126078, 36.541533],\n          [-79.137936, 36.541739],\n          [-79.208686, 36.541571],\n          [-79.20948, 36.541594],\n          [-79.218638, 36.541579],\n          [-79.342696, 36.541382],\n          [-79.445687, 36.541218],\n          [-79.445961, 36.541195],\n          [-79.470047, 36.541025],\n          [-79.510647, 36.540738],\n          [-79.510961, 36.54074],\n          [-79.666827, 36.541772],\n          [-79.667309, 36.541772],\n          [-79.714855, 36.541884],\n          [-79.920239, 36.542365],\n          [-79.966979, 36.542475],\n          [-79.967511, 36.542502],\n          [-80.027269, 36.542495],\n          [-80.053455, 36.542623],\n          [-80.169535, 36.54319],\n          [-80.171636, 36.543219],\n          [-80.225408, 36.543748],\n          [-80.228263, 36.543867],\n          [-80.431605, 36.550219],\n          [-80.432628, 36.550302],\n          [-80.4401, 36.55063],\n          [-80.612158, 36.558127],\n          [-80.687539, 36.561411],\n          [-80.744101, 36.561686],\n          [-80.837089, 36.559154],\n          [-80.837641, 36.559118],\n          [-80.837954, 36.559131],\n          [-80.901726, 36.561751],\n          [-80.901836, 36.561754],\n          [-80.944338, 36.563058],\n          [-80.945988, 36.563196],\n          [-81.058844, 36.566976],\n          [-81.061866, 36.56702],\n          [-81.307511, 36.575024],\n          [-81.353169, 36.574724],\n          [-81.353322, 36.574723],\n          [-81.521032, 36.58052],\n          [-81.60697, 36.587094],\n          [-81.677535, 36.588117],\n          [-81.6469, 36.611918],\n          [-81.826742, 36.614215],\n          [-81.922644, 36.616213],\n          [-81.934144, 36.594213],\n          [-82.14607, 36.594712],\n          [-82.148569, 36.594718],\n          [-82.150727, 36.594673],\n          [-82.173982, 36.594607],\n          [-82.177247, 36.594768],\n          [-82.18074, 36.594928],\n          [-82.188491, 36.595179],\n          [-82.210497, 36.595772],\n          [-82.211005, 36.59586],\n          [-82.221713, 36.595814],\n          [-82.223445, 36.595721],\n          [-82.225716, 36.595744],\n          [-82.226653, 36.595743],\n          [-82.243274, 36.595699],\n          [-82.293814, 36.595565],\n          [-82.554294, 36.594876],\n          [-82.559774, 36.5948],\n          [-82.561074, 36.5948],\n          [-82.609176, 36.594099],\n          [-82.679879, 36.593698],\n          [-82.69578, 36.593698],\n          [-82.830433, 36.593761],\n          [-82.985087, 36.593829],\n          [-83.02725, 36.593847],\n          [-83.028357, 36.593893],\n          [-83.248933, 36.593827],\n          [-83.249899, 36.593898],\n          [-83.250304, 36.593935],\n          [-83.2763, 36.598187],\n          [-83.472108, 36.597284],\n          [-83.670128, 36.600764],\n          [-83.670141, 36.600797],\n          [-83.675413, 36.600814],\n          [-83.649513, 36.616683],\n          [-83.527212, 36.665984],\n          [-83.498011, 36.670485],\n          [-83.461013, 36.664916],\n          [-83.460808, 36.664885],\n          [-83.354606, 36.696153],\n          [-83.353613, 36.696699],\n          [-83.342804, 36.701286],\n          [-83.199698, 36.737487],\n          [-83.167396, 36.739187],\n          [-83.136395, 36.743088],\n          [-83.127833, 36.750828],\n          [-83.125728, 36.761276],\n          [-83.125655, 36.761407],\n          [-83.131245, 36.767105],\n          [-83.131694, 36.781488],\n          [-83.099792, 36.824889],\n          [-83.07259, 36.854589],\n          [-82.973395, 36.859097],\n          [-82.911824, 36.874243],\n          [-82.91169, 36.874248],\n          [-82.885618, 36.900415],\n          [-82.873777, 36.912299],\n          [-82.872136, 36.913456],\n          [-82.863468, 36.922308],\n          [-82.861943, 36.924236],\n          [-82.858461, 36.932717],\n          [-82.858784, 36.933065],\n          [-82.860537, 36.937439],\n          [-82.861684, 36.939316],\n          [-82.861282, 36.944848],\n          [-82.860633, 36.94584],\n          [-82.856099, 36.952471],\n          [-82.855705, 36.953808],\n          [-82.858443, 36.954036],\n          [-82.860534, 36.956015],\n          [-82.862866, 36.957765],\n          [-82.864211, 36.957983],\n          [-82.865404, 36.958084],\n          [-82.867358, 36.963182],\n          [-82.87023, 36.965498],\n          [-82.870274, 36.965993],\n          [-82.869183, 36.974182],\n          [-82.869183, 36.974183],\n          [-82.868455, 36.976481],\n          [-82.867535, 36.977518],\n          [-82.866689, 36.978052],\n          [-82.866019, 36.978272],\n          [-82.864909, 36.97901],\n          [-82.862926, 36.979975],\n          [-82.852614, 36.984963],\n          [-82.851397, 36.984497],\n          [-82.840051, 36.987113],\n          [-82.838549, 36.987027],\n          [-82.836008, 36.988837],\n          [-82.833843, 36.991973],\n          [-82.830802, 36.993445],\n          [-82.829125, 36.997541],\n          [-82.830588, 37.000945],\n          [-82.818006, 37.006161],\n          [-82.815748, 37.007196],\n          [-82.800531, 37.007944],\n          [-82.79089, 37.00676],\n          [-82.790462, 37.007263],\n          [-82.789092, 37.007995],\n          [-82.788897, 37.00816],\n          [-82.777368, 37.015279],\n          [-82.771795, 37.015716],\n          [-82.722472, 37.045101],\n          [-82.720597, 37.081833],\n          [-82.721941, 37.105689],\n          [-82.624878, 37.162932],\n          [-82.565375, 37.196092],\n          [-82.565329, 37.196118],\n          [-82.553549, 37.200867],\n          [-82.510826, 37.218091],\n          [-82.350948, 37.267077],\n          [-82.310793, 37.297387],\n          [-82.305874, 37.3011],\n          [-82.291908, 37.311642],\n          [-81.968297, 37.537798],\n          [-81.92787, 37.512118],\n          [-81.94264, 37.508844],\n          [-81.992916, 37.482969],\n          [-81.996578, 37.476705],\n          [-81.99227, 37.460916],\n          [-81.987006, 37.454878],\n          [-81.968795, 37.451496],\n          [-81.949367, 37.445687],\n          [-81.935621, 37.438397],\n          [-81.92749, 37.413251],\n          [-81.933895, 37.372747],\n          [-81.930194, 37.366728],\n          [-81.929915, 37.366589],\n          [-81.926589, 37.358942],\n          [-81.925643, 37.357316],\n          [-81.921571, 37.356423],\n          [-81.920711, 37.355416],\n          [-81.911487, 37.348839],\n          [-81.910875, 37.348729],\n          [-81.907895, 37.343783],\n          [-81.907322, 37.343119],\n          [-81.906368, 37.34276],\n          [-81.905945, 37.342775],\n          [-81.903795, 37.34305],\n          [-81.902992, 37.34234],\n          [-81.899495, 37.341102],\n          [-81.899459, 37.340277],\n          [-81.896001, 37.331967],\n          [-81.895489, 37.332022],\n          [-81.894797, 37.332012],\n          [-81.894768, 37.331381],\n          [-81.893773, 37.330105],\n          [-81.892876, 37.330134],\n          [-81.887722, 37.331156],\n          [-81.886952, 37.330725],\n          [-81.885075, 37.330665],\n          [-81.880886, 37.331146],\n          [-81.879601, 37.332074],\n          [-81.878713, 37.331753],\n          [-81.878343, 37.328837],\n          [-81.873213, 37.325065],\n          [-81.865219, 37.308839],\n          [-81.86476, 37.308404],\n          [-81.853978, 37.300418],\n          [-81.854465, 37.299937],\n          [-81.853488, 37.294763],\n          [-81.854059, 37.291352],\n          [-81.843167, 37.285586],\n          [-81.84231, 37.285556],\n          [-81.810559, 37.28298],\n          [-81.809184, 37.283003],\n          [-81.793639, 37.282188],\n          [-81.793425, 37.281674],\n          [-81.774747, 37.274847],\n          [-81.774684, 37.274807],\n          [-81.767837, 37.274216],\n          [-81.765195, 37.275099],\n          [-81.763836, 37.275218],\n          [-81.762776, 37.275391],\n          [-81.761752, 37.275713],\n          [-81.76022, 37.275254],\n          [-81.757631, 37.274003],\n          [-81.75773, 37.271934],\n          [-81.757714, 37.271124],\n          [-81.757531, 37.27001],\n          [-81.755012, 37.26772],\n          [-81.752912, 37.266614],\n          [-81.752123, 37.265568],\n          [-81.75129, 37.265131],\n          [-81.747656, 37.264329],\n          [-81.743505, 37.247601],\n          [-81.74342, 37.245858],\n          [-81.744291, 37.244178],\n          [-81.738378, 37.240917],\n          [-81.73332, 37.238127],\n          [-81.728194, 37.239823],\n          [-81.683544, 37.211452],\n          [-81.678603, 37.202467],\n          [-81.560625, 37.206663],\n          [-81.558353, 37.208145],\n          [-81.557315, 37.207697],\n          [-81.507325, 37.2338],\n          [-81.50488, 37.247697],\n          [-81.504168, 37.250115],\n          [-81.409729, 37.284837],\n          [-81.409196, 37.286071],\n          [-81.388132, 37.319903],\n          [-81.386727, 37.320474],\n          [-81.38581, 37.320085],\n          [-81.384914, 37.318832],\n          [-81.384127, 37.318596],\n          [-81.380159, 37.317838],\n          [-81.377349, 37.318447],\n          [-81.371315, 37.324115],\n          [-81.367599, 37.327569],\n          [-81.369379, 37.331827],\n          [-81.36809, 37.332423],\n          [-81.367052, 37.334504],\n          [-81.366315, 37.335927],\n          [-81.362156, 37.337687],\n          [-81.320105, 37.299323],\n          [-81.225104, 37.234874],\n          [-81.204774, 37.243013],\n          [-81.167029, 37.262881],\n          [-81.112596, 37.278497],\n          [-81.084012, 37.284401],\n          [-81.034652, 37.290751],\n          [-80.981322, 37.293465],\n          [-80.980044, 37.293118],\n          [-80.973889, 37.291444],\n          [-80.966556, 37.292158],\n          [-80.947896, 37.295872],\n          [-80.919259, 37.306163],\n          [-80.900535, 37.315],\n          [-80.849451, 37.346909],\n          [-80.872589, 37.372347],\n          [-80.862761, 37.411829],\n          [-80.859558, 37.429555],\n          [-80.859556, 37.429568],\n          [-80.858473, 37.428301],\n          [-80.85836, 37.428168],\n          [-80.811639, 37.407507],\n          [-80.798869, 37.395807],\n          [-80.776766, 37.384131],\n          [-80.776649, 37.383679],\n          [-80.770082, 37.372363],\n          [-80.622664, 37.433307],\n          [-80.511391, 37.481672],\n          [-80.494867, 37.43507],\n          [-80.475601, 37.422949],\n          [-80.46482, 37.426144],\n          [-80.443025, 37.438126],\n          [-80.425656, 37.449876],\n          [-80.320627, 37.49888],\n          [-80.314806, 37.500943],\n          [-80.330306, 37.536244],\n          [-80.312393, 37.546239],\n          [-80.288766, 37.58196],\n          [-80.240272, 37.606961],\n          [-80.223386, 37.623185],\n          [-80.220984, 37.627767],\n          [-80.239288, 37.637672],\n          [-80.254431, 37.642352],\n          [-80.254469, 37.642333],\n          [-80.263281, 37.645082],\n          [-80.263291, 37.645101],\n          [-80.26483, 37.645526],\n          [-80.264874, 37.645511],\n          [-80.267228, 37.646011],\n          [-80.267455, 37.646108],\n          [-80.270352, 37.648929],\n          [-80.270323, 37.648982],\n          [-80.292258, 37.683732],\n          [-80.292337, 37.683976],\n          [-80.296138, 37.691783],\n          [-80.287107, 37.696403],\n          [-80.263936, 37.719137],\n          [-80.259342, 37.731205],\n          [-80.260313, 37.733517],\n          [-80.262765, 37.738336],\n          [-80.257411, 37.756084],\n          [-80.231551, 37.792591],\n          [-80.227092, 37.798886],\n          [-80.162202, 37.875122],\n          [-80.148964, 37.886057],\n          [-80.147316, 37.885936],\n          [-80.14613, 37.884453],\n          [-80.130464, 37.893194],\n          [-80.055278, 37.951702],\n          [-80.002507, 37.992767],\n          [-79.978427, 38.029082],\n          [-79.959844, 38.063697],\n          [-79.933911, 38.099168],\n          [-79.931034, 38.101402],\n          [-79.938394, 38.130563],\n          [-79.933751, 38.135508],\n          [-79.928747, 38.144436],\n          [-79.928683, 38.144928],\n          [-79.925512, 38.150237],\n          [-79.925251, 38.150465],\n          [-79.921026, 38.179954],\n          [-79.921196, 38.180378],\n          [-79.917061, 38.183741],\n          [-79.916174, 38.184386],\n          [-79.892345, 38.202397],\n          [-79.891999, 38.203378],\n          [-79.794568, 38.264856],\n          [-79.790134, 38.267654],\n          [-79.788945, 38.268703],\n          [-79.810115, 38.305037],\n          [-79.808711, 38.309429],\n          [-79.731661, 38.374143],\n          [-79.691377, 38.439558],\n          [-79.689544, 38.442511],\n          [-79.688962, 38.449538],\n          [-79.688205, 38.450476],\n          [-79.699006, 38.475148],\n          [-79.695565, 38.477842],\n          [-79.669128, 38.510883],\n          [-79.669128, 38.510975],\n          [-79.649075, 38.591515],\n          [-79.597955, 38.572767],\n          [-79.555471, 38.560217],\n          [-79.53687, 38.550917],\n          [-79.521469, 38.533918],\n          [-79.476638, 38.457228],\n          [-79.312276, 38.411876],\n          [-79.297758, 38.416438],\n          [-79.295712, 38.418129],\n          [-79.291813, 38.419627],\n          [-79.290529, 38.420757],\n          [-79.280263, 38.425475],\n          [-79.282663, 38.431021],\n          [-79.267414, 38.438322],\n          [-79.265327, 38.441772],\n          [-79.263376, 38.443762],\n          [-79.26291, 38.444586],\n          [-79.242024, 38.464332],\n          [-79.240059, 38.469841],\n          [-79.234408, 38.473011],\n          [-79.23162, 38.474041],\n          [-79.225839, 38.479446],\n          [-79.210026, 38.494231],\n          [-79.210008, 38.494283],\n          [-79.209703, 38.495574],\n          [-79.207873, 38.500122],\n          [-79.207884, 38.500428],\n          [-79.174881, 38.566314],\n          [-79.174512, 38.566531],\n          [-79.146974, 38.625641],\n          [-79.146741, 38.625819],\n          [-79.137012, 38.640655],\n          [-79.136374, 38.6424],\n          [-79.135546, 38.643715],\n          [-79.135472, 38.644057],\n          [-79.092271, 38.699208],\n          [-79.092555, 38.700149],\n          [-79.057253, 38.761413],\n          [-79.055354, 38.782213],\n          [-78.999752, 38.846162],\n          [-78.993997, 38.850102]\n        ]\n      },\n      \"properties\": {\n        \"stroke\": \"#080\",\n        \"fill\": \"#080\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-78.869276, 38.762991],\n            [-78.835191, 38.811499],\n            [-78.808181, 38.856175],\n            [-78.788031, 38.885123],\n            [-78.779198, 38.892298],\n            [-78.757278, 38.903203],\n            [-78.719806, 38.922638],\n            [-78.719755, 38.922135],\n            [-78.716956, 38.916273],\n            [-78.714135, 38.911176],\n            [-78.710949, 38.910175],\n            [-78.601655, 38.964603],\n            [-78.557647, 39.013189],\n            [-78.554222, 39.019672],\n            [-78.565837, 39.026303],\n            [-78.571901, 39.031995],\n            [-78.544111, 39.056676],\n            [-78.508132, 39.08863],\n            [-78.459869, 39.113351],\n            [-78.439429, 39.132146],\n            [-78.418377, 39.156656],\n            [-78.41074, 39.171983],\n            [-78.426722, 39.188903],\n            [-78.438651, 39.198049],\n            [-78.437053, 39.199766],\n            [-78.43213, 39.204717],\n            [-78.431167, 39.205744],\n            [-78.429803, 39.207014],\n            [-78.427911, 39.208611],\n            [-78.423968, 39.212049],\n            [-78.399669, 39.243874],\n            [-78.399785, 39.244129],\n            [-78.360035, 39.317771],\n            [-78.35894, 39.319484],\n            [-78.34048, 39.353492],\n            [-78.362267, 39.357784],\n            [-78.347087, 39.466012],\n            [-78.228766, 39.391233],\n            [-78.033185, 39.264626],\n            [-78.033183, 39.264624],\n            [-78.032841, 39.264403],\n            [-77.828157, 39.132329],\n            [-77.822182, 39.139985],\n            [-77.771415, 39.236776],\n            [-77.767277, 39.24938],\n            [-77.768992, 39.256417],\n            [-77.768, 39.257657],\n            [-77.761768, 39.263031],\n            [-77.761217, 39.263721],\n            [-77.758733, 39.268114],\n            [-77.758412, 39.269197],\n            [-77.755698, 39.274575],\n            [-77.755193, 39.275191],\n            [-77.753105, 39.27734],\n            [-77.75306, 39.277971],\n            [-77.753357, 39.280331],\n            [-77.750267, 39.289284],\n            [-77.719029, 39.321125],\n            [-77.677505, 39.318699],\n            [-77.667749, 39.318129],\n            [-77.592739, 39.30129],\n            [-77.560854, 39.286152],\n            [-77.545846, 39.271535],\n            [-77.543228, 39.266937],\n            [-77.534461, 39.262361],\n            [-77.511222, 39.2535],\n            [-77.484605, 39.245941],\n            [-77.46021, 39.228359],\n            [-77.45768, 39.22502],\n            [-77.458779, 39.22028],\n            [-77.458884, 39.219826],\n            [-77.478596, 39.189168],\n            [-77.485971, 39.185665],\n            [-77.505162, 39.18205],\n            [-77.510631, 39.178484],\n            [-77.516426, 39.170891],\n            [-77.527282, 39.146236],\n            [-77.524559, 39.127821],\n            [-77.519929, 39.120925],\n            [-77.458202, 39.073723],\n            [-77.42318, 39.066878],\n            [-77.375079, 39.061297],\n            [-77.340287, 39.062991],\n            [-77.328002, 39.058554],\n            [-77.291605, 39.045408],\n            [-77.261403, 39.031009],\n            [-77.251803, 39.011409],\n            [-77.255703, 39.002409],\n            [-77.249803, 38.985909],\n            [-77.235403, 38.97661],\n            [-77.221502, 38.97131],\n            [-77.197502, 38.96681],\n            [-77.166901, 38.96811],\n            [-77.148179, 38.965002],\n            [-77.137701, 38.95531],\n            [-77.1199, 38.934311],\n            [-77.119863, 38.934265],\n            [-77.1012, 38.911111],\n            [-77.0902, 38.904211],\n            [-77.068199, 38.899811],\n            [-77.040599, 38.871212],\n            [-77.031698, 38.850512],\n            [-77.032986, 38.8395],\n            [-77.038598, 38.791513],\n            [-77.039239, 38.7852],\n            [-77.041398, 38.763914],\n            [-77.05991, 38.734419],\n            [-77.074599, 38.711015],\n            [-77.086113, 38.705792],\n            [-77.1059, 38.696815],\n            [-77.121101, 38.686616],\n            [-77.132501, 38.673816],\n            [-77.135901, 38.649817],\n            [-77.1302, 38.635017],\n            [-77.157501, 38.636417],\n            [-77.174902, 38.624217],\n            [-77.202002, 38.617217],\n            [-77.204302, 38.617817],\n            [-77.205103, 38.623917],\n            [-77.216303, 38.637817],\n            [-77.22235, 38.638091],\n            [-77.240604, 38.638917],\n            [-77.246704, 38.635217],\n            [-77.248904, 38.628617],\n            [-77.245104, 38.620717],\n            [-77.246441, 38.599532],\n            [-77.247003, 38.590618],\n            [-77.26443, 38.582845],\n            [-77.265304, 38.580319],\n            [-77.26083, 38.56533],\n            [-77.276603, 38.54712],\n            [-77.276303, 38.53962],\n            [-77.283503, 38.525221],\n            [-77.291103, 38.515721],\n            [-77.29582, 38.511457],\n            [-77.298844, 38.508724],\n            [-77.300776, 38.506978],\n            [-77.302457, 38.504683],\n            [-77.310334, 38.493926],\n            [-77.322622, 38.467131],\n            [-77.32544, 38.44885],\n            [-77.319036, 38.417803],\n            [-77.310719, 38.397669],\n            [-77.312201, 38.390958],\n            [-77.314848, 38.389579],\n            [-77.317288, 38.383576],\n            [-77.296077, 38.369797],\n            [-77.288145, 38.359477],\n            [-77.28835, 38.351286],\n            [-77.286202, 38.347025],\n            [-77.286202, 38.347024],\n            [-77.279633, 38.339444],\n            [-77.265295, 38.333165],\n            [-77.240072, 38.331598],\n            [-77.199433, 38.34089],\n            [-77.17934, 38.341915],\n            [-77.162692, 38.345994],\n            [-77.155191, 38.351047],\n            [-77.138224, 38.367917],\n            [-77.104717, 38.369655],\n            [-77.094665, 38.367715],\n            [-77.08481, 38.368297],\n            [-77.069956, 38.377895],\n            [-77.056032, 38.3962],\n            [-77.051437, 38.399083],\n            [-77.043526, 38.400548],\n            [-77.024866, 38.386791],\n            [-77.011827, 38.374554],\n            [-77.016932, 38.341697],\n            [-77.020947, 38.329273],\n            [-77.030683, 38.311623],\n            [-77.026304, 38.302685],\n            [-76.99767, 38.278047],\n            [-76.990255, 38.273935],\n            [-76.981372, 38.274214],\n            [-76.96215, 38.256486],\n            [-76.957796, 38.243183],\n            [-76.957417, 38.236341],\n            [-76.962375, 38.230093],\n            [-76.966553, 38.229542],\n            [-76.967335, 38.227185],\n            [-76.962311, 38.214075],\n            [-76.937134, 38.202384],\n            [-76.916922, 38.199751],\n            [-76.910832, 38.197073],\n            [-76.875272, 38.172207],\n            [-76.838795, 38.163476],\n            [-76.824274, 38.163639],\n            [-76.802968, 38.167988],\n            [-76.788445, 38.169199],\n            [-76.760241, 38.166581],\n            [-76.749685, 38.162114],\n            [-76.743064, 38.156988],\n            [-76.740278, 38.152824],\n            [-76.738938, 38.14651],\n            [-76.721722, 38.137635],\n            [-76.704048, 38.149264],\n            [-76.701297, 38.155718],\n            [-76.684892, 38.156497],\n            [-76.665127, 38.147638],\n            [-76.643448, 38.14825],\n            [-76.638983, 38.151476],\n            [-76.629476, 38.15305],\n            [-76.613939, 38.148587],\n            [-76.604131, 38.128771],\n            [-76.600937, 38.110084],\n            [-76.579497, 38.09487],\n            [-76.543155, 38.076971],\n            [-76.535919, 38.069532],\n            [-76.522354, 38.04259],\n            [-76.519536, 38.034814],\n            [-76.516547, 38.026566],\n            [-76.491998, 38.017222],\n            [-76.475830078125, 38.01459716589467]\n          ],\n          [\n            [-76.475830078125, 37.6658578319085],\n            [-76.489576, 37.666201],\n            [-76.491799, 37.663614],\n            [-76.497564, 37.647056],\n            [-76.501522, 37.643762],\n            [-76.510187, 37.642324],\n            [-76.536548, 37.663574],\n            [-76.537698, 37.66893],\n            [-76.535302, 37.687516],\n            [-76.537228, 37.698892],\n            [-76.54005, 37.704432],\n            [-76.560476, 37.727827],\n            [-76.576387, 37.757493],\n            [-76.584289, 37.76889],\n            [-76.593835, 37.772848],\n            [-76.595939, 37.77168],\n            [-76.602024, 37.772731],\n            [-76.615351, 37.780759],\n            [-76.642276, 37.792317],\n            [-76.651413, 37.796239],\n            [-76.658302, 37.806815],\n            [-76.680197, 37.825654],\n            [-76.692747, 37.82277],\n            [-76.701606, 37.822677],\n            [-76.722156, 37.83668],\n            [-76.72718, 37.842263],\n            [-76.733046, 37.852009],\n            [-76.738395, 37.865373],\n            [-76.747552, 37.875864],\n            [-76.765711, 37.879274],\n            [-76.77539, 37.874306],\n            [-76.784618, 37.869569],\n            [-76.782826, 37.863184],\n            [-76.766328, 37.840437],\n            [-76.7512, 37.824141],\n            [-76.734309, 37.79866],\n            [-76.723863, 37.788503],\n            [-76.715498, 37.785873],\n            [-76.689773, 37.78519],\n            [-76.683775, 37.781391],\n            [-76.681901, 37.778118],\n            [-76.683343, 37.775783],\n            [-76.683359, 37.770258],\n            [-76.683372, 37.765507],\n            [-76.680922, 37.759647],\n            [-76.677002, 37.7561],\n            [-76.663887, 37.751887],\n            [-76.639962, 37.750941],\n            [-76.61971, 37.744795],\n            [-76.617373, 37.742347],\n            [-76.621433, 37.737973],\n            [-76.61997, 37.731271],\n            [-76.606466, 37.724819],\n            [-76.597213, 37.717269],\n            [-76.595943, 37.712989],\n            [-76.598073, 37.70912],\n            [-76.597868, 37.702918],\n            [-76.579591, 37.671508],\n            [-76.583143, 37.661986],\n            [-76.574049, 37.646781],\n            [-76.542666, 37.616857],\n            [-76.533777, 37.61253],\n            [-76.527188, 37.611315],\n            [-76.475830078125, 37.61215048879601]\n          ],\n          [\n            [-76.475830078125, 37.250548732117046],\n            [-76.475927, 37.250543],\n            [-76.48284, 37.254831],\n            [-76.493302, 37.24947],\n            [-76.4989, 37.241015],\n            [-76.50364, 37.233856],\n            [-76.494008, 37.225408],\n            [-76.475830078125, 37.2177207091607]\n          ],\n          [\n            [-76.475830078125, 37.034035048711935],\n            [-76.507614, 37.052188],\n            [-76.509339, 37.053173],\n            [-76.512289, 37.054858],\n            [-76.518242, 37.055351],\n            [-76.526273, 37.062947],\n            [-76.527973, 37.068247],\n            [-76.526573, 37.070047],\n            [-76.526203, 37.077773],\n            [-76.528997, 37.079388],\n            [-76.536875, 37.083942],\n            [-76.555066, 37.075859],\n            [-76.564219, 37.077507],\n            [-76.567931, 37.080467],\n            [-76.579499, 37.096627],\n            [-76.618252, 37.119347],\n            [-76.62478, 37.127091],\n            [-76.622252, 37.142146],\n            [-76.617084, 37.144498],\n            [-76.604476, 37.160034],\n            [-76.606684, 37.166674],\n            [-76.610972, 37.166994],\n            [-76.611018, 37.167097],\n            [-76.612517, 37.170486],\n            [-76.613599, 37.172931],\n            [-76.614221, 37.174335],\n            [-76.616268, 37.178962],\n            [-76.616804, 37.18126],\n            [-76.617537, 37.184409],\n            [-76.618008, 37.186429],\n            [-76.61934, 37.192146],\n            [-76.619962, 37.193184],\n            [-76.621113, 37.195103],\n            [-76.623292, 37.198738],\n            [-76.629868, 37.206738],\n            [-76.639608, 37.214783],\n            [-76.641085, 37.216002],\n            [-76.649869, 37.220914],\n            [-76.689166, 37.222866],\n            [-76.693373, 37.221228],\n            [-76.698943, 37.219059],\n            [-76.730951, 37.213813],\n            [-76.73432, 37.204211],\n            [-76.74, 37.195379],\n            [-76.74304, 37.192611],\n            [-76.75047, 37.190098],\n            [-76.757765, 37.191658],\n            [-76.773752, 37.206061],\n            [-76.780532, 37.209336],\n            [-76.791555, 37.207564],\n            [-76.801023, 37.206043],\n            [-76.803198, 37.201513],\n            [-76.802511, 37.198308],\n            [-76.796905, 37.189404],\n            [-76.756899, 37.161582],\n            [-76.747632, 37.150548],\n            [-76.73728, 37.146164],\n            [-76.73032, 37.145395],\n            [-76.715295, 37.148035],\n            [-76.696735, 37.174403],\n            [-76.692926, 37.186147],\n            [-76.691918, 37.195731],\n            [-76.685614, 37.198851],\n            [-76.669886, 37.183571],\n            [-76.663774, 37.173875],\n            [-76.66427, 37.171027],\n            [-76.66867, 37.166771],\n            [-76.67147, 37.158739],\n            [-76.671588, 37.14206],\n            [-76.669604, 37.140534],\n            [-76.666542, 37.138179],\n            [-76.665833, 37.136098],\n            [-76.665641, 37.135534],\n            [-76.66375, 37.129979],\n            [-76.656894, 37.109843],\n            [-76.657101, 37.107617],\n            [-76.657703, 37.101161],\n            [-76.65811, 37.096787],\n            [-76.659394, 37.094019],\n            [-76.66555, 37.080746],\n            [-76.666526, 37.078643],\n            [-76.667219, 37.077149],\n            [-76.667646, 37.076228],\n            [-76.668295, 37.072656],\n            [-76.669118, 37.068132],\n            [-76.669822, 37.06426],\n            [-76.66835, 37.05506],\n            [-76.662558, 37.045748],\n            [-76.653998, 37.039172],\n            [-76.646013, 37.036228],\n            [-76.612124, 37.035604],\n            [-76.586491, 37.02874],\n            [-76.584478, 37.027349],\n            [-76.579393, 37.023835],\n            [-76.579236, 37.023726],\n            [-76.57816, 37.022982],\n            [-76.577531, 37.022548],\n            [-76.576617, 37.021374],\n            [-76.565803, 37.007493],\n            [-76.562923, 37.003796],\n            [-76.551246, 36.998946],\n            [-76.524853, 36.983833],\n            [-76.522971, 36.981085],\n            [-76.524142, 36.978316],\n            [-76.521006, 36.973187],\n            [-76.513363, 36.968057],\n            [-76.500355, 36.965212],\n            [-76.487559, 36.952372],\n            [-76.484107, 36.928916],\n            [-76.482407, 36.917364],\n            [-76.482135, 36.901108],\n            [-76.483369, 36.896239],\n            [-76.475830078125, 36.888763953048354]\n          ],\n          [\n            [-76.475830078125, 36.55038134515806],\n            [-76.491497, 36.550365],\n            [-76.541391, 36.550312],\n            [-76.541687, 36.550312],\n            [-76.781296, 36.550659],\n            [-76.807078, 36.550606],\n            [-76.915384, 36.543856],\n            [-76.916001, 36.543818],\n            [-76.916048, 36.543815],\n            [-77.1645, 36.54633],\n            [-77.24969, 36.544745],\n            [-77.296875, 36.544746],\n            [-77.767117, 36.544752],\n            [-77.87528, 36.544754],\n            [-77.882357, 36.544737],\n            [-77.899771, 36.544663],\n            [-78.038938, 36.544173],\n            [-78.03942, 36.544196],\n            [-78.046202, 36.544168],\n            [-78.132911, 36.543811],\n            [-78.133323, 36.543847],\n            [-78.245462, 36.544411],\n            [-78.246681, 36.544341],\n            [-78.323912, 36.543809],\n            [-78.436333, 36.542666],\n            [-78.441199, 36.542687],\n            [-78.45697, 36.542474],\n            [-78.470792, 36.542316],\n            [-78.471022, 36.542307],\n            [-78.529722, 36.540981],\n            [-78.533013, 36.541004],\n            [-78.663317, 36.542011],\n            [-78.670051, 36.542035],\n            [-78.734122, 36.541902],\n            [-78.758392, 36.541852],\n            [-78.76543, 36.541727],\n            [-78.7963, 36.541713],\n            [-78.914543, 36.541972],\n            [-78.91542, 36.541974],\n            [-78.942009, 36.542113],\n            [-78.942254, 36.542079],\n            [-78.970577, 36.542154],\n            [-78.971814, 36.542123],\n            [-79.124736, 36.541568],\n            [-79.126078, 36.541533],\n            [-79.137936, 36.541739],\n            [-79.208686, 36.541571],\n            [-79.20948, 36.541594],\n            [-79.218638, 36.541579],\n            [-79.342696, 36.541382],\n            [-79.445687, 36.541218],\n            [-79.445961, 36.541195],\n            [-79.470047, 36.541025],\n            [-79.510647, 36.540738],\n            [-79.510961, 36.54074],\n            [-79.666827, 36.541772],\n            [-79.667309, 36.541772],\n            [-79.714855, 36.541884],\n            [-79.920239, 36.542365],\n            [-79.966979, 36.542475],\n            [-79.967511, 36.542502],\n            [-80.027269, 36.542495],\n            [-80.053455, 36.542623],\n            [-80.169535, 36.54319],\n            [-80.171636, 36.543219],\n            [-80.225408, 36.543748],\n            [-80.228263, 36.543867],\n            [-80.431605, 36.550219],\n            [-80.432628, 36.550302],\n            [-80.4401, 36.55063],\n            [-80.612158, 36.558127],\n            [-80.687539, 36.561411],\n            [-80.744101, 36.561686],\n            [-80.837089, 36.559154],\n            [-80.837641, 36.559118],\n            [-80.837954, 36.559131],\n            [-80.901726, 36.561751],\n            [-80.901836, 36.561754],\n            [-80.944338, 36.563058],\n            [-80.945988, 36.563196],\n            [-81.058844, 36.566976],\n            [-81.061866, 36.56702],\n            [-81.307511, 36.575024],\n            [-81.353169, 36.574724],\n            [-81.353322, 36.574723],\n            [-81.521032, 36.58052],\n            [-81.551513671875, 36.582851756742144]\n          ],\n          [\n            [-81.551513671875, 37.21072624721038],\n            [-81.507325, 37.2338],\n            [-81.50488, 37.247697],\n            [-81.504168, 37.250115],\n            [-81.409729, 37.284837],\n            [-81.409196, 37.286071],\n            [-81.388132, 37.319903],\n            [-81.386727, 37.320474],\n            [-81.38581, 37.320085],\n            [-81.384914, 37.318832],\n            [-81.384127, 37.318596],\n            [-81.380159, 37.317838],\n            [-81.377349, 37.318447],\n            [-81.371315, 37.324115],\n            [-81.367599, 37.327569],\n            [-81.369379, 37.331827],\n            [-81.36809, 37.332423],\n            [-81.367052, 37.334504],\n            [-81.366315, 37.335927],\n            [-81.362156, 37.337687],\n            [-81.320105, 37.299323],\n            [-81.225104, 37.234874],\n            [-81.204774, 37.243013],\n            [-81.167029, 37.262881],\n            [-81.112596, 37.278497],\n            [-81.084012, 37.284401],\n            [-81.034652, 37.290751],\n            [-80.981322, 37.293465],\n            [-80.980044, 37.293118],\n            [-80.973889, 37.291444],\n            [-80.966556, 37.292158],\n            [-80.947896, 37.295872],\n            [-80.919259, 37.306163],\n            [-80.900535, 37.315],\n            [-80.849451, 37.346909],\n            [-80.872589, 37.372347],\n            [-80.862761, 37.411829],\n            [-80.859558, 37.429555],\n            [-80.859556, 37.429568],\n            [-80.858473, 37.428301],\n            [-80.85836, 37.428168],\n            [-80.811639, 37.407507],\n            [-80.798869, 37.395807],\n            [-80.776766, 37.384131],\n            [-80.776649, 37.383679],\n            [-80.770082, 37.372363],\n            [-80.622664, 37.433307],\n            [-80.511391, 37.481672],\n            [-80.494867, 37.43507],\n            [-80.475601, 37.422949],\n            [-80.46482, 37.426144],\n            [-80.443025, 37.438126],\n            [-80.425656, 37.449876],\n            [-80.320627, 37.49888],\n            [-80.314806, 37.500943],\n            [-80.330306, 37.536244],\n            [-80.312393, 37.546239],\n            [-80.288766, 37.58196],\n            [-80.240272, 37.606961],\n            [-80.223386, 37.623185],\n            [-80.220984, 37.627767],\n            [-80.239288, 37.637672],\n            [-80.254431, 37.642352],\n            [-80.254469, 37.642333],\n            [-80.263281, 37.645082],\n            [-80.263291, 37.645101],\n            [-80.26483, 37.645526],\n            [-80.264874, 37.645511],\n            [-80.267228, 37.646011],\n            [-80.267455, 37.646108],\n            [-80.270352, 37.648929],\n            [-80.270323, 37.648982],\n            [-80.292258, 37.683732],\n            [-80.292337, 37.683976],\n            [-80.296138, 37.691783],\n            [-80.287107, 37.696403],\n            [-80.263936, 37.719137],\n            [-80.259342, 37.731205],\n            [-80.260313, 37.733517],\n            [-80.262765, 37.738336],\n            [-80.257411, 37.756084],\n            [-80.231551, 37.792591],\n            [-80.227092, 37.798886],\n            [-80.162202, 37.875122],\n            [-80.148964, 37.886057],\n            [-80.147316, 37.885936],\n            [-80.14613, 37.884453],\n            [-80.130464, 37.893194],\n            [-80.055278, 37.951702],\n            [-80.002507, 37.992767],\n            [-79.978427, 38.029082],\n            [-79.959844, 38.063697],\n            [-79.933911, 38.099168],\n            [-79.931034, 38.101402],\n            [-79.938394, 38.130563],\n            [-79.933751, 38.135508],\n            [-79.928747, 38.144436],\n            [-79.928683, 38.144928],\n            [-79.925512, 38.150237],\n            [-79.925251, 38.150465],\n            [-79.921026, 38.179954],\n            [-79.921196, 38.180378],\n            [-79.917061, 38.183741],\n            [-79.916174, 38.184386],\n            [-79.892345, 38.202397],\n            [-79.891999, 38.203378],\n            [-79.794568, 38.264856],\n            [-79.790134, 38.267654],\n            [-79.788945, 38.268703],\n            [-79.810115, 38.305037],\n            [-79.808711, 38.309429],\n            [-79.731661, 38.374143],\n            [-79.691377, 38.439558],\n            [-79.689544, 38.442511],\n            [-79.688962, 38.449538],\n            [-79.688205, 38.450476],\n            [-79.699006, 38.475148],\n            [-79.695565, 38.477842],\n            [-79.669128, 38.510883],\n            [-79.669128, 38.510975],\n            [-79.649075, 38.591515],\n            [-79.597955, 38.572767],\n            [-79.555471, 38.560217],\n            [-79.53687, 38.550917],\n            [-79.521469, 38.533918],\n            [-79.476638, 38.457228],\n            [-79.312276, 38.411876],\n            [-79.297758, 38.416438],\n            [-79.295712, 38.418129],\n            [-79.291813, 38.419627],\n            [-79.290529, 38.420757],\n            [-79.280263, 38.425475],\n            [-79.282663, 38.431021],\n            [-79.267414, 38.438322],\n            [-79.265327, 38.441772],\n            [-79.263376, 38.443762],\n            [-79.26291, 38.444586],\n            [-79.242024, 38.464332],\n            [-79.240059, 38.469841],\n            [-79.234408, 38.473011],\n            [-79.23162, 38.474041],\n            [-79.225839, 38.479446],\n            [-79.210026, 38.494231],\n            [-79.210008, 38.494283],\n            [-79.209703, 38.495574],\n            [-79.207873, 38.500122],\n            [-79.207884, 38.500428],\n            [-79.174881, 38.566314],\n            [-79.174512, 38.566531],\n            [-79.146974, 38.625641],\n            [-79.146741, 38.625819],\n            [-79.137012, 38.640655],\n            [-79.136374, 38.6424],\n            [-79.135546, 38.643715],\n            [-79.135472, 38.644057],\n            [-79.092271, 38.699208],\n            [-79.092555, 38.700149],\n            [-79.057253, 38.761413],\n            [-79.055354, 38.782213],\n            [-78.999752, 38.846162],\n            [-78.993997, 38.850102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"stroke-width\": 3,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.551513671875, 36.29741818650811],\n            [-76.475830078125, 36.29741818650811],\n            [-76.475830078125, 39.58875727696545],\n            [-81.551513671875, 39.58875727696545],\n            [-81.551513671875, 36.29741818650811]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/test/out/multi-linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#080\",\n        \"fill\": \"#080\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-79.2498779296875, 38.74123075381231],\n            [-78.6676025390625, 39.01918369029137],\n            [-78.629150390625, 38.6897975322717],\n            [-78.1402587890625, 39.031986028740086],\n            [-77.7667236328125, 38.5825261593533]\n          ],\n          [\n            [-79.189453125, 38.929502416386605],\n            [-78.6346435546875, 39.15988184949157],\n            [-78.4149169921875, 39.031986028740086],\n            [-78.0194091796875, 39.2832938689385],\n            [-77.5579833984375, 38.65119833229951]\n          ],\n          [\n            [-77.1240234375, 39.51251701659638],\n            [-77.618408203125, 39.24927084622338],\n            [-77.0855712890625, 38.886757140695906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-78.3929443359375, 38.8551245586553],\n            [-78.1402587890625, 39.031986028740086],\n            [-77.7667236328125, 38.5825261593533]\n          ],\n          [\n            [-78.3929443359375, 39.04594757541778],\n            [-78.0194091796875, 39.2832938689385],\n            [-77.5579833984375, 38.65119833229951]\n          ],\n          [\n            [-77.1240234375, 39.51251701659638],\n            [-77.618408203125, 39.24927084622338],\n            [-77.0855712890625, 38.886757140695906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"stroke-width\": 3,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78.3929443359375, 38.49229419236133],\n            [-76.9097900390625, 38.49229419236133],\n            [-76.9097900390625, 39.56758783088905],\n            [-78.3929443359375, 39.56758783088905],\n            [-78.3929443359375, 38.49229419236133]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/test/out/multi-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-78.869276, 38.762991],\n              [-78.993997, 38.850102],\n              [-78.999752, 38.846162],\n              [-79.055354, 38.782213],\n              [-79.057253, 38.761413],\n              [-79.092555, 38.700149],\n              [-79.092271, 38.699208],\n              [-79.135472, 38.644057],\n              [-79.135546, 38.643715],\n              [-79.136374, 38.6424],\n              [-79.137012, 38.640655],\n              [-79.146741, 38.625819],\n              [-79.146974, 38.625641],\n              [-79.174512, 38.566531],\n              [-79.174881, 38.566314],\n              [-79.207884, 38.500428],\n              [-79.207873, 38.500122],\n              [-79.209703, 38.495574],\n              [-79.210008, 38.494283],\n              [-79.210026, 38.494231],\n              [-79.225839, 38.479446],\n              [-79.23162, 38.474041],\n              [-79.234408, 38.473011],\n              [-79.240059, 38.469841],\n              [-79.242024, 38.464332],\n              [-79.26291, 38.444586],\n              [-79.263376, 38.443762],\n              [-79.265327, 38.441772],\n              [-79.267414, 38.438322],\n              [-79.282663, 38.431021],\n              [-79.280263, 38.425475],\n              [-79.290529, 38.420757],\n              [-79.291813, 38.419627],\n              [-79.295712, 38.418129],\n              [-79.297758, 38.416438],\n              [-79.312276, 38.411876],\n              [-79.476638, 38.457228],\n              [-79.521469, 38.533918],\n              [-79.53687, 38.550917],\n              [-79.555471, 38.560217],\n              [-79.597955, 38.572767],\n              [-79.649075, 38.591515],\n              [-79.669128, 38.510975],\n              [-79.669128, 38.510883],\n              [-79.695565, 38.477842],\n              [-79.699006, 38.475148],\n              [-79.688205, 38.450476],\n              [-79.688962, 38.449538],\n              [-79.689544, 38.442511],\n              [-79.691377, 38.439558],\n              [-79.731661, 38.374143],\n              [-79.808711, 38.309429],\n              [-79.810115, 38.305037],\n              [-79.788945, 38.268703],\n              [-79.790134, 38.267654],\n              [-79.794568, 38.264856],\n              [-79.891999, 38.203378],\n              [-79.892345, 38.202397],\n              [-79.916174, 38.184386],\n              [-79.917061, 38.183741],\n              [-79.921196, 38.180378],\n              [-79.921026, 38.179954],\n              [-79.925251, 38.150465],\n              [-79.925512, 38.150237],\n              [-79.928683, 38.144928],\n              [-79.928747, 38.144436],\n              [-79.933751, 38.135508],\n              [-79.938394, 38.130563],\n              [-79.931034, 38.101402],\n              [-79.933911, 38.099168],\n              [-79.959844, 38.063697],\n              [-79.978427, 38.029082],\n              [-80.002507, 37.992767],\n              [-80.055278, 37.951702],\n              [-80.130464, 37.893194],\n              [-80.14613, 37.884453],\n              [-80.147316, 37.885936],\n              [-80.148964, 37.886057],\n              [-80.162202, 37.875122],\n              [-80.227092, 37.798886],\n              [-80.231551, 37.792591],\n              [-80.257411, 37.756084],\n              [-80.262765, 37.738336],\n              [-80.260313, 37.733517],\n              [-80.259342, 37.731205],\n              [-80.263936, 37.719137],\n              [-80.287107, 37.696403],\n              [-80.296138, 37.691783],\n              [-80.292337, 37.683976],\n              [-80.292258, 37.683732],\n              [-80.270323, 37.648982],\n              [-80.270352, 37.648929],\n              [-80.267455, 37.646108],\n              [-80.267228, 37.646011],\n              [-80.264874, 37.645511],\n              [-80.26483, 37.645526],\n              [-80.263291, 37.645101],\n              [-80.263281, 37.645082],\n              [-80.254469, 37.642333],\n              [-80.254431, 37.642352],\n              [-80.239288, 37.637672],\n              [-80.220984, 37.627767],\n              [-80.223386, 37.623185],\n              [-80.240272, 37.606961],\n              [-80.288766, 37.58196],\n              [-80.312393, 37.546239],\n              [-80.330306, 37.536244],\n              [-80.314806, 37.500943],\n              [-80.320627, 37.49888],\n              [-80.425656, 37.449876],\n              [-80.443025, 37.438126],\n              [-80.46482, 37.426144],\n              [-80.475601, 37.422949],\n              [-80.494867, 37.43507],\n              [-80.511391, 37.481672],\n              [-80.622664, 37.433307],\n              [-80.770082, 37.372363],\n              [-80.776649, 37.383679],\n              [-80.776766, 37.384131],\n              [-80.798869, 37.395807],\n              [-80.811639, 37.407507],\n              [-80.85836, 37.428168],\n              [-80.858473, 37.428301],\n              [-80.859556, 37.429568],\n              [-80.859558, 37.429555],\n              [-80.862761, 37.411829],\n              [-80.872589, 37.372347],\n              [-80.849451, 37.346909],\n              [-80.900535, 37.315],\n              [-80.919259, 37.306163],\n              [-80.947896, 37.295872],\n              [-80.966556, 37.292158],\n              [-80.973889, 37.291444],\n              [-80.980044, 37.293118],\n              [-80.981322, 37.293465],\n              [-81.034652, 37.290751],\n              [-81.084012, 37.284401],\n              [-81.112596, 37.278497],\n              [-81.167029, 37.262881],\n              [-81.204774, 37.243013],\n              [-81.225104, 37.234874],\n              [-81.320105, 37.299323],\n              [-81.362156, 37.337687],\n              [-81.366315, 37.335927],\n              [-81.367052, 37.334504],\n              [-81.36809, 37.332423],\n              [-81.369379, 37.331827],\n              [-81.367599, 37.327569],\n              [-81.371315, 37.324115],\n              [-81.377349, 37.318447],\n              [-81.380159, 37.317838],\n              [-81.384127, 37.318596],\n              [-81.384914, 37.318832],\n              [-81.38581, 37.320085],\n              [-81.386727, 37.320474],\n              [-81.388132, 37.319903],\n              [-81.409196, 37.286071],\n              [-81.409729, 37.284837],\n              [-81.504168, 37.250115],\n              [-81.50488, 37.247697],\n              [-81.507325, 37.2338],\n              [-81.557315, 37.207697],\n              [-81.558353, 37.208145],\n              [-81.560625, 37.206663],\n              [-81.678603, 37.202467],\n              [-81.683544, 37.211452],\n              [-81.728194, 37.239823],\n              [-81.73332, 37.238127],\n              [-81.738378, 37.240917],\n              [-81.744291, 37.244178],\n              [-81.74342, 37.245858],\n              [-81.743505, 37.247601],\n              [-81.747656, 37.264329],\n              [-81.75129, 37.265131],\n              [-81.752123, 37.265568],\n              [-81.752912, 37.266614],\n              [-81.755012, 37.26772],\n              [-81.757531, 37.27001],\n              [-81.757714, 37.271124],\n              [-81.75773, 37.271934],\n              [-81.757631, 37.274003],\n              [-81.76022, 37.275254],\n              [-81.761752, 37.275713],\n              [-81.762776, 37.275391],\n              [-81.763836, 37.275218],\n              [-81.765195, 37.275099],\n              [-81.767837, 37.274216],\n              [-81.774684, 37.274807],\n              [-81.774747, 37.274847],\n              [-81.793425, 37.281674],\n              [-81.793639, 37.282188],\n              [-81.809184, 37.283003],\n              [-81.810559, 37.28298],\n              [-81.84231, 37.285556],\n              [-81.843167, 37.285586],\n              [-81.854059, 37.291352],\n              [-81.853488, 37.294763],\n              [-81.854465, 37.299937],\n              [-81.853978, 37.300418],\n              [-81.86476, 37.308404],\n              [-81.865219, 37.308839],\n              [-81.873213, 37.325065],\n              [-81.878343, 37.328837],\n              [-81.878713, 37.331753],\n              [-81.879601, 37.332074],\n              [-81.880886, 37.331146],\n              [-81.885075, 37.330665],\n              [-81.886952, 37.330725],\n              [-81.887722, 37.331156],\n              [-81.892876, 37.330134],\n              [-81.893773, 37.330105],\n              [-81.894768, 37.331381],\n              [-81.894797, 37.332012],\n              [-81.895489, 37.332022],\n              [-81.896001, 37.331967],\n              [-81.899459, 37.340277],\n              [-81.899495, 37.341102],\n              [-81.902992, 37.34234],\n              [-81.903795, 37.34305],\n              [-81.905945, 37.342775],\n              [-81.906368, 37.34276],\n              [-81.907322, 37.343119],\n              [-81.907895, 37.343783],\n              [-81.910875, 37.348729],\n              [-81.911487, 37.348839],\n              [-81.920711, 37.355416],\n              [-81.921571, 37.356423],\n              [-81.925643, 37.357316],\n              [-81.926589, 37.358942],\n              [-81.929915, 37.366589],\n              [-81.930194, 37.366728],\n              [-81.933895, 37.372747],\n              [-81.92749, 37.413251],\n              [-81.935621, 37.438397],\n              [-81.949367, 37.445687],\n              [-81.968795, 37.451496],\n              [-81.987006, 37.454878],\n              [-81.99227, 37.460916],\n              [-81.996578, 37.476705],\n              [-81.992916, 37.482969],\n              [-81.94264, 37.508844],\n              [-81.92787, 37.512118],\n              [-81.968297, 37.537798],\n              [-82.291908, 37.311642],\n              [-82.305874, 37.3011],\n              [-82.310793, 37.297387],\n              [-82.350948, 37.267077],\n              [-82.510826, 37.218091],\n              [-82.553549, 37.200867],\n              [-82.565329, 37.196118],\n              [-82.565375, 37.196092],\n              [-82.624878, 37.162932],\n              [-82.721941, 37.105689],\n              [-82.720597, 37.081833],\n              [-82.722472, 37.045101],\n              [-82.771795, 37.015716],\n              [-82.777368, 37.015279],\n              [-82.788897, 37.00816],\n              [-82.789092, 37.007995],\n              [-82.790462, 37.007263],\n              [-82.79089, 37.00676],\n              [-82.800531, 37.007944],\n              [-82.815748, 37.007196],\n              [-82.818006, 37.006161],\n              [-82.830588, 37.000945],\n              [-82.829125, 36.997541],\n              [-82.830802, 36.993445],\n              [-82.833843, 36.991973],\n              [-82.836008, 36.988837],\n              [-82.838549, 36.987027],\n              [-82.840051, 36.987113],\n              [-82.851397, 36.984497],\n              [-82.852614, 36.984963],\n              [-82.862926, 36.979975],\n              [-82.864909, 36.97901],\n              [-82.866019, 36.978272],\n              [-82.866689, 36.978052],\n              [-82.867535, 36.977518],\n              [-82.868455, 36.976481],\n              [-82.869183, 36.974183],\n              [-82.869183, 36.974182],\n              [-82.870274, 36.965993],\n              [-82.87023, 36.965498],\n              [-82.867358, 36.963182],\n              [-82.865404, 36.958084],\n              [-82.864211, 36.957983],\n              [-82.862866, 36.957765],\n              [-82.860534, 36.956015],\n              [-82.858443, 36.954036],\n              [-82.855705, 36.953808],\n              [-82.856099, 36.952471],\n              [-82.860633, 36.94584],\n              [-82.861282, 36.944848],\n              [-82.861684, 36.939316],\n              [-82.860537, 36.937439],\n              [-82.858784, 36.933065],\n              [-82.858461, 36.932717],\n              [-82.861943, 36.924236],\n              [-82.863468, 36.922308],\n              [-82.872136, 36.913456],\n              [-82.873777, 36.912299],\n              [-82.885618, 36.900415],\n              [-82.91169, 36.874248],\n              [-82.911824, 36.874243],\n              [-82.973395, 36.859097],\n              [-83.07259, 36.854589],\n              [-83.099792, 36.824889],\n              [-83.131694, 36.781488],\n              [-83.131245, 36.767105],\n              [-83.125655, 36.761407],\n              [-83.125728, 36.761276],\n              [-83.127833, 36.750828],\n              [-83.136395, 36.743088],\n              [-83.167396, 36.739187],\n              [-83.199698, 36.737487],\n              [-83.342804, 36.701286],\n              [-83.353613, 36.696699],\n              [-83.354606, 36.696153],\n              [-83.460808, 36.664885],\n              [-83.461013, 36.664916],\n              [-83.498011, 36.670485],\n              [-83.527212, 36.665984],\n              [-83.649513, 36.616683],\n              [-83.675413, 36.600814],\n              [-83.670141, 36.600797],\n              [-83.670128, 36.600764],\n              [-83.472108, 36.597284],\n              [-83.2763, 36.598187],\n              [-83.250304, 36.593935],\n              [-83.249899, 36.593898],\n              [-83.248933, 36.593827],\n              [-83.028357, 36.593893],\n              [-83.02725, 36.593847],\n              [-82.985087, 36.593829],\n              [-82.830433, 36.593761],\n              [-82.69578, 36.593698],\n              [-82.679879, 36.593698],\n              [-82.609176, 36.594099],\n              [-82.561074, 36.5948],\n              [-82.559774, 36.5948],\n              [-82.554294, 36.594876],\n              [-82.293814, 36.595565],\n              [-82.243274, 36.595699],\n              [-82.226653, 36.595743],\n              [-82.225716, 36.595744],\n              [-82.223445, 36.595721],\n              [-82.221713, 36.595814],\n              [-82.211005, 36.59586],\n              [-82.210497, 36.595772],\n              [-82.188491, 36.595179],\n              [-82.18074, 36.594928],\n              [-82.177247, 36.594768],\n              [-82.173982, 36.594607],\n              [-82.150727, 36.594673],\n              [-82.148569, 36.594718],\n              [-82.14607, 36.594712],\n              [-81.934144, 36.594213],\n              [-81.922644, 36.616213],\n              [-81.826742, 36.614215],\n              [-81.6469, 36.611918],\n              [-81.677535, 36.588117],\n              [-81.60697, 36.587094],\n              [-81.521032, 36.58052],\n              [-81.353322, 36.574723],\n              [-81.353169, 36.574724],\n              [-81.307511, 36.575024],\n              [-81.061866, 36.56702],\n              [-81.058844, 36.566976],\n              [-80.945988, 36.563196],\n              [-80.944338, 36.563058],\n              [-80.901836, 36.561754],\n              [-80.901726, 36.561751],\n              [-80.837954, 36.559131],\n              [-80.837641, 36.559118],\n              [-80.837089, 36.559154],\n              [-80.744101, 36.561686],\n              [-80.687539, 36.561411],\n              [-80.612158, 36.558127],\n              [-80.4401, 36.55063],\n              [-80.432628, 36.550302],\n              [-80.431605, 36.550219],\n              [-80.228263, 36.543867],\n              [-80.225408, 36.543748],\n              [-80.171636, 36.543219],\n              [-80.169535, 36.54319],\n              [-80.053455, 36.542623],\n              [-80.027269, 36.542495],\n              [-79.967511, 36.542502],\n              [-79.966979, 36.542475],\n              [-79.920239, 36.542365],\n              [-79.714855, 36.541884],\n              [-79.667309, 36.541772],\n              [-79.666827, 36.541772],\n              [-79.510961, 36.54074],\n              [-79.510647, 36.540738],\n              [-79.470047, 36.541025],\n              [-79.445961, 36.541195],\n              [-79.445687, 36.541218],\n              [-79.342696, 36.541382],\n              [-79.218638, 36.541579],\n              [-79.20948, 36.541594],\n              [-79.208686, 36.541571],\n              [-79.137936, 36.541739],\n              [-79.126078, 36.541533],\n              [-79.124736, 36.541568],\n              [-78.971814, 36.542123],\n              [-78.970577, 36.542154],\n              [-78.942254, 36.542079],\n              [-78.942009, 36.542113],\n              [-78.91542, 36.541974],\n              [-78.914543, 36.541972],\n              [-78.7963, 36.541713],\n              [-78.76543, 36.541727],\n              [-78.758392, 36.541852],\n              [-78.734122, 36.541902],\n              [-78.670051, 36.542035],\n              [-78.663317, 36.542011],\n              [-78.533013, 36.541004],\n              [-78.529722, 36.540981],\n              [-78.471022, 36.542307],\n              [-78.470792, 36.542316],\n              [-78.45697, 36.542474],\n              [-78.441199, 36.542687],\n              [-78.436333, 36.542666],\n              [-78.323912, 36.543809],\n              [-78.246681, 36.544341],\n              [-78.245462, 36.544411],\n              [-78.133323, 36.543847],\n              [-78.132911, 36.543811],\n              [-78.046202, 36.544168],\n              [-78.03942, 36.544196],\n              [-78.038938, 36.544173],\n              [-77.899771, 36.544663],\n              [-77.882357, 36.544737],\n              [-77.87528, 36.544754],\n              [-77.767117, 36.544752],\n              [-77.296875, 36.544746],\n              [-77.24969, 36.544745],\n              [-77.1645, 36.54633],\n              [-76.916048, 36.543815],\n              [-76.916001, 36.543818],\n              [-76.915384, 36.543856],\n              [-76.807078, 36.550606],\n              [-76.781296, 36.550659],\n              [-76.541687, 36.550312],\n              [-76.541391, 36.550312],\n              [-76.491497, 36.550365],\n              [-76.313215, 36.550551],\n              [-76.313196, 36.550551],\n              [-76.12236, 36.550621],\n              [-76.034751, 36.550653],\n              [-76.02675, 36.550553],\n              [-75.957648, 36.550553],\n              [-75.955748, 36.550553],\n              [-75.953447, 36.550553],\n              [-75.952847, 36.550553],\n              [-75.922046, 36.550654],\n              [-75.911446, 36.550654],\n              [-75.909046, 36.550654],\n              [-75.904745, 36.550654],\n              [-75.903445, 36.550654],\n              [-75.894145, 36.550754],\n              [-75.893245, 36.550654],\n              [-75.891945, 36.550754],\n              [-75.886545, 36.550754],\n              [-75.885945, 36.550754],\n              [-75.880644, 36.550754],\n              [-75.879744, 36.550754],\n              [-75.867044, 36.550754],\n              [-75.874145, 36.583853],\n              [-75.890946, 36.630753],\n              [-75.921748, 36.692051],\n              [-75.94955, 36.76115],\n              [-75.965451, 36.812449],\n              [-75.972151, 36.842268],\n              [-75.991552, 36.910847],\n              [-75.996252, 36.922047],\n              [-76.007553, 36.929047],\n              [-76.013753, 36.930746],\n              [-76.033454, 36.931946],\n              [-76.043054, 36.927547],\n              [-76.058154, 36.916947],\n              [-76.087955, 36.908647],\n              [-76.095508, 36.908817],\n              [-76.139557, 36.923047],\n              [-76.177019, 36.92929],\n              [-76.189959, 36.931447],\n              [-76.22166, 36.939547],\n              [-76.234961, 36.945147],\n              [-76.267962, 36.964547],\n              [-76.285063, 36.968747],\n              [-76.297663, 36.968147],\n              [-76.299364, 36.965547],\n              [-76.315867, 36.955351],\n              [-76.322764, 36.959147],\n              [-76.327365, 36.959447],\n              [-76.330765, 36.938647],\n              [-76.328864, 36.918447],\n              [-76.333158, 36.917293],\n              [-76.344663, 36.919313],\n              [-76.345569, 36.924531],\n              [-76.353765, 36.922747],\n              [-76.385867, 36.923247],\n              [-76.387567, 36.899547],\n              [-76.406908, 36.897507],\n              [-76.407507, 36.897444],\n              [-76.43122, 36.904532],\n              [-76.441605, 36.906116],\n              [-76.447413, 36.90322],\n              [-76.453941, 36.89274],\n              [-76.45329, 36.887031],\n              [-76.454692, 36.884077],\n              [-76.469914, 36.882898],\n              [-76.483369, 36.896239],\n              [-76.482135, 36.901108],\n              [-76.482407, 36.917364],\n              [-76.484107, 36.928916],\n              [-76.487559, 36.952372],\n              [-76.500355, 36.965212],\n              [-76.513363, 36.968057],\n              [-76.521006, 36.973187],\n              [-76.524142, 36.978316],\n              [-76.522971, 36.981085],\n              [-76.524853, 36.983833],\n              [-76.551246, 36.998946],\n              [-76.562923, 37.003796],\n              [-76.565803, 37.007493],\n              [-76.576617, 37.021374],\n              [-76.577531, 37.022548],\n              [-76.57816, 37.022982],\n              [-76.579236, 37.023726],\n              [-76.579393, 37.023835],\n              [-76.584478, 37.027349],\n              [-76.586491, 37.02874],\n              [-76.612124, 37.035604],\n              [-76.646013, 37.036228],\n              [-76.653998, 37.039172],\n              [-76.662558, 37.045748],\n              [-76.66835, 37.05506],\n              [-76.669822, 37.06426],\n              [-76.669118, 37.068132],\n              [-76.668295, 37.072656],\n              [-76.667646, 37.076228],\n              [-76.667219, 37.077149],\n              [-76.666526, 37.078643],\n              [-76.66555, 37.080746],\n              [-76.659394, 37.094019],\n              [-76.65811, 37.096787],\n              [-76.657703, 37.101161],\n              [-76.657101, 37.107617],\n              [-76.656894, 37.109843],\n              [-76.66375, 37.129979],\n              [-76.665641, 37.135534],\n              [-76.665833, 37.136098],\n              [-76.666542, 37.138179],\n              [-76.669604, 37.140534],\n              [-76.671588, 37.14206],\n              [-76.67147, 37.158739],\n              [-76.66867, 37.166771],\n              [-76.66427, 37.171027],\n              [-76.663774, 37.173875],\n              [-76.669886, 37.183571],\n              [-76.685614, 37.198851],\n              [-76.691918, 37.195731],\n              [-76.692926, 37.186147],\n              [-76.696735, 37.174403],\n              [-76.715295, 37.148035],\n              [-76.73032, 37.145395],\n              [-76.73728, 37.146164],\n              [-76.747632, 37.150548],\n              [-76.756899, 37.161582],\n              [-76.796905, 37.189404],\n              [-76.802511, 37.198308],\n              [-76.803198, 37.201513],\n              [-76.801023, 37.206043],\n              [-76.791555, 37.207564],\n              [-76.780532, 37.209336],\n              [-76.773752, 37.206061],\n              [-76.757765, 37.191658],\n              [-76.75047, 37.190098],\n              [-76.74304, 37.192611],\n              [-76.74, 37.195379],\n              [-76.73432, 37.204211],\n              [-76.730951, 37.213813],\n              [-76.698943, 37.219059],\n              [-76.693373, 37.221228],\n              [-76.689166, 37.222866],\n              [-76.649869, 37.220914],\n              [-76.641085, 37.216002],\n              [-76.639608, 37.214783],\n              [-76.629868, 37.206738],\n              [-76.623292, 37.198738],\n              [-76.621113, 37.195103],\n              [-76.619962, 37.193184],\n              [-76.61934, 37.192146],\n              [-76.618008, 37.186429],\n              [-76.617537, 37.184409],\n              [-76.616804, 37.18126],\n              [-76.616268, 37.178962],\n              [-76.614221, 37.174335],\n              [-76.613599, 37.172931],\n              [-76.612517, 37.170486],\n              [-76.611018, 37.167097],\n              [-76.610972, 37.166994],\n              [-76.606684, 37.166674],\n              [-76.604476, 37.160034],\n              [-76.617084, 37.144498],\n              [-76.622252, 37.142146],\n              [-76.62478, 37.127091],\n              [-76.618252, 37.119347],\n              [-76.579499, 37.096627],\n              [-76.567931, 37.080467],\n              [-76.564219, 37.077507],\n              [-76.555066, 37.075859],\n              [-76.536875, 37.083942],\n              [-76.528997, 37.079388],\n              [-76.526203, 37.077773],\n              [-76.526573, 37.070047],\n              [-76.527973, 37.068247],\n              [-76.526273, 37.062947],\n              [-76.518242, 37.055351],\n              [-76.512289, 37.054858],\n              [-76.509339, 37.053173],\n              [-76.507614, 37.052188],\n              [-76.46949, 37.030414],\n              [-76.464471, 37.027547],\n              [-76.448231, 37.007705],\n              [-76.449891, 37.004868],\n              [-76.452461, 37.004603],\n              [-76.452118, 36.998163],\n              [-76.428869, 36.969947],\n              [-76.418969, 36.964047],\n              [-76.411768, 36.962847],\n              [-76.408568, 36.969147],\n              [-76.396368, 36.982347],\n              [-76.387711, 36.989671],\n              [-76.383367, 36.993347],\n              [-76.373567, 36.998347],\n              [-76.356366, 37.002947],\n              [-76.348066, 37.006747],\n              [-76.340666, 37.015246],\n              [-76.34011, 37.015212],\n              [-76.329531, 37.014556],\n              [-76.318065, 37.013846],\n              [-76.314624, 37.00933],\n              [-76.315008, 37.001683],\n              [-76.312048, 37.000371],\n              [-76.304272, 37.001378],\n              [-76.300352, 37.00885],\n              [-76.292863, 37.035145],\n              [-76.271262, 37.084544],\n              [-76.274463, 37.094544],\n              [-76.287236, 37.117453],\n              [-76.292344, 37.126615],\n              [-76.311088, 37.138495],\n              [-76.324353, 37.142895],\n              [-76.330481, 37.141727],\n              [-76.334017, 37.144223],\n              [-76.340129, 37.151823],\n              [-76.34405, 37.160367],\n              [-76.344898, 37.164479],\n              [-76.343234, 37.166207],\n              [-76.348658, 37.170655],\n              [-76.35969, 37.16858],\n              [-76.375255, 37.16084],\n              [-76.381379, 37.155711],\n              [-76.394756, 37.157568],\n              [-76.399659, 37.160272],\n              [-76.397883, 37.164415],\n              [-76.391252, 37.179887],\n              [-76.389284, 37.193503],\n              [-76.396052, 37.201087],\n              [-76.3936, 37.214049],\n              [-76.389793, 37.222981],\n              [-76.394132, 37.22515],\n              [-76.471799, 37.216016],\n              [-76.494008, 37.225408],\n              [-76.50364, 37.233856],\n              [-76.4989, 37.241015],\n              [-76.493302, 37.24947],\n              [-76.48284, 37.254831],\n              [-76.475927, 37.250543],\n              [-76.429141, 37.25331],\n              [-76.421765, 37.255198],\n              [-76.417173, 37.26395],\n              [-76.392788, 37.264973],\n              [-76.36229, 37.270226],\n              [-76.349489, 37.273963],\n              [-76.352556, 37.278334],\n              [-76.369029, 37.279311],\n              [-76.381075, 37.28534],\n              [-76.385603, 37.294108],\n              [-76.38777, 37.30767],\n              [-76.406388, 37.332924],\n              [-76.434965, 37.354524],\n              [-76.445333, 37.36646],\n              [-76.437525, 37.37975],\n              [-76.422503, 37.381355],\n              [-76.418176, 37.385064],\n              [-76.418719, 37.3978],\n              [-76.415167, 37.402133],\n              [-76.404756, 37.400213],\n              [-76.393125, 37.398068],\n              [-76.393958, 37.39594],\n              [-76.391437, 37.390284],\n              [-76.387112, 37.385061],\n              [-76.366751, 37.374495],\n              [-76.337476, 37.364014],\n              [-76.31205, 37.338088],\n              [-76.308581, 37.329366],\n              [-76.291324, 37.324145],\n              [-76.282555, 37.319107],\n              [-76.275552, 37.309964],\n              [-76.272005, 37.322194],\n              [-76.272888, 37.335174],\n              [-76.264847, 37.357399],\n              [-76.262407, 37.360786],\n              [-76.258277, 37.36202],\n              [-76.24846, 37.375135],\n              [-76.245283, 37.386839],\n              [-76.246617, 37.404122],\n              [-76.250454, 37.421886],\n              [-76.252415, 37.447274],\n              [-76.265056, 37.481365],\n              [-76.281043, 37.507821],\n              [-76.288167, 37.514118],\n              [-76.293599, 37.516499],\n              [-76.297651, 37.515424],\n              [-76.298456, 37.512677],\n              [-76.296445, 37.511235],\n              [-76.297739, 37.506863],\n              [-76.306952, 37.497488],\n              [-76.32947, 37.49492],\n              [-76.352678, 37.504913],\n              [-76.359378, 37.513426],\n              [-76.360474, 37.51924],\n              [-76.355084, 37.527364],\n              [-76.348992, 37.536548],\n              [-76.339989, 37.53833],\n              [-76.330598, 37.536391],\n              [-76.302762, 37.551295],\n              [-76.29796, 37.557636],\n              [-76.300144, 37.561734],\n              [-76.332641, 37.570042],\n              [-76.357835, 37.573699],\n              [-76.383188, 37.573056],\n              [-76.410781, 37.581815],\n              [-76.420252, 37.598686],\n              [-76.435474, 37.612807],\n              [-76.527188, 37.611315],\n              [-76.533777, 37.61253],\n              [-76.542666, 37.616857],\n              [-76.574049, 37.646781],\n              [-76.583143, 37.661986],\n              [-76.579591, 37.671508],\n              [-76.597868, 37.702918],\n              [-76.598073, 37.70912],\n              [-76.595943, 37.712989],\n              [-76.597213, 37.717269],\n              [-76.606466, 37.724819],\n              [-76.61997, 37.731271],\n              [-76.621433, 37.737973],\n              [-76.617373, 37.742347],\n              [-76.61971, 37.744795],\n              [-76.639962, 37.750941],\n              [-76.663887, 37.751887],\n              [-76.677002, 37.7561],\n              [-76.680922, 37.759647],\n              [-76.683372, 37.765507],\n              [-76.683359, 37.770258],\n              [-76.683343, 37.775783],\n              [-76.681901, 37.778118],\n              [-76.683775, 37.781391],\n              [-76.689773, 37.78519],\n              [-76.715498, 37.785873],\n              [-76.723863, 37.788503],\n              [-76.734309, 37.79866],\n              [-76.7512, 37.824141],\n              [-76.766328, 37.840437],\n              [-76.782826, 37.863184],\n              [-76.784618, 37.869569],\n              [-76.77539, 37.874306],\n              [-76.765711, 37.879274],\n              [-76.747552, 37.875864],\n              [-76.738395, 37.865373],\n              [-76.733046, 37.852009],\n              [-76.72718, 37.842263],\n              [-76.722156, 37.83668],\n              [-76.701606, 37.822677],\n              [-76.692747, 37.82277],\n              [-76.680197, 37.825654],\n              [-76.658302, 37.806815],\n              [-76.651413, 37.796239],\n              [-76.642276, 37.792317],\n              [-76.615351, 37.780759],\n              [-76.602024, 37.772731],\n              [-76.595939, 37.77168],\n              [-76.593835, 37.772848],\n              [-76.584289, 37.76889],\n              [-76.576387, 37.757493],\n              [-76.560476, 37.727827],\n              [-76.54005, 37.704432],\n              [-76.537228, 37.698892],\n              [-76.535302, 37.687516],\n              [-76.537698, 37.66893],\n              [-76.536548, 37.663574],\n              [-76.510187, 37.642324],\n              [-76.501522, 37.643762],\n              [-76.497564, 37.647056],\n              [-76.491799, 37.663614],\n              [-76.489576, 37.666201],\n              [-76.472392, 37.665772],\n              [-76.443254, 37.652347],\n              [-76.399236, 37.628636],\n              [-76.390054, 37.630326],\n              [-76.381106, 37.627003],\n              [-76.36232, 37.610368],\n              [-76.309174, 37.621892],\n              [-76.28037, 37.613715],\n              [-76.279447, 37.618225],\n              [-76.287959, 37.631771],\n              [-76.292534, 37.636098],\n              [-76.306464, 37.642005],\n              [-76.332562, 37.645817],\n              [-76.339892, 37.655966],\n              [-76.324808, 37.676983],\n              [-76.320216, 37.680666],\n              [-76.315161, 37.68472],\n              [-76.312079, 37.684651],\n              [-76.302545, 37.689],\n              [-76.300067, 37.695364],\n              [-76.302803, 37.704474],\n              [-76.312858, 37.720338],\n              [-76.304917, 37.729913],\n              [-76.312108, 37.750522],\n              [-76.306489, 37.788646],\n              [-76.310307, 37.794849],\n              [-76.307482, 37.81235],\n              [-76.293525, 37.822717],\n              [-76.284904, 37.822308],\n              [-76.281985, 37.818068],\n              [-76.282592, 37.814109],\n              [-76.280544, 37.812597],\n              [-76.275178, 37.812664],\n              [-76.266057, 37.8174],\n              [-76.251358, 37.833072],\n              [-76.245072, 37.861918],\n              [-76.236725, 37.889174],\n              [-76.265998, 37.91138],\n              [-76.343848, 37.947345],\n              [-76.360211, 37.952329],\n              [-76.391439, 37.958742],\n              [-76.416299, 37.966828],\n              [-76.427487, 37.977038],\n              [-76.462542, 37.998572],\n              [-76.465291, 38.010226],\n              [-76.469343, 38.013544],\n              [-76.491998, 38.017222],\n              [-76.516547, 38.026566],\n              [-76.519536, 38.034814],\n              [-76.522354, 38.04259],\n              [-76.535919, 38.069532],\n              [-76.543155, 38.076971],\n              [-76.579497, 38.09487],\n              [-76.600937, 38.110084],\n              [-76.604131, 38.128771],\n              [-76.613939, 38.148587],\n              [-76.629476, 38.15305],\n              [-76.638983, 38.151476],\n              [-76.643448, 38.14825],\n              [-76.665127, 38.147638],\n              [-76.684892, 38.156497],\n              [-76.701297, 38.155718],\n              [-76.704048, 38.149264],\n              [-76.721722, 38.137635],\n              [-76.738938, 38.14651],\n              [-76.740278, 38.152824],\n              [-76.743064, 38.156988],\n              [-76.749685, 38.162114],\n              [-76.760241, 38.166581],\n              [-76.788445, 38.169199],\n              [-76.802968, 38.167988],\n              [-76.824274, 38.163639],\n              [-76.838795, 38.163476],\n              [-76.875272, 38.172207],\n              [-76.910832, 38.197073],\n              [-76.916922, 38.199751],\n              [-76.937134, 38.202384],\n              [-76.962311, 38.214075],\n              [-76.967335, 38.227185],\n              [-76.966553, 38.229542],\n              [-76.962375, 38.230093],\n              [-76.957417, 38.236341],\n              [-76.957796, 38.243183],\n              [-76.96215, 38.256486],\n              [-76.981372, 38.274214],\n              [-76.990255, 38.273935],\n              [-76.99767, 38.278047],\n              [-77.026304, 38.302685],\n              [-77.030683, 38.311623],\n              [-77.020947, 38.329273],\n              [-77.016932, 38.341697],\n              [-77.011827, 38.374554],\n              [-77.024866, 38.386791],\n              [-77.043526, 38.400548],\n              [-77.051437, 38.399083],\n              [-77.056032, 38.3962],\n              [-77.069956, 38.377895],\n              [-77.08481, 38.368297],\n              [-77.094665, 38.367715],\n              [-77.104717, 38.369655],\n              [-77.138224, 38.367917],\n              [-77.155191, 38.351047],\n              [-77.162692, 38.345994],\n              [-77.17934, 38.341915],\n              [-77.199433, 38.34089],\n              [-77.240072, 38.331598],\n              [-77.265295, 38.333165],\n              [-77.279633, 38.339444],\n              [-77.286202, 38.347024],\n              [-77.286202, 38.347025],\n              [-77.28835, 38.351286],\n              [-77.288145, 38.359477],\n              [-77.296077, 38.369797],\n              [-77.317288, 38.383576],\n              [-77.314848, 38.389579],\n              [-77.312201, 38.390958],\n              [-77.310719, 38.397669],\n              [-77.319036, 38.417803],\n              [-77.32544, 38.44885],\n              [-77.322622, 38.467131],\n              [-77.310334, 38.493926],\n              [-77.302457, 38.504683],\n              [-77.300776, 38.506978],\n              [-77.298844, 38.508724],\n              [-77.29582, 38.511457],\n              [-77.291103, 38.515721],\n              [-77.283503, 38.525221],\n              [-77.276303, 38.53962],\n              [-77.276603, 38.54712],\n              [-77.26083, 38.56533],\n              [-77.265304, 38.580319],\n              [-77.26443, 38.582845],\n              [-77.247003, 38.590618],\n              [-77.246441, 38.599532],\n              [-77.245104, 38.620717],\n              [-77.248904, 38.628617],\n              [-77.246704, 38.635217],\n              [-77.240604, 38.638917],\n              [-77.22235, 38.638091],\n              [-77.216303, 38.637817],\n              [-77.205103, 38.623917],\n              [-77.204302, 38.617817],\n              [-77.202002, 38.617217],\n              [-77.174902, 38.624217],\n              [-77.157501, 38.636417],\n              [-77.1302, 38.635017],\n              [-77.135901, 38.649817],\n              [-77.132501, 38.673816],\n              [-77.121101, 38.686616],\n              [-77.1059, 38.696815],\n              [-77.086113, 38.705792],\n              [-77.074599, 38.711015],\n              [-77.05991, 38.734419],\n              [-77.041398, 38.763914],\n              [-77.039239, 38.7852],\n              [-77.038598, 38.791513],\n              [-77.032986, 38.8395],\n              [-77.031698, 38.850512],\n              [-77.040599, 38.871212],\n              [-77.068199, 38.899811],\n              [-77.0902, 38.904211],\n              [-77.1012, 38.911111],\n              [-77.119863, 38.934265],\n              [-77.1199, 38.934311],\n              [-77.137701, 38.95531],\n              [-77.148179, 38.965002],\n              [-77.166901, 38.96811],\n              [-77.197502, 38.96681],\n              [-77.221502, 38.97131],\n              [-77.235403, 38.97661],\n              [-77.249803, 38.985909],\n              [-77.255703, 39.002409],\n              [-77.251803, 39.011409],\n              [-77.261403, 39.031009],\n              [-77.291605, 39.045408],\n              [-77.328002, 39.058554],\n              [-77.340287, 39.062991],\n              [-77.375079, 39.061297],\n              [-77.42318, 39.066878],\n              [-77.458202, 39.073723],\n              [-77.519929, 39.120925],\n              [-77.524559, 39.127821],\n              [-77.527282, 39.146236],\n              [-77.516426, 39.170891],\n              [-77.510631, 39.178484],\n              [-77.505162, 39.18205],\n              [-77.485971, 39.185665],\n              [-77.478596, 39.189168],\n              [-77.458884, 39.219826],\n              [-77.458779, 39.22028],\n              [-77.45768, 39.22502],\n              [-77.46021, 39.228359],\n              [-77.484605, 39.245941],\n              [-77.511222, 39.2535],\n              [-77.534461, 39.262361],\n              [-77.543228, 39.266937],\n              [-77.545846, 39.271535],\n              [-77.560854, 39.286152],\n              [-77.592739, 39.30129],\n              [-77.667749, 39.318129],\n              [-77.677505, 39.318699],\n              [-77.719029, 39.321125],\n              [-77.750267, 39.289284],\n              [-77.753357, 39.280331],\n              [-77.75306, 39.277971],\n              [-77.753105, 39.27734],\n              [-77.755193, 39.275191],\n              [-77.755698, 39.274575],\n              [-77.758412, 39.269197],\n              [-77.758733, 39.268114],\n              [-77.761217, 39.263721],\n              [-77.761768, 39.263031],\n              [-77.768, 39.257657],\n              [-77.768992, 39.256417],\n              [-77.767277, 39.24938],\n              [-77.771415, 39.236776],\n              [-77.822182, 39.139985],\n              [-77.828157, 39.132329],\n              [-78.032841, 39.264403],\n              [-78.033183, 39.264624],\n              [-78.033185, 39.264626],\n              [-78.228766, 39.391233],\n              [-78.347087, 39.466012],\n              [-78.362267, 39.357784],\n              [-78.34048, 39.353492],\n              [-78.35894, 39.319484],\n              [-78.360035, 39.317771],\n              [-78.399785, 39.244129],\n              [-78.399669, 39.243874],\n              [-78.423968, 39.212049],\n              [-78.427911, 39.208611],\n              [-78.429803, 39.207014],\n              [-78.431167, 39.205744],\n              [-78.43213, 39.204717],\n              [-78.437053, 39.199766],\n              [-78.438651, 39.198049],\n              [-78.426722, 39.188903],\n              [-78.41074, 39.171983],\n              [-78.418377, 39.156656],\n              [-78.439429, 39.132146],\n              [-78.459869, 39.113351],\n              [-78.508132, 39.08863],\n              [-78.544111, 39.056676],\n              [-78.571901, 39.031995],\n              [-78.565837, 39.026303],\n              [-78.554222, 39.019672],\n              [-78.557647, 39.013189],\n              [-78.601655, 38.964603],\n              [-78.710949, 38.910175],\n              [-78.714135, 38.911176],\n              [-78.716956, 38.916273],\n              [-78.719755, 38.922135],\n              [-78.719806, 38.922638],\n              [-78.757278, 38.903203],\n              [-78.779198, 38.892298],\n              [-78.788031, 38.885123],\n              [-78.808181, 38.856175],\n              [-78.835191, 38.811499],\n              [-78.869276, 38.762991]\n            ]\n          ],\n          [\n            [\n              [-79.617919921875, 40.588928169693745],\n              [-78.94775390625, 38.993572058209466],\n              [-78.5302734375, 39.342794408952386],\n              [-78.277587890625, 39.78321267821705],\n              [-77.84912109375, 39.36827914916011],\n              [-77.18994140625, 39.80853604144591],\n              [-78.585205078125, 41.02135510866602],\n              [-79.617919921875, 40.588928169693745]\n            ]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"stroke\": \"#080\",\n        \"fill\": \"#080\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-78.869276, 38.762991],\n              [-78.993997, 38.850102],\n              [-78.999752, 38.846162],\n              [-79.055354, 38.782213],\n              [-79.057253, 38.761413],\n              [-79.092555, 38.700149],\n              [-79.092271, 38.699208],\n              [-79.135472, 38.644057],\n              [-79.135546, 38.643715],\n              [-79.136374, 38.6424],\n              [-79.137012, 38.640655],\n              [-79.146741, 38.625819],\n              [-79.146974, 38.625641],\n              [-79.174512, 38.566531],\n              [-79.174881, 38.566314],\n              [-79.207884, 38.500428],\n              [-79.207873, 38.500122],\n              [-79.209703, 38.495574],\n              [-79.210008, 38.494283],\n              [-79.210026, 38.494231],\n              [-79.225839, 38.479446],\n              [-79.23162, 38.474041],\n              [-79.234408, 38.473011],\n              [-79.240059, 38.469841],\n              [-79.242024, 38.464332],\n              [-79.26291, 38.444586],\n              [-79.263376, 38.443762],\n              [-79.265327, 38.441772],\n              [-79.267414, 38.438322],\n              [-79.282663, 38.431021],\n              [-79.280263, 38.425475],\n              [-79.290529, 38.420757],\n              [-79.291813, 38.419627],\n              [-79.295712, 38.418129],\n              [-79.297758, 38.416438],\n              [-79.312276, 38.411876],\n              [-79.476638, 38.457228],\n              [-79.521469, 38.533918],\n              [-79.53687, 38.550917],\n              [-79.555471, 38.560217],\n              [-79.597955, 38.572767],\n              [-79.649075, 38.591515],\n              [-79.669128, 38.510975],\n              [-79.669128, 38.510883],\n              [-79.695565, 38.477842],\n              [-79.699006, 38.475148],\n              [-79.688205, 38.450476],\n              [-79.688962, 38.449538],\n              [-79.689544, 38.442511],\n              [-79.691377, 38.439558],\n              [-79.731661, 38.374143],\n              [-79.808711, 38.309429],\n              [-79.810115, 38.305037],\n              [-79.788945, 38.268703],\n              [-79.790134, 38.267654],\n              [-79.794568, 38.264856],\n              [-79.891999, 38.203378],\n              [-79.892345, 38.202397],\n              [-79.916174, 38.184386],\n              [-79.917061, 38.183741],\n              [-79.921196, 38.180378],\n              [-79.921026, 38.179954],\n              [-79.925251, 38.150465],\n              [-79.925512, 38.150237],\n              [-79.928683, 38.144928],\n              [-79.928747, 38.144436],\n              [-79.933751, 38.135508],\n              [-79.938394, 38.130563],\n              [-79.931034, 38.101402],\n              [-79.933911, 38.099168],\n              [-79.959844, 38.063697],\n              [-79.978427, 38.029082],\n              [-80.002507, 37.992767],\n              [-80.055278, 37.951702],\n              [-80.1123046875, 37.90732515547775],\n              [-80.1123046875, 36.542910454969096],\n              [-80.053455, 36.542623],\n              [-80.027269, 36.542495],\n              [-79.967511, 36.542502],\n              [-79.966979, 36.542475],\n              [-79.920239, 36.542365],\n              [-79.714855, 36.541884],\n              [-79.667309, 36.541772],\n              [-79.666827, 36.541772],\n              [-79.510961, 36.54074],\n              [-79.510647, 36.540738],\n              [-79.470047, 36.541025],\n              [-79.445961, 36.541195],\n              [-79.445687, 36.541218],\n              [-79.342696, 36.541382],\n              [-79.218638, 36.541579],\n              [-79.20948, 36.541594],\n              [-79.208686, 36.541571],\n              [-79.137936, 36.541739],\n              [-79.126078, 36.541533],\n              [-79.124736, 36.541568],\n              [-78.971814, 36.542123],\n              [-78.970577, 36.542154],\n              [-78.942254, 36.542079],\n              [-78.942009, 36.542113],\n              [-78.91542, 36.541974],\n              [-78.914543, 36.541972],\n              [-78.7963, 36.541713],\n              [-78.76543, 36.541727],\n              [-78.758392, 36.541852],\n              [-78.734122, 36.541902],\n              [-78.670051, 36.542035],\n              [-78.663317, 36.542011],\n              [-78.533013, 36.541004],\n              [-78.529722, 36.540981],\n              [-78.471022, 36.542307],\n              [-78.470792, 36.542316],\n              [-78.45697, 36.542474],\n              [-78.441199, 36.542687],\n              [-78.436333, 36.542666],\n              [-78.323912, 36.543809],\n              [-78.246681, 36.544341],\n              [-78.245462, 36.544411],\n              [-78.133323, 36.543847],\n              [-78.132911, 36.543811],\n              [-78.046202, 36.544168],\n              [-78.03942, 36.544196],\n              [-78.038938, 36.544173],\n              [-77.899771, 36.544663],\n              [-77.882357, 36.544737],\n              [-77.87528, 36.544754],\n              [-77.767117, 36.544752],\n              [-77.296875, 36.544746],\n              [-77.24969, 36.544745],\n              [-77.1645, 36.54633],\n              [-76.959228515625, 36.54425210252603],\n              [-76.959228515625, 38.21264364102839],\n              [-76.962311, 38.214075],\n              [-76.967335, 38.227185],\n              [-76.966553, 38.229542],\n              [-76.962375, 38.230093],\n              [-76.959228515625, 38.23405815417003],\n              [-76.959228515625, 38.24755983862182],\n              [-76.96215, 38.256486],\n              [-76.981372, 38.274214],\n              [-76.990255, 38.273935],\n              [-76.99767, 38.278047],\n              [-77.026304, 38.302685],\n              [-77.030683, 38.311623],\n              [-77.020947, 38.329273],\n              [-77.016932, 38.341697],\n              [-77.011827, 38.374554],\n              [-77.024866, 38.386791],\n              [-77.043526, 38.400548],\n              [-77.051437, 38.399083],\n              [-77.056032, 38.3962],\n              [-77.069956, 38.377895],\n              [-77.08481, 38.368297],\n              [-77.094665, 38.367715],\n              [-77.104717, 38.369655],\n              [-77.138224, 38.367917],\n              [-77.155191, 38.351047],\n              [-77.162692, 38.345994],\n              [-77.17934, 38.341915],\n              [-77.199433, 38.34089],\n              [-77.240072, 38.331598],\n              [-77.265295, 38.333165],\n              [-77.279633, 38.339444],\n              [-77.286202, 38.347024],\n              [-77.286202, 38.347025],\n              [-77.28835, 38.351286],\n              [-77.288145, 38.359477],\n              [-77.296077, 38.369797],\n              [-77.317288, 38.383576],\n              [-77.314848, 38.389579],\n              [-77.312201, 38.390958],\n              [-77.310719, 38.397669],\n              [-77.319036, 38.417803],\n              [-77.32544, 38.44885],\n              [-77.322622, 38.467131],\n              [-77.310334, 38.493926],\n              [-77.302457, 38.504683],\n              [-77.300776, 38.506978],\n              [-77.298844, 38.508724],\n              [-77.29582, 38.511457],\n              [-77.291103, 38.515721],\n              [-77.283503, 38.525221],\n              [-77.276303, 38.53962],\n              [-77.276603, 38.54712],\n              [-77.26083, 38.56533],\n              [-77.265304, 38.580319],\n              [-77.26443, 38.582845],\n              [-77.247003, 38.590618],\n              [-77.246441, 38.599532],\n              [-77.245104, 38.620717],\n              [-77.248904, 38.628617],\n              [-77.246704, 38.635217],\n              [-77.240604, 38.638917],\n              [-77.22235, 38.638091],\n              [-77.216303, 38.637817],\n              [-77.205103, 38.623917],\n              [-77.204302, 38.617817],\n              [-77.202002, 38.617217],\n              [-77.174902, 38.624217],\n              [-77.157501, 38.636417],\n              [-77.1302, 38.635017],\n              [-77.135901, 38.649817],\n              [-77.132501, 38.673816],\n              [-77.121101, 38.686616],\n              [-77.1059, 38.696815],\n              [-77.086113, 38.705792],\n              [-77.074599, 38.711015],\n              [-77.05991, 38.734419],\n              [-77.041398, 38.763914],\n              [-77.039239, 38.7852],\n              [-77.038598, 38.791513],\n              [-77.032986, 38.8395],\n              [-77.031698, 38.850512],\n              [-77.040599, 38.871212],\n              [-77.068199, 38.899811],\n              [-77.0902, 38.904211],\n              [-77.1012, 38.911111],\n              [-77.119863, 38.934265],\n              [-77.1199, 38.934311],\n              [-77.137701, 38.95531],\n              [-77.148179, 38.965002],\n              [-77.166901, 38.96811],\n              [-77.197502, 38.96681],\n              [-77.221502, 38.97131],\n              [-77.235403, 38.97661],\n              [-77.249803, 38.985909],\n              [-77.255703, 39.002409],\n              [-77.251803, 39.011409],\n              [-77.261403, 39.031009],\n              [-77.291605, 39.045408],\n              [-77.328002, 39.058554],\n              [-77.340287, 39.062991],\n              [-77.375079, 39.061297],\n              [-77.42318, 39.066878],\n              [-77.458202, 39.073723],\n              [-77.519929, 39.120925],\n              [-77.524559, 39.127821],\n              [-77.527282, 39.146236],\n              [-77.516426, 39.170891],\n              [-77.510631, 39.178484],\n              [-77.505162, 39.18205],\n              [-77.485971, 39.185665],\n              [-77.478596, 39.189168],\n              [-77.458884, 39.219826],\n              [-77.458779, 39.22028],\n              [-77.45768, 39.22502],\n              [-77.46021, 39.228359],\n              [-77.484605, 39.245941],\n              [-77.511222, 39.2535],\n              [-77.534461, 39.262361],\n              [-77.543228, 39.266937],\n              [-77.545846, 39.271535],\n              [-77.560854, 39.286152],\n              [-77.592739, 39.30129],\n              [-77.667749, 39.318129],\n              [-77.677505, 39.318699],\n              [-77.719029, 39.321125],\n              [-77.750267, 39.289284],\n              [-77.753357, 39.280331],\n              [-77.75306, 39.277971],\n              [-77.753105, 39.27734],\n              [-77.755193, 39.275191],\n              [-77.755698, 39.274575],\n              [-77.758412, 39.269197],\n              [-77.758733, 39.268114],\n              [-77.761217, 39.263721],\n              [-77.761768, 39.263031],\n              [-77.768, 39.257657],\n              [-77.768992, 39.256417],\n              [-77.767277, 39.24938],\n              [-77.771415, 39.236776],\n              [-77.822182, 39.139985],\n              [-77.828157, 39.132329],\n              [-78.032841, 39.264403],\n              [-78.033183, 39.264624],\n              [-78.033185, 39.264626],\n              [-78.228766, 39.391233],\n              [-78.347087, 39.466012],\n              [-78.362267, 39.357784],\n              [-78.34048, 39.353492],\n              [-78.35894, 39.319484],\n              [-78.360035, 39.317771],\n              [-78.399785, 39.244129],\n              [-78.399669, 39.243874],\n              [-78.423968, 39.212049],\n              [-78.427911, 39.208611],\n              [-78.429803, 39.207014],\n              [-78.431167, 39.205744],\n              [-78.43213, 39.204717],\n              [-78.437053, 39.199766],\n              [-78.438651, 39.198049],\n              [-78.426722, 39.188903],\n              [-78.41074, 39.171983],\n              [-78.418377, 39.156656],\n              [-78.439429, 39.132146],\n              [-78.459869, 39.113351],\n              [-78.508132, 39.08863],\n              [-78.544111, 39.056676],\n              [-78.571901, 39.031995],\n              [-78.565837, 39.026303],\n              [-78.554222, 39.019672],\n              [-78.557647, 39.013189],\n              [-78.601655, 38.964603],\n              [-78.710949, 38.910175],\n              [-78.714135, 38.911176],\n              [-78.716956, 38.916273],\n              [-78.719755, 38.922135],\n              [-78.719806, 38.922638],\n              [-78.757278, 38.903203],\n              [-78.779198, 38.892298],\n              [-78.788031, 38.885123],\n              [-78.808181, 38.856175],\n              [-78.835191, 38.811499],\n              [-78.869276, 38.762991]\n            ]\n          ],\n          [\n            [\n              [-79.617919921875, 40.588928169693745],\n              [-78.94775390625, 38.993572058209466],\n              [-78.5302734375, 39.342794408952386],\n              [-78.277587890625, 39.78321267821705],\n              [-77.84912109375, 39.36827914916011],\n              [-77.18994140625, 39.80853604144591],\n              [-78.585205078125, 41.02135510866602],\n              [-79.617919921875, 40.588928169693745]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"stroke-width\": 3,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.1123046875, 36.2354121683998],\n            [-76.959228515625, 36.2354121683998],\n            [-76.959228515625, 41.22824901518529],\n            [-80.1123046875, 41.22824901518529],\n            [-80.1123046875, 36.2354121683998]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/test/out/polygon-crossing-hole.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78.869276, 38.762991],\n            [-78.993997, 38.850102],\n            [-78.999752, 38.846162],\n            [-79.055354, 38.782213],\n            [-79.057253, 38.761413],\n            [-79.092555, 38.700149],\n            [-79.092271, 38.699208],\n            [-79.135472, 38.644057],\n            [-79.135546, 38.643715],\n            [-79.136374, 38.6424],\n            [-79.137012, 38.640655],\n            [-79.146741, 38.625819],\n            [-79.146974, 38.625641],\n            [-79.174512, 38.566531],\n            [-79.174881, 38.566314],\n            [-79.207884, 38.500428],\n            [-79.207873, 38.500122],\n            [-79.209703, 38.495574],\n            [-79.210008, 38.494283],\n            [-79.210026, 38.494231],\n            [-79.225839, 38.479446],\n            [-79.23162, 38.474041],\n            [-79.234408, 38.473011],\n            [-79.240059, 38.469841],\n            [-79.242024, 38.464332],\n            [-79.26291, 38.444586],\n            [-79.263376, 38.443762],\n            [-79.265327, 38.441772],\n            [-79.267414, 38.438322],\n            [-79.282663, 38.431021],\n            [-79.280263, 38.425475],\n            [-79.290529, 38.420757],\n            [-79.291813, 38.419627],\n            [-79.295712, 38.418129],\n            [-79.297758, 38.416438],\n            [-79.312276, 38.411876],\n            [-79.476638, 38.457228],\n            [-79.521469, 38.533918],\n            [-79.53687, 38.550917],\n            [-79.555471, 38.560217],\n            [-79.597955, 38.572767],\n            [-79.649075, 38.591515],\n            [-79.669128, 38.510975],\n            [-79.669128, 38.510883],\n            [-79.695565, 38.477842],\n            [-79.699006, 38.475148],\n            [-79.688205, 38.450476],\n            [-79.688962, 38.449538],\n            [-79.689544, 38.442511],\n            [-79.691377, 38.439558],\n            [-79.731661, 38.374143],\n            [-79.808711, 38.309429],\n            [-79.810115, 38.305037],\n            [-79.788945, 38.268703],\n            [-79.790134, 38.267654],\n            [-79.794568, 38.264856],\n            [-79.891999, 38.203378],\n            [-79.892345, 38.202397],\n            [-79.916174, 38.184386],\n            [-79.917061, 38.183741],\n            [-79.921196, 38.180378],\n            [-79.921026, 38.179954],\n            [-79.925251, 38.150465],\n            [-79.925512, 38.150237],\n            [-79.928683, 38.144928],\n            [-79.928747, 38.144436],\n            [-79.933751, 38.135508],\n            [-79.938394, 38.130563],\n            [-79.931034, 38.101402],\n            [-79.933911, 38.099168],\n            [-79.959844, 38.063697],\n            [-79.978427, 38.029082],\n            [-80.002507, 37.992767],\n            [-80.055278, 37.951702],\n            [-80.130464, 37.893194],\n            [-80.14613, 37.884453],\n            [-80.147316, 37.885936],\n            [-80.148964, 37.886057],\n            [-80.162202, 37.875122],\n            [-80.227092, 37.798886],\n            [-80.231551, 37.792591],\n            [-80.257411, 37.756084],\n            [-80.262765, 37.738336],\n            [-80.260313, 37.733517],\n            [-80.259342, 37.731205],\n            [-80.263936, 37.719137],\n            [-80.287107, 37.696403],\n            [-80.296138, 37.691783],\n            [-80.292337, 37.683976],\n            [-80.292258, 37.683732],\n            [-80.270323, 37.648982],\n            [-80.270352, 37.648929],\n            [-80.267455, 37.646108],\n            [-80.267228, 37.646011],\n            [-80.264874, 37.645511],\n            [-80.26483, 37.645526],\n            [-80.263291, 37.645101],\n            [-80.263281, 37.645082],\n            [-80.254469, 37.642333],\n            [-80.254431, 37.642352],\n            [-80.239288, 37.637672],\n            [-80.220984, 37.627767],\n            [-80.223386, 37.623185],\n            [-80.240272, 37.606961],\n            [-80.288766, 37.58196],\n            [-80.312393, 37.546239],\n            [-80.330306, 37.536244],\n            [-80.314806, 37.500943],\n            [-80.320627, 37.49888],\n            [-80.425656, 37.449876],\n            [-80.443025, 37.438126],\n            [-80.46482, 37.426144],\n            [-80.475601, 37.422949],\n            [-80.494867, 37.43507],\n            [-80.511391, 37.481672],\n            [-80.622664, 37.433307],\n            [-80.770082, 37.372363],\n            [-80.776649, 37.383679],\n            [-80.776766, 37.384131],\n            [-80.798869, 37.395807],\n            [-80.811639, 37.407507],\n            [-80.85836, 37.428168],\n            [-80.858473, 37.428301],\n            [-80.859556, 37.429568],\n            [-80.859558, 37.429555],\n            [-80.862761, 37.411829],\n            [-80.872589, 37.372347],\n            [-80.849451, 37.346909],\n            [-80.900535, 37.315],\n            [-80.919259, 37.306163],\n            [-80.947896, 37.295872],\n            [-80.966556, 37.292158],\n            [-80.973889, 37.291444],\n            [-80.980044, 37.293118],\n            [-80.981322, 37.293465],\n            [-81.034652, 37.290751],\n            [-81.084012, 37.284401],\n            [-81.112596, 37.278497],\n            [-81.167029, 37.262881],\n            [-81.204774, 37.243013],\n            [-81.225104, 37.234874],\n            [-81.320105, 37.299323],\n            [-81.362156, 37.337687],\n            [-81.366315, 37.335927],\n            [-81.367052, 37.334504],\n            [-81.36809, 37.332423],\n            [-81.369379, 37.331827],\n            [-81.367599, 37.327569],\n            [-81.371315, 37.324115],\n            [-81.377349, 37.318447],\n            [-81.380159, 37.317838],\n            [-81.384127, 37.318596],\n            [-81.384914, 37.318832],\n            [-81.38581, 37.320085],\n            [-81.386727, 37.320474],\n            [-81.388132, 37.319903],\n            [-81.409196, 37.286071],\n            [-81.409729, 37.284837],\n            [-81.504168, 37.250115],\n            [-81.50488, 37.247697],\n            [-81.507325, 37.2338],\n            [-81.557315, 37.207697],\n            [-81.558353, 37.208145],\n            [-81.560625, 37.206663],\n            [-81.678603, 37.202467],\n            [-81.683544, 37.211452],\n            [-81.728194, 37.239823],\n            [-81.73332, 37.238127],\n            [-81.738378, 37.240917],\n            [-81.744291, 37.244178],\n            [-81.74342, 37.245858],\n            [-81.743505, 37.247601],\n            [-81.747656, 37.264329],\n            [-81.75129, 37.265131],\n            [-81.752123, 37.265568],\n            [-81.752912, 37.266614],\n            [-81.755012, 37.26772],\n            [-81.757531, 37.27001],\n            [-81.757714, 37.271124],\n            [-81.75773, 37.271934],\n            [-81.757631, 37.274003],\n            [-81.76022, 37.275254],\n            [-81.761752, 37.275713],\n            [-81.762776, 37.275391],\n            [-81.763836, 37.275218],\n            [-81.765195, 37.275099],\n            [-81.767837, 37.274216],\n            [-81.774684, 37.274807],\n            [-81.774747, 37.274847],\n            [-81.793425, 37.281674],\n            [-81.793639, 37.282188],\n            [-81.809184, 37.283003],\n            [-81.810559, 37.28298],\n            [-81.84231, 37.285556],\n            [-81.843167, 37.285586],\n            [-81.854059, 37.291352],\n            [-81.853488, 37.294763],\n            [-81.854465, 37.299937],\n            [-81.853978, 37.300418],\n            [-81.86476, 37.308404],\n            [-81.865219, 37.308839],\n            [-81.873213, 37.325065],\n            [-81.878343, 37.328837],\n            [-81.878713, 37.331753],\n            [-81.879601, 37.332074],\n            [-81.880886, 37.331146],\n            [-81.885075, 37.330665],\n            [-81.886952, 37.330725],\n            [-81.887722, 37.331156],\n            [-81.892876, 37.330134],\n            [-81.893773, 37.330105],\n            [-81.894768, 37.331381],\n            [-81.894797, 37.332012],\n            [-81.895489, 37.332022],\n            [-81.896001, 37.331967],\n            [-81.899459, 37.340277],\n            [-81.899495, 37.341102],\n            [-81.902992, 37.34234],\n            [-81.903795, 37.34305],\n            [-81.905945, 37.342775],\n            [-81.906368, 37.34276],\n            [-81.907322, 37.343119],\n            [-81.907895, 37.343783],\n            [-81.910875, 37.348729],\n            [-81.911487, 37.348839],\n            [-81.920711, 37.355416],\n            [-81.921571, 37.356423],\n            [-81.925643, 37.357316],\n            [-81.926589, 37.358942],\n            [-81.929915, 37.366589],\n            [-81.930194, 37.366728],\n            [-81.933895, 37.372747],\n            [-81.92749, 37.413251],\n            [-81.935621, 37.438397],\n            [-81.949367, 37.445687],\n            [-81.968795, 37.451496],\n            [-81.987006, 37.454878],\n            [-81.99227, 37.460916],\n            [-81.996578, 37.476705],\n            [-81.992916, 37.482969],\n            [-81.94264, 37.508844],\n            [-81.92787, 37.512118],\n            [-81.968297, 37.537798],\n            [-82.291908, 37.311642],\n            [-82.305874, 37.3011],\n            [-82.310793, 37.297387],\n            [-82.350948, 37.267077],\n            [-82.510826, 37.218091],\n            [-82.553549, 37.200867],\n            [-82.565329, 37.196118],\n            [-82.565375, 37.196092],\n            [-82.624878, 37.162932],\n            [-82.721941, 37.105689],\n            [-82.720597, 37.081833],\n            [-82.722472, 37.045101],\n            [-82.771795, 37.015716],\n            [-82.777368, 37.015279],\n            [-82.788897, 37.00816],\n            [-82.789092, 37.007995],\n            [-82.790462, 37.007263],\n            [-82.79089, 37.00676],\n            [-82.800531, 37.007944],\n            [-82.815748, 37.007196],\n            [-82.818006, 37.006161],\n            [-82.830588, 37.000945],\n            [-82.829125, 36.997541],\n            [-82.830802, 36.993445],\n            [-82.833843, 36.991973],\n            [-82.836008, 36.988837],\n            [-82.838549, 36.987027],\n            [-82.840051, 36.987113],\n            [-82.851397, 36.984497],\n            [-82.852614, 36.984963],\n            [-82.862926, 36.979975],\n            [-82.864909, 36.97901],\n            [-82.866019, 36.978272],\n            [-82.866689, 36.978052],\n            [-82.867535, 36.977518],\n            [-82.868455, 36.976481],\n            [-82.869183, 36.974183],\n            [-82.869183, 36.974182],\n            [-82.870274, 36.965993],\n            [-82.87023, 36.965498],\n            [-82.867358, 36.963182],\n            [-82.865404, 36.958084],\n            [-82.864211, 36.957983],\n            [-82.862866, 36.957765],\n            [-82.860534, 36.956015],\n            [-82.858443, 36.954036],\n            [-82.855705, 36.953808],\n            [-82.856099, 36.952471],\n            [-82.860633, 36.94584],\n            [-82.861282, 36.944848],\n            [-82.861684, 36.939316],\n            [-82.860537, 36.937439],\n            [-82.858784, 36.933065],\n            [-82.858461, 36.932717],\n            [-82.861943, 36.924236],\n            [-82.863468, 36.922308],\n            [-82.872136, 36.913456],\n            [-82.873777, 36.912299],\n            [-82.885618, 36.900415],\n            [-82.91169, 36.874248],\n            [-82.911824, 36.874243],\n            [-82.973395, 36.859097],\n            [-83.07259, 36.854589],\n            [-83.099792, 36.824889],\n            [-83.131694, 36.781488],\n            [-83.131245, 36.767105],\n            [-83.125655, 36.761407],\n            [-83.125728, 36.761276],\n            [-83.127833, 36.750828],\n            [-83.136395, 36.743088],\n            [-83.167396, 36.739187],\n            [-83.199698, 36.737487],\n            [-83.342804, 36.701286],\n            [-83.353613, 36.696699],\n            [-83.354606, 36.696153],\n            [-83.460808, 36.664885],\n            [-83.461013, 36.664916],\n            [-83.498011, 36.670485],\n            [-83.527212, 36.665984],\n            [-83.649513, 36.616683],\n            [-83.675413, 36.600814],\n            [-83.670141, 36.600797],\n            [-83.670128, 36.600764],\n            [-83.472108, 36.597284],\n            [-83.2763, 36.598187],\n            [-83.250304, 36.593935],\n            [-83.249899, 36.593898],\n            [-83.248933, 36.593827],\n            [-83.028357, 36.593893],\n            [-83.02725, 36.593847],\n            [-82.985087, 36.593829],\n            [-82.830433, 36.593761],\n            [-82.69578, 36.593698],\n            [-82.679879, 36.593698],\n            [-82.609176, 36.594099],\n            [-82.561074, 36.5948],\n            [-82.559774, 36.5948],\n            [-82.554294, 36.594876],\n            [-82.293814, 36.595565],\n            [-82.243274, 36.595699],\n            [-82.226653, 36.595743],\n            [-82.225716, 36.595744],\n            [-82.223445, 36.595721],\n            [-82.221713, 36.595814],\n            [-82.211005, 36.59586],\n            [-82.210497, 36.595772],\n            [-82.188491, 36.595179],\n            [-82.18074, 36.594928],\n            [-82.177247, 36.594768],\n            [-82.173982, 36.594607],\n            [-82.150727, 36.594673],\n            [-82.148569, 36.594718],\n            [-82.14607, 36.594712],\n            [-81.934144, 36.594213],\n            [-81.922644, 36.616213],\n            [-81.826742, 36.614215],\n            [-81.6469, 36.611918],\n            [-81.677535, 36.588117],\n            [-81.60697, 36.587094],\n            [-81.521032, 36.58052],\n            [-81.353322, 36.574723],\n            [-81.353169, 36.574724],\n            [-81.307511, 36.575024],\n            [-81.061866, 36.56702],\n            [-81.058844, 36.566976],\n            [-80.945988, 36.563196],\n            [-80.944338, 36.563058],\n            [-80.901836, 36.561754],\n            [-80.901726, 36.561751],\n            [-80.837954, 36.559131],\n            [-80.837641, 36.559118],\n            [-80.837089, 36.559154],\n            [-80.744101, 36.561686],\n            [-80.687539, 36.561411],\n            [-80.612158, 36.558127],\n            [-80.4401, 36.55063],\n            [-80.432628, 36.550302],\n            [-80.431605, 36.550219],\n            [-80.228263, 36.543867],\n            [-80.225408, 36.543748],\n            [-80.171636, 36.543219],\n            [-80.169535, 36.54319],\n            [-80.053455, 36.542623],\n            [-80.027269, 36.542495],\n            [-79.967511, 36.542502],\n            [-79.966979, 36.542475],\n            [-79.920239, 36.542365],\n            [-79.714855, 36.541884],\n            [-79.667309, 36.541772],\n            [-79.666827, 36.541772],\n            [-79.510961, 36.54074],\n            [-79.510647, 36.540738],\n            [-79.470047, 36.541025],\n            [-79.445961, 36.541195],\n            [-79.445687, 36.541218],\n            [-79.342696, 36.541382],\n            [-79.218638, 36.541579],\n            [-79.20948, 36.541594],\n            [-79.208686, 36.541571],\n            [-79.137936, 36.541739],\n            [-79.126078, 36.541533],\n            [-79.124736, 36.541568],\n            [-78.971814, 36.542123],\n            [-78.970577, 36.542154],\n            [-78.942254, 36.542079],\n            [-78.942009, 36.542113],\n            [-78.91542, 36.541974],\n            [-78.914543, 36.541972],\n            [-78.7963, 36.541713],\n            [-78.76543, 36.541727],\n            [-78.758392, 36.541852],\n            [-78.734122, 36.541902],\n            [-78.670051, 36.542035],\n            [-78.663317, 36.542011],\n            [-78.533013, 36.541004],\n            [-78.529722, 36.540981],\n            [-78.471022, 36.542307],\n            [-78.470792, 36.542316],\n            [-78.45697, 36.542474],\n            [-78.441199, 36.542687],\n            [-78.436333, 36.542666],\n            [-78.323912, 36.543809],\n            [-78.246681, 36.544341],\n            [-78.245462, 36.544411],\n            [-78.133323, 36.543847],\n            [-78.132911, 36.543811],\n            [-78.046202, 36.544168],\n            [-78.03942, 36.544196],\n            [-78.038938, 36.544173],\n            [-77.899771, 36.544663],\n            [-77.882357, 36.544737],\n            [-77.87528, 36.544754],\n            [-77.767117, 36.544752],\n            [-77.296875, 36.544746],\n            [-77.24969, 36.544745],\n            [-77.1645, 36.54633],\n            [-76.916048, 36.543815],\n            [-76.916001, 36.543818],\n            [-76.915384, 36.543856],\n            [-76.807078, 36.550606],\n            [-76.781296, 36.550659],\n            [-76.541687, 36.550312],\n            [-76.541391, 36.550312],\n            [-76.491497, 36.550365],\n            [-76.313215, 36.550551],\n            [-76.313196, 36.550551],\n            [-76.12236, 36.550621],\n            [-76.034751, 36.550653],\n            [-76.02675, 36.550553],\n            [-75.957648, 36.550553],\n            [-75.955748, 36.550553],\n            [-75.953447, 36.550553],\n            [-75.952847, 36.550553],\n            [-75.922046, 36.550654],\n            [-75.911446, 36.550654],\n            [-75.909046, 36.550654],\n            [-75.904745, 36.550654],\n            [-75.903445, 36.550654],\n            [-75.894145, 36.550754],\n            [-75.893245, 36.550654],\n            [-75.891945, 36.550754],\n            [-75.886545, 36.550754],\n            [-75.885945, 36.550754],\n            [-75.880644, 36.550754],\n            [-75.879744, 36.550754],\n            [-75.867044, 36.550754],\n            [-75.874145, 36.583853],\n            [-75.890946, 36.630753],\n            [-75.921748, 36.692051],\n            [-75.94955, 36.76115],\n            [-75.965451, 36.812449],\n            [-75.972151, 36.842268],\n            [-75.991552, 36.910847],\n            [-75.996252, 36.922047],\n            [-76.007553, 36.929047],\n            [-76.013753, 36.930746],\n            [-76.033454, 36.931946],\n            [-76.043054, 36.927547],\n            [-76.058154, 36.916947],\n            [-76.087955, 36.908647],\n            [-76.095508, 36.908817],\n            [-76.139557, 36.923047],\n            [-76.177019, 36.92929],\n            [-76.189959, 36.931447],\n            [-76.22166, 36.939547],\n            [-76.234961, 36.945147],\n            [-76.267962, 36.964547],\n            [-76.285063, 36.968747],\n            [-76.297663, 36.968147],\n            [-76.299364, 36.965547],\n            [-76.315867, 36.955351],\n            [-76.322764, 36.959147],\n            [-76.327365, 36.959447],\n            [-76.330765, 36.938647],\n            [-76.328864, 36.918447],\n            [-76.333158, 36.917293],\n            [-76.344663, 36.919313],\n            [-76.345569, 36.924531],\n            [-76.353765, 36.922747],\n            [-76.385867, 36.923247],\n            [-76.387567, 36.899547],\n            [-76.406908, 36.897507],\n            [-76.407507, 36.897444],\n            [-76.43122, 36.904532],\n            [-76.441605, 36.906116],\n            [-76.447413, 36.90322],\n            [-76.453941, 36.89274],\n            [-76.45329, 36.887031],\n            [-76.454692, 36.884077],\n            [-76.469914, 36.882898],\n            [-76.483369, 36.896239],\n            [-76.482135, 36.901108],\n            [-76.482407, 36.917364],\n            [-76.484107, 36.928916],\n            [-76.487559, 36.952372],\n            [-76.500355, 36.965212],\n            [-76.513363, 36.968057],\n            [-76.521006, 36.973187],\n            [-76.524142, 36.978316],\n            [-76.522971, 36.981085],\n            [-76.524853, 36.983833],\n            [-76.551246, 36.998946],\n            [-76.562923, 37.003796],\n            [-76.565803, 37.007493],\n            [-76.576617, 37.021374],\n            [-76.577531, 37.022548],\n            [-76.57816, 37.022982],\n            [-76.579236, 37.023726],\n            [-76.579393, 37.023835],\n            [-76.584478, 37.027349],\n            [-76.586491, 37.02874],\n            [-76.612124, 37.035604],\n            [-76.646013, 37.036228],\n            [-76.653998, 37.039172],\n            [-76.662558, 37.045748],\n            [-76.66835, 37.05506],\n            [-76.669822, 37.06426],\n            [-76.669118, 37.068132],\n            [-76.668295, 37.072656],\n            [-76.667646, 37.076228],\n            [-76.667219, 37.077149],\n            [-76.666526, 37.078643],\n            [-76.66555, 37.080746],\n            [-76.659394, 37.094019],\n            [-76.65811, 37.096787],\n            [-76.657703, 37.101161],\n            [-76.657101, 37.107617],\n            [-76.656894, 37.109843],\n            [-76.66375, 37.129979],\n            [-76.665641, 37.135534],\n            [-76.665833, 37.136098],\n            [-76.666542, 37.138179],\n            [-76.669604, 37.140534],\n            [-76.671588, 37.14206],\n            [-76.67147, 37.158739],\n            [-76.66867, 37.166771],\n            [-76.66427, 37.171027],\n            [-76.663774, 37.173875],\n            [-76.669886, 37.183571],\n            [-76.685614, 37.198851],\n            [-76.691918, 37.195731],\n            [-76.692926, 37.186147],\n            [-76.696735, 37.174403],\n            [-76.715295, 37.148035],\n            [-76.73032, 37.145395],\n            [-76.73728, 37.146164],\n            [-76.747632, 37.150548],\n            [-76.756899, 37.161582],\n            [-76.796905, 37.189404],\n            [-76.802511, 37.198308],\n            [-76.803198, 37.201513],\n            [-76.801023, 37.206043],\n            [-76.791555, 37.207564],\n            [-76.780532, 37.209336],\n            [-76.773752, 37.206061],\n            [-76.757765, 37.191658],\n            [-76.75047, 37.190098],\n            [-76.74304, 37.192611],\n            [-76.74, 37.195379],\n            [-76.73432, 37.204211],\n            [-76.730951, 37.213813],\n            [-76.698943, 37.219059],\n            [-76.693373, 37.221228],\n            [-76.689166, 37.222866],\n            [-76.649869, 37.220914],\n            [-76.641085, 37.216002],\n            [-76.639608, 37.214783],\n            [-76.629868, 37.206738],\n            [-76.623292, 37.198738],\n            [-76.621113, 37.195103],\n            [-76.619962, 37.193184],\n            [-76.61934, 37.192146],\n            [-76.618008, 37.186429],\n            [-76.617537, 37.184409],\n            [-76.616804, 37.18126],\n            [-76.616268, 37.178962],\n            [-76.614221, 37.174335],\n            [-76.613599, 37.172931],\n            [-76.612517, 37.170486],\n            [-76.611018, 37.167097],\n            [-76.610972, 37.166994],\n            [-76.606684, 37.166674],\n            [-76.604476, 37.160034],\n            [-76.617084, 37.144498],\n            [-76.622252, 37.142146],\n            [-76.62478, 37.127091],\n            [-76.618252, 37.119347],\n            [-76.579499, 37.096627],\n            [-76.567931, 37.080467],\n            [-76.564219, 37.077507],\n            [-76.555066, 37.075859],\n            [-76.536875, 37.083942],\n            [-76.528997, 37.079388],\n            [-76.526203, 37.077773],\n            [-76.526573, 37.070047],\n            [-76.527973, 37.068247],\n            [-76.526273, 37.062947],\n            [-76.518242, 37.055351],\n            [-76.512289, 37.054858],\n            [-76.509339, 37.053173],\n            [-76.507614, 37.052188],\n            [-76.46949, 37.030414],\n            [-76.464471, 37.027547],\n            [-76.448231, 37.007705],\n            [-76.449891, 37.004868],\n            [-76.452461, 37.004603],\n            [-76.452118, 36.998163],\n            [-76.428869, 36.969947],\n            [-76.418969, 36.964047],\n            [-76.411768, 36.962847],\n            [-76.408568, 36.969147],\n            [-76.396368, 36.982347],\n            [-76.387711, 36.989671],\n            [-76.383367, 36.993347],\n            [-76.373567, 36.998347],\n            [-76.356366, 37.002947],\n            [-76.348066, 37.006747],\n            [-76.340666, 37.015246],\n            [-76.34011, 37.015212],\n            [-76.329531, 37.014556],\n            [-76.318065, 37.013846],\n            [-76.314624, 37.00933],\n            [-76.315008, 37.001683],\n            [-76.312048, 37.000371],\n            [-76.304272, 37.001378],\n            [-76.300352, 37.00885],\n            [-76.292863, 37.035145],\n            [-76.271262, 37.084544],\n            [-76.274463, 37.094544],\n            [-76.287236, 37.117453],\n            [-76.292344, 37.126615],\n            [-76.311088, 37.138495],\n            [-76.324353, 37.142895],\n            [-76.330481, 37.141727],\n            [-76.334017, 37.144223],\n            [-76.340129, 37.151823],\n            [-76.34405, 37.160367],\n            [-76.344898, 37.164479],\n            [-76.343234, 37.166207],\n            [-76.348658, 37.170655],\n            [-76.35969, 37.16858],\n            [-76.375255, 37.16084],\n            [-76.381379, 37.155711],\n            [-76.394756, 37.157568],\n            [-76.399659, 37.160272],\n            [-76.397883, 37.164415],\n            [-76.391252, 37.179887],\n            [-76.389284, 37.193503],\n            [-76.396052, 37.201087],\n            [-76.3936, 37.214049],\n            [-76.389793, 37.222981],\n            [-76.394132, 37.22515],\n            [-76.471799, 37.216016],\n            [-76.494008, 37.225408],\n            [-76.50364, 37.233856],\n            [-76.4989, 37.241015],\n            [-76.493302, 37.24947],\n            [-76.48284, 37.254831],\n            [-76.475927, 37.250543],\n            [-76.429141, 37.25331],\n            [-76.421765, 37.255198],\n            [-76.417173, 37.26395],\n            [-76.392788, 37.264973],\n            [-76.36229, 37.270226],\n            [-76.349489, 37.273963],\n            [-76.352556, 37.278334],\n            [-76.369029, 37.279311],\n            [-76.381075, 37.28534],\n            [-76.385603, 37.294108],\n            [-76.38777, 37.30767],\n            [-76.406388, 37.332924],\n            [-76.434965, 37.354524],\n            [-76.445333, 37.36646],\n            [-76.437525, 37.37975],\n            [-76.422503, 37.381355],\n            [-76.418176, 37.385064],\n            [-76.418719, 37.3978],\n            [-76.415167, 37.402133],\n            [-76.404756, 37.400213],\n            [-76.393125, 37.398068],\n            [-76.393958, 37.39594],\n            [-76.391437, 37.390284],\n            [-76.387112, 37.385061],\n            [-76.366751, 37.374495],\n            [-76.337476, 37.364014],\n            [-76.31205, 37.338088],\n            [-76.308581, 37.329366],\n            [-76.291324, 37.324145],\n            [-76.282555, 37.319107],\n            [-76.275552, 37.309964],\n            [-76.272005, 37.322194],\n            [-76.272888, 37.335174],\n            [-76.264847, 37.357399],\n            [-76.262407, 37.360786],\n            [-76.258277, 37.36202],\n            [-76.24846, 37.375135],\n            [-76.245283, 37.386839],\n            [-76.246617, 37.404122],\n            [-76.250454, 37.421886],\n            [-76.252415, 37.447274],\n            [-76.265056, 37.481365],\n            [-76.281043, 37.507821],\n            [-76.288167, 37.514118],\n            [-76.293599, 37.516499],\n            [-76.297651, 37.515424],\n            [-76.298456, 37.512677],\n            [-76.296445, 37.511235],\n            [-76.297739, 37.506863],\n            [-76.306952, 37.497488],\n            [-76.32947, 37.49492],\n            [-76.352678, 37.504913],\n            [-76.359378, 37.513426],\n            [-76.360474, 37.51924],\n            [-76.355084, 37.527364],\n            [-76.348992, 37.536548],\n            [-76.339989, 37.53833],\n            [-76.330598, 37.536391],\n            [-76.302762, 37.551295],\n            [-76.29796, 37.557636],\n            [-76.300144, 37.561734],\n            [-76.332641, 37.570042],\n            [-76.357835, 37.573699],\n            [-76.383188, 37.573056],\n            [-76.410781, 37.581815],\n            [-76.420252, 37.598686],\n            [-76.435474, 37.612807],\n            [-76.527188, 37.611315],\n            [-76.533777, 37.61253],\n            [-76.542666, 37.616857],\n            [-76.574049, 37.646781],\n            [-76.583143, 37.661986],\n            [-76.579591, 37.671508],\n            [-76.597868, 37.702918],\n            [-76.598073, 37.70912],\n            [-76.595943, 37.712989],\n            [-76.597213, 37.717269],\n            [-76.606466, 37.724819],\n            [-76.61997, 37.731271],\n            [-76.621433, 37.737973],\n            [-76.617373, 37.742347],\n            [-76.61971, 37.744795],\n            [-76.639962, 37.750941],\n            [-76.663887, 37.751887],\n            [-76.677002, 37.7561],\n            [-76.680922, 37.759647],\n            [-76.683372, 37.765507],\n            [-76.683359, 37.770258],\n            [-76.683343, 37.775783],\n            [-76.681901, 37.778118],\n            [-76.683775, 37.781391],\n            [-76.689773, 37.78519],\n            [-76.715498, 37.785873],\n            [-76.723863, 37.788503],\n            [-76.734309, 37.79866],\n            [-76.7512, 37.824141],\n            [-76.766328, 37.840437],\n            [-76.782826, 37.863184],\n            [-76.784618, 37.869569],\n            [-76.77539, 37.874306],\n            [-76.765711, 37.879274],\n            [-76.747552, 37.875864],\n            [-76.738395, 37.865373],\n            [-76.733046, 37.852009],\n            [-76.72718, 37.842263],\n            [-76.722156, 37.83668],\n            [-76.701606, 37.822677],\n            [-76.692747, 37.82277],\n            [-76.680197, 37.825654],\n            [-76.658302, 37.806815],\n            [-76.651413, 37.796239],\n            [-76.642276, 37.792317],\n            [-76.615351, 37.780759],\n            [-76.602024, 37.772731],\n            [-76.595939, 37.77168],\n            [-76.593835, 37.772848],\n            [-76.584289, 37.76889],\n            [-76.576387, 37.757493],\n            [-76.560476, 37.727827],\n            [-76.54005, 37.704432],\n            [-76.537228, 37.698892],\n            [-76.535302, 37.687516],\n            [-76.537698, 37.66893],\n            [-76.536548, 37.663574],\n            [-76.510187, 37.642324],\n            [-76.501522, 37.643762],\n            [-76.497564, 37.647056],\n            [-76.491799, 37.663614],\n            [-76.489576, 37.666201],\n            [-76.472392, 37.665772],\n            [-76.443254, 37.652347],\n            [-76.399236, 37.628636],\n            [-76.390054, 37.630326],\n            [-76.381106, 37.627003],\n            [-76.36232, 37.610368],\n            [-76.309174, 37.621892],\n            [-76.28037, 37.613715],\n            [-76.279447, 37.618225],\n            [-76.287959, 37.631771],\n            [-76.292534, 37.636098],\n            [-76.306464, 37.642005],\n            [-76.332562, 37.645817],\n            [-76.339892, 37.655966],\n            [-76.324808, 37.676983],\n            [-76.320216, 37.680666],\n            [-76.315161, 37.68472],\n            [-76.312079, 37.684651],\n            [-76.302545, 37.689],\n            [-76.300067, 37.695364],\n            [-76.302803, 37.704474],\n            [-76.312858, 37.720338],\n            [-76.304917, 37.729913],\n            [-76.312108, 37.750522],\n            [-76.306489, 37.788646],\n            [-76.310307, 37.794849],\n            [-76.307482, 37.81235],\n            [-76.293525, 37.822717],\n            [-76.284904, 37.822308],\n            [-76.281985, 37.818068],\n            [-76.282592, 37.814109],\n            [-76.280544, 37.812597],\n            [-76.275178, 37.812664],\n            [-76.266057, 37.8174],\n            [-76.251358, 37.833072],\n            [-76.245072, 37.861918],\n            [-76.236725, 37.889174],\n            [-76.265998, 37.91138],\n            [-76.343848, 37.947345],\n            [-76.360211, 37.952329],\n            [-76.391439, 37.958742],\n            [-76.416299, 37.966828],\n            [-76.427487, 37.977038],\n            [-76.462542, 37.998572],\n            [-76.465291, 38.010226],\n            [-76.469343, 38.013544],\n            [-76.491998, 38.017222],\n            [-76.516547, 38.026566],\n            [-76.519536, 38.034814],\n            [-76.522354, 38.04259],\n            [-76.535919, 38.069532],\n            [-76.543155, 38.076971],\n            [-76.579497, 38.09487],\n            [-76.600937, 38.110084],\n            [-76.604131, 38.128771],\n            [-76.613939, 38.148587],\n            [-76.629476, 38.15305],\n            [-76.638983, 38.151476],\n            [-76.643448, 38.14825],\n            [-76.665127, 38.147638],\n            [-76.684892, 38.156497],\n            [-76.701297, 38.155718],\n            [-76.704048, 38.149264],\n            [-76.721722, 38.137635],\n            [-76.738938, 38.14651],\n            [-76.740278, 38.152824],\n            [-76.743064, 38.156988],\n            [-76.749685, 38.162114],\n            [-76.760241, 38.166581],\n            [-76.788445, 38.169199],\n            [-76.802968, 38.167988],\n            [-76.824274, 38.163639],\n            [-76.838795, 38.163476],\n            [-76.875272, 38.172207],\n            [-76.910832, 38.197073],\n            [-76.916922, 38.199751],\n            [-76.937134, 38.202384],\n            [-76.962311, 38.214075],\n            [-76.967335, 38.227185],\n            [-76.966553, 38.229542],\n            [-76.962375, 38.230093],\n            [-76.957417, 38.236341],\n            [-76.957796, 38.243183],\n            [-76.96215, 38.256486],\n            [-76.981372, 38.274214],\n            [-76.990255, 38.273935],\n            [-76.99767, 38.278047],\n            [-77.026304, 38.302685],\n            [-77.030683, 38.311623],\n            [-77.020947, 38.329273],\n            [-77.016932, 38.341697],\n            [-77.011827, 38.374554],\n            [-77.024866, 38.386791],\n            [-77.043526, 38.400548],\n            [-77.051437, 38.399083],\n            [-77.056032, 38.3962],\n            [-77.069956, 38.377895],\n            [-77.08481, 38.368297],\n            [-77.094665, 38.367715],\n            [-77.104717, 38.369655],\n            [-77.138224, 38.367917],\n            [-77.155191, 38.351047],\n            [-77.162692, 38.345994],\n            [-77.17934, 38.341915],\n            [-77.199433, 38.34089],\n            [-77.240072, 38.331598],\n            [-77.265295, 38.333165],\n            [-77.279633, 38.339444],\n            [-77.286202, 38.347024],\n            [-77.286202, 38.347025],\n            [-77.28835, 38.351286],\n            [-77.288145, 38.359477],\n            [-77.296077, 38.369797],\n            [-77.317288, 38.383576],\n            [-77.314848, 38.389579],\n            [-77.312201, 38.390958],\n            [-77.310719, 38.397669],\n            [-77.319036, 38.417803],\n            [-77.32544, 38.44885],\n            [-77.322622, 38.467131],\n            [-77.310334, 38.493926],\n            [-77.302457, 38.504683],\n            [-77.300776, 38.506978],\n            [-77.298844, 38.508724],\n            [-77.29582, 38.511457],\n            [-77.291103, 38.515721],\n            [-77.283503, 38.525221],\n            [-77.276303, 38.53962],\n            [-77.276603, 38.54712],\n            [-77.26083, 38.56533],\n            [-77.265304, 38.580319],\n            [-77.26443, 38.582845],\n            [-77.247003, 38.590618],\n            [-77.246441, 38.599532],\n            [-77.245104, 38.620717],\n            [-77.248904, 38.628617],\n            [-77.246704, 38.635217],\n            [-77.240604, 38.638917],\n            [-77.22235, 38.638091],\n            [-77.216303, 38.637817],\n            [-77.205103, 38.623917],\n            [-77.204302, 38.617817],\n            [-77.202002, 38.617217],\n            [-77.174902, 38.624217],\n            [-77.157501, 38.636417],\n            [-77.1302, 38.635017],\n            [-77.135901, 38.649817],\n            [-77.132501, 38.673816],\n            [-77.121101, 38.686616],\n            [-77.1059, 38.696815],\n            [-77.086113, 38.705792],\n            [-77.074599, 38.711015],\n            [-77.05991, 38.734419],\n            [-77.041398, 38.763914],\n            [-77.039239, 38.7852],\n            [-77.038598, 38.791513],\n            [-77.032986, 38.8395],\n            [-77.031698, 38.850512],\n            [-77.040599, 38.871212],\n            [-77.068199, 38.899811],\n            [-77.0902, 38.904211],\n            [-77.1012, 38.911111],\n            [-77.119863, 38.934265],\n            [-77.1199, 38.934311],\n            [-77.137701, 38.95531],\n            [-77.148179, 38.965002],\n            [-77.166901, 38.96811],\n            [-77.197502, 38.96681],\n            [-77.221502, 38.97131],\n            [-77.235403, 38.97661],\n            [-77.249803, 38.985909],\n            [-77.255703, 39.002409],\n            [-77.251803, 39.011409],\n            [-77.261403, 39.031009],\n            [-77.291605, 39.045408],\n            [-77.328002, 39.058554],\n            [-77.340287, 39.062991],\n            [-77.375079, 39.061297],\n            [-77.42318, 39.066878],\n            [-77.458202, 39.073723],\n            [-77.519929, 39.120925],\n            [-77.524559, 39.127821],\n            [-77.527282, 39.146236],\n            [-77.516426, 39.170891],\n            [-77.510631, 39.178484],\n            [-77.505162, 39.18205],\n            [-77.485971, 39.185665],\n            [-77.478596, 39.189168],\n            [-77.458884, 39.219826],\n            [-77.458779, 39.22028],\n            [-77.45768, 39.22502],\n            [-77.46021, 39.228359],\n            [-77.484605, 39.245941],\n            [-77.511222, 39.2535],\n            [-77.534461, 39.262361],\n            [-77.543228, 39.266937],\n            [-77.545846, 39.271535],\n            [-77.560854, 39.286152],\n            [-77.592739, 39.30129],\n            [-77.667749, 39.318129],\n            [-77.677505, 39.318699],\n            [-77.719029, 39.321125],\n            [-77.750267, 39.289284],\n            [-77.753357, 39.280331],\n            [-77.75306, 39.277971],\n            [-77.753105, 39.27734],\n            [-77.755193, 39.275191],\n            [-77.755698, 39.274575],\n            [-77.758412, 39.269197],\n            [-77.758733, 39.268114],\n            [-77.761217, 39.263721],\n            [-77.761768, 39.263031],\n            [-77.768, 39.257657],\n            [-77.768992, 39.256417],\n            [-77.767277, 39.24938],\n            [-77.771415, 39.236776],\n            [-77.822182, 39.139985],\n            [-77.828157, 39.132329],\n            [-78.032841, 39.264403],\n            [-78.033183, 39.264624],\n            [-78.033185, 39.264626],\n            [-78.228766, 39.391233],\n            [-78.347087, 39.466012],\n            [-78.362267, 39.357784],\n            [-78.34048, 39.353492],\n            [-78.35894, 39.319484],\n            [-78.360035, 39.317771],\n            [-78.399785, 39.244129],\n            [-78.399669, 39.243874],\n            [-78.423968, 39.212049],\n            [-78.427911, 39.208611],\n            [-78.429803, 39.207014],\n            [-78.431167, 39.205744],\n            [-78.43213, 39.204717],\n            [-78.437053, 39.199766],\n            [-78.438651, 39.198049],\n            [-78.426722, 39.188903],\n            [-78.41074, 39.171983],\n            [-78.418377, 39.156656],\n            [-78.439429, 39.132146],\n            [-78.459869, 39.113351],\n            [-78.508132, 39.08863],\n            [-78.544111, 39.056676],\n            [-78.571901, 39.031995],\n            [-78.565837, 39.026303],\n            [-78.554222, 39.019672],\n            [-78.557647, 39.013189],\n            [-78.601655, 38.964603],\n            [-78.710949, 38.910175],\n            [-78.714135, 38.911176],\n            [-78.716956, 38.916273],\n            [-78.719755, 38.922135],\n            [-78.719806, 38.922638],\n            [-78.757278, 38.903203],\n            [-78.779198, 38.892298],\n            [-78.788031, 38.885123],\n            [-78.808181, 38.856175],\n            [-78.835191, 38.811499],\n            [-78.869276, 38.762991]\n          ],\n          [\n            [-78.3050537109375, 38.62545397209084],\n            [-78.3050537109375, 39.24501680713314],\n            [-78.134765625, 39.24501680713314],\n            [-78.134765625, 38.62545397209084],\n            [-78.3050537109375, 38.62545397209084]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"stroke\": \"#080\",\n        \"fill\": \"#080\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78.869276, 38.762991],\n            [-78.993997, 38.850102],\n            [-78.999752, 38.846162],\n            [-79.055354, 38.782213],\n            [-79.057253, 38.761413],\n            [-79.092555, 38.700149],\n            [-79.092271, 38.699208],\n            [-79.12353515625, 38.65929574145635],\n            [-79.12353515625, 36.541572358223675],\n            [-78.971814, 36.542123],\n            [-78.970577, 36.542154],\n            [-78.942254, 36.542079],\n            [-78.942009, 36.542113],\n            [-78.91542, 36.541974],\n            [-78.914543, 36.541972],\n            [-78.7963, 36.541713],\n            [-78.76543, 36.541727],\n            [-78.758392, 36.541852],\n            [-78.734122, 36.541902],\n            [-78.670051, 36.542035],\n            [-78.663317, 36.542011],\n            [-78.533013, 36.541004],\n            [-78.529722, 36.540981],\n            [-78.471022, 36.542307],\n            [-78.470792, 36.542316],\n            [-78.45697, 36.542474],\n            [-78.441199, 36.542687],\n            [-78.436333, 36.542666],\n            [-78.323912, 36.543809],\n            [-78.246681, 36.544341],\n            [-78.245462, 36.544411],\n            [-78.133323, 36.543847],\n            [-78.132911, 36.543811],\n            [-78.046202, 36.544168],\n            [-78.03942, 36.544196],\n            [-78.038938, 36.544173],\n            [-77.899771, 36.544663],\n            [-77.882357, 36.544737],\n            [-77.87528, 36.544754],\n            [-77.767117, 36.544752],\n            [-77.296875, 36.544746],\n            [-77.24969, 36.544745],\n            [-77.1645, 36.54633],\n            [-76.916048, 36.543815],\n            [-76.916001, 36.543818],\n            [-76.915384, 36.543856],\n            [-76.807078, 36.550606],\n            [-76.781296, 36.550659],\n            [-76.739501953125, 36.550598474167224],\n            [-76.739501953125, 37.14710498169436],\n            [-76.747632, 37.150548],\n            [-76.756899, 37.161582],\n            [-76.796905, 37.189404],\n            [-76.802511, 37.198308],\n            [-76.803198, 37.201513],\n            [-76.801023, 37.206043],\n            [-76.791555, 37.207564],\n            [-76.780532, 37.209336],\n            [-76.773752, 37.206061],\n            [-76.757765, 37.191658],\n            [-76.75047, 37.190098],\n            [-76.74304, 37.192611],\n            [-76.74, 37.195379],\n            [-76.739501953125, 37.196153427816895],\n            [-76.739501953125, 37.806493854631356],\n            [-76.7512, 37.824141],\n            [-76.766328, 37.840437],\n            [-76.782826, 37.863184],\n            [-76.784618, 37.869569],\n            [-76.77539, 37.874306],\n            [-76.765711, 37.879274],\n            [-76.747552, 37.875864],\n            [-76.739501953125, 37.866641215052354],\n            [-76.739501953125, 38.14916731345614],\n            [-76.740278, 38.152824],\n            [-76.743064, 38.156988],\n            [-76.749685, 38.162114],\n            [-76.760241, 38.166581],\n            [-76.788445, 38.169199],\n            [-76.802968, 38.167988],\n            [-76.824274, 38.163639],\n            [-76.838795, 38.163476],\n            [-76.875272, 38.172207],\n            [-76.910832, 38.197073],\n            [-76.916922, 38.199751],\n            [-76.937134, 38.202384],\n            [-76.962311, 38.214075],\n            [-76.967335, 38.227185],\n            [-76.966553, 38.229542],\n            [-76.962375, 38.230093],\n            [-76.957417, 38.236341],\n            [-76.957796, 38.243183],\n            [-76.96215, 38.256486],\n            [-76.981372, 38.274214],\n            [-76.990255, 38.273935],\n            [-76.99767, 38.278047],\n            [-77.026304, 38.302685],\n            [-77.030683, 38.311623],\n            [-77.020947, 38.329273],\n            [-77.016932, 38.341697],\n            [-77.011827, 38.374554],\n            [-77.024866, 38.386791],\n            [-77.043526, 38.400548],\n            [-77.051437, 38.399083],\n            [-77.056032, 38.3962],\n            [-77.069956, 38.377895],\n            [-77.08481, 38.368297],\n            [-77.094665, 38.367715],\n            [-77.104717, 38.369655],\n            [-77.138224, 38.367917],\n            [-77.155191, 38.351047],\n            [-77.162692, 38.345994],\n            [-77.17934, 38.341915],\n            [-77.199433, 38.34089],\n            [-77.240072, 38.331598],\n            [-77.265295, 38.333165],\n            [-77.279633, 38.339444],\n            [-77.286202, 38.347024],\n            [-77.286202, 38.347025],\n            [-77.28835, 38.351286],\n            [-77.288145, 38.359477],\n            [-77.296077, 38.369797],\n            [-77.317288, 38.383576],\n            [-77.314848, 38.389579],\n            [-77.312201, 38.390958],\n            [-77.310719, 38.397669],\n            [-77.319036, 38.417803],\n            [-77.32544, 38.44885],\n            [-77.322622, 38.467131],\n            [-77.310334, 38.493926],\n            [-77.302457, 38.504683],\n            [-77.300776, 38.506978],\n            [-77.298844, 38.508724],\n            [-77.29582, 38.511457],\n            [-77.291103, 38.515721],\n            [-77.283503, 38.525221],\n            [-77.276303, 38.53962],\n            [-77.276603, 38.54712],\n            [-77.26083, 38.56533],\n            [-77.265304, 38.580319],\n            [-77.26443, 38.582845],\n            [-77.247003, 38.590618],\n            [-77.246441, 38.599532],\n            [-77.245104, 38.620717],\n            [-77.248904, 38.628617],\n            [-77.246704, 38.635217],\n            [-77.240604, 38.638917],\n            [-77.22235, 38.638091],\n            [-77.216303, 38.637817],\n            [-77.205103, 38.623917],\n            [-77.204302, 38.617817],\n            [-77.202002, 38.617217],\n            [-77.174902, 38.624217],\n            [-77.157501, 38.636417],\n            [-77.1302, 38.635017],\n            [-77.135901, 38.649817],\n            [-77.132501, 38.673816],\n            [-77.121101, 38.686616],\n            [-77.1059, 38.696815],\n            [-77.086113, 38.705792],\n            [-77.074599, 38.711015],\n            [-77.05991, 38.734419],\n            [-77.041398, 38.763914],\n            [-77.039239, 38.7852],\n            [-77.038598, 38.791513],\n            [-77.032986, 38.8395],\n            [-77.031698, 38.850512],\n            [-77.040599, 38.871212],\n            [-77.068199, 38.899811],\n            [-77.0902, 38.904211],\n            [-77.1012, 38.911111],\n            [-77.119863, 38.934265],\n            [-77.1199, 38.934311],\n            [-77.137701, 38.95531],\n            [-77.148179, 38.965002],\n            [-77.166901, 38.96811],\n            [-77.197502, 38.96681],\n            [-77.221502, 38.97131],\n            [-77.235403, 38.97661],\n            [-77.249803, 38.985909],\n            [-77.255703, 39.002409],\n            [-77.251803, 39.011409],\n            [-77.25979149316487, 39.027718840211605],\n            [-78.56734537228446, 39.027718840211605],\n            [-78.565837, 39.026303],\n            [-78.554222, 39.019672],\n            [-78.557647, 39.013189],\n            [-78.601655, 38.964603],\n            [-78.710949, 38.910175],\n            [-78.714135, 38.911176],\n            [-78.716956, 38.916273],\n            [-78.719755, 38.922135],\n            [-78.719806, 38.922638],\n            [-78.757278, 38.903203],\n            [-78.779198, 38.892298],\n            [-78.788031, 38.885123],\n            [-78.808181, 38.856175],\n            [-78.835191, 38.811499],\n            [-78.869276, 38.762991]\n          ],\n          [\n            [-78.3050537109375, 38.62545397209084],\n            [-78.3050537109375, 39.027718840211605],\n            [-78.134765625, 39.027718840211605],\n            [-78.134765625, 38.62545397209084],\n            [-78.3050537109375, 38.62545397209084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"stroke-width\": 3,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.12353515625, 36.34167804918315],\n            [-76.739501953125, 36.34167804918315],\n            [-76.739501953125, 39.027718840211605],\n            [-79.12353515625, 39.027718840211605],\n            [-79.12353515625, 36.34167804918315]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/test/out/polygon-holes.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78.869276, 38.762991],\n            [-78.993997, 38.850102],\n            [-78.999752, 38.846162],\n            [-79.055354, 38.782213],\n            [-79.057253, 38.761413],\n            [-79.092555, 38.700149],\n            [-79.092271, 38.699208],\n            [-79.135472, 38.644057],\n            [-79.135546, 38.643715],\n            [-79.136374, 38.6424],\n            [-79.137012, 38.640655],\n            [-79.146741, 38.625819],\n            [-79.146974, 38.625641],\n            [-79.174512, 38.566531],\n            [-79.174881, 38.566314],\n            [-79.207884, 38.500428],\n            [-79.207873, 38.500122],\n            [-79.209703, 38.495574],\n            [-79.210008, 38.494283],\n            [-79.210026, 38.494231],\n            [-79.225839, 38.479446],\n            [-79.23162, 38.474041],\n            [-79.234408, 38.473011],\n            [-79.240059, 38.469841],\n            [-79.242024, 38.464332],\n            [-79.26291, 38.444586],\n            [-79.263376, 38.443762],\n            [-79.265327, 38.441772],\n            [-79.267414, 38.438322],\n            [-79.282663, 38.431021],\n            [-79.280263, 38.425475],\n            [-79.290529, 38.420757],\n            [-79.291813, 38.419627],\n            [-79.295712, 38.418129],\n            [-79.297758, 38.416438],\n            [-79.312276, 38.411876],\n            [-79.476638, 38.457228],\n            [-79.521469, 38.533918],\n            [-79.53687, 38.550917],\n            [-79.555471, 38.560217],\n            [-79.597955, 38.572767],\n            [-79.649075, 38.591515],\n            [-79.669128, 38.510975],\n            [-79.669128, 38.510883],\n            [-79.695565, 38.477842],\n            [-79.699006, 38.475148],\n            [-79.688205, 38.450476],\n            [-79.688962, 38.449538],\n            [-79.689544, 38.442511],\n            [-79.691377, 38.439558],\n            [-79.731661, 38.374143],\n            [-79.808711, 38.309429],\n            [-79.810115, 38.305037],\n            [-79.788945, 38.268703],\n            [-79.790134, 38.267654],\n            [-79.794568, 38.264856],\n            [-79.891999, 38.203378],\n            [-79.892345, 38.202397],\n            [-79.916174, 38.184386],\n            [-79.917061, 38.183741],\n            [-79.921196, 38.180378],\n            [-79.921026, 38.179954],\n            [-79.925251, 38.150465],\n            [-79.925512, 38.150237],\n            [-79.928683, 38.144928],\n            [-79.928747, 38.144436],\n            [-79.933751, 38.135508],\n            [-79.938394, 38.130563],\n            [-79.931034, 38.101402],\n            [-79.933911, 38.099168],\n            [-79.959844, 38.063697],\n            [-79.978427, 38.029082],\n            [-80.002507, 37.992767],\n            [-80.055278, 37.951702],\n            [-80.130464, 37.893194],\n            [-80.14613, 37.884453],\n            [-80.147316, 37.885936],\n            [-80.148964, 37.886057],\n            [-80.162202, 37.875122],\n            [-80.227092, 37.798886],\n            [-80.231551, 37.792591],\n            [-80.257411, 37.756084],\n            [-80.262765, 37.738336],\n            [-80.260313, 37.733517],\n            [-80.259342, 37.731205],\n            [-80.263936, 37.719137],\n            [-80.287107, 37.696403],\n            [-80.296138, 37.691783],\n            [-80.292337, 37.683976],\n            [-80.292258, 37.683732],\n            [-80.270323, 37.648982],\n            [-80.270352, 37.648929],\n            [-80.267455, 37.646108],\n            [-80.267228, 37.646011],\n            [-80.264874, 37.645511],\n            [-80.26483, 37.645526],\n            [-80.263291, 37.645101],\n            [-80.263281, 37.645082],\n            [-80.254469, 37.642333],\n            [-80.254431, 37.642352],\n            [-80.239288, 37.637672],\n            [-80.220984, 37.627767],\n            [-80.223386, 37.623185],\n            [-80.240272, 37.606961],\n            [-80.288766, 37.58196],\n            [-80.312393, 37.546239],\n            [-80.330306, 37.536244],\n            [-80.314806, 37.500943],\n            [-80.320627, 37.49888],\n            [-80.425656, 37.449876],\n            [-80.443025, 37.438126],\n            [-80.46482, 37.426144],\n            [-80.475601, 37.422949],\n            [-80.494867, 37.43507],\n            [-80.511391, 37.481672],\n            [-80.622664, 37.433307],\n            [-80.770082, 37.372363],\n            [-80.776649, 37.383679],\n            [-80.776766, 37.384131],\n            [-80.798869, 37.395807],\n            [-80.811639, 37.407507],\n            [-80.85836, 37.428168],\n            [-80.858473, 37.428301],\n            [-80.859556, 37.429568],\n            [-80.859558, 37.429555],\n            [-80.862761, 37.411829],\n            [-80.872589, 37.372347],\n            [-80.849451, 37.346909],\n            [-80.900535, 37.315],\n            [-80.919259, 37.306163],\n            [-80.947896, 37.295872],\n            [-80.966556, 37.292158],\n            [-80.973889, 37.291444],\n            [-80.980044, 37.293118],\n            [-80.981322, 37.293465],\n            [-81.034652, 37.290751],\n            [-81.084012, 37.284401],\n            [-81.112596, 37.278497],\n            [-81.167029, 37.262881],\n            [-81.204774, 37.243013],\n            [-81.225104, 37.234874],\n            [-81.320105, 37.299323],\n            [-81.362156, 37.337687],\n            [-81.366315, 37.335927],\n            [-81.367052, 37.334504],\n            [-81.36809, 37.332423],\n            [-81.369379, 37.331827],\n            [-81.367599, 37.327569],\n            [-81.371315, 37.324115],\n            [-81.377349, 37.318447],\n            [-81.380159, 37.317838],\n            [-81.384127, 37.318596],\n            [-81.384914, 37.318832],\n            [-81.38581, 37.320085],\n            [-81.386727, 37.320474],\n            [-81.388132, 37.319903],\n            [-81.409196, 37.286071],\n            [-81.409729, 37.284837],\n            [-81.504168, 37.250115],\n            [-81.50488, 37.247697],\n            [-81.507325, 37.2338],\n            [-81.557315, 37.207697],\n            [-81.558353, 37.208145],\n            [-81.560625, 37.206663],\n            [-81.678603, 37.202467],\n            [-81.683544, 37.211452],\n            [-81.728194, 37.239823],\n            [-81.73332, 37.238127],\n            [-81.738378, 37.240917],\n            [-81.744291, 37.244178],\n            [-81.74342, 37.245858],\n            [-81.743505, 37.247601],\n            [-81.747656, 37.264329],\n            [-81.75129, 37.265131],\n            [-81.752123, 37.265568],\n            [-81.752912, 37.266614],\n            [-81.755012, 37.26772],\n            [-81.757531, 37.27001],\n            [-81.757714, 37.271124],\n            [-81.75773, 37.271934],\n            [-81.757631, 37.274003],\n            [-81.76022, 37.275254],\n            [-81.761752, 37.275713],\n            [-81.762776, 37.275391],\n            [-81.763836, 37.275218],\n            [-81.765195, 37.275099],\n            [-81.767837, 37.274216],\n            [-81.774684, 37.274807],\n            [-81.774747, 37.274847],\n            [-81.793425, 37.281674],\n            [-81.793639, 37.282188],\n            [-81.809184, 37.283003],\n            [-81.810559, 37.28298],\n            [-81.84231, 37.285556],\n            [-81.843167, 37.285586],\n            [-81.854059, 37.291352],\n            [-81.853488, 37.294763],\n            [-81.854465, 37.299937],\n            [-81.853978, 37.300418],\n            [-81.86476, 37.308404],\n            [-81.865219, 37.308839],\n            [-81.873213, 37.325065],\n            [-81.878343, 37.328837],\n            [-81.878713, 37.331753],\n            [-81.879601, 37.332074],\n            [-81.880886, 37.331146],\n            [-81.885075, 37.330665],\n            [-81.886952, 37.330725],\n            [-81.887722, 37.331156],\n            [-81.892876, 37.330134],\n            [-81.893773, 37.330105],\n            [-81.894768, 37.331381],\n            [-81.894797, 37.332012],\n            [-81.895489, 37.332022],\n            [-81.896001, 37.331967],\n            [-81.899459, 37.340277],\n            [-81.899495, 37.341102],\n            [-81.902992, 37.34234],\n            [-81.903795, 37.34305],\n            [-81.905945, 37.342775],\n            [-81.906368, 37.34276],\n            [-81.907322, 37.343119],\n            [-81.907895, 37.343783],\n            [-81.910875, 37.348729],\n            [-81.911487, 37.348839],\n            [-81.920711, 37.355416],\n            [-81.921571, 37.356423],\n            [-81.925643, 37.357316],\n            [-81.926589, 37.358942],\n            [-81.929915, 37.366589],\n            [-81.930194, 37.366728],\n            [-81.933895, 37.372747],\n            [-81.92749, 37.413251],\n            [-81.935621, 37.438397],\n            [-81.949367, 37.445687],\n            [-81.968795, 37.451496],\n            [-81.987006, 37.454878],\n            [-81.99227, 37.460916],\n            [-81.996578, 37.476705],\n            [-81.992916, 37.482969],\n            [-81.94264, 37.508844],\n            [-81.92787, 37.512118],\n            [-81.968297, 37.537798],\n            [-82.291908, 37.311642],\n            [-82.305874, 37.3011],\n            [-82.310793, 37.297387],\n            [-82.350948, 37.267077],\n            [-82.510826, 37.218091],\n            [-82.553549, 37.200867],\n            [-82.565329, 37.196118],\n            [-82.565375, 37.196092],\n            [-82.624878, 37.162932],\n            [-82.721941, 37.105689],\n            [-82.720597, 37.081833],\n            [-82.722472, 37.045101],\n            [-82.771795, 37.015716],\n            [-82.777368, 37.015279],\n            [-82.788897, 37.00816],\n            [-82.789092, 37.007995],\n            [-82.790462, 37.007263],\n            [-82.79089, 37.00676],\n            [-82.800531, 37.007944],\n            [-82.815748, 37.007196],\n            [-82.818006, 37.006161],\n            [-82.830588, 37.000945],\n            [-82.829125, 36.997541],\n            [-82.830802, 36.993445],\n            [-82.833843, 36.991973],\n            [-82.836008, 36.988837],\n            [-82.838549, 36.987027],\n            [-82.840051, 36.987113],\n            [-82.851397, 36.984497],\n            [-82.852614, 36.984963],\n            [-82.862926, 36.979975],\n            [-82.864909, 36.97901],\n            [-82.866019, 36.978272],\n            [-82.866689, 36.978052],\n            [-82.867535, 36.977518],\n            [-82.868455, 36.976481],\n            [-82.869183, 36.974183],\n            [-82.869183, 36.974182],\n            [-82.870274, 36.965993],\n            [-82.87023, 36.965498],\n            [-82.867358, 36.963182],\n            [-82.865404, 36.958084],\n            [-82.864211, 36.957983],\n            [-82.862866, 36.957765],\n            [-82.860534, 36.956015],\n            [-82.858443, 36.954036],\n            [-82.855705, 36.953808],\n            [-82.856099, 36.952471],\n            [-82.860633, 36.94584],\n            [-82.861282, 36.944848],\n            [-82.861684, 36.939316],\n            [-82.860537, 36.937439],\n            [-82.858784, 36.933065],\n            [-82.858461, 36.932717],\n            [-82.861943, 36.924236],\n            [-82.863468, 36.922308],\n            [-82.872136, 36.913456],\n            [-82.873777, 36.912299],\n            [-82.885618, 36.900415],\n            [-82.91169, 36.874248],\n            [-82.911824, 36.874243],\n            [-82.973395, 36.859097],\n            [-83.07259, 36.854589],\n            [-83.099792, 36.824889],\n            [-83.131694, 36.781488],\n            [-83.131245, 36.767105],\n            [-83.125655, 36.761407],\n            [-83.125728, 36.761276],\n            [-83.127833, 36.750828],\n            [-83.136395, 36.743088],\n            [-83.167396, 36.739187],\n            [-83.199698, 36.737487],\n            [-83.342804, 36.701286],\n            [-83.353613, 36.696699],\n            [-83.354606, 36.696153],\n            [-83.460808, 36.664885],\n            [-83.461013, 36.664916],\n            [-83.498011, 36.670485],\n            [-83.527212, 36.665984],\n            [-83.649513, 36.616683],\n            [-83.675413, 36.600814],\n            [-83.670141, 36.600797],\n            [-83.670128, 36.600764],\n            [-83.472108, 36.597284],\n            [-83.2763, 36.598187],\n            [-83.250304, 36.593935],\n            [-83.249899, 36.593898],\n            [-83.248933, 36.593827],\n            [-83.028357, 36.593893],\n            [-83.02725, 36.593847],\n            [-82.985087, 36.593829],\n            [-82.830433, 36.593761],\n            [-82.69578, 36.593698],\n            [-82.679879, 36.593698],\n            [-82.609176, 36.594099],\n            [-82.561074, 36.5948],\n            [-82.559774, 36.5948],\n            [-82.554294, 36.594876],\n            [-82.293814, 36.595565],\n            [-82.243274, 36.595699],\n            [-82.226653, 36.595743],\n            [-82.225716, 36.595744],\n            [-82.223445, 36.595721],\n            [-82.221713, 36.595814],\n            [-82.211005, 36.59586],\n            [-82.210497, 36.595772],\n            [-82.188491, 36.595179],\n            [-82.18074, 36.594928],\n            [-82.177247, 36.594768],\n            [-82.173982, 36.594607],\n            [-82.150727, 36.594673],\n            [-82.148569, 36.594718],\n            [-82.14607, 36.594712],\n            [-81.934144, 36.594213],\n            [-81.922644, 36.616213],\n            [-81.826742, 36.614215],\n            [-81.6469, 36.611918],\n            [-81.677535, 36.588117],\n            [-81.60697, 36.587094],\n            [-81.521032, 36.58052],\n            [-81.353322, 36.574723],\n            [-81.353169, 36.574724],\n            [-81.307511, 36.575024],\n            [-81.061866, 36.56702],\n            [-81.058844, 36.566976],\n            [-80.945988, 36.563196],\n            [-80.944338, 36.563058],\n            [-80.901836, 36.561754],\n            [-80.901726, 36.561751],\n            [-80.837954, 36.559131],\n            [-80.837641, 36.559118],\n            [-80.837089, 36.559154],\n            [-80.744101, 36.561686],\n            [-80.687539, 36.561411],\n            [-80.612158, 36.558127],\n            [-80.4401, 36.55063],\n            [-80.432628, 36.550302],\n            [-80.431605, 36.550219],\n            [-80.228263, 36.543867],\n            [-80.225408, 36.543748],\n            [-80.171636, 36.543219],\n            [-80.169535, 36.54319],\n            [-80.053455, 36.542623],\n            [-80.027269, 36.542495],\n            [-79.967511, 36.542502],\n            [-79.966979, 36.542475],\n            [-79.920239, 36.542365],\n            [-79.714855, 36.541884],\n            [-79.667309, 36.541772],\n            [-79.666827, 36.541772],\n            [-79.510961, 36.54074],\n            [-79.510647, 36.540738],\n            [-79.470047, 36.541025],\n            [-79.445961, 36.541195],\n            [-79.445687, 36.541218],\n            [-79.342696, 36.541382],\n            [-79.218638, 36.541579],\n            [-79.20948, 36.541594],\n            [-79.208686, 36.541571],\n            [-79.137936, 36.541739],\n            [-79.126078, 36.541533],\n            [-79.124736, 36.541568],\n            [-78.971814, 36.542123],\n            [-78.970577, 36.542154],\n            [-78.942254, 36.542079],\n            [-78.942009, 36.542113],\n            [-78.91542, 36.541974],\n            [-78.914543, 36.541972],\n            [-78.7963, 36.541713],\n            [-78.76543, 36.541727],\n            [-78.758392, 36.541852],\n            [-78.734122, 36.541902],\n            [-78.670051, 36.542035],\n            [-78.663317, 36.542011],\n            [-78.533013, 36.541004],\n            [-78.529722, 36.540981],\n            [-78.471022, 36.542307],\n            [-78.470792, 36.542316],\n            [-78.45697, 36.542474],\n            [-78.441199, 36.542687],\n            [-78.436333, 36.542666],\n            [-78.323912, 36.543809],\n            [-78.246681, 36.544341],\n            [-78.245462, 36.544411],\n            [-78.133323, 36.543847],\n            [-78.132911, 36.543811],\n            [-78.046202, 36.544168],\n            [-78.03942, 36.544196],\n            [-78.038938, 36.544173],\n            [-77.899771, 36.544663],\n            [-77.882357, 36.544737],\n            [-77.87528, 36.544754],\n            [-77.767117, 36.544752],\n            [-77.296875, 36.544746],\n            [-77.24969, 36.544745],\n            [-77.1645, 36.54633],\n            [-76.916048, 36.543815],\n            [-76.916001, 36.543818],\n            [-76.915384, 36.543856],\n            [-76.807078, 36.550606],\n            [-76.781296, 36.550659],\n            [-76.541687, 36.550312],\n            [-76.541391, 36.550312],\n            [-76.491497, 36.550365],\n            [-76.313215, 36.550551],\n            [-76.313196, 36.550551],\n            [-76.12236, 36.550621],\n            [-76.034751, 36.550653],\n            [-76.02675, 36.550553],\n            [-75.957648, 36.550553],\n            [-75.955748, 36.550553],\n            [-75.953447, 36.550553],\n            [-75.952847, 36.550553],\n            [-75.922046, 36.550654],\n            [-75.911446, 36.550654],\n            [-75.909046, 36.550654],\n            [-75.904745, 36.550654],\n            [-75.903445, 36.550654],\n            [-75.894145, 36.550754],\n            [-75.893245, 36.550654],\n            [-75.891945, 36.550754],\n            [-75.886545, 36.550754],\n            [-75.885945, 36.550754],\n            [-75.880644, 36.550754],\n            [-75.879744, 36.550754],\n            [-75.867044, 36.550754],\n            [-75.874145, 36.583853],\n            [-75.890946, 36.630753],\n            [-75.921748, 36.692051],\n            [-75.94955, 36.76115],\n            [-75.965451, 36.812449],\n            [-75.972151, 36.842268],\n            [-75.991552, 36.910847],\n            [-75.996252, 36.922047],\n            [-76.007553, 36.929047],\n            [-76.013753, 36.930746],\n            [-76.033454, 36.931946],\n            [-76.043054, 36.927547],\n            [-76.058154, 36.916947],\n            [-76.087955, 36.908647],\n            [-76.095508, 36.908817],\n            [-76.139557, 36.923047],\n            [-76.177019, 36.92929],\n            [-76.189959, 36.931447],\n            [-76.22166, 36.939547],\n            [-76.234961, 36.945147],\n            [-76.267962, 36.964547],\n            [-76.285063, 36.968747],\n            [-76.297663, 36.968147],\n            [-76.299364, 36.965547],\n            [-76.315867, 36.955351],\n            [-76.322764, 36.959147],\n            [-76.327365, 36.959447],\n            [-76.330765, 36.938647],\n            [-76.328864, 36.918447],\n            [-76.333158, 36.917293],\n            [-76.344663, 36.919313],\n            [-76.345569, 36.924531],\n            [-76.353765, 36.922747],\n            [-76.385867, 36.923247],\n            [-76.387567, 36.899547],\n            [-76.406908, 36.897507],\n            [-76.407507, 36.897444],\n            [-76.43122, 36.904532],\n            [-76.441605, 36.906116],\n            [-76.447413, 36.90322],\n            [-76.453941, 36.89274],\n            [-76.45329, 36.887031],\n            [-76.454692, 36.884077],\n            [-76.469914, 36.882898],\n            [-76.483369, 36.896239],\n            [-76.482135, 36.901108],\n            [-76.482407, 36.917364],\n            [-76.484107, 36.928916],\n            [-76.487559, 36.952372],\n            [-76.500355, 36.965212],\n            [-76.513363, 36.968057],\n            [-76.521006, 36.973187],\n            [-76.524142, 36.978316],\n            [-76.522971, 36.981085],\n            [-76.524853, 36.983833],\n            [-76.551246, 36.998946],\n            [-76.562923, 37.003796],\n            [-76.565803, 37.007493],\n            [-76.576617, 37.021374],\n            [-76.577531, 37.022548],\n            [-76.57816, 37.022982],\n            [-76.579236, 37.023726],\n            [-76.579393, 37.023835],\n            [-76.584478, 37.027349],\n            [-76.586491, 37.02874],\n            [-76.612124, 37.035604],\n            [-76.646013, 37.036228],\n            [-76.653998, 37.039172],\n            [-76.662558, 37.045748],\n            [-76.66835, 37.05506],\n            [-76.669822, 37.06426],\n            [-76.669118, 37.068132],\n            [-76.668295, 37.072656],\n            [-76.667646, 37.076228],\n            [-76.667219, 37.077149],\n            [-76.666526, 37.078643],\n            [-76.66555, 37.080746],\n            [-76.659394, 37.094019],\n            [-76.65811, 37.096787],\n            [-76.657703, 37.101161],\n            [-76.657101, 37.107617],\n            [-76.656894, 37.109843],\n            [-76.66375, 37.129979],\n            [-76.665641, 37.135534],\n            [-76.665833, 37.136098],\n            [-76.666542, 37.138179],\n            [-76.669604, 37.140534],\n            [-76.671588, 37.14206],\n            [-76.67147, 37.158739],\n            [-76.66867, 37.166771],\n            [-76.66427, 37.171027],\n            [-76.663774, 37.173875],\n            [-76.669886, 37.183571],\n            [-76.685614, 37.198851],\n            [-76.691918, 37.195731],\n            [-76.692926, 37.186147],\n            [-76.696735, 37.174403],\n            [-76.715295, 37.148035],\n            [-76.73032, 37.145395],\n            [-76.73728, 37.146164],\n            [-76.747632, 37.150548],\n            [-76.756899, 37.161582],\n            [-76.796905, 37.189404],\n            [-76.802511, 37.198308],\n            [-76.803198, 37.201513],\n            [-76.801023, 37.206043],\n            [-76.791555, 37.207564],\n            [-76.780532, 37.209336],\n            [-76.773752, 37.206061],\n            [-76.757765, 37.191658],\n            [-76.75047, 37.190098],\n            [-76.74304, 37.192611],\n            [-76.74, 37.195379],\n            [-76.73432, 37.204211],\n            [-76.730951, 37.213813],\n            [-76.698943, 37.219059],\n            [-76.693373, 37.221228],\n            [-76.689166, 37.222866],\n            [-76.649869, 37.220914],\n            [-76.641085, 37.216002],\n            [-76.639608, 37.214783],\n            [-76.629868, 37.206738],\n            [-76.623292, 37.198738],\n            [-76.621113, 37.195103],\n            [-76.619962, 37.193184],\n            [-76.61934, 37.192146],\n            [-76.618008, 37.186429],\n            [-76.617537, 37.184409],\n            [-76.616804, 37.18126],\n            [-76.616268, 37.178962],\n            [-76.614221, 37.174335],\n            [-76.613599, 37.172931],\n            [-76.612517, 37.170486],\n            [-76.611018, 37.167097],\n            [-76.610972, 37.166994],\n            [-76.606684, 37.166674],\n            [-76.604476, 37.160034],\n            [-76.617084, 37.144498],\n            [-76.622252, 37.142146],\n            [-76.62478, 37.127091],\n            [-76.618252, 37.119347],\n            [-76.579499, 37.096627],\n            [-76.567931, 37.080467],\n            [-76.564219, 37.077507],\n            [-76.555066, 37.075859],\n            [-76.536875, 37.083942],\n            [-76.528997, 37.079388],\n            [-76.526203, 37.077773],\n            [-76.526573, 37.070047],\n            [-76.527973, 37.068247],\n            [-76.526273, 37.062947],\n            [-76.518242, 37.055351],\n            [-76.512289, 37.054858],\n            [-76.509339, 37.053173],\n            [-76.507614, 37.052188],\n            [-76.46949, 37.030414],\n            [-76.464471, 37.027547],\n            [-76.448231, 37.007705],\n            [-76.449891, 37.004868],\n            [-76.452461, 37.004603],\n            [-76.452118, 36.998163],\n            [-76.428869, 36.969947],\n            [-76.418969, 36.964047],\n            [-76.411768, 36.962847],\n            [-76.408568, 36.969147],\n            [-76.396368, 36.982347],\n            [-76.387711, 36.989671],\n            [-76.383367, 36.993347],\n            [-76.373567, 36.998347],\n            [-76.356366, 37.002947],\n            [-76.348066, 37.006747],\n            [-76.340666, 37.015246],\n            [-76.34011, 37.015212],\n            [-76.329531, 37.014556],\n            [-76.318065, 37.013846],\n            [-76.314624, 37.00933],\n            [-76.315008, 37.001683],\n            [-76.312048, 37.000371],\n            [-76.304272, 37.001378],\n            [-76.300352, 37.00885],\n            [-76.292863, 37.035145],\n            [-76.271262, 37.084544],\n            [-76.274463, 37.094544],\n            [-76.287236, 37.117453],\n            [-76.292344, 37.126615],\n            [-76.311088, 37.138495],\n            [-76.324353, 37.142895],\n            [-76.330481, 37.141727],\n            [-76.334017, 37.144223],\n            [-76.340129, 37.151823],\n            [-76.34405, 37.160367],\n            [-76.344898, 37.164479],\n            [-76.343234, 37.166207],\n            [-76.348658, 37.170655],\n            [-76.35969, 37.16858],\n            [-76.375255, 37.16084],\n            [-76.381379, 37.155711],\n            [-76.394756, 37.157568],\n            [-76.399659, 37.160272],\n            [-76.397883, 37.164415],\n            [-76.391252, 37.179887],\n            [-76.389284, 37.193503],\n            [-76.396052, 37.201087],\n            [-76.3936, 37.214049],\n            [-76.389793, 37.222981],\n            [-76.394132, 37.22515],\n            [-76.471799, 37.216016],\n            [-76.494008, 37.225408],\n            [-76.50364, 37.233856],\n            [-76.4989, 37.241015],\n            [-76.493302, 37.24947],\n            [-76.48284, 37.254831],\n            [-76.475927, 37.250543],\n            [-76.429141, 37.25331],\n            [-76.421765, 37.255198],\n            [-76.417173, 37.26395],\n            [-76.392788, 37.264973],\n            [-76.36229, 37.270226],\n            [-76.349489, 37.273963],\n            [-76.352556, 37.278334],\n            [-76.369029, 37.279311],\n            [-76.381075, 37.28534],\n            [-76.385603, 37.294108],\n            [-76.38777, 37.30767],\n            [-76.406388, 37.332924],\n            [-76.434965, 37.354524],\n            [-76.445333, 37.36646],\n            [-76.437525, 37.37975],\n            [-76.422503, 37.381355],\n            [-76.418176, 37.385064],\n            [-76.418719, 37.3978],\n            [-76.415167, 37.402133],\n            [-76.404756, 37.400213],\n            [-76.393125, 37.398068],\n            [-76.393958, 37.39594],\n            [-76.391437, 37.390284],\n            [-76.387112, 37.385061],\n            [-76.366751, 37.374495],\n            [-76.337476, 37.364014],\n            [-76.31205, 37.338088],\n            [-76.308581, 37.329366],\n            [-76.291324, 37.324145],\n            [-76.282555, 37.319107],\n            [-76.275552, 37.309964],\n            [-76.272005, 37.322194],\n            [-76.272888, 37.335174],\n            [-76.264847, 37.357399],\n            [-76.262407, 37.360786],\n            [-76.258277, 37.36202],\n            [-76.24846, 37.375135],\n            [-76.245283, 37.386839],\n            [-76.246617, 37.404122],\n            [-76.250454, 37.421886],\n            [-76.252415, 37.447274],\n            [-76.265056, 37.481365],\n            [-76.281043, 37.507821],\n            [-76.288167, 37.514118],\n            [-76.293599, 37.516499],\n            [-76.297651, 37.515424],\n            [-76.298456, 37.512677],\n            [-76.296445, 37.511235],\n            [-76.297739, 37.506863],\n            [-76.306952, 37.497488],\n            [-76.32947, 37.49492],\n            [-76.352678, 37.504913],\n            [-76.359378, 37.513426],\n            [-76.360474, 37.51924],\n            [-76.355084, 37.527364],\n            [-76.348992, 37.536548],\n            [-76.339989, 37.53833],\n            [-76.330598, 37.536391],\n            [-76.302762, 37.551295],\n            [-76.29796, 37.557636],\n            [-76.300144, 37.561734],\n            [-76.332641, 37.570042],\n            [-76.357835, 37.573699],\n            [-76.383188, 37.573056],\n            [-76.410781, 37.581815],\n            [-76.420252, 37.598686],\n            [-76.435474, 37.612807],\n            [-76.527188, 37.611315],\n            [-76.533777, 37.61253],\n            [-76.542666, 37.616857],\n            [-76.574049, 37.646781],\n            [-76.583143, 37.661986],\n            [-76.579591, 37.671508],\n            [-76.597868, 37.702918],\n            [-76.598073, 37.70912],\n            [-76.595943, 37.712989],\n            [-76.597213, 37.717269],\n            [-76.606466, 37.724819],\n            [-76.61997, 37.731271],\n            [-76.621433, 37.737973],\n            [-76.617373, 37.742347],\n            [-76.61971, 37.744795],\n            [-76.639962, 37.750941],\n            [-76.663887, 37.751887],\n            [-76.677002, 37.7561],\n            [-76.680922, 37.759647],\n            [-76.683372, 37.765507],\n            [-76.683359, 37.770258],\n            [-76.683343, 37.775783],\n            [-76.681901, 37.778118],\n            [-76.683775, 37.781391],\n            [-76.689773, 37.78519],\n            [-76.715498, 37.785873],\n            [-76.723863, 37.788503],\n            [-76.734309, 37.79866],\n            [-76.7512, 37.824141],\n            [-76.766328, 37.840437],\n            [-76.782826, 37.863184],\n            [-76.784618, 37.869569],\n            [-76.77539, 37.874306],\n            [-76.765711, 37.879274],\n            [-76.747552, 37.875864],\n            [-76.738395, 37.865373],\n            [-76.733046, 37.852009],\n            [-76.72718, 37.842263],\n            [-76.722156, 37.83668],\n            [-76.701606, 37.822677],\n            [-76.692747, 37.82277],\n            [-76.680197, 37.825654],\n            [-76.658302, 37.806815],\n            [-76.651413, 37.796239],\n            [-76.642276, 37.792317],\n            [-76.615351, 37.780759],\n            [-76.602024, 37.772731],\n            [-76.595939, 37.77168],\n            [-76.593835, 37.772848],\n            [-76.584289, 37.76889],\n            [-76.576387, 37.757493],\n            [-76.560476, 37.727827],\n            [-76.54005, 37.704432],\n            [-76.537228, 37.698892],\n            [-76.535302, 37.687516],\n            [-76.537698, 37.66893],\n            [-76.536548, 37.663574],\n            [-76.510187, 37.642324],\n            [-76.501522, 37.643762],\n            [-76.497564, 37.647056],\n            [-76.491799, 37.663614],\n            [-76.489576, 37.666201],\n            [-76.472392, 37.665772],\n            [-76.443254, 37.652347],\n            [-76.399236, 37.628636],\n            [-76.390054, 37.630326],\n            [-76.381106, 37.627003],\n            [-76.36232, 37.610368],\n            [-76.309174, 37.621892],\n            [-76.28037, 37.613715],\n            [-76.279447, 37.618225],\n            [-76.287959, 37.631771],\n            [-76.292534, 37.636098],\n            [-76.306464, 37.642005],\n            [-76.332562, 37.645817],\n            [-76.339892, 37.655966],\n            [-76.324808, 37.676983],\n            [-76.320216, 37.680666],\n            [-76.315161, 37.68472],\n            [-76.312079, 37.684651],\n            [-76.302545, 37.689],\n            [-76.300067, 37.695364],\n            [-76.302803, 37.704474],\n            [-76.312858, 37.720338],\n            [-76.304917, 37.729913],\n            [-76.312108, 37.750522],\n            [-76.306489, 37.788646],\n            [-76.310307, 37.794849],\n            [-76.307482, 37.81235],\n            [-76.293525, 37.822717],\n            [-76.284904, 37.822308],\n            [-76.281985, 37.818068],\n            [-76.282592, 37.814109],\n            [-76.280544, 37.812597],\n            [-76.275178, 37.812664],\n            [-76.266057, 37.8174],\n            [-76.251358, 37.833072],\n            [-76.245072, 37.861918],\n            [-76.236725, 37.889174],\n            [-76.265998, 37.91138],\n            [-76.343848, 37.947345],\n            [-76.360211, 37.952329],\n            [-76.391439, 37.958742],\n            [-76.416299, 37.966828],\n            [-76.427487, 37.977038],\n            [-76.462542, 37.998572],\n            [-76.465291, 38.010226],\n            [-76.469343, 38.013544],\n            [-76.491998, 38.017222],\n            [-76.516547, 38.026566],\n            [-76.519536, 38.034814],\n            [-76.522354, 38.04259],\n            [-76.535919, 38.069532],\n            [-76.543155, 38.076971],\n            [-76.579497, 38.09487],\n            [-76.600937, 38.110084],\n            [-76.604131, 38.128771],\n            [-76.613939, 38.148587],\n            [-76.629476, 38.15305],\n            [-76.638983, 38.151476],\n            [-76.643448, 38.14825],\n            [-76.665127, 38.147638],\n            [-76.684892, 38.156497],\n            [-76.701297, 38.155718],\n            [-76.704048, 38.149264],\n            [-76.721722, 38.137635],\n            [-76.738938, 38.14651],\n            [-76.740278, 38.152824],\n            [-76.743064, 38.156988],\n            [-76.749685, 38.162114],\n            [-76.760241, 38.166581],\n            [-76.788445, 38.169199],\n            [-76.802968, 38.167988],\n            [-76.824274, 38.163639],\n            [-76.838795, 38.163476],\n            [-76.875272, 38.172207],\n            [-76.910832, 38.197073],\n            [-76.916922, 38.199751],\n            [-76.937134, 38.202384],\n            [-76.962311, 38.214075],\n            [-76.967335, 38.227185],\n            [-76.966553, 38.229542],\n            [-76.962375, 38.230093],\n            [-76.957417, 38.236341],\n            [-76.957796, 38.243183],\n            [-76.96215, 38.256486],\n            [-76.981372, 38.274214],\n            [-76.990255, 38.273935],\n            [-76.99767, 38.278047],\n            [-77.026304, 38.302685],\n            [-77.030683, 38.311623],\n            [-77.020947, 38.329273],\n            [-77.016932, 38.341697],\n            [-77.011827, 38.374554],\n            [-77.024866, 38.386791],\n            [-77.043526, 38.400548],\n            [-77.051437, 38.399083],\n            [-77.056032, 38.3962],\n            [-77.069956, 38.377895],\n            [-77.08481, 38.368297],\n            [-77.094665, 38.367715],\n            [-77.104717, 38.369655],\n            [-77.138224, 38.367917],\n            [-77.155191, 38.351047],\n            [-77.162692, 38.345994],\n            [-77.17934, 38.341915],\n            [-77.199433, 38.34089],\n            [-77.240072, 38.331598],\n            [-77.265295, 38.333165],\n            [-77.279633, 38.339444],\n            [-77.286202, 38.347024],\n            [-77.286202, 38.347025],\n            [-77.28835, 38.351286],\n            [-77.288145, 38.359477],\n            [-77.296077, 38.369797],\n            [-77.317288, 38.383576],\n            [-77.314848, 38.389579],\n            [-77.312201, 38.390958],\n            [-77.310719, 38.397669],\n            [-77.319036, 38.417803],\n            [-77.32544, 38.44885],\n            [-77.322622, 38.467131],\n            [-77.310334, 38.493926],\n            [-77.302457, 38.504683],\n            [-77.300776, 38.506978],\n            [-77.298844, 38.508724],\n            [-77.29582, 38.511457],\n            [-77.291103, 38.515721],\n            [-77.283503, 38.525221],\n            [-77.276303, 38.53962],\n            [-77.276603, 38.54712],\n            [-77.26083, 38.56533],\n            [-77.265304, 38.580319],\n            [-77.26443, 38.582845],\n            [-77.247003, 38.590618],\n            [-77.246441, 38.599532],\n            [-77.245104, 38.620717],\n            [-77.248904, 38.628617],\n            [-77.246704, 38.635217],\n            [-77.240604, 38.638917],\n            [-77.22235, 38.638091],\n            [-77.216303, 38.637817],\n            [-77.205103, 38.623917],\n            [-77.204302, 38.617817],\n            [-77.202002, 38.617217],\n            [-77.174902, 38.624217],\n            [-77.157501, 38.636417],\n            [-77.1302, 38.635017],\n            [-77.135901, 38.649817],\n            [-77.132501, 38.673816],\n            [-77.121101, 38.686616],\n            [-77.1059, 38.696815],\n            [-77.086113, 38.705792],\n            [-77.074599, 38.711015],\n            [-77.05991, 38.734419],\n            [-77.041398, 38.763914],\n            [-77.039239, 38.7852],\n            [-77.038598, 38.791513],\n            [-77.032986, 38.8395],\n            [-77.031698, 38.850512],\n            [-77.040599, 38.871212],\n            [-77.068199, 38.899811],\n            [-77.0902, 38.904211],\n            [-77.1012, 38.911111],\n            [-77.119863, 38.934265],\n            [-77.1199, 38.934311],\n            [-77.137701, 38.95531],\n            [-77.148179, 38.965002],\n            [-77.166901, 38.96811],\n            [-77.197502, 38.96681],\n            [-77.221502, 38.97131],\n            [-77.235403, 38.97661],\n            [-77.249803, 38.985909],\n            [-77.255703, 39.002409],\n            [-77.251803, 39.011409],\n            [-77.261403, 39.031009],\n            [-77.291605, 39.045408],\n            [-77.328002, 39.058554],\n            [-77.340287, 39.062991],\n            [-77.375079, 39.061297],\n            [-77.42318, 39.066878],\n            [-77.458202, 39.073723],\n            [-77.519929, 39.120925],\n            [-77.524559, 39.127821],\n            [-77.527282, 39.146236],\n            [-77.516426, 39.170891],\n            [-77.510631, 39.178484],\n            [-77.505162, 39.18205],\n            [-77.485971, 39.185665],\n            [-77.478596, 39.189168],\n            [-77.458884, 39.219826],\n            [-77.458779, 39.22028],\n            [-77.45768, 39.22502],\n            [-77.46021, 39.228359],\n            [-77.484605, 39.245941],\n            [-77.511222, 39.2535],\n            [-77.534461, 39.262361],\n            [-77.543228, 39.266937],\n            [-77.545846, 39.271535],\n            [-77.560854, 39.286152],\n            [-77.592739, 39.30129],\n            [-77.667749, 39.318129],\n            [-77.677505, 39.318699],\n            [-77.719029, 39.321125],\n            [-77.750267, 39.289284],\n            [-77.753357, 39.280331],\n            [-77.75306, 39.277971],\n            [-77.753105, 39.27734],\n            [-77.755193, 39.275191],\n            [-77.755698, 39.274575],\n            [-77.758412, 39.269197],\n            [-77.758733, 39.268114],\n            [-77.761217, 39.263721],\n            [-77.761768, 39.263031],\n            [-77.768, 39.257657],\n            [-77.768992, 39.256417],\n            [-77.767277, 39.24938],\n            [-77.771415, 39.236776],\n            [-77.822182, 39.139985],\n            [-77.828157, 39.132329],\n            [-78.032841, 39.264403],\n            [-78.033183, 39.264624],\n            [-78.033185, 39.264626],\n            [-78.228766, 39.391233],\n            [-78.347087, 39.466012],\n            [-78.362267, 39.357784],\n            [-78.34048, 39.353492],\n            [-78.35894, 39.319484],\n            [-78.360035, 39.317771],\n            [-78.399785, 39.244129],\n            [-78.399669, 39.243874],\n            [-78.423968, 39.212049],\n            [-78.427911, 39.208611],\n            [-78.429803, 39.207014],\n            [-78.431167, 39.205744],\n            [-78.43213, 39.204717],\n            [-78.437053, 39.199766],\n            [-78.438651, 39.198049],\n            [-78.426722, 39.188903],\n            [-78.41074, 39.171983],\n            [-78.418377, 39.156656],\n            [-78.439429, 39.132146],\n            [-78.459869, 39.113351],\n            [-78.508132, 39.08863],\n            [-78.544111, 39.056676],\n            [-78.571901, 39.031995],\n            [-78.565837, 39.026303],\n            [-78.554222, 39.019672],\n            [-78.557647, 39.013189],\n            [-78.601655, 38.964603],\n            [-78.710949, 38.910175],\n            [-78.714135, 38.911176],\n            [-78.716956, 38.916273],\n            [-78.719755, 38.922135],\n            [-78.719806, 38.922638],\n            [-78.757278, 38.903203],\n            [-78.779198, 38.892298],\n            [-78.788031, 38.885123],\n            [-78.808181, 38.856175],\n            [-78.835191, 38.811499],\n            [-78.869276, 38.762991]\n          ],\n          [\n            [-78.8214111328125, 38.45789034424927],\n            [-78.8214111328125, 38.66406704456943],\n            [-78.5247802734375, 38.66406704456943],\n            [-78.5247802734375, 38.45789034424927],\n            [-78.8214111328125, 38.45789034424927]\n          ],\n          [\n            [-78.2940673828125, 39.138581990583525],\n            [-78.2940673828125, 39.30029918615032],\n            [-78.145751953125, 39.30029918615032],\n            [-78.145751953125, 39.138581990583525],\n            [-78.2940673828125, 39.138581990583525]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"stroke\": \"#080\",\n        \"fill\": \"#080\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78.869276, 38.762991],\n            [-78.993997, 38.850102],\n            [-78.999752, 38.846162],\n            [-79.055354, 38.782213],\n            [-79.057253, 38.761413],\n            [-79.092555, 38.700149],\n            [-79.092271, 38.699208],\n            [-79.135472, 38.644057],\n            [-79.135546, 38.643715],\n            [-79.136374, 38.6424],\n            [-79.137012, 38.640655],\n            [-79.146741, 38.625819],\n            [-79.146974, 38.625641],\n            [-79.174512, 38.566531],\n            [-79.174881, 38.566314],\n            [-79.207884, 38.500428],\n            [-79.207873, 38.500122],\n            [-79.209703, 38.495574],\n            [-79.210008, 38.494283],\n            [-79.210026, 38.494231],\n            [-79.225839, 38.479446],\n            [-79.23162, 38.474041],\n            [-79.234408, 38.473011],\n            [-79.240059, 38.469841],\n            [-79.242024, 38.464332],\n            [-79.26291, 38.444586],\n            [-79.263376, 38.443762],\n            [-79.265327, 38.441772],\n            [-79.267414, 38.438322],\n            [-79.282663, 38.431021],\n            [-79.280263, 38.425475],\n            [-79.290529, 38.420757],\n            [-79.291813, 38.419627],\n            [-79.295712, 38.418129],\n            [-79.297758, 38.416438],\n            [-79.312276, 38.411876],\n            [-79.476638, 38.457228],\n            [-79.521469, 38.533918],\n            [-79.53687, 38.550917],\n            [-79.555471, 38.560217],\n            [-79.597955, 38.572767],\n            [-79.60693359375, 38.576059853592035],\n            [-79.60693359375, 36.5413754414481],\n            [-79.510961, 36.54074],\n            [-79.510647, 36.540738],\n            [-79.470047, 36.541025],\n            [-79.445961, 36.541195],\n            [-79.445687, 36.541218],\n            [-79.342696, 36.541382],\n            [-79.218638, 36.541579],\n            [-79.20948, 36.541594],\n            [-79.208686, 36.541571],\n            [-79.137936, 36.541739],\n            [-79.126078, 36.541533],\n            [-79.124736, 36.541568],\n            [-78.971814, 36.542123],\n            [-78.970577, 36.542154],\n            [-78.942254, 36.542079],\n            [-78.942009, 36.542113],\n            [-78.91542, 36.541974],\n            [-78.914543, 36.541972],\n            [-78.7963, 36.541713],\n            [-78.76543, 36.541727],\n            [-78.758392, 36.541852],\n            [-78.734122, 36.541902],\n            [-78.670051, 36.542035],\n            [-78.663317, 36.542011],\n            [-78.533013, 36.541004],\n            [-78.529722, 36.540981],\n            [-78.471022, 36.542307],\n            [-78.470792, 36.542316],\n            [-78.45697, 36.542474],\n            [-78.441199, 36.542687],\n            [-78.436333, 36.542666],\n            [-78.323912, 36.543809],\n            [-78.246681, 36.544341],\n            [-78.245462, 36.544411],\n            [-78.133323, 36.543847],\n            [-78.132911, 36.543811],\n            [-78.046202, 36.544168],\n            [-78.03942, 36.544196],\n            [-78.038938, 36.544173],\n            [-77.899771, 36.544663],\n            [-77.882357, 36.544737],\n            [-77.87528, 36.544754],\n            [-77.767117, 36.544752],\n            [-77.296875, 36.544746],\n            [-77.24969, 36.544745],\n            [-77.1645, 36.54633],\n            [-76.916048, 36.543815],\n            [-76.916001, 36.543818],\n            [-76.915384, 36.543856],\n            [-76.807078, 36.550606],\n            [-76.781296, 36.550659],\n            [-76.717529296875, 36.55056665352727],\n            [-76.717529296875, 37.147642418053245],\n            [-76.73032, 37.145395],\n            [-76.73728, 37.146164],\n            [-76.747632, 37.150548],\n            [-76.756899, 37.161582],\n            [-76.796905, 37.189404],\n            [-76.802511, 37.198308],\n            [-76.803198, 37.201513],\n            [-76.801023, 37.206043],\n            [-76.791555, 37.207564],\n            [-76.780532, 37.209336],\n            [-76.773752, 37.206061],\n            [-76.757765, 37.191658],\n            [-76.75047, 37.190098],\n            [-76.74304, 37.192611],\n            [-76.74, 37.195379],\n            [-76.73432, 37.204211],\n            [-76.730951, 37.213813],\n            [-76.717529296875, 37.21601277051343],\n            [-76.717529296875, 37.78651165042215],\n            [-76.723863, 37.788503],\n            [-76.734309, 37.79866],\n            [-76.7512, 37.824141],\n            [-76.766328, 37.840437],\n            [-76.782826, 37.863184],\n            [-76.784618, 37.869569],\n            [-76.77539, 37.874306],\n            [-76.765711, 37.879274],\n            [-76.747552, 37.875864],\n            [-76.738395, 37.865373],\n            [-76.733046, 37.852009],\n            [-76.72718, 37.842263],\n            [-76.722156, 37.83668],\n            [-76.717529296875, 37.833527312707574],\n            [-76.717529296875, 38.14039368194187],\n            [-76.721722, 38.137635],\n            [-76.738938, 38.14651],\n            [-76.740278, 38.152824],\n            [-76.743064, 38.156988],\n            [-76.749685, 38.162114],\n            [-76.760241, 38.166581],\n            [-76.788445, 38.169199],\n            [-76.802968, 38.167988],\n            [-76.824274, 38.163639],\n            [-76.838795, 38.163476],\n            [-76.875272, 38.172207],\n            [-76.910832, 38.197073],\n            [-76.916922, 38.199751],\n            [-76.937134, 38.202384],\n            [-76.962311, 38.214075],\n            [-76.967335, 38.227185],\n            [-76.966553, 38.229542],\n            [-76.962375, 38.230093],\n            [-76.957417, 38.236341],\n            [-76.957796, 38.243183],\n            [-76.96215, 38.256486],\n            [-76.981372, 38.274214],\n            [-76.990255, 38.273935],\n            [-76.99767, 38.278047],\n            [-77.026304, 38.302685],\n            [-77.030683, 38.311623],\n            [-77.020947, 38.329273],\n            [-77.016932, 38.341697],\n            [-77.011827, 38.374554],\n            [-77.024866, 38.386791],\n            [-77.043526, 38.400548],\n            [-77.051437, 38.399083],\n            [-77.056032, 38.3962],\n            [-77.069956, 38.377895],\n            [-77.08481, 38.368297],\n            [-77.094665, 38.367715],\n            [-77.104717, 38.369655],\n            [-77.138224, 38.367917],\n            [-77.155191, 38.351047],\n            [-77.162692, 38.345994],\n            [-77.17934, 38.341915],\n            [-77.199433, 38.34089],\n            [-77.240072, 38.331598],\n            [-77.265295, 38.333165],\n            [-77.279633, 38.339444],\n            [-77.286202, 38.347024],\n            [-77.286202, 38.347025],\n            [-77.28835, 38.351286],\n            [-77.288145, 38.359477],\n            [-77.296077, 38.369797],\n            [-77.317288, 38.383576],\n            [-77.314848, 38.389579],\n            [-77.312201, 38.390958],\n            [-77.310719, 38.397669],\n            [-77.319036, 38.417803],\n            [-77.32544, 38.44885],\n            [-77.322622, 38.467131],\n            [-77.310334, 38.493926],\n            [-77.302457, 38.504683],\n            [-77.300776, 38.506978],\n            [-77.298844, 38.508724],\n            [-77.29582, 38.511457],\n            [-77.291103, 38.515721],\n            [-77.283503, 38.525221],\n            [-77.276303, 38.53962],\n            [-77.276603, 38.54712],\n            [-77.26083, 38.56533],\n            [-77.265304, 38.580319],\n            [-77.26443, 38.582845],\n            [-77.247003, 38.590618],\n            [-77.246441, 38.599532],\n            [-77.245104, 38.620717],\n            [-77.248904, 38.628617],\n            [-77.246704, 38.635217],\n            [-77.240604, 38.638917],\n            [-77.22235, 38.638091],\n            [-77.216303, 38.637817],\n            [-77.205103, 38.623917],\n            [-77.204302, 38.617817],\n            [-77.202002, 38.617217],\n            [-77.174902, 38.624217],\n            [-77.157501, 38.636417],\n            [-77.1302, 38.635017],\n            [-77.135901, 38.649817],\n            [-77.132501, 38.673816],\n            [-77.121101, 38.686616],\n            [-77.1059, 38.696815],\n            [-77.086113, 38.705792],\n            [-77.074599, 38.711015],\n            [-77.05991, 38.734419],\n            [-77.041398, 38.763914],\n            [-77.039239, 38.7852],\n            [-77.038598, 38.791513],\n            [-77.032986, 38.8395],\n            [-77.031698, 38.850512],\n            [-77.040599, 38.871212],\n            [-77.068199, 38.899811],\n            [-77.0902, 38.904211],\n            [-77.1012, 38.911111],\n            [-77.119863, 38.934265],\n            [-77.1199, 38.934311],\n            [-77.137701, 38.95531],\n            [-77.148179, 38.965002],\n            [-77.166901, 38.96811],\n            [-77.197502, 38.96681],\n            [-77.221502, 38.97131],\n            [-77.235403, 38.97661],\n            [-77.249803, 38.985909],\n            [-77.255703, 39.002409],\n            [-77.251803, 39.011409],\n            [-77.261403, 39.031009],\n            [-77.291605, 39.045408],\n            [-77.328002, 39.058554],\n            [-77.340287, 39.062991],\n            [-77.375079, 39.061297],\n            [-77.42318, 39.066878],\n            [-77.458202, 39.073723],\n            [-77.46498265519503, 39.07890809706475],\n            [-78.51907849639193, 39.07890809706475],\n            [-78.544111, 39.056676],\n            [-78.571901, 39.031995],\n            [-78.565837, 39.026303],\n            [-78.554222, 39.019672],\n            [-78.557647, 39.013189],\n            [-78.601655, 38.964603],\n            [-78.710949, 38.910175],\n            [-78.714135, 38.911176],\n            [-78.716956, 38.916273],\n            [-78.719755, 38.922135],\n            [-78.719806, 38.922638],\n            [-78.757278, 38.903203],\n            [-78.779198, 38.892298],\n            [-78.788031, 38.885123],\n            [-78.808181, 38.856175],\n            [-78.835191, 38.811499],\n            [-78.869276, 38.762991]\n          ],\n          [\n            [-78.8214111328125, 38.45789034424927],\n            [-78.8214111328125, 38.66406704456943],\n            [-78.5247802734375, 38.66406704456943],\n            [-78.5247802734375, 38.45789034424927],\n            [-78.8214111328125, 38.45789034424927]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"stroke-width\": 3,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.60693359375, 36.38591277287651],\n            [-76.717529296875, 36.38591277287651],\n            [-76.717529296875, 39.07890809706475],\n            [-79.60693359375, 39.07890809706475],\n            [-79.60693359375, 36.38591277287651]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/test/out/polygon-point-intersection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#080\",\n        \"fill\": \"#080\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [115.872872384, -31.977789227500004],\n            [115.87413347200001, -31.978896027],\n            [115.874207392, -31.978955634],\n            [115.874293312, -31.978886666],\n            [115.875, -31.9782948325],\n            [115.873511744, -31.977027638],\n            [115.8731464, -31.977071372],\n            [115.872185504, -31.9771863865],\n            [115.872872384, -31.977789227500004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": []\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"stroke-width\": 3,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [115.875, -31.98],\n            [115.88, -31.98],\n            [115.88, -31.975],\n            [115.875, -31.975],\n            [115.875, -31.98]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/test/out/polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78.869276, 38.762991],\n            [-78.993997, 38.850102],\n            [-78.999752, 38.846162],\n            [-79.055354, 38.782213],\n            [-79.057253, 38.761413],\n            [-79.092555, 38.700149],\n            [-79.092271, 38.699208],\n            [-79.135472, 38.644057],\n            [-79.135546, 38.643715],\n            [-79.136374, 38.6424],\n            [-79.137012, 38.640655],\n            [-79.146741, 38.625819],\n            [-79.146974, 38.625641],\n            [-79.174512, 38.566531],\n            [-79.174881, 38.566314],\n            [-79.207884, 38.500428],\n            [-79.207873, 38.500122],\n            [-79.209703, 38.495574],\n            [-79.210008, 38.494283],\n            [-79.210026, 38.494231],\n            [-79.225839, 38.479446],\n            [-79.23162, 38.474041],\n            [-79.234408, 38.473011],\n            [-79.240059, 38.469841],\n            [-79.242024, 38.464332],\n            [-79.26291, 38.444586],\n            [-79.263376, 38.443762],\n            [-79.265327, 38.441772],\n            [-79.267414, 38.438322],\n            [-79.282663, 38.431021],\n            [-79.280263, 38.425475],\n            [-79.290529, 38.420757],\n            [-79.291813, 38.419627],\n            [-79.295712, 38.418129],\n            [-79.297758, 38.416438],\n            [-79.312276, 38.411876],\n            [-79.476638, 38.457228],\n            [-79.521469, 38.533918],\n            [-79.53687, 38.550917],\n            [-79.555471, 38.560217],\n            [-79.597955, 38.572767],\n            [-79.649075, 38.591515],\n            [-79.669128, 38.510975],\n            [-79.669128, 38.510883],\n            [-79.695565, 38.477842],\n            [-79.699006, 38.475148],\n            [-79.688205, 38.450476],\n            [-79.688962, 38.449538],\n            [-79.689544, 38.442511],\n            [-79.691377, 38.439558],\n            [-79.731661, 38.374143],\n            [-79.808711, 38.309429],\n            [-79.810115, 38.305037],\n            [-79.788945, 38.268703],\n            [-79.790134, 38.267654],\n            [-79.794568, 38.264856],\n            [-79.891999, 38.203378],\n            [-79.892345, 38.202397],\n            [-79.916174, 38.184386],\n            [-79.917061, 38.183741],\n            [-79.921196, 38.180378],\n            [-79.921026, 38.179954],\n            [-79.925251, 38.150465],\n            [-79.925512, 38.150237],\n            [-79.928683, 38.144928],\n            [-79.928747, 38.144436],\n            [-79.933751, 38.135508],\n            [-79.938394, 38.130563],\n            [-79.931034, 38.101402],\n            [-79.933911, 38.099168],\n            [-79.959844, 38.063697],\n            [-79.978427, 38.029082],\n            [-80.002507, 37.992767],\n            [-80.055278, 37.951702],\n            [-80.130464, 37.893194],\n            [-80.14613, 37.884453],\n            [-80.147316, 37.885936],\n            [-80.148964, 37.886057],\n            [-80.162202, 37.875122],\n            [-80.227092, 37.798886],\n            [-80.231551, 37.792591],\n            [-80.257411, 37.756084],\n            [-80.262765, 37.738336],\n            [-80.260313, 37.733517],\n            [-80.259342, 37.731205],\n            [-80.263936, 37.719137],\n            [-80.287107, 37.696403],\n            [-80.296138, 37.691783],\n            [-80.292337, 37.683976],\n            [-80.292258, 37.683732],\n            [-80.270323, 37.648982],\n            [-80.270352, 37.648929],\n            [-80.267455, 37.646108],\n            [-80.267228, 37.646011],\n            [-80.264874, 37.645511],\n            [-80.26483, 37.645526],\n            [-80.263291, 37.645101],\n            [-80.263281, 37.645082],\n            [-80.254469, 37.642333],\n            [-80.254431, 37.642352],\n            [-80.239288, 37.637672],\n            [-80.220984, 37.627767],\n            [-80.223386, 37.623185],\n            [-80.240272, 37.606961],\n            [-80.288766, 37.58196],\n            [-80.312393, 37.546239],\n            [-80.330306, 37.536244],\n            [-80.314806, 37.500943],\n            [-80.320627, 37.49888],\n            [-80.425656, 37.449876],\n            [-80.443025, 37.438126],\n            [-80.46482, 37.426144],\n            [-80.475601, 37.422949],\n            [-80.494867, 37.43507],\n            [-80.511391, 37.481672],\n            [-80.622664, 37.433307],\n            [-80.770082, 37.372363],\n            [-80.776649, 37.383679],\n            [-80.776766, 37.384131],\n            [-80.798869, 37.395807],\n            [-80.811639, 37.407507],\n            [-80.85836, 37.428168],\n            [-80.858473, 37.428301],\n            [-80.859556, 37.429568],\n            [-80.859558, 37.429555],\n            [-80.862761, 37.411829],\n            [-80.872589, 37.372347],\n            [-80.849451, 37.346909],\n            [-80.900535, 37.315],\n            [-80.919259, 37.306163],\n            [-80.947896, 37.295872],\n            [-80.966556, 37.292158],\n            [-80.973889, 37.291444],\n            [-80.980044, 37.293118],\n            [-80.981322, 37.293465],\n            [-81.034652, 37.290751],\n            [-81.084012, 37.284401],\n            [-81.112596, 37.278497],\n            [-81.167029, 37.262881],\n            [-81.204774, 37.243013],\n            [-81.225104, 37.234874],\n            [-81.320105, 37.299323],\n            [-81.362156, 37.337687],\n            [-81.366315, 37.335927],\n            [-81.367052, 37.334504],\n            [-81.36809, 37.332423],\n            [-81.369379, 37.331827],\n            [-81.367599, 37.327569],\n            [-81.371315, 37.324115],\n            [-81.377349, 37.318447],\n            [-81.380159, 37.317838],\n            [-81.384127, 37.318596],\n            [-81.384914, 37.318832],\n            [-81.38581, 37.320085],\n            [-81.386727, 37.320474],\n            [-81.388132, 37.319903],\n            [-81.409196, 37.286071],\n            [-81.409729, 37.284837],\n            [-81.504168, 37.250115],\n            [-81.50488, 37.247697],\n            [-81.507325, 37.2338],\n            [-81.557315, 37.207697],\n            [-81.558353, 37.208145],\n            [-81.560625, 37.206663],\n            [-81.678603, 37.202467],\n            [-81.683544, 37.211452],\n            [-81.728194, 37.239823],\n            [-81.73332, 37.238127],\n            [-81.738378, 37.240917],\n            [-81.744291, 37.244178],\n            [-81.74342, 37.245858],\n            [-81.743505, 37.247601],\n            [-81.747656, 37.264329],\n            [-81.75129, 37.265131],\n            [-81.752123, 37.265568],\n            [-81.752912, 37.266614],\n            [-81.755012, 37.26772],\n            [-81.757531, 37.27001],\n            [-81.757714, 37.271124],\n            [-81.75773, 37.271934],\n            [-81.757631, 37.274003],\n            [-81.76022, 37.275254],\n            [-81.761752, 37.275713],\n            [-81.762776, 37.275391],\n            [-81.763836, 37.275218],\n            [-81.765195, 37.275099],\n            [-81.767837, 37.274216],\n            [-81.774684, 37.274807],\n            [-81.774747, 37.274847],\n            [-81.793425, 37.281674],\n            [-81.793639, 37.282188],\n            [-81.809184, 37.283003],\n            [-81.810559, 37.28298],\n            [-81.84231, 37.285556],\n            [-81.843167, 37.285586],\n            [-81.854059, 37.291352],\n            [-81.853488, 37.294763],\n            [-81.854465, 37.299937],\n            [-81.853978, 37.300418],\n            [-81.86476, 37.308404],\n            [-81.865219, 37.308839],\n            [-81.873213, 37.325065],\n            [-81.878343, 37.328837],\n            [-81.878713, 37.331753],\n            [-81.879601, 37.332074],\n            [-81.880886, 37.331146],\n            [-81.885075, 37.330665],\n            [-81.886952, 37.330725],\n            [-81.887722, 37.331156],\n            [-81.892876, 37.330134],\n            [-81.893773, 37.330105],\n            [-81.894768, 37.331381],\n            [-81.894797, 37.332012],\n            [-81.895489, 37.332022],\n            [-81.896001, 37.331967],\n            [-81.899459, 37.340277],\n            [-81.899495, 37.341102],\n            [-81.902992, 37.34234],\n            [-81.903795, 37.34305],\n            [-81.905945, 37.342775],\n            [-81.906368, 37.34276],\n            [-81.907322, 37.343119],\n            [-81.907895, 37.343783],\n            [-81.910875, 37.348729],\n            [-81.911487, 37.348839],\n            [-81.920711, 37.355416],\n            [-81.921571, 37.356423],\n            [-81.925643, 37.357316],\n            [-81.926589, 37.358942],\n            [-81.929915, 37.366589],\n            [-81.930194, 37.366728],\n            [-81.933895, 37.372747],\n            [-81.92749, 37.413251],\n            [-81.935621, 37.438397],\n            [-81.949367, 37.445687],\n            [-81.968795, 37.451496],\n            [-81.987006, 37.454878],\n            [-81.99227, 37.460916],\n            [-81.996578, 37.476705],\n            [-81.992916, 37.482969],\n            [-81.94264, 37.508844],\n            [-81.92787, 37.512118],\n            [-81.968297, 37.537798],\n            [-82.291908, 37.311642],\n            [-82.305874, 37.3011],\n            [-82.310793, 37.297387],\n            [-82.350948, 37.267077],\n            [-82.510826, 37.218091],\n            [-82.553549, 37.200867],\n            [-82.565329, 37.196118],\n            [-82.565375, 37.196092],\n            [-82.624878, 37.162932],\n            [-82.721941, 37.105689],\n            [-82.720597, 37.081833],\n            [-82.722472, 37.045101],\n            [-82.771795, 37.015716],\n            [-82.777368, 37.015279],\n            [-82.788897, 37.00816],\n            [-82.789092, 37.007995],\n            [-82.790462, 37.007263],\n            [-82.79089, 37.00676],\n            [-82.800531, 37.007944],\n            [-82.815748, 37.007196],\n            [-82.818006, 37.006161],\n            [-82.830588, 37.000945],\n            [-82.829125, 36.997541],\n            [-82.830802, 36.993445],\n            [-82.833843, 36.991973],\n            [-82.836008, 36.988837],\n            [-82.838549, 36.987027],\n            [-82.840051, 36.987113],\n            [-82.851397, 36.984497],\n            [-82.852614, 36.984963],\n            [-82.862926, 36.979975],\n            [-82.864909, 36.97901],\n            [-82.866019, 36.978272],\n            [-82.866689, 36.978052],\n            [-82.867535, 36.977518],\n            [-82.868455, 36.976481],\n            [-82.869183, 36.974183],\n            [-82.869183, 36.974182],\n            [-82.870274, 36.965993],\n            [-82.87023, 36.965498],\n            [-82.867358, 36.963182],\n            [-82.865404, 36.958084],\n            [-82.864211, 36.957983],\n            [-82.862866, 36.957765],\n            [-82.860534, 36.956015],\n            [-82.858443, 36.954036],\n            [-82.855705, 36.953808],\n            [-82.856099, 36.952471],\n            [-82.860633, 36.94584],\n            [-82.861282, 36.944848],\n            [-82.861684, 36.939316],\n            [-82.860537, 36.937439],\n            [-82.858784, 36.933065],\n            [-82.858461, 36.932717],\n            [-82.861943, 36.924236],\n            [-82.863468, 36.922308],\n            [-82.872136, 36.913456],\n            [-82.873777, 36.912299],\n            [-82.885618, 36.900415],\n            [-82.91169, 36.874248],\n            [-82.911824, 36.874243],\n            [-82.973395, 36.859097],\n            [-83.07259, 36.854589],\n            [-83.099792, 36.824889],\n            [-83.131694, 36.781488],\n            [-83.131245, 36.767105],\n            [-83.125655, 36.761407],\n            [-83.125728, 36.761276],\n            [-83.127833, 36.750828],\n            [-83.136395, 36.743088],\n            [-83.167396, 36.739187],\n            [-83.199698, 36.737487],\n            [-83.342804, 36.701286],\n            [-83.353613, 36.696699],\n            [-83.354606, 36.696153],\n            [-83.460808, 36.664885],\n            [-83.461013, 36.664916],\n            [-83.498011, 36.670485],\n            [-83.527212, 36.665984],\n            [-83.649513, 36.616683],\n            [-83.675413, 36.600814],\n            [-83.670141, 36.600797],\n            [-83.670128, 36.600764],\n            [-83.472108, 36.597284],\n            [-83.2763, 36.598187],\n            [-83.250304, 36.593935],\n            [-83.249899, 36.593898],\n            [-83.248933, 36.593827],\n            [-83.028357, 36.593893],\n            [-83.02725, 36.593847],\n            [-82.985087, 36.593829],\n            [-82.830433, 36.593761],\n            [-82.69578, 36.593698],\n            [-82.679879, 36.593698],\n            [-82.609176, 36.594099],\n            [-82.561074, 36.5948],\n            [-82.559774, 36.5948],\n            [-82.554294, 36.594876],\n            [-82.293814, 36.595565],\n            [-82.243274, 36.595699],\n            [-82.226653, 36.595743],\n            [-82.225716, 36.595744],\n            [-82.223445, 36.595721],\n            [-82.221713, 36.595814],\n            [-82.211005, 36.59586],\n            [-82.210497, 36.595772],\n            [-82.188491, 36.595179],\n            [-82.18074, 36.594928],\n            [-82.177247, 36.594768],\n            [-82.173982, 36.594607],\n            [-82.150727, 36.594673],\n            [-82.148569, 36.594718],\n            [-82.14607, 36.594712],\n            [-81.934144, 36.594213],\n            [-81.922644, 36.616213],\n            [-81.826742, 36.614215],\n            [-81.6469, 36.611918],\n            [-81.677535, 36.588117],\n            [-81.60697, 36.587094],\n            [-81.521032, 36.58052],\n            [-81.353322, 36.574723],\n            [-81.353169, 36.574724],\n            [-81.307511, 36.575024],\n            [-81.061866, 36.56702],\n            [-81.058844, 36.566976],\n            [-80.945988, 36.563196],\n            [-80.944338, 36.563058],\n            [-80.901836, 36.561754],\n            [-80.901726, 36.561751],\n            [-80.837954, 36.559131],\n            [-80.837641, 36.559118],\n            [-80.837089, 36.559154],\n            [-80.744101, 36.561686],\n            [-80.687539, 36.561411],\n            [-80.612158, 36.558127],\n            [-80.4401, 36.55063],\n            [-80.432628, 36.550302],\n            [-80.431605, 36.550219],\n            [-80.228263, 36.543867],\n            [-80.225408, 36.543748],\n            [-80.171636, 36.543219],\n            [-80.169535, 36.54319],\n            [-80.053455, 36.542623],\n            [-80.027269, 36.542495],\n            [-79.967511, 36.542502],\n            [-79.966979, 36.542475],\n            [-79.920239, 36.542365],\n            [-79.714855, 36.541884],\n            [-79.667309, 36.541772],\n            [-79.666827, 36.541772],\n            [-79.510961, 36.54074],\n            [-79.510647, 36.540738],\n            [-79.470047, 36.541025],\n            [-79.445961, 36.541195],\n            [-79.445687, 36.541218],\n            [-79.342696, 36.541382],\n            [-79.218638, 36.541579],\n            [-79.20948, 36.541594],\n            [-79.208686, 36.541571],\n            [-79.137936, 36.541739],\n            [-79.126078, 36.541533],\n            [-79.124736, 36.541568],\n            [-78.971814, 36.542123],\n            [-78.970577, 36.542154],\n            [-78.942254, 36.542079],\n            [-78.942009, 36.542113],\n            [-78.91542, 36.541974],\n            [-78.914543, 36.541972],\n            [-78.7963, 36.541713],\n            [-78.76543, 36.541727],\n            [-78.758392, 36.541852],\n            [-78.734122, 36.541902],\n            [-78.670051, 36.542035],\n            [-78.663317, 36.542011],\n            [-78.533013, 36.541004],\n            [-78.529722, 36.540981],\n            [-78.471022, 36.542307],\n            [-78.470792, 36.542316],\n            [-78.45697, 36.542474],\n            [-78.441199, 36.542687],\n            [-78.436333, 36.542666],\n            [-78.323912, 36.543809],\n            [-78.246681, 36.544341],\n            [-78.245462, 36.544411],\n            [-78.133323, 36.543847],\n            [-78.132911, 36.543811],\n            [-78.046202, 36.544168],\n            [-78.03942, 36.544196],\n            [-78.038938, 36.544173],\n            [-77.899771, 36.544663],\n            [-77.882357, 36.544737],\n            [-77.87528, 36.544754],\n            [-77.767117, 36.544752],\n            [-77.296875, 36.544746],\n            [-77.24969, 36.544745],\n            [-77.1645, 36.54633],\n            [-76.916048, 36.543815],\n            [-76.916001, 36.543818],\n            [-76.915384, 36.543856],\n            [-76.807078, 36.550606],\n            [-76.781296, 36.550659],\n            [-76.541687, 36.550312],\n            [-76.541391, 36.550312],\n            [-76.491497, 36.550365],\n            [-76.313215, 36.550551],\n            [-76.313196, 36.550551],\n            [-76.12236, 36.550621],\n            [-76.034751, 36.550653],\n            [-76.02675, 36.550553],\n            [-75.957648, 36.550553],\n            [-75.955748, 36.550553],\n            [-75.953447, 36.550553],\n            [-75.952847, 36.550553],\n            [-75.922046, 36.550654],\n            [-75.911446, 36.550654],\n            [-75.909046, 36.550654],\n            [-75.904745, 36.550654],\n            [-75.903445, 36.550654],\n            [-75.894145, 36.550754],\n            [-75.893245, 36.550654],\n            [-75.891945, 36.550754],\n            [-75.886545, 36.550754],\n            [-75.885945, 36.550754],\n            [-75.880644, 36.550754],\n            [-75.879744, 36.550754],\n            [-75.867044, 36.550754],\n            [-75.874145, 36.583853],\n            [-75.890946, 36.630753],\n            [-75.921748, 36.692051],\n            [-75.94955, 36.76115],\n            [-75.965451, 36.812449],\n            [-75.972151, 36.842268],\n            [-75.991552, 36.910847],\n            [-75.996252, 36.922047],\n            [-76.007553, 36.929047],\n            [-76.013753, 36.930746],\n            [-76.033454, 36.931946],\n            [-76.043054, 36.927547],\n            [-76.058154, 36.916947],\n            [-76.087955, 36.908647],\n            [-76.095508, 36.908817],\n            [-76.139557, 36.923047],\n            [-76.177019, 36.92929],\n            [-76.189959, 36.931447],\n            [-76.22166, 36.939547],\n            [-76.234961, 36.945147],\n            [-76.267962, 36.964547],\n            [-76.285063, 36.968747],\n            [-76.297663, 36.968147],\n            [-76.299364, 36.965547],\n            [-76.315867, 36.955351],\n            [-76.322764, 36.959147],\n            [-76.327365, 36.959447],\n            [-76.330765, 36.938647],\n            [-76.328864, 36.918447],\n            [-76.333158, 36.917293],\n            [-76.344663, 36.919313],\n            [-76.345569, 36.924531],\n            [-76.353765, 36.922747],\n            [-76.385867, 36.923247],\n            [-76.387567, 36.899547],\n            [-76.406908, 36.897507],\n            [-76.407507, 36.897444],\n            [-76.43122, 36.904532],\n            [-76.441605, 36.906116],\n            [-76.447413, 36.90322],\n            [-76.453941, 36.89274],\n            [-76.45329, 36.887031],\n            [-76.454692, 36.884077],\n            [-76.469914, 36.882898],\n            [-76.483369, 36.896239],\n            [-76.482135, 36.901108],\n            [-76.482407, 36.917364],\n            [-76.484107, 36.928916],\n            [-76.487559, 36.952372],\n            [-76.500355, 36.965212],\n            [-76.513363, 36.968057],\n            [-76.521006, 36.973187],\n            [-76.524142, 36.978316],\n            [-76.522971, 36.981085],\n            [-76.524853, 36.983833],\n            [-76.551246, 36.998946],\n            [-76.562923, 37.003796],\n            [-76.565803, 37.007493],\n            [-76.576617, 37.021374],\n            [-76.577531, 37.022548],\n            [-76.57816, 37.022982],\n            [-76.579236, 37.023726],\n            [-76.579393, 37.023835],\n            [-76.584478, 37.027349],\n            [-76.586491, 37.02874],\n            [-76.612124, 37.035604],\n            [-76.646013, 37.036228],\n            [-76.653998, 37.039172],\n            [-76.662558, 37.045748],\n            [-76.66835, 37.05506],\n            [-76.669822, 37.06426],\n            [-76.669118, 37.068132],\n            [-76.668295, 37.072656],\n            [-76.667646, 37.076228],\n            [-76.667219, 37.077149],\n            [-76.666526, 37.078643],\n            [-76.66555, 37.080746],\n            [-76.659394, 37.094019],\n            [-76.65811, 37.096787],\n            [-76.657703, 37.101161],\n            [-76.657101, 37.107617],\n            [-76.656894, 37.109843],\n            [-76.66375, 37.129979],\n            [-76.665641, 37.135534],\n            [-76.665833, 37.136098],\n            [-76.666542, 37.138179],\n            [-76.669604, 37.140534],\n            [-76.671588, 37.14206],\n            [-76.67147, 37.158739],\n            [-76.66867, 37.166771],\n            [-76.66427, 37.171027],\n            [-76.663774, 37.173875],\n            [-76.669886, 37.183571],\n            [-76.685614, 37.198851],\n            [-76.691918, 37.195731],\n            [-76.692926, 37.186147],\n            [-76.696735, 37.174403],\n            [-76.715295, 37.148035],\n            [-76.73032, 37.145395],\n            [-76.73728, 37.146164],\n            [-76.747632, 37.150548],\n            [-76.756899, 37.161582],\n            [-76.796905, 37.189404],\n            [-76.802511, 37.198308],\n            [-76.803198, 37.201513],\n            [-76.801023, 37.206043],\n            [-76.791555, 37.207564],\n            [-76.780532, 37.209336],\n            [-76.773752, 37.206061],\n            [-76.757765, 37.191658],\n            [-76.75047, 37.190098],\n            [-76.74304, 37.192611],\n            [-76.74, 37.195379],\n            [-76.73432, 37.204211],\n            [-76.730951, 37.213813],\n            [-76.698943, 37.219059],\n            [-76.693373, 37.221228],\n            [-76.689166, 37.222866],\n            [-76.649869, 37.220914],\n            [-76.641085, 37.216002],\n            [-76.639608, 37.214783],\n            [-76.629868, 37.206738],\n            [-76.623292, 37.198738],\n            [-76.621113, 37.195103],\n            [-76.619962, 37.193184],\n            [-76.61934, 37.192146],\n            [-76.618008, 37.186429],\n            [-76.617537, 37.184409],\n            [-76.616804, 37.18126],\n            [-76.616268, 37.178962],\n            [-76.614221, 37.174335],\n            [-76.613599, 37.172931],\n            [-76.612517, 37.170486],\n            [-76.611018, 37.167097],\n            [-76.610972, 37.166994],\n            [-76.606684, 37.166674],\n            [-76.604476, 37.160034],\n            [-76.617084, 37.144498],\n            [-76.622252, 37.142146],\n            [-76.62478, 37.127091],\n            [-76.618252, 37.119347],\n            [-76.579499, 37.096627],\n            [-76.567931, 37.080467],\n            [-76.564219, 37.077507],\n            [-76.555066, 37.075859],\n            [-76.536875, 37.083942],\n            [-76.528997, 37.079388],\n            [-76.526203, 37.077773],\n            [-76.526573, 37.070047],\n            [-76.527973, 37.068247],\n            [-76.526273, 37.062947],\n            [-76.518242, 37.055351],\n            [-76.512289, 37.054858],\n            [-76.509339, 37.053173],\n            [-76.507614, 37.052188],\n            [-76.46949, 37.030414],\n            [-76.464471, 37.027547],\n            [-76.448231, 37.007705],\n            [-76.449891, 37.004868],\n            [-76.452461, 37.004603],\n            [-76.452118, 36.998163],\n            [-76.428869, 36.969947],\n            [-76.418969, 36.964047],\n            [-76.411768, 36.962847],\n            [-76.408568, 36.969147],\n            [-76.396368, 36.982347],\n            [-76.387711, 36.989671],\n            [-76.383367, 36.993347],\n            [-76.373567, 36.998347],\n            [-76.356366, 37.002947],\n            [-76.348066, 37.006747],\n            [-76.340666, 37.015246],\n            [-76.34011, 37.015212],\n            [-76.329531, 37.014556],\n            [-76.318065, 37.013846],\n            [-76.314624, 37.00933],\n            [-76.315008, 37.001683],\n            [-76.312048, 37.000371],\n            [-76.304272, 37.001378],\n            [-76.300352, 37.00885],\n            [-76.292863, 37.035145],\n            [-76.271262, 37.084544],\n            [-76.274463, 37.094544],\n            [-76.287236, 37.117453],\n            [-76.292344, 37.126615],\n            [-76.311088, 37.138495],\n            [-76.324353, 37.142895],\n            [-76.330481, 37.141727],\n            [-76.334017, 37.144223],\n            [-76.340129, 37.151823],\n            [-76.34405, 37.160367],\n            [-76.344898, 37.164479],\n            [-76.343234, 37.166207],\n            [-76.348658, 37.170655],\n            [-76.35969, 37.16858],\n            [-76.375255, 37.16084],\n            [-76.381379, 37.155711],\n            [-76.394756, 37.157568],\n            [-76.399659, 37.160272],\n            [-76.397883, 37.164415],\n            [-76.391252, 37.179887],\n            [-76.389284, 37.193503],\n            [-76.396052, 37.201087],\n            [-76.3936, 37.214049],\n            [-76.389793, 37.222981],\n            [-76.394132, 37.22515],\n            [-76.471799, 37.216016],\n            [-76.494008, 37.225408],\n            [-76.50364, 37.233856],\n            [-76.4989, 37.241015],\n            [-76.493302, 37.24947],\n            [-76.48284, 37.254831],\n            [-76.475927, 37.250543],\n            [-76.429141, 37.25331],\n            [-76.421765, 37.255198],\n            [-76.417173, 37.26395],\n            [-76.392788, 37.264973],\n            [-76.36229, 37.270226],\n            [-76.349489, 37.273963],\n            [-76.352556, 37.278334],\n            [-76.369029, 37.279311],\n            [-76.381075, 37.28534],\n            [-76.385603, 37.294108],\n            [-76.38777, 37.30767],\n            [-76.406388, 37.332924],\n            [-76.434965, 37.354524],\n            [-76.445333, 37.36646],\n            [-76.437525, 37.37975],\n            [-76.422503, 37.381355],\n            [-76.418176, 37.385064],\n            [-76.418719, 37.3978],\n            [-76.415167, 37.402133],\n            [-76.404756, 37.400213],\n            [-76.393125, 37.398068],\n            [-76.393958, 37.39594],\n            [-76.391437, 37.390284],\n            [-76.387112, 37.385061],\n            [-76.366751, 37.374495],\n            [-76.337476, 37.364014],\n            [-76.31205, 37.338088],\n            [-76.308581, 37.329366],\n            [-76.291324, 37.324145],\n            [-76.282555, 37.319107],\n            [-76.275552, 37.309964],\n            [-76.272005, 37.322194],\n            [-76.272888, 37.335174],\n            [-76.264847, 37.357399],\n            [-76.262407, 37.360786],\n            [-76.258277, 37.36202],\n            [-76.24846, 37.375135],\n            [-76.245283, 37.386839],\n            [-76.246617, 37.404122],\n            [-76.250454, 37.421886],\n            [-76.252415, 37.447274],\n            [-76.265056, 37.481365],\n            [-76.281043, 37.507821],\n            [-76.288167, 37.514118],\n            [-76.293599, 37.516499],\n            [-76.297651, 37.515424],\n            [-76.298456, 37.512677],\n            [-76.296445, 37.511235],\n            [-76.297739, 37.506863],\n            [-76.306952, 37.497488],\n            [-76.32947, 37.49492],\n            [-76.352678, 37.504913],\n            [-76.359378, 37.513426],\n            [-76.360474, 37.51924],\n            [-76.355084, 37.527364],\n            [-76.348992, 37.536548],\n            [-76.339989, 37.53833],\n            [-76.330598, 37.536391],\n            [-76.302762, 37.551295],\n            [-76.29796, 37.557636],\n            [-76.300144, 37.561734],\n            [-76.332641, 37.570042],\n            [-76.357835, 37.573699],\n            [-76.383188, 37.573056],\n            [-76.410781, 37.581815],\n            [-76.420252, 37.598686],\n            [-76.435474, 37.612807],\n            [-76.527188, 37.611315],\n            [-76.533777, 37.61253],\n            [-76.542666, 37.616857],\n            [-76.574049, 37.646781],\n            [-76.583143, 37.661986],\n            [-76.579591, 37.671508],\n            [-76.597868, 37.702918],\n            [-76.598073, 37.70912],\n            [-76.595943, 37.712989],\n            [-76.597213, 37.717269],\n            [-76.606466, 37.724819],\n            [-76.61997, 37.731271],\n            [-76.621433, 37.737973],\n            [-76.617373, 37.742347],\n            [-76.61971, 37.744795],\n            [-76.639962, 37.750941],\n            [-76.663887, 37.751887],\n            [-76.677002, 37.7561],\n            [-76.680922, 37.759647],\n            [-76.683372, 37.765507],\n            [-76.683359, 37.770258],\n            [-76.683343, 37.775783],\n            [-76.681901, 37.778118],\n            [-76.683775, 37.781391],\n            [-76.689773, 37.78519],\n            [-76.715498, 37.785873],\n            [-76.723863, 37.788503],\n            [-76.734309, 37.79866],\n            [-76.7512, 37.824141],\n            [-76.766328, 37.840437],\n            [-76.782826, 37.863184],\n            [-76.784618, 37.869569],\n            [-76.77539, 37.874306],\n            [-76.765711, 37.879274],\n            [-76.747552, 37.875864],\n            [-76.738395, 37.865373],\n            [-76.733046, 37.852009],\n            [-76.72718, 37.842263],\n            [-76.722156, 37.83668],\n            [-76.701606, 37.822677],\n            [-76.692747, 37.82277],\n            [-76.680197, 37.825654],\n            [-76.658302, 37.806815],\n            [-76.651413, 37.796239],\n            [-76.642276, 37.792317],\n            [-76.615351, 37.780759],\n            [-76.602024, 37.772731],\n            [-76.595939, 37.77168],\n            [-76.593835, 37.772848],\n            [-76.584289, 37.76889],\n            [-76.576387, 37.757493],\n            [-76.560476, 37.727827],\n            [-76.54005, 37.704432],\n            [-76.537228, 37.698892],\n            [-76.535302, 37.687516],\n            [-76.537698, 37.66893],\n            [-76.536548, 37.663574],\n            [-76.510187, 37.642324],\n            [-76.501522, 37.643762],\n            [-76.497564, 37.647056],\n            [-76.491799, 37.663614],\n            [-76.489576, 37.666201],\n            [-76.472392, 37.665772],\n            [-76.443254, 37.652347],\n            [-76.399236, 37.628636],\n            [-76.390054, 37.630326],\n            [-76.381106, 37.627003],\n            [-76.36232, 37.610368],\n            [-76.309174, 37.621892],\n            [-76.28037, 37.613715],\n            [-76.279447, 37.618225],\n            [-76.287959, 37.631771],\n            [-76.292534, 37.636098],\n            [-76.306464, 37.642005],\n            [-76.332562, 37.645817],\n            [-76.339892, 37.655966],\n            [-76.324808, 37.676983],\n            [-76.320216, 37.680666],\n            [-76.315161, 37.68472],\n            [-76.312079, 37.684651],\n            [-76.302545, 37.689],\n            [-76.300067, 37.695364],\n            [-76.302803, 37.704474],\n            [-76.312858, 37.720338],\n            [-76.304917, 37.729913],\n            [-76.312108, 37.750522],\n            [-76.306489, 37.788646],\n            [-76.310307, 37.794849],\n            [-76.307482, 37.81235],\n            [-76.293525, 37.822717],\n            [-76.284904, 37.822308],\n            [-76.281985, 37.818068],\n            [-76.282592, 37.814109],\n            [-76.280544, 37.812597],\n            [-76.275178, 37.812664],\n            [-76.266057, 37.8174],\n            [-76.251358, 37.833072],\n            [-76.245072, 37.861918],\n            [-76.236725, 37.889174],\n            [-76.265998, 37.91138],\n            [-76.343848, 37.947345],\n            [-76.360211, 37.952329],\n            [-76.391439, 37.958742],\n            [-76.416299, 37.966828],\n            [-76.427487, 37.977038],\n            [-76.462542, 37.998572],\n            [-76.465291, 38.010226],\n            [-76.469343, 38.013544],\n            [-76.491998, 38.017222],\n            [-76.516547, 38.026566],\n            [-76.519536, 38.034814],\n            [-76.522354, 38.04259],\n            [-76.535919, 38.069532],\n            [-76.543155, 38.076971],\n            [-76.579497, 38.09487],\n            [-76.600937, 38.110084],\n            [-76.604131, 38.128771],\n            [-76.613939, 38.148587],\n            [-76.629476, 38.15305],\n            [-76.638983, 38.151476],\n            [-76.643448, 38.14825],\n            [-76.665127, 38.147638],\n            [-76.684892, 38.156497],\n            [-76.701297, 38.155718],\n            [-76.704048, 38.149264],\n            [-76.721722, 38.137635],\n            [-76.738938, 38.14651],\n            [-76.740278, 38.152824],\n            [-76.743064, 38.156988],\n            [-76.749685, 38.162114],\n            [-76.760241, 38.166581],\n            [-76.788445, 38.169199],\n            [-76.802968, 38.167988],\n            [-76.824274, 38.163639],\n            [-76.838795, 38.163476],\n            [-76.875272, 38.172207],\n            [-76.910832, 38.197073],\n            [-76.916922, 38.199751],\n            [-76.937134, 38.202384],\n            [-76.962311, 38.214075],\n            [-76.967335, 38.227185],\n            [-76.966553, 38.229542],\n            [-76.962375, 38.230093],\n            [-76.957417, 38.236341],\n            [-76.957796, 38.243183],\n            [-76.96215, 38.256486],\n            [-76.981372, 38.274214],\n            [-76.990255, 38.273935],\n            [-76.99767, 38.278047],\n            [-77.026304, 38.302685],\n            [-77.030683, 38.311623],\n            [-77.020947, 38.329273],\n            [-77.016932, 38.341697],\n            [-77.011827, 38.374554],\n            [-77.024866, 38.386791],\n            [-77.043526, 38.400548],\n            [-77.051437, 38.399083],\n            [-77.056032, 38.3962],\n            [-77.069956, 38.377895],\n            [-77.08481, 38.368297],\n            [-77.094665, 38.367715],\n            [-77.104717, 38.369655],\n            [-77.138224, 38.367917],\n            [-77.155191, 38.351047],\n            [-77.162692, 38.345994],\n            [-77.17934, 38.341915],\n            [-77.199433, 38.34089],\n            [-77.240072, 38.331598],\n            [-77.265295, 38.333165],\n            [-77.279633, 38.339444],\n            [-77.286202, 38.347024],\n            [-77.286202, 38.347025],\n            [-77.28835, 38.351286],\n            [-77.288145, 38.359477],\n            [-77.296077, 38.369797],\n            [-77.317288, 38.383576],\n            [-77.314848, 38.389579],\n            [-77.312201, 38.390958],\n            [-77.310719, 38.397669],\n            [-77.319036, 38.417803],\n            [-77.32544, 38.44885],\n            [-77.322622, 38.467131],\n            [-77.310334, 38.493926],\n            [-77.302457, 38.504683],\n            [-77.300776, 38.506978],\n            [-77.298844, 38.508724],\n            [-77.29582, 38.511457],\n            [-77.291103, 38.515721],\n            [-77.283503, 38.525221],\n            [-77.276303, 38.53962],\n            [-77.276603, 38.54712],\n            [-77.26083, 38.56533],\n            [-77.265304, 38.580319],\n            [-77.26443, 38.582845],\n            [-77.247003, 38.590618],\n            [-77.246441, 38.599532],\n            [-77.245104, 38.620717],\n            [-77.248904, 38.628617],\n            [-77.246704, 38.635217],\n            [-77.240604, 38.638917],\n            [-77.22235, 38.638091],\n            [-77.216303, 38.637817],\n            [-77.205103, 38.623917],\n            [-77.204302, 38.617817],\n            [-77.202002, 38.617217],\n            [-77.174902, 38.624217],\n            [-77.157501, 38.636417],\n            [-77.1302, 38.635017],\n            [-77.135901, 38.649817],\n            [-77.132501, 38.673816],\n            [-77.121101, 38.686616],\n            [-77.1059, 38.696815],\n            [-77.086113, 38.705792],\n            [-77.074599, 38.711015],\n            [-77.05991, 38.734419],\n            [-77.041398, 38.763914],\n            [-77.039239, 38.7852],\n            [-77.038598, 38.791513],\n            [-77.032986, 38.8395],\n            [-77.031698, 38.850512],\n            [-77.040599, 38.871212],\n            [-77.068199, 38.899811],\n            [-77.0902, 38.904211],\n            [-77.1012, 38.911111],\n            [-77.119863, 38.934265],\n            [-77.1199, 38.934311],\n            [-77.137701, 38.95531],\n            [-77.148179, 38.965002],\n            [-77.166901, 38.96811],\n            [-77.197502, 38.96681],\n            [-77.221502, 38.97131],\n            [-77.235403, 38.97661],\n            [-77.249803, 38.985909],\n            [-77.255703, 39.002409],\n            [-77.251803, 39.011409],\n            [-77.261403, 39.031009],\n            [-77.291605, 39.045408],\n            [-77.328002, 39.058554],\n            [-77.340287, 39.062991],\n            [-77.375079, 39.061297],\n            [-77.42318, 39.066878],\n            [-77.458202, 39.073723],\n            [-77.519929, 39.120925],\n            [-77.524559, 39.127821],\n            [-77.527282, 39.146236],\n            [-77.516426, 39.170891],\n            [-77.510631, 39.178484],\n            [-77.505162, 39.18205],\n            [-77.485971, 39.185665],\n            [-77.478596, 39.189168],\n            [-77.458884, 39.219826],\n            [-77.458779, 39.22028],\n            [-77.45768, 39.22502],\n            [-77.46021, 39.228359],\n            [-77.484605, 39.245941],\n            [-77.511222, 39.2535],\n            [-77.534461, 39.262361],\n            [-77.543228, 39.266937],\n            [-77.545846, 39.271535],\n            [-77.560854, 39.286152],\n            [-77.592739, 39.30129],\n            [-77.667749, 39.318129],\n            [-77.677505, 39.318699],\n            [-77.719029, 39.321125],\n            [-77.750267, 39.289284],\n            [-77.753357, 39.280331],\n            [-77.75306, 39.277971],\n            [-77.753105, 39.27734],\n            [-77.755193, 39.275191],\n            [-77.755698, 39.274575],\n            [-77.758412, 39.269197],\n            [-77.758733, 39.268114],\n            [-77.761217, 39.263721],\n            [-77.761768, 39.263031],\n            [-77.768, 39.257657],\n            [-77.768992, 39.256417],\n            [-77.767277, 39.24938],\n            [-77.771415, 39.236776],\n            [-77.822182, 39.139985],\n            [-77.828157, 39.132329],\n            [-78.032841, 39.264403],\n            [-78.033183, 39.264624],\n            [-78.033185, 39.264626],\n            [-78.228766, 39.391233],\n            [-78.347087, 39.466012],\n            [-78.362267, 39.357784],\n            [-78.34048, 39.353492],\n            [-78.35894, 39.319484],\n            [-78.360035, 39.317771],\n            [-78.399785, 39.244129],\n            [-78.399669, 39.243874],\n            [-78.423968, 39.212049],\n            [-78.427911, 39.208611],\n            [-78.429803, 39.207014],\n            [-78.431167, 39.205744],\n            [-78.43213, 39.204717],\n            [-78.437053, 39.199766],\n            [-78.438651, 39.198049],\n            [-78.426722, 39.188903],\n            [-78.41074, 39.171983],\n            [-78.418377, 39.156656],\n            [-78.439429, 39.132146],\n            [-78.459869, 39.113351],\n            [-78.508132, 39.08863],\n            [-78.544111, 39.056676],\n            [-78.571901, 39.031995],\n            [-78.565837, 39.026303],\n            [-78.554222, 39.019672],\n            [-78.557647, 39.013189],\n            [-78.601655, 38.964603],\n            [-78.710949, 38.910175],\n            [-78.714135, 38.911176],\n            [-78.716956, 38.916273],\n            [-78.719755, 38.922135],\n            [-78.719806, 38.922638],\n            [-78.757278, 38.903203],\n            [-78.779198, 38.892298],\n            [-78.788031, 38.885123],\n            [-78.808181, 38.856175],\n            [-78.835191, 38.811499],\n            [-78.869276, 38.762991]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"stroke\": \"#080\",\n        \"fill\": \"#080\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78.869276, 38.762991],\n            [-78.993997, 38.850102],\n            [-78.999752, 38.846162],\n            [-79.055354, 38.782213],\n            [-79.057253, 38.761413],\n            [-79.092555, 38.700149],\n            [-79.092271, 38.699208],\n            [-79.135472, 38.644057],\n            [-79.135546, 38.643715],\n            [-79.136374, 38.6424],\n            [-79.137012, 38.640655],\n            [-79.146741, 38.625819],\n            [-79.146974, 38.625641],\n            [-79.174512, 38.566531],\n            [-79.174881, 38.566314],\n            [-79.207884, 38.500428],\n            [-79.207873, 38.500122],\n            [-79.209703, 38.495574],\n            [-79.210008, 38.494283],\n            [-79.210026, 38.494231],\n            [-79.225839, 38.479446],\n            [-79.23162, 38.474041],\n            [-79.234408, 38.473011],\n            [-79.240059, 38.469841],\n            [-79.242024, 38.464332],\n            [-79.26291, 38.444586],\n            [-79.263376, 38.443762],\n            [-79.265327, 38.441772],\n            [-79.267414, 38.438322],\n            [-79.282663, 38.431021],\n            [-79.280263, 38.425475],\n            [-79.290529, 38.420757],\n            [-79.291813, 38.419627],\n            [-79.295712, 38.418129],\n            [-79.297758, 38.416438],\n            [-79.312276, 38.411876],\n            [-79.476638, 38.457228],\n            [-79.521469, 38.533918],\n            [-79.53687, 38.550917],\n            [-79.555471, 38.560217],\n            [-79.597955, 38.572767],\n            [-79.649075, 38.591515],\n            [-79.669128, 38.510975],\n            [-79.669128, 38.510883],\n            [-79.695565, 38.477842],\n            [-79.699006, 38.475148],\n            [-79.688205, 38.450476],\n            [-79.688962, 38.449538],\n            [-79.689544, 38.442511],\n            [-79.691377, 38.439558],\n            [-79.731661, 38.374143],\n            [-79.808711, 38.309429],\n            [-79.810115, 38.305037],\n            [-79.788945, 38.268703],\n            [-79.790134, 38.267654],\n            [-79.794568, 38.264856],\n            [-79.891999, 38.203378],\n            [-79.892345, 38.202397],\n            [-79.916174, 38.184386],\n            [-79.917061, 38.183741],\n            [-79.921196, 38.180378],\n            [-79.921026, 38.179954],\n            [-79.925251, 38.150465],\n            [-79.925512, 38.150237],\n            [-79.928683, 38.144928],\n            [-79.928747, 38.144436],\n            [-79.933751, 38.135508],\n            [-79.938394, 38.130563],\n            [-79.931034, 38.101402],\n            [-79.933911, 38.099168],\n            [-79.959844, 38.063697],\n            [-79.978427, 38.029082],\n            [-80.002507, 37.992767],\n            [-80.055278, 37.951702],\n            [-80.130464, 37.893194],\n            [-80.14613, 37.884453],\n            [-80.147316, 37.885936],\n            [-80.148964, 37.886057],\n            [-80.162202, 37.875122],\n            [-80.227092, 37.798886],\n            [-80.231551, 37.792591],\n            [-80.257411, 37.756084],\n            [-80.262765, 37.738336],\n            [-80.260313, 37.733517],\n            [-80.259342, 37.731205],\n            [-80.263936, 37.719137],\n            [-80.287107, 37.696403],\n            [-80.296138, 37.691783],\n            [-80.292337, 37.683976],\n            [-80.292258, 37.683732],\n            [-80.270323, 37.648982],\n            [-80.270352, 37.648929],\n            [-80.267455, 37.646108],\n            [-80.267228, 37.646011],\n            [-80.264874, 37.645511],\n            [-80.26483, 37.645526],\n            [-80.263291, 37.645101],\n            [-80.263281, 37.645082],\n            [-80.254469, 37.642333],\n            [-80.254431, 37.642352],\n            [-80.239288, 37.637672],\n            [-80.220984, 37.627767],\n            [-80.223386, 37.623185],\n            [-80.240272, 37.606961],\n            [-80.288766, 37.58196],\n            [-80.312393, 37.546239],\n            [-80.321044921875, 37.5414114468743],\n            [-80.321044921875, 37.51515204394254],\n            [-80.314806, 37.500943],\n            [-80.320627, 37.49888],\n            [-80.321044921875, 37.49868500772584],\n            [-80.321044921875, 36.5467653228637],\n            [-80.228263, 36.543867],\n            [-80.225408, 36.543748],\n            [-80.171636, 36.543219],\n            [-80.169535, 36.54319],\n            [-80.053455, 36.542623],\n            [-80.027269, 36.542495],\n            [-79.967511, 36.542502],\n            [-79.966979, 36.542475],\n            [-79.920239, 36.542365],\n            [-79.714855, 36.541884],\n            [-79.667309, 36.541772],\n            [-79.666827, 36.541772],\n            [-79.510961, 36.54074],\n            [-79.510647, 36.540738],\n            [-79.470047, 36.541025],\n            [-79.445961, 36.541195],\n            [-79.445687, 36.541218],\n            [-79.342696, 36.541382],\n            [-79.218638, 36.541579],\n            [-79.20948, 36.541594],\n            [-79.208686, 36.541571],\n            [-79.137936, 36.541739],\n            [-79.126078, 36.541533],\n            [-79.124736, 36.541568],\n            [-78.971814, 36.542123],\n            [-78.970577, 36.542154],\n            [-78.942254, 36.542079],\n            [-78.942009, 36.542113],\n            [-78.91542, 36.541974],\n            [-78.914543, 36.541972],\n            [-78.7963, 36.541713],\n            [-78.76543, 36.541727],\n            [-78.758392, 36.541852],\n            [-78.734122, 36.541902],\n            [-78.670051, 36.542035],\n            [-78.663317, 36.542011],\n            [-78.533013, 36.541004],\n            [-78.529722, 36.540981],\n            [-78.471022, 36.542307],\n            [-78.470792, 36.542316],\n            [-78.45697, 36.542474],\n            [-78.441199, 36.542687],\n            [-78.436333, 36.542666],\n            [-78.323912, 36.543809],\n            [-78.246681, 36.544341],\n            [-78.245462, 36.544411],\n            [-78.133323, 36.543847],\n            [-78.132911, 36.543811],\n            [-78.046202, 36.544168],\n            [-78.03942, 36.544196],\n            [-78.038938, 36.544173],\n            [-77.899771, 36.544663],\n            [-77.882357, 36.544737],\n            [-77.87528, 36.544754],\n            [-77.767117, 36.544752],\n            [-77.296875, 36.544746],\n            [-77.24969, 36.544745],\n            [-77.1645, 36.54633],\n            [-76.916048, 36.543815],\n            [-76.916001, 36.543818],\n            [-76.915384, 36.543856],\n            [-76.807078, 36.550606],\n            [-76.781296, 36.550659],\n            [-76.541748046875, 36.55031208840764],\n            [-76.541748046875, 36.99350733953782],\n            [-76.551246, 36.998946],\n            [-76.562923, 37.003796],\n            [-76.565803, 37.007493],\n            [-76.576617, 37.021374],\n            [-76.577531, 37.022548],\n            [-76.57816, 37.022982],\n            [-76.579236, 37.023726],\n            [-76.579393, 37.023835],\n            [-76.584478, 37.027349],\n            [-76.586491, 37.02874],\n            [-76.612124, 37.035604],\n            [-76.646013, 37.036228],\n            [-76.653998, 37.039172],\n            [-76.662558, 37.045748],\n            [-76.66835, 37.05506],\n            [-76.669822, 37.06426],\n            [-76.669118, 37.068132],\n            [-76.668295, 37.072656],\n            [-76.667646, 37.076228],\n            [-76.667219, 37.077149],\n            [-76.666526, 37.078643],\n            [-76.66555, 37.080746],\n            [-76.659394, 37.094019],\n            [-76.65811, 37.096787],\n            [-76.657703, 37.101161],\n            [-76.657101, 37.107617],\n            [-76.656894, 37.109843],\n            [-76.66375, 37.129979],\n            [-76.665641, 37.135534],\n            [-76.665833, 37.136098],\n            [-76.666542, 37.138179],\n            [-76.669604, 37.140534],\n            [-76.671588, 37.14206],\n            [-76.67147, 37.158739],\n            [-76.66867, 37.166771],\n            [-76.66427, 37.171027],\n            [-76.663774, 37.173875],\n            [-76.669886, 37.183571],\n            [-76.685614, 37.198851],\n            [-76.691918, 37.195731],\n            [-76.692926, 37.186147],\n            [-76.696735, 37.174403],\n            [-76.715295, 37.148035],\n            [-76.73032, 37.145395],\n            [-76.73728, 37.146164],\n            [-76.747632, 37.150548],\n            [-76.756899, 37.161582],\n            [-76.796905, 37.189404],\n            [-76.802511, 37.198308],\n            [-76.803198, 37.201513],\n            [-76.801023, 37.206043],\n            [-76.791555, 37.207564],\n            [-76.780532, 37.209336],\n            [-76.773752, 37.206061],\n            [-76.757765, 37.191658],\n            [-76.75047, 37.190098],\n            [-76.74304, 37.192611],\n            [-76.74, 37.195379],\n            [-76.73432, 37.204211],\n            [-76.730951, 37.213813],\n            [-76.698943, 37.219059],\n            [-76.693373, 37.221228],\n            [-76.689166, 37.222866],\n            [-76.649869, 37.220914],\n            [-76.641085, 37.216002],\n            [-76.639608, 37.214783],\n            [-76.629868, 37.206738],\n            [-76.623292, 37.198738],\n            [-76.621113, 37.195103],\n            [-76.619962, 37.193184],\n            [-76.61934, 37.192146],\n            [-76.618008, 37.186429],\n            [-76.617537, 37.184409],\n            [-76.616804, 37.18126],\n            [-76.616268, 37.178962],\n            [-76.614221, 37.174335],\n            [-76.613599, 37.172931],\n            [-76.612517, 37.170486],\n            [-76.611018, 37.167097],\n            [-76.610972, 37.166994],\n            [-76.606684, 37.166674],\n            [-76.604476, 37.160034],\n            [-76.617084, 37.144498],\n            [-76.622252, 37.142146],\n            [-76.62478, 37.127091],\n            [-76.618252, 37.119347],\n            [-76.579499, 37.096627],\n            [-76.567931, 37.080467],\n            [-76.564219, 37.077507],\n            [-76.555066, 37.075859],\n            [-76.541748046875, 37.081776707388784],\n            [-76.541748046875, 37.6164101574787],\n            [-76.542666, 37.616857],\n            [-76.574049, 37.646781],\n            [-76.583143, 37.661986],\n            [-76.579591, 37.671508],\n            [-76.597868, 37.702918],\n            [-76.598073, 37.70912],\n            [-76.595943, 37.712989],\n            [-76.597213, 37.717269],\n            [-76.606466, 37.724819],\n            [-76.61997, 37.731271],\n            [-76.621433, 37.737973],\n            [-76.617373, 37.742347],\n            [-76.61971, 37.744795],\n            [-76.639962, 37.750941],\n            [-76.663887, 37.751887],\n            [-76.677002, 37.7561],\n            [-76.680922, 37.759647],\n            [-76.683372, 37.765507],\n            [-76.683359, 37.770258],\n            [-76.683343, 37.775783],\n            [-76.681901, 37.778118],\n            [-76.683775, 37.781391],\n            [-76.689773, 37.78519],\n            [-76.715498, 37.785873],\n            [-76.723863, 37.788503],\n            [-76.734309, 37.79866],\n            [-76.7512, 37.824141],\n            [-76.766328, 37.840437],\n            [-76.782826, 37.863184],\n            [-76.784618, 37.869569],\n            [-76.77539, 37.874306],\n            [-76.765711, 37.879274],\n            [-76.747552, 37.875864],\n            [-76.738395, 37.865373],\n            [-76.733046, 37.852009],\n            [-76.72718, 37.842263],\n            [-76.722156, 37.83668],\n            [-76.701606, 37.822677],\n            [-76.692747, 37.82277],\n            [-76.680197, 37.825654],\n            [-76.658302, 37.806815],\n            [-76.651413, 37.796239],\n            [-76.642276, 37.792317],\n            [-76.615351, 37.780759],\n            [-76.602024, 37.772731],\n            [-76.595939, 37.77168],\n            [-76.593835, 37.772848],\n            [-76.584289, 37.76889],\n            [-76.576387, 37.757493],\n            [-76.560476, 37.727827],\n            [-76.541748046875, 37.70637686471363],\n            [-76.541748046875, 38.07552457596782],\n            [-76.543155, 38.076971],\n            [-76.579497, 38.09487],\n            [-76.600937, 38.110084],\n            [-76.604131, 38.128771],\n            [-76.613939, 38.148587],\n            [-76.629476, 38.15305],\n            [-76.638983, 38.151476],\n            [-76.643448, 38.14825],\n            [-76.665127, 38.147638],\n            [-76.684892, 38.156497],\n            [-76.701297, 38.155718],\n            [-76.704048, 38.149264],\n            [-76.721722, 38.137635],\n            [-76.738938, 38.14651],\n            [-76.740278, 38.152824],\n            [-76.743064, 38.156988],\n            [-76.749685, 38.162114],\n            [-76.760241, 38.166581],\n            [-76.788445, 38.169199],\n            [-76.802968, 38.167988],\n            [-76.824274, 38.163639],\n            [-76.838795, 38.163476],\n            [-76.875272, 38.172207],\n            [-76.910832, 38.197073],\n            [-76.916922, 38.199751],\n            [-76.937134, 38.202384],\n            [-76.962311, 38.214075],\n            [-76.967335, 38.227185],\n            [-76.966553, 38.229542],\n            [-76.962375, 38.230093],\n            [-76.957417, 38.236341],\n            [-76.957796, 38.243183],\n            [-76.96215, 38.256486],\n            [-76.981372, 38.274214],\n            [-76.990255, 38.273935],\n            [-76.99767, 38.278047],\n            [-77.026304, 38.302685],\n            [-77.030683, 38.311623],\n            [-77.020947, 38.329273],\n            [-77.016932, 38.341697],\n            [-77.011827, 38.374554],\n            [-77.024866, 38.386791],\n            [-77.043526, 38.400548],\n            [-77.051437, 38.399083],\n            [-77.056032, 38.3962],\n            [-77.069956, 38.377895],\n            [-77.08481, 38.368297],\n            [-77.094665, 38.367715],\n            [-77.104717, 38.369655],\n            [-77.138224, 38.367917],\n            [-77.155191, 38.351047],\n            [-77.162692, 38.345994],\n            [-77.17934, 38.341915],\n            [-77.199433, 38.34089],\n            [-77.240072, 38.331598],\n            [-77.265295, 38.333165],\n            [-77.279633, 38.339444],\n            [-77.286202, 38.347024],\n            [-77.286202, 38.347025],\n            [-77.28835, 38.351286],\n            [-77.288145, 38.359477],\n            [-77.296077, 38.369797],\n            [-77.317288, 38.383576],\n            [-77.314848, 38.389579],\n            [-77.312201, 38.390958],\n            [-77.310719, 38.397669],\n            [-77.319036, 38.417803],\n            [-77.32544, 38.44885],\n            [-77.322622, 38.467131],\n            [-77.310334, 38.493926],\n            [-77.302457, 38.504683],\n            [-77.300776, 38.506978],\n            [-77.298844, 38.508724],\n            [-77.29582, 38.511457],\n            [-77.291103, 38.515721],\n            [-77.283503, 38.525221],\n            [-77.276303, 38.53962],\n            [-77.276603, 38.54712],\n            [-77.26083, 38.56533],\n            [-77.265304, 38.580319],\n            [-77.26443, 38.582845],\n            [-77.247003, 38.590618],\n            [-77.246441, 38.599532],\n            [-77.245104, 38.620717],\n            [-77.248904, 38.628617],\n            [-77.246704, 38.635217],\n            [-77.240604, 38.638917],\n            [-77.22235, 38.638091],\n            [-77.216303, 38.637817],\n            [-77.205103, 38.623917],\n            [-77.204302, 38.617817],\n            [-77.202002, 38.617217],\n            [-77.174902, 38.624217],\n            [-77.157501, 38.636417],\n            [-77.1302, 38.635017],\n            [-77.135901, 38.649817],\n            [-77.132501, 38.673816],\n            [-77.121101, 38.686616],\n            [-77.1059, 38.696815],\n            [-77.086113, 38.705792],\n            [-77.074599, 38.711015],\n            [-77.05991, 38.734419],\n            [-77.041398, 38.763914],\n            [-77.039239, 38.7852],\n            [-77.038598, 38.791513],\n            [-77.032986, 38.8395],\n            [-77.031698, 38.850512],\n            [-77.040599, 38.871212],\n            [-77.068199, 38.899811],\n            [-77.0902, 38.904211],\n            [-77.1012, 38.911111],\n            [-77.119863, 38.934265],\n            [-77.1199, 38.934311],\n            [-77.137701, 38.95531],\n            [-77.148179, 38.965002],\n            [-77.166901, 38.96811],\n            [-77.197502, 38.96681],\n            [-77.221502, 38.97131],\n            [-77.235403, 38.97661],\n            [-77.249803, 38.985909],\n            [-77.255703, 39.002409],\n            [-77.251803, 39.011409],\n            [-77.261403, 39.031009],\n            [-77.291605, 39.045408],\n            [-77.328002, 39.058554],\n            [-77.340287, 39.062991],\n            [-77.375079, 39.061297],\n            [-77.42318, 39.066878],\n            [-77.458202, 39.073723],\n            [-77.519929, 39.120925],\n            [-77.524559, 39.127821],\n            [-77.527282, 39.146236],\n            [-77.516426, 39.170891],\n            [-77.510631, 39.178484],\n            [-77.505162, 39.18205],\n            [-77.485971, 39.185665],\n            [-77.478596, 39.189168],\n            [-77.458884, 39.219826],\n            [-77.458779, 39.22028],\n            [-77.45768, 39.22502],\n            [-77.46021, 39.228359],\n            [-77.484605, 39.245941],\n            [-77.511222, 39.2535],\n            [-77.534461, 39.262361],\n            [-77.543228, 39.266937],\n            [-77.545846, 39.271535],\n            [-77.560854, 39.286152],\n            [-77.592739, 39.30129],\n            [-77.667749, 39.318129],\n            [-77.677505, 39.318699],\n            [-77.719029, 39.321125],\n            [-77.750267, 39.289284],\n            [-77.753357, 39.280331],\n            [-77.75306, 39.277971],\n            [-77.753105, 39.27734],\n            [-77.755193, 39.275191],\n            [-77.755698, 39.274575],\n            [-77.758412, 39.269197],\n            [-77.758733, 39.268114],\n            [-77.761217, 39.263721],\n            [-77.761768, 39.263031],\n            [-77.768, 39.257657],\n            [-77.768992, 39.256417],\n            [-77.767277, 39.24938],\n            [-77.771415, 39.236776],\n            [-77.822182, 39.139985],\n            [-77.828157, 39.132329],\n            [-78.032841, 39.264403],\n            [-78.033183, 39.264624],\n            [-78.033185, 39.264626],\n            [-78.228766, 39.391233],\n            [-78.347087, 39.466012],\n            [-78.362267, 39.357784],\n            [-78.34048, 39.353492],\n            [-78.35894, 39.319484],\n            [-78.360035, 39.317771],\n            [-78.399785, 39.244129],\n            [-78.399669, 39.243874],\n            [-78.423968, 39.212049],\n            [-78.427911, 39.208611],\n            [-78.429803, 39.207014],\n            [-78.431167, 39.205744],\n            [-78.43213, 39.204717],\n            [-78.437053, 39.199766],\n            [-78.438651, 39.198049],\n            [-78.426722, 39.188903],\n            [-78.41074, 39.171983],\n            [-78.418377, 39.156656],\n            [-78.439429, 39.132146],\n            [-78.459869, 39.113351],\n            [-78.508132, 39.08863],\n            [-78.544111, 39.056676],\n            [-78.571901, 39.031995],\n            [-78.565837, 39.026303],\n            [-78.554222, 39.019672],\n            [-78.557647, 39.013189],\n            [-78.601655, 38.964603],\n            [-78.710949, 38.910175],\n            [-78.714135, 38.911176],\n            [-78.716956, 38.916273],\n            [-78.719755, 38.922135],\n            [-78.719806, 38.922638],\n            [-78.757278, 38.903203],\n            [-78.779198, 38.892298],\n            [-78.788031, 38.885123],\n            [-78.808181, 38.856175],\n            [-78.835191, 38.811499],\n            [-78.869276, 38.762991]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"stroke-width\": 3,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.321044921875, 36.26199220445664],\n            [-76.541748046875, 36.26199220445664],\n            [-76.541748046875, 39.68182601089365],\n            [-80.321044921875, 39.68182601089365],\n            [-80.321044921875, 36.26199220445664]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bbox-clip/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { point, feature, featureCollection } from \"@turf/helpers\";\nimport { bbox as turfBBox } from \"@turf/bbox\";\nimport { bboxClip } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-bbox-clip\", (t) => {\n  for (const fixture of fixtures) {\n    const filename = fixture.filename;\n    const name = fixture.name;\n    const geojson = fixture.geojson;\n    const feature = geojson.features[0];\n    const bbox = turfBBox(geojson.features[1]);\n    const clipped = bboxClip(feature, bbox);\n    const results = featureCollection([\n      colorize(feature, \"#080\"),\n      colorize(clipped, \"#F00\"),\n      colorize(geojson.features[1], \"#00F\", 3),\n    ]);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEquals(results, loadJsonFileSync(directories.out + filename), name);\n  }\n  t.end();\n});\n\ntest(\"turf-bbox-clip -- throws\", (t) => {\n  t.throws(\n    () => bboxClip(point([5, 10]), [-180, -90, 180, 90]),\n    /geometry Point not supported/\n  );\n  t.end();\n});\n\nfunction colorize(feature, color, width) {\n  color = color || \"#F00\";\n  width = width || 6;\n  feature.properties = {\n    stroke: color,\n    fill: color,\n    \"stroke-width\": width,\n    \"fill-opacity\": 0.1,\n  };\n  return feature;\n}\n\ntest(\"turf-bbox-clip -- null geometries\", (t) => {\n  t.throws(\n    () => bboxClip(feature(null), [-180, -90, 180, 90]),\n    \"coords must be GeoJSON Feature, Geometry Object or an Array\"\n  );\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-bbox-clip/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-bbox-polygon/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-bbox-polygon/README.md",
    "content": "# @turf/bbox-polygon\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## bboxPolygon\n\nTakes a bbox and returns an equivalent [polygon][1].\n\n### Parameters\n\n*   `bbox` **[BBox][2]** extent in \\[minX, minY, maxX, maxY] order\n*   `options` **[Object][3]** Optional parameters (optional, default `{}`)\n\n    *   `options.properties` **[GeoJsonProperties][4]** Translate properties to Polygon (optional, default `{}`)\n    *   `options.id` **([string][5] | [number][6])** Translate Id to Polygon (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar bbox = [0, 0, 10, 10];\n\nvar poly = turf.bboxPolygon(bbox);\n\n//addToMap\nvar addToMap = [poly]\n```\n\nReturns **[Feature][4]<[Polygon][1]>** a Polygon representation of the bounding box\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[2]: https://tools.ietf.org/html/rfc7946#section-5\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/bbox-polygon\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-bbox-polygon/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { bboxPolygon } from \"./index.js\";\n\n/**\n * Benchmark Results\n *\n * turf-bbox-polygon x 3,885,828 ops/sec ±1.20% (86 runs sampled)\n */\nnew Benchmark.Suite(\"turf-bbox-polygon\")\n  .add(\"turf-bbox-polygon\", () => bboxPolygon([0, 0, 10, 10]))\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-bbox-polygon/index.ts",
    "content": "import { BBox, Feature, Polygon, GeoJsonProperties } from \"geojson\";\nimport { polygon, Id } from \"@turf/helpers\";\n\n/**\n * Takes a bbox and returns an equivalent {@link Polygon|polygon}.\n *\n * @function\n * @param {BBox} bbox extent in [minX, minY, maxX, maxY] order\n * @param {Object} [options={}] Optional parameters\n * @param {GeoJsonProperties} [options.properties={}] Translate properties to Polygon\n * @param {string|number} [options.id={}] Translate Id to Polygon\n * @returns {Feature<Polygon>} a Polygon representation of the bounding box\n * @example\n * var bbox = [0, 0, 10, 10];\n *\n * var poly = turf.bboxPolygon(bbox);\n *\n * //addToMap\n * var addToMap = [poly]\n */\nfunction bboxPolygon<P extends GeoJsonProperties = GeoJsonProperties>(\n  bbox: BBox,\n  options: {\n    properties?: P;\n    id?: Id;\n  } = {}\n): Feature<Polygon, P> {\n  // Convert BBox positions to Numbers\n  // No performance loss for including Number()\n  // https://github.com/Turfjs/turf/issues/1119\n  const west = Number(bbox[0]);\n  const south = Number(bbox[1]);\n  const east = Number(bbox[2]);\n  const north = Number(bbox[3]);\n\n  if (bbox.length === 6) {\n    throw new Error(\n      \"@turf/bbox-polygon does not support BBox with 6 positions\"\n    );\n  }\n\n  const lowLeft = [west, south];\n  const topLeft = [west, north];\n  const topRight = [east, north];\n  const lowRight = [east, south];\n\n  return polygon(\n    [[lowLeft, lowRight, topRight, topLeft, lowLeft]],\n    options.properties,\n    { bbox, id: options.id }\n  );\n}\n\nexport { bboxPolygon };\nexport default bboxPolygon;\n"
  },
  {
    "path": "packages/turf-bbox-polygon/package.json",
    "content": "{\n  \"name\": \"@turf/bbox-polygon\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Converts a bounding box to a GeoJSON polygon.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gis\",\n    \"geojson\",\n    \"extent\",\n    \"bbox\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-bbox-polygon/test.ts",
    "content": "import test from \"tape\";\nimport { bboxPolygon } from \"./index.js\";\n\ntest(\"bbox-polygon\", (t) => {\n  const poly = bboxPolygon([0, 0, 10, 10]);\n\n  t.ok(\n    poly.geometry.coordinates,\n    \"should take a bbox and return the equivalent polygon feature\"\n  );\n  t.equal(poly.geometry.type, \"Polygon\", \"should be a Polygon geometry type\");\n  t.end();\n});\n\ntest(\"bbox-polygon -- valid geojson\", (t) => {\n  const poly = bboxPolygon([0, 0, 10, 10]);\n  const coordinates = poly.geometry.coordinates;\n\n  t.ok(poly, \"should be valid geojson.\");\n  t.equal(coordinates[0].length, 5);\n  t.equal(coordinates[0][0][0], coordinates[0][coordinates.length - 1][0]);\n  t.equal(coordinates[0][0][1], coordinates[0][coordinates.length - 1][1]);\n  t.end();\n});\n\n// https://github.com/Turfjs/turf/issues/1119\ntest(\"bbox-polygon -- handling String input/output\", (t) => {\n  const poly = bboxPolygon([\"0\", \"0\", \"10\", \"10\"]);\n\n  t.deepEqual(poly.geometry.coordinates[0][0], [0, 0], \"lowLeft\");\n  t.deepEqual(poly.geometry.coordinates[0][1], [10, 0], \"lowRight\");\n  t.deepEqual(poly.geometry.coordinates[0][2], [10, 10], \"topRight\");\n  t.deepEqual(poly.geometry.coordinates[0][3], [0, 10], \"topLeft\");\n  t.end();\n});\n\ntest(\"bbox-polygon -- Error handling\", (t) => {\n  t.throws(\n    () => bboxPolygon([-110, 70, 5000, 50, 60, 3000]),\n    \"6 position BBox not supported\"\n  );\n  t.throws(() => bboxPolygon([\"foo\", \"bar\", \"hello\", \"world\"]), \"invalid bbox\");\n  t.throws(() => bboxPolygon([\"foo\", \"bar\"]), \"invalid bbox\");\n  t.end();\n});\n\ntest(\"bbox-polygon -- Translate BBox (Issue #1179)\", (t) => {\n  const id = 123;\n  const properties = { foo: \"bar\" };\n  const bbox = [0, 0, 10, 10];\n  const poly = bboxPolygon(bbox, { properties, id });\n\n  t.deepEqual(poly.properties, properties, \"Properties is translated\");\n  t.deepEqual(poly.bbox, bbox, \"BBox is translated\");\n  t.equal(poly.id, id, \"Id is translated\");\n  t.end();\n});\n\ntest(\"bbox-polygon -- assert bbox\", (t) => {\n  const bbox = [0, 0, 10, 10];\n  const poly = bboxPolygon(bbox);\n\n  t.deepEqual(poly.bbox, bbox);\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-bbox-polygon/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-bearing/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-bearing/README.md",
    "content": "# @turf/bearing\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## bearing\n\nTakes two [points][1] and finds the geographic bearing between them,\ni.e. the angle measured in degrees from the north line (0 degrees)\n\n### Parameters\n\n*   `start` **[Coord][2]** starting Point\n*   `end` **[Coord][2]** ending Point\n*   `options` **[Object][3]** Optional parameters (optional, default `{}`)\n\n    *   `options.final` **[boolean][4]** calculates the final bearing if true (optional, default `false`)\n\n### Examples\n\n```javascript\nvar point1 = turf.point([-75.343, 39.984]);\nvar point2 = turf.point([-75.534, 39.123]);\n\nvar bearing = turf.bearing(point1, point2);\n\n//addToMap\nvar addToMap = [point1, point2]\npoint1.properties['marker-color'] = '#f00'\npoint2.properties['marker-color'] = '#0f0'\npoint1.properties.bearing = bearing\n```\n\nReturns **[number][5]** bearing in decimal degrees, between -180 and 180 degrees (positive clockwise)\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/bearing\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-bearing/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { bearing } from \"./index.js\";\n\nvar start = [-75.4, 39.4];\nvar end = [-75.534, 39.123];\n\nvar suite = new Benchmark.Suite(\"turf-bearing\");\nsuite\n  .add(\"initial bearing\", () => bearing(start, end))\n  .add(\"final bearing\", () => bearing(start, end, { final: true }))\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-bearing/index.ts",
    "content": "import { Coord, degreesToRadians, radiansToDegrees } from \"@turf/helpers\";\nimport { getCoord } from \"@turf/invariant\";\n\n// http://en.wikipedia.org/wiki/Haversine_formula\n// http://www.movable-type.co.uk/scripts/latlong.html#bearing\n\n/**\n * Takes two {@link Point|points} and finds the geographic bearing between them,\n * i.e. the angle measured in degrees from the north line (0 degrees)\n *\n * @function\n * @param {Coord} start starting Point\n * @param {Coord} end ending Point\n * @param {Object} [options={}] Optional parameters\n * @param {boolean} [options.final=false] calculates the final bearing if true\n * @returns {number} bearing in decimal degrees, between -180 and 180 degrees (positive clockwise)\n * @example\n * var point1 = turf.point([-75.343, 39.984]);\n * var point2 = turf.point([-75.534, 39.123]);\n *\n * var bearing = turf.bearing(point1, point2);\n *\n * //addToMap\n * var addToMap = [point1, point2]\n * point1.properties['marker-color'] = '#f00'\n * point2.properties['marker-color'] = '#0f0'\n * point1.properties.bearing = bearing\n */\nfunction bearing(\n  start: Coord,\n  end: Coord,\n  options: {\n    final?: boolean;\n  } = {}\n): number {\n  // Reverse calculation\n  if (options.final === true) {\n    return calculateFinalBearing(start, end);\n  }\n\n  const coordinates1 = getCoord(start);\n  const coordinates2 = getCoord(end);\n\n  const lon1 = degreesToRadians(coordinates1[0]);\n  const lon2 = degreesToRadians(coordinates2[0]);\n  const lat1 = degreesToRadians(coordinates1[1]);\n  const lat2 = degreesToRadians(coordinates2[1]);\n  const a = Math.sin(lon2 - lon1) * Math.cos(lat2);\n  const b =\n    Math.cos(lat1) * Math.sin(lat2) -\n    Math.sin(lat1) * Math.cos(lat2) * Math.cos(lon2 - lon1);\n\n  return radiansToDegrees(Math.atan2(a, b));\n}\n\n/**\n * Calculates Final Bearing\n *\n * @private\n * @param {Coord} start starting Point\n * @param {Coord} end ending Point\n * @returns {number} bearing\n */\nfunction calculateFinalBearing(start: Coord, end: Coord) {\n  // Swap start & end\n  let bear = bearing(end, start);\n  bear = (bear + 180) % 360;\n  return bear;\n}\n\nexport { bearing };\nexport default bearing;\n"
  },
  {
    "path": "packages/turf-bearing/package.json",
    "content": "{\n  \"name\": \"@turf/bearing\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes two points and finds the geographic bearing between them.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"bearing\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/destination\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-bearing/test/out/results.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75, 45]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [20, 60]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-75, 45],\n          [-66.09750711447151, 51.79525668362472]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [20, 60],\n          [2.3783964911248785, 63.44109820672928]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bearing/test.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { destination } from \"@turf/destination\";\nimport { point, lineString, featureCollection } from \"@turf/helpers\";\nimport { bearing } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst out = path.join(__dirname, \"test\", \"out\") + path.sep;\n\ntest(\"bearing\", (t) => {\n  const start = point([-75, 45], { \"marker-color\": \"#F00\" });\n  const end = point([20, 60], { \"marker-color\": \"#00F\" });\n\n  const initialBearing = bearing(start, end);\n  t.equal(initialBearing.toFixed(2), \"37.75\", \"initial bearing\");\n\n  const finalBearing = bearing(start, end, { final: true });\n  t.equal(finalBearing.toFixed(2), \"120.01\", \"final bearing\");\n  t.end();\n\n  if (process.env.REGEN) {\n    const initialDestination = destination(start, 1000, initialBearing);\n    const initialLine = lineString(\n      [start.geometry.coordinates, initialDestination.geometry.coordinates],\n      {\n        stroke: \"#F00\",\n        \"stroke-width\": 6,\n      }\n    );\n\n    const finalDestination = destination(end, 1000, finalBearing - 180);\n    const finalLine = lineString(\n      [end.geometry.coordinates, finalDestination.geometry.coordinates],\n      {\n        stroke: \"#00F\",\n        \"stroke-width\": 6,\n      }\n    );\n\n    const results = featureCollection([start, end, initialLine, finalLine]);\n    writeJsonFileSync(out + \"results.geojson\", results);\n  }\n});\n"
  },
  {
    "path": "packages/turf-bearing/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-bezier-spline/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-bezier-spline/README.md",
    "content": "# @turf/bezier-spline\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## bezierSpline\n\nTakes a [line][1] and returns a curved version\nby applying a [Bezier spline][2]\nalgorithm.\n\nThe bezier spline implementation is by [Leszek Rybicki][3].\n\n### Parameters\n\n*   `line` **[Feature][4]<[LineString][1]>** input LineString\n*   `options` **[Object][5]** Optional parameters (optional, default `{}`)\n\n    *   `options.properties` **[Object][5]** Translate properties to output (optional, default `{}`)\n    *   `options.resolution` **[number][6]** time in milliseconds between points (optional, default `10000`)\n    *   `options.sharpness` **[number][6]** a measure of how curvy the path should be between splines (optional, default `0.85`)\n\n### Examples\n\n```javascript\nvar line = turf.lineString([\n  [-76.091308, 18.427501],\n  [-76.695556, 18.729501],\n  [-76.552734, 19.40443],\n  [-74.61914, 19.134789],\n  [-73.652343, 20.07657],\n  [-73.157958, 20.210656]\n]);\n\nvar curved = turf.bezierSpline(line);\n\n//addToMap\nvar addToMap = [line, curved]\ncurved.properties = { stroke: '#0F0' };\n```\n\nReturns **[Feature][4]<[LineString][1]>** curved line\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[2]: http://en.wikipedia.org/wiki/B%C3%A9zier_spline\n\n[3]: http://leszek.rybicki.cc/\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/bezier-spline\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-bezier-spline/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { bezierSpline } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * bezierIn x 771 ops/sec ±1.31% (88 runs sampled)\n * simple x 768 ops/sec ±1.20% (89 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-bezier-spline\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => bezierSpline(geojson));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-bezier-spline/index.ts",
    "content": "import { Feature, LineString, GeoJsonProperties } from \"geojson\";\nimport { lineString } from \"@turf/helpers\";\nimport { getGeom } from \"@turf/invariant\";\nimport { Spline } from \"./lib/spline.js\";\n\n/**\n * Takes a {@link LineString|line} and returns a curved version\n * by applying a [Bezier spline](http://en.wikipedia.org/wiki/B%C3%A9zier_spline)\n * algorithm.\n *\n * The bezier spline implementation is by [Leszek Rybicki](http://leszek.rybicki.cc/).\n *\n * @function\n * @param {Feature<LineString>} line input LineString\n * @param {Object} [options={}] Optional parameters\n * @param {Object} [options.properties={}] Translate properties to output\n * @param {number} [options.resolution=10000] time in milliseconds between points\n * @param {number} [options.sharpness=0.85] a measure of how curvy the path should be between splines\n * @returns {Feature<LineString>} curved line\n * @example\n * var line = turf.lineString([\n *   [-76.091308, 18.427501],\n *   [-76.695556, 18.729501],\n *   [-76.552734, 19.40443],\n *   [-74.61914, 19.134789],\n *   [-73.652343, 20.07657],\n *   [-73.157958, 20.210656]\n * ]);\n *\n * var curved = turf.bezierSpline(line);\n *\n * //addToMap\n * var addToMap = [line, curved]\n * curved.properties = { stroke: '#0F0' };\n */\nfunction bezierSpline<P extends GeoJsonProperties = GeoJsonProperties>(\n  line: Feature<LineString> | LineString,\n  options: {\n    properties?: P;\n    resolution?: number;\n    sharpness?: number;\n  } = {}\n): Feature<LineString, P> {\n  // Optional params\n  const resolution = options.resolution || 10000;\n  const sharpness = options.sharpness || 0.85;\n\n  const coords: [number, number][] = [];\n  const points = getGeom(line).coordinates.map((pt) => {\n    return { x: pt[0], y: pt[1] };\n  });\n  const spline = new Spline({\n    duration: resolution,\n    points,\n    sharpness,\n  });\n\n  const pushCoord = (time: number) => {\n    var pos = spline.pos(time);\n    if (Math.floor(time / 100) % 2 === 0) {\n      coords.push([pos.x, pos.y]);\n    }\n  };\n\n  for (var i = 0; i < spline.duration; i += 10) {\n    pushCoord(i);\n  }\n  pushCoord(spline.duration);\n\n  return lineString(coords, options.properties);\n}\n\nexport { bezierSpline };\nexport default bezierSpline;\n"
  },
  {
    "path": "packages/turf-bezier-spline/lib/spline.ts",
    "content": "interface Point {\n  x: number;\n  y: number;\n  z: number;\n}\n\n/**\n * BezierSpline\n * https://github.com/leszekr/bezier-spline-js\n *\n * @private\n * @copyright\n * Copyright (c) 2013 Leszek Rybicki\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\nclass Spline {\n  public duration: number;\n  public points: Point[];\n  public sharpness: number;\n  public centers: Point[];\n  public controls: Array<[Point, Point]>;\n  public stepLength: number;\n  public length: number;\n  public delay: number;\n  public steps: number[];\n\n  constructor(options?: any) {\n    this.points = options.points || [];\n    this.duration = options.duration || 10000;\n    this.sharpness = options.sharpness || 0.85;\n    this.centers = [];\n    this.controls = [];\n    this.stepLength = options.stepLength || 60;\n    this.length = this.points.length;\n    this.delay = 0;\n\n    // this is to ensure compatibility with the 2d version\n    for (let i = 0; i < this.length; i++) {\n      this.points[i].z = this.points[i].z || 0;\n    }\n    for (let i = 0; i < this.length - 1; i++) {\n      const p1 = this.points[i];\n      const p2 = this.points[i + 1];\n      this.centers.push({\n        x: (p1.x + p2.x) / 2,\n        y: (p1.y + p2.y) / 2,\n        z: (p1.z + p2.z) / 2,\n      });\n    }\n    this.controls.push([this.points[0], this.points[0]]);\n    for (let i = 0; i < this.centers.length - 1; i++) {\n      const dx =\n        this.points[i + 1].x - (this.centers[i].x + this.centers[i + 1].x) / 2;\n      const dy =\n        this.points[i + 1].y - (this.centers[i].y + this.centers[i + 1].y) / 2;\n      const dz =\n        this.points[i + 1].z - (this.centers[i].y + this.centers[i + 1].z) / 2;\n      this.controls.push([\n        {\n          x:\n            (1.0 - this.sharpness) * this.points[i + 1].x +\n            this.sharpness * (this.centers[i].x + dx),\n          y:\n            (1.0 - this.sharpness) * this.points[i + 1].y +\n            this.sharpness * (this.centers[i].y + dy),\n          z:\n            (1.0 - this.sharpness) * this.points[i + 1].z +\n            this.sharpness * (this.centers[i].z + dz),\n        },\n        {\n          x:\n            (1.0 - this.sharpness) * this.points[i + 1].x +\n            this.sharpness * (this.centers[i + 1].x + dx),\n          y:\n            (1.0 - this.sharpness) * this.points[i + 1].y +\n            this.sharpness * (this.centers[i + 1].y + dy),\n          z:\n            (1.0 - this.sharpness) * this.points[i + 1].z +\n            this.sharpness * (this.centers[i + 1].z + dz),\n        },\n      ]);\n    }\n    this.controls.push([\n      this.points[this.length - 1],\n      this.points[this.length - 1],\n    ]);\n    this.steps = this.cacheSteps(this.stepLength);\n    return this;\n  }\n  /**\n   * Caches an array of equidistant (more or less) points on the curve.\n   */\n  public cacheSteps(mindist: number) {\n    const steps = [];\n    let laststep = this.pos(0);\n    steps.push(0);\n    for (let t = 0; t < this.duration; t += 10) {\n      const step = this.pos(t);\n      const dist = Math.sqrt(\n        (step.x - laststep.x) * (step.x - laststep.x) +\n          (step.y - laststep.y) * (step.y - laststep.y) +\n          (step.z - laststep.z) * (step.z - laststep.z)\n      );\n      if (dist > mindist) {\n        steps.push(t);\n        laststep = step;\n      }\n    }\n    return steps;\n  }\n\n  /**\n   * returns angle and speed in the given point in the curve\n   */\n  public vector(t: number) {\n    const p1 = this.pos(t + 10);\n    const p2 = this.pos(t - 10);\n    return {\n      angle: (180 * Math.atan2(p1.y - p2.y, p1.x - p2.x)) / 3.14,\n      speed: Math.sqrt(\n        (p2.x - p1.x) * (p2.x - p1.x) +\n          (p2.y - p1.y) * (p2.y - p1.y) +\n          (p2.z - p1.z) * (p2.z - p1.z)\n      ),\n    };\n  }\n\n  /**\n   * Gets the position of the point, given time.\n   *\n   * WARNING: The speed is not constant. The time it takes between control points is constant.\n   *\n   * For constant speed, use Spline.steps[i];\n   */\n  public pos(time: number) {\n    let t = time - this.delay;\n    if (t < 0) {\n      t = 0;\n    }\n    if (t > this.duration) {\n      t = this.duration - 1;\n    }\n    // t = t-this.delay;\n    const t2 = t / this.duration;\n    if (t2 >= 1) {\n      return this.points[this.length - 1];\n    }\n\n    const n = Math.floor((this.points.length - 1) * t2);\n    const t1 = (this.length - 1) * t2 - n;\n    return bezier(\n      t1,\n      this.points[n],\n      this.controls[n][1],\n      this.controls[n + 1][0],\n      this.points[n + 1]\n    );\n  }\n}\n\nfunction bezier(t: number, p1: Point, c1: Point, c2: Point, p2: Point) {\n  const b = B(t);\n  const pos = {\n    x: p2.x * b[0] + c2.x * b[1] + c1.x * b[2] + p1.x * b[3],\n    y: p2.y * b[0] + c2.y * b[1] + c1.y * b[2] + p1.y * b[3],\n    z: p2.z * b[0] + c2.z * b[1] + c1.z * b[2] + p1.z * b[3],\n  };\n  return pos;\n}\nfunction B(t: number) {\n  const t2 = t * t;\n  const t3 = t2 * t;\n  return [\n    t3,\n    3 * t2 * (1 - t),\n    3 * t * (1 - t) * (1 - t),\n    (1 - t) * (1 - t) * (1 - t),\n  ];\n}\n\nexport { Spline, Point };\nexport default Spline;\n"
  },
  {
    "path": "packages/turf-bezier-spline/package.json",
    "content": "{\n  \"name\": \"@turf/bezier-spline\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Smooths a line into a curve using Bézier splines, great for visualizing routes.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geometry\",\n    \"bezier\",\n    \"curve\",\n    \"linestring\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-bezier-spline/test/in/bezierIn.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-80.08724212646484, 32.77428536643231],\n      [-80.03746032714844, 32.84007757059952],\n      [-80.01548767089844, 32.74512501406368],\n      [-79.95368957519531, 32.850461360442424],\n      [-79.9361801147461, 32.75349876580794],\n      [-79.9310302734375, 32.79997320569839],\n      [-79.91043090820312, 32.78409957394813],\n      [-79.90528106689453, 32.8490192400596],\n      [-79.79919433593749, 32.76995522487643],\n      [-79.82494354248047, 32.810361684869015],\n      [-79.78683471679688, 32.83373132321818],\n      [-79.76554870605469, 32.80430188623444],\n      [-79.8098373413086, 32.726931048100624]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-bezier-spline/test/in/issue-#1063.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [237.581, 37.7749],\n      [139.7731286197, 35.6669502038]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-bezier-spline/test/in/simple.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [121.025390625, -22.91792293614603],\n      [130.6494140625, -19.394067895396613],\n      [138.33984375, -25.681137335685307],\n      [138.3837890625, -32.026706293336126]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-bezier-spline/test/out/bezierIn.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-80.08724212646484, 32.77428536643231],\n          [-80.08722730078775, 32.77431620608395],\n          [-80.08718319576123, 32.774407687035286],\n          [-80.08711036939242, 32.77455825228089],\n          [-80.08700937968847, 32.774766344815355],\n          [-80.08688078465651, 32.775030407633274],\n          [-80.08672514230369, 32.77534888372924],\n          [-80.08654301063717, 32.77572021609784],\n          [-80.08633494766407, 32.77614284773365],\n          [-80.08610151139152, 32.77661522163128],\n          [-80.08201866467286, 32.78464902023721],\n          [-80.08152427336404, 32.78559685485453],\n          [-80.08101176284863, 32.78657419066332],\n          [-80.08048169113376, 32.78757947065818],\n          [-80.07993461622657, 32.78861113783368],\n          [-80.07937109613418, 32.78966763518443],\n          [-80.07879168886376, 32.790747405705],\n          [-80.07819695242243, 32.79184889238999],\n          [-80.07758744481737, 32.792970538234],\n          [-80.07696372405569, 32.7941107862316],\n          [-80.06932431738281, 32.80743595279523],\n          [-80.06857356329873, 32.80867798021398],\n          [-80.06781585015088, 32.809918368715984],\n          [-80.06705173594636, 32.811155561295834],\n          [-80.06628177869239, 32.81238800094813],\n          [-80.06550653639603, 32.81361413066745],\n          [-80.06472656706445, 32.81483239344839],\n          [-80.0639424287048, 32.816041232285535],\n          [-80.06315467932423, 32.81723909017347],\n          [-80.06236387692984, 32.8184244101068],\n          [-80.05362314172363, 32.83019012082137],\n          [-80.05283922772072, 32.83110353887729],\n          [-80.05205951479688, 32.831984177908254],\n          [-80.0512845609592, 32.83283048090886],\n          [-80.05051492421484, 32.83364089087368],\n          [-80.04975116257096, 32.83441385079733],\n          [-80.04899383403468, 32.83514780367438],\n          [-80.04824349661313, 32.83584119249942],\n          [-80.04750070831348, 32.836492460267046],\n          [-80.04676602714285, 32.837100049971845],\n          [-80.03937919482422, 32.840455481030595],\n          [-80.03878532375894, 32.840417487559435],\n          [-80.03820681391552, 32.84031557495512],\n          [-80.03764422330113, 32.84014818621221],\n          [-80.03709940542186, 32.839912668840455],\n          [-80.03657660535049, 32.83960548043271],\n          [-80.03607559555957, 32.839228128951426],\n          [-80.03559580371468, 32.83878245922726],\n          [-80.03513665748144, 32.83827031609085],\n          [-80.03469758452542, 32.83769354437284],\n          [-80.03102893066406, 32.82761119065371],\n          [-80.0307860949506, 32.82640277274682],\n          [-80.03055589216699, 32.825153709056714],\n          [-80.03033774997886, 32.82386584441403],\n          [-80.03013109605176, 32.82254102364942],\n          [-80.02993535805129, 32.82118109159354],\n          [-80.02974996364307, 32.819787893077006],\n          [-80.02957434049264, 32.81836327293048],\n          [-80.02940791626563, 32.81690907598461],\n          [-80.02925011862759, 32.81542714707004],\n          [-80.02792001184082, 32.797823240639616],\n          [-80.02782109118655, 32.79615242489087],\n          [-80.02772335677393, 32.794477859971806],\n          [-80.02762623626853, 32.792801390713066],\n          [-80.02752915733595, 32.79112486194529],\n          [-80.02743154764175, 32.78945011849912],\n          [-80.02733283485155, 32.7877790052052],\n          [-80.02723244663096, 32.78611336689419],\n          [-80.02712981064552, 32.78445504839672],\n          [-80.02702435456082, 32.78280589454344],\n          [-80.0255145234375, 32.7657976902382],\n          [-80.02533058407779, 32.76440240890548],\n          [-80.02513638427148, 32.76304027501532],\n          [-80.02493135168417, 32.76171313339837],\n          [-80.02471491398144, 32.76042282888529],\n          [-80.02448649882889, 32.7591712063067],\n          [-80.02424553389207, 32.75796011049327],\n          [-80.02399144683663, 32.75679138627562],\n          [-80.02372366532813, 32.755666878484426],\n          [-80.02344161703215, 32.7545884319503],\n          [-80.01923379016112, 32.74629318460675],\n          [-80.01873589833131, 32.745911369947905],\n          [-80.0182162993667, 32.7455995993445],\n          [-80.01767442093282, 32.745359717627224],\n          [-80.01710969069532, 32.745193569626686],\n          [-80.01652153631973, 32.74510300017356],\n          [-80.01590938547167, 32.74508985409846],\n          [-80.01527360828933, 32.74515623891308],\n          [-80.01462611447754, 32.74530625723315],\n          [-80.01397082001571, 32.7455391887752],\n          [-80.00630595703124, 32.75298446984366],\n          [-80.00557293267747, 32.754051658628185],\n          [-80.0048347539917, 32.75517497706448],\n          [-80.0040916245369, 32.7563523648779],\n          [-80.00334374787597, 32.75758176179383],\n          [-80.00259132757186, 32.75886110753763],\n          [-80.0018345671875, 32.76018834183467],\n          [-80.00107367028579, 32.76156140441033],\n          [-80.0003088404297, 32.76297823498996],\n          [-79.9995402811821, 32.76443677329893],\n          [-79.99089820861818, 32.78264416628983],\n          [-79.99010077458115, 32.78444249592968],\n          [-79.9893022574707, 32.786255749728674],\n          [-79.98850286084976, 32.78808186741217],\n          [-79.98770278828124, 32.789918788705535],\n          [-79.98690224332809, 32.79176445333413],\n          [-79.98610142955323, 32.793616801023354],\n          [-79.98530055051955, 32.795473771498536],\n          [-79.98449980979004, 32.79733330448507],\n          [-79.98369941092758, 32.799193339708324],\n          [-79.97497580566407, 32.81909763624246],\n          [-79.9741953871147, 32.82080299688499],\n          [-79.9734179567505, 32.822482076194035],\n          [-79.97264371813431, 32.82413281389494],\n          [-79.97187287482909, 32.82575314971309],\n          [-79.9711056303978, 32.82734102337385],\n          [-79.97034218840332, 32.82889437460257],\n          [-79.96958275240861, 32.83041114312465],\n          [-79.96882752597655, 32.83188926866543],\n          [-79.96807671267014, 32.8333266909503],\n          [-79.96016725158691, 32.84586268264848],\n          [-79.95948527369613, 32.84665096444104],\n          [-79.95881035524904, 32.84737175940747],\n          [-79.9581426998085, 32.84802300727315],\n          [-79.95748251093748, 32.84860264776342],\n          [-79.95682999219896, 32.84910862060367],\n          [-79.95618534715575, 32.849538865519264],\n          [-79.95554877937087, 32.849891322235564],\n          [-79.95492049240723, 32.850163930477954],\n          [-79.95430068982773, 32.850354629971775],\n          [-79.94847842358399, 32.84751161704189],\n          [-79.9480451853372, 32.84685663965643],\n          [-79.9476266811753, 32.84614313619983],\n          [-79.94722260021432, 32.84537283892909],\n          [-79.94683263157032, 32.844547480101205],\n          [-79.94645646435929, 32.8436687919732],\n          [-79.94609378769727, 32.84273850680205],\n          [-79.94574429070029, 32.84175835684478],\n          [-79.94540766248437, 32.84073007435838],\n          [-79.94508359216556, 32.83965539159988],\n          [-79.94225872705078, 32.8252668887998],\n          [-79.94206110254727, 32.82377051882223],\n          [-79.94187199444922, 32.822250267913596],\n          [-79.94169109187266, 32.8207078683309],\n          [-79.94151808393359, 32.81914505233115],\n          [-79.94135265974809, 32.81756355217136],\n          [-79.94119450843213, 32.815965100108514],\n          [-79.94104331910178, 32.81435142839964],\n          [-79.94089878087306, 32.812724269301725],\n          [-79.94076058286198, 32.81108535507178],\n          [-79.93956994628907, 32.792776885331534],\n          [-79.93948358193997, 32.79113202556354],\n          [-79.93939951631688, 32.78949793000458],\n          [-79.93931743853585, 32.787876330911644],\n          [-79.93923703771289, 32.78626896054174],\n          [-79.93915800296404, 32.78467755115188],\n          [-79.93908002340527, 32.783103834999054],\n          [-79.93900278815268, 32.78154954434027],\n          [-79.93892598632227, 32.78001641143255],\n          [-79.93884930703007, 32.77850616853287],\n          [-79.93792500952149, 32.76389966267125],\n          [-79.93782555173794, 32.76279921591456],\n          [-79.93772217500099, 32.76174417850698],\n          [-79.93761456842661, 32.76073628270551],\n          [-79.93750242113087, 32.75977726076716],\n          [-79.93738542222977, 32.75886884494893],\n          [-79.93726326083936, 32.75801276750783],\n          [-79.93713562607566, 32.757210760700865],\n          [-79.93700220705468, 32.75646455678503],\n          [-79.93686269289248, 32.75577588801734],\n          [-79.93520504296876, 32.75204923015101],\n          [-79.93508783921438, 32.752015196113454],\n          [-79.93497759971484, 32.75202584085],\n          [-79.93487411129635, 32.752080069219275],\n          [-79.93477716078516, 32.75217678607987],\n          [-79.93468653500747, 32.7523148962904],\n          [-79.93460202078955, 32.752493304709475],\n          [-79.93452340495762, 32.7527109161957],\n          [-79.9344504743379, 32.752966635607685],\n          [-79.93438301575662, 32.75325936780404],\n          [-79.93394115820313, 32.758609055294215],\n          [-79.93392273652944, 32.75926051987444],\n          [-79.93390701563526, 32.75993476040094],\n          [-79.93389378234677, 32.76063068173231],\n          [-79.93388282349024, 32.76134718872719],\n          [-79.93387392589187, 32.76208318624417],\n          [-79.93386687637793, 32.76283757914186],\n          [-79.93386146177464, 32.76360927227886],\n          [-79.9338574689082, 32.76439717051379],\n          [-79.93385468460488, 32.76520017870525],\n          [-79.93384285473633, 32.77471731550462],\n          [-79.9338379456365, 32.77561622214595],\n          [-79.93383147384081, 32.77651600190572],\n          [-79.9338232261755, 32.777415559642535],\n          [-79.93381298946679, 32.77831380021502],\n          [-79.93380055054094, 32.779209628481766],\n          [-79.93378569622412, 32.78010194930139],\n          [-79.93376821334262, 32.780989667532495],\n          [-79.93374788872265, 32.7818716880337],\n          [-79.93372450919047, 32.7827469156636],\n          [-79.93320474243163, 32.791612879648774],\n          [-79.93312807639884, 32.792321171794526],\n          [-79.93304558419482, 32.79300843423089],\n          [-79.93295705264586, 32.79367357181649],\n          [-79.93286226857812, 32.79431548940991],\n          [-79.9327610188179, 32.79493309186975],\n          [-79.9326530901914, 32.79552528405464],\n          [-79.93253826952485, 32.79609097082318],\n          [-79.93241634364453, 32.79662905703398],\n          [-79.93228709937664, 32.79713844754565],\n          [-79.93035411987306, 32.800570161685954],\n          [-79.93014392131347, 32.80068041395834],\n          [-79.92993048354492, 32.8007604174983],\n          [-79.92971389333191, 32.80081102789523],\n          [-79.92949423743897, 32.80083310073852],\n          [-79.92927160263062, 32.800827491617575],\n          [-79.92904607567138, 32.8007950561218],\n          [-79.92881774332581, 32.80073664984057],\n          [-79.92858669235841, 32.80065312836331],\n          [-79.9283530095337, 32.800545347279396],\n          [-79.92563361053467, 32.79800331988575],\n          [-79.92537511305542, 32.797671159495174],\n          [-79.92511511165772, 32.79732586216012],\n          [-79.92485369310609, 32.79696828347001],\n          [-79.92459094416503, 32.79659927901422],\n          [-79.92432695159911, 32.79621970438215],\n          [-79.92406180217284, 32.79583041516321],\n          [-79.92379558265075, 32.7954322669468],\n          [-79.92352837979736, 32.7950261153223],\n          [-79.9232602803772, 32.79461281587913],\n          [-79.92027682800293, 32.78983946453914],\n          [-79.92000473741456, 32.789407127244864],\n          [-79.91973287819825, 32.78897876479407],\n          [-79.91946133711855, 32.78855523277617],\n          [-79.91919020093994, 32.78813738678056],\n          [-79.91891955642701, 32.787726082396645],\n          [-79.91864949034424, 32.78732217521382],\n          [-79.91838008945618, 32.78692652082148],\n          [-79.91811144052735, 32.786539974809024],\n          [-79.91784363032227, 32.78616339276585],\n          [-79.91497788848876, 32.782923310831485],\n          [-79.91472691060181, 32.78273303239276],\n          [-79.91447789937743, 32.78256384058549],\n          [-79.9142309415802, 32.782416590999084],\n          [-79.91398612397462, 32.78229213922294],\n          [-79.91374353332519, 32.78219134084644],\n          [-79.91350325639647, 32.78211505145899],\n          [-79.913265379953, 32.78206412664999],\n          [-79.91302999075928, 32.78203942200884],\n          [-79.91279717557984, 32.78204179312495],\n          [-79.91043090820312, 32.78409957394813],\n          [-79.9102465080076, 32.78449492909142],\n          [-79.9100867378584, 32.78492984653689],\n          [-79.90995079912143, 32.78540321079651],\n          [-79.9098378931626, 32.78591390638227],\n          [-79.9097472213478, 32.78646081780616],\n          [-79.90967798504296, 32.787042829580145],\n          [-79.90962938561398, 32.78765882621623],\n          [-79.90960062442676, 32.78830769222638],\n          [-79.9095909028472, 32.788988312122584],\n          [-79.91051217022705, 32.79825185788735],\n          [-79.91066863048013, 32.79922651635084],\n          [-79.91083374809764, 32.80021842735615],\n          [-79.91100672444553, 32.80122647541528],\n          [-79.91118676088965, 32.80224954504018],\n          [-79.91137305879593, 32.80328652074288],\n          [-79.91156481953027, 32.804336287035326],\n          [-79.91176124445859, 32.80539772842951],\n          [-79.91196153494678, 32.80646972943742],\n          [-79.91216489236075, 32.80755117457103],\n          [-79.91437583166504, 32.81975135376436],\n          [-79.91455369872902, 32.82085912034108],\n          [-79.91472425047559, 32.82196182969929],\n          [-79.91488668827058, 32.82305836635095],\n          [-79.91504021347997, 32.82414761480805],\n          [-79.91518402746964, 32.82522845958259],\n          [-79.91531733160545, 32.82629978518653],\n          [-79.91543932725338, 32.827360476131865],\n          [-79.91554921577931, 32.82840941693057],\n          [-79.91564619854911, 32.82944549209464],\n          [-79.91563281976319, 32.83967415743999],\n          [-79.91551264000041, 32.84046883692299],\n          [-79.91536917223829, 32.84123614942711],\n          [-79.91520161784275, 32.841974979464354],\n          [-79.91500917817969, 32.842684211546704],\n          [-79.91479105461504, 32.843362730186115],\n          [-79.91454644851464, 32.8440094198946],\n          [-79.91427456124447, 32.84462316518411],\n          [-79.91397459417041, 32.84520285056667],\n          [-79.91364574865835, 32.845747360554235],\n          [-79.90789406176758, 32.849096364775036],\n          [-79.9071563815403, 32.84913176195735],\n          [-79.90637944063184, 32.84911748240045],\n          [-79.90556244040805, 32.849052410616316],\n          [-79.90470579250194, 32.84893471872256],\n          [-79.90381343360139, 32.84876208981984],\n          [-79.90288656778125, 32.84853559172671],\n          [-79.90192612862786, 32.84825651491511],\n          [-79.90093304972754, 32.84792614985699],\n          [-79.89990826466656, 32.84754578702431],\n          [-79.88681002807616, 32.84043101772218],\n          [-79.88547758881914, 32.83955133840706],\n          [-79.88412558002344, 32.83863843745276],\n          [-79.88275493527533, 32.83769360533122],\n          [-79.88136658816114, 32.836718132514406],\n          [-79.87996147226715, 32.83571330947428],\n          [-79.87854052117969, 32.83468042668278],\n          [-79.87710466848505, 32.83362077461186],\n          [-79.87565484776954, 32.832535643733465],\n          [-79.87419199261944, 32.83142632451957],\n          [-79.85750731896971, 32.81799645800123],\n          [-79.85596087033647, 32.81669753557346],\n          [-79.85441352389061, 32.81539120094557],\n          [-79.85286621321843, 32.814078744589494],\n          [-79.85131987190624, 32.81276145697719],\n          [-79.84977543354034, 32.81144062858062],\n          [-79.84823383170702, 32.81011754987172],\n          [-79.84669599999262, 32.80879351132245],\n          [-79.84516287198339, 32.807469803404764],\n          [-79.84363538126568, 32.80614771659062],\n          [-79.82747205029295, 32.79208082944673],\n          [-79.82608502680498, 32.7908788526873],\n          [-79.82471577723045, 32.789695273166785],\n          [-79.82336523515569, 32.78853138135714],\n          [-79.82203433416699, 32.78738846773032],\n          [-79.82072400785064, 32.78626782275826],\n          [-79.81943518979296, 32.785170736912946],\n          [-79.81816881358024, 32.7840985006663],\n          [-79.81692581279883, 32.78305240449029],\n          [-79.81570712103496, 32.78203373885686],\n          [-79.80417291247556, 32.7730079076781],\n          [-79.80331874865435, 32.77241906536798],\n          [-79.80250103047264, 32.77187442973582],\n          [-79.80172069151676, 32.77137529125358],\n          [-79.80097866537302, 32.77092294039319],\n          [-79.80027588562774, 32.77051866762665],\n          [-79.79961328586715, 32.770163763425856],\n          [-79.79899246908782, 32.76985872157151],\n          [-79.79842245484862, 32.76959389412135],\n          [-79.79790492825346, 32.76936556782212],\n          [-79.79534838500975, 32.769070906870525],\n          [-79.79537127326932, 32.769228190485656],\n          [-79.79543174302734, 32.76941324126892],\n          [-79.79552864765715, 32.76962538737547],\n          [-79.79566084053221, 32.76986395696048],\n          [-79.79582717502592, 32.770128278179115],\n          [-79.7960265045117, 32.77041767918655],\n          [-79.79625768236298, 32.77073148813796],\n          [-79.79651956195312, 32.7710690331885],\n          [-79.79681099665557, 32.771429642493345],\n          [-79.80163948059081, 32.776726438008815],\n          [-79.80219613976715, 32.777311414468436],\n          [-79.80276744791014, 32.77791072119955],\n          [-79.80335225839325, 32.778523686357325],\n          [-79.80394942458983, 32.779149638096925],\n          [-79.80455779987334, 32.779787904573524],\n          [-79.80517623761718, 32.780437813942285],\n          [-79.80580359119475, 32.78109869435839],\n          [-79.80643871397949, 32.781769873977],\n          [-79.80708045934477, 32.782450680953275],\n          [-79.81424881347655, 32.79038281567679],\n          [-79.81488059293487, 32.79112674704826],\n          [-79.81550408882812, 32.791871571794594],\n          [-79.81611815452973, 32.792616618070944],\n          [-79.81672164341308, 32.79336121403251],\n          [-79.81731340885163, 32.79410468783443],\n          [-79.81789230421874, 32.794846367631884],\n          [-79.81845718288788, 32.79558558158005],\n          [-79.81900689823242, 32.79632165783408],\n          [-79.81954030362579, 32.79705392454914],\n          [-79.82400337097168, 32.804665281221695],\n          [-79.8242516200772, 32.80529942957238],\n          [-79.82446865308594, 32.80592103440129],\n          [-79.82465332337128, 32.8065294238636],\n          [-79.82480448430664, 32.807123926114464],\n          [-79.82492098926544, 32.80770386930908],\n          [-79.82500169162108, 32.80826858160258],\n          [-79.825045444747, 32.808817391150164],\n          [-79.8250511020166, 32.80934962610698],\n          [-79.82501751680329, 32.80986461462821],\n          [-79.82317655694578, 32.81511763936037],\n          [-79.82291586796518, 32.8155776345275],\n          [-79.82264117182325, 32.81603438083504],\n          [-79.82235278447635, 32.81648777517184],\n          [-79.82205102188087, 32.81693771442673],\n          [-79.82173619999313, 32.81738409548855],\n          [-79.82140863476954, 32.81782681524612],\n          [-79.82106864216641, 32.81826577058828],\n          [-79.82071653814013, 32.81870085840387],\n          [-79.82035263864707, 32.819131975581726],\n          [-79.81566160693359, 32.82358271265361],\n          [-79.81518080643502, 32.8239581395076],\n          [-79.81469231790234, 32.82432825527869],\n          [-79.8141964572919, 32.82469295685571],\n          [-79.81369354056005, 32.82505214112749],\n          [-79.81318388366319, 32.825405704982884],\n          [-79.81266780255763, 32.82575354531069],\n          [-79.81214561319973, 32.826095558999775],\n          [-79.81161763154591, 32.82643164293896],\n          [-79.81108417355246, 32.82676169401708],\n          [-79.80494506072998, 32.82996459725244],\n          [-79.80437053125742, 32.83021421132679],\n          [-79.80379463287794, 32.83045645209492],\n          [-79.80321768154788, 32.83069121644566],\n          [-79.80263999322362, 32.83091840126783],\n          [-79.80206188386153, 32.831137903450276],\n          [-79.80148366941798, 32.831349619881834],\n          [-79.80090566584927, 32.83155344745133],\n          [-79.80032818911182, 32.8317492830476],\n          [-79.79975155516196, 32.831937023559476],\n          [-79.79355456921385, 32.833438403826754],\n          [-79.79301269331125, 32.83352096065497],\n          [-79.7924757676289, 32.83359408195363],\n          [-79.79194410812319, 32.83365766461157],\n          [-79.79141803075049, 32.83371160551763],\n          [-79.79089785146714, 32.833755801560635],\n          [-79.79038388622948, 32.833790149629415],\n          [-79.78987645099393, 32.83381454661283],\n          [-79.78937586171679, 32.833828889399676],\n          [-79.78888243435445, 32.83383307487881],\n          [-79.78379761834717, 32.83333571959247],\n          [-79.78334264774452, 32.833260119035145],\n          [-79.7828884123711, 32.833179884680774],\n          [-79.78243511307568, 32.83309488081822],\n          [-79.78198295070703, 32.83300497173636],\n          [-79.78153212611389, 32.832910021724025],\n          [-79.78108284014503, 32.832809895070106],\n          [-79.78063529364917, 32.832704456063446],\n          [-79.78018968747509, 32.83259356899291],\n          [-79.77974622247156, 32.83247709814738],\n          [-79.77506686743163, 32.83078857631024],\n          [-79.77466476267736, 32.8305945146958],\n          [-79.77426741012745, 32.83039310506155],\n          [-79.7738750106306, 32.830184211696356],\n          [-79.77348776503564, 32.82996769888908],\n          [-79.77310587419129, 32.82974343092859],\n          [-79.7727295389463, 32.82951127210373],\n          [-79.77235896014942, 32.82927108670338],\n          [-79.7719943386494, 32.82902273901638],\n          [-79.77163587529503, 32.82876609333162],\n          [-79.76815665875245, 32.82535650956062],\n          [-79.7678877593485, 32.8249897024338],\n          [-79.76762762912402, 32.8246128330644],\n          [-79.76737646892775, 32.824225765741296],\n          [-79.7671344796084, 32.82382836475334],\n          [-79.76690186201478, 32.8234204943894],\n          [-79.7666788169956, 32.82300201893834],\n          [-79.76646554539965, 32.82257280268901],\n          [-79.76626224807569, 32.822132709930294],\n          [-79.76606912587243, 32.82168160495103],\n          [-79.76467378234864, 32.8159538302382],\n          [-79.764618427797, 32.815359993143716],\n          [-79.76457585939991, 32.81475337958389],\n          [-79.76454627800612, 32.81413385384761],\n          [-79.76452988446437, 32.813501280223704],\n          [-79.7645268796234, 32.81285552300105],\n          [-79.76453746433205, 32.81219644646852],\n          [-79.76456183943897, 32.81152391491495],\n          [-79.76460020579297, 32.81083779262923],\n          [-79.7646527642428, 32.8101379439002],\n          [-79.76629620263671, 32.8014305177732],\n          [-79.76658081584537, 32.80051421410112],\n          [-79.76689192710352, 32.7995741723892],\n          [-79.76722877008018, 32.79861129109202],\n          [-79.76759057844433, 32.79762646866419],\n          [-79.76797658586503, 32.796620603560314],\n          [-79.76838602601123, 32.795594594234984],\n          [-79.76881813255198, 32.79454933914281],\n          [-79.76927213915624, 32.79348573673839],\n          [-79.76974727949309, 32.79240468547633],\n          [-79.77614947888183, 32.77961845500496],\n          [-79.77681845019168, 32.77839809691004],\n          [-79.77749859293115, 32.77717196986729],\n          [-79.77818914076926, 32.77594097233131],\n          [-79.778889327375, 32.77470600275671],\n          [-79.77959838641739, 32.77346795959808],\n          [-79.78031555156542, 32.77222774131001],\n          [-79.78104005648812, 32.77098624634713],\n          [-79.7817711348545, 32.76974437316402],\n          [-79.78250802033352, 32.7685030202153],\n          [-79.790777859375, 32.75513943126411],\n          [-79.79152465638859, 32.7539744005868],\n          [-79.7922672982119, 32.752821570053676],\n          [-79.79300501851401, 32.75168183811935],\n          [-79.79373705096387, 32.750556103238424],\n          [-79.7944626292305, 32.74944526386548],\n          [-79.79518098698291, 32.748350218455144],\n          [-79.79589135789011, 32.747271865462],\n          [-79.79659297562108, 32.746211103340656],\n          [-79.79728507384488, 32.745168830545715],\n          [-79.804050696167, 32.73518108335966],\n          [-79.80456878648684, 32.73443076194041],\n          [-79.80506739499658, 32.73371060975737],\n          [-79.80554575536519, 32.733021525265144],\n          [-79.80600310126172, 32.73236440691834],\n          [-79.80643866635512, 32.73174015317154],\n          [-79.80685168431445, 32.731149662479375],\n          [-79.80724138880868, 32.730593833296425],\n          [-79.80760701350684, 32.730073564077294],\n          [-79.8079477920779, 32.729589753276585],\n          [-79.8098373413086, 32.726931048100624]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-80.08724212646484, 32.77428536643231],\n          [-80.03746032714844, 32.84007757059952],\n          [-80.01548767089844, 32.74512501406368],\n          [-79.95368957519531, 32.850461360442424],\n          [-79.9361801147461, 32.75349876580794],\n          [-79.9310302734375, 32.79997320569839],\n          [-79.91043090820312, 32.78409957394813],\n          [-79.90528106689453, 32.8490192400596],\n          [-79.79919433593749, 32.76995522487643],\n          [-79.82494354248047, 32.810361684869015],\n          [-79.78683471679688, 32.83373132321818],\n          [-79.76554870605469, 32.80430188623444],\n          [-79.8098373413086, 32.726931048100624]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bezier-spline/test/out/issue-#1063.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [237.581, 37.7749],\n          [237.58070677200158, 37.77489368036651],\n          [237.5798278704694, 37.77487473832964],\n          [237.57836446909778, 37.774843199184794],\n          [237.57631774158125, 37.774799088227354],\n          [237.57368886161433, 37.77474243075274],\n          [237.57047900289135, 37.774673252056324],\n          [237.56668933910683, 37.77459157743351],\n          [237.56232104395522, 37.77449743217972],\n          [237.55737529113102, 37.774390841590325],\n          [237.4651954802857, 37.772404187441296],\n          [237.45341178355756, 37.77215022586576],\n          [237.4410658871847, 37.77188414779478],\n          [237.4281589648616, 37.77160597852377],\n          [237.41469219028275, 37.77131574334813],\n          [237.40066673714253, 37.77101346756326],\n          [237.3860837791355, 37.77069917646455],\n          [237.37094448995597, 37.770372895347386],\n          [237.35525004329858, 37.770034649507195],\n          [237.3390016128577, 37.76968446423935],\n          [237.12404162491123, 37.76505165855215],\n          [237.1012369372359, 37.76456017319357],\n          [237.07789352380507, 37.76405707724751],\n          [237.0540125583131, 37.76354239600937],\n          [237.0295952144545, 37.76301615477455],\n          [237.0046426659237, 37.76247837883844],\n          [236.97915608641517, 37.76192909349644],\n          [236.95313664962336, 37.761368324043964],\n          [236.9265855292427, 37.760796095776385],\n          [236.8995038989677, 37.76021243398912],\n          [236.566927989529, 37.75304477651299],\n          [236.5335717886893, 37.75232588553041],\n          [236.49970033598296, 37.75159588986828],\n          [236.46531480510487, 37.750854814822034],\n          [236.43041636974905, 37.75010268568704],\n          [236.39500620361036, 37.749339527758735],\n          [236.3590854803829, 37.74856536633247],\n          [236.32265537376142, 37.74778022670369],\n          [236.28571705744014, 37.74698413416775],\n          [236.24827170511375, 37.746177114020085],\n          [235.80324412979166, 37.736585904504274],\n          [235.75980589357, 37.735649726056685],\n          [235.71587587937103, 37.73470294883752],\n          [235.67145526088922, 37.733745598142185],\n          [235.626545211819, 37.73277769926606],\n          [235.58114690585487, 37.73179927750455],\n          [235.53526151669126, 37.730810358153064],\n          [235.48889021802262, 37.72981096650699],\n          [235.44203418354346, 37.72880112786172],\n          [235.3946945869481, 37.727780867512664],\n          [234.8423796013516, 37.71587740570641],\n          [234.7893288075307, 37.714734057952846],\n          [234.73580970962155, 37.71358061733566],\n          [234.68182348131876, 37.71241710915025],\n          [234.62737129631668, 37.71124355869201],\n          [234.57245432830982, 37.71005999125634],\n          [234.5170737509926, 37.708866432138635],\n          [234.4612307380595, 37.7076629066343],\n          [234.40492646320502, 37.70644944003872],\n          [234.3481621001235, 37.705226057647295],\n          [233.69372395986133, 37.69112164329983],\n          [233.6315300862238, 37.68978124439932],\n          [233.5688913823872, 37.68843125854314],\n          [233.50580902204598, 37.68707171102668],\n          [233.44228417889468, 37.685702627145346],\n          [233.3783180266277, 37.68432403219454],\n          [233.31391173893954, 37.68293595146963],\n          [233.2490664895246, 37.68153841026605],\n          [233.18378345207734, 37.680131433879176],\n          [233.11806380029228, 37.67871504760442],\n          [232.36666676097343, 37.66252098046498],\n          [232.29579928530185, 37.66099364857655],\n          [232.22451045332036, 37.65945723564039],\n          [232.15280143872346, 37.65791176695191],\n          [232.08067341520552, 37.6563572678065],\n          [232.00812755646106, 37.65479376349956],\n          [231.93516503618451, 37.65322127932649],\n          [231.86178702807038, 37.65163984058269],\n          [231.78799470581308, 37.65004947256355],\n          [231.71378924310704, 37.64845020056447],\n          [230.87059756034031, 37.6302777803823],\n          [230.79152596041737, 37.62857363366497],\n          [230.7120564780737, 37.62686091180785],\n          [230.63219028700365, 37.62513964010637],\n          [230.55192856090173, 37.62340984385591],\n          [230.47127247346245, 37.62167154835188],\n          [230.39022319838017, 37.619924778889654],\n          [230.30878190934942, 37.61816956076465],\n          [230.22694978006461, 37.61640591927227],\n          [230.14472798422028, 37.61463387970789],\n          [229.2149059136147, 37.59459440623225],\n          [229.1280996672229, 37.59272356284501],\n          [229.04091901229964, 37.590844650225975],\n          [228.95336512253903, 37.588957693670494],\n          [228.86543917163587, 37.58706271847402],\n          [228.77714233328425, 37.58515974993189],\n          [228.68847578117897, 37.58324881333956],\n          [228.59944068901416, 37.581329933992365],\n          [228.5100382304846, 37.579403137185764],\n          [228.42026957928448, 37.5774684482151],\n          [227.40898137644885, 37.555673221195214],\n          [227.31490996137092, 37.5536457992971],\n          [227.22048761165064, 37.55161081407517],\n          [227.12571550098215, 37.54956829082472],\n          [227.03059480306024, 37.547518254841236],\n          [226.93512669157911, 37.545460731420064],\n          [226.83931234023328, 37.543395745856614],\n          [226.74315292271723, 37.54132332344628],\n          [226.6466496127254, 37.53924348948446],\n          [226.54980358395227, 37.53715626926655],\n          [225.4622135044953, 37.51371658845164],\n          [225.361346398514, 37.511542706201716],\n          [225.26015183177927, 37.509361766535875],\n          [225.15863097798564, 37.507173794749505],\n          [225.05678501082753, 37.50497881613802],\n          [224.9546151039994, 37.502776855996814],\n          [224.85212243119574, 37.50056793962127],\n          [224.74930816611095, 37.4983520923068],\n          [224.64617348243956, 37.49612933934881],\n          [224.54271955387594, 37.49389970604267],\n          [223.3839918534067, 37.46892687118198],\n          [223.27679853430448, 37.46661664673924],\n          [223.169301228338, 37.46429987078852],\n          [223.0615011092018, 37.461976568625246],\n          [222.9533993505902, 37.459646765544804],\n          [222.8449971261977, 37.45731048684257],\n          [222.7362956097188, 37.45496775781397],\n          [222.62729597484793, 37.45261860375439],\n          [222.51799939527956, 37.450263049959226],\n          [222.40840704470813, 37.44790112172389],\n          [221.18370597883546, 37.42150643256666],\n          [221.070655924395, 37.41906998409012],\n          [220.95732535697942, 37.41662749001357],\n          [220.84371545028318, 37.414178975632396],\n          [220.7298273780007, 37.411724466242],\n          [220.6156623138265, 37.409263987137784],\n          [220.50122143145504, 37.40679756361514],\n          [220.3865059045807, 37.40432522096947],\n          [220.271516906898, 37.401846984496174],\n          [220.15625561210135, 37.39936287949064],\n          [218.87074543643413, 37.37165763578612],\n          [218.75230812443803, 37.36910508143481],\n          [218.6336137733559, 37.36654698739142],\n          [218.5146635568824, 37.363983378951396],\n          [218.3954586487116, 37.36141428141006],\n          [218.2760002225384, 37.35883972006289],\n          [218.15628945205685, 37.356259720205216],\n          [218.03632751096177, 37.353674307132486],\n          [217.91611557294726, 37.35108350614006],\n          [217.79565481170818, 37.34848734252338],\n          [216.45449978185513, 37.31958284402079],\n          [216.33114469008615, 37.31692430195375],\n          [216.2075560331201, 37.314260726102546],\n          [216.08373498465187, 37.31159214176266],\n          [215.95968271837546, 37.30891857422943],\n          [215.8354004079858, 37.306240048798315],\n          [215.7108892271769, 37.303556590764636],\n          [215.5861503496436, 37.30086822542387],\n          [215.46118494908, 37.298174978071344],\n          [215.33599419918093, 37.29547687400251],\n          [213.94435857075115, 37.265484420451116],\n          [213.81655517699176, 37.26273000882733],\n          [213.68854169192446, 37.25997106932736],\n          [213.5603192892441, 37.25720762724664],\n          [213.4318891426447, 37.254439707880536],\n          [213.3032524258212, 37.251667336524484],\n          [213.17441031246756, 37.24889053847384],\n          [213.04536397627868, 37.246109339024045],\n          [212.91611459094867, 37.24332376347045],\n          [212.78666333017227, 37.240533837108494],\n          [211.34971135877453, 37.209564728257526],\n          [211.21792914080737, 37.20672456523603],\n          [211.0859603054215, 37.20388038024629],\n          [210.9538060263116, 37.201032198583775],\n          [210.82146747717195, 37.19818004554382],\n          [210.68894583169714, 37.19532394642185],\n          [210.55624226358148, 37.19246392651326],\n          [210.42335794651956, 37.18960001111345],\n          [210.2902940542058, 37.186732225517815],\n          [210.15705176033458, 37.18386059502175],\n          [208.67994770157793, 37.15202613062046],\n          [208.54465613718557, 37.14911033436026],\n          [208.40920142926373, 37.1461910220398],\n          [208.27358475150695, 37.14326821895448],\n          [208.1378072776096, 37.1403419503997],\n          [208.0018701812661, 37.137412241670845],\n          [207.86577463617107, 37.13447911806333],\n          [207.7295218160188, 37.13154260487254],\n          [207.5931128945038, 37.12860272739387],\n          [207.45654904532051, 37.12565951092272],\n          [205.9444571548137, 37.093070990720335],\n          [205.8061257217788, 37.09008967938047],\n          [205.66765461910364, 37.087105357888305],\n          [205.5290450204826, 37.08411805153922],\n          [205.39029809961013, 37.081127785628624],\n          [205.2514150301807, 37.07813458545191],\n          [205.1123969858888, 37.07513847630448],\n          [204.97324514042882, 37.07213948348173],\n          [204.83396066749523, 37.06913763227905],\n          [204.69454474078253, 37.066132947991846],\n          [203.15262927413443, 37.032901671737605],\n          [203.0117274502397, 37.029864963477095],\n          [202.87070943059376, 37.02682575097223],\n          [202.7295763888911, 37.023784059518405],\n          [202.58832949882617, 37.020739914411024],\n          [202.44696993409337, 37.01769334094547],\n          [202.3054988683872, 37.014644364417144],\n          [202.16391747540212, 37.01159301012145],\n          [202.0222269288327, 37.00853930335381],\n          [201.88042840237307, 37.00548326940955],\n          [200.3138536151926, 36.9717205368527],\n          [200.17085087822053, 36.96863854983056],\n          [200.0277554193866, 36.965554564472036],\n          [199.88456841238488, 36.96246860607248],\n          [199.74129103091013, 36.95938069992734],\n          [199.59792444865658, 36.95629087133195],\n          [199.4544698393189, 36.95319914558178],\n          [199.3109283765913, 36.95010554797216],\n          [199.16730123416852, 36.94701010379854],\n          [199.0235895857447, 36.94391283835628],\n          [197.43751973364073, 36.90972994924605],\n          [197.29288556137408, 36.90661280162131],\n          [197.14818214113464, 36.90349416156814],\n          [197.00341064661654, 36.90037405438188],\n          [196.8585722515146, 36.897252505358],\n          [196.7136681295229, 36.89412953979181],\n          [196.5686994543363, 36.891005182978795],\n          [196.42366739964882, 36.88787946021428],\n          [196.27857313915536, 36.884752396793715],\n          [196.13341784654997, 36.88162401801246],\n          [194.53301718513134, 36.847132272098094],\n          [194.38722105535268, 36.84399008202978],\n          [194.24137915149038, 36.840846905440976],\n          [194.09549264723856, 36.837702767627036],\n          [193.949562716292, 36.834557693883426],\n          [193.80359053234486, 36.831411709505474],\n          [193.65757726909186, 36.82826483978862],\n          [193.5115241002272, 36.82511711002824],\n          [193.36543219944565, 36.821968545519766],\n          [193.21930274044138, 36.818819171558545],\n          [191.6097355253169, 36.78412986858926],\n          [191.46324691580898, 36.7809727542364],\n          [191.31673600610634, 36.77781515927098],\n          [191.17020396990347, 36.77465710898841],\n          [191.02365198089484, 36.77149862868407],\n          [190.87708121277493, 36.76833974365338],\n          [190.73049283923817, 36.76518047919172],\n          [190.58388803397898, 36.7620208605945],\n          [190.43726797069192, 36.75886091315711],\n          [190.29063382307135, 36.755700662174945],\n          [188.67706430984998, 36.7209251019],\n          [188.53035269839526, 36.7177631814216],\n          [188.383642260635, 36.7146012862386],\n          [188.23693417026368, 36.711439441646384],\n          [188.09022960097573, 36.708277672940376],\n          [187.9435297264656, 36.70511600541595],\n          [187.79683572042777, 36.70195446436851],\n          [187.6501487565566, 36.69879307509346],\n          [187.50347000854669, 36.695631862886195],\n          [187.35680065009242, 36.6924708530421],\n          [185.7443930943831, 36.65772033521075],\n          [185.59792795876425, 36.65456372676582],\n          [185.451487470729, 36.65140764952426],\n          [185.30507280397183, 36.64825212878144],\n          [185.15868513218712, 36.64509718983277],\n          [185.01232562906938, 36.64194285797363],\n          [184.86599546831306, 36.638789158499435],\n          [184.7196958236126, 36.63563611670558],\n          [184.57342786866246, 36.63248375788745],\n          [184.42719277715716, 36.62933210734046],\n          [182.82111143456865, 36.59471793170191],\n          [182.67536225256836, 36.59157675344951],\n          [182.52966119204075, 36.5884366123084],\n          [182.38400942668028, 36.58529753357399],\n          [182.2384081301815, 36.582159542541675],\n          [182.09285847623877, 36.57902266450686],\n          [181.94736163854665, 36.57588692476493],\n          [181.80191879079948, 36.57275234861128],\n          [181.65653110669177, 36.56961896134132],\n          [181.511199759918, 36.566486788250444],\n          [179.91660888605927, 36.53212025455395],\n          [179.7720451354601, 36.52900462465308],\n          [179.62755298022273, 36.52589053777146],\n          [179.48313359404173, 36.52277801920448],\n          [179.33878815061144, 36.51966709424755],\n          [179.19451782362637, 36.51655778819606],\n          [179.05032378678104, 36.513450126345425],\n          [178.90620721376976, 36.51034413399101],\n          [178.76216927828708, 36.507239836428234],\n          [178.6182111540275, 36.504137258952504],\n          [177.04027500450746, 36.47012966694731],\n          [176.897366163092, 36.46704970355698],\n          [176.75455239092753, 36.46397178909386],\n          [176.6118348617085, 36.46089594885334],\n          [176.46921474912938, 36.457822208130814],\n          [176.3266932268846, 36.45475059222168],\n          [176.18427146866867, 36.45168112642135],\n          [176.0419506481759, 36.448613836025196],\n          [175.89973193910095, 36.44554874632863],\n          [175.75761651513815, 36.44248588262706],\n          [174.20149934556562, 36.408948532062404],\n          [174.06071489111653, 36.40591435334165],\n          [173.92004897980758, 36.40288272945605],\n          [173.7795027853332, 36.399853685701004],\n          [173.63907748138783, 36.3968272473719],\n          [173.498774241666, 36.39380343976415],\n          [173.35859423986207, 36.39078228817314],\n          [173.2185386496705, 36.38776381789427],\n          [173.07860864478585, 36.38474805422294],\n          [172.93880539890245, 36.38173502245455],\n          [171.4096714648863, 36.34877921307967],\n          [171.27148087518628, 36.34580093718751],\n          [171.13343230251547, 36.34282572203846],\n          [170.99552692056835, 36.339853592927916],\n          [170.8577659030394, 36.33688457515126],\n          [170.72015042362307, 36.3339186940039],\n          [170.5826816560138, 36.33095597478125],\n          [170.44536077390603, 36.327996442778684],\n          [170.3081889509943, 36.32504012329161],\n          [170.17116736097296, 36.32208704161541],\n          [168.6741809181221, 36.289824073179545],\n          [168.53905367095362, 36.28691181827501],\n          [168.40409191470363, 36.284003130021524],\n          [168.26929682306638, 36.28109803371449],\n          [168.13466956973645, 36.27819655464931],\n          [168.00021132840828, 36.275298718121384],\n          [167.8659232727763, 36.2724045494261],\n          [167.73180657653498, 36.26951407385885],\n          [167.59786241337875, 36.26662731671504],\n          [167.46409195700213, 36.26374430329008],\n          [166.0044172609254, 36.232285475542476],\n          [165.87282283407126, 36.22944935978457],\n          [165.74141737202459, 36.226617316585674],\n          [165.61020204847986, 36.22378937124119],\n          [165.4791780371316, 36.2209655490465],\n          [165.3483465116742, 36.21814587529701],\n          [165.21770864580216, 36.21533037528812],\n          [165.08726561320984, 36.21251907431522],\n          [164.9570185875918, 36.20971199767371],\n          [164.8269687426425, 36.20690917065899],\n          [163.40977004894881, 36.17636578334888],\n          [163.28217792019151, 36.17361592489664],\n          [163.15479823013087, 36.17087064491136],\n          [163.02763215246136, 36.16812996868843],\n          [162.90068086087732, 36.16539392152325],\n          [162.77394552907333, 36.16266252871123],\n          [162.6474273307438, 36.15993581554775],\n          [162.5211274395832, 36.15721380732822],\n          [162.39504702928596, 36.15449652934804],\n          [162.26918727354658, 36.15178400690258],\n          [160.89962883784483, 36.122267359779194],\n          [160.77650848496702, 36.11961387679164],\n          [160.653624044675, 36.116965478179],\n          [160.53097669066324, 36.11432218923665],\n          [160.40856759662614, 36.11168403526001],\n          [160.28639793625817, 36.109051041544475],\n          [160.1644688832538, 36.106423233385435],\n          [160.04278161130748, 36.10380063607829],\n          [159.92133729411367, 36.10118327491844],\n          [159.80013710536682, 36.09857117520128],\n          [158.48338318326586, 36.07019256801388],\n          [158.36520408405025, 36.06764557865002],\n          [158.2472843713095, 36.06510417956903],\n          [158.12962521873808, 36.06256839606629],\n          [158.0122278000305, 36.060038253437206],\n          [157.89509328888124, 36.05751377697718],\n          [157.77822285898463, 36.0549949919816],\n          [157.66161768403524, 36.052481923745866],\n          [157.54527893772752, 36.04997459756539],\n          [157.4292077937558, 36.04747303873553],\n          [156.17042264086453, 36.020343771233335],\n          [156.05765427309368, 36.017913393652215],\n          [155.9451687656868, 36.015489112261896],\n          [155.83296729233842, 36.013070952357786],\n          [155.72105102674303, 36.010658939235284],\n          [155.60942114259498, 36.008253098189776],\n          [155.49807881358882, 36.00585345451668],\n          [155.38702521341895, 36.00346003351138],\n          [155.2762615157799, 36.00107286046928],\n          [155.16578889436605, 35.99869196068577],\n          [153.9701367662933, 35.97292333261803],\n          [153.8632486077498, 35.97061968497864],\n          [153.75666678345945, 35.96832263943803],\n          [153.65039246711675, 35.96603222129158],\n          [153.5444268324161, 35.96374845583466],\n          [153.438771053052, 35.961471368362716],\n          [153.33342630271886, 35.95920098417112],\n          [153.2283937551112, 35.95693732855528],\n          [153.1236745839234, 35.954680426810576],\n          [153.01926996285, 35.95243030423242],\n          [151.89191511520468, 35.928133615348365],\n          [151.79137664367119, 35.92596681580975],\n          [151.69116798028, 35.92380712427786],\n          [151.59129029872554, 35.92165456604807],\n          [151.49174477270233, 35.91950916641579],\n          [151.3925325759047, 35.917370950676414],\n          [151.29365488202728, 35.91523994412534],\n          [151.19511286476435, 35.913116172057975],\n          [151.09690769781054, 35.91099965976971],\n          [150.9990405548602, 35.90889043255593],\n          [149.9451472432512, 35.8861769826048],\n          [149.85142793651033, 35.88415714932598],\n          [149.75806191180092, 35.882144929961825],\n          [149.66505034281735, 35.88014034980773],\n          [149.5723944032541, 35.87814343415909],\n          [149.48009526680573, 35.87615420831132],\n          [149.38815410716657, 35.87417269755979],\n          [149.2965720980311, 35.87219892719992],\n          [149.2053504130938, 35.8702329225271],\n          [149.11449022604913, 35.86827470883672],\n          [148.13922270608535, 35.84725579756776],\n          [148.05279204191976, 35.845393048707756],\n          [147.9667381336747, 35.84353841967037],\n          [147.8810621550447, 35.84169193575098],\n          [147.7957652797241, 35.83985362224501],\n          [147.71084868140744, 35.83802350444786],\n          [147.62631353378924, 35.8362016076549],\n          [147.54216101056383, 35.834387957161546],\n          [147.45839228542573, 35.83258257826319],\n          [147.37500853206933, 35.83078549625523],\n          [146.4835310593596, 35.81157242341769],\n          [146.40485851555192, 35.80987687713552],\n          [146.32658620155388, 35.80818995658391],\n          [146.24871529106, 35.80651168705827],\n          [146.17124695776474, 35.804842093853985],\n          [146.0941823753625, 35.803181202266465],\n          [146.0175227175478, 35.8015290375911],\n          [145.94126915801505, 35.79988562512329],\n          [145.86542287045873, 35.79825099015843],\n          [145.7899850285733, 35.79662515799191],\n          [144.98746185872653, 35.77932922333501],\n          [144.91701691305937, 35.7778109977897],\n          [144.84699567109095, 35.776301903882896],\n          [144.7773993065159, 35.77480196691001],\n          [144.70822899302846, 35.77331121216645],\n          [144.6394859043233, 35.77182966494759],\n          [144.5711712140947, 35.77035735054883],\n          [144.5032860960373, 35.768894294265586],\n          [144.43583172384544, 35.76744052139323],\n          [144.36880927121356, 35.765996057227184],\n          [143.66040465983863, 35.75072856050018],\n          [143.59865679009457, 35.749397773850724],\n          [143.53735609793847, 35.74807662474776],\n          [143.47650375706476, 35.74676513848666],\n          [143.4161009411679, 35.745463340362825],\n          [143.3561488239424, 35.744171255671645],\n          [143.29664857908264, 35.742888909708526],\n          [143.2376013802831, 35.74161632776885],\n          [143.1790084012383, 35.740353535148046],\n          [143.12087081564263, 35.73910055714149],\n          [142.5117490183484, 35.7259727980936],\n          [142.45916770231008, 35.724839568499064],\n          [142.40705703774884, 35.72371648235895],\n          [142.3554181983592, 35.722603564968644],\n          [142.3042523578355, 35.72150084162355],\n          [142.25356068987222, 35.72040833761908],\n          [142.2033443681639, 35.71932607825061],\n          [142.15360456640494, 35.71825408881355],\n          [142.10434245828984, 35.7171923946033],\n          [142.05555921751298, 35.71614102091525],\n          [141.55088448990833, 35.70526429929573],\n          [141.5079392053584, 35.70433874491511],\n          [141.46548804617473, 35.70342383989687],\n          [141.4235321860517, 35.70251960953639],\n          [141.38207279868377, 35.701626079129085],\n          [141.34111105776543, 35.70074327397033],\n          [141.30064813699116, 35.69987121935554],\n          [141.26068521005536, 35.69900994058011],\n          [141.2212234506525, 35.69815946293943],\n          [141.1822640324771, 35.69731981172892],\n          [140.78720063017096, 35.68880542728701],\n          [140.754360854892, 35.688097666279326],\n          [140.72203867886847, 35.68740106054198],\n          [140.69023527579475, 35.686715635370355],\n          [140.6589518193652, 35.68604141605984],\n          [140.62818948327447, 35.68537842790583],\n          [140.59794944121683, 35.68472669620374],\n          [140.5682328668868, 35.68408624624896],\n          [140.53904093397892, 35.683457103336885],\n          [140.51037481618755, 35.682839292762914],\n          [140.23008699478876, 35.67679854524785],\n          [140.2078222065635, 35.67631869577214],\n          [140.1860984914827, 35.6758505074747],\n          [140.16491702324083, 35.675394005650936],\n          [140.14427897553236, 35.67494921559624],\n          [140.12418552205173, 35.674516162606004],\n          [140.10463783649342, 35.67409487197564],\n          [140.08563709255185, 35.67368536900053],\n          [140.0671844639215, 35.673287678976074],\n          [140.0492811242968, 35.672901827197684],\n          [139.88893313941426, 35.6694460163587],\n          [139.8777128160253, 35.66920419657398],\n          [139.8670570396699, 35.668974543875485],\n          [139.85696698404254, 35.66875708355862],\n          [139.84744382283773, 35.668551840918745],\n          [139.83848872974988, 35.66835884125131],\n          [139.8301028784735, 35.668178109851674],\n          [139.822287442703, 35.668009672015266],\n          [139.81504359613277, 35.66785355303746],\n          [139.80837251245745, 35.66770977821366],\n          [139.7731286197, 35.6669502038]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [237.581, 37.7749],\n          [139.7731286197, 35.6669502038]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bezier-spline/test/out/simple.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [121.025390625, -22.91792293614603],\n          [121.02555091028576, -22.917812175967313],\n          [121.0260308794541, -22.91748084683116],\n          [121.02682920247155, -22.916930375837573],\n          [121.02794454930469, -22.91616219008655],\n          [121.02937558992004, -22.915177716678098],\n          [121.03112099428418, -22.91397838271221],\n          [121.03317943236364, -22.912565615288884],\n          [121.03554957412499, -22.91094084150813],\n          [121.03823008953476, -22.90910548846994],\n          [121.08782003027343, -22.875426524659414],\n          [121.09412128685561, -22.871175534332064],\n          [121.10071562665135, -22.86673251704727],\n          [121.10760171962734, -22.862098899905067],\n          [121.11477823574998, -22.857276110005422],\n          [121.12224384498599, -22.85226557444836],\n          [121.12999721730176, -22.847068720333866],\n          [121.13803702266395, -22.841686974761945],\n          [121.14636193103908, -22.836121764832594],\n          [121.1549706123937, -22.830374517645822],\n          [121.26801473437499, -22.75554849020125],\n          [121.27992494887464, -22.74772810972538],\n          [121.29210164591895, -22.739744244292094],\n          [121.30454349547449, -22.731598321001382],\n          [121.31724916750781, -22.72329176695325],\n          [121.33021733198548, -22.714826009247698],\n          [121.343446658874, -22.70620247498472],\n          [121.35693581814002, -22.697422591264328],\n          [121.37068347975, -22.68848778518651],\n          [121.38468831367052, -22.679399483851277],\n          [121.55533446972659, -22.569705632774053],\n          [121.57232162876474, -22.558886702149795],\n          [121.58954866967873, -22.547932828568136],\n          [121.60701426243492, -22.536845439129046],\n          [121.62471707700001, -22.525625960932558],\n          [121.64265578334042, -22.514275821078634],\n          [121.66082905142288, -22.50279644666732],\n          [121.67923555121372, -22.491189264798564],\n          [121.69787395267971, -22.479455702572416],\n          [121.7167429257872, -22.467597187088835],\n          [121.93913896875, -22.32931475238035],\n          [121.9606710589479, -22.31606811160784],\n          [121.98241643035254, -22.302715069877916],\n          [122.00437375293052, -22.289257054290587],\n          [122.02654169664844, -22.27569549194585],\n          [122.04891893147278, -22.2620318099437],\n          [122.0715041273701, -22.248267435384147],\n          [122.094295954307, -22.234403795367182],\n          [122.11729308224999, -22.22044231699281],\n          [122.14049418116565, -22.20638442736103],\n          [122.40878796386718, -22.04579264902266],\n          [122.4343329718458, -22.030689138102016],\n          [122.46006466036228, -22.015507768223966],\n          [122.48598169938319, -22.000249966488525],\n          [122.51208275887498, -21.98491715999566],\n          [122.53836650880433, -21.969510775845414],\n          [122.56483161913766, -21.95403224113775],\n          [122.59147675984171, -21.9384829829727],\n          [122.61830060088278, -21.92286442845023],\n          [122.64530181222767, -21.907178004670378],\n          [122.95364118750001, -21.73055612270351],\n          [122.98266709988049, -21.714166581634856],\n          [123.01185309212988, -21.69772772360881],\n          [123.04119783421471, -21.681240975725366],\n          [123.07069999610155, -21.664707765084525],\n          [123.10035824775696, -21.648129518786288],\n          [123.13017125914746, -21.631507663930655],\n          [123.16013770023962, -21.614843627617624],\n          [123.19025624099999, -21.598138836947204],\n          [123.22052555139516, -21.581394719019382],\n          [123.56305837207032, -21.395021973425415],\n          [123.59503317547374, -21.37791724220888],\n          [123.62714145807715, -21.36079173603496],\n          [123.65938188984707, -21.34364688200365],\n          [123.69175314075, -21.32648410721495],\n          [123.72425388075256, -21.30930483876885],\n          [123.7568827798213, -21.29211050376537],\n          [123.78963850792275, -21.274902529304505],\n          [123.82251973502343, -21.25768234248624],\n          [123.85552513108998, -21.24045137041059],\n          [124.22639925000001, -21.050607001190905],\n          [124.2607909310475, -21.033357919826614],\n          [124.29528949062598, -21.016116605504948],\n          [124.32989359870203, -20.99888448532589],\n          [124.3646019252422, -20.98166298638945],\n          [124.399413140213, -20.964453535795627],\n          [124.43432591358106, -20.947257560644424],\n          [124.46933891531286, -20.930076488035834],\n          [124.50445081537501, -20.912911745069863],\n          [124.53966028373401, -20.895764758846514],\n          [124.93302355371092, -20.708728006002488],\n          [124.96930009902356, -20.691905414490577],\n          [125.00565692219824, -20.67511913202128],\n          [125.04209269320155, -20.658370585694612],\n          [125.07860608200001, -20.64166120261056],\n          [125.11519575856019, -20.624992409869137],\n          [125.15186039284863, -20.608365634570333],\n          [125.18859865483189, -20.591782303814153],\n          [125.22540921447656, -20.5752438447006],\n          [125.26229074174915, -20.558751684329668],\n          [125.672291015625, -20.380801787862705],\n          [125.70992041182386, -20.36497652620329],\n          [125.7476034852158, -20.349216115586497],\n          [125.78533890576746, -20.333521983112334],\n          [125.82312534344531, -20.317895555880803],\n          [125.86096146821593, -20.3023382609919],\n          [125.89884595004588, -20.286851525545625],\n          [125.93677745890172, -20.27143677664198],\n          [125.97475466475, -20.25609544138097],\n          [126.01277623755725, -20.240828946862585],\n          [126.43356136816408, -20.07824514677406],\n          [126.47201160187024, -20.063988054967265],\n          [126.5104889121006, -20.04982435620311],\n          [126.54899196882164, -20.03575547758158],\n          [126.587519442, -20.02178284620269],\n          [126.62607000160217, -20.00790788916644],\n          [126.66464231759474, -19.994132033572818],\n          [126.7032350599442, -19.980456706521835],\n          [126.74184689861717, -19.96688333511349],\n          [126.78047650358019, -19.953413346447782],\n          [127.20619434375001, -19.81247488273909],\n          [127.24493340158459, -19.800356800785043],\n          [127.28367293527441, -19.78836065387364],\n          [127.32241161478599, -19.776487869104873],\n          [127.36114811008594, -19.764739873578755],\n          [127.39988109114074, -19.753118094395273],\n          [127.43860922791701, -19.74162395865444],\n          [127.47733119038124, -19.73025889345624],\n          [127.51604564850001, -19.71902432590069],\n          [127.55475127223987, -19.707921683087783],\n          [127.97954967480469, -19.5949077957603],\n          [128.01804554338878, -19.585499563659134],\n          [128.05651528715916, -19.57624180860061],\n          [128.0949575760824, -19.567135957684737],\n          [128.133371080125, -19.55818343801151],\n          [128.17175446925353, -19.549385676680934],\n          [128.21010641343454, -19.540744100793],\n          [128.24842558263467, -19.532260137447718],\n          [128.28671064682032, -19.523935213745087],\n          [128.32496027595812, -19.515770756785102],\n          [128.74298709375, -19.436960685840223],\n          [128.7807077597047, -19.430833143592057],\n          [128.81837570017677, -19.42488462038655],\n          [128.85598958513268, -19.419116543323685],\n          [128.89354808453908, -19.41353033950348],\n          [128.93104986836244, -19.40812743602593],\n          [128.96849360656933, -19.402909259991034],\n          [129.00587796912635, -19.39787723849879],\n          [129.043201626, -19.39303279864921],\n          [129.08046324715684, -19.38837736754227],\n          [129.4858663330078, -19.350050352981388],\n          [129.52227978295426, -19.347774340586348],\n          [129.55861390674903, -19.345705889233972],\n          [129.59486737435876, -19.34384642602425],\n          [129.63103885575, -19.34219737805719],\n          [129.66712702088927, -19.34076017243279],\n          [129.70313053974317, -19.339536236251057],\n          [129.7390480822782, -19.33852699661198],\n          [129.77487831846094, -19.33773388061556],\n          [129.8106199182579, -19.337158315361812],\n          [130.197547125, -19.345593597186305],\n          [130.23212134555922, -19.347739954644517],\n          [130.26658963929785, -19.350122415145396],\n          [130.3009506761825, -19.352742405788945],\n          [130.3352031261797, -19.35560135367516],\n          [130.36934565925597, -19.358700685904036],\n          [130.40337694537794, -19.362041829575585],\n          [130.4372956545121, -19.365626211789802],\n          [130.471100456625, -19.369455259646685],\n          [130.50479002168322, -19.373530400246235],\n          [130.86860392089844, -19.432190725922066],\n          [130.90121260767884, -19.438403615114865],\n          [130.93375118901855, -19.444744203732203],\n          [130.9662197601361, -19.45121204477029],\n          [130.99861841625, -19.45780669122533],\n          [131.03094725257873, -19.464527696093512],\n          [131.06320636434083, -19.471374612371037],\n          [131.09539584675477, -19.47834699305411],\n          [131.12751579503907, -19.48544439113892],\n          [131.15956630441224, -19.49266635962168],\n          [131.507566171875, -19.580201816109067],\n          [131.53879084135804, -19.58888376307065],\n          [131.5699473097705, -19.597684469380756],\n          [131.6010356723309, -19.606603488035596],\n          [131.63205602425782, -19.61564037203136],\n          [131.66300846076965, -19.62479467436425],\n          [131.69389307708497, -19.634065948030464],\n          [131.72470996842225, -19.643453746026207],\n          [131.75545922999999, -19.652957621347667],\n          [131.78614095703674, -19.662577126991053],\n          [132.11920990722658, -19.775895447228052],\n          [132.14908864681456, -19.786867650438026],\n          [132.17890108970215, -19.79794967292051],\n          [132.20864733110778, -19.809141067671693],\n          [132.23832746624998, -19.820441387687794],\n          [132.26794159034728, -19.831850185964992],\n          [132.29748979861816, -19.8433670154995],\n          [132.32697218628113, -19.85499142928751],\n          [132.35638884855467, -19.866722980325225],\n          [132.38573988065735, -19.87856122160884],\n          [132.704296875, -20.01569558887108],\n          [132.73286777209535, -20.028779246809044],\n          [132.76137427686035, -20.041963783943494],\n          [132.78981648451355, -20.05524875327064],\n          [132.81819449027344, -20.068633707786667],\n          [132.84650838935852, -20.082118200487784],\n          [132.8747582769873, -20.095701784370185],\n          [132.9029442483783, -20.10938401243007],\n          [132.93106639874998, -20.123164437663636],\n          [132.9591248233209, -20.137042613067088],\n          [133.26358882324217, -20.296026210630185],\n          [133.29088996524717, -20.311042521775743],\n          [133.318128619292, -20.32615077204178],\n          [133.3453048805951, -20.34135051442447],\n          [133.372418844375, -20.35664130192004],\n          [133.39947060585024, -20.37202268752467],\n          [133.42646026023925, -20.387494224234565],\n          [133.45338790276062, -20.403055465045927],\n          [133.48025362863282, -20.418705962954952],\n          [133.50705753307435, -20.434445270957838],\n          [133.7978475, -20.613311282097428],\n          [133.823916974317, -20.630081444930184],\n          [133.84992586504393, -20.646934606807392],\n          [133.8758742673993, -20.663870320725252],\n          [133.90176227660157, -20.68088813967995],\n          [133.92758998786925, -20.697987616667703],\n          [133.9533574964209, -20.7151683046847],\n          [133.97906489747496, -20.732429756727136],\n          [134.00471228625, -20.74977152579122],\n          [134.03029975796446, -20.767193164873145],\n          [134.3078346533203, -20.96397477286485],\n          [134.3327105473517, -20.982319985864414],\n          [134.3575277621631, -21.0007392578324],\n          [134.38228639297301, -21.019232141765016],\n          [134.406986535, -21.037798190658464],\n          [134.43162828346254, -21.05643695750893],\n          [134.4562117335791, -21.07514799531263],\n          [134.48073698056825, -21.09393085706575],\n          [134.50520411964843, -21.112785095764494],\n          [134.52961324603822, -21.131710264405058],\n          [134.79431203125, -21.34444065252451],\n          [134.81803243239807, -21.364182114170468],\n          [134.8416960586963, -21.38398869470884],\n          [134.86530300536316, -21.403859947135818],\n          [134.8888533676172, -21.423795424447604],\n          [134.9123472406769, -21.4437946796404],\n          [134.93578471976076, -21.463857265710406],\n          [134.95916590008727, -21.483982735653807],\n          [134.982490876875, -21.50417064246681],\n          [135.0057597453424, -21.524420539145623],\n          [135.25804138183594, -21.75113289066844],\n          [135.28064437750305, -21.77209179944041],\n          [135.30319250269042, -21.793106887028767],\n          [135.32568585261657, -21.81417770642971],\n          [135.3481245225, -21.835303810639445],\n          [135.3705086075592, -21.856484752654165],\n          [135.3928382030127, -21.87772008547007],\n          [135.415113404079, -21.89900936208336],\n          [135.43733430597658, -21.920352135490234],\n          [135.45950100392392, -21.941747958686893],\n          [135.69978445312498, -22.180475456888704],\n          [135.72130813071348, -22.20247301126628],\n          [135.7427788421924, -22.224517804384227],\n          [135.76419668278015, -22.24660938923874],\n          [135.7855617476953, -22.268747318826023],\n          [135.8068741321564, -22.29093114614227],\n          [135.82813393138184, -22.313160424183685],\n          [135.8493412405902, -22.335434705946458],\n          [135.870496155, -22.357753544426803],\n          [135.8915987698297, -22.380116492620907],\n          [136.12030299316405, -22.62889232077735],\n          [136.14078544007631, -22.651749719240136],\n          [136.16121682524903, -22.674645416367266],\n          [136.18159724390074, -22.697578965154953],\n          [136.20192679125003, -22.720549918599385],\n          [136.22220556251526, -22.74355782969676],\n          [136.24243365291505, -22.766602251443288],\n          [136.26261115766783, -22.789682736835154],\n          [136.28273817199218, -22.812798838868567],\n          [136.30281479110656, -22.835950110539724],\n          [136.52035875, -23.09280745192641],\n          [136.5398380536383, -23.116345892954012],\n          [136.55926819990722, -23.139913692569944],\n          [136.57864928402526, -23.163510403770395],\n          [136.59798140121094, -23.187135579551576],\n          [136.61726464668274, -23.21078877290969],\n          [136.63649911565918, -23.23446953684093],\n          [136.65568490335878, -23.258177424341493],\n          [136.674822105, -23.28191198840758],\n          [136.6939108158014, -23.305672782035387],\n          [136.90071347167967, -23.568644819927954],\n          [136.9192277194464, -23.592685501999966],\n          [136.93769471421388, -23.616746602584293],\n          [136.95611455120059, -23.640827674677123],\n          [136.97448732562498, -23.664928271274658],\n          [136.9928131327057, -23.68904794537311],\n          [137.0110920676611, -23.71318624996866],\n          [137.02932422570984, -23.73734273805752],\n          [137.04750970207033, -23.76151696263588],\n          [137.06564859196104, -23.78570847669995],\n          [137.26212890625, -24.05282839437402],\n          [137.27971618554747, -24.07719251597005],\n          [137.29725811621583, -24.10156811600237],\n          [137.3147547934735, -24.125954747467173],\n          [137.33220631253906, -24.150351963360677],\n          [137.34961276863098, -24.17475931667906],\n          [137.36697425696778, -24.199176360418537],\n          [137.38429087276793, -24.223602647575287],\n          [137.40156271125, -24.24803773114553],\n          [137.41878986763243, -24.27248116412546],\n          [137.60536680175784, -24.541782144856654],\n          [137.6220651999884, -24.566290904456306],\n          [137.63872015395995, -24.590802202416228],\n          [137.65533175889098, -24.61531559173261],\n          [137.67190011000002, -24.63983062540167],\n          [137.6884253025055, -24.6643468564196],\n          [137.704907431626, -24.68886383778259],\n          [137.72134659257992, -24.713381122486847],\n          [137.73774288058596, -24.73789826352857],\n          [137.75409639086246, -24.762414813903955],\n          [137.93118890625, -25.03193004096791],\n          [137.94703651081602, -25.05640463705079],\n          [137.96284257549317, -25.08087283141791],\n          [137.97860719549985, -25.10533417706548],\n          [137.9943304660547, -25.1297882269897],\n          [138.0100124823761, -25.15423453418677],\n          [138.0256533396826, -25.178672651652885],\n          [138.04125313319275, -25.203102132384245],\n          [138.05681195812502, -25.227522529377048],\n          [138.07232990969788, -25.2519333956275],\n          [138.24035696777344, -25.51969605229984],\n          [138.25539186607728, -25.54395768334554],\n          [138.2703871288623, -25.568203972599463],\n          [138.28534285134705, -25.59243447305782],\n          [138.30025912874999, -25.616648737716805],\n          [138.31513605628967, -25.640846319572624],\n          [138.3299737291846, -25.66502677162146],\n          [138.3447646894131, -25.68919356811908],\n          [138.3594110443125, -25.71339714826552],\n          [138.37388331439158, -25.737652468312966],\n          [138.5218130625, -26.00766094231775],\n          [138.53425750802052, -26.032478537545455],\n          [138.54653806760157, -26.057338105402206],\n          [138.55865552577245, -26.08223889455939],\n          [138.5706106670625, -26.107180153688397],\n          [138.582404276001, -26.132161131460613],\n          [138.5940371371172, -26.15718107654743],\n          [138.60551003494044, -26.182239237620223],\n          [138.616823754, -26.207334863350408],\n          [138.62797907882518, -26.232467202409346],\n          [138.7404580078125, -26.51113113177313],\n          [138.74977379511034, -26.536645427145515],\n          [138.75894138705468, -26.562186668574718],\n          [138.76796156817483, -26.58775410473212],\n          [138.776835123, -26.6133469842891],\n          [138.78556283605957, -26.638964555917063],\n          [138.7941454918828, -26.664606068287384],\n          [138.80258387499902, -26.690270770071464],\n          [138.8108787699375, -26.715957909940684],\n          [138.81903096122753, -26.74166673656643],\n          [138.899511, -27.025680275397598],\n          [138.90601194079395, -27.05159073946998],\n          [138.91238037682032, -27.077513123026932],\n          [138.9186170926084, -27.10344667473985],\n          [138.9247228726875, -27.12939064328012],\n          [138.9306985015869, -27.15534427731913],\n          [138.93654476383594, -27.181306825528278],\n          [138.94226244396384, -27.207277536578943],\n          [138.9478523265, -27.23325565914251],\n          [138.95331519597363, -27.259240441890363],\n          [139.0052482734375, -27.545297744297294],\n          [139.00924817944627, -27.57130384562497],\n          [139.01313127127344, -27.59730683986499],\n          [139.01689833344824, -27.623305975688744],\n          [139.0205501505, -27.649300501767605],\n          [139.024087506958, -27.675289666772976],\n          [139.02751118735156, -27.70127271937625],\n          [139.03082197620995, -27.727248908248797],\n          [139.0340206580625, -27.753217482062016],\n          [139.03710801743847, -27.779177689487298],\n          [139.0639460625, -28.063972909578375],\n          [139.06575874544237, -28.089774116716654],\n          [139.06747030478908, -28.11555719019504],\n          [139.06908152506935, -28.14132137868493],\n          [139.0705931908125, -28.167065930857692],\n          [139.07200608654787, -28.192790095384737],\n          [139.07332099680468, -28.21849312093743],\n          [139.07453870611232, -28.244174256187186],\n          [139.075659999, -28.269832749805367],\n          [139.07668565999708, -28.295467850463375],\n          [139.0818806015625, -28.575695142346973],\n          [139.08181987315723, -28.600990923851167],\n          [139.08167371174218, -28.626253545123234],\n          [139.08144290184669, -28.651482254834562],\n          [139.081128228, -28.67667630165654],\n          [139.08073047473144, -28.701834934260546],\n          [139.08025042657033, -28.726957401317993],\n          [139.0796888680459, -28.752042951500243],\n          [139.0790465836875, -28.777090833478695],\n          [139.07832435802442, -28.802100295924745],\n          [139.065328125, -29.074453813709248],\n          [139.06370779696584, -29.098943638134656],\n          [139.0620177265078, -29.123385275755712],\n          [139.06025869815528, -29.147777975243784],\n          [139.0584314964375, -29.17212098527028],\n          [139.05653690588377, -29.196413554506574],\n          [139.05457571102343, -29.22065493162406],\n          [139.05254869638574, -29.244844365294128],\n          [139.05045664649998, -29.26898110418816],\n          [139.0483003458955, -29.293064396977545],\n          [139.0205648671875, -29.554238294771327],\n          [139.0176987512432, -29.577621630673274],\n          [139.01477858346095, -29.600941753198615],\n          [139.01180514837012, -29.62419791101875],\n          [139.00877923049998, -29.64738935280507],\n          [139.00570161437986, -29.67051532722895],\n          [139.00257308453905, -29.693575082961786],\n          [138.99939442550684, -29.71656786867497],\n          [138.9961664218125, -29.739492933039887],\n          [138.99288985798535, -29.762349524727934],\n          [138.95386706250002, -30.009037956639386],\n          [138.95006897036424, -30.03101427257316],\n          [138.94623251697655, -30.052912348558106],\n          [138.9423584868662, -30.074731433265605],\n          [138.93844766456252, -30.096470775367056],\n          [138.93450083459473, -30.118129623533836],\n          [138.9305187814922, -30.13970722643733],\n          [138.92650228978417, -30.16120283274894],\n          [138.92245214399998, -30.18261569114005],\n          [138.91836912866896, -30.203945050282044],\n          [138.87151094531248, -30.432842170419548],\n          [138.8670946887041, -30.453110934940465],\n          [138.8626557614297, -30.473286432940316],\n          [138.85819494801854, -30.49336791309049],\n          [138.85371303300002, -30.513354624062377],\n          [138.84921080090334, -30.53324581452736],\n          [138.8446890362578, -30.553040733156827],\n          [138.84014852359277, -30.572738628622172],\n          [138.83559004743748, -30.59233874959478],\n          [138.8310143923213, -30.611840344746046],\n          [138.77977275000003, -30.819640307217973],\n          [138.7750521406377, -30.837900988881337],\n          [138.7703245511953, -30.8560533774514],\n          [138.76559076620214, -30.874096721599557],\n          [138.7608515701875, -30.892030269997186],\n          [138.7561077476807, -30.909853271315683],\n          [138.75136008321095, -30.927564974226428],\n          [138.7466093613076, -30.945164627400807],\n          [138.74185636649997, -30.962651479510225],\n          [138.73710188331737, -30.980024779226053],\n          [138.68492871093753, -31.163421738140798],\n          [138.68021756054, -31.17937380550192],\n          [138.6755151206484, -31.1952025531975],\n          [138.67082217579198, -31.21090722989895],\n          [138.6661395105, -31.226487084277633],\n          [138.66146790930176, -31.241941365004944],\n          [138.65680815672656, -31.25726932075227],\n          [138.6521610373037, -31.272470200191005],\n          [138.64752733556253, -31.287543251992542],\n          [138.64290783603224, -31.302487724828246],\n          [138.5932550625, -31.458175834294174],\n          [138.58886718278615, -31.47151875590836],\n          [138.58450370416406, -31.484723331284776],\n          [138.58016541116308, -31.497788809094814],\n          [138.57585308831247, -31.510714438009856],\n          [138.57156752014157, -31.52349946670129],\n          [138.56730949117969, -31.536143143840512],\n          [138.56307978595603, -31.548644718098906],\n          [138.558879189, -31.561003438147857],\n          [138.55470848484083, -31.57321855265875],\n          [138.51102803906252, -31.69789196678425],\n          [138.507277241751, -31.70832521120681],\n          [138.50356653611718, -31.71860508281936],\n          [138.49989670669044, -31.728730830293298],\n          [138.49626853799998, -31.738701702300006],\n          [138.4926828145752, -31.74851694751088],\n          [138.4891403209453, -31.758175814597287],\n          [138.48564184163962, -31.767677552230648],\n          [138.48218816118748, -31.77702140908233],\n          [138.47878006411815, -31.78620663382372],\n          [138.444523875, -31.876559506717165],\n          [138.44172397180955, -31.883782542503404],\n          [138.43897985088282, -31.8908371789074],\n          [138.43629229674903, -31.897722664600547],\n          [138.4336620939375, -31.904438248254234],\n          [138.43109002697753, -31.91098317853984],\n          [138.42857688039845, -31.917356704128764],\n          [138.4261234387295, -31.923558073692394],\n          [138.4237304865, -31.92958653590211],\n          [138.42139880823925, -31.9354413394293],\n          [138.40001880468753, -31.988167825199078],\n          [138.3984836073369, -31.991880120904302],\n          [138.3970198828359, -31.99540899065505],\n          [138.39562841571387, -31.99875368312271],\n          [138.39430999049998, -32.00191344697867],\n          [138.39306539172364, -32.00488753089434],\n          [138.39189540391408, -32.007675183541075],\n          [138.39080081160057, -32.01027565359028],\n          [138.38978239931248, -32.01268818971334],\n          [138.3888409515791, -32.01491204058164],\n          [138.3837890625, -32.026706293336126]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [121.025390625, -22.91792293614603],\n          [130.6494140625, -19.394067895396613],\n          [138.33984375, -25.681137335685307],\n          [138.3837890625, -32.026706293336126]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-bezier-spline/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { featureCollection } from \"@turf/helpers\";\nimport { bezierSpline } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-bezier-spline\", (t) => {\n  fixtures.forEach((fixture) => {\n    const filename = fixture.filename;\n    const name = fixture.name;\n    const geojson = fixture.geojson;\n    const spline = colorize(bezierSpline(geojson));\n    const results = featureCollection([spline, geojson]);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEquals(results, loadJsonFileSync(directories.out + filename), name);\n  });\n  t.end();\n});\n\nfunction colorize(feature, color, width) {\n  color = color || \"#F00\";\n  width = width || 6;\n  feature.properties = {\n    stroke: color,\n    fill: color,\n    \"stroke-width\": width,\n    \"fill-opacity\": 0.1,\n  };\n  return feature;\n}\n"
  },
  {
    "path": "packages/turf-bezier-spline/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-boolean-clockwise/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-boolean-clockwise/README.md",
    "content": "# @turf/boolean-clockwise\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## booleanClockwise\n\nTakes a ring and return true or false whether or not the ring is clockwise or counter-clockwise.\n\n### Parameters\n\n*   `line` **([Feature][1]<[LineString][2]> | [LineString][2] | [Array][3]<[Array][3]<[number][4]>>)** to be evaluated\n\n### Examples\n\n```javascript\nvar clockwiseRing = turf.lineString([[0,0],[1,1],[1,0],[0,0]]);\nvar counterClockwiseRing = turf.lineString([[0,0],[1,0],[1,1],[0,0]]);\n\nturf.booleanClockwise(clockwiseRing)\n//=true\nturf.booleanClockwise(counterClockwiseRing)\n//=false\n```\n\nReturns **[boolean][5]** true/false\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/boolean-clockwise\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-boolean-clockwise/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport Benchmark from \"benchmark\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { booleanClockwise as isClockwise } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n * counter-clockwise-line x 7,272,353 ops/sec ±11.64% (58 runs sampled)\n * clockwise-line x 10,724,102 ops/sec ±2.19% (76 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-boolean-clockwise\");\nglob\n  .sync(path.join(__dirname, \"test\", \"**\", \"*.geojson\"))\n  .forEach((filepath) => {\n    const { name } = path.parse(filepath);\n    const geojson = loadJsonFileSync(filepath);\n    const [feature] = geojson.features;\n    suite.add(name, () => isClockwise(feature));\n  });\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-boolean-clockwise/index.ts",
    "content": "import { Feature, LineString, Position } from \"geojson\";\nimport { getCoords } from \"@turf/invariant\";\n\n/**\n * Takes a ring and return true or false whether or not the ring is clockwise or counter-clockwise.\n *\n * @function\n * @param {Feature<LineString>|LineString|Array<Array<number>>} line to be evaluated\n * @returns {boolean} true/false\n * @example\n * var clockwiseRing = turf.lineString([[0,0],[1,1],[1,0],[0,0]]);\n * var counterClockwiseRing = turf.lineString([[0,0],[1,0],[1,1],[0,0]]);\n *\n * turf.booleanClockwise(clockwiseRing)\n * //=true\n * turf.booleanClockwise(counterClockwiseRing)\n * //=false\n */\nfunction booleanClockwise(\n  line: Feature<LineString> | LineString | Position[]\n): boolean {\n  const ring = getCoords(line);\n  let sum = 0;\n  let i = 1;\n  let prev;\n  let cur;\n\n  while (i < ring.length) {\n    prev = cur || ring[0];\n    cur = ring[i];\n    sum += (cur[0] - prev[0]) * (cur[1] + prev[1]);\n    i++;\n  }\n  return sum > 0;\n}\n\nexport { booleanClockwise };\nexport default booleanClockwise;\n"
  },
  {
    "path": "packages/turf-boolean-clockwise/package.json",
    "content": "{\n  \"name\": \"@turf/boolean-clockwise\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a ring and return true or false whether or not the ring is clockwise or counter-clockwise.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Morgan Herlocker <@morganherlocker>\",\n    \"Rowan Winsemius <@rowanwins>\",\n    \"Denis Carriere <@DenisCarriere>\",\n    \"Stefano Borghi <@stebogit>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"clockwise\",\n    \"boolean\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-boolean-clockwise/test/false/counter-clockwise-line.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [1, 0],\n          [1, 1],\n          [0, 0]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-clockwise/test/true/clockwise-line.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [1, 1],\n          [1, 0],\n          [0, 0]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-clockwise/test.ts",
    "content": "import { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { lineString } from \"@turf/helpers\";\nimport { booleanClockwise as isClockwise } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"isClockwise#fixtures\", (t) => {\n  // True Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"true\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const feature = geojson.features[0];\n      t.true(isClockwise(feature), \"[true] \" + name);\n    });\n  // False Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"false\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const feature = geojson.features[0];\n      t.false(isClockwise(feature), \"[false] \" + name);\n    });\n  t.end();\n});\n\ntest(\"isClockwise\", (t) => {\n  const cwArray = [\n    [0, 0],\n    [1, 1],\n    [1, 0],\n    [0, 0],\n  ];\n  const ccwArray = [\n    [0, 0],\n    [1, 0],\n    [1, 1],\n    [0, 0],\n  ];\n\n  t.equal(isClockwise(cwArray), true, \"[true] clockwise array input\");\n  t.equal(\n    isClockwise(ccwArray),\n    false,\n    \"[false] counter-clockwise array input\"\n  );\n\n  t.end();\n});\n\ntest(\"isClockwise -- Geometry types\", (t) => {\n  const line = lineString([\n    [0, 0],\n    [1, 1],\n    [1, 0],\n    [0, 0],\n  ]);\n\n  t.equal(isClockwise(line), true, \"Feature\");\n  t.equal(isClockwise(line.geometry), true, \"Geometry Object\");\n\n  t.end();\n});\n\n// test('isClockwise -- throws', t => {\n//     const pt = point([-10, -33]);\n//     t.throws(() => isClockwise(pt), 'feature geometry not supported');\n\n//     t.end();\n// });\n"
  },
  {
    "path": "packages/turf-boolean-clockwise/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-boolean-concave/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-boolean-concave/README.md",
    "content": "# @turf/boolean-concave\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## booleanConcave\n\nTakes a polygon and return true or false as to whether it is concave or not.\n\n### Parameters\n\n*   `polygon` **[Feature][1]<[Polygon][2]>** to be evaluated\n\n### Examples\n\n```javascript\nvar convexPolygon = turf.polygon([[[0,0],[0,1],[1,1],[1,0],[0,0]]]);\n\nturf.booleanConcave(convexPolygon)\n//=false\n```\n\nReturns **[boolean][3]** true/false\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/boolean-concave\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-boolean-concave/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport Benchmark from \"benchmark\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { booleanConcave as concave } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n * 3vertices x 9,177,672 ops/sec ±0.67% (89 runs sampled)\n * diamond x 2,989,753 ops/sec ±0.14% (92 runs sampled)\n * square x 3,322,185 ops/sec ±0.20% (91 runs sampled)\n * polygon x 3,422,036 ops/sec ±0.42% (91 runs sampled)\n * polygon2 x 2,412,660 ops/sec ±1.66% (85 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-boolean-is-concave\");\nglob\n  .sync(path.join(__dirname, \"test\", \"**\", \"*.geojson\"))\n  .forEach((filepath) => {\n    const { name } = path.parse(filepath);\n    const geojson = loadJsonFileSync(filepath);\n    const [feature] = geojson.features;\n    suite.add(name, () => concave(feature));\n  });\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-boolean-concave/index.ts",
    "content": "import { Feature, Polygon } from \"geojson\";\nimport { getGeom } from \"@turf/invariant\";\n\n/**\n * Takes a polygon and return true or false as to whether it is concave or not.\n *\n * @function\n * @param {Feature<Polygon>} polygon to be evaluated\n * @returns {boolean} true/false\n * @example\n * var convexPolygon = turf.polygon([[[0,0],[0,1],[1,1],[1,0],[0,0]]]);\n *\n * turf.booleanConcave(convexPolygon)\n * //=false\n */\nfunction booleanConcave(polygon: Feature<Polygon> | Polygon) {\n  // Taken from https://stackoverflow.com/a/1881201 & https://stackoverflow.com/a/25304159\n  const coords = getGeom(polygon).coordinates;\n  if (coords[0].length <= 4) {\n    return false;\n  }\n\n  let sign = false;\n  const n = coords[0].length - 1;\n  for (let i = 0; i < n; i++) {\n    const dx1 = coords[0][(i + 2) % n][0] - coords[0][(i + 1) % n][0];\n    const dy1 = coords[0][(i + 2) % n][1] - coords[0][(i + 1) % n][1];\n    const dx2 = coords[0][i][0] - coords[0][(i + 1) % n][0];\n    const dy2 = coords[0][i][1] - coords[0][(i + 1) % n][1];\n    const zcrossproduct = dx1 * dy2 - dy1 * dx2;\n    if (i === 0) {\n      sign = zcrossproduct > 0;\n    } else if (sign !== zcrossproduct > 0) {\n      return true;\n    }\n  }\n  return false;\n}\n\nexport { booleanConcave };\nexport default booleanConcave;\n"
  },
  {
    "path": "packages/turf-boolean-concave/package.json",
    "content": "{\n  \"name\": \"@turf/boolean-concave\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a polygon and return true or false as to whether it is concave or not.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Rowan Winsemius <@rowanwins>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"polygon\",\n    \"concave\",\n    \"convex\",\n    \"boolean\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-boolean-concave/test/false/3vertices.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [1, 1],\n            [1, 0],\n            [0, 0]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-concave/test/false/diamond.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.69488525390625, 1.1754546449158993],\n            [0.263671875, 0.9118267425981088],\n            [0.56854248046875, 0.4312093081601601],\n            [0.96954345703125, 0.771766211876697],\n            [0.83221435546875, 1.016182073033441],\n            [0.69488525390625, 1.1754546449158993]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-concave/test/false/square.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [0, 1],\n            [1, 1],\n            [1, 0],\n            [0, 0]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-concave/test/true/polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [1, 0],\n            [1, 1],\n            [0.5, 0.5],\n            [0, 1],\n            [0, 0]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-concave/test/true/polygon2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85418701171875, 1.06286628163273],\n            [0.46966552734375, 0.7909904981540058],\n            [0.6619262695312499, 0.5712795966325395],\n            [0.77178955078125, 0.856901647439813],\n            [0.736083984375, 0.8514090937773031],\n            [0.6591796875, 0.8129610018708315],\n            [0.6921386718749999, 0.884364296613886],\n            [0.9173583984375001, 0.8898568022677679],\n            [1.07391357421875, 0.8129610018708315],\n            [1.0876464843749998, 0.9392889790847924],\n            [1.0052490234375, 1.0271666545523288],\n            [0.85418701171875, 1.06286628163273]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-concave/test.ts",
    "content": "import { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { polygon } from \"@turf/helpers\";\nimport { booleanConcave as isConcave } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"isConcave#fixtures\", (t) => {\n  // True Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"true\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const feature = geojson.features[0];\n      t.true(isConcave(feature), \"[true] \" + name);\n    });\n  // False Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"false\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const feature = geojson.features[0];\n      t.false(isConcave(feature), \"[false] \" + name);\n    });\n  t.end();\n});\n\ntest(\"isConcave -- Geometry types\", (t) => {\n  const poly = polygon([\n    [\n      [0, 0],\n      [0, 1],\n      [1, 1],\n      [1, 0],\n      [0, 0],\n    ],\n  ]);\n\n  t.equal(isConcave(poly), false, \"Feature\");\n  t.equal(isConcave(poly.geometry), false, \"Geometry Object\");\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-boolean-concave/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-boolean-contains/README.md",
    "content": "# @turf/boolean-contains\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## booleanContains\n\nTests whether geometry a contains geometry b.\nThe interiors of both geometries must intersect, and the interior and boundary of geometry b must not intersect the exterior of geometry a.\nbooleanContains(a, b) is equivalent to booleanWithin(b, a)\n\n### Parameters\n\n*   `feature1` **([Geometry][1] | [Feature][2]\\<any>)** GeoJSON Feature or Geometry\n*   `feature2` **([Geometry][1] | [Feature][2]\\<any>)** GeoJSON Feature or Geometry\n\n### Examples\n\n```javascript\nvar line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]);\nvar point = turf.point([1, 2]);\n\nturf.booleanContains(line, point);\n//=true\n```\n\nReturns **[boolean][3]** true/false\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/boolean-contains\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n\n\n### Diagrams\n\n![esri-contains](diagrams/esri-contains.png)"
  },
  {
    "path": "packages/turf-boolean-contains/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport Benchmark from \"benchmark\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { bbox } from \"@turf/bbox\";\nimport { booleanContains as contains } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n * LineIsNotContainedByLine: 0.697ms\n * LineIsNotContainedByPolygon: 0.123ms\n * LineIsNotContainedByPolygonBoundary: 0.394ms\n * MultiPointsIsNotContainedByLine: 0.140ms\n * MultiPointsOnLineEndsIsNotContainedByLine: 0.013ms\n * MultiPointIsNotContainedByMultiPoint: 0.131ms\n * MultiPointAllOnBoundaryIsNotContainedByPolygon: 0.068ms\n * MultiPointIsNotContainedByPolygon: 0.009ms\n * PointIsNotContainedByLine: 0.006ms\n * PointIsNotContainedByLineBecauseOnEnd: 0.009ms\n * PointOnEndIsContainedByLinestring: 0.007ms\n * PointIsNotContainedBYMultiPoint: 0.171ms\n * PointIsNotContainedByPolygon: 0.022ms\n * PointOnPolygonBoundary: 0.026ms\n * Polygon-Polygon: 0.274ms\n * Polygon-Polygon2: 0.076ms\n * LineIsContainedByLine: 0.013ms\n * LinesExactlySame: 0.016ms\n * LineIsContainedByPolygon: 0.027ms\n * LineIsContainedByPolygonWithNoInternalVertices: 0.029ms\n * MultipointsIsContainedByLine: 0.364ms\n * MultiPointsContainedByMultiPoints: 0.011ms\n * MultiPointsEqual: 0.008ms\n * MultiPointIsContainedByPolygonBoundary: 0.022ms\n * PointIsContainedByLine: 0.617ms\n * PointIsContainedByMultiPoint: 0.010ms\n * PointInsidePolygonBoundary: 0.013ms\n * PolygonExactSameShape: 0.047ms\n * PolygonIsContainedByPolygon: 0.012ms\n * LineIsNotContainedByLine x 1,589,100 ops/sec ±0.33% (96 runs sampled)\n * LineIsNotContainedByPolygon x 2,051,985 ops/sec ±2.50% (86 runs sampled)\n * LineIsNotContainedByPolygonBoundary x 845,089 ops/sec ±0.58% (89 runs sampled)\n * MultiPointsIsNotContainedByLine x 2,149,963 ops/sec ±0.17% (94 runs sampled)\n * MultiPointsOnLineEndsIsNotContainedByLine x 2,037,412 ops/sec ±0.22% (92 runs sampled)\n * MultiPointIsNotContainedByMultiPoint x 7,778,981 ops/sec ±0.25% (95 runs sampled)\n * MultiPointAllOnBoundaryIsNotContainedByPolygon x 2,507,225 ops/sec ±0.72% (94 runs sampled)\n * MultiPointIsNotContainedByPolygon x 2,510,635 ops/sec ±0.63% (97 runs sampled)\n * PointIsNotContainedByLine x 5,661,981 ops/sec ±0.17% (94 runs sampled)\n * PointIsNotContainedByLineBecauseOnEnd x 5,126,586 ops/sec ±0.27% (90 runs sampled)\n * PointOnEndIsContainedByLinestring x 5,263,534 ops/sec ±0.24% (94 runs sampled)\n * PointIsNotContainedBYMultiPoint x 11,119,884 ops/sec ±1.38% (92 runs sampled)\n * PointIsNotContainedByPolygon x 2,490,072 ops/sec ±0.63% (96 runs sampled)\n * PointOnPolygonBoundary x 2,780,452 ops/sec ±0.61% (97 runs sampled)\n * Polygon-Polygon x 1,773,762 ops/sec ±1.75% (90 runs sampled)\n * Polygon-Polygon2 x 759,058 ops/sec ±0.95% (88 runs sampled)\n * LineIsContainedByLine x 1,608,626 ops/sec ±0.61% (93 runs sampled)\n * LinesExactlySame x 1,217,588 ops/sec ±0.52% (96 runs sampled)\n * LineIsContainedByPolygon x 1,109,333 ops/sec ±1.05% (90 runs sampled)\n * LineIsContainedByPolygonWithNoInternalVertices x 1,116,300 ops/sec ±0.94% (90 runs sampled)\n * MultipointsIsContainedByLine x 2,379,783 ops/sec ±0.18% (96 runs sampled)\n * MultiPointsContainedByMultiPoints x 7,758,259 ops/sec ±0.29% (93 runs sampled)\n * MultiPointsEqual x 7,308,718 ops/sec ±1.07% (91 runs sampled)\n * MultiPointIsContainedByPolygonBoundary x 1,316,660 ops/sec ±0.96% (95 runs sampled)\n * PointIsContainedByLine x 6,499,130 ops/sec ±0.17% (93 runs sampled)\n * PointIsContainedByMultiPoint x 11,266,710 ops/sec ±1.84% (91 runs sampled)\n * PointInsidePolygonBoundary x 2,450,588 ops/sec ±0.68% (93 runs sampled)\n * PolygonExactSameShape x 491,320 ops/sec ±0.84% (91 runs sampled)\n * PolygonIsContainedByPolygon x 553,878 ops/sec ±0.82% (93 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-boolean-contains\");\nglob\n  .sync(path.join(__dirname, \"test\", \"**\", \"*.geojson\"))\n  .forEach((filepath) => {\n    const { name } = path.parse(filepath);\n    const geojson = loadJsonFileSync(filepath);\n    const [feature1, feature2] = geojson.features;\n    feature1.bbox = bbox(feature1);\n    feature2.bbox = bbox(feature2);\n\n    console.time(name);\n    contains(feature1, feature2);\n    console.timeEnd(name);\n    suite.add(name, () => contains(feature1, feature2));\n  });\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-boolean-contains/index.ts",
    "content": "import {\n  BBox,\n  Feature,\n  Geometry,\n  LineString,\n  MultiPoint,\n  MultiPolygon,\n  Point,\n  Polygon,\n} from \"geojson\";\nimport { bbox as calcBbox } from \"@turf/bbox\";\nimport { booleanPointInPolygon } from \"@turf/boolean-point-in-polygon\";\nimport { booleanPointOnLine as isPointOnLine } from \"@turf/boolean-point-on-line\";\nimport { getGeom } from \"@turf/invariant\";\nimport { feature, featureCollection, lineString } from \"@turf/helpers\";\nimport { lineSplit } from \"@turf/line-split\";\n\n/**\n * Tests whether geometry a contains geometry b.\n * The interiors of both geometries must intersect, and the interior and boundary of geometry b must not intersect the exterior of geometry a.\n * booleanContains(a, b) is equivalent to booleanWithin(b, a)\n *\n * @function\n * @param {Geometry|Feature<any>} feature1 GeoJSON Feature or Geometry\n * @param {Geometry|Feature<any>} feature2 GeoJSON Feature or Geometry\n * @returns {boolean} true/false\n * @example\n * var line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]);\n * var point = turf.point([1, 2]);\n *\n * turf.booleanContains(line, point);\n * //=true\n */\nfunction booleanContains(\n  feature1: Feature<any> | Geometry,\n  feature2: Feature<any> | Geometry\n) {\n  const geom1 = getGeom(feature1);\n  const geom2 = getGeom(feature2);\n  const type1 = geom1.type;\n  const type2 = geom2.type;\n  const coords1 = geom1.coordinates;\n  const coords2 = geom2.coordinates;\n\n  switch (type1) {\n    case \"Point\":\n      switch (type2) {\n        case \"Point\":\n          return compareCoords(coords1, coords2);\n        default:\n          throw new Error(\"feature2 \" + type2 + \" geometry not supported\");\n      }\n    case \"MultiPoint\":\n      switch (type2) {\n        case \"Point\":\n          return isPointInMultiPoint(geom1, geom2);\n        case \"MultiPoint\":\n          return isMultiPointInMultiPoint(geom1, geom2);\n        default:\n          throw new Error(\"feature2 \" + type2 + \" geometry not supported\");\n      }\n    case \"LineString\":\n      switch (type2) {\n        case \"Point\":\n          return isPointOnLine(geom2, geom1, { ignoreEndVertices: true });\n        case \"LineString\":\n          return isLineOnLine(geom1, geom2);\n        case \"MultiPoint\":\n          return isMultiPointOnLine(geom1, geom2);\n        default:\n          throw new Error(\"feature2 \" + type2 + \" geometry not supported\");\n      }\n    case \"Polygon\":\n      switch (type2) {\n        case \"Point\":\n          return booleanPointInPolygon(geom2, geom1, { ignoreBoundary: true });\n        case \"LineString\":\n          return isLineInPoly(geom1, geom2);\n        case \"Polygon\":\n          return isPolyInPoly(geom1, geom2);\n        case \"MultiPoint\":\n          return isMultiPointInPoly(geom1, geom2);\n        case \"MultiPolygon\":\n          return isMultiPolyInPoly(geom1, geom2);\n        default:\n          throw new Error(\"feature2 \" + type2 + \" geometry not supported\");\n      }\n    case \"MultiPolygon\":\n      switch (type2) {\n        case \"Polygon\":\n          return isPolygonInMultiPolygon(geom1, geom2);\n        default:\n          throw new Error(\"feature2 \" + type2 + \" geometry not supported\");\n      }\n    default:\n      throw new Error(\"feature1 \" + type1 + \" geometry not supported\");\n  }\n}\n\nfunction isPolygonInMultiPolygon(multiPolygon: MultiPolygon, polygon: Polygon) {\n  return multiPolygon.coordinates.some((coords) =>\n    isPolyInPoly({ type: \"Polygon\", coordinates: coords }, polygon)\n  );\n}\n\nfunction isMultiPolyInPoly(polygon: Polygon, multiPolygon: MultiPolygon) {\n  return multiPolygon.coordinates.every((coords) =>\n    isPolyInPoly(polygon, { type: \"Polygon\", coordinates: coords })\n  );\n}\n\nfunction isPointInMultiPoint(multiPoint: MultiPoint, pt: Point) {\n  let i;\n  let output = false;\n  for (i = 0; i < multiPoint.coordinates.length; i++) {\n    if (compareCoords(multiPoint.coordinates[i], pt.coordinates)) {\n      output = true;\n      break;\n    }\n  }\n  return output;\n}\n\nfunction isMultiPointInMultiPoint(\n  multiPoint1: MultiPoint,\n  multiPoint2: MultiPoint\n) {\n  for (const coord2 of multiPoint2.coordinates) {\n    let matchFound = false;\n    for (const coord1 of multiPoint1.coordinates) {\n      if (compareCoords(coord2, coord1)) {\n        matchFound = true;\n        break;\n      }\n    }\n    if (!matchFound) {\n      return false;\n    }\n  }\n  return true;\n}\n\nfunction isMultiPointOnLine(lineString: LineString, multiPoint: MultiPoint) {\n  let haveFoundInteriorPoint = false;\n  for (const coord of multiPoint.coordinates) {\n    if (isPointOnLine(coord, lineString, { ignoreEndVertices: true })) {\n      haveFoundInteriorPoint = true;\n    }\n    if (!isPointOnLine(coord, lineString)) {\n      return false;\n    }\n  }\n  if (haveFoundInteriorPoint) {\n    return true;\n  }\n  return false;\n}\n\nfunction isMultiPointInPoly(polygon: Polygon, multiPoint: MultiPoint) {\n  for (const coord of multiPoint.coordinates) {\n    if (!booleanPointInPolygon(coord, polygon, { ignoreBoundary: true })) {\n      return false;\n    }\n  }\n  return true;\n}\n\nfunction isLineOnLine(lineString1: LineString, lineString2: LineString) {\n  let haveFoundInteriorPoint = false;\n  for (const coords of lineString2.coordinates) {\n    if (\n      isPointOnLine({ type: \"Point\", coordinates: coords }, lineString1, {\n        ignoreEndVertices: true,\n      })\n    ) {\n      haveFoundInteriorPoint = true;\n    }\n    if (\n      !isPointOnLine({ type: \"Point\", coordinates: coords }, lineString1, {\n        ignoreEndVertices: false,\n      })\n    ) {\n      return false;\n    }\n  }\n  return haveFoundInteriorPoint;\n}\n\nfunction splitLineIntoSegmentsOnPolygon(\n  linestring: LineString,\n  polygon: Polygon\n) {\n  const coords = linestring.coordinates;\n\n  const outputSegments: Feature<LineString>[] = [];\n\n  for (let i = 0; i < coords.length - 1; i++) {\n    const seg = lineString([coords[i], coords[i + 1]]);\n    const split = lineSplit(seg, feature(polygon));\n\n    if (split.features.length === 0) {\n      outputSegments.push(seg);\n    } else {\n      outputSegments.push(...split.features);\n    }\n  }\n\n  return featureCollection(outputSegments);\n}\n\nfunction isLineInPoly(polygon: Polygon, linestring: LineString) {\n  const polyBbox = calcBbox(polygon);\n  const lineBbox = calcBbox(linestring);\n\n  if (!doBBoxOverlap(polyBbox, lineBbox)) {\n    return false;\n  }\n\n  for (const coord of linestring.coordinates) {\n    if (!booleanPointInPolygon(coord, polygon)) {\n      return false;\n    }\n  }\n\n  let isContainedByPolygonBoundary = false;\n  // split intersecting segments and verify their inclusion\n  const lineSegments = splitLineIntoSegmentsOnPolygon(linestring, polygon);\n\n  for (const lineSegment of lineSegments.features) {\n    const midpoint = getMidpoint(\n      lineSegment.geometry.coordinates[0],\n      lineSegment.geometry.coordinates[1]\n    );\n\n    // make sure all segments do not intersect with polygon exterior\n    if (!booleanPointInPolygon(midpoint, polygon)) {\n      return false;\n    }\n\n    // make sure at least 1 segment intersects with the polygon's interior\n    if (\n      !isContainedByPolygonBoundary &&\n      booleanPointInPolygon(midpoint, polygon, { ignoreBoundary: true })\n    ) {\n      isContainedByPolygonBoundary = true;\n    }\n  }\n\n  return isContainedByPolygonBoundary;\n}\n\n/**\n * Is Polygon2 in Polygon1\n * Only takes into account outer rings\n *\n * @private\n * @param {Geometry|Feature<Polygon>} feature1 Polygon1\n * @param {Geometry|Feature<Polygon>} feature2 Polygon2\n * @returns {boolean} true/false\n */\nfunction isPolyInPoly(\n  feature1: Feature<Polygon> | Polygon,\n  feature2: Feature<Polygon> | Polygon\n) {\n  // Handle Nulls\n  if (feature1.type === \"Feature\" && feature1.geometry === null) {\n    return false;\n  }\n  if (feature2.type === \"Feature\" && feature2.geometry === null) {\n    return false;\n  }\n\n  const poly1Bbox = calcBbox(feature1);\n  const poly2Bbox = calcBbox(feature2);\n  if (!doBBoxOverlap(poly1Bbox, poly2Bbox)) {\n    return false;\n  }\n\n  const coords = getGeom(feature2).coordinates;\n  for (const ring of coords) {\n    for (const coord of ring) {\n      if (!booleanPointInPolygon(coord, feature1)) {\n        return false;\n      }\n    }\n  }\n  return true;\n}\n\nfunction doBBoxOverlap(bbox1: BBox, bbox2: BBox) {\n  if (bbox1[0] > bbox2[0]) {\n    return false;\n  }\n  if (bbox1[2] < bbox2[2]) {\n    return false;\n  }\n  if (bbox1[1] > bbox2[1]) {\n    return false;\n  }\n  if (bbox1[3] < bbox2[3]) {\n    return false;\n  }\n  return true;\n}\n\n/**\n * compareCoords\n *\n * @private\n * @param {Position} pair1 point [x,y]\n * @param {Position} pair2 point [x,y]\n * @returns {boolean} true/false if coord pairs match\n */\nfunction compareCoords(pair1: number[], pair2: number[]) {\n  return pair1[0] === pair2[0] && pair1[1] === pair2[1];\n}\n\nfunction getMidpoint(pair1: number[], pair2: number[]) {\n  return [(pair1[0] + pair2[0]) / 2, (pair1[1] + pair2[1]) / 2];\n}\n\nexport {\n  booleanContains,\n  isPolygonInMultiPolygon,\n  isPointInMultiPoint,\n  isMultiPointInMultiPoint,\n  isMultiPointOnLine,\n  isMultiPointInPoly,\n  isLineOnLine,\n  isLineInPoly,\n  isPolyInPoly,\n  isMultiPolyInPoly,\n  doBBoxOverlap,\n  compareCoords,\n  getMidpoint,\n};\n\nexport default booleanContains;\n"
  },
  {
    "path": "packages/turf-boolean-contains/package.json",
    "content": "{\n  \"name\": \"@turf/boolean-contains\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Determines whether the second geometry is completely within the first geometry.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Rowan Winsemius <@rowanwins>\",\n    \"Denis Carriere <@DenisCarriere>\",\n    \"Samuel Arbibe <@samuelarbibe>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"contains\",\n    \"boolean\",\n    \"de-9im\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"boolean-jsts\": \"*\",\n    \"boolean-shapely\": \"*\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/boolean-point-in-polygon\": \"workspace:*\",\n    \"@turf/boolean-point-on-line\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/line-split\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/LineString/LineString/LineIsNotContainedByLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 2],\n          [1, 3],\n          [1, 15.5]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/MultiPoint/LineString/MultiPointsIsNotContainedByLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12],\n          [15, 15]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/MultiPoint/LineString/MultiPointsOnLineEndsIsNotContainedByLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/MultiPoint/MultiPoint/MultiPointIsNotContainedByMultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12],\n          [15, 15]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 1.5]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/MultiPoint/Polygon/MultiPointAllOnBoundaryIsNotContainedByPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 10]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/MultiPoint/Polygon/MultiPointIsNotContainedByPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12],\n          [15, 15]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/MultiPolygon/Polygon/MultiPolygonIsNotContainedByPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [5.697231218450497, 39.505906288651715],\n            [5.697231218450497, 40.50986523812119],\n            [4.30801420435526, 40.50986523812119],\n            [4.30801420435526, 39.505906288651715],\n            [5.697231218450497, 39.505906288651715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": null,\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [3.6968994140625, 39.65645604812829],\n              [4.622497558593749, 39.65645604812829],\n              [4.622497558593749, 40.168380093142446],\n              [3.6968994140625, 40.168380093142446],\n              [3.6968994140625, 39.65645604812829]\n            ]\n          ],\n          [\n            [\n              [4.73236083984375, 39.69450749856091],\n              [5.416259765624999, 39.69450749856091],\n              [5.416259765624999, 40.386304853509046],\n              [4.73236083984375, 40.386304853509046],\n              [4.73236083984375, 39.69450749856091]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/Point/LineString/PointIsNotContainedByLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 2]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/Point/LineString/PointIsNotContainedByLineBecauseOnEnd.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 4]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/Point/LineString/PointOnEndIsContainedByLinestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/Point/MultiPoint/PointIsNotContainedBYMultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 4]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/Point/Polygon/PointIsNotContainedByPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [14, 14]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/Point/Polygon/PointOnPolygonBoundary.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/Polygon/LineString/LineIsNotContainedByPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 2],\n          [1, 3],\n          [1, 15.5]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/Polygon/LineString/LineIsNotContainedByPolygonBoundary.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 2],\n          [1, 3],\n          [1, 3.5]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/Polygon/LineString/LineIsNotFullyContainedByPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.6459207, -1.2281524],\n            [11.0822393, -1.2461022],\n            [11.405411, -0.1869151],\n            [11.1181473, 1.9133448],\n            [10.0588623, 1.4646914],\n            [10.6692977, -0.0253296],\n            [10.6692977, -0.0253296],\n            [9.6459207, -1.2281524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [10.2166256, -0.7379163],\n          [11.0362904, 1.794324]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/Polygon/LineString/issue-#1201-false.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0000ff\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#0000ff\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [98.8769531, 35.3173663],\n            [83.144531, 14.349547],\n            [111.621093, 14.8598504],\n            [98.8769531, 35.3173663]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [111.621093, 14.8598504],\n          [98.8769531, 35.3173663]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/Polygon/MultiPolygon/PolygonIsNotContainedByMultipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [3.6968994140625, 39.65645604812829],\n              [4.622497558593749, 39.65645604812829],\n              [4.622497558593749, 40.168380093142446],\n              [3.6968994140625, 40.168380093142446],\n              [3.6968994140625, 39.65645604812829]\n            ]\n          ],\n          [\n            [\n              [4.73236083984375, 39.69450749856091],\n              [5.416259765624999, 39.69450749856091],\n              [5.416259765624999, 40.386304853509046],\n              [4.73236083984375, 40.386304853509046],\n              [4.73236083984375, 39.69450749856091]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.79827880859375, 39.45104033807322],\n            [4.9658203125, 39.45104033807322],\n            [4.9658203125, 39.56970506644249],\n            [4.79827880859375, 39.56970506644249],\n            [4.79827880859375, 39.45104033807322]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/Polygon/Polygon/Polygon-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 20],\n            [1, 3],\n            [1, 4],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/false/Polygon/Polygon/Polygon-Polygon2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ffa200\",\n        \"stroke-width\": 2,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#d4c63b\",\n        \"fill-opacity\": 0.5,\n        \"description\": \"shape which was intersected with a longer pipe to produce the pipe shown\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [3.1249679625034332, 50.90354450528237],\n            [3.1252093613147736, 50.90354957970863],\n            [3.1252361834049225, 50.90334491073787],\n            [3.125006854534149, 50.903344064996546],\n            [3.1248298287391663, 50.90339988389688],\n            [3.1249679625034332, 50.90354450528237]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"description\": \"output of an intersect call with a longer pipe and the other feature in this file\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [3.124910769300162, 50.90341155120744],\n            [3.12484701356319, 50.90343165437331],\n            [3.124918293470778, 50.903431917293965],\n            [3.124982049176972, 50.90341181412811],\n            [3.124910769300162, 50.90341155120744]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/true/LineString/LineString/LineIsContainedByLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 2],\n          [1, 3],\n          [1, 3.5]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/true/LineString/LineString/LinesExactlySame.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/true/MultiPoint/LineString/MultipointsIsContainedByLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 1.5]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/true/MultiPoint/MultiPoint/MultiPointsContainedByMultiPoints.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12],\n          [15, 15]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [15, 15]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/true/MultiPoint/MultiPoint/MultiPointsEqual.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12],\n          [15, 15]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12],\n          [15, 15]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/true/MultiPoint/Polygon/MultiPointIsContainedByPolygonBoundary.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [2, 2],\n          [4, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/true/MultiPolygon/Polygon/MultiPolygonIsContainedByPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [5.860668514226688, 40.60423664824944],\n            [3.248940527728166, 40.60423664824944],\n            [3.248940527728166, 39.35441976583036],\n            [5.860668514226688, 39.35441976583036],\n            [5.860668514226688, 40.60423664824944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": null,\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [3.6968994140625, 39.65645604812829],\n              [4.622497558593749, 39.65645604812829],\n              [4.622497558593749, 40.168380093142446],\n              [3.6968994140625, 40.168380093142446],\n              [3.6968994140625, 39.65645604812829]\n            ]\n          ],\n          [\n            [\n              [4.73236083984375, 39.69450749856091],\n              [5.416259765624999, 39.69450749856091],\n              [5.416259765624999, 40.386304853509046],\n              [4.73236083984375, 40.386304853509046],\n              [4.73236083984375, 39.69450749856091]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/true/Point/LineString/PointIsContainedByLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 2]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/true/Point/MultiPoint/PointIsContainedByMultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/true/Point/Polygon/PointInsidePolygonBoundary.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4, 4]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/true/Polygon/LineString/LineIsContainedByPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [2, 3],\n          [2, 3.5]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/true/Polygon/LineString/LineIsContainedByPolygonWithNoInternalVertices.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [10, 10]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/true/Polygon/LineString/LineIsContainedByPolygonWithSegmentOnBoundary.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [2, 3]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/true/Polygon/LineString/LineIsFullyContainedByPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [2, 3],\n          [2, 3.5]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/true/Polygon/MultiPolygon/PolygonIsContainedByMultipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [3.6968994140625, 39.65645604812829],\n              [4.622497558593749, 39.65645604812829],\n              [4.622497558593749, 40.168380093142446],\n              [3.6968994140625, 40.168380093142446],\n              [3.6968994140625, 39.65645604812829]\n            ]\n          ],\n          [\n            [\n              [4.73236083984375, 39.69450749856091],\n              [5.416259765624999, 39.69450749856091],\n              [5.416259765624999, 40.386304853509046],\n              [4.73236083984375, 40.386304853509046],\n              [4.73236083984375, 39.69450749856091]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.872436523437499, 39.78321267821705],\n            [5.0372314453125, 39.78321267821705],\n            [5.0372314453125, 39.8928799002948],\n            [4.872436523437499, 39.8928799002948],\n            [4.872436523437499, 39.78321267821705]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/true/Polygon/Polygon/PolygonExactSameShape.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-12.65625, 36.87962060502676],\n            [35.419921875, 36.38591277287651],\n            [37.79296875, 56.897003921272606],\n            [-12.12890625, 57.040729838360875],\n            [-12.65625, 36.87962060502676]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-12.65625, 36.87962060502676],\n            [35.419921875, 36.38591277287651],\n            [37.79296875, 56.897003921272606],\n            [-12.12890625, 57.040729838360875],\n            [-12.65625, 36.87962060502676]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test/true/Polygon/Polygon/PolygonIsContainedByPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [2, 2],\n            [3, 2],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-contains/test.ts",
    "content": "import { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { point } from \"@turf/helpers\";\nimport booleanJSTS from \"boolean-jsts\";\nimport shapely from \"boolean-shapely\";\nimport { booleanContains as contains } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-boolean-contains\", (t) => {\n  // True Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"true\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const feature1 = geojson.features[0];\n      const feature2 = geojson.features[1];\n      const result = contains(feature1, feature2);\n\n      if (process.env.JSTS)\n        t.true(\n          booleanJSTS(\"contains\", feature1, feature2),\n          \"[true] JSTS - \" + name\n        );\n      if (process.env.SHAPELY)\n        shapely\n          .contains(feature1, feature2)\n          .then((result) => t.true(result, \"[true] shapely - \" + name));\n      t.true(result, \"[true] \" + name);\n    });\n  // False Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"false\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const feature1 = geojson.features[0];\n      const feature2 = geojson.features[1];\n      const result = contains(feature1, feature2);\n\n      if (process.env.JSTS)\n        t.false(\n          booleanJSTS(\"contains\", feature1, feature2),\n          \"[false] JSTS - \" + name\n        );\n      if (process.env.SHAPELY)\n        shapely\n          .contains(feature1, feature2)\n          .then((result) => t.false(result, \"[false] shapely - \" + name));\n      t.false(result, \"[false] \" + name);\n    });\n  t.end();\n});\n\ntest(\"turf-boolean-contains -- Geometry Objects\", (t) => {\n  const pt1 = point([0, 0]);\n  const pt2 = point([0, 0]);\n\n  t.assert(contains(pt1.geometry, pt2.geometry));\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-boolean-contains/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-boolean-crosses/README.md",
    "content": "# @turf/boolean-crosses\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## booleanCrosses\n\nBoolean-Crosses returns True if the intersection results in a geometry whose dimension is one less than\nthe maximum dimension of the two source geometries and the intersection set is interior to\nboth source geometries.\n\nBoolean-Crosses returns t (TRUE) for only multipoint/polygon, multipoint/linestring, linestring/linestring, linestring/polygon, and linestring/multipolygon comparisons.\nOther comparisons are not supported as they are outside the OpenGIS Simple Features spec and may give unexpected results.\n\n### Parameters\n\n*   `feature1` **([Geometry][1] | [Feature][2]\\<any>)** GeoJSON Feature or Geometry\n*   `feature2` **([Geometry][1] | [Feature][2]\\<any>)** GeoJSON Feature or Geometry\n\n### Examples\n\n```javascript\nvar line1 = turf.lineString([[-2, 2], [4, 2]]);\nvar line2 = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]);\n\nvar cross = turf.booleanCrosses(line1, line2);\n//=true\n```\n\nReturns **[boolean][3]** true/false\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/boolean-crosses\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n\n\n### Diagrams\n\n![esri-crosses](diagrams/esri-crosses.gif)"
  },
  {
    "path": "packages/turf-boolean-crosses/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport Benchmark from \"benchmark\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { booleanCrosses as crosses } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n * LineDoesNotCrossButTouches: 3.012ms\n * LineDoesNotCrossLine: 0.170ms\n * LineDoesNotCrossPolygon: 0.644ms\n * MultiPointNotCrossLine: 0.135ms\n * MultiPointNotCrossLineEnd: 0.031ms\n * LineCrossesLine: 0.321ms\n * LineCrossesPolygon: 0.405ms\n * LineCrossesPolygonPartial: 0.408ms\n * MultiPointsCrossLine: 0.026ms\n * LineDoesNotCrossButTouches x 71,945 ops/sec ±2.04% (71 runs sampled)\n * LineDoesNotCrossLine x 88,084 ops/sec ±2.56% (70 runs sampled)\n * LineDoesNotCrossPolygon x 86,024 ops/sec ±2.80% (71 runs sampled)\n * MultiPointNotCrossLine x 11,976,750 ops/sec ±1.61% (93 runs sampled)\n * MultiPointNotCrossLineEnd x 10,191,949 ops/sec ±3.51% (85 runs sampled)\n * LineCrossesLine x 68,764 ops/sec ±2.53% (72 runs sampled)\n * LineCrossesPolygon x 49,268 ops/sec ±2.70% (80 runs sampled)\n * LineCrossesPolygonPartial x 63,313 ops/sec ±2.87% (71 runs sampled)\n * MultiPointsCrossLine x 10,900,034 ops/sec ±0.39% (93 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-boolean-crosses\");\nglob\n  .sync(path.join(__dirname, \"test\", \"**\", \"*.geojson\"))\n  .forEach((filepath) => {\n    const { name } = path.parse(filepath);\n    const geojson = loadJsonFileSync(filepath);\n    const [feature1, feature2] = geojson.features;\n\n    console.time(name);\n    crosses(feature1, feature2);\n    console.timeEnd(name);\n    suite.add(name, () => crosses(feature1, feature2));\n  });\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-boolean-crosses/index.ts",
    "content": "import { Feature, Geometry, Polygon, LineString, MultiPoint } from \"geojson\";\nimport { lineIntersect } from \"@turf/line-intersect\";\nimport { polygonToLine } from \"@turf/polygon-to-line\";\nimport { booleanEqual } from \"@turf/boolean-equal\";\nimport { booleanPointInPolygon } from \"@turf/boolean-point-in-polygon\";\nimport { getGeom } from \"@turf/invariant\";\nimport { point } from \"@turf/helpers\";\n\n/**\n * Boolean-Crosses returns True if the intersection results in a geometry whose dimension is one less than\n * the maximum dimension of the two source geometries and the intersection set is interior to\n * both source geometries.\n *\n * Boolean-Crosses returns t (TRUE) for only multipoint/polygon, multipoint/linestring, linestring/linestring, linestring/polygon, and linestring/multipolygon comparisons.\n * Other comparisons are not supported as they are outside the OpenGIS Simple Features spec and may give unexpected results.\n *\n * @function\n * @param {Geometry|Feature<any>} feature1 GeoJSON Feature or Geometry\n * @param {Geometry|Feature<any>} feature2 GeoJSON Feature or Geometry\n * @returns {boolean} true/false\n * @example\n * var line1 = turf.lineString([[-2, 2], [4, 2]]);\n * var line2 = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]);\n *\n * var cross = turf.booleanCrosses(line1, line2);\n * //=true\n */\nfunction booleanCrosses(\n  feature1: Feature<any> | Geometry,\n  feature2: Feature<any> | Geometry\n): boolean {\n  var geom1 = getGeom(feature1);\n  var geom2 = getGeom(feature2);\n  var type1 = geom1.type;\n  var type2 = geom2.type;\n\n  switch (type1) {\n    case \"MultiPoint\":\n      switch (type2) {\n        case \"LineString\":\n          return doMultiPointAndLineStringCross(geom1, geom2);\n        case \"Polygon\":\n          return doesMultiPointCrossPoly(geom1, geom2);\n        default:\n          throw new Error(\"feature2 \" + type2 + \" geometry not supported\");\n      }\n    case \"LineString\":\n      switch (type2) {\n        case \"MultiPoint\": // An inverse operation\n          return doMultiPointAndLineStringCross(geom2, geom1);\n        case \"LineString\":\n          return doLineStringsCross(geom1, geom2);\n        case \"Polygon\":\n          return doLineStringAndPolygonCross(geom1, geom2);\n        default:\n          throw new Error(\"feature2 \" + type2 + \" geometry not supported\");\n      }\n    case \"Polygon\":\n      switch (type2) {\n        case \"MultiPoint\": // An inverse operation\n          return doesMultiPointCrossPoly(geom2, geom1);\n        case \"LineString\": // An inverse operation\n          return doLineStringAndPolygonCross(geom2, geom1);\n        default:\n          throw new Error(\"feature2 \" + type2 + \" geometry not supported\");\n      }\n    default:\n      throw new Error(\"feature1 \" + type1 + \" geometry not supported\");\n  }\n}\n\nfunction doMultiPointAndLineStringCross(\n  multiPoint: MultiPoint,\n  lineString: LineString\n) {\n  var foundIntPoint = false;\n  var foundExtPoint = false;\n  var pointLength = multiPoint.coordinates.length;\n  var i = 0;\n  while (i < pointLength && !foundIntPoint && !foundExtPoint) {\n    for (var i2 = 0; i2 < lineString.coordinates.length - 1; i2++) {\n      var incEndVertices = true;\n      if (i2 === 0 || i2 === lineString.coordinates.length - 2) {\n        incEndVertices = false;\n      }\n      if (\n        isPointOnLineSegment(\n          lineString.coordinates[i2],\n          lineString.coordinates[i2 + 1],\n          multiPoint.coordinates[i],\n          incEndVertices\n        )\n      ) {\n        foundIntPoint = true;\n      } else {\n        foundExtPoint = true;\n      }\n    }\n    i++;\n  }\n  return foundIntPoint && foundExtPoint;\n}\n\nfunction doLineStringsCross(lineString1: LineString, lineString2: LineString) {\n  // See if there are any intersection points between these two lines.\n  const doLinesIntersect = lineIntersect(lineString1, lineString2);\n  if (doLinesIntersect.features.length === 0) return false;\n\n  // As soon as we find any intersect point that doesn't lie on the start or\n  // end point of either input lineString, that's considered a crossing.\n  for (const intersectPoint of doLinesIntersect.features) {\n    if (\n      !booleanEqual(\n        intersectPoint.geometry,\n        point(lineString1.coordinates[0])\n      ) &&\n      !booleanEqual(\n        intersectPoint.geometry,\n        point(lineString1.coordinates[lineString1.coordinates.length - 1])\n      ) &&\n      !booleanEqual(\n        intersectPoint.geometry,\n        point(lineString2.coordinates[0])\n      ) &&\n      !booleanEqual(\n        intersectPoint.geometry,\n        point(lineString2.coordinates[lineString2.coordinates.length - 1])\n      )\n    ) {\n      return true;\n    }\n  }\n\n  // Every intersection point we tried fell on an end point (considered the\n  // boundary) of one of the input lines. Not considered a crossing.\n  return false;\n}\n\nfunction doLineStringAndPolygonCross(lineString: LineString, polygon: Polygon) {\n  const line: any = polygonToLine(polygon);\n  const doLinesIntersect = lineIntersect(lineString, line);\n  if (doLinesIntersect.features.length > 0) {\n    return true;\n  }\n  return false;\n}\n\nfunction doesMultiPointCrossPoly(multiPoint: MultiPoint, polygon: Polygon) {\n  var foundIntPoint = false;\n  var foundExtPoint = false;\n  var pointLength = multiPoint.coordinates.length;\n  for (let i = 0; i < pointLength && (!foundIntPoint || !foundExtPoint); i++) {\n    if (booleanPointInPolygon(point(multiPoint.coordinates[i]), polygon)) {\n      foundIntPoint = true;\n    } else {\n      foundExtPoint = true;\n    }\n  }\n\n  return foundExtPoint && foundIntPoint;\n}\n\n/**\n * Is a point on a line segment\n * Only takes into account outer rings\n * See http://stackoverflow.com/a/4833823/1979085\n *\n * @private\n * @param {number[]} lineSegmentStart coord pair of start of line\n * @param {number[]} lineSegmentEnd coord pair of end of line\n * @param {number[]} pt coord pair of point to check\n * @param {boolean} incEnd whether the point is allowed to fall on the line ends\n * @returns {boolean} true/false\n */\nfunction isPointOnLineSegment(\n  lineSegmentStart: number[],\n  lineSegmentEnd: number[],\n  pt: number[],\n  incEnd: boolean\n) {\n  var dxc = pt[0] - lineSegmentStart[0];\n  var dyc = pt[1] - lineSegmentStart[1];\n  var dxl = lineSegmentEnd[0] - lineSegmentStart[0];\n  var dyl = lineSegmentEnd[1] - lineSegmentStart[1];\n  var cross = dxc * dyl - dyc * dxl;\n  if (cross !== 0) {\n    return false;\n  }\n  if (incEnd) {\n    if (Math.abs(dxl) >= Math.abs(dyl)) {\n      return dxl > 0\n        ? lineSegmentStart[0] <= pt[0] && pt[0] <= lineSegmentEnd[0]\n        : lineSegmentEnd[0] <= pt[0] && pt[0] <= lineSegmentStart[0];\n    }\n    return dyl > 0\n      ? lineSegmentStart[1] <= pt[1] && pt[1] <= lineSegmentEnd[1]\n      : lineSegmentEnd[1] <= pt[1] && pt[1] <= lineSegmentStart[1];\n  } else {\n    if (Math.abs(dxl) >= Math.abs(dyl)) {\n      return dxl > 0\n        ? lineSegmentStart[0] < pt[0] && pt[0] < lineSegmentEnd[0]\n        : lineSegmentEnd[0] < pt[0] && pt[0] < lineSegmentStart[0];\n    }\n    return dyl > 0\n      ? lineSegmentStart[1] < pt[1] && pt[1] < lineSegmentEnd[1]\n      : lineSegmentEnd[1] < pt[1] && pt[1] < lineSegmentStart[1];\n  }\n}\n\nexport { booleanCrosses };\nexport default booleanCrosses;\n"
  },
  {
    "path": "packages/turf-boolean-crosses/package.json",
    "content": "{\n  \"name\": \"@turf/boolean-crosses\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Checks if two geometries cross each other.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Rowan Winsemius <@rowanwins>\",\n    \"Denis Carriere <@DenisCarriere>\",\n    \"James Beard <@smallsaucepan>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"equal\",\n    \"boolean\",\n    \"de-9im\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"boolean-shapely\": \"*\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/boolean-equal\": \"workspace:*\",\n    \"@turf/boolean-point-in-polygon\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/line-intersect\": \"workspace:*\",\n    \"@turf/polygon-to-line\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/false/LineString/LineString/LineDoesNotCrossLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-2, 2],\n          [-4, 2]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/false/LineString/LineString/LineOverlapsLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [5, 0]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 0],\n          [6, 0]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/false/LineString/LineString/LineTouchesLineBetweenVertices.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-2, 2],\n          [1, 2.4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/false/LineString/LineString/LineTouchesLineOnEndVertex.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-2, 2],\n          [1, 1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/false/LineString/LineString/LineTouchesLineOnInternalVertex.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-2, 2],\n          [1, 3]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/false/LineString/Polygon/LineDoesNotCrossPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-2, 2],\n          [-4, 2]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/false/MultiPoint/LineString/MultiPointNotCrossLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [2, 2],\n          [1, -1.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/false/MultiPoint/LineString/MultiPointNotCrossLineEnd.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/false/MultiPoint/Polygon/MultiPointNotCrossPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [3, 3],\n          [4, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 2],\n            [2, 2],\n            [2, 0],\n            [0, 0],\n            [0, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/true/LineString/LineString/LineCrossesLineBetweenVertices.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-2, 2],\n          [4, 2]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2.2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/true/LineString/LineString/LineCrossesLineOnEndVertex.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-2, 1],\n          [4, 1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/true/LineString/LineString/LineCrossesLineOnInternalVertex.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-2, 2],\n          [4, 2]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/true/LineString/LineString/issue-1901-horizontal.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-70.6433177, 42.6868265],\n          [-70.6432566, 42.6868154],\n          [-70.6431987, 42.6868074],\n          [-70.6431823, 42.686827],\n          [-70.6431638, 42.686834],\n          [-70.6431554, 42.6868565],\n          [-70.6431197, 42.6868921],\n          [-70.6430858, 42.6869429],\n          [-70.6430718, 42.6870095],\n          [-70.6430576, 42.6870561],\n          [-70.6430143, 42.6871279],\n          [-70.6429803, 42.6872049],\n          [-70.6429879, 42.6872361],\n          [-70.6430069, 42.687294],\n          [-70.6429886, 42.6873373],\n          [-70.6429655, 42.6873761],\n          [-70.6429517, 42.6874289],\n          [-70.6429176, 42.6874653],\n          [-70.6430169, 42.6874724],\n          [-70.6430173, 42.6875046],\n          [-70.6429568, 42.6875301],\n          [-70.6429351, 42.6875707],\n          [-70.6429639, 42.6876026],\n          [-70.6429618, 42.6876273],\n          [-70.6429205, 42.6876437],\n          [-70.642979, 42.6876995],\n          [-70.643058, 42.6876823],\n          [-70.6431052, 42.6876416],\n          [-70.6431347, 42.6876132],\n          [-70.6431633, 42.6875763],\n          [-70.6432075, 42.6875091],\n          [-70.6432276, 42.6875191],\n          [-70.643243, 42.6875865],\n          [-70.6432592, 42.6876215],\n          [-70.6432361, 42.6876818],\n          [-70.6432436, 42.6877306],\n          [-70.6432404, 42.6877815],\n          [-70.6432299, 42.6878144],\n          [-70.6432724, 42.687847],\n          [-70.6433394, 42.6878478],\n          [-70.6433343, 42.6879072],\n          [-70.6433207, 42.6879654],\n          [-70.6433571, 42.6880021],\n          [-70.643407, 42.6880716],\n          [-70.6434145, 42.6881248],\n          [-70.6434053, 42.6882038],\n          [-70.6433689, 42.688232],\n          [-70.6433801, 42.6882777],\n          [-70.6434366, 42.6882993],\n          [-70.6434638, 42.6883448],\n          [-70.6435474, 42.6883564],\n          [-70.6436326, 42.6883874],\n          [-70.6436274, 42.6884498],\n          [-70.6436621, 42.6884967],\n          [-70.6436683, 42.6885168]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-70.63436881703247, 42.68738824218277],\n          [-70.65233503703247, 42.68738824218277]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/true/LineString/LineString/issue-1901-vertical.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-70.6433177, 42.6868265],\n          [-70.6432566, 42.6868154],\n          [-70.6431987, 42.6868074],\n          [-70.6431823, 42.686827],\n          [-70.6431638, 42.686834],\n          [-70.6431554, 42.6868565],\n          [-70.6431197, 42.6868921],\n          [-70.6430858, 42.6869429],\n          [-70.6430718, 42.6870095],\n          [-70.6430576, 42.6870561],\n          [-70.6430143, 42.6871279],\n          [-70.6429803, 42.6872049],\n          [-70.6429879, 42.6872361],\n          [-70.6430069, 42.687294],\n          [-70.6429886, 42.6873373],\n          [-70.6429655, 42.6873761],\n          [-70.6429517, 42.6874289],\n          [-70.6429176, 42.6874653],\n          [-70.6430169, 42.6874724],\n          [-70.6430173, 42.6875046],\n          [-70.6429568, 42.6875301],\n          [-70.6429351, 42.6875707],\n          [-70.6429639, 42.6876026],\n          [-70.6429618, 42.6876273],\n          [-70.6429205, 42.6876437],\n          [-70.642979, 42.6876995],\n          [-70.643058, 42.6876823],\n          [-70.6431052, 42.6876416],\n          [-70.6431347, 42.6876132],\n          [-70.6431633, 42.6875763],\n          [-70.6432075, 42.6875091],\n          [-70.6432276, 42.6875191],\n          [-70.643243, 42.6875865],\n          [-70.6432592, 42.6876215],\n          [-70.6432361, 42.6876818],\n          [-70.6432436, 42.6877306],\n          [-70.6432404, 42.6877815],\n          [-70.6432299, 42.6878144],\n          [-70.6432724, 42.687847],\n          [-70.6433394, 42.6878478],\n          [-70.6433343, 42.6879072],\n          [-70.6433207, 42.6879654],\n          [-70.6433571, 42.6880021],\n          [-70.643407, 42.6880716],\n          [-70.6434145, 42.6881248],\n          [-70.6434053, 42.6882038],\n          [-70.6433689, 42.688232],\n          [-70.6433801, 42.6882777],\n          [-70.6434366, 42.6882993],\n          [-70.6434638, 42.6883448],\n          [-70.6435474, 42.6883564],\n          [-70.6436326, 42.6883874],\n          [-70.6436274, 42.6884498],\n          [-70.6436621, 42.6884967],\n          [-70.6436683, 42.6885168]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-70.64335192703247, 42.69637135218277],\n          [-70.64335192703247, 42.67840513218277]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/true/LineString/LineString/issue-2967-args-reversed.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-2, 2],\n          [4, 2]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/true/LineString/LineString/issue-2967.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-2, 2],\n          [4, 2]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/true/LineString/Polygon/LineCrossesPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/true/LineString/Polygon/LineCrossesPolygonPartial.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0.5, 2.5],\n          [1, 1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/true/MultiPoint/LineString/MultiPointsCrossLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 2],\n          [12, 12]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test/true/MultiPoint/Polygon/MultiPointsCrossPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [3, 3],\n          [1, 1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 2],\n            [2, 2],\n            [2, 0],\n            [0, 0],\n            [0, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-crosses/test.ts",
    "content": "import test from \"tape\";\nimport { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport shapely from \"boolean-shapely\";\nimport { booleanCrosses as crosses } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-boolean-crosses\", (t) => {\n  // True Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"true\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const feature1 = geojson.features[0];\n      const feature2 = geojson.features[1];\n      if (process.env.SHAPELY)\n        shapely\n          .crosses(feature1, feature2)\n          .then((result) => t.true(result, \"[true] shapely - \" + name));\n      t.true(crosses(feature1, feature2), \"[true] \" + name);\n    });\n  // False Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"false\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const feature1 = geojson.features[0];\n      const feature2 = geojson.features[1];\n      if (process.env.SHAPELY)\n        shapely\n          .crosses(feature1, feature2)\n          .then((result) => t.false(result, \"[false] shapely - \" + name));\n      t.false(crosses(feature1, feature2), \"[false] \" + name);\n    });\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-boolean-crosses/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/README.md",
    "content": "# @turf/boolean-disjoint\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## booleanDisjoint\n\nBoolean-disjoint returns (TRUE) if the intersection of the two geometries is an empty set.\n\n### Parameters\n\n*   `feature1` **([Geometry][1] | [Feature][2]\\<any>)** GeoJSON Feature or Geometry\n*   `feature2` **([Geometry][1] | [Feature][2]\\<any>)** GeoJSON Feature or Geometry\n*   `options` **[Object][3]** Optional parameters (optional, default `{}`)\n\n    *   `options.ignoreSelfIntersections` **[boolean][4]** ignore self-intersections on input features (optional, default `true`)\n\n### Examples\n\n```javascript\nvar point = turf.point([2, 2]);\nvar line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]);\n\nturf.booleanDisjoint(line, point);\n//=true\n```\n\nReturns **[boolean][4]** true if the intersection is an empty set, false otherwise\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/boolean-disjoint\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n\n\n### Diagrams\n\n![esri-disjoint](diagrams/esri-disjoint.gif)"
  },
  {
    "path": "packages/turf-boolean-disjoint/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { booleanDisjoint as disjoint } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n * LineIsNotDisjointFromLine: 3.464ms\n * LineIsNotDisjointFromPolygon: 1.199ms\n * MultiPointNotDisjointFromLine: 0.213ms\n * MultiPointNotDisjointFromMultipoint: 0.193ms\n * MultiPointNotDisjointFromPoly: 1.468ms\n * PointIsNotDisjointFromLineString: 0.184ms\n * PointNotDisjointFromInternalPoly: 0.651ms\n * PointNotDisjointFromMultipoint: 0.165ms\n * PointNotDisjointFromPoint: 0.020ms\n * PointNotDisjointFromPoly: 0.025ms\n * PolyIsNotDisjointFromPoly: 0.209ms\n * LineIsDisjointFromLine: 0.280ms\n * LineIsDisjointFromPolygon: 0.230ms\n * MultiPointDisjointFromLine: 0.046ms\n * MultiPointDisjointFromMultipoint: 0.015ms\n * MultiPointIsDisjointFromPoly: 0.034ms\n * PointDisjointFromMultipoint: 0.155ms\n * PointDisjointFromPoint: 0.021ms\n * PointIsDisjointFromLinestring: 0.962ms\n * PointIsDisjointFromPoly: 0.131ms\n * PolyIsDisjointFromPoly: 0.080ms\n * LineIsNotDisjointFromLine x 50,655 ops/sec ±3.66% (63 runs sampled)\n * LineIsNotDisjointFromPolygon x 49,947 ops/sec ±2.79% (42 runs sampled)\n * MultiPointNotDisjointFromLine x 7,431,677 ops/sec ±1.24% (85 runs sampled)\n * MultiPointNotDisjointFromMultipoint x 7,399,444 ops/sec ±0.99% (87 runs sampled)\n * MultiPointNotDisjointFromPoly x 2,298,298 ops/sec ±1.02% (88 runs sampled)\n * PointIsNotDisjointFromLineString x 10,068,082 ops/sec ±1.02% (89 runs sampled)\n * PointNotDisjointFromInternalPoly x 2,136,512 ops/sec ±1.24% (87 runs sampled)\n * PointNotDisjointFromMultipoint x 10,712,566 ops/sec ±0.98% (88 runs sampled)\n * PointNotDisjointFromPoint x 16,663,034 ops/sec ±0.98% (88 runs sampled)\n * PointNotDisjointFromPoly x 2,509,098 ops/sec ±1.06% (87 runs sampled)\n * PolyIsNotDisjointFromPoly x 2,078,010 ops/sec ±1.60% (85 runs sampled)\n * LineIsDisjointFromLine x 62,985 ops/sec ±4.13% (64 runs sampled)\n * LineIsDisjointFromPolygon x 58,937 ops/sec ±2.84% (62 runs sampled)\n * MultiPointDisjointFromLine x 4,634,718 ops/sec ±1.94% (85 runs sampled)\n * MultiPointDisjointFromMultipoint x 6,602,132 ops/sec ±3.76% (81 runs sampled)\n * MultiPointIsDisjointFromPoly x 1,203,406 ops/sec ±1.01% (87 runs sampled)\n * PointDisjointFromMultipoint x 11,373,917 ops/sec ±1.33% (87 runs sampled)\n * PointDisjointFromPoint x 18,149,666 ops/sec ±1.10% (85 runs sampled)\n * PointIsDisjointFromLinestring x 7,572,815 ops/sec ±0.97% (89 runs sampled)\n * PointIsDisjointFromPoly x 2,217,658 ops/sec ±1.04% (83 runs sampled)\n * PolyIsDisjointFromPoly x 551,254 ops/sec ±1.18% (90 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-boolean-disjoint\");\nglob\n  .sync(path.join(__dirname, \"test\", \"**\", \"*.geojson\"))\n  .forEach((filepath) => {\n    const { name } = path.parse(filepath);\n    const geojson = loadJsonFileSync(filepath);\n    const [feature1, feature2] = geojson.features;\n    console.time(name);\n    disjoint(feature1, feature2);\n    console.timeEnd(name);\n    suite.add(name, () => disjoint(feature1, feature2));\n  });\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/index.ts",
    "content": "import {\n  Feature,\n  Geometry,\n  LineString,\n  Point,\n  Polygon,\n  Position,\n} from \"geojson\";\nimport { booleanPointInPolygon } from \"@turf/boolean-point-in-polygon\";\nimport { lineIntersect } from \"@turf/line-intersect\";\nimport { flattenEach } from \"@turf/meta\";\nimport { polygonToLine } from \"@turf/polygon-to-line\";\n\n/**\n * Boolean-disjoint returns (TRUE) if the intersection of the two geometries is an empty set.\n *\n * @function\n * @param {Geometry|Feature<any>} feature1 GeoJSON Feature or Geometry\n * @param {Geometry|Feature<any>} feature2 GeoJSON Feature or Geometry\n * @param {Object} [options={}] Optional parameters\n * @param {boolean} [options.ignoreSelfIntersections=true] ignore self-intersections on input features\n * @returns {boolean} true if the intersection is an empty set, false otherwise\n * @example\n * var point = turf.point([2, 2]);\n * var line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]);\n *\n * turf.booleanDisjoint(line, point);\n * //=true\n */\nfunction booleanDisjoint(\n  feature1: Feature<any> | Geometry,\n  feature2: Feature<any> | Geometry,\n  {\n    ignoreSelfIntersections = true,\n  }: {\n    ignoreSelfIntersections?: boolean;\n  } = { ignoreSelfIntersections: true }\n): boolean {\n  let bool = true;\n  flattenEach(feature1, (flatten1) => {\n    flattenEach(feature2, (flatten2) => {\n      if (bool === false) {\n        return false;\n      }\n      bool = disjoint(\n        flatten1.geometry,\n        flatten2.geometry,\n        ignoreSelfIntersections\n      );\n    });\n  });\n  return bool;\n}\n\n/**\n * Disjoint operation for simple Geometries (Point/LineString/Polygon)\n *\n * @private\n * @param {Geometry<any>} geom1 GeoJSON Geometry\n * @param {Geometry<any>} geom2 GeoJSON Geometry\n * @param {boolean} ignoreSelfIntersections ignore self-intersections on input features\n * @returns {boolean} true if disjoint, false otherwise\n */\nfunction disjoint(geom1: any, geom2: any, ignoreSelfIntersections: boolean) {\n  switch (geom1.type) {\n    case \"Point\":\n      switch (geom2.type) {\n        case \"Point\":\n          return !compareCoords(geom1.coordinates, geom2.coordinates);\n        case \"LineString\":\n          return !isPointOnLine(geom2, geom1);\n        case \"Polygon\":\n          return !booleanPointInPolygon(geom1, geom2);\n      }\n      /* istanbul ignore next */\n      break;\n    case \"LineString\":\n      switch (geom2.type) {\n        case \"Point\":\n          return !isPointOnLine(geom1, geom2);\n        case \"LineString\":\n          return !isLineOnLine(geom1, geom2, ignoreSelfIntersections);\n        case \"Polygon\":\n          return !isLineInPoly(geom2, geom1, ignoreSelfIntersections);\n      }\n      /* istanbul ignore next */\n      break;\n    case \"Polygon\":\n      switch (geom2.type) {\n        case \"Point\":\n          return !booleanPointInPolygon(geom2, geom1);\n        case \"LineString\":\n          return !isLineInPoly(geom1, geom2, ignoreSelfIntersections);\n        case \"Polygon\":\n          return !isPolyInPoly(geom2, geom1, ignoreSelfIntersections);\n      }\n  }\n  return false;\n}\n\n// http://stackoverflow.com/a/11908158/1979085\nfunction isPointOnLine(lineString: LineString, pt: Point) {\n  for (let i = 0; i < lineString.coordinates.length - 1; i++) {\n    if (\n      isPointOnLineSegment(\n        lineString.coordinates[i],\n        lineString.coordinates[i + 1],\n        pt.coordinates\n      )\n    ) {\n      return true;\n    }\n  }\n  return false;\n}\n\nfunction isLineOnLine(\n  lineString1: LineString,\n  lineString2: LineString,\n  ignoreSelfIntersections: boolean\n) {\n  const doLinesIntersect = lineIntersect(lineString1, lineString2, {\n    ignoreSelfIntersections,\n  });\n  if (doLinesIntersect.features.length > 0) {\n    return true;\n  }\n  return false;\n}\n\nfunction isLineInPoly(\n  polygon: Polygon,\n  lineString: LineString,\n  ignoreSelfIntersections: boolean\n) {\n  for (const coord of lineString.coordinates) {\n    if (booleanPointInPolygon(coord, polygon)) {\n      return true;\n    }\n  }\n  const doLinesIntersect = lineIntersect(lineString, polygonToLine(polygon), {\n    ignoreSelfIntersections,\n  });\n  if (doLinesIntersect.features.length > 0) {\n    return true;\n  }\n  return false;\n}\n\n/**\n * Is Polygon (geom1) in Polygon (geom2)\n * Only takes into account outer rings\n * See http://stackoverflow.com/a/4833823/1979085\n *\n * @private\n * @param {Geometry|Feature<Polygon>} feature1 Polygon1\n * @param {Geometry|Feature<Polygon>} feature2 Polygon2\n * @param {boolean} ignoreSelfIntersections ignore self-intersections on input features\n * @returns {boolean} true if geom1 is in geom2, false otherwise\n */\nfunction isPolyInPoly(\n  feature1: Polygon,\n  feature2: Polygon,\n  ignoreSelfIntersections: boolean\n) {\n  for (const coord1 of feature1.coordinates[0]) {\n    if (booleanPointInPolygon(coord1, feature2)) {\n      return true;\n    }\n  }\n  for (const coord2 of feature2.coordinates[0]) {\n    if (booleanPointInPolygon(coord2, feature1)) {\n      return true;\n    }\n  }\n  const doLinesIntersect = lineIntersect(\n    polygonToLine(feature1),\n    polygonToLine(feature2),\n    { ignoreSelfIntersections }\n  );\n  if (doLinesIntersect.features.length > 0) {\n    return true;\n  }\n  return false;\n}\n\nfunction isPointOnLineSegment(\n  lineSegmentStart: Position,\n  lineSegmentEnd: Position,\n  pt: Position\n) {\n  const dxc = pt[0] - lineSegmentStart[0];\n  const dyc = pt[1] - lineSegmentStart[1];\n  const dxl = lineSegmentEnd[0] - lineSegmentStart[0];\n  const dyl = lineSegmentEnd[1] - lineSegmentStart[1];\n  const cross = dxc * dyl - dyc * dxl;\n  if (cross !== 0) {\n    return false;\n  }\n  if (Math.abs(dxl) >= Math.abs(dyl)) {\n    if (dxl > 0) {\n      return lineSegmentStart[0] <= pt[0] && pt[0] <= lineSegmentEnd[0];\n    } else {\n      return lineSegmentEnd[0] <= pt[0] && pt[0] <= lineSegmentStart[0];\n    }\n  } else if (dyl > 0) {\n    return lineSegmentStart[1] <= pt[1] && pt[1] <= lineSegmentEnd[1];\n  } else {\n    return lineSegmentEnd[1] <= pt[1] && pt[1] <= lineSegmentStart[1];\n  }\n}\n\n/**\n * compareCoords\n *\n * @private\n * @param {Position} pair1 point [x,y]\n * @param {Position} pair2 point [x,y]\n * @returns {boolean} true if coord pairs match, false otherwise\n */\nfunction compareCoords(pair1: Position, pair2: Position) {\n  return pair1[0] === pair2[0] && pair1[1] === pair2[1];\n}\n\nexport { booleanDisjoint };\nexport default booleanDisjoint;\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/package.json",
    "content": "{\n  \"name\": \"@turf/boolean-disjoint\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Checks if two geometries have no overlapping areas.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Rowan Winsemius <@rowanwins>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"disjoint\",\n    \"boolean\",\n    \"de-9im\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"boolean-shapely\": \"*\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/boolean-point-in-polygon\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/line-intersect\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@turf/polygon-to-line\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/LineString/LineString/LineString-LineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 2],\n          [12, 2],\n          [12, 3],\n          [12, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/LineString/Point/LineString-Point-1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/LineString/Point/LineString-Point-2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1.5]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/LineString/Polygon/LineString-In-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 2.5],\n          [2, 2.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/LineString/Polygon/LineString-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 2],\n          [12, 2],\n          [12, 3],\n          [12, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/MultiPoint/LineString/MultiPoint-LineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [0, 0]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [0, 0],\n          [12, 12]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/MultiPoint/Polygon/MultiPoint-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-1, 2],\n          [-2, -2]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ff0000\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [122.6953125, -19.186677697957833],\n              [128.759765625, -19.186677697957833],\n              [128.759765625, -15.28418511407642],\n              [122.6953125, -15.28418511407642],\n              [122.6953125, -19.186677697957833]\n            ]\n          ],\n          [\n            [\n              [123.74999999999999, -25.918526162075153],\n              [130.25390625, -25.918526162075153],\n              [130.25390625, -20.715015145512087],\n              [123.74999999999999, -20.715015145512087],\n              [123.74999999999999, -25.918526162075153]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#0000ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [119.20166015624999, -22.776181505086495],\n            [125.09033203124999, -22.776181505086495],\n            [125.09033203124999, -18.417078658661257],\n            [119.20166015624999, -18.417078658661257],\n            [119.20166015624999, -22.776181505086495]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/Point/LineString/Point-LineString-1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/Point/LineString/Point-LineString-2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/Point/LineString/Point-LineString-3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.5, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [2, 1],\n          [3, 1],\n          [4, 1]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/Point/LineString/Point-LineString-4.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.5, 2.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [2, 2],\n          [3, 3],\n          [4, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/Point/MultiPoint/Point-MultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/Point/Point/Point-Point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/Point/Polygon/Point-Polygon-1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 2.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/Point/Polygon/Point-Polygon-2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-1, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/Polygon/LineString/Polygon-Containing-Linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 2.5],\n          [2, 2.5]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/Polygon/LineString/Polygon-LineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 2],\n          [12, 2],\n          [12, 3],\n          [12, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#0000ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [119.20166015624999, -22.776181505086495],\n            [125.09033203124999, -22.776181505086495],\n            [125.09033203124999, -18.417078658661257],\n            [119.20166015624999, -18.417078658661257],\n            [119.20166015624999, -22.776181505086495]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ff0000\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [122.6953125, -19.186677697957833],\n              [128.759765625, -19.186677697957833],\n              [128.759765625, -15.28418511407642],\n              [122.6953125, -15.28418511407642],\n              [122.6953125, -19.186677697957833]\n            ]\n          ],\n          [\n            [\n              [123.74999999999999, -25.918526162075153],\n              [130.25390625, -25.918526162075153],\n              [130.25390625, -20.715015145512087],\n              [123.74999999999999, -20.715015145512087],\n              [123.74999999999999, -25.918526162075153]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/Polygon/Point/Polygon-Point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 2.5]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/Polygon/Polygon/Large-Inside-Small.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [19.6875, 34.016241889667015],\n            [14.765625, 26.745610382199022],\n            [19.6875, 23.563987128451217],\n            [23.203125, 26.43122806450644],\n            [22.148437499999996, 30.44867367928756],\n            [19.6875, 34.016241889667015]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [18.984375, 40.44694705960048],\n            [7.03125, 25.48295117535531],\n            [19.335937499999996, 18.979025953255267],\n            [31.640625, 24.206889622398023],\n            [24.960937499999996, 34.88593094075317],\n            [18.984375, 40.44694705960048]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/Polygon/Polygon/Polygon-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [-13, -12],\n            [-13, -13],\n            [-11, -13],\n            [-1, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/Polygon/Polygon/Small-Inside-Large.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [18.984375, 40.44694705960048],\n            [7.03125, 25.48295117535531],\n            [19.335937499999996, 18.979025953255267],\n            [31.640625, 24.206889622398023],\n            [24.960937499999996, 34.88593094075317],\n            [18.984375, 40.44694705960048]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [19.6875, 34.016241889667015],\n            [14.765625, 26.745610382199022],\n            [19.6875, 23.563987128451217],\n            [23.203125, 26.43122806450644],\n            [22.148437499999996, 30.44867367928756],\n            [19.6875, 34.016241889667015]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/false/Polygon/Polygon/issue-1216.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.638240782825051, 46.513552354874435],\n            [6.638240782825051, 46.52452567471025],\n            [6.632039186485088, 46.52452567471025],\n            [6.632039186485088, 46.513552354874435],\n            [6.638240782825051, 46.513552354874435]\n          ]\n        ]\n      },\n      \"bbox\": [\n        6.632039186485088, 46.513552354874435, 6.638240782825051, 46.52452567471025\n      ]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.645459572232596, 46.51709747623775],\n            [6.645459572232596, 46.52102619404951],\n            [6.626132904233913, 46.52102619404951],\n            [6.626132904233913, 46.51709747623775],\n            [6.645459572232596, 46.51709747623775]\n          ]\n        ]\n      },\n      \"bbox\": [6.626132904233913, 46.51709747623775, 6.645459572232596, 46.52102619404951]\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/true/LineString/LineString/LineString-LineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [12, 2],\n          [12, 3],\n          [12, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/true/LineString/Point/LineString-Point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/true/LineString/Polygon/LineString-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [12, 2],\n          [12, 3],\n          [12, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/true/MultiPoint/LineString/MultiPoint-LineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [2, 2],\n          [0, 0]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/true/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [0, 0],\n          [13, 13]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/true/MultiPoint/Point/MultiPoint-Point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/true/MultiPoint/Polygon/MultiPoint-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-3, -3],\n          [-2, -2]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/true/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ff0000\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [122.6953125, -19.186677697957833],\n              [128.759765625, -19.186677697957833],\n              [128.759765625, -15.28418511407642],\n              [122.6953125, -15.28418511407642],\n              [122.6953125, -19.186677697957833]\n            ]\n          ],\n          [\n            [\n              [123.74999999999999, -25.918526162075153],\n              [130.25390625, -25.918526162075153],\n              [130.25390625, -20.715015145512087],\n              [123.74999999999999, -20.715015145512087],\n              [123.74999999999999, -25.918526162075153]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#0000ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [116.98242187499999, -24.647017162630352],\n            [122.87109375, -24.647017162630352],\n            [122.87109375, -20.34462694382967],\n            [116.98242187499999, -20.34462694382967],\n            [116.98242187499999, -24.647017162630352]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/true/Point/LineString/Point-LineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/true/Point/MultiPoint/Point-Multipoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/true/Point/Point/Point-Point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 1]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/true/Point/Polygon/Point-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/true/Polygon/LineString/Polygon-LineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [12, 2],\n          [12, 3],\n          [12, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/true/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#0000ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [116.98242187499999, -24.647017162630352],\n            [122.87109375, -24.647017162630352],\n            [122.87109375, -20.34462694382967],\n            [116.98242187499999, -20.34462694382967],\n            [116.98242187499999, -24.647017162630352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ff0000\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [122.6953125, -19.186677697957833],\n              [128.759765625, -19.186677697957833],\n              [128.759765625, -15.28418511407642],\n              [122.6953125, -15.28418511407642],\n              [122.6953125, -19.186677697957833]\n            ]\n          ],\n          [\n            [\n              [123.74999999999999, -25.918526162075153],\n              [130.25390625, -25.918526162075153],\n              [130.25390625, -20.715015145512087],\n              [123.74999999999999, -20.715015145512087],\n              [123.74999999999999, -25.918526162075153]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/true/Polygon/Point/Polygon-Point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test/true/Polygon/Polygon/Polygon-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-11, -12],\n            [-13, -12],\n            [-13, -13],\n            [-11, -13],\n            [-11, -12]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/test.ts",
    "content": "import { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport shapely from \"boolean-shapely\";\nimport { booleanDisjoint as disjoint } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-boolean-disjoint\", (t) => {\n  // True Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"true\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson: GeoJSON.FeatureCollection = loadJsonFileSync(filepath);\n      const feature1 = geojson.features[0];\n      const feature2 = geojson.features[1];\n      const result = disjoint(feature1, feature2);\n\n      if (process.env.SHAPELY)\n        shapely\n          .disjoint(feature1, feature2)\n          .then((result) => t.true(result, \"[true] shapely - \" + name));\n      t.true(result, \"[true] \" + name);\n    });\n  // False Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"false\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson: GeoJSON.FeatureCollection = loadJsonFileSync(filepath);\n      const feature1 = geojson.features[0];\n      const feature2 = geojson.features[1];\n      const result = disjoint(feature1, feature2);\n\n      if (process.env.SHAPELY)\n        shapely\n          .disjoint(feature1, feature2)\n          .then((result) => t.false(result, \"[false] shapely - \" + name));\n      t.false(result, \"[false] \" + name);\n    });\n  t.end();\n});\n\ntest(\"turf-boolean-disjoin with ignoreSelfIntersections option\", (t) => {\n  const selfIntersectingLineString: GeoJSON.Feature<GeoJSON.LineString> = {\n    type: \"Feature\",\n    properties: {},\n    geometry: {\n      type: \"LineString\",\n      coordinates: [\n        [1, 1],\n        [2, 2],\n        [1, 2],\n        [2, 1],\n      ],\n    },\n  };\n\n  const nonIntersectingLineString: GeoJSON.Feature<GeoJSON.LineString> = {\n    type: \"Feature\",\n    properties: {},\n    geometry: {\n      type: \"LineString\",\n      coordinates: [\n        [0, 1],\n        [0, 0],\n      ],\n    },\n  };\n\n  const intersectingLineString: GeoJSON.Feature<GeoJSON.LineString> = {\n    type: \"Feature\",\n    properties: {},\n    geometry: {\n      type: \"LineString\",\n      coordinates: [\n        [0, 1],\n        [4, 2],\n      ],\n    },\n  };\n\n  const intersectingPolygon: GeoJSON.Feature<GeoJSON.Polygon> = {\n    type: \"Feature\",\n    properties: {},\n    geometry: {\n      type: \"Polygon\",\n      coordinates: [\n        [\n          [1.5, 1],\n          [2, 1.5],\n\n          [3, 0.5],\n          [1.5, 1],\n        ],\n      ],\n    },\n  };\n\n  const nonIntersectingPolygon: GeoJSON.Feature<GeoJSON.Polygon> = {\n    type: \"Feature\",\n    properties: {},\n    geometry: {\n      type: \"Polygon\",\n      coordinates: [\n        [\n          [0.5, 0],\n          [1, 0.5],\n\n          [2, -0.5],\n          [0.5, 0],\n        ],\n      ],\n    },\n  };\n\n  const selfIntersectingPolygon: GeoJSON.Feature<GeoJSON.Polygon> = {\n    type: \"Feature\",\n    properties: {},\n    geometry: {\n      type: \"Polygon\",\n      coordinates: [\n        [\n          [1.5, 1],\n          [2, 1.5],\n\n          [3, 0.5],\n          [-1, 3],\n          [1.5, 1],\n        ],\n      ],\n    },\n  };\n\n  // Test with ignoringSelfIntersections = true (default behavior)\n  let result = disjoint(selfIntersectingLineString, nonIntersectingLineString);\n  t.true(\n    result,\n    \"[true] \" +\n      \"selfIntersectingLineString-LineString (ignoreSelfIntersections=true)\"\n  );\n  result = disjoint(selfIntersectingLineString, intersectingLineString);\n  t.false(\n    result,\n    \"[false] \" +\n      \"selfIntersectingLineString-LineString (ignoreSelfIntersections=true)\"\n  );\n  result = disjoint(selfIntersectingLineString, intersectingPolygon);\n  t.false(\n    result,\n    \"[false] \" +\n      \"selfIntersectingLineString-Polygon (ignoreSelfIntersections=true)\"\n  );\n  result = disjoint(selfIntersectingLineString, nonIntersectingPolygon);\n  t.true(\n    result,\n    \"[true] \" +\n      \"selfIntersectingLineString-Polygon (ignoreSelfIntersections=true)\"\n  );\n  result = disjoint(selfIntersectingPolygon, nonIntersectingPolygon);\n  t.true(\n    result,\n    \"[true] \" + \"selfIntersectingPolygon-Polygon (ignoreSelfIntersections=true)\"\n  );\n\n  // Test with ignoringSelfIntersections option set to false\n  result = disjoint(selfIntersectingLineString, nonIntersectingLineString, {\n    ignoreSelfIntersections: false,\n  });\n  t.false(\n    result,\n    \"[false] \" +\n      \"selfIntersectingLineString-LineString (ignoreSelfIntersections=false)\"\n  );\n  result = disjoint(selfIntersectingLineString, intersectingLineString, {\n    ignoreSelfIntersections: false,\n  });\n  t.false(\n    result,\n    \"[false] \" +\n      \"selfIntersectingLineString-LineString (ignoreSelfIntersections=false)\"\n  );\n  result = disjoint(selfIntersectingLineString, intersectingPolygon, {\n    ignoreSelfIntersections: false,\n  });\n  t.false(\n    result,\n    \"[false] \" +\n      \"selfIntersectingLineString-Polygon (ignoreSelfIntersections=false)\"\n  );\n  result = disjoint(selfIntersectingLineString, nonIntersectingPolygon, {\n    ignoreSelfIntersections: false,\n  });\n  t.false(\n    result,\n    \"[false] \" +\n      \"selfIntersectingLineString-Polygon (ignoreSelfIntersections=false)\"\n  );\n  result = disjoint(selfIntersectingPolygon, nonIntersectingPolygon, {\n    ignoreSelfIntersections: false,\n  });\n  t.false(\n    result,\n    \"[false] \" +\n      \"selfIntersectingPolygon-Polygon (ignoreSelfIntersections=false)\"\n  );\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-boolean-disjoint/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-boolean-equal/README.md",
    "content": "# @turf/boolean-equal\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## booleanEqual\n\nDetermine whether two geometries of the same type have identical X,Y coordinate values.\nSee [http://edndoc.esri.com/arcsde/9.0/general\\_topics/understand\\_spatial\\_relations.htm][1]\n\n### Parameters\n\n*   `feature1` **([Geometry][2] | [Feature][3])** GeoJSON input\n*   `feature2` **([Geometry][2] | [Feature][3])** GeoJSON input\n*   `options` **[Object][4]** Optional parameters (optional, default `{}`)\n\n    *   `options.precision` **[number][5]** decimal precision to use when comparing coordinates (optional, default `6`)\n\n### Examples\n\n```javascript\nvar pt1 = turf.point([0, 0]);\nvar pt2 = turf.point([0, 0]);\nvar pt3 = turf.point([1, 1]);\n\nturf.booleanEqual(pt1, pt2);\n//= true\nturf.booleanEqual(pt2, pt3);\n//= false\n```\n\nReturns **[boolean][6]** true if the objects are equal, false otherwise\n\n[1]: http://edndoc.esri.com/arcsde/9.0/general_topics/understand_spatial_relations.htm\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/boolean-equal\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n\n\n### Diagrams\n\n![esri-equals](diagrams/esri-equals.gif)"
  },
  {
    "path": "packages/turf-boolean-equal/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { booleanEqual as equal } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n * linear-rings: 1.167ms\n * lines: 0.132ms\n * multipoints: 1.283ms\n * points: 0.043ms\n * polygons: 0.387ms\n * linear-rings: 0.166ms\n * lines: 0.068ms\n * multipoints: 0.148ms\n * points: 0.029ms\n * polygons: 0.131ms\n * reverse-lines: 0.711ms\n * reverse-polygons: 0.090ms\n * linear-rings x 337,778 ops/sec ±2.95% (76 runs sampled)\n * lines x 367,227 ops/sec ±2.50% (78 runs sampled)\n * multipoints x 54,325 ops/sec ±1.71% (80 runs sampled)\n * points x 529,881 ops/sec ±3.62% (74 runs sampled)\n * polygons x 177,515 ops/sec ±2.34% (80 runs sampled)\n * linear-rings x 92,709 ops/sec ±1.51% (82 runs sampled)\n * lines x 94,539 ops/sec ±2.52% (81 runs sampled)\n * multipoints x 34,458 ops/sec ±2.21% (81 runs sampled)\n * points x 384,832 ops/sec ±2.74% (81 runs sampled)\n * polygons x 71,289 ops/sec ±2.67% (77 runs sampled)\n * reverse-lines x 83,612 ops/sec ±3.31% (77 runs sampled)\n * reverse-polygons x 64,686 ops/sec ±1.91% (76 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-boolean-equal\");\nglob\n  .sync(path.join(__dirname, \"test\", \"**\", \"*.geojson\"))\n  .forEach((filepath) => {\n    const { name } = path.parse(filepath);\n    const geojson = loadJsonFileSync(filepath);\n    const [feature1, feature2] = geojson.features;\n    console.time(name);\n    equal(feature1, feature2);\n    console.timeEnd(name);\n    suite.add(name, () => equal(feature1, feature2));\n  });\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-boolean-equal/index.ts",
    "content": "import { Feature, Geometry } from \"geojson\";\nimport { geojsonEquality } from \"geojson-equality-ts\";\nimport { cleanCoords } from \"@turf/clean-coords\";\nimport { getGeom } from \"@turf/invariant\";\n\n/**\n * Determine whether two geometries of the same type have identical X,Y coordinate values.\n * See http://edndoc.esri.com/arcsde/9.0/general_topics/understand_spatial_relations.htm\n *\n * @function\n * @param {Geometry|Feature} feature1 GeoJSON input\n * @param {Geometry|Feature} feature2 GeoJSON input\n * @param {Object} [options={}] Optional parameters\n * @param {number} [options.precision=6] decimal precision to use when comparing coordinates\n * @returns {boolean} true if the objects are equal, false otherwise\n * @example\n * var pt1 = turf.point([0, 0]);\n * var pt2 = turf.point([0, 0]);\n * var pt3 = turf.point([1, 1]);\n *\n * turf.booleanEqual(pt1, pt2);\n * //= true\n * turf.booleanEqual(pt2, pt3);\n * //= false\n */\nfunction booleanEqual(\n  feature1: Feature<any> | Geometry,\n  feature2: Feature<any> | Geometry,\n  options: {\n    precision?: number;\n  } = {}\n): boolean {\n  let precision = options.precision;\n\n  precision =\n    precision === undefined || precision === null || isNaN(precision)\n      ? 6\n      : precision;\n\n  if (typeof precision !== \"number\" || !(precision >= 0)) {\n    throw new Error(\"precision must be a positive number\");\n  }\n\n  const type1 = getGeom(feature1).type;\n  const type2 = getGeom(feature2).type;\n  if (type1 !== type2) return false;\n\n  return geojsonEquality(cleanCoords(feature1), cleanCoords(feature2), {\n    precision,\n  });\n}\n\nexport { booleanEqual };\nexport default booleanEqual;\n"
  },
  {
    "path": "packages/turf-boolean-equal/package.json",
    "content": "{\n  \"name\": \"@turf/boolean-equal\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Determine whether two geometries of the same type have identical X,Y coordinate values\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Tom MacWright <@tmcw>\",\n    \"Tim Channell <@tcql>\",\n    \"Stefano Borghi <@stebogit>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gis\",\n    \"boolean\",\n    \"de-9im\",\n    \"equal\",\n    \"boolean-equal\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"boolean-shapely\": \"*\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/clean-coords\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"geojson-equality-ts\": \"^1.0.2\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/false/linear-rings.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-53.674866943359375, 28.30135788537988],\n          [-53.337249755859375, 28.47412369059679],\n          [-53.524017333984375, 28.17492820114568],\n          [-53.674866943359375, 28.30135788537988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-55.674866943359375, 28.30135788537988],\n          [-55.337249755859375, 28.47412369059679],\n          [-55.524017333984375, 28.17492820114568],\n          [-55.674866943359375, 28.30135788537988]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/false/lines.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [0, 5],\n          [5, 5],\n          [5, 0]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 0],\n          [1, 5],\n          [6, 5],\n          [6, 0]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/false/multipoints.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-35.5638671875, 27.254629577800063],\n          [-35.6462646484375, 26.86328062676624],\n          [-35, 26],\n          [-35.1001953125, 26.12091815959972],\n          [-34.8969482421875, 26.455820238459893]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-35.5638671875, 27.254629577800063],\n          [-35.6462646484375, 26.86328062676624],\n          [-35.4924560546875, 26.504988828743404],\n          [-35.1001953125, 26.12091815959972],\n          [-34.8969482421875, 26.455820238459893]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/false/points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 0]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/false/polygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53, 28.287451910503744],\n            [-53.33038330078125, 28.29228897739706],\n            [-53.34136962890625, 28.430052892335723],\n            [-53, 28.287451910503744]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.57208251953125, 28.287451910503744],\n            [-53.33038330078125, 28.29228897739706],\n            [-53.34136962890625, 28.430052892335723],\n            [-53.57208251953125, 28.287451910503744]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/false/precision-default.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.123456, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.123451, 0]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/false/precision-options.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"precision\": 17\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.12345678901234561, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.12345678901234564, 0]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/true/different-initials-poly.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 0],\n            [0, 0],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [1, 1],\n            [1, 0],\n            [0, 0]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/true/linear-rings.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-53.674866943359375, 28.30135788537988],\n          [-53.337249755859375, 28.47412369059679],\n          [-53.524017333984375, 28.17492820114568],\n          [-53.674866943359375, 28.30135788537988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-53.674866943359375, 28.30135788537988],\n          [-53.337249755859375, 28.47412369059679],\n          [-53.524017333984375, 28.17492820114568],\n          [-53.674866943359375, 28.30135788537988]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/true/lines-extra-vertices.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [2, 2]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [1, 1],\n          [2, 2]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/true/lines-reverse.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [2, 2],\n          [1, 1],\n          [0, 0]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [1, 1],\n          [2, 2]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/true/lines.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [0, 5],\n          [5, 5],\n          [5, 0]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [0, 5],\n          [5, 5],\n          [5, 0]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/true/multipoints.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-35.5638671875, 27.254629577800063],\n          [-35.6462646484375, 26.86328062676624],\n          [-35.4924560546875, 26.504988828743404],\n          [-35.1001953125, 26.12091815959972],\n          [-34.8969482421875, 26.455820238459893]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-35.5638671875, 27.254629577800063],\n          [-35.6462646484375, 26.86328062676624],\n          [-35.4924560546875, 26.504988828743404],\n          [-35.1001953125, 26.12091815959972],\n          [-34.8969482421875, 26.455820238459893]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/true/points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/true/polygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.57208251953125, 28.287451910503744],\n            [-53.33038330078125, 28.29228897739706],\n            [-53.34136962890625, 28.430052892335723],\n            [-53.57208251953125, 28.287451910503744]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.57208251953125, 28.287451910503744],\n            [-53.33038330078125, 28.29228897739706],\n            [-53.34136962890625, 28.430052892335723],\n            [-53.57208251953125, 28.287451910503744]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/true/precision-default.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.1234567, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.1234569, 0]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/true/precision-options.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"precision\": 16\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.12345678901234567, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.12345678901234569, 0]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/true/reverse-lines.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [0, 5],\n          [5, 5],\n          [5, 0]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [5, 0],\n          [5, 5],\n          [0, 5],\n          [0, 0]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test/true/reverse-polygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.57, 28.28],\n            [-53.33, 28.29],\n            [-53.34, 28.43],\n            [-53.57, 28.28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.57, 28.28],\n            [-53.34, 28.43],\n            [-53.33, 28.29],\n            [-53.57, 28.28]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-equal/test.ts",
    "content": "import { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport shapely from \"boolean-shapely\";\nimport { point, lineString, polygon } from \"@turf/helpers\";\nimport { booleanEqual as equal } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-boolean-equal\", (t) => {\n  // True Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"true\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const feature1 = geojson.features[0];\n      const feature2 = geojson.features[1];\n      const options = geojson.properties;\n      const result = equal(feature1, feature2, options);\n\n      if (process.env.SHAPELY)\n        shapely\n          .contains(feature1, feature2)\n          .then((result) => t.true(result, \"[true] shapely - \" + name));\n      t.true(result, \"[true] \" + name);\n    });\n  // False Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"false\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const feature1 = geojson.features[0];\n      const feature2 = geojson.features[1];\n      const options = geojson.properties;\n      const result = equal(feature1, feature2, options);\n\n      if (process.env.SHAPELY)\n        shapely\n          .contains(feature1, feature2)\n          .then((result) => t.false(result, \"[false] shapely - \" + name));\n      t.false(result, \"[false] \" + name);\n    });\n  t.end();\n});\n\nconst pt = point([9, 50]);\nconst line1 = lineString([\n  [7, 50],\n  [8, 50],\n  [9, 50],\n]);\nconst line2 = lineString([\n  [7, 50],\n  [8, 50],\n  [9, 50],\n]);\nconst poly1 = polygon(\n  [\n    [\n      [8.5, 50],\n      [9.5, 50],\n      [9.5, 49],\n      [8.5, 49],\n      [8.5, 50],\n    ],\n  ],\n  { prop: \"A\" }\n);\nconst poly2 = polygon(\n  [\n    [\n      [8.5, 50],\n      [9.5, 50],\n      [9.5, 49],\n      [8.5, 49],\n      [8.5, 50],\n    ],\n  ],\n  { prop: \"B\" }\n);\nconst poly3 = polygon([\n  [\n    [10, 50],\n    [10.5, 50],\n    [10.5, 49],\n    [10, 49],\n    [10, 50],\n  ],\n]);\nconst poly4 = polygon(\n  [\n    [\n      [8.5, 50],\n      [9.5, 50],\n      [9.5, 49],\n      [8.5, 49],\n      [8.5, 50],\n    ],\n  ],\n  { prop: \"A\" }\n);\n\ntest(\"turf-boolean-equal -- geometries\", (t) => {\n  t.true(equal(line1.geometry, line2.geometry), \"[true] LineString geometry\");\n  t.true(equal(poly1.geometry, poly2.geometry), \"[true] Polygon geometry\");\n  t.true(equal(poly1, poly4), \"[true] Polygon feature\");\n  t.false(equal(poly1.geometry, poly3.geometry), \"[false] Polygon geometry\");\n  t.false(equal(pt, line1), \"[false] different types\");\n  t.false(equal(poly1, poly2), \"[false] different properties\");\n  t.end();\n});\n\ntest(\"turf-boolean-equal -- throws\", (t) => {\n  //t.throws(() => equal(null, line1), /feature1 is required/, 'missing feature1');\n  //t.throws(() => equal(line1, null), /feature2 is required/, 'missing feature2');\n  t.throws(\n    () => equal(line1.geometry, line2.geometry, { precision: \"1\" }),\n    \"precision must be a number\"\n  );\n  t.throws(\n    () => equal(line1.geometry, line2.geometry, { precision: -1 }),\n    \"precision must be positive\"\n  );\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-boolean-equal/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-boolean-intersects/README.md",
    "content": "# @turf/boolean-intersects\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## booleanIntersects\n\nBoolean-intersects returns (TRUE) if the intersection of the two geometries is NOT an empty set.\n\n### Parameters\n\n*   `feature1` **([Geometry][1] | [Feature][2]\\<any>)** GeoJSON Feature or Geometry\n*   `feature2` **([Geometry][1] | [Feature][2]\\<any>)** GeoJSON Feature or Geometry\n*   `options` **[Object][3]** Optional parameters (optional, default `{}`)\n\n    *   `options.ignoreSelfIntersections` **[boolean][4]** ignore self-intersections on input features (optional, default `true`)\n\n### Examples\n\n```javascript\nvar point1 = turf.point([2, 2]);\nvar point2 = turf.point([1, 2]);\nvar line = turf.lineString([[1, 1], [1, 3], [1, 4]]);\n\nturf.booleanIntersects(line, point1);\n//=false\n\nturf.booleanIntersects(line, point2);\n//=true\n\n//addToMap\nvar addToMap = [point1, point2, line];\npoint1.properties['marker-color'] = '#f00'\npoint2.properties['marker-color'] = '#0f0'\n```\n\nReturns **[boolean][4]** true if geometries intersect, false otherwise\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/boolean-intersects\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-boolean-intersects/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { booleanIntersects as intersects } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n * LineIsNotDisjointFromLine: 3.464ms\n * LineIsNotDisjointFromPolygon: 1.199ms\n * MultiPointNotDisjointFromLine: 0.213ms\n * MultiPointNotDisjointFromMultipoint: 0.193ms\n * MultiPointNotDisjointFromPoly: 1.468ms\n * PointIsNotDisjointFromLineString: 0.184ms\n * PointNotDisjointFromInternalPoly: 0.651ms\n * PointNotDisjointFromMultipoint: 0.165ms\n * PointNotDisjointFromPoint: 0.020ms\n * PointNotDisjointFromPoly: 0.025ms\n * PolyIsNotDisjointFromPoly: 0.209ms\n * LineIsDisjointFromLine: 0.280ms\n * LineIsDisjointFromPolygon: 0.230ms\n * MultiPointDisjointFromLine: 0.046ms\n * MultiPointDisjointFromMultipoint: 0.015ms\n * MultiPointIsDisjointFromPoly: 0.034ms\n * PointDisjointFromMultipoint: 0.155ms\n * PointDisjointFromPoint: 0.021ms\n * PointIsDisjointFromLinestring: 0.962ms\n * PointIsDisjointFromPoly: 0.131ms\n * PolyIsDisjointFromPoly: 0.080ms\n * LineIsNotDisjointFromLine x 50,655 ops/sec ±3.66% (63 runs sampled)\n * LineIsNotDisjointFromPolygon x 49,947 ops/sec ±2.79% (42 runs sampled)\n * MultiPointNotDisjointFromLine x 7,431,677 ops/sec ±1.24% (85 runs sampled)\n * MultiPointNotDisjointFromMultipoint x 7,399,444 ops/sec ±0.99% (87 runs sampled)\n * MultiPointNotDisjointFromPoly x 2,298,298 ops/sec ±1.02% (88 runs sampled)\n * PointIsNotDisjointFromLineString x 10,068,082 ops/sec ±1.02% (89 runs sampled)\n * PointNotDisjointFromInternalPoly x 2,136,512 ops/sec ±1.24% (87 runs sampled)\n * PointNotDisjointFromMultipoint x 10,712,566 ops/sec ±0.98% (88 runs sampled)\n * PointNotDisjointFromPoint x 16,663,034 ops/sec ±0.98% (88 runs sampled)\n * PointNotDisjointFromPoly x 2,509,098 ops/sec ±1.06% (87 runs sampled)\n * PolyIsNotDisjointFromPoly x 2,078,010 ops/sec ±1.60% (85 runs sampled)\n * LineIsDisjointFromLine x 62,985 ops/sec ±4.13% (64 runs sampled)\n * LineIsDisjointFromPolygon x 58,937 ops/sec ±2.84% (62 runs sampled)\n * MultiPointDisjointFromLine x 4,634,718 ops/sec ±1.94% (85 runs sampled)\n * MultiPointDisjointFromMultipoint x 6,602,132 ops/sec ±3.76% (81 runs sampled)\n * MultiPointIsDisjointFromPoly x 1,203,406 ops/sec ±1.01% (87 runs sampled)\n * PointDisjointFromMultipoint x 11,373,917 ops/sec ±1.33% (87 runs sampled)\n * PointDisjointFromPoint x 18,149,666 ops/sec ±1.10% (85 runs sampled)\n * PointIsDisjointFromLinestring x 7,572,815 ops/sec ±0.97% (89 runs sampled)\n * PointIsDisjointFromPoly x 2,217,658 ops/sec ±1.04% (83 runs sampled)\n * PolyIsDisjointFromPoly x 551,254 ops/sec ±1.18% (90 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-boolean-intersects\");\nglob\n  .sync(path.join(__dirname, \"test\", \"**\", \"*.geojson\"))\n  .forEach((filepath) => {\n    const { name } = path.parse(filepath);\n    const geojson = loadJsonFileSync(filepath);\n    const [feature1, feature2] = geojson.features;\n    console.time(name);\n    intersects(feature1, feature2);\n    console.timeEnd(name);\n    suite.add(name, () => intersects(feature1, feature2));\n  });\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-boolean-intersects/index.ts",
    "content": "import { Feature, Geometry } from \"geojson\";\nimport { booleanDisjoint } from \"@turf/boolean-disjoint\";\nimport { flattenEach } from \"@turf/meta\";\n\n/**\n * Boolean-intersects returns (TRUE) if the intersection of the two geometries is NOT an empty set.\n *\n * @function\n * @param {Geometry|Feature<any>} feature1 GeoJSON Feature or Geometry\n * @param {Geometry|Feature<any>} feature2 GeoJSON Feature or Geometry\n * @param {Object} [options={}] Optional parameters\n * @param {boolean} [options.ignoreSelfIntersections=true] ignore self-intersections on input features\n * @returns {boolean} true if geometries intersect, false otherwise\n * @example\n * var point1 = turf.point([2, 2]);\n * var point2 = turf.point([1, 2]);\n * var line = turf.lineString([[1, 1], [1, 3], [1, 4]]);\n *\n * turf.booleanIntersects(line, point1);\n * //=false\n *\n * turf.booleanIntersects(line, point2);\n * //=true\n *\n * //addToMap\n * var addToMap = [point1, point2, line];\n * point1.properties['marker-color'] = '#f00'\n * point2.properties['marker-color'] = '#0f0'\n */\nfunction booleanIntersects(\n  feature1: Feature<any> | Geometry,\n  feature2: Feature<any> | Geometry,\n  {\n    ignoreSelfIntersections = true,\n  }: {\n    ignoreSelfIntersections?: boolean;\n  } = {}\n) {\n  let bool = false;\n  flattenEach(feature1, (flatten1) => {\n    flattenEach(feature2, (flatten2) => {\n      if (bool === true) {\n        return true;\n      }\n      bool = !booleanDisjoint(flatten1.geometry, flatten2.geometry, {\n        ignoreSelfIntersections,\n      });\n    });\n  });\n  return bool;\n}\n\nexport { booleanIntersects };\nexport default booleanIntersects;\n"
  },
  {
    "path": "packages/turf-boolean-intersects/package.json",
    "content": "{\n  \"name\": \"@turf/boolean-intersects\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Checks if two geometries overlap in any way.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Rowan Winsemius <@rowanwins>\",\n    \"Denis Carriere <@DenisCarriere>\",\n    \"David Whittingham <@01100100>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"intersects\",\n    \"boolean\",\n    \"de-9im\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"boolean-shapely\": \"*\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/boolean-disjoint\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/false/LineString/LineString/LineString-LineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [12, 2],\n          [12, 3],\n          [12, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/false/LineString/Point/LineString-Point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/false/LineString/Polygon/LineString-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [12, 2],\n          [12, 3],\n          [12, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/false/MultiPoint/LineString/MultiPoint-LineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [2, 2],\n          [0, 0]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/false/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [0, 0],\n          [13, 13]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/false/MultiPoint/Point/MultiPoint-Point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/false/MultiPoint/Polygon/MultiPoint-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-3, -3],\n          [-2, -2]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/false/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ff0000\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [122.6953125, -19.186677697957833],\n              [128.759765625, -19.186677697957833],\n              [128.759765625, -15.28418511407642],\n              [122.6953125, -15.28418511407642],\n              [122.6953125, -19.186677697957833]\n            ]\n          ],\n          [\n            [\n              [123.74999999999999, -25.918526162075153],\n              [130.25390625, -25.918526162075153],\n              [130.25390625, -20.715015145512087],\n              [123.74999999999999, -20.715015145512087],\n              [123.74999999999999, -25.918526162075153]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#0000ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [116.98242187499999, -24.647017162630352],\n            [122.87109375, -24.647017162630352],\n            [122.87109375, -20.34462694382967],\n            [116.98242187499999, -20.34462694382967],\n            [116.98242187499999, -24.647017162630352]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/false/Point/LineString/Point-LineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/false/Point/MultiPoint/Point-Multipoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/false/Point/Point/Point-Point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 1]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/false/Point/Polygon/Point-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/false/Polygon/LineString/Polygon-LineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [12, 2],\n          [12, 3],\n          [12, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/false/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#0000ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [116.98242187499999, -24.647017162630352],\n            [122.87109375, -24.647017162630352],\n            [122.87109375, -20.34462694382967],\n            [116.98242187499999, -20.34462694382967],\n            [116.98242187499999, -24.647017162630352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ff0000\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [122.6953125, -19.186677697957833],\n              [128.759765625, -19.186677697957833],\n              [128.759765625, -15.28418511407642],\n              [122.6953125, -15.28418511407642],\n              [122.6953125, -19.186677697957833]\n            ]\n          ],\n          [\n            [\n              [123.74999999999999, -25.918526162075153],\n              [130.25390625, -25.918526162075153],\n              [130.25390625, -20.715015145512087],\n              [123.74999999999999, -20.715015145512087],\n              [123.74999999999999, -25.918526162075153]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/false/Polygon/Point/Polygon-Point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/false/Polygon/Polygon/Polygon-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-11, -12],\n            [-13, -12],\n            [-13, -13],\n            [-11, -13],\n            [-11, -12]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/LineString/LineString/LineString-LineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 2],\n          [12, 2],\n          [12, 3],\n          [12, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/LineString/Point/LineString-Point-1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/LineString/Point/LineString-Point-2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1.5]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/LineString/Polygon/LineString-In-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 2.5],\n          [2, 2.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/LineString/Polygon/LineString-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 2],\n          [12, 2],\n          [12, 3],\n          [12, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/MultiPoint/LineString/MultiPoint-LineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [0, 0]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [0, 0],\n          [12, 12]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/MultiPoint/Polygon/MultiPoint-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-1, 2],\n          [-2, -2]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ff0000\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [122.6953125, -19.186677697957833],\n              [128.759765625, -19.186677697957833],\n              [128.759765625, -15.28418511407642],\n              [122.6953125, -15.28418511407642],\n              [122.6953125, -19.186677697957833]\n            ]\n          ],\n          [\n            [\n              [123.74999999999999, -25.918526162075153],\n              [130.25390625, -25.918526162075153],\n              [130.25390625, -20.715015145512087],\n              [123.74999999999999, -20.715015145512087],\n              [123.74999999999999, -25.918526162075153]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#0000ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [119.20166015624999, -22.776181505086495],\n            [125.09033203124999, -22.776181505086495],\n            [125.09033203124999, -18.417078658661257],\n            [119.20166015624999, -18.417078658661257],\n            [119.20166015624999, -22.776181505086495]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/Point/LineString/Point-LineString-1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/Point/LineString/Point-LineString-2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/Point/LineString/Point-LineString-3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.5, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [2, 1],\n          [3, 1],\n          [4, 1]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/Point/LineString/Point-LineString-4.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.5, 2.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [2, 2],\n          [3, 3],\n          [4, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/Point/MultiPoint/Point-MultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/Point/Point/Point-Point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/Point/Polygon/Point-Polygon-1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 2.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/Point/Polygon/Point-Polygon-2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-1, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/Polygon/LineString/Polygon-Containing-Linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 2.5],\n          [2, 2.5]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/Polygon/LineString/Polygon-LineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 2],\n          [12, 2],\n          [12, 3],\n          [12, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#0000ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [119.20166015624999, -22.776181505086495],\n            [125.09033203124999, -22.776181505086495],\n            [125.09033203124999, -18.417078658661257],\n            [119.20166015624999, -18.417078658661257],\n            [119.20166015624999, -22.776181505086495]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ff0000\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [122.6953125, -19.186677697957833],\n              [128.759765625, -19.186677697957833],\n              [128.759765625, -15.28418511407642],\n              [122.6953125, -15.28418511407642],\n              [122.6953125, -19.186677697957833]\n            ]\n          ],\n          [\n            [\n              [123.74999999999999, -25.918526162075153],\n              [130.25390625, -25.918526162075153],\n              [130.25390625, -20.715015145512087],\n              [123.74999999999999, -20.715015145512087],\n              [123.74999999999999, -25.918526162075153]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/Polygon/Point/Polygon-Point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 2.5]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/Polygon/Polygon/Large-Inside-Small.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [19.6875, 34.016241889667015],\n            [14.765625, 26.745610382199022],\n            [19.6875, 23.563987128451217],\n            [23.203125, 26.43122806450644],\n            [22.148437499999996, 30.44867367928756],\n            [19.6875, 34.016241889667015]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [18.984375, 40.44694705960048],\n            [7.03125, 25.48295117535531],\n            [19.335937499999996, 18.979025953255267],\n            [31.640625, 24.206889622398023],\n            [24.960937499999996, 34.88593094075317],\n            [18.984375, 40.44694705960048]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/Polygon/Polygon/Polygon-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [-13, -12],\n            [-13, -13],\n            [-11, -13],\n            [-1, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [3, 2],\n            [3, 3],\n            [-1, 3],\n            [-1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/Polygon/Polygon/Small-Inside-Large.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [18.984375, 40.44694705960048],\n            [7.03125, 25.48295117535531],\n            [19.335937499999996, 18.979025953255267],\n            [31.640625, 24.206889622398023],\n            [24.960937499999996, 34.88593094075317],\n            [18.984375, 40.44694705960048]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [19.6875, 34.016241889667015],\n            [14.765625, 26.745610382199022],\n            [19.6875, 23.563987128451217],\n            [23.203125, 26.43122806450644],\n            [22.148437499999996, 30.44867367928756],\n            [19.6875, 34.016241889667015]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test/true/Polygon/Polygon/issue-1216.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.638240782825051, 46.513552354874435],\n            [6.638240782825051, 46.52452567471025],\n            [6.632039186485088, 46.52452567471025],\n            [6.632039186485088, 46.513552354874435],\n            [6.638240782825051, 46.513552354874435]\n          ]\n        ]\n      },\n      \"bbox\": [\n        6.632039186485088, 46.513552354874435, 6.638240782825051, 46.52452567471025\n      ]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.645459572232596, 46.51709747623775],\n            [6.645459572232596, 46.52102619404951],\n            [6.626132904233913, 46.52102619404951],\n            [6.626132904233913, 46.51709747623775],\n            [6.645459572232596, 46.51709747623775]\n          ]\n        ]\n      },\n      \"bbox\": [6.626132904233913, 46.51709747623775, 6.645459572232596, 46.52102619404951]\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-intersects/test.ts",
    "content": "import { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport shapely from \"boolean-shapely\";\nimport { booleanIntersects as intersects } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-boolean-intersects\", (t) => {\n  // True Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"true\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const feature1 = geojson.features[0];\n      const feature2 = geojson.features[1];\n      const result = intersects(feature1, feature2);\n\n      if (process.env.SHAPELY)\n        shapely\n          .intersects(feature1, feature2)\n          .then((result) => t.true(result, \"[true] shapely - \" + name));\n      t.true(result, \"[true] \" + name);\n    });\n  // False Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"false\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const feature1 = geojson.features[0];\n      const feature2 = geojson.features[1];\n      const result = intersects(feature1, feature2);\n\n      if (process.env.SHAPELY)\n        shapely\n          .intersects(feature1, feature2)\n          .then((result) => t.false(result, \"[false] shapely - \" + name));\n      t.false(result, \"[false] \" + name);\n    });\n  t.end();\n});\n\ntest(\"turf-boolean-intersects with ignoreSelfIntersections option\", (t) => {\n  const selfIntersectingLineString: GeoJSON.Feature<GeoJSON.LineString> = {\n    type: \"Feature\",\n    properties: {},\n    geometry: {\n      type: \"LineString\",\n      coordinates: [\n        [1, 1],\n        [2, 2],\n        [1, 2],\n        [2, 1],\n      ],\n    },\n  };\n\n  const nonIntersectingLineString: GeoJSON.Feature<GeoJSON.LineString> = {\n    type: \"Feature\",\n    properties: {},\n    geometry: {\n      type: \"LineString\",\n      coordinates: [\n        [0, 1],\n        [0, 0],\n      ],\n    },\n  };\n\n  const intersectingLineString: GeoJSON.Feature<GeoJSON.LineString> = {\n    type: \"Feature\",\n    properties: {},\n    geometry: {\n      type: \"LineString\",\n      coordinates: [\n        [0, 1],\n        [4, 2],\n      ],\n    },\n  };\n\n  const intersectingPolygon: GeoJSON.Feature<GeoJSON.Polygon> = {\n    type: \"Feature\",\n    properties: {},\n    geometry: {\n      type: \"Polygon\",\n      coordinates: [\n        [\n          [1.5, 1],\n          [2, 1.5],\n\n          [3, 0.5],\n          [1.5, 1],\n        ],\n      ],\n    },\n  };\n\n  const nonIntersectingPolygon: GeoJSON.Feature<GeoJSON.Polygon> = {\n    type: \"Feature\",\n    properties: {},\n    geometry: {\n      type: \"Polygon\",\n      coordinates: [\n        [\n          [0.5, 0],\n          [1, 0.5],\n\n          [2, -0.5],\n          [0.5, 0],\n        ],\n      ],\n    },\n  };\n\n  // Test without ignoringSelfIntersections option (default behavior)\n  let result = intersects(\n    selfIntersectingLineString,\n    nonIntersectingLineString\n  );\n  t.false(\n    result,\n    \"[false] \" +\n      \"selfIntersectingLineString-LineString (ignoreSelfIntersections=true)\"\n  );\n  result = intersects(selfIntersectingLineString, intersectingLineString);\n  t.true(\n    result,\n    \"[true] \" +\n      \"selfIntersectingLineString-LineString (ignoreSelfIntersections=true)\"\n  );\n  result = intersects(selfIntersectingLineString, intersectingPolygon);\n  t.true(\n    result,\n    \"[true] \" +\n      \"selfIntersectingLineString-Polygon (ignoreSelfIntersections=true)\"\n  );\n  result = intersects(selfIntersectingLineString, nonIntersectingPolygon);\n  t.false(\n    result,\n    \"[false] \" +\n      \"selfIntersectingLineString-Polygon (ignoreSelfIntersections=true)\"\n  );\n\n  // Test with ignoringSelfIntersections option\n  result = intersects(selfIntersectingLineString, nonIntersectingLineString, {\n    ignoreSelfIntersections: false,\n  });\n  t.true(\n    result,\n    \"[true] \" +\n      \"selfIntersectingLineString-LineString (ignoreSelfIntersections=false)\"\n  );\n  result = intersects(selfIntersectingLineString, intersectingLineString, {\n    ignoreSelfIntersections: false,\n  });\n  t.true(\n    result,\n    \"[true] \" +\n      \"selfIntersectingLineString-LineString (ignoreSelfIntersections=false)\"\n  );\n  result = intersects(selfIntersectingLineString, intersectingPolygon, {\n    ignoreSelfIntersections: false,\n  });\n  t.true(\n    result,\n    \"[true] \" +\n      \"selfIntersectingLineString-Polygon (ignoreSelfIntersections=false)\"\n  );\n  result = intersects(selfIntersectingLineString, nonIntersectingPolygon, {\n    ignoreSelfIntersections: false,\n  });\n  t.true(\n    result,\n    \"[true] \" +\n      \"selfIntersectingLineString-Polygon (ignoreSelfIntersections=false)\"\n  );\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-boolean-intersects/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-boolean-overlap/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-boolean-overlap/README.md",
    "content": "# @turf/boolean-overlap\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## booleanOverlap\n\nCompares two geometries of the same dimension and returns true if their intersection set results in a geometry\ndifferent from both but of the same dimension. It applies to Polygon/Polygon, LineString/LineString,\nMultipoint/Multipoint, MultiLineString/MultiLineString and MultiPolygon/MultiPolygon.\n\nIn other words, it returns true if the two geometries overlap, provided that neither completely contains the other.\n\n### Parameters\n\n*   `feature1` **([Geometry][1] | [Feature][2]<([LineString][3] | [MultiLineString][4] | [Polygon][5] | [MultiPolygon][6])>)** input\n*   `feature2` **([Geometry][1] | [Feature][2]<([LineString][3] | [MultiLineString][4] | [Polygon][5] | [MultiPolygon][6])>)** input\n\n### Examples\n\n```javascript\nvar poly1 = turf.polygon([[[0,0],[0,5],[5,5],[5,0],[0,0]]]);\nvar poly2 = turf.polygon([[[1,1],[1,6],[6,6],[6,1],[1,1]]]);\nvar poly3 = turf.polygon([[[10,10],[10,15],[15,15],[15,10],[10,10]]]);\n\nturf.booleanOverlap(poly1, poly2)\n//=true\nturf.booleanOverlap(poly2, poly3)\n//=false\n```\n\nReturns **[boolean][7]** true/false\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.5\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/boolean-overlap\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n\n\n### Diagrams\n\n![esri-overlaps](diagrams/esri-overlaps.gif)"
  },
  {
    "path": "packages/turf-boolean-overlap/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { booleanOverlap as overlap } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n * equal-linear-rings: 1.286ms\n * equal-lines: 0.573ms\n * equal-multipoints: 0.823ms\n * equal-polygons: 0.312ms\n * linear-rings: 8.417ms\n * lines: 0.939ms\n * multipoints: 0.471ms\n * polygon-with-hole-polygon: 0.827ms\n * polygons: 0.306ms\n * linear-rings: 2.558ms\n * lines: 3.282ms\n * multipoints: 0.058ms\n * polygon-with-hole-polygon: 1.105ms\n * polygons: 0.067ms\n * simple-lines: 1.083ms\n * single-multipoints: 0.041ms\n * equal-linear-rings x 86,843 ops/sec ±4.89% (78 runs sampled)\n * equal-lines x 75,485 ops/sec ±9.21% (75 runs sampled)\n * equal-multipoints x 33,422 ops/sec ±2.26% (77 runs sampled)\n * equal-polygons x 71,869 ops/sec ±1.76% (84 runs sampled)\n * linear-rings x 5,006 ops/sec ±4.26% (73 runs sampled)\n * lines x 7,781 ops/sec ±3.84% (75 runs sampled)\n * multipoints x 287,008 ops/sec ±1.61% (77 runs sampled)\n * polygon-with-hole-polygon x 43,735 ops/sec ±1.83% (83 runs sampled)\n * polygons x 91,882 ops/sec ±1.55% (81 runs sampled)\n * linear-rings x 4,008 ops/sec ±3.07% (72 runs sampled)\n * lines x 5,632 ops/sec ±4.55% (71 runs sampled)\n * multipoints x 271,445 ops/sec ±3.77% (75 runs sampled)\n * polygon-with-hole-polygon x 41,716 ops/sec ±1.67% (82 runs sampled)\n * polygons x 81,217 ops/sec ±2.46% (81 runs sampled)\n * simple-lines x 8,880 ops/sec ±3.63% (75 runs sampled)\n * single-multipoints x 281,914 ops/sec ±2.27% (76 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-boolean-overlap\");\nglob\n  .sync(path.join(__dirname, \"test\", \"**\", \"*.geojson\"))\n  .forEach((filepath) => {\n    const { name } = path.parse(filepath);\n    const geojson = loadJsonFileSync(filepath);\n    const [feature1, feature2] = geojson.features;\n    console.time(name);\n    overlap(feature1, feature2);\n    console.timeEnd(name);\n    suite.add(name, () => overlap(feature1, feature2));\n  });\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-boolean-overlap/index.ts",
    "content": "import { Feature, Geometry, MultiPoint } from \"geojson\";\nimport { segmentEach } from \"@turf/meta\";\nimport { getGeom } from \"@turf/invariant\";\nimport { lineOverlap } from \"@turf/line-overlap\";\nimport { lineIntersect } from \"@turf/line-intersect\";\nimport { geojsonEquality } from \"geojson-equality-ts\";\n\n/**\n * Compares two geometries of the same dimension and returns true if their intersection set results in a geometry\n * different from both but of the same dimension. It applies to Polygon/Polygon, LineString/LineString,\n * Multipoint/Multipoint, MultiLineString/MultiLineString and MultiPolygon/MultiPolygon.\n *\n * In other words, it returns true if the two geometries overlap, provided that neither completely contains the other.\n *\n * @function\n * @param  {Geometry|Feature<LineString|MultiLineString|Polygon|MultiPolygon>} feature1 input\n * @param  {Geometry|Feature<LineString|MultiLineString|Polygon|MultiPolygon>} feature2 input\n * @returns {boolean} true/false\n * @example\n * var poly1 = turf.polygon([[[0,0],[0,5],[5,5],[5,0],[0,0]]]);\n * var poly2 = turf.polygon([[[1,1],[1,6],[6,6],[6,1],[1,1]]]);\n * var poly3 = turf.polygon([[[10,10],[10,15],[15,15],[15,10],[10,10]]]);\n *\n * turf.booleanOverlap(poly1, poly2)\n * //=true\n * turf.booleanOverlap(poly2, poly3)\n * //=false\n */\nfunction booleanOverlap(\n  feature1: Feature<any> | Geometry,\n  feature2: Feature<any> | Geometry\n): boolean {\n  const geom1 = getGeom(feature1);\n  const geom2 = getGeom(feature2);\n  const type1 = geom1.type;\n  const type2 = geom2.type;\n\n  if (\n    (type1 === \"MultiPoint\" && type2 !== \"MultiPoint\") ||\n    ((type1 === \"LineString\" || type1 === \"MultiLineString\") &&\n      type2 !== \"LineString\" &&\n      type2 !== \"MultiLineString\") ||\n    ((type1 === \"Polygon\" || type1 === \"MultiPolygon\") &&\n      type2 !== \"Polygon\" &&\n      type2 !== \"MultiPolygon\")\n  ) {\n    throw new Error(\"features must be of the same type\");\n  }\n  if (type1 === \"Point\") throw new Error(\"Point geometry not supported\");\n\n  // features must be not equal\n  if (geojsonEquality(feature1 as any, feature2 as any, { precision: 6 }))\n    return false;\n\n  let overlap = 0;\n\n  switch (type1) {\n    case \"MultiPoint\":\n      for (var i = 0; i < (geom1 as MultiPoint).coordinates.length; i++) {\n        for (var j = 0; j < (geom2 as MultiPoint).coordinates.length; j++) {\n          var coord1 = geom1.coordinates[i];\n          var coord2 = geom2.coordinates[j];\n          if (coord1[0] === coord2[0] && coord1[1] === coord2[1]) {\n            return true;\n          }\n        }\n      }\n      return false;\n\n    case \"LineString\":\n    case \"MultiLineString\":\n      segmentEach(feature1, (segment1) => {\n        segmentEach(feature2, (segment2) => {\n          if (lineOverlap(segment1!, segment2!).features.length) overlap++;\n        });\n      });\n      break;\n\n    case \"Polygon\":\n    case \"MultiPolygon\":\n      segmentEach(feature1, (segment1) => {\n        segmentEach(feature2, (segment2) => {\n          if (lineIntersect(segment1!, segment2!).features.length) overlap++;\n        });\n      });\n      break;\n  }\n\n  return overlap > 0;\n}\n\nexport { booleanOverlap };\nexport default booleanOverlap;\n"
  },
  {
    "path": "packages/turf-boolean-overlap/package.json",
    "content": "{\n  \"name\": \"@turf/boolean-overlap\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Checks if two geometries have an area of overlap without one being completely contained inside the other.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Tim Channell <@tcql>\",\n    \"Stefano Borghi <@stebogit>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gis\",\n    \"boolean\",\n    \"de-9im\",\n    \"overlap\",\n    \"boolean-overlap\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"boolean-shapely\": \"*\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/line-intersect\": \"workspace:*\",\n    \"@turf/line-overlap\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"geojson-equality-ts\": \"^1.0.2\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-boolean-overlap/test/false/equal-linear-rings.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-53.674866943359375, 28.30135788537988],\n          [-53.337249755859375, 28.47412369059679],\n          [-53.524017333984375, 28.17492820114568],\n          [-53.674866943359375, 28.30135788537988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-53.674866943359375, 28.30135788537988],\n          [-53.337249755859375, 28.47412369059679],\n          [-53.524017333984375, 28.17492820114568],\n          [-53.674866943359375, 28.30135788537988]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-overlap/test/false/equal-lines.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [0, 5],\n          [5, 5],\n          [5, 0]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [5, 0],\n          [5, 5],\n          [0, 5],\n          [0, 0]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-overlap/test/false/equal-multipoints.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-35.5638671875, 27.254629577800063],\n          [-35.6462646484375, 26.86328062676624],\n          [-35.4924560546875, 26.504988828743404],\n          [-35.1001953125, 26.12091815959972],\n          [-34.8969482421875, 26.455820238459893]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-35.5638671875, 27.254629577800063],\n          [-35.6462646484375, 26.86328062676624],\n          [-35.4924560546875, 26.504988828743404],\n          [-35.1001953125, 26.12091815959972],\n          [-34.8969482421875, 26.455820238459893]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-overlap/test/false/equal-polygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.57208251953125, 28.287451910503744],\n            [-53.33038330078125, 28.29228897739706],\n            [-53.34136962890625, 28.430052892335723],\n            [-53.57208251953125, 28.287451910503744]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.57208251953125, 28.287451910503744],\n            [-53.34136962890625, 28.430052892335723],\n            [-53.33038330078125, 28.29228897739706],\n            [-53.57208251953125, 28.287451910503744]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-overlap/test/false/linear-rings.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-53.317337036132805, 28.445147699510212],\n          [-53.61053466796875, 28.263868062633772],\n          [-53.3770751953125, 28.214869548073377],\n          [-53.38531494140625, 28.272939391283685],\n          [-53.22052001953125, 28.272939391283685],\n          [-53.317337036132805, 28.445147699510212]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-53.674866943359375, 28.30135788537988],\n          [-53.337249755859375, 28.47412369059679],\n          [-53.524017333984375, 28.17492820114568],\n          [-53.674866943359375, 28.30135788537988]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-overlap/test/false/lines.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-22.564544677734375, 46.25917013377904],\n          [-22.559051513671875, 46.32369743336783],\n          [-22.446441650390625, 46.352141192009334],\n          [-22.361297607421875, 46.32891323009468],\n          [-22.361297607421875, 46.30472670751783]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-22.570724487304688, 46.36398839132818],\n          [-22.444381713867188, 46.357354276167015],\n          [-22.391510009765625, 46.3291502999477],\n          [-22.29263305664062, 46.382464893261165]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-overlap/test/false/multipoints.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-36.05712890625, 26.480407161007275],\n          [-35.7220458984375, 27.137368359795584],\n          [-35.13427734375, 26.83387451505858],\n          [-35.4638671875, 27.254629577800063],\n          [-35.5462646484375, 26.86328062676624],\n          [-35.3924560546875, 26.504988828743404]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#000\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-35.5638671875, 27.254629577800063],\n          [-35.6462646484375, 26.86328062676624],\n          [-35.4924560546875, 26.504988828743404],\n          [-35.1001953125, 26.12091815959972],\n          [-34.8969482421875, 26.455820238459893]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-overlap/test/false/polygon-with-hole-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-37.81494140625, 30.050076521698735],\n            [-36.573486328125, 28.159189634046708],\n            [-34.20043945312499, 29.23847708592805],\n            [-34.44213867187499, 31.090574094954192],\n            [-36.507568359375, 32.045332838858506],\n            [-37.81494140625, 30.050076521698735]\n          ],\n          [\n            [-36.661376953125, 29.516110386062277],\n            [-36.661376953125, 30.685163937659564],\n            [-35.233154296875, 30.685163937659564],\n            [-35.233154296875, 29.516110386062277],\n            [-36.661376953125, 29.516110386062277]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-34.903564453125, 31.99875937194732],\n            [-33.387451171875, 31.700129553985924],\n            [-33.310546875, 33.165145408240285],\n            [-35.39794921875, 32.89803818160521],\n            [-34.903564453125, 31.99875937194732]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-overlap/test/false/polygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.51715087890625, 28.488005204159457],\n            [-53.47148895263672, 28.366933295392897],\n            [-53.3770751953125, 28.490419194161678],\n            [-53.24798583984375, 28.43246820620096],\n            [-53.33038330078125, 28.560400880492832],\n            [-53.51715087890625, 28.488005204159457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.57208251953125, 28.287451910503744],\n            [-53.33038330078125, 28.29228897739706],\n            [-53.34136962890625, 28.430052892335723],\n            [-53.57208251953125, 28.287451910503744]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-overlap/test/true/linear-rings.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-53.317337036132805, 28.445147699510212],\n          [-53.61053466796875, 28.263868062633772],\n          [-53.3770751953125, 28.214869548073377],\n          [-53.38531494140625, 28.272939391283685],\n          [-53.22052001953125, 28.272939391283685],\n          [-53.317337036132805, 28.445147699510212]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-53.61053466796875, 28.263868062633772],\n          [-53.317337036132805, 28.445147699510212],\n          [-53.524017333984375, 28.17492820114568],\n          [-53.61053466796875, 28.263868062633772]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-overlap/test/true/lines.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-22.564544677734375, 46.25917013377904],\n          [-22.559051513671875, 46.32369743336783],\n          [-22.446441650390625, 46.352141192009334],\n          [-22.361297607421875, 46.32891323009468],\n          [-22.361297607421875, 46.30472670751783]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-22.570724487304688, 46.36398839132818],\n          [-22.446441650390625, 46.352141192009334],\n          [-22.361297607421875, 46.32891323009468],\n          [-22.29263305664062, 46.382464893261165]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-overlap/test/true/multipoints.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-36.05712890625, 26.480407161007275],\n          [-35.7220458984375, 27.137368359795584],\n          [-35.13427734375, 26.83387451505858],\n          [-35.4638671875, 27.254629577800063],\n          [-35.5462646484375, 26.86328062676624],\n          [-35.3924560546875, 26.504988828743404]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#000\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-35.4638671875, 27.254629577800063],\n          [-35.5462646484375, 26.86328062676624],\n          [-35.3924560546875, 26.504988828743404],\n          [-35.2001953125, 26.12091815959972],\n          [-34.9969482421875, 26.455820238459893]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-overlap/test/true/polygon-with-hole-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-37.81494140625, 30.050076521698735],\n            [-36.573486328125, 28.159189634046708],\n            [-34.20043945312499, 29.23847708592805],\n            [-34.44213867187499, 31.090574094954192],\n            [-36.507568359375, 32.045332838858506],\n            [-37.81494140625, 30.050076521698735]\n          ],\n          [\n            [-36.661376953125, 29.516110386062277],\n            [-36.661376953125, 30.685163937659564],\n            [-35.233154296875, 30.685163937659564],\n            [-35.233154296875, 29.516110386062277],\n            [-36.661376953125, 29.516110386062277]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-35.980224609375, 30.315987718557867],\n            [-34.8486328125, 30.694611546632277],\n            [-35.782470703125, 31.16580958786196],\n            [-35.980224609375, 30.315987718557867]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-overlap/test/true/polygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.51715087890625, 28.488005204159457],\n            [-53.33038330078125, 28.560400880492832],\n            [-53.24798583984375, 28.43246820620096],\n            [-53.3770751953125, 28.490419194161678],\n            [-53.4100341796875, 28.34789944257093],\n            [-53.51715087890625, 28.488005204159457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.57208251953125, 28.287451910503744],\n            [-53.34136962890625, 28.430052892335723],\n            [-53.33038330078125, 28.29228897739706],\n            [-53.57208251953125, 28.287451910503744]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-overlap/test/true/simple-lines.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [0, 5],\n          [5, 5],\n          [5, 0]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 5],\n          [5, 5],\n          [5, 10]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-overlap/test/true/single-multipoints.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-36.05712890625, 26.480407161007275],\n          [-35.7220458984375, 27.137368359795584],\n          [-35.13427734375, 26.83387451505858],\n          [-35.4638671875, 27.254629577800063],\n          [-35.5462646484375, 26.86328062676624],\n          [-35.3924560546875, 26.504988828743404]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#000\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-35.4638671875, 27.254629577800063],\n          [-35.6462646484375, 26.86328062676624],\n          [-35.4924560546875, 26.504988828743404],\n          [-35.1001953125, 26.12091815959972],\n          [-34.8969482421875, 26.455820238459893]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-overlap/test.ts",
    "content": "import { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport shapely from \"boolean-shapely\";\nimport {\n  point,\n  lineString,\n  polygon,\n  multiLineString,\n  multiPolygon,\n} from \"@turf/helpers\";\nimport { booleanOverlap as overlap } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-boolean-overlap\", (t) => {\n  // True Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"true\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const feature1 = geojson.features[0];\n      const feature2 = geojson.features[1];\n      const result = overlap(feature1, feature2);\n\n      if (process.env.SHAPELY)\n        shapely\n          .contains(feature1, feature2)\n          .then((result) => t.true(result, \"[true] shapely - \" + name));\n      t.true(result, \"[true] \" + name);\n    });\n  // False Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"false\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const feature1 = geojson.features[0];\n      const feature2 = geojson.features[1];\n      const result = overlap(feature1, feature2);\n\n      if (process.env.SHAPELY)\n        shapely\n          .contains(feature1, feature2)\n          .then((result) => t.false(result, \"[false] shapely - \" + name));\n      t.false(result, \"[false] \" + name);\n    });\n  t.end();\n});\n\nconst pt = point([9, 50]);\nconst line1 = lineString([\n  [7, 50],\n  [8, 50],\n  [9, 50],\n]);\nconst line2 = lineString([\n  [8, 50],\n  [9, 50],\n  [10, 50],\n]);\nconst poly1 = polygon([\n  [\n    [8.5, 50],\n    [9.5, 50],\n    [9.5, 49],\n    [8.5, 49],\n    [8.5, 50],\n  ],\n]);\nconst poly2 = polygon([\n  [\n    [8, 50],\n    [9, 50],\n    [9, 49],\n    [8, 49],\n    [8, 50],\n  ],\n]);\nconst poly3 = polygon([\n  [\n    [10, 50],\n    [10.5, 50],\n    [10.5, 49],\n    [10, 49],\n    [10, 50],\n  ],\n]);\nconst multiline1 = multiLineString([\n  [\n    [7, 50],\n    [8, 50],\n    [9, 50],\n  ],\n]);\nconst multipoly1 = multiPolygon([\n  [\n    [\n      [8.5, 50],\n      [9.5, 50],\n      [9.5, 49],\n      [8.5, 49],\n      [8.5, 50],\n    ],\n  ],\n]);\n\ntest(\"turf-boolean-overlap -- geometries\", (t) => {\n  t.true(overlap(line1.geometry, line2.geometry), \"[true] LineString geometry\");\n  t.true(overlap(poly1.geometry, poly2.geometry), \"[true] Polygon geometry\");\n  t.false(overlap(poly1.geometry, poly3.geometry), \"[false] Polygon geometry\");\n  t.end();\n});\n\ntest(\"turf-boolean-overlap -- throws\", (t) => {\n  // t.throws(() => overlap(null, line1), /feature1 is required/, 'missing feature1');\n  // t.throws(() => overlap(line1, null), /feature2 is required/, 'missing feature2');\n  t.throws(\n    () => overlap(poly1, line1),\n    /features must be of the same type/,\n    \"different types\"\n  );\n  t.throws(\n    () => overlap(pt, pt),\n    /Point geometry not supported/,\n    \"geometry not supported\"\n  );\n\n  t.doesNotThrow(\n    () => overlap(line1, multiline1),\n    \"supports line and multiline comparison\"\n  );\n  t.doesNotThrow(\n    () => overlap(poly1, multipoly1),\n    \"supports polygon and multipolygon comparison\"\n  );\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-boolean-overlap/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-boolean-parallel/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-boolean-parallel/README.md",
    "content": "# @turf/boolean-parallel\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## booleanParallel\n\nBoolean-Parallel returns True if each segment of `line1` is parallel to the correspondent segment of `line2`\n\n### Parameters\n\n*   `line1` **([Geometry][1] | [Feature][2]<[LineString][3]>)** GeoJSON Feature or Geometry\n*   `line2` **([Geometry][1] | [Feature][2]<[LineString][3]>)** GeoJSON Feature or Geometry\n\n### Examples\n\n```javascript\nvar line1 = turf.lineString([[0, 0], [0, 1]]);\nvar line2 = turf.lineString([[1, 0], [1, 1]]);\n\nturf.booleanParallel(line1, line2);\n//=true\n```\n\nReturns **[boolean][4]** true/false if the lines are parallel\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/boolean-parallel\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-boolean-parallel/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { booleanParallel } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n * line1: 2.578ms\n * line2: 0.137ms\n * city-line: 0.096ms\n * fiji: 0.073ms\n * geometry: 0.123ms\n * line1: 0.068ms\n * line3-reverse: 0.065ms\n * line3: 0.429ms\n * resolute: 0.077ms\n * segment1: 0.203ms\n * segment2: 0.087ms\n * segment3: 0.698ms\n *\n * line1 x 171,462 ops/sec ±2.03% (79 runs sampled)\n * line2 x 160,366 ops/sec ±6.55% (80 runs sampled)\n * city-line x 120,544 ops/sec ±8.47% (73 runs sampled)\n * fiji x 101,793 ops/sec ±5.09% (75 runs sampled)\n * geometry x 93,106 ops/sec ±7.57% (74 runs sampled)\n * line1 x 102,175 ops/sec ±4.95% (80 runs sampled)\n * line3-reverse x 129,695 ops/sec ±2.11% (82 runs sampled)\n * line3 x 129,860 ops/sec ±2.32% (83 runs sampled)\n * resolute x 136,275 ops/sec ±2.89% (79 runs sampled)\n * segment1 x 193,214 ops/sec ±4.31% (76 runs sampled)\n * segment2 x 205,418 ops/sec ±2.16% (83 runs sampled)\n * segment3 x 212,381 ops/sec ±1.79% (83 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-boolean-parallel\");\nglob\n  .sync(path.join(__dirname, \"test\", \"**\", \"*.geojson\"))\n  .forEach((filepath) => {\n    const { name } = path.parse(filepath);\n    const geojson = loadJsonFileSync(filepath);\n    const [line1, line2] = geojson.features;\n\n    console.time(name);\n    booleanParallel(line1, line2);\n    console.timeEnd(name);\n    suite.add(name, () => booleanParallel(line1, line2));\n  });\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-boolean-parallel/index.ts",
    "content": "import { Feature, Geometry, LineString, Position } from \"geojson\";\nimport { cleanCoords } from \"@turf/clean-coords\";\nimport { lineSegment } from \"@turf/line-segment\";\nimport { rhumbBearing } from \"@turf/rhumb-bearing\";\nimport { bearingToAzimuth } from \"@turf/helpers\";\n\n/**\n * Boolean-Parallel returns True if each segment of `line1` is parallel to the correspondent segment of `line2`\n *\n * @function\n * @param {Geometry|Feature<LineString>} line1 GeoJSON Feature or Geometry\n * @param {Geometry|Feature<LineString>} line2 GeoJSON Feature or Geometry\n * @returns {boolean} true/false if the lines are parallel\n * @example\n * var line1 = turf.lineString([[0, 0], [0, 1]]);\n * var line2 = turf.lineString([[1, 0], [1, 1]]);\n *\n * turf.booleanParallel(line1, line2);\n * //=true\n */\nfunction booleanParallel(\n  line1: Feature<LineString> | LineString,\n  line2: Feature<LineString> | LineString\n): boolean {\n  // validation\n  if (!line1) throw new Error(\"line1 is required\");\n  if (!line2) throw new Error(\"line2 is required\");\n  var type1 = getType(line1, \"line1\");\n  if (type1 !== \"LineString\") throw new Error(\"line1 must be a LineString\");\n  var type2 = getType(line2, \"line2\");\n  if (type2 !== \"LineString\") throw new Error(\"line2 must be a LineString\");\n\n  var segments1 = lineSegment(cleanCoords(line1)).features;\n  var segments2 = lineSegment(cleanCoords(line2)).features;\n\n  for (var i = 0; i < segments1.length; i++) {\n    var segment1 = segments1[i].geometry.coordinates;\n    if (!segments2[i]) break;\n    var segment2 = segments2[i].geometry.coordinates;\n    if (!isParallel(segment1, segment2)) return false;\n  }\n  return true;\n}\n\n/**\n * Compares slopes and return result\n *\n * @private\n * @param {Geometry|Feature<LineString>} segment1 Geometry or Feature\n * @param {Geometry|Feature<LineString>} segment2 Geometry or Feature\n * @returns {boolean} if slopes are equal\n */\nfunction isParallel(segment1: Position[], segment2: Position[]) {\n  var slope1 = bearingToAzimuth(rhumbBearing(segment1[0], segment1[1]));\n  var slope2 = bearingToAzimuth(rhumbBearing(segment2[0], segment2[1]));\n  return slope1 === slope2 || (slope2 - slope1) % 180 === 0;\n}\n\n/**\n * Returns Feature's type\n *\n * @private\n * @param {Geometry|Feature<any>} geojson Geometry or Feature\n * @param {string} name of the variable\n * @returns {string} Feature's type\n */\nfunction getType(geojson: Geometry | Feature<any>, name: string) {\n  if ((geojson as Feature).geometry && (geojson as Feature).geometry.type)\n    return (geojson as Feature).geometry.type;\n  if (geojson.type) return geojson.type; // if GeoJSON geometry\n  throw new Error(\"Invalid GeoJSON object for \" + name);\n}\n\nexport { booleanParallel };\nexport default booleanParallel;\n"
  },
  {
    "path": "packages/turf-boolean-parallel/package.json",
    "content": "{\n  \"name\": \"@turf/boolean-parallel\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Determine whether each segment of a line is parallel to the correspondent segment of another line.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Stefano Borghi <@stebogit>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"parallel\",\n    \"boolean\",\n    \"boolean-parallel\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/clean-coords\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/line-segment\": \"workspace:*\",\n    \"@turf/rhumb-bearing\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-boolean-parallel/test/false/line1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-111.544189453125, 24.186847428521244],\n          [-110.687255859375, 24.966140159912975],\n          [-110.4510498046875, 24.467150664739002],\n          [-109.9951171875, 25.180087808990645]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-111.4617919921875, 24.05148034322011],\n          [-110.8795166015625, 24.681961205014595],\n          [-110.841064453125, 24.14174098050432],\n          [-109.97863769531249, 24.617057340809524]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-parallel/test/false/line2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-34.98046875, 29.38217507514529],\n          [30.937499999999996, 59.085738569819505],\n          [-10.01953125, 60.84491057364912],\n          [25.6640625, 67.60922060496382],\n          [-4.5703125, 34.59704151614417]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-27.24609375, 51.508742458803326],\n          [24.43359375, 48.22467264956519],\n          [49.92187499999999, 65.2198939361321]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-parallel/test/true/city-line.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [9.170356, 45.477985],\n          [9.164434, 45.482551],\n          [9.166644, 45.484003]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [9.169356, 45.477985],\n          [9.163434, 45.482551],\n          [9.165644, 45.484003]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-parallel/test/true/fiji.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-180.2911376953125, -17.07253857905758],\n          [-179.73358154296875, -17.203769821917533],\n          [-179.55780029296872, -17.463332719132794],\n          [-179.296875, -17.460712710429785]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-180.7911376953125, -17.07253857905758],\n          [-180.23358154296875, -17.203769821917533],\n          [-180.05780029296872, -17.463332719132794],\n          [-179.796875, -17.460712710429785]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-parallel/test/true/line1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-68.3349609375, 18.203262019544418],\n          [-67.7142333984375, 18.94266018631978],\n          [-66.412353515625, 18.588982352118453],\n          [-66.181640625, 19.19186565046399]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-68.8349609375, 18.203262019544418],\n          [-68.2142333984375, 18.94266018631978],\n          [-66.912353515625, 18.588982352118453],\n          [-66.681640625, 19.19186565046399]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-parallel/test/true/line3-reverse.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-74.4798388671875, 15.235164824060707],\n          [-74.01978637695312, 15.566159129772904],\n          [-73.95798828125, 15.425881893976563]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-74.4598388671875, 15.235164824060707],\n          [-73.99978637695312, 15.566159129772904],\n          [-73.93798828125, 15.425881893976563],\n          [-73.795166015625, 15.681220930466825],\n          [-73.71002197265624, 15.551606490799015]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-parallel/test/true/line3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-74.4598388671875, 15.235164824060707],\n          [-73.99978637695312, 15.566159129772904],\n          [-73.93798828125, 15.425881893976563],\n          [-73.795166015625, 15.681220930466825],\n          [-73.71002197265624, 15.551606490799015]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-74.4798388671875, 15.235164824060707],\n          [-74.01978637695312, 15.566159129772904],\n          [-73.95798828125, 15.425881893976563]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-parallel/test/true/opposites.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [1, 0]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 0],\n          [0, 0]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-parallel/test/true/resolute.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-89.82421875, 70.22974449563027],\n          [-83.056640625, 75.75894014501688],\n          [-64.3359375, 72.36910450725075]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-88.52421875, 70.22974449563027],\n          [-81.756640625, 75.75894014501688],\n          [-63.0359375, 72.36910450725075]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-parallel/test/true/segment1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-2, -5],\n          [-2, 2]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, -4.5],\n          [-0, 1]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-parallel/test/true/segment2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-96.591796875, 34.161818161230386],\n          [-94.4384765625, 35.496456056584165]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-94.591796875, 34.161818161230386],\n          [-92.4384765625, 35.496456056584165]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-parallel/test/true/segment3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86, 11.4],\n          [-80, 11.4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-88, 11],\n          [-81, 11]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-parallel/test/true/verticals.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [0, 1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 0],\n          [1, 1]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-parallel/test/true/verticals3d.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-10, 20, 0],\n          [-10, 10, 0]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-20, 20, 0],\n          [-20, 10, 0]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-parallel/test.ts",
    "content": "import { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { lineString } from \"@turf/helpers\";\nimport { booleanParallel } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-boolean-parallel\", (t) => {\n  // True Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"true\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const line1 = geojson.features[0];\n      const line2 = geojson.features[1];\n      const result = booleanParallel(line1, line2);\n\n      t.true(result, \"[true] \" + name);\n    });\n  // False Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"false\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const line1 = geojson.features[0];\n      const line2 = geojson.features[1];\n      const result = booleanParallel(line1, line2);\n\n      t.false(result, \"[false] \" + name);\n    });\n  t.end();\n});\n\ntest(\"turf-boolean-parallel -- throws\", (t) => {\n  const line = lineString([\n    [0, 0],\n    [0, 1],\n  ]);\n\n  t.throws(\n    () => booleanParallel({}, line),\n    /Invalid GeoJSON object for line1/,\n    \"invalid types\"\n  );\n  t.throws(\n    () => booleanParallel(line, {}),\n    /Invalid GeoJSON object for line2/,\n    \"invalid types\"\n  );\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-boolean-parallel/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-in-polygon/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-boolean-point-in-polygon/README.md",
    "content": "# @turf/boolean-point-in-polygon\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## booleanPointInPolygon\n\nTakes a [Point][1] and a [Polygon][2] or [MultiPolygon][3] and determines if the point\nresides inside the polygon. The polygon can be convex or concave. The function accounts for holes.\n\n### Parameters\n\n*   `point` **[Coord][4]** input point\n*   `polygon` **[Feature][5]<([Polygon][2] | [MultiPolygon][3])>** input polygon or multipolygon\n*   `options` **[Object][6]** Optional parameters (optional, default `{}`)\n\n    *   `options.ignoreBoundary` **[boolean][7]** True if polygon boundary should be ignored when determining if\n        the point is inside the polygon otherwise false. (optional, default `false`)\n\n### Examples\n\n```javascript\nvar pt = turf.point([-77, 44]);\nvar poly = turf.polygon([[\n  [-81, 41],\n  [-81, 47],\n  [-72, 47],\n  [-72, 41],\n  [-81, 41]\n]]);\n\nturf.booleanPointInPolygon(pt, poly);\n//= true\n```\n\nReturns **[boolean][7]** `true` if the Point is inside the Polygon; `false` if the Point is not inside the Polygon\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/boolean-point-in-polygon\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-boolean-point-in-polygon/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport Benchmark from \"benchmark\";\nimport { point, polygon } from \"@turf/helpers\";\nimport { booleanPointInPolygon } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nvar poly = polygon([\n  [\n    [0, 0],\n    [0, 100],\n    [100, 100],\n    [100, 0],\n    [0, 0],\n  ],\n]);\nvar ptIn = point([50, 50]);\n\nvar ptInPoly = point([-86.7222, 36.2025]);\nvar ptOutsidePoly = point([-110, 40]);\nvar multiPolyHole = JSON.parse(\n  fs.readFileSync(__dirname + \"/test/in/multipoly-with-hole.geojson\")\n);\n\n/**\n * Benchmark Results\n *\n * simple x 3,219,331 ops/sec ±1.14% (91 runs sampled)\n * multiPolyHole - inside x 1,171,486 ops/sec ±1.10% (90 runs sampled)\n * multiPolyHole - outside x 7,697,033 ops/sec ±0.89% (89 runs sampled)\n */\nvar suite = new Benchmark.Suite(\"turf-boolean-point-in-polygon\");\nsuite\n  .add(\"simple\", () => booleanPointInPolygon(ptIn, poly))\n  .add(\"multiPolyHole - inside\", () =>\n    booleanPointInPolygon(ptInPoly, multiPolyHole)\n  )\n  .add(\"multiPolyHole - outside\", () =>\n    booleanPointInPolygon(ptOutsidePoly, multiPolyHole)\n  )\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-boolean-point-in-polygon/index.ts",
    "content": "import pip from \"point-in-polygon-hao\";\nimport {\n  BBox,\n  Feature,\n  MultiPolygon,\n  Polygon,\n  GeoJsonProperties,\n} from \"geojson\";\nimport { Coord } from \"@turf/helpers\";\nimport { getCoord, getGeom } from \"@turf/invariant\";\n\n// http://en.wikipedia.org/wiki/Even%E2%80%93odd_rule\n// modified from: https://github.com/substack/point-in-polygon/blob/master/index.js\n// which was modified from http://www.ecse.rpi.edu/Homepages/wrf/Research/Short_Notes/pnpoly.html\n/**\n * Takes a {@link Point} and a {@link Polygon} or {@link MultiPolygon} and determines if the point\n * resides inside the polygon. The polygon can be convex or concave. The function accounts for holes.\n *\n * @function\n * @param {Coord} point input point\n * @param {Feature<Polygon|MultiPolygon>} polygon input polygon or multipolygon\n * @param {Object} [options={}] Optional parameters\n * @param {boolean} [options.ignoreBoundary=false] True if polygon boundary should be ignored when determining if\n * the point is inside the polygon otherwise false.\n * @returns {boolean} `true` if the Point is inside the Polygon; `false` if the Point is not inside the Polygon\n * @example\n * var pt = turf.point([-77, 44]);\n * var poly = turf.polygon([[\n *   [-81, 41],\n *   [-81, 47],\n *   [-72, 47],\n *   [-72, 41],\n *   [-81, 41]\n * ]]);\n *\n * turf.booleanPointInPolygon(pt, poly);\n * //= true\n */\nfunction booleanPointInPolygon<\n  G extends Polygon | MultiPolygon,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  point: Coord,\n  polygon: Feature<G, P> | G,\n  options: {\n    ignoreBoundary?: boolean;\n  } = {}\n) {\n  // validation\n  if (!point) {\n    throw new Error(\"point is required\");\n  }\n  if (!polygon) {\n    throw new Error(\"polygon is required\");\n  }\n\n  const pt = getCoord(point);\n  const geom = getGeom(polygon);\n  const type = geom.type;\n  const bbox = polygon.bbox;\n  let polys: any[] = geom.coordinates;\n\n  // Quick elimination if point is not inside bbox\n  if (bbox && inBBox(pt, bbox) === false) {\n    return false;\n  }\n\n  if (type === \"Polygon\") {\n    polys = [polys];\n  }\n  let result = false;\n  for (var i = 0; i < polys.length; ++i) {\n    const polyResult = pip(pt, polys[i]);\n    if (polyResult === 0) return options.ignoreBoundary ? false : true;\n    else if (polyResult) result = true;\n  }\n\n  return result;\n}\n\n/**\n * inBBox\n *\n * @private\n * @param {Position} pt point [x,y]\n * @param {BBox} bbox BBox [west, south, east, north]\n * @returns {boolean} true/false if point is inside BBox\n */\nfunction inBBox(pt: number[], bbox: BBox) {\n  return (\n    bbox[0] <= pt[0] && bbox[1] <= pt[1] && bbox[2] >= pt[0] && bbox[3] >= pt[1]\n  );\n}\n\nexport { booleanPointInPolygon };\nexport default booleanPointInPolygon;\n"
  },
  {
    "path": "packages/turf-boolean-point-in-polygon/package.json",
    "content": "{\n  \"name\": \"@turf/boolean-point-in-polygon\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Checks if a point is inside an area, like a city boundary.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"geojson\",\n    \"polygon\",\n    \"point\",\n    \"inside\",\n    \"bin\",\n    \"gis\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"point-in-polygon-hao\": \"^1.1.0\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-in-polygon/test/in/multipoly-with-hole.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"bbox\": [-86.77362442016602, 36.170862616662134, -86.67303085327148, 36.23084281427824],\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [-86.76624298095703, 36.171278341935434],\n          [-86.77362442016602, 36.2014818084173],\n          [-86.74100875854492, 36.19607929145354],\n          [-86.74238204956055, 36.170862616662134],\n          [-86.76624298095703, 36.171278341935434]\n        ]\n      ],\n      [\n        [\n          [-86.70478820800781, 36.23084281427824],\n          [-86.73980712890625, 36.21062368007896],\n          [-86.71371459960938, 36.173495506147],\n          [-86.67526245117186, 36.17709826419592],\n          [-86.67303085327148, 36.20910010895552],\n          [-86.68041229248047, 36.230427405208005],\n          [-86.70478820800781, 36.23084281427824]\n        ],\n        [\n          [-86.6934585571289, 36.217271643303604],\n          [-86.71268463134766, 36.20771501855801],\n          [-86.70238494873047, 36.19067640168397],\n          [-86.68487548828125, 36.19691047217554],\n          [-86.68264389038086, 36.20993115142727],\n          [-86.6934585571289, 36.217271643303604]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-in-polygon/test/in/poly-with-hole.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"bbox\": [-86.73980712890625, 36.173495506147, -86.67303085327148, 36.23084281427824],\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-86.70478820800781, 36.23084281427824],\n        [-86.73980712890625, 36.21062368007896],\n        [-86.71371459960938, 36.173495506147],\n        [-86.67526245117186, 36.17709826419592],\n        [-86.67303085327148, 36.20910010895552],\n        [-86.68041229248047, 36.230427405208005],\n        [-86.70478820800781, 36.23084281427824]\n      ],\n      [\n        [-86.6934585571289, 36.217271643303604],\n        [-86.71268463134766, 36.20771501855801],\n        [-86.70238494873047, 36.19067640168397],\n        [-86.68487548828125, 36.19691047217554],\n        [-86.68264389038086, 36.20993115142727],\n        [-86.6934585571289, 36.217271643303604]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-in-polygon/test.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { point } from \"@turf/helpers\";\nimport { polygon } from \"@turf/helpers\";\nimport { booleanPointInPolygon } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"boolean-point-in-polygon -- featureCollection\", function (t) {\n  // test for a simple polygon\n  var poly = polygon([\n    [\n      [0, 0],\n      [0, 100],\n      [100, 100],\n      [100, 0],\n      [0, 0],\n    ],\n  ]);\n  var ptIn = point([50, 50]);\n  var ptOut = point([140, 150]);\n\n  t.true(booleanPointInPolygon(ptIn, poly), \"point inside simple polygon\");\n  t.false(booleanPointInPolygon(ptOut, poly), \"point outside simple polygon\");\n\n  // test for a concave polygon\n  var concavePoly = polygon([\n    [\n      [0, 0],\n      [50, 50],\n      [0, 100],\n      [100, 100],\n      [100, 0],\n      [0, 0],\n    ],\n  ]);\n  var ptConcaveIn = point([75, 75]);\n  var ptConcaveOut = point([25, 50]);\n\n  t.true(\n    booleanPointInPolygon(ptConcaveIn, concavePoly),\n    \"point inside concave polygon\"\n  );\n  t.false(\n    booleanPointInPolygon(ptConcaveOut, concavePoly),\n    \"point outside concave polygon\"\n  );\n\n  t.end();\n});\n\ntest(\"boolean-point-in-polygon -- poly with hole\", function (t) {\n  var ptInHole = point([-86.69208526611328, 36.20373274711739]);\n  var ptInPoly = point([-86.72229766845702, 36.20258997094334]);\n  var ptOutsidePoly = point([-86.75079345703125, 36.18527313913089]);\n  var polyHole = JSON.parse(\n    fs.readFileSync(__dirname + \"/test/in/poly-with-hole.geojson\")\n  );\n\n  t.false(booleanPointInPolygon(ptInHole, polyHole));\n  t.true(booleanPointInPolygon(ptInPoly, polyHole));\n  t.false(booleanPointInPolygon(ptOutsidePoly, polyHole));\n\n  t.end();\n});\n\ntest(\"boolean-point-in-polygon -- multipolygon with hole\", function (t) {\n  var ptInHole = point([-86.69208526611328, 36.20373274711739]);\n  var ptInPoly = point([-86.72229766845702, 36.20258997094334]);\n  var ptInPoly2 = point([-86.75079345703125, 36.18527313913089]);\n  var ptOutsidePoly = point([-86.75302505493164, 36.23015046460186]);\n  var multiPolyHole = JSON.parse(\n    fs.readFileSync(__dirname + \"/test/in/multipoly-with-hole.geojson\")\n  );\n\n  t.false(booleanPointInPolygon(ptInHole, multiPolyHole));\n  t.true(booleanPointInPolygon(ptInPoly, multiPolyHole));\n  t.true(booleanPointInPolygon(ptInPoly2, multiPolyHole));\n  t.true(booleanPointInPolygon(ptInPoly, multiPolyHole));\n  t.false(booleanPointInPolygon(ptOutsidePoly, multiPolyHole));\n\n  t.end();\n});\n\ntest(\"boolean-point-in-polygon -- Boundary test\", function (t) {\n  var poly1 = polygon([\n    [\n      [10, 10],\n      [30, 20],\n      [50, 10],\n      [30, 0],\n      [10, 10],\n    ],\n  ]);\n  var poly2 = polygon([\n    [\n      [10, 0],\n      [30, 20],\n      [50, 0],\n      [30, 10],\n      [10, 0],\n    ],\n  ]);\n  var poly3 = polygon([\n    [\n      [10, 0],\n      [30, 20],\n      [50, 0],\n      [30, -20],\n      [10, 0],\n    ],\n  ]);\n  var poly4 = polygon([\n    [\n      [0, 0],\n      [0, 20],\n      [50, 20],\n      [50, 0],\n      [40, 0],\n      [30, 10],\n      [30, 0],\n      [20, 10],\n      [10, 10],\n      [10, 0],\n      [0, 0],\n    ],\n  ]);\n  var poly5 = polygon([\n    [\n      [0, 20],\n      [20, 40],\n      [40, 20],\n      [20, 0],\n      [0, 20],\n    ],\n    [\n      [10, 20],\n      [20, 30],\n      [30, 20],\n      [20, 10],\n      [10, 20],\n    ],\n  ]);\n  function runTest(t, ignoreBoundary) {\n    var isBoundaryIncluded = ignoreBoundary === false;\n    var tests = [\n      [poly1, point([10, 10]), isBoundaryIncluded], //0\n      [poly1, point([30, 20]), isBoundaryIncluded],\n      [poly1, point([50, 10]), isBoundaryIncluded],\n      [poly1, point([30, 10]), true],\n      [poly1, point([0, 10]), false],\n      [poly1, point([60, 10]), false],\n      [poly1, point([30, -10]), false],\n      [poly1, point([30, 30]), false],\n      [poly2, point([30, 0]), false],\n      [poly2, point([0, 0]), false],\n      [poly2, point([60, 0]), false], //10\n      [poly3, point([30, 0]), true],\n      [poly3, point([0, 0]), false],\n      [poly3, point([60, 0]), false],\n      [poly4, point([0, 20]), isBoundaryIncluded],\n      [poly4, point([10, 20]), isBoundaryIncluded],\n      [poly4, point([50, 20]), isBoundaryIncluded],\n      [poly4, point([0, 10]), isBoundaryIncluded],\n      [poly4, point([5, 10]), true],\n      [poly4, point([25, 10]), true],\n      [poly4, point([35, 10]), true], //20\n      [poly4, point([0, 0]), isBoundaryIncluded],\n      [poly4, point([20, 0]), false],\n      [poly4, point([35, 0]), false],\n      [poly4, point([50, 0]), isBoundaryIncluded],\n      [poly4, point([50, 10]), isBoundaryIncluded],\n      [poly4, point([5, 0]), isBoundaryIncluded],\n      [poly4, point([10, 0]), isBoundaryIncluded],\n      [poly5, point([20, 30]), isBoundaryIncluded],\n      [poly5, point([25, 25]), isBoundaryIncluded],\n      [poly5, point([30, 20]), isBoundaryIncluded], //30\n      [poly5, point([25, 15]), isBoundaryIncluded],\n      [poly5, point([20, 10]), isBoundaryIncluded],\n      [poly5, point([15, 15]), isBoundaryIncluded],\n      [poly5, point([10, 20]), isBoundaryIncluded],\n      [poly5, point([15, 25]), isBoundaryIncluded],\n      [poly5, point([20, 20]), false],\n    ];\n\n    var testTitle =\n      \"Boundary \" + (ignoreBoundary ? \"ignored \" : \"\") + \"test number \";\n    for (var i = 0; i < tests.length; i++) {\n      var item = tests[i];\n      t.true(\n        booleanPointInPolygon(item[1], item[0], {\n          ignoreBoundary: ignoreBoundary,\n        }) == item[2],\n        testTitle + i\n      );\n    }\n  }\n  runTest(t, false);\n  runTest(t, true);\n  t.end();\n});\n\n// https://github.com/Turfjs/turf-inside/issues/15\ntest(\"boolean-point-in-polygon -- issue #15\", (t) => {\n  var pt1 = point([-9.9964077, 53.8040989]);\n  var poly = polygon([\n    [\n      [5.080336744095521, 67.89398938540765],\n      [0.35070899909145403, 69.32470003971179],\n      [-24.453622256504122, 41.146696777884564],\n      [-21.6445524714804, 40.43225902006474],\n      [5.080336744095521, 67.89398938540765],\n    ],\n  ]);\n\n  t.true(booleanPointInPolygon(pt1, poly));\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-boolean-point-in-polygon/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/README.md",
    "content": "# @turf/boolean-point-on-line\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## booleanPointOnLine\n\nReturns true if a point is on a line. Accepts a optional parameter to ignore the\nstart and end vertices of the linestring.\n\n### Parameters\n\n*   `pt` **[Coord][1]** GeoJSON Point\n*   `line` **[Feature][2]<[LineString][3]>** GeoJSON LineString\n*   `options` **[Object][4]** Optional parameters (optional, default `{}`)\n\n    *   `options.ignoreEndVertices` **[boolean][5]** whether to ignore the start and end vertices. (optional, default `false`)\n    *   `options.epsilon` **[number][6]?** Fractional number to compare with the cross product result. Useful for dealing with floating points such as lng/lat points\n\n### Examples\n\n```javascript\nvar pt = turf.point([0, 0]);\nvar line = turf.lineString([[-1, -1],[1, 1],[1.5, 2.2]]);\nvar isPointOnLine = turf.booleanPointOnLine(pt, line);\n//=true\n```\n\nReturns **[boolean][5]** true/false\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/boolean-point-on-line\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { booleanPointOnLine } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n * LineWithOnly1Segment: 0.557ms\n * LineWithOnly1SegmentOnStart: 0.024ms\n * PointOnFirstSegment: 0.023ms\n * PointOnLastSegment: 0.040ms\n * PointOnLineEnd: 0.073ms\n * PointOnLineMidpoint: 0.007ms\n * PointOnLineMidVertice: 0.011ms\n * PointOnLineStart: 0.007ms\n * LineWithOnly1Segment x 14,778,798 ops/sec ±3.14% (82 runs sampled)\n * LineWithOnly1SegmentOnStart x 13,982,962 ops/sec ±3.47% (76 runs sampled)\n * PointOnFirstSegment x 15,369,530 ops/sec ±4.47% (81 runs sampled)\n * PointOnLastSegment x 12,944,744 ops/sec ±1.29% (90 runs sampled)\n * PointOnLineEnd x 13,012,269 ops/sec ±1.52% (89 runs sampled)\n * PointOnLineMidpoint x 17,516,146 ops/sec ±0.57% (93 runs sampled)\n * PointOnLineMidVertice x 17,351,167 ops/sec ±1.69% (92 runs sampled)\n * PointOnLineStart x 14,669,195 ops/sec ±6.96% (78 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-booleanPointOnLine\");\nglob\n  .sync(path.join(__dirname, \"test\", \"true\", \"*.geojson\"))\n  .forEach((filepath) => {\n    const { name } = path.parse(filepath);\n    const geojson = loadJsonFileSync(filepath);\n    const [feature1, feature2] = geojson.features;\n    console.time(name);\n    booleanPointOnLine(feature1, feature2);\n    console.timeEnd(name);\n    suite.add(name, () => booleanPointOnLine(feature1, feature2));\n  });\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/index.ts",
    "content": "import { Feature, LineString } from \"geojson\";\nimport { Coord } from \"@turf/helpers\";\nimport { getCoord, getCoords } from \"@turf/invariant\";\n\n/**\n * Returns true if a point is on a line. Accepts a optional parameter to ignore the\n * start and end vertices of the linestring.\n *\n * @function\n * @param {Coord} pt GeoJSON Point\n * @param {Feature<LineString>} line GeoJSON LineString\n * @param {Object} [options={}] Optional parameters\n * @param {boolean} [options.ignoreEndVertices=false] whether to ignore the start and end vertices.\n * @param {number} [options.epsilon] Fractional number to compare with the cross product result. Useful for dealing with floating points such as lng/lat points\n * @returns {boolean} true/false\n * @example\n * var pt = turf.point([0, 0]);\n * var line = turf.lineString([[-1, -1],[1, 1],[1.5, 2.2]]);\n * var isPointOnLine = turf.booleanPointOnLine(pt, line);\n * //=true\n */\nfunction booleanPointOnLine(\n  pt: Coord,\n  line: Feature<LineString> | LineString,\n  options: {\n    ignoreEndVertices?: boolean;\n    epsilon?: number;\n  } = {}\n): boolean {\n  // Normalize inputs\n  const ptCoords = getCoord(pt);\n  const lineCoords = getCoords(line);\n\n  // Main\n  for (let i = 0; i < lineCoords.length - 1; i++) {\n    let ignoreBoundary: boolean | string = false;\n    if (options.ignoreEndVertices) {\n      if (i === 0) {\n        ignoreBoundary = \"start\";\n      }\n      if (i === lineCoords.length - 2) {\n        ignoreBoundary = \"end\";\n      }\n      if (i === 0 && i + 1 === lineCoords.length - 1) {\n        ignoreBoundary = \"both\";\n      }\n    }\n    if (\n      isPointOnLineSegment(\n        lineCoords[i],\n        lineCoords[i + 1],\n        ptCoords,\n        ignoreBoundary,\n        typeof options.epsilon === \"undefined\" ? null : options.epsilon\n      )\n    ) {\n      return true;\n    }\n  }\n  return false;\n}\n\n// See http://stackoverflow.com/a/4833823/1979085\n// See https://stackoverflow.com/a/328122/1048847\n/**\n * @private\n * @param {Position} lineSegmentStart coord pair of start of line\n * @param {Position} lineSegmentEnd coord pair of end of line\n * @param {Position} pt coord pair of point to check\n * @param {boolean|string} excludeBoundary whether the point is allowed to fall on the line ends.\n * @param {number} epsilon Fractional number to compare with the cross product result. Useful for dealing with floating points such as lng/lat points\n * If true which end to ignore.\n * @returns {boolean} true/false\n */\nfunction isPointOnLineSegment(\n  lineSegmentStart: number[],\n  lineSegmentEnd: number[],\n  pt: number[],\n  excludeBoundary: string | boolean,\n  epsilon: number | null\n): boolean {\n  const x = pt[0];\n  const y = pt[1];\n  const x1 = lineSegmentStart[0];\n  const y1 = lineSegmentStart[1];\n  const x2 = lineSegmentEnd[0];\n  const y2 = lineSegmentEnd[1];\n  const dxc = pt[0] - x1;\n  const dyc = pt[1] - y1;\n  const dxl = x2 - x1;\n  const dyl = y2 - y1;\n  const cross = dxc * dyl - dyc * dxl;\n  if (epsilon !== null) {\n    if (Math.abs(cross) > epsilon) {\n      return false;\n    }\n  } else if (cross !== 0) {\n    return false;\n  }\n\n  // Special cases for zero length lines\n  // https://github.com/Turfjs/turf/issues/2750\n  if (Math.abs(dxl) === Math.abs(dyl) && Math.abs(dxl) === 0) {\n    // Zero length line.\n    if (excludeBoundary) {\n      // To be on a zero length line pt has to be on the start (and end), BUT we\n      // are excluding start and end from possible matches.\n      return false;\n    }\n    if (pt[0] === lineSegmentStart[0] && pt[1] === lineSegmentStart[1]) {\n      // If point is same as start (and end) it's on the line segment\n      return true;\n    } else {\n      // Otherwise point is somewhere else\n      return false;\n    }\n  }\n\n  if (!excludeBoundary) {\n    if (Math.abs(dxl) >= Math.abs(dyl)) {\n      return dxl > 0 ? x1 <= x && x <= x2 : x2 <= x && x <= x1;\n    }\n    return dyl > 0 ? y1 <= y && y <= y2 : y2 <= y && y <= y1;\n  } else if (excludeBoundary === \"start\") {\n    if (Math.abs(dxl) >= Math.abs(dyl)) {\n      return dxl > 0 ? x1 < x && x <= x2 : x2 <= x && x < x1;\n    }\n    return dyl > 0 ? y1 < y && y <= y2 : y2 <= y && y < y1;\n  } else if (excludeBoundary === \"end\") {\n    if (Math.abs(dxl) >= Math.abs(dyl)) {\n      return dxl > 0 ? x1 <= x && x < x2 : x2 < x && x <= x1;\n    }\n    return dyl > 0 ? y1 <= y && y < y2 : y2 < y && y <= y1;\n  } else if (excludeBoundary === \"both\") {\n    if (Math.abs(dxl) >= Math.abs(dyl)) {\n      return dxl > 0 ? x1 < x && x < x2 : x2 < x && x < x1;\n    }\n    return dyl > 0 ? y1 < y && y < y2 : y2 < y && y < y1;\n  }\n  return false;\n}\n\nexport { booleanPointOnLine };\nexport default booleanPointOnLine;\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/package.json",
    "content": "{\n  \"name\": \"@turf/boolean-point-on-line\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Checks if a point lies directly on a line, like a path or road.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Rowan Winsemius <@rowanwins>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"booleanPointOnLine\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/test/false/LineWithOnly1SegmentIgnoreBoundary.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"ignoreEndVertices\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [3, 3]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/test/false/LineWithOnly1SegmentIgnoreBoundaryEnd.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"ignoreEndVertices\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [3, 3]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [3, 3]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/test/false/PointIsOnLineButFailsWithSmallEpsilonValue.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"epsilon\": 10e-18\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.25737143565107, 39.99673377198139]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-75.2580499870244, 40.00180204907801],\n          [-75.25676601413157, 39.992211720827044]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/test/false/PointIsOnLineButFailsWithoutEpsilonForBackwardsCompatibility.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.25737143565107, 39.99673377198139]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-75.2580499870244, 40.00180204907801],\n          [-75.25676601413157, 39.992211720827044]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/test/false/PointOnEndFailsWhenIgnoreEndpoints.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"ignoreEndVertices\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [38.3203125, 5.965753671065536]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [3, 3],\n          [38.3203125, 5.965753671065536]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/test/false/PointOnStartFailsWhenIgnoreEndpoints.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"ignoreEndVertices\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [3, 3],\n          [38.3203125, 5.965753671065536]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/test/false/notOnLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"ignoreEndVertices\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [20, 20]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [3, 3],\n          [38.3203125, 5.965753671065536]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/test/true/LineWithOnly1Segment.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"ignoreEndVertices\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [3, 3]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/test/true/LineWithOnly1SegmentOnStart.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [3, 3]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/test/true/PointOnFirstSegment.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"ignoreEndVertices\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [3, 3],\n          [4, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/test/true/PointOnLastSegment.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"ignoreEndVertices\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [3.5, 3.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [3, 3],\n          [4, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/test/true/PointOnLineEnd.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [38.3203125, 5.965753671065536]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [3, 3],\n          [38.3203125, 5.965753671065536]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/test/true/PointOnLineMidVertice.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"ignoreEndVertices\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [3, 3]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [3, 3],\n          [38.3203125, 5.965753671065536]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/test/true/PointOnLineMidpoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [3, 3],\n          [38.3203125, 5.965753671065536]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/test/true/PointOnLineStart.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [3, 3],\n          [38.3203125, 5.965753671065536]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/test/true/PointOnLineWithEpsilon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"epsilon\": 10e-17\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.25737143565107, 39.99673377198139]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-75.2580499870244, 40.00180204907801],\n          [-75.25676601413157, 39.992211720827044]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/test.ts",
    "content": "import { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { point, lineString } from \"@turf/helpers\";\nimport booleanPointOnLine, {\n  booleanPointOnLine as pointOnLine,\n} from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-boolean-point-on-line\", (t) => {\n  // True Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"true\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const options = geojson.properties;\n      const feature1 = geojson.features[0];\n      const feature2 = geojson.features[1];\n      const result = pointOnLine(feature1, feature2, options);\n\n      t.true(result, \"[true] \" + name);\n    });\n  // False Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"false\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const options = geojson.properties;\n      const feature1 = geojson.features[0];\n      const feature2 = geojson.features[1];\n      const result = pointOnLine(feature1, feature2, options);\n\n      t.false(result, \"[false] \" + name);\n    });\n  t.end();\n});\n\ntest(\"turf-boolean-point-on-line - issue 2750\", (t) => {\n  // Issue 2750 was that in the first test below where point is on a different\n  // longitude to a zero length line booleanPointOnLine gave the correct result,\n  // while the second test where a point on the SAME longitude, but nowhere\n  // near, that zero length line incorrectly returned true.\n  t.false(\n    booleanPointOnLine(\n      point([2, 13]),\n      lineString([\n        [1, 1],\n        [1, 1],\n      ])\n    ),\n    \"#2750 different longitude point not on zero length line\"\n  );\n\n  t.false(\n    booleanPointOnLine(\n      point([1, 13]),\n      lineString([\n        [1, 1],\n        [1, 1],\n      ])\n    ),\n    \"#2750 same longitude point not on zero length line\"\n  );\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-boolean-point-on-line/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-boolean-touches/README.md",
    "content": "# @turf/boolean-touches\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## booleanTouches\n\nBoolean-touches true if none of the points common to both geometries\nintersect the interiors of both geometries.\n\n### Parameters\n\n*   `feature1` **([Geometry][1] | [Feature][2]\\<any>)** GeoJSON Feature or Geometry\n*   `feature2` **([Geometry][1] | [Feature][2]\\<any>)** GeoJSON Feature or Geometry\n\n### Examples\n\n```javascript\nvar line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]);\nvar point = turf.point([1, 1]);\n\nturf.booleanTouches(point, line);\n//=true\n```\n\nReturns **[boolean][3]** true/false\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/boolean-touches\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-boolean-touches/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { booleanTouches as touches } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n * LineTouchesEndpoint x 4,804,946 ops/sec ±0.45% (94 runs sampled)\n * LineStringTouchesEnd x 2,238,597 ops/sec ±0.50% (94 runs sampled)\n * LineStringTouchesStart x 2,375,877 ops/sec ±0.61% (95 runs sampled)\n * MultipointTouchesLine x 3,579,763 ops/sec ±0.55% (93 runs sampled)\n * LineTouchesMultiPoly x 821,968 ops/sec ±5.18% (93 runs sampled)\n * LineTouchesSecondMultiPoly x 713,137 ops/sec ±4.34% (86 runs sampled)\n * LineTouchesPolygon x 879,394 ops/sec ±4.20% (71 runs sampled)\n * MultiLineTouchesLine x 2,202,950 ops/sec ±1.65% (89 runs sampled)\n * MultiLineTouchesMultiLine x 855,681 ops/sec ±2.34% (88 runs sampled)\n * MultiLineTouchesMultiPoint x 2,404,596 ops/sec ±1.00% (93 runs sampled)\n * MultiLineTouchesPoint x 12,237,728 ops/sec ±2.96% (88 runs sampled)\n * MultiLineTouchesPolygon x 734,406 ops/sec ±1.63% (93 runs sampled)\n * MultipointTouchesLine x 3,569,551 ops/sec ±1.27% (94 runs sampled)\n * MpTouchesEndMultiLine x 2,726,064 ops/sec ±1.37% (93 runs sampled)\n * MpTouchesSecondMultiLine x 2,687,858 ops/sec ±1.01% (95 runs sampled)\n * multipoint-touches-multipolygon x 940,368 ops/sec ±1.63% (91 runs sampled)\n * MultiPointIsWithinPolygon x 1,732,081 ops/sec ±1.52% (90 runs sampled)\n * MultiLineTouchesMultiPoly x 173,824 ops/sec ±3.04% (85 runs sampled)\n * MultiPolyTouchesMultiPoint x 642,711 ops/sec ±1.86% (89 runs sampled)\n * MultiPolyTouchesMultiPoly x 1,047,930 ops/sec ±3.68% (82 runs sampled)\n * MpTouchesPoint x 8,655,507 ops/sec ±0.88% (93 runs sampled)\n * MultiPolyTouchesPoly x 557,069 ops/sec ±0.57% (94 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-boolean-touches\");\nglob\n  .sync(path.join(__dirname, \"test/true\", \"**\", \"*.geojson\"))\n  .forEach((filepath) => {\n    const { name } = path.parse(filepath);\n    const geojson = loadJsonFileSync(filepath);\n    const [feature1, feature2] = geojson.features;\n    console.time(name);\n    touches(feature1, feature2);\n    console.timeEnd(name);\n    suite.add(name, () => touches(feature1, feature2));\n  });\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-boolean-touches/index.ts",
    "content": "import { Feature, Geometry, LineString, Point } from \"geojson\";\nimport { booleanPointOnLine } from \"@turf/boolean-point-on-line\";\nimport { booleanPointInPolygon } from \"@turf/boolean-point-in-polygon\";\nimport { getGeom } from \"@turf/invariant\";\n\n/**\n * Boolean-touches true if none of the points common to both geometries\n * intersect the interiors of both geometries.\n *\n * @function\n * @param {Geometry|Feature<any>} feature1 GeoJSON Feature or Geometry\n * @param {Geometry|Feature<any>} feature2 GeoJSON Feature or Geometry\n * @returns {boolean} true/false\n * @example\n * var line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]);\n * var point = turf.point([1, 1]);\n *\n * turf.booleanTouches(point, line);\n * //=true\n */\nfunction booleanTouches(\n  feature1: Feature<any> | Geometry,\n  feature2: Feature<any> | Geometry\n): boolean {\n  var geom1 = getGeom(feature1);\n  var geom2 = getGeom(feature2);\n  var type1 = geom1.type;\n  var type2 = geom2.type;\n\n  switch (type1) {\n    case \"Point\":\n      switch (type2) {\n        case \"LineString\":\n          return isPointOnLineEnd(geom1, geom2);\n        case \"MultiLineString\":\n          var foundTouchingPoint = false;\n          for (var ii = 0; ii < geom2.coordinates.length; ii++) {\n            if (\n              isPointOnLineEnd(geom1, {\n                type: \"LineString\",\n                coordinates: geom2.coordinates[ii],\n              })\n            )\n              foundTouchingPoint = true;\n          }\n          return foundTouchingPoint;\n        case \"Polygon\":\n          for (var i = 0; i < geom2.coordinates.length; i++) {\n            if (\n              booleanPointOnLine(geom1, {\n                type: \"LineString\",\n                coordinates: geom2.coordinates[i],\n              })\n            )\n              return true;\n          }\n          return false;\n        case \"MultiPolygon\":\n          for (var i = 0; i < geom2.coordinates.length; i++) {\n            for (var ii = 0; ii < geom2.coordinates[i].length; ii++) {\n              if (\n                booleanPointOnLine(geom1, {\n                  type: \"LineString\",\n                  coordinates: geom2.coordinates[i][ii],\n                })\n              )\n                return true;\n            }\n          }\n          return false;\n        default:\n          throw new Error(\"feature2 \" + type2 + \" geometry not supported\");\n      }\n    case \"MultiPoint\":\n      switch (type2) {\n        case \"LineString\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom1.coordinates.length; i++) {\n            if (!foundTouchingPoint) {\n              if (\n                isPointOnLineEnd(\n                  { type: \"Point\", coordinates: geom1.coordinates[i] },\n                  geom2\n                )\n              )\n                foundTouchingPoint = true;\n            }\n            if (\n              booleanPointOnLine(\n                { type: \"Point\", coordinates: geom1.coordinates[i] },\n                geom2,\n                { ignoreEndVertices: true }\n              )\n            )\n              return false;\n          }\n          return foundTouchingPoint;\n        case \"MultiLineString\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom1.coordinates.length; i++) {\n            for (var ii = 0; ii < geom2.coordinates.length; ii++) {\n              if (!foundTouchingPoint) {\n                if (\n                  isPointOnLineEnd(\n                    { type: \"Point\", coordinates: geom1.coordinates[i] },\n                    { type: \"LineString\", coordinates: geom2.coordinates[ii] }\n                  )\n                )\n                  foundTouchingPoint = true;\n              }\n              if (\n                booleanPointOnLine(\n                  { type: \"Point\", coordinates: geom1.coordinates[i] },\n                  { type: \"LineString\", coordinates: geom2.coordinates[ii] },\n                  { ignoreEndVertices: true }\n                )\n              )\n                return false;\n            }\n          }\n          return foundTouchingPoint;\n        case \"Polygon\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom1.coordinates.length; i++) {\n            if (!foundTouchingPoint) {\n              if (\n                booleanPointOnLine(\n                  { type: \"Point\", coordinates: geom1.coordinates[i] },\n                  { type: \"LineString\", coordinates: geom2.coordinates[0] }\n                )\n              )\n                foundTouchingPoint = true;\n            }\n            if (\n              booleanPointInPolygon(\n                { type: \"Point\", coordinates: geom1.coordinates[i] },\n                geom2,\n                { ignoreBoundary: true }\n              )\n            )\n              return false;\n          }\n          return foundTouchingPoint;\n        case \"MultiPolygon\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom1.coordinates.length; i++) {\n            for (var ii = 0; ii < geom2.coordinates.length; ii++) {\n              if (!foundTouchingPoint) {\n                if (\n                  booleanPointOnLine(\n                    { type: \"Point\", coordinates: geom1.coordinates[i] },\n                    {\n                      type: \"LineString\",\n                      coordinates: geom2.coordinates[ii][0],\n                    }\n                  )\n                )\n                  foundTouchingPoint = true;\n              }\n              if (\n                booleanPointInPolygon(\n                  { type: \"Point\", coordinates: geom1.coordinates[i] },\n                  { type: \"Polygon\", coordinates: geom2.coordinates[ii] },\n                  { ignoreBoundary: true }\n                )\n              )\n                return false;\n            }\n          }\n          return foundTouchingPoint;\n        default:\n          throw new Error(\"feature2 \" + type2 + \" geometry not supported\");\n      }\n    case \"LineString\":\n      switch (type2) {\n        case \"Point\":\n          return isPointOnLineEnd(geom2, geom1);\n        case \"MultiPoint\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom2.coordinates.length; i++) {\n            if (!foundTouchingPoint) {\n              if (\n                isPointOnLineEnd(\n                  { type: \"Point\", coordinates: geom2.coordinates[i] },\n                  geom1\n                )\n              )\n                foundTouchingPoint = true;\n            }\n            if (\n              booleanPointOnLine(\n                { type: \"Point\", coordinates: geom2.coordinates[i] },\n                geom1,\n                { ignoreEndVertices: true }\n              )\n            )\n              return false;\n          }\n          return foundTouchingPoint;\n        case \"LineString\":\n          var endMatch = false;\n          if (\n            isPointOnLineEnd(\n              { type: \"Point\", coordinates: geom1.coordinates[0] },\n              geom2\n            )\n          )\n            endMatch = true;\n          if (\n            isPointOnLineEnd(\n              {\n                type: \"Point\",\n                coordinates: geom1.coordinates[geom1.coordinates.length - 1],\n              },\n              geom2\n            )\n          )\n            endMatch = true;\n          if (endMatch === false) return false;\n          for (var i = 0; i < geom1.coordinates.length; i++) {\n            if (\n              booleanPointOnLine(\n                { type: \"Point\", coordinates: geom1.coordinates[i] },\n                geom2,\n                { ignoreEndVertices: true }\n              )\n            )\n              return false;\n          }\n          return endMatch;\n        case \"MultiLineString\":\n          var endMatch = false;\n          for (var i = 0; i < geom2.coordinates.length; i++) {\n            if (\n              isPointOnLineEnd(\n                { type: \"Point\", coordinates: geom1.coordinates[0] },\n                { type: \"LineString\", coordinates: geom2.coordinates[i] }\n              )\n            )\n              endMatch = true;\n            if (\n              isPointOnLineEnd(\n                {\n                  type: \"Point\",\n                  coordinates: geom1.coordinates[geom1.coordinates.length - 1],\n                },\n                { type: \"LineString\", coordinates: geom2.coordinates[i] }\n              )\n            )\n              endMatch = true;\n            for (var ii = 0; ii < geom1.coordinates[i].length; ii++) {\n              if (\n                booleanPointOnLine(\n                  { type: \"Point\", coordinates: geom1.coordinates[ii] },\n                  { type: \"LineString\", coordinates: geom2.coordinates[i] },\n                  { ignoreEndVertices: true }\n                )\n              )\n                return false;\n            }\n          }\n          return endMatch;\n        case \"Polygon\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom1.coordinates.length; i++) {\n            if (!foundTouchingPoint) {\n              if (\n                booleanPointOnLine(\n                  { type: \"Point\", coordinates: geom1.coordinates[i] },\n                  { type: \"LineString\", coordinates: geom2.coordinates[0] }\n                )\n              )\n                foundTouchingPoint = true;\n            }\n            if (\n              booleanPointInPolygon(\n                { type: \"Point\", coordinates: geom1.coordinates[i] },\n                geom2,\n                { ignoreBoundary: true }\n              )\n            )\n              return false;\n          }\n          return foundTouchingPoint;\n        case \"MultiPolygon\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom1.coordinates.length; i++) {\n            for (var ii = 0; ii < geom2.coordinates.length; ii++) {\n              if (!foundTouchingPoint) {\n                if (\n                  booleanPointOnLine(\n                    { type: \"Point\", coordinates: geom1.coordinates[i] },\n                    {\n                      type: \"LineString\",\n                      coordinates: geom2.coordinates[ii][0],\n                    }\n                  )\n                )\n                  foundTouchingPoint = true;\n              }\n            }\n            if (\n              booleanPointInPolygon(\n                { type: \"Point\", coordinates: geom1.coordinates[i] },\n                geom2,\n                { ignoreBoundary: true }\n              )\n            )\n              return false;\n          }\n          return foundTouchingPoint;\n        default:\n          throw new Error(\"feature2 \" + type2 + \" geometry not supported\");\n      }\n    case \"MultiLineString\":\n      switch (type2) {\n        case \"Point\":\n          for (var i = 0; i < geom1.coordinates.length; i++) {\n            if (\n              isPointOnLineEnd(geom2, {\n                type: \"LineString\",\n                coordinates: geom1.coordinates[i],\n              })\n            )\n              return true;\n          }\n          return false;\n        case \"MultiPoint\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom1.coordinates.length; i++) {\n            for (var ii = 0; ii < geom2.coordinates.length; ii++) {\n              if (!foundTouchingPoint) {\n                if (\n                  isPointOnLineEnd(\n                    { type: \"Point\", coordinates: geom2.coordinates[ii] },\n                    { type: \"LineString\", coordinates: geom1.coordinates[ii] }\n                  )\n                )\n                  foundTouchingPoint = true;\n              }\n              if (\n                booleanPointOnLine(\n                  { type: \"Point\", coordinates: geom2.coordinates[ii] },\n                  { type: \"LineString\", coordinates: geom1.coordinates[ii] },\n                  { ignoreEndVertices: true }\n                )\n              )\n                return false;\n            }\n          }\n          return foundTouchingPoint;\n        case \"LineString\":\n          var endMatch = false;\n          for (var i = 0; i < geom1.coordinates.length; i++) {\n            if (\n              isPointOnLineEnd(\n                { type: \"Point\", coordinates: geom1.coordinates[i][0] },\n                geom2\n              )\n            )\n              endMatch = true;\n            if (\n              isPointOnLineEnd(\n                {\n                  type: \"Point\",\n                  coordinates:\n                    geom1.coordinates[i][geom1.coordinates[i].length - 1],\n                },\n                geom2\n              )\n            )\n              endMatch = true;\n            for (var ii = 0; ii < geom2.coordinates.length; ii++) {\n              if (\n                booleanPointOnLine(\n                  { type: \"Point\", coordinates: geom2.coordinates[ii] },\n                  { type: \"LineString\", coordinates: geom1.coordinates[i] },\n                  { ignoreEndVertices: true }\n                )\n              )\n                return false;\n            }\n          }\n          return endMatch;\n        case \"MultiLineString\":\n          var endMatch = false;\n          for (var i = 0; i < geom1.coordinates.length; i++) {\n            for (var ii = 0; ii < geom2.coordinates.length; ii++) {\n              if (\n                isPointOnLineEnd(\n                  { type: \"Point\", coordinates: geom1.coordinates[i][0] },\n                  { type: \"LineString\", coordinates: geom2.coordinates[ii] }\n                )\n              )\n                endMatch = true;\n              if (\n                isPointOnLineEnd(\n                  {\n                    type: \"Point\",\n                    coordinates:\n                      geom1.coordinates[i][geom1.coordinates[i].length - 1],\n                  },\n                  { type: \"LineString\", coordinates: geom2.coordinates[ii] }\n                )\n              )\n                endMatch = true;\n              for (var iii = 0; iii < geom1.coordinates[i].length; iii++) {\n                if (\n                  booleanPointOnLine(\n                    { type: \"Point\", coordinates: geom1.coordinates[i][iii] },\n                    { type: \"LineString\", coordinates: geom2.coordinates[ii] },\n                    { ignoreEndVertices: true }\n                  )\n                )\n                  return false;\n              }\n            }\n          }\n          return endMatch;\n        case \"Polygon\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom1.coordinates.length; i++) {\n            for (var ii = 0; ii < geom1.coordinates.length; ii++) {\n              if (!foundTouchingPoint) {\n                if (\n                  booleanPointOnLine(\n                    { type: \"Point\", coordinates: geom1.coordinates[i][ii] },\n                    { type: \"LineString\", coordinates: geom2.coordinates[0] }\n                  )\n                )\n                  foundTouchingPoint = true;\n              }\n              if (\n                booleanPointInPolygon(\n                  { type: \"Point\", coordinates: geom1.coordinates[i][ii] },\n                  geom2,\n                  { ignoreBoundary: true }\n                )\n              )\n                return false;\n            }\n          }\n          return foundTouchingPoint;\n        case \"MultiPolygon\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom2.coordinates[0].length; i++) {\n            for (var ii = 0; ii < geom1.coordinates.length; ii++) {\n              for (var iii = 0; iii < geom1.coordinates[ii].length; iii++) {\n                if (!foundTouchingPoint) {\n                  if (\n                    booleanPointOnLine(\n                      {\n                        type: \"Point\",\n                        coordinates: geom1.coordinates[ii][iii],\n                      },\n                      {\n                        type: \"LineString\",\n                        coordinates: geom2.coordinates[0][i],\n                      }\n                    )\n                  )\n                    foundTouchingPoint = true;\n                }\n                if (\n                  booleanPointInPolygon(\n                    { type: \"Point\", coordinates: geom1.coordinates[ii][iii] },\n                    { type: \"Polygon\", coordinates: [geom2.coordinates[0][i]] },\n                    { ignoreBoundary: true }\n                  )\n                )\n                  return false;\n              }\n            }\n          }\n          return foundTouchingPoint;\n        default:\n          throw new Error(\"feature2 \" + type2 + \" geometry not supported\");\n      }\n    case \"Polygon\":\n      switch (type2) {\n        case \"Point\":\n          for (var i = 0; i < geom1.coordinates.length; i++) {\n            if (\n              booleanPointOnLine(geom2, {\n                type: \"LineString\",\n                coordinates: geom1.coordinates[i],\n              })\n            )\n              return true;\n          }\n          return false;\n        case \"MultiPoint\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom2.coordinates.length; i++) {\n            if (!foundTouchingPoint) {\n              if (\n                booleanPointOnLine(\n                  { type: \"Point\", coordinates: geom2.coordinates[i] },\n                  { type: \"LineString\", coordinates: geom1.coordinates[0] }\n                )\n              )\n                foundTouchingPoint = true;\n            }\n            if (\n              booleanPointInPolygon(\n                { type: \"Point\", coordinates: geom2.coordinates[i] },\n                geom1,\n                { ignoreBoundary: true }\n              )\n            )\n              return false;\n          }\n          return foundTouchingPoint;\n        case \"LineString\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom2.coordinates.length; i++) {\n            if (!foundTouchingPoint) {\n              if (\n                booleanPointOnLine(\n                  { type: \"Point\", coordinates: geom2.coordinates[i] },\n                  { type: \"LineString\", coordinates: geom1.coordinates[0] }\n                )\n              )\n                foundTouchingPoint = true;\n            }\n            if (\n              booleanPointInPolygon(\n                { type: \"Point\", coordinates: geom2.coordinates[i] },\n                geom1,\n                { ignoreBoundary: true }\n              )\n            )\n              return false;\n          }\n          return foundTouchingPoint;\n        case \"MultiLineString\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom2.coordinates.length; i++) {\n            for (var ii = 0; ii < geom2.coordinates[i].length; ii++) {\n              if (!foundTouchingPoint) {\n                if (\n                  booleanPointOnLine(\n                    { type: \"Point\", coordinates: geom2.coordinates[i][ii] },\n                    { type: \"LineString\", coordinates: geom1.coordinates[0] }\n                  )\n                )\n                  foundTouchingPoint = true;\n              }\n              if (\n                booleanPointInPolygon(\n                  { type: \"Point\", coordinates: geom2.coordinates[i][ii] },\n                  geom1,\n                  { ignoreBoundary: true }\n                )\n              )\n                return false;\n            }\n          }\n          return foundTouchingPoint;\n        case \"Polygon\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom1.coordinates[0].length; i++) {\n            if (!foundTouchingPoint) {\n              if (\n                booleanPointOnLine(\n                  { type: \"Point\", coordinates: geom1.coordinates[0][i] },\n                  { type: \"LineString\", coordinates: geom2.coordinates[0] }\n                )\n              )\n                foundTouchingPoint = true;\n            }\n            if (\n              booleanPointInPolygon(\n                { type: \"Point\", coordinates: geom1.coordinates[0][i] },\n                geom2,\n                { ignoreBoundary: true }\n              )\n            )\n              return false;\n          }\n          return foundTouchingPoint;\n        case \"MultiPolygon\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom2.coordinates[0].length; i++) {\n            for (var ii = 0; ii < geom1.coordinates[0].length; ii++) {\n              if (!foundTouchingPoint) {\n                if (\n                  booleanPointOnLine(\n                    { type: \"Point\", coordinates: geom1.coordinates[0][ii] },\n                    { type: \"LineString\", coordinates: geom2.coordinates[0][i] }\n                  )\n                )\n                  foundTouchingPoint = true;\n              }\n              if (\n                booleanPointInPolygon(\n                  { type: \"Point\", coordinates: geom1.coordinates[0][ii] },\n                  { type: \"Polygon\", coordinates: geom2.coordinates[0][i] },\n                  { ignoreBoundary: true }\n                )\n              )\n                return false;\n            }\n          }\n          return foundTouchingPoint;\n        default:\n          throw new Error(\"feature2 \" + type2 + \" geometry not supported\");\n      }\n    case \"MultiPolygon\":\n      switch (type2) {\n        case \"Point\":\n          for (var i = 0; i < geom1.coordinates[0].length; i++) {\n            if (\n              booleanPointOnLine(geom2, {\n                type: \"LineString\",\n                coordinates: geom1.coordinates[0][i],\n              })\n            )\n              return true;\n          }\n          return false;\n        case \"MultiPoint\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom1.coordinates[0].length; i++) {\n            for (var ii = 0; ii < geom2.coordinates.length; ii++) {\n              if (!foundTouchingPoint) {\n                if (\n                  booleanPointOnLine(\n                    { type: \"Point\", coordinates: geom2.coordinates[ii] },\n                    { type: \"LineString\", coordinates: geom1.coordinates[0][i] }\n                  )\n                )\n                  foundTouchingPoint = true;\n              }\n              if (\n                booleanPointInPolygon(\n                  { type: \"Point\", coordinates: geom2.coordinates[ii] },\n                  { type: \"Polygon\", coordinates: geom1.coordinates[0][i] },\n                  { ignoreBoundary: true }\n                )\n              )\n                return false;\n            }\n          }\n          return foundTouchingPoint;\n        case \"LineString\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom1.coordinates[0].length; i++) {\n            for (var ii = 0; ii < geom2.coordinates.length; ii++) {\n              if (!foundTouchingPoint) {\n                if (\n                  booleanPointOnLine(\n                    { type: \"Point\", coordinates: geom2.coordinates[ii] },\n                    { type: \"LineString\", coordinates: geom1.coordinates[0][i] }\n                  )\n                )\n                  foundTouchingPoint = true;\n              }\n              if (\n                booleanPointInPolygon(\n                  { type: \"Point\", coordinates: geom2.coordinates[ii] },\n                  { type: \"Polygon\", coordinates: geom1.coordinates[0][i] },\n                  { ignoreBoundary: true }\n                )\n              )\n                return false;\n            }\n          }\n          return foundTouchingPoint;\n        case \"MultiLineString\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom1.coordinates.length; i++) {\n            for (var ii = 0; ii < geom2.coordinates.length; ii++) {\n              for (var iii = 0; iii < geom2.coordinates[ii].length; iii++) {\n                if (!foundTouchingPoint) {\n                  if (\n                    booleanPointOnLine(\n                      {\n                        type: \"Point\",\n                        coordinates: geom2.coordinates[ii][iii],\n                      },\n                      {\n                        type: \"LineString\",\n                        coordinates: geom1.coordinates[i][0],\n                      }\n                    )\n                  )\n                    foundTouchingPoint = true;\n                }\n                if (\n                  booleanPointInPolygon(\n                    { type: \"Point\", coordinates: geom2.coordinates[ii][iii] },\n                    { type: \"Polygon\", coordinates: [geom1.coordinates[i][0]] },\n                    { ignoreBoundary: true }\n                  )\n                )\n                  return false;\n              }\n            }\n          }\n\n          return foundTouchingPoint;\n        case \"Polygon\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom1.coordinates[0].length; i++) {\n            for (var ii = 0; ii < geom1.coordinates[0][i].length; ii++) {\n              if (!foundTouchingPoint) {\n                if (\n                  booleanPointOnLine(\n                    { type: \"Point\", coordinates: geom1.coordinates[0][i][ii] },\n                    { type: \"LineString\", coordinates: geom2.coordinates[0] }\n                  )\n                )\n                  foundTouchingPoint = true;\n              }\n              if (\n                booleanPointInPolygon(\n                  { type: \"Point\", coordinates: geom1.coordinates[0][i][ii] },\n                  geom2,\n                  { ignoreBoundary: true }\n                )\n              )\n                return false;\n            }\n          }\n          return foundTouchingPoint;\n        case \"MultiPolygon\":\n          var foundTouchingPoint = false;\n          for (var i = 0; i < geom1.coordinates[0].length; i++) {\n            for (var ii = 0; ii < geom2.coordinates[0].length; ii++) {\n              for (var iii = 0; iii < geom1.coordinates[0].length; iii++) {\n                if (!foundTouchingPoint) {\n                  if (\n                    booleanPointOnLine(\n                      {\n                        type: \"Point\",\n                        coordinates: geom1.coordinates[0][i][iii],\n                      },\n                      {\n                        type: \"LineString\",\n                        coordinates: geom2.coordinates[0][ii],\n                      }\n                    )\n                  )\n                    foundTouchingPoint = true;\n                }\n                if (\n                  booleanPointInPolygon(\n                    {\n                      type: \"Point\",\n                      coordinates: geom1.coordinates[0][i][iii],\n                    },\n                    { type: \"Polygon\", coordinates: geom2.coordinates[0][ii] },\n                    { ignoreBoundary: true }\n                  )\n                )\n                  return false;\n              }\n            }\n          }\n          return foundTouchingPoint;\n        default:\n          throw new Error(\"feature2 \" + type2 + \" geometry not supported\");\n      }\n    default:\n      throw new Error(\"feature1 \" + type1 + \" geometry not supported\");\n  }\n}\n\nfunction isPointOnLineEnd(point: Point, line: LineString) {\n  if (compareCoords(line.coordinates[0], point.coordinates)) return true;\n  if (\n    compareCoords(\n      line.coordinates[line.coordinates.length - 1],\n      point.coordinates\n    )\n  )\n    return true;\n  return false;\n}\n\n/**\n * compareCoords\n *\n * @private\n * @param {Position} pair1 point [x,y]\n * @param {Position} pair2 point [x,y]\n * @returns {boolean} true/false if coord pairs match\n */\nfunction compareCoords(pair1: number[], pair2: number[]) {\n  return pair1[0] === pair2[0] && pair1[1] === pair2[1];\n}\n\nexport { booleanTouches };\nexport default booleanTouches;\n"
  },
  {
    "path": "packages/turf-boolean-touches/package.json",
    "content": "{\n  \"name\": \"@turf/boolean-touches\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Determine whether none of the points common to both geometries intersect the interiors of both geometries.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Rowan Winsemius <@rowanwins>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gis\",\n    \"boolean\",\n    \"de-9im\",\n    \"touches\",\n    \"boolean-touches\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"boolean-jsts\": \"*\",\n    \"boolean-shapely\": \"*\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/boolean-point-in-polygon\": \"workspace:*\",\n    \"@turf/boolean-point-on-line\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/LineString/LineString/LinesExactSame.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/LineString/LineString/LivesOverlap.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 2],\n          [1, 3],\n          [1, 15.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/LineString/MultiLineString/LineStringOverlapsMultiLinestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [2, 2],\n          [2, 3]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/LineString/MultiLineString/LineStringSameAsMultiLinestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/LineString/MultiPoint/LineStringDoesNotTouchMP.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [3, 1],\n          [3, 3]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/LineString/MultiPoint/LineStringTouchesMultiPointButInternal.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 3]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/LineString/MultiPolygon/LineDoesNotTouchMultiPoly.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-1, 1],\n          [-1, 0.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/LineString/Polygon/LineCrossesPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [2, 0],\n          [11, 11]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/LineString/Polygon/LineDoesNotTouch.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-1, -2],\n          [-1, -3]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/LineString/Polygon/LineWIthinPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 2],\n          [1, 3],\n          [3, 3]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiLineString/LineString/MultiLineStringOverlapsLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [2, 2],\n          [2, 3]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiLineString/LineString/MultiLineStringSameAsLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiLineString/MultiLineString/MultiLineStringsOverlap.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [2, 2],\n            [2, 3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiLineString/MultiLineString/MultiLineStringsSame.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiLineString/MultiPoint/MpTouchesInternalMultiline.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 2],\n          [10, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiLineString/MultiPoint/MultiPointNotTouchMultiline.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [12, 4],\n          [10, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiLineString/MultiPolygon/MultiLineInsideMultipoly.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiLineString/Point/PointNotTouchMultiLinestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 3]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiLineString/Point/PointTouchesMidLineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10, 4]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiLineString/Polygon/MultiLineInsidePoly.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiLineString/Polygon/MultiLineNotTouchPoly.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, 10],\n            [10, 100],\n            [100, 100],\n            [100, 10],\n            [10, 10]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiPoint/LineString/MultiPointTouchesInsideLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 3]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiPoint/LineString/MultipointDoesNotTouchLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [3, 1],\n          [3, 3]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiPoint/MultiLineString/MpDoesNotTouchMultiLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [12, 4],\n          [10, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiPoint/MultiLineString/MpTouchesInternalMultiLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 2],\n          [10, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiPoint/MultiPolygon/MultiPointDoesNotTouchMultipolygon",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [[10, 14], [-14, -14]]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [[[1, 1], [1, 10], [10, 10], [10, 1], [1, 1]]],\n          [[[-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1]]]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiPoint/MultiPolygon/multipoint-inside-multipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [4, 4],\n          [-14, -14]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiPoint/Polygon/MultiPointInsidePolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [2, 2],\n          [12, 12],\n          [15, 15]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiPoint/Polygon/MultiPointNoTouchPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [0, 0],\n          [0, 10]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiPolygon/LineString/MultiPolyNotTouchLineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-1, 1],\n          [-1, 0.5]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiPolygon/MultiLineString/MultiPolyOverlapsMultiLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiPolygon/MultiPoint/MultiPolyNotTouchMultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [10, 14],\n          [-14, -14]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiPolygon/MultiPolygon/MultiPolysDoNotTouch.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [10, 10],\n              [10, 11],\n              [11, 11],\n              [11, 10],\n              [10, 10]\n            ]\n          ],\n          [\n            [\n              [30, 30],\n              [30, 40],\n              [40, 40],\n              [40, 30],\n              [30, 30]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [9, 9],\n              [10, 1],\n              [1, 1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiPolygon/MultiPolygon/MultiPolysOverlap.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [10, 10],\n              [10, 11],\n              [11, 11],\n              [11, 10],\n              [10, 10]\n            ]\n          ],\n          [\n            [\n              [30, 30],\n              [30, 40],\n              [40, 40],\n              [40, 30],\n              [30, 30]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10.5, 10.5],\n              [10, 1],\n              [1, 1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/MultiPolygon/Point/MultiPolyNotTouchPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [14, 14]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/Point/LineString/PointIsNotTouchLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/Point/LineString/PointOnMidLinestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/Point/MultiLineString/MpNotTouchMidLineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10, 4]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/Point/MultiLineString/MpOnMidLineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 3]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/Point/MultiPolygon/PointNotTouchMultipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [14, 14]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/Point/Polygon/PointDoesNotTouchPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [14, 14]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/Point/Polygon/PointInsidePolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/Polygon/LineString/PolyDoesNotTouchLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-1, -2],\n          [-1, -3]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/Polygon/MultiLineString/PolyNotTouchMultiLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, 10],\n            [10, 100],\n            [100, 100],\n            [100, 10],\n            [10, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/Polygon/MultiLineString/PolyOverlapMultiLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/Polygon/MultiPoint/PolygonNoTouchMultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [0, 0],\n          [0, 10]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/Polygon/MultiPoint/PolygonOverlapsMultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [2, 2],\n          [12, 12],\n          [15, 15]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/Polygon/MultiPolygon/PolyNotTouchMultipoly.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [9, 9],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [10, 10],\n              [10, 11],\n              [11, 11],\n              [11, 10],\n              [10, 10]\n            ]\n          ],\n          [\n            [\n              [30, 30],\n              [30, 40],\n              [40, 40],\n              [40, 30],\n              [30, 30]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/Polygon/Point/PolygonDoesNotTouchPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [14, 14]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/Polygon/Point/PolygonOverlapsPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 2]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/Polygon/Polygon/PolygonsDontTouch.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, 10],\n            [10, 11],\n            [11, 11],\n            [11, 10],\n            [10, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [9, 9],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/false/Polygon/Polygon/PolygonsOverlap.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, 10],\n            [10, 11],\n            [11, 11],\n            [11, 10],\n            [10, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [11, 11],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/LineString/LineString/LineTouchesEndpoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 2],\n          [1, 3]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 3],\n          [1, 4],\n          [1, 5]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/LineString/MultiLineString/LineStringTouchesEnd.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [2, 5],\n          [2, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/LineString/MultiLineString/LineStringTouchesStart.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 1],\n          [1, 1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/LineString/MultiPoint/MultipointTouchesLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12],\n          [15, 15]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/LineString/MultiPolygon/LineTouchesMultiPoly.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 1],\n          [1, 1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/LineString/MultiPolygon/LineTouchesSecondMultiPoly.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-1, 1],\n          [-1, -1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/LineString/Polygon/LineTouchesPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [1, 1],\n          [1, 5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/MultiLineString/LineString/MultiLineTouchesLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [2, 0],\n          [2, 1]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/MultiLineString/MultiLineString/MultiLineTouchesMultiLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [12, 10],\n            [12, 11]\n          ],\n          [\n            [2, 0],\n            [2, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/MultiLineString/MultiPoint/MultiLineTouchesMultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [10, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/MultiLineString/Point/MultiLineTouchesPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 4]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/MultiLineString/Polygon/MultiLineTouchesPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, -1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, -1],\n            [1, -10],\n            [10, -10],\n            [10, -1],\n            [1, -1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/MultiPoint/LineString/MultipointTouchesLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12],\n          [15, 15]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/MultiPoint/MultiLineString/MpTouchesEndMultiLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 4],\n          [10, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/MultiPoint/MultiLineString/MpTouchesSecondMultiLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [2, 4],\n          [10, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/MultiPoint/MultiPolygon/multipoint-touches-multipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [-1, -1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/MultiPoint/Polygon/MultiPointIsWithinPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [14, 14]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/MultiPolygon/MultiLineString/MultiLineTouchesMultiPoly.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [20, -2],\n              [20, -20],\n              [40, -20],\n              [40, -2],\n              [20, -2]\n            ]\n          ],\n          [\n            [\n              [1, -1],\n              [1, -10],\n              [10, -10],\n              [10, -1],\n              [1, -1]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, -1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/MultiPolygon/MultiPoint/MultiPolyTouchesMultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [14, 14]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/MultiPolygon/MultiPolygon/MultiPolyTouchesMultiPoly.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [10, 10],\n              [10, 11],\n              [11, 11],\n              [11, 10],\n              [10, 10]\n            ]\n          ],\n          [\n            [\n              [30, 30],\n              [30, 40],\n              [40, 40],\n              [40, 30],\n              [30, 30]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 11],\n              [10, 1],\n              [1, 1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/MultiPolygon/Point/MpTouchesPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 5]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/MultiPolygon/Polygon/MultiPolyTouchesPoly.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [10, 10],\n              [10, 11],\n              [11, 11],\n              [11, 10],\n              [10, 10]\n            ]\n          ],\n          [\n            [\n              [30, 30],\n              [30, 40],\n              [40, 40],\n              [40, 30],\n              [30, 30]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 11],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/Point/LineString/PointOnEndLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 4]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/Point/LineString/PointOnStartLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/Point/MultiLineString/MpOnEndLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 4]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/Point/MultiLineString/MpOnStartLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, 1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/Point/MultiPolygon/PointTouchesMultipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/Point/MultiPolygon/PointTouchesMultipolygonHole.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ],\n            [\n              [2, 2],\n              [2, 4],\n              [4, 4],\n              [2, 2]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/Point/Polygon/PointOnEdgePolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/Point/Polygon/PointOnHole.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ],\n          [\n            [2, 2],\n            [2, 4],\n            [4, 4],\n            [2, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/Point/Polygon/PointOnVerticePolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/Polygon/LineString/PolygonTouchesLines.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [1, 1],\n          [1, 5]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/Polygon/MultiLineString/PolygonTouchesMultiline.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, -1],\n            [1, -10],\n            [10, -10],\n            [10, -1],\n            [1, -1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [1, 3],\n            [1, 4]\n          ],\n          [\n            [2, -1],\n            [2, 2],\n            [2, 3],\n            [2, 4]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/Polygon/MultiPoint/PolygonTouchesMultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [14, 14]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/Polygon/MultiPolygon/PolyTouchMultiPolys.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 11],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [10, 10],\n              [10, 11],\n              [11, 11],\n              [11, 10],\n              [10, 10]\n            ]\n          ],\n          [\n            [\n              [30, 30],\n              [30, 40],\n              [40, 40],\n              [40, 30],\n              [30, 30]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/Polygon/Point/PolygonTouchesPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 5]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/Polygon/Point/PolygonTouchesPointVertice.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/Polygon/Polygon/PolygonTouchesEdges.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, 10],\n            [10, 11],\n            [11, 11],\n            [11, 10],\n            [10, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 11],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test/true/Polygon/Polygon/PolygonsTouchVertices.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, 10],\n            [10, 11],\n            [11, 11],\n            [11, 10],\n            [10, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/test.ts",
    "content": "import { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport shapely from \"boolean-shapely\";\nimport booleanJSTS from \"boolean-jsts\";\nimport { booleanTouches as touches } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-boolean-touches\", (t) => {\n  // True Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"true\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      if (name.includes(\"skip\")) return t.skip(name);\n\n      const geojson = loadJsonFileSync(filepath);\n      const feature1 = geojson.features[0];\n      const feature2 = geojson.features[1];\n      const result = touches(feature1, feature2);\n      if (process.env.JSTS)\n        t.true(\n          booleanJSTS(\"touches\", feature1, feature2),\n          \"[true] JSTS - \" + name\n        );\n\n      if (process.env.SHAPELY)\n        shapely\n          .touches(feature1, feature2)\n          .then((result) => t.true(result, \"[true] shapely - \" + name));\n      t.true(result, \"[true] \" + name);\n    });\n  // False Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"false\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      if (name.includes(\"skip\")) return t.skip(name);\n\n      const geojson = loadJsonFileSync(filepath);\n      const feature1 = geojson.features[0];\n      const feature2 = geojson.features[1];\n      const result = touches(feature1, feature2);\n      if (process.env.JSTS)\n        t.false(\n          booleanJSTS(\"touches\", feature1, feature2),\n          \"[false] JSTS - \" + name\n        );\n\n      if (process.env.SHAPELY)\n        shapely\n          .touches(feature1, feature2)\n          .then((result) => t.false(result, \"[false] shapely - \" + name));\n      t.false(result, \"[false] \" + name);\n    });\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-boolean-touches/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-boolean-touches/types.ts",
    "content": "import * as helpers from \"@turf/helpers\";\nimport { booleanTouches } from \"./index.js\";\n\nconst pt = helpers.point([0, 0]);\nconst line = helpers.lineString([\n  [0, 0],\n  [10, 10],\n]);\nbooleanTouches(pt, line);\n"
  },
  {
    "path": "packages/turf-boolean-valid/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-boolean-valid/README.md",
    "content": "# @turf/boolean-valid\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## booleanValid\n\nbooleanValid checks if the geometry is a valid according to the OGC Simple Feature Specification.\n\n### Parameters\n\n*   `feature` **([Geometry][1] | [Feature][2]\\<any>)** GeoJSON Feature or Geometry\n\n### Examples\n\n```javascript\nvar line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]);\n\nturf.booleanValid(line); // => true\nturf.booleanValid({foo: \"bar\"}); // => false\n```\n\nReturns **[boolean][3]** true/false\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/boolean-valid\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-boolean-valid/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport Benchmark from \"benchmark\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { bbox } from \"@turf/bbox\";\nimport { booleanValid as isValid } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n */\nconst suite = new Benchmark.Suite(\"turf-boolean-is-valid\");\nglob\n  .sync(path.join(__dirname, \"test\", \"**\", \"*.geojson\"))\n  .forEach((filepath) => {\n    const { name } = path.parse(filepath);\n    const geojson = loadJsonFileSync(filepath);\n    const [feature1] = geojson.features;\n\n    feature1.bbox = bbox(feature1);\n\n    console.time(name);\n    isValid(feature1);\n    console.timeEnd(name);\n    suite.add(name, () => isValid(feature1));\n  });\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-boolean-valid/index.ts",
    "content": "import { Feature, Geometry, Position } from \"geojson\";\nimport { getGeom } from \"@turf/invariant\";\nimport { polygon, lineString } from \"@turf/helpers\";\nimport { booleanDisjoint } from \"@turf/boolean-disjoint\";\nimport { booleanCrosses } from \"@turf/boolean-crosses\";\nimport { lineIntersect } from \"@turf/line-intersect\";\nimport { booleanPointOnLine as isPointOnLine } from \"@turf/boolean-point-on-line\";\n\n/**\n * booleanValid checks if the geometry is a valid according to the OGC Simple Feature Specification.\n *\n * @function\n * @param {Geometry|Feature<any>} feature GeoJSON Feature or Geometry\n * @returns {boolean} true/false\n * @example\n * var line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]);\n *\n * turf.booleanValid(line); // => true\n * turf.booleanValid({foo: \"bar\"}); // => false\n */\nfunction booleanValid(feature: Feature<any> | Geometry) {\n  // Automatic False\n  if (!feature.type) return false;\n\n  // Parse GeoJSON\n  const geom = getGeom(feature);\n  const type = geom.type;\n  const coords = geom.coordinates;\n\n  switch (type) {\n    case \"Point\":\n      return coords.length > 1;\n    case \"MultiPoint\":\n      for (var i = 0; i < coords.length; i++) {\n        if (coords[i].length < 2) return false;\n      }\n      return true;\n    case \"LineString\":\n      if (coords.length < 2) return false;\n      for (var i = 0; i < coords.length; i++) {\n        if (coords[i].length < 2) return false;\n      }\n      return true;\n    case \"MultiLineString\":\n      if (coords.length < 2) return false;\n      for (var i = 0; i < coords.length; i++) {\n        if (coords[i].length < 2) return false;\n      }\n      return true;\n    case \"Polygon\":\n      for (var i = 0; i < geom.coordinates.length; i++) {\n        if (coords[i].length < 4) return false;\n        if (!checkRingsClose(coords[i])) return false;\n        if (checkRingsForSpikesPunctures(coords[i])) return false;\n        if (i > 0) {\n          if (\n            lineIntersect(polygon([coords[0]]), polygon([coords[i]])).features\n              .length > 1\n          )\n            return false;\n        }\n      }\n      return true;\n    case \"MultiPolygon\":\n      for (var i = 0; i < geom.coordinates.length; i++) {\n        var poly: any = geom.coordinates[i];\n\n        for (var ii = 0; ii < poly.length; ii++) {\n          if (poly[ii].length < 4) return false;\n          if (!checkRingsClose(poly[ii])) return false;\n          if (checkRingsForSpikesPunctures(poly[ii])) return false;\n          if (ii === 0) {\n            if (!checkPolygonAgainstOthers(poly, geom.coordinates, i))\n              return false;\n          }\n          if (ii > 0) {\n            if (\n              lineIntersect(polygon([poly[0]]), polygon([poly[ii]])).features\n                .length > 1\n            )\n              return false;\n          }\n        }\n      }\n      return true;\n    default:\n      return false;\n  }\n}\n\nfunction checkRingsClose(geom: Position[]) {\n  return (\n    geom[0][0] === geom[geom.length - 1][0] &&\n    geom[0][1] === geom[geom.length - 1][1]\n  );\n}\n\nfunction checkRingsForSpikesPunctures(geom: Position[]) {\n  for (var i = 0; i < geom.length - 1; i++) {\n    var point = geom[i];\n    for (var ii = i + 1; ii < geom.length - 2; ii++) {\n      var seg = [geom[ii], geom[ii + 1]];\n      if (isPointOnLine(point, lineString(seg))) return true;\n    }\n  }\n  return false;\n}\n\nfunction checkPolygonAgainstOthers(\n  poly: Position[][],\n  geom: Position[][][],\n  index: number\n) {\n  var polyToCheck = polygon(poly);\n  for (var i = index + 1; i < geom.length; i++) {\n    if (!booleanDisjoint(polyToCheck, polygon(geom[i]))) {\n      if (booleanCrosses(polyToCheck, lineString(geom[i][0]))) return false;\n    }\n  }\n  return true;\n}\n\nexport { booleanValid };\nexport default booleanValid;\n"
  },
  {
    "path": "packages/turf-boolean-valid/package.json",
    "content": "{\n  \"name\": \"@turf/boolean-valid\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Checks if the geometry is a valid according to the OGC Simple Feature Specification.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Rowan Winsemius <@rowanwins>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"valid\",\n    \"boolean\",\n    \"ogc\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"boolean-jsts\": \"*\",\n    \"boolean-shapely\": \"*\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/boolean-crosses\": \"workspace:*\",\n    \"@turf/boolean-disjoint\": \"workspace:*\",\n    \"@turf/boolean-overlap\": \"workspace:*\",\n    \"@turf/boolean-point-in-polygon\": \"workspace:*\",\n    \"@turf/boolean-point-on-line\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/line-intersect\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"geojson-polygon-self-intersections\": \"^1.2.1\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/false/MultiPoint/multipoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [[2.7575683593749996], [2.5575683593749996, 2.8113711933311403]]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/false/MultiPolygon/multipoly-with-2-vertices-touching.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-0.703125, 24.84656534821976],\n              [11.25, 24.84656534821976],\n              [11.25, 31.353636941500987],\n              [-0.703125, 31.353636941500987],\n              [-0.703125, 24.84656534821976]\n            ],\n            [\n              [3.076171875, 27.254629577800063],\n              [6.8115234375, 27.254629577800063],\n              [6.8115234375, 31.353636941500987],\n              [-0.703125, 29.916852233070173],\n              [3.076171875, 27.254629577800063]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/false/MultiPolygon/multipolygons-overlap.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-0.703125, 24.84656534821976],\n              [11.25, 24.84656534821976],\n              [11.25, 31.353636941500987],\n              [-0.703125, 31.353636941500987],\n              [-0.703125, 24.84656534821976]\n            ],\n            [\n              [3.076171875, 27.254629577800063],\n              [6.8115234375, 27.254629577800063],\n              [6.8115234375, 29.916852233070173],\n              [3.076171875, 29.916852233070173],\n              [3.076171875, 27.254629577800063]\n            ]\n          ],\n          [\n            [\n              [5.80078125, 33.100745405144245],\n              [8.4814453125, 30.100745405144245],\n              [8.4814453125, 34.397844946449865],\n              [5.80078125, 34.397844946449865],\n              [5.80078125, 33.100745405144245]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/false/MultiPolygon/not-enough-coords.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-0.703125, 24.84656534821976],\n              [11.25, 24.84656534821976],\n              [-0.703125, 24.84656534821976]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/false/Point/point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.7575683593749996]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/false/Polygon/not-closing-ring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.703125, 24.84656534821976],\n            [11.25, 24.84656534821976],\n            [11.25, 31.353636941500987],\n            [-0.703125, 31.353636941500987]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/false/Polygon/not-enough-coords.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.703125, 24.84656534821976],\n            [11.25, 24.84656534821976],\n            [-0.703125, 24.84656534821976]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/false/Polygon/polygon-with-hole-2-vertices-touching.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.703125, 24.84656534821976],\n            [11.25, 24.84656534821976],\n            [11.25, 31.353636941500987],\n            [-0.703125, 31.353636941500987],\n            [-0.703125, 24.84656534821976]\n          ],\n          [\n            [3.076171875, 27.254629577800063],\n            [6.8115234375, 27.254629577800063],\n            [6.8115234375, 31.353636941500987],\n            [-0.703125, 29.916852233070173],\n            [3.076171875, 27.254629577800063]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/false/Polygon/polygon-with-puncture.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.703125, 24.84656534821976],\n            [10, 24.84656534821976],\n            [10, 26.84656534821976],\n            [10, 24.84656534821976],\n            [11.25, 24.84656534821976],\n            [11.25, 31.353636941500987],\n            [-0.703125, 31.353636941500987],\n            [-0.703125, 24.84656534821976]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/false/Polygon/polygon-with-spike.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.703125, 24.84656534821976],\n            [11.25, 24.84656534821976],\n            [11.25, 22],\n            [11.25, 31.353636941500987],\n            [-0.703125, 31.353636941500987],\n            [-0.703125, 24.84656534821976]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/true/LineString/linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1.285400390625, 4.214943141390651],\n          [0.472412109375, 2.9649843693339677],\n          [1.900634765625, 2.1857489471296665]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/true/MultiLineString/multilinestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [1.285400390625, 4.214943141390651],\n            [0.472412109375, 2.9649843693339677],\n            [1.900634765625, 2.1857489471296665]\n          ],\n          [\n            [2.076416015625, 4.07249425916745],\n            [3.2080078125, 2.5370123584000273]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/true/MultiPoint/multipoint-with-z.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [2.7575683593749996, 2.8113711933311403, 1],\n          [2.5575683593749996, 2.8113711933311403]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/true/MultiPoint/multipoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [2.7575683593749996, 2.8113711933311403],\n          [2.5575683593749996, 2.8113711933311403]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/true/MultiPolygon/multipolygon-touch.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-0.703, 24.846],\n              [11.25, 24.846],\n              [11.25, 31.353],\n              [-0.703, 31.353],\n              [-0.703, 24.846]\n            ],\n            [\n              [3.076, 27.254],\n              [6.811, 27.254],\n              [6.811, 29.916],\n              [3.076, 29.916],\n              [3.076, 27.254]\n            ]\n          ],\n          [\n            [\n              [5.8, 33.1],\n              [8.481, 31.353],\n              [8.481, 34.397],\n              [5.8, 34.397],\n              [5.8, 33.1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/true/MultiPolygon/multipolygon-with-hole.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-0.703125, 24.84656534821976],\n              [11.25, 24.84656534821976],\n              [11.25, 31.353636941500987],\n              [-0.703125, 31.353636941500987],\n              [-0.703125, 24.84656534821976]\n            ],\n            [\n              [3.076171875, 27.254629577800063],\n              [6.8115234375, 27.254629577800063],\n              [6.8115234375, 29.916852233070173],\n              [3.076171875, 29.916852233070173],\n              [3.076171875, 27.254629577800063]\n            ]\n          ],\n          [\n            [\n              [5.80078125, 33.100745405144245],\n              [8.4814453125, 33.100745405144245],\n              [8.4814453125, 34.397844946449865],\n              [5.80078125, 34.397844946449865],\n              [5.80078125, 33.100745405144245]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/true/MultiPolygon/multipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-0.703125, 24.84656534821976],\n              [11.25, 24.84656534821976],\n              [11.25, 31.353636941500987],\n              [-0.703125, 31.353636941500987],\n              [-0.703125, 24.84656534821976]\n            ]\n          ],\n          [\n            [\n              [5.80078125, 33.100745405144245],\n              [8.4814453125, 33.100745405144245],\n              [8.4814453125, 34.397844946449865],\n              [5.80078125, 34.397844946449865],\n              [5.80078125, 33.100745405144245]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/true/Point/point-with-z.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.7575683593749996, 2.8113711933311403, 1]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/true/Point/point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.7575683593749996, 2.8113711933311403]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/true/Polygon/polygon-internal-hole.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.703125, 24.84656534821976],\n            [11.25, 24.84656534821976],\n            [11.25, 31.353636941500987],\n            [-0.703125, 31.353636941500987],\n            [-0.703125, 24.84656534821976]\n          ],\n          [\n            [3.076171875, 27.254629577800063],\n            [6.8115234375, 27.254629577800063],\n            [6.8115234375, 29.916852233070173],\n            [3.076171875, 29.916852233070173],\n            [3.076171875, 27.254629577800063]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/true/Polygon/polygon-with-hole-1-vertice-touching.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.703125, 24.84656534821976],\n            [11.25, 24.84656534821976],\n            [11.25, 31.353636941500987],\n            [-0.703125, 31.353636941500987],\n            [-0.703125, 24.84656534821976]\n          ],\n          [\n            [3.076171875, 27.254629577800063],\n            [6.8115234375, 27.254629577800063],\n            [6.8115234375, 29.916852233070173],\n            [-0.703125, 29.916852233070173],\n            [3.076171875, 27.254629577800063]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test/true/Polygon/polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.703125, 24.84656534821976],\n            [11.25, 24.84656534821976],\n            [11.25, 31.353636941500987],\n            [-0.703125, 31.353636941500987],\n            [-0.703125, 24.84656534821976]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-valid/test.ts",
    "content": "import { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { booleanValid as isValid } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-boolean-valid\", (t) => {\n  // True Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"true\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n\n      if (name === \"multipolygon-touch\") return t.skip(\"multipolygon-touch\");\n\n      const geojson = loadJsonFileSync(filepath);\n      const feature1 = geojson.features[0];\n      const result = isValid(feature1);\n\n      // if (process.env.SHAPELY) shapely.contains(feature1).then(result => t.true(result, '[true] shapely - ' + name));\n      t.true(result, \"[true] \" + name);\n    });\n  // False Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"false\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      const geojson = loadJsonFileSync(filepath);\n      const feature1 = geojson.features[0];\n      const result = isValid(feature1);\n\n      // if (process.env.SHAPELY) shapely.contains(feature1, feature2).then(result => t.false(result, '[false] shapely - ' + name));\n      t.false(result, \"[false] \" + name);\n    });\n  t.end();\n});\n\ntest(\"turf-boolean-valid -- obvious fails\", (t) => {\n  t.false(isValid({ foo: \"bar\" }));\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-boolean-valid/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-boolean-within/README.md",
    "content": "# @turf/boolean-within\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## booleanWithin\n\nTests whether geometry a is contained by geometry b.\nThe interiors of both geometries must intersect, and the interior and boundary of geometry a must not intersect the exterior of geometry b.\nbooleanWithin(a, b) is equivalent to booleanContains(b, a)\n\n### Parameters\n\n*   `feature1` **([Geometry][1] | [Feature][2]\\<any>)** GeoJSON Feature or Geometry\n*   `feature2` **([Geometry][1] | [Feature][2]\\<any>)** GeoJSON Feature or Geometry\n\n### Examples\n\n```javascript\nvar line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]);\nvar point = turf.point([1, 2]);\n\nturf.booleanWithin(point, line);\n//=true\n```\n\nReturns **[boolean][3]** true/false\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/boolean-within\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n\n\n### Diagrams\n\n![esri-within](diagrams/esri-within.png)"
  },
  {
    "path": "packages/turf-boolean-within/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { booleanWithin as within } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n * LineIsNotWithinLine x 2,878,664 ops/sec ±7.20% (68 runs sampled)\n * LineIsNotWIthinPolygon x 1,818,294 ops/sec ±6.20% (64 runs sampled)\n * LineIsNotWIthinPolygonBoundary x 297,332 ops/sec ±6.31% (77 runs sampled)\n * MultiPointsIsNotWIthinLine x 2,767,186 ops/sec ±6.88% (73 runs sampled)\n * MultiPointsOnLineEndsIsNotWIthinLine x 1,606,670 ops/sec ±7.38% (62 runs sampled)\n * MultiPointIsNotWithinMultiPoint x 7,711,700 ops/sec ±10.08% (52 runs sampled)\n * MultiPointAllOnBoundaryIsNotWithinPolygon x 435,926 ops/sec ±6.12% (49 runs sampled)\n * MultiPointIsNotWithinPolygon x 1,709,920 ops/sec ±7.40% (57 runs sampled)\n * PointIsNotWithinLine x 4,148,704 ops/sec ±5.95% (53 runs sampled)\n * PointIsNotWithinLineBecauseOnEnd x 5,243,476 ops/sec ±7.68% (68 runs sampled)\n * PointOnEndIsWithinLinestring x 5,178,472 ops/sec ±7.04% (68 runs sampled)\n * PointIsNotWithinMultiPoint x 12,366,325 ops/sec ±6.98% (58 runs sampled)\n * PointIsNotWithinPolygon x 1,490,757 ops/sec ±11.13% (66 runs sampled)\n * PointOnPolygonBoundary x 1,758,292 ops/sec ±6.62% (63 runs sampled)\n * Polygon-Polygon x 1,406,871 ops/sec ±8.49% (60 runs sampled)\n * LineIsWithinLine x 2,436,801 ops/sec ±7.33% (59 runs sampled)\n * LinesExactSame x 1,815,051 ops/sec ±10.68% (60 runs sampled)\n * LineIsContainedByPolygon x 330,016 ops/sec ±6.95% (54 runs sampled)\n * LineIsContainedByPolygonWithNoInternalVertices x 465,371 ops/sec ±6.99% (61 runs sampled)\n * MultipointsIsWithinLine x 1,742,280 ops/sec ±7.25% (62 runs sampled)\n * MultiPointsWithinMultiPoints x 11,546,059 ops/sec ±4.41% (87 runs sampled)\n * MultiPointIsWithinPolygon x 409,210 ops/sec ±8.21% (53 runs sampled)\n * PointIsWithinLine x 7,298,078 ops/sec ±10.89% (73 runs sampled)\n * PointIsWithinMultiPoint x 16,495,443 ops/sec ±7.21% (68 runs sampled)\n * PointIsWithinPolygon x 1,820,036 ops/sec ±9.11% (60 runs sampled)\n * PolygonIsWIthinPolygon x 518,524 ops/sec ±5.57% (80 runs sampled)\n * PolygonsExactSameShape x 418,247 ops/sec ±7.43% (80 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-boolean-within\");\nglob\n  .sync(path.join(__dirname, \"test\", \"**\", \"*.geojson\"))\n  .forEach((filepath) => {\n    const { name } = path.parse(filepath);\n\n    // don't test files that start with skip\n    if (/^skip/.test(name)) {\n      return;\n    }\n\n    const geojson = loadJsonFileSync(filepath);\n    const [feature1, feature2] = geojson.features;\n    console.time(name);\n    within(feature1, feature2);\n    console.timeEnd(name);\n    suite.add(name, () => within(feature1, feature2));\n  });\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-boolean-within/index.ts",
    "content": "import {\n  BBox,\n  Feature,\n  Geometry,\n  LineString,\n  MultiPoint,\n  MultiPolygon,\n  Point,\n  Polygon,\n} from \"geojson\";\nimport { bbox as calcBbox } from \"@turf/bbox\";\nimport { booleanPointOnLine } from \"@turf/boolean-point-on-line\";\nimport { booleanPointInPolygon } from \"@turf/boolean-point-in-polygon\";\nimport { getGeom } from \"@turf/invariant\";\nimport { feature, featureCollection, lineString } from \"@turf/helpers\";\nimport { lineSplit } from \"@turf/line-split\";\n\n/**\n * Tests whether geometry a is contained by geometry b.\n * The interiors of both geometries must intersect, and the interior and boundary of geometry a must not intersect the exterior of geometry b.\n * booleanWithin(a, b) is equivalent to booleanContains(b, a)\n *\n * @function\n * @param {Geometry|Feature<any>} feature1 GeoJSON Feature or Geometry\n * @param {Geometry|Feature<any>} feature2 GeoJSON Feature or Geometry\n * @returns {boolean} true/false\n * @example\n * var line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]);\n * var point = turf.point([1, 2]);\n *\n * turf.booleanWithin(point, line);\n * //=true\n */\nfunction booleanWithin(\n  feature1: Feature<any> | Geometry,\n  feature2: Feature<any> | Geometry\n): boolean {\n  var geom1 = getGeom(feature1);\n  var geom2 = getGeom(feature2);\n  var type1 = geom1.type;\n  var type2 = geom2.type;\n\n  switch (type1) {\n    case \"Point\":\n      switch (type2) {\n        case \"MultiPoint\":\n          return isPointInMultiPoint(geom1, geom2);\n        case \"LineString\":\n          return booleanPointOnLine(geom1, geom2, { ignoreEndVertices: true });\n        case \"Polygon\":\n        case \"MultiPolygon\":\n          return booleanPointInPolygon(geom1, geom2, { ignoreBoundary: true });\n        default:\n          throw new Error(\"feature2 \" + type2 + \" geometry not supported\");\n      }\n    case \"MultiPoint\":\n      switch (type2) {\n        case \"MultiPoint\":\n          return isMultiPointInMultiPoint(geom1, geom2);\n        case \"LineString\":\n          return isMultiPointOnLine(geom1, geom2);\n        case \"Polygon\":\n        case \"MultiPolygon\":\n          return isMultiPointInPoly(geom1, geom2);\n        default:\n          throw new Error(\"feature2 \" + type2 + \" geometry not supported\");\n      }\n    case \"LineString\":\n      switch (type2) {\n        case \"LineString\":\n          return isLineOnLine(geom1, geom2);\n        case \"Polygon\":\n        case \"MultiPolygon\":\n          return isLineInPoly(geom1, geom2);\n        default:\n          throw new Error(\"feature2 \" + type2 + \" geometry not supported\");\n      }\n    case \"Polygon\":\n      switch (type2) {\n        case \"Polygon\":\n        case \"MultiPolygon\":\n          return isPolyInPoly(geom1, geom2);\n        default:\n          throw new Error(\"feature2 \" + type2 + \" geometry not supported\");\n      }\n    default:\n      throw new Error(\"feature1 \" + type1 + \" geometry not supported\");\n  }\n}\n\nfunction isPointInMultiPoint(point: Point, multiPoint: MultiPoint) {\n  var i;\n  var output = false;\n  for (i = 0; i < multiPoint.coordinates.length; i++) {\n    if (compareCoords(multiPoint.coordinates[i], point.coordinates)) {\n      output = true;\n      break;\n    }\n  }\n  return output;\n}\n\nfunction isMultiPointInMultiPoint(\n  multiPoint1: MultiPoint,\n  multiPoint2: MultiPoint\n) {\n  for (var i = 0; i < multiPoint1.coordinates.length; i++) {\n    var anyMatch = false;\n    for (var i2 = 0; i2 < multiPoint2.coordinates.length; i2++) {\n      if (\n        compareCoords(multiPoint1.coordinates[i], multiPoint2.coordinates[i2])\n      ) {\n        anyMatch = true;\n      }\n    }\n    if (!anyMatch) {\n      return false;\n    }\n  }\n  return true;\n}\n\nfunction isMultiPointOnLine(multiPoint: MultiPoint, lineString: LineString) {\n  var foundInsidePoint = false;\n\n  for (var i = 0; i < multiPoint.coordinates.length; i++) {\n    if (!booleanPointOnLine(multiPoint.coordinates[i], lineString)) {\n      return false;\n    }\n    if (!foundInsidePoint) {\n      foundInsidePoint = booleanPointOnLine(\n        multiPoint.coordinates[i],\n        lineString,\n        { ignoreEndVertices: true }\n      );\n    }\n  }\n  return foundInsidePoint;\n}\n\nfunction isMultiPointInPoly(multiPoint: MultiPoint, polygon: Polygon) {\n  var output = true;\n  var oneInside = false;\n  var isInside = false;\n  for (var i = 0; i < multiPoint.coordinates.length; i++) {\n    isInside = booleanPointInPolygon(multiPoint.coordinates[i], polygon);\n    if (!isInside) {\n      output = false;\n      break;\n    }\n    if (!oneInside) {\n      isInside = booleanPointInPolygon(multiPoint.coordinates[i], polygon, {\n        ignoreBoundary: true,\n      });\n    }\n  }\n  return output && isInside;\n}\n\nfunction isLineOnLine(lineString1: LineString, lineString2: LineString) {\n  for (var i = 0; i < lineString1.coordinates.length; i++) {\n    if (!booleanPointOnLine(lineString1.coordinates[i], lineString2)) {\n      return false;\n    }\n  }\n  return true;\n}\n\nfunction splitLineIntoSegmentsOnPolygon(\n  linestring: LineString,\n  polygon: Polygon\n) {\n  const coords = linestring.coordinates;\n\n  const outputSegments: Feature<LineString>[] = [];\n\n  for (let i = 0; i < coords.length - 1; i++) {\n    const seg = lineString([coords[i], coords[i + 1]]);\n    const split = lineSplit(seg, feature(polygon));\n\n    if (split.features.length === 0) {\n      outputSegments.push(seg);\n    } else {\n      outputSegments.push(...split.features);\n    }\n  }\n\n  return featureCollection(outputSegments);\n}\n\nfunction isLineInPoly(linestring: LineString, polygon: Polygon) {\n  const polyBbox = calcBbox(polygon);\n  const lineBbox = calcBbox(linestring);\n\n  if (!doBBoxOverlap(polyBbox, lineBbox)) {\n    return false;\n  }\n\n  for (const coord of linestring.coordinates) {\n    if (!booleanPointInPolygon(coord, polygon)) {\n      return false;\n    }\n  }\n\n  let isContainedByPolygonBoundary = false;\n  // split intersecting segments and verify their inclusion\n  const lineSegments = splitLineIntoSegmentsOnPolygon(linestring, polygon);\n\n  for (const lineSegment of lineSegments.features) {\n    const midpoint = getMidpoint(\n      lineSegment.geometry.coordinates[0],\n      lineSegment.geometry.coordinates[1]\n    );\n\n    // make sure all segments do not intersect with polygon exterior\n    if (!booleanPointInPolygon(midpoint, polygon)) {\n      return false;\n    }\n\n    // make sure at least 1 segment intersects with the polygon's interior\n    if (\n      !isContainedByPolygonBoundary &&\n      booleanPointInPolygon(midpoint, polygon, { ignoreBoundary: true })\n    ) {\n      isContainedByPolygonBoundary = true;\n    }\n  }\n\n  return isContainedByPolygonBoundary;\n}\n\n/**\n * Is Polygon2 in Polygon1\n * Only takes into account outer rings\n *\n * @private\n * @param {Polygon} geometry1\n * @param {Polygon|MultiPolygon} geometry2\n * @returns {boolean} true/false\n */\nfunction isPolyInPoly(geometry1: Polygon, geometry2: Polygon | MultiPolygon) {\n  var poly1Bbox = calcBbox(geometry1);\n  var poly2Bbox = calcBbox(geometry2);\n  if (!doBBoxOverlap(poly2Bbox, poly1Bbox)) {\n    return false;\n  }\n  for (var i = 0; i < geometry1.coordinates[0].length; i++) {\n    if (!booleanPointInPolygon(geometry1.coordinates[0][i], geometry2)) {\n      return false;\n    }\n  }\n  return true;\n}\n\nfunction doBBoxOverlap(bbox1: BBox, bbox2: BBox) {\n  if (bbox1[0] > bbox2[0]) return false;\n  if (bbox1[2] < bbox2[2]) return false;\n  if (bbox1[1] > bbox2[1]) return false;\n  if (bbox1[3] < bbox2[3]) return false;\n  return true;\n}\n\n/**\n * compareCoords\n *\n * @private\n * @param {Position} pair1 point [x,y]\n * @param {Position} pair2 point [x,y]\n * @returns {boolean} true/false if coord pairs match\n */\nfunction compareCoords(pair1: number[], pair2: number[]) {\n  return pair1[0] === pair2[0] && pair1[1] === pair2[1];\n}\n\n/**\n * getMidpoint\n *\n * @private\n * @param {Position} pair1 point [x,y]\n * @param {Position} pair2 point [x,y]\n * @returns {Position} midpoint of pair1 and pair2\n */\nfunction getMidpoint(pair1: number[], pair2: number[]) {\n  return [(pair1[0] + pair2[0]) / 2, (pair1[1] + pair2[1]) / 2];\n}\n\nexport { booleanWithin };\nexport default booleanWithin;\n"
  },
  {
    "path": "packages/turf-boolean-within/package.json",
    "content": "{\n  \"name\": \"@turf/boolean-within\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Determines whether the first geometry is completely within the second geometry.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Rowan Winsemius <@rowanwins>\",\n    \"Samuel Arbibe <@samuelarbibe>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gis\",\n    \"boolean\",\n    \"de-9im\",\n    \"within\",\n    \"boolean-within\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"boolean-jsts\": \"*\",\n    \"boolean-shapely\": \"*\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/boolean-point-in-polygon\": \"workspace:*\",\n    \"@turf/boolean-point-on-line\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/line-split\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/LineString/LineString/LineIsNotWithinLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 2],\n          [1, 3],\n          [1, 15.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/LineString/Polygon/LineIsNotFullyWithinPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [10.2166256, -0.7379163],\n          [11.0362904, 1.794324]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.6459207, -1.2281524],\n            [11.0822393, -1.2461022],\n            [11.405411, -0.1869151],\n            [11.1181473, 1.9133448],\n            [10.0588623, 1.4646914],\n            [10.6692977, -0.0253296],\n            [10.6692977, -0.0253296],\n            [9.6459207, -1.2281524]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/LineString/Polygon/LineIsNotWIthinPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 2],\n          [1, 3],\n          [1, 15.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/LineString/Polygon/LineIsNotWIthinPolygonBoundary.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 2],\n          [1, 3],\n          [1, 3.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/MultiLineString/MultiPolygon/skip-multilinestring-not-within-multipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [4, 4],\n            [1, 1]\n          ],\n          [\n            [-14, -14],\n            [-11, -11]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/MultiPoint/LineString/MultiPointsIsNotWIthinLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12],\n          [15, 15]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/MultiPoint/LineString/MultiPointsOnLineEndsIsNotWIthinLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/MultiPoint/MultiPoint/MultiPointIsNotWithinMultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 1.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12],\n          [15, 15]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/MultiPoint/MultiPolygon/multipoint-not-within-multipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [4, 4],\n          [-14, -14]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/MultiPoint/Polygon/MultiPointAllOnBoundaryIsNotWithinPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 10]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/MultiPoint/Polygon/MultiPointIsNotWithinPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12],\n          [15, 15]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/Point/LineString/PointIsNotWithinLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/Point/LineString/PointIsNotWithinLineBecauseOnEnd.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 4]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/Point/LineString/PointOnEndIsWithinLinestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/Point/MultiPoint/PointIsNotWithinMultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 4]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/Point/MultiPolygon/point-not-within-multipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [14, 14]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/Point/Polygon/PointIsNotWithinPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [14, 14]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/Point/Polygon/PointOnPolygonBoundary.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/Polygon/MultiPolygon/polygon-not-within-multipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-12, -12],\n            [-12, -19],\n            [-19, -19],\n            [-19, -12],\n            [-12, -12]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/false/Polygon/Polygon/Polygon-Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 20],\n            [1, 3],\n            [1, 4],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/LineString/LineString/LineIsWithinLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 2],\n          [1, 3],\n          [1, 3.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/LineString/LineString/LinesExactSame.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/LineString/Polygon/LineIsContainedByPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [2, 3],\n          [2, 3.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/LineString/Polygon/LineIsContainedByPolygonWithNoInternalVertices.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [10, 10]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/LineString/Polygon/LineIsContainedByPolygonWithSegmentOnBoundary.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [2, 3]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/LineString/Polygon/LineIsFullyContainedByPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [2, 3],\n          [2, 3.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/MultiLineString/MultiPolygon/skip-multilinestring-within-multipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [4, 4],\n            [1, 1]\n          ],\n          [\n            [-4, -4],\n            [-1, -1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/MultiPoint/LineString/MultipointsIsWithinLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 1.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/MultiPoint/MultiPoint/MultiPointsWithinMultiPoints.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12],\n          [15, 15]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12],\n          [15, 15]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/MultiPoint/MultiPolygon/multipoint-within-multipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [4, 4],\n          [-4, -4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/MultiPoint/Polygon/MultiPointIsWithinPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [4, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/MultiPoint/Polygon/MultiPointSingleIsWithinPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [[2, 2]]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/MultiPolygon/MultiPolygon/skip-multipolygon-within-multipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [2, 2],\n              [2, 9],\n              [9, 9],\n              [9, 2],\n              [2, 2]\n            ]\n          ],\n          [\n            [\n              [-2, -2],\n              [-2, -9],\n              [-9, -9],\n              [-9, -2],\n              [-2, -2]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/Point/LineString/PointIsWithinLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 2],\n          [1, 3],\n          [1, 4]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/Point/MultiPoint/PointIsWithinMultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [1, 1],\n          [12, 12]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/Point/MultiPolygon/point-within-multipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-4, -4]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/Point/Polygon/PointIsWithinPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4, 4]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/Polygon/MultiPolygon/polygon-within-multipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-2, -2],\n            [-2, -9],\n            [-9, -9],\n            [-9, -2],\n            [-2, -2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [1, 1],\n              [1, 10],\n              [10, 10],\n              [10, 1],\n              [1, 1]\n            ]\n          ],\n          [\n            [\n              [-1, -1],\n              [-1, -10],\n              [-10, -10],\n              [-10, -1],\n              [-1, -1]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/Polygon/Polygon/PolygonIsWIthinPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [2, 2],\n            [3, 2],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 10],\n            [10, 10],\n            [10, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test/true/Polygon/Polygon/PolygonsExactSameShape.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-12.65625, 36.87962060502676],\n            [35.419921875, 36.38591277287651],\n            [37.79296875, 56.897003921272606],\n            [-12.12890625, 57.040729838360875],\n            [-12.65625, 36.87962060502676]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-12.65625, 36.87962060502676],\n            [35.419921875, 36.38591277287651],\n            [37.79296875, 56.897003921272606],\n            [-12.12890625, 57.040729838360875],\n            [-12.65625, 36.87962060502676]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/test.ts",
    "content": "import { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport shapely from \"boolean-shapely\";\nimport booleanJSTS from \"boolean-jsts\";\nimport { booleanWithin as within } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-boolean-within\", (t) => {\n  // True Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"true\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      if (name.includes(\"skip\")) return t.skip(name);\n\n      const geojson = loadJsonFileSync(filepath);\n      const feature1 = geojson.features[0];\n      const feature2 = geojson.features[1];\n      const result = within(feature1, feature2);\n      if (process.env.JSTS)\n        t.true(\n          booleanJSTS(\"within\", feature1, feature2),\n          \"[true] JSTS - \" + name\n        );\n\n      if (process.env.SHAPELY)\n        shapely\n          .within(feature1, feature2)\n          .then((result) => t.true(result, \"[true] shapely - \" + name));\n      t.true(result, \"[true] \" + name);\n    });\n  // False Fixtures\n  glob\n    .sync(path.join(__dirname, \"test\", \"false\", \"**\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const name = path.parse(filepath).name;\n      if (name.includes(\"skip\")) return t.skip(name);\n\n      const geojson = loadJsonFileSync(filepath);\n      const feature1 = geojson.features[0];\n      const feature2 = geojson.features[1];\n      const result = within(feature1, feature2);\n      if (process.env.JSTS)\n        t.false(\n          booleanJSTS(\"within\", feature1, feature2),\n          \"[false] JSTS - \" + name\n        );\n\n      if (process.env.SHAPELY)\n        shapely\n          .within(feature1, feature2)\n          .then((result) => t.false(result, \"[false] shapely - \" + name));\n      t.false(result, \"[false] \" + name);\n    });\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-boolean-within/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-boolean-within/types.ts",
    "content": "import * as helpers from \"@turf/helpers\";\nimport { booleanWithin } from \"./index.js\";\n\nconst pt = helpers.point([0, 0]);\nconst line = helpers.lineString([\n  [0, 0],\n  [10, 10],\n]);\nbooleanWithin(pt, line);\n"
  },
  {
    "path": "packages/turf-buffer/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-buffer/README.md",
    "content": "# @turf/buffer\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## buffer\n\nCalculates a buffer for input features for a given radius.\n\nWhen using a negative radius, the resulting geometry may be invalid if\nit's too small compared to the radius magnitude. If the input is a\nFeatureCollection, only valid members will be returned in the output\nFeatureCollection - i.e., the output collection may have fewer members than\nthe input, or even be empty.\n\n### Parameters\n\n*   `geojson` **([FeatureCollection][1] | [Geometry][2] | [Feature][3]\\<any>)** input to be buffered\n*   `radius` **[number][4]** distance to draw the buffer (negative values are allowed)\n*   `options` **[Object][5]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** Supports all valid Turf [Units][6]. (optional, default `\"kilometers\"`)\n    *   `options.steps` **[number][4]** number of steps (optional, default `8`)\n\n### Examples\n\n```javascript\nvar point = turf.point([-90.548630, 14.616599]);\nvar buffered = turf.buffer(point, 500, {units: 'miles'});\n\n//addToMap\nvar addToMap = [point, buffered]\n```\n\nReturns **([FeatureCollection][1] | [Feature][3]<([Polygon][7] | [MultiPolygon][8])> | [undefined][9])** buffered features\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[6]: https://turfjs.org/docs/api/types/Units\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[8]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/undefined\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/buffer\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-buffer/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { buffer } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * feature-collection-points: 139.101ms\n * geometry-collection-points: 20.334ms\n * issue-#783: 33.209ms\n * linestring: 6.371ms\n * multi-linestring: 48.786ms\n * multi-point: 7.627ms\n * multi-polygon: 38.921ms\n * negative-buffer: 5.621ms\n * north-latitude-points: 71.144ms\n * northern-polygon: 2.644ms\n * point: 8.155ms\n * polygon-with-holes: 6.965ms\n * feature-collection-points x 722 ops/sec ±14.28% (65 runs sampled)\n * geometry-collection-points x 1,314 ops/sec ±7.87% (66 runs sampled)\n * issue-#783 x 1,404 ops/sec ±6.81% (64 runs sampled)\n * linestring x 2,936 ops/sec ±6.94% (72 runs sampled)\n * multi-linestring x 623 ops/sec ±4.35% (79 runs sampled)\n * multi-point x 1,735 ops/sec ±8.60% (65 runs sampled)\n * multi-polygon x 1,125 ops/sec ±3.93% (80 runs sampled)\n * north-latitude-points x 1,649 ops/sec ±2.09% (86 runs sampled)\n * northern-polygon x 4,658 ops/sec ±3.08% (78 runs sampled)\n * point x 65,020 ops/sec ±1.29% (85 runs sampled)\n * polygon-with-holes x 2,795 ops/sec ±2.98% (81 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-buffer\");\nfor (const { name, geojson } of fixtures) {\n  console.time(name);\n  buffer(geojson, 50, { units: \"miles\" });\n  console.timeEnd(name);\n  suite.add(name, () => buffer(geojson, 50, { units: \"miles\" }));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-buffer/index.d.ts",
    "content": "import {\n  Point,\n  LineString,\n  Polygon,\n  MultiPoint,\n  MultiLineString,\n  MultiPolygon,\n  GeometryObject,\n  GeometryCollection,\n  Feature,\n  FeatureCollection,\n} from \"geojson\";\nimport { Units } from \"@turf/helpers\";\n\ninterface Options {\n  units?: Units;\n  steps?: number;\n}\n\n/**\n * http://turfjs.org/docs/#buffer\n */\ndeclare function buffer(\n  feature:\n    | Feature<GeometryObject>\n    | Point\n    | LineString\n    | Polygon\n    | MultiPoint\n    | MultiLineString\n    | MultiPolygon,\n  radius?: number,\n  options?: Options\n): Feature<Polygon | MultiPolygon> | undefined;\ndeclare function buffer(\n  feature: FeatureCollection<GeometryObject> | GeometryCollection,\n  radius?: number,\n  options?: Options\n): FeatureCollection<Polygon | MultiPolygon> | undefined;\n\nexport { buffer };\nexport default buffer;\n"
  },
  {
    "path": "packages/turf-buffer/index.js",
    "content": "import { center } from \"@turf/center\";\nimport jsts from \"@turf/jsts\";\nimport { geomEach, featureEach } from \"@turf/meta\";\nimport { geoAzimuthalEquidistant } from \"d3-geo\";\nimport {\n  feature,\n  featureCollection,\n  radiansToLength,\n  lengthToRadians,\n  earthRadius,\n} from \"@turf/helpers\";\n\nconst { BufferOp, GeoJSONReader, GeoJSONWriter } = jsts;\n\n/**\n * Calculates a buffer for input features for a given radius.\n *\n * When using a negative radius, the resulting geometry may be invalid if\n * it's too small compared to the radius magnitude. If the input is a\n * FeatureCollection, only valid members will be returned in the output\n * FeatureCollection - i.e., the output collection may have fewer members than\n * the input, or even be empty.\n *\n * @function\n * @param {FeatureCollection|Geometry|Feature<any>} geojson input to be buffered\n * @param {number} radius distance to draw the buffer (negative values are allowed)\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units=\"kilometers\"] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.\n * @param {number} [options.steps=8] number of steps\n * @returns {FeatureCollection|Feature<Polygon|MultiPolygon>|undefined} buffered features\n * @example\n * var point = turf.point([-90.548630, 14.616599]);\n * var buffered = turf.buffer(point, 500, {units: 'miles'});\n *\n * //addToMap\n * var addToMap = [point, buffered]\n */\nfunction buffer(geojson, radius, options) {\n  // Optional params\n  options = options || {};\n\n  // use user supplied options or default values\n  var units = options.units || \"kilometers\";\n  var steps = options.steps || 8;\n\n  // validation\n  if (!geojson) throw new Error(\"geojson is required\");\n  if (typeof options !== \"object\") throw new Error(\"options must be an object\");\n  if (typeof steps !== \"number\") throw new Error(\"steps must be an number\");\n\n  // Allow negative buffers (\"erosion\") or zero-sized buffers (\"repair geometry\")\n  if (radius === undefined) throw new Error(\"radius is required\");\n  if (steps <= 0) throw new Error(\"steps must be greater than 0\");\n\n  var results = [];\n  switch (geojson.type) {\n    case \"GeometryCollection\":\n      geomEach(geojson, function (geometry) {\n        var buffered = bufferFeature(geometry, radius, units, steps);\n        if (buffered) results.push(buffered);\n      });\n      return featureCollection(results);\n    case \"FeatureCollection\":\n      featureEach(geojson, function (feature) {\n        var multiBuffered = bufferFeature(feature, radius, units, steps);\n        if (multiBuffered) {\n          featureEach(multiBuffered, function (buffered) {\n            if (buffered) results.push(buffered);\n          });\n        }\n      });\n      return featureCollection(results);\n  }\n  return bufferFeature(geojson, radius, units, steps);\n}\n\n/**\n * Buffer single Feature/Geometry\n *\n * @private\n * @param {Feature<any>} geojson input to be buffered\n * @param {number} radius distance to draw the buffer\n * @param {Units} [units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.\n * @param {number} [steps=8] number of steps\n * @returns {Feature<Polygon|MultiPolygon>} buffered feature\n */\nfunction bufferFeature(geojson, radius, units, steps) {\n  var properties = geojson.properties || {};\n  var geometry = geojson.type === \"Feature\" ? geojson.geometry : geojson;\n\n  // Geometry Types faster than jsts\n  if (geometry.type === \"GeometryCollection\") {\n    var results = [];\n    geomEach(geojson, function (geometry) {\n      var buffered = bufferFeature(geometry, radius, units, steps);\n      if (buffered) results.push(buffered);\n    });\n    return featureCollection(results);\n  }\n\n  // Project GeoJSON to Azimuthal Equidistant projection (convert to Meters)\n  var projection = defineProjection(geometry);\n  var projected = {\n    type: geometry.type,\n    coordinates: projectCoords(geometry.coordinates, projection),\n  };\n\n  // JSTS buffer operation\n  var reader = new GeoJSONReader();\n  var geom = reader.read(projected);\n  var distance = radiansToLength(lengthToRadians(radius, units), \"meters\");\n  var buffered = BufferOp.bufferOp(geom, distance, steps);\n  var writer = new GeoJSONWriter();\n  buffered = writer.write(buffered);\n\n  // Detect if empty geometries\n  if (coordsIsNaN(buffered.coordinates)) return undefined;\n\n  // Unproject coordinates (convert to Degrees)\n  var result = {\n    type: buffered.type,\n    coordinates: unprojectCoords(buffered.coordinates, projection),\n  };\n\n  return feature(result, properties);\n}\n\n/**\n * Coordinates isNaN\n *\n * @private\n * @param {Array<any>} coords GeoJSON Coordinates\n * @returns {boolean} if NaN exists\n */\nfunction coordsIsNaN(coords) {\n  if (Array.isArray(coords[0])) return coordsIsNaN(coords[0]);\n  return isNaN(coords[0]);\n}\n\n/**\n * Project coordinates to projection\n *\n * @private\n * @param {Array<any>} coords to project\n * @param {GeoProjection} proj D3 Geo Projection\n * @returns {Array<any>} projected coordinates\n */\nfunction projectCoords(coords, proj) {\n  if (typeof coords[0] !== \"object\") return proj(coords);\n  return coords.map(function (coord) {\n    return projectCoords(coord, proj);\n  });\n}\n\n/**\n * Un-Project coordinates to projection\n *\n * @private\n * @param {Array<any>} coords to un-project\n * @param {GeoProjection} proj D3 Geo Projection\n * @returns {Array<any>} un-projected coordinates\n */\nfunction unprojectCoords(coords, proj) {\n  if (typeof coords[0] !== \"object\") return proj.invert(coords);\n  return coords.map(function (coord) {\n    return unprojectCoords(coord, proj);\n  });\n}\n\n/**\n * Define Azimuthal Equidistant projection\n *\n * @private\n * @param {Geometry|Feature<any>} geojson Base projection on center of GeoJSON\n * @returns {GeoProjection} D3 Geo Azimuthal Equidistant Projection\n */\nfunction defineProjection(geojson) {\n  var coords = center(geojson).geometry.coordinates;\n  var rotation = [-coords[0], -coords[1]];\n  return geoAzimuthalEquidistant().rotate(rotation).scale(earthRadius);\n}\n\nexport { buffer };\nexport default buffer;\n"
  },
  {
    "path": "packages/turf-buffer/package.json",
    "content": "{\n  \"name\": \"@turf/buffer\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Creates a buffer around a GeoJSON feature.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Tom MacWright <@tmcw>\",\n    \"Denis Carriere <@DenisCarriere>\",\n    \"Stefano Borghi <@stebogit>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"buffer\",\n    \"offset\",\n    \"polygon\",\n    \"linestring\",\n    \"point\",\n    \"geojson\",\n    \"turf\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/center\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/jsts\": \"^2.7.1\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@turf/projection\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"d3-geo\": \"1.7.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/in/feature-collection-points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [135, -25],\n          [130, -20],\n          [125, -25],\n          [126, -25]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0F0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [130, -27.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [126, -24.5]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/in/geometry-collection-points.geojson",
    "content": "{\n  \"type\": \"GeometryCollection\",\n  \"geometries\": [\n    {\n      \"type\": \"MultiPoint\",\n      \"coordinates\": [\n        [135, -25],\n        [130, -20],\n        [125, -25]\n      ]\n    },\n    {\n      \"type\": \"Point\",\n      \"coordinates\": [130, -27.5]\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/in/issue-#783.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"radius\": 25,\n    \"units\": \"meters\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.946893, 52.509638],\n            [4.947357, 52.509492],\n            [4.947427, 52.509472],\n            [4.947761, 52.509428],\n            [4.947331, 52.509564],\n            [4.946736, 52.509714],\n            [4.946893, 52.509638]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.946736, 52.509714]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.947761, 52.509428]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/in/issue-#801-Ecuador.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"radius\": 1,\n    \"units\": \"miles\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.50966334342957, -0.22245649236909099]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78.5096874833107, -0.22245917455788858],\n            [-78.50966066122055, -0.22246453893548376],\n            [-78.5096526145935, -0.2224484458026982],\n            [-78.50967675447464, -0.2224403992362927],\n            [-78.5096874833107, -0.22245917455788858]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/in/issue-#801.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"radius\": 1,\n    \"units\": \"miles\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#555555\",\n        \"stroke-width\": 2,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#0000ff\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [5.832694172859192, 50.74689044349633],\n            [5.832699537277222, 50.74686838040257],\n            [5.832734405994415, 50.746881957692274],\n            [5.832734405994415, 50.746898929298894],\n            [5.832694172859192, 50.74689044349633]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5.83271563053131, 50.746887049174894]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/in/issue-#815.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 850,\n    \"units\": \"meters\"\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [7.163085937499999, 51.944264879028765],\n      [9.404296875, 52.01193653675363],\n      [10.283203125, 52.72298552457069],\n      [11.3818359375, 52.72298552457069],\n      [12.436523437499998, 52.522905940278065]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/in/issue-#900.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-86.85, 21.025],\n      [-86.53333, 22.39167],\n      [-86.45, 22.765],\n      [-86.35, 23.21],\n      [-86.15, 24.04],\n      [-85.33333, 25.34167],\n      [-85.26667, 26.03],\n      [-85.23333, 26.38333],\n      [-85.18333, 26.5],\n      [-84.78333, 27.49333],\n      [-83.41667, 28],\n      [-83.21667, 28.175],\n      [-82.63333, 28.69],\n      [-82.6, 29.43],\n      [-82.55, 30.505],\n      [-81.18333, 32.14667],\n      [-79.65, 34.23333],\n      [-79.48333, 34.54333],\n      [-78.93333, 35.56667],\n      [-78.78333, 35.87333],\n      [-78.53333, 36.15833],\n      [-78.16667, 36.565],\n      [-77.9, 36.86167],\n      [-77.31667, 37.50167],\n      [-76.83333, 37.97],\n      [-76.65, 38.1],\n      [-76.4, 38.28833],\n      [-76.01667, 38.695],\n      [-75.91667, 38.80333],\n      [-75.78333, 38.94333],\n      [-75.66667, 39.06167],\n      [-75.6, 39.13833],\n      [-75.51667, 39.23167],\n      [-74.41667, 39.81667],\n      [-73.7, 40.205],\n      [-72.31667, 40.91833],\n      [-71.56667, 41.16667],\n      [-70.01667, 41.28167],\n      [-67, 42.63333],\n      [-56.46667, 45.60333],\n      [-52, 46.5],\n      [-50.45, 46.89],\n      [-50, 47],\n      [-42.86667, 47.805],\n      [-40, 48],\n      [-38.03333, 48.48],\n      [-30, 50],\n      [-27.85, 50.29],\n      [-20, 51],\n      [-19.33333, 51.01167],\n      [-15, 51],\n      [-14, 51],\n      [-8.5, 51],\n      [-8.25, 51],\n      [-8, 51],\n      [-5.88333, 50.935],\n      [-3.98333, 50.84333],\n      [-2.65, 50.76],\n      [-2.51667, 50.75],\n      [-2.11667, 50.675],\n      [-1.6, 50.575],\n      [-0.93333, 50.82],\n      [-0.75, 50.855],\n      [-0.08333, 50.88667],\n      [-0.18333, 50.985],\n      [-0.18333, 51.14833]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/in/issue-#916.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [124.67285156250001, -24.846565348219734],\n            [125.63964843750001, -25.36388227274024],\n            [126.21093749999999, -23.644524198573677],\n            [129.9462890625, -21.493963563064455],\n            [132.2314453125, -22.187404991398775],\n            [133.0224609375, -25.28443774698303],\n            [130.9130859375, -26.509904531413916],\n            [126.474609375, -26.706359857633526],\n            [124.892578125, -25.918526162075153],\n            [125.3759765625, -27.877928333679495],\n            [130.9130859375, -27.877928333679495],\n            [134.38476562499997, -25.403584973186703],\n            [133.41796874999997, -21.002471054356715],\n            [129.7265625, -20.34462694382967],\n            [124.67285156250001, -23.40276490540795],\n            [124.67285156250001, -24.846565348219734]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/in/linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [121.11328124999999, -31.57853542647337],\n      [126.65039062499999, -24.367113562651262],\n      [132.5390625, -20.797201434306984],\n      [137.197265625, -20.385825381874263],\n      [142.294921875, -22.67484735118852],\n      [146.865234375, -28.690587654250685],\n      [147.12890625, -31.42866311735861]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/in/multi-linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [122.03613281249999, -26.74561038219901],\n        [127.08984375000001, -23.443088931121775],\n        [132.4072265625, -21.453068633086772],\n        [138.9990234375, -22.024545601240337],\n        [140.9765625, -22.67484735118852]\n      ],\n      [\n        [125.5517578125, -18.521283325496263],\n        [130.6494140625, -26.588527147308614],\n        [134.208984375, -27.17646913189887]\n      ],\n      [\n        [122.51953124999999, -22.024545601240337],\n        [128.9794921875, -19.062117883514652],\n        [134.5166015625, -17.936928637549432],\n        [137.4169921875, -19.84939395842278],\n        [138.427734375, -23.68477416688374],\n        [133.59375, -28.38173504322308]\n      ],\n      [\n        [144.3603515625, -22.55314747840318],\n        [144.580078125, -25.403584973186703],\n        [142.11914062499997, -29.458731185355315],\n        [139.7900390625, -31.316101383495635]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/in/multi-point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 300\n  },\n  \"geometry\": {\n    \"type\": \"MultiPoint\",\n    \"coordinates\": [\n      [145, -25],\n      [130, -20],\n      [125, -25]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/in/multi-polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [121.9921875, -31.466153715024284],\n          [134.4287109375, -31.466153715024284],\n          [134.4287109375, -18.729501999072138],\n          [121.9921875, -18.729501999072138],\n          [121.9921875, -31.466153715024284]\n        ]\n      ],\n      [\n        [\n          [125.3759765625, -15.961329081596647],\n          [126.826171875, -18.22935133838667],\n          [132.451171875, -18.062312304546715],\n          [135.703125, -14.519780046326085],\n          [139.6142578125, -18.60460138845525],\n          [134.9560546875, -24.607069137709694],\n          [134.7802734375, -32.10118973232094],\n          [142.998046875, -33.100745405144245],\n          [143.173828125, -16.84660510639629],\n          [136.7138671875, -12.46876014482322],\n          [131.2646484375, -13.88074584202559],\n          [125.3759765625, -15.961329081596647]\n        ]\n      ],\n      [\n        [\n          [129.111328125, -36.27970720524016],\n          [131.8798828125, -36.27970720524016],\n          [131.8798828125, -34.234512362369856],\n          [129.111328125, -34.234512362369856],\n          [129.111328125, -36.27970720524016]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/in/negative-buffer.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": -200,\n    \"units\": \"miles\"\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [133.90136718749997, -14.647368383896618],\n        [126.73828125, -19.352610894378625],\n        [128.49609375, -27.371767300523032],\n        [134.1650390625, -30.789036751261136],\n        [143.7890625, -30.789036751261136],\n        [144.9755859375, -26.391869671769022],\n        [144.31640625, -17.14079039331664],\n        [133.90136718749997, -14.647368383896618]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/in/north-latitude-points.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPoint\",\n    \"coordinates\": [\n      [-94.97955322265625, 74.74046209428195],\n      [-94.90264892578125, 74.68325030051861],\n      [-94.06494140625, 74.7209322003536]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/in/northern-polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-94.81887817382812, 74.69068515369659],\n        [-94.79827880859375, 74.71133916265154],\n        [-94.82437133789062, 74.73630499357218],\n        [-94.89852905273438, 74.73648576006866],\n        [-94.976806640625, 74.72400796764163],\n        [-94.91363525390625, 74.69032255967197],\n        [-94.86488342285156, 74.68959734647507],\n        [-94.81887817382812, 74.69068515369659]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/in/point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [135, -25]\n  }\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/in/polygon-with-holes.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [124.18945312500001, -24.607069137709694],\n        [128.49609375, -31.278550858946517],\n        [138.33984375, -31.728167146023935],\n        [144.84375, -23.40276490540795],\n        [141.416015625, -16.804541076383455],\n        [135.703125, -13.667338259654947],\n        [130.4296875, -13.581920900545844],\n        [124.892578125, -13.923403897723334],\n        [124.18945312500001, -24.607069137709694]\n      ],\n      [\n        [129.79296875, -27.019984007982554],\n        [139.0869140625, -27.019984007982554],\n        [139.0869140625, -17.392579271057766],\n        [127.79296875, -17.392579271057766],\n        [129.79296875, -27.019984007982554]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/out/feature-collection-points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#F00\",\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [135.797556, -24.973],\n              [135.775825, -24.832695],\n              [135.724418, -24.698874],\n              [135.645385, -24.576649],\n              [135.541804, -24.470675],\n              [135.41766, -24.384981],\n              [135.27769, -24.322819],\n              [135.127207, -24.286549],\n              [134.971906, -24.277547],\n              [134.817657, -24.296161],\n              [134.670296, -24.34169],\n              [134.535409, -24.412415],\n              [134.418137, -24.505659],\n              [134.322976, -24.617882],\n              [134.253614, -24.744813],\n              [134.212779, -24.881605],\n              [134.202129, -25.02302],\n              [134.222174, -25.163624],\n              [134.272241, -25.298],\n              [134.350485, -25.420951],\n              [134.453948, -25.527712],\n              [134.578662, -25.614134],\n              [134.719804, -25.676853],\n              [134.871883, -25.713426],\n              [135.02896, -25.72243],\n              [135.184895, -25.703518],\n              [135.333597, -25.657434],\n              [135.469273, -25.585982],\n              [135.586664, -25.491951],\n              [135.681254, -25.379001],\n              [135.749443, -25.251512],\n              [135.788683, -25.114417],\n              [135.797556, -24.973]\n            ]\n          ],\n          [\n            [\n              [130.76985, -19.998205],\n              [130.754356, -19.8571],\n              [130.709956, -19.721545],\n              [130.638423, -19.596727],\n              [130.542549, -19.487409],\n              [130.42603, -19.397753],\n              [130.293328, -19.331168],\n              [130.149498, -19.29018],\n              [130, -19.276342],\n              [129.850502, -19.29018],\n              [129.706672, -19.331168],\n              [129.57397, -19.397753],\n              [129.457451, -19.487409],\n              [129.361577, -19.596727],\n              [129.290044, -19.721545],\n              [129.245644, -19.8571],\n              [129.23015, -19.998205],\n              [129.244236, -20.139447],\n              [129.287441, -20.275391],\n              [129.358176, -20.400791],\n              [129.453771, -20.510796],\n              [129.570569, -20.601138],\n              [129.704069, -20.668306],\n              [129.849093, -20.709684],\n              [130, -20.723658],\n              [130.150907, -20.709684],\n              [130.295931, -20.668306],\n              [130.429431, -20.601138],\n              [130.546229, -20.510796],\n              [130.641824, -20.400791],\n              [130.712559, -20.275391],\n              [130.755764, -20.139447],\n              [130.76985, -19.998205]\n            ]\n          ],\n          [\n            [\n              [125.500752, -24.441189],\n              [125.464591, -24.412415],\n              [125.329704, -24.34169],\n              [125.182343, -24.296161],\n              [125.028094, -24.277547],\n              [124.872793, -24.286549],\n              [124.72231, -24.322819],\n              [124.58234, -24.384981],\n              [124.458196, -24.470675],\n              [124.354615, -24.576649],\n              [124.275582, -24.698874],\n              [124.224175, -24.832695],\n              [124.202444, -24.973],\n              [124.211317, -25.114417],\n              [124.250557, -25.251512],\n              [124.318746, -25.379001],\n              [124.413336, -25.491951],\n              [124.530727, -25.585982],\n              [124.666403, -25.657434],\n              [124.815105, -25.703518],\n              [124.97104, -25.72243],\n              [125.128117, -25.713426],\n              [125.280196, -25.676853],\n              [125.421338, -25.614134],\n              [125.498948, -25.56038],\n              [125.535415, -25.589163],\n              [125.671669, -25.659783],\n              [125.820744, -25.704942],\n              [125.97683, -25.722872],\n              [126.13383, -25.712869],\n              [126.285606, -25.675319],\n              [126.426234, -25.611685],\n              [126.550243, -25.524447],\n              [126.65284, -25.417],\n              [126.730094, -25.293518],\n              [126.779087, -25.158788],\n              [126.798017, -25.018017],\n              [126.786254, -24.876627],\n              [126.74435, -24.740051],\n              [126.674003, -24.613516],\n              [126.577979, -24.501853],\n              [126.459993, -24.40931],\n              [126.324569, -24.339401],\n              [126.176863, -24.294774],\n              [126.022477, -24.277114],\n              [125.867248, -24.287084],\n              [125.717046, -24.324304],\n              [125.577555, -24.387361],\n              [125.500752, -24.441189]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#F00\",\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130.815827, -27.497621],\n            [130.799128, -27.356539],\n            [130.751842, -27.221049],\n            [130.675881, -27.096326],\n            [130.574227, -26.987119],\n            [130.450806, -26.897575],\n            [130.310336, -26.831084],\n            [130.15815, -26.790158],\n            [130, -26.776342],\n            [129.84185, -26.790158],\n            [129.689664, -26.831084],\n            [129.549194, -26.897575],\n            [129.425773, -26.987119],\n            [129.324119, -27.096326],\n            [129.248158, -27.221049],\n            [129.200872, -27.356539],\n            [129.184173, -27.497621],\n            [129.198819, -27.638884],\n            [129.244365, -27.77489],\n            [129.319164, -27.900385],\n            [129.420409, -28.010502],\n            [129.544238, -28.100956],\n            [129.68587, -28.16822],\n            [129.839797, -28.209661],\n            [130, -28.223658],\n            [130.160203, -28.209661],\n            [130.31413, -28.16822],\n            [130.455762, -28.100956],\n            [130.579591, -28.010502],\n            [130.680836, -27.900385],\n            [130.755635, -27.77489],\n            [130.801181, -27.638884],\n            [130.815827, -27.497621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#F00\",\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126.795254, -24.497917],\n            [126.7791, -24.356824],\n            [126.733111, -24.221301],\n            [126.659135, -24.096529],\n            [126.560068, -23.987266],\n            [126.439734, -23.897666],\n            [126.302737, -23.831126],\n            [126.154285, -23.790169],\n            [126, -23.776342],\n            [125.845715, -23.790169],\n            [125.697263, -23.831126],\n            [125.560266, -23.897666],\n            [125.439932, -23.987266],\n            [125.340865, -24.096529],\n            [125.266889, -24.221301],\n            [125.2209, -24.356824],\n            [125.204746, -24.497917],\n            [125.219148, -24.639169],\n            [125.263653, -24.775144],\n            [125.336636, -24.900591],\n            [125.435355, -25.010651],\n            [125.556036, -25.101049],\n            [125.694026, -25.168263],\n            [125.843963, -25.209673],\n            [126, -25.223658],\n            [126.156037, -25.209673],\n            [126.305974, -25.168263],\n            [126.443964, -25.101049],\n            [126.564645, -25.010651],\n            [126.663364, -24.900591],\n            [126.736347, -24.775144],\n            [126.780852, -24.639169],\n            [126.795254, -24.497917]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [135, -25],\n          [130, -20],\n          [125, -25],\n          [126, -25]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [130, -27.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [126, -24.5]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/out/geometry-collection-points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [135.797556, -24.973],\n              [135.775825, -24.832695],\n              [135.724418, -24.698874],\n              [135.645385, -24.576649],\n              [135.541804, -24.470675],\n              [135.41766, -24.384981],\n              [135.27769, -24.322819],\n              [135.127207, -24.286549],\n              [134.971906, -24.277547],\n              [134.817657, -24.296161],\n              [134.670296, -24.34169],\n              [134.535409, -24.412415],\n              [134.418137, -24.505659],\n              [134.322976, -24.617882],\n              [134.253614, -24.744813],\n              [134.212779, -24.881605],\n              [134.202129, -25.02302],\n              [134.222174, -25.163624],\n              [134.272241, -25.298],\n              [134.350485, -25.420951],\n              [134.453948, -25.527712],\n              [134.578662, -25.614134],\n              [134.719804, -25.676853],\n              [134.871883, -25.713426],\n              [135.02896, -25.72243],\n              [135.184895, -25.703518],\n              [135.333597, -25.657434],\n              [135.469273, -25.585982],\n              [135.586664, -25.491951],\n              [135.681254, -25.379001],\n              [135.749443, -25.251512],\n              [135.788683, -25.114417],\n              [135.797556, -24.973]\n            ]\n          ],\n          [\n            [\n              [130.76985, -19.998205],\n              [130.754356, -19.8571],\n              [130.709956, -19.721545],\n              [130.638423, -19.596727],\n              [130.542549, -19.487409],\n              [130.42603, -19.397753],\n              [130.293328, -19.331168],\n              [130.149498, -19.29018],\n              [130, -19.276342],\n              [129.850502, -19.29018],\n              [129.706672, -19.331168],\n              [129.57397, -19.397753],\n              [129.457451, -19.487409],\n              [129.361577, -19.596727],\n              [129.290044, -19.721545],\n              [129.245644, -19.8571],\n              [129.23015, -19.998205],\n              [129.244236, -20.139447],\n              [129.287441, -20.275391],\n              [129.358176, -20.400791],\n              [129.453771, -20.510796],\n              [129.570569, -20.601138],\n              [129.704069, -20.668306],\n              [129.849093, -20.709684],\n              [130, -20.723658],\n              [130.150907, -20.709684],\n              [130.295931, -20.668306],\n              [130.429431, -20.601138],\n              [130.546229, -20.510796],\n              [130.641824, -20.400791],\n              [130.712559, -20.275391],\n              [130.755764, -20.139447],\n              [130.76985, -19.998205]\n            ]\n          ],\n          [\n            [\n              [125.797871, -25.02302],\n              [125.787221, -24.881605],\n              [125.746386, -24.744813],\n              [125.677024, -24.617882],\n              [125.581863, -24.505659],\n              [125.464591, -24.412415],\n              [125.329704, -24.34169],\n              [125.182343, -24.296161],\n              [125.028094, -24.277547],\n              [124.872793, -24.286549],\n              [124.72231, -24.322819],\n              [124.58234, -24.384981],\n              [124.458196, -24.470675],\n              [124.354615, -24.576649],\n              [124.275582, -24.698874],\n              [124.224175, -24.832695],\n              [124.202444, -24.973],\n              [124.211317, -25.114417],\n              [124.250557, -25.251512],\n              [124.318746, -25.379001],\n              [124.413336, -25.491951],\n              [124.530727, -25.585982],\n              [124.666403, -25.657434],\n              [124.815105, -25.703518],\n              [124.97104, -25.72243],\n              [125.128117, -25.713426],\n              [125.280196, -25.676853],\n              [125.421338, -25.614134],\n              [125.546052, -25.527712],\n              [125.649515, -25.420951],\n              [125.727759, -25.298],\n              [125.777826, -25.163624],\n              [125.797871, -25.02302]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130.815827, -27.497621],\n            [130.799128, -27.356539],\n            [130.751842, -27.221049],\n            [130.675881, -27.096326],\n            [130.574227, -26.987119],\n            [130.450806, -26.897575],\n            [130.310336, -26.831084],\n            [130.15815, -26.790158],\n            [130, -26.776342],\n            [129.84185, -26.790158],\n            [129.689664, -26.831084],\n            [129.549194, -26.897575],\n            [129.425773, -26.987119],\n            [129.324119, -27.096326],\n            [129.248158, -27.221049],\n            [129.200872, -27.356539],\n            [129.184173, -27.497621],\n            [129.198819, -27.638884],\n            [129.244365, -27.77489],\n            [129.319164, -27.900385],\n            [129.420409, -28.010502],\n            [129.544238, -28.100956],\n            [129.68587, -28.16822],\n            [129.839797, -28.209661],\n            [130, -28.223658],\n            [130.160203, -28.209661],\n            [130.31413, -28.16822],\n            [130.455762, -28.100956],\n            [130.579591, -28.010502],\n            [130.680836, -27.900385],\n            [130.755635, -27.77489],\n            [130.801181, -27.638884],\n            [130.815827, -27.497621]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/out/issue-#783.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.946663, 52.509462],\n            [4.946723, 52.509438],\n            [4.947187, 52.509292],\n            [4.9472, 52.509288],\n            [4.94727, 52.509268],\n            [4.947349, 52.509252],\n            [4.947683, 52.509208],\n            [4.947753, 52.509203],\n            [4.947824, 52.509206],\n            [4.947892, 52.509218],\n            [4.947955, 52.509237],\n            [4.948012, 52.509263],\n            [4.948059, 52.509295],\n            [4.948095, 52.509332],\n            [4.948119, 52.509372],\n            [4.94813, 52.509415],\n            [4.948127, 52.509458],\n            [4.948111, 52.5095],\n            [4.948082, 52.509539],\n            [4.948042, 52.509574],\n            [4.947991, 52.509604],\n            [4.947931, 52.509628],\n            [4.947501, 52.509764],\n            [4.947472, 52.509772],\n            [4.946877, 52.509922],\n            [4.94681, 52.509934],\n            [4.94674, 52.509939],\n            [4.94667, 52.509935],\n            [4.946602, 52.509924],\n            [4.946539, 52.509904],\n            [4.946484, 52.509878],\n            [4.946437, 52.509846],\n            [4.946401, 52.509809],\n            [4.946378, 52.509769],\n            [4.946367, 52.509726],\n            [4.94637, 52.509684],\n            [4.946386, 52.509642],\n            [4.946415, 52.509603],\n            [4.946455, 52.509568],\n            [4.946506, 52.509538],\n            [4.946663, 52.509462]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.947105, 52.509714],\n            [4.947098, 52.509758],\n            [4.947077, 52.5098],\n            [4.947043, 52.509839],\n            [4.946997, 52.509873],\n            [4.946941, 52.509901],\n            [4.946877, 52.509922],\n            [4.946808, 52.509935],\n            [4.946736, 52.509939],\n            [4.946664, 52.509935],\n            [4.946595, 52.509922],\n            [4.946531, 52.509901],\n            [4.946475, 52.509873],\n            [4.946429, 52.509839],\n            [4.946395, 52.5098],\n            [4.946374, 52.509758],\n            [4.946367, 52.509714],\n            [4.946374, 52.50967],\n            [4.946395, 52.509628],\n            [4.946429, 52.509589],\n            [4.946475, 52.509555],\n            [4.946531, 52.509527],\n            [4.946595, 52.509506],\n            [4.946664, 52.509493],\n            [4.946736, 52.509489],\n            [4.946808, 52.509493],\n            [4.946877, 52.509506],\n            [4.946941, 52.509527],\n            [4.946997, 52.509555],\n            [4.947043, 52.509589],\n            [4.947077, 52.509628],\n            [4.947098, 52.50967],\n            [4.947105, 52.509714]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.94813, 52.509428],\n            [4.948123, 52.509472],\n            [4.948102, 52.509514],\n            [4.948068, 52.509553],\n            [4.948022, 52.509587],\n            [4.947966, 52.509615],\n            [4.947902, 52.509636],\n            [4.947833, 52.509649],\n            [4.947761, 52.509653],\n            [4.947689, 52.509649],\n            [4.94762, 52.509636],\n            [4.947556, 52.509615],\n            [4.9475, 52.509587],\n            [4.947454, 52.509553],\n            [4.94742, 52.509514],\n            [4.947399, 52.509472],\n            [4.947392, 52.509428],\n            [4.947399, 52.509384],\n            [4.94742, 52.509342],\n            [4.947454, 52.509303],\n            [4.9475, 52.509269],\n            [4.947556, 52.509241],\n            [4.94762, 52.50922],\n            [4.947689, 52.509207],\n            [4.947761, 52.509203],\n            [4.947833, 52.509207],\n            [4.947902, 52.50922],\n            [4.947966, 52.509241],\n            [4.948022, 52.509269],\n            [4.948068, 52.509303],\n            [4.948102, 52.509342],\n            [4.948123, 52.509384],\n            [4.94813, 52.509428]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"marker-color\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.946893, 52.509638],\n            [4.947357, 52.509492],\n            [4.947427, 52.509472],\n            [4.947761, 52.509428],\n            [4.947331, 52.509564],\n            [4.946736, 52.509714],\n            [4.946893, 52.509638]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"marker-color\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.946736, 52.509714]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"marker-color\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.947761, 52.509428]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/out/issue-#801-Ecuador.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78.49519, -0.222456],\n            [-78.495468, -0.219633],\n            [-78.496292, -0.216918],\n            [-78.497629, -0.214416],\n            [-78.499429, -0.212222],\n            [-78.501622, -0.210422],\n            [-78.504125, -0.209085],\n            [-78.50684, -0.208261],\n            [-78.509663, -0.207983],\n            [-78.512487, -0.208261],\n            [-78.515202, -0.209085],\n            [-78.517704, -0.210422],\n            [-78.519897, -0.212222],\n            [-78.521697, -0.214416],\n            [-78.523035, -0.216918],\n            [-78.523859, -0.219633],\n            [-78.524137, -0.222456],\n            [-78.523859, -0.22528],\n            [-78.523035, -0.227995],\n            [-78.521697, -0.230497],\n            [-78.519897, -0.232691],\n            [-78.517704, -0.23449],\n            [-78.515202, -0.235828],\n            [-78.512487, -0.236652],\n            [-78.509663, -0.23693],\n            [-78.50684, -0.236652],\n            [-78.504125, -0.235828],\n            [-78.501622, -0.23449],\n            [-78.499429, -0.232691],\n            [-78.497629, -0.230497],\n            [-78.496292, -0.227995],\n            [-78.495468, -0.22528],\n            [-78.49519, -0.222456]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78.522254, -0.215278],\n            [-78.52338, -0.217771],\n            [-78.524018, -0.22043],\n            [-78.524144, -0.223163],\n            [-78.523753, -0.22587],\n            [-78.52286, -0.228455],\n            [-78.521497, -0.230826],\n            [-78.519712, -0.232898],\n            [-78.51757, -0.234598],\n            [-78.515145, -0.235864],\n            [-78.512526, -0.236651],\n            [-78.512499, -0.236657],\n            [-78.50982, -0.236937],\n            [-78.507136, -0.236716],\n            [-78.504539, -0.236001],\n            [-78.50212, -0.234818],\n            [-78.499961, -0.233207],\n            [-78.498139, -0.231224],\n            [-78.496715, -0.228937],\n            [-78.496707, -0.228921],\n            [-78.495717, -0.226356],\n            [-78.495229, -0.223649],\n            [-78.495263, -0.220899],\n            [-78.495815, -0.218205],\n            [-78.496868, -0.215664],\n            [-78.498382, -0.213369],\n            [-78.500303, -0.211401],\n            [-78.502561, -0.209832],\n            [-78.505076, -0.208718],\n            [-78.5051, -0.20871],\n            [-78.507864, -0.208081],\n            [-78.510698, -0.208003],\n            [-78.513493, -0.208479],\n            [-78.516142, -0.209491],\n            [-78.518542, -0.211],\n            [-78.520602, -0.212948],\n            [-78.522243, -0.21526],\n            [-78.522254, -0.215278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"marker-color\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.50966334342957, -0.22245649236909099]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"marker-color\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78.5096874833107, -0.22245917455788858],\n            [-78.50966066122055, -0.22246453893548376],\n            [-78.5096526145935, -0.2224484458026982],\n            [-78.50967675447464, -0.2224403992362927],\n            [-78.5096874833107, -0.22245917455788858]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/out/issue-#801.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 2,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [5.825459, 50.760621],\n            [5.821286, 50.759436],\n            [5.81757, 50.757749],\n            [5.814458, 50.755629],\n            [5.812076, 50.753159],\n            [5.810518, 50.750439],\n            [5.809846, 50.747577],\n            [5.810088, 50.744688],\n            [5.810093, 50.744665],\n            [5.811212, 50.741909],\n            [5.813162, 50.739344],\n            [5.815867, 50.73707],\n            [5.819223, 50.735175],\n            [5.823099, 50.733732],\n            [5.827347, 50.732797],\n            [5.831801, 50.732406],\n            [5.836291, 50.732575],\n            [5.840641, 50.733296],\n            [5.844684, 50.734542],\n            [5.844719, 50.734555],\n            [5.848414, 50.736345],\n            [5.85146, 50.738572],\n            [5.853731, 50.741142],\n            [5.855133, 50.74395],\n            [5.855608, 50.74688],\n            [5.855608, 50.746897],\n            [5.855201, 50.74962],\n            [5.853991, 50.752245],\n            [5.852022, 50.75468],\n            [5.849364, 50.756837],\n            [5.846112, 50.758639],\n            [5.842382, 50.760022],\n            [5.838307, 50.760936],\n            [5.834032, 50.761349],\n            [5.829712, 50.761245],\n            [5.825499, 50.760629],\n            [5.825459, 50.760621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [5.855589, 50.746885],\n            [5.855151, 50.749708],\n            [5.853851, 50.752424],\n            [5.851738, 50.754926],\n            [5.848893, 50.75712],\n            [5.845427, 50.75892],\n            [5.841471, 50.760258],\n            [5.837179, 50.761082],\n            [5.832716, 50.76136],\n            [5.828252, 50.761082],\n            [5.82396, 50.760258],\n            [5.820005, 50.75892],\n            [5.816538, 50.75712],\n            [5.813694, 50.754926],\n            [5.811581, 50.752424],\n            [5.81028, 50.749708],\n            [5.809842, 50.746885],\n            [5.810283, 50.744061],\n            [5.811586, 50.741347],\n            [5.8137, 50.738845],\n            [5.816545, 50.736652],\n            [5.820011, 50.734852],\n            [5.823965, 50.733515],\n            [5.828255, 50.732692],\n            [5.832716, 50.732414],\n            [5.837177, 50.732692],\n            [5.841466, 50.733515],\n            [5.84542, 50.734852],\n            [5.848886, 50.736652],\n            [5.851731, 50.738845],\n            [5.853846, 50.741347],\n            [5.855148, 50.744061],\n            [5.855589, 50.746885]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 2,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"marker-color\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [5.832694172859192, 50.74689044349633],\n            [5.832699537277222, 50.74686838040257],\n            [5.832734405994415, 50.746881957692274],\n            [5.832734405994415, 50.746898929298894],\n            [5.832694172859192, 50.74689044349633]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"marker-color\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5.83271563053131, 50.746887049174894]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/out/issue-#815.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 850,\n        \"units\": \"meters\",\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.404713, 52.004297],\n            [9.40692, 52.004465],\n            [9.409044, 52.004873],\n            [9.411015, 52.005507],\n            [9.41277, 52.006348],\n            [9.414254, 52.007368],\n            [10.289477, 52.71537],\n            [11.37991, 52.71535],\n            [12.432689, 52.515627],\n            [12.435096, 52.515312],\n            [12.437558, 52.515289],\n            [12.439981, 52.515558],\n            [12.44227, 52.51611],\n            [12.444339, 52.516922],\n            [12.446108, 52.517965],\n            [12.447508, 52.519197],\n            [12.448487, 52.520572],\n            [12.449005, 52.522037],\n            [12.449044, 52.523535],\n            [12.448602, 52.525009],\n            [12.447696, 52.526402],\n            [12.44636, 52.527661],\n            [12.444646, 52.528737],\n            [12.44262, 52.529589],\n            [12.440359, 52.530184],\n            [11.385514, 52.730298],\n            [11.381932, 52.730629],\n            [10.283107, 52.730629],\n            [10.280823, 52.730493],\n            [10.278617, 52.730107],\n            [10.276563, 52.729486],\n            [10.274729, 52.72865],\n            [10.273175, 52.727627],\n            [9.397908, 52.019453],\n            [7.162288, 51.951892],\n            [7.159889, 51.95165],\n            [7.157612, 51.951123],\n            [7.155546, 51.950333],\n            [7.15377, 51.94931],\n            [7.152352, 51.948093],\n            [7.151347, 51.946728],\n            [7.150793, 51.94527],\n            [7.150711, 51.943772],\n            [7.151105, 51.942294],\n            [7.151959, 51.940891],\n            [7.153241, 51.939618],\n            [7.154901, 51.938523],\n            [7.156875, 51.937649],\n            [7.159088, 51.93703],\n            [7.161454, 51.936688],\n            [7.163883, 51.936638],\n            [9.404713, 52.004297]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 850,\n        \"units\": \"meters\",\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"marker-color\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [7.163085937499999, 51.944264879028765],\n          [9.404296875, 52.01193653675363],\n          [10.283203125, 52.72298552457069],\n          [11.3818359375, 52.72298552457069],\n          [12.436523437499998, 52.522905940278065]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/out/issue-#900.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.781978, 22.298424],\n            [-85.781276, 22.301429],\n            [-85.695322, 22.674135],\n            [-85.593371, 23.113101],\n            [-85.413961, 23.834033],\n            [-84.647752, 25.037937],\n            [-84.580175, 25.174848],\n            [-84.546767, 25.319495],\n            [-84.474485, 26.008813],\n            [-84.447989, 26.266547],\n            [-84.436985, 26.291701],\n            [-84.431297, 26.305102],\n            [-84.146848, 26.99621],\n            [-83.128683, 27.368986],\n            [-82.979773, 27.438288],\n            [-82.849108, 27.531444],\n            [-82.64844, 27.705384],\n            [-82.643585, 27.709618],\n            [-82.058224, 28.221519],\n            [-81.960679, 28.323011],\n            [-81.886155, 28.437263],\n            [-81.837318, 28.560361],\n            [-81.815969, 28.688063],\n            [-81.776017, 29.427353],\n            [-81.726796, 30.299168],\n            [-80.489897, 31.763904],\n            [-80.456336, 31.80622],\n            [-78.905548, 33.884982],\n            [-78.850951, 33.968979],\n            [-78.681124, 34.278244],\n            [-78.680034, 34.280234],\n            [-78.119364, 35.301117],\n            [-78.107153, 35.324315],\n            [-77.992635, 35.552933],\n            [-77.803532, 35.765402],\n            [-77.43621, 36.167297],\n            [-77.433531, 36.170231],\n            [-77.164954, 36.464945],\n            [-76.591254, 37.085905],\n            [-76.163817, 37.49513],\n            [-76.031595, 37.587953],\n            [-76.009537, 37.603927],\n            [-75.758955, 37.790835],\n            [-75.654889, 37.882661],\n            [-75.268384, 38.28711],\n            [-75.261407, 38.294472],\n            [-75.164106, 38.398406],\n            [-75.037393, 38.529636],\n            [-74.924009, 38.643126],\n            [-74.891665, 38.67753],\n            [-74.840396, 38.735609],\n            [-73.88062, 39.241186],\n            [-73.865287, 39.249333],\n            [-73.153991, 39.631774],\n            [-71.847088, 40.30122],\n            [-71.313518, 40.476925],\n            [-69.926561, 40.577223],\n            [-69.706462, 40.611465],\n            [-69.503107, 40.682775],\n            [-66.541592, 42.001943],\n            [-56.145818, 44.917837],\n            [-51.731722, 45.801252],\n            [-51.631093, 45.823282],\n            [-50.096296, 46.208571],\n            [-50.093188, 46.209332],\n            [-49.714304, 46.301881],\n            [-42.740444, 47.08652],\n            [-39.914147, 47.279184],\n            [-39.628707, 47.322726],\n            [-37.688819, 47.796385],\n            [-29.76642, 49.299121],\n            [-27.65547, 49.585398],\n            [-19.953135, 50.290466],\n            [-19.332349, 50.301932],\n            [-15.061331, 50.295463],\n            [-15.019343, 50.295194],\n            [-14.033475, 50.296457],\n            [-13.987355, 50.296921],\n            [-8.564979, 50.304463],\n            [-8.523582, 50.304103],\n            [-8.277108, 50.304468],\n            [-8.273464, 50.304473],\n            [-8.04695, 50.304828],\n            [-5.981137, 50.244418],\n            [-4.109967, 50.157158],\n            [-2.801869, 50.07763],\n            [-2.773207, 50.07554],\n            [-2.472277, 50.019626],\n            [-1.9627, 49.922088],\n            [-1.724106, 49.892755],\n            [-1.47996, 49.895273],\n            [-1.241353, 49.929473],\n            [-1.019129, 49.993753],\n            [-0.507181, 50.182376],\n            [-0.016134, 50.206147],\n            [0.21236, 50.230852],\n            [0.428867, 50.282647],\n            [0.624634, 50.359411],\n            [0.791669, 50.458023],\n            [0.923034, 50.574472],\n            [1.013127, 50.704008],\n            [1.057926, 50.841319],\n            [1.055193, 50.980731],\n            [1.004628, 51.116432],\n            [0.967487, 51.164994],\n            [0.950135, 51.288093],\n            [0.887702, 51.415723],\n            [0.783609, 51.533267],\n            [0.641589, 51.63613],\n            [0.46696, 51.720249],\n            [0.266442, 51.782263],\n            [0.047902, 51.819664],\n            [-0.179976, 51.830911],\n            [-0.408066, 51.815508],\n            [-0.627212, 51.774034],\n            [-0.828642, 51.708119],\n            [-1.004362, 51.620379],\n            [-1.147499, 51.5143],\n            [-1.169319, 51.489418],\n            [-1.2666, 51.470919],\n            [-1.517856, 51.402595],\n            [-1.730443, 51.325183],\n            [-1.744923, 51.327985],\n            [-1.748295, 51.328634],\n            [-2.152679, 51.405316],\n            [-2.347337, 51.430892],\n            [-2.482471, 51.441261],\n            [-2.494988, 51.442173],\n            [-3.846665, 51.528929],\n            [-3.849508, 51.529095],\n            [-5.776165, 51.625169],\n            [-5.779622, 51.625312],\n            [-7.92658, 51.69455],\n            [-7.967629, 51.695092],\n            [-8.219409, 51.695469],\n            [-8.449873, 51.695827],\n            [-13.985361, 51.703587],\n            [-14.954673, 51.704823],\n            [-19.329964, 51.721431],\n            [-19.332181, 51.721401],\n            [-20.008699, 51.710302],\n            [-20.081332, 51.707506],\n            [-28.044927, 50.994916],\n            [-28.050976, 50.99417],\n            [-30.230636, 50.701804],\n            [-30.245952, 50.699538],\n            [-38.380426, 49.164102],\n            [-38.391558, 49.161539],\n            [-40.238558, 48.712145],\n            [-42.992101, 48.523681],\n            [-43.00017, 48.523022],\n            [-50.222824, 47.707404],\n            [-50.361605, 47.680834],\n            [-50.814648, 47.569859],\n            [-52.328129, 47.188498],\n            [-56.790094, 46.28908],\n            [-56.802898, 46.286179],\n            [-67.424607, 43.277322],\n            [-67.512282, 43.243716],\n            [-70.345149, 41.969509],\n            [-71.677673, 41.86767],\n            [-71.824933, 41.847028],\n            [-71.965803, 41.80999],\n            [-72.720606, 41.558416],\n            [-72.866754, 41.497148],\n            [-74.25342, 40.776549],\n            [-74.261429, 40.772263],\n            [-74.97174, 40.384314],\n            [-76.066145, 39.797569],\n            [-76.19261, 39.714849],\n            [-76.297054, 39.6167],\n            [-76.379539, 39.52288],\n            [-76.385222, 39.51633],\n            [-76.436001, 39.457031],\n            [-76.535141, 39.355045],\n            [-76.543244, 39.346567],\n            [-76.675427, 39.205795],\n            [-76.682522, 39.198116],\n            [-76.7782, 39.092947],\n            [-77.108586, 38.737629],\n            [-77.290265, 38.599282],\n            [-77.462115, 38.476218],\n            [-77.556501, 38.397341],\n            [-78.03655, 37.926225],\n            [-78.065556, 37.895947],\n            [-78.643629, 37.252648],\n            [-78.644435, 37.251743],\n            [-78.907359, 36.95506],\n            [-79.269413, 36.547817],\n            [-79.274221, 36.542329],\n            [-79.521876, 36.255943],\n            [-79.618551, 36.109128],\n            [-79.75952, 35.813603],\n            [-80.291932, 34.800485],\n            [-80.431931, 34.534396],\n            [-81.901572, 32.502656],\n            [-83.2387, 30.874767],\n            [-83.315578, 30.757756],\n            [-83.364558, 30.631707],\n            [-83.383999, 30.5012],\n            [-83.423899, 29.428365],\n            [-83.424057, 29.424121],\n            [-83.440565, 28.954225],\n            [-83.794778, 28.637807],\n            [-83.871043, 28.570503],\n            [-85.083487, 28.116455],\n            [-85.237099, 28.040902],\n            [-85.369435, 27.9401],\n            [-85.474439, 27.818787],\n            [-85.547384, 27.682618],\n            [-85.936036, 26.695255],\n            [-85.98223, 26.585166],\n            [-86.028762, 26.397912],\n            [-86.05916, 26.045223],\n            [-86.10682, 25.505866],\n            [-86.830898, 24.334597],\n            [-86.880684, 24.237401],\n            [-86.913395, 24.135683],\n            [-87.106816, 23.306278],\n            [-87.10927, 23.295396],\n            [-87.205828, 22.850784],\n            [-87.206226, 22.848942],\n            [-87.286385, 22.477447],\n            [-87.592585, 21.113445],\n            [-87.608274, 20.980224],\n            [-87.594973, 20.848824],\n            [-87.55328, 20.724245],\n            [-87.48485, 20.61121],\n            [-87.392328, 20.513991],\n            [-87.279241, 20.436261],\n            [-87.149872, 20.380956],\n            [-87.009101, 20.350174],\n            [-86.862234, 20.345097],\n            [-86.714811, 20.365945],\n            [-86.572412, 20.411964],\n            [-86.440454, 20.481451],\n            [-86.32399, 20.571804],\n            [-86.227519, 20.679616],\n            [-86.154809, 20.800795],\n            [-86.108745, 20.930714],\n            [-85.781978, 22.298424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"marker-color\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.85, 21.025],\n          [-86.53333, 22.39167],\n          [-86.45, 22.765],\n          [-86.35, 23.21],\n          [-86.15, 24.04],\n          [-85.33333, 25.34167],\n          [-85.26667, 26.03],\n          [-85.23333, 26.38333],\n          [-85.18333, 26.5],\n          [-84.78333, 27.49333],\n          [-83.41667, 28],\n          [-83.21667, 28.175],\n          [-82.63333, 28.69],\n          [-82.6, 29.43],\n          [-82.55, 30.505],\n          [-81.18333, 32.14667],\n          [-79.65, 34.23333],\n          [-79.48333, 34.54333],\n          [-78.93333, 35.56667],\n          [-78.78333, 35.87333],\n          [-78.53333, 36.15833],\n          [-78.16667, 36.565],\n          [-77.9, 36.86167],\n          [-77.31667, 37.50167],\n          [-76.83333, 37.97],\n          [-76.65, 38.1],\n          [-76.4, 38.28833],\n          [-76.01667, 38.695],\n          [-75.91667, 38.80333],\n          [-75.78333, 38.94333],\n          [-75.66667, 39.06167],\n          [-75.6, 39.13833],\n          [-75.51667, 39.23167],\n          [-74.41667, 39.81667],\n          [-73.7, 40.205],\n          [-72.31667, 40.91833],\n          [-71.56667, 41.16667],\n          [-70.01667, 41.28167],\n          [-67, 42.63333],\n          [-56.46667, 45.60333],\n          [-52, 46.5],\n          [-50.45, 46.89],\n          [-50, 47],\n          [-42.86667, 47.805],\n          [-40, 48],\n          [-38.03333, 48.48],\n          [-30, 50],\n          [-27.85, 50.29],\n          [-20, 51],\n          [-19.33333, 51.01167],\n          [-15, 51],\n          [-14, 51],\n          [-8.5, 51],\n          [-8.25, 51],\n          [-8, 51],\n          [-5.88333, 50.935],\n          [-3.98333, 50.84333],\n          [-2.65, 50.76],\n          [-2.51667, 50.75],\n          [-2.11667, 50.675],\n          [-1.6, 50.575],\n          [-0.93333, 50.82],\n          [-0.75, 50.855],\n          [-0.08333, 50.88667],\n          [-0.18333, 50.985],\n          [-0.18333, 51.14833]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/out/issue-#916.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [123.875405, -24.844229],\n            [123.891341, -24.992682],\n            [123.94066, -25.134994],\n            [124.021365, -25.265077],\n            [124.130088, -25.377346],\n            [124.262223, -25.466967],\n            [124.267663, -25.469912],\n            [124.209316, -25.538934],\n            [124.141104, -25.662878],\n            [124.100217, -25.79622],\n            [124.088233, -25.934105],\n            [124.105687, -26.071497],\n            [124.576037, -28.032811],\n            [124.622969, -28.163614],\n            [124.697238, -28.284168],\n            [124.796231, -28.390091],\n            [124.916407, -28.477521],\n            [125.053417, -28.54326],\n            [125.202268, -28.584896],\n            [125.357508, -28.600897],\n            [130.930612, -28.60137],\n            [131.10438, -28.581682],\n            [131.269317, -28.529936],\n            [131.417837, -28.44852],\n            [134.894577, -25.962349],\n            [134.998135, -25.870158],\n            [135.081308, -25.762626],\n            [135.141397, -25.643322],\n            [135.176488, -25.516192],\n            [135.185504, -25.385427],\n            [135.168232, -25.255327],\n            [134.177452, -20.860425],\n            [134.131991, -20.722495],\n            [134.058234, -20.595761],\n            [133.959165, -20.48524],\n            [133.838745, -20.395293],\n            [133.70175, -20.329466],\n            [133.553587, -20.290351],\n            [129.879656, -19.635427],\n            [129.727936, -19.620971],\n            [129.576163, -19.634937],\n            [129.430243, -19.67678],\n            [129.295866, -19.744873],\n            [124.255759, -22.789662],\n            [124.130346, -22.878886],\n            [124.026795, -22.989412],\n            [123.949336, -23.11678],\n            [123.901175, -23.255842],\n            [123.884358, -23.40096],\n            [123.875405, -24.844229]\n          ],\n          [\n            [126.285121, -25.787652],\n            [126.345597, -25.706701],\n            [126.406888, -25.572739],\n            [126.882811, -24.117699],\n            [130.052938, -22.290395],\n            [131.567079, -22.750462],\n            [132.116592, -24.955276],\n            [130.65533, -25.799776],\n            [126.668644, -25.976672],\n            [126.285121, -25.787652]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"marker-color\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [124.67285156250001, -24.846565348219734],\n            [125.63964843750001, -25.36388227274024],\n            [126.21093749999999, -23.644524198573677],\n            [129.9462890625, -21.493963563064455],\n            [132.2314453125, -22.187404991398775],\n            [133.0224609375, -25.28443774698303],\n            [130.9130859375, -26.509904531413916],\n            [126.474609375, -26.706359857633526],\n            [124.892578125, -25.918526162075153],\n            [125.3759765625, -27.877928333679495],\n            [130.9130859375, -27.877928333679495],\n            [134.38476562499997, -25.403584973186703],\n            [133.41796874999997, -21.002471054356715],\n            [129.7265625, -20.34462694382967],\n            [124.67285156250001, -23.40276490540795],\n            [124.67285156250001, -24.846565348219734]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/out/linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127.226349, -24.892171],\n            [132.807901, -21.503389],\n            [137.052314, -21.128511],\n            [141.758663, -23.243123],\n            [146.059183, -28.942782],\n            [146.284529, -31.484571],\n            [146.314018, -31.623474],\n            [146.375054, -31.754947],\n            [146.465385, -31.873889],\n            [146.581588, -31.975672],\n            [146.719186, -32.056327],\n            [146.872829, -32.112704],\n            [147.036503, -32.142605],\n            [147.203784, -32.14487],\n            [147.3681, -32.119424],\n            [147.523008, -32.067279],\n            [147.662467, -31.99049],\n            [147.781076, -31.892066],\n            [147.874293, -31.775847],\n            [147.938604, -31.646348],\n            [147.971649, -31.508575],\n            [147.972291, -31.367831],\n            [147.687031, -28.633746],\n            [147.661042, -28.505728],\n            [147.609177, -28.383807],\n            [147.533197, -28.271939],\n            [142.950497, -22.279041],\n            [142.85936, -22.17374],\n            [142.74868, -22.08594],\n            [142.622311, -22.018678],\n            [137.544829, -19.739994],\n            [137.407135, -19.689593],\n            [137.261756, -19.664902],\n            [137.114013, -19.666826],\n            [132.479053, -20.07577],\n            [132.34631, -20.096444],\n            [132.219383, -20.138457],\n            [132.10211, -20.200542],\n            [126.23078, -23.754181],\n            [126.092931, -23.85318],\n            [125.982217, -23.977427],\n            [120.427656, -31.160441],\n            [120.343641, -31.28218],\n            [120.288894, -31.415325],\n            [120.265614, -31.554804],\n            [120.274822, -31.695288],\n            [120.316305, -31.831386],\n            [120.3886, -31.957853],\n            [120.489029, -32.069793],\n            [120.613789, -32.162853],\n            [120.758086, -32.233398],\n            [120.916321, -32.27866],\n            [121.08231, -32.296851],\n            [121.249539, -32.287245],\n            [121.41144, -32.250203],\n            [121.561658, -32.187167],\n            [121.694322, -32.100596],\n            [121.804284, -31.99387],\n            [127.226349, -24.892171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"marker-color\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [121.11328124999999, -31.57853542647337],\n          [126.65039062499999, -24.367113562651262],\n          [132.5390625, -20.797201434306984],\n          [137.197265625, -20.385825381874263],\n          [142.294921875, -22.67484735118852],\n          [146.865234375, -28.690587654250685],\n          [147.12890625, -31.42866311735861]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/out/multi-linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [143.765247, -25.247522],\n              [141.455867, -29.009434],\n              [139.223197, -30.779591],\n              [139.112219, -30.884052],\n              [139.026975, -31.005126],\n              [138.970807, -31.138204],\n              [138.945979, -31.2782],\n              [138.953577, -31.419744],\n              [138.993441, -31.557387],\n              [139.064158, -31.685808],\n              [139.163095, -31.800026],\n              [139.286483, -31.895597],\n              [139.429562, -31.968794],\n              [139.586763, -32.01676],\n              [139.751931, -32.03762],\n              [139.918584, -32.030564],\n              [140.080179, -31.995877],\n              [140.230388, -31.934924],\n              [140.363359, -31.850095],\n              [142.692394, -29.983562],\n              [142.78003, -29.899073],\n              [142.851031, -29.803639],\n              [145.290397, -25.738352],\n              [145.346879, -25.614211],\n              [145.376617, -25.482823],\n              [145.378666, -25.348758],\n              [145.141683, -22.501706],\n              [145.115809, -22.362762],\n              [145.061067, -22.231178],\n              [144.97962, -22.111971],\n              [144.874623, -22.009679],\n              [144.750104, -21.928187],\n              [144.610804, -21.870588],\n              [144.462005, -21.839073],\n              [144.309339, -21.834843],\n              [144.158581, -21.85807],\n              [144.015443, -21.907886],\n              [143.885363, -21.982415],\n              [143.773312, -22.078836],\n              [143.6836, -22.193489],\n              [143.619714, -22.322006],\n              [143.584178, -22.459476],\n              [143.578446, -22.600625],\n              [143.765247, -25.247522]\n            ]\n          ],\n          [\n            [\n              [125.502014, -19.90512],\n              [122.192112, -21.370305],\n              [122.060835, -21.441358],\n              [121.946965, -21.534722],\n              [121.854855, -21.646848],\n              [121.788055, -21.773475],\n              [121.749175, -21.909778],\n              [121.739782, -22.050551],\n              [121.760327, -22.190403],\n              [121.810111, -22.323958],\n              [121.887304, -22.446067],\n              [121.988998, -22.552003],\n              [122.111311, -22.637652],\n              [122.24953, -22.699676],\n              [122.398296, -22.735648],\n              [122.551816, -22.744152],\n              [122.704097, -22.724846],\n              [122.849193, -22.678472],\n              [126.263495, -21.16592],\n              [127.17094, -22.640504],\n              [126.80862, -22.768147],\n              [126.616183, -22.865783],\n              [121.577431, -26.153688],\n              [121.456519, -26.244682],\n              [121.357587, -26.354855],\n              [121.284446, -26.480023],\n              [121.239957, -26.615424],\n              [121.225915, -26.75589],\n              [121.242965, -26.896046],\n              [121.290567, -27.030506],\n              [121.36699, -27.154087],\n              [121.469374, -27.262003],\n              [121.593818, -27.350061],\n              [121.735529, -27.414825],\n              [121.889006, -27.453757],\n              [122.048263, -27.465324],\n              [122.207068, -27.449061],\n              [122.359201, -27.405593],\n              [122.498716, -27.336609],\n              [127.478058, -24.080986],\n              [127.967029, -23.908079],\n              [129.954409, -26.960908],\n              [130.055211, -27.081025],\n              [130.18189, -27.179931],\n              [130.328983, -27.253314],\n              [130.4901, -27.297964],\n              [133.148933, -27.74605],\n              [133.002807, -27.879978],\n              [132.903061, -27.99112],\n              [132.829583, -28.117282],\n              [132.785262, -28.253657],\n              [132.771901, -28.39503],\n              [132.79013, -28.535977],\n              [132.839368, -28.671072],\n              [132.91782, -28.795093],\n              [133.022538, -28.903232],\n              [133.149518, -28.991281],\n              [133.293855, -29.055808],\n              [133.44993, -29.09429],\n              [133.611639, -29.105222],\n              [133.772646, -29.088175],\n              [133.926645, -29.043819],\n              [134.067618, -28.973888],\n              [134.190086, -28.881114],\n              [139.019037, -24.165142],\n              [139.109606, -24.051239],\n              [139.174139, -23.923485],\n              [139.21026, -23.786749],\n              [139.216691, -23.646227],\n              [139.193285, -23.507239],\n              [138.995251, -22.792643],\n              [140.716896, -23.356558],\n              [140.867055, -23.389837],\n              [141.021476, -23.395481],\n              [141.174128, -23.373279],\n              [141.319053, -23.324106],\n              [141.450615, -23.249887],\n              [141.563723, -23.153521],\n              [141.654034, -23.038757],\n              [141.718118, -22.910045],\n              [141.753583, -22.772361],\n              [141.759155, -22.631008],\n              [141.734716, -22.491412],\n              [141.681289, -22.358915],\n              [141.600993, -22.238574],\n              [141.496944, -22.134969],\n              [141.373138, -22.052037],\n              [141.234294, -21.992927],\n              [139.265957, -21.345329],\n              [139.054544, -21.303639],\n              [138.583103, -21.272225],\n              [138.163496, -19.678052],\n              [138.117593, -19.552441],\n              [138.048151, -19.436893],\n              [137.957549, -19.335285],\n              [137.848858, -19.251019],\n              [134.954893, -17.346373],\n              [134.815526, -17.271828],\n              [134.662973, -17.226852],\n              [134.503967, -17.213425],\n              [134.345515, -17.232141],\n              [128.832464, -18.352277],\n              [128.627235, -18.419963],\n              [126.876904, -19.26387],\n              [126.212817, -18.166685],\n              [126.126524, -18.050956],\n              [126.01833, -17.9533],\n              [125.892397, -17.87743],\n              [125.753538, -17.826222],\n              [125.607039, -17.80161],\n              [125.458459, -17.80452],\n              [125.313432, -17.834834],\n              [125.177458, -17.891395],\n              [125.055704, -17.972054],\n              [124.952812, -18.073747],\n              [124.87273, -18.192606],\n              [124.818558, -18.324104],\n              [124.792428, -18.463222],\n              [124.795415, -18.604637],\n              [124.827482, -18.74292],\n              [124.887474, -18.87275],\n              [125.502014, -19.90512]\n            ],\n            [\n              [136.954631, -21.152367],\n              [132.496579, -20.73428],\n              [132.362814, -20.730613],\n              [132.23036, -20.748474],\n              [132.103129, -20.787336],\n              [128.645339, -22.109076],\n              [127.648016, -20.518553],\n              [129.236219, -19.751878],\n              [134.35467, -18.715641],\n              [136.73669, -20.288885],\n              [136.954631, -21.152367]\n            ],\n            [\n              [129.453043, -23.369464],\n              [132.52325, -22.194093],\n              [137.336301, -22.633313],\n              [137.560925, -23.486259],\n              [134.487344, -26.497859],\n              [134.34539, -26.46318],\n              [131.154832, -25.940326],\n              [129.453043, -23.369464]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"marker-color\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [122.03613281249999, -26.74561038219901],\n            [127.08984375000001, -23.443088931121775],\n            [132.4072265625, -21.453068633086772],\n            [138.9990234375, -22.024545601240337],\n            [140.9765625, -22.67484735118852]\n          ],\n          [\n            [125.5517578125, -18.521283325496263],\n            [130.6494140625, -26.588527147308614],\n            [134.208984375, -27.17646913189887]\n          ],\n          [\n            [122.51953124999999, -22.024545601240337],\n            [128.9794921875, -19.062117883514652],\n            [134.5166015625, -17.936928637549432],\n            [137.4169921875, -19.84939395842278],\n            [138.427734375, -23.68477416688374],\n            [133.59375, -28.38173504322308]\n          ],\n          [\n            [144.3603515625, -22.55314747840318],\n            [144.580078125, -25.403584973186703],\n            [142.11914062499997, -29.458731185355315],\n            [139.7900390625, -31.316101383495635]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/out/multi-point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 300,\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [149.764522, -24.629618],\n              [149.578309, -23.803061],\n              [149.222946, -23.023748],\n              [148.713858, -22.320174],\n              [148.07114, -21.717826],\n              [147.318813, -21.238427],\n              [146.484075, -20.899278],\n              [145.596519, -20.712722],\n              [144.687337, -20.685733],\n              [143.788463, -20.819653],\n              [142.931705, -21.110094],\n              [142.147839, -21.547016],\n              [141.465706, -22.114982],\n              [140.911305, -22.79359],\n              [140.506894, -23.55808],\n              [140.2701, -24.380099],\n              [140.213044, -25.228623],\n              [140.341509, -26.071029],\n              [140.654203, -26.874291],\n              [141.1422, -27.606306],\n              [141.788699, -28.237278],\n              [142.569213, -28.741126],\n              [143.452331, -29.096798],\n              [144.401088, -29.2894],\n              [145.374895, -29.311015],\n              [146.331865, -29.161121],\n              [147.231271, -28.846565],\n              [148.035849, -28.381095],\n              [148.713687, -27.784518],\n              [149.239553, -27.081587],\n              [149.595606, -26.300739],\n              [149.771577, -25.472781],\n              [149.764522, -24.629618]\n            ]\n          ],\n          [\n            [\n              [125.439104, -20.704873],\n              [125.312663, -20.685733],\n              [124.403481, -20.712722],\n              [123.515925, -20.899278],\n              [122.681187, -21.238427],\n              [121.92886, -21.717826],\n              [121.286142, -22.320174],\n              [120.777054, -23.023748],\n              [120.421691, -23.803061],\n              [120.235478, -24.629618],\n              [120.228423, -25.472781],\n              [120.404394, -26.300739],\n              [120.760447, -27.081587],\n              [121.286313, -27.784518],\n              [121.964151, -28.381095],\n              [122.768729, -28.846565],\n              [123.668135, -29.161121],\n              [124.625105, -29.311015],\n              [125.598912, -29.2894],\n              [126.547669, -29.096798],\n              [127.430787, -28.741126],\n              [128.211301, -28.237278],\n              [128.8578, -27.606306],\n              [129.345797, -26.874291],\n              [129.658491, -26.071029],\n              [129.786956, -25.228623],\n              [129.7299, -24.380099],\n              [129.712115, -24.318635],\n              [129.8424, -24.334624],\n              [130.774232, -24.278531],\n              [131.673708, -24.052706],\n              [132.503141, -23.66657],\n              [133.228575, -23.136255],\n              [133.821432, -22.483729],\n              [134.259647, -21.735667],\n              [134.528303, -20.922151],\n              [134.619783, -20.075319],\n              [134.533568, -19.228031],\n              [134.275772, -18.412598],\n              [133.858523, -17.659632],\n              [133.299238, -16.997],\n              [132.619849, -16.448926],\n              [131.845979, -16.035227],\n              [131.006073, -15.770703],\n              [130.130501, -15.664696],\n              [129.250623, -15.720821],\n              [128.397853, -15.936881],\n              [127.602719, -16.304965],\n              [126.893971, -16.811717],\n              [126.297714, -17.438771],\n              [125.836608, -18.163328],\n              [125.529103, -18.958859],\n              [125.388714, -19.795937],\n              [125.423341, -20.643174],\n              [125.439104, -20.704873]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 300,\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"marker-color\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [145, -25],\n          [130, -20],\n          [125, -25]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/out/multi-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [121.145783, -31.459451],\n              [121.158, -31.59619],\n              [121.200606, -31.728292],\n              [121.272169, -31.85094],\n              [121.370175, -31.959641],\n              [121.49111, -32.050399],\n              [121.630575, -32.119864],\n              [121.783451, -32.165459],\n              [121.944091, -32.185488],\n              [133.939982, -32.210194],\n              [133.941629, -32.22902],\n              [133.988695, -32.369621],\n              [134.068305, -32.499331],\n              [134.177301, -32.612811],\n              [134.311271, -32.705374],\n              [134.464719, -32.773187],\n              [134.631298, -32.813436],\n              [142.910492, -33.81678],\n              [143.071981, -33.81892],\n              [143.230831, -33.795999],\n              [143.381422, -33.74884],\n              [143.518445, -33.679116],\n              [143.637106, -33.589293],\n              [143.733294, -33.482533],\n              [143.803722, -33.362582],\n              [143.846037, -33.233628],\n              [143.858889, -33.100157],\n              [143.927413, -16.857256],\n              [143.915429, -16.713701],\n              [143.873826, -16.575526],\n              [143.804329, -16.448238],\n              [143.709757, -16.336898],\n              [143.593901, -16.245927],\n              [137.148517, -11.883675],\n              [137.035, -11.816879],\n              [136.911099, -11.771276],\n              [136.78082, -11.748339],\n              [136.648372, -11.748811],\n              [136.518031, -11.77268],\n              [131.086813, -13.178115],\n              [130.998133, -13.205339],\n              [125.12985, -15.27805],\n              [124.995767, -15.337194],\n              [124.876405, -15.420651],\n              [124.7764, -15.52519],\n              [124.699661, -15.646763],\n              [124.649213, -15.780653],\n              [124.627077, -15.921654],\n              [124.634186, -16.064272],\n              [124.670333, -16.202932],\n              [124.734174, -16.332199],\n              [125.861079, -18.112439],\n              [122.018938, -18.009867],\n              [121.865865, -18.018561],\n              [121.717901, -18.056127],\n              [121.581009, -18.121045],\n              [121.460716, -18.210692],\n              [121.361898, -18.321447],\n              [121.288591, -18.448835],\n              [121.243821, -18.587699],\n              [121.229479, -18.732406],\n              [121.145783, -31.459451]\n            ],\n            [\n              [133.491932, -18.039639],\n              [135.710963, -15.613575],\n              [138.632672, -18.671504],\n              [135.2085, -23.081941],\n              [135.19159, -18.728533],\n              [135.175759, -18.583655],\n              [135.129733, -18.444753],\n              [135.055446, -18.317429],\n              [134.95595, -18.206808],\n              [134.83529, -18.117333],\n              [134.698333, -18.052588],\n              [134.55058, -18.015167],\n              [134.397948, -18.006568],\n              [133.491932, -18.039639]\n            ]\n          ],\n          [\n            [\n              [128.220025, -36.279319],\n              [128.235287, -36.419139],\n              [128.283727, -36.553792],\n              [128.363658, -36.678175],\n              [128.472165, -36.787548],\n              [128.6052, -36.877732],\n              [128.757722, -36.945264],\n              [128.923895, -36.987546],\n              [129.097319, -37.002944],\n              [131.889478, -37.003302],\n              [132.063412, -36.98787],\n              [132.230217, -36.945405],\n              [132.383433, -36.877551],\n              [132.517164, -36.78693],\n              [132.626313, -36.677036],\n              [132.70678, -36.552091],\n              [132.755614, -36.416881],\n              [132.771101, -36.276561],\n              [132.750862, -34.23139],\n              [132.732564, -34.089398],\n              [132.681218, -33.953141],\n              [132.59895, -33.827894],\n              [132.489042, -33.718486],\n              [132.355801, -33.629121],\n              [132.204381, -33.563223],\n              [132.040592, -33.523314],\n              [131.870685, -33.510915],\n              [129.123583, -33.511267],\n              [128.95313, -33.523778],\n              [128.78874, -33.563938],\n              [128.636721, -33.6302],\n              [128.502937, -33.720014],\n              [128.392587, -33.829915],\n              [128.310014, -33.955658],\n              [128.25853, -34.092366],\n              [128.240274, -34.234724],\n              [128.220025, -36.279319]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"marker-color\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [121.9921875, -31.466153715024284],\n              [134.4287109375, -31.466153715024284],\n              [134.4287109375, -18.729501999072138],\n              [121.9921875, -18.729501999072138],\n              [121.9921875, -31.466153715024284]\n            ]\n          ],\n          [\n            [\n              [125.3759765625, -15.961329081596647],\n              [126.826171875, -18.22935133838667],\n              [132.451171875, -18.062312304546715],\n              [135.703125, -14.519780046326085],\n              [139.6142578125, -18.60460138845525],\n              [134.9560546875, -24.607069137709694],\n              [134.7802734375, -32.10118973232094],\n              [142.998046875, -33.100745405144245],\n              [143.173828125, -16.84660510639629],\n              [136.7138671875, -12.46876014482322],\n              [131.2646484375, -13.88074584202559],\n              [125.3759765625, -15.961329081596647]\n            ]\n          ],\n          [\n            [\n              [129.111328125, -36.27970720524016],\n              [131.8798828125, -36.27970720524016],\n              [131.8798828125, -34.234512362369856],\n              [129.111328125, -34.234512362369856],\n              [129.111328125, -36.27970720524016]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/out/negative-buffer.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": -200,\n        \"units\": \"miles\",\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [134.489191, -17.811384],\n            [130.181752, -20.673464],\n            [131.393542, -25.655566],\n            [135.201218, -27.922057],\n            [141.183829, -27.956599],\n            [141.724503, -26.12273],\n            [141.388146, -19.483057],\n            [134.489191, -17.811384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": -200,\n        \"units\": \"miles\",\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"marker-color\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [133.90136718749997, -14.647368383896618],\n            [126.73828125, -19.352610894378625],\n            [128.49609375, -27.371767300523032],\n            [134.1650390625, -30.789036751261136],\n            [143.7890625, -30.789036751261136],\n            [144.9755859375, -26.391869671769022],\n            [144.31640625, -17.14079039331664],\n            [133.90136718749997, -14.647368383896618]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/out/north-latitude-points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-97.442036, 74.434038],\n            [-97.381016, 74.388139],\n            [-97.112521, 74.266227],\n            [-96.765629, 74.160316],\n            [-96.35391, 74.074131],\n            [-95.892472, 74.010651],\n            [-95.397508, 73.972041],\n            [-94.885898, 73.959607],\n            [-94.374849, 73.973769],\n            [-94.087763, 73.997372],\n            [-94.085128, 73.997295],\n            [-93.57229, 74.009553],\n            [-93.076017, 74.04799],\n            [-92.613227, 74.111306],\n            [-92.200153, 74.197343],\n            [-91.851945, 74.303127],\n            [-91.582217, 74.42494],\n            [-91.402533, 74.558414],\n            [-91.321837, 74.698648],\n            [-91.345852, 74.840365],\n            [-91.476493, 74.978084],\n            [-91.711354, 75.106336],\n            [-92.043366, 75.219895],\n            [-92.460698, 75.314018],\n            [-92.947004, 75.384693],\n            [-93.482055, 75.428855],\n            [-94.042747, 75.444567],\n            [-94.28658, 75.438903],\n            [-94.439369, 75.450664],\n            [-95.001778, 75.464097],\n            [-95.563205, 75.448384],\n            [-96.098954, 75.404219],\n            [-96.585885, 75.33354],\n            [-97.003742, 75.239413],\n            [-97.336159, 75.12585],\n            [-97.571292, 74.997594],\n            [-97.702066, 74.859873],\n            [-97.726078, 74.718157],\n            [-97.64525, 74.577923],\n            [-97.465317, 74.444452],\n            [-97.442036, 74.434038]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"marker-color\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-94.97955322265625, 74.74046209428195],\n          [-94.90264892578125, 74.68325030051861],\n          [-94.06494140625, 74.7209322003536]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/out/northern-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.586148, 73.969761],\n            [-94.060634, 73.996546],\n            [-93.562762, 74.05099],\n            [-93.111131, 74.131095],\n            [-92.723285, 74.233888],\n            [-92.415184, 74.355489],\n            [-92.200612, 74.491218],\n            [-92.176886, 74.511612],\n            [-92.075347, 74.635411],\n            [-92.0559, 74.762017],\n            [-92.121138, 74.887572],\n            [-92.143177, 74.912822],\n            [-92.303751, 75.039533],\n            [-92.554851, 75.15623],\n            [-92.889336, 75.258675],\n            [-93.296362, 75.343064],\n            [-93.761636, 75.406204],\n            [-94.267934, 75.445669],\n            [-94.795881, 75.459926],\n            [-94.873641, 75.460115],\n            [-95.401271, 75.448499],\n            [-95.909433, 75.411704],\n            [-96.378733, 75.351153],\n            [-96.458957, 75.338165],\n            [-96.874599, 75.25522],\n            [-97.218095, 75.153659],\n            [-97.478068, 75.037307],\n            [-97.646921, 74.91045],\n            [-97.720856, 74.777651],\n            [-97.699691, 74.643569],\n            [-97.586524, 74.512789],\n            [-97.387315, 74.389673],\n            [-97.320449, 74.356691],\n            [-97.001193, 74.230963],\n            [-96.596925, 74.125476],\n            [-96.125408, 74.044486],\n            [-95.60618, 73.991212],\n            [-95.059945, 73.967744],\n            [-95.013332, 73.967051],\n            [-94.630149, 73.968721],\n            [-94.586148, 73.969761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"marker-color\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.81887817382812, 74.69068515369659],\n            [-94.79827880859375, 74.71133916265154],\n            [-94.82437133789062, 74.73630499357218],\n            [-94.89852905273438, 74.73648576006866],\n            [-94.976806640625, 74.72400796764163],\n            [-94.91363525390625, 74.69032255967197],\n            [-94.86488342285156, 74.68959734647507],\n            [-94.81887817382812, 74.69068515369659]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/out/point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [135.798459, -24.997869],\n            [135.78222, -24.856777],\n            [135.736028, -24.72126],\n            [135.661742, -24.596496],\n            [135.562272, -24.487242],\n            [135.441458, -24.397651],\n            [135.30392, -24.331119],\n            [135.154887, -24.290167],\n            [135, -24.276342],\n            [134.845113, -24.290167],\n            [134.69608, -24.331119],\n            [134.558542, -24.397651],\n            [134.437728, -24.487242],\n            [134.338258, -24.596496],\n            [134.263972, -24.72126],\n            [134.21778, -24.856777],\n            [134.201541, -24.997869],\n            [134.215981, -25.139123],\n            [134.260647, -25.275103],\n            [134.333913, -25.400557],\n            [134.433025, -25.510627],\n            [134.554197, -25.601034],\n            [134.692754, -25.668256],\n            [134.843314, -25.709671],\n            [135, -25.723658],\n            [135.156686, -25.709671],\n            [135.307246, -25.668256],\n            [135.445803, -25.601034],\n            [135.566975, -25.510627],\n            [135.666087, -25.400557],\n            [135.739353, -25.275103],\n            [135.784019, -25.139123],\n            [135.798459, -24.997869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"marker-color\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [135, -25]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test/out/polygon-with-holes.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"marker-color\": \"#F00\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [123.396129, -24.552892],\n            [123.398728, -24.691824],\n            [123.43081, -24.827676],\n            [123.491271, -24.955376],\n            [127.765022, -31.644259],\n            [127.857726, -31.755151],\n            [127.973551, -31.849002],\n            [128.10836, -31.922413],\n            [128.257291, -31.972713],\n            [128.414939, -31.998068],\n            [138.329141, -32.451275],\n            [138.491912, -32.440129],\n            [138.648986, -32.40274],\n            [138.794502, -32.340506],\n            [138.923056, -32.25575],\n            [139.029913, -32.151626],\n            [145.502669, -23.800029],\n            [145.578901, -23.665233],\n            [145.622351, -23.518861],\n            [145.631202, -23.367426],\n            [145.605179, -23.21764],\n            [145.545542, -23.076121],\n            [142.098542, -16.495192],\n            [142.016382, -16.365716],\n            [141.907866, -16.25563],\n            [141.77779, -16.16976],\n            [136.079778, -13.043891],\n            [135.961491, -12.988928],\n            [135.835169, -12.95519],\n            [135.704742, -12.943725],\n            [130.45059, -12.859153],\n            [130.368086, -12.86109],\n            [124.851575, -13.203457],\n            [124.698878, -13.226176],\n            [124.554578, -13.279234],\n            [124.424919, -13.36033],\n            [124.315525, -13.465951],\n            [124.231162, -13.591522],\n            [124.175535, -13.7316],\n            [124.151118, -13.880099],\n            [123.396129, -24.552892]\n          ],\n          [\n            [130.462457, -26.314888],\n            [128.718067, -18.144009],\n            [138.323214, -18.140031],\n            [138.277108, -26.318328],\n            [130.462457, -26.314888]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"marker-color\": \"#00F\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [124.18945312500001, -24.607069137709694],\n            [128.49609375, -31.278550858946517],\n            [138.33984375, -31.728167146023935],\n            [144.84375, -23.40276490540795],\n            [141.416015625, -16.804541076383455],\n            [135.703125, -13.667338259654947],\n            [130.4296875, -13.581920900545844],\n            [124.892578125, -13.923403897723334],\n            [124.18945312500001, -24.607069137709694]\n          ],\n          [\n            [129.79296875, -27.019984007982554],\n            [139.0869140625, -27.019984007982554],\n            [139.0869140625, -17.392579271057766],\n            [127.79296875, -17.392579271057766],\n            [129.79296875, -27.019984007982554]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-buffer/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { truncate } from \"@turf/truncate\";\nimport { featureEach } from \"@turf/meta\";\nimport {\n  featureCollection,\n  point,\n  polygon,\n  geometryCollection,\n} from \"@turf/helpers\";\nimport { buffer } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nvar fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n// fixtures = fixtures.filter(({name}) => name === 'feature-collection-points');\n\ntest(\"turf-buffer\", (t) => {\n  fixtures.forEach((fixture) => {\n    const filename = fixture.filename;\n    const name = fixture.name;\n    const geojson = fixture.geojson;\n    const properties = geojson.properties || {};\n    const radius = properties.radius || 50;\n    const units = properties.units || \"miles\";\n    const steps = properties.steps;\n\n    const buffered = truncate(\n      buffer(geojson, radius, { units: units, steps: steps })\n    );\n\n    // Add Results to FeatureCollection\n    const results = featureCollection([]);\n    featureEach(buffered, (feature) =>\n      results.features.push(colorize(feature, \"#F00\"))\n    );\n    featureEach(geojson, (feature) =>\n      results.features.push(colorize(feature, \"#00F\"))\n    );\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEqual(results, loadJsonFileSync(directories.out + filename), name);\n  });\n  t.end();\n});\n\n// https://github.com/Turfjs/turf/pull/736\ntest(\"turf-buffer - Support Negative Buffer\", (t) => {\n  const poly = polygon([\n    [\n      [11, 0],\n      [22, 4],\n      [31, 0],\n      [31, 11],\n      [21, 15],\n      [11, 11],\n      [11, 0],\n    ],\n  ]);\n\n  t.assert(buffer(poly, -50), \"allow negative buffer param\");\n  t.end();\n});\n\ntest(\"turf-buffer - Support Geometry Objects\", (t) => {\n  const pt = point([61, 5]);\n  const poly = polygon([\n    [\n      [11, 0],\n      [22, 4],\n      [31, 0],\n      [31, 11],\n      [21, 15],\n      [11, 11],\n      [11, 0],\n    ],\n  ]);\n  const gc = geometryCollection([pt.geometry, poly.geometry]);\n\n  t.assert(buffer(gc, 10), \"support Geometry Collection\");\n  t.assert(buffer(pt.geometry, 10), \"support Point Geometry\");\n  t.assert(buffer(poly.geometry, 10), \"support Polygon Geometry\");\n  t.end();\n});\n\ntest(\"turf-buffer - Prevent Input Mutation\", (t) => {\n  const pt = point([61, 5]);\n  const poly = polygon([\n    [\n      [11, 0],\n      [22, 4],\n      [31, 0],\n      [31, 11],\n      [21, 15],\n      [11, 11],\n      [11, 0],\n    ],\n  ]);\n  const collection = featureCollection([pt, poly]);\n\n  const beforePt = JSON.parse(JSON.stringify(pt));\n  const beforePoly = JSON.parse(JSON.stringify(poly));\n  const beforeCollection = JSON.parse(JSON.stringify(collection));\n\n  buffer(pt, 10);\n  buffer(poly, 10);\n  buffer(collection, 10);\n\n  t.deepEqual(pt, beforePt, \"pt should not mutate\");\n  t.deepEqual(poly, beforePoly, \"poly should not mutate\");\n  t.deepEqual(collection, beforeCollection, \"collection should not mutate\");\n  t.end();\n});\n\n// https://github.com/Turfjs/turf/issues/745\n// https://github.com/Turfjs/turf/pull/736#issuecomment-301937747\ntest(\"turf-buffer - morphological closing\", (t) => {\n  const poly = polygon([\n    [\n      [11, 0],\n      [22, 4],\n      [31, 0],\n      [31, 11],\n      [21, 15],\n      [11, 11],\n      [11, 0],\n    ],\n  ]);\n\n  t.equal(\n    buffer(poly, -500, { units: \"miles\" }),\n    undefined,\n    \"empty geometry should be undefined\"\n  );\n  t.deepEqual(\n    buffer(featureCollection([poly]), -500, { units: \"miles\" }),\n    featureCollection([]),\n    \"empty geometries should be an empty FeatureCollection\"\n  );\n  t.end();\n});\n\ntest(\"turf-buffer - undefined return\", (t) => {\n  const poly: GeoJSON.Feature<GeoJSON.Polygon> = {\n    type: \"Feature\",\n    properties: {},\n    geometry: {\n      type: \"Polygon\",\n      coordinates: [\n        [\n          [-101.87842323574378, 52.250446362382775],\n          [-101.87842323574378, 49.56446202085259],\n          [-98.29404114999511, 49.56446202085259],\n          [-98.29404114999511, 52.250446362382775],\n          [-101.87842323574378, 52.250446362382775],\n        ],\n      ],\n    },\n  };\n\n  t.equal(\n    buffer(poly, -100000000),\n    undefined,\n    \"empty geometry should be undefined if the resulting geometry is invalid\"\n  );\n  t.end();\n});\n\nfunction colorize(feature, color) {\n  color = color || \"#F00\";\n  if (feature.properties) {\n    feature.properties.stroke = color;\n    feature.properties.fill = color;\n    feature.properties[\"marker-color\"] = color;\n    feature.properties[\"fill-opacity\"] = 0.3;\n  }\n  return feature;\n}\n"
  },
  {
    "path": "packages/turf-buffer/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-buffer/types.ts",
    "content": "import {\n  point,\n  lineString,\n  polygon,\n  multiPoint,\n  multiLineString,\n  multiPolygon,\n  featureCollection,\n  geometryCollection,\n} from \"@turf/helpers\";\nimport { Point, LineString } from \"geojson\";\nimport { buffer } from \"./index.js\";\n\n// Standard Geometry\nconst pt = point([100, 0]);\nconst line = lineString([\n  [100, 0],\n  [50, 0],\n]);\nconst poly = polygon([\n  [\n    [100, 0],\n    [50, 0],\n    [0, 50],\n    [100, 0],\n  ],\n]);\n\nbuffer(pt, 5);\nbuffer(line, 5);\nbuffer(poly, 5);\nbuffer(pt, 5, { units: \"miles\" });\nbuffer(pt, 10, { units: \"meters\", steps: 64 });\n\n// Multi Geometry\nconst multiPt = multiPoint([\n  [100, 0],\n  [0, 100],\n]);\nconst multiLine = multiLineString([\n  [\n    [100, 0],\n    [50, 0],\n  ],\n  [\n    [100, 0],\n    [50, 0],\n  ],\n]);\nconst multiPoly = multiPolygon([\n  [\n    [\n      [100, 0],\n      [50, 0],\n      [0, 50],\n      [100, 0],\n    ],\n  ],\n  [\n    [\n      [100, 0],\n      [50, 0],\n      [0, 50],\n      [100, 0],\n    ],\n  ],\n]);\n\nbuffer(multiPt, 5);\nbuffer(multiLine, 5);\nbuffer(multiPoly, 5);\n\n// Collections\nconst fc = featureCollection<Point | LineString>([pt, line]);\nconst gc = geometryCollection([pt.geometry, line.geometry]);\n\nbuffer(fc, 5);\nbuffer(gc, 5);\n\n// Mixed Collections\nconst fcMixed = featureCollection<any>([pt, line, multiPt, multiLine]);\nconst gcMixed = geometryCollection([\n  pt.geometry,\n  line.geometry,\n  multiPt.geometry,\n  multiLine.geometry,\n]);\n\nbuffer(fcMixed, 5);\nbuffer(gcMixed, 5);\n"
  },
  {
    "path": "packages/turf-center/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-center/README.md",
    "content": "# @turf/center\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## center\n\nTakes a [Feature][1] or [FeatureCollection][2] and returns the absolute center point of all features.\n\n### Parameters\n\n*   `geojson` **[GeoJSON][3]** GeoJSON to be centered\n*   `options` **[Object][4]** Optional parameters (optional, default `{}`)\n\n    *   `options.properties` **[Object][4]** Translate GeoJSON Properties to Point (optional, default `{}`)\n    *   `options.bbox` **[Object][4]** Translate GeoJSON BBox to Point (optional, default `{}`)\n    *   `options.id` **[Object][4]** Translate GeoJSON Id to Point (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar features = turf.points([\n  [-97.522259, 35.4691],\n  [-97.502754, 35.463455],\n  [-97.508269, 35.463245]\n]);\n\nvar center = turf.center(features);\n\n//addToMap\nvar addToMap = [features, center]\ncenter.properties['marker-size'] = 'large';\ncenter.properties['marker-color'] = '#000';\n```\n\nReturns **[Feature][1]<[Point][5]>** a Point feature at the absolute center point of all input features\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/center\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-center/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { center } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst fixtures = glob\n  .sync(path.join(__dirname, \"test\", \"in\", \"*.geojson\"))\n  .map((input) => {\n    return {\n      name: path.parse(input).name,\n      geojson: loadJsonFileSync(input),\n    };\n  });\n\n/**\n * Single Process Benchmark\n *\n * feature-collection: 0.445ms\n * imbalanced-polygon: 0.051ms\n * linestring: 0.027ms\n * point: 0.011ms\n * polygon: 0.013ms\n */\nfor (const { name, geojson } of fixtures) {\n  console.time(name);\n  center(geojson);\n  console.timeEnd(name);\n}\n\n/**\n * Benchmark Results\n *\n * feature-collection x 2,786,700 ops/sec ±1.50% (83 runs sampled)\n * imbalanced-polygon x 1,364,145 ops/sec ±3.33% (76 runs sampled)\n * linestring x 4,104,106 ops/sec ±4.16% (81 runs sampled)\n * point x 4,901,692 ops/sec ±5.23% (81 runs sampled)\n * polygon x 2,862,759 ops/sec ±1.14% (86 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-center\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => center(geojson));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-center/index.ts",
    "content": "import { BBox, Feature, GeoJsonProperties, Point } from \"geojson\";\nimport { bbox } from \"@turf/bbox\";\nimport { point, Id, AllGeoJSON } from \"@turf/helpers\";\n\n/**\n * Takes a {@link Feature} or {@link FeatureCollection} and returns the absolute center point of all features.\n *\n * @function\n * @param {GeoJSON} geojson GeoJSON to be centered\n * @param {Object} [options={}] Optional parameters\n * @param {Object} [options.properties={}] Translate GeoJSON Properties to Point\n * @param {Object} [options.bbox={}] Translate GeoJSON BBox to Point\n * @param {Object} [options.id={}] Translate GeoJSON Id to Point\n * @returns {Feature<Point>} a Point feature at the absolute center point of all input features\n * @example\n * var features = turf.points([\n *   [-97.522259, 35.4691],\n *   [-97.502754, 35.463455],\n *   [-97.508269, 35.463245]\n * ]);\n *\n * var center = turf.center(features);\n *\n * //addToMap\n * var addToMap = [features, center]\n * center.properties['marker-size'] = 'large';\n * center.properties['marker-color'] = '#000';\n */\nfunction center<P extends GeoJsonProperties = GeoJsonProperties>(\n  geojson: AllGeoJSON,\n  options: { properties?: P; bbox?: BBox; id?: Id } = {}\n): Feature<Point, P> {\n  const ext = bbox(geojson);\n  const x = (ext[0] + ext[2]) / 2;\n  const y = (ext[1] + ext[3]) / 2;\n  return point([x, y], options.properties, options);\n}\n\nexport { center };\nexport default center;\n"
  },
  {
    "path": "packages/turf-center/package.json",
    "content": "{\n  \"name\": \"@turf/center\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Finds the central point of a GeoJSON feature, like a city or a park. Ideal for placing labels or markers.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"centroid\",\n    \"geojson\",\n    \"gis\",\n    \"geospatial\",\n    \"geo\",\n    \"turf\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/bbox-polygon\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-center/test/in/feature-collection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833351373672485, 45.760809294695534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.8331475257873535, 45.760296567821456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833984374999999, 45.76073818687033]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.834005832672119, 45.76022171678877]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center/test/in/imbalanced-polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [4.854240417480469, 45.77258200374433],\n        [4.8445844650268555, 45.777431068484894],\n        [4.845442771911621, 45.778658234059755],\n        [4.845914840698242, 45.779376562352425],\n        [4.846644401550292, 45.78021460033108],\n        [4.847245216369629, 45.78078326178593],\n        [4.848060607910156, 45.78138184652523],\n        [4.8487043380737305, 45.78186070968964],\n        [4.849562644958495, 45.78248921135124],\n        [4.850893020629883, 45.78302792142197],\n        [4.852008819580077, 45.78374619341895],\n        [4.852995872497559, 45.784075398324866],\n        [4.853854179382324, 45.78443452873236],\n        [4.8549699783325195, 45.78470387501975],\n        [4.85569953918457, 45.784793656826345],\n        [4.857330322265624, 45.784853511283764],\n        [4.858231544494629, 45.78494329284938],\n        [4.859304428100585, 45.784883438488365],\n        [4.858360290527344, 45.77294120818474],\n        [4.854240417480469, 45.77258200374433]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-center/test/in/linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [4.86020565032959, 45.76884015325622],\n      [4.85994815826416, 45.749558161214516]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-center/test/in/point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [4.831961989402771, 45.75764678012361]\n  }\n}\n"
  },
  {
    "path": "packages/turf-center/test/in/points-with-weights.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"options\": {\n    \"weight\": \"weight\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      },\n      \"properties\": {\n        \"weight\": 10\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 5]\n      },\n      \"properties\": {\n        \"weight\": 1\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 5]\n      },\n      \"properties\": {\n        \"weight\": 2\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 0]\n      },\n      \"properties\": {\n        \"weight\": 3\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center/test/in/polygon-without-weights.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122.51953124999999, -22.024545601240337],\n            [126.91406249999999, -22.024545601240337],\n            [126.91406249999999, -18.312810846425442],\n            [122.51953124999999, -18.312810846425442],\n            [122.51953124999999, -22.024545601240337]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140.888671875, -36.10237644873643],\n            [145.283203125, -36.10237644873643],\n            [145.283203125, -32.76880048488168],\n            [140.888671875, -32.76880048488168],\n            [140.888671875, -36.10237644873643]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center/test/in/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [4.8250579833984375, 45.79398056386735],\n        [4.882392883300781, 45.79254427435898],\n        [4.910373687744141, 45.76081677972451],\n        [4.894924163818359, 45.7271539426975],\n        [4.824199676513671, 45.71337148333104],\n        [4.773387908935547, 45.74021417890731],\n        [4.778022766113281, 45.778418789239055],\n        [4.8250579833984375, 45.79398056386735]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-center/test/out/feature-collection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833576679229736, 45.76051550574215]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833351373672485, 45.760809294695534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.8331475257873535, 45.760296567821456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833984374999999, 45.76073818687033]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.834005832672119, 45.76022171678877]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.8331475257873535, 45.76022171678877],\n          [4.833576679229736, 45.76051550574215]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.834005832672119, 45.76022171678877],\n          [4.833576679229736, 45.76051550574215]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.834005832672119, 45.760809294695534],\n          [4.833576679229736, 45.76051550574215]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.8331475257873535, 45.760809294695534],\n          [4.833576679229736, 45.76051550574215]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.8331475257873535, 45.76022171678877],\n          [4.833576679229736, 45.76051550574215]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [\n        4.8331475257873535, 45.76022171678877, 4.834005832672119, 45.760809294695534\n      ],\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.8331475257873535, 45.76022171678877],\n            [4.834005832672119, 45.76022171678877],\n            [4.834005832672119, 45.760809294695534],\n            [4.8331475257873535, 45.760809294695534],\n            [4.8331475257873535, 45.76022171678877]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center/test/out/imbalanced-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.851944446563721, 45.778762648296855]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.854240417480469, 45.77258200374433],\n            [4.8445844650268555, 45.777431068484894],\n            [4.845442771911621, 45.778658234059755],\n            [4.845914840698242, 45.779376562352425],\n            [4.846644401550292, 45.78021460033108],\n            [4.847245216369629, 45.78078326178593],\n            [4.848060607910156, 45.78138184652523],\n            [4.8487043380737305, 45.78186070968964],\n            [4.849562644958495, 45.78248921135124],\n            [4.850893020629883, 45.78302792142197],\n            [4.852008819580077, 45.78374619341895],\n            [4.852995872497559, 45.784075398324866],\n            [4.853854179382324, 45.78443452873236],\n            [4.8549699783325195, 45.78470387501975],\n            [4.85569953918457, 45.784793656826345],\n            [4.857330322265624, 45.784853511283764],\n            [4.858231544494629, 45.78494329284938],\n            [4.859304428100585, 45.784883438488365],\n            [4.858360290527344, 45.77294120818474],\n            [4.854240417480469, 45.77258200374433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.8445844650268555, 45.77258200374433],\n          [4.851944446563721, 45.778762648296855]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.859304428100585, 45.77258200374433],\n          [4.851944446563721, 45.778762648296855]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.859304428100585, 45.78494329284938],\n          [4.851944446563721, 45.778762648296855]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.8445844650268555, 45.78494329284938],\n          [4.851944446563721, 45.778762648296855]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.8445844650268555, 45.77258200374433],\n          [4.851944446563721, 45.778762648296855]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [\n        4.8445844650268555, 45.77258200374433, 4.859304428100585, 45.78494329284938\n      ],\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.8445844650268555, 45.77258200374433],\n            [4.859304428100585, 45.77258200374433],\n            [4.859304428100585, 45.78494329284938],\n            [4.8445844650268555, 45.78494329284938],\n            [4.8445844650268555, 45.77258200374433]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center/test/out/linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.860076904296875, 45.75919915723537]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.86020565032959, 45.76884015325622],\n          [4.85994815826416, 45.749558161214516]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.85994815826416, 45.749558161214516],\n          [4.860076904296875, 45.75919915723537]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.86020565032959, 45.749558161214516],\n          [4.860076904296875, 45.75919915723537]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.86020565032959, 45.76884015325622],\n          [4.860076904296875, 45.75919915723537]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.85994815826416, 45.76884015325622],\n          [4.860076904296875, 45.75919915723537]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.85994815826416, 45.749558161214516],\n          [4.860076904296875, 45.75919915723537]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [4.85994815826416, 45.749558161214516, 4.86020565032959, 45.76884015325622],\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.85994815826416, 45.749558161214516],\n            [4.86020565032959, 45.749558161214516],\n            [4.86020565032959, 45.76884015325622],\n            [4.85994815826416, 45.76884015325622],\n            [4.85994815826416, 45.749558161214516]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center/test/out/point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.831961989402771, 45.75764678012361]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.831961989402771, 45.75764678012361]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.831961989402771, 45.75764678012361],\n          [4.831961989402771, 45.75764678012361]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.831961989402771, 45.75764678012361],\n          [4.831961989402771, 45.75764678012361]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.831961989402771, 45.75764678012361],\n          [4.831961989402771, 45.75764678012361]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.831961989402771, 45.75764678012361],\n          [4.831961989402771, 45.75764678012361]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.831961989402771, 45.75764678012361],\n          [4.831961989402771, 45.75764678012361]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [\n        4.831961989402771, 45.75764678012361, 4.831961989402771, 45.75764678012361\n      ],\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.831961989402771, 45.75764678012361],\n            [4.831961989402771, 45.75764678012361],\n            [4.831961989402771, 45.75764678012361],\n            [4.831961989402771, 45.75764678012361],\n            [4.831961989402771, 45.75764678012361]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center/test/out/points-with-weights.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.5, 2.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      },\n      \"properties\": {\n        \"weight\": 10\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 5]\n      },\n      \"properties\": {\n        \"weight\": 1\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 5]\n      },\n      \"properties\": {\n        \"weight\": 2\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 0]\n      },\n      \"properties\": {\n        \"weight\": 3\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [2.5, 2.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [5, 0],\n          [2.5, 2.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [5, 5],\n          [2.5, 2.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 5],\n          [2.5, 2.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [2.5, 2.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [0, 0, 5, 5],\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [5, 0],\n            [5, 5],\n            [0, 5],\n            [0, 0]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center/test/out/polygon-without-weights.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [133.9013671875, -27.207593647580936]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122.51953124999999, -22.024545601240337],\n            [126.91406249999999, -22.024545601240337],\n            [126.91406249999999, -18.312810846425442],\n            [122.51953124999999, -18.312810846425442],\n            [122.51953124999999, -22.024545601240337]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140.888671875, -36.10237644873643],\n            [145.283203125, -36.10237644873643],\n            [145.283203125, -32.76880048488168],\n            [140.888671875, -32.76880048488168],\n            [140.888671875, -36.10237644873643]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [122.51953124999999, -36.10237644873643],\n          [133.9013671875, -27.207593647580936]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [145.283203125, -36.10237644873643],\n          [133.9013671875, -27.207593647580936]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [145.283203125, -18.312810846425442],\n          [133.9013671875, -27.207593647580936]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [122.51953124999999, -18.312810846425442],\n          [133.9013671875, -27.207593647580936]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [122.51953124999999, -36.10237644873643],\n          [133.9013671875, -27.207593647580936]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [\n        122.51953124999999, -36.10237644873643, 145.283203125, -18.312810846425442\n      ],\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122.51953124999999, -36.10237644873643],\n            [145.283203125, -36.10237644873643],\n            [145.283203125, -18.312810846425442],\n            [122.51953124999999, -18.312810846425442],\n            [122.51953124999999, -36.10237644873643]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center/test/out/polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.841880798339844, 45.7536760235992]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.8250579833984375, 45.79398056386735],\n            [4.882392883300781, 45.79254427435898],\n            [4.910373687744141, 45.76081677972451],\n            [4.894924163818359, 45.7271539426975],\n            [4.824199676513671, 45.71337148333104],\n            [4.773387908935547, 45.74021417890731],\n            [4.778022766113281, 45.778418789239055],\n            [4.8250579833984375, 45.79398056386735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.773387908935547, 45.71337148333104],\n          [4.841880798339844, 45.7536760235992]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.910373687744141, 45.71337148333104],\n          [4.841880798339844, 45.7536760235992]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.910373687744141, 45.79398056386735],\n          [4.841880798339844, 45.7536760235992]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.773387908935547, 45.79398056386735],\n          [4.841880798339844, 45.7536760235992]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.773387908935547, 45.71337148333104],\n          [4.841880798339844, 45.7536760235992]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [\n        4.773387908935547, 45.71337148333104, 4.910373687744141, 45.79398056386735\n      ],\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.773387908935547, 45.71337148333104],\n            [4.910373687744141, 45.71337148333104],\n            [4.910373687744141, 45.79398056386735],\n            [4.773387908935547, 45.79398056386735],\n            [4.773387908935547, 45.71337148333104]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center/test.ts",
    "content": "import test from \"tape\";\nimport { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { bboxPolygon } from \"@turf/bbox-polygon\";\nimport { bbox } from \"@turf/bbox\";\nimport { featureEach, coordEach } from \"@turf/meta\";\nimport { lineString, featureCollection } from \"@turf/helpers\";\nimport { center } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-center\", (t) => {\n  glob\n    .sync(path.join(__dirname, \"test\", \"in\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const geojson = loadJsonFileSync(filepath);\n      const options = geojson.options || {};\n      options.properties = { \"marker-symbol\": \"star\", \"marker-color\": \"#F00\" };\n      const centered = center(geojson, options);\n\n      // Display Results\n      const results = featureCollection([centered]);\n      featureEach(geojson, (feature) => results.features.push(feature));\n      const extent = bboxPolygon(bbox(geojson));\n      extent.properties = {\n        stroke: \"#00F\",\n        \"stroke-width\": 1,\n        \"fill-opacity\": 0,\n      };\n      coordEach(extent, (coord) =>\n        results.features.push(\n          lineString([coord, centered.geometry.coordinates], {\n            stroke: \"#00F\",\n            \"stroke-width\": 1,\n          })\n        )\n      );\n      results.features.push(extent);\n\n      const out = filepath.replace(\n        path.join(\"test\", \"in\"),\n        path.join(\"test\", \"out\")\n      );\n      if (process.env.REGEN) writeJsonFileSync(out, results);\n      t.deepEqual(results, loadJsonFileSync(out), path.parse(filepath).name);\n    });\n  t.end();\n});\n\ntest(\"turf-center -- properties\", (t) => {\n  const line = lineString([\n    [0, 0],\n    [1, 1],\n  ]);\n  const pt = center(line, { properties: { foo: \"bar\" } });\n  t.equal(pt.properties.foo, \"bar\", \"translate properties\");\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-center/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-center/types.ts",
    "content": "import { lineString } from \"@turf/helpers\";\nimport { center } from \"./index.js\";\n\nconst line = lineString([\n  [0, 0],\n  [10, 10],\n]);\n\ncenter(line);\ncenter(line, { properties: { foo: \"bar\" } });\n"
  },
  {
    "path": "packages/turf-center-mean/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-center-mean/README.md",
    "content": "# @turf/center-mean\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## centerMean\n\nTakes a [Feature][1] or [FeatureCollection][2] and returns the mean center. Can be weighted.\n\n### Parameters\n\n*   `geojson` **[GeoJSON][3]** GeoJSON to be centered\n*   `options` **[Object][4]** Optional parameters (optional, default `{}`)\n\n    *   `options.properties` **[Object][4]** Translate GeoJSON Properties to Point (optional, default `{}`)\n    *   `options.bbox` **[Object][4]** Translate GeoJSON BBox to Point (optional, default `{}`)\n    *   `options.id` **[Object][4]** Translate GeoJSON Id to Point (optional, default `{}`)\n    *   `options.weight` **[string][5]?** the property name used to weight the center\n\n### Examples\n\n```javascript\nvar features = turf.featureCollection([\n  turf.point([-97.522259, 35.4691], {value: 10}),\n  turf.point([-97.502754, 35.463455], {value: 3}),\n  turf.point([-97.508269, 35.463245], {value: 5})\n]);\n\nvar options = {weight: \"value\"}\nvar mean = turf.centerMean(features, options);\n\n//addToMap\nvar addToMap = [features, mean]\nmean.properties['marker-size'] = 'large';\nmean.properties['marker-color'] = '#000';\n```\n\nReturns **[Feature][1]<[Point][6]>** a Point feature at the mean center point of all input features\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/center-mean\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-center-mean/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { centerMean } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst fixtures = glob\n  .sync(path.join(__dirname, \"test\", \"in\", \"*.geojson\"))\n  .map((input) => {\n    return {\n      name: path.parse(input).name,\n      geojson: loadJsonFileSync(input),\n    };\n  });\n\n/**\n * Single Process Benchmark\n *\n * feature-collection: 0.445ms\n * imbalanced-polygon: 0.051ms\n * linestring: 0.027ms\n * point: 0.011ms\n * polygon: 0.013ms\n */\nfor (const { name, geojson } of fixtures) {\n  console.time(name);\n  centerMean(geojson);\n  console.timeEnd(name);\n}\n\n/**\n * Benchmark Results\n *\n * feature-collection x 2,786,700 ops/sec ±1.50% (83 runs sampled)\n * imbalanced-polygon x 1,364,145 ops/sec ±3.33% (76 runs sampled)\n * linestring x 4,104,106 ops/sec ±4.16% (81 runs sampled)\n * point x 4,901,692 ops/sec ±5.23% (81 runs sampled)\n * polygon x 2,862,759 ops/sec ±1.14% (86 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-center-mean\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => centerMean(geojson));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-center-mean/index.ts",
    "content": "import { BBox, Feature, Point, GeoJsonProperties } from \"geojson\";\nimport { geomEach, coordEach } from \"@turf/meta\";\nimport { isNumber, point, Id } from \"@turf/helpers\";\n\n/**\n * Takes a {@link Feature} or {@link FeatureCollection} and returns the mean center. Can be weighted.\n *\n * @function\n * @param {GeoJSON} geojson GeoJSON to be centered\n * @param {Object} [options={}] Optional parameters\n * @param {Object} [options.properties={}] Translate GeoJSON Properties to Point\n * @param {Object} [options.bbox={}] Translate GeoJSON BBox to Point\n * @param {Object} [options.id={}] Translate GeoJSON Id to Point\n * @param {string} [options.weight] the property name used to weight the center\n * @returns {Feature<Point>} a Point feature at the mean center point of all input features\n * @example\n * var features = turf.featureCollection([\n *   turf.point([-97.522259, 35.4691], {value: 10}),\n *   turf.point([-97.502754, 35.463455], {value: 3}),\n *   turf.point([-97.508269, 35.463245], {value: 5})\n * ]);\n *\n * var options = {weight: \"value\"}\n * var mean = turf.centerMean(features, options);\n *\n * //addToMap\n * var addToMap = [features, mean]\n * mean.properties['marker-size'] = 'large';\n * mean.properties['marker-color'] = '#000';\n */\nfunction centerMean<P extends GeoJsonProperties = GeoJsonProperties>(\n  geojson: any, // To-Do include Typescript AllGeoJSON\n  options: { properties?: P; bbox?: BBox; id?: Id; weight?: string } = {}\n): Feature<Point, P> {\n  let sumXs = 0;\n  let sumYs = 0;\n  let sumNs = 0;\n  geomEach(geojson, function (geom, featureIndex, properties) {\n    let weight = options.weight ? properties?.[options.weight] : undefined;\n    weight = weight === undefined || weight === null ? 1 : weight;\n    if (!isNumber(weight))\n      throw new Error(\n        \"weight value must be a number for feature index \" + featureIndex\n      );\n    weight = Number(weight);\n    if (weight > 0) {\n      coordEach(geom, function (coord) {\n        sumXs += coord[0] * weight;\n        sumYs += coord[1] * weight;\n        sumNs += weight;\n      });\n    }\n  });\n  return point([sumXs / sumNs, sumYs / sumNs], options.properties, options);\n}\n\nexport { centerMean };\nexport default centerMean;\n"
  },
  {
    "path": "packages/turf-center-mean/package.json",
    "content": "{\n  \"name\": \"@turf/center-mean\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a Feature or FeatureCollection and returns the mean center.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Moacir P. de Sá Pereira <@muziejus>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"center\",\n    \"mean\",\n    \"geojson\",\n    \"gis\",\n    \"geospatial\",\n    \"geo\",\n    \"turf\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/center\": \"workspace:*\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/in/feature-collection-negative-weights.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"options\": {\n    \"weight\": \"weight\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 15,\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#000\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833351373672485, 45.760809294695534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": -4\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.8331475257873535, 45.760296567821456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3,\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#888\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833984374999999, 45.76073818687033]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.834005832672119, 45.76022171678877]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/in/feature-collection-weight.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"options\": {\n    \"weight\": \"weight\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 15,\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#000\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833351373672485, 45.760809294695534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.8331475257873535, 45.760296567821456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": \"5\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833984374999999, 45.76073818687033]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 2\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.834005832672119, 45.76022171678877]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/in/feature-collection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833351373672485, 45.760809294695534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.8331475257873535, 45.760296567821456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833984374999999, 45.76073818687033]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.834005832672119, 45.76022171678877]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/in/imbalanced-polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [4.854240417480469, 45.77258200374433],\n        [4.8445844650268555, 45.777431068484894],\n        [4.845442771911621, 45.778658234059755],\n        [4.845914840698242, 45.779376562352425],\n        [4.846644401550292, 45.78021460033108],\n        [4.847245216369629, 45.78078326178593],\n        [4.848060607910156, 45.78138184652523],\n        [4.8487043380737305, 45.78186070968964],\n        [4.849562644958495, 45.78248921135124],\n        [4.850893020629883, 45.78302792142197],\n        [4.852008819580077, 45.78374619341895],\n        [4.852995872497559, 45.784075398324866],\n        [4.853854179382324, 45.78443452873236],\n        [4.8549699783325195, 45.78470387501975],\n        [4.85569953918457, 45.784793656826345],\n        [4.857330322265624, 45.784853511283764],\n        [4.858231544494629, 45.78494329284938],\n        [4.859304428100585, 45.784883438488365],\n        [4.858360290527344, 45.77294120818474],\n        [4.854240417480469, 45.77258200374433]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/in/linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [4.86020565032959, 45.76884015325622],\n      [4.85994815826416, 45.749558161214516]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/in/point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [4.831961989402771, 45.75764678012361]\n  }\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/in/points-with-weights.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"options\": {\n    \"weight\": \"weight\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      },\n      \"properties\": {\n        \"weight\": 10\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 5]\n      },\n      \"properties\": {\n        \"weight\": 1\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 5]\n      },\n      \"properties\": {\n        \"weight\": 2\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 0]\n      },\n      \"properties\": {\n        \"weight\": 3\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/in/polygon-with-weights.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"options\": {\n    \"weight\": \"weight\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122.51953124999999, -22.024545601240337],\n            [126.91406249999999, -22.024545601240337],\n            [126.91406249999999, -18.312810846425442],\n            [122.51953124999999, -18.312810846425442],\n            [122.51953124999999, -22.024545601240337]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140.888671875, -36.10237644873643],\n            [145.283203125, -36.10237644873643],\n            [145.283203125, -32.76880048488168],\n            [140.888671875, -32.76880048488168],\n            [140.888671875, -36.10237644873643]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/in/polygon-without-weights.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122.51953124999999, -22.024545601240337],\n            [126.91406249999999, -22.024545601240337],\n            [126.91406249999999, -18.312810846425442],\n            [122.51953124999999, -18.312810846425442],\n            [122.51953124999999, -22.024545601240337]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140.888671875, -36.10237644873643],\n            [145.283203125, -36.10237644873643],\n            [145.283203125, -32.76880048488168],\n            [140.888671875, -32.76880048488168],\n            [140.888671875, -36.10237644873643]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/in/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [4.8250579833984375, 45.79398056386735],\n        [4.882392883300781, 45.79254427435898],\n        [4.910373687744141, 45.76081677972451],\n        [4.894924163818359, 45.7271539426975],\n        [4.824199676513671, 45.71337148333104],\n        [4.773387908935547, 45.74021417890731],\n        [4.778022766113281, 45.778418789239055],\n        [4.8250579833984375, 45.79398056386735]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/out/feature-collection-negative-weights.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 15,\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#000\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833351373672485, 45.760809294695534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": -4\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.8331475257873535, 45.760296567821456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3,\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#888\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833984374999999, 45.76073818687033]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.834005832672119, 45.76022171678877]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.833351373672485, 45.760809294695534],\n          [4.833457, 45.760797]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.8331475257873535, 45.760296567821456],\n          [4.833457, 45.760797]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.833984374999999, 45.76073818687033],\n          [4.833457, 45.760797]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.834005832672119, 45.76022171678877],\n          [4.833457, 45.760797]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\",\n        \"marker-color\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833577, 45.760516]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833457, 45.760797]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/out/feature-collection-weight.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 15,\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#000\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833351373672485, 45.760809294695534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.8331475257873535, 45.760296567821456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": \"5\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833984374999999, 45.76073818687033]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 2\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.834005832672119, 45.76022171678877]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.833351373672485, 45.760809294695534],\n          [4.833492, 45.760672]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.8331475257873535, 45.760296567821456],\n          [4.833492, 45.760672]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.833984374999999, 45.76073818687033],\n          [4.833492, 45.760672]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.834005832672119, 45.76022171678877],\n          [4.833492, 45.760672]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\",\n        \"marker-color\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833577, 45.760516]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833492, 45.760672]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/out/feature-collection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833351373672485, 45.760809294695534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.8331475257873535, 45.760296567821456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833984374999999, 45.76073818687033]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.834005832672119, 45.76022171678877]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.833351373672485, 45.760809294695534],\n          [4.833622, 45.760516]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.8331475257873535, 45.760296567821456],\n          [4.833622, 45.760516]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.833984374999999, 45.76073818687033],\n          [4.833622, 45.760516]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.834005832672119, 45.76022171678877],\n          [4.833622, 45.760516]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\",\n        \"marker-color\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833577, 45.760516]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833622, 45.760516]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/out/imbalanced-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.854240417480469, 45.77258200374433],\n            [4.8445844650268555, 45.777431068484894],\n            [4.845442771911621, 45.778658234059755],\n            [4.845914840698242, 45.779376562352425],\n            [4.846644401550292, 45.78021460033108],\n            [4.847245216369629, 45.78078326178593],\n            [4.848060607910156, 45.78138184652523],\n            [4.8487043380737305, 45.78186070968964],\n            [4.849562644958495, 45.78248921135124],\n            [4.850893020629883, 45.78302792142197],\n            [4.852008819580077, 45.78374619341895],\n            [4.852995872497559, 45.784075398324866],\n            [4.853854179382324, 45.78443452873236],\n            [4.8549699783325195, 45.78470387501975],\n            [4.85569953918457, 45.784793656826345],\n            [4.857330322265624, 45.784853511283764],\n            [4.858231544494629, 45.78494329284938],\n            [4.859304428100585, 45.784883438488365],\n            [4.858360290527344, 45.77294120818474],\n            [4.854240417480469, 45.77258200374433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.854240417480469, 45.77258200374433],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.8445844650268555, 45.777431068484894],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.845442771911621, 45.778658234059755],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.845914840698242, 45.779376562352425],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.846644401550292, 45.78021460033108],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.847245216369629, 45.78078326178593],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.848060607910156, 45.78138184652523],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.8487043380737305, 45.78186070968964],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.849562644958495, 45.78248921135124],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.850893020629883, 45.78302792142197],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.852008819580077, 45.78374619341895],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.852995872497559, 45.784075398324866],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.853854179382324, 45.78443452873236],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.8549699783325195, 45.78470387501975],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.85569953918457, 45.784793656826345],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.857330322265624, 45.784853511283764],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.858231544494629, 45.78494329284938],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.859304428100585, 45.784883438488365],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.858360290527344, 45.77294120818474],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.854240417480469, 45.77258200374433],\n          [4.851914, 45.780988]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\",\n        \"marker-color\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.851944, 45.778763]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.851914, 45.780988]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/out/linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.86020565032959, 45.76884015325622],\n          [4.85994815826416, 45.749558161214516]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.86020565032959, 45.76884015325622],\n          [4.860077, 45.759199]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.85994815826416, 45.749558161214516],\n          [4.860077, 45.759199]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\",\n        \"marker-color\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.860077, 45.759199]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.860077, 45.759199]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/out/point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.831961989402771, 45.75764678012361]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.831961989402771, 45.75764678012361],\n          [4.831962, 45.757647]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\",\n        \"marker-color\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.831962, 45.757647]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.831962, 45.757647]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/out/points-with-weights.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      },\n      \"properties\": {\n        \"weight\": 10\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 5]\n      },\n      \"properties\": {\n        \"weight\": 1\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 5]\n      },\n      \"properties\": {\n        \"weight\": 2\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 0]\n      },\n      \"properties\": {\n        \"weight\": 3\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [1.5625, 0.9375]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 5],\n          [1.5625, 0.9375]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [5, 5],\n          [1.5625, 0.9375]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [5, 0],\n          [1.5625, 0.9375]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\",\n        \"marker-color\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.5, 2.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1.5625, 0.9375]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/out/polygon-with-weights.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122.51953124999999, -22.024545601240337],\n            [126.91406249999999, -22.024545601240337],\n            [126.91406249999999, -18.312810846425442],\n            [122.51953124999999, -18.312810846425442],\n            [122.51953124999999, -22.024545601240337]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140.888671875, -36.10237644873643],\n            [145.283203125, -36.10237644873643],\n            [145.283203125, -32.76880048488168],\n            [140.888671875, -32.76880048488168],\n            [140.888671875, -36.10237644873643]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [122.51953124999999, -22.024545601240337],\n          [128.516376, -23.823489]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [126.91406249999999, -22.024545601240337],\n          [128.516376, -23.823489]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [126.91406249999999, -18.312810846425442],\n          [128.516376, -23.823489]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [122.51953124999999, -18.312810846425442],\n          [128.516376, -23.823489]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [122.51953124999999, -22.024545601240337],\n          [128.516376, -23.823489]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [140.888671875, -36.10237644873643],\n          [128.516376, -23.823489]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [145.283203125, -36.10237644873643],\n          [128.516376, -23.823489]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [145.283203125, -32.76880048488168],\n          [128.516376, -23.823489]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [140.888671875, -32.76880048488168],\n          [128.516376, -23.823489]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [140.888671875, -36.10237644873643],\n          [128.516376, -23.823489]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\",\n        \"marker-color\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [133.901367, -27.207594]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [128.516376, -23.823489]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/out/polygon-without-weights.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122.51953124999999, -22.024545601240337],\n            [126.91406249999999, -22.024545601240337],\n            [126.91406249999999, -18.312810846425442],\n            [122.51953124999999, -18.312810846425442],\n            [122.51953124999999, -22.024545601240337]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140.888671875, -36.10237644873643],\n            [145.283203125, -36.10237644873643],\n            [145.283203125, -32.76880048488168],\n            [140.888671875, -32.76880048488168],\n            [140.888671875, -36.10237644873643]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [122.51953124999999, -22.024545601240337],\n          [133.461914, -27.654399]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [126.91406249999999, -22.024545601240337],\n          [133.461914, -27.654399]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [126.91406249999999, -18.312810846425442],\n          [133.461914, -27.654399]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [122.51953124999999, -18.312810846425442],\n          [133.461914, -27.654399]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [122.51953124999999, -22.024545601240337],\n          [133.461914, -27.654399]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [140.888671875, -36.10237644873643],\n          [133.461914, -27.654399]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [145.283203125, -36.10237644873643],\n          [133.461914, -27.654399]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [145.283203125, -32.76880048488168],\n          [133.461914, -27.654399]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [140.888671875, -32.76880048488168],\n          [133.461914, -27.654399]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [140.888671875, -36.10237644873643],\n          [133.461914, -27.654399]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\",\n        \"marker-color\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [133.901367, -27.207594]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [133.461914, -27.654399]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test/out/polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.8250579833984375, 45.79398056386735],\n            [4.882392883300781, 45.79254427435898],\n            [4.910373687744141, 45.76081677972451],\n            [4.894924163818359, 45.7271539426975],\n            [4.824199676513671, 45.71337148333104],\n            [4.773387908935547, 45.74021417890731],\n            [4.778022766113281, 45.778418789239055],\n            [4.8250579833984375, 45.79398056386735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.8250579833984375, 45.79398056386735],\n          [4.839177, 45.76256]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.882392883300781, 45.79254427435898],\n          [4.839177, 45.76256]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.910373687744141, 45.76081677972451],\n          [4.839177, 45.76256]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.894924163818359, 45.7271539426975],\n          [4.839177, 45.76256]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.824199676513671, 45.71337148333104],\n          [4.839177, 45.76256]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.773387908935547, 45.74021417890731],\n          [4.839177, 45.76256]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.778022766113281, 45.778418789239055],\n          [4.839177, 45.76256]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.8250579833984375, 45.79398056386735],\n          [4.839177, 45.76256]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\",\n        \"marker-color\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.841881, 45.753676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"star\",\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.839177, 45.76256]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-mean/test.ts",
    "content": "import test from \"tape\";\nimport { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { truncate } from \"@turf/truncate\";\nimport { featureEach, coordEach } from \"@turf/meta\";\nimport { lineString, featureCollection } from \"@turf/helpers\";\nimport { center } from \"@turf/center\";\nimport { centerMean } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-center-mean\", (t) => {\n  glob\n    .sync(path.join(__dirname, \"test\", \"in\", \"*.geojson\"))\n    .forEach((filepath) => {\n      const geojson = loadJsonFileSync(filepath);\n      const options = geojson.options || {};\n      options.properties = { \"marker-symbol\": \"star\", \"marker-color\": \"#F00\" };\n      const centered = truncate(centerMean(geojson, options));\n\n      // Display Results\n      const results = featureCollection([]);\n      featureEach(geojson, (feature) => results.features.push(feature));\n      coordEach(geojson, (coord) =>\n        results.features.push(\n          lineString([coord, centered.geometry.coordinates], {\n            stroke: \"#00F\",\n            \"stroke-width\": 1,\n          })\n        )\n      );\n      // Add @turf/center to compare position\n      results.features.push(\n        truncate(\n          center(geojson, {\n            properties: { \"marker-symbol\": \"circle\", \"marker-color\": \"#00F\" },\n          })\n        )\n      );\n      results.features.push(centered);\n\n      const out = filepath.replace(\n        path.join(\"test\", \"in\"),\n        path.join(\"test\", \"out\")\n      );\n      if (process.env.REGEN) writeJsonFileSync(out, results);\n      t.deepEqual(results, loadJsonFileSync(out), path.parse(filepath).name);\n    });\n  t.end();\n});\n\ntest(\"turf-center-mean -- properties\", (t) => {\n  const line = lineString([\n    [0, 0],\n    [1, 1],\n  ]);\n  const pt = centerMean(line, { properties: { foo: \"bar\" } });\n  t.equal(pt.properties.foo, \"bar\", \"translate properties\");\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-center-mean/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-center-mean/types.ts",
    "content": "import { lineString } from \"@turf/helpers\";\nimport { centerMean } from \"./index.js\";\n\nconst line = lineString([\n  [0, 0],\n  [10, 10],\n]);\n\ncenterMean(line);\ncenterMean(line, { properties: { foo: \"bar\" } });\ncenterMean(line, { weight: \"foo\" });\n"
  },
  {
    "path": "packages/turf-center-median/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-center-median/README.md",
    "content": "# @turf/center-median\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## centerMedian\n\nTakes a [FeatureCollection][1] of points and calculates the median center,\nalgorithimically. The median center is understood as the point that is\nrequires the least total travel from all other points.\n\nTurfjs has four different functions for calculating the center of a set of\ndata. Each is useful depending on circumstance.\n\n`@turf/center` finds the simple center of a dataset, by finding the\nmidpoint between the extents of the data. That is, it divides in half the\nfarthest east and farthest west point as well as the farthest north and\nfarthest south.\n\n`@turf/center-of-mass` imagines that the dataset is a sheet of paper.\nThe center of mass is where the sheet would balance on a fingertip.\n\n`@turf/center-mean` takes the averages of all the coordinates and\nproduces a value that respects that. Unlike `@turf/center`, it is\nsensitive to clusters and outliers. It lands in the statistical middle of a\ndataset, not the geographical. It can also be weighted, meaning certain\npoints are more important than others.\n\n`@turf/center-median` takes the mean center and tries to find, iteratively,\na new point that requires the least amount of travel from all the points in\nthe dataset. It is not as sensitive to outliers as `@turf/center-mean`, but it is\nattracted to clustered data. It, too, can be weighted.\n\n**Bibliography**\n\nHarold W. Kuhn and Robert E. Kuenne, “An Efficient Algorithm for the\nNumerical Solution of the Generalized Weber Problem in Spatial\nEconomics,” *Journal of Regional Science* 4, no. 2 (1962): 21–33,\ndoi:{@link [https://doi.org/10.1111/j.1467-9787.1962.tb00902.x}][2].\n\nJames E. Burt, Gerald M. Barber, and David L. Rigby, *Elementary\nStatistics for Geographers*, 3rd ed., New York: The Guilford\nPress, 2009, 150–151.\n\n### Parameters\n\n*   `features` **[FeatureCollection][1]\\<any>** Any GeoJSON Feature Collection\n*   `options` **[Object][3]** Optional parameters (optional, default `{}`)\n\n    *   `options.weight` **[string][4]?** the property name used to weight the center\n    *   `options.tolerance` **[number][5]** the difference in distance between candidate medians at which point the algorighim stops iterating. (optional, default `0.001`)\n    *   `options.counter` **[number][5]** how many attempts to find the median, should the tolerance be insufficient. (optional, default `10`)\n\n### Examples\n\n```javascript\nvar points = turf.points([[0, 0], [1, 0], [0, 1], [5, 8]]);\nvar medianCenter = turf.centerMedian(points);\n\n//addToMap\nvar addToMap = [points, medianCenter]\n```\n\nReturns **[Feature][6]<[Point][7]>** The median center of the collection\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[2]: https://doi.org/10.1111/j.1467-9787.1962.tb00902.x}\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/center-median\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-center-median/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { randomPoint } from \"@turf/random\";\nimport { centerMedian } from \"./index.js\";\n\n/**\n * Benchmark Results\n *\n * turf-center-median - 100 points x 1,900 ops/sec ±1.39% (86 runs sampled)\n * turf-center-median - 200 points x 1,031 ops/sec ±1.01% (90 runs sampled)\n * turf-center-median - 500 points x 442 ops/sec ±1.27% (75 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-center-median\");\n\nsuite\n  .add(\"turf-center-median - 100 points\", () => centerMedian(randomPoint(100)))\n  .add(\"turf-center-median - 200 points\", () => centerMedian(randomPoint(200)))\n  .add(\"turf-center-median - 500 points\", () => centerMedian(randomPoint(500)))\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-center-median/index.ts",
    "content": "import { FeatureCollection, Feature, Point, Position } from \"geojson\";\nimport { centerMean } from \"@turf/center-mean\";\nimport { distance } from \"@turf/distance\";\nimport { centroid } from \"@turf/centroid\";\nimport { isNumber, point, isObject, featureCollection } from \"@turf/helpers\";\nimport { featureEach } from \"@turf/meta\";\n\n/**\n * Takes a {@link FeatureCollection} of points and calculates the median center,\n * algorithimically. The median center is understood as the point that is\n * requires the least total travel from all other points.\n *\n * Turfjs has four different functions for calculating the center of a set of\n * data. Each is useful depending on circumstance.\n *\n * `@turf/center` finds the simple center of a dataset, by finding the\n * midpoint between the extents of the data. That is, it divides in half the\n * farthest east and farthest west point as well as the farthest north and\n * farthest south.\n *\n * `@turf/center-of-mass` imagines that the dataset is a sheet of paper.\n * The center of mass is where the sheet would balance on a fingertip.\n *\n * `@turf/center-mean` takes the averages of all the coordinates and\n * produces a value that respects that. Unlike `@turf/center`, it is\n * sensitive to clusters and outliers. It lands in the statistical middle of a\n * dataset, not the geographical. It can also be weighted, meaning certain\n * points are more important than others.\n *\n * `@turf/center-median` takes the mean center and tries to find, iteratively,\n * a new point that requires the least amount of travel from all the points in\n * the dataset. It is not as sensitive to outliers as `@turf/center-mean`, but it is\n * attracted to clustered data. It, too, can be weighted.\n *\n * **Bibliography**\n *\n * Harold W. Kuhn and Robert E. Kuenne, “An Efficient Algorithm for the\n * Numerical Solution of the Generalized Weber Problem in Spatial\n * Economics,” _Journal of Regional Science_ 4, no. 2 (1962): 21–33,\n * doi:{@link https://doi.org/10.1111/j.1467-9787.1962.tb00902.x}.\n *\n * James E. Burt, Gerald M. Barber, and David L. Rigby, _Elementary\n * Statistics for Geographers_, 3rd ed., New York: The Guilford\n * Press, 2009, 150–151.\n *\n * @function\n * @param {FeatureCollection<any>} features Any GeoJSON Feature Collection\n * @param {Object} [options={}] Optional parameters\n * @param {string} [options.weight] the property name used to weight the center\n * @param {number} [options.tolerance=0.001] the difference in distance between candidate medians at which point the algorighim stops iterating.\n * @param {number} [options.counter=10] how many attempts to find the median, should the tolerance be insufficient.\n * @returns {Feature<Point>} The median center of the collection\n * @example\n * var points = turf.points([[0, 0], [1, 0], [0, 1], [5, 8]]);\n * var medianCenter = turf.centerMedian(points);\n *\n * //addToMap\n * var addToMap = [points, medianCenter]\n */\nfunction centerMedian(\n  features: FeatureCollection<any>,\n  options: { weight?: string; tolerance?: number; counter?: number } = {}\n): Feature<\n  Point,\n  {\n    medianCandidates: Array<Position>;\n    [key: string]: any;\n  }\n> {\n  // Optional params\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  var counter = options.counter || 10;\n  if (!isNumber(counter)) throw new Error(\"counter must be a number\");\n  var weightTerm = options.weight;\n\n  // Calculate mean center:\n  var meanCenter = centerMean(features, { weight: options.weight });\n\n  // Calculate center of every feature:\n  var centroids = featureCollection<Point>([]);\n  featureEach(features, function (feature) {\n    centroids.features.push(\n      centroid(feature, {\n        properties: { weight: feature.properties?.[weightTerm!] },\n      })\n    );\n  });\n\n  const properties: MedianProperties = {\n    tolerance: options.tolerance,\n    medianCandidates: [],\n  };\n\n  return findMedian(\n    meanCenter.geometry.coordinates,\n    [0, 0],\n    centroids,\n    properties,\n    counter\n  ) as Feature<\n    Point,\n    {\n      medianCandidates: Array<Position>;\n      [key: string]: any;\n    }\n  >;\n}\n\ninterface MedianProperties {\n  tolerance?: number;\n  medianCandidates: Position[];\n}\n\n/**\n * Recursive function to find new candidate medians.\n *\n * @private\n * @param {Position} candidateMedian current candidate median\n * @param {Position} previousCandidate the previous candidate median\n * @param {FeatureCollection<Point>} centroids the collection of centroids whose median we are determining\n * @param {number} counter how many attempts to try before quitting.\n * @returns {Feature<Point>} the median center of the dataset.\n */\nfunction findMedian(\n  candidateMedian: Position,\n  previousCandidate: Position,\n  centroids: FeatureCollection<Point>,\n  properties: MedianProperties,\n  counter: number\n): Feature<Point> {\n  var tolerance = properties.tolerance || 0.001;\n  var candidateXsum = 0;\n  var candidateYsum = 0;\n  var kSum = 0;\n  var centroidCount = 0;\n  featureEach(centroids, function (theCentroid) {\n    var weightValue = theCentroid.properties?.weight;\n    var weight =\n      weightValue === undefined || weightValue === null ? 1 : weightValue;\n    weight = Number(weight);\n    if (!isNumber(weight)) throw new Error(\"weight value must be a number\");\n    if (weight > 0) {\n      centroidCount += 1;\n      var distanceFromCandidate =\n        weight * distance(theCentroid, candidateMedian);\n      if (distanceFromCandidate === 0) distanceFromCandidate = 1;\n      var k = weight / distanceFromCandidate;\n      candidateXsum += theCentroid.geometry.coordinates[0] * k;\n      candidateYsum += theCentroid.geometry.coordinates[1] * k;\n      kSum += k;\n    }\n  });\n  if (centroidCount < 1) throw new Error(\"no features to measure\");\n  var candidateX = candidateXsum / kSum;\n  var candidateY = candidateYsum / kSum;\n  if (\n    centroidCount === 1 ||\n    counter === 0 ||\n    (Math.abs(candidateX - previousCandidate[0]) < tolerance &&\n      Math.abs(candidateY - previousCandidate[1]) < tolerance)\n  ) {\n    return point([candidateX, candidateY], {\n      medianCandidates: properties.medianCandidates,\n    });\n  } else {\n    properties.medianCandidates.push([candidateX, candidateY]);\n    return findMedian(\n      [candidateX, candidateY],\n      candidateMedian,\n      centroids,\n      properties,\n      counter - 1\n    );\n  }\n}\n\nexport { centerMedian };\nexport default centerMedian;\n"
  },
  {
    "path": "packages/turf-center-median/package.json",
    "content": "{\n  \"name\": \"@turf/center-median\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a FeatureCollection of points and calculates the median center.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Moacir P. de Sá Pereira <@muziejus>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"center-median\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/center\": \"workspace:*\",\n    \"@turf/center-of-mass\": \"workspace:*\",\n    \"@turf/random\": \"workspace:*\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/center-mean\": \"workspace:*\",\n    \"@turf/centroid\": \"workspace:*\",\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/in/brazil-states-weighted.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": { \"weight\": \"population\" },\n  \"crs\": {\n    \"type\": \"name\",\n    \"properties\": { \"name\": \"urn:ogc:def:crs:OGC:1.3:CRS84\" }\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 790, \"fill\": \"#fff\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-66.627670235635748, -9.925465695489663],\n              [-66.730040845009626, -9.975431517708216],\n              [-67.111420254089353, -10.269052134377702],\n              [-67.190400969992851, -10.311349499272467],\n              [-67.280400973426083, -10.317194226057921],\n              [-67.332816746909955, -10.357931532299432],\n              [-67.416972023557719, -10.389879775705666],\n              [-67.582349227131985, -10.505983295759663],\n              [-67.666724230350638, -10.598905662585608],\n              [-67.721842640656362, -10.683038966576291],\n              [-67.785750113797363, -10.685983302626113],\n              [-67.835023797317632, -10.662802149398075],\n              [-67.991622924385169, -10.674491602968985],\n              [-68.071724245800169, -10.703078029840725],\n              [-68.158571172941237, -10.784970122808403],\n              [-68.266566782529694, -10.933021886268634],\n              [-68.311116344775996, -10.975099524592522],\n              [-68.397974258245611, -11.018737221569666],\n              [-68.498323383167374, -11.05475040653721],\n              [-68.622743553929254, -11.109198650801744],\n              [-68.678323390033839, -11.112802166564208],\n              [-68.727597073554108, -11.122470135683017],\n              [-68.769894438448873, -11.097728923801711],\n              [-68.784066802270758, -11.044621011619554],\n              [-68.848424714882057, -11.011090736902972],\n              [-69.001651039086553, -10.99445743548722],\n              [-69.228441819222311, -10.955741613697825],\n              [-69.462450617211545, -10.948095129031131],\n              [-69.578543150936994, -10.951698644793595],\n              [-69.673948428013915, -10.954181555044556],\n              [-69.839776071058495, -10.933483312067494],\n              [-69.960372999487021, -10.92987979630503],\n              [-70.066347124623363, -10.982526282688326],\n              [-70.220023888298172, -11.047543375012282],\n              [-70.290446254265817, -11.064198649085128],\n              [-70.341972135137624, -11.066681559336104],\n              [-70.392366424169396, -11.058573648870549],\n              [-70.450868623666693, -11.024823647583091],\n              [-70.533222142433232, -10.946974523519643],\n              [-70.596448463204496, -10.976901282473747],\n              [-70.642349343861724, -11.010189857962359],\n              [-70.641448464921112, -10.840780671812411],\n              [-70.640316873081076, -10.586073630846116],\n              [-70.639415994140464, -10.361293348833925],\n              [-70.638526101528385, -10.181513068538351],\n              [-70.637625222587772, -9.971828001945752],\n              [-70.636944070218036, -9.823776238485522],\n              [-70.593745826382658, -9.767526236339762],\n              [-70.56719187029158, -9.704530628467907],\n              [-70.599151100026347, -9.62059507839102],\n              [-70.592174781400843, -9.543427106697308],\n              [-70.570125220012855, -9.489879741373386],\n              [-70.541099339999349, -9.437452981560966],\n              [-70.607918190204529, -9.463776224752607],\n              [-70.636944070218036, -9.478168315145382],\n              [-70.672495829386733, -9.518004742446266],\n              [-70.758441877587188, -9.571771834341064],\n              [-70.816273911043297, -9.625319199664986],\n              [-70.884444079659417, -9.668978869299224],\n              [-70.970840567330171, -9.765724478458523],\n              [-71.041724359096676, -9.818832390640679],\n              [-71.115299801356485, -9.852340692700167],\n              [-71.237918214237126, -9.965983275160283],\n              [-71.339398930998939, -9.988483276018599],\n              [-71.608047622887696, -10.006017456374977],\n              [-71.887495875735297, -10.005578003233211],\n              [-72.142873082742796, -10.005116577434364],\n              [-72.181566931875096, -10.003776245351972],\n              [-72.179095007952668, -9.91017272615629],\n              [-72.172799841696914, -9.844013055663751],\n              [-72.259866495408858, -9.774271842065829],\n              [-72.26572220852286, -9.688556506764797],\n              [-72.289123088321787, -9.629142441998326],\n              [-72.318148968335294, -9.556698591578566],\n              [-72.379123091755019, -9.510116558551601],\n              [-72.464849413384584, -9.492120952396377],\n              [-72.605474418749012, -9.452064798524603],\n              [-72.814269592729531, -9.410448585999575],\n              [-73.013847237061569, -9.407526222606847],\n              [-73.20937092616083, -9.411349464940187],\n              [-73.089894603243792, -9.265780611730932],\n              [-72.970418280326768, -9.120189785864582],\n              [-72.974021796089232, -8.993077964609398],\n              [-73.070547678677642, -8.882819171340856],\n              [-73.122523999019762, -8.81397883668356],\n              [-73.203075759905062, -8.719254711976376],\n              [-73.302524005886212, -8.65399592042445],\n              [-73.356741537251324, -8.566918280383945],\n              [-73.351797689406482, -8.514271794000649],\n              [-73.360345053013788, -8.479401187201688],\n              [-73.398149009534023, -8.458922670795488],\n              [-73.435941979725712, -8.426974427389268],\n              [-73.488149012967241, -8.392103820590307],\n              [-73.549123136386982, -8.345741514134218],\n              [-73.549123136386982, -8.299401180335224],\n              [-73.572293303286472, -8.249896783915531],\n              [-73.610097259806707, -8.191845023888533],\n              [-73.610097259806707, -8.145504690089538],\n              [-73.644967866605668, -8.072819140441808],\n              [-73.68277182312589, -8.020612107200265],\n              [-73.720345066746702, -7.985741500401318],\n              [-73.775694189951849, -7.936478803209596],\n              [-73.772771826559122, -7.895741496968085],\n              [-73.732045506646159, -7.875504679789856],\n              [-73.714500339961234, -7.828922646762891],\n              [-73.720345066746702, -7.78258231296391],\n              [-73.76691611344512, -7.753556432950404],\n              [-73.822045510079391, -7.738922643329673],\n              [-73.894720073398574, -7.654767366681895],\n              [-73.94691612031157, -7.611129669704752],\n              [-73.981797713439079, -7.585026153083987],\n              [-74.002045516945842, -7.556000273070481],\n              [-73.981797713439079, -7.535741483235171],\n              [-73.958396833640151, -7.506715603221679],\n              [-73.952771833425572, -7.460375269422684],\n              [-73.964241560425606, -7.416715599788446],\n              [-73.964241560425606, -7.378922629596758],\n              [-73.929370953626659, -7.367233176025834],\n              [-73.891797710005847, -7.373077902811303],\n              [-73.853993753485611, -7.349896749583266],\n              [-73.804720069965356, -7.34112965940507],\n              [-73.749370946760195, -7.33526295996252],\n              [-73.720345066746702, -7.309181415998836],\n              [-73.72326743013943, -7.262819109542761],\n              [-73.758149023266924, -7.172819106109529],\n              [-73.793019630065885, -7.13502613591784],\n              [-73.796842872399239, -7.116788830534645],\n              [-72.66352617877601, -7.592672637750681],\n              [-70.373250212502668, -8.155172659208347],\n              [-69.806465522912788, -8.454198549521536],\n              [-66.828599198378711, -9.838168328878282],\n              [-66.627670235635748, -9.925245968918787],\n              [-66.627670235635748, -9.925465695489663]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 1749, \"fill\": \"#fff\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-66.627670235635748, -9.925465695489663],\n              [-66.627670235635748, -9.925245968918787],\n              [-66.828599198378711, -9.838168328878282],\n              [-66.743773755689745, -9.748849477814787],\n              [-66.694719798740365, -9.748849477814787],\n              [-66.59662287117014, -9.664013048797287],\n              [-66.502799625403568, -9.63274595776079],\n              [-66.404691711504796, -9.525651227112959],\n              [-66.395693908427177, -9.405043312355886],\n              [-66.105446094620731, -9.418556496465115],\n              [-65.998340377644354, -9.400780616880766],\n              [-65.931290814539736, -9.414052101762039],\n              [-65.766144323864893, -9.565927107555609],\n              [-65.676825472801397, -9.534638043862032],\n              [-65.632275910555094, -9.449823587501612],\n              [-65.525170193578717, -9.414052101762039],\n              [-65.444849145592826, -9.445319192798536],\n              [-65.418075462930872, -9.391771827474614],\n              [-65.221650894890999, -9.257892427836268],\n              [-65.199150894032684, -9.266681490671544],\n              [-65.172366225042182, -9.373995947890265],\n              [-65.092045177056306, -9.436332376049464],\n              [-65.038497811732384, -9.400780616880766],\n              [-64.904618412094038, -9.213112152690542],\n              [-64.926898686381463, -9.11953060615194],\n              [-64.886622805938813, -9.061478846124942],\n              [-64.779517088962422, -8.985431479942704],\n              [-64.69019823789894, -9.021202965682278],\n              [-64.596594718703244, -9.025707360385354],\n              [-64.475997790274718, -8.949879720774021],\n              [-64.417946030247705, -8.972138022404351],\n              [-64.382174544508132, -8.940870931367854],\n              [-64.217017067504756, -8.949879720774021],\n              [-64.118920139934531, -8.936366536664778],\n              [-64.12769821644126, -8.68640558962953],\n              [-64.074150851117338, -8.713168285962936],\n              [-63.998323211505991, -8.681901194926454],\n              [-63.922495571894657, -8.534530583835959],\n              [-63.993818816802914, -8.440927064640263],\n              [-63.917991177191567, -8.333832333992419],\n              [-63.752844686516738, -8.284547664143616],\n              [-63.72607100385477, -8.19094414494792],\n              [-63.591971877645548, -8.164181448614499],\n              [-63.587698195841895, -8.079345019597],\n              [-63.538424512321626, -7.9987932587117],\n              [-62.904590259627142, -8.007802048117853],\n              [-62.828773606344342, -8.016788864866925],\n              [-62.721448162797074, -8.061349413441775],\n              [-62.676898600550771, -8.114896778765697],\n              [-62.636622720108122, -8.222233208641498],\n              [-62.556290685793698, -8.289052058846693],\n              [-62.538525792537897, -8.36059503032584],\n              [-62.45370034984893, -8.347103818873691],\n              [-62.373368315534506, -8.382875304613265],\n              [-62.306318752429902, -8.570302069575533],\n              [-62.172450339120104, -8.610577950018182],\n              [-62.13217445867744, -8.766715651286859],\n              [-61.998295059039108, -8.811495926432599],\n              [-61.917974011053218, -8.873832354591784],\n              [-61.873424448806915, -8.856056475007449],\n              [-61.837641976738794, -8.744457349656528],\n              [-61.761825323455994, -8.72668147007218],\n              [-61.717045048310268, -8.68640558962953],\n              [-61.609950317662424, -8.722177075369103],\n              [-61.609950317662424, -8.766715651286859],\n              [-61.507348995389123, -8.847047685601282],\n              [-61.484848994530822, -8.914108235034448],\n              [-61.529618283348, -8.998922691394853],\n              [-61.556391966009969, -9.128297696330122],\n              [-61.529618283348, -9.226625336799771],\n              [-61.592174438078075, -9.239896821681043],\n              [-61.609950317662424, -9.320448582566343],\n              [-61.547394162932349, -9.409547707058962],\n              [-61.551898557635425, -9.463095072382885],\n              [-61.480575312727169, -9.63725035246388],\n              [-61.520620480270395, -9.704288929239937],\n              [-61.565400755416121, -9.726569203527362],\n              [-61.520620480270395, -9.860448603165707],\n              [-61.534122678051077, -9.994547729374943],\n              [-61.569674437219774, -10.061366579580124],\n              [-61.565400755416121, -10.262306528651621],\n              [-61.471566523321002, -10.436439836075536],\n              [-61.502844600686046, -10.686422755767879],\n              [-61.471566523321002, -10.757746000676136],\n              [-61.520620480270395, -10.789013091712633],\n              [-61.507348995389123, -10.878353915433223],\n              [-61.520620480270395, -10.954181555044556],\n              [-61.471566523321002, -10.998939857533202],\n              [-60.440400712500775, -11.003444252236292],\n              [-60.440400712500775, -11.038996011404976],\n              [-60.382348952473777, -11.10155216613505],\n              [-60.279516917301038, -11.079271891847625],\n              [-60.176915595027737, -11.119547772290289],\n              [-60.069820864379906, -11.115043377587199],\n              [-60.002771301275288, -11.146332441280791],\n              [-59.908948055508716, -11.382802176863891],\n              [-60.025040589234166, -11.534677182657461],\n              [-60.101098941744937, -11.601496032862656],\n              [-60.101098941744937, -11.744362249250059],\n              [-60.060823061302287, -11.905246044449797],\n              [-59.98499542169094, -11.918517529331055],\n              [-59.931448056367017, -12.052396928969401],\n              [-59.886667781221291, -12.128444295151638],\n              [-59.891172175924368, -12.244547815205635],\n              [-59.82412261281975, -12.387194305022163],\n              [-59.908948055508716, -12.619401345130157],\n              [-60.002771301275288, -12.731000470481078],\n              [-60.043047181717938, -12.873866686868496],\n              [-60.083092349261165, -12.927414052192404],\n              [-60.194691474612085, -12.972194327338144],\n              [-60.270749827122856, -13.070302241236917],\n              [-60.275023508926509, -13.137340818012973],\n              [-60.351070875108732, -13.271220217651319],\n              [-60.382348952473777, -13.418590828741813],\n              [-60.659094568499526, -13.601513199001005],\n              [-60.724792813193218, -13.662948748219577],\n              [-60.914471775507025, -13.561479017786311],\n              [-61.076915629360016, -13.489694347079194],\n              [-61.12912266260156, -13.498483409914471],\n              [-61.415997673544965, -13.526608410987365],\n              [-61.511622677192776, -13.541220227951001],\n              [-61.575749876904652, -13.524806653106126],\n              [-61.789950324528888, -13.525707532046738],\n              [-61.874094614848104, -13.470358408841591],\n              [-61.944747693715186, -13.406220222801167],\n              [-62.094820941627518, -13.241974611066937],\n              [-62.117991108527022, -13.159840818871288],\n              [-62.176042868554021, -13.133737302250523],\n              [-62.264021387535138, -13.143646970597288],\n              [-62.352900785456868, -13.132396970168131],\n              [-62.525474034227514, -13.064215815223477],\n              [-62.687017009139879, -12.994254875054679],\n              [-62.765547285573078, -12.997177238447421],\n              [-62.83506877260011, -12.953737295384059],\n              [-62.957917898380188, -12.847103990535075],\n              [-63.015299492365997, -12.805465805352952],\n              [-63.041392022658215, -12.750358381375776],\n              [-63.067495539278994, -12.669125468120725],\n              [-63.116769222799263, -12.651569315107267],\n              [-63.180665709611716, -12.666203104727998],\n              [-63.249747743496982, -12.70781931725304],\n              [-63.346724065555719, -12.680155741979007],\n              [-63.46529950953213, -12.605228981308272],\n              [-63.541797315184667, -12.546715795482427],\n              [-63.585665725061233, -12.519052220208394],\n              [-63.688497760233972, -12.478095187396008],\n              [-63.788165732785998, -12.469547823788702],\n              [-63.938469693597767, -12.529621068267815],\n              [-64.061549532277269, -12.505099582957385],\n              [-64.255040750595867, -12.483280734468821],\n              [-64.420417954170134, -12.439840791405459],\n              [-64.48072191154867, -12.326220181602437],\n              [-64.513340320996093, -12.251073694360826],\n              [-64.611667961465741, -12.20383248162122],\n              [-64.689967524999503, -12.146439901306863],\n              [-64.783340331295776, -12.059362261266358],\n              [-64.829922364322741, -12.030358353909946],\n              [-64.914297367541394, -12.006056595170406],\n              [-64.992596931075155, -11.975228957275675],\n              [-65.001144294682462, -11.920099560641404],\n              [-65.030170174695954, -11.847414010993674],\n              [-65.037146493321458, -11.829418404838449],\n              [-65.090243419175067, -11.741220159286456],\n              [-65.115215343955796, -11.735155705930111],\n              [-65.142670178987501, -11.752250433144724],\n              [-65.163368421964563, -11.76508246488423],\n              [-65.185648696251988, -11.749547796322872],\n              [-65.189691665156218, -11.710172794820835],\n              [-65.175299574763457, -11.646957460378118],\n              [-65.206116226329641, -11.58057806331469],\n              [-65.282174578840412, -11.511056576287658],\n              [-65.322000019812762, -11.43927190558054],\n              [-65.325592549246679, -11.364806570708666],\n              [-65.342467549890415, -11.315082447718083],\n              [-65.372844748314833, -11.289879810037931],\n              [-65.389950461857993, -11.246220140403707],\n              [-65.393542991291909, -11.184345138043355],\n              [-65.371493429903907, -11.110319256313247],\n              [-65.323790791365454, -11.024823647583091],\n              [-65.333920186283109, -10.892746005825984],\n              [-65.402321067798638, -10.714767483411634],\n              [-65.439894311419451, -10.586293357416992],\n              [-65.447090356615831, -10.507323627842041],\n              [-65.436971948026709, -10.449052141244152],\n              [-65.395344749173134, -10.392340713299532],\n              [-65.312991230406595, -10.253078012674592],\n              [-65.298599140013835, -10.14686218831028],\n              [-65.324471943735176, -10.026957398580024],\n              [-65.32807545949764, -9.935595090407318],\n              [-65.309398700972679, -9.872599482535477],\n              [-65.337974141515872, -9.790245963768939],\n              [-65.396245628113761, -9.712396839705491],\n              [-65.436741235127286, -9.710375355253376],\n              [-65.492090358332447, -9.731754750600174],\n              [-65.558700468295285, -9.797452995293867],\n              [-65.637219758399937, -9.80914244886479],\n              [-65.706741245426969, -9.768427115280375],\n              [-65.924775921713092, -9.785521842494987],\n              [-66.26361626667007, -9.826017449508512],\n              [-66.399297424189641, -9.868095087832401],\n              [-66.478948306134328, -9.886090693987626],\n              [-66.575243475823328, -9.899823604667745],\n              [-66.627670235635748, -9.925465695489663]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 497, \"fill\": \"#fff\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-58.868773455282323, 0.224275902629742],\n              [-59.770575247495842, 0.228780297332833],\n              [-60.025040589234166, 0.224275902629742],\n              [-60.127872624406905, 0.13067238343406],\n              [-60.167917791950131, 0.005582046630991],\n              [-60.21697174889951, -0.043482896646935],\n              [-60.252743234639084, -0.15057762729478],\n              [-60.310794994666082, -0.235392083655199],\n              [-60.315299389369159, -0.306957027791427],\n              [-60.38662263427743, -0.463094729060117],\n              [-60.391116042651959, -0.521146489087116],\n              [-60.315299389369159, -0.619474129556764],\n              [-60.306290599963006, -0.673021494880686],\n              [-60.337568677328051, -0.704288585917183],\n              [-60.467174395162729, -0.740082044313837],\n              [-60.516217365783575, -0.829181168806457],\n              [-60.641098962344302, -0.86044825984294],\n              [-60.734922208110873, -0.851681169664758],\n              [-60.815243256096764, -0.686292979761944],\n              [-60.904573093488793, -0.610465340150597],\n              [-60.931346776150761, -0.556917974826689],\n              [-61.060721781086016, -0.530155278493268],\n              [-61.105491069903209, -0.4943618200966],\n              [-61.221594589957206, -0.498866214799691],\n              [-61.243874864244631, -0.547931158077617],\n              [-61.458075311868853, -0.637250009141113],\n              [-61.534122678051077, -0.726568860204608],\n              [-61.578672240297394, -0.945262716203359],\n              [-61.560896360713045, -1.021332055042677],\n              [-61.574167845594303, -1.14169827057178],\n              [-61.618948120740043, -1.275797396781002],\n              [-61.619848999680656, -1.449491251063151],\n              [-61.717275761209692, -1.401129432812041],\n              [-61.798497688136194, -1.388736854214301],\n              [-61.880840220574186, -1.389198280013161],\n              [-61.877698130610568, -1.369400915976698],\n              [-61.935749890637567, -1.244530305744519],\n              [-62.029573136404139, -1.146202665274856],\n              [-62.141172261755059, -1.065870630960433],\n              [-62.203717430156601, -1.043590356673008],\n              [-62.243773584028361, -0.981056174600027],\n              [-62.315316555507508, -0.945262716203359],\n              [-62.417917877780823, -0.829181168806457],\n              [-62.507247715172852, -0.771129408779444],\n              [-62.475969637807822, -0.695301769168111],\n              [-62.377872710237597, -0.717582043455536],\n              [-62.310823147132979, -0.641754403844189],\n              [-62.319820950210598, -0.521146489087116],\n              [-62.368874907159977, -0.467599123763193],\n              [-62.373368315534506, -0.342728513531],\n              [-62.404646392899551, -0.271163569394773],\n              [-62.475969637807822, -0.222120598773927],\n              [-62.511741123547395, -0.123792958304278],\n              [-62.569792883574394, -0.047965318692931],\n              [-62.578790686651999, 0.018853531512249],\n              [-62.525023594757201, 0.094900897694487],\n              [-62.565299475199851, 0.17523293200891],\n              [-62.569792883574394, 0.246556176917167],\n              [-62.53402139783482, 0.313605740021785],\n              [-62.52951700313173, 0.429698273747235],\n              [-62.489471835588503, 0.487750033774233],\n              [-62.484967440885427, 0.541297399098156],\n              [-62.538525792537897, 0.675176798736501],\n              [-62.53402139783482, 0.7332285587635],\n              [-62.444691560442777, 0.804782516571194],\n              [-62.511741123547395, 0.960931204168418],\n              [-62.516245518250471, 1.059247858309519],\n              [-62.614342445820697, 1.362778143325784],\n              [-62.623340248898316, 1.416325508649706],\n              [-62.721448162797074, 1.49665754296413],\n              [-62.788497725901692, 1.603752273611974],\n              [-62.712670086290345, 1.73763167325032],\n              [-62.730445965874694, 1.831454919016892],\n              [-62.690400798331467, 1.911775967002768],\n              [-62.708165691587268, 1.947547452742342],\n              [-62.846549485928691, 2.018881683979146],\n              [-63.002698173525914, 2.018881683979146],\n              [-63.123295101954454, 2.112704929745718],\n              [-63.150068784616408, 2.179754492850336],\n              [-63.306448185113055, 2.16625229506964],\n              [-63.393745551724436, 2.224073342197215],\n              [-63.374849066628599, 2.340407575150635],\n              [-63.38924115702136, 2.411950546629782],\n              [-63.584545119549745, 2.434000108017784],\n              [-63.712568806074088, 2.434000108017784],\n              [-63.924066616876459, 2.45245713997187],\n              [-64.024866181268536, 2.481922473127128],\n              [-64.046696016085647, 2.502400989533328],\n              [-64.048717500537762, 2.525131703291052],\n              [-64.028700409930423, 2.575976431793123],\n              [-64.009122772464849, 2.671832148340357],\n              [-64.037698213008028, 2.801426879846503],\n              [-64.143441625244947, 3.00482776651188],\n              [-64.218818825385981, 3.204625137414794],\n              [-64.228717507404212, 3.343898824368296],\n              [-64.227146462422411, 3.491280421787323],\n              [-64.221071022737533, 3.587355864905447],\n              [-64.275299540431178, 3.662733065046481],\n              [-64.568019278160051, 3.89987296667077],\n              [-64.669049555451551, 4.011702804921114],\n              [-64.702568843839586, 4.089332202413701],\n              [-64.817771484952971, 4.232198418801104],\n              [-64.788745604939464, 4.276077815006218],\n              [-64.72236620787605, 4.274506770024416],\n              [-64.665446039689087, 4.237153252974494],\n              [-64.613700432246404, 4.15773308392923],\n              [-64.576346915196481, 4.139957204344881],\n              [-64.525491200365863, 4.139957204344881],\n              [-64.255721902965604, 4.140407643815195],\n              [-64.19249558219434, 4.126905446034499],\n              [-64.154241186203791, 4.100131763372545],\n              [-64.121622776756382, 4.067051928126276],\n              [-64.073469698747601, 3.974349287871192],\n              [-64.021493378405495, 3.9291295595837],\n              [-63.914618374328541, 3.930700604565502],\n              [-63.746999959731269, 3.932502362446741],\n              [-63.652946001065274, 3.940829999483157],\n              [-63.596695998919515, 3.914957195761815],\n              [-63.526724072422169, 3.893797526985892],\n              [-63.379792914473441, 3.942851483935272],\n              [-63.338616155090165, 3.943983075775321],\n              [-63.294747745213598, 3.922153240958195],\n              [-63.136116147365414, 3.756556310813053],\n              [-63.045215264991569, 3.686573397987161],\n              [-62.968717459339032, 3.593881744060639],\n              [-62.856898607417236, 3.593431304590325],\n              [-62.764646406632465, 3.672851473635589],\n              [-62.739894208422612, 3.940379560012857],\n              [-62.712219646820046, 4.017997971176882],\n              [-62.665417887222191, 4.039608079423118],\n              [-62.609849037446168, 4.042299729916422],\n              [-62.543920079853052, 4.084377368240311],\n              [-62.472596834944781, 4.138605885933956],\n              [-62.410721832584429, 4.156832204988618],\n              [-62.153092428225406, 4.098330005491306],\n              [-62.081549456746259, 4.126224293664762],\n              [-61.820766976095072, 4.197108085431267],\n              [-61.554150754986964, 4.287778254905689],\n              [-61.479443720887119, 4.402299743649337],\n              [-61.367624868965322, 4.432907654973178],\n              [-61.280096789454518, 4.516832218721532],\n              [-61.209443710587436, 4.508054142214789],\n              [-61.102348979939592, 4.504681339351762],\n              [-61.0362002957756, 4.519304142643946],\n              [-61.002900733958441, 4.535278264347056],\n              [-60.966448095849145, 4.574653265849093],\n              [-60.906144138470594, 4.686702830670328],\n              [-60.833469575151412, 4.729230908464515],\n              [-60.741667813836955, 4.774230910181132],\n              [-60.679122645435413, 4.827108109463865],\n              [-60.627596764563606, 4.892575641258119],\n              [-60.603745445294379, 4.949276082874206],\n              [-60.604415611335568, 4.994506797490246],\n              [-60.635023522659424, 5.082023890672502],\n              [-60.671915613910485, 5.164377409439041],\n              [-60.711971767782259, 5.191601531571308],\n              [-60.742118253307254, 5.201950653059839],\n              [-60.651448083832847, 5.221077851055114],\n              [-60.576521323162112, 5.192502410511921],\n              [-60.459516924167502, 5.187998015808844],\n              [-60.408891922236307, 5.210047577196846],\n              [-60.335096753405622, 5.199248016238002],\n              [-60.241723947109364, 5.257980928634737],\n              [-60.18165070263025, 5.238853730639462],\n              [-60.142044988228776, 5.238853730639462],\n              [-60.106042789589779, 5.19430416839316],\n              [-60.078148501416322, 5.143898893032841],\n              [-59.990620421905518, 5.082924769613115],\n              [-59.999398498412248, 4.989782676216279],\n              [-60.015372620115372, 4.907429157449741],\n              [-60.026842347115405, 4.812705032742556],\n              [-60.031797181288781, 4.740480908893673],\n              [-60.06891998543928, 4.666674753734441],\n              [-60.124499821543864, 4.597603706177708],\n              [-60.140924382717287, 4.569698431675718],\n              [-60.148570867383981, 4.533256779894955],\n              [-60.111217350334044, 4.511207218506954],\n              [-60.045068666170053, 4.504681339351762],\n              [-59.962275694261749, 4.501747989630488],\n              [-59.906025692115989, 4.480379580612222],\n              [-59.833340142468245, 4.475875185909146],\n              [-59.745823049285988, 4.416702820370645],\n              [-59.7032949714918, 4.381151061201948],\n              [-59.699691455729337, 4.353476499599381],\n              [-59.72759673023134, 4.287547542006266],\n              [-59.738616017761061, 4.226804131485963],\n              [-59.716797169272496, 4.188099296025115],\n              [-59.69114409212203, 4.160424734422534],\n              [-59.620271286684073, 4.023172531921148],\n              [-59.586521285396614, 3.975480879711242],\n              [-59.557715131953998, 3.959957197478431],\n              [-59.55120023912734, 3.933622967958229],\n              [-59.575491011538332, 3.883448405497347],\n              [-59.604516891551839, 3.819782631584317],\n              [-59.670215136245531, 3.752733068479714],\n              [-59.67899321275226, 3.699855869196981],\n              [-59.731650685464103, 3.666556307379821],\n              [-59.854499811244182, 3.587575591476323],\n              [-59.833120415897369, 3.462254541773831],\n              [-59.828846734093716, 3.398577781532254],\n              [-59.831098931445254, 3.349304098011984],\n              [-59.87294585686972, 3.283155413847993],\n              [-59.945620420188902, 3.087851451319608],\n              [-59.97239410285087, 2.990424689790572],\n              [-59.995794982649784, 2.765424681207506],\n              [-59.994443664238858, 2.690047481066472],\n              [-59.9606936629514, 2.58835802406233],\n              [-59.889590144614019, 2.362907576008951],\n              [-59.849094537600479, 2.32712510394083],\n              [-59.755271291833907, 2.274028178087221],\n              [-59.74357085193445, 2.121702732823337],\n              [-59.751667776071443, 1.962400968933963],\n              [-59.756172170774533, 1.900525966573611],\n              [-59.740648488541723, 1.874202723381956],\n              [-59.698570850217834, 1.861381677970996],\n              [-59.668424364692839, 1.842254479975736],\n              [-59.663700243418873, 1.795232993807005],\n              [-59.6666226068116, 1.746179036857626],\n              [-59.596650680314269, 1.718054035784732],\n              [-59.535665570565996, 1.70004744330096],\n              [-59.479415568420222, 1.632327714155167],\n              [-59.377715125087533, 1.527254467959438],\n              [-59.337219518074008, 1.508127269964163],\n              [-59.316971714567231, 1.464698313229363],\n              [-59.231245392937666, 1.376049628207056],\n              [-59.100299343020595, 1.343650945330523],\n              [-58.968441427834364, 1.304506656727909],\n              [-58.966419943382249, 1.302474185947247],\n              [-58.868773455282323, 0.224275902629742]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 3874, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-66.828599198378711, -9.838168328878282],\n              [-69.806465522912788, -8.454198549521536],\n              [-70.373250212502668, -8.155172659208347],\n              [-72.66352617877601, -7.592672637750681],\n              [-73.796842872399239, -7.116788830534645],\n              [-73.804720069965356, -7.079896739283569],\n              [-73.776375342321586, -6.973483161005475],\n              [-73.758149023266924, -6.905741459202574],\n              [-73.694472263025361, -6.83373706192458],\n              [-73.499849452866712, -6.679401118537129],\n              [-73.325474446214827, -6.574767325483165],\n              [-73.240418290626451, -6.563978750852868],\n              [-73.17742268275461, -6.525262929063473],\n              [-73.137366528882836, -6.465870836954096],\n              [-73.126347241353102, -6.40085374463014],\n              [-73.135345044430721, -6.34436204325641],\n              [-73.167743727307254, -6.260668192407493],\n              [-73.206448562768102, -6.156495825152376],\n              [-73.235474442781609, -6.098444065125378],\n              [-73.20937092616083, -6.028702851527456],\n              [-73.162799879462412, -5.933297574450535],\n              [-73.068075754755228, -5.789530479122504],\n              [-72.979866522874687, -5.634952836507097],\n              [-72.970198553755878, -5.58973310821959],\n              [-72.958948553326721, -5.495228710083282],\n              [-72.918222233413772, -5.302616398048215],\n              [-72.895722232555457, -5.198224304222222],\n              [-72.907422672454928, -5.157728697208682],\n              [-72.887174868948151, -5.122858090409721],\n              [-72.832045472313879, -5.093832210396229],\n              [-72.698616512145847, -5.067267267976604],\n              [-72.608396782141739, -5.009676933748452],\n              [-72.468892382288814, -4.901219898361148],\n              [-72.352799848563365, -4.786017257247764],\n              [-72.256724405445254, -4.748905439425812],\n              [-72.082569125364259, -4.642250161919733],\n              [-71.982450713341919, -4.57453043277394],\n              [-71.943075711839882, -4.553370763998004],\n              [-71.844748071370233, -4.504327793377172],\n              [-71.668340593937685, -4.48723306616256],\n              [-71.521420422317505, -4.469676913149087],\n              [-71.438166024610354, -4.437486970514897],\n              [-71.316898930140624, -4.424215485633624],\n              [-71.234995850844399, -4.388224273323175],\n              [-71.144325681369978, -4.387323394382548],\n              [-70.973773917051446, -4.350431303131487],\n              [-70.915722157024447, -4.295301906497215],\n              [-70.865998034033879, -4.229603661803523],\n              [-70.79961863697045, -4.173353659657764],\n              [-70.721549786336112, -4.158939596607908],\n              [-70.634472146295607, -4.168629538383797],\n              [-70.530750218510818, -4.167486960215214],\n              [-70.404748016438589, -4.150172506429712],\n              [-70.343543180119426, -4.193590476835979],\n              [-70.317000210356895, -4.246918115589011],\n              [-70.239151086293433, -4.30114663328267],\n              [-70.184021689659161, -4.298224269889943],\n              [-70.128892293024904, -4.286512843661939],\n              [-70.05329536631298, -4.333094876688904],\n              [-70.004021682792711, -4.327250149903449],\n              [-69.972073439386477, -4.30114663328267],\n              [-69.965997999701599, -4.235887841730744],\n              [-69.948222120117251, -4.200577781790031],\n              [-69.911099315966752, -3.996495742754917],\n              [-69.849674753076712, -3.659896608820929],\n              [-69.794094916972142, -3.354564565923425],\n              [-69.732670354082103, -3.01662509990706],\n              [-69.668993593840526, -2.667655360032427],\n              [-69.604646667557759, -2.314181225454703],\n              [-69.55176946827504, -2.024142151890601],\n              [-69.506549739987534, -1.77484038456798],\n              [-69.47864446548553, -1.622064499833797],\n              [-69.434995782179854, -1.421607949218242],\n              [-69.417901054965242, -1.245650911256007],\n              [-69.400344901951769, -1.195025909324826],\n              [-69.411375175810036, -1.152267118631201],\n              [-69.449168146001725, -1.091512721782351],\n              [-69.448717706531426, -1.06496975201982],\n              [-69.444444024727773, -1.029637719422013],\n              [-69.448717706531426, -0.998832054184362],\n              [-69.488323420932886, -0.96574123260956],\n              [-69.519370785398493, -0.945724142002206],\n              [-69.54344183123861, -0.91713771513048],\n              [-69.554691831667768, -0.877323260486676],\n              [-69.574500182032764, -0.837728532413763],\n              [-69.583267272210961, -0.79587062066075],\n              [-69.611842712754154, -0.762801771743028],\n              [-69.620620789260883, -0.72094385999003],\n              [-69.600823425224419, -0.681349131917102],\n              [-69.59204534871769, -0.639271493593228],\n              [-69.600823425224419, -0.5996767655203],\n              [-69.611842712754154, -0.553314459064225],\n              [-69.633892274142141, -0.509215336288221],\n              [-69.667422548858724, -0.482452639954801],\n              [-69.747523870273724, -0.452525881000696],\n              [-69.827844918259601, -0.381422362663301],\n              [-69.922799755866222, -0.317525875850848],\n              [-70.044066850335938, -0.196236808724038],\n              [-70.070620806427016, -0.138866201066776],\n              [-70.070840532997906, 0.018622818612826],\n              [-70.065665972253626, 0.189405295830795],\n              [-70.058019487586947, 0.447254426760708],\n              [-70.053965532354169, 0.578650916148078],\n              [-69.98534492426775, 0.585857947673006],\n              [-69.925040966889213, 0.589450477106922],\n              [-69.862045359017372, 0.598448280184542],\n              [-69.807146675282524, 0.607457069590694],\n              [-69.75674139992222, 0.626353554686546],\n              [-69.718948429730531, 0.649754434485459],\n              [-69.673717715114492, 0.665047403818846],\n              [-69.638616395416108, 0.659653116503691],\n              [-69.603526062046271, 0.680351359480767],\n              [-69.564821226585423, 0.700148723517231],\n              [-69.527017270065187, 0.716353558119778],\n              [-69.472118586330339, 0.729855755900459],\n              [-69.420823418357969, 0.698357951964539],\n              [-69.392017264915353, 0.666849161700071],\n              [-69.358717703098193, 0.651556192366698],\n              [-69.327219899162273, 0.655148721800614],\n              [-69.305620777244584, 0.65245707130731],\n              [-69.283120776386269, 0.627254433627158],\n              [-69.254094896372777, 0.625452675745933],\n              [-69.212698410418625, 0.629957070449009],\n              [-69.173993574957777, 0.635351357764151],\n              [-69.155997968802552, 0.642547402960545],\n              [-69.153295331980701, 0.658752237563078],\n              [-69.163194013998933, 0.686657512065082],\n              [-69.176696211779628, 0.712750042357314],\n              [-69.165896650820784, 0.753256635699387],\n              [-69.164995771880157, 0.801849166849919],\n              [-69.163194013998933, 0.863954882109695],\n              [-69.19379093899424, 0.898375049438343],\n              [-69.224398850318082, 0.963172415191409],\n              [-69.258599291075853, 1.015379448432952],\n              [-69.311915943500352, 1.050480768131337],\n              [-69.361420339920045, 1.063982965912032],\n              [-69.402816825874197, 1.042372857665796],\n              [-69.441521661335045, 1.03878032823188],\n              [-69.470316828449114, 1.058577692268329],\n              [-69.517118588046955, 1.059478571208956],\n              [-69.567523863407274, 1.065773737464724],\n              [-69.620840515831759, 1.073200495560528],\n              [-69.716915958949869, 1.059028131738643],\n              [-69.751347112607064, 1.076573298423568],\n              [-69.798148872204919, 1.078375056304793],\n              [-69.852146676999141, 1.059478571208956],\n              [-69.850795358588215, 1.308780338531562],\n              [-69.849444040177289, 1.543898755703736],\n              [-69.848543161236677, 1.708825519807704],\n              [-69.799950630086144, 1.705232990373773],\n              [-69.739646672707607, 1.734929036428468],\n              [-69.650097108744689, 1.739422444802997],\n              [-69.581245787758846, 1.770700522168042],\n              [-69.542991391768297, 1.773172446090456],\n              [-69.470097101878224, 1.757879476757083],\n              [-69.394269462266891, 1.725700520451426],\n              [-69.319793141066469, 1.721207112076897],\n              [-69.124269451967209, 1.721207112076897],\n              [-68.913222080635137, 1.721426838647773],\n              [-68.678543116604715, 1.721426838647773],\n              [-68.443424699432541, 1.721657551547196],\n              [-68.239573373296849, 1.721657551547196],\n              [-68.176566779096461, 1.719855793665971],\n              [-68.213250130105195, 1.774523764501382],\n              [-68.255997934470273, 1.845407556267887],\n              [-68.239342660397426, 1.901426845514223],\n              [-68.218424690849474, 1.957676847659997],\n              [-68.193892219210497, 1.986922454244379],\n              [-68.130215458968934, 1.955875089778772],\n              [-68.077118533115311, 1.860030359560085],\n              [-68.032799683768431, 1.788025962282077],\n              [-67.98982116650393, 1.75247420311338],\n              [-67.936273801180022, 1.748431234209164],\n              [-67.875519404331172, 1.760582113578934],\n              [-67.814995720381745, 1.790047446734192],\n              [-67.71194395863813, 1.922125088491299],\n              [-67.609122909793953, 2.035075532253146],\n              [-67.556025983940344, 2.073099215344257],\n              [-67.499545268895147, 2.107980808471765],\n              [-67.457698343470682, 2.121252293353024],\n              [-67.400547462384296, 2.116747898649948],\n              [-67.35194394490523, 2.085931247083764],\n              [-67.320665867540185, 2.032153168860418],\n              [-67.205924652225661, 1.84472640389815],\n              [-67.11929745165547, 1.703650959063424],\n              [-67.09004085874254, 1.615672440082307],\n              [-67.088250087189849, 1.400582099846019],\n              [-67.093644374505004, 1.210002258591601],\n              [-67.082174647504971, 1.185480773281185],\n              [-67.065299646861234, 1.178273741756257],\n              [-66.876071124017741, 1.223054016901983],\n              [-66.619122872028441, 0.992198295204915],\n              [-66.429224183143759, 0.821657517214916],\n              [-66.347090390948111, 0.767198286621849],\n              [-66.301650936089729, 0.751905317288461],\n              [-66.191172416250311, 0.763375044288495],\n              [-66.059995653433816, 0.785424605676496],\n              [-65.996318893192239, 0.809726364416036],\n              [-65.92589652722458, 0.863054003169069],\n              [-65.811375038480932, 0.937299611470067],\n              [-65.718221958755549, 0.97802593138303],\n              [-65.681549594075364, 0.983431205026719],\n              [-65.64464651649574, 0.970379446716336],\n              [-65.566116240062556, 0.926049611040909],\n              [-65.522917996227179, 0.843476365703495],\n              [-65.562743437199515, 0.747400922585385],\n              [-65.555997831473448, 0.687997844147461],\n              [-65.473424586136019, 0.691150920439611],\n              [-65.407275901972028, 0.790379439849886],\n              [-65.360924581844486, 0.868679003383647],\n              [-65.263948259785764, 0.931905324154911],\n              [-65.169674574548878, 1.022125054159034],\n              [-65.103745616955763, 1.108082088688022],\n              [-65.02656665893349, 1.158476377719794],\n              [-64.910023685737741, 1.219681214038943],\n              [-64.817991211523847, 1.257023744760332],\n              [-64.731594723853092, 1.253431215326401],\n              [-64.667467524141202, 1.293926822339941],\n              [-64.584443839333474, 1.369974188522164],\n              [-64.5261723527356, 1.430948311941904],\n              [-64.486116198863826, 1.452778146759016],\n              [-64.405124984836746, 1.446922433645014],\n              [-64.304094707545261, 1.45525007068143],\n              [-64.205096901034409, 1.529506665310976],\n              [-64.114866184701754, 1.61927595584477],\n              [-64.06694381959241, 1.770480795597152],\n              [-64.03544601565649, 1.904349208906964],\n              [-64.008441620095113, 1.931573331039232],\n              [-63.97582321064769, 1.95295272638603],\n              [-63.937118375186841, 1.966905363637039],\n              [-63.844415734931772, 1.976804045655271],\n              [-63.682191607649656, 2.048127290563528],\n              [-63.57037275572786, 2.120582127311835],\n              [-63.463948191121204, 2.136105809544645],\n              [-63.432450387185284, 2.155452734110796],\n              [-63.393965278295326, 2.222502297215414],\n              [-63.393745551724436, 2.224073342197215],\n              [-63.306448185113055, 2.16625229506964],\n              [-63.150068784616408, 2.179754492850336],\n              [-63.123295101954454, 2.112704929745718],\n              [-63.002698173525914, 2.018881683979146],\n              [-62.846549485928691, 2.018881683979146],\n              [-62.708165691587268, 1.947547452742342],\n              [-62.690400798331467, 1.911775967002768],\n              [-62.730445965874694, 1.831454919016892],\n              [-62.712670086290345, 1.73763167325032],\n              [-62.788497725901692, 1.603752273611974],\n              [-62.721448162797074, 1.49665754296413],\n              [-62.623340248898316, 1.416325508649706],\n              [-62.614342445820697, 1.362778143325784],\n              [-62.516245518250471, 1.059247858309519],\n              [-62.511741123547395, 0.960931204168418],\n              [-62.444691560442777, 0.804782516571194],\n              [-62.53402139783482, 0.7332285587635],\n              [-62.538525792537897, 0.675176798736501],\n              [-62.484967440885427, 0.541297399098156],\n              [-62.489471835588503, 0.487750033774233],\n              [-62.52951700313173, 0.429698273747235],\n              [-62.53402139783482, 0.313605740021785],\n              [-62.569792883574394, 0.246556176917167],\n              [-62.565299475199851, 0.17523293200891],\n              [-62.525023594757201, 0.094900897694487],\n              [-62.578790686651999, 0.018853531512249],\n              [-62.569792883574394, -0.047965318692931],\n              [-62.511741123547395, -0.123792958304278],\n              [-62.475969637807822, -0.222120598773927],\n              [-62.404646392899551, -0.271163569394773],\n              [-62.373368315534506, -0.342728513531],\n              [-62.368874907159977, -0.467599123763193],\n              [-62.319820950210598, -0.521146489087116],\n              [-62.310823147132979, -0.641754403844189],\n              [-62.377872710237597, -0.717582043455536],\n              [-62.475969637807822, -0.695301769168111],\n              [-62.507247715172852, -0.771129408779444],\n              [-62.417917877780823, -0.829181168806457],\n              [-62.315316555507508, -0.945262716203359],\n              [-62.243773584028361, -0.981056174600027],\n              [-62.203717430156601, -1.043590356673008],\n              [-62.141172261755059, -1.065870630960433],\n              [-62.029573136404139, -1.146202665274856],\n              [-61.935749890637567, -1.244530305744519],\n              [-61.877698130610568, -1.369400915976698],\n              [-61.880840220574186, -1.389198280013161],\n              [-61.798497688136194, -1.388736854214301],\n              [-61.717275761209692, -1.401129432812041],\n              [-61.619848999680656, -1.449491251063151],\n              [-61.618948120740043, -1.275797396781002],\n              [-61.574167845594303, -1.14169827057178],\n              [-61.560896360713045, -1.021332055042677],\n              [-61.578672240297394, -0.945262716203359],\n              [-61.534122678051077, -0.726568860204608],\n              [-61.458075311868853, -0.637250009141113],\n              [-61.243874864244631, -0.547931158077617],\n              [-61.221594589957206, -0.498866214799691],\n              [-61.105491069903209, -0.4943618200966],\n              [-61.060721781086016, -0.530155278493268],\n              [-60.931346776150761, -0.556917974826689],\n              [-60.904573093488793, -0.610465340150597],\n              [-60.815243256096764, -0.686292979761944],\n              [-60.734922208110873, -0.851681169664758],\n              [-60.641098962344302, -0.86044825984294],\n              [-60.516217365783575, -0.829181168806457],\n              [-60.467174395162729, -0.740082044313837],\n              [-60.337568677328051, -0.704288585917183],\n              [-60.306290599963006, -0.673021494880686],\n              [-60.315299389369159, -0.619474129556764],\n              [-60.391116042651959, -0.521146489087116],\n              [-60.38662263427743, -0.463094729060117],\n              [-60.315299389369159, -0.306957027791427],\n              [-60.310794994666082, -0.235392083655199],\n              [-60.252743234639084, -0.15057762729478],\n              [-60.21697174889951, -0.043482896646935],\n              [-60.167917791950131, 0.005582046630991],\n              [-60.127872624406905, 0.13067238343406],\n              [-60.025040589234166, 0.224275902629742],\n              [-59.770575247495842, 0.228780297332833],\n              [-58.868773455282323, 0.224275902629742],\n              [-58.850997575697988, -0.083736804432505],\n              [-58.86449977347867, -0.173077628153081],\n              [-58.855490984072517, -0.351495603709196],\n              [-58.739398450347068, -0.432047364594496],\n              [-58.748396253424673, -0.62397852425984],\n              [-58.703615978278947, -0.695301769168111],\n              [-58.627799324996147, -0.766844740647258],\n              [-58.569747564969148, -0.762340345944182],\n              [-58.440372560033893, -0.86044825984294],\n              [-58.39109887651361, -1.048094751376084],\n              [-58.315271236902262, -1.119417996284355],\n              [-58.252715082172188, -1.128426785690522],\n              [-58.159122549305039, -1.235521516338338],\n              [-58.083075183122816, -1.298077671068427],\n              [-57.980473860849543, -1.34712064168923],\n              [-57.900141826535105, -1.422948281300592],\n              [-57.828598855055944, -1.445228555588045],\n              [-57.654674287874371, -1.588094771975463],\n              [-57.565344450482328, -1.623866257715036],\n              [-57.449240930428331, -1.690926807148188],\n              [-57.337641805077411, -1.730982961019961],\n              [-57.275096636675883, -1.713207081435613],\n              [-57.248322954013915, -1.757745657353368],\n              [-57.167990919699491, -1.771236868805516],\n              [-57.087669871713615, -1.81129302267729],\n              [-57.007348823727739, -1.936405332137454],\n              [-56.824195740569124, -2.034491273379132],\n              [-56.743874692583248, -2.052486879534356],\n              [-56.748368100957777, -2.17737946242363],\n              [-56.63676897560687, -2.222137764912276],\n              [-56.498396167593981, -2.159603582839281],\n              [-56.484893969813299, -2.248922433902749],\n              [-56.400969406064945, -2.336219800514158],\n              [-56.391070724046713, -2.391788650290195],\n              [-56.75714617746452, -3.186495711855869],\n              [-58.292990962614851, -6.49893968587179],\n              [-58.374443602440763, -6.57050463000806],\n              [-58.436769044271415, -6.675797602774665],\n              [-58.455445802796376, -6.793922607280777],\n              [-58.385924315769344, -6.949181402265936],\n              [-58.228424309761195, -7.141552015073032],\n              [-58.146290517565546, -7.263500261912498],\n              [-58.136622548446738, -7.338207296012342],\n              [-58.201870353670117, -7.414474388765456],\n              [-58.223700188487229, -7.484677028162224],\n              [-58.223919915058119, -7.574677031595442],\n              [-58.259471674226816, -7.67322439863598],\n              [-58.330344479664774, -7.780099402712935],\n              [-58.353525632892811, -7.905870891885741],\n              [-58.328773434682958, -8.050538866154383],\n              [-58.354415525504876, -8.27600030053631],\n              [-58.397174316198502, -8.415504700389221],\n              [-58.426650635682307, -8.523038884178831],\n              [-58.471650637398923, -8.690888011675511],\n              [-58.547467290681723, -8.74893977170251],\n              [-61.609950317662424, -8.766715651286859],\n              [-61.609950317662424, -8.722177075369103],\n              [-61.717045048310268, -8.68640558962953],\n              [-61.761825323455994, -8.72668147007218],\n              [-61.837641976738794, -8.744457349656528],\n              [-61.873424448806915, -8.856056475007449],\n              [-61.917974011053218, -8.873832354591784],\n              [-61.998295059039108, -8.811495926432599],\n              [-62.13217445867744, -8.766715651286859],\n              [-62.172450339120104, -8.610577950018182],\n              [-62.306318752429902, -8.570302069575533],\n              [-62.373368315534506, -8.382875304613265],\n              [-62.45370034984893, -8.347103818873691],\n              [-62.538525792537897, -8.36059503032584],\n              [-62.556290685793698, -8.289052058846693],\n              [-62.636622720108122, -8.222233208641498],\n              [-62.676898600550771, -8.114896778765697],\n              [-62.721448162797074, -8.061349413441775],\n              [-62.828773606344342, -8.016788864866925],\n              [-62.904590259627142, -8.007802048117853],\n              [-63.538424512321626, -7.9987932587117],\n              [-63.587698195841895, -8.079345019597],\n              [-63.591971877645548, -8.164181448614499],\n              [-63.72607100385477, -8.19094414494792],\n              [-63.752844686516738, -8.284547664143616],\n              [-63.917991177191567, -8.333832333992419],\n              [-63.993818816802914, -8.440927064640263],\n              [-63.922495571894657, -8.534530583835959],\n              [-63.998323211505991, -8.681901194926454],\n              [-64.074150851117338, -8.713168285962936],\n              [-64.12769821644126, -8.68640558962953],\n              [-64.118920139934531, -8.936366536664778],\n              [-64.217017067504756, -8.949879720774021],\n              [-64.382174544508132, -8.940870931367854],\n              [-64.417946030247705, -8.972138022404351],\n              [-64.475997790274718, -8.949879720774021],\n              [-64.596594718703244, -9.025707360385354],\n              [-64.69019823789894, -9.021202965682278],\n              [-64.779517088962422, -8.985431479942704],\n              [-64.886622805938813, -9.061478846124942],\n              [-64.926898686381463, -9.11953060615194],\n              [-64.904618412094038, -9.213112152690542],\n              [-65.038497811732384, -9.400780616880766],\n              [-65.092045177056306, -9.436332376049464],\n              [-65.172366225042182, -9.373995947890265],\n              [-65.199150894032684, -9.266681490671544],\n              [-65.221650894890999, -9.257892427836268],\n              [-65.418075462930872, -9.391771827474614],\n              [-65.444849145592826, -9.445319192798536],\n              [-65.525170193578717, -9.414052101762039],\n              [-65.632275910555094, -9.449823587501612],\n              [-65.676825472801397, -9.534638043862032],\n              [-65.766144323864893, -9.565927107555609],\n              [-65.931290814539736, -9.414052101762039],\n              [-65.998340377644354, -9.400780616880766],\n              [-66.105446094620731, -9.418556496465115],\n              [-66.395693908427177, -9.405043312355886],\n              [-66.404691711504796, -9.525651227112959],\n              [-66.502799625403568, -9.63274595776079],\n              [-66.59662287117014, -9.664013048797287],\n              [-66.694719798740365, -9.748849477814787],\n              [-66.743773755689745, -9.748849477814787],\n              [-66.828599198378711, -9.838168328878282]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 8074, \"fill\": \"#999\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-58.868773455282323, 0.224275902629742],\n              [-58.966419943382249, 1.302474185947247],\n              [-58.916695820391681, 1.248926820623353],\n              [-58.862467302698008, 1.203707092335833],\n              [-58.821740982785059, 1.2012241820849],\n              [-58.787320815456383, 1.208431213609913],\n              [-58.730400647269448, 1.247575502212442],\n              [-58.684719493183024, 1.281105776928996],\n              [-58.60506861123838, 1.279073306148348],\n              [-58.511915531513012, 1.284698306362941],\n              [-58.495721683239026, 1.312153141394674],\n              [-58.486943606732268, 1.347704900563258],\n              [-58.506070804727528, 1.438605782937259],\n              [-58.472990969481316, 1.466280344539769],\n              [-58.395822997787548, 1.481804026772636],\n              [-58.380299315554737, 1.530176831352151],\n              [-58.362743162541221, 1.556730787443371],\n              [-58.340693601153305, 1.58754743900937],\n              [-58.31415063139076, 1.592051833712503],\n              [-58.28107079614449, 1.574275954128211],\n              [-58.230445794213267, 1.563256666598477],\n              [-58.173075186555991, 1.547952710936613],\n              [-58.142247548661317, 1.516905346470935],\n              [-58.091391833830642, 1.514422436220059],\n              [-58.034691392214654, 1.520278149333876],\n              [-58.011740951885997, 1.539855786799592],\n              [-57.99509666414167, 1.574275954128211],\n              [-57.982715071872519, 1.648532548757714],\n              [-57.9462734200917, 1.650554033209858],\n              [-57.873368143873051, 1.667198320954185],\n              [-57.795749732709112, 1.70004744330106],\n              [-57.691797092024899, 1.704782550903417],\n              [-57.594370330495849, 1.704101398533737],\n              [-57.545766813016712, 1.726150959921654],\n              [-57.500547084729249, 1.773853598460107],\n              [-57.412799278647583, 1.908853603609998],\n              [-57.366898397990326, 1.940131680975128],\n              [-57.317394001570563, 1.963532560774013],\n              [-57.275547076146154, 1.959247892641883],\n              [-57.189590041617123, 1.981528166929309],\n              [-57.118947949078688, 2.013926849805898],\n              [-57.092624705887033, 2.005829925668877],\n              [-57.037495309252733, 1.936528165212735],\n              [-57.010040474221057, 1.921224209550701],\n              [-56.969544867207446, 1.916500088276791],\n              [-56.83679705940915, 1.881179042007489],\n              [-56.766374693441492, 1.892198329537223],\n              [-56.68986590146045, 1.914247890925139],\n              [-56.616521172100022, 1.922575527961612],\n              [-56.563643972817317, 1.907282558628253],\n              [-56.525400563155301, 1.927299649235522],\n              [-56.482872485361213, 1.942153165427158],\n              [-56.452945726407052, 1.932254483408883],\n              [-56.385896163302448, 1.923926846372581],\n              [-56.22704483888333, 1.885452723811113],\n              [-56.019820709884584, 1.842254479975736],\n              [-55.96333999483943, 1.857107996167372],\n              [-55.929589993551929, 1.887474208263313],\n              [-55.921723782314359, 1.976573332755947],\n              [-55.91541762973003, 2.039579926956264],\n              [-55.961999662757023, 2.095148776732287],\n              [-56.020040436455531, 2.158155370932775],\n              [-56.073598788108029, 2.236674661037284],\n              [-56.137715001491358, 2.258954935324823],\n              [-56.12939835078339, 2.29945054233832],\n              [-56.087771151929871, 2.341297467762729],\n              [-56.045023347564779, 2.364478620990781],\n              [-56.020271149354983, 2.392823348634579],\n              [-55.993497466692929, 2.497457141688471],\n              [-55.975490874209186, 2.515903187313995],\n              [-55.957495268054004, 2.520407582017128],\n              [-55.935896146136315, 2.516573353355284],\n              [-55.893818507812398, 2.489579944122454],\n              [-55.730473775018822, 2.406105819844413],\n              [-55.658919817211142, 2.41870713868434],\n              [-55.385316291148968, 2.440525987173032],\n              [-55.343919805194787, 2.488679065181771],\n              [-55.286098758067283, 2.499698352711505],\n              [-55.187771117597606, 2.547400991249958],\n              [-55.148846555565854, 2.55077379411307],\n              [-55.114195675337783, 2.53930406711288],\n              [-55.070316279132669, 2.548301870190642],\n              [-55.005749626279055, 2.593082145336382],\n              [-54.978745230717664, 2.59757555371084],\n              [-54.968396109229104, 2.548301870190642],\n              [-54.926549183804582, 2.497457141688471],\n              [-54.876143908444305, 2.45042466919125],\n              [-54.851622423133847, 2.439625108232349],\n              [-54.766796980444951, 2.454698350994931],\n              [-54.722247418198663, 2.441657579013167],\n              [-54.714820660102873, 2.425002304940222],\n              [-54.73484873703876, 2.416224228433464],\n              [-54.717072857454411, 2.264579935539416],\n              [-54.78839610236264, 2.130480809330038],\n              [-54.752844343193885, 2.081426852380673],\n              [-54.792900497065716, 2.010103607472502],\n              [-54.7616224197007, 1.969827727029838],\n              [-54.766115828075158, 1.898504482121496],\n              [-54.73484873703876, 1.773403158989879],\n              [-54.578700049441466, 1.782400962067584],\n              [-54.498368015127028, 1.746629476328053],\n              [-54.364499601817215, 1.760131674108663],\n              [-54.203615806617563, 1.657299638935967],\n              [-54.172348715580995, 1.657299638935967],\n              [-54.083249591088475, 1.541207105210503],\n              [-54.078745196385341, 1.505655346041749],\n              [-54.007191238577661, 1.523431225626041],\n              [-53.922365795888709, 1.460875070896009],\n              [-53.891098704852141, 1.407327705572129],\n              [-53.757219305213823, 1.394056220690743],\n              [-53.739443425629474, 1.434101388234183],\n              [-53.659122377643598, 1.420829903352796],\n              [-53.650124574566064, 1.362778143325841],\n              [-53.556290342470902, 1.367282538028917],\n              [-53.538525449215058, 1.2421812148973],\n              [-53.440197808745438, 1.259957094481592],\n              [-53.408919731380422, 1.184129454870344],\n              [-53.466971491407435, 1.152851377505215],\n              [-53.41791753445807, 0.94315532458404],\n              [-53.266273241563908, 0.782282515712836],\n              [-53.132174115354644, 0.751004438347934],\n              [-53.114398235770352, 0.719957073882256],\n              [-53.141171918432292, 0.536803990723683],\n              [-53.127669720651625, 0.384928984930184],\n              [-53.042844277962672, 0.246556176917181],\n              [-53.007292518793975, 0.134957051566346],\n              [-53.016070595300675, 0.054625017251851],\n              [-52.976025427757463, -0.016698227656377],\n              [-52.913469273027374, -0.190853507737359],\n              [-52.828643830338422, -0.181844718331263],\n              [-52.699268825403124, -0.302452633088365],\n              [-52.627714867595444, -0.396275878854851],\n              [-52.63221926229852, -0.556917974826604],\n              [-52.605445579636523, -0.610465340150597],\n              [-52.525124531650647, -0.646236825890128],\n              [-52.507348652066355, -0.731073254907699],\n              [-52.516115742244551, -0.873939471295046],\n              [-52.400023208519087, -0.869457049249036],\n              [-52.368745131153958, -0.923004414573029],\n              [-52.39124513201233, -0.954271505609483],\n              [-52.359967054647313, -1.070375025663452],\n              [-52.239370126218773, -1.146202665274814],\n              [-52.132275395570957, -1.15070705997789],\n              [-52.051943361256519, -1.177469756311268],\n              [-51.984893798151859, -1.141698270571794],\n              [-51.888148188992545, -1.160375029096713],\n              [-51.921667477380652, -1.180853545502885],\n              [-51.934499509120144, -1.320357945355852],\n              [-51.980839842919124, -1.368038611237182],\n              [-52.020445557320613, -1.39910794835987],\n              [-52.229240731301161, -1.362413611022589],\n              [-52.553469259294388, -1.514068890245312],\n              [-52.664167505704711, -1.551642133866153],\n              [-52.31024293165666, -1.559530317760732],\n              [-52.196622321853681, -1.64008207864606],\n              [-51.947540281101965, -1.586754439893014],\n              [-51.646273179765785, -1.394361854428894],\n              [-51.531290265223333, -1.354107946643353],\n              [-51.297292453562591, -1.223590363539415],\n              [-51.202348602284587, -1.136512723498981],\n              [-51.028874474573229, -1.032120629672988],\n              [-50.99197139699362, -0.986219749015731],\n              [-50.894995074934968, -0.937616231536595],\n              [-50.842348588551602, -0.999491233896947],\n              [-50.838294633318867, -1.038866235398984],\n              [-50.917945515263568, -1.115155300809249],\n              [-50.89724727228645, -1.164417998000999],\n              [-50.844589799574635, -1.226293000361238],\n              [-50.825473587907936, -1.311349155949642],\n              [-50.818716995853265, -1.376146521702708],\n              [-50.786098586405842, -1.489986858076691],\n              [-50.678992869429521, -1.643905320979457],\n              [-50.675400339995576, -1.694750049481513],\n              [-50.690023143287704, -1.761788626257555],\n              [-50.638716988986857, -1.817137749462688],\n              [-50.585620063133149, -1.849986871809563],\n              [-50.403148132344256, -2.015594788283238],\n              [-50.260490656199295, -1.922892148028211],\n              [-50.172742850117572, -1.896129451694776],\n              [-50.116492847971813, -1.857413629905352],\n              [-49.999268722406327, -1.831771539083491],\n              [-49.902973552717242, -1.870707087443691],\n              [-49.719589756659275, -1.926275937219714],\n              [-49.58527090387912, -1.867103571681298],\n              [-49.313699848597707, -1.731642140732561],\n              [-49.398745017857493, -1.971495665507291],\n              [-49.460169580747561, -2.191551826245473],\n              [-49.506971340345444, -2.280189524939203],\n              [-49.553322660472929, -2.5198233231431],\n              [-49.599223541130186, -2.583939536526429],\n              [-49.636566071851519, -2.656844812744964],\n              [-49.575822661331244, -2.631422448493993],\n              [-49.52384634098911, -2.596771568265922],\n              [-49.457466943925681, -2.504530353809628],\n              [-49.407742820935141, -2.344327710979655],\n              [-49.211098526324349, -1.916607968100948],\n              [-49.15484852417859, -1.87857329868126],\n              [-48.991273078485619, -1.829750054631404],\n              [-48.710023067756765, -1.4877456470536],\n              [-48.599994987387618, -1.488646525994284],\n              [-48.529572621419959, -1.567396528998415],\n              [-48.462973497785697, -1.613978562025295],\n              [-48.445867784242466, -1.520375042829585],\n              [-48.349792341124385, -1.482120646839121],\n              [-48.451492784457059, -1.435780313040141],\n              [-48.468148058529948, -1.393922401287114],\n              [-48.477816027648714, -1.323719761890345],\n              [-48.408525253521134, -1.229215363754008],\n              [-48.449691026575863, -1.145521512905134],\n              [-48.306594097288951, -1.039767114339611],\n              [-48.317624371147247, -0.960577658193756],\n              [-48.266548929745738, -0.895099140071011],\n              [-48.201740577664111, -0.827818864066955],\n              [-48.128395848303796, -0.795189468291028],\n              [-48.115124363422524, -0.737599134062862],\n              [-48.068773043294982, -0.713736828465073],\n              [-48.032540131756605, -0.704969738286877],\n              [-47.960997160277429, -0.769547377469053],\n              [-47.883367762784758, -0.693280284716025],\n              [-47.807770836072905, -0.663573252332753],\n              [-47.773790121886066, -0.676844737214026],\n              [-47.731492756991315, -0.71037501193058],\n              [-47.687173907644365, -0.724767102323369],\n              [-47.651171709005439, -0.718702648966996],\n              [-47.557348463238782, -0.669879404917026],\n              [-47.470721262668633, -0.748629407921158],\n              [-47.418744942326441, -0.76594386170666],\n              [-47.432917306148397, -0.721844738930656],\n              [-47.460372141180073, -0.680887706118199],\n              [-47.438992745833275, -0.647599130629658],\n              [-47.398046699349436, -0.626681161081649],\n              [-47.268671694414138, -0.645357919606681],\n              [-47.200490539469513, -0.680448252976419],\n              [-47.126915097209633, -0.745465345300431],\n              [-47.02454448783584, -0.750189466574341],\n              [-46.944443166420854, -0.743443860848345],\n              [-46.893598437918683, -0.779896498957612],\n              [-46.811244919152273, -0.779676772386722],\n              [-46.769848433198092, -0.836607926902275],\n              [-46.644516397167081, -0.916478535417809],\n              [-46.617292275034742, -0.970707053111482],\n              [-46.516272984071861, -0.996788597075124],\n              [-46.421768585935524, -1.030099145220788],\n              [-46.320749294972529, -1.039107934626998],\n              [-46.219048851639855, -1.031219750732305],\n              [-46.214994896407063, -1.099840358818767],\n              [-46.14029884863578, -1.118297390772852],\n              [-46.044673844987983, -1.103004421439437],\n              [-46.007089615038637, -1.146861844987484],\n              [-46.141199727576407, -1.240025911041414],\n              [-46.158964620832137, -1.315853550652776],\n              [-46.123193135092549, -1.34712064168923],\n              [-46.199240501274801, -1.485504436030624],\n              [-46.181244895119619, -1.574823287094205],\n              [-46.199240501274801, -1.677413623038944],\n              [-46.243790063521089, -1.722193898184685],\n              [-46.315344021328883, -1.73098296101989],\n              [-46.301841823548159, -1.802525932499123],\n              [-46.217016380859263, -1.807030327202142],\n              [-46.212522972484635, -1.927396542731231],\n              [-46.279572535589239, -2.141827703254933],\n              [-46.377669463159521, -2.253426828605825],\n              [-46.413440948899051, -2.239913644496539],\n              [-46.408947540524537, -2.387306228244199],\n              [-46.435721223186533, -2.409564529874501],\n              [-46.426943146679776, -2.512396565047197],\n              [-46.484994906706731, -2.547948324215952],\n              [-46.507275180994213, -2.614986900991994],\n              [-46.600867713861305, -2.664051844269977],\n              [-46.667917276965966, -2.739879483881225],\n              [-46.574094031199365, -2.847193941099988],\n              [-46.650141397381617, -2.91401279130514],\n              [-46.636650185929511, -2.985577735441382],\n              [-46.667917276965966, -3.092672466089311],\n              [-46.743744916577327, -3.190780379988041],\n              [-46.824296677462542, -3.329142201672369],\n              [-46.859848436631296, -3.329142201672369],\n              [-46.944673879320192, -3.396202751105534],\n              [-46.966943167279112, -3.525797482611608],\n              [-47.029499322009201, -3.570358031186515],\n              [-47.024994927306068, -3.59712072751995],\n              [-47.065270807748732, -3.842599252509217],\n              [-47.28846905845063, -4.079288714663221],\n              [-47.310749332738055, -4.065797503211058],\n              [-47.333018620696976, -4.164125143680735],\n              [-47.382292304217231, -4.275724269031571],\n              [-47.458119943828592, -4.338280423761717],\n              [-47.489398021193608, -4.423094880122107],\n              [-47.583221266960209, -4.547965490354329],\n              [-47.65454451186838, -4.606017250381342],\n              [-47.801915122958917, -4.597030433632256],\n              [-48.252816019065619, -4.954327810543248],\n              [-48.730490597834375, -5.338168157216899],\n              [-48.721943234227098, -5.355043157860635],\n              [-48.721492794756784, -5.355724310230372],\n              [-48.721492794756784, -5.355944036801247],\n              [-48.597523063465246, -5.398702827494787],\n              [-48.51111558946593, -5.408151070042777],\n              [-48.421566025503012, -5.398483100923954],\n              [-48.356999372649341, -5.424344918316791],\n              [-48.31717393167699, -5.486219920677129],\n              [-48.275316019923991, -5.522452832215549],\n              [-48.231447610047439, -5.533241406845832],\n              [-48.192742774586577, -5.565431349480036],\n              [-48.159223486198584, -5.619198441374863],\n              [-48.181273047586529, -5.672064654329048],\n              [-48.258671732179693, -5.723590535200856],\n              [-48.280040141197958, -5.795814659049739],\n              [-48.24540024729842, -5.888517299304809],\n              [-48.254398050376039, -5.945228727249429],\n              [-48.307044536759349, -5.965926970226505],\n              [-48.321216900581248, -6.006642303810906],\n              [-48.296695415270818, -6.067396700659771],\n              [-48.319415142699995, -6.112396702376316],\n              [-48.389848494996187, -6.141862035531645],\n              [-48.413699814265414, -6.207340553654447],\n              [-48.391199813407098, -6.308832256744807],\n              [-48.410096298502964, -6.357655500794763],\n              [-48.470619982452376, -6.353370832662506],\n              [-48.527320424068449, -6.3722673177584],\n              [-48.579966910451759, -6.414125229511413],\n              [-48.622044548775648, -6.488590564383287],\n              [-48.652872186670379, -6.595707267688226],\n              [-48.805417358505139, -6.71831469424032],\n              [-49.079471324037627, -6.856237062782895],\n              [-49.209747207913466, -7.005651130982585],\n              [-49.195124404621282, -7.168556410634423],\n              [-49.239673966867599, -7.334823506820669],\n              [-49.340473531259647, -7.510099392413281],\n              [-49.333947652104456, -7.649142366467331],\n              [-49.220316055972887, -7.752194128210874],\n              [-49.172393690863544, -7.867396769324316],\n              [-49.189949843877002, -7.994970016378346],\n              [-49.226841935128078, -8.139418264076113],\n              [-49.282641497803553, -8.301422664787339],\n              [-49.378947653821115, -8.498297672297554],\n              [-49.502697658541763, -8.70866389125986],\n              [-49.612945465481772, -8.839181474363713],\n              [-49.707900303088365, -8.894970050710626],\n              [-49.829848549927817, -9.022103844622904],\n              [-49.979240645470441, -9.220099457644579],\n              [-50.08409416509528, -9.421918312999608],\n              [-50.175214774040001, -9.730172719289826],\n              [-50.234848565377348, -9.842672723581373],\n              [-51.297523166462042, -9.789125358257451],\n              [-55.092146113949809, -9.565927107555609],\n              [-56.462624681854408, -9.467599467085961],\n              [-56.489398364516376, -9.467599467085961],\n              [-56.67682512947863, -9.378280616022494],\n              [-56.770648375245202, -9.39627622217769],\n              [-56.837697938349834, -9.271163912717554],\n              [-56.926797062842439, -9.244401216384119],\n              [-57.047393991270965, -9.231129731502847],\n              [-57.074167673932948, -9.18634945635705],\n              [-57.083165477010539, -9.079254725709276],\n              [-57.100941356594888, -9.052470056718775],\n              [-57.297365924634761, -8.958646810952203],\n              [-57.480519007793376, -8.79350032027736],\n              [-57.578615935363601, -8.757948561108677],\n              [-57.641172090093676, -8.615082344721259],\n              [-57.650169893171295, -8.498978824667262],\n              [-57.681447970536325, -8.436422669937187],\n              [-57.641172090093676, -8.231000298819694],\n              [-57.779544898106565, -8.048077928560417],\n              [-57.895648418160548, -7.690780551649439],\n              [-57.94919578348447, -7.619457306741182],\n              [-57.980473860849543, -7.530116483020606],\n              [-58.060794908835419, -7.409530540920628],\n              [-58.136622548446738, -7.338207296012342],\n              [-58.146290517565546, -7.263500261912498],\n              [-58.228424309761195, -7.141552015073032],\n              [-58.385924315769344, -6.949181402265936],\n              [-58.455445802796376, -6.793922607280777],\n              [-58.436769044271415, -6.675797602774665],\n              [-58.374443602440763, -6.57050463000806],\n              [-58.292990962614851, -6.49893968587179],\n              [-56.75714617746452, -3.186495711855869],\n              [-56.391070724046713, -2.391788650290195],\n              [-56.400969406064945, -2.336219800514158],\n              [-56.484893969813299, -2.248922433902749],\n              [-56.498396167593981, -2.159603582839281],\n              [-56.63676897560687, -2.222137764912276],\n              [-56.748368100957777, -2.17737946242363],\n              [-56.743874692583248, -2.052486879534356],\n              [-56.824195740569124, -2.034491273379132],\n              [-57.007348823727739, -1.936405332137454],\n              [-57.087669871713615, -1.81129302267729],\n              [-57.167990919699491, -1.771236868805516],\n              [-57.248322954013915, -1.757745657353368],\n              [-57.275096636675883, -1.713207081435613],\n              [-57.337641805077411, -1.730982961019961],\n              [-57.449240930428331, -1.690926807148188],\n              [-57.565344450482328, -1.623866257715036],\n              [-57.654674287874371, -1.588094771975463],\n              [-57.828598855055944, -1.445228555588045],\n              [-57.900141826535105, -1.422948281300592],\n              [-57.980473860849543, -1.34712064168923],\n              [-58.083075183122816, -1.298077671068427],\n              [-58.159122549305039, -1.235521516338338],\n              [-58.252715082172188, -1.128426785690522],\n              [-58.315271236902262, -1.119417996284355],\n              [-58.39109887651361, -1.048094751376084],\n              [-58.440372560033893, -0.86044825984294],\n              [-58.569747564969148, -0.762340345944182],\n              [-58.627799324996147, -0.766844740647258],\n              [-58.703615978278947, -0.695301769168111],\n              [-58.748396253424673, -0.62397852425984],\n              [-58.739398450347068, -0.432047364594496],\n              [-58.855490984072517, -0.351495603709196],\n              [-58.86449977347867, -0.173077628153081],\n              [-58.850997575697988, -0.083736804432505],\n              [-58.868773455282323, 0.224275902629742]\n            ]\n          ],\n          [\n            [\n              [-51.424415261146351, -0.565926764232813],\n              [-51.254094209727157, -0.541405278922355],\n              [-51.160721403430955, -0.6667153422963],\n              [-51.276374484014639, -1.021771508184429],\n              [-51.310124485302083, -1.023792992636515],\n              [-51.465141581059243, -1.211219757598826],\n              [-51.637714829829918, -1.34195706727354],\n              [-51.664949938290761, -1.35476712635591],\n              [-51.832568352888018, -1.433736855930931],\n              [-51.938322751453427, -1.452655313683863],\n              [-51.801971427892624, -1.202452667420573],\n              [-51.68002318105323, -1.086129420795658],\n              [-51.679572741583002, -1.018629418220826],\n              [-51.678221423172033, -0.855042986199237],\n              [-51.546143781414855, -0.649620615081744],\n              [-51.424415261146351, -0.565926764232813]\n            ]\n          ],\n          [\n            [\n              [-48.444516465831612, -0.271844721764467],\n              [-48.392770858388872, -0.297267086015552],\n              [-48.379719100078489, -0.352857908448641],\n              [-48.428091904658174, -0.441495607142429],\n              [-48.46387437672621, -0.534879399767249],\n              [-48.497393665114316, -0.664913584415103],\n              [-48.523266468835629, -0.691478526834715],\n              [-48.566695425570458, -0.684491221880705],\n              [-48.539691030009067, -0.80105616773352],\n              [-48.549589712027341, -0.847616228103448],\n              [-48.57096910737414, -0.892857929048034],\n              [-48.624066033227791, -0.986900901385468],\n              [-48.704617794113062, -1.106607937201943],\n              [-48.728469113382289, -1.131788602225015],\n              [-48.7898936762723, -1.173426787407095],\n              [-48.839617799262896, -1.226512726932128],\n              [-48.829048951203447, -1.276478549150681],\n              [-48.804066040094142, -1.326861851853948],\n              [-48.833542359577962, -1.390099158953774],\n              [-48.928947636654925, -1.482340373410011],\n              [-48.985867804841803, -1.504620647697379],\n              [-49.038525277553731, -1.514068890245312],\n              [-49.086898082133416, -1.505082073496283],\n              [-49.172624403762882, -1.412599159812089],\n              [-49.18162220684053, -1.485043010231834],\n              [-49.204792373740077, -1.559068891961942],\n              [-49.234048966653006, -1.599564498975496],\n              [-49.344747213063272, -1.59530180350032],\n              [-49.406622215423624, -1.555465376199436],\n              [-49.506740627445993, -1.511607952651389],\n              [-49.52564809887042, -1.630392136870171],\n              [-49.587973540701, -1.712306202495029],\n              [-49.650518709102585, -1.73816801988778],\n              [-49.748846349572204, -1.755262747102392],\n              [-49.805096351717964, -1.790155326558363],\n              [-49.911290203425153, -1.762931204426195],\n              [-50.010068283365172, -1.708482960161632],\n              [-50.065648119469756, -1.703736866230599],\n              [-50.109296802775475, -1.747857961663669],\n              [-50.338339780262743, -1.755943899472072],\n              [-50.44342401278692, -1.800724174617812],\n              [-50.507540226170363, -1.78789214287832],\n              [-50.602044624306586, -1.697672412874226],\n              [-50.617117867069169, -1.63759916839507],\n              [-50.673367869214928, -1.516090374697455],\n              [-50.723773144575262, -1.371422400428798],\n              [-50.759775343214187, -1.240245637612304],\n              [-50.729398144789741, -1.126844754380102],\n              [-50.668424021370015, -1.130448270142608],\n              [-50.595969184621708, -1.14754299735722],\n              [-50.580445502388898, -1.139457059548818],\n              [-50.576841986626505, -1.103224148010327],\n              [-50.5928161083296, -1.072857935914499],\n              [-50.709589794424801, -1.077801783759355],\n              [-50.783395949583962, -1.01030178118441],\n              [-50.795997268424117, -0.906349140500197],\n              [-50.780924025661591, -0.689896495524408],\n              [-50.771464796785153, -0.645357919606681],\n              [-50.719949902241865, -0.583482917246329],\n              [-50.703074901598086, -0.528573247182862],\n              [-50.71589594700913, -0.470301760585016],\n              [-50.693615672721648, -0.364547362019607],\n              [-50.645473581041415, -0.272745600705093],\n              [-50.461650331841668, -0.157323233020861],\n              [-50.248339776829539, -0.116366200208404],\n              [-49.628699860614006, -0.229107903727936],\n              [-49.535096341418296, -0.233590325773889],\n              [-49.402798973090228, -0.214693840678137],\n              [-49.314370014638882, -0.167892081080254],\n              [-49.215141495228636, -0.158663565103154],\n              [-49.117044567658297, -0.163629385605191],\n              [-48.786520873409302, -0.215594719618707],\n              [-48.588074820917257, -0.231568841321803],\n              [-48.51540025759806, -0.248224115394692],\n              [-48.444516465831612, -0.271844721764467]\n            ]\n          ],\n          [\n            [\n              [-50.765169630529329, -0.040780259825112],\n              [-50.66707270295916, -0.058094713610558],\n              [-50.650648141785723, -0.105797352149011],\n              [-50.652900339137261, -0.131681142198886],\n              [-50.926273152299984, -0.327413571540546],\n              [-51.01896480622645, -0.26307763158627],\n              [-51.038092004221767, -0.22594384110721],\n              [-51.022348595418066, -0.188370597486426],\n              [-51.025721398281121, -0.172396475783273],\n              [-50.995124473285784, -0.105357899007231],\n              [-50.84211787565215, -0.050228502372988],\n              [-50.765169630529329, -0.040780259825112]\n            ]\n          ],\n          [\n            [\n              [-49.503367824582938, 0.083650897265329],\n              [-49.400546775738803, 0.057327654073731],\n              [-49.372421774665895, 0.001077651927972],\n              [-49.380969138273201, -0.055392076788678],\n              [-49.443964746145014, -0.112323231304231],\n              [-49.708790195700431, -0.143832021568699],\n              [-49.830068276498707, -0.093866199350146],\n              [-49.802624427795536, -0.051788561026285],\n              [-49.712393711462937, 0.015030289178867],\n              [-49.602145904522899, 0.06273292771732],\n              [-49.503367824582938, 0.083650897265329]\n            ]\n          ],\n          [\n            [\n              [-49.878891520548677, 0.304607936944308],\n              [-49.738266515184193, 0.26815529883487],\n              [-49.697320468700354, 0.215948265593283],\n              [-49.839066079576355, 0.006922378713398],\n              [-49.917145916539141, -0.023224106811597],\n              [-50.002421798698435, -0.02928856016797],\n              [-50.113120045108758, 0.033025895334163],\n              [-50.285693293879376, 0.028532486959705],\n              [-50.339471372102707, 0.043375016822665],\n              [-50.3450963723173, 0.134506612095947],\n              [-50.272641535568994, 0.231702660725603],\n              [-50.127973561300337, 0.226528099981408],\n              [-49.878891520548677, 0.304607936944308]\n            ]\n          ],\n          [\n            [\n              [-50.350941099102783, 0.5818039924402],\n              [-50.342624448394929, 0.381556182067072],\n              [-50.33227532690637, 0.258926782857827],\n              [-50.42609857267297, 0.139230733370027],\n              [-50.443874452257262, -0.007700424578843],\n              [-50.623874459123726, 0.054405290681018],\n              [-50.610372261343059, 0.204698265164097],\n              [-50.526216984695338, 0.247006616387409],\n              [-50.451520936923941, 0.326877224903058],\n              [-50.42609857267297, 0.424974152473396],\n              [-50.424516541362607, 0.558172399741864],\n              [-50.39684197976004, 0.581353552969972],\n              [-50.372770933919924, 0.590801795517962],\n              [-50.350941099102783, 0.5818039924402]\n            ]\n          ],\n          [\n            [\n              [-50.098716968387407, 0.625002236275577],\n              [-50.058891527415085, 0.63805399458596],\n              [-50.036841966027168, 0.594855750750639],\n              [-50.039995042319219, 0.522851353472561],\n              [-50.15294548608108, 0.393025909067035],\n              [-50.261391535139808, 0.359275907779647],\n              [-50.281650324975203, 0.390773711715553],\n              [-50.281650324975203, 0.516556187216906],\n              [-50.251273126550757, 0.58540750820282],\n              [-50.112900318537868, 0.604754432768857],\n              [-50.098716968387407, 0.625002236275577]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 2620, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-50.96429683539111, -19.511366940069024],\n              [-50.997596397208241, -19.663923098232331],\n              [-50.99377315487493, -20.101552509457804],\n              [-51.063964807943137, -20.223039330498423],\n              [-51.160721403430983, -20.306513454776464],\n              [-51.396971412443207, -20.441755159154269],\n              [-51.534223614944608, -20.55761697998031],\n              [-51.593165267583686, -20.666513468509322],\n              [-51.619049057633561, -20.806918747302916],\n              [-51.691943347523647, -20.943720510334003],\n              [-51.811419670440642, -21.077138484173474],\n              [-51.866318354175519, -21.18267315616805],\n              [-51.856650385056696, -21.260082827089718],\n              [-51.872844233330682, -21.32982404068764],\n              [-51.936290280672836, -21.422746407513614],\n              [-51.954747312626921, -21.469548167111469],\n              [-51.989848632325305, -21.493630199280119],\n              [-52.047669679452866, -21.510944653065621],\n              [-52.072641604233596, -21.554142896900998],\n              [-52.064995119566902, -21.622763504987418],\n              [-52.12259644012363, -21.718168782064367],\n              [-52.245665292474555, -21.840358728131761],\n              [-52.338818372199967, -21.957341154469304],\n              [-52.402495132441516, -22.069181979048096],\n              [-52.566070578134543, -22.207324074161647],\n              [-52.960721472095528, -22.454824083603015],\n              [-53.116199993651563, -22.639987664885183],\n              [-53.272348681248786, -22.752048216034964],\n              [-53.480693415759006, -22.852397340956728],\n              [-53.619967102712508, -23.001130256786681],\n              [-53.677348696698317, -23.173483778986451],\n              [-53.771171942464889, -23.322194722159324],\n              [-53.907523266025649, -23.407031151176824],\n              [-53.995490798678219, -23.570156157399552],\n              [-54.050169755842191, -23.822819741256652],\n              [-54.124646077042598, -23.978517989383576],\n              [-54.242540368649287, -24.046918870899106],\n              [-54.370794768073054, -23.971091231287758],\n              [-54.440316255100086, -23.901789470831602],\n              [-54.529646092492129, -23.852065347841034],\n              [-54.625490822710816, -23.812470619768121],\n              [-54.671842142838358, -23.829125893840967],\n              [-54.72134653925805, -23.852065347841034],\n              [-54.817191269476737, -23.888517985950344],\n              [-54.926549183804653, -23.951293867251295],\n              [-54.982568473051003, -23.974475020479346],\n              [-55.081796992461264, -23.997656173707384],\n              [-55.194296996752797, -24.017453537743847],\n              [-55.286999637007881, -24.004401779433451],\n              [-55.366419806053145, -23.991130294552192],\n              [-55.415924202472837, -23.951293867251295],\n              [-55.442467172235368, -23.865358805379387],\n              [-55.442467172235368, -23.792673255731657],\n              [-55.458891733408791, -23.686699130595315],\n              [-55.518525524746138, -23.627307038485938],\n              [-55.538322888782602, -23.580944732029849],\n              [-55.541695691645629, -23.524694729884089],\n              [-55.534950085919562, -23.461918848583124],\n              [-55.518525524746138, -23.41557851478413],\n              [-55.52842420676437, -23.359328512638371],\n              [-55.554747449956025, -23.319733784565443],\n              [-55.54822157080082, -23.250190324881331],\n              [-55.561493055682092, -23.154345594662644],\n              [-55.601098770083553, -23.094733775982377],\n              [-55.620896134120017, -23.02519031629825],\n              [-55.620896134120017, -22.955888555842108],\n              [-55.650822893074135, -22.886367068815062],\n              [-55.653964983037739, -22.810319702632839],\n              [-55.627641739846084, -22.741017942176683],\n              [-55.617743057827866, -22.671496455149651],\n              [-55.647450090211095, -22.621772332159082],\n              [-55.703700092356854, -22.59206529977584],\n              [-55.746667623292822, -22.512656117059123],\n              [-55.753193502448013, -22.410043808457274],\n              [-55.799544822575541, -22.353793806311515],\n              [-55.849268945566124, -22.307673199083396],\n              [-55.905299221141007, -22.307673199083396],\n              [-55.991464995912352, -22.281130229320866],\n              [-56.067523348423123, -22.284492045855359],\n              [-56.189922034732888, -22.281130229320866],\n              [-56.245941323979224, -22.264694681818895],\n              [-56.275868082933343, -22.228242043709585],\n              [-56.351915449115566, -22.178517920719017],\n              [-56.394893966380067, -22.092582858847109],\n              [-56.4477711656628, -22.076147311345139],\n              [-56.523818531845023, -22.102470554536794],\n              [-56.550372487936102, -22.135539403454516],\n              [-56.580068533990783, -22.181901709910591],\n              [-56.632945733273516, -22.234767922864776],\n              [-56.702467220300548, -22.231625832901173],\n              [-56.775141783619745, -22.261332865284402],\n              [-56.844674256975324, -22.264694681818895],\n              [-56.93714618433097, -22.271220560974086],\n              [-57.02984882458604, -22.244897317782446],\n              [-57.142348828877573, -22.214970558828327],\n              [-57.23819355909626, -22.195173194791863],\n              [-57.330896199351344, -22.214970558828327],\n              [-57.393672080652294, -22.198315284755481],\n              [-57.476465052560599, -22.188647315636672],\n              [-57.568947966244792, -22.181901709910591],\n              [-57.641622529563989, -22.129013524299324],\n              [-57.721042698609253, -22.099328464573176],\n              [-57.764021215873754, -22.109216160262861],\n              [-57.820271218019514, -22.142306981837677],\n              [-57.879894023028328, -22.135539403454516],\n              [-57.955941389210551, -22.109216160262861],\n              [-57.98564842159378, -22.04644027896191],\n              [-57.979122542438589, -22.006625824318107],\n              [-57.962467268365742, -21.967031096245179],\n              [-57.932771222311047, -21.91078109409942],\n              [-57.94941551005536, -21.851147302762072],\n              [-57.942669904329279, -21.798281089807887],\n              [-57.92939841944802, -21.751918783351798],\n              [-57.9161159482382, -21.699052570397612],\n              [-57.926245343155855, -21.649548173977919],\n              [-57.92939841944802, -21.596681961023734],\n              [-57.936144025174087, -21.546957838033165],\n              [-57.946042707192319, -21.494069652421885],\n              [-57.906217266219969, -21.418022286239662],\n              [-57.873148417302247, -21.355026678367821],\n              [-57.893165507909586, -21.302138492756541],\n              [-57.886419902183519, -21.265927553875201],\n              [-57.860096658991864, -21.206293762537854],\n              [-57.827016823745595, -21.133630185547219],\n              [-57.830169900037745, -20.997949028027634],\n              [-57.860096658991864, -20.918517872653823],\n              [-57.892275615297521, -20.897138477307024],\n              [-57.90059226600539, -20.873078417795455],\n              [-57.884848857201703, -20.841789354101863],\n              [-57.901943584416316, -20.809401657553877],\n              [-57.908469463571507, -20.776332808636155],\n              [-57.891374736356894, -20.747526655193525],\n              [-57.915215069297588, -20.690375774107153],\n              [-57.962467268365742, -20.673720500034307],\n              [-57.979122542438589, -20.657306925189417],\n              [-57.995547103612012, -20.594531043888466],\n              [-58.008818588493284, -20.521625767669846],\n              [-58.002292709338079, -20.465375765524072],\n              [-58.02547386256613, -20.41587136910438],\n              [-58.058542711483852, -20.386164336721151],\n              [-58.091391833830698, -20.333298123766966],\n              [-58.124691395647844, -20.293483669123162],\n              [-58.13774315395824, -20.237233666977403],\n              [-58.159792715346228, -20.164548117329659],\n              [-58.093644031182237, -20.15105690587751],\n              [-58.067540514561472, -20.110319599636014],\n              [-58.021200180762477, -20.055190203001743],\n              [-57.960215071014204, -20.040798112608982],\n              [-57.887540507695007, -20.020319596202782],\n              [-57.860766825033053, -19.979604262618366],\n              [-58.029967270940659, -19.832673104669638],\n              [-58.131447987702472, -19.744474859117645],\n              [-58.072044909264548, -19.62522924910003],\n              [-57.971695784342785, -19.424289300028533],\n              [-57.874499735713172, -19.229457749627542],\n              [-57.800473853983064, -19.080944560368465],\n              [-57.78134665598779, -19.053500711665322],\n              [-57.7167690168056, -19.044052469117403],\n              [-57.72870016960448, -18.967323950565444],\n              [-57.730941380627485, -18.917138401776015],\n              [-57.783148413869014, -18.914216038383287],\n              [-57.725096653842016, -18.733095426005335],\n              [-57.639150605641561, -18.475026568504532],\n              [-57.574122526989058, -18.279272166505848],\n              [-57.553193571112558, -18.246423044159002],\n              [-57.506172084943842, -18.237194528181959],\n              [-57.495592250555873, -18.214694527323658],\n              [-57.55207296560107, -18.183207709716271],\n              [-57.586493132929718, -18.122233586296545],\n              [-57.661650606499876, -17.947397153845813],\n              [-57.75322165491491, -17.734767751203393],\n              [-57.752771215444596, -17.734548024632517],\n              [-57.632174287016056, -17.739953298276205],\n              [-57.600896209651026, -17.816000664458443],\n              [-57.493790492674634, -17.869548029782365],\n              [-57.471521204715756, -17.900595394247972],\n              [-57.41932515780276, -17.882138362293887],\n              [-57.369820761383068, -17.875612483138696],\n              [-57.198598831023347, -17.812397148695979],\n              [-57.079792674147498, -17.734328298061641],\n              [-56.980124701595471, -17.594823898208716],\n              [-56.887422061340402, -17.517875653085866],\n              [-56.789995299811366, -17.386017737899635],\n              [-56.745215024665626, -17.316957676671464],\n              [-56.6680470529719, -17.320319493205957],\n              [-56.489398364516376, -17.302543613621609],\n              [-56.435840012863906, -17.320319493205957],\n              [-56.328745282216062, -17.284548007466384],\n              [-56.248424234230185, -17.217729157261189],\n              [-56.101042636811144, -17.186440093567612],\n              [-56.024995270628921, -17.213224762558113],\n              [-55.984950103085694, -17.266772127882035],\n              [-55.833075097292124, -17.311332676456885],\n              [-55.788525535045821, -17.351608556899535],\n              [-55.609865860261749, -17.391862464685104],\n              [-55.534049206978949, -17.503483562693106],\n              [-55.337624638939062, -17.583793624350449],\n              [-55.181245238442415, -17.686405932952297],\n              [-55.07415050779457, -17.681901538249207],\n              [-54.899995227713575, -17.650612474555629],\n              [-54.810896103220969, -17.601569503934783],\n              [-54.779618025855925, -17.557030928017028],\n              [-54.699296977870048, -17.516755047574378],\n              [-54.525141697789053, -17.512250652871302],\n              [-54.422320648944861, -17.579289229647358],\n              [-54.391273284479254, -17.673112475413944],\n              [-54.31971932667156, -17.673112475413944],\n              [-54.234893883982593, -17.637340989674357],\n              [-54.145575032919112, -17.628354172925299],\n              [-54.08324959108846, -17.588298019053525],\n              [-54.03846931594272, -17.512250652871302],\n              [-53.949150464879224, -17.45870328754738],\n              [-53.819775459943969, -17.307048008324685],\n              [-53.743947820332622, -17.253500643000763],\n              [-53.681391665602547, -17.257763338475868],\n              [-53.752714910510804, -17.641845384377447],\n              [-53.859820627487196, -17.690888354998279],\n              [-53.989415358993341, -17.900595394247972],\n              [-53.975924147541193, -17.931862485284469],\n              [-53.868818430564801, -17.945375669393698],\n              [-53.72594122784885, -18.007931824123787],\n              [-53.60534429942031, -17.994418640014544],\n              [-53.493745174069389, -18.012414246169769],\n              [-53.306318409107135, -17.99892303471762],\n              [-53.145665326806835, -18.030190125754118],\n              [-53.065344278820945, -18.021203309005045],\n              [-53.051842081040249, -18.016698914301969],\n              [-53.042844277962644, -18.097250675187283],\n              [-53.056346475743339, -18.293664256898609],\n              [-53.034066201455914, -18.356000685057808],\n              [-52.989296912638721, -18.387267776094305],\n              [-52.908964878324298, -18.347233594879611],\n              [-52.784094268092119, -18.391772170797381],\n              [-52.788598662795195, -18.463095415705638],\n              [-52.84641970992277, -18.534638387184799],\n              [-52.891199985068496, -18.637250695786648],\n              [-52.868919710781071, -18.682030970932374],\n              [-52.761594267233804, -18.708793667265795],\n              [-52.6144433827142, -18.722065152147053],\n              [-52.498339862660202, -18.704289272562704],\n              [-52.341971448492089, -18.815888397913625],\n              [-52.270648203583818, -18.811405975867643],\n              [-52.096492923502822, -18.896220432228048],\n              [-52.060721437763249, -18.945263402848894],\n              [-51.91357055324363, -18.99004367799462],\n              [-51.84201659543595, -19.048095438021619],\n              [-51.641098619021534, -19.128427472336043],\n              [-51.542990705122776, -19.137414289085115],\n              [-51.404617897109887, -19.168483626207816],\n              [-51.310794651343315, -19.253298082568236],\n              [-51.136650357590867, -19.284565173604733],\n              [-51.034049035317565, -19.369401602622233],\n              [-50.96429683539111, -19.511366940069024]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 751, \"fill\": \"#fff\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-51.888148188992545, -1.160375029096713],\n              [-51.984893798151859, -1.141698270571794],\n              [-52.051943361256519, -1.177469756311268],\n              [-52.132275395570957, -1.15070705997789],\n              [-52.239370126218773, -1.146202665274814],\n              [-52.359967054647313, -1.070375025663452],\n              [-52.39124513201233, -0.954271505609483],\n              [-52.368745131153958, -0.923004414573029],\n              [-52.400023208519087, -0.869457049249036],\n              [-52.516115742244551, -0.873939471295046],\n              [-52.507348652066355, -0.731073254907699],\n              [-52.525124531650647, -0.646236825890128],\n              [-52.605445579636523, -0.610465340150597],\n              [-52.63221926229852, -0.556917974826604],\n              [-52.627714867595444, -0.396275878854851],\n              [-52.699268825403124, -0.302452633088365],\n              [-52.828643830338422, -0.181844718331263],\n              [-52.913469273027374, -0.190853507737359],\n              [-52.976025427757463, -0.016698227656377],\n              [-53.016070595300675, 0.054625017251851],\n              [-53.007292518793975, 0.134957051566346],\n              [-53.042844277962672, 0.246556176917181],\n              [-53.127669720651625, 0.384928984930184],\n              [-53.141171918432292, 0.536803990723683],\n              [-53.114398235770352, 0.719957073882256],\n              [-53.132174115354644, 0.751004438347934],\n              [-53.266273241563908, 0.782282515712836],\n              [-53.41791753445807, 0.94315532458404],\n              [-53.466971491407435, 1.152851377505215],\n              [-53.408919731380422, 1.184129454870344],\n              [-53.440197808745438, 1.259957094481592],\n              [-53.538525449215058, 1.2421812148973],\n              [-53.556290342470902, 1.367282538028917],\n              [-53.650124574566064, 1.362778143325841],\n              [-53.659122377643598, 1.420829903352796],\n              [-53.739443425629474, 1.434101388234183],\n              [-53.757219305213823, 1.394056220690743],\n              [-53.891098704852141, 1.407327705572129],\n              [-53.922365795888709, 1.460875070896009],\n              [-54.007191238577661, 1.523431225626041],\n              [-54.078745196385341, 1.505655346041749],\n              [-54.083249591088475, 1.541207105210503],\n              [-54.172348715580995, 1.657299638935967],\n              [-54.203615806617563, 1.657299638935967],\n              [-54.364499601817215, 1.760131674108663],\n              [-54.498368015127028, 1.746629476328053],\n              [-54.578700049441466, 1.782400962067584],\n              [-54.73484873703876, 1.773403158989879],\n              [-54.766115828075158, 1.898504482121496],\n              [-54.7616224197007, 1.969827727029838],\n              [-54.792900497065716, 2.010103607472502],\n              [-54.752844343193885, 2.081426852380673],\n              [-54.78839610236264, 2.130480809330038],\n              [-54.717072857454411, 2.264579935539416],\n              [-54.73484873703876, 2.416224228433464],\n              [-54.714820660102873, 2.425002304940222],\n              [-54.702900493632512, 2.397997909378716],\n              [-54.697495219988809, 2.359754499716871],\n              [-54.661943460820055, 2.327575543411285],\n              [-54.61627329306225, 2.326674664470602],\n              [-54.591971534322738, 2.313853619059614],\n              [-54.550575048368614, 2.293155376082495],\n              [-54.515023289199917, 2.245452737543985],\n              [-54.433120209903677, 2.207429054452973],\n              [-54.293165370580425, 2.154332128599378],\n              [-54.227917565357018, 2.153431249658695],\n              [-54.167393881407634, 2.137006688485371],\n              [-54.13004036435774, 2.121032566782276],\n              [-54.089775470243637, 2.150497899937534],\n              [-53.946447828057387, 2.232631692133054],\n              [-53.876695628130904, 2.27830185989086],\n              [-53.829443429062678, 2.312952740118931],\n              [-53.794342109364379, 2.346032575365257],\n              [-53.767799139601777, 2.354799665543339],\n              [-53.750242986588376, 2.335002301507075],\n              [-53.734719304355565, 2.308448345415854],\n              [-53.683643862954057, 2.292924663183044],\n              [-53.563947813466143, 2.261877298717536],\n              [-53.509049129731295, 2.253099222210778],\n              [-53.431870171709022, 2.279422465402376],\n              [-53.365941214115935, 2.324202740548117],\n              [-53.334443410180029, 2.339726422780984],\n              [-53.285400439559169, 2.295176860534639],\n              [-53.252089891413391, 2.232181252662826],\n              [-53.229820603454584, 2.204957130530545],\n              [-53.180096480463988, 2.21125229678637],\n              [-53.082219279464653, 2.20180405423838],\n              [-53.009775429044907, 2.181775977302436],\n              [-52.964775427328277, 2.18357773518369],\n              [-52.903570591009156, 2.211483009685821],\n              [-52.87049075576283, 2.266601419991446],\n              [-52.783424102050844, 2.317226421922612],\n              [-52.700620143814092, 2.363577742050097],\n              [-52.653148218174977, 2.425672470981453],\n              [-52.582945578778208, 2.528954945624434],\n              [-52.559544698979323, 2.573054068400438],\n              [-52.554589864805905, 2.647750116171721],\n              [-52.455822771194505, 2.864202761147453],\n              [-52.418469254144611, 2.903797489220437],\n              [-52.396419692756581, 2.972198370735896],\n              [-52.356594251784259, 3.051629526109878],\n              [-52.356594251784259, 3.117778210273684],\n              [-52.327799084670232, 3.181674697086237],\n              [-52.271318369624964, 3.237023820291483],\n              [-52.229471444200556, 3.271674700519384],\n              [-52.162641607666842, 3.364608053674033],\n              [-52.116070560968353, 3.452355859755698],\n              [-51.9995166014441, 3.64697866991429],\n              [-51.990518798366452, 3.702108066548533],\n              [-51.944398191138305, 3.735176915466184],\n              [-51.928874508905551, 3.77702384089082],\n              [-51.879589839056678, 3.828549721762442],\n              [-51.827393792143766, 3.869506754575013],\n              [-51.805344230755679, 3.930030438524398],\n              [-51.767089834765216, 3.992575606925811],\n              [-51.683395983916284, 4.039608079423203],\n              [-51.652568346021496, 4.061207201340892],\n              [-51.557844221314383, 4.233780450111567],\n              [-51.547044660355539, 4.310948421805278],\n              [-51.461549051625411, 4.313881771526439],\n              [-51.326999485945862, 4.224782647033805],\n              [-51.219893768969428, 4.093605884217311],\n              [-51.076346400212287, 3.671730868124087],\n              [-51.052495080943118, 3.281804095437053],\n              [-50.994223594345158, 3.07750232983102],\n              [-50.827275345789133, 2.651804071404399],\n              [-50.816464798501727, 2.573054068400438],\n              [-50.789691115839787, 2.477879504222983],\n              [-50.737044629456477, 2.376849226931483],\n              [-50.678773142858631, 2.210351417845686],\n              [-50.676520945507036, 2.179523779951012],\n              [-50.714324902027272, 2.134073338763983],\n              [-50.658964792493578, 2.130931248800493],\n              [-50.608790230032696, 2.104157566138497],\n              [-50.575941107685878, 1.998622894143864],\n              [-50.534324895160751, 1.927299649235522],\n              [-50.458947695019731, 1.829653161135639],\n              [-50.304370052404295, 1.797704917729448],\n              [-50.187596366309151, 1.786004477830033],\n              [-50.05461784561146, 1.730655354624787],\n              [-49.957191084082353, 1.6597825491869],\n              [-49.881594157370444, 1.419929024412284],\n              [-49.906346355580297, 1.268954897559297],\n              [-49.898919597484564, 1.162980772422884],\n              [-49.937844159516317, 1.121353573569309],\n              [-50.047191087515671, 1.052051813113167],\n              [-50.071042406784898, 1.015148735533614],\n              [-50.294471370386134, 0.835829881036886],\n              [-50.343294614436104, 0.751004438347934],\n              [-50.462990663924018, 0.63737284221628],\n              [-50.581566107900471, 0.420480744098768],\n              [-50.755040235611716, 0.22247414474856],\n              [-50.816245071930837, 0.17253029518713],\n              [-50.910068317697437, 0.161049581858492],\n              [-50.966999472212933, 0.130232930292266],\n              [-51.101999477362767, -0.03133201727718],\n              [-51.282900363169858, -0.085099109171949],\n              [-51.299544650914186, -0.17892235493855],\n              [-51.404167457639517, -0.392672363092458],\n              [-51.496199931853425, -0.509457035516164],\n              [-51.554921857921613, -0.549051763589034],\n              [-51.702742908482492, -0.762340345944153],\n              [-51.72141966700741, -0.855504411998083],\n              [-51.720518788066784, -1.018387718992813],\n              [-51.819066155107294, -1.117857937631129],\n              [-51.888148188992545, -1.160375029096713]\n            ]\n          ],\n          [\n            [\n              [-50.362641539002311, 2.154551855170212],\n              [-50.341943296025136, 2.141730809759224],\n              [-50.291999446463706, 1.979506682477108],\n              [-50.298964778760705, 1.938549649664708],\n              [-50.398874450540688, 1.892879481906903],\n              [-50.456025331627075, 1.910424648591913],\n              [-50.508891544581275, 2.029450532038538],\n              [-50.491115664996926, 2.128679051448842],\n              [-50.418671814577067, 2.161528173795716],\n              [-50.362641539002311, 2.154551855170212]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 3224, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-60.724792813193218, -13.662948748219577],\n              [-60.659094568499526, -13.601513199001005],\n              [-60.382348952473777, -13.418590828741813],\n              [-60.351070875108732, -13.271220217651319],\n              [-60.275023508926509, -13.137340818012973],\n              [-60.270749827122856, -13.070302241236917],\n              [-60.194691474612085, -12.972194327338144],\n              [-60.083092349261165, -12.927414052192404],\n              [-60.043047181717938, -12.873866686868496],\n              [-60.002771301275288, -12.731000470481078],\n              [-59.908948055508716, -12.619401345130157],\n              [-59.82412261281975, -12.387194305022163],\n              [-59.891172175924368, -12.244547815205635],\n              [-59.886667781221291, -12.128444295151638],\n              [-59.931448056367017, -12.052396928969401],\n              [-59.98499542169094, -11.918517529331055],\n              [-60.060823061302287, -11.905246044449797],\n              [-60.101098941744937, -11.744362249250059],\n              [-60.101098941744937, -11.601496032862656],\n              [-60.025040589234166, -11.534677182657461],\n              [-59.908948055508716, -11.382802176863891],\n              [-60.002771301275288, -11.146332441280791],\n              [-60.069820864379906, -11.115043377587199],\n              [-60.176915595027737, -11.119547772290289],\n              [-60.279516917301038, -11.079271891847625],\n              [-60.382348952473777, -11.10155216613505],\n              [-60.440400712500775, -11.038996011404976],\n              [-60.440400712500775, -11.003444252236292],\n              [-61.471566523321002, -10.998939857533202],\n              [-61.520620480270395, -10.954181555044556],\n              [-61.507348995389123, -10.878353915433223],\n              [-61.520620480270395, -10.789013091712633],\n              [-61.471566523321002, -10.757746000676136],\n              [-61.502844600686046, -10.686422755767879],\n              [-61.471566523321002, -10.436439836075536],\n              [-61.565400755416121, -10.262306528651621],\n              [-61.569674437219774, -10.061366579580124],\n              [-61.534122678051077, -9.994547729374943],\n              [-61.520620480270395, -9.860448603165707],\n              [-61.565400755416121, -9.726569203527362],\n              [-61.520620480270395, -9.704288929239937],\n              [-61.480575312727169, -9.63725035246388],\n              [-61.551898557635425, -9.463095072382885],\n              [-61.547394162932349, -9.409547707058962],\n              [-61.609950317662424, -9.320448582566343],\n              [-61.592174438078075, -9.239896821681043],\n              [-61.529618283348, -9.226625336799771],\n              [-61.556391966009969, -9.128297696330122],\n              [-61.529618283348, -8.998922691394853],\n              [-61.484848994530822, -8.914108235034448],\n              [-61.507348995389123, -8.847047685601282],\n              [-61.609950317662424, -8.766715651286859],\n              [-58.547467290681723, -8.74893977170251],\n              [-58.471650637398923, -8.690888011675511],\n              [-58.426650635682307, -8.523038884178831],\n              [-58.397174316198502, -8.415504700389221],\n              [-58.354415525504876, -8.27600030053631],\n              [-58.328773434682958, -8.050538866154383],\n              [-58.353525632892811, -7.905870891885741],\n              [-58.330344479664774, -7.780099402712935],\n              [-58.259471674226816, -7.67322439863598],\n              [-58.223919915058119, -7.574677031595442],\n              [-58.223700188487229, -7.484677028162224],\n              [-58.201870353670117, -7.414474388765456],\n              [-58.136622548446738, -7.338207296012342],\n              [-58.060794908835419, -7.409530540920628],\n              [-57.980473860849543, -7.530116483020606],\n              [-57.94919578348447, -7.619457306741182],\n              [-57.895648418160548, -7.690780551649439],\n              [-57.779544898106565, -8.048077928560417],\n              [-57.641172090093676, -8.231000298819694],\n              [-57.681447970536325, -8.436422669937187],\n              [-57.650169893171295, -8.498978824667262],\n              [-57.641172090093676, -8.615082344721259],\n              [-57.578615935363601, -8.757948561108677],\n              [-57.480519007793376, -8.79350032027736],\n              [-57.297365924634761, -8.958646810952203],\n              [-57.100941356594888, -9.052470056718775],\n              [-57.083165477010539, -9.079254725709276],\n              [-57.074167673932948, -9.18634945635705],\n              [-57.047393991270965, -9.231129731502847],\n              [-56.926797062842439, -9.244401216384119],\n              [-56.837697938349834, -9.271163912717554],\n              [-56.770648375245202, -9.39627622217769],\n              [-56.67682512947863, -9.378280616022494],\n              [-56.489398364516376, -9.467599467085961],\n              [-56.462624681854408, -9.467599467085961],\n              [-55.092146113949809, -9.565927107555609],\n              [-51.297523166462042, -9.789125358257451],\n              [-50.234848565377348, -9.842672723581373],\n              [-50.337449887650649, -10.034362184018732],\n              [-50.395270934778239, -10.176788947264384],\n              [-50.402697692874028, -10.258241587090311],\n              [-50.454674013216163, -10.388517470966192],\n              [-50.550749456334273, -10.567177145750264],\n              [-50.59912226091393, -10.689806544959453],\n              [-50.610372261343059, -11.000983314642411],\n              [-50.64524286814202, -11.162746016125666],\n              [-50.708018749442999, -11.345668386384844],\n              [-50.716566113050305, -11.482689875986807],\n              [-50.671346384762813, -11.573832457588622],\n              [-50.66572138454822, -11.651901308222961],\n              [-50.717466991990904, -11.749108343181121],\n              [-50.661447702744567, -11.853500437007099],\n              [-50.653570505178465, -11.922340771664409],\n              [-50.67471918762584, -11.990082473467297],\n              [-50.667523142429445, -12.112030720306748],\n              [-50.631740670361324, -12.288646937981625],\n              [-50.629268746438925, -12.437379853811592],\n              [-50.660546823803969, -12.558207495139541],\n              [-50.655372263059689, -12.666862284440654],\n              [-50.613964790777004, -12.763388167029063],\n              [-50.566042425667661, -12.819638169174837],\n              [-50.484820498741158, -12.842599595831999],\n              [-50.566042425667661, -13.014733391460879],\n              [-50.595068305681139, -13.130814938857782],\n              [-50.598441108544193, -13.249401369162754],\n              [-50.666622263488847, -13.409604011992741],\n              [-50.799589797858033, -13.611862320489536],\n              [-50.860574907606292, -13.806056663834966],\n              [-50.851796831099563, -13.995043487450488],\n              [-50.867540239903263, -14.095172885801375],\n              [-50.908497272715636, -14.107323765171145],\n              [-50.941115682163058, -14.200927284366827],\n              [-50.977568320272354, -14.46328080999983],\n              [-51.114370083303442, -14.837892640696381],\n              [-51.18861569160444, -14.976496161608694],\n              [-51.246217012161139, -15.004401436110683],\n              [-51.286273166032885, -15.002819404800334],\n              [-51.471447733643629, -15.044215890754487],\n              [-51.589792464720603, -15.141422925712646],\n              [-51.664719225391337, -15.261349688099983],\n              [-51.695997302756382, -15.403315025546789],\n              [-51.731999501395393, -15.490392665587279],\n              [-51.772714834979809, -15.52280233479236],\n              [-51.788249503541152, -15.556991789221584],\n              [-51.778790274664686, -15.592763274961158],\n              [-51.798598625029683, -15.656220308631859],\n              [-51.847421869079653, -15.747121191005704],\n              [-51.961492918352974, -15.819125588283697],\n              [-52.142393804160051, -15.872672953607619],\n              [-52.256695566332823, -15.93566856147946],\n              [-52.308441173775506, -16.009254990067816],\n              [-52.361768812528553, -16.058297960688648],\n              [-52.416667496263386, -16.082379992857312],\n              [-52.538396016531962, -16.168556753957191],\n              [-52.534122334728309, -16.226608513984189],\n              [-52.667990748038108, -16.289142696057183],\n              [-52.681273219247927, -16.36046594096544],\n              [-52.6144433827142, -16.427526490398606],\n              [-52.679921900837002, -16.576017707000588],\n              [-52.789049102265494, -16.704953258794092],\n              [-52.942714879611756, -16.813630020752285],\n              [-53.024167519437682, -16.910375629911584],\n              [-53.033165322515288, -16.995190086272004],\n              [-53.077945597661028, -17.094638332253155],\n              [-53.158266645646904, -17.208720367855037],\n              [-53.202596481322331, -17.304125644931958],\n              [-53.21137455782906, -17.409198891127687],\n              [-53.115068401811527, -17.854914240161619],\n              [-53.051842081040249, -18.016698914301969],\n              [-53.065344278820945, -18.021203309005045],\n              [-53.145665326806835, -18.030190125754118],\n              [-53.306318409107135, -17.99892303471762],\n              [-53.493745174069389, -18.012414246169769],\n              [-53.60534429942031, -17.994418640014544],\n              [-53.72594122784885, -18.007931824123787],\n              [-53.868818430564801, -17.945375669393698],\n              [-53.975924147541193, -17.931862485284469],\n              [-53.989415358993341, -17.900595394247972],\n              [-53.859820627487196, -17.690888354998279],\n              [-53.752714910510804, -17.641845384377447],\n              [-53.681391665602547, -17.257763338475868],\n              [-53.743947820332622, -17.253500643000763],\n              [-53.819775459943969, -17.307048008324685],\n              [-53.949150464879224, -17.45870328754738],\n              [-54.03846931594272, -17.512250652871302],\n              [-54.08324959108846, -17.588298019053525],\n              [-54.145575032919112, -17.628354172925299],\n              [-54.234893883982593, -17.637340989674357],\n              [-54.31971932667156, -17.673112475413944],\n              [-54.391273284479254, -17.673112475413944],\n              [-54.422320648944861, -17.579289229647358],\n              [-54.525141697789053, -17.512250652871302],\n              [-54.699296977870048, -17.516755047574378],\n              [-54.779618025855925, -17.557030928017028],\n              [-54.810896103220969, -17.601569503934783],\n              [-54.899995227713575, -17.650612474555629],\n              [-55.07415050779457, -17.681901538249207],\n              [-55.181245238442415, -17.686405932952297],\n              [-55.337624638939062, -17.583793624350449],\n              [-55.534049206978949, -17.503483562693106],\n              [-55.609865860261749, -17.391862464685104],\n              [-55.788525535045821, -17.351608556899535],\n              [-55.833075097292124, -17.311332676456885],\n              [-55.984950103085694, -17.266772127882035],\n              [-56.024995270628921, -17.213224762558113],\n              [-56.101042636811144, -17.186440093567612],\n              [-56.248424234230185, -17.217729157261189],\n              [-56.328745282216062, -17.284548007466384],\n              [-56.435840012863906, -17.320319493205957],\n              [-56.489398364516376, -17.302543613621609],\n              [-56.6680470529719, -17.320319493205957],\n              [-56.745215024665626, -17.316957676671464],\n              [-56.789995299811366, -17.386017737899635],\n              [-56.887422061340402, -17.517875653085866],\n              [-56.980124701595471, -17.594823898208716],\n              [-57.079792674147498, -17.734328298061641],\n              [-57.198598831023347, -17.812397148695979],\n              [-57.369820761383068, -17.875612483138696],\n              [-57.41932515780276, -17.882138362293887],\n              [-57.471521204715756, -17.900595394247972],\n              [-57.493790492674634, -17.869548029782365],\n              [-57.600896209651026, -17.816000664458443],\n              [-57.632174287016056, -17.739953298276205],\n              [-57.752771215444596, -17.734548024632517],\n              [-57.75322165491491, -17.734767751203393],\n              [-57.78021506414774, -17.671772143331552],\n              [-57.788773414083593, -17.573005049720138],\n              [-57.832422097389284, -17.512030926300412],\n              [-57.90509666070848, -17.532267743478641],\n              [-57.990822982338045, -17.512931805241024],\n              [-58.205473869432581, -17.363078283899569],\n              [-58.347669919778809, -17.282065097215408],\n              [-58.396042724358452, -17.234362458676955],\n              [-58.417422119705265, -17.08046596843127],\n              [-58.459719484600029, -16.91081508305335],\n              [-58.478165530225567, -16.700668590661891],\n              [-58.470519045558873, -16.650263315301586],\n              [-58.350372556600647, -16.490741824841322],\n              [-58.35082299607096, -16.410190063956023],\n              [-58.340473874582429, -16.339987424559254],\n              [-58.345648435326694, -16.284418574783217],\n              [-58.375344481381376, -16.283517695842605],\n              [-58.423717285961033, -16.307819454582145],\n              [-58.496622562179653, -16.326715939677982],\n              [-58.538019048133805, -16.328297970988331],\n              [-58.957191427405206, -16.313224728225833],\n              [-59.43419584013273, -16.295888301783251],\n              [-59.831098931445254, -16.281715937961366],\n              [-60.175575262945358, -16.26934533202072],\n              [-60.187275702844815, -16.132104115847881],\n              [-60.206622627410979, -15.901918560192001],\n              [-60.220344551762551, -15.738573827398397],\n              [-60.242394113150553, -15.479604090956983],\n              [-60.380547194592538, -15.318280842615493],\n              [-60.530400715934007, -15.143224683593871],\n              [-60.583266928888193, -15.098224681877269],\n              [-60.401915603610803, -15.092819408233566],\n              [-60.27344147761616, -15.088776439329337],\n              [-60.298874828195736, -14.618517632327894],\n              [-60.33801911679835, -14.57059526721855],\n              [-60.372669997026435, -14.41872026142498],\n              [-60.396290603396238, -14.332763226895977],\n              [-60.460198076537239, -14.263022013298055],\n              [-60.47459016693, -14.184733436092841],\n              [-60.462900713359076, -14.132526402851298],\n              [-60.428019120231582, -14.099897007075342],\n              [-60.405068679902968, -14.019125519619152],\n              [-60.422394120017003, -13.937892606364102],\n              [-60.460198076537239, -13.862306665980739],\n              [-60.506549396664767, -13.789840842903885],\n              [-60.595198081687073, -13.745302266986116],\n              [-60.722320889270804, -13.664289080301955],\n              [-60.724792813193218, -13.662948748219577]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 11082, \"fill\": \"#999\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-54.242540368649287, -24.046918870899106],\n              [-54.124646077042598, -23.978517989383576],\n              [-54.050169755842191, -23.822819741256652],\n              [-53.995490798678219, -23.570156157399552],\n              [-53.907523266025649, -23.407031151176824],\n              [-53.771171942464889, -23.322194722159324],\n              [-53.677348696698317, -23.173483778986451],\n              [-53.619967102712508, -23.001130256786681],\n              [-53.480693415759006, -22.852397340956728],\n              [-53.272348681248786, -22.752048216034964],\n              [-53.116199993651563, -22.639987664885183],\n              [-53.044415322944445, -22.636406121779814],\n              [-52.949240758766962, -22.570466177858123],\n              [-52.694775417028623, -22.601513542323772],\n              [-52.6144433827142, -22.570466177858151],\n              [-52.520620136947628, -22.615026726433001],\n              [-52.44479249733628, -22.601513542323772],\n              [-52.315197765830135, -22.619531121136077],\n              [-52.261650400506213, -22.601513542323772],\n              [-52.217089851931362, -22.641789422766422],\n              [-52.16354248660744, -22.601513542323772],\n              [-52.141273198648562, -22.543483754953854],\n              [-52.065214846137792, -22.521203480666429],\n              [-51.984893798151916, -22.54796617699985],\n              [-51.873294672800995, -22.610522331729925],\n              [-51.743919667865725, -22.619531121136077],\n              [-51.69464598434547, -22.664069697053776],\n              [-51.641098619021534, -22.650798212172575],\n              [-51.547495099825852, -22.686349971341272],\n              [-51.35534421358966, -22.65079821217256],\n              [-51.181419646408045, -22.739897336665194],\n              [-51.002770957952521, -22.793664428559993],\n              [-50.882174029523981, -22.820449097550494],\n              [-50.784066115625222, -22.945319707782687],\n              [-50.726025341926771, -22.949824102485763],\n              [-50.627697701457123, -22.923039433495262],\n              [-50.431273133417221, -22.945319707782687],\n              [-50.368947691586584, -22.91405261674619],\n              [-50.292900325404389, -22.95432849718884],\n              [-50.123249440026427, -22.940815313079611],\n              [-49.971594160803761, -22.914052616746176],\n              [-49.958091963023065, -22.963315313937912],\n              [-49.913542400776748, -22.985595588225337],\n              [-49.909048992402205, -23.034638558846183],\n              [-49.730400303946681, -23.105983776411534],\n              [-49.636796784750999, -23.257858782205105],\n              [-49.614296783892684, -23.409733787998675],\n              [-49.654572664335348, -23.507819729240353],\n              [-49.605518707385954, -23.641699128878713],\n              [-49.551971342062075, -23.713242100357832],\n              [-49.569747221646367, -23.833850015114933],\n              [-49.601025299011411, -23.86489737958054],\n              [-49.409094139346081, -24.083832934807262],\n              [-49.333046773163858, -24.14186272217718],\n              [-49.337540181538373, -24.213207939742531],\n              [-49.274995013136845, -24.315798275687285],\n              [-49.22594105618748, -24.338298276545572],\n              [-49.239443253968147, -24.418630310860024],\n              [-49.310766498876433, -24.530229436210945],\n              [-49.29749501399516, -24.664108835849291],\n              [-49.216943253109861, -24.690871532182697],\n              [-49.092072642877667, -24.686367137479621],\n              [-49.025023079773064, -24.668591257895272],\n              [-48.828598511733162, -24.66410883584922],\n              [-48.779544554783797, -24.695375926885774],\n              [-48.61439806410894, -24.681862742776545],\n              [-48.489296740977352, -24.74441889750662],\n              [-48.54284410630126, -24.811479446939771],\n              [-48.565344107159603, -25.056957971928966],\n              [-48.511796741835639, -25.083720668262458],\n              [-48.41346910136599, -24.958850058030265],\n              [-48.26609849027551, -25.034677697641598],\n              [-48.230546731106813, -25.012397423354116],\n              [-48.185766455961073, -25.190815398910289],\n              [-48.091943210194501, -25.235595674056029],\n              [-48.087669528390848, -25.280156222630879],\n              [-48.077540133473207, -25.290263644891439],\n              [-48.202641456604795, -25.416496559863091],\n              [-48.242466897577145, -25.403225074981833],\n              [-48.185997168860496, -25.309841282357027],\n              [-48.2735252483713, -25.306237766594563],\n              [-48.402449813836256, -25.272048312165339],\n              [-48.458469103082621, -25.31074216129764],\n              [-48.427641465187889, -25.403225074981833],\n              [-48.476025256096079, -25.443039529625636],\n              [-48.564223501648058, -25.447543924328713],\n              [-48.64409411016365, -25.436513650470445],\n              [-48.731841916245315, -25.368793921324638],\n              [-48.692247188172416, -25.491423320533826],\n              [-48.507072620561672, -25.521350079487945],\n              [-48.429893662539428, -25.550156232930561],\n              [-48.401098495425344, -25.597397445670168],\n              [-48.545096303652798, -25.815871575098043],\n              [-48.665693232081338, -25.844458001969784],\n              [-48.678964716962611, -25.87526366720742],\n              [-48.612816032798605, -25.875043940636544],\n              [-48.576374381017843, -25.935358884343628],\n              [-48.585372184095462, -25.986203612845699],\n              [-48.650169549848528, -25.97225097559469],\n              [-48.917917362796658, -25.97651367106981],\n              [-48.944691045458626, -26.007802734763388],\n              [-49.109848522462016, -25.994531249882129],\n              [-49.212669571306208, -26.030302735621696],\n              [-49.29749501399516, -26.106130375233022],\n              [-49.45364370159237, -26.16866455730603],\n              [-49.489415187331957, -26.22223389528704],\n              [-49.596520904308335, -26.22223389528704],\n              [-49.721622227439951, -26.159677740556958],\n              [-49.752669591905601, -26.123906254817314],\n              [-49.882275309740265, -26.039069825799885],\n              [-49.949094159945446, -26.012307129466471],\n              [-50.190299003131059, -26.052583009909121],\n              [-50.315169613363224, -26.052583009909121],\n              [-50.369167418157474, -26.085871585397726],\n              [-50.45804681607919, -26.02579834091862],\n              [-50.542872258768142, -26.02579834091862],\n              [-50.645693307612333, -26.07035888949347],\n              [-50.735023145004391, -26.231000985465229],\n              [-50.77057490417306, -26.22223389528704],\n              [-50.900169635679219, -26.280263682656951],\n              [-50.944719197925508, -26.244492196917378],\n              [-51.074094202860806, -26.23550538016832],\n              [-51.248249482941787, -26.347104505519212],\n              [-51.288525363384451, -26.423151871701464],\n              [-51.279516573978299, -26.498979511312712],\n              [-51.239471406435086, -26.606074241960584],\n              [-51.284020968681347, -26.650854517106367],\n              [-51.422393776694236, -26.699897487727206],\n              [-51.502714824680112, -26.601569847257558],\n              [-51.873294672800995, -26.601569847257558],\n              [-52.007174072439341, -26.583793967673216],\n              [-52.199094245776138, -26.44991456803487],\n              [-52.458074968546086, -26.431918961879639],\n              [-52.542900411235053, -26.400651870843141],\n              [-52.641217065376168, -26.400651870843092],\n              [-52.672495142741198, -26.378371596555716],\n              [-52.815372345457149, -26.33831544268395],\n              [-52.913469273027374, -26.365100111674394],\n              [-52.99379032101325, -26.351608900222303],\n              [-53.123396038847943, -26.369604506377534],\n              [-53.279544726445167, -26.262268076501719],\n              [-53.355372366056514, -26.239987802214294],\n              [-53.458193414900734, -26.289052745492199],\n              [-53.516245174927704, -26.289052745492228],\n              [-53.663396059447336, -26.257763681798622],\n              [-53.669921938602499, -26.258005381026635],\n              [-53.671273257013425, -26.225156258679768],\n              [-53.746870183725349, -26.083630374374735],\n              [-53.823148262806995, -25.959638670426074],\n              [-53.864094309290849, -25.748832998321973],\n              [-53.891098704852226, -25.668940417149315],\n              [-53.954775465093803, -25.647582994459597],\n              [-54.012365799321955, -25.577819808204595],\n              [-54.085040362641138, -25.57197508141914],\n              [-54.11924080339891, -25.545190412428624],\n              [-54.154572835996717, -25.52315183736917],\n              [-54.206098716868524, -25.529677716524361],\n              [-54.250197839644528, -25.570393050108777],\n              [-54.33187020604133, -25.57197508141914],\n              [-54.383396086913137, -25.588630355491986],\n              [-54.44391977086255, -25.625082993601296],\n              [-54.501521091419249, -25.60820799295756],\n              [-54.537743016629122, -25.576479476122216],\n              [-54.615822853592007, -25.576018050323356],\n              [-54.610648292847742, -25.432690408137091],\n              [-54.473165377446932, -25.220302704722641],\n              [-54.43627328619587, -25.121293911883257],\n              [-54.454049165780205, -25.065263636308373],\n              [-54.413092132967819, -24.867487749857574],\n              [-54.312973720945479, -24.52820795175883],\n              [-54.281025477539259, -24.306130306568491],\n              [-54.317247402749132, -24.201276786943637],\n              [-54.318368008260634, -24.128151784154142],\n              [-54.266842127388827, -24.065815355994943],\n              [-54.241870202608098, -24.047380296697952],\n              [-54.242540368649287, -24.046918870899106]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 2852, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-47.301971256231354, -16.039181749021921],\n              [-47.855473474611387, -16.043664171067917],\n              [-48.181273047586529, -16.039181749021921],\n              [-48.252816019065676, -16.030172959615768],\n              [-48.234820412910466, -15.958849714707497],\n              [-48.279589701727645, -15.838241799950424],\n              [-48.203773048444845, -15.73543173743478],\n              [-48.239324807613542, -15.69087118885993],\n              [-48.181273047586529, -15.489953212445528],\n              [-47.766143637219358, -15.489953212445528],\n              [-47.422348458089004, -15.498940029194586],\n              [-47.413570381582247, -15.534733487591254],\n              [-47.306244938035007, -15.588280852915176],\n              [-47.306244938035007, -15.708647068444279],\n              [-47.351025213180719, -15.833737405247348],\n              [-47.359792303358915, -15.985612411040918],\n              [-47.301971256231354, -16.039181749021921]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 6523, \"fill\": \"#999\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-50.96429683539111, -19.511366940069024],\n              [-51.034049035317565, -19.369401602622233],\n              [-51.136650357590867, -19.284565173604733],\n              [-51.310794651343315, -19.253298082568236],\n              [-51.404617897109887, -19.168483626207816],\n              [-51.542990705122776, -19.137414289085115],\n              [-51.641098619021534, -19.128427472336043],\n              [-51.84201659543595, -19.048095438021619],\n              [-51.91357055324363, -18.99004367799462],\n              [-52.060721437763249, -18.945263402848894],\n              [-52.096492923502822, -18.896220432228048],\n              [-52.270648203583818, -18.811405975867643],\n              [-52.341971448492089, -18.815888397913625],\n              [-52.498339862660202, -18.704289272562704],\n              [-52.6144433827142, -18.722065152147053],\n              [-52.761594267233804, -18.708793667265795],\n              [-52.868919710781071, -18.682030970932374],\n              [-52.891199985068496, -18.637250695786648],\n              [-52.84641970992277, -18.534638387184799],\n              [-52.788598662795195, -18.463095415705638],\n              [-52.784094268092119, -18.391772170797381],\n              [-52.908964878324298, -18.347233594879611],\n              [-52.989296912638721, -18.387267776094305],\n              [-53.034066201455914, -18.356000685057808],\n              [-53.056346475743339, -18.293664256898609],\n              [-53.042844277962644, -18.097250675187283],\n              [-53.051842081040249, -18.016698914301969],\n              [-53.115068401811527, -17.854914240161619],\n              [-53.21137455782906, -17.409198891127687],\n              [-53.202596481322331, -17.304125644931958],\n              [-53.158266645646904, -17.208720367855037],\n              [-53.077945597661028, -17.094638332253155],\n              [-53.033165322515288, -16.995190086272004],\n              [-53.024167519437682, -16.910375629911584],\n              [-52.942714879611756, -16.813630020752285],\n              [-52.789049102265494, -16.704953258794092],\n              [-52.679921900837002, -16.576017707000588],\n              [-52.6144433827142, -16.427526490398606],\n              [-52.681273219247927, -16.36046594096544],\n              [-52.667990748038108, -16.289142696057183],\n              [-52.534122334728309, -16.226608513984189],\n              [-52.538396016531962, -16.168556753957191],\n              [-52.416667496263386, -16.082379992857312],\n              [-52.361768812528553, -16.058297960688648],\n              [-52.308441173775506, -16.009254990067816],\n              [-52.256695566332823, -15.93566856147946],\n              [-52.142393804160051, -15.872672953607619],\n              [-51.961492918352974, -15.819125588283697],\n              [-51.847421869079653, -15.747121191005704],\n              [-51.798598625029683, -15.656220308631859],\n              [-51.778790274664686, -15.592763274961158],\n              [-51.788249503541152, -15.556991789221584],\n              [-51.772714834979809, -15.52280233479236],\n              [-51.731999501395393, -15.490392665587279],\n              [-51.695997302756382, -15.403315025546789],\n              [-51.664719225391337, -15.261349688099983],\n              [-51.589792464720603, -15.141422925712646],\n              [-51.471447733643629, -15.044215890754487],\n              [-51.286273166032885, -15.002819404800334],\n              [-51.246217012161139, -15.004401436110683],\n              [-51.18861569160444, -14.976496161608694],\n              [-51.114370083303442, -14.837892640696381],\n              [-50.977568320272354, -14.46328080999983],\n              [-50.941115682163058, -14.200927284366827],\n              [-50.908497272715636, -14.107323765171145],\n              [-50.867540239903263, -14.095172885801375],\n              [-50.851796831099563, -13.995043487450488],\n              [-50.860574907606292, -13.806056663834966],\n              [-50.799589797858033, -13.611862320489536],\n              [-50.666622263488847, -13.409604011992741],\n              [-50.598441108544193, -13.249401369162754],\n              [-50.595068305681139, -13.130814938857782],\n              [-50.566042425667661, -13.014733391460879],\n              [-50.484820498741158, -12.842599595831999],\n              [-50.392348571385497, -12.617138161450072],\n              [-50.295591975897651, -12.490026340194888],\n              [-50.163745047039981, -12.38765573082101],\n              [-50.13674065147859, -12.476513156085659],\n              [-50.203570488012303, -12.570358374509311],\n              [-50.19929680620865, -12.655172830869731],\n              [-50.275124445820012, -12.789052230508076],\n              [-50.270620051116936, -12.891862293023721],\n              [-50.239341973751891, -12.931918446895494],\n              [-50.051915208789637, -13.021237297958976],\n              [-49.971594160803761, -13.025741692662066],\n              [-49.913542400776748, -13.070302241236917],\n              [-49.685839755371831, -13.177396971884747],\n              [-49.520693264697002, -13.199896972743062],\n              [-49.382320456684113, -13.248939943363894],\n              [-49.359820455825798, -13.132858395966991],\n              [-49.29749501399516, -13.003483391031722],\n              [-49.136622205123956, -12.735504865184154],\n              [-49.016245003266306, -12.655172830869731],\n              [-48.998249397111096, -12.748996076636303],\n              [-48.926915165874277, -12.784547835805],\n              [-48.824094117030086, -12.873866686868496],\n              [-48.797320434368146, -12.927414052192404],\n              [-48.801824829071222, -12.998978996328646],\n              [-48.766273069902525, -13.097064937570323],\n              [-48.761768675199448, -13.208664062921244],\n              [-48.775040160080721, -13.351552251965742],\n              [-48.739268674341133, -13.38281934300224],\n              [-48.685721309017225, -13.338280767084484],\n              [-48.654443231652181, -13.177396971884747],\n              [-48.587624381447, -13.155116697597322],\n              [-48.480518664470594, -13.195392578039986],\n              [-48.368919539119673, -13.186405761290914],\n              [-48.226042336403736, -13.092582515524342],\n              [-48.163716894573071, -13.102470211214026],\n              [-48.174966895002228, -13.180780761076335],\n              [-48.074167330610152, -13.195392578039986],\n              [-48.002844085701895, -13.248939943363894],\n              [-47.935794522597291, -13.244457521317912],\n              [-47.855473474611387, -13.293500491938744],\n              [-47.681318194530405, -13.356056646668833],\n              [-47.659048906571513, -13.320263188272165],\n              [-47.721594074973069, -13.150612302894245],\n              [-47.641042314087741, -13.115082516382643],\n              [-47.556447584298212, -13.244457521317912],\n              [-47.440344064244215, -13.248939943363894],\n              [-47.292973453153735, -13.199896972743062],\n              [-47.092044490410757, -13.097064937570323],\n              [-46.971447561982245, -13.070302241236917],\n              [-46.82857035926628, -13.070302241236917],\n              [-46.752742719654947, -13.034750482068219],\n              [-46.645647989007102, -12.922931630146422],\n              [-46.592089637354633, -12.891862293023721],\n              [-46.435721223186533, -12.847103990535075],\n              [-46.301841823548187, -12.833832505653803],\n              [-46.234792260443555, -12.798039047257149],\n              [-46.087641375923965, -12.914142567311146],\n              [-46.074150164471803, -12.976698722041192],\n              [-46.150197530654054, -13.025741692662052],\n              [-46.181244895119647, -13.159621092300398],\n              [-46.176971213315994, -13.217672852327382],\n              [-46.083147967549422, -13.253444338066984],\n              [-46.096419452430723, -13.351552251965757],\n              [-46.185749289822724, -13.405099617289665],\n              [-46.270574732511704, -13.655082536981979],\n              [-46.261796656004947, -13.869491724848501],\n              [-46.221520775562311, -13.998866729783842],\n              [-46.172466818612918, -14.074914095966065],\n              [-46.127697529795739, -14.18203079927099],\n              [-46.038367692403682, -14.253354044179261],\n              [-46.011594009741771, -14.298112346667835],\n              [-45.922494885249108, -14.351681684648909],\n              [-45.962540052792349, -14.467763232045797],\n              [-45.962540052792349, -14.534604054908087],\n              [-45.913497082171517, -14.690983455404748],\n              [-45.931272961755838, -14.749013242774652],\n              [-46.025096207522409, -14.869401430960849],\n              [-46.078643572846346, -14.922948796284771],\n              [-46.190242698197267, -14.93644000773692],\n              [-46.297348415173644, -14.909677311403499],\n              [-46.315344021328883, -14.847121156673424],\n              [-46.38666726623714, -14.771293517062077],\n              [-46.51604227117241, -14.713241757035078],\n              [-46.583091834277013, -14.793573791349502],\n              [-46.556318151615045, -14.869401430960849],\n              [-46.57859842590247, -14.914181706106575],\n              [-46.547320348537454, -15.039052316338768],\n              [-46.636650185929483, -15.070319407375266],\n              [-46.734966840070598, -15.016772042051343],\n              [-46.833074753969356, -15.012267647348267],\n              [-46.891115527667807, -15.04803913308784],\n              [-46.931391408110471, -15.226698807871912],\n              [-46.891115527667807, -15.239970292753185],\n              [-46.855344041928248, -15.324806721770685],\n              [-46.935895802813548, -15.431901452418515],\n              [-46.931391408110471, -15.543500577769436],\n              [-46.868846239708944, -15.592763274961158],\n              [-46.833074753969356, -15.8427461946535],\n              [-46.864341845005839, -15.882802348525274],\n              [-47.07854229263009, -15.936349713849197],\n              [-47.127815976150345, -15.923078228967924],\n              [-47.230417298423646, -16.034677354318845],\n              [-47.301971256231354, -16.039181749021921],\n              [-47.359792303358915, -15.985612411040918],\n              [-47.351025213180719, -15.833737405247348],\n              [-47.306244938035007, -15.708647068444279],\n              [-47.306244938035007, -15.588280852915176],\n              [-47.413570381582247, -15.534733487591254],\n              [-47.422348458089004, -15.498940029194586],\n              [-47.766143637219358, -15.489953212445528],\n              [-48.181273047586529, -15.489953212445528],\n              [-48.239324807613542, -15.69087118885993],\n              [-48.203773048444845, -15.73543173743478],\n              [-48.279589701727645, -15.838241799950424],\n              [-48.234820412910466, -15.958849714707497],\n              [-48.252816019065676, -16.030172959615768],\n              [-48.181273047586529, -16.039181749021921],\n              [-47.855473474611387, -16.043664171067917],\n              [-47.301971256231354, -16.039181749021921],\n              [-47.337523015400023, -16.146276479669766],\n              [-47.324240544190218, -16.226608513984189],\n              [-47.351025213180719, -16.302414180938442],\n              [-47.431346261166595, -16.409750610814257],\n              [-47.453615549125487, -16.494345340603786],\n              [-47.404572578504656, -16.570392706786023],\n              [-47.266199770491767, -16.6597335305066],\n              [-47.159094053515389, -16.918483540377125],\n              [-47.15009625043777, -16.976513327747043],\n              [-47.230417298423646, -17.025797997595845],\n              [-47.212641418839297, -17.074840968216691],\n              [-47.310749332738084, -17.141901517649842],\n              [-47.422348458089004, -17.271276522585111],\n              [-47.453615549125487, -17.347104162196459],\n              [-47.498395824271228, -17.32932828261211],\n              [-47.529443188736821, -17.454198892844303],\n              [-47.458119943828564, -17.52574186432345],\n              [-47.40906598687917, -17.498979167990029],\n              [-47.288469058450659, -17.548022138610875],\n              [-47.27069317886631, -17.668630053367949],\n              [-47.328744938893294, -17.744457692979296],\n              [-47.355518621555262, -17.824767754636625],\n              [-47.346520818477643, -17.878315119960547],\n              [-47.279471255373039, -18.061479189447695],\n              [-47.318846256875077, -18.083298037936274],\n              [-47.446419503929093, -18.170595404547655],\n              [-47.786171714155245, -18.379401564856721],\n              [-47.928818203971787, -18.445319536121303],\n              [-48.017917328464392, -18.434530961490992],\n              [-48.226943215344335, -18.340246289925574],\n              [-48.953699834864778, -18.325854199532813],\n              [-49.108266491151653, -18.388388381605793],\n              [-49.179370009489048, -18.404823929107764],\n              [-49.247540178105169, -18.468500689349341],\n              [-49.336650288926307, -18.584823935974214],\n              [-49.41674062401276, -18.602819542129453],\n              [-49.488294581820469, -18.522048054673263],\n              [-49.553322660472958, -18.510116901874369],\n              [-49.611824859970255, -18.566828329818989],\n              [-49.677973544134261, -18.600116905307601],\n              [-49.788671790544555, -18.614530968357457],\n              [-49.960124433803713, -18.616332726238682],\n              [-50.093773120542636, -18.641293664690863],\n              [-50.246999444747132, -18.690116908740833],\n              [-50.368266539216847, -18.768647185174018],\n              [-50.457596376608876, -18.876642794762475],\n              [-50.498992862563028, -18.953151586743559],\n              [-50.489775332914547, -19.0204318627476],\n              [-50.531622258339013, -19.087030986381905],\n              [-50.577523138996241, -19.112233624062057],\n              [-50.641870065278994, -19.118517803989278],\n              [-50.713193310187251, -19.160595442313166],\n              [-50.791943313191325, -19.238444566376614],\n              [-50.84391963353346, -19.310888416796388],\n              [-50.868891558314175, -19.377487540430693],\n              [-50.870924029094823, -19.423849846886768],\n              [-50.864167437040209, -19.437802484137762],\n              [-50.880822711113069, -19.459181879484575],\n              [-50.923790242049023, -19.464125727329417],\n              [-50.96429683539111, -19.511366940069024]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 1497, \"fill\": \"#fff\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-50.234848565377348, -9.842672723581373],\n              [-50.175214774040001, -9.730172719289826],\n              [-50.08409416509528, -9.421918312999608],\n              [-49.979240645470441, -9.220099457644579],\n              [-49.829848549927817, -9.022103844622904],\n              [-49.707900303088365, -8.894970050710626],\n              [-49.612945465481772, -8.839181474363713],\n              [-49.502697658541763, -8.70866389125986],\n              [-49.378947653821115, -8.498297672297554],\n              [-49.282641497803553, -8.301422664787339],\n              [-49.226841935128078, -8.139418264076113],\n              [-49.189949843877002, -7.994970016378346],\n              [-49.172393690863544, -7.867396769324316],\n              [-49.220316055972887, -7.752194128210874],\n              [-49.333947652104456, -7.649142366467331],\n              [-49.340473531259647, -7.510099392413281],\n              [-49.239673966867599, -7.334823506820669],\n              [-49.195124404621282, -7.168556410634423],\n              [-49.209747207913466, -7.005651130982585],\n              [-49.079471324037627, -6.856237062782895],\n              [-48.805417358505139, -6.71831469424032],\n              [-48.652872186670379, -6.595707267688226],\n              [-48.622044548775648, -6.488590564383287],\n              [-48.579966910451759, -6.414125229511413],\n              [-48.527320424068449, -6.3722673177584],\n              [-48.470619982452376, -6.353370832662506],\n              [-48.410096298502964, -6.357655500794763],\n              [-48.391199813407098, -6.308832256744807],\n              [-48.413699814265414, -6.207340553654447],\n              [-48.389848494996187, -6.141862035531645],\n              [-48.319415142699995, -6.112396702376316],\n              [-48.296695415270818, -6.067396700659771],\n              [-48.321216900581248, -6.006642303810906],\n              [-48.307044536759349, -5.965926970226505],\n              [-48.254398050376039, -5.945228727249429],\n              [-48.24540024729842, -5.888517299304809],\n              [-48.280040141197958, -5.795814659049739],\n              [-48.258671732179693, -5.723590535200856],\n              [-48.181273047586529, -5.672064654329048],\n              [-48.159223486198584, -5.619198441374863],\n              [-48.192742774586577, -5.565431349480036],\n              [-48.231447610047439, -5.533241406845832],\n              [-48.275316019923991, -5.522452832215549],\n              [-48.31717393167699, -5.486219920677129],\n              [-48.356999372649341, -5.424344918316791],\n              [-48.421566025503012, -5.398483100923954],\n              [-48.51111558946593, -5.408151070042777],\n              [-48.597523063465246, -5.398702827494787],\n              [-48.721492794756784, -5.355944036801247],\n              [-48.721492794756784, -5.355724310230372],\n              [-48.721943234227098, -5.355043157860635],\n              [-48.630591912382954, -5.330301945979329],\n              [-48.574341910237166, -5.28822430765544],\n              [-48.52349718173511, -5.220504578509647],\n              [-48.458249376511731, -5.180887877779639],\n              [-48.378148055096744, -5.169418150779563],\n              [-48.281622172508321, -5.189457214043955],\n              [-48.16889145531735, -5.240741395687863],\n              [-48.059544527317968, -5.263021669975288],\n              [-47.953119962711327, -5.256276064249221],\n              [-47.884499354624893, -5.285521670833603],\n              [-47.853891443301052, -5.350780462385529],\n              [-47.763221273826645, -5.407250191102179],\n              [-47.612466873544577, -5.454952829640604],\n              [-47.519994946188945, -5.506478710512454],\n              [-47.48579450543113, -5.561146681347864],\n              [-47.444848458947291, -5.749913778392497],\n              [-47.397145820408838, -6.072340548504613],\n              [-47.405473457445254, -6.42109056180837],\n              [-47.47049054976921, -6.795944091732892],\n              [-47.537089673403528, -7.027250252900274],\n              [-47.605721267818495, -7.11476734608253],\n              [-47.665344072827281, -7.16719410589495],\n              [-47.715969074758476, -7.184750258908423],\n              [-47.717089680269964, -7.22210377595826],\n              [-47.668947588589759, -7.279694110186497],\n              [-47.611796707503373, -7.301512958675062],\n              [-47.545867749910258, -7.287582294081119],\n              [-47.506943187878534, -7.305797626807262],\n              [-47.495023021408201, -7.356202902167524],\n              [-47.498395824271256, -7.449806421363292],\n              [-47.458119943828592, -7.534620877723682],\n              [-47.413570381582247, -7.530116483020592],\n              [-47.346520818477643, -7.659733187183832],\n              [-47.303542301213156, -7.66287527714745],\n              [-47.279471255373039, -7.731056432092103],\n              [-47.15009625043777, -7.856146768895158],\n              [-47.078542292630118, -7.976512984424289],\n              [-47.016216850799424, -8.043573533857341],\n              [-46.984949759762941, -8.03906913915435],\n              [-46.868846239708944, -7.958737104839884],\n              [-46.743744916577327, -7.922965619100353],\n              [-46.574094031199394, -7.905189739516004],\n              [-46.489268588510441, -7.963241499543003],\n              [-46.466999300551549, -8.070358202847899],\n              [-46.502770786291137, -8.172948538792639],\n              [-46.507275180994213, -8.27578057396542],\n              [-46.543046666733801, -8.320319149883176],\n              [-46.502770786291137, -8.396146789494537],\n              [-46.658919473888375, -8.396146789494537],\n              [-46.793018600097582, -8.436422669937187],\n              [-46.837568162343928, -8.485465640557948],\n              [-46.882117724590216, -8.583793281027681],\n              [-46.92239360503288, -8.744457349656443],\n              [-46.904617725448503, -8.829271806016934],\n              [-47.065270807748817, -8.976642417107428],\n              [-47.083046687333194, -9.03469417713444],\n              [-47.038497125086849, -9.065983240828018],\n              [-46.940169484617201, -9.070245936303124],\n              [-46.846565965421519, -9.168573576772772],\n              [-46.82857035926628, -9.306957371114194],\n              [-46.752742719654975, -9.409547707058948],\n              [-46.56082254631815, -9.498866558122458],\n              [-46.534048863656182, -9.556918318149457],\n              [-46.600867713861362, -9.650741563916029],\n              [-46.650141397381617, -9.664013048797287],\n              [-46.667917276965966, -9.74434508311171],\n              [-46.507275180994213, -9.855944208462631],\n              [-46.462494905848473, -9.949767454229232],\n              [-46.471492708926121, -10.003314819553111],\n              [-46.346622098693899, -10.168483282885049],\n              [-46.284065943963839, -10.186478889040274],\n              [-46.190242698197267, -10.177470099634036],\n              [-46.087641375923965, -10.208737190670604],\n              [-46.034094010600029, -10.271293345400693],\n              [-45.944775159536533, -10.315853893975543],\n              [-45.757117681674856, -10.329345105427691],\n              [-45.859949716847581, -10.467728899769114],\n              [-46.038367692403682, -10.570319235713882],\n              [-46.087641375923965, -10.583832419823125],\n              [-46.301841823548187, -10.757746000676136],\n              [-46.234792260443555, -10.882858310136299],\n              [-46.248294458224251, -10.914125401172797],\n              [-46.368891386652791, -10.967672766496719],\n              [-46.462494905848473, -11.177599532317288],\n              [-46.529544468953105, -11.235431565773396],\n              [-46.569820349395741, -11.315983326658738],\n              [-46.551824743240559, -11.378297782160814],\n              [-46.489268588510441, -11.414069267900388],\n              [-46.426943146679804, -11.498905696917888],\n              [-46.190242698197267, -11.543444272835643],\n              [-46.083147967549422, -11.601496032862656],\n              [-46.105417255508314, -11.664052187592731],\n              [-46.243790063521175, -11.726608342322805],\n              [-46.275068140886219, -11.766862250108375],\n              [-46.248294458224251, -11.842689889719722],\n              [-46.158964620832222, -11.83370307297065],\n              [-46.100923847133771, -11.864970164007147],\n              [-46.078643572846346, -11.927526318737222],\n              [-46.212522972484692, -11.998849563645479],\n              [-46.248294458224251, -12.048112260837215],\n              [-46.324122097835613, -12.092672809412065],\n              [-46.337624295616308, -12.128444295151638],\n              [-46.346622098693899, -12.342655729104393],\n              [-46.315344021328883, -12.42296579076168],\n              [-46.158964620832222, -12.50329782507616],\n              [-46.158964620832222, -12.601625465545808],\n              [-46.234792260443555, -12.713224590896743],\n              [-46.234792260443555, -12.798039047257149],\n              [-46.301841823548187, -12.833832505653803],\n              [-46.435721223186533, -12.847103990535075],\n              [-46.592089637354633, -12.891862293023721],\n              [-46.645647989007102, -12.922931630146422],\n              [-46.752742719654947, -13.034750482068219],\n              [-46.82857035926628, -13.070302241236917],\n              [-46.971447561982245, -13.070302241236917],\n              [-47.092044490410757, -13.097064937570323],\n              [-47.292973453153735, -13.199896972743062],\n              [-47.440344064244215, -13.248939943363894],\n              [-47.556447584298212, -13.244457521317912],\n              [-47.641042314087741, -13.115082516382643],\n              [-47.721594074973069, -13.150612302894245],\n              [-47.659048906571513, -13.320263188272165],\n              [-47.681318194530405, -13.356056646668833],\n              [-47.855473474611387, -13.293500491938744],\n              [-47.935794522597291, -13.244457521317912],\n              [-48.002844085701895, -13.248939943363894],\n              [-48.074167330610152, -13.195392578039986],\n              [-48.174966895002228, -13.180780761076335],\n              [-48.163716894573071, -13.102470211214026],\n              [-48.226042336403736, -13.092582515524342],\n              [-48.368919539119673, -13.186405761290914],\n              [-48.480518664470594, -13.195392578039986],\n              [-48.587624381447, -13.155116697597322],\n              [-48.654443231652181, -13.177396971884747],\n              [-48.685721309017225, -13.338280767084484],\n              [-48.739268674341133, -13.38281934300224],\n              [-48.775040160080721, -13.351552251965742],\n              [-48.761768675199448, -13.208664062921244],\n              [-48.766273069902525, -13.097064937570323],\n              [-48.801824829071222, -12.998978996328646],\n              [-48.797320434368146, -12.927414052192404],\n              [-48.824094117030086, -12.873866686868496],\n              [-48.926915165874277, -12.784547835805],\n              [-48.998249397111096, -12.748996076636303],\n              [-49.016245003266306, -12.655172830869731],\n              [-49.136622205123956, -12.735504865184154],\n              [-49.29749501399516, -13.003483391031722],\n              [-49.359820455825798, -13.132858395966991],\n              [-49.382320456684113, -13.248939943363894],\n              [-49.520693264697002, -13.199896972743062],\n              [-49.685839755371831, -13.177396971884747],\n              [-49.913542400776748, -13.070302241236917],\n              [-49.971594160803761, -13.025741692662066],\n              [-50.051915208789637, -13.021237297958976],\n              [-50.239341973751891, -12.931918446895494],\n              [-50.270620051116936, -12.891862293023721],\n              [-50.275124445820012, -12.789052230508076],\n              [-50.19929680620865, -12.655172830869731],\n              [-50.203570488012303, -12.570358374509311],\n              [-50.13674065147859, -12.476513156085659],\n              [-50.163745047039981, -12.38765573082101],\n              [-50.295591975897651, -12.490026340194888],\n              [-50.392348571385497, -12.617138161450072],\n              [-50.484820498741158, -12.842599595831999],\n              [-50.566042425667661, -12.819638169174837],\n              [-50.613964790777004, -12.763388167029063],\n              [-50.655372263059689, -12.666862284440654],\n              [-50.660546823803969, -12.558207495139541],\n              [-50.629268746438925, -12.437379853811592],\n              [-50.631740670361324, -12.288646937981625],\n              [-50.667523142429445, -12.112030720306748],\n              [-50.67471918762584, -11.990082473467297],\n              [-50.653570505178465, -11.922340771664409],\n              [-50.661447702744567, -11.853500437007099],\n              [-50.717466991990904, -11.749108343181121],\n              [-50.66572138454822, -11.651901308222961],\n              [-50.671346384762813, -11.573832457588622],\n              [-50.716566113050305, -11.482689875986807],\n              [-50.708018749442999, -11.345668386384844],\n              [-50.64524286814202, -11.162746016125666],\n              [-50.610372261343059, -11.000983314642411],\n              [-50.59912226091393, -10.689806544959453],\n              [-50.550749456334273, -10.567177145750264],\n              [-50.454674013216163, -10.388517470966192],\n              [-50.402697692874028, -10.258241587090311],\n              [-50.395270934778239, -10.176788947264384],\n              [-50.337449887650649, -10.034362184018732],\n              [-50.234848565377348, -9.842672723581373]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 44035, \"fill\": \"#333\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-53.116199993651563, -22.639987664885183],\n              [-52.960721472095528, -22.454824083603015],\n              [-52.566070578134543, -22.207324074161647],\n              [-52.402495132441516, -22.069181979048096],\n              [-52.338818372199967, -21.957341154469304],\n              [-52.245665292474555, -21.840358728131761],\n              [-52.12259644012363, -21.718168782064367],\n              [-52.064995119566902, -21.622763504987418],\n              [-52.072641604233596, -21.554142896900998],\n              [-52.047669679452866, -21.510944653065621],\n              [-51.989848632325305, -21.493630199280119],\n              [-51.954747312626921, -21.469548167111469],\n              [-51.936290280672836, -21.422746407513614],\n              [-51.872844233330682, -21.32982404068764],\n              [-51.856650385056696, -21.260082827089718],\n              [-51.866318354175519, -21.18267315616805],\n              [-51.811419670440642, -21.077138484173474],\n              [-51.691943347523647, -20.943720510334003],\n              [-51.619049057633561, -20.806918747302916],\n              [-51.593165267583686, -20.666513468509322],\n              [-51.534223614944608, -20.55761697998031],\n              [-51.396971412443207, -20.441755159154269],\n              [-51.160721403430983, -20.306513454776464],\n              [-51.063964807943137, -20.223039330498423],\n              [-50.99377315487493, -20.101552509457804],\n              [-50.584049018151433, -19.821203377669605],\n              [-50.488643741074497, -19.790815192916568],\n              [-50.43374505733965, -19.800263435464558],\n              [-50.364443296883508, -19.858556894719527],\n              [-49.377145895939833, -19.978483657106864],\n              [-49.2783678159999, -19.98703102071417],\n              [-49.258790178534298, -20.016957779668289],\n              [-49.288046771447227, -20.073647234955814],\n              [-49.283542376744151, -20.148573995626549],\n              [-49.238992814497863, -20.245539331356738],\n              [-49.199848525895277, -20.294362575406637],\n              [-49.166318251178666, -20.295043727776431],\n              [-49.112770885854729, -20.259272242036786],\n              [-49.039645883065248, -20.18726784475885],\n              [-48.994645881348617, -20.213591087950419],\n              [-48.977990607275785, -20.338241971611808],\n              [-48.952568243024757, -20.41002664231894],\n              [-48.918367802266971, -20.429142853985638],\n              [-48.886869998331065, -20.369970488447152],\n              [-48.858294557787872, -20.232729272274312],\n              [-48.81194323766033, -20.158923117115094],\n              [-48.71564806797133, -20.143849874352583],\n              [-48.363744978375422, -20.138224874138018],\n              [-48.25326645853599, -20.093005145850512],\n              [-48.178339697865255, -20.082875750932857],\n              [-48.109499363207959, -20.116625752220315],\n              [-48.051216890281552, -20.120229267982779],\n              [-47.991143645802424, -20.082875750932857],\n              [-47.9087901270359, -20.081755145421369],\n              [-47.861768640867155, -20.055651628800589],\n              [-47.860197595885353, -20.011991959166366],\n              [-47.818570397031777, -19.980724868129869],\n              [-47.749719076045949, -19.977121352367419],\n              [-47.695490558352276, -19.9910739896184],\n              [-47.655895830279405, -20.022802506453729],\n              [-47.594240554489943, -20.018517838321486],\n              [-47.517742748837378, -19.994216079582017],\n              [-47.459921701709789, -20.000983657965179],\n              [-47.427742745404146, -20.036293717905892],\n              [-47.328964665464184, -20.117526631160942],\n              [-47.244369935674655, -20.173996359877592],\n              [-47.234921693126722, -20.204362571973462],\n              [-47.266199770491767, -20.284694606287886],\n              [-47.292973453153763, -20.423078400629322],\n              [-47.252697572711099, -20.476625765953202],\n              [-47.154589658812313, -20.525668736574076],\n              [-47.109820369995106, -20.632763467221906],\n              [-47.212641418839326, -20.806918747302916],\n              [-47.221419495346026, -20.914013477950732],\n              [-47.145591855734693, -20.981074027383912],\n              [-47.123322567775801, -21.132949033177482],\n              [-47.056273004671198, -21.195263488679586],\n              [-46.993947562840532, -21.342656072427161],\n              [-47.002714653018757, -21.400707832454088],\n              [-46.895619922370884, -21.405190254500155],\n              [-46.815298874385007, -21.3606516785824],\n              [-46.685693156550315, -21.396203437751083],\n              [-46.654645792084722, -21.373923163463658],\n              [-46.605372108564438, -21.42747052878758],\n              [-46.507275180994213, -21.458737619824078],\n              [-46.493772983213518, -21.525798169257229],\n              [-46.56082254631815, -21.672949053776847],\n              [-46.605372108564438, -21.681957843183],\n              [-46.627872109422754, -21.771276694246495],\n              [-46.667917276965966, -21.811552574689145],\n              [-46.658919473888375, -21.905156093884841],\n              [-46.618874306345134, -21.98546615554217],\n              [-46.658919473888375, -22.052526704975335],\n              [-46.600867713861362, -22.132858739289759],\n              [-46.663423868591451, -22.204401710768877],\n              [-46.69919535433101, -22.320263531594932],\n              [-46.641143594304026, -22.409604355315508],\n              [-46.547320348537454, -22.440871446352006],\n              [-46.543046666733801, -22.472138537388503],\n              [-46.453716829341744, -22.516699085963353],\n              [-46.395665069314759, -22.615026726433001],\n              [-46.471492708926121, -22.682065303209072],\n              [-46.368891386652791, -22.748906126071347],\n              [-46.359893583575172, -22.842729371837919],\n              [-46.288570338666915, -22.882763553052598],\n              [-46.154471212457679, -22.847233766540995],\n              [-46.14569313595095, -22.891772342458765],\n              [-46.020591812819333, -22.873996462874416],\n              [-45.908992687468412, -22.820449097550494],\n              [-45.859949716847581, -22.860505251422268],\n              [-45.792900153742977, -22.851716188586991],\n              [-45.743846196793584, -22.797949096692193],\n              [-45.743846196793584, -22.726625851783922],\n              [-45.801897956820596, -22.699841182793421],\n              [-45.672292238985904, -22.619531121136077],\n              [-45.629775147520235, -22.622673211099695],\n              [-45.58319311449327, -22.615026726433001],\n              [-45.52964574916939, -22.65079821217256],\n              [-45.470923823101202, -22.611642937241413],\n              [-45.40904882074085, -22.646293817469484],\n              [-45.270665026399399, -22.606017937026849],\n              [-45.243891343737459, -22.561479361109079],\n              [-45.056244852204316, -22.467656115342507],\n              [-44.92236545256597, -22.449880235758172],\n              [-44.833046601502474, -22.405099960612404],\n              [-44.770721159671723, -22.423095566767586],\n              [-44.650124231243183, -22.561479361109093],\n              [-44.636622033462515, -22.601513542323801],\n              [-44.538525105892347, -22.619531121136106],\n              [-44.216999214720829, -22.592746452145548],\n              [-44.167945257771521, -22.699841182793421],\n              [-44.248266305757397, -22.74890612607129],\n              [-44.275039988419337, -22.820449097550522],\n              [-44.35986543110829, -22.85600085671922],\n              [-44.471464556459125, -22.851716188586977],\n              [-44.587568076513207, -22.878500857577478],\n              [-44.72594088452604, -22.936552617604434],\n              [-44.79749484233372, -22.990099982928371],\n              [-44.806272918840477, -23.13725086744796],\n              [-44.864324678867433, -23.204289444224003],\n              [-44.782872039041592, -23.353923238994639],\n              [-44.951622045478871, -23.381367087697811],\n              [-45.21531590319421, -23.575539458386174],\n              [-45.325343983563357, -23.599621490554739],\n              [-45.423221184562749, -23.68535879851288],\n              [-45.4333395931518, -23.758483801302418],\n              [-45.464397943945983, -23.802582924078365],\n              [-45.527173825246848, -23.804824135101398],\n              [-45.664645754319167, -23.764767981229625],\n              [-45.843074716203887, -23.763647375718108],\n              [-45.971999281668786, -23.795595619124356],\n              [-46.630794472815467, -24.110375904569707],\n              [-46.867275194727029, -24.236367120313503],\n              [-47.137275205026754, -24.493095645731842],\n              [-47.5922190700378, -24.781091262186806],\n              [-47.831171715871847, -24.953005331244754],\n              [-47.876622157058762, -24.997543907162594],\n              [-47.914195400679546, -24.999807090842637],\n              [-47.989122161350281, -25.035798303153058],\n              [-47.959415128967009, -25.065505335536272],\n              [-47.908339687565501, -25.068207972358152],\n              [-47.929499356341466, -25.168315398051959],\n              [-48.024443207619584, -25.236716279567474],\n              [-48.077540133473207, -25.290263644891439],\n              [-48.087669528390848, -25.280156222630879],\n              [-48.091943210194501, -25.235595674056029],\n              [-48.185766455961073, -25.190815398910289],\n              [-48.230546731106813, -25.012397423354116],\n              [-48.26609849027551, -25.034677697641598],\n              [-48.41346910136599, -24.958850058030265],\n              [-48.511796741835639, -25.083720668262458],\n              [-48.565344107159603, -25.056957971928966],\n              [-48.54284410630126, -24.811479446939771],\n              [-48.489296740977352, -24.74441889750662],\n              [-48.61439806410894, -24.681862742776545],\n              [-48.779544554783797, -24.695375926885774],\n              [-48.828598511733162, -24.66410883584922],\n              [-49.025023079773064, -24.668591257895272],\n              [-49.092072642877667, -24.686367137479621],\n              [-49.216943253109861, -24.690871532182697],\n              [-49.29749501399516, -24.664108835849291],\n              [-49.310766498876433, -24.530229436210945],\n              [-49.239443253968147, -24.418630310860024],\n              [-49.22594105618748, -24.338298276545572],\n              [-49.274995013136845, -24.315798275687285],\n              [-49.337540181538373, -24.213207939742531],\n              [-49.333046773163858, -24.14186272217718],\n              [-49.409094139346081, -24.083832934807262],\n              [-49.601025299011411, -23.86489737958054],\n              [-49.569747221646367, -23.833850015114933],\n              [-49.551971342062075, -23.713242100357832],\n              [-49.605518707385954, -23.641699128878713],\n              [-49.654572664335348, -23.507819729240353],\n              [-49.614296783892684, -23.409733787998675],\n              [-49.636796784750999, -23.257858782205105],\n              [-49.730400303946681, -23.105983776411534],\n              [-49.909048992402205, -23.034638558846183],\n              [-49.913542400776748, -22.985595588225337],\n              [-49.958091963023065, -22.963315313937912],\n              [-49.971594160803761, -22.914052616746176],\n              [-50.123249440026427, -22.940815313079611],\n              [-50.292900325404389, -22.95432849718884],\n              [-50.368947691586584, -22.91405261674619],\n              [-50.431273133417221, -22.945319707782687],\n              [-50.627697701457123, -22.923039433495262],\n              [-50.726025341926771, -22.949824102485763],\n              [-50.784066115625222, -22.945319707782687],\n              [-50.882174029523981, -22.820449097550494],\n              [-51.002770957952521, -22.793664428559993],\n              [-51.181419646408045, -22.739897336665194],\n              [-51.35534421358966, -22.65079821217256],\n              [-51.547495099825852, -22.686349971341272],\n              [-51.641098619021534, -22.650798212172575],\n              [-51.69464598434547, -22.664069697053776],\n              [-51.743919667865725, -22.619531121136077],\n              [-51.873294672800995, -22.610522331729925],\n              [-51.984893798151916, -22.54796617699985],\n              [-52.065214846137792, -22.521203480666429],\n              [-52.141273198648562, -22.543483754953854],\n              [-52.16354248660744, -22.601513542323772],\n              [-52.217089851931362, -22.641789422766422],\n              [-52.261650400506213, -22.601513542323772],\n              [-52.315197765830135, -22.619531121136077],\n              [-52.44479249733628, -22.601513542323772],\n              [-52.520620136947628, -22.615026726433001],\n              [-52.6144433827142, -22.570466177858151],\n              [-52.694775417028623, -22.601513542323772],\n              [-52.949240758766962, -22.570466177858123],\n              [-53.044415322944445, -22.636406121779814],\n              [-53.116199993651563, -22.639987664885183]\n            ]\n          ],\n          [\n            [\n              [-45.249065904481711, -23.782543860813973],\n              [-45.233091782778615, -23.825302651507627],\n              [-45.250197496321732, -23.852966226781632],\n              [-45.260315904910783, -23.889199138320066],\n              [-45.260997057280576, -23.941406171561539],\n              [-45.302624256134209, -23.914841229141985],\n              [-45.412872063074133, -23.934880292406433],\n              [-45.4513461856356, -23.895505290904396],\n              [-45.302393543234757, -23.72765616340763],\n              [-45.272247057709762, -23.751957922147199],\n              [-45.249065904481711, -23.782543860813973]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 6850, \"fill\": \"#999\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-48.721943234227098, -5.355043157860635],\n              [-48.730490597834375, -5.338168157216899],\n              [-48.252816019065619, -4.954327810543248],\n              [-47.801915122958917, -4.597030433632256],\n              [-47.65454451186838, -4.606017250381342],\n              [-47.583221266960209, -4.547965490354329],\n              [-47.489398021193608, -4.423094880122107],\n              [-47.458119943828592, -4.338280423761717],\n              [-47.382292304217231, -4.275724269031571],\n              [-47.333018620696976, -4.164125143680735],\n              [-47.310749332738055, -4.065797503211058],\n              [-47.28846905845063, -4.079288714663221],\n              [-47.065270807748732, -3.842599252509217],\n              [-47.024994927306068, -3.59712072751995],\n              [-47.029499322009201, -3.570358031186515],\n              [-46.966943167279112, -3.525797482611608],\n              [-46.944673879320192, -3.396202751105534],\n              [-46.859848436631296, -3.329142201672369],\n              [-46.824296677462542, -3.329142201672369],\n              [-46.743744916577327, -3.190780379988041],\n              [-46.667917276965966, -3.092672466089311],\n              [-46.636650185929511, -2.985577735441382],\n              [-46.650141397381617, -2.91401279130514],\n              [-46.574094031199365, -2.847193941099988],\n              [-46.667917276965966, -2.739879483881225],\n              [-46.600867713861305, -2.664051844269977],\n              [-46.507275180994213, -2.614986900991994],\n              [-46.484994906706731, -2.547948324215952],\n              [-46.426943146679776, -2.512396565047197],\n              [-46.435721223186533, -2.409564529874501],\n              [-46.408947540524537, -2.387306228244199],\n              [-46.413440948899051, -2.239913644496539],\n              [-46.377669463159521, -2.253426828605825],\n              [-46.279572535589239, -2.141827703254933],\n              [-46.212522972484635, -1.927396542731231],\n              [-46.217016380859263, -1.807030327202142],\n              [-46.301841823548159, -1.802525932499123],\n              [-46.315344021328883, -1.73098296101989],\n              [-46.243790063521089, -1.722193898184685],\n              [-46.199240501274801, -1.677413623038944],\n              [-46.181244895119619, -1.574823287094205],\n              [-46.199240501274801, -1.485504436030624],\n              [-46.123193135092549, -1.34712064168923],\n              [-46.158964620832137, -1.315853550652776],\n              [-46.141199727576407, -1.240025911041414],\n              [-46.007089615038637, -1.146861844987484],\n              [-45.972219008239676, -1.187379424658161],\n              [-45.778716803592545, -1.250814485671697],\n              [-45.644848390282675, -1.347801794059023],\n              [-45.556869871301558, -1.330707066844354],\n              [-45.458542230831938, -1.35634915766633],\n              [-45.353018545165924, -1.567396528998415],\n              [-45.329167225896754, -1.717250050339828],\n              [-45.28214573972798, -1.696551807362709],\n              [-45.238497056422204, -1.629491257929601],\n              [-45.182016341377107, -1.507103557948312],\n              [-45.076272929140146, -1.466366251706802],\n              [-45.025867653779869, -1.513387737875576],\n              [-44.91967380207268, -1.588775924345214],\n              [-44.828322480228508, -1.671568896253461],\n              [-44.78984835766704, -1.724896535006508],\n              [-44.72121676325213, -1.733443898613814],\n              [-44.778598357237854, -1.798922416736616],\n              [-44.72099703668124, -1.792396537581453],\n              [-44.651244836754756, -1.74581450455446],\n              [-44.591622031745942, -1.841900934001103],\n              [-44.546841756600202, -1.946293027827096],\n              [-44.537843953522554, -2.052728578762299],\n              [-44.579921591846528, -2.113922428752971],\n              [-44.617275108896422, -2.152176824743435],\n              [-44.658671594850546, -2.22754303855595],\n              [-44.707494838900516, -2.241056222665179],\n              [-44.756318082950543, -2.265577707975638],\n              [-44.700749233174406, -2.320465405381867],\n              [-44.662494837183942, -2.373353590993133],\n              [-44.579020712905901, -2.23046540194872],\n              [-44.520298786837714, -2.190431220734013],\n              [-44.435473344148761, -2.168150946446588],\n              [-44.391374221372701, -2.269620676879811],\n              [-44.381914992496263, -2.365465407098554],\n              [-44.520068073938262, -2.405521560970271],\n              [-44.520749226307998, -2.481349200581633],\n              [-44.561914999362671, -2.524327717846177],\n              [-44.588919394924062, -2.57337068846698],\n              [-44.610749229741202, -2.676861903352346],\n              [-44.638874230814167, -2.762599211310487],\n              [-44.721447476151525, -3.142396589079851],\n              [-44.723018521133326, -3.204733017238993],\n              [-44.622669396211563, -3.137892194376775],\n              [-44.437494828600848, -2.944400976058205],\n              [-44.381244826455088, -2.738297452570919],\n              [-44.30811982366555, -2.535116292476459],\n              [-44.2286996546203, -2.47121980566402],\n              [-44.179414984771427, -2.47121980566402],\n              [-44.105619815940827, -2.493500079951446],\n              [-44.101346134137202, -2.560099203585764],\n              [-44.112596134566274, -2.598573326147118],\n              [-44.191565864141296, -2.699603603438618],\n              [-44.225096138857907, -2.754952726643808],\n              [-44.192697455981374, -2.809620697479147],\n              [-44.013147888585195, -2.642232995781399],\n              [-43.932815854270757, -2.583500083384649],\n              [-43.864414972755185, -2.595431236183515],\n              [-43.728525074993286, -2.51824129183268],\n              [-43.455141275502001, -2.502047443558695],\n              [-43.434673745424391, -2.413629471435797],\n              [-43.379994788260376, -2.376056227815013],\n              [-43.229690827448678, -2.385943923504726],\n              [-42.936740376820353, -2.465155352307647],\n              [-42.83234828299436, -2.529491292261866],\n              [-42.675968882497727, -2.589564536741022],\n              [-42.593615363731146, -2.661129480877207],\n              [-42.24958947170137, -2.792064544465745],\n              [-41.999848251236983, -2.806017181716754],\n              [-41.876098246516335, -2.746625089607392],\n              [-41.846171487562231, -2.758775968977091],\n              [-41.868891214991407, -2.851698335803107],\n              [-41.815343849667499, -2.936293065592636],\n              [-41.842117532329439, -3.034620706062299],\n              [-41.922449566643877, -3.110448345673632],\n              [-42.002770614629753, -3.231056260430719],\n              [-42.105371936903055, -3.262323351467202],\n              [-42.100867542199978, -3.302379505338976],\n              [-42.216971062253975, -3.431974236845122],\n              [-42.364341673344484, -3.44975011642947],\n              [-42.453671510736513, -3.476512812762891],\n              [-42.502714481357344, -3.44975011642947],\n              [-42.574268439165053, -3.570358031186515],\n              [-42.627815804488961, -3.614896607104313],\n              [-42.676869761438354, -3.699733036121813],\n              [-42.663367563657658, -3.789051887185309],\n              [-42.734921521465367, -3.922931286823655],\n              [-42.851025041519335, -4.039012834220557],\n              [-42.891070209062576, -4.141844869393296],\n              [-42.989397849532224, -4.239952783292068],\n              [-42.953615377464104, -4.391827789085639],\n              [-42.895574603765681, -4.405099273966925],\n              [-42.864296526400608, -4.498922519733469],\n              [-42.913570209920863, -4.637306314074863],\n              [-42.94912196908956, -4.659564615705236],\n              [-42.931346089505212, -4.731129559841463],\n              [-42.953615377464104, -4.775668135759233],\n              [-42.904572406843272, -4.829215501083155],\n              [-42.855518449893907, -4.936332204388066],\n              [-42.833018449035563, -5.097194026930723],\n              [-42.806244766373652, -5.159530455089907],\n              [-42.833018449035563, -5.311405460883492],\n              [-42.913570209920863, -5.391715522540821],\n              [-43.047449609559209, -5.597137893658314],\n              [-43.100996974883174, -5.623922562648772],\n              [-43.083221095298796, -5.713241413712311],\n              [-43.109994777960765, -5.771293173739309],\n              [-43.074223292221177, -6.057047579171225],\n              [-43.002669334413497, -6.12386642937642],\n              [-42.962624166870256, -6.186422584106495],\n              [-42.851025041519335, -6.253483133539646],\n              [-42.868789934775151, -6.436405503798838],\n              [-42.855518449893907, -6.480944079716608],\n              [-42.913570209920863, -6.615043205925815],\n              [-42.917843891724516, -6.668590571249737],\n              [-42.980400046454633, -6.744418210861056],\n              [-43.13227505224819, -6.780189696600658],\n              [-43.19909390245337, -6.753427000267237],\n              [-43.30191495129759, -6.802469970888012],\n              [-43.462568033597847, -6.842745851330733],\n              [-43.560895674067524, -6.753427000267266],\n              [-43.676768481222069, -6.699879634943329],\n              [-43.815372002134382, -6.708646725121511],\n              [-43.953744810147271, -6.762194090445348],\n              [-44.038570252836223, -6.766698485148481],\n              [-44.060839540795115, -6.829254639878584],\n              [-44.092117618160131, -6.806974365591159],\n              [-44.163440863068445, -6.887306399905583],\n              [-44.167945257771521, -6.923077885645114],\n              [-44.257275095163521, -7.007892342005576],\n              [-44.306318065784353, -7.110504650607368],\n              [-44.449195268500318, -7.146276136347012],\n              [-44.578570273435588, -7.248866472291766],\n              [-44.712669399644824, -7.396237083382246],\n              [-44.815270721918125, -7.364969992345763],\n              [-44.909093967684726, -7.445302026660158],\n              [-45.024966774839299, -7.494344997281019],\n              [-45.297449695389901, -7.556901152011108],\n              [-45.471593989142377, -7.673004672065105],\n              [-45.542917234050634, -7.869418253776431],\n              [-45.578699706118755, -8.150668264505271],\n              [-45.654516359401555, -8.253280573107133],\n              [-45.659020754104631, -8.311332333134118],\n              [-45.734848393715993, -8.431918275234068],\n              [-45.752843999871203, -8.561293280169366],\n              [-45.819673836404945, -8.699896801081678],\n              [-45.926768567052761, -8.788995925574284],\n              [-45.980546645276121, -8.927599446486596],\n              [-45.940270764833457, -9.012194176276125],\n              [-45.935766370130409, -9.119530606151898],\n              [-45.904499279093898, -9.177582366178939],\n              [-45.895721202587197, -9.32921567274451],\n              [-45.828671639482536, -9.373995947890265],\n              [-45.79739356211752, -9.463095072382885],\n              [-45.837669442560156, -9.534638043862032],\n              [-45.859949716847581, -9.833663934175206],\n              [-45.859949716847581, -9.99883239750713],\n              [-45.899994884390821, -10.02559509384055],\n              [-45.899994884390821, -10.083646853867549],\n              [-45.953542249714729, -10.181974494337197],\n              [-45.935766370130409, -10.213241585373623],\n              [-45.944775159536533, -10.315853893975543],\n              [-46.034094010600029, -10.271293345400693],\n              [-46.087641375923965, -10.208737190670604],\n              [-46.190242698197267, -10.177470099634036],\n              [-46.284065943963839, -10.186478889040274],\n              [-46.346622098693899, -10.168483282885049],\n              [-46.471492708926121, -10.003314819553111],\n              [-46.462494905848473, -9.949767454229232],\n              [-46.507275180994213, -9.855944208462631],\n              [-46.667917276965966, -9.74434508311171],\n              [-46.650141397381617, -9.664013048797287],\n              [-46.600867713861362, -9.650741563916029],\n              [-46.534048863656182, -9.556918318149457],\n              [-46.56082254631815, -9.498866558122458],\n              [-46.752742719654975, -9.409547707058948],\n              [-46.82857035926628, -9.306957371114194],\n              [-46.846565965421519, -9.168573576772772],\n              [-46.940169484617201, -9.070245936303124],\n              [-47.038497125086849, -9.065983240828018],\n              [-47.083046687333194, -9.03469417713444],\n              [-47.065270807748817, -8.976642417107428],\n              [-46.904617725448503, -8.829271806016934],\n              [-46.92239360503288, -8.744457349656443],\n              [-46.882117724590216, -8.583793281027681],\n              [-46.837568162343928, -8.485465640557948],\n              [-46.793018600097582, -8.436422669937187],\n              [-46.658919473888375, -8.396146789494537],\n              [-46.502770786291137, -8.396146789494537],\n              [-46.543046666733801, -8.320319149883176],\n              [-46.507275180994213, -8.27578057396542],\n              [-46.502770786291137, -8.172948538792639],\n              [-46.466999300551549, -8.070358202847899],\n              [-46.489268588510441, -7.963241499543003],\n              [-46.574094031199394, -7.905189739516004],\n              [-46.743744916577327, -7.922965619100353],\n              [-46.868846239708944, -7.958737104839884],\n              [-46.984949759762941, -8.03906913915435],\n              [-47.016216850799424, -8.043573533857341],\n              [-47.078542292630118, -7.976512984424289],\n              [-47.15009625043777, -7.856146768895158],\n              [-47.279471255373039, -7.731056432092103],\n              [-47.303542301213156, -7.66287527714745],\n              [-47.346520818477643, -7.659733187183832],\n              [-47.413570381582247, -7.530116483020592],\n              [-47.458119943828592, -7.534620877723682],\n              [-47.498395824271256, -7.449806421363292],\n              [-47.495023021408201, -7.356202902167524],\n              [-47.506943187878534, -7.305797626807262],\n              [-47.545867749910258, -7.287582294081119],\n              [-47.611796707503373, -7.301512958675062],\n              [-47.668947588589759, -7.279694110186497],\n              [-47.717089680269964, -7.22210377595826],\n              [-47.715969074758476, -7.184750258908423],\n              [-47.665344072827281, -7.16719410589495],\n              [-47.605721267818495, -7.11476734608253],\n              [-47.537089673403528, -7.027250252900274],\n              [-47.47049054976921, -6.795944091732892],\n              [-47.405473457445254, -6.42109056180837],\n              [-47.397145820408838, -6.072340548504613],\n              [-47.444848458947291, -5.749913778392497],\n              [-47.48579450543113, -5.561146681347864],\n              [-47.519994946188945, -5.506478710512454],\n              [-47.612466873544577, -5.454952829640604],\n              [-47.763221273826645, -5.407250191102179],\n              [-47.853891443301052, -5.350780462385529],\n              [-47.884499354624893, -5.285521670833603],\n              [-47.953119962711327, -5.256276064249221],\n              [-48.059544527317968, -5.263021669975288],\n              [-48.16889145531735, -5.240741395687863],\n              [-48.281622172508321, -5.189457214043955],\n              [-48.378148055096744, -5.169418150779563],\n              [-48.458249376511731, -5.180887877779639],\n              [-48.52349718173511, -5.220504578509647],\n              [-48.574341910237166, -5.28822430765544],\n              [-48.630591912382954, -5.330301945979329],\n              [-48.721943234227098, -5.355043157860635]\n            ]\n          ],\n          [\n            [\n              [-44.565298788554287, -2.923922459651919],\n              [-44.581943076298614, -2.845611909789682],\n              [-44.569122030887684, -2.784879485597855],\n              [-44.501841754883628, -2.726146573201106],\n              [-44.481374224806018, -2.717599209593914],\n              [-44.487218951591387, -2.789823333442769],\n              [-44.482494830317421, -2.811861908502237],\n              [-44.4993698309612, -2.939676854784238],\n              [-44.59769747143082, -3.037543069454955],\n              [-44.565298788554287, -2.923922459651919]\n            ]\n          ],\n          [\n            [\n              [-45.011244850487628, -1.34463773143824],\n              [-44.99549045535548, -1.347582067488133],\n              [-44.978615454711758, -1.267250033173696],\n              [-44.88839572470755, -1.276918002292462],\n              [-44.882990451063961, -1.317875035104862],\n              [-44.947117650775738, -1.366017126785096],\n              [-44.967815893752913, -1.39078031132351],\n              [-45.020923805935013, -1.372323279369425],\n              [-45.011244850487628, -1.34463773143824]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 16461, \"fill\": \"#666\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-44.782872039041592, -23.353923238994639],\n              [-44.864324678867433, -23.204289444224003],\n              [-44.806272918840477, -23.13725086744796],\n              [-44.79749484233372, -22.990099982928371],\n              [-44.72594088452604, -22.936552617604434],\n              [-44.587568076513207, -22.878500857577478],\n              [-44.471464556459125, -22.851716188586977],\n              [-44.35986543110829, -22.85600085671922],\n              [-44.275039988419337, -22.820449097550522],\n              [-44.248266305757397, -22.74890612607129],\n              [-44.167945257771521, -22.699841182793421],\n              [-44.216999214720829, -22.592746452145548],\n              [-44.538525105892347, -22.619531121136106],\n              [-44.636622033462515, -22.601513542323801],\n              [-44.650124231243183, -22.561479361109093],\n              [-44.770721159671723, -22.423095566767586],\n              [-44.833046601502474, -22.405099960612404],\n              [-44.730445279229173, -22.360539412037582],\n              [-44.663395716124569, -22.369548201443706],\n              [-44.601070274293903, -22.316000836119827],\n              [-44.534020711189271, -22.302487652010583],\n              [-44.444690873797242, -22.253444681389752],\n              [-44.293046580903109, -22.239953469937589],\n              [-44.216999214720857, -22.248940286686661],\n              [-44.092117618160131, -22.173112647075314],\n              [-43.895693050120258, -22.106074070299258],\n              [-43.815372002134382, -22.065798189856594],\n              [-43.565169355871149, -22.065798189856594],\n              [-43.462568033597847, -22.057031099678412],\n              [-43.341971105169364, -22.003483734354461],\n              [-43.13227505224819, -22.02574203598482],\n              [-43.063423731262333, -22.063556978833603],\n              [-42.279516230655531, -21.713224934219511],\n              [-42.284020625358579, -21.641901689311226],\n              [-42.36884606804756, -21.632892899905073],\n              [-42.364341673344484, -21.592617019462423],\n              [-42.301796504942928, -21.485522288814579],\n              [-42.297292110239852, -21.405190254500155],\n              [-42.221464470628518, -21.338151677724113],\n              [-42.181419303085278, -21.163996397643089],\n              [-42.096593860396325, -21.003354301671337],\n              [-42.141143422642642, -20.963298147799563],\n              [-42.096593860396325, -20.923022267356913],\n              [-41.998266219926677, -20.932031056763066],\n              [-41.962494734187089, -20.909750782475641],\n              [-41.92694297501842, -20.829199021590341],\n              [-41.864397806616864, -20.775651656266419],\n              [-41.743789891859791, -20.820431931412145],\n              [-41.712522800823308, -20.976569632680821],\n              [-41.730518406978518, -21.043630182113986],\n              [-41.712522800823308, -21.110449032319167],\n              [-41.440270593172073, -21.199767883382663],\n              [-41.391216636222708, -21.186496398501404],\n              [-41.266115313091092, -21.231056947076254],\n              [-41.069690745051219, -21.213281067491906],\n              [-40.967539862248202, -21.27559552299401],\n              [-41.047190744192903, -21.505781078649875],\n              [-41.02311969835273, -21.596901687594595],\n              [-41.021548653370985, -21.610854324845604],\n              [-40.987798652083427, -21.92022933664731],\n              [-41.000399970923581, -21.998979339651441],\n              [-41.122567944333866, -22.084474948381569],\n              [-41.582917082988558, -22.243556985700025],\n              [-41.705546482197747, -22.309694683535497],\n              [-41.980490340342328, -22.580595572775735],\n              [-41.997596053885445, -22.644733758816187],\n              [-41.986115340556921, -22.735854367760908],\n              [-41.940895612269344, -22.788281127573384],\n              [-41.987466658967833, -22.845190309431814],\n              [-42.042365342702681, -22.94712146566394],\n              [-42.12246666411761, -22.940815313079611],\n              [-42.581025031219667, -22.94105701230751],\n              [-42.829195206702195, -22.973224982284705],\n              [-42.958339498738042, -22.967138556271266],\n              [-43.016171532194221, -22.942617070960807],\n              [-43.081199610846681, -22.902582889746157],\n              [-43.100766261983722, -22.850156129933737],\n              [-43.065445215714476, -22.770724974559869],\n              [-43.086374171590933, -22.723242062592306],\n              [-43.154324613636163, -22.725263547044392],\n              [-43.229020661407503, -22.747543821331874],\n              [-43.241841706818434, -22.795026733299437],\n              [-43.236667146074183, -22.828776734586938],\n              [-43.208772857900669, -22.878039431778575],\n              [-43.1936996151382, -22.938574102056521],\n              [-43.224065827234085, -22.991220588439887],\n              [-43.369414953872422, -22.997966194165997],\n              [-43.532770672994559, -23.04634998507413],\n              [-43.736621999130307, -23.066608774909412],\n              [-43.898846126412366, -23.101479381708486],\n              [-43.973772887083101, -23.057380258932426],\n              [-43.898846126412366, -23.035319711215834],\n              [-43.791520682865098, -23.04588855927534],\n              [-43.675867602281471, -23.009457893823082],\n              [-43.702871997842863, -22.966237677330582],\n              [-43.866216730636381, -22.910449100983726],\n              [-44.047568055913871, -22.944638555412894],\n              [-44.147917180835577, -23.011017952476379],\n              [-44.367973341573816, -23.004953499120006],\n              [-44.637292199503747, -23.05557850105123],\n              [-44.681171595708861, -23.106862682695066],\n              [-44.673744837613071, -23.206552627904102],\n              [-44.621098351229705, -23.228591202963571],\n              [-44.569792196928859, -23.274052630479048],\n              [-44.619065880449114, -23.316349995373798],\n              [-44.667218958457852, -23.335246480469664],\n              [-44.782872039041592, -23.353923238994639]\n            ]\n          ],\n          [\n            [\n              [-44.155794378401652, -23.166496474032442],\n              [-44.220591744154774, -23.190798232771897],\n              [-44.320039990135911, -23.212397354689585],\n              [-44.360096144007684, -23.172121474246921],\n              [-44.274150095807272, -23.116332897900065],\n              [-44.242872018442199, -23.074013560348192],\n              [-44.220372017583884, -23.083022349754401],\n              [-44.191565864141296, -23.113168835279282],\n              [-44.129240422310602, -23.141974988721927],\n              [-44.097973331274147, -23.169418837425098],\n              [-44.155794378401652, -23.166496474032442]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 3195, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-45.757117681674856, -10.329345105427691],\n              [-45.944775159536533, -10.315853893975543],\n              [-45.935766370130409, -10.213241585373623],\n              [-45.953542249714729, -10.181974494337197],\n              [-45.899994884390821, -10.083646853867549],\n              [-45.899994884390821, -10.02559509384055],\n              [-45.859949716847581, -9.99883239750713],\n              [-45.859949716847581, -9.833663934175206],\n              [-45.837669442560156, -9.534638043862032],\n              [-45.79739356211752, -9.463095072382885],\n              [-45.828671639482536, -9.373995947890265],\n              [-45.895721202587197, -9.32921567274451],\n              [-45.904499279093898, -9.177582366178939],\n              [-45.935766370130409, -9.119530606151898],\n              [-45.940270764833457, -9.012194176276125],\n              [-45.980546645276121, -8.927599446486596],\n              [-45.926768567052761, -8.788995925574284],\n              [-45.819673836404945, -8.699896801081678],\n              [-45.752843999871203, -8.561293280169366],\n              [-45.734848393715993, -8.431918275234068],\n              [-45.659020754104631, -8.311332333134118],\n              [-45.654516359401555, -8.253280573107133],\n              [-45.578699706118755, -8.150668264505271],\n              [-45.542917234050634, -7.869418253776431],\n              [-45.471593989142377, -7.673004672065105],\n              [-45.297449695389901, -7.556901152011108],\n              [-45.024966774839299, -7.494344997281019],\n              [-44.909093967684726, -7.445302026660158],\n              [-44.815270721918125, -7.364969992345763],\n              [-44.712669399644824, -7.396237083382246],\n              [-44.578570273435588, -7.248866472291766],\n              [-44.449195268500318, -7.146276136347012],\n              [-44.306318065784353, -7.110504650607368],\n              [-44.257275095163521, -7.007892342005576],\n              [-44.167945257771521, -6.923077885645114],\n              [-44.163440863068445, -6.887306399905583],\n              [-44.092117618160131, -6.806974365591159],\n              [-44.060839540795115, -6.829254639878584],\n              [-44.038570252836223, -6.766698485148481],\n              [-43.953744810147271, -6.762194090445348],\n              [-43.815372002134382, -6.708646725121511],\n              [-43.676768481222069, -6.699879634943329],\n              [-43.560895674067524, -6.753427000267266],\n              [-43.462568033597847, -6.842745851330733],\n              [-43.30191495129759, -6.802469970888012],\n              [-43.19909390245337, -6.753427000267237],\n              [-43.13227505224819, -6.780189696600658],\n              [-42.980400046454633, -6.744418210861056],\n              [-42.917843891724516, -6.668590571249737],\n              [-42.913570209920863, -6.615043205925815],\n              [-42.855518449893907, -6.480944079716608],\n              [-42.868789934775151, -6.436405503798838],\n              [-42.851025041519335, -6.253483133539646],\n              [-42.962624166870256, -6.186422584106495],\n              [-43.002669334413497, -6.12386642937642],\n              [-43.074223292221177, -6.057047579171225],\n              [-43.109994777960765, -5.771293173739309],\n              [-43.083221095298796, -5.713241413712311],\n              [-43.100996974883174, -5.623922562648772],\n              [-43.047449609559209, -5.597137893658314],\n              [-42.913570209920863, -5.391715522540821],\n              [-42.833018449035563, -5.311405460883492],\n              [-42.806244766373652, -5.159530455089907],\n              [-42.833018449035563, -5.097194026930723],\n              [-42.855518449893907, -4.936332204388066],\n              [-42.904572406843272, -4.829215501083155],\n              [-42.953615377464104, -4.775668135759233],\n              [-42.931346089505212, -4.731129559841463],\n              [-42.94912196908956, -4.659564615705236],\n              [-42.913570209920863, -4.637306314074863],\n              [-42.864296526400608, -4.498922519733469],\n              [-42.895574603765681, -4.405099273966925],\n              [-42.953615377464104, -4.391827789085639],\n              [-42.989397849532224, -4.239952783292068],\n              [-42.891070209062576, -4.141844869393296],\n              [-42.851025041519335, -4.039012834220557],\n              [-42.734921521465367, -3.922931286823655],\n              [-42.663367563657658, -3.789051887185309],\n              [-42.676869761438354, -3.699733036121813],\n              [-42.627815804488961, -3.614896607104313],\n              [-42.574268439165053, -3.570358031186515],\n              [-42.502714481357344, -3.44975011642947],\n              [-42.453671510736513, -3.476512812762891],\n              [-42.364341673344484, -3.44975011642947],\n              [-42.216971062253975, -3.431974236845122],\n              [-42.100867542199978, -3.302379505338976],\n              [-42.105371936903055, -3.262323351467202],\n              [-42.002770614629753, -3.231056260430719],\n              [-41.922449566643877, -3.110448345673632],\n              [-41.842117532329439, -3.034620706062299],\n              [-41.815343849667499, -2.936293065592636],\n              [-41.868891214991407, -2.851698335803107],\n              [-41.846171487562231, -2.758775968977091],\n              [-41.721971043371212, -2.808939545109496],\n              [-41.640067964075001, -2.878702731364498],\n              [-41.479865321245001, -2.916495701556187],\n              [-41.318322346332621, -2.936293065592636],\n              [-41.268598223342053, -2.916056248414421],\n              [-41.257117510013472, -3.079181254637149],\n              [-41.377714438442013, -3.271332140873369],\n              [-41.426768395391377, -3.320375111494201],\n              [-41.449268396249693, -3.436478631548212],\n              [-41.382218833145089, -3.592616332816888],\n              [-41.355445150483121, -3.708719852870885],\n              [-41.283891192675441, -3.811332161472734],\n              [-41.230343827351504, -4.043517228923633],\n              [-41.181289870402111, -4.123849263238057],\n              [-41.118744702000583, -4.177396628561979],\n              [-41.074195139754295, -4.324767239652473],\n              [-41.141244702858899, -4.427379548254322],\n              [-41.23484822205458, -4.539198400176133],\n              [-41.2438460251322, -4.615026039787466],\n              [-41.226070145547851, -4.726625165138387],\n              [-41.181289870402111, -4.811439621498806],\n              [-41.185794265105216, -4.914051930100655],\n              [-41.12324909670366, -5.007875175867227],\n              [-41.11447102019693, -5.065926935894225],\n              [-41.060692941973599, -5.168517271838979],\n              [-41.069690745051219, -5.306901066180416],\n              [-41.025141182804902, -5.364952826207414],\n              [-40.949093816622678, -5.418500191531322],\n              [-40.917815739257634, -5.60164228836139],\n              [-40.92232013396071, -5.681974322675813],\n              [-40.891042056595666, -5.905172573377655],\n              [-40.891042056595666, -6.012267304025499],\n              [-40.806216613906713, -6.253483133539646],\n              [-40.797449523728517, -6.378353743771839],\n              [-40.770664854738015, -6.494457263825836],\n              [-40.721391171217761, -6.570262930780089],\n              [-40.708119686336488, -6.659603754500665],\n              [-40.614296440569916, -6.708646725121511],\n              [-40.48041704093157, -6.735431394112013],\n              [-40.417871872530043, -6.81147876029425],\n              [-40.440141160488906, -6.905082279489932],\n              [-40.511695118296615, -7.0033879473025],\n              [-40.583018363204872, -7.195319106967844],\n              [-40.533964406255507, -7.324694111903099],\n              [-40.538468800958583, -7.391754661336265],\n              [-40.645574517934961, -7.400741478085337],\n              [-40.690343806752139, -7.427526147075838],\n              [-40.690343806752139, -7.512340603436257],\n              [-40.618789848944459, -7.637233186325531],\n              [-40.659065729387095, -7.762323523128586],\n              [-40.547466604036174, -7.833646768036857],\n              [-40.529470997880964, -7.905189739516004],\n              [-40.542973195661659, -8.030082322405278],\n              [-40.592016166282491, -8.12390556817185],\n              [-40.748395566779152, -8.244491510271843],\n              [-40.833221009468105, -8.36487969845804],\n              [-40.886768374792013, -8.351608213576768],\n              [-40.92232013396071, -8.431918275234111],\n              [-41.016143379727282, -8.418646790352838],\n              [-41.083192942831886, -8.525741521000683],\n              [-41.159020582443247, -8.548021795288108],\n              [-41.212567947767155, -8.632858224305608],\n              [-41.368716635364422, -8.713168285962922],\n              [-41.399994712729438, -8.784733230099178],\n              [-41.467044275834041, -8.865043291756422],\n              [-41.498322353199114, -8.936366536664764],\n              [-41.55637411322607, -8.972138022404351],\n              [-41.609921478550007, -8.963151205655279],\n              [-41.734792088782172, -8.981146811810504],\n              [-41.734792088782172, -9.132802091033199],\n              [-41.797348243512261, -9.173077971475848],\n              [-41.850895608836169, -9.253388033133191],\n              [-41.917945171940801, -9.213112152690485],\n              [-42.043046495072417, -9.208849457215422],\n              [-42.150141225720233, -9.293444187004965],\n              [-42.310794308020547, -9.306957371114194],\n              [-42.431391236449088, -9.409547707058962],\n              [-42.489442996476072, -9.498866558122458],\n              [-42.574268439165053, -9.485595073241143],\n              [-42.618818001411341, -9.565927107555609],\n              [-42.752697401049687, -9.521146832409883],\n              [-42.851025041519335, -9.547931501400399],\n              [-42.931346089505212, -9.516862164277654],\n              [-42.936971089719805, -9.474345072812028],\n              [-43.029443017075437, -9.436332376049464],\n              [-43.042945214856132, -9.39627622217769],\n              [-43.127770657545085, -9.373995947890265],\n              [-43.185822417572126, -9.418556496465044],\n              [-43.377742590908895, -9.414052101762039],\n              [-43.414865395059394, -9.33552182532884],\n              [-43.449296548716575, -9.302452976411118],\n              [-43.538395673209209, -9.360504736438116],\n              [-43.605445236313813, -9.338224462150691],\n              [-43.658992601637721, -9.364987158484112],\n              [-43.694775073705841, -9.445319192798536],\n              [-43.810867607431305, -9.427543313214187],\n              [-43.828643487015654, -9.498866558122458],\n              [-43.784093924769337, -9.565927107555609],\n              [-43.726042164742353, -9.748849477814815],\n              [-43.681272875925174, -9.802396843138695],\n              [-43.712539966961657, -9.949767454229203],\n              [-43.703542163884038, -10.034603883246703],\n              [-43.752815847404293, -10.106146854725807],\n              [-43.76159392391105, -10.168483282885063],\n              [-43.801869804353714, -10.204254768624651],\n              [-43.913468929704607, -10.43195741402954],\n              [-43.993789977690483, -10.454215715659814],\n              [-44.118891300822099, -10.588095115298231],\n              [-44.216999214720857, -10.62837099574088],\n              [-44.310822460487458, -10.601608299407459],\n              [-44.417917191135274, -10.588095115298231],\n              [-44.538525105892347, -10.628370995740852],\n              [-44.618846153878252, -10.686422755767879],\n              [-44.645619836540192, -10.735465726388711],\n              [-44.752714567188036, -10.784750396237527],\n              [-44.783992644553109, -10.85607364114577],\n              [-44.851042207657684, -10.878353915433223],\n              [-44.931374241972122, -10.860578035848874],\n              [-45.042973367323043, -10.896349521588448],\n              [-45.315214588645745, -10.780246001534408],\n              [-45.440315911777333, -10.619362206334714],\n              [-45.471593989142377, -10.485504779353462],\n              [-45.516143551388666, -10.414181534445163],\n              [-45.605473388780695, -10.333849500130768],\n              [-45.757117681674856, -10.329345105427691]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 20734, \"fill\": \"#666\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-50.99377315487493, -20.101552509457804],\n              [-50.997596397208241, -19.663923098232331],\n              [-50.96429683539111, -19.511366940069024],\n              [-50.923790242049023, -19.464125727329417],\n              [-50.880822711113069, -19.459181879484575],\n              [-50.864167437040209, -19.437802484137762],\n              [-50.870924029094823, -19.423849846886768],\n              [-50.868891558314175, -19.377487540430693],\n              [-50.84391963353346, -19.310888416796388],\n              [-50.791943313191325, -19.238444566376614],\n              [-50.713193310187251, -19.160595442313166],\n              [-50.641870065278994, -19.118517803989278],\n              [-50.577523138996241, -19.112233624062057],\n              [-50.531622258339013, -19.087030986381905],\n              [-50.489775332914547, -19.0204318627476],\n              [-50.498992862563028, -18.953151586743559],\n              [-50.457596376608876, -18.876642794762475],\n              [-50.368266539216847, -18.768647185174018],\n              [-50.246999444747132, -18.690116908740833],\n              [-50.093773120542636, -18.641293664690863],\n              [-49.960124433803713, -18.616332726238682],\n              [-49.788671790544555, -18.614530968357457],\n              [-49.677973544134261, -18.600116905307601],\n              [-49.611824859970255, -18.566828329818989],\n              [-49.553322660472958, -18.510116901874369],\n              [-49.488294581820469, -18.522048054673263],\n              [-49.41674062401276, -18.602819542129453],\n              [-49.336650288926307, -18.584823935974214],\n              [-49.247540178105169, -18.468500689349341],\n              [-49.179370009489048, -18.404823929107764],\n              [-49.108266491151653, -18.388388381605793],\n              [-48.953699834864778, -18.325854199532813],\n              [-48.226943215344335, -18.340246289925574],\n              [-48.017917328464392, -18.434530961490992],\n              [-47.928818203971787, -18.445319536121303],\n              [-47.786171714155245, -18.379401564856721],\n              [-47.446419503929093, -18.170595404547655],\n              [-47.318846256875077, -18.083298037936274],\n              [-47.279471255373039, -18.061479189447695],\n              [-47.346520818477643, -17.878315119960547],\n              [-47.355518621555262, -17.824767754636625],\n              [-47.328744938893294, -17.744457692979296],\n              [-47.27069317886631, -17.668630053367949],\n              [-47.288469058450659, -17.548022138610875],\n              [-47.40906598687917, -17.498979167990029],\n              [-47.458119943828564, -17.52574186432345],\n              [-47.529443188736821, -17.454198892844303],\n              [-47.498395824271228, -17.32932828261211],\n              [-47.453615549125487, -17.347104162196459],\n              [-47.422348458089004, -17.271276522585111],\n              [-47.310749332738084, -17.141901517649842],\n              [-47.212641418839297, -17.074840968216691],\n              [-47.230417298423646, -17.025797997595845],\n              [-47.15009625043777, -16.976513327747043],\n              [-47.159094053515389, -16.918483540377125],\n              [-47.266199770491767, -16.6597335305066],\n              [-47.404572578504656, -16.570392706786023],\n              [-47.453615549125487, -16.494345340603786],\n              [-47.431346261166595, -16.409750610814257],\n              [-47.351025213180719, -16.302414180938442],\n              [-47.324240544190218, -16.226608513984189],\n              [-47.337523015400023, -16.146276479669766],\n              [-47.301971256231354, -16.039181749021921],\n              [-47.230417298423646, -16.034677354318845],\n              [-47.127815976150345, -15.923078228967924],\n              [-47.07854229263009, -15.936349713849197],\n              [-46.864341845005839, -15.882802348525274],\n              [-46.833074753969356, -15.8427461946535],\n              [-46.868846239708944, -15.592763274961158],\n              [-46.931391408110471, -15.543500577769436],\n              [-46.935895802813548, -15.431901452418515],\n              [-46.855344041928248, -15.324806721770685],\n              [-46.891115527667807, -15.239970292753185],\n              [-46.931391408110471, -15.226698807871912],\n              [-46.891115527667807, -15.04803913308784],\n              [-46.833074753969356, -15.012267647348267],\n              [-46.734966840070598, -15.016772042051343],\n              [-46.636650185929483, -15.070319407375266],\n              [-46.547320348537454, -15.039052316338768],\n              [-46.57859842590247, -14.914181706106575],\n              [-46.556318151615045, -14.869401430960849],\n              [-46.583091834277013, -14.793573791349502],\n              [-46.51604227117241, -14.713241757035078],\n              [-46.38666726623714, -14.771293517062077],\n              [-46.315344021328883, -14.847121156673424],\n              [-46.297348415173644, -14.909677311403499],\n              [-46.190242698197267, -14.93644000773692],\n              [-46.078643572846346, -14.922948796284771],\n              [-46.025096207522409, -14.869401430960849],\n              [-45.976042250573073, -14.985504951014832],\n              [-46.074150164471803, -15.248979082159337],\n              [-45.967044447495425, -15.186422927429248],\n              [-45.926768567052761, -15.128371167402264],\n              [-45.766115484752476, -15.146147046986613],\n              [-45.712568119428539, -15.123866772699188],\n              [-45.654516359401555, -15.043556711041788],\n              [-45.551915037128254, -14.93644000773692],\n              [-45.462596186064758, -14.940944402439996],\n              [-45.319718983348793, -14.856129946079577],\n              [-45.225895737582221, -14.74002642602558],\n              [-45.101025127350027, -14.717746151738154],\n              [-44.882320285022729, -14.597138236981039],\n              [-44.837540009876989, -14.516828175323752],\n              [-44.560794393851239, -14.347177289945833],\n              [-44.35986543110829, -14.271349650334457],\n              [-44.319820263565049, -14.244345254773094],\n              [-44.212494820017781, -14.240082559297988],\n              [-44.158947454693873, -14.271349650334486],\n              [-43.837641290093273, -14.315888226252241],\n              [-43.781391287947486, -14.342892621813633],\n              [-43.800068046472461, -14.369897017375024],\n              [-43.860822443321297, -14.534362355680116],\n              [-43.879499201846272, -14.624604058341333],\n              [-43.864414972755213, -14.659694391711156],\n              [-43.824150078641111, -14.695246150879854],\n              [-43.708046558587114, -14.735522031322503],\n              [-43.493846110962892, -14.789069396646426],\n              [-43.449296548716575, -14.780082579897353],\n              [-43.386740393986543, -14.699750545582901],\n              [-43.230371979818415, -14.637414117423731],\n              [-42.953615377464104, -14.677470271295505],\n              [-42.891070209062576, -14.749013242774652],\n              [-42.632320199192037, -14.940944402439996],\n              [-42.578542120968706, -14.931957585690924],\n              [-42.431391236449088, -15.034547921635692],\n              [-42.261740351071154, -15.106090893114839],\n              [-42.176914908382201, -15.106090893114839],\n              [-42.087596057318706, -15.181918532726186],\n              [-41.940214459899664, -15.172931715977143],\n              [-41.801841651886804, -15.110595287817915],\n              [-41.359949545186197, -15.494457607148604],\n              [-41.333164876195724, -15.717655857850389],\n              [-41.159020582443247, -15.780190039923411],\n              [-41.029645577507978, -15.73543173743478],\n              [-40.944820134819025, -15.673095309275581],\n              [-40.891042056595666, -15.69537558356302],\n              [-40.828716614765028, -15.681862399453777],\n              [-40.761667051660396, -15.739914159480776],\n              [-40.667843805893824, -15.717655857850431],\n              [-40.574240286698142, -15.757931738293095],\n              [-40.533964406255507, -15.797965919507703],\n              [-40.475923632557027, -15.77570761787743],\n              [-40.328542035138014, -15.824750588498276],\n              [-40.234949502270865, -15.820246193795199],\n              [-40.167899939166233, -15.896293559977423],\n              [-40.132117467098112, -15.891789165274304],\n              [-40.002742462162871, -15.994401473876223],\n              [-39.935692899058239, -15.998905868579271],\n              [-39.864369654149982, -16.110504993930192],\n              [-39.940197293761315, -16.311422970344609],\n              [-40.056289827486779, -16.396237426705014],\n              [-40.132117467098112, -16.503354130009953],\n              [-40.136621861801217, -16.543630010452603],\n              [-40.252714395526652, -16.565888312082905],\n              [-40.274994669814077, -16.614953255360874],\n              [-40.283992472891697, -16.744547986867019],\n              [-40.243716592449033, -16.833647111359625],\n              [-40.297494670672393, -16.878427386505351],\n              [-40.471419237853979, -16.869418597099184],\n              [-40.524966603177887, -16.931974751829273],\n              [-40.574240286698142, -17.132892728243689],\n              [-40.565242483620523, -17.262267733178959],\n              [-40.605518364063187, -17.311332676456885],\n              [-40.60979204586684, -17.391862464685104],\n              [-40.498192920515919, -17.418647133675606],\n              [-40.48041704093157, -17.557030928017028],\n              [-40.413367477826966, -17.557030928017028],\n              [-40.382320113361345, -17.623849778222223],\n              [-40.283992472891697, -17.717673023988795],\n              [-40.208164833280364, -17.766715994609626],\n              [-40.1858955453215, -17.816000664458443],\n              [-40.230445107567789, -17.918591000403126],\n              [-40.208164833280364, -17.976642760430195],\n              [-40.216942909787093, -17.972138365727119],\n              [-40.426869675607662, -17.89182830406979],\n              [-40.475923632557027, -17.927599789809364],\n              [-40.533964406255507, -17.900595394247972],\n              [-40.667843805893824, -17.95436248614277],\n              [-40.725895565920837, -17.945375669393698],\n              [-40.788440734322364, -17.972138365727119],\n              [-40.909048649079438, -17.972138365727119],\n              [-40.775169249441092, -18.092746280484192],\n              [-40.766171446363501, -18.137306829059042],\n              [-40.837494691271758, -18.150798040511191],\n              [-40.913542057453981, -18.101513370662389],\n              [-41.016143379727282, -18.173078314798616],\n              [-41.060692941973599, -18.177582709501706],\n              [-41.141244702858899, -18.297948925030809],\n              [-41.127742505078203, -18.333720410770383],\n              [-41.025141182804902, -18.40526338224953],\n              [-41.002641181946586, -18.454328325527456],\n              [-41.029645577507978, -18.637250695786648],\n              [-40.926824528663786, -18.695302455813646],\n              [-40.93131793703833, -18.806901581164553],\n              [-41.091971019338644, -18.829401582022868],\n              [-41.194792068182807, -18.806901581164553],\n              [-41.23484822205458, -18.851681856310293],\n              [-41.163524977146324, -18.905229221634215],\n              [-41.105473217119311, -18.887233615478976],\n              [-41.025141182804902, -18.981056861245563],\n              [-41.05191486546687, -19.034604226569471],\n              [-40.944820134819025, -19.146203351920391],\n              [-40.926824528663786, -19.293573963010886],\n              [-40.958091619700298, -19.472233637794957],\n              [-41.047421457092327, -19.489987544722226],\n              [-41.029645577507978, -19.548039304749224],\n              [-41.159020582443247, -19.659638430100145],\n              [-41.185794265105216, -19.865082773874718],\n              [-41.306391193533727, -19.954401624938214],\n              [-41.36444295356074, -20.186366965818237],\n              [-41.404499107432514, -20.213151634808739],\n              [-41.717016209197851, -20.208647240105662],\n              [-41.855400003539273, -20.369531035305386],\n              [-41.797348243512261, -20.427582795332398],\n              [-41.797348243512261, -20.534677525980229],\n              [-41.850895608836169, -20.623996377043724],\n              [-41.810839454964423, -20.646276651331149],\n              [-41.882173686201213, -20.75787577668207],\n              [-41.864397806616864, -20.775651656266419],\n              [-41.92694297501842, -20.829199021590341],\n              [-41.962494734187089, -20.909750782475641],\n              [-41.998266219926677, -20.932031056763066],\n              [-42.096593860396325, -20.923022267356913],\n              [-42.141143422642642, -20.963298147799563],\n              [-42.096593860396325, -21.003354301671337],\n              [-42.181419303085278, -21.163996397643089],\n              [-42.221464470628518, -21.338151677724113],\n              [-42.297292110239852, -21.405190254500155],\n              [-42.301796504942928, -21.485522288814579],\n              [-42.364341673344484, -21.592617019462423],\n              [-42.36884606804756, -21.632892899905073],\n              [-42.284020625358579, -21.641901689311226],\n              [-42.279516230655531, -21.713224934219511],\n              [-43.063423731262333, -22.063556978833603],\n              [-43.13227505224819, -22.02574203598482],\n              [-43.341971105169364, -22.003483734354461],\n              [-43.462568033597847, -22.057031099678412],\n              [-43.565169355871149, -22.065798189856594],\n              [-43.815372002134382, -22.065798189856594],\n              [-43.895693050120258, -22.106074070299258],\n              [-44.092117618160131, -22.173112647075314],\n              [-44.216999214720857, -22.248940286686661],\n              [-44.293046580903109, -22.239953469937589],\n              [-44.444690873797242, -22.253444681389752],\n              [-44.534020711189271, -22.302487652010583],\n              [-44.601070274293903, -22.316000836119827],\n              [-44.663395716124569, -22.369548201443706],\n              [-44.730445279229173, -22.360539412037582],\n              [-44.833046601502474, -22.405099960612404],\n              [-44.92236545256597, -22.449880235758172],\n              [-45.056244852204316, -22.467656115342507],\n              [-45.243891343737459, -22.561479361109079],\n              [-45.270665026399399, -22.606017937026849],\n              [-45.40904882074085, -22.646293817469484],\n              [-45.470923823101202, -22.611642937241413],\n              [-45.52964574916939, -22.65079821217256],\n              [-45.58319311449327, -22.615026726433001],\n              [-45.629775147520235, -22.622673211099695],\n              [-45.672292238985904, -22.619531121136077],\n              [-45.801897956820596, -22.699841182793421],\n              [-45.743846196793584, -22.726625851783922],\n              [-45.743846196793584, -22.797949096692193],\n              [-45.792900153742977, -22.851716188586991],\n              [-45.859949716847581, -22.860505251422268],\n              [-45.908992687468412, -22.820449097550494],\n              [-46.020591812819333, -22.873996462874416],\n              [-46.14569313595095, -22.891772342458765],\n              [-46.154471212457679, -22.847233766540995],\n              [-46.288570338666915, -22.882763553052598],\n              [-46.359893583575172, -22.842729371837919],\n              [-46.368891386652791, -22.748906126071347],\n              [-46.471492708926121, -22.682065303209072],\n              [-46.395665069314759, -22.615026726433001],\n              [-46.453716829341744, -22.516699085963353],\n              [-46.543046666733801, -22.472138537388503],\n              [-46.547320348537454, -22.440871446352006],\n              [-46.641143594304026, -22.409604355315508],\n              [-46.69919535433101, -22.320263531594932],\n              [-46.663423868591451, -22.204401710768877],\n              [-46.600867713861362, -22.132858739289759],\n              [-46.658919473888375, -22.052526704975335],\n              [-46.618874306345134, -21.98546615554217],\n              [-46.658919473888375, -21.905156093884841],\n              [-46.667917276965966, -21.811552574689145],\n              [-46.627872109422754, -21.771276694246495],\n              [-46.605372108564438, -21.681957843183],\n              [-46.56082254631815, -21.672949053776847],\n              [-46.493772983213518, -21.525798169257229],\n              [-46.507275180994213, -21.458737619824078],\n              [-46.605372108564438, -21.42747052878758],\n              [-46.654645792084722, -21.373923163463658],\n              [-46.685693156550315, -21.396203437751083],\n              [-46.815298874385007, -21.3606516785824],\n              [-46.895619922370884, -21.405190254500155],\n              [-47.002714653018757, -21.400707832454088],\n              [-46.993947562840532, -21.342656072427161],\n              [-47.056273004671198, -21.195263488679586],\n              [-47.123322567775801, -21.132949033177482],\n              [-47.145591855734693, -20.981074027383912],\n              [-47.221419495346026, -20.914013477950732],\n              [-47.212641418839326, -20.806918747302916],\n              [-47.109820369995106, -20.632763467221906],\n              [-47.154589658812313, -20.525668736574076],\n              [-47.252697572711099, -20.476625765953202],\n              [-47.292973453153763, -20.423078400629322],\n              [-47.266199770491767, -20.284694606287886],\n              [-47.234921693126722, -20.204362571973462],\n              [-47.244369935674655, -20.173996359877592],\n              [-47.328964665464184, -20.117526631160942],\n              [-47.427742745404146, -20.036293717905892],\n              [-47.459921701709789, -20.000983657965179],\n              [-47.517742748837378, -19.994216079582017],\n              [-47.594240554489943, -20.018517838321486],\n              [-47.655895830279405, -20.022802506453729],\n              [-47.695490558352276, -19.9910739896184],\n              [-47.749719076045949, -19.977121352367419],\n              [-47.818570397031777, -19.980724868129869],\n              [-47.860197595885353, -20.011991959166366],\n              [-47.861768640867155, -20.055651628800589],\n              [-47.9087901270359, -20.081755145421369],\n              [-47.991143645802424, -20.082875750932857],\n              [-48.051216890281552, -20.120229267982779],\n              [-48.109499363207959, -20.116625752220315],\n              [-48.178339697865255, -20.082875750932857],\n              [-48.25326645853599, -20.093005145850512],\n              [-48.363744978375422, -20.138224874138018],\n              [-48.71564806797133, -20.143849874352583],\n              [-48.81194323766033, -20.158923117115094],\n              [-48.858294557787872, -20.232729272274312],\n              [-48.886869998331065, -20.369970488447152],\n              [-48.918367802266971, -20.429142853985638],\n              [-48.952568243024757, -20.41002664231894],\n              [-48.977990607275785, -20.338241971611808],\n              [-48.994645881348617, -20.213591087950419],\n              [-49.039645883065248, -20.18726784475885],\n              [-49.112770885854729, -20.259272242036786],\n              [-49.166318251178666, -20.295043727776431],\n              [-49.199848525895277, -20.294362575406637],\n              [-49.238992814497863, -20.245539331356738],\n              [-49.283542376744151, -20.148573995626549],\n              [-49.288046771447227, -20.073647234955814],\n              [-49.258790178534298, -20.016957779668289],\n              [-49.2783678159999, -19.98703102071417],\n              [-49.377145895939833, -19.978483657106864],\n              [-50.364443296883508, -19.858556894719527],\n              [-50.43374505733965, -19.800263435464558],\n              [-50.488643741074497, -19.790815192916568],\n              [-50.584049018151433, -19.821203377669605],\n              [-50.99377315487493, -20.101552509457804]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 3885, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-40.967539862248202, -21.27559552299401],\n              [-41.069690745051219, -21.213281067491906],\n              [-41.266115313091092, -21.231056947076254],\n              [-41.391216636222708, -21.186496398501404],\n              [-41.440270593172073, -21.199767883382663],\n              [-41.712522800823308, -21.110449032319167],\n              [-41.730518406978518, -21.043630182113986],\n              [-41.712522800823308, -20.976569632680821],\n              [-41.743789891859791, -20.820431931412145],\n              [-41.864397806616864, -20.775651656266419],\n              [-41.882173686201213, -20.75787577668207],\n              [-41.810839454964423, -20.646276651331149],\n              [-41.850895608836169, -20.623996377043724],\n              [-41.797348243512261, -20.534677525980229],\n              [-41.797348243512261, -20.427582795332398],\n              [-41.855400003539273, -20.369531035305386],\n              [-41.717016209197851, -20.208647240105662],\n              [-41.404499107432514, -20.213151634808739],\n              [-41.36444295356074, -20.186366965818237],\n              [-41.306391193533727, -19.954401624938214],\n              [-41.185794265105216, -19.865082773874718],\n              [-41.159020582443247, -19.659638430100145],\n              [-41.029645577507978, -19.548039304749224],\n              [-41.047421457092327, -19.489987544722226],\n              [-40.958091619700298, -19.472233637794957],\n              [-40.926824528663786, -19.293573963010886],\n              [-40.944820134819025, -19.146203351920391],\n              [-41.05191486546687, -19.034604226569471],\n              [-41.025141182804902, -18.981056861245563],\n              [-41.105473217119311, -18.887233615478976],\n              [-41.163524977146324, -18.905229221634215],\n              [-41.23484822205458, -18.851681856310293],\n              [-41.194792068182807, -18.806901581164553],\n              [-41.091971019338644, -18.829401582022868],\n              [-40.93131793703833, -18.806901581164553],\n              [-40.926824528663786, -18.695302455813646],\n              [-41.029645577507978, -18.637250695786648],\n              [-41.002641181946586, -18.454328325527456],\n              [-41.025141182804902, -18.40526338224953],\n              [-41.127742505078203, -18.333720410770383],\n              [-41.141244702858899, -18.297948925030809],\n              [-41.060692941973599, -18.177582709501706],\n              [-41.016143379727282, -18.173078314798616],\n              [-40.913542057453981, -18.101513370662389],\n              [-40.837494691271758, -18.150798040511191],\n              [-40.766171446363501, -18.137306829059042],\n              [-40.775169249441092, -18.092746280484192],\n              [-40.909048649079438, -17.972138365727119],\n              [-40.788440734322364, -17.972138365727119],\n              [-40.725895565920837, -17.945375669393698],\n              [-40.667843805893824, -17.95436248614277],\n              [-40.533964406255507, -17.900595394247972],\n              [-40.475923632557027, -17.927599789809364],\n              [-40.426869675607662, -17.89182830406979],\n              [-40.216942909787093, -17.972138365727119],\n              [-40.208164833280364, -17.976642760430195],\n              [-40.1858955453215, -18.007931824123773],\n              [-39.672449480813185, -18.324733594021311],\n              [-39.667714373210686, -18.325854199532813],\n              [-39.739718770488679, -18.639953332608485],\n              [-39.741970967840217, -18.846056856095714],\n              [-39.699893329516328, -19.277819567878652],\n              [-39.731391133452263, -19.453996332411762],\n              [-39.783367453794369, -19.571681883776108],\n              [-39.844792016684409, -19.649069582040724],\n              [-40.001391143751931, -19.741991948866669],\n              [-40.141796422545468, -19.968354262189209],\n              [-40.202770545965194, -20.205944603283811],\n              [-40.298845989083304, -20.29258279018255],\n              [-40.318643353119768, -20.425781037451159],\n              [-40.396042037712931, -20.56954813277919],\n              [-40.596520560985567, -20.783737594074864],\n              [-40.727016171432325, -20.846074022234063],\n              [-40.789341613262991, -20.906147266713177],\n              [-40.828716614765028, -21.031237603516246],\n              [-40.954499090266381, -21.237802552802322],\n              [-40.967539862248202, -21.27559552299401]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 15126, \"fill\": \"#666\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-46.025096207522409, -14.869401430960849],\n              [-45.931272961755838, -14.749013242774652],\n              [-45.913497082171517, -14.690983455404748],\n              [-45.962540052792349, -14.534604054908087],\n              [-45.962540052792349, -14.467763232045797],\n              [-45.922494885249108, -14.351681684648909],\n              [-46.011594009741771, -14.298112346667835],\n              [-46.038367692403682, -14.253354044179261],\n              [-46.127697529795739, -14.18203079927099],\n              [-46.172466818612918, -14.074914095966065],\n              [-46.221520775562311, -13.998866729783842],\n              [-46.261796656004947, -13.869491724848501],\n              [-46.270574732511704, -13.655082536981979],\n              [-46.185749289822724, -13.405099617289665],\n              [-46.096419452430723, -13.351552251965757],\n              [-46.083147967549422, -13.253444338066984],\n              [-46.176971213315994, -13.217672852327382],\n              [-46.181244895119647, -13.159621092300398],\n              [-46.150197530654054, -13.025741692662052],\n              [-46.074150164471803, -12.976698722041192],\n              [-46.087641375923965, -12.914142567311146],\n              [-46.234792260443555, -12.798039047257149],\n              [-46.234792260443555, -12.713224590896743],\n              [-46.158964620832222, -12.601625465545808],\n              [-46.158964620832222, -12.50329782507616],\n              [-46.315344021328883, -12.42296579076168],\n              [-46.346622098693899, -12.342655729104393],\n              [-46.337624295616308, -12.128444295151638],\n              [-46.324122097835613, -12.092672809412065],\n              [-46.248294458224251, -12.048112260837215],\n              [-46.212522972484692, -11.998849563645479],\n              [-46.078643572846346, -11.927526318737222],\n              [-46.100923847133771, -11.864970164007147],\n              [-46.158964620832222, -11.83370307297065],\n              [-46.248294458224251, -11.842689889719722],\n              [-46.275068140886219, -11.766862250108375],\n              [-46.243790063521175, -11.726608342322805],\n              [-46.105417255508314, -11.664052187592731],\n              [-46.083147967549422, -11.601496032862656],\n              [-46.190242698197267, -11.543444272835643],\n              [-46.426943146679804, -11.498905696917888],\n              [-46.489268588510441, -11.414069267900388],\n              [-46.551824743240559, -11.378297782160814],\n              [-46.569820349395741, -11.315983326658738],\n              [-46.529544468953105, -11.235431565773396],\n              [-46.462494905848473, -11.177599532317288],\n              [-46.368891386652791, -10.967672766496719],\n              [-46.248294458224251, -10.914125401172797],\n              [-46.234792260443555, -10.882858310136299],\n              [-46.301841823548187, -10.757746000676136],\n              [-46.087641375923965, -10.583832419823125],\n              [-46.038367692403682, -10.570319235713882],\n              [-45.859949716847581, -10.467728899769114],\n              [-45.757117681674856, -10.329345105427691],\n              [-45.605473388780695, -10.333849500130768],\n              [-45.516143551388666, -10.414181534445163],\n              [-45.471593989142377, -10.485504779353462],\n              [-45.440315911777333, -10.619362206334714],\n              [-45.315214588645745, -10.780246001534408],\n              [-45.042973367323043, -10.896349521588448],\n              [-44.931374241972122, -10.860578035848874],\n              [-44.851042207657684, -10.878353915433223],\n              [-44.783992644553109, -10.85607364114577],\n              [-44.752714567188036, -10.784750396237527],\n              [-44.645619836540192, -10.735465726388711],\n              [-44.618846153878252, -10.686422755767879],\n              [-44.538525105892347, -10.628370995740852],\n              [-44.417917191135274, -10.588095115298231],\n              [-44.310822460487458, -10.601608299407459],\n              [-44.216999214720857, -10.62837099574088],\n              [-44.118891300822099, -10.588095115298231],\n              [-43.993789977690483, -10.454215715659814],\n              [-43.913468929704607, -10.43195741402954],\n              [-43.801869804353714, -10.204254768624651],\n              [-43.76159392391105, -10.168483282885063],\n              [-43.752815847404293, -10.106146854725807],\n              [-43.703542163884038, -10.034603883246703],\n              [-43.712539966961657, -9.949767454229203],\n              [-43.681272875925174, -9.802396843138695],\n              [-43.726042164742353, -9.748849477814815],\n              [-43.784093924769337, -9.565927107555609],\n              [-43.828643487015654, -9.498866558122458],\n              [-43.810867607431305, -9.427543313214187],\n              [-43.694775073705841, -9.445319192798536],\n              [-43.658992601637721, -9.364987158484112],\n              [-43.605445236313813, -9.338224462150691],\n              [-43.538395673209209, -9.360504736438116],\n              [-43.449296548716575, -9.302452976411118],\n              [-43.414865395059394, -9.33552182532884],\n              [-43.377742590908895, -9.414052101762039],\n              [-43.185822417572126, -9.418556496465044],\n              [-43.127770657545085, -9.373995947890265],\n              [-43.042945214856132, -9.39627622217769],\n              [-43.029443017075437, -9.436332376049464],\n              [-42.936971089719805, -9.474345072812028],\n              [-42.931346089505212, -9.516862164277654],\n              [-42.851025041519335, -9.547931501400399],\n              [-42.752697401049687, -9.521146832409883],\n              [-42.618818001411341, -9.565927107555609],\n              [-42.574268439165053, -9.485595073241143],\n              [-42.489442996476072, -9.498866558122458],\n              [-42.431391236449088, -9.409547707058962],\n              [-42.310794308020547, -9.306957371114194],\n              [-42.150141225720233, -9.293444187004965],\n              [-42.043046495072417, -9.208849457215422],\n              [-41.917945171940801, -9.213112152690485],\n              [-41.850895608836169, -9.253388033133191],\n              [-41.797348243512261, -9.173077971475848],\n              [-41.734792088782172, -9.132802091033199],\n              [-41.734792088782172, -8.981146811810504],\n              [-41.609921478550007, -8.963151205655279],\n              [-41.55637411322607, -8.972138022404351],\n              [-41.498322353199114, -8.936366536664764],\n              [-41.467044275834041, -8.865043291756422],\n              [-41.399994712729438, -8.784733230099178],\n              [-41.368716635364422, -8.713168285962922],\n              [-41.324167073118076, -8.735448560250362],\n              [-41.159020582443247, -8.708663891259846],\n              [-41.105473217119311, -8.717672680666027],\n              [-41.100968822416235, -8.775724440693025],\n              [-41.003992500357526, -8.781349440907604],\n              [-40.980371893987723, -8.815780594564785],\n              [-40.891042056595666, -8.856056475007449],\n              [-40.891042056595666, -9.03469417713444],\n              [-40.855490297426996, -9.092745937161425],\n              [-40.850996889052453, -9.150797697188352],\n              [-40.703615291633412, -9.217616547393618],\n              [-40.690343806752139, -9.342728856853768],\n              [-40.743891172076076, -9.423038918511111],\n              [-40.685839412049063, -9.47210386178898],\n              [-40.564792044150238, -9.460172708990143],\n              [-40.412697311785791, -9.396957374547355],\n              [-40.319774944959818, -9.293004733863199],\n              [-40.273192911932853, -9.144952970402969],\n              [-40.212218788513155, -9.101513027339593],\n              [-40.077669222833606, -9.08824154245832],\n              [-40.004994659514409, -9.058095056933354],\n              [-39.948744657368621, -9.022103844622904],\n              [-39.909149929295722, -8.980245932869821],\n              [-39.887770533948924, -8.923995930724061],\n              [-39.884617457656759, -8.853353838185598],\n              [-39.834893334666162, -8.809013016181552],\n              [-39.738367452077739, -8.791237136597275],\n              [-39.687742450146573, -8.749401197501371],\n              [-39.682798602301716, -8.683021800437942],\n              [-39.600895523005477, -8.619564766767255],\n              [-39.441824472015526, -8.559271795717166],\n              [-39.332697270587033, -8.565797674872442],\n              [-39.25664990440481, -8.640263009744331],\n              [-39.098249019456034, -8.714970043844119],\n              [-38.834994614882476, -8.800245926003356],\n              [-38.705399883376288, -8.879896807948114],\n              [-38.667815653426942, -8.896090656222128],\n              [-38.619223122276424, -8.896090656222128],\n              [-38.57759592342282, -8.860538897053431],\n              [-38.544296361605689, -8.831073563898173],\n              [-38.504690647204228, -8.834896806231512],\n              [-38.483992404227138, -8.877655596925138],\n              [-38.482190646345913, -8.959547689892815],\n              [-38.43291696282563, -9.003646812668819],\n              [-38.335940640766921, -9.01017269182401],\n              [-38.294324428241907, -9.043021814170856],\n              [-38.307595913123151, -9.102194179709358],\n              [-38.283074427812721, -9.203663910142609],\n              [-38.221199425452397, -9.34767270469861],\n              [-37.975720900463131, -9.512138043003716],\n              [-38.042990190138653, -9.605983261427355],\n              [-37.993716506618341, -9.646237169212938],\n              [-38.029498978686462, -9.726569203527362],\n              [-37.962669142152777, -9.873939814617813],\n              [-37.900123973751192, -9.913995968489587],\n              [-37.900123973751192, -9.949767454229232],\n              [-37.779516058994119, -10.079362185735349],\n              [-37.784020453697195, -10.306845104569391],\n              [-37.83756781902116, -10.422948624623359],\n              [-37.824065621240436, -10.548038961426414],\n              [-37.784020453697195, -10.62837099574088],\n              [-37.81529853106224, -10.677413966361712],\n              [-37.971447218659478, -10.75348330520103],\n              [-38.011723099102113, -10.75348330520103],\n              [-38.109820026672338, -10.708703030055304],\n              [-38.190141074658214, -10.717689846804376],\n              [-38.243919152881574, -10.824806550109301],\n              [-38.234921349803955, -10.896349521588448],\n              [-38.17686958977697, -10.980944251377977],\n              [-38.109820026672338, -11.030228921226794],\n              [-38.060766069722973, -11.168590742911121],\n              [-37.980445021737097, -11.239913987819392],\n              [-38.007218704399037, -11.356017507873389],\n              [-37.966942823956401, -11.400797783019115],\n              [-37.851070016801827, -11.440853936890889],\n              [-37.797291938578496, -11.525668393251294],\n              [-37.658919130565607, -11.556957456944886],\n              [-37.632145447903639, -11.521163998548232],\n              [-37.574093687876626, -11.539181577360537],\n              [-37.411869560594539, -11.497323665607496],\n              [-37.469240168251758, -11.653703066104185],\n              [-37.68861517662026, -12.100099567507868],\n              [-37.957274854837578, -12.475392550574156],\n              [-38.019149857197931, -12.591276344057235],\n              [-38.239645471077893, -12.844181627142348],\n              [-38.401869598359951, -12.966129873981799],\n              [-38.44732003954698, -12.967030752922426],\n              [-38.498845920418717, -12.95668163143381],\n              [-38.524949437039481, -12.76226756151749],\n              [-38.654093729075328, -12.644603982810281],\n              [-38.690996806654937, -12.623905739833219],\n              [-38.743874005937755, -12.748556623494494],\n              [-38.787973128713702, -12.782746077923775],\n              [-38.851869615526141, -12.790172836019565],\n              [-38.783699446910077, -12.844401353713238],\n              [-38.763671369974134, -12.90717723501416],\n              [-38.833192857001166, -13.032948724186951],\n              [-38.835214341453252, -13.147250486359724],\n              [-38.959195059073409, -13.273021975532515],\n              [-39.030968743451979, -13.365043463417862],\n              [-39.067421381561303, -13.480465831102151],\n              [-39.089240230049882, -13.588241714119647],\n              [-39.03502269868477, -13.558776380964389],\n              [-39.009149894963457, -13.581496108393651],\n              [-38.988671378557228, -13.615026383110262],\n              [-39.001272697397269, -13.664530779529912],\n              [-39.041098138369591, -13.758112326068499],\n              [-39.03502269868477, -13.99100051854623],\n              [-39.048074456995153, -14.04386673150043],\n              [-39.008468742593607, -14.101237339157706],\n              [-38.966391104269746, -14.003371124486875],\n              [-38.94232005842963, -14.030595246619157],\n              [-39.059544183995115, -14.654750543866328],\n              [-39.013423576767082, -14.935539128796336],\n              [-38.996098136653018, -15.253922930004194],\n              [-38.943220937370313, -15.564418547317416],\n              [-38.8851691773433, -15.842065042283764],\n              [-38.880664782640167, -15.864345316571132],\n              [-38.960766104055153, -16.186552360112387],\n              [-39.063147699757621, -16.504474735521399],\n              [-39.125022702117974, -16.763664198533661],\n              [-39.16394726414967, -17.043573877180108],\n              [-39.202871826181479, -17.178112456531096],\n              [-39.215242432122068, -17.315815098502867],\n              [-39.170692869875779, -17.642065110948352],\n              [-39.154048582131452, -17.703940113308647],\n              [-39.278468752893389, -17.849530939174997],\n              [-39.412567879102596, -17.919953305142656],\n              [-39.486824473732156, -17.990155944539367],\n              [-39.65083937256685, -18.252267770944457],\n              [-39.667714373210686, -18.325854199532813],\n              [-39.672449480813185, -18.324733594021311],\n              [-40.1858955453215, -18.007931824123773],\n              [-40.208164833280364, -17.976642760430195],\n              [-40.230445107567789, -17.918591000403126],\n              [-40.1858955453215, -17.816000664458443],\n              [-40.208164833280364, -17.766715994609626],\n              [-40.283992472891697, -17.717673023988795],\n              [-40.382320113361345, -17.623849778222223],\n              [-40.413367477826966, -17.557030928017028],\n              [-40.48041704093157, -17.557030928017028],\n              [-40.498192920515919, -17.418647133675606],\n              [-40.60979204586684, -17.391862464685104],\n              [-40.605518364063187, -17.311332676456885],\n              [-40.565242483620523, -17.262267733178959],\n              [-40.574240286698142, -17.132892728243689],\n              [-40.524966603177887, -16.931974751829273],\n              [-40.471419237853979, -16.869418597099184],\n              [-40.297494670672393, -16.878427386505351],\n              [-40.243716592449033, -16.833647111359625],\n              [-40.283992472891697, -16.744547986867019],\n              [-40.274994669814077, -16.614953255360874],\n              [-40.252714395526652, -16.565888312082905],\n              [-40.136621861801217, -16.543630010452603],\n              [-40.132117467098112, -16.503354130009953],\n              [-40.056289827486779, -16.396237426705014],\n              [-39.940197293761315, -16.311422970344609],\n              [-39.864369654149982, -16.110504993930192],\n              [-39.935692899058239, -15.998905868579271],\n              [-40.002742462162871, -15.994401473876223],\n              [-40.132117467098112, -15.891789165274304],\n              [-40.167899939166233, -15.896293559977423],\n              [-40.234949502270865, -15.820246193795199],\n              [-40.328542035138014, -15.824750588498276],\n              [-40.475923632557027, -15.77570761787743],\n              [-40.533964406255507, -15.797965919507703],\n              [-40.574240286698142, -15.757931738293095],\n              [-40.667843805893824, -15.717655857850431],\n              [-40.761667051660396, -15.739914159480776],\n              [-40.828716614765028, -15.681862399453777],\n              [-40.891042056595666, -15.69537558356302],\n              [-40.944820134819025, -15.673095309275581],\n              [-41.029645577507978, -15.73543173743478],\n              [-41.159020582443247, -15.780190039923411],\n              [-41.333164876195724, -15.717655857850389],\n              [-41.359949545186197, -15.494457607148604],\n              [-41.801841651886804, -15.110595287817915],\n              [-41.940214459899664, -15.172931715977143],\n              [-42.087596057318706, -15.181918532726186],\n              [-42.176914908382201, -15.106090893114839],\n              [-42.261740351071154, -15.106090893114839],\n              [-42.431391236449088, -15.034547921635692],\n              [-42.578542120968706, -14.931957585690924],\n              [-42.632320199192037, -14.940944402439996],\n              [-42.891070209062576, -14.749013242774652],\n              [-42.953615377464104, -14.677470271295505],\n              [-43.230371979818415, -14.637414117423731],\n              [-43.386740393986543, -14.699750545582901],\n              [-43.449296548716575, -14.780082579897353],\n              [-43.493846110962892, -14.789069396646426],\n              [-43.708046558587114, -14.735522031322503],\n              [-43.824150078641111, -14.695246150879854],\n              [-43.864414972755213, -14.659694391711156],\n              [-43.879499201846272, -14.624604058341333],\n              [-43.860822443321297, -14.534362355680116],\n              [-43.800068046472461, -14.369897017375024],\n              [-43.781391287947486, -14.342892621813633],\n              [-43.837641290093273, -14.315888226252241],\n              [-44.158947454693873, -14.271349650334486],\n              [-44.212494820017781, -14.240082559297988],\n              [-44.319820263565049, -14.244345254773094],\n              [-44.35986543110829, -14.271349650334457],\n              [-44.560794393851239, -14.347177289945833],\n              [-44.837540009876989, -14.516828175323752],\n              [-44.882320285022729, -14.597138236981039],\n              [-45.101025127350027, -14.717746151738154],\n              [-45.225895737582221, -14.74002642602558],\n              [-45.319718983348793, -14.856129946079577],\n              [-45.462596186064758, -14.940944402439996],\n              [-45.551915037128254, -14.93644000773692],\n              [-45.654516359401555, -15.043556711041788],\n              [-45.712568119428539, -15.123866772699188],\n              [-45.766115484752476, -15.146147046986613],\n              [-45.926768567052761, -15.128371167402264],\n              [-45.967044447495425, -15.186422927429248],\n              [-46.074150164471803, -15.248979082159337],\n              [-45.976042250573073, -14.985504951014832],\n              [-46.025096207522409, -14.869401430960849]\n            ]\n          ],\n          [\n            [\n              [-38.907218738731331, -13.401056648385349],\n              [-38.903615222968824, -13.473500498805151],\n              [-38.93781566372661, -13.532233411201901],\n              [-38.977641104698932, -13.523444348366638],\n              [-38.993164786931686, -13.484069346864658],\n              [-39.022190666945278, -13.44559522430319],\n              [-39.00666698471241, -13.415448738778196],\n              [-38.980124014949865, -13.398354011563526],\n              [-38.907218738731331, -13.401056648385349]\n            ]\n          ],\n          [\n            [\n              [-38.601216529792623, -12.992672843744288],\n              [-38.743874005937755, -13.097064937570281],\n              [-38.783018294540284, -13.118664059487969],\n              [-38.787072249773132, -13.05498729924642],\n              [-38.684921366970116, -12.974896964159996],\n              [-38.668046366326337, -12.880172839452769],\n              [-38.614499001002457, -12.924052235657825],\n              [-38.600315650852053, -12.972414053909006],\n              [-38.601216529792623, -12.992672843744288]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 8843, \"fill\": \"#999\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-40.538468800958583, -7.391754661336265],\n              [-40.533964406255507, -7.324694111903099],\n              [-40.583018363204872, -7.195319106967844],\n              [-40.511695118296615, -7.0033879473025],\n              [-40.440141160488906, -6.905082279489932],\n              [-40.417871872530043, -6.81147876029425],\n              [-40.48041704093157, -6.735431394112013],\n              [-40.614296440569916, -6.708646725121511],\n              [-40.708119686336488, -6.659603754500665],\n              [-40.721391171217761, -6.570262930780089],\n              [-40.770664854738015, -6.494457263825836],\n              [-40.797449523728517, -6.378353743771839],\n              [-40.806216613906713, -6.253483133539646],\n              [-40.891042056595666, -6.012267304025499],\n              [-40.891042056595666, -5.905172573377655],\n              [-40.92232013396071, -5.681974322675813],\n              [-40.917815739257634, -5.60164228836139],\n              [-40.949093816622678, -5.418500191531322],\n              [-41.025141182804902, -5.364952826207414],\n              [-41.069690745051219, -5.306901066180416],\n              [-41.060692941973599, -5.168517271838979],\n              [-41.11447102019693, -5.065926935894225],\n              [-41.12324909670366, -5.007875175867227],\n              [-41.185794265105216, -4.914051930100655],\n              [-41.181289870402111, -4.811439621498806],\n              [-41.226070145547851, -4.726625165138387],\n              [-41.2438460251322, -4.615026039787466],\n              [-41.23484822205458, -4.539198400176133],\n              [-41.141244702858899, -4.427379548254322],\n              [-41.074195139754295, -4.324767239652473],\n              [-41.118744702000583, -4.177396628561979],\n              [-41.181289870402111, -4.123849263238057],\n              [-41.230343827351504, -4.043517228923633],\n              [-41.283891192675441, -3.811332161472734],\n              [-41.355445150483121, -3.708719852870885],\n              [-41.382218833145089, -3.592616332816888],\n              [-41.449268396249693, -3.436478631548212],\n              [-41.426768395391377, -3.320375111494201],\n              [-41.377714438442013, -3.271332140873369],\n              [-41.257117510013472, -3.079181254637149],\n              [-41.268598223342053, -2.916056248414421],\n              [-41.194572341611945, -2.886129489460302],\n              [-40.875518374362855, -2.869693941958332],\n              [-40.474572314146116, -2.795668060228223],\n              [-40.23539994174115, -2.813224213241682],\n              [-39.964718779071745, -2.861608004149886],\n              [-39.771897726794322, -2.985797462012329],\n              [-39.609442886612783, -3.056219827979987],\n              [-39.511115246143135, -3.125521588436129],\n              [-39.352714361194387, -3.197306259143247],\n              [-39.014324455707708, -3.390116325092123],\n              [-38.895968738302173, -3.501715450443044],\n              [-38.686272685381027, -3.653832155464585],\n              [-38.475895480090145, -3.717486943049067],\n              [-38.361824430816796, -3.87634925379669],\n              [-38.271824427383564, -3.948111951846712],\n              [-38.048845903252612, -4.216332176922251],\n              [-37.795720893596666, -4.404198395026285],\n              [-37.626289734789623, -4.592064613130319],\n              [-37.301391040755107, -4.713111981029158],\n              [-37.230748948216586, -4.824271653238313],\n              [-37.54281561051161, -4.93204753625588],\n              [-37.596593688734941, -4.958832205246381],\n              [-37.721464298967135, -5.061422541191149],\n              [-37.913395458632465, -5.463280466677062],\n              [-38.047494584841701, -5.614913773242662],\n              [-38.078541949307322, -5.686478717378904],\n              [-38.078541949307322, -5.762306356990237],\n              [-38.127815632827577, -5.878387904387154],\n              [-38.301740200009135, -6.074823458755574],\n              [-38.368789763113767, -6.092599338339923],\n              [-38.413570038259479, -6.061332247303426],\n              [-38.493891086245384, -6.128370824079497],\n              [-38.511666965829704, -6.181918189403419],\n              [-38.578716528934336, -6.262250223717842],\n              [-38.605490211596305, -6.396129623356174],\n              [-38.5251691636104, -6.382858138474916],\n              [-38.578716528934336, -6.480944079716593],\n              [-38.650039773842593, -6.690870845537162],\n              [-38.61877268280611, -6.757931394970328],\n              [-38.650039773842593, -6.838241456627657],\n              [-38.725867413453955, -6.891788821951579],\n              [-38.730371808157031, -7.0033879473025],\n              [-38.685822245910714, -7.030172616293001],\n              [-38.676824442833095, -7.15954762122827],\n              [-38.600996803221761, -7.222103775958345],\n              [-38.547449437897825, -7.235594987410494],\n              [-38.533947240117129, -7.293646747437492],\n              [-38.582990210737989, -7.427526147075838],\n              [-38.632274880586806, -7.458793238112335],\n              [-38.636768288961321, -7.534620877723682],\n              [-38.699093730791986, -7.619457306741182],\n              [-38.819690659220527, -7.663995882658938],\n              [-38.864240221466815, -7.704271763101588],\n              [-38.96707225663954, -7.847137979489005],\n              [-38.998339347676051, -7.820375283155585],\n              [-39.074166987287384, -7.856146768895158],\n              [-39.109949459355505, -7.753314733722434],\n              [-39.243817872665318, -7.681991488814162],\n              [-39.306374027395378, -7.623939728787164],\n              [-39.350923589641695, -7.548112089175831],\n              [-39.534065686471763, -7.47656911769667],\n              [-39.654442888329413, -7.373978781751916],\n              [-39.846593774565633, -7.347194112761414],\n              [-39.953699491542011, -7.360465597642673],\n              [-40.065298616892932, -7.405245872788413],\n              [-40.172393347540776, -7.418517357669671],\n              [-40.261723184932805, -7.391754661336265],\n              [-40.538468800958583, -7.391754661336265]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 2220, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-37.411869560594539, -11.497323665607496],\n              [-37.574093687876626, -11.539181577360537],\n              [-37.632145447903639, -11.521163998548232],\n              [-37.658919130565607, -11.556957456944886],\n              [-37.797291938578496, -11.525668393251294],\n              [-37.851070016801827, -11.440853936890889],\n              [-37.966942823956401, -11.400797783019115],\n              [-38.007218704399037, -11.356017507873389],\n              [-37.980445021737097, -11.239913987819392],\n              [-38.060766069722973, -11.168590742911121],\n              [-38.109820026672338, -11.030228921226794],\n              [-38.17686958977697, -10.980944251377977],\n              [-38.234921349803955, -10.896349521588448],\n              [-38.243919152881574, -10.824806550109301],\n              [-38.190141074658214, -10.717689846804376],\n              [-38.109820026672338, -10.708703030055304],\n              [-38.011723099102113, -10.75348330520103],\n              [-37.971447218659478, -10.75348330520103],\n              [-37.81529853106224, -10.677413966361712],\n              [-37.784020453697195, -10.62837099574088],\n              [-37.824065621240436, -10.548038961426414],\n              [-37.83756781902116, -10.422948624623359],\n              [-37.784020453697195, -10.306845104569391],\n              [-37.779516058994119, -10.079362185735349],\n              [-37.900123973751192, -9.949767454229232],\n              [-37.900123973751192, -9.913995968489587],\n              [-37.962669142152777, -9.873939814617813],\n              [-38.029498978686462, -9.726569203527362],\n              [-37.993716506618341, -9.646237169212938],\n              [-38.042990190138653, -9.605983261427355],\n              [-37.975720900463131, -9.512138043003716],\n              [-37.938147656842318, -9.537802106482729],\n              [-37.425591484946096, -9.778314810970059],\n              [-37.196098067988487, -9.88587096741675],\n              [-37.019240151085654, -9.956974485754131],\n              [-36.956464269784703, -10.013663941041671],\n              [-36.939589269140953, -10.083646853867549],\n              [-36.879746737561277, -10.153629766693442],\n              [-36.776694975817662, -10.22359070686224],\n              [-36.699065578325076, -10.257340708149698],\n              [-36.647539697453283, -10.253978891615205],\n              [-36.607044090439757, -10.292892467318381],\n              [-36.579819968307476, -10.37142274375158],\n              [-36.538423482353323, -10.410578018682727],\n              [-36.482623919677877, -10.410578018682727],\n              [-36.443018205276417, -10.43195741402954],\n              [-36.431768204847259, -10.452875383577506],\n              [-36.414673477632647, -10.491349506138917],\n              [-36.635839257553812, -10.589896873179455],\n              [-36.768367338781246, -10.671569239576257],\n              [-36.937798497588261, -10.820521881977101],\n              [-37.093266032815762, -11.05475040653721],\n              [-37.125444989121434, -11.084896892062204],\n              [-37.182815596778681, -11.068483317217328],\n              [-37.18124455179688, -11.187487228006972],\n              [-37.315123951435226, -11.376056571137823],\n              [-37.356069997919064, -11.403939872982733],\n              [-37.354949392407576, -11.35039250765881],\n              [-37.331548512608634, -11.309896900645271],\n              [-37.32074895164979, -11.266698656809893],\n              [-37.321869557161307, -11.215172775938086],\n              [-37.359223074211229, -11.252526292988009],\n              [-37.438423516685617, -11.393832450722158],\n              [-37.411869560594539, -11.497323665607496]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 3322, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-37.975720900463131, -9.512138043003716],\n              [-38.221199425452397, -9.34767270469861],\n              [-38.154589315489545, -9.266681490671544],\n              [-38.092044147087989, -9.186349456357121],\n              [-37.966942823956401, -9.141788907782271],\n              [-37.81529853106224, -8.976642417107428],\n              [-37.806289741656087, -8.896332355450099],\n              [-37.748248967957636, -8.860538897053431],\n              [-37.681419131423894, -8.976642417107428],\n              [-37.627641053200563, -8.981146811810504],\n              [-37.520546322552718, -8.945375326070931],\n              [-37.471492365603325, -9.003427086097929],\n              [-37.391171317617449, -9.043483239969703],\n              [-37.18124455179688, -9.239896821681043],\n              [-36.998322181537702, -9.306957371114194],\n              [-36.940270421510689, -9.35600034173504],\n              [-36.90449893577113, -9.289181491529845],\n              [-36.833164704534312, -9.262396822539344],\n              [-36.578699362795987, -9.293444187004965],\n              [-36.440315568454565, -9.208849457215422],\n              [-36.346492322687993, -9.199840667809269],\n              [-36.266171274702117, -9.141788907782271],\n              [-36.239397592040149, -9.088241542458348],\n              [-36.123294071986152, -9.016698570979202],\n              [-36.118789677283075, -8.967655600358356],\n              [-36.016199341338307, -8.896332355450099],\n              [-35.971419066192567, -8.905099445628281],\n              [-35.882319941699961, -8.873832354591784],\n              [-35.801768180814662, -8.869547686459597],\n              [-35.721447132828786, -8.918590657080429],\n              [-35.609848007477865, -8.865043291756507],\n              [-35.471464213136443, -8.833776200720024],\n              [-35.391143165150567, -8.882819171340856],\n              [-35.301824314087071, -8.887323566043932],\n              [-35.151740079846178, -8.913866535806477],\n              [-35.157815519531056, -8.930521809879323],\n              [-35.340968602689685, -9.230668305704],\n              [-35.597015975738344, -9.540724469875457],\n              [-35.763964224294426, -9.702487171358712],\n              [-35.830123894786965, -9.719142445431558],\n              [-35.890867305307268, -9.686974475454448],\n              [-35.84766906147189, -9.772470084184604],\n              [-35.885473017992126, -9.847616571426215],\n              [-36.054893190470608, -10.075780642629979],\n              [-36.223643196907915, -10.225172738172589],\n              [-36.39824891645921, -10.484142474613989],\n              [-36.411520401340482, -10.489987201399458],\n              [-36.414673477632647, -10.491349506138917],\n              [-36.431768204847259, -10.452875383577506],\n              [-36.443018205276417, -10.43195741402954],\n              [-36.482623919677877, -10.410578018682727],\n              [-36.538423482353323, -10.410578018682727],\n              [-36.579819968307476, -10.37142274375158],\n              [-36.607044090439757, -10.292892467318381],\n              [-36.647539697453283, -10.253978891615205],\n              [-36.699065578325076, -10.257340708149698],\n              [-36.776694975817662, -10.22359070686224],\n              [-36.879746737561277, -10.153629766693442],\n              [-36.939589269140953, -10.083646853867549],\n              [-36.956464269784703, -10.013663941041671],\n              [-37.019240151085654, -9.956974485754131],\n              [-37.196098067988487, -9.88587096741675],\n              [-37.425591484946096, -9.778314810970059],\n              [-37.938147656842318, -9.537802106482729],\n              [-37.975720900463131, -9.512138043003716]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 3409, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-38.5251691636104, -6.382858138474916],\n              [-38.605490211596305, -6.396129623356174],\n              [-38.578716528934336, -6.262250223717842],\n              [-38.511666965829704, -6.181918189403419],\n              [-38.493891086245384, -6.128370824079497],\n              [-38.413570038259479, -6.061332247303426],\n              [-38.368789763113767, -6.092599338339923],\n              [-38.301740200009135, -6.074823458755574],\n              [-38.127815632827577, -5.878387904387154],\n              [-38.078541949307322, -5.762306356990237],\n              [-38.078541949307322, -5.686478717378904],\n              [-38.047494584841701, -5.614913773242662],\n              [-37.913395458632465, -5.463280466677062],\n              [-37.721464298967135, -5.061422541191149],\n              [-37.596593688734941, -4.958832205246381],\n              [-37.54281561051161, -4.93204753625588],\n              [-37.230748948216586, -4.824271653238313],\n              [-37.174718672641688, -4.912469898790306],\n              [-36.954893224802873, -4.936771657529846],\n              [-36.861069979036301, -4.96669841648395],\n              [-36.747449369233294, -5.050611993903757],\n              [-36.59061952926632, -5.097655452729569],\n              [-36.386768203130629, -5.084361995191216],\n              [-36.161768194547562, -5.093832210396229],\n              [-35.979966429799873, -5.054457208894192],\n              [-35.549324323528452, -5.129361996907832],\n              [-35.481593608054084, -5.166056334245113],\n              [-35.392494483561478, -5.250870790605518],\n              [-35.235444917023642, -5.566771681562443],\n              [-35.14184139782796, -5.917103726176549],\n              [-35.095490077700418, -6.185301978594993],\n              [-34.988164634153151, -6.393646713105213],\n              [-34.971740072979713, -6.503905506373755],\n              [-35.047347986020185, -6.534733144268486],\n              [-35.257274751840754, -6.507948475277985],\n              [-35.306317722461586, -6.53022874956541],\n              [-35.4669708047619, -6.463168200132245],\n              [-35.667899767504849, -6.427396714392671],\n              [-35.721447132828786, -6.44539232054791],\n              [-35.926869503946278, -6.467672594835335],\n              [-36.252669076921421, -6.414125229511413],\n              [-36.292944957364057, -6.307030498863568],\n              [-36.382274794756114, -6.302526104160492],\n              [-36.493873920107035, -6.378353743771839],\n              [-36.516143208065898, -6.480944079716593],\n              [-36.444819963157641, -6.623832268761092],\n              [-36.533919087650247, -6.63732348021324],\n              [-36.529414692947171, -6.735431394112013],\n              [-36.502641010285203, -6.784694091303734],\n              [-36.574194968092911, -6.927582280348247],\n              [-36.659020410781864, -6.931844975823353],\n              [-36.712567776105772, -6.976625250969079],\n              [-36.770619536132784, -6.931844975823353],\n              [-36.743845853470816, -6.824750245175508],\n              [-36.792899810420209, -6.76669848514851],\n              [-36.944774816213766, -6.748922605564161],\n              [-36.989324378460083, -6.708646725121511],\n              [-37.042871743783991, -6.753427000267237],\n              [-37.154470869134911, -6.784694091303734],\n              [-37.217016037536467, -6.824750245175508],\n              [-37.270574389188909, -6.739913816158008],\n              [-37.337623952293541, -6.699879634943329],\n              [-37.516041927849642, -6.68186205613101],\n              [-37.507274837671446, -6.55248705119574],\n              [-37.431216485160689, -6.516715565456167],\n              [-37.395664725991992, -6.391844955223988],\n              [-37.176740157093803, -6.114879612627348],\n              [-37.176740157093803, -6.052543184468149],\n              [-37.261565599782756, -6.025780488134728],\n              [-37.422449394982493, -6.097103733042999],\n              [-37.475996760306401, -6.083832248161727],\n              [-37.641143250981258, -6.128370824079497],\n              [-37.757246771035256, -6.177413794700328],\n              [-37.793018256774815, -6.293517314754325],\n              [-37.842072213724208, -6.342582258032266],\n              [-38.002714309695961, -6.431901109095762],\n              [-38.05627266134843, -6.44539232054791],\n              [-38.132320027530653, -6.521219960159243],\n              [-38.239414758178498, -6.48544847441967],\n              [-38.283964320424815, -6.503444080574909],\n              [-38.435839326218371, -6.414125229511413],\n              [-38.5251691636104, -6.382858138474916]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 9278, \"fill\": \"#999\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-41.368716635364422, -8.713168285962922],\n              [-41.212567947767155, -8.632858224305608],\n              [-41.159020582443247, -8.548021795288108],\n              [-41.083192942831886, -8.525741521000683],\n              [-41.016143379727282, -8.418646790352838],\n              [-40.92232013396071, -8.431918275234111],\n              [-40.886768374792013, -8.351608213576768],\n              [-40.833221009468105, -8.36487969845804],\n              [-40.748395566779152, -8.244491510271843],\n              [-40.592016166282491, -8.12390556817185],\n              [-40.542973195661659, -8.030082322405278],\n              [-40.529470997880964, -7.905189739516004],\n              [-40.547466604036174, -7.833646768036857],\n              [-40.659065729387095, -7.762323523128586],\n              [-40.618789848944459, -7.637233186325531],\n              [-40.690343806752139, -7.512340603436257],\n              [-40.690343806752139, -7.427526147075838],\n              [-40.645574517934961, -7.400741478085337],\n              [-40.538468800958583, -7.391754661336265],\n              [-40.261723184932805, -7.391754661336265],\n              [-40.172393347540776, -7.418517357669671],\n              [-40.065298616892932, -7.405245872788413],\n              [-39.953699491542011, -7.360465597642673],\n              [-39.846593774565633, -7.347194112761414],\n              [-39.654442888329413, -7.373978781751916],\n              [-39.534065686471763, -7.47656911769667],\n              [-39.350923589641695, -7.548112089175831],\n              [-39.306374027395378, -7.623939728787164],\n              [-39.243817872665318, -7.681991488814162],\n              [-39.109949459355505, -7.753314733722434],\n              [-39.074166987287384, -7.856146768895158],\n              [-38.998339347676051, -7.820375283155585],\n              [-38.96707225663954, -7.847137979489005],\n              [-38.864240221466815, -7.704271763101588],\n              [-38.819690659220527, -7.663995882658938],\n              [-38.699093730791986, -7.619457306741182],\n              [-38.64554636546805, -7.677487094111086],\n              [-38.591999000144142, -7.690780551649439],\n              [-38.587494605441066, -7.740043248841161],\n              [-38.5251691636104, -7.766827917831677],\n              [-38.449121797428177, -7.735538854138085],\n              [-38.417843720063132, -7.748832311676438],\n              [-38.355518278232495, -7.699767368398511],\n              [-38.304223110260125, -7.78234061373594],\n              [-38.301740200009135, -7.829362099904657],\n              [-38.257190637762847, -7.851642374192082],\n              [-38.225923546726335, -7.811366493749432],\n              [-38.167871786699351, -7.806862099046356],\n              [-38.150095907115002, -7.771332312534753],\n              [-38.087539752384913, -7.820375283155585],\n              [-38.057393266859918, -7.75781912842551],\n              [-37.975940627033992, -7.771332312534753],\n              [-37.895619579048116, -7.686495883517253],\n              [-37.793018256774815, -7.637233186325531],\n              [-37.708192814085862, -7.548112089175831],\n              [-37.551824399917763, -7.47656911769667],\n              [-37.435720879863766, -7.347194112761414],\n              [-37.382173514539829, -7.351698507464491],\n              [-37.346391042471708, -7.297931415569693],\n              [-37.25279850960456, -7.271146746579191],\n              [-37.149966474431835, -7.347194112761414],\n              [-37.016098061122051, -7.400741478085337],\n              [-37.016098061122051, -7.507858181390262],\n              [-37.199240157952119, -7.574896758166332],\n              [-37.212522629161924, -7.646220003074589],\n              [-37.167973066915607, -7.762323523128586],\n              [-37.22602482694262, -7.815870888452508],\n              [-37.342117360668055, -7.9987932587117],\n              [-37.212522629161924, -7.958737104839926],\n              [-37.149966474431835, -7.976512984424275],\n              [-37.127697186472972, -8.164181448614499],\n              [-37.06086734993923, -8.231000298819694],\n              [-36.962539709469581, -8.284547664143616],\n              [-36.833164704534312, -8.226495904116618],\n              [-36.783891021014057, -8.222233208641498],\n              [-36.627742333416819, -8.0836296877292],\n              [-36.659020410781864, -8.012306442820929],\n              [-36.569690573389835, -7.922965619100353],\n              [-36.449093644961295, -7.90969413421908],\n              [-36.422319962299326, -7.824879677858675],\n              [-36.337494519610374, -7.811366493749432],\n              [-36.266171274702117, -7.824879677858675],\n              [-36.217117317752724, -7.780099402712935],\n              [-36.16784363423244, -7.824879677858675],\n              [-36.123294071986152, -7.780099402712935],\n              [-36.074240115036758, -7.824879677858675],\n              [-35.966914671489491, -7.815870888452508],\n              [-35.931373898649355, -7.838151162739933],\n              [-35.886593623503614, -7.732177037603591],\n              [-35.837539666554221, -7.744327916973361],\n              [-35.712669056322056, -7.708776157804678],\n              [-35.681390978957012, -7.713280552507754],\n              [-35.556289655825395, -7.655228792480756],\n              [-35.498248882126944, -7.454288843409245],\n              [-35.373367285566218, -7.458793238112335],\n              [-35.270546236722026, -7.382745871930098],\n              [-35.065343592175424, -7.409530540920613],\n              [-34.980518149486443, -7.512340603436257],\n              [-34.858569902646991, -7.54969412048618],\n              [-34.860822099998529, -7.594913848773672],\n              [-34.854746660313651, -7.634288850275709],\n              [-34.872972979368313, -7.692120883731818],\n              [-34.878597979582878, -7.747470006936979],\n              [-34.836970780729303, -7.871681437456516],\n              [-34.834718583377764, -7.971569136579433],\n              [-34.890518146053239, -8.092177051336506],\n              [-34.966565512235462, -8.407616516494571],\n              [-35.151740079846178, -8.913866535806477],\n              [-35.301824314087071, -8.887323566043932],\n              [-35.391143165150567, -8.882819171340856],\n              [-35.471464213136443, -8.833776200720024],\n              [-35.609848007477865, -8.865043291756507],\n              [-35.721447132828786, -8.918590657080429],\n              [-35.801768180814662, -8.869547686459597],\n              [-35.882319941699961, -8.873832354591784],\n              [-35.971419066192567, -8.905099445628281],\n              [-36.016199341338307, -8.896332355450099],\n              [-36.118789677283075, -8.967655600358356],\n              [-36.123294071986152, -9.016698570979202],\n              [-36.239397592040149, -9.088241542458348],\n              [-36.266171274702117, -9.141788907782271],\n              [-36.346492322687993, -9.199840667809269],\n              [-36.440315568454565, -9.208849457215422],\n              [-36.578699362795987, -9.293444187004965],\n              [-36.833164704534312, -9.262396822539344],\n              [-36.90449893577113, -9.289181491529845],\n              [-36.940270421510689, -9.35600034173504],\n              [-36.998322181537702, -9.306957371114194],\n              [-37.18124455179688, -9.239896821681043],\n              [-37.391171317617449, -9.043483239969703],\n              [-37.471492365603325, -9.003427086097929],\n              [-37.520546322552718, -8.945375326070931],\n              [-37.627641053200563, -8.981146811810504],\n              [-37.681419131423894, -8.976642417107428],\n              [-37.748248967957636, -8.860538897053431],\n              [-37.806289741656087, -8.896332355450099],\n              [-37.81529853106224, -8.976642417107428],\n              [-37.966942823956401, -9.141788907782271],\n              [-38.092044147087989, -9.186349456357121],\n              [-38.154589315489545, -9.266681490671544],\n              [-38.221199425452397, -9.34767270469861],\n              [-38.283074427812721, -9.203663910142609],\n              [-38.307595913123151, -9.102194179709358],\n              [-38.294324428241907, -9.043021814170856],\n              [-38.335940640766921, -9.01017269182401],\n              [-38.43291696282563, -9.003646812668819],\n              [-38.482190646345913, -8.959547689892815],\n              [-38.483992404227138, -8.877655596925138],\n              [-38.504690647204228, -8.834896806231512],\n              [-38.544296361605689, -8.831073563898173],\n              [-38.57759592342282, -8.860538897053431],\n              [-38.619223122276424, -8.896090656222128],\n              [-38.667815653426942, -8.896090656222128],\n              [-38.705399883376288, -8.879896807948114],\n              [-38.834994614882476, -8.800245926003356],\n              [-39.098249019456034, -8.714970043844119],\n              [-39.25664990440481, -8.640263009744331],\n              [-39.332697270587033, -8.565797674872442],\n              [-39.441824472015526, -8.559271795717166],\n              [-39.600895523005477, -8.619564766767255],\n              [-39.682798602301716, -8.683021800437942],\n              [-39.687742450146573, -8.749401197501371],\n              [-39.738367452077739, -8.791237136597275],\n              [-39.834893334666162, -8.809013016181552],\n              [-39.884617457656759, -8.853353838185598],\n              [-39.887770533948924, -8.923995930724061],\n              [-39.909149929295722, -8.980245932869821],\n              [-39.948744657368621, -9.022103844622904],\n              [-40.004994659514409, -9.058095056933354],\n              [-40.077669222833606, -9.08824154245832],\n              [-40.212218788513155, -9.101513027339593],\n              [-40.273192911932853, -9.144952970402969],\n              [-40.319774944959818, -9.293004733863199],\n              [-40.412697311785791, -9.396957374547355],\n              [-40.564792044150238, -9.460172708990143],\n              [-40.685839412049063, -9.47210386178898],\n              [-40.743891172076076, -9.423038918511111],\n              [-40.690343806752139, -9.342728856853768],\n              [-40.703615291633412, -9.217616547393618],\n              [-40.850996889052453, -9.150797697188352],\n              [-40.855490297426996, -9.092745937161425],\n              [-40.891042056595666, -9.03469417713444],\n              [-40.891042056595666, -8.856056475007449],\n              [-40.980371893987723, -8.815780594564785],\n              [-41.003992500357526, -8.781349440907604],\n              [-41.100968822416235, -8.775724440693025],\n              [-41.105473217119311, -8.717672680666027],\n              [-41.159020582443247, -8.708663891259846],\n              [-41.324167073118076, -8.735448560250362],\n              [-41.368716635364422, -8.713168285962922]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 3944, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-38.699093730791986, -7.619457306741182],\n              [-38.636768288961321, -7.534620877723682],\n              [-38.632274880586806, -7.458793238112335],\n              [-38.582990210737989, -7.427526147075838],\n              [-38.533947240117129, -7.293646747437492],\n              [-38.547449437897825, -7.235594987410494],\n              [-38.600996803221761, -7.222103775958345],\n              [-38.676824442833095, -7.15954762122827],\n              [-38.685822245910714, -7.030172616293001],\n              [-38.730371808157031, -7.0033879473025],\n              [-38.725867413453955, -6.891788821951579],\n              [-38.650039773842593, -6.838241456627657],\n              [-38.61877268280611, -6.757931394970328],\n              [-38.650039773842593, -6.690870845537162],\n              [-38.578716528934336, -6.480944079716593],\n              [-38.5251691636104, -6.382858138474916],\n              [-38.435839326218371, -6.414125229511413],\n              [-38.283964320424815, -6.503444080574909],\n              [-38.239414758178498, -6.48544847441967],\n              [-38.132320027530653, -6.521219960159243],\n              [-38.05627266134843, -6.44539232054791],\n              [-38.002714309695961, -6.431901109095762],\n              [-37.842072213724208, -6.342582258032266],\n              [-37.793018256774815, -6.293517314754325],\n              [-37.757246771035256, -6.177413794700328],\n              [-37.641143250981258, -6.128370824079497],\n              [-37.475996760306401, -6.083832248161727],\n              [-37.422449394982493, -6.097103733042999],\n              [-37.261565599782756, -6.025780488134728],\n              [-37.176740157093803, -6.052543184468149],\n              [-37.176740157093803, -6.114879612627348],\n              [-37.395664725991992, -6.391844955223988],\n              [-37.431216485160689, -6.516715565456167],\n              [-37.507274837671446, -6.55248705119574],\n              [-37.516041927849642, -6.68186205613101],\n              [-37.337623952293541, -6.699879634943329],\n              [-37.270574389188909, -6.739913816158008],\n              [-37.217016037536467, -6.824750245175508],\n              [-37.154470869134911, -6.784694091303734],\n              [-37.042871743783991, -6.753427000267237],\n              [-36.989324378460083, -6.708646725121511],\n              [-36.944774816213766, -6.748922605564161],\n              [-36.792899810420209, -6.76669848514851],\n              [-36.743845853470816, -6.824750245175508],\n              [-36.770619536132784, -6.931844975823353],\n              [-36.712567776105772, -6.976625250969079],\n              [-36.659020410781864, -6.931844975823353],\n              [-36.574194968092911, -6.927582280348247],\n              [-36.502641010285203, -6.784694091303734],\n              [-36.529414692947171, -6.735431394112013],\n              [-36.533919087650247, -6.63732348021324],\n              [-36.444819963157641, -6.623832268761092],\n              [-36.516143208065898, -6.480944079716593],\n              [-36.493873920107035, -6.378353743771839],\n              [-36.382274794756114, -6.302526104160492],\n              [-36.292944957364057, -6.307030498863568],\n              [-36.252669076921421, -6.414125229511413],\n              [-35.926869503946278, -6.467672594835335],\n              [-35.721447132828786, -6.44539232054791],\n              [-35.667899767504849, -6.427396714392671],\n              [-35.4669708047619, -6.463168200132245],\n              [-35.306317722461586, -6.53022874956541],\n              [-35.257274751840754, -6.507948475277985],\n              [-35.047347986020185, -6.534733144268486],\n              [-34.971740072979713, -6.503905506373755],\n              [-34.929673420984386, -6.785155517102595],\n              [-34.879949297993818, -6.908224369453549],\n              [-34.875895342761027, -7.002948494160734],\n              [-34.833817704437166, -7.024327889507546],\n              [-34.805472976793396, -7.288483173021774],\n              [-34.816492264323102, -7.394896751299868],\n              [-34.857669023706393, -7.53328054564129],\n              [-34.858569902646991, -7.54969412048618],\n              [-34.980518149486443, -7.512340603436257],\n              [-35.065343592175424, -7.409530540920613],\n              [-35.270546236722026, -7.382745871930098],\n              [-35.373367285566218, -7.458793238112335],\n              [-35.498248882126944, -7.454288843409245],\n              [-35.556289655825395, -7.655228792480756],\n              [-35.681390978957012, -7.713280552507754],\n              [-35.712669056322056, -7.708776157804678],\n              [-35.837539666554221, -7.744327916973361],\n              [-35.886593623503614, -7.732177037603591],\n              [-35.931373898649355, -7.838151162739933],\n              [-35.966914671489491, -7.815870888452508],\n              [-36.074240115036758, -7.824879677858675],\n              [-36.123294071986152, -7.780099402712935],\n              [-36.16784363423244, -7.824879677858675],\n              [-36.217117317752724, -7.780099402712935],\n              [-36.266171274702117, -7.824879677858675],\n              [-36.337494519610374, -7.811366493749432],\n              [-36.422319962299326, -7.824879677858675],\n              [-36.449093644961295, -7.90969413421908],\n              [-36.569690573389835, -7.922965619100353],\n              [-36.659020410781864, -8.012306442820929],\n              [-36.627742333416819, -8.0836296877292],\n              [-36.783891021014057, -8.222233208641498],\n              [-36.833164704534312, -8.226495904116618],\n              [-36.962539709469581, -8.284547664143616],\n              [-37.06086734993923, -8.231000298819694],\n              [-37.127697186472972, -8.164181448614499],\n              [-37.149966474431835, -7.976512984424275],\n              [-37.212522629161924, -7.958737104839926],\n              [-37.342117360668055, -7.9987932587117],\n              [-37.22602482694262, -7.815870888452508],\n              [-37.167973066915607, -7.762323523128586],\n              [-37.212522629161924, -7.646220003074589],\n              [-37.199240157952119, -7.574896758166332],\n              [-37.016098061122051, -7.507858181390262],\n              [-37.016098061122051, -7.400741478085337],\n              [-37.149966474431835, -7.347194112761414],\n              [-37.25279850960456, -7.271146746579191],\n              [-37.346391042471708, -7.297931415569693],\n              [-37.382173514539829, -7.351698507464491],\n              [-37.435720879863766, -7.347194112761414],\n              [-37.551824399917763, -7.47656911769667],\n              [-37.708192814085862, -7.548112089175831],\n              [-37.793018256774815, -7.637233186325531],\n              [-37.895619579048116, -7.686495883517253],\n              [-37.975940627033992, -7.771332312534753],\n              [-38.057393266859918, -7.75781912842551],\n              [-38.087539752384913, -7.820375283155585],\n              [-38.150095907115002, -7.771332312534753],\n              [-38.167871786699351, -7.806862099046356],\n              [-38.225923546726335, -7.811366493749432],\n              [-38.257190637762847, -7.851642374192082],\n              [-38.301740200009135, -7.829362099904657],\n              [-38.304223110260125, -7.78234061373594],\n              [-38.355518278232495, -7.699767368398511],\n              [-38.417843720063132, -7.748832311676438],\n              [-38.449121797428177, -7.735538854138085],\n              [-38.5251691636104, -7.766827917831677],\n              [-38.587494605441066, -7.740043248841161],\n              [-38.591999000144142, -7.690780551649439],\n              [-38.64554636546805, -7.677487094111086],\n              [-38.699093730791986, -7.619457306741182]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 6727, \"fill\": \"#999\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-53.669921938602499, -26.258005381026635],\n              [-53.663396059447336, -26.257763681798622],\n              [-53.516245174927704, -26.289052745492228],\n              [-53.458193414900734, -26.289052745492199],\n              [-53.355372366056514, -26.239987802214294],\n              [-53.279544726445167, -26.262268076501719],\n              [-53.123396038847943, -26.369604506377534],\n              [-52.99379032101325, -26.351608900222303],\n              [-52.913469273027374, -26.365100111674394],\n              [-52.815372345457149, -26.33831544268395],\n              [-52.672495142741198, -26.378371596555716],\n              [-52.641217065376168, -26.400651870843092],\n              [-52.542900411235053, -26.400651870843141],\n              [-52.458074968546086, -26.431918961879639],\n              [-52.199094245776138, -26.44991456803487],\n              [-52.007174072439341, -26.583793967673216],\n              [-51.873294672800995, -26.601569847257558],\n              [-51.502714824680112, -26.601569847257558],\n              [-51.422393776694236, -26.699897487727206],\n              [-51.284020968681347, -26.650854517106367],\n              [-51.239471406435086, -26.606074241960584],\n              [-51.279516573978299, -26.498979511312712],\n              [-51.288525363384451, -26.423151871701464],\n              [-51.248249482941787, -26.347104505519212],\n              [-51.074094202860806, -26.23550538016832],\n              [-50.944719197925508, -26.244492196917378],\n              [-50.900169635679219, -26.280263682656951],\n              [-50.77057490417306, -26.22223389528704],\n              [-50.735023145004391, -26.231000985465229],\n              [-50.645693307612333, -26.07035888949347],\n              [-50.542872258768142, -26.02579834091862],\n              [-50.45804681607919, -26.02579834091862],\n              [-50.369167418157474, -26.085871585397726],\n              [-50.315169613363224, -26.052583009909121],\n              [-50.190299003131059, -26.052583009909121],\n              [-49.949094159945446, -26.012307129466471],\n              [-49.882275309740265, -26.039069825799885],\n              [-49.752669591905601, -26.123906254817314],\n              [-49.721622227439951, -26.159677740556958],\n              [-49.596520904308335, -26.22223389528704],\n              [-49.489415187331957, -26.22223389528704],\n              [-49.45364370159237, -26.16866455730603],\n              [-49.29749501399516, -26.106130375233022],\n              [-49.212669571306208, -26.030302735621696],\n              [-49.109848522462016, -25.994531249882129],\n              [-48.944691045458626, -26.007802734763388],\n              [-48.917917362796658, -25.97651367106981],\n              [-48.650169549848528, -25.97225097559469],\n              [-48.585372184095462, -25.986203612845699],\n              [-48.619341911953825, -26.179475104593394],\n              [-48.678964716962525, -26.225815438392431],\n              [-48.713846310090048, -26.226958016561014],\n              [-48.748266477418667, -26.268574229086028],\n              [-48.700794551779722, -26.348225111030729],\n              [-48.651520868259468, -26.406496597628575],\n              [-48.65804674741463, -26.519216328491041],\n              [-48.676492793040154, -26.612380394544971],\n              [-48.677844111451122, -26.702819851119898],\n              [-48.61574938251988, -26.878095736712453],\n              [-48.593469108232398, -27.058095743578804],\n              [-48.568266470552317, -27.123354535130829],\n              [-48.554094106730417, -27.196018112121465],\n              [-48.595490592684484, -27.2639795404952],\n              [-48.571869986314709, -27.372876029024326],\n              [-48.64252306518182, -27.55781988373559],\n              [-48.605619987602211, -27.825117257213435],\n              [-48.620693230364736, -28.075539630047501],\n              [-48.648367791967303, -28.207177818662899],\n              [-48.693148067113043, -28.310229580406485],\n              [-48.797320434368146, -28.442746675305386],\n              [-48.799572631719684, -28.575263770204174],\n              [-49.023671761362095, -28.698574321783155],\n              [-49.271391497374395, -28.871147570553831],\n              [-49.499995021719883, -29.075449336159807],\n              [-49.712844150933222, -29.324531376911544],\n              [-49.8152147603071, -29.271203738158505],\n              [-49.86877311195957, -29.21765637283459],\n              [-49.953598554648522, -29.195376098547115],\n              [-50.078699877780139, -29.244419069168003],\n              [-50.033919602634398, -29.320466435350227],\n              [-50.051915208789637, -29.356018194518924],\n              [-50.168018728843663, -29.284694949610639],\n              [-50.163525320469091, -29.195376098547165],\n              [-50.069691088373986, -29.092763789945316],\n              [-50.007145919972459, -29.101552852780515],\n              [-49.944820478141793, -28.949897573557898],\n              [-49.953598554648522, -28.793518173061251],\n              [-49.846492837672145, -28.695432231819552],\n              [-49.797449867051284, -28.623867287683332],\n              [-49.699122226581636, -28.597104591349918],\n              [-49.708120029659256, -28.530263768487643],\n              [-49.736695470202449, -28.511367283391792],\n              [-49.839066079576355, -28.465246676163645],\n              [-49.938525311886025, -28.448151948949075],\n              [-50.068790209433359, -28.444328706615693],\n              [-50.141025319610776, -28.452876070223034],\n              [-50.154966970533252, -28.473794039770993],\n              [-50.233046807496123, -28.468630465355268],\n              [-50.446566102750609, -28.422048432328303],\n              [-50.577523138996241, -28.38627694658873],\n              [-50.736143750515879, -28.235983972105508],\n              [-50.965867880372912, -27.959458082650634],\n              [-51.117292446696183, -27.807802803427933],\n              [-51.190417449485665, -27.781237861008321],\n              [-51.286723605503198, -27.716220768684309],\n              [-51.406419654991112, -27.613169006940751],\n              [-51.487641581917615, -27.564126036319912],\n              [-51.530169659711817, -27.568850157593872],\n              [-51.582365706624842, -27.547470762247087],\n              [-51.644691148455451, -27.499768123708598],\n              [-51.701622302970947, -27.488078670137682],\n              [-51.75359862331311, -27.51191900307839],\n              [-51.873294672800995, -27.509458065484495],\n              [-51.912900387202455, -27.472544001576331],\n              [-51.984223632110712, -27.376699271357644],\n              [-52.059589845923213, -27.31348393691492],\n              [-52.1392407278679, -27.283315478732838],\n              [-52.192348640050056, -27.280854541138964],\n              [-52.228570565259943, -27.292543994709881],\n              [-52.264792490469816, -27.277251025376501],\n              [-52.304398204871291, -27.283095752161898],\n              [-52.348046888177009, -27.276350146435902],\n              [-52.414646011811286, -27.236293992564114],\n              [-52.51072145492941, -27.230449265778645],\n              [-52.636492944102201, -27.259475145792123],\n              [-52.741566190297917, -27.245742235112033],\n              [-52.826391632986883, -27.189492232966188],\n              [-52.900197788146116, -27.176682173883854],\n              [-52.952844274529411, -27.178923384906845],\n              [-52.994240760483564, -27.163388716345494],\n              [-53.030473672021984, -27.137526898952693],\n              [-53.070749552464648, -27.141789594427806],\n              [-53.103598674811508, -27.154401899596394],\n              [-53.134195599806787, -27.140449262345427],\n              [-53.184370162267669, -27.14945805175158],\n              [-53.227117966632761, -27.173737837833983],\n              [-53.263339891842634, -27.163388716345494],\n              [-53.304747364125333, -27.097690471651809],\n              [-53.347495168490411, -27.080595744437176],\n              [-53.398120170421592, -27.082397502318429],\n              [-53.456622369918932, -27.103315471866381],\n              [-53.48969121883664, -27.133242230820429],\n              [-53.498018855873042, -27.172177779180771],\n              [-53.540096494196931, -27.197819870002689],\n              [-53.615693420908883, -27.209970749372474],\n              [-53.659572817113968, -27.200522506824541],\n              [-53.671492983584315, -27.169475142358927],\n              [-53.718525456081579, -27.157543989559997],\n              [-53.800417549049271, -27.16475102108496],\n              [-53.851723703350189, -27.156203657477654],\n              [-53.935417554199105, -27.161147505322504],\n              [-53.915620190162599, -27.159565474012084],\n              [-53.838221505569436, -27.12109135145073],\n              [-53.758570623624792, -26.978225135063269],\n              [-53.717393864241558, -26.882819857986362],\n              [-53.727072819688885, -26.804751007352024],\n              [-53.75339606288054, -26.748720731777155],\n              [-53.744617986373783, -26.666608912238587],\n              [-53.718075016611238, -26.443168962308732],\n              [-53.710867985086338, -26.351828626793122],\n              [-53.668570620191588, -26.288151866551573],\n              [-53.669921938602499, -26.258005381026635]\n            ]\n          ],\n          [\n            [\n              [-48.464775255666893, -27.436333062694985],\n              [-48.414820419776902, -27.399638725357704],\n              [-48.377917342197293, -27.451406305457454],\n              [-48.409645859032651, -27.566367247342839],\n              [-48.496723499073084, -27.706992252707323],\n              [-48.48592393811424, -27.767065497186366],\n              [-48.554544546200759, -27.812307198130952],\n              [-48.54217394026, -27.574694884379255],\n              [-48.505270862680447, -27.495505428233514],\n              [-48.464775255666893, -27.436333062694985]\n            ]\n          ],\n          [\n            [\n              [-48.603148063679726, -26.413703629153474],\n              [-48.66569323208131, -26.289733897861879],\n              [-48.539691030009067, -26.170246588616294],\n              [-48.497624378013768, -26.218850106095431],\n              [-48.531143666401817, -26.313112805003755],\n              [-48.568046743981427, -26.379733901295197],\n              [-48.58447130515475, -26.401552749783775],\n              [-48.603148063679726, -26.413703629153474]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 11207, \"fill\": \"#999\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-53.935417554199105, -27.161147505322504],\n              [-53.851723703350189, -27.156203657477654],\n              [-53.800417549049271, -27.16475102108496],\n              [-53.718525456081579, -27.157543989559997],\n              [-53.671492983584315, -27.169475142358927],\n              [-53.659572817113968, -27.200522506824541],\n              [-53.615693420908883, -27.209970749372474],\n              [-53.540096494196931, -27.197819870002689],\n              [-53.498018855873042, -27.172177779180771],\n              [-53.48969121883664, -27.133242230820429],\n              [-53.456622369918932, -27.103315471866381],\n              [-53.398120170421592, -27.082397502318429],\n              [-53.347495168490411, -27.080595744437176],\n              [-53.304747364125333, -27.097690471651809],\n              [-53.263339891842634, -27.163388716345494],\n              [-53.227117966632761, -27.173737837833983],\n              [-53.184370162267669, -27.14945805175158],\n              [-53.134195599806787, -27.140449262345427],\n              [-53.103598674811508, -27.154401899596394],\n              [-53.070749552464648, -27.141789594427806],\n              [-53.030473672021984, -27.137526898952693],\n              [-52.994240760483564, -27.163388716345494],\n              [-52.952844274529411, -27.178923384906845],\n              [-52.900197788146116, -27.176682173883854],\n              [-52.826391632986883, -27.189492232966188],\n              [-52.741566190297917, -27.245742235112033],\n              [-52.636492944102201, -27.259475145792123],\n              [-52.51072145492941, -27.230449265778645],\n              [-52.414646011811286, -27.236293992564114],\n              [-52.348046888177009, -27.276350146435902],\n              [-52.304398204871291, -27.283095752161898],\n              [-52.264792490469816, -27.277251025376501],\n              [-52.228570565259943, -27.292543994709881],\n              [-52.192348640050056, -27.280854541138964],\n              [-52.1392407278679, -27.283315478732838],\n              [-52.059589845923213, -27.31348393691492],\n              [-51.984223632110712, -27.376699271357644],\n              [-51.912900387202455, -27.472544001576331],\n              [-51.873294672800995, -27.509458065484495],\n              [-51.75359862331311, -27.51191900307839],\n              [-51.701622302970947, -27.488078670137682],\n              [-51.644691148455451, -27.499768123708598],\n              [-51.582365706624842, -27.547470762247087],\n              [-51.530169659711817, -27.568850157593872],\n              [-51.487641581917615, -27.564126036319912],\n              [-51.406419654991112, -27.613169006940751],\n              [-51.286723605503198, -27.716220768684309],\n              [-51.190417449485665, -27.781237861008321],\n              [-51.117292446696183, -27.807802803427933],\n              [-50.965867880372912, -27.959458082650634],\n              [-50.736143750515879, -28.235983972105508],\n              [-50.577523138996241, -28.38627694658873],\n              [-50.446566102750609, -28.422048432328303],\n              [-50.233046807496123, -28.468630465355268],\n              [-50.154966970533252, -28.473794039770993],\n              [-50.141025319610776, -28.452876070223034],\n              [-50.068790209433359, -28.444328706615693],\n              [-49.938525311886025, -28.448151948949075],\n              [-49.839066079576355, -28.465246676163645],\n              [-49.736695470202449, -28.511367283391792],\n              [-49.708120029659256, -28.530263768487643],\n              [-49.699122226581636, -28.597104591349918],\n              [-49.797449867051284, -28.623867287683332],\n              [-49.846492837672145, -28.695432231819552],\n              [-49.953598554648522, -28.793518173061251],\n              [-49.944820478141793, -28.949897573557898],\n              [-50.007145919972459, -29.101552852780515],\n              [-50.069691088373986, -29.092763789945316],\n              [-50.163525320469091, -29.195376098547165],\n              [-50.168018728843663, -29.284694949610639],\n              [-50.051915208789637, -29.356018194518924],\n              [-50.033919602634398, -29.320466435350227],\n              [-50.078699877780139, -29.244419069168003],\n              [-49.953598554648522, -29.195376098547115],\n              [-49.86877311195957, -29.21765637283459],\n              [-49.8152147603071, -29.271203738158505],\n              [-49.712844150933222, -29.324531376911544],\n              [-49.745923986179491, -29.363225226043852],\n              [-50.033249436593223, -29.801074363840215],\n              [-50.29941521823099, -30.425669114229116],\n              [-50.620040230461882, -30.897729679111798],\n              [-50.748074903314773, -31.068039744202359],\n              [-50.921318318126595, -31.258388872557354],\n              [-51.151723600353364, -31.480466517747693],\n              [-51.460417459785361, -31.702324436367149],\n              [-51.79814818555937, -31.900320049388839],\n              [-51.920316158969712, -31.989638900452327],\n              [-52.03912231584556, -32.114751209912484],\n              [-52.069049074799679, -32.063005602469801],\n              [-52.04316528474979, -31.977488021082557],\n              [-52.059589845923213, -31.913371807699221],\n              [-52.063193361685677, -31.830359109220041],\n              [-51.995023193069557, -31.815044167229566],\n              [-51.893092036837459, -31.867690653612875],\n              [-51.841115716495324, -31.831919167873302],\n              [-51.80332274630365, -31.796609107932575],\n              [-51.680693347094461, -31.774548560216033],\n              [-51.446245095963462, -31.557414762870536],\n              [-51.272089815882481, -31.47686300198523],\n              [-51.174223601211679, -31.339841512383273],\n              [-51.157568327138819, -31.266716509593778],\n              [-51.161391569472158, -31.118906445361525],\n              [-51.106042446267026, -31.081333201740719],\n              [-50.980040244194782, -31.094143260823131],\n              [-50.954398153372864, -31.052065622499249],\n              [-50.965417440902598, -31.005505562129372],\n              [-50.940895955592168, -30.903794132468136],\n              [-50.770124464702775, -30.813354675893144],\n              [-50.689341990918024, -30.704216488136105],\n              [-50.716346386479415, -30.425888840799999],\n              [-50.685068309114371, -30.413518234859346],\n              [-50.614865669717602, -30.456958177922701],\n              [-50.582016547370756, -30.438940599110381],\n              [-50.546464788202059, -30.316772625700047],\n              [-50.563570501745232, -30.253557291257323],\n              [-50.646143747082647, -30.236902017184477],\n              [-50.931898152514549, -30.374362959928192],\n              [-51.025040245911413, -30.368737959713613],\n              [-51.040344201573333, -30.26052262355428],\n              [-51.17939816195593, -30.211018227134588],\n              [-51.233615693321042, -30.121479649500209],\n              [-51.249820527923589, -30.06004410028163],\n              [-51.297973605932356, -30.034841462601477],\n              [-51.295040256211081, -30.14105728696579],\n              [-51.281768771329808, -30.244109048709397],\n              [-51.157348600567929, -30.364255537667624],\n              [-51.187495086092923, -30.411958176206085],\n              [-51.246667451631424, -30.467527025982122],\n              [-51.287624484443825, -30.591277030702805],\n              [-51.283120089740748, -30.751479673532806],\n              [-51.316419651557879, -30.702656429482843],\n              [-51.359167455922972, -30.674531428409963],\n              [-51.376492896037007, -30.84686297795264],\n              [-51.459066141374421, -30.912802921874295],\n              [-51.485169657995186, -30.977600287627368],\n              [-51.463570536077498, -31.052746774868979],\n              [-51.50631834044259, -31.104492382311669],\n              [-51.716915272304334, -31.243777055593711],\n              [-51.926842038124903, -31.338940633442661],\n              [-51.97252319221127, -31.383720908588394],\n              [-51.994792480170133, -31.489914760295619],\n              [-52.02697143647579, -31.599052948052659],\n              [-52.11989380330175, -31.694897678271346],\n              [-52.193469245561559, -31.885466533197217],\n              [-52.191447761109444, -31.967600325392873],\n              [-52.167146002369904, -32.088427966720836],\n              [-52.127320561397553, -32.16785912209464],\n              [-52.190096442698518, -32.220725335048826],\n              [-52.274691172488048, -32.32377709679244],\n              [-52.341740735592666, -32.439638917618467],\n              [-52.508469257577858, -32.875246844391839],\n              [-52.652247339234421, -33.137820096595718],\n              [-52.762945585644729, -33.266294222590368],\n              [-52.920896031123192, -33.401975380109938],\n              [-53.370665335389901, -33.742178029806389],\n              [-53.397669730951279, -33.737234181961547],\n              [-53.463598688544394, -33.709768360601309],\n              [-53.518947811749555, -33.677138964825346],\n              [-53.531318417690201, -33.655539842907658],\n              [-53.537624570274517, -33.622932419788782],\n              [-53.530417538749589, -33.500303020579594],\n              [-53.531318417690201, -33.17088894551344],\n              [-53.511971493124051, -33.108574490011335],\n              [-53.482945613110545, -33.068518336139562],\n              [-53.395197807028865, -33.01024684954168],\n              [-53.310141651440475, -32.926992451834529],\n              [-53.214066208322365, -32.821018326698187],\n              [-53.125648236199481, -32.736643323479534],\n              [-53.157365766706292, -32.680173594762884],\n              [-53.231171921865524, -32.625505623927474],\n              [-53.362799124152332, -32.581164801923499],\n              [-53.489471492265736, -32.503315677860044],\n              [-53.601740783657846, -32.402966552938281],\n              [-53.653717103999966, -32.298794185683171],\n              [-53.701200015967544, -32.186294181391631],\n              [-53.746650457154473, -32.097414783469901],\n              [-53.761723699916971, -32.056919176456368],\n              [-53.80604254926385, -32.039824449241756],\n              [-53.876464915231495, -31.994604720954264],\n              [-53.920575024336031, -31.952307356059492],\n              [-53.985141677189688, -31.928225323890835],\n              [-54.100344318303073, -31.901440654900334],\n              [-54.220490807261285, -31.855100321101339],\n              [-54.369893889132442, -31.745083227060768],\n              [-54.477669772150008, -31.622673554422462],\n              [-54.530997410903055, -31.541902066966273],\n              [-54.587697852519128, -31.485190639021653],\n              [-54.895941272480812, -31.391147666684198],\n              [-55.036115838374911, -31.279109088191518],\n              [-55.091245235009183, -31.313979694990479],\n              [-55.173598753775721, -31.279548541333284],\n              [-55.254589967802801, -31.225539750210508],\n              [-55.278891726542327, -31.184143264256356],\n              [-55.313322880199522, -31.141626172790708],\n              [-55.345490850176631, -31.093022655311636],\n              [-55.365969366582831, -31.046220895713788],\n              [-55.449674203760296, -30.964548529316986],\n              [-55.557219373878439, -30.875888857966139],\n              [-55.603120254535668, -30.850708192943074],\n              [-55.627191300375785, -30.85811297838179],\n              [-55.650592180174698, -30.892104678897219],\n              [-55.665214983466896, -30.924953801244065],\n              [-55.705941303379859, -30.946552923161761],\n              [-55.756346578740164, -30.987048530175294],\n              [-55.807872459611971, -31.036772653165869],\n              [-55.873570704305664, -31.069621775512708],\n              [-55.952089994410315, -31.080871775941866],\n              [-56.004747467122158, -31.079289744631517],\n              [-56.015547028081002, -31.059734079823023],\n              [-56.01846939147373, -30.991772651449253],\n              [-55.998891754008156, -30.837195008833831],\n              [-56.044792634665384, -30.777583190153571],\n              [-56.10576675808511, -30.71366473068403],\n              [-56.176200110381302, -30.628388848524764],\n              [-56.40727555864926, -30.447487962717688],\n              [-56.721594418295822, -30.186958167623018],\n              [-56.83274310417643, -30.107307285678324],\n              [-56.93714618433097, -30.101001133094016],\n              [-57.032771187978781, -30.109987949843088],\n              [-57.120518994060461, -30.144419103500283],\n              [-57.18689839112389, -30.264807291686473],\n              [-57.214342239827033, -30.283484050211435],\n              [-57.383773398634077, -30.28078141338959],\n              [-57.552292692171946, -30.26120377592401],\n              [-57.608993133788019, -30.187859046563631],\n              [-57.563773405500527, -30.1399147087972],\n              [-57.405141807652342, -30.033940583660858],\n              [-57.317394001570648, -29.939458158181644],\n              [-57.300749713826349, -29.856643213616252],\n              [-57.224691361315578, -29.782177878744378],\n              [-57.089240916695417, -29.716237934822715],\n              [-56.938717229312772, -29.59475111378211],\n              [-56.772450133126441, -29.41789319687927],\n              [-56.671419855834941, -29.287397586432505],\n              [-56.635868096666243, -29.203022583213851],\n              [-56.570620291442864, -29.138005490889896],\n              [-56.47589616673568, -29.092544063374433],\n              [-56.393322921398266, -28.997380485525483],\n              [-56.322450115960308, -28.852470812028862],\n              [-56.225473793901571, -28.737268170915485],\n              [-56.102844394692383, -28.651772562185336],\n              [-56.034223786605963, -28.580888770418831],\n              [-56.019589996985232, -28.524638768273064],\n              [-55.984950103085694, -28.488647555962608],\n              [-55.930271145921736, -28.472893160830374],\n              [-55.903717189830658, -28.443208101104233],\n              [-55.905518947711883, -28.399548431469995],\n              [-55.890445704949386, -28.37008309831473],\n              [-55.858947901013465, -28.35410897661162],\n              [-55.806070701730746, -28.359733976826199],\n              [-55.732044820000624, -28.386716399730496],\n              [-55.687275531183445, -28.38155282531477],\n              [-55.671971575521511, -28.344880460634577],\n              [-55.691549212987098, -28.302802822310696],\n              [-55.745997457251633, -28.255539636913994],\n              [-55.725518940845433, -28.204013756042194],\n              [-55.582422011558592, -28.121001057563006],\n              [-55.47666761299314, -28.089272540727663],\n              [-55.409848762787945, -28.037746659855856],\n              [-55.346391729117258, -27.956074293459054],\n              [-55.243790406843942, -27.898923412372667],\n              [-55.101594356497728, -27.866755442395558],\n              [-55.063790399977492, -27.835927804500827],\n              [-55.068964960721758, -27.796333076427906],\n              [-55.039950067036813, -27.767746649556173],\n              [-54.955794790389035, -27.74726813314998],\n              [-54.91012462263123, -27.708574284017672],\n              [-54.902697864535426, -27.651862856073052],\n              [-54.875693468974035, -27.599216369689749],\n              [-54.829122422275617, -27.550612852210676],\n              [-54.777146101933511, -27.532397519484562],\n              [-54.719775494276234, -27.544987851996098],\n              [-54.665766703153466, -27.526552792699107],\n              [-54.615372414121708, -27.477048396279415],\n              [-54.554848730172282, -27.454108942279341],\n              [-54.48441537787609, -27.457251032242951],\n              [-54.448193452666203, -27.446440484955566],\n              [-54.326915371867941, -27.423501030955492],\n              [-54.26009652166276, -27.38210454500134],\n              [-54.205197837927912, -27.289621631317146],\n              [-54.156374593877956, -27.253850145577573],\n              [-54.113846516083754, -27.274768115125532],\n              [-54.040040360924522, -27.243720750659918],\n              [-53.935417554199105, -27.161147505322504]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/in/brazil-states.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"crs\": {\n    \"type\": \"name\",\n    \"properties\": { \"name\": \"urn:ogc:def:crs:OGC:1.3:CRS84\" }\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 790, \"fill\": \"#fff\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-66.627670235635748, -9.925465695489663],\n              [-66.730040845009626, -9.975431517708216],\n              [-67.111420254089353, -10.269052134377702],\n              [-67.190400969992851, -10.311349499272467],\n              [-67.280400973426083, -10.317194226057921],\n              [-67.332816746909955, -10.357931532299432],\n              [-67.416972023557719, -10.389879775705666],\n              [-67.582349227131985, -10.505983295759663],\n              [-67.666724230350638, -10.598905662585608],\n              [-67.721842640656362, -10.683038966576291],\n              [-67.785750113797363, -10.685983302626113],\n              [-67.835023797317632, -10.662802149398075],\n              [-67.991622924385169, -10.674491602968985],\n              [-68.071724245800169, -10.703078029840725],\n              [-68.158571172941237, -10.784970122808403],\n              [-68.266566782529694, -10.933021886268634],\n              [-68.311116344775996, -10.975099524592522],\n              [-68.397974258245611, -11.018737221569666],\n              [-68.498323383167374, -11.05475040653721],\n              [-68.622743553929254, -11.109198650801744],\n              [-68.678323390033839, -11.112802166564208],\n              [-68.727597073554108, -11.122470135683017],\n              [-68.769894438448873, -11.097728923801711],\n              [-68.784066802270758, -11.044621011619554],\n              [-68.848424714882057, -11.011090736902972],\n              [-69.001651039086553, -10.99445743548722],\n              [-69.228441819222311, -10.955741613697825],\n              [-69.462450617211545, -10.948095129031131],\n              [-69.578543150936994, -10.951698644793595],\n              [-69.673948428013915, -10.954181555044556],\n              [-69.839776071058495, -10.933483312067494],\n              [-69.960372999487021, -10.92987979630503],\n              [-70.066347124623363, -10.982526282688326],\n              [-70.220023888298172, -11.047543375012282],\n              [-70.290446254265817, -11.064198649085128],\n              [-70.341972135137624, -11.066681559336104],\n              [-70.392366424169396, -11.058573648870549],\n              [-70.450868623666693, -11.024823647583091],\n              [-70.533222142433232, -10.946974523519643],\n              [-70.596448463204496, -10.976901282473747],\n              [-70.642349343861724, -11.010189857962359],\n              [-70.641448464921112, -10.840780671812411],\n              [-70.640316873081076, -10.586073630846116],\n              [-70.639415994140464, -10.361293348833925],\n              [-70.638526101528385, -10.181513068538351],\n              [-70.637625222587772, -9.971828001945752],\n              [-70.636944070218036, -9.823776238485522],\n              [-70.593745826382658, -9.767526236339762],\n              [-70.56719187029158, -9.704530628467907],\n              [-70.599151100026347, -9.62059507839102],\n              [-70.592174781400843, -9.543427106697308],\n              [-70.570125220012855, -9.489879741373386],\n              [-70.541099339999349, -9.437452981560966],\n              [-70.607918190204529, -9.463776224752607],\n              [-70.636944070218036, -9.478168315145382],\n              [-70.672495829386733, -9.518004742446266],\n              [-70.758441877587188, -9.571771834341064],\n              [-70.816273911043297, -9.625319199664986],\n              [-70.884444079659417, -9.668978869299224],\n              [-70.970840567330171, -9.765724478458523],\n              [-71.041724359096676, -9.818832390640679],\n              [-71.115299801356485, -9.852340692700167],\n              [-71.237918214237126, -9.965983275160283],\n              [-71.339398930998939, -9.988483276018599],\n              [-71.608047622887696, -10.006017456374977],\n              [-71.887495875735297, -10.005578003233211],\n              [-72.142873082742796, -10.005116577434364],\n              [-72.181566931875096, -10.003776245351972],\n              [-72.179095007952668, -9.91017272615629],\n              [-72.172799841696914, -9.844013055663751],\n              [-72.259866495408858, -9.774271842065829],\n              [-72.26572220852286, -9.688556506764797],\n              [-72.289123088321787, -9.629142441998326],\n              [-72.318148968335294, -9.556698591578566],\n              [-72.379123091755019, -9.510116558551601],\n              [-72.464849413384584, -9.492120952396377],\n              [-72.605474418749012, -9.452064798524603],\n              [-72.814269592729531, -9.410448585999575],\n              [-73.013847237061569, -9.407526222606847],\n              [-73.20937092616083, -9.411349464940187],\n              [-73.089894603243792, -9.265780611730932],\n              [-72.970418280326768, -9.120189785864582],\n              [-72.974021796089232, -8.993077964609398],\n              [-73.070547678677642, -8.882819171340856],\n              [-73.122523999019762, -8.81397883668356],\n              [-73.203075759905062, -8.719254711976376],\n              [-73.302524005886212, -8.65399592042445],\n              [-73.356741537251324, -8.566918280383945],\n              [-73.351797689406482, -8.514271794000649],\n              [-73.360345053013788, -8.479401187201688],\n              [-73.398149009534023, -8.458922670795488],\n              [-73.435941979725712, -8.426974427389268],\n              [-73.488149012967241, -8.392103820590307],\n              [-73.549123136386982, -8.345741514134218],\n              [-73.549123136386982, -8.299401180335224],\n              [-73.572293303286472, -8.249896783915531],\n              [-73.610097259806707, -8.191845023888533],\n              [-73.610097259806707, -8.145504690089538],\n              [-73.644967866605668, -8.072819140441808],\n              [-73.68277182312589, -8.020612107200265],\n              [-73.720345066746702, -7.985741500401318],\n              [-73.775694189951849, -7.936478803209596],\n              [-73.772771826559122, -7.895741496968085],\n              [-73.732045506646159, -7.875504679789856],\n              [-73.714500339961234, -7.828922646762891],\n              [-73.720345066746702, -7.78258231296391],\n              [-73.76691611344512, -7.753556432950404],\n              [-73.822045510079391, -7.738922643329673],\n              [-73.894720073398574, -7.654767366681895],\n              [-73.94691612031157, -7.611129669704752],\n              [-73.981797713439079, -7.585026153083987],\n              [-74.002045516945842, -7.556000273070481],\n              [-73.981797713439079, -7.535741483235171],\n              [-73.958396833640151, -7.506715603221679],\n              [-73.952771833425572, -7.460375269422684],\n              [-73.964241560425606, -7.416715599788446],\n              [-73.964241560425606, -7.378922629596758],\n              [-73.929370953626659, -7.367233176025834],\n              [-73.891797710005847, -7.373077902811303],\n              [-73.853993753485611, -7.349896749583266],\n              [-73.804720069965356, -7.34112965940507],\n              [-73.749370946760195, -7.33526295996252],\n              [-73.720345066746702, -7.309181415998836],\n              [-73.72326743013943, -7.262819109542761],\n              [-73.758149023266924, -7.172819106109529],\n              [-73.793019630065885, -7.13502613591784],\n              [-73.796842872399239, -7.116788830534645],\n              [-72.66352617877601, -7.592672637750681],\n              [-70.373250212502668, -8.155172659208347],\n              [-69.806465522912788, -8.454198549521536],\n              [-66.828599198378711, -9.838168328878282],\n              [-66.627670235635748, -9.925245968918787],\n              [-66.627670235635748, -9.925465695489663]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 1749, \"fill\": \"#fff\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-66.627670235635748, -9.925465695489663],\n              [-66.627670235635748, -9.925245968918787],\n              [-66.828599198378711, -9.838168328878282],\n              [-66.743773755689745, -9.748849477814787],\n              [-66.694719798740365, -9.748849477814787],\n              [-66.59662287117014, -9.664013048797287],\n              [-66.502799625403568, -9.63274595776079],\n              [-66.404691711504796, -9.525651227112959],\n              [-66.395693908427177, -9.405043312355886],\n              [-66.105446094620731, -9.418556496465115],\n              [-65.998340377644354, -9.400780616880766],\n              [-65.931290814539736, -9.414052101762039],\n              [-65.766144323864893, -9.565927107555609],\n              [-65.676825472801397, -9.534638043862032],\n              [-65.632275910555094, -9.449823587501612],\n              [-65.525170193578717, -9.414052101762039],\n              [-65.444849145592826, -9.445319192798536],\n              [-65.418075462930872, -9.391771827474614],\n              [-65.221650894890999, -9.257892427836268],\n              [-65.199150894032684, -9.266681490671544],\n              [-65.172366225042182, -9.373995947890265],\n              [-65.092045177056306, -9.436332376049464],\n              [-65.038497811732384, -9.400780616880766],\n              [-64.904618412094038, -9.213112152690542],\n              [-64.926898686381463, -9.11953060615194],\n              [-64.886622805938813, -9.061478846124942],\n              [-64.779517088962422, -8.985431479942704],\n              [-64.69019823789894, -9.021202965682278],\n              [-64.596594718703244, -9.025707360385354],\n              [-64.475997790274718, -8.949879720774021],\n              [-64.417946030247705, -8.972138022404351],\n              [-64.382174544508132, -8.940870931367854],\n              [-64.217017067504756, -8.949879720774021],\n              [-64.118920139934531, -8.936366536664778],\n              [-64.12769821644126, -8.68640558962953],\n              [-64.074150851117338, -8.713168285962936],\n              [-63.998323211505991, -8.681901194926454],\n              [-63.922495571894657, -8.534530583835959],\n              [-63.993818816802914, -8.440927064640263],\n              [-63.917991177191567, -8.333832333992419],\n              [-63.752844686516738, -8.284547664143616],\n              [-63.72607100385477, -8.19094414494792],\n              [-63.591971877645548, -8.164181448614499],\n              [-63.587698195841895, -8.079345019597],\n              [-63.538424512321626, -7.9987932587117],\n              [-62.904590259627142, -8.007802048117853],\n              [-62.828773606344342, -8.016788864866925],\n              [-62.721448162797074, -8.061349413441775],\n              [-62.676898600550771, -8.114896778765697],\n              [-62.636622720108122, -8.222233208641498],\n              [-62.556290685793698, -8.289052058846693],\n              [-62.538525792537897, -8.36059503032584],\n              [-62.45370034984893, -8.347103818873691],\n              [-62.373368315534506, -8.382875304613265],\n              [-62.306318752429902, -8.570302069575533],\n              [-62.172450339120104, -8.610577950018182],\n              [-62.13217445867744, -8.766715651286859],\n              [-61.998295059039108, -8.811495926432599],\n              [-61.917974011053218, -8.873832354591784],\n              [-61.873424448806915, -8.856056475007449],\n              [-61.837641976738794, -8.744457349656528],\n              [-61.761825323455994, -8.72668147007218],\n              [-61.717045048310268, -8.68640558962953],\n              [-61.609950317662424, -8.722177075369103],\n              [-61.609950317662424, -8.766715651286859],\n              [-61.507348995389123, -8.847047685601282],\n              [-61.484848994530822, -8.914108235034448],\n              [-61.529618283348, -8.998922691394853],\n              [-61.556391966009969, -9.128297696330122],\n              [-61.529618283348, -9.226625336799771],\n              [-61.592174438078075, -9.239896821681043],\n              [-61.609950317662424, -9.320448582566343],\n              [-61.547394162932349, -9.409547707058962],\n              [-61.551898557635425, -9.463095072382885],\n              [-61.480575312727169, -9.63725035246388],\n              [-61.520620480270395, -9.704288929239937],\n              [-61.565400755416121, -9.726569203527362],\n              [-61.520620480270395, -9.860448603165707],\n              [-61.534122678051077, -9.994547729374943],\n              [-61.569674437219774, -10.061366579580124],\n              [-61.565400755416121, -10.262306528651621],\n              [-61.471566523321002, -10.436439836075536],\n              [-61.502844600686046, -10.686422755767879],\n              [-61.471566523321002, -10.757746000676136],\n              [-61.520620480270395, -10.789013091712633],\n              [-61.507348995389123, -10.878353915433223],\n              [-61.520620480270395, -10.954181555044556],\n              [-61.471566523321002, -10.998939857533202],\n              [-60.440400712500775, -11.003444252236292],\n              [-60.440400712500775, -11.038996011404976],\n              [-60.382348952473777, -11.10155216613505],\n              [-60.279516917301038, -11.079271891847625],\n              [-60.176915595027737, -11.119547772290289],\n              [-60.069820864379906, -11.115043377587199],\n              [-60.002771301275288, -11.146332441280791],\n              [-59.908948055508716, -11.382802176863891],\n              [-60.025040589234166, -11.534677182657461],\n              [-60.101098941744937, -11.601496032862656],\n              [-60.101098941744937, -11.744362249250059],\n              [-60.060823061302287, -11.905246044449797],\n              [-59.98499542169094, -11.918517529331055],\n              [-59.931448056367017, -12.052396928969401],\n              [-59.886667781221291, -12.128444295151638],\n              [-59.891172175924368, -12.244547815205635],\n              [-59.82412261281975, -12.387194305022163],\n              [-59.908948055508716, -12.619401345130157],\n              [-60.002771301275288, -12.731000470481078],\n              [-60.043047181717938, -12.873866686868496],\n              [-60.083092349261165, -12.927414052192404],\n              [-60.194691474612085, -12.972194327338144],\n              [-60.270749827122856, -13.070302241236917],\n              [-60.275023508926509, -13.137340818012973],\n              [-60.351070875108732, -13.271220217651319],\n              [-60.382348952473777, -13.418590828741813],\n              [-60.659094568499526, -13.601513199001005],\n              [-60.724792813193218, -13.662948748219577],\n              [-60.914471775507025, -13.561479017786311],\n              [-61.076915629360016, -13.489694347079194],\n              [-61.12912266260156, -13.498483409914471],\n              [-61.415997673544965, -13.526608410987365],\n              [-61.511622677192776, -13.541220227951001],\n              [-61.575749876904652, -13.524806653106126],\n              [-61.789950324528888, -13.525707532046738],\n              [-61.874094614848104, -13.470358408841591],\n              [-61.944747693715186, -13.406220222801167],\n              [-62.094820941627518, -13.241974611066937],\n              [-62.117991108527022, -13.159840818871288],\n              [-62.176042868554021, -13.133737302250523],\n              [-62.264021387535138, -13.143646970597288],\n              [-62.352900785456868, -13.132396970168131],\n              [-62.525474034227514, -13.064215815223477],\n              [-62.687017009139879, -12.994254875054679],\n              [-62.765547285573078, -12.997177238447421],\n              [-62.83506877260011, -12.953737295384059],\n              [-62.957917898380188, -12.847103990535075],\n              [-63.015299492365997, -12.805465805352952],\n              [-63.041392022658215, -12.750358381375776],\n              [-63.067495539278994, -12.669125468120725],\n              [-63.116769222799263, -12.651569315107267],\n              [-63.180665709611716, -12.666203104727998],\n              [-63.249747743496982, -12.70781931725304],\n              [-63.346724065555719, -12.680155741979007],\n              [-63.46529950953213, -12.605228981308272],\n              [-63.541797315184667, -12.546715795482427],\n              [-63.585665725061233, -12.519052220208394],\n              [-63.688497760233972, -12.478095187396008],\n              [-63.788165732785998, -12.469547823788702],\n              [-63.938469693597767, -12.529621068267815],\n              [-64.061549532277269, -12.505099582957385],\n              [-64.255040750595867, -12.483280734468821],\n              [-64.420417954170134, -12.439840791405459],\n              [-64.48072191154867, -12.326220181602437],\n              [-64.513340320996093, -12.251073694360826],\n              [-64.611667961465741, -12.20383248162122],\n              [-64.689967524999503, -12.146439901306863],\n              [-64.783340331295776, -12.059362261266358],\n              [-64.829922364322741, -12.030358353909946],\n              [-64.914297367541394, -12.006056595170406],\n              [-64.992596931075155, -11.975228957275675],\n              [-65.001144294682462, -11.920099560641404],\n              [-65.030170174695954, -11.847414010993674],\n              [-65.037146493321458, -11.829418404838449],\n              [-65.090243419175067, -11.741220159286456],\n              [-65.115215343955796, -11.735155705930111],\n              [-65.142670178987501, -11.752250433144724],\n              [-65.163368421964563, -11.76508246488423],\n              [-65.185648696251988, -11.749547796322872],\n              [-65.189691665156218, -11.710172794820835],\n              [-65.175299574763457, -11.646957460378118],\n              [-65.206116226329641, -11.58057806331469],\n              [-65.282174578840412, -11.511056576287658],\n              [-65.322000019812762, -11.43927190558054],\n              [-65.325592549246679, -11.364806570708666],\n              [-65.342467549890415, -11.315082447718083],\n              [-65.372844748314833, -11.289879810037931],\n              [-65.389950461857993, -11.246220140403707],\n              [-65.393542991291909, -11.184345138043355],\n              [-65.371493429903907, -11.110319256313247],\n              [-65.323790791365454, -11.024823647583091],\n              [-65.333920186283109, -10.892746005825984],\n              [-65.402321067798638, -10.714767483411634],\n              [-65.439894311419451, -10.586293357416992],\n              [-65.447090356615831, -10.507323627842041],\n              [-65.436971948026709, -10.449052141244152],\n              [-65.395344749173134, -10.392340713299532],\n              [-65.312991230406595, -10.253078012674592],\n              [-65.298599140013835, -10.14686218831028],\n              [-65.324471943735176, -10.026957398580024],\n              [-65.32807545949764, -9.935595090407318],\n              [-65.309398700972679, -9.872599482535477],\n              [-65.337974141515872, -9.790245963768939],\n              [-65.396245628113761, -9.712396839705491],\n              [-65.436741235127286, -9.710375355253376],\n              [-65.492090358332447, -9.731754750600174],\n              [-65.558700468295285, -9.797452995293867],\n              [-65.637219758399937, -9.80914244886479],\n              [-65.706741245426969, -9.768427115280375],\n              [-65.924775921713092, -9.785521842494987],\n              [-66.26361626667007, -9.826017449508512],\n              [-66.399297424189641, -9.868095087832401],\n              [-66.478948306134328, -9.886090693987626],\n              [-66.575243475823328, -9.899823604667745],\n              [-66.627670235635748, -9.925465695489663]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 497, \"fill\": \"#fff\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-58.868773455282323, 0.224275902629742],\n              [-59.770575247495842, 0.228780297332833],\n              [-60.025040589234166, 0.224275902629742],\n              [-60.127872624406905, 0.13067238343406],\n              [-60.167917791950131, 0.005582046630991],\n              [-60.21697174889951, -0.043482896646935],\n              [-60.252743234639084, -0.15057762729478],\n              [-60.310794994666082, -0.235392083655199],\n              [-60.315299389369159, -0.306957027791427],\n              [-60.38662263427743, -0.463094729060117],\n              [-60.391116042651959, -0.521146489087116],\n              [-60.315299389369159, -0.619474129556764],\n              [-60.306290599963006, -0.673021494880686],\n              [-60.337568677328051, -0.704288585917183],\n              [-60.467174395162729, -0.740082044313837],\n              [-60.516217365783575, -0.829181168806457],\n              [-60.641098962344302, -0.86044825984294],\n              [-60.734922208110873, -0.851681169664758],\n              [-60.815243256096764, -0.686292979761944],\n              [-60.904573093488793, -0.610465340150597],\n              [-60.931346776150761, -0.556917974826689],\n              [-61.060721781086016, -0.530155278493268],\n              [-61.105491069903209, -0.4943618200966],\n              [-61.221594589957206, -0.498866214799691],\n              [-61.243874864244631, -0.547931158077617],\n              [-61.458075311868853, -0.637250009141113],\n              [-61.534122678051077, -0.726568860204608],\n              [-61.578672240297394, -0.945262716203359],\n              [-61.560896360713045, -1.021332055042677],\n              [-61.574167845594303, -1.14169827057178],\n              [-61.618948120740043, -1.275797396781002],\n              [-61.619848999680656, -1.449491251063151],\n              [-61.717275761209692, -1.401129432812041],\n              [-61.798497688136194, -1.388736854214301],\n              [-61.880840220574186, -1.389198280013161],\n              [-61.877698130610568, -1.369400915976698],\n              [-61.935749890637567, -1.244530305744519],\n              [-62.029573136404139, -1.146202665274856],\n              [-62.141172261755059, -1.065870630960433],\n              [-62.203717430156601, -1.043590356673008],\n              [-62.243773584028361, -0.981056174600027],\n              [-62.315316555507508, -0.945262716203359],\n              [-62.417917877780823, -0.829181168806457],\n              [-62.507247715172852, -0.771129408779444],\n              [-62.475969637807822, -0.695301769168111],\n              [-62.377872710237597, -0.717582043455536],\n              [-62.310823147132979, -0.641754403844189],\n              [-62.319820950210598, -0.521146489087116],\n              [-62.368874907159977, -0.467599123763193],\n              [-62.373368315534506, -0.342728513531],\n              [-62.404646392899551, -0.271163569394773],\n              [-62.475969637807822, -0.222120598773927],\n              [-62.511741123547395, -0.123792958304278],\n              [-62.569792883574394, -0.047965318692931],\n              [-62.578790686651999, 0.018853531512249],\n              [-62.525023594757201, 0.094900897694487],\n              [-62.565299475199851, 0.17523293200891],\n              [-62.569792883574394, 0.246556176917167],\n              [-62.53402139783482, 0.313605740021785],\n              [-62.52951700313173, 0.429698273747235],\n              [-62.489471835588503, 0.487750033774233],\n              [-62.484967440885427, 0.541297399098156],\n              [-62.538525792537897, 0.675176798736501],\n              [-62.53402139783482, 0.7332285587635],\n              [-62.444691560442777, 0.804782516571194],\n              [-62.511741123547395, 0.960931204168418],\n              [-62.516245518250471, 1.059247858309519],\n              [-62.614342445820697, 1.362778143325784],\n              [-62.623340248898316, 1.416325508649706],\n              [-62.721448162797074, 1.49665754296413],\n              [-62.788497725901692, 1.603752273611974],\n              [-62.712670086290345, 1.73763167325032],\n              [-62.730445965874694, 1.831454919016892],\n              [-62.690400798331467, 1.911775967002768],\n              [-62.708165691587268, 1.947547452742342],\n              [-62.846549485928691, 2.018881683979146],\n              [-63.002698173525914, 2.018881683979146],\n              [-63.123295101954454, 2.112704929745718],\n              [-63.150068784616408, 2.179754492850336],\n              [-63.306448185113055, 2.16625229506964],\n              [-63.393745551724436, 2.224073342197215],\n              [-63.374849066628599, 2.340407575150635],\n              [-63.38924115702136, 2.411950546629782],\n              [-63.584545119549745, 2.434000108017784],\n              [-63.712568806074088, 2.434000108017784],\n              [-63.924066616876459, 2.45245713997187],\n              [-64.024866181268536, 2.481922473127128],\n              [-64.046696016085647, 2.502400989533328],\n              [-64.048717500537762, 2.525131703291052],\n              [-64.028700409930423, 2.575976431793123],\n              [-64.009122772464849, 2.671832148340357],\n              [-64.037698213008028, 2.801426879846503],\n              [-64.143441625244947, 3.00482776651188],\n              [-64.218818825385981, 3.204625137414794],\n              [-64.228717507404212, 3.343898824368296],\n              [-64.227146462422411, 3.491280421787323],\n              [-64.221071022737533, 3.587355864905447],\n              [-64.275299540431178, 3.662733065046481],\n              [-64.568019278160051, 3.89987296667077],\n              [-64.669049555451551, 4.011702804921114],\n              [-64.702568843839586, 4.089332202413701],\n              [-64.817771484952971, 4.232198418801104],\n              [-64.788745604939464, 4.276077815006218],\n              [-64.72236620787605, 4.274506770024416],\n              [-64.665446039689087, 4.237153252974494],\n              [-64.613700432246404, 4.15773308392923],\n              [-64.576346915196481, 4.139957204344881],\n              [-64.525491200365863, 4.139957204344881],\n              [-64.255721902965604, 4.140407643815195],\n              [-64.19249558219434, 4.126905446034499],\n              [-64.154241186203791, 4.100131763372545],\n              [-64.121622776756382, 4.067051928126276],\n              [-64.073469698747601, 3.974349287871192],\n              [-64.021493378405495, 3.9291295595837],\n              [-63.914618374328541, 3.930700604565502],\n              [-63.746999959731269, 3.932502362446741],\n              [-63.652946001065274, 3.940829999483157],\n              [-63.596695998919515, 3.914957195761815],\n              [-63.526724072422169, 3.893797526985892],\n              [-63.379792914473441, 3.942851483935272],\n              [-63.338616155090165, 3.943983075775321],\n              [-63.294747745213598, 3.922153240958195],\n              [-63.136116147365414, 3.756556310813053],\n              [-63.045215264991569, 3.686573397987161],\n              [-62.968717459339032, 3.593881744060639],\n              [-62.856898607417236, 3.593431304590325],\n              [-62.764646406632465, 3.672851473635589],\n              [-62.739894208422612, 3.940379560012857],\n              [-62.712219646820046, 4.017997971176882],\n              [-62.665417887222191, 4.039608079423118],\n              [-62.609849037446168, 4.042299729916422],\n              [-62.543920079853052, 4.084377368240311],\n              [-62.472596834944781, 4.138605885933956],\n              [-62.410721832584429, 4.156832204988618],\n              [-62.153092428225406, 4.098330005491306],\n              [-62.081549456746259, 4.126224293664762],\n              [-61.820766976095072, 4.197108085431267],\n              [-61.554150754986964, 4.287778254905689],\n              [-61.479443720887119, 4.402299743649337],\n              [-61.367624868965322, 4.432907654973178],\n              [-61.280096789454518, 4.516832218721532],\n              [-61.209443710587436, 4.508054142214789],\n              [-61.102348979939592, 4.504681339351762],\n              [-61.0362002957756, 4.519304142643946],\n              [-61.002900733958441, 4.535278264347056],\n              [-60.966448095849145, 4.574653265849093],\n              [-60.906144138470594, 4.686702830670328],\n              [-60.833469575151412, 4.729230908464515],\n              [-60.741667813836955, 4.774230910181132],\n              [-60.679122645435413, 4.827108109463865],\n              [-60.627596764563606, 4.892575641258119],\n              [-60.603745445294379, 4.949276082874206],\n              [-60.604415611335568, 4.994506797490246],\n              [-60.635023522659424, 5.082023890672502],\n              [-60.671915613910485, 5.164377409439041],\n              [-60.711971767782259, 5.191601531571308],\n              [-60.742118253307254, 5.201950653059839],\n              [-60.651448083832847, 5.221077851055114],\n              [-60.576521323162112, 5.192502410511921],\n              [-60.459516924167502, 5.187998015808844],\n              [-60.408891922236307, 5.210047577196846],\n              [-60.335096753405622, 5.199248016238002],\n              [-60.241723947109364, 5.257980928634737],\n              [-60.18165070263025, 5.238853730639462],\n              [-60.142044988228776, 5.238853730639462],\n              [-60.106042789589779, 5.19430416839316],\n              [-60.078148501416322, 5.143898893032841],\n              [-59.990620421905518, 5.082924769613115],\n              [-59.999398498412248, 4.989782676216279],\n              [-60.015372620115372, 4.907429157449741],\n              [-60.026842347115405, 4.812705032742556],\n              [-60.031797181288781, 4.740480908893673],\n              [-60.06891998543928, 4.666674753734441],\n              [-60.124499821543864, 4.597603706177708],\n              [-60.140924382717287, 4.569698431675718],\n              [-60.148570867383981, 4.533256779894955],\n              [-60.111217350334044, 4.511207218506954],\n              [-60.045068666170053, 4.504681339351762],\n              [-59.962275694261749, 4.501747989630488],\n              [-59.906025692115989, 4.480379580612222],\n              [-59.833340142468245, 4.475875185909146],\n              [-59.745823049285988, 4.416702820370645],\n              [-59.7032949714918, 4.381151061201948],\n              [-59.699691455729337, 4.353476499599381],\n              [-59.72759673023134, 4.287547542006266],\n              [-59.738616017761061, 4.226804131485963],\n              [-59.716797169272496, 4.188099296025115],\n              [-59.69114409212203, 4.160424734422534],\n              [-59.620271286684073, 4.023172531921148],\n              [-59.586521285396614, 3.975480879711242],\n              [-59.557715131953998, 3.959957197478431],\n              [-59.55120023912734, 3.933622967958229],\n              [-59.575491011538332, 3.883448405497347],\n              [-59.604516891551839, 3.819782631584317],\n              [-59.670215136245531, 3.752733068479714],\n              [-59.67899321275226, 3.699855869196981],\n              [-59.731650685464103, 3.666556307379821],\n              [-59.854499811244182, 3.587575591476323],\n              [-59.833120415897369, 3.462254541773831],\n              [-59.828846734093716, 3.398577781532254],\n              [-59.831098931445254, 3.349304098011984],\n              [-59.87294585686972, 3.283155413847993],\n              [-59.945620420188902, 3.087851451319608],\n              [-59.97239410285087, 2.990424689790572],\n              [-59.995794982649784, 2.765424681207506],\n              [-59.994443664238858, 2.690047481066472],\n              [-59.9606936629514, 2.58835802406233],\n              [-59.889590144614019, 2.362907576008951],\n              [-59.849094537600479, 2.32712510394083],\n              [-59.755271291833907, 2.274028178087221],\n              [-59.74357085193445, 2.121702732823337],\n              [-59.751667776071443, 1.962400968933963],\n              [-59.756172170774533, 1.900525966573611],\n              [-59.740648488541723, 1.874202723381956],\n              [-59.698570850217834, 1.861381677970996],\n              [-59.668424364692839, 1.842254479975736],\n              [-59.663700243418873, 1.795232993807005],\n              [-59.6666226068116, 1.746179036857626],\n              [-59.596650680314269, 1.718054035784732],\n              [-59.535665570565996, 1.70004744330096],\n              [-59.479415568420222, 1.632327714155167],\n              [-59.377715125087533, 1.527254467959438],\n              [-59.337219518074008, 1.508127269964163],\n              [-59.316971714567231, 1.464698313229363],\n              [-59.231245392937666, 1.376049628207056],\n              [-59.100299343020595, 1.343650945330523],\n              [-58.968441427834364, 1.304506656727909],\n              [-58.966419943382249, 1.302474185947247],\n              [-58.868773455282323, 0.224275902629742]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 3874, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-66.828599198378711, -9.838168328878282],\n              [-69.806465522912788, -8.454198549521536],\n              [-70.373250212502668, -8.155172659208347],\n              [-72.66352617877601, -7.592672637750681],\n              [-73.796842872399239, -7.116788830534645],\n              [-73.804720069965356, -7.079896739283569],\n              [-73.776375342321586, -6.973483161005475],\n              [-73.758149023266924, -6.905741459202574],\n              [-73.694472263025361, -6.83373706192458],\n              [-73.499849452866712, -6.679401118537129],\n              [-73.325474446214827, -6.574767325483165],\n              [-73.240418290626451, -6.563978750852868],\n              [-73.17742268275461, -6.525262929063473],\n              [-73.137366528882836, -6.465870836954096],\n              [-73.126347241353102, -6.40085374463014],\n              [-73.135345044430721, -6.34436204325641],\n              [-73.167743727307254, -6.260668192407493],\n              [-73.206448562768102, -6.156495825152376],\n              [-73.235474442781609, -6.098444065125378],\n              [-73.20937092616083, -6.028702851527456],\n              [-73.162799879462412, -5.933297574450535],\n              [-73.068075754755228, -5.789530479122504],\n              [-72.979866522874687, -5.634952836507097],\n              [-72.970198553755878, -5.58973310821959],\n              [-72.958948553326721, -5.495228710083282],\n              [-72.918222233413772, -5.302616398048215],\n              [-72.895722232555457, -5.198224304222222],\n              [-72.907422672454928, -5.157728697208682],\n              [-72.887174868948151, -5.122858090409721],\n              [-72.832045472313879, -5.093832210396229],\n              [-72.698616512145847, -5.067267267976604],\n              [-72.608396782141739, -5.009676933748452],\n              [-72.468892382288814, -4.901219898361148],\n              [-72.352799848563365, -4.786017257247764],\n              [-72.256724405445254, -4.748905439425812],\n              [-72.082569125364259, -4.642250161919733],\n              [-71.982450713341919, -4.57453043277394],\n              [-71.943075711839882, -4.553370763998004],\n              [-71.844748071370233, -4.504327793377172],\n              [-71.668340593937685, -4.48723306616256],\n              [-71.521420422317505, -4.469676913149087],\n              [-71.438166024610354, -4.437486970514897],\n              [-71.316898930140624, -4.424215485633624],\n              [-71.234995850844399, -4.388224273323175],\n              [-71.144325681369978, -4.387323394382548],\n              [-70.973773917051446, -4.350431303131487],\n              [-70.915722157024447, -4.295301906497215],\n              [-70.865998034033879, -4.229603661803523],\n              [-70.79961863697045, -4.173353659657764],\n              [-70.721549786336112, -4.158939596607908],\n              [-70.634472146295607, -4.168629538383797],\n              [-70.530750218510818, -4.167486960215214],\n              [-70.404748016438589, -4.150172506429712],\n              [-70.343543180119426, -4.193590476835979],\n              [-70.317000210356895, -4.246918115589011],\n              [-70.239151086293433, -4.30114663328267],\n              [-70.184021689659161, -4.298224269889943],\n              [-70.128892293024904, -4.286512843661939],\n              [-70.05329536631298, -4.333094876688904],\n              [-70.004021682792711, -4.327250149903449],\n              [-69.972073439386477, -4.30114663328267],\n              [-69.965997999701599, -4.235887841730744],\n              [-69.948222120117251, -4.200577781790031],\n              [-69.911099315966752, -3.996495742754917],\n              [-69.849674753076712, -3.659896608820929],\n              [-69.794094916972142, -3.354564565923425],\n              [-69.732670354082103, -3.01662509990706],\n              [-69.668993593840526, -2.667655360032427],\n              [-69.604646667557759, -2.314181225454703],\n              [-69.55176946827504, -2.024142151890601],\n              [-69.506549739987534, -1.77484038456798],\n              [-69.47864446548553, -1.622064499833797],\n              [-69.434995782179854, -1.421607949218242],\n              [-69.417901054965242, -1.245650911256007],\n              [-69.400344901951769, -1.195025909324826],\n              [-69.411375175810036, -1.152267118631201],\n              [-69.449168146001725, -1.091512721782351],\n              [-69.448717706531426, -1.06496975201982],\n              [-69.444444024727773, -1.029637719422013],\n              [-69.448717706531426, -0.998832054184362],\n              [-69.488323420932886, -0.96574123260956],\n              [-69.519370785398493, -0.945724142002206],\n              [-69.54344183123861, -0.91713771513048],\n              [-69.554691831667768, -0.877323260486676],\n              [-69.574500182032764, -0.837728532413763],\n              [-69.583267272210961, -0.79587062066075],\n              [-69.611842712754154, -0.762801771743028],\n              [-69.620620789260883, -0.72094385999003],\n              [-69.600823425224419, -0.681349131917102],\n              [-69.59204534871769, -0.639271493593228],\n              [-69.600823425224419, -0.5996767655203],\n              [-69.611842712754154, -0.553314459064225],\n              [-69.633892274142141, -0.509215336288221],\n              [-69.667422548858724, -0.482452639954801],\n              [-69.747523870273724, -0.452525881000696],\n              [-69.827844918259601, -0.381422362663301],\n              [-69.922799755866222, -0.317525875850848],\n              [-70.044066850335938, -0.196236808724038],\n              [-70.070620806427016, -0.138866201066776],\n              [-70.070840532997906, 0.018622818612826],\n              [-70.065665972253626, 0.189405295830795],\n              [-70.058019487586947, 0.447254426760708],\n              [-70.053965532354169, 0.578650916148078],\n              [-69.98534492426775, 0.585857947673006],\n              [-69.925040966889213, 0.589450477106922],\n              [-69.862045359017372, 0.598448280184542],\n              [-69.807146675282524, 0.607457069590694],\n              [-69.75674139992222, 0.626353554686546],\n              [-69.718948429730531, 0.649754434485459],\n              [-69.673717715114492, 0.665047403818846],\n              [-69.638616395416108, 0.659653116503691],\n              [-69.603526062046271, 0.680351359480767],\n              [-69.564821226585423, 0.700148723517231],\n              [-69.527017270065187, 0.716353558119778],\n              [-69.472118586330339, 0.729855755900459],\n              [-69.420823418357969, 0.698357951964539],\n              [-69.392017264915353, 0.666849161700071],\n              [-69.358717703098193, 0.651556192366698],\n              [-69.327219899162273, 0.655148721800614],\n              [-69.305620777244584, 0.65245707130731],\n              [-69.283120776386269, 0.627254433627158],\n              [-69.254094896372777, 0.625452675745933],\n              [-69.212698410418625, 0.629957070449009],\n              [-69.173993574957777, 0.635351357764151],\n              [-69.155997968802552, 0.642547402960545],\n              [-69.153295331980701, 0.658752237563078],\n              [-69.163194013998933, 0.686657512065082],\n              [-69.176696211779628, 0.712750042357314],\n              [-69.165896650820784, 0.753256635699387],\n              [-69.164995771880157, 0.801849166849919],\n              [-69.163194013998933, 0.863954882109695],\n              [-69.19379093899424, 0.898375049438343],\n              [-69.224398850318082, 0.963172415191409],\n              [-69.258599291075853, 1.015379448432952],\n              [-69.311915943500352, 1.050480768131337],\n              [-69.361420339920045, 1.063982965912032],\n              [-69.402816825874197, 1.042372857665796],\n              [-69.441521661335045, 1.03878032823188],\n              [-69.470316828449114, 1.058577692268329],\n              [-69.517118588046955, 1.059478571208956],\n              [-69.567523863407274, 1.065773737464724],\n              [-69.620840515831759, 1.073200495560528],\n              [-69.716915958949869, 1.059028131738643],\n              [-69.751347112607064, 1.076573298423568],\n              [-69.798148872204919, 1.078375056304793],\n              [-69.852146676999141, 1.059478571208956],\n              [-69.850795358588215, 1.308780338531562],\n              [-69.849444040177289, 1.543898755703736],\n              [-69.848543161236677, 1.708825519807704],\n              [-69.799950630086144, 1.705232990373773],\n              [-69.739646672707607, 1.734929036428468],\n              [-69.650097108744689, 1.739422444802997],\n              [-69.581245787758846, 1.770700522168042],\n              [-69.542991391768297, 1.773172446090456],\n              [-69.470097101878224, 1.757879476757083],\n              [-69.394269462266891, 1.725700520451426],\n              [-69.319793141066469, 1.721207112076897],\n              [-69.124269451967209, 1.721207112076897],\n              [-68.913222080635137, 1.721426838647773],\n              [-68.678543116604715, 1.721426838647773],\n              [-68.443424699432541, 1.721657551547196],\n              [-68.239573373296849, 1.721657551547196],\n              [-68.176566779096461, 1.719855793665971],\n              [-68.213250130105195, 1.774523764501382],\n              [-68.255997934470273, 1.845407556267887],\n              [-68.239342660397426, 1.901426845514223],\n              [-68.218424690849474, 1.957676847659997],\n              [-68.193892219210497, 1.986922454244379],\n              [-68.130215458968934, 1.955875089778772],\n              [-68.077118533115311, 1.860030359560085],\n              [-68.032799683768431, 1.788025962282077],\n              [-67.98982116650393, 1.75247420311338],\n              [-67.936273801180022, 1.748431234209164],\n              [-67.875519404331172, 1.760582113578934],\n              [-67.814995720381745, 1.790047446734192],\n              [-67.71194395863813, 1.922125088491299],\n              [-67.609122909793953, 2.035075532253146],\n              [-67.556025983940344, 2.073099215344257],\n              [-67.499545268895147, 2.107980808471765],\n              [-67.457698343470682, 2.121252293353024],\n              [-67.400547462384296, 2.116747898649948],\n              [-67.35194394490523, 2.085931247083764],\n              [-67.320665867540185, 2.032153168860418],\n              [-67.205924652225661, 1.84472640389815],\n              [-67.11929745165547, 1.703650959063424],\n              [-67.09004085874254, 1.615672440082307],\n              [-67.088250087189849, 1.400582099846019],\n              [-67.093644374505004, 1.210002258591601],\n              [-67.082174647504971, 1.185480773281185],\n              [-67.065299646861234, 1.178273741756257],\n              [-66.876071124017741, 1.223054016901983],\n              [-66.619122872028441, 0.992198295204915],\n              [-66.429224183143759, 0.821657517214916],\n              [-66.347090390948111, 0.767198286621849],\n              [-66.301650936089729, 0.751905317288461],\n              [-66.191172416250311, 0.763375044288495],\n              [-66.059995653433816, 0.785424605676496],\n              [-65.996318893192239, 0.809726364416036],\n              [-65.92589652722458, 0.863054003169069],\n              [-65.811375038480932, 0.937299611470067],\n              [-65.718221958755549, 0.97802593138303],\n              [-65.681549594075364, 0.983431205026719],\n              [-65.64464651649574, 0.970379446716336],\n              [-65.566116240062556, 0.926049611040909],\n              [-65.522917996227179, 0.843476365703495],\n              [-65.562743437199515, 0.747400922585385],\n              [-65.555997831473448, 0.687997844147461],\n              [-65.473424586136019, 0.691150920439611],\n              [-65.407275901972028, 0.790379439849886],\n              [-65.360924581844486, 0.868679003383647],\n              [-65.263948259785764, 0.931905324154911],\n              [-65.169674574548878, 1.022125054159034],\n              [-65.103745616955763, 1.108082088688022],\n              [-65.02656665893349, 1.158476377719794],\n              [-64.910023685737741, 1.219681214038943],\n              [-64.817991211523847, 1.257023744760332],\n              [-64.731594723853092, 1.253431215326401],\n              [-64.667467524141202, 1.293926822339941],\n              [-64.584443839333474, 1.369974188522164],\n              [-64.5261723527356, 1.430948311941904],\n              [-64.486116198863826, 1.452778146759016],\n              [-64.405124984836746, 1.446922433645014],\n              [-64.304094707545261, 1.45525007068143],\n              [-64.205096901034409, 1.529506665310976],\n              [-64.114866184701754, 1.61927595584477],\n              [-64.06694381959241, 1.770480795597152],\n              [-64.03544601565649, 1.904349208906964],\n              [-64.008441620095113, 1.931573331039232],\n              [-63.97582321064769, 1.95295272638603],\n              [-63.937118375186841, 1.966905363637039],\n              [-63.844415734931772, 1.976804045655271],\n              [-63.682191607649656, 2.048127290563528],\n              [-63.57037275572786, 2.120582127311835],\n              [-63.463948191121204, 2.136105809544645],\n              [-63.432450387185284, 2.155452734110796],\n              [-63.393965278295326, 2.222502297215414],\n              [-63.393745551724436, 2.224073342197215],\n              [-63.306448185113055, 2.16625229506964],\n              [-63.150068784616408, 2.179754492850336],\n              [-63.123295101954454, 2.112704929745718],\n              [-63.002698173525914, 2.018881683979146],\n              [-62.846549485928691, 2.018881683979146],\n              [-62.708165691587268, 1.947547452742342],\n              [-62.690400798331467, 1.911775967002768],\n              [-62.730445965874694, 1.831454919016892],\n              [-62.712670086290345, 1.73763167325032],\n              [-62.788497725901692, 1.603752273611974],\n              [-62.721448162797074, 1.49665754296413],\n              [-62.623340248898316, 1.416325508649706],\n              [-62.614342445820697, 1.362778143325784],\n              [-62.516245518250471, 1.059247858309519],\n              [-62.511741123547395, 0.960931204168418],\n              [-62.444691560442777, 0.804782516571194],\n              [-62.53402139783482, 0.7332285587635],\n              [-62.538525792537897, 0.675176798736501],\n              [-62.484967440885427, 0.541297399098156],\n              [-62.489471835588503, 0.487750033774233],\n              [-62.52951700313173, 0.429698273747235],\n              [-62.53402139783482, 0.313605740021785],\n              [-62.569792883574394, 0.246556176917167],\n              [-62.565299475199851, 0.17523293200891],\n              [-62.525023594757201, 0.094900897694487],\n              [-62.578790686651999, 0.018853531512249],\n              [-62.569792883574394, -0.047965318692931],\n              [-62.511741123547395, -0.123792958304278],\n              [-62.475969637807822, -0.222120598773927],\n              [-62.404646392899551, -0.271163569394773],\n              [-62.373368315534506, -0.342728513531],\n              [-62.368874907159977, -0.467599123763193],\n              [-62.319820950210598, -0.521146489087116],\n              [-62.310823147132979, -0.641754403844189],\n              [-62.377872710237597, -0.717582043455536],\n              [-62.475969637807822, -0.695301769168111],\n              [-62.507247715172852, -0.771129408779444],\n              [-62.417917877780823, -0.829181168806457],\n              [-62.315316555507508, -0.945262716203359],\n              [-62.243773584028361, -0.981056174600027],\n              [-62.203717430156601, -1.043590356673008],\n              [-62.141172261755059, -1.065870630960433],\n              [-62.029573136404139, -1.146202665274856],\n              [-61.935749890637567, -1.244530305744519],\n              [-61.877698130610568, -1.369400915976698],\n              [-61.880840220574186, -1.389198280013161],\n              [-61.798497688136194, -1.388736854214301],\n              [-61.717275761209692, -1.401129432812041],\n              [-61.619848999680656, -1.449491251063151],\n              [-61.618948120740043, -1.275797396781002],\n              [-61.574167845594303, -1.14169827057178],\n              [-61.560896360713045, -1.021332055042677],\n              [-61.578672240297394, -0.945262716203359],\n              [-61.534122678051077, -0.726568860204608],\n              [-61.458075311868853, -0.637250009141113],\n              [-61.243874864244631, -0.547931158077617],\n              [-61.221594589957206, -0.498866214799691],\n              [-61.105491069903209, -0.4943618200966],\n              [-61.060721781086016, -0.530155278493268],\n              [-60.931346776150761, -0.556917974826689],\n              [-60.904573093488793, -0.610465340150597],\n              [-60.815243256096764, -0.686292979761944],\n              [-60.734922208110873, -0.851681169664758],\n              [-60.641098962344302, -0.86044825984294],\n              [-60.516217365783575, -0.829181168806457],\n              [-60.467174395162729, -0.740082044313837],\n              [-60.337568677328051, -0.704288585917183],\n              [-60.306290599963006, -0.673021494880686],\n              [-60.315299389369159, -0.619474129556764],\n              [-60.391116042651959, -0.521146489087116],\n              [-60.38662263427743, -0.463094729060117],\n              [-60.315299389369159, -0.306957027791427],\n              [-60.310794994666082, -0.235392083655199],\n              [-60.252743234639084, -0.15057762729478],\n              [-60.21697174889951, -0.043482896646935],\n              [-60.167917791950131, 0.005582046630991],\n              [-60.127872624406905, 0.13067238343406],\n              [-60.025040589234166, 0.224275902629742],\n              [-59.770575247495842, 0.228780297332833],\n              [-58.868773455282323, 0.224275902629742],\n              [-58.850997575697988, -0.083736804432505],\n              [-58.86449977347867, -0.173077628153081],\n              [-58.855490984072517, -0.351495603709196],\n              [-58.739398450347068, -0.432047364594496],\n              [-58.748396253424673, -0.62397852425984],\n              [-58.703615978278947, -0.695301769168111],\n              [-58.627799324996147, -0.766844740647258],\n              [-58.569747564969148, -0.762340345944182],\n              [-58.440372560033893, -0.86044825984294],\n              [-58.39109887651361, -1.048094751376084],\n              [-58.315271236902262, -1.119417996284355],\n              [-58.252715082172188, -1.128426785690522],\n              [-58.159122549305039, -1.235521516338338],\n              [-58.083075183122816, -1.298077671068427],\n              [-57.980473860849543, -1.34712064168923],\n              [-57.900141826535105, -1.422948281300592],\n              [-57.828598855055944, -1.445228555588045],\n              [-57.654674287874371, -1.588094771975463],\n              [-57.565344450482328, -1.623866257715036],\n              [-57.449240930428331, -1.690926807148188],\n              [-57.337641805077411, -1.730982961019961],\n              [-57.275096636675883, -1.713207081435613],\n              [-57.248322954013915, -1.757745657353368],\n              [-57.167990919699491, -1.771236868805516],\n              [-57.087669871713615, -1.81129302267729],\n              [-57.007348823727739, -1.936405332137454],\n              [-56.824195740569124, -2.034491273379132],\n              [-56.743874692583248, -2.052486879534356],\n              [-56.748368100957777, -2.17737946242363],\n              [-56.63676897560687, -2.222137764912276],\n              [-56.498396167593981, -2.159603582839281],\n              [-56.484893969813299, -2.248922433902749],\n              [-56.400969406064945, -2.336219800514158],\n              [-56.391070724046713, -2.391788650290195],\n              [-56.75714617746452, -3.186495711855869],\n              [-58.292990962614851, -6.49893968587179],\n              [-58.374443602440763, -6.57050463000806],\n              [-58.436769044271415, -6.675797602774665],\n              [-58.455445802796376, -6.793922607280777],\n              [-58.385924315769344, -6.949181402265936],\n              [-58.228424309761195, -7.141552015073032],\n              [-58.146290517565546, -7.263500261912498],\n              [-58.136622548446738, -7.338207296012342],\n              [-58.201870353670117, -7.414474388765456],\n              [-58.223700188487229, -7.484677028162224],\n              [-58.223919915058119, -7.574677031595442],\n              [-58.259471674226816, -7.67322439863598],\n              [-58.330344479664774, -7.780099402712935],\n              [-58.353525632892811, -7.905870891885741],\n              [-58.328773434682958, -8.050538866154383],\n              [-58.354415525504876, -8.27600030053631],\n              [-58.397174316198502, -8.415504700389221],\n              [-58.426650635682307, -8.523038884178831],\n              [-58.471650637398923, -8.690888011675511],\n              [-58.547467290681723, -8.74893977170251],\n              [-61.609950317662424, -8.766715651286859],\n              [-61.609950317662424, -8.722177075369103],\n              [-61.717045048310268, -8.68640558962953],\n              [-61.761825323455994, -8.72668147007218],\n              [-61.837641976738794, -8.744457349656528],\n              [-61.873424448806915, -8.856056475007449],\n              [-61.917974011053218, -8.873832354591784],\n              [-61.998295059039108, -8.811495926432599],\n              [-62.13217445867744, -8.766715651286859],\n              [-62.172450339120104, -8.610577950018182],\n              [-62.306318752429902, -8.570302069575533],\n              [-62.373368315534506, -8.382875304613265],\n              [-62.45370034984893, -8.347103818873691],\n              [-62.538525792537897, -8.36059503032584],\n              [-62.556290685793698, -8.289052058846693],\n              [-62.636622720108122, -8.222233208641498],\n              [-62.676898600550771, -8.114896778765697],\n              [-62.721448162797074, -8.061349413441775],\n              [-62.828773606344342, -8.016788864866925],\n              [-62.904590259627142, -8.007802048117853],\n              [-63.538424512321626, -7.9987932587117],\n              [-63.587698195841895, -8.079345019597],\n              [-63.591971877645548, -8.164181448614499],\n              [-63.72607100385477, -8.19094414494792],\n              [-63.752844686516738, -8.284547664143616],\n              [-63.917991177191567, -8.333832333992419],\n              [-63.993818816802914, -8.440927064640263],\n              [-63.922495571894657, -8.534530583835959],\n              [-63.998323211505991, -8.681901194926454],\n              [-64.074150851117338, -8.713168285962936],\n              [-64.12769821644126, -8.68640558962953],\n              [-64.118920139934531, -8.936366536664778],\n              [-64.217017067504756, -8.949879720774021],\n              [-64.382174544508132, -8.940870931367854],\n              [-64.417946030247705, -8.972138022404351],\n              [-64.475997790274718, -8.949879720774021],\n              [-64.596594718703244, -9.025707360385354],\n              [-64.69019823789894, -9.021202965682278],\n              [-64.779517088962422, -8.985431479942704],\n              [-64.886622805938813, -9.061478846124942],\n              [-64.926898686381463, -9.11953060615194],\n              [-64.904618412094038, -9.213112152690542],\n              [-65.038497811732384, -9.400780616880766],\n              [-65.092045177056306, -9.436332376049464],\n              [-65.172366225042182, -9.373995947890265],\n              [-65.199150894032684, -9.266681490671544],\n              [-65.221650894890999, -9.257892427836268],\n              [-65.418075462930872, -9.391771827474614],\n              [-65.444849145592826, -9.445319192798536],\n              [-65.525170193578717, -9.414052101762039],\n              [-65.632275910555094, -9.449823587501612],\n              [-65.676825472801397, -9.534638043862032],\n              [-65.766144323864893, -9.565927107555609],\n              [-65.931290814539736, -9.414052101762039],\n              [-65.998340377644354, -9.400780616880766],\n              [-66.105446094620731, -9.418556496465115],\n              [-66.395693908427177, -9.405043312355886],\n              [-66.404691711504796, -9.525651227112959],\n              [-66.502799625403568, -9.63274595776079],\n              [-66.59662287117014, -9.664013048797287],\n              [-66.694719798740365, -9.748849477814787],\n              [-66.743773755689745, -9.748849477814787],\n              [-66.828599198378711, -9.838168328878282]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 8074, \"fill\": \"#999\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-58.868773455282323, 0.224275902629742],\n              [-58.966419943382249, 1.302474185947247],\n              [-58.916695820391681, 1.248926820623353],\n              [-58.862467302698008, 1.203707092335833],\n              [-58.821740982785059, 1.2012241820849],\n              [-58.787320815456383, 1.208431213609913],\n              [-58.730400647269448, 1.247575502212442],\n              [-58.684719493183024, 1.281105776928996],\n              [-58.60506861123838, 1.279073306148348],\n              [-58.511915531513012, 1.284698306362941],\n              [-58.495721683239026, 1.312153141394674],\n              [-58.486943606732268, 1.347704900563258],\n              [-58.506070804727528, 1.438605782937259],\n              [-58.472990969481316, 1.466280344539769],\n              [-58.395822997787548, 1.481804026772636],\n              [-58.380299315554737, 1.530176831352151],\n              [-58.362743162541221, 1.556730787443371],\n              [-58.340693601153305, 1.58754743900937],\n              [-58.31415063139076, 1.592051833712503],\n              [-58.28107079614449, 1.574275954128211],\n              [-58.230445794213267, 1.563256666598477],\n              [-58.173075186555991, 1.547952710936613],\n              [-58.142247548661317, 1.516905346470935],\n              [-58.091391833830642, 1.514422436220059],\n              [-58.034691392214654, 1.520278149333876],\n              [-58.011740951885997, 1.539855786799592],\n              [-57.99509666414167, 1.574275954128211],\n              [-57.982715071872519, 1.648532548757714],\n              [-57.9462734200917, 1.650554033209858],\n              [-57.873368143873051, 1.667198320954185],\n              [-57.795749732709112, 1.70004744330106],\n              [-57.691797092024899, 1.704782550903417],\n              [-57.594370330495849, 1.704101398533737],\n              [-57.545766813016712, 1.726150959921654],\n              [-57.500547084729249, 1.773853598460107],\n              [-57.412799278647583, 1.908853603609998],\n              [-57.366898397990326, 1.940131680975128],\n              [-57.317394001570563, 1.963532560774013],\n              [-57.275547076146154, 1.959247892641883],\n              [-57.189590041617123, 1.981528166929309],\n              [-57.118947949078688, 2.013926849805898],\n              [-57.092624705887033, 2.005829925668877],\n              [-57.037495309252733, 1.936528165212735],\n              [-57.010040474221057, 1.921224209550701],\n              [-56.969544867207446, 1.916500088276791],\n              [-56.83679705940915, 1.881179042007489],\n              [-56.766374693441492, 1.892198329537223],\n              [-56.68986590146045, 1.914247890925139],\n              [-56.616521172100022, 1.922575527961612],\n              [-56.563643972817317, 1.907282558628253],\n              [-56.525400563155301, 1.927299649235522],\n              [-56.482872485361213, 1.942153165427158],\n              [-56.452945726407052, 1.932254483408883],\n              [-56.385896163302448, 1.923926846372581],\n              [-56.22704483888333, 1.885452723811113],\n              [-56.019820709884584, 1.842254479975736],\n              [-55.96333999483943, 1.857107996167372],\n              [-55.929589993551929, 1.887474208263313],\n              [-55.921723782314359, 1.976573332755947],\n              [-55.91541762973003, 2.039579926956264],\n              [-55.961999662757023, 2.095148776732287],\n              [-56.020040436455531, 2.158155370932775],\n              [-56.073598788108029, 2.236674661037284],\n              [-56.137715001491358, 2.258954935324823],\n              [-56.12939835078339, 2.29945054233832],\n              [-56.087771151929871, 2.341297467762729],\n              [-56.045023347564779, 2.364478620990781],\n              [-56.020271149354983, 2.392823348634579],\n              [-55.993497466692929, 2.497457141688471],\n              [-55.975490874209186, 2.515903187313995],\n              [-55.957495268054004, 2.520407582017128],\n              [-55.935896146136315, 2.516573353355284],\n              [-55.893818507812398, 2.489579944122454],\n              [-55.730473775018822, 2.406105819844413],\n              [-55.658919817211142, 2.41870713868434],\n              [-55.385316291148968, 2.440525987173032],\n              [-55.343919805194787, 2.488679065181771],\n              [-55.286098758067283, 2.499698352711505],\n              [-55.187771117597606, 2.547400991249958],\n              [-55.148846555565854, 2.55077379411307],\n              [-55.114195675337783, 2.53930406711288],\n              [-55.070316279132669, 2.548301870190642],\n              [-55.005749626279055, 2.593082145336382],\n              [-54.978745230717664, 2.59757555371084],\n              [-54.968396109229104, 2.548301870190642],\n              [-54.926549183804582, 2.497457141688471],\n              [-54.876143908444305, 2.45042466919125],\n              [-54.851622423133847, 2.439625108232349],\n              [-54.766796980444951, 2.454698350994931],\n              [-54.722247418198663, 2.441657579013167],\n              [-54.714820660102873, 2.425002304940222],\n              [-54.73484873703876, 2.416224228433464],\n              [-54.717072857454411, 2.264579935539416],\n              [-54.78839610236264, 2.130480809330038],\n              [-54.752844343193885, 2.081426852380673],\n              [-54.792900497065716, 2.010103607472502],\n              [-54.7616224197007, 1.969827727029838],\n              [-54.766115828075158, 1.898504482121496],\n              [-54.73484873703876, 1.773403158989879],\n              [-54.578700049441466, 1.782400962067584],\n              [-54.498368015127028, 1.746629476328053],\n              [-54.364499601817215, 1.760131674108663],\n              [-54.203615806617563, 1.657299638935967],\n              [-54.172348715580995, 1.657299638935967],\n              [-54.083249591088475, 1.541207105210503],\n              [-54.078745196385341, 1.505655346041749],\n              [-54.007191238577661, 1.523431225626041],\n              [-53.922365795888709, 1.460875070896009],\n              [-53.891098704852141, 1.407327705572129],\n              [-53.757219305213823, 1.394056220690743],\n              [-53.739443425629474, 1.434101388234183],\n              [-53.659122377643598, 1.420829903352796],\n              [-53.650124574566064, 1.362778143325841],\n              [-53.556290342470902, 1.367282538028917],\n              [-53.538525449215058, 1.2421812148973],\n              [-53.440197808745438, 1.259957094481592],\n              [-53.408919731380422, 1.184129454870344],\n              [-53.466971491407435, 1.152851377505215],\n              [-53.41791753445807, 0.94315532458404],\n              [-53.266273241563908, 0.782282515712836],\n              [-53.132174115354644, 0.751004438347934],\n              [-53.114398235770352, 0.719957073882256],\n              [-53.141171918432292, 0.536803990723683],\n              [-53.127669720651625, 0.384928984930184],\n              [-53.042844277962672, 0.246556176917181],\n              [-53.007292518793975, 0.134957051566346],\n              [-53.016070595300675, 0.054625017251851],\n              [-52.976025427757463, -0.016698227656377],\n              [-52.913469273027374, -0.190853507737359],\n              [-52.828643830338422, -0.181844718331263],\n              [-52.699268825403124, -0.302452633088365],\n              [-52.627714867595444, -0.396275878854851],\n              [-52.63221926229852, -0.556917974826604],\n              [-52.605445579636523, -0.610465340150597],\n              [-52.525124531650647, -0.646236825890128],\n              [-52.507348652066355, -0.731073254907699],\n              [-52.516115742244551, -0.873939471295046],\n              [-52.400023208519087, -0.869457049249036],\n              [-52.368745131153958, -0.923004414573029],\n              [-52.39124513201233, -0.954271505609483],\n              [-52.359967054647313, -1.070375025663452],\n              [-52.239370126218773, -1.146202665274814],\n              [-52.132275395570957, -1.15070705997789],\n              [-52.051943361256519, -1.177469756311268],\n              [-51.984893798151859, -1.141698270571794],\n              [-51.888148188992545, -1.160375029096713],\n              [-51.921667477380652, -1.180853545502885],\n              [-51.934499509120144, -1.320357945355852],\n              [-51.980839842919124, -1.368038611237182],\n              [-52.020445557320613, -1.39910794835987],\n              [-52.229240731301161, -1.362413611022589],\n              [-52.553469259294388, -1.514068890245312],\n              [-52.664167505704711, -1.551642133866153],\n              [-52.31024293165666, -1.559530317760732],\n              [-52.196622321853681, -1.64008207864606],\n              [-51.947540281101965, -1.586754439893014],\n              [-51.646273179765785, -1.394361854428894],\n              [-51.531290265223333, -1.354107946643353],\n              [-51.297292453562591, -1.223590363539415],\n              [-51.202348602284587, -1.136512723498981],\n              [-51.028874474573229, -1.032120629672988],\n              [-50.99197139699362, -0.986219749015731],\n              [-50.894995074934968, -0.937616231536595],\n              [-50.842348588551602, -0.999491233896947],\n              [-50.838294633318867, -1.038866235398984],\n              [-50.917945515263568, -1.115155300809249],\n              [-50.89724727228645, -1.164417998000999],\n              [-50.844589799574635, -1.226293000361238],\n              [-50.825473587907936, -1.311349155949642],\n              [-50.818716995853265, -1.376146521702708],\n              [-50.786098586405842, -1.489986858076691],\n              [-50.678992869429521, -1.643905320979457],\n              [-50.675400339995576, -1.694750049481513],\n              [-50.690023143287704, -1.761788626257555],\n              [-50.638716988986857, -1.817137749462688],\n              [-50.585620063133149, -1.849986871809563],\n              [-50.403148132344256, -2.015594788283238],\n              [-50.260490656199295, -1.922892148028211],\n              [-50.172742850117572, -1.896129451694776],\n              [-50.116492847971813, -1.857413629905352],\n              [-49.999268722406327, -1.831771539083491],\n              [-49.902973552717242, -1.870707087443691],\n              [-49.719589756659275, -1.926275937219714],\n              [-49.58527090387912, -1.867103571681298],\n              [-49.313699848597707, -1.731642140732561],\n              [-49.398745017857493, -1.971495665507291],\n              [-49.460169580747561, -2.191551826245473],\n              [-49.506971340345444, -2.280189524939203],\n              [-49.553322660472929, -2.5198233231431],\n              [-49.599223541130186, -2.583939536526429],\n              [-49.636566071851519, -2.656844812744964],\n              [-49.575822661331244, -2.631422448493993],\n              [-49.52384634098911, -2.596771568265922],\n              [-49.457466943925681, -2.504530353809628],\n              [-49.407742820935141, -2.344327710979655],\n              [-49.211098526324349, -1.916607968100948],\n              [-49.15484852417859, -1.87857329868126],\n              [-48.991273078485619, -1.829750054631404],\n              [-48.710023067756765, -1.4877456470536],\n              [-48.599994987387618, -1.488646525994284],\n              [-48.529572621419959, -1.567396528998415],\n              [-48.462973497785697, -1.613978562025295],\n              [-48.445867784242466, -1.520375042829585],\n              [-48.349792341124385, -1.482120646839121],\n              [-48.451492784457059, -1.435780313040141],\n              [-48.468148058529948, -1.393922401287114],\n              [-48.477816027648714, -1.323719761890345],\n              [-48.408525253521134, -1.229215363754008],\n              [-48.449691026575863, -1.145521512905134],\n              [-48.306594097288951, -1.039767114339611],\n              [-48.317624371147247, -0.960577658193756],\n              [-48.266548929745738, -0.895099140071011],\n              [-48.201740577664111, -0.827818864066955],\n              [-48.128395848303796, -0.795189468291028],\n              [-48.115124363422524, -0.737599134062862],\n              [-48.068773043294982, -0.713736828465073],\n              [-48.032540131756605, -0.704969738286877],\n              [-47.960997160277429, -0.769547377469053],\n              [-47.883367762784758, -0.693280284716025],\n              [-47.807770836072905, -0.663573252332753],\n              [-47.773790121886066, -0.676844737214026],\n              [-47.731492756991315, -0.71037501193058],\n              [-47.687173907644365, -0.724767102323369],\n              [-47.651171709005439, -0.718702648966996],\n              [-47.557348463238782, -0.669879404917026],\n              [-47.470721262668633, -0.748629407921158],\n              [-47.418744942326441, -0.76594386170666],\n              [-47.432917306148397, -0.721844738930656],\n              [-47.460372141180073, -0.680887706118199],\n              [-47.438992745833275, -0.647599130629658],\n              [-47.398046699349436, -0.626681161081649],\n              [-47.268671694414138, -0.645357919606681],\n              [-47.200490539469513, -0.680448252976419],\n              [-47.126915097209633, -0.745465345300431],\n              [-47.02454448783584, -0.750189466574341],\n              [-46.944443166420854, -0.743443860848345],\n              [-46.893598437918683, -0.779896498957612],\n              [-46.811244919152273, -0.779676772386722],\n              [-46.769848433198092, -0.836607926902275],\n              [-46.644516397167081, -0.916478535417809],\n              [-46.617292275034742, -0.970707053111482],\n              [-46.516272984071861, -0.996788597075124],\n              [-46.421768585935524, -1.030099145220788],\n              [-46.320749294972529, -1.039107934626998],\n              [-46.219048851639855, -1.031219750732305],\n              [-46.214994896407063, -1.099840358818767],\n              [-46.14029884863578, -1.118297390772852],\n              [-46.044673844987983, -1.103004421439437],\n              [-46.007089615038637, -1.146861844987484],\n              [-46.141199727576407, -1.240025911041414],\n              [-46.158964620832137, -1.315853550652776],\n              [-46.123193135092549, -1.34712064168923],\n              [-46.199240501274801, -1.485504436030624],\n              [-46.181244895119619, -1.574823287094205],\n              [-46.199240501274801, -1.677413623038944],\n              [-46.243790063521089, -1.722193898184685],\n              [-46.315344021328883, -1.73098296101989],\n              [-46.301841823548159, -1.802525932499123],\n              [-46.217016380859263, -1.807030327202142],\n              [-46.212522972484635, -1.927396542731231],\n              [-46.279572535589239, -2.141827703254933],\n              [-46.377669463159521, -2.253426828605825],\n              [-46.413440948899051, -2.239913644496539],\n              [-46.408947540524537, -2.387306228244199],\n              [-46.435721223186533, -2.409564529874501],\n              [-46.426943146679776, -2.512396565047197],\n              [-46.484994906706731, -2.547948324215952],\n              [-46.507275180994213, -2.614986900991994],\n              [-46.600867713861305, -2.664051844269977],\n              [-46.667917276965966, -2.739879483881225],\n              [-46.574094031199365, -2.847193941099988],\n              [-46.650141397381617, -2.91401279130514],\n              [-46.636650185929511, -2.985577735441382],\n              [-46.667917276965966, -3.092672466089311],\n              [-46.743744916577327, -3.190780379988041],\n              [-46.824296677462542, -3.329142201672369],\n              [-46.859848436631296, -3.329142201672369],\n              [-46.944673879320192, -3.396202751105534],\n              [-46.966943167279112, -3.525797482611608],\n              [-47.029499322009201, -3.570358031186515],\n              [-47.024994927306068, -3.59712072751995],\n              [-47.065270807748732, -3.842599252509217],\n              [-47.28846905845063, -4.079288714663221],\n              [-47.310749332738055, -4.065797503211058],\n              [-47.333018620696976, -4.164125143680735],\n              [-47.382292304217231, -4.275724269031571],\n              [-47.458119943828592, -4.338280423761717],\n              [-47.489398021193608, -4.423094880122107],\n              [-47.583221266960209, -4.547965490354329],\n              [-47.65454451186838, -4.606017250381342],\n              [-47.801915122958917, -4.597030433632256],\n              [-48.252816019065619, -4.954327810543248],\n              [-48.730490597834375, -5.338168157216899],\n              [-48.721943234227098, -5.355043157860635],\n              [-48.721492794756784, -5.355724310230372],\n              [-48.721492794756784, -5.355944036801247],\n              [-48.597523063465246, -5.398702827494787],\n              [-48.51111558946593, -5.408151070042777],\n              [-48.421566025503012, -5.398483100923954],\n              [-48.356999372649341, -5.424344918316791],\n              [-48.31717393167699, -5.486219920677129],\n              [-48.275316019923991, -5.522452832215549],\n              [-48.231447610047439, -5.533241406845832],\n              [-48.192742774586577, -5.565431349480036],\n              [-48.159223486198584, -5.619198441374863],\n              [-48.181273047586529, -5.672064654329048],\n              [-48.258671732179693, -5.723590535200856],\n              [-48.280040141197958, -5.795814659049739],\n              [-48.24540024729842, -5.888517299304809],\n              [-48.254398050376039, -5.945228727249429],\n              [-48.307044536759349, -5.965926970226505],\n              [-48.321216900581248, -6.006642303810906],\n              [-48.296695415270818, -6.067396700659771],\n              [-48.319415142699995, -6.112396702376316],\n              [-48.389848494996187, -6.141862035531645],\n              [-48.413699814265414, -6.207340553654447],\n              [-48.391199813407098, -6.308832256744807],\n              [-48.410096298502964, -6.357655500794763],\n              [-48.470619982452376, -6.353370832662506],\n              [-48.527320424068449, -6.3722673177584],\n              [-48.579966910451759, -6.414125229511413],\n              [-48.622044548775648, -6.488590564383287],\n              [-48.652872186670379, -6.595707267688226],\n              [-48.805417358505139, -6.71831469424032],\n              [-49.079471324037627, -6.856237062782895],\n              [-49.209747207913466, -7.005651130982585],\n              [-49.195124404621282, -7.168556410634423],\n              [-49.239673966867599, -7.334823506820669],\n              [-49.340473531259647, -7.510099392413281],\n              [-49.333947652104456, -7.649142366467331],\n              [-49.220316055972887, -7.752194128210874],\n              [-49.172393690863544, -7.867396769324316],\n              [-49.189949843877002, -7.994970016378346],\n              [-49.226841935128078, -8.139418264076113],\n              [-49.282641497803553, -8.301422664787339],\n              [-49.378947653821115, -8.498297672297554],\n              [-49.502697658541763, -8.70866389125986],\n              [-49.612945465481772, -8.839181474363713],\n              [-49.707900303088365, -8.894970050710626],\n              [-49.829848549927817, -9.022103844622904],\n              [-49.979240645470441, -9.220099457644579],\n              [-50.08409416509528, -9.421918312999608],\n              [-50.175214774040001, -9.730172719289826],\n              [-50.234848565377348, -9.842672723581373],\n              [-51.297523166462042, -9.789125358257451],\n              [-55.092146113949809, -9.565927107555609],\n              [-56.462624681854408, -9.467599467085961],\n              [-56.489398364516376, -9.467599467085961],\n              [-56.67682512947863, -9.378280616022494],\n              [-56.770648375245202, -9.39627622217769],\n              [-56.837697938349834, -9.271163912717554],\n              [-56.926797062842439, -9.244401216384119],\n              [-57.047393991270965, -9.231129731502847],\n              [-57.074167673932948, -9.18634945635705],\n              [-57.083165477010539, -9.079254725709276],\n              [-57.100941356594888, -9.052470056718775],\n              [-57.297365924634761, -8.958646810952203],\n              [-57.480519007793376, -8.79350032027736],\n              [-57.578615935363601, -8.757948561108677],\n              [-57.641172090093676, -8.615082344721259],\n              [-57.650169893171295, -8.498978824667262],\n              [-57.681447970536325, -8.436422669937187],\n              [-57.641172090093676, -8.231000298819694],\n              [-57.779544898106565, -8.048077928560417],\n              [-57.895648418160548, -7.690780551649439],\n              [-57.94919578348447, -7.619457306741182],\n              [-57.980473860849543, -7.530116483020606],\n              [-58.060794908835419, -7.409530540920628],\n              [-58.136622548446738, -7.338207296012342],\n              [-58.146290517565546, -7.263500261912498],\n              [-58.228424309761195, -7.141552015073032],\n              [-58.385924315769344, -6.949181402265936],\n              [-58.455445802796376, -6.793922607280777],\n              [-58.436769044271415, -6.675797602774665],\n              [-58.374443602440763, -6.57050463000806],\n              [-58.292990962614851, -6.49893968587179],\n              [-56.75714617746452, -3.186495711855869],\n              [-56.391070724046713, -2.391788650290195],\n              [-56.400969406064945, -2.336219800514158],\n              [-56.484893969813299, -2.248922433902749],\n              [-56.498396167593981, -2.159603582839281],\n              [-56.63676897560687, -2.222137764912276],\n              [-56.748368100957777, -2.17737946242363],\n              [-56.743874692583248, -2.052486879534356],\n              [-56.824195740569124, -2.034491273379132],\n              [-57.007348823727739, -1.936405332137454],\n              [-57.087669871713615, -1.81129302267729],\n              [-57.167990919699491, -1.771236868805516],\n              [-57.248322954013915, -1.757745657353368],\n              [-57.275096636675883, -1.713207081435613],\n              [-57.337641805077411, -1.730982961019961],\n              [-57.449240930428331, -1.690926807148188],\n              [-57.565344450482328, -1.623866257715036],\n              [-57.654674287874371, -1.588094771975463],\n              [-57.828598855055944, -1.445228555588045],\n              [-57.900141826535105, -1.422948281300592],\n              [-57.980473860849543, -1.34712064168923],\n              [-58.083075183122816, -1.298077671068427],\n              [-58.159122549305039, -1.235521516338338],\n              [-58.252715082172188, -1.128426785690522],\n              [-58.315271236902262, -1.119417996284355],\n              [-58.39109887651361, -1.048094751376084],\n              [-58.440372560033893, -0.86044825984294],\n              [-58.569747564969148, -0.762340345944182],\n              [-58.627799324996147, -0.766844740647258],\n              [-58.703615978278947, -0.695301769168111],\n              [-58.748396253424673, -0.62397852425984],\n              [-58.739398450347068, -0.432047364594496],\n              [-58.855490984072517, -0.351495603709196],\n              [-58.86449977347867, -0.173077628153081],\n              [-58.850997575697988, -0.083736804432505],\n              [-58.868773455282323, 0.224275902629742]\n            ]\n          ],\n          [\n            [\n              [-51.424415261146351, -0.565926764232813],\n              [-51.254094209727157, -0.541405278922355],\n              [-51.160721403430955, -0.6667153422963],\n              [-51.276374484014639, -1.021771508184429],\n              [-51.310124485302083, -1.023792992636515],\n              [-51.465141581059243, -1.211219757598826],\n              [-51.637714829829918, -1.34195706727354],\n              [-51.664949938290761, -1.35476712635591],\n              [-51.832568352888018, -1.433736855930931],\n              [-51.938322751453427, -1.452655313683863],\n              [-51.801971427892624, -1.202452667420573],\n              [-51.68002318105323, -1.086129420795658],\n              [-51.679572741583002, -1.018629418220826],\n              [-51.678221423172033, -0.855042986199237],\n              [-51.546143781414855, -0.649620615081744],\n              [-51.424415261146351, -0.565926764232813]\n            ]\n          ],\n          [\n            [\n              [-48.444516465831612, -0.271844721764467],\n              [-48.392770858388872, -0.297267086015552],\n              [-48.379719100078489, -0.352857908448641],\n              [-48.428091904658174, -0.441495607142429],\n              [-48.46387437672621, -0.534879399767249],\n              [-48.497393665114316, -0.664913584415103],\n              [-48.523266468835629, -0.691478526834715],\n              [-48.566695425570458, -0.684491221880705],\n              [-48.539691030009067, -0.80105616773352],\n              [-48.549589712027341, -0.847616228103448],\n              [-48.57096910737414, -0.892857929048034],\n              [-48.624066033227791, -0.986900901385468],\n              [-48.704617794113062, -1.106607937201943],\n              [-48.728469113382289, -1.131788602225015],\n              [-48.7898936762723, -1.173426787407095],\n              [-48.839617799262896, -1.226512726932128],\n              [-48.829048951203447, -1.276478549150681],\n              [-48.804066040094142, -1.326861851853948],\n              [-48.833542359577962, -1.390099158953774],\n              [-48.928947636654925, -1.482340373410011],\n              [-48.985867804841803, -1.504620647697379],\n              [-49.038525277553731, -1.514068890245312],\n              [-49.086898082133416, -1.505082073496283],\n              [-49.172624403762882, -1.412599159812089],\n              [-49.18162220684053, -1.485043010231834],\n              [-49.204792373740077, -1.559068891961942],\n              [-49.234048966653006, -1.599564498975496],\n              [-49.344747213063272, -1.59530180350032],\n              [-49.406622215423624, -1.555465376199436],\n              [-49.506740627445993, -1.511607952651389],\n              [-49.52564809887042, -1.630392136870171],\n              [-49.587973540701, -1.712306202495029],\n              [-49.650518709102585, -1.73816801988778],\n              [-49.748846349572204, -1.755262747102392],\n              [-49.805096351717964, -1.790155326558363],\n              [-49.911290203425153, -1.762931204426195],\n              [-50.010068283365172, -1.708482960161632],\n              [-50.065648119469756, -1.703736866230599],\n              [-50.109296802775475, -1.747857961663669],\n              [-50.338339780262743, -1.755943899472072],\n              [-50.44342401278692, -1.800724174617812],\n              [-50.507540226170363, -1.78789214287832],\n              [-50.602044624306586, -1.697672412874226],\n              [-50.617117867069169, -1.63759916839507],\n              [-50.673367869214928, -1.516090374697455],\n              [-50.723773144575262, -1.371422400428798],\n              [-50.759775343214187, -1.240245637612304],\n              [-50.729398144789741, -1.126844754380102],\n              [-50.668424021370015, -1.130448270142608],\n              [-50.595969184621708, -1.14754299735722],\n              [-50.580445502388898, -1.139457059548818],\n              [-50.576841986626505, -1.103224148010327],\n              [-50.5928161083296, -1.072857935914499],\n              [-50.709589794424801, -1.077801783759355],\n              [-50.783395949583962, -1.01030178118441],\n              [-50.795997268424117, -0.906349140500197],\n              [-50.780924025661591, -0.689896495524408],\n              [-50.771464796785153, -0.645357919606681],\n              [-50.719949902241865, -0.583482917246329],\n              [-50.703074901598086, -0.528573247182862],\n              [-50.71589594700913, -0.470301760585016],\n              [-50.693615672721648, -0.364547362019607],\n              [-50.645473581041415, -0.272745600705093],\n              [-50.461650331841668, -0.157323233020861],\n              [-50.248339776829539, -0.116366200208404],\n              [-49.628699860614006, -0.229107903727936],\n              [-49.535096341418296, -0.233590325773889],\n              [-49.402798973090228, -0.214693840678137],\n              [-49.314370014638882, -0.167892081080254],\n              [-49.215141495228636, -0.158663565103154],\n              [-49.117044567658297, -0.163629385605191],\n              [-48.786520873409302, -0.215594719618707],\n              [-48.588074820917257, -0.231568841321803],\n              [-48.51540025759806, -0.248224115394692],\n              [-48.444516465831612, -0.271844721764467]\n            ]\n          ],\n          [\n            [\n              [-50.765169630529329, -0.040780259825112],\n              [-50.66707270295916, -0.058094713610558],\n              [-50.650648141785723, -0.105797352149011],\n              [-50.652900339137261, -0.131681142198886],\n              [-50.926273152299984, -0.327413571540546],\n              [-51.01896480622645, -0.26307763158627],\n              [-51.038092004221767, -0.22594384110721],\n              [-51.022348595418066, -0.188370597486426],\n              [-51.025721398281121, -0.172396475783273],\n              [-50.995124473285784, -0.105357899007231],\n              [-50.84211787565215, -0.050228502372988],\n              [-50.765169630529329, -0.040780259825112]\n            ]\n          ],\n          [\n            [\n              [-49.503367824582938, 0.083650897265329],\n              [-49.400546775738803, 0.057327654073731],\n              [-49.372421774665895, 0.001077651927972],\n              [-49.380969138273201, -0.055392076788678],\n              [-49.443964746145014, -0.112323231304231],\n              [-49.708790195700431, -0.143832021568699],\n              [-49.830068276498707, -0.093866199350146],\n              [-49.802624427795536, -0.051788561026285],\n              [-49.712393711462937, 0.015030289178867],\n              [-49.602145904522899, 0.06273292771732],\n              [-49.503367824582938, 0.083650897265329]\n            ]\n          ],\n          [\n            [\n              [-49.878891520548677, 0.304607936944308],\n              [-49.738266515184193, 0.26815529883487],\n              [-49.697320468700354, 0.215948265593283],\n              [-49.839066079576355, 0.006922378713398],\n              [-49.917145916539141, -0.023224106811597],\n              [-50.002421798698435, -0.02928856016797],\n              [-50.113120045108758, 0.033025895334163],\n              [-50.285693293879376, 0.028532486959705],\n              [-50.339471372102707, 0.043375016822665],\n              [-50.3450963723173, 0.134506612095947],\n              [-50.272641535568994, 0.231702660725603],\n              [-50.127973561300337, 0.226528099981408],\n              [-49.878891520548677, 0.304607936944308]\n            ]\n          ],\n          [\n            [\n              [-50.350941099102783, 0.5818039924402],\n              [-50.342624448394929, 0.381556182067072],\n              [-50.33227532690637, 0.258926782857827],\n              [-50.42609857267297, 0.139230733370027],\n              [-50.443874452257262, -0.007700424578843],\n              [-50.623874459123726, 0.054405290681018],\n              [-50.610372261343059, 0.204698265164097],\n              [-50.526216984695338, 0.247006616387409],\n              [-50.451520936923941, 0.326877224903058],\n              [-50.42609857267297, 0.424974152473396],\n              [-50.424516541362607, 0.558172399741864],\n              [-50.39684197976004, 0.581353552969972],\n              [-50.372770933919924, 0.590801795517962],\n              [-50.350941099102783, 0.5818039924402]\n            ]\n          ],\n          [\n            [\n              [-50.098716968387407, 0.625002236275577],\n              [-50.058891527415085, 0.63805399458596],\n              [-50.036841966027168, 0.594855750750639],\n              [-50.039995042319219, 0.522851353472561],\n              [-50.15294548608108, 0.393025909067035],\n              [-50.261391535139808, 0.359275907779647],\n              [-50.281650324975203, 0.390773711715553],\n              [-50.281650324975203, 0.516556187216906],\n              [-50.251273126550757, 0.58540750820282],\n              [-50.112900318537868, 0.604754432768857],\n              [-50.098716968387407, 0.625002236275577]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 2620, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-50.96429683539111, -19.511366940069024],\n              [-50.997596397208241, -19.663923098232331],\n              [-50.99377315487493, -20.101552509457804],\n              [-51.063964807943137, -20.223039330498423],\n              [-51.160721403430983, -20.306513454776464],\n              [-51.396971412443207, -20.441755159154269],\n              [-51.534223614944608, -20.55761697998031],\n              [-51.593165267583686, -20.666513468509322],\n              [-51.619049057633561, -20.806918747302916],\n              [-51.691943347523647, -20.943720510334003],\n              [-51.811419670440642, -21.077138484173474],\n              [-51.866318354175519, -21.18267315616805],\n              [-51.856650385056696, -21.260082827089718],\n              [-51.872844233330682, -21.32982404068764],\n              [-51.936290280672836, -21.422746407513614],\n              [-51.954747312626921, -21.469548167111469],\n              [-51.989848632325305, -21.493630199280119],\n              [-52.047669679452866, -21.510944653065621],\n              [-52.072641604233596, -21.554142896900998],\n              [-52.064995119566902, -21.622763504987418],\n              [-52.12259644012363, -21.718168782064367],\n              [-52.245665292474555, -21.840358728131761],\n              [-52.338818372199967, -21.957341154469304],\n              [-52.402495132441516, -22.069181979048096],\n              [-52.566070578134543, -22.207324074161647],\n              [-52.960721472095528, -22.454824083603015],\n              [-53.116199993651563, -22.639987664885183],\n              [-53.272348681248786, -22.752048216034964],\n              [-53.480693415759006, -22.852397340956728],\n              [-53.619967102712508, -23.001130256786681],\n              [-53.677348696698317, -23.173483778986451],\n              [-53.771171942464889, -23.322194722159324],\n              [-53.907523266025649, -23.407031151176824],\n              [-53.995490798678219, -23.570156157399552],\n              [-54.050169755842191, -23.822819741256652],\n              [-54.124646077042598, -23.978517989383576],\n              [-54.242540368649287, -24.046918870899106],\n              [-54.370794768073054, -23.971091231287758],\n              [-54.440316255100086, -23.901789470831602],\n              [-54.529646092492129, -23.852065347841034],\n              [-54.625490822710816, -23.812470619768121],\n              [-54.671842142838358, -23.829125893840967],\n              [-54.72134653925805, -23.852065347841034],\n              [-54.817191269476737, -23.888517985950344],\n              [-54.926549183804653, -23.951293867251295],\n              [-54.982568473051003, -23.974475020479346],\n              [-55.081796992461264, -23.997656173707384],\n              [-55.194296996752797, -24.017453537743847],\n              [-55.286999637007881, -24.004401779433451],\n              [-55.366419806053145, -23.991130294552192],\n              [-55.415924202472837, -23.951293867251295],\n              [-55.442467172235368, -23.865358805379387],\n              [-55.442467172235368, -23.792673255731657],\n              [-55.458891733408791, -23.686699130595315],\n              [-55.518525524746138, -23.627307038485938],\n              [-55.538322888782602, -23.580944732029849],\n              [-55.541695691645629, -23.524694729884089],\n              [-55.534950085919562, -23.461918848583124],\n              [-55.518525524746138, -23.41557851478413],\n              [-55.52842420676437, -23.359328512638371],\n              [-55.554747449956025, -23.319733784565443],\n              [-55.54822157080082, -23.250190324881331],\n              [-55.561493055682092, -23.154345594662644],\n              [-55.601098770083553, -23.094733775982377],\n              [-55.620896134120017, -23.02519031629825],\n              [-55.620896134120017, -22.955888555842108],\n              [-55.650822893074135, -22.886367068815062],\n              [-55.653964983037739, -22.810319702632839],\n              [-55.627641739846084, -22.741017942176683],\n              [-55.617743057827866, -22.671496455149651],\n              [-55.647450090211095, -22.621772332159082],\n              [-55.703700092356854, -22.59206529977584],\n              [-55.746667623292822, -22.512656117059123],\n              [-55.753193502448013, -22.410043808457274],\n              [-55.799544822575541, -22.353793806311515],\n              [-55.849268945566124, -22.307673199083396],\n              [-55.905299221141007, -22.307673199083396],\n              [-55.991464995912352, -22.281130229320866],\n              [-56.067523348423123, -22.284492045855359],\n              [-56.189922034732888, -22.281130229320866],\n              [-56.245941323979224, -22.264694681818895],\n              [-56.275868082933343, -22.228242043709585],\n              [-56.351915449115566, -22.178517920719017],\n              [-56.394893966380067, -22.092582858847109],\n              [-56.4477711656628, -22.076147311345139],\n              [-56.523818531845023, -22.102470554536794],\n              [-56.550372487936102, -22.135539403454516],\n              [-56.580068533990783, -22.181901709910591],\n              [-56.632945733273516, -22.234767922864776],\n              [-56.702467220300548, -22.231625832901173],\n              [-56.775141783619745, -22.261332865284402],\n              [-56.844674256975324, -22.264694681818895],\n              [-56.93714618433097, -22.271220560974086],\n              [-57.02984882458604, -22.244897317782446],\n              [-57.142348828877573, -22.214970558828327],\n              [-57.23819355909626, -22.195173194791863],\n              [-57.330896199351344, -22.214970558828327],\n              [-57.393672080652294, -22.198315284755481],\n              [-57.476465052560599, -22.188647315636672],\n              [-57.568947966244792, -22.181901709910591],\n              [-57.641622529563989, -22.129013524299324],\n              [-57.721042698609253, -22.099328464573176],\n              [-57.764021215873754, -22.109216160262861],\n              [-57.820271218019514, -22.142306981837677],\n              [-57.879894023028328, -22.135539403454516],\n              [-57.955941389210551, -22.109216160262861],\n              [-57.98564842159378, -22.04644027896191],\n              [-57.979122542438589, -22.006625824318107],\n              [-57.962467268365742, -21.967031096245179],\n              [-57.932771222311047, -21.91078109409942],\n              [-57.94941551005536, -21.851147302762072],\n              [-57.942669904329279, -21.798281089807887],\n              [-57.92939841944802, -21.751918783351798],\n              [-57.9161159482382, -21.699052570397612],\n              [-57.926245343155855, -21.649548173977919],\n              [-57.92939841944802, -21.596681961023734],\n              [-57.936144025174087, -21.546957838033165],\n              [-57.946042707192319, -21.494069652421885],\n              [-57.906217266219969, -21.418022286239662],\n              [-57.873148417302247, -21.355026678367821],\n              [-57.893165507909586, -21.302138492756541],\n              [-57.886419902183519, -21.265927553875201],\n              [-57.860096658991864, -21.206293762537854],\n              [-57.827016823745595, -21.133630185547219],\n              [-57.830169900037745, -20.997949028027634],\n              [-57.860096658991864, -20.918517872653823],\n              [-57.892275615297521, -20.897138477307024],\n              [-57.90059226600539, -20.873078417795455],\n              [-57.884848857201703, -20.841789354101863],\n              [-57.901943584416316, -20.809401657553877],\n              [-57.908469463571507, -20.776332808636155],\n              [-57.891374736356894, -20.747526655193525],\n              [-57.915215069297588, -20.690375774107153],\n              [-57.962467268365742, -20.673720500034307],\n              [-57.979122542438589, -20.657306925189417],\n              [-57.995547103612012, -20.594531043888466],\n              [-58.008818588493284, -20.521625767669846],\n              [-58.002292709338079, -20.465375765524072],\n              [-58.02547386256613, -20.41587136910438],\n              [-58.058542711483852, -20.386164336721151],\n              [-58.091391833830698, -20.333298123766966],\n              [-58.124691395647844, -20.293483669123162],\n              [-58.13774315395824, -20.237233666977403],\n              [-58.159792715346228, -20.164548117329659],\n              [-58.093644031182237, -20.15105690587751],\n              [-58.067540514561472, -20.110319599636014],\n              [-58.021200180762477, -20.055190203001743],\n              [-57.960215071014204, -20.040798112608982],\n              [-57.887540507695007, -20.020319596202782],\n              [-57.860766825033053, -19.979604262618366],\n              [-58.029967270940659, -19.832673104669638],\n              [-58.131447987702472, -19.744474859117645],\n              [-58.072044909264548, -19.62522924910003],\n              [-57.971695784342785, -19.424289300028533],\n              [-57.874499735713172, -19.229457749627542],\n              [-57.800473853983064, -19.080944560368465],\n              [-57.78134665598779, -19.053500711665322],\n              [-57.7167690168056, -19.044052469117403],\n              [-57.72870016960448, -18.967323950565444],\n              [-57.730941380627485, -18.917138401776015],\n              [-57.783148413869014, -18.914216038383287],\n              [-57.725096653842016, -18.733095426005335],\n              [-57.639150605641561, -18.475026568504532],\n              [-57.574122526989058, -18.279272166505848],\n              [-57.553193571112558, -18.246423044159002],\n              [-57.506172084943842, -18.237194528181959],\n              [-57.495592250555873, -18.214694527323658],\n              [-57.55207296560107, -18.183207709716271],\n              [-57.586493132929718, -18.122233586296545],\n              [-57.661650606499876, -17.947397153845813],\n              [-57.75322165491491, -17.734767751203393],\n              [-57.752771215444596, -17.734548024632517],\n              [-57.632174287016056, -17.739953298276205],\n              [-57.600896209651026, -17.816000664458443],\n              [-57.493790492674634, -17.869548029782365],\n              [-57.471521204715756, -17.900595394247972],\n              [-57.41932515780276, -17.882138362293887],\n              [-57.369820761383068, -17.875612483138696],\n              [-57.198598831023347, -17.812397148695979],\n              [-57.079792674147498, -17.734328298061641],\n              [-56.980124701595471, -17.594823898208716],\n              [-56.887422061340402, -17.517875653085866],\n              [-56.789995299811366, -17.386017737899635],\n              [-56.745215024665626, -17.316957676671464],\n              [-56.6680470529719, -17.320319493205957],\n              [-56.489398364516376, -17.302543613621609],\n              [-56.435840012863906, -17.320319493205957],\n              [-56.328745282216062, -17.284548007466384],\n              [-56.248424234230185, -17.217729157261189],\n              [-56.101042636811144, -17.186440093567612],\n              [-56.024995270628921, -17.213224762558113],\n              [-55.984950103085694, -17.266772127882035],\n              [-55.833075097292124, -17.311332676456885],\n              [-55.788525535045821, -17.351608556899535],\n              [-55.609865860261749, -17.391862464685104],\n              [-55.534049206978949, -17.503483562693106],\n              [-55.337624638939062, -17.583793624350449],\n              [-55.181245238442415, -17.686405932952297],\n              [-55.07415050779457, -17.681901538249207],\n              [-54.899995227713575, -17.650612474555629],\n              [-54.810896103220969, -17.601569503934783],\n              [-54.779618025855925, -17.557030928017028],\n              [-54.699296977870048, -17.516755047574378],\n              [-54.525141697789053, -17.512250652871302],\n              [-54.422320648944861, -17.579289229647358],\n              [-54.391273284479254, -17.673112475413944],\n              [-54.31971932667156, -17.673112475413944],\n              [-54.234893883982593, -17.637340989674357],\n              [-54.145575032919112, -17.628354172925299],\n              [-54.08324959108846, -17.588298019053525],\n              [-54.03846931594272, -17.512250652871302],\n              [-53.949150464879224, -17.45870328754738],\n              [-53.819775459943969, -17.307048008324685],\n              [-53.743947820332622, -17.253500643000763],\n              [-53.681391665602547, -17.257763338475868],\n              [-53.752714910510804, -17.641845384377447],\n              [-53.859820627487196, -17.690888354998279],\n              [-53.989415358993341, -17.900595394247972],\n              [-53.975924147541193, -17.931862485284469],\n              [-53.868818430564801, -17.945375669393698],\n              [-53.72594122784885, -18.007931824123787],\n              [-53.60534429942031, -17.994418640014544],\n              [-53.493745174069389, -18.012414246169769],\n              [-53.306318409107135, -17.99892303471762],\n              [-53.145665326806835, -18.030190125754118],\n              [-53.065344278820945, -18.021203309005045],\n              [-53.051842081040249, -18.016698914301969],\n              [-53.042844277962644, -18.097250675187283],\n              [-53.056346475743339, -18.293664256898609],\n              [-53.034066201455914, -18.356000685057808],\n              [-52.989296912638721, -18.387267776094305],\n              [-52.908964878324298, -18.347233594879611],\n              [-52.784094268092119, -18.391772170797381],\n              [-52.788598662795195, -18.463095415705638],\n              [-52.84641970992277, -18.534638387184799],\n              [-52.891199985068496, -18.637250695786648],\n              [-52.868919710781071, -18.682030970932374],\n              [-52.761594267233804, -18.708793667265795],\n              [-52.6144433827142, -18.722065152147053],\n              [-52.498339862660202, -18.704289272562704],\n              [-52.341971448492089, -18.815888397913625],\n              [-52.270648203583818, -18.811405975867643],\n              [-52.096492923502822, -18.896220432228048],\n              [-52.060721437763249, -18.945263402848894],\n              [-51.91357055324363, -18.99004367799462],\n              [-51.84201659543595, -19.048095438021619],\n              [-51.641098619021534, -19.128427472336043],\n              [-51.542990705122776, -19.137414289085115],\n              [-51.404617897109887, -19.168483626207816],\n              [-51.310794651343315, -19.253298082568236],\n              [-51.136650357590867, -19.284565173604733],\n              [-51.034049035317565, -19.369401602622233],\n              [-50.96429683539111, -19.511366940069024]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 751, \"fill\": \"#fff\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-51.888148188992545, -1.160375029096713],\n              [-51.984893798151859, -1.141698270571794],\n              [-52.051943361256519, -1.177469756311268],\n              [-52.132275395570957, -1.15070705997789],\n              [-52.239370126218773, -1.146202665274814],\n              [-52.359967054647313, -1.070375025663452],\n              [-52.39124513201233, -0.954271505609483],\n              [-52.368745131153958, -0.923004414573029],\n              [-52.400023208519087, -0.869457049249036],\n              [-52.516115742244551, -0.873939471295046],\n              [-52.507348652066355, -0.731073254907699],\n              [-52.525124531650647, -0.646236825890128],\n              [-52.605445579636523, -0.610465340150597],\n              [-52.63221926229852, -0.556917974826604],\n              [-52.627714867595444, -0.396275878854851],\n              [-52.699268825403124, -0.302452633088365],\n              [-52.828643830338422, -0.181844718331263],\n              [-52.913469273027374, -0.190853507737359],\n              [-52.976025427757463, -0.016698227656377],\n              [-53.016070595300675, 0.054625017251851],\n              [-53.007292518793975, 0.134957051566346],\n              [-53.042844277962672, 0.246556176917181],\n              [-53.127669720651625, 0.384928984930184],\n              [-53.141171918432292, 0.536803990723683],\n              [-53.114398235770352, 0.719957073882256],\n              [-53.132174115354644, 0.751004438347934],\n              [-53.266273241563908, 0.782282515712836],\n              [-53.41791753445807, 0.94315532458404],\n              [-53.466971491407435, 1.152851377505215],\n              [-53.408919731380422, 1.184129454870344],\n              [-53.440197808745438, 1.259957094481592],\n              [-53.538525449215058, 1.2421812148973],\n              [-53.556290342470902, 1.367282538028917],\n              [-53.650124574566064, 1.362778143325841],\n              [-53.659122377643598, 1.420829903352796],\n              [-53.739443425629474, 1.434101388234183],\n              [-53.757219305213823, 1.394056220690743],\n              [-53.891098704852141, 1.407327705572129],\n              [-53.922365795888709, 1.460875070896009],\n              [-54.007191238577661, 1.523431225626041],\n              [-54.078745196385341, 1.505655346041749],\n              [-54.083249591088475, 1.541207105210503],\n              [-54.172348715580995, 1.657299638935967],\n              [-54.203615806617563, 1.657299638935967],\n              [-54.364499601817215, 1.760131674108663],\n              [-54.498368015127028, 1.746629476328053],\n              [-54.578700049441466, 1.782400962067584],\n              [-54.73484873703876, 1.773403158989879],\n              [-54.766115828075158, 1.898504482121496],\n              [-54.7616224197007, 1.969827727029838],\n              [-54.792900497065716, 2.010103607472502],\n              [-54.752844343193885, 2.081426852380673],\n              [-54.78839610236264, 2.130480809330038],\n              [-54.717072857454411, 2.264579935539416],\n              [-54.73484873703876, 2.416224228433464],\n              [-54.714820660102873, 2.425002304940222],\n              [-54.702900493632512, 2.397997909378716],\n              [-54.697495219988809, 2.359754499716871],\n              [-54.661943460820055, 2.327575543411285],\n              [-54.61627329306225, 2.326674664470602],\n              [-54.591971534322738, 2.313853619059614],\n              [-54.550575048368614, 2.293155376082495],\n              [-54.515023289199917, 2.245452737543985],\n              [-54.433120209903677, 2.207429054452973],\n              [-54.293165370580425, 2.154332128599378],\n              [-54.227917565357018, 2.153431249658695],\n              [-54.167393881407634, 2.137006688485371],\n              [-54.13004036435774, 2.121032566782276],\n              [-54.089775470243637, 2.150497899937534],\n              [-53.946447828057387, 2.232631692133054],\n              [-53.876695628130904, 2.27830185989086],\n              [-53.829443429062678, 2.312952740118931],\n              [-53.794342109364379, 2.346032575365257],\n              [-53.767799139601777, 2.354799665543339],\n              [-53.750242986588376, 2.335002301507075],\n              [-53.734719304355565, 2.308448345415854],\n              [-53.683643862954057, 2.292924663183044],\n              [-53.563947813466143, 2.261877298717536],\n              [-53.509049129731295, 2.253099222210778],\n              [-53.431870171709022, 2.279422465402376],\n              [-53.365941214115935, 2.324202740548117],\n              [-53.334443410180029, 2.339726422780984],\n              [-53.285400439559169, 2.295176860534639],\n              [-53.252089891413391, 2.232181252662826],\n              [-53.229820603454584, 2.204957130530545],\n              [-53.180096480463988, 2.21125229678637],\n              [-53.082219279464653, 2.20180405423838],\n              [-53.009775429044907, 2.181775977302436],\n              [-52.964775427328277, 2.18357773518369],\n              [-52.903570591009156, 2.211483009685821],\n              [-52.87049075576283, 2.266601419991446],\n              [-52.783424102050844, 2.317226421922612],\n              [-52.700620143814092, 2.363577742050097],\n              [-52.653148218174977, 2.425672470981453],\n              [-52.582945578778208, 2.528954945624434],\n              [-52.559544698979323, 2.573054068400438],\n              [-52.554589864805905, 2.647750116171721],\n              [-52.455822771194505, 2.864202761147453],\n              [-52.418469254144611, 2.903797489220437],\n              [-52.396419692756581, 2.972198370735896],\n              [-52.356594251784259, 3.051629526109878],\n              [-52.356594251784259, 3.117778210273684],\n              [-52.327799084670232, 3.181674697086237],\n              [-52.271318369624964, 3.237023820291483],\n              [-52.229471444200556, 3.271674700519384],\n              [-52.162641607666842, 3.364608053674033],\n              [-52.116070560968353, 3.452355859755698],\n              [-51.9995166014441, 3.64697866991429],\n              [-51.990518798366452, 3.702108066548533],\n              [-51.944398191138305, 3.735176915466184],\n              [-51.928874508905551, 3.77702384089082],\n              [-51.879589839056678, 3.828549721762442],\n              [-51.827393792143766, 3.869506754575013],\n              [-51.805344230755679, 3.930030438524398],\n              [-51.767089834765216, 3.992575606925811],\n              [-51.683395983916284, 4.039608079423203],\n              [-51.652568346021496, 4.061207201340892],\n              [-51.557844221314383, 4.233780450111567],\n              [-51.547044660355539, 4.310948421805278],\n              [-51.461549051625411, 4.313881771526439],\n              [-51.326999485945862, 4.224782647033805],\n              [-51.219893768969428, 4.093605884217311],\n              [-51.076346400212287, 3.671730868124087],\n              [-51.052495080943118, 3.281804095437053],\n              [-50.994223594345158, 3.07750232983102],\n              [-50.827275345789133, 2.651804071404399],\n              [-50.816464798501727, 2.573054068400438],\n              [-50.789691115839787, 2.477879504222983],\n              [-50.737044629456477, 2.376849226931483],\n              [-50.678773142858631, 2.210351417845686],\n              [-50.676520945507036, 2.179523779951012],\n              [-50.714324902027272, 2.134073338763983],\n              [-50.658964792493578, 2.130931248800493],\n              [-50.608790230032696, 2.104157566138497],\n              [-50.575941107685878, 1.998622894143864],\n              [-50.534324895160751, 1.927299649235522],\n              [-50.458947695019731, 1.829653161135639],\n              [-50.304370052404295, 1.797704917729448],\n              [-50.187596366309151, 1.786004477830033],\n              [-50.05461784561146, 1.730655354624787],\n              [-49.957191084082353, 1.6597825491869],\n              [-49.881594157370444, 1.419929024412284],\n              [-49.906346355580297, 1.268954897559297],\n              [-49.898919597484564, 1.162980772422884],\n              [-49.937844159516317, 1.121353573569309],\n              [-50.047191087515671, 1.052051813113167],\n              [-50.071042406784898, 1.015148735533614],\n              [-50.294471370386134, 0.835829881036886],\n              [-50.343294614436104, 0.751004438347934],\n              [-50.462990663924018, 0.63737284221628],\n              [-50.581566107900471, 0.420480744098768],\n              [-50.755040235611716, 0.22247414474856],\n              [-50.816245071930837, 0.17253029518713],\n              [-50.910068317697437, 0.161049581858492],\n              [-50.966999472212933, 0.130232930292266],\n              [-51.101999477362767, -0.03133201727718],\n              [-51.282900363169858, -0.085099109171949],\n              [-51.299544650914186, -0.17892235493855],\n              [-51.404167457639517, -0.392672363092458],\n              [-51.496199931853425, -0.509457035516164],\n              [-51.554921857921613, -0.549051763589034],\n              [-51.702742908482492, -0.762340345944153],\n              [-51.72141966700741, -0.855504411998083],\n              [-51.720518788066784, -1.018387718992813],\n              [-51.819066155107294, -1.117857937631129],\n              [-51.888148188992545, -1.160375029096713]\n            ]\n          ],\n          [\n            [\n              [-50.362641539002311, 2.154551855170212],\n              [-50.341943296025136, 2.141730809759224],\n              [-50.291999446463706, 1.979506682477108],\n              [-50.298964778760705, 1.938549649664708],\n              [-50.398874450540688, 1.892879481906903],\n              [-50.456025331627075, 1.910424648591913],\n              [-50.508891544581275, 2.029450532038538],\n              [-50.491115664996926, 2.128679051448842],\n              [-50.418671814577067, 2.161528173795716],\n              [-50.362641539002311, 2.154551855170212]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 3224, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-60.724792813193218, -13.662948748219577],\n              [-60.659094568499526, -13.601513199001005],\n              [-60.382348952473777, -13.418590828741813],\n              [-60.351070875108732, -13.271220217651319],\n              [-60.275023508926509, -13.137340818012973],\n              [-60.270749827122856, -13.070302241236917],\n              [-60.194691474612085, -12.972194327338144],\n              [-60.083092349261165, -12.927414052192404],\n              [-60.043047181717938, -12.873866686868496],\n              [-60.002771301275288, -12.731000470481078],\n              [-59.908948055508716, -12.619401345130157],\n              [-59.82412261281975, -12.387194305022163],\n              [-59.891172175924368, -12.244547815205635],\n              [-59.886667781221291, -12.128444295151638],\n              [-59.931448056367017, -12.052396928969401],\n              [-59.98499542169094, -11.918517529331055],\n              [-60.060823061302287, -11.905246044449797],\n              [-60.101098941744937, -11.744362249250059],\n              [-60.101098941744937, -11.601496032862656],\n              [-60.025040589234166, -11.534677182657461],\n              [-59.908948055508716, -11.382802176863891],\n              [-60.002771301275288, -11.146332441280791],\n              [-60.069820864379906, -11.115043377587199],\n              [-60.176915595027737, -11.119547772290289],\n              [-60.279516917301038, -11.079271891847625],\n              [-60.382348952473777, -11.10155216613505],\n              [-60.440400712500775, -11.038996011404976],\n              [-60.440400712500775, -11.003444252236292],\n              [-61.471566523321002, -10.998939857533202],\n              [-61.520620480270395, -10.954181555044556],\n              [-61.507348995389123, -10.878353915433223],\n              [-61.520620480270395, -10.789013091712633],\n              [-61.471566523321002, -10.757746000676136],\n              [-61.502844600686046, -10.686422755767879],\n              [-61.471566523321002, -10.436439836075536],\n              [-61.565400755416121, -10.262306528651621],\n              [-61.569674437219774, -10.061366579580124],\n              [-61.534122678051077, -9.994547729374943],\n              [-61.520620480270395, -9.860448603165707],\n              [-61.565400755416121, -9.726569203527362],\n              [-61.520620480270395, -9.704288929239937],\n              [-61.480575312727169, -9.63725035246388],\n              [-61.551898557635425, -9.463095072382885],\n              [-61.547394162932349, -9.409547707058962],\n              [-61.609950317662424, -9.320448582566343],\n              [-61.592174438078075, -9.239896821681043],\n              [-61.529618283348, -9.226625336799771],\n              [-61.556391966009969, -9.128297696330122],\n              [-61.529618283348, -8.998922691394853],\n              [-61.484848994530822, -8.914108235034448],\n              [-61.507348995389123, -8.847047685601282],\n              [-61.609950317662424, -8.766715651286859],\n              [-58.547467290681723, -8.74893977170251],\n              [-58.471650637398923, -8.690888011675511],\n              [-58.426650635682307, -8.523038884178831],\n              [-58.397174316198502, -8.415504700389221],\n              [-58.354415525504876, -8.27600030053631],\n              [-58.328773434682958, -8.050538866154383],\n              [-58.353525632892811, -7.905870891885741],\n              [-58.330344479664774, -7.780099402712935],\n              [-58.259471674226816, -7.67322439863598],\n              [-58.223919915058119, -7.574677031595442],\n              [-58.223700188487229, -7.484677028162224],\n              [-58.201870353670117, -7.414474388765456],\n              [-58.136622548446738, -7.338207296012342],\n              [-58.060794908835419, -7.409530540920628],\n              [-57.980473860849543, -7.530116483020606],\n              [-57.94919578348447, -7.619457306741182],\n              [-57.895648418160548, -7.690780551649439],\n              [-57.779544898106565, -8.048077928560417],\n              [-57.641172090093676, -8.231000298819694],\n              [-57.681447970536325, -8.436422669937187],\n              [-57.650169893171295, -8.498978824667262],\n              [-57.641172090093676, -8.615082344721259],\n              [-57.578615935363601, -8.757948561108677],\n              [-57.480519007793376, -8.79350032027736],\n              [-57.297365924634761, -8.958646810952203],\n              [-57.100941356594888, -9.052470056718775],\n              [-57.083165477010539, -9.079254725709276],\n              [-57.074167673932948, -9.18634945635705],\n              [-57.047393991270965, -9.231129731502847],\n              [-56.926797062842439, -9.244401216384119],\n              [-56.837697938349834, -9.271163912717554],\n              [-56.770648375245202, -9.39627622217769],\n              [-56.67682512947863, -9.378280616022494],\n              [-56.489398364516376, -9.467599467085961],\n              [-56.462624681854408, -9.467599467085961],\n              [-55.092146113949809, -9.565927107555609],\n              [-51.297523166462042, -9.789125358257451],\n              [-50.234848565377348, -9.842672723581373],\n              [-50.337449887650649, -10.034362184018732],\n              [-50.395270934778239, -10.176788947264384],\n              [-50.402697692874028, -10.258241587090311],\n              [-50.454674013216163, -10.388517470966192],\n              [-50.550749456334273, -10.567177145750264],\n              [-50.59912226091393, -10.689806544959453],\n              [-50.610372261343059, -11.000983314642411],\n              [-50.64524286814202, -11.162746016125666],\n              [-50.708018749442999, -11.345668386384844],\n              [-50.716566113050305, -11.482689875986807],\n              [-50.671346384762813, -11.573832457588622],\n              [-50.66572138454822, -11.651901308222961],\n              [-50.717466991990904, -11.749108343181121],\n              [-50.661447702744567, -11.853500437007099],\n              [-50.653570505178465, -11.922340771664409],\n              [-50.67471918762584, -11.990082473467297],\n              [-50.667523142429445, -12.112030720306748],\n              [-50.631740670361324, -12.288646937981625],\n              [-50.629268746438925, -12.437379853811592],\n              [-50.660546823803969, -12.558207495139541],\n              [-50.655372263059689, -12.666862284440654],\n              [-50.613964790777004, -12.763388167029063],\n              [-50.566042425667661, -12.819638169174837],\n              [-50.484820498741158, -12.842599595831999],\n              [-50.566042425667661, -13.014733391460879],\n              [-50.595068305681139, -13.130814938857782],\n              [-50.598441108544193, -13.249401369162754],\n              [-50.666622263488847, -13.409604011992741],\n              [-50.799589797858033, -13.611862320489536],\n              [-50.860574907606292, -13.806056663834966],\n              [-50.851796831099563, -13.995043487450488],\n              [-50.867540239903263, -14.095172885801375],\n              [-50.908497272715636, -14.107323765171145],\n              [-50.941115682163058, -14.200927284366827],\n              [-50.977568320272354, -14.46328080999983],\n              [-51.114370083303442, -14.837892640696381],\n              [-51.18861569160444, -14.976496161608694],\n              [-51.246217012161139, -15.004401436110683],\n              [-51.286273166032885, -15.002819404800334],\n              [-51.471447733643629, -15.044215890754487],\n              [-51.589792464720603, -15.141422925712646],\n              [-51.664719225391337, -15.261349688099983],\n              [-51.695997302756382, -15.403315025546789],\n              [-51.731999501395393, -15.490392665587279],\n              [-51.772714834979809, -15.52280233479236],\n              [-51.788249503541152, -15.556991789221584],\n              [-51.778790274664686, -15.592763274961158],\n              [-51.798598625029683, -15.656220308631859],\n              [-51.847421869079653, -15.747121191005704],\n              [-51.961492918352974, -15.819125588283697],\n              [-52.142393804160051, -15.872672953607619],\n              [-52.256695566332823, -15.93566856147946],\n              [-52.308441173775506, -16.009254990067816],\n              [-52.361768812528553, -16.058297960688648],\n              [-52.416667496263386, -16.082379992857312],\n              [-52.538396016531962, -16.168556753957191],\n              [-52.534122334728309, -16.226608513984189],\n              [-52.667990748038108, -16.289142696057183],\n              [-52.681273219247927, -16.36046594096544],\n              [-52.6144433827142, -16.427526490398606],\n              [-52.679921900837002, -16.576017707000588],\n              [-52.789049102265494, -16.704953258794092],\n              [-52.942714879611756, -16.813630020752285],\n              [-53.024167519437682, -16.910375629911584],\n              [-53.033165322515288, -16.995190086272004],\n              [-53.077945597661028, -17.094638332253155],\n              [-53.158266645646904, -17.208720367855037],\n              [-53.202596481322331, -17.304125644931958],\n              [-53.21137455782906, -17.409198891127687],\n              [-53.115068401811527, -17.854914240161619],\n              [-53.051842081040249, -18.016698914301969],\n              [-53.065344278820945, -18.021203309005045],\n              [-53.145665326806835, -18.030190125754118],\n              [-53.306318409107135, -17.99892303471762],\n              [-53.493745174069389, -18.012414246169769],\n              [-53.60534429942031, -17.994418640014544],\n              [-53.72594122784885, -18.007931824123787],\n              [-53.868818430564801, -17.945375669393698],\n              [-53.975924147541193, -17.931862485284469],\n              [-53.989415358993341, -17.900595394247972],\n              [-53.859820627487196, -17.690888354998279],\n              [-53.752714910510804, -17.641845384377447],\n              [-53.681391665602547, -17.257763338475868],\n              [-53.743947820332622, -17.253500643000763],\n              [-53.819775459943969, -17.307048008324685],\n              [-53.949150464879224, -17.45870328754738],\n              [-54.03846931594272, -17.512250652871302],\n              [-54.08324959108846, -17.588298019053525],\n              [-54.145575032919112, -17.628354172925299],\n              [-54.234893883982593, -17.637340989674357],\n              [-54.31971932667156, -17.673112475413944],\n              [-54.391273284479254, -17.673112475413944],\n              [-54.422320648944861, -17.579289229647358],\n              [-54.525141697789053, -17.512250652871302],\n              [-54.699296977870048, -17.516755047574378],\n              [-54.779618025855925, -17.557030928017028],\n              [-54.810896103220969, -17.601569503934783],\n              [-54.899995227713575, -17.650612474555629],\n              [-55.07415050779457, -17.681901538249207],\n              [-55.181245238442415, -17.686405932952297],\n              [-55.337624638939062, -17.583793624350449],\n              [-55.534049206978949, -17.503483562693106],\n              [-55.609865860261749, -17.391862464685104],\n              [-55.788525535045821, -17.351608556899535],\n              [-55.833075097292124, -17.311332676456885],\n              [-55.984950103085694, -17.266772127882035],\n              [-56.024995270628921, -17.213224762558113],\n              [-56.101042636811144, -17.186440093567612],\n              [-56.248424234230185, -17.217729157261189],\n              [-56.328745282216062, -17.284548007466384],\n              [-56.435840012863906, -17.320319493205957],\n              [-56.489398364516376, -17.302543613621609],\n              [-56.6680470529719, -17.320319493205957],\n              [-56.745215024665626, -17.316957676671464],\n              [-56.789995299811366, -17.386017737899635],\n              [-56.887422061340402, -17.517875653085866],\n              [-56.980124701595471, -17.594823898208716],\n              [-57.079792674147498, -17.734328298061641],\n              [-57.198598831023347, -17.812397148695979],\n              [-57.369820761383068, -17.875612483138696],\n              [-57.41932515780276, -17.882138362293887],\n              [-57.471521204715756, -17.900595394247972],\n              [-57.493790492674634, -17.869548029782365],\n              [-57.600896209651026, -17.816000664458443],\n              [-57.632174287016056, -17.739953298276205],\n              [-57.752771215444596, -17.734548024632517],\n              [-57.75322165491491, -17.734767751203393],\n              [-57.78021506414774, -17.671772143331552],\n              [-57.788773414083593, -17.573005049720138],\n              [-57.832422097389284, -17.512030926300412],\n              [-57.90509666070848, -17.532267743478641],\n              [-57.990822982338045, -17.512931805241024],\n              [-58.205473869432581, -17.363078283899569],\n              [-58.347669919778809, -17.282065097215408],\n              [-58.396042724358452, -17.234362458676955],\n              [-58.417422119705265, -17.08046596843127],\n              [-58.459719484600029, -16.91081508305335],\n              [-58.478165530225567, -16.700668590661891],\n              [-58.470519045558873, -16.650263315301586],\n              [-58.350372556600647, -16.490741824841322],\n              [-58.35082299607096, -16.410190063956023],\n              [-58.340473874582429, -16.339987424559254],\n              [-58.345648435326694, -16.284418574783217],\n              [-58.375344481381376, -16.283517695842605],\n              [-58.423717285961033, -16.307819454582145],\n              [-58.496622562179653, -16.326715939677982],\n              [-58.538019048133805, -16.328297970988331],\n              [-58.957191427405206, -16.313224728225833],\n              [-59.43419584013273, -16.295888301783251],\n              [-59.831098931445254, -16.281715937961366],\n              [-60.175575262945358, -16.26934533202072],\n              [-60.187275702844815, -16.132104115847881],\n              [-60.206622627410979, -15.901918560192001],\n              [-60.220344551762551, -15.738573827398397],\n              [-60.242394113150553, -15.479604090956983],\n              [-60.380547194592538, -15.318280842615493],\n              [-60.530400715934007, -15.143224683593871],\n              [-60.583266928888193, -15.098224681877269],\n              [-60.401915603610803, -15.092819408233566],\n              [-60.27344147761616, -15.088776439329337],\n              [-60.298874828195736, -14.618517632327894],\n              [-60.33801911679835, -14.57059526721855],\n              [-60.372669997026435, -14.41872026142498],\n              [-60.396290603396238, -14.332763226895977],\n              [-60.460198076537239, -14.263022013298055],\n              [-60.47459016693, -14.184733436092841],\n              [-60.462900713359076, -14.132526402851298],\n              [-60.428019120231582, -14.099897007075342],\n              [-60.405068679902968, -14.019125519619152],\n              [-60.422394120017003, -13.937892606364102],\n              [-60.460198076537239, -13.862306665980739],\n              [-60.506549396664767, -13.789840842903885],\n              [-60.595198081687073, -13.745302266986116],\n              [-60.722320889270804, -13.664289080301955],\n              [-60.724792813193218, -13.662948748219577]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 11082, \"fill\": \"#999\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-54.242540368649287, -24.046918870899106],\n              [-54.124646077042598, -23.978517989383576],\n              [-54.050169755842191, -23.822819741256652],\n              [-53.995490798678219, -23.570156157399552],\n              [-53.907523266025649, -23.407031151176824],\n              [-53.771171942464889, -23.322194722159324],\n              [-53.677348696698317, -23.173483778986451],\n              [-53.619967102712508, -23.001130256786681],\n              [-53.480693415759006, -22.852397340956728],\n              [-53.272348681248786, -22.752048216034964],\n              [-53.116199993651563, -22.639987664885183],\n              [-53.044415322944445, -22.636406121779814],\n              [-52.949240758766962, -22.570466177858123],\n              [-52.694775417028623, -22.601513542323772],\n              [-52.6144433827142, -22.570466177858151],\n              [-52.520620136947628, -22.615026726433001],\n              [-52.44479249733628, -22.601513542323772],\n              [-52.315197765830135, -22.619531121136077],\n              [-52.261650400506213, -22.601513542323772],\n              [-52.217089851931362, -22.641789422766422],\n              [-52.16354248660744, -22.601513542323772],\n              [-52.141273198648562, -22.543483754953854],\n              [-52.065214846137792, -22.521203480666429],\n              [-51.984893798151916, -22.54796617699985],\n              [-51.873294672800995, -22.610522331729925],\n              [-51.743919667865725, -22.619531121136077],\n              [-51.69464598434547, -22.664069697053776],\n              [-51.641098619021534, -22.650798212172575],\n              [-51.547495099825852, -22.686349971341272],\n              [-51.35534421358966, -22.65079821217256],\n              [-51.181419646408045, -22.739897336665194],\n              [-51.002770957952521, -22.793664428559993],\n              [-50.882174029523981, -22.820449097550494],\n              [-50.784066115625222, -22.945319707782687],\n              [-50.726025341926771, -22.949824102485763],\n              [-50.627697701457123, -22.923039433495262],\n              [-50.431273133417221, -22.945319707782687],\n              [-50.368947691586584, -22.91405261674619],\n              [-50.292900325404389, -22.95432849718884],\n              [-50.123249440026427, -22.940815313079611],\n              [-49.971594160803761, -22.914052616746176],\n              [-49.958091963023065, -22.963315313937912],\n              [-49.913542400776748, -22.985595588225337],\n              [-49.909048992402205, -23.034638558846183],\n              [-49.730400303946681, -23.105983776411534],\n              [-49.636796784750999, -23.257858782205105],\n              [-49.614296783892684, -23.409733787998675],\n              [-49.654572664335348, -23.507819729240353],\n              [-49.605518707385954, -23.641699128878713],\n              [-49.551971342062075, -23.713242100357832],\n              [-49.569747221646367, -23.833850015114933],\n              [-49.601025299011411, -23.86489737958054],\n              [-49.409094139346081, -24.083832934807262],\n              [-49.333046773163858, -24.14186272217718],\n              [-49.337540181538373, -24.213207939742531],\n              [-49.274995013136845, -24.315798275687285],\n              [-49.22594105618748, -24.338298276545572],\n              [-49.239443253968147, -24.418630310860024],\n              [-49.310766498876433, -24.530229436210945],\n              [-49.29749501399516, -24.664108835849291],\n              [-49.216943253109861, -24.690871532182697],\n              [-49.092072642877667, -24.686367137479621],\n              [-49.025023079773064, -24.668591257895272],\n              [-48.828598511733162, -24.66410883584922],\n              [-48.779544554783797, -24.695375926885774],\n              [-48.61439806410894, -24.681862742776545],\n              [-48.489296740977352, -24.74441889750662],\n              [-48.54284410630126, -24.811479446939771],\n              [-48.565344107159603, -25.056957971928966],\n              [-48.511796741835639, -25.083720668262458],\n              [-48.41346910136599, -24.958850058030265],\n              [-48.26609849027551, -25.034677697641598],\n              [-48.230546731106813, -25.012397423354116],\n              [-48.185766455961073, -25.190815398910289],\n              [-48.091943210194501, -25.235595674056029],\n              [-48.087669528390848, -25.280156222630879],\n              [-48.077540133473207, -25.290263644891439],\n              [-48.202641456604795, -25.416496559863091],\n              [-48.242466897577145, -25.403225074981833],\n              [-48.185997168860496, -25.309841282357027],\n              [-48.2735252483713, -25.306237766594563],\n              [-48.402449813836256, -25.272048312165339],\n              [-48.458469103082621, -25.31074216129764],\n              [-48.427641465187889, -25.403225074981833],\n              [-48.476025256096079, -25.443039529625636],\n              [-48.564223501648058, -25.447543924328713],\n              [-48.64409411016365, -25.436513650470445],\n              [-48.731841916245315, -25.368793921324638],\n              [-48.692247188172416, -25.491423320533826],\n              [-48.507072620561672, -25.521350079487945],\n              [-48.429893662539428, -25.550156232930561],\n              [-48.401098495425344, -25.597397445670168],\n              [-48.545096303652798, -25.815871575098043],\n              [-48.665693232081338, -25.844458001969784],\n              [-48.678964716962611, -25.87526366720742],\n              [-48.612816032798605, -25.875043940636544],\n              [-48.576374381017843, -25.935358884343628],\n              [-48.585372184095462, -25.986203612845699],\n              [-48.650169549848528, -25.97225097559469],\n              [-48.917917362796658, -25.97651367106981],\n              [-48.944691045458626, -26.007802734763388],\n              [-49.109848522462016, -25.994531249882129],\n              [-49.212669571306208, -26.030302735621696],\n              [-49.29749501399516, -26.106130375233022],\n              [-49.45364370159237, -26.16866455730603],\n              [-49.489415187331957, -26.22223389528704],\n              [-49.596520904308335, -26.22223389528704],\n              [-49.721622227439951, -26.159677740556958],\n              [-49.752669591905601, -26.123906254817314],\n              [-49.882275309740265, -26.039069825799885],\n              [-49.949094159945446, -26.012307129466471],\n              [-50.190299003131059, -26.052583009909121],\n              [-50.315169613363224, -26.052583009909121],\n              [-50.369167418157474, -26.085871585397726],\n              [-50.45804681607919, -26.02579834091862],\n              [-50.542872258768142, -26.02579834091862],\n              [-50.645693307612333, -26.07035888949347],\n              [-50.735023145004391, -26.231000985465229],\n              [-50.77057490417306, -26.22223389528704],\n              [-50.900169635679219, -26.280263682656951],\n              [-50.944719197925508, -26.244492196917378],\n              [-51.074094202860806, -26.23550538016832],\n              [-51.248249482941787, -26.347104505519212],\n              [-51.288525363384451, -26.423151871701464],\n              [-51.279516573978299, -26.498979511312712],\n              [-51.239471406435086, -26.606074241960584],\n              [-51.284020968681347, -26.650854517106367],\n              [-51.422393776694236, -26.699897487727206],\n              [-51.502714824680112, -26.601569847257558],\n              [-51.873294672800995, -26.601569847257558],\n              [-52.007174072439341, -26.583793967673216],\n              [-52.199094245776138, -26.44991456803487],\n              [-52.458074968546086, -26.431918961879639],\n              [-52.542900411235053, -26.400651870843141],\n              [-52.641217065376168, -26.400651870843092],\n              [-52.672495142741198, -26.378371596555716],\n              [-52.815372345457149, -26.33831544268395],\n              [-52.913469273027374, -26.365100111674394],\n              [-52.99379032101325, -26.351608900222303],\n              [-53.123396038847943, -26.369604506377534],\n              [-53.279544726445167, -26.262268076501719],\n              [-53.355372366056514, -26.239987802214294],\n              [-53.458193414900734, -26.289052745492199],\n              [-53.516245174927704, -26.289052745492228],\n              [-53.663396059447336, -26.257763681798622],\n              [-53.669921938602499, -26.258005381026635],\n              [-53.671273257013425, -26.225156258679768],\n              [-53.746870183725349, -26.083630374374735],\n              [-53.823148262806995, -25.959638670426074],\n              [-53.864094309290849, -25.748832998321973],\n              [-53.891098704852226, -25.668940417149315],\n              [-53.954775465093803, -25.647582994459597],\n              [-54.012365799321955, -25.577819808204595],\n              [-54.085040362641138, -25.57197508141914],\n              [-54.11924080339891, -25.545190412428624],\n              [-54.154572835996717, -25.52315183736917],\n              [-54.206098716868524, -25.529677716524361],\n              [-54.250197839644528, -25.570393050108777],\n              [-54.33187020604133, -25.57197508141914],\n              [-54.383396086913137, -25.588630355491986],\n              [-54.44391977086255, -25.625082993601296],\n              [-54.501521091419249, -25.60820799295756],\n              [-54.537743016629122, -25.576479476122216],\n              [-54.615822853592007, -25.576018050323356],\n              [-54.610648292847742, -25.432690408137091],\n              [-54.473165377446932, -25.220302704722641],\n              [-54.43627328619587, -25.121293911883257],\n              [-54.454049165780205, -25.065263636308373],\n              [-54.413092132967819, -24.867487749857574],\n              [-54.312973720945479, -24.52820795175883],\n              [-54.281025477539259, -24.306130306568491],\n              [-54.317247402749132, -24.201276786943637],\n              [-54.318368008260634, -24.128151784154142],\n              [-54.266842127388827, -24.065815355994943],\n              [-54.241870202608098, -24.047380296697952],\n              [-54.242540368649287, -24.046918870899106]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 2852, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-47.301971256231354, -16.039181749021921],\n              [-47.855473474611387, -16.043664171067917],\n              [-48.181273047586529, -16.039181749021921],\n              [-48.252816019065676, -16.030172959615768],\n              [-48.234820412910466, -15.958849714707497],\n              [-48.279589701727645, -15.838241799950424],\n              [-48.203773048444845, -15.73543173743478],\n              [-48.239324807613542, -15.69087118885993],\n              [-48.181273047586529, -15.489953212445528],\n              [-47.766143637219358, -15.489953212445528],\n              [-47.422348458089004, -15.498940029194586],\n              [-47.413570381582247, -15.534733487591254],\n              [-47.306244938035007, -15.588280852915176],\n              [-47.306244938035007, -15.708647068444279],\n              [-47.351025213180719, -15.833737405247348],\n              [-47.359792303358915, -15.985612411040918],\n              [-47.301971256231354, -16.039181749021921]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 6523, \"fill\": \"#999\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-50.96429683539111, -19.511366940069024],\n              [-51.034049035317565, -19.369401602622233],\n              [-51.136650357590867, -19.284565173604733],\n              [-51.310794651343315, -19.253298082568236],\n              [-51.404617897109887, -19.168483626207816],\n              [-51.542990705122776, -19.137414289085115],\n              [-51.641098619021534, -19.128427472336043],\n              [-51.84201659543595, -19.048095438021619],\n              [-51.91357055324363, -18.99004367799462],\n              [-52.060721437763249, -18.945263402848894],\n              [-52.096492923502822, -18.896220432228048],\n              [-52.270648203583818, -18.811405975867643],\n              [-52.341971448492089, -18.815888397913625],\n              [-52.498339862660202, -18.704289272562704],\n              [-52.6144433827142, -18.722065152147053],\n              [-52.761594267233804, -18.708793667265795],\n              [-52.868919710781071, -18.682030970932374],\n              [-52.891199985068496, -18.637250695786648],\n              [-52.84641970992277, -18.534638387184799],\n              [-52.788598662795195, -18.463095415705638],\n              [-52.784094268092119, -18.391772170797381],\n              [-52.908964878324298, -18.347233594879611],\n              [-52.989296912638721, -18.387267776094305],\n              [-53.034066201455914, -18.356000685057808],\n              [-53.056346475743339, -18.293664256898609],\n              [-53.042844277962644, -18.097250675187283],\n              [-53.051842081040249, -18.016698914301969],\n              [-53.115068401811527, -17.854914240161619],\n              [-53.21137455782906, -17.409198891127687],\n              [-53.202596481322331, -17.304125644931958],\n              [-53.158266645646904, -17.208720367855037],\n              [-53.077945597661028, -17.094638332253155],\n              [-53.033165322515288, -16.995190086272004],\n              [-53.024167519437682, -16.910375629911584],\n              [-52.942714879611756, -16.813630020752285],\n              [-52.789049102265494, -16.704953258794092],\n              [-52.679921900837002, -16.576017707000588],\n              [-52.6144433827142, -16.427526490398606],\n              [-52.681273219247927, -16.36046594096544],\n              [-52.667990748038108, -16.289142696057183],\n              [-52.534122334728309, -16.226608513984189],\n              [-52.538396016531962, -16.168556753957191],\n              [-52.416667496263386, -16.082379992857312],\n              [-52.361768812528553, -16.058297960688648],\n              [-52.308441173775506, -16.009254990067816],\n              [-52.256695566332823, -15.93566856147946],\n              [-52.142393804160051, -15.872672953607619],\n              [-51.961492918352974, -15.819125588283697],\n              [-51.847421869079653, -15.747121191005704],\n              [-51.798598625029683, -15.656220308631859],\n              [-51.778790274664686, -15.592763274961158],\n              [-51.788249503541152, -15.556991789221584],\n              [-51.772714834979809, -15.52280233479236],\n              [-51.731999501395393, -15.490392665587279],\n              [-51.695997302756382, -15.403315025546789],\n              [-51.664719225391337, -15.261349688099983],\n              [-51.589792464720603, -15.141422925712646],\n              [-51.471447733643629, -15.044215890754487],\n              [-51.286273166032885, -15.002819404800334],\n              [-51.246217012161139, -15.004401436110683],\n              [-51.18861569160444, -14.976496161608694],\n              [-51.114370083303442, -14.837892640696381],\n              [-50.977568320272354, -14.46328080999983],\n              [-50.941115682163058, -14.200927284366827],\n              [-50.908497272715636, -14.107323765171145],\n              [-50.867540239903263, -14.095172885801375],\n              [-50.851796831099563, -13.995043487450488],\n              [-50.860574907606292, -13.806056663834966],\n              [-50.799589797858033, -13.611862320489536],\n              [-50.666622263488847, -13.409604011992741],\n              [-50.598441108544193, -13.249401369162754],\n              [-50.595068305681139, -13.130814938857782],\n              [-50.566042425667661, -13.014733391460879],\n              [-50.484820498741158, -12.842599595831999],\n              [-50.392348571385497, -12.617138161450072],\n              [-50.295591975897651, -12.490026340194888],\n              [-50.163745047039981, -12.38765573082101],\n              [-50.13674065147859, -12.476513156085659],\n              [-50.203570488012303, -12.570358374509311],\n              [-50.19929680620865, -12.655172830869731],\n              [-50.275124445820012, -12.789052230508076],\n              [-50.270620051116936, -12.891862293023721],\n              [-50.239341973751891, -12.931918446895494],\n              [-50.051915208789637, -13.021237297958976],\n              [-49.971594160803761, -13.025741692662066],\n              [-49.913542400776748, -13.070302241236917],\n              [-49.685839755371831, -13.177396971884747],\n              [-49.520693264697002, -13.199896972743062],\n              [-49.382320456684113, -13.248939943363894],\n              [-49.359820455825798, -13.132858395966991],\n              [-49.29749501399516, -13.003483391031722],\n              [-49.136622205123956, -12.735504865184154],\n              [-49.016245003266306, -12.655172830869731],\n              [-48.998249397111096, -12.748996076636303],\n              [-48.926915165874277, -12.784547835805],\n              [-48.824094117030086, -12.873866686868496],\n              [-48.797320434368146, -12.927414052192404],\n              [-48.801824829071222, -12.998978996328646],\n              [-48.766273069902525, -13.097064937570323],\n              [-48.761768675199448, -13.208664062921244],\n              [-48.775040160080721, -13.351552251965742],\n              [-48.739268674341133, -13.38281934300224],\n              [-48.685721309017225, -13.338280767084484],\n              [-48.654443231652181, -13.177396971884747],\n              [-48.587624381447, -13.155116697597322],\n              [-48.480518664470594, -13.195392578039986],\n              [-48.368919539119673, -13.186405761290914],\n              [-48.226042336403736, -13.092582515524342],\n              [-48.163716894573071, -13.102470211214026],\n              [-48.174966895002228, -13.180780761076335],\n              [-48.074167330610152, -13.195392578039986],\n              [-48.002844085701895, -13.248939943363894],\n              [-47.935794522597291, -13.244457521317912],\n              [-47.855473474611387, -13.293500491938744],\n              [-47.681318194530405, -13.356056646668833],\n              [-47.659048906571513, -13.320263188272165],\n              [-47.721594074973069, -13.150612302894245],\n              [-47.641042314087741, -13.115082516382643],\n              [-47.556447584298212, -13.244457521317912],\n              [-47.440344064244215, -13.248939943363894],\n              [-47.292973453153735, -13.199896972743062],\n              [-47.092044490410757, -13.097064937570323],\n              [-46.971447561982245, -13.070302241236917],\n              [-46.82857035926628, -13.070302241236917],\n              [-46.752742719654947, -13.034750482068219],\n              [-46.645647989007102, -12.922931630146422],\n              [-46.592089637354633, -12.891862293023721],\n              [-46.435721223186533, -12.847103990535075],\n              [-46.301841823548187, -12.833832505653803],\n              [-46.234792260443555, -12.798039047257149],\n              [-46.087641375923965, -12.914142567311146],\n              [-46.074150164471803, -12.976698722041192],\n              [-46.150197530654054, -13.025741692662052],\n              [-46.181244895119647, -13.159621092300398],\n              [-46.176971213315994, -13.217672852327382],\n              [-46.083147967549422, -13.253444338066984],\n              [-46.096419452430723, -13.351552251965757],\n              [-46.185749289822724, -13.405099617289665],\n              [-46.270574732511704, -13.655082536981979],\n              [-46.261796656004947, -13.869491724848501],\n              [-46.221520775562311, -13.998866729783842],\n              [-46.172466818612918, -14.074914095966065],\n              [-46.127697529795739, -14.18203079927099],\n              [-46.038367692403682, -14.253354044179261],\n              [-46.011594009741771, -14.298112346667835],\n              [-45.922494885249108, -14.351681684648909],\n              [-45.962540052792349, -14.467763232045797],\n              [-45.962540052792349, -14.534604054908087],\n              [-45.913497082171517, -14.690983455404748],\n              [-45.931272961755838, -14.749013242774652],\n              [-46.025096207522409, -14.869401430960849],\n              [-46.078643572846346, -14.922948796284771],\n              [-46.190242698197267, -14.93644000773692],\n              [-46.297348415173644, -14.909677311403499],\n              [-46.315344021328883, -14.847121156673424],\n              [-46.38666726623714, -14.771293517062077],\n              [-46.51604227117241, -14.713241757035078],\n              [-46.583091834277013, -14.793573791349502],\n              [-46.556318151615045, -14.869401430960849],\n              [-46.57859842590247, -14.914181706106575],\n              [-46.547320348537454, -15.039052316338768],\n              [-46.636650185929483, -15.070319407375266],\n              [-46.734966840070598, -15.016772042051343],\n              [-46.833074753969356, -15.012267647348267],\n              [-46.891115527667807, -15.04803913308784],\n              [-46.931391408110471, -15.226698807871912],\n              [-46.891115527667807, -15.239970292753185],\n              [-46.855344041928248, -15.324806721770685],\n              [-46.935895802813548, -15.431901452418515],\n              [-46.931391408110471, -15.543500577769436],\n              [-46.868846239708944, -15.592763274961158],\n              [-46.833074753969356, -15.8427461946535],\n              [-46.864341845005839, -15.882802348525274],\n              [-47.07854229263009, -15.936349713849197],\n              [-47.127815976150345, -15.923078228967924],\n              [-47.230417298423646, -16.034677354318845],\n              [-47.301971256231354, -16.039181749021921],\n              [-47.359792303358915, -15.985612411040918],\n              [-47.351025213180719, -15.833737405247348],\n              [-47.306244938035007, -15.708647068444279],\n              [-47.306244938035007, -15.588280852915176],\n              [-47.413570381582247, -15.534733487591254],\n              [-47.422348458089004, -15.498940029194586],\n              [-47.766143637219358, -15.489953212445528],\n              [-48.181273047586529, -15.489953212445528],\n              [-48.239324807613542, -15.69087118885993],\n              [-48.203773048444845, -15.73543173743478],\n              [-48.279589701727645, -15.838241799950424],\n              [-48.234820412910466, -15.958849714707497],\n              [-48.252816019065676, -16.030172959615768],\n              [-48.181273047586529, -16.039181749021921],\n              [-47.855473474611387, -16.043664171067917],\n              [-47.301971256231354, -16.039181749021921],\n              [-47.337523015400023, -16.146276479669766],\n              [-47.324240544190218, -16.226608513984189],\n              [-47.351025213180719, -16.302414180938442],\n              [-47.431346261166595, -16.409750610814257],\n              [-47.453615549125487, -16.494345340603786],\n              [-47.404572578504656, -16.570392706786023],\n              [-47.266199770491767, -16.6597335305066],\n              [-47.159094053515389, -16.918483540377125],\n              [-47.15009625043777, -16.976513327747043],\n              [-47.230417298423646, -17.025797997595845],\n              [-47.212641418839297, -17.074840968216691],\n              [-47.310749332738084, -17.141901517649842],\n              [-47.422348458089004, -17.271276522585111],\n              [-47.453615549125487, -17.347104162196459],\n              [-47.498395824271228, -17.32932828261211],\n              [-47.529443188736821, -17.454198892844303],\n              [-47.458119943828564, -17.52574186432345],\n              [-47.40906598687917, -17.498979167990029],\n              [-47.288469058450659, -17.548022138610875],\n              [-47.27069317886631, -17.668630053367949],\n              [-47.328744938893294, -17.744457692979296],\n              [-47.355518621555262, -17.824767754636625],\n              [-47.346520818477643, -17.878315119960547],\n              [-47.279471255373039, -18.061479189447695],\n              [-47.318846256875077, -18.083298037936274],\n              [-47.446419503929093, -18.170595404547655],\n              [-47.786171714155245, -18.379401564856721],\n              [-47.928818203971787, -18.445319536121303],\n              [-48.017917328464392, -18.434530961490992],\n              [-48.226943215344335, -18.340246289925574],\n              [-48.953699834864778, -18.325854199532813],\n              [-49.108266491151653, -18.388388381605793],\n              [-49.179370009489048, -18.404823929107764],\n              [-49.247540178105169, -18.468500689349341],\n              [-49.336650288926307, -18.584823935974214],\n              [-49.41674062401276, -18.602819542129453],\n              [-49.488294581820469, -18.522048054673263],\n              [-49.553322660472958, -18.510116901874369],\n              [-49.611824859970255, -18.566828329818989],\n              [-49.677973544134261, -18.600116905307601],\n              [-49.788671790544555, -18.614530968357457],\n              [-49.960124433803713, -18.616332726238682],\n              [-50.093773120542636, -18.641293664690863],\n              [-50.246999444747132, -18.690116908740833],\n              [-50.368266539216847, -18.768647185174018],\n              [-50.457596376608876, -18.876642794762475],\n              [-50.498992862563028, -18.953151586743559],\n              [-50.489775332914547, -19.0204318627476],\n              [-50.531622258339013, -19.087030986381905],\n              [-50.577523138996241, -19.112233624062057],\n              [-50.641870065278994, -19.118517803989278],\n              [-50.713193310187251, -19.160595442313166],\n              [-50.791943313191325, -19.238444566376614],\n              [-50.84391963353346, -19.310888416796388],\n              [-50.868891558314175, -19.377487540430693],\n              [-50.870924029094823, -19.423849846886768],\n              [-50.864167437040209, -19.437802484137762],\n              [-50.880822711113069, -19.459181879484575],\n              [-50.923790242049023, -19.464125727329417],\n              [-50.96429683539111, -19.511366940069024]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 1497, \"fill\": \"#fff\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-50.234848565377348, -9.842672723581373],\n              [-50.175214774040001, -9.730172719289826],\n              [-50.08409416509528, -9.421918312999608],\n              [-49.979240645470441, -9.220099457644579],\n              [-49.829848549927817, -9.022103844622904],\n              [-49.707900303088365, -8.894970050710626],\n              [-49.612945465481772, -8.839181474363713],\n              [-49.502697658541763, -8.70866389125986],\n              [-49.378947653821115, -8.498297672297554],\n              [-49.282641497803553, -8.301422664787339],\n              [-49.226841935128078, -8.139418264076113],\n              [-49.189949843877002, -7.994970016378346],\n              [-49.172393690863544, -7.867396769324316],\n              [-49.220316055972887, -7.752194128210874],\n              [-49.333947652104456, -7.649142366467331],\n              [-49.340473531259647, -7.510099392413281],\n              [-49.239673966867599, -7.334823506820669],\n              [-49.195124404621282, -7.168556410634423],\n              [-49.209747207913466, -7.005651130982585],\n              [-49.079471324037627, -6.856237062782895],\n              [-48.805417358505139, -6.71831469424032],\n              [-48.652872186670379, -6.595707267688226],\n              [-48.622044548775648, -6.488590564383287],\n              [-48.579966910451759, -6.414125229511413],\n              [-48.527320424068449, -6.3722673177584],\n              [-48.470619982452376, -6.353370832662506],\n              [-48.410096298502964, -6.357655500794763],\n              [-48.391199813407098, -6.308832256744807],\n              [-48.413699814265414, -6.207340553654447],\n              [-48.389848494996187, -6.141862035531645],\n              [-48.319415142699995, -6.112396702376316],\n              [-48.296695415270818, -6.067396700659771],\n              [-48.321216900581248, -6.006642303810906],\n              [-48.307044536759349, -5.965926970226505],\n              [-48.254398050376039, -5.945228727249429],\n              [-48.24540024729842, -5.888517299304809],\n              [-48.280040141197958, -5.795814659049739],\n              [-48.258671732179693, -5.723590535200856],\n              [-48.181273047586529, -5.672064654329048],\n              [-48.159223486198584, -5.619198441374863],\n              [-48.192742774586577, -5.565431349480036],\n              [-48.231447610047439, -5.533241406845832],\n              [-48.275316019923991, -5.522452832215549],\n              [-48.31717393167699, -5.486219920677129],\n              [-48.356999372649341, -5.424344918316791],\n              [-48.421566025503012, -5.398483100923954],\n              [-48.51111558946593, -5.408151070042777],\n              [-48.597523063465246, -5.398702827494787],\n              [-48.721492794756784, -5.355944036801247],\n              [-48.721492794756784, -5.355724310230372],\n              [-48.721943234227098, -5.355043157860635],\n              [-48.630591912382954, -5.330301945979329],\n              [-48.574341910237166, -5.28822430765544],\n              [-48.52349718173511, -5.220504578509647],\n              [-48.458249376511731, -5.180887877779639],\n              [-48.378148055096744, -5.169418150779563],\n              [-48.281622172508321, -5.189457214043955],\n              [-48.16889145531735, -5.240741395687863],\n              [-48.059544527317968, -5.263021669975288],\n              [-47.953119962711327, -5.256276064249221],\n              [-47.884499354624893, -5.285521670833603],\n              [-47.853891443301052, -5.350780462385529],\n              [-47.763221273826645, -5.407250191102179],\n              [-47.612466873544577, -5.454952829640604],\n              [-47.519994946188945, -5.506478710512454],\n              [-47.48579450543113, -5.561146681347864],\n              [-47.444848458947291, -5.749913778392497],\n              [-47.397145820408838, -6.072340548504613],\n              [-47.405473457445254, -6.42109056180837],\n              [-47.47049054976921, -6.795944091732892],\n              [-47.537089673403528, -7.027250252900274],\n              [-47.605721267818495, -7.11476734608253],\n              [-47.665344072827281, -7.16719410589495],\n              [-47.715969074758476, -7.184750258908423],\n              [-47.717089680269964, -7.22210377595826],\n              [-47.668947588589759, -7.279694110186497],\n              [-47.611796707503373, -7.301512958675062],\n              [-47.545867749910258, -7.287582294081119],\n              [-47.506943187878534, -7.305797626807262],\n              [-47.495023021408201, -7.356202902167524],\n              [-47.498395824271256, -7.449806421363292],\n              [-47.458119943828592, -7.534620877723682],\n              [-47.413570381582247, -7.530116483020592],\n              [-47.346520818477643, -7.659733187183832],\n              [-47.303542301213156, -7.66287527714745],\n              [-47.279471255373039, -7.731056432092103],\n              [-47.15009625043777, -7.856146768895158],\n              [-47.078542292630118, -7.976512984424289],\n              [-47.016216850799424, -8.043573533857341],\n              [-46.984949759762941, -8.03906913915435],\n              [-46.868846239708944, -7.958737104839884],\n              [-46.743744916577327, -7.922965619100353],\n              [-46.574094031199394, -7.905189739516004],\n              [-46.489268588510441, -7.963241499543003],\n              [-46.466999300551549, -8.070358202847899],\n              [-46.502770786291137, -8.172948538792639],\n              [-46.507275180994213, -8.27578057396542],\n              [-46.543046666733801, -8.320319149883176],\n              [-46.502770786291137, -8.396146789494537],\n              [-46.658919473888375, -8.396146789494537],\n              [-46.793018600097582, -8.436422669937187],\n              [-46.837568162343928, -8.485465640557948],\n              [-46.882117724590216, -8.583793281027681],\n              [-46.92239360503288, -8.744457349656443],\n              [-46.904617725448503, -8.829271806016934],\n              [-47.065270807748817, -8.976642417107428],\n              [-47.083046687333194, -9.03469417713444],\n              [-47.038497125086849, -9.065983240828018],\n              [-46.940169484617201, -9.070245936303124],\n              [-46.846565965421519, -9.168573576772772],\n              [-46.82857035926628, -9.306957371114194],\n              [-46.752742719654975, -9.409547707058948],\n              [-46.56082254631815, -9.498866558122458],\n              [-46.534048863656182, -9.556918318149457],\n              [-46.600867713861362, -9.650741563916029],\n              [-46.650141397381617, -9.664013048797287],\n              [-46.667917276965966, -9.74434508311171],\n              [-46.507275180994213, -9.855944208462631],\n              [-46.462494905848473, -9.949767454229232],\n              [-46.471492708926121, -10.003314819553111],\n              [-46.346622098693899, -10.168483282885049],\n              [-46.284065943963839, -10.186478889040274],\n              [-46.190242698197267, -10.177470099634036],\n              [-46.087641375923965, -10.208737190670604],\n              [-46.034094010600029, -10.271293345400693],\n              [-45.944775159536533, -10.315853893975543],\n              [-45.757117681674856, -10.329345105427691],\n              [-45.859949716847581, -10.467728899769114],\n              [-46.038367692403682, -10.570319235713882],\n              [-46.087641375923965, -10.583832419823125],\n              [-46.301841823548187, -10.757746000676136],\n              [-46.234792260443555, -10.882858310136299],\n              [-46.248294458224251, -10.914125401172797],\n              [-46.368891386652791, -10.967672766496719],\n              [-46.462494905848473, -11.177599532317288],\n              [-46.529544468953105, -11.235431565773396],\n              [-46.569820349395741, -11.315983326658738],\n              [-46.551824743240559, -11.378297782160814],\n              [-46.489268588510441, -11.414069267900388],\n              [-46.426943146679804, -11.498905696917888],\n              [-46.190242698197267, -11.543444272835643],\n              [-46.083147967549422, -11.601496032862656],\n              [-46.105417255508314, -11.664052187592731],\n              [-46.243790063521175, -11.726608342322805],\n              [-46.275068140886219, -11.766862250108375],\n              [-46.248294458224251, -11.842689889719722],\n              [-46.158964620832222, -11.83370307297065],\n              [-46.100923847133771, -11.864970164007147],\n              [-46.078643572846346, -11.927526318737222],\n              [-46.212522972484692, -11.998849563645479],\n              [-46.248294458224251, -12.048112260837215],\n              [-46.324122097835613, -12.092672809412065],\n              [-46.337624295616308, -12.128444295151638],\n              [-46.346622098693899, -12.342655729104393],\n              [-46.315344021328883, -12.42296579076168],\n              [-46.158964620832222, -12.50329782507616],\n              [-46.158964620832222, -12.601625465545808],\n              [-46.234792260443555, -12.713224590896743],\n              [-46.234792260443555, -12.798039047257149],\n              [-46.301841823548187, -12.833832505653803],\n              [-46.435721223186533, -12.847103990535075],\n              [-46.592089637354633, -12.891862293023721],\n              [-46.645647989007102, -12.922931630146422],\n              [-46.752742719654947, -13.034750482068219],\n              [-46.82857035926628, -13.070302241236917],\n              [-46.971447561982245, -13.070302241236917],\n              [-47.092044490410757, -13.097064937570323],\n              [-47.292973453153735, -13.199896972743062],\n              [-47.440344064244215, -13.248939943363894],\n              [-47.556447584298212, -13.244457521317912],\n              [-47.641042314087741, -13.115082516382643],\n              [-47.721594074973069, -13.150612302894245],\n              [-47.659048906571513, -13.320263188272165],\n              [-47.681318194530405, -13.356056646668833],\n              [-47.855473474611387, -13.293500491938744],\n              [-47.935794522597291, -13.244457521317912],\n              [-48.002844085701895, -13.248939943363894],\n              [-48.074167330610152, -13.195392578039986],\n              [-48.174966895002228, -13.180780761076335],\n              [-48.163716894573071, -13.102470211214026],\n              [-48.226042336403736, -13.092582515524342],\n              [-48.368919539119673, -13.186405761290914],\n              [-48.480518664470594, -13.195392578039986],\n              [-48.587624381447, -13.155116697597322],\n              [-48.654443231652181, -13.177396971884747],\n              [-48.685721309017225, -13.338280767084484],\n              [-48.739268674341133, -13.38281934300224],\n              [-48.775040160080721, -13.351552251965742],\n              [-48.761768675199448, -13.208664062921244],\n              [-48.766273069902525, -13.097064937570323],\n              [-48.801824829071222, -12.998978996328646],\n              [-48.797320434368146, -12.927414052192404],\n              [-48.824094117030086, -12.873866686868496],\n              [-48.926915165874277, -12.784547835805],\n              [-48.998249397111096, -12.748996076636303],\n              [-49.016245003266306, -12.655172830869731],\n              [-49.136622205123956, -12.735504865184154],\n              [-49.29749501399516, -13.003483391031722],\n              [-49.359820455825798, -13.132858395966991],\n              [-49.382320456684113, -13.248939943363894],\n              [-49.520693264697002, -13.199896972743062],\n              [-49.685839755371831, -13.177396971884747],\n              [-49.913542400776748, -13.070302241236917],\n              [-49.971594160803761, -13.025741692662066],\n              [-50.051915208789637, -13.021237297958976],\n              [-50.239341973751891, -12.931918446895494],\n              [-50.270620051116936, -12.891862293023721],\n              [-50.275124445820012, -12.789052230508076],\n              [-50.19929680620865, -12.655172830869731],\n              [-50.203570488012303, -12.570358374509311],\n              [-50.13674065147859, -12.476513156085659],\n              [-50.163745047039981, -12.38765573082101],\n              [-50.295591975897651, -12.490026340194888],\n              [-50.392348571385497, -12.617138161450072],\n              [-50.484820498741158, -12.842599595831999],\n              [-50.566042425667661, -12.819638169174837],\n              [-50.613964790777004, -12.763388167029063],\n              [-50.655372263059689, -12.666862284440654],\n              [-50.660546823803969, -12.558207495139541],\n              [-50.629268746438925, -12.437379853811592],\n              [-50.631740670361324, -12.288646937981625],\n              [-50.667523142429445, -12.112030720306748],\n              [-50.67471918762584, -11.990082473467297],\n              [-50.653570505178465, -11.922340771664409],\n              [-50.661447702744567, -11.853500437007099],\n              [-50.717466991990904, -11.749108343181121],\n              [-50.66572138454822, -11.651901308222961],\n              [-50.671346384762813, -11.573832457588622],\n              [-50.716566113050305, -11.482689875986807],\n              [-50.708018749442999, -11.345668386384844],\n              [-50.64524286814202, -11.162746016125666],\n              [-50.610372261343059, -11.000983314642411],\n              [-50.59912226091393, -10.689806544959453],\n              [-50.550749456334273, -10.567177145750264],\n              [-50.454674013216163, -10.388517470966192],\n              [-50.402697692874028, -10.258241587090311],\n              [-50.395270934778239, -10.176788947264384],\n              [-50.337449887650649, -10.034362184018732],\n              [-50.234848565377348, -9.842672723581373]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 44035, \"fill\": \"#333\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-53.116199993651563, -22.639987664885183],\n              [-52.960721472095528, -22.454824083603015],\n              [-52.566070578134543, -22.207324074161647],\n              [-52.402495132441516, -22.069181979048096],\n              [-52.338818372199967, -21.957341154469304],\n              [-52.245665292474555, -21.840358728131761],\n              [-52.12259644012363, -21.718168782064367],\n              [-52.064995119566902, -21.622763504987418],\n              [-52.072641604233596, -21.554142896900998],\n              [-52.047669679452866, -21.510944653065621],\n              [-51.989848632325305, -21.493630199280119],\n              [-51.954747312626921, -21.469548167111469],\n              [-51.936290280672836, -21.422746407513614],\n              [-51.872844233330682, -21.32982404068764],\n              [-51.856650385056696, -21.260082827089718],\n              [-51.866318354175519, -21.18267315616805],\n              [-51.811419670440642, -21.077138484173474],\n              [-51.691943347523647, -20.943720510334003],\n              [-51.619049057633561, -20.806918747302916],\n              [-51.593165267583686, -20.666513468509322],\n              [-51.534223614944608, -20.55761697998031],\n              [-51.396971412443207, -20.441755159154269],\n              [-51.160721403430983, -20.306513454776464],\n              [-51.063964807943137, -20.223039330498423],\n              [-50.99377315487493, -20.101552509457804],\n              [-50.584049018151433, -19.821203377669605],\n              [-50.488643741074497, -19.790815192916568],\n              [-50.43374505733965, -19.800263435464558],\n              [-50.364443296883508, -19.858556894719527],\n              [-49.377145895939833, -19.978483657106864],\n              [-49.2783678159999, -19.98703102071417],\n              [-49.258790178534298, -20.016957779668289],\n              [-49.288046771447227, -20.073647234955814],\n              [-49.283542376744151, -20.148573995626549],\n              [-49.238992814497863, -20.245539331356738],\n              [-49.199848525895277, -20.294362575406637],\n              [-49.166318251178666, -20.295043727776431],\n              [-49.112770885854729, -20.259272242036786],\n              [-49.039645883065248, -20.18726784475885],\n              [-48.994645881348617, -20.213591087950419],\n              [-48.977990607275785, -20.338241971611808],\n              [-48.952568243024757, -20.41002664231894],\n              [-48.918367802266971, -20.429142853985638],\n              [-48.886869998331065, -20.369970488447152],\n              [-48.858294557787872, -20.232729272274312],\n              [-48.81194323766033, -20.158923117115094],\n              [-48.71564806797133, -20.143849874352583],\n              [-48.363744978375422, -20.138224874138018],\n              [-48.25326645853599, -20.093005145850512],\n              [-48.178339697865255, -20.082875750932857],\n              [-48.109499363207959, -20.116625752220315],\n              [-48.051216890281552, -20.120229267982779],\n              [-47.991143645802424, -20.082875750932857],\n              [-47.9087901270359, -20.081755145421369],\n              [-47.861768640867155, -20.055651628800589],\n              [-47.860197595885353, -20.011991959166366],\n              [-47.818570397031777, -19.980724868129869],\n              [-47.749719076045949, -19.977121352367419],\n              [-47.695490558352276, -19.9910739896184],\n              [-47.655895830279405, -20.022802506453729],\n              [-47.594240554489943, -20.018517838321486],\n              [-47.517742748837378, -19.994216079582017],\n              [-47.459921701709789, -20.000983657965179],\n              [-47.427742745404146, -20.036293717905892],\n              [-47.328964665464184, -20.117526631160942],\n              [-47.244369935674655, -20.173996359877592],\n              [-47.234921693126722, -20.204362571973462],\n              [-47.266199770491767, -20.284694606287886],\n              [-47.292973453153763, -20.423078400629322],\n              [-47.252697572711099, -20.476625765953202],\n              [-47.154589658812313, -20.525668736574076],\n              [-47.109820369995106, -20.632763467221906],\n              [-47.212641418839326, -20.806918747302916],\n              [-47.221419495346026, -20.914013477950732],\n              [-47.145591855734693, -20.981074027383912],\n              [-47.123322567775801, -21.132949033177482],\n              [-47.056273004671198, -21.195263488679586],\n              [-46.993947562840532, -21.342656072427161],\n              [-47.002714653018757, -21.400707832454088],\n              [-46.895619922370884, -21.405190254500155],\n              [-46.815298874385007, -21.3606516785824],\n              [-46.685693156550315, -21.396203437751083],\n              [-46.654645792084722, -21.373923163463658],\n              [-46.605372108564438, -21.42747052878758],\n              [-46.507275180994213, -21.458737619824078],\n              [-46.493772983213518, -21.525798169257229],\n              [-46.56082254631815, -21.672949053776847],\n              [-46.605372108564438, -21.681957843183],\n              [-46.627872109422754, -21.771276694246495],\n              [-46.667917276965966, -21.811552574689145],\n              [-46.658919473888375, -21.905156093884841],\n              [-46.618874306345134, -21.98546615554217],\n              [-46.658919473888375, -22.052526704975335],\n              [-46.600867713861362, -22.132858739289759],\n              [-46.663423868591451, -22.204401710768877],\n              [-46.69919535433101, -22.320263531594932],\n              [-46.641143594304026, -22.409604355315508],\n              [-46.547320348537454, -22.440871446352006],\n              [-46.543046666733801, -22.472138537388503],\n              [-46.453716829341744, -22.516699085963353],\n              [-46.395665069314759, -22.615026726433001],\n              [-46.471492708926121, -22.682065303209072],\n              [-46.368891386652791, -22.748906126071347],\n              [-46.359893583575172, -22.842729371837919],\n              [-46.288570338666915, -22.882763553052598],\n              [-46.154471212457679, -22.847233766540995],\n              [-46.14569313595095, -22.891772342458765],\n              [-46.020591812819333, -22.873996462874416],\n              [-45.908992687468412, -22.820449097550494],\n              [-45.859949716847581, -22.860505251422268],\n              [-45.792900153742977, -22.851716188586991],\n              [-45.743846196793584, -22.797949096692193],\n              [-45.743846196793584, -22.726625851783922],\n              [-45.801897956820596, -22.699841182793421],\n              [-45.672292238985904, -22.619531121136077],\n              [-45.629775147520235, -22.622673211099695],\n              [-45.58319311449327, -22.615026726433001],\n              [-45.52964574916939, -22.65079821217256],\n              [-45.470923823101202, -22.611642937241413],\n              [-45.40904882074085, -22.646293817469484],\n              [-45.270665026399399, -22.606017937026849],\n              [-45.243891343737459, -22.561479361109079],\n              [-45.056244852204316, -22.467656115342507],\n              [-44.92236545256597, -22.449880235758172],\n              [-44.833046601502474, -22.405099960612404],\n              [-44.770721159671723, -22.423095566767586],\n              [-44.650124231243183, -22.561479361109093],\n              [-44.636622033462515, -22.601513542323801],\n              [-44.538525105892347, -22.619531121136106],\n              [-44.216999214720829, -22.592746452145548],\n              [-44.167945257771521, -22.699841182793421],\n              [-44.248266305757397, -22.74890612607129],\n              [-44.275039988419337, -22.820449097550522],\n              [-44.35986543110829, -22.85600085671922],\n              [-44.471464556459125, -22.851716188586977],\n              [-44.587568076513207, -22.878500857577478],\n              [-44.72594088452604, -22.936552617604434],\n              [-44.79749484233372, -22.990099982928371],\n              [-44.806272918840477, -23.13725086744796],\n              [-44.864324678867433, -23.204289444224003],\n              [-44.782872039041592, -23.353923238994639],\n              [-44.951622045478871, -23.381367087697811],\n              [-45.21531590319421, -23.575539458386174],\n              [-45.325343983563357, -23.599621490554739],\n              [-45.423221184562749, -23.68535879851288],\n              [-45.4333395931518, -23.758483801302418],\n              [-45.464397943945983, -23.802582924078365],\n              [-45.527173825246848, -23.804824135101398],\n              [-45.664645754319167, -23.764767981229625],\n              [-45.843074716203887, -23.763647375718108],\n              [-45.971999281668786, -23.795595619124356],\n              [-46.630794472815467, -24.110375904569707],\n              [-46.867275194727029, -24.236367120313503],\n              [-47.137275205026754, -24.493095645731842],\n              [-47.5922190700378, -24.781091262186806],\n              [-47.831171715871847, -24.953005331244754],\n              [-47.876622157058762, -24.997543907162594],\n              [-47.914195400679546, -24.999807090842637],\n              [-47.989122161350281, -25.035798303153058],\n              [-47.959415128967009, -25.065505335536272],\n              [-47.908339687565501, -25.068207972358152],\n              [-47.929499356341466, -25.168315398051959],\n              [-48.024443207619584, -25.236716279567474],\n              [-48.077540133473207, -25.290263644891439],\n              [-48.087669528390848, -25.280156222630879],\n              [-48.091943210194501, -25.235595674056029],\n              [-48.185766455961073, -25.190815398910289],\n              [-48.230546731106813, -25.012397423354116],\n              [-48.26609849027551, -25.034677697641598],\n              [-48.41346910136599, -24.958850058030265],\n              [-48.511796741835639, -25.083720668262458],\n              [-48.565344107159603, -25.056957971928966],\n              [-48.54284410630126, -24.811479446939771],\n              [-48.489296740977352, -24.74441889750662],\n              [-48.61439806410894, -24.681862742776545],\n              [-48.779544554783797, -24.695375926885774],\n              [-48.828598511733162, -24.66410883584922],\n              [-49.025023079773064, -24.668591257895272],\n              [-49.092072642877667, -24.686367137479621],\n              [-49.216943253109861, -24.690871532182697],\n              [-49.29749501399516, -24.664108835849291],\n              [-49.310766498876433, -24.530229436210945],\n              [-49.239443253968147, -24.418630310860024],\n              [-49.22594105618748, -24.338298276545572],\n              [-49.274995013136845, -24.315798275687285],\n              [-49.337540181538373, -24.213207939742531],\n              [-49.333046773163858, -24.14186272217718],\n              [-49.409094139346081, -24.083832934807262],\n              [-49.601025299011411, -23.86489737958054],\n              [-49.569747221646367, -23.833850015114933],\n              [-49.551971342062075, -23.713242100357832],\n              [-49.605518707385954, -23.641699128878713],\n              [-49.654572664335348, -23.507819729240353],\n              [-49.614296783892684, -23.409733787998675],\n              [-49.636796784750999, -23.257858782205105],\n              [-49.730400303946681, -23.105983776411534],\n              [-49.909048992402205, -23.034638558846183],\n              [-49.913542400776748, -22.985595588225337],\n              [-49.958091963023065, -22.963315313937912],\n              [-49.971594160803761, -22.914052616746176],\n              [-50.123249440026427, -22.940815313079611],\n              [-50.292900325404389, -22.95432849718884],\n              [-50.368947691586584, -22.91405261674619],\n              [-50.431273133417221, -22.945319707782687],\n              [-50.627697701457123, -22.923039433495262],\n              [-50.726025341926771, -22.949824102485763],\n              [-50.784066115625222, -22.945319707782687],\n              [-50.882174029523981, -22.820449097550494],\n              [-51.002770957952521, -22.793664428559993],\n              [-51.181419646408045, -22.739897336665194],\n              [-51.35534421358966, -22.65079821217256],\n              [-51.547495099825852, -22.686349971341272],\n              [-51.641098619021534, -22.650798212172575],\n              [-51.69464598434547, -22.664069697053776],\n              [-51.743919667865725, -22.619531121136077],\n              [-51.873294672800995, -22.610522331729925],\n              [-51.984893798151916, -22.54796617699985],\n              [-52.065214846137792, -22.521203480666429],\n              [-52.141273198648562, -22.543483754953854],\n              [-52.16354248660744, -22.601513542323772],\n              [-52.217089851931362, -22.641789422766422],\n              [-52.261650400506213, -22.601513542323772],\n              [-52.315197765830135, -22.619531121136077],\n              [-52.44479249733628, -22.601513542323772],\n              [-52.520620136947628, -22.615026726433001],\n              [-52.6144433827142, -22.570466177858151],\n              [-52.694775417028623, -22.601513542323772],\n              [-52.949240758766962, -22.570466177858123],\n              [-53.044415322944445, -22.636406121779814],\n              [-53.116199993651563, -22.639987664885183]\n            ]\n          ],\n          [\n            [\n              [-45.249065904481711, -23.782543860813973],\n              [-45.233091782778615, -23.825302651507627],\n              [-45.250197496321732, -23.852966226781632],\n              [-45.260315904910783, -23.889199138320066],\n              [-45.260997057280576, -23.941406171561539],\n              [-45.302624256134209, -23.914841229141985],\n              [-45.412872063074133, -23.934880292406433],\n              [-45.4513461856356, -23.895505290904396],\n              [-45.302393543234757, -23.72765616340763],\n              [-45.272247057709762, -23.751957922147199],\n              [-45.249065904481711, -23.782543860813973]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 6850, \"fill\": \"#999\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-48.721943234227098, -5.355043157860635],\n              [-48.730490597834375, -5.338168157216899],\n              [-48.252816019065619, -4.954327810543248],\n              [-47.801915122958917, -4.597030433632256],\n              [-47.65454451186838, -4.606017250381342],\n              [-47.583221266960209, -4.547965490354329],\n              [-47.489398021193608, -4.423094880122107],\n              [-47.458119943828592, -4.338280423761717],\n              [-47.382292304217231, -4.275724269031571],\n              [-47.333018620696976, -4.164125143680735],\n              [-47.310749332738055, -4.065797503211058],\n              [-47.28846905845063, -4.079288714663221],\n              [-47.065270807748732, -3.842599252509217],\n              [-47.024994927306068, -3.59712072751995],\n              [-47.029499322009201, -3.570358031186515],\n              [-46.966943167279112, -3.525797482611608],\n              [-46.944673879320192, -3.396202751105534],\n              [-46.859848436631296, -3.329142201672369],\n              [-46.824296677462542, -3.329142201672369],\n              [-46.743744916577327, -3.190780379988041],\n              [-46.667917276965966, -3.092672466089311],\n              [-46.636650185929511, -2.985577735441382],\n              [-46.650141397381617, -2.91401279130514],\n              [-46.574094031199365, -2.847193941099988],\n              [-46.667917276965966, -2.739879483881225],\n              [-46.600867713861305, -2.664051844269977],\n              [-46.507275180994213, -2.614986900991994],\n              [-46.484994906706731, -2.547948324215952],\n              [-46.426943146679776, -2.512396565047197],\n              [-46.435721223186533, -2.409564529874501],\n              [-46.408947540524537, -2.387306228244199],\n              [-46.413440948899051, -2.239913644496539],\n              [-46.377669463159521, -2.253426828605825],\n              [-46.279572535589239, -2.141827703254933],\n              [-46.212522972484635, -1.927396542731231],\n              [-46.217016380859263, -1.807030327202142],\n              [-46.301841823548159, -1.802525932499123],\n              [-46.315344021328883, -1.73098296101989],\n              [-46.243790063521089, -1.722193898184685],\n              [-46.199240501274801, -1.677413623038944],\n              [-46.181244895119619, -1.574823287094205],\n              [-46.199240501274801, -1.485504436030624],\n              [-46.123193135092549, -1.34712064168923],\n              [-46.158964620832137, -1.315853550652776],\n              [-46.141199727576407, -1.240025911041414],\n              [-46.007089615038637, -1.146861844987484],\n              [-45.972219008239676, -1.187379424658161],\n              [-45.778716803592545, -1.250814485671697],\n              [-45.644848390282675, -1.347801794059023],\n              [-45.556869871301558, -1.330707066844354],\n              [-45.458542230831938, -1.35634915766633],\n              [-45.353018545165924, -1.567396528998415],\n              [-45.329167225896754, -1.717250050339828],\n              [-45.28214573972798, -1.696551807362709],\n              [-45.238497056422204, -1.629491257929601],\n              [-45.182016341377107, -1.507103557948312],\n              [-45.076272929140146, -1.466366251706802],\n              [-45.025867653779869, -1.513387737875576],\n              [-44.91967380207268, -1.588775924345214],\n              [-44.828322480228508, -1.671568896253461],\n              [-44.78984835766704, -1.724896535006508],\n              [-44.72121676325213, -1.733443898613814],\n              [-44.778598357237854, -1.798922416736616],\n              [-44.72099703668124, -1.792396537581453],\n              [-44.651244836754756, -1.74581450455446],\n              [-44.591622031745942, -1.841900934001103],\n              [-44.546841756600202, -1.946293027827096],\n              [-44.537843953522554, -2.052728578762299],\n              [-44.579921591846528, -2.113922428752971],\n              [-44.617275108896422, -2.152176824743435],\n              [-44.658671594850546, -2.22754303855595],\n              [-44.707494838900516, -2.241056222665179],\n              [-44.756318082950543, -2.265577707975638],\n              [-44.700749233174406, -2.320465405381867],\n              [-44.662494837183942, -2.373353590993133],\n              [-44.579020712905901, -2.23046540194872],\n              [-44.520298786837714, -2.190431220734013],\n              [-44.435473344148761, -2.168150946446588],\n              [-44.391374221372701, -2.269620676879811],\n              [-44.381914992496263, -2.365465407098554],\n              [-44.520068073938262, -2.405521560970271],\n              [-44.520749226307998, -2.481349200581633],\n              [-44.561914999362671, -2.524327717846177],\n              [-44.588919394924062, -2.57337068846698],\n              [-44.610749229741202, -2.676861903352346],\n              [-44.638874230814167, -2.762599211310487],\n              [-44.721447476151525, -3.142396589079851],\n              [-44.723018521133326, -3.204733017238993],\n              [-44.622669396211563, -3.137892194376775],\n              [-44.437494828600848, -2.944400976058205],\n              [-44.381244826455088, -2.738297452570919],\n              [-44.30811982366555, -2.535116292476459],\n              [-44.2286996546203, -2.47121980566402],\n              [-44.179414984771427, -2.47121980566402],\n              [-44.105619815940827, -2.493500079951446],\n              [-44.101346134137202, -2.560099203585764],\n              [-44.112596134566274, -2.598573326147118],\n              [-44.191565864141296, -2.699603603438618],\n              [-44.225096138857907, -2.754952726643808],\n              [-44.192697455981374, -2.809620697479147],\n              [-44.013147888585195, -2.642232995781399],\n              [-43.932815854270757, -2.583500083384649],\n              [-43.864414972755185, -2.595431236183515],\n              [-43.728525074993286, -2.51824129183268],\n              [-43.455141275502001, -2.502047443558695],\n              [-43.434673745424391, -2.413629471435797],\n              [-43.379994788260376, -2.376056227815013],\n              [-43.229690827448678, -2.385943923504726],\n              [-42.936740376820353, -2.465155352307647],\n              [-42.83234828299436, -2.529491292261866],\n              [-42.675968882497727, -2.589564536741022],\n              [-42.593615363731146, -2.661129480877207],\n              [-42.24958947170137, -2.792064544465745],\n              [-41.999848251236983, -2.806017181716754],\n              [-41.876098246516335, -2.746625089607392],\n              [-41.846171487562231, -2.758775968977091],\n              [-41.868891214991407, -2.851698335803107],\n              [-41.815343849667499, -2.936293065592636],\n              [-41.842117532329439, -3.034620706062299],\n              [-41.922449566643877, -3.110448345673632],\n              [-42.002770614629753, -3.231056260430719],\n              [-42.105371936903055, -3.262323351467202],\n              [-42.100867542199978, -3.302379505338976],\n              [-42.216971062253975, -3.431974236845122],\n              [-42.364341673344484, -3.44975011642947],\n              [-42.453671510736513, -3.476512812762891],\n              [-42.502714481357344, -3.44975011642947],\n              [-42.574268439165053, -3.570358031186515],\n              [-42.627815804488961, -3.614896607104313],\n              [-42.676869761438354, -3.699733036121813],\n              [-42.663367563657658, -3.789051887185309],\n              [-42.734921521465367, -3.922931286823655],\n              [-42.851025041519335, -4.039012834220557],\n              [-42.891070209062576, -4.141844869393296],\n              [-42.989397849532224, -4.239952783292068],\n              [-42.953615377464104, -4.391827789085639],\n              [-42.895574603765681, -4.405099273966925],\n              [-42.864296526400608, -4.498922519733469],\n              [-42.913570209920863, -4.637306314074863],\n              [-42.94912196908956, -4.659564615705236],\n              [-42.931346089505212, -4.731129559841463],\n              [-42.953615377464104, -4.775668135759233],\n              [-42.904572406843272, -4.829215501083155],\n              [-42.855518449893907, -4.936332204388066],\n              [-42.833018449035563, -5.097194026930723],\n              [-42.806244766373652, -5.159530455089907],\n              [-42.833018449035563, -5.311405460883492],\n              [-42.913570209920863, -5.391715522540821],\n              [-43.047449609559209, -5.597137893658314],\n              [-43.100996974883174, -5.623922562648772],\n              [-43.083221095298796, -5.713241413712311],\n              [-43.109994777960765, -5.771293173739309],\n              [-43.074223292221177, -6.057047579171225],\n              [-43.002669334413497, -6.12386642937642],\n              [-42.962624166870256, -6.186422584106495],\n              [-42.851025041519335, -6.253483133539646],\n              [-42.868789934775151, -6.436405503798838],\n              [-42.855518449893907, -6.480944079716608],\n              [-42.913570209920863, -6.615043205925815],\n              [-42.917843891724516, -6.668590571249737],\n              [-42.980400046454633, -6.744418210861056],\n              [-43.13227505224819, -6.780189696600658],\n              [-43.19909390245337, -6.753427000267237],\n              [-43.30191495129759, -6.802469970888012],\n              [-43.462568033597847, -6.842745851330733],\n              [-43.560895674067524, -6.753427000267266],\n              [-43.676768481222069, -6.699879634943329],\n              [-43.815372002134382, -6.708646725121511],\n              [-43.953744810147271, -6.762194090445348],\n              [-44.038570252836223, -6.766698485148481],\n              [-44.060839540795115, -6.829254639878584],\n              [-44.092117618160131, -6.806974365591159],\n              [-44.163440863068445, -6.887306399905583],\n              [-44.167945257771521, -6.923077885645114],\n              [-44.257275095163521, -7.007892342005576],\n              [-44.306318065784353, -7.110504650607368],\n              [-44.449195268500318, -7.146276136347012],\n              [-44.578570273435588, -7.248866472291766],\n              [-44.712669399644824, -7.396237083382246],\n              [-44.815270721918125, -7.364969992345763],\n              [-44.909093967684726, -7.445302026660158],\n              [-45.024966774839299, -7.494344997281019],\n              [-45.297449695389901, -7.556901152011108],\n              [-45.471593989142377, -7.673004672065105],\n              [-45.542917234050634, -7.869418253776431],\n              [-45.578699706118755, -8.150668264505271],\n              [-45.654516359401555, -8.253280573107133],\n              [-45.659020754104631, -8.311332333134118],\n              [-45.734848393715993, -8.431918275234068],\n              [-45.752843999871203, -8.561293280169366],\n              [-45.819673836404945, -8.699896801081678],\n              [-45.926768567052761, -8.788995925574284],\n              [-45.980546645276121, -8.927599446486596],\n              [-45.940270764833457, -9.012194176276125],\n              [-45.935766370130409, -9.119530606151898],\n              [-45.904499279093898, -9.177582366178939],\n              [-45.895721202587197, -9.32921567274451],\n              [-45.828671639482536, -9.373995947890265],\n              [-45.79739356211752, -9.463095072382885],\n              [-45.837669442560156, -9.534638043862032],\n              [-45.859949716847581, -9.833663934175206],\n              [-45.859949716847581, -9.99883239750713],\n              [-45.899994884390821, -10.02559509384055],\n              [-45.899994884390821, -10.083646853867549],\n              [-45.953542249714729, -10.181974494337197],\n              [-45.935766370130409, -10.213241585373623],\n              [-45.944775159536533, -10.315853893975543],\n              [-46.034094010600029, -10.271293345400693],\n              [-46.087641375923965, -10.208737190670604],\n              [-46.190242698197267, -10.177470099634036],\n              [-46.284065943963839, -10.186478889040274],\n              [-46.346622098693899, -10.168483282885049],\n              [-46.471492708926121, -10.003314819553111],\n              [-46.462494905848473, -9.949767454229232],\n              [-46.507275180994213, -9.855944208462631],\n              [-46.667917276965966, -9.74434508311171],\n              [-46.650141397381617, -9.664013048797287],\n              [-46.600867713861362, -9.650741563916029],\n              [-46.534048863656182, -9.556918318149457],\n              [-46.56082254631815, -9.498866558122458],\n              [-46.752742719654975, -9.409547707058948],\n              [-46.82857035926628, -9.306957371114194],\n              [-46.846565965421519, -9.168573576772772],\n              [-46.940169484617201, -9.070245936303124],\n              [-47.038497125086849, -9.065983240828018],\n              [-47.083046687333194, -9.03469417713444],\n              [-47.065270807748817, -8.976642417107428],\n              [-46.904617725448503, -8.829271806016934],\n              [-46.92239360503288, -8.744457349656443],\n              [-46.882117724590216, -8.583793281027681],\n              [-46.837568162343928, -8.485465640557948],\n              [-46.793018600097582, -8.436422669937187],\n              [-46.658919473888375, -8.396146789494537],\n              [-46.502770786291137, -8.396146789494537],\n              [-46.543046666733801, -8.320319149883176],\n              [-46.507275180994213, -8.27578057396542],\n              [-46.502770786291137, -8.172948538792639],\n              [-46.466999300551549, -8.070358202847899],\n              [-46.489268588510441, -7.963241499543003],\n              [-46.574094031199394, -7.905189739516004],\n              [-46.743744916577327, -7.922965619100353],\n              [-46.868846239708944, -7.958737104839884],\n              [-46.984949759762941, -8.03906913915435],\n              [-47.016216850799424, -8.043573533857341],\n              [-47.078542292630118, -7.976512984424289],\n              [-47.15009625043777, -7.856146768895158],\n              [-47.279471255373039, -7.731056432092103],\n              [-47.303542301213156, -7.66287527714745],\n              [-47.346520818477643, -7.659733187183832],\n              [-47.413570381582247, -7.530116483020592],\n              [-47.458119943828592, -7.534620877723682],\n              [-47.498395824271256, -7.449806421363292],\n              [-47.495023021408201, -7.356202902167524],\n              [-47.506943187878534, -7.305797626807262],\n              [-47.545867749910258, -7.287582294081119],\n              [-47.611796707503373, -7.301512958675062],\n              [-47.668947588589759, -7.279694110186497],\n              [-47.717089680269964, -7.22210377595826],\n              [-47.715969074758476, -7.184750258908423],\n              [-47.665344072827281, -7.16719410589495],\n              [-47.605721267818495, -7.11476734608253],\n              [-47.537089673403528, -7.027250252900274],\n              [-47.47049054976921, -6.795944091732892],\n              [-47.405473457445254, -6.42109056180837],\n              [-47.397145820408838, -6.072340548504613],\n              [-47.444848458947291, -5.749913778392497],\n              [-47.48579450543113, -5.561146681347864],\n              [-47.519994946188945, -5.506478710512454],\n              [-47.612466873544577, -5.454952829640604],\n              [-47.763221273826645, -5.407250191102179],\n              [-47.853891443301052, -5.350780462385529],\n              [-47.884499354624893, -5.285521670833603],\n              [-47.953119962711327, -5.256276064249221],\n              [-48.059544527317968, -5.263021669975288],\n              [-48.16889145531735, -5.240741395687863],\n              [-48.281622172508321, -5.189457214043955],\n              [-48.378148055096744, -5.169418150779563],\n              [-48.458249376511731, -5.180887877779639],\n              [-48.52349718173511, -5.220504578509647],\n              [-48.574341910237166, -5.28822430765544],\n              [-48.630591912382954, -5.330301945979329],\n              [-48.721943234227098, -5.355043157860635]\n            ]\n          ],\n          [\n            [\n              [-44.565298788554287, -2.923922459651919],\n              [-44.581943076298614, -2.845611909789682],\n              [-44.569122030887684, -2.784879485597855],\n              [-44.501841754883628, -2.726146573201106],\n              [-44.481374224806018, -2.717599209593914],\n              [-44.487218951591387, -2.789823333442769],\n              [-44.482494830317421, -2.811861908502237],\n              [-44.4993698309612, -2.939676854784238],\n              [-44.59769747143082, -3.037543069454955],\n              [-44.565298788554287, -2.923922459651919]\n            ]\n          ],\n          [\n            [\n              [-45.011244850487628, -1.34463773143824],\n              [-44.99549045535548, -1.347582067488133],\n              [-44.978615454711758, -1.267250033173696],\n              [-44.88839572470755, -1.276918002292462],\n              [-44.882990451063961, -1.317875035104862],\n              [-44.947117650775738, -1.366017126785096],\n              [-44.967815893752913, -1.39078031132351],\n              [-45.020923805935013, -1.372323279369425],\n              [-45.011244850487628, -1.34463773143824]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 16461, \"fill\": \"#666\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-44.782872039041592, -23.353923238994639],\n              [-44.864324678867433, -23.204289444224003],\n              [-44.806272918840477, -23.13725086744796],\n              [-44.79749484233372, -22.990099982928371],\n              [-44.72594088452604, -22.936552617604434],\n              [-44.587568076513207, -22.878500857577478],\n              [-44.471464556459125, -22.851716188586977],\n              [-44.35986543110829, -22.85600085671922],\n              [-44.275039988419337, -22.820449097550522],\n              [-44.248266305757397, -22.74890612607129],\n              [-44.167945257771521, -22.699841182793421],\n              [-44.216999214720829, -22.592746452145548],\n              [-44.538525105892347, -22.619531121136106],\n              [-44.636622033462515, -22.601513542323801],\n              [-44.650124231243183, -22.561479361109093],\n              [-44.770721159671723, -22.423095566767586],\n              [-44.833046601502474, -22.405099960612404],\n              [-44.730445279229173, -22.360539412037582],\n              [-44.663395716124569, -22.369548201443706],\n              [-44.601070274293903, -22.316000836119827],\n              [-44.534020711189271, -22.302487652010583],\n              [-44.444690873797242, -22.253444681389752],\n              [-44.293046580903109, -22.239953469937589],\n              [-44.216999214720857, -22.248940286686661],\n              [-44.092117618160131, -22.173112647075314],\n              [-43.895693050120258, -22.106074070299258],\n              [-43.815372002134382, -22.065798189856594],\n              [-43.565169355871149, -22.065798189856594],\n              [-43.462568033597847, -22.057031099678412],\n              [-43.341971105169364, -22.003483734354461],\n              [-43.13227505224819, -22.02574203598482],\n              [-43.063423731262333, -22.063556978833603],\n              [-42.279516230655531, -21.713224934219511],\n              [-42.284020625358579, -21.641901689311226],\n              [-42.36884606804756, -21.632892899905073],\n              [-42.364341673344484, -21.592617019462423],\n              [-42.301796504942928, -21.485522288814579],\n              [-42.297292110239852, -21.405190254500155],\n              [-42.221464470628518, -21.338151677724113],\n              [-42.181419303085278, -21.163996397643089],\n              [-42.096593860396325, -21.003354301671337],\n              [-42.141143422642642, -20.963298147799563],\n              [-42.096593860396325, -20.923022267356913],\n              [-41.998266219926677, -20.932031056763066],\n              [-41.962494734187089, -20.909750782475641],\n              [-41.92694297501842, -20.829199021590341],\n              [-41.864397806616864, -20.775651656266419],\n              [-41.743789891859791, -20.820431931412145],\n              [-41.712522800823308, -20.976569632680821],\n              [-41.730518406978518, -21.043630182113986],\n              [-41.712522800823308, -21.110449032319167],\n              [-41.440270593172073, -21.199767883382663],\n              [-41.391216636222708, -21.186496398501404],\n              [-41.266115313091092, -21.231056947076254],\n              [-41.069690745051219, -21.213281067491906],\n              [-40.967539862248202, -21.27559552299401],\n              [-41.047190744192903, -21.505781078649875],\n              [-41.02311969835273, -21.596901687594595],\n              [-41.021548653370985, -21.610854324845604],\n              [-40.987798652083427, -21.92022933664731],\n              [-41.000399970923581, -21.998979339651441],\n              [-41.122567944333866, -22.084474948381569],\n              [-41.582917082988558, -22.243556985700025],\n              [-41.705546482197747, -22.309694683535497],\n              [-41.980490340342328, -22.580595572775735],\n              [-41.997596053885445, -22.644733758816187],\n              [-41.986115340556921, -22.735854367760908],\n              [-41.940895612269344, -22.788281127573384],\n              [-41.987466658967833, -22.845190309431814],\n              [-42.042365342702681, -22.94712146566394],\n              [-42.12246666411761, -22.940815313079611],\n              [-42.581025031219667, -22.94105701230751],\n              [-42.829195206702195, -22.973224982284705],\n              [-42.958339498738042, -22.967138556271266],\n              [-43.016171532194221, -22.942617070960807],\n              [-43.081199610846681, -22.902582889746157],\n              [-43.100766261983722, -22.850156129933737],\n              [-43.065445215714476, -22.770724974559869],\n              [-43.086374171590933, -22.723242062592306],\n              [-43.154324613636163, -22.725263547044392],\n              [-43.229020661407503, -22.747543821331874],\n              [-43.241841706818434, -22.795026733299437],\n              [-43.236667146074183, -22.828776734586938],\n              [-43.208772857900669, -22.878039431778575],\n              [-43.1936996151382, -22.938574102056521],\n              [-43.224065827234085, -22.991220588439887],\n              [-43.369414953872422, -22.997966194165997],\n              [-43.532770672994559, -23.04634998507413],\n              [-43.736621999130307, -23.066608774909412],\n              [-43.898846126412366, -23.101479381708486],\n              [-43.973772887083101, -23.057380258932426],\n              [-43.898846126412366, -23.035319711215834],\n              [-43.791520682865098, -23.04588855927534],\n              [-43.675867602281471, -23.009457893823082],\n              [-43.702871997842863, -22.966237677330582],\n              [-43.866216730636381, -22.910449100983726],\n              [-44.047568055913871, -22.944638555412894],\n              [-44.147917180835577, -23.011017952476379],\n              [-44.367973341573816, -23.004953499120006],\n              [-44.637292199503747, -23.05557850105123],\n              [-44.681171595708861, -23.106862682695066],\n              [-44.673744837613071, -23.206552627904102],\n              [-44.621098351229705, -23.228591202963571],\n              [-44.569792196928859, -23.274052630479048],\n              [-44.619065880449114, -23.316349995373798],\n              [-44.667218958457852, -23.335246480469664],\n              [-44.782872039041592, -23.353923238994639]\n            ]\n          ],\n          [\n            [\n              [-44.155794378401652, -23.166496474032442],\n              [-44.220591744154774, -23.190798232771897],\n              [-44.320039990135911, -23.212397354689585],\n              [-44.360096144007684, -23.172121474246921],\n              [-44.274150095807272, -23.116332897900065],\n              [-44.242872018442199, -23.074013560348192],\n              [-44.220372017583884, -23.083022349754401],\n              [-44.191565864141296, -23.113168835279282],\n              [-44.129240422310602, -23.141974988721927],\n              [-44.097973331274147, -23.169418837425098],\n              [-44.155794378401652, -23.166496474032442]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 3195, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-45.757117681674856, -10.329345105427691],\n              [-45.944775159536533, -10.315853893975543],\n              [-45.935766370130409, -10.213241585373623],\n              [-45.953542249714729, -10.181974494337197],\n              [-45.899994884390821, -10.083646853867549],\n              [-45.899994884390821, -10.02559509384055],\n              [-45.859949716847581, -9.99883239750713],\n              [-45.859949716847581, -9.833663934175206],\n              [-45.837669442560156, -9.534638043862032],\n              [-45.79739356211752, -9.463095072382885],\n              [-45.828671639482536, -9.373995947890265],\n              [-45.895721202587197, -9.32921567274451],\n              [-45.904499279093898, -9.177582366178939],\n              [-45.935766370130409, -9.119530606151898],\n              [-45.940270764833457, -9.012194176276125],\n              [-45.980546645276121, -8.927599446486596],\n              [-45.926768567052761, -8.788995925574284],\n              [-45.819673836404945, -8.699896801081678],\n              [-45.752843999871203, -8.561293280169366],\n              [-45.734848393715993, -8.431918275234068],\n              [-45.659020754104631, -8.311332333134118],\n              [-45.654516359401555, -8.253280573107133],\n              [-45.578699706118755, -8.150668264505271],\n              [-45.542917234050634, -7.869418253776431],\n              [-45.471593989142377, -7.673004672065105],\n              [-45.297449695389901, -7.556901152011108],\n              [-45.024966774839299, -7.494344997281019],\n              [-44.909093967684726, -7.445302026660158],\n              [-44.815270721918125, -7.364969992345763],\n              [-44.712669399644824, -7.396237083382246],\n              [-44.578570273435588, -7.248866472291766],\n              [-44.449195268500318, -7.146276136347012],\n              [-44.306318065784353, -7.110504650607368],\n              [-44.257275095163521, -7.007892342005576],\n              [-44.167945257771521, -6.923077885645114],\n              [-44.163440863068445, -6.887306399905583],\n              [-44.092117618160131, -6.806974365591159],\n              [-44.060839540795115, -6.829254639878584],\n              [-44.038570252836223, -6.766698485148481],\n              [-43.953744810147271, -6.762194090445348],\n              [-43.815372002134382, -6.708646725121511],\n              [-43.676768481222069, -6.699879634943329],\n              [-43.560895674067524, -6.753427000267266],\n              [-43.462568033597847, -6.842745851330733],\n              [-43.30191495129759, -6.802469970888012],\n              [-43.19909390245337, -6.753427000267237],\n              [-43.13227505224819, -6.780189696600658],\n              [-42.980400046454633, -6.744418210861056],\n              [-42.917843891724516, -6.668590571249737],\n              [-42.913570209920863, -6.615043205925815],\n              [-42.855518449893907, -6.480944079716608],\n              [-42.868789934775151, -6.436405503798838],\n              [-42.851025041519335, -6.253483133539646],\n              [-42.962624166870256, -6.186422584106495],\n              [-43.002669334413497, -6.12386642937642],\n              [-43.074223292221177, -6.057047579171225],\n              [-43.109994777960765, -5.771293173739309],\n              [-43.083221095298796, -5.713241413712311],\n              [-43.100996974883174, -5.623922562648772],\n              [-43.047449609559209, -5.597137893658314],\n              [-42.913570209920863, -5.391715522540821],\n              [-42.833018449035563, -5.311405460883492],\n              [-42.806244766373652, -5.159530455089907],\n              [-42.833018449035563, -5.097194026930723],\n              [-42.855518449893907, -4.936332204388066],\n              [-42.904572406843272, -4.829215501083155],\n              [-42.953615377464104, -4.775668135759233],\n              [-42.931346089505212, -4.731129559841463],\n              [-42.94912196908956, -4.659564615705236],\n              [-42.913570209920863, -4.637306314074863],\n              [-42.864296526400608, -4.498922519733469],\n              [-42.895574603765681, -4.405099273966925],\n              [-42.953615377464104, -4.391827789085639],\n              [-42.989397849532224, -4.239952783292068],\n              [-42.891070209062576, -4.141844869393296],\n              [-42.851025041519335, -4.039012834220557],\n              [-42.734921521465367, -3.922931286823655],\n              [-42.663367563657658, -3.789051887185309],\n              [-42.676869761438354, -3.699733036121813],\n              [-42.627815804488961, -3.614896607104313],\n              [-42.574268439165053, -3.570358031186515],\n              [-42.502714481357344, -3.44975011642947],\n              [-42.453671510736513, -3.476512812762891],\n              [-42.364341673344484, -3.44975011642947],\n              [-42.216971062253975, -3.431974236845122],\n              [-42.100867542199978, -3.302379505338976],\n              [-42.105371936903055, -3.262323351467202],\n              [-42.002770614629753, -3.231056260430719],\n              [-41.922449566643877, -3.110448345673632],\n              [-41.842117532329439, -3.034620706062299],\n              [-41.815343849667499, -2.936293065592636],\n              [-41.868891214991407, -2.851698335803107],\n              [-41.846171487562231, -2.758775968977091],\n              [-41.721971043371212, -2.808939545109496],\n              [-41.640067964075001, -2.878702731364498],\n              [-41.479865321245001, -2.916495701556187],\n              [-41.318322346332621, -2.936293065592636],\n              [-41.268598223342053, -2.916056248414421],\n              [-41.257117510013472, -3.079181254637149],\n              [-41.377714438442013, -3.271332140873369],\n              [-41.426768395391377, -3.320375111494201],\n              [-41.449268396249693, -3.436478631548212],\n              [-41.382218833145089, -3.592616332816888],\n              [-41.355445150483121, -3.708719852870885],\n              [-41.283891192675441, -3.811332161472734],\n              [-41.230343827351504, -4.043517228923633],\n              [-41.181289870402111, -4.123849263238057],\n              [-41.118744702000583, -4.177396628561979],\n              [-41.074195139754295, -4.324767239652473],\n              [-41.141244702858899, -4.427379548254322],\n              [-41.23484822205458, -4.539198400176133],\n              [-41.2438460251322, -4.615026039787466],\n              [-41.226070145547851, -4.726625165138387],\n              [-41.181289870402111, -4.811439621498806],\n              [-41.185794265105216, -4.914051930100655],\n              [-41.12324909670366, -5.007875175867227],\n              [-41.11447102019693, -5.065926935894225],\n              [-41.060692941973599, -5.168517271838979],\n              [-41.069690745051219, -5.306901066180416],\n              [-41.025141182804902, -5.364952826207414],\n              [-40.949093816622678, -5.418500191531322],\n              [-40.917815739257634, -5.60164228836139],\n              [-40.92232013396071, -5.681974322675813],\n              [-40.891042056595666, -5.905172573377655],\n              [-40.891042056595666, -6.012267304025499],\n              [-40.806216613906713, -6.253483133539646],\n              [-40.797449523728517, -6.378353743771839],\n              [-40.770664854738015, -6.494457263825836],\n              [-40.721391171217761, -6.570262930780089],\n              [-40.708119686336488, -6.659603754500665],\n              [-40.614296440569916, -6.708646725121511],\n              [-40.48041704093157, -6.735431394112013],\n              [-40.417871872530043, -6.81147876029425],\n              [-40.440141160488906, -6.905082279489932],\n              [-40.511695118296615, -7.0033879473025],\n              [-40.583018363204872, -7.195319106967844],\n              [-40.533964406255507, -7.324694111903099],\n              [-40.538468800958583, -7.391754661336265],\n              [-40.645574517934961, -7.400741478085337],\n              [-40.690343806752139, -7.427526147075838],\n              [-40.690343806752139, -7.512340603436257],\n              [-40.618789848944459, -7.637233186325531],\n              [-40.659065729387095, -7.762323523128586],\n              [-40.547466604036174, -7.833646768036857],\n              [-40.529470997880964, -7.905189739516004],\n              [-40.542973195661659, -8.030082322405278],\n              [-40.592016166282491, -8.12390556817185],\n              [-40.748395566779152, -8.244491510271843],\n              [-40.833221009468105, -8.36487969845804],\n              [-40.886768374792013, -8.351608213576768],\n              [-40.92232013396071, -8.431918275234111],\n              [-41.016143379727282, -8.418646790352838],\n              [-41.083192942831886, -8.525741521000683],\n              [-41.159020582443247, -8.548021795288108],\n              [-41.212567947767155, -8.632858224305608],\n              [-41.368716635364422, -8.713168285962922],\n              [-41.399994712729438, -8.784733230099178],\n              [-41.467044275834041, -8.865043291756422],\n              [-41.498322353199114, -8.936366536664764],\n              [-41.55637411322607, -8.972138022404351],\n              [-41.609921478550007, -8.963151205655279],\n              [-41.734792088782172, -8.981146811810504],\n              [-41.734792088782172, -9.132802091033199],\n              [-41.797348243512261, -9.173077971475848],\n              [-41.850895608836169, -9.253388033133191],\n              [-41.917945171940801, -9.213112152690485],\n              [-42.043046495072417, -9.208849457215422],\n              [-42.150141225720233, -9.293444187004965],\n              [-42.310794308020547, -9.306957371114194],\n              [-42.431391236449088, -9.409547707058962],\n              [-42.489442996476072, -9.498866558122458],\n              [-42.574268439165053, -9.485595073241143],\n              [-42.618818001411341, -9.565927107555609],\n              [-42.752697401049687, -9.521146832409883],\n              [-42.851025041519335, -9.547931501400399],\n              [-42.931346089505212, -9.516862164277654],\n              [-42.936971089719805, -9.474345072812028],\n              [-43.029443017075437, -9.436332376049464],\n              [-43.042945214856132, -9.39627622217769],\n              [-43.127770657545085, -9.373995947890265],\n              [-43.185822417572126, -9.418556496465044],\n              [-43.377742590908895, -9.414052101762039],\n              [-43.414865395059394, -9.33552182532884],\n              [-43.449296548716575, -9.302452976411118],\n              [-43.538395673209209, -9.360504736438116],\n              [-43.605445236313813, -9.338224462150691],\n              [-43.658992601637721, -9.364987158484112],\n              [-43.694775073705841, -9.445319192798536],\n              [-43.810867607431305, -9.427543313214187],\n              [-43.828643487015654, -9.498866558122458],\n              [-43.784093924769337, -9.565927107555609],\n              [-43.726042164742353, -9.748849477814815],\n              [-43.681272875925174, -9.802396843138695],\n              [-43.712539966961657, -9.949767454229203],\n              [-43.703542163884038, -10.034603883246703],\n              [-43.752815847404293, -10.106146854725807],\n              [-43.76159392391105, -10.168483282885063],\n              [-43.801869804353714, -10.204254768624651],\n              [-43.913468929704607, -10.43195741402954],\n              [-43.993789977690483, -10.454215715659814],\n              [-44.118891300822099, -10.588095115298231],\n              [-44.216999214720857, -10.62837099574088],\n              [-44.310822460487458, -10.601608299407459],\n              [-44.417917191135274, -10.588095115298231],\n              [-44.538525105892347, -10.628370995740852],\n              [-44.618846153878252, -10.686422755767879],\n              [-44.645619836540192, -10.735465726388711],\n              [-44.752714567188036, -10.784750396237527],\n              [-44.783992644553109, -10.85607364114577],\n              [-44.851042207657684, -10.878353915433223],\n              [-44.931374241972122, -10.860578035848874],\n              [-45.042973367323043, -10.896349521588448],\n              [-45.315214588645745, -10.780246001534408],\n              [-45.440315911777333, -10.619362206334714],\n              [-45.471593989142377, -10.485504779353462],\n              [-45.516143551388666, -10.414181534445163],\n              [-45.605473388780695, -10.333849500130768],\n              [-45.757117681674856, -10.329345105427691]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 20734, \"fill\": \"#666\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-50.99377315487493, -20.101552509457804],\n              [-50.997596397208241, -19.663923098232331],\n              [-50.96429683539111, -19.511366940069024],\n              [-50.923790242049023, -19.464125727329417],\n              [-50.880822711113069, -19.459181879484575],\n              [-50.864167437040209, -19.437802484137762],\n              [-50.870924029094823, -19.423849846886768],\n              [-50.868891558314175, -19.377487540430693],\n              [-50.84391963353346, -19.310888416796388],\n              [-50.791943313191325, -19.238444566376614],\n              [-50.713193310187251, -19.160595442313166],\n              [-50.641870065278994, -19.118517803989278],\n              [-50.577523138996241, -19.112233624062057],\n              [-50.531622258339013, -19.087030986381905],\n              [-50.489775332914547, -19.0204318627476],\n              [-50.498992862563028, -18.953151586743559],\n              [-50.457596376608876, -18.876642794762475],\n              [-50.368266539216847, -18.768647185174018],\n              [-50.246999444747132, -18.690116908740833],\n              [-50.093773120542636, -18.641293664690863],\n              [-49.960124433803713, -18.616332726238682],\n              [-49.788671790544555, -18.614530968357457],\n              [-49.677973544134261, -18.600116905307601],\n              [-49.611824859970255, -18.566828329818989],\n              [-49.553322660472958, -18.510116901874369],\n              [-49.488294581820469, -18.522048054673263],\n              [-49.41674062401276, -18.602819542129453],\n              [-49.336650288926307, -18.584823935974214],\n              [-49.247540178105169, -18.468500689349341],\n              [-49.179370009489048, -18.404823929107764],\n              [-49.108266491151653, -18.388388381605793],\n              [-48.953699834864778, -18.325854199532813],\n              [-48.226943215344335, -18.340246289925574],\n              [-48.017917328464392, -18.434530961490992],\n              [-47.928818203971787, -18.445319536121303],\n              [-47.786171714155245, -18.379401564856721],\n              [-47.446419503929093, -18.170595404547655],\n              [-47.318846256875077, -18.083298037936274],\n              [-47.279471255373039, -18.061479189447695],\n              [-47.346520818477643, -17.878315119960547],\n              [-47.355518621555262, -17.824767754636625],\n              [-47.328744938893294, -17.744457692979296],\n              [-47.27069317886631, -17.668630053367949],\n              [-47.288469058450659, -17.548022138610875],\n              [-47.40906598687917, -17.498979167990029],\n              [-47.458119943828564, -17.52574186432345],\n              [-47.529443188736821, -17.454198892844303],\n              [-47.498395824271228, -17.32932828261211],\n              [-47.453615549125487, -17.347104162196459],\n              [-47.422348458089004, -17.271276522585111],\n              [-47.310749332738084, -17.141901517649842],\n              [-47.212641418839297, -17.074840968216691],\n              [-47.230417298423646, -17.025797997595845],\n              [-47.15009625043777, -16.976513327747043],\n              [-47.159094053515389, -16.918483540377125],\n              [-47.266199770491767, -16.6597335305066],\n              [-47.404572578504656, -16.570392706786023],\n              [-47.453615549125487, -16.494345340603786],\n              [-47.431346261166595, -16.409750610814257],\n              [-47.351025213180719, -16.302414180938442],\n              [-47.324240544190218, -16.226608513984189],\n              [-47.337523015400023, -16.146276479669766],\n              [-47.301971256231354, -16.039181749021921],\n              [-47.230417298423646, -16.034677354318845],\n              [-47.127815976150345, -15.923078228967924],\n              [-47.07854229263009, -15.936349713849197],\n              [-46.864341845005839, -15.882802348525274],\n              [-46.833074753969356, -15.8427461946535],\n              [-46.868846239708944, -15.592763274961158],\n              [-46.931391408110471, -15.543500577769436],\n              [-46.935895802813548, -15.431901452418515],\n              [-46.855344041928248, -15.324806721770685],\n              [-46.891115527667807, -15.239970292753185],\n              [-46.931391408110471, -15.226698807871912],\n              [-46.891115527667807, -15.04803913308784],\n              [-46.833074753969356, -15.012267647348267],\n              [-46.734966840070598, -15.016772042051343],\n              [-46.636650185929483, -15.070319407375266],\n              [-46.547320348537454, -15.039052316338768],\n              [-46.57859842590247, -14.914181706106575],\n              [-46.556318151615045, -14.869401430960849],\n              [-46.583091834277013, -14.793573791349502],\n              [-46.51604227117241, -14.713241757035078],\n              [-46.38666726623714, -14.771293517062077],\n              [-46.315344021328883, -14.847121156673424],\n              [-46.297348415173644, -14.909677311403499],\n              [-46.190242698197267, -14.93644000773692],\n              [-46.078643572846346, -14.922948796284771],\n              [-46.025096207522409, -14.869401430960849],\n              [-45.976042250573073, -14.985504951014832],\n              [-46.074150164471803, -15.248979082159337],\n              [-45.967044447495425, -15.186422927429248],\n              [-45.926768567052761, -15.128371167402264],\n              [-45.766115484752476, -15.146147046986613],\n              [-45.712568119428539, -15.123866772699188],\n              [-45.654516359401555, -15.043556711041788],\n              [-45.551915037128254, -14.93644000773692],\n              [-45.462596186064758, -14.940944402439996],\n              [-45.319718983348793, -14.856129946079577],\n              [-45.225895737582221, -14.74002642602558],\n              [-45.101025127350027, -14.717746151738154],\n              [-44.882320285022729, -14.597138236981039],\n              [-44.837540009876989, -14.516828175323752],\n              [-44.560794393851239, -14.347177289945833],\n              [-44.35986543110829, -14.271349650334457],\n              [-44.319820263565049, -14.244345254773094],\n              [-44.212494820017781, -14.240082559297988],\n              [-44.158947454693873, -14.271349650334486],\n              [-43.837641290093273, -14.315888226252241],\n              [-43.781391287947486, -14.342892621813633],\n              [-43.800068046472461, -14.369897017375024],\n              [-43.860822443321297, -14.534362355680116],\n              [-43.879499201846272, -14.624604058341333],\n              [-43.864414972755213, -14.659694391711156],\n              [-43.824150078641111, -14.695246150879854],\n              [-43.708046558587114, -14.735522031322503],\n              [-43.493846110962892, -14.789069396646426],\n              [-43.449296548716575, -14.780082579897353],\n              [-43.386740393986543, -14.699750545582901],\n              [-43.230371979818415, -14.637414117423731],\n              [-42.953615377464104, -14.677470271295505],\n              [-42.891070209062576, -14.749013242774652],\n              [-42.632320199192037, -14.940944402439996],\n              [-42.578542120968706, -14.931957585690924],\n              [-42.431391236449088, -15.034547921635692],\n              [-42.261740351071154, -15.106090893114839],\n              [-42.176914908382201, -15.106090893114839],\n              [-42.087596057318706, -15.181918532726186],\n              [-41.940214459899664, -15.172931715977143],\n              [-41.801841651886804, -15.110595287817915],\n              [-41.359949545186197, -15.494457607148604],\n              [-41.333164876195724, -15.717655857850389],\n              [-41.159020582443247, -15.780190039923411],\n              [-41.029645577507978, -15.73543173743478],\n              [-40.944820134819025, -15.673095309275581],\n              [-40.891042056595666, -15.69537558356302],\n              [-40.828716614765028, -15.681862399453777],\n              [-40.761667051660396, -15.739914159480776],\n              [-40.667843805893824, -15.717655857850431],\n              [-40.574240286698142, -15.757931738293095],\n              [-40.533964406255507, -15.797965919507703],\n              [-40.475923632557027, -15.77570761787743],\n              [-40.328542035138014, -15.824750588498276],\n              [-40.234949502270865, -15.820246193795199],\n              [-40.167899939166233, -15.896293559977423],\n              [-40.132117467098112, -15.891789165274304],\n              [-40.002742462162871, -15.994401473876223],\n              [-39.935692899058239, -15.998905868579271],\n              [-39.864369654149982, -16.110504993930192],\n              [-39.940197293761315, -16.311422970344609],\n              [-40.056289827486779, -16.396237426705014],\n              [-40.132117467098112, -16.503354130009953],\n              [-40.136621861801217, -16.543630010452603],\n              [-40.252714395526652, -16.565888312082905],\n              [-40.274994669814077, -16.614953255360874],\n              [-40.283992472891697, -16.744547986867019],\n              [-40.243716592449033, -16.833647111359625],\n              [-40.297494670672393, -16.878427386505351],\n              [-40.471419237853979, -16.869418597099184],\n              [-40.524966603177887, -16.931974751829273],\n              [-40.574240286698142, -17.132892728243689],\n              [-40.565242483620523, -17.262267733178959],\n              [-40.605518364063187, -17.311332676456885],\n              [-40.60979204586684, -17.391862464685104],\n              [-40.498192920515919, -17.418647133675606],\n              [-40.48041704093157, -17.557030928017028],\n              [-40.413367477826966, -17.557030928017028],\n              [-40.382320113361345, -17.623849778222223],\n              [-40.283992472891697, -17.717673023988795],\n              [-40.208164833280364, -17.766715994609626],\n              [-40.1858955453215, -17.816000664458443],\n              [-40.230445107567789, -17.918591000403126],\n              [-40.208164833280364, -17.976642760430195],\n              [-40.216942909787093, -17.972138365727119],\n              [-40.426869675607662, -17.89182830406979],\n              [-40.475923632557027, -17.927599789809364],\n              [-40.533964406255507, -17.900595394247972],\n              [-40.667843805893824, -17.95436248614277],\n              [-40.725895565920837, -17.945375669393698],\n              [-40.788440734322364, -17.972138365727119],\n              [-40.909048649079438, -17.972138365727119],\n              [-40.775169249441092, -18.092746280484192],\n              [-40.766171446363501, -18.137306829059042],\n              [-40.837494691271758, -18.150798040511191],\n              [-40.913542057453981, -18.101513370662389],\n              [-41.016143379727282, -18.173078314798616],\n              [-41.060692941973599, -18.177582709501706],\n              [-41.141244702858899, -18.297948925030809],\n              [-41.127742505078203, -18.333720410770383],\n              [-41.025141182804902, -18.40526338224953],\n              [-41.002641181946586, -18.454328325527456],\n              [-41.029645577507978, -18.637250695786648],\n              [-40.926824528663786, -18.695302455813646],\n              [-40.93131793703833, -18.806901581164553],\n              [-41.091971019338644, -18.829401582022868],\n              [-41.194792068182807, -18.806901581164553],\n              [-41.23484822205458, -18.851681856310293],\n              [-41.163524977146324, -18.905229221634215],\n              [-41.105473217119311, -18.887233615478976],\n              [-41.025141182804902, -18.981056861245563],\n              [-41.05191486546687, -19.034604226569471],\n              [-40.944820134819025, -19.146203351920391],\n              [-40.926824528663786, -19.293573963010886],\n              [-40.958091619700298, -19.472233637794957],\n              [-41.047421457092327, -19.489987544722226],\n              [-41.029645577507978, -19.548039304749224],\n              [-41.159020582443247, -19.659638430100145],\n              [-41.185794265105216, -19.865082773874718],\n              [-41.306391193533727, -19.954401624938214],\n              [-41.36444295356074, -20.186366965818237],\n              [-41.404499107432514, -20.213151634808739],\n              [-41.717016209197851, -20.208647240105662],\n              [-41.855400003539273, -20.369531035305386],\n              [-41.797348243512261, -20.427582795332398],\n              [-41.797348243512261, -20.534677525980229],\n              [-41.850895608836169, -20.623996377043724],\n              [-41.810839454964423, -20.646276651331149],\n              [-41.882173686201213, -20.75787577668207],\n              [-41.864397806616864, -20.775651656266419],\n              [-41.92694297501842, -20.829199021590341],\n              [-41.962494734187089, -20.909750782475641],\n              [-41.998266219926677, -20.932031056763066],\n              [-42.096593860396325, -20.923022267356913],\n              [-42.141143422642642, -20.963298147799563],\n              [-42.096593860396325, -21.003354301671337],\n              [-42.181419303085278, -21.163996397643089],\n              [-42.221464470628518, -21.338151677724113],\n              [-42.297292110239852, -21.405190254500155],\n              [-42.301796504942928, -21.485522288814579],\n              [-42.364341673344484, -21.592617019462423],\n              [-42.36884606804756, -21.632892899905073],\n              [-42.284020625358579, -21.641901689311226],\n              [-42.279516230655531, -21.713224934219511],\n              [-43.063423731262333, -22.063556978833603],\n              [-43.13227505224819, -22.02574203598482],\n              [-43.341971105169364, -22.003483734354461],\n              [-43.462568033597847, -22.057031099678412],\n              [-43.565169355871149, -22.065798189856594],\n              [-43.815372002134382, -22.065798189856594],\n              [-43.895693050120258, -22.106074070299258],\n              [-44.092117618160131, -22.173112647075314],\n              [-44.216999214720857, -22.248940286686661],\n              [-44.293046580903109, -22.239953469937589],\n              [-44.444690873797242, -22.253444681389752],\n              [-44.534020711189271, -22.302487652010583],\n              [-44.601070274293903, -22.316000836119827],\n              [-44.663395716124569, -22.369548201443706],\n              [-44.730445279229173, -22.360539412037582],\n              [-44.833046601502474, -22.405099960612404],\n              [-44.92236545256597, -22.449880235758172],\n              [-45.056244852204316, -22.467656115342507],\n              [-45.243891343737459, -22.561479361109079],\n              [-45.270665026399399, -22.606017937026849],\n              [-45.40904882074085, -22.646293817469484],\n              [-45.470923823101202, -22.611642937241413],\n              [-45.52964574916939, -22.65079821217256],\n              [-45.58319311449327, -22.615026726433001],\n              [-45.629775147520235, -22.622673211099695],\n              [-45.672292238985904, -22.619531121136077],\n              [-45.801897956820596, -22.699841182793421],\n              [-45.743846196793584, -22.726625851783922],\n              [-45.743846196793584, -22.797949096692193],\n              [-45.792900153742977, -22.851716188586991],\n              [-45.859949716847581, -22.860505251422268],\n              [-45.908992687468412, -22.820449097550494],\n              [-46.020591812819333, -22.873996462874416],\n              [-46.14569313595095, -22.891772342458765],\n              [-46.154471212457679, -22.847233766540995],\n              [-46.288570338666915, -22.882763553052598],\n              [-46.359893583575172, -22.842729371837919],\n              [-46.368891386652791, -22.748906126071347],\n              [-46.471492708926121, -22.682065303209072],\n              [-46.395665069314759, -22.615026726433001],\n              [-46.453716829341744, -22.516699085963353],\n              [-46.543046666733801, -22.472138537388503],\n              [-46.547320348537454, -22.440871446352006],\n              [-46.641143594304026, -22.409604355315508],\n              [-46.69919535433101, -22.320263531594932],\n              [-46.663423868591451, -22.204401710768877],\n              [-46.600867713861362, -22.132858739289759],\n              [-46.658919473888375, -22.052526704975335],\n              [-46.618874306345134, -21.98546615554217],\n              [-46.658919473888375, -21.905156093884841],\n              [-46.667917276965966, -21.811552574689145],\n              [-46.627872109422754, -21.771276694246495],\n              [-46.605372108564438, -21.681957843183],\n              [-46.56082254631815, -21.672949053776847],\n              [-46.493772983213518, -21.525798169257229],\n              [-46.507275180994213, -21.458737619824078],\n              [-46.605372108564438, -21.42747052878758],\n              [-46.654645792084722, -21.373923163463658],\n              [-46.685693156550315, -21.396203437751083],\n              [-46.815298874385007, -21.3606516785824],\n              [-46.895619922370884, -21.405190254500155],\n              [-47.002714653018757, -21.400707832454088],\n              [-46.993947562840532, -21.342656072427161],\n              [-47.056273004671198, -21.195263488679586],\n              [-47.123322567775801, -21.132949033177482],\n              [-47.145591855734693, -20.981074027383912],\n              [-47.221419495346026, -20.914013477950732],\n              [-47.212641418839326, -20.806918747302916],\n              [-47.109820369995106, -20.632763467221906],\n              [-47.154589658812313, -20.525668736574076],\n              [-47.252697572711099, -20.476625765953202],\n              [-47.292973453153763, -20.423078400629322],\n              [-47.266199770491767, -20.284694606287886],\n              [-47.234921693126722, -20.204362571973462],\n              [-47.244369935674655, -20.173996359877592],\n              [-47.328964665464184, -20.117526631160942],\n              [-47.427742745404146, -20.036293717905892],\n              [-47.459921701709789, -20.000983657965179],\n              [-47.517742748837378, -19.994216079582017],\n              [-47.594240554489943, -20.018517838321486],\n              [-47.655895830279405, -20.022802506453729],\n              [-47.695490558352276, -19.9910739896184],\n              [-47.749719076045949, -19.977121352367419],\n              [-47.818570397031777, -19.980724868129869],\n              [-47.860197595885353, -20.011991959166366],\n              [-47.861768640867155, -20.055651628800589],\n              [-47.9087901270359, -20.081755145421369],\n              [-47.991143645802424, -20.082875750932857],\n              [-48.051216890281552, -20.120229267982779],\n              [-48.109499363207959, -20.116625752220315],\n              [-48.178339697865255, -20.082875750932857],\n              [-48.25326645853599, -20.093005145850512],\n              [-48.363744978375422, -20.138224874138018],\n              [-48.71564806797133, -20.143849874352583],\n              [-48.81194323766033, -20.158923117115094],\n              [-48.858294557787872, -20.232729272274312],\n              [-48.886869998331065, -20.369970488447152],\n              [-48.918367802266971, -20.429142853985638],\n              [-48.952568243024757, -20.41002664231894],\n              [-48.977990607275785, -20.338241971611808],\n              [-48.994645881348617, -20.213591087950419],\n              [-49.039645883065248, -20.18726784475885],\n              [-49.112770885854729, -20.259272242036786],\n              [-49.166318251178666, -20.295043727776431],\n              [-49.199848525895277, -20.294362575406637],\n              [-49.238992814497863, -20.245539331356738],\n              [-49.283542376744151, -20.148573995626549],\n              [-49.288046771447227, -20.073647234955814],\n              [-49.258790178534298, -20.016957779668289],\n              [-49.2783678159999, -19.98703102071417],\n              [-49.377145895939833, -19.978483657106864],\n              [-50.364443296883508, -19.858556894719527],\n              [-50.43374505733965, -19.800263435464558],\n              [-50.488643741074497, -19.790815192916568],\n              [-50.584049018151433, -19.821203377669605],\n              [-50.99377315487493, -20.101552509457804]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 3885, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-40.967539862248202, -21.27559552299401],\n              [-41.069690745051219, -21.213281067491906],\n              [-41.266115313091092, -21.231056947076254],\n              [-41.391216636222708, -21.186496398501404],\n              [-41.440270593172073, -21.199767883382663],\n              [-41.712522800823308, -21.110449032319167],\n              [-41.730518406978518, -21.043630182113986],\n              [-41.712522800823308, -20.976569632680821],\n              [-41.743789891859791, -20.820431931412145],\n              [-41.864397806616864, -20.775651656266419],\n              [-41.882173686201213, -20.75787577668207],\n              [-41.810839454964423, -20.646276651331149],\n              [-41.850895608836169, -20.623996377043724],\n              [-41.797348243512261, -20.534677525980229],\n              [-41.797348243512261, -20.427582795332398],\n              [-41.855400003539273, -20.369531035305386],\n              [-41.717016209197851, -20.208647240105662],\n              [-41.404499107432514, -20.213151634808739],\n              [-41.36444295356074, -20.186366965818237],\n              [-41.306391193533727, -19.954401624938214],\n              [-41.185794265105216, -19.865082773874718],\n              [-41.159020582443247, -19.659638430100145],\n              [-41.029645577507978, -19.548039304749224],\n              [-41.047421457092327, -19.489987544722226],\n              [-40.958091619700298, -19.472233637794957],\n              [-40.926824528663786, -19.293573963010886],\n              [-40.944820134819025, -19.146203351920391],\n              [-41.05191486546687, -19.034604226569471],\n              [-41.025141182804902, -18.981056861245563],\n              [-41.105473217119311, -18.887233615478976],\n              [-41.163524977146324, -18.905229221634215],\n              [-41.23484822205458, -18.851681856310293],\n              [-41.194792068182807, -18.806901581164553],\n              [-41.091971019338644, -18.829401582022868],\n              [-40.93131793703833, -18.806901581164553],\n              [-40.926824528663786, -18.695302455813646],\n              [-41.029645577507978, -18.637250695786648],\n              [-41.002641181946586, -18.454328325527456],\n              [-41.025141182804902, -18.40526338224953],\n              [-41.127742505078203, -18.333720410770383],\n              [-41.141244702858899, -18.297948925030809],\n              [-41.060692941973599, -18.177582709501706],\n              [-41.016143379727282, -18.173078314798616],\n              [-40.913542057453981, -18.101513370662389],\n              [-40.837494691271758, -18.150798040511191],\n              [-40.766171446363501, -18.137306829059042],\n              [-40.775169249441092, -18.092746280484192],\n              [-40.909048649079438, -17.972138365727119],\n              [-40.788440734322364, -17.972138365727119],\n              [-40.725895565920837, -17.945375669393698],\n              [-40.667843805893824, -17.95436248614277],\n              [-40.533964406255507, -17.900595394247972],\n              [-40.475923632557027, -17.927599789809364],\n              [-40.426869675607662, -17.89182830406979],\n              [-40.216942909787093, -17.972138365727119],\n              [-40.208164833280364, -17.976642760430195],\n              [-40.1858955453215, -18.007931824123773],\n              [-39.672449480813185, -18.324733594021311],\n              [-39.667714373210686, -18.325854199532813],\n              [-39.739718770488679, -18.639953332608485],\n              [-39.741970967840217, -18.846056856095714],\n              [-39.699893329516328, -19.277819567878652],\n              [-39.731391133452263, -19.453996332411762],\n              [-39.783367453794369, -19.571681883776108],\n              [-39.844792016684409, -19.649069582040724],\n              [-40.001391143751931, -19.741991948866669],\n              [-40.141796422545468, -19.968354262189209],\n              [-40.202770545965194, -20.205944603283811],\n              [-40.298845989083304, -20.29258279018255],\n              [-40.318643353119768, -20.425781037451159],\n              [-40.396042037712931, -20.56954813277919],\n              [-40.596520560985567, -20.783737594074864],\n              [-40.727016171432325, -20.846074022234063],\n              [-40.789341613262991, -20.906147266713177],\n              [-40.828716614765028, -21.031237603516246],\n              [-40.954499090266381, -21.237802552802322],\n              [-40.967539862248202, -21.27559552299401]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 15126, \"fill\": \"#666\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-46.025096207522409, -14.869401430960849],\n              [-45.931272961755838, -14.749013242774652],\n              [-45.913497082171517, -14.690983455404748],\n              [-45.962540052792349, -14.534604054908087],\n              [-45.962540052792349, -14.467763232045797],\n              [-45.922494885249108, -14.351681684648909],\n              [-46.011594009741771, -14.298112346667835],\n              [-46.038367692403682, -14.253354044179261],\n              [-46.127697529795739, -14.18203079927099],\n              [-46.172466818612918, -14.074914095966065],\n              [-46.221520775562311, -13.998866729783842],\n              [-46.261796656004947, -13.869491724848501],\n              [-46.270574732511704, -13.655082536981979],\n              [-46.185749289822724, -13.405099617289665],\n              [-46.096419452430723, -13.351552251965757],\n              [-46.083147967549422, -13.253444338066984],\n              [-46.176971213315994, -13.217672852327382],\n              [-46.181244895119647, -13.159621092300398],\n              [-46.150197530654054, -13.025741692662052],\n              [-46.074150164471803, -12.976698722041192],\n              [-46.087641375923965, -12.914142567311146],\n              [-46.234792260443555, -12.798039047257149],\n              [-46.234792260443555, -12.713224590896743],\n              [-46.158964620832222, -12.601625465545808],\n              [-46.158964620832222, -12.50329782507616],\n              [-46.315344021328883, -12.42296579076168],\n              [-46.346622098693899, -12.342655729104393],\n              [-46.337624295616308, -12.128444295151638],\n              [-46.324122097835613, -12.092672809412065],\n              [-46.248294458224251, -12.048112260837215],\n              [-46.212522972484692, -11.998849563645479],\n              [-46.078643572846346, -11.927526318737222],\n              [-46.100923847133771, -11.864970164007147],\n              [-46.158964620832222, -11.83370307297065],\n              [-46.248294458224251, -11.842689889719722],\n              [-46.275068140886219, -11.766862250108375],\n              [-46.243790063521175, -11.726608342322805],\n              [-46.105417255508314, -11.664052187592731],\n              [-46.083147967549422, -11.601496032862656],\n              [-46.190242698197267, -11.543444272835643],\n              [-46.426943146679804, -11.498905696917888],\n              [-46.489268588510441, -11.414069267900388],\n              [-46.551824743240559, -11.378297782160814],\n              [-46.569820349395741, -11.315983326658738],\n              [-46.529544468953105, -11.235431565773396],\n              [-46.462494905848473, -11.177599532317288],\n              [-46.368891386652791, -10.967672766496719],\n              [-46.248294458224251, -10.914125401172797],\n              [-46.234792260443555, -10.882858310136299],\n              [-46.301841823548187, -10.757746000676136],\n              [-46.087641375923965, -10.583832419823125],\n              [-46.038367692403682, -10.570319235713882],\n              [-45.859949716847581, -10.467728899769114],\n              [-45.757117681674856, -10.329345105427691],\n              [-45.605473388780695, -10.333849500130768],\n              [-45.516143551388666, -10.414181534445163],\n              [-45.471593989142377, -10.485504779353462],\n              [-45.440315911777333, -10.619362206334714],\n              [-45.315214588645745, -10.780246001534408],\n              [-45.042973367323043, -10.896349521588448],\n              [-44.931374241972122, -10.860578035848874],\n              [-44.851042207657684, -10.878353915433223],\n              [-44.783992644553109, -10.85607364114577],\n              [-44.752714567188036, -10.784750396237527],\n              [-44.645619836540192, -10.735465726388711],\n              [-44.618846153878252, -10.686422755767879],\n              [-44.538525105892347, -10.628370995740852],\n              [-44.417917191135274, -10.588095115298231],\n              [-44.310822460487458, -10.601608299407459],\n              [-44.216999214720857, -10.62837099574088],\n              [-44.118891300822099, -10.588095115298231],\n              [-43.993789977690483, -10.454215715659814],\n              [-43.913468929704607, -10.43195741402954],\n              [-43.801869804353714, -10.204254768624651],\n              [-43.76159392391105, -10.168483282885063],\n              [-43.752815847404293, -10.106146854725807],\n              [-43.703542163884038, -10.034603883246703],\n              [-43.712539966961657, -9.949767454229203],\n              [-43.681272875925174, -9.802396843138695],\n              [-43.726042164742353, -9.748849477814815],\n              [-43.784093924769337, -9.565927107555609],\n              [-43.828643487015654, -9.498866558122458],\n              [-43.810867607431305, -9.427543313214187],\n              [-43.694775073705841, -9.445319192798536],\n              [-43.658992601637721, -9.364987158484112],\n              [-43.605445236313813, -9.338224462150691],\n              [-43.538395673209209, -9.360504736438116],\n              [-43.449296548716575, -9.302452976411118],\n              [-43.414865395059394, -9.33552182532884],\n              [-43.377742590908895, -9.414052101762039],\n              [-43.185822417572126, -9.418556496465044],\n              [-43.127770657545085, -9.373995947890265],\n              [-43.042945214856132, -9.39627622217769],\n              [-43.029443017075437, -9.436332376049464],\n              [-42.936971089719805, -9.474345072812028],\n              [-42.931346089505212, -9.516862164277654],\n              [-42.851025041519335, -9.547931501400399],\n              [-42.752697401049687, -9.521146832409883],\n              [-42.618818001411341, -9.565927107555609],\n              [-42.574268439165053, -9.485595073241143],\n              [-42.489442996476072, -9.498866558122458],\n              [-42.431391236449088, -9.409547707058962],\n              [-42.310794308020547, -9.306957371114194],\n              [-42.150141225720233, -9.293444187004965],\n              [-42.043046495072417, -9.208849457215422],\n              [-41.917945171940801, -9.213112152690485],\n              [-41.850895608836169, -9.253388033133191],\n              [-41.797348243512261, -9.173077971475848],\n              [-41.734792088782172, -9.132802091033199],\n              [-41.734792088782172, -8.981146811810504],\n              [-41.609921478550007, -8.963151205655279],\n              [-41.55637411322607, -8.972138022404351],\n              [-41.498322353199114, -8.936366536664764],\n              [-41.467044275834041, -8.865043291756422],\n              [-41.399994712729438, -8.784733230099178],\n              [-41.368716635364422, -8.713168285962922],\n              [-41.324167073118076, -8.735448560250362],\n              [-41.159020582443247, -8.708663891259846],\n              [-41.105473217119311, -8.717672680666027],\n              [-41.100968822416235, -8.775724440693025],\n              [-41.003992500357526, -8.781349440907604],\n              [-40.980371893987723, -8.815780594564785],\n              [-40.891042056595666, -8.856056475007449],\n              [-40.891042056595666, -9.03469417713444],\n              [-40.855490297426996, -9.092745937161425],\n              [-40.850996889052453, -9.150797697188352],\n              [-40.703615291633412, -9.217616547393618],\n              [-40.690343806752139, -9.342728856853768],\n              [-40.743891172076076, -9.423038918511111],\n              [-40.685839412049063, -9.47210386178898],\n              [-40.564792044150238, -9.460172708990143],\n              [-40.412697311785791, -9.396957374547355],\n              [-40.319774944959818, -9.293004733863199],\n              [-40.273192911932853, -9.144952970402969],\n              [-40.212218788513155, -9.101513027339593],\n              [-40.077669222833606, -9.08824154245832],\n              [-40.004994659514409, -9.058095056933354],\n              [-39.948744657368621, -9.022103844622904],\n              [-39.909149929295722, -8.980245932869821],\n              [-39.887770533948924, -8.923995930724061],\n              [-39.884617457656759, -8.853353838185598],\n              [-39.834893334666162, -8.809013016181552],\n              [-39.738367452077739, -8.791237136597275],\n              [-39.687742450146573, -8.749401197501371],\n              [-39.682798602301716, -8.683021800437942],\n              [-39.600895523005477, -8.619564766767255],\n              [-39.441824472015526, -8.559271795717166],\n              [-39.332697270587033, -8.565797674872442],\n              [-39.25664990440481, -8.640263009744331],\n              [-39.098249019456034, -8.714970043844119],\n              [-38.834994614882476, -8.800245926003356],\n              [-38.705399883376288, -8.879896807948114],\n              [-38.667815653426942, -8.896090656222128],\n              [-38.619223122276424, -8.896090656222128],\n              [-38.57759592342282, -8.860538897053431],\n              [-38.544296361605689, -8.831073563898173],\n              [-38.504690647204228, -8.834896806231512],\n              [-38.483992404227138, -8.877655596925138],\n              [-38.482190646345913, -8.959547689892815],\n              [-38.43291696282563, -9.003646812668819],\n              [-38.335940640766921, -9.01017269182401],\n              [-38.294324428241907, -9.043021814170856],\n              [-38.307595913123151, -9.102194179709358],\n              [-38.283074427812721, -9.203663910142609],\n              [-38.221199425452397, -9.34767270469861],\n              [-37.975720900463131, -9.512138043003716],\n              [-38.042990190138653, -9.605983261427355],\n              [-37.993716506618341, -9.646237169212938],\n              [-38.029498978686462, -9.726569203527362],\n              [-37.962669142152777, -9.873939814617813],\n              [-37.900123973751192, -9.913995968489587],\n              [-37.900123973751192, -9.949767454229232],\n              [-37.779516058994119, -10.079362185735349],\n              [-37.784020453697195, -10.306845104569391],\n              [-37.83756781902116, -10.422948624623359],\n              [-37.824065621240436, -10.548038961426414],\n              [-37.784020453697195, -10.62837099574088],\n              [-37.81529853106224, -10.677413966361712],\n              [-37.971447218659478, -10.75348330520103],\n              [-38.011723099102113, -10.75348330520103],\n              [-38.109820026672338, -10.708703030055304],\n              [-38.190141074658214, -10.717689846804376],\n              [-38.243919152881574, -10.824806550109301],\n              [-38.234921349803955, -10.896349521588448],\n              [-38.17686958977697, -10.980944251377977],\n              [-38.109820026672338, -11.030228921226794],\n              [-38.060766069722973, -11.168590742911121],\n              [-37.980445021737097, -11.239913987819392],\n              [-38.007218704399037, -11.356017507873389],\n              [-37.966942823956401, -11.400797783019115],\n              [-37.851070016801827, -11.440853936890889],\n              [-37.797291938578496, -11.525668393251294],\n              [-37.658919130565607, -11.556957456944886],\n              [-37.632145447903639, -11.521163998548232],\n              [-37.574093687876626, -11.539181577360537],\n              [-37.411869560594539, -11.497323665607496],\n              [-37.469240168251758, -11.653703066104185],\n              [-37.68861517662026, -12.100099567507868],\n              [-37.957274854837578, -12.475392550574156],\n              [-38.019149857197931, -12.591276344057235],\n              [-38.239645471077893, -12.844181627142348],\n              [-38.401869598359951, -12.966129873981799],\n              [-38.44732003954698, -12.967030752922426],\n              [-38.498845920418717, -12.95668163143381],\n              [-38.524949437039481, -12.76226756151749],\n              [-38.654093729075328, -12.644603982810281],\n              [-38.690996806654937, -12.623905739833219],\n              [-38.743874005937755, -12.748556623494494],\n              [-38.787973128713702, -12.782746077923775],\n              [-38.851869615526141, -12.790172836019565],\n              [-38.783699446910077, -12.844401353713238],\n              [-38.763671369974134, -12.90717723501416],\n              [-38.833192857001166, -13.032948724186951],\n              [-38.835214341453252, -13.147250486359724],\n              [-38.959195059073409, -13.273021975532515],\n              [-39.030968743451979, -13.365043463417862],\n              [-39.067421381561303, -13.480465831102151],\n              [-39.089240230049882, -13.588241714119647],\n              [-39.03502269868477, -13.558776380964389],\n              [-39.009149894963457, -13.581496108393651],\n              [-38.988671378557228, -13.615026383110262],\n              [-39.001272697397269, -13.664530779529912],\n              [-39.041098138369591, -13.758112326068499],\n              [-39.03502269868477, -13.99100051854623],\n              [-39.048074456995153, -14.04386673150043],\n              [-39.008468742593607, -14.101237339157706],\n              [-38.966391104269746, -14.003371124486875],\n              [-38.94232005842963, -14.030595246619157],\n              [-39.059544183995115, -14.654750543866328],\n              [-39.013423576767082, -14.935539128796336],\n              [-38.996098136653018, -15.253922930004194],\n              [-38.943220937370313, -15.564418547317416],\n              [-38.8851691773433, -15.842065042283764],\n              [-38.880664782640167, -15.864345316571132],\n              [-38.960766104055153, -16.186552360112387],\n              [-39.063147699757621, -16.504474735521399],\n              [-39.125022702117974, -16.763664198533661],\n              [-39.16394726414967, -17.043573877180108],\n              [-39.202871826181479, -17.178112456531096],\n              [-39.215242432122068, -17.315815098502867],\n              [-39.170692869875779, -17.642065110948352],\n              [-39.154048582131452, -17.703940113308647],\n              [-39.278468752893389, -17.849530939174997],\n              [-39.412567879102596, -17.919953305142656],\n              [-39.486824473732156, -17.990155944539367],\n              [-39.65083937256685, -18.252267770944457],\n              [-39.667714373210686, -18.325854199532813],\n              [-39.672449480813185, -18.324733594021311],\n              [-40.1858955453215, -18.007931824123773],\n              [-40.208164833280364, -17.976642760430195],\n              [-40.230445107567789, -17.918591000403126],\n              [-40.1858955453215, -17.816000664458443],\n              [-40.208164833280364, -17.766715994609626],\n              [-40.283992472891697, -17.717673023988795],\n              [-40.382320113361345, -17.623849778222223],\n              [-40.413367477826966, -17.557030928017028],\n              [-40.48041704093157, -17.557030928017028],\n              [-40.498192920515919, -17.418647133675606],\n              [-40.60979204586684, -17.391862464685104],\n              [-40.605518364063187, -17.311332676456885],\n              [-40.565242483620523, -17.262267733178959],\n              [-40.574240286698142, -17.132892728243689],\n              [-40.524966603177887, -16.931974751829273],\n              [-40.471419237853979, -16.869418597099184],\n              [-40.297494670672393, -16.878427386505351],\n              [-40.243716592449033, -16.833647111359625],\n              [-40.283992472891697, -16.744547986867019],\n              [-40.274994669814077, -16.614953255360874],\n              [-40.252714395526652, -16.565888312082905],\n              [-40.136621861801217, -16.543630010452603],\n              [-40.132117467098112, -16.503354130009953],\n              [-40.056289827486779, -16.396237426705014],\n              [-39.940197293761315, -16.311422970344609],\n              [-39.864369654149982, -16.110504993930192],\n              [-39.935692899058239, -15.998905868579271],\n              [-40.002742462162871, -15.994401473876223],\n              [-40.132117467098112, -15.891789165274304],\n              [-40.167899939166233, -15.896293559977423],\n              [-40.234949502270865, -15.820246193795199],\n              [-40.328542035138014, -15.824750588498276],\n              [-40.475923632557027, -15.77570761787743],\n              [-40.533964406255507, -15.797965919507703],\n              [-40.574240286698142, -15.757931738293095],\n              [-40.667843805893824, -15.717655857850431],\n              [-40.761667051660396, -15.739914159480776],\n              [-40.828716614765028, -15.681862399453777],\n              [-40.891042056595666, -15.69537558356302],\n              [-40.944820134819025, -15.673095309275581],\n              [-41.029645577507978, -15.73543173743478],\n              [-41.159020582443247, -15.780190039923411],\n              [-41.333164876195724, -15.717655857850389],\n              [-41.359949545186197, -15.494457607148604],\n              [-41.801841651886804, -15.110595287817915],\n              [-41.940214459899664, -15.172931715977143],\n              [-42.087596057318706, -15.181918532726186],\n              [-42.176914908382201, -15.106090893114839],\n              [-42.261740351071154, -15.106090893114839],\n              [-42.431391236449088, -15.034547921635692],\n              [-42.578542120968706, -14.931957585690924],\n              [-42.632320199192037, -14.940944402439996],\n              [-42.891070209062576, -14.749013242774652],\n              [-42.953615377464104, -14.677470271295505],\n              [-43.230371979818415, -14.637414117423731],\n              [-43.386740393986543, -14.699750545582901],\n              [-43.449296548716575, -14.780082579897353],\n              [-43.493846110962892, -14.789069396646426],\n              [-43.708046558587114, -14.735522031322503],\n              [-43.824150078641111, -14.695246150879854],\n              [-43.864414972755213, -14.659694391711156],\n              [-43.879499201846272, -14.624604058341333],\n              [-43.860822443321297, -14.534362355680116],\n              [-43.800068046472461, -14.369897017375024],\n              [-43.781391287947486, -14.342892621813633],\n              [-43.837641290093273, -14.315888226252241],\n              [-44.158947454693873, -14.271349650334486],\n              [-44.212494820017781, -14.240082559297988],\n              [-44.319820263565049, -14.244345254773094],\n              [-44.35986543110829, -14.271349650334457],\n              [-44.560794393851239, -14.347177289945833],\n              [-44.837540009876989, -14.516828175323752],\n              [-44.882320285022729, -14.597138236981039],\n              [-45.101025127350027, -14.717746151738154],\n              [-45.225895737582221, -14.74002642602558],\n              [-45.319718983348793, -14.856129946079577],\n              [-45.462596186064758, -14.940944402439996],\n              [-45.551915037128254, -14.93644000773692],\n              [-45.654516359401555, -15.043556711041788],\n              [-45.712568119428539, -15.123866772699188],\n              [-45.766115484752476, -15.146147046986613],\n              [-45.926768567052761, -15.128371167402264],\n              [-45.967044447495425, -15.186422927429248],\n              [-46.074150164471803, -15.248979082159337],\n              [-45.976042250573073, -14.985504951014832],\n              [-46.025096207522409, -14.869401430960849]\n            ]\n          ],\n          [\n            [\n              [-38.907218738731331, -13.401056648385349],\n              [-38.903615222968824, -13.473500498805151],\n              [-38.93781566372661, -13.532233411201901],\n              [-38.977641104698932, -13.523444348366638],\n              [-38.993164786931686, -13.484069346864658],\n              [-39.022190666945278, -13.44559522430319],\n              [-39.00666698471241, -13.415448738778196],\n              [-38.980124014949865, -13.398354011563526],\n              [-38.907218738731331, -13.401056648385349]\n            ]\n          ],\n          [\n            [\n              [-38.601216529792623, -12.992672843744288],\n              [-38.743874005937755, -13.097064937570281],\n              [-38.783018294540284, -13.118664059487969],\n              [-38.787072249773132, -13.05498729924642],\n              [-38.684921366970116, -12.974896964159996],\n              [-38.668046366326337, -12.880172839452769],\n              [-38.614499001002457, -12.924052235657825],\n              [-38.600315650852053, -12.972414053909006],\n              [-38.601216529792623, -12.992672843744288]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 8843, \"fill\": \"#999\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-40.538468800958583, -7.391754661336265],\n              [-40.533964406255507, -7.324694111903099],\n              [-40.583018363204872, -7.195319106967844],\n              [-40.511695118296615, -7.0033879473025],\n              [-40.440141160488906, -6.905082279489932],\n              [-40.417871872530043, -6.81147876029425],\n              [-40.48041704093157, -6.735431394112013],\n              [-40.614296440569916, -6.708646725121511],\n              [-40.708119686336488, -6.659603754500665],\n              [-40.721391171217761, -6.570262930780089],\n              [-40.770664854738015, -6.494457263825836],\n              [-40.797449523728517, -6.378353743771839],\n              [-40.806216613906713, -6.253483133539646],\n              [-40.891042056595666, -6.012267304025499],\n              [-40.891042056595666, -5.905172573377655],\n              [-40.92232013396071, -5.681974322675813],\n              [-40.917815739257634, -5.60164228836139],\n              [-40.949093816622678, -5.418500191531322],\n              [-41.025141182804902, -5.364952826207414],\n              [-41.069690745051219, -5.306901066180416],\n              [-41.060692941973599, -5.168517271838979],\n              [-41.11447102019693, -5.065926935894225],\n              [-41.12324909670366, -5.007875175867227],\n              [-41.185794265105216, -4.914051930100655],\n              [-41.181289870402111, -4.811439621498806],\n              [-41.226070145547851, -4.726625165138387],\n              [-41.2438460251322, -4.615026039787466],\n              [-41.23484822205458, -4.539198400176133],\n              [-41.141244702858899, -4.427379548254322],\n              [-41.074195139754295, -4.324767239652473],\n              [-41.118744702000583, -4.177396628561979],\n              [-41.181289870402111, -4.123849263238057],\n              [-41.230343827351504, -4.043517228923633],\n              [-41.283891192675441, -3.811332161472734],\n              [-41.355445150483121, -3.708719852870885],\n              [-41.382218833145089, -3.592616332816888],\n              [-41.449268396249693, -3.436478631548212],\n              [-41.426768395391377, -3.320375111494201],\n              [-41.377714438442013, -3.271332140873369],\n              [-41.257117510013472, -3.079181254637149],\n              [-41.268598223342053, -2.916056248414421],\n              [-41.194572341611945, -2.886129489460302],\n              [-40.875518374362855, -2.869693941958332],\n              [-40.474572314146116, -2.795668060228223],\n              [-40.23539994174115, -2.813224213241682],\n              [-39.964718779071745, -2.861608004149886],\n              [-39.771897726794322, -2.985797462012329],\n              [-39.609442886612783, -3.056219827979987],\n              [-39.511115246143135, -3.125521588436129],\n              [-39.352714361194387, -3.197306259143247],\n              [-39.014324455707708, -3.390116325092123],\n              [-38.895968738302173, -3.501715450443044],\n              [-38.686272685381027, -3.653832155464585],\n              [-38.475895480090145, -3.717486943049067],\n              [-38.361824430816796, -3.87634925379669],\n              [-38.271824427383564, -3.948111951846712],\n              [-38.048845903252612, -4.216332176922251],\n              [-37.795720893596666, -4.404198395026285],\n              [-37.626289734789623, -4.592064613130319],\n              [-37.301391040755107, -4.713111981029158],\n              [-37.230748948216586, -4.824271653238313],\n              [-37.54281561051161, -4.93204753625588],\n              [-37.596593688734941, -4.958832205246381],\n              [-37.721464298967135, -5.061422541191149],\n              [-37.913395458632465, -5.463280466677062],\n              [-38.047494584841701, -5.614913773242662],\n              [-38.078541949307322, -5.686478717378904],\n              [-38.078541949307322, -5.762306356990237],\n              [-38.127815632827577, -5.878387904387154],\n              [-38.301740200009135, -6.074823458755574],\n              [-38.368789763113767, -6.092599338339923],\n              [-38.413570038259479, -6.061332247303426],\n              [-38.493891086245384, -6.128370824079497],\n              [-38.511666965829704, -6.181918189403419],\n              [-38.578716528934336, -6.262250223717842],\n              [-38.605490211596305, -6.396129623356174],\n              [-38.5251691636104, -6.382858138474916],\n              [-38.578716528934336, -6.480944079716593],\n              [-38.650039773842593, -6.690870845537162],\n              [-38.61877268280611, -6.757931394970328],\n              [-38.650039773842593, -6.838241456627657],\n              [-38.725867413453955, -6.891788821951579],\n              [-38.730371808157031, -7.0033879473025],\n              [-38.685822245910714, -7.030172616293001],\n              [-38.676824442833095, -7.15954762122827],\n              [-38.600996803221761, -7.222103775958345],\n              [-38.547449437897825, -7.235594987410494],\n              [-38.533947240117129, -7.293646747437492],\n              [-38.582990210737989, -7.427526147075838],\n              [-38.632274880586806, -7.458793238112335],\n              [-38.636768288961321, -7.534620877723682],\n              [-38.699093730791986, -7.619457306741182],\n              [-38.819690659220527, -7.663995882658938],\n              [-38.864240221466815, -7.704271763101588],\n              [-38.96707225663954, -7.847137979489005],\n              [-38.998339347676051, -7.820375283155585],\n              [-39.074166987287384, -7.856146768895158],\n              [-39.109949459355505, -7.753314733722434],\n              [-39.243817872665318, -7.681991488814162],\n              [-39.306374027395378, -7.623939728787164],\n              [-39.350923589641695, -7.548112089175831],\n              [-39.534065686471763, -7.47656911769667],\n              [-39.654442888329413, -7.373978781751916],\n              [-39.846593774565633, -7.347194112761414],\n              [-39.953699491542011, -7.360465597642673],\n              [-40.065298616892932, -7.405245872788413],\n              [-40.172393347540776, -7.418517357669671],\n              [-40.261723184932805, -7.391754661336265],\n              [-40.538468800958583, -7.391754661336265]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 2220, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-37.411869560594539, -11.497323665607496],\n              [-37.574093687876626, -11.539181577360537],\n              [-37.632145447903639, -11.521163998548232],\n              [-37.658919130565607, -11.556957456944886],\n              [-37.797291938578496, -11.525668393251294],\n              [-37.851070016801827, -11.440853936890889],\n              [-37.966942823956401, -11.400797783019115],\n              [-38.007218704399037, -11.356017507873389],\n              [-37.980445021737097, -11.239913987819392],\n              [-38.060766069722973, -11.168590742911121],\n              [-38.109820026672338, -11.030228921226794],\n              [-38.17686958977697, -10.980944251377977],\n              [-38.234921349803955, -10.896349521588448],\n              [-38.243919152881574, -10.824806550109301],\n              [-38.190141074658214, -10.717689846804376],\n              [-38.109820026672338, -10.708703030055304],\n              [-38.011723099102113, -10.75348330520103],\n              [-37.971447218659478, -10.75348330520103],\n              [-37.81529853106224, -10.677413966361712],\n              [-37.784020453697195, -10.62837099574088],\n              [-37.824065621240436, -10.548038961426414],\n              [-37.83756781902116, -10.422948624623359],\n              [-37.784020453697195, -10.306845104569391],\n              [-37.779516058994119, -10.079362185735349],\n              [-37.900123973751192, -9.949767454229232],\n              [-37.900123973751192, -9.913995968489587],\n              [-37.962669142152777, -9.873939814617813],\n              [-38.029498978686462, -9.726569203527362],\n              [-37.993716506618341, -9.646237169212938],\n              [-38.042990190138653, -9.605983261427355],\n              [-37.975720900463131, -9.512138043003716],\n              [-37.938147656842318, -9.537802106482729],\n              [-37.425591484946096, -9.778314810970059],\n              [-37.196098067988487, -9.88587096741675],\n              [-37.019240151085654, -9.956974485754131],\n              [-36.956464269784703, -10.013663941041671],\n              [-36.939589269140953, -10.083646853867549],\n              [-36.879746737561277, -10.153629766693442],\n              [-36.776694975817662, -10.22359070686224],\n              [-36.699065578325076, -10.257340708149698],\n              [-36.647539697453283, -10.253978891615205],\n              [-36.607044090439757, -10.292892467318381],\n              [-36.579819968307476, -10.37142274375158],\n              [-36.538423482353323, -10.410578018682727],\n              [-36.482623919677877, -10.410578018682727],\n              [-36.443018205276417, -10.43195741402954],\n              [-36.431768204847259, -10.452875383577506],\n              [-36.414673477632647, -10.491349506138917],\n              [-36.635839257553812, -10.589896873179455],\n              [-36.768367338781246, -10.671569239576257],\n              [-36.937798497588261, -10.820521881977101],\n              [-37.093266032815762, -11.05475040653721],\n              [-37.125444989121434, -11.084896892062204],\n              [-37.182815596778681, -11.068483317217328],\n              [-37.18124455179688, -11.187487228006972],\n              [-37.315123951435226, -11.376056571137823],\n              [-37.356069997919064, -11.403939872982733],\n              [-37.354949392407576, -11.35039250765881],\n              [-37.331548512608634, -11.309896900645271],\n              [-37.32074895164979, -11.266698656809893],\n              [-37.321869557161307, -11.215172775938086],\n              [-37.359223074211229, -11.252526292988009],\n              [-37.438423516685617, -11.393832450722158],\n              [-37.411869560594539, -11.497323665607496]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 3322, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-37.975720900463131, -9.512138043003716],\n              [-38.221199425452397, -9.34767270469861],\n              [-38.154589315489545, -9.266681490671544],\n              [-38.092044147087989, -9.186349456357121],\n              [-37.966942823956401, -9.141788907782271],\n              [-37.81529853106224, -8.976642417107428],\n              [-37.806289741656087, -8.896332355450099],\n              [-37.748248967957636, -8.860538897053431],\n              [-37.681419131423894, -8.976642417107428],\n              [-37.627641053200563, -8.981146811810504],\n              [-37.520546322552718, -8.945375326070931],\n              [-37.471492365603325, -9.003427086097929],\n              [-37.391171317617449, -9.043483239969703],\n              [-37.18124455179688, -9.239896821681043],\n              [-36.998322181537702, -9.306957371114194],\n              [-36.940270421510689, -9.35600034173504],\n              [-36.90449893577113, -9.289181491529845],\n              [-36.833164704534312, -9.262396822539344],\n              [-36.578699362795987, -9.293444187004965],\n              [-36.440315568454565, -9.208849457215422],\n              [-36.346492322687993, -9.199840667809269],\n              [-36.266171274702117, -9.141788907782271],\n              [-36.239397592040149, -9.088241542458348],\n              [-36.123294071986152, -9.016698570979202],\n              [-36.118789677283075, -8.967655600358356],\n              [-36.016199341338307, -8.896332355450099],\n              [-35.971419066192567, -8.905099445628281],\n              [-35.882319941699961, -8.873832354591784],\n              [-35.801768180814662, -8.869547686459597],\n              [-35.721447132828786, -8.918590657080429],\n              [-35.609848007477865, -8.865043291756507],\n              [-35.471464213136443, -8.833776200720024],\n              [-35.391143165150567, -8.882819171340856],\n              [-35.301824314087071, -8.887323566043932],\n              [-35.151740079846178, -8.913866535806477],\n              [-35.157815519531056, -8.930521809879323],\n              [-35.340968602689685, -9.230668305704],\n              [-35.597015975738344, -9.540724469875457],\n              [-35.763964224294426, -9.702487171358712],\n              [-35.830123894786965, -9.719142445431558],\n              [-35.890867305307268, -9.686974475454448],\n              [-35.84766906147189, -9.772470084184604],\n              [-35.885473017992126, -9.847616571426215],\n              [-36.054893190470608, -10.075780642629979],\n              [-36.223643196907915, -10.225172738172589],\n              [-36.39824891645921, -10.484142474613989],\n              [-36.411520401340482, -10.489987201399458],\n              [-36.414673477632647, -10.491349506138917],\n              [-36.431768204847259, -10.452875383577506],\n              [-36.443018205276417, -10.43195741402954],\n              [-36.482623919677877, -10.410578018682727],\n              [-36.538423482353323, -10.410578018682727],\n              [-36.579819968307476, -10.37142274375158],\n              [-36.607044090439757, -10.292892467318381],\n              [-36.647539697453283, -10.253978891615205],\n              [-36.699065578325076, -10.257340708149698],\n              [-36.776694975817662, -10.22359070686224],\n              [-36.879746737561277, -10.153629766693442],\n              [-36.939589269140953, -10.083646853867549],\n              [-36.956464269784703, -10.013663941041671],\n              [-37.019240151085654, -9.956974485754131],\n              [-37.196098067988487, -9.88587096741675],\n              [-37.425591484946096, -9.778314810970059],\n              [-37.938147656842318, -9.537802106482729],\n              [-37.975720900463131, -9.512138043003716]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 3409, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-38.5251691636104, -6.382858138474916],\n              [-38.605490211596305, -6.396129623356174],\n              [-38.578716528934336, -6.262250223717842],\n              [-38.511666965829704, -6.181918189403419],\n              [-38.493891086245384, -6.128370824079497],\n              [-38.413570038259479, -6.061332247303426],\n              [-38.368789763113767, -6.092599338339923],\n              [-38.301740200009135, -6.074823458755574],\n              [-38.127815632827577, -5.878387904387154],\n              [-38.078541949307322, -5.762306356990237],\n              [-38.078541949307322, -5.686478717378904],\n              [-38.047494584841701, -5.614913773242662],\n              [-37.913395458632465, -5.463280466677062],\n              [-37.721464298967135, -5.061422541191149],\n              [-37.596593688734941, -4.958832205246381],\n              [-37.54281561051161, -4.93204753625588],\n              [-37.230748948216586, -4.824271653238313],\n              [-37.174718672641688, -4.912469898790306],\n              [-36.954893224802873, -4.936771657529846],\n              [-36.861069979036301, -4.96669841648395],\n              [-36.747449369233294, -5.050611993903757],\n              [-36.59061952926632, -5.097655452729569],\n              [-36.386768203130629, -5.084361995191216],\n              [-36.161768194547562, -5.093832210396229],\n              [-35.979966429799873, -5.054457208894192],\n              [-35.549324323528452, -5.129361996907832],\n              [-35.481593608054084, -5.166056334245113],\n              [-35.392494483561478, -5.250870790605518],\n              [-35.235444917023642, -5.566771681562443],\n              [-35.14184139782796, -5.917103726176549],\n              [-35.095490077700418, -6.185301978594993],\n              [-34.988164634153151, -6.393646713105213],\n              [-34.971740072979713, -6.503905506373755],\n              [-35.047347986020185, -6.534733144268486],\n              [-35.257274751840754, -6.507948475277985],\n              [-35.306317722461586, -6.53022874956541],\n              [-35.4669708047619, -6.463168200132245],\n              [-35.667899767504849, -6.427396714392671],\n              [-35.721447132828786, -6.44539232054791],\n              [-35.926869503946278, -6.467672594835335],\n              [-36.252669076921421, -6.414125229511413],\n              [-36.292944957364057, -6.307030498863568],\n              [-36.382274794756114, -6.302526104160492],\n              [-36.493873920107035, -6.378353743771839],\n              [-36.516143208065898, -6.480944079716593],\n              [-36.444819963157641, -6.623832268761092],\n              [-36.533919087650247, -6.63732348021324],\n              [-36.529414692947171, -6.735431394112013],\n              [-36.502641010285203, -6.784694091303734],\n              [-36.574194968092911, -6.927582280348247],\n              [-36.659020410781864, -6.931844975823353],\n              [-36.712567776105772, -6.976625250969079],\n              [-36.770619536132784, -6.931844975823353],\n              [-36.743845853470816, -6.824750245175508],\n              [-36.792899810420209, -6.76669848514851],\n              [-36.944774816213766, -6.748922605564161],\n              [-36.989324378460083, -6.708646725121511],\n              [-37.042871743783991, -6.753427000267237],\n              [-37.154470869134911, -6.784694091303734],\n              [-37.217016037536467, -6.824750245175508],\n              [-37.270574389188909, -6.739913816158008],\n              [-37.337623952293541, -6.699879634943329],\n              [-37.516041927849642, -6.68186205613101],\n              [-37.507274837671446, -6.55248705119574],\n              [-37.431216485160689, -6.516715565456167],\n              [-37.395664725991992, -6.391844955223988],\n              [-37.176740157093803, -6.114879612627348],\n              [-37.176740157093803, -6.052543184468149],\n              [-37.261565599782756, -6.025780488134728],\n              [-37.422449394982493, -6.097103733042999],\n              [-37.475996760306401, -6.083832248161727],\n              [-37.641143250981258, -6.128370824079497],\n              [-37.757246771035256, -6.177413794700328],\n              [-37.793018256774815, -6.293517314754325],\n              [-37.842072213724208, -6.342582258032266],\n              [-38.002714309695961, -6.431901109095762],\n              [-38.05627266134843, -6.44539232054791],\n              [-38.132320027530653, -6.521219960159243],\n              [-38.239414758178498, -6.48544847441967],\n              [-38.283964320424815, -6.503444080574909],\n              [-38.435839326218371, -6.414125229511413],\n              [-38.5251691636104, -6.382858138474916]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 9278, \"fill\": \"#999\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-41.368716635364422, -8.713168285962922],\n              [-41.212567947767155, -8.632858224305608],\n              [-41.159020582443247, -8.548021795288108],\n              [-41.083192942831886, -8.525741521000683],\n              [-41.016143379727282, -8.418646790352838],\n              [-40.92232013396071, -8.431918275234111],\n              [-40.886768374792013, -8.351608213576768],\n              [-40.833221009468105, -8.36487969845804],\n              [-40.748395566779152, -8.244491510271843],\n              [-40.592016166282491, -8.12390556817185],\n              [-40.542973195661659, -8.030082322405278],\n              [-40.529470997880964, -7.905189739516004],\n              [-40.547466604036174, -7.833646768036857],\n              [-40.659065729387095, -7.762323523128586],\n              [-40.618789848944459, -7.637233186325531],\n              [-40.690343806752139, -7.512340603436257],\n              [-40.690343806752139, -7.427526147075838],\n              [-40.645574517934961, -7.400741478085337],\n              [-40.538468800958583, -7.391754661336265],\n              [-40.261723184932805, -7.391754661336265],\n              [-40.172393347540776, -7.418517357669671],\n              [-40.065298616892932, -7.405245872788413],\n              [-39.953699491542011, -7.360465597642673],\n              [-39.846593774565633, -7.347194112761414],\n              [-39.654442888329413, -7.373978781751916],\n              [-39.534065686471763, -7.47656911769667],\n              [-39.350923589641695, -7.548112089175831],\n              [-39.306374027395378, -7.623939728787164],\n              [-39.243817872665318, -7.681991488814162],\n              [-39.109949459355505, -7.753314733722434],\n              [-39.074166987287384, -7.856146768895158],\n              [-38.998339347676051, -7.820375283155585],\n              [-38.96707225663954, -7.847137979489005],\n              [-38.864240221466815, -7.704271763101588],\n              [-38.819690659220527, -7.663995882658938],\n              [-38.699093730791986, -7.619457306741182],\n              [-38.64554636546805, -7.677487094111086],\n              [-38.591999000144142, -7.690780551649439],\n              [-38.587494605441066, -7.740043248841161],\n              [-38.5251691636104, -7.766827917831677],\n              [-38.449121797428177, -7.735538854138085],\n              [-38.417843720063132, -7.748832311676438],\n              [-38.355518278232495, -7.699767368398511],\n              [-38.304223110260125, -7.78234061373594],\n              [-38.301740200009135, -7.829362099904657],\n              [-38.257190637762847, -7.851642374192082],\n              [-38.225923546726335, -7.811366493749432],\n              [-38.167871786699351, -7.806862099046356],\n              [-38.150095907115002, -7.771332312534753],\n              [-38.087539752384913, -7.820375283155585],\n              [-38.057393266859918, -7.75781912842551],\n              [-37.975940627033992, -7.771332312534753],\n              [-37.895619579048116, -7.686495883517253],\n              [-37.793018256774815, -7.637233186325531],\n              [-37.708192814085862, -7.548112089175831],\n              [-37.551824399917763, -7.47656911769667],\n              [-37.435720879863766, -7.347194112761414],\n              [-37.382173514539829, -7.351698507464491],\n              [-37.346391042471708, -7.297931415569693],\n              [-37.25279850960456, -7.271146746579191],\n              [-37.149966474431835, -7.347194112761414],\n              [-37.016098061122051, -7.400741478085337],\n              [-37.016098061122051, -7.507858181390262],\n              [-37.199240157952119, -7.574896758166332],\n              [-37.212522629161924, -7.646220003074589],\n              [-37.167973066915607, -7.762323523128586],\n              [-37.22602482694262, -7.815870888452508],\n              [-37.342117360668055, -7.9987932587117],\n              [-37.212522629161924, -7.958737104839926],\n              [-37.149966474431835, -7.976512984424275],\n              [-37.127697186472972, -8.164181448614499],\n              [-37.06086734993923, -8.231000298819694],\n              [-36.962539709469581, -8.284547664143616],\n              [-36.833164704534312, -8.226495904116618],\n              [-36.783891021014057, -8.222233208641498],\n              [-36.627742333416819, -8.0836296877292],\n              [-36.659020410781864, -8.012306442820929],\n              [-36.569690573389835, -7.922965619100353],\n              [-36.449093644961295, -7.90969413421908],\n              [-36.422319962299326, -7.824879677858675],\n              [-36.337494519610374, -7.811366493749432],\n              [-36.266171274702117, -7.824879677858675],\n              [-36.217117317752724, -7.780099402712935],\n              [-36.16784363423244, -7.824879677858675],\n              [-36.123294071986152, -7.780099402712935],\n              [-36.074240115036758, -7.824879677858675],\n              [-35.966914671489491, -7.815870888452508],\n              [-35.931373898649355, -7.838151162739933],\n              [-35.886593623503614, -7.732177037603591],\n              [-35.837539666554221, -7.744327916973361],\n              [-35.712669056322056, -7.708776157804678],\n              [-35.681390978957012, -7.713280552507754],\n              [-35.556289655825395, -7.655228792480756],\n              [-35.498248882126944, -7.454288843409245],\n              [-35.373367285566218, -7.458793238112335],\n              [-35.270546236722026, -7.382745871930098],\n              [-35.065343592175424, -7.409530540920613],\n              [-34.980518149486443, -7.512340603436257],\n              [-34.858569902646991, -7.54969412048618],\n              [-34.860822099998529, -7.594913848773672],\n              [-34.854746660313651, -7.634288850275709],\n              [-34.872972979368313, -7.692120883731818],\n              [-34.878597979582878, -7.747470006936979],\n              [-34.836970780729303, -7.871681437456516],\n              [-34.834718583377764, -7.971569136579433],\n              [-34.890518146053239, -8.092177051336506],\n              [-34.966565512235462, -8.407616516494571],\n              [-35.151740079846178, -8.913866535806477],\n              [-35.301824314087071, -8.887323566043932],\n              [-35.391143165150567, -8.882819171340856],\n              [-35.471464213136443, -8.833776200720024],\n              [-35.609848007477865, -8.865043291756507],\n              [-35.721447132828786, -8.918590657080429],\n              [-35.801768180814662, -8.869547686459597],\n              [-35.882319941699961, -8.873832354591784],\n              [-35.971419066192567, -8.905099445628281],\n              [-36.016199341338307, -8.896332355450099],\n              [-36.118789677283075, -8.967655600358356],\n              [-36.123294071986152, -9.016698570979202],\n              [-36.239397592040149, -9.088241542458348],\n              [-36.266171274702117, -9.141788907782271],\n              [-36.346492322687993, -9.199840667809269],\n              [-36.440315568454565, -9.208849457215422],\n              [-36.578699362795987, -9.293444187004965],\n              [-36.833164704534312, -9.262396822539344],\n              [-36.90449893577113, -9.289181491529845],\n              [-36.940270421510689, -9.35600034173504],\n              [-36.998322181537702, -9.306957371114194],\n              [-37.18124455179688, -9.239896821681043],\n              [-37.391171317617449, -9.043483239969703],\n              [-37.471492365603325, -9.003427086097929],\n              [-37.520546322552718, -8.945375326070931],\n              [-37.627641053200563, -8.981146811810504],\n              [-37.681419131423894, -8.976642417107428],\n              [-37.748248967957636, -8.860538897053431],\n              [-37.806289741656087, -8.896332355450099],\n              [-37.81529853106224, -8.976642417107428],\n              [-37.966942823956401, -9.141788907782271],\n              [-38.092044147087989, -9.186349456357121],\n              [-38.154589315489545, -9.266681490671544],\n              [-38.221199425452397, -9.34767270469861],\n              [-38.283074427812721, -9.203663910142609],\n              [-38.307595913123151, -9.102194179709358],\n              [-38.294324428241907, -9.043021814170856],\n              [-38.335940640766921, -9.01017269182401],\n              [-38.43291696282563, -9.003646812668819],\n              [-38.482190646345913, -8.959547689892815],\n              [-38.483992404227138, -8.877655596925138],\n              [-38.504690647204228, -8.834896806231512],\n              [-38.544296361605689, -8.831073563898173],\n              [-38.57759592342282, -8.860538897053431],\n              [-38.619223122276424, -8.896090656222128],\n              [-38.667815653426942, -8.896090656222128],\n              [-38.705399883376288, -8.879896807948114],\n              [-38.834994614882476, -8.800245926003356],\n              [-39.098249019456034, -8.714970043844119],\n              [-39.25664990440481, -8.640263009744331],\n              [-39.332697270587033, -8.565797674872442],\n              [-39.441824472015526, -8.559271795717166],\n              [-39.600895523005477, -8.619564766767255],\n              [-39.682798602301716, -8.683021800437942],\n              [-39.687742450146573, -8.749401197501371],\n              [-39.738367452077739, -8.791237136597275],\n              [-39.834893334666162, -8.809013016181552],\n              [-39.884617457656759, -8.853353838185598],\n              [-39.887770533948924, -8.923995930724061],\n              [-39.909149929295722, -8.980245932869821],\n              [-39.948744657368621, -9.022103844622904],\n              [-40.004994659514409, -9.058095056933354],\n              [-40.077669222833606, -9.08824154245832],\n              [-40.212218788513155, -9.101513027339593],\n              [-40.273192911932853, -9.144952970402969],\n              [-40.319774944959818, -9.293004733863199],\n              [-40.412697311785791, -9.396957374547355],\n              [-40.564792044150238, -9.460172708990143],\n              [-40.685839412049063, -9.47210386178898],\n              [-40.743891172076076, -9.423038918511111],\n              [-40.690343806752139, -9.342728856853768],\n              [-40.703615291633412, -9.217616547393618],\n              [-40.850996889052453, -9.150797697188352],\n              [-40.855490297426996, -9.092745937161425],\n              [-40.891042056595666, -9.03469417713444],\n              [-40.891042056595666, -8.856056475007449],\n              [-40.980371893987723, -8.815780594564785],\n              [-41.003992500357526, -8.781349440907604],\n              [-41.100968822416235, -8.775724440693025],\n              [-41.105473217119311, -8.717672680666027],\n              [-41.159020582443247, -8.708663891259846],\n              [-41.324167073118076, -8.735448560250362],\n              [-41.368716635364422, -8.713168285962922]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 3944, \"fill\": \"#ccc\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-38.699093730791986, -7.619457306741182],\n              [-38.636768288961321, -7.534620877723682],\n              [-38.632274880586806, -7.458793238112335],\n              [-38.582990210737989, -7.427526147075838],\n              [-38.533947240117129, -7.293646747437492],\n              [-38.547449437897825, -7.235594987410494],\n              [-38.600996803221761, -7.222103775958345],\n              [-38.676824442833095, -7.15954762122827],\n              [-38.685822245910714, -7.030172616293001],\n              [-38.730371808157031, -7.0033879473025],\n              [-38.725867413453955, -6.891788821951579],\n              [-38.650039773842593, -6.838241456627657],\n              [-38.61877268280611, -6.757931394970328],\n              [-38.650039773842593, -6.690870845537162],\n              [-38.578716528934336, -6.480944079716593],\n              [-38.5251691636104, -6.382858138474916],\n              [-38.435839326218371, -6.414125229511413],\n              [-38.283964320424815, -6.503444080574909],\n              [-38.239414758178498, -6.48544847441967],\n              [-38.132320027530653, -6.521219960159243],\n              [-38.05627266134843, -6.44539232054791],\n              [-38.002714309695961, -6.431901109095762],\n              [-37.842072213724208, -6.342582258032266],\n              [-37.793018256774815, -6.293517314754325],\n              [-37.757246771035256, -6.177413794700328],\n              [-37.641143250981258, -6.128370824079497],\n              [-37.475996760306401, -6.083832248161727],\n              [-37.422449394982493, -6.097103733042999],\n              [-37.261565599782756, -6.025780488134728],\n              [-37.176740157093803, -6.052543184468149],\n              [-37.176740157093803, -6.114879612627348],\n              [-37.395664725991992, -6.391844955223988],\n              [-37.431216485160689, -6.516715565456167],\n              [-37.507274837671446, -6.55248705119574],\n              [-37.516041927849642, -6.68186205613101],\n              [-37.337623952293541, -6.699879634943329],\n              [-37.270574389188909, -6.739913816158008],\n              [-37.217016037536467, -6.824750245175508],\n              [-37.154470869134911, -6.784694091303734],\n              [-37.042871743783991, -6.753427000267237],\n              [-36.989324378460083, -6.708646725121511],\n              [-36.944774816213766, -6.748922605564161],\n              [-36.792899810420209, -6.76669848514851],\n              [-36.743845853470816, -6.824750245175508],\n              [-36.770619536132784, -6.931844975823353],\n              [-36.712567776105772, -6.976625250969079],\n              [-36.659020410781864, -6.931844975823353],\n              [-36.574194968092911, -6.927582280348247],\n              [-36.502641010285203, -6.784694091303734],\n              [-36.529414692947171, -6.735431394112013],\n              [-36.533919087650247, -6.63732348021324],\n              [-36.444819963157641, -6.623832268761092],\n              [-36.516143208065898, -6.480944079716593],\n              [-36.493873920107035, -6.378353743771839],\n              [-36.382274794756114, -6.302526104160492],\n              [-36.292944957364057, -6.307030498863568],\n              [-36.252669076921421, -6.414125229511413],\n              [-35.926869503946278, -6.467672594835335],\n              [-35.721447132828786, -6.44539232054791],\n              [-35.667899767504849, -6.427396714392671],\n              [-35.4669708047619, -6.463168200132245],\n              [-35.306317722461586, -6.53022874956541],\n              [-35.257274751840754, -6.507948475277985],\n              [-35.047347986020185, -6.534733144268486],\n              [-34.971740072979713, -6.503905506373755],\n              [-34.929673420984386, -6.785155517102595],\n              [-34.879949297993818, -6.908224369453549],\n              [-34.875895342761027, -7.002948494160734],\n              [-34.833817704437166, -7.024327889507546],\n              [-34.805472976793396, -7.288483173021774],\n              [-34.816492264323102, -7.394896751299868],\n              [-34.857669023706393, -7.53328054564129],\n              [-34.858569902646991, -7.54969412048618],\n              [-34.980518149486443, -7.512340603436257],\n              [-35.065343592175424, -7.409530540920613],\n              [-35.270546236722026, -7.382745871930098],\n              [-35.373367285566218, -7.458793238112335],\n              [-35.498248882126944, -7.454288843409245],\n              [-35.556289655825395, -7.655228792480756],\n              [-35.681390978957012, -7.713280552507754],\n              [-35.712669056322056, -7.708776157804678],\n              [-35.837539666554221, -7.744327916973361],\n              [-35.886593623503614, -7.732177037603591],\n              [-35.931373898649355, -7.838151162739933],\n              [-35.966914671489491, -7.815870888452508],\n              [-36.074240115036758, -7.824879677858675],\n              [-36.123294071986152, -7.780099402712935],\n              [-36.16784363423244, -7.824879677858675],\n              [-36.217117317752724, -7.780099402712935],\n              [-36.266171274702117, -7.824879677858675],\n              [-36.337494519610374, -7.811366493749432],\n              [-36.422319962299326, -7.824879677858675],\n              [-36.449093644961295, -7.90969413421908],\n              [-36.569690573389835, -7.922965619100353],\n              [-36.659020410781864, -8.012306442820929],\n              [-36.627742333416819, -8.0836296877292],\n              [-36.783891021014057, -8.222233208641498],\n              [-36.833164704534312, -8.226495904116618],\n              [-36.962539709469581, -8.284547664143616],\n              [-37.06086734993923, -8.231000298819694],\n              [-37.127697186472972, -8.164181448614499],\n              [-37.149966474431835, -7.976512984424275],\n              [-37.212522629161924, -7.958737104839926],\n              [-37.342117360668055, -7.9987932587117],\n              [-37.22602482694262, -7.815870888452508],\n              [-37.167973066915607, -7.762323523128586],\n              [-37.212522629161924, -7.646220003074589],\n              [-37.199240157952119, -7.574896758166332],\n              [-37.016098061122051, -7.507858181390262],\n              [-37.016098061122051, -7.400741478085337],\n              [-37.149966474431835, -7.347194112761414],\n              [-37.25279850960456, -7.271146746579191],\n              [-37.346391042471708, -7.297931415569693],\n              [-37.382173514539829, -7.351698507464491],\n              [-37.435720879863766, -7.347194112761414],\n              [-37.551824399917763, -7.47656911769667],\n              [-37.708192814085862, -7.548112089175831],\n              [-37.793018256774815, -7.637233186325531],\n              [-37.895619579048116, -7.686495883517253],\n              [-37.975940627033992, -7.771332312534753],\n              [-38.057393266859918, -7.75781912842551],\n              [-38.087539752384913, -7.820375283155585],\n              [-38.150095907115002, -7.771332312534753],\n              [-38.167871786699351, -7.806862099046356],\n              [-38.225923546726335, -7.811366493749432],\n              [-38.257190637762847, -7.851642374192082],\n              [-38.301740200009135, -7.829362099904657],\n              [-38.304223110260125, -7.78234061373594],\n              [-38.355518278232495, -7.699767368398511],\n              [-38.417843720063132, -7.748832311676438],\n              [-38.449121797428177, -7.735538854138085],\n              [-38.5251691636104, -7.766827917831677],\n              [-38.587494605441066, -7.740043248841161],\n              [-38.591999000144142, -7.690780551649439],\n              [-38.64554636546805, -7.677487094111086],\n              [-38.699093730791986, -7.619457306741182]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 6727, \"fill\": \"#999\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-53.669921938602499, -26.258005381026635],\n              [-53.663396059447336, -26.257763681798622],\n              [-53.516245174927704, -26.289052745492228],\n              [-53.458193414900734, -26.289052745492199],\n              [-53.355372366056514, -26.239987802214294],\n              [-53.279544726445167, -26.262268076501719],\n              [-53.123396038847943, -26.369604506377534],\n              [-52.99379032101325, -26.351608900222303],\n              [-52.913469273027374, -26.365100111674394],\n              [-52.815372345457149, -26.33831544268395],\n              [-52.672495142741198, -26.378371596555716],\n              [-52.641217065376168, -26.400651870843092],\n              [-52.542900411235053, -26.400651870843141],\n              [-52.458074968546086, -26.431918961879639],\n              [-52.199094245776138, -26.44991456803487],\n              [-52.007174072439341, -26.583793967673216],\n              [-51.873294672800995, -26.601569847257558],\n              [-51.502714824680112, -26.601569847257558],\n              [-51.422393776694236, -26.699897487727206],\n              [-51.284020968681347, -26.650854517106367],\n              [-51.239471406435086, -26.606074241960584],\n              [-51.279516573978299, -26.498979511312712],\n              [-51.288525363384451, -26.423151871701464],\n              [-51.248249482941787, -26.347104505519212],\n              [-51.074094202860806, -26.23550538016832],\n              [-50.944719197925508, -26.244492196917378],\n              [-50.900169635679219, -26.280263682656951],\n              [-50.77057490417306, -26.22223389528704],\n              [-50.735023145004391, -26.231000985465229],\n              [-50.645693307612333, -26.07035888949347],\n              [-50.542872258768142, -26.02579834091862],\n              [-50.45804681607919, -26.02579834091862],\n              [-50.369167418157474, -26.085871585397726],\n              [-50.315169613363224, -26.052583009909121],\n              [-50.190299003131059, -26.052583009909121],\n              [-49.949094159945446, -26.012307129466471],\n              [-49.882275309740265, -26.039069825799885],\n              [-49.752669591905601, -26.123906254817314],\n              [-49.721622227439951, -26.159677740556958],\n              [-49.596520904308335, -26.22223389528704],\n              [-49.489415187331957, -26.22223389528704],\n              [-49.45364370159237, -26.16866455730603],\n              [-49.29749501399516, -26.106130375233022],\n              [-49.212669571306208, -26.030302735621696],\n              [-49.109848522462016, -25.994531249882129],\n              [-48.944691045458626, -26.007802734763388],\n              [-48.917917362796658, -25.97651367106981],\n              [-48.650169549848528, -25.97225097559469],\n              [-48.585372184095462, -25.986203612845699],\n              [-48.619341911953825, -26.179475104593394],\n              [-48.678964716962525, -26.225815438392431],\n              [-48.713846310090048, -26.226958016561014],\n              [-48.748266477418667, -26.268574229086028],\n              [-48.700794551779722, -26.348225111030729],\n              [-48.651520868259468, -26.406496597628575],\n              [-48.65804674741463, -26.519216328491041],\n              [-48.676492793040154, -26.612380394544971],\n              [-48.677844111451122, -26.702819851119898],\n              [-48.61574938251988, -26.878095736712453],\n              [-48.593469108232398, -27.058095743578804],\n              [-48.568266470552317, -27.123354535130829],\n              [-48.554094106730417, -27.196018112121465],\n              [-48.595490592684484, -27.2639795404952],\n              [-48.571869986314709, -27.372876029024326],\n              [-48.64252306518182, -27.55781988373559],\n              [-48.605619987602211, -27.825117257213435],\n              [-48.620693230364736, -28.075539630047501],\n              [-48.648367791967303, -28.207177818662899],\n              [-48.693148067113043, -28.310229580406485],\n              [-48.797320434368146, -28.442746675305386],\n              [-48.799572631719684, -28.575263770204174],\n              [-49.023671761362095, -28.698574321783155],\n              [-49.271391497374395, -28.871147570553831],\n              [-49.499995021719883, -29.075449336159807],\n              [-49.712844150933222, -29.324531376911544],\n              [-49.8152147603071, -29.271203738158505],\n              [-49.86877311195957, -29.21765637283459],\n              [-49.953598554648522, -29.195376098547115],\n              [-50.078699877780139, -29.244419069168003],\n              [-50.033919602634398, -29.320466435350227],\n              [-50.051915208789637, -29.356018194518924],\n              [-50.168018728843663, -29.284694949610639],\n              [-50.163525320469091, -29.195376098547165],\n              [-50.069691088373986, -29.092763789945316],\n              [-50.007145919972459, -29.101552852780515],\n              [-49.944820478141793, -28.949897573557898],\n              [-49.953598554648522, -28.793518173061251],\n              [-49.846492837672145, -28.695432231819552],\n              [-49.797449867051284, -28.623867287683332],\n              [-49.699122226581636, -28.597104591349918],\n              [-49.708120029659256, -28.530263768487643],\n              [-49.736695470202449, -28.511367283391792],\n              [-49.839066079576355, -28.465246676163645],\n              [-49.938525311886025, -28.448151948949075],\n              [-50.068790209433359, -28.444328706615693],\n              [-50.141025319610776, -28.452876070223034],\n              [-50.154966970533252, -28.473794039770993],\n              [-50.233046807496123, -28.468630465355268],\n              [-50.446566102750609, -28.422048432328303],\n              [-50.577523138996241, -28.38627694658873],\n              [-50.736143750515879, -28.235983972105508],\n              [-50.965867880372912, -27.959458082650634],\n              [-51.117292446696183, -27.807802803427933],\n              [-51.190417449485665, -27.781237861008321],\n              [-51.286723605503198, -27.716220768684309],\n              [-51.406419654991112, -27.613169006940751],\n              [-51.487641581917615, -27.564126036319912],\n              [-51.530169659711817, -27.568850157593872],\n              [-51.582365706624842, -27.547470762247087],\n              [-51.644691148455451, -27.499768123708598],\n              [-51.701622302970947, -27.488078670137682],\n              [-51.75359862331311, -27.51191900307839],\n              [-51.873294672800995, -27.509458065484495],\n              [-51.912900387202455, -27.472544001576331],\n              [-51.984223632110712, -27.376699271357644],\n              [-52.059589845923213, -27.31348393691492],\n              [-52.1392407278679, -27.283315478732838],\n              [-52.192348640050056, -27.280854541138964],\n              [-52.228570565259943, -27.292543994709881],\n              [-52.264792490469816, -27.277251025376501],\n              [-52.304398204871291, -27.283095752161898],\n              [-52.348046888177009, -27.276350146435902],\n              [-52.414646011811286, -27.236293992564114],\n              [-52.51072145492941, -27.230449265778645],\n              [-52.636492944102201, -27.259475145792123],\n              [-52.741566190297917, -27.245742235112033],\n              [-52.826391632986883, -27.189492232966188],\n              [-52.900197788146116, -27.176682173883854],\n              [-52.952844274529411, -27.178923384906845],\n              [-52.994240760483564, -27.163388716345494],\n              [-53.030473672021984, -27.137526898952693],\n              [-53.070749552464648, -27.141789594427806],\n              [-53.103598674811508, -27.154401899596394],\n              [-53.134195599806787, -27.140449262345427],\n              [-53.184370162267669, -27.14945805175158],\n              [-53.227117966632761, -27.173737837833983],\n              [-53.263339891842634, -27.163388716345494],\n              [-53.304747364125333, -27.097690471651809],\n              [-53.347495168490411, -27.080595744437176],\n              [-53.398120170421592, -27.082397502318429],\n              [-53.456622369918932, -27.103315471866381],\n              [-53.48969121883664, -27.133242230820429],\n              [-53.498018855873042, -27.172177779180771],\n              [-53.540096494196931, -27.197819870002689],\n              [-53.615693420908883, -27.209970749372474],\n              [-53.659572817113968, -27.200522506824541],\n              [-53.671492983584315, -27.169475142358927],\n              [-53.718525456081579, -27.157543989559997],\n              [-53.800417549049271, -27.16475102108496],\n              [-53.851723703350189, -27.156203657477654],\n              [-53.935417554199105, -27.161147505322504],\n              [-53.915620190162599, -27.159565474012084],\n              [-53.838221505569436, -27.12109135145073],\n              [-53.758570623624792, -26.978225135063269],\n              [-53.717393864241558, -26.882819857986362],\n              [-53.727072819688885, -26.804751007352024],\n              [-53.75339606288054, -26.748720731777155],\n              [-53.744617986373783, -26.666608912238587],\n              [-53.718075016611238, -26.443168962308732],\n              [-53.710867985086338, -26.351828626793122],\n              [-53.668570620191588, -26.288151866551573],\n              [-53.669921938602499, -26.258005381026635]\n            ]\n          ],\n          [\n            [\n              [-48.464775255666893, -27.436333062694985],\n              [-48.414820419776902, -27.399638725357704],\n              [-48.377917342197293, -27.451406305457454],\n              [-48.409645859032651, -27.566367247342839],\n              [-48.496723499073084, -27.706992252707323],\n              [-48.48592393811424, -27.767065497186366],\n              [-48.554544546200759, -27.812307198130952],\n              [-48.54217394026, -27.574694884379255],\n              [-48.505270862680447, -27.495505428233514],\n              [-48.464775255666893, -27.436333062694985]\n            ]\n          ],\n          [\n            [\n              [-48.603148063679726, -26.413703629153474],\n              [-48.66569323208131, -26.289733897861879],\n              [-48.539691030009067, -26.170246588616294],\n              [-48.497624378013768, -26.218850106095431],\n              [-48.531143666401817, -26.313112805003755],\n              [-48.568046743981427, -26.379733901295197],\n              [-48.58447130515475, -26.401552749783775],\n              [-48.603148063679726, -26.413703629153474]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 11207, \"fill\": \"#999\" },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-53.935417554199105, -27.161147505322504],\n              [-53.851723703350189, -27.156203657477654],\n              [-53.800417549049271, -27.16475102108496],\n              [-53.718525456081579, -27.157543989559997],\n              [-53.671492983584315, -27.169475142358927],\n              [-53.659572817113968, -27.200522506824541],\n              [-53.615693420908883, -27.209970749372474],\n              [-53.540096494196931, -27.197819870002689],\n              [-53.498018855873042, -27.172177779180771],\n              [-53.48969121883664, -27.133242230820429],\n              [-53.456622369918932, -27.103315471866381],\n              [-53.398120170421592, -27.082397502318429],\n              [-53.347495168490411, -27.080595744437176],\n              [-53.304747364125333, -27.097690471651809],\n              [-53.263339891842634, -27.163388716345494],\n              [-53.227117966632761, -27.173737837833983],\n              [-53.184370162267669, -27.14945805175158],\n              [-53.134195599806787, -27.140449262345427],\n              [-53.103598674811508, -27.154401899596394],\n              [-53.070749552464648, -27.141789594427806],\n              [-53.030473672021984, -27.137526898952693],\n              [-52.994240760483564, -27.163388716345494],\n              [-52.952844274529411, -27.178923384906845],\n              [-52.900197788146116, -27.176682173883854],\n              [-52.826391632986883, -27.189492232966188],\n              [-52.741566190297917, -27.245742235112033],\n              [-52.636492944102201, -27.259475145792123],\n              [-52.51072145492941, -27.230449265778645],\n              [-52.414646011811286, -27.236293992564114],\n              [-52.348046888177009, -27.276350146435902],\n              [-52.304398204871291, -27.283095752161898],\n              [-52.264792490469816, -27.277251025376501],\n              [-52.228570565259943, -27.292543994709881],\n              [-52.192348640050056, -27.280854541138964],\n              [-52.1392407278679, -27.283315478732838],\n              [-52.059589845923213, -27.31348393691492],\n              [-51.984223632110712, -27.376699271357644],\n              [-51.912900387202455, -27.472544001576331],\n              [-51.873294672800995, -27.509458065484495],\n              [-51.75359862331311, -27.51191900307839],\n              [-51.701622302970947, -27.488078670137682],\n              [-51.644691148455451, -27.499768123708598],\n              [-51.582365706624842, -27.547470762247087],\n              [-51.530169659711817, -27.568850157593872],\n              [-51.487641581917615, -27.564126036319912],\n              [-51.406419654991112, -27.613169006940751],\n              [-51.286723605503198, -27.716220768684309],\n              [-51.190417449485665, -27.781237861008321],\n              [-51.117292446696183, -27.807802803427933],\n              [-50.965867880372912, -27.959458082650634],\n              [-50.736143750515879, -28.235983972105508],\n              [-50.577523138996241, -28.38627694658873],\n              [-50.446566102750609, -28.422048432328303],\n              [-50.233046807496123, -28.468630465355268],\n              [-50.154966970533252, -28.473794039770993],\n              [-50.141025319610776, -28.452876070223034],\n              [-50.068790209433359, -28.444328706615693],\n              [-49.938525311886025, -28.448151948949075],\n              [-49.839066079576355, -28.465246676163645],\n              [-49.736695470202449, -28.511367283391792],\n              [-49.708120029659256, -28.530263768487643],\n              [-49.699122226581636, -28.597104591349918],\n              [-49.797449867051284, -28.623867287683332],\n              [-49.846492837672145, -28.695432231819552],\n              [-49.953598554648522, -28.793518173061251],\n              [-49.944820478141793, -28.949897573557898],\n              [-50.007145919972459, -29.101552852780515],\n              [-50.069691088373986, -29.092763789945316],\n              [-50.163525320469091, -29.195376098547165],\n              [-50.168018728843663, -29.284694949610639],\n              [-50.051915208789637, -29.356018194518924],\n              [-50.033919602634398, -29.320466435350227],\n              [-50.078699877780139, -29.244419069168003],\n              [-49.953598554648522, -29.195376098547115],\n              [-49.86877311195957, -29.21765637283459],\n              [-49.8152147603071, -29.271203738158505],\n              [-49.712844150933222, -29.324531376911544],\n              [-49.745923986179491, -29.363225226043852],\n              [-50.033249436593223, -29.801074363840215],\n              [-50.29941521823099, -30.425669114229116],\n              [-50.620040230461882, -30.897729679111798],\n              [-50.748074903314773, -31.068039744202359],\n              [-50.921318318126595, -31.258388872557354],\n              [-51.151723600353364, -31.480466517747693],\n              [-51.460417459785361, -31.702324436367149],\n              [-51.79814818555937, -31.900320049388839],\n              [-51.920316158969712, -31.989638900452327],\n              [-52.03912231584556, -32.114751209912484],\n              [-52.069049074799679, -32.063005602469801],\n              [-52.04316528474979, -31.977488021082557],\n              [-52.059589845923213, -31.913371807699221],\n              [-52.063193361685677, -31.830359109220041],\n              [-51.995023193069557, -31.815044167229566],\n              [-51.893092036837459, -31.867690653612875],\n              [-51.841115716495324, -31.831919167873302],\n              [-51.80332274630365, -31.796609107932575],\n              [-51.680693347094461, -31.774548560216033],\n              [-51.446245095963462, -31.557414762870536],\n              [-51.272089815882481, -31.47686300198523],\n              [-51.174223601211679, -31.339841512383273],\n              [-51.157568327138819, -31.266716509593778],\n              [-51.161391569472158, -31.118906445361525],\n              [-51.106042446267026, -31.081333201740719],\n              [-50.980040244194782, -31.094143260823131],\n              [-50.954398153372864, -31.052065622499249],\n              [-50.965417440902598, -31.005505562129372],\n              [-50.940895955592168, -30.903794132468136],\n              [-50.770124464702775, -30.813354675893144],\n              [-50.689341990918024, -30.704216488136105],\n              [-50.716346386479415, -30.425888840799999],\n              [-50.685068309114371, -30.413518234859346],\n              [-50.614865669717602, -30.456958177922701],\n              [-50.582016547370756, -30.438940599110381],\n              [-50.546464788202059, -30.316772625700047],\n              [-50.563570501745232, -30.253557291257323],\n              [-50.646143747082647, -30.236902017184477],\n              [-50.931898152514549, -30.374362959928192],\n              [-51.025040245911413, -30.368737959713613],\n              [-51.040344201573333, -30.26052262355428],\n              [-51.17939816195593, -30.211018227134588],\n              [-51.233615693321042, -30.121479649500209],\n              [-51.249820527923589, -30.06004410028163],\n              [-51.297973605932356, -30.034841462601477],\n              [-51.295040256211081, -30.14105728696579],\n              [-51.281768771329808, -30.244109048709397],\n              [-51.157348600567929, -30.364255537667624],\n              [-51.187495086092923, -30.411958176206085],\n              [-51.246667451631424, -30.467527025982122],\n              [-51.287624484443825, -30.591277030702805],\n              [-51.283120089740748, -30.751479673532806],\n              [-51.316419651557879, -30.702656429482843],\n              [-51.359167455922972, -30.674531428409963],\n              [-51.376492896037007, -30.84686297795264],\n              [-51.459066141374421, -30.912802921874295],\n              [-51.485169657995186, -30.977600287627368],\n              [-51.463570536077498, -31.052746774868979],\n              [-51.50631834044259, -31.104492382311669],\n              [-51.716915272304334, -31.243777055593711],\n              [-51.926842038124903, -31.338940633442661],\n              [-51.97252319221127, -31.383720908588394],\n              [-51.994792480170133, -31.489914760295619],\n              [-52.02697143647579, -31.599052948052659],\n              [-52.11989380330175, -31.694897678271346],\n              [-52.193469245561559, -31.885466533197217],\n              [-52.191447761109444, -31.967600325392873],\n              [-52.167146002369904, -32.088427966720836],\n              [-52.127320561397553, -32.16785912209464],\n              [-52.190096442698518, -32.220725335048826],\n              [-52.274691172488048, -32.32377709679244],\n              [-52.341740735592666, -32.439638917618467],\n              [-52.508469257577858, -32.875246844391839],\n              [-52.652247339234421, -33.137820096595718],\n              [-52.762945585644729, -33.266294222590368],\n              [-52.920896031123192, -33.401975380109938],\n              [-53.370665335389901, -33.742178029806389],\n              [-53.397669730951279, -33.737234181961547],\n              [-53.463598688544394, -33.709768360601309],\n              [-53.518947811749555, -33.677138964825346],\n              [-53.531318417690201, -33.655539842907658],\n              [-53.537624570274517, -33.622932419788782],\n              [-53.530417538749589, -33.500303020579594],\n              [-53.531318417690201, -33.17088894551344],\n              [-53.511971493124051, -33.108574490011335],\n              [-53.482945613110545, -33.068518336139562],\n              [-53.395197807028865, -33.01024684954168],\n              [-53.310141651440475, -32.926992451834529],\n              [-53.214066208322365, -32.821018326698187],\n              [-53.125648236199481, -32.736643323479534],\n              [-53.157365766706292, -32.680173594762884],\n              [-53.231171921865524, -32.625505623927474],\n              [-53.362799124152332, -32.581164801923499],\n              [-53.489471492265736, -32.503315677860044],\n              [-53.601740783657846, -32.402966552938281],\n              [-53.653717103999966, -32.298794185683171],\n              [-53.701200015967544, -32.186294181391631],\n              [-53.746650457154473, -32.097414783469901],\n              [-53.761723699916971, -32.056919176456368],\n              [-53.80604254926385, -32.039824449241756],\n              [-53.876464915231495, -31.994604720954264],\n              [-53.920575024336031, -31.952307356059492],\n              [-53.985141677189688, -31.928225323890835],\n              [-54.100344318303073, -31.901440654900334],\n              [-54.220490807261285, -31.855100321101339],\n              [-54.369893889132442, -31.745083227060768],\n              [-54.477669772150008, -31.622673554422462],\n              [-54.530997410903055, -31.541902066966273],\n              [-54.587697852519128, -31.485190639021653],\n              [-54.895941272480812, -31.391147666684198],\n              [-55.036115838374911, -31.279109088191518],\n              [-55.091245235009183, -31.313979694990479],\n              [-55.173598753775721, -31.279548541333284],\n              [-55.254589967802801, -31.225539750210508],\n              [-55.278891726542327, -31.184143264256356],\n              [-55.313322880199522, -31.141626172790708],\n              [-55.345490850176631, -31.093022655311636],\n              [-55.365969366582831, -31.046220895713788],\n              [-55.449674203760296, -30.964548529316986],\n              [-55.557219373878439, -30.875888857966139],\n              [-55.603120254535668, -30.850708192943074],\n              [-55.627191300375785, -30.85811297838179],\n              [-55.650592180174698, -30.892104678897219],\n              [-55.665214983466896, -30.924953801244065],\n              [-55.705941303379859, -30.946552923161761],\n              [-55.756346578740164, -30.987048530175294],\n              [-55.807872459611971, -31.036772653165869],\n              [-55.873570704305664, -31.069621775512708],\n              [-55.952089994410315, -31.080871775941866],\n              [-56.004747467122158, -31.079289744631517],\n              [-56.015547028081002, -31.059734079823023],\n              [-56.01846939147373, -30.991772651449253],\n              [-55.998891754008156, -30.837195008833831],\n              [-56.044792634665384, -30.777583190153571],\n              [-56.10576675808511, -30.71366473068403],\n              [-56.176200110381302, -30.628388848524764],\n              [-56.40727555864926, -30.447487962717688],\n              [-56.721594418295822, -30.186958167623018],\n              [-56.83274310417643, -30.107307285678324],\n              [-56.93714618433097, -30.101001133094016],\n              [-57.032771187978781, -30.109987949843088],\n              [-57.120518994060461, -30.144419103500283],\n              [-57.18689839112389, -30.264807291686473],\n              [-57.214342239827033, -30.283484050211435],\n              [-57.383773398634077, -30.28078141338959],\n              [-57.552292692171946, -30.26120377592401],\n              [-57.608993133788019, -30.187859046563631],\n              [-57.563773405500527, -30.1399147087972],\n              [-57.405141807652342, -30.033940583660858],\n              [-57.317394001570648, -29.939458158181644],\n              [-57.300749713826349, -29.856643213616252],\n              [-57.224691361315578, -29.782177878744378],\n              [-57.089240916695417, -29.716237934822715],\n              [-56.938717229312772, -29.59475111378211],\n              [-56.772450133126441, -29.41789319687927],\n              [-56.671419855834941, -29.287397586432505],\n              [-56.635868096666243, -29.203022583213851],\n              [-56.570620291442864, -29.138005490889896],\n              [-56.47589616673568, -29.092544063374433],\n              [-56.393322921398266, -28.997380485525483],\n              [-56.322450115960308, -28.852470812028862],\n              [-56.225473793901571, -28.737268170915485],\n              [-56.102844394692383, -28.651772562185336],\n              [-56.034223786605963, -28.580888770418831],\n              [-56.019589996985232, -28.524638768273064],\n              [-55.984950103085694, -28.488647555962608],\n              [-55.930271145921736, -28.472893160830374],\n              [-55.903717189830658, -28.443208101104233],\n              [-55.905518947711883, -28.399548431469995],\n              [-55.890445704949386, -28.37008309831473],\n              [-55.858947901013465, -28.35410897661162],\n              [-55.806070701730746, -28.359733976826199],\n              [-55.732044820000624, -28.386716399730496],\n              [-55.687275531183445, -28.38155282531477],\n              [-55.671971575521511, -28.344880460634577],\n              [-55.691549212987098, -28.302802822310696],\n              [-55.745997457251633, -28.255539636913994],\n              [-55.725518940845433, -28.204013756042194],\n              [-55.582422011558592, -28.121001057563006],\n              [-55.47666761299314, -28.089272540727663],\n              [-55.409848762787945, -28.037746659855856],\n              [-55.346391729117258, -27.956074293459054],\n              [-55.243790406843942, -27.898923412372667],\n              [-55.101594356497728, -27.866755442395558],\n              [-55.063790399977492, -27.835927804500827],\n              [-55.068964960721758, -27.796333076427906],\n              [-55.039950067036813, -27.767746649556173],\n              [-54.955794790389035, -27.74726813314998],\n              [-54.91012462263123, -27.708574284017672],\n              [-54.902697864535426, -27.651862856073052],\n              [-54.875693468974035, -27.599216369689749],\n              [-54.829122422275617, -27.550612852210676],\n              [-54.777146101933511, -27.532397519484562],\n              [-54.719775494276234, -27.544987851996098],\n              [-54.665766703153466, -27.526552792699107],\n              [-54.615372414121708, -27.477048396279415],\n              [-54.554848730172282, -27.454108942279341],\n              [-54.48441537787609, -27.457251032242951],\n              [-54.448193452666203, -27.446440484955566],\n              [-54.326915371867941, -27.423501030955492],\n              [-54.26009652166276, -27.38210454500134],\n              [-54.205197837927912, -27.289621631317146],\n              [-54.156374593877956, -27.253850145577573],\n              [-54.113846516083754, -27.274768115125532],\n              [-54.040040360924522, -27.243720750659918],\n              [-53.935417554199105, -27.161147505322504]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/in/burt-barber-rigby-problem-unweighted.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {},\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 4]\n      },\n      \"properties\": {\n        \"weight\": \"10\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [3, 6]\n      },\n      \"properties\": {\n        \"weight\": \"20\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [3.4, 5.2]\n      },\n      \"properties\": {\n        \"weight\": \"10\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4, 4]\n      },\n      \"properties\": {\n        \"weight\": \"20\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.4, 5.2]\n      },\n      \"properties\": {\n        \"weight\": \"10\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.8, 6.2]\n      },\n      \"properties\": {\n        \"weight\": \"80\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 1]\n      },\n      \"properties\": {\n        \"weight\": \"10\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [6, 5]\n      },\n      \"properties\": {\n        \"weight\": \"90\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9, 9]\n      },\n      \"properties\": {\n        \"weight\": \"100\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/in/burt-barber-rigby-problem.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"weight\": \"weight\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 4]\n      },\n      \"properties\": {\n        \"weight\": \"10\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [3, 6]\n      },\n      \"properties\": {\n        \"weight\": \"20\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [3.4, 5.2]\n      },\n      \"properties\": {\n        \"weight\": \"10\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4, 4]\n      },\n      \"properties\": {\n        \"weight\": \"20\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.4, 5.2]\n      },\n      \"properties\": {\n        \"weight\": \"10\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.8, 6.2]\n      },\n      \"properties\": {\n        \"weight\": \"80\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 1]\n      },\n      \"properties\": {\n        \"weight\": \"10\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [6, 5]\n      },\n      \"properties\": {\n        \"weight\": \"90\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9, 9]\n      },\n      \"properties\": {\n        \"weight\": \"100\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/in/kuhn-kuenne-ukraine-problem.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"weight\": \"populationProportion\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [28, 54]\n      },\n      \"properties\": {\n        \"name\": \"Minsk\",\n        \"populationProportion\": \"0.012\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [24, 50]\n      },\n      \"properties\": {\n        \"name\": \"Lvov\",\n        \"populationProportion\": \"0.010\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [28, 47]\n      },\n      \"properties\": {\n        \"name\": \"Kishinev\",\n        \"populationProportion\": \"0.005\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [31, 46]\n      },\n      \"properties\": {\n        \"name\": \"Odessa\",\n        \"populationProportion\": \"0.014\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [32, 47]\n      },\n      \"properties\": {\n        \"name\": \"Nikolaev\",\n        \"populationProportion\": \"0.005\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [33, 47]\n      },\n      \"properties\": {\n        \"name\": \"Kherson\",\n        \"populationProportion\": \"0.004\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [34, 45]\n      },\n      \"properties\": {\n        \"name\": \"Sevastopol\",\n        \"populationProportion\": \"0.004\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [34, 45]\n      },\n      \"properties\": {\n        \"name\": \"Simferopol\",\n        \"populationProportion\": \"0.004\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [34, 46]\n      },\n      \"properties\": {\n        \"name\": \"Krivoi Rog\",\n        \"populationProportion\": \"0.009\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35, 48]\n      },\n      \"properties\": {\n        \"name\": \"Dneprodzerhinsk\",\n        \"populationProportion\": \"0.004\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35, 48]\n      },\n      \"properties\": {\n        \"name\": \"Dnepropetrovsk\",\n        \"populationProportion\": \"0.015\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [36, 48]\n      },\n      \"properties\": {\n        \"name\": \"Zaporozhe\",\n        \"populationProportion\": \"0.010\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [38, 47]\n      },\n      \"properties\": {\n        \"name\": \"Zhdanov\",\n        \"populationProportion\": \"0.007\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [37, 48]\n      },\n      \"properties\": {\n        \"name\": \"Stalino\",\n        \"populationProportion\": \"0.016\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [38, 48]\n      },\n      \"properties\": {\n        \"name\": \"Makeyevka\",\n        \"populationProportion\": \"0.008\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [38, 48]\n      },\n      \"properties\": {\n        \"name\": \"Gorlovka\",\n        \"populationProportion\": \"0.007\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [39, 47]\n      },\n      \"properties\": {\n        \"name\": \"Taganrog\",\n        \"populationProportion\": \"0.005\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [29, 45]\n      },\n      \"properties\": {\n        \"name\": \"Krasnodar\",\n        \"populationProportion\": \"0.007\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [40, 47]\n      },\n      \"properties\": {\n        \"name\": \"Rostov\",\n        \"populationProportion\": \"0.014\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [40, 48]\n      },\n      \"properties\": {\n        \"name\": \"Shakhty\",\n        \"populationProportion\": \"0.004\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [39, 49]\n      },\n      \"properties\": {\n        \"name\": \"Kadiyevka\",\n        \"populationProportion\": \"0.004\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [37, 51]\n      },\n      \"properties\": {\n        \"name\": \"Kharkhov\",\n        \"populationProportion\": \"0.021\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [31, 50]\n      },\n      \"properties\": {\n        \"name\": \"Kiev\",\n        \"populationProportion\": \"0.026\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [31, 52]\n      },\n      \"properties\": {\n        \"name\": \"Gomel\",\n        \"populationProportion\": \"0.004\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/in/lines.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {},\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.125738749668566, 38.76746626035359],\n          [-9.118958660834354, 38.7838161797457]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.161999067964235, 38.75179370240931],\n          [-9.147535970888825, 38.72884802907016]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.112236293805175, 38.73875598177839],\n          [-9.199016504129736, 38.74023266794694]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.172145822943001, 38.78402506701773],\n          [-9.136258235151075, 38.799637924903166]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.10727033052904, 38.73484447193901],\n          [-9.053278383064967, 38.679128517168316]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.169262101247146, 38.772240341481],\n          [-9.15765120809318, 38.75627601637043]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.14661901988399, 38.72004765296632],\n          [-9.204143991573973, 38.78492020730122]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.138999685485105, 38.778251383504895],\n          [-9.233963423890962, 38.775678685071206]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.135802790342526, 38.78077103840063],\n          [-9.151642146107683, 38.74294839813439]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.150669919917616, 38.71412491974352],\n          [-9.124492811616365, 38.64953861366426]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.097246787705444, 38.73944669482268],\n          [-9.075048980801867, 38.723268791247854]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.09735344272555, 38.782582410972],\n          [-9.117047224630989, 38.759902043510316]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.105282192601013, 38.73863730130412],\n          [-9.04396012939997, 38.70232905706804]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.092942812805378, 38.70204485360651],\n          [-9.073458460421703, 38.69601533701997]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.1520226476006, 38.72134120396426],\n          [-9.203089429895131, 38.715861478160406]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.127291465845172, 38.76640254826793],\n          [-9.18111081229971, 38.77980610930915]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.168224491230864, 38.738032415084795],\n          [-9.188253123198445, 38.74639631949864]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.160274853546044, 38.74488955597258],\n          [-9.20667786946356, 38.77364846537799]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.138399322591825, 38.79860043526947],\n          [-9.179620290997937, 38.88735586861508]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.170032930346219, 38.72088087810547],\n          [-9.169243656966975, 38.70388504357632]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/in/square.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {},\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9, 9]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.25, 9.25]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.5, 9.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.75, 9.75]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10, 10]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/in/squares-weighted.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": { \"weight\": \"weight\" },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#333\", \"weight\": 100 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.12013592725509],\n            [-9.299992605418552, 38.16510194544132],\n            [-9.242851861013252, 38.16510194544132],\n            [-9.242851861013252, 38.12013592725509],\n            [-9.299992605418552, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#777\", \"weight\": 10 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.16510194544132],\n            [-9.299992605418552, 38.21006796362755],\n            [-9.242851861013252, 38.21006796362755],\n            [-9.242851861013252, 38.16510194544132],\n            [-9.299992605418552, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#777\", \"weight\": 10 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.21006796362755],\n            [-9.299992605418552, 38.25503398181378],\n            [-9.242851861013252, 38.25503398181378],\n            [-9.242851861013252, 38.21006796362755],\n            [-9.299992605418552, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#777\", \"weight\": 10 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.25503398181378],\n            [-9.299992605418552, 38.30000000000001],\n            [-9.242851861013252, 38.30000000000001],\n            [-9.242851861013252, 38.25503398181378],\n            [-9.299992605418552, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#777\", \"weight\": 10 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.30000000000001],\n            [-9.299992605418552, 38.34496601818624],\n            [-9.242851861013252, 38.34496601818624],\n            [-9.242851861013252, 38.30000000000001],\n            [-9.299992605418552, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#777\", \"weight\": 10 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.34496601818624],\n            [-9.299992605418552, 38.38993203637247],\n            [-9.242851861013252, 38.38993203637247],\n            [-9.242851861013252, 38.34496601818624],\n            [-9.299992605418552, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#777\", \"weight\": 10 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.38993203637247],\n            [-9.299992605418552, 38.4348980545587],\n            [-9.242851861013252, 38.4348980545587],\n            [-9.242851861013252, 38.38993203637247],\n            [-9.299992605418552, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#777\", \"weight\": 10 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.4348980545587],\n            [-9.299992605418552, 38.47986407274493],\n            [-9.242851861013252, 38.47986407274493],\n            [-9.242851861013252, 38.4348980545587],\n            [-9.299992605418552, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#777\", \"weight\": 10 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.12013592725509],\n            [-9.242851861013252, 38.16510194544132],\n            [-9.185711116607951, 38.16510194544132],\n            [-9.185711116607951, 38.12013592725509],\n            [-9.242851861013252, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.16510194544132],\n            [-9.242851861013252, 38.21006796362755],\n            [-9.185711116607951, 38.21006796362755],\n            [-9.185711116607951, 38.16510194544132],\n            [-9.242851861013252, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.21006796362755],\n            [-9.242851861013252, 38.25503398181378],\n            [-9.185711116607951, 38.25503398181378],\n            [-9.185711116607951, 38.21006796362755],\n            [-9.242851861013252, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.25503398181378],\n            [-9.242851861013252, 38.30000000000001],\n            [-9.185711116607951, 38.30000000000001],\n            [-9.185711116607951, 38.25503398181378],\n            [-9.242851861013252, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.30000000000001],\n            [-9.242851861013252, 38.34496601818624],\n            [-9.185711116607951, 38.34496601818624],\n            [-9.185711116607951, 38.30000000000001],\n            [-9.242851861013252, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.34496601818624],\n            [-9.242851861013252, 38.38993203637247],\n            [-9.185711116607951, 38.38993203637247],\n            [-9.185711116607951, 38.34496601818624],\n            [-9.242851861013252, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.38993203637247],\n            [-9.242851861013252, 38.4348980545587],\n            [-9.185711116607951, 38.4348980545587],\n            [-9.185711116607951, 38.38993203637247],\n            [-9.242851861013252, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.4348980545587],\n            [-9.242851861013252, 38.47986407274493],\n            [-9.185711116607951, 38.47986407274493],\n            [-9.185711116607951, 38.4348980545587],\n            [-9.242851861013252, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#777\", \"weight\": 10 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.12013592725509],\n            [-9.185711116607951, 38.16510194544132],\n            [-9.12857037220265, 38.16510194544132],\n            [-9.12857037220265, 38.12013592725509],\n            [-9.185711116607951, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.16510194544132],\n            [-9.185711116607951, 38.21006796362755],\n            [-9.12857037220265, 38.21006796362755],\n            [-9.12857037220265, 38.16510194544132],\n            [-9.185711116607951, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.21006796362755],\n            [-9.185711116607951, 38.25503398181378],\n            [-9.12857037220265, 38.25503398181378],\n            [-9.12857037220265, 38.21006796362755],\n            [-9.185711116607951, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.25503398181378],\n            [-9.185711116607951, 38.30000000000001],\n            [-9.12857037220265, 38.30000000000001],\n            [-9.12857037220265, 38.25503398181378],\n            [-9.185711116607951, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.30000000000001],\n            [-9.185711116607951, 38.34496601818624],\n            [-9.12857037220265, 38.34496601818624],\n            [-9.12857037220265, 38.30000000000001],\n            [-9.185711116607951, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.34496601818624],\n            [-9.185711116607951, 38.38993203637247],\n            [-9.12857037220265, 38.38993203637247],\n            [-9.12857037220265, 38.34496601818624],\n            [-9.185711116607951, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.38993203637247],\n            [-9.185711116607951, 38.4348980545587],\n            [-9.12857037220265, 38.4348980545587],\n            [-9.12857037220265, 38.38993203637247],\n            [-9.185711116607951, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.4348980545587],\n            [-9.185711116607951, 38.47986407274493],\n            [-9.12857037220265, 38.47986407274493],\n            [-9.12857037220265, 38.4348980545587],\n            [-9.185711116607951, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#777\", \"weight\": 10 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.12013592725509],\n            [-9.12857037220265, 38.16510194544132],\n            [-9.07142962779735, 38.16510194544132],\n            [-9.07142962779735, 38.12013592725509],\n            [-9.12857037220265, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.16510194544132],\n            [-9.12857037220265, 38.21006796362755],\n            [-9.07142962779735, 38.21006796362755],\n            [-9.07142962779735, 38.16510194544132],\n            [-9.12857037220265, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.21006796362755],\n            [-9.12857037220265, 38.25503398181378],\n            [-9.07142962779735, 38.25503398181378],\n            [-9.07142962779735, 38.21006796362755],\n            [-9.12857037220265, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.25503398181378],\n            [-9.12857037220265, 38.30000000000001],\n            [-9.07142962779735, 38.30000000000001],\n            [-9.07142962779735, 38.25503398181378],\n            [-9.12857037220265, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.30000000000001],\n            [-9.12857037220265, 38.34496601818624],\n            [-9.07142962779735, 38.34496601818624],\n            [-9.07142962779735, 38.30000000000001],\n            [-9.12857037220265, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.34496601818624],\n            [-9.12857037220265, 38.38993203637247],\n            [-9.07142962779735, 38.38993203637247],\n            [-9.07142962779735, 38.34496601818624],\n            [-9.12857037220265, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.38993203637247],\n            [-9.12857037220265, 38.4348980545587],\n            [-9.07142962779735, 38.4348980545587],\n            [-9.07142962779735, 38.38993203637247],\n            [-9.12857037220265, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"fill\": \"#ccc\", \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.4348980545587],\n            [-9.12857037220265, 38.47986407274493],\n            [-9.07142962779735, 38.47986407274493],\n            [-9.07142962779735, 38.4348980545587],\n            [-9.12857037220265, 38.4348980545587]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/in/squares.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {},\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.12013592725509],\n            [-9.299992605418552, 38.16510194544132],\n            [-9.242851861013252, 38.16510194544132],\n            [-9.242851861013252, 38.12013592725509],\n            [-9.299992605418552, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.16510194544132],\n            [-9.299992605418552, 38.21006796362755],\n            [-9.242851861013252, 38.21006796362755],\n            [-9.242851861013252, 38.16510194544132],\n            [-9.299992605418552, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.21006796362755],\n            [-9.299992605418552, 38.25503398181378],\n            [-9.242851861013252, 38.25503398181378],\n            [-9.242851861013252, 38.21006796362755],\n            [-9.299992605418552, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.25503398181378],\n            [-9.299992605418552, 38.30000000000001],\n            [-9.242851861013252, 38.30000000000001],\n            [-9.242851861013252, 38.25503398181378],\n            [-9.299992605418552, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.30000000000001],\n            [-9.299992605418552, 38.34496601818624],\n            [-9.242851861013252, 38.34496601818624],\n            [-9.242851861013252, 38.30000000000001],\n            [-9.299992605418552, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.34496601818624],\n            [-9.299992605418552, 38.38993203637247],\n            [-9.242851861013252, 38.38993203637247],\n            [-9.242851861013252, 38.34496601818624],\n            [-9.299992605418552, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.38993203637247],\n            [-9.299992605418552, 38.4348980545587],\n            [-9.242851861013252, 38.4348980545587],\n            [-9.242851861013252, 38.38993203637247],\n            [-9.299992605418552, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.4348980545587],\n            [-9.299992605418552, 38.47986407274493],\n            [-9.242851861013252, 38.47986407274493],\n            [-9.242851861013252, 38.4348980545587],\n            [-9.299992605418552, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.12013592725509],\n            [-9.242851861013252, 38.16510194544132],\n            [-9.185711116607951, 38.16510194544132],\n            [-9.185711116607951, 38.12013592725509],\n            [-9.242851861013252, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.16510194544132],\n            [-9.242851861013252, 38.21006796362755],\n            [-9.185711116607951, 38.21006796362755],\n            [-9.185711116607951, 38.16510194544132],\n            [-9.242851861013252, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.21006796362755],\n            [-9.242851861013252, 38.25503398181378],\n            [-9.185711116607951, 38.25503398181378],\n            [-9.185711116607951, 38.21006796362755],\n            [-9.242851861013252, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.25503398181378],\n            [-9.242851861013252, 38.30000000000001],\n            [-9.185711116607951, 38.30000000000001],\n            [-9.185711116607951, 38.25503398181378],\n            [-9.242851861013252, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.30000000000001],\n            [-9.242851861013252, 38.34496601818624],\n            [-9.185711116607951, 38.34496601818624],\n            [-9.185711116607951, 38.30000000000001],\n            [-9.242851861013252, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.34496601818624],\n            [-9.242851861013252, 38.38993203637247],\n            [-9.185711116607951, 38.38993203637247],\n            [-9.185711116607951, 38.34496601818624],\n            [-9.242851861013252, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.38993203637247],\n            [-9.242851861013252, 38.4348980545587],\n            [-9.185711116607951, 38.4348980545587],\n            [-9.185711116607951, 38.38993203637247],\n            [-9.242851861013252, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.4348980545587],\n            [-9.242851861013252, 38.47986407274493],\n            [-9.185711116607951, 38.47986407274493],\n            [-9.185711116607951, 38.4348980545587],\n            [-9.242851861013252, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.12013592725509],\n            [-9.185711116607951, 38.16510194544132],\n            [-9.12857037220265, 38.16510194544132],\n            [-9.12857037220265, 38.12013592725509],\n            [-9.185711116607951, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.16510194544132],\n            [-9.185711116607951, 38.21006796362755],\n            [-9.12857037220265, 38.21006796362755],\n            [-9.12857037220265, 38.16510194544132],\n            [-9.185711116607951, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.21006796362755],\n            [-9.185711116607951, 38.25503398181378],\n            [-9.12857037220265, 38.25503398181378],\n            [-9.12857037220265, 38.21006796362755],\n            [-9.185711116607951, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.25503398181378],\n            [-9.185711116607951, 38.30000000000001],\n            [-9.12857037220265, 38.30000000000001],\n            [-9.12857037220265, 38.25503398181378],\n            [-9.185711116607951, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.30000000000001],\n            [-9.185711116607951, 38.34496601818624],\n            [-9.12857037220265, 38.34496601818624],\n            [-9.12857037220265, 38.30000000000001],\n            [-9.185711116607951, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.34496601818624],\n            [-9.185711116607951, 38.38993203637247],\n            [-9.12857037220265, 38.38993203637247],\n            [-9.12857037220265, 38.34496601818624],\n            [-9.185711116607951, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.38993203637247],\n            [-9.185711116607951, 38.4348980545587],\n            [-9.12857037220265, 38.4348980545587],\n            [-9.12857037220265, 38.38993203637247],\n            [-9.185711116607951, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.4348980545587],\n            [-9.185711116607951, 38.47986407274493],\n            [-9.12857037220265, 38.47986407274493],\n            [-9.12857037220265, 38.4348980545587],\n            [-9.185711116607951, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.12013592725509],\n            [-9.12857037220265, 38.16510194544132],\n            [-9.07142962779735, 38.16510194544132],\n            [-9.07142962779735, 38.12013592725509],\n            [-9.12857037220265, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.16510194544132],\n            [-9.12857037220265, 38.21006796362755],\n            [-9.07142962779735, 38.21006796362755],\n            [-9.07142962779735, 38.16510194544132],\n            [-9.12857037220265, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.21006796362755],\n            [-9.12857037220265, 38.25503398181378],\n            [-9.07142962779735, 38.25503398181378],\n            [-9.07142962779735, 38.21006796362755],\n            [-9.12857037220265, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.25503398181378],\n            [-9.12857037220265, 38.30000000000001],\n            [-9.07142962779735, 38.30000000000001],\n            [-9.07142962779735, 38.25503398181378],\n            [-9.12857037220265, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.30000000000001],\n            [-9.12857037220265, 38.34496601818624],\n            [-9.07142962779735, 38.34496601818624],\n            [-9.07142962779735, 38.30000000000001],\n            [-9.12857037220265, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.34496601818624],\n            [-9.12857037220265, 38.38993203637247],\n            [-9.07142962779735, 38.38993203637247],\n            [-9.07142962779735, 38.34496601818624],\n            [-9.12857037220265, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.38993203637247],\n            [-9.12857037220265, 38.4348980545587],\n            [-9.07142962779735, 38.4348980545587],\n            [-9.07142962779735, 38.38993203637247],\n            [-9.12857037220265, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.4348980545587],\n            [-9.12857037220265, 38.47986407274493],\n            [-9.07142962779735, 38.47986407274493],\n            [-9.07142962779735, 38.4348980545587],\n            [-9.12857037220265, 38.4348980545587]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/in/steiners-problem-bad-weights.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": { \"weight\": \"weight\" },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": -10 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": -30 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 8]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/in/steiners-problem-low-tolerance.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"tolerance\": 2\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 8]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/in/steiners-problem.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {},\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 8]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/out/brazil-states-weighted.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 790,\n        \"fill\": \"#fff\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-66.62767023563575, -9.925465695489663],\n              [-66.73004084500963, -9.975431517708216],\n              [-67.11142025408935, -10.269052134377702],\n              [-67.19040096999285, -10.311349499272467],\n              [-67.28040097342608, -10.317194226057921],\n              [-67.33281674690996, -10.357931532299432],\n              [-67.41697202355772, -10.389879775705666],\n              [-67.58234922713199, -10.505983295759663],\n              [-67.66672423035064, -10.598905662585608],\n              [-67.72184264065636, -10.68303896657629],\n              [-67.78575011379736, -10.685983302626113],\n              [-67.83502379731763, -10.662802149398075],\n              [-67.99162292438517, -10.674491602968985],\n              [-68.07172424580017, -10.703078029840725],\n              [-68.15857117294124, -10.784970122808403],\n              [-68.2665667825297, -10.933021886268634],\n              [-68.311116344776, -10.975099524592522],\n              [-68.39797425824561, -11.018737221569666],\n              [-68.49832338316737, -11.05475040653721],\n              [-68.62274355392925, -11.109198650801744],\n              [-68.67832339003384, -11.112802166564208],\n              [-68.72759707355411, -11.122470135683017],\n              [-68.76989443844887, -11.09772892380171],\n              [-68.78406680227076, -11.044621011619554],\n              [-68.84842471488206, -11.011090736902972],\n              [-69.00165103908655, -10.99445743548722],\n              [-69.22844181922231, -10.955741613697825],\n              [-69.46245061721154, -10.948095129031131],\n              [-69.578543150937, -10.951698644793595],\n              [-69.67394842801392, -10.954181555044556],\n              [-69.8397760710585, -10.933483312067494],\n              [-69.96037299948702, -10.92987979630503],\n              [-70.06634712462336, -10.982526282688326],\n              [-70.22002388829817, -11.047543375012282],\n              [-70.29044625426582, -11.064198649085128],\n              [-70.34197213513762, -11.066681559336104],\n              [-70.3923664241694, -11.05857364887055],\n              [-70.4508686236667, -11.02482364758309],\n              [-70.53322214243323, -10.946974523519643],\n              [-70.5964484632045, -10.976901282473747],\n              [-70.64234934386172, -11.01018985796236],\n              [-70.64144846492111, -10.84078067181241],\n              [-70.64031687308108, -10.586073630846116],\n              [-70.63941599414046, -10.361293348833925],\n              [-70.63852610152838, -10.18151306853835],\n              [-70.63762522258777, -9.971828001945752],\n              [-70.63694407021804, -9.823776238485522],\n              [-70.59374582638266, -9.767526236339762],\n              [-70.56719187029158, -9.704530628467907],\n              [-70.59915110002635, -9.62059507839102],\n              [-70.59217478140084, -9.543427106697308],\n              [-70.57012522001286, -9.489879741373386],\n              [-70.54109933999935, -9.437452981560966],\n              [-70.60791819020453, -9.463776224752607],\n              [-70.63694407021804, -9.478168315145382],\n              [-70.67249582938673, -9.518004742446266],\n              [-70.75844187758719, -9.571771834341064],\n              [-70.8162739110433, -9.625319199664986],\n              [-70.88444407965942, -9.668978869299224],\n              [-70.97084056733017, -9.765724478458523],\n              [-71.04172435909668, -9.81883239064068],\n              [-71.11529980135649, -9.852340692700167],\n              [-71.23791821423713, -9.965983275160283],\n              [-71.33939893099894, -9.988483276018599],\n              [-71.6080476228877, -10.006017456374977],\n              [-71.8874958757353, -10.005578003233211],\n              [-72.1428730827428, -10.005116577434364],\n              [-72.1815669318751, -10.003776245351972],\n              [-72.17909500795267, -9.91017272615629],\n              [-72.17279984169691, -9.844013055663751],\n              [-72.25986649540886, -9.77427184206583],\n              [-72.26572220852286, -9.688556506764797],\n              [-72.28912308832179, -9.629142441998326],\n              [-72.3181489683353, -9.556698591578566],\n              [-72.37912309175502, -9.510116558551601],\n              [-72.46484941338458, -9.492120952396377],\n              [-72.60547441874901, -9.452064798524603],\n              [-72.81426959272953, -9.410448585999575],\n              [-73.01384723706157, -9.407526222606847],\n              [-73.20937092616083, -9.411349464940187],\n              [-73.08989460324379, -9.265780611730932],\n              [-72.97041828032677, -9.120189785864582],\n              [-72.97402179608923, -8.993077964609398],\n              [-73.07054767867764, -8.882819171340856],\n              [-73.12252399901976, -8.81397883668356],\n              [-73.20307575990506, -8.719254711976376],\n              [-73.30252400588621, -8.65399592042445],\n              [-73.35674153725132, -8.566918280383945],\n              [-73.35179768940648, -8.51427179400065],\n              [-73.36034505301379, -8.479401187201688],\n              [-73.39814900953402, -8.458922670795488],\n              [-73.43594197972571, -8.426974427389268],\n              [-73.48814901296724, -8.392103820590307],\n              [-73.54912313638698, -8.345741514134218],\n              [-73.54912313638698, -8.299401180335224],\n              [-73.57229330328647, -8.249896783915531],\n              [-73.61009725980671, -8.191845023888533],\n              [-73.61009725980671, -8.145504690089538],\n              [-73.64496786660567, -8.072819140441808],\n              [-73.68277182312589, -8.020612107200265],\n              [-73.7203450667467, -7.985741500401318],\n              [-73.77569418995185, -7.936478803209596],\n              [-73.77277182655912, -7.895741496968085],\n              [-73.73204550664616, -7.875504679789856],\n              [-73.71450033996123, -7.828922646762891],\n              [-73.7203450667467, -7.78258231296391],\n              [-73.76691611344512, -7.753556432950404],\n              [-73.82204551007939, -7.738922643329673],\n              [-73.89472007339857, -7.654767366681895],\n              [-73.94691612031157, -7.611129669704752],\n              [-73.98179771343908, -7.585026153083987],\n              [-74.00204551694584, -7.556000273070481],\n              [-73.98179771343908, -7.535741483235171],\n              [-73.95839683364015, -7.506715603221679],\n              [-73.95277183342557, -7.460375269422684],\n              [-73.9642415604256, -7.416715599788446],\n              [-73.9642415604256, -7.378922629596758],\n              [-73.92937095362666, -7.367233176025834],\n              [-73.89179771000585, -7.373077902811303],\n              [-73.85399375348561, -7.349896749583266],\n              [-73.80472006996536, -7.34112965940507],\n              [-73.7493709467602, -7.33526295996252],\n              [-73.7203450667467, -7.309181415998836],\n              [-73.72326743013943, -7.262819109542761],\n              [-73.75814902326692, -7.172819106109529],\n              [-73.79301963006588, -7.13502613591784],\n              [-73.79684287239924, -7.116788830534645],\n              [-72.66352617877601, -7.592672637750681],\n              [-70.37325021250267, -8.155172659208347],\n              [-69.80646552291279, -8.454198549521536],\n              [-66.82859919837871, -9.838168328878282],\n              [-66.62767023563575, -9.925245968918787],\n              [-66.62767023563575, -9.925465695489663]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 1749,\n        \"fill\": \"#fff\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-66.62767023563575, -9.925465695489663],\n              [-66.62767023563575, -9.925245968918787],\n              [-66.82859919837871, -9.838168328878282],\n              [-66.74377375568974, -9.748849477814787],\n              [-66.69471979874037, -9.748849477814787],\n              [-66.59662287117014, -9.664013048797287],\n              [-66.50279962540357, -9.63274595776079],\n              [-66.4046917115048, -9.52565122711296],\n              [-66.39569390842718, -9.405043312355886],\n              [-66.10544609462073, -9.418556496465115],\n              [-65.99834037764435, -9.400780616880766],\n              [-65.93129081453974, -9.414052101762039],\n              [-65.76614432386489, -9.56592710755561],\n              [-65.6768254728014, -9.534638043862032],\n              [-65.6322759105551, -9.449823587501612],\n              [-65.52517019357872, -9.414052101762039],\n              [-65.44484914559283, -9.445319192798536],\n              [-65.41807546293087, -9.391771827474614],\n              [-65.221650894891, -9.257892427836268],\n              [-65.19915089403268, -9.266681490671544],\n              [-65.17236622504218, -9.373995947890265],\n              [-65.0920451770563, -9.436332376049464],\n              [-65.03849781173238, -9.400780616880766],\n              [-64.90461841209404, -9.213112152690542],\n              [-64.92689868638146, -9.11953060615194],\n              [-64.88662280593881, -9.061478846124942],\n              [-64.77951708896242, -8.985431479942704],\n              [-64.69019823789894, -9.021202965682278],\n              [-64.59659471870324, -9.025707360385354],\n              [-64.47599779027472, -8.949879720774021],\n              [-64.4179460302477, -8.972138022404351],\n              [-64.38217454450813, -8.940870931367854],\n              [-64.21701706750476, -8.949879720774021],\n              [-64.11892013993453, -8.936366536664778],\n              [-64.12769821644126, -8.68640558962953],\n              [-64.07415085111734, -8.713168285962936],\n              [-63.99832321150599, -8.681901194926454],\n              [-63.92249557189466, -8.53453058383596],\n              [-63.993818816802914, -8.440927064640263],\n              [-63.91799117719157, -8.333832333992419],\n              [-63.75284468651674, -8.284547664143616],\n              [-63.72607100385477, -8.19094414494792],\n              [-63.59197187764555, -8.1641814486145],\n              [-63.587698195841895, -8.079345019597],\n              [-63.538424512321626, -7.9987932587117],\n              [-62.90459025962714, -8.007802048117853],\n              [-62.82877360634434, -8.016788864866925],\n              [-62.721448162797074, -8.061349413441775],\n              [-62.67689860055077, -8.114896778765697],\n              [-62.63662272010812, -8.222233208641498],\n              [-62.5562906857937, -8.289052058846693],\n              [-62.5385257925379, -8.36059503032584],\n              [-62.45370034984893, -8.347103818873691],\n              [-62.373368315534506, -8.382875304613265],\n              [-62.3063187524299, -8.570302069575533],\n              [-62.172450339120104, -8.610577950018182],\n              [-62.13217445867744, -8.766715651286859],\n              [-61.99829505903911, -8.811495926432599],\n              [-61.91797401105322, -8.873832354591784],\n              [-61.873424448806915, -8.856056475007449],\n              [-61.837641976738794, -8.744457349656528],\n              [-61.761825323455994, -8.72668147007218],\n              [-61.71704504831027, -8.68640558962953],\n              [-61.609950317662424, -8.722177075369103],\n              [-61.609950317662424, -8.766715651286859],\n              [-61.50734899538912, -8.847047685601282],\n              [-61.48484899453082, -8.914108235034448],\n              [-61.529618283348, -8.998922691394853],\n              [-61.55639196600997, -9.128297696330122],\n              [-61.529618283348, -9.22662533679977],\n              [-61.592174438078075, -9.239896821681043],\n              [-61.609950317662424, -9.320448582566343],\n              [-61.54739416293235, -9.409547707058962],\n              [-61.551898557635425, -9.463095072382885],\n              [-61.48057531272717, -9.63725035246388],\n              [-61.520620480270395, -9.704288929239937],\n              [-61.56540075541612, -9.726569203527362],\n              [-61.520620480270395, -9.860448603165707],\n              [-61.53412267805108, -9.994547729374943],\n              [-61.569674437219774, -10.061366579580124],\n              [-61.56540075541612, -10.26230652865162],\n              [-61.471566523321, -10.436439836075536],\n              [-61.502844600686046, -10.686422755767879],\n              [-61.471566523321, -10.757746000676136],\n              [-61.520620480270395, -10.789013091712633],\n              [-61.50734899538912, -10.878353915433223],\n              [-61.520620480270395, -10.954181555044556],\n              [-61.471566523321, -10.998939857533202],\n              [-60.440400712500775, -11.003444252236292],\n              [-60.440400712500775, -11.038996011404976],\n              [-60.38234895247378, -11.10155216613505],\n              [-60.27951691730104, -11.079271891847625],\n              [-60.17691559502774, -11.11954777229029],\n              [-60.069820864379906, -11.115043377587199],\n              [-60.00277130127529, -11.14633244128079],\n              [-59.908948055508716, -11.38280217686389],\n              [-60.025040589234166, -11.534677182657461],\n              [-60.10109894174494, -11.601496032862656],\n              [-60.10109894174494, -11.74436224925006],\n              [-60.06082306130229, -11.905246044449797],\n              [-59.98499542169094, -11.918517529331055],\n              [-59.93144805636702, -12.0523969289694],\n              [-59.88666778122129, -12.128444295151638],\n              [-59.89117217592437, -12.244547815205635],\n              [-59.82412261281975, -12.387194305022163],\n              [-59.908948055508716, -12.619401345130157],\n              [-60.00277130127529, -12.731000470481078],\n              [-60.04304718171794, -12.873866686868496],\n              [-60.083092349261165, -12.927414052192404],\n              [-60.194691474612085, -12.972194327338144],\n              [-60.270749827122856, -13.070302241236917],\n              [-60.27502350892651, -13.137340818012973],\n              [-60.35107087510873, -13.271220217651319],\n              [-60.38234895247378, -13.418590828741813],\n              [-60.659094568499526, -13.601513199001005],\n              [-60.72479281319322, -13.662948748219577],\n              [-60.914471775507025, -13.561479017786311],\n              [-61.076915629360016, -13.489694347079194],\n              [-61.12912266260156, -13.49848340991447],\n              [-61.415997673544965, -13.526608410987365],\n              [-61.511622677192776, -13.541220227951001],\n              [-61.57574987690465, -13.524806653106126],\n              [-61.78995032452889, -13.525707532046738],\n              [-61.874094614848104, -13.47035840884159],\n              [-61.944747693715186, -13.406220222801167],\n              [-62.09482094162752, -13.241974611066937],\n              [-62.11799110852702, -13.159840818871288],\n              [-62.17604286855402, -13.133737302250523],\n              [-62.26402138753514, -13.143646970597288],\n              [-62.35290078545687, -13.13239697016813],\n              [-62.525474034227514, -13.064215815223477],\n              [-62.68701700913988, -12.99425487505468],\n              [-62.76554728557308, -12.99717723844742],\n              [-62.83506877260011, -12.953737295384059],\n              [-62.95791789838019, -12.847103990535075],\n              [-63.015299492366, -12.805465805352952],\n              [-63.041392022658215, -12.750358381375776],\n              [-63.067495539278994, -12.669125468120725],\n              [-63.11676922279926, -12.651569315107267],\n              [-63.180665709611716, -12.666203104727998],\n              [-63.24974774349698, -12.70781931725304],\n              [-63.34672406555572, -12.680155741979007],\n              [-63.46529950953213, -12.605228981308272],\n              [-63.54179731518467, -12.546715795482427],\n              [-63.58566572506123, -12.519052220208394],\n              [-63.68849776023397, -12.478095187396008],\n              [-63.788165732786, -12.469547823788702],\n              [-63.93846969359777, -12.529621068267815],\n              [-64.06154953227727, -12.505099582957385],\n              [-64.25504075059587, -12.48328073446882],\n              [-64.42041795417013, -12.439840791405459],\n              [-64.48072191154867, -12.326220181602437],\n              [-64.5133403209961, -12.251073694360826],\n              [-64.61166796146574, -12.20383248162122],\n              [-64.6899675249995, -12.146439901306863],\n              [-64.78334033129578, -12.059362261266358],\n              [-64.82992236432274, -12.030358353909946],\n              [-64.9142973675414, -12.006056595170406],\n              [-64.99259693107516, -11.975228957275675],\n              [-65.00114429468246, -11.920099560641404],\n              [-65.03017017469595, -11.847414010993674],\n              [-65.03714649332146, -11.82941840483845],\n              [-65.09024341917507, -11.741220159286456],\n              [-65.1152153439558, -11.735155705930111],\n              [-65.1426701789875, -11.752250433144724],\n              [-65.16336842196456, -11.76508246488423],\n              [-65.18564869625199, -11.749547796322872],\n              [-65.18969166515622, -11.710172794820835],\n              [-65.17529957476346, -11.646957460378118],\n              [-65.20611622632964, -11.58057806331469],\n              [-65.28217457884041, -11.511056576287658],\n              [-65.32200001981276, -11.43927190558054],\n              [-65.32559254924668, -11.364806570708666],\n              [-65.34246754989042, -11.315082447718083],\n              [-65.37284474831483, -11.289879810037931],\n              [-65.38995046185799, -11.246220140403707],\n              [-65.39354299129191, -11.184345138043355],\n              [-65.37149342990391, -11.110319256313247],\n              [-65.32379079136545, -11.02482364758309],\n              [-65.33392018628311, -10.892746005825984],\n              [-65.40232106779864, -10.714767483411634],\n              [-65.43989431141945, -10.586293357416992],\n              [-65.44709035661583, -10.507323627842041],\n              [-65.43697194802671, -10.449052141244152],\n              [-65.39534474917313, -10.392340713299532],\n              [-65.3129912304066, -10.253078012674592],\n              [-65.29859914001383, -10.14686218831028],\n              [-65.32447194373518, -10.026957398580024],\n              [-65.32807545949764, -9.935595090407318],\n              [-65.30939870097268, -9.872599482535477],\n              [-65.33797414151587, -9.790245963768939],\n              [-65.39624562811376, -9.712396839705491],\n              [-65.43674123512729, -9.710375355253376],\n              [-65.49209035833245, -9.731754750600174],\n              [-65.55870046829529, -9.797452995293867],\n              [-65.63721975839994, -9.80914244886479],\n              [-65.70674124542697, -9.768427115280375],\n              [-65.92477592171309, -9.785521842494987],\n              [-66.26361626667007, -9.826017449508512],\n              [-66.39929742418964, -9.868095087832401],\n              [-66.47894830613433, -9.886090693987626],\n              [-66.57524347582333, -9.899823604667745],\n              [-66.62767023563575, -9.925465695489663]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 497,\n        \"fill\": \"#fff\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-58.86877345528232, 0.224275902629742],\n              [-59.77057524749584, 0.228780297332833],\n              [-60.025040589234166, 0.224275902629742],\n              [-60.127872624406905, 0.13067238343406],\n              [-60.16791779195013, 0.005582046630991],\n              [-60.21697174889951, -0.043482896646935],\n              [-60.252743234639084, -0.15057762729478],\n              [-60.31079499466608, -0.235392083655199],\n              [-60.31529938936916, -0.306957027791427],\n              [-60.38662263427743, -0.463094729060117],\n              [-60.39111604265196, -0.521146489087116],\n              [-60.31529938936916, -0.619474129556764],\n              [-60.306290599963006, -0.673021494880686],\n              [-60.33756867732805, -0.704288585917183],\n              [-60.46717439516273, -0.740082044313837],\n              [-60.516217365783575, -0.829181168806457],\n              [-60.6410989623443, -0.86044825984294],\n              [-60.73492220811087, -0.851681169664758],\n              [-60.815243256096764, -0.686292979761944],\n              [-60.90457309348879, -0.610465340150597],\n              [-60.93134677615076, -0.556917974826689],\n              [-61.060721781086016, -0.530155278493268],\n              [-61.10549106990321, -0.4943618200966],\n              [-61.221594589957206, -0.498866214799691],\n              [-61.24387486424463, -0.547931158077617],\n              [-61.45807531186885, -0.637250009141113],\n              [-61.53412267805108, -0.726568860204608],\n              [-61.578672240297394, -0.945262716203359],\n              [-61.560896360713045, -1.021332055042677],\n              [-61.5741678455943, -1.14169827057178],\n              [-61.61894812074004, -1.275797396781002],\n              [-61.619848999680656, -1.449491251063151],\n              [-61.71727576120969, -1.401129432812041],\n              [-61.798497688136194, -1.388736854214301],\n              [-61.880840220574186, -1.389198280013161],\n              [-61.87769813061057, -1.369400915976698],\n              [-61.93574989063757, -1.244530305744519],\n              [-62.02957313640414, -1.146202665274856],\n              [-62.14117226175506, -1.065870630960433],\n              [-62.2037174301566, -1.043590356673008],\n              [-62.24377358402836, -0.981056174600027],\n              [-62.31531655550751, -0.945262716203359],\n              [-62.41791787778082, -0.829181168806457],\n              [-62.50724771517285, -0.771129408779444],\n              [-62.47596963780782, -0.695301769168111],\n              [-62.3778727102376, -0.717582043455536],\n              [-62.31082314713298, -0.641754403844189],\n              [-62.3198209502106, -0.521146489087116],\n              [-62.36887490715998, -0.467599123763193],\n              [-62.373368315534506, -0.342728513531],\n              [-62.40464639289955, -0.271163569394773],\n              [-62.47596963780782, -0.222120598773927],\n              [-62.511741123547395, -0.123792958304278],\n              [-62.569792883574394, -0.047965318692931],\n              [-62.578790686652, 0.018853531512249],\n              [-62.5250235947572, 0.094900897694487],\n              [-62.56529947519985, 0.17523293200891],\n              [-62.569792883574394, 0.246556176917167],\n              [-62.53402139783482, 0.313605740021785],\n              [-62.52951700313173, 0.429698273747235],\n              [-62.4894718355885, 0.487750033774233],\n              [-62.48496744088543, 0.541297399098156],\n              [-62.5385257925379, 0.675176798736501],\n              [-62.53402139783482, 0.7332285587635],\n              [-62.44469156044278, 0.804782516571194],\n              [-62.511741123547395, 0.960931204168418],\n              [-62.51624551825047, 1.059247858309519],\n              [-62.6143424458207, 1.362778143325784],\n              [-62.623340248898316, 1.416325508649706],\n              [-62.721448162797074, 1.49665754296413],\n              [-62.78849772590169, 1.603752273611974],\n              [-62.712670086290345, 1.73763167325032],\n              [-62.730445965874694, 1.831454919016892],\n              [-62.69040079833147, 1.911775967002768],\n              [-62.70816569158727, 1.947547452742342],\n              [-62.84654948592869, 2.018881683979146],\n              [-63.002698173525914, 2.018881683979146],\n              [-63.123295101954454, 2.112704929745718],\n              [-63.15006878461641, 2.179754492850336],\n              [-63.306448185113055, 2.16625229506964],\n              [-63.393745551724436, 2.224073342197215],\n              [-63.3748490666286, 2.340407575150635],\n              [-63.38924115702136, 2.411950546629782],\n              [-63.584545119549745, 2.434000108017784],\n              [-63.71256880607409, 2.434000108017784],\n              [-63.92406661687646, 2.45245713997187],\n              [-64.02486618126854, 2.481922473127128],\n              [-64.04669601608565, 2.502400989533328],\n              [-64.04871750053776, 2.525131703291052],\n              [-64.02870040993042, 2.575976431793123],\n              [-64.00912277246485, 2.671832148340357],\n              [-64.03769821300803, 2.801426879846503],\n              [-64.14344162524495, 3.00482776651188],\n              [-64.21881882538598, 3.204625137414794],\n              [-64.22871750740421, 3.343898824368296],\n              [-64.22714646242241, 3.491280421787323],\n              [-64.22107102273753, 3.587355864905447],\n              [-64.27529954043118, 3.662733065046481],\n              [-64.56801927816005, 3.89987296667077],\n              [-64.66904955545155, 4.011702804921114],\n              [-64.70256884383959, 4.089332202413701],\n              [-64.81777148495297, 4.232198418801104],\n              [-64.78874560493946, 4.276077815006218],\n              [-64.72236620787605, 4.274506770024416],\n              [-64.66544603968909, 4.237153252974494],\n              [-64.6137004322464, 4.15773308392923],\n              [-64.57634691519648, 4.139957204344881],\n              [-64.52549120036586, 4.139957204344881],\n              [-64.2557219029656, 4.140407643815195],\n              [-64.19249558219434, 4.126905446034499],\n              [-64.15424118620379, 4.100131763372545],\n              [-64.12162277675638, 4.067051928126276],\n              [-64.0734696987476, 3.974349287871192],\n              [-64.0214933784055, 3.9291295595837],\n              [-63.91461837432854, 3.930700604565502],\n              [-63.74699995973127, 3.932502362446741],\n              [-63.652946001065274, 3.940829999483157],\n              [-63.596695998919515, 3.914957195761815],\n              [-63.52672407242217, 3.893797526985892],\n              [-63.37979291447344, 3.942851483935272],\n              [-63.338616155090165, 3.943983075775321],\n              [-63.2947477452136, 3.922153240958195],\n              [-63.136116147365414, 3.756556310813053],\n              [-63.04521526499157, 3.686573397987161],\n              [-62.96871745933903, 3.593881744060639],\n              [-62.856898607417236, 3.593431304590325],\n              [-62.764646406632465, 3.672851473635589],\n              [-62.73989420842261, 3.940379560012857],\n              [-62.712219646820046, 4.017997971176882],\n              [-62.66541788722219, 4.039608079423118],\n              [-62.60984903744617, 4.042299729916422],\n              [-62.54392007985305, 4.084377368240311],\n              [-62.47259683494478, 4.138605885933956],\n              [-62.41072183258443, 4.156832204988618],\n              [-62.153092428225406, 4.098330005491306],\n              [-62.08154945674626, 4.126224293664762],\n              [-61.82076697609507, 4.197108085431267],\n              [-61.55415075498696, 4.287778254905689],\n              [-61.47944372088712, 4.402299743649337],\n              [-61.36762486896532, 4.432907654973178],\n              [-61.28009678945452, 4.516832218721532],\n              [-61.209443710587436, 4.508054142214789],\n              [-61.10234897993959, 4.504681339351762],\n              [-61.0362002957756, 4.519304142643946],\n              [-61.00290073395844, 4.535278264347056],\n              [-60.966448095849145, 4.574653265849093],\n              [-60.906144138470594, 4.686702830670328],\n              [-60.83346957515141, 4.729230908464515],\n              [-60.741667813836955, 4.774230910181132],\n              [-60.67912264543541, 4.827108109463865],\n              [-60.627596764563606, 4.892575641258119],\n              [-60.60374544529438, 4.949276082874206],\n              [-60.60441561133557, 4.994506797490246],\n              [-60.635023522659424, 5.082023890672502],\n              [-60.671915613910485, 5.164377409439041],\n              [-60.71197176778226, 5.191601531571308],\n              [-60.742118253307254, 5.201950653059839],\n              [-60.65144808383285, 5.221077851055114],\n              [-60.57652132316211, 5.192502410511921],\n              [-60.4595169241675, 5.187998015808844],\n              [-60.40889192223631, 5.210047577196846],\n              [-60.33509675340562, 5.199248016238002],\n              [-60.241723947109364, 5.257980928634737],\n              [-60.18165070263025, 5.238853730639462],\n              [-60.142044988228776, 5.238853730639462],\n              [-60.10604278958978, 5.19430416839316],\n              [-60.07814850141632, 5.143898893032841],\n              [-59.99062042190552, 5.082924769613115],\n              [-59.99939849841225, 4.989782676216279],\n              [-60.01537262011537, 4.907429157449741],\n              [-60.026842347115405, 4.812705032742556],\n              [-60.03179718128878, 4.740480908893673],\n              [-60.06891998543928, 4.666674753734441],\n              [-60.124499821543864, 4.597603706177708],\n              [-60.14092438271729, 4.569698431675718],\n              [-60.14857086738398, 4.533256779894955],\n              [-60.111217350334044, 4.511207218506954],\n              [-60.04506866617005, 4.504681339351762],\n              [-59.96227569426175, 4.501747989630488],\n              [-59.90602569211599, 4.480379580612222],\n              [-59.833340142468245, 4.475875185909146],\n              [-59.74582304928599, 4.416702820370645],\n              [-59.7032949714918, 4.381151061201948],\n              [-59.69969145572934, 4.353476499599381],\n              [-59.72759673023134, 4.287547542006266],\n              [-59.73861601776106, 4.226804131485963],\n              [-59.716797169272496, 4.188099296025115],\n              [-59.69114409212203, 4.160424734422534],\n              [-59.62027128668407, 4.023172531921148],\n              [-59.586521285396614, 3.975480879711242],\n              [-59.557715131954, 3.959957197478431],\n              [-59.55120023912734, 3.933622967958229],\n              [-59.57549101153833, 3.883448405497347],\n              [-59.60451689155184, 3.819782631584317],\n              [-59.67021513624553, 3.752733068479714],\n              [-59.67899321275226, 3.699855869196981],\n              [-59.7316506854641, 3.666556307379821],\n              [-59.85449981124418, 3.587575591476323],\n              [-59.83312041589737, 3.462254541773831],\n              [-59.828846734093716, 3.398577781532254],\n              [-59.831098931445254, 3.349304098011984],\n              [-59.87294585686972, 3.283155413847993],\n              [-59.9456204201889, 3.087851451319608],\n              [-59.97239410285087, 2.990424689790572],\n              [-59.995794982649784, 2.765424681207506],\n              [-59.99444366423886, 2.690047481066472],\n              [-59.9606936629514, 2.58835802406233],\n              [-59.88959014461402, 2.362907576008951],\n              [-59.84909453760048, 2.32712510394083],\n              [-59.75527129183391, 2.274028178087221],\n              [-59.74357085193445, 2.121702732823337],\n              [-59.75166777607144, 1.962400968933963],\n              [-59.75617217077453, 1.900525966573611],\n              [-59.74064848854172, 1.874202723381956],\n              [-59.698570850217834, 1.861381677970996],\n              [-59.66842436469284, 1.842254479975736],\n              [-59.66370024341887, 1.795232993807005],\n              [-59.6666226068116, 1.746179036857626],\n              [-59.59665068031427, 1.718054035784732],\n              [-59.535665570565996, 1.70004744330096],\n              [-59.47941556842022, 1.632327714155167],\n              [-59.37771512508753, 1.527254467959438],\n              [-59.33721951807401, 1.508127269964163],\n              [-59.31697171456723, 1.464698313229363],\n              [-59.231245392937666, 1.376049628207056],\n              [-59.100299343020595, 1.343650945330523],\n              [-58.968441427834364, 1.304506656727909],\n              [-58.96641994338225, 1.302474185947247],\n              [-58.86877345528232, 0.224275902629742]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 3874,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-66.82859919837871, -9.838168328878282],\n              [-69.80646552291279, -8.454198549521536],\n              [-70.37325021250267, -8.155172659208347],\n              [-72.66352617877601, -7.592672637750681],\n              [-73.79684287239924, -7.116788830534645],\n              [-73.80472006996536, -7.079896739283569],\n              [-73.77637534232159, -6.973483161005475],\n              [-73.75814902326692, -6.905741459202574],\n              [-73.69447226302536, -6.83373706192458],\n              [-73.49984945286671, -6.679401118537129],\n              [-73.32547444621483, -6.574767325483165],\n              [-73.24041829062645, -6.563978750852868],\n              [-73.17742268275461, -6.525262929063473],\n              [-73.13736652888284, -6.465870836954096],\n              [-73.1263472413531, -6.40085374463014],\n              [-73.13534504443072, -6.34436204325641],\n              [-73.16774372730725, -6.260668192407493],\n              [-73.2064485627681, -6.156495825152376],\n              [-73.23547444278161, -6.098444065125378],\n              [-73.20937092616083, -6.028702851527456],\n              [-73.16279987946241, -5.933297574450535],\n              [-73.06807575475523, -5.789530479122504],\n              [-72.97986652287469, -5.634952836507097],\n              [-72.97019855375588, -5.58973310821959],\n              [-72.95894855332672, -5.495228710083282],\n              [-72.91822223341377, -5.302616398048215],\n              [-72.89572223255546, -5.198224304222222],\n              [-72.90742267245493, -5.157728697208682],\n              [-72.88717486894815, -5.122858090409721],\n              [-72.83204547231388, -5.093832210396229],\n              [-72.69861651214585, -5.067267267976604],\n              [-72.60839678214174, -5.009676933748452],\n              [-72.46889238228881, -4.901219898361148],\n              [-72.35279984856336, -4.786017257247764],\n              [-72.25672440544525, -4.748905439425812],\n              [-72.08256912536426, -4.642250161919733],\n              [-71.98245071334192, -4.57453043277394],\n              [-71.94307571183988, -4.553370763998004],\n              [-71.84474807137023, -4.504327793377172],\n              [-71.66834059393769, -4.48723306616256],\n              [-71.5214204223175, -4.469676913149087],\n              [-71.43816602461035, -4.437486970514897],\n              [-71.31689893014062, -4.424215485633624],\n              [-71.2349958508444, -4.388224273323175],\n              [-71.14432568136998, -4.387323394382548],\n              [-70.97377391705145, -4.350431303131487],\n              [-70.91572215702445, -4.295301906497215],\n              [-70.86599803403388, -4.229603661803523],\n              [-70.79961863697045, -4.173353659657764],\n              [-70.72154978633611, -4.158939596607908],\n              [-70.63447214629561, -4.168629538383797],\n              [-70.53075021851082, -4.167486960215214],\n              [-70.40474801643859, -4.150172506429712],\n              [-70.34354318011943, -4.193590476835979],\n              [-70.3170002103569, -4.246918115589011],\n              [-70.23915108629343, -4.30114663328267],\n              [-70.18402168965916, -4.298224269889943],\n              [-70.1288922930249, -4.286512843661939],\n              [-70.05329536631298, -4.333094876688904],\n              [-70.00402168279271, -4.327250149903449],\n              [-69.97207343938648, -4.30114663328267],\n              [-69.9659979997016, -4.235887841730744],\n              [-69.94822212011725, -4.200577781790031],\n              [-69.91109931596675, -3.996495742754917],\n              [-69.84967475307671, -3.659896608820929],\n              [-69.79409491697214, -3.354564565923425],\n              [-69.7326703540821, -3.01662509990706],\n              [-69.66899359384053, -2.667655360032427],\n              [-69.60464666755776, -2.314181225454703],\n              [-69.55176946827504, -2.024142151890601],\n              [-69.50654973998753, -1.77484038456798],\n              [-69.47864446548553, -1.622064499833797],\n              [-69.43499578217985, -1.421607949218242],\n              [-69.41790105496524, -1.245650911256007],\n              [-69.40034490195177, -1.195025909324826],\n              [-69.41137517581004, -1.152267118631201],\n              [-69.44916814600172, -1.091512721782351],\n              [-69.44871770653143, -1.06496975201982],\n              [-69.44444402472777, -1.029637719422013],\n              [-69.44871770653143, -0.998832054184362],\n              [-69.48832342093289, -0.96574123260956],\n              [-69.5193707853985, -0.945724142002206],\n              [-69.54344183123861, -0.91713771513048],\n              [-69.55469183166777, -0.877323260486676],\n              [-69.57450018203276, -0.837728532413763],\n              [-69.58326727221096, -0.79587062066075],\n              [-69.61184271275415, -0.762801771743028],\n              [-69.62062078926088, -0.72094385999003],\n              [-69.60082342522442, -0.681349131917102],\n              [-69.59204534871769, -0.639271493593228],\n              [-69.60082342522442, -0.5996767655203],\n              [-69.61184271275415, -0.553314459064225],\n              [-69.63389227414214, -0.509215336288221],\n              [-69.66742254885872, -0.482452639954801],\n              [-69.74752387027372, -0.452525881000696],\n              [-69.8278449182596, -0.381422362663301],\n              [-69.92279975586622, -0.317525875850848],\n              [-70.04406685033594, -0.196236808724038],\n              [-70.07062080642702, -0.138866201066776],\n              [-70.0708405329979, 0.018622818612826],\n              [-70.06566597225363, 0.189405295830795],\n              [-70.05801948758695, 0.447254426760708],\n              [-70.05396553235417, 0.578650916148078],\n              [-69.98534492426775, 0.585857947673006],\n              [-69.92504096688921, 0.589450477106922],\n              [-69.86204535901737, 0.598448280184542],\n              [-69.80714667528252, 0.607457069590694],\n              [-69.75674139992222, 0.626353554686546],\n              [-69.71894842973053, 0.649754434485459],\n              [-69.67371771511449, 0.665047403818846],\n              [-69.63861639541611, 0.659653116503691],\n              [-69.60352606204627, 0.680351359480767],\n              [-69.56482122658542, 0.700148723517231],\n              [-69.52701727006519, 0.716353558119778],\n              [-69.47211858633034, 0.729855755900459],\n              [-69.42082341835797, 0.698357951964539],\n              [-69.39201726491535, 0.666849161700071],\n              [-69.3587177030982, 0.651556192366698],\n              [-69.32721989916227, 0.655148721800614],\n              [-69.30562077724458, 0.65245707130731],\n              [-69.28312077638627, 0.627254433627158],\n              [-69.25409489637278, 0.625452675745933],\n              [-69.21269841041862, 0.629957070449009],\n              [-69.17399357495778, 0.635351357764151],\n              [-69.15599796880255, 0.642547402960545],\n              [-69.1532953319807, 0.658752237563078],\n              [-69.16319401399893, 0.686657512065082],\n              [-69.17669621177963, 0.712750042357314],\n              [-69.16589665082078, 0.753256635699387],\n              [-69.16499577188016, 0.801849166849919],\n              [-69.16319401399893, 0.863954882109695],\n              [-69.19379093899424, 0.898375049438343],\n              [-69.22439885031808, 0.963172415191409],\n              [-69.25859929107585, 1.015379448432952],\n              [-69.31191594350035, 1.050480768131337],\n              [-69.36142033992004, 1.063982965912032],\n              [-69.4028168258742, 1.042372857665796],\n              [-69.44152166133505, 1.03878032823188],\n              [-69.47031682844911, 1.058577692268329],\n              [-69.51711858804696, 1.059478571208956],\n              [-69.56752386340727, 1.065773737464724],\n              [-69.62084051583176, 1.073200495560528],\n              [-69.71691595894987, 1.059028131738643],\n              [-69.75134711260706, 1.076573298423568],\n              [-69.79814887220492, 1.078375056304793],\n              [-69.85214667699914, 1.059478571208956],\n              [-69.85079535858821, 1.308780338531562],\n              [-69.84944404017729, 1.543898755703736],\n              [-69.84854316123668, 1.708825519807704],\n              [-69.79995063008614, 1.705232990373773],\n              [-69.73964667270761, 1.734929036428468],\n              [-69.65009710874469, 1.739422444802997],\n              [-69.58124578775885, 1.770700522168042],\n              [-69.5429913917683, 1.773172446090456],\n              [-69.47009710187822, 1.757879476757083],\n              [-69.39426946226689, 1.725700520451426],\n              [-69.31979314106647, 1.721207112076897],\n              [-69.12426945196721, 1.721207112076897],\n              [-68.91322208063514, 1.721426838647773],\n              [-68.67854311660471, 1.721426838647773],\n              [-68.44342469943254, 1.721657551547196],\n              [-68.23957337329685, 1.721657551547196],\n              [-68.17656677909646, 1.719855793665971],\n              [-68.2132501301052, 1.774523764501382],\n              [-68.25599793447027, 1.845407556267887],\n              [-68.23934266039743, 1.901426845514223],\n              [-68.21842469084947, 1.957676847659997],\n              [-68.1938922192105, 1.986922454244379],\n              [-68.13021545896893, 1.955875089778772],\n              [-68.07711853311531, 1.860030359560085],\n              [-68.03279968376843, 1.788025962282077],\n              [-67.98982116650393, 1.75247420311338],\n              [-67.93627380118002, 1.748431234209164],\n              [-67.87551940433117, 1.760582113578934],\n              [-67.81499572038175, 1.790047446734192],\n              [-67.71194395863813, 1.922125088491299],\n              [-67.60912290979395, 2.035075532253146],\n              [-67.55602598394034, 2.073099215344257],\n              [-67.49954526889515, 2.107980808471765],\n              [-67.45769834347068, 2.121252293353024],\n              [-67.4005474623843, 2.116747898649948],\n              [-67.35194394490523, 2.085931247083764],\n              [-67.32066586754019, 2.032153168860418],\n              [-67.20592465222566, 1.84472640389815],\n              [-67.11929745165547, 1.703650959063424],\n              [-67.09004085874254, 1.615672440082307],\n              [-67.08825008718985, 1.400582099846019],\n              [-67.093644374505, 1.210002258591601],\n              [-67.08217464750497, 1.185480773281185],\n              [-67.06529964686123, 1.178273741756257],\n              [-66.87607112401774, 1.223054016901983],\n              [-66.61912287202844, 0.992198295204915],\n              [-66.42922418314376, 0.821657517214916],\n              [-66.34709039094811, 0.767198286621849],\n              [-66.30165093608973, 0.751905317288461],\n              [-66.19117241625031, 0.763375044288495],\n              [-66.05999565343382, 0.785424605676496],\n              [-65.99631889319224, 0.809726364416036],\n              [-65.92589652722458, 0.863054003169069],\n              [-65.81137503848093, 0.937299611470067],\n              [-65.71822195875555, 0.97802593138303],\n              [-65.68154959407536, 0.983431205026719],\n              [-65.64464651649574, 0.970379446716336],\n              [-65.56611624006256, 0.926049611040909],\n              [-65.52291799622718, 0.843476365703495],\n              [-65.56274343719952, 0.747400922585385],\n              [-65.55599783147345, 0.687997844147461],\n              [-65.47342458613602, 0.691150920439611],\n              [-65.40727590197203, 0.790379439849886],\n              [-65.36092458184449, 0.868679003383647],\n              [-65.26394825978576, 0.931905324154911],\n              [-65.16967457454888, 1.022125054159034],\n              [-65.10374561695576, 1.108082088688022],\n              [-65.02656665893349, 1.158476377719794],\n              [-64.91002368573774, 1.219681214038943],\n              [-64.81799121152385, 1.257023744760332],\n              [-64.73159472385309, 1.253431215326401],\n              [-64.6674675241412, 1.293926822339941],\n              [-64.58444383933347, 1.369974188522164],\n              [-64.5261723527356, 1.430948311941904],\n              [-64.48611619886383, 1.452778146759016],\n              [-64.40512498483675, 1.446922433645014],\n              [-64.30409470754526, 1.45525007068143],\n              [-64.20509690103441, 1.529506665310976],\n              [-64.11486618470175, 1.61927595584477],\n              [-64.06694381959241, 1.770480795597152],\n              [-64.03544601565649, 1.904349208906964],\n              [-64.00844162009511, 1.931573331039232],\n              [-63.97582321064769, 1.95295272638603],\n              [-63.93711837518684, 1.966905363637039],\n              [-63.84441573493177, 1.976804045655271],\n              [-63.682191607649656, 2.048127290563528],\n              [-63.57037275572786, 2.120582127311835],\n              [-63.463948191121204, 2.136105809544645],\n              [-63.432450387185284, 2.155452734110796],\n              [-63.393965278295326, 2.222502297215414],\n              [-63.393745551724436, 2.224073342197215],\n              [-63.306448185113055, 2.16625229506964],\n              [-63.15006878461641, 2.179754492850336],\n              [-63.123295101954454, 2.112704929745718],\n              [-63.002698173525914, 2.018881683979146],\n              [-62.84654948592869, 2.018881683979146],\n              [-62.70816569158727, 1.947547452742342],\n              [-62.69040079833147, 1.911775967002768],\n              [-62.730445965874694, 1.831454919016892],\n              [-62.712670086290345, 1.73763167325032],\n              [-62.78849772590169, 1.603752273611974],\n              [-62.721448162797074, 1.49665754296413],\n              [-62.623340248898316, 1.416325508649706],\n              [-62.6143424458207, 1.362778143325784],\n              [-62.51624551825047, 1.059247858309519],\n              [-62.511741123547395, 0.960931204168418],\n              [-62.44469156044278, 0.804782516571194],\n              [-62.53402139783482, 0.7332285587635],\n              [-62.5385257925379, 0.675176798736501],\n              [-62.48496744088543, 0.541297399098156],\n              [-62.4894718355885, 0.487750033774233],\n              [-62.52951700313173, 0.429698273747235],\n              [-62.53402139783482, 0.313605740021785],\n              [-62.569792883574394, 0.246556176917167],\n              [-62.56529947519985, 0.17523293200891],\n              [-62.5250235947572, 0.094900897694487],\n              [-62.578790686652, 0.018853531512249],\n              [-62.569792883574394, -0.047965318692931],\n              [-62.511741123547395, -0.123792958304278],\n              [-62.47596963780782, -0.222120598773927],\n              [-62.40464639289955, -0.271163569394773],\n              [-62.373368315534506, -0.342728513531],\n              [-62.36887490715998, -0.467599123763193],\n              [-62.3198209502106, -0.521146489087116],\n              [-62.31082314713298, -0.641754403844189],\n              [-62.3778727102376, -0.717582043455536],\n              [-62.47596963780782, -0.695301769168111],\n              [-62.50724771517285, -0.771129408779444],\n              [-62.41791787778082, -0.829181168806457],\n              [-62.31531655550751, -0.945262716203359],\n              [-62.24377358402836, -0.981056174600027],\n              [-62.2037174301566, -1.043590356673008],\n              [-62.14117226175506, -1.065870630960433],\n              [-62.02957313640414, -1.146202665274856],\n              [-61.93574989063757, -1.244530305744519],\n              [-61.87769813061057, -1.369400915976698],\n              [-61.880840220574186, -1.389198280013161],\n              [-61.798497688136194, -1.388736854214301],\n              [-61.71727576120969, -1.401129432812041],\n              [-61.619848999680656, -1.449491251063151],\n              [-61.61894812074004, -1.275797396781002],\n              [-61.5741678455943, -1.14169827057178],\n              [-61.560896360713045, -1.021332055042677],\n              [-61.578672240297394, -0.945262716203359],\n              [-61.53412267805108, -0.726568860204608],\n              [-61.45807531186885, -0.637250009141113],\n              [-61.24387486424463, -0.547931158077617],\n              [-61.221594589957206, -0.498866214799691],\n              [-61.10549106990321, -0.4943618200966],\n              [-61.060721781086016, -0.530155278493268],\n              [-60.93134677615076, -0.556917974826689],\n              [-60.90457309348879, -0.610465340150597],\n              [-60.815243256096764, -0.686292979761944],\n              [-60.73492220811087, -0.851681169664758],\n              [-60.6410989623443, -0.86044825984294],\n              [-60.516217365783575, -0.829181168806457],\n              [-60.46717439516273, -0.740082044313837],\n              [-60.33756867732805, -0.704288585917183],\n              [-60.306290599963006, -0.673021494880686],\n              [-60.31529938936916, -0.619474129556764],\n              [-60.39111604265196, -0.521146489087116],\n              [-60.38662263427743, -0.463094729060117],\n              [-60.31529938936916, -0.306957027791427],\n              [-60.31079499466608, -0.235392083655199],\n              [-60.252743234639084, -0.15057762729478],\n              [-60.21697174889951, -0.043482896646935],\n              [-60.16791779195013, 0.005582046630991],\n              [-60.127872624406905, 0.13067238343406],\n              [-60.025040589234166, 0.224275902629742],\n              [-59.77057524749584, 0.228780297332833],\n              [-58.86877345528232, 0.224275902629742],\n              [-58.85099757569799, -0.083736804432505],\n              [-58.86449977347867, -0.173077628153081],\n              [-58.85549098407252, -0.351495603709196],\n              [-58.73939845034707, -0.432047364594496],\n              [-58.74839625342467, -0.62397852425984],\n              [-58.70361597827895, -0.695301769168111],\n              [-58.62779932499615, -0.766844740647258],\n              [-58.56974756496915, -0.762340345944182],\n              [-58.44037256003389, -0.86044825984294],\n              [-58.39109887651361, -1.048094751376084],\n              [-58.31527123690226, -1.119417996284355],\n              [-58.25271508217219, -1.128426785690522],\n              [-58.15912254930504, -1.235521516338338],\n              [-58.083075183122816, -1.298077671068427],\n              [-57.98047386084954, -1.34712064168923],\n              [-57.900141826535105, -1.422948281300592],\n              [-57.828598855055944, -1.445228555588045],\n              [-57.65467428787437, -1.588094771975463],\n              [-57.56534445048233, -1.623866257715036],\n              [-57.44924093042833, -1.690926807148188],\n              [-57.33764180507741, -1.730982961019961],\n              [-57.27509663667588, -1.713207081435613],\n              [-57.248322954013915, -1.757745657353368],\n              [-57.16799091969949, -1.771236868805516],\n              [-57.087669871713615, -1.81129302267729],\n              [-57.00734882372774, -1.936405332137454],\n              [-56.824195740569124, -2.034491273379132],\n              [-56.74387469258325, -2.052486879534356],\n              [-56.74836810095778, -2.17737946242363],\n              [-56.63676897560687, -2.222137764912276],\n              [-56.49839616759398, -2.159603582839281],\n              [-56.4848939698133, -2.248922433902749],\n              [-56.400969406064945, -2.336219800514158],\n              [-56.39107072404671, -2.391788650290195],\n              [-56.75714617746452, -3.186495711855869],\n              [-58.29299096261485, -6.49893968587179],\n              [-58.37444360244076, -6.57050463000806],\n              [-58.436769044271415, -6.675797602774665],\n              [-58.455445802796376, -6.793922607280777],\n              [-58.385924315769344, -6.949181402265936],\n              [-58.228424309761195, -7.141552015073032],\n              [-58.14629051756555, -7.263500261912498],\n              [-58.13662254844674, -7.338207296012342],\n              [-58.20187035367012, -7.414474388765456],\n              [-58.22370018848723, -7.484677028162224],\n              [-58.22391991505812, -7.574677031595442],\n              [-58.259471674226816, -7.67322439863598],\n              [-58.330344479664774, -7.780099402712935],\n              [-58.35352563289281, -7.905870891885741],\n              [-58.32877343468296, -8.050538866154383],\n              [-58.354415525504876, -8.27600030053631],\n              [-58.3971743161985, -8.41550470038922],\n              [-58.42665063568231, -8.523038884178831],\n              [-58.47165063739892, -8.690888011675511],\n              [-58.54746729068172, -8.74893977170251],\n              [-61.609950317662424, -8.766715651286859],\n              [-61.609950317662424, -8.722177075369103],\n              [-61.71704504831027, -8.68640558962953],\n              [-61.761825323455994, -8.72668147007218],\n              [-61.837641976738794, -8.744457349656528],\n              [-61.873424448806915, -8.856056475007449],\n              [-61.91797401105322, -8.873832354591784],\n              [-61.99829505903911, -8.811495926432599],\n              [-62.13217445867744, -8.766715651286859],\n              [-62.172450339120104, -8.610577950018182],\n              [-62.3063187524299, -8.570302069575533],\n              [-62.373368315534506, -8.382875304613265],\n              [-62.45370034984893, -8.347103818873691],\n              [-62.5385257925379, -8.36059503032584],\n              [-62.5562906857937, -8.289052058846693],\n              [-62.63662272010812, -8.222233208641498],\n              [-62.67689860055077, -8.114896778765697],\n              [-62.721448162797074, -8.061349413441775],\n              [-62.82877360634434, -8.016788864866925],\n              [-62.90459025962714, -8.007802048117853],\n              [-63.538424512321626, -7.9987932587117],\n              [-63.587698195841895, -8.079345019597],\n              [-63.59197187764555, -8.1641814486145],\n              [-63.72607100385477, -8.19094414494792],\n              [-63.75284468651674, -8.284547664143616],\n              [-63.91799117719157, -8.333832333992419],\n              [-63.993818816802914, -8.440927064640263],\n              [-63.92249557189466, -8.53453058383596],\n              [-63.99832321150599, -8.681901194926454],\n              [-64.07415085111734, -8.713168285962936],\n              [-64.12769821644126, -8.68640558962953],\n              [-64.11892013993453, -8.936366536664778],\n              [-64.21701706750476, -8.949879720774021],\n              [-64.38217454450813, -8.940870931367854],\n              [-64.4179460302477, -8.972138022404351],\n              [-64.47599779027472, -8.949879720774021],\n              [-64.59659471870324, -9.025707360385354],\n              [-64.69019823789894, -9.021202965682278],\n              [-64.77951708896242, -8.985431479942704],\n              [-64.88662280593881, -9.061478846124942],\n              [-64.92689868638146, -9.11953060615194],\n              [-64.90461841209404, -9.213112152690542],\n              [-65.03849781173238, -9.400780616880766],\n              [-65.0920451770563, -9.436332376049464],\n              [-65.17236622504218, -9.373995947890265],\n              [-65.19915089403268, -9.266681490671544],\n              [-65.221650894891, -9.257892427836268],\n              [-65.41807546293087, -9.391771827474614],\n              [-65.44484914559283, -9.445319192798536],\n              [-65.52517019357872, -9.414052101762039],\n              [-65.6322759105551, -9.449823587501612],\n              [-65.6768254728014, -9.534638043862032],\n              [-65.76614432386489, -9.56592710755561],\n              [-65.93129081453974, -9.414052101762039],\n              [-65.99834037764435, -9.400780616880766],\n              [-66.10544609462073, -9.418556496465115],\n              [-66.39569390842718, -9.405043312355886],\n              [-66.4046917115048, -9.52565122711296],\n              [-66.50279962540357, -9.63274595776079],\n              [-66.59662287117014, -9.664013048797287],\n              [-66.69471979874037, -9.748849477814787],\n              [-66.74377375568974, -9.748849477814787],\n              [-66.82859919837871, -9.838168328878282]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 8074,\n        \"fill\": \"#999\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-58.86877345528232, 0.224275902629742],\n              [-58.96641994338225, 1.302474185947247],\n              [-58.91669582039168, 1.248926820623353],\n              [-58.86246730269801, 1.203707092335833],\n              [-58.82174098278506, 1.2012241820849],\n              [-58.78732081545638, 1.208431213609913],\n              [-58.73040064726945, 1.247575502212442],\n              [-58.684719493183024, 1.281105776928996],\n              [-58.60506861123838, 1.279073306148348],\n              [-58.51191553151301, 1.284698306362941],\n              [-58.495721683239026, 1.312153141394674],\n              [-58.48694360673227, 1.347704900563258],\n              [-58.50607080472753, 1.438605782937259],\n              [-58.472990969481316, 1.466280344539769],\n              [-58.39582299778755, 1.481804026772636],\n              [-58.38029931555474, 1.530176831352151],\n              [-58.36274316254122, 1.556730787443371],\n              [-58.340693601153305, 1.58754743900937],\n              [-58.31415063139076, 1.592051833712503],\n              [-58.28107079614449, 1.574275954128211],\n              [-58.23044579421327, 1.563256666598477],\n              [-58.17307518655599, 1.547952710936613],\n              [-58.14224754866132, 1.516905346470935],\n              [-58.09139183383064, 1.514422436220059],\n              [-58.034691392214654, 1.520278149333876],\n              [-58.011740951886, 1.539855786799592],\n              [-57.99509666414167, 1.574275954128211],\n              [-57.98271507187252, 1.648532548757714],\n              [-57.9462734200917, 1.650554033209858],\n              [-57.87336814387305, 1.667198320954185],\n              [-57.79574973270911, 1.70004744330106],\n              [-57.6917970920249, 1.704782550903417],\n              [-57.59437033049585, 1.704101398533737],\n              [-57.54576681301671, 1.726150959921654],\n              [-57.50054708472925, 1.773853598460107],\n              [-57.41279927864758, 1.908853603609998],\n              [-57.366898397990326, 1.940131680975128],\n              [-57.31739400157056, 1.963532560774013],\n              [-57.275547076146154, 1.959247892641883],\n              [-57.18959004161712, 1.981528166929309],\n              [-57.11894794907869, 2.013926849805898],\n              [-57.09262470588703, 2.005829925668877],\n              [-57.03749530925273, 1.936528165212735],\n              [-57.01004047422106, 1.921224209550701],\n              [-56.969544867207446, 1.916500088276791],\n              [-56.83679705940915, 1.881179042007489],\n              [-56.76637469344149, 1.892198329537223],\n              [-56.68986590146045, 1.914247890925139],\n              [-56.61652117210002, 1.922575527961612],\n              [-56.56364397281732, 1.907282558628253],\n              [-56.5254005631553, 1.927299649235522],\n              [-56.48287248536121, 1.942153165427158],\n              [-56.45294572640705, 1.932254483408883],\n              [-56.38589616330245, 1.923926846372581],\n              [-56.22704483888333, 1.885452723811113],\n              [-56.019820709884584, 1.842254479975736],\n              [-55.96333999483943, 1.857107996167372],\n              [-55.92958999355193, 1.887474208263313],\n              [-55.92172378231436, 1.976573332755947],\n              [-55.91541762973003, 2.039579926956264],\n              [-55.96199966275702, 2.095148776732287],\n              [-56.02004043645553, 2.158155370932775],\n              [-56.07359878810803, 2.236674661037284],\n              [-56.13771500149136, 2.258954935324823],\n              [-56.12939835078339, 2.29945054233832],\n              [-56.08777115192987, 2.341297467762729],\n              [-56.04502334756478, 2.364478620990781],\n              [-56.02027114935498, 2.392823348634579],\n              [-55.99349746669293, 2.497457141688471],\n              [-55.975490874209186, 2.515903187313995],\n              [-55.957495268054004, 2.520407582017128],\n              [-55.935896146136315, 2.516573353355284],\n              [-55.8938185078124, 2.489579944122454],\n              [-55.73047377501882, 2.406105819844413],\n              [-55.65891981721114, 2.41870713868434],\n              [-55.38531629114897, 2.440525987173032],\n              [-55.34391980519479, 2.488679065181771],\n              [-55.28609875806728, 2.499698352711505],\n              [-55.187771117597606, 2.547400991249958],\n              [-55.148846555565854, 2.55077379411307],\n              [-55.11419567533778, 2.53930406711288],\n              [-55.07031627913267, 2.548301870190642],\n              [-55.005749626279055, 2.593082145336382],\n              [-54.978745230717664, 2.59757555371084],\n              [-54.968396109229104, 2.548301870190642],\n              [-54.92654918380458, 2.497457141688471],\n              [-54.876143908444305, 2.45042466919125],\n              [-54.85162242313385, 2.439625108232349],\n              [-54.76679698044495, 2.454698350994931],\n              [-54.72224741819866, 2.441657579013167],\n              [-54.71482066010287, 2.425002304940222],\n              [-54.73484873703876, 2.416224228433464],\n              [-54.71707285745441, 2.264579935539416],\n              [-54.78839610236264, 2.130480809330038],\n              [-54.752844343193885, 2.081426852380673],\n              [-54.792900497065716, 2.010103607472502],\n              [-54.7616224197007, 1.969827727029838],\n              [-54.76611582807516, 1.898504482121496],\n              [-54.73484873703876, 1.773403158989879],\n              [-54.578700049441466, 1.782400962067584],\n              [-54.49836801512703, 1.746629476328053],\n              [-54.364499601817215, 1.760131674108663],\n              [-54.20361580661756, 1.657299638935967],\n              [-54.172348715580995, 1.657299638935967],\n              [-54.083249591088475, 1.541207105210503],\n              [-54.07874519638534, 1.505655346041749],\n              [-54.00719123857766, 1.523431225626041],\n              [-53.92236579588871, 1.460875070896009],\n              [-53.89109870485214, 1.407327705572129],\n              [-53.75721930521382, 1.394056220690743],\n              [-53.739443425629474, 1.434101388234183],\n              [-53.6591223776436, 1.420829903352796],\n              [-53.650124574566064, 1.362778143325841],\n              [-53.5562903424709, 1.367282538028917],\n              [-53.53852544921506, 1.2421812148973],\n              [-53.44019780874544, 1.259957094481592],\n              [-53.40891973138042, 1.184129454870344],\n              [-53.466971491407435, 1.152851377505215],\n              [-53.41791753445807, 0.94315532458404],\n              [-53.26627324156391, 0.782282515712836],\n              [-53.132174115354644, 0.751004438347934],\n              [-53.11439823577035, 0.719957073882256],\n              [-53.14117191843229, 0.536803990723683],\n              [-53.127669720651625, 0.384928984930184],\n              [-53.04284427796267, 0.246556176917181],\n              [-53.007292518793975, 0.134957051566346],\n              [-53.016070595300675, 0.054625017251851],\n              [-52.97602542775746, -0.016698227656377],\n              [-52.913469273027374, -0.190853507737359],\n              [-52.82864383033842, -0.181844718331263],\n              [-52.699268825403124, -0.302452633088365],\n              [-52.627714867595444, -0.396275878854851],\n              [-52.63221926229852, -0.556917974826604],\n              [-52.60544557963652, -0.610465340150597],\n              [-52.52512453165065, -0.646236825890128],\n              [-52.507348652066355, -0.731073254907699],\n              [-52.51611574224455, -0.873939471295046],\n              [-52.40002320851909, -0.869457049249036],\n              [-52.36874513115396, -0.923004414573029],\n              [-52.39124513201233, -0.954271505609483],\n              [-52.35996705464731, -1.070375025663452],\n              [-52.23937012621877, -1.146202665274814],\n              [-52.13227539557096, -1.15070705997789],\n              [-52.05194336125652, -1.177469756311268],\n              [-51.98489379815186, -1.141698270571794],\n              [-51.888148188992545, -1.160375029096713],\n              [-51.92166747738065, -1.180853545502885],\n              [-51.934499509120144, -1.320357945355852],\n              [-51.980839842919124, -1.368038611237182],\n              [-52.02044555732061, -1.39910794835987],\n              [-52.22924073130116, -1.362413611022589],\n              [-52.55346925929439, -1.514068890245312],\n              [-52.66416750570471, -1.551642133866153],\n              [-52.31024293165666, -1.559530317760732],\n              [-52.19662232185368, -1.64008207864606],\n              [-51.947540281101965, -1.586754439893014],\n              [-51.646273179765785, -1.394361854428894],\n              [-51.53129026522333, -1.354107946643353],\n              [-51.29729245356259, -1.223590363539415],\n              [-51.20234860228459, -1.136512723498981],\n              [-51.02887447457323, -1.032120629672988],\n              [-50.99197139699362, -0.986219749015731],\n              [-50.89499507493497, -0.937616231536595],\n              [-50.8423485885516, -0.999491233896947],\n              [-50.83829463331887, -1.038866235398984],\n              [-50.91794551526357, -1.115155300809249],\n              [-50.89724727228645, -1.164417998000999],\n              [-50.844589799574635, -1.226293000361238],\n              [-50.825473587907936, -1.311349155949642],\n              [-50.818716995853265, -1.376146521702708],\n              [-50.78609858640584, -1.489986858076691],\n              [-50.67899286942952, -1.643905320979457],\n              [-50.675400339995576, -1.694750049481513],\n              [-50.6900231432877, -1.761788626257555],\n              [-50.63871698898686, -1.817137749462688],\n              [-50.58562006313315, -1.849986871809563],\n              [-50.403148132344256, -2.015594788283238],\n              [-50.260490656199295, -1.922892148028211],\n              [-50.17274285011757, -1.896129451694776],\n              [-50.11649284797181, -1.857413629905352],\n              [-49.99926872240633, -1.831771539083491],\n              [-49.90297355271724, -1.870707087443691],\n              [-49.719589756659275, -1.926275937219714],\n              [-49.58527090387912, -1.867103571681298],\n              [-49.31369984859771, -1.731642140732561],\n              [-49.39874501785749, -1.971495665507291],\n              [-49.46016958074756, -2.191551826245473],\n              [-49.506971340345444, -2.280189524939203],\n              [-49.55332266047293, -2.5198233231431],\n              [-49.599223541130186, -2.583939536526429],\n              [-49.63656607185152, -2.656844812744964],\n              [-49.575822661331244, -2.631422448493993],\n              [-49.52384634098911, -2.596771568265922],\n              [-49.45746694392568, -2.504530353809628],\n              [-49.40774282093514, -2.344327710979655],\n              [-49.21109852632435, -1.916607968100948],\n              [-49.15484852417859, -1.87857329868126],\n              [-48.99127307848562, -1.829750054631404],\n              [-48.710023067756765, -1.4877456470536],\n              [-48.59999498738762, -1.488646525994284],\n              [-48.52957262141996, -1.567396528998415],\n              [-48.4629734977857, -1.613978562025295],\n              [-48.445867784242466, -1.520375042829585],\n              [-48.349792341124385, -1.482120646839121],\n              [-48.45149278445706, -1.435780313040141],\n              [-48.46814805852995, -1.393922401287114],\n              [-48.477816027648714, -1.323719761890345],\n              [-48.408525253521134, -1.229215363754008],\n              [-48.44969102657586, -1.145521512905134],\n              [-48.30659409728895, -1.039767114339611],\n              [-48.31762437114725, -0.960577658193756],\n              [-48.26654892974574, -0.895099140071011],\n              [-48.20174057766411, -0.827818864066955],\n              [-48.128395848303796, -0.795189468291028],\n              [-48.115124363422524, -0.737599134062862],\n              [-48.06877304329498, -0.713736828465073],\n              [-48.032540131756605, -0.704969738286877],\n              [-47.96099716027743, -0.769547377469053],\n              [-47.88336776278476, -0.693280284716025],\n              [-47.807770836072905, -0.663573252332753],\n              [-47.773790121886066, -0.676844737214026],\n              [-47.731492756991315, -0.71037501193058],\n              [-47.687173907644365, -0.724767102323369],\n              [-47.65117170900544, -0.718702648966996],\n              [-47.55734846323878, -0.669879404917026],\n              [-47.47072126266863, -0.748629407921158],\n              [-47.41874494232644, -0.76594386170666],\n              [-47.4329173061484, -0.721844738930656],\n              [-47.46037214118007, -0.680887706118199],\n              [-47.438992745833275, -0.647599130629658],\n              [-47.398046699349436, -0.626681161081649],\n              [-47.26867169441414, -0.645357919606681],\n              [-47.20049053946951, -0.680448252976419],\n              [-47.12691509720963, -0.745465345300431],\n              [-47.02454448783584, -0.750189466574341],\n              [-46.944443166420854, -0.743443860848345],\n              [-46.89359843791868, -0.779896498957612],\n              [-46.81124491915227, -0.779676772386722],\n              [-46.76984843319809, -0.836607926902275],\n              [-46.64451639716708, -0.916478535417809],\n              [-46.61729227503474, -0.970707053111482],\n              [-46.51627298407186, -0.996788597075124],\n              [-46.421768585935524, -1.030099145220788],\n              [-46.32074929497253, -1.039107934626998],\n              [-46.219048851639855, -1.031219750732305],\n              [-46.21499489640706, -1.099840358818767],\n              [-46.14029884863578, -1.118297390772852],\n              [-46.04467384498798, -1.103004421439437],\n              [-46.00708961503864, -1.146861844987484],\n              [-46.14119972757641, -1.240025911041414],\n              [-46.15896462083214, -1.315853550652776],\n              [-46.12319313509255, -1.34712064168923],\n              [-46.1992405012748, -1.485504436030624],\n              [-46.18124489511962, -1.574823287094205],\n              [-46.1992405012748, -1.677413623038944],\n              [-46.24379006352109, -1.722193898184685],\n              [-46.31534402132888, -1.73098296101989],\n              [-46.30184182354816, -1.802525932499123],\n              [-46.21701638085926, -1.807030327202142],\n              [-46.212522972484635, -1.927396542731231],\n              [-46.27957253558924, -2.141827703254933],\n              [-46.37766946315952, -2.253426828605825],\n              [-46.41344094889905, -2.239913644496539],\n              [-46.40894754052454, -2.387306228244199],\n              [-46.43572122318653, -2.409564529874501],\n              [-46.426943146679776, -2.512396565047197],\n              [-46.48499490670673, -2.547948324215952],\n              [-46.50727518099421, -2.614986900991994],\n              [-46.600867713861305, -2.664051844269977],\n              [-46.667917276965966, -2.739879483881225],\n              [-46.574094031199365, -2.847193941099988],\n              [-46.65014139738162, -2.91401279130514],\n              [-46.63665018592951, -2.985577735441382],\n              [-46.667917276965966, -3.092672466089311],\n              [-46.74374491657733, -3.190780379988041],\n              [-46.82429667746254, -3.329142201672369],\n              [-46.859848436631296, -3.329142201672369],\n              [-46.94467387932019, -3.396202751105534],\n              [-46.96694316727911, -3.525797482611608],\n              [-47.0294993220092, -3.570358031186515],\n              [-47.02499492730607, -3.59712072751995],\n              [-47.06527080774873, -3.842599252509217],\n              [-47.28846905845063, -4.079288714663221],\n              [-47.310749332738055, -4.065797503211058],\n              [-47.333018620696976, -4.164125143680735],\n              [-47.38229230421723, -4.275724269031571],\n              [-47.45811994382859, -4.338280423761717],\n              [-47.48939802119361, -4.423094880122107],\n              [-47.58322126696021, -4.547965490354329],\n              [-47.65454451186838, -4.606017250381342],\n              [-47.80191512295892, -4.597030433632256],\n              [-48.25281601906562, -4.954327810543248],\n              [-48.730490597834375, -5.338168157216899],\n              [-48.7219432342271, -5.355043157860635],\n              [-48.721492794756784, -5.355724310230372],\n              [-48.721492794756784, -5.355944036801247],\n              [-48.597523063465246, -5.398702827494787],\n              [-48.51111558946593, -5.408151070042777],\n              [-48.42156602550301, -5.398483100923954],\n              [-48.35699937264934, -5.424344918316791],\n              [-48.31717393167699, -5.486219920677129],\n              [-48.27531601992399, -5.522452832215549],\n              [-48.23144761004744, -5.533241406845832],\n              [-48.19274277458658, -5.565431349480036],\n              [-48.159223486198584, -5.619198441374863],\n              [-48.18127304758653, -5.672064654329048],\n              [-48.25867173217969, -5.723590535200856],\n              [-48.28004014119796, -5.795814659049739],\n              [-48.24540024729842, -5.888517299304809],\n              [-48.25439805037604, -5.945228727249429],\n              [-48.30704453675935, -5.965926970226505],\n              [-48.32121690058125, -6.006642303810906],\n              [-48.29669541527082, -6.067396700659771],\n              [-48.319415142699995, -6.112396702376316],\n              [-48.38984849499619, -6.141862035531645],\n              [-48.413699814265414, -6.207340553654447],\n              [-48.3911998134071, -6.308832256744807],\n              [-48.410096298502964, -6.357655500794763],\n              [-48.47061998245238, -6.353370832662506],\n              [-48.52732042406845, -6.3722673177584],\n              [-48.57996691045176, -6.414125229511413],\n              [-48.62204454877565, -6.488590564383287],\n              [-48.65287218667038, -6.595707267688226],\n              [-48.80541735850514, -6.71831469424032],\n              [-49.07947132403763, -6.856237062782895],\n              [-49.209747207913466, -7.005651130982585],\n              [-49.19512440462128, -7.168556410634423],\n              [-49.2396739668676, -7.334823506820669],\n              [-49.34047353125965, -7.510099392413281],\n              [-49.333947652104456, -7.649142366467331],\n              [-49.22031605597289, -7.752194128210874],\n              [-49.172393690863544, -7.867396769324316],\n              [-49.189949843877, -7.994970016378346],\n              [-49.22684193512808, -8.139418264076113],\n              [-49.28264149780355, -8.301422664787339],\n              [-49.378947653821115, -8.498297672297554],\n              [-49.50269765854176, -8.70866389125986],\n              [-49.61294546548177, -8.839181474363713],\n              [-49.707900303088365, -8.894970050710626],\n              [-49.82984854992782, -9.022103844622904],\n              [-49.97924064547044, -9.22009945764458],\n              [-50.08409416509528, -9.421918312999608],\n              [-50.17521477404, -9.730172719289826],\n              [-50.23484856537735, -9.842672723581373],\n              [-51.29752316646204, -9.78912535825745],\n              [-55.09214611394981, -9.56592710755561],\n              [-56.46262468185441, -9.467599467085961],\n              [-56.489398364516376, -9.467599467085961],\n              [-56.67682512947863, -9.378280616022494],\n              [-56.7706483752452, -9.39627622217769],\n              [-56.837697938349834, -9.271163912717554],\n              [-56.92679706284244, -9.24440121638412],\n              [-57.047393991270965, -9.231129731502847],\n              [-57.07416767393295, -9.18634945635705],\n              [-57.08316547701054, -9.079254725709276],\n              [-57.10094135659489, -9.052470056718775],\n              [-57.29736592463476, -8.958646810952203],\n              [-57.480519007793376, -8.79350032027736],\n              [-57.5786159353636, -8.757948561108677],\n              [-57.641172090093676, -8.615082344721259],\n              [-57.650169893171295, -8.498978824667262],\n              [-57.681447970536325, -8.436422669937187],\n              [-57.641172090093676, -8.231000298819694],\n              [-57.779544898106565, -8.048077928560417],\n              [-57.89564841816055, -7.690780551649439],\n              [-57.94919578348447, -7.619457306741182],\n              [-57.98047386084954, -7.530116483020606],\n              [-58.06079490883542, -7.409530540920628],\n              [-58.13662254844674, -7.338207296012342],\n              [-58.14629051756555, -7.263500261912498],\n              [-58.228424309761195, -7.141552015073032],\n              [-58.385924315769344, -6.949181402265936],\n              [-58.455445802796376, -6.793922607280777],\n              [-58.436769044271415, -6.675797602774665],\n              [-58.37444360244076, -6.57050463000806],\n              [-58.29299096261485, -6.49893968587179],\n              [-56.75714617746452, -3.186495711855869],\n              [-56.39107072404671, -2.391788650290195],\n              [-56.400969406064945, -2.336219800514158],\n              [-56.4848939698133, -2.248922433902749],\n              [-56.49839616759398, -2.159603582839281],\n              [-56.63676897560687, -2.222137764912276],\n              [-56.74836810095778, -2.17737946242363],\n              [-56.74387469258325, -2.052486879534356],\n              [-56.824195740569124, -2.034491273379132],\n              [-57.00734882372774, -1.936405332137454],\n              [-57.087669871713615, -1.81129302267729],\n              [-57.16799091969949, -1.771236868805516],\n              [-57.248322954013915, -1.757745657353368],\n              [-57.27509663667588, -1.713207081435613],\n              [-57.33764180507741, -1.730982961019961],\n              [-57.44924093042833, -1.690926807148188],\n              [-57.56534445048233, -1.623866257715036],\n              [-57.65467428787437, -1.588094771975463],\n              [-57.828598855055944, -1.445228555588045],\n              [-57.900141826535105, -1.422948281300592],\n              [-57.98047386084954, -1.34712064168923],\n              [-58.083075183122816, -1.298077671068427],\n              [-58.15912254930504, -1.235521516338338],\n              [-58.25271508217219, -1.128426785690522],\n              [-58.31527123690226, -1.119417996284355],\n              [-58.39109887651361, -1.048094751376084],\n              [-58.44037256003389, -0.86044825984294],\n              [-58.56974756496915, -0.762340345944182],\n              [-58.62779932499615, -0.766844740647258],\n              [-58.70361597827895, -0.695301769168111],\n              [-58.74839625342467, -0.62397852425984],\n              [-58.73939845034707, -0.432047364594496],\n              [-58.85549098407252, -0.351495603709196],\n              [-58.86449977347867, -0.173077628153081],\n              [-58.85099757569799, -0.083736804432505],\n              [-58.86877345528232, 0.224275902629742]\n            ]\n          ],\n          [\n            [\n              [-51.42441526114635, -0.565926764232813],\n              [-51.25409420972716, -0.541405278922355],\n              [-51.160721403430955, -0.6667153422963],\n              [-51.27637448401464, -1.021771508184429],\n              [-51.31012448530208, -1.023792992636515],\n              [-51.46514158105924, -1.211219757598826],\n              [-51.63771482982992, -1.34195706727354],\n              [-51.66494993829076, -1.35476712635591],\n              [-51.83256835288802, -1.433736855930931],\n              [-51.93832275145343, -1.452655313683863],\n              [-51.801971427892624, -1.202452667420573],\n              [-51.68002318105323, -1.086129420795658],\n              [-51.679572741583, -1.018629418220826],\n              [-51.67822142317203, -0.855042986199237],\n              [-51.546143781414855, -0.649620615081744],\n              [-51.42441526114635, -0.565926764232813]\n            ]\n          ],\n          [\n            [\n              [-48.44451646583161, -0.271844721764467],\n              [-48.39277085838887, -0.297267086015552],\n              [-48.37971910007849, -0.352857908448641],\n              [-48.428091904658174, -0.441495607142429],\n              [-48.46387437672621, -0.534879399767249],\n              [-48.497393665114316, -0.664913584415103],\n              [-48.52326646883563, -0.691478526834715],\n              [-48.56669542557046, -0.684491221880705],\n              [-48.53969103000907, -0.80105616773352],\n              [-48.54958971202734, -0.847616228103448],\n              [-48.57096910737414, -0.892857929048034],\n              [-48.62406603322779, -0.986900901385468],\n              [-48.70461779411306, -1.106607937201943],\n              [-48.72846911338229, -1.131788602225015],\n              [-48.7898936762723, -1.173426787407095],\n              [-48.839617799262896, -1.226512726932128],\n              [-48.82904895120345, -1.276478549150681],\n              [-48.80406604009414, -1.326861851853948],\n              [-48.83354235957796, -1.390099158953774],\n              [-48.928947636654925, -1.482340373410011],\n              [-48.9858678048418, -1.504620647697379],\n              [-49.03852527755373, -1.514068890245312],\n              [-49.086898082133416, -1.505082073496283],\n              [-49.17262440376288, -1.412599159812089],\n              [-49.18162220684053, -1.485043010231834],\n              [-49.20479237374008, -1.559068891961942],\n              [-49.234048966653006, -1.599564498975496],\n              [-49.34474721306327, -1.59530180350032],\n              [-49.406622215423624, -1.555465376199436],\n              [-49.50674062744599, -1.511607952651389],\n              [-49.52564809887042, -1.630392136870171],\n              [-49.587973540701, -1.712306202495029],\n              [-49.650518709102585, -1.73816801988778],\n              [-49.748846349572204, -1.755262747102392],\n              [-49.805096351717964, -1.790155326558363],\n              [-49.91129020342515, -1.762931204426195],\n              [-50.01006828336517, -1.708482960161632],\n              [-50.065648119469756, -1.703736866230599],\n              [-50.109296802775475, -1.747857961663669],\n              [-50.33833978026274, -1.755943899472072],\n              [-50.44342401278692, -1.800724174617812],\n              [-50.50754022617036, -1.78789214287832],\n              [-50.602044624306586, -1.697672412874226],\n              [-50.61711786706917, -1.63759916839507],\n              [-50.67336786921493, -1.516090374697455],\n              [-50.72377314457526, -1.371422400428798],\n              [-50.75977534321419, -1.240245637612304],\n              [-50.72939814478974, -1.126844754380102],\n              [-50.668424021370015, -1.130448270142608],\n              [-50.59596918462171, -1.14754299735722],\n              [-50.5804455023889, -1.139457059548818],\n              [-50.576841986626505, -1.103224148010327],\n              [-50.5928161083296, -1.072857935914499],\n              [-50.7095897944248, -1.077801783759355],\n              [-50.78339594958396, -1.01030178118441],\n              [-50.79599726842412, -0.906349140500197],\n              [-50.78092402566159, -0.689896495524408],\n              [-50.77146479678515, -0.645357919606681],\n              [-50.719949902241865, -0.583482917246329],\n              [-50.703074901598086, -0.528573247182862],\n              [-50.71589594700913, -0.470301760585016],\n              [-50.69361567272165, -0.364547362019607],\n              [-50.645473581041415, -0.272745600705093],\n              [-50.46165033184167, -0.157323233020861],\n              [-50.24833977682954, -0.116366200208404],\n              [-49.628699860614006, -0.229107903727936],\n              [-49.535096341418296, -0.233590325773889],\n              [-49.40279897309023, -0.214693840678137],\n              [-49.31437001463888, -0.167892081080254],\n              [-49.215141495228636, -0.158663565103154],\n              [-49.1170445676583, -0.163629385605191],\n              [-48.7865208734093, -0.215594719618707],\n              [-48.58807482091726, -0.231568841321803],\n              [-48.51540025759806, -0.248224115394692],\n              [-48.44451646583161, -0.271844721764467]\n            ]\n          ],\n          [\n            [\n              [-50.76516963052933, -0.040780259825112],\n              [-50.66707270295916, -0.058094713610558],\n              [-50.65064814178572, -0.105797352149011],\n              [-50.65290033913726, -0.131681142198886],\n              [-50.926273152299984, -0.327413571540546],\n              [-51.01896480622645, -0.26307763158627],\n              [-51.03809200422177, -0.22594384110721],\n              [-51.022348595418066, -0.188370597486426],\n              [-51.02572139828112, -0.172396475783273],\n              [-50.995124473285784, -0.105357899007231],\n              [-50.84211787565215, -0.050228502372988],\n              [-50.76516963052933, -0.040780259825112]\n            ]\n          ],\n          [\n            [\n              [-49.50336782458294, 0.083650897265329],\n              [-49.4005467757388, 0.057327654073731],\n              [-49.372421774665895, 0.001077651927972],\n              [-49.3809691382732, -0.055392076788678],\n              [-49.443964746145014, -0.112323231304231],\n              [-49.70879019570043, -0.143832021568699],\n              [-49.83006827649871, -0.093866199350146],\n              [-49.802624427795536, -0.051788561026285],\n              [-49.71239371146294, 0.015030289178867],\n              [-49.6021459045229, 0.06273292771732],\n              [-49.50336782458294, 0.083650897265329]\n            ]\n          ],\n          [\n            [\n              [-49.87889152054868, 0.304607936944308],\n              [-49.73826651518419, 0.26815529883487],\n              [-49.697320468700354, 0.215948265593283],\n              [-49.839066079576355, 0.006922378713398],\n              [-49.91714591653914, -0.023224106811597],\n              [-50.002421798698435, -0.02928856016797],\n              [-50.11312004510876, 0.033025895334163],\n              [-50.285693293879376, 0.028532486959705],\n              [-50.33947137210271, 0.043375016822665],\n              [-50.3450963723173, 0.134506612095947],\n              [-50.272641535568994, 0.231702660725603],\n              [-50.12797356130034, 0.226528099981408],\n              [-49.87889152054868, 0.304607936944308]\n            ]\n          ],\n          [\n            [\n              [-50.35094109910278, 0.5818039924402],\n              [-50.34262444839493, 0.381556182067072],\n              [-50.33227532690637, 0.258926782857827],\n              [-50.42609857267297, 0.139230733370027],\n              [-50.44387445225726, -0.007700424578843],\n              [-50.623874459123726, 0.054405290681018],\n              [-50.61037226134306, 0.204698265164097],\n              [-50.52621698469534, 0.247006616387409],\n              [-50.45152093692394, 0.326877224903058],\n              [-50.42609857267297, 0.424974152473396],\n              [-50.42451654136261, 0.558172399741864],\n              [-50.39684197976004, 0.581353552969972],\n              [-50.372770933919924, 0.590801795517962],\n              [-50.35094109910278, 0.5818039924402]\n            ]\n          ],\n          [\n            [\n              [-50.09871696838741, 0.625002236275577],\n              [-50.058891527415085, 0.63805399458596],\n              [-50.03684196602717, 0.594855750750639],\n              [-50.03999504231922, 0.522851353472561],\n              [-50.15294548608108, 0.393025909067035],\n              [-50.26139153513981, 0.359275907779647],\n              [-50.2816503249752, 0.390773711715553],\n              [-50.2816503249752, 0.516556187216906],\n              [-50.25127312655076, 0.58540750820282],\n              [-50.11290031853787, 0.604754432768857],\n              [-50.09871696838741, 0.625002236275577]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 2620,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-50.96429683539111, -19.511366940069024],\n              [-50.99759639720824, -19.66392309823233],\n              [-50.99377315487493, -20.101552509457804],\n              [-51.06396480794314, -20.223039330498423],\n              [-51.16072140343098, -20.306513454776464],\n              [-51.39697141244321, -20.44175515915427],\n              [-51.53422361494461, -20.55761697998031],\n              [-51.593165267583686, -20.666513468509322],\n              [-51.61904905763356, -20.806918747302916],\n              [-51.69194334752365, -20.943720510334003],\n              [-51.81141967044064, -21.077138484173474],\n              [-51.86631835417552, -21.18267315616805],\n              [-51.856650385056696, -21.260082827089718],\n              [-51.87284423333068, -21.32982404068764],\n              [-51.936290280672836, -21.422746407513614],\n              [-51.95474731262692, -21.46954816711147],\n              [-51.989848632325305, -21.49363019928012],\n              [-52.047669679452866, -21.51094465306562],\n              [-52.072641604233596, -21.554142896901],\n              [-52.0649951195669, -21.622763504987418],\n              [-52.12259644012363, -21.718168782064367],\n              [-52.245665292474555, -21.84035872813176],\n              [-52.33881837219997, -21.957341154469304],\n              [-52.402495132441516, -22.069181979048096],\n              [-52.56607057813454, -22.207324074161647],\n              [-52.96072147209553, -22.454824083603015],\n              [-53.11619999365156, -22.639987664885183],\n              [-53.272348681248786, -22.752048216034964],\n              [-53.480693415759006, -22.852397340956728],\n              [-53.61996710271251, -23.00113025678668],\n              [-53.67734869669832, -23.17348377898645],\n              [-53.77117194246489, -23.322194722159324],\n              [-53.90752326602565, -23.407031151176824],\n              [-53.99549079867822, -23.570156157399552],\n              [-54.05016975584219, -23.82281974125665],\n              [-54.1246460770426, -23.978517989383576],\n              [-54.24254036864929, -24.046918870899106],\n              [-54.370794768073054, -23.971091231287758],\n              [-54.440316255100086, -23.901789470831602],\n              [-54.52964609249213, -23.852065347841034],\n              [-54.625490822710816, -23.81247061976812],\n              [-54.67184214283836, -23.829125893840967],\n              [-54.72134653925805, -23.852065347841034],\n              [-54.81719126947674, -23.888517985950344],\n              [-54.92654918380465, -23.951293867251295],\n              [-54.982568473051, -23.974475020479346],\n              [-55.081796992461264, -23.997656173707384],\n              [-55.1942969967528, -24.017453537743847],\n              [-55.28699963700788, -24.00440177943345],\n              [-55.366419806053145, -23.991130294552192],\n              [-55.41592420247284, -23.951293867251295],\n              [-55.44246717223537, -23.865358805379387],\n              [-55.44246717223537, -23.792673255731657],\n              [-55.45889173340879, -23.686699130595315],\n              [-55.51852552474614, -23.627307038485938],\n              [-55.5383228887826, -23.58094473202985],\n              [-55.54169569164563, -23.52469472988409],\n              [-55.53495008591956, -23.461918848583124],\n              [-55.51852552474614, -23.41557851478413],\n              [-55.52842420676437, -23.35932851263837],\n              [-55.554747449956025, -23.319733784565443],\n              [-55.54822157080082, -23.25019032488133],\n              [-55.56149305568209, -23.154345594662644],\n              [-55.60109877008355, -23.094733775982377],\n              [-55.62089613412002, -23.02519031629825],\n              [-55.62089613412002, -22.955888555842108],\n              [-55.650822893074135, -22.886367068815062],\n              [-55.65396498303774, -22.81031970263284],\n              [-55.627641739846084, -22.741017942176683],\n              [-55.617743057827866, -22.67149645514965],\n              [-55.647450090211095, -22.621772332159082],\n              [-55.703700092356854, -22.59206529977584],\n              [-55.74666762329282, -22.512656117059123],\n              [-55.75319350244801, -22.410043808457274],\n              [-55.79954482257554, -22.353793806311515],\n              [-55.84926894556612, -22.307673199083396],\n              [-55.90529922114101, -22.307673199083396],\n              [-55.99146499591235, -22.281130229320866],\n              [-56.06752334842312, -22.28449204585536],\n              [-56.18992203473289, -22.281130229320866],\n              [-56.245941323979224, -22.264694681818895],\n              [-56.27586808293334, -22.228242043709585],\n              [-56.351915449115566, -22.178517920719017],\n              [-56.39489396638007, -22.09258285884711],\n              [-56.4477711656628, -22.07614731134514],\n              [-56.52381853184502, -22.102470554536794],\n              [-56.5503724879361, -22.135539403454516],\n              [-56.58006853399078, -22.18190170991059],\n              [-56.632945733273516, -22.234767922864776],\n              [-56.70246722030055, -22.231625832901173],\n              [-56.775141783619745, -22.261332865284402],\n              [-56.844674256975324, -22.264694681818895],\n              [-56.93714618433097, -22.271220560974086],\n              [-57.02984882458604, -22.244897317782446],\n              [-57.14234882887757, -22.214970558828327],\n              [-57.23819355909626, -22.195173194791863],\n              [-57.33089619935134, -22.214970558828327],\n              [-57.393672080652294, -22.19831528475548],\n              [-57.4764650525606, -22.188647315636672],\n              [-57.56894796624479, -22.18190170991059],\n              [-57.64162252956399, -22.129013524299324],\n              [-57.72104269860925, -22.099328464573176],\n              [-57.764021215873754, -22.10921616026286],\n              [-57.82027121801951, -22.142306981837677],\n              [-57.87989402302833, -22.135539403454516],\n              [-57.95594138921055, -22.10921616026286],\n              [-57.98564842159378, -22.04644027896191],\n              [-57.97912254243859, -22.006625824318107],\n              [-57.96246726836574, -21.96703109624518],\n              [-57.93277122231105, -21.91078109409942],\n              [-57.94941551005536, -21.851147302762072],\n              [-57.94266990432928, -21.798281089807887],\n              [-57.92939841944802, -21.751918783351798],\n              [-57.9161159482382, -21.699052570397612],\n              [-57.926245343155855, -21.64954817397792],\n              [-57.92939841944802, -21.596681961023734],\n              [-57.93614402517409, -21.546957838033165],\n              [-57.94604270719232, -21.494069652421885],\n              [-57.90621726621997, -21.418022286239662],\n              [-57.87314841730225, -21.35502667836782],\n              [-57.893165507909586, -21.30213849275654],\n              [-57.88641990218352, -21.2659275538752],\n              [-57.860096658991864, -21.206293762537854],\n              [-57.827016823745595, -21.13363018554722],\n              [-57.830169900037745, -20.997949028027634],\n              [-57.860096658991864, -20.918517872653823],\n              [-57.89227561529752, -20.897138477307024],\n              [-57.90059226600539, -20.873078417795455],\n              [-57.8848488572017, -20.841789354101863],\n              [-57.901943584416316, -20.809401657553877],\n              [-57.90846946357151, -20.776332808636155],\n              [-57.891374736356894, -20.747526655193525],\n              [-57.91521506929759, -20.690375774107153],\n              [-57.96246726836574, -20.673720500034307],\n              [-57.97912254243859, -20.657306925189417],\n              [-57.99554710361201, -20.594531043888466],\n              [-58.008818588493284, -20.521625767669846],\n              [-58.00229270933808, -20.465375765524072],\n              [-58.02547386256613, -20.41587136910438],\n              [-58.05854271148385, -20.38616433672115],\n              [-58.0913918338307, -20.333298123766966],\n              [-58.124691395647844, -20.293483669123162],\n              [-58.13774315395824, -20.237233666977403],\n              [-58.15979271534623, -20.16454811732966],\n              [-58.09364403118224, -20.15105690587751],\n              [-58.06754051456147, -20.110319599636014],\n              [-58.02120018076248, -20.055190203001743],\n              [-57.960215071014204, -20.040798112608982],\n              [-57.88754050769501, -20.020319596202782],\n              [-57.86076682503305, -19.979604262618366],\n              [-58.02996727094066, -19.832673104669638],\n              [-58.13144798770247, -19.744474859117645],\n              [-58.07204490926455, -19.62522924910003],\n              [-57.971695784342785, -19.424289300028533],\n              [-57.87449973571317, -19.229457749627542],\n              [-57.800473853983064, -19.080944560368465],\n              [-57.78134665598779, -19.053500711665322],\n              [-57.7167690168056, -19.044052469117403],\n              [-57.72870016960448, -18.967323950565444],\n              [-57.730941380627485, -18.917138401776015],\n              [-57.783148413869014, -18.914216038383287],\n              [-57.725096653842016, -18.733095426005335],\n              [-57.63915060564156, -18.475026568504532],\n              [-57.57412252698906, -18.279272166505848],\n              [-57.55319357111256, -18.246423044159002],\n              [-57.50617208494384, -18.23719452818196],\n              [-57.49559225055587, -18.21469452732366],\n              [-57.55207296560107, -18.18320770971627],\n              [-57.58649313292972, -18.122233586296545],\n              [-57.661650606499876, -17.947397153845813],\n              [-57.75322165491491, -17.734767751203393],\n              [-57.7527712154446, -17.734548024632517],\n              [-57.632174287016056, -17.739953298276205],\n              [-57.600896209651026, -17.816000664458443],\n              [-57.493790492674634, -17.869548029782365],\n              [-57.471521204715756, -17.900595394247972],\n              [-57.41932515780276, -17.882138362293887],\n              [-57.36982076138307, -17.875612483138696],\n              [-57.19859883102335, -17.81239714869598],\n              [-57.0797926741475, -17.73432829806164],\n              [-56.98012470159547, -17.594823898208716],\n              [-56.8874220613404, -17.517875653085866],\n              [-56.789995299811366, -17.386017737899635],\n              [-56.745215024665626, -17.316957676671464],\n              [-56.6680470529719, -17.320319493205957],\n              [-56.489398364516376, -17.30254361362161],\n              [-56.435840012863906, -17.320319493205957],\n              [-56.32874528221606, -17.284548007466384],\n              [-56.248424234230185, -17.21772915726119],\n              [-56.101042636811144, -17.18644009356761],\n              [-56.02499527062892, -17.213224762558113],\n              [-55.984950103085694, -17.266772127882035],\n              [-55.833075097292124, -17.311332676456885],\n              [-55.78852553504582, -17.351608556899535],\n              [-55.60986586026175, -17.391862464685104],\n              [-55.53404920697895, -17.503483562693106],\n              [-55.33762463893906, -17.58379362435045],\n              [-55.181245238442415, -17.686405932952297],\n              [-55.07415050779457, -17.681901538249207],\n              [-54.899995227713575, -17.65061247455563],\n              [-54.81089610322097, -17.601569503934783],\n              [-54.779618025855925, -17.557030928017028],\n              [-54.69929697787005, -17.516755047574378],\n              [-54.52514169778905, -17.512250652871302],\n              [-54.42232064894486, -17.579289229647358],\n              [-54.391273284479254, -17.673112475413944],\n              [-54.31971932667156, -17.673112475413944],\n              [-54.23489388398259, -17.637340989674357],\n              [-54.14557503291911, -17.6283541729253],\n              [-54.08324959108846, -17.588298019053525],\n              [-54.03846931594272, -17.512250652871302],\n              [-53.949150464879224, -17.45870328754738],\n              [-53.81977545994397, -17.307048008324685],\n              [-53.74394782033262, -17.253500643000763],\n              [-53.68139166560255, -17.25776333847587],\n              [-53.752714910510804, -17.641845384377447],\n              [-53.859820627487196, -17.69088835499828],\n              [-53.98941535899334, -17.900595394247972],\n              [-53.97592414754119, -17.93186248528447],\n              [-53.8688184305648, -17.945375669393698],\n              [-53.72594122784885, -18.007931824123787],\n              [-53.60534429942031, -17.994418640014544],\n              [-53.49374517406939, -18.01241424616977],\n              [-53.306318409107135, -17.99892303471762],\n              [-53.145665326806835, -18.030190125754118],\n              [-53.065344278820945, -18.021203309005045],\n              [-53.05184208104025, -18.01669891430197],\n              [-53.042844277962644, -18.097250675187283],\n              [-53.05634647574334, -18.29366425689861],\n              [-53.034066201455914, -18.356000685057808],\n              [-52.98929691263872, -18.387267776094305],\n              [-52.9089648783243, -18.34723359487961],\n              [-52.78409426809212, -18.39177217079738],\n              [-52.788598662795195, -18.463095415705638],\n              [-52.84641970992277, -18.5346383871848],\n              [-52.891199985068496, -18.637250695786648],\n              [-52.86891971078107, -18.682030970932374],\n              [-52.761594267233804, -18.708793667265795],\n              [-52.6144433827142, -18.722065152147053],\n              [-52.4983398626602, -18.704289272562704],\n              [-52.34197144849209, -18.815888397913625],\n              [-52.27064820358382, -18.811405975867643],\n              [-52.09649292350282, -18.89622043222805],\n              [-52.06072143776325, -18.945263402848894],\n              [-51.91357055324363, -18.99004367799462],\n              [-51.84201659543595, -19.04809543802162],\n              [-51.641098619021534, -19.128427472336043],\n              [-51.542990705122776, -19.137414289085115],\n              [-51.40461789710989, -19.168483626207816],\n              [-51.310794651343315, -19.253298082568236],\n              [-51.13665035759087, -19.284565173604733],\n              [-51.034049035317565, -19.369401602622233],\n              [-50.96429683539111, -19.511366940069024]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 751,\n        \"fill\": \"#fff\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-51.888148188992545, -1.160375029096713],\n              [-51.98489379815186, -1.141698270571794],\n              [-52.05194336125652, -1.177469756311268],\n              [-52.13227539557096, -1.15070705997789],\n              [-52.23937012621877, -1.146202665274814],\n              [-52.35996705464731, -1.070375025663452],\n              [-52.39124513201233, -0.954271505609483],\n              [-52.36874513115396, -0.923004414573029],\n              [-52.40002320851909, -0.869457049249036],\n              [-52.51611574224455, -0.873939471295046],\n              [-52.507348652066355, -0.731073254907699],\n              [-52.52512453165065, -0.646236825890128],\n              [-52.60544557963652, -0.610465340150597],\n              [-52.63221926229852, -0.556917974826604],\n              [-52.627714867595444, -0.396275878854851],\n              [-52.699268825403124, -0.302452633088365],\n              [-52.82864383033842, -0.181844718331263],\n              [-52.913469273027374, -0.190853507737359],\n              [-52.97602542775746, -0.016698227656377],\n              [-53.016070595300675, 0.054625017251851],\n              [-53.007292518793975, 0.134957051566346],\n              [-53.04284427796267, 0.246556176917181],\n              [-53.127669720651625, 0.384928984930184],\n              [-53.14117191843229, 0.536803990723683],\n              [-53.11439823577035, 0.719957073882256],\n              [-53.132174115354644, 0.751004438347934],\n              [-53.26627324156391, 0.782282515712836],\n              [-53.41791753445807, 0.94315532458404],\n              [-53.466971491407435, 1.152851377505215],\n              [-53.40891973138042, 1.184129454870344],\n              [-53.44019780874544, 1.259957094481592],\n              [-53.53852544921506, 1.2421812148973],\n              [-53.5562903424709, 1.367282538028917],\n              [-53.650124574566064, 1.362778143325841],\n              [-53.6591223776436, 1.420829903352796],\n              [-53.739443425629474, 1.434101388234183],\n              [-53.75721930521382, 1.394056220690743],\n              [-53.89109870485214, 1.407327705572129],\n              [-53.92236579588871, 1.460875070896009],\n              [-54.00719123857766, 1.523431225626041],\n              [-54.07874519638534, 1.505655346041749],\n              [-54.083249591088475, 1.541207105210503],\n              [-54.172348715580995, 1.657299638935967],\n              [-54.20361580661756, 1.657299638935967],\n              [-54.364499601817215, 1.760131674108663],\n              [-54.49836801512703, 1.746629476328053],\n              [-54.578700049441466, 1.782400962067584],\n              [-54.73484873703876, 1.773403158989879],\n              [-54.76611582807516, 1.898504482121496],\n              [-54.7616224197007, 1.969827727029838],\n              [-54.792900497065716, 2.010103607472502],\n              [-54.752844343193885, 2.081426852380673],\n              [-54.78839610236264, 2.130480809330038],\n              [-54.71707285745441, 2.264579935539416],\n              [-54.73484873703876, 2.416224228433464],\n              [-54.71482066010287, 2.425002304940222],\n              [-54.70290049363251, 2.397997909378716],\n              [-54.69749521998881, 2.359754499716871],\n              [-54.661943460820055, 2.327575543411285],\n              [-54.61627329306225, 2.326674664470602],\n              [-54.59197153432274, 2.313853619059614],\n              [-54.550575048368614, 2.293155376082495],\n              [-54.51502328919992, 2.245452737543985],\n              [-54.43312020990368, 2.207429054452973],\n              [-54.293165370580425, 2.154332128599378],\n              [-54.22791756535702, 2.153431249658695],\n              [-54.167393881407634, 2.137006688485371],\n              [-54.13004036435774, 2.121032566782276],\n              [-54.08977547024364, 2.150497899937534],\n              [-53.94644782805739, 2.232631692133054],\n              [-53.8766956281309, 2.27830185989086],\n              [-53.82944342906268, 2.312952740118931],\n              [-53.79434210936438, 2.346032575365257],\n              [-53.76779913960178, 2.354799665543339],\n              [-53.750242986588376, 2.335002301507075],\n              [-53.734719304355565, 2.308448345415854],\n              [-53.68364386295406, 2.292924663183044],\n              [-53.56394781346614, 2.261877298717536],\n              [-53.509049129731295, 2.253099222210778],\n              [-53.43187017170902, 2.279422465402376],\n              [-53.365941214115935, 2.324202740548117],\n              [-53.33444341018003, 2.339726422780984],\n              [-53.28540043955917, 2.295176860534639],\n              [-53.25208989141339, 2.232181252662826],\n              [-53.229820603454584, 2.204957130530545],\n              [-53.18009648046399, 2.21125229678637],\n              [-53.08221927946465, 2.20180405423838],\n              [-53.00977542904491, 2.181775977302436],\n              [-52.96477542732828, 2.18357773518369],\n              [-52.90357059100916, 2.211483009685821],\n              [-52.87049075576283, 2.266601419991446],\n              [-52.783424102050844, 2.317226421922612],\n              [-52.70062014381409, 2.363577742050097],\n              [-52.65314821817498, 2.425672470981453],\n              [-52.58294557877821, 2.528954945624434],\n              [-52.55954469897932, 2.573054068400438],\n              [-52.554589864805905, 2.647750116171721],\n              [-52.455822771194505, 2.864202761147453],\n              [-52.41846925414461, 2.903797489220437],\n              [-52.39641969275658, 2.972198370735896],\n              [-52.35659425178426, 3.051629526109878],\n              [-52.35659425178426, 3.117778210273684],\n              [-52.32779908467023, 3.181674697086237],\n              [-52.271318369624964, 3.237023820291483],\n              [-52.229471444200556, 3.271674700519384],\n              [-52.16264160766684, 3.364608053674033],\n              [-52.11607056096835, 3.452355859755698],\n              [-51.9995166014441, 3.64697866991429],\n              [-51.99051879836645, 3.702108066548533],\n              [-51.944398191138305, 3.735176915466184],\n              [-51.92887450890555, 3.77702384089082],\n              [-51.87958983905668, 3.828549721762442],\n              [-51.827393792143766, 3.869506754575013],\n              [-51.80534423075568, 3.930030438524398],\n              [-51.767089834765216, 3.992575606925811],\n              [-51.683395983916284, 4.039608079423203],\n              [-51.652568346021496, 4.061207201340892],\n              [-51.55784422131438, 4.233780450111567],\n              [-51.54704466035554, 4.310948421805278],\n              [-51.46154905162541, 4.313881771526439],\n              [-51.32699948594586, 4.224782647033805],\n              [-51.21989376896943, 4.093605884217311],\n              [-51.07634640021229, 3.671730868124087],\n              [-51.05249508094312, 3.281804095437053],\n              [-50.99422359434516, 3.07750232983102],\n              [-50.82727534578913, 2.651804071404399],\n              [-50.81646479850173, 2.573054068400438],\n              [-50.78969111583979, 2.477879504222983],\n              [-50.73704462945648, 2.376849226931483],\n              [-50.67877314285863, 2.210351417845686],\n              [-50.676520945507036, 2.179523779951012],\n              [-50.71432490202727, 2.134073338763983],\n              [-50.65896479249358, 2.130931248800493],\n              [-50.608790230032696, 2.104157566138497],\n              [-50.57594110768588, 1.998622894143864],\n              [-50.53432489516075, 1.927299649235522],\n              [-50.45894769501973, 1.829653161135639],\n              [-50.304370052404295, 1.797704917729448],\n              [-50.18759636630915, 1.786004477830033],\n              [-50.05461784561146, 1.730655354624787],\n              [-49.95719108408235, 1.6597825491869],\n              [-49.881594157370444, 1.419929024412284],\n              [-49.9063463555803, 1.268954897559297],\n              [-49.898919597484564, 1.162980772422884],\n              [-49.93784415951632, 1.121353573569309],\n              [-50.04719108751567, 1.052051813113167],\n              [-50.0710424067849, 1.015148735533614],\n              [-50.294471370386134, 0.835829881036886],\n              [-50.343294614436104, 0.751004438347934],\n              [-50.46299066392402, 0.63737284221628],\n              [-50.58156610790047, 0.420480744098768],\n              [-50.755040235611716, 0.22247414474856],\n              [-50.81624507193084, 0.17253029518713],\n              [-50.91006831769744, 0.161049581858492],\n              [-50.96699947221293, 0.130232930292266],\n              [-51.10199947736277, -0.03133201727718],\n              [-51.28290036316986, -0.085099109171949],\n              [-51.299544650914186, -0.17892235493855],\n              [-51.40416745763952, -0.392672363092458],\n              [-51.496199931853425, -0.509457035516164],\n              [-51.55492185792161, -0.549051763589034],\n              [-51.70274290848249, -0.762340345944153],\n              [-51.72141966700741, -0.855504411998083],\n              [-51.720518788066784, -1.018387718992813],\n              [-51.81906615510729, -1.117857937631129],\n              [-51.888148188992545, -1.160375029096713]\n            ]\n          ],\n          [\n            [\n              [-50.36264153900231, 2.154551855170212],\n              [-50.341943296025136, 2.141730809759224],\n              [-50.291999446463706, 1.979506682477108],\n              [-50.298964778760705, 1.938549649664708],\n              [-50.39887445054069, 1.892879481906903],\n              [-50.456025331627075, 1.910424648591913],\n              [-50.508891544581275, 2.029450532038538],\n              [-50.491115664996926, 2.128679051448842],\n              [-50.41867181457707, 2.161528173795716],\n              [-50.36264153900231, 2.154551855170212]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 3224,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-60.72479281319322, -13.662948748219577],\n              [-60.659094568499526, -13.601513199001005],\n              [-60.38234895247378, -13.418590828741813],\n              [-60.35107087510873, -13.271220217651319],\n              [-60.27502350892651, -13.137340818012973],\n              [-60.270749827122856, -13.070302241236917],\n              [-60.194691474612085, -12.972194327338144],\n              [-60.083092349261165, -12.927414052192404],\n              [-60.04304718171794, -12.873866686868496],\n              [-60.00277130127529, -12.731000470481078],\n              [-59.908948055508716, -12.619401345130157],\n              [-59.82412261281975, -12.387194305022163],\n              [-59.89117217592437, -12.244547815205635],\n              [-59.88666778122129, -12.128444295151638],\n              [-59.93144805636702, -12.0523969289694],\n              [-59.98499542169094, -11.918517529331055],\n              [-60.06082306130229, -11.905246044449797],\n              [-60.10109894174494, -11.74436224925006],\n              [-60.10109894174494, -11.601496032862656],\n              [-60.025040589234166, -11.534677182657461],\n              [-59.908948055508716, -11.38280217686389],\n              [-60.00277130127529, -11.14633244128079],\n              [-60.069820864379906, -11.115043377587199],\n              [-60.17691559502774, -11.11954777229029],\n              [-60.27951691730104, -11.079271891847625],\n              [-60.38234895247378, -11.10155216613505],\n              [-60.440400712500775, -11.038996011404976],\n              [-60.440400712500775, -11.003444252236292],\n              [-61.471566523321, -10.998939857533202],\n              [-61.520620480270395, -10.954181555044556],\n              [-61.50734899538912, -10.878353915433223],\n              [-61.520620480270395, -10.789013091712633],\n              [-61.471566523321, -10.757746000676136],\n              [-61.502844600686046, -10.686422755767879],\n              [-61.471566523321, -10.436439836075536],\n              [-61.56540075541612, -10.26230652865162],\n              [-61.569674437219774, -10.061366579580124],\n              [-61.53412267805108, -9.994547729374943],\n              [-61.520620480270395, -9.860448603165707],\n              [-61.56540075541612, -9.726569203527362],\n              [-61.520620480270395, -9.704288929239937],\n              [-61.48057531272717, -9.63725035246388],\n              [-61.551898557635425, -9.463095072382885],\n              [-61.54739416293235, -9.409547707058962],\n              [-61.609950317662424, -9.320448582566343],\n              [-61.592174438078075, -9.239896821681043],\n              [-61.529618283348, -9.22662533679977],\n              [-61.55639196600997, -9.128297696330122],\n              [-61.529618283348, -8.998922691394853],\n              [-61.48484899453082, -8.914108235034448],\n              [-61.50734899538912, -8.847047685601282],\n              [-61.609950317662424, -8.766715651286859],\n              [-58.54746729068172, -8.74893977170251],\n              [-58.47165063739892, -8.690888011675511],\n              [-58.42665063568231, -8.523038884178831],\n              [-58.3971743161985, -8.41550470038922],\n              [-58.354415525504876, -8.27600030053631],\n              [-58.32877343468296, -8.050538866154383],\n              [-58.35352563289281, -7.905870891885741],\n              [-58.330344479664774, -7.780099402712935],\n              [-58.259471674226816, -7.67322439863598],\n              [-58.22391991505812, -7.574677031595442],\n              [-58.22370018848723, -7.484677028162224],\n              [-58.20187035367012, -7.414474388765456],\n              [-58.13662254844674, -7.338207296012342],\n              [-58.06079490883542, -7.409530540920628],\n              [-57.98047386084954, -7.530116483020606],\n              [-57.94919578348447, -7.619457306741182],\n              [-57.89564841816055, -7.690780551649439],\n              [-57.779544898106565, -8.048077928560417],\n              [-57.641172090093676, -8.231000298819694],\n              [-57.681447970536325, -8.436422669937187],\n              [-57.650169893171295, -8.498978824667262],\n              [-57.641172090093676, -8.615082344721259],\n              [-57.5786159353636, -8.757948561108677],\n              [-57.480519007793376, -8.79350032027736],\n              [-57.29736592463476, -8.958646810952203],\n              [-57.10094135659489, -9.052470056718775],\n              [-57.08316547701054, -9.079254725709276],\n              [-57.07416767393295, -9.18634945635705],\n              [-57.047393991270965, -9.231129731502847],\n              [-56.92679706284244, -9.24440121638412],\n              [-56.837697938349834, -9.271163912717554],\n              [-56.7706483752452, -9.39627622217769],\n              [-56.67682512947863, -9.378280616022494],\n              [-56.489398364516376, -9.467599467085961],\n              [-56.46262468185441, -9.467599467085961],\n              [-55.09214611394981, -9.56592710755561],\n              [-51.29752316646204, -9.78912535825745],\n              [-50.23484856537735, -9.842672723581373],\n              [-50.33744988765065, -10.034362184018732],\n              [-50.39527093477824, -10.176788947264384],\n              [-50.40269769287403, -10.25824158709031],\n              [-50.45467401321616, -10.388517470966192],\n              [-50.55074945633427, -10.567177145750264],\n              [-50.59912226091393, -10.689806544959453],\n              [-50.61037226134306, -11.000983314642411],\n              [-50.64524286814202, -11.162746016125666],\n              [-50.708018749443, -11.345668386384844],\n              [-50.716566113050305, -11.482689875986807],\n              [-50.67134638476281, -11.573832457588622],\n              [-50.66572138454822, -11.65190130822296],\n              [-50.717466991990904, -11.74910834318112],\n              [-50.66144770274457, -11.8535004370071],\n              [-50.653570505178465, -11.922340771664409],\n              [-50.67471918762584, -11.990082473467297],\n              [-50.667523142429445, -12.112030720306748],\n              [-50.631740670361324, -12.288646937981625],\n              [-50.629268746438925, -12.437379853811592],\n              [-50.66054682380397, -12.558207495139541],\n              [-50.65537226305969, -12.666862284440654],\n              [-50.613964790777004, -12.763388167029063],\n              [-50.56604242566766, -12.819638169174837],\n              [-50.48482049874116, -12.842599595831999],\n              [-50.56604242566766, -13.01473339146088],\n              [-50.59506830568114, -13.130814938857782],\n              [-50.59844110854419, -13.249401369162754],\n              [-50.66662226348885, -13.40960401199274],\n              [-50.79958979785803, -13.611862320489536],\n              [-50.86057490760629, -13.806056663834966],\n              [-50.85179683109956, -13.995043487450488],\n              [-50.86754023990326, -14.095172885801375],\n              [-50.908497272715636, -14.107323765171145],\n              [-50.94111568216306, -14.200927284366827],\n              [-50.977568320272354, -14.46328080999983],\n              [-51.11437008330344, -14.837892640696381],\n              [-51.18861569160444, -14.976496161608694],\n              [-51.24621701216114, -15.004401436110683],\n              [-51.286273166032885, -15.002819404800334],\n              [-51.47144773364363, -15.044215890754487],\n              [-51.5897924647206, -15.141422925712646],\n              [-51.66471922539134, -15.261349688099983],\n              [-51.69599730275638, -15.403315025546789],\n              [-51.73199950139539, -15.49039266558728],\n              [-51.77271483497981, -15.52280233479236],\n              [-51.78824950354115, -15.556991789221584],\n              [-51.778790274664686, -15.592763274961158],\n              [-51.79859862502968, -15.656220308631859],\n              [-51.84742186907965, -15.747121191005704],\n              [-51.961492918352974, -15.819125588283697],\n              [-52.14239380416005, -15.87267295360762],\n              [-52.25669556633282, -15.93566856147946],\n              [-52.308441173775506, -16.009254990067816],\n              [-52.36176881252855, -16.05829796068865],\n              [-52.416667496263386, -16.082379992857312],\n              [-52.53839601653196, -16.16855675395719],\n              [-52.53412233472831, -16.22660851398419],\n              [-52.66799074803811, -16.289142696057183],\n              [-52.68127321924793, -16.36046594096544],\n              [-52.6144433827142, -16.427526490398606],\n              [-52.679921900837, -16.576017707000588],\n              [-52.789049102265494, -16.70495325879409],\n              [-52.942714879611756, -16.813630020752285],\n              [-53.02416751943768, -16.910375629911584],\n              [-53.03316532251529, -16.995190086272004],\n              [-53.07794559766103, -17.094638332253155],\n              [-53.158266645646904, -17.208720367855037],\n              [-53.20259648132233, -17.304125644931958],\n              [-53.21137455782906, -17.409198891127687],\n              [-53.11506840181153, -17.85491424016162],\n              [-53.05184208104025, -18.01669891430197],\n              [-53.065344278820945, -18.021203309005045],\n              [-53.145665326806835, -18.030190125754118],\n              [-53.306318409107135, -17.99892303471762],\n              [-53.49374517406939, -18.01241424616977],\n              [-53.60534429942031, -17.994418640014544],\n              [-53.72594122784885, -18.007931824123787],\n              [-53.8688184305648, -17.945375669393698],\n              [-53.97592414754119, -17.93186248528447],\n              [-53.98941535899334, -17.900595394247972],\n              [-53.859820627487196, -17.69088835499828],\n              [-53.752714910510804, -17.641845384377447],\n              [-53.68139166560255, -17.25776333847587],\n              [-53.74394782033262, -17.253500643000763],\n              [-53.81977545994397, -17.307048008324685],\n              [-53.949150464879224, -17.45870328754738],\n              [-54.03846931594272, -17.512250652871302],\n              [-54.08324959108846, -17.588298019053525],\n              [-54.14557503291911, -17.6283541729253],\n              [-54.23489388398259, -17.637340989674357],\n              [-54.31971932667156, -17.673112475413944],\n              [-54.391273284479254, -17.673112475413944],\n              [-54.42232064894486, -17.579289229647358],\n              [-54.52514169778905, -17.512250652871302],\n              [-54.69929697787005, -17.516755047574378],\n              [-54.779618025855925, -17.557030928017028],\n              [-54.81089610322097, -17.601569503934783],\n              [-54.899995227713575, -17.65061247455563],\n              [-55.07415050779457, -17.681901538249207],\n              [-55.181245238442415, -17.686405932952297],\n              [-55.33762463893906, -17.58379362435045],\n              [-55.53404920697895, -17.503483562693106],\n              [-55.60986586026175, -17.391862464685104],\n              [-55.78852553504582, -17.351608556899535],\n              [-55.833075097292124, -17.311332676456885],\n              [-55.984950103085694, -17.266772127882035],\n              [-56.02499527062892, -17.213224762558113],\n              [-56.101042636811144, -17.18644009356761],\n              [-56.248424234230185, -17.21772915726119],\n              [-56.32874528221606, -17.284548007466384],\n              [-56.435840012863906, -17.320319493205957],\n              [-56.489398364516376, -17.30254361362161],\n              [-56.6680470529719, -17.320319493205957],\n              [-56.745215024665626, -17.316957676671464],\n              [-56.789995299811366, -17.386017737899635],\n              [-56.8874220613404, -17.517875653085866],\n              [-56.98012470159547, -17.594823898208716],\n              [-57.0797926741475, -17.73432829806164],\n              [-57.19859883102335, -17.81239714869598],\n              [-57.36982076138307, -17.875612483138696],\n              [-57.41932515780276, -17.882138362293887],\n              [-57.471521204715756, -17.900595394247972],\n              [-57.493790492674634, -17.869548029782365],\n              [-57.600896209651026, -17.816000664458443],\n              [-57.632174287016056, -17.739953298276205],\n              [-57.7527712154446, -17.734548024632517],\n              [-57.75322165491491, -17.734767751203393],\n              [-57.78021506414774, -17.67177214333155],\n              [-57.78877341408359, -17.573005049720138],\n              [-57.83242209738928, -17.51203092630041],\n              [-57.90509666070848, -17.53226774347864],\n              [-57.990822982338045, -17.512931805241024],\n              [-58.20547386943258, -17.36307828389957],\n              [-58.34766991977881, -17.28206509721541],\n              [-58.39604272435845, -17.234362458676955],\n              [-58.417422119705265, -17.08046596843127],\n              [-58.45971948460003, -16.91081508305335],\n              [-58.47816553022557, -16.70066859066189],\n              [-58.47051904555887, -16.650263315301586],\n              [-58.35037255660065, -16.490741824841322],\n              [-58.35082299607096, -16.410190063956023],\n              [-58.34047387458243, -16.339987424559254],\n              [-58.345648435326694, -16.284418574783217],\n              [-58.375344481381376, -16.283517695842605],\n              [-58.42371728596103, -16.307819454582145],\n              [-58.49662256217965, -16.32671593967798],\n              [-58.538019048133805, -16.32829797098833],\n              [-58.957191427405206, -16.313224728225833],\n              [-59.43419584013273, -16.29588830178325],\n              [-59.831098931445254, -16.281715937961366],\n              [-60.17557526294536, -16.26934533202072],\n              [-60.187275702844815, -16.13210411584788],\n              [-60.20662262741098, -15.901918560192001],\n              [-60.22034455176255, -15.738573827398397],\n              [-60.24239411315055, -15.479604090956983],\n              [-60.38054719459254, -15.318280842615493],\n              [-60.53040071593401, -15.143224683593871],\n              [-60.58326692888819, -15.09822468187727],\n              [-60.4019156036108, -15.092819408233566],\n              [-60.27344147761616, -15.088776439329337],\n              [-60.298874828195736, -14.618517632327894],\n              [-60.33801911679835, -14.57059526721855],\n              [-60.372669997026435, -14.41872026142498],\n              [-60.39629060339624, -14.332763226895977],\n              [-60.46019807653724, -14.263022013298055],\n              [-60.47459016693, -14.184733436092841],\n              [-60.462900713359076, -14.132526402851298],\n              [-60.42801912023158, -14.099897007075342],\n              [-60.40506867990297, -14.019125519619152],\n              [-60.422394120017, -13.937892606364102],\n              [-60.46019807653724, -13.86230666598074],\n              [-60.50654939666477, -13.789840842903885],\n              [-60.59519808168707, -13.745302266986116],\n              [-60.722320889270804, -13.664289080301955],\n              [-60.72479281319322, -13.662948748219577]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 11082,\n        \"fill\": \"#999\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-54.24254036864929, -24.046918870899106],\n              [-54.1246460770426, -23.978517989383576],\n              [-54.05016975584219, -23.82281974125665],\n              [-53.99549079867822, -23.570156157399552],\n              [-53.90752326602565, -23.407031151176824],\n              [-53.77117194246489, -23.322194722159324],\n              [-53.67734869669832, -23.17348377898645],\n              [-53.61996710271251, -23.00113025678668],\n              [-53.480693415759006, -22.852397340956728],\n              [-53.272348681248786, -22.752048216034964],\n              [-53.11619999365156, -22.639987664885183],\n              [-53.044415322944445, -22.636406121779814],\n              [-52.94924075876696, -22.570466177858123],\n              [-52.69477541702862, -22.601513542323772],\n              [-52.6144433827142, -22.57046617785815],\n              [-52.52062013694763, -22.615026726433],\n              [-52.44479249733628, -22.601513542323772],\n              [-52.315197765830135, -22.619531121136077],\n              [-52.26165040050621, -22.601513542323772],\n              [-52.21708985193136, -22.641789422766422],\n              [-52.16354248660744, -22.601513542323772],\n              [-52.14127319864856, -22.543483754953854],\n              [-52.06521484613779, -22.52120348066643],\n              [-51.984893798151916, -22.54796617699985],\n              [-51.873294672800995, -22.610522331729925],\n              [-51.743919667865725, -22.619531121136077],\n              [-51.69464598434547, -22.664069697053776],\n              [-51.641098619021534, -22.650798212172575],\n              [-51.54749509982585, -22.686349971341272],\n              [-51.35534421358966, -22.65079821217256],\n              [-51.181419646408045, -22.739897336665194],\n              [-51.00277095795252, -22.793664428559993],\n              [-50.88217402952398, -22.820449097550494],\n              [-50.78406611562522, -22.945319707782687],\n              [-50.72602534192677, -22.949824102485763],\n              [-50.62769770145712, -22.923039433495262],\n              [-50.43127313341722, -22.945319707782687],\n              [-50.368947691586584, -22.91405261674619],\n              [-50.29290032540439, -22.95432849718884],\n              [-50.12324944002643, -22.94081531307961],\n              [-49.97159416080376, -22.914052616746176],\n              [-49.958091963023065, -22.963315313937912],\n              [-49.91354240077675, -22.985595588225337],\n              [-49.909048992402205, -23.034638558846183],\n              [-49.73040030394668, -23.105983776411534],\n              [-49.636796784751, -23.257858782205105],\n              [-49.614296783892684, -23.409733787998675],\n              [-49.65457266433535, -23.507819729240353],\n              [-49.605518707385954, -23.641699128878713],\n              [-49.551971342062075, -23.71324210035783],\n              [-49.56974722164637, -23.833850015114933],\n              [-49.60102529901141, -23.86489737958054],\n              [-49.40909413934608, -24.083832934807262],\n              [-49.33304677316386, -24.14186272217718],\n              [-49.33754018153837, -24.21320793974253],\n              [-49.274995013136845, -24.315798275687285],\n              [-49.22594105618748, -24.338298276545572],\n              [-49.23944325396815, -24.418630310860024],\n              [-49.31076649887643, -24.530229436210945],\n              [-49.29749501399516, -24.66410883584929],\n              [-49.21694325310986, -24.690871532182697],\n              [-49.09207264287767, -24.68636713747962],\n              [-49.025023079773064, -24.668591257895272],\n              [-48.82859851173316, -24.66410883584922],\n              [-48.7795445547838, -24.695375926885774],\n              [-48.61439806410894, -24.681862742776545],\n              [-48.48929674097735, -24.74441889750662],\n              [-48.54284410630126, -24.81147944693977],\n              [-48.5653441071596, -25.056957971928966],\n              [-48.51179674183564, -25.08372066826246],\n              [-48.41346910136599, -24.958850058030265],\n              [-48.26609849027551, -25.034677697641598],\n              [-48.23054673110681, -25.012397423354116],\n              [-48.18576645596107, -25.19081539891029],\n              [-48.0919432101945, -25.23559567405603],\n              [-48.08766952839085, -25.28015622263088],\n              [-48.07754013347321, -25.29026364489144],\n              [-48.202641456604795, -25.41649655986309],\n              [-48.242466897577145, -25.403225074981833],\n              [-48.185997168860496, -25.309841282357027],\n              [-48.2735252483713, -25.306237766594563],\n              [-48.402449813836256, -25.27204831216534],\n              [-48.45846910308262, -25.31074216129764],\n              [-48.42764146518789, -25.403225074981833],\n              [-48.47602525609608, -25.443039529625636],\n              [-48.56422350164806, -25.447543924328713],\n              [-48.64409411016365, -25.436513650470445],\n              [-48.731841916245315, -25.368793921324638],\n              [-48.692247188172416, -25.491423320533826],\n              [-48.50707262056167, -25.521350079487945],\n              [-48.42989366253943, -25.55015623293056],\n              [-48.401098495425344, -25.59739744567017],\n              [-48.5450963036528, -25.815871575098043],\n              [-48.66569323208134, -25.844458001969784],\n              [-48.67896471696261, -25.87526366720742],\n              [-48.612816032798605, -25.875043940636544],\n              [-48.57637438101784, -25.93535888434363],\n              [-48.58537218409546, -25.9862036128457],\n              [-48.65016954984853, -25.97225097559469],\n              [-48.91791736279666, -25.97651367106981],\n              [-48.944691045458626, -26.007802734763388],\n              [-49.109848522462016, -25.99453124988213],\n              [-49.21266957130621, -26.030302735621696],\n              [-49.29749501399516, -26.106130375233022],\n              [-49.45364370159237, -26.16866455730603],\n              [-49.48941518733196, -26.22223389528704],\n              [-49.596520904308335, -26.22223389528704],\n              [-49.72162222743995, -26.15967774055696],\n              [-49.7526695919056, -26.123906254817314],\n              [-49.882275309740265, -26.039069825799885],\n              [-49.949094159945446, -26.01230712946647],\n              [-50.19029900313106, -26.05258300990912],\n              [-50.315169613363224, -26.05258300990912],\n              [-50.369167418157474, -26.085871585397726],\n              [-50.45804681607919, -26.02579834091862],\n              [-50.54287225876814, -26.02579834091862],\n              [-50.64569330761233, -26.07035888949347],\n              [-50.73502314500439, -26.23100098546523],\n              [-50.77057490417306, -26.22223389528704],\n              [-50.90016963567922, -26.28026368265695],\n              [-50.94471919792551, -26.244492196917378],\n              [-51.074094202860806, -26.23550538016832],\n              [-51.24824948294179, -26.347104505519212],\n              [-51.28852536338445, -26.423151871701464],\n              [-51.2795165739783, -26.49897951131271],\n              [-51.23947140643509, -26.606074241960584],\n              [-51.28402096868135, -26.650854517106367],\n              [-51.422393776694236, -26.699897487727206],\n              [-51.50271482468011, -26.601569847257558],\n              [-51.873294672800995, -26.601569847257558],\n              [-52.00717407243934, -26.583793967673216],\n              [-52.19909424577614, -26.44991456803487],\n              [-52.458074968546086, -26.43191896187964],\n              [-52.54290041123505, -26.40065187084314],\n              [-52.64121706537617, -26.40065187084309],\n              [-52.6724951427412, -26.378371596555716],\n              [-52.81537234545715, -26.33831544268395],\n              [-52.913469273027374, -26.365100111674394],\n              [-52.99379032101325, -26.351608900222303],\n              [-53.12339603884794, -26.369604506377534],\n              [-53.27954472644517, -26.26226807650172],\n              [-53.355372366056514, -26.239987802214294],\n              [-53.458193414900734, -26.2890527454922],\n              [-53.516245174927704, -26.289052745492228],\n              [-53.66339605944734, -26.25776368179862],\n              [-53.6699219386025, -26.258005381026635],\n              [-53.671273257013425, -26.225156258679768],\n              [-53.74687018372535, -26.083630374374735],\n              [-53.823148262806995, -25.959638670426074],\n              [-53.86409430929085, -25.748832998321973],\n              [-53.891098704852226, -25.668940417149315],\n              [-53.9547754650938, -25.647582994459597],\n              [-54.012365799321955, -25.577819808204595],\n              [-54.08504036264114, -25.57197508141914],\n              [-54.11924080339891, -25.545190412428624],\n              [-54.15457283599672, -25.52315183736917],\n              [-54.206098716868524, -25.52967771652436],\n              [-54.25019783964453, -25.570393050108777],\n              [-54.33187020604133, -25.57197508141914],\n              [-54.38339608691314, -25.588630355491986],\n              [-54.44391977086255, -25.625082993601296],\n              [-54.50152109141925, -25.60820799295756],\n              [-54.53774301662912, -25.576479476122216],\n              [-54.61582285359201, -25.576018050323356],\n              [-54.61064829284774, -25.43269040813709],\n              [-54.47316537744693, -25.22030270472264],\n              [-54.43627328619587, -25.121293911883257],\n              [-54.454049165780205, -25.065263636308373],\n              [-54.41309213296782, -24.867487749857574],\n              [-54.31297372094548, -24.52820795175883],\n              [-54.28102547753926, -24.30613030656849],\n              [-54.31724740274913, -24.201276786943637],\n              [-54.318368008260634, -24.12815178415414],\n              [-54.26684212738883, -24.065815355994943],\n              [-54.2418702026081, -24.047380296697952],\n              [-54.24254036864929, -24.046918870899106]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 2852,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-47.301971256231354, -16.03918174902192],\n              [-47.85547347461139, -16.043664171067917],\n              [-48.18127304758653, -16.03918174902192],\n              [-48.252816019065676, -16.03017295961577],\n              [-48.234820412910466, -15.958849714707497],\n              [-48.279589701727645, -15.838241799950424],\n              [-48.203773048444845, -15.73543173743478],\n              [-48.23932480761354, -15.69087118885993],\n              [-48.18127304758653, -15.489953212445528],\n              [-47.76614363721936, -15.489953212445528],\n              [-47.422348458089004, -15.498940029194586],\n              [-47.41357038158225, -15.534733487591254],\n              [-47.30624493803501, -15.588280852915176],\n              [-47.30624493803501, -15.708647068444279],\n              [-47.35102521318072, -15.833737405247348],\n              [-47.359792303358915, -15.985612411040918],\n              [-47.301971256231354, -16.03918174902192]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 6523,\n        \"fill\": \"#999\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-50.96429683539111, -19.511366940069024],\n              [-51.034049035317565, -19.369401602622233],\n              [-51.13665035759087, -19.284565173604733],\n              [-51.310794651343315, -19.253298082568236],\n              [-51.40461789710989, -19.168483626207816],\n              [-51.542990705122776, -19.137414289085115],\n              [-51.641098619021534, -19.128427472336043],\n              [-51.84201659543595, -19.04809543802162],\n              [-51.91357055324363, -18.99004367799462],\n              [-52.06072143776325, -18.945263402848894],\n              [-52.09649292350282, -18.89622043222805],\n              [-52.27064820358382, -18.811405975867643],\n              [-52.34197144849209, -18.815888397913625],\n              [-52.4983398626602, -18.704289272562704],\n              [-52.6144433827142, -18.722065152147053],\n              [-52.761594267233804, -18.708793667265795],\n              [-52.86891971078107, -18.682030970932374],\n              [-52.891199985068496, -18.637250695786648],\n              [-52.84641970992277, -18.5346383871848],\n              [-52.788598662795195, -18.463095415705638],\n              [-52.78409426809212, -18.39177217079738],\n              [-52.9089648783243, -18.34723359487961],\n              [-52.98929691263872, -18.387267776094305],\n              [-53.034066201455914, -18.356000685057808],\n              [-53.05634647574334, -18.29366425689861],\n              [-53.042844277962644, -18.097250675187283],\n              [-53.05184208104025, -18.01669891430197],\n              [-53.11506840181153, -17.85491424016162],\n              [-53.21137455782906, -17.409198891127687],\n              [-53.20259648132233, -17.304125644931958],\n              [-53.158266645646904, -17.208720367855037],\n              [-53.07794559766103, -17.094638332253155],\n              [-53.03316532251529, -16.995190086272004],\n              [-53.02416751943768, -16.910375629911584],\n              [-52.942714879611756, -16.813630020752285],\n              [-52.789049102265494, -16.70495325879409],\n              [-52.679921900837, -16.576017707000588],\n              [-52.6144433827142, -16.427526490398606],\n              [-52.68127321924793, -16.36046594096544],\n              [-52.66799074803811, -16.289142696057183],\n              [-52.53412233472831, -16.22660851398419],\n              [-52.53839601653196, -16.16855675395719],\n              [-52.416667496263386, -16.082379992857312],\n              [-52.36176881252855, -16.05829796068865],\n              [-52.308441173775506, -16.009254990067816],\n              [-52.25669556633282, -15.93566856147946],\n              [-52.14239380416005, -15.87267295360762],\n              [-51.961492918352974, -15.819125588283697],\n              [-51.84742186907965, -15.747121191005704],\n              [-51.79859862502968, -15.656220308631859],\n              [-51.778790274664686, -15.592763274961158],\n              [-51.78824950354115, -15.556991789221584],\n              [-51.77271483497981, -15.52280233479236],\n              [-51.73199950139539, -15.49039266558728],\n              [-51.69599730275638, -15.403315025546789],\n              [-51.66471922539134, -15.261349688099983],\n              [-51.5897924647206, -15.141422925712646],\n              [-51.47144773364363, -15.044215890754487],\n              [-51.286273166032885, -15.002819404800334],\n              [-51.24621701216114, -15.004401436110683],\n              [-51.18861569160444, -14.976496161608694],\n              [-51.11437008330344, -14.837892640696381],\n              [-50.977568320272354, -14.46328080999983],\n              [-50.94111568216306, -14.200927284366827],\n              [-50.908497272715636, -14.107323765171145],\n              [-50.86754023990326, -14.095172885801375],\n              [-50.85179683109956, -13.995043487450488],\n              [-50.86057490760629, -13.806056663834966],\n              [-50.79958979785803, -13.611862320489536],\n              [-50.66662226348885, -13.40960401199274],\n              [-50.59844110854419, -13.249401369162754],\n              [-50.59506830568114, -13.130814938857782],\n              [-50.56604242566766, -13.01473339146088],\n              [-50.48482049874116, -12.842599595831999],\n              [-50.3923485713855, -12.617138161450072],\n              [-50.29559197589765, -12.490026340194888],\n              [-50.16374504703998, -12.38765573082101],\n              [-50.13674065147859, -12.476513156085659],\n              [-50.2035704880123, -12.570358374509311],\n              [-50.19929680620865, -12.65517283086973],\n              [-50.27512444582001, -12.789052230508076],\n              [-50.270620051116936, -12.89186229302372],\n              [-50.23934197375189, -12.931918446895494],\n              [-50.05191520878964, -13.021237297958976],\n              [-49.97159416080376, -13.025741692662066],\n              [-49.91354240077675, -13.070302241236917],\n              [-49.68583975537183, -13.177396971884747],\n              [-49.520693264697, -13.199896972743062],\n              [-49.38232045668411, -13.248939943363894],\n              [-49.3598204558258, -13.132858395966991],\n              [-49.29749501399516, -13.003483391031722],\n              [-49.136622205123956, -12.735504865184154],\n              [-49.016245003266306, -12.65517283086973],\n              [-48.998249397111096, -12.748996076636303],\n              [-48.92691516587428, -12.784547835805],\n              [-48.824094117030086, -12.873866686868496],\n              [-48.797320434368146, -12.927414052192404],\n              [-48.80182482907122, -12.998978996328646],\n              [-48.766273069902525, -13.097064937570323],\n              [-48.76176867519945, -13.208664062921244],\n              [-48.77504016008072, -13.351552251965742],\n              [-48.73926867434113, -13.38281934300224],\n              [-48.685721309017225, -13.338280767084484],\n              [-48.65444323165218, -13.177396971884747],\n              [-48.587624381447, -13.155116697597322],\n              [-48.480518664470594, -13.195392578039986],\n              [-48.36891953911967, -13.186405761290914],\n              [-48.22604233640374, -13.092582515524342],\n              [-48.16371689457307, -13.102470211214026],\n              [-48.17496689500223, -13.180780761076335],\n              [-48.07416733061015, -13.195392578039986],\n              [-48.002844085701895, -13.248939943363894],\n              [-47.93579452259729, -13.244457521317912],\n              [-47.85547347461139, -13.293500491938744],\n              [-47.681318194530405, -13.356056646668833],\n              [-47.65904890657151, -13.320263188272165],\n              [-47.72159407497307, -13.150612302894245],\n              [-47.64104231408774, -13.115082516382643],\n              [-47.55644758429821, -13.244457521317912],\n              [-47.440344064244215, -13.248939943363894],\n              [-47.292973453153735, -13.199896972743062],\n              [-47.09204449041076, -13.097064937570323],\n              [-46.971447561982245, -13.070302241236917],\n              [-46.82857035926628, -13.070302241236917],\n              [-46.75274271965495, -13.034750482068219],\n              [-46.6456479890071, -12.922931630146422],\n              [-46.59208963735463, -12.89186229302372],\n              [-46.43572122318653, -12.847103990535075],\n              [-46.30184182354819, -12.833832505653803],\n              [-46.234792260443555, -12.798039047257149],\n              [-46.087641375923965, -12.914142567311146],\n              [-46.0741501644718, -12.976698722041192],\n              [-46.150197530654054, -13.025741692662052],\n              [-46.18124489511965, -13.159621092300398],\n              [-46.176971213315994, -13.217672852327382],\n              [-46.08314796754942, -13.253444338066984],\n              [-46.09641945243072, -13.351552251965757],\n              [-46.18574928982272, -13.405099617289665],\n              [-46.270574732511704, -13.655082536981979],\n              [-46.26179665600495, -13.869491724848501],\n              [-46.22152077556231, -13.998866729783842],\n              [-46.17246681861292, -14.074914095966065],\n              [-46.12769752979574, -14.18203079927099],\n              [-46.03836769240368, -14.253354044179261],\n              [-46.01159400974177, -14.298112346667835],\n              [-45.92249488524911, -14.35168168464891],\n              [-45.96254005279235, -14.467763232045797],\n              [-45.96254005279235, -14.534604054908087],\n              [-45.91349708217152, -14.690983455404748],\n              [-45.93127296175584, -14.749013242774652],\n              [-46.02509620752241, -14.869401430960849],\n              [-46.078643572846346, -14.922948796284771],\n              [-46.19024269819727, -14.93644000773692],\n              [-46.297348415173644, -14.909677311403499],\n              [-46.31534402132888, -14.847121156673424],\n              [-46.38666726623714, -14.771293517062077],\n              [-46.51604227117241, -14.713241757035078],\n              [-46.58309183427701, -14.793573791349502],\n              [-46.556318151615045, -14.869401430960849],\n              [-46.57859842590247, -14.914181706106575],\n              [-46.547320348537454, -15.039052316338768],\n              [-46.63665018592948, -15.070319407375266],\n              [-46.7349668400706, -15.016772042051343],\n              [-46.833074753969356, -15.012267647348267],\n              [-46.89111552766781, -15.04803913308784],\n              [-46.93139140811047, -15.226698807871912],\n              [-46.89111552766781, -15.239970292753185],\n              [-46.85534404192825, -15.324806721770685],\n              [-46.93589580281355, -15.431901452418515],\n              [-46.93139140811047, -15.543500577769436],\n              [-46.868846239708944, -15.592763274961158],\n              [-46.833074753969356, -15.8427461946535],\n              [-46.86434184500584, -15.882802348525274],\n              [-47.07854229263009, -15.936349713849197],\n              [-47.127815976150345, -15.923078228967924],\n              [-47.230417298423646, -16.034677354318845],\n              [-47.301971256231354, -16.03918174902192],\n              [-47.359792303358915, -15.985612411040918],\n              [-47.35102521318072, -15.833737405247348],\n              [-47.30624493803501, -15.708647068444279],\n              [-47.30624493803501, -15.588280852915176],\n              [-47.41357038158225, -15.534733487591254],\n              [-47.422348458089004, -15.498940029194586],\n              [-47.76614363721936, -15.489953212445528],\n              [-48.18127304758653, -15.489953212445528],\n              [-48.23932480761354, -15.69087118885993],\n              [-48.203773048444845, -15.73543173743478],\n              [-48.279589701727645, -15.838241799950424],\n              [-48.234820412910466, -15.958849714707497],\n              [-48.252816019065676, -16.03017295961577],\n              [-48.18127304758653, -16.03918174902192],\n              [-47.85547347461139, -16.043664171067917],\n              [-47.301971256231354, -16.03918174902192],\n              [-47.33752301540002, -16.146276479669766],\n              [-47.32424054419022, -16.22660851398419],\n              [-47.35102521318072, -16.30241418093844],\n              [-47.431346261166595, -16.409750610814257],\n              [-47.45361554912549, -16.494345340603786],\n              [-47.404572578504656, -16.570392706786023],\n              [-47.26619977049177, -16.6597335305066],\n              [-47.15909405351539, -16.918483540377125],\n              [-47.15009625043777, -16.976513327747043],\n              [-47.230417298423646, -17.025797997595845],\n              [-47.2126414188393, -17.07484096821669],\n              [-47.310749332738084, -17.141901517649842],\n              [-47.422348458089004, -17.27127652258511],\n              [-47.45361554912549, -17.34710416219646],\n              [-47.49839582427123, -17.32932828261211],\n              [-47.52944318873682, -17.454198892844303],\n              [-47.458119943828564, -17.52574186432345],\n              [-47.40906598687917, -17.49897916799003],\n              [-47.28846905845066, -17.548022138610875],\n              [-47.27069317886631, -17.66863005336795],\n              [-47.328744938893294, -17.744457692979296],\n              [-47.35551862155526, -17.824767754636625],\n              [-47.34652081847764, -17.878315119960547],\n              [-47.27947125537304, -18.061479189447695],\n              [-47.31884625687508, -18.083298037936274],\n              [-47.44641950392909, -18.170595404547655],\n              [-47.786171714155245, -18.37940156485672],\n              [-47.92881820397179, -18.445319536121303],\n              [-48.01791732846439, -18.434530961490992],\n              [-48.226943215344335, -18.340246289925574],\n              [-48.95369983486478, -18.325854199532813],\n              [-49.10826649115165, -18.388388381605793],\n              [-49.17937000948905, -18.404823929107764],\n              [-49.24754017810517, -18.46850068934934],\n              [-49.33665028892631, -18.584823935974214],\n              [-49.41674062401276, -18.602819542129453],\n              [-49.48829458182047, -18.522048054673263],\n              [-49.55332266047296, -18.51011690187437],\n              [-49.611824859970255, -18.56682832981899],\n              [-49.67797354413426, -18.6001169053076],\n              [-49.788671790544555, -18.614530968357457],\n              [-49.96012443380371, -18.61633272623868],\n              [-50.093773120542636, -18.641293664690863],\n              [-50.24699944474713, -18.690116908740833],\n              [-50.36826653921685, -18.768647185174018],\n              [-50.457596376608876, -18.876642794762475],\n              [-50.49899286256303, -18.95315158674356],\n              [-50.48977533291455, -19.0204318627476],\n              [-50.53162225833901, -19.087030986381905],\n              [-50.57752313899624, -19.112233624062057],\n              [-50.641870065278994, -19.118517803989278],\n              [-50.71319331018725, -19.160595442313166],\n              [-50.791943313191325, -19.238444566376614],\n              [-50.84391963353346, -19.310888416796388],\n              [-50.868891558314175, -19.377487540430693],\n              [-50.87092402909482, -19.423849846886768],\n              [-50.86416743704021, -19.437802484137762],\n              [-50.88082271111307, -19.459181879484575],\n              [-50.92379024204902, -19.464125727329417],\n              [-50.96429683539111, -19.511366940069024]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 1497,\n        \"fill\": \"#fff\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-50.23484856537735, -9.842672723581373],\n              [-50.17521477404, -9.730172719289826],\n              [-50.08409416509528, -9.421918312999608],\n              [-49.97924064547044, -9.22009945764458],\n              [-49.82984854992782, -9.022103844622904],\n              [-49.707900303088365, -8.894970050710626],\n              [-49.61294546548177, -8.839181474363713],\n              [-49.50269765854176, -8.70866389125986],\n              [-49.378947653821115, -8.498297672297554],\n              [-49.28264149780355, -8.301422664787339],\n              [-49.22684193512808, -8.139418264076113],\n              [-49.189949843877, -7.994970016378346],\n              [-49.172393690863544, -7.867396769324316],\n              [-49.22031605597289, -7.752194128210874],\n              [-49.333947652104456, -7.649142366467331],\n              [-49.34047353125965, -7.510099392413281],\n              [-49.2396739668676, -7.334823506820669],\n              [-49.19512440462128, -7.168556410634423],\n              [-49.209747207913466, -7.005651130982585],\n              [-49.07947132403763, -6.856237062782895],\n              [-48.80541735850514, -6.71831469424032],\n              [-48.65287218667038, -6.595707267688226],\n              [-48.62204454877565, -6.488590564383287],\n              [-48.57996691045176, -6.414125229511413],\n              [-48.52732042406845, -6.3722673177584],\n              [-48.47061998245238, -6.353370832662506],\n              [-48.410096298502964, -6.357655500794763],\n              [-48.3911998134071, -6.308832256744807],\n              [-48.413699814265414, -6.207340553654447],\n              [-48.38984849499619, -6.141862035531645],\n              [-48.319415142699995, -6.112396702376316],\n              [-48.29669541527082, -6.067396700659771],\n              [-48.32121690058125, -6.006642303810906],\n              [-48.30704453675935, -5.965926970226505],\n              [-48.25439805037604, -5.945228727249429],\n              [-48.24540024729842, -5.888517299304809],\n              [-48.28004014119796, -5.795814659049739],\n              [-48.25867173217969, -5.723590535200856],\n              [-48.18127304758653, -5.672064654329048],\n              [-48.159223486198584, -5.619198441374863],\n              [-48.19274277458658, -5.565431349480036],\n              [-48.23144761004744, -5.533241406845832],\n              [-48.27531601992399, -5.522452832215549],\n              [-48.31717393167699, -5.486219920677129],\n              [-48.35699937264934, -5.424344918316791],\n              [-48.42156602550301, -5.398483100923954],\n              [-48.51111558946593, -5.408151070042777],\n              [-48.597523063465246, -5.398702827494787],\n              [-48.721492794756784, -5.355944036801247],\n              [-48.721492794756784, -5.355724310230372],\n              [-48.7219432342271, -5.355043157860635],\n              [-48.630591912382954, -5.330301945979329],\n              [-48.574341910237166, -5.28822430765544],\n              [-48.52349718173511, -5.220504578509647],\n              [-48.45824937651173, -5.180887877779639],\n              [-48.378148055096744, -5.169418150779563],\n              [-48.28162217250832, -5.189457214043955],\n              [-48.16889145531735, -5.240741395687863],\n              [-48.05954452731797, -5.263021669975288],\n              [-47.95311996271133, -5.256276064249221],\n              [-47.88449935462489, -5.285521670833603],\n              [-47.85389144330105, -5.350780462385529],\n              [-47.763221273826645, -5.407250191102179],\n              [-47.61246687354458, -5.454952829640604],\n              [-47.519994946188945, -5.506478710512454],\n              [-47.48579450543113, -5.561146681347864],\n              [-47.44484845894729, -5.749913778392497],\n              [-47.39714582040884, -6.072340548504613],\n              [-47.405473457445254, -6.42109056180837],\n              [-47.47049054976921, -6.795944091732892],\n              [-47.53708967340353, -7.027250252900274],\n              [-47.605721267818495, -7.11476734608253],\n              [-47.66534407282728, -7.16719410589495],\n              [-47.715969074758476, -7.184750258908423],\n              [-47.717089680269964, -7.22210377595826],\n              [-47.66894758858976, -7.279694110186497],\n              [-47.61179670750337, -7.301512958675062],\n              [-47.54586774991026, -7.287582294081119],\n              [-47.506943187878534, -7.305797626807262],\n              [-47.4950230214082, -7.356202902167524],\n              [-47.498395824271256, -7.449806421363292],\n              [-47.45811994382859, -7.534620877723682],\n              [-47.41357038158225, -7.530116483020592],\n              [-47.34652081847764, -7.659733187183832],\n              [-47.303542301213156, -7.66287527714745],\n              [-47.27947125537304, -7.731056432092103],\n              [-47.15009625043777, -7.856146768895158],\n              [-47.07854229263012, -7.976512984424289],\n              [-47.016216850799424, -8.04357353385734],\n              [-46.98494975976294, -8.03906913915435],\n              [-46.868846239708944, -7.958737104839884],\n              [-46.74374491657733, -7.922965619100353],\n              [-46.574094031199394, -7.905189739516004],\n              [-46.48926858851044, -7.963241499543003],\n              [-46.46699930055155, -8.070358202847899],\n              [-46.50277078629114, -8.172948538792639],\n              [-46.50727518099421, -8.27578057396542],\n              [-46.5430466667338, -8.320319149883176],\n              [-46.50277078629114, -8.396146789494537],\n              [-46.658919473888375, -8.396146789494537],\n              [-46.79301860009758, -8.436422669937187],\n              [-46.83756816234393, -8.485465640557948],\n              [-46.882117724590216, -8.583793281027681],\n              [-46.92239360503288, -8.744457349656443],\n              [-46.9046177254485, -8.829271806016934],\n              [-47.06527080774882, -8.976642417107428],\n              [-47.083046687333194, -9.03469417713444],\n              [-47.03849712508685, -9.065983240828018],\n              [-46.9401694846172, -9.070245936303124],\n              [-46.84656596542152, -9.168573576772772],\n              [-46.82857035926628, -9.306957371114194],\n              [-46.752742719654975, -9.409547707058948],\n              [-46.56082254631815, -9.498866558122458],\n              [-46.53404886365618, -9.556918318149457],\n              [-46.60086771386136, -9.650741563916029],\n              [-46.65014139738162, -9.664013048797287],\n              [-46.667917276965966, -9.74434508311171],\n              [-46.50727518099421, -9.855944208462631],\n              [-46.46249490584847, -9.949767454229232],\n              [-46.47149270892612, -10.003314819553111],\n              [-46.3466220986939, -10.168483282885049],\n              [-46.28406594396384, -10.186478889040274],\n              [-46.19024269819727, -10.177470099634036],\n              [-46.087641375923965, -10.208737190670604],\n              [-46.03409401060003, -10.271293345400693],\n              [-45.94477515953653, -10.315853893975543],\n              [-45.757117681674856, -10.329345105427691],\n              [-45.85994971684758, -10.467728899769114],\n              [-46.03836769240368, -10.570319235713882],\n              [-46.087641375923965, -10.583832419823125],\n              [-46.30184182354819, -10.757746000676136],\n              [-46.234792260443555, -10.8828583101363],\n              [-46.24829445822425, -10.914125401172797],\n              [-46.36889138665279, -10.967672766496719],\n              [-46.46249490584847, -11.177599532317288],\n              [-46.529544468953105, -11.235431565773396],\n              [-46.56982034939574, -11.315983326658738],\n              [-46.55182474324056, -11.378297782160814],\n              [-46.48926858851044, -11.414069267900388],\n              [-46.426943146679804, -11.498905696917888],\n              [-46.19024269819727, -11.543444272835643],\n              [-46.08314796754942, -11.601496032862656],\n              [-46.105417255508314, -11.66405218759273],\n              [-46.243790063521175, -11.726608342322805],\n              [-46.27506814088622, -11.766862250108375],\n              [-46.24829445822425, -11.842689889719722],\n              [-46.15896462083222, -11.83370307297065],\n              [-46.10092384713377, -11.864970164007147],\n              [-46.078643572846346, -11.927526318737222],\n              [-46.21252297248469, -11.998849563645479],\n              [-46.24829445822425, -12.048112260837215],\n              [-46.32412209783561, -12.092672809412065],\n              [-46.33762429561631, -12.128444295151638],\n              [-46.3466220986939, -12.342655729104393],\n              [-46.31534402132888, -12.42296579076168],\n              [-46.15896462083222, -12.50329782507616],\n              [-46.15896462083222, -12.601625465545808],\n              [-46.234792260443555, -12.713224590896743],\n              [-46.234792260443555, -12.798039047257149],\n              [-46.30184182354819, -12.833832505653803],\n              [-46.43572122318653, -12.847103990535075],\n              [-46.59208963735463, -12.89186229302372],\n              [-46.6456479890071, -12.922931630146422],\n              [-46.75274271965495, -13.034750482068219],\n              [-46.82857035926628, -13.070302241236917],\n              [-46.971447561982245, -13.070302241236917],\n              [-47.09204449041076, -13.097064937570323],\n              [-47.292973453153735, -13.199896972743062],\n              [-47.440344064244215, -13.248939943363894],\n              [-47.55644758429821, -13.244457521317912],\n              [-47.64104231408774, -13.115082516382643],\n              [-47.72159407497307, -13.150612302894245],\n              [-47.65904890657151, -13.320263188272165],\n              [-47.681318194530405, -13.356056646668833],\n              [-47.85547347461139, -13.293500491938744],\n              [-47.93579452259729, -13.244457521317912],\n              [-48.002844085701895, -13.248939943363894],\n              [-48.07416733061015, -13.195392578039986],\n              [-48.17496689500223, -13.180780761076335],\n              [-48.16371689457307, -13.102470211214026],\n              [-48.22604233640374, -13.092582515524342],\n              [-48.36891953911967, -13.186405761290914],\n              [-48.480518664470594, -13.195392578039986],\n              [-48.587624381447, -13.155116697597322],\n              [-48.65444323165218, -13.177396971884747],\n              [-48.685721309017225, -13.338280767084484],\n              [-48.73926867434113, -13.38281934300224],\n              [-48.77504016008072, -13.351552251965742],\n              [-48.76176867519945, -13.208664062921244],\n              [-48.766273069902525, -13.097064937570323],\n              [-48.80182482907122, -12.998978996328646],\n              [-48.797320434368146, -12.927414052192404],\n              [-48.824094117030086, -12.873866686868496],\n              [-48.92691516587428, -12.784547835805],\n              [-48.998249397111096, -12.748996076636303],\n              [-49.016245003266306, -12.65517283086973],\n              [-49.136622205123956, -12.735504865184154],\n              [-49.29749501399516, -13.003483391031722],\n              [-49.3598204558258, -13.132858395966991],\n              [-49.38232045668411, -13.248939943363894],\n              [-49.520693264697, -13.199896972743062],\n              [-49.68583975537183, -13.177396971884747],\n              [-49.91354240077675, -13.070302241236917],\n              [-49.97159416080376, -13.025741692662066],\n              [-50.05191520878964, -13.021237297958976],\n              [-50.23934197375189, -12.931918446895494],\n              [-50.270620051116936, -12.89186229302372],\n              [-50.27512444582001, -12.789052230508076],\n              [-50.19929680620865, -12.65517283086973],\n              [-50.2035704880123, -12.570358374509311],\n              [-50.13674065147859, -12.476513156085659],\n              [-50.16374504703998, -12.38765573082101],\n              [-50.29559197589765, -12.490026340194888],\n              [-50.3923485713855, -12.617138161450072],\n              [-50.48482049874116, -12.842599595831999],\n              [-50.56604242566766, -12.819638169174837],\n              [-50.613964790777004, -12.763388167029063],\n              [-50.65537226305969, -12.666862284440654],\n              [-50.66054682380397, -12.558207495139541],\n              [-50.629268746438925, -12.437379853811592],\n              [-50.631740670361324, -12.288646937981625],\n              [-50.667523142429445, -12.112030720306748],\n              [-50.67471918762584, -11.990082473467297],\n              [-50.653570505178465, -11.922340771664409],\n              [-50.66144770274457, -11.8535004370071],\n              [-50.717466991990904, -11.74910834318112],\n              [-50.66572138454822, -11.65190130822296],\n              [-50.67134638476281, -11.573832457588622],\n              [-50.716566113050305, -11.482689875986807],\n              [-50.708018749443, -11.345668386384844],\n              [-50.64524286814202, -11.162746016125666],\n              [-50.61037226134306, -11.000983314642411],\n              [-50.59912226091393, -10.689806544959453],\n              [-50.55074945633427, -10.567177145750264],\n              [-50.45467401321616, -10.388517470966192],\n              [-50.40269769287403, -10.25824158709031],\n              [-50.39527093477824, -10.176788947264384],\n              [-50.33744988765065, -10.034362184018732],\n              [-50.23484856537735, -9.842672723581373]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 44035,\n        \"fill\": \"#333\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-53.11619999365156, -22.639987664885183],\n              [-52.96072147209553, -22.454824083603015],\n              [-52.56607057813454, -22.207324074161647],\n              [-52.402495132441516, -22.069181979048096],\n              [-52.33881837219997, -21.957341154469304],\n              [-52.245665292474555, -21.84035872813176],\n              [-52.12259644012363, -21.718168782064367],\n              [-52.0649951195669, -21.622763504987418],\n              [-52.072641604233596, -21.554142896901],\n              [-52.047669679452866, -21.51094465306562],\n              [-51.989848632325305, -21.49363019928012],\n              [-51.95474731262692, -21.46954816711147],\n              [-51.936290280672836, -21.422746407513614],\n              [-51.87284423333068, -21.32982404068764],\n              [-51.856650385056696, -21.260082827089718],\n              [-51.86631835417552, -21.18267315616805],\n              [-51.81141967044064, -21.077138484173474],\n              [-51.69194334752365, -20.943720510334003],\n              [-51.61904905763356, -20.806918747302916],\n              [-51.593165267583686, -20.666513468509322],\n              [-51.53422361494461, -20.55761697998031],\n              [-51.39697141244321, -20.44175515915427],\n              [-51.16072140343098, -20.306513454776464],\n              [-51.06396480794314, -20.223039330498423],\n              [-50.99377315487493, -20.101552509457804],\n              [-50.58404901815143, -19.821203377669605],\n              [-50.4886437410745, -19.79081519291657],\n              [-50.43374505733965, -19.800263435464558],\n              [-50.36444329688351, -19.858556894719527],\n              [-49.37714589593983, -19.978483657106864],\n              [-49.2783678159999, -19.98703102071417],\n              [-49.2587901785343, -20.01695777966829],\n              [-49.28804677144723, -20.073647234955814],\n              [-49.28354237674415, -20.14857399562655],\n              [-49.23899281449786, -20.24553933135674],\n              [-49.19984852589528, -20.294362575406637],\n              [-49.166318251178666, -20.29504372777643],\n              [-49.11277088585473, -20.259272242036786],\n              [-49.03964588306525, -20.18726784475885],\n              [-48.99464588134862, -20.21359108795042],\n              [-48.977990607275785, -20.338241971611808],\n              [-48.95256824302476, -20.41002664231894],\n              [-48.91836780226697, -20.42914285398564],\n              [-48.886869998331065, -20.36997048844715],\n              [-48.85829455778787, -20.232729272274312],\n              [-48.81194323766033, -20.158923117115094],\n              [-48.71564806797133, -20.143849874352583],\n              [-48.36374497837542, -20.138224874138018],\n              [-48.25326645853599, -20.093005145850512],\n              [-48.178339697865255, -20.082875750932857],\n              [-48.10949936320796, -20.116625752220315],\n              [-48.05121689028155, -20.12022926798278],\n              [-47.991143645802424, -20.082875750932857],\n              [-47.9087901270359, -20.08175514542137],\n              [-47.861768640867155, -20.05565162880059],\n              [-47.86019759588535, -20.011991959166366],\n              [-47.81857039703178, -19.98072486812987],\n              [-47.74971907604595, -19.97712135236742],\n              [-47.695490558352276, -19.9910739896184],\n              [-47.655895830279405, -20.02280250645373],\n              [-47.59424055448994, -20.018517838321486],\n              [-47.51774274883738, -19.994216079582017],\n              [-47.45992170170979, -20.00098365796518],\n              [-47.427742745404146, -20.03629371790589],\n              [-47.328964665464184, -20.117526631160942],\n              [-47.244369935674655, -20.17399635987759],\n              [-47.23492169312672, -20.204362571973462],\n              [-47.26619977049177, -20.284694606287886],\n              [-47.29297345315376, -20.423078400629322],\n              [-47.2526975727111, -20.4766257659532],\n              [-47.15458965881231, -20.525668736574076],\n              [-47.109820369995106, -20.632763467221906],\n              [-47.212641418839326, -20.806918747302916],\n              [-47.22141949534603, -20.914013477950732],\n              [-47.14559185573469, -20.98107402738391],\n              [-47.1233225677758, -21.132949033177482],\n              [-47.0562730046712, -21.195263488679586],\n              [-46.99394756284053, -21.34265607242716],\n              [-47.00271465301876, -21.40070783245409],\n              [-46.895619922370884, -21.405190254500155],\n              [-46.81529887438501, -21.3606516785824],\n              [-46.685693156550315, -21.396203437751083],\n              [-46.65464579208472, -21.373923163463658],\n              [-46.60537210856444, -21.42747052878758],\n              [-46.50727518099421, -21.458737619824078],\n              [-46.49377298321352, -21.52579816925723],\n              [-46.56082254631815, -21.672949053776847],\n              [-46.60537210856444, -21.681957843183],\n              [-46.62787210942275, -21.771276694246495],\n              [-46.667917276965966, -21.811552574689145],\n              [-46.658919473888375, -21.90515609388484],\n              [-46.618874306345134, -21.98546615554217],\n              [-46.658919473888375, -22.052526704975335],\n              [-46.60086771386136, -22.13285873928976],\n              [-46.66342386859145, -22.204401710768877],\n              [-46.69919535433101, -22.320263531594932],\n              [-46.641143594304026, -22.40960435531551],\n              [-46.547320348537454, -22.440871446352006],\n              [-46.5430466667338, -22.472138537388503],\n              [-46.453716829341744, -22.516699085963353],\n              [-46.39566506931476, -22.615026726433],\n              [-46.47149270892612, -22.68206530320907],\n              [-46.36889138665279, -22.748906126071347],\n              [-46.35989358357517, -22.84272937183792],\n              [-46.288570338666915, -22.882763553052598],\n              [-46.15447121245768, -22.847233766540995],\n              [-46.14569313595095, -22.891772342458765],\n              [-46.02059181281933, -22.873996462874416],\n              [-45.90899268746841, -22.820449097550494],\n              [-45.85994971684758, -22.860505251422268],\n              [-45.79290015374298, -22.85171618858699],\n              [-45.743846196793584, -22.797949096692193],\n              [-45.743846196793584, -22.726625851783922],\n              [-45.801897956820596, -22.69984118279342],\n              [-45.672292238985904, -22.619531121136077],\n              [-45.629775147520235, -22.622673211099695],\n              [-45.58319311449327, -22.615026726433],\n              [-45.52964574916939, -22.65079821217256],\n              [-45.4709238231012, -22.611642937241413],\n              [-45.40904882074085, -22.646293817469484],\n              [-45.2706650263994, -22.60601793702685],\n              [-45.24389134373746, -22.56147936110908],\n              [-45.056244852204316, -22.467656115342507],\n              [-44.92236545256597, -22.449880235758172],\n              [-44.833046601502474, -22.405099960612404],\n              [-44.77072115967172, -22.423095566767586],\n              [-44.65012423124318, -22.561479361109093],\n              [-44.636622033462515, -22.6015135423238],\n              [-44.53852510589235, -22.619531121136106],\n              [-44.21699921472083, -22.592746452145548],\n              [-44.16794525777152, -22.69984118279342],\n              [-44.2482663057574, -22.74890612607129],\n              [-44.27503998841934, -22.820449097550522],\n              [-44.35986543110829, -22.85600085671922],\n              [-44.471464556459125, -22.851716188586977],\n              [-44.58756807651321, -22.878500857577478],\n              [-44.72594088452604, -22.936552617604434],\n              [-44.79749484233372, -22.99009998292837],\n              [-44.80627291884048, -23.13725086744796],\n              [-44.86432467886743, -23.204289444224003],\n              [-44.78287203904159, -23.35392323899464],\n              [-44.95162204547887, -23.38136708769781],\n              [-45.21531590319421, -23.575539458386174],\n              [-45.32534398356336, -23.59962149055474],\n              [-45.42322118456275, -23.68535879851288],\n              [-45.4333395931518, -23.758483801302418],\n              [-45.46439794394598, -23.802582924078365],\n              [-45.52717382524685, -23.8048241351014],\n              [-45.66464575431917, -23.764767981229625],\n              [-45.84307471620389, -23.763647375718108],\n              [-45.971999281668786, -23.795595619124356],\n              [-46.63079447281547, -24.110375904569707],\n              [-46.86727519472703, -24.236367120313503],\n              [-47.137275205026754, -24.49309564573184],\n              [-47.5922190700378, -24.781091262186806],\n              [-47.83117171587185, -24.953005331244754],\n              [-47.87662215705876, -24.997543907162594],\n              [-47.914195400679546, -24.999807090842637],\n              [-47.98912216135028, -25.035798303153058],\n              [-47.95941512896701, -25.065505335536272],\n              [-47.9083396875655, -25.068207972358152],\n              [-47.929499356341466, -25.16831539805196],\n              [-48.02444320761958, -25.236716279567474],\n              [-48.07754013347321, -25.29026364489144],\n              [-48.08766952839085, -25.28015622263088],\n              [-48.0919432101945, -25.23559567405603],\n              [-48.18576645596107, -25.19081539891029],\n              [-48.23054673110681, -25.012397423354116],\n              [-48.26609849027551, -25.034677697641598],\n              [-48.41346910136599, -24.958850058030265],\n              [-48.51179674183564, -25.08372066826246],\n              [-48.5653441071596, -25.056957971928966],\n              [-48.54284410630126, -24.81147944693977],\n              [-48.48929674097735, -24.74441889750662],\n              [-48.61439806410894, -24.681862742776545],\n              [-48.7795445547838, -24.695375926885774],\n              [-48.82859851173316, -24.66410883584922],\n              [-49.025023079773064, -24.668591257895272],\n              [-49.09207264287767, -24.68636713747962],\n              [-49.21694325310986, -24.690871532182697],\n              [-49.29749501399516, -24.66410883584929],\n              [-49.31076649887643, -24.530229436210945],\n              [-49.23944325396815, -24.418630310860024],\n              [-49.22594105618748, -24.338298276545572],\n              [-49.274995013136845, -24.315798275687285],\n              [-49.33754018153837, -24.21320793974253],\n              [-49.33304677316386, -24.14186272217718],\n              [-49.40909413934608, -24.083832934807262],\n              [-49.60102529901141, -23.86489737958054],\n              [-49.56974722164637, -23.833850015114933],\n              [-49.551971342062075, -23.71324210035783],\n              [-49.605518707385954, -23.641699128878713],\n              [-49.65457266433535, -23.507819729240353],\n              [-49.614296783892684, -23.409733787998675],\n              [-49.636796784751, -23.257858782205105],\n              [-49.73040030394668, -23.105983776411534],\n              [-49.909048992402205, -23.034638558846183],\n              [-49.91354240077675, -22.985595588225337],\n              [-49.958091963023065, -22.963315313937912],\n              [-49.97159416080376, -22.914052616746176],\n              [-50.12324944002643, -22.94081531307961],\n              [-50.29290032540439, -22.95432849718884],\n              [-50.368947691586584, -22.91405261674619],\n              [-50.43127313341722, -22.945319707782687],\n              [-50.62769770145712, -22.923039433495262],\n              [-50.72602534192677, -22.949824102485763],\n              [-50.78406611562522, -22.945319707782687],\n              [-50.88217402952398, -22.820449097550494],\n              [-51.00277095795252, -22.793664428559993],\n              [-51.181419646408045, -22.739897336665194],\n              [-51.35534421358966, -22.65079821217256],\n              [-51.54749509982585, -22.686349971341272],\n              [-51.641098619021534, -22.650798212172575],\n              [-51.69464598434547, -22.664069697053776],\n              [-51.743919667865725, -22.619531121136077],\n              [-51.873294672800995, -22.610522331729925],\n              [-51.984893798151916, -22.54796617699985],\n              [-52.06521484613779, -22.52120348066643],\n              [-52.14127319864856, -22.543483754953854],\n              [-52.16354248660744, -22.601513542323772],\n              [-52.21708985193136, -22.641789422766422],\n              [-52.26165040050621, -22.601513542323772],\n              [-52.315197765830135, -22.619531121136077],\n              [-52.44479249733628, -22.601513542323772],\n              [-52.52062013694763, -22.615026726433],\n              [-52.6144433827142, -22.57046617785815],\n              [-52.69477541702862, -22.601513542323772],\n              [-52.94924075876696, -22.570466177858123],\n              [-53.044415322944445, -22.636406121779814],\n              [-53.11619999365156, -22.639987664885183]\n            ]\n          ],\n          [\n            [\n              [-45.24906590448171, -23.782543860813973],\n              [-45.233091782778615, -23.825302651507627],\n              [-45.25019749632173, -23.852966226781632],\n              [-45.26031590491078, -23.889199138320066],\n              [-45.260997057280576, -23.94140617156154],\n              [-45.30262425613421, -23.914841229141985],\n              [-45.41287206307413, -23.934880292406433],\n              [-45.4513461856356, -23.895505290904396],\n              [-45.30239354323476, -23.72765616340763],\n              [-45.27224705770976, -23.7519579221472],\n              [-45.24906590448171, -23.782543860813973]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 6850,\n        \"fill\": \"#999\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-48.7219432342271, -5.355043157860635],\n              [-48.730490597834375, -5.338168157216899],\n              [-48.25281601906562, -4.954327810543248],\n              [-47.80191512295892, -4.597030433632256],\n              [-47.65454451186838, -4.606017250381342],\n              [-47.58322126696021, -4.547965490354329],\n              [-47.48939802119361, -4.423094880122107],\n              [-47.45811994382859, -4.338280423761717],\n              [-47.38229230421723, -4.275724269031571],\n              [-47.333018620696976, -4.164125143680735],\n              [-47.310749332738055, -4.065797503211058],\n              [-47.28846905845063, -4.079288714663221],\n              [-47.06527080774873, -3.842599252509217],\n              [-47.02499492730607, -3.59712072751995],\n              [-47.0294993220092, -3.570358031186515],\n              [-46.96694316727911, -3.525797482611608],\n              [-46.94467387932019, -3.396202751105534],\n              [-46.859848436631296, -3.329142201672369],\n              [-46.82429667746254, -3.329142201672369],\n              [-46.74374491657733, -3.190780379988041],\n              [-46.667917276965966, -3.092672466089311],\n              [-46.63665018592951, -2.985577735441382],\n              [-46.65014139738162, -2.91401279130514],\n              [-46.574094031199365, -2.847193941099988],\n              [-46.667917276965966, -2.739879483881225],\n              [-46.600867713861305, -2.664051844269977],\n              [-46.50727518099421, -2.614986900991994],\n              [-46.48499490670673, -2.547948324215952],\n              [-46.426943146679776, -2.512396565047197],\n              [-46.43572122318653, -2.409564529874501],\n              [-46.40894754052454, -2.387306228244199],\n              [-46.41344094889905, -2.239913644496539],\n              [-46.37766946315952, -2.253426828605825],\n              [-46.27957253558924, -2.141827703254933],\n              [-46.212522972484635, -1.927396542731231],\n              [-46.21701638085926, -1.807030327202142],\n              [-46.30184182354816, -1.802525932499123],\n              [-46.31534402132888, -1.73098296101989],\n              [-46.24379006352109, -1.722193898184685],\n              [-46.1992405012748, -1.677413623038944],\n              [-46.18124489511962, -1.574823287094205],\n              [-46.1992405012748, -1.485504436030624],\n              [-46.12319313509255, -1.34712064168923],\n              [-46.15896462083214, -1.315853550652776],\n              [-46.14119972757641, -1.240025911041414],\n              [-46.00708961503864, -1.146861844987484],\n              [-45.972219008239676, -1.187379424658161],\n              [-45.778716803592545, -1.250814485671697],\n              [-45.644848390282675, -1.347801794059023],\n              [-45.55686987130156, -1.330707066844354],\n              [-45.45854223083194, -1.35634915766633],\n              [-45.353018545165924, -1.567396528998415],\n              [-45.329167225896754, -1.717250050339828],\n              [-45.28214573972798, -1.696551807362709],\n              [-45.238497056422204, -1.629491257929601],\n              [-45.18201634137711, -1.507103557948312],\n              [-45.076272929140146, -1.466366251706802],\n              [-45.02586765377987, -1.513387737875576],\n              [-44.91967380207268, -1.588775924345214],\n              [-44.82832248022851, -1.671568896253461],\n              [-44.78984835766704, -1.724896535006508],\n              [-44.72121676325213, -1.733443898613814],\n              [-44.778598357237854, -1.798922416736616],\n              [-44.72099703668124, -1.792396537581453],\n              [-44.651244836754756, -1.74581450455446],\n              [-44.59162203174594, -1.841900934001103],\n              [-44.5468417566002, -1.946293027827096],\n              [-44.537843953522554, -2.052728578762299],\n              [-44.57992159184653, -2.113922428752971],\n              [-44.61727510889642, -2.152176824743435],\n              [-44.658671594850546, -2.22754303855595],\n              [-44.707494838900516, -2.241056222665179],\n              [-44.75631808295054, -2.265577707975638],\n              [-44.700749233174406, -2.320465405381867],\n              [-44.66249483718394, -2.373353590993133],\n              [-44.5790207129059, -2.23046540194872],\n              [-44.520298786837714, -2.190431220734013],\n              [-44.43547334414876, -2.168150946446588],\n              [-44.3913742213727, -2.269620676879811],\n              [-44.38191499249626, -2.365465407098554],\n              [-44.52006807393826, -2.405521560970271],\n              [-44.520749226308, -2.481349200581633],\n              [-44.56191499936267, -2.524327717846177],\n              [-44.58891939492406, -2.57337068846698],\n              [-44.6107492297412, -2.676861903352346],\n              [-44.63887423081417, -2.762599211310487],\n              [-44.721447476151525, -3.142396589079851],\n              [-44.723018521133326, -3.204733017238993],\n              [-44.62266939621156, -3.137892194376775],\n              [-44.43749482860085, -2.944400976058205],\n              [-44.38124482645509, -2.738297452570919],\n              [-44.30811982366555, -2.535116292476459],\n              [-44.2286996546203, -2.47121980566402],\n              [-44.17941498477143, -2.47121980566402],\n              [-44.10561981594083, -2.493500079951446],\n              [-44.1013461341372, -2.560099203585764],\n              [-44.112596134566274, -2.598573326147118],\n              [-44.191565864141296, -2.699603603438618],\n              [-44.22509613885791, -2.754952726643808],\n              [-44.192697455981374, -2.809620697479147],\n              [-44.013147888585195, -2.642232995781399],\n              [-43.93281585427076, -2.583500083384649],\n              [-43.864414972755185, -2.595431236183515],\n              [-43.728525074993286, -2.51824129183268],\n              [-43.455141275502, -2.502047443558695],\n              [-43.43467374542439, -2.413629471435797],\n              [-43.379994788260376, -2.376056227815013],\n              [-43.22969082744868, -2.385943923504726],\n              [-42.93674037682035, -2.465155352307647],\n              [-42.83234828299436, -2.529491292261866],\n              [-42.67596888249773, -2.589564536741022],\n              [-42.593615363731146, -2.661129480877207],\n              [-42.24958947170137, -2.792064544465745],\n              [-41.99984825123698, -2.806017181716754],\n              [-41.876098246516335, -2.746625089607392],\n              [-41.84617148756223, -2.758775968977091],\n              [-41.86889121499141, -2.851698335803107],\n              [-41.8153438496675, -2.936293065592636],\n              [-41.84211753232944, -3.034620706062299],\n              [-41.92244956664388, -3.110448345673632],\n              [-42.00277061462975, -3.231056260430719],\n              [-42.105371936903055, -3.262323351467202],\n              [-42.10086754219998, -3.302379505338976],\n              [-42.216971062253975, -3.431974236845122],\n              [-42.364341673344484, -3.44975011642947],\n              [-42.45367151073651, -3.476512812762891],\n              [-42.502714481357344, -3.44975011642947],\n              [-42.57426843916505, -3.570358031186515],\n              [-42.62781580448896, -3.614896607104313],\n              [-42.676869761438354, -3.699733036121813],\n              [-42.66336756365766, -3.789051887185309],\n              [-42.73492152146537, -3.922931286823655],\n              [-42.851025041519335, -4.039012834220557],\n              [-42.891070209062576, -4.141844869393296],\n              [-42.989397849532224, -4.239952783292068],\n              [-42.953615377464104, -4.391827789085639],\n              [-42.89557460376568, -4.405099273966925],\n              [-42.86429652640061, -4.498922519733469],\n              [-42.91357020992086, -4.637306314074863],\n              [-42.94912196908956, -4.659564615705236],\n              [-42.93134608950521, -4.731129559841463],\n              [-42.953615377464104, -4.775668135759233],\n              [-42.90457240684327, -4.829215501083155],\n              [-42.85551844989391, -4.936332204388066],\n              [-42.83301844903556, -5.097194026930723],\n              [-42.80624476637365, -5.159530455089907],\n              [-42.83301844903556, -5.311405460883492],\n              [-42.91357020992086, -5.391715522540821],\n              [-43.04744960955921, -5.597137893658314],\n              [-43.100996974883174, -5.623922562648772],\n              [-43.083221095298796, -5.713241413712311],\n              [-43.109994777960765, -5.771293173739309],\n              [-43.07422329222118, -6.057047579171225],\n              [-43.0026693344135, -6.12386642937642],\n              [-42.962624166870256, -6.186422584106495],\n              [-42.851025041519335, -6.253483133539646],\n              [-42.86878993477515, -6.436405503798838],\n              [-42.85551844989391, -6.480944079716608],\n              [-42.91357020992086, -6.615043205925815],\n              [-42.917843891724516, -6.668590571249737],\n              [-42.98040004645463, -6.744418210861056],\n              [-43.13227505224819, -6.780189696600658],\n              [-43.19909390245337, -6.753427000267237],\n              [-43.30191495129759, -6.802469970888012],\n              [-43.46256803359785, -6.842745851330733],\n              [-43.560895674067524, -6.753427000267266],\n              [-43.67676848122207, -6.699879634943329],\n              [-43.81537200213438, -6.708646725121511],\n              [-43.95374481014727, -6.762194090445348],\n              [-44.03857025283622, -6.766698485148481],\n              [-44.060839540795115, -6.829254639878584],\n              [-44.09211761816013, -6.806974365591159],\n              [-44.163440863068445, -6.887306399905583],\n              [-44.16794525777152, -6.923077885645114],\n              [-44.25727509516352, -7.007892342005576],\n              [-44.30631806578435, -7.110504650607368],\n              [-44.44919526850032, -7.146276136347012],\n              [-44.57857027343559, -7.248866472291766],\n              [-44.712669399644824, -7.396237083382246],\n              [-44.815270721918125, -7.364969992345763],\n              [-44.909093967684726, -7.445302026660158],\n              [-45.0249667748393, -7.494344997281019],\n              [-45.2974496953899, -7.556901152011108],\n              [-45.47159398914238, -7.673004672065105],\n              [-45.542917234050634, -7.869418253776431],\n              [-45.578699706118755, -8.15066826450527],\n              [-45.654516359401555, -8.253280573107133],\n              [-45.65902075410463, -8.311332333134118],\n              [-45.73484839371599, -8.431918275234068],\n              [-45.7528439998712, -8.561293280169366],\n              [-45.819673836404945, -8.699896801081678],\n              [-45.92676856705276, -8.788995925574284],\n              [-45.98054664527612, -8.927599446486596],\n              [-45.94027076483346, -9.012194176276125],\n              [-45.93576637013041, -9.119530606151898],\n              [-45.9044992790939, -9.177582366178939],\n              [-45.8957212025872, -9.32921567274451],\n              [-45.828671639482536, -9.373995947890265],\n              [-45.79739356211752, -9.463095072382885],\n              [-45.837669442560156, -9.534638043862032],\n              [-45.85994971684758, -9.833663934175206],\n              [-45.85994971684758, -9.99883239750713],\n              [-45.89999488439082, -10.02559509384055],\n              [-45.89999488439082, -10.083646853867549],\n              [-45.95354224971473, -10.181974494337197],\n              [-45.93576637013041, -10.213241585373623],\n              [-45.94477515953653, -10.315853893975543],\n              [-46.03409401060003, -10.271293345400693],\n              [-46.087641375923965, -10.208737190670604],\n              [-46.19024269819727, -10.177470099634036],\n              [-46.28406594396384, -10.186478889040274],\n              [-46.3466220986939, -10.168483282885049],\n              [-46.47149270892612, -10.003314819553111],\n              [-46.46249490584847, -9.949767454229232],\n              [-46.50727518099421, -9.855944208462631],\n              [-46.667917276965966, -9.74434508311171],\n              [-46.65014139738162, -9.664013048797287],\n              [-46.60086771386136, -9.650741563916029],\n              [-46.53404886365618, -9.556918318149457],\n              [-46.56082254631815, -9.498866558122458],\n              [-46.752742719654975, -9.409547707058948],\n              [-46.82857035926628, -9.306957371114194],\n              [-46.84656596542152, -9.168573576772772],\n              [-46.9401694846172, -9.070245936303124],\n              [-47.03849712508685, -9.065983240828018],\n              [-47.083046687333194, -9.03469417713444],\n              [-47.06527080774882, -8.976642417107428],\n              [-46.9046177254485, -8.829271806016934],\n              [-46.92239360503288, -8.744457349656443],\n              [-46.882117724590216, -8.583793281027681],\n              [-46.83756816234393, -8.485465640557948],\n              [-46.79301860009758, -8.436422669937187],\n              [-46.658919473888375, -8.396146789494537],\n              [-46.50277078629114, -8.396146789494537],\n              [-46.5430466667338, -8.320319149883176],\n              [-46.50727518099421, -8.27578057396542],\n              [-46.50277078629114, -8.172948538792639],\n              [-46.46699930055155, -8.070358202847899],\n              [-46.48926858851044, -7.963241499543003],\n              [-46.574094031199394, -7.905189739516004],\n              [-46.74374491657733, -7.922965619100353],\n              [-46.868846239708944, -7.958737104839884],\n              [-46.98494975976294, -8.03906913915435],\n              [-47.016216850799424, -8.04357353385734],\n              [-47.07854229263012, -7.976512984424289],\n              [-47.15009625043777, -7.856146768895158],\n              [-47.27947125537304, -7.731056432092103],\n              [-47.303542301213156, -7.66287527714745],\n              [-47.34652081847764, -7.659733187183832],\n              [-47.41357038158225, -7.530116483020592],\n              [-47.45811994382859, -7.534620877723682],\n              [-47.498395824271256, -7.449806421363292],\n              [-47.4950230214082, -7.356202902167524],\n              [-47.506943187878534, -7.305797626807262],\n              [-47.54586774991026, -7.287582294081119],\n              [-47.61179670750337, -7.301512958675062],\n              [-47.66894758858976, -7.279694110186497],\n              [-47.717089680269964, -7.22210377595826],\n              [-47.715969074758476, -7.184750258908423],\n              [-47.66534407282728, -7.16719410589495],\n              [-47.605721267818495, -7.11476734608253],\n              [-47.53708967340353, -7.027250252900274],\n              [-47.47049054976921, -6.795944091732892],\n              [-47.405473457445254, -6.42109056180837],\n              [-47.39714582040884, -6.072340548504613],\n              [-47.44484845894729, -5.749913778392497],\n              [-47.48579450543113, -5.561146681347864],\n              [-47.519994946188945, -5.506478710512454],\n              [-47.61246687354458, -5.454952829640604],\n              [-47.763221273826645, -5.407250191102179],\n              [-47.85389144330105, -5.350780462385529],\n              [-47.88449935462489, -5.285521670833603],\n              [-47.95311996271133, -5.256276064249221],\n              [-48.05954452731797, -5.263021669975288],\n              [-48.16889145531735, -5.240741395687863],\n              [-48.28162217250832, -5.189457214043955],\n              [-48.378148055096744, -5.169418150779563],\n              [-48.45824937651173, -5.180887877779639],\n              [-48.52349718173511, -5.220504578509647],\n              [-48.574341910237166, -5.28822430765544],\n              [-48.630591912382954, -5.330301945979329],\n              [-48.7219432342271, -5.355043157860635]\n            ]\n          ],\n          [\n            [\n              [-44.56529878855429, -2.923922459651919],\n              [-44.581943076298614, -2.845611909789682],\n              [-44.569122030887684, -2.784879485597855],\n              [-44.50184175488363, -2.726146573201106],\n              [-44.48137422480602, -2.717599209593914],\n              [-44.48721895159139, -2.789823333442769],\n              [-44.48249483031742, -2.811861908502237],\n              [-44.4993698309612, -2.939676854784238],\n              [-44.59769747143082, -3.037543069454955],\n              [-44.56529878855429, -2.923922459651919]\n            ]\n          ],\n          [\n            [\n              [-45.01124485048763, -1.34463773143824],\n              [-44.99549045535548, -1.347582067488133],\n              [-44.97861545471176, -1.267250033173696],\n              [-44.88839572470755, -1.276918002292462],\n              [-44.88299045106396, -1.317875035104862],\n              [-44.94711765077574, -1.366017126785096],\n              [-44.96781589375291, -1.39078031132351],\n              [-45.02092380593501, -1.372323279369425],\n              [-45.01124485048763, -1.34463773143824]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 16461,\n        \"fill\": \"#666\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-44.78287203904159, -23.35392323899464],\n              [-44.86432467886743, -23.204289444224003],\n              [-44.80627291884048, -23.13725086744796],\n              [-44.79749484233372, -22.99009998292837],\n              [-44.72594088452604, -22.936552617604434],\n              [-44.58756807651321, -22.878500857577478],\n              [-44.471464556459125, -22.851716188586977],\n              [-44.35986543110829, -22.85600085671922],\n              [-44.27503998841934, -22.820449097550522],\n              [-44.2482663057574, -22.74890612607129],\n              [-44.16794525777152, -22.69984118279342],\n              [-44.21699921472083, -22.592746452145548],\n              [-44.53852510589235, -22.619531121136106],\n              [-44.636622033462515, -22.6015135423238],\n              [-44.65012423124318, -22.561479361109093],\n              [-44.77072115967172, -22.423095566767586],\n              [-44.833046601502474, -22.405099960612404],\n              [-44.73044527922917, -22.360539412037582],\n              [-44.66339571612457, -22.369548201443706],\n              [-44.6010702742939, -22.316000836119827],\n              [-44.53402071118927, -22.302487652010583],\n              [-44.44469087379724, -22.25344468138975],\n              [-44.29304658090311, -22.23995346993759],\n              [-44.21699921472086, -22.24894028668666],\n              [-44.09211761816013, -22.173112647075314],\n              [-43.89569305012026, -22.106074070299258],\n              [-43.81537200213438, -22.065798189856594],\n              [-43.56516935587115, -22.065798189856594],\n              [-43.46256803359785, -22.05703109967841],\n              [-43.341971105169364, -22.00348373435446],\n              [-43.13227505224819, -22.02574203598482],\n              [-43.06342373126233, -22.063556978833603],\n              [-42.27951623065553, -21.71322493421951],\n              [-42.28402062535858, -21.641901689311226],\n              [-42.36884606804756, -21.632892899905073],\n              [-42.364341673344484, -21.592617019462423],\n              [-42.30179650494293, -21.48552228881458],\n              [-42.29729211023985, -21.405190254500155],\n              [-42.22146447062852, -21.338151677724113],\n              [-42.18141930308528, -21.16399639764309],\n              [-42.096593860396325, -21.003354301671337],\n              [-42.14114342264264, -20.963298147799563],\n              [-42.096593860396325, -20.923022267356913],\n              [-41.99826621992668, -20.932031056763066],\n              [-41.96249473418709, -20.90975078247564],\n              [-41.92694297501842, -20.82919902159034],\n              [-41.864397806616864, -20.77565165626642],\n              [-41.74378989185979, -20.820431931412145],\n              [-41.71252280082331, -20.97656963268082],\n              [-41.73051840697852, -21.043630182113986],\n              [-41.71252280082331, -21.110449032319167],\n              [-41.44027059317207, -21.199767883382663],\n              [-41.39121663622271, -21.186496398501404],\n              [-41.26611531309109, -21.231056947076254],\n              [-41.06969074505122, -21.213281067491906],\n              [-40.9675398622482, -21.27559552299401],\n              [-41.0471907441929, -21.505781078649875],\n              [-41.02311969835273, -21.596901687594595],\n              [-41.021548653370985, -21.610854324845604],\n              [-40.98779865208343, -21.92022933664731],\n              [-41.00039997092358, -21.99897933965144],\n              [-41.122567944333866, -22.08447494838157],\n              [-41.58291708298856, -22.243556985700025],\n              [-41.70554648219775, -22.309694683535497],\n              [-41.98049034034233, -22.580595572775735],\n              [-41.997596053885445, -22.644733758816187],\n              [-41.98611534055692, -22.735854367760908],\n              [-41.940895612269344, -22.788281127573384],\n              [-41.98746665896783, -22.845190309431814],\n              [-42.04236534270268, -22.94712146566394],\n              [-42.12246666411761, -22.94081531307961],\n              [-42.58102503121967, -22.94105701230751],\n              [-42.829195206702195, -22.973224982284705],\n              [-42.95833949873804, -22.967138556271266],\n              [-43.01617153219422, -22.942617070960807],\n              [-43.08119961084668, -22.902582889746157],\n              [-43.10076626198372, -22.850156129933737],\n              [-43.065445215714476, -22.77072497455987],\n              [-43.08637417159093, -22.723242062592306],\n              [-43.15432461363616, -22.725263547044392],\n              [-43.2290206614075, -22.747543821331874],\n              [-43.241841706818434, -22.795026733299437],\n              [-43.23666714607418, -22.82877673458694],\n              [-43.20877285790067, -22.878039431778575],\n              [-43.1936996151382, -22.93857410205652],\n              [-43.224065827234085, -22.991220588439887],\n              [-43.36941495387242, -22.997966194165997],\n              [-43.53277067299456, -23.04634998507413],\n              [-43.73662199913031, -23.06660877490941],\n              [-43.898846126412366, -23.101479381708486],\n              [-43.9737728870831, -23.057380258932426],\n              [-43.898846126412366, -23.035319711215834],\n              [-43.7915206828651, -23.04588855927534],\n              [-43.67586760228147, -23.009457893823082],\n              [-43.70287199784286, -22.966237677330582],\n              [-43.86621673063638, -22.910449100983726],\n              [-44.04756805591387, -22.944638555412894],\n              [-44.14791718083558, -23.01101795247638],\n              [-44.367973341573816, -23.004953499120006],\n              [-44.63729219950375, -23.05557850105123],\n              [-44.68117159570886, -23.106862682695066],\n              [-44.67374483761307, -23.206552627904102],\n              [-44.621098351229705, -23.22859120296357],\n              [-44.56979219692886, -23.274052630479048],\n              [-44.619065880449114, -23.3163499953738],\n              [-44.66721895845785, -23.335246480469664],\n              [-44.78287203904159, -23.35392323899464]\n            ]\n          ],\n          [\n            [\n              [-44.15579437840165, -23.166496474032442],\n              [-44.220591744154774, -23.190798232771897],\n              [-44.32003999013591, -23.212397354689585],\n              [-44.360096144007684, -23.17212147424692],\n              [-44.27415009580727, -23.116332897900065],\n              [-44.2428720184422, -23.07401356034819],\n              [-44.220372017583884, -23.0830223497544],\n              [-44.191565864141296, -23.113168835279282],\n              [-44.1292404223106, -23.141974988721927],\n              [-44.09797333127415, -23.1694188374251],\n              [-44.15579437840165, -23.166496474032442]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 3195,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-45.757117681674856, -10.329345105427691],\n              [-45.94477515953653, -10.315853893975543],\n              [-45.93576637013041, -10.213241585373623],\n              [-45.95354224971473, -10.181974494337197],\n              [-45.89999488439082, -10.083646853867549],\n              [-45.89999488439082, -10.02559509384055],\n              [-45.85994971684758, -9.99883239750713],\n              [-45.85994971684758, -9.833663934175206],\n              [-45.837669442560156, -9.534638043862032],\n              [-45.79739356211752, -9.463095072382885],\n              [-45.828671639482536, -9.373995947890265],\n              [-45.8957212025872, -9.32921567274451],\n              [-45.9044992790939, -9.177582366178939],\n              [-45.93576637013041, -9.119530606151898],\n              [-45.94027076483346, -9.012194176276125],\n              [-45.98054664527612, -8.927599446486596],\n              [-45.92676856705276, -8.788995925574284],\n              [-45.819673836404945, -8.699896801081678],\n              [-45.7528439998712, -8.561293280169366],\n              [-45.73484839371599, -8.431918275234068],\n              [-45.65902075410463, -8.311332333134118],\n              [-45.654516359401555, -8.253280573107133],\n              [-45.578699706118755, -8.15066826450527],\n              [-45.542917234050634, -7.869418253776431],\n              [-45.47159398914238, -7.673004672065105],\n              [-45.2974496953899, -7.556901152011108],\n              [-45.0249667748393, -7.494344997281019],\n              [-44.909093967684726, -7.445302026660158],\n              [-44.815270721918125, -7.364969992345763],\n              [-44.712669399644824, -7.396237083382246],\n              [-44.57857027343559, -7.248866472291766],\n              [-44.44919526850032, -7.146276136347012],\n              [-44.30631806578435, -7.110504650607368],\n              [-44.25727509516352, -7.007892342005576],\n              [-44.16794525777152, -6.923077885645114],\n              [-44.163440863068445, -6.887306399905583],\n              [-44.09211761816013, -6.806974365591159],\n              [-44.060839540795115, -6.829254639878584],\n              [-44.03857025283622, -6.766698485148481],\n              [-43.95374481014727, -6.762194090445348],\n              [-43.81537200213438, -6.708646725121511],\n              [-43.67676848122207, -6.699879634943329],\n              [-43.560895674067524, -6.753427000267266],\n              [-43.46256803359785, -6.842745851330733],\n              [-43.30191495129759, -6.802469970888012],\n              [-43.19909390245337, -6.753427000267237],\n              [-43.13227505224819, -6.780189696600658],\n              [-42.98040004645463, -6.744418210861056],\n              [-42.917843891724516, -6.668590571249737],\n              [-42.91357020992086, -6.615043205925815],\n              [-42.85551844989391, -6.480944079716608],\n              [-42.86878993477515, -6.436405503798838],\n              [-42.851025041519335, -6.253483133539646],\n              [-42.962624166870256, -6.186422584106495],\n              [-43.0026693344135, -6.12386642937642],\n              [-43.07422329222118, -6.057047579171225],\n              [-43.109994777960765, -5.771293173739309],\n              [-43.083221095298796, -5.713241413712311],\n              [-43.100996974883174, -5.623922562648772],\n              [-43.04744960955921, -5.597137893658314],\n              [-42.91357020992086, -5.391715522540821],\n              [-42.83301844903556, -5.311405460883492],\n              [-42.80624476637365, -5.159530455089907],\n              [-42.83301844903556, -5.097194026930723],\n              [-42.85551844989391, -4.936332204388066],\n              [-42.90457240684327, -4.829215501083155],\n              [-42.953615377464104, -4.775668135759233],\n              [-42.93134608950521, -4.731129559841463],\n              [-42.94912196908956, -4.659564615705236],\n              [-42.91357020992086, -4.637306314074863],\n              [-42.86429652640061, -4.498922519733469],\n              [-42.89557460376568, -4.405099273966925],\n              [-42.953615377464104, -4.391827789085639],\n              [-42.989397849532224, -4.239952783292068],\n              [-42.891070209062576, -4.141844869393296],\n              [-42.851025041519335, -4.039012834220557],\n              [-42.73492152146537, -3.922931286823655],\n              [-42.66336756365766, -3.789051887185309],\n              [-42.676869761438354, -3.699733036121813],\n              [-42.62781580448896, -3.614896607104313],\n              [-42.57426843916505, -3.570358031186515],\n              [-42.502714481357344, -3.44975011642947],\n              [-42.45367151073651, -3.476512812762891],\n              [-42.364341673344484, -3.44975011642947],\n              [-42.216971062253975, -3.431974236845122],\n              [-42.10086754219998, -3.302379505338976],\n              [-42.105371936903055, -3.262323351467202],\n              [-42.00277061462975, -3.231056260430719],\n              [-41.92244956664388, -3.110448345673632],\n              [-41.84211753232944, -3.034620706062299],\n              [-41.8153438496675, -2.936293065592636],\n              [-41.86889121499141, -2.851698335803107],\n              [-41.84617148756223, -2.758775968977091],\n              [-41.72197104337121, -2.808939545109496],\n              [-41.640067964075, -2.878702731364498],\n              [-41.479865321245, -2.916495701556187],\n              [-41.31832234633262, -2.936293065592636],\n              [-41.26859822334205, -2.916056248414421],\n              [-41.25711751001347, -3.079181254637149],\n              [-41.37771443844201, -3.271332140873369],\n              [-41.42676839539138, -3.320375111494201],\n              [-41.44926839624969, -3.436478631548212],\n              [-41.38221883314509, -3.592616332816888],\n              [-41.35544515048312, -3.708719852870885],\n              [-41.28389119267544, -3.811332161472734],\n              [-41.230343827351504, -4.043517228923633],\n              [-41.18128987040211, -4.123849263238057],\n              [-41.11874470200058, -4.177396628561979],\n              [-41.074195139754295, -4.324767239652473],\n              [-41.1412447028589, -4.427379548254322],\n              [-41.23484822205458, -4.539198400176133],\n              [-41.2438460251322, -4.615026039787466],\n              [-41.22607014554785, -4.726625165138387],\n              [-41.18128987040211, -4.811439621498806],\n              [-41.185794265105216, -4.914051930100655],\n              [-41.12324909670366, -5.007875175867227],\n              [-41.11447102019693, -5.065926935894225],\n              [-41.0606929419736, -5.168517271838979],\n              [-41.06969074505122, -5.306901066180416],\n              [-41.0251411828049, -5.364952826207414],\n              [-40.94909381662268, -5.418500191531322],\n              [-40.917815739257634, -5.60164228836139],\n              [-40.92232013396071, -5.681974322675813],\n              [-40.891042056595666, -5.905172573377655],\n              [-40.891042056595666, -6.012267304025499],\n              [-40.80621661390671, -6.253483133539646],\n              [-40.79744952372852, -6.378353743771839],\n              [-40.770664854738015, -6.494457263825836],\n              [-40.72139117121776, -6.570262930780089],\n              [-40.70811968633649, -6.659603754500665],\n              [-40.614296440569916, -6.708646725121511],\n              [-40.48041704093157, -6.735431394112013],\n              [-40.41787187253004, -6.81147876029425],\n              [-40.440141160488906, -6.905082279489932],\n              [-40.511695118296615, -7.0033879473025],\n              [-40.58301836320487, -7.195319106967844],\n              [-40.53396440625551, -7.324694111903099],\n              [-40.53846880095858, -7.391754661336265],\n              [-40.64557451793496, -7.400741478085337],\n              [-40.69034380675214, -7.427526147075838],\n              [-40.69034380675214, -7.512340603436257],\n              [-40.61878984894446, -7.637233186325531],\n              [-40.659065729387095, -7.762323523128586],\n              [-40.547466604036174, -7.833646768036857],\n              [-40.52947099788096, -7.905189739516004],\n              [-40.54297319566166, -8.030082322405278],\n              [-40.59201616628249, -8.12390556817185],\n              [-40.74839556677915, -8.244491510271843],\n              [-40.833221009468105, -8.36487969845804],\n              [-40.88676837479201, -8.351608213576768],\n              [-40.92232013396071, -8.43191827523411],\n              [-41.01614337972728, -8.418646790352838],\n              [-41.083192942831886, -8.525741521000683],\n              [-41.15902058244325, -8.548021795288108],\n              [-41.212567947767155, -8.632858224305608],\n              [-41.36871663536442, -8.713168285962922],\n              [-41.39999471272944, -8.784733230099178],\n              [-41.46704427583404, -8.865043291756422],\n              [-41.498322353199114, -8.936366536664764],\n              [-41.55637411322607, -8.972138022404351],\n              [-41.60992147855001, -8.96315120565528],\n              [-41.73479208878217, -8.981146811810504],\n              [-41.73479208878217, -9.132802091033199],\n              [-41.79734824351226, -9.173077971475848],\n              [-41.85089560883617, -9.253388033133191],\n              [-41.9179451719408, -9.213112152690485],\n              [-42.04304649507242, -9.208849457215422],\n              [-42.15014122572023, -9.293444187004965],\n              [-42.31079430802055, -9.306957371114194],\n              [-42.43139123644909, -9.409547707058962],\n              [-42.48944299647607, -9.498866558122458],\n              [-42.57426843916505, -9.485595073241143],\n              [-42.61881800141134, -9.56592710755561],\n              [-42.75269740104969, -9.521146832409883],\n              [-42.851025041519335, -9.547931501400399],\n              [-42.93134608950521, -9.516862164277654],\n              [-42.936971089719805, -9.474345072812028],\n              [-43.02944301707544, -9.436332376049464],\n              [-43.04294521485613, -9.39627622217769],\n              [-43.127770657545085, -9.373995947890265],\n              [-43.185822417572126, -9.418556496465044],\n              [-43.377742590908895, -9.414052101762039],\n              [-43.414865395059394, -9.33552182532884],\n              [-43.449296548716575, -9.302452976411118],\n              [-43.53839567320921, -9.360504736438116],\n              [-43.60544523631381, -9.338224462150691],\n              [-43.65899260163772, -9.364987158484112],\n              [-43.69477507370584, -9.445319192798536],\n              [-43.810867607431305, -9.427543313214187],\n              [-43.828643487015654, -9.498866558122458],\n              [-43.78409392476934, -9.56592710755561],\n              [-43.72604216474235, -9.748849477814815],\n              [-43.681272875925174, -9.802396843138695],\n              [-43.71253996696166, -9.949767454229203],\n              [-43.70354216388404, -10.034603883246703],\n              [-43.75281584740429, -10.106146854725807],\n              [-43.76159392391105, -10.168483282885063],\n              [-43.801869804353714, -10.20425476862465],\n              [-43.91346892970461, -10.43195741402954],\n              [-43.99378997769048, -10.454215715659814],\n              [-44.1188913008221, -10.58809511529823],\n              [-44.21699921472086, -10.62837099574088],\n              [-44.31082246048746, -10.60160829940746],\n              [-44.417917191135274, -10.58809511529823],\n              [-44.53852510589235, -10.628370995740852],\n              [-44.61884615387825, -10.686422755767879],\n              [-44.64561983654019, -10.73546572638871],\n              [-44.752714567188036, -10.784750396237527],\n              [-44.78399264455311, -10.85607364114577],\n              [-44.851042207657684, -10.878353915433223],\n              [-44.93137424197212, -10.860578035848874],\n              [-45.04297336732304, -10.896349521588448],\n              [-45.315214588645745, -10.780246001534408],\n              [-45.44031591177733, -10.619362206334714],\n              [-45.47159398914238, -10.485504779353462],\n              [-45.516143551388666, -10.414181534445163],\n              [-45.605473388780695, -10.333849500130768],\n              [-45.757117681674856, -10.329345105427691]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 20734,\n        \"fill\": \"#666\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-50.99377315487493, -20.101552509457804],\n              [-50.99759639720824, -19.66392309823233],\n              [-50.96429683539111, -19.511366940069024],\n              [-50.92379024204902, -19.464125727329417],\n              [-50.88082271111307, -19.459181879484575],\n              [-50.86416743704021, -19.437802484137762],\n              [-50.87092402909482, -19.423849846886768],\n              [-50.868891558314175, -19.377487540430693],\n              [-50.84391963353346, -19.310888416796388],\n              [-50.791943313191325, -19.238444566376614],\n              [-50.71319331018725, -19.160595442313166],\n              [-50.641870065278994, -19.118517803989278],\n              [-50.57752313899624, -19.112233624062057],\n              [-50.53162225833901, -19.087030986381905],\n              [-50.48977533291455, -19.0204318627476],\n              [-50.49899286256303, -18.95315158674356],\n              [-50.457596376608876, -18.876642794762475],\n              [-50.36826653921685, -18.768647185174018],\n              [-50.24699944474713, -18.690116908740833],\n              [-50.093773120542636, -18.641293664690863],\n              [-49.96012443380371, -18.61633272623868],\n              [-49.788671790544555, -18.614530968357457],\n              [-49.67797354413426, -18.6001169053076],\n              [-49.611824859970255, -18.56682832981899],\n              [-49.55332266047296, -18.51011690187437],\n              [-49.48829458182047, -18.522048054673263],\n              [-49.41674062401276, -18.602819542129453],\n              [-49.33665028892631, -18.584823935974214],\n              [-49.24754017810517, -18.46850068934934],\n              [-49.17937000948905, -18.404823929107764],\n              [-49.10826649115165, -18.388388381605793],\n              [-48.95369983486478, -18.325854199532813],\n              [-48.226943215344335, -18.340246289925574],\n              [-48.01791732846439, -18.434530961490992],\n              [-47.92881820397179, -18.445319536121303],\n              [-47.786171714155245, -18.37940156485672],\n              [-47.44641950392909, -18.170595404547655],\n              [-47.31884625687508, -18.083298037936274],\n              [-47.27947125537304, -18.061479189447695],\n              [-47.34652081847764, -17.878315119960547],\n              [-47.35551862155526, -17.824767754636625],\n              [-47.328744938893294, -17.744457692979296],\n              [-47.27069317886631, -17.66863005336795],\n              [-47.28846905845066, -17.548022138610875],\n              [-47.40906598687917, -17.49897916799003],\n              [-47.458119943828564, -17.52574186432345],\n              [-47.52944318873682, -17.454198892844303],\n              [-47.49839582427123, -17.32932828261211],\n              [-47.45361554912549, -17.34710416219646],\n              [-47.422348458089004, -17.27127652258511],\n              [-47.310749332738084, -17.141901517649842],\n              [-47.2126414188393, -17.07484096821669],\n              [-47.230417298423646, -17.025797997595845],\n              [-47.15009625043777, -16.976513327747043],\n              [-47.15909405351539, -16.918483540377125],\n              [-47.26619977049177, -16.6597335305066],\n              [-47.404572578504656, -16.570392706786023],\n              [-47.45361554912549, -16.494345340603786],\n              [-47.431346261166595, -16.409750610814257],\n              [-47.35102521318072, -16.30241418093844],\n              [-47.32424054419022, -16.22660851398419],\n              [-47.33752301540002, -16.146276479669766],\n              [-47.301971256231354, -16.03918174902192],\n              [-47.230417298423646, -16.034677354318845],\n              [-47.127815976150345, -15.923078228967924],\n              [-47.07854229263009, -15.936349713849197],\n              [-46.86434184500584, -15.882802348525274],\n              [-46.833074753969356, -15.8427461946535],\n              [-46.868846239708944, -15.592763274961158],\n              [-46.93139140811047, -15.543500577769436],\n              [-46.93589580281355, -15.431901452418515],\n              [-46.85534404192825, -15.324806721770685],\n              [-46.89111552766781, -15.239970292753185],\n              [-46.93139140811047, -15.226698807871912],\n              [-46.89111552766781, -15.04803913308784],\n              [-46.833074753969356, -15.012267647348267],\n              [-46.7349668400706, -15.016772042051343],\n              [-46.63665018592948, -15.070319407375266],\n              [-46.547320348537454, -15.039052316338768],\n              [-46.57859842590247, -14.914181706106575],\n              [-46.556318151615045, -14.869401430960849],\n              [-46.58309183427701, -14.793573791349502],\n              [-46.51604227117241, -14.713241757035078],\n              [-46.38666726623714, -14.771293517062077],\n              [-46.31534402132888, -14.847121156673424],\n              [-46.297348415173644, -14.909677311403499],\n              [-46.19024269819727, -14.93644000773692],\n              [-46.078643572846346, -14.922948796284771],\n              [-46.02509620752241, -14.869401430960849],\n              [-45.97604225057307, -14.985504951014832],\n              [-46.0741501644718, -15.248979082159337],\n              [-45.967044447495425, -15.186422927429248],\n              [-45.92676856705276, -15.128371167402264],\n              [-45.766115484752476, -15.146147046986613],\n              [-45.71256811942854, -15.123866772699188],\n              [-45.654516359401555, -15.043556711041788],\n              [-45.55191503712825, -14.93644000773692],\n              [-45.46259618606476, -14.940944402439996],\n              [-45.31971898334879, -14.856129946079577],\n              [-45.22589573758222, -14.74002642602558],\n              [-45.10102512735003, -14.717746151738154],\n              [-44.88232028502273, -14.597138236981039],\n              [-44.83754000987699, -14.516828175323752],\n              [-44.56079439385124, -14.347177289945833],\n              [-44.35986543110829, -14.271349650334457],\n              [-44.31982026356505, -14.244345254773094],\n              [-44.21249482001778, -14.240082559297988],\n              [-44.15894745469387, -14.271349650334486],\n              [-43.83764129009327, -14.315888226252241],\n              [-43.781391287947486, -14.342892621813633],\n              [-43.80006804647246, -14.369897017375024],\n              [-43.8608224433213, -14.534362355680116],\n              [-43.87949920184627, -14.624604058341333],\n              [-43.86441497275521, -14.659694391711156],\n              [-43.82415007864111, -14.695246150879854],\n              [-43.708046558587114, -14.735522031322503],\n              [-43.49384611096289, -14.789069396646426],\n              [-43.449296548716575, -14.780082579897353],\n              [-43.38674039398654, -14.699750545582901],\n              [-43.230371979818415, -14.63741411742373],\n              [-42.953615377464104, -14.677470271295505],\n              [-42.891070209062576, -14.749013242774652],\n              [-42.63232019919204, -14.940944402439996],\n              [-42.578542120968706, -14.931957585690924],\n              [-42.43139123644909, -15.034547921635692],\n              [-42.261740351071154, -15.106090893114839],\n              [-42.1769149083822, -15.106090893114839],\n              [-42.087596057318706, -15.181918532726186],\n              [-41.940214459899664, -15.172931715977143],\n              [-41.801841651886804, -15.110595287817915],\n              [-41.3599495451862, -15.494457607148604],\n              [-41.333164876195724, -15.717655857850389],\n              [-41.15902058244325, -15.780190039923411],\n              [-41.02964557750798, -15.73543173743478],\n              [-40.944820134819025, -15.673095309275581],\n              [-40.891042056595666, -15.69537558356302],\n              [-40.82871661476503, -15.681862399453777],\n              [-40.761667051660396, -15.739914159480776],\n              [-40.667843805893824, -15.717655857850431],\n              [-40.57424028669814, -15.757931738293095],\n              [-40.53396440625551, -15.797965919507703],\n              [-40.47592363255703, -15.77570761787743],\n              [-40.328542035138014, -15.824750588498276],\n              [-40.234949502270865, -15.8202461937952],\n              [-40.16789993916623, -15.896293559977423],\n              [-40.13211746709811, -15.891789165274304],\n              [-40.00274246216287, -15.994401473876223],\n              [-39.93569289905824, -15.998905868579271],\n              [-39.86436965414998, -16.110504993930192],\n              [-39.940197293761315, -16.31142297034461],\n              [-40.05628982748678, -16.396237426705014],\n              [-40.13211746709811, -16.503354130009953],\n              [-40.13662186180122, -16.543630010452603],\n              [-40.25271439552665, -16.565888312082905],\n              [-40.27499466981408, -16.614953255360874],\n              [-40.2839924728917, -16.74454798686702],\n              [-40.24371659244903, -16.833647111359625],\n              [-40.29749467067239, -16.87842738650535],\n              [-40.47141923785398, -16.869418597099184],\n              [-40.52496660317789, -16.931974751829273],\n              [-40.57424028669814, -17.13289272824369],\n              [-40.56524248362052, -17.26226773317896],\n              [-40.60551836406319, -17.311332676456885],\n              [-40.60979204586684, -17.391862464685104],\n              [-40.49819292051592, -17.418647133675606],\n              [-40.48041704093157, -17.557030928017028],\n              [-40.41336747782697, -17.557030928017028],\n              [-40.382320113361345, -17.623849778222223],\n              [-40.2839924728917, -17.717673023988795],\n              [-40.208164833280364, -17.766715994609626],\n              [-40.1858955453215, -17.816000664458443],\n              [-40.23044510756779, -17.918591000403126],\n              [-40.208164833280364, -17.976642760430195],\n              [-40.21694290978709, -17.97213836572712],\n              [-40.42686967560766, -17.89182830406979],\n              [-40.47592363255703, -17.927599789809364],\n              [-40.53396440625551, -17.900595394247972],\n              [-40.667843805893824, -17.95436248614277],\n              [-40.72589556592084, -17.945375669393698],\n              [-40.788440734322364, -17.97213836572712],\n              [-40.90904864907944, -17.97213836572712],\n              [-40.77516924944109, -18.092746280484192],\n              [-40.7661714463635, -18.137306829059042],\n              [-40.83749469127176, -18.15079804051119],\n              [-40.91354205745398, -18.10151337066239],\n              [-41.01614337972728, -18.173078314798616],\n              [-41.0606929419736, -18.177582709501706],\n              [-41.1412447028589, -18.29794892503081],\n              [-41.1277425050782, -18.333720410770383],\n              [-41.0251411828049, -18.40526338224953],\n              [-41.002641181946586, -18.454328325527456],\n              [-41.02964557750798, -18.637250695786648],\n              [-40.926824528663786, -18.695302455813646],\n              [-40.93131793703833, -18.806901581164553],\n              [-41.091971019338644, -18.829401582022868],\n              [-41.19479206818281, -18.806901581164553],\n              [-41.23484822205458, -18.851681856310293],\n              [-41.163524977146324, -18.905229221634215],\n              [-41.10547321711931, -18.887233615478976],\n              [-41.0251411828049, -18.981056861245563],\n              [-41.05191486546687, -19.03460422656947],\n              [-40.944820134819025, -19.14620335192039],\n              [-40.926824528663786, -19.293573963010886],\n              [-40.9580916197003, -19.472233637794957],\n              [-41.04742145709233, -19.489987544722226],\n              [-41.02964557750798, -19.548039304749224],\n              [-41.15902058244325, -19.659638430100145],\n              [-41.185794265105216, -19.865082773874718],\n              [-41.30639119353373, -19.954401624938214],\n              [-41.36444295356074, -20.186366965818237],\n              [-41.404499107432514, -20.21315163480874],\n              [-41.71701620919785, -20.208647240105662],\n              [-41.85540000353927, -20.369531035305386],\n              [-41.79734824351226, -20.4275827953324],\n              [-41.79734824351226, -20.53467752598023],\n              [-41.85089560883617, -20.623996377043724],\n              [-41.81083945496442, -20.64627665133115],\n              [-41.88217368620121, -20.75787577668207],\n              [-41.864397806616864, -20.77565165626642],\n              [-41.92694297501842, -20.82919902159034],\n              [-41.96249473418709, -20.90975078247564],\n              [-41.99826621992668, -20.932031056763066],\n              [-42.096593860396325, -20.923022267356913],\n              [-42.14114342264264, -20.963298147799563],\n              [-42.096593860396325, -21.003354301671337],\n              [-42.18141930308528, -21.16399639764309],\n              [-42.22146447062852, -21.338151677724113],\n              [-42.29729211023985, -21.405190254500155],\n              [-42.30179650494293, -21.48552228881458],\n              [-42.364341673344484, -21.592617019462423],\n              [-42.36884606804756, -21.632892899905073],\n              [-42.28402062535858, -21.641901689311226],\n              [-42.27951623065553, -21.71322493421951],\n              [-43.06342373126233, -22.063556978833603],\n              [-43.13227505224819, -22.02574203598482],\n              [-43.341971105169364, -22.00348373435446],\n              [-43.46256803359785, -22.05703109967841],\n              [-43.56516935587115, -22.065798189856594],\n              [-43.81537200213438, -22.065798189856594],\n              [-43.89569305012026, -22.106074070299258],\n              [-44.09211761816013, -22.173112647075314],\n              [-44.21699921472086, -22.24894028668666],\n              [-44.29304658090311, -22.23995346993759],\n              [-44.44469087379724, -22.25344468138975],\n              [-44.53402071118927, -22.302487652010583],\n              [-44.6010702742939, -22.316000836119827],\n              [-44.66339571612457, -22.369548201443706],\n              [-44.73044527922917, -22.360539412037582],\n              [-44.833046601502474, -22.405099960612404],\n              [-44.92236545256597, -22.449880235758172],\n              [-45.056244852204316, -22.467656115342507],\n              [-45.24389134373746, -22.56147936110908],\n              [-45.2706650263994, -22.60601793702685],\n              [-45.40904882074085, -22.646293817469484],\n              [-45.4709238231012, -22.611642937241413],\n              [-45.52964574916939, -22.65079821217256],\n              [-45.58319311449327, -22.615026726433],\n              [-45.629775147520235, -22.622673211099695],\n              [-45.672292238985904, -22.619531121136077],\n              [-45.801897956820596, -22.69984118279342],\n              [-45.743846196793584, -22.726625851783922],\n              [-45.743846196793584, -22.797949096692193],\n              [-45.79290015374298, -22.85171618858699],\n              [-45.85994971684758, -22.860505251422268],\n              [-45.90899268746841, -22.820449097550494],\n              [-46.02059181281933, -22.873996462874416],\n              [-46.14569313595095, -22.891772342458765],\n              [-46.15447121245768, -22.847233766540995],\n              [-46.288570338666915, -22.882763553052598],\n              [-46.35989358357517, -22.84272937183792],\n              [-46.36889138665279, -22.748906126071347],\n              [-46.47149270892612, -22.68206530320907],\n              [-46.39566506931476, -22.615026726433],\n              [-46.453716829341744, -22.516699085963353],\n              [-46.5430466667338, -22.472138537388503],\n              [-46.547320348537454, -22.440871446352006],\n              [-46.641143594304026, -22.40960435531551],\n              [-46.69919535433101, -22.320263531594932],\n              [-46.66342386859145, -22.204401710768877],\n              [-46.60086771386136, -22.13285873928976],\n              [-46.658919473888375, -22.052526704975335],\n              [-46.618874306345134, -21.98546615554217],\n              [-46.658919473888375, -21.90515609388484],\n              [-46.667917276965966, -21.811552574689145],\n              [-46.62787210942275, -21.771276694246495],\n              [-46.60537210856444, -21.681957843183],\n              [-46.56082254631815, -21.672949053776847],\n              [-46.49377298321352, -21.52579816925723],\n              [-46.50727518099421, -21.458737619824078],\n              [-46.60537210856444, -21.42747052878758],\n              [-46.65464579208472, -21.373923163463658],\n              [-46.685693156550315, -21.396203437751083],\n              [-46.81529887438501, -21.3606516785824],\n              [-46.895619922370884, -21.405190254500155],\n              [-47.00271465301876, -21.40070783245409],\n              [-46.99394756284053, -21.34265607242716],\n              [-47.0562730046712, -21.195263488679586],\n              [-47.1233225677758, -21.132949033177482],\n              [-47.14559185573469, -20.98107402738391],\n              [-47.22141949534603, -20.914013477950732],\n              [-47.212641418839326, -20.806918747302916],\n              [-47.109820369995106, -20.632763467221906],\n              [-47.15458965881231, -20.525668736574076],\n              [-47.2526975727111, -20.4766257659532],\n              [-47.29297345315376, -20.423078400629322],\n              [-47.26619977049177, -20.284694606287886],\n              [-47.23492169312672, -20.204362571973462],\n              [-47.244369935674655, -20.17399635987759],\n              [-47.328964665464184, -20.117526631160942],\n              [-47.427742745404146, -20.03629371790589],\n              [-47.45992170170979, -20.00098365796518],\n              [-47.51774274883738, -19.994216079582017],\n              [-47.59424055448994, -20.018517838321486],\n              [-47.655895830279405, -20.02280250645373],\n              [-47.695490558352276, -19.9910739896184],\n              [-47.74971907604595, -19.97712135236742],\n              [-47.81857039703178, -19.98072486812987],\n              [-47.86019759588535, -20.011991959166366],\n              [-47.861768640867155, -20.05565162880059],\n              [-47.9087901270359, -20.08175514542137],\n              [-47.991143645802424, -20.082875750932857],\n              [-48.05121689028155, -20.12022926798278],\n              [-48.10949936320796, -20.116625752220315],\n              [-48.178339697865255, -20.082875750932857],\n              [-48.25326645853599, -20.093005145850512],\n              [-48.36374497837542, -20.138224874138018],\n              [-48.71564806797133, -20.143849874352583],\n              [-48.81194323766033, -20.158923117115094],\n              [-48.85829455778787, -20.232729272274312],\n              [-48.886869998331065, -20.36997048844715],\n              [-48.91836780226697, -20.42914285398564],\n              [-48.95256824302476, -20.41002664231894],\n              [-48.977990607275785, -20.338241971611808],\n              [-48.99464588134862, -20.21359108795042],\n              [-49.03964588306525, -20.18726784475885],\n              [-49.11277088585473, -20.259272242036786],\n              [-49.166318251178666, -20.29504372777643],\n              [-49.19984852589528, -20.294362575406637],\n              [-49.23899281449786, -20.24553933135674],\n              [-49.28354237674415, -20.14857399562655],\n              [-49.28804677144723, -20.073647234955814],\n              [-49.2587901785343, -20.01695777966829],\n              [-49.2783678159999, -19.98703102071417],\n              [-49.37714589593983, -19.978483657106864],\n              [-50.36444329688351, -19.858556894719527],\n              [-50.43374505733965, -19.800263435464558],\n              [-50.4886437410745, -19.79081519291657],\n              [-50.58404901815143, -19.821203377669605],\n              [-50.99377315487493, -20.101552509457804]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 3885,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-40.9675398622482, -21.27559552299401],\n              [-41.06969074505122, -21.213281067491906],\n              [-41.26611531309109, -21.231056947076254],\n              [-41.39121663622271, -21.186496398501404],\n              [-41.44027059317207, -21.199767883382663],\n              [-41.71252280082331, -21.110449032319167],\n              [-41.73051840697852, -21.043630182113986],\n              [-41.71252280082331, -20.97656963268082],\n              [-41.74378989185979, -20.820431931412145],\n              [-41.864397806616864, -20.77565165626642],\n              [-41.88217368620121, -20.75787577668207],\n              [-41.81083945496442, -20.64627665133115],\n              [-41.85089560883617, -20.623996377043724],\n              [-41.79734824351226, -20.53467752598023],\n              [-41.79734824351226, -20.4275827953324],\n              [-41.85540000353927, -20.369531035305386],\n              [-41.71701620919785, -20.208647240105662],\n              [-41.404499107432514, -20.21315163480874],\n              [-41.36444295356074, -20.186366965818237],\n              [-41.30639119353373, -19.954401624938214],\n              [-41.185794265105216, -19.865082773874718],\n              [-41.15902058244325, -19.659638430100145],\n              [-41.02964557750798, -19.548039304749224],\n              [-41.04742145709233, -19.489987544722226],\n              [-40.9580916197003, -19.472233637794957],\n              [-40.926824528663786, -19.293573963010886],\n              [-40.944820134819025, -19.14620335192039],\n              [-41.05191486546687, -19.03460422656947],\n              [-41.0251411828049, -18.981056861245563],\n              [-41.10547321711931, -18.887233615478976],\n              [-41.163524977146324, -18.905229221634215],\n              [-41.23484822205458, -18.851681856310293],\n              [-41.19479206818281, -18.806901581164553],\n              [-41.091971019338644, -18.829401582022868],\n              [-40.93131793703833, -18.806901581164553],\n              [-40.926824528663786, -18.695302455813646],\n              [-41.02964557750798, -18.637250695786648],\n              [-41.002641181946586, -18.454328325527456],\n              [-41.0251411828049, -18.40526338224953],\n              [-41.1277425050782, -18.333720410770383],\n              [-41.1412447028589, -18.29794892503081],\n              [-41.0606929419736, -18.177582709501706],\n              [-41.01614337972728, -18.173078314798616],\n              [-40.91354205745398, -18.10151337066239],\n              [-40.83749469127176, -18.15079804051119],\n              [-40.7661714463635, -18.137306829059042],\n              [-40.77516924944109, -18.092746280484192],\n              [-40.90904864907944, -17.97213836572712],\n              [-40.788440734322364, -17.97213836572712],\n              [-40.72589556592084, -17.945375669393698],\n              [-40.667843805893824, -17.95436248614277],\n              [-40.53396440625551, -17.900595394247972],\n              [-40.47592363255703, -17.927599789809364],\n              [-40.42686967560766, -17.89182830406979],\n              [-40.21694290978709, -17.97213836572712],\n              [-40.208164833280364, -17.976642760430195],\n              [-40.1858955453215, -18.007931824123773],\n              [-39.672449480813185, -18.32473359402131],\n              [-39.667714373210686, -18.325854199532813],\n              [-39.73971877048868, -18.639953332608485],\n              [-39.74197096784022, -18.846056856095714],\n              [-39.69989332951633, -19.27781956787865],\n              [-39.73139113345226, -19.453996332411762],\n              [-39.78336745379437, -19.571681883776108],\n              [-39.84479201668441, -19.649069582040724],\n              [-40.00139114375193, -19.74199194886667],\n              [-40.14179642254547, -19.96835426218921],\n              [-40.202770545965194, -20.20594460328381],\n              [-40.298845989083304, -20.29258279018255],\n              [-40.31864335311977, -20.42578103745116],\n              [-40.39604203771293, -20.56954813277919],\n              [-40.59652056098557, -20.783737594074864],\n              [-40.727016171432325, -20.846074022234063],\n              [-40.78934161326299, -20.906147266713177],\n              [-40.82871661476503, -21.031237603516246],\n              [-40.95449909026638, -21.23780255280232],\n              [-40.9675398622482, -21.27559552299401]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 15126,\n        \"fill\": \"#666\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-46.02509620752241, -14.869401430960849],\n              [-45.93127296175584, -14.749013242774652],\n              [-45.91349708217152, -14.690983455404748],\n              [-45.96254005279235, -14.534604054908087],\n              [-45.96254005279235, -14.467763232045797],\n              [-45.92249488524911, -14.35168168464891],\n              [-46.01159400974177, -14.298112346667835],\n              [-46.03836769240368, -14.253354044179261],\n              [-46.12769752979574, -14.18203079927099],\n              [-46.17246681861292, -14.074914095966065],\n              [-46.22152077556231, -13.998866729783842],\n              [-46.26179665600495, -13.869491724848501],\n              [-46.270574732511704, -13.655082536981979],\n              [-46.18574928982272, -13.405099617289665],\n              [-46.09641945243072, -13.351552251965757],\n              [-46.08314796754942, -13.253444338066984],\n              [-46.176971213315994, -13.217672852327382],\n              [-46.18124489511965, -13.159621092300398],\n              [-46.150197530654054, -13.025741692662052],\n              [-46.0741501644718, -12.976698722041192],\n              [-46.087641375923965, -12.914142567311146],\n              [-46.234792260443555, -12.798039047257149],\n              [-46.234792260443555, -12.713224590896743],\n              [-46.15896462083222, -12.601625465545808],\n              [-46.15896462083222, -12.50329782507616],\n              [-46.31534402132888, -12.42296579076168],\n              [-46.3466220986939, -12.342655729104393],\n              [-46.33762429561631, -12.128444295151638],\n              [-46.32412209783561, -12.092672809412065],\n              [-46.24829445822425, -12.048112260837215],\n              [-46.21252297248469, -11.998849563645479],\n              [-46.078643572846346, -11.927526318737222],\n              [-46.10092384713377, -11.864970164007147],\n              [-46.15896462083222, -11.83370307297065],\n              [-46.24829445822425, -11.842689889719722],\n              [-46.27506814088622, -11.766862250108375],\n              [-46.243790063521175, -11.726608342322805],\n              [-46.105417255508314, -11.66405218759273],\n              [-46.08314796754942, -11.601496032862656],\n              [-46.19024269819727, -11.543444272835643],\n              [-46.426943146679804, -11.498905696917888],\n              [-46.48926858851044, -11.414069267900388],\n              [-46.55182474324056, -11.378297782160814],\n              [-46.56982034939574, -11.315983326658738],\n              [-46.529544468953105, -11.235431565773396],\n              [-46.46249490584847, -11.177599532317288],\n              [-46.36889138665279, -10.967672766496719],\n              [-46.24829445822425, -10.914125401172797],\n              [-46.234792260443555, -10.8828583101363],\n              [-46.30184182354819, -10.757746000676136],\n              [-46.087641375923965, -10.583832419823125],\n              [-46.03836769240368, -10.570319235713882],\n              [-45.85994971684758, -10.467728899769114],\n              [-45.757117681674856, -10.329345105427691],\n              [-45.605473388780695, -10.333849500130768],\n              [-45.516143551388666, -10.414181534445163],\n              [-45.47159398914238, -10.485504779353462],\n              [-45.44031591177733, -10.619362206334714],\n              [-45.315214588645745, -10.780246001534408],\n              [-45.04297336732304, -10.896349521588448],\n              [-44.93137424197212, -10.860578035848874],\n              [-44.851042207657684, -10.878353915433223],\n              [-44.78399264455311, -10.85607364114577],\n              [-44.752714567188036, -10.784750396237527],\n              [-44.64561983654019, -10.73546572638871],\n              [-44.61884615387825, -10.686422755767879],\n              [-44.53852510589235, -10.628370995740852],\n              [-44.417917191135274, -10.58809511529823],\n              [-44.31082246048746, -10.60160829940746],\n              [-44.21699921472086, -10.62837099574088],\n              [-44.1188913008221, -10.58809511529823],\n              [-43.99378997769048, -10.454215715659814],\n              [-43.91346892970461, -10.43195741402954],\n              [-43.801869804353714, -10.20425476862465],\n              [-43.76159392391105, -10.168483282885063],\n              [-43.75281584740429, -10.106146854725807],\n              [-43.70354216388404, -10.034603883246703],\n              [-43.71253996696166, -9.949767454229203],\n              [-43.681272875925174, -9.802396843138695],\n              [-43.72604216474235, -9.748849477814815],\n              [-43.78409392476934, -9.56592710755561],\n              [-43.828643487015654, -9.498866558122458],\n              [-43.810867607431305, -9.427543313214187],\n              [-43.69477507370584, -9.445319192798536],\n              [-43.65899260163772, -9.364987158484112],\n              [-43.60544523631381, -9.338224462150691],\n              [-43.53839567320921, -9.360504736438116],\n              [-43.449296548716575, -9.302452976411118],\n              [-43.414865395059394, -9.33552182532884],\n              [-43.377742590908895, -9.414052101762039],\n              [-43.185822417572126, -9.418556496465044],\n              [-43.127770657545085, -9.373995947890265],\n              [-43.04294521485613, -9.39627622217769],\n              [-43.02944301707544, -9.436332376049464],\n              [-42.936971089719805, -9.474345072812028],\n              [-42.93134608950521, -9.516862164277654],\n              [-42.851025041519335, -9.547931501400399],\n              [-42.75269740104969, -9.521146832409883],\n              [-42.61881800141134, -9.56592710755561],\n              [-42.57426843916505, -9.485595073241143],\n              [-42.48944299647607, -9.498866558122458],\n              [-42.43139123644909, -9.409547707058962],\n              [-42.31079430802055, -9.306957371114194],\n              [-42.15014122572023, -9.293444187004965],\n              [-42.04304649507242, -9.208849457215422],\n              [-41.9179451719408, -9.213112152690485],\n              [-41.85089560883617, -9.253388033133191],\n              [-41.79734824351226, -9.173077971475848],\n              [-41.73479208878217, -9.132802091033199],\n              [-41.73479208878217, -8.981146811810504],\n              [-41.60992147855001, -8.96315120565528],\n              [-41.55637411322607, -8.972138022404351],\n              [-41.498322353199114, -8.936366536664764],\n              [-41.46704427583404, -8.865043291756422],\n              [-41.39999471272944, -8.784733230099178],\n              [-41.36871663536442, -8.713168285962922],\n              [-41.324167073118076, -8.735448560250362],\n              [-41.15902058244325, -8.708663891259846],\n              [-41.10547321711931, -8.717672680666027],\n              [-41.100968822416235, -8.775724440693025],\n              [-41.003992500357526, -8.781349440907604],\n              [-40.98037189398772, -8.815780594564785],\n              [-40.891042056595666, -8.856056475007449],\n              [-40.891042056595666, -9.03469417713444],\n              [-40.855490297427, -9.092745937161425],\n              [-40.85099688905245, -9.150797697188352],\n              [-40.70361529163341, -9.217616547393618],\n              [-40.69034380675214, -9.342728856853768],\n              [-40.743891172076076, -9.42303891851111],\n              [-40.68583941204906, -9.47210386178898],\n              [-40.56479204415024, -9.460172708990143],\n              [-40.41269731178579, -9.396957374547355],\n              [-40.31977494495982, -9.2930047338632],\n              [-40.27319291193285, -9.144952970402969],\n              [-40.212218788513155, -9.101513027339593],\n              [-40.077669222833606, -9.08824154245832],\n              [-40.00499465951441, -9.058095056933354],\n              [-39.94874465736862, -9.022103844622904],\n              [-39.90914992929572, -8.98024593286982],\n              [-39.887770533948924, -8.923995930724061],\n              [-39.88461745765676, -8.853353838185598],\n              [-39.83489333466616, -8.809013016181552],\n              [-39.73836745207774, -8.791237136597275],\n              [-39.68774245014657, -8.74940119750137],\n              [-39.682798602301716, -8.683021800437942],\n              [-39.60089552300548, -8.619564766767255],\n              [-39.441824472015526, -8.559271795717166],\n              [-39.33269727058703, -8.565797674872442],\n              [-39.25664990440481, -8.64026300974433],\n              [-39.098249019456034, -8.714970043844119],\n              [-38.834994614882476, -8.800245926003356],\n              [-38.70539988337629, -8.879896807948114],\n              [-38.66781565342694, -8.896090656222128],\n              [-38.61922312227642, -8.896090656222128],\n              [-38.57759592342282, -8.86053889705343],\n              [-38.54429636160569, -8.831073563898173],\n              [-38.50469064720423, -8.834896806231512],\n              [-38.48399240422714, -8.877655596925138],\n              [-38.48219064634591, -8.959547689892815],\n              [-38.43291696282563, -9.00364681266882],\n              [-38.33594064076692, -9.01017269182401],\n              [-38.29432442824191, -9.043021814170856],\n              [-38.30759591312315, -9.102194179709358],\n              [-38.28307442781272, -9.203663910142609],\n              [-38.2211994254524, -9.34767270469861],\n              [-37.97572090046313, -9.512138043003716],\n              [-38.04299019013865, -9.605983261427355],\n              [-37.99371650661834, -9.646237169212938],\n              [-38.02949897868646, -9.726569203527362],\n              [-37.96266914215278, -9.873939814617813],\n              [-37.90012397375119, -9.913995968489587],\n              [-37.90012397375119, -9.949767454229232],\n              [-37.77951605899412, -10.079362185735349],\n              [-37.784020453697195, -10.30684510456939],\n              [-37.83756781902116, -10.42294862462336],\n              [-37.824065621240436, -10.548038961426414],\n              [-37.784020453697195, -10.62837099574088],\n              [-37.81529853106224, -10.677413966361712],\n              [-37.97144721865948, -10.75348330520103],\n              [-38.01172309910211, -10.75348330520103],\n              [-38.10982002667234, -10.708703030055304],\n              [-38.190141074658214, -10.717689846804376],\n              [-38.243919152881574, -10.824806550109301],\n              [-38.234921349803955, -10.896349521588448],\n              [-38.17686958977697, -10.980944251377977],\n              [-38.10982002667234, -11.030228921226794],\n              [-38.06076606972297, -11.168590742911121],\n              [-37.9804450217371, -11.239913987819392],\n              [-38.00721870439904, -11.35601750787339],\n              [-37.9669428239564, -11.400797783019115],\n              [-37.85107001680183, -11.440853936890889],\n              [-37.797291938578496, -11.525668393251294],\n              [-37.65891913056561, -11.556957456944886],\n              [-37.63214544790364, -11.521163998548232],\n              [-37.574093687876626, -11.539181577360537],\n              [-37.41186956059454, -11.497323665607496],\n              [-37.46924016825176, -11.653703066104185],\n              [-37.68861517662026, -12.100099567507868],\n              [-37.95727485483758, -12.475392550574156],\n              [-38.01914985719793, -12.591276344057235],\n              [-38.23964547107789, -12.844181627142348],\n              [-38.40186959835995, -12.9661298739818],\n              [-38.44732003954698, -12.967030752922426],\n              [-38.49884592041872, -12.95668163143381],\n              [-38.52494943703948, -12.76226756151749],\n              [-38.65409372907533, -12.644603982810281],\n              [-38.69099680665494, -12.62390573983322],\n              [-38.743874005937755, -12.748556623494494],\n              [-38.7879731287137, -12.782746077923775],\n              [-38.85186961552614, -12.790172836019565],\n              [-38.78369944691008, -12.844401353713238],\n              [-38.76367136997413, -12.90717723501416],\n              [-38.833192857001166, -13.032948724186951],\n              [-38.83521434145325, -13.147250486359724],\n              [-38.95919505907341, -13.273021975532515],\n              [-39.03096874345198, -13.365043463417862],\n              [-39.0674213815613, -13.480465831102151],\n              [-39.08924023004988, -13.588241714119647],\n              [-39.03502269868477, -13.558776380964389],\n              [-39.00914989496346, -13.581496108393651],\n              [-38.98867137855723, -13.615026383110262],\n              [-39.00127269739727, -13.664530779529912],\n              [-39.04109813836959, -13.758112326068499],\n              [-39.03502269868477, -13.99100051854623],\n              [-39.04807445699515, -14.04386673150043],\n              [-39.00846874259361, -14.101237339157706],\n              [-38.966391104269746, -14.003371124486875],\n              [-38.94232005842963, -14.030595246619157],\n              [-39.059544183995115, -14.654750543866328],\n              [-39.01342357676708, -14.935539128796336],\n              [-38.99609813665302, -15.253922930004194],\n              [-38.94322093737031, -15.564418547317416],\n              [-38.8851691773433, -15.842065042283764],\n              [-38.88066478264017, -15.864345316571132],\n              [-38.96076610405515, -16.186552360112387],\n              [-39.06314769975762, -16.5044747355214],\n              [-39.125022702117974, -16.76366419853366],\n              [-39.16394726414967, -17.04357387718011],\n              [-39.20287182618148, -17.178112456531096],\n              [-39.21524243212207, -17.315815098502867],\n              [-39.17069286987578, -17.64206511094835],\n              [-39.15404858213145, -17.703940113308647],\n              [-39.27846875289339, -17.849530939174997],\n              [-39.412567879102596, -17.919953305142656],\n              [-39.486824473732156, -17.990155944539367],\n              [-39.65083937256685, -18.252267770944457],\n              [-39.667714373210686, -18.325854199532813],\n              [-39.672449480813185, -18.32473359402131],\n              [-40.1858955453215, -18.007931824123773],\n              [-40.208164833280364, -17.976642760430195],\n              [-40.23044510756779, -17.918591000403126],\n              [-40.1858955453215, -17.816000664458443],\n              [-40.208164833280364, -17.766715994609626],\n              [-40.2839924728917, -17.717673023988795],\n              [-40.382320113361345, -17.623849778222223],\n              [-40.41336747782697, -17.557030928017028],\n              [-40.48041704093157, -17.557030928017028],\n              [-40.49819292051592, -17.418647133675606],\n              [-40.60979204586684, -17.391862464685104],\n              [-40.60551836406319, -17.311332676456885],\n              [-40.56524248362052, -17.26226773317896],\n              [-40.57424028669814, -17.13289272824369],\n              [-40.52496660317789, -16.931974751829273],\n              [-40.47141923785398, -16.869418597099184],\n              [-40.29749467067239, -16.87842738650535],\n              [-40.24371659244903, -16.833647111359625],\n              [-40.2839924728917, -16.74454798686702],\n              [-40.27499466981408, -16.614953255360874],\n              [-40.25271439552665, -16.565888312082905],\n              [-40.13662186180122, -16.543630010452603],\n              [-40.13211746709811, -16.503354130009953],\n              [-40.05628982748678, -16.396237426705014],\n              [-39.940197293761315, -16.31142297034461],\n              [-39.86436965414998, -16.110504993930192],\n              [-39.93569289905824, -15.998905868579271],\n              [-40.00274246216287, -15.994401473876223],\n              [-40.13211746709811, -15.891789165274304],\n              [-40.16789993916623, -15.896293559977423],\n              [-40.234949502270865, -15.8202461937952],\n              [-40.328542035138014, -15.824750588498276],\n              [-40.47592363255703, -15.77570761787743],\n              [-40.53396440625551, -15.797965919507703],\n              [-40.57424028669814, -15.757931738293095],\n              [-40.667843805893824, -15.717655857850431],\n              [-40.761667051660396, -15.739914159480776],\n              [-40.82871661476503, -15.681862399453777],\n              [-40.891042056595666, -15.69537558356302],\n              [-40.944820134819025, -15.673095309275581],\n              [-41.02964557750798, -15.73543173743478],\n              [-41.15902058244325, -15.780190039923411],\n              [-41.333164876195724, -15.717655857850389],\n              [-41.3599495451862, -15.494457607148604],\n              [-41.801841651886804, -15.110595287817915],\n              [-41.940214459899664, -15.172931715977143],\n              [-42.087596057318706, -15.181918532726186],\n              [-42.1769149083822, -15.106090893114839],\n              [-42.261740351071154, -15.106090893114839],\n              [-42.43139123644909, -15.034547921635692],\n              [-42.578542120968706, -14.931957585690924],\n              [-42.63232019919204, -14.940944402439996],\n              [-42.891070209062576, -14.749013242774652],\n              [-42.953615377464104, -14.677470271295505],\n              [-43.230371979818415, -14.63741411742373],\n              [-43.38674039398654, -14.699750545582901],\n              [-43.449296548716575, -14.780082579897353],\n              [-43.49384611096289, -14.789069396646426],\n              [-43.708046558587114, -14.735522031322503],\n              [-43.82415007864111, -14.695246150879854],\n              [-43.86441497275521, -14.659694391711156],\n              [-43.87949920184627, -14.624604058341333],\n              [-43.8608224433213, -14.534362355680116],\n              [-43.80006804647246, -14.369897017375024],\n              [-43.781391287947486, -14.342892621813633],\n              [-43.83764129009327, -14.315888226252241],\n              [-44.15894745469387, -14.271349650334486],\n              [-44.21249482001778, -14.240082559297988],\n              [-44.31982026356505, -14.244345254773094],\n              [-44.35986543110829, -14.271349650334457],\n              [-44.56079439385124, -14.347177289945833],\n              [-44.83754000987699, -14.516828175323752],\n              [-44.88232028502273, -14.597138236981039],\n              [-45.10102512735003, -14.717746151738154],\n              [-45.22589573758222, -14.74002642602558],\n              [-45.31971898334879, -14.856129946079577],\n              [-45.46259618606476, -14.940944402439996],\n              [-45.55191503712825, -14.93644000773692],\n              [-45.654516359401555, -15.043556711041788],\n              [-45.71256811942854, -15.123866772699188],\n              [-45.766115484752476, -15.146147046986613],\n              [-45.92676856705276, -15.128371167402264],\n              [-45.967044447495425, -15.186422927429248],\n              [-46.0741501644718, -15.248979082159337],\n              [-45.97604225057307, -14.985504951014832],\n              [-46.02509620752241, -14.869401430960849]\n            ]\n          ],\n          [\n            [\n              [-38.90721873873133, -13.40105664838535],\n              [-38.903615222968824, -13.473500498805151],\n              [-38.93781566372661, -13.5322334112019],\n              [-38.97764110469893, -13.523444348366638],\n              [-38.993164786931686, -13.484069346864658],\n              [-39.02219066694528, -13.44559522430319],\n              [-39.00666698471241, -13.415448738778196],\n              [-38.980124014949865, -13.398354011563526],\n              [-38.90721873873133, -13.40105664838535]\n            ]\n          ],\n          [\n            [\n              [-38.60121652979262, -12.992672843744288],\n              [-38.743874005937755, -13.09706493757028],\n              [-38.783018294540284, -13.118664059487969],\n              [-38.78707224977313, -13.05498729924642],\n              [-38.684921366970116, -12.974896964159996],\n              [-38.66804636632634, -12.880172839452769],\n              [-38.61449900100246, -12.924052235657825],\n              [-38.60031565085205, -12.972414053909006],\n              [-38.60121652979262, -12.992672843744288]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 8843,\n        \"fill\": \"#999\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-40.53846880095858, -7.391754661336265],\n              [-40.53396440625551, -7.324694111903099],\n              [-40.58301836320487, -7.195319106967844],\n              [-40.511695118296615, -7.0033879473025],\n              [-40.440141160488906, -6.905082279489932],\n              [-40.41787187253004, -6.81147876029425],\n              [-40.48041704093157, -6.735431394112013],\n              [-40.614296440569916, -6.708646725121511],\n              [-40.70811968633649, -6.659603754500665],\n              [-40.72139117121776, -6.570262930780089],\n              [-40.770664854738015, -6.494457263825836],\n              [-40.79744952372852, -6.378353743771839],\n              [-40.80621661390671, -6.253483133539646],\n              [-40.891042056595666, -6.012267304025499],\n              [-40.891042056595666, -5.905172573377655],\n              [-40.92232013396071, -5.681974322675813],\n              [-40.917815739257634, -5.60164228836139],\n              [-40.94909381662268, -5.418500191531322],\n              [-41.0251411828049, -5.364952826207414],\n              [-41.06969074505122, -5.306901066180416],\n              [-41.0606929419736, -5.168517271838979],\n              [-41.11447102019693, -5.065926935894225],\n              [-41.12324909670366, -5.007875175867227],\n              [-41.185794265105216, -4.914051930100655],\n              [-41.18128987040211, -4.811439621498806],\n              [-41.22607014554785, -4.726625165138387],\n              [-41.2438460251322, -4.615026039787466],\n              [-41.23484822205458, -4.539198400176133],\n              [-41.1412447028589, -4.427379548254322],\n              [-41.074195139754295, -4.324767239652473],\n              [-41.11874470200058, -4.177396628561979],\n              [-41.18128987040211, -4.123849263238057],\n              [-41.230343827351504, -4.043517228923633],\n              [-41.28389119267544, -3.811332161472734],\n              [-41.35544515048312, -3.708719852870885],\n              [-41.38221883314509, -3.592616332816888],\n              [-41.44926839624969, -3.436478631548212],\n              [-41.42676839539138, -3.320375111494201],\n              [-41.37771443844201, -3.271332140873369],\n              [-41.25711751001347, -3.079181254637149],\n              [-41.26859822334205, -2.916056248414421],\n              [-41.194572341611945, -2.886129489460302],\n              [-40.875518374362855, -2.869693941958332],\n              [-40.474572314146116, -2.795668060228223],\n              [-40.23539994174115, -2.813224213241682],\n              [-39.964718779071745, -2.861608004149886],\n              [-39.77189772679432, -2.985797462012329],\n              [-39.60944288661278, -3.056219827979987],\n              [-39.511115246143135, -3.125521588436129],\n              [-39.35271436119439, -3.197306259143247],\n              [-39.01432445570771, -3.390116325092123],\n              [-38.89596873830217, -3.501715450443044],\n              [-38.68627268538103, -3.653832155464585],\n              [-38.475895480090145, -3.717486943049067],\n              [-38.361824430816796, -3.87634925379669],\n              [-38.271824427383564, -3.948111951846712],\n              [-38.04884590325261, -4.216332176922251],\n              [-37.795720893596666, -4.404198395026285],\n              [-37.62628973478962, -4.592064613130319],\n              [-37.30139104075511, -4.713111981029158],\n              [-37.230748948216586, -4.824271653238313],\n              [-37.54281561051161, -4.93204753625588],\n              [-37.59659368873494, -4.958832205246381],\n              [-37.721464298967135, -5.061422541191149],\n              [-37.913395458632465, -5.463280466677062],\n              [-38.0474945848417, -5.614913773242662],\n              [-38.07854194930732, -5.686478717378904],\n              [-38.07854194930732, -5.762306356990237],\n              [-38.12781563282758, -5.878387904387154],\n              [-38.301740200009135, -6.074823458755574],\n              [-38.36878976311377, -6.092599338339923],\n              [-38.41357003825948, -6.061332247303426],\n              [-38.493891086245384, -6.128370824079497],\n              [-38.511666965829704, -6.181918189403419],\n              [-38.578716528934336, -6.262250223717842],\n              [-38.605490211596305, -6.396129623356174],\n              [-38.5251691636104, -6.382858138474916],\n              [-38.578716528934336, -6.480944079716593],\n              [-38.65003977384259, -6.690870845537162],\n              [-38.61877268280611, -6.757931394970328],\n              [-38.65003977384259, -6.838241456627657],\n              [-38.725867413453955, -6.891788821951579],\n              [-38.73037180815703, -7.0033879473025],\n              [-38.685822245910714, -7.030172616293001],\n              [-38.676824442833095, -7.15954762122827],\n              [-38.60099680322176, -7.222103775958345],\n              [-38.547449437897825, -7.235594987410494],\n              [-38.53394724011713, -7.293646747437492],\n              [-38.58299021073799, -7.427526147075838],\n              [-38.632274880586806, -7.458793238112335],\n              [-38.63676828896132, -7.534620877723682],\n              [-38.699093730791986, -7.619457306741182],\n              [-38.81969065922053, -7.663995882658938],\n              [-38.864240221466815, -7.704271763101588],\n              [-38.96707225663954, -7.847137979489005],\n              [-38.99833934767605, -7.820375283155585],\n              [-39.074166987287384, -7.856146768895158],\n              [-39.109949459355505, -7.753314733722434],\n              [-39.24381787266532, -7.681991488814162],\n              [-39.30637402739538, -7.623939728787164],\n              [-39.350923589641695, -7.548112089175831],\n              [-39.53406568647176, -7.47656911769667],\n              [-39.65444288832941, -7.373978781751916],\n              [-39.84659377456563, -7.347194112761414],\n              [-39.95369949154201, -7.360465597642673],\n              [-40.06529861689293, -7.405245872788413],\n              [-40.172393347540776, -7.418517357669671],\n              [-40.261723184932805, -7.391754661336265],\n              [-40.53846880095858, -7.391754661336265]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 2220,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-37.41186956059454, -11.497323665607496],\n              [-37.574093687876626, -11.539181577360537],\n              [-37.63214544790364, -11.521163998548232],\n              [-37.65891913056561, -11.556957456944886],\n              [-37.797291938578496, -11.525668393251294],\n              [-37.85107001680183, -11.440853936890889],\n              [-37.9669428239564, -11.400797783019115],\n              [-38.00721870439904, -11.35601750787339],\n              [-37.9804450217371, -11.239913987819392],\n              [-38.06076606972297, -11.168590742911121],\n              [-38.10982002667234, -11.030228921226794],\n              [-38.17686958977697, -10.980944251377977],\n              [-38.234921349803955, -10.896349521588448],\n              [-38.243919152881574, -10.824806550109301],\n              [-38.190141074658214, -10.717689846804376],\n              [-38.10982002667234, -10.708703030055304],\n              [-38.01172309910211, -10.75348330520103],\n              [-37.97144721865948, -10.75348330520103],\n              [-37.81529853106224, -10.677413966361712],\n              [-37.784020453697195, -10.62837099574088],\n              [-37.824065621240436, -10.548038961426414],\n              [-37.83756781902116, -10.42294862462336],\n              [-37.784020453697195, -10.30684510456939],\n              [-37.77951605899412, -10.079362185735349],\n              [-37.90012397375119, -9.949767454229232],\n              [-37.90012397375119, -9.913995968489587],\n              [-37.96266914215278, -9.873939814617813],\n              [-38.02949897868646, -9.726569203527362],\n              [-37.99371650661834, -9.646237169212938],\n              [-38.04299019013865, -9.605983261427355],\n              [-37.97572090046313, -9.512138043003716],\n              [-37.93814765684232, -9.53780210648273],\n              [-37.425591484946096, -9.778314810970059],\n              [-37.19609806798849, -9.88587096741675],\n              [-37.019240151085654, -9.956974485754131],\n              [-36.9564642697847, -10.01366394104167],\n              [-36.93958926914095, -10.083646853867549],\n              [-36.87974673756128, -10.153629766693442],\n              [-36.77669497581766, -10.22359070686224],\n              [-36.699065578325076, -10.257340708149698],\n              [-36.64753969745328, -10.253978891615205],\n              [-36.60704409043976, -10.292892467318381],\n              [-36.579819968307476, -10.37142274375158],\n              [-36.53842348235332, -10.410578018682727],\n              [-36.48262391967788, -10.410578018682727],\n              [-36.44301820527642, -10.43195741402954],\n              [-36.43176820484726, -10.452875383577506],\n              [-36.41467347763265, -10.491349506138917],\n              [-36.63583925755381, -10.589896873179455],\n              [-36.768367338781246, -10.671569239576257],\n              [-36.93779849758826, -10.8205218819771],\n              [-37.09326603281576, -11.05475040653721],\n              [-37.12544498912143, -11.084896892062204],\n              [-37.18281559677868, -11.068483317217328],\n              [-37.18124455179688, -11.187487228006972],\n              [-37.315123951435226, -11.376056571137823],\n              [-37.356069997919064, -11.403939872982733],\n              [-37.354949392407576, -11.35039250765881],\n              [-37.331548512608634, -11.30989690064527],\n              [-37.32074895164979, -11.266698656809893],\n              [-37.32186955716131, -11.215172775938086],\n              [-37.35922307421123, -11.252526292988009],\n              [-37.43842351668562, -11.393832450722158],\n              [-37.41186956059454, -11.497323665607496]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 3322,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-37.97572090046313, -9.512138043003716],\n              [-38.2211994254524, -9.34767270469861],\n              [-38.154589315489545, -9.266681490671544],\n              [-38.09204414708799, -9.18634945635712],\n              [-37.9669428239564, -9.14178890778227],\n              [-37.81529853106224, -8.976642417107428],\n              [-37.80628974165609, -8.896332355450099],\n              [-37.748248967957636, -8.86053889705343],\n              [-37.681419131423894, -8.976642417107428],\n              [-37.62764105320056, -8.981146811810504],\n              [-37.52054632255272, -8.94537532607093],\n              [-37.471492365603325, -9.003427086097929],\n              [-37.39117131761745, -9.043483239969703],\n              [-37.18124455179688, -9.239896821681043],\n              [-36.9983221815377, -9.306957371114194],\n              [-36.94027042151069, -9.35600034173504],\n              [-36.90449893577113, -9.289181491529845],\n              [-36.83316470453431, -9.262396822539344],\n              [-36.57869936279599, -9.293444187004965],\n              [-36.440315568454565, -9.208849457215422],\n              [-36.34649232268799, -9.19984066780927],\n              [-36.26617127470212, -9.14178890778227],\n              [-36.23939759204015, -9.088241542458348],\n              [-36.12329407198615, -9.016698570979202],\n              [-36.118789677283075, -8.967655600358356],\n              [-36.01619934133831, -8.896332355450099],\n              [-35.97141906619257, -8.90509944562828],\n              [-35.88231994169996, -8.873832354591784],\n              [-35.80176818081466, -8.869547686459597],\n              [-35.721447132828786, -8.91859065708043],\n              [-35.609848007477865, -8.865043291756507],\n              [-35.47146421313644, -8.833776200720024],\n              [-35.39114316515057, -8.882819171340856],\n              [-35.30182431408707, -8.887323566043932],\n              [-35.15174007984618, -8.913866535806477],\n              [-35.157815519531056, -8.930521809879323],\n              [-35.340968602689685, -9.230668305704],\n              [-35.597015975738344, -9.540724469875457],\n              [-35.763964224294426, -9.702487171358712],\n              [-35.830123894786965, -9.719142445431558],\n              [-35.89086730530727, -9.686974475454448],\n              [-35.84766906147189, -9.772470084184604],\n              [-35.885473017992126, -9.847616571426215],\n              [-36.05489319047061, -10.07578064262998],\n              [-36.223643196907915, -10.225172738172589],\n              [-36.39824891645921, -10.48414247461399],\n              [-36.41152040134048, -10.489987201399458],\n              [-36.41467347763265, -10.491349506138917],\n              [-36.43176820484726, -10.452875383577506],\n              [-36.44301820527642, -10.43195741402954],\n              [-36.48262391967788, -10.410578018682727],\n              [-36.53842348235332, -10.410578018682727],\n              [-36.579819968307476, -10.37142274375158],\n              [-36.60704409043976, -10.292892467318381],\n              [-36.64753969745328, -10.253978891615205],\n              [-36.699065578325076, -10.257340708149698],\n              [-36.77669497581766, -10.22359070686224],\n              [-36.87974673756128, -10.153629766693442],\n              [-36.93958926914095, -10.083646853867549],\n              [-36.9564642697847, -10.01366394104167],\n              [-37.019240151085654, -9.956974485754131],\n              [-37.19609806798849, -9.88587096741675],\n              [-37.425591484946096, -9.778314810970059],\n              [-37.93814765684232, -9.53780210648273],\n              [-37.97572090046313, -9.512138043003716]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 3409,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-38.5251691636104, -6.382858138474916],\n              [-38.605490211596305, -6.396129623356174],\n              [-38.578716528934336, -6.262250223717842],\n              [-38.511666965829704, -6.181918189403419],\n              [-38.493891086245384, -6.128370824079497],\n              [-38.41357003825948, -6.061332247303426],\n              [-38.36878976311377, -6.092599338339923],\n              [-38.301740200009135, -6.074823458755574],\n              [-38.12781563282758, -5.878387904387154],\n              [-38.07854194930732, -5.762306356990237],\n              [-38.07854194930732, -5.686478717378904],\n              [-38.0474945848417, -5.614913773242662],\n              [-37.913395458632465, -5.463280466677062],\n              [-37.721464298967135, -5.061422541191149],\n              [-37.59659368873494, -4.958832205246381],\n              [-37.54281561051161, -4.93204753625588],\n              [-37.230748948216586, -4.824271653238313],\n              [-37.17471867264169, -4.912469898790306],\n              [-36.95489322480287, -4.936771657529846],\n              [-36.8610699790363, -4.96669841648395],\n              [-36.747449369233294, -5.050611993903757],\n              [-36.59061952926632, -5.097655452729569],\n              [-36.38676820313063, -5.084361995191216],\n              [-36.16176819454756, -5.093832210396229],\n              [-35.97996642979987, -5.054457208894192],\n              [-35.54932432352845, -5.129361996907832],\n              [-35.481593608054084, -5.166056334245113],\n              [-35.39249448356148, -5.250870790605518],\n              [-35.23544491702364, -5.566771681562443],\n              [-35.14184139782796, -5.917103726176549],\n              [-35.09549007770042, -6.185301978594993],\n              [-34.98816463415315, -6.393646713105213],\n              [-34.97174007297971, -6.503905506373755],\n              [-35.047347986020185, -6.534733144268486],\n              [-35.257274751840754, -6.507948475277985],\n              [-35.306317722461586, -6.53022874956541],\n              [-35.4669708047619, -6.463168200132245],\n              [-35.66789976750485, -6.427396714392671],\n              [-35.721447132828786, -6.44539232054791],\n              [-35.92686950394628, -6.467672594835335],\n              [-36.25266907692142, -6.414125229511413],\n              [-36.29294495736406, -6.307030498863568],\n              [-36.382274794756114, -6.302526104160492],\n              [-36.493873920107035, -6.378353743771839],\n              [-36.5161432080659, -6.480944079716593],\n              [-36.44481996315764, -6.623832268761092],\n              [-36.53391908765025, -6.63732348021324],\n              [-36.52941469294717, -6.735431394112013],\n              [-36.5026410102852, -6.784694091303734],\n              [-36.57419496809291, -6.927582280348247],\n              [-36.659020410781864, -6.931844975823353],\n              [-36.71256777610577, -6.976625250969079],\n              [-36.770619536132784, -6.931844975823353],\n              [-36.743845853470816, -6.824750245175508],\n              [-36.79289981042021, -6.76669848514851],\n              [-36.944774816213766, -6.748922605564161],\n              [-36.98932437846008, -6.708646725121511],\n              [-37.04287174378399, -6.753427000267237],\n              [-37.15447086913491, -6.784694091303734],\n              [-37.21701603753647, -6.824750245175508],\n              [-37.27057438918891, -6.739913816158008],\n              [-37.33762395229354, -6.699879634943329],\n              [-37.51604192784964, -6.68186205613101],\n              [-37.507274837671446, -6.55248705119574],\n              [-37.43121648516069, -6.516715565456167],\n              [-37.39566472599199, -6.391844955223988],\n              [-37.1767401570938, -6.114879612627348],\n              [-37.1767401570938, -6.052543184468149],\n              [-37.261565599782756, -6.025780488134728],\n              [-37.42244939498249, -6.097103733042999],\n              [-37.4759967603064, -6.083832248161727],\n              [-37.64114325098126, -6.128370824079497],\n              [-37.757246771035256, -6.177413794700328],\n              [-37.793018256774815, -6.293517314754325],\n              [-37.84207221372421, -6.342582258032266],\n              [-38.00271430969596, -6.431901109095762],\n              [-38.05627266134843, -6.44539232054791],\n              [-38.13232002753065, -6.521219960159243],\n              [-38.2394147581785, -6.48544847441967],\n              [-38.283964320424815, -6.503444080574909],\n              [-38.43583932621837, -6.414125229511413],\n              [-38.5251691636104, -6.382858138474916]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 9278,\n        \"fill\": \"#999\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-41.36871663536442, -8.713168285962922],\n              [-41.212567947767155, -8.632858224305608],\n              [-41.15902058244325, -8.548021795288108],\n              [-41.083192942831886, -8.525741521000683],\n              [-41.01614337972728, -8.418646790352838],\n              [-40.92232013396071, -8.43191827523411],\n              [-40.88676837479201, -8.351608213576768],\n              [-40.833221009468105, -8.36487969845804],\n              [-40.74839556677915, -8.244491510271843],\n              [-40.59201616628249, -8.12390556817185],\n              [-40.54297319566166, -8.030082322405278],\n              [-40.52947099788096, -7.905189739516004],\n              [-40.547466604036174, -7.833646768036857],\n              [-40.659065729387095, -7.762323523128586],\n              [-40.61878984894446, -7.637233186325531],\n              [-40.69034380675214, -7.512340603436257],\n              [-40.69034380675214, -7.427526147075838],\n              [-40.64557451793496, -7.400741478085337],\n              [-40.53846880095858, -7.391754661336265],\n              [-40.261723184932805, -7.391754661336265],\n              [-40.172393347540776, -7.418517357669671],\n              [-40.06529861689293, -7.405245872788413],\n              [-39.95369949154201, -7.360465597642673],\n              [-39.84659377456563, -7.347194112761414],\n              [-39.65444288832941, -7.373978781751916],\n              [-39.53406568647176, -7.47656911769667],\n              [-39.350923589641695, -7.548112089175831],\n              [-39.30637402739538, -7.623939728787164],\n              [-39.24381787266532, -7.681991488814162],\n              [-39.109949459355505, -7.753314733722434],\n              [-39.074166987287384, -7.856146768895158],\n              [-38.99833934767605, -7.820375283155585],\n              [-38.96707225663954, -7.847137979489005],\n              [-38.864240221466815, -7.704271763101588],\n              [-38.81969065922053, -7.663995882658938],\n              [-38.699093730791986, -7.619457306741182],\n              [-38.64554636546805, -7.677487094111086],\n              [-38.59199900014414, -7.690780551649439],\n              [-38.587494605441066, -7.740043248841161],\n              [-38.5251691636104, -7.766827917831677],\n              [-38.44912179742818, -7.735538854138085],\n              [-38.41784372006313, -7.748832311676438],\n              [-38.355518278232495, -7.699767368398511],\n              [-38.304223110260125, -7.78234061373594],\n              [-38.301740200009135, -7.829362099904657],\n              [-38.25719063776285, -7.851642374192082],\n              [-38.225923546726335, -7.811366493749432],\n              [-38.16787178669935, -7.806862099046356],\n              [-38.150095907115, -7.771332312534753],\n              [-38.08753975238491, -7.820375283155585],\n              [-38.05739326685992, -7.75781912842551],\n              [-37.97594062703399, -7.771332312534753],\n              [-37.895619579048116, -7.686495883517253],\n              [-37.793018256774815, -7.637233186325531],\n              [-37.70819281408586, -7.548112089175831],\n              [-37.55182439991776, -7.47656911769667],\n              [-37.435720879863766, -7.347194112761414],\n              [-37.38217351453983, -7.351698507464491],\n              [-37.34639104247171, -7.297931415569693],\n              [-37.25279850960456, -7.271146746579191],\n              [-37.149966474431835, -7.347194112761414],\n              [-37.01609806112205, -7.400741478085337],\n              [-37.01609806112205, -7.507858181390262],\n              [-37.19924015795212, -7.574896758166332],\n              [-37.212522629161924, -7.646220003074589],\n              [-37.16797306691561, -7.762323523128586],\n              [-37.22602482694262, -7.815870888452508],\n              [-37.342117360668055, -7.9987932587117],\n              [-37.212522629161924, -7.958737104839926],\n              [-37.149966474431835, -7.976512984424275],\n              [-37.12769718647297, -8.1641814486145],\n              [-37.06086734993923, -8.231000298819694],\n              [-36.96253970946958, -8.284547664143616],\n              [-36.83316470453431, -8.226495904116618],\n              [-36.78389102101406, -8.222233208641498],\n              [-36.62774233341682, -8.0836296877292],\n              [-36.659020410781864, -8.012306442820929],\n              [-36.569690573389835, -7.922965619100353],\n              [-36.449093644961295, -7.90969413421908],\n              [-36.422319962299326, -7.824879677858675],\n              [-36.337494519610374, -7.811366493749432],\n              [-36.26617127470212, -7.824879677858675],\n              [-36.217117317752724, -7.780099402712935],\n              [-36.16784363423244, -7.824879677858675],\n              [-36.12329407198615, -7.780099402712935],\n              [-36.07424011503676, -7.824879677858675],\n              [-35.96691467148949, -7.815870888452508],\n              [-35.931373898649355, -7.838151162739933],\n              [-35.886593623503614, -7.732177037603591],\n              [-35.83753966655422, -7.744327916973361],\n              [-35.712669056322056, -7.708776157804678],\n              [-35.68139097895701, -7.713280552507754],\n              [-35.556289655825395, -7.655228792480756],\n              [-35.498248882126944, -7.454288843409245],\n              [-35.37336728556622, -7.458793238112335],\n              [-35.270546236722026, -7.382745871930098],\n              [-35.065343592175424, -7.409530540920613],\n              [-34.98051814948644, -7.512340603436257],\n              [-34.85856990264699, -7.54969412048618],\n              [-34.86082209999853, -7.594913848773672],\n              [-34.85474666031365, -7.634288850275709],\n              [-34.87297297936831, -7.692120883731818],\n              [-34.87859797958288, -7.747470006936979],\n              [-34.8369707807293, -7.871681437456516],\n              [-34.834718583377764, -7.971569136579433],\n              [-34.89051814605324, -8.092177051336506],\n              [-34.96656551223546, -8.40761651649457],\n              [-35.15174007984618, -8.913866535806477],\n              [-35.30182431408707, -8.887323566043932],\n              [-35.39114316515057, -8.882819171340856],\n              [-35.47146421313644, -8.833776200720024],\n              [-35.609848007477865, -8.865043291756507],\n              [-35.721447132828786, -8.91859065708043],\n              [-35.80176818081466, -8.869547686459597],\n              [-35.88231994169996, -8.873832354591784],\n              [-35.97141906619257, -8.90509944562828],\n              [-36.01619934133831, -8.896332355450099],\n              [-36.118789677283075, -8.967655600358356],\n              [-36.12329407198615, -9.016698570979202],\n              [-36.23939759204015, -9.088241542458348],\n              [-36.26617127470212, -9.14178890778227],\n              [-36.34649232268799, -9.19984066780927],\n              [-36.440315568454565, -9.208849457215422],\n              [-36.57869936279599, -9.293444187004965],\n              [-36.83316470453431, -9.262396822539344],\n              [-36.90449893577113, -9.289181491529845],\n              [-36.94027042151069, -9.35600034173504],\n              [-36.9983221815377, -9.306957371114194],\n              [-37.18124455179688, -9.239896821681043],\n              [-37.39117131761745, -9.043483239969703],\n              [-37.471492365603325, -9.003427086097929],\n              [-37.52054632255272, -8.94537532607093],\n              [-37.62764105320056, -8.981146811810504],\n              [-37.681419131423894, -8.976642417107428],\n              [-37.748248967957636, -8.86053889705343],\n              [-37.80628974165609, -8.896332355450099],\n              [-37.81529853106224, -8.976642417107428],\n              [-37.9669428239564, -9.14178890778227],\n              [-38.09204414708799, -9.18634945635712],\n              [-38.154589315489545, -9.266681490671544],\n              [-38.2211994254524, -9.34767270469861],\n              [-38.28307442781272, -9.203663910142609],\n              [-38.30759591312315, -9.102194179709358],\n              [-38.29432442824191, -9.043021814170856],\n              [-38.33594064076692, -9.01017269182401],\n              [-38.43291696282563, -9.00364681266882],\n              [-38.48219064634591, -8.959547689892815],\n              [-38.48399240422714, -8.877655596925138],\n              [-38.50469064720423, -8.834896806231512],\n              [-38.54429636160569, -8.831073563898173],\n              [-38.57759592342282, -8.86053889705343],\n              [-38.61922312227642, -8.896090656222128],\n              [-38.66781565342694, -8.896090656222128],\n              [-38.70539988337629, -8.879896807948114],\n              [-38.834994614882476, -8.800245926003356],\n              [-39.098249019456034, -8.714970043844119],\n              [-39.25664990440481, -8.64026300974433],\n              [-39.33269727058703, -8.565797674872442],\n              [-39.441824472015526, -8.559271795717166],\n              [-39.60089552300548, -8.619564766767255],\n              [-39.682798602301716, -8.683021800437942],\n              [-39.68774245014657, -8.74940119750137],\n              [-39.73836745207774, -8.791237136597275],\n              [-39.83489333466616, -8.809013016181552],\n              [-39.88461745765676, -8.853353838185598],\n              [-39.887770533948924, -8.923995930724061],\n              [-39.90914992929572, -8.98024593286982],\n              [-39.94874465736862, -9.022103844622904],\n              [-40.00499465951441, -9.058095056933354],\n              [-40.077669222833606, -9.08824154245832],\n              [-40.212218788513155, -9.101513027339593],\n              [-40.27319291193285, -9.144952970402969],\n              [-40.31977494495982, -9.2930047338632],\n              [-40.41269731178579, -9.396957374547355],\n              [-40.56479204415024, -9.460172708990143],\n              [-40.68583941204906, -9.47210386178898],\n              [-40.743891172076076, -9.42303891851111],\n              [-40.69034380675214, -9.342728856853768],\n              [-40.70361529163341, -9.217616547393618],\n              [-40.85099688905245, -9.150797697188352],\n              [-40.855490297427, -9.092745937161425],\n              [-40.891042056595666, -9.03469417713444],\n              [-40.891042056595666, -8.856056475007449],\n              [-40.98037189398772, -8.815780594564785],\n              [-41.003992500357526, -8.781349440907604],\n              [-41.100968822416235, -8.775724440693025],\n              [-41.10547321711931, -8.717672680666027],\n              [-41.15902058244325, -8.708663891259846],\n              [-41.324167073118076, -8.735448560250362],\n              [-41.36871663536442, -8.713168285962922]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 3944,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-38.699093730791986, -7.619457306741182],\n              [-38.63676828896132, -7.534620877723682],\n              [-38.632274880586806, -7.458793238112335],\n              [-38.58299021073799, -7.427526147075838],\n              [-38.53394724011713, -7.293646747437492],\n              [-38.547449437897825, -7.235594987410494],\n              [-38.60099680322176, -7.222103775958345],\n              [-38.676824442833095, -7.15954762122827],\n              [-38.685822245910714, -7.030172616293001],\n              [-38.73037180815703, -7.0033879473025],\n              [-38.725867413453955, -6.891788821951579],\n              [-38.65003977384259, -6.838241456627657],\n              [-38.61877268280611, -6.757931394970328],\n              [-38.65003977384259, -6.690870845537162],\n              [-38.578716528934336, -6.480944079716593],\n              [-38.5251691636104, -6.382858138474916],\n              [-38.43583932621837, -6.414125229511413],\n              [-38.283964320424815, -6.503444080574909],\n              [-38.2394147581785, -6.48544847441967],\n              [-38.13232002753065, -6.521219960159243],\n              [-38.05627266134843, -6.44539232054791],\n              [-38.00271430969596, -6.431901109095762],\n              [-37.84207221372421, -6.342582258032266],\n              [-37.793018256774815, -6.293517314754325],\n              [-37.757246771035256, -6.177413794700328],\n              [-37.64114325098126, -6.128370824079497],\n              [-37.4759967603064, -6.083832248161727],\n              [-37.42244939498249, -6.097103733042999],\n              [-37.261565599782756, -6.025780488134728],\n              [-37.1767401570938, -6.052543184468149],\n              [-37.1767401570938, -6.114879612627348],\n              [-37.39566472599199, -6.391844955223988],\n              [-37.43121648516069, -6.516715565456167],\n              [-37.507274837671446, -6.55248705119574],\n              [-37.51604192784964, -6.68186205613101],\n              [-37.33762395229354, -6.699879634943329],\n              [-37.27057438918891, -6.739913816158008],\n              [-37.21701603753647, -6.824750245175508],\n              [-37.15447086913491, -6.784694091303734],\n              [-37.04287174378399, -6.753427000267237],\n              [-36.98932437846008, -6.708646725121511],\n              [-36.944774816213766, -6.748922605564161],\n              [-36.79289981042021, -6.76669848514851],\n              [-36.743845853470816, -6.824750245175508],\n              [-36.770619536132784, -6.931844975823353],\n              [-36.71256777610577, -6.976625250969079],\n              [-36.659020410781864, -6.931844975823353],\n              [-36.57419496809291, -6.927582280348247],\n              [-36.5026410102852, -6.784694091303734],\n              [-36.52941469294717, -6.735431394112013],\n              [-36.53391908765025, -6.63732348021324],\n              [-36.44481996315764, -6.623832268761092],\n              [-36.5161432080659, -6.480944079716593],\n              [-36.493873920107035, -6.378353743771839],\n              [-36.382274794756114, -6.302526104160492],\n              [-36.29294495736406, -6.307030498863568],\n              [-36.25266907692142, -6.414125229511413],\n              [-35.92686950394628, -6.467672594835335],\n              [-35.721447132828786, -6.44539232054791],\n              [-35.66789976750485, -6.427396714392671],\n              [-35.4669708047619, -6.463168200132245],\n              [-35.306317722461586, -6.53022874956541],\n              [-35.257274751840754, -6.507948475277985],\n              [-35.047347986020185, -6.534733144268486],\n              [-34.97174007297971, -6.503905506373755],\n              [-34.929673420984386, -6.785155517102595],\n              [-34.87994929799382, -6.908224369453549],\n              [-34.87589534276103, -7.002948494160734],\n              [-34.833817704437166, -7.024327889507546],\n              [-34.805472976793396, -7.288483173021774],\n              [-34.8164922643231, -7.394896751299868],\n              [-34.85766902370639, -7.53328054564129],\n              [-34.85856990264699, -7.54969412048618],\n              [-34.98051814948644, -7.512340603436257],\n              [-35.065343592175424, -7.409530540920613],\n              [-35.270546236722026, -7.382745871930098],\n              [-35.37336728556622, -7.458793238112335],\n              [-35.498248882126944, -7.454288843409245],\n              [-35.556289655825395, -7.655228792480756],\n              [-35.68139097895701, -7.713280552507754],\n              [-35.712669056322056, -7.708776157804678],\n              [-35.83753966655422, -7.744327916973361],\n              [-35.886593623503614, -7.732177037603591],\n              [-35.931373898649355, -7.838151162739933],\n              [-35.96691467148949, -7.815870888452508],\n              [-36.07424011503676, -7.824879677858675],\n              [-36.12329407198615, -7.780099402712935],\n              [-36.16784363423244, -7.824879677858675],\n              [-36.217117317752724, -7.780099402712935],\n              [-36.26617127470212, -7.824879677858675],\n              [-36.337494519610374, -7.811366493749432],\n              [-36.422319962299326, -7.824879677858675],\n              [-36.449093644961295, -7.90969413421908],\n              [-36.569690573389835, -7.922965619100353],\n              [-36.659020410781864, -8.012306442820929],\n              [-36.62774233341682, -8.0836296877292],\n              [-36.78389102101406, -8.222233208641498],\n              [-36.83316470453431, -8.226495904116618],\n              [-36.96253970946958, -8.284547664143616],\n              [-37.06086734993923, -8.231000298819694],\n              [-37.12769718647297, -8.1641814486145],\n              [-37.149966474431835, -7.976512984424275],\n              [-37.212522629161924, -7.958737104839926],\n              [-37.342117360668055, -7.9987932587117],\n              [-37.22602482694262, -7.815870888452508],\n              [-37.16797306691561, -7.762323523128586],\n              [-37.212522629161924, -7.646220003074589],\n              [-37.19924015795212, -7.574896758166332],\n              [-37.01609806112205, -7.507858181390262],\n              [-37.01609806112205, -7.400741478085337],\n              [-37.149966474431835, -7.347194112761414],\n              [-37.25279850960456, -7.271146746579191],\n              [-37.34639104247171, -7.297931415569693],\n              [-37.38217351453983, -7.351698507464491],\n              [-37.435720879863766, -7.347194112761414],\n              [-37.55182439991776, -7.47656911769667],\n              [-37.70819281408586, -7.548112089175831],\n              [-37.793018256774815, -7.637233186325531],\n              [-37.895619579048116, -7.686495883517253],\n              [-37.97594062703399, -7.771332312534753],\n              [-38.05739326685992, -7.75781912842551],\n              [-38.08753975238491, -7.820375283155585],\n              [-38.150095907115, -7.771332312534753],\n              [-38.16787178669935, -7.806862099046356],\n              [-38.225923546726335, -7.811366493749432],\n              [-38.25719063776285, -7.851642374192082],\n              [-38.301740200009135, -7.829362099904657],\n              [-38.304223110260125, -7.78234061373594],\n              [-38.355518278232495, -7.699767368398511],\n              [-38.41784372006313, -7.748832311676438],\n              [-38.44912179742818, -7.735538854138085],\n              [-38.5251691636104, -7.766827917831677],\n              [-38.587494605441066, -7.740043248841161],\n              [-38.59199900014414, -7.690780551649439],\n              [-38.64554636546805, -7.677487094111086],\n              [-38.699093730791986, -7.619457306741182]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 6727,\n        \"fill\": \"#999\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-53.6699219386025, -26.258005381026635],\n              [-53.66339605944734, -26.25776368179862],\n              [-53.516245174927704, -26.289052745492228],\n              [-53.458193414900734, -26.2890527454922],\n              [-53.355372366056514, -26.239987802214294],\n              [-53.27954472644517, -26.26226807650172],\n              [-53.12339603884794, -26.369604506377534],\n              [-52.99379032101325, -26.351608900222303],\n              [-52.913469273027374, -26.365100111674394],\n              [-52.81537234545715, -26.33831544268395],\n              [-52.6724951427412, -26.378371596555716],\n              [-52.64121706537617, -26.40065187084309],\n              [-52.54290041123505, -26.40065187084314],\n              [-52.458074968546086, -26.43191896187964],\n              [-52.19909424577614, -26.44991456803487],\n              [-52.00717407243934, -26.583793967673216],\n              [-51.873294672800995, -26.601569847257558],\n              [-51.50271482468011, -26.601569847257558],\n              [-51.422393776694236, -26.699897487727206],\n              [-51.28402096868135, -26.650854517106367],\n              [-51.23947140643509, -26.606074241960584],\n              [-51.2795165739783, -26.49897951131271],\n              [-51.28852536338445, -26.423151871701464],\n              [-51.24824948294179, -26.347104505519212],\n              [-51.074094202860806, -26.23550538016832],\n              [-50.94471919792551, -26.244492196917378],\n              [-50.90016963567922, -26.28026368265695],\n              [-50.77057490417306, -26.22223389528704],\n              [-50.73502314500439, -26.23100098546523],\n              [-50.64569330761233, -26.07035888949347],\n              [-50.54287225876814, -26.02579834091862],\n              [-50.45804681607919, -26.02579834091862],\n              [-50.369167418157474, -26.085871585397726],\n              [-50.315169613363224, -26.05258300990912],\n              [-50.19029900313106, -26.05258300990912],\n              [-49.949094159945446, -26.01230712946647],\n              [-49.882275309740265, -26.039069825799885],\n              [-49.7526695919056, -26.123906254817314],\n              [-49.72162222743995, -26.15967774055696],\n              [-49.596520904308335, -26.22223389528704],\n              [-49.48941518733196, -26.22223389528704],\n              [-49.45364370159237, -26.16866455730603],\n              [-49.29749501399516, -26.106130375233022],\n              [-49.21266957130621, -26.030302735621696],\n              [-49.109848522462016, -25.99453124988213],\n              [-48.944691045458626, -26.007802734763388],\n              [-48.91791736279666, -25.97651367106981],\n              [-48.65016954984853, -25.97225097559469],\n              [-48.58537218409546, -25.9862036128457],\n              [-48.619341911953825, -26.179475104593394],\n              [-48.678964716962525, -26.22581543839243],\n              [-48.71384631009005, -26.226958016561014],\n              [-48.74826647741867, -26.268574229086028],\n              [-48.70079455177972, -26.34822511103073],\n              [-48.65152086825947, -26.406496597628575],\n              [-48.65804674741463, -26.51921632849104],\n              [-48.676492793040154, -26.61238039454497],\n              [-48.67784411145112, -26.702819851119898],\n              [-48.61574938251988, -26.878095736712453],\n              [-48.5934691082324, -27.058095743578804],\n              [-48.56826647055232, -27.12335453513083],\n              [-48.55409410673042, -27.196018112121465],\n              [-48.595490592684484, -27.2639795404952],\n              [-48.57186998631471, -27.372876029024326],\n              [-48.64252306518182, -27.55781988373559],\n              [-48.60561998760221, -27.825117257213435],\n              [-48.620693230364736, -28.0755396300475],\n              [-48.6483677919673, -28.2071778186629],\n              [-48.69314806711304, -28.310229580406485],\n              [-48.797320434368146, -28.442746675305386],\n              [-48.799572631719684, -28.575263770204174],\n              [-49.023671761362095, -28.698574321783155],\n              [-49.271391497374395, -28.87114757055383],\n              [-49.49999502171988, -29.075449336159807],\n              [-49.71284415093322, -29.324531376911544],\n              [-49.8152147603071, -29.271203738158505],\n              [-49.86877311195957, -29.21765637283459],\n              [-49.95359855464852, -29.195376098547115],\n              [-50.07869987778014, -29.244419069168003],\n              [-50.0339196026344, -29.320466435350227],\n              [-50.05191520878964, -29.356018194518924],\n              [-50.16801872884366, -29.28469494961064],\n              [-50.16352532046909, -29.195376098547165],\n              [-50.069691088373986, -29.092763789945316],\n              [-50.00714591997246, -29.101552852780515],\n              [-49.94482047814179, -28.949897573557898],\n              [-49.95359855464852, -28.79351817306125],\n              [-49.846492837672145, -28.695432231819552],\n              [-49.797449867051284, -28.623867287683332],\n              [-49.699122226581636, -28.597104591349918],\n              [-49.708120029659256, -28.530263768487643],\n              [-49.73669547020245, -28.51136728339179],\n              [-49.839066079576355, -28.465246676163645],\n              [-49.938525311886025, -28.448151948949075],\n              [-50.06879020943336, -28.444328706615693],\n              [-50.141025319610776, -28.452876070223034],\n              [-50.15496697053325, -28.473794039770993],\n              [-50.23304680749612, -28.468630465355268],\n              [-50.44656610275061, -28.422048432328303],\n              [-50.57752313899624, -28.38627694658873],\n              [-50.73614375051588, -28.235983972105508],\n              [-50.96586788037291, -27.959458082650634],\n              [-51.11729244669618, -27.807802803427933],\n              [-51.190417449485665, -27.78123786100832],\n              [-51.2867236055032, -27.71622076868431],\n              [-51.40641965499111, -27.61316900694075],\n              [-51.487641581917615, -27.564126036319912],\n              [-51.53016965971182, -27.56885015759387],\n              [-51.58236570662484, -27.547470762247087],\n              [-51.64469114845545, -27.4997681237086],\n              [-51.70162230297095, -27.488078670137682],\n              [-51.75359862331311, -27.51191900307839],\n              [-51.873294672800995, -27.509458065484495],\n              [-51.912900387202455, -27.47254400157633],\n              [-51.98422363211071, -27.376699271357644],\n              [-52.05958984592321, -27.31348393691492],\n              [-52.1392407278679, -27.28331547873284],\n              [-52.19234864005006, -27.280854541138964],\n              [-52.22857056525994, -27.29254399470988],\n              [-52.264792490469816, -27.2772510253765],\n              [-52.30439820487129, -27.2830957521619],\n              [-52.34804688817701, -27.276350146435902],\n              [-52.414646011811286, -27.236293992564114],\n              [-52.51072145492941, -27.230449265778645],\n              [-52.6364929441022, -27.259475145792123],\n              [-52.74156619029792, -27.245742235112033],\n              [-52.82639163298688, -27.189492232966188],\n              [-52.900197788146116, -27.176682173883854],\n              [-52.95284427452941, -27.178923384906845],\n              [-52.994240760483564, -27.163388716345494],\n              [-53.030473672021984, -27.137526898952693],\n              [-53.07074955246465, -27.141789594427806],\n              [-53.10359867481151, -27.154401899596394],\n              [-53.13419559980679, -27.140449262345427],\n              [-53.18437016226767, -27.14945805175158],\n              [-53.22711796663276, -27.173737837833983],\n              [-53.263339891842634, -27.163388716345494],\n              [-53.30474736412533, -27.09769047165181],\n              [-53.34749516849041, -27.080595744437176],\n              [-53.39812017042159, -27.08239750231843],\n              [-53.45662236991893, -27.10331547186638],\n              [-53.48969121883664, -27.13324223082043],\n              [-53.49801885587304, -27.17217777918077],\n              [-53.54009649419693, -27.19781987000269],\n              [-53.61569342090888, -27.209970749372474],\n              [-53.65957281711397, -27.20052250682454],\n              [-53.671492983584315, -27.169475142358927],\n              [-53.71852545608158, -27.157543989559997],\n              [-53.80041754904927, -27.16475102108496],\n              [-53.85172370335019, -27.156203657477654],\n              [-53.935417554199105, -27.161147505322504],\n              [-53.9156201901626, -27.159565474012084],\n              [-53.838221505569436, -27.12109135145073],\n              [-53.75857062362479, -26.97822513506327],\n              [-53.71739386424156, -26.882819857986362],\n              [-53.727072819688885, -26.804751007352024],\n              [-53.75339606288054, -26.748720731777155],\n              [-53.74461798637378, -26.666608912238587],\n              [-53.71807501661124, -26.443168962308732],\n              [-53.71086798508634, -26.35182862679312],\n              [-53.66857062019159, -26.288151866551573],\n              [-53.6699219386025, -26.258005381026635]\n            ]\n          ],\n          [\n            [\n              [-48.46477525566689, -27.436333062694985],\n              [-48.4148204197769, -27.399638725357704],\n              [-48.37791734219729, -27.451406305457454],\n              [-48.40964585903265, -27.56636724734284],\n              [-48.496723499073084, -27.706992252707323],\n              [-48.48592393811424, -27.767065497186366],\n              [-48.55454454620076, -27.812307198130952],\n              [-48.54217394026, -27.574694884379255],\n              [-48.50527086268045, -27.495505428233514],\n              [-48.46477525566689, -27.436333062694985]\n            ]\n          ],\n          [\n            [\n              [-48.603148063679726, -26.413703629153474],\n              [-48.66569323208131, -26.28973389786188],\n              [-48.53969103000907, -26.170246588616294],\n              [-48.49762437801377, -26.21885010609543],\n              [-48.53114366640182, -26.313112805003755],\n              [-48.56804674398143, -26.379733901295197],\n              [-48.58447130515475, -26.401552749783775],\n              [-48.603148063679726, -26.413703629153474]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 11207,\n        \"fill\": \"#999\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-53.935417554199105, -27.161147505322504],\n              [-53.85172370335019, -27.156203657477654],\n              [-53.80041754904927, -27.16475102108496],\n              [-53.71852545608158, -27.157543989559997],\n              [-53.671492983584315, -27.169475142358927],\n              [-53.65957281711397, -27.20052250682454],\n              [-53.61569342090888, -27.209970749372474],\n              [-53.54009649419693, -27.19781987000269],\n              [-53.49801885587304, -27.17217777918077],\n              [-53.48969121883664, -27.13324223082043],\n              [-53.45662236991893, -27.10331547186638],\n              [-53.39812017042159, -27.08239750231843],\n              [-53.34749516849041, -27.080595744437176],\n              [-53.30474736412533, -27.09769047165181],\n              [-53.263339891842634, -27.163388716345494],\n              [-53.22711796663276, -27.173737837833983],\n              [-53.18437016226767, -27.14945805175158],\n              [-53.13419559980679, -27.140449262345427],\n              [-53.10359867481151, -27.154401899596394],\n              [-53.07074955246465, -27.141789594427806],\n              [-53.030473672021984, -27.137526898952693],\n              [-52.994240760483564, -27.163388716345494],\n              [-52.95284427452941, -27.178923384906845],\n              [-52.900197788146116, -27.176682173883854],\n              [-52.82639163298688, -27.189492232966188],\n              [-52.74156619029792, -27.245742235112033],\n              [-52.6364929441022, -27.259475145792123],\n              [-52.51072145492941, -27.230449265778645],\n              [-52.414646011811286, -27.236293992564114],\n              [-52.34804688817701, -27.276350146435902],\n              [-52.30439820487129, -27.2830957521619],\n              [-52.264792490469816, -27.2772510253765],\n              [-52.22857056525994, -27.29254399470988],\n              [-52.19234864005006, -27.280854541138964],\n              [-52.1392407278679, -27.28331547873284],\n              [-52.05958984592321, -27.31348393691492],\n              [-51.98422363211071, -27.376699271357644],\n              [-51.912900387202455, -27.47254400157633],\n              [-51.873294672800995, -27.509458065484495],\n              [-51.75359862331311, -27.51191900307839],\n              [-51.70162230297095, -27.488078670137682],\n              [-51.64469114845545, -27.4997681237086],\n              [-51.58236570662484, -27.547470762247087],\n              [-51.53016965971182, -27.56885015759387],\n              [-51.487641581917615, -27.564126036319912],\n              [-51.40641965499111, -27.61316900694075],\n              [-51.2867236055032, -27.71622076868431],\n              [-51.190417449485665, -27.78123786100832],\n              [-51.11729244669618, -27.807802803427933],\n              [-50.96586788037291, -27.959458082650634],\n              [-50.73614375051588, -28.235983972105508],\n              [-50.57752313899624, -28.38627694658873],\n              [-50.44656610275061, -28.422048432328303],\n              [-50.23304680749612, -28.468630465355268],\n              [-50.15496697053325, -28.473794039770993],\n              [-50.141025319610776, -28.452876070223034],\n              [-50.06879020943336, -28.444328706615693],\n              [-49.938525311886025, -28.448151948949075],\n              [-49.839066079576355, -28.465246676163645],\n              [-49.73669547020245, -28.51136728339179],\n              [-49.708120029659256, -28.530263768487643],\n              [-49.699122226581636, -28.597104591349918],\n              [-49.797449867051284, -28.623867287683332],\n              [-49.846492837672145, -28.695432231819552],\n              [-49.95359855464852, -28.79351817306125],\n              [-49.94482047814179, -28.949897573557898],\n              [-50.00714591997246, -29.101552852780515],\n              [-50.069691088373986, -29.092763789945316],\n              [-50.16352532046909, -29.195376098547165],\n              [-50.16801872884366, -29.28469494961064],\n              [-50.05191520878964, -29.356018194518924],\n              [-50.0339196026344, -29.320466435350227],\n              [-50.07869987778014, -29.244419069168003],\n              [-49.95359855464852, -29.195376098547115],\n              [-49.86877311195957, -29.21765637283459],\n              [-49.8152147603071, -29.271203738158505],\n              [-49.71284415093322, -29.324531376911544],\n              [-49.74592398617949, -29.363225226043852],\n              [-50.03324943659322, -29.801074363840215],\n              [-50.29941521823099, -30.425669114229116],\n              [-50.62004023046188, -30.897729679111798],\n              [-50.74807490331477, -31.06803974420236],\n              [-50.921318318126595, -31.258388872557354],\n              [-51.151723600353364, -31.480466517747693],\n              [-51.46041745978536, -31.70232443636715],\n              [-51.79814818555937, -31.90032004938884],\n              [-51.92031615896971, -31.989638900452327],\n              [-52.03912231584556, -32.114751209912484],\n              [-52.06904907479968, -32.0630056024698],\n              [-52.04316528474979, -31.977488021082557],\n              [-52.05958984592321, -31.91337180769922],\n              [-52.06319336168568, -31.83035910922004],\n              [-51.99502319306956, -31.815044167229566],\n              [-51.89309203683746, -31.867690653612875],\n              [-51.841115716495324, -31.831919167873302],\n              [-51.80332274630365, -31.796609107932575],\n              [-51.68069334709446, -31.774548560216033],\n              [-51.44624509596346, -31.557414762870536],\n              [-51.27208981588248, -31.47686300198523],\n              [-51.17422360121168, -31.339841512383273],\n              [-51.15756832713882, -31.266716509593778],\n              [-51.16139156947216, -31.118906445361525],\n              [-51.106042446267026, -31.08133320174072],\n              [-50.98004024419478, -31.09414326082313],\n              [-50.954398153372864, -31.05206562249925],\n              [-50.9654174409026, -31.005505562129372],\n              [-50.94089595559217, -30.903794132468136],\n              [-50.770124464702775, -30.813354675893144],\n              [-50.689341990918024, -30.704216488136105],\n              [-50.716346386479415, -30.4258888408],\n              [-50.68506830911437, -30.413518234859346],\n              [-50.6148656697176, -30.4569581779227],\n              [-50.582016547370756, -30.43894059911038],\n              [-50.54646478820206, -30.316772625700047],\n              [-50.56357050174523, -30.253557291257323],\n              [-50.64614374708265, -30.236902017184477],\n              [-50.93189815251455, -30.37436295992819],\n              [-51.02504024591141, -30.368737959713613],\n              [-51.04034420157333, -30.26052262355428],\n              [-51.17939816195593, -30.211018227134588],\n              [-51.23361569332104, -30.12147964950021],\n              [-51.24982052792359, -30.06004410028163],\n              [-51.297973605932356, -30.034841462601477],\n              [-51.29504025621108, -30.14105728696579],\n              [-51.28176877132981, -30.244109048709397],\n              [-51.15734860056793, -30.364255537667624],\n              [-51.18749508609292, -30.411958176206085],\n              [-51.246667451631424, -30.467527025982122],\n              [-51.287624484443825, -30.591277030702805],\n              [-51.28312008974075, -30.751479673532806],\n              [-51.31641965155788, -30.702656429482843],\n              [-51.35916745592297, -30.674531428409963],\n              [-51.37649289603701, -30.84686297795264],\n              [-51.45906614137442, -30.912802921874295],\n              [-51.485169657995186, -30.977600287627368],\n              [-51.4635705360775, -31.05274677486898],\n              [-51.50631834044259, -31.10449238231167],\n              [-51.716915272304334, -31.24377705559371],\n              [-51.9268420381249, -31.33894063344266],\n              [-51.97252319221127, -31.383720908588394],\n              [-51.99479248017013, -31.48991476029562],\n              [-52.02697143647579, -31.59905294805266],\n              [-52.11989380330175, -31.694897678271346],\n              [-52.19346924556156, -31.885466533197217],\n              [-52.191447761109444, -31.967600325392873],\n              [-52.167146002369904, -32.088427966720836],\n              [-52.12732056139755, -32.16785912209464],\n              [-52.19009644269852, -32.220725335048826],\n              [-52.27469117248805, -32.32377709679244],\n              [-52.341740735592666, -32.43963891761847],\n              [-52.50846925757786, -32.87524684439184],\n              [-52.65224733923442, -33.13782009659572],\n              [-52.76294558564473, -33.26629422259037],\n              [-52.92089603112319, -33.40197538010994],\n              [-53.3706653353899, -33.74217802980639],\n              [-53.39766973095128, -33.73723418196155],\n              [-53.463598688544394, -33.70976836060131],\n              [-53.518947811749555, -33.677138964825346],\n              [-53.5313184176902, -33.65553984290766],\n              [-53.53762457027452, -33.62293241978878],\n              [-53.53041753874959, -33.500303020579594],\n              [-53.5313184176902, -33.17088894551344],\n              [-53.51197149312405, -33.108574490011335],\n              [-53.482945613110545, -33.06851833613956],\n              [-53.395197807028865, -33.01024684954168],\n              [-53.310141651440475, -32.92699245183453],\n              [-53.214066208322365, -32.82101832669819],\n              [-53.12564823619948, -32.736643323479534],\n              [-53.15736576670629, -32.680173594762884],\n              [-53.231171921865524, -32.625505623927474],\n              [-53.36279912415233, -32.5811648019235],\n              [-53.489471492265736, -32.503315677860044],\n              [-53.601740783657846, -32.40296655293828],\n              [-53.653717103999966, -32.29879418568317],\n              [-53.701200015967544, -32.18629418139163],\n              [-53.74665045715447, -32.0974147834699],\n              [-53.76172369991697, -32.05691917645637],\n              [-53.80604254926385, -32.039824449241756],\n              [-53.876464915231495, -31.994604720954264],\n              [-53.92057502433603, -31.952307356059492],\n              [-53.98514167718969, -31.928225323890835],\n              [-54.10034431830307, -31.901440654900334],\n              [-54.220490807261285, -31.85510032110134],\n              [-54.36989388913244, -31.745083227060768],\n              [-54.47766977215001, -31.622673554422462],\n              [-54.530997410903055, -31.541902066966273],\n              [-54.58769785251913, -31.485190639021653],\n              [-54.89594127248081, -31.391147666684198],\n              [-55.03611583837491, -31.279109088191518],\n              [-55.09124523500918, -31.31397969499048],\n              [-55.17359875377572, -31.279548541333284],\n              [-55.2545899678028, -31.22553975021051],\n              [-55.27889172654233, -31.184143264256356],\n              [-55.31332288019952, -31.14162617279071],\n              [-55.34549085017663, -31.093022655311636],\n              [-55.36596936658283, -31.046220895713788],\n              [-55.449674203760296, -30.964548529316986],\n              [-55.55721937387844, -30.87588885796614],\n              [-55.60312025453567, -30.850708192943074],\n              [-55.627191300375785, -30.85811297838179],\n              [-55.6505921801747, -30.89210467889722],\n              [-55.665214983466896, -30.924953801244065],\n              [-55.70594130337986, -30.94655292316176],\n              [-55.756346578740164, -30.987048530175294],\n              [-55.80787245961197, -31.03677265316587],\n              [-55.87357070430566, -31.069621775512708],\n              [-55.952089994410315, -31.080871775941866],\n              [-56.00474746712216, -31.079289744631517],\n              [-56.015547028081, -31.059734079823023],\n              [-56.01846939147373, -30.991772651449253],\n              [-55.998891754008156, -30.83719500883383],\n              [-56.044792634665384, -30.77758319015357],\n              [-56.10576675808511, -30.71366473068403],\n              [-56.1762001103813, -30.628388848524764],\n              [-56.40727555864926, -30.447487962717688],\n              [-56.72159441829582, -30.18695816762302],\n              [-56.83274310417643, -30.107307285678324],\n              [-56.93714618433097, -30.101001133094016],\n              [-57.03277118797878, -30.109987949843088],\n              [-57.12051899406046, -30.144419103500283],\n              [-57.18689839112389, -30.264807291686473],\n              [-57.21434223982703, -30.283484050211435],\n              [-57.38377339863408, -30.28078141338959],\n              [-57.552292692171946, -30.26120377592401],\n              [-57.60899313378802, -30.18785904656363],\n              [-57.56377340550053, -30.1399147087972],\n              [-57.40514180765234, -30.033940583660858],\n              [-57.31739400157065, -29.939458158181644],\n              [-57.30074971382635, -29.856643213616252],\n              [-57.22469136131558, -29.782177878744378],\n              [-57.08924091669542, -29.716237934822715],\n              [-56.93871722931277, -29.59475111378211],\n              [-56.77245013312644, -29.41789319687927],\n              [-56.67141985583494, -29.287397586432505],\n              [-56.63586809666624, -29.20302258321385],\n              [-56.570620291442864, -29.138005490889896],\n              [-56.47589616673568, -29.092544063374433],\n              [-56.393322921398266, -28.997380485525483],\n              [-56.32245011596031, -28.852470812028862],\n              [-56.22547379390157, -28.737268170915485],\n              [-56.10284439469238, -28.651772562185336],\n              [-56.03422378660596, -28.58088877041883],\n              [-56.01958999698523, -28.524638768273064],\n              [-55.984950103085694, -28.488647555962608],\n              [-55.930271145921736, -28.472893160830374],\n              [-55.90371718983066, -28.443208101104233],\n              [-55.90551894771188, -28.399548431469995],\n              [-55.890445704949386, -28.37008309831473],\n              [-55.858947901013465, -28.35410897661162],\n              [-55.80607070173075, -28.3597339768262],\n              [-55.732044820000624, -28.386716399730496],\n              [-55.687275531183445, -28.38155282531477],\n              [-55.67197157552151, -28.344880460634577],\n              [-55.6915492129871, -28.302802822310696],\n              [-55.74599745725163, -28.255539636913994],\n              [-55.72551894084543, -28.204013756042194],\n              [-55.58242201155859, -28.121001057563006],\n              [-55.47666761299314, -28.089272540727663],\n              [-55.409848762787945, -28.037746659855856],\n              [-55.34639172911726, -27.956074293459054],\n              [-55.24379040684394, -27.898923412372667],\n              [-55.10159435649773, -27.866755442395558],\n              [-55.06379039997749, -27.835927804500827],\n              [-55.06896496072176, -27.796333076427906],\n              [-55.03995006703681, -27.767746649556173],\n              [-54.955794790389035, -27.74726813314998],\n              [-54.91012462263123, -27.708574284017672],\n              [-54.902697864535426, -27.651862856073052],\n              [-54.875693468974035, -27.59921636968975],\n              [-54.82912242227562, -27.550612852210676],\n              [-54.77714610193351, -27.53239751948456],\n              [-54.719775494276234, -27.544987851996098],\n              [-54.665766703153466, -27.526552792699107],\n              [-54.61537241412171, -27.477048396279415],\n              [-54.55484873017228, -27.45410894227934],\n              [-54.48441537787609, -27.45725103224295],\n              [-54.4481934526662, -27.446440484955566],\n              [-54.32691537186794, -27.423501030955492],\n              [-54.26009652166276, -27.38210454500134],\n              [-54.20519783792791, -27.289621631317146],\n              [-54.156374593877956, -27.253850145577573],\n              [-54.113846516083754, -27.274768115125532],\n              [-54.04004036092452, -27.243720750659918],\n              [-53.935417554199105, -27.161147505322504]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#a00\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-47.745287, -15.923726]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"medianCandidates\": [\n          [-47.717392, -15.325783],\n          [-47.625268, -14.77049],\n          [-47.486291, -14.239613],\n          [-47.3428, -13.830916],\n          [-47.225066, -13.537914],\n          [-47.138475, -13.335262],\n          [-47.078171, -13.198161],\n          [-47.037397, -13.106737],\n          [-47.010288, -13.046354],\n          [-46.992443, -13.006728]\n        ],\n        \"marker-color\": \"#0a0\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-46.980766, -12.980834]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00a\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-54.403759, -14.242099]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#aaa\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-54.363435, -11.529937]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/out/brazil-states.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 790,\n        \"fill\": \"#fff\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-66.62767023563575, -9.925465695489663],\n              [-66.73004084500963, -9.975431517708216],\n              [-67.11142025408935, -10.269052134377702],\n              [-67.19040096999285, -10.311349499272467],\n              [-67.28040097342608, -10.317194226057921],\n              [-67.33281674690996, -10.357931532299432],\n              [-67.41697202355772, -10.389879775705666],\n              [-67.58234922713199, -10.505983295759663],\n              [-67.66672423035064, -10.598905662585608],\n              [-67.72184264065636, -10.68303896657629],\n              [-67.78575011379736, -10.685983302626113],\n              [-67.83502379731763, -10.662802149398075],\n              [-67.99162292438517, -10.674491602968985],\n              [-68.07172424580017, -10.703078029840725],\n              [-68.15857117294124, -10.784970122808403],\n              [-68.2665667825297, -10.933021886268634],\n              [-68.311116344776, -10.975099524592522],\n              [-68.39797425824561, -11.018737221569666],\n              [-68.49832338316737, -11.05475040653721],\n              [-68.62274355392925, -11.109198650801744],\n              [-68.67832339003384, -11.112802166564208],\n              [-68.72759707355411, -11.122470135683017],\n              [-68.76989443844887, -11.09772892380171],\n              [-68.78406680227076, -11.044621011619554],\n              [-68.84842471488206, -11.011090736902972],\n              [-69.00165103908655, -10.99445743548722],\n              [-69.22844181922231, -10.955741613697825],\n              [-69.46245061721154, -10.948095129031131],\n              [-69.578543150937, -10.951698644793595],\n              [-69.67394842801392, -10.954181555044556],\n              [-69.8397760710585, -10.933483312067494],\n              [-69.96037299948702, -10.92987979630503],\n              [-70.06634712462336, -10.982526282688326],\n              [-70.22002388829817, -11.047543375012282],\n              [-70.29044625426582, -11.064198649085128],\n              [-70.34197213513762, -11.066681559336104],\n              [-70.3923664241694, -11.05857364887055],\n              [-70.4508686236667, -11.02482364758309],\n              [-70.53322214243323, -10.946974523519643],\n              [-70.5964484632045, -10.976901282473747],\n              [-70.64234934386172, -11.01018985796236],\n              [-70.64144846492111, -10.84078067181241],\n              [-70.64031687308108, -10.586073630846116],\n              [-70.63941599414046, -10.361293348833925],\n              [-70.63852610152838, -10.18151306853835],\n              [-70.63762522258777, -9.971828001945752],\n              [-70.63694407021804, -9.823776238485522],\n              [-70.59374582638266, -9.767526236339762],\n              [-70.56719187029158, -9.704530628467907],\n              [-70.59915110002635, -9.62059507839102],\n              [-70.59217478140084, -9.543427106697308],\n              [-70.57012522001286, -9.489879741373386],\n              [-70.54109933999935, -9.437452981560966],\n              [-70.60791819020453, -9.463776224752607],\n              [-70.63694407021804, -9.478168315145382],\n              [-70.67249582938673, -9.518004742446266],\n              [-70.75844187758719, -9.571771834341064],\n              [-70.8162739110433, -9.625319199664986],\n              [-70.88444407965942, -9.668978869299224],\n              [-70.97084056733017, -9.765724478458523],\n              [-71.04172435909668, -9.81883239064068],\n              [-71.11529980135649, -9.852340692700167],\n              [-71.23791821423713, -9.965983275160283],\n              [-71.33939893099894, -9.988483276018599],\n              [-71.6080476228877, -10.006017456374977],\n              [-71.8874958757353, -10.005578003233211],\n              [-72.1428730827428, -10.005116577434364],\n              [-72.1815669318751, -10.003776245351972],\n              [-72.17909500795267, -9.91017272615629],\n              [-72.17279984169691, -9.844013055663751],\n              [-72.25986649540886, -9.77427184206583],\n              [-72.26572220852286, -9.688556506764797],\n              [-72.28912308832179, -9.629142441998326],\n              [-72.3181489683353, -9.556698591578566],\n              [-72.37912309175502, -9.510116558551601],\n              [-72.46484941338458, -9.492120952396377],\n              [-72.60547441874901, -9.452064798524603],\n              [-72.81426959272953, -9.410448585999575],\n              [-73.01384723706157, -9.407526222606847],\n              [-73.20937092616083, -9.411349464940187],\n              [-73.08989460324379, -9.265780611730932],\n              [-72.97041828032677, -9.120189785864582],\n              [-72.97402179608923, -8.993077964609398],\n              [-73.07054767867764, -8.882819171340856],\n              [-73.12252399901976, -8.81397883668356],\n              [-73.20307575990506, -8.719254711976376],\n              [-73.30252400588621, -8.65399592042445],\n              [-73.35674153725132, -8.566918280383945],\n              [-73.35179768940648, -8.51427179400065],\n              [-73.36034505301379, -8.479401187201688],\n              [-73.39814900953402, -8.458922670795488],\n              [-73.43594197972571, -8.426974427389268],\n              [-73.48814901296724, -8.392103820590307],\n              [-73.54912313638698, -8.345741514134218],\n              [-73.54912313638698, -8.299401180335224],\n              [-73.57229330328647, -8.249896783915531],\n              [-73.61009725980671, -8.191845023888533],\n              [-73.61009725980671, -8.145504690089538],\n              [-73.64496786660567, -8.072819140441808],\n              [-73.68277182312589, -8.020612107200265],\n              [-73.7203450667467, -7.985741500401318],\n              [-73.77569418995185, -7.936478803209596],\n              [-73.77277182655912, -7.895741496968085],\n              [-73.73204550664616, -7.875504679789856],\n              [-73.71450033996123, -7.828922646762891],\n              [-73.7203450667467, -7.78258231296391],\n              [-73.76691611344512, -7.753556432950404],\n              [-73.82204551007939, -7.738922643329673],\n              [-73.89472007339857, -7.654767366681895],\n              [-73.94691612031157, -7.611129669704752],\n              [-73.98179771343908, -7.585026153083987],\n              [-74.00204551694584, -7.556000273070481],\n              [-73.98179771343908, -7.535741483235171],\n              [-73.95839683364015, -7.506715603221679],\n              [-73.95277183342557, -7.460375269422684],\n              [-73.9642415604256, -7.416715599788446],\n              [-73.9642415604256, -7.378922629596758],\n              [-73.92937095362666, -7.367233176025834],\n              [-73.89179771000585, -7.373077902811303],\n              [-73.85399375348561, -7.349896749583266],\n              [-73.80472006996536, -7.34112965940507],\n              [-73.7493709467602, -7.33526295996252],\n              [-73.7203450667467, -7.309181415998836],\n              [-73.72326743013943, -7.262819109542761],\n              [-73.75814902326692, -7.172819106109529],\n              [-73.79301963006588, -7.13502613591784],\n              [-73.79684287239924, -7.116788830534645],\n              [-72.66352617877601, -7.592672637750681],\n              [-70.37325021250267, -8.155172659208347],\n              [-69.80646552291279, -8.454198549521536],\n              [-66.82859919837871, -9.838168328878282],\n              [-66.62767023563575, -9.925245968918787],\n              [-66.62767023563575, -9.925465695489663]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 1749,\n        \"fill\": \"#fff\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-66.62767023563575, -9.925465695489663],\n              [-66.62767023563575, -9.925245968918787],\n              [-66.82859919837871, -9.838168328878282],\n              [-66.74377375568974, -9.748849477814787],\n              [-66.69471979874037, -9.748849477814787],\n              [-66.59662287117014, -9.664013048797287],\n              [-66.50279962540357, -9.63274595776079],\n              [-66.4046917115048, -9.52565122711296],\n              [-66.39569390842718, -9.405043312355886],\n              [-66.10544609462073, -9.418556496465115],\n              [-65.99834037764435, -9.400780616880766],\n              [-65.93129081453974, -9.414052101762039],\n              [-65.76614432386489, -9.56592710755561],\n              [-65.6768254728014, -9.534638043862032],\n              [-65.6322759105551, -9.449823587501612],\n              [-65.52517019357872, -9.414052101762039],\n              [-65.44484914559283, -9.445319192798536],\n              [-65.41807546293087, -9.391771827474614],\n              [-65.221650894891, -9.257892427836268],\n              [-65.19915089403268, -9.266681490671544],\n              [-65.17236622504218, -9.373995947890265],\n              [-65.0920451770563, -9.436332376049464],\n              [-65.03849781173238, -9.400780616880766],\n              [-64.90461841209404, -9.213112152690542],\n              [-64.92689868638146, -9.11953060615194],\n              [-64.88662280593881, -9.061478846124942],\n              [-64.77951708896242, -8.985431479942704],\n              [-64.69019823789894, -9.021202965682278],\n              [-64.59659471870324, -9.025707360385354],\n              [-64.47599779027472, -8.949879720774021],\n              [-64.4179460302477, -8.972138022404351],\n              [-64.38217454450813, -8.940870931367854],\n              [-64.21701706750476, -8.949879720774021],\n              [-64.11892013993453, -8.936366536664778],\n              [-64.12769821644126, -8.68640558962953],\n              [-64.07415085111734, -8.713168285962936],\n              [-63.99832321150599, -8.681901194926454],\n              [-63.92249557189466, -8.53453058383596],\n              [-63.993818816802914, -8.440927064640263],\n              [-63.91799117719157, -8.333832333992419],\n              [-63.75284468651674, -8.284547664143616],\n              [-63.72607100385477, -8.19094414494792],\n              [-63.59197187764555, -8.1641814486145],\n              [-63.587698195841895, -8.079345019597],\n              [-63.538424512321626, -7.9987932587117],\n              [-62.90459025962714, -8.007802048117853],\n              [-62.82877360634434, -8.016788864866925],\n              [-62.721448162797074, -8.061349413441775],\n              [-62.67689860055077, -8.114896778765697],\n              [-62.63662272010812, -8.222233208641498],\n              [-62.5562906857937, -8.289052058846693],\n              [-62.5385257925379, -8.36059503032584],\n              [-62.45370034984893, -8.347103818873691],\n              [-62.373368315534506, -8.382875304613265],\n              [-62.3063187524299, -8.570302069575533],\n              [-62.172450339120104, -8.610577950018182],\n              [-62.13217445867744, -8.766715651286859],\n              [-61.99829505903911, -8.811495926432599],\n              [-61.91797401105322, -8.873832354591784],\n              [-61.873424448806915, -8.856056475007449],\n              [-61.837641976738794, -8.744457349656528],\n              [-61.761825323455994, -8.72668147007218],\n              [-61.71704504831027, -8.68640558962953],\n              [-61.609950317662424, -8.722177075369103],\n              [-61.609950317662424, -8.766715651286859],\n              [-61.50734899538912, -8.847047685601282],\n              [-61.48484899453082, -8.914108235034448],\n              [-61.529618283348, -8.998922691394853],\n              [-61.55639196600997, -9.128297696330122],\n              [-61.529618283348, -9.22662533679977],\n              [-61.592174438078075, -9.239896821681043],\n              [-61.609950317662424, -9.320448582566343],\n              [-61.54739416293235, -9.409547707058962],\n              [-61.551898557635425, -9.463095072382885],\n              [-61.48057531272717, -9.63725035246388],\n              [-61.520620480270395, -9.704288929239937],\n              [-61.56540075541612, -9.726569203527362],\n              [-61.520620480270395, -9.860448603165707],\n              [-61.53412267805108, -9.994547729374943],\n              [-61.569674437219774, -10.061366579580124],\n              [-61.56540075541612, -10.26230652865162],\n              [-61.471566523321, -10.436439836075536],\n              [-61.502844600686046, -10.686422755767879],\n              [-61.471566523321, -10.757746000676136],\n              [-61.520620480270395, -10.789013091712633],\n              [-61.50734899538912, -10.878353915433223],\n              [-61.520620480270395, -10.954181555044556],\n              [-61.471566523321, -10.998939857533202],\n              [-60.440400712500775, -11.003444252236292],\n              [-60.440400712500775, -11.038996011404976],\n              [-60.38234895247378, -11.10155216613505],\n              [-60.27951691730104, -11.079271891847625],\n              [-60.17691559502774, -11.11954777229029],\n              [-60.069820864379906, -11.115043377587199],\n              [-60.00277130127529, -11.14633244128079],\n              [-59.908948055508716, -11.38280217686389],\n              [-60.025040589234166, -11.534677182657461],\n              [-60.10109894174494, -11.601496032862656],\n              [-60.10109894174494, -11.74436224925006],\n              [-60.06082306130229, -11.905246044449797],\n              [-59.98499542169094, -11.918517529331055],\n              [-59.93144805636702, -12.0523969289694],\n              [-59.88666778122129, -12.128444295151638],\n              [-59.89117217592437, -12.244547815205635],\n              [-59.82412261281975, -12.387194305022163],\n              [-59.908948055508716, -12.619401345130157],\n              [-60.00277130127529, -12.731000470481078],\n              [-60.04304718171794, -12.873866686868496],\n              [-60.083092349261165, -12.927414052192404],\n              [-60.194691474612085, -12.972194327338144],\n              [-60.270749827122856, -13.070302241236917],\n              [-60.27502350892651, -13.137340818012973],\n              [-60.35107087510873, -13.271220217651319],\n              [-60.38234895247378, -13.418590828741813],\n              [-60.659094568499526, -13.601513199001005],\n              [-60.72479281319322, -13.662948748219577],\n              [-60.914471775507025, -13.561479017786311],\n              [-61.076915629360016, -13.489694347079194],\n              [-61.12912266260156, -13.49848340991447],\n              [-61.415997673544965, -13.526608410987365],\n              [-61.511622677192776, -13.541220227951001],\n              [-61.57574987690465, -13.524806653106126],\n              [-61.78995032452889, -13.525707532046738],\n              [-61.874094614848104, -13.47035840884159],\n              [-61.944747693715186, -13.406220222801167],\n              [-62.09482094162752, -13.241974611066937],\n              [-62.11799110852702, -13.159840818871288],\n              [-62.17604286855402, -13.133737302250523],\n              [-62.26402138753514, -13.143646970597288],\n              [-62.35290078545687, -13.13239697016813],\n              [-62.525474034227514, -13.064215815223477],\n              [-62.68701700913988, -12.99425487505468],\n              [-62.76554728557308, -12.99717723844742],\n              [-62.83506877260011, -12.953737295384059],\n              [-62.95791789838019, -12.847103990535075],\n              [-63.015299492366, -12.805465805352952],\n              [-63.041392022658215, -12.750358381375776],\n              [-63.067495539278994, -12.669125468120725],\n              [-63.11676922279926, -12.651569315107267],\n              [-63.180665709611716, -12.666203104727998],\n              [-63.24974774349698, -12.70781931725304],\n              [-63.34672406555572, -12.680155741979007],\n              [-63.46529950953213, -12.605228981308272],\n              [-63.54179731518467, -12.546715795482427],\n              [-63.58566572506123, -12.519052220208394],\n              [-63.68849776023397, -12.478095187396008],\n              [-63.788165732786, -12.469547823788702],\n              [-63.93846969359777, -12.529621068267815],\n              [-64.06154953227727, -12.505099582957385],\n              [-64.25504075059587, -12.48328073446882],\n              [-64.42041795417013, -12.439840791405459],\n              [-64.48072191154867, -12.326220181602437],\n              [-64.5133403209961, -12.251073694360826],\n              [-64.61166796146574, -12.20383248162122],\n              [-64.6899675249995, -12.146439901306863],\n              [-64.78334033129578, -12.059362261266358],\n              [-64.82992236432274, -12.030358353909946],\n              [-64.9142973675414, -12.006056595170406],\n              [-64.99259693107516, -11.975228957275675],\n              [-65.00114429468246, -11.920099560641404],\n              [-65.03017017469595, -11.847414010993674],\n              [-65.03714649332146, -11.82941840483845],\n              [-65.09024341917507, -11.741220159286456],\n              [-65.1152153439558, -11.735155705930111],\n              [-65.1426701789875, -11.752250433144724],\n              [-65.16336842196456, -11.76508246488423],\n              [-65.18564869625199, -11.749547796322872],\n              [-65.18969166515622, -11.710172794820835],\n              [-65.17529957476346, -11.646957460378118],\n              [-65.20611622632964, -11.58057806331469],\n              [-65.28217457884041, -11.511056576287658],\n              [-65.32200001981276, -11.43927190558054],\n              [-65.32559254924668, -11.364806570708666],\n              [-65.34246754989042, -11.315082447718083],\n              [-65.37284474831483, -11.289879810037931],\n              [-65.38995046185799, -11.246220140403707],\n              [-65.39354299129191, -11.184345138043355],\n              [-65.37149342990391, -11.110319256313247],\n              [-65.32379079136545, -11.02482364758309],\n              [-65.33392018628311, -10.892746005825984],\n              [-65.40232106779864, -10.714767483411634],\n              [-65.43989431141945, -10.586293357416992],\n              [-65.44709035661583, -10.507323627842041],\n              [-65.43697194802671, -10.449052141244152],\n              [-65.39534474917313, -10.392340713299532],\n              [-65.3129912304066, -10.253078012674592],\n              [-65.29859914001383, -10.14686218831028],\n              [-65.32447194373518, -10.026957398580024],\n              [-65.32807545949764, -9.935595090407318],\n              [-65.30939870097268, -9.872599482535477],\n              [-65.33797414151587, -9.790245963768939],\n              [-65.39624562811376, -9.712396839705491],\n              [-65.43674123512729, -9.710375355253376],\n              [-65.49209035833245, -9.731754750600174],\n              [-65.55870046829529, -9.797452995293867],\n              [-65.63721975839994, -9.80914244886479],\n              [-65.70674124542697, -9.768427115280375],\n              [-65.92477592171309, -9.785521842494987],\n              [-66.26361626667007, -9.826017449508512],\n              [-66.39929742418964, -9.868095087832401],\n              [-66.47894830613433, -9.886090693987626],\n              [-66.57524347582333, -9.899823604667745],\n              [-66.62767023563575, -9.925465695489663]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 497,\n        \"fill\": \"#fff\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-58.86877345528232, 0.224275902629742],\n              [-59.77057524749584, 0.228780297332833],\n              [-60.025040589234166, 0.224275902629742],\n              [-60.127872624406905, 0.13067238343406],\n              [-60.16791779195013, 0.005582046630991],\n              [-60.21697174889951, -0.043482896646935],\n              [-60.252743234639084, -0.15057762729478],\n              [-60.31079499466608, -0.235392083655199],\n              [-60.31529938936916, -0.306957027791427],\n              [-60.38662263427743, -0.463094729060117],\n              [-60.39111604265196, -0.521146489087116],\n              [-60.31529938936916, -0.619474129556764],\n              [-60.306290599963006, -0.673021494880686],\n              [-60.33756867732805, -0.704288585917183],\n              [-60.46717439516273, -0.740082044313837],\n              [-60.516217365783575, -0.829181168806457],\n              [-60.6410989623443, -0.86044825984294],\n              [-60.73492220811087, -0.851681169664758],\n              [-60.815243256096764, -0.686292979761944],\n              [-60.90457309348879, -0.610465340150597],\n              [-60.93134677615076, -0.556917974826689],\n              [-61.060721781086016, -0.530155278493268],\n              [-61.10549106990321, -0.4943618200966],\n              [-61.221594589957206, -0.498866214799691],\n              [-61.24387486424463, -0.547931158077617],\n              [-61.45807531186885, -0.637250009141113],\n              [-61.53412267805108, -0.726568860204608],\n              [-61.578672240297394, -0.945262716203359],\n              [-61.560896360713045, -1.021332055042677],\n              [-61.5741678455943, -1.14169827057178],\n              [-61.61894812074004, -1.275797396781002],\n              [-61.619848999680656, -1.449491251063151],\n              [-61.71727576120969, -1.401129432812041],\n              [-61.798497688136194, -1.388736854214301],\n              [-61.880840220574186, -1.389198280013161],\n              [-61.87769813061057, -1.369400915976698],\n              [-61.93574989063757, -1.244530305744519],\n              [-62.02957313640414, -1.146202665274856],\n              [-62.14117226175506, -1.065870630960433],\n              [-62.2037174301566, -1.043590356673008],\n              [-62.24377358402836, -0.981056174600027],\n              [-62.31531655550751, -0.945262716203359],\n              [-62.41791787778082, -0.829181168806457],\n              [-62.50724771517285, -0.771129408779444],\n              [-62.47596963780782, -0.695301769168111],\n              [-62.3778727102376, -0.717582043455536],\n              [-62.31082314713298, -0.641754403844189],\n              [-62.3198209502106, -0.521146489087116],\n              [-62.36887490715998, -0.467599123763193],\n              [-62.373368315534506, -0.342728513531],\n              [-62.40464639289955, -0.271163569394773],\n              [-62.47596963780782, -0.222120598773927],\n              [-62.511741123547395, -0.123792958304278],\n              [-62.569792883574394, -0.047965318692931],\n              [-62.578790686652, 0.018853531512249],\n              [-62.5250235947572, 0.094900897694487],\n              [-62.56529947519985, 0.17523293200891],\n              [-62.569792883574394, 0.246556176917167],\n              [-62.53402139783482, 0.313605740021785],\n              [-62.52951700313173, 0.429698273747235],\n              [-62.4894718355885, 0.487750033774233],\n              [-62.48496744088543, 0.541297399098156],\n              [-62.5385257925379, 0.675176798736501],\n              [-62.53402139783482, 0.7332285587635],\n              [-62.44469156044278, 0.804782516571194],\n              [-62.511741123547395, 0.960931204168418],\n              [-62.51624551825047, 1.059247858309519],\n              [-62.6143424458207, 1.362778143325784],\n              [-62.623340248898316, 1.416325508649706],\n              [-62.721448162797074, 1.49665754296413],\n              [-62.78849772590169, 1.603752273611974],\n              [-62.712670086290345, 1.73763167325032],\n              [-62.730445965874694, 1.831454919016892],\n              [-62.69040079833147, 1.911775967002768],\n              [-62.70816569158727, 1.947547452742342],\n              [-62.84654948592869, 2.018881683979146],\n              [-63.002698173525914, 2.018881683979146],\n              [-63.123295101954454, 2.112704929745718],\n              [-63.15006878461641, 2.179754492850336],\n              [-63.306448185113055, 2.16625229506964],\n              [-63.393745551724436, 2.224073342197215],\n              [-63.3748490666286, 2.340407575150635],\n              [-63.38924115702136, 2.411950546629782],\n              [-63.584545119549745, 2.434000108017784],\n              [-63.71256880607409, 2.434000108017784],\n              [-63.92406661687646, 2.45245713997187],\n              [-64.02486618126854, 2.481922473127128],\n              [-64.04669601608565, 2.502400989533328],\n              [-64.04871750053776, 2.525131703291052],\n              [-64.02870040993042, 2.575976431793123],\n              [-64.00912277246485, 2.671832148340357],\n              [-64.03769821300803, 2.801426879846503],\n              [-64.14344162524495, 3.00482776651188],\n              [-64.21881882538598, 3.204625137414794],\n              [-64.22871750740421, 3.343898824368296],\n              [-64.22714646242241, 3.491280421787323],\n              [-64.22107102273753, 3.587355864905447],\n              [-64.27529954043118, 3.662733065046481],\n              [-64.56801927816005, 3.89987296667077],\n              [-64.66904955545155, 4.011702804921114],\n              [-64.70256884383959, 4.089332202413701],\n              [-64.81777148495297, 4.232198418801104],\n              [-64.78874560493946, 4.276077815006218],\n              [-64.72236620787605, 4.274506770024416],\n              [-64.66544603968909, 4.237153252974494],\n              [-64.6137004322464, 4.15773308392923],\n              [-64.57634691519648, 4.139957204344881],\n              [-64.52549120036586, 4.139957204344881],\n              [-64.2557219029656, 4.140407643815195],\n              [-64.19249558219434, 4.126905446034499],\n              [-64.15424118620379, 4.100131763372545],\n              [-64.12162277675638, 4.067051928126276],\n              [-64.0734696987476, 3.974349287871192],\n              [-64.0214933784055, 3.9291295595837],\n              [-63.91461837432854, 3.930700604565502],\n              [-63.74699995973127, 3.932502362446741],\n              [-63.652946001065274, 3.940829999483157],\n              [-63.596695998919515, 3.914957195761815],\n              [-63.52672407242217, 3.893797526985892],\n              [-63.37979291447344, 3.942851483935272],\n              [-63.338616155090165, 3.943983075775321],\n              [-63.2947477452136, 3.922153240958195],\n              [-63.136116147365414, 3.756556310813053],\n              [-63.04521526499157, 3.686573397987161],\n              [-62.96871745933903, 3.593881744060639],\n              [-62.856898607417236, 3.593431304590325],\n              [-62.764646406632465, 3.672851473635589],\n              [-62.73989420842261, 3.940379560012857],\n              [-62.712219646820046, 4.017997971176882],\n              [-62.66541788722219, 4.039608079423118],\n              [-62.60984903744617, 4.042299729916422],\n              [-62.54392007985305, 4.084377368240311],\n              [-62.47259683494478, 4.138605885933956],\n              [-62.41072183258443, 4.156832204988618],\n              [-62.153092428225406, 4.098330005491306],\n              [-62.08154945674626, 4.126224293664762],\n              [-61.82076697609507, 4.197108085431267],\n              [-61.55415075498696, 4.287778254905689],\n              [-61.47944372088712, 4.402299743649337],\n              [-61.36762486896532, 4.432907654973178],\n              [-61.28009678945452, 4.516832218721532],\n              [-61.209443710587436, 4.508054142214789],\n              [-61.10234897993959, 4.504681339351762],\n              [-61.0362002957756, 4.519304142643946],\n              [-61.00290073395844, 4.535278264347056],\n              [-60.966448095849145, 4.574653265849093],\n              [-60.906144138470594, 4.686702830670328],\n              [-60.83346957515141, 4.729230908464515],\n              [-60.741667813836955, 4.774230910181132],\n              [-60.67912264543541, 4.827108109463865],\n              [-60.627596764563606, 4.892575641258119],\n              [-60.60374544529438, 4.949276082874206],\n              [-60.60441561133557, 4.994506797490246],\n              [-60.635023522659424, 5.082023890672502],\n              [-60.671915613910485, 5.164377409439041],\n              [-60.71197176778226, 5.191601531571308],\n              [-60.742118253307254, 5.201950653059839],\n              [-60.65144808383285, 5.221077851055114],\n              [-60.57652132316211, 5.192502410511921],\n              [-60.4595169241675, 5.187998015808844],\n              [-60.40889192223631, 5.210047577196846],\n              [-60.33509675340562, 5.199248016238002],\n              [-60.241723947109364, 5.257980928634737],\n              [-60.18165070263025, 5.238853730639462],\n              [-60.142044988228776, 5.238853730639462],\n              [-60.10604278958978, 5.19430416839316],\n              [-60.07814850141632, 5.143898893032841],\n              [-59.99062042190552, 5.082924769613115],\n              [-59.99939849841225, 4.989782676216279],\n              [-60.01537262011537, 4.907429157449741],\n              [-60.026842347115405, 4.812705032742556],\n              [-60.03179718128878, 4.740480908893673],\n              [-60.06891998543928, 4.666674753734441],\n              [-60.124499821543864, 4.597603706177708],\n              [-60.14092438271729, 4.569698431675718],\n              [-60.14857086738398, 4.533256779894955],\n              [-60.111217350334044, 4.511207218506954],\n              [-60.04506866617005, 4.504681339351762],\n              [-59.96227569426175, 4.501747989630488],\n              [-59.90602569211599, 4.480379580612222],\n              [-59.833340142468245, 4.475875185909146],\n              [-59.74582304928599, 4.416702820370645],\n              [-59.7032949714918, 4.381151061201948],\n              [-59.69969145572934, 4.353476499599381],\n              [-59.72759673023134, 4.287547542006266],\n              [-59.73861601776106, 4.226804131485963],\n              [-59.716797169272496, 4.188099296025115],\n              [-59.69114409212203, 4.160424734422534],\n              [-59.62027128668407, 4.023172531921148],\n              [-59.586521285396614, 3.975480879711242],\n              [-59.557715131954, 3.959957197478431],\n              [-59.55120023912734, 3.933622967958229],\n              [-59.57549101153833, 3.883448405497347],\n              [-59.60451689155184, 3.819782631584317],\n              [-59.67021513624553, 3.752733068479714],\n              [-59.67899321275226, 3.699855869196981],\n              [-59.7316506854641, 3.666556307379821],\n              [-59.85449981124418, 3.587575591476323],\n              [-59.83312041589737, 3.462254541773831],\n              [-59.828846734093716, 3.398577781532254],\n              [-59.831098931445254, 3.349304098011984],\n              [-59.87294585686972, 3.283155413847993],\n              [-59.9456204201889, 3.087851451319608],\n              [-59.97239410285087, 2.990424689790572],\n              [-59.995794982649784, 2.765424681207506],\n              [-59.99444366423886, 2.690047481066472],\n              [-59.9606936629514, 2.58835802406233],\n              [-59.88959014461402, 2.362907576008951],\n              [-59.84909453760048, 2.32712510394083],\n              [-59.75527129183391, 2.274028178087221],\n              [-59.74357085193445, 2.121702732823337],\n              [-59.75166777607144, 1.962400968933963],\n              [-59.75617217077453, 1.900525966573611],\n              [-59.74064848854172, 1.874202723381956],\n              [-59.698570850217834, 1.861381677970996],\n              [-59.66842436469284, 1.842254479975736],\n              [-59.66370024341887, 1.795232993807005],\n              [-59.6666226068116, 1.746179036857626],\n              [-59.59665068031427, 1.718054035784732],\n              [-59.535665570565996, 1.70004744330096],\n              [-59.47941556842022, 1.632327714155167],\n              [-59.37771512508753, 1.527254467959438],\n              [-59.33721951807401, 1.508127269964163],\n              [-59.31697171456723, 1.464698313229363],\n              [-59.231245392937666, 1.376049628207056],\n              [-59.100299343020595, 1.343650945330523],\n              [-58.968441427834364, 1.304506656727909],\n              [-58.96641994338225, 1.302474185947247],\n              [-58.86877345528232, 0.224275902629742]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 3874,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-66.82859919837871, -9.838168328878282],\n              [-69.80646552291279, -8.454198549521536],\n              [-70.37325021250267, -8.155172659208347],\n              [-72.66352617877601, -7.592672637750681],\n              [-73.79684287239924, -7.116788830534645],\n              [-73.80472006996536, -7.079896739283569],\n              [-73.77637534232159, -6.973483161005475],\n              [-73.75814902326692, -6.905741459202574],\n              [-73.69447226302536, -6.83373706192458],\n              [-73.49984945286671, -6.679401118537129],\n              [-73.32547444621483, -6.574767325483165],\n              [-73.24041829062645, -6.563978750852868],\n              [-73.17742268275461, -6.525262929063473],\n              [-73.13736652888284, -6.465870836954096],\n              [-73.1263472413531, -6.40085374463014],\n              [-73.13534504443072, -6.34436204325641],\n              [-73.16774372730725, -6.260668192407493],\n              [-73.2064485627681, -6.156495825152376],\n              [-73.23547444278161, -6.098444065125378],\n              [-73.20937092616083, -6.028702851527456],\n              [-73.16279987946241, -5.933297574450535],\n              [-73.06807575475523, -5.789530479122504],\n              [-72.97986652287469, -5.634952836507097],\n              [-72.97019855375588, -5.58973310821959],\n              [-72.95894855332672, -5.495228710083282],\n              [-72.91822223341377, -5.302616398048215],\n              [-72.89572223255546, -5.198224304222222],\n              [-72.90742267245493, -5.157728697208682],\n              [-72.88717486894815, -5.122858090409721],\n              [-72.83204547231388, -5.093832210396229],\n              [-72.69861651214585, -5.067267267976604],\n              [-72.60839678214174, -5.009676933748452],\n              [-72.46889238228881, -4.901219898361148],\n              [-72.35279984856336, -4.786017257247764],\n              [-72.25672440544525, -4.748905439425812],\n              [-72.08256912536426, -4.642250161919733],\n              [-71.98245071334192, -4.57453043277394],\n              [-71.94307571183988, -4.553370763998004],\n              [-71.84474807137023, -4.504327793377172],\n              [-71.66834059393769, -4.48723306616256],\n              [-71.5214204223175, -4.469676913149087],\n              [-71.43816602461035, -4.437486970514897],\n              [-71.31689893014062, -4.424215485633624],\n              [-71.2349958508444, -4.388224273323175],\n              [-71.14432568136998, -4.387323394382548],\n              [-70.97377391705145, -4.350431303131487],\n              [-70.91572215702445, -4.295301906497215],\n              [-70.86599803403388, -4.229603661803523],\n              [-70.79961863697045, -4.173353659657764],\n              [-70.72154978633611, -4.158939596607908],\n              [-70.63447214629561, -4.168629538383797],\n              [-70.53075021851082, -4.167486960215214],\n              [-70.40474801643859, -4.150172506429712],\n              [-70.34354318011943, -4.193590476835979],\n              [-70.3170002103569, -4.246918115589011],\n              [-70.23915108629343, -4.30114663328267],\n              [-70.18402168965916, -4.298224269889943],\n              [-70.1288922930249, -4.286512843661939],\n              [-70.05329536631298, -4.333094876688904],\n              [-70.00402168279271, -4.327250149903449],\n              [-69.97207343938648, -4.30114663328267],\n              [-69.9659979997016, -4.235887841730744],\n              [-69.94822212011725, -4.200577781790031],\n              [-69.91109931596675, -3.996495742754917],\n              [-69.84967475307671, -3.659896608820929],\n              [-69.79409491697214, -3.354564565923425],\n              [-69.7326703540821, -3.01662509990706],\n              [-69.66899359384053, -2.667655360032427],\n              [-69.60464666755776, -2.314181225454703],\n              [-69.55176946827504, -2.024142151890601],\n              [-69.50654973998753, -1.77484038456798],\n              [-69.47864446548553, -1.622064499833797],\n              [-69.43499578217985, -1.421607949218242],\n              [-69.41790105496524, -1.245650911256007],\n              [-69.40034490195177, -1.195025909324826],\n              [-69.41137517581004, -1.152267118631201],\n              [-69.44916814600172, -1.091512721782351],\n              [-69.44871770653143, -1.06496975201982],\n              [-69.44444402472777, -1.029637719422013],\n              [-69.44871770653143, -0.998832054184362],\n              [-69.48832342093289, -0.96574123260956],\n              [-69.5193707853985, -0.945724142002206],\n              [-69.54344183123861, -0.91713771513048],\n              [-69.55469183166777, -0.877323260486676],\n              [-69.57450018203276, -0.837728532413763],\n              [-69.58326727221096, -0.79587062066075],\n              [-69.61184271275415, -0.762801771743028],\n              [-69.62062078926088, -0.72094385999003],\n              [-69.60082342522442, -0.681349131917102],\n              [-69.59204534871769, -0.639271493593228],\n              [-69.60082342522442, -0.5996767655203],\n              [-69.61184271275415, -0.553314459064225],\n              [-69.63389227414214, -0.509215336288221],\n              [-69.66742254885872, -0.482452639954801],\n              [-69.74752387027372, -0.452525881000696],\n              [-69.8278449182596, -0.381422362663301],\n              [-69.92279975586622, -0.317525875850848],\n              [-70.04406685033594, -0.196236808724038],\n              [-70.07062080642702, -0.138866201066776],\n              [-70.0708405329979, 0.018622818612826],\n              [-70.06566597225363, 0.189405295830795],\n              [-70.05801948758695, 0.447254426760708],\n              [-70.05396553235417, 0.578650916148078],\n              [-69.98534492426775, 0.585857947673006],\n              [-69.92504096688921, 0.589450477106922],\n              [-69.86204535901737, 0.598448280184542],\n              [-69.80714667528252, 0.607457069590694],\n              [-69.75674139992222, 0.626353554686546],\n              [-69.71894842973053, 0.649754434485459],\n              [-69.67371771511449, 0.665047403818846],\n              [-69.63861639541611, 0.659653116503691],\n              [-69.60352606204627, 0.680351359480767],\n              [-69.56482122658542, 0.700148723517231],\n              [-69.52701727006519, 0.716353558119778],\n              [-69.47211858633034, 0.729855755900459],\n              [-69.42082341835797, 0.698357951964539],\n              [-69.39201726491535, 0.666849161700071],\n              [-69.3587177030982, 0.651556192366698],\n              [-69.32721989916227, 0.655148721800614],\n              [-69.30562077724458, 0.65245707130731],\n              [-69.28312077638627, 0.627254433627158],\n              [-69.25409489637278, 0.625452675745933],\n              [-69.21269841041862, 0.629957070449009],\n              [-69.17399357495778, 0.635351357764151],\n              [-69.15599796880255, 0.642547402960545],\n              [-69.1532953319807, 0.658752237563078],\n              [-69.16319401399893, 0.686657512065082],\n              [-69.17669621177963, 0.712750042357314],\n              [-69.16589665082078, 0.753256635699387],\n              [-69.16499577188016, 0.801849166849919],\n              [-69.16319401399893, 0.863954882109695],\n              [-69.19379093899424, 0.898375049438343],\n              [-69.22439885031808, 0.963172415191409],\n              [-69.25859929107585, 1.015379448432952],\n              [-69.31191594350035, 1.050480768131337],\n              [-69.36142033992004, 1.063982965912032],\n              [-69.4028168258742, 1.042372857665796],\n              [-69.44152166133505, 1.03878032823188],\n              [-69.47031682844911, 1.058577692268329],\n              [-69.51711858804696, 1.059478571208956],\n              [-69.56752386340727, 1.065773737464724],\n              [-69.62084051583176, 1.073200495560528],\n              [-69.71691595894987, 1.059028131738643],\n              [-69.75134711260706, 1.076573298423568],\n              [-69.79814887220492, 1.078375056304793],\n              [-69.85214667699914, 1.059478571208956],\n              [-69.85079535858821, 1.308780338531562],\n              [-69.84944404017729, 1.543898755703736],\n              [-69.84854316123668, 1.708825519807704],\n              [-69.79995063008614, 1.705232990373773],\n              [-69.73964667270761, 1.734929036428468],\n              [-69.65009710874469, 1.739422444802997],\n              [-69.58124578775885, 1.770700522168042],\n              [-69.5429913917683, 1.773172446090456],\n              [-69.47009710187822, 1.757879476757083],\n              [-69.39426946226689, 1.725700520451426],\n              [-69.31979314106647, 1.721207112076897],\n              [-69.12426945196721, 1.721207112076897],\n              [-68.91322208063514, 1.721426838647773],\n              [-68.67854311660471, 1.721426838647773],\n              [-68.44342469943254, 1.721657551547196],\n              [-68.23957337329685, 1.721657551547196],\n              [-68.17656677909646, 1.719855793665971],\n              [-68.2132501301052, 1.774523764501382],\n              [-68.25599793447027, 1.845407556267887],\n              [-68.23934266039743, 1.901426845514223],\n              [-68.21842469084947, 1.957676847659997],\n              [-68.1938922192105, 1.986922454244379],\n              [-68.13021545896893, 1.955875089778772],\n              [-68.07711853311531, 1.860030359560085],\n              [-68.03279968376843, 1.788025962282077],\n              [-67.98982116650393, 1.75247420311338],\n              [-67.93627380118002, 1.748431234209164],\n              [-67.87551940433117, 1.760582113578934],\n              [-67.81499572038175, 1.790047446734192],\n              [-67.71194395863813, 1.922125088491299],\n              [-67.60912290979395, 2.035075532253146],\n              [-67.55602598394034, 2.073099215344257],\n              [-67.49954526889515, 2.107980808471765],\n              [-67.45769834347068, 2.121252293353024],\n              [-67.4005474623843, 2.116747898649948],\n              [-67.35194394490523, 2.085931247083764],\n              [-67.32066586754019, 2.032153168860418],\n              [-67.20592465222566, 1.84472640389815],\n              [-67.11929745165547, 1.703650959063424],\n              [-67.09004085874254, 1.615672440082307],\n              [-67.08825008718985, 1.400582099846019],\n              [-67.093644374505, 1.210002258591601],\n              [-67.08217464750497, 1.185480773281185],\n              [-67.06529964686123, 1.178273741756257],\n              [-66.87607112401774, 1.223054016901983],\n              [-66.61912287202844, 0.992198295204915],\n              [-66.42922418314376, 0.821657517214916],\n              [-66.34709039094811, 0.767198286621849],\n              [-66.30165093608973, 0.751905317288461],\n              [-66.19117241625031, 0.763375044288495],\n              [-66.05999565343382, 0.785424605676496],\n              [-65.99631889319224, 0.809726364416036],\n              [-65.92589652722458, 0.863054003169069],\n              [-65.81137503848093, 0.937299611470067],\n              [-65.71822195875555, 0.97802593138303],\n              [-65.68154959407536, 0.983431205026719],\n              [-65.64464651649574, 0.970379446716336],\n              [-65.56611624006256, 0.926049611040909],\n              [-65.52291799622718, 0.843476365703495],\n              [-65.56274343719952, 0.747400922585385],\n              [-65.55599783147345, 0.687997844147461],\n              [-65.47342458613602, 0.691150920439611],\n              [-65.40727590197203, 0.790379439849886],\n              [-65.36092458184449, 0.868679003383647],\n              [-65.26394825978576, 0.931905324154911],\n              [-65.16967457454888, 1.022125054159034],\n              [-65.10374561695576, 1.108082088688022],\n              [-65.02656665893349, 1.158476377719794],\n              [-64.91002368573774, 1.219681214038943],\n              [-64.81799121152385, 1.257023744760332],\n              [-64.73159472385309, 1.253431215326401],\n              [-64.6674675241412, 1.293926822339941],\n              [-64.58444383933347, 1.369974188522164],\n              [-64.5261723527356, 1.430948311941904],\n              [-64.48611619886383, 1.452778146759016],\n              [-64.40512498483675, 1.446922433645014],\n              [-64.30409470754526, 1.45525007068143],\n              [-64.20509690103441, 1.529506665310976],\n              [-64.11486618470175, 1.61927595584477],\n              [-64.06694381959241, 1.770480795597152],\n              [-64.03544601565649, 1.904349208906964],\n              [-64.00844162009511, 1.931573331039232],\n              [-63.97582321064769, 1.95295272638603],\n              [-63.93711837518684, 1.966905363637039],\n              [-63.84441573493177, 1.976804045655271],\n              [-63.682191607649656, 2.048127290563528],\n              [-63.57037275572786, 2.120582127311835],\n              [-63.463948191121204, 2.136105809544645],\n              [-63.432450387185284, 2.155452734110796],\n              [-63.393965278295326, 2.222502297215414],\n              [-63.393745551724436, 2.224073342197215],\n              [-63.306448185113055, 2.16625229506964],\n              [-63.15006878461641, 2.179754492850336],\n              [-63.123295101954454, 2.112704929745718],\n              [-63.002698173525914, 2.018881683979146],\n              [-62.84654948592869, 2.018881683979146],\n              [-62.70816569158727, 1.947547452742342],\n              [-62.69040079833147, 1.911775967002768],\n              [-62.730445965874694, 1.831454919016892],\n              [-62.712670086290345, 1.73763167325032],\n              [-62.78849772590169, 1.603752273611974],\n              [-62.721448162797074, 1.49665754296413],\n              [-62.623340248898316, 1.416325508649706],\n              [-62.6143424458207, 1.362778143325784],\n              [-62.51624551825047, 1.059247858309519],\n              [-62.511741123547395, 0.960931204168418],\n              [-62.44469156044278, 0.804782516571194],\n              [-62.53402139783482, 0.7332285587635],\n              [-62.5385257925379, 0.675176798736501],\n              [-62.48496744088543, 0.541297399098156],\n              [-62.4894718355885, 0.487750033774233],\n              [-62.52951700313173, 0.429698273747235],\n              [-62.53402139783482, 0.313605740021785],\n              [-62.569792883574394, 0.246556176917167],\n              [-62.56529947519985, 0.17523293200891],\n              [-62.5250235947572, 0.094900897694487],\n              [-62.578790686652, 0.018853531512249],\n              [-62.569792883574394, -0.047965318692931],\n              [-62.511741123547395, -0.123792958304278],\n              [-62.47596963780782, -0.222120598773927],\n              [-62.40464639289955, -0.271163569394773],\n              [-62.373368315534506, -0.342728513531],\n              [-62.36887490715998, -0.467599123763193],\n              [-62.3198209502106, -0.521146489087116],\n              [-62.31082314713298, -0.641754403844189],\n              [-62.3778727102376, -0.717582043455536],\n              [-62.47596963780782, -0.695301769168111],\n              [-62.50724771517285, -0.771129408779444],\n              [-62.41791787778082, -0.829181168806457],\n              [-62.31531655550751, -0.945262716203359],\n              [-62.24377358402836, -0.981056174600027],\n              [-62.2037174301566, -1.043590356673008],\n              [-62.14117226175506, -1.065870630960433],\n              [-62.02957313640414, -1.146202665274856],\n              [-61.93574989063757, -1.244530305744519],\n              [-61.87769813061057, -1.369400915976698],\n              [-61.880840220574186, -1.389198280013161],\n              [-61.798497688136194, -1.388736854214301],\n              [-61.71727576120969, -1.401129432812041],\n              [-61.619848999680656, -1.449491251063151],\n              [-61.61894812074004, -1.275797396781002],\n              [-61.5741678455943, -1.14169827057178],\n              [-61.560896360713045, -1.021332055042677],\n              [-61.578672240297394, -0.945262716203359],\n              [-61.53412267805108, -0.726568860204608],\n              [-61.45807531186885, -0.637250009141113],\n              [-61.24387486424463, -0.547931158077617],\n              [-61.221594589957206, -0.498866214799691],\n              [-61.10549106990321, -0.4943618200966],\n              [-61.060721781086016, -0.530155278493268],\n              [-60.93134677615076, -0.556917974826689],\n              [-60.90457309348879, -0.610465340150597],\n              [-60.815243256096764, -0.686292979761944],\n              [-60.73492220811087, -0.851681169664758],\n              [-60.6410989623443, -0.86044825984294],\n              [-60.516217365783575, -0.829181168806457],\n              [-60.46717439516273, -0.740082044313837],\n              [-60.33756867732805, -0.704288585917183],\n              [-60.306290599963006, -0.673021494880686],\n              [-60.31529938936916, -0.619474129556764],\n              [-60.39111604265196, -0.521146489087116],\n              [-60.38662263427743, -0.463094729060117],\n              [-60.31529938936916, -0.306957027791427],\n              [-60.31079499466608, -0.235392083655199],\n              [-60.252743234639084, -0.15057762729478],\n              [-60.21697174889951, -0.043482896646935],\n              [-60.16791779195013, 0.005582046630991],\n              [-60.127872624406905, 0.13067238343406],\n              [-60.025040589234166, 0.224275902629742],\n              [-59.77057524749584, 0.228780297332833],\n              [-58.86877345528232, 0.224275902629742],\n              [-58.85099757569799, -0.083736804432505],\n              [-58.86449977347867, -0.173077628153081],\n              [-58.85549098407252, -0.351495603709196],\n              [-58.73939845034707, -0.432047364594496],\n              [-58.74839625342467, -0.62397852425984],\n              [-58.70361597827895, -0.695301769168111],\n              [-58.62779932499615, -0.766844740647258],\n              [-58.56974756496915, -0.762340345944182],\n              [-58.44037256003389, -0.86044825984294],\n              [-58.39109887651361, -1.048094751376084],\n              [-58.31527123690226, -1.119417996284355],\n              [-58.25271508217219, -1.128426785690522],\n              [-58.15912254930504, -1.235521516338338],\n              [-58.083075183122816, -1.298077671068427],\n              [-57.98047386084954, -1.34712064168923],\n              [-57.900141826535105, -1.422948281300592],\n              [-57.828598855055944, -1.445228555588045],\n              [-57.65467428787437, -1.588094771975463],\n              [-57.56534445048233, -1.623866257715036],\n              [-57.44924093042833, -1.690926807148188],\n              [-57.33764180507741, -1.730982961019961],\n              [-57.27509663667588, -1.713207081435613],\n              [-57.248322954013915, -1.757745657353368],\n              [-57.16799091969949, -1.771236868805516],\n              [-57.087669871713615, -1.81129302267729],\n              [-57.00734882372774, -1.936405332137454],\n              [-56.824195740569124, -2.034491273379132],\n              [-56.74387469258325, -2.052486879534356],\n              [-56.74836810095778, -2.17737946242363],\n              [-56.63676897560687, -2.222137764912276],\n              [-56.49839616759398, -2.159603582839281],\n              [-56.4848939698133, -2.248922433902749],\n              [-56.400969406064945, -2.336219800514158],\n              [-56.39107072404671, -2.391788650290195],\n              [-56.75714617746452, -3.186495711855869],\n              [-58.29299096261485, -6.49893968587179],\n              [-58.37444360244076, -6.57050463000806],\n              [-58.436769044271415, -6.675797602774665],\n              [-58.455445802796376, -6.793922607280777],\n              [-58.385924315769344, -6.949181402265936],\n              [-58.228424309761195, -7.141552015073032],\n              [-58.14629051756555, -7.263500261912498],\n              [-58.13662254844674, -7.338207296012342],\n              [-58.20187035367012, -7.414474388765456],\n              [-58.22370018848723, -7.484677028162224],\n              [-58.22391991505812, -7.574677031595442],\n              [-58.259471674226816, -7.67322439863598],\n              [-58.330344479664774, -7.780099402712935],\n              [-58.35352563289281, -7.905870891885741],\n              [-58.32877343468296, -8.050538866154383],\n              [-58.354415525504876, -8.27600030053631],\n              [-58.3971743161985, -8.41550470038922],\n              [-58.42665063568231, -8.523038884178831],\n              [-58.47165063739892, -8.690888011675511],\n              [-58.54746729068172, -8.74893977170251],\n              [-61.609950317662424, -8.766715651286859],\n              [-61.609950317662424, -8.722177075369103],\n              [-61.71704504831027, -8.68640558962953],\n              [-61.761825323455994, -8.72668147007218],\n              [-61.837641976738794, -8.744457349656528],\n              [-61.873424448806915, -8.856056475007449],\n              [-61.91797401105322, -8.873832354591784],\n              [-61.99829505903911, -8.811495926432599],\n              [-62.13217445867744, -8.766715651286859],\n              [-62.172450339120104, -8.610577950018182],\n              [-62.3063187524299, -8.570302069575533],\n              [-62.373368315534506, -8.382875304613265],\n              [-62.45370034984893, -8.347103818873691],\n              [-62.5385257925379, -8.36059503032584],\n              [-62.5562906857937, -8.289052058846693],\n              [-62.63662272010812, -8.222233208641498],\n              [-62.67689860055077, -8.114896778765697],\n              [-62.721448162797074, -8.061349413441775],\n              [-62.82877360634434, -8.016788864866925],\n              [-62.90459025962714, -8.007802048117853],\n              [-63.538424512321626, -7.9987932587117],\n              [-63.587698195841895, -8.079345019597],\n              [-63.59197187764555, -8.1641814486145],\n              [-63.72607100385477, -8.19094414494792],\n              [-63.75284468651674, -8.284547664143616],\n              [-63.91799117719157, -8.333832333992419],\n              [-63.993818816802914, -8.440927064640263],\n              [-63.92249557189466, -8.53453058383596],\n              [-63.99832321150599, -8.681901194926454],\n              [-64.07415085111734, -8.713168285962936],\n              [-64.12769821644126, -8.68640558962953],\n              [-64.11892013993453, -8.936366536664778],\n              [-64.21701706750476, -8.949879720774021],\n              [-64.38217454450813, -8.940870931367854],\n              [-64.4179460302477, -8.972138022404351],\n              [-64.47599779027472, -8.949879720774021],\n              [-64.59659471870324, -9.025707360385354],\n              [-64.69019823789894, -9.021202965682278],\n              [-64.77951708896242, -8.985431479942704],\n              [-64.88662280593881, -9.061478846124942],\n              [-64.92689868638146, -9.11953060615194],\n              [-64.90461841209404, -9.213112152690542],\n              [-65.03849781173238, -9.400780616880766],\n              [-65.0920451770563, -9.436332376049464],\n              [-65.17236622504218, -9.373995947890265],\n              [-65.19915089403268, -9.266681490671544],\n              [-65.221650894891, -9.257892427836268],\n              [-65.41807546293087, -9.391771827474614],\n              [-65.44484914559283, -9.445319192798536],\n              [-65.52517019357872, -9.414052101762039],\n              [-65.6322759105551, -9.449823587501612],\n              [-65.6768254728014, -9.534638043862032],\n              [-65.76614432386489, -9.56592710755561],\n              [-65.93129081453974, -9.414052101762039],\n              [-65.99834037764435, -9.400780616880766],\n              [-66.10544609462073, -9.418556496465115],\n              [-66.39569390842718, -9.405043312355886],\n              [-66.4046917115048, -9.52565122711296],\n              [-66.50279962540357, -9.63274595776079],\n              [-66.59662287117014, -9.664013048797287],\n              [-66.69471979874037, -9.748849477814787],\n              [-66.74377375568974, -9.748849477814787],\n              [-66.82859919837871, -9.838168328878282]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 8074,\n        \"fill\": \"#999\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-58.86877345528232, 0.224275902629742],\n              [-58.96641994338225, 1.302474185947247],\n              [-58.91669582039168, 1.248926820623353],\n              [-58.86246730269801, 1.203707092335833],\n              [-58.82174098278506, 1.2012241820849],\n              [-58.78732081545638, 1.208431213609913],\n              [-58.73040064726945, 1.247575502212442],\n              [-58.684719493183024, 1.281105776928996],\n              [-58.60506861123838, 1.279073306148348],\n              [-58.51191553151301, 1.284698306362941],\n              [-58.495721683239026, 1.312153141394674],\n              [-58.48694360673227, 1.347704900563258],\n              [-58.50607080472753, 1.438605782937259],\n              [-58.472990969481316, 1.466280344539769],\n              [-58.39582299778755, 1.481804026772636],\n              [-58.38029931555474, 1.530176831352151],\n              [-58.36274316254122, 1.556730787443371],\n              [-58.340693601153305, 1.58754743900937],\n              [-58.31415063139076, 1.592051833712503],\n              [-58.28107079614449, 1.574275954128211],\n              [-58.23044579421327, 1.563256666598477],\n              [-58.17307518655599, 1.547952710936613],\n              [-58.14224754866132, 1.516905346470935],\n              [-58.09139183383064, 1.514422436220059],\n              [-58.034691392214654, 1.520278149333876],\n              [-58.011740951886, 1.539855786799592],\n              [-57.99509666414167, 1.574275954128211],\n              [-57.98271507187252, 1.648532548757714],\n              [-57.9462734200917, 1.650554033209858],\n              [-57.87336814387305, 1.667198320954185],\n              [-57.79574973270911, 1.70004744330106],\n              [-57.6917970920249, 1.704782550903417],\n              [-57.59437033049585, 1.704101398533737],\n              [-57.54576681301671, 1.726150959921654],\n              [-57.50054708472925, 1.773853598460107],\n              [-57.41279927864758, 1.908853603609998],\n              [-57.366898397990326, 1.940131680975128],\n              [-57.31739400157056, 1.963532560774013],\n              [-57.275547076146154, 1.959247892641883],\n              [-57.18959004161712, 1.981528166929309],\n              [-57.11894794907869, 2.013926849805898],\n              [-57.09262470588703, 2.005829925668877],\n              [-57.03749530925273, 1.936528165212735],\n              [-57.01004047422106, 1.921224209550701],\n              [-56.969544867207446, 1.916500088276791],\n              [-56.83679705940915, 1.881179042007489],\n              [-56.76637469344149, 1.892198329537223],\n              [-56.68986590146045, 1.914247890925139],\n              [-56.61652117210002, 1.922575527961612],\n              [-56.56364397281732, 1.907282558628253],\n              [-56.5254005631553, 1.927299649235522],\n              [-56.48287248536121, 1.942153165427158],\n              [-56.45294572640705, 1.932254483408883],\n              [-56.38589616330245, 1.923926846372581],\n              [-56.22704483888333, 1.885452723811113],\n              [-56.019820709884584, 1.842254479975736],\n              [-55.96333999483943, 1.857107996167372],\n              [-55.92958999355193, 1.887474208263313],\n              [-55.92172378231436, 1.976573332755947],\n              [-55.91541762973003, 2.039579926956264],\n              [-55.96199966275702, 2.095148776732287],\n              [-56.02004043645553, 2.158155370932775],\n              [-56.07359878810803, 2.236674661037284],\n              [-56.13771500149136, 2.258954935324823],\n              [-56.12939835078339, 2.29945054233832],\n              [-56.08777115192987, 2.341297467762729],\n              [-56.04502334756478, 2.364478620990781],\n              [-56.02027114935498, 2.392823348634579],\n              [-55.99349746669293, 2.497457141688471],\n              [-55.975490874209186, 2.515903187313995],\n              [-55.957495268054004, 2.520407582017128],\n              [-55.935896146136315, 2.516573353355284],\n              [-55.8938185078124, 2.489579944122454],\n              [-55.73047377501882, 2.406105819844413],\n              [-55.65891981721114, 2.41870713868434],\n              [-55.38531629114897, 2.440525987173032],\n              [-55.34391980519479, 2.488679065181771],\n              [-55.28609875806728, 2.499698352711505],\n              [-55.187771117597606, 2.547400991249958],\n              [-55.148846555565854, 2.55077379411307],\n              [-55.11419567533778, 2.53930406711288],\n              [-55.07031627913267, 2.548301870190642],\n              [-55.005749626279055, 2.593082145336382],\n              [-54.978745230717664, 2.59757555371084],\n              [-54.968396109229104, 2.548301870190642],\n              [-54.92654918380458, 2.497457141688471],\n              [-54.876143908444305, 2.45042466919125],\n              [-54.85162242313385, 2.439625108232349],\n              [-54.76679698044495, 2.454698350994931],\n              [-54.72224741819866, 2.441657579013167],\n              [-54.71482066010287, 2.425002304940222],\n              [-54.73484873703876, 2.416224228433464],\n              [-54.71707285745441, 2.264579935539416],\n              [-54.78839610236264, 2.130480809330038],\n              [-54.752844343193885, 2.081426852380673],\n              [-54.792900497065716, 2.010103607472502],\n              [-54.7616224197007, 1.969827727029838],\n              [-54.76611582807516, 1.898504482121496],\n              [-54.73484873703876, 1.773403158989879],\n              [-54.578700049441466, 1.782400962067584],\n              [-54.49836801512703, 1.746629476328053],\n              [-54.364499601817215, 1.760131674108663],\n              [-54.20361580661756, 1.657299638935967],\n              [-54.172348715580995, 1.657299638935967],\n              [-54.083249591088475, 1.541207105210503],\n              [-54.07874519638534, 1.505655346041749],\n              [-54.00719123857766, 1.523431225626041],\n              [-53.92236579588871, 1.460875070896009],\n              [-53.89109870485214, 1.407327705572129],\n              [-53.75721930521382, 1.394056220690743],\n              [-53.739443425629474, 1.434101388234183],\n              [-53.6591223776436, 1.420829903352796],\n              [-53.650124574566064, 1.362778143325841],\n              [-53.5562903424709, 1.367282538028917],\n              [-53.53852544921506, 1.2421812148973],\n              [-53.44019780874544, 1.259957094481592],\n              [-53.40891973138042, 1.184129454870344],\n              [-53.466971491407435, 1.152851377505215],\n              [-53.41791753445807, 0.94315532458404],\n              [-53.26627324156391, 0.782282515712836],\n              [-53.132174115354644, 0.751004438347934],\n              [-53.11439823577035, 0.719957073882256],\n              [-53.14117191843229, 0.536803990723683],\n              [-53.127669720651625, 0.384928984930184],\n              [-53.04284427796267, 0.246556176917181],\n              [-53.007292518793975, 0.134957051566346],\n              [-53.016070595300675, 0.054625017251851],\n              [-52.97602542775746, -0.016698227656377],\n              [-52.913469273027374, -0.190853507737359],\n              [-52.82864383033842, -0.181844718331263],\n              [-52.699268825403124, -0.302452633088365],\n              [-52.627714867595444, -0.396275878854851],\n              [-52.63221926229852, -0.556917974826604],\n              [-52.60544557963652, -0.610465340150597],\n              [-52.52512453165065, -0.646236825890128],\n              [-52.507348652066355, -0.731073254907699],\n              [-52.51611574224455, -0.873939471295046],\n              [-52.40002320851909, -0.869457049249036],\n              [-52.36874513115396, -0.923004414573029],\n              [-52.39124513201233, -0.954271505609483],\n              [-52.35996705464731, -1.070375025663452],\n              [-52.23937012621877, -1.146202665274814],\n              [-52.13227539557096, -1.15070705997789],\n              [-52.05194336125652, -1.177469756311268],\n              [-51.98489379815186, -1.141698270571794],\n              [-51.888148188992545, -1.160375029096713],\n              [-51.92166747738065, -1.180853545502885],\n              [-51.934499509120144, -1.320357945355852],\n              [-51.980839842919124, -1.368038611237182],\n              [-52.02044555732061, -1.39910794835987],\n              [-52.22924073130116, -1.362413611022589],\n              [-52.55346925929439, -1.514068890245312],\n              [-52.66416750570471, -1.551642133866153],\n              [-52.31024293165666, -1.559530317760732],\n              [-52.19662232185368, -1.64008207864606],\n              [-51.947540281101965, -1.586754439893014],\n              [-51.646273179765785, -1.394361854428894],\n              [-51.53129026522333, -1.354107946643353],\n              [-51.29729245356259, -1.223590363539415],\n              [-51.20234860228459, -1.136512723498981],\n              [-51.02887447457323, -1.032120629672988],\n              [-50.99197139699362, -0.986219749015731],\n              [-50.89499507493497, -0.937616231536595],\n              [-50.8423485885516, -0.999491233896947],\n              [-50.83829463331887, -1.038866235398984],\n              [-50.91794551526357, -1.115155300809249],\n              [-50.89724727228645, -1.164417998000999],\n              [-50.844589799574635, -1.226293000361238],\n              [-50.825473587907936, -1.311349155949642],\n              [-50.818716995853265, -1.376146521702708],\n              [-50.78609858640584, -1.489986858076691],\n              [-50.67899286942952, -1.643905320979457],\n              [-50.675400339995576, -1.694750049481513],\n              [-50.6900231432877, -1.761788626257555],\n              [-50.63871698898686, -1.817137749462688],\n              [-50.58562006313315, -1.849986871809563],\n              [-50.403148132344256, -2.015594788283238],\n              [-50.260490656199295, -1.922892148028211],\n              [-50.17274285011757, -1.896129451694776],\n              [-50.11649284797181, -1.857413629905352],\n              [-49.99926872240633, -1.831771539083491],\n              [-49.90297355271724, -1.870707087443691],\n              [-49.719589756659275, -1.926275937219714],\n              [-49.58527090387912, -1.867103571681298],\n              [-49.31369984859771, -1.731642140732561],\n              [-49.39874501785749, -1.971495665507291],\n              [-49.46016958074756, -2.191551826245473],\n              [-49.506971340345444, -2.280189524939203],\n              [-49.55332266047293, -2.5198233231431],\n              [-49.599223541130186, -2.583939536526429],\n              [-49.63656607185152, -2.656844812744964],\n              [-49.575822661331244, -2.631422448493993],\n              [-49.52384634098911, -2.596771568265922],\n              [-49.45746694392568, -2.504530353809628],\n              [-49.40774282093514, -2.344327710979655],\n              [-49.21109852632435, -1.916607968100948],\n              [-49.15484852417859, -1.87857329868126],\n              [-48.99127307848562, -1.829750054631404],\n              [-48.710023067756765, -1.4877456470536],\n              [-48.59999498738762, -1.488646525994284],\n              [-48.52957262141996, -1.567396528998415],\n              [-48.4629734977857, -1.613978562025295],\n              [-48.445867784242466, -1.520375042829585],\n              [-48.349792341124385, -1.482120646839121],\n              [-48.45149278445706, -1.435780313040141],\n              [-48.46814805852995, -1.393922401287114],\n              [-48.477816027648714, -1.323719761890345],\n              [-48.408525253521134, -1.229215363754008],\n              [-48.44969102657586, -1.145521512905134],\n              [-48.30659409728895, -1.039767114339611],\n              [-48.31762437114725, -0.960577658193756],\n              [-48.26654892974574, -0.895099140071011],\n              [-48.20174057766411, -0.827818864066955],\n              [-48.128395848303796, -0.795189468291028],\n              [-48.115124363422524, -0.737599134062862],\n              [-48.06877304329498, -0.713736828465073],\n              [-48.032540131756605, -0.704969738286877],\n              [-47.96099716027743, -0.769547377469053],\n              [-47.88336776278476, -0.693280284716025],\n              [-47.807770836072905, -0.663573252332753],\n              [-47.773790121886066, -0.676844737214026],\n              [-47.731492756991315, -0.71037501193058],\n              [-47.687173907644365, -0.724767102323369],\n              [-47.65117170900544, -0.718702648966996],\n              [-47.55734846323878, -0.669879404917026],\n              [-47.47072126266863, -0.748629407921158],\n              [-47.41874494232644, -0.76594386170666],\n              [-47.4329173061484, -0.721844738930656],\n              [-47.46037214118007, -0.680887706118199],\n              [-47.438992745833275, -0.647599130629658],\n              [-47.398046699349436, -0.626681161081649],\n              [-47.26867169441414, -0.645357919606681],\n              [-47.20049053946951, -0.680448252976419],\n              [-47.12691509720963, -0.745465345300431],\n              [-47.02454448783584, -0.750189466574341],\n              [-46.944443166420854, -0.743443860848345],\n              [-46.89359843791868, -0.779896498957612],\n              [-46.81124491915227, -0.779676772386722],\n              [-46.76984843319809, -0.836607926902275],\n              [-46.64451639716708, -0.916478535417809],\n              [-46.61729227503474, -0.970707053111482],\n              [-46.51627298407186, -0.996788597075124],\n              [-46.421768585935524, -1.030099145220788],\n              [-46.32074929497253, -1.039107934626998],\n              [-46.219048851639855, -1.031219750732305],\n              [-46.21499489640706, -1.099840358818767],\n              [-46.14029884863578, -1.118297390772852],\n              [-46.04467384498798, -1.103004421439437],\n              [-46.00708961503864, -1.146861844987484],\n              [-46.14119972757641, -1.240025911041414],\n              [-46.15896462083214, -1.315853550652776],\n              [-46.12319313509255, -1.34712064168923],\n              [-46.1992405012748, -1.485504436030624],\n              [-46.18124489511962, -1.574823287094205],\n              [-46.1992405012748, -1.677413623038944],\n              [-46.24379006352109, -1.722193898184685],\n              [-46.31534402132888, -1.73098296101989],\n              [-46.30184182354816, -1.802525932499123],\n              [-46.21701638085926, -1.807030327202142],\n              [-46.212522972484635, -1.927396542731231],\n              [-46.27957253558924, -2.141827703254933],\n              [-46.37766946315952, -2.253426828605825],\n              [-46.41344094889905, -2.239913644496539],\n              [-46.40894754052454, -2.387306228244199],\n              [-46.43572122318653, -2.409564529874501],\n              [-46.426943146679776, -2.512396565047197],\n              [-46.48499490670673, -2.547948324215952],\n              [-46.50727518099421, -2.614986900991994],\n              [-46.600867713861305, -2.664051844269977],\n              [-46.667917276965966, -2.739879483881225],\n              [-46.574094031199365, -2.847193941099988],\n              [-46.65014139738162, -2.91401279130514],\n              [-46.63665018592951, -2.985577735441382],\n              [-46.667917276965966, -3.092672466089311],\n              [-46.74374491657733, -3.190780379988041],\n              [-46.82429667746254, -3.329142201672369],\n              [-46.859848436631296, -3.329142201672369],\n              [-46.94467387932019, -3.396202751105534],\n              [-46.96694316727911, -3.525797482611608],\n              [-47.0294993220092, -3.570358031186515],\n              [-47.02499492730607, -3.59712072751995],\n              [-47.06527080774873, -3.842599252509217],\n              [-47.28846905845063, -4.079288714663221],\n              [-47.310749332738055, -4.065797503211058],\n              [-47.333018620696976, -4.164125143680735],\n              [-47.38229230421723, -4.275724269031571],\n              [-47.45811994382859, -4.338280423761717],\n              [-47.48939802119361, -4.423094880122107],\n              [-47.58322126696021, -4.547965490354329],\n              [-47.65454451186838, -4.606017250381342],\n              [-47.80191512295892, -4.597030433632256],\n              [-48.25281601906562, -4.954327810543248],\n              [-48.730490597834375, -5.338168157216899],\n              [-48.7219432342271, -5.355043157860635],\n              [-48.721492794756784, -5.355724310230372],\n              [-48.721492794756784, -5.355944036801247],\n              [-48.597523063465246, -5.398702827494787],\n              [-48.51111558946593, -5.408151070042777],\n              [-48.42156602550301, -5.398483100923954],\n              [-48.35699937264934, -5.424344918316791],\n              [-48.31717393167699, -5.486219920677129],\n              [-48.27531601992399, -5.522452832215549],\n              [-48.23144761004744, -5.533241406845832],\n              [-48.19274277458658, -5.565431349480036],\n              [-48.159223486198584, -5.619198441374863],\n              [-48.18127304758653, -5.672064654329048],\n              [-48.25867173217969, -5.723590535200856],\n              [-48.28004014119796, -5.795814659049739],\n              [-48.24540024729842, -5.888517299304809],\n              [-48.25439805037604, -5.945228727249429],\n              [-48.30704453675935, -5.965926970226505],\n              [-48.32121690058125, -6.006642303810906],\n              [-48.29669541527082, -6.067396700659771],\n              [-48.319415142699995, -6.112396702376316],\n              [-48.38984849499619, -6.141862035531645],\n              [-48.413699814265414, -6.207340553654447],\n              [-48.3911998134071, -6.308832256744807],\n              [-48.410096298502964, -6.357655500794763],\n              [-48.47061998245238, -6.353370832662506],\n              [-48.52732042406845, -6.3722673177584],\n              [-48.57996691045176, -6.414125229511413],\n              [-48.62204454877565, -6.488590564383287],\n              [-48.65287218667038, -6.595707267688226],\n              [-48.80541735850514, -6.71831469424032],\n              [-49.07947132403763, -6.856237062782895],\n              [-49.209747207913466, -7.005651130982585],\n              [-49.19512440462128, -7.168556410634423],\n              [-49.2396739668676, -7.334823506820669],\n              [-49.34047353125965, -7.510099392413281],\n              [-49.333947652104456, -7.649142366467331],\n              [-49.22031605597289, -7.752194128210874],\n              [-49.172393690863544, -7.867396769324316],\n              [-49.189949843877, -7.994970016378346],\n              [-49.22684193512808, -8.139418264076113],\n              [-49.28264149780355, -8.301422664787339],\n              [-49.378947653821115, -8.498297672297554],\n              [-49.50269765854176, -8.70866389125986],\n              [-49.61294546548177, -8.839181474363713],\n              [-49.707900303088365, -8.894970050710626],\n              [-49.82984854992782, -9.022103844622904],\n              [-49.97924064547044, -9.22009945764458],\n              [-50.08409416509528, -9.421918312999608],\n              [-50.17521477404, -9.730172719289826],\n              [-50.23484856537735, -9.842672723581373],\n              [-51.29752316646204, -9.78912535825745],\n              [-55.09214611394981, -9.56592710755561],\n              [-56.46262468185441, -9.467599467085961],\n              [-56.489398364516376, -9.467599467085961],\n              [-56.67682512947863, -9.378280616022494],\n              [-56.7706483752452, -9.39627622217769],\n              [-56.837697938349834, -9.271163912717554],\n              [-56.92679706284244, -9.24440121638412],\n              [-57.047393991270965, -9.231129731502847],\n              [-57.07416767393295, -9.18634945635705],\n              [-57.08316547701054, -9.079254725709276],\n              [-57.10094135659489, -9.052470056718775],\n              [-57.29736592463476, -8.958646810952203],\n              [-57.480519007793376, -8.79350032027736],\n              [-57.5786159353636, -8.757948561108677],\n              [-57.641172090093676, -8.615082344721259],\n              [-57.650169893171295, -8.498978824667262],\n              [-57.681447970536325, -8.436422669937187],\n              [-57.641172090093676, -8.231000298819694],\n              [-57.779544898106565, -8.048077928560417],\n              [-57.89564841816055, -7.690780551649439],\n              [-57.94919578348447, -7.619457306741182],\n              [-57.98047386084954, -7.530116483020606],\n              [-58.06079490883542, -7.409530540920628],\n              [-58.13662254844674, -7.338207296012342],\n              [-58.14629051756555, -7.263500261912498],\n              [-58.228424309761195, -7.141552015073032],\n              [-58.385924315769344, -6.949181402265936],\n              [-58.455445802796376, -6.793922607280777],\n              [-58.436769044271415, -6.675797602774665],\n              [-58.37444360244076, -6.57050463000806],\n              [-58.29299096261485, -6.49893968587179],\n              [-56.75714617746452, -3.186495711855869],\n              [-56.39107072404671, -2.391788650290195],\n              [-56.400969406064945, -2.336219800514158],\n              [-56.4848939698133, -2.248922433902749],\n              [-56.49839616759398, -2.159603582839281],\n              [-56.63676897560687, -2.222137764912276],\n              [-56.74836810095778, -2.17737946242363],\n              [-56.74387469258325, -2.052486879534356],\n              [-56.824195740569124, -2.034491273379132],\n              [-57.00734882372774, -1.936405332137454],\n              [-57.087669871713615, -1.81129302267729],\n              [-57.16799091969949, -1.771236868805516],\n              [-57.248322954013915, -1.757745657353368],\n              [-57.27509663667588, -1.713207081435613],\n              [-57.33764180507741, -1.730982961019961],\n              [-57.44924093042833, -1.690926807148188],\n              [-57.56534445048233, -1.623866257715036],\n              [-57.65467428787437, -1.588094771975463],\n              [-57.828598855055944, -1.445228555588045],\n              [-57.900141826535105, -1.422948281300592],\n              [-57.98047386084954, -1.34712064168923],\n              [-58.083075183122816, -1.298077671068427],\n              [-58.15912254930504, -1.235521516338338],\n              [-58.25271508217219, -1.128426785690522],\n              [-58.31527123690226, -1.119417996284355],\n              [-58.39109887651361, -1.048094751376084],\n              [-58.44037256003389, -0.86044825984294],\n              [-58.56974756496915, -0.762340345944182],\n              [-58.62779932499615, -0.766844740647258],\n              [-58.70361597827895, -0.695301769168111],\n              [-58.74839625342467, -0.62397852425984],\n              [-58.73939845034707, -0.432047364594496],\n              [-58.85549098407252, -0.351495603709196],\n              [-58.86449977347867, -0.173077628153081],\n              [-58.85099757569799, -0.083736804432505],\n              [-58.86877345528232, 0.224275902629742]\n            ]\n          ],\n          [\n            [\n              [-51.42441526114635, -0.565926764232813],\n              [-51.25409420972716, -0.541405278922355],\n              [-51.160721403430955, -0.6667153422963],\n              [-51.27637448401464, -1.021771508184429],\n              [-51.31012448530208, -1.023792992636515],\n              [-51.46514158105924, -1.211219757598826],\n              [-51.63771482982992, -1.34195706727354],\n              [-51.66494993829076, -1.35476712635591],\n              [-51.83256835288802, -1.433736855930931],\n              [-51.93832275145343, -1.452655313683863],\n              [-51.801971427892624, -1.202452667420573],\n              [-51.68002318105323, -1.086129420795658],\n              [-51.679572741583, -1.018629418220826],\n              [-51.67822142317203, -0.855042986199237],\n              [-51.546143781414855, -0.649620615081744],\n              [-51.42441526114635, -0.565926764232813]\n            ]\n          ],\n          [\n            [\n              [-48.44451646583161, -0.271844721764467],\n              [-48.39277085838887, -0.297267086015552],\n              [-48.37971910007849, -0.352857908448641],\n              [-48.428091904658174, -0.441495607142429],\n              [-48.46387437672621, -0.534879399767249],\n              [-48.497393665114316, -0.664913584415103],\n              [-48.52326646883563, -0.691478526834715],\n              [-48.56669542557046, -0.684491221880705],\n              [-48.53969103000907, -0.80105616773352],\n              [-48.54958971202734, -0.847616228103448],\n              [-48.57096910737414, -0.892857929048034],\n              [-48.62406603322779, -0.986900901385468],\n              [-48.70461779411306, -1.106607937201943],\n              [-48.72846911338229, -1.131788602225015],\n              [-48.7898936762723, -1.173426787407095],\n              [-48.839617799262896, -1.226512726932128],\n              [-48.82904895120345, -1.276478549150681],\n              [-48.80406604009414, -1.326861851853948],\n              [-48.83354235957796, -1.390099158953774],\n              [-48.928947636654925, -1.482340373410011],\n              [-48.9858678048418, -1.504620647697379],\n              [-49.03852527755373, -1.514068890245312],\n              [-49.086898082133416, -1.505082073496283],\n              [-49.17262440376288, -1.412599159812089],\n              [-49.18162220684053, -1.485043010231834],\n              [-49.20479237374008, -1.559068891961942],\n              [-49.234048966653006, -1.599564498975496],\n              [-49.34474721306327, -1.59530180350032],\n              [-49.406622215423624, -1.555465376199436],\n              [-49.50674062744599, -1.511607952651389],\n              [-49.52564809887042, -1.630392136870171],\n              [-49.587973540701, -1.712306202495029],\n              [-49.650518709102585, -1.73816801988778],\n              [-49.748846349572204, -1.755262747102392],\n              [-49.805096351717964, -1.790155326558363],\n              [-49.91129020342515, -1.762931204426195],\n              [-50.01006828336517, -1.708482960161632],\n              [-50.065648119469756, -1.703736866230599],\n              [-50.109296802775475, -1.747857961663669],\n              [-50.33833978026274, -1.755943899472072],\n              [-50.44342401278692, -1.800724174617812],\n              [-50.50754022617036, -1.78789214287832],\n              [-50.602044624306586, -1.697672412874226],\n              [-50.61711786706917, -1.63759916839507],\n              [-50.67336786921493, -1.516090374697455],\n              [-50.72377314457526, -1.371422400428798],\n              [-50.75977534321419, -1.240245637612304],\n              [-50.72939814478974, -1.126844754380102],\n              [-50.668424021370015, -1.130448270142608],\n              [-50.59596918462171, -1.14754299735722],\n              [-50.5804455023889, -1.139457059548818],\n              [-50.576841986626505, -1.103224148010327],\n              [-50.5928161083296, -1.072857935914499],\n              [-50.7095897944248, -1.077801783759355],\n              [-50.78339594958396, -1.01030178118441],\n              [-50.79599726842412, -0.906349140500197],\n              [-50.78092402566159, -0.689896495524408],\n              [-50.77146479678515, -0.645357919606681],\n              [-50.719949902241865, -0.583482917246329],\n              [-50.703074901598086, -0.528573247182862],\n              [-50.71589594700913, -0.470301760585016],\n              [-50.69361567272165, -0.364547362019607],\n              [-50.645473581041415, -0.272745600705093],\n              [-50.46165033184167, -0.157323233020861],\n              [-50.24833977682954, -0.116366200208404],\n              [-49.628699860614006, -0.229107903727936],\n              [-49.535096341418296, -0.233590325773889],\n              [-49.40279897309023, -0.214693840678137],\n              [-49.31437001463888, -0.167892081080254],\n              [-49.215141495228636, -0.158663565103154],\n              [-49.1170445676583, -0.163629385605191],\n              [-48.7865208734093, -0.215594719618707],\n              [-48.58807482091726, -0.231568841321803],\n              [-48.51540025759806, -0.248224115394692],\n              [-48.44451646583161, -0.271844721764467]\n            ]\n          ],\n          [\n            [\n              [-50.76516963052933, -0.040780259825112],\n              [-50.66707270295916, -0.058094713610558],\n              [-50.65064814178572, -0.105797352149011],\n              [-50.65290033913726, -0.131681142198886],\n              [-50.926273152299984, -0.327413571540546],\n              [-51.01896480622645, -0.26307763158627],\n              [-51.03809200422177, -0.22594384110721],\n              [-51.022348595418066, -0.188370597486426],\n              [-51.02572139828112, -0.172396475783273],\n              [-50.995124473285784, -0.105357899007231],\n              [-50.84211787565215, -0.050228502372988],\n              [-50.76516963052933, -0.040780259825112]\n            ]\n          ],\n          [\n            [\n              [-49.50336782458294, 0.083650897265329],\n              [-49.4005467757388, 0.057327654073731],\n              [-49.372421774665895, 0.001077651927972],\n              [-49.3809691382732, -0.055392076788678],\n              [-49.443964746145014, -0.112323231304231],\n              [-49.70879019570043, -0.143832021568699],\n              [-49.83006827649871, -0.093866199350146],\n              [-49.802624427795536, -0.051788561026285],\n              [-49.71239371146294, 0.015030289178867],\n              [-49.6021459045229, 0.06273292771732],\n              [-49.50336782458294, 0.083650897265329]\n            ]\n          ],\n          [\n            [\n              [-49.87889152054868, 0.304607936944308],\n              [-49.73826651518419, 0.26815529883487],\n              [-49.697320468700354, 0.215948265593283],\n              [-49.839066079576355, 0.006922378713398],\n              [-49.91714591653914, -0.023224106811597],\n              [-50.002421798698435, -0.02928856016797],\n              [-50.11312004510876, 0.033025895334163],\n              [-50.285693293879376, 0.028532486959705],\n              [-50.33947137210271, 0.043375016822665],\n              [-50.3450963723173, 0.134506612095947],\n              [-50.272641535568994, 0.231702660725603],\n              [-50.12797356130034, 0.226528099981408],\n              [-49.87889152054868, 0.304607936944308]\n            ]\n          ],\n          [\n            [\n              [-50.35094109910278, 0.5818039924402],\n              [-50.34262444839493, 0.381556182067072],\n              [-50.33227532690637, 0.258926782857827],\n              [-50.42609857267297, 0.139230733370027],\n              [-50.44387445225726, -0.007700424578843],\n              [-50.623874459123726, 0.054405290681018],\n              [-50.61037226134306, 0.204698265164097],\n              [-50.52621698469534, 0.247006616387409],\n              [-50.45152093692394, 0.326877224903058],\n              [-50.42609857267297, 0.424974152473396],\n              [-50.42451654136261, 0.558172399741864],\n              [-50.39684197976004, 0.581353552969972],\n              [-50.372770933919924, 0.590801795517962],\n              [-50.35094109910278, 0.5818039924402]\n            ]\n          ],\n          [\n            [\n              [-50.09871696838741, 0.625002236275577],\n              [-50.058891527415085, 0.63805399458596],\n              [-50.03684196602717, 0.594855750750639],\n              [-50.03999504231922, 0.522851353472561],\n              [-50.15294548608108, 0.393025909067035],\n              [-50.26139153513981, 0.359275907779647],\n              [-50.2816503249752, 0.390773711715553],\n              [-50.2816503249752, 0.516556187216906],\n              [-50.25127312655076, 0.58540750820282],\n              [-50.11290031853787, 0.604754432768857],\n              [-50.09871696838741, 0.625002236275577]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 2620,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-50.96429683539111, -19.511366940069024],\n              [-50.99759639720824, -19.66392309823233],\n              [-50.99377315487493, -20.101552509457804],\n              [-51.06396480794314, -20.223039330498423],\n              [-51.16072140343098, -20.306513454776464],\n              [-51.39697141244321, -20.44175515915427],\n              [-51.53422361494461, -20.55761697998031],\n              [-51.593165267583686, -20.666513468509322],\n              [-51.61904905763356, -20.806918747302916],\n              [-51.69194334752365, -20.943720510334003],\n              [-51.81141967044064, -21.077138484173474],\n              [-51.86631835417552, -21.18267315616805],\n              [-51.856650385056696, -21.260082827089718],\n              [-51.87284423333068, -21.32982404068764],\n              [-51.936290280672836, -21.422746407513614],\n              [-51.95474731262692, -21.46954816711147],\n              [-51.989848632325305, -21.49363019928012],\n              [-52.047669679452866, -21.51094465306562],\n              [-52.072641604233596, -21.554142896901],\n              [-52.0649951195669, -21.622763504987418],\n              [-52.12259644012363, -21.718168782064367],\n              [-52.245665292474555, -21.84035872813176],\n              [-52.33881837219997, -21.957341154469304],\n              [-52.402495132441516, -22.069181979048096],\n              [-52.56607057813454, -22.207324074161647],\n              [-52.96072147209553, -22.454824083603015],\n              [-53.11619999365156, -22.639987664885183],\n              [-53.272348681248786, -22.752048216034964],\n              [-53.480693415759006, -22.852397340956728],\n              [-53.61996710271251, -23.00113025678668],\n              [-53.67734869669832, -23.17348377898645],\n              [-53.77117194246489, -23.322194722159324],\n              [-53.90752326602565, -23.407031151176824],\n              [-53.99549079867822, -23.570156157399552],\n              [-54.05016975584219, -23.82281974125665],\n              [-54.1246460770426, -23.978517989383576],\n              [-54.24254036864929, -24.046918870899106],\n              [-54.370794768073054, -23.971091231287758],\n              [-54.440316255100086, -23.901789470831602],\n              [-54.52964609249213, -23.852065347841034],\n              [-54.625490822710816, -23.81247061976812],\n              [-54.67184214283836, -23.829125893840967],\n              [-54.72134653925805, -23.852065347841034],\n              [-54.81719126947674, -23.888517985950344],\n              [-54.92654918380465, -23.951293867251295],\n              [-54.982568473051, -23.974475020479346],\n              [-55.081796992461264, -23.997656173707384],\n              [-55.1942969967528, -24.017453537743847],\n              [-55.28699963700788, -24.00440177943345],\n              [-55.366419806053145, -23.991130294552192],\n              [-55.41592420247284, -23.951293867251295],\n              [-55.44246717223537, -23.865358805379387],\n              [-55.44246717223537, -23.792673255731657],\n              [-55.45889173340879, -23.686699130595315],\n              [-55.51852552474614, -23.627307038485938],\n              [-55.5383228887826, -23.58094473202985],\n              [-55.54169569164563, -23.52469472988409],\n              [-55.53495008591956, -23.461918848583124],\n              [-55.51852552474614, -23.41557851478413],\n              [-55.52842420676437, -23.35932851263837],\n              [-55.554747449956025, -23.319733784565443],\n              [-55.54822157080082, -23.25019032488133],\n              [-55.56149305568209, -23.154345594662644],\n              [-55.60109877008355, -23.094733775982377],\n              [-55.62089613412002, -23.02519031629825],\n              [-55.62089613412002, -22.955888555842108],\n              [-55.650822893074135, -22.886367068815062],\n              [-55.65396498303774, -22.81031970263284],\n              [-55.627641739846084, -22.741017942176683],\n              [-55.617743057827866, -22.67149645514965],\n              [-55.647450090211095, -22.621772332159082],\n              [-55.703700092356854, -22.59206529977584],\n              [-55.74666762329282, -22.512656117059123],\n              [-55.75319350244801, -22.410043808457274],\n              [-55.79954482257554, -22.353793806311515],\n              [-55.84926894556612, -22.307673199083396],\n              [-55.90529922114101, -22.307673199083396],\n              [-55.99146499591235, -22.281130229320866],\n              [-56.06752334842312, -22.28449204585536],\n              [-56.18992203473289, -22.281130229320866],\n              [-56.245941323979224, -22.264694681818895],\n              [-56.27586808293334, -22.228242043709585],\n              [-56.351915449115566, -22.178517920719017],\n              [-56.39489396638007, -22.09258285884711],\n              [-56.4477711656628, -22.07614731134514],\n              [-56.52381853184502, -22.102470554536794],\n              [-56.5503724879361, -22.135539403454516],\n              [-56.58006853399078, -22.18190170991059],\n              [-56.632945733273516, -22.234767922864776],\n              [-56.70246722030055, -22.231625832901173],\n              [-56.775141783619745, -22.261332865284402],\n              [-56.844674256975324, -22.264694681818895],\n              [-56.93714618433097, -22.271220560974086],\n              [-57.02984882458604, -22.244897317782446],\n              [-57.14234882887757, -22.214970558828327],\n              [-57.23819355909626, -22.195173194791863],\n              [-57.33089619935134, -22.214970558828327],\n              [-57.393672080652294, -22.19831528475548],\n              [-57.4764650525606, -22.188647315636672],\n              [-57.56894796624479, -22.18190170991059],\n              [-57.64162252956399, -22.129013524299324],\n              [-57.72104269860925, -22.099328464573176],\n              [-57.764021215873754, -22.10921616026286],\n              [-57.82027121801951, -22.142306981837677],\n              [-57.87989402302833, -22.135539403454516],\n              [-57.95594138921055, -22.10921616026286],\n              [-57.98564842159378, -22.04644027896191],\n              [-57.97912254243859, -22.006625824318107],\n              [-57.96246726836574, -21.96703109624518],\n              [-57.93277122231105, -21.91078109409942],\n              [-57.94941551005536, -21.851147302762072],\n              [-57.94266990432928, -21.798281089807887],\n              [-57.92939841944802, -21.751918783351798],\n              [-57.9161159482382, -21.699052570397612],\n              [-57.926245343155855, -21.64954817397792],\n              [-57.92939841944802, -21.596681961023734],\n              [-57.93614402517409, -21.546957838033165],\n              [-57.94604270719232, -21.494069652421885],\n              [-57.90621726621997, -21.418022286239662],\n              [-57.87314841730225, -21.35502667836782],\n              [-57.893165507909586, -21.30213849275654],\n              [-57.88641990218352, -21.2659275538752],\n              [-57.860096658991864, -21.206293762537854],\n              [-57.827016823745595, -21.13363018554722],\n              [-57.830169900037745, -20.997949028027634],\n              [-57.860096658991864, -20.918517872653823],\n              [-57.89227561529752, -20.897138477307024],\n              [-57.90059226600539, -20.873078417795455],\n              [-57.8848488572017, -20.841789354101863],\n              [-57.901943584416316, -20.809401657553877],\n              [-57.90846946357151, -20.776332808636155],\n              [-57.891374736356894, -20.747526655193525],\n              [-57.91521506929759, -20.690375774107153],\n              [-57.96246726836574, -20.673720500034307],\n              [-57.97912254243859, -20.657306925189417],\n              [-57.99554710361201, -20.594531043888466],\n              [-58.008818588493284, -20.521625767669846],\n              [-58.00229270933808, -20.465375765524072],\n              [-58.02547386256613, -20.41587136910438],\n              [-58.05854271148385, -20.38616433672115],\n              [-58.0913918338307, -20.333298123766966],\n              [-58.124691395647844, -20.293483669123162],\n              [-58.13774315395824, -20.237233666977403],\n              [-58.15979271534623, -20.16454811732966],\n              [-58.09364403118224, -20.15105690587751],\n              [-58.06754051456147, -20.110319599636014],\n              [-58.02120018076248, -20.055190203001743],\n              [-57.960215071014204, -20.040798112608982],\n              [-57.88754050769501, -20.020319596202782],\n              [-57.86076682503305, -19.979604262618366],\n              [-58.02996727094066, -19.832673104669638],\n              [-58.13144798770247, -19.744474859117645],\n              [-58.07204490926455, -19.62522924910003],\n              [-57.971695784342785, -19.424289300028533],\n              [-57.87449973571317, -19.229457749627542],\n              [-57.800473853983064, -19.080944560368465],\n              [-57.78134665598779, -19.053500711665322],\n              [-57.7167690168056, -19.044052469117403],\n              [-57.72870016960448, -18.967323950565444],\n              [-57.730941380627485, -18.917138401776015],\n              [-57.783148413869014, -18.914216038383287],\n              [-57.725096653842016, -18.733095426005335],\n              [-57.63915060564156, -18.475026568504532],\n              [-57.57412252698906, -18.279272166505848],\n              [-57.55319357111256, -18.246423044159002],\n              [-57.50617208494384, -18.23719452818196],\n              [-57.49559225055587, -18.21469452732366],\n              [-57.55207296560107, -18.18320770971627],\n              [-57.58649313292972, -18.122233586296545],\n              [-57.661650606499876, -17.947397153845813],\n              [-57.75322165491491, -17.734767751203393],\n              [-57.7527712154446, -17.734548024632517],\n              [-57.632174287016056, -17.739953298276205],\n              [-57.600896209651026, -17.816000664458443],\n              [-57.493790492674634, -17.869548029782365],\n              [-57.471521204715756, -17.900595394247972],\n              [-57.41932515780276, -17.882138362293887],\n              [-57.36982076138307, -17.875612483138696],\n              [-57.19859883102335, -17.81239714869598],\n              [-57.0797926741475, -17.73432829806164],\n              [-56.98012470159547, -17.594823898208716],\n              [-56.8874220613404, -17.517875653085866],\n              [-56.789995299811366, -17.386017737899635],\n              [-56.745215024665626, -17.316957676671464],\n              [-56.6680470529719, -17.320319493205957],\n              [-56.489398364516376, -17.30254361362161],\n              [-56.435840012863906, -17.320319493205957],\n              [-56.32874528221606, -17.284548007466384],\n              [-56.248424234230185, -17.21772915726119],\n              [-56.101042636811144, -17.18644009356761],\n              [-56.02499527062892, -17.213224762558113],\n              [-55.984950103085694, -17.266772127882035],\n              [-55.833075097292124, -17.311332676456885],\n              [-55.78852553504582, -17.351608556899535],\n              [-55.60986586026175, -17.391862464685104],\n              [-55.53404920697895, -17.503483562693106],\n              [-55.33762463893906, -17.58379362435045],\n              [-55.181245238442415, -17.686405932952297],\n              [-55.07415050779457, -17.681901538249207],\n              [-54.899995227713575, -17.65061247455563],\n              [-54.81089610322097, -17.601569503934783],\n              [-54.779618025855925, -17.557030928017028],\n              [-54.69929697787005, -17.516755047574378],\n              [-54.52514169778905, -17.512250652871302],\n              [-54.42232064894486, -17.579289229647358],\n              [-54.391273284479254, -17.673112475413944],\n              [-54.31971932667156, -17.673112475413944],\n              [-54.23489388398259, -17.637340989674357],\n              [-54.14557503291911, -17.6283541729253],\n              [-54.08324959108846, -17.588298019053525],\n              [-54.03846931594272, -17.512250652871302],\n              [-53.949150464879224, -17.45870328754738],\n              [-53.81977545994397, -17.307048008324685],\n              [-53.74394782033262, -17.253500643000763],\n              [-53.68139166560255, -17.25776333847587],\n              [-53.752714910510804, -17.641845384377447],\n              [-53.859820627487196, -17.69088835499828],\n              [-53.98941535899334, -17.900595394247972],\n              [-53.97592414754119, -17.93186248528447],\n              [-53.8688184305648, -17.945375669393698],\n              [-53.72594122784885, -18.007931824123787],\n              [-53.60534429942031, -17.994418640014544],\n              [-53.49374517406939, -18.01241424616977],\n              [-53.306318409107135, -17.99892303471762],\n              [-53.145665326806835, -18.030190125754118],\n              [-53.065344278820945, -18.021203309005045],\n              [-53.05184208104025, -18.01669891430197],\n              [-53.042844277962644, -18.097250675187283],\n              [-53.05634647574334, -18.29366425689861],\n              [-53.034066201455914, -18.356000685057808],\n              [-52.98929691263872, -18.387267776094305],\n              [-52.9089648783243, -18.34723359487961],\n              [-52.78409426809212, -18.39177217079738],\n              [-52.788598662795195, -18.463095415705638],\n              [-52.84641970992277, -18.5346383871848],\n              [-52.891199985068496, -18.637250695786648],\n              [-52.86891971078107, -18.682030970932374],\n              [-52.761594267233804, -18.708793667265795],\n              [-52.6144433827142, -18.722065152147053],\n              [-52.4983398626602, -18.704289272562704],\n              [-52.34197144849209, -18.815888397913625],\n              [-52.27064820358382, -18.811405975867643],\n              [-52.09649292350282, -18.89622043222805],\n              [-52.06072143776325, -18.945263402848894],\n              [-51.91357055324363, -18.99004367799462],\n              [-51.84201659543595, -19.04809543802162],\n              [-51.641098619021534, -19.128427472336043],\n              [-51.542990705122776, -19.137414289085115],\n              [-51.40461789710989, -19.168483626207816],\n              [-51.310794651343315, -19.253298082568236],\n              [-51.13665035759087, -19.284565173604733],\n              [-51.034049035317565, -19.369401602622233],\n              [-50.96429683539111, -19.511366940069024]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 751,\n        \"fill\": \"#fff\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-51.888148188992545, -1.160375029096713],\n              [-51.98489379815186, -1.141698270571794],\n              [-52.05194336125652, -1.177469756311268],\n              [-52.13227539557096, -1.15070705997789],\n              [-52.23937012621877, -1.146202665274814],\n              [-52.35996705464731, -1.070375025663452],\n              [-52.39124513201233, -0.954271505609483],\n              [-52.36874513115396, -0.923004414573029],\n              [-52.40002320851909, -0.869457049249036],\n              [-52.51611574224455, -0.873939471295046],\n              [-52.507348652066355, -0.731073254907699],\n              [-52.52512453165065, -0.646236825890128],\n              [-52.60544557963652, -0.610465340150597],\n              [-52.63221926229852, -0.556917974826604],\n              [-52.627714867595444, -0.396275878854851],\n              [-52.699268825403124, -0.302452633088365],\n              [-52.82864383033842, -0.181844718331263],\n              [-52.913469273027374, -0.190853507737359],\n              [-52.97602542775746, -0.016698227656377],\n              [-53.016070595300675, 0.054625017251851],\n              [-53.007292518793975, 0.134957051566346],\n              [-53.04284427796267, 0.246556176917181],\n              [-53.127669720651625, 0.384928984930184],\n              [-53.14117191843229, 0.536803990723683],\n              [-53.11439823577035, 0.719957073882256],\n              [-53.132174115354644, 0.751004438347934],\n              [-53.26627324156391, 0.782282515712836],\n              [-53.41791753445807, 0.94315532458404],\n              [-53.466971491407435, 1.152851377505215],\n              [-53.40891973138042, 1.184129454870344],\n              [-53.44019780874544, 1.259957094481592],\n              [-53.53852544921506, 1.2421812148973],\n              [-53.5562903424709, 1.367282538028917],\n              [-53.650124574566064, 1.362778143325841],\n              [-53.6591223776436, 1.420829903352796],\n              [-53.739443425629474, 1.434101388234183],\n              [-53.75721930521382, 1.394056220690743],\n              [-53.89109870485214, 1.407327705572129],\n              [-53.92236579588871, 1.460875070896009],\n              [-54.00719123857766, 1.523431225626041],\n              [-54.07874519638534, 1.505655346041749],\n              [-54.083249591088475, 1.541207105210503],\n              [-54.172348715580995, 1.657299638935967],\n              [-54.20361580661756, 1.657299638935967],\n              [-54.364499601817215, 1.760131674108663],\n              [-54.49836801512703, 1.746629476328053],\n              [-54.578700049441466, 1.782400962067584],\n              [-54.73484873703876, 1.773403158989879],\n              [-54.76611582807516, 1.898504482121496],\n              [-54.7616224197007, 1.969827727029838],\n              [-54.792900497065716, 2.010103607472502],\n              [-54.752844343193885, 2.081426852380673],\n              [-54.78839610236264, 2.130480809330038],\n              [-54.71707285745441, 2.264579935539416],\n              [-54.73484873703876, 2.416224228433464],\n              [-54.71482066010287, 2.425002304940222],\n              [-54.70290049363251, 2.397997909378716],\n              [-54.69749521998881, 2.359754499716871],\n              [-54.661943460820055, 2.327575543411285],\n              [-54.61627329306225, 2.326674664470602],\n              [-54.59197153432274, 2.313853619059614],\n              [-54.550575048368614, 2.293155376082495],\n              [-54.51502328919992, 2.245452737543985],\n              [-54.43312020990368, 2.207429054452973],\n              [-54.293165370580425, 2.154332128599378],\n              [-54.22791756535702, 2.153431249658695],\n              [-54.167393881407634, 2.137006688485371],\n              [-54.13004036435774, 2.121032566782276],\n              [-54.08977547024364, 2.150497899937534],\n              [-53.94644782805739, 2.232631692133054],\n              [-53.8766956281309, 2.27830185989086],\n              [-53.82944342906268, 2.312952740118931],\n              [-53.79434210936438, 2.346032575365257],\n              [-53.76779913960178, 2.354799665543339],\n              [-53.750242986588376, 2.335002301507075],\n              [-53.734719304355565, 2.308448345415854],\n              [-53.68364386295406, 2.292924663183044],\n              [-53.56394781346614, 2.261877298717536],\n              [-53.509049129731295, 2.253099222210778],\n              [-53.43187017170902, 2.279422465402376],\n              [-53.365941214115935, 2.324202740548117],\n              [-53.33444341018003, 2.339726422780984],\n              [-53.28540043955917, 2.295176860534639],\n              [-53.25208989141339, 2.232181252662826],\n              [-53.229820603454584, 2.204957130530545],\n              [-53.18009648046399, 2.21125229678637],\n              [-53.08221927946465, 2.20180405423838],\n              [-53.00977542904491, 2.181775977302436],\n              [-52.96477542732828, 2.18357773518369],\n              [-52.90357059100916, 2.211483009685821],\n              [-52.87049075576283, 2.266601419991446],\n              [-52.783424102050844, 2.317226421922612],\n              [-52.70062014381409, 2.363577742050097],\n              [-52.65314821817498, 2.425672470981453],\n              [-52.58294557877821, 2.528954945624434],\n              [-52.55954469897932, 2.573054068400438],\n              [-52.554589864805905, 2.647750116171721],\n              [-52.455822771194505, 2.864202761147453],\n              [-52.41846925414461, 2.903797489220437],\n              [-52.39641969275658, 2.972198370735896],\n              [-52.35659425178426, 3.051629526109878],\n              [-52.35659425178426, 3.117778210273684],\n              [-52.32779908467023, 3.181674697086237],\n              [-52.271318369624964, 3.237023820291483],\n              [-52.229471444200556, 3.271674700519384],\n              [-52.16264160766684, 3.364608053674033],\n              [-52.11607056096835, 3.452355859755698],\n              [-51.9995166014441, 3.64697866991429],\n              [-51.99051879836645, 3.702108066548533],\n              [-51.944398191138305, 3.735176915466184],\n              [-51.92887450890555, 3.77702384089082],\n              [-51.87958983905668, 3.828549721762442],\n              [-51.827393792143766, 3.869506754575013],\n              [-51.80534423075568, 3.930030438524398],\n              [-51.767089834765216, 3.992575606925811],\n              [-51.683395983916284, 4.039608079423203],\n              [-51.652568346021496, 4.061207201340892],\n              [-51.55784422131438, 4.233780450111567],\n              [-51.54704466035554, 4.310948421805278],\n              [-51.46154905162541, 4.313881771526439],\n              [-51.32699948594586, 4.224782647033805],\n              [-51.21989376896943, 4.093605884217311],\n              [-51.07634640021229, 3.671730868124087],\n              [-51.05249508094312, 3.281804095437053],\n              [-50.99422359434516, 3.07750232983102],\n              [-50.82727534578913, 2.651804071404399],\n              [-50.81646479850173, 2.573054068400438],\n              [-50.78969111583979, 2.477879504222983],\n              [-50.73704462945648, 2.376849226931483],\n              [-50.67877314285863, 2.210351417845686],\n              [-50.676520945507036, 2.179523779951012],\n              [-50.71432490202727, 2.134073338763983],\n              [-50.65896479249358, 2.130931248800493],\n              [-50.608790230032696, 2.104157566138497],\n              [-50.57594110768588, 1.998622894143864],\n              [-50.53432489516075, 1.927299649235522],\n              [-50.45894769501973, 1.829653161135639],\n              [-50.304370052404295, 1.797704917729448],\n              [-50.18759636630915, 1.786004477830033],\n              [-50.05461784561146, 1.730655354624787],\n              [-49.95719108408235, 1.6597825491869],\n              [-49.881594157370444, 1.419929024412284],\n              [-49.9063463555803, 1.268954897559297],\n              [-49.898919597484564, 1.162980772422884],\n              [-49.93784415951632, 1.121353573569309],\n              [-50.04719108751567, 1.052051813113167],\n              [-50.0710424067849, 1.015148735533614],\n              [-50.294471370386134, 0.835829881036886],\n              [-50.343294614436104, 0.751004438347934],\n              [-50.46299066392402, 0.63737284221628],\n              [-50.58156610790047, 0.420480744098768],\n              [-50.755040235611716, 0.22247414474856],\n              [-50.81624507193084, 0.17253029518713],\n              [-50.91006831769744, 0.161049581858492],\n              [-50.96699947221293, 0.130232930292266],\n              [-51.10199947736277, -0.03133201727718],\n              [-51.28290036316986, -0.085099109171949],\n              [-51.299544650914186, -0.17892235493855],\n              [-51.40416745763952, -0.392672363092458],\n              [-51.496199931853425, -0.509457035516164],\n              [-51.55492185792161, -0.549051763589034],\n              [-51.70274290848249, -0.762340345944153],\n              [-51.72141966700741, -0.855504411998083],\n              [-51.720518788066784, -1.018387718992813],\n              [-51.81906615510729, -1.117857937631129],\n              [-51.888148188992545, -1.160375029096713]\n            ]\n          ],\n          [\n            [\n              [-50.36264153900231, 2.154551855170212],\n              [-50.341943296025136, 2.141730809759224],\n              [-50.291999446463706, 1.979506682477108],\n              [-50.298964778760705, 1.938549649664708],\n              [-50.39887445054069, 1.892879481906903],\n              [-50.456025331627075, 1.910424648591913],\n              [-50.508891544581275, 2.029450532038538],\n              [-50.491115664996926, 2.128679051448842],\n              [-50.41867181457707, 2.161528173795716],\n              [-50.36264153900231, 2.154551855170212]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 3224,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-60.72479281319322, -13.662948748219577],\n              [-60.659094568499526, -13.601513199001005],\n              [-60.38234895247378, -13.418590828741813],\n              [-60.35107087510873, -13.271220217651319],\n              [-60.27502350892651, -13.137340818012973],\n              [-60.270749827122856, -13.070302241236917],\n              [-60.194691474612085, -12.972194327338144],\n              [-60.083092349261165, -12.927414052192404],\n              [-60.04304718171794, -12.873866686868496],\n              [-60.00277130127529, -12.731000470481078],\n              [-59.908948055508716, -12.619401345130157],\n              [-59.82412261281975, -12.387194305022163],\n              [-59.89117217592437, -12.244547815205635],\n              [-59.88666778122129, -12.128444295151638],\n              [-59.93144805636702, -12.0523969289694],\n              [-59.98499542169094, -11.918517529331055],\n              [-60.06082306130229, -11.905246044449797],\n              [-60.10109894174494, -11.74436224925006],\n              [-60.10109894174494, -11.601496032862656],\n              [-60.025040589234166, -11.534677182657461],\n              [-59.908948055508716, -11.38280217686389],\n              [-60.00277130127529, -11.14633244128079],\n              [-60.069820864379906, -11.115043377587199],\n              [-60.17691559502774, -11.11954777229029],\n              [-60.27951691730104, -11.079271891847625],\n              [-60.38234895247378, -11.10155216613505],\n              [-60.440400712500775, -11.038996011404976],\n              [-60.440400712500775, -11.003444252236292],\n              [-61.471566523321, -10.998939857533202],\n              [-61.520620480270395, -10.954181555044556],\n              [-61.50734899538912, -10.878353915433223],\n              [-61.520620480270395, -10.789013091712633],\n              [-61.471566523321, -10.757746000676136],\n              [-61.502844600686046, -10.686422755767879],\n              [-61.471566523321, -10.436439836075536],\n              [-61.56540075541612, -10.26230652865162],\n              [-61.569674437219774, -10.061366579580124],\n              [-61.53412267805108, -9.994547729374943],\n              [-61.520620480270395, -9.860448603165707],\n              [-61.56540075541612, -9.726569203527362],\n              [-61.520620480270395, -9.704288929239937],\n              [-61.48057531272717, -9.63725035246388],\n              [-61.551898557635425, -9.463095072382885],\n              [-61.54739416293235, -9.409547707058962],\n              [-61.609950317662424, -9.320448582566343],\n              [-61.592174438078075, -9.239896821681043],\n              [-61.529618283348, -9.22662533679977],\n              [-61.55639196600997, -9.128297696330122],\n              [-61.529618283348, -8.998922691394853],\n              [-61.48484899453082, -8.914108235034448],\n              [-61.50734899538912, -8.847047685601282],\n              [-61.609950317662424, -8.766715651286859],\n              [-58.54746729068172, -8.74893977170251],\n              [-58.47165063739892, -8.690888011675511],\n              [-58.42665063568231, -8.523038884178831],\n              [-58.3971743161985, -8.41550470038922],\n              [-58.354415525504876, -8.27600030053631],\n              [-58.32877343468296, -8.050538866154383],\n              [-58.35352563289281, -7.905870891885741],\n              [-58.330344479664774, -7.780099402712935],\n              [-58.259471674226816, -7.67322439863598],\n              [-58.22391991505812, -7.574677031595442],\n              [-58.22370018848723, -7.484677028162224],\n              [-58.20187035367012, -7.414474388765456],\n              [-58.13662254844674, -7.338207296012342],\n              [-58.06079490883542, -7.409530540920628],\n              [-57.98047386084954, -7.530116483020606],\n              [-57.94919578348447, -7.619457306741182],\n              [-57.89564841816055, -7.690780551649439],\n              [-57.779544898106565, -8.048077928560417],\n              [-57.641172090093676, -8.231000298819694],\n              [-57.681447970536325, -8.436422669937187],\n              [-57.650169893171295, -8.498978824667262],\n              [-57.641172090093676, -8.615082344721259],\n              [-57.5786159353636, -8.757948561108677],\n              [-57.480519007793376, -8.79350032027736],\n              [-57.29736592463476, -8.958646810952203],\n              [-57.10094135659489, -9.052470056718775],\n              [-57.08316547701054, -9.079254725709276],\n              [-57.07416767393295, -9.18634945635705],\n              [-57.047393991270965, -9.231129731502847],\n              [-56.92679706284244, -9.24440121638412],\n              [-56.837697938349834, -9.271163912717554],\n              [-56.7706483752452, -9.39627622217769],\n              [-56.67682512947863, -9.378280616022494],\n              [-56.489398364516376, -9.467599467085961],\n              [-56.46262468185441, -9.467599467085961],\n              [-55.09214611394981, -9.56592710755561],\n              [-51.29752316646204, -9.78912535825745],\n              [-50.23484856537735, -9.842672723581373],\n              [-50.33744988765065, -10.034362184018732],\n              [-50.39527093477824, -10.176788947264384],\n              [-50.40269769287403, -10.25824158709031],\n              [-50.45467401321616, -10.388517470966192],\n              [-50.55074945633427, -10.567177145750264],\n              [-50.59912226091393, -10.689806544959453],\n              [-50.61037226134306, -11.000983314642411],\n              [-50.64524286814202, -11.162746016125666],\n              [-50.708018749443, -11.345668386384844],\n              [-50.716566113050305, -11.482689875986807],\n              [-50.67134638476281, -11.573832457588622],\n              [-50.66572138454822, -11.65190130822296],\n              [-50.717466991990904, -11.74910834318112],\n              [-50.66144770274457, -11.8535004370071],\n              [-50.653570505178465, -11.922340771664409],\n              [-50.67471918762584, -11.990082473467297],\n              [-50.667523142429445, -12.112030720306748],\n              [-50.631740670361324, -12.288646937981625],\n              [-50.629268746438925, -12.437379853811592],\n              [-50.66054682380397, -12.558207495139541],\n              [-50.65537226305969, -12.666862284440654],\n              [-50.613964790777004, -12.763388167029063],\n              [-50.56604242566766, -12.819638169174837],\n              [-50.48482049874116, -12.842599595831999],\n              [-50.56604242566766, -13.01473339146088],\n              [-50.59506830568114, -13.130814938857782],\n              [-50.59844110854419, -13.249401369162754],\n              [-50.66662226348885, -13.40960401199274],\n              [-50.79958979785803, -13.611862320489536],\n              [-50.86057490760629, -13.806056663834966],\n              [-50.85179683109956, -13.995043487450488],\n              [-50.86754023990326, -14.095172885801375],\n              [-50.908497272715636, -14.107323765171145],\n              [-50.94111568216306, -14.200927284366827],\n              [-50.977568320272354, -14.46328080999983],\n              [-51.11437008330344, -14.837892640696381],\n              [-51.18861569160444, -14.976496161608694],\n              [-51.24621701216114, -15.004401436110683],\n              [-51.286273166032885, -15.002819404800334],\n              [-51.47144773364363, -15.044215890754487],\n              [-51.5897924647206, -15.141422925712646],\n              [-51.66471922539134, -15.261349688099983],\n              [-51.69599730275638, -15.403315025546789],\n              [-51.73199950139539, -15.49039266558728],\n              [-51.77271483497981, -15.52280233479236],\n              [-51.78824950354115, -15.556991789221584],\n              [-51.778790274664686, -15.592763274961158],\n              [-51.79859862502968, -15.656220308631859],\n              [-51.84742186907965, -15.747121191005704],\n              [-51.961492918352974, -15.819125588283697],\n              [-52.14239380416005, -15.87267295360762],\n              [-52.25669556633282, -15.93566856147946],\n              [-52.308441173775506, -16.009254990067816],\n              [-52.36176881252855, -16.05829796068865],\n              [-52.416667496263386, -16.082379992857312],\n              [-52.53839601653196, -16.16855675395719],\n              [-52.53412233472831, -16.22660851398419],\n              [-52.66799074803811, -16.289142696057183],\n              [-52.68127321924793, -16.36046594096544],\n              [-52.6144433827142, -16.427526490398606],\n              [-52.679921900837, -16.576017707000588],\n              [-52.789049102265494, -16.70495325879409],\n              [-52.942714879611756, -16.813630020752285],\n              [-53.02416751943768, -16.910375629911584],\n              [-53.03316532251529, -16.995190086272004],\n              [-53.07794559766103, -17.094638332253155],\n              [-53.158266645646904, -17.208720367855037],\n              [-53.20259648132233, -17.304125644931958],\n              [-53.21137455782906, -17.409198891127687],\n              [-53.11506840181153, -17.85491424016162],\n              [-53.05184208104025, -18.01669891430197],\n              [-53.065344278820945, -18.021203309005045],\n              [-53.145665326806835, -18.030190125754118],\n              [-53.306318409107135, -17.99892303471762],\n              [-53.49374517406939, -18.01241424616977],\n              [-53.60534429942031, -17.994418640014544],\n              [-53.72594122784885, -18.007931824123787],\n              [-53.8688184305648, -17.945375669393698],\n              [-53.97592414754119, -17.93186248528447],\n              [-53.98941535899334, -17.900595394247972],\n              [-53.859820627487196, -17.69088835499828],\n              [-53.752714910510804, -17.641845384377447],\n              [-53.68139166560255, -17.25776333847587],\n              [-53.74394782033262, -17.253500643000763],\n              [-53.81977545994397, -17.307048008324685],\n              [-53.949150464879224, -17.45870328754738],\n              [-54.03846931594272, -17.512250652871302],\n              [-54.08324959108846, -17.588298019053525],\n              [-54.14557503291911, -17.6283541729253],\n              [-54.23489388398259, -17.637340989674357],\n              [-54.31971932667156, -17.673112475413944],\n              [-54.391273284479254, -17.673112475413944],\n              [-54.42232064894486, -17.579289229647358],\n              [-54.52514169778905, -17.512250652871302],\n              [-54.69929697787005, -17.516755047574378],\n              [-54.779618025855925, -17.557030928017028],\n              [-54.81089610322097, -17.601569503934783],\n              [-54.899995227713575, -17.65061247455563],\n              [-55.07415050779457, -17.681901538249207],\n              [-55.181245238442415, -17.686405932952297],\n              [-55.33762463893906, -17.58379362435045],\n              [-55.53404920697895, -17.503483562693106],\n              [-55.60986586026175, -17.391862464685104],\n              [-55.78852553504582, -17.351608556899535],\n              [-55.833075097292124, -17.311332676456885],\n              [-55.984950103085694, -17.266772127882035],\n              [-56.02499527062892, -17.213224762558113],\n              [-56.101042636811144, -17.18644009356761],\n              [-56.248424234230185, -17.21772915726119],\n              [-56.32874528221606, -17.284548007466384],\n              [-56.435840012863906, -17.320319493205957],\n              [-56.489398364516376, -17.30254361362161],\n              [-56.6680470529719, -17.320319493205957],\n              [-56.745215024665626, -17.316957676671464],\n              [-56.789995299811366, -17.386017737899635],\n              [-56.8874220613404, -17.517875653085866],\n              [-56.98012470159547, -17.594823898208716],\n              [-57.0797926741475, -17.73432829806164],\n              [-57.19859883102335, -17.81239714869598],\n              [-57.36982076138307, -17.875612483138696],\n              [-57.41932515780276, -17.882138362293887],\n              [-57.471521204715756, -17.900595394247972],\n              [-57.493790492674634, -17.869548029782365],\n              [-57.600896209651026, -17.816000664458443],\n              [-57.632174287016056, -17.739953298276205],\n              [-57.7527712154446, -17.734548024632517],\n              [-57.75322165491491, -17.734767751203393],\n              [-57.78021506414774, -17.67177214333155],\n              [-57.78877341408359, -17.573005049720138],\n              [-57.83242209738928, -17.51203092630041],\n              [-57.90509666070848, -17.53226774347864],\n              [-57.990822982338045, -17.512931805241024],\n              [-58.20547386943258, -17.36307828389957],\n              [-58.34766991977881, -17.28206509721541],\n              [-58.39604272435845, -17.234362458676955],\n              [-58.417422119705265, -17.08046596843127],\n              [-58.45971948460003, -16.91081508305335],\n              [-58.47816553022557, -16.70066859066189],\n              [-58.47051904555887, -16.650263315301586],\n              [-58.35037255660065, -16.490741824841322],\n              [-58.35082299607096, -16.410190063956023],\n              [-58.34047387458243, -16.339987424559254],\n              [-58.345648435326694, -16.284418574783217],\n              [-58.375344481381376, -16.283517695842605],\n              [-58.42371728596103, -16.307819454582145],\n              [-58.49662256217965, -16.32671593967798],\n              [-58.538019048133805, -16.32829797098833],\n              [-58.957191427405206, -16.313224728225833],\n              [-59.43419584013273, -16.29588830178325],\n              [-59.831098931445254, -16.281715937961366],\n              [-60.17557526294536, -16.26934533202072],\n              [-60.187275702844815, -16.13210411584788],\n              [-60.20662262741098, -15.901918560192001],\n              [-60.22034455176255, -15.738573827398397],\n              [-60.24239411315055, -15.479604090956983],\n              [-60.38054719459254, -15.318280842615493],\n              [-60.53040071593401, -15.143224683593871],\n              [-60.58326692888819, -15.09822468187727],\n              [-60.4019156036108, -15.092819408233566],\n              [-60.27344147761616, -15.088776439329337],\n              [-60.298874828195736, -14.618517632327894],\n              [-60.33801911679835, -14.57059526721855],\n              [-60.372669997026435, -14.41872026142498],\n              [-60.39629060339624, -14.332763226895977],\n              [-60.46019807653724, -14.263022013298055],\n              [-60.47459016693, -14.184733436092841],\n              [-60.462900713359076, -14.132526402851298],\n              [-60.42801912023158, -14.099897007075342],\n              [-60.40506867990297, -14.019125519619152],\n              [-60.422394120017, -13.937892606364102],\n              [-60.46019807653724, -13.86230666598074],\n              [-60.50654939666477, -13.789840842903885],\n              [-60.59519808168707, -13.745302266986116],\n              [-60.722320889270804, -13.664289080301955],\n              [-60.72479281319322, -13.662948748219577]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 11082,\n        \"fill\": \"#999\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-54.24254036864929, -24.046918870899106],\n              [-54.1246460770426, -23.978517989383576],\n              [-54.05016975584219, -23.82281974125665],\n              [-53.99549079867822, -23.570156157399552],\n              [-53.90752326602565, -23.407031151176824],\n              [-53.77117194246489, -23.322194722159324],\n              [-53.67734869669832, -23.17348377898645],\n              [-53.61996710271251, -23.00113025678668],\n              [-53.480693415759006, -22.852397340956728],\n              [-53.272348681248786, -22.752048216034964],\n              [-53.11619999365156, -22.639987664885183],\n              [-53.044415322944445, -22.636406121779814],\n              [-52.94924075876696, -22.570466177858123],\n              [-52.69477541702862, -22.601513542323772],\n              [-52.6144433827142, -22.57046617785815],\n              [-52.52062013694763, -22.615026726433],\n              [-52.44479249733628, -22.601513542323772],\n              [-52.315197765830135, -22.619531121136077],\n              [-52.26165040050621, -22.601513542323772],\n              [-52.21708985193136, -22.641789422766422],\n              [-52.16354248660744, -22.601513542323772],\n              [-52.14127319864856, -22.543483754953854],\n              [-52.06521484613779, -22.52120348066643],\n              [-51.984893798151916, -22.54796617699985],\n              [-51.873294672800995, -22.610522331729925],\n              [-51.743919667865725, -22.619531121136077],\n              [-51.69464598434547, -22.664069697053776],\n              [-51.641098619021534, -22.650798212172575],\n              [-51.54749509982585, -22.686349971341272],\n              [-51.35534421358966, -22.65079821217256],\n              [-51.181419646408045, -22.739897336665194],\n              [-51.00277095795252, -22.793664428559993],\n              [-50.88217402952398, -22.820449097550494],\n              [-50.78406611562522, -22.945319707782687],\n              [-50.72602534192677, -22.949824102485763],\n              [-50.62769770145712, -22.923039433495262],\n              [-50.43127313341722, -22.945319707782687],\n              [-50.368947691586584, -22.91405261674619],\n              [-50.29290032540439, -22.95432849718884],\n              [-50.12324944002643, -22.94081531307961],\n              [-49.97159416080376, -22.914052616746176],\n              [-49.958091963023065, -22.963315313937912],\n              [-49.91354240077675, -22.985595588225337],\n              [-49.909048992402205, -23.034638558846183],\n              [-49.73040030394668, -23.105983776411534],\n              [-49.636796784751, -23.257858782205105],\n              [-49.614296783892684, -23.409733787998675],\n              [-49.65457266433535, -23.507819729240353],\n              [-49.605518707385954, -23.641699128878713],\n              [-49.551971342062075, -23.71324210035783],\n              [-49.56974722164637, -23.833850015114933],\n              [-49.60102529901141, -23.86489737958054],\n              [-49.40909413934608, -24.083832934807262],\n              [-49.33304677316386, -24.14186272217718],\n              [-49.33754018153837, -24.21320793974253],\n              [-49.274995013136845, -24.315798275687285],\n              [-49.22594105618748, -24.338298276545572],\n              [-49.23944325396815, -24.418630310860024],\n              [-49.31076649887643, -24.530229436210945],\n              [-49.29749501399516, -24.66410883584929],\n              [-49.21694325310986, -24.690871532182697],\n              [-49.09207264287767, -24.68636713747962],\n              [-49.025023079773064, -24.668591257895272],\n              [-48.82859851173316, -24.66410883584922],\n              [-48.7795445547838, -24.695375926885774],\n              [-48.61439806410894, -24.681862742776545],\n              [-48.48929674097735, -24.74441889750662],\n              [-48.54284410630126, -24.81147944693977],\n              [-48.5653441071596, -25.056957971928966],\n              [-48.51179674183564, -25.08372066826246],\n              [-48.41346910136599, -24.958850058030265],\n              [-48.26609849027551, -25.034677697641598],\n              [-48.23054673110681, -25.012397423354116],\n              [-48.18576645596107, -25.19081539891029],\n              [-48.0919432101945, -25.23559567405603],\n              [-48.08766952839085, -25.28015622263088],\n              [-48.07754013347321, -25.29026364489144],\n              [-48.202641456604795, -25.41649655986309],\n              [-48.242466897577145, -25.403225074981833],\n              [-48.185997168860496, -25.309841282357027],\n              [-48.2735252483713, -25.306237766594563],\n              [-48.402449813836256, -25.27204831216534],\n              [-48.45846910308262, -25.31074216129764],\n              [-48.42764146518789, -25.403225074981833],\n              [-48.47602525609608, -25.443039529625636],\n              [-48.56422350164806, -25.447543924328713],\n              [-48.64409411016365, -25.436513650470445],\n              [-48.731841916245315, -25.368793921324638],\n              [-48.692247188172416, -25.491423320533826],\n              [-48.50707262056167, -25.521350079487945],\n              [-48.42989366253943, -25.55015623293056],\n              [-48.401098495425344, -25.59739744567017],\n              [-48.5450963036528, -25.815871575098043],\n              [-48.66569323208134, -25.844458001969784],\n              [-48.67896471696261, -25.87526366720742],\n              [-48.612816032798605, -25.875043940636544],\n              [-48.57637438101784, -25.93535888434363],\n              [-48.58537218409546, -25.9862036128457],\n              [-48.65016954984853, -25.97225097559469],\n              [-48.91791736279666, -25.97651367106981],\n              [-48.944691045458626, -26.007802734763388],\n              [-49.109848522462016, -25.99453124988213],\n              [-49.21266957130621, -26.030302735621696],\n              [-49.29749501399516, -26.106130375233022],\n              [-49.45364370159237, -26.16866455730603],\n              [-49.48941518733196, -26.22223389528704],\n              [-49.596520904308335, -26.22223389528704],\n              [-49.72162222743995, -26.15967774055696],\n              [-49.7526695919056, -26.123906254817314],\n              [-49.882275309740265, -26.039069825799885],\n              [-49.949094159945446, -26.01230712946647],\n              [-50.19029900313106, -26.05258300990912],\n              [-50.315169613363224, -26.05258300990912],\n              [-50.369167418157474, -26.085871585397726],\n              [-50.45804681607919, -26.02579834091862],\n              [-50.54287225876814, -26.02579834091862],\n              [-50.64569330761233, -26.07035888949347],\n              [-50.73502314500439, -26.23100098546523],\n              [-50.77057490417306, -26.22223389528704],\n              [-50.90016963567922, -26.28026368265695],\n              [-50.94471919792551, -26.244492196917378],\n              [-51.074094202860806, -26.23550538016832],\n              [-51.24824948294179, -26.347104505519212],\n              [-51.28852536338445, -26.423151871701464],\n              [-51.2795165739783, -26.49897951131271],\n              [-51.23947140643509, -26.606074241960584],\n              [-51.28402096868135, -26.650854517106367],\n              [-51.422393776694236, -26.699897487727206],\n              [-51.50271482468011, -26.601569847257558],\n              [-51.873294672800995, -26.601569847257558],\n              [-52.00717407243934, -26.583793967673216],\n              [-52.19909424577614, -26.44991456803487],\n              [-52.458074968546086, -26.43191896187964],\n              [-52.54290041123505, -26.40065187084314],\n              [-52.64121706537617, -26.40065187084309],\n              [-52.6724951427412, -26.378371596555716],\n              [-52.81537234545715, -26.33831544268395],\n              [-52.913469273027374, -26.365100111674394],\n              [-52.99379032101325, -26.351608900222303],\n              [-53.12339603884794, -26.369604506377534],\n              [-53.27954472644517, -26.26226807650172],\n              [-53.355372366056514, -26.239987802214294],\n              [-53.458193414900734, -26.2890527454922],\n              [-53.516245174927704, -26.289052745492228],\n              [-53.66339605944734, -26.25776368179862],\n              [-53.6699219386025, -26.258005381026635],\n              [-53.671273257013425, -26.225156258679768],\n              [-53.74687018372535, -26.083630374374735],\n              [-53.823148262806995, -25.959638670426074],\n              [-53.86409430929085, -25.748832998321973],\n              [-53.891098704852226, -25.668940417149315],\n              [-53.9547754650938, -25.647582994459597],\n              [-54.012365799321955, -25.577819808204595],\n              [-54.08504036264114, -25.57197508141914],\n              [-54.11924080339891, -25.545190412428624],\n              [-54.15457283599672, -25.52315183736917],\n              [-54.206098716868524, -25.52967771652436],\n              [-54.25019783964453, -25.570393050108777],\n              [-54.33187020604133, -25.57197508141914],\n              [-54.38339608691314, -25.588630355491986],\n              [-54.44391977086255, -25.625082993601296],\n              [-54.50152109141925, -25.60820799295756],\n              [-54.53774301662912, -25.576479476122216],\n              [-54.61582285359201, -25.576018050323356],\n              [-54.61064829284774, -25.43269040813709],\n              [-54.47316537744693, -25.22030270472264],\n              [-54.43627328619587, -25.121293911883257],\n              [-54.454049165780205, -25.065263636308373],\n              [-54.41309213296782, -24.867487749857574],\n              [-54.31297372094548, -24.52820795175883],\n              [-54.28102547753926, -24.30613030656849],\n              [-54.31724740274913, -24.201276786943637],\n              [-54.318368008260634, -24.12815178415414],\n              [-54.26684212738883, -24.065815355994943],\n              [-54.2418702026081, -24.047380296697952],\n              [-54.24254036864929, -24.046918870899106]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 2852,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-47.301971256231354, -16.03918174902192],\n              [-47.85547347461139, -16.043664171067917],\n              [-48.18127304758653, -16.03918174902192],\n              [-48.252816019065676, -16.03017295961577],\n              [-48.234820412910466, -15.958849714707497],\n              [-48.279589701727645, -15.838241799950424],\n              [-48.203773048444845, -15.73543173743478],\n              [-48.23932480761354, -15.69087118885993],\n              [-48.18127304758653, -15.489953212445528],\n              [-47.76614363721936, -15.489953212445528],\n              [-47.422348458089004, -15.498940029194586],\n              [-47.41357038158225, -15.534733487591254],\n              [-47.30624493803501, -15.588280852915176],\n              [-47.30624493803501, -15.708647068444279],\n              [-47.35102521318072, -15.833737405247348],\n              [-47.359792303358915, -15.985612411040918],\n              [-47.301971256231354, -16.03918174902192]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 6523,\n        \"fill\": \"#999\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-50.96429683539111, -19.511366940069024],\n              [-51.034049035317565, -19.369401602622233],\n              [-51.13665035759087, -19.284565173604733],\n              [-51.310794651343315, -19.253298082568236],\n              [-51.40461789710989, -19.168483626207816],\n              [-51.542990705122776, -19.137414289085115],\n              [-51.641098619021534, -19.128427472336043],\n              [-51.84201659543595, -19.04809543802162],\n              [-51.91357055324363, -18.99004367799462],\n              [-52.06072143776325, -18.945263402848894],\n              [-52.09649292350282, -18.89622043222805],\n              [-52.27064820358382, -18.811405975867643],\n              [-52.34197144849209, -18.815888397913625],\n              [-52.4983398626602, -18.704289272562704],\n              [-52.6144433827142, -18.722065152147053],\n              [-52.761594267233804, -18.708793667265795],\n              [-52.86891971078107, -18.682030970932374],\n              [-52.891199985068496, -18.637250695786648],\n              [-52.84641970992277, -18.5346383871848],\n              [-52.788598662795195, -18.463095415705638],\n              [-52.78409426809212, -18.39177217079738],\n              [-52.9089648783243, -18.34723359487961],\n              [-52.98929691263872, -18.387267776094305],\n              [-53.034066201455914, -18.356000685057808],\n              [-53.05634647574334, -18.29366425689861],\n              [-53.042844277962644, -18.097250675187283],\n              [-53.05184208104025, -18.01669891430197],\n              [-53.11506840181153, -17.85491424016162],\n              [-53.21137455782906, -17.409198891127687],\n              [-53.20259648132233, -17.304125644931958],\n              [-53.158266645646904, -17.208720367855037],\n              [-53.07794559766103, -17.094638332253155],\n              [-53.03316532251529, -16.995190086272004],\n              [-53.02416751943768, -16.910375629911584],\n              [-52.942714879611756, -16.813630020752285],\n              [-52.789049102265494, -16.70495325879409],\n              [-52.679921900837, -16.576017707000588],\n              [-52.6144433827142, -16.427526490398606],\n              [-52.68127321924793, -16.36046594096544],\n              [-52.66799074803811, -16.289142696057183],\n              [-52.53412233472831, -16.22660851398419],\n              [-52.53839601653196, -16.16855675395719],\n              [-52.416667496263386, -16.082379992857312],\n              [-52.36176881252855, -16.05829796068865],\n              [-52.308441173775506, -16.009254990067816],\n              [-52.25669556633282, -15.93566856147946],\n              [-52.14239380416005, -15.87267295360762],\n              [-51.961492918352974, -15.819125588283697],\n              [-51.84742186907965, -15.747121191005704],\n              [-51.79859862502968, -15.656220308631859],\n              [-51.778790274664686, -15.592763274961158],\n              [-51.78824950354115, -15.556991789221584],\n              [-51.77271483497981, -15.52280233479236],\n              [-51.73199950139539, -15.49039266558728],\n              [-51.69599730275638, -15.403315025546789],\n              [-51.66471922539134, -15.261349688099983],\n              [-51.5897924647206, -15.141422925712646],\n              [-51.47144773364363, -15.044215890754487],\n              [-51.286273166032885, -15.002819404800334],\n              [-51.24621701216114, -15.004401436110683],\n              [-51.18861569160444, -14.976496161608694],\n              [-51.11437008330344, -14.837892640696381],\n              [-50.977568320272354, -14.46328080999983],\n              [-50.94111568216306, -14.200927284366827],\n              [-50.908497272715636, -14.107323765171145],\n              [-50.86754023990326, -14.095172885801375],\n              [-50.85179683109956, -13.995043487450488],\n              [-50.86057490760629, -13.806056663834966],\n              [-50.79958979785803, -13.611862320489536],\n              [-50.66662226348885, -13.40960401199274],\n              [-50.59844110854419, -13.249401369162754],\n              [-50.59506830568114, -13.130814938857782],\n              [-50.56604242566766, -13.01473339146088],\n              [-50.48482049874116, -12.842599595831999],\n              [-50.3923485713855, -12.617138161450072],\n              [-50.29559197589765, -12.490026340194888],\n              [-50.16374504703998, -12.38765573082101],\n              [-50.13674065147859, -12.476513156085659],\n              [-50.2035704880123, -12.570358374509311],\n              [-50.19929680620865, -12.65517283086973],\n              [-50.27512444582001, -12.789052230508076],\n              [-50.270620051116936, -12.89186229302372],\n              [-50.23934197375189, -12.931918446895494],\n              [-50.05191520878964, -13.021237297958976],\n              [-49.97159416080376, -13.025741692662066],\n              [-49.91354240077675, -13.070302241236917],\n              [-49.68583975537183, -13.177396971884747],\n              [-49.520693264697, -13.199896972743062],\n              [-49.38232045668411, -13.248939943363894],\n              [-49.3598204558258, -13.132858395966991],\n              [-49.29749501399516, -13.003483391031722],\n              [-49.136622205123956, -12.735504865184154],\n              [-49.016245003266306, -12.65517283086973],\n              [-48.998249397111096, -12.748996076636303],\n              [-48.92691516587428, -12.784547835805],\n              [-48.824094117030086, -12.873866686868496],\n              [-48.797320434368146, -12.927414052192404],\n              [-48.80182482907122, -12.998978996328646],\n              [-48.766273069902525, -13.097064937570323],\n              [-48.76176867519945, -13.208664062921244],\n              [-48.77504016008072, -13.351552251965742],\n              [-48.73926867434113, -13.38281934300224],\n              [-48.685721309017225, -13.338280767084484],\n              [-48.65444323165218, -13.177396971884747],\n              [-48.587624381447, -13.155116697597322],\n              [-48.480518664470594, -13.195392578039986],\n              [-48.36891953911967, -13.186405761290914],\n              [-48.22604233640374, -13.092582515524342],\n              [-48.16371689457307, -13.102470211214026],\n              [-48.17496689500223, -13.180780761076335],\n              [-48.07416733061015, -13.195392578039986],\n              [-48.002844085701895, -13.248939943363894],\n              [-47.93579452259729, -13.244457521317912],\n              [-47.85547347461139, -13.293500491938744],\n              [-47.681318194530405, -13.356056646668833],\n              [-47.65904890657151, -13.320263188272165],\n              [-47.72159407497307, -13.150612302894245],\n              [-47.64104231408774, -13.115082516382643],\n              [-47.55644758429821, -13.244457521317912],\n              [-47.440344064244215, -13.248939943363894],\n              [-47.292973453153735, -13.199896972743062],\n              [-47.09204449041076, -13.097064937570323],\n              [-46.971447561982245, -13.070302241236917],\n              [-46.82857035926628, -13.070302241236917],\n              [-46.75274271965495, -13.034750482068219],\n              [-46.6456479890071, -12.922931630146422],\n              [-46.59208963735463, -12.89186229302372],\n              [-46.43572122318653, -12.847103990535075],\n              [-46.30184182354819, -12.833832505653803],\n              [-46.234792260443555, -12.798039047257149],\n              [-46.087641375923965, -12.914142567311146],\n              [-46.0741501644718, -12.976698722041192],\n              [-46.150197530654054, -13.025741692662052],\n              [-46.18124489511965, -13.159621092300398],\n              [-46.176971213315994, -13.217672852327382],\n              [-46.08314796754942, -13.253444338066984],\n              [-46.09641945243072, -13.351552251965757],\n              [-46.18574928982272, -13.405099617289665],\n              [-46.270574732511704, -13.655082536981979],\n              [-46.26179665600495, -13.869491724848501],\n              [-46.22152077556231, -13.998866729783842],\n              [-46.17246681861292, -14.074914095966065],\n              [-46.12769752979574, -14.18203079927099],\n              [-46.03836769240368, -14.253354044179261],\n              [-46.01159400974177, -14.298112346667835],\n              [-45.92249488524911, -14.35168168464891],\n              [-45.96254005279235, -14.467763232045797],\n              [-45.96254005279235, -14.534604054908087],\n              [-45.91349708217152, -14.690983455404748],\n              [-45.93127296175584, -14.749013242774652],\n              [-46.02509620752241, -14.869401430960849],\n              [-46.078643572846346, -14.922948796284771],\n              [-46.19024269819727, -14.93644000773692],\n              [-46.297348415173644, -14.909677311403499],\n              [-46.31534402132888, -14.847121156673424],\n              [-46.38666726623714, -14.771293517062077],\n              [-46.51604227117241, -14.713241757035078],\n              [-46.58309183427701, -14.793573791349502],\n              [-46.556318151615045, -14.869401430960849],\n              [-46.57859842590247, -14.914181706106575],\n              [-46.547320348537454, -15.039052316338768],\n              [-46.63665018592948, -15.070319407375266],\n              [-46.7349668400706, -15.016772042051343],\n              [-46.833074753969356, -15.012267647348267],\n              [-46.89111552766781, -15.04803913308784],\n              [-46.93139140811047, -15.226698807871912],\n              [-46.89111552766781, -15.239970292753185],\n              [-46.85534404192825, -15.324806721770685],\n              [-46.93589580281355, -15.431901452418515],\n              [-46.93139140811047, -15.543500577769436],\n              [-46.868846239708944, -15.592763274961158],\n              [-46.833074753969356, -15.8427461946535],\n              [-46.86434184500584, -15.882802348525274],\n              [-47.07854229263009, -15.936349713849197],\n              [-47.127815976150345, -15.923078228967924],\n              [-47.230417298423646, -16.034677354318845],\n              [-47.301971256231354, -16.03918174902192],\n              [-47.359792303358915, -15.985612411040918],\n              [-47.35102521318072, -15.833737405247348],\n              [-47.30624493803501, -15.708647068444279],\n              [-47.30624493803501, -15.588280852915176],\n              [-47.41357038158225, -15.534733487591254],\n              [-47.422348458089004, -15.498940029194586],\n              [-47.76614363721936, -15.489953212445528],\n              [-48.18127304758653, -15.489953212445528],\n              [-48.23932480761354, -15.69087118885993],\n              [-48.203773048444845, -15.73543173743478],\n              [-48.279589701727645, -15.838241799950424],\n              [-48.234820412910466, -15.958849714707497],\n              [-48.252816019065676, -16.03017295961577],\n              [-48.18127304758653, -16.03918174902192],\n              [-47.85547347461139, -16.043664171067917],\n              [-47.301971256231354, -16.03918174902192],\n              [-47.33752301540002, -16.146276479669766],\n              [-47.32424054419022, -16.22660851398419],\n              [-47.35102521318072, -16.30241418093844],\n              [-47.431346261166595, -16.409750610814257],\n              [-47.45361554912549, -16.494345340603786],\n              [-47.404572578504656, -16.570392706786023],\n              [-47.26619977049177, -16.6597335305066],\n              [-47.15909405351539, -16.918483540377125],\n              [-47.15009625043777, -16.976513327747043],\n              [-47.230417298423646, -17.025797997595845],\n              [-47.2126414188393, -17.07484096821669],\n              [-47.310749332738084, -17.141901517649842],\n              [-47.422348458089004, -17.27127652258511],\n              [-47.45361554912549, -17.34710416219646],\n              [-47.49839582427123, -17.32932828261211],\n              [-47.52944318873682, -17.454198892844303],\n              [-47.458119943828564, -17.52574186432345],\n              [-47.40906598687917, -17.49897916799003],\n              [-47.28846905845066, -17.548022138610875],\n              [-47.27069317886631, -17.66863005336795],\n              [-47.328744938893294, -17.744457692979296],\n              [-47.35551862155526, -17.824767754636625],\n              [-47.34652081847764, -17.878315119960547],\n              [-47.27947125537304, -18.061479189447695],\n              [-47.31884625687508, -18.083298037936274],\n              [-47.44641950392909, -18.170595404547655],\n              [-47.786171714155245, -18.37940156485672],\n              [-47.92881820397179, -18.445319536121303],\n              [-48.01791732846439, -18.434530961490992],\n              [-48.226943215344335, -18.340246289925574],\n              [-48.95369983486478, -18.325854199532813],\n              [-49.10826649115165, -18.388388381605793],\n              [-49.17937000948905, -18.404823929107764],\n              [-49.24754017810517, -18.46850068934934],\n              [-49.33665028892631, -18.584823935974214],\n              [-49.41674062401276, -18.602819542129453],\n              [-49.48829458182047, -18.522048054673263],\n              [-49.55332266047296, -18.51011690187437],\n              [-49.611824859970255, -18.56682832981899],\n              [-49.67797354413426, -18.6001169053076],\n              [-49.788671790544555, -18.614530968357457],\n              [-49.96012443380371, -18.61633272623868],\n              [-50.093773120542636, -18.641293664690863],\n              [-50.24699944474713, -18.690116908740833],\n              [-50.36826653921685, -18.768647185174018],\n              [-50.457596376608876, -18.876642794762475],\n              [-50.49899286256303, -18.95315158674356],\n              [-50.48977533291455, -19.0204318627476],\n              [-50.53162225833901, -19.087030986381905],\n              [-50.57752313899624, -19.112233624062057],\n              [-50.641870065278994, -19.118517803989278],\n              [-50.71319331018725, -19.160595442313166],\n              [-50.791943313191325, -19.238444566376614],\n              [-50.84391963353346, -19.310888416796388],\n              [-50.868891558314175, -19.377487540430693],\n              [-50.87092402909482, -19.423849846886768],\n              [-50.86416743704021, -19.437802484137762],\n              [-50.88082271111307, -19.459181879484575],\n              [-50.92379024204902, -19.464125727329417],\n              [-50.96429683539111, -19.511366940069024]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 1497,\n        \"fill\": \"#fff\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-50.23484856537735, -9.842672723581373],\n              [-50.17521477404, -9.730172719289826],\n              [-50.08409416509528, -9.421918312999608],\n              [-49.97924064547044, -9.22009945764458],\n              [-49.82984854992782, -9.022103844622904],\n              [-49.707900303088365, -8.894970050710626],\n              [-49.61294546548177, -8.839181474363713],\n              [-49.50269765854176, -8.70866389125986],\n              [-49.378947653821115, -8.498297672297554],\n              [-49.28264149780355, -8.301422664787339],\n              [-49.22684193512808, -8.139418264076113],\n              [-49.189949843877, -7.994970016378346],\n              [-49.172393690863544, -7.867396769324316],\n              [-49.22031605597289, -7.752194128210874],\n              [-49.333947652104456, -7.649142366467331],\n              [-49.34047353125965, -7.510099392413281],\n              [-49.2396739668676, -7.334823506820669],\n              [-49.19512440462128, -7.168556410634423],\n              [-49.209747207913466, -7.005651130982585],\n              [-49.07947132403763, -6.856237062782895],\n              [-48.80541735850514, -6.71831469424032],\n              [-48.65287218667038, -6.595707267688226],\n              [-48.62204454877565, -6.488590564383287],\n              [-48.57996691045176, -6.414125229511413],\n              [-48.52732042406845, -6.3722673177584],\n              [-48.47061998245238, -6.353370832662506],\n              [-48.410096298502964, -6.357655500794763],\n              [-48.3911998134071, -6.308832256744807],\n              [-48.413699814265414, -6.207340553654447],\n              [-48.38984849499619, -6.141862035531645],\n              [-48.319415142699995, -6.112396702376316],\n              [-48.29669541527082, -6.067396700659771],\n              [-48.32121690058125, -6.006642303810906],\n              [-48.30704453675935, -5.965926970226505],\n              [-48.25439805037604, -5.945228727249429],\n              [-48.24540024729842, -5.888517299304809],\n              [-48.28004014119796, -5.795814659049739],\n              [-48.25867173217969, -5.723590535200856],\n              [-48.18127304758653, -5.672064654329048],\n              [-48.159223486198584, -5.619198441374863],\n              [-48.19274277458658, -5.565431349480036],\n              [-48.23144761004744, -5.533241406845832],\n              [-48.27531601992399, -5.522452832215549],\n              [-48.31717393167699, -5.486219920677129],\n              [-48.35699937264934, -5.424344918316791],\n              [-48.42156602550301, -5.398483100923954],\n              [-48.51111558946593, -5.408151070042777],\n              [-48.597523063465246, -5.398702827494787],\n              [-48.721492794756784, -5.355944036801247],\n              [-48.721492794756784, -5.355724310230372],\n              [-48.7219432342271, -5.355043157860635],\n              [-48.630591912382954, -5.330301945979329],\n              [-48.574341910237166, -5.28822430765544],\n              [-48.52349718173511, -5.220504578509647],\n              [-48.45824937651173, -5.180887877779639],\n              [-48.378148055096744, -5.169418150779563],\n              [-48.28162217250832, -5.189457214043955],\n              [-48.16889145531735, -5.240741395687863],\n              [-48.05954452731797, -5.263021669975288],\n              [-47.95311996271133, -5.256276064249221],\n              [-47.88449935462489, -5.285521670833603],\n              [-47.85389144330105, -5.350780462385529],\n              [-47.763221273826645, -5.407250191102179],\n              [-47.61246687354458, -5.454952829640604],\n              [-47.519994946188945, -5.506478710512454],\n              [-47.48579450543113, -5.561146681347864],\n              [-47.44484845894729, -5.749913778392497],\n              [-47.39714582040884, -6.072340548504613],\n              [-47.405473457445254, -6.42109056180837],\n              [-47.47049054976921, -6.795944091732892],\n              [-47.53708967340353, -7.027250252900274],\n              [-47.605721267818495, -7.11476734608253],\n              [-47.66534407282728, -7.16719410589495],\n              [-47.715969074758476, -7.184750258908423],\n              [-47.717089680269964, -7.22210377595826],\n              [-47.66894758858976, -7.279694110186497],\n              [-47.61179670750337, -7.301512958675062],\n              [-47.54586774991026, -7.287582294081119],\n              [-47.506943187878534, -7.305797626807262],\n              [-47.4950230214082, -7.356202902167524],\n              [-47.498395824271256, -7.449806421363292],\n              [-47.45811994382859, -7.534620877723682],\n              [-47.41357038158225, -7.530116483020592],\n              [-47.34652081847764, -7.659733187183832],\n              [-47.303542301213156, -7.66287527714745],\n              [-47.27947125537304, -7.731056432092103],\n              [-47.15009625043777, -7.856146768895158],\n              [-47.07854229263012, -7.976512984424289],\n              [-47.016216850799424, -8.04357353385734],\n              [-46.98494975976294, -8.03906913915435],\n              [-46.868846239708944, -7.958737104839884],\n              [-46.74374491657733, -7.922965619100353],\n              [-46.574094031199394, -7.905189739516004],\n              [-46.48926858851044, -7.963241499543003],\n              [-46.46699930055155, -8.070358202847899],\n              [-46.50277078629114, -8.172948538792639],\n              [-46.50727518099421, -8.27578057396542],\n              [-46.5430466667338, -8.320319149883176],\n              [-46.50277078629114, -8.396146789494537],\n              [-46.658919473888375, -8.396146789494537],\n              [-46.79301860009758, -8.436422669937187],\n              [-46.83756816234393, -8.485465640557948],\n              [-46.882117724590216, -8.583793281027681],\n              [-46.92239360503288, -8.744457349656443],\n              [-46.9046177254485, -8.829271806016934],\n              [-47.06527080774882, -8.976642417107428],\n              [-47.083046687333194, -9.03469417713444],\n              [-47.03849712508685, -9.065983240828018],\n              [-46.9401694846172, -9.070245936303124],\n              [-46.84656596542152, -9.168573576772772],\n              [-46.82857035926628, -9.306957371114194],\n              [-46.752742719654975, -9.409547707058948],\n              [-46.56082254631815, -9.498866558122458],\n              [-46.53404886365618, -9.556918318149457],\n              [-46.60086771386136, -9.650741563916029],\n              [-46.65014139738162, -9.664013048797287],\n              [-46.667917276965966, -9.74434508311171],\n              [-46.50727518099421, -9.855944208462631],\n              [-46.46249490584847, -9.949767454229232],\n              [-46.47149270892612, -10.003314819553111],\n              [-46.3466220986939, -10.168483282885049],\n              [-46.28406594396384, -10.186478889040274],\n              [-46.19024269819727, -10.177470099634036],\n              [-46.087641375923965, -10.208737190670604],\n              [-46.03409401060003, -10.271293345400693],\n              [-45.94477515953653, -10.315853893975543],\n              [-45.757117681674856, -10.329345105427691],\n              [-45.85994971684758, -10.467728899769114],\n              [-46.03836769240368, -10.570319235713882],\n              [-46.087641375923965, -10.583832419823125],\n              [-46.30184182354819, -10.757746000676136],\n              [-46.234792260443555, -10.8828583101363],\n              [-46.24829445822425, -10.914125401172797],\n              [-46.36889138665279, -10.967672766496719],\n              [-46.46249490584847, -11.177599532317288],\n              [-46.529544468953105, -11.235431565773396],\n              [-46.56982034939574, -11.315983326658738],\n              [-46.55182474324056, -11.378297782160814],\n              [-46.48926858851044, -11.414069267900388],\n              [-46.426943146679804, -11.498905696917888],\n              [-46.19024269819727, -11.543444272835643],\n              [-46.08314796754942, -11.601496032862656],\n              [-46.105417255508314, -11.66405218759273],\n              [-46.243790063521175, -11.726608342322805],\n              [-46.27506814088622, -11.766862250108375],\n              [-46.24829445822425, -11.842689889719722],\n              [-46.15896462083222, -11.83370307297065],\n              [-46.10092384713377, -11.864970164007147],\n              [-46.078643572846346, -11.927526318737222],\n              [-46.21252297248469, -11.998849563645479],\n              [-46.24829445822425, -12.048112260837215],\n              [-46.32412209783561, -12.092672809412065],\n              [-46.33762429561631, -12.128444295151638],\n              [-46.3466220986939, -12.342655729104393],\n              [-46.31534402132888, -12.42296579076168],\n              [-46.15896462083222, -12.50329782507616],\n              [-46.15896462083222, -12.601625465545808],\n              [-46.234792260443555, -12.713224590896743],\n              [-46.234792260443555, -12.798039047257149],\n              [-46.30184182354819, -12.833832505653803],\n              [-46.43572122318653, -12.847103990535075],\n              [-46.59208963735463, -12.89186229302372],\n              [-46.6456479890071, -12.922931630146422],\n              [-46.75274271965495, -13.034750482068219],\n              [-46.82857035926628, -13.070302241236917],\n              [-46.971447561982245, -13.070302241236917],\n              [-47.09204449041076, -13.097064937570323],\n              [-47.292973453153735, -13.199896972743062],\n              [-47.440344064244215, -13.248939943363894],\n              [-47.55644758429821, -13.244457521317912],\n              [-47.64104231408774, -13.115082516382643],\n              [-47.72159407497307, -13.150612302894245],\n              [-47.65904890657151, -13.320263188272165],\n              [-47.681318194530405, -13.356056646668833],\n              [-47.85547347461139, -13.293500491938744],\n              [-47.93579452259729, -13.244457521317912],\n              [-48.002844085701895, -13.248939943363894],\n              [-48.07416733061015, -13.195392578039986],\n              [-48.17496689500223, -13.180780761076335],\n              [-48.16371689457307, -13.102470211214026],\n              [-48.22604233640374, -13.092582515524342],\n              [-48.36891953911967, -13.186405761290914],\n              [-48.480518664470594, -13.195392578039986],\n              [-48.587624381447, -13.155116697597322],\n              [-48.65444323165218, -13.177396971884747],\n              [-48.685721309017225, -13.338280767084484],\n              [-48.73926867434113, -13.38281934300224],\n              [-48.77504016008072, -13.351552251965742],\n              [-48.76176867519945, -13.208664062921244],\n              [-48.766273069902525, -13.097064937570323],\n              [-48.80182482907122, -12.998978996328646],\n              [-48.797320434368146, -12.927414052192404],\n              [-48.824094117030086, -12.873866686868496],\n              [-48.92691516587428, -12.784547835805],\n              [-48.998249397111096, -12.748996076636303],\n              [-49.016245003266306, -12.65517283086973],\n              [-49.136622205123956, -12.735504865184154],\n              [-49.29749501399516, -13.003483391031722],\n              [-49.3598204558258, -13.132858395966991],\n              [-49.38232045668411, -13.248939943363894],\n              [-49.520693264697, -13.199896972743062],\n              [-49.68583975537183, -13.177396971884747],\n              [-49.91354240077675, -13.070302241236917],\n              [-49.97159416080376, -13.025741692662066],\n              [-50.05191520878964, -13.021237297958976],\n              [-50.23934197375189, -12.931918446895494],\n              [-50.270620051116936, -12.89186229302372],\n              [-50.27512444582001, -12.789052230508076],\n              [-50.19929680620865, -12.65517283086973],\n              [-50.2035704880123, -12.570358374509311],\n              [-50.13674065147859, -12.476513156085659],\n              [-50.16374504703998, -12.38765573082101],\n              [-50.29559197589765, -12.490026340194888],\n              [-50.3923485713855, -12.617138161450072],\n              [-50.48482049874116, -12.842599595831999],\n              [-50.56604242566766, -12.819638169174837],\n              [-50.613964790777004, -12.763388167029063],\n              [-50.65537226305969, -12.666862284440654],\n              [-50.66054682380397, -12.558207495139541],\n              [-50.629268746438925, -12.437379853811592],\n              [-50.631740670361324, -12.288646937981625],\n              [-50.667523142429445, -12.112030720306748],\n              [-50.67471918762584, -11.990082473467297],\n              [-50.653570505178465, -11.922340771664409],\n              [-50.66144770274457, -11.8535004370071],\n              [-50.717466991990904, -11.74910834318112],\n              [-50.66572138454822, -11.65190130822296],\n              [-50.67134638476281, -11.573832457588622],\n              [-50.716566113050305, -11.482689875986807],\n              [-50.708018749443, -11.345668386384844],\n              [-50.64524286814202, -11.162746016125666],\n              [-50.61037226134306, -11.000983314642411],\n              [-50.59912226091393, -10.689806544959453],\n              [-50.55074945633427, -10.567177145750264],\n              [-50.45467401321616, -10.388517470966192],\n              [-50.40269769287403, -10.25824158709031],\n              [-50.39527093477824, -10.176788947264384],\n              [-50.33744988765065, -10.034362184018732],\n              [-50.23484856537735, -9.842672723581373]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 44035,\n        \"fill\": \"#333\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-53.11619999365156, -22.639987664885183],\n              [-52.96072147209553, -22.454824083603015],\n              [-52.56607057813454, -22.207324074161647],\n              [-52.402495132441516, -22.069181979048096],\n              [-52.33881837219997, -21.957341154469304],\n              [-52.245665292474555, -21.84035872813176],\n              [-52.12259644012363, -21.718168782064367],\n              [-52.0649951195669, -21.622763504987418],\n              [-52.072641604233596, -21.554142896901],\n              [-52.047669679452866, -21.51094465306562],\n              [-51.989848632325305, -21.49363019928012],\n              [-51.95474731262692, -21.46954816711147],\n              [-51.936290280672836, -21.422746407513614],\n              [-51.87284423333068, -21.32982404068764],\n              [-51.856650385056696, -21.260082827089718],\n              [-51.86631835417552, -21.18267315616805],\n              [-51.81141967044064, -21.077138484173474],\n              [-51.69194334752365, -20.943720510334003],\n              [-51.61904905763356, -20.806918747302916],\n              [-51.593165267583686, -20.666513468509322],\n              [-51.53422361494461, -20.55761697998031],\n              [-51.39697141244321, -20.44175515915427],\n              [-51.16072140343098, -20.306513454776464],\n              [-51.06396480794314, -20.223039330498423],\n              [-50.99377315487493, -20.101552509457804],\n              [-50.58404901815143, -19.821203377669605],\n              [-50.4886437410745, -19.79081519291657],\n              [-50.43374505733965, -19.800263435464558],\n              [-50.36444329688351, -19.858556894719527],\n              [-49.37714589593983, -19.978483657106864],\n              [-49.2783678159999, -19.98703102071417],\n              [-49.2587901785343, -20.01695777966829],\n              [-49.28804677144723, -20.073647234955814],\n              [-49.28354237674415, -20.14857399562655],\n              [-49.23899281449786, -20.24553933135674],\n              [-49.19984852589528, -20.294362575406637],\n              [-49.166318251178666, -20.29504372777643],\n              [-49.11277088585473, -20.259272242036786],\n              [-49.03964588306525, -20.18726784475885],\n              [-48.99464588134862, -20.21359108795042],\n              [-48.977990607275785, -20.338241971611808],\n              [-48.95256824302476, -20.41002664231894],\n              [-48.91836780226697, -20.42914285398564],\n              [-48.886869998331065, -20.36997048844715],\n              [-48.85829455778787, -20.232729272274312],\n              [-48.81194323766033, -20.158923117115094],\n              [-48.71564806797133, -20.143849874352583],\n              [-48.36374497837542, -20.138224874138018],\n              [-48.25326645853599, -20.093005145850512],\n              [-48.178339697865255, -20.082875750932857],\n              [-48.10949936320796, -20.116625752220315],\n              [-48.05121689028155, -20.12022926798278],\n              [-47.991143645802424, -20.082875750932857],\n              [-47.9087901270359, -20.08175514542137],\n              [-47.861768640867155, -20.05565162880059],\n              [-47.86019759588535, -20.011991959166366],\n              [-47.81857039703178, -19.98072486812987],\n              [-47.74971907604595, -19.97712135236742],\n              [-47.695490558352276, -19.9910739896184],\n              [-47.655895830279405, -20.02280250645373],\n              [-47.59424055448994, -20.018517838321486],\n              [-47.51774274883738, -19.994216079582017],\n              [-47.45992170170979, -20.00098365796518],\n              [-47.427742745404146, -20.03629371790589],\n              [-47.328964665464184, -20.117526631160942],\n              [-47.244369935674655, -20.17399635987759],\n              [-47.23492169312672, -20.204362571973462],\n              [-47.26619977049177, -20.284694606287886],\n              [-47.29297345315376, -20.423078400629322],\n              [-47.2526975727111, -20.4766257659532],\n              [-47.15458965881231, -20.525668736574076],\n              [-47.109820369995106, -20.632763467221906],\n              [-47.212641418839326, -20.806918747302916],\n              [-47.22141949534603, -20.914013477950732],\n              [-47.14559185573469, -20.98107402738391],\n              [-47.1233225677758, -21.132949033177482],\n              [-47.0562730046712, -21.195263488679586],\n              [-46.99394756284053, -21.34265607242716],\n              [-47.00271465301876, -21.40070783245409],\n              [-46.895619922370884, -21.405190254500155],\n              [-46.81529887438501, -21.3606516785824],\n              [-46.685693156550315, -21.396203437751083],\n              [-46.65464579208472, -21.373923163463658],\n              [-46.60537210856444, -21.42747052878758],\n              [-46.50727518099421, -21.458737619824078],\n              [-46.49377298321352, -21.52579816925723],\n              [-46.56082254631815, -21.672949053776847],\n              [-46.60537210856444, -21.681957843183],\n              [-46.62787210942275, -21.771276694246495],\n              [-46.667917276965966, -21.811552574689145],\n              [-46.658919473888375, -21.90515609388484],\n              [-46.618874306345134, -21.98546615554217],\n              [-46.658919473888375, -22.052526704975335],\n              [-46.60086771386136, -22.13285873928976],\n              [-46.66342386859145, -22.204401710768877],\n              [-46.69919535433101, -22.320263531594932],\n              [-46.641143594304026, -22.40960435531551],\n              [-46.547320348537454, -22.440871446352006],\n              [-46.5430466667338, -22.472138537388503],\n              [-46.453716829341744, -22.516699085963353],\n              [-46.39566506931476, -22.615026726433],\n              [-46.47149270892612, -22.68206530320907],\n              [-46.36889138665279, -22.748906126071347],\n              [-46.35989358357517, -22.84272937183792],\n              [-46.288570338666915, -22.882763553052598],\n              [-46.15447121245768, -22.847233766540995],\n              [-46.14569313595095, -22.891772342458765],\n              [-46.02059181281933, -22.873996462874416],\n              [-45.90899268746841, -22.820449097550494],\n              [-45.85994971684758, -22.860505251422268],\n              [-45.79290015374298, -22.85171618858699],\n              [-45.743846196793584, -22.797949096692193],\n              [-45.743846196793584, -22.726625851783922],\n              [-45.801897956820596, -22.69984118279342],\n              [-45.672292238985904, -22.619531121136077],\n              [-45.629775147520235, -22.622673211099695],\n              [-45.58319311449327, -22.615026726433],\n              [-45.52964574916939, -22.65079821217256],\n              [-45.4709238231012, -22.611642937241413],\n              [-45.40904882074085, -22.646293817469484],\n              [-45.2706650263994, -22.60601793702685],\n              [-45.24389134373746, -22.56147936110908],\n              [-45.056244852204316, -22.467656115342507],\n              [-44.92236545256597, -22.449880235758172],\n              [-44.833046601502474, -22.405099960612404],\n              [-44.77072115967172, -22.423095566767586],\n              [-44.65012423124318, -22.561479361109093],\n              [-44.636622033462515, -22.6015135423238],\n              [-44.53852510589235, -22.619531121136106],\n              [-44.21699921472083, -22.592746452145548],\n              [-44.16794525777152, -22.69984118279342],\n              [-44.2482663057574, -22.74890612607129],\n              [-44.27503998841934, -22.820449097550522],\n              [-44.35986543110829, -22.85600085671922],\n              [-44.471464556459125, -22.851716188586977],\n              [-44.58756807651321, -22.878500857577478],\n              [-44.72594088452604, -22.936552617604434],\n              [-44.79749484233372, -22.99009998292837],\n              [-44.80627291884048, -23.13725086744796],\n              [-44.86432467886743, -23.204289444224003],\n              [-44.78287203904159, -23.35392323899464],\n              [-44.95162204547887, -23.38136708769781],\n              [-45.21531590319421, -23.575539458386174],\n              [-45.32534398356336, -23.59962149055474],\n              [-45.42322118456275, -23.68535879851288],\n              [-45.4333395931518, -23.758483801302418],\n              [-45.46439794394598, -23.802582924078365],\n              [-45.52717382524685, -23.8048241351014],\n              [-45.66464575431917, -23.764767981229625],\n              [-45.84307471620389, -23.763647375718108],\n              [-45.971999281668786, -23.795595619124356],\n              [-46.63079447281547, -24.110375904569707],\n              [-46.86727519472703, -24.236367120313503],\n              [-47.137275205026754, -24.49309564573184],\n              [-47.5922190700378, -24.781091262186806],\n              [-47.83117171587185, -24.953005331244754],\n              [-47.87662215705876, -24.997543907162594],\n              [-47.914195400679546, -24.999807090842637],\n              [-47.98912216135028, -25.035798303153058],\n              [-47.95941512896701, -25.065505335536272],\n              [-47.9083396875655, -25.068207972358152],\n              [-47.929499356341466, -25.16831539805196],\n              [-48.02444320761958, -25.236716279567474],\n              [-48.07754013347321, -25.29026364489144],\n              [-48.08766952839085, -25.28015622263088],\n              [-48.0919432101945, -25.23559567405603],\n              [-48.18576645596107, -25.19081539891029],\n              [-48.23054673110681, -25.012397423354116],\n              [-48.26609849027551, -25.034677697641598],\n              [-48.41346910136599, -24.958850058030265],\n              [-48.51179674183564, -25.08372066826246],\n              [-48.5653441071596, -25.056957971928966],\n              [-48.54284410630126, -24.81147944693977],\n              [-48.48929674097735, -24.74441889750662],\n              [-48.61439806410894, -24.681862742776545],\n              [-48.7795445547838, -24.695375926885774],\n              [-48.82859851173316, -24.66410883584922],\n              [-49.025023079773064, -24.668591257895272],\n              [-49.09207264287767, -24.68636713747962],\n              [-49.21694325310986, -24.690871532182697],\n              [-49.29749501399516, -24.66410883584929],\n              [-49.31076649887643, -24.530229436210945],\n              [-49.23944325396815, -24.418630310860024],\n              [-49.22594105618748, -24.338298276545572],\n              [-49.274995013136845, -24.315798275687285],\n              [-49.33754018153837, -24.21320793974253],\n              [-49.33304677316386, -24.14186272217718],\n              [-49.40909413934608, -24.083832934807262],\n              [-49.60102529901141, -23.86489737958054],\n              [-49.56974722164637, -23.833850015114933],\n              [-49.551971342062075, -23.71324210035783],\n              [-49.605518707385954, -23.641699128878713],\n              [-49.65457266433535, -23.507819729240353],\n              [-49.614296783892684, -23.409733787998675],\n              [-49.636796784751, -23.257858782205105],\n              [-49.73040030394668, -23.105983776411534],\n              [-49.909048992402205, -23.034638558846183],\n              [-49.91354240077675, -22.985595588225337],\n              [-49.958091963023065, -22.963315313937912],\n              [-49.97159416080376, -22.914052616746176],\n              [-50.12324944002643, -22.94081531307961],\n              [-50.29290032540439, -22.95432849718884],\n              [-50.368947691586584, -22.91405261674619],\n              [-50.43127313341722, -22.945319707782687],\n              [-50.62769770145712, -22.923039433495262],\n              [-50.72602534192677, -22.949824102485763],\n              [-50.78406611562522, -22.945319707782687],\n              [-50.88217402952398, -22.820449097550494],\n              [-51.00277095795252, -22.793664428559993],\n              [-51.181419646408045, -22.739897336665194],\n              [-51.35534421358966, -22.65079821217256],\n              [-51.54749509982585, -22.686349971341272],\n              [-51.641098619021534, -22.650798212172575],\n              [-51.69464598434547, -22.664069697053776],\n              [-51.743919667865725, -22.619531121136077],\n              [-51.873294672800995, -22.610522331729925],\n              [-51.984893798151916, -22.54796617699985],\n              [-52.06521484613779, -22.52120348066643],\n              [-52.14127319864856, -22.543483754953854],\n              [-52.16354248660744, -22.601513542323772],\n              [-52.21708985193136, -22.641789422766422],\n              [-52.26165040050621, -22.601513542323772],\n              [-52.315197765830135, -22.619531121136077],\n              [-52.44479249733628, -22.601513542323772],\n              [-52.52062013694763, -22.615026726433],\n              [-52.6144433827142, -22.57046617785815],\n              [-52.69477541702862, -22.601513542323772],\n              [-52.94924075876696, -22.570466177858123],\n              [-53.044415322944445, -22.636406121779814],\n              [-53.11619999365156, -22.639987664885183]\n            ]\n          ],\n          [\n            [\n              [-45.24906590448171, -23.782543860813973],\n              [-45.233091782778615, -23.825302651507627],\n              [-45.25019749632173, -23.852966226781632],\n              [-45.26031590491078, -23.889199138320066],\n              [-45.260997057280576, -23.94140617156154],\n              [-45.30262425613421, -23.914841229141985],\n              [-45.41287206307413, -23.934880292406433],\n              [-45.4513461856356, -23.895505290904396],\n              [-45.30239354323476, -23.72765616340763],\n              [-45.27224705770976, -23.7519579221472],\n              [-45.24906590448171, -23.782543860813973]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 6850,\n        \"fill\": \"#999\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-48.7219432342271, -5.355043157860635],\n              [-48.730490597834375, -5.338168157216899],\n              [-48.25281601906562, -4.954327810543248],\n              [-47.80191512295892, -4.597030433632256],\n              [-47.65454451186838, -4.606017250381342],\n              [-47.58322126696021, -4.547965490354329],\n              [-47.48939802119361, -4.423094880122107],\n              [-47.45811994382859, -4.338280423761717],\n              [-47.38229230421723, -4.275724269031571],\n              [-47.333018620696976, -4.164125143680735],\n              [-47.310749332738055, -4.065797503211058],\n              [-47.28846905845063, -4.079288714663221],\n              [-47.06527080774873, -3.842599252509217],\n              [-47.02499492730607, -3.59712072751995],\n              [-47.0294993220092, -3.570358031186515],\n              [-46.96694316727911, -3.525797482611608],\n              [-46.94467387932019, -3.396202751105534],\n              [-46.859848436631296, -3.329142201672369],\n              [-46.82429667746254, -3.329142201672369],\n              [-46.74374491657733, -3.190780379988041],\n              [-46.667917276965966, -3.092672466089311],\n              [-46.63665018592951, -2.985577735441382],\n              [-46.65014139738162, -2.91401279130514],\n              [-46.574094031199365, -2.847193941099988],\n              [-46.667917276965966, -2.739879483881225],\n              [-46.600867713861305, -2.664051844269977],\n              [-46.50727518099421, -2.614986900991994],\n              [-46.48499490670673, -2.547948324215952],\n              [-46.426943146679776, -2.512396565047197],\n              [-46.43572122318653, -2.409564529874501],\n              [-46.40894754052454, -2.387306228244199],\n              [-46.41344094889905, -2.239913644496539],\n              [-46.37766946315952, -2.253426828605825],\n              [-46.27957253558924, -2.141827703254933],\n              [-46.212522972484635, -1.927396542731231],\n              [-46.21701638085926, -1.807030327202142],\n              [-46.30184182354816, -1.802525932499123],\n              [-46.31534402132888, -1.73098296101989],\n              [-46.24379006352109, -1.722193898184685],\n              [-46.1992405012748, -1.677413623038944],\n              [-46.18124489511962, -1.574823287094205],\n              [-46.1992405012748, -1.485504436030624],\n              [-46.12319313509255, -1.34712064168923],\n              [-46.15896462083214, -1.315853550652776],\n              [-46.14119972757641, -1.240025911041414],\n              [-46.00708961503864, -1.146861844987484],\n              [-45.972219008239676, -1.187379424658161],\n              [-45.778716803592545, -1.250814485671697],\n              [-45.644848390282675, -1.347801794059023],\n              [-45.55686987130156, -1.330707066844354],\n              [-45.45854223083194, -1.35634915766633],\n              [-45.353018545165924, -1.567396528998415],\n              [-45.329167225896754, -1.717250050339828],\n              [-45.28214573972798, -1.696551807362709],\n              [-45.238497056422204, -1.629491257929601],\n              [-45.18201634137711, -1.507103557948312],\n              [-45.076272929140146, -1.466366251706802],\n              [-45.02586765377987, -1.513387737875576],\n              [-44.91967380207268, -1.588775924345214],\n              [-44.82832248022851, -1.671568896253461],\n              [-44.78984835766704, -1.724896535006508],\n              [-44.72121676325213, -1.733443898613814],\n              [-44.778598357237854, -1.798922416736616],\n              [-44.72099703668124, -1.792396537581453],\n              [-44.651244836754756, -1.74581450455446],\n              [-44.59162203174594, -1.841900934001103],\n              [-44.5468417566002, -1.946293027827096],\n              [-44.537843953522554, -2.052728578762299],\n              [-44.57992159184653, -2.113922428752971],\n              [-44.61727510889642, -2.152176824743435],\n              [-44.658671594850546, -2.22754303855595],\n              [-44.707494838900516, -2.241056222665179],\n              [-44.75631808295054, -2.265577707975638],\n              [-44.700749233174406, -2.320465405381867],\n              [-44.66249483718394, -2.373353590993133],\n              [-44.5790207129059, -2.23046540194872],\n              [-44.520298786837714, -2.190431220734013],\n              [-44.43547334414876, -2.168150946446588],\n              [-44.3913742213727, -2.269620676879811],\n              [-44.38191499249626, -2.365465407098554],\n              [-44.52006807393826, -2.405521560970271],\n              [-44.520749226308, -2.481349200581633],\n              [-44.56191499936267, -2.524327717846177],\n              [-44.58891939492406, -2.57337068846698],\n              [-44.6107492297412, -2.676861903352346],\n              [-44.63887423081417, -2.762599211310487],\n              [-44.721447476151525, -3.142396589079851],\n              [-44.723018521133326, -3.204733017238993],\n              [-44.62266939621156, -3.137892194376775],\n              [-44.43749482860085, -2.944400976058205],\n              [-44.38124482645509, -2.738297452570919],\n              [-44.30811982366555, -2.535116292476459],\n              [-44.2286996546203, -2.47121980566402],\n              [-44.17941498477143, -2.47121980566402],\n              [-44.10561981594083, -2.493500079951446],\n              [-44.1013461341372, -2.560099203585764],\n              [-44.112596134566274, -2.598573326147118],\n              [-44.191565864141296, -2.699603603438618],\n              [-44.22509613885791, -2.754952726643808],\n              [-44.192697455981374, -2.809620697479147],\n              [-44.013147888585195, -2.642232995781399],\n              [-43.93281585427076, -2.583500083384649],\n              [-43.864414972755185, -2.595431236183515],\n              [-43.728525074993286, -2.51824129183268],\n              [-43.455141275502, -2.502047443558695],\n              [-43.43467374542439, -2.413629471435797],\n              [-43.379994788260376, -2.376056227815013],\n              [-43.22969082744868, -2.385943923504726],\n              [-42.93674037682035, -2.465155352307647],\n              [-42.83234828299436, -2.529491292261866],\n              [-42.67596888249773, -2.589564536741022],\n              [-42.593615363731146, -2.661129480877207],\n              [-42.24958947170137, -2.792064544465745],\n              [-41.99984825123698, -2.806017181716754],\n              [-41.876098246516335, -2.746625089607392],\n              [-41.84617148756223, -2.758775968977091],\n              [-41.86889121499141, -2.851698335803107],\n              [-41.8153438496675, -2.936293065592636],\n              [-41.84211753232944, -3.034620706062299],\n              [-41.92244956664388, -3.110448345673632],\n              [-42.00277061462975, -3.231056260430719],\n              [-42.105371936903055, -3.262323351467202],\n              [-42.10086754219998, -3.302379505338976],\n              [-42.216971062253975, -3.431974236845122],\n              [-42.364341673344484, -3.44975011642947],\n              [-42.45367151073651, -3.476512812762891],\n              [-42.502714481357344, -3.44975011642947],\n              [-42.57426843916505, -3.570358031186515],\n              [-42.62781580448896, -3.614896607104313],\n              [-42.676869761438354, -3.699733036121813],\n              [-42.66336756365766, -3.789051887185309],\n              [-42.73492152146537, -3.922931286823655],\n              [-42.851025041519335, -4.039012834220557],\n              [-42.891070209062576, -4.141844869393296],\n              [-42.989397849532224, -4.239952783292068],\n              [-42.953615377464104, -4.391827789085639],\n              [-42.89557460376568, -4.405099273966925],\n              [-42.86429652640061, -4.498922519733469],\n              [-42.91357020992086, -4.637306314074863],\n              [-42.94912196908956, -4.659564615705236],\n              [-42.93134608950521, -4.731129559841463],\n              [-42.953615377464104, -4.775668135759233],\n              [-42.90457240684327, -4.829215501083155],\n              [-42.85551844989391, -4.936332204388066],\n              [-42.83301844903556, -5.097194026930723],\n              [-42.80624476637365, -5.159530455089907],\n              [-42.83301844903556, -5.311405460883492],\n              [-42.91357020992086, -5.391715522540821],\n              [-43.04744960955921, -5.597137893658314],\n              [-43.100996974883174, -5.623922562648772],\n              [-43.083221095298796, -5.713241413712311],\n              [-43.109994777960765, -5.771293173739309],\n              [-43.07422329222118, -6.057047579171225],\n              [-43.0026693344135, -6.12386642937642],\n              [-42.962624166870256, -6.186422584106495],\n              [-42.851025041519335, -6.253483133539646],\n              [-42.86878993477515, -6.436405503798838],\n              [-42.85551844989391, -6.480944079716608],\n              [-42.91357020992086, -6.615043205925815],\n              [-42.917843891724516, -6.668590571249737],\n              [-42.98040004645463, -6.744418210861056],\n              [-43.13227505224819, -6.780189696600658],\n              [-43.19909390245337, -6.753427000267237],\n              [-43.30191495129759, -6.802469970888012],\n              [-43.46256803359785, -6.842745851330733],\n              [-43.560895674067524, -6.753427000267266],\n              [-43.67676848122207, -6.699879634943329],\n              [-43.81537200213438, -6.708646725121511],\n              [-43.95374481014727, -6.762194090445348],\n              [-44.03857025283622, -6.766698485148481],\n              [-44.060839540795115, -6.829254639878584],\n              [-44.09211761816013, -6.806974365591159],\n              [-44.163440863068445, -6.887306399905583],\n              [-44.16794525777152, -6.923077885645114],\n              [-44.25727509516352, -7.007892342005576],\n              [-44.30631806578435, -7.110504650607368],\n              [-44.44919526850032, -7.146276136347012],\n              [-44.57857027343559, -7.248866472291766],\n              [-44.712669399644824, -7.396237083382246],\n              [-44.815270721918125, -7.364969992345763],\n              [-44.909093967684726, -7.445302026660158],\n              [-45.0249667748393, -7.494344997281019],\n              [-45.2974496953899, -7.556901152011108],\n              [-45.47159398914238, -7.673004672065105],\n              [-45.542917234050634, -7.869418253776431],\n              [-45.578699706118755, -8.15066826450527],\n              [-45.654516359401555, -8.253280573107133],\n              [-45.65902075410463, -8.311332333134118],\n              [-45.73484839371599, -8.431918275234068],\n              [-45.7528439998712, -8.561293280169366],\n              [-45.819673836404945, -8.699896801081678],\n              [-45.92676856705276, -8.788995925574284],\n              [-45.98054664527612, -8.927599446486596],\n              [-45.94027076483346, -9.012194176276125],\n              [-45.93576637013041, -9.119530606151898],\n              [-45.9044992790939, -9.177582366178939],\n              [-45.8957212025872, -9.32921567274451],\n              [-45.828671639482536, -9.373995947890265],\n              [-45.79739356211752, -9.463095072382885],\n              [-45.837669442560156, -9.534638043862032],\n              [-45.85994971684758, -9.833663934175206],\n              [-45.85994971684758, -9.99883239750713],\n              [-45.89999488439082, -10.02559509384055],\n              [-45.89999488439082, -10.083646853867549],\n              [-45.95354224971473, -10.181974494337197],\n              [-45.93576637013041, -10.213241585373623],\n              [-45.94477515953653, -10.315853893975543],\n              [-46.03409401060003, -10.271293345400693],\n              [-46.087641375923965, -10.208737190670604],\n              [-46.19024269819727, -10.177470099634036],\n              [-46.28406594396384, -10.186478889040274],\n              [-46.3466220986939, -10.168483282885049],\n              [-46.47149270892612, -10.003314819553111],\n              [-46.46249490584847, -9.949767454229232],\n              [-46.50727518099421, -9.855944208462631],\n              [-46.667917276965966, -9.74434508311171],\n              [-46.65014139738162, -9.664013048797287],\n              [-46.60086771386136, -9.650741563916029],\n              [-46.53404886365618, -9.556918318149457],\n              [-46.56082254631815, -9.498866558122458],\n              [-46.752742719654975, -9.409547707058948],\n              [-46.82857035926628, -9.306957371114194],\n              [-46.84656596542152, -9.168573576772772],\n              [-46.9401694846172, -9.070245936303124],\n              [-47.03849712508685, -9.065983240828018],\n              [-47.083046687333194, -9.03469417713444],\n              [-47.06527080774882, -8.976642417107428],\n              [-46.9046177254485, -8.829271806016934],\n              [-46.92239360503288, -8.744457349656443],\n              [-46.882117724590216, -8.583793281027681],\n              [-46.83756816234393, -8.485465640557948],\n              [-46.79301860009758, -8.436422669937187],\n              [-46.658919473888375, -8.396146789494537],\n              [-46.50277078629114, -8.396146789494537],\n              [-46.5430466667338, -8.320319149883176],\n              [-46.50727518099421, -8.27578057396542],\n              [-46.50277078629114, -8.172948538792639],\n              [-46.46699930055155, -8.070358202847899],\n              [-46.48926858851044, -7.963241499543003],\n              [-46.574094031199394, -7.905189739516004],\n              [-46.74374491657733, -7.922965619100353],\n              [-46.868846239708944, -7.958737104839884],\n              [-46.98494975976294, -8.03906913915435],\n              [-47.016216850799424, -8.04357353385734],\n              [-47.07854229263012, -7.976512984424289],\n              [-47.15009625043777, -7.856146768895158],\n              [-47.27947125537304, -7.731056432092103],\n              [-47.303542301213156, -7.66287527714745],\n              [-47.34652081847764, -7.659733187183832],\n              [-47.41357038158225, -7.530116483020592],\n              [-47.45811994382859, -7.534620877723682],\n              [-47.498395824271256, -7.449806421363292],\n              [-47.4950230214082, -7.356202902167524],\n              [-47.506943187878534, -7.305797626807262],\n              [-47.54586774991026, -7.287582294081119],\n              [-47.61179670750337, -7.301512958675062],\n              [-47.66894758858976, -7.279694110186497],\n              [-47.717089680269964, -7.22210377595826],\n              [-47.715969074758476, -7.184750258908423],\n              [-47.66534407282728, -7.16719410589495],\n              [-47.605721267818495, -7.11476734608253],\n              [-47.53708967340353, -7.027250252900274],\n              [-47.47049054976921, -6.795944091732892],\n              [-47.405473457445254, -6.42109056180837],\n              [-47.39714582040884, -6.072340548504613],\n              [-47.44484845894729, -5.749913778392497],\n              [-47.48579450543113, -5.561146681347864],\n              [-47.519994946188945, -5.506478710512454],\n              [-47.61246687354458, -5.454952829640604],\n              [-47.763221273826645, -5.407250191102179],\n              [-47.85389144330105, -5.350780462385529],\n              [-47.88449935462489, -5.285521670833603],\n              [-47.95311996271133, -5.256276064249221],\n              [-48.05954452731797, -5.263021669975288],\n              [-48.16889145531735, -5.240741395687863],\n              [-48.28162217250832, -5.189457214043955],\n              [-48.378148055096744, -5.169418150779563],\n              [-48.45824937651173, -5.180887877779639],\n              [-48.52349718173511, -5.220504578509647],\n              [-48.574341910237166, -5.28822430765544],\n              [-48.630591912382954, -5.330301945979329],\n              [-48.7219432342271, -5.355043157860635]\n            ]\n          ],\n          [\n            [\n              [-44.56529878855429, -2.923922459651919],\n              [-44.581943076298614, -2.845611909789682],\n              [-44.569122030887684, -2.784879485597855],\n              [-44.50184175488363, -2.726146573201106],\n              [-44.48137422480602, -2.717599209593914],\n              [-44.48721895159139, -2.789823333442769],\n              [-44.48249483031742, -2.811861908502237],\n              [-44.4993698309612, -2.939676854784238],\n              [-44.59769747143082, -3.037543069454955],\n              [-44.56529878855429, -2.923922459651919]\n            ]\n          ],\n          [\n            [\n              [-45.01124485048763, -1.34463773143824],\n              [-44.99549045535548, -1.347582067488133],\n              [-44.97861545471176, -1.267250033173696],\n              [-44.88839572470755, -1.276918002292462],\n              [-44.88299045106396, -1.317875035104862],\n              [-44.94711765077574, -1.366017126785096],\n              [-44.96781589375291, -1.39078031132351],\n              [-45.02092380593501, -1.372323279369425],\n              [-45.01124485048763, -1.34463773143824]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 16461,\n        \"fill\": \"#666\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-44.78287203904159, -23.35392323899464],\n              [-44.86432467886743, -23.204289444224003],\n              [-44.80627291884048, -23.13725086744796],\n              [-44.79749484233372, -22.99009998292837],\n              [-44.72594088452604, -22.936552617604434],\n              [-44.58756807651321, -22.878500857577478],\n              [-44.471464556459125, -22.851716188586977],\n              [-44.35986543110829, -22.85600085671922],\n              [-44.27503998841934, -22.820449097550522],\n              [-44.2482663057574, -22.74890612607129],\n              [-44.16794525777152, -22.69984118279342],\n              [-44.21699921472083, -22.592746452145548],\n              [-44.53852510589235, -22.619531121136106],\n              [-44.636622033462515, -22.6015135423238],\n              [-44.65012423124318, -22.561479361109093],\n              [-44.77072115967172, -22.423095566767586],\n              [-44.833046601502474, -22.405099960612404],\n              [-44.73044527922917, -22.360539412037582],\n              [-44.66339571612457, -22.369548201443706],\n              [-44.6010702742939, -22.316000836119827],\n              [-44.53402071118927, -22.302487652010583],\n              [-44.44469087379724, -22.25344468138975],\n              [-44.29304658090311, -22.23995346993759],\n              [-44.21699921472086, -22.24894028668666],\n              [-44.09211761816013, -22.173112647075314],\n              [-43.89569305012026, -22.106074070299258],\n              [-43.81537200213438, -22.065798189856594],\n              [-43.56516935587115, -22.065798189856594],\n              [-43.46256803359785, -22.05703109967841],\n              [-43.341971105169364, -22.00348373435446],\n              [-43.13227505224819, -22.02574203598482],\n              [-43.06342373126233, -22.063556978833603],\n              [-42.27951623065553, -21.71322493421951],\n              [-42.28402062535858, -21.641901689311226],\n              [-42.36884606804756, -21.632892899905073],\n              [-42.364341673344484, -21.592617019462423],\n              [-42.30179650494293, -21.48552228881458],\n              [-42.29729211023985, -21.405190254500155],\n              [-42.22146447062852, -21.338151677724113],\n              [-42.18141930308528, -21.16399639764309],\n              [-42.096593860396325, -21.003354301671337],\n              [-42.14114342264264, -20.963298147799563],\n              [-42.096593860396325, -20.923022267356913],\n              [-41.99826621992668, -20.932031056763066],\n              [-41.96249473418709, -20.90975078247564],\n              [-41.92694297501842, -20.82919902159034],\n              [-41.864397806616864, -20.77565165626642],\n              [-41.74378989185979, -20.820431931412145],\n              [-41.71252280082331, -20.97656963268082],\n              [-41.73051840697852, -21.043630182113986],\n              [-41.71252280082331, -21.110449032319167],\n              [-41.44027059317207, -21.199767883382663],\n              [-41.39121663622271, -21.186496398501404],\n              [-41.26611531309109, -21.231056947076254],\n              [-41.06969074505122, -21.213281067491906],\n              [-40.9675398622482, -21.27559552299401],\n              [-41.0471907441929, -21.505781078649875],\n              [-41.02311969835273, -21.596901687594595],\n              [-41.021548653370985, -21.610854324845604],\n              [-40.98779865208343, -21.92022933664731],\n              [-41.00039997092358, -21.99897933965144],\n              [-41.122567944333866, -22.08447494838157],\n              [-41.58291708298856, -22.243556985700025],\n              [-41.70554648219775, -22.309694683535497],\n              [-41.98049034034233, -22.580595572775735],\n              [-41.997596053885445, -22.644733758816187],\n              [-41.98611534055692, -22.735854367760908],\n              [-41.940895612269344, -22.788281127573384],\n              [-41.98746665896783, -22.845190309431814],\n              [-42.04236534270268, -22.94712146566394],\n              [-42.12246666411761, -22.94081531307961],\n              [-42.58102503121967, -22.94105701230751],\n              [-42.829195206702195, -22.973224982284705],\n              [-42.95833949873804, -22.967138556271266],\n              [-43.01617153219422, -22.942617070960807],\n              [-43.08119961084668, -22.902582889746157],\n              [-43.10076626198372, -22.850156129933737],\n              [-43.065445215714476, -22.77072497455987],\n              [-43.08637417159093, -22.723242062592306],\n              [-43.15432461363616, -22.725263547044392],\n              [-43.2290206614075, -22.747543821331874],\n              [-43.241841706818434, -22.795026733299437],\n              [-43.23666714607418, -22.82877673458694],\n              [-43.20877285790067, -22.878039431778575],\n              [-43.1936996151382, -22.93857410205652],\n              [-43.224065827234085, -22.991220588439887],\n              [-43.36941495387242, -22.997966194165997],\n              [-43.53277067299456, -23.04634998507413],\n              [-43.73662199913031, -23.06660877490941],\n              [-43.898846126412366, -23.101479381708486],\n              [-43.9737728870831, -23.057380258932426],\n              [-43.898846126412366, -23.035319711215834],\n              [-43.7915206828651, -23.04588855927534],\n              [-43.67586760228147, -23.009457893823082],\n              [-43.70287199784286, -22.966237677330582],\n              [-43.86621673063638, -22.910449100983726],\n              [-44.04756805591387, -22.944638555412894],\n              [-44.14791718083558, -23.01101795247638],\n              [-44.367973341573816, -23.004953499120006],\n              [-44.63729219950375, -23.05557850105123],\n              [-44.68117159570886, -23.106862682695066],\n              [-44.67374483761307, -23.206552627904102],\n              [-44.621098351229705, -23.22859120296357],\n              [-44.56979219692886, -23.274052630479048],\n              [-44.619065880449114, -23.3163499953738],\n              [-44.66721895845785, -23.335246480469664],\n              [-44.78287203904159, -23.35392323899464]\n            ]\n          ],\n          [\n            [\n              [-44.15579437840165, -23.166496474032442],\n              [-44.220591744154774, -23.190798232771897],\n              [-44.32003999013591, -23.212397354689585],\n              [-44.360096144007684, -23.17212147424692],\n              [-44.27415009580727, -23.116332897900065],\n              [-44.2428720184422, -23.07401356034819],\n              [-44.220372017583884, -23.0830223497544],\n              [-44.191565864141296, -23.113168835279282],\n              [-44.1292404223106, -23.141974988721927],\n              [-44.09797333127415, -23.1694188374251],\n              [-44.15579437840165, -23.166496474032442]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 3195,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-45.757117681674856, -10.329345105427691],\n              [-45.94477515953653, -10.315853893975543],\n              [-45.93576637013041, -10.213241585373623],\n              [-45.95354224971473, -10.181974494337197],\n              [-45.89999488439082, -10.083646853867549],\n              [-45.89999488439082, -10.02559509384055],\n              [-45.85994971684758, -9.99883239750713],\n              [-45.85994971684758, -9.833663934175206],\n              [-45.837669442560156, -9.534638043862032],\n              [-45.79739356211752, -9.463095072382885],\n              [-45.828671639482536, -9.373995947890265],\n              [-45.8957212025872, -9.32921567274451],\n              [-45.9044992790939, -9.177582366178939],\n              [-45.93576637013041, -9.119530606151898],\n              [-45.94027076483346, -9.012194176276125],\n              [-45.98054664527612, -8.927599446486596],\n              [-45.92676856705276, -8.788995925574284],\n              [-45.819673836404945, -8.699896801081678],\n              [-45.7528439998712, -8.561293280169366],\n              [-45.73484839371599, -8.431918275234068],\n              [-45.65902075410463, -8.311332333134118],\n              [-45.654516359401555, -8.253280573107133],\n              [-45.578699706118755, -8.15066826450527],\n              [-45.542917234050634, -7.869418253776431],\n              [-45.47159398914238, -7.673004672065105],\n              [-45.2974496953899, -7.556901152011108],\n              [-45.0249667748393, -7.494344997281019],\n              [-44.909093967684726, -7.445302026660158],\n              [-44.815270721918125, -7.364969992345763],\n              [-44.712669399644824, -7.396237083382246],\n              [-44.57857027343559, -7.248866472291766],\n              [-44.44919526850032, -7.146276136347012],\n              [-44.30631806578435, -7.110504650607368],\n              [-44.25727509516352, -7.007892342005576],\n              [-44.16794525777152, -6.923077885645114],\n              [-44.163440863068445, -6.887306399905583],\n              [-44.09211761816013, -6.806974365591159],\n              [-44.060839540795115, -6.829254639878584],\n              [-44.03857025283622, -6.766698485148481],\n              [-43.95374481014727, -6.762194090445348],\n              [-43.81537200213438, -6.708646725121511],\n              [-43.67676848122207, -6.699879634943329],\n              [-43.560895674067524, -6.753427000267266],\n              [-43.46256803359785, -6.842745851330733],\n              [-43.30191495129759, -6.802469970888012],\n              [-43.19909390245337, -6.753427000267237],\n              [-43.13227505224819, -6.780189696600658],\n              [-42.98040004645463, -6.744418210861056],\n              [-42.917843891724516, -6.668590571249737],\n              [-42.91357020992086, -6.615043205925815],\n              [-42.85551844989391, -6.480944079716608],\n              [-42.86878993477515, -6.436405503798838],\n              [-42.851025041519335, -6.253483133539646],\n              [-42.962624166870256, -6.186422584106495],\n              [-43.0026693344135, -6.12386642937642],\n              [-43.07422329222118, -6.057047579171225],\n              [-43.109994777960765, -5.771293173739309],\n              [-43.083221095298796, -5.713241413712311],\n              [-43.100996974883174, -5.623922562648772],\n              [-43.04744960955921, -5.597137893658314],\n              [-42.91357020992086, -5.391715522540821],\n              [-42.83301844903556, -5.311405460883492],\n              [-42.80624476637365, -5.159530455089907],\n              [-42.83301844903556, -5.097194026930723],\n              [-42.85551844989391, -4.936332204388066],\n              [-42.90457240684327, -4.829215501083155],\n              [-42.953615377464104, -4.775668135759233],\n              [-42.93134608950521, -4.731129559841463],\n              [-42.94912196908956, -4.659564615705236],\n              [-42.91357020992086, -4.637306314074863],\n              [-42.86429652640061, -4.498922519733469],\n              [-42.89557460376568, -4.405099273966925],\n              [-42.953615377464104, -4.391827789085639],\n              [-42.989397849532224, -4.239952783292068],\n              [-42.891070209062576, -4.141844869393296],\n              [-42.851025041519335, -4.039012834220557],\n              [-42.73492152146537, -3.922931286823655],\n              [-42.66336756365766, -3.789051887185309],\n              [-42.676869761438354, -3.699733036121813],\n              [-42.62781580448896, -3.614896607104313],\n              [-42.57426843916505, -3.570358031186515],\n              [-42.502714481357344, -3.44975011642947],\n              [-42.45367151073651, -3.476512812762891],\n              [-42.364341673344484, -3.44975011642947],\n              [-42.216971062253975, -3.431974236845122],\n              [-42.10086754219998, -3.302379505338976],\n              [-42.105371936903055, -3.262323351467202],\n              [-42.00277061462975, -3.231056260430719],\n              [-41.92244956664388, -3.110448345673632],\n              [-41.84211753232944, -3.034620706062299],\n              [-41.8153438496675, -2.936293065592636],\n              [-41.86889121499141, -2.851698335803107],\n              [-41.84617148756223, -2.758775968977091],\n              [-41.72197104337121, -2.808939545109496],\n              [-41.640067964075, -2.878702731364498],\n              [-41.479865321245, -2.916495701556187],\n              [-41.31832234633262, -2.936293065592636],\n              [-41.26859822334205, -2.916056248414421],\n              [-41.25711751001347, -3.079181254637149],\n              [-41.37771443844201, -3.271332140873369],\n              [-41.42676839539138, -3.320375111494201],\n              [-41.44926839624969, -3.436478631548212],\n              [-41.38221883314509, -3.592616332816888],\n              [-41.35544515048312, -3.708719852870885],\n              [-41.28389119267544, -3.811332161472734],\n              [-41.230343827351504, -4.043517228923633],\n              [-41.18128987040211, -4.123849263238057],\n              [-41.11874470200058, -4.177396628561979],\n              [-41.074195139754295, -4.324767239652473],\n              [-41.1412447028589, -4.427379548254322],\n              [-41.23484822205458, -4.539198400176133],\n              [-41.2438460251322, -4.615026039787466],\n              [-41.22607014554785, -4.726625165138387],\n              [-41.18128987040211, -4.811439621498806],\n              [-41.185794265105216, -4.914051930100655],\n              [-41.12324909670366, -5.007875175867227],\n              [-41.11447102019693, -5.065926935894225],\n              [-41.0606929419736, -5.168517271838979],\n              [-41.06969074505122, -5.306901066180416],\n              [-41.0251411828049, -5.364952826207414],\n              [-40.94909381662268, -5.418500191531322],\n              [-40.917815739257634, -5.60164228836139],\n              [-40.92232013396071, -5.681974322675813],\n              [-40.891042056595666, -5.905172573377655],\n              [-40.891042056595666, -6.012267304025499],\n              [-40.80621661390671, -6.253483133539646],\n              [-40.79744952372852, -6.378353743771839],\n              [-40.770664854738015, -6.494457263825836],\n              [-40.72139117121776, -6.570262930780089],\n              [-40.70811968633649, -6.659603754500665],\n              [-40.614296440569916, -6.708646725121511],\n              [-40.48041704093157, -6.735431394112013],\n              [-40.41787187253004, -6.81147876029425],\n              [-40.440141160488906, -6.905082279489932],\n              [-40.511695118296615, -7.0033879473025],\n              [-40.58301836320487, -7.195319106967844],\n              [-40.53396440625551, -7.324694111903099],\n              [-40.53846880095858, -7.391754661336265],\n              [-40.64557451793496, -7.400741478085337],\n              [-40.69034380675214, -7.427526147075838],\n              [-40.69034380675214, -7.512340603436257],\n              [-40.61878984894446, -7.637233186325531],\n              [-40.659065729387095, -7.762323523128586],\n              [-40.547466604036174, -7.833646768036857],\n              [-40.52947099788096, -7.905189739516004],\n              [-40.54297319566166, -8.030082322405278],\n              [-40.59201616628249, -8.12390556817185],\n              [-40.74839556677915, -8.244491510271843],\n              [-40.833221009468105, -8.36487969845804],\n              [-40.88676837479201, -8.351608213576768],\n              [-40.92232013396071, -8.43191827523411],\n              [-41.01614337972728, -8.418646790352838],\n              [-41.083192942831886, -8.525741521000683],\n              [-41.15902058244325, -8.548021795288108],\n              [-41.212567947767155, -8.632858224305608],\n              [-41.36871663536442, -8.713168285962922],\n              [-41.39999471272944, -8.784733230099178],\n              [-41.46704427583404, -8.865043291756422],\n              [-41.498322353199114, -8.936366536664764],\n              [-41.55637411322607, -8.972138022404351],\n              [-41.60992147855001, -8.96315120565528],\n              [-41.73479208878217, -8.981146811810504],\n              [-41.73479208878217, -9.132802091033199],\n              [-41.79734824351226, -9.173077971475848],\n              [-41.85089560883617, -9.253388033133191],\n              [-41.9179451719408, -9.213112152690485],\n              [-42.04304649507242, -9.208849457215422],\n              [-42.15014122572023, -9.293444187004965],\n              [-42.31079430802055, -9.306957371114194],\n              [-42.43139123644909, -9.409547707058962],\n              [-42.48944299647607, -9.498866558122458],\n              [-42.57426843916505, -9.485595073241143],\n              [-42.61881800141134, -9.56592710755561],\n              [-42.75269740104969, -9.521146832409883],\n              [-42.851025041519335, -9.547931501400399],\n              [-42.93134608950521, -9.516862164277654],\n              [-42.936971089719805, -9.474345072812028],\n              [-43.02944301707544, -9.436332376049464],\n              [-43.04294521485613, -9.39627622217769],\n              [-43.127770657545085, -9.373995947890265],\n              [-43.185822417572126, -9.418556496465044],\n              [-43.377742590908895, -9.414052101762039],\n              [-43.414865395059394, -9.33552182532884],\n              [-43.449296548716575, -9.302452976411118],\n              [-43.53839567320921, -9.360504736438116],\n              [-43.60544523631381, -9.338224462150691],\n              [-43.65899260163772, -9.364987158484112],\n              [-43.69477507370584, -9.445319192798536],\n              [-43.810867607431305, -9.427543313214187],\n              [-43.828643487015654, -9.498866558122458],\n              [-43.78409392476934, -9.56592710755561],\n              [-43.72604216474235, -9.748849477814815],\n              [-43.681272875925174, -9.802396843138695],\n              [-43.71253996696166, -9.949767454229203],\n              [-43.70354216388404, -10.034603883246703],\n              [-43.75281584740429, -10.106146854725807],\n              [-43.76159392391105, -10.168483282885063],\n              [-43.801869804353714, -10.20425476862465],\n              [-43.91346892970461, -10.43195741402954],\n              [-43.99378997769048, -10.454215715659814],\n              [-44.1188913008221, -10.58809511529823],\n              [-44.21699921472086, -10.62837099574088],\n              [-44.31082246048746, -10.60160829940746],\n              [-44.417917191135274, -10.58809511529823],\n              [-44.53852510589235, -10.628370995740852],\n              [-44.61884615387825, -10.686422755767879],\n              [-44.64561983654019, -10.73546572638871],\n              [-44.752714567188036, -10.784750396237527],\n              [-44.78399264455311, -10.85607364114577],\n              [-44.851042207657684, -10.878353915433223],\n              [-44.93137424197212, -10.860578035848874],\n              [-45.04297336732304, -10.896349521588448],\n              [-45.315214588645745, -10.780246001534408],\n              [-45.44031591177733, -10.619362206334714],\n              [-45.47159398914238, -10.485504779353462],\n              [-45.516143551388666, -10.414181534445163],\n              [-45.605473388780695, -10.333849500130768],\n              [-45.757117681674856, -10.329345105427691]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 20734,\n        \"fill\": \"#666\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-50.99377315487493, -20.101552509457804],\n              [-50.99759639720824, -19.66392309823233],\n              [-50.96429683539111, -19.511366940069024],\n              [-50.92379024204902, -19.464125727329417],\n              [-50.88082271111307, -19.459181879484575],\n              [-50.86416743704021, -19.437802484137762],\n              [-50.87092402909482, -19.423849846886768],\n              [-50.868891558314175, -19.377487540430693],\n              [-50.84391963353346, -19.310888416796388],\n              [-50.791943313191325, -19.238444566376614],\n              [-50.71319331018725, -19.160595442313166],\n              [-50.641870065278994, -19.118517803989278],\n              [-50.57752313899624, -19.112233624062057],\n              [-50.53162225833901, -19.087030986381905],\n              [-50.48977533291455, -19.0204318627476],\n              [-50.49899286256303, -18.95315158674356],\n              [-50.457596376608876, -18.876642794762475],\n              [-50.36826653921685, -18.768647185174018],\n              [-50.24699944474713, -18.690116908740833],\n              [-50.093773120542636, -18.641293664690863],\n              [-49.96012443380371, -18.61633272623868],\n              [-49.788671790544555, -18.614530968357457],\n              [-49.67797354413426, -18.6001169053076],\n              [-49.611824859970255, -18.56682832981899],\n              [-49.55332266047296, -18.51011690187437],\n              [-49.48829458182047, -18.522048054673263],\n              [-49.41674062401276, -18.602819542129453],\n              [-49.33665028892631, -18.584823935974214],\n              [-49.24754017810517, -18.46850068934934],\n              [-49.17937000948905, -18.404823929107764],\n              [-49.10826649115165, -18.388388381605793],\n              [-48.95369983486478, -18.325854199532813],\n              [-48.226943215344335, -18.340246289925574],\n              [-48.01791732846439, -18.434530961490992],\n              [-47.92881820397179, -18.445319536121303],\n              [-47.786171714155245, -18.37940156485672],\n              [-47.44641950392909, -18.170595404547655],\n              [-47.31884625687508, -18.083298037936274],\n              [-47.27947125537304, -18.061479189447695],\n              [-47.34652081847764, -17.878315119960547],\n              [-47.35551862155526, -17.824767754636625],\n              [-47.328744938893294, -17.744457692979296],\n              [-47.27069317886631, -17.66863005336795],\n              [-47.28846905845066, -17.548022138610875],\n              [-47.40906598687917, -17.49897916799003],\n              [-47.458119943828564, -17.52574186432345],\n              [-47.52944318873682, -17.454198892844303],\n              [-47.49839582427123, -17.32932828261211],\n              [-47.45361554912549, -17.34710416219646],\n              [-47.422348458089004, -17.27127652258511],\n              [-47.310749332738084, -17.141901517649842],\n              [-47.2126414188393, -17.07484096821669],\n              [-47.230417298423646, -17.025797997595845],\n              [-47.15009625043777, -16.976513327747043],\n              [-47.15909405351539, -16.918483540377125],\n              [-47.26619977049177, -16.6597335305066],\n              [-47.404572578504656, -16.570392706786023],\n              [-47.45361554912549, -16.494345340603786],\n              [-47.431346261166595, -16.409750610814257],\n              [-47.35102521318072, -16.30241418093844],\n              [-47.32424054419022, -16.22660851398419],\n              [-47.33752301540002, -16.146276479669766],\n              [-47.301971256231354, -16.03918174902192],\n              [-47.230417298423646, -16.034677354318845],\n              [-47.127815976150345, -15.923078228967924],\n              [-47.07854229263009, -15.936349713849197],\n              [-46.86434184500584, -15.882802348525274],\n              [-46.833074753969356, -15.8427461946535],\n              [-46.868846239708944, -15.592763274961158],\n              [-46.93139140811047, -15.543500577769436],\n              [-46.93589580281355, -15.431901452418515],\n              [-46.85534404192825, -15.324806721770685],\n              [-46.89111552766781, -15.239970292753185],\n              [-46.93139140811047, -15.226698807871912],\n              [-46.89111552766781, -15.04803913308784],\n              [-46.833074753969356, -15.012267647348267],\n              [-46.7349668400706, -15.016772042051343],\n              [-46.63665018592948, -15.070319407375266],\n              [-46.547320348537454, -15.039052316338768],\n              [-46.57859842590247, -14.914181706106575],\n              [-46.556318151615045, -14.869401430960849],\n              [-46.58309183427701, -14.793573791349502],\n              [-46.51604227117241, -14.713241757035078],\n              [-46.38666726623714, -14.771293517062077],\n              [-46.31534402132888, -14.847121156673424],\n              [-46.297348415173644, -14.909677311403499],\n              [-46.19024269819727, -14.93644000773692],\n              [-46.078643572846346, -14.922948796284771],\n              [-46.02509620752241, -14.869401430960849],\n              [-45.97604225057307, -14.985504951014832],\n              [-46.0741501644718, -15.248979082159337],\n              [-45.967044447495425, -15.186422927429248],\n              [-45.92676856705276, -15.128371167402264],\n              [-45.766115484752476, -15.146147046986613],\n              [-45.71256811942854, -15.123866772699188],\n              [-45.654516359401555, -15.043556711041788],\n              [-45.55191503712825, -14.93644000773692],\n              [-45.46259618606476, -14.940944402439996],\n              [-45.31971898334879, -14.856129946079577],\n              [-45.22589573758222, -14.74002642602558],\n              [-45.10102512735003, -14.717746151738154],\n              [-44.88232028502273, -14.597138236981039],\n              [-44.83754000987699, -14.516828175323752],\n              [-44.56079439385124, -14.347177289945833],\n              [-44.35986543110829, -14.271349650334457],\n              [-44.31982026356505, -14.244345254773094],\n              [-44.21249482001778, -14.240082559297988],\n              [-44.15894745469387, -14.271349650334486],\n              [-43.83764129009327, -14.315888226252241],\n              [-43.781391287947486, -14.342892621813633],\n              [-43.80006804647246, -14.369897017375024],\n              [-43.8608224433213, -14.534362355680116],\n              [-43.87949920184627, -14.624604058341333],\n              [-43.86441497275521, -14.659694391711156],\n              [-43.82415007864111, -14.695246150879854],\n              [-43.708046558587114, -14.735522031322503],\n              [-43.49384611096289, -14.789069396646426],\n              [-43.449296548716575, -14.780082579897353],\n              [-43.38674039398654, -14.699750545582901],\n              [-43.230371979818415, -14.63741411742373],\n              [-42.953615377464104, -14.677470271295505],\n              [-42.891070209062576, -14.749013242774652],\n              [-42.63232019919204, -14.940944402439996],\n              [-42.578542120968706, -14.931957585690924],\n              [-42.43139123644909, -15.034547921635692],\n              [-42.261740351071154, -15.106090893114839],\n              [-42.1769149083822, -15.106090893114839],\n              [-42.087596057318706, -15.181918532726186],\n              [-41.940214459899664, -15.172931715977143],\n              [-41.801841651886804, -15.110595287817915],\n              [-41.3599495451862, -15.494457607148604],\n              [-41.333164876195724, -15.717655857850389],\n              [-41.15902058244325, -15.780190039923411],\n              [-41.02964557750798, -15.73543173743478],\n              [-40.944820134819025, -15.673095309275581],\n              [-40.891042056595666, -15.69537558356302],\n              [-40.82871661476503, -15.681862399453777],\n              [-40.761667051660396, -15.739914159480776],\n              [-40.667843805893824, -15.717655857850431],\n              [-40.57424028669814, -15.757931738293095],\n              [-40.53396440625551, -15.797965919507703],\n              [-40.47592363255703, -15.77570761787743],\n              [-40.328542035138014, -15.824750588498276],\n              [-40.234949502270865, -15.8202461937952],\n              [-40.16789993916623, -15.896293559977423],\n              [-40.13211746709811, -15.891789165274304],\n              [-40.00274246216287, -15.994401473876223],\n              [-39.93569289905824, -15.998905868579271],\n              [-39.86436965414998, -16.110504993930192],\n              [-39.940197293761315, -16.31142297034461],\n              [-40.05628982748678, -16.396237426705014],\n              [-40.13211746709811, -16.503354130009953],\n              [-40.13662186180122, -16.543630010452603],\n              [-40.25271439552665, -16.565888312082905],\n              [-40.27499466981408, -16.614953255360874],\n              [-40.2839924728917, -16.74454798686702],\n              [-40.24371659244903, -16.833647111359625],\n              [-40.29749467067239, -16.87842738650535],\n              [-40.47141923785398, -16.869418597099184],\n              [-40.52496660317789, -16.931974751829273],\n              [-40.57424028669814, -17.13289272824369],\n              [-40.56524248362052, -17.26226773317896],\n              [-40.60551836406319, -17.311332676456885],\n              [-40.60979204586684, -17.391862464685104],\n              [-40.49819292051592, -17.418647133675606],\n              [-40.48041704093157, -17.557030928017028],\n              [-40.41336747782697, -17.557030928017028],\n              [-40.382320113361345, -17.623849778222223],\n              [-40.2839924728917, -17.717673023988795],\n              [-40.208164833280364, -17.766715994609626],\n              [-40.1858955453215, -17.816000664458443],\n              [-40.23044510756779, -17.918591000403126],\n              [-40.208164833280364, -17.976642760430195],\n              [-40.21694290978709, -17.97213836572712],\n              [-40.42686967560766, -17.89182830406979],\n              [-40.47592363255703, -17.927599789809364],\n              [-40.53396440625551, -17.900595394247972],\n              [-40.667843805893824, -17.95436248614277],\n              [-40.72589556592084, -17.945375669393698],\n              [-40.788440734322364, -17.97213836572712],\n              [-40.90904864907944, -17.97213836572712],\n              [-40.77516924944109, -18.092746280484192],\n              [-40.7661714463635, -18.137306829059042],\n              [-40.83749469127176, -18.15079804051119],\n              [-40.91354205745398, -18.10151337066239],\n              [-41.01614337972728, -18.173078314798616],\n              [-41.0606929419736, -18.177582709501706],\n              [-41.1412447028589, -18.29794892503081],\n              [-41.1277425050782, -18.333720410770383],\n              [-41.0251411828049, -18.40526338224953],\n              [-41.002641181946586, -18.454328325527456],\n              [-41.02964557750798, -18.637250695786648],\n              [-40.926824528663786, -18.695302455813646],\n              [-40.93131793703833, -18.806901581164553],\n              [-41.091971019338644, -18.829401582022868],\n              [-41.19479206818281, -18.806901581164553],\n              [-41.23484822205458, -18.851681856310293],\n              [-41.163524977146324, -18.905229221634215],\n              [-41.10547321711931, -18.887233615478976],\n              [-41.0251411828049, -18.981056861245563],\n              [-41.05191486546687, -19.03460422656947],\n              [-40.944820134819025, -19.14620335192039],\n              [-40.926824528663786, -19.293573963010886],\n              [-40.9580916197003, -19.472233637794957],\n              [-41.04742145709233, -19.489987544722226],\n              [-41.02964557750798, -19.548039304749224],\n              [-41.15902058244325, -19.659638430100145],\n              [-41.185794265105216, -19.865082773874718],\n              [-41.30639119353373, -19.954401624938214],\n              [-41.36444295356074, -20.186366965818237],\n              [-41.404499107432514, -20.21315163480874],\n              [-41.71701620919785, -20.208647240105662],\n              [-41.85540000353927, -20.369531035305386],\n              [-41.79734824351226, -20.4275827953324],\n              [-41.79734824351226, -20.53467752598023],\n              [-41.85089560883617, -20.623996377043724],\n              [-41.81083945496442, -20.64627665133115],\n              [-41.88217368620121, -20.75787577668207],\n              [-41.864397806616864, -20.77565165626642],\n              [-41.92694297501842, -20.82919902159034],\n              [-41.96249473418709, -20.90975078247564],\n              [-41.99826621992668, -20.932031056763066],\n              [-42.096593860396325, -20.923022267356913],\n              [-42.14114342264264, -20.963298147799563],\n              [-42.096593860396325, -21.003354301671337],\n              [-42.18141930308528, -21.16399639764309],\n              [-42.22146447062852, -21.338151677724113],\n              [-42.29729211023985, -21.405190254500155],\n              [-42.30179650494293, -21.48552228881458],\n              [-42.364341673344484, -21.592617019462423],\n              [-42.36884606804756, -21.632892899905073],\n              [-42.28402062535858, -21.641901689311226],\n              [-42.27951623065553, -21.71322493421951],\n              [-43.06342373126233, -22.063556978833603],\n              [-43.13227505224819, -22.02574203598482],\n              [-43.341971105169364, -22.00348373435446],\n              [-43.46256803359785, -22.05703109967841],\n              [-43.56516935587115, -22.065798189856594],\n              [-43.81537200213438, -22.065798189856594],\n              [-43.89569305012026, -22.106074070299258],\n              [-44.09211761816013, -22.173112647075314],\n              [-44.21699921472086, -22.24894028668666],\n              [-44.29304658090311, -22.23995346993759],\n              [-44.44469087379724, -22.25344468138975],\n              [-44.53402071118927, -22.302487652010583],\n              [-44.6010702742939, -22.316000836119827],\n              [-44.66339571612457, -22.369548201443706],\n              [-44.73044527922917, -22.360539412037582],\n              [-44.833046601502474, -22.405099960612404],\n              [-44.92236545256597, -22.449880235758172],\n              [-45.056244852204316, -22.467656115342507],\n              [-45.24389134373746, -22.56147936110908],\n              [-45.2706650263994, -22.60601793702685],\n              [-45.40904882074085, -22.646293817469484],\n              [-45.4709238231012, -22.611642937241413],\n              [-45.52964574916939, -22.65079821217256],\n              [-45.58319311449327, -22.615026726433],\n              [-45.629775147520235, -22.622673211099695],\n              [-45.672292238985904, -22.619531121136077],\n              [-45.801897956820596, -22.69984118279342],\n              [-45.743846196793584, -22.726625851783922],\n              [-45.743846196793584, -22.797949096692193],\n              [-45.79290015374298, -22.85171618858699],\n              [-45.85994971684758, -22.860505251422268],\n              [-45.90899268746841, -22.820449097550494],\n              [-46.02059181281933, -22.873996462874416],\n              [-46.14569313595095, -22.891772342458765],\n              [-46.15447121245768, -22.847233766540995],\n              [-46.288570338666915, -22.882763553052598],\n              [-46.35989358357517, -22.84272937183792],\n              [-46.36889138665279, -22.748906126071347],\n              [-46.47149270892612, -22.68206530320907],\n              [-46.39566506931476, -22.615026726433],\n              [-46.453716829341744, -22.516699085963353],\n              [-46.5430466667338, -22.472138537388503],\n              [-46.547320348537454, -22.440871446352006],\n              [-46.641143594304026, -22.40960435531551],\n              [-46.69919535433101, -22.320263531594932],\n              [-46.66342386859145, -22.204401710768877],\n              [-46.60086771386136, -22.13285873928976],\n              [-46.658919473888375, -22.052526704975335],\n              [-46.618874306345134, -21.98546615554217],\n              [-46.658919473888375, -21.90515609388484],\n              [-46.667917276965966, -21.811552574689145],\n              [-46.62787210942275, -21.771276694246495],\n              [-46.60537210856444, -21.681957843183],\n              [-46.56082254631815, -21.672949053776847],\n              [-46.49377298321352, -21.52579816925723],\n              [-46.50727518099421, -21.458737619824078],\n              [-46.60537210856444, -21.42747052878758],\n              [-46.65464579208472, -21.373923163463658],\n              [-46.685693156550315, -21.396203437751083],\n              [-46.81529887438501, -21.3606516785824],\n              [-46.895619922370884, -21.405190254500155],\n              [-47.00271465301876, -21.40070783245409],\n              [-46.99394756284053, -21.34265607242716],\n              [-47.0562730046712, -21.195263488679586],\n              [-47.1233225677758, -21.132949033177482],\n              [-47.14559185573469, -20.98107402738391],\n              [-47.22141949534603, -20.914013477950732],\n              [-47.212641418839326, -20.806918747302916],\n              [-47.109820369995106, -20.632763467221906],\n              [-47.15458965881231, -20.525668736574076],\n              [-47.2526975727111, -20.4766257659532],\n              [-47.29297345315376, -20.423078400629322],\n              [-47.26619977049177, -20.284694606287886],\n              [-47.23492169312672, -20.204362571973462],\n              [-47.244369935674655, -20.17399635987759],\n              [-47.328964665464184, -20.117526631160942],\n              [-47.427742745404146, -20.03629371790589],\n              [-47.45992170170979, -20.00098365796518],\n              [-47.51774274883738, -19.994216079582017],\n              [-47.59424055448994, -20.018517838321486],\n              [-47.655895830279405, -20.02280250645373],\n              [-47.695490558352276, -19.9910739896184],\n              [-47.74971907604595, -19.97712135236742],\n              [-47.81857039703178, -19.98072486812987],\n              [-47.86019759588535, -20.011991959166366],\n              [-47.861768640867155, -20.05565162880059],\n              [-47.9087901270359, -20.08175514542137],\n              [-47.991143645802424, -20.082875750932857],\n              [-48.05121689028155, -20.12022926798278],\n              [-48.10949936320796, -20.116625752220315],\n              [-48.178339697865255, -20.082875750932857],\n              [-48.25326645853599, -20.093005145850512],\n              [-48.36374497837542, -20.138224874138018],\n              [-48.71564806797133, -20.143849874352583],\n              [-48.81194323766033, -20.158923117115094],\n              [-48.85829455778787, -20.232729272274312],\n              [-48.886869998331065, -20.36997048844715],\n              [-48.91836780226697, -20.42914285398564],\n              [-48.95256824302476, -20.41002664231894],\n              [-48.977990607275785, -20.338241971611808],\n              [-48.99464588134862, -20.21359108795042],\n              [-49.03964588306525, -20.18726784475885],\n              [-49.11277088585473, -20.259272242036786],\n              [-49.166318251178666, -20.29504372777643],\n              [-49.19984852589528, -20.294362575406637],\n              [-49.23899281449786, -20.24553933135674],\n              [-49.28354237674415, -20.14857399562655],\n              [-49.28804677144723, -20.073647234955814],\n              [-49.2587901785343, -20.01695777966829],\n              [-49.2783678159999, -19.98703102071417],\n              [-49.37714589593983, -19.978483657106864],\n              [-50.36444329688351, -19.858556894719527],\n              [-50.43374505733965, -19.800263435464558],\n              [-50.4886437410745, -19.79081519291657],\n              [-50.58404901815143, -19.821203377669605],\n              [-50.99377315487493, -20.101552509457804]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 3885,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-40.9675398622482, -21.27559552299401],\n              [-41.06969074505122, -21.213281067491906],\n              [-41.26611531309109, -21.231056947076254],\n              [-41.39121663622271, -21.186496398501404],\n              [-41.44027059317207, -21.199767883382663],\n              [-41.71252280082331, -21.110449032319167],\n              [-41.73051840697852, -21.043630182113986],\n              [-41.71252280082331, -20.97656963268082],\n              [-41.74378989185979, -20.820431931412145],\n              [-41.864397806616864, -20.77565165626642],\n              [-41.88217368620121, -20.75787577668207],\n              [-41.81083945496442, -20.64627665133115],\n              [-41.85089560883617, -20.623996377043724],\n              [-41.79734824351226, -20.53467752598023],\n              [-41.79734824351226, -20.4275827953324],\n              [-41.85540000353927, -20.369531035305386],\n              [-41.71701620919785, -20.208647240105662],\n              [-41.404499107432514, -20.21315163480874],\n              [-41.36444295356074, -20.186366965818237],\n              [-41.30639119353373, -19.954401624938214],\n              [-41.185794265105216, -19.865082773874718],\n              [-41.15902058244325, -19.659638430100145],\n              [-41.02964557750798, -19.548039304749224],\n              [-41.04742145709233, -19.489987544722226],\n              [-40.9580916197003, -19.472233637794957],\n              [-40.926824528663786, -19.293573963010886],\n              [-40.944820134819025, -19.14620335192039],\n              [-41.05191486546687, -19.03460422656947],\n              [-41.0251411828049, -18.981056861245563],\n              [-41.10547321711931, -18.887233615478976],\n              [-41.163524977146324, -18.905229221634215],\n              [-41.23484822205458, -18.851681856310293],\n              [-41.19479206818281, -18.806901581164553],\n              [-41.091971019338644, -18.829401582022868],\n              [-40.93131793703833, -18.806901581164553],\n              [-40.926824528663786, -18.695302455813646],\n              [-41.02964557750798, -18.637250695786648],\n              [-41.002641181946586, -18.454328325527456],\n              [-41.0251411828049, -18.40526338224953],\n              [-41.1277425050782, -18.333720410770383],\n              [-41.1412447028589, -18.29794892503081],\n              [-41.0606929419736, -18.177582709501706],\n              [-41.01614337972728, -18.173078314798616],\n              [-40.91354205745398, -18.10151337066239],\n              [-40.83749469127176, -18.15079804051119],\n              [-40.7661714463635, -18.137306829059042],\n              [-40.77516924944109, -18.092746280484192],\n              [-40.90904864907944, -17.97213836572712],\n              [-40.788440734322364, -17.97213836572712],\n              [-40.72589556592084, -17.945375669393698],\n              [-40.667843805893824, -17.95436248614277],\n              [-40.53396440625551, -17.900595394247972],\n              [-40.47592363255703, -17.927599789809364],\n              [-40.42686967560766, -17.89182830406979],\n              [-40.21694290978709, -17.97213836572712],\n              [-40.208164833280364, -17.976642760430195],\n              [-40.1858955453215, -18.007931824123773],\n              [-39.672449480813185, -18.32473359402131],\n              [-39.667714373210686, -18.325854199532813],\n              [-39.73971877048868, -18.639953332608485],\n              [-39.74197096784022, -18.846056856095714],\n              [-39.69989332951633, -19.27781956787865],\n              [-39.73139113345226, -19.453996332411762],\n              [-39.78336745379437, -19.571681883776108],\n              [-39.84479201668441, -19.649069582040724],\n              [-40.00139114375193, -19.74199194886667],\n              [-40.14179642254547, -19.96835426218921],\n              [-40.202770545965194, -20.20594460328381],\n              [-40.298845989083304, -20.29258279018255],\n              [-40.31864335311977, -20.42578103745116],\n              [-40.39604203771293, -20.56954813277919],\n              [-40.59652056098557, -20.783737594074864],\n              [-40.727016171432325, -20.846074022234063],\n              [-40.78934161326299, -20.906147266713177],\n              [-40.82871661476503, -21.031237603516246],\n              [-40.95449909026638, -21.23780255280232],\n              [-40.9675398622482, -21.27559552299401]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 15126,\n        \"fill\": \"#666\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-46.02509620752241, -14.869401430960849],\n              [-45.93127296175584, -14.749013242774652],\n              [-45.91349708217152, -14.690983455404748],\n              [-45.96254005279235, -14.534604054908087],\n              [-45.96254005279235, -14.467763232045797],\n              [-45.92249488524911, -14.35168168464891],\n              [-46.01159400974177, -14.298112346667835],\n              [-46.03836769240368, -14.253354044179261],\n              [-46.12769752979574, -14.18203079927099],\n              [-46.17246681861292, -14.074914095966065],\n              [-46.22152077556231, -13.998866729783842],\n              [-46.26179665600495, -13.869491724848501],\n              [-46.270574732511704, -13.655082536981979],\n              [-46.18574928982272, -13.405099617289665],\n              [-46.09641945243072, -13.351552251965757],\n              [-46.08314796754942, -13.253444338066984],\n              [-46.176971213315994, -13.217672852327382],\n              [-46.18124489511965, -13.159621092300398],\n              [-46.150197530654054, -13.025741692662052],\n              [-46.0741501644718, -12.976698722041192],\n              [-46.087641375923965, -12.914142567311146],\n              [-46.234792260443555, -12.798039047257149],\n              [-46.234792260443555, -12.713224590896743],\n              [-46.15896462083222, -12.601625465545808],\n              [-46.15896462083222, -12.50329782507616],\n              [-46.31534402132888, -12.42296579076168],\n              [-46.3466220986939, -12.342655729104393],\n              [-46.33762429561631, -12.128444295151638],\n              [-46.32412209783561, -12.092672809412065],\n              [-46.24829445822425, -12.048112260837215],\n              [-46.21252297248469, -11.998849563645479],\n              [-46.078643572846346, -11.927526318737222],\n              [-46.10092384713377, -11.864970164007147],\n              [-46.15896462083222, -11.83370307297065],\n              [-46.24829445822425, -11.842689889719722],\n              [-46.27506814088622, -11.766862250108375],\n              [-46.243790063521175, -11.726608342322805],\n              [-46.105417255508314, -11.66405218759273],\n              [-46.08314796754942, -11.601496032862656],\n              [-46.19024269819727, -11.543444272835643],\n              [-46.426943146679804, -11.498905696917888],\n              [-46.48926858851044, -11.414069267900388],\n              [-46.55182474324056, -11.378297782160814],\n              [-46.56982034939574, -11.315983326658738],\n              [-46.529544468953105, -11.235431565773396],\n              [-46.46249490584847, -11.177599532317288],\n              [-46.36889138665279, -10.967672766496719],\n              [-46.24829445822425, -10.914125401172797],\n              [-46.234792260443555, -10.8828583101363],\n              [-46.30184182354819, -10.757746000676136],\n              [-46.087641375923965, -10.583832419823125],\n              [-46.03836769240368, -10.570319235713882],\n              [-45.85994971684758, -10.467728899769114],\n              [-45.757117681674856, -10.329345105427691],\n              [-45.605473388780695, -10.333849500130768],\n              [-45.516143551388666, -10.414181534445163],\n              [-45.47159398914238, -10.485504779353462],\n              [-45.44031591177733, -10.619362206334714],\n              [-45.315214588645745, -10.780246001534408],\n              [-45.04297336732304, -10.896349521588448],\n              [-44.93137424197212, -10.860578035848874],\n              [-44.851042207657684, -10.878353915433223],\n              [-44.78399264455311, -10.85607364114577],\n              [-44.752714567188036, -10.784750396237527],\n              [-44.64561983654019, -10.73546572638871],\n              [-44.61884615387825, -10.686422755767879],\n              [-44.53852510589235, -10.628370995740852],\n              [-44.417917191135274, -10.58809511529823],\n              [-44.31082246048746, -10.60160829940746],\n              [-44.21699921472086, -10.62837099574088],\n              [-44.1188913008221, -10.58809511529823],\n              [-43.99378997769048, -10.454215715659814],\n              [-43.91346892970461, -10.43195741402954],\n              [-43.801869804353714, -10.20425476862465],\n              [-43.76159392391105, -10.168483282885063],\n              [-43.75281584740429, -10.106146854725807],\n              [-43.70354216388404, -10.034603883246703],\n              [-43.71253996696166, -9.949767454229203],\n              [-43.681272875925174, -9.802396843138695],\n              [-43.72604216474235, -9.748849477814815],\n              [-43.78409392476934, -9.56592710755561],\n              [-43.828643487015654, -9.498866558122458],\n              [-43.810867607431305, -9.427543313214187],\n              [-43.69477507370584, -9.445319192798536],\n              [-43.65899260163772, -9.364987158484112],\n              [-43.60544523631381, -9.338224462150691],\n              [-43.53839567320921, -9.360504736438116],\n              [-43.449296548716575, -9.302452976411118],\n              [-43.414865395059394, -9.33552182532884],\n              [-43.377742590908895, -9.414052101762039],\n              [-43.185822417572126, -9.418556496465044],\n              [-43.127770657545085, -9.373995947890265],\n              [-43.04294521485613, -9.39627622217769],\n              [-43.02944301707544, -9.436332376049464],\n              [-42.936971089719805, -9.474345072812028],\n              [-42.93134608950521, -9.516862164277654],\n              [-42.851025041519335, -9.547931501400399],\n              [-42.75269740104969, -9.521146832409883],\n              [-42.61881800141134, -9.56592710755561],\n              [-42.57426843916505, -9.485595073241143],\n              [-42.48944299647607, -9.498866558122458],\n              [-42.43139123644909, -9.409547707058962],\n              [-42.31079430802055, -9.306957371114194],\n              [-42.15014122572023, -9.293444187004965],\n              [-42.04304649507242, -9.208849457215422],\n              [-41.9179451719408, -9.213112152690485],\n              [-41.85089560883617, -9.253388033133191],\n              [-41.79734824351226, -9.173077971475848],\n              [-41.73479208878217, -9.132802091033199],\n              [-41.73479208878217, -8.981146811810504],\n              [-41.60992147855001, -8.96315120565528],\n              [-41.55637411322607, -8.972138022404351],\n              [-41.498322353199114, -8.936366536664764],\n              [-41.46704427583404, -8.865043291756422],\n              [-41.39999471272944, -8.784733230099178],\n              [-41.36871663536442, -8.713168285962922],\n              [-41.324167073118076, -8.735448560250362],\n              [-41.15902058244325, -8.708663891259846],\n              [-41.10547321711931, -8.717672680666027],\n              [-41.100968822416235, -8.775724440693025],\n              [-41.003992500357526, -8.781349440907604],\n              [-40.98037189398772, -8.815780594564785],\n              [-40.891042056595666, -8.856056475007449],\n              [-40.891042056595666, -9.03469417713444],\n              [-40.855490297427, -9.092745937161425],\n              [-40.85099688905245, -9.150797697188352],\n              [-40.70361529163341, -9.217616547393618],\n              [-40.69034380675214, -9.342728856853768],\n              [-40.743891172076076, -9.42303891851111],\n              [-40.68583941204906, -9.47210386178898],\n              [-40.56479204415024, -9.460172708990143],\n              [-40.41269731178579, -9.396957374547355],\n              [-40.31977494495982, -9.2930047338632],\n              [-40.27319291193285, -9.144952970402969],\n              [-40.212218788513155, -9.101513027339593],\n              [-40.077669222833606, -9.08824154245832],\n              [-40.00499465951441, -9.058095056933354],\n              [-39.94874465736862, -9.022103844622904],\n              [-39.90914992929572, -8.98024593286982],\n              [-39.887770533948924, -8.923995930724061],\n              [-39.88461745765676, -8.853353838185598],\n              [-39.83489333466616, -8.809013016181552],\n              [-39.73836745207774, -8.791237136597275],\n              [-39.68774245014657, -8.74940119750137],\n              [-39.682798602301716, -8.683021800437942],\n              [-39.60089552300548, -8.619564766767255],\n              [-39.441824472015526, -8.559271795717166],\n              [-39.33269727058703, -8.565797674872442],\n              [-39.25664990440481, -8.64026300974433],\n              [-39.098249019456034, -8.714970043844119],\n              [-38.834994614882476, -8.800245926003356],\n              [-38.70539988337629, -8.879896807948114],\n              [-38.66781565342694, -8.896090656222128],\n              [-38.61922312227642, -8.896090656222128],\n              [-38.57759592342282, -8.86053889705343],\n              [-38.54429636160569, -8.831073563898173],\n              [-38.50469064720423, -8.834896806231512],\n              [-38.48399240422714, -8.877655596925138],\n              [-38.48219064634591, -8.959547689892815],\n              [-38.43291696282563, -9.00364681266882],\n              [-38.33594064076692, -9.01017269182401],\n              [-38.29432442824191, -9.043021814170856],\n              [-38.30759591312315, -9.102194179709358],\n              [-38.28307442781272, -9.203663910142609],\n              [-38.2211994254524, -9.34767270469861],\n              [-37.97572090046313, -9.512138043003716],\n              [-38.04299019013865, -9.605983261427355],\n              [-37.99371650661834, -9.646237169212938],\n              [-38.02949897868646, -9.726569203527362],\n              [-37.96266914215278, -9.873939814617813],\n              [-37.90012397375119, -9.913995968489587],\n              [-37.90012397375119, -9.949767454229232],\n              [-37.77951605899412, -10.079362185735349],\n              [-37.784020453697195, -10.30684510456939],\n              [-37.83756781902116, -10.42294862462336],\n              [-37.824065621240436, -10.548038961426414],\n              [-37.784020453697195, -10.62837099574088],\n              [-37.81529853106224, -10.677413966361712],\n              [-37.97144721865948, -10.75348330520103],\n              [-38.01172309910211, -10.75348330520103],\n              [-38.10982002667234, -10.708703030055304],\n              [-38.190141074658214, -10.717689846804376],\n              [-38.243919152881574, -10.824806550109301],\n              [-38.234921349803955, -10.896349521588448],\n              [-38.17686958977697, -10.980944251377977],\n              [-38.10982002667234, -11.030228921226794],\n              [-38.06076606972297, -11.168590742911121],\n              [-37.9804450217371, -11.239913987819392],\n              [-38.00721870439904, -11.35601750787339],\n              [-37.9669428239564, -11.400797783019115],\n              [-37.85107001680183, -11.440853936890889],\n              [-37.797291938578496, -11.525668393251294],\n              [-37.65891913056561, -11.556957456944886],\n              [-37.63214544790364, -11.521163998548232],\n              [-37.574093687876626, -11.539181577360537],\n              [-37.41186956059454, -11.497323665607496],\n              [-37.46924016825176, -11.653703066104185],\n              [-37.68861517662026, -12.100099567507868],\n              [-37.95727485483758, -12.475392550574156],\n              [-38.01914985719793, -12.591276344057235],\n              [-38.23964547107789, -12.844181627142348],\n              [-38.40186959835995, -12.9661298739818],\n              [-38.44732003954698, -12.967030752922426],\n              [-38.49884592041872, -12.95668163143381],\n              [-38.52494943703948, -12.76226756151749],\n              [-38.65409372907533, -12.644603982810281],\n              [-38.69099680665494, -12.62390573983322],\n              [-38.743874005937755, -12.748556623494494],\n              [-38.7879731287137, -12.782746077923775],\n              [-38.85186961552614, -12.790172836019565],\n              [-38.78369944691008, -12.844401353713238],\n              [-38.76367136997413, -12.90717723501416],\n              [-38.833192857001166, -13.032948724186951],\n              [-38.83521434145325, -13.147250486359724],\n              [-38.95919505907341, -13.273021975532515],\n              [-39.03096874345198, -13.365043463417862],\n              [-39.0674213815613, -13.480465831102151],\n              [-39.08924023004988, -13.588241714119647],\n              [-39.03502269868477, -13.558776380964389],\n              [-39.00914989496346, -13.581496108393651],\n              [-38.98867137855723, -13.615026383110262],\n              [-39.00127269739727, -13.664530779529912],\n              [-39.04109813836959, -13.758112326068499],\n              [-39.03502269868477, -13.99100051854623],\n              [-39.04807445699515, -14.04386673150043],\n              [-39.00846874259361, -14.101237339157706],\n              [-38.966391104269746, -14.003371124486875],\n              [-38.94232005842963, -14.030595246619157],\n              [-39.059544183995115, -14.654750543866328],\n              [-39.01342357676708, -14.935539128796336],\n              [-38.99609813665302, -15.253922930004194],\n              [-38.94322093737031, -15.564418547317416],\n              [-38.8851691773433, -15.842065042283764],\n              [-38.88066478264017, -15.864345316571132],\n              [-38.96076610405515, -16.186552360112387],\n              [-39.06314769975762, -16.5044747355214],\n              [-39.125022702117974, -16.76366419853366],\n              [-39.16394726414967, -17.04357387718011],\n              [-39.20287182618148, -17.178112456531096],\n              [-39.21524243212207, -17.315815098502867],\n              [-39.17069286987578, -17.64206511094835],\n              [-39.15404858213145, -17.703940113308647],\n              [-39.27846875289339, -17.849530939174997],\n              [-39.412567879102596, -17.919953305142656],\n              [-39.486824473732156, -17.990155944539367],\n              [-39.65083937256685, -18.252267770944457],\n              [-39.667714373210686, -18.325854199532813],\n              [-39.672449480813185, -18.32473359402131],\n              [-40.1858955453215, -18.007931824123773],\n              [-40.208164833280364, -17.976642760430195],\n              [-40.23044510756779, -17.918591000403126],\n              [-40.1858955453215, -17.816000664458443],\n              [-40.208164833280364, -17.766715994609626],\n              [-40.2839924728917, -17.717673023988795],\n              [-40.382320113361345, -17.623849778222223],\n              [-40.41336747782697, -17.557030928017028],\n              [-40.48041704093157, -17.557030928017028],\n              [-40.49819292051592, -17.418647133675606],\n              [-40.60979204586684, -17.391862464685104],\n              [-40.60551836406319, -17.311332676456885],\n              [-40.56524248362052, -17.26226773317896],\n              [-40.57424028669814, -17.13289272824369],\n              [-40.52496660317789, -16.931974751829273],\n              [-40.47141923785398, -16.869418597099184],\n              [-40.29749467067239, -16.87842738650535],\n              [-40.24371659244903, -16.833647111359625],\n              [-40.2839924728917, -16.74454798686702],\n              [-40.27499466981408, -16.614953255360874],\n              [-40.25271439552665, -16.565888312082905],\n              [-40.13662186180122, -16.543630010452603],\n              [-40.13211746709811, -16.503354130009953],\n              [-40.05628982748678, -16.396237426705014],\n              [-39.940197293761315, -16.31142297034461],\n              [-39.86436965414998, -16.110504993930192],\n              [-39.93569289905824, -15.998905868579271],\n              [-40.00274246216287, -15.994401473876223],\n              [-40.13211746709811, -15.891789165274304],\n              [-40.16789993916623, -15.896293559977423],\n              [-40.234949502270865, -15.8202461937952],\n              [-40.328542035138014, -15.824750588498276],\n              [-40.47592363255703, -15.77570761787743],\n              [-40.53396440625551, -15.797965919507703],\n              [-40.57424028669814, -15.757931738293095],\n              [-40.667843805893824, -15.717655857850431],\n              [-40.761667051660396, -15.739914159480776],\n              [-40.82871661476503, -15.681862399453777],\n              [-40.891042056595666, -15.69537558356302],\n              [-40.944820134819025, -15.673095309275581],\n              [-41.02964557750798, -15.73543173743478],\n              [-41.15902058244325, -15.780190039923411],\n              [-41.333164876195724, -15.717655857850389],\n              [-41.3599495451862, -15.494457607148604],\n              [-41.801841651886804, -15.110595287817915],\n              [-41.940214459899664, -15.172931715977143],\n              [-42.087596057318706, -15.181918532726186],\n              [-42.1769149083822, -15.106090893114839],\n              [-42.261740351071154, -15.106090893114839],\n              [-42.43139123644909, -15.034547921635692],\n              [-42.578542120968706, -14.931957585690924],\n              [-42.63232019919204, -14.940944402439996],\n              [-42.891070209062576, -14.749013242774652],\n              [-42.953615377464104, -14.677470271295505],\n              [-43.230371979818415, -14.63741411742373],\n              [-43.38674039398654, -14.699750545582901],\n              [-43.449296548716575, -14.780082579897353],\n              [-43.49384611096289, -14.789069396646426],\n              [-43.708046558587114, -14.735522031322503],\n              [-43.82415007864111, -14.695246150879854],\n              [-43.86441497275521, -14.659694391711156],\n              [-43.87949920184627, -14.624604058341333],\n              [-43.8608224433213, -14.534362355680116],\n              [-43.80006804647246, -14.369897017375024],\n              [-43.781391287947486, -14.342892621813633],\n              [-43.83764129009327, -14.315888226252241],\n              [-44.15894745469387, -14.271349650334486],\n              [-44.21249482001778, -14.240082559297988],\n              [-44.31982026356505, -14.244345254773094],\n              [-44.35986543110829, -14.271349650334457],\n              [-44.56079439385124, -14.347177289945833],\n              [-44.83754000987699, -14.516828175323752],\n              [-44.88232028502273, -14.597138236981039],\n              [-45.10102512735003, -14.717746151738154],\n              [-45.22589573758222, -14.74002642602558],\n              [-45.31971898334879, -14.856129946079577],\n              [-45.46259618606476, -14.940944402439996],\n              [-45.55191503712825, -14.93644000773692],\n              [-45.654516359401555, -15.043556711041788],\n              [-45.71256811942854, -15.123866772699188],\n              [-45.766115484752476, -15.146147046986613],\n              [-45.92676856705276, -15.128371167402264],\n              [-45.967044447495425, -15.186422927429248],\n              [-46.0741501644718, -15.248979082159337],\n              [-45.97604225057307, -14.985504951014832],\n              [-46.02509620752241, -14.869401430960849]\n            ]\n          ],\n          [\n            [\n              [-38.90721873873133, -13.40105664838535],\n              [-38.903615222968824, -13.473500498805151],\n              [-38.93781566372661, -13.5322334112019],\n              [-38.97764110469893, -13.523444348366638],\n              [-38.993164786931686, -13.484069346864658],\n              [-39.02219066694528, -13.44559522430319],\n              [-39.00666698471241, -13.415448738778196],\n              [-38.980124014949865, -13.398354011563526],\n              [-38.90721873873133, -13.40105664838535]\n            ]\n          ],\n          [\n            [\n              [-38.60121652979262, -12.992672843744288],\n              [-38.743874005937755, -13.09706493757028],\n              [-38.783018294540284, -13.118664059487969],\n              [-38.78707224977313, -13.05498729924642],\n              [-38.684921366970116, -12.974896964159996],\n              [-38.66804636632634, -12.880172839452769],\n              [-38.61449900100246, -12.924052235657825],\n              [-38.60031565085205, -12.972414053909006],\n              [-38.60121652979262, -12.992672843744288]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 8843,\n        \"fill\": \"#999\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-40.53846880095858, -7.391754661336265],\n              [-40.53396440625551, -7.324694111903099],\n              [-40.58301836320487, -7.195319106967844],\n              [-40.511695118296615, -7.0033879473025],\n              [-40.440141160488906, -6.905082279489932],\n              [-40.41787187253004, -6.81147876029425],\n              [-40.48041704093157, -6.735431394112013],\n              [-40.614296440569916, -6.708646725121511],\n              [-40.70811968633649, -6.659603754500665],\n              [-40.72139117121776, -6.570262930780089],\n              [-40.770664854738015, -6.494457263825836],\n              [-40.79744952372852, -6.378353743771839],\n              [-40.80621661390671, -6.253483133539646],\n              [-40.891042056595666, -6.012267304025499],\n              [-40.891042056595666, -5.905172573377655],\n              [-40.92232013396071, -5.681974322675813],\n              [-40.917815739257634, -5.60164228836139],\n              [-40.94909381662268, -5.418500191531322],\n              [-41.0251411828049, -5.364952826207414],\n              [-41.06969074505122, -5.306901066180416],\n              [-41.0606929419736, -5.168517271838979],\n              [-41.11447102019693, -5.065926935894225],\n              [-41.12324909670366, -5.007875175867227],\n              [-41.185794265105216, -4.914051930100655],\n              [-41.18128987040211, -4.811439621498806],\n              [-41.22607014554785, -4.726625165138387],\n              [-41.2438460251322, -4.615026039787466],\n              [-41.23484822205458, -4.539198400176133],\n              [-41.1412447028589, -4.427379548254322],\n              [-41.074195139754295, -4.324767239652473],\n              [-41.11874470200058, -4.177396628561979],\n              [-41.18128987040211, -4.123849263238057],\n              [-41.230343827351504, -4.043517228923633],\n              [-41.28389119267544, -3.811332161472734],\n              [-41.35544515048312, -3.708719852870885],\n              [-41.38221883314509, -3.592616332816888],\n              [-41.44926839624969, -3.436478631548212],\n              [-41.42676839539138, -3.320375111494201],\n              [-41.37771443844201, -3.271332140873369],\n              [-41.25711751001347, -3.079181254637149],\n              [-41.26859822334205, -2.916056248414421],\n              [-41.194572341611945, -2.886129489460302],\n              [-40.875518374362855, -2.869693941958332],\n              [-40.474572314146116, -2.795668060228223],\n              [-40.23539994174115, -2.813224213241682],\n              [-39.964718779071745, -2.861608004149886],\n              [-39.77189772679432, -2.985797462012329],\n              [-39.60944288661278, -3.056219827979987],\n              [-39.511115246143135, -3.125521588436129],\n              [-39.35271436119439, -3.197306259143247],\n              [-39.01432445570771, -3.390116325092123],\n              [-38.89596873830217, -3.501715450443044],\n              [-38.68627268538103, -3.653832155464585],\n              [-38.475895480090145, -3.717486943049067],\n              [-38.361824430816796, -3.87634925379669],\n              [-38.271824427383564, -3.948111951846712],\n              [-38.04884590325261, -4.216332176922251],\n              [-37.795720893596666, -4.404198395026285],\n              [-37.62628973478962, -4.592064613130319],\n              [-37.30139104075511, -4.713111981029158],\n              [-37.230748948216586, -4.824271653238313],\n              [-37.54281561051161, -4.93204753625588],\n              [-37.59659368873494, -4.958832205246381],\n              [-37.721464298967135, -5.061422541191149],\n              [-37.913395458632465, -5.463280466677062],\n              [-38.0474945848417, -5.614913773242662],\n              [-38.07854194930732, -5.686478717378904],\n              [-38.07854194930732, -5.762306356990237],\n              [-38.12781563282758, -5.878387904387154],\n              [-38.301740200009135, -6.074823458755574],\n              [-38.36878976311377, -6.092599338339923],\n              [-38.41357003825948, -6.061332247303426],\n              [-38.493891086245384, -6.128370824079497],\n              [-38.511666965829704, -6.181918189403419],\n              [-38.578716528934336, -6.262250223717842],\n              [-38.605490211596305, -6.396129623356174],\n              [-38.5251691636104, -6.382858138474916],\n              [-38.578716528934336, -6.480944079716593],\n              [-38.65003977384259, -6.690870845537162],\n              [-38.61877268280611, -6.757931394970328],\n              [-38.65003977384259, -6.838241456627657],\n              [-38.725867413453955, -6.891788821951579],\n              [-38.73037180815703, -7.0033879473025],\n              [-38.685822245910714, -7.030172616293001],\n              [-38.676824442833095, -7.15954762122827],\n              [-38.60099680322176, -7.222103775958345],\n              [-38.547449437897825, -7.235594987410494],\n              [-38.53394724011713, -7.293646747437492],\n              [-38.58299021073799, -7.427526147075838],\n              [-38.632274880586806, -7.458793238112335],\n              [-38.63676828896132, -7.534620877723682],\n              [-38.699093730791986, -7.619457306741182],\n              [-38.81969065922053, -7.663995882658938],\n              [-38.864240221466815, -7.704271763101588],\n              [-38.96707225663954, -7.847137979489005],\n              [-38.99833934767605, -7.820375283155585],\n              [-39.074166987287384, -7.856146768895158],\n              [-39.109949459355505, -7.753314733722434],\n              [-39.24381787266532, -7.681991488814162],\n              [-39.30637402739538, -7.623939728787164],\n              [-39.350923589641695, -7.548112089175831],\n              [-39.53406568647176, -7.47656911769667],\n              [-39.65444288832941, -7.373978781751916],\n              [-39.84659377456563, -7.347194112761414],\n              [-39.95369949154201, -7.360465597642673],\n              [-40.06529861689293, -7.405245872788413],\n              [-40.172393347540776, -7.418517357669671],\n              [-40.261723184932805, -7.391754661336265],\n              [-40.53846880095858, -7.391754661336265]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 2220,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-37.41186956059454, -11.497323665607496],\n              [-37.574093687876626, -11.539181577360537],\n              [-37.63214544790364, -11.521163998548232],\n              [-37.65891913056561, -11.556957456944886],\n              [-37.797291938578496, -11.525668393251294],\n              [-37.85107001680183, -11.440853936890889],\n              [-37.9669428239564, -11.400797783019115],\n              [-38.00721870439904, -11.35601750787339],\n              [-37.9804450217371, -11.239913987819392],\n              [-38.06076606972297, -11.168590742911121],\n              [-38.10982002667234, -11.030228921226794],\n              [-38.17686958977697, -10.980944251377977],\n              [-38.234921349803955, -10.896349521588448],\n              [-38.243919152881574, -10.824806550109301],\n              [-38.190141074658214, -10.717689846804376],\n              [-38.10982002667234, -10.708703030055304],\n              [-38.01172309910211, -10.75348330520103],\n              [-37.97144721865948, -10.75348330520103],\n              [-37.81529853106224, -10.677413966361712],\n              [-37.784020453697195, -10.62837099574088],\n              [-37.824065621240436, -10.548038961426414],\n              [-37.83756781902116, -10.42294862462336],\n              [-37.784020453697195, -10.30684510456939],\n              [-37.77951605899412, -10.079362185735349],\n              [-37.90012397375119, -9.949767454229232],\n              [-37.90012397375119, -9.913995968489587],\n              [-37.96266914215278, -9.873939814617813],\n              [-38.02949897868646, -9.726569203527362],\n              [-37.99371650661834, -9.646237169212938],\n              [-38.04299019013865, -9.605983261427355],\n              [-37.97572090046313, -9.512138043003716],\n              [-37.93814765684232, -9.53780210648273],\n              [-37.425591484946096, -9.778314810970059],\n              [-37.19609806798849, -9.88587096741675],\n              [-37.019240151085654, -9.956974485754131],\n              [-36.9564642697847, -10.01366394104167],\n              [-36.93958926914095, -10.083646853867549],\n              [-36.87974673756128, -10.153629766693442],\n              [-36.77669497581766, -10.22359070686224],\n              [-36.699065578325076, -10.257340708149698],\n              [-36.64753969745328, -10.253978891615205],\n              [-36.60704409043976, -10.292892467318381],\n              [-36.579819968307476, -10.37142274375158],\n              [-36.53842348235332, -10.410578018682727],\n              [-36.48262391967788, -10.410578018682727],\n              [-36.44301820527642, -10.43195741402954],\n              [-36.43176820484726, -10.452875383577506],\n              [-36.41467347763265, -10.491349506138917],\n              [-36.63583925755381, -10.589896873179455],\n              [-36.768367338781246, -10.671569239576257],\n              [-36.93779849758826, -10.8205218819771],\n              [-37.09326603281576, -11.05475040653721],\n              [-37.12544498912143, -11.084896892062204],\n              [-37.18281559677868, -11.068483317217328],\n              [-37.18124455179688, -11.187487228006972],\n              [-37.315123951435226, -11.376056571137823],\n              [-37.356069997919064, -11.403939872982733],\n              [-37.354949392407576, -11.35039250765881],\n              [-37.331548512608634, -11.30989690064527],\n              [-37.32074895164979, -11.266698656809893],\n              [-37.32186955716131, -11.215172775938086],\n              [-37.35922307421123, -11.252526292988009],\n              [-37.43842351668562, -11.393832450722158],\n              [-37.41186956059454, -11.497323665607496]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 3322,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-37.97572090046313, -9.512138043003716],\n              [-38.2211994254524, -9.34767270469861],\n              [-38.154589315489545, -9.266681490671544],\n              [-38.09204414708799, -9.18634945635712],\n              [-37.9669428239564, -9.14178890778227],\n              [-37.81529853106224, -8.976642417107428],\n              [-37.80628974165609, -8.896332355450099],\n              [-37.748248967957636, -8.86053889705343],\n              [-37.681419131423894, -8.976642417107428],\n              [-37.62764105320056, -8.981146811810504],\n              [-37.52054632255272, -8.94537532607093],\n              [-37.471492365603325, -9.003427086097929],\n              [-37.39117131761745, -9.043483239969703],\n              [-37.18124455179688, -9.239896821681043],\n              [-36.9983221815377, -9.306957371114194],\n              [-36.94027042151069, -9.35600034173504],\n              [-36.90449893577113, -9.289181491529845],\n              [-36.83316470453431, -9.262396822539344],\n              [-36.57869936279599, -9.293444187004965],\n              [-36.440315568454565, -9.208849457215422],\n              [-36.34649232268799, -9.19984066780927],\n              [-36.26617127470212, -9.14178890778227],\n              [-36.23939759204015, -9.088241542458348],\n              [-36.12329407198615, -9.016698570979202],\n              [-36.118789677283075, -8.967655600358356],\n              [-36.01619934133831, -8.896332355450099],\n              [-35.97141906619257, -8.90509944562828],\n              [-35.88231994169996, -8.873832354591784],\n              [-35.80176818081466, -8.869547686459597],\n              [-35.721447132828786, -8.91859065708043],\n              [-35.609848007477865, -8.865043291756507],\n              [-35.47146421313644, -8.833776200720024],\n              [-35.39114316515057, -8.882819171340856],\n              [-35.30182431408707, -8.887323566043932],\n              [-35.15174007984618, -8.913866535806477],\n              [-35.157815519531056, -8.930521809879323],\n              [-35.340968602689685, -9.230668305704],\n              [-35.597015975738344, -9.540724469875457],\n              [-35.763964224294426, -9.702487171358712],\n              [-35.830123894786965, -9.719142445431558],\n              [-35.89086730530727, -9.686974475454448],\n              [-35.84766906147189, -9.772470084184604],\n              [-35.885473017992126, -9.847616571426215],\n              [-36.05489319047061, -10.07578064262998],\n              [-36.223643196907915, -10.225172738172589],\n              [-36.39824891645921, -10.48414247461399],\n              [-36.41152040134048, -10.489987201399458],\n              [-36.41467347763265, -10.491349506138917],\n              [-36.43176820484726, -10.452875383577506],\n              [-36.44301820527642, -10.43195741402954],\n              [-36.48262391967788, -10.410578018682727],\n              [-36.53842348235332, -10.410578018682727],\n              [-36.579819968307476, -10.37142274375158],\n              [-36.60704409043976, -10.292892467318381],\n              [-36.64753969745328, -10.253978891615205],\n              [-36.699065578325076, -10.257340708149698],\n              [-36.77669497581766, -10.22359070686224],\n              [-36.87974673756128, -10.153629766693442],\n              [-36.93958926914095, -10.083646853867549],\n              [-36.9564642697847, -10.01366394104167],\n              [-37.019240151085654, -9.956974485754131],\n              [-37.19609806798849, -9.88587096741675],\n              [-37.425591484946096, -9.778314810970059],\n              [-37.93814765684232, -9.53780210648273],\n              [-37.97572090046313, -9.512138043003716]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 3409,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-38.5251691636104, -6.382858138474916],\n              [-38.605490211596305, -6.396129623356174],\n              [-38.578716528934336, -6.262250223717842],\n              [-38.511666965829704, -6.181918189403419],\n              [-38.493891086245384, -6.128370824079497],\n              [-38.41357003825948, -6.061332247303426],\n              [-38.36878976311377, -6.092599338339923],\n              [-38.301740200009135, -6.074823458755574],\n              [-38.12781563282758, -5.878387904387154],\n              [-38.07854194930732, -5.762306356990237],\n              [-38.07854194930732, -5.686478717378904],\n              [-38.0474945848417, -5.614913773242662],\n              [-37.913395458632465, -5.463280466677062],\n              [-37.721464298967135, -5.061422541191149],\n              [-37.59659368873494, -4.958832205246381],\n              [-37.54281561051161, -4.93204753625588],\n              [-37.230748948216586, -4.824271653238313],\n              [-37.17471867264169, -4.912469898790306],\n              [-36.95489322480287, -4.936771657529846],\n              [-36.8610699790363, -4.96669841648395],\n              [-36.747449369233294, -5.050611993903757],\n              [-36.59061952926632, -5.097655452729569],\n              [-36.38676820313063, -5.084361995191216],\n              [-36.16176819454756, -5.093832210396229],\n              [-35.97996642979987, -5.054457208894192],\n              [-35.54932432352845, -5.129361996907832],\n              [-35.481593608054084, -5.166056334245113],\n              [-35.39249448356148, -5.250870790605518],\n              [-35.23544491702364, -5.566771681562443],\n              [-35.14184139782796, -5.917103726176549],\n              [-35.09549007770042, -6.185301978594993],\n              [-34.98816463415315, -6.393646713105213],\n              [-34.97174007297971, -6.503905506373755],\n              [-35.047347986020185, -6.534733144268486],\n              [-35.257274751840754, -6.507948475277985],\n              [-35.306317722461586, -6.53022874956541],\n              [-35.4669708047619, -6.463168200132245],\n              [-35.66789976750485, -6.427396714392671],\n              [-35.721447132828786, -6.44539232054791],\n              [-35.92686950394628, -6.467672594835335],\n              [-36.25266907692142, -6.414125229511413],\n              [-36.29294495736406, -6.307030498863568],\n              [-36.382274794756114, -6.302526104160492],\n              [-36.493873920107035, -6.378353743771839],\n              [-36.5161432080659, -6.480944079716593],\n              [-36.44481996315764, -6.623832268761092],\n              [-36.53391908765025, -6.63732348021324],\n              [-36.52941469294717, -6.735431394112013],\n              [-36.5026410102852, -6.784694091303734],\n              [-36.57419496809291, -6.927582280348247],\n              [-36.659020410781864, -6.931844975823353],\n              [-36.71256777610577, -6.976625250969079],\n              [-36.770619536132784, -6.931844975823353],\n              [-36.743845853470816, -6.824750245175508],\n              [-36.79289981042021, -6.76669848514851],\n              [-36.944774816213766, -6.748922605564161],\n              [-36.98932437846008, -6.708646725121511],\n              [-37.04287174378399, -6.753427000267237],\n              [-37.15447086913491, -6.784694091303734],\n              [-37.21701603753647, -6.824750245175508],\n              [-37.27057438918891, -6.739913816158008],\n              [-37.33762395229354, -6.699879634943329],\n              [-37.51604192784964, -6.68186205613101],\n              [-37.507274837671446, -6.55248705119574],\n              [-37.43121648516069, -6.516715565456167],\n              [-37.39566472599199, -6.391844955223988],\n              [-37.1767401570938, -6.114879612627348],\n              [-37.1767401570938, -6.052543184468149],\n              [-37.261565599782756, -6.025780488134728],\n              [-37.42244939498249, -6.097103733042999],\n              [-37.4759967603064, -6.083832248161727],\n              [-37.64114325098126, -6.128370824079497],\n              [-37.757246771035256, -6.177413794700328],\n              [-37.793018256774815, -6.293517314754325],\n              [-37.84207221372421, -6.342582258032266],\n              [-38.00271430969596, -6.431901109095762],\n              [-38.05627266134843, -6.44539232054791],\n              [-38.13232002753065, -6.521219960159243],\n              [-38.2394147581785, -6.48544847441967],\n              [-38.283964320424815, -6.503444080574909],\n              [-38.43583932621837, -6.414125229511413],\n              [-38.5251691636104, -6.382858138474916]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 9278,\n        \"fill\": \"#999\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-41.36871663536442, -8.713168285962922],\n              [-41.212567947767155, -8.632858224305608],\n              [-41.15902058244325, -8.548021795288108],\n              [-41.083192942831886, -8.525741521000683],\n              [-41.01614337972728, -8.418646790352838],\n              [-40.92232013396071, -8.43191827523411],\n              [-40.88676837479201, -8.351608213576768],\n              [-40.833221009468105, -8.36487969845804],\n              [-40.74839556677915, -8.244491510271843],\n              [-40.59201616628249, -8.12390556817185],\n              [-40.54297319566166, -8.030082322405278],\n              [-40.52947099788096, -7.905189739516004],\n              [-40.547466604036174, -7.833646768036857],\n              [-40.659065729387095, -7.762323523128586],\n              [-40.61878984894446, -7.637233186325531],\n              [-40.69034380675214, -7.512340603436257],\n              [-40.69034380675214, -7.427526147075838],\n              [-40.64557451793496, -7.400741478085337],\n              [-40.53846880095858, -7.391754661336265],\n              [-40.261723184932805, -7.391754661336265],\n              [-40.172393347540776, -7.418517357669671],\n              [-40.06529861689293, -7.405245872788413],\n              [-39.95369949154201, -7.360465597642673],\n              [-39.84659377456563, -7.347194112761414],\n              [-39.65444288832941, -7.373978781751916],\n              [-39.53406568647176, -7.47656911769667],\n              [-39.350923589641695, -7.548112089175831],\n              [-39.30637402739538, -7.623939728787164],\n              [-39.24381787266532, -7.681991488814162],\n              [-39.109949459355505, -7.753314733722434],\n              [-39.074166987287384, -7.856146768895158],\n              [-38.99833934767605, -7.820375283155585],\n              [-38.96707225663954, -7.847137979489005],\n              [-38.864240221466815, -7.704271763101588],\n              [-38.81969065922053, -7.663995882658938],\n              [-38.699093730791986, -7.619457306741182],\n              [-38.64554636546805, -7.677487094111086],\n              [-38.59199900014414, -7.690780551649439],\n              [-38.587494605441066, -7.740043248841161],\n              [-38.5251691636104, -7.766827917831677],\n              [-38.44912179742818, -7.735538854138085],\n              [-38.41784372006313, -7.748832311676438],\n              [-38.355518278232495, -7.699767368398511],\n              [-38.304223110260125, -7.78234061373594],\n              [-38.301740200009135, -7.829362099904657],\n              [-38.25719063776285, -7.851642374192082],\n              [-38.225923546726335, -7.811366493749432],\n              [-38.16787178669935, -7.806862099046356],\n              [-38.150095907115, -7.771332312534753],\n              [-38.08753975238491, -7.820375283155585],\n              [-38.05739326685992, -7.75781912842551],\n              [-37.97594062703399, -7.771332312534753],\n              [-37.895619579048116, -7.686495883517253],\n              [-37.793018256774815, -7.637233186325531],\n              [-37.70819281408586, -7.548112089175831],\n              [-37.55182439991776, -7.47656911769667],\n              [-37.435720879863766, -7.347194112761414],\n              [-37.38217351453983, -7.351698507464491],\n              [-37.34639104247171, -7.297931415569693],\n              [-37.25279850960456, -7.271146746579191],\n              [-37.149966474431835, -7.347194112761414],\n              [-37.01609806112205, -7.400741478085337],\n              [-37.01609806112205, -7.507858181390262],\n              [-37.19924015795212, -7.574896758166332],\n              [-37.212522629161924, -7.646220003074589],\n              [-37.16797306691561, -7.762323523128586],\n              [-37.22602482694262, -7.815870888452508],\n              [-37.342117360668055, -7.9987932587117],\n              [-37.212522629161924, -7.958737104839926],\n              [-37.149966474431835, -7.976512984424275],\n              [-37.12769718647297, -8.1641814486145],\n              [-37.06086734993923, -8.231000298819694],\n              [-36.96253970946958, -8.284547664143616],\n              [-36.83316470453431, -8.226495904116618],\n              [-36.78389102101406, -8.222233208641498],\n              [-36.62774233341682, -8.0836296877292],\n              [-36.659020410781864, -8.012306442820929],\n              [-36.569690573389835, -7.922965619100353],\n              [-36.449093644961295, -7.90969413421908],\n              [-36.422319962299326, -7.824879677858675],\n              [-36.337494519610374, -7.811366493749432],\n              [-36.26617127470212, -7.824879677858675],\n              [-36.217117317752724, -7.780099402712935],\n              [-36.16784363423244, -7.824879677858675],\n              [-36.12329407198615, -7.780099402712935],\n              [-36.07424011503676, -7.824879677858675],\n              [-35.96691467148949, -7.815870888452508],\n              [-35.931373898649355, -7.838151162739933],\n              [-35.886593623503614, -7.732177037603591],\n              [-35.83753966655422, -7.744327916973361],\n              [-35.712669056322056, -7.708776157804678],\n              [-35.68139097895701, -7.713280552507754],\n              [-35.556289655825395, -7.655228792480756],\n              [-35.498248882126944, -7.454288843409245],\n              [-35.37336728556622, -7.458793238112335],\n              [-35.270546236722026, -7.382745871930098],\n              [-35.065343592175424, -7.409530540920613],\n              [-34.98051814948644, -7.512340603436257],\n              [-34.85856990264699, -7.54969412048618],\n              [-34.86082209999853, -7.594913848773672],\n              [-34.85474666031365, -7.634288850275709],\n              [-34.87297297936831, -7.692120883731818],\n              [-34.87859797958288, -7.747470006936979],\n              [-34.8369707807293, -7.871681437456516],\n              [-34.834718583377764, -7.971569136579433],\n              [-34.89051814605324, -8.092177051336506],\n              [-34.96656551223546, -8.40761651649457],\n              [-35.15174007984618, -8.913866535806477],\n              [-35.30182431408707, -8.887323566043932],\n              [-35.39114316515057, -8.882819171340856],\n              [-35.47146421313644, -8.833776200720024],\n              [-35.609848007477865, -8.865043291756507],\n              [-35.721447132828786, -8.91859065708043],\n              [-35.80176818081466, -8.869547686459597],\n              [-35.88231994169996, -8.873832354591784],\n              [-35.97141906619257, -8.90509944562828],\n              [-36.01619934133831, -8.896332355450099],\n              [-36.118789677283075, -8.967655600358356],\n              [-36.12329407198615, -9.016698570979202],\n              [-36.23939759204015, -9.088241542458348],\n              [-36.26617127470212, -9.14178890778227],\n              [-36.34649232268799, -9.19984066780927],\n              [-36.440315568454565, -9.208849457215422],\n              [-36.57869936279599, -9.293444187004965],\n              [-36.83316470453431, -9.262396822539344],\n              [-36.90449893577113, -9.289181491529845],\n              [-36.94027042151069, -9.35600034173504],\n              [-36.9983221815377, -9.306957371114194],\n              [-37.18124455179688, -9.239896821681043],\n              [-37.39117131761745, -9.043483239969703],\n              [-37.471492365603325, -9.003427086097929],\n              [-37.52054632255272, -8.94537532607093],\n              [-37.62764105320056, -8.981146811810504],\n              [-37.681419131423894, -8.976642417107428],\n              [-37.748248967957636, -8.86053889705343],\n              [-37.80628974165609, -8.896332355450099],\n              [-37.81529853106224, -8.976642417107428],\n              [-37.9669428239564, -9.14178890778227],\n              [-38.09204414708799, -9.18634945635712],\n              [-38.154589315489545, -9.266681490671544],\n              [-38.2211994254524, -9.34767270469861],\n              [-38.28307442781272, -9.203663910142609],\n              [-38.30759591312315, -9.102194179709358],\n              [-38.29432442824191, -9.043021814170856],\n              [-38.33594064076692, -9.01017269182401],\n              [-38.43291696282563, -9.00364681266882],\n              [-38.48219064634591, -8.959547689892815],\n              [-38.48399240422714, -8.877655596925138],\n              [-38.50469064720423, -8.834896806231512],\n              [-38.54429636160569, -8.831073563898173],\n              [-38.57759592342282, -8.86053889705343],\n              [-38.61922312227642, -8.896090656222128],\n              [-38.66781565342694, -8.896090656222128],\n              [-38.70539988337629, -8.879896807948114],\n              [-38.834994614882476, -8.800245926003356],\n              [-39.098249019456034, -8.714970043844119],\n              [-39.25664990440481, -8.64026300974433],\n              [-39.33269727058703, -8.565797674872442],\n              [-39.441824472015526, -8.559271795717166],\n              [-39.60089552300548, -8.619564766767255],\n              [-39.682798602301716, -8.683021800437942],\n              [-39.68774245014657, -8.74940119750137],\n              [-39.73836745207774, -8.791237136597275],\n              [-39.83489333466616, -8.809013016181552],\n              [-39.88461745765676, -8.853353838185598],\n              [-39.887770533948924, -8.923995930724061],\n              [-39.90914992929572, -8.98024593286982],\n              [-39.94874465736862, -9.022103844622904],\n              [-40.00499465951441, -9.058095056933354],\n              [-40.077669222833606, -9.08824154245832],\n              [-40.212218788513155, -9.101513027339593],\n              [-40.27319291193285, -9.144952970402969],\n              [-40.31977494495982, -9.2930047338632],\n              [-40.41269731178579, -9.396957374547355],\n              [-40.56479204415024, -9.460172708990143],\n              [-40.68583941204906, -9.47210386178898],\n              [-40.743891172076076, -9.42303891851111],\n              [-40.69034380675214, -9.342728856853768],\n              [-40.70361529163341, -9.217616547393618],\n              [-40.85099688905245, -9.150797697188352],\n              [-40.855490297427, -9.092745937161425],\n              [-40.891042056595666, -9.03469417713444],\n              [-40.891042056595666, -8.856056475007449],\n              [-40.98037189398772, -8.815780594564785],\n              [-41.003992500357526, -8.781349440907604],\n              [-41.100968822416235, -8.775724440693025],\n              [-41.10547321711931, -8.717672680666027],\n              [-41.15902058244325, -8.708663891259846],\n              [-41.324167073118076, -8.735448560250362],\n              [-41.36871663536442, -8.713168285962922]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 3944,\n        \"fill\": \"#ccc\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-38.699093730791986, -7.619457306741182],\n              [-38.63676828896132, -7.534620877723682],\n              [-38.632274880586806, -7.458793238112335],\n              [-38.58299021073799, -7.427526147075838],\n              [-38.53394724011713, -7.293646747437492],\n              [-38.547449437897825, -7.235594987410494],\n              [-38.60099680322176, -7.222103775958345],\n              [-38.676824442833095, -7.15954762122827],\n              [-38.685822245910714, -7.030172616293001],\n              [-38.73037180815703, -7.0033879473025],\n              [-38.725867413453955, -6.891788821951579],\n              [-38.65003977384259, -6.838241456627657],\n              [-38.61877268280611, -6.757931394970328],\n              [-38.65003977384259, -6.690870845537162],\n              [-38.578716528934336, -6.480944079716593],\n              [-38.5251691636104, -6.382858138474916],\n              [-38.43583932621837, -6.414125229511413],\n              [-38.283964320424815, -6.503444080574909],\n              [-38.2394147581785, -6.48544847441967],\n              [-38.13232002753065, -6.521219960159243],\n              [-38.05627266134843, -6.44539232054791],\n              [-38.00271430969596, -6.431901109095762],\n              [-37.84207221372421, -6.342582258032266],\n              [-37.793018256774815, -6.293517314754325],\n              [-37.757246771035256, -6.177413794700328],\n              [-37.64114325098126, -6.128370824079497],\n              [-37.4759967603064, -6.083832248161727],\n              [-37.42244939498249, -6.097103733042999],\n              [-37.261565599782756, -6.025780488134728],\n              [-37.1767401570938, -6.052543184468149],\n              [-37.1767401570938, -6.114879612627348],\n              [-37.39566472599199, -6.391844955223988],\n              [-37.43121648516069, -6.516715565456167],\n              [-37.507274837671446, -6.55248705119574],\n              [-37.51604192784964, -6.68186205613101],\n              [-37.33762395229354, -6.699879634943329],\n              [-37.27057438918891, -6.739913816158008],\n              [-37.21701603753647, -6.824750245175508],\n              [-37.15447086913491, -6.784694091303734],\n              [-37.04287174378399, -6.753427000267237],\n              [-36.98932437846008, -6.708646725121511],\n              [-36.944774816213766, -6.748922605564161],\n              [-36.79289981042021, -6.76669848514851],\n              [-36.743845853470816, -6.824750245175508],\n              [-36.770619536132784, -6.931844975823353],\n              [-36.71256777610577, -6.976625250969079],\n              [-36.659020410781864, -6.931844975823353],\n              [-36.57419496809291, -6.927582280348247],\n              [-36.5026410102852, -6.784694091303734],\n              [-36.52941469294717, -6.735431394112013],\n              [-36.53391908765025, -6.63732348021324],\n              [-36.44481996315764, -6.623832268761092],\n              [-36.5161432080659, -6.480944079716593],\n              [-36.493873920107035, -6.378353743771839],\n              [-36.382274794756114, -6.302526104160492],\n              [-36.29294495736406, -6.307030498863568],\n              [-36.25266907692142, -6.414125229511413],\n              [-35.92686950394628, -6.467672594835335],\n              [-35.721447132828786, -6.44539232054791],\n              [-35.66789976750485, -6.427396714392671],\n              [-35.4669708047619, -6.463168200132245],\n              [-35.306317722461586, -6.53022874956541],\n              [-35.257274751840754, -6.507948475277985],\n              [-35.047347986020185, -6.534733144268486],\n              [-34.97174007297971, -6.503905506373755],\n              [-34.929673420984386, -6.785155517102595],\n              [-34.87994929799382, -6.908224369453549],\n              [-34.87589534276103, -7.002948494160734],\n              [-34.833817704437166, -7.024327889507546],\n              [-34.805472976793396, -7.288483173021774],\n              [-34.8164922643231, -7.394896751299868],\n              [-34.85766902370639, -7.53328054564129],\n              [-34.85856990264699, -7.54969412048618],\n              [-34.98051814948644, -7.512340603436257],\n              [-35.065343592175424, -7.409530540920613],\n              [-35.270546236722026, -7.382745871930098],\n              [-35.37336728556622, -7.458793238112335],\n              [-35.498248882126944, -7.454288843409245],\n              [-35.556289655825395, -7.655228792480756],\n              [-35.68139097895701, -7.713280552507754],\n              [-35.712669056322056, -7.708776157804678],\n              [-35.83753966655422, -7.744327916973361],\n              [-35.886593623503614, -7.732177037603591],\n              [-35.931373898649355, -7.838151162739933],\n              [-35.96691467148949, -7.815870888452508],\n              [-36.07424011503676, -7.824879677858675],\n              [-36.12329407198615, -7.780099402712935],\n              [-36.16784363423244, -7.824879677858675],\n              [-36.217117317752724, -7.780099402712935],\n              [-36.26617127470212, -7.824879677858675],\n              [-36.337494519610374, -7.811366493749432],\n              [-36.422319962299326, -7.824879677858675],\n              [-36.449093644961295, -7.90969413421908],\n              [-36.569690573389835, -7.922965619100353],\n              [-36.659020410781864, -8.012306442820929],\n              [-36.62774233341682, -8.0836296877292],\n              [-36.78389102101406, -8.222233208641498],\n              [-36.83316470453431, -8.226495904116618],\n              [-36.96253970946958, -8.284547664143616],\n              [-37.06086734993923, -8.231000298819694],\n              [-37.12769718647297, -8.1641814486145],\n              [-37.149966474431835, -7.976512984424275],\n              [-37.212522629161924, -7.958737104839926],\n              [-37.342117360668055, -7.9987932587117],\n              [-37.22602482694262, -7.815870888452508],\n              [-37.16797306691561, -7.762323523128586],\n              [-37.212522629161924, -7.646220003074589],\n              [-37.19924015795212, -7.574896758166332],\n              [-37.01609806112205, -7.507858181390262],\n              [-37.01609806112205, -7.400741478085337],\n              [-37.149966474431835, -7.347194112761414],\n              [-37.25279850960456, -7.271146746579191],\n              [-37.34639104247171, -7.297931415569693],\n              [-37.38217351453983, -7.351698507464491],\n              [-37.435720879863766, -7.347194112761414],\n              [-37.55182439991776, -7.47656911769667],\n              [-37.70819281408586, -7.548112089175831],\n              [-37.793018256774815, -7.637233186325531],\n              [-37.895619579048116, -7.686495883517253],\n              [-37.97594062703399, -7.771332312534753],\n              [-38.05739326685992, -7.75781912842551],\n              [-38.08753975238491, -7.820375283155585],\n              [-38.150095907115, -7.771332312534753],\n              [-38.16787178669935, -7.806862099046356],\n              [-38.225923546726335, -7.811366493749432],\n              [-38.25719063776285, -7.851642374192082],\n              [-38.301740200009135, -7.829362099904657],\n              [-38.304223110260125, -7.78234061373594],\n              [-38.355518278232495, -7.699767368398511],\n              [-38.41784372006313, -7.748832311676438],\n              [-38.44912179742818, -7.735538854138085],\n              [-38.5251691636104, -7.766827917831677],\n              [-38.587494605441066, -7.740043248841161],\n              [-38.59199900014414, -7.690780551649439],\n              [-38.64554636546805, -7.677487094111086],\n              [-38.699093730791986, -7.619457306741182]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 6727,\n        \"fill\": \"#999\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-53.6699219386025, -26.258005381026635],\n              [-53.66339605944734, -26.25776368179862],\n              [-53.516245174927704, -26.289052745492228],\n              [-53.458193414900734, -26.2890527454922],\n              [-53.355372366056514, -26.239987802214294],\n              [-53.27954472644517, -26.26226807650172],\n              [-53.12339603884794, -26.369604506377534],\n              [-52.99379032101325, -26.351608900222303],\n              [-52.913469273027374, -26.365100111674394],\n              [-52.81537234545715, -26.33831544268395],\n              [-52.6724951427412, -26.378371596555716],\n              [-52.64121706537617, -26.40065187084309],\n              [-52.54290041123505, -26.40065187084314],\n              [-52.458074968546086, -26.43191896187964],\n              [-52.19909424577614, -26.44991456803487],\n              [-52.00717407243934, -26.583793967673216],\n              [-51.873294672800995, -26.601569847257558],\n              [-51.50271482468011, -26.601569847257558],\n              [-51.422393776694236, -26.699897487727206],\n              [-51.28402096868135, -26.650854517106367],\n              [-51.23947140643509, -26.606074241960584],\n              [-51.2795165739783, -26.49897951131271],\n              [-51.28852536338445, -26.423151871701464],\n              [-51.24824948294179, -26.347104505519212],\n              [-51.074094202860806, -26.23550538016832],\n              [-50.94471919792551, -26.244492196917378],\n              [-50.90016963567922, -26.28026368265695],\n              [-50.77057490417306, -26.22223389528704],\n              [-50.73502314500439, -26.23100098546523],\n              [-50.64569330761233, -26.07035888949347],\n              [-50.54287225876814, -26.02579834091862],\n              [-50.45804681607919, -26.02579834091862],\n              [-50.369167418157474, -26.085871585397726],\n              [-50.315169613363224, -26.05258300990912],\n              [-50.19029900313106, -26.05258300990912],\n              [-49.949094159945446, -26.01230712946647],\n              [-49.882275309740265, -26.039069825799885],\n              [-49.7526695919056, -26.123906254817314],\n              [-49.72162222743995, -26.15967774055696],\n              [-49.596520904308335, -26.22223389528704],\n              [-49.48941518733196, -26.22223389528704],\n              [-49.45364370159237, -26.16866455730603],\n              [-49.29749501399516, -26.106130375233022],\n              [-49.21266957130621, -26.030302735621696],\n              [-49.109848522462016, -25.99453124988213],\n              [-48.944691045458626, -26.007802734763388],\n              [-48.91791736279666, -25.97651367106981],\n              [-48.65016954984853, -25.97225097559469],\n              [-48.58537218409546, -25.9862036128457],\n              [-48.619341911953825, -26.179475104593394],\n              [-48.678964716962525, -26.22581543839243],\n              [-48.71384631009005, -26.226958016561014],\n              [-48.74826647741867, -26.268574229086028],\n              [-48.70079455177972, -26.34822511103073],\n              [-48.65152086825947, -26.406496597628575],\n              [-48.65804674741463, -26.51921632849104],\n              [-48.676492793040154, -26.61238039454497],\n              [-48.67784411145112, -26.702819851119898],\n              [-48.61574938251988, -26.878095736712453],\n              [-48.5934691082324, -27.058095743578804],\n              [-48.56826647055232, -27.12335453513083],\n              [-48.55409410673042, -27.196018112121465],\n              [-48.595490592684484, -27.2639795404952],\n              [-48.57186998631471, -27.372876029024326],\n              [-48.64252306518182, -27.55781988373559],\n              [-48.60561998760221, -27.825117257213435],\n              [-48.620693230364736, -28.0755396300475],\n              [-48.6483677919673, -28.2071778186629],\n              [-48.69314806711304, -28.310229580406485],\n              [-48.797320434368146, -28.442746675305386],\n              [-48.799572631719684, -28.575263770204174],\n              [-49.023671761362095, -28.698574321783155],\n              [-49.271391497374395, -28.87114757055383],\n              [-49.49999502171988, -29.075449336159807],\n              [-49.71284415093322, -29.324531376911544],\n              [-49.8152147603071, -29.271203738158505],\n              [-49.86877311195957, -29.21765637283459],\n              [-49.95359855464852, -29.195376098547115],\n              [-50.07869987778014, -29.244419069168003],\n              [-50.0339196026344, -29.320466435350227],\n              [-50.05191520878964, -29.356018194518924],\n              [-50.16801872884366, -29.28469494961064],\n              [-50.16352532046909, -29.195376098547165],\n              [-50.069691088373986, -29.092763789945316],\n              [-50.00714591997246, -29.101552852780515],\n              [-49.94482047814179, -28.949897573557898],\n              [-49.95359855464852, -28.79351817306125],\n              [-49.846492837672145, -28.695432231819552],\n              [-49.797449867051284, -28.623867287683332],\n              [-49.699122226581636, -28.597104591349918],\n              [-49.708120029659256, -28.530263768487643],\n              [-49.73669547020245, -28.51136728339179],\n              [-49.839066079576355, -28.465246676163645],\n              [-49.938525311886025, -28.448151948949075],\n              [-50.06879020943336, -28.444328706615693],\n              [-50.141025319610776, -28.452876070223034],\n              [-50.15496697053325, -28.473794039770993],\n              [-50.23304680749612, -28.468630465355268],\n              [-50.44656610275061, -28.422048432328303],\n              [-50.57752313899624, -28.38627694658873],\n              [-50.73614375051588, -28.235983972105508],\n              [-50.96586788037291, -27.959458082650634],\n              [-51.11729244669618, -27.807802803427933],\n              [-51.190417449485665, -27.78123786100832],\n              [-51.2867236055032, -27.71622076868431],\n              [-51.40641965499111, -27.61316900694075],\n              [-51.487641581917615, -27.564126036319912],\n              [-51.53016965971182, -27.56885015759387],\n              [-51.58236570662484, -27.547470762247087],\n              [-51.64469114845545, -27.4997681237086],\n              [-51.70162230297095, -27.488078670137682],\n              [-51.75359862331311, -27.51191900307839],\n              [-51.873294672800995, -27.509458065484495],\n              [-51.912900387202455, -27.47254400157633],\n              [-51.98422363211071, -27.376699271357644],\n              [-52.05958984592321, -27.31348393691492],\n              [-52.1392407278679, -27.28331547873284],\n              [-52.19234864005006, -27.280854541138964],\n              [-52.22857056525994, -27.29254399470988],\n              [-52.264792490469816, -27.2772510253765],\n              [-52.30439820487129, -27.2830957521619],\n              [-52.34804688817701, -27.276350146435902],\n              [-52.414646011811286, -27.236293992564114],\n              [-52.51072145492941, -27.230449265778645],\n              [-52.6364929441022, -27.259475145792123],\n              [-52.74156619029792, -27.245742235112033],\n              [-52.82639163298688, -27.189492232966188],\n              [-52.900197788146116, -27.176682173883854],\n              [-52.95284427452941, -27.178923384906845],\n              [-52.994240760483564, -27.163388716345494],\n              [-53.030473672021984, -27.137526898952693],\n              [-53.07074955246465, -27.141789594427806],\n              [-53.10359867481151, -27.154401899596394],\n              [-53.13419559980679, -27.140449262345427],\n              [-53.18437016226767, -27.14945805175158],\n              [-53.22711796663276, -27.173737837833983],\n              [-53.263339891842634, -27.163388716345494],\n              [-53.30474736412533, -27.09769047165181],\n              [-53.34749516849041, -27.080595744437176],\n              [-53.39812017042159, -27.08239750231843],\n              [-53.45662236991893, -27.10331547186638],\n              [-53.48969121883664, -27.13324223082043],\n              [-53.49801885587304, -27.17217777918077],\n              [-53.54009649419693, -27.19781987000269],\n              [-53.61569342090888, -27.209970749372474],\n              [-53.65957281711397, -27.20052250682454],\n              [-53.671492983584315, -27.169475142358927],\n              [-53.71852545608158, -27.157543989559997],\n              [-53.80041754904927, -27.16475102108496],\n              [-53.85172370335019, -27.156203657477654],\n              [-53.935417554199105, -27.161147505322504],\n              [-53.9156201901626, -27.159565474012084],\n              [-53.838221505569436, -27.12109135145073],\n              [-53.75857062362479, -26.97822513506327],\n              [-53.71739386424156, -26.882819857986362],\n              [-53.727072819688885, -26.804751007352024],\n              [-53.75339606288054, -26.748720731777155],\n              [-53.74461798637378, -26.666608912238587],\n              [-53.71807501661124, -26.443168962308732],\n              [-53.71086798508634, -26.35182862679312],\n              [-53.66857062019159, -26.288151866551573],\n              [-53.6699219386025, -26.258005381026635]\n            ]\n          ],\n          [\n            [\n              [-48.46477525566689, -27.436333062694985],\n              [-48.4148204197769, -27.399638725357704],\n              [-48.37791734219729, -27.451406305457454],\n              [-48.40964585903265, -27.56636724734284],\n              [-48.496723499073084, -27.706992252707323],\n              [-48.48592393811424, -27.767065497186366],\n              [-48.55454454620076, -27.812307198130952],\n              [-48.54217394026, -27.574694884379255],\n              [-48.50527086268045, -27.495505428233514],\n              [-48.46477525566689, -27.436333062694985]\n            ]\n          ],\n          [\n            [\n              [-48.603148063679726, -26.413703629153474],\n              [-48.66569323208131, -26.28973389786188],\n              [-48.53969103000907, -26.170246588616294],\n              [-48.49762437801377, -26.21885010609543],\n              [-48.53114366640182, -26.313112805003755],\n              [-48.56804674398143, -26.379733901295197],\n              [-48.58447130515475, -26.401552749783775],\n              [-48.603148063679726, -26.413703629153474]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"population\": 11207,\n        \"fill\": \"#999\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-53.935417554199105, -27.161147505322504],\n              [-53.85172370335019, -27.156203657477654],\n              [-53.80041754904927, -27.16475102108496],\n              [-53.71852545608158, -27.157543989559997],\n              [-53.671492983584315, -27.169475142358927],\n              [-53.65957281711397, -27.20052250682454],\n              [-53.61569342090888, -27.209970749372474],\n              [-53.54009649419693, -27.19781987000269],\n              [-53.49801885587304, -27.17217777918077],\n              [-53.48969121883664, -27.13324223082043],\n              [-53.45662236991893, -27.10331547186638],\n              [-53.39812017042159, -27.08239750231843],\n              [-53.34749516849041, -27.080595744437176],\n              [-53.30474736412533, -27.09769047165181],\n              [-53.263339891842634, -27.163388716345494],\n              [-53.22711796663276, -27.173737837833983],\n              [-53.18437016226767, -27.14945805175158],\n              [-53.13419559980679, -27.140449262345427],\n              [-53.10359867481151, -27.154401899596394],\n              [-53.07074955246465, -27.141789594427806],\n              [-53.030473672021984, -27.137526898952693],\n              [-52.994240760483564, -27.163388716345494],\n              [-52.95284427452941, -27.178923384906845],\n              [-52.900197788146116, -27.176682173883854],\n              [-52.82639163298688, -27.189492232966188],\n              [-52.74156619029792, -27.245742235112033],\n              [-52.6364929441022, -27.259475145792123],\n              [-52.51072145492941, -27.230449265778645],\n              [-52.414646011811286, -27.236293992564114],\n              [-52.34804688817701, -27.276350146435902],\n              [-52.30439820487129, -27.2830957521619],\n              [-52.264792490469816, -27.2772510253765],\n              [-52.22857056525994, -27.29254399470988],\n              [-52.19234864005006, -27.280854541138964],\n              [-52.1392407278679, -27.28331547873284],\n              [-52.05958984592321, -27.31348393691492],\n              [-51.98422363211071, -27.376699271357644],\n              [-51.912900387202455, -27.47254400157633],\n              [-51.873294672800995, -27.509458065484495],\n              [-51.75359862331311, -27.51191900307839],\n              [-51.70162230297095, -27.488078670137682],\n              [-51.64469114845545, -27.4997681237086],\n              [-51.58236570662484, -27.547470762247087],\n              [-51.53016965971182, -27.56885015759387],\n              [-51.487641581917615, -27.564126036319912],\n              [-51.40641965499111, -27.61316900694075],\n              [-51.2867236055032, -27.71622076868431],\n              [-51.190417449485665, -27.78123786100832],\n              [-51.11729244669618, -27.807802803427933],\n              [-50.96586788037291, -27.959458082650634],\n              [-50.73614375051588, -28.235983972105508],\n              [-50.57752313899624, -28.38627694658873],\n              [-50.44656610275061, -28.422048432328303],\n              [-50.23304680749612, -28.468630465355268],\n              [-50.15496697053325, -28.473794039770993],\n              [-50.141025319610776, -28.452876070223034],\n              [-50.06879020943336, -28.444328706615693],\n              [-49.938525311886025, -28.448151948949075],\n              [-49.839066079576355, -28.465246676163645],\n              [-49.73669547020245, -28.51136728339179],\n              [-49.708120029659256, -28.530263768487643],\n              [-49.699122226581636, -28.597104591349918],\n              [-49.797449867051284, -28.623867287683332],\n              [-49.846492837672145, -28.695432231819552],\n              [-49.95359855464852, -28.79351817306125],\n              [-49.94482047814179, -28.949897573557898],\n              [-50.00714591997246, -29.101552852780515],\n              [-50.069691088373986, -29.092763789945316],\n              [-50.16352532046909, -29.195376098547165],\n              [-50.16801872884366, -29.28469494961064],\n              [-50.05191520878964, -29.356018194518924],\n              [-50.0339196026344, -29.320466435350227],\n              [-50.07869987778014, -29.244419069168003],\n              [-49.95359855464852, -29.195376098547115],\n              [-49.86877311195957, -29.21765637283459],\n              [-49.8152147603071, -29.271203738158505],\n              [-49.71284415093322, -29.324531376911544],\n              [-49.74592398617949, -29.363225226043852],\n              [-50.03324943659322, -29.801074363840215],\n              [-50.29941521823099, -30.425669114229116],\n              [-50.62004023046188, -30.897729679111798],\n              [-50.74807490331477, -31.06803974420236],\n              [-50.921318318126595, -31.258388872557354],\n              [-51.151723600353364, -31.480466517747693],\n              [-51.46041745978536, -31.70232443636715],\n              [-51.79814818555937, -31.90032004938884],\n              [-51.92031615896971, -31.989638900452327],\n              [-52.03912231584556, -32.114751209912484],\n              [-52.06904907479968, -32.0630056024698],\n              [-52.04316528474979, -31.977488021082557],\n              [-52.05958984592321, -31.91337180769922],\n              [-52.06319336168568, -31.83035910922004],\n              [-51.99502319306956, -31.815044167229566],\n              [-51.89309203683746, -31.867690653612875],\n              [-51.841115716495324, -31.831919167873302],\n              [-51.80332274630365, -31.796609107932575],\n              [-51.68069334709446, -31.774548560216033],\n              [-51.44624509596346, -31.557414762870536],\n              [-51.27208981588248, -31.47686300198523],\n              [-51.17422360121168, -31.339841512383273],\n              [-51.15756832713882, -31.266716509593778],\n              [-51.16139156947216, -31.118906445361525],\n              [-51.106042446267026, -31.08133320174072],\n              [-50.98004024419478, -31.09414326082313],\n              [-50.954398153372864, -31.05206562249925],\n              [-50.9654174409026, -31.005505562129372],\n              [-50.94089595559217, -30.903794132468136],\n              [-50.770124464702775, -30.813354675893144],\n              [-50.689341990918024, -30.704216488136105],\n              [-50.716346386479415, -30.4258888408],\n              [-50.68506830911437, -30.413518234859346],\n              [-50.6148656697176, -30.4569581779227],\n              [-50.582016547370756, -30.43894059911038],\n              [-50.54646478820206, -30.316772625700047],\n              [-50.56357050174523, -30.253557291257323],\n              [-50.64614374708265, -30.236902017184477],\n              [-50.93189815251455, -30.37436295992819],\n              [-51.02504024591141, -30.368737959713613],\n              [-51.04034420157333, -30.26052262355428],\n              [-51.17939816195593, -30.211018227134588],\n              [-51.23361569332104, -30.12147964950021],\n              [-51.24982052792359, -30.06004410028163],\n              [-51.297973605932356, -30.034841462601477],\n              [-51.29504025621108, -30.14105728696579],\n              [-51.28176877132981, -30.244109048709397],\n              [-51.15734860056793, -30.364255537667624],\n              [-51.18749508609292, -30.411958176206085],\n              [-51.246667451631424, -30.467527025982122],\n              [-51.287624484443825, -30.591277030702805],\n              [-51.28312008974075, -30.751479673532806],\n              [-51.31641965155788, -30.702656429482843],\n              [-51.35916745592297, -30.674531428409963],\n              [-51.37649289603701, -30.84686297795264],\n              [-51.45906614137442, -30.912802921874295],\n              [-51.485169657995186, -30.977600287627368],\n              [-51.4635705360775, -31.05274677486898],\n              [-51.50631834044259, -31.10449238231167],\n              [-51.716915272304334, -31.24377705559371],\n              [-51.9268420381249, -31.33894063344266],\n              [-51.97252319221127, -31.383720908588394],\n              [-51.99479248017013, -31.48991476029562],\n              [-52.02697143647579, -31.59905294805266],\n              [-52.11989380330175, -31.694897678271346],\n              [-52.19346924556156, -31.885466533197217],\n              [-52.191447761109444, -31.967600325392873],\n              [-52.167146002369904, -32.088427966720836],\n              [-52.12732056139755, -32.16785912209464],\n              [-52.19009644269852, -32.220725335048826],\n              [-52.27469117248805, -32.32377709679244],\n              [-52.341740735592666, -32.43963891761847],\n              [-52.50846925757786, -32.87524684439184],\n              [-52.65224733923442, -33.13782009659572],\n              [-52.76294558564473, -33.26629422259037],\n              [-52.92089603112319, -33.40197538010994],\n              [-53.3706653353899, -33.74217802980639],\n              [-53.39766973095128, -33.73723418196155],\n              [-53.463598688544394, -33.70976836060131],\n              [-53.518947811749555, -33.677138964825346],\n              [-53.5313184176902, -33.65553984290766],\n              [-53.53762457027452, -33.62293241978878],\n              [-53.53041753874959, -33.500303020579594],\n              [-53.5313184176902, -33.17088894551344],\n              [-53.51197149312405, -33.108574490011335],\n              [-53.482945613110545, -33.06851833613956],\n              [-53.395197807028865, -33.01024684954168],\n              [-53.310141651440475, -32.92699245183453],\n              [-53.214066208322365, -32.82101832669819],\n              [-53.12564823619948, -32.736643323479534],\n              [-53.15736576670629, -32.680173594762884],\n              [-53.231171921865524, -32.625505623927474],\n              [-53.36279912415233, -32.5811648019235],\n              [-53.489471492265736, -32.503315677860044],\n              [-53.601740783657846, -32.40296655293828],\n              [-53.653717103999966, -32.29879418568317],\n              [-53.701200015967544, -32.18629418139163],\n              [-53.74665045715447, -32.0974147834699],\n              [-53.76172369991697, -32.05691917645637],\n              [-53.80604254926385, -32.039824449241756],\n              [-53.876464915231495, -31.994604720954264],\n              [-53.92057502433603, -31.952307356059492],\n              [-53.98514167718969, -31.928225323890835],\n              [-54.10034431830307, -31.901440654900334],\n              [-54.220490807261285, -31.85510032110134],\n              [-54.36989388913244, -31.745083227060768],\n              [-54.47766977215001, -31.622673554422462],\n              [-54.530997410903055, -31.541902066966273],\n              [-54.58769785251913, -31.485190639021653],\n              [-54.89594127248081, -31.391147666684198],\n              [-55.03611583837491, -31.279109088191518],\n              [-55.09124523500918, -31.31397969499048],\n              [-55.17359875377572, -31.279548541333284],\n              [-55.2545899678028, -31.22553975021051],\n              [-55.27889172654233, -31.184143264256356],\n              [-55.31332288019952, -31.14162617279071],\n              [-55.34549085017663, -31.093022655311636],\n              [-55.36596936658283, -31.046220895713788],\n              [-55.449674203760296, -30.964548529316986],\n              [-55.55721937387844, -30.87588885796614],\n              [-55.60312025453567, -30.850708192943074],\n              [-55.627191300375785, -30.85811297838179],\n              [-55.6505921801747, -30.89210467889722],\n              [-55.665214983466896, -30.924953801244065],\n              [-55.70594130337986, -30.94655292316176],\n              [-55.756346578740164, -30.987048530175294],\n              [-55.80787245961197, -31.03677265316587],\n              [-55.87357070430566, -31.069621775512708],\n              [-55.952089994410315, -31.080871775941866],\n              [-56.00474746712216, -31.079289744631517],\n              [-56.015547028081, -31.059734079823023],\n              [-56.01846939147373, -30.991772651449253],\n              [-55.998891754008156, -30.83719500883383],\n              [-56.044792634665384, -30.77758319015357],\n              [-56.10576675808511, -30.71366473068403],\n              [-56.1762001103813, -30.628388848524764],\n              [-56.40727555864926, -30.447487962717688],\n              [-56.72159441829582, -30.18695816762302],\n              [-56.83274310417643, -30.107307285678324],\n              [-56.93714618433097, -30.101001133094016],\n              [-57.03277118797878, -30.109987949843088],\n              [-57.12051899406046, -30.144419103500283],\n              [-57.18689839112389, -30.264807291686473],\n              [-57.21434223982703, -30.283484050211435],\n              [-57.38377339863408, -30.28078141338959],\n              [-57.552292692171946, -30.26120377592401],\n              [-57.60899313378802, -30.18785904656363],\n              [-57.56377340550053, -30.1399147087972],\n              [-57.40514180765234, -30.033940583660858],\n              [-57.31739400157065, -29.939458158181644],\n              [-57.30074971382635, -29.856643213616252],\n              [-57.22469136131558, -29.782177878744378],\n              [-57.08924091669542, -29.716237934822715],\n              [-56.93871722931277, -29.59475111378211],\n              [-56.77245013312644, -29.41789319687927],\n              [-56.67141985583494, -29.287397586432505],\n              [-56.63586809666624, -29.20302258321385],\n              [-56.570620291442864, -29.138005490889896],\n              [-56.47589616673568, -29.092544063374433],\n              [-56.393322921398266, -28.997380485525483],\n              [-56.32245011596031, -28.852470812028862],\n              [-56.22547379390157, -28.737268170915485],\n              [-56.10284439469238, -28.651772562185336],\n              [-56.03422378660596, -28.58088877041883],\n              [-56.01958999698523, -28.524638768273064],\n              [-55.984950103085694, -28.488647555962608],\n              [-55.930271145921736, -28.472893160830374],\n              [-55.90371718983066, -28.443208101104233],\n              [-55.90551894771188, -28.399548431469995],\n              [-55.890445704949386, -28.37008309831473],\n              [-55.858947901013465, -28.35410897661162],\n              [-55.80607070173075, -28.3597339768262],\n              [-55.732044820000624, -28.386716399730496],\n              [-55.687275531183445, -28.38155282531477],\n              [-55.67197157552151, -28.344880460634577],\n              [-55.6915492129871, -28.302802822310696],\n              [-55.74599745725163, -28.255539636913994],\n              [-55.72551894084543, -28.204013756042194],\n              [-55.58242201155859, -28.121001057563006],\n              [-55.47666761299314, -28.089272540727663],\n              [-55.409848762787945, -28.037746659855856],\n              [-55.34639172911726, -27.956074293459054],\n              [-55.24379040684394, -27.898923412372667],\n              [-55.10159435649773, -27.866755442395558],\n              [-55.06379039997749, -27.835927804500827],\n              [-55.06896496072176, -27.796333076427906],\n              [-55.03995006703681, -27.767746649556173],\n              [-54.955794790389035, -27.74726813314998],\n              [-54.91012462263123, -27.708574284017672],\n              [-54.902697864535426, -27.651862856073052],\n              [-54.875693468974035, -27.59921636968975],\n              [-54.82912242227562, -27.550612852210676],\n              [-54.77714610193351, -27.53239751948456],\n              [-54.719775494276234, -27.544987851996098],\n              [-54.665766703153466, -27.526552792699107],\n              [-54.61537241412171, -27.477048396279415],\n              [-54.55484873017228, -27.45410894227934],\n              [-54.48441537787609, -27.45725103224295],\n              [-54.4481934526662, -27.446440484955566],\n              [-54.32691537186794, -27.423501030955492],\n              [-54.26009652166276, -27.38210454500134],\n              [-54.20519783792791, -27.289621631317146],\n              [-54.156374593877956, -27.253850145577573],\n              [-54.113846516083754, -27.274768115125532],\n              [-54.04004036092452, -27.243720750659918],\n              [-53.935417554199105, -27.161147505322504]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#a00\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.478998, -11.558755]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"medianCandidates\": [\n          [-48.10923, -12.415848],\n          [-47.342077, -12.711268],\n          [-47.085436, -12.83535],\n          [-46.998469, -12.886992],\n          [-46.96966, -12.909357],\n          [-46.960667, -12.919802],\n          [-46.958246, -12.925126],\n          [-46.957876, -12.928066],\n          [-46.958058, -12.929791],\n          [-46.958324, -12.930846]\n        ],\n        \"marker-color\": \"#0a0\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-46.958549, -12.931507]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00a\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-54.403759, -14.242099]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#aaa\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-54.363435, -11.529937]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/out/burt-barber-rigby-problem-unweighted.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 4]\n      },\n      \"properties\": {\n        \"weight\": \"10\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [3, 6]\n      },\n      \"properties\": {\n        \"weight\": \"20\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [3.4, 5.2]\n      },\n      \"properties\": {\n        \"weight\": \"10\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4, 4]\n      },\n      \"properties\": {\n        \"weight\": \"20\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.4, 5.2]\n      },\n      \"properties\": {\n        \"weight\": \"10\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.8, 6.2]\n      },\n      \"properties\": {\n        \"weight\": \"80\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 1]\n      },\n      \"properties\": {\n        \"weight\": \"10\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [6, 5]\n      },\n      \"properties\": {\n        \"weight\": \"90\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9, 9]\n      },\n      \"properties\": {\n        \"weight\": \"100\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#a00\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.622222, 5.066667]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"medianCandidates\": [\n          [4.364711, 5.125941],\n          [4.345306, 5.163958],\n          [4.351824, 5.173088],\n          [4.358763, 5.177372],\n          [4.364523, 5.180539],\n          [4.369253, 5.183114],\n          [4.373175, 5.185253],\n          [4.376463, 5.18705],\n          [4.379248, 5.188575],\n          [4.381625, 5.189878]\n        ],\n        \"marker-color\": \"#0a0\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.38367, 5.191]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00a\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5.5, 5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#aaa\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5.2, 5]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/out/burt-barber-rigby-problem.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 4]\n      },\n      \"properties\": {\n        \"weight\": \"10\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [3, 6]\n      },\n      \"properties\": {\n        \"weight\": \"20\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [3.4, 5.2]\n      },\n      \"properties\": {\n        \"weight\": \"10\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4, 4]\n      },\n      \"properties\": {\n        \"weight\": \"20\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.4, 5.2]\n      },\n      \"properties\": {\n        \"weight\": \"10\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.8, 6.2]\n      },\n      \"properties\": {\n        \"weight\": \"80\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 1]\n      },\n      \"properties\": {\n        \"weight\": \"10\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [6, 5]\n      },\n      \"properties\": {\n        \"weight\": \"90\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9, 9]\n      },\n      \"properties\": {\n        \"weight\": \"100\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#a00\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [6.034286, 6.285714]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"medianCandidates\": [\n          [4.76287, 5.316638],\n          [4.420083, 5.189567],\n          [4.384602, 5.19066],\n          [4.385935, 5.192219],\n          [4.387405, 5.193052],\n          [4.388702, 5.193767],\n          [4.389844, 5.194396],\n          [4.390853, 5.194952],\n          [4.391748, 5.195445],\n          [4.392545, 5.195884]\n        ],\n        \"marker-color\": \"#0a0\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.393255, 5.196275]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00a\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5.5, 5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#aaa\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5.2, 5]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/out/kuhn-kuenne-ukraine-problem.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [28, 54]\n      },\n      \"properties\": {\n        \"name\": \"Minsk\",\n        \"populationProportion\": \"0.012\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [24, 50]\n      },\n      \"properties\": {\n        \"name\": \"Lvov\",\n        \"populationProportion\": \"0.010\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [28, 47]\n      },\n      \"properties\": {\n        \"name\": \"Kishinev\",\n        \"populationProportion\": \"0.005\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [31, 46]\n      },\n      \"properties\": {\n        \"name\": \"Odessa\",\n        \"populationProportion\": \"0.014\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [32, 47]\n      },\n      \"properties\": {\n        \"name\": \"Nikolaev\",\n        \"populationProportion\": \"0.005\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [33, 47]\n      },\n      \"properties\": {\n        \"name\": \"Kherson\",\n        \"populationProportion\": \"0.004\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [34, 45]\n      },\n      \"properties\": {\n        \"name\": \"Sevastopol\",\n        \"populationProportion\": \"0.004\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [34, 45]\n      },\n      \"properties\": {\n        \"name\": \"Simferopol\",\n        \"populationProportion\": \"0.004\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [34, 46]\n      },\n      \"properties\": {\n        \"name\": \"Krivoi Rog\",\n        \"populationProportion\": \"0.009\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35, 48]\n      },\n      \"properties\": {\n        \"name\": \"Dneprodzerhinsk\",\n        \"populationProportion\": \"0.004\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35, 48]\n      },\n      \"properties\": {\n        \"name\": \"Dnepropetrovsk\",\n        \"populationProportion\": \"0.015\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [36, 48]\n      },\n      \"properties\": {\n        \"name\": \"Zaporozhe\",\n        \"populationProportion\": \"0.010\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [38, 47]\n      },\n      \"properties\": {\n        \"name\": \"Zhdanov\",\n        \"populationProportion\": \"0.007\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [37, 48]\n      },\n      \"properties\": {\n        \"name\": \"Stalino\",\n        \"populationProportion\": \"0.016\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [38, 48]\n      },\n      \"properties\": {\n        \"name\": \"Makeyevka\",\n        \"populationProportion\": \"0.008\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [38, 48]\n      },\n      \"properties\": {\n        \"name\": \"Gorlovka\",\n        \"populationProportion\": \"0.007\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [39, 47]\n      },\n      \"properties\": {\n        \"name\": \"Taganrog\",\n        \"populationProportion\": \"0.005\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [29, 45]\n      },\n      \"properties\": {\n        \"name\": \"Krasnodar\",\n        \"populationProportion\": \"0.007\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [40, 47]\n      },\n      \"properties\": {\n        \"name\": \"Rostov\",\n        \"populationProportion\": \"0.014\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [40, 48]\n      },\n      \"properties\": {\n        \"name\": \"Shakhty\",\n        \"populationProportion\": \"0.004\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [39, 49]\n      },\n      \"properties\": {\n        \"name\": \"Kadiyevka\",\n        \"populationProportion\": \"0.004\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [37, 51]\n      },\n      \"properties\": {\n        \"name\": \"Kharkhov\",\n        \"populationProportion\": \"0.021\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [31, 50]\n      },\n      \"properties\": {\n        \"name\": \"Kiev\",\n        \"populationProportion\": \"0.026\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [31, 52]\n      },\n      \"properties\": {\n        \"name\": \"Gomel\",\n        \"populationProportion\": \"0.004\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#a00\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [34.03653, 48.438356]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"medianCandidates\": [\n          [34.720621, 47.820867],\n          [34.986039, 47.805917],\n          [35.071027, 47.84065],\n          [35.094461, 47.860744],\n          [35.09865, 47.870221],\n          [35.097737, 47.875045],\n          [35.095936, 47.877877],\n          [35.094323, 47.879729],\n          [35.093079, 47.881012],\n          [35.092161, 47.881925]\n        ],\n        \"marker-color\": \"#0a0\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.091493, 47.882584]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00a\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [32, 49.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#aaa\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [31.773481, 49.020258]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/out/lines.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.125738749668566, 38.76746626035359],\n          [-9.118958660834354, 38.7838161797457]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.161999067964235, 38.75179370240931],\n          [-9.147535970888825, 38.72884802907016]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.112236293805175, 38.73875598177839],\n          [-9.199016504129736, 38.74023266794694]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.172145822943001, 38.78402506701773],\n          [-9.136258235151075, 38.799637924903166]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.10727033052904, 38.73484447193901],\n          [-9.053278383064967, 38.679128517168316]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.169262101247146, 38.772240341481],\n          [-9.15765120809318, 38.75627601637043]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.14661901988399, 38.72004765296632],\n          [-9.204143991573973, 38.78492020730122]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.138999685485105, 38.778251383504895],\n          [-9.233963423890962, 38.775678685071206]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.135802790342526, 38.78077103840063],\n          [-9.151642146107683, 38.74294839813439]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.150669919917616, 38.71412491974352],\n          [-9.124492811616365, 38.64953861366426]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.097246787705444, 38.73944669482268],\n          [-9.075048980801867, 38.723268791247854]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.09735344272555, 38.782582410972],\n          [-9.117047224630989, 38.759902043510316]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.105282192601013, 38.73863730130412],\n          [-9.04396012939997, 38.70232905706804]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.092942812805378, 38.70204485360651],\n          [-9.073458460421703, 38.69601533701997]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.1520226476006, 38.72134120396426],\n          [-9.203089429895131, 38.715861478160406]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.127291465845172, 38.76640254826793],\n          [-9.18111081229971, 38.77980610930915]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.168224491230864, 38.738032415084795],\n          [-9.188253123198445, 38.74639631949864]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.160274853546044, 38.74488955597258],\n          [-9.20667786946356, 38.77364846537799]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.138399322591825, 38.79860043526947],\n          [-9.179620290997937, 38.88735586861508]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-9.170032930346219, 38.72088087810547],\n          [-9.169243656966975, 38.70388504357632]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#a00\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.142357, 38.748117]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"medianCandidates\": [\n          [-9.148816, 38.749633],\n          [-9.15107, 38.750009],\n          [-9.15185, 38.750097],\n          [-9.152124, 38.750113]\n        ],\n        \"marker-color\": \"#0a0\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.152222, 38.750111]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00a\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.138962, 38.768447]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#aaa\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.144828, 38.753529]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/out/square.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9, 9]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.25, 9.25]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.5, 9.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.75, 9.75]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10, 10]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#a00\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.916667, 7.916667]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"medianCandidates\": [\n          [9.075379, 9.075379],\n          [9.15887, 9.15887],\n          [9.245356, 9.245356],\n          [9.254201, 9.254201],\n          [9.254223, 9.254223]\n        ],\n        \"marker-color\": \"#0a0\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.254246, 9.254246]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00a\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#aaa\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.916667, 7.916667]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/out/squares-weighted.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#333\",\n        \"weight\": 100\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.12013592725509],\n            [-9.299992605418552, 38.16510194544132],\n            [-9.242851861013252, 38.16510194544132],\n            [-9.242851861013252, 38.12013592725509],\n            [-9.299992605418552, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#777\",\n        \"weight\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.16510194544132],\n            [-9.299992605418552, 38.21006796362755],\n            [-9.242851861013252, 38.21006796362755],\n            [-9.242851861013252, 38.16510194544132],\n            [-9.299992605418552, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#777\",\n        \"weight\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.21006796362755],\n            [-9.299992605418552, 38.25503398181378],\n            [-9.242851861013252, 38.25503398181378],\n            [-9.242851861013252, 38.21006796362755],\n            [-9.299992605418552, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#777\",\n        \"weight\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.25503398181378],\n            [-9.299992605418552, 38.30000000000001],\n            [-9.242851861013252, 38.30000000000001],\n            [-9.242851861013252, 38.25503398181378],\n            [-9.299992605418552, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#777\",\n        \"weight\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.30000000000001],\n            [-9.299992605418552, 38.34496601818624],\n            [-9.242851861013252, 38.34496601818624],\n            [-9.242851861013252, 38.30000000000001],\n            [-9.299992605418552, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#777\",\n        \"weight\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.34496601818624],\n            [-9.299992605418552, 38.38993203637247],\n            [-9.242851861013252, 38.38993203637247],\n            [-9.242851861013252, 38.34496601818624],\n            [-9.299992605418552, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#777\",\n        \"weight\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.38993203637247],\n            [-9.299992605418552, 38.4348980545587],\n            [-9.242851861013252, 38.4348980545587],\n            [-9.242851861013252, 38.38993203637247],\n            [-9.299992605418552, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#777\",\n        \"weight\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.4348980545587],\n            [-9.299992605418552, 38.47986407274493],\n            [-9.242851861013252, 38.47986407274493],\n            [-9.242851861013252, 38.4348980545587],\n            [-9.299992605418552, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#777\",\n        \"weight\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.12013592725509],\n            [-9.242851861013252, 38.16510194544132],\n            [-9.185711116607951, 38.16510194544132],\n            [-9.185711116607951, 38.12013592725509],\n            [-9.242851861013252, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.16510194544132],\n            [-9.242851861013252, 38.21006796362755],\n            [-9.185711116607951, 38.21006796362755],\n            [-9.185711116607951, 38.16510194544132],\n            [-9.242851861013252, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.21006796362755],\n            [-9.242851861013252, 38.25503398181378],\n            [-9.185711116607951, 38.25503398181378],\n            [-9.185711116607951, 38.21006796362755],\n            [-9.242851861013252, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.25503398181378],\n            [-9.242851861013252, 38.30000000000001],\n            [-9.185711116607951, 38.30000000000001],\n            [-9.185711116607951, 38.25503398181378],\n            [-9.242851861013252, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.30000000000001],\n            [-9.242851861013252, 38.34496601818624],\n            [-9.185711116607951, 38.34496601818624],\n            [-9.185711116607951, 38.30000000000001],\n            [-9.242851861013252, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.34496601818624],\n            [-9.242851861013252, 38.38993203637247],\n            [-9.185711116607951, 38.38993203637247],\n            [-9.185711116607951, 38.34496601818624],\n            [-9.242851861013252, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.38993203637247],\n            [-9.242851861013252, 38.4348980545587],\n            [-9.185711116607951, 38.4348980545587],\n            [-9.185711116607951, 38.38993203637247],\n            [-9.242851861013252, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.4348980545587],\n            [-9.242851861013252, 38.47986407274493],\n            [-9.185711116607951, 38.47986407274493],\n            [-9.185711116607951, 38.4348980545587],\n            [-9.242851861013252, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#777\",\n        \"weight\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.12013592725509],\n            [-9.185711116607951, 38.16510194544132],\n            [-9.12857037220265, 38.16510194544132],\n            [-9.12857037220265, 38.12013592725509],\n            [-9.185711116607951, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.16510194544132],\n            [-9.185711116607951, 38.21006796362755],\n            [-9.12857037220265, 38.21006796362755],\n            [-9.12857037220265, 38.16510194544132],\n            [-9.185711116607951, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.21006796362755],\n            [-9.185711116607951, 38.25503398181378],\n            [-9.12857037220265, 38.25503398181378],\n            [-9.12857037220265, 38.21006796362755],\n            [-9.185711116607951, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.25503398181378],\n            [-9.185711116607951, 38.30000000000001],\n            [-9.12857037220265, 38.30000000000001],\n            [-9.12857037220265, 38.25503398181378],\n            [-9.185711116607951, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.30000000000001],\n            [-9.185711116607951, 38.34496601818624],\n            [-9.12857037220265, 38.34496601818624],\n            [-9.12857037220265, 38.30000000000001],\n            [-9.185711116607951, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.34496601818624],\n            [-9.185711116607951, 38.38993203637247],\n            [-9.12857037220265, 38.38993203637247],\n            [-9.12857037220265, 38.34496601818624],\n            [-9.185711116607951, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.38993203637247],\n            [-9.185711116607951, 38.4348980545587],\n            [-9.12857037220265, 38.4348980545587],\n            [-9.12857037220265, 38.38993203637247],\n            [-9.185711116607951, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.4348980545587],\n            [-9.185711116607951, 38.47986407274493],\n            [-9.12857037220265, 38.47986407274493],\n            [-9.12857037220265, 38.4348980545587],\n            [-9.185711116607951, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#777\",\n        \"weight\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.12013592725509],\n            [-9.12857037220265, 38.16510194544132],\n            [-9.07142962779735, 38.16510194544132],\n            [-9.07142962779735, 38.12013592725509],\n            [-9.12857037220265, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.16510194544132],\n            [-9.12857037220265, 38.21006796362755],\n            [-9.07142962779735, 38.21006796362755],\n            [-9.07142962779735, 38.16510194544132],\n            [-9.12857037220265, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.21006796362755],\n            [-9.12857037220265, 38.25503398181378],\n            [-9.07142962779735, 38.25503398181378],\n            [-9.07142962779735, 38.21006796362755],\n            [-9.12857037220265, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.25503398181378],\n            [-9.12857037220265, 38.30000000000001],\n            [-9.07142962779735, 38.30000000000001],\n            [-9.07142962779735, 38.25503398181378],\n            [-9.12857037220265, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.30000000000001],\n            [-9.12857037220265, 38.34496601818624],\n            [-9.07142962779735, 38.34496601818624],\n            [-9.07142962779735, 38.30000000000001],\n            [-9.12857037220265, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.34496601818624],\n            [-9.12857037220265, 38.38993203637247],\n            [-9.07142962779735, 38.38993203637247],\n            [-9.07142962779735, 38.34496601818624],\n            [-9.12857037220265, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.38993203637247],\n            [-9.12857037220265, 38.4348980545587],\n            [-9.07142962779735, 38.4348980545587],\n            [-9.07142962779735, 38.38993203637247],\n            [-9.12857037220265, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ccc\",\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.4348980545587],\n            [-9.12857037220265, 38.47986407274493],\n            [-9.07142962779735, 38.47986407274493],\n            [-9.07142962779735, 38.4348980545587],\n            [-9.12857037220265, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#a00\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.250764, 38.212184]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"medianCandidates\": [\n          [-9.207196, 38.253611],\n          [-9.193733, 38.273498],\n          [-9.18952, 38.284859],\n          [-9.18743, 38.290992],\n          [-9.186424, 38.294559],\n          [-9.185995, 38.296697],\n          [-9.185823, 38.297992],\n          [-9.185755, 38.298781],\n          [-9.185728, 38.299263]\n        ],\n        \"marker-color\": \"#0a0\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.185718, 38.299557]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00a\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.185711, 38.3]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#aaa\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.185711, 38.3]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/out/squares.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.12013592725509],\n            [-9.299992605418552, 38.16510194544132],\n            [-9.242851861013252, 38.16510194544132],\n            [-9.242851861013252, 38.12013592725509],\n            [-9.299992605418552, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.16510194544132],\n            [-9.299992605418552, 38.21006796362755],\n            [-9.242851861013252, 38.21006796362755],\n            [-9.242851861013252, 38.16510194544132],\n            [-9.299992605418552, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.21006796362755],\n            [-9.299992605418552, 38.25503398181378],\n            [-9.242851861013252, 38.25503398181378],\n            [-9.242851861013252, 38.21006796362755],\n            [-9.299992605418552, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.25503398181378],\n            [-9.299992605418552, 38.30000000000001],\n            [-9.242851861013252, 38.30000000000001],\n            [-9.242851861013252, 38.25503398181378],\n            [-9.299992605418552, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.30000000000001],\n            [-9.299992605418552, 38.34496601818624],\n            [-9.242851861013252, 38.34496601818624],\n            [-9.242851861013252, 38.30000000000001],\n            [-9.299992605418552, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.34496601818624],\n            [-9.299992605418552, 38.38993203637247],\n            [-9.242851861013252, 38.38993203637247],\n            [-9.242851861013252, 38.34496601818624],\n            [-9.299992605418552, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.38993203637247],\n            [-9.299992605418552, 38.4348980545587],\n            [-9.242851861013252, 38.4348980545587],\n            [-9.242851861013252, 38.38993203637247],\n            [-9.299992605418552, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.4348980545587],\n            [-9.299992605418552, 38.47986407274493],\n            [-9.242851861013252, 38.47986407274493],\n            [-9.242851861013252, 38.4348980545587],\n            [-9.299992605418552, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.12013592725509],\n            [-9.242851861013252, 38.16510194544132],\n            [-9.185711116607951, 38.16510194544132],\n            [-9.185711116607951, 38.12013592725509],\n            [-9.242851861013252, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.16510194544132],\n            [-9.242851861013252, 38.21006796362755],\n            [-9.185711116607951, 38.21006796362755],\n            [-9.185711116607951, 38.16510194544132],\n            [-9.242851861013252, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.21006796362755],\n            [-9.242851861013252, 38.25503398181378],\n            [-9.185711116607951, 38.25503398181378],\n            [-9.185711116607951, 38.21006796362755],\n            [-9.242851861013252, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.25503398181378],\n            [-9.242851861013252, 38.30000000000001],\n            [-9.185711116607951, 38.30000000000001],\n            [-9.185711116607951, 38.25503398181378],\n            [-9.242851861013252, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.30000000000001],\n            [-9.242851861013252, 38.34496601818624],\n            [-9.185711116607951, 38.34496601818624],\n            [-9.185711116607951, 38.30000000000001],\n            [-9.242851861013252, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.34496601818624],\n            [-9.242851861013252, 38.38993203637247],\n            [-9.185711116607951, 38.38993203637247],\n            [-9.185711116607951, 38.34496601818624],\n            [-9.242851861013252, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.38993203637247],\n            [-9.242851861013252, 38.4348980545587],\n            [-9.185711116607951, 38.4348980545587],\n            [-9.185711116607951, 38.38993203637247],\n            [-9.242851861013252, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.4348980545587],\n            [-9.242851861013252, 38.47986407274493],\n            [-9.185711116607951, 38.47986407274493],\n            [-9.185711116607951, 38.4348980545587],\n            [-9.242851861013252, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.12013592725509],\n            [-9.185711116607951, 38.16510194544132],\n            [-9.12857037220265, 38.16510194544132],\n            [-9.12857037220265, 38.12013592725509],\n            [-9.185711116607951, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.16510194544132],\n            [-9.185711116607951, 38.21006796362755],\n            [-9.12857037220265, 38.21006796362755],\n            [-9.12857037220265, 38.16510194544132],\n            [-9.185711116607951, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.21006796362755],\n            [-9.185711116607951, 38.25503398181378],\n            [-9.12857037220265, 38.25503398181378],\n            [-9.12857037220265, 38.21006796362755],\n            [-9.185711116607951, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.25503398181378],\n            [-9.185711116607951, 38.30000000000001],\n            [-9.12857037220265, 38.30000000000001],\n            [-9.12857037220265, 38.25503398181378],\n            [-9.185711116607951, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.30000000000001],\n            [-9.185711116607951, 38.34496601818624],\n            [-9.12857037220265, 38.34496601818624],\n            [-9.12857037220265, 38.30000000000001],\n            [-9.185711116607951, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.34496601818624],\n            [-9.185711116607951, 38.38993203637247],\n            [-9.12857037220265, 38.38993203637247],\n            [-9.12857037220265, 38.34496601818624],\n            [-9.185711116607951, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.38993203637247],\n            [-9.185711116607951, 38.4348980545587],\n            [-9.12857037220265, 38.4348980545587],\n            [-9.12857037220265, 38.38993203637247],\n            [-9.185711116607951, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.4348980545587],\n            [-9.185711116607951, 38.47986407274493],\n            [-9.12857037220265, 38.47986407274493],\n            [-9.12857037220265, 38.4348980545587],\n            [-9.185711116607951, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.12013592725509],\n            [-9.12857037220265, 38.16510194544132],\n            [-9.07142962779735, 38.16510194544132],\n            [-9.07142962779735, 38.12013592725509],\n            [-9.12857037220265, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.16510194544132],\n            [-9.12857037220265, 38.21006796362755],\n            [-9.07142962779735, 38.21006796362755],\n            [-9.07142962779735, 38.16510194544132],\n            [-9.12857037220265, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.21006796362755],\n            [-9.12857037220265, 38.25503398181378],\n            [-9.07142962779735, 38.25503398181378],\n            [-9.07142962779735, 38.21006796362755],\n            [-9.12857037220265, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.25503398181378],\n            [-9.12857037220265, 38.30000000000001],\n            [-9.07142962779735, 38.30000000000001],\n            [-9.07142962779735, 38.25503398181378],\n            [-9.12857037220265, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.30000000000001],\n            [-9.12857037220265, 38.34496601818624],\n            [-9.07142962779735, 38.34496601818624],\n            [-9.07142962779735, 38.30000000000001],\n            [-9.12857037220265, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.34496601818624],\n            [-9.12857037220265, 38.38993203637247],\n            [-9.07142962779735, 38.38993203637247],\n            [-9.07142962779735, 38.34496601818624],\n            [-9.12857037220265, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.38993203637247],\n            [-9.12857037220265, 38.4348980545587],\n            [-9.07142962779735, 38.4348980545587],\n            [-9.07142962779735, 38.38993203637247],\n            [-9.12857037220265, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.4348980545587],\n            [-9.12857037220265, 38.47986407274493],\n            [-9.07142962779735, 38.47986407274493],\n            [-9.07142962779735, 38.4348980545587],\n            [-9.12857037220265, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#a00\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.191425, 38.295503]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"medianCandidates\": [\n          [-9.187967, 38.297241],\n          [-9.186594, 38.298321],\n          [-9.186056, 38.298981],\n          [-9.185845, 38.299385]\n        ],\n        \"marker-color\": \"#0a0\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.185763, 38.299631]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00a\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.185711, 38.3]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#aaa\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.185711, 38.3]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/out/steiners-problem-bad-weights.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": -10\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": -30\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 8]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#a00\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 8]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"medianCandidates\": [],\n        \"marker-color\": \"#0a0\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 8]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00a\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.5, 4]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#aaa\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1.871795, 2.794872]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/out/steiners-problem-low-tolerance.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 8]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#a00\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1.5, 2.25]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"medianCandidates\": [],\n        \"marker-color\": \"#0a0\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.803941, 1.162109]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00a\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.5, 4]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#aaa\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1.871795, 2.794872]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test/out/steiners-problem.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5, 8]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#a00\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1.5, 2.25]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"medianCandidates\": [\n          [0.803941, 1.162109],\n          [0.507632, 0.764604],\n          [0.412131, 0.666232],\n          [0.386985, 0.638468],\n          [0.381397, 0.628272],\n          [0.380946, 0.623563],\n          [0.381642, 0.620951],\n          [0.382427, 0.619321],\n          [0.383065, 0.618239],\n          [0.383537, 0.617501]\n        ],\n        \"marker-color\": \"#0a0\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.383876, 0.616989]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00a\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.5, 4]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#aaa\",\n        \"marker-symbol\": \"cross\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1.871795, 2.794872]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-median/test.ts",
    "content": "import test from \"tape\";\nimport { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { center } from \"@turf/center\";\nimport { truncate } from \"@turf/truncate\";\nimport { centerMean } from \"@turf/center-mean\";\nimport { centerOfMass } from \"@turf/center-of-mass\";\nimport { featureCollection, round } from \"@turf/helpers\";\nimport { centerMedian } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-center-median\", (t) => {\n  glob\n    .sync(path.join(__dirname, \"test\", \"in\", \"*.json\"))\n    .forEach((filepath) => {\n      // Define params\n      const { name } = path.parse(filepath);\n      const geojson = loadJsonFileSync(filepath);\n      const options = geojson.properties;\n\n      // Calculate Centers\n      const meanCenter = centerMean(geojson, options);\n      const medianCenter = centerMedian(geojson, options);\n      const extentCenter = center(geojson);\n      const massCenter = centerOfMass(geojson);\n\n      // Truncate median properties\n      medianCenter.properties.medianCandidates.forEach((candidate, index) => {\n        medianCenter.properties.medianCandidates[index] = [\n          round(candidate[0], 6),\n          round(candidate[1], 6),\n        ];\n      });\n      const results = featureCollection([\n        ...geojson.features,\n        colorize(meanCenter, \"#a00\"),\n        colorize(medianCenter, \"#0a0\"),\n        colorize(extentCenter, \"#00a\"),\n        colorize(massCenter, \"#aaa\"),\n      ]);\n\n      const out = filepath.replace(\n        path.join(\"test\", \"in\"),\n        path.join(\"test\", \"out\")\n      );\n      if (process.env.REGEN) writeJsonFileSync(out, results);\n      t.deepEqual(results, loadJsonFileSync(out), name);\n    });\n  t.end();\n});\n\nfunction colorize(point, color) {\n  point.properties[\"marker-color\"] = color;\n  point.properties[\"marker-symbol\"] = \"cross\";\n  return truncate(point);\n}\n"
  },
  {
    "path": "packages/turf-center-median/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-center-of-mass/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-center-of-mass/README.md",
    "content": "# @turf/center-of-mass\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## centerOfMass\n\nTakes any [Feature][1] or a [FeatureCollection][2] and returns its [center of mass][3] using this formula: [Centroid of Polygon][4].\n\n### Parameters\n\n*   `geojson` **[GeoJSON][5]** GeoJSON to be centered\n*   `options` **[Object][6]** Optional Parameters (optional, default `{}`)\n\n    *   `options.properties` **[Object][6]** Translate Properties to Feature (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar polygon = turf.polygon([[[-81, 41], [-88, 36], [-84, 31], [-80, 33], [-77, 39], [-81, 41]]]);\n\nvar center = turf.centerOfMass(polygon);\n\n//addToMap\nvar addToMap = [polygon, center]\n```\n\nReturns **[Feature][1]<[Point][7]>** the center of mass\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[3]: https://en.wikipedia.org/wiki/Center_of_mass\n\n[4]: https://en.wikipedia.org/wiki/Centroid#Centroid_of_polygon\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/center-of-mass\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-center-of-mass/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { centerOfMass } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst fixtures = glob\n  .sync(path.join(__dirname, \"test\", \"in\", \"*.geojson\"))\n  .map((input) => {\n    return {\n      name: path.parse(input).name,\n      geojson: loadJsonFileSync(input),\n    };\n  });\n\n/**\n * Single Process Benchmark\n *\n * feature-collection: 1.645ms\n * imbalanced-polygon: 0.073ms\n * linestring: 0.134ms\n * point: 0.253ms\n * polygon: 0.034ms\n */\nfor (const { name, geojson } of fixtures) {\n  console.time(name);\n  centerOfMass(geojson);\n  console.timeEnd(name);\n}\n\n/**\n * Benchmark Results\n *\n * feature-collection x 268,173 ops/sec ±1.69% (89 runs sampled)\n * imbalanced-polygon x 227,405 ops/sec ±1.76% (86 runs sampled)\n * linestring x 975,430 ops/sec ±3.57% (83 runs sampled)\n * point x 8,949,698 ops/sec ±2.01% (85 runs sampled)\n * polygon x 463,325 ops/sec ±1.73% (89 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-center-of-mass\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => centerOfMass(geojson));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-center-of-mass/index.ts",
    "content": "import { Feature, GeoJsonProperties, Point, Position } from \"geojson\";\nimport { convex } from \"@turf/convex\";\nimport { centroid } from \"@turf/centroid\";\nimport { point } from \"@turf/helpers\";\nimport { getType, getCoord } from \"@turf/invariant\";\nimport { coordEach } from \"@turf/meta\";\n\n/**\n * Takes any {@link Feature} or a {@link FeatureCollection} and returns its [center of mass](https://en.wikipedia.org/wiki/Center_of_mass) using this formula: [Centroid of Polygon](https://en.wikipedia.org/wiki/Centroid#Centroid_of_polygon).\n *\n * @function\n * @param {GeoJSON} geojson GeoJSON to be centered\n * @param {Object} [options={}] Optional Parameters\n * @param {Object} [options.properties={}] Translate Properties to Feature\n * @returns {Feature<Point>} the center of mass\n * @example\n * var polygon = turf.polygon([[[-81, 41], [-88, 36], [-84, 31], [-80, 33], [-77, 39], [-81, 41]]]);\n *\n * var center = turf.centerOfMass(polygon);\n *\n * //addToMap\n * var addToMap = [polygon, center]\n */\nfunction centerOfMass<P extends GeoJsonProperties = GeoJsonProperties>(\n  geojson: any,\n  options: {\n    properties?: P;\n  } = {}\n): Feature<Point, P> {\n  switch (getType(geojson)) {\n    case \"Point\":\n      return point(getCoord(geojson), options.properties);\n    case \"Polygon\":\n      var coords: Position[] = [];\n      coordEach(geojson, function (coord) {\n        coords.push(coord);\n      });\n\n      // First, we neutralize the feature (set it around coordinates [0,0]) to prevent rounding errors\n      // We take any point to translate all the points around 0\n      var centre = centroid(geojson, { properties: options.properties });\n      var translation = centre.geometry.coordinates;\n      var sx = 0;\n      var sy = 0;\n      var sArea = 0;\n      var i, pi, pj, xi, xj, yi, yj, a;\n\n      var neutralizedPoints = coords.map(function (point) {\n        return [point[0] - translation[0], point[1] - translation[1]];\n      });\n\n      for (i = 0; i < coords.length - 1; i++) {\n        // pi is the current point\n        pi = neutralizedPoints[i];\n        xi = pi[0];\n        yi = pi[1];\n\n        // pj is the next point (pi+1)\n        pj = neutralizedPoints[i + 1];\n        xj = pj[0];\n        yj = pj[1];\n\n        // a is the common factor to compute the signed area and the final coordinates\n        a = xi * yj - xj * yi;\n\n        // sArea is the sum used to compute the signed area\n        sArea += a;\n\n        // sx and sy are the sums used to compute the final coordinates\n        sx += (xi + xj) * a;\n        sy += (yi + yj) * a;\n      }\n\n      // Shape has no area: fallback on turf.centroid\n      if (sArea === 0) {\n        return centre;\n      } else {\n        // Compute the signed area, and factorize 1/6A\n        var area = sArea * 0.5;\n        var areaFactor = 1 / (6 * area);\n\n        // Compute the final coordinates, adding back the values that have been neutralized\n        return point(\n          [translation[0] + areaFactor * sx, translation[1] + areaFactor * sy],\n          options.properties\n        );\n      }\n    default:\n      // Not a polygon: Compute the convex hull and work with that\n      var hull = convex(geojson);\n\n      if (hull) return centerOfMass(hull, { properties: options.properties });\n      // Hull is empty: fallback on the centroid\n      else return centroid(geojson, { properties: options.properties });\n  }\n}\n\nexport { centerOfMass };\nexport default centerOfMass;\n"
  },
  {
    "path": "packages/turf-center-of-mass/package.json",
    "content": "{\n  \"name\": \"@turf/center-of-mass\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Finds the “balance point” of irregular shapes, like a country outline.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gis\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/centroid\": \"workspace:*\",\n    \"@turf/convex\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-center-of-mass/test/in/feature-collection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833351373672485, 45.760809294695534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.8331475257873535, 45.760296567821456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833984374999999, 45.76073818687033]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.834005832672119, 45.76022171678877]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-of-mass/test/in/imbalanced-polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [4.854240417480469, 45.77258200374433],\n        [4.8445844650268555, 45.777431068484894],\n        [4.845442771911621, 45.778658234059755],\n        [4.845914840698242, 45.779376562352425],\n        [4.846644401550292, 45.78021460033108],\n        [4.847245216369629, 45.78078326178593],\n        [4.848060607910156, 45.78138184652523],\n        [4.8487043380737305, 45.78186070968964],\n        [4.849562644958495, 45.78248921135124],\n        [4.850893020629883, 45.78302792142197],\n        [4.852008819580077, 45.78374619341895],\n        [4.852995872497559, 45.784075398324866],\n        [4.853854179382324, 45.78443452873236],\n        [4.8549699783325195, 45.78470387501975],\n        [4.85569953918457, 45.784793656826345],\n        [4.857330322265624, 45.784853511283764],\n        [4.858231544494629, 45.78494329284938],\n        [4.859304428100585, 45.784883438488365],\n        [4.858360290527344, 45.77294120818474],\n        [4.854240417480469, 45.77258200374433]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-center-of-mass/test/in/linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [4.86020565032959, 45.76884015325622],\n      [4.85994815826416, 45.749558161214516]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-center-of-mass/test/in/point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [4.831961989402771, 45.75764678012361]\n  }\n}\n"
  },
  {
    "path": "packages/turf-center-of-mass/test/in/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [4.8250579833984375, 45.79398056386735],\n        [4.882392883300781, 45.79254427435898],\n        [4.910373687744141, 45.76081677972451],\n        [4.894924163818359, 45.7271539426975],\n        [4.824199676513671, 45.71337148333104],\n        [4.773387908935547, 45.74021417890731],\n        [4.778022766113281, 45.778418789239055],\n        [4.8250579833984375, 45.79398056386735]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-center-of-mass/test/out/feature-collection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833617839987766, 45.7605038801208]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833351373672485, 45.760809294695534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.8331475257873535, 45.760296567821456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833984374999999, 45.76073818687033]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.834005832672119, 45.76022171678877]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-of-mass/test/out/imbalanced-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.853372894819807, 45.77877742486245]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.854240417480469, 45.77258200374433],\n            [4.8445844650268555, 45.777431068484894],\n            [4.845442771911621, 45.778658234059755],\n            [4.845914840698242, 45.779376562352425],\n            [4.846644401550292, 45.78021460033108],\n            [4.847245216369629, 45.78078326178593],\n            [4.848060607910156, 45.78138184652523],\n            [4.8487043380737305, 45.78186070968964],\n            [4.849562644958495, 45.78248921135124],\n            [4.850893020629883, 45.78302792142197],\n            [4.852008819580077, 45.78374619341895],\n            [4.852995872497559, 45.784075398324866],\n            [4.853854179382324, 45.78443452873236],\n            [4.8549699783325195, 45.78470387501975],\n            [4.85569953918457, 45.784793656826345],\n            [4.857330322265624, 45.784853511283764],\n            [4.858231544494629, 45.78494329284938],\n            [4.859304428100585, 45.784883438488365],\n            [4.858360290527344, 45.77294120818474],\n            [4.854240417480469, 45.77258200374433]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-of-mass/test/out/linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.860076904296875, 45.75919915723537]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.86020565032959, 45.76884015325622],\n          [4.85994815826416, 45.749558161214516]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-of-mass/test/out/point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.831961989402771, 45.75764678012361]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.831961989402771, 45.75764678012361]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-of-mass/test/out/polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.840728965137111, 45.75581209996416]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.8250579833984375, 45.79398056386735],\n            [4.882392883300781, 45.79254427435898],\n            [4.910373687744141, 45.76081677972451],\n            [4.894924163818359, 45.7271539426975],\n            [4.824199676513671, 45.71337148333104],\n            [4.773387908935547, 45.74021417890731],\n            [4.778022766113281, 45.778418789239055],\n            [4.8250579833984375, 45.79398056386735]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-center-of-mass/test.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { featureEach } from \"@turf/meta\";\nimport { point, lineString, polygon, featureCollection } from \"@turf/helpers\";\nimport { centerOfMass } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = glob.sync(directories.in + \"*.geojson\").map((input) => {\n  const base = path.parse(input).base;\n  return {\n    name: path.parse(input).name,\n    filename: base,\n    geojson: loadJsonFileSync(input),\n    out: directories.out + base,\n  };\n});\n\ntest(\"center of mass\", (t) => {\n  fixtures.forEach((fixture) => {\n    const name = fixture.name;\n    const out = fixture.out;\n    const geojson = fixture.geojson;\n    const centered = centerOfMass(geojson, { \"marker-symbol\": \"circle\" });\n    const result = featureCollection([centered]);\n    featureEach(geojson, (feature) => result.features.push(feature));\n\n    if (process.env.REGEN) writeJsonFileSync(out, result);\n    t.deepEqual(result, loadJsonFileSync(out), name);\n  });\n  t.end();\n});\n\ntest(\"center of mass -- Geometry Support\", (t) => {\n  const line = lineString([\n    [0, 0],\n    [1, 1],\n  ]);\n  const poly = polygon([\n    [\n      [0, 0],\n      [3, 3],\n      [-5, -5],\n      [0, 0],\n    ],\n  ]);\n\n  t.deepEqual(\n    centerOfMass(poly.geometry),\n    centerOfMass(poly),\n    \"polygon geometry/feature should be equal\"\n  );\n  t.deepEqual(\n    centerOfMass(line.geometry),\n    centerOfMass(line),\n    \"lineString geometry/feature should be equal\"\n  );\n  t.end();\n});\n\ntest(\"center of mass -- no area\", (t) => {\n  const poly = polygon([\n    [\n      [0, 0],\n      [0, 0],\n      [0, 0],\n      [0, 0],\n    ],\n  ]);\n  const pt = centerOfMass(poly);\n  t.deepEqual(pt, point([0, 0]), \"polygon has no area\");\n  t.end();\n});\n\ntest(\"center of mass -- point\", (t) => {\n  const p = point([0, 0]);\n  const pt = centerOfMass(p);\n  t.deepEqual(pt, point([0, 0]), \"point returns pt\");\n  t.end();\n});\n\ntest(\"center of mass -- point geom\", (t) => {\n  const geomPoint = { type: \"Point\", coordinates: [0, 0] };\n  const pt = centerOfMass(geomPoint);\n  t.deepEqual(pt, point([0, 0]), \"point geom returns pt\");\n  t.end();\n});\n\ntest(\"center of mass -- properties\", (t) => {\n  const line = lineString([\n    [0, 0],\n    [1, 1],\n  ]);\n  const pt = centerOfMass(line, { properties: { foo: \"bar\" } });\n  t.equal(pt.properties.foo, \"bar\", \"translate properties\");\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-center-of-mass/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-center-of-mass/types.ts",
    "content": "import { lineString } from \"@turf/helpers\";\nimport { centerOfMass } from \"./index.js\";\n\nconst line = lineString([\n  [0, 0],\n  [10, 10],\n]);\n\ncenterOfMass(line);\ncenterOfMass(line, { properties: { foo: \"bar\" } });\n"
  },
  {
    "path": "packages/turf-centroid/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-centroid/README.md",
    "content": "# @turf/centroid\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## centroid\n\nComputes the centroid as the mean of all vertices within the object.\n\n### Parameters\n\n*   `geojson` **[GeoJSON][1]** GeoJSON to be centered\n*   `options` **[Object][2]** Optional Parameters (optional, default `{}`)\n\n    *   `options.properties` **[Object][2]** an Object that is used as the [Feature][3]'s properties (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar polygon = turf.polygon([[[-81, 41], [-88, 36], [-84, 31], [-80, 33], [-77, 39], [-81, 41]]]);\n\nvar centroid = turf.centroid(polygon);\n\n//addToMap\nvar addToMap = [polygon, centroid]\n```\n\nReturns **[Feature][3]<[Point][4]>** the centroid of the input object\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/centroid\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-centroid/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { centroid } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst fixtures = glob\n  .sync(path.join(__dirname, \"test\", \"in\", \"*.geojson\"))\n  .map((input) => {\n    return {\n      name: path.parse(input).name,\n      geojson: loadJsonFileSync(input),\n    };\n  });\n\n/**\n * Single Process Benchmark\n *\n * feature-collection: 0.528ms\n * imbalanced-polygon: 0.057ms\n * linestring: 0.041ms\n * point: 0.012ms\n * polygon: 0.016ms\n */\nfor (const { name, geojson } of fixtures) {\n  console.time(name);\n  centroid(geojson);\n  console.timeEnd(name);\n}\n\n/**\n * Benchmark Results\n *\n * feature-collection x 3,468,116 ops/sec ±0.94% (89 runs sampled)\n * imbalanced-polygon x 1,578,689 ops/sec ±2.81% (84 runs sampled)\n * linestring x 4,154,796 ops/sec ±2.72% (84 runs sampled)\n * point x 4,559,430 ops/sec ±4.39% (79 runs sampled)\n * polygon x 2,741,762 ops/sec ±2.29% (85 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-centroid\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => centroid(geojson));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-centroid/index.ts",
    "content": "import { Feature, GeoJsonProperties, Point } from \"geojson\";\nimport { point, AllGeoJSON } from \"@turf/helpers\";\nimport { coordEach } from \"@turf/meta\";\n\n/**\n * Computes the centroid as the mean of all vertices within the object.\n *\n * @function\n * @param {GeoJSON} geojson GeoJSON to be centered\n * @param {Object} [options={}] Optional Parameters\n * @param {Object} [options.properties={}] an Object that is used as the {@link Feature}'s properties\n * @returns {Feature<Point>} the centroid of the input object\n * @example\n * var polygon = turf.polygon([[[-81, 41], [-88, 36], [-84, 31], [-80, 33], [-77, 39], [-81, 41]]]);\n *\n * var centroid = turf.centroid(polygon);\n *\n * //addToMap\n * var addToMap = [polygon, centroid]\n */\nfunction centroid<P extends GeoJsonProperties = GeoJsonProperties>(\n  geojson: AllGeoJSON,\n  options: {\n    properties?: P;\n  } = {}\n): Feature<Point, P> {\n  let xSum = 0;\n  let ySum = 0;\n  let len = 0;\n  coordEach(\n    geojson,\n    function (coord) {\n      xSum += coord[0];\n      ySum += coord[1];\n      len++;\n    },\n    true\n  );\n  return point([xSum / len, ySum / len], options.properties);\n}\n\nexport { centroid };\nexport default centroid;\n"
  },
  {
    "path": "packages/turf-centroid/package.json",
    "content": "{\n  \"name\": \"@turf/centroid\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Determines the geometric center of a polygon or shape.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"geo\",\n    \"gis\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-centroid/test/in/feature-collection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833351373672485, 45.760809294695534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.8331475257873535, 45.760296567821456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833984374999999, 45.76073818687033]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.834005832672119, 45.76022171678877]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-centroid/test/in/imbalanced-polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [4.854240417480469, 45.77258200374433],\n        [4.8445844650268555, 45.777431068484894],\n        [4.845442771911621, 45.778658234059755],\n        [4.845914840698242, 45.779376562352425],\n        [4.846644401550292, 45.78021460033108],\n        [4.847245216369629, 45.78078326178593],\n        [4.848060607910156, 45.78138184652523],\n        [4.8487043380737305, 45.78186070968964],\n        [4.849562644958495, 45.78248921135124],\n        [4.850893020629883, 45.78302792142197],\n        [4.852008819580077, 45.78374619341895],\n        [4.852995872497559, 45.784075398324866],\n        [4.853854179382324, 45.78443452873236],\n        [4.8549699783325195, 45.78470387501975],\n        [4.85569953918457, 45.784793656826345],\n        [4.857330322265624, 45.784853511283764],\n        [4.858231544494629, 45.78494329284938],\n        [4.859304428100585, 45.784883438488365],\n        [4.858360290527344, 45.77294120818474],\n        [4.854240417480469, 45.77258200374433]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-centroid/test/in/linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [4.86020565032959, 45.76884015325622],\n      [4.85994815826416, 45.749558161214516]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-centroid/test/in/point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [4.831961989402771, 45.75764678012361]\n  }\n}\n"
  },
  {
    "path": "packages/turf-centroid/test/in/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [4.8250579833984375, 45.79398056386735],\n        [4.882392883300781, 45.79254427435898],\n        [4.910373687744141, 45.76081677972451],\n        [4.894924163818359, 45.7271539426975],\n        [4.824199676513671, 45.71337148333104],\n        [4.773387908935547, 45.74021417890731],\n        [4.778022766113281, 45.778418789239055],\n        [4.8250579833984375, 45.79398056386735]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-centroid/test/out/feature-collection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.8336222767829895, 45.76051644154402]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833351373672485, 45.760809294695534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.8331475257873535, 45.760296567821456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.833984374999999, 45.76073818687033]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.834005832672119, 45.76022171678877]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-centroid/test/out/imbalanced-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.851791984156558, 45.78143055383553]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.854240417480469, 45.77258200374433],\n            [4.8445844650268555, 45.777431068484894],\n            [4.845442771911621, 45.778658234059755],\n            [4.845914840698242, 45.779376562352425],\n            [4.846644401550292, 45.78021460033108],\n            [4.847245216369629, 45.78078326178593],\n            [4.848060607910156, 45.78138184652523],\n            [4.8487043380737305, 45.78186070968964],\n            [4.849562644958495, 45.78248921135124],\n            [4.850893020629883, 45.78302792142197],\n            [4.852008819580077, 45.78374619341895],\n            [4.852995872497559, 45.784075398324866],\n            [4.853854179382324, 45.78443452873236],\n            [4.8549699783325195, 45.78470387501975],\n            [4.85569953918457, 45.784793656826345],\n            [4.857330322265624, 45.784853511283764],\n            [4.858231544494629, 45.78494329284938],\n            [4.859304428100585, 45.784883438488365],\n            [4.858360290527344, 45.77294120818474],\n            [4.854240417480469, 45.77258200374433]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-centroid/test/out/linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.860076904296875, 45.75919915723537]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [4.86020565032959, 45.76884015325622],\n          [4.85994815826416, 45.749558161214516]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-centroid/test/out/point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.831961989402771, 45.75764678012361]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.831961989402771, 45.75764678012361]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-centroid/test/out/polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [4.841194152832031, 45.75807143030368]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.8250579833984375, 45.79398056386735],\n            [4.882392883300781, 45.79254427435898],\n            [4.910373687744141, 45.76081677972451],\n            [4.894924163818359, 45.7271539426975],\n            [4.824199676513671, 45.71337148333104],\n            [4.773387908935547, 45.74021417890731],\n            [4.778022766113281, 45.778418789239055],\n            [4.8250579833984375, 45.79398056386735]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-centroid/test.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { featureEach } from \"@turf/meta\";\nimport { featureCollection, lineString } from \"@turf/helpers\";\nimport { centroid } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = glob.sync(directories.in + \"*.geojson\").map((input) => {\n  const name = path.parse(input).name;\n  const base = path.parse(input).base;\n  return {\n    name,\n    filename: base,\n    geojson: loadJsonFileSync(input),\n    out: directories.out + base,\n  };\n});\n\ntest(\"centroid\", (t) => {\n  fixtures.forEach((fixture) => {\n    const name = fixture.name;\n    const geojson = fixture.geojson;\n    const out = fixture.out;\n    const centered = centroid(geojson, {\n      properties: { \"marker-symbol\": \"circle\" },\n    });\n    const result = featureCollection([centered]);\n    featureEach(geojson, (feature) => result.features.push(feature));\n\n    if (process.env.REGEN) writeJsonFileSync(out, result);\n    t.deepEqual(result, loadJsonFileSync(out), name);\n  });\n  t.end();\n});\n\ntest(\"centroid -- properties\", (t) => {\n  const line = lineString([\n    [0, 0],\n    [1, 1],\n  ]);\n  const pt = centroid(line, { properties: { foo: \"bar\" } });\n  t.equal(pt.properties.foo, \"bar\", \"translate properties\");\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-centroid/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-centroid/types.ts",
    "content": "import { lineString } from \"@turf/helpers\";\nimport { centroid } from \"./index.js\";\n\nconst line = lineString([\n  [0, 0],\n  [10, 10],\n]);\n\ncentroid(line);\ncentroid(line, { properties: { foo: \"bar\" } });\n"
  },
  {
    "path": "packages/turf-circle/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-circle/README.md",
    "content": "# @turf/circle\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## circle\n\nTakes a [Point][1] and calculates the circle polygon given a radius in [Units][2]; and steps for precision.\n\n### Parameters\n\n*   `center` **([Feature][3]<[Point][1]> | [Array][4]<[number][5]>)** center point\n*   `radius` **[number][5]** radius of the circle\n*   `options` **[Object][6]** Optional parameters (optional, default `{}`)\n\n    *   `options.steps` **[number][5]** number of steps (optional, default `64`)\n    *   `options.units` **Units** Supports all valid Turf [Units][2] (optional, default `'kilometers'`)\n    *   `options.properties` **[Object][6]** properties (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar center = [-75.343, 39.984];\nvar radius = 5;\nvar options = {steps: 10, units: 'kilometers', properties: {foo: 'bar'}};\nvar circle = turf.circle(center, radius, options);\n\n//addToMap\nvar addToMap = [turf.point(center), circle]\n```\n\nReturns **[Feature][3]<[Polygon][7]>** circle polygon\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[2]: https://turfjs.org/docs/api/types/Units\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/circle\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-circle/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { circle } from \"./index.js\";\n\nconst center = [-75.0, 39.0];\nconst radius = 5;\n\n/**\n * Benchmark Results\n *\n * turf-circle - 16 steps x 140,793 ops/sec ±5.92% (79 runs sampled)\n * turf-circle - 32 steps x 84,428 ops/sec ±2.28% (86 runs sampled)\n * turf-circle - 64 steps x 45,202 ops/sec ±1.85% (88 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-circle\");\nsuite\n  .add(\"turf-circle - 16 steps\", () => circle(center, radius, 16))\n  .add(\"turf-circle - 32 steps\", () => circle(center, radius, 32))\n  .add(\"turf-circle - 64 steps\", () => circle(center, radius, 64))\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-circle/index.ts",
    "content": "import { GeoJsonProperties, Feature, Point, Polygon } from \"geojson\";\nimport { destination } from \"@turf/destination\";\nimport { polygon, Units } from \"@turf/helpers\";\n\n/**\n * Takes a {@link Point} and calculates the circle polygon given a radius in {@link https://turfjs.org/docs/api/types/Units Units}; and steps for precision.\n *\n * @function\n * @param {Feature<Point>|number[]} center center point\n * @param {number} radius radius of the circle\n * @param {Object} [options={}] Optional parameters\n * @param {number} [options.steps=64] number of steps\n * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}\n * @param {Object} [options.properties={}] properties\n * @returns {Feature<Polygon>} circle polygon\n * @example\n * var center = [-75.343, 39.984];\n * var radius = 5;\n * var options = {steps: 10, units: 'kilometers', properties: {foo: 'bar'}};\n * var circle = turf.circle(center, radius, options);\n *\n * //addToMap\n * var addToMap = [turf.point(center), circle]\n */\nfunction circle<P extends GeoJsonProperties = GeoJsonProperties>(\n  center: number[] | Point | Feature<Point, P>,\n  radius: number,\n  options: {\n    steps?: number;\n    units?: Units;\n    properties?: P;\n  } = {}\n): Feature<Polygon, P> {\n  // default params\n  const steps = options.steps || 64;\n  const properties: any = options.properties\n    ? options.properties\n    : !Array.isArray(center) && center.type === \"Feature\" && center.properties\n      ? center.properties\n      : {};\n\n  // main\n  const coordinates = [];\n  for (let i = 0; i < steps; i++) {\n    coordinates.push(\n      destination(center, radius, (i * -360) / steps, options).geometry\n        .coordinates\n    );\n  }\n  coordinates.push(coordinates[0]);\n\n  return polygon([coordinates], properties);\n}\n\nexport { circle };\nexport default circle;\n"
  },
  {
    "path": "packages/turf-circle/package.json",
    "content": "{\n  \"name\": \"@turf/circle\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a point and calculates the circle polygon given a radius.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"circle\",\n    \"radius\",\n    \"polygon\",\n    \"miles\",\n    \"km\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@placemarkio/check-geojson\": \"^0.1.12\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/destination\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-circle/test/in/circle1.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 5\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-75.343, 39.984]\n  }\n}\n"
  },
  {
    "path": "packages/turf-circle/test/out/circle1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.343, 39.984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.343, 40.028966],\n            [-75.348756, 40.028749],\n            [-75.354456, 40.028101],\n            [-75.360046, 40.027029],\n            [-75.365472, 40.025541],\n            [-75.37068, 40.023653],\n            [-75.375622, 40.021383],\n            [-75.380248, 40.018753],\n            [-75.384516, 40.015788],\n            [-75.388383, 40.012517],\n            [-75.391813, 40.008972],\n            [-75.394772, 40.005185],\n            [-75.397232, 40.001195],\n            [-75.399169, 39.997039],\n            [-75.400565, 39.992758],\n            [-75.401406, 39.988393],\n            [-75.401685, 39.983985],\n            [-75.401399, 39.979578],\n            [-75.40055, 39.975213],\n            [-75.399148, 39.970934],\n            [-75.397204, 39.96678],\n            [-75.39474, 39.962792],\n            [-75.391777, 39.959008],\n            [-75.388345, 39.955465],\n            [-75.384477, 39.952197],\n            [-75.380211, 39.949235],\n            [-75.375586, 39.946608],\n            [-75.370648, 39.94434],\n            [-75.365444, 39.942455],\n            [-75.360025, 39.940969],\n            [-75.354442, 39.939897],\n            [-75.348748, 39.93925],\n            [-75.343, 39.939034],\n            [-75.337252, 39.93925],\n            [-75.331558, 39.939897],\n            [-75.325975, 39.940969],\n            [-75.320556, 39.942455],\n            [-75.315352, 39.94434],\n            [-75.310414, 39.946608],\n            [-75.305789, 39.949235],\n            [-75.301523, 39.952197],\n            [-75.297655, 39.955465],\n            [-75.294223, 39.959008],\n            [-75.29126, 39.962792],\n            [-75.288796, 39.96678],\n            [-75.286852, 39.970934],\n            [-75.28545, 39.975213],\n            [-75.284601, 39.979578],\n            [-75.284315, 39.983985],\n            [-75.284594, 39.988393],\n            [-75.285435, 39.992758],\n            [-75.286831, 39.997039],\n            [-75.288768, 40.001195],\n            [-75.291228, 40.005185],\n            [-75.294187, 40.008972],\n            [-75.297617, 40.012517],\n            [-75.301484, 40.015788],\n            [-75.305752, 40.018753],\n            [-75.310378, 40.021383],\n            [-75.31532, 40.023653],\n            [-75.320528, 40.025541],\n            [-75.325954, 40.027029],\n            [-75.331544, 40.028101],\n            [-75.337244, 40.028749],\n            [-75.343, 40.028966]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-circle/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { truncate } from \"@turf/truncate\";\nimport { featureCollection } from \"@turf/helpers\";\nimport { check } from \"@placemarkio/check-geojson\";\nimport { circle } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-circle\", (t) => {\n  fixtures.forEach((fixture) => {\n    const filename = fixture.filename;\n    const name = fixture.name;\n    const geojson = fixture.geojson;\n    const properties = geojson.properties || {};\n    const radius = properties.radius;\n    const steps = properties.steps || 64;\n    const units = properties.units;\n\n    const C = truncate(circle(geojson, radius, { steps: steps, units: units }));\n    const results = featureCollection([geojson, C]);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEquals(results, loadJsonFileSync(directories.out + filename), name);\n  });\n  t.end();\n});\n\ntest(\"turf-circle -- validate geojson\", (t) => {\n  const C = circle([0, 0], 100);\n  try {\n    check(JSON.stringify(C));\n    t.pass();\n  } catch (e) {\n    t.fail(e.message);\n  }\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-circle/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-circle/types.ts",
    "content": "import { point } from \"@turf/helpers\";\nimport { circle } from \"./index.js\";\n\nconst center = point([-75.343, 39.984]);\nconst units = \"kilometers\";\nconst radius = 5;\nconst steps = 10;\n\ncircle(center, radius);\ncircle(center, radius, { steps });\ncircle(center, radius, { steps, units });\ncircle([-75, 39], radius, { steps, units, properties: { foo: \"bar\" } });\n"
  },
  {
    "path": "packages/turf-clean-coords/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-clean-coords/README.md",
    "content": "# @turf/clean-coords\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## cleanCoords\n\nRemoves redundant coordinates from any GeoJSON Geometry.\n\n### Parameters\n\n*   `geojson` **([Geometry][1] | [Feature][2])** Feature or Geometry\n*   `options` **[Object][3]** Optional parameters (optional, default `{}`)\n\n    *   `options.mutate` **[boolean][4]** allows GeoJSON input to be mutated (optional, default `false`)\n\n### Examples\n\n```javascript\nvar line = turf.lineString([[0, 0], [0, 2], [0, 5], [0, 8], [0, 8], [0, 10]]);\nvar multiPoint = turf.multiPoint([[0, 0], [0, 0], [2, 2]]);\n\nturf.cleanCoords(line).geometry.coordinates;\n//= [[0, 0], [0, 10]]\n\nturf.cleanCoords(multiPoint).geometry.coordinates;\n//= [[0, 0], [2, 2]]\n```\n\nReturns **([Geometry][1] | [Feature][2])** the cleaned input Feature/Geometry\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/clean-coords\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-clean-coords/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { cleanCoords } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n * geometry: 0.675ms\n * multiline: 0.044ms\n * multipoint: 0.291ms\n * multipolygon: 0.062ms\n * point: 0.010ms\n * polygon-with-hole: 0.017ms\n * polygon: 0.010ms\n * simple-line: 0.008ms\n * triangle: 0.020ms\n *\n * // mutate=false (using geometry/feature)\n * geometry x 1,524,640 ops/sec ±4.60% (74 runs sampled)\n * multiline x 1,511,608 ops/sec ±8.79% (72 runs sampled)\n * multipoint x 382,429 ops/sec ±3.56% (84 runs sampled)\n * multipolygon x 808,277 ops/sec ±2.84% (82 runs sampled)\n * point x 14,675,464 ops/sec ±4.42% (80 runs sampled)\n * polygon-with-hole x 1,493,507 ops/sec ±5.53% (72 runs sampled)\n * polygon x 2,386,278 ops/sec ±1.27% (86 runs sampled)\n * simple-line x 4,195,499 ops/sec ±2.88% (86 runs sampled)\n * triangle x 2,254,753 ops/sec ±1.10% (88 runs sampled)\n *\n * // mutate=false (using @turf/clone)\n * geometry x 202,410 ops/sec ±1.43% (88 runs sampled)\n * multiline x 235,421 ops/sec ±3.48% (86 runs sampled)\n * multipoint x 280,757 ops/sec ±1.59% (87 runs sampled)\n * multipolygon x 127,353 ops/sec ±1.35% (88 runs sampled)\n * point x 18,233,987 ops/sec ±1.34% (86 runs sampled)\n * polygon-with-hole x 199,203 ops/sec ±2.61% (84 runs sampled)\n * polygon x 355,616 ops/sec ±1.58% (86 runs sampled)\n * simple-line x 515,430 ops/sec ±2.40% (83 runs sampled)\n * triangle x 286,315 ops/sec ±1.64% (86 runs sampled)\n *\n * // mutate=false (using JSON.parse + JSON.stringify)\n * geometry x 93,681 ops/sec ±7.66% (75 runs sampled)\n * multiline x 112,836 ops/sec ±4.60% (82 runs sampled)\n * multipoint x 113,937 ops/sec ±1.09% (90 runs sampled)\n * multipolygon x 71,131 ops/sec ±1.32% (90 runs sampled)\n * point x 18,181,612 ops/sec ±1.36% (91 runs sampled)\n * polygon-with-hole x 100,011 ops/sec ±1.14% (85 runs sampled)\n * polygon x 154,331 ops/sec ±1.31% (89 runs sampled)\n * simple-line x 193,304 ops/sec ±1.33% (90 runs sampled)\n * triangle x 130,921 ops/sec ±3.37% (87 runs sampled)\n *\n * // mutate=true\n * geometry x 2,016,365 ops/sec ±1.83% (85 runs sampled)\n * multiline x 2,266,787 ops/sec ±3.69% (79 runs sampled)\n * multipoint x 411,246 ops/sec ±0.81% (89 runs sampled)\n * multipolygon x 1,011,846 ops/sec ±1.34% (85 runs sampled)\n * point x 17,635,961 ops/sec ±1.47% (89 runs sampled)\n * polygon-with-hole x 2,110,166 ops/sec ±1.59% (89 runs sampled)\n * polygon x 2,887,298 ops/sec ±1.75% (86 runs sampled)\n * simple-line x 7,109,682 ops/sec ±1.52% (87 runs sampled)\n * triangle x 3,116,940 ops/sec ±0.71% (87 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-clean-coords\");\nglob\n  .sync(path.join(__dirname, \"test\", \"in\", \"*.geojson\"))\n  .forEach((filepath) => {\n    const { name } = path.parse(filepath);\n    const geojson = loadJsonFileSync(filepath);\n    console.time(name);\n    cleanCoords(geojson);\n    console.timeEnd(name);\n    suite.add(name, () => cleanCoords(geojson, true));\n  });\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-clean-coords/index.ts",
    "content": "import { Position } from \"geojson\";\nimport { feature } from \"@turf/helpers\";\nimport { getCoords, getType } from \"@turf/invariant\";\nimport { booleanPointOnLine } from \"@turf/boolean-point-on-line\";\nimport { lineString } from \"@turf/helpers\";\n\n// To-Do => Improve Typescript GeoJSON handling\n\n/**\n * Removes redundant coordinates from any GeoJSON Geometry.\n *\n * @function\n * @param {Geometry|Feature} geojson Feature or Geometry\n * @param {Object} [options={}] Optional parameters\n * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated\n * @returns {Geometry|Feature} the cleaned input Feature/Geometry\n * @example\n * var line = turf.lineString([[0, 0], [0, 2], [0, 5], [0, 8], [0, 8], [0, 10]]);\n * var multiPoint = turf.multiPoint([[0, 0], [0, 0], [2, 2]]);\n *\n * turf.cleanCoords(line).geometry.coordinates;\n * //= [[0, 0], [0, 10]]\n *\n * turf.cleanCoords(multiPoint).geometry.coordinates;\n * //= [[0, 0], [2, 2]]\n */\nfunction cleanCoords(\n  geojson: any,\n  options: {\n    mutate?: boolean;\n  } = {}\n) {\n  // Backwards compatible with v4.0\n  var mutate = typeof options === \"object\" ? options.mutate : options;\n  if (!geojson) throw new Error(\"geojson is required\");\n  var type = getType(geojson);\n\n  // Store new \"clean\" points in this Array\n  var newCoords = [];\n\n  switch (type) {\n    case \"LineString\":\n      newCoords = cleanLine(geojson, type);\n      break;\n    case \"MultiLineString\":\n    case \"Polygon\":\n      getCoords(geojson).forEach(function (line) {\n        newCoords.push(cleanLine(line, type));\n      });\n      break;\n    case \"MultiPolygon\":\n      getCoords(geojson).forEach(function (polygons: any) {\n        var polyPoints: Position[] = [];\n        polygons.forEach(function (ring: Position[]) {\n          polyPoints.push(cleanLine(ring, type));\n        });\n        newCoords.push(polyPoints);\n      });\n      break;\n    case \"Point\":\n      return geojson;\n    case \"MultiPoint\":\n      var existing: Record<string, true> = {};\n      getCoords(geojson).forEach(function (coord: any) {\n        var key = coord.join(\"-\");\n        if (!Object.prototype.hasOwnProperty.call(existing, key)) {\n          newCoords.push(coord);\n          existing[key] = true;\n        }\n      });\n      break;\n    default:\n      throw new Error(type + \" geometry not supported\");\n  }\n\n  // Support input mutation\n  if (geojson.coordinates) {\n    if (mutate === true) {\n      geojson.coordinates = newCoords;\n      return geojson;\n    }\n    return { type: type, coordinates: newCoords };\n  } else {\n    if (mutate === true) {\n      geojson.geometry.coordinates = newCoords;\n      return geojson;\n    }\n    return feature({ type: type, coordinates: newCoords }, geojson.properties, {\n      bbox: geojson.bbox,\n      id: geojson.id,\n    });\n  }\n}\n\n/**\n * Clean Coords\n *\n * @private\n * @param {Array<number>|LineString} line Line\n * @param {string} type Type of geometry\n * @returns {Array<number>} Cleaned coordinates\n */\nfunction cleanLine(line: Position[], type: string) {\n  const points = getCoords(line);\n  // handle \"clean\" segment\n  if (points.length === 2 && !equals(points[0], points[1])) return points;\n\n  const newPoints = [];\n\n  // Segments based approach. With initial segment a-b, keep comparing to a\n  // longer segment a-c and as long as b is still on a-c, b is a redundant\n  // point.\n  let a = 0,\n    b = 1,\n    c = 2;\n\n  // Guaranteed we'll use the first point.\n  newPoints.push(points[a]);\n  // While there is still room to extend the segment ...\n  while (c < points.length) {\n    if (booleanPointOnLine(points[b], lineString([points[a], points[c]]))) {\n      // b is on a-c, so we can discard point b, and extend a-b to be the same\n      // as a-c as the basis for comparison during the next iteration.\n      b = c;\n    } else {\n      // b is NOT on a-c, suggesting a-c is not an extension of a-b. Commit a-b\n      // as a necessary segment.\n      newPoints.push(points[b]);\n\n      // Make our a-b for the next iteration start from the end of the segment\n      // that was just locked in i.e. next a-b should be the current b-(b+1).\n      a = b;\n      b++;\n      c = b;\n    }\n    // Plan to look at the next point during the next iteration.\n    c++;\n  }\n  // No remaining points, so commit the current a-b segment.\n  newPoints.push(points[b]);\n\n  if (type === \"Polygon\" || type === \"MultiPolygon\") {\n    // For polygons need to make sure the start / end point wasn't one of the\n    // points that needed to be cleaned.\n    // https://github.com/Turfjs/turf/issues/2406\n    // For points [a, b, c, ..., z, a]\n    // if a is on line b-z, it too can be removed. New array becomes\n    // [b, c, ..., z, b]\n    if (\n      booleanPointOnLine(\n        newPoints[0],\n        lineString([newPoints[1], newPoints[newPoints.length - 2]])\n      )\n    ) {\n      newPoints.shift(); // Discard starting point.\n      newPoints.pop(); // Discard closing point.\n      newPoints.push(newPoints[0]); // Duplicate the new closing point to end of array.\n    }\n\n    // (Multi)Polygons must have at least 4 points and be closed.\n    if (newPoints.length < 4) {\n      throw new Error(\"invalid polygon, fewer than 4 points\");\n    }\n    if (!equals(newPoints[0], newPoints[newPoints.length - 1])) {\n      throw new Error(\"invalid polygon, first and last points not equal\");\n    }\n  }\n\n  return newPoints;\n}\n\n/**\n * Compares two points and returns if they are equals\n *\n * @private\n * @param {Position} pt1 point\n * @param {Position} pt2 point\n * @returns {boolean} true if they are equals\n */\nfunction equals(pt1: Position, pt2: Position) {\n  return pt1[0] === pt2[0] && pt1[1] === pt2[1];\n}\n\nexport { cleanCoords };\nexport default cleanCoords;\n"
  },
  {
    "path": "packages/turf-clean-coords/package.json",
    "content": "{\n  \"name\": \"@turf/clean-coords\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Removes redundant coordinates from a GeoJSON Geometry.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Stefano Borghi <@stebogit>\",\n    \"James Beard <@smallsaucepan>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gis\",\n    \"clean-coords\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"geojson-equality-ts\": \"^1.0.2\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/boolean-point-on-line\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/in/clean-segment.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [0, 0],\n      [2, 2]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/in/closed-linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [0, 0],\n      [1, 1],\n      [0, 0]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/in/geometry.geojson",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [0, 0],\n      [0, 5],\n      [0, 10],\n      [10, 10],\n      [10, 0],\n      [5, 0],\n      [5, 0],\n      [0, 0]\n    ],\n    [\n      [1, 5],\n      [4.5, 5],\n      [4.5, 7],\n      [4.5, 8.5],\n      [1, 8.5],\n      [1, 7],\n      [1, 5]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/in/line-3-coords.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [0, 0],\n      [0, 0],\n      [0, 2]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/in/multiline.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [0, 0],\n        [0, 2],\n        [0, 5],\n        [0, 8],\n        [0, 10],\n        [0, 10]\n      ],\n      [\n        [1, 1],\n        [2, 2],\n        [3, 3],\n        [4, 4],\n        [5, 5],\n        [6, 6]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/in/multipoint.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPoint\",\n    \"coordinates\": [\n      [14.765625, 26.194876675795218],\n      [8.61328125, 23.483400654325642],\n      [17.75390625, 24.926294766395593]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/in/multipolygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [0, 0],\n          [5, 0],\n          [5, 0],\n          [10, 0],\n          [10, 10],\n          [0, 10],\n          [0, 5],\n          [0, 0]\n        ],\n        [\n          [1, 5],\n          [1, 7],\n          [1, 8.5],\n          [4.5, 8.5],\n          [4.5, 7],\n          [4.5, 5],\n          [1, 5]\n        ]\n      ],\n      [\n        [\n          [11, 11],\n          [11.5, 11.5],\n          [12, 12],\n          [12, 11],\n          [11.5, 11],\n          [11, 11],\n          [11, 11]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/in/point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [14.765625, 26.194876675795218]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/in/polygon-with-hole.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [0, 0],\n        [0, 5],\n        [0, 10],\n        [10, 10],\n        [10, 0],\n        [5, 0],\n        [5, 0],\n        [0, 0]\n      ],\n      [\n        [1, 5],\n        [4.5, 5],\n        [4.5, 7],\n        [4.5, 8.5],\n        [1, 8.5],\n        [1, 7],\n        [1, 5]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/in/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [0, 0],\n        [0, 5],\n        [0, 10],\n        [10, 10],\n        [10, 0],\n        [5, 0],\n        [0, 0],\n        [0, 0]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/in/segment.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [0, 0],\n      [1, 1],\n      [2, 2]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/in/simple-line.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [0, 0],\n      [0, 2],\n      [0, 5],\n      [0, 8],\n      [0, 10],\n      [0, 10]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/in/triangle.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [0, 0],\n        [1, 1],\n        [2, 2],\n        [3, 3],\n        [4, 4],\n        [4, 3],\n        [4, 0],\n        [3, 0],\n        [1, 0],\n        [0, 0],\n        [0, 0]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/in/triplicate-issue1255.geojson",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [0, 0],\n      [2, 2],\n      [3, 30],\n      [3, 30],\n      [3, 30],\n      [4, 4],\n      [0, 0]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/out/clean-segment.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [0, 0],\n      [2, 2]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/out/closed-linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [0, 0],\n      [1, 1],\n      [0, 0]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/out/geometry.geojson",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [0, 0],\n      [0, 10],\n      [10, 10],\n      [10, 0],\n      [0, 0]\n    ],\n    [\n      [1, 5],\n      [4.5, 5],\n      [4.5, 8.5],\n      [1, 8.5],\n      [1, 5]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/out/line-3-coords.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [0, 0],\n      [0, 2]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/out/multiline.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [0, 0],\n        [0, 10]\n      ],\n      [\n        [1, 1],\n        [6, 6]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/out/multipoint.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPoint\",\n    \"coordinates\": [\n      [14.765625, 26.194876675795218],\n      [8.61328125, 23.483400654325642],\n      [17.75390625, 24.926294766395593]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/out/multipolygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [0, 0],\n          [10, 0],\n          [10, 10],\n          [0, 10],\n          [0, 0]\n        ],\n        [\n          [1, 5],\n          [1, 8.5],\n          [4.5, 8.5],\n          [4.5, 5],\n          [1, 5]\n        ]\n      ],\n      [\n        [\n          [11, 11],\n          [12, 12],\n          [12, 11],\n          [11, 11]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/out/point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [14.765625, 26.194876675795218]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/out/polygon-with-hole.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [0, 0],\n        [0, 10],\n        [10, 10],\n        [10, 0],\n        [0, 0]\n      ],\n      [\n        [1, 5],\n        [4.5, 5],\n        [4.5, 8.5],\n        [1, 8.5],\n        [1, 5]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/out/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [0, 0],\n        [0, 10],\n        [10, 10],\n        [10, 0],\n        [0, 0]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/out/segment.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [0, 0],\n      [2, 2]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/out/simple-line.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [0, 0],\n      [0, 10]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/out/triangle.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [0, 0],\n        [4, 4],\n        [4, 0],\n        [0, 0]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test/out/triplicate-issue1255.geojson",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [0, 0],\n      [2, 2],\n      [3, 30],\n      [4, 4],\n      [0, 0]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { geojsonEquality } from \"geojson-equality-ts\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { truncate } from \"@turf/truncate\";\nimport {\n  point,\n  multiPoint,\n  lineString,\n  multiPolygon,\n  polygon,\n} from \"@turf/helpers\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { cleanCoords } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-clean-coords\", (t) => {\n  fixtures.forEach((fixture) => {\n    const filename = fixture.filename;\n    const name = fixture.name;\n    const geojson = fixture.geojson;\n    const results = cleanCoords(geojson);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.true(\n      geojsonEquality(results, loadJsonFileSync(directories.out + filename)),\n      name\n    );\n  });\n  t.end();\n});\n\ntest(\"turf-clean-coords -- extras\", (t) => {\n  t.equal(cleanCoords(point([0, 0])).geometry.coordinates.length, 2, \"point\");\n  t.equal(\n    cleanCoords(\n      lineString([\n        [0, 0],\n        [1, 1],\n        [2, 2],\n      ])\n    ).geometry.coordinates.length,\n    2,\n    \"lineString\"\n  );\n  t.equal(\n    cleanCoords(\n      polygon([\n        [\n          [0, 0],\n          [1, 1],\n          [2, 2],\n          [0, 2],\n          [0, 0],\n        ],\n      ])\n    ).geometry.coordinates[0].length,\n    4,\n    \"polygon\"\n  );\n  t.equal(\n    cleanCoords(\n      multiPoint([\n        [0, 0],\n        [0, 0],\n        [2, 2],\n      ])\n    ).geometry.coordinates.length,\n    2,\n    \"multiPoint\"\n  );\n  t.end();\n});\n\ntest(\"turf-clean-coords -- truncate\", (t) => {\n  t.equal(\n    cleanCoords(\n      truncate(\n        lineString([\n          [0, 0],\n          [1.1, 1.123],\n          [2.12, 2.32],\n          [3, 3],\n        ]),\n        { precision: 0 }\n      )\n    ).geometry.coordinates.length,\n    2\n  );\n  t.end();\n});\n\ntest(\"turf-clean-coords -- throws\", (t) => {\n  t.throws(() => cleanCoords(null), /geojson is required/, \"missing geojson\");\n  t.end();\n});\n\ntest(\"turf-clean-coords -- prevent input mutation\", (t) => {\n  const line = lineString(\n    [\n      [0, 0],\n      [1, 1],\n      [2, 2],\n    ],\n    { foo: \"bar\" }\n  );\n  const lineBefore = JSON.parse(JSON.stringify(line));\n\n  cleanCoords(line);\n  t.deepEqual(lineBefore, line, \"line should NOT be mutated\");\n\n  const multiPoly = multiPolygon(\n    [\n      [\n        [\n          [0, 0],\n          [1, 1],\n          [2, 2],\n          [2, 0],\n          [0, 0],\n        ],\n      ],\n      [\n        [\n          [0, 0],\n          [0, 5],\n          [5, 5],\n          [5, 5],\n          [5, 0],\n          [0, 0],\n        ],\n      ],\n    ],\n    { hello: \"world\" }\n  );\n  const multiPolyBefore = JSON.parse(JSON.stringify(multiPoly));\n  cleanCoords(multiPoly);\n  t.deepEqual(multiPolyBefore, multiPoly, \"multiPolygon should NOT be mutated\");\n  t.end();\n});\n\ntest(\"turf-clean-coords - north south lines - issue 2305\", (t) => {\n  // From https://github.com/Turfjs/turf/issues/2305#issue-1287442870\n  t.deepEqual(\n    cleanCoords(\n      lineString([\n        [0, 0],\n        [0, 1],\n        [0, 0],\n      ])\n    ),\n    lineString([\n      [0, 0],\n      [0, 1],\n      [0, 0],\n    ]),\n    \"northern turnaround point is kept\"\n  );\n\n  // From https://github.com/Turfjs/turf/issues/2305#issue-1287442870\n  t.deepEqual(\n    cleanCoords(\n      lineString([\n        [0, 0],\n        [0, 0],\n        [0, 2],\n        [0, 2],\n        [0, 0],\n      ])\n    ),\n    lineString([\n      [0, 0],\n      [0, 2],\n      [0, 0],\n    ]),\n    \"northern turnaround point is kept\"\n  );\n\n  t.end();\n});\n\ntest(\"turf-clean-coords - overly aggressive removal - issue 2740\", (t) => {\n  // Issue 2740 is cleanCoords was too aggresive at removing points.\n  t.deepEqual(\n    cleanCoords(\n      lineString([\n        [0, 0],\n        [0, 2],\n        [0, 0],\n      ])\n    ),\n    lineString([\n      [0, 0],\n      [0, 2],\n      [0, 0],\n    ]),\n    \"north-south retraced line turnaround point kept\"\n  );\n\n  t.deepEqual(\n    cleanCoords(\n      lineString([\n        [0, 0],\n        [0, 1],\n        [0, 2],\n        [0, 3],\n        [0, 0],\n      ])\n    ),\n    lineString([\n      [0, 0],\n      [0, 3],\n      [0, 0],\n    ]),\n    \"north-south retraced line properly cleaned\"\n  );\n\n  t.deepEqual(\n    cleanCoords(\n      lineString([\n        [0, 0],\n        [0, 1],\n        [0, 2],\n        [0, -2],\n        [0, -1],\n        [0, 0],\n      ])\n    ),\n    lineString([\n      [0, 0],\n      [0, 2],\n      [0, -2],\n      [0, 0],\n    ]),\n    \"north-south retraced past origin and back to start line properly cleaned\"\n  );\n\n  t.end();\n});\n\ntest(\"turf-clean-coords - start point protected - issue 2406\", (t) => {\n  t.true(\n    geojsonEquality(\n      cleanCoords(\n        polygon([\n          [\n            [1, 3], // a\n            [3, 3], // b\n            [3, 1], // c\n            [3, -3], // d\n            [-3, -3], // e\n            [-3, 3], // f\n            [1, 3], // a\n          ],\n        ])\n      ),\n      polygon([\n        [\n          [-3, 3], // f\n          [3, 3], // b\n          [3, -3], // d\n          [-3, -3], // e\n          [-3, 3], // f\n        ],\n      ])\n    ),\n    \"polygon start point (a) was also removed\"\n  );\n\n  t.end();\n});\n\ntest(\"turf-clean-coords - multipolygon - issue #918\", (t) => {\n  // Copied from turf-simplify as (at heart) it's cleanCoords that's being\n  // tested here.\n  // simplify hangs on this input #918\n  t.throws(\n    () =>\n      cleanCoords(\n        multiPolygon([\n          [\n            [\n              [0, 90],\n              [0, 90],\n              [0, 90],\n              [0, 90],\n              [0, 90],\n              [0, 90],\n              [0, 90],\n              [0, 90],\n              [0, 90],\n              [0, 90],\n              [0, 90],\n            ],\n          ],\n        ])\n      ),\n    /invalid polygon/,\n    \"invalid polygon\"\n  );\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-clean-coords/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-clean-coords/types.ts",
    "content": "import { multiPoint } from \"@turf/helpers\";\nimport { cleanCoords } from \"./index.js\";\n\n// Fixtures\nconst multiPt = multiPoint([\n  [0, 0],\n  [0, 0],\n  [2, 2],\n]);\n\n// Feature\ncleanCoords(multiPt).geometry;\ncleanCoords(multiPt).properties;\n\n// Geometry\ncleanCoords(multiPt.geometry).coordinates;\ncleanCoords(multiPt.geometry).type;\n\n// Input mutation\ncleanCoords(multiPt.geometry, { mutate: true });\n"
  },
  {
    "path": "packages/turf-clone/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-clone/README.md",
    "content": "# @turf/clone\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## clone\n\nReturns a cloned copy of the passed GeoJSON Object, including possible 'Foreign Members'.\n\\~3-5x faster than the common JSON.parse + JSON.stringify combo method.\n\n### Parameters\n\n*   `geojson` **[GeoJSON][1]** GeoJSON Object\n\n### Examples\n\n```javascript\nvar line = turf.lineString([[-74, 40], [-78, 42], [-82, 35]], {color: 'red'});\n\nvar lineCloned = turf.clone(line);\n```\n\nReturns **[GeoJSON][1]** cloned GeoJSON Object\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/clone\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-clone/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { point, lineString, polygon, featureCollection } from \"@turf/helpers\";\nimport { clone } from \"./index.js\";\n\nconst fixtures = [\n  point([0, 20]),\n  lineString([\n    [10, 40],\n    [0, 20],\n  ]),\n  polygon([\n    [\n      [10, 40],\n      [0, 20],\n      [20, 0],\n      [10, 40],\n    ],\n  ]),\n  featureCollection([\n    point([0, 20]),\n    lineString([\n      [10, 40],\n      [0, 20],\n    ]),\n    polygon([\n      [\n        [10, 40],\n        [0, 20],\n        [20, 0],\n        [10, 40],\n      ],\n    ]),\n  ]),\n];\n\n/**\n * Benchmark Results\n *\n * Point: 0.380ms\n * LineString: 1.302ms\n * Polygon: 1.402ms\n * FeatureCollection: 0.293ms\n * Point                                x 1,889,028 ops/sec ±1.50% (90 runs sampled)\n * Point -- JSON.parse + JSON.stringify x 363,861 ops/sec ±1.02% (89 runs sampled)\n * LineString                                x 932,348 ops/sec ±1.34% (84 runs sampled)\n * LineString -- JSON.parse + JSON.stringify x 296,087 ops/sec ±1.07% (92 runs sampled)\n * Polygon                                x 577,070 ops/sec ±1.24% (86 runs sampled)\n * Polygon -- JSON.parse + JSON.stringify x 228,373 ops/sec ±1.03% (88 runs sampled)\n * FeatureCollection                                x 248,164 ops/sec ±1.50% (84 runs sampled)\n * FeatureCollection -- JSON.parse + JSON.stringify x 92,873 ops/sec ±0.91% (88 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-clone\");\nfor (const fixture of fixtures) {\n  const name = fixture.geometry ? fixture.geometry.type : fixture.type;\n  console.time(name);\n  clone(fixture, true);\n  console.timeEnd(name);\n  suite.add(name, () => clone(fixture));\n  suite.add(name + \" -- JSON.parse + JSON.stringify\", () =>\n    JSON.parse(JSON.stringify(fixture))\n  );\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-clone/index.ts",
    "content": "import { Feature, GeoJsonProperties } from \"geojson\";\nimport { AllGeoJSON } from \"@turf/helpers\";\n\n/**\n * Returns a cloned copy of the passed GeoJSON Object, including possible 'Foreign Members'.\n * ~3-5x faster than the common JSON.parse + JSON.stringify combo method.\n *\n * @function\n * @param {GeoJSON} geojson GeoJSON Object\n * @returns {GeoJSON} cloned GeoJSON Object\n * @example\n * var line = turf.lineString([[-74, 40], [-78, 42], [-82, 35]], {color: 'red'});\n *\n * var lineCloned = turf.clone(line);\n */\nfunction clone<T extends AllGeoJSON>(geojson: T): T {\n  if (!geojson) {\n    throw new Error(\"geojson is required\");\n  }\n\n  switch (geojson.type) {\n    case \"Feature\":\n      return cloneFeature(geojson);\n    case \"FeatureCollection\":\n      return cloneFeatureCollection(geojson);\n    case \"Point\":\n    case \"LineString\":\n    case \"Polygon\":\n    case \"MultiPoint\":\n    case \"MultiLineString\":\n    case \"MultiPolygon\":\n    case \"GeometryCollection\":\n      return cloneGeometry(geojson);\n    default:\n      throw new Error(\"unknown GeoJSON type\");\n  }\n}\n\n/**\n * Clone Feature\n *\n * @private\n * @param {Feature<any>} geojson GeoJSON Feature\n * @returns {Feature<any>} cloned Feature\n */\nfunction cloneFeature(geojson: any) {\n  const cloned: any = { type: \"Feature\" };\n  // Preserve Foreign Members\n  Object.keys(geojson).forEach((key) => {\n    switch (key) {\n      case \"type\":\n      case \"properties\":\n      case \"geometry\":\n        return;\n      default:\n        cloned[key] = geojson[key];\n    }\n  });\n  // Add properties & geometry last\n  cloned.properties = cloneProperties(geojson.properties);\n  if (geojson.geometry == null) {\n    cloned.geometry = null;\n  } else {\n    cloned.geometry = cloneGeometry(geojson.geometry);\n  }\n  return cloned;\n}\n\n/**\n * Clone Properties\n *\n * @private\n * @param {Object} properties GeoJSON Properties\n * @returns {Object} cloned Properties\n */\nfunction cloneProperties(properties: GeoJsonProperties) {\n  const cloned: { [key: string]: any } = {};\n  if (!properties) {\n    return cloned;\n  }\n  Object.keys(properties).forEach((key) => {\n    const value = properties[key];\n    if (typeof value === \"object\") {\n      if (value === null) {\n        // handle null\n        cloned[key] = null;\n      } else if (Array.isArray(value)) {\n        // handle Array\n        cloned[key] = value.map((item) => {\n          return item;\n        });\n      } else {\n        // handle generic Object\n        cloned[key] = cloneProperties(value);\n      }\n    } else {\n      cloned[key] = value;\n    }\n  });\n  return cloned;\n}\n\n/**\n * Clone Feature Collection\n *\n * @private\n * @param {FeatureCollection<any>} geojson GeoJSON Feature Collection\n * @returns {FeatureCollection<any>} cloned Feature Collection\n */\nfunction cloneFeatureCollection(geojson: any) {\n  const cloned: any = { type: \"FeatureCollection\" };\n\n  // Preserve Foreign Members\n  Object.keys(geojson).forEach((key) => {\n    switch (key) {\n      case \"type\":\n      case \"features\":\n        return;\n      default:\n        cloned[key] = geojson[key];\n    }\n  });\n  // Add features\n  cloned.features = geojson.features.map((feature: Feature<any>) => {\n    return cloneFeature(feature);\n  });\n  return cloned;\n}\n\n/**\n * Clone Geometry\n *\n * @private\n * @param {Geometry<any>} geometry GeoJSON Geometry\n * @returns {Geometry<any>} cloned Geometry\n */\nfunction cloneGeometry(geometry: any) {\n  const geom: any = { type: geometry.type };\n  if (geometry.bbox) {\n    geom.bbox = geometry.bbox;\n  }\n\n  if (geometry.type === \"GeometryCollection\") {\n    geom.geometries = geometry.geometries.map((g: any) => {\n      return cloneGeometry(g);\n    });\n    return geom;\n  }\n  geom.coordinates = deepSlice(geometry.coordinates);\n  return geom;\n}\n\n/**\n * Deep Slice coordinates\n *\n * @private\n * @param {Coordinates} coords Coordinates\n * @returns {Coordinates} all coordinates sliced\n */\nfunction deepSlice<C = any[]>(coords: C): C {\n  const cloned: any = coords;\n  if (typeof cloned[0] !== \"object\") {\n    return cloned.slice();\n  }\n  return cloned.map((coord: any) => {\n    return deepSlice(coord);\n  });\n}\n\nexport { clone, cloneProperties };\nexport default clone;\n"
  },
  {
    "path": "packages/turf-clone/package.json",
    "content": "{\n  \"name\": \"@turf/clone\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Returns a cloned copy of the passed GeoJSON Object, including possible 'Foreign Members'.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"clone\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-clone/test.ts",
    "content": "import test from \"tape\";\nimport {\n  point,\n  lineString,\n  polygon,\n  feature,\n  featureCollection,\n  geometryCollection,\n} from \"@turf/helpers\";\nimport { coordEach } from \"@turf/meta\";\nimport { clone } from \"./index.js\";\n\ntest(\"turf-clone\", (t) => {\n  // Define Features\n  const pt = point([0, 20]);\n  const line = lineString([\n    [10, 40],\n    [0, 20],\n  ]);\n  const poly = polygon([\n    [\n      [10, 40],\n      [0, 20],\n      [20, 0],\n      [10, 40],\n    ],\n  ]);\n  const fc = featureCollection([\n    point([0, 20]),\n    lineString([\n      [10, 40],\n      [0, 20],\n    ]),\n    polygon([\n      [\n        [10, 40],\n        [0, 20],\n        [20, 0],\n        [10, 40],\n      ],\n    ]),\n  ]);\n  const gc = geometryCollection([\n    point([0, 20]).geometry,\n    lineString([\n      [10, 40],\n      [0, 20],\n    ]).geometry,\n    polygon([\n      [\n        [10, 40],\n        [0, 20],\n        [20, 0],\n        [10, 40],\n      ],\n    ]).geometry,\n  ]).geometry;\n\n  // Clone Features\n  const ptCloned = clone(pt);\n  const lineCloned = clone(line);\n  const polyCloned = clone(poly, true);\n  const fcCloned = clone(fc);\n  const gcCloned = clone(gc);\n\n  // Apply Mutation\n  ptCloned.geometry.coordinates.reverse();\n  lineCloned.geometry.coordinates.reverse();\n  polyCloned.geometry.coordinates.reverse();\n  coordEach(fcCloned, (coord) => coord.reverse());\n  coordEach(gcCloned, (coord) => coord.reverse());\n\n  // Original Geometries should not be mutated\n  t.deepEqual(pt.geometry.coordinates, [0, 20], \"point\");\n  t.deepEqual(\n    line.geometry.coordinates,\n    [\n      [10, 40],\n      [0, 20],\n    ],\n    \"lineString\"\n  );\n  t.deepEqual(\n    poly.geometry.coordinates,\n    [\n      [\n        [10, 40],\n        [0, 20],\n        [20, 0],\n        [10, 40],\n      ],\n    ],\n    \"polygon\"\n  );\n\n  // Feature Collection\n  t.deepEqual(fc.features[0].geometry.coordinates, [0, 20], \"fc - point\");\n  t.deepEqual(\n    fc.features[1].geometry.coordinates,\n    [\n      [10, 40],\n      [0, 20],\n    ],\n    \"fc - lineString\"\n  );\n  t.deepEqual(\n    fc.features[2].geometry.coordinates,\n    [\n      [\n        [10, 40],\n        [0, 20],\n        [20, 0],\n        [10, 40],\n      ],\n    ],\n    \"fc - polygon\"\n  );\n\n  // Geometry Collection\n  t.deepEqual(gc.geometries[0].coordinates, [0, 20], \"gc - point\");\n  t.deepEqual(\n    gc.geometries[1].coordinates,\n    [\n      [10, 40],\n      [0, 20],\n    ],\n    \"gc - lineString\"\n  );\n  t.deepEqual(\n    gc.geometries[2].coordinates,\n    [\n      [\n        [10, 40],\n        [0, 20],\n        [20, 0],\n        [10, 40],\n      ],\n    ],\n    \"gc - polygon\"\n  );\n  t.end();\n});\n\ntest(\"turf-clone -- throws\", (t) => {\n  t.throws(() => clone(), /geojson is required/);\n  t.end();\n});\n\ntest(\"turf-clone -- optional properties\", (t) => {\n  const pt = point([0, 20]);\n  pt.properties = undefined;\n  pt.id = 300;\n  pt.bbox = [0, 20, 0, 20];\n\n  const ptCloned = clone(pt);\n  t.deepEqual(ptCloned.bbox, [0, 20, 0, 20]);\n  t.equal(ptCloned.id, 300);\n  t.end();\n});\n\ntest(\"turf-clone -- Geometry Objects\", (t) => {\n  const pt = point([0, 20]).geometry;\n  const line = lineString([\n    [10, 40],\n    [0, 20],\n  ]).geometry;\n  const poly = polygon([\n    [\n      [10, 40],\n      [0, 20],\n      [20, 0],\n      [10, 40],\n    ],\n  ]).geometry;\n\n  const ptCloned = clone(pt);\n  const lineCloned = clone(line);\n  const polyCloned = clone(poly);\n\n  ptCloned.coordinates.reverse();\n  lineCloned.coordinates.reverse();\n  polyCloned.coordinates.reverse();\n\n  t.deepEqual(pt.coordinates, [0, 20], \"geometry point\");\n  t.deepEqual(\n    line.coordinates,\n    [\n      [10, 40],\n      [0, 20],\n    ],\n    \"geometry line\"\n  );\n  t.deepEqual(\n    poly.coordinates,\n    [\n      [\n        [10, 40],\n        [0, 20],\n        [20, 0],\n        [10, 40],\n      ],\n    ],\n    \"geometry polygon\"\n  );\n  t.end();\n});\n\ntest(\"turf-clone -- Preserve Foreign Members -- Feature\", (t) => {\n  const properties = { foo: \"bar\" };\n  const bbox = [0, 20, 0, 20];\n  const id = 12345;\n  const pt = point([0, 20], properties, { bbox, id });\n  pt.custom = \"foreign members\";\n\n  const cloned = clone(pt);\n  t.equal(cloned.id, id);\n  t.equal(cloned.custom, pt.custom);\n  t.deepEqual(cloned.bbox, bbox);\n  t.deepEqual(cloned.properties, properties);\n  t.end();\n});\n\ntest(\"turf-clone -- Preserve Foreign Members -- FeatureCollection\", (t) => {\n  const properties = { foo: \"bar\" };\n  const bbox = [0, 20, 0, 20];\n  const id = 12345;\n  const fc = featureCollection([point([0, 20])], { bbox, id });\n  fc.custom = \"foreign members\";\n  fc.properties = properties;\n\n  const cloned = clone(fc);\n  t.equal(cloned.id, id);\n  t.equal(cloned.custom, fc.custom);\n  t.deepEqual(cloned.bbox, bbox);\n  t.deepEqual(cloned.properties, properties);\n  t.end();\n});\n\ntest(\"turf-clone -- Preserve all properties -- Feature\", (t) => {\n  const id = 12345;\n  const bbox = [0, 20, 0, 20];\n  const properties = {\n    foo: \"bar\",\n    object: { property: 1 },\n    array: [0, 1, 2],\n    number: 1,\n    nullity: null,\n    boolean: true,\n  };\n  const pt = point([0, 20], properties, { bbox, id });\n  pt.hello = \"world\"; // Foreign member\n\n  // Clone and mutate\n  const cloned = clone(pt);\n\n  // Clone properly translated all properties\n  t.equal(cloned.hello, \"world\");\n  t.equal(cloned.properties.foo, \"bar\");\n  t.equal(cloned.id, 12345);\n  t.deepEqual(cloned.bbox, [0, 20, 0, 20]);\n  t.equal(cloned.properties.object.property, 1);\n  t.deepEqual(cloned.properties.array, [0, 1, 2]);\n  t.equal(cloned.properties.number, 1);\n  t.equal(cloned.properties.nullity, null);\n  t.equal(cloned.properties.boolean, true);\n\n  // Mutate clone properties\n  cloned[\"hello\"] = \"universe\";\n  cloned.properties[\"foo\"] = \"foo\";\n  cloned[\"id\"] = 54321;\n  cloned[\"bbox\"] = [30, 40, 30, 40];\n  cloned.properties.object[\"property\"] = 2;\n  cloned.properties.array[0] = 500;\n  cloned.properties.number = -99;\n  cloned.properties.boolean = false;\n\n  // Test if original point hasn't been mutated\n  t.equal(pt.hello, \"world\");\n  t.equal(pt.properties.foo, \"bar\");\n  t.equal(pt.id, 12345);\n  t.deepEqual(pt.bbox, [0, 20, 0, 20]);\n  t.equal(pt.properties.object.property, 1);\n  t.deepEqual(pt.properties.array, [0, 1, 2]);\n  t.equal(pt.properties.number, 1);\n  t.equal(pt.properties.boolean, true);\n  t.end();\n});\n\ntest(\"turf-clone -- Preserve all properties -- FeatureCollection\", (t) => {\n  const bbox = [0, 20, 0, 20];\n  const id = 12345;\n  const fc = featureCollection([point([0, 20])], { bbox, id });\n  fc.hello = \"world\"; // Foreign member\n\n  // Clone and mutate\n  const cloned = clone(fc);\n  cloned[\"hello\"] = \"universe\";\n  cloned[\"id\"] = 54321;\n  cloned[\"bbox\"] = [30, 40, 30, 40];\n\n  t.equal(fc.hello, \"world\");\n  t.equal(fc.id, 12345);\n  t.deepEqual(fc.bbox, [0, 20, 0, 20]);\n  t.end();\n});\n\ntest(\"turf-clone -- Feature with null geometry\", (t) => {\n  const fc = featureCollection([\n    {\n      type: \"Feature\",\n      geometry: { type: \"Point\", coordinates: [102.0, 0.5] },\n      properties: { prop0: \"value0\" },\n    },\n    { type: \"Feature\", geometry: null, properties: { prop0: \"value1\" } },\n  ]);\n\n  // Clone\n  const cloned = clone(fc);\n\n  t.deepEqual(fc, cloned);\n  t.end();\n});\n\ntest(\"turf-clone -- Feature with property called 'length', issue #1621\", (t) => {\n  const f = feature(\n    { type: \"Point\", coordinates: [0, 0] },\n    {\n      processed: {\n        length: {\n          orig: 123.456,\n          opti: 100.0,\n        },\n      },\n    }\n  );\n\n  // Clone\n  const cloned = clone(f);\n\n  t.deepEqual(f, cloned, \"cloned feature should be deeply equal\");\n  t.equal(\n    cloned.properties.processed.length.orig,\n    123.456,\n    \"'orig' property should be preserved on 'processed.length' element\"\n  );\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-clone/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-clone/types.ts",
    "content": "import { Feature, LineString, Point } from \"geojson\";\nimport { lineString, point } from \"@turf/helpers\";\nimport { clone } from \"./index.js\";\n\nconst pt = point([0, 20]);\nconst ptCloned: Feature<Point> = clone(pt);\n\nconst line = lineString([\n  [0, 20],\n  [10, 10],\n]).geometry;\nconst lineCloned: LineString = clone(line);\n"
  },
  {
    "path": "packages/turf-clusters/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-clusters/README.md",
    "content": "# @turf/clusters\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## getCluster\n\nGet Cluster\n\n### Parameters\n\n*   `geojson` **[FeatureCollection][1]** GeoJSON Features\n*   `filter` **any** Filter used on GeoJSON properties to get Cluster\n\n### Examples\n\n```javascript\nvar geojson = turf.featureCollection([\n    turf.point([0, 0], {'marker-symbol': 'circle'}),\n    turf.point([2, 4], {'marker-symbol': 'star'}),\n    turf.point([3, 6], {'marker-symbol': 'star'}),\n    turf.point([5, 1], {'marker-symbol': 'square'}),\n    turf.point([4, 2], {'marker-symbol': 'circle'})\n]);\n\n// Create a cluster using K-Means (adds `cluster` to GeoJSON properties)\nvar clustered = turf.clustersKmeans(geojson);\n\n// Retrieve first cluster (0)\nvar cluster = turf.getCluster(clustered, {cluster: 0});\n//= cluster\n\n// Retrieve cluster based on custom properties\nturf.getCluster(clustered, {'marker-symbol': 'circle'}).length;\n//= 2\nturf.getCluster(clustered, {'marker-symbol': 'square'}).length;\n//= 1\n```\n\nReturns **[FeatureCollection][1]** Single Cluster filtered by GeoJSON Properties\n\n## clusterEachCallback\n\nCallback for clusterEach\n\nType: [Function][2]\n\n### Parameters\n\n*   `cluster` **[FeatureCollection][1]?** The current cluster being processed.\n*   `clusterValue` **any?** Value used to create cluster being processed.\n*   `currentIndex` **[number][3]?** The index of the current element being processed in the array.Starts at index 0\n\nReturns **void**&#x20;\n\n## clusterEach\n\nclusterEach\n\n### Parameters\n\n*   `geojson` **[FeatureCollection][1]** GeoJSON Features\n*   `property` **([string][4] | [number][3])** GeoJSON property key/value used to create clusters\n*   `callback` **[clusterEachCallback][5]** a method that takes (cluster, clusterValue, currentIndex)\n\n### Examples\n\n```javascript\nvar geojson = turf.featureCollection([\n    turf.point([0, 0]),\n    turf.point([2, 4]),\n    turf.point([3, 6]),\n    turf.point([5, 1]),\n    turf.point([4, 2])\n]);\n\n// Create a cluster using K-Means (adds `cluster` to GeoJSON properties)\nvar clustered = turf.clustersKmeans(geojson);\n\n// Iterate over each cluster\nturf.clusterEach(clustered, 'cluster', function (cluster, clusterValue, currentIndex) {\n    //= cluster\n    //= clusterValue\n    //= currentIndex\n})\n\n// Calculate the total number of clusters\nvar total = 0\nturf.clusterEach(clustered, 'cluster', function () {\n    total++;\n});\n\n// Create an Array of all the values retrieved from the 'cluster' property\nvar values = []\nturf.clusterEach(clustered, 'cluster', function (cluster, clusterValue) {\n    values.push(clusterValue);\n});\n```\n\nReturns **void**&#x20;\n\n## clusterReduceCallback\n\nCallback for clusterReduce\n\nThe first time the callback function is called, the values provided as arguments depend\non whether the reduce method has an initialValue argument.\n\nIf an initialValue is provided to the reduce method:\n\n*   The previousValue argument is initialValue.\n*   The currentValue argument is the value of the first element present in the array.\n\nIf an initialValue is not provided:\n\n*   The previousValue argument is the value of the first element present in the array.\n*   The currentValue argument is the value of the second element present in the array.\n\nType: [Function][2]\n\n### Parameters\n\n*   `previousValue` **any?** The accumulated value previously returned in the last invocation\n    of the callback, or initialValue, if supplied.\n*   `cluster` **[FeatureCollection][1]?** The current cluster being processed.\n*   `clusterValue` **any?** Value used to create cluster being processed.\n*   `currentIndex` **[number][3]?** The index of the current element being processed in the\n    array. Starts at index 0, if an initialValue is provided, and at index 1 otherwise.\n\nReturns **void**&#x20;\n\n## clusterReduce\n\nReduce clusters in GeoJSON Features, similar to Array.reduce()\n\n### Parameters\n\n*   `geojson` **[FeatureCollection][1]** GeoJSON Features\n*   `property` **([string][4] | [number][3])** GeoJSON property key/value used to create clusters\n*   `callback` **[clusterReduceCallback][6]** a method that takes (previousValue, cluster, clusterValue, currentIndex)\n*   `initialValue` **any?** Value to use as the first argument to the first call of the callback.\n\n### Examples\n\n```javascript\nvar geojson = turf.featureCollection([\n    turf.point([0, 0]),\n    turf.point([2, 4]),\n    turf.point([3, 6]),\n    turf.point([5, 1]),\n    turf.point([4, 2])\n]);\n\n// Create a cluster using K-Means (adds `cluster` to GeoJSON properties)\nvar clustered = turf.clustersKmeans(geojson);\n\n// Iterate over each cluster and perform a calculation\nvar initialValue = 0\nturf.clusterReduce(clustered, 'cluster', function (previousValue, cluster, clusterValue, currentIndex) {\n    //=previousValue\n    //=cluster\n    //=clusterValue\n    //=currentIndex\n    return previousValue++;\n}, initialValue);\n\n// Calculate the total number of clusters\nvar total = turf.clusterReduce(clustered, 'cluster', function (previousValue) {\n    return previousValue++;\n}, 0);\n\n// Create an Array of all the values retrieved from the 'cluster' property\nvar values = turf.clusterReduce(clustered, 'cluster', function (previousValue, cluster, clusterValue) {\n    return previousValue.concat(clusterValue);\n}, []);\n```\n\nReturns **any** The value that results from the reduction.\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n[5]: #clustereachcallback\n\n[6]: #clusterreducecallback\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/clusters\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-clusters/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { featureCollection, point } from \"@turf/helpers\";\nimport {\n  getCluster,\n  clusterEach,\n  clusterReduce,\n  propertiesContainsFilter,\n  filterProperties,\n  applyFilter,\n  createBins,\n} from \"./index.js\";\n\nconst geojson = featureCollection([\n  point([0, 0], { cluster: 0 }),\n  point([2, 4], { cluster: 1 }),\n  point([3, 6], { cluster: 1 }),\n  point([5, 1], { 0: \"foo\" }),\n  point([4, 2], { bar: \"foo\" }),\n  point([2, 4], {}),\n  point([4, 3], undefined),\n]);\n\n/**\n * Benchmark Results\n *\n * testing -- createBins x 1,909,730 ops/sec ±2.70% (83 runs sampled)\n * testing -- propertiesContainsFilter x 10,378,738 ops/sec ±2.63% (86 runs sampled)\n * testing -- filterProperties x 26,212,665 ops/sec ±2.49% (85 runs sampled)\n * testing -- applyFilter x 21,368,185 ops/sec ±2.71% (84 runs sampled)\n * getCluster -- string filter x 3,051,513 ops/sec ±1.83% (84 runs sampled)\n * getCluster -- object filter x 673,824 ops/sec ±2.20% (86 runs sampled)\n * getCluster -- aray filter x 2,284,972 ops/sec ±1.90% (86 runs sampled)\n * clusterEach x 890,683 ops/sec ±1.48% (87 runs sampled)\n * clusterReduce x 837,383 ops/sec ±1.93% (87 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-clusters\");\n\n// Testing Purposes\nsuite\n  .add(\"testing -- createBins\", () => createBins(geojson, \"cluster\"))\n  .add(\"testing -- propertiesContainsFilter\", () =>\n    propertiesContainsFilter({ foo: \"bar\", cluster: 0 }, { cluster: 0 })\n  )\n  .add(\"testing -- filterProperties\", () =>\n    filterProperties({ foo: \"bar\", cluster: 0 }, [\"cluster\"])\n  )\n  .add(\"testing -- applyFilter\", () =>\n    applyFilter({ foo: \"bar\", cluster: 0 }, [\"cluster\"])\n  );\n\nsuite\n  .add(\"getCluster -- string filter\", () => getCluster(geojson, \"cluster\"))\n  .add(\"getCluster -- object filter\", () => getCluster(geojson, { cluster: 1 }))\n  .add(\"getCluster -- aray filter\", () => getCluster(geojson, [\"cluster\"]))\n  .add(\"clusterEach\", () =>\n    clusterEach(geojson, \"cluster\", (cluster) => {\n      return cluster;\n    })\n  )\n  .add(\"clusterReduce\", () =>\n    clusterReduce(geojson, \"cluster\", (previousValue, cluster) => {\n      return cluster;\n    })\n  )\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-clusters/index.ts",
    "content": "import {\n  Feature,\n  FeatureCollection,\n  GeoJsonProperties,\n  GeometryObject,\n} from \"geojson\";\nimport { featureEach } from \"@turf/meta\";\nimport { featureCollection } from \"@turf/helpers\";\n\n/**\n * Get Cluster\n *\n * @function\n * @param {FeatureCollection} geojson GeoJSON Features\n * @param {*} filter Filter used on GeoJSON properties to get Cluster\n * @returns {FeatureCollection} Single Cluster filtered by GeoJSON Properties\n * @example\n * var geojson = turf.featureCollection([\n *     turf.point([0, 0], {'marker-symbol': 'circle'}),\n *     turf.point([2, 4], {'marker-symbol': 'star'}),\n *     turf.point([3, 6], {'marker-symbol': 'star'}),\n *     turf.point([5, 1], {'marker-symbol': 'square'}),\n *     turf.point([4, 2], {'marker-symbol': 'circle'})\n * ]);\n *\n * // Create a cluster using K-Means (adds `cluster` to GeoJSON properties)\n * var clustered = turf.clustersKmeans(geojson);\n *\n * // Retrieve first cluster (0)\n * var cluster = turf.getCluster(clustered, {cluster: 0});\n * //= cluster\n *\n * // Retrieve cluster based on custom properties\n * turf.getCluster(clustered, {'marker-symbol': 'circle'}).length;\n * //= 2\n * turf.getCluster(clustered, {'marker-symbol': 'square'}).length;\n * //= 1\n */\nfunction getCluster<\n  G extends GeometryObject,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(geojson: FeatureCollection<G, P>, filter: any): FeatureCollection<G, P> {\n  // Validation\n  if (!geojson) throw new Error(\"geojson is required\");\n  if (geojson.type !== \"FeatureCollection\")\n    throw new Error(\"geojson must be a FeatureCollection\");\n  if (filter === undefined || filter === null)\n    throw new Error(\"filter is required\");\n\n  // Filter Features\n  var features: Feature<G, P>[] = [];\n  featureEach<G, P>(geojson, function (feature) {\n    if (applyFilter(feature.properties, filter)) features.push(feature);\n  });\n  return featureCollection(features);\n}\n\n/**\n * Callback for clusterEach\n *\n * @callback clusterEachCallback\n * @param {FeatureCollection} [cluster] The current cluster being processed.\n * @param {any} [clusterValue] Value used to create cluster being processed.\n * @param {number} [currentIndex] The index of the current element being processed in the array.Starts at index 0\n * @returns {void}\n */\n\n/**\n * clusterEach\n *\n * @function\n * @param {FeatureCollection} geojson GeoJSON Features\n * @param {string|number} property GeoJSON property key/value used to create clusters\n * @param {clusterEachCallback} callback a method that takes (cluster, clusterValue, currentIndex)\n * @returns {void}\n * @example\n * var geojson = turf.featureCollection([\n *     turf.point([0, 0]),\n *     turf.point([2, 4]),\n *     turf.point([3, 6]),\n *     turf.point([5, 1]),\n *     turf.point([4, 2])\n * ]);\n *\n * // Create a cluster using K-Means (adds `cluster` to GeoJSON properties)\n * var clustered = turf.clustersKmeans(geojson);\n *\n * // Iterate over each cluster\n * turf.clusterEach(clustered, 'cluster', function (cluster, clusterValue, currentIndex) {\n *     //= cluster\n *     //= clusterValue\n *     //= currentIndex\n * })\n *\n * // Calculate the total number of clusters\n * var total = 0\n * turf.clusterEach(clustered, 'cluster', function () {\n *     total++;\n * });\n *\n * // Create an Array of all the values retrieved from the 'cluster' property\n * var values = []\n * turf.clusterEach(clustered, 'cluster', function (cluster, clusterValue) {\n *     values.push(clusterValue);\n * });\n */\nfunction clusterEach<\n  G extends GeometryObject,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  geojson: FeatureCollection<G, P>,\n  property: number | string,\n  callback: (\n    cluster: FeatureCollection<G, P>,\n    clusterValue?: any,\n    currentIndex?: number\n  ) => void\n): void {\n  // Validation\n  if (!geojson) throw new Error(\"geojson is required\");\n  if (geojson.type !== \"FeatureCollection\")\n    throw new Error(\"geojson must be a FeatureCollection\");\n  if (property === undefined || property === null)\n    throw new Error(\"property is required\");\n\n  // Create clusters based on property values\n  var bins = createBins(geojson, property);\n  var values = Object.keys(bins);\n  for (var index = 0; index < values.length; index++) {\n    var value = values[index];\n    var bin = bins[value];\n    var features = [];\n    for (var i = 0; i < bin.length; i++) {\n      features.push(geojson.features[bin[i]]);\n    }\n    callback(featureCollection(features), value, index);\n  }\n}\n\n/**\n * Callback for clusterReduce\n *\n * The first time the callback function is called, the values provided as arguments depend\n * on whether the reduce method has an initialValue argument.\n *\n * If an initialValue is provided to the reduce method:\n *  - The previousValue argument is initialValue.\n *  - The currentValue argument is the value of the first element present in the array.\n *\n * If an initialValue is not provided:\n *  - The previousValue argument is the value of the first element present in the array.\n *  - The currentValue argument is the value of the second element present in the array.\n *\n * @callback clusterReduceCallback\n * @param {*} [previousValue] The accumulated value previously returned in the last invocation\n * of the callback, or initialValue, if supplied.\n * @param {FeatureCollection} [cluster] The current cluster being processed.\n * @param {*} [clusterValue] Value used to create cluster being processed.\n * @param {number} [currentIndex] The index of the current element being processed in the\n * array. Starts at index 0, if an initialValue is provided, and at index 1 otherwise.\n * @returns {void}\n */\n\n/**\n * Reduce clusters in GeoJSON Features, similar to Array.reduce()\n *\n * @function\n * @param {FeatureCollection} geojson GeoJSON Features\n * @param {string|number} property GeoJSON property key/value used to create clusters\n * @param {clusterReduceCallback} callback a method that takes (previousValue, cluster, clusterValue, currentIndex)\n * @param {any} [initialValue] Value to use as the first argument to the first call of the callback.\n * @returns {any} The value that results from the reduction.\n * @example\n * var geojson = turf.featureCollection([\n *     turf.point([0, 0]),\n *     turf.point([2, 4]),\n *     turf.point([3, 6]),\n *     turf.point([5, 1]),\n *     turf.point([4, 2])\n * ]);\n *\n * // Create a cluster using K-Means (adds `cluster` to GeoJSON properties)\n * var clustered = turf.clustersKmeans(geojson);\n *\n * // Iterate over each cluster and perform a calculation\n * var initialValue = 0\n * turf.clusterReduce(clustered, 'cluster', function (previousValue, cluster, clusterValue, currentIndex) {\n *     //=previousValue\n *     //=cluster\n *     //=clusterValue\n *     //=currentIndex\n *     return previousValue++;\n * }, initialValue);\n *\n * // Calculate the total number of clusters\n * var total = turf.clusterReduce(clustered, 'cluster', function (previousValue) {\n *     return previousValue++;\n * }, 0);\n *\n * // Create an Array of all the values retrieved from the 'cluster' property\n * var values = turf.clusterReduce(clustered, 'cluster', function (previousValue, cluster, clusterValue) {\n *     return previousValue.concat(clusterValue);\n * }, []);\n */\nfunction clusterReduce<\n  G extends GeometryObject,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  geojson: FeatureCollection<G, P>,\n  property: number | string,\n  callback: (\n    previousValue: any | undefined,\n    cluster: FeatureCollection<G, P>,\n    clusterValue?: any,\n    currentIndex?: number\n  ) => void,\n  initialValue?: any\n): void {\n  var previousValue = initialValue;\n  clusterEach(\n    geojson,\n    property,\n    function (cluster, clusterValue, currentIndex) {\n      if (currentIndex === 0 && initialValue === undefined)\n        previousValue = cluster;\n      else\n        previousValue = callback(\n          previousValue,\n          cluster,\n          clusterValue,\n          currentIndex\n        );\n    }\n  );\n  return previousValue;\n}\n\n/**\n * Create Bins\n *\n * @private\n * @param {FeatureCollection} geojson GeoJSON Features\n * @param {string|number} property Property values are used to create bins\n * @returns {Object} bins with Feature IDs\n * @example\n * var geojson = turf.featureCollection([\n *     turf.point([0, 0], {cluster: 0, foo: 'null'}),\n *     turf.point([2, 4], {cluster: 1, foo: 'bar'}),\n *     turf.point([5, 1], {0: 'foo'}),\n *     turf.point([3, 6], {cluster: 1}),\n * ]);\n * createBins(geojson, 'cluster');\n * //= { '0': [ 0 ], '1': [ 1, 3 ] }\n */\nfunction createBins(\n  geojson: FeatureCollection<any>,\n  property: string | number\n) {\n  var bins: Record<string, number[]> = {};\n\n  featureEach(geojson, function (feature, i) {\n    var properties = feature.properties || {};\n    if (Object.prototype.hasOwnProperty.call(properties, String(property))) {\n      var value = properties[property];\n      if (Object.prototype.hasOwnProperty.call(bins, value))\n        bins[value].push(i);\n      else bins[value] = [i];\n    }\n  });\n  return bins;\n}\n\n/**\n * Apply Filter\n *\n * @private\n * @param {*} properties Properties\n * @param {*} filter Filter\n * @returns {boolean} applied Filter to properties\n */\nfunction applyFilter(properties: any, filter: any) {\n  if (properties === undefined) return false;\n  var filterType = typeof filter;\n\n  // String & Number\n  if (filterType === \"number\" || filterType === \"string\")\n    return Object.prototype.hasOwnProperty.call(properties, filter);\n  // Array\n  else if (Array.isArray(filter)) {\n    for (var i = 0; i < filter.length; i++) {\n      if (!applyFilter(properties, filter[i])) return false;\n    }\n    return true;\n    // Object\n  } else {\n    return propertiesContainsFilter(properties, filter);\n  }\n}\n\n/**\n * Properties contains filter (does not apply deepEqual operations)\n *\n * @private\n * @param {*} properties Properties\n * @param {Object} filter Filter\n * @returns {boolean} does filter equal Properties\n * @example\n * propertiesContainsFilter({foo: 'bar', cluster: 0}, {cluster: 0})\n * //= true\n * propertiesContainsFilter({foo: 'bar', cluster: 0}, {cluster: 1})\n * //= false\n */\nfunction propertiesContainsFilter(properties: any, filter: any): boolean {\n  var keys = Object.keys(filter);\n  for (var i = 0; i < keys.length; i++) {\n    var key = keys[i];\n    if (properties[key] !== filter[key]) return false;\n  }\n  return true;\n}\n\n/**\n * Filter Properties\n *\n * @private\n * @param {*} properties Properties\n * @param {Array<string>} keys Used to filter Properties\n * @returns {*} filtered Properties\n * @example\n * filterProperties({foo: 'bar', cluster: 0}, ['cluster'])\n * //= {cluster: 0}\n */\nfunction filterProperties(\n  properties: Record<string, any>,\n  keys: string[]\n): any {\n  if (!keys) return {};\n  if (!keys.length) return {};\n\n  var newProperties: Record<string, any> = {};\n  for (var i = 0; i < keys.length; i++) {\n    var key = keys[i];\n    if (Object.prototype.hasOwnProperty.call(properties, key))\n      newProperties[key] = properties[key];\n  }\n  return newProperties;\n}\n\nexport {\n  getCluster,\n  clusterEach,\n  clusterReduce,\n  createBins,\n  applyFilter,\n  propertiesContainsFilter,\n  filterProperties,\n};\n// No default export!\n"
  },
  {
    "path": "packages/turf-clusters/package.json",
    "content": "{\n  \"name\": \"@turf/clusters\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Group points into clusters based on their spatial proximity or properties.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"cluster\",\n    \"clusters\",\n    \"clustering\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-clusters/test.ts",
    "content": "import test from \"tape\";\nimport { point, featureCollection } from \"@turf/helpers\";\nimport {\n  getCluster,\n  clusterEach,\n  clusterReduce,\n  // Below methods are not exposed in @turf/turf\n  createBins,\n  applyFilter,\n  filterProperties,\n  propertiesContainsFilter,\n} from \"./index.js\";\n\nconst properties = { foo: \"bar\", cluster: 0 };\nconst geojson = featureCollection([\n  point([0, 0], { cluster: 0, foo: \"null\" }),\n  point([2, 4], { cluster: 1, foo: \"bar\" }),\n  point([3, 6], { cluster: 1 }),\n  point([5, 1], { 0: \"foo\" }),\n  point([4, 2], { bar: \"foo\" }),\n  point([2, 4], {}),\n  point([4, 3], undefined),\n]);\n\ntest(\"clusters -- getCluster\", (t) => {\n  t.equal(getCluster(geojson, 0).features.length, 1, \"number1\");\n  t.equal(getCluster(geojson, 1).features.length, 0, \"number2\");\n  t.equal(getCluster(geojson, \"bar\").features.length, 1, \"string1\");\n  t.equal(getCluster(geojson, \"cluster\").features.length, 3, \"string2\");\n  t.equal(getCluster(geojson, { cluster: 1 }).features.length, 2, \"object1\");\n  t.equal(getCluster(geojson, { cluster: 0 }).features.length, 1, \"object2\");\n  t.equal(getCluster(geojson, [\"cluster\", { foo: \"bar\" }]).features.length, 1);\n  t.equal(getCluster(geojson, [\"cluster\", \"foo\"]).features.length, 2);\n  t.equal(getCluster(geojson, [\"cluster\"]).features.length, 3);\n  t.end();\n});\n\ntest(\"clusters -- clusterEach\", (t) => {\n  const clusters = [];\n  let total = 0;\n  clusterEach(geojson, \"cluster\", (cluster) => {\n    total += cluster.features.length;\n    clusters.push(cluster);\n    if (!cluster.features[0]) t.fail(\"if feature is undefined\");\n  });\n  t.equal(total, 3);\n  t.equal(clusters.length, 2);\n  t.end();\n});\n\ntest(\"clusters -- clusterReduce\", (t) => {\n  const clusters = [];\n  const total = clusterReduce(\n    geojson,\n    \"cluster\",\n    (previousValue, cluster) => {\n      clusters.push(cluster);\n      return previousValue + cluster.features.length;\n    },\n    0\n  );\n  t.equal(total, 3);\n  t.equal(clusters.length, 2);\n  t.end();\n});\n\ntest(\"clusters.utils -- applyFilter\", (t) => {\n  t.true(applyFilter(properties, \"cluster\"));\n  t.true(applyFilter(properties, [\"cluster\"]));\n  t.false(applyFilter(properties, { cluster: 1 }));\n  t.true(applyFilter(properties, { cluster: 0 }));\n  t.false(applyFilter(undefined, { cluster: 0 }));\n  t.end();\n});\n\ntest(\"clusters.utils -- filterProperties\", (t) => {\n  t.deepEqual(filterProperties(properties, [\"cluster\"]), { cluster: 0 });\n  t.deepEqual(filterProperties(properties, []), {});\n  t.deepEqual(filterProperties(properties, undefined), {});\n  t.end();\n});\n\ntest(\"clusters.utils -- propertiesContainsFilter\", (t) => {\n  t.deepEqual(propertiesContainsFilter(properties, { cluster: 0 }), true);\n  t.deepEqual(propertiesContainsFilter(properties, { cluster: 1 }), false);\n  t.deepEqual(propertiesContainsFilter(properties, { bar: \"foo\" }), false);\n  t.end();\n});\n\ntest(\"clusters.utils -- propertiesContainsFilter\", (t) => {\n  t.deepEqual(createBins(geojson, \"cluster\"), { 0: [0], 1: [1, 2] });\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-clusters/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-clusters/types.ts",
    "content": "import { Point } from \"geojson\";\nimport * as clusters from \"./index.js\";\nimport { featureCollection, point } from \"@turf/helpers\";\nimport { getCluster, clusterEach, clusterReduce } from \"./index.js\";\n\n/**\n * Fixtures\n */\nconst geojson = featureCollection<\n  Point,\n  { cluster?: number; 0?: string; bar?: string }\n>([\n  point([0, 0], { cluster: 0 }),\n  point([2, 4], { cluster: 1 }),\n  point([3, 6], { cluster: 1 }),\n  point([3, 6], { 0: \"foo\" }),\n  point([3, 6], { bar: \"foo\" }),\n]);\n\n/**\n * Get Cluster\n */\nclusters.getCluster(geojson, { cluster: 1 });\ngetCluster(geojson, { cluster: 1 });\ngetCluster(geojson, { 0: \"foo\" });\ngetCluster(geojson, { bar: \"foo\" });\ngetCluster(geojson, \"cluster\");\ngetCluster(geojson, [\"cluster\", \"bar\"]);\ngetCluster(geojson, 0);\n\n/**\n * ClusterEach\n */\nclusters.clusterEach(geojson, \"cluster\", () => {\n  /* no-op */\n});\nclusterEach(geojson, \"cluster\", (cluster, clusterValue, currentIndex) => {\n  //= cluster\n  //= clusterValue\n  //= currentIndex\n});\n// Calculate the total number of clusters\nlet total = 0;\nclusterEach(geojson, \"cluster\", () => {\n  total++;\n});\n\n// Create an Array of all the values retrieved from the 'cluster' property\nconst values: number[] = [];\nclusterEach(geojson, \"cluster\", (cluster, clusterValue: number) => {\n  values.push(clusterValue);\n});\n\n/**\n * ClusterReduce\n */\nconst initialValue = 0;\nclusterReduce(geojson, \"cluster\", () => {\n  /* no-op */\n});\nclusterReduce(\n  geojson,\n  \"cluster\",\n  (previousValue, cluster, clusterValue, currentIndex) => {\n    //= previousValue\n    //= cluster\n    //= clusterValue\n    //= currentIndex\n  },\n  initialValue\n);\n\n// Calculate the total number of clusters\nconst totalReduce = clusterReduce(\n  geojson,\n  \"cluster\",\n  function (previousValue) {\n    return previousValue++;\n  },\n  0\n);\n\n// Create an Array of all the values retrieved from the 'cluster' property\nconst valuesReduce = clusterReduce(\n  geojson,\n  \"cluster\",\n  function (previousValue, cluster, clusterValue) {\n    return previousValue.concat(clusterValue);\n  },\n  []\n);\n\n/**\n * Custom Properties\n */\nconst customPoints = featureCollection([\n  point([0, 0], { cluster: 0 }),\n  point([2, 4], { cluster: 1 }),\n  point([3, 6], { cluster: 1 }),\n]);\n\ngetCluster(customPoints, { cluster: 1 }).features[0].properties.cluster;\n// getCluster(customPoints, {cluster: 1}).features[0].properties.foo // [ts] Property 'foo' does not exist on type '{ cluster: number; }'.\n\nclusterEach(customPoints, \"cluster\", (cluster) => {\n  cluster.features[0].properties.cluster;\n  // cluster.features[0].properties.foo // [ts] Property 'foo' does not exist on type '{ cluster: number; }'.\n});\n\nclusterReduce(customPoints, \"cluster\", (previousValue, cluster) => {\n  cluster.features[0].properties.cluster;\n  // cluster.features[0].properties.foo // [ts] Property 'foo' does not exist on type '{ cluster: number; }'.\n});\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/README.md",
    "content": "# @turf/clusters-dbscan\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## Dbscan\n\nPoint classification within the cluster.\n\nType: (`\"core\"` | `\"edge\"` | `\"noise\"`)\n\n## DbscanProps\n\n**Extends GeoJsonProperties**\n\nProperties assigned to each clustered point.\n\nType: [object][1]\n\n### Properties\n\n*   `dbscan` **[Dbscan][2]?** type of point it has been classified as\n*   `cluster` **[number][3]?** associated clusterId\n\n## clustersDbscan\n\nTakes a set of [points][4] and partition them into clusters according to [DBSCAN's][5] data clustering algorithm.\n\n### Parameters\n\n*   `points` **[FeatureCollection][6]<[Point][4]>** to be clustered\n*   `maxDistance` **[number][3]** Maximum Distance between any point of the cluster to generate the clusters (kilometers by default, see options)\n*   `options` **[Object][1]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** in which `maxDistance` is expressed, Supports all valid Turf [Units][7] (optional, default `\"kilometers\"`)\n    *   `options.mutate` **[boolean][8]** Allows GeoJSON input to be mutated (optional, default `false`)\n    *   `options.minPoints` **[number][3]** Minimum number of points to generate a single cluster,\n        points which do not meet this requirement will be classified as an 'edge' or 'noise'. (optional, default `3`)\n\n### Examples\n\n```javascript\n// create random points with random z-values in their properties\nvar points = turf.randomPoint(100, {bbox: [0, 30, 20, 50]});\nvar maxDistance = 100;\nvar clustered = turf.clustersDbscan(points, maxDistance);\n\n//addToMap\nvar addToMap = [clustered];\n```\n\nReturns **[FeatureCollection][6]<[Point][4], [DbscanProps][9]>** Clustered Points with an additional two properties associated to each Feature:*   {number} cluster - the associated clusterId\n*   {string} dbscan - type of point it has been classified as ('core'|'edge'|'noise')\n\n[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[2]: #dbscan\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[5]: https://en.wikipedia.org/wiki/DBSCAN\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[7]: https://turfjs.org/docs/api/types/Units\n\n[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n[9]: #dbscanprops\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/clusters-dbscan\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { clustersDbscan } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n// Define Fixtures\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * fiji: 2.472ms\n * many-points: 48.504ms\n * noise: 1.218ms\n * points-with-properties: 0.194ms\n * points1: 0.697ms\n * points2: 0.579ms\n * fiji x 42,125 ops/sec ±1.27% (90 runs sampled)\n * many-points x 33.21 ops/sec ±1.23% (57 runs sampled)\n * noise x 6,379 ops/sec ±0.98% (90 runs sampled)\n * points-with-properties x 35,111 ops/sec ±0.74% (94 runs sampled)\n * points1 x 7,199 ops/sec ±0.99% (90 runs sampled)\n * points2 x 4,047 ops/sec ±1.02% (91 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-clusters-dbscan\");\nfor (const { name, geojson } of fixtures) {\n  let { distance } = geojson.properties || {};\n  distance = distance || 100;\n\n  console.time(name);\n  clustersDbscan(geojson, distance);\n  console.timeEnd(name);\n  suite.add(name, () => clustersDbscan(geojson, distance));\n}\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/index.ts",
    "content": "import { GeoJsonProperties, FeatureCollection, Point } from \"geojson\";\nimport { clone } from \"@turf/clone\";\nimport { Units } from \"@turf/helpers\";\nimport KDBush from \"kdbush\";\nimport * as geokdbush from \"geokdbush\";\n\n/**\n * Point classification within the cluster.\n *\n * @typedef {\"core\" | \"edge\" | \"noise\"} Dbscan\n */\ntype Dbscan = \"core\" | \"edge\" | \"noise\";\n\n/**\n * Properties assigned to each clustered point.\n *\n * @extends GeoJsonProperties\n * @typedef {object} DbscanProps\n * @property {Dbscan} [dbscan] type of point it has been classified as\n * @property {number} [cluster] associated clusterId\n */\ntype DbscanProps = GeoJsonProperties & {\n  dbscan?: Dbscan;\n  cluster?: number;\n};\n\n// Structure of a point in the spatial index\ntype IndexedPoint = {\n  minX: number;\n  minY: number;\n  maxX: number;\n  maxY: number;\n  index: number;\n};\n\n/**\n * Takes a set of {@link Point|points} and partition them into clusters according to {@link https://en.wikipedia.org/wiki/DBSCAN|DBSCAN's} data clustering algorithm.\n *\n * @function\n * @param {FeatureCollection<Point>} points to be clustered\n * @param {number} maxDistance Maximum Distance between any point of the cluster to generate the clusters (kilometers by default, see options)\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units=\"kilometers\"] in which `maxDistance` is expressed, Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}\n * @param {boolean} [options.mutate=false] Allows GeoJSON input to be mutated\n * @param {number} [options.minPoints=3] Minimum number of points to generate a single cluster,\n * points which do not meet this requirement will be classified as an 'edge' or 'noise'.\n * @returns {FeatureCollection<Point, DbscanProps>} Clustered Points with an additional two properties associated to each Feature:\n * - {number} cluster - the associated clusterId\n * - {string} dbscan - type of point it has been classified as ('core'|'edge'|'noise')\n * @example\n * // create random points with random z-values in their properties\n * var points = turf.randomPoint(100, {bbox: [0, 30, 20, 50]});\n * var maxDistance = 100;\n * var clustered = turf.clustersDbscan(points, maxDistance);\n *\n * //addToMap\n * var addToMap = [clustered];\n */\nfunction clustersDbscan(\n  points: FeatureCollection<Point>,\n  maxDistance: number,\n  options: {\n    units?: Units;\n    minPoints?: number;\n    mutate?: boolean;\n  } = {}\n): FeatureCollection<Point, DbscanProps> {\n  // Input validation being handled by Typescript\n  // TODO oops! No it isn't. Typescript doesn't do runtime checking. We should\n  // re-enable these checks, though will have to wait for a major version bump\n  // as more restrictive checks could break currently working code.\n  // collectionOf(points, 'Point', 'points must consist of a FeatureCollection of only Points');\n  // if (maxDistance === null || maxDistance === undefined) throw new Error('maxDistance is required');\n  // if (!(Math.sign(maxDistance) > 0)) throw new Error('maxDistance is invalid');\n  // if (!(minPoints === undefined || minPoints === null || Math.sign(minPoints) > 0)) throw new Error('options.minPoints is invalid');\n\n  // Clone points to prevent any mutations\n  if (options.mutate !== true) points = clone(points);\n\n  // Defaults\n  const minPoints = options.minPoints || 3;\n\n  // Create a spatial index\n  const kdIndex = new KDBush(points.features.length);\n  // Index each point for spatial queries\n  for (const point of points.features) {\n    kdIndex.add(point.geometry.coordinates[0], point.geometry.coordinates[1]);\n  }\n  kdIndex.finish();\n\n  // Keeps track of whether a point has been visited or not.\n  var visited = points.features.map((_) => false);\n\n  // Keeps track of whether a point is assigned to a cluster or not.\n  var assigned = points.features.map((_) => false);\n\n  // Keeps track of whether a point is noise|edge or not.\n  var isnoise = points.features.map((_) => false);\n\n  // Keeps track of the clusterId for each point\n  var clusterIds: number[] = points.features.map((_) => -1);\n\n  // Function to find neighbors of a point within a given distance\n  const regionQuery = (index: number): IndexedPoint[] => {\n    const point = points.features[index];\n    const [x, y] = point.geometry.coordinates;\n\n    return (\n      geokdbush\n        // @ts-expect-error 2345 until https://github.com/mourner/geokdbush/issues/20 is resolved\n        .around<number>(kdIndex, x, y, undefined, maxDistance)\n        .map((id) => ({\n          minX: points.features[id].geometry.coordinates[0],\n          minY: points.features[id].geometry.coordinates[1],\n          maxX: points.features[id].geometry.coordinates[0],\n          maxY: points.features[id].geometry.coordinates[1],\n          index: id,\n        }))\n    );\n  };\n\n  // Function to expand a cluster\n  const expandCluster = (clusteredId: number, neighbors: IndexedPoint[]) => {\n    for (var i = 0; i < neighbors.length; i++) {\n      var neighbor = neighbors[i];\n      const neighborIndex = neighbor.index;\n      if (!visited[neighborIndex]) {\n        visited[neighborIndex] = true;\n        const nextNeighbors = regionQuery(neighborIndex);\n        if (nextNeighbors.length >= minPoints) {\n          neighbors.push(...nextNeighbors);\n        }\n      }\n      if (!assigned[neighborIndex]) {\n        assigned[neighborIndex] = true;\n        clusterIds[neighborIndex] = clusteredId;\n      }\n    }\n  };\n\n  // Main DBSCAN clustering algorithm\n  var nextClusteredId = 0;\n  points.features.forEach((_, index) => {\n    if (visited[index]) return;\n    const neighbors = regionQuery(index);\n    if (neighbors.length >= minPoints) {\n      const clusteredId = nextClusteredId;\n      nextClusteredId++;\n      visited[index] = true;\n      expandCluster(clusteredId, neighbors);\n    } else {\n      isnoise[index] = true;\n    }\n  });\n\n  // Assign DBSCAN properties to each point\n  points.features.forEach((_, index) => {\n    var clusterPoint = points.features[index];\n    if (!clusterPoint.properties) {\n      clusterPoint.properties = {};\n    }\n\n    if (clusterIds[index] >= 0) {\n      clusterPoint.properties.dbscan = isnoise[index] ? \"edge\" : \"core\";\n      clusterPoint.properties.cluster = clusterIds[index];\n    } else {\n      clusterPoint.properties.dbscan = \"noise\";\n    }\n  });\n\n  return points as FeatureCollection<Point, DbscanProps>;\n}\n\nexport { Dbscan, DbscanProps, clustersDbscan };\nexport default clustersDbscan;\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/package.json",
    "content": "{\n  \"name\": \"@turf/clusters-dbscan\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a set of points and partition them into clusters according to DBSCAN's data clustering algorithm.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Lukasz <@uhho>\",\n    \"Denis Carriere <@DenisCarriere>\",\n    \"Stefano Borghi <@stebogit>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"cluster\",\n    \"clusters\",\n    \"clustering\",\n    \"density\",\n    \"dbscan\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/centroid\": \"workspace:*\",\n    \"@turf/clusters\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"chromatism\": \"^3.0.0\",\n    \"concaveman\": \"^1.2.1\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/clone\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"@types/geokdbush\": \"^1.1.5\",\n    \"geokdbush\": \"^2.0.1\",\n    \"kdbush\": \"^4.0.2\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/test/in/fiji.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [179.439697265625, -16.55196172197251]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [179.01123046874997, -16.97274101999901]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [179.505615234375, -17.035777250427184]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [180.75805664062497, -16.41500926733237]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [181.1865234375, -16.615137799987075]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [181.03271484375, -16.277960306212513]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/test/in/many-points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"distance\": 75,\n    \"minPoints\": 3\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.36337554761008, 19.119473770547124]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.32753919964946, 20.843505437175903]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.72930024352243, 22.95523079568951]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.28985709132587, 16.584015683001546]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.94492705924428, 21.0702981386651]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.05488356732162, 24.111641311913072]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.55079764304975, 25.525431992772358]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.11420407247648, 26.113452348786268]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.8076846951252, 22.255910609327792]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.98702719224296, 25.275001495112985]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.54236384636712, 20.789257545981407]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.57808400285332, 20.00051975393173]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.39655991111083, 22.12594824182586]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.42324858424885, 17.48175433130492]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.90361604004578, 26.430002559611477]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.22266857015823, 20.94137638968897]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.48717976822758, 20.224242981590255]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.06779765523183, 27.276249335066662]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.99075803676163, 17.651929487468298]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.53563340237405, 26.495418224944373]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.20462326614003, 24.00357261039075]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.58330318049086, 18.09915952726896]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.50889284912286, 18.340562952508183]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.55680807421967, 21.907870183116437]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.53689212714627, 17.422501403729605]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.18027511981438, 18.875894880366534]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.39732218872196, 25.629464613691137]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.66061545607911, 22.757810888614223]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.65357594791968, 16.66838838845727]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.77643699392496, 27.091684659861052]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.13081869539506, 26.23449839991876]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.43824120718541, 19.103181050521584]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.43898229878118, 18.874231952472687]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.92734033427595, 20.82599847071201]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.27364128877521, 21.130861117009847]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.05413199086016, 23.058073292292104]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.28388468077954, 22.883779502221373]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.77696496688779, 18.94471042190279]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.23882701110625, 20.30184311650061]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.66116457836486, 20.169682381560182]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.90248833212131, 26.884383581357255]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.28525543556775, 26.722194267296018]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.8977221405959, 19.412558043465]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.07684618758876, 27.17395724732544]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.41316964578398, 23.148029434777555]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.92622530551323, 25.623260952842156]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.2549851564484, 22.35997051326973]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.7199945397987, 25.802953128684692]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.96348979974654, 27.35814140608639]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.04921623428444, 20.61204095701038]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.54213379075634, 25.505384186492893]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.61403051800008, 17.263716566767037]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.25360192470616, 18.686705558388965]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.42930471321405, 20.022748677821312]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.44899512481147, 21.52626642668551]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.38761515683782, 18.77265726075554]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.12756391373203, 25.531641282912506]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.65487739464005, 20.270385418656613]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.44983759982364, 18.547000172845294]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.53680657077764, 25.303329199906706]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.01712484014583, 24.449642983600107]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.86222771555597, 22.720569651349564]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.2520931858629, 25.53784765691357]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.60441825132624, 23.93129090727725]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.2164652385625, 25.79578750021983]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.63151040609172, 24.490225688795583]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.51548817891319, 17.202270132332913]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.3121102967554, 25.956525827964448]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.27005222591032, 17.528372337434828]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.0823710181298, 25.482920857480014]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.75288708284614, 18.922685406247748]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.52847693811808, 24.220685835886385]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.42010129302429, 25.72860309981145]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.03682779147974, 27.053835982653894]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.67472974247343, 24.956264380693316]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.95315877653405, 18.41169388608788]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.57393282654176, 26.261024024692077]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.92845035818462, 17.837520858411256]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.5179339115434, 23.450627516507094]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.71943800617547, 19.616649637864654]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.93211879732236, 26.33170236314861]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.10661507770358, 25.13063963201959]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.24887371103026, 21.739851639014628]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.26129906562491, 21.294934204528648]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.2729878125471, 23.65784314034355]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.3562097070285, 24.24226765651852]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.99265814798184, 27.483971653923085]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.63635988061537, 18.75973134353604]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.76340181762502, 26.57219504751686]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.45164209210782, 23.76673190659356]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.65455892791887, 27.186142540274957]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.03313564896565, 24.333750064476934]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.87222884039794, 19.159104199268683]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.54286133638129, 24.13575708893132]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.26242751330523, 20.472647289870025]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.80042213720098, 20.990256802329768]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.5874725368364, 25.039930971231904]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.85825660840021, 25.43539990016023]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.17454776573982, 23.461743771248557]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.40002194939215, 20.67151202116478]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.23963323045145, 23.244627904260923]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.81552101630216, 26.53756981389545]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.9283270010284, 24.674017344728615]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.70000865367116, 21.542018533522416]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.48978633680683, 19.623096473871033]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.67175298435387, 17.880881534565148]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.04610391202878, 26.551597087996466]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.84175265531377, 16.85074369818602]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.95908129532202, 21.185424844181092]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.88684525321649, 18.726646021819167]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.15582212817301, 18.696902173553443]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.5644212682104, 20.850894115743387]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.37878622301193, 16.91615114076283]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.81019601780373, 17.165972386566605]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.4614226211491, 23.444082141644998]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.18265845716839, 25.295833894402776]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.09803657824347, 23.3454534216312]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.34448173717335, 17.84048983960788]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.18827115285569, 20.273168111170328]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.26216347689832, 23.673136982276464]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.21575485381635, 23.096925087889748]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.01908584146595, 21.557475862048076]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.92274968888073, 26.019876080997598]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.55727606952377, 22.36430316761306]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.25891612041117, 19.525184281200534]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.64279747070925, 25.651725881829897]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.40499501048518, 16.63021658406485]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.64998704253041, 24.234779530366744]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.30467012694315, 17.92521920364085]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.76550387867614, 21.84873202139447]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.2770011073176, 26.540918581152965]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.20171143790367, 24.334344930797855]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.51391779937516, 18.211967578932978]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.81858154084357, 19.071318793255987]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.87897523658762, 22.009563011217917]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.17146072076018, 22.71145107992815]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.14138268439117, 27.295964747431004]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.01085563325441, 23.60461239295877]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.61068998466835, 21.311283807756645]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.76701891828932, 27.195861233372437]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.55059712821668, 25.49682672225246]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.42534293525704, 20.342801196105015]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.85957138950651, 25.651916540759668]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.67260570784427, 20.45532583962798]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.81872422593077, 21.669857512462364]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.38646877459935, 19.37340763751337]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.50710379745864, 18.424063455433217]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.632893967135, 23.107454998460437]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.36852553393699, 24.295072371424403]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.86140755178053, 17.50071319492512]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.56458486764306, 23.27787869671228]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.25719355261317, 18.841254641177088]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.79365159485565, 24.73837411446049]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.77110623794552, 22.880747711470292]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.17830942471453, 27.459109723499697]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.5062774214051, 17.326690422594897]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.19600112265177, 22.73914989583398]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.58173201222138, 23.850997885697698]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.71045285694422, 17.079742569860166]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.34171838085163, 22.153445077419946]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.55081810986574, 24.915158163291853]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.59793295622734, 18.75099342612817]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.14433438213305, 27.036543336370556]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.4434583942987, 19.619680064723546]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.51440928893466, 19.680938852916263]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.95150377384275, 26.91911731157561]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.4550593256632, 24.03016205722427]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.8228436577642, 25.845318184468677]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.16769788043096, 16.98191521287846]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.51634149582756, 19.10937565092933]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.72446682780881, 22.25313981239625]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.95113454727932, 26.357292830184782]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.89319872559254, 21.773847762169503]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.50995550468448, 26.805856081166645]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.72311173060332, 27.453459491416243]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.20796912251339, 16.910765069076696]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.02923748665658, 17.06286092924691]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.67236850288222, 19.00571371998642]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.43657840692077, 17.42104681957319]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.48932636312891, 18.050155326157473]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.76206658518934, 23.71467590682046]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.46253580071742, 22.833272724615775]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.09703651590019, 17.421833037838393]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.61013158110691, 23.65729956086801]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.66397149031135, 25.831969038126523]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.1727623444978, 24.152605040309613]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.2741188221817, 18.639289071153634]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.90735829536999, 18.190052908059194]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.32489553257798, 19.57470756961103]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.01326798044877, 24.122014119489563]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.52731994000185, 26.95480013106508]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.3558896446572, 17.44256116852827]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.02534851234576, 16.756254338847338]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.47025910061983, 24.118620545794855]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.308362589921, 20.54596248507216]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.34538728645822, 24.41450380344747]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.33122422882889, 23.37013167679639]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.27561331569953, 16.994251063813262]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.86851913822156, 25.81027224474102]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.24173363419717, 24.34323106176321]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.84877351272029, 26.92445686110058]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.71160840330522, 21.77620359204627]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.20296576353552, 21.709322849932395]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.04325753495058, 24.349990861490674]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.01507615292597, 18.68916636419406]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.98455859943033, 21.06707023138771]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.40609968225364, 21.87541299401925]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.66122425689909, 19.364456854255717]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.2600583537702, 21.659164464794838]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.73592652087561, 17.55179712679042]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.80434002543046, 18.311428726658654]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.89936609149818, 27.20566948335109]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.9153275956025, 22.728686372271056]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.22442161042382, 20.946470968784404]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.23254193941007, 26.262181726505418]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.62437731409852, 19.781049107501957]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.49173903601617, 16.92003208241821]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.25829317577141, 21.827114782054075]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.65532298324348, 17.29988957265243]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.3453947248687, 24.50576556423695]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.37506450657898, 16.711071194315227]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.42569161383636, 21.026826554775827]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.43791743989885, 24.962432920525124]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.84458598730575, 23.70594482686843]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.37848518046901, 26.34378098000883]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.13497764736996, 17.934013939878078]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.54709582459233, 16.53706271986311]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.17844562558024, 23.80702766062598]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.64984925794586, 27.17403653643745]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.89153777133139, 23.170952976617727]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.93875091618717, 25.00047089937265]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.9102252552082, 23.883340808622673]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.45068182631776, 24.018640243238202]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.56517209188608, 24.748894301890655]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.41470444523833, 26.791071724795167]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.27546806320538, 24.62810216606337]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.37798026966385, 22.800554127763526]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.67038090634749, 19.518488261229543]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.51124408675949, 18.95091920687403]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.72209650039468, 24.280447748568445]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.28434198674468, 17.20571626766068]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.15681636726895, 26.828785859624258]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.11344269598334, 17.666989151972253]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.96994176238145, 22.888540550894795]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.50079368006108, 26.634382308937134]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.54280695688689, 23.237868840297253]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.59204571681656, 24.786873137315194]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.01377215866017, 18.936419309424537]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.01405131484972, 18.581612310870824]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.6420973159142, 18.58453117274099]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.74759623801513, 26.12337676616272]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.05313261324237, 19.319796400696145]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.13970036126891, 17.506087557394512]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.75848457074353, 21.115370497855984]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.16830971446066, 24.6894321007414]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.21048541308969, 17.919231608494442]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.97637737411591, 23.150822409149665]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.98806643205722, 18.733700354050203]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.73009496457921, 23.7983464395302]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.21686530340585, 18.59063554310776]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.94846192062774, 19.236367113472895]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.97783503664645, 19.823228188109127]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.31384918144222, 22.633190689556994]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.49404471100601, 22.009751251682275]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.1270341028659, 25.781532521957693]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.51950761862354, 23.496329401717578]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.67344643947845, 20.92896756107965]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.28006204700529, 18.638001663502685]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.33788518686183, 24.089777622921456]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.03458096249997, 22.65764273416216]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.80104984355006, 26.237062559189845]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.21242542631086, 20.177739085659635]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.38674449250746, 17.652491491363605]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.93734071291428, 23.99085830463023]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.20251485577793, 26.55556740273682]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.73360568748585, 26.28033941085063]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.13262960963559, 22.34430874872904]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.54532805510269, 17.55045667323678]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.80026818559628, 18.561998669158292]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.28628835491551, 19.571063802546057]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.58131591277606, 24.21369712743759]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.88085722918547, 19.753718721210948]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.64966522234937, 20.677188588895476]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.24840889524553, 19.69712523257967]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.96400931937723, 18.174770180214516]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.70189850382681, 16.534625567595363]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.810090294371, 25.23156636266861]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.17536572906562, 19.792647657345]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.79193518864761, 24.737897659493715]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.93555696939467, 19.98152959915939]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.21354373461136, 25.88846335275895]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.32534041974515, 26.094983944812824]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.97472021053458, 26.061373986456793]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.84081911742697, 23.793624669453152]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.24844766066971, 24.484245781333726]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.90249827777127, 22.05793250583984]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.07748325170441, 27.337367361375666]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.52285998029147, 17.487274302366117]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.81251634431071, 20.933095236667395]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.58692805675213, 24.80146814851551]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.47378831903654, 21.652685460023044]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.70162022475394, 19.229694616459863]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.78777310048918, 23.92218146021364]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.80552346807535, 22.161467782172014]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.55667427680913, 22.171811135508918]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.49928602385201, 27.41608769703238]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.34842284656386, 17.435895054282373]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.21228170738233, 22.173670632023597]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.90881672418563, 21.468642424655155]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.56477901274141, 23.02518524523849]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.43974652662247, 22.60413987147912]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.5883411017305, 19.917932537792794]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.35881511009039, 19.09687830115208]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.72145863838075, 25.18049472134159]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.95694749118951, 27.39255408553263]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.44936060272309, 27.49130192814892]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.61820042082097, 23.049137776556364]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.10989174097693, 18.469712160553517]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.379040540202, 20.37524788330293]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.51495780456581, 16.669087042407536]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.10886304098058, 16.8269149948045]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.72560883757795, 16.962762773864505]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.89333076284501, 24.384990740752006]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.59332944904146, 24.120911542546878]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.42817901090537, 17.74846475203746]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.89833899459296, 19.72230811960007]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.98171564844314, 21.140743955694063]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.99706809934376, 18.63550290606603]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.13208804398411, 19.266357159361213]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.44208974284808, 18.89754661420165]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.67095396405709, 17.953443362949123]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.61949782551551, 25.38069882274378]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.82927583009545, 18.920544836399152]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.71898403700982, 22.858679743400074]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.05832892131573, 25.244587077548168]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.53486708882008, 18.05579400531109]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.3189432679756, 20.059875630170964]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.96213190737039, 26.279325304846623]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.44927404052561, 17.791447001826654]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.39338327111777, 24.626502743687922]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.58570795493182, 25.546633692923525]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.83961825329554, 25.484747617185402]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.87200031832714, 23.66114743521159]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.83487262625073, 20.095259588587723]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.91640675333899, 16.590848739189624]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.30245460933854, 19.23352889608482]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.14994486721066, 20.53183273996738]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.80521037357039, 21.252980629644455]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.8787989831883, 18.218515429796344]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.76978734183139, 17.7977450107505]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.80371392928168, 26.040116775073876]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.95744087420283, 25.191234441288678]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.77674346051477, 21.375540465284374]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.29292929991102, 21.98589295297564]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.66745422227388, 26.168091294302087]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.92295434812097, 23.30372425686007]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.96026394085236, 25.51392205303288]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.43164354544895, 17.413235272364112]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.28566063654243, 18.482281406816814]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.18586938186745, 27.019278441405643]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.00665657564603, 18.009509829132515]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.78174587415, 25.852826126614094]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.17395695535176, 20.322052935788367]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.75631134659818, 27.4074383447763]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.30133416063728, 22.908999108726512]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.5468209860248, 25.79011427888136]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.50335139484208, 25.338279000551893]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.85611159709538, 24.40263258506802]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.19143746995799, 22.76299900389558]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.49961985245375, 23.749896556565293]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.93434205722116, 17.8751516982336]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.47725300277814, 20.834238692742822]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.40866406564102, 24.65588369863437]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.23086732338659, 22.010870880797054]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.55598541988493, 23.62640751670331]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.067479899787, 22.44918038801505]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.5723788030903, 23.774277575000852]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.68634851848167, 23.203154689599817]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.97302399035408, 22.395504699565535]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.47937906764957, 24.839570106333433]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.63060572237521, 22.939370867570908]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.28374988273468, 16.800162341500304]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.01980255637385, 21.18954858284259]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.80981841825783, 16.752970728846513]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.0632043924848, 17.78197939775129]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.31937806169958, 16.63036465541673]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.51362280935948, 19.07306061464646]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.6462554841785, 18.765258635070385]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.90737511126233, 25.663681166863604]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.3184598837461, 20.339708336838683]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.25614050898571, 20.47865304539995]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.05273739031475, 27.278196207610172]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.57090751033381, 25.058967866824403]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.72044789264216, 17.86742294760512]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.45286775268717, 27.264956115483226]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.46924741699405, 22.27588495796526]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.2743504888918, 26.691822644671085]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.18119091611597, 24.755151867045228]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.9753411638257, 22.736683695999382]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.17815192274419, 17.766464076510605]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.79951671731996, 16.979753651505465]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.81530228240368, 21.899431865794316]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.15292492090326, 18.519443297834165]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.11308732341453, 22.73505946813462]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.00830955618024, 21.885311144830727]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.54728340532579, 17.713742740545893]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.53755328892348, 25.323104677883705]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.68105867358958, 27.21289905396955]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.96411774831036, 22.888644254222072]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.98170526139158, 20.98332034823357]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.56755786305595, 19.40265705295205]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.9097441614737, 25.69899354986159]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.8522033753837, 16.57371866969067]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.59048812893998, 22.36793387394907]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.69797232502891, 17.49676706923224]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.4273474590883, 20.29560385897871]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.75702086888295, 18.06842605714349]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.93509999305662, 24.197922897145702]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.59056449409796, 17.249155158477635]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.04442014558218, 20.180967527569678]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.37084983049334, 18.874173436903888]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.56890381178304, 24.88700194600341]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.06300053256552, 25.068476848998436]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.07431215190033, 23.634255220677876]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.97261043138833, 20.783569456567577]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.69220087076908, 23.99722100792555]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.28624765409677, 19.684275914963393]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.26371632117386, 23.468899954784128]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.64211828010676, 22.535063069435896]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.76720344494535, 17.95425416674962]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.84949687526881, 23.882703836621122]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.51599855499506, 22.18056139559293]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.0586637697147, 22.618118595420675]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.82988603140993, 22.75446266986306]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.10048201961024, 21.361849810266136]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.04153303125153, 20.350657127526738]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.59504589774306, 27.064096554971023]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.07548891214728, 17.301084891511273]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.33158765668573, 19.452979509754268]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.81854336800883, 24.131395375394586]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.684418563593, 21.47654476359144]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.00730697784353, 25.897847636990367]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.40829350874473, 27.268125557919248]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.2707934048482, 20.982305048038683]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.38809337052642, 26.427105032557755]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.0134734724832, 25.13419607033201]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.17642686622017, 25.221069930712087]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.71994017762563, 20.189025977120103]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.29187361259146, 27.392240106344147]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.79976558388476, 20.035863120368496]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.3275873181896, 23.43075879262019]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.30217792473226, 22.66331518976522]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.02504204870841, 18.793197099411397]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.96796993174219, 24.703657172369798]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.41505346819054, 25.017559911985607]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.287484618002, 19.75003759357949]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.25519670513809, 19.980973614544432]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.3831207434748, 20.990164116130572]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.30367109087219, 25.1900948213395]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.33929483454432, 17.79933711363019]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.3072622609112, 19.064713633397105]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.09464045072042, 16.867824298530778]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.01339730011378, 25.682665424232965]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.74959288173342, 17.47999904710256]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.95625724719481, 26.53239538653403]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.95900351362758, 26.964513550251407]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.22624323598141, 17.943008474474265]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.14342020536195, 18.867794740406104]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.61849018164143, 22.47855670455455]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.7861071942679, 18.669738072373164]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.00369227814197, 24.612757650509216]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.77138891405684, 20.81044983619232]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.89623600838752, 19.396975077838288]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.40595166597085, 26.80155978434455]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.80825302190365, 23.35316310450464]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.96259557904392, 24.196187792487656]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.08863800575135, 25.15698262014013]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.75695759804495, 20.08490410319372]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.42234796309599, 26.22301149374214]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.26218882048389, 26.41236152098589]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.87135659444625, 17.56355668256735]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.49722908932829, 21.926256397875694]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.7096594822639, 24.460836562368442]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.09304190552334, 27.42090911618883]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.0243253011326, 17.45098074087971]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.25880876997459, 18.567348945414572]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.15374231895991, 19.572527461376602]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.90718745331596, 18.01378466658022]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.3932989046418, 19.030002383084067]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.56289580127358, 23.7331334661265]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.32615130900722, 23.22949976202878]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.32932140159735, 21.369086228743924]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.40761927871347, 22.617986414434352]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.6909951062254, 17.986704731304503]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.38990946382116, 17.402709176906622]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.59495181641225, 22.81831350748234]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.38487102139864, 26.08247375588085]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.86031632408672, 24.23389023003475]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.76905431857912, 27.471768557404076]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.43945965828523, 18.638609876647752]\n      },\n      \"properties\": {}\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/test/in/noise.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"distance\": 50,\n    \"minPoints\": 3,\n    \"units\": \"miles\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.46337890625, 23.059516273509303]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.353515625, 23.120153621695614]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.36450195312499, 23.074678175027337]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.19970703125, 23.221154981846556]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.19970703125, 23.089838367476705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.28759765625, 22.99379497224218]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.8551025390625, 20.035289711352377]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6683349609375, 20.128155311797183]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.73974609375, 20.122997556207757]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6683349609375, 20.030128899024707]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80017089843749, 20.040450354169483]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.9375, 20.195190636474504]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.00341796875, 19.947532877989353]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.7562255859375, 20.014645445341365]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.46936035156249, 22.070368801349257]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.34027099609375, 22.2026634080092]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.35675048828125, 22.12126604542578]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.43914794921875, 22.271305748177635]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.38970947265625, 22.021999432851782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.55999755859375, 22.118721619281263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.54351806640625, 22.0525504317147]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.94024658203124, 20.360077646657153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.71728515624999, 21.596150576461426]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.046875, 18.218916080017465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.46337890625, 21.718679805703154]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/test/in/points-with-properties.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [68.477783203125, -48.84302835299516]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 2\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [68.873291015625, -48.821332549646634]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [68.69750976562499, -48.958580664409766]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [70.87280273437499, -49.418120700666414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [71.949462890625, -49.36091154712616]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 6\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [71.4111328125, -49.102645497788814]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/test/in/points1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.46337890625, 23.059516273509303]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.353515625, 23.120153621695614]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.36450195312499, 23.074678175027337]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.19970703125, 23.221154981846556]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.19970703125, 23.089838367476705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.28759765625, 22.99379497224218]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.8551025390625, 20.035289711352377]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6683349609375, 20.128155311797183]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.73974609375, 20.122997556207757]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6683349609375, 20.030128899024707]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80017089843749, 20.040450354169483]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.9375, 20.195190636474504]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.00341796875, 19.947532877989353]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.7562255859375, 20.014645445341365]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.46936035156249, 22.070368801349257]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.34027099609375, 22.2026634080092]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.35675048828125, 22.12126604542578]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.43914794921875, 22.271305748177635]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.38970947265625, 22.021999432851782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.55999755859375, 22.118721619281263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.54351806640625, 22.0525504317147]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.94024658203124, 20.360077646657153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.71728515624999, 21.596150576461426]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/test/in/points2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"distance\": 500\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-118.30078125, 60.457217797743944]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-115.04882812499999, 58.401711667608]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-112.5, 60.84491057364912]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-110.478515625, 59.265880628258095]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-103.71093749999999, 60.673178565817715]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-102.3046875, 55.52863052257191]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.935546875, 60.930432202923335]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.89257812499999, 60.23981116999893]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.79296874999999, 57.468589192089354]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.7734375, 58.63121664342478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.541015625, 55.178867663281984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.263671875, 50.17689812200107]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.990234375, 49.38237278700955]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-94.21875, 47.27922900257082]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-88.41796875, 48.28319289548349]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-92.548828125, 52.855864177853974]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-87.1875, 45.89000815866184]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-107.490234375, 57.040729838360875]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-69.78515625, 56.511017504952136]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.73828125, 62.83508901142283]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.37695312499999, 61.938950426660604]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-91.845703125, 46.07323062540835]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.640625, 58.44773280389084]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-103.0078125, 58.6769376725869]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-88.857421875, 39.774769485295465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-123.48632812499999, 57.938183012205315]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-117.158203125, 46.558860303117164]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-114.873046875, 45.767522962149876]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-112.67578124999999, 44.402391829093915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-119.53125, 44.33956524809713]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-115.927734375, 43.389081939117496]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-120.58593749999999, 38.685509760012]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-113.90625, 40.3130432088809]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/test/out/fiji.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [179.439697265625, -16.55196172197251]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [179.01123046874997, -16.97274101999901]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [179.505615234375, -17.035777250427184]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [180.75805664062497, -16.41500926733237]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [181.1865234375, -16.615137799987075]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [181.03271484375, -16.277960306212513]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0000ff\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [179.31884765625, -16.85349333079957]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#000080\",\n        \"stroke\": \"#000080\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [179.505615234375, -17.035777250427184],\n            [179.01123046874997, -16.97274101999901],\n            [179.439697265625, -16.55196172197251],\n            [179.505615234375, -17.035777250427184]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#ffff00\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [180.992431640625, -16.43603579117732]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#808000\",\n        \"stroke\": \"#808000\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [181.1865234375, -16.615137799987075],\n            [180.75805664062497, -16.41500926733237],\n            [181.03271484375, -16.277960306212513],\n            [181.1865234375, -16.615137799987075]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/test/out/many-points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.36337554761008, 19.119473770547124]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#6d00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.32753919964946, 20.843505437175903]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.72930024352243, 22.95523079568951]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff00b5\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.28985709132587, 16.584015683001546]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.94492705924428, 21.0702981386651]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.05488356732162, 24.111641311913072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.55079764304975, 25.525431992772358]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0047\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.11420407247648, 26.113452348786268]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.8076846951252, 22.255910609327792]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.98702719224296, 25.275001495112985]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#6d00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.54236384636712, 20.789257545981407]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.57808400285332, 20.00051975393173]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.39655991111083, 22.12594824182586]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.42324858424885, 17.48175433130492]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.90361604004578, 26.430002559611477]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.22266857015823, 20.94137638968897]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#6d00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.48717976822758, 20.224242981590255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.06779765523183, 27.276249335066662]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.99075803676163, 17.651929487468298]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.53563340237405, 26.495418224944373]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.20462326614003, 24.00357261039075]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"dbscan\": \"edge\",\n        \"marker-color\": \"#00996e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.58330318049086, 18.09915952726896]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.50889284912286, 18.340562952508183]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.55680807421967, 21.907870183116437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff9200\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.53689212714627, 17.422501403729605]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.18027511981438, 18.875894880366534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.39732218872196, 25.629464613691137]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.66061545607911, 22.757810888614223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.65357594791968, 16.66838838845727]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.77643699392496, 27.091684659861052]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"dbscan\": \"edge\",\n        \"marker-color\": \"#00992c\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.13081869539506, 26.23449839991876]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.43824120718541, 19.103181050521584]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.43898229878118, 18.874231952472687]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.92734033427595, 20.82599847071201]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.27364128877521, 21.130861117009847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.05413199086016, 23.058073292292104]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.28388468077954, 22.883779502221373]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.77696496688779, 18.94471042190279]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.23882701110625, 20.30184311650061]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.66116457836486, 20.169682381560182]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.90248833212131, 26.884383581357255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.28525543556775, 26.722194267296018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.8977221405959, 19.412558043465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.07684618758876, 27.17395724732544]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.41316964578398, 23.148029434777555]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.92622530551323, 25.623260952842156]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.2549851564484, 22.35997051326973]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.7199945397987, 25.802953128684692]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.96348979974654, 27.35814140608639]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.04921623428444, 20.61204095701038]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.54213379075634, 25.505384186492893]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.61403051800008, 17.263716566767037]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.25360192470616, 18.686705558388965]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.42930471321405, 20.022748677821312]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.44899512481147, 21.52626642668551]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.38761515683782, 18.77265726075554]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.12756391373203, 25.531641282912506]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.65487739464005, 20.270385418656613]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.44983759982364, 18.547000172845294]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.53680657077764, 25.303329199906706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.01712484014583, 24.449642983600107]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.86222771555597, 22.720569651349564]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.2520931858629, 25.53784765691357]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.60441825132624, 23.93129090727725]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0047\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.2164652385625, 25.79578750021983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.63151040609172, 24.490225688795583]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.51548817891319, 17.202270132332913]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.3121102967554, 25.956525827964448]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.27005222591032, 17.528372337434828]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.0823710181298, 25.482920857480014]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.75288708284614, 18.922685406247748]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.52847693811808, 24.220685835886385]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.42010129302429, 25.72860309981145]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.03682779147974, 27.053835982653894]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0047\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.67472974247343, 24.956264380693316]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.95315877653405, 18.41169388608788]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.57393282654176, 26.261024024692077]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.92845035818462, 17.837520858411256]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.5179339115434, 23.450627516507094]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.71943800617547, 19.616649637864654]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.93211879732236, 26.33170236314861]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.10661507770358, 25.13063963201959]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.24887371103026, 21.739851639014628]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#6d00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.26129906562491, 21.294934204528648]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.2729878125471, 23.65784314034355]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.3562097070285, 24.24226765651852]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.99265814798184, 27.483971653923085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.63635988061537, 18.75973134353604]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.76340181762502, 26.57219504751686]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"dbscan\": \"edge\",\n        \"marker-color\": \"#008299\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.45164209210782, 23.76673190659356]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.65455892791887, 27.186142540274957]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.03313564896565, 24.333750064476934]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.87222884039794, 19.159104199268683]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.54286133638129, 24.13575708893132]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.26242751330523, 20.472647289870025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.80042213720098, 20.990256802329768]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.5874725368364, 25.039930971231904]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.85825660840021, 25.43539990016023]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.17454776573982, 23.461743771248557]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.40002194939215, 20.67151202116478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.23963323045145, 23.244627904260923]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.81552101630216, 26.53756981389545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.9283270010284, 24.674017344728615]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.70000865367116, 21.542018533522416]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.48978633680683, 19.623096473871033]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff9200\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.67175298435387, 17.880881534565148]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.04610391202878, 26.551597087996466]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.84175265531377, 16.85074369818602]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#6d00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.95908129532202, 21.185424844181092]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.88684525321649, 18.726646021819167]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.15582212817301, 18.696902173553443]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.5644212682104, 20.850894115743387]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.37878622301193, 16.91615114076283]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff00b5\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.81019601780373, 17.165972386566605]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.4614226211491, 23.444082141644998]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.18265845716839, 25.295833894402776]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.09803657824347, 23.3454534216312]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff9200\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.34448173717335, 17.84048983960788]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.18827115285569, 20.273168111170328]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.26216347689832, 23.673136982276464]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.21575485381635, 23.096925087889748]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.01908584146595, 21.557475862048076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.92274968888073, 26.019876080997598]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#6d00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.55727606952377, 22.36430316761306]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.25891612041117, 19.525184281200534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.64279747070925, 25.651725881829897]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.40499501048518, 16.63021658406485]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.64998704253041, 24.234779530366744]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.30467012694315, 17.92521920364085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.76550387867614, 21.84873202139447]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.2770011073176, 26.540918581152965]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.20171143790367, 24.334344930797855]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.51391779937516, 18.211967578932978]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.81858154084357, 19.071318793255987]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.87897523658762, 22.009563011217917]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.17146072076018, 22.71145107992815]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.14138268439117, 27.295964747431004]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.01085563325441, 23.60461239295877]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#91ff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.61068998466835, 21.311283807756645]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.76701891828932, 27.195861233372437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.55059712821668, 25.49682672225246]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#6d00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.42534293525704, 20.342801196105015]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.85957138950651, 25.651916540759668]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.67260570784427, 20.45532583962798]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.81872422593077, 21.669857512462364]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.38646877459935, 19.37340763751337]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.50710379745864, 18.424063455433217]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.632893967135, 23.107454998460437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.36852553393699, 24.295072371424403]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.86140755178053, 17.50071319492512]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.56458486764306, 23.27787869671228]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.25719355261317, 18.841254641177088]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.79365159485565, 24.73837411446049]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.77110623794552, 22.880747711470292]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.17830942471453, 27.459109723499697]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff9200\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.5062774214051, 17.326690422594897]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.19600112265177, 22.73914989583398]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.58173201222138, 23.850997885697698]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff00b5\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.71045285694422, 17.079742569860166]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.34171838085163, 22.153445077419946]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.55081810986574, 24.915158163291853]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.59793295622734, 18.75099342612817]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.14433438213305, 27.036543336370556]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#24ff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.4434583942987, 19.619680064723546]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.51440928893466, 19.680938852916263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.95150377384275, 26.91911731157561]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.4550593256632, 24.03016205722427]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0047\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.8228436577642, 25.845318184468677]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff00b5\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.16769788043096, 16.98191521287846]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.51634149582756, 19.10937565092933]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.72446682780881, 22.25313981239625]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.95113454727932, 26.357292830184782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.89319872559254, 21.773847762169503]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff49\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.50995550468448, 26.805856081166645]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.72311173060332, 27.453459491416243]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff9200\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.20796912251339, 16.910765069076696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.02923748665658, 17.06286092924691]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.67236850288222, 19.00571371998642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff9200\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.43657840692077, 17.42104681957319]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.48932636312891, 18.050155326157473]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.76206658518934, 23.71467590682046]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.46253580071742, 22.833272724615775]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff9200\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.09703651590019, 17.421833037838393]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.61013158110691, 23.65729956086801]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.66397149031135, 25.831969038126523]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.1727623444978, 24.152605040309613]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.2741188221817, 18.639289071153634]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.90735829536999, 18.190052908059194]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.32489553257798, 19.57470756961103]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.01326798044877, 24.122014119489563]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.52731994000185, 26.95480013106508]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.3558896446572, 17.44256116852827]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff9200\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.02534851234576, 16.756254338847338]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.47025910061983, 24.118620545794855]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.308362589921, 20.54596248507216]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.34538728645822, 24.41450380344747]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.33122422882889, 23.37013167679639]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.27561331569953, 16.994251063813262]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0047\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.86851913822156, 25.81027224474102]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.24173363419717, 24.34323106176321]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.84877351272029, 26.92445686110058]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.71160840330522, 21.77620359204627]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.20296576353552, 21.709322849932395]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.04325753495058, 24.349990861490674]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ffb7\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.01507615292597, 18.68916636419406]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#6d00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.98455859943033, 21.06707023138771]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#6d00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.40609968225364, 21.87541299401925]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.66122425689909, 19.364456854255717]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.2600583537702, 21.659164464794838]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.73592652087561, 17.55179712679042]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.80434002543046, 18.311428726658654]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.89936609149818, 27.20566948335109]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.9153275956025, 22.728686372271056]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.22442161042382, 20.946470968784404]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.23254193941007, 26.262181726505418]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.62437731409852, 19.781049107501957]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff00b5\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.49173903601617, 16.92003208241821]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.25829317577141, 21.827114782054075]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.65532298324348, 17.29988957265243]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.3453947248687, 24.50576556423695]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"dbscan\": \"edge\",\n        \"marker-color\": \"#004099\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.37506450657898, 16.711071194315227]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#6d00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.42569161383636, 21.026826554775827]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.43791743989885, 24.962432920525124]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.84458598730575, 23.70594482686843]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.37848518046901, 26.34378098000883]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.13497764736996, 17.934013939878078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff00b5\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.54709582459233, 16.53706271986311]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.17844562558024, 23.80702766062598]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.64984925794586, 27.17403653643745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.89153777133139, 23.170952976617727]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.93875091618717, 25.00047089937265]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.9102252552082, 23.883340808622673]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.45068182631776, 24.018640243238202]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.56517209188608, 24.748894301890655]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.41470444523833, 26.791071724795167]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.27546806320538, 24.62810216606337]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.37798026966385, 22.800554127763526]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ffb7\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.67038090634749, 19.518488261229543]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.51124408675949, 18.95091920687403]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.72209650039468, 24.280447748568445]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.28434198674468, 17.20571626766068]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.15681636726895, 26.828785859624258]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.11344269598334, 17.666989151972253]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.96994176238145, 22.888540550894795]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.50079368006108, 26.634382308937134]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.54280695688689, 23.237868840297253]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.59204571681656, 24.786873137315194]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.01377215866017, 18.936419309424537]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.01405131484972, 18.581612310870824]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.6420973159142, 18.58453117274099]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.74759623801513, 26.12337676616272]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ffb7\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.05313261324237, 19.319796400696145]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.13970036126891, 17.506087557394512]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#6d00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.75848457074353, 21.115370497855984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.16830971446066, 24.6894321007414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.21048541308969, 17.919231608494442]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.97637737411591, 23.150822409149665]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.98806643205722, 18.733700354050203]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.73009496457921, 23.7983464395302]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ffb7\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.21686530340585, 18.59063554310776]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.94846192062774, 19.236367113472895]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.97783503664645, 19.823228188109127]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.31384918144222, 22.633190689556994]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.49404471100601, 22.009751251682275]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.1270341028659, 25.781532521957693]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.51950761862354, 23.496329401717578]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#6d00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.67344643947845, 20.92896756107965]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.28006204700529, 18.638001663502685]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.33788518686183, 24.089777622921456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.03458096249997, 22.65764273416216]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.80104984355006, 26.237062559189845]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.21242542631086, 20.177739085659635]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.38674449250746, 17.652491491363605]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.93734071291428, 23.99085830463023]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.20251485577793, 26.55556740273682]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.73360568748585, 26.28033941085063]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.13262960963559, 22.34430874872904]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.54532805510269, 17.55045667323678]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.80026818559628, 18.561998669158292]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.28628835491551, 19.571063802546057]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.58131591277606, 24.21369712743759]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.88085722918547, 19.753718721210948]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.64966522234937, 20.677188588895476]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.24840889524553, 19.69712523257967]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.96400931937723, 18.174770180214516]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.70189850382681, 16.534625567595363]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0047\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.810090294371, 25.23156636266861]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.17536572906562, 19.792647657345]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.79193518864761, 24.737897659493715]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ffb7\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.93555696939467, 19.98152959915939]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.21354373461136, 25.88846335275895]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.32534041974515, 26.094983944812824]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.97472021053458, 26.061373986456793]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.84081911742697, 23.793624669453152]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.24844766066971, 24.484245781333726]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.90249827777127, 22.05793250583984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff49\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.07748325170441, 27.337367361375666]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.52285998029147, 17.487274302366117]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.81251634431071, 20.933095236667395]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.58692805675213, 24.80146814851551]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.47378831903654, 21.652685460023044]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.70162022475394, 19.229694616459863]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.78777310048918, 23.92218146021364]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.80552346807535, 22.161467782172014]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.55667427680913, 22.171811135508918]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.49928602385201, 27.41608769703238]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff9200\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.34842284656386, 17.435895054282373]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.21228170738233, 22.173670632023597]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#91ff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.90881672418563, 21.468642424655155]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.56477901274141, 23.02518524523849]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.43974652662247, 22.60413987147912]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#24ff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.5883411017305, 19.917932537792794]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.35881511009039, 19.09687830115208]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.72145863838075, 25.18049472134159]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.95694749118951, 27.39255408553263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.44936060272309, 27.49130192814892]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.61820042082097, 23.049137776556364]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.10989174097693, 18.469712160553517]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.379040540202, 20.37524788330293]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff9200\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.51495780456581, 16.669087042407536]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"dbscan\": \"edge\",\n        \"marker-color\": \"#004099\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.10886304098058, 16.8269149948045]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff9200\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.72560883757795, 16.962762773864505]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.89333076284501, 24.384990740752006]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.59332944904146, 24.120911542546878]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.42817901090537, 17.74846475203746]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.89833899459296, 19.72230811960007]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.98171564844314, 21.140743955694063]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.99706809934376, 18.63550290606603]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.13208804398411, 19.266357159361213]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.44208974284808, 18.89754661420165]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.67095396405709, 17.953443362949123]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.61949782551551, 25.38069882274378]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.82927583009545, 18.920544836399152]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.71898403700982, 22.858679743400074]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.05832892131573, 25.244587077548168]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff9200\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.53486708882008, 18.05579400531109]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.3189432679756, 20.059875630170964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.96213190737039, 26.279325304846623]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.44927404052561, 17.791447001826654]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.39338327111777, 24.626502743687922]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0047\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.58570795493182, 25.546633692923525]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.83961825329554, 25.484747617185402]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.87200031832714, 23.66114743521159]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#24ff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.83487262625073, 20.095259588587723]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff00b5\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.91640675333899, 16.590848739189624]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.30245460933854, 19.23352889608482]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.14994486721066, 20.53183273996738]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.80521037357039, 21.252980629644455]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.8787989831883, 18.218515429796344]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.76978734183139, 17.7977450107505]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0047\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.80371392928168, 26.040116775073876]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.95744087420283, 25.191234441288678]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.77674346051477, 21.375540465284374]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.29292929991102, 21.98589295297564]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0047\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.66745422227388, 26.168091294302087]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.92295434812097, 23.30372425686007]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0047\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.96026394085236, 25.51392205303288]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.43164354544895, 17.413235272364112]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.28566063654243, 18.482281406816814]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.18586938186745, 27.019278441405643]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.00665657564603, 18.009509829132515]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0047\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.78174587415, 25.852826126614094]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.17395695535176, 20.322052935788367]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.75631134659818, 27.4074383447763]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.30133416063728, 22.908999108726512]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.5468209860248, 25.79011427888136]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.50335139484208, 25.338279000551893]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.85611159709538, 24.40263258506802]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.19143746995799, 22.76299900389558]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.49961985245375, 23.749896556565293]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.93434205722116, 17.8751516982336]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.47725300277814, 20.834238692742822]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00daff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.40866406564102, 24.65588369863437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.23086732338659, 22.010870880797054]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.55598541988493, 23.62640751670331]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.067479899787, 22.44918038801505]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.5723788030903, 23.774277575000852]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.68634851848167, 23.203154689599817]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.97302399035408, 22.395504699565535]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.47937906764957, 24.839570106333433]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.63060572237521, 22.939370867570908]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.28374988273468, 16.800162341500304]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#6d00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.01980255637385, 21.18954858284259]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.80981841825783, 16.752970728846513]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.0632043924848, 17.78197939775129]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.31937806169958, 16.63036465541673]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.51362280935948, 19.07306061464646]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.6462554841785, 18.765258635070385]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.90737511126233, 25.663681166863604]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.3184598837461, 20.339708336838683]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#24ff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.25614050898571, 20.47865304539995]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.05273739031475, 27.278196207610172]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.57090751033381, 25.058967866824403]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.72044789264216, 17.86742294760512]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff49\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.45286775268717, 27.264956115483226]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.46924741699405, 22.27588495796526]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.2743504888918, 26.691822644671085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.18119091611597, 24.755151867045228]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.9753411638257, 22.736683695999382]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff9200\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.17815192274419, 17.766464076510605]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.79951671731996, 16.979753651505465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.81530228240368, 21.899431865794316]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.15292492090326, 18.519443297834165]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.11308732341453, 22.73505946813462]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.00830955618024, 21.885311144830727]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.54728340532579, 17.713742740545893]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0047\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.53755328892348, 25.323104677883705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.68105867358958, 27.21289905396955]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.96411774831036, 22.888644254222072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#91ff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.98170526139158, 20.98332034823357]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ffb7\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.56755786305595, 19.40265705295205]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.9097441614737, 25.69899354986159]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#006cff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.8522033753837, 16.57371866969067]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.59048812893998, 22.36793387394907]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff9200\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.69797232502891, 17.49676706923224]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.4273474590883, 20.29560385897871]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.75702086888295, 18.06842605714349]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00daff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.93509999305662, 24.197922897145702]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.59056449409796, 17.249155158477635]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.04442014558218, 20.180967527569678]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.37084983049334, 18.874173436903888]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00daff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.56890381178304, 24.88700194600341]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.06300053256552, 25.068476848998436]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.07431215190033, 23.634255220677876]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.97261043138833, 20.783569456567577]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.69220087076908, 23.99722100792555]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.28624765409677, 19.684275914963393]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.26371632117386, 23.468899954784128]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.64211828010676, 22.535063069435896]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.76720344494535, 17.95425416674962]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.84949687526881, 23.882703836621122]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.51599855499506, 22.18056139559293]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.0586637697147, 22.618118595420675]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.82988603140993, 22.75446266986306]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#6d00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.10048201961024, 21.361849810266136]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.04153303125153, 20.350657127526738]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.59504589774306, 27.064096554971023]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff00b5\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.07548891214728, 17.301084891511273]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.33158765668573, 19.452979509754268]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.81854336800883, 24.131395375394586]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.684418563593, 21.47654476359144]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.00730697784353, 25.897847636990367]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.40829350874473, 27.268125557919248]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.2707934048482, 20.982305048038683]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.38809337052642, 26.427105032557755]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.0134734724832, 25.13419607033201]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.17642686622017, 25.221069930712087]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ffb7\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.71994017762563, 20.189025977120103]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.29187361259146, 27.392240106344147]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.79976558388476, 20.035863120368496]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.3275873181896, 23.43075879262019]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.30217792473226, 22.66331518976522]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ffb7\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.02504204870841, 18.793197099411397]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.96796993174219, 24.703657172369798]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.41505346819054, 25.017559911985607]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ffb7\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.287484618002, 19.75003759357949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.25519670513809, 19.980973614544432]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.3831207434748, 20.990164116130572]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.30367109087219, 25.1900948213395]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff9200\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.33929483454432, 17.79933711363019]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.3072622609112, 19.064713633397105]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff00b5\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.09464045072042, 16.867824298530778]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.01339730011378, 25.682665424232965]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.74959288173342, 17.47999904710256]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.95625724719481, 26.53239538653403]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff49\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.95900351362758, 26.964513550251407]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.22624323598141, 17.943008474474265]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.14342020536195, 18.867794740406104]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.61849018164143, 22.47855670455455]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.7861071942679, 18.669738072373164]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.00369227814197, 24.612757650509216]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.77138891405684, 20.81044983619232]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.89623600838752, 19.396975077838288]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff49\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.40595166597085, 26.80155978434455]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.80825302190365, 23.35316310450464]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.96259557904392, 24.196187792487656]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.08863800575135, 25.15698262014013]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.75695759804495, 20.08490410319372]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.42234796309599, 26.22301149374214]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.26218882048389, 26.41236152098589]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.87135659444625, 17.56355668256735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.49722908932829, 21.926256397875694]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0047\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.7096594822639, 24.460836562368442]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.09304190552334, 27.42090911618883]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.0243253011326, 17.45098074087971]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.25880876997459, 18.567348945414572]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.15374231895991, 19.572527461376602]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.90718745331596, 18.01378466658022]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.3932989046418, 19.030002383084067]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.56289580127358, 23.7331334661265]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.32615130900722, 23.22949976202878]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.32932140159735, 21.369086228743924]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.40761927871347, 22.617986414434352]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.6909951062254, 17.986704731304503]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.38990946382116, 17.402709176906622]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.59495181641225, 22.81831350748234]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.38487102139864, 26.08247375588085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff2400\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.86031632408672, 24.23389023003475]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.76905431857912, 27.471768557404076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#da00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.43945965828523, 18.638609876647752]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0000ff\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.28408175118237, 18.83101672516768]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#000080\",\n        \"stroke\": \"#000080\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.27561331569953, 16.994251063813262],\n            [-80.52285998029147, 17.487274302366117],\n            [-80.67095396405709, 17.953443362949123],\n            [-81.15582212817301, 18.696902173553443],\n            [-81.25719355261317, 18.841254641177088],\n            [-82.77696496688779, 18.94471042190279],\n            [-83.28006204700529, 18.638001663502685],\n            [-85.13497764736996, 17.934013939878078],\n            [-85.30467012694315, 17.92521920364085],\n            [-84.51391779937516, 18.211967578932978],\n            [-84.50710379745864, 18.424063455433217],\n            [-84.67236850288222, 19.00571371998642],\n            [-84.33158765668573, 19.452979509754268],\n            [-83.71943800617547, 19.616649637864654],\n            [-82.97783503664645, 19.823228188109127],\n            [-82.51440928893466, 19.680938852916263],\n            [-81.28624765409677, 19.684275914963393],\n            [-80.66116457836486, 20.169682381560182],\n            [-80.48978633680683, 19.623096473871033],\n            [-80.35881511009039, 19.09687830115208],\n            [-80.15292492090326, 18.519443297834165],\n            [-79.96400931937723, 18.174770180214516],\n            [-80.00665657564603, 18.009509829132515],\n            [-80.27561331569953, 16.994251063813262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#6d00ff\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.49490340440704, 21.114965400671604]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#360080\",\n        \"stroke\": \"#360080\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.26129906562491, 21.294934204528648],\n            [-86.40609968225364, 21.87541299401925],\n            [-86.55727606952377, 22.36430316761306],\n            [-86.10048201961024, 21.361849810266136],\n            [-85.42569161383636, 21.026826554775827],\n            [-85.01980255637385, 21.18954858284259],\n            [-84.75848457074353, 21.115370497855984],\n            [-84.54236384636712, 20.789257545981407],\n            [-84.42534293525704, 20.342801196105015],\n            [-84.48717976822758, 20.224242981590255],\n            [-85.32753919964946, 20.843505437175903],\n            [-85.67344643947845, 20.92896756107965],\n            [-85.98455859943033, 21.06707023138771],\n            [-85.95908129532202, 21.185424844181092],\n            [-86.26129906562491, 21.294934204528648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#da00ff\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.73992434997538, 21.94985759016944]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#6d0080\",\n        \"stroke\": \"#6d0080\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.27005222591032, 17.528372337434828],\n            [-78.93434205722116, 17.8751516982336],\n            [-79.43898229878118, 18.874231952472687],\n            [-79.38646877459935, 19.37340763751337],\n            [-80.22266857015823, 20.94137638968897],\n            [-80.2707934048482, 20.982305048038683],\n            [-80.47725300277814, 20.834238692742822],\n            [-80.81251634431071, 20.933095236667395],\n            [-81.3831207434748, 20.990164116130572],\n            [-81.98171564844314, 21.140743955694063],\n            [-82.32932140159735, 21.369086228743924],\n            [-82.80521037357039, 21.252980629644455],\n            [-83.44899512481147, 21.52626642668551],\n            [-83.70000865367116, 21.542018533522416],\n            [-83.00830955618024, 21.885311144830727],\n            [-82.25829317577141, 21.827114782054075],\n            [-82.34171838085163, 22.153445077419946],\n            [-80.04325753495058, 24.349990861490674],\n            [-80.72145863838075, 25.18049472134159],\n            [-80.39732218872196, 25.629464613691137],\n            [-80.23254193941007, 26.262181726505418],\n            [-79.81552101630216, 26.53756981389545],\n            [-79.32534041974515, 26.094983944812824],\n            [-79.3121102967554, 25.956525827964448],\n            [-78.97472021053458, 26.061373986456793],\n            [-78.38487102139864, 26.08247375588085],\n            [-78.37848518046901, 26.34378098000883],\n            [-77.93211879732236, 26.33170236314861],\n            [-78.05273739031475, 27.278196207610172],\n            [-78.17830942471453, 27.459109723499697],\n            [-77.95694749118951, 27.39255408553263],\n            [-77.65455892791887, 27.186142540274957],\n            [-77.64984925794586, 27.17403653643745],\n            [-77.41470444523833, 26.791071724795167],\n            [-77.20251485577793, 26.55556740273682],\n            [-76.96213190737039, 26.279325304846623],\n            [-76.26218882048389, 26.41236152098589],\n            [-75.40829350874473, 27.268125557919248],\n            [-75.06779765523183, 27.276249335066662],\n            [-74.75631134659818, 27.4074383447763],\n            [-74.14433438213305, 27.036543336370556],\n            [-74.07684618758876, 27.17395724732544],\n            [-73.77643699392496, 27.091684659861052],\n            [-73.76701891828932, 27.195861233372437],\n            [-73.14138268439117, 27.295964747431004],\n            [-72.72311173060332, 27.453459491416243],\n            [-72.76340181762502, 26.57219504751686],\n            [-72.95113454727932, 26.357292830184782],\n            [-72.92622530551323, 25.623260952842156],\n            [-72.9283270010284, 24.674017344728615],\n            [-72.59204571681656, 24.786873137315194],\n            [-72.3275873181896, 23.43075879262019],\n            [-71.89153777133139, 23.170952976617727],\n            [-71.56458486764306, 23.27787869671228],\n            [-71.30133416063728, 22.908999108726512],\n            [-71.17146072076018, 22.71145107992815],\n            [-70.8076846951252, 22.255910609327792],\n            [-70.81872422593077, 21.669857512462364],\n            [-70.94492705924428, 21.0702981386651],\n            [-71.22442161042382, 20.946470968784404],\n            [-71.23882701110625, 20.30184311650061],\n            [-71.37084983049334, 18.874173436903888],\n            [-70.63635988061537, 18.75973134353604],\n            [-70.80026818559628, 18.561998669158292],\n            [-70.76720344494535, 17.95425416674962],\n            [-71.42817901090537, 17.74846475203746],\n            [-71.42324858424885, 17.48175433130492],\n            [-71.3558896446572, 17.44256116852827],\n            [-71.43164354544895, 17.413235272364112],\n            [-71.65532298324348, 17.29988957265243],\n            [-72.02923748665658, 17.06286092924691],\n            [-72.72044789264216, 17.86742294760512],\n            [-72.99075803676163, 17.651929487468298],\n            [-73.21048541308969, 17.919231608494442],\n            [-73.73592652087561, 17.55179712679042],\n            [-74.38674449250746, 17.652491491363605],\n            [-75.0632043924848, 17.78197939775129],\n            [-75.86140755178053, 17.50071319492512],\n            [-76.0243253011326, 17.45098074087971],\n            [-76.38990946382116, 17.402709176906622],\n            [-76.70189850382681, 16.534625567595363],\n            [-76.80981841825783, 16.752970728846513],\n            [-77.28374988273468, 16.800162341500304],\n            [-77.40499501048518, 16.63021658406485],\n            [-77.65357594791968, 16.66838838845727],\n            [-77.84175265531377, 16.85074369818602],\n            [-77.79951671731996, 16.979753651505465],\n            [-78.28434198674468, 17.20571626766068],\n            [-78.51548817891319, 17.202270132332913],\n            [-79.13970036126891, 17.506087557394512],\n            [-79.27005222591032, 17.528372337434828]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#ff00b5\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.23373053592442, 16.8920553982022]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#80005a\",\n        \"stroke\": \"#80005a\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.54709582459233, 16.53706271986311],\n            [-86.16769788043096, 16.98191521287846],\n            [-86.07548891214728, 17.301084891511273],\n            [-84.81019601780373, 17.165972386566605],\n            [-84.71045285694422, 17.079742569860166],\n            [-84.28985709132587, 16.584015683001546],\n            [-84.91640675333899, 16.590848739189624],\n            [-85.54709582459233, 16.53706271986311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#ff0047\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.1194577566574, 25.589091707982796]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#800023\",\n        \"stroke\": \"#800023\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-71.810090294371, 25.23156636266861],\n            [-71.96026394085236, 25.51392205303288],\n            [-71.66745422227388, 26.168091294302087],\n            [-71.11420407247648, 26.113452348786268],\n            [-70.80371392928168, 26.040116775073876],\n            [-70.78174587415, 25.852826126614094],\n            [-70.58570795493182, 25.546633692923525],\n            [-70.67472974247343, 24.956264380693316],\n            [-70.7096594822639, 24.460836562368442],\n            [-71.53755328892348, 25.323104677883705],\n            [-71.810090294371, 25.23156636266861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#ff2400\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.26550046355221, 24.44198758419083]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#801200\",\n        \"stroke\": \"#801200\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.84081911742697, 23.793624669453152],\n            [-86.84949687526881, 23.882703836621122],\n            [-86.96796993174219, 24.703657172369798],\n            [-86.55081810986574, 24.915158163291853],\n            [-86.57393282654176, 26.261024024692077],\n            [-86.95625724719481, 26.53239538653403],\n            [-86.59504589774306, 27.064096554971023],\n            [-85.49928602385201, 27.41608769703238],\n            [-85.29187361259146, 27.392240106344147],\n            [-85.28525543556775, 26.722194267296018],\n            [-85.2743504888918, 26.691822644671085],\n            [-85.7199945397987, 25.802953128684692],\n            [-85.42010129302429, 25.72860309981145],\n            [-85.0823710181298, 25.482920857480014],\n            [-84.90737511126233, 25.663681166863604],\n            [-84.85957138950651, 25.651916540759668],\n            [-84.66397149031135, 25.831969038126523],\n            [-84.21354373461136, 25.88846335275895],\n            [-83.74759623801513, 26.12337676616272],\n            [-83.83961825329554, 25.484747617185402],\n            [-83.53680657077764, 25.303329199906706],\n            [-83.10661507770358, 25.13063963201959],\n            [-82.56517209188608, 24.748894301890655],\n            [-82.27546806320538, 24.62810216606337],\n            [-82.3562097070285, 24.24226765651852],\n            [-82.17844562558024, 23.80702766062598],\n            [-81.49961985245375, 23.749896556565293],\n            [-81.26371632117386, 23.468899954784128],\n            [-81.21575485381635, 23.096925087889748],\n            [-80.19600112265177, 22.73914989583398],\n            [-80.37798026966385, 22.800554127763526],\n            [-80.82988603140993, 22.75446266986306],\n            [-81.0586637697147, 22.618118595420675],\n            [-81.61820042082097, 23.049137776556364],\n            [-81.77110623794552, 22.880747711470292],\n            [-81.96411774831036, 22.888644254222072],\n            [-82.28388468077954, 22.883779502221373],\n            [-82.86222771555597, 22.720569651349564],\n            [-83.2729878125471, 23.65784314034355],\n            [-83.55598541988493, 23.62640751670331],\n            [-83.87200031832714, 23.66114743521159],\n            [-84.09803657824347, 23.3454534216312],\n            [-84.19143746995799, 22.76299900389558],\n            [-84.31384918144222, 22.633190689556994],\n            [-84.59495181641225, 22.81831350748234],\n            [-84.96994176238145, 22.888540550894795],\n            [-85.2549851564484, 22.35997051326973],\n            [-85.61849018164143, 22.47855670455455],\n            [-86.17454776573982, 23.461743771248557],\n            [-86.84081911742697, 23.793624669453152]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#ff9200\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.14437416584026, 17.41110464007145]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#804900\",\n        \"stroke\": \"#804900\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.33929483454432, 17.79933711363019],\n            [-83.34448173717335, 17.84048983960788],\n            [-82.67175298435387, 17.880881534565148],\n            [-81.53486708882008, 18.05579400531109],\n            [-81.69797232502891, 17.49676706923224],\n            [-81.53689212714627, 17.422501403729605],\n            [-81.43657840692077, 17.42104681957319],\n            [-81.34842284656386, 17.435895054282373],\n            [-81.02534851234576, 16.756254338847338],\n            [-81.51495780456581, 16.669087042407536],\n            [-81.72560883757795, 16.962762773864505],\n            [-82.20796912251339, 16.910765069076696],\n            [-82.5062774214051, 17.326690422594897],\n            [-83.09703651590019, 17.421833037838393],\n            [-83.17815192274419, 17.766464076510605],\n            [-83.33929483454432, 17.79933711363019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#ffff00\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.96312016186486, 27.219565274371575]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#808000\",\n        \"stroke\": \"#808000\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.76905431857912, 27.471768557404076],\n            [-81.15681636726895, 26.828785859624258],\n            [-80.96348979974654, 27.35814140608639],\n            [-80.76905431857912, 27.471768557404076]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#91ff00\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.16707065674852, 21.25441552688179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#488000\",\n        \"stroke\": \"#488000\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.98170526139158, 20.98332034823357],\n            [-76.61068998466835, 21.311283807756645],\n            [-75.90881672418563, 21.468642424655155],\n            [-75.98170526139158, 20.98332034823357]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#24ff00\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.78070315781642, 20.027881309126002]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#128000\",\n        \"stroke\": \"#128000\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78.4434583942987, 19.619680064723546],\n            [-79.25614050898571, 20.47865304539995],\n            [-78.83487262625073, 20.095259588587723],\n            [-78.5883411017305, 19.917932537792794],\n            [-78.4434583942987, 19.619680064723546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00ff49\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.75601339734492, 26.90145854875671]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#008025\",\n        \"stroke\": \"#008025\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-82.13081869539506, 26.23449839991876],\n            [-83.40595166597085, 26.80155978434455],\n            [-83.07748325170441, 27.337367361375666],\n            [-82.45286775268717, 27.264956115483226],\n            [-82.50995550468448, 26.805856081166645],\n            [-82.13081869539506, 26.23449839991876]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00ffb7\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.20743398331993, 19.233369341871892]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00805c\",\n        \"stroke\": \"#00805c\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.58330318049086, 18.09915952726896],\n            [-86.05313261324237, 19.319796400696145],\n            [-86.56755786305595, 19.40265705295205],\n            [-86.71994017762563, 20.189025977120103],\n            [-85.93555696939467, 19.98152959915939],\n            [-85.67038090634749, 19.518488261229543],\n            [-86.02504204870841, 18.793197099411397],\n            [-86.01507615292597, 18.68916636419406],\n            [-86.21686530340585, 18.59063554310776],\n            [-86.58330318049086, 18.09915952726896]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00daff\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.09107749064712, 24.37688511209426]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#006c80\",\n        \"stroke\": \"#006c80\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.40866406564102, 24.65588369863437],\n            [-81.56890381178304, 24.88700194600341],\n            [-80.45164209210782, 23.76673190659356],\n            [-80.93509999305662, 24.197922897145702],\n            [-81.40866406564102, 24.65588369863437]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#006cff\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.77871030764776, 16.703901619603467]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#003580\",\n        \"stroke\": \"#003580\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.8522033753837, 16.57371866969067],\n            [-75.10886304098058, 16.8269149948045],\n            [-74.37506450657898, 16.711071194315227],\n            [-74.8522033753837, 16.57371866969067]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/test/out/noise.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.46337890625, 23.059516273509303]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.353515625, 23.120153621695614]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.36450195312499, 23.074678175027337]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.19970703125, 23.221154981846556]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.19970703125, 23.089838367476705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.28759765625, 22.99379497224218]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.8551025390625, 20.035289711352377]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6683349609375, 20.128155311797183]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.73974609375, 20.122997556207757]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6683349609375, 20.030128899024707]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80017089843749, 20.040450354169483]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.9375, 20.195190636474504]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.00341796875, 19.947532877989353]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.7562255859375, 20.014645445341365]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.46936035156249, 22.070368801349257]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.34027099609375, 22.2026634080092]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.35675048828125, 22.12126604542578]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.43914794921875, 22.271305748177635]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.38970947265625, 22.021999432851782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.55999755859375, 22.118721619281263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.54351806640625, 22.0525504317147]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.94024658203124, 20.360077646657153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.71728515624999, 21.596150576461426]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.046875, 18.218916080017465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.46337890625, 21.718679805703154]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0000ff\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.3114013671875, 23.093189398632948]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#000080\",\n        \"stroke\": \"#000080\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-82.28759765625, 22.99379497224218],\n            [-82.46337890625, 23.059516273509303],\n            [-82.36450195312499, 23.074678175027337],\n            [-82.353515625, 23.120153621695614],\n            [-82.19970703125, 23.221154981846556],\n            [-82.19970703125, 23.089838367476705],\n            [-82.28759765625, 22.99379497224218]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#ff0000\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.81878662109375, 20.097163159890428]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#800000\",\n        \"stroke\": \"#800000\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.6683349609375, 20.030128899024707],\n            [-75.7562255859375, 20.014645445341365],\n            [-75.80017089843749, 20.040450354169483],\n            [-76.00341796875, 19.947532877989353],\n            [-75.9375, 20.195190636474504],\n            [-75.94024658203124, 20.360077646657153],\n            [-75.8551025390625, 20.035289711352377],\n            [-75.73974609375, 20.122997556207757],\n            [-75.6683349609375, 20.128155311797183],\n            [-75.6683349609375, 20.030128899024707]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00ff01\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.44267926897321, 22.122696498115662]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#008001\",\n        \"stroke\": \"#008001\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.54351806640625, 22.0525504317147],\n            [-80.55999755859375, 22.118721619281263],\n            [-80.43914794921875, 22.271305748177635],\n            [-80.34027099609375, 22.2026634080092],\n            [-80.35675048828125, 22.12126604542578],\n            [-80.38970947265625, 22.021999432851782],\n            [-80.46936035156249, 22.070368801349257],\n            [-80.54351806640625, 22.0525504317147]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/test/out/points-with-properties.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 1,\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [68.477783203125, -48.84302835299516]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 2,\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [68.873291015625, -48.821332549646634]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 3,\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [68.69750976562499, -48.958580664409766]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 4,\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [70.87280273437499, -49.418120700666414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 5,\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [71.949462890625, -49.36091154712616]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 6,\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [71.4111328125, -49.102645497788814]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0000ff\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [68.682861328125, -48.87431385568385]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#000080\",\n        \"stroke\": \"#000080\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [68.69750976562499, -48.958580664409766],\n            [68.477783203125, -48.84302835299516],\n            [68.873291015625, -48.821332549646634],\n            [68.69750976562499, -48.958580664409766]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#ffff00\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [71.4111328125, -49.29389258186046]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#808000\",\n        \"stroke\": \"#808000\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [71.949462890625, -49.36091154712616],\n            [70.87280273437499, -49.418120700666414],\n            [71.4111328125, -49.102645497788814],\n            [71.949462890625, -49.36091154712616]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/test/out/points1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.46337890625, 23.059516273509303]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.353515625, 23.120153621695614]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.36450195312499, 23.074678175027337]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.19970703125, 23.221154981846556]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.19970703125, 23.089838367476705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.28759765625, 22.99379497224218]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.8551025390625, 20.035289711352377]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6683349609375, 20.128155311797183]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.73974609375, 20.122997556207757]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6683349609375, 20.030128899024707]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80017089843749, 20.040450354169483]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.9375, 20.195190636474504]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.00341796875, 19.947532877989353]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.7562255859375, 20.014645445341365]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.46936035156249, 22.070368801349257]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.34027099609375, 22.2026634080092]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.35675048828125, 22.12126604542578]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.43914794921875, 22.271305748177635]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.38970947265625, 22.021999432851782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.55999755859375, 22.118721619281263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.54351806640625, 22.0525504317147]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.94024658203124, 20.360077646657153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.71728515624999, 21.596150576461426]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0000ff\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.3114013671875, 23.093189398632948]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#000080\",\n        \"stroke\": \"#000080\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-82.28759765625, 22.99379497224218],\n            [-82.46337890625, 23.059516273509303],\n            [-82.36450195312499, 23.074678175027337],\n            [-82.353515625, 23.120153621695614],\n            [-82.19970703125, 23.221154981846556],\n            [-82.19970703125, 23.089838367476705],\n            [-82.28759765625, 22.99379497224218]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#ff0000\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.81878662109375, 20.097163159890428]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#800000\",\n        \"stroke\": \"#800000\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.6683349609375, 20.030128899024707],\n            [-75.7562255859375, 20.014645445341365],\n            [-75.80017089843749, 20.040450354169483],\n            [-76.00341796875, 19.947532877989353],\n            [-75.9375, 20.195190636474504],\n            [-75.94024658203124, 20.360077646657153],\n            [-75.8551025390625, 20.035289711352377],\n            [-75.73974609375, 20.122997556207757],\n            [-75.6683349609375, 20.128155311797183],\n            [-75.6683349609375, 20.030128899024707]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00ff01\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.44267926897321, 22.122696498115662]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#008001\",\n        \"stroke\": \"#008001\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.54351806640625, 22.0525504317147],\n            [-80.55999755859375, 22.118721619281263],\n            [-80.43914794921875, 22.271305748177635],\n            [-80.34027099609375, 22.2026634080092],\n            [-80.35675048828125, 22.12126604542578],\n            [-80.38970947265625, 22.021999432851782],\n            [-80.46936035156249, 22.070368801349257],\n            [-80.54351806640625, 22.0525504317147]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/test/out/points2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-118.30078125, 60.457217797743944]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-115.04882812499999, 58.401711667608]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-112.5, 60.84491057364912]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-110.478515625, 59.265880628258095]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-103.71093749999999, 60.673178565817715]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-102.3046875, 55.52863052257191]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.935546875, 60.930432202923335]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.89257812499999, 60.23981116999893]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.79296874999999, 57.468589192089354]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.7734375, 58.63121664342478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.541015625, 55.178867663281984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.263671875, 50.17689812200107]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.990234375, 49.38237278700955]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-94.21875, 47.27922900257082]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-88.41796875, 48.28319289548349]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-92.548828125, 52.855864177853974]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-87.1875, 45.89000815866184]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-107.490234375, 57.040729838360875]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-69.78515625, 56.511017504952136]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.73828125, 62.83508901142283]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.37695312499999, 61.938950426660604]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-91.845703125, 46.07323062540835]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.640625, 58.44773280389084]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-103.0078125, 58.6769376725869]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-88.857421875, 39.774769485295465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-123.48632812499999, 57.938183012205315]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-117.158203125, 46.558860303117164]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-114.873046875, 45.767522962149876]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-112.67578124999999, 44.402391829093915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-119.53125, 44.33956524809713]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-115.927734375, 43.389081939117496]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dbscan\": \"noise\",\n        \"marker-color\": \"#AEAEAE\",\n        \"marker-symbol\": \"circle-stroked\",\n        \"marker-size\": \"medium\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-120.58593749999999, 38.685509760012]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"dbscan\": \"core\",\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-113.90625, 40.3130432088809]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0000ff\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-110.703125, 58.758597808755766]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#000080\",\n        \"stroke\": \"#000080\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-102.3046875, 55.52863052257191],\n            [-107.490234375, 57.040729838360875],\n            [-115.04882812499999, 58.401711667608],\n            [-123.48632812499999, 57.938183012205315],\n            [-118.30078125, 60.457217797743944],\n            [-112.5, 60.84491057364912],\n            [-110.478515625, 59.265880628258095],\n            [-103.71093749999999, 60.673178565817715],\n            [-103.0078125, 58.6769376725869],\n            [-102.3046875, 55.52863052257191]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#ff007e\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.1640625, 59.13130073540497]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#80003e\",\n        \"stroke\": \"#80003e\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-82.79296874999999, 57.468589192089354],\n            [-83.935546875, 60.930432202923335],\n            [-81.73828125, 62.83508901142283],\n            [-76.37695312499999, 61.938950426660604],\n            [-72.7734375, 58.63121664342478],\n            [-69.78515625, 56.511017504952136],\n            [-76.640625, 58.44773280389084],\n            [-79.541015625, 55.178867663281984],\n            [-82.79296874999999, 57.468589192089354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#ffff00\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.92466517857143, 48.5629708241413]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#808000\",\n        \"stroke\": \"#808000\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.845703125, 46.07323062540835],\n            [-94.21875, 47.27922900257082],\n            [-92.548828125, 52.855864177853974],\n            [-90.263671875, 50.17689812200107],\n            [-88.41796875, 48.28319289548349],\n            [-84.990234375, 49.38237278700955],\n            [-87.1875, 45.89000815866184],\n            [-91.845703125, 46.07323062540835]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00ff80\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-115.6787109375, 44.12841091507608]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#008040\",\n        \"stroke\": \"#008040\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-113.90625, 40.3130432088809],\n            [-119.53125, 44.33956524809713],\n            [-117.158203125, 46.558860303117164],\n            [-114.873046875, 45.767522962149876],\n            [-112.67578124999999, 44.402391829093915],\n            [-113.90625, 40.3130432088809]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { centroid } from \"@turf/centroid\";\nimport chromatism from \"chromatism\";\nimport concaveman from \"concaveman\";\nimport { point, polygon, featureCollection } from \"@turf/helpers\";\nimport { clusterReduce, clusterEach } from \"@turf/clusters\";\nimport { coordAll, featureEach } from \"@turf/meta\";\nimport { clustersDbscan } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"clusters-dbscan\", (t) => {\n  fixtures.forEach((fixture) => {\n    const name = fixture.name;\n    const filename = fixture.filename;\n    const geojson = fixture.geojson;\n    const properties = geojson.properties || {};\n    const distance = properties.distance || 100;\n    const minPoints = properties.minPoints;\n    const units = properties.units;\n\n    // console.log(geojson.features.length);\n    const clustered = clustersDbscan(geojson, distance, {\n      units: units,\n      minPoints: minPoints,\n    });\n    const result = styleResult(clustered);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, result);\n    t.deepEqual(result, loadJsonFileSync(directories.out + filename), name);\n  });\n\n  t.end();\n});\n\nconst points = featureCollection([\n  point([0, 0], { foo: \"bar\" }),\n  point([2, 4], { foo: \"bar\" }),\n  point([3, 6], { foo: \"bar\" }),\n]);\n\ntest(\"clusters-dbscan -- prevent input mutation\", (t) => {\n  clustersDbscan(points, 2, { units: \"kilometers\", minPoints: 1 });\n  t.true(\n    points.features[0].properties.cluster === undefined,\n    \"cluster properties should be undefined\"\n  );\n  t.end();\n});\n\ntest(\"clusters-dbscan -- translate properties\", (t) => {\n  t.equal(\n    clustersDbscan(points, 2, { units: \"kilometers\", minPoints: 1 }).features[0]\n      .properties.foo,\n    \"bar\"\n  );\n  t.end();\n});\n\n// style result\nfunction styleResult(clustered) {\n  const count = clusterReduce(clustered, \"cluster\", (i) => i + 1, 0);\n  const colours = chromatism.adjacent(360 / count, count, \"#0000FF\").hex;\n  const features = [];\n\n  // Add all clusterd points\n  featureEach(clustered, function (pt) {\n    const dbscan = pt.properties.dbscan;\n    const clusterId = pt.properties.cluster;\n\n    switch (dbscan) {\n      case \"core\":\n      case \"edge\": {\n        const coreColor = colours[clusterId];\n        const edgeColor = chromatism.brightness(-20, colours[clusterId]).hex;\n        pt.properties[\"marker-color\"] =\n          dbscan === \"core\" ? coreColor : edgeColor;\n        pt.properties[\"marker-size\"] = \"small\";\n        break;\n      }\n      case \"noise\": {\n        pt.properties[\"marker-color\"] = \"#AEAEAE\";\n        pt.properties[\"marker-symbol\"] = \"circle-stroked\";\n        pt.properties[\"marker-size\"] = \"medium\";\n        break;\n      }\n    }\n    features.push(pt);\n  });\n\n  // Iterate over each Cluster\n  clusterEach(clustered, \"cluster\", (cluster, clusterValue, clusterId) => {\n    const color = chromatism.brightness(-25, colours[clusterId]).hex;\n\n    // Add Centroid\n    features.push(\n      centroid(cluster, {\n        properties: {\n          \"marker-color\": colours[clusterId],\n          \"marker-symbol\": \"star-stroked\",\n          \"marker-size\": \"large\",\n        },\n      })\n    );\n\n    // Add concave polygon\n    features.push(\n      polygon([concaveman(coordAll(cluster))], {\n        fill: color,\n        stroke: color,\n        \"fill-opacity\": 0.3,\n      })\n    );\n  });\n  return featureCollection(features);\n}\n\ntest(\"clusters-dbscan -- allow input mutation\", (t) => {\n  const oldPoints = featureCollection([\n    point([0, 0], { foo: \"bar\" }),\n    point([2, 4], { foo: \"bar\" }),\n    point([3, 6], { foo: \"bar\" }),\n  ]);\n  // No mutation\n  const newPoints = clustersDbscan(points, 2, { minPoints: 1 });\n  t.equal(newPoints.features[1].properties.cluster, 1, \"cluster is 1\");\n  t.equal(\n    oldPoints.features[1].properties.cluster,\n    undefined,\n    \"cluster is undefined\"\n  );\n\n  // Allow mutation\n  clustersDbscan(oldPoints, 2, { minPoints: 1, mutate: true });\n  t.equal(oldPoints.features[1].properties.cluster, 1, \"cluster is 1\");\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-clusters-dbscan/types.ts",
    "content": "import { featureCollection, point } from \"@turf/helpers\";\nimport { clustersDbscan } from \"./index.js\";\n\n// Fixtures\nconst points = featureCollection([point([0, 0]), point([2, 2])]);\n\n// Default\nconst maxDistance = 5;\nconst clustered = clustersDbscan(points, maxDistance);\n\n// Enforce strict properties when using the dbscan property\nconst output = clustersDbscan(points, maxDistance);\nlet { dbscan, cluster } = output.features[0].properties;\ndbscan = \"edge\";\ndbscan = \"core\";\ndbscan = \"noise\";\n// dbscan = 'foo' //= [ts] Type '\"foo\"' is not assignable to type '\"core\" | \"edge\" | \"noise\"'.\nclustersDbscan(output, maxDistance);\n\n// Options\nconst minPoints = 3;\nconst units = \"miles\";\nclustersDbscan(points, maxDistance);\nclustersDbscan(points, maxDistance, { units });\nclustersDbscan(points, maxDistance, { units, minPoints });\n\n// Custom Properties\nclustered.features[0].properties.cluster;\nclustered.features[0].properties.dbscan;\nclustered.features[0].properties.foo;\n"
  },
  {
    "path": "packages/turf-clusters-kmeans/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-clusters-kmeans/README.md",
    "content": "# @turf/clusters-kmeans\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## clustersKmeans\n\nTakes a set of [points][1] and partition them into clusters using the k-mean .\nIt uses the [k-means algorithm][2]\n\n### Parameters\n\n*   `points` **[FeatureCollection][3]<[Point][1]>** to be clustered\n*   `options` **[Object][4]** Optional parameters (optional, default `{}`)\n\n    *   `options.numberOfClusters` **[number][5]** numberOfClusters that will be generated (optional, default `Math.sqrt(numberOfPoints/2)`)\n    *   `options.mutate` **[boolean][6]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`)\n\n### Examples\n\n```javascript\n// create random points with random z-values in their properties\nvar points = turf.randomPoint(100, {bbox: [0, 30, 20, 50]});\nvar options = {numberOfClusters: 7};\nvar clustered = turf.clustersKmeans(points, options);\n\n//addToMap\nvar addToMap = [clustered];\n```\n\nReturns **[FeatureCollection][3]<[Point][1]>** Clustered Points with an additional two properties associated to each Feature:*   {number} cluster - the associated clusterId\n*   {\\[number, number]} centroid - Centroid of the cluster \\[Longitude, Latitude]\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[2]: https://en.wikipedia.org/wiki/K-means_clustering\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/clusters-kmeans\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-clusters-kmeans/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { clustersKmeans } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n// Define Fixtures\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * fiji: 2.243ms\n * many-points: 35.878ms\n * points-with-properties: 4.576ms\n * points1: 0.203ms\n * points2: 0.103ms\n * fiji x 240,316 ops/sec ±1.24% (87 runs sampled)\n * many-points x 184 ops/sec ±2.42% (82 runs sampled)\n * points-with-properties x 230,182 ops/sec ±2.81% (85 runs sampled)\n * points1 x 66,020 ops/sec ±3.35% (84 runs sampled)\n * points2 x 38,978 ops/sec ±2.10% (88 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-clusters-kmeans\");\nfor (const { name, geojson } of fixtures) {\n  const { numberOfCentroids } = geojson.properties || {};\n\n  console.time(name);\n  clustersKmeans(geojson, numberOfCentroids, true);\n  console.timeEnd(name);\n  suite.add(name, () => clustersKmeans(geojson, numberOfCentroids, true));\n}\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-clusters-kmeans/index.ts",
    "content": "import { FeatureCollection, Point, GeoJsonProperties } from \"geojson\";\nimport { clone } from \"@turf/clone\";\nimport { coordAll, featureEach } from \"@turf/meta\";\nimport skmeans from \"skmeans\";\n\ntype KmeansProps = GeoJsonProperties & {\n  cluster?: number;\n  centroid?: [number, number];\n};\n\n/**\n * Takes a set of {@link Point|points} and partition them into clusters using the k-mean .\n * It uses the [k-means algorithm](https://en.wikipedia.org/wiki/K-means_clustering)\n *\n * @function\n * @param {FeatureCollection<Point>} points to be clustered\n * @param {Object} [options={}] Optional parameters\n * @param {number} [options.numberOfClusters=Math.sqrt(numberOfPoints/2)] numberOfClusters that will be generated\n * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true)\n * @returns {FeatureCollection<Point>} Clustered Points with an additional two properties associated to each Feature:\n * - {number} cluster - the associated clusterId\n * - {[number, number]} centroid - Centroid of the cluster [Longitude, Latitude]\n * @example\n * // create random points with random z-values in their properties\n * var points = turf.randomPoint(100, {bbox: [0, 30, 20, 50]});\n * var options = {numberOfClusters: 7};\n * var clustered = turf.clustersKmeans(points, options);\n *\n * //addToMap\n * var addToMap = [clustered];\n */\nfunction clustersKmeans(\n  points: FeatureCollection<Point>,\n  options: {\n    numberOfClusters?: number;\n    mutate?: boolean;\n  } = {}\n): FeatureCollection<Point, KmeansProps> {\n  // Default Params\n  var count = points.features.length;\n  options.numberOfClusters =\n    options.numberOfClusters || Math.round(Math.sqrt(count / 2));\n\n  // numberOfClusters can't be greater than the number of points\n  // fallbacks to count\n  if (options.numberOfClusters > count) options.numberOfClusters = count;\n\n  // Clone points to prevent any mutations (enabled by default)\n  if (options.mutate !== true) points = clone(points);\n\n  // collect points coordinates\n  var data = coordAll(points);\n\n  // create seed to avoid skmeans to drift\n  var initialCentroids = data.slice(0, options.numberOfClusters);\n\n  // create skmeans clusters\n  var skmeansResult = skmeans(data, options.numberOfClusters, initialCentroids);\n\n  // store centroids {clusterId: [number, number]}\n  var centroids: Record<string, number[]> = {};\n  (skmeansResult.centroids as number[][]).forEach(function (\n    coord: number[],\n    idx: number\n  ) {\n    centroids[idx] = coord;\n  });\n\n  // add associated cluster number\n  featureEach(points, function (point, index) {\n    var clusterId = skmeansResult.idxs[index];\n    point.properties!.cluster = clusterId;\n    point.properties!.centroid = centroids[clusterId];\n  });\n\n  return points as FeatureCollection<Point, KmeansProps>;\n}\n\nexport { clustersKmeans, KmeansProps };\nexport default clustersKmeans;\n"
  },
  {
    "path": "packages/turf-clusters-kmeans/package.json",
    "content": "{\n  \"name\": \"@turf/clusters-kmeans\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a set of points and partition them into clusters using the k-means algorithm.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"David Gómez Matarrodona <@solzimer>\",\n    \"Stefano Borghi <@stebogit>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"cluster\",\n    \"clusters\",\n    \"clustering\",\n    \"k-means\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/centroid\": \"workspace:*\",\n    \"@turf/clusters\": \"workspace:*\",\n    \"@turf/random\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/skmeans\": \"^0.11.7\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"chromatism\": \"^3.0.0\",\n    \"concaveman\": \"^1.2.1\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/clone\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"skmeans\": \"0.9.7\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-clusters-kmeans/test/in/fiji.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [179.439697265625, -16.55196172197251]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [179.01123046874997, -16.97274101999901]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [179.505615234375, -17.035777250427184]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [180.75805664062497, -16.41500926733237]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [181.1865234375, -16.615137799987075]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [181.03271484375, -16.277960306212513]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-kmeans/test/in/many-points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.36337554761008, 19.119473770547124]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.32753919964946, 20.843505437175903]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.72930024352243, 22.95523079568951]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.28985709132587, 16.584015683001546]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.94492705924428, 21.0702981386651]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.05488356732162, 24.111641311913072]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.55079764304975, 25.525431992772358]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.11420407247648, 26.113452348786268]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.8076846951252, 22.255910609327792]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.98702719224296, 25.275001495112985]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.54236384636712, 20.789257545981407]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.57808400285332, 20.00051975393173]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.39655991111083, 22.12594824182586]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.42324858424885, 17.48175433130492]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.90361604004578, 26.430002559611477]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.22266857015823, 20.94137638968897]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.48717976822758, 20.224242981590255]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.06779765523183, 27.276249335066662]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.99075803676163, 17.651929487468298]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.53563340237405, 26.495418224944373]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.20462326614003, 24.00357261039075]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.58330318049086, 18.09915952726896]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.50889284912286, 18.340562952508183]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.55680807421967, 21.907870183116437]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.53689212714627, 17.422501403729605]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.18027511981438, 18.875894880366534]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.39732218872196, 25.629464613691137]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.66061545607911, 22.757810888614223]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.65357594791968, 16.66838838845727]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.77643699392496, 27.091684659861052]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.13081869539506, 26.23449839991876]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.43824120718541, 19.103181050521584]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.43898229878118, 18.874231952472687]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.92734033427595, 20.82599847071201]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.27364128877521, 21.130861117009847]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.05413199086016, 23.058073292292104]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.28388468077954, 22.883779502221373]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.77696496688779, 18.94471042190279]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.23882701110625, 20.30184311650061]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.66116457836486, 20.169682381560182]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.90248833212131, 26.884383581357255]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.28525543556775, 26.722194267296018]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.8977221405959, 19.412558043465]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.07684618758876, 27.17395724732544]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.41316964578398, 23.148029434777555]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.92622530551323, 25.623260952842156]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.2549851564484, 22.35997051326973]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.7199945397987, 25.802953128684692]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.96348979974654, 27.35814140608639]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.04921623428444, 20.61204095701038]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.54213379075634, 25.505384186492893]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.61403051800008, 17.263716566767037]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.25360192470616, 18.686705558388965]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.42930471321405, 20.022748677821312]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.44899512481147, 21.52626642668551]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.38761515683782, 18.77265726075554]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.12756391373203, 25.531641282912506]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.65487739464005, 20.270385418656613]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.44983759982364, 18.547000172845294]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.53680657077764, 25.303329199906706]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.01712484014583, 24.449642983600107]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.86222771555597, 22.720569651349564]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.2520931858629, 25.53784765691357]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.60441825132624, 23.93129090727725]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.2164652385625, 25.79578750021983]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.63151040609172, 24.490225688795583]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.51548817891319, 17.202270132332913]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.3121102967554, 25.956525827964448]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.27005222591032, 17.528372337434828]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.0823710181298, 25.482920857480014]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.75288708284614, 18.922685406247748]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.52847693811808, 24.220685835886385]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.42010129302429, 25.72860309981145]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.03682779147974, 27.053835982653894]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.67472974247343, 24.956264380693316]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.95315877653405, 18.41169388608788]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.57393282654176, 26.261024024692077]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.92845035818462, 17.837520858411256]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.5179339115434, 23.450627516507094]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.71943800617547, 19.616649637864654]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.93211879732236, 26.33170236314861]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.10661507770358, 25.13063963201959]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.24887371103026, 21.739851639014628]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.26129906562491, 21.294934204528648]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.2729878125471, 23.65784314034355]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.3562097070285, 24.24226765651852]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.99265814798184, 27.483971653923085]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.63635988061537, 18.75973134353604]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.76340181762502, 26.57219504751686]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.45164209210782, 23.76673190659356]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.65455892791887, 27.186142540274957]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.03313564896565, 24.333750064476934]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.87222884039794, 19.159104199268683]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.54286133638129, 24.13575708893132]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.26242751330523, 20.472647289870025]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.80042213720098, 20.990256802329768]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.5874725368364, 25.039930971231904]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.85825660840021, 25.43539990016023]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.17454776573982, 23.461743771248557]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.40002194939215, 20.67151202116478]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.23963323045145, 23.244627904260923]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.81552101630216, 26.53756981389545]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.9283270010284, 24.674017344728615]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.70000865367116, 21.542018533522416]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.48978633680683, 19.623096473871033]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.67175298435387, 17.880881534565148]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.04610391202878, 26.551597087996466]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.84175265531377, 16.85074369818602]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.95908129532202, 21.185424844181092]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.88684525321649, 18.726646021819167]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.15582212817301, 18.696902173553443]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.5644212682104, 20.850894115743387]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.37878622301193, 16.91615114076283]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.81019601780373, 17.165972386566605]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.4614226211491, 23.444082141644998]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.18265845716839, 25.295833894402776]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.09803657824347, 23.3454534216312]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.34448173717335, 17.84048983960788]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.18827115285569, 20.273168111170328]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.26216347689832, 23.673136982276464]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.21575485381635, 23.096925087889748]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.01908584146595, 21.557475862048076]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.92274968888073, 26.019876080997598]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.55727606952377, 22.36430316761306]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.25891612041117, 19.525184281200534]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.64279747070925, 25.651725881829897]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.40499501048518, 16.63021658406485]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.64998704253041, 24.234779530366744]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.30467012694315, 17.92521920364085]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.76550387867614, 21.84873202139447]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.2770011073176, 26.540918581152965]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.20171143790367, 24.334344930797855]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.51391779937516, 18.211967578932978]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.81858154084357, 19.071318793255987]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.87897523658762, 22.009563011217917]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.17146072076018, 22.71145107992815]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.14138268439117, 27.295964747431004]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.01085563325441, 23.60461239295877]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.61068998466835, 21.311283807756645]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.76701891828932, 27.195861233372437]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.55059712821668, 25.49682672225246]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.42534293525704, 20.342801196105015]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.85957138950651, 25.651916540759668]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.67260570784427, 20.45532583962798]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.81872422593077, 21.669857512462364]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.38646877459935, 19.37340763751337]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.50710379745864, 18.424063455433217]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.632893967135, 23.107454998460437]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.36852553393699, 24.295072371424403]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.86140755178053, 17.50071319492512]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.56458486764306, 23.27787869671228]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.25719355261317, 18.841254641177088]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.79365159485565, 24.73837411446049]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.77110623794552, 22.880747711470292]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.17830942471453, 27.459109723499697]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.5062774214051, 17.326690422594897]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.19600112265177, 22.73914989583398]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.58173201222138, 23.850997885697698]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.71045285694422, 17.079742569860166]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.34171838085163, 22.153445077419946]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.55081810986574, 24.915158163291853]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.59793295622734, 18.75099342612817]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.14433438213305, 27.036543336370556]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.4434583942987, 19.619680064723546]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.51440928893466, 19.680938852916263]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.95150377384275, 26.91911731157561]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.4550593256632, 24.03016205722427]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.8228436577642, 25.845318184468677]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.16769788043096, 16.98191521287846]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.51634149582756, 19.10937565092933]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.72446682780881, 22.25313981239625]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.95113454727932, 26.357292830184782]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.89319872559254, 21.773847762169503]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.50995550468448, 26.805856081166645]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.72311173060332, 27.453459491416243]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.20796912251339, 16.910765069076696]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.02923748665658, 17.06286092924691]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.67236850288222, 19.00571371998642]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.43657840692077, 17.42104681957319]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.48932636312891, 18.050155326157473]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.76206658518934, 23.71467590682046]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.46253580071742, 22.833272724615775]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.09703651590019, 17.421833037838393]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.61013158110691, 23.65729956086801]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.66397149031135, 25.831969038126523]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.1727623444978, 24.152605040309613]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.2741188221817, 18.639289071153634]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.90735829536999, 18.190052908059194]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.32489553257798, 19.57470756961103]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.01326798044877, 24.122014119489563]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.52731994000185, 26.95480013106508]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.3558896446572, 17.44256116852827]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.02534851234576, 16.756254338847338]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.47025910061983, 24.118620545794855]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.308362589921, 20.54596248507216]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.34538728645822, 24.41450380344747]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.33122422882889, 23.37013167679639]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.27561331569953, 16.994251063813262]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.86851913822156, 25.81027224474102]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.24173363419717, 24.34323106176321]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.84877351272029, 26.92445686110058]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.71160840330522, 21.77620359204627]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.20296576353552, 21.709322849932395]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.04325753495058, 24.349990861490674]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.01507615292597, 18.68916636419406]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.98455859943033, 21.06707023138771]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.40609968225364, 21.87541299401925]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.66122425689909, 19.364456854255717]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.2600583537702, 21.659164464794838]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.73592652087561, 17.55179712679042]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.80434002543046, 18.311428726658654]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.89936609149818, 27.20566948335109]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.9153275956025, 22.728686372271056]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.22442161042382, 20.946470968784404]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.23254193941007, 26.262181726505418]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.62437731409852, 19.781049107501957]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.49173903601617, 16.92003208241821]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.25829317577141, 21.827114782054075]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.65532298324348, 17.29988957265243]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.3453947248687, 24.50576556423695]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.37506450657898, 16.711071194315227]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.42569161383636, 21.026826554775827]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.43791743989885, 24.962432920525124]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.84458598730575, 23.70594482686843]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.37848518046901, 26.34378098000883]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.13497764736996, 17.934013939878078]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.54709582459233, 16.53706271986311]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.17844562558024, 23.80702766062598]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.64984925794586, 27.17403653643745]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.89153777133139, 23.170952976617727]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.93875091618717, 25.00047089937265]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.9102252552082, 23.883340808622673]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.45068182631776, 24.018640243238202]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.56517209188608, 24.748894301890655]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.41470444523833, 26.791071724795167]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.27546806320538, 24.62810216606337]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.37798026966385, 22.800554127763526]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.67038090634749, 19.518488261229543]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.51124408675949, 18.95091920687403]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.72209650039468, 24.280447748568445]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.28434198674468, 17.20571626766068]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.15681636726895, 26.828785859624258]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.11344269598334, 17.666989151972253]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.96994176238145, 22.888540550894795]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.50079368006108, 26.634382308937134]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.54280695688689, 23.237868840297253]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.59204571681656, 24.786873137315194]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.01377215866017, 18.936419309424537]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.01405131484972, 18.581612310870824]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.6420973159142, 18.58453117274099]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.74759623801513, 26.12337676616272]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.05313261324237, 19.319796400696145]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.13970036126891, 17.506087557394512]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.75848457074353, 21.115370497855984]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.16830971446066, 24.6894321007414]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.21048541308969, 17.919231608494442]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.97637737411591, 23.150822409149665]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.98806643205722, 18.733700354050203]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.73009496457921, 23.7983464395302]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.21686530340585, 18.59063554310776]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.94846192062774, 19.236367113472895]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.97783503664645, 19.823228188109127]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.31384918144222, 22.633190689556994]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.49404471100601, 22.009751251682275]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.1270341028659, 25.781532521957693]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.51950761862354, 23.496329401717578]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.67344643947845, 20.92896756107965]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.28006204700529, 18.638001663502685]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.33788518686183, 24.089777622921456]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.03458096249997, 22.65764273416216]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.80104984355006, 26.237062559189845]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.21242542631086, 20.177739085659635]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.38674449250746, 17.652491491363605]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.93734071291428, 23.99085830463023]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.20251485577793, 26.55556740273682]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.73360568748585, 26.28033941085063]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.13262960963559, 22.34430874872904]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.54532805510269, 17.55045667323678]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.80026818559628, 18.561998669158292]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.28628835491551, 19.571063802546057]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.58131591277606, 24.21369712743759]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.88085722918547, 19.753718721210948]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.64966522234937, 20.677188588895476]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.24840889524553, 19.69712523257967]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.96400931937723, 18.174770180214516]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.70189850382681, 16.534625567595363]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.810090294371, 25.23156636266861]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.17536572906562, 19.792647657345]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.79193518864761, 24.737897659493715]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.93555696939467, 19.98152959915939]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.21354373461136, 25.88846335275895]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.32534041974515, 26.094983944812824]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.97472021053458, 26.061373986456793]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.84081911742697, 23.793624669453152]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.24844766066971, 24.484245781333726]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.90249827777127, 22.05793250583984]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.07748325170441, 27.337367361375666]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.52285998029147, 17.487274302366117]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.81251634431071, 20.933095236667395]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.58692805675213, 24.80146814851551]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.47378831903654, 21.652685460023044]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.70162022475394, 19.229694616459863]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.78777310048918, 23.92218146021364]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.80552346807535, 22.161467782172014]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.55667427680913, 22.171811135508918]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.49928602385201, 27.41608769703238]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.34842284656386, 17.435895054282373]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.21228170738233, 22.173670632023597]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.90881672418563, 21.468642424655155]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.56477901274141, 23.02518524523849]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.43974652662247, 22.60413987147912]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.5883411017305, 19.917932537792794]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.35881511009039, 19.09687830115208]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.72145863838075, 25.18049472134159]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.95694749118951, 27.39255408553263]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.44936060272309, 27.49130192814892]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.61820042082097, 23.049137776556364]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.10989174097693, 18.469712160553517]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.379040540202, 20.37524788330293]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.51495780456581, 16.669087042407536]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.10886304098058, 16.8269149948045]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.72560883757795, 16.962762773864505]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.89333076284501, 24.384990740752006]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.59332944904146, 24.120911542546878]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.42817901090537, 17.74846475203746]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.89833899459296, 19.72230811960007]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.98171564844314, 21.140743955694063]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.99706809934376, 18.63550290606603]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.13208804398411, 19.266357159361213]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.44208974284808, 18.89754661420165]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.67095396405709, 17.953443362949123]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.61949782551551, 25.38069882274378]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.82927583009545, 18.920544836399152]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.71898403700982, 22.858679743400074]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.05832892131573, 25.244587077548168]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.53486708882008, 18.05579400531109]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.3189432679756, 20.059875630170964]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.96213190737039, 26.279325304846623]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.44927404052561, 17.791447001826654]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.39338327111777, 24.626502743687922]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.58570795493182, 25.546633692923525]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.83961825329554, 25.484747617185402]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.87200031832714, 23.66114743521159]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.83487262625073, 20.095259588587723]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.91640675333899, 16.590848739189624]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.30245460933854, 19.23352889608482]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.14994486721066, 20.53183273996738]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.80521037357039, 21.252980629644455]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.8787989831883, 18.218515429796344]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.76978734183139, 17.7977450107505]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.80371392928168, 26.040116775073876]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.95744087420283, 25.191234441288678]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.77674346051477, 21.375540465284374]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.29292929991102, 21.98589295297564]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.66745422227388, 26.168091294302087]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.92295434812097, 23.30372425686007]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.96026394085236, 25.51392205303288]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.43164354544895, 17.413235272364112]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.28566063654243, 18.482281406816814]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.18586938186745, 27.019278441405643]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.00665657564603, 18.009509829132515]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.78174587415, 25.852826126614094]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.17395695535176, 20.322052935788367]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.75631134659818, 27.4074383447763]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.30133416063728, 22.908999108726512]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.5468209860248, 25.79011427888136]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.50335139484208, 25.338279000551893]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.85611159709538, 24.40263258506802]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.19143746995799, 22.76299900389558]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.49961985245375, 23.749896556565293]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.93434205722116, 17.8751516982336]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.47725300277814, 20.834238692742822]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.40866406564102, 24.65588369863437]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.23086732338659, 22.010870880797054]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.55598541988493, 23.62640751670331]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.067479899787, 22.44918038801505]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.5723788030903, 23.774277575000852]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.68634851848167, 23.203154689599817]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.97302399035408, 22.395504699565535]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.47937906764957, 24.839570106333433]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.63060572237521, 22.939370867570908]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.28374988273468, 16.800162341500304]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.01980255637385, 21.18954858284259]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.80981841825783, 16.752970728846513]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.0632043924848, 17.78197939775129]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.31937806169958, 16.63036465541673]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.51362280935948, 19.07306061464646]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.6462554841785, 18.765258635070385]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.90737511126233, 25.663681166863604]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.3184598837461, 20.339708336838683]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.25614050898571, 20.47865304539995]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.05273739031475, 27.278196207610172]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.57090751033381, 25.058967866824403]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.72044789264216, 17.86742294760512]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.45286775268717, 27.264956115483226]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.46924741699405, 22.27588495796526]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.2743504888918, 26.691822644671085]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.18119091611597, 24.755151867045228]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.9753411638257, 22.736683695999382]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.17815192274419, 17.766464076510605]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.79951671731996, 16.979753651505465]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.81530228240368, 21.899431865794316]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.15292492090326, 18.519443297834165]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.11308732341453, 22.73505946813462]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.00830955618024, 21.885311144830727]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.54728340532579, 17.713742740545893]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.53755328892348, 25.323104677883705]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.68105867358958, 27.21289905396955]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.96411774831036, 22.888644254222072]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.98170526139158, 20.98332034823357]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.56755786305595, 19.40265705295205]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.9097441614737, 25.69899354986159]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.8522033753837, 16.57371866969067]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.59048812893998, 22.36793387394907]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.69797232502891, 17.49676706923224]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.4273474590883, 20.29560385897871]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.75702086888295, 18.06842605714349]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.93509999305662, 24.197922897145702]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.59056449409796, 17.249155158477635]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.04442014558218, 20.180967527569678]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.37084983049334, 18.874173436903888]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.56890381178304, 24.88700194600341]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.06300053256552, 25.068476848998436]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.07431215190033, 23.634255220677876]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.97261043138833, 20.783569456567577]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.69220087076908, 23.99722100792555]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.28624765409677, 19.684275914963393]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.26371632117386, 23.468899954784128]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.64211828010676, 22.535063069435896]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.76720344494535, 17.95425416674962]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.84949687526881, 23.882703836621122]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.51599855499506, 22.18056139559293]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.0586637697147, 22.618118595420675]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.82988603140993, 22.75446266986306]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.10048201961024, 21.361849810266136]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.04153303125153, 20.350657127526738]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.59504589774306, 27.064096554971023]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.07548891214728, 17.301084891511273]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.33158765668573, 19.452979509754268]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.81854336800883, 24.131395375394586]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.684418563593, 21.47654476359144]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.00730697784353, 25.897847636990367]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.40829350874473, 27.268125557919248]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.2707934048482, 20.982305048038683]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.38809337052642, 26.427105032557755]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.0134734724832, 25.13419607033201]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.17642686622017, 25.221069930712087]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.71994017762563, 20.189025977120103]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.29187361259146, 27.392240106344147]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.79976558388476, 20.035863120368496]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.3275873181896, 23.43075879262019]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.30217792473226, 22.66331518976522]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.02504204870841, 18.793197099411397]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.96796993174219, 24.703657172369798]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.41505346819054, 25.017559911985607]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.287484618002, 19.75003759357949]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.25519670513809, 19.980973614544432]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.3831207434748, 20.990164116130572]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.30367109087219, 25.1900948213395]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.33929483454432, 17.79933711363019]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.3072622609112, 19.064713633397105]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.09464045072042, 16.867824298530778]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.01339730011378, 25.682665424232965]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.74959288173342, 17.47999904710256]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.95625724719481, 26.53239538653403]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.95900351362758, 26.964513550251407]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.22624323598141, 17.943008474474265]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.14342020536195, 18.867794740406104]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.61849018164143, 22.47855670455455]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.7861071942679, 18.669738072373164]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.00369227814197, 24.612757650509216]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.77138891405684, 20.81044983619232]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.89623600838752, 19.396975077838288]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.40595166597085, 26.80155978434455]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.80825302190365, 23.35316310450464]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.96259557904392, 24.196187792487656]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.08863800575135, 25.15698262014013]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.75695759804495, 20.08490410319372]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.42234796309599, 26.22301149374214]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.26218882048389, 26.41236152098589]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.87135659444625, 17.56355668256735]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.49722908932829, 21.926256397875694]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.7096594822639, 24.460836562368442]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.09304190552334, 27.42090911618883]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.0243253011326, 17.45098074087971]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.25880876997459, 18.567348945414572]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.15374231895991, 19.572527461376602]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.90718745331596, 18.01378466658022]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.3932989046418, 19.030002383084067]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.56289580127358, 23.7331334661265]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.32615130900722, 23.22949976202878]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.32932140159735, 21.369086228743924]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.40761927871347, 22.617986414434352]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.6909951062254, 17.986704731304503]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.38990946382116, 17.402709176906622]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.59495181641225, 22.81831350748234]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.38487102139864, 26.08247375588085]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.86031632408672, 24.23389023003475]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.76905431857912, 27.471768557404076]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.43945965828523, 18.638609876647752]\n      },\n      \"properties\": {}\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-kmeans/test/in/points-with-properties.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [68.477783203125, -48.84302835299516]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 2\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [68.873291015625, -48.821332549646634]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [68.69750976562499, -48.958580664409766]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [70.87280273437499, -49.418120700666414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [71.949462890625, -49.36091154712616]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 6\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [71.4111328125, -49.102645497788814]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-kmeans/test/in/points1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"numberOfClusters\": 3\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.46337890625, 23.059516273509303]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.353515625, 23.120153621695614]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.36450195312499, 23.074678175027337]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.19970703125, 23.221154981846556]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.19970703125, 23.089838367476705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.28759765625, 22.99379497224218]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.8551025390625, 20.035289711352377]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6683349609375, 20.128155311797183]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.73974609375, 20.122997556207757]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6683349609375, 20.030128899024707]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80017089843749, 20.040450354169483]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.0089111328125, 20.226120295836992]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.0308837890625, 19.926877111209265]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.7562255859375, 20.014645445341365]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.46936035156249, 22.070368801349257]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.34027099609375, 22.2026634080092]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.35675048828125, 22.12126604542578]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.43914794921875, 22.271305748177635]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.38970947265625, 22.021999432851782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.55999755859375, 22.118721619281263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.54351806640625, 22.0525504317147]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-kmeans/test/in/points2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"numberOfClusters\": 4\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-118.30078125, 60.457217797743944]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-115.04882812499999, 58.401711667608]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-112.5, 60.84491057364912]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-110.478515625, 59.265880628258095]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-103.71093749999999, 60.673178565817715]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-102.3046875, 55.52863052257191]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.935546875, 60.930432202923335]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.89257812499999, 60.23981116999893]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.79296874999999, 57.468589192089354]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.7734375, 58.63121664342478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.541015625, 55.178867663281984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.263671875, 50.17689812200107]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.990234375, 49.38237278700955]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-94.21875, 47.27922900257082]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-88.41796875, 48.28319289548349]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-92.548828125, 52.855864177853974]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-87.1875, 45.89000815866184]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-107.490234375, 57.040729838360875]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-69.78515625, 56.511017504952136]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.73828125, 62.83508901142283]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.37695312499999, 61.938950426660604]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-91.845703125, 46.07323062540835]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.640625, 58.44773280389084]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-103.0078125, 58.6769376725869]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-88.857421875, 39.774769485295465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-123.48632812499999, 57.938183012205315]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-117.158203125, 46.558860303117164]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-114.873046875, 45.767522962149876]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-112.67578124999999, 44.402391829093915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-119.53125, 44.33956524809713]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-115.927734375, 43.389081939117496]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-120.58593749999999, 38.685509760012]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-113.90625, 40.3130432088809]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-kmeans/test/out/fiji.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [179.31884765625, -16.85349333079957],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [179.439697265625, -16.55196172197251]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [179.31884765625, -16.85349333079957],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [179.01123046874997, -16.97274101999901]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [179.31884765625, -16.85349333079957],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [179.505615234375, -17.035777250427184]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [180.992431640625, -16.43603579117732],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [180.75805664062497, -16.41500926733237]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [180.992431640625, -16.43603579117732],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [181.1865234375, -16.615137799987075]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [180.992431640625, -16.43603579117732],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [181.03271484375, -16.277960306212513]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#000080\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [180.992431640625, -16.43603579117732]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#000080\",\n        \"stroke\": \"#000080\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [181.1865234375, -16.615137799987075],\n            [180.75805664062497, -16.41500926733237],\n            [181.03271484375, -16.277960306212513],\n            [181.1865234375, -16.615137799987075]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#808000\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [179.31884765625, -16.85349333079957]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#808000\",\n        \"stroke\": \"#808000\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [179.505615234375, -17.035777250427184],\n            [179.01123046874997, -16.97274101999901],\n            [179.439697265625, -16.55196172197251],\n            [179.505615234375, -17.035777250427184]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-kmeans/test/out/many-points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.36337554761008, 19.119473770547124]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.32753919964946, 20.843505437175903]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.72930024352243, 22.95523079568951]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.28985709132587, 16.584015683001546]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.94492705924428, 21.0702981386651]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.05488356732162, 24.111641311913072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.55079764304975, 25.525431992772358]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.11420407247648, 26.113452348786268]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.8076846951252, 22.255910609327792]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.98702719224296, 25.275001495112985]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.54236384636712, 20.789257545981407]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.57808400285332, 20.00051975393173]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.39655991111083, 22.12594824182586]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.42324858424885, 17.48175433130492]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.90361604004578, 26.430002559611477]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.22266857015823, 20.94137638968897]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.48717976822758, 20.224242981590255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.06779765523183, 27.276249335066662]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.99075803676163, 17.651929487468298]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.53563340237405, 26.495418224944373]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.20462326614003, 24.00357261039075]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.58330318049086, 18.09915952726896]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.50889284912286, 18.340562952508183]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.55680807421967, 21.907870183116437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.53689212714627, 17.422501403729605]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.18027511981438, 18.875894880366534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.39732218872196, 25.629464613691137]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.66061545607911, 22.757810888614223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.65357594791968, 16.66838838845727]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.77643699392496, 27.091684659861052]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.13081869539506, 26.23449839991876]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.43824120718541, 19.103181050521584]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.43898229878118, 18.874231952472687]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.92734033427595, 20.82599847071201]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.27364128877521, 21.130861117009847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.05413199086016, 23.058073292292104]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.28388468077954, 22.883779502221373]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.77696496688779, 18.94471042190279]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.23882701110625, 20.30184311650061]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.66116457836486, 20.169682381560182]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.90248833212131, 26.884383581357255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.28525543556775, 26.722194267296018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.8977221405959, 19.412558043465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.07684618758876, 27.17395724732544]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.41316964578398, 23.148029434777555]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.92622530551323, 25.623260952842156]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.2549851564484, 22.35997051326973]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.7199945397987, 25.802953128684692]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.96348979974654, 27.35814140608639]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.04921623428444, 20.61204095701038]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.54213379075634, 25.505384186492893]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.61403051800008, 17.263716566767037]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.25360192470616, 18.686705558388965]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.42930471321405, 20.022748677821312]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.44899512481147, 21.52626642668551]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.38761515683782, 18.77265726075554]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.12756391373203, 25.531641282912506]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.65487739464005, 20.270385418656613]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.44983759982364, 18.547000172845294]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.53680657077764, 25.303329199906706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.01712484014583, 24.449642983600107]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.86222771555597, 22.720569651349564]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.2520931858629, 25.53784765691357]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.60441825132624, 23.93129090727725]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.2164652385625, 25.79578750021983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.63151040609172, 24.490225688795583]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.51548817891319, 17.202270132332913]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.3121102967554, 25.956525827964448]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.27005222591032, 17.528372337434828]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.0823710181298, 25.482920857480014]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.75288708284614, 18.922685406247748]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.52847693811808, 24.220685835886385]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.42010129302429, 25.72860309981145]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.03682779147974, 27.053835982653894]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.67472974247343, 24.956264380693316]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.95315877653405, 18.41169388608788]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.57393282654176, 26.261024024692077]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.92845035818462, 17.837520858411256]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.5179339115434, 23.450627516507094]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.71943800617547, 19.616649637864654]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.93211879732236, 26.33170236314861]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.10661507770358, 25.13063963201959]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.24887371103026, 21.739851639014628]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.26129906562491, 21.294934204528648]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.2729878125471, 23.65784314034355]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.3562097070285, 24.24226765651852]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.99265814798184, 27.483971653923085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.63635988061537, 18.75973134353604]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.76340181762502, 26.57219504751686]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.45164209210782, 23.76673190659356]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.65455892791887, 27.186142540274957]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.03313564896565, 24.333750064476934]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.87222884039794, 19.159104199268683]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.54286133638129, 24.13575708893132]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.26242751330523, 20.472647289870025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.80042213720098, 20.990256802329768]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.5874725368364, 25.039930971231904]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.85825660840021, 25.43539990016023]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.17454776573982, 23.461743771248557]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.40002194939215, 20.67151202116478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.23963323045145, 23.244627904260923]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.81552101630216, 26.53756981389545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.9283270010284, 24.674017344728615]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.70000865367116, 21.542018533522416]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.48978633680683, 19.623096473871033]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.67175298435387, 17.880881534565148]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.04610391202878, 26.551597087996466]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.84175265531377, 16.85074369818602]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.95908129532202, 21.185424844181092]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.88684525321649, 18.726646021819167]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.15582212817301, 18.696902173553443]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.5644212682104, 20.850894115743387]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.37878622301193, 16.91615114076283]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.81019601780373, 17.165972386566605]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.4614226211491, 23.444082141644998]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.18265845716839, 25.295833894402776]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.09803657824347, 23.3454534216312]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.34448173717335, 17.84048983960788]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.18827115285569, 20.273168111170328]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.26216347689832, 23.673136982276464]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.21575485381635, 23.096925087889748]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.01908584146595, 21.557475862048076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.92274968888073, 26.019876080997598]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.55727606952377, 22.36430316761306]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.25891612041117, 19.525184281200534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.64279747070925, 25.651725881829897]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.40499501048518, 16.63021658406485]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.64998704253041, 24.234779530366744]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.30467012694315, 17.92521920364085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.76550387867614, 21.84873202139447]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.2770011073176, 26.540918581152965]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.20171143790367, 24.334344930797855]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.51391779937516, 18.211967578932978]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.81858154084357, 19.071318793255987]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.87897523658762, 22.009563011217917]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.17146072076018, 22.71145107992815]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.14138268439117, 27.295964747431004]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.01085563325441, 23.60461239295877]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.61068998466835, 21.311283807756645]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.76701891828932, 27.195861233372437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.55059712821668, 25.49682672225246]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.42534293525704, 20.342801196105015]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.85957138950651, 25.651916540759668]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.67260570784427, 20.45532583962798]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.81872422593077, 21.669857512462364]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.38646877459935, 19.37340763751337]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.50710379745864, 18.424063455433217]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.632893967135, 23.107454998460437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.36852553393699, 24.295072371424403]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.86140755178053, 17.50071319492512]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.56458486764306, 23.27787869671228]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.25719355261317, 18.841254641177088]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.79365159485565, 24.73837411446049]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.77110623794552, 22.880747711470292]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.17830942471453, 27.459109723499697]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.5062774214051, 17.326690422594897]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.19600112265177, 22.73914989583398]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.58173201222138, 23.850997885697698]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.71045285694422, 17.079742569860166]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.34171838085163, 22.153445077419946]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.55081810986574, 24.915158163291853]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.59793295622734, 18.75099342612817]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.14433438213305, 27.036543336370556]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.4434583942987, 19.619680064723546]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.51440928893466, 19.680938852916263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.95150377384275, 26.91911731157561]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.4550593256632, 24.03016205722427]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.8228436577642, 25.845318184468677]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.16769788043096, 16.98191521287846]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.51634149582756, 19.10937565092933]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.72446682780881, 22.25313981239625]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.95113454727932, 26.357292830184782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.89319872559254, 21.773847762169503]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.50995550468448, 26.805856081166645]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.72311173060332, 27.453459491416243]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.20796912251339, 16.910765069076696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.02923748665658, 17.06286092924691]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.67236850288222, 19.00571371998642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.43657840692077, 17.42104681957319]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.48932636312891, 18.050155326157473]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.76206658518934, 23.71467590682046]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.46253580071742, 22.833272724615775]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.09703651590019, 17.421833037838393]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.61013158110691, 23.65729956086801]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.66397149031135, 25.831969038126523]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.1727623444978, 24.152605040309613]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.2741188221817, 18.639289071153634]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.90735829536999, 18.190052908059194]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.32489553257798, 19.57470756961103]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.01326798044877, 24.122014119489563]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.52731994000185, 26.95480013106508]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.3558896446572, 17.44256116852827]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.02534851234576, 16.756254338847338]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.47025910061983, 24.118620545794855]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.308362589921, 20.54596248507216]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.34538728645822, 24.41450380344747]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.33122422882889, 23.37013167679639]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.27561331569953, 16.994251063813262]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.86851913822156, 25.81027224474102]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.24173363419717, 24.34323106176321]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.84877351272029, 26.92445686110058]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.71160840330522, 21.77620359204627]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.20296576353552, 21.709322849932395]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.04325753495058, 24.349990861490674]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.01507615292597, 18.68916636419406]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.98455859943033, 21.06707023138771]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.40609968225364, 21.87541299401925]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.66122425689909, 19.364456854255717]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.2600583537702, 21.659164464794838]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.73592652087561, 17.55179712679042]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.80434002543046, 18.311428726658654]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.89936609149818, 27.20566948335109]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.9153275956025, 22.728686372271056]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.22442161042382, 20.946470968784404]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.23254193941007, 26.262181726505418]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.62437731409852, 19.781049107501957]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.49173903601617, 16.92003208241821]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.25829317577141, 21.827114782054075]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.65532298324348, 17.29988957265243]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.3453947248687, 24.50576556423695]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.37506450657898, 16.711071194315227]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.42569161383636, 21.026826554775827]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.43791743989885, 24.962432920525124]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.84458598730575, 23.70594482686843]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.37848518046901, 26.34378098000883]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.13497764736996, 17.934013939878078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.54709582459233, 16.53706271986311]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.17844562558024, 23.80702766062598]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.64984925794586, 27.17403653643745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.89153777133139, 23.170952976617727]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.93875091618717, 25.00047089937265]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.9102252552082, 23.883340808622673]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.45068182631776, 24.018640243238202]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.56517209188608, 24.748894301890655]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.41470444523833, 26.791071724795167]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.27546806320538, 24.62810216606337]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.37798026966385, 22.800554127763526]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.67038090634749, 19.518488261229543]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.51124408675949, 18.95091920687403]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.72209650039468, 24.280447748568445]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.28434198674468, 17.20571626766068]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.15681636726895, 26.828785859624258]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.11344269598334, 17.666989151972253]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.96994176238145, 22.888540550894795]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.50079368006108, 26.634382308937134]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.54280695688689, 23.237868840297253]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.59204571681656, 24.786873137315194]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.01377215866017, 18.936419309424537]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.01405131484972, 18.581612310870824]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.6420973159142, 18.58453117274099]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.74759623801513, 26.12337676616272]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.05313261324237, 19.319796400696145]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.13970036126891, 17.506087557394512]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.75848457074353, 21.115370497855984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.16830971446066, 24.6894321007414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.21048541308969, 17.919231608494442]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.97637737411591, 23.150822409149665]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.98806643205722, 18.733700354050203]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.73009496457921, 23.7983464395302]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.21686530340585, 18.59063554310776]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.94846192062774, 19.236367113472895]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.97783503664645, 19.823228188109127]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.31384918144222, 22.633190689556994]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.49404471100601, 22.009751251682275]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.1270341028659, 25.781532521957693]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.51950761862354, 23.496329401717578]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.67344643947845, 20.92896756107965]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.28006204700529, 18.638001663502685]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.33788518686183, 24.089777622921456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.03458096249997, 22.65764273416216]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.80104984355006, 26.237062559189845]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.21242542631086, 20.177739085659635]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.38674449250746, 17.652491491363605]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.93734071291428, 23.99085830463023]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.20251485577793, 26.55556740273682]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.73360568748585, 26.28033941085063]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.13262960963559, 22.34430874872904]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.54532805510269, 17.55045667323678]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.80026818559628, 18.561998669158292]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.28628835491551, 19.571063802546057]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.58131591277606, 24.21369712743759]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.88085722918547, 19.753718721210948]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.64966522234937, 20.677188588895476]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.24840889524553, 19.69712523257967]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.96400931937723, 18.174770180214516]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.70189850382681, 16.534625567595363]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.810090294371, 25.23156636266861]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.17536572906562, 19.792647657345]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.79193518864761, 24.737897659493715]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.93555696939467, 19.98152959915939]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.21354373461136, 25.88846335275895]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.32534041974515, 26.094983944812824]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.97472021053458, 26.061373986456793]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.84081911742697, 23.793624669453152]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.24844766066971, 24.484245781333726]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.90249827777127, 22.05793250583984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.07748325170441, 27.337367361375666]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.52285998029147, 17.487274302366117]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.81251634431071, 20.933095236667395]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.58692805675213, 24.80146814851551]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.47378831903654, 21.652685460023044]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.70162022475394, 19.229694616459863]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.78777310048918, 23.92218146021364]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.80552346807535, 22.161467782172014]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.55667427680913, 22.171811135508918]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.49928602385201, 27.41608769703238]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.34842284656386, 17.435895054282373]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.21228170738233, 22.173670632023597]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.90881672418563, 21.468642424655155]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.56477901274141, 23.02518524523849]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.43974652662247, 22.60413987147912]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.5883411017305, 19.917932537792794]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.35881511009039, 19.09687830115208]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.72145863838075, 25.18049472134159]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.95694749118951, 27.39255408553263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.44936060272309, 27.49130192814892]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.61820042082097, 23.049137776556364]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.10989174097693, 18.469712160553517]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.379040540202, 20.37524788330293]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.51495780456581, 16.669087042407536]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.10886304098058, 16.8269149948045]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.72560883757795, 16.962762773864505]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.89333076284501, 24.384990740752006]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.59332944904146, 24.120911542546878]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.42817901090537, 17.74846475203746]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.89833899459296, 19.72230811960007]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.98171564844314, 21.140743955694063]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.99706809934376, 18.63550290606603]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.13208804398411, 19.266357159361213]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.44208974284808, 18.89754661420165]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.67095396405709, 17.953443362949123]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.61949782551551, 25.38069882274378]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.82927583009545, 18.920544836399152]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.71898403700982, 22.858679743400074]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.05832892131573, 25.244587077548168]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.53486708882008, 18.05579400531109]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.3189432679756, 20.059875630170964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.96213190737039, 26.279325304846623]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.44927404052561, 17.791447001826654]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.39338327111777, 24.626502743687922]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.58570795493182, 25.546633692923525]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.83961825329554, 25.484747617185402]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.87200031832714, 23.66114743521159]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.83487262625073, 20.095259588587723]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.91640675333899, 16.590848739189624]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.30245460933854, 19.23352889608482]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.14994486721066, 20.53183273996738]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.80521037357039, 21.252980629644455]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.8787989831883, 18.218515429796344]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.76978734183139, 17.7977450107505]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.80371392928168, 26.040116775073876]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.95744087420283, 25.191234441288678]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.77674346051477, 21.375540465284374]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.29292929991102, 21.98589295297564]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.66745422227388, 26.168091294302087]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.92295434812097, 23.30372425686007]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.96026394085236, 25.51392205303288]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.43164354544895, 17.413235272364112]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.28566063654243, 18.482281406816814]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.18586938186745, 27.019278441405643]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.00665657564603, 18.009509829132515]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.78174587415, 25.852826126614094]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.17395695535176, 20.322052935788367]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.75631134659818, 27.4074383447763]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.30133416063728, 22.908999108726512]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.5468209860248, 25.79011427888136]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.50335139484208, 25.338279000551893]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.85611159709538, 24.40263258506802]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.19143746995799, 22.76299900389558]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.49961985245375, 23.749896556565293]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.93434205722116, 17.8751516982336]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.47725300277814, 20.834238692742822]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.40866406564102, 24.65588369863437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.23086732338659, 22.010870880797054]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.55598541988493, 23.62640751670331]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.067479899787, 22.44918038801505]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.5723788030903, 23.774277575000852]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.68634851848167, 23.203154689599817]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.97302399035408, 22.395504699565535]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.47937906764957, 24.839570106333433]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.63060572237521, 22.939370867570908]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.28374988273468, 16.800162341500304]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.01980255637385, 21.18954858284259]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.80981841825783, 16.752970728846513]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.0632043924848, 17.78197939775129]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.31937806169958, 16.63036465541673]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.51362280935948, 19.07306061464646]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.6462554841785, 18.765258635070385]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.90737511126233, 25.663681166863604]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.3184598837461, 20.339708336838683]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.25614050898571, 20.47865304539995]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.05273739031475, 27.278196207610172]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.57090751033381, 25.058967866824403]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.72044789264216, 17.86742294760512]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.45286775268717, 27.264956115483226]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.46924741699405, 22.27588495796526]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.2743504888918, 26.691822644671085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.18119091611597, 24.755151867045228]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.9753411638257, 22.736683695999382]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.17815192274419, 17.766464076510605]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.79951671731996, 16.979753651505465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.81530228240368, 21.899431865794316]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.15292492090326, 18.519443297834165]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.11308732341453, 22.73505946813462]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.00830955618024, 21.885311144830727]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.54728340532579, 17.713742740545893]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.53755328892348, 25.323104677883705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.68105867358958, 27.21289905396955]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.96411774831036, 22.888644254222072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.98170526139158, 20.98332034823357]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.56755786305595, 19.40265705295205]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.9097441614737, 25.69899354986159]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.8522033753837, 16.57371866969067]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.59048812893998, 22.36793387394907]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.69797232502891, 17.49676706923224]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.4273474590883, 20.29560385897871]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.75702086888295, 18.06842605714349]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.93509999305662, 24.197922897145702]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.59056449409796, 17.249155158477635]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.04442014558218, 20.180967527569678]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.37084983049334, 18.874173436903888]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.56890381178304, 24.88700194600341]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.06300053256552, 25.068476848998436]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.07431215190033, 23.634255220677876]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.97261043138833, 20.783569456567577]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.69220087076908, 23.99722100792555]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.28624765409677, 19.684275914963393]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.26371632117386, 23.468899954784128]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.64211828010676, 22.535063069435896]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.76720344494535, 17.95425416674962]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.84949687526881, 23.882703836621122]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.51599855499506, 22.18056139559293]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.0586637697147, 22.618118595420675]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.82988603140993, 22.75446266986306]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.10048201961024, 21.361849810266136]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.04153303125153, 20.350657127526738]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.59504589774306, 27.064096554971023]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.07548891214728, 17.301084891511273]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.33158765668573, 19.452979509754268]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.81854336800883, 24.131395375394586]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.684418563593, 21.47654476359144]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.00730697784353, 25.897847636990367]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.40829350874473, 27.268125557919248]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 15,\n        \"centroid\": [-79.95661302836459, 19.68004339959817],\n        \"marker-color\": \"#005fff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.2707934048482, 20.982305048038683]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.38809337052642, 26.427105032557755]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.0134734724832, 25.13419607033201]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.17642686622017, 25.221069930712087]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.71994017762563, 20.189025977120103]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.29187361259146, 27.392240106344147]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.79976558388476, 20.035863120368496]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.3275873181896, 23.43075879262019]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.30217792473226, 22.66331518976522]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.02504204870841, 18.793197099411397]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.96796993174219, 24.703657172369798]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.41505346819054, 25.017559911985607]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.287484618002, 19.75003759357949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.25519670513809, 19.980973614544432]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.3831207434748, 20.990164116130572]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.30367109087219, 25.1900948213395]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.33929483454432, 17.79933711363019]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.3072622609112, 19.064713633397105]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.09464045072042, 16.867824298530778]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.01339730011378, 25.682665424232965]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.74959288173342, 17.47999904710256]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.95625724719481, 26.53239538653403]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.95900351362758, 26.964513550251407]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.22624323598141, 17.943008474474265]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.14342020536195, 18.867794740406104]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.61849018164143, 22.47855670455455]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-85.22273916681061, 18.11205670884361],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.7861071942679, 18.669738072373164]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.00369227814197, 24.612757650509216]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 4,\n        \"centroid\": [-72.1036518524473, 21.632139370868533],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.77138891405684, 20.81044983619232]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.89623600838752, 19.396975077838288]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.40595166597085, 26.80155978434455]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.80825302190365, 23.35316310450464]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 9,\n        \"centroid\": [-83.28970527419875, 25.03901137331529],\n        \"marker-color\": \"#9fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.96259557904392, 24.196187792487656]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.08863800575135, 25.15698262014013]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.75695759804495, 20.08490410319372]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.42234796309599, 26.22301149374214]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 5,\n        \"centroid\": [-74.59772375968392, 26.040657608812058],\n        \"marker-color\": \"#ff001e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.26218882048389, 26.41236152098589]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.87135659444625, 17.56355668256735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.49722908932829, 21.926256397875694]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.7096594822639, 24.460836562368442]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 7,\n        \"centroid\": [-71.60386443367564, 25.68144722581964],\n        \"marker-color\": \"#ff9f00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.09304190552334, 27.42090911618883]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.0243253011326, 17.45098074087971]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 11,\n        \"centroid\": [-74.87813096725604, 19.051404705480532],\n        \"marker-color\": \"#00ff20\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.25880876997459, 18.567348945414572]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.15374231895991, 19.572527461376602]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.90718745331596, 18.01378466658022]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-82.07389862745148, 18.10014805204155],\n        \"marker-color\": \"#ff00de\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.3932989046418, 19.030002383084067]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.56289580127358, 23.7331334661265]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 8,\n        \"centroid\": [-74.65884587304036, 23.14443612672486],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.32615130900722, 23.22949976202878]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 10,\n        \"centroid\": [-81.67819501734249, 22.456058950791007],\n        \"marker-color\": \"#3fff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.32932140159735, 21.369086228743924]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-77.80959890542613, 23.062586927512516],\n        \"marker-color\": \"#bf00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.40761927871347, 22.617986414434352]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.6909951062254, 17.986704731304503]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 12,\n        \"centroid\": [-77.46953467512287, 17.829026800774887],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.38990946382116, 17.402709176906622]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-85.201027549492, 21.346638923038203],\n        \"marker-color\": \"#5f00ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.59495181641225, 22.81831350748234]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.38487102139864, 26.08247375588085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 14,\n        \"centroid\": [-85.66057622205204, 25.309521790657058],\n        \"marker-color\": \"#00beff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.86031632408672, 24.23389023003475]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 6,\n        \"centroid\": [-78.71931668447289, 26.441283306379056],\n        \"marker-color\": \"#ff4000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.76905431857912, 27.471768557404076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 13,\n        \"centroid\": [-71.88949473129752, 18.220552149539706],\n        \"marker-color\": \"#00ffe0\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.43945965828523, 18.638609876647752]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#000080\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.22273916681061, 18.11205670884361]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#000080\",\n        \"stroke\": \"#000080\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.16769788043096, 16.98191521287846],\n            [-86.07548891214728, 17.301084891511273],\n            [-86.58330318049086, 18.09915952726896],\n            [-86.21686530340585, 18.59063554310776],\n            [-86.01507615292597, 18.68916636419406],\n            [-86.02504204870841, 18.793197099411397],\n            [-86.56755786305595, 19.40265705295205],\n            [-86.05313261324237, 19.319796400696145],\n            [-85.67038090634749, 19.518488261229543],\n            [-84.36337554761008, 19.119473770547124],\n            [-84.33158765668573, 19.452979509754268],\n            [-83.71943800617547, 19.616649637864654],\n            [-83.7861071942679, 18.669738072373164],\n            [-84.50710379745864, 18.424063455433217],\n            [-84.51391779937516, 18.211967578932978],\n            [-84.81019601780373, 17.165972386566605],\n            [-84.71045285694422, 17.079742569860166],\n            [-84.28985709132587, 16.584015683001546],\n            [-84.91640675333899, 16.590848739189624],\n            [-85.54709582459233, 16.53706271986311],\n            [-86.16769788043096, 16.98191521287846]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#2f0080\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.201027549492, 21.346638923038203]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#2f0080\",\n        \"stroke\": \"#2f0080\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.287484618002, 19.75003759357949],\n            [-86.71994017762563, 20.189025977120103],\n            [-85.98455859943033, 21.06707023138771],\n            [-85.95908129532202, 21.185424844181092],\n            [-86.26129906562491, 21.294934204528648],\n            [-86.40609968225364, 21.87541299401925],\n            [-86.55727606952377, 22.36430316761306],\n            [-85.61849018164143, 22.47855670455455],\n            [-85.2549851564484, 22.35997051326973],\n            [-84.96994176238145, 22.888540550894795],\n            [-84.59495181641225, 22.81831350748234],\n            [-84.31384918144222, 22.633190689556994],\n            [-84.19143746995799, 22.76299900389558],\n            [-83.70000865367116, 21.542018533522416],\n            [-83.44899512481147, 21.52626642668551],\n            [-83.26242751330523, 20.472647289870025],\n            [-84.42534293525704, 20.342801196105015],\n            [-84.48717976822758, 20.224242981590255],\n            [-85.93555696939467, 19.98152959915939],\n            [-86.287484618002, 19.75003759357949]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#5f0080\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.80959890542613, 23.062586927512516]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#5f0080\",\n        \"stroke\": \"#5f0080\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.46924741699405, 22.27588495796526],\n            [-79.43974652662247, 22.60413987147912],\n            [-79.07431215190033, 23.634255220677876],\n            [-79.26216347689832, 23.673136982276464],\n            [-79.60441825132624, 23.93129090727725],\n            [-79.01326798044877, 24.122014119489563],\n            [-78.9102252552082, 23.883340808622673],\n            [-78.20462326614003, 24.00357261039075],\n            [-77.54286133638129, 24.13575708893132],\n            [-77.4550593256632, 24.03016205722427],\n            [-77.20171143790367, 24.334344930797855],\n            [-77.24844766066971, 24.484245781333726],\n            [-77.18119091611597, 24.755151867045228],\n            [-76.3453947248687, 24.50576556423695],\n            [-76.45068182631776, 24.018640243238202],\n            [-76.58173201222138, 23.850997885697698],\n            [-76.76206658518934, 23.71467590682046],\n            [-76.68634851848167, 23.203154689599817],\n            [-76.41316964578398, 23.148029434777555],\n            [-76.40761927871347, 22.617986414434352],\n            [-76.49404471100601, 22.009751251682275],\n            [-76.61068998466835, 21.311283807756645],\n            [-77.5644212682104, 20.850894115743387],\n            [-77.92734033427595, 20.82599847071201],\n            [-78.49722908932829, 21.926256397875694],\n            [-78.89319872559254, 21.773847762169503],\n            [-78.87897523658762, 22.009563011217917],\n            [-79.46924741699405, 22.27588495796526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#80006e\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.07389862745148, 18.10014805204155]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#80006e\",\n        \"stroke\": \"#80006e\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.34448173717335, 17.84048983960788],\n            [-83.28006204700529, 18.638001663502685],\n            [-83.3932989046418, 19.030002383084067],\n            [-83.32489553257798, 19.57470756961103],\n            [-82.97783503664645, 19.823228188109127],\n            [-82.51440928893466, 19.680938852916263],\n            [-81.8977221405959, 19.412558043465],\n            [-81.25719355261317, 18.841254641177088],\n            [-81.14342020536195, 18.867794740406104],\n            [-81.15582212817301, 18.696902173553443],\n            [-80.67095396405709, 17.953443362949123],\n            [-80.52285998029147, 17.487274302366117],\n            [-80.27561331569953, 16.994251063813262],\n            [-81.02534851234576, 16.756254338847338],\n            [-81.51495780456581, 16.669087042407536],\n            [-81.72560883757795, 16.962762773864505],\n            [-82.20796912251339, 16.910765069076696],\n            [-82.5062774214051, 17.326690422594897],\n            [-83.09703651590019, 17.421833037838393],\n            [-83.17815192274419, 17.766464076510605],\n            [-83.33929483454432, 17.79933711363019],\n            [-83.34448173717335, 17.84048983960788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#80003e\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.1036518524473, 21.632139370868533]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#80003e\",\n        \"stroke\": \"#80003e\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.57808400285332, 20.00051975393173],\n            [-73.17395695535176, 20.322052935788367],\n            [-73.3184598837461, 20.339708336838683],\n            [-72.97261043138833, 20.783569456567577],\n            [-72.80042213720098, 20.990256802329768],\n            [-73.24887371103026, 21.739851639014628],\n            [-72.90249827777127, 22.05793250583984],\n            [-72.97302399035408, 22.395504699565535],\n            [-72.71898403700982, 22.858679743400074],\n            [-72.46253580071742, 22.833272724615775],\n            [-72.3275873181896, 23.43075879262019],\n            [-71.89153777133139, 23.170952976617727],\n            [-71.56458486764306, 23.27787869671228],\n            [-71.30133416063728, 22.908999108726512],\n            [-71.17146072076018, 22.71145107992815],\n            [-70.8076846951252, 22.255910609327792],\n            [-70.81872422593077, 21.669857512462364],\n            [-70.94492705924428, 21.0702981386651],\n            [-71.22442161042382, 20.946470968784404],\n            [-71.23882701110625, 20.30184311650061],\n            [-72.04442014558218, 20.180967527569678],\n            [-72.57808400285332, 20.00051975393173]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#80000e\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.59772375968392, 26.040657608812058]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#80000e\",\n        \"stroke\": \"#80000e\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.39338327111777, 24.626502743687922],\n            [-75.43791743989885, 24.962432920525124],\n            [-75.54213379075634, 25.505384186492893],\n            [-76.57090751033381, 25.058967866824403],\n            [-76.50335139484208, 25.338279000551893],\n            [-76.55059712821668, 25.49682672225246],\n            [-76.26218882048389, 26.41236152098589],\n            [-75.40829350874473, 27.268125557919248],\n            [-74.75631134659818, 27.4074383447763],\n            [-74.14433438213305, 27.036543336370556],\n            [-74.07684618758876, 27.17395724732544],\n            [-73.77643699392496, 27.091684659861052],\n            [-73.76701891828932, 27.195861233372437],\n            [-73.14138268439117, 27.295964747431004],\n            [-73.38809337052642, 26.427105032557755],\n            [-73.64279747070925, 25.651725881829897],\n            [-73.30367109087219, 25.1900948213395],\n            [-73.58692805675213, 24.80146814851551],\n            [-73.79193518864761, 24.737897659493715],\n            [-73.79365159485565, 24.73837411446049],\n            [-75.39338327111777, 24.626502743687922]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#802000\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.71931668447289, 26.441283306379056]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#802000\",\n        \"stroke\": \"#802000\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.72145863838075, 25.18049472134159],\n            [-80.39732218872196, 25.629464613691137],\n            [-80.23254193941007, 26.262181726505418],\n            [-81.15681636726895, 26.828785859624258],\n            [-80.96348979974654, 27.35814140608639],\n            [-80.76905431857912, 27.471768557404076],\n            [-79.99265814798184, 27.483971653923085],\n            [-79.18586938186745, 27.019278441405643],\n            [-78.89936609149818, 27.20566948335109],\n            [-78.17830942471453, 27.459109723499697],\n            [-77.95694749118951, 27.39255408553263],\n            [-77.65455892791887, 27.186142540274957],\n            [-77.64984925794586, 27.17403653643745],\n            [-76.68105867358958, 27.21289905396955],\n            [-77.41470444523833, 26.791071724795167],\n            [-77.20251485577793, 26.55556740273682],\n            [-76.96213190737039, 26.279325304846623],\n            [-77.05832892131573, 25.244587077548168],\n            [-77.61949782551551, 25.38069882274378],\n            [-78.55079764304975, 25.525431992772358],\n            [-78.97472021053458, 26.061373986456793],\n            [-79.32534041974515, 26.094983944812824],\n            [-79.3121102967554, 25.956525827964448],\n            [-79.5468209860248, 25.79011427888136],\n            [-80.04325753495058, 24.349990861490674],\n            [-80.72145863838075, 25.18049472134159]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#805000\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.60386443367564, 25.68144722581964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#805000\",\n        \"stroke\": \"#805000\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.9283270010284, 24.674017344728615],\n            [-72.92622530551323, 25.623260952842156],\n            [-72.95113454727932, 26.357292830184782],\n            [-72.76340181762502, 26.57219504751686],\n            [-72.72311173060332, 27.453459491416243],\n            [-71.09304190552334, 27.42090911618883],\n            [-70.84877351272029, 26.92445686110058],\n            [-71.11420407247648, 26.113452348786268],\n            [-70.80371392928168, 26.040116775073876],\n            [-70.78174587415, 25.852826126614094],\n            [-70.58570795493182, 25.546633692923525],\n            [-70.67472974247343, 24.956264380693316],\n            [-70.7096594822639, 24.460836562368442],\n            [-71.72209650039468, 24.280447748568445],\n            [-71.78777310048918, 23.92218146021364],\n            [-72.59204571681656, 24.786873137315194],\n            [-72.9283270010284, 24.674017344728615]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#808000\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.65884587304036, 23.14443612672486]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#808000\",\n        \"stroke\": \"#808000\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.90881672418563, 21.468642424655155],\n            [-75.55667427680913, 22.171811135508918],\n            [-75.64211828010676, 22.535063069435896],\n            [-76.03458096249997, 22.65764273416216],\n            [-75.4614226211491, 23.444082141644998],\n            [-75.84458598730575, 23.70594482686843],\n            [-75.89333076284501, 24.384990740752006],\n            [-75.34538728645822, 24.41450380344747],\n            [-74.69220087076908, 23.99722100792555],\n            [-74.05488356732162, 24.111641311913072],\n            [-73.93734071291428, 23.99085830463023],\n            [-73.59332944904146, 24.120911542546878],\n            [-73.73009496457921, 23.7983464395302],\n            [-73.54280695688689, 23.237868840297253],\n            [-73.23963323045145, 23.244627904260923],\n            [-73.81530228240368, 21.899431865794316],\n            [-74.27364128877521, 21.130861117009847],\n            [-74.71160840330522, 21.77620359204627],\n            [-75.90881672418563, 21.468642424655155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#4f8000\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.28970527419875, 25.03901137331529]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#4f8000\",\n        \"stroke\": \"#4f8000\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-84.09803657824347, 23.3454534216312],\n            [-84.5179339115434, 23.450627516507094],\n            [-84.47025910061983, 24.118620545794855],\n            [-84.41505346819054, 25.017559911985607],\n            [-84.2520931858629, 25.53784765691357],\n            [-84.21354373461136, 25.88846335275895],\n            [-83.74759623801513, 26.12337676616272],\n            [-83.40595166597085, 26.80155978434455],\n            [-83.07748325170441, 27.337367361375666],\n            [-82.45286775268717, 27.264956115483226],\n            [-82.50995550468448, 26.805856081166645],\n            [-82.13081869539506, 26.23449839991876],\n            [-81.56890381178304, 24.88700194600341],\n            [-81.40866406564102, 24.65588369863437],\n            [-82.27546806320538, 24.62810216606337],\n            [-82.3562097070285, 24.24226765651852],\n            [-83.2729878125471, 23.65784314034355],\n            [-83.55598541988493, 23.62640751670331],\n            [-84.09803657824347, 23.3454534216312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#1f8000\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.67819501734249, 22.456058950791007]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#1f8000\",\n        \"stroke\": \"#1f8000\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-82.80521037357039, 21.252980629644455],\n            [-82.684418563593, 21.47654476359144],\n            [-83.00830955618024, 21.885311144830727],\n            [-82.86222771555597, 22.720569651349564],\n            [-82.56477901274141, 23.02518524523849],\n            [-82.17844562558024, 23.80702766062598],\n            [-80.93509999305662, 24.197922897145702],\n            [-80.45164209210782, 23.76673190659356],\n            [-80.37798026966385, 22.800554127763526],\n            [-80.19600112265177, 22.73914989583398],\n            [-79.76550387867614, 21.84873202139447],\n            [-80.55680807421967, 21.907870183116437],\n            [-81.3831207434748, 20.990164116130572],\n            [-81.98171564844314, 21.140743955694063],\n            [-82.80521037357039, 21.252980629644455]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#008010\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.87813096725604, 19.051404705480532]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#008010\",\n        \"stroke\": \"#008010\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.18027511981438, 18.875894880366534],\n            [-76.30245460933854, 19.23352889608482],\n            [-76.62437731409852, 19.781049107501957],\n            [-76.379040540202, 20.37524788330293],\n            [-75.98170526139158, 20.98332034823357],\n            [-75.75695759804495, 20.08490410319372],\n            [-75.4273474590883, 20.29560385897871],\n            [-75.21242542631086, 20.177739085659635],\n            [-75.18827115285569, 20.273168111170328],\n            [-75.04153303125153, 20.350657127526738],\n            [-74.64966522234937, 20.677188588895476],\n            [-73.67260570784427, 20.45532583962798],\n            [-73.65487739464005, 20.270385418656613],\n            [-73.70162022475394, 19.229694616459863],\n            [-73.75288708284614, 18.922685406247748],\n            [-73.59793295622734, 18.75099342612817],\n            [-73.73592652087561, 17.55179712679042],\n            [-74.37506450657898, 16.711071194315227],\n            [-74.8522033753837, 16.57371866969067],\n            [-75.10886304098058, 16.8269149948045],\n            [-75.0632043924848, 17.78197939775129],\n            [-75.48932636312891, 18.050155326157473],\n            [-75.75702086888295, 18.06842605714349],\n            [-76.18027511981438, 18.875894880366534]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#008040\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.46953467512287, 17.829026800774887]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#008040\",\n        \"stroke\": \"#008040\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-77.65357594791968, 16.66838838845727],\n            [-77.84175265531377, 16.85074369818602],\n            [-77.79951671731996, 16.979753651505465],\n            [-78.28434198674468, 17.20571626766068],\n            [-78.51548817891319, 17.202270132332913],\n            [-79.13970036126891, 17.506087557394512],\n            [-79.27005222591032, 17.528372337434828],\n            [-78.93434205722116, 17.8751516982336],\n            [-78.28566063654243, 18.482281406816814],\n            [-78.25360192470616, 18.686705558388965],\n            [-77.99706809934376, 18.63550290606603],\n            [-77.51634149582756, 19.10937565092933],\n            [-77.28628835491551, 19.571063802546057],\n            [-77.25519670513809, 19.980973614544432],\n            [-77.17536572906562, 19.792647657345],\n            [-77.01405131484972, 18.581612310870824],\n            [-77.10989174097693, 18.469712160553517],\n            [-76.80434002543046, 18.311428726658654],\n            [-76.54532805510269, 17.55045667323678],\n            [-76.11344269598334, 17.666989151972253],\n            [-75.86140755178053, 17.50071319492512],\n            [-76.0243253011326, 17.45098074087971],\n            [-76.38990946382116, 17.402709176906622],\n            [-76.70189850382681, 16.534625567595363],\n            [-76.80981841825783, 16.752970728846513],\n            [-77.28374988273468, 16.800162341500304],\n            [-77.40499501048518, 16.63021658406485],\n            [-77.65357594791968, 16.66838838845727]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#008070\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-71.88949473129752, 18.220552149539706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#008070\",\n        \"stroke\": \"#008070\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70.59056449409796, 17.249155158477635],\n            [-71.3558896446572, 17.44256116852827],\n            [-71.43164354544895, 17.413235272364112],\n            [-71.65532298324348, 17.29988957265243],\n            [-72.02923748665658, 17.06286092924691],\n            [-73.31937806169958, 16.63036465541673],\n            [-72.99075803676163, 17.651929487468298],\n            [-73.21048541308969, 17.919231608494442],\n            [-73.01377215866017, 18.936419309424537],\n            [-72.66122425689909, 19.364456854255717],\n            [-72.15374231895991, 19.572527461376602],\n            [-71.89833899459296, 19.72230811960007],\n            [-70.89623600838752, 19.396975077838288],\n            [-70.63635988061537, 18.75973134353604],\n            [-70.80026818559628, 18.561998669158292],\n            [-70.76720344494535, 17.95425416674962],\n            [-70.59056449409796, 17.249155158477635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#005e80\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-85.66057622205204, 25.309521790657058]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#005e80\",\n        \"stroke\": \"#005e80\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.84081911742697, 23.793624669453152],\n            [-86.84949687526881, 23.882703836621122],\n            [-86.96796993174219, 24.703657172369798],\n            [-86.55081810986574, 24.915158163291853],\n            [-86.57393282654176, 26.261024024692077],\n            [-86.95625724719481, 26.53239538653403],\n            [-86.59504589774306, 27.064096554971023],\n            [-85.49928602385201, 27.41608769703238],\n            [-85.29187361259146, 27.392240106344147],\n            [-84.44936060272309, 27.49130192814892],\n            [-84.66397149031135, 25.831969038126523],\n            [-84.85957138950651, 25.651916540759668],\n            [-84.90737511126233, 25.663681166863604],\n            [-84.98702719224296, 25.275001495112985],\n            [-85.0134734724832, 25.13419607033201],\n            [-84.63151040609172, 24.490225688795583],\n            [-84.85611159709538, 24.40263258506802],\n            [-84.86031632408672, 24.23389023003475],\n            [-85.24173363419717, 24.34323106176321],\n            [-85.51950761862354, 23.496329401717578],\n            [-86.17454776573982, 23.461743771248557],\n            [-86.84081911742697, 23.793624669453152]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#002f80\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.95661302836459, 19.68004339959817]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#002f80\",\n        \"stroke\": \"#002f80\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.13208804398411, 19.266357159361213],\n            [-81.28624765409677, 19.684275914963393],\n            [-80.81251634431071, 20.933095236667395],\n            [-80.47725300277814, 20.834238692742822],\n            [-80.2707934048482, 20.982305048038683],\n            [-80.22266857015823, 20.94137638968897],\n            [-79.77674346051477, 21.375540465284374],\n            [-79.25614050898571, 20.47865304539995],\n            [-78.83487262625073, 20.095259588587723],\n            [-78.5883411017305, 19.917932537792794],\n            [-78.4434583942987, 19.619680064723546],\n            [-78.88684525321649, 18.726646021819167],\n            [-79.43898229878118, 18.874231952472687],\n            [-80.15292492090326, 18.519443297834165],\n            [-79.96400931937723, 18.174770180214516],\n            [-80.00665657564603, 18.009509829132515],\n            [-80.6420973159142, 18.58453117274099],\n            [-81.13208804398411, 19.266357159361213]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-kmeans/test/out/points-with-properties.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 1,\n        \"cluster\": 0,\n        \"centroid\": [68.682861328125, -48.87431385568385],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [68.477783203125, -48.84302835299516]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 2,\n        \"cluster\": 0,\n        \"centroid\": [68.682861328125, -48.87431385568385],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [68.873291015625, -48.821332549646634]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 3,\n        \"cluster\": 0,\n        \"centroid\": [68.682861328125, -48.87431385568385],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [68.69750976562499, -48.958580664409766]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 4,\n        \"cluster\": 1,\n        \"centroid\": [71.4111328125, -49.29389258186046],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [70.87280273437499, -49.418120700666414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 5,\n        \"cluster\": 1,\n        \"centroid\": [71.4111328125, -49.29389258186046],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [71.949462890625, -49.36091154712616]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": 6,\n        \"cluster\": 1,\n        \"centroid\": [71.4111328125, -49.29389258186046],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [71.4111328125, -49.102645497788814]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#000080\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [68.682861328125, -48.87431385568385]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#000080\",\n        \"stroke\": \"#000080\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [68.69750976562499, -48.958580664409766],\n            [68.477783203125, -48.84302835299516],\n            [68.873291015625, -48.821332549646634],\n            [68.69750976562499, -48.958580664409766]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#808000\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [71.4111328125, -49.29389258186046]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#808000\",\n        \"stroke\": \"#808000\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [71.949462890625, -49.36091154712616],\n            [70.87280273437499, -49.418120700666414],\n            [71.4111328125, -49.102645497788814],\n            [71.949462890625, -49.36091154712616]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-kmeans/test/out/points1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-82.3114013671875, 23.093189398632948],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.46337890625, 23.059516273509303]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-82.3114013671875, 23.093189398632948],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.353515625, 23.120153621695614]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-82.3114013671875, 23.093189398632948],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.36450195312499, 23.074678175027337]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-82.3114013671875, 23.093189398632948],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.19970703125, 23.221154981846556]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-82.3114013671875, 23.093189398632948],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.19970703125, 23.089838367476705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-82.3114013671875, 23.093189398632948],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.28759765625, 22.99379497224218]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-75.81596374511719, 20.06558308561739],\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.8551025390625, 20.035289711352377]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-75.81596374511719, 20.06558308561739],\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6683349609375, 20.128155311797183]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-75.81596374511719, 20.06558308561739],\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.73974609375, 20.122997556207757]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-75.81596374511719, 20.06558308561739],\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6683349609375, 20.030128899024707]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-75.81596374511719, 20.06558308561739],\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80017089843749, 20.040450354169483]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-75.81596374511719, 20.06558308561739],\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.0089111328125, 20.226120295836992]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-75.81596374511719, 20.06558308561739],\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.0308837890625, 19.926877111209265]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-75.81596374511719, 20.06558308561739],\n        \"marker-color\": \"#00ff01\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.7562255859375, 20.014645445341365]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-80.44267926897321, 22.122696498115662],\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.46936035156249, 22.070368801349257]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-80.44267926897321, 22.122696498115662],\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.34027099609375, 22.2026634080092]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-80.44267926897321, 22.122696498115662],\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.35675048828125, 22.12126604542578]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-80.44267926897321, 22.122696498115662],\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.43914794921875, 22.271305748177635]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-80.44267926897321, 22.122696498115662],\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.38970947265625, 22.021999432851782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-80.44267926897321, 22.122696498115662],\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.55999755859375, 22.118721619281263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-80.44267926897321, 22.122696498115662],\n        \"marker-color\": \"#ff0000\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.54351806640625, 22.0525504317147]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#000080\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.3114013671875, 23.093189398632948]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#000080\",\n        \"stroke\": \"#000080\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-82.28759765625, 22.99379497224218],\n            [-82.46337890625, 23.059516273509303],\n            [-82.36450195312499, 23.074678175027337],\n            [-82.353515625, 23.120153621695614],\n            [-82.19970703125, 23.221154981846556],\n            [-82.19970703125, 23.089838367476705],\n            [-82.28759765625, 22.99379497224218]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#800000\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.44267926897321, 22.122696498115662]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#800000\",\n        \"stroke\": \"#800000\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.54351806640625, 22.0525504317147],\n            [-80.55999755859375, 22.118721619281263],\n            [-80.43914794921875, 22.271305748177635],\n            [-80.34027099609375, 22.2026634080092],\n            [-80.35675048828125, 22.12126604542578],\n            [-80.38970947265625, 22.021999432851782],\n            [-80.46936035156249, 22.070368801349257],\n            [-80.54351806640625, 22.0525504317147]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#008001\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.81596374511719, 20.06558308561739]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#008001\",\n        \"stroke\": \"#008001\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.6683349609375, 20.030128899024707],\n            [-75.7562255859375, 20.014645445341365],\n            [-75.8551025390625, 20.035289711352377],\n            [-76.0308837890625, 19.926877111209265],\n            [-76.0089111328125, 20.226120295836992],\n            [-75.80017089843749, 20.040450354169483],\n            [-75.73974609375, 20.122997556207757],\n            [-75.6683349609375, 20.128155311797183],\n            [-75.6683349609375, 20.030128899024707]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-kmeans/test/out/points2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-118.9453125, 58.932370825852416],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-118.30078125, 60.457217797743944]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-118.9453125, 58.932370825852416],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-115.04882812499999, 58.401711667608]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-106.58203125, 58.67171130020744],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-112.5, 60.84491057364912]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-106.58203125, 58.67171130020744],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-110.478515625, 59.265880628258095]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-106.58203125, 58.67171130020744],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-103.71093749999999, 60.673178565817715]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-106.58203125, 58.67171130020744],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-102.3046875, 55.52863052257191]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-83.63568474264706, 53.64101599252527],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.935546875, 60.930432202923335]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-83.63568474264706, 53.64101599252527],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.89257812499999, 60.23981116999893]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-83.63568474264706, 53.64101599252527],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-82.79296874999999, 57.468589192089354]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-83.63568474264706, 53.64101599252527],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-72.7734375, 58.63121664342478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-83.63568474264706, 53.64101599252527],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.541015625, 55.178867663281984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-83.63568474264706, 53.64101599252527],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.263671875, 50.17689812200107]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-83.63568474264706, 53.64101599252527],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-84.990234375, 49.38237278700955]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-83.63568474264706, 53.64101599252527],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-94.21875, 47.27922900257082]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-83.63568474264706, 53.64101599252527],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-88.41796875, 48.28319289548349]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-83.63568474264706, 53.64101599252527],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-92.548828125, 52.855864177853974]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-83.63568474264706, 53.64101599252527],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-87.1875, 45.89000815866184]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-106.58203125, 58.67171130020744],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-107.490234375, 57.040729838360875]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-83.63568474264706, 53.64101599252527],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-69.78515625, 56.511017504952136]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-83.63568474264706, 53.64101599252527],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-81.73828125, 62.83508901142283]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-83.63568474264706, 53.64101599252527],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.37695312499999, 61.938950426660604]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-83.63568474264706, 53.64101599252527],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-91.845703125, 46.07323062540835]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-83.63568474264706, 53.64101599252527],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.640625, 58.44773280389084]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 2,\n        \"centroid\": [-106.58203125, 58.67171130020744],\n        \"marker-color\": \"#ffff00\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-103.0078125, 58.6769376725869]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 3,\n        \"centroid\": [-83.63568474264706, 53.64101599252527],\n        \"marker-color\": \"#00ff80\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-88.857421875, 39.774769485295465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 0,\n        \"centroid\": [-118.9453125, 58.932370825852416],\n        \"marker-color\": \"#0000ff\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-123.48632812499999, 57.938183012205315]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-116.37974330357143, 43.350853607209785],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-117.158203125, 46.558860303117164]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-116.37974330357143, 43.350853607209785],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-114.873046875, 45.767522962149876]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-116.37974330357143, 43.350853607209785],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-112.67578124999999, 44.402391829093915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-116.37974330357143, 43.350853607209785],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-119.53125, 44.33956524809713]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-116.37974330357143, 43.350853607209785],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-115.927734375, 43.389081939117496]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-116.37974330357143, 43.350853607209785],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-120.58593749999999, 38.685509760012]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"cluster\": 1,\n        \"centroid\": [-116.37974330357143, 43.350853607209785],\n        \"marker-color\": \"#ff007e\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-113.90625, 40.3130432088809]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#000080\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-118.9453125, 58.932370825852416]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#000080\",\n        \"stroke\": \"#000080\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-115.04882812499999, 58.401711667608],\n            [-123.48632812499999, 57.938183012205315],\n            [-118.30078125, 60.457217797743944],\n            [-115.04882812499999, 58.401711667608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#80003e\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-116.37974330357143, 43.350853607209785]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#80003e\",\n        \"stroke\": \"#80003e\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-113.90625, 40.3130432088809],\n            [-120.58593749999999, 38.685509760012],\n            [-119.53125, 44.33956524809713],\n            [-117.158203125, 46.558860303117164],\n            [-114.873046875, 45.767522962149876],\n            [-112.67578124999999, 44.402391829093915],\n            [-113.90625, 40.3130432088809]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#808000\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-106.58203125, 58.67171130020744]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#808000\",\n        \"stroke\": \"#808000\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.478515625, 59.265880628258095],\n            [-112.5, 60.84491057364912],\n            [-103.71093749999999, 60.673178565817715],\n            [-103.0078125, 58.6769376725869],\n            [-102.3046875, 55.52863052257191],\n            [-107.490234375, 57.040729838360875],\n            [-110.478515625, 59.265880628258095]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#008040\",\n        \"marker-symbol\": \"star-stroked\",\n        \"marker-size\": \"large\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-83.63568474264706, 53.64101599252527]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#008040\",\n        \"stroke\": \"#008040\",\n        \"fill-opacity\": 0.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.857421875, 39.774769485295465],\n            [-91.845703125, 46.07323062540835],\n            [-94.21875, 47.27922900257082],\n            [-92.548828125, 52.855864177853974],\n            [-82.79296874999999, 57.468589192089354],\n            [-83.935546875, 60.930432202923335],\n            [-81.73828125, 62.83508901142283],\n            [-76.37695312499999, 61.938950426660604],\n            [-72.7734375, 58.63121664342478],\n            [-69.78515625, 56.511017504952136],\n            [-76.640625, 58.44773280389084],\n            [-79.541015625, 55.178867663281984],\n            [-84.990234375, 49.38237278700955],\n            [-87.1875, 45.89000815866184],\n            [-88.857421875, 39.774769485295465]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-clusters-kmeans/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { centroid } from \"@turf/centroid\";\nimport chromatism from \"chromatism\";\nimport concaveman from \"concaveman\";\nimport { point, polygon, featureCollection } from \"@turf/helpers\";\nimport { clusterReduce, clusterEach } from \"@turf/clusters\";\nimport { coordAll, featureEach } from \"@turf/meta\";\nimport { clustersKmeans } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"clusters-kmeans\", (t) => {\n  fixtures.forEach((fixture) => {\n    const name = fixture.name;\n    const geojson = fixture.geojson;\n    const numberOfClusters = (geojson.properties || {}).numberOfClusters;\n\n    const clustered = clustersKmeans(geojson, {\n      numberOfClusters: numberOfClusters,\n    });\n    const result = styleResult(clustered);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + name + \".geojson\", result);\n    t.deepEqual(\n      result,\n      loadJsonFileSync(directories.out + name + \".geojson\"),\n      name\n    );\n  });\n\n  t.end();\n});\n\nconst points = featureCollection([\n  point([0, 0], { foo: \"bar\" }),\n  point([2, 4], { foo: \"bar\" }),\n  point([3, 6], { foo: \"bar\" }),\n]);\n\ntest(\"clusters-kmeans -- translate properties\", (t) => {\n  t.equal(\n    clustersKmeans(points, { numberOfClusters: 2 }).features[0].properties.foo,\n    \"bar\"\n  );\n  t.end();\n});\n\n// style result\nfunction styleResult(clustered) {\n  const count = clusterReduce(clustered, \"cluster\", (i) => i + 1, 0);\n  const colours = chromatism.adjacent(360 / count, count, \"#0000FF\").hex;\n  const features = [];\n\n  // Add all Point\n  featureEach(clustered, function (pt) {\n    const clusterId = pt.properties.cluster;\n    pt.properties[\"marker-color\"] = colours[clusterId];\n    pt.properties[\"marker-size\"] = \"small\";\n    features.push(pt);\n  });\n\n  // Iterate over each Cluster\n  clusterEach(clustered, \"cluster\", (cluster, clusterValue, clusterId) => {\n    const color = chromatism.brightness(-25, colours[clusterId]).hex;\n\n    // Add Centroid\n    features.push(\n      centroid(cluster, {\n        properties: {\n          \"marker-color\": color,\n          \"marker-symbol\": \"star-stroked\",\n          \"marker-size\": \"large\",\n        },\n      })\n    );\n\n    // Add concave polygon\n    features.push(\n      polygon([concaveman(coordAll(cluster))], {\n        fill: color,\n        stroke: color,\n        \"fill-opacity\": 0.3,\n      })\n    );\n  });\n  return featureCollection(features);\n}\n\ntest(\"clusters-kmeans -- allow input mutation\", (t) => {\n  const oldPoints = featureCollection([\n    point([0, 0], { foo: \"bar\" }),\n    point([2, 4], { foo: \"bar\" }),\n    point([3, 6], { foo: \"bar\" }),\n  ]);\n  // No mutation\n  const newPoints = clustersKmeans(points, { numberOfClusters: 3 });\n  t.equal(newPoints.features[1].properties.cluster, 1, \"cluster is 1\");\n  t.equal(\n    oldPoints.features[1].properties.cluster,\n    undefined,\n    \"cluster is undefined\"\n  );\n\n  // Allow mutation\n  clustersKmeans(oldPoints, { numberOfClusters: 2, mutate: true });\n  t.equal(oldPoints.features[1].properties.cluster, 1, \"cluster is 1\");\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-clusters-kmeans/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-clusters-kmeans/types.ts",
    "content": "import { featureCollection, point } from \"@turf/helpers\";\nimport { clustersKmeans } from \"./index.js\";\n\n// Fixtures\nconst points = featureCollection([point([0, 0]), point([2, 2])]);\n\n// Default\nconst numberOfClusters = 5;\nconst clustered = clustersKmeans(points, { numberOfClusters });\nlet { cluster, centroid } = clustered.features[0].properties;\ncluster = 2;\ncentroid = [-110, 85];\n// cluster = 'foo' // Type Error - Type '\"foo\"' is not assignable to type 'number'.\n// centroid = 'foo' // Type Error - Type '\"foo\"' is not assignable to type '[number, number]'.\n\n// Properties option\nclustersKmeans(points);\nclustersKmeans(points, { numberOfClusters });\nclustersKmeans(points, { numberOfClusters, mutate: true });\n\n// Custom Properties\nclustered.features[0].properties.centroid;\nclustered.features[0].properties.cluster;\nclustered.features[0].properties.foo;\n"
  },
  {
    "path": "packages/turf-collect/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-collect/README.md",
    "content": "# @turf/collect\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## collect\n\nMerges a specified property from a FeatureCollection of points into a\nFeatureCollection of polygons. Given an `inProperty` on points and an `outProperty`\nfor polygons, this finds every point that lies within each polygon, collects the\n`inProperty` values from those points, and adds them as an array to `outProperty`\non the polygon.\n\n### Parameters\n\n*   `polygons` **[FeatureCollection][1]<[Polygon][2]>** polygons with values on which to aggregate\n*   `points` **[FeatureCollection][1]<[Point][3]>** points to be aggregated\n*   `inProperty` **[string][4]** property to be nested from\n*   `outProperty` **[string][4]** property to be nested into\n\n### Examples\n\n```javascript\nvar poly1 = turf.polygon([[[0,0],[10,0],[10,10],[0,10],[0,0]]]);\nvar poly2 = turf.polygon([[[10,0],[20,10],[20,20],[20,0],[10,0]]]);\nvar polyFC = turf.featureCollection([poly1, poly2]);\nvar pt1 = turf.point([5,5], {population: 200});\nvar pt2 = turf.point([1,3], {population: 600});\nvar pt3 = turf.point([14,2], {population: 100});\nvar pt4 = turf.point([13,1], {population: 200});\nvar pt5 = turf.point([19,7], {population: 300});\nvar pointFC = turf.featureCollection([pt1, pt2, pt3, pt4, pt5]);\nvar collected = turf.collect(polyFC, pointFC, 'population', 'values');\nvar values = collected.features[0].properties.values\n//=values => [200, 600]\n\n//addToMap\nvar addToMap = [pointFC, collected]\n```\n\nReturns **[FeatureCollection][1]<[Polygon][2]>** polygons with properties listed based on `outField`\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/collect\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-collect/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { polygon, featureCollection, point } from \"@turf/helpers\";\nimport { collect } from \"./index.js\";\n\nvar poly1 = polygon([\n  [\n    [0, 0],\n    [10, 0],\n    [0, 10],\n    [0, 10],\n    [0, 0],\n  ],\n]);\nvar poly2 = polygon([\n  [\n    [10, 0],\n    [20, 10],\n    [20, 20],\n    [20, 0],\n    [10, 0],\n  ],\n]);\nvar polyFC = featureCollection([poly1, poly2]);\nvar pt1 = point([5, 5], { population: 200 });\nvar pt2 = point([1, 3], { population: 600 });\nvar pt3 = point([14, 2], { population: 100 });\nvar pt4 = point([13, 1], { population: 200 });\nvar pt5 = point([19, 7], { population: 300 });\n\nvar ptFC = featureCollection([pt1, pt2, pt3, pt4, pt5]);\nvar suite = new Benchmark.Suite(\"turf-collect\");\nsuite\n  .add(\"turf-collect\", function () {\n    collect(polyFC, ptFC, \"population\", \"outPopulation\");\n  })\n  .on(\"cycle\", function (event) {\n    console.log(String(event.target));\n  })\n  .run();\n"
  },
  {
    "path": "packages/turf-collect/index.ts",
    "content": "import { FeatureCollection, Polygon, Point } from \"geojson\";\nimport { bbox as turfbbox } from \"@turf/bbox\";\nimport { booleanPointInPolygon } from \"@turf/boolean-point-in-polygon\";\nimport rbush from \"rbush\";\n\ninterface Entry {\n  minX: number;\n  minY: number;\n  maxX: number;\n  maxY: number;\n  property: any;\n}\n\n/**\n * Merges a specified property from a FeatureCollection of points into a\n * FeatureCollection of polygons. Given an `inProperty` on points and an `outProperty`\n * for polygons, this finds every point that lies within each polygon, collects the\n * `inProperty` values from those points, and adds them as an array to `outProperty`\n * on the polygon.\n *\n * @function\n * @param {FeatureCollection<Polygon>} polygons polygons with values on which to aggregate\n * @param {FeatureCollection<Point>} points points to be aggregated\n * @param {string} inProperty property to be nested from\n * @param {string} outProperty property to be nested into\n * @returns {FeatureCollection<Polygon>} polygons with properties listed based on `outField`\n * @example\n * var poly1 = turf.polygon([[[0,0],[10,0],[10,10],[0,10],[0,0]]]);\n * var poly2 = turf.polygon([[[10,0],[20,10],[20,20],[20,0],[10,0]]]);\n * var polyFC = turf.featureCollection([poly1, poly2]);\n * var pt1 = turf.point([5,5], {population: 200});\n * var pt2 = turf.point([1,3], {population: 600});\n * var pt3 = turf.point([14,2], {population: 100});\n * var pt4 = turf.point([13,1], {population: 200});\n * var pt5 = turf.point([19,7], {population: 300});\n * var pointFC = turf.featureCollection([pt1, pt2, pt3, pt4, pt5]);\n * var collected = turf.collect(polyFC, pointFC, 'population', 'values');\n * var values = collected.features[0].properties.values\n * //=values => [200, 600]\n *\n * //addToMap\n * var addToMap = [pointFC, collected]\n */\nfunction collect(\n  polygons: FeatureCollection<Polygon>,\n  points: FeatureCollection<Point>,\n  inProperty: string,\n  outProperty: string\n): FeatureCollection<Polygon> {\n  var rtree = new rbush<Entry>(6);\n\n  var treeItems = points.features.map(function (item) {\n    return {\n      minX: item.geometry.coordinates[0],\n      minY: item.geometry.coordinates[1],\n      maxX: item.geometry.coordinates[0],\n      maxY: item.geometry.coordinates[1],\n      property: item.properties?.[inProperty],\n    };\n  });\n\n  rtree.load(treeItems);\n  polygons.features.forEach(function (poly) {\n    if (!poly.properties) {\n      poly.properties = {};\n    }\n    var bbox = turfbbox(poly);\n    var potentialPoints = rtree.search({\n      minX: bbox[0],\n      minY: bbox[1],\n      maxX: bbox[2],\n      maxY: bbox[3],\n    });\n    var values: any[] = [];\n    potentialPoints.forEach(function (pt) {\n      if (booleanPointInPolygon([pt.minX, pt.minY], poly)) {\n        values.push(pt.property);\n      }\n    });\n\n    poly.properties[outProperty] = values;\n  });\n\n  return polygons;\n}\n\nexport { collect };\nexport default collect;\n"
  },
  {
    "path": "packages/turf-collect/package.json",
    "content": "{\n  \"name\": \"@turf/collect\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Merges a specified property from a FeatureCollection of points into a FeatureCollection of polygons.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Rowan Winsemius <@rowanwins>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"aggregate\",\n    \"turf\",\n    \"geojson\",\n    \"points\",\n    \"polygons\",\n    \"stats\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/rbush\": \"^3.0.4\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/boolean-point-in-polygon\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"rbush\": \"^3.0.1\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-collect/test.ts",
    "content": "import test from \"tape\";\nimport { featureCollection, point, polygon } from \"@turf/helpers\";\nimport { collect } from \"./index.js\";\n\ntest(\"turf collect module\", (t) => {\n  const poly1 = polygon([\n    [\n      [0, 0],\n      [10, 0],\n      [10, 10],\n      [0, 10],\n      [0, 0],\n    ],\n  ]);\n  const poly2 = polygon([\n    [\n      [10, 0],\n      [20, 10],\n      [20, 20],\n      [20, 0],\n      [10, 0],\n    ],\n  ]);\n  const poly3 = polygon([\n    [\n      [100, 0],\n      [110, -10],\n      [110, -20],\n      [100, 0],\n    ],\n  ]);\n  const polyFC = featureCollection([poly1, poly2, poly3]);\n  const pt1 = point([5, 5], { population: 200 });\n  const pt2 = point([1, 3], { population: 600 });\n  const pt3 = point([14, 2], { population: 100 });\n  const pt4 = point([13, 1], { population: 200 });\n  const pt5 = point([19, 7], { population: 300 });\n  const ptFC = featureCollection([pt1, pt2, pt3, pt4, pt5]);\n  const aggregated = collect(polyFC, ptFC, \"population\", \"values\");\n  // Check the same number of input and output polys are the same\n  t.equal(polyFC.features.length, aggregated.features.length);\n  // Check the right values have been assigned\n  t.deepEqual(aggregated.features[0].properties.values, [200, 600]);\n  t.deepEqual(aggregated.features[1].properties.values, [100, 200, 300]);\n\n  // Check the property has been created even if no values have been assigned\n  t.deepEqual(aggregated.features[2].properties.values, []);\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-collect/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-combine/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-combine/README.md",
    "content": "# @turf/combine\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## combine\n\nCombines a [FeatureCollection][1] of [Point][2], [LineString][3], or [Polygon][4] features\ninto [MultiPoint][5], [MultiLineString][6], or [MultiPolygon][7] features.\n\n### Parameters\n\n*   `fc` **[FeatureCollection][1]<([Point][2] | [LineString][3] | [Polygon][4])>** a FeatureCollection of any type\n\n### Examples\n\n```javascript\nvar fc = turf.featureCollection([\n  turf.point([19.026432, 47.49134]),\n  turf.point([19.074497, 47.509548])\n]);\n\nvar combined = turf.combine(fc);\n\n//addToMap\nvar addToMap = [combined]\n```\n\nReturns **[FeatureCollection][1]<([MultiPoint][5] | [MultiLineString][6] | [MultiPolygon][7])>** a FeatureCollection of corresponding type to input\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.1.3\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.1.5\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/combine\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-combine/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { point, polygon, lineString, featureCollection } from \"@turf/helpers\";\nimport { combine } from \"./index.js\";\n\n// MultiPoint\nvar pt1 = point(50, 51);\nvar pt2 = point(100, 101);\n\n// MultiLineString\nvar l1 = lineString([\n  [102.0, -10.0],\n  [130.0, 4.0],\n]);\nvar l2 = lineString([\n  [40.0, -20.0],\n  [150.0, 18.0],\n]);\n\n// MultiPolygon\nvar p1 = polygon([\n  [\n    [20.0, 0.0],\n    [101.0, 0.0],\n    [101.0, 1.0],\n    [100.0, 1.0],\n    [100.0, 0.0],\n    [20.0, 0.0],\n  ],\n]);\nvar p2 = polygon([\n  [\n    [30.0, 0.0],\n    [102.0, 0.0],\n    [103.0, 1.0],\n    [30.0, 0.0],\n  ],\n]);\n\nvar suite = new Benchmark.Suite(\"turf-combine\");\nsuite\n  .add(\"turf-combine#point\", function () {\n    combine(featureCollection([pt1, pt2]));\n  })\n  .add(\"turf-combine#line\", function () {\n    combine(featureCollection([l1, l2]));\n  })\n  .add(\"turf-combine#polygon\", function () {\n    combine(featureCollection([p1, p2]));\n  })\n  .on(\"cycle\", function (event) {\n    console.log(String(event.target));\n  })\n  .run();\n"
  },
  {
    "path": "packages/turf-combine/index.ts",
    "content": "import {\n  GeoJsonProperties,\n  FeatureCollection,\n  LineString,\n  MultiLineString,\n  MultiPoint,\n  MultiPolygon,\n  Point,\n  Polygon,\n} from \"geojson\";\nimport { feature, featureCollection } from \"@turf/helpers\";\nimport { featureEach } from \"@turf/meta\";\n\n/**\n * Combines a {@link FeatureCollection} of {@link Point}, {@link LineString}, or {@link Polygon} features\n * into {@link MultiPoint}, {@link MultiLineString}, or {@link MultiPolygon} features.\n *\n * @function\n * @param {FeatureCollection<Point|LineString|Polygon>} fc a FeatureCollection of any type\n * @returns {FeatureCollection<MultiPoint|MultiLineString|MultiPolygon>} a FeatureCollection of corresponding type to input\n * @example\n * var fc = turf.featureCollection([\n *   turf.point([19.026432, 47.49134]),\n *   turf.point([19.074497, 47.509548])\n * ]);\n *\n * var combined = turf.combine(fc);\n *\n * //addToMap\n * var addToMap = [combined]\n */\nfunction combine(\n  fc: FeatureCollection<\n    Point | MultiPoint | LineString | MultiLineString | Polygon | MultiPolygon\n  >\n) {\n  var groups = {\n    MultiPoint: {\n      coordinates: [] as number[][],\n      properties: [] as GeoJsonProperties[],\n    },\n    MultiLineString: {\n      coordinates: [] as number[][][],\n      properties: [] as GeoJsonProperties[],\n    },\n    MultiPolygon: {\n      coordinates: [] as number[][][][],\n      properties: [] as GeoJsonProperties[],\n    },\n  };\n\n  featureEach(fc, (feature) => {\n    switch (feature.geometry?.type) {\n      case \"Point\":\n        groups.MultiPoint.coordinates.push(feature.geometry.coordinates);\n        groups.MultiPoint.properties.push(feature.properties);\n        break;\n      case \"MultiPoint\":\n        groups.MultiPoint.coordinates.push(...feature.geometry.coordinates);\n        groups.MultiPoint.properties.push(feature.properties);\n        break;\n      case \"LineString\":\n        groups.MultiLineString.coordinates.push(feature.geometry.coordinates);\n        groups.MultiLineString.properties.push(feature.properties);\n        break;\n      case \"MultiLineString\":\n        groups.MultiLineString.coordinates.push(\n          ...feature.geometry.coordinates\n        );\n        groups.MultiLineString.properties.push(feature.properties);\n        break;\n      case \"Polygon\":\n        groups.MultiPolygon.coordinates.push(feature.geometry.coordinates);\n        groups.MultiPolygon.properties.push(feature.properties);\n        break;\n      case \"MultiPolygon\":\n        groups.MultiPolygon.coordinates.push(...feature.geometry.coordinates);\n        groups.MultiPolygon.properties.push(feature.properties);\n        break;\n      default:\n        break;\n    }\n  });\n\n  return featureCollection(\n    (Object.keys(groups) as (keyof typeof groups)[])\n      .filter(function (key) {\n        return groups[key].coordinates.length;\n      })\n      .sort()\n      .map(function (key) {\n        var geometry = { type: key, coordinates: groups[key].coordinates } as\n          | MultiPoint\n          | MultiLineString\n          | MultiPolygon;\n        var properties = { collectedProperties: groups[key].properties };\n        return feature(geometry, properties);\n      })\n  );\n}\n\nexport { combine };\nexport default combine;\n"
  },
  {
    "path": "packages/turf-combine/package.json",
    "content": "{\n  \"name\": \"@turf/combine\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Combines a FeatureCollection of Point, LineString, or Polygon features into MultiPoint, MultiLineString, or MultiPolygon features.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"multipoint\",\n    \"multipolygon\",\n    \"combine\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-combine/test.ts",
    "content": "import test from \"tape\";\nimport {\n  point,\n  multiPoint,\n  polygon,\n  multiPolygon,\n  lineString,\n  multiLineString,\n  featureCollection,\n} from \"@turf/helpers\";\nimport { combine } from \"./index.js\";\n\ntest(\"combine -- points\", (t) => {\n  // MultiPoint\n  const pt1 = point([50, 51]);\n  const pt2 = point([100, 101]);\n\n  const multiPt = combine(featureCollection([pt1, pt2]));\n\n  t.ok(multiPt, \"should combine two Points into a MultiPoint\");\n  t.deepEqual(multiPt.features[0].geometry.coordinates, [\n    [50, 51],\n    [100, 101],\n  ]);\n  t.end();\n});\n\ntest(\"combine -- mixed multiPoint & point\", function (t) {\n  // MultiPoint\n  const pt1 = point([50, 51]);\n  const pt2 = multiPoint([\n    [100, 101],\n    [101, 102],\n  ]);\n\n  const multiPt = combine(featureCollection([pt1, pt2]));\n\n  t.ok(multiPt, \"should combine Points + MultiPoint into a MultiPoint\");\n  t.deepEqual(multiPt.features[0].geometry.coordinates, [\n    [50, 51],\n    [100, 101],\n    [101, 102],\n  ]);\n  t.end();\n});\n\ntest(\"combine -- linestrings\", function (t) {\n  // MultiLineString\n  const l1 = lineString([\n    [102.0, -10.0],\n    [130.0, 4.0],\n  ]);\n  const l2 = lineString([\n    [40.0, -20.0],\n    [150.0, 18.0],\n  ]);\n\n  const multiLine = combine(featureCollection([l1, l2]));\n\n  t.ok(multiLine, \"should combine two LineStrings into a MultiLineString\");\n  t.equal(multiLine.features[0].geometry.type, \"MultiLineString\");\n  t.deepEqual(multiLine.features[0].geometry.coordinates, [\n    [\n      [102, -10],\n      [130, 4],\n    ],\n    [\n      [40, -20],\n      [150, 18],\n    ],\n  ]);\n  t.end();\n});\n\ntest(\"combine -- mixed multiLineString & linestring\", function (t) {\n  // MultiLineString\n  const l1 = lineString([\n    [102.0, -10.0],\n    [130.0, 4.0],\n  ]);\n  const l2 = multiLineString([\n    [\n      [40.0, -20.0],\n      [150.0, 18.0],\n    ],\n    [\n      [50, -10],\n      [160, 28],\n    ],\n  ]);\n\n  const multiLine = combine(featureCollection([l1, l2]));\n\n  t.ok(\n    multiLine,\n    \"should combine LineString + MultiLineString into a MultiLineString\"\n  );\n  t.equal(multiLine.features[0].geometry.type, \"MultiLineString\");\n  t.deepEqual(multiLine.features[0].geometry.coordinates, [\n    [\n      [102, -10],\n      [130, 4],\n    ],\n    [\n      [40, -20],\n      [150, 18],\n    ],\n    [\n      [50, -10],\n      [160, 28],\n    ],\n  ]);\n  t.end();\n});\n\ntest(\"combine -- polygons\", function (t) {\n  // MultiPolygon\n  const p1 = polygon([\n    [\n      [20.0, 0.0],\n      [101.0, 0.0],\n      [101.0, 1.0],\n      [100.0, 1.0],\n      [100.0, 0.0],\n      [20.0, 0.0],\n    ],\n  ]);\n  const p2 = polygon([\n    [\n      [30.0, 0.0],\n      [102.0, 0.0],\n      [103.0, 1.0],\n      [30.0, 0.0],\n    ],\n  ]);\n  const multiPoly = combine(featureCollection([p1, p2]));\n\n  t.ok(multiPoly, \"should combine two Polygons into a MultiPolygon\");\n  t.equal(multiPoly.features[0].geometry.type, \"MultiPolygon\");\n  t.deepEqual(multiPoly.features[0].geometry.coordinates, [\n    [\n      [\n        [20, 0],\n        [101.0, 0.0],\n        [101.0, 1.0],\n        [100.0, 1.0],\n        [100.0, 0.0],\n        [20, 0],\n      ],\n    ],\n    [\n      [\n        [30.0, 0.0],\n        [102.0, 0.0],\n        [103.0, 1.0],\n        [30.0, 0.0],\n      ],\n    ],\n  ]);\n\n  t.end();\n});\n\ntest(\"combine -- polygons\", function (t) {\n  // MultiPolygon\n  const p1 = polygon([\n    [\n      [20.0, 0.0],\n      [101.0, 0.0],\n      [101.0, 1.0],\n      [100.0, 1.0],\n      [100.0, 0.0],\n      [20.0, 0.0],\n    ],\n  ]);\n  const p2 = multiPolygon([\n    [\n      [\n        [30.0, 0.0],\n        [102.0, 0.0],\n        [103.0, 1.0],\n        [30.0, 0.0],\n      ],\n    ],\n    [\n      [\n        [20.0, 5.0],\n        [92.0, 5.0],\n        [93.0, 6.0],\n        [20.0, 5.0],\n      ],\n      [\n        [25, 5],\n        [30, 5],\n        [30, 5.5],\n        [25, 5],\n      ],\n    ],\n  ]);\n  const multiPoly = combine(featureCollection([p1, p2]));\n\n  t.ok(\n    multiPoly,\n    \"should combine two Polygon + MultiPolygon into a MultiPolygon\"\n  );\n  t.equal(multiPoly.features[0].geometry.type, \"MultiPolygon\");\n  t.deepEqual(multiPoly.features[0].geometry.coordinates, [\n    [\n      [\n        [20, 0],\n        [101.0, 0.0],\n        [101.0, 1.0],\n        [100.0, 1.0],\n        [100.0, 0.0],\n        [20, 0],\n      ],\n    ],\n    [\n      [\n        [30.0, 0.0],\n        [102.0, 0.0],\n        [103.0, 1.0],\n        [30.0, 0.0],\n      ],\n    ],\n    [\n      [\n        [20.0, 5.0],\n        [92.0, 5.0],\n        [93.0, 6.0],\n        [20.0, 5.0],\n      ],\n      [\n        [25, 5],\n        [30, 5],\n        [30, 5.5],\n        [25, 5],\n      ],\n    ],\n  ]);\n\n  t.end();\n});\n\ntest(\"combine -- heterogenous\", function (t) {\n  // MultiPolygon\n  const p1 = polygon([\n    [\n      [20.0, 0.0],\n      [101.0, 0.0],\n      [101.0, 1.0],\n      [100.0, 1.0],\n      [100.0, 0.0],\n      [20.0, 0.0],\n    ],\n  ]);\n  const p2 = multiPolygon([\n    [\n      [\n        [30.0, 0.0],\n        [102.0, 0.0],\n        [103.0, 1.0],\n        [30.0, 0.0],\n      ],\n    ],\n    [\n      [\n        [20.0, 5.0],\n        [92.0, 5.0],\n        [93.0, 6.0],\n        [20.0, 5.0],\n      ],\n      [\n        [25, 5],\n        [30, 5],\n        [30, 5.5],\n        [25, 5],\n      ],\n    ],\n  ]);\n  const pt1 = point([50, 51]);\n  const multiPoly = combine(featureCollection([p1, p2, pt1]));\n\n  t.ok(\n    multiPoly,\n    \"should combine two Polygon + MultiPolygon into a MultiPolygon\"\n  );\n  t.equal(multiPoly.features[0].geometry.type, \"MultiPoint\");\n\n  t.equal(multiPoly.features[1].geometry.type, \"MultiPolygon\");\n  t.deepEqual(multiPoly.features[1].geometry.coordinates, [\n    [\n      [\n        [20, 0],\n        [101.0, 0.0],\n        [101.0, 1.0],\n        [100.0, 1.0],\n        [100.0, 0.0],\n        [20, 0],\n      ],\n    ],\n    [\n      [\n        [30.0, 0.0],\n        [102.0, 0.0],\n        [103.0, 1.0],\n        [30.0, 0.0],\n      ],\n    ],\n    [\n      [\n        [20.0, 5.0],\n        [92.0, 5.0],\n        [93.0, 6.0],\n        [20.0, 5.0],\n      ],\n      [\n        [25, 5],\n        [30, 5],\n        [30, 5.5],\n        [25, 5],\n      ],\n    ],\n  ]);\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-combine/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-concave/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-concave/README.md",
    "content": "# @turf/concave\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## concave\n\nTakes a set of [points][1] and returns a concave hull Polygon or MultiPolygon.\nInternally, this uses [turf-tin][2] to generate geometries.\n\n### Parameters\n\n*   `points` **[FeatureCollection][3]<[Point][1]>** input points\n*   `options` **[Object][4]** Optional parameters (optional, default `{}`)\n\n    *   `options.maxEdge` **[number][5]** the length (in 'units') of an edge necessary for part of the\n        hull to become concave. (optional, default `Infinity`)\n    *   `options.units` **Units** Supports all valid Turf [Units][6]. (optional, default `'kilometers'`)\n\n### Examples\n\n```javascript\nvar points = turf.featureCollection([\n  turf.point([-63.601226, 44.642643]),\n  turf.point([-63.591442, 44.651436]),\n  turf.point([-63.580799, 44.648749]),\n  turf.point([-63.573589, 44.641788]),\n  turf.point([-63.587665, 44.64533]),\n  turf.point([-63.595218, 44.64765])\n]);\nvar options = {units: 'miles', maxEdge: 1};\n\nvar hull = turf.concave(points, options);\n\n//addToMap\nvar addToMap = [points, hull]\n```\n\nReturns **([Feature][7]<([Polygon][8] | [MultiPolygon][9])> | null)** a concave hull (null value is returned if unable to compute hull)\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[2]: https://github.com/Turfjs/turf-tin\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[6]: https://turfjs.org/docs/api/types/Units\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[8]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[9]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/concave\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-concave/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { concave } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Single Process Benchmark\n *\n * concave-hull: 15.922ms\n * fiji: 3.523ms\n * hole: 8.207ms\n * issue-333: 24.505ms\n * pts1: 0.932ms\n * pts2: 13.297ms\n * pts3: 0.375ms\n */\nfor (const { name, geojson } of fixtures) {\n  console.time(name);\n  concave(geojson, geojson.properties);\n  console.timeEnd(name);\n}\n\n/**\n * Benchmark Results\n *\n * concave-hull x 616 ops/sec ±5.02% (77 runs sampled)\n * fiji x 1,815 ops/sec ±5.09% (80 runs sampled)\n * hole x 801 ops/sec ±2.29% (84 runs sampled)\n * issue-333 x 163 ops/sec ±10.20% (67 runs sampled)\n * pts1 x 2,697 ops/sec ±5.40% (79 runs sampled)\n * pts2 x 148 ops/sec ±2.66% (73 runs sampled)\n * pts3 x 6,938 ops/sec ±6.21% (71 runs sampled)\n * support-null-geometry x 3,110 ops/sec ±4.75% (74 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-transform-scale\");\nfor (const { name, geojson } of fixtures) {\n  const options = geojson.properties;\n  options.mutate = true;\n  suite.add(name, () => concave(geojson, options));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-concave/index.ts",
    "content": "import { distance } from \"@turf/distance\";\nimport { feature, featureCollection } from \"@turf/helpers\";\nimport {\n  Feature,\n  FeatureCollection,\n  MultiPolygon,\n  Point,\n  Polygon,\n} from \"geojson\";\nimport { Units } from \"@turf/helpers\";\nimport { featureEach } from \"@turf/meta\";\nimport { tin } from \"@turf/tin\";\nimport { dissolve } from \"./lib/turf-dissolve.js\";\n\n/**\n * Takes a set of {@link Point|points} and returns a concave hull Polygon or MultiPolygon.\n * Internally, this uses [turf-tin](https://github.com/Turfjs/turf-tin) to generate geometries.\n *\n * @function\n * @param {FeatureCollection<Point>} points input points\n * @param {Object} [options={}] Optional parameters\n * @param {number} [options.maxEdge=Infinity] the length (in 'units') of an edge necessary for part of the\n * hull to become concave.\n * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.\n * @returns {Feature<(Polygon|MultiPolygon)>|null} a concave hull (null value is returned if unable to compute hull)\n * @example\n * var points = turf.featureCollection([\n *   turf.point([-63.601226, 44.642643]),\n *   turf.point([-63.591442, 44.651436]),\n *   turf.point([-63.580799, 44.648749]),\n *   turf.point([-63.573589, 44.641788]),\n *   turf.point([-63.587665, 44.64533]),\n *   turf.point([-63.595218, 44.64765])\n * ]);\n * var options = {units: 'miles', maxEdge: 1};\n *\n * var hull = turf.concave(points, options);\n *\n * //addToMap\n * var addToMap = [points, hull]\n */\nfunction concave(\n  points: FeatureCollection<Point>,\n  options: { maxEdge?: number; units?: Units } = {}\n): Feature<Polygon | MultiPolygon> | null {\n  const maxEdge = options.maxEdge || Infinity;\n\n  const cleaned = removeDuplicates(points);\n\n  const tinPolys = tin(cleaned);\n  // calculate length of all edges and area of all triangles\n  // and remove triangles that fail the max length test\n  tinPolys.features = tinPolys.features.filter((triangle) => {\n    const pt1 = triangle.geometry.coordinates[0][0];\n    const pt2 = triangle.geometry.coordinates[0][1];\n    const pt3 = triangle.geometry.coordinates[0][2];\n    const dist1 = distance(pt1, pt2, options);\n    const dist2 = distance(pt2, pt3, options);\n    const dist3 = distance(pt1, pt3, options);\n    return dist1 <= maxEdge && dist2 <= maxEdge && dist3 <= maxEdge;\n  });\n\n  if (tinPolys.features.length < 1) {\n    return null;\n  }\n\n  // merge the adjacent triangles\n  const dissolved: any = dissolve(tinPolys);\n\n  // geojson-dissolve always returns a MultiPolygon\n  if (dissolved.coordinates.length === 1) {\n    dissolved.coordinates = dissolved.coordinates[0];\n    dissolved.type = \"Polygon\";\n  }\n  return feature(dissolved);\n}\n\n/**\n * Removes duplicated points in a collection returning a new collection\n *\n * @private\n * @param {FeatureCollection<Point>} points to be cleaned\n * @returns {FeatureCollection<Point>} cleaned set of points\n */\nfunction removeDuplicates(\n  points: FeatureCollection<Point>\n): FeatureCollection<Point> {\n  const cleaned: Array<Feature<Point>> = [];\n  const existing: { [key: string]: boolean } = {};\n\n  featureEach(points, (pt) => {\n    if (!pt.geometry) {\n      return;\n    }\n    const key = pt.geometry.coordinates.join(\"-\");\n    if (!Object.prototype.hasOwnProperty.call(existing, key)) {\n      cleaned.push(pt);\n      existing[key] = true;\n    }\n  });\n  return featureCollection(cleaned);\n}\n\nexport { concave };\nexport default concave;\n"
  },
  {
    "path": "packages/turf-concave/lib/turf-dissolve.ts",
    "content": "import {\n  Feature,\n  FeatureCollection,\n  LineString,\n  MultiLineString,\n  MultiPolygon,\n  Polygon,\n} from \"geojson\";\nimport { clone } from \"@turf/clone\";\nimport { isObject } from \"@turf/helpers\";\nimport { getType } from \"@turf/invariant\";\nimport { flattenEach } from \"@turf/meta\";\nimport { lineDissolve } from \"./turf-line-dissolve.js\";\nimport { polygonDissolve } from \"./turf-polygon-dissolve.js\";\n\n/**\n * Transform function: attempts to dissolve geojson objects where possible\n * [GeoJSON] -> GeoJSON geometry\n *\n * @private\n * @param {FeatureCollection<LineString|MultiLineString|Polygon|MultiPolygon>} geojson Features to dissolved\n * @param {Object} [options={}] Optional parameters\n * @param {boolean} [options.mutate=false] Prevent input mutation\n * @returns {Feature<MultiLineString|MultiPolygon>} Dissolved Features\n */\nfunction dissolve(\n  geojson: FeatureCollection<\n    LineString | MultiLineString | Polygon | MultiPolygon\n  >,\n  options: {\n    mutate?: boolean;\n  } = {}\n): Feature<LineString | MultiLineString | Polygon | MultiPolygon> | null {\n  // Optional parameters\n  options = options || {};\n  if (!isObject(options)) {\n    throw new Error(\"options is invalid\");\n  }\n  const mutate = options.mutate;\n\n  // Validation\n  if (getType(geojson) !== \"FeatureCollection\") {\n    throw new Error(\"geojson must be a FeatureCollection\");\n  }\n  if (!geojson.features.length) {\n    throw new Error(\"geojson is empty\");\n  }\n\n  // Clone geojson to avoid side effects\n  // Topojson modifies in place, so we need to deep clone first\n  if (mutate === false || mutate === undefined) {\n    geojson = clone(geojson);\n  }\n\n  // Assert homogenity\n  const type = getHomogenousType(geojson);\n  if (!type) {\n    throw new Error(\"geojson must be homogenous\");\n  }\n\n  // Data => Typescript hack\n  const data: any = geojson;\n\n  switch (type) {\n    case \"LineString\":\n      return lineDissolve(data, options);\n    case \"Polygon\":\n      return polygonDissolve(data, options);\n    default:\n      throw new Error(type + \" is not supported\");\n  }\n}\n\n/**\n * Checks if GeoJSON is Homogenous\n *\n * @private\n * @param {GeoJSON} geojson GeoJSON\n * @returns {string|null} Homogenous type or null if multiple types\n */\nfunction getHomogenousType(geojson: any) {\n  const types: { [key: string]: boolean } = {};\n  flattenEach(geojson, (feature) => {\n    types[feature.geometry.type] = true;\n  });\n  const keys = Object.keys(types);\n  if (keys.length === 1) {\n    return keys[0];\n  }\n  return null;\n}\n\nexport { dissolve };\nexport default dissolve;\n"
  },
  {
    "path": "packages/turf-concave/lib/turf-line-dissolve.ts",
    "content": "import {\n  Feature,\n  FeatureCollection,\n  LineString,\n  MultiLineString,\n} from \"geojson\";\nimport { clone } from \"@turf/clone\";\nimport { isObject, lineString, multiLineString } from \"@turf/helpers\";\nimport { getType } from \"@turf/invariant\";\nimport { lineReduce } from \"@turf/meta\";\n\n/**\n * Merges all connected (non-forking, non-junctioning) line strings into single lineStrings.\n * [LineString] -> LineString|MultiLineString\n *\n * @param {FeatureCollection<LineString|MultiLineString>} geojson Lines to dissolve\n * @param {Object} [options={}] Optional parameters\n * @param {boolean} [options.mutate=false] Prevent input mutation\n * @returns {Feature<LineString|MultiLineString>} Dissolved lines\n */\nfunction lineDissolve(\n  geojson: FeatureCollection<LineString | MultiLineString>,\n  options: { mutate?: boolean } = {}\n): Feature<LineString | MultiLineString> | null {\n  // Optional parameters\n  options = options || {};\n  if (!isObject(options)) {\n    throw new Error(\"options is invalid\");\n  }\n  const mutate = options.mutate;\n\n  // Validation\n  if (getType(geojson) !== \"FeatureCollection\") {\n    throw new Error(\"geojson must be a FeatureCollection\");\n  }\n  if (!geojson.features.length) {\n    throw new Error(\"geojson is empty\");\n  }\n\n  // Clone geojson to avoid side effects\n  if (mutate === false || mutate === undefined) {\n    geojson = clone(geojson);\n  }\n\n  const result: any[] = [];\n  const lastLine = lineReduce(\n    geojson,\n    (previousLine: any, currentLine: any) => {\n      // Attempt to merge this LineString with the other LineStrings, updating\n      // the reference as it is merged with others and grows.\n      const merged = mergeLineStrings(previousLine, currentLine);\n\n      // Accumulate the merged LineString\n      if (merged) {\n        return merged;\n        // Put the unmerged LineString back into the list\n      } else {\n        result.push(previousLine);\n        return currentLine;\n      }\n    }\n  );\n  // Append the last line\n  if (lastLine) {\n    result.push(lastLine);\n  }\n\n  // Return null if no lines were dissolved\n  if (!result.length) {\n    return null;\n    // Return LineString if only 1 line was dissolved\n  } else if (result.length === 1) {\n    return result[0];\n    // Return MultiLineString if multiple lines were dissolved with gaps\n  } else {\n    return multiLineString(\n      result.map((line) => {\n        return line.coordinates;\n      })\n    );\n  }\n}\n\n// [Number, Number] -> String\nfunction coordId(coord: number[]) {\n  return coord[0].toString() + \",\" + coord[1].toString();\n}\n\n/**\n * LineString, LineString -> LineString\n *\n * @private\n * @param {Feature<LineString>} a line1\n * @param {Feature<LineString>} b line2\n * @returns {Feature<LineString>|null} Merged LineString\n */\nfunction mergeLineStrings(a: Feature<LineString>, b: Feature<LineString>) {\n  const coords1 = a.geometry.coordinates;\n  const coords2 = b.geometry.coordinates;\n\n  const s1 = coordId(coords1[0]);\n  const e1 = coordId(coords1[coords1.length - 1]);\n  const s2 = coordId(coords2[0]);\n  const e2 = coordId(coords2[coords2.length - 1]);\n\n  // TODO: handle case where more than one of these is true!\n  let coords;\n  if (s1 === e2) {\n    coords = coords2.concat(coords1.slice(1));\n  } else if (s2 === e1) {\n    coords = coords1.concat(coords2.slice(1));\n  } else if (s1 === s2) {\n    coords = coords1.slice(1).reverse().concat(coords2);\n  } else if (e1 === e2) {\n    coords = coords1.concat(coords2.reverse().slice(1));\n  } else {\n    return null;\n  }\n\n  return lineString(coords);\n}\n\nexport { lineDissolve };\nexport default lineDissolve;\n"
  },
  {
    "path": "packages/turf-concave/lib/turf-polygon-dissolve.ts",
    "content": "import { Feature, FeatureCollection, MultiPolygon, Polygon } from \"geojson\";\nimport { clone } from \"@turf/clone\";\nimport { geometryCollection } from \"@turf/helpers\";\nimport { getType } from \"@turf/invariant\";\nimport { flattenEach } from \"@turf/meta\";\nimport { merge } from \"topojson-client\";\nimport { topology } from \"topojson-server\";\n\n/**\n * Dissolves all overlapping (Multi)Polygon\n *\n * @param {FeatureCollection<Polygon|MultiPolygon>} geojson Polygons to dissolve\n * @param {Object} [options={}] Optional parameters\n * @param {boolean} [options.mutate=false] Prevent input mutation\n * @returns {Feature<Polygon|MultiPolygon>} Dissolved Polygons\n */\nfunction polygonDissolve(\n  geojson: FeatureCollection<Polygon | MultiPolygon>,\n  options: { mutate?: boolean } = {}\n): Feature<Polygon | MultiPolygon> | null {\n  // Validation\n  if (getType(geojson) !== \"FeatureCollection\") {\n    throw new Error(\"geojson must be a FeatureCollection\");\n  }\n  if (!geojson.features.length) {\n    throw new Error(\"geojson is empty\");\n  }\n\n  // Clone geojson to avoid side effects\n  // Topojson modifies in place, so we need to deep clone first\n  if (options.mutate === false || options.mutate === undefined) {\n    geojson = clone(geojson);\n  }\n\n  const geoms: any[] = [];\n  flattenEach(geojson, (feature) => {\n    geoms.push(feature.geometry);\n  });\n  const topo: any = topology({ geoms: geometryCollection(geoms).geometry });\n  const merged: any = merge(topo, topo.objects.geoms.geometries);\n  return merged;\n}\n\nexport { polygonDissolve };\nexport default polygonDissolve;\n"
  },
  {
    "path": "packages/turf-concave/package.json",
    "content": "{\n  \"name\": \"@turf/concave\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Creates a concave hull around points.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Tom MacWright <@tmcw>\",\n    \"Lyzi Diamond <@lyzidiamond>\",\n    \"Denis Carriere <@DenisCarriere>\",\n    \"Stefano Borghi <@stebogit>\",\n    \"Rowan Winsemius <@rowanwins>\",\n    \"Daniel Pulido <@dpmcmlxxvi>\",\n    \"Stephen Whitmore <@noffle>\",\n    \"Gregor MacLennan <@gmaclennan>\",\n    \"Mike Bostock <@mbostock>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gis\",\n    \"concave\",\n    \"geometry\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"@types/topojson-client\": \"3.1.3\",\n    \"@types/topojson-server\": \"3.0.3\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/clone\": \"workspace:*\",\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@turf/tin\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"topojson-client\": \"3.x\",\n    \"topojson-server\": \"3.x\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-concave/test/in/concave-hull.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"maxEdge\": 100000\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.7123413085937, -13.06342578889815]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.5777587890625, -13.090179355733726]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.5447998046875, -13.237271908200585]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.48162841796875, -13.365571074958245]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.627197265625, -13.667338259654947]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.923828125, -13.098204859664591]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.9403076171875, -13.288065114120283]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-312.07763671875, -13.368243250897287]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.94580078125, -13.4216805428783]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.37451171875, -13.154376055418515]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.42120361328125, -13.223903512667826]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.363525390625, -13.330830095126228]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.4788818359375, -13.552551566455168]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-312.0172119140625, -13.536530399503015]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.83593749999994, -13.608617139653036]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.66015625, -13.579251111245878]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.4129638671875, -13.467092893859657]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.978759765625, -13.18914225554674]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.8194580078125, -13.114255082724755]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.64642333984375, -13.098204859664591]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.9183349609375, -13.523178603049853]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.4459228515625, -13.095529720741482]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.74255371093744, -13.62463343823614]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-312.01446533203125, -13.266679794815271]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.923828125, -13.573911442504558]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-312.0254516601562, -13.386947652895737]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.55578613281244, -13.552551566455168]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.50360107421875, -13.435038009690732]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.3470458984375, -13.389619591747595]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.87164306640625, -13.141003126359843]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.7864990234375, -13.672675818669807]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.802978515625, -13.042020847922622]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.53656005859375, -13.603278132528756]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-concave/test/in/fiji.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"maxEdge\": 20,\n    \"units\": \"miles\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.6484375, -16.90442787825499]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.62921142578125, -16.675662043309767]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.95330810546875, -16.830832189624815]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.85443115234375, -16.675662043309767]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.20050048828125, -16.97274101999901]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.142822265625, -16.825574258731486]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.0823974609375, -17.069913009885465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.4833984375, -17.295576394503744]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.8187255859375, -16.893915964126325]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.01922607421875, -16.759837823776632]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.76791381835938, -16.784820349855963]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.01510620117188, -16.914939206301646]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.92721557617188, -16.942528651601]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-concave/test/in/hole.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"maxEdge\": 20\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.7123413085937, -13.06342578889815]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.5777587890625, -13.090179355733726]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.5447998046875, -13.237271908200585]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.48162841796875, -13.365571074958245]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.627197265625, -13.667338259654947]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.923828125, -13.098204859664591]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.9403076171875, -13.288065114120283]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-312.07763671875, -13.368243250897287]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.94580078125, -13.4216805428783]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.37451171875, -13.154376055418515]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.42120361328125, -13.223903512667826]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.363525390625, -13.330830095126228]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.4788818359375, -13.552551566455168]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-312.0172119140625, -13.536530399503015]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.83593749999994, -13.608617139653036]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.66015625, -13.579251111245878]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.4129638671875, -13.467092893859657]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.978759765625, -13.18914225554674]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.8194580078125, -13.114255082724755]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.64642333984375, -13.098204859664591]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.9183349609375, -13.523178603049853]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.4459228515625, -13.095529720741482]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.74255371093744, -13.62463343823614]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-312.01446533203125, -13.266679794815271]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.923828125, -13.573911442504558]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-312.0254516601562, -13.386947652895737]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.55578613281244, -13.552551566455168]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.50360107421875, -13.435038009690732]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.3470458984375, -13.389619591747595]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.87164306640625, -13.141003126359843]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.7864990234375, -13.672675818669807]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.802978515625, -13.042020847922622]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.53656005859375, -13.603278132528756]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-concave/test/in/issue-333.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"maxEdge\": 3,\n    \"units\": \"kilometers\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4723426, 14.6479128]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5201483, 14.615014]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.51424745714287, 14.612971957142857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5132231, 14.6165441]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.48973311666667, 14.6495531]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4735275, 14.6465985]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4723723, 14.6485518]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47247347499998, 14.6477638]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47238633157896, 14.648176778947366]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.48551095454544, 14.644347027272726]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.48639698333333, 14.607210466666666]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5019386, 14.6511386]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5269321, 14.6573653]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5148751, 14.5823441]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.49990055555557, 14.600796044444443]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.494049, 14.5869676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47337224999998, 14.646883625000001]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4724361, 14.6486341]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4850658857143, 14.644084114285714]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.51289270000001, 14.618719666666667]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4735528, 14.6467951]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4723841, 14.6480488]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4732471, 14.6471636]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4722805, 14.6479045]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5201343, 14.6150696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.49114352000001, 14.66722966]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.472421, 14.648614]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47381937499999, 14.646442443749999]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5170675, 14.604278]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.55477304537037, 14.62646318703704]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5564985, 14.627035]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5820498, 14.6369336]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.60474186153844, 14.614272646153846]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5156173, 14.6304]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.51274230000001, 14.639448640000001]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.50523385, 14.651190725000001]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.494068, 14.6524481]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4815628, 14.6482253]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4804793, 14.6461901]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.495238, 14.6457041]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4734271, 14.6466975]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4724963, 14.64851]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4723928, 14.6478788]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47250081000001, 14.647835989999999]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.520111, 14.6150598]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5155081, 14.6274348]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.51233063333332, 14.635753766666667]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.50694795, 14.64236045]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.50368926666665, 14.645259533333332]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47352167142857, 14.646744814285712]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4724291, 14.6485725]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47394456363636, 14.646360845454545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.48284538181816, 14.644143345454546]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5170826, 14.623364]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.55518267142857, 14.628796907142858]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5612823875, 14.6354786625]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5544466, 14.6730593]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5713858, 14.6338483]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.49277926666667, 14.649214383333335]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47338355, 14.6469332]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4724373, 14.6484558]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4733026, 14.6471671]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4723626, 14.6479208]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5201275, 14.6150038]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5167131875, 14.61330465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.473430925, 14.646790600000001]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4724253, 14.6485335]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47381234375001, 14.646451625000001]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4814805, 14.6483101]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.48557200000002, 14.644329030769231]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5171176, 14.6233125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.54256017980768, 14.62663586923077]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5269091, 14.6573203]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5564916, 14.6270911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5713228, 14.6338651]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5621048, 14.590847633333332]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.56126696666666, 14.590278533333332]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5705346, 14.5772148]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47337158333334, 14.646920666666668]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4724626, 14.6485841]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4723723, 14.6478811]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4722628, 14.6479208]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47250489090911, 14.647854472727271]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.520098, 14.615]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.50365512500001, 14.6452732]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.49116085, 14.667282275]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.48990055, 14.65017205]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47347362, 14.646725746666664]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4724285, 14.6485766]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47248388571428, 14.647815600000001]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5169941, 14.604693]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.53797681111112, 14.629561677777777]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.49985591428572, 14.600705557142857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4940656, 14.586968]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4878766, 14.6688766]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4875626, 14.6704823]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.48763687142856, 14.668962442857141]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4895363, 14.6683016]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47322072, 14.646995100000001]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4722951, 14.6482883]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47311286666667, 14.647139766666667]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4724025, 14.6485518]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4723355, 14.6478488]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4732443, 14.6471278]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4723105, 14.6478846]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47244180625, 14.64800523125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5200513, 14.6150821]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5039411, 14.644767]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.50140640000001, 14.65061405]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47698511818181, 14.654281172727275]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47332180000001, 14.6469442]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4723918, 14.6485571]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47337318571428, 14.646881257142856]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5015093, 14.65032405]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.54214180000001, 14.624207466666666]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5478511, 14.6249898]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4734413, 14.6466325]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-concave/test/in/pts1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"maxEdge\": 5.5,\n    \"units\": \"miles\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.40898132324217, 37.77505678240509]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.43095397949219, 37.74411415606583]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.44331359863283, 37.726194088705576]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.47833251953125, 37.73651223296987]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.4103546142578, 37.72184917678752]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.41790771484375, 37.74682893940135]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.53395080566405, 37.83690319650768]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.51541137695311, 37.83473402375478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.49069213867188, 37.837445479729666]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.52639770507812, 37.83473402375478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.62527465820311, 37.89327929625019]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.60467529296875, 37.902490518640995]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.58682250976562, 37.895988598965644]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-concave/test/in/pts2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"maxEdge\": 2,\n    \"units\": \"miles\"\n  },\n  \"crs\": {\n    \"type\": \"name\",\n    \"properties\": {\n      \"name\": \"urn:ogc:def:crs:OGC:1.3:CRS84\"\n    }\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 51,\n        \"OBJECTID_2\": 25,\n        \"OBJECTID\": 49.0,\n        \"PRECINCT_N\": 7.0,\n        \"FACILITY_D\": \"Recreation Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_49\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Hardy Recreation Center\",\n        \"ADDRESS\": \"4500 Q STREET NW\",\n        \"ADDRESS_ID\": 284929\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.084981183092964, 38.909915833213795]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 52,\n        \"OBJECTID_2\": 26,\n        \"OBJECTID\": 50.0,\n        \"PRECINCT_N\": 5.0,\n        \"FACILITY_D\": \"Large Meeting Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_50\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Georgetown Community Library\",\n        \"ADDRESS\": \"3260 R STREET NW\",\n        \"ADDRESS_ID\": 295142\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.066007305842078, 38.913434229544386]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 53,\n        \"OBJECTID_2\": 27,\n        \"OBJECTID\": 51.0,\n        \"PRECINCT_N\": 76.0,\n        \"FACILITY_D\": \"Community Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_51\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Bethesda Baptist Church\",\n        \"ADDRESS\": \"1808 CAPITOL AVENUE NE\",\n        \"ADDRESS_ID\": 155925\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.98614224512842, 38.911020521048734]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 54,\n        \"OBJECTID_2\": 28,\n        \"OBJECTID\": 52.0,\n        \"PRECINCT_N\": 15.0,\n        \"FACILITY_D\": \"Community Room (Lower Level)\",\n        \"ACCESSIBLE\": \"Yes - Use side entrance on P Street\",\n        \"GIS_ID\": \"plp_52\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Foundry United Methodist Church\",\n        \"ADDRESS\": \"1500 16TH STREET NW\",\n        \"ADDRESS_ID\": 243309\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.036879490722725, 38.910033613313317]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 55,\n        \"OBJECTID_2\": 29,\n        \"OBJECTID\": 53.0,\n        \"PRECINCT_N\": 14.0,\n        \"FACILITY_D\": \"Guild Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_53\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"St. Thomas' Episcopal Parish\",\n        \"ADDRESS\": \"1772 CHURCH STREET NW\",\n        \"ADDRESS_ID\": 225918\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.041041176671854, 38.910212212295264]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 56,\n        \"OBJECTID_2\": 30,\n        \"OBJECTID\": 54.0,\n        \"PRECINCT_N\": 16.0,\n        \"FACILITY_D\": \"Fellowship Hall\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance at the rear of the church. Use entrance on R St. side of church.\",\n        \"GIS_ID\": \"plp_54\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"15th Street Presbyterian Church\",\n        \"ADDRESS\": \"1701 15TH STREET NW\",\n        \"ADDRESS_ID\": 240136\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.03417962817295, 38.912811255258127]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 57,\n        \"OBJECTID_2\": 31,\n        \"OBJECTID\": 55.0,\n        \"PRECINCT_N\": 18.0,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_55\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Kennedy Recreation Center\",\n        \"ADDRESS\": \"1401 7TH STREET NW\",\n        \"ADDRESS_ID\": 279127\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.021536456247759, 38.908989778469483]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 58,\n        \"OBJECTID_2\": 32,\n        \"OBJECTID\": 56.0,\n        \"PRECINCT_N\": 17.0,\n        \"FACILITY_D\": \"Exhibit Rooms\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_56\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"The Charles Sumner School Museum and Archives\",\n        \"ADDRESS\": \"1201 17th STREET NW\\r\\n1201 17TH STREET NW\",\n        \"ADDRESS_ID\": 301200\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.038222905521806, 38.905977334681452]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 59,\n        \"OBJECTID_2\": 33,\n        \"OBJECTID\": 57.0,\n        \"PRECINCT_N\": 4.0,\n        \"FACILITY_D\": \"Large Meeting Room (2nd Floor)\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_57\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"West End Public Library\",\n        \"ADDRESS\": \"1101 24TH STREET NW\",\n        \"ADDRESS_ID\": 218248\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.05109790160472, 38.904019151364736]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 60,\n        \"OBJECTID_2\": 34,\n        \"OBJECTID\": 58.0,\n        \"PRECINCT_N\": 77.0,\n        \"FACILITY_D\": \"Community Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_58\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Delta Towers Apartments\",\n        \"ADDRESS\": \"1400 FLORIDA AVENUE NE\",\n        \"ADDRESS_ID\": 65280\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.984331916380768, 38.900557364972023]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 61,\n        \"OBJECTID_2\": 35,\n        \"OBJECTID\": 59.0,\n        \"PRECINCT_N\": 129.0,\n        \"FACILITY_D\": \"Main Lobby\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_59\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Martin Luther King Library\",\n        \"ADDRESS\": \"901 G STREET NW\",\n        \"ADDRESS_ID\": 239815\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02476626008324, 38.898691330337449]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 62,\n        \"OBJECTID_2\": 36,\n        \"OBJECTID\": 60.0,\n        \"PRECINCT_N\": 82.0,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_60\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Sherwood Recreation Center\",\n        \"ADDRESS\": \"640 10TH STREET NE\",\n        \"ADDRESS_ID\": 301075\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.993016818542159, 38.898545289067677]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 63,\n        \"OBJECTID_2\": 37,\n        \"OBJECTID\": 61.0,\n        \"PRECINCT_N\": 3.0,\n        \"FACILITY_D\": \"Dining Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_61\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"St. Mary's Court\",\n        \"ADDRESS\": \"725 24TH STREET NW\",\n        \"ADDRESS_ID\": 242350\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.051147709627202, 38.898862835793516]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 64,\n        \"OBJECTID_2\": 38,\n        \"OBJECTID\": 62.0,\n        \"PRECINCT_N\": 1.0,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_62\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Walker-Jones EC\",\n        \"ADDRESS\": \"1125 NEW JERSEY AVENUE NW\",\n        \"ADDRESS_ID\": 307735\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.013915692345691, 38.90419164723351]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 65,\n        \"OBJECTID_2\": 39,\n        \"OBJECTID\": 64.0,\n        \"PRECINCT_N\": 10.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_64\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Horace Mann Community Center\",\n        \"ADDRESS\": \"4430 NEWARK STREET NW\",\n        \"ADDRESS_ID\": 294597\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.087826188256471, 38.934291971694272]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 66,\n        \"OBJECTID_2\": 40,\n        \"OBJECTID\": 65.0,\n        \"PRECINCT_N\": 19.0,\n        \"FACILITY_D\": \"Gym/Armory\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_65\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Dunbar Senior High School\",\n        \"ADDRESS\": \"1301 NEW JERSEY AVENUE NW\",\n        \"ADDRESS_ID\": 279021\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.014693855315954, 38.908523216218732]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 67,\n        \"OBJECTID_2\": 41,\n        \"OBJECTID\": 66.0,\n        \"PRECINCT_N\": 20.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_66\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Washington Metropolitan High School\",\n        \"ADDRESS\": \"300 BRYANT STREET NW\",\n        \"ADDRESS_ID\": 294475\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.015557008963071, 38.920441293733219]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 68,\n        \"OBJECTID_2\": 42,\n        \"OBJECTID\": 67.0,\n        \"PRECINCT_N\": 21.0,\n        \"FACILITY_D\": \"Fellowship Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_67\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Vermont Avenue Baptist Church\",\n        \"ADDRESS\": \"1630 VERMONT AVENUE NW\",\n        \"ADDRESS_ID\": 243277\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.028781227702837, 38.911825717245286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 69,\n        \"OBJECTID_2\": 43,\n        \"OBJECTID\": 68.0,\n        \"PRECINCT_N\": 22.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance located on V Street.\",\n        \"GIS_ID\": \"plp_68\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Garnet-Patterson Middle School\",\n        \"ADDRESS\": \"2001 10TH STREET NW\",\n        \"ADDRESS_ID\": 294533\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.025748782113368, 38.917544774486181]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 70,\n        \"OBJECTID_2\": 44,\n        \"OBJECTID\": 69.0,\n        \"PRECINCT_N\": 24.0,\n        \"FACILITY_D\": \"Living Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_69\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Marie Reed Learning Center\",\n        \"ADDRESS\": \"2200 CHAMPLAIN STREET NW\",\n        \"ADDRESS_ID\": 235577\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.04052994742716, 38.919167306666537]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 71,\n        \"OBJECTID_2\": 45,\n        \"OBJECTID\": 71.0,\n        \"PRECINCT_N\": 27.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_71\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Eaton Elementary School\",\n        \"ADDRESS\": \"3301 LOWELL STREET NW\",\n        \"ADDRESS_ID\": 294562\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.065821132685912, 38.932726738826823]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 72,\n        \"OBJECTID_2\": 46,\n        \"OBJECTID\": 72.0,\n        \"PRECINCT_N\": 29.0,\n        \"FACILITY_D\": \"Community Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_72\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"2nd District Police Station\",\n        \"ADDRESS\": \"3320 IDAHO AVENUE NW\",\n        \"ADDRESS_ID\": 222229\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.074838057652229, 38.934845831784592]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 73,\n        \"OBJECTID_2\": 47,\n        \"OBJECTID\": 73.0,\n        \"PRECINCT_N\": 30.0,\n        \"FACILITY_D\": \"Multi-Purpose Room (on Albemarle St.)\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance at side of school, nearest to Wisconsin Ave.\",\n        \"GIS_ID\": \"plp_73\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Janney Elementary School\",\n        \"ADDRESS\": \"4130 ALBEMARLE STREET NW\",\n        \"ADDRESS_ID\": 285713\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.080994819731956, 38.947550087065927]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 74,\n        \"OBJECTID_2\": 48,\n        \"OBJECTID\": 74.0,\n        \"PRECINCT_N\": 33.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes - Use rear entrance on Ellicott St.\",\n        \"GIS_ID\": \"plp_74\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Ben Murch Elementary School\",\n        \"ADDRESS\": \"4810 36TH STREET NW\",\n        \"ADDRESS_ID\": 294602\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.07007920338755, 38.952933189596607]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 75,\n        \"OBJECTID_2\": 49,\n        \"OBJECTID\": 75.0,\n        \"PRECINCT_N\": 35.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_75\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"H.D. Cooke Elementary School\",\n        \"ADDRESS\": \"2525 17TH STREET NW\",\n        \"ADDRESS_ID\": 235863\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.038813828001906, 38.923931654217967]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 76,\n        \"OBJECTID_2\": 50,\n        \"OBJECTID\": 76.0,\n        \"PRECINCT_N\": 37.0,\n        \"FACILITY_D\": \"Community Meeting Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_76\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Banneker Community Recreation Center\",\n        \"ADDRESS\": \"2500 GEORGIA AVENUE NW\",\n        \"ADDRESS_ID\": 232292\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.022579801385916, 38.922697600945042]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 77,\n        \"OBJECTID_2\": 51,\n        \"OBJECTID\": 77.0,\n        \"PRECINCT_N\": 38.0,\n        \"FACILITY_D\": \"Meeting Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_77\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Cesar Chavez Prep Charter Middle School\",\n        \"ADDRESS\": \"770 KENYON STREET NW\",\n        \"ADDRESS_ID\": 285409\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.025887356034701, 38.929619476288885]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 78,\n        \"OBJECTID_2\": 52,\n        \"OBJECTID\": 78.0,\n        \"PRECINCT_N\": 40.0,\n        \"FACILITY_D\": \"Assembly Hall\",\n        \"ACCESSIBLE\": \"Yes - Use entrance on Newton Street.\",\n        \"GIS_ID\": \"plp_78\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Bancroft Elementary School\",\n        \"ADDRESS\": \"1755 NEWTON STREET NW\",\n        \"ADDRESS_ID\": 294528\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.040553449803028, 38.934318023511061]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 79,\n        \"OBJECTID_2\": 53,\n        \"OBJECTID\": 79.0,\n        \"PRECINCT_N\": 46.0,\n        \"FACILITY_D\": \"Classroom\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_79\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"E.L. Haynes Public Charter School @ Clark\",\n        \"ADDRESS\": \"4501 KANSAS AVENUE NW\",\n        \"ADDRESS_ID\": 284930\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.022416369914765, 38.94560156110601]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 80,\n        \"OBJECTID_2\": 54,\n        \"OBJECTID\": 80.0,\n        \"PRECINCT_N\": 47.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes - Accessible ramped entrance off of alley.\",\n        \"GIS_ID\": \"plp_80\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Powell Elementary School\",\n        \"ADDRESS\": \"1350 UPSHUR STREET NW\",\n        \"ADDRESS_ID\": 255302\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.031227415751488, 38.941534009869706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 81,\n        \"OBJECTID_2\": 55,\n        \"OBJECTID\": 81.0,\n        \"PRECINCT_N\": 48.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes - Use south entrance on 13th St.\",\n        \"GIS_ID\": \"plp_81\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Sharpe Health School\",\n        \"ADDRESS\": \"4300 13TH STREET NW\",\n        \"ADDRESS_ID\": 255254\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.030468336673792, 38.943474325156487]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 82,\n        \"OBJECTID_2\": 56,\n        \"OBJECTID\": 82.0,\n        \"PRECINCT_N\": 49.0,\n        \"FACILITY_D\": \"Science Room\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance located on Rock Creek Church Road.\",\n        \"GIS_ID\": \"plp_82\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Raymond Elementary School\",\n        \"ADDRESS\": \"915 SPRING ROAD NW\",\n        \"ADDRESS_ID\": 226682\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.026432654256809, 38.935810871763174]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 83,\n        \"OBJECTID_2\": 57,\n        \"OBJECTID\": 83.0,\n        \"PRECINCT_N\": 51.0,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes - Use parking lot entrance on Northampton St.\",\n        \"GIS_ID\": \"plp_83\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Lafayette Elementary School\",\n        \"ADDRESS\": \"5701 BROAD BRANCH ROAD NW\",\n        \"ADDRESS_ID\": 294611\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.06803711636698, 38.966627220648277]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 84,\n        \"OBJECTID_2\": 58,\n        \"OBJECTID\": 84.0,\n        \"PRECINCT_N\": 53.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_84\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Brightwood Elementary School\",\n        \"ADDRESS\": \"1300 NICHOLSON STREET NW\",\n        \"ADDRESS_ID\": 294515\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.030688851988643, 38.960535392858461]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 85,\n        \"OBJECTID_2\": 59,\n        \"OBJECTID\": 85.0,\n        \"PRECINCT_N\": 54.0,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes - Use entrance located at 14th & Farragut Streets.\",\n        \"GIS_ID\": \"plp_85\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"West Elementary School\",\n        \"ADDRESS\": \"1338 FARRAGUT STREET NW\",\n        \"ADDRESS_ID\": 294517\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.032253049830672, 38.951367080952416]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 86,\n        \"OBJECTID_2\": 60,\n        \"OBJECTID\": 86.0,\n        \"PRECINCT_N\": 55.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_86\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Barnard Elementary School\",\n        \"ADDRESS\": \"430 DECATUR STREET NW\",\n        \"ADDRESS_ID\": 248305\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.017777080008301, 38.948230614415095]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 87,\n        \"OBJECTID_2\": 61,\n        \"OBJECTID\": 87.0,\n        \"PRECINCT_N\": 56.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_87\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Truesdell Elementary School\",\n        \"ADDRESS\": \"800 INGRAHAM STREET NW\",\n        \"ADDRESS_ID\": 294497\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.025071570135182, 38.953968358095487]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 88,\n        \"OBJECTID_2\": 62,\n        \"OBJECTID\": 88.0,\n        \"PRECINCT_N\": 57.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_88\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Hattie Holmes Wellness Center\",\n        \"ADDRESS\": \"324 KENNEDY STREET NW\",\n        \"ADDRESS_ID\": 307575\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.017112348141424, 38.956388773368296]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 89,\n        \"OBJECTID_2\": 63,\n        \"OBJECTID\": 90.0,\n        \"PRECINCT_N\": 59.0,\n        \"FACILITY_D\": \"Armory\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_90\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Coolidge Senior High School\",\n        \"ADDRESS\": \"6315 5TH STREET NW\",\n        \"ADDRESS_ID\": 294615\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.01957835173927, 38.967284239673525]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 90,\n        \"OBJECTID_2\": 64,\n        \"OBJECTID\": 91.0,\n        \"PRECINCT_N\": 62.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes - Use ramped entrance on 14th Street.\",\n        \"GIS_ID\": \"plp_91\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Shepherd Elementary School\",\n        \"ADDRESS\": \"7800 14TH STREET NW\",\n        \"ADDRESS_ID\": 256319\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.03399523386544, 38.984602950032162]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 91,\n        \"OBJECTID_2\": 65,\n        \"OBJECTID\": 92.0,\n        \"PRECINCT_N\": 63.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_92\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Takoma Community Center\",\n        \"ADDRESS\": \"300 VAN BUREN STREET NW\",\n        \"ADDRESS_ID\": 296168\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.018051676182949, 38.968886691314118]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 92,\n        \"OBJECTID_2\": 66,\n        \"OBJECTID\": 93.0,\n        \"PRECINCT_N\": 64.0,\n        \"FACILITY_D\": \"Recreation Area\",\n        \"ACCESSIBLE\": \"Yes - Use rear entrance on 2nd St.\",\n        \"GIS_ID\": \"plp_93\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Rabaut - Administrative Building\",\n        \"ADDRESS\": \"100 PEABODY STREET NW\",\n        \"ADDRESS_ID\": 277545\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.012867448323647, 38.962164521997181]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 93,\n        \"OBJECTID_2\": 67,\n        \"OBJECTID\": 94.0,\n        \"PRECINCT_N\": 65.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_94\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"LaSalle Elementary School\",\n        \"ADDRESS\": \"501 RIGGS ROAD NE\",\n        \"ADDRESS_ID\": 294489\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.999882538481089, 38.959971809983642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 94,\n        \"OBJECTID_2\": 68,\n        \"OBJECTID\": 95.0,\n        \"PRECINCT_N\": 66.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance next to parking lot on Hamilton Street.\",\n        \"GIS_ID\": \"plp_95\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"UDC Community College @ Backus\",\n        \"ADDRESS\": \"5171 SOUTH DAKOTA AVENUE NE\",\n        \"ADDRESS_ID\": 294607\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.997267383153954, 38.953340525729047]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 95,\n        \"OBJECTID_2\": 69,\n        \"OBJECTID\": 96.0,\n        \"PRECINCT_N\": 67.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance next to the parking lot on 14th Street\",\n        \"GIS_ID\": \"plp_96\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Bunker Hill Elementary School\",\n        \"ADDRESS\": \"1401 MICHIGAN AVENUE NE\",\n        \"ADDRESS_ID\": 286131\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.98499562999821, 38.942012135008142]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 96,\n        \"OBJECTID_2\": 70,\n        \"OBJECTID\": 97.0,\n        \"PRECINCT_N\": 68.0,\n        \"FACILITY_D\": \"Reception Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_97\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"St. Francis Hall\",\n        \"ADDRESS\": \"1340 QUINCY STREET NE\",\n        \"ADDRESS_ID\": 66591\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.986529583871643, 38.9375726751204]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 97,\n        \"OBJECTID_2\": 71,\n        \"OBJECTID\": 98.0,\n        \"PRECINCT_N\": 69.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_98\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Hyde Public Charter School @ Taft\",\n        \"ADDRESS\": \"1800 PERRY STREET NE\",\n        \"ADDRESS_ID\": 294529\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.978595514953696, 38.936796147384342]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 98,\n        \"OBJECTID_2\": 72,\n        \"OBJECTID\": 99.0,\n        \"PRECINCT_N\": 70.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes - Use entrance on Monroe Street.\",\n        \"GIS_ID\": \"plp_99\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Burroughs Elementary School\",\n        \"ADDRESS\": \"1820 MONROE STREET NE\",\n        \"ADDRESS_ID\": 294530\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.978456370398874, 38.933502326896445]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 99,\n        \"OBJECTID_2\": 73,\n        \"OBJECTID\": 100.0,\n        \"PRECINCT_N\": 73.0,\n        \"FACILITY_D\": \"Library (Lower Level)\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_100\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"M.M. Bethune Day Academy @ Slowe\",\n        \"ADDRESS\": \"1404 JACKSON STREET NE\",\n        \"ADDRESS_ID\": 294522\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.986864622728547, 38.929605590082105]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 100,\n        \"OBJECTID_2\": 74,\n        \"OBJECTID\": 101.0,\n        \"PRECINCT_N\": 74.0,\n        \"FACILITY_D\": \"Multipurpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_101\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Shaed Elementary School\",\n        \"ADDRESS\": \"301 DOUGLAS STREET NE\",\n        \"ADDRESS_ID\": 294477\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.002538318002209, 38.923654687421774]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 101,\n        \"OBJECTID_2\": 75,\n        \"OBJECTID\": 102.0,\n        \"PRECINCT_N\": 78.0,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_102\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Trinidad Recreation Center\",\n        \"ADDRESS\": \"1310 CHILDRESS STREET NE\",\n        \"ADDRESS_ID\": 68509\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.982734368763062, 38.906442359837776]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 102,\n        \"OBJECTID_2\": 76,\n        \"OBJECTID\": 103.0,\n        \"PRECINCT_N\": 81.0,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_103\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Miner Elementary School\",\n        \"ADDRESS\": \"601 15TH STREET NE\",\n        \"ADDRESS_ID\": 289548\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.982904313087829, 38.897375682182471]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 103,\n        \"OBJECTID_2\": 77,\n        \"OBJECTID\": 104.0,\n        \"PRECINCT_N\": 79.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_104\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Browne Junior High School\",\n        \"ADDRESS\": \"850 26TH STREET NE\",\n        \"ADDRESS_ID\": 294501\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.970667052474028, 38.902598549008218]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 104,\n        \"OBJECTID_2\": 78,\n        \"OBJECTID\": 105.0,\n        \"PRECINCT_N\": 83.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes - Use entrance located on 7th Street.\",\n        \"GIS_ID\": \"plp_105\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"J.O. Wilson Elementary School\",\n        \"ADDRESS\": \"660 K STREET NE\",\n        \"ADDRESS_ID\": 288841\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.996589027486436, 38.90275766582991]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 105,\n        \"OBJECTID_2\": 79,\n        \"OBJECTID\": 106.0,\n        \"PRECINCT_N\": 84.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_106\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Stuart-Hobson Middle School\",\n        \"ADDRESS\": \"410 E STREET NE\",\n        \"ADDRESS_ID\": 294483\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.000004386249671, 38.896297370808789]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 106,\n        \"OBJECTID_2\": 80,\n        \"OBJECTID\": 107.0,\n        \"PRECINCT_N\": 85.0,\n        \"FACILITY_D\": \"Auditorium (A-Level)\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_107\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"The Specialty Hospital of Washington\",\n        \"ADDRESS\": \"700 CONSTITUTION AVENUE NE\",\n        \"ADDRESS_ID\": 295162\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.995356592112472, 38.892321795813096]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 107,\n        \"OBJECTID_2\": 81,\n        \"OBJECTID\": 108.0,\n        \"PRECINCT_N\": 86.0,\n        \"FACILITY_D\": \"Recreation Room (lower level)\",\n        \"ACCESSIBLE\": \"Yes - Accessible - side entrance, next to the parking lot.\",\n        \"GIS_ID\": \"plp_108\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Eliot Junior High School\",\n        \"ADDRESS\": \"1830 CONSTITUTION AVENUE NE\",\n        \"ADDRESS_ID\": 286499\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.978977913437262, 38.892431159766303]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 108,\n        \"OBJECTID_2\": 82,\n        \"OBJECTID\": 109.0,\n        \"PRECINCT_N\": 87.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes = Use entrance at the rear of the school, next to the parking lot.\",\n        \"GIS_ID\": \"plp_109\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Payne Elementary School\",\n        \"ADDRESS\": \"305 15TH STREET SE\",\n        \"ADDRESS_ID\": 294478\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.98419490800174, 38.885132314488203]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 109,\n        \"OBJECTID_2\": 83,\n        \"OBJECTID\": 110.0,\n        \"PRECINCT_N\": 89.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_110\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"William H. Rumsey Aquatic Center\",\n        \"ADDRESS\": \"635 NORTH CAROLINA AVENUE SE\",\n        \"ADDRESS_ID\": 295159\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.997028705938774, 38.886585046654147]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 110,\n        \"OBJECTID_2\": 84,\n        \"OBJECTID\": 111.0,\n        \"PRECINCT_N\": 91.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_111\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Watkins Elementary School\",\n        \"ADDRESS\": \"420 12TH STREET SE\",\n        \"ADDRESS_ID\": 294486\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.989996763548163, 38.883466674788586]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 111,\n        \"OBJECTID_2\": 85,\n        \"OBJECTID\": 113.0,\n        \"PRECINCT_N\": 92.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_113\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Kenilworth Elementary School\",\n        \"ADDRESS\": \"1300 44TH STREET NE\",\n        \"ADDRESS_ID\": 294516\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.940484939136297, 38.908228732598651]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 112,\n        \"OBJECTID_2\": 86,\n        \"OBJECTID\": 114.0,\n        \"PRECINCT_N\": 93.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance at the rear of the school.\",\n        \"GIS_ID\": \"plp_114\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Houston Elementary School\",\n        \"ADDRESS\": \"1100 50TH PLACE NE\",\n        \"ADDRESS_ID\": 156316\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.9299476407989, 38.905414987198981]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 113,\n        \"OBJECTID_2\": 87,\n        \"OBJECTID\": 115.0,\n        \"PRECINCT_N\": 94.0,\n        \"FACILITY_D\": \"Community Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_115\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Merritt Education Center\",\n        \"ADDRESS\": \"5002 HAYES STREET NE\",\n        \"ADDRESS_ID\": 294606\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.930131189589616, 38.900230067255841]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 114,\n        \"OBJECTID_2\": 88,\n        \"OBJECTID\": 116.0,\n        \"PRECINCT_N\": 95.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes -Use entrance located at 57th & Eads Streets.\",\n        \"GIS_ID\": \"plp_116\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Drew Elementary School\",\n        \"ADDRESS\": \"5500 EADS STREET NE\",\n        \"ADDRESS_ID\": 294609\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.922708043967461, 38.896192887555607]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 115,\n        \"OBJECTID_2\": 89,\n        \"OBJECTID\": 117.0,\n        \"PRECINCT_N\": 100.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_117\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Thomas Elementary School\",\n        \"ADDRESS\": \"650 ANACOSTIA AVENUE NE\",\n        \"ADDRESS_ID\": 294493\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.952110905321987, 38.901278637588895]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 116,\n        \"OBJECTID_2\": 90,\n        \"OBJECTID\": 118.0,\n        \"PRECINCT_N\": 98.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes - Use rear entrance of the school.\",\n        \"GIS_ID\": \"plp_118\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Smothers Elementary School\",\n        \"ADDRESS\": \"4400 BROOKS STREET NE\",\n        \"ADDRESS_ID\": 294596\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.938468638784286, 38.893553701828701]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 117,\n        \"OBJECTID_2\": 91,\n        \"OBJECTID\": 120.0,\n        \"PRECINCT_N\": 103.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes - Use ground level entrance.\",\n        \"GIS_ID\": \"plp_120\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Plummer Elementary School\",\n        \"ADDRESS\": \"4601 TEXAS AVENUE SE\",\n        \"ADDRESS_ID\": 19536\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.939934669841293, 38.8872398636938]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 118,\n        \"OBJECTID_2\": 92,\n        \"OBJECTID\": 121.0,\n        \"PRECINCT_N\": 104.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes- Use ground level entrance.\",\n        \"GIS_ID\": \"plp_121\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Nalle Elementary School\",\n        \"ADDRESS\": \"219 50TH STREET SE\",\n        \"ADDRESS_ID\": 294474\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.930796499569979, 38.885954085228562]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 119,\n        \"OBJECTID_2\": 93,\n        \"OBJECTID\": 122.0,\n        \"PRECINCT_N\": 105.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes - Use entrance located on D Street.\",\n        \"GIS_ID\": \"plp_122\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"CW Harris Elementary School\",\n        \"ADDRESS\": \"301 53RD STREET SE\",\n        \"ADDRESS_ID\": 289801\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.926115493732041, 38.883598497883369]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 120,\n        \"OBJECTID_2\": 94,\n        \"OBJECTID\": 123.0,\n        \"PRECINCT_N\": 106.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes - Accessible rear entrance, next to the parking lot.\",\n        \"GIS_ID\": \"plp_123\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Davis Elementary School\",\n        \"ADDRESS\": \"4430 H STREET SE\",\n        \"ADDRESS_ID\": 294598\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.937616302328593, 38.879067951063831]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 121,\n        \"OBJECTID_2\": 95,\n        \"OBJECTID\": 124.0,\n        \"PRECINCT_N\": 107.0,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_124\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Sousa Middle School\",\n        \"ADDRESS\": \"3650 ELY PLACE SE\",\n        \"ADDRESS_ID\": 294584\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.953161747717687, 38.883908000174614]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 122,\n        \"OBJECTID_2\": 96,\n        \"OBJECTID\": 125.0,\n        \"PRECINCT_N\": 142.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_125\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Jefferson Junior High School\",\n        \"ADDRESS\": \"801 7TH STREET SW\",\n        \"ADDRESS_ID\": 276812\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.022910654604146, 38.879870599424763]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 123,\n        \"OBJECTID_2\": 97,\n        \"OBJECTID\": 126.0,\n        \"PRECINCT_N\": 140.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_126\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Anacostia Senior High School\",\n        \"ADDRESS\": \"1601 16TH STREET SE\",\n        \"ADDRESS_ID\": 155922\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.983077248298486, 38.870083725754895]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 124,\n        \"OBJECTID_2\": 98,\n        \"OBJECTID\": 127.0,\n        \"PRECINCT_N\": 139.0,\n        \"FACILITY_D\": \"Community Service Area\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_127\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Thurgood Marshall Elementary\",\n        \"ADDRESS\": \"3100 FORT LINCOLN DRIVE NE\",\n        \"ADDRESS_ID\": 294553\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.957633696697528, 38.927305943770008]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 1,\n        \"OBJECTID_2\": 101,\n        \"OBJECTID\": 130.0,\n        \"PRECINCT_N\": 131.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_130\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Van Ness Elementary School\",\n        \"ADDRESS\": \"1150 5TH STREET SE\",\n        \"ADDRESS_ID\": 294508\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.999244002225964, 38.87679611768769]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 2,\n        \"OBJECTID_2\": 102,\n        \"OBJECTID\": 131.0,\n        \"PRECINCT_N\": 125.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_131\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Hendley Elementary School\",\n        \"ADDRESS\": \"425 CHESAPEAKE STREET SE\",\n        \"ADDRESS_ID\": 24445\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.999184840242322, 38.828985580495711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 3,\n        \"OBJECTID_2\": 103,\n        \"OBJECTID\": 132.0,\n        \"PRECINCT_N\": 126.0,\n        \"FACILITY_D\": \"Library\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_132\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"W.B. Patterson Elementary School\",\n        \"ADDRESS\": \"4399 SOUTH CAPITOL TERRACE SW\",\n        \"ADDRESS_ID\": 301073\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.008475600194785, 38.826981192201202]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 4,\n        \"OBJECTID_2\": 104,\n        \"OBJECTID\": 133.0,\n        \"PRECINCT_N\": 123.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_133\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Martin Luther King Elementary School\",\n        \"ADDRESS\": \"600 ALABAMA AVENUE SE\",\n        \"ADDRESS_ID\": 294492\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.997583187909655, 38.843386565863888]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 5,\n        \"OBJECTID_2\": 105,\n        \"OBJECTID\": 135.0,\n        \"PRECINCT_N\": 121.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_135\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"National Collegiate Prep @ Draper\",\n        \"ADDRESS\": \"908 WAHLER PLACE SE\",\n        \"ADDRESS_ID\": 294502\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.992268817990308, 38.834327886510565]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 6,\n        \"OBJECTID_2\": 106,\n        \"OBJECTID\": 136.0,\n        \"PRECINCT_N\": 120.0,\n        \"FACILITY_D\": \"Meeting Room\",\n        \"ACCESSIBLE\": \"Yes - Use side Entrance\",\n        \"GIS_ID\": \"plp_136\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Malcolm X Elementary School\",\n        \"ADDRESS\": \"1351 ALABAMA AVENUE SE\",\n        \"ADDRESS_ID\": 289201\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.986212854490333, 38.844973623092343]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 7,\n        \"OBJECTID_2\": 107,\n        \"OBJECTID\": 137.0,\n        \"PRECINCT_N\": 118.0,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_137\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Garnet C. Wilkinson Elementary School\",\n        \"ADDRESS\": \"2330 POMEROY ROAD SE\",\n        \"ADDRESS_ID\": 294542\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.985550422151263, 38.856844389461791]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 8,\n        \"OBJECTID_2\": 108,\n        \"OBJECTID\": 138.0,\n        \"PRECINCT_N\": 119.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_138\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Excel Academy PCS @ Birney\",\n        \"ADDRESS\": \"2501 MARTIN LUTHER KING JR AVENUE SE\",\n        \"ADDRESS_ID\": 278172\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.99535456253949, 38.859761758349642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 9,\n        \"OBJECTID_2\": 109,\n        \"OBJECTID\": 139.0,\n        \"PRECINCT_N\": 117.0,\n        \"FACILITY_D\": \"Main Lobby\",\n        \"ACCESSIBLE\": \"Yes - Use ramped entrance on Stanton Road.\",\n        \"GIS_ID\": \"plp_139\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Douglas Community Recreation Center\",\n        \"ADDRESS\": \"1898 STANTON TERRACE SE\",\n        \"ADDRESS_ID\": 286513\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.977761548811543, 38.852636229366837]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 10,\n        \"OBJECTID_2\": 110,\n        \"OBJECTID\": 140.0,\n        \"PRECINCT_N\": 114.0,\n        \"FACILITY_D\": \"Church Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_140\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Union Temple Baptist Church\",\n        \"ADDRESS\": \"1225 W STREET SE\",\n        \"ADDRESS_ID\": 70732\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.988939737432986, 38.864499675202886]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 11,\n        \"OBJECTID_2\": 111,\n        \"OBJECTID\": 141.0,\n        \"PRECINCT_N\": 113.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_141\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Senior Wellness Center\",\n        \"ADDRESS\": \"3001 ALABAMA AVENUE SE\",\n        \"ADDRESS_ID\": 289473\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.964116112055365, 38.860502954486471]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 12,\n        \"OBJECTID_2\": 112,\n        \"OBJECTID\": 142.0,\n        \"PRECINCT_N\": 112.0,\n        \"FACILITY_D\": \"Meeting Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_142\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Anacostia Public Library\",\n        \"ADDRESS\": \"1800 GOOD HOPE ROAD SE\",\n        \"ADDRESS_ID\": 53560\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.978485420182579, 38.865896402057949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 13,\n        \"OBJECTID_2\": 113,\n        \"OBJECTID\": 2.0,\n        \"PRECINCT_N\": 99.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_2\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Smothers Elementary School\",\n        \"ADDRESS\": \"4400 BROOKS STREET NE\",\n        \"ADDRESS_ID\": 294596\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.938468638784286, 38.893553701828701]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 14,\n        \"OBJECTID_2\": 114,\n        \"OBJECTID\": 3.0,\n        \"PRECINCT_N\": 97.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_3\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Kelly Miller Middle School\",\n        \"ADDRESS\": \"301 49TH STREET NE\",\n        \"ADDRESS_ID\": 294476\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.932456126905393, 38.893314974927328]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 15,\n        \"OBJECTID_2\": 115,\n        \"OBJECTID\": 4.0,\n        \"PRECINCT_N\": 130.0,\n        \"FACILITY_D\": \"Multi-Purpose Room (lower level)\",\n        \"ACCESSIBLE\": \"Yes - Use west entrance.\",\n        \"GIS_ID\": \"plp_4\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Lutheran Church of the Reformation\",\n        \"ADDRESS\": \"212 EAST CAPITOL STREET NE\",\n        \"ADDRESS_ID\": 286648\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.002857667709918, 38.890112459701982]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 16,\n        \"OBJECTID_2\": 116,\n        \"OBJECTID\": 112.0,\n        \"PRECINCT_N\": 90.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_112\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Tyler Elementary School\",\n        \"ADDRESS\": \"1001 G STREET SE\",\n        \"ADDRESS_ID\": 294505\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.992041656836633, 38.881084023669693]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 17,\n        \"OBJECTID_2\": 117,\n        \"OBJECTID\": 119.0,\n        \"PRECINCT_N\": 101.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_119\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"River Terrace Elementary School\",\n        \"ADDRESS\": \"420 34TH STREET NE\",\n        \"ADDRESS_ID\": 294485\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.957807551091278, 38.895428461353752]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 18,\n        \"OBJECTID_2\": 118,\n        \"OBJECTID\": 134.0,\n        \"PRECINCT_N\": 122.0,\n        \"FACILITY_D\": \"Armory\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance adjacent to parking lot.\",\n        \"GIS_ID\": \"plp_134\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Ballou Senior High School\",\n        \"ADDRESS\": \"3401 4TH STREET SE\",\n        \"ADDRESS_ID\": 294567\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.000975257588308, 38.839382331531922]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 19,\n        \"OBJECTID_2\": 119,\n        \"OBJECTID\": 1.0,\n        \"PRECINCT_N\": 2.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_1\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"The School Without Walls\",\n        \"ADDRESS\": \"2130 G STREET NW\",\n        \"ADDRESS_ID\": 242528\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.048186465638153, 38.898123787570832]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 20,\n        \"OBJECTID_2\": 120,\n        \"OBJECTID\": 40.0,\n        \"PRECINCT_N\": 72.0,\n        \"FACILITY_D\": \"Community Room (1st floor)\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_40\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Langdon Park Recreation Center\",\n        \"ADDRESS\": \"2901 20TH STREET NE\",\n        \"ADDRESS_ID\": 287283\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.975788486876453, 38.926822413922125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 21,\n        \"OBJECTID_2\": 121,\n        \"OBJECTID\": 29.0,\n        \"PRECINCT_N\": 34.0,\n        \"FACILITY_D\": \"Gymnasium (lower level)\",\n        \"ACCESSIBLE\": \"Yes - Use ramped entrance.\",\n        \"GIS_ID\": \"plp_29\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Edmund Burke School\",\n        \"ADDRESS\": \"2955 UPTON STREET NW\",\n        \"ADDRESS_ID\": 284536\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.061628156880005, 38.942361327729408]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 22,\n        \"OBJECTID_2\": 122,\n        \"OBJECTID\": 30.0,\n        \"PRECINCT_N\": 45.0,\n        \"FACILITY_D\": \"Community Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_30\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"MPD - Regional Operation Command (North)\",\n        \"ADDRESS\": \"801 SHEPHERD STREET NW\",\n        \"ADDRESS_ID\": 252510\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.023810447712307, 38.940088934414405]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 23,\n        \"OBJECTID_2\": 123,\n        \"OBJECTID\": 31.0,\n        \"PRECINCT_N\": 8.0,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_31\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Palisades Recreation Center\",\n        \"ADDRESS\": \"5100 SHERIER PLACE NW\",\n        \"ADDRESS_ID\": 268352\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.102634605747866, 38.924441924850953]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 24,\n        \"OBJECTID_2\": 124,\n        \"OBJECTID\": 32.0,\n        \"PRECINCT_N\": 41.0,\n        \"FACILITY_D\": \"Great Hall\",\n        \"ACCESSIBLE\": \"Yes - Use entrance on Oak Street.\",\n        \"GIS_ID\": \"plp_32\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Trinity AME Zion Church\",\n        \"ADDRESS\": \"3505 16TH STREET NW\",\n        \"ADDRESS_ID\": 234593\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.036080424552495, 38.934550552844456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 25,\n        \"OBJECTID_2\": 125,\n        \"OBJECTID\": 33.0,\n        \"PRECINCT_N\": 43.0,\n        \"FACILITY_D\": \"Recreation Area\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_33\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Park View Recreation Center\",\n        \"ADDRESS\": \"693 OTIS PLACE NW\",\n        \"ADDRESS_ID\": 295160\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.021350314279189, 38.935002875205896]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 26,\n        \"OBJECTID_2\": 126,\n        \"OBJECTID\": 34.0,\n        \"PRECINCT_N\": 42.0,\n        \"FACILITY_D\": \"Dining Room (lower level)\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_34\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Mt. Rona Baptist Church\",\n        \"ADDRESS\": \"3431 13TH STREET NW\",\n        \"ADDRESS_ID\": 230950\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.029452852579396, 38.932240970226857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 27,\n        \"OBJECTID_2\": 1,\n        \"OBJECTID\": 5.0,\n        \"PRECINCT_N\": 80.0,\n        \"FACILITY_D\": \"Quander Room\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance rear of Church.\",\n        \"GIS_ID\": \"plp_5\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"St. Benedict the Moor Church\",\n        \"ADDRESS\": \"320 21ST STREET NE\",\n        \"ADDRESS_ID\": 287504\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.975457535682949, 38.894225931293576]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 28,\n        \"OBJECTID_2\": 2,\n        \"OBJECTID\": 6.0,\n        \"PRECINCT_N\": 102.0,\n        \"FACILITY_D\": \"Meeting Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_6\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Benning Public Library\",\n        \"ADDRESS\": \"3935 BENNING ROAD NE\",\n        \"ADDRESS_ID\": 295144\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.947759549614048, 38.89419424144954]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 29,\n        \"OBJECTID_2\": 3,\n        \"OBJECTID\": 7.0,\n        \"PRECINCT_N\": 96.0,\n        \"FACILITY_D\": \"Fellowship Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_7\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Hughes Memorial United Methodist Church\",\n        \"ADDRESS\": \"25 53RD STREET NE\",\n        \"ADDRESS_ID\": 287077\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.925776919030255, 38.890534557241999]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 30,\n        \"OBJECTID_2\": 4,\n        \"OBJECTID\": 8.0,\n        \"PRECINCT_N\": 88.0,\n        \"FACILITY_D\": \"Church Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_8\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Thankful Baptist Church\",\n        \"ADDRESS\": \"1401 INDEPENDENCE AVENUE SE\",\n        \"ADDRESS_ID\": 65107\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.98528389471295, 38.887379306202888]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 31,\n        \"OBJECTID_2\": 5,\n        \"OBJECTID\": 9.0,\n        \"PRECINCT_N\": 132.0,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_9\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"DC Center for Therapeutic Recreation\",\n        \"ADDRESS\": \"3030 G STREET SE\",\n        \"ADDRESS_ID\": 288770\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.963203222616286, 38.880871575493281]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 32,\n        \"OBJECTID_2\": 6,\n        \"OBJECTID\": 10.0,\n        \"PRECINCT_N\": 128.0,\n        \"FACILITY_D\": \"Junior Church Hall\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance adjacent to parking lot.\",\n        \"GIS_ID\": \"plp_10\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Friendship Baptist Church\",\n        \"ADDRESS\": \"900 DELAWARE AVENUE SW\",\n        \"ADDRESS_ID\": 276854\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.012497934269035, 38.878918819849204]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 33,\n        \"OBJECTID_2\": 7,\n        \"OBJECTID\": 11.0,\n        \"PRECINCT_N\": 111.0,\n        \"FACILITY_D\": \"John Bailey Room\",\n        \"ACCESSIBLE\": \"Yes - Use the Center for Employment Training entrance for ground level access (2815\",\n        \"GIS_ID\": \"plp_11\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"St. Francis Xavier Church\",\n        \"ADDRESS\": \"2800 PENNSYLVANIA AVENUE SE\",\n        \"ADDRESS_ID\": 44697\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.967509922797618, 38.872519727803635]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 34,\n        \"OBJECTID_2\": 8,\n        \"OBJECTID\": 12.0,\n        \"PRECINCT_N\": 108.0,\n        \"FACILITY_D\": \"Community Room\",\n        \"ACCESSIBLE\": \"Yes - Accessible - rear entrance, near parking lot.\",\n        \"GIS_ID\": \"plp_12\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Pennsylvania Avenue Baptist Church\",\n        \"ADDRESS\": \"3000 PENNSYLVANIA AVENUE SE\",\n        \"ADDRESS_ID\": 42549\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.963813000815662, 38.871129274649782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 35,\n        \"OBJECTID_2\": 9,\n        \"OBJECTID\": 13.0,\n        \"PRECINCT_N\": 127.0,\n        \"FACILITY_D\": \"Meeting Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_13\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"King Greenleaf Recreation Center\",\n        \"ADDRESS\": \"201 N STREET SW\",\n        \"ADDRESS_ID\": 52917\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.012792499594184, 38.875015810745062]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 36,\n        \"OBJECTID_2\": 10,\n        \"OBJECTID\": 14.0,\n        \"PRECINCT_N\": 109.0,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_14\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Randle-Highlands Elementary School\",\n        \"ADDRESS\": \"1650 30TH STREET SE\",\n        \"ADDRESS_ID\": 156337\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.964356281775736, 38.870091403187843]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 37,\n        \"OBJECTID_2\": 11,\n        \"OBJECTID\": 16.0,\n        \"PRECINCT_N\": 134.0,\n        \"FACILITY_D\": \"Multipurpose Room\",\n        \"ACCESSIBLE\": \"Yes - Use rear entrance, adjacent to parking lot.\",\n        \"GIS_ID\": \"plp_16\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Allen AME Church\",\n        \"ADDRESS\": \"2498 ALABAMA AVENUE SE\",\n        \"ADDRESS_ID\": 46843\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.970282941213242, 38.856884832198325]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 38,\n        \"OBJECTID_2\": 12,\n        \"OBJECTID\": 17.0,\n        \"PRECINCT_N\": 115.0,\n        \"FACILITY_D\": \"Community Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_17\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Seventh District Police Station\",\n        \"ADDRESS\": \"2455 ALABAMA AVENUE SE\",\n        \"ADDRESS_ID\": 278162\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.969521397067084, 38.853355764139451]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 39,\n        \"OBJECTID_2\": 13,\n        \"OBJECTID\": 18.0,\n        \"PRECINCT_N\": 116.0,\n        \"FACILITY_D\": \"Fellowship Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_18\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"New Image Community Baptist Church\",\n        \"ADDRESS\": \"1839 ALABAMA AVENUE SE\",\n        \"ADDRESS_ID\": 54816\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.977839930327974, 38.847658633098888]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 40,\n        \"OBJECTID_2\": 14,\n        \"OBJECTID\": 19.0,\n        \"PRECINCT_N\": 124.0,\n        \"FACILITY_D\": \"Church Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_19\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Convenant Baptist Church\",\n        \"ADDRESS\": \"3845 SOUTH CAPITOL STREET SW\",\n        \"ADDRESS_ID\": 301907\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.00866130403007, 38.83401036254331]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 41,\n        \"OBJECTID_2\": 15,\n        \"OBJECTID\": 20.0,\n        \"PRECINCT_N\": 61.0,\n        \"FACILITY_D\": \"Multi-purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_20\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Fort Stevens Recreation Center\",\n        \"ADDRESS\": \"1327 VAN BUREN STREET NW\",\n        \"ADDRESS_ID\": 290152\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.031090800845547, 38.970269148593538]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 42,\n        \"OBJECTID_2\": 16,\n        \"OBJECTID\": 21.0,\n        \"PRECINCT_N\": 50.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes - Accessible rear entrance next to the parking lot.\",\n        \"GIS_ID\": \"plp_21\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Chevy Chase Community Center\",\n        \"ADDRESS\": \"5601 CONNECTICUT AVENUE NW\",\n        \"ADDRESS_ID\": 263959\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.075108613262955, 38.965158421273387]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 43,\n        \"OBJECTID_2\": 17,\n        \"OBJECTID\": 22.0,\n        \"PRECINCT_N\": 52.0,\n        \"FACILITY_D\": \"Roth Gymnasium Bldg.\",\n        \"ACCESSIBLE\": \"Yes - Access from parking lot.\",\n        \"GIS_ID\": \"plp_22\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"St. John's College High School\",\n        \"ADDRESS\": \"2607 MILITARY ROAD NW\",\n        \"ADDRESS_ID\": 259840\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.055204940372292, 38.962417220863394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 44,\n        \"OBJECTID_2\": 18,\n        \"OBJECTID\": 24.0,\n        \"PRECINCT_N\": 60.0,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_24\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Church of the Nativity Youth Center\",\n        \"ADDRESS\": \"6000 GEORGIA AVENUE NW\",\n        \"ADDRESS_ID\": 253197\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.028226985088239, 38.962848161689173]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 45,\n        \"OBJECTID_2\": 19,\n        \"OBJECTID\": 25.0,\n        \"PRECINCT_N\": 138.0,\n        \"FACILITY_D\": \"Fellowship Hall\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance adjacent to parking lot.\",\n        \"GIS_ID\": \"plp_25\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Capital Memorial Adventist Church\",\n        \"ADDRESS\": \"3150 CHESAPEAKE STREET NW\",\n        \"ADDRESS_ID\": 284592\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.06396319555985, 38.950203225069913]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 46,\n        \"OBJECTID_2\": 20,\n        \"OBJECTID\": 26.0,\n        \"PRECINCT_N\": 31.0,\n        \"FACILITY_D\": \"Church Hall\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance located on 42nd St.\",\n        \"GIS_ID\": \"plp_26\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"St. Columba's Episcopal Church\",\n        \"ADDRESS\": \"4201 ALBEMARLE STREET NW\",\n        \"ADDRESS_ID\": 301545\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.08244680641738, 38.948217666726201]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 47,\n        \"OBJECTID_2\": 21,\n        \"OBJECTID\": 27.0,\n        \"PRECINCT_N\": 44.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_27\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"North Capitol at Plymouth\",\n        \"ADDRESS\": \"5233 NORTH CAPTIOL STREET NE\",\n        \"ADDRESS_ID\": 298101\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.00866515707142, 38.954067744263412]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 48,\n        \"OBJECTID_2\": 22,\n        \"OBJECTID\": 28.0,\n        \"PRECINCT_N\": 9.0,\n        \"FACILITY_D\": \"Vestry Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_28\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Metropolitan Memorial United Methodist Church\",\n        \"ADDRESS\": \"3401 NEBRASKA AVENUE NW\",\n        \"ADDRESS_ID\": 298676\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.087799340484636, 38.934959237025218]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 49,\n        \"OBJECTID_2\": 23,\n        \"OBJECTID\": 47.0,\n        \"PRECINCT_N\": 75.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_47\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"McKinley Technology Senior High School\",\n        \"ADDRESS\": \"151 T STREET NE\",\n        \"ADDRESS_ID\": 296345\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.004122439059401, 38.915219785761813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 50,\n        \"OBJECTID_2\": 24,\n        \"OBJECTID\": 48.0,\n        \"PRECINCT_N\": 141.0,\n        \"FACILITY_D\": \"North Lobby\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_48\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Frank D. Reeves Municipal Center\",\n        \"ADDRESS\": \"2000 14TH STREET NW\",\n        \"ADDRESS_ID\": 239976\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.032403524076486, 38.917444026973975]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 125,\n        \"OBJECTID_2\": 99,\n        \"OBJECTID\": 128.0,\n        \"PRECINCT_N\": 137.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance adjacent to parking lot.\",\n        \"GIS_ID\": \"plp_128\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Garrison Elementary School\",\n        \"ADDRESS\": \"1200 S STREET NW\",\n        \"ADDRESS_ID\": 294509\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.028612550392012, 38.913900958245385]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 126,\n        \"OBJECTID_2\": 100,\n        \"OBJECTID\": 129.0,\n        \"PRECINCT_N\": 133.0,\n        \"FACILITY_D\": \"Library\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance rear of school\",\n        \"GIS_ID\": \"plp_129\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Orr Elementary School\",\n        \"ADDRESS\": \"2200 MINNESOTA AVENUE SE\",\n        \"ADDRESS_ID\": 294539\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.974484011563916, 38.871796823975465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 127,\n        \"OBJECTID_2\": 127,\n        \"OBJECTID\": 35.0,\n        \"PRECINCT_N\": 71.0,\n        \"FACILITY_D\": \"Upper Fellowship Hall\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance on Bladensburg Road\",\n        \"GIS_ID\": \"plp_35\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Mt. Horeb Baptist Church\",\n        \"ADDRESS\": \"3015 EARL PLACE NE\",\n        \"ADDRESS_ID\": 287380\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.962575827800578, 38.928281639524052]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 128,\n        \"OBJECTID_2\": 128,\n        \"OBJECTID\": 36.0,\n        \"PRECINCT_N\": 28.0,\n        \"FACILITY_D\": \"Parish Center (near Klingle Place)\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_36\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Church of the Annunciation Parish\",\n        \"ADDRESS\": \"3810 MASSACHUSETTS AVENUE NW\",\n        \"ADDRESS_ID\": 263608\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.075817469590191, 38.930148719361682]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 129,\n        \"OBJECTID_2\": 129,\n        \"OBJECTID\": 37.0,\n        \"PRECINCT_N\": 136.0,\n        \"FACILITY_D\": \"Conference Room\",\n        \"ACCESSIBLE\": \"Yes - Use side entrance from parking lot\",\n        \"GIS_ID\": \"plp_37\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Leading Age\",\n        \"ADDRESS\": \"2519 CONNECTICUT AVENUE NW\",\n        \"ADDRESS_ID\": 284405\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.050817099689468, 38.923171900472795]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 130,\n        \"OBJECTID_2\": 130,\n        \"OBJECTID\": 38.0,\n        \"PRECINCT_N\": 12.0,\n        \"FACILITY_D\": \"Church Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_38\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"St Sophia's Greek Orthodox Cathederal Church\",\n        \"ADDRESS\": \"3600 MASSACHUSETTS AVENUE NW\",\n        \"ADDRESS_ID\": 262638\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.071174182052317, 38.926724696389051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 131,\n        \"OBJECTID_2\": 131,\n        \"OBJECTID\": 39.0,\n        \"PRECINCT_N\": 39.0,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_39\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Bell Multicultural High School\",\n        \"ADDRESS\": \"3101 16th Street NW\",\n        \"ADDRESS_ID\": 234375\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.035851518793763, 38.929540334081075]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 132,\n        \"OBJECTID_2\": 132,\n        \"OBJECTID\": 41.0,\n        \"PRECINCT_N\": 36.0,\n        \"FACILITY_D\": \"Community Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_41\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Latin American Youth Center\",\n        \"ADDRESS\": \"1419 COLUMBIA ROAD NW\",\n        \"ADDRESS_ID\": 234363\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.033357815907635, 38.927766394492799]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 133,\n        \"OBJECTID_2\": 133,\n        \"OBJECTID\": 42.0,\n        \"PRECINCT_N\": 135.0,\n        \"FACILITY_D\": \"Church Hall\",\n        \"ACCESSIBLE\": \"Yes - Use ramped entrance on Rhode Island Avenue.\",\n        \"GIS_ID\": \"plp_42\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Mt. Bethel Baptist Church\",\n        \"ADDRESS\": \"1901 1ST STREET NW\",\n        \"ADDRESS_ID\": 227421\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.01182725241577, 38.916136758622002]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 134,\n        \"OBJECTID_2\": 134,\n        \"OBJECTID\": 43.0,\n        \"PRECINCT_N\": 11.0,\n        \"FACILITY_D\": \"Union Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_43\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"International Union of Operating Engineer\",\n        \"ADDRESS\": \"2461 WISCONSIN AVENUE NW\",\n        \"ADDRESS_ID\": 284395\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.072501975359245, 38.92234916933058]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 135,\n        \"OBJECTID_2\": 135,\n        \"OBJECTID\": 44.0,\n        \"PRECINCT_N\": 23.0,\n        \"FACILITY_D\": \"Library and Computer Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_44\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Loughran Community Center\",\n        \"ADDRESS\": \"2500 14TH STREET NW\",\n        \"ADDRESS_ID\": 234200\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.032362118987933, 38.921998738498395]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 136,\n        \"OBJECTID_2\": 136,\n        \"OBJECTID\": 45.0,\n        \"PRECINCT_N\": 25.0,\n        \"FACILITY_D\": \"Fellowship Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_45\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Goodwill Baptist Church\",\n        \"ADDRESS\": \"1862 KALORAMA ROAD NW\",\n        \"ADDRESS_ID\": 235475\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.043826034297922, 38.919316646134163]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 137,\n        \"OBJECTID_2\": 137,\n        \"OBJECTID\": 46.0,\n        \"PRECINCT_N\": 13.0,\n        \"FACILITY_D\": \"Fellowship Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_46\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Goodwill Baptist Church\",\n        \"ADDRESS\": \"1862 KALORAMA ROAD NW\",\n        \"ADDRESS_ID\": 235475\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.043826034297922, 38.919316646134163]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 138,\n        \"OBJECTID_2\": 138,\n        \"OBJECTID\": 143.0,\n        \"PRECINCT_N\": 143.0,\n        \"FACILITY_D\": \"Church Hall/Meeting Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_143\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Chinese Community Church\",\n        \"ADDRESS\": \"500 I STREET NW\",\n        \"ADDRESS_ID\": 238945\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.019133548822794, 38.900621429714505]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 139,\n        \"OBJECTID_2\": 139,\n        \"OBJECTID\": 15.0,\n        \"PRECINCT_N\": 110.0,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_15\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"St. Timothy's Episcopal Church\",\n        \"ADDRESS\": \"3601 ALABAMA AVENUE SE\",\n        \"ADDRESS_ID\": 33104\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.956092288786962, 38.862989239014041]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 140,\n        \"OBJECTID_2\": 140,\n        \"OBJECTID\": 23.0,\n        \"PRECINCT_N\": 32.0,\n        \"FACILITY_D\": \"Fellowship Hall (1st Floor)\",\n        \"ACCESSIBLE\": \"Yes - Use Connecticut Ave. entrance\",\n        \"GIS_ID\": \"plp_23\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Wesley Methodist Church\",\n        \"ADDRESS\": \"5312 CONNECTICUT AVENUE NW\",\n        \"ADDRESS_ID\": 301282\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.07264987664179, 38.959324066446086]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 141,\n        \"OBJECTID_2\": 141,\n        \"OBJECTID\": 63.0,\n        \"PRECINCT_N\": 6.0,\n        \"FACILITY_D\": \"Gallery\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_63\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Duke Ellington School of the Arts\",\n        \"ADDRESS\": \"3500 R STREET NW\",\n        \"ADDRESS_ID\": 294569\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.070307562295099, 38.913446044424617]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 142,\n        \"OBJECTID_2\": 142,\n        \"OBJECTID\": 70.0,\n        \"PRECINCT_N\": 26.0,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes - Use ramped entrance on 27th Street\",\n        \"GIS_ID\": \"plp_70\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Oyster Elementary School\",\n        \"ADDRESS\": \"2801 CALVERT STREET NW\",\n        \"ADDRESS_ID\": 275944\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.057203378566399, 38.923595492962626]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 143,\n        \"OBJECTID_2\": 143,\n        \"OBJECTID\": 89.0,\n        \"PRECINCT_N\": 58.0,\n        \"FACILITY_D\": \"Community Room.\",\n        \"ACCESSIBLE\": \"Yes - Ground level at Georgia. Avenue & Quackenbos Street.\",\n        \"GIS_ID\": \"plp_89\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Fourth District Police Station\",\n        \"ADDRESS\": \"6001 GEORGIA AVENUE NW\",\n        \"ADDRESS_ID\": 243485\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.027410983594336, 38.963125449653411]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-concave/test/in/pts3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"maxEdge\": 2,\n    \"units\": \"miles\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.40898132324217, 37.77505678240509]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.41859436035156, 37.729724141962045]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.42786407470703, 37.738141282210385]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.43198394775389, 37.72836644908416]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.47592926025389, 37.78645343442073]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.41687774658202, 37.76555823017286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.42820739746094, 37.91115885137137]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-concave/test/in/support-null-geometry.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"maxEdge\": 5.5,\n    \"units\": \"miles\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": null\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.43095397949219, 37.74411415606583]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.44331359863283, 37.726194088705576]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.47833251953125, 37.73651223296987]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.4103546142578, 37.72184917678752]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.41790771484375, 37.74682893940135]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.53395080566405, 37.83690319650768]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.51541137695311, 37.83473402375478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.49069213867188, 37.837445479729666]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.52639770507812, 37.83473402375478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.62527465820311, 37.89327929625019]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.60467529296875, 37.902490518640995]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.58682250976562, 37.895988598965644]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-concave/test/out/concave-hull.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.7123413085937, -13.06342578889815]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.5777587890625, -13.090179355733726]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.5447998046875, -13.237271908200585]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.48162841796875, -13.365571074958245]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.627197265625, -13.667338259654947]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.923828125, -13.098204859664591]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.9403076171875, -13.288065114120283]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-312.07763671875, -13.368243250897287]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.94580078125, -13.4216805428783]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.37451171875, -13.154376055418515]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.42120361328125, -13.223903512667826]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.363525390625, -13.330830095126228]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.4788818359375, -13.552551566455168]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-312.0172119140625, -13.536530399503015]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.83593749999994, -13.608617139653036]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.66015625, -13.579251111245878]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.4129638671875, -13.467092893859657]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.978759765625, -13.18914225554674]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.8194580078125, -13.114255082724755]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.64642333984375, -13.098204859664591]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.9183349609375, -13.523178603049853]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.4459228515625, -13.095529720741482]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.74255371093744, -13.62463343823614]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-312.01446533203125, -13.266679794815271]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.923828125, -13.573911442504558]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-312.0254516601562, -13.386947652895737]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.55578613281244, -13.552551566455168]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.50360107421875, -13.435038009690732]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.3470458984375, -13.389619591747595]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.87164306640625, -13.141003126359843]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.7864990234375, -13.672675818669807]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.802978515625, -13.042020847922622]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.53656005859375, -13.603278132528756]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-312.0172119140625, -13.536530399503015],\n            [-312.07763671875, -13.368243250897287],\n            [-311.978759765625, -13.18914225554674],\n            [-311.923828125, -13.098204859664591],\n            [-311.802978515625, -13.042020847922622],\n            [-311.4459228515625, -13.095529720741482],\n            [-311.37451171875, -13.154376055418515],\n            [-311.3470458984375, -13.389619591747595],\n            [-311.4788818359375, -13.552551566455168],\n            [-311.53656005859375, -13.603278132528756],\n            [-311.627197265625, -13.667338259654947],\n            [-311.7864990234375, -13.672675818669807],\n            [-312.0172119140625, -13.536530399503015]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-concave/test/out/fiji.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.6484375, -16.90442787825499]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.62921142578125, -16.675662043309767]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.95330810546875, -16.830832189624815]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.85443115234375, -16.675662043309767]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.20050048828125, -16.97274101999901]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.142822265625, -16.825574258731486]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.0823974609375, -17.069913009885465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.4833984375, -17.295576394503744]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.8187255859375, -16.893915964126325]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.01922607421875, -16.759837823776632]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.76791381835938, -16.784820349855963]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.01510620117188, -16.914939206301646]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.92721557617188, -16.942528651601]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.85443115234375, -16.675662043309767],\n            [-179.62921142578125, -16.675662043309767],\n            [-179.6484375, -16.90442787825499],\n            [-179.92721557617188, -16.942528651601],\n            [-180.0823974609375, -17.069913009885465],\n            [-180.20050048828125, -16.97274101999901],\n            [-180.142822265625, -16.825574258731486],\n            [-180.01922607421875, -16.759837823776632],\n            [-179.85443115234375, -16.675662043309767]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-concave/test/out/hole.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.7123413085937, -13.06342578889815]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.5777587890625, -13.090179355733726]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.5447998046875, -13.237271908200585]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.48162841796875, -13.365571074958245]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.627197265625, -13.667338259654947]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.923828125, -13.098204859664591]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.9403076171875, -13.288065114120283]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-312.07763671875, -13.368243250897287]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.94580078125, -13.4216805428783]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.37451171875, -13.154376055418515]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.42120361328125, -13.223903512667826]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.363525390625, -13.330830095126228]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.4788818359375, -13.552551566455168]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-312.0172119140625, -13.536530399503015]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.83593749999994, -13.608617139653036]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.66015625, -13.579251111245878]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.4129638671875, -13.467092893859657]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.978759765625, -13.18914225554674]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.8194580078125, -13.114255082724755]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.64642333984375, -13.098204859664591]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.9183349609375, -13.523178603049853]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.4459228515625, -13.095529720741482]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.74255371093744, -13.62463343823614]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-312.01446533203125, -13.266679794815271]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.923828125, -13.573911442504558]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-312.0254516601562, -13.386947652895737]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.55578613281244, -13.552551566455168]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.50360107421875, -13.435038009690732]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.3470458984375, -13.389619591747595]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.87164306640625, -13.141003126359843]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.7864990234375, -13.672675818669807]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.802978515625, -13.042020847922622]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-311.53656005859375, -13.603278132528756]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-312.01446533203125, -13.266679794815271],\n            [-311.978759765625, -13.18914225554674],\n            [-311.923828125, -13.098204859664591],\n            [-311.802978515625, -13.042020847922622],\n            [-311.7123413085937, -13.06342578889815],\n            [-311.5777587890625, -13.090179355733726],\n            [-311.4459228515625, -13.095529720741482],\n            [-311.37451171875, -13.154376055418515],\n            [-311.363525390625, -13.330830095126228],\n            [-311.3470458984375, -13.389619591747595],\n            [-311.4129638671875, -13.467092893859657],\n            [-311.4788818359375, -13.552551566455168],\n            [-311.53656005859375, -13.603278132528756],\n            [-311.627197265625, -13.667338259654947],\n            [-311.7864990234375, -13.672675818669807],\n            [-311.923828125, -13.573911442504558],\n            [-312.0172119140625, -13.536530399503015],\n            [-312.07763671875, -13.368243250897287],\n            [-312.01446533203125, -13.266679794815271]\n          ],\n          [\n            [-311.94580078125, -13.4216805428783],\n            [-311.9183349609375, -13.523178603049853],\n            [-311.83593749999994, -13.608617139653036],\n            [-311.66015625, -13.579251111245878],\n            [-311.55578613281244, -13.552551566455168],\n            [-311.50360107421875, -13.435038009690732],\n            [-311.48162841796875, -13.365571074958245],\n            [-311.5447998046875, -13.237271908200585],\n            [-311.64642333984375, -13.098204859664591],\n            [-311.8194580078125, -13.114255082724755],\n            [-311.87164306640625, -13.141003126359843],\n            [-311.9403076171875, -13.288065114120283],\n            [-311.94580078125, -13.4216805428783]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-concave/test/out/issue-333.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4723426, 14.6479128]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5201483, 14.615014]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.51424745714287, 14.612971957142857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5132231, 14.6165441]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.48973311666667, 14.6495531]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4735275, 14.6465985]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4723723, 14.6485518]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47247347499999, 14.6477638]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47238633157896, 14.648176778947366]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.48551095454545, 14.644347027272726]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.48639698333334, 14.607210466666666]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5019386, 14.6511386]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5269321, 14.6573653]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5148751, 14.5823441]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.49990055555557, 14.600796044444444]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.494049, 14.5869676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47337224999998, 14.646883625000001]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4724361, 14.6486341]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4850658857143, 14.644084114285715]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.51289270000001, 14.618719666666667]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4735528, 14.6467951]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4723841, 14.6480488]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4732471, 14.6471636]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4722805, 14.6479045]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5201343, 14.6150696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.49114352000001, 14.66722966]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.472421, 14.648614]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47381937499999, 14.646442443749999]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5170675, 14.604278]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.55477304537037, 14.62646318703704]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5564985, 14.627035]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5820498, 14.6369336]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.60474186153844, 14.614272646153847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5156173, 14.6304]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.51274230000001, 14.639448640000001]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.50523385, 14.651190725000001]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.494068, 14.6524481]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4815628, 14.6482253]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4804793, 14.6461901]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.495238, 14.6457041]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4734271, 14.6466975]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4724963, 14.64851]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4723928, 14.6478788]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47250081000001, 14.647835989999999]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.520111, 14.6150598]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5155081, 14.6274348]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.51233063333332, 14.635753766666667]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.50694795, 14.64236045]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.50368926666665, 14.645259533333332]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47352167142857, 14.646744814285713]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4724291, 14.6485725]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47394456363637, 14.646360845454545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.48284538181817, 14.644143345454546]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5170826, 14.623364]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.55518267142857, 14.628796907142858]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5612823875, 14.6354786625]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5544466, 14.6730593]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5713858, 14.6338483]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.49277926666667, 14.649214383333335]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47338355, 14.6469332]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4724373, 14.6484558]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4733026, 14.6471671]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4723626, 14.6479208]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5201275, 14.6150038]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5167131875, 14.61330465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.473430925, 14.646790600000001]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4724253, 14.6485335]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47381234375001, 14.646451625000001]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4814805, 14.6483101]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.48557200000002, 14.644329030769232]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5171176, 14.6233125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.54256017980768, 14.62663586923077]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5269091, 14.6573203]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5564916, 14.6270911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5713228, 14.6338651]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5621048, 14.590847633333333]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.56126696666666, 14.590278533333333]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5705346, 14.5772148]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47337158333335, 14.646920666666668]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4724626, 14.6485841]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4723723, 14.6478811]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4722628, 14.6479208]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47250489090911, 14.647854472727271]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.520098, 14.615]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.50365512500001, 14.6452732]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.49116085, 14.667282275]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.48990055, 14.65017205]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47347362, 14.646725746666664]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4724285, 14.6485766]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47248388571428, 14.647815600000001]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5169941, 14.604693]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.53797681111112, 14.629561677777778]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.49985591428572, 14.600705557142858]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4940656, 14.586968]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4878766, 14.6688766]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4875626, 14.6704823]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.48763687142856, 14.668962442857142]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4895363, 14.6683016]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47322072, 14.646995100000002]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4722951, 14.6482883]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47311286666667, 14.647139766666667]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4724025, 14.6485518]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4723355, 14.6478488]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4732443, 14.6471278]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4723105, 14.6478846]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47244180625, 14.64800523125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5200513, 14.6150821]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5039411, 14.644767]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.50140640000001, 14.65061405]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47698511818182, 14.654281172727275]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47332180000001, 14.6469442]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4723918, 14.6485571]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.47337318571428, 14.646881257142857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5015093, 14.65032405]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.54214180000001, 14.624207466666666]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.5478511, 14.6249898]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-90.4734413, 14.6466325]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-90.53797681111112, 14.629561677777778],\n              [-90.51274230000001, 14.639448640000001],\n              [-90.5269091, 14.6573203],\n              [-90.5269321, 14.6573653],\n              [-90.50523385, 14.651190725000001],\n              [-90.49116085, 14.667282275],\n              [-90.4875626, 14.6704823],\n              [-90.4723723, 14.6485518],\n              [-90.4722951, 14.6482883],\n              [-90.4722628, 14.6479208],\n              [-90.4734413, 14.6466325],\n              [-90.47394456363637, 14.646360845454545],\n              [-90.48284538181817, 14.644143345454546],\n              [-90.4850658857143, 14.644084114285715],\n              [-90.495238, 14.6457041],\n              [-90.51233063333332, 14.635753766666667],\n              [-90.51289270000001, 14.618719666666667],\n              [-90.5132231, 14.6165441],\n              [-90.49990055555557, 14.600796044444444],\n              [-90.48639698333334, 14.607210466666666],\n              [-90.494049, 14.5869676],\n              [-90.5148751, 14.5823441],\n              [-90.5170675, 14.604278],\n              [-90.5201483, 14.615014],\n              [-90.54214180000001, 14.624207466666666],\n              [-90.5478511, 14.6249898],\n              [-90.55477304537037, 14.62646318703704],\n              [-90.5564985, 14.627035],\n              [-90.5713858, 14.6338483],\n              [-90.5820498, 14.6369336],\n              [-90.5713228, 14.6338651],\n              [-90.5612823875, 14.6354786625],\n              [-90.53797681111112, 14.629561677777778]\n            ]\n          ],\n          [\n            [\n              [-90.5705346, 14.5772148],\n              [-90.5621048, 14.590847633333333],\n              [-90.56126696666666, 14.590278533333333],\n              [-90.5705346, 14.5772148]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-concave/test/out/pts1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.40898132324217, 37.77505678240509]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.43095397949219, 37.74411415606583]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.44331359863283, 37.726194088705576]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.47833251953125, 37.73651223296987]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.4103546142578, 37.72184917678752]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.41790771484375, 37.74682893940135]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.53395080566405, 37.83690319650768]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.51541137695311, 37.83473402375478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.49069213867188, 37.837445479729666]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.52639770507812, 37.83473402375478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.62527465820311, 37.89327929625019]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.60467529296875, 37.902490518640995]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.58682250976562, 37.895988598965644]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-122.62527465820311, 37.89327929625019],\n              [-122.60467529296875, 37.902490518640995],\n              [-122.58682250976562, 37.895988598965644],\n              [-122.62527465820311, 37.89327929625019]\n            ]\n          ],\n          [\n            [\n              [-122.52639770507812, 37.83473402375478],\n              [-122.53395080566405, 37.83690319650768],\n              [-122.51541137695311, 37.83473402375478],\n              [-122.52639770507812, 37.83473402375478]\n            ]\n          ],\n          [\n            [\n              [-122.40898132324217, 37.77505678240509],\n              [-122.4103546142578, 37.72184917678752],\n              [-122.44331359863283, 37.726194088705576],\n              [-122.47833251953125, 37.73651223296987],\n              [-122.43095397949219, 37.74411415606583],\n              [-122.40898132324217, 37.77505678240509]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-concave/test/out/pts2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 51,\n        \"OBJECTID_2\": 25,\n        \"OBJECTID\": 49,\n        \"PRECINCT_N\": 7,\n        \"FACILITY_D\": \"Recreation Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_49\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Hardy Recreation Center\",\n        \"ADDRESS\": \"4500 Q STREET NW\",\n        \"ADDRESS_ID\": 284929,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.08498118309296, 38.909915833213795]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 52,\n        \"OBJECTID_2\": 26,\n        \"OBJECTID\": 50,\n        \"PRECINCT_N\": 5,\n        \"FACILITY_D\": \"Large Meeting Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_50\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Georgetown Community Library\",\n        \"ADDRESS\": \"3260 R STREET NW\",\n        \"ADDRESS_ID\": 295142,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.06600730584208, 38.913434229544386]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 53,\n        \"OBJECTID_2\": 27,\n        \"OBJECTID\": 51,\n        \"PRECINCT_N\": 76,\n        \"FACILITY_D\": \"Community Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_51\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Bethesda Baptist Church\",\n        \"ADDRESS\": \"1808 CAPITOL AVENUE NE\",\n        \"ADDRESS_ID\": 155925,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.98614224512842, 38.911020521048734]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 54,\n        \"OBJECTID_2\": 28,\n        \"OBJECTID\": 52,\n        \"PRECINCT_N\": 15,\n        \"FACILITY_D\": \"Community Room (Lower Level)\",\n        \"ACCESSIBLE\": \"Yes - Use side entrance on P Street\",\n        \"GIS_ID\": \"plp_52\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Foundry United Methodist Church\",\n        \"ADDRESS\": \"1500 16TH STREET NW\",\n        \"ADDRESS_ID\": 243309,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.03687949072273, 38.91003361331332]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 55,\n        \"OBJECTID_2\": 29,\n        \"OBJECTID\": 53,\n        \"PRECINCT_N\": 14,\n        \"FACILITY_D\": \"Guild Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_53\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"St. Thomas' Episcopal Parish\",\n        \"ADDRESS\": \"1772 CHURCH STREET NW\",\n        \"ADDRESS_ID\": 225918,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.04104117667185, 38.910212212295264]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 56,\n        \"OBJECTID_2\": 30,\n        \"OBJECTID\": 54,\n        \"PRECINCT_N\": 16,\n        \"FACILITY_D\": \"Fellowship Hall\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance at the rear of the church. Use entrance on R St. side of church.\",\n        \"GIS_ID\": \"plp_54\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"15th Street Presbyterian Church\",\n        \"ADDRESS\": \"1701 15TH STREET NW\",\n        \"ADDRESS_ID\": 240136,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.03417962817295, 38.91281125525813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 57,\n        \"OBJECTID_2\": 31,\n        \"OBJECTID\": 55,\n        \"PRECINCT_N\": 18,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_55\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Kennedy Recreation Center\",\n        \"ADDRESS\": \"1401 7TH STREET NW\",\n        \"ADDRESS_ID\": 279127,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02153645624776, 38.90898977846948]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 58,\n        \"OBJECTID_2\": 32,\n        \"OBJECTID\": 56,\n        \"PRECINCT_N\": 17,\n        \"FACILITY_D\": \"Exhibit Rooms\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_56\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"The Charles Sumner School Museum and Archives\",\n        \"ADDRESS\": \"1201 17th STREET NW\\r\\n1201 17TH STREET NW\",\n        \"ADDRESS_ID\": 301200,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.0382229055218, 38.90597733468145]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 59,\n        \"OBJECTID_2\": 33,\n        \"OBJECTID\": 57,\n        \"PRECINCT_N\": 4,\n        \"FACILITY_D\": \"Large Meeting Room (2nd Floor)\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_57\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"West End Public Library\",\n        \"ADDRESS\": \"1101 24TH STREET NW\",\n        \"ADDRESS_ID\": 218248,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.05109790160472, 38.904019151364736]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 60,\n        \"OBJECTID_2\": 34,\n        \"OBJECTID\": 58,\n        \"PRECINCT_N\": 77,\n        \"FACILITY_D\": \"Community Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_58\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Delta Towers Apartments\",\n        \"ADDRESS\": \"1400 FLORIDA AVENUE NE\",\n        \"ADDRESS_ID\": 65280,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.98433191638077, 38.90055736497202]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 61,\n        \"OBJECTID_2\": 35,\n        \"OBJECTID\": 59,\n        \"PRECINCT_N\": 129,\n        \"FACILITY_D\": \"Main Lobby\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_59\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Martin Luther King Library\",\n        \"ADDRESS\": \"901 G STREET NW\",\n        \"ADDRESS_ID\": 239815,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02476626008324, 38.89869133033745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 62,\n        \"OBJECTID_2\": 36,\n        \"OBJECTID\": 60,\n        \"PRECINCT_N\": 82,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_60\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Sherwood Recreation Center\",\n        \"ADDRESS\": \"640 10TH STREET NE\",\n        \"ADDRESS_ID\": 301075,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.99301681854216, 38.89854528906768]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 63,\n        \"OBJECTID_2\": 37,\n        \"OBJECTID\": 61,\n        \"PRECINCT_N\": 3,\n        \"FACILITY_D\": \"Dining Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_61\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"St. Mary's Court\",\n        \"ADDRESS\": \"725 24TH STREET NW\",\n        \"ADDRESS_ID\": 242350,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.0511477096272, 38.898862835793516]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 64,\n        \"OBJECTID_2\": 38,\n        \"OBJECTID\": 62,\n        \"PRECINCT_N\": 1,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_62\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Walker-Jones EC\",\n        \"ADDRESS\": \"1125 NEW JERSEY AVENUE NW\",\n        \"ADDRESS_ID\": 307735,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.01391569234569, 38.90419164723351]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 65,\n        \"OBJECTID_2\": 39,\n        \"OBJECTID\": 64,\n        \"PRECINCT_N\": 10,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_64\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Horace Mann Community Center\",\n        \"ADDRESS\": \"4430 NEWARK STREET NW\",\n        \"ADDRESS_ID\": 294597,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.08782618825647, 38.93429197169427]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 66,\n        \"OBJECTID_2\": 40,\n        \"OBJECTID\": 65,\n        \"PRECINCT_N\": 19,\n        \"FACILITY_D\": \"Gym/Armory\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_65\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Dunbar Senior High School\",\n        \"ADDRESS\": \"1301 NEW JERSEY AVENUE NW\",\n        \"ADDRESS_ID\": 279021,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.01469385531595, 38.90852321621873]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 67,\n        \"OBJECTID_2\": 41,\n        \"OBJECTID\": 66,\n        \"PRECINCT_N\": 20,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_66\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Washington Metropolitan High School\",\n        \"ADDRESS\": \"300 BRYANT STREET NW\",\n        \"ADDRESS_ID\": 294475,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.01555700896307, 38.92044129373322]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 68,\n        \"OBJECTID_2\": 42,\n        \"OBJECTID\": 67,\n        \"PRECINCT_N\": 21,\n        \"FACILITY_D\": \"Fellowship Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_67\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Vermont Avenue Baptist Church\",\n        \"ADDRESS\": \"1630 VERMONT AVENUE NW\",\n        \"ADDRESS_ID\": 243277,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02878122770284, 38.911825717245286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 69,\n        \"OBJECTID_2\": 43,\n        \"OBJECTID\": 68,\n        \"PRECINCT_N\": 22,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance located on V Street.\",\n        \"GIS_ID\": \"plp_68\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Garnet-Patterson Middle School\",\n        \"ADDRESS\": \"2001 10TH STREET NW\",\n        \"ADDRESS_ID\": 294533,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02574878211337, 38.91754477448618]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 70,\n        \"OBJECTID_2\": 44,\n        \"OBJECTID\": 69,\n        \"PRECINCT_N\": 24,\n        \"FACILITY_D\": \"Living Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_69\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Marie Reed Learning Center\",\n        \"ADDRESS\": \"2200 CHAMPLAIN STREET NW\",\n        \"ADDRESS_ID\": 235577,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.04052994742716, 38.91916730666654]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 71,\n        \"OBJECTID_2\": 45,\n        \"OBJECTID\": 71,\n        \"PRECINCT_N\": 27,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_71\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Eaton Elementary School\",\n        \"ADDRESS\": \"3301 LOWELL STREET NW\",\n        \"ADDRESS_ID\": 294562,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.06582113268591, 38.93272673882682]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 72,\n        \"OBJECTID_2\": 46,\n        \"OBJECTID\": 72,\n        \"PRECINCT_N\": 29,\n        \"FACILITY_D\": \"Community Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_72\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"2nd District Police Station\",\n        \"ADDRESS\": \"3320 IDAHO AVENUE NW\",\n        \"ADDRESS_ID\": 222229,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.07483805765223, 38.93484583178459]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 73,\n        \"OBJECTID_2\": 47,\n        \"OBJECTID\": 73,\n        \"PRECINCT_N\": 30,\n        \"FACILITY_D\": \"Multi-Purpose Room (on Albemarle St.)\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance at side of school, nearest to Wisconsin Ave.\",\n        \"GIS_ID\": \"plp_73\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Janney Elementary School\",\n        \"ADDRESS\": \"4130 ALBEMARLE STREET NW\",\n        \"ADDRESS_ID\": 285713,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.08099481973196, 38.94755008706593]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 74,\n        \"OBJECTID_2\": 48,\n        \"OBJECTID\": 74,\n        \"PRECINCT_N\": 33,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes - Use rear entrance on Ellicott St.\",\n        \"GIS_ID\": \"plp_74\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Ben Murch Elementary School\",\n        \"ADDRESS\": \"4810 36TH STREET NW\",\n        \"ADDRESS_ID\": 294602,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.07007920338755, 38.95293318959661]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 75,\n        \"OBJECTID_2\": 49,\n        \"OBJECTID\": 75,\n        \"PRECINCT_N\": 35,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_75\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"H.D. Cooke Elementary School\",\n        \"ADDRESS\": \"2525 17TH STREET NW\",\n        \"ADDRESS_ID\": 235863,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.0388138280019, 38.92393165421797]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 76,\n        \"OBJECTID_2\": 50,\n        \"OBJECTID\": 76,\n        \"PRECINCT_N\": 37,\n        \"FACILITY_D\": \"Community Meeting Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_76\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Banneker Community Recreation Center\",\n        \"ADDRESS\": \"2500 GEORGIA AVENUE NW\",\n        \"ADDRESS_ID\": 232292,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02257980138592, 38.92269760094504]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 77,\n        \"OBJECTID_2\": 51,\n        \"OBJECTID\": 77,\n        \"PRECINCT_N\": 38,\n        \"FACILITY_D\": \"Meeting Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_77\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Cesar Chavez Prep Charter Middle School\",\n        \"ADDRESS\": \"770 KENYON STREET NW\",\n        \"ADDRESS_ID\": 285409,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.0258873560347, 38.929619476288885]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 78,\n        \"OBJECTID_2\": 52,\n        \"OBJECTID\": 78,\n        \"PRECINCT_N\": 40,\n        \"FACILITY_D\": \"Assembly Hall\",\n        \"ACCESSIBLE\": \"Yes - Use entrance on Newton Street.\",\n        \"GIS_ID\": \"plp_78\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Bancroft Elementary School\",\n        \"ADDRESS\": \"1755 NEWTON STREET NW\",\n        \"ADDRESS_ID\": 294528,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.04055344980303, 38.93431802351106]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 79,\n        \"OBJECTID_2\": 53,\n        \"OBJECTID\": 79,\n        \"PRECINCT_N\": 46,\n        \"FACILITY_D\": \"Classroom\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_79\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"E.L. Haynes Public Charter School @ Clark\",\n        \"ADDRESS\": \"4501 KANSAS AVENUE NW\",\n        \"ADDRESS_ID\": 284930,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02241636991477, 38.94560156110601]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 80,\n        \"OBJECTID_2\": 54,\n        \"OBJECTID\": 80,\n        \"PRECINCT_N\": 47,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes - Accessible ramped entrance off of alley.\",\n        \"GIS_ID\": \"plp_80\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Powell Elementary School\",\n        \"ADDRESS\": \"1350 UPSHUR STREET NW\",\n        \"ADDRESS_ID\": 255302,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.03122741575149, 38.941534009869706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 81,\n        \"OBJECTID_2\": 55,\n        \"OBJECTID\": 81,\n        \"PRECINCT_N\": 48,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes - Use south entrance on 13th St.\",\n        \"GIS_ID\": \"plp_81\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Sharpe Health School\",\n        \"ADDRESS\": \"4300 13TH STREET NW\",\n        \"ADDRESS_ID\": 255254,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.03046833667379, 38.94347432515649]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 82,\n        \"OBJECTID_2\": 56,\n        \"OBJECTID\": 82,\n        \"PRECINCT_N\": 49,\n        \"FACILITY_D\": \"Science Room\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance located on Rock Creek Church Road.\",\n        \"GIS_ID\": \"plp_82\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Raymond Elementary School\",\n        \"ADDRESS\": \"915 SPRING ROAD NW\",\n        \"ADDRESS_ID\": 226682,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02643265425681, 38.935810871763174]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 83,\n        \"OBJECTID_2\": 57,\n        \"OBJECTID\": 83,\n        \"PRECINCT_N\": 51,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes - Use parking lot entrance on Northampton St.\",\n        \"GIS_ID\": \"plp_83\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Lafayette Elementary School\",\n        \"ADDRESS\": \"5701 BROAD BRANCH ROAD NW\",\n        \"ADDRESS_ID\": 294611,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.06803711636698, 38.96662722064828]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 84,\n        \"OBJECTID_2\": 58,\n        \"OBJECTID\": 84,\n        \"PRECINCT_N\": 53,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_84\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Brightwood Elementary School\",\n        \"ADDRESS\": \"1300 NICHOLSON STREET NW\",\n        \"ADDRESS_ID\": 294515,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.03068885198864, 38.96053539285846]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 85,\n        \"OBJECTID_2\": 59,\n        \"OBJECTID\": 85,\n        \"PRECINCT_N\": 54,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes - Use entrance located at 14th & Farragut Streets.\",\n        \"GIS_ID\": \"plp_85\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"West Elementary School\",\n        \"ADDRESS\": \"1338 FARRAGUT STREET NW\",\n        \"ADDRESS_ID\": 294517,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.03225304983067, 38.951367080952416]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 86,\n        \"OBJECTID_2\": 60,\n        \"OBJECTID\": 86,\n        \"PRECINCT_N\": 55,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_86\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Barnard Elementary School\",\n        \"ADDRESS\": \"430 DECATUR STREET NW\",\n        \"ADDRESS_ID\": 248305,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.0177770800083, 38.948230614415095]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 87,\n        \"OBJECTID_2\": 61,\n        \"OBJECTID\": 87,\n        \"PRECINCT_N\": 56,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_87\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Truesdell Elementary School\",\n        \"ADDRESS\": \"800 INGRAHAM STREET NW\",\n        \"ADDRESS_ID\": 294497,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02507157013518, 38.95396835809549]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 88,\n        \"OBJECTID_2\": 62,\n        \"OBJECTID\": 88,\n        \"PRECINCT_N\": 57,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_88\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Hattie Holmes Wellness Center\",\n        \"ADDRESS\": \"324 KENNEDY STREET NW\",\n        \"ADDRESS_ID\": 307575,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.01711234814142, 38.956388773368296]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 89,\n        \"OBJECTID_2\": 63,\n        \"OBJECTID\": 90,\n        \"PRECINCT_N\": 59,\n        \"FACILITY_D\": \"Armory\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_90\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Coolidge Senior High School\",\n        \"ADDRESS\": \"6315 5TH STREET NW\",\n        \"ADDRESS_ID\": 294615,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.01957835173927, 38.967284239673525]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 90,\n        \"OBJECTID_2\": 64,\n        \"OBJECTID\": 91,\n        \"PRECINCT_N\": 62,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes - Use ramped entrance on 14th Street.\",\n        \"GIS_ID\": \"plp_91\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Shepherd Elementary School\",\n        \"ADDRESS\": \"7800 14TH STREET NW\",\n        \"ADDRESS_ID\": 256319,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.03399523386544, 38.98460295003216]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 91,\n        \"OBJECTID_2\": 65,\n        \"OBJECTID\": 92,\n        \"PRECINCT_N\": 63,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_92\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Takoma Community Center\",\n        \"ADDRESS\": \"300 VAN BUREN STREET NW\",\n        \"ADDRESS_ID\": 296168,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.01805167618295, 38.96888669131412]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 92,\n        \"OBJECTID_2\": 66,\n        \"OBJECTID\": 93,\n        \"PRECINCT_N\": 64,\n        \"FACILITY_D\": \"Recreation Area\",\n        \"ACCESSIBLE\": \"Yes - Use rear entrance on 2nd St.\",\n        \"GIS_ID\": \"plp_93\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Rabaut - Administrative Building\",\n        \"ADDRESS\": \"100 PEABODY STREET NW\",\n        \"ADDRESS_ID\": 277545,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.01286744832365, 38.96216452199718]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 93,\n        \"OBJECTID_2\": 67,\n        \"OBJECTID\": 94,\n        \"PRECINCT_N\": 65,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_94\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"LaSalle Elementary School\",\n        \"ADDRESS\": \"501 RIGGS ROAD NE\",\n        \"ADDRESS_ID\": 294489,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.99988253848109, 38.95997180998364]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 94,\n        \"OBJECTID_2\": 68,\n        \"OBJECTID\": 95,\n        \"PRECINCT_N\": 66,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance next to parking lot on Hamilton Street.\",\n        \"GIS_ID\": \"plp_95\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"UDC Community College @ Backus\",\n        \"ADDRESS\": \"5171 SOUTH DAKOTA AVENUE NE\",\n        \"ADDRESS_ID\": 294607,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.99726738315395, 38.95334052572905]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 95,\n        \"OBJECTID_2\": 69,\n        \"OBJECTID\": 96,\n        \"PRECINCT_N\": 67,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance next to the parking lot on 14th Street\",\n        \"GIS_ID\": \"plp_96\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Bunker Hill Elementary School\",\n        \"ADDRESS\": \"1401 MICHIGAN AVENUE NE\",\n        \"ADDRESS_ID\": 286131,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.98499562999821, 38.94201213500814]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 96,\n        \"OBJECTID_2\": 70,\n        \"OBJECTID\": 97,\n        \"PRECINCT_N\": 68,\n        \"FACILITY_D\": \"Reception Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_97\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"St. Francis Hall\",\n        \"ADDRESS\": \"1340 QUINCY STREET NE\",\n        \"ADDRESS_ID\": 66591,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.98652958387164, 38.9375726751204]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 97,\n        \"OBJECTID_2\": 71,\n        \"OBJECTID\": 98,\n        \"PRECINCT_N\": 69,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_98\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Hyde Public Charter School @ Taft\",\n        \"ADDRESS\": \"1800 PERRY STREET NE\",\n        \"ADDRESS_ID\": 294529,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.9785955149537, 38.93679614738434]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 98,\n        \"OBJECTID_2\": 72,\n        \"OBJECTID\": 99,\n        \"PRECINCT_N\": 70,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes - Use entrance on Monroe Street.\",\n        \"GIS_ID\": \"plp_99\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Burroughs Elementary School\",\n        \"ADDRESS\": \"1820 MONROE STREET NE\",\n        \"ADDRESS_ID\": 294530,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.97845637039887, 38.933502326896445]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 99,\n        \"OBJECTID_2\": 73,\n        \"OBJECTID\": 100,\n        \"PRECINCT_N\": 73,\n        \"FACILITY_D\": \"Library (Lower Level)\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_100\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"M.M. Bethune Day Academy @ Slowe\",\n        \"ADDRESS\": \"1404 JACKSON STREET NE\",\n        \"ADDRESS_ID\": 294522,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.98686462272855, 38.929605590082105]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 100,\n        \"OBJECTID_2\": 74,\n        \"OBJECTID\": 101,\n        \"PRECINCT_N\": 74,\n        \"FACILITY_D\": \"Multipurpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_101\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Shaed Elementary School\",\n        \"ADDRESS\": \"301 DOUGLAS STREET NE\",\n        \"ADDRESS_ID\": 294477,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.00253831800221, 38.923654687421774]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 101,\n        \"OBJECTID_2\": 75,\n        \"OBJECTID\": 102,\n        \"PRECINCT_N\": 78,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_102\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Trinidad Recreation Center\",\n        \"ADDRESS\": \"1310 CHILDRESS STREET NE\",\n        \"ADDRESS_ID\": 68509,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.98273436876306, 38.906442359837776]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 102,\n        \"OBJECTID_2\": 76,\n        \"OBJECTID\": 103,\n        \"PRECINCT_N\": 81,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_103\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Miner Elementary School\",\n        \"ADDRESS\": \"601 15TH STREET NE\",\n        \"ADDRESS_ID\": 289548,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.98290431308783, 38.89737568218247]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 103,\n        \"OBJECTID_2\": 77,\n        \"OBJECTID\": 104,\n        \"PRECINCT_N\": 79,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_104\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Browne Junior High School\",\n        \"ADDRESS\": \"850 26TH STREET NE\",\n        \"ADDRESS_ID\": 294501,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.97066705247403, 38.90259854900822]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 104,\n        \"OBJECTID_2\": 78,\n        \"OBJECTID\": 105,\n        \"PRECINCT_N\": 83,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes - Use entrance located on 7th Street.\",\n        \"GIS_ID\": \"plp_105\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"J.O. Wilson Elementary School\",\n        \"ADDRESS\": \"660 K STREET NE\",\n        \"ADDRESS_ID\": 288841,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.99658902748644, 38.90275766582991]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 105,\n        \"OBJECTID_2\": 79,\n        \"OBJECTID\": 106,\n        \"PRECINCT_N\": 84,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_106\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Stuart-Hobson Middle School\",\n        \"ADDRESS\": \"410 E STREET NE\",\n        \"ADDRESS_ID\": 294483,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.00000438624967, 38.89629737080879]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 106,\n        \"OBJECTID_2\": 80,\n        \"OBJECTID\": 107,\n        \"PRECINCT_N\": 85,\n        \"FACILITY_D\": \"Auditorium (A-Level)\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_107\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"The Specialty Hospital of Washington\",\n        \"ADDRESS\": \"700 CONSTITUTION AVENUE NE\",\n        \"ADDRESS_ID\": 295162,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.99535659211247, 38.892321795813096]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 107,\n        \"OBJECTID_2\": 81,\n        \"OBJECTID\": 108,\n        \"PRECINCT_N\": 86,\n        \"FACILITY_D\": \"Recreation Room (lower level)\",\n        \"ACCESSIBLE\": \"Yes - Accessible - side entrance, next to the parking lot.\",\n        \"GIS_ID\": \"plp_108\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Eliot Junior High School\",\n        \"ADDRESS\": \"1830 CONSTITUTION AVENUE NE\",\n        \"ADDRESS_ID\": 286499,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.97897791343726, 38.8924311597663]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 108,\n        \"OBJECTID_2\": 82,\n        \"OBJECTID\": 109,\n        \"PRECINCT_N\": 87,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes = Use entrance at the rear of the school, next to the parking lot.\",\n        \"GIS_ID\": \"plp_109\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Payne Elementary School\",\n        \"ADDRESS\": \"305 15TH STREET SE\",\n        \"ADDRESS_ID\": 294478,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.98419490800174, 38.8851323144882]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 109,\n        \"OBJECTID_2\": 83,\n        \"OBJECTID\": 110,\n        \"PRECINCT_N\": 89,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_110\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"William H. Rumsey Aquatic Center\",\n        \"ADDRESS\": \"635 NORTH CAROLINA AVENUE SE\",\n        \"ADDRESS_ID\": 295159,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.99702870593877, 38.88658504665415]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 110,\n        \"OBJECTID_2\": 84,\n        \"OBJECTID\": 111,\n        \"PRECINCT_N\": 91,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_111\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Watkins Elementary School\",\n        \"ADDRESS\": \"420 12TH STREET SE\",\n        \"ADDRESS_ID\": 294486,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.98999676354816, 38.883466674788586]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 111,\n        \"OBJECTID_2\": 85,\n        \"OBJECTID\": 113,\n        \"PRECINCT_N\": 92,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_113\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Kenilworth Elementary School\",\n        \"ADDRESS\": \"1300 44TH STREET NE\",\n        \"ADDRESS_ID\": 294516,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.9404849391363, 38.90822873259865]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 112,\n        \"OBJECTID_2\": 86,\n        \"OBJECTID\": 114,\n        \"PRECINCT_N\": 93,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance at the rear of the school.\",\n        \"GIS_ID\": \"plp_114\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Houston Elementary School\",\n        \"ADDRESS\": \"1100 50TH PLACE NE\",\n        \"ADDRESS_ID\": 156316,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.9299476407989, 38.90541498719898]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 113,\n        \"OBJECTID_2\": 87,\n        \"OBJECTID\": 115,\n        \"PRECINCT_N\": 94,\n        \"FACILITY_D\": \"Community Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_115\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Merritt Education Center\",\n        \"ADDRESS\": \"5002 HAYES STREET NE\",\n        \"ADDRESS_ID\": 294606,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.93013118958962, 38.90023006725584]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 114,\n        \"OBJECTID_2\": 88,\n        \"OBJECTID\": 116,\n        \"PRECINCT_N\": 95,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes -Use entrance located at 57th & Eads Streets.\",\n        \"GIS_ID\": \"plp_116\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Drew Elementary School\",\n        \"ADDRESS\": \"5500 EADS STREET NE\",\n        \"ADDRESS_ID\": 294609,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.92270804396746, 38.89619288755561]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 115,\n        \"OBJECTID_2\": 89,\n        \"OBJECTID\": 117,\n        \"PRECINCT_N\": 100,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_117\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Thomas Elementary School\",\n        \"ADDRESS\": \"650 ANACOSTIA AVENUE NE\",\n        \"ADDRESS_ID\": 294493,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.95211090532199, 38.901278637588895]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 116,\n        \"OBJECTID_2\": 90,\n        \"OBJECTID\": 118,\n        \"PRECINCT_N\": 98,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes - Use rear entrance of the school.\",\n        \"GIS_ID\": \"plp_118\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Smothers Elementary School\",\n        \"ADDRESS\": \"4400 BROOKS STREET NE\",\n        \"ADDRESS_ID\": 294596,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.93846863878429, 38.8935537018287]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 117,\n        \"OBJECTID_2\": 91,\n        \"OBJECTID\": 120,\n        \"PRECINCT_N\": 103,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes - Use ground level entrance.\",\n        \"GIS_ID\": \"plp_120\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Plummer Elementary School\",\n        \"ADDRESS\": \"4601 TEXAS AVENUE SE\",\n        \"ADDRESS_ID\": 19536,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.93993466984129, 38.8872398636938]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 118,\n        \"OBJECTID_2\": 92,\n        \"OBJECTID\": 121,\n        \"PRECINCT_N\": 104,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes- Use ground level entrance.\",\n        \"GIS_ID\": \"plp_121\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Nalle Elementary School\",\n        \"ADDRESS\": \"219 50TH STREET SE\",\n        \"ADDRESS_ID\": 294474,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.93079649956998, 38.88595408522856]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 119,\n        \"OBJECTID_2\": 93,\n        \"OBJECTID\": 122,\n        \"PRECINCT_N\": 105,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes - Use entrance located on D Street.\",\n        \"GIS_ID\": \"plp_122\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"CW Harris Elementary School\",\n        \"ADDRESS\": \"301 53RD STREET SE\",\n        \"ADDRESS_ID\": 289801,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.92611549373204, 38.88359849788337]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 120,\n        \"OBJECTID_2\": 94,\n        \"OBJECTID\": 123,\n        \"PRECINCT_N\": 106,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes - Accessible rear entrance, next to the parking lot.\",\n        \"GIS_ID\": \"plp_123\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Davis Elementary School\",\n        \"ADDRESS\": \"4430 H STREET SE\",\n        \"ADDRESS_ID\": 294598,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.93761630232859, 38.87906795106383]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 121,\n        \"OBJECTID_2\": 95,\n        \"OBJECTID\": 124,\n        \"PRECINCT_N\": 107,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_124\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Sousa Middle School\",\n        \"ADDRESS\": \"3650 ELY PLACE SE\",\n        \"ADDRESS_ID\": 294584,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.95316174771769, 38.883908000174614]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 122,\n        \"OBJECTID_2\": 96,\n        \"OBJECTID\": 125,\n        \"PRECINCT_N\": 142,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_125\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Jefferson Junior High School\",\n        \"ADDRESS\": \"801 7TH STREET SW\",\n        \"ADDRESS_ID\": 276812,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02291065460415, 38.87987059942476]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 123,\n        \"OBJECTID_2\": 97,\n        \"OBJECTID\": 126,\n        \"PRECINCT_N\": 140,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_126\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Anacostia Senior High School\",\n        \"ADDRESS\": \"1601 16TH STREET SE\",\n        \"ADDRESS_ID\": 155922,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.98307724829849, 38.870083725754895]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 124,\n        \"OBJECTID_2\": 98,\n        \"OBJECTID\": 127,\n        \"PRECINCT_N\": 139,\n        \"FACILITY_D\": \"Community Service Area\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_127\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Thurgood Marshall Elementary\",\n        \"ADDRESS\": \"3100 FORT LINCOLN DRIVE NE\",\n        \"ADDRESS_ID\": 294553,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.95763369669753, 38.92730594377001]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 1,\n        \"OBJECTID_2\": 101,\n        \"OBJECTID\": 130,\n        \"PRECINCT_N\": 131,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_130\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Van Ness Elementary School\",\n        \"ADDRESS\": \"1150 5TH STREET SE\",\n        \"ADDRESS_ID\": 294508,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.99924400222596, 38.87679611768769]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 2,\n        \"OBJECTID_2\": 102,\n        \"OBJECTID\": 131,\n        \"PRECINCT_N\": 125,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_131\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Hendley Elementary School\",\n        \"ADDRESS\": \"425 CHESAPEAKE STREET SE\",\n        \"ADDRESS_ID\": 24445,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.99918484024232, 38.82898558049571]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 3,\n        \"OBJECTID_2\": 103,\n        \"OBJECTID\": 132,\n        \"PRECINCT_N\": 126,\n        \"FACILITY_D\": \"Library\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_132\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"W.B. Patterson Elementary School\",\n        \"ADDRESS\": \"4399 SOUTH CAPITOL TERRACE SW\",\n        \"ADDRESS_ID\": 301073,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.00847560019479, 38.8269811922012]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 4,\n        \"OBJECTID_2\": 104,\n        \"OBJECTID\": 133,\n        \"PRECINCT_N\": 123,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_133\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Martin Luther King Elementary School\",\n        \"ADDRESS\": \"600 ALABAMA AVENUE SE\",\n        \"ADDRESS_ID\": 294492,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.99758318790965, 38.84338656586389]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 5,\n        \"OBJECTID_2\": 105,\n        \"OBJECTID\": 135,\n        \"PRECINCT_N\": 121,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_135\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"National Collegiate Prep @ Draper\",\n        \"ADDRESS\": \"908 WAHLER PLACE SE\",\n        \"ADDRESS_ID\": 294502,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.99226881799031, 38.834327886510565]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 6,\n        \"OBJECTID_2\": 106,\n        \"OBJECTID\": 136,\n        \"PRECINCT_N\": 120,\n        \"FACILITY_D\": \"Meeting Room\",\n        \"ACCESSIBLE\": \"Yes - Use side Entrance\",\n        \"GIS_ID\": \"plp_136\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Malcolm X Elementary School\",\n        \"ADDRESS\": \"1351 ALABAMA AVENUE SE\",\n        \"ADDRESS_ID\": 289201,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.98621285449033, 38.84497362309234]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 7,\n        \"OBJECTID_2\": 107,\n        \"OBJECTID\": 137,\n        \"PRECINCT_N\": 118,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_137\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Garnet C. Wilkinson Elementary School\",\n        \"ADDRESS\": \"2330 POMEROY ROAD SE\",\n        \"ADDRESS_ID\": 294542,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.98555042215126, 38.85684438946179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 8,\n        \"OBJECTID_2\": 108,\n        \"OBJECTID\": 138,\n        \"PRECINCT_N\": 119,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_138\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Excel Academy PCS @ Birney\",\n        \"ADDRESS\": \"2501 MARTIN LUTHER KING JR AVENUE SE\",\n        \"ADDRESS_ID\": 278172,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.99535456253949, 38.85976175834964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 9,\n        \"OBJECTID_2\": 109,\n        \"OBJECTID\": 139,\n        \"PRECINCT_N\": 117,\n        \"FACILITY_D\": \"Main Lobby\",\n        \"ACCESSIBLE\": \"Yes - Use ramped entrance on Stanton Road.\",\n        \"GIS_ID\": \"plp_139\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Douglas Community Recreation Center\",\n        \"ADDRESS\": \"1898 STANTON TERRACE SE\",\n        \"ADDRESS_ID\": 286513,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.97776154881154, 38.85263622936684]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 10,\n        \"OBJECTID_2\": 110,\n        \"OBJECTID\": 140,\n        \"PRECINCT_N\": 114,\n        \"FACILITY_D\": \"Church Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_140\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Union Temple Baptist Church\",\n        \"ADDRESS\": \"1225 W STREET SE\",\n        \"ADDRESS_ID\": 70732,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.98893973743299, 38.864499675202886]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 11,\n        \"OBJECTID_2\": 111,\n        \"OBJECTID\": 141,\n        \"PRECINCT_N\": 113,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_141\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Senior Wellness Center\",\n        \"ADDRESS\": \"3001 ALABAMA AVENUE SE\",\n        \"ADDRESS_ID\": 289473,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.96411611205536, 38.86050295448647]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 12,\n        \"OBJECTID_2\": 112,\n        \"OBJECTID\": 142,\n        \"PRECINCT_N\": 112,\n        \"FACILITY_D\": \"Meeting Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_142\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Anacostia Public Library\",\n        \"ADDRESS\": \"1800 GOOD HOPE ROAD SE\",\n        \"ADDRESS_ID\": 53560,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.97848542018258, 38.86589640205795]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 13,\n        \"OBJECTID_2\": 113,\n        \"OBJECTID\": 2,\n        \"PRECINCT_N\": 99,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_2\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Smothers Elementary School\",\n        \"ADDRESS\": \"4400 BROOKS STREET NE\",\n        \"ADDRESS_ID\": 294596,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.93846863878429, 38.8935537018287]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 14,\n        \"OBJECTID_2\": 114,\n        \"OBJECTID\": 3,\n        \"PRECINCT_N\": 97,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_3\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Kelly Miller Middle School\",\n        \"ADDRESS\": \"301 49TH STREET NE\",\n        \"ADDRESS_ID\": 294476,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.9324561269054, 38.89331497492733]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 15,\n        \"OBJECTID_2\": 115,\n        \"OBJECTID\": 4,\n        \"PRECINCT_N\": 130,\n        \"FACILITY_D\": \"Multi-Purpose Room (lower level)\",\n        \"ACCESSIBLE\": \"Yes - Use west entrance.\",\n        \"GIS_ID\": \"plp_4\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Lutheran Church of the Reformation\",\n        \"ADDRESS\": \"212 EAST CAPITOL STREET NE\",\n        \"ADDRESS_ID\": 286648,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.00285766770992, 38.89011245970198]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 16,\n        \"OBJECTID_2\": 116,\n        \"OBJECTID\": 112,\n        \"PRECINCT_N\": 90,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_112\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Tyler Elementary School\",\n        \"ADDRESS\": \"1001 G STREET SE\",\n        \"ADDRESS_ID\": 294505,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.99204165683663, 38.88108402366969]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 17,\n        \"OBJECTID_2\": 117,\n        \"OBJECTID\": 119,\n        \"PRECINCT_N\": 101,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_119\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"River Terrace Elementary School\",\n        \"ADDRESS\": \"420 34TH STREET NE\",\n        \"ADDRESS_ID\": 294485,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.95780755109128, 38.89542846135375]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 18,\n        \"OBJECTID_2\": 118,\n        \"OBJECTID\": 134,\n        \"PRECINCT_N\": 122,\n        \"FACILITY_D\": \"Armory\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance adjacent to parking lot.\",\n        \"GIS_ID\": \"plp_134\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Ballou Senior High School\",\n        \"ADDRESS\": \"3401 4TH STREET SE\",\n        \"ADDRESS_ID\": 294567,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.00097525758831, 38.83938233153192]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 19,\n        \"OBJECTID_2\": 119,\n        \"OBJECTID\": 1,\n        \"PRECINCT_N\": 2,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_1\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"The School Without Walls\",\n        \"ADDRESS\": \"2130 G STREET NW\",\n        \"ADDRESS_ID\": 242528,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.04818646563815, 38.89812378757083]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 20,\n        \"OBJECTID_2\": 120,\n        \"OBJECTID\": 40,\n        \"PRECINCT_N\": 72,\n        \"FACILITY_D\": \"Community Room (1st floor)\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_40\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Langdon Park Recreation Center\",\n        \"ADDRESS\": \"2901 20TH STREET NE\",\n        \"ADDRESS_ID\": 287283,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.97578848687645, 38.926822413922125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 21,\n        \"OBJECTID_2\": 121,\n        \"OBJECTID\": 29,\n        \"PRECINCT_N\": 34,\n        \"FACILITY_D\": \"Gymnasium (lower level)\",\n        \"ACCESSIBLE\": \"Yes - Use ramped entrance.\",\n        \"GIS_ID\": \"plp_29\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Edmund Burke School\",\n        \"ADDRESS\": \"2955 UPTON STREET NW\",\n        \"ADDRESS_ID\": 284536,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.06162815688, 38.94236132772941]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 22,\n        \"OBJECTID_2\": 122,\n        \"OBJECTID\": 30,\n        \"PRECINCT_N\": 45,\n        \"FACILITY_D\": \"Community Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_30\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"MPD - Regional Operation Command (North)\",\n        \"ADDRESS\": \"801 SHEPHERD STREET NW\",\n        \"ADDRESS_ID\": 252510,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02381044771231, 38.940088934414405]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 23,\n        \"OBJECTID_2\": 123,\n        \"OBJECTID\": 31,\n        \"PRECINCT_N\": 8,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_31\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Palisades Recreation Center\",\n        \"ADDRESS\": \"5100 SHERIER PLACE NW\",\n        \"ADDRESS_ID\": 268352,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.10263460574787, 38.92444192485095]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 24,\n        \"OBJECTID_2\": 124,\n        \"OBJECTID\": 32,\n        \"PRECINCT_N\": 41,\n        \"FACILITY_D\": \"Great Hall\",\n        \"ACCESSIBLE\": \"Yes - Use entrance on Oak Street.\",\n        \"GIS_ID\": \"plp_32\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Trinity AME Zion Church\",\n        \"ADDRESS\": \"3505 16TH STREET NW\",\n        \"ADDRESS_ID\": 234593,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.0360804245525, 38.934550552844456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 25,\n        \"OBJECTID_2\": 125,\n        \"OBJECTID\": 33,\n        \"PRECINCT_N\": 43,\n        \"FACILITY_D\": \"Recreation Area\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_33\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Park View Recreation Center\",\n        \"ADDRESS\": \"693 OTIS PLACE NW\",\n        \"ADDRESS_ID\": 295160,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02135031427919, 38.935002875205896]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 26,\n        \"OBJECTID_2\": 126,\n        \"OBJECTID\": 34,\n        \"PRECINCT_N\": 42,\n        \"FACILITY_D\": \"Dining Room (lower level)\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_34\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Mt. Rona Baptist Church\",\n        \"ADDRESS\": \"3431 13TH STREET NW\",\n        \"ADDRESS_ID\": 230950,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.0294528525794, 38.93224097022686]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 27,\n        \"OBJECTID_2\": 1,\n        \"OBJECTID\": 5,\n        \"PRECINCT_N\": 80,\n        \"FACILITY_D\": \"Quander Room\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance rear of Church.\",\n        \"GIS_ID\": \"plp_5\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"St. Benedict the Moor Church\",\n        \"ADDRESS\": \"320 21ST STREET NE\",\n        \"ADDRESS_ID\": 287504,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.97545753568295, 38.894225931293576]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 28,\n        \"OBJECTID_2\": 2,\n        \"OBJECTID\": 6,\n        \"PRECINCT_N\": 102,\n        \"FACILITY_D\": \"Meeting Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_6\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Benning Public Library\",\n        \"ADDRESS\": \"3935 BENNING ROAD NE\",\n        \"ADDRESS_ID\": 295144,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.94775954961405, 38.89419424144954]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 29,\n        \"OBJECTID_2\": 3,\n        \"OBJECTID\": 7,\n        \"PRECINCT_N\": 96,\n        \"FACILITY_D\": \"Fellowship Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_7\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Hughes Memorial United Methodist Church\",\n        \"ADDRESS\": \"25 53RD STREET NE\",\n        \"ADDRESS_ID\": 287077,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.92577691903026, 38.890534557242]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 30,\n        \"OBJECTID_2\": 4,\n        \"OBJECTID\": 8,\n        \"PRECINCT_N\": 88,\n        \"FACILITY_D\": \"Church Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_8\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Thankful Baptist Church\",\n        \"ADDRESS\": \"1401 INDEPENDENCE AVENUE SE\",\n        \"ADDRESS_ID\": 65107,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.98528389471295, 38.88737930620289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 31,\n        \"OBJECTID_2\": 5,\n        \"OBJECTID\": 9,\n        \"PRECINCT_N\": 132,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_9\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"DC Center for Therapeutic Recreation\",\n        \"ADDRESS\": \"3030 G STREET SE\",\n        \"ADDRESS_ID\": 288770,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.96320322261629, 38.88087157549328]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 32,\n        \"OBJECTID_2\": 6,\n        \"OBJECTID\": 10,\n        \"PRECINCT_N\": 128,\n        \"FACILITY_D\": \"Junior Church Hall\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance adjacent to parking lot.\",\n        \"GIS_ID\": \"plp_10\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Friendship Baptist Church\",\n        \"ADDRESS\": \"900 DELAWARE AVENUE SW\",\n        \"ADDRESS_ID\": 276854,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.01249793426904, 38.878918819849204]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 33,\n        \"OBJECTID_2\": 7,\n        \"OBJECTID\": 11,\n        \"PRECINCT_N\": 111,\n        \"FACILITY_D\": \"John Bailey Room\",\n        \"ACCESSIBLE\": \"Yes - Use the Center for Employment Training entrance for ground level access (2815\",\n        \"GIS_ID\": \"plp_11\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"St. Francis Xavier Church\",\n        \"ADDRESS\": \"2800 PENNSYLVANIA AVENUE SE\",\n        \"ADDRESS_ID\": 44697,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.96750992279762, 38.872519727803635]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 34,\n        \"OBJECTID_2\": 8,\n        \"OBJECTID\": 12,\n        \"PRECINCT_N\": 108,\n        \"FACILITY_D\": \"Community Room\",\n        \"ACCESSIBLE\": \"Yes - Accessible - rear entrance, near parking lot.\",\n        \"GIS_ID\": \"plp_12\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Pennsylvania Avenue Baptist Church\",\n        \"ADDRESS\": \"3000 PENNSYLVANIA AVENUE SE\",\n        \"ADDRESS_ID\": 42549,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.96381300081566, 38.87112927464978]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 35,\n        \"OBJECTID_2\": 9,\n        \"OBJECTID\": 13,\n        \"PRECINCT_N\": 127,\n        \"FACILITY_D\": \"Meeting Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_13\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"King Greenleaf Recreation Center\",\n        \"ADDRESS\": \"201 N STREET SW\",\n        \"ADDRESS_ID\": 52917,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.01279249959418, 38.87501581074506]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 36,\n        \"OBJECTID_2\": 10,\n        \"OBJECTID\": 14,\n        \"PRECINCT_N\": 109,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_14\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Randle-Highlands Elementary School\",\n        \"ADDRESS\": \"1650 30TH STREET SE\",\n        \"ADDRESS_ID\": 156337,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.96435628177574, 38.87009140318784]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 37,\n        \"OBJECTID_2\": 11,\n        \"OBJECTID\": 16,\n        \"PRECINCT_N\": 134,\n        \"FACILITY_D\": \"Multipurpose Room\",\n        \"ACCESSIBLE\": \"Yes - Use rear entrance, adjacent to parking lot.\",\n        \"GIS_ID\": \"plp_16\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Allen AME Church\",\n        \"ADDRESS\": \"2498 ALABAMA AVENUE SE\",\n        \"ADDRESS_ID\": 46843,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.97028294121324, 38.856884832198325]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 38,\n        \"OBJECTID_2\": 12,\n        \"OBJECTID\": 17,\n        \"PRECINCT_N\": 115,\n        \"FACILITY_D\": \"Community Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_17\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Seventh District Police Station\",\n        \"ADDRESS\": \"2455 ALABAMA AVENUE SE\",\n        \"ADDRESS_ID\": 278162,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.96952139706708, 38.85335576413945]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 39,\n        \"OBJECTID_2\": 13,\n        \"OBJECTID\": 18,\n        \"PRECINCT_N\": 116,\n        \"FACILITY_D\": \"Fellowship Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_18\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"New Image Community Baptist Church\",\n        \"ADDRESS\": \"1839 ALABAMA AVENUE SE\",\n        \"ADDRESS_ID\": 54816,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.97783993032797, 38.84765863309889]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 40,\n        \"OBJECTID_2\": 14,\n        \"OBJECTID\": 19,\n        \"PRECINCT_N\": 124,\n        \"FACILITY_D\": \"Church Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_19\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Convenant Baptist Church\",\n        \"ADDRESS\": \"3845 SOUTH CAPITOL STREET SW\",\n        \"ADDRESS_ID\": 301907,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.00866130403007, 38.83401036254331]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 41,\n        \"OBJECTID_2\": 15,\n        \"OBJECTID\": 20,\n        \"PRECINCT_N\": 61,\n        \"FACILITY_D\": \"Multi-purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_20\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Fort Stevens Recreation Center\",\n        \"ADDRESS\": \"1327 VAN BUREN STREET NW\",\n        \"ADDRESS_ID\": 290152,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.03109080084555, 38.97026914859354]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 42,\n        \"OBJECTID_2\": 16,\n        \"OBJECTID\": 21,\n        \"PRECINCT_N\": 50,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes - Accessible rear entrance next to the parking lot.\",\n        \"GIS_ID\": \"plp_21\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Chevy Chase Community Center\",\n        \"ADDRESS\": \"5601 CONNECTICUT AVENUE NW\",\n        \"ADDRESS_ID\": 263959,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.07510861326296, 38.96515842127339]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 43,\n        \"OBJECTID_2\": 17,\n        \"OBJECTID\": 22,\n        \"PRECINCT_N\": 52,\n        \"FACILITY_D\": \"Roth Gymnasium Bldg.\",\n        \"ACCESSIBLE\": \"Yes - Access from parking lot.\",\n        \"GIS_ID\": \"plp_22\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"St. John's College High School\",\n        \"ADDRESS\": \"2607 MILITARY ROAD NW\",\n        \"ADDRESS_ID\": 259840,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.05520494037229, 38.962417220863394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 44,\n        \"OBJECTID_2\": 18,\n        \"OBJECTID\": 24,\n        \"PRECINCT_N\": 60,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_24\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Church of the Nativity Youth Center\",\n        \"ADDRESS\": \"6000 GEORGIA AVENUE NW\",\n        \"ADDRESS_ID\": 253197,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02822698508824, 38.96284816168917]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 45,\n        \"OBJECTID_2\": 19,\n        \"OBJECTID\": 25,\n        \"PRECINCT_N\": 138,\n        \"FACILITY_D\": \"Fellowship Hall\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance adjacent to parking lot.\",\n        \"GIS_ID\": \"plp_25\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Capital Memorial Adventist Church\",\n        \"ADDRESS\": \"3150 CHESAPEAKE STREET NW\",\n        \"ADDRESS_ID\": 284592,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.06396319555985, 38.95020322506991]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 46,\n        \"OBJECTID_2\": 20,\n        \"OBJECTID\": 26,\n        \"PRECINCT_N\": 31,\n        \"FACILITY_D\": \"Church Hall\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance located on 42nd St.\",\n        \"GIS_ID\": \"plp_26\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"St. Columba's Episcopal Church\",\n        \"ADDRESS\": \"4201 ALBEMARLE STREET NW\",\n        \"ADDRESS_ID\": 301545,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.08244680641738, 38.9482176667262]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 47,\n        \"OBJECTID_2\": 21,\n        \"OBJECTID\": 27,\n        \"PRECINCT_N\": 44,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_27\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"North Capitol at Plymouth\",\n        \"ADDRESS\": \"5233 NORTH CAPTIOL STREET NE\",\n        \"ADDRESS_ID\": 298101,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.00866515707142, 38.95406774426341]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 48,\n        \"OBJECTID_2\": 22,\n        \"OBJECTID\": 28,\n        \"PRECINCT_N\": 9,\n        \"FACILITY_D\": \"Vestry Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_28\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Metropolitan Memorial United Methodist Church\",\n        \"ADDRESS\": \"3401 NEBRASKA AVENUE NW\",\n        \"ADDRESS_ID\": 298676,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.08779934048464, 38.93495923702522]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 49,\n        \"OBJECTID_2\": 23,\n        \"OBJECTID\": 47,\n        \"PRECINCT_N\": 75,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_47\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"McKinley Technology Senior High School\",\n        \"ADDRESS\": \"151 T STREET NE\",\n        \"ADDRESS_ID\": 296345,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.0041224390594, 38.91521978576181]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 50,\n        \"OBJECTID_2\": 24,\n        \"OBJECTID\": 48,\n        \"PRECINCT_N\": 141,\n        \"FACILITY_D\": \"North Lobby\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_48\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Frank D. Reeves Municipal Center\",\n        \"ADDRESS\": \"2000 14TH STREET NW\",\n        \"ADDRESS_ID\": 239976,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.03240352407649, 38.917444026973975]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 125,\n        \"OBJECTID_2\": 99,\n        \"OBJECTID\": 128,\n        \"PRECINCT_N\": 137,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance adjacent to parking lot.\",\n        \"GIS_ID\": \"plp_128\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Garrison Elementary School\",\n        \"ADDRESS\": \"1200 S STREET NW\",\n        \"ADDRESS_ID\": 294509,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02861255039201, 38.913900958245385]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 126,\n        \"OBJECTID_2\": 100,\n        \"OBJECTID\": 129,\n        \"PRECINCT_N\": 133,\n        \"FACILITY_D\": \"Library\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance rear of school\",\n        \"GIS_ID\": \"plp_129\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Orr Elementary School\",\n        \"ADDRESS\": \"2200 MINNESOTA AVENUE SE\",\n        \"ADDRESS_ID\": 294539,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.97448401156392, 38.871796823975465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 127,\n        \"OBJECTID_2\": 127,\n        \"OBJECTID\": 35,\n        \"PRECINCT_N\": 71,\n        \"FACILITY_D\": \"Upper Fellowship Hall\",\n        \"ACCESSIBLE\": \"Yes - Accessible entrance on Bladensburg Road\",\n        \"GIS_ID\": \"plp_35\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Mt. Horeb Baptist Church\",\n        \"ADDRESS\": \"3015 EARL PLACE NE\",\n        \"ADDRESS_ID\": 287380,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.96257582780058, 38.92828163952405]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 128,\n        \"OBJECTID_2\": 128,\n        \"OBJECTID\": 36,\n        \"PRECINCT_N\": 28,\n        \"FACILITY_D\": \"Parish Center (near Klingle Place)\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_36\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Church of the Annunciation Parish\",\n        \"ADDRESS\": \"3810 MASSACHUSETTS AVENUE NW\",\n        \"ADDRESS_ID\": 263608,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.07581746959019, 38.93014871936168]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 129,\n        \"OBJECTID_2\": 129,\n        \"OBJECTID\": 37,\n        \"PRECINCT_N\": 136,\n        \"FACILITY_D\": \"Conference Room\",\n        \"ACCESSIBLE\": \"Yes - Use side entrance from parking lot\",\n        \"GIS_ID\": \"plp_37\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Leading Age\",\n        \"ADDRESS\": \"2519 CONNECTICUT AVENUE NW\",\n        \"ADDRESS_ID\": 284405,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.05081709968947, 38.923171900472795]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 130,\n        \"OBJECTID_2\": 130,\n        \"OBJECTID\": 38,\n        \"PRECINCT_N\": 12,\n        \"FACILITY_D\": \"Church Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_38\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"St Sophia's Greek Orthodox Cathederal Church\",\n        \"ADDRESS\": \"3600 MASSACHUSETTS AVENUE NW\",\n        \"ADDRESS_ID\": 262638,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.07117418205232, 38.92672469638905]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 131,\n        \"OBJECTID_2\": 131,\n        \"OBJECTID\": 39,\n        \"PRECINCT_N\": 39,\n        \"FACILITY_D\": \"Auditorium\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_39\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Bell Multicultural High School\",\n        \"ADDRESS\": \"3101 16th Street NW\",\n        \"ADDRESS_ID\": 234375,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.03585151879376, 38.929540334081075]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 132,\n        \"OBJECTID_2\": 132,\n        \"OBJECTID\": 41,\n        \"PRECINCT_N\": 36,\n        \"FACILITY_D\": \"Community Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_41\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Latin American Youth Center\",\n        \"ADDRESS\": \"1419 COLUMBIA ROAD NW\",\n        \"ADDRESS_ID\": 234363,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.03335781590764, 38.9277663944928]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 133,\n        \"OBJECTID_2\": 133,\n        \"OBJECTID\": 42,\n        \"PRECINCT_N\": 135,\n        \"FACILITY_D\": \"Church Hall\",\n        \"ACCESSIBLE\": \"Yes - Use ramped entrance on Rhode Island Avenue.\",\n        \"GIS_ID\": \"plp_42\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Mt. Bethel Baptist Church\",\n        \"ADDRESS\": \"1901 1ST STREET NW\",\n        \"ADDRESS_ID\": 227421,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.01182725241577, 38.916136758622]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 134,\n        \"OBJECTID_2\": 134,\n        \"OBJECTID\": 43,\n        \"PRECINCT_N\": 11,\n        \"FACILITY_D\": \"Union Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_43\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"International Union of Operating Engineer\",\n        \"ADDRESS\": \"2461 WISCONSIN AVENUE NW\",\n        \"ADDRESS_ID\": 284395,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.07250197535924, 38.92234916933058]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 135,\n        \"OBJECTID_2\": 135,\n        \"OBJECTID\": 44,\n        \"PRECINCT_N\": 23,\n        \"FACILITY_D\": \"Library and Computer Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_44\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Loughran Community Center\",\n        \"ADDRESS\": \"2500 14TH STREET NW\",\n        \"ADDRESS_ID\": 234200,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.03236211898793, 38.921998738498395]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 136,\n        \"OBJECTID_2\": 136,\n        \"OBJECTID\": 45,\n        \"PRECINCT_N\": 25,\n        \"FACILITY_D\": \"Fellowship Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_45\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Goodwill Baptist Church\",\n        \"ADDRESS\": \"1862 KALORAMA ROAD NW\",\n        \"ADDRESS_ID\": 235475,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.04382603429792, 38.91931664613416]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 137,\n        \"OBJECTID_2\": 137,\n        \"OBJECTID\": 46,\n        \"PRECINCT_N\": 13,\n        \"FACILITY_D\": \"Fellowship Hall\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_46\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Goodwill Baptist Church\",\n        \"ADDRESS\": \"1862 KALORAMA ROAD NW\",\n        \"ADDRESS_ID\": 235475,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.04382603429792, 38.91931664613416]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 138,\n        \"OBJECTID_2\": 138,\n        \"OBJECTID\": 143,\n        \"PRECINCT_N\": 143,\n        \"FACILITY_D\": \"Church Hall/Meeting Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_143\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Chinese Community Church\",\n        \"ADDRESS\": \"500 I STREET NW\",\n        \"ADDRESS_ID\": 238945,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.0191335488228, 38.900621429714505]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 139,\n        \"OBJECTID_2\": 139,\n        \"OBJECTID\": 15,\n        \"PRECINCT_N\": 110,\n        \"FACILITY_D\": \"Multi-Purpose Room\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_15\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"St. Timothy's Episcopal Church\",\n        \"ADDRESS\": \"3601 ALABAMA AVENUE SE\",\n        \"ADDRESS_ID\": 33104,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.95609228878696, 38.86298923901404]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 140,\n        \"OBJECTID_2\": 140,\n        \"OBJECTID\": 23,\n        \"PRECINCT_N\": 32,\n        \"FACILITY_D\": \"Fellowship Hall (1st Floor)\",\n        \"ACCESSIBLE\": \"Yes - Use Connecticut Ave. entrance\",\n        \"GIS_ID\": \"plp_23\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Wesley Methodist Church\",\n        \"ADDRESS\": \"5312 CONNECTICUT AVENUE NW\",\n        \"ADDRESS_ID\": 301282,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.07264987664179, 38.95932406644609]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 141,\n        \"OBJECTID_2\": 141,\n        \"OBJECTID\": 63,\n        \"PRECINCT_N\": 6,\n        \"FACILITY_D\": \"Gallery\",\n        \"ACCESSIBLE\": \"Yes\",\n        \"GIS_ID\": \"plp_63\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Duke Ellington School of the Arts\",\n        \"ADDRESS\": \"3500 R STREET NW\",\n        \"ADDRESS_ID\": 294569,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.0703075622951, 38.91344604442462]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 142,\n        \"OBJECTID_2\": 142,\n        \"OBJECTID\": 70,\n        \"PRECINCT_N\": 26,\n        \"FACILITY_D\": \"Gymnasium\",\n        \"ACCESSIBLE\": \"Yes - Use ramped entrance on 27th Street\",\n        \"GIS_ID\": \"plp_70\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Oyster Elementary School\",\n        \"ADDRESS\": \"2801 CALVERT STREET NW\",\n        \"ADDRESS_ID\": 275944,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.0572033785664, 38.923595492962626]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID_1\": 143,\n        \"OBJECTID_2\": 143,\n        \"OBJECTID\": 89,\n        \"PRECINCT_N\": 58,\n        \"FACILITY_D\": \"Community Room.\",\n        \"ACCESSIBLE\": \"Yes - Ground level at Georgia. Avenue & Quackenbos Street.\",\n        \"GIS_ID\": \"plp_89\",\n        \"WEB_URL\": \"http://www.dcboee.org/election_info/pollplaces/\",\n        \"NAME\": \"Fourth District Police Station\",\n        \"ADDRESS\": \"6001 GEORGIA AVENUE NW\",\n        \"ADDRESS_ID\": 243485,\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02741098359434, 38.96312544965341]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-77.10263460574787, 38.92444192485095],\n            [-77.08244680641738, 38.9482176667262],\n            [-77.07510861326296, 38.96515842127339],\n            [-77.06803711636698, 38.96662722064828],\n            [-77.05520494037229, 38.962417220863394],\n            [-77.03399523386544, 38.98460295003216],\n            [-77.01805167618295, 38.96888669131412],\n            [-76.99988253848109, 38.95997180998364],\n            [-76.98499562999821, 38.94201213500814],\n            [-76.95763369669753, 38.92730594377001],\n            [-76.9404849391363, 38.90822873259865],\n            [-76.9299476407989, 38.90541498719898],\n            [-76.92270804396746, 38.89619288755561],\n            [-76.92611549373204, 38.88359849788337],\n            [-76.93761630232859, 38.87906795106383],\n            [-76.95609228878696, 38.86298923901404],\n            [-76.96952139706708, 38.85335576413945],\n            [-76.99226881799031, 38.834327886510565],\n            [-76.99918484024232, 38.82898558049571],\n            [-77.00847560019479, 38.8269811922012],\n            [-77.00866130403007, 38.83401036254331],\n            [-77.00097525758831, 38.83938233153192],\n            [-76.99535456253949, 38.85976175834964],\n            [-77.01279249959418, 38.87501581074506],\n            [-77.02291065460415, 38.87987059942476],\n            [-77.04818646563815, 38.89812378757083],\n            [-77.0511477096272, 38.898862835793516],\n            [-77.08498118309296, 38.909915833213795],\n            [-77.10263460574787, 38.92444192485095]\n          ],\n          [\n            [-76.98652958387164, 38.9375726751204],\n            [-76.99726738315395, 38.95334052572905],\n            [-77.00866515707142, 38.95406774426341],\n            [-77.0177770800083, 38.948230614415095],\n            [-77.00253831800221, 38.923654687421774],\n            [-76.98652958387164, 38.9375726751204]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-concave/test/out/pts3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.40898132324217, 37.77505678240509]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.41859436035156, 37.729724141962045]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.42786407470703, 37.738141282210385]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.43198394775389, 37.72836644908416]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.47592926025389, 37.78645343442073]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.41687774658202, 37.76555823017286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.42820739746094, 37.91115885137137]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.43198394775389, 37.72836644908416],\n            [-122.42786407470703, 37.738141282210385],\n            [-122.41859436035156, 37.729724141962045],\n            [-122.43198394775389, 37.72836644908416]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-concave/test/out/support-null-geometry.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": null\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.43095397949219, 37.74411415606583]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.44331359863283, 37.726194088705576]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.47833251953125, 37.73651223296987]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.4103546142578, 37.72184917678752]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.41790771484375, 37.74682893940135]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.53395080566405, 37.83690319650768]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.51541137695311, 37.83473402375478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.49069213867188, 37.837445479729666]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.52639770507812, 37.83473402375478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.62527465820311, 37.89327929625019]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.60467529296875, 37.902490518640995]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#f0f\",\n        \"marker-size\": \"small\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.58682250976562, 37.895988598965644]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-122.62527465820311, 37.89327929625019],\n              [-122.60467529296875, 37.902490518640995],\n              [-122.58682250976562, 37.895988598965644],\n              [-122.62527465820311, 37.89327929625019]\n            ]\n          ],\n          [\n            [\n              [-122.52639770507812, 37.83473402375478],\n              [-122.53395080566405, 37.83690319650768],\n              [-122.51541137695311, 37.83473402375478],\n              [-122.52639770507812, 37.83473402375478]\n            ]\n          ],\n          [\n            [\n              [-122.4103546142578, 37.72184917678752],\n              [-122.44331359863283, 37.726194088705576],\n              [-122.47833251953125, 37.73651223296987],\n              [-122.43095397949219, 37.74411415606583],\n              [-122.41790771484375, 37.74682893940135],\n              [-122.4103546142578, 37.72184917678752]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-concave/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { point, featureCollection } from \"@turf/helpers\";\nimport { featureEach } from \"@turf/meta\";\nimport { concave } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-concave\", (t) => {\n  fixtures.forEach((fixture) => {\n    const filename = fixture.filename;\n    const name = fixture.name;\n    const geojson = fixture.geojson;\n    const properties = geojson.properties || {};\n    const maxEdge = properties.maxEdge || 1;\n    const units = properties.units;\n\n    const hull = concave(geojson, { units, maxEdge });\n    featureEach(geojson, stylePt);\n    const results = featureCollection(geojson.features.concat(hull));\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEquals(results, loadJsonFileSync(directories.out + filename), name);\n  });\n  t.end();\n});\n\nconst onePoint = featureCollection([point([0, 0])]);\n\ntest(\"concave -- throw\", (t) => {\n  t.equal(\n    concave(onePoint, { maxEdge: 5.5, units: \"miles\" }),\n    null,\n    \"too few polygons found to compute concave hull\"\n  );\n  t.equal(\n    concave(onePoint),\n    null,\n    \"too few polygons found to compute concave hull -- maxEdge too small\"\n  );\n\n  t.end();\n});\n\nfunction stylePt(pt) {\n  pt.properties[\"marker-color\"] = \"#f0f\";\n  pt.properties[\"marker-size\"] = \"small\";\n}\n"
  },
  {
    "path": "packages/turf-concave/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-convex/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-convex/README.md",
    "content": "# @turf/convex\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## convex\n\nTakes a [Feature][1] or a [FeatureCollection][2] and returns a convex hull [Polygon][3].\n\nInternally this uses\nthe [convex-hull][4] module that implements a\n[monotone chain hull][5].\n\n### Parameters\n\n*   `geojson` **[GeoJSON][6]** input Feature or FeatureCollection\n*   `options` **[Object][7]** Optional parameters (optional, default `{}`)\n\n    *   `options.concavity` **[number][8]** 1 - thin shape. Infinity - convex hull. (optional, default `Infinity`)\n    *   `options.properties` **[Object][7]** Translate Properties to Feature (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar points = turf.featureCollection([\n  turf.point([10.195312, 43.755225]),\n  turf.point([10.404052, 43.8424511]),\n  turf.point([10.579833, 43.659924]),\n  turf.point([10.360107, 43.516688]),\n  turf.point([10.14038, 43.588348]),\n  turf.point([10.195312, 43.755225])\n]);\n\nvar hull = turf.convex(points);\n\n//addToMap\nvar addToMap = [points, hull]\n```\n\nReturns **[Feature][1]<[Polygon][3]>** a convex hull\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[4]: https://github.com/mikolalysenko/convex-hull\n\n[5]: http://en.wikibooks.org/wiki/Algorithm_Implementation/Geometry/Convex_hull/Monotone_chain\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3\n\n[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/convex\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-convex/bench.ts",
    "content": "import { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { convex } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst suite = new Benchmark.Suite(\"turf-convex\");\n\n/**\n * Benchmark Results\n *\n * elevation1 x 29,686 ops/sec ±1.77% (89 runs sampled)\n * elevation2 x 104,874 ops/sec ±1.33% (86 runs sampled)\n * elevation3 x 29,688 ops/sec ±1.77% (89 runs sampled)\n * elevation4 x 103,112 ops/sec ±1.26% (85 runs sampled)\n * elevation5 x 39,251 ops/sec ±1.32% (82 runs sampled)\n */\nglob\n  .sync(path.join(__dirname, \"test\", \"in\", \"*.geojson\"))\n  .forEach((filepath) => {\n    const geojson = loadJsonFileSync(filepath);\n    suite.add(path.parse(filepath).name, () => convex(geojson));\n  });\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-convex/index.ts",
    "content": "import { Feature, GeoJsonProperties, Polygon } from \"geojson\";\nimport { AllGeoJSON, polygon } from \"@turf/helpers\";\nimport { coordEach } from \"@turf/meta\";\nimport concaveman from \"concaveman\";\n\n/**\n * Takes a {@link Feature} or a {@link FeatureCollection} and returns a convex hull {@link Polygon}.\n *\n * Internally this uses\n * the [convex-hull](https://github.com/mikolalysenko/convex-hull) module that implements a\n * [monotone chain hull](http://en.wikibooks.org/wiki/Algorithm_Implementation/Geometry/Convex_hull/Monotone_chain).\n *\n * @function\n * @param {GeoJSON} geojson input Feature or FeatureCollection\n * @param {Object} [options={}] Optional parameters\n * @param {number} [options.concavity=Infinity] 1 - thin shape. Infinity - convex hull.\n * @param {Object} [options.properties={}] Translate Properties to Feature\n * @returns {Feature<Polygon>} a convex hull\n * @example\n * var points = turf.featureCollection([\n *   turf.point([10.195312, 43.755225]),\n *   turf.point([10.404052, 43.8424511]),\n *   turf.point([10.579833, 43.659924]),\n *   turf.point([10.360107, 43.516688]),\n *   turf.point([10.14038, 43.588348]),\n *   turf.point([10.195312, 43.755225])\n * ]);\n *\n * var hull = turf.convex(points);\n *\n * //addToMap\n * var addToMap = [points, hull]\n */\nfunction convex<P extends GeoJsonProperties = GeoJsonProperties>(\n  geojson: AllGeoJSON,\n  options: {\n    concavity?: number;\n    properties?: P;\n  } = {}\n): Feature<Polygon, P> | null {\n  // Default parameters\n  options.concavity = options.concavity || Infinity;\n\n  // Container\n  const points: number[][] = [];\n\n  // Convert all points to flat 2D coordinate Array\n  coordEach(geojson, (coord) => {\n    points.push([coord[0], coord[1]]);\n  });\n  if (!points.length) {\n    return null;\n  }\n\n  const convexHull = concaveman(points, options.concavity);\n\n  // Convex hull should have at least 3 different vertices in order to create a valid polygon\n  if (convexHull.length > 3) {\n    return polygon([convexHull]);\n  }\n  return null;\n}\n\nexport { convex };\nexport default convex;\n"
  },
  {
    "path": "packages/turf-convex/package.json",
    "content": "{\n  \"name\": \"@turf/convex\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Creates a convex hull around points\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gis\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/concaveman\": \"^1.1.6\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"concaveman\": \"^1.2.1\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-convex/test/in/elevation1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.833, 39.284] },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 25\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.6, 39.984] },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 23\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.221, 39.125] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 29\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.358, 39.987] },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 12\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.9221, 39.27] },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 11\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.534, 39.123] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 49\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.21, 39.12] },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 50\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.22, 39.33] },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 90\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.44, 39.55] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 22\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.77, 39.66] },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 99\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.44, 39.11] },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 55\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.05, 39.92] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 41\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.88, 39.98] },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 52\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.55, 39.55] },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 143\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.33, 39.44] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 76\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.56, 39.24] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 18\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.56, 39.36] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 52\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-convex/test/in/elevation2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.1300048828125, 40.157885249506506]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.5587158203125, 39.816975090490004]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.06109619140625, 40.0759697987031]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.21490478515625, 39.60145584096999]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.77020263671875, 39.35766163717121]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-convex/test/in/elevation3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.833, 39.284] },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 25\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.6, 39.984] },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 23\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.221, 39.125] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 29\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.358, 39.987] },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 12\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.9221, 39.27] },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 11\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.534, 39.123] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 49\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.21, 39.12] },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 50\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.22, 39.33] },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 90\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.44, 39.55] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 22\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.77, 39.66] },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 99\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.44, 39.11] },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 55\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.05, 39.92] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 41\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.88, 39.98] },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 52\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.55, 39.55] },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 143\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.33, 39.44] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 76\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.56, 39.24] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 18\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.56, 39.36] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 52\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-convex/test/in/elevation4.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.1300048828125, 40.157885249506506, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.5587158203125, 39.816975090490004, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.06109619140625, 40.0759697987031, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.21490478515625, 39.60145584096999, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.77020263671875, 39.35766163717121, 1]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-convex/test/in/elevation5.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.08355712890625, 40.6723059714534],\n            [-73.7567138671875, 40.8595252289932],\n            [-73.86383056640625, 40.97575093157534],\n            [-74.0203857421875, 41.04621681452063],\n            [-74.24285888671875, 41.04828819952275],\n            [-74.410400390625, 40.977824533189526],\n            [-74.5257568359375, 40.851215574282456],\n            [-74.5697021484375, 40.74309523218185],\n            [-74.59991455078125, 40.60144147645398],\n            [-74.56146240234375, 40.47620304302563],\n            [-74.41864013671875, 40.386304853509046],\n            [-74.2236328125, 40.32141999593439],\n            [-74.01214599609375, 40.317231732315236],\n            [-73.85009765625, 40.34654412118006],\n            [-73.76220703125, 40.444856858961764],\n            [-74.08355712890625, 40.6723059714534]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-convex/test/out/elevation1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.833, 39.284]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 25\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6, 39.984]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 23\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.221, 39.125]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 29\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.358, 39.987]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 12\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.9221, 39.27]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 11\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.534, 39.123]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 49\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.21, 39.12]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 50\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.22, 39.33]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 90\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.44, 39.55]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 22\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.77, 39.66]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 99\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.44, 39.11]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 55\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.05, 39.92]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 41\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.88, 39.98]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 52\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.55, 39.55]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 143\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.33, 39.44]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 76\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.56, 39.24]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 18\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.56, 39.36]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 52\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.534, 39.123],\n            [-75.9221, 39.27],\n            [-75.88, 39.98],\n            [-75.6, 39.984],\n            [-75.358, 39.987],\n            [-75.05, 39.92],\n            [-75.21, 39.12],\n            [-75.44, 39.11],\n            [-75.534, 39.123]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-convex/test/out/elevation2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.1300048828125, 40.157885249506506]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.5587158203125, 39.816975090490004]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.06109619140625, 40.0759697987031]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.21490478515625, 39.60145584096999]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.77020263671875, 39.35766163717121]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.77020263671875, 39.35766163717121],\n            [-76.21490478515625, 39.60145584096999],\n            [-76.06109619140625, 40.0759697987031],\n            [-75.1300048828125, 40.157885249506506],\n            [-74.5587158203125, 39.816975090490004],\n            [-74.77020263671875, 39.35766163717121]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-convex/test/out/elevation3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.833, 39.284]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 25\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6, 39.984]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 23\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.221, 39.125]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 29\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.358, 39.987]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 12\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.9221, 39.27]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 11\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.534, 39.123]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 49\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.21, 39.12]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 50\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.22, 39.33]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 90\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.44, 39.55]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 22\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.77, 39.66]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 99\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.44, 39.11]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 55\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.05, 39.92]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 41\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.88, 39.98]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 52\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.55, 39.55]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 143\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.33, 39.44]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 76\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.56, 39.24]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 18\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.56, 39.36]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 52\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.534, 39.123],\n            [-75.9221, 39.27],\n            [-75.88, 39.98],\n            [-75.6, 39.984],\n            [-75.358, 39.987],\n            [-75.05, 39.92],\n            [-75.21, 39.12],\n            [-75.44, 39.11],\n            [-75.534, 39.123]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-convex/test/out/elevation4.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.1300048828125, 40.157885249506506, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.5587158203125, 39.816975090490004, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.06109619140625, 40.0759697987031, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.21490478515625, 39.60145584096999, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.77020263671875, 39.35766163717121, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.77020263671875, 39.35766163717121],\n            [-76.21490478515625, 39.60145584096999],\n            [-76.06109619140625, 40.0759697987031],\n            [-75.1300048828125, 40.157885249506506],\n            [-74.5587158203125, 39.816975090490004],\n            [-74.77020263671875, 39.35766163717121]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-convex/test/out/elevation5.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.08355712890625, 40.6723059714534],\n            [-73.7567138671875, 40.8595252289932],\n            [-73.86383056640625, 40.97575093157534],\n            [-74.0203857421875, 41.04621681452063],\n            [-74.24285888671875, 41.04828819952275],\n            [-74.410400390625, 40.977824533189526],\n            [-74.5257568359375, 40.851215574282456],\n            [-74.5697021484375, 40.74309523218185],\n            [-74.59991455078125, 40.60144147645398],\n            [-74.56146240234375, 40.47620304302563],\n            [-74.41864013671875, 40.386304853509046],\n            [-74.2236328125, 40.32141999593439],\n            [-74.01214599609375, 40.317231732315236],\n            [-73.85009765625, 40.34654412118006],\n            [-73.76220703125, 40.444856858961764],\n            [-74.08355712890625, 40.6723059714534]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.56146240234375, 40.47620304302563],\n            [-74.59991455078125, 40.60144147645398],\n            [-74.5697021484375, 40.74309523218185],\n            [-74.5257568359375, 40.851215574282456],\n            [-74.410400390625, 40.977824533189526],\n            [-74.24285888671875, 41.04828819952275],\n            [-74.0203857421875, 41.04621681452063],\n            [-73.86383056640625, 40.97575093157534],\n            [-73.7567138671875, 40.8595252289932],\n            [-73.76220703125, 40.444856858961764],\n            [-73.85009765625, 40.34654412118006],\n            [-74.01214599609375, 40.317231732315236],\n            [-74.2236328125, 40.32141999593439],\n            [-74.41864013671875, 40.386304853509046],\n            [-74.56146240234375, 40.47620304302563]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-convex/test.ts",
    "content": "import test from \"tape\";\nimport { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { featureCollection } from \"@turf/helpers\";\nimport { convex } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\ntest(\"convex hull\", (t) => {\n  glob.sync(directories.in + \"*.geojson\").forEach((filepath) => {\n    const fileout = filepath.replace(\"/in/\", \"/out/\");\n    const geojson = loadJsonFileSync(filepath);\n\n    const convexHull = convex(geojson);\n    geojson.features.push(convexHull);\n\n    if (process.env.REGEN) writeJsonFileSync(fileout, geojson);\n    t.deepEqual(geojson, loadJsonFileSync(fileout), path.parse(filepath).name);\n  });\n  t.end();\n});\n\ntest(\"turf-convex -- empty\", (t) => {\n  t.deepEqual(convex(featureCollection([])), null, \"corner case: null hull\");\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-convex/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-destination/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-destination/README.md",
    "content": "# @turf/destination\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## destination\n\nTakes a [Point][1] and calculates the location of a destination point given a distance in\ndegrees, radians, miles, or kilometers; and bearing in degrees.\nThis uses the [Haversine formula][2] to account for global curvature.\n\n### Parameters\n\n*   `origin` **[Coord][3]** starting point\n*   `distance` **[number][4]** distance from the origin point\n*   `bearing` **[number][4]** ranging from -180 to 180\n*   `options` **[Object][5]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** Supports all valid Turf [Units][6] (optional, default `'kilometers'`)\n    *   `options.properties` **[Object][5]** Translate properties to Point (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar point = turf.point([-75.343, 39.984]);\nvar distance = 50;\nvar bearing = 90;\nvar options = {units: 'miles'};\n\nvar destination = turf.destination(point, distance, bearing, options);\n\n//addToMap\nvar addToMap = [point, destination]\ndestination.properties['marker-color'] = '#f00';\npoint.properties['marker-color'] = '#0f0';\n```\n\nReturns **[Feature][7]<[Point][1]>** destination point\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[2]: http://en.wikipedia.org/wiki/Haversine_formula\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[6]: https://turfjs.org/docs/api/types/Units\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/destination\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-destination/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { destination } from \"./index.js\";\n\nvar pt1 = [-75.0, 39.0];\nvar dist = 100;\nvar bear = 180;\n\nnew Benchmark.Suite(\"turf-destination\")\n  .add(\"turf-destination\", () => destination(pt1, dist, bear))\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-destination/index.ts",
    "content": "// http://en.wikipedia.org/wiki/Haversine_formula\n// http://www.movable-type.co.uk/scripts/latlong.html\nimport { Feature, Point, GeoJsonProperties } from \"geojson\";\nimport {\n  Coord,\n  degreesToRadians,\n  lengthToRadians,\n  point,\n  radiansToDegrees,\n  Units,\n} from \"@turf/helpers\";\nimport { getCoord } from \"@turf/invariant\";\n\n/**\n * Takes a {@link Point} and calculates the location of a destination point given a distance in\n * degrees, radians, miles, or kilometers; and bearing in degrees.\n * This uses the [Haversine formula](http://en.wikipedia.org/wiki/Haversine_formula) to account for global curvature.\n *\n * @function\n * @param {Coord} origin starting point\n * @param {number} distance distance from the origin point\n * @param {number} bearing ranging from -180 to 180\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}\n * @param {Object} [options.properties={}] Translate properties to Point\n * @returns {Feature<Point>} destination point\n * @example\n * var point = turf.point([-75.343, 39.984]);\n * var distance = 50;\n * var bearing = 90;\n * var options = {units: 'miles'};\n *\n * var destination = turf.destination(point, distance, bearing, options);\n *\n * //addToMap\n * var addToMap = [point, destination]\n * destination.properties['marker-color'] = '#f00';\n * point.properties['marker-color'] = '#0f0';\n */\nfunction destination<P extends GeoJsonProperties = GeoJsonProperties>(\n  origin: Coord,\n  distance: number,\n  bearing: number,\n  options: {\n    units?: Units;\n    properties?: P;\n  } = {}\n): Feature<Point, P> {\n  // Handle input\n  const coordinates1 = getCoord(origin);\n  const longitude1 = degreesToRadians(coordinates1[0]);\n  const latitude1 = degreesToRadians(coordinates1[1]);\n  const bearingRad = degreesToRadians(bearing);\n  const radians = lengthToRadians(distance, options.units);\n\n  // Main\n  const latitude2 = Math.asin(\n    Math.sin(latitude1) * Math.cos(radians) +\n      Math.cos(latitude1) * Math.sin(radians) * Math.cos(bearingRad)\n  );\n  const longitude2 =\n    longitude1 +\n    Math.atan2(\n      Math.sin(bearingRad) * Math.sin(radians) * Math.cos(latitude1),\n      Math.cos(radians) - Math.sin(latitude1) * Math.sin(latitude2)\n    );\n  const lng = radiansToDegrees(longitude2);\n  const lat = radiansToDegrees(latitude2);\n  if (coordinates1[2] !== undefined) {\n    return point([lng, lat, coordinates1[2]], options.properties);\n  }\n  return point([lng, lat], options.properties);\n}\n\nexport { destination };\nexport default destination;\n"
  },
  {
    "path": "packages/turf-destination/package.json",
    "content": "{\n  \"name\": \"@turf/destination\",\n  \"version\": \"7.3.4\",\n  \"description\": \"turf destination module\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Pavel Rozvora <@prozvora>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"distance\",\n    \"destination\",\n    \"bearing\",\n    \"miles\",\n    \"km\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-destination/test/in/point-0-with-elevation.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"bearing\": 0\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-75, 38.10096062273525, 100]\n  }\n}\n"
  },
  {
    "path": "packages/turf-destination/test/in/point-0.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"bearing\": 0\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-75, 38.10096062273525]\n  }\n}\n"
  },
  {
    "path": "packages/turf-destination/test/in/point-180.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-75, 39]\n  }\n}\n"
  },
  {
    "path": "packages/turf-destination/test/in/point-90.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"bearing\": 90\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-75, 39]\n  }\n}\n"
  },
  {
    "path": "packages/turf-destination/test/in/point-way-far-away-km.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"bearing\": 90,\n    \"dist\": 5000,\n    \"units\": \"kilometers\"\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-75, 39]\n  }\n}\n"
  },
  {
    "path": "packages/turf-destination/test/in/point-way-far-away-miles.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"bearing\": 90,\n    \"dist\": 5000,\n    \"units\": \"miles\"\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-75, 39]\n  }\n}\n"
  },
  {
    "path": "packages/turf-destination/test/out/point-0-with-elevation.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"bearing\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75, 38.10096062273525, 100]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75, 39.000281, 100]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-75, 38.10096062273525, 100],\n          [-75, 39.000281, 100]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-destination/test/out/point-0.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"bearing\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75, 38.10096062273525]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75, 39.000281]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-75, 38.10096062273525],\n          [-75, 39.000281]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-destination/test/out/point-180.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75, 39]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75, 38.10068]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-75, 39],\n          [-75, 38.10068]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-destination/test/out/point-90.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"bearing\": 90\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75, 39]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.842853, 38.994285]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-75, 39],\n          [-73.842853, 38.994285]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-destination/test/out/point-way-far-away-km.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"bearing\": 90,\n        \"dist\": 5000,\n        \"units\": \"kilometers\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75, 39]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-22.885356, 26.440011]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-75, 39],\n          [-22.885356, 26.440011]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-destination/test/out/point-way-far-away-miles.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"bearing\": 90,\n        \"dist\": 5000,\n        \"units\": \"miles\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75, 39]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1.123703, 10.990466]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-75, 39],\n          [1.123703, 10.990466]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-destination/test.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { getCoords } from \"@turf/invariant\";\nimport { lineString, featureCollection } from \"@turf/helpers\";\nimport { truncate } from \"@turf/truncate\";\nimport { destination } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\ntest(\"turf-destination\", (t) => {\n  glob.sync(directories.in + \"*.geojson\").forEach((filepath) => {\n    const geojson = loadJsonFileSync(filepath);\n    const name = path.parse(filepath).name;\n    const base = path.parse(filepath).base;\n\n    // Params\n    const properties = geojson.properties || {};\n    const bearing = properties.bearing !== undefined ? properties.bearing : 180;\n    const dist = properties.dist !== undefined ? properties.dist : 100;\n    let testProperties = {};\n    if (properties.units !== undefined) {\n      testProperties.units = properties.units;\n    }\n    const dest = truncate(destination(geojson, dist, bearing, testProperties));\n    const result = featureCollection([\n      geojson,\n      dest,\n      lineString([getCoords(geojson), getCoords(dest)]),\n    ]);\n\n    if (process.env.REGEN) writeJsonFileSync(directories.out + base, result);\n    t.deepEqual(result, loadJsonFileSync(directories.out + base), name);\n  });\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-destination/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-difference/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-difference/README.md",
    "content": "# @turf/difference\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## difference\n\nFinds the difference between multiple [polygons][1] by clipping the subsequent polygon from the first.\n\n### Parameters\n\n*   `features` **[FeatureCollection][2]<([Polygon][1] | [MultiPolygon][3])>** input Polygon features\n\n### Examples\n\n```javascript\nvar polygon1 = turf.polygon([[\n  [128, -26],\n  [141, -26],\n  [141, -21],\n  [128, -21],\n  [128, -26]\n]], {\n  \"fill\": \"#F00\",\n  \"fill-opacity\": 0.1\n});\nvar polygon2 = turf.polygon([[\n  [126, -28],\n  [140, -28],\n  [140, -20],\n  [126, -20],\n  [126, -28]\n]], {\n  \"fill\": \"#00F\",\n  \"fill-opacity\": 0.1\n});\n\nvar difference = turf.difference(turf.featureCollection([polygon1, polygon2]));\n\n//addToMap\nvar addToMap = [polygon1, polygon2, difference];\n```\n\nReturns **([Feature][4]<([Polygon][1] | [MultiPolygon][3])> | null)** a Polygon or MultiPolygon feature showing the area of `polygon1` excluding the area of `polygon2` (if empty returns `null`)\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/difference\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-difference/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { difference } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nlet fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n// fixtures = fixtures.filter(({name}) => name === 'issue-#721');\n\n/**\n * Benchmark Results\n *\n * ==using martinez==\n * clip-polygons x 38,724 ops/sec ±11.98% (65 runs sampled)\n * completely-overlapped x 70,644 ops/sec ±8.29% (67 runs sampled)\n * create-hole x 62,128 ops/sec ±7.45% (75 runs sampled)\n * issue-#721-inverse x 354,473 ops/sec ±2.46% (81 runs sampled)\n * issue-#721 x 339,053 ops/sec ±3.24% (78 runs sampled)\n * multi-polygon-input x 17,728 ops/sec ±10.01% (64 runs sampled)\n * multi-polygon-target x 14,077 ops/sec ±6.52% (75 runs sampled)\n * split-polygon x 29,258 ops/sec ±8.99% (69 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-difference\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => difference(geojson));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-difference/index.ts",
    "content": "import { Polygon, MultiPolygon, Feature, FeatureCollection } from \"geojson\";\nimport * as polyclip from \"polyclip-ts\";\nimport { polygon, multiPolygon } from \"@turf/helpers\";\nimport { geomEach } from \"@turf/meta\";\n\n/**\n * Finds the difference between multiple {@link Polygon|polygons} by clipping the subsequent polygon from the first.\n *\n * @function\n * @param {FeatureCollection<Polygon|MultiPolygon>} features input Polygon features\n * @returns {Feature<Polygon|MultiPolygon>|null} a Polygon or MultiPolygon feature showing the area of `polygon1` excluding the area of `polygon2` (if empty returns `null`)\n * @example\n * var polygon1 = turf.polygon([[\n *   [128, -26],\n *   [141, -26],\n *   [141, -21],\n *   [128, -21],\n *   [128, -26]\n * ]], {\n *   \"fill\": \"#F00\",\n *   \"fill-opacity\": 0.1\n * });\n * var polygon2 = turf.polygon([[\n *   [126, -28],\n *   [140, -28],\n *   [140, -20],\n *   [126, -20],\n *   [126, -28]\n * ]], {\n *   \"fill\": \"#00F\",\n *   \"fill-opacity\": 0.1\n * });\n *\n * var difference = turf.difference(turf.featureCollection([polygon1, polygon2]));\n *\n * //addToMap\n * var addToMap = [polygon1, polygon2, difference];\n */\nfunction difference(\n  features: FeatureCollection<Polygon | MultiPolygon>\n): Feature<Polygon | MultiPolygon> | null {\n  const geoms: Array<polyclip.Geom> = [];\n\n  geomEach(features, (geom) => {\n    geoms.push(geom.coordinates as polyclip.Geom);\n  });\n\n  if (geoms.length < 2) {\n    throw new Error(\"Must have at least two features\");\n  }\n\n  const properties = features.features[0].properties || {};\n\n  const differenced = polyclip.difference(geoms[0], ...geoms.slice(1));\n  if (differenced.length === 0) return null;\n  if (differenced.length === 1) return polygon(differenced[0], properties);\n  return multiPolygon(differenced, properties);\n}\n\nexport { difference };\nexport default difference;\n"
  },
  {
    "path": "packages/turf-difference/package.json",
    "content": "{\n  \"name\": \"@turf/difference\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Finds the difference between multiple polygons by clipping the subsequent polygon from the first.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gis\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"polyclip-ts\": \"^0.16.8\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-difference/test/in/clip-polygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127.705078125, -34.52466147177172],\n            [139.5703125, -34.52466147177172],\n            [139.5703125, -15.28418511407642],\n            [127.705078125, -15.28418511407642],\n            [127.705078125, -34.52466147177172]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [133.154296875, -29.075375179558346],\n            [144.228515625, -29.075375179558346],\n            [144.228515625, -12.983147716796566],\n            [133.154296875, -12.983147716796566],\n            [133.154296875, -29.075375179558346]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/in/completely-overlapped.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128.583984375, -27.916766641249065],\n            [137.8125, -27.916766641249065],\n            [137.8125, -20.879342971957897],\n            [128.583984375, -20.879342971957897],\n            [128.583984375, -27.916766641249065]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [125.33203125, -31.353636941500987],\n            [141.15234374999997, -31.353636941500987],\n            [141.15234374999997, -16.804541076383455],\n            [125.33203125, -16.804541076383455],\n            [125.33203125, -31.353636941500987]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/in/create-hole.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121, -31],\n            [144, -31],\n            [144, -15],\n            [121, -15],\n            [121, -31]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126, -28],\n            [140, -28],\n            [140, -20],\n            [126, -20],\n            [126, -28]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/in/issue-#721-inverse.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-0.6462588068806041, 44.80608667910215],\n              [-0.6461987, 44.8060367],\n              [-0.6461042, 44.8059451],\n              [-0.6461041344154722, 44.805944903377586],\n              [-0.6461991369724274, 44.80603699057963],\n              [-0.6462588068806041, 44.80608667910215]\n            ]\n          ],\n          [\n            [\n              [-0.646069093721612, 44.80583985137739],\n              [-0.6460542, 44.8057952],\n              [-0.6460421, 44.8056729],\n              [-0.6460471709105139, 44.80564743856641],\n              [-0.6460422277450562, 44.805672561504906],\n              [-0.6460542976856232, 44.80579530680288],\n              [-0.646069093721612, 44.80583985137739]\n            ]\n          ],\n          [\n            [\n              [-0.646093673696575, 44.80541109474097],\n              [-0.6461073, 44.8053383],\n              [-0.6461158838109077, 44.80524109574131],\n              [-0.646107941865921, 44.80533857879061],\n              [-0.646093673696575, 44.80541109474097]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6474134, 44.805326],\n            [-0.6471907, 44.8053946],\n            [-0.6465049, 44.8055554],\n            [-0.6464734, 44.8056645],\n            [-0.6465119, 44.8057959],\n            [-0.6465922, 44.8059124],\n            [-0.6466376, 44.8059546],\n            [-0.6466831, 44.8059719],\n            [-0.6467005, 44.8059967],\n            [-0.6466971, 44.8060413],\n            [-0.64662, 44.806065],\n            [-0.64649, 44.80611],\n            [-0.646437, 44.806159],\n            [-0.6463809, 44.8061882],\n            [-0.6461987, 44.8060367],\n            [-0.6461042, 44.8059451],\n            [-0.6460542, 44.8057952],\n            [-0.6460421, 44.8056729],\n            [-0.6460848, 44.8054585],\n            [-0.6461073, 44.8053383],\n            [-0.6461218, 44.8051741],\n            [-0.6460827, 44.8050017],\n            [-0.6460168, 44.8047948],\n            [-0.645829, 44.8043891],\n            [-0.646075, 44.8042943],\n            [-0.6462847, 44.8042192],\n            [-0.6465997, 44.8047375],\n            [-0.6469113, 44.8048572],\n            [-0.6472295, 44.8050484],\n            [-0.6474134, 44.805326]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/in/issue-#721.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6474134, 44.805326],\n            [-0.6471907, 44.8053946],\n            [-0.6465049, 44.8055554],\n            [-0.6464734, 44.8056645],\n            [-0.6465119, 44.8057959],\n            [-0.6465922, 44.8059124],\n            [-0.6466376, 44.8059546],\n            [-0.6466831, 44.8059719],\n            [-0.6467005, 44.8059967],\n            [-0.6466971, 44.8060413],\n            [-0.64662, 44.806065],\n            [-0.64649, 44.80611],\n            [-0.646437, 44.806159],\n            [-0.6463809, 44.8061882],\n            [-0.6461987, 44.8060367],\n            [-0.6461042, 44.8059451],\n            [-0.6460542, 44.8057952],\n            [-0.6460421, 44.8056729],\n            [-0.6460848, 44.8054585],\n            [-0.6461073, 44.8053383],\n            [-0.6461218, 44.8051741],\n            [-0.6460827, 44.8050017],\n            [-0.6460168, 44.8047948],\n            [-0.645829, 44.8043891],\n            [-0.646075, 44.8042943],\n            [-0.6462847, 44.8042192],\n            [-0.6465997, 44.8047375],\n            [-0.6469113, 44.8048572],\n            [-0.6472295, 44.8050484],\n            [-0.6474134, 44.805326]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-0.6462588068806041, 44.80608667910215],\n              [-0.6461987, 44.8060367],\n              [-0.6461042, 44.8059451],\n              [-0.6461041344154722, 44.805944903377586],\n              [-0.6461991369724274, 44.80603699057963],\n              [-0.6462588068806041, 44.80608667910215]\n            ]\n          ],\n          [\n            [\n              [-0.646069093721612, 44.80583985137739],\n              [-0.6460542, 44.8057952],\n              [-0.6460421, 44.8056729],\n              [-0.6460471709105139, 44.80564743856641],\n              [-0.6460422277450562, 44.805672561504906],\n              [-0.6460542976856232, 44.80579530680288],\n              [-0.646069093721612, 44.80583985137739]\n            ]\n          ],\n          [\n            [\n              [-0.646093673696575, 44.80541109474097],\n              [-0.6461073, 44.8053383],\n              [-0.6461158838109077, 44.80524109574131],\n              [-0.646107941865921, 44.80533857879061],\n              [-0.646093673696575, 44.80541109474097]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/in/multi-polygon-input.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [123.134765625, -25.562265014427492],\n              [136.142578125, -25.562265014427492],\n              [136.142578125, -13.068776734357694],\n              [123.134765625, -13.068776734357694],\n              [123.134765625, -25.562265014427492]\n            ]\n          ],\n          [\n            [\n              [119.53125, -39.57182223734373],\n              [134.560546875, -39.57182223734373],\n              [134.560546875, -28.38173504322308],\n              [119.53125, -28.38173504322308],\n              [119.53125, -39.57182223734373]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126.298828125, -35.81781315869662],\n            [131.8359375, -35.81781315869662],\n            [131.8359375, -18.396230138028812],\n            [126.298828125, -18.396230138028812],\n            [126.298828125, -35.81781315869662]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/in/multi-polygon-target.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127.66113281249999, -30.713503990354965],\n            [140.7568359375, -30.713503990354965],\n            [140.7568359375, -20.2209657795223],\n            [127.66113281249999, -20.2209657795223],\n            [127.66113281249999, -30.713503990354965]\n          ],\n          [\n            [132.38525390625, -27.313213898568247],\n            [135.1318359375, -27.313213898568247],\n            [135.1318359375, -24.467150664738988],\n            [132.38525390625, -24.467150664738988],\n            [132.38525390625, -27.313213898568247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [128.8916015625, -31.84023266790935],\n              [130.6494140625, -31.84023266790935],\n              [130.6494140625, -18.646245142670598],\n              [128.8916015625, -18.646245142670598],\n              [128.8916015625, -31.84023266790935]\n            ]\n          ],\n          [\n            [\n              [136.23046875, -32.175612478499325],\n              [138.6474609375, -32.175612478499325],\n              [138.6474609375, -18.729501999072138],\n              [136.23046875, -18.729501999072138],\n              [136.23046875, -32.175612478499325]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/in/skip-martinez-issue-#35.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [3, 0],\n            [3, 3],\n            [0, 3],\n            [0, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 0],\n            [2, 0],\n            [2, 4],\n            [1, 4],\n            [1, 0]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/in/split-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122.51953124999999, -29.22889003019423],\n            [144.228515625, -29.22889003019423],\n            [144.228515625, -21.53484700204879],\n            [122.51953124999999, -21.53484700204879],\n            [122.51953124999999, -29.22889003019423]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127.705078125, -34.52466147177172],\n            [139.5703125, -34.52466147177172],\n            [139.5703125, -15.28418511407642],\n            [127.705078125, -15.28418511407642],\n            [127.705078125, -34.52466147177172]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/out/clip-polygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127.705078125, -34.52466147177172],\n            [139.5703125, -34.52466147177172],\n            [139.5703125, -15.28418511407642],\n            [127.705078125, -15.28418511407642],\n            [127.705078125, -34.52466147177172]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [133.154296875, -29.075375179558346],\n            [144.228515625, -29.075375179558346],\n            [144.228515625, -12.983147716796566],\n            [133.154296875, -12.983147716796566],\n            [133.154296875, -29.075375179558346]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1,\n        \"fill\": \"#0F0\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127.705078125, -34.52466147177172],\n            [139.5703125, -34.52466147177172],\n            [139.5703125, -29.075375179558346],\n            [133.154296875, -29.075375179558346],\n            [133.154296875, -15.28418511407642],\n            [127.705078125, -15.28418511407642],\n            [127.705078125, -34.52466147177172]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/out/completely-overlapped.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128.583984375, -27.916766641249065],\n            [137.8125, -27.916766641249065],\n            [137.8125, -20.879342971957897],\n            [128.583984375, -20.879342971957897],\n            [128.583984375, -27.916766641249065]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [125.33203125, -31.353636941500987],\n            [141.15234374999997, -31.353636941500987],\n            [141.15234374999997, -16.804541076383455],\n            [125.33203125, -16.804541076383455],\n            [125.33203125, -31.353636941500987]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/out/create-hole.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121, -31],\n            [144, -31],\n            [144, -15],\n            [121, -15],\n            [121, -31]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126, -28],\n            [140, -28],\n            [140, -20],\n            [126, -20],\n            [126, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1,\n        \"fill\": \"#0F0\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121, -31],\n            [144, -31],\n            [144, -15],\n            [121, -15],\n            [121, -31]\n          ],\n          [\n            [126, -28],\n            [126, -20],\n            [140, -20],\n            [140, -28],\n            [126, -28]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/out/issue-#721-inverse.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-0.6462588068806041, 44.80608667910215],\n              [-0.6461987, 44.8060367],\n              [-0.6461042, 44.8059451],\n              [-0.6461041344154722, 44.805944903377586],\n              [-0.6461991369724274, 44.80603699057963],\n              [-0.6462588068806041, 44.80608667910215]\n            ]\n          ],\n          [\n            [\n              [-0.646069093721612, 44.80583985137739],\n              [-0.6460542, 44.8057952],\n              [-0.6460421, 44.8056729],\n              [-0.6460471709105139, 44.80564743856641],\n              [-0.6460422277450562, 44.805672561504906],\n              [-0.6460542976856232, 44.80579530680288],\n              [-0.646069093721612, 44.80583985137739]\n            ]\n          ],\n          [\n            [\n              [-0.646093673696575, 44.80541109474097],\n              [-0.6461073, 44.8053383],\n              [-0.6461158838109077, 44.80524109574131],\n              [-0.646107941865921, 44.80533857879061],\n              [-0.646093673696575, 44.80541109474097]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6474134, 44.805326],\n            [-0.6471907, 44.8053946],\n            [-0.6465049, 44.8055554],\n            [-0.6464734, 44.8056645],\n            [-0.6465119, 44.8057959],\n            [-0.6465922, 44.8059124],\n            [-0.6466376, 44.8059546],\n            [-0.6466831, 44.8059719],\n            [-0.6467005, 44.8059967],\n            [-0.6466971, 44.8060413],\n            [-0.64662, 44.806065],\n            [-0.64649, 44.80611],\n            [-0.646437, 44.806159],\n            [-0.6463809, 44.8061882],\n            [-0.6461987, 44.8060367],\n            [-0.6461042, 44.8059451],\n            [-0.6460542, 44.8057952],\n            [-0.6460421, 44.8056729],\n            [-0.6460848, 44.8054585],\n            [-0.6461073, 44.8053383],\n            [-0.6461218, 44.8051741],\n            [-0.6460827, 44.8050017],\n            [-0.6460168, 44.8047948],\n            [-0.645829, 44.8043891],\n            [-0.646075, 44.8042943],\n            [-0.6462847, 44.8042192],\n            [-0.6465997, 44.8047375],\n            [-0.6469113, 44.8048572],\n            [-0.6472295, 44.8050484],\n            [-0.6474134, 44.805326]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1,\n        \"fill\": \"#0F0\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-0.6462588068806041, 44.80608667910215],\n              [-0.6462588068796641, 44.80608667910137],\n              [-0.6461987, 44.8060367],\n              [-0.6462588068806041, 44.80608667910215]\n            ]\n          ],\n          [\n            [\n              [-0.6461042, 44.8059451],\n              [-0.6461041344154723, 44.805944903377586],\n              [-0.6461041344154722, 44.805944903377586],\n              [-0.6461042, 44.8059451]\n            ]\n          ],\n          [\n            [\n              [-0.6460471709105139, 44.80564743856641],\n              [-0.6460421, 44.8056729],\n              [-0.6460471709104708, 44.80564743856663],\n              [-0.6460471709105139, 44.80564743856641]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/out/issue-#721.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6474134, 44.805326],\n            [-0.6471907, 44.8053946],\n            [-0.6465049, 44.8055554],\n            [-0.6464734, 44.8056645],\n            [-0.6465119, 44.8057959],\n            [-0.6465922, 44.8059124],\n            [-0.6466376, 44.8059546],\n            [-0.6466831, 44.8059719],\n            [-0.6467005, 44.8059967],\n            [-0.6466971, 44.8060413],\n            [-0.64662, 44.806065],\n            [-0.64649, 44.80611],\n            [-0.646437, 44.806159],\n            [-0.6463809, 44.8061882],\n            [-0.6461987, 44.8060367],\n            [-0.6461042, 44.8059451],\n            [-0.6460542, 44.8057952],\n            [-0.6460421, 44.8056729],\n            [-0.6460848, 44.8054585],\n            [-0.6461073, 44.8053383],\n            [-0.6461218, 44.8051741],\n            [-0.6460827, 44.8050017],\n            [-0.6460168, 44.8047948],\n            [-0.645829, 44.8043891],\n            [-0.646075, 44.8042943],\n            [-0.6462847, 44.8042192],\n            [-0.6465997, 44.8047375],\n            [-0.6469113, 44.8048572],\n            [-0.6472295, 44.8050484],\n            [-0.6474134, 44.805326]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-0.6462588068806041, 44.80608667910215],\n              [-0.6461987, 44.8060367],\n              [-0.6461042, 44.8059451],\n              [-0.6461041344154722, 44.805944903377586],\n              [-0.6461991369724274, 44.80603699057963],\n              [-0.6462588068806041, 44.80608667910215]\n            ]\n          ],\n          [\n            [\n              [-0.646069093721612, 44.80583985137739],\n              [-0.6460542, 44.8057952],\n              [-0.6460421, 44.8056729],\n              [-0.6460471709105139, 44.80564743856641],\n              [-0.6460422277450562, 44.805672561504906],\n              [-0.6460542976856232, 44.80579530680288],\n              [-0.646069093721612, 44.80583985137739]\n            ]\n          ],\n          [\n            [\n              [-0.646093673696575, 44.80541109474097],\n              [-0.6461073, 44.8053383],\n              [-0.6461158838109077, 44.80524109574131],\n              [-0.646107941865921, 44.80533857879061],\n              [-0.646093673696575, 44.80541109474097]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1,\n        \"fill\": \"#0F0\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6474134, 44.805326],\n            [-0.6472295, 44.8050484],\n            [-0.6469113, 44.8048572],\n            [-0.6465997, 44.8047375],\n            [-0.6462847, 44.8042192],\n            [-0.646075, 44.8042943],\n            [-0.645829, 44.8043891],\n            [-0.6460168, 44.8047948],\n            [-0.6460827, 44.8050017],\n            [-0.6461218, 44.8051741],\n            [-0.6461073, 44.8053383],\n            [-0.6460848, 44.8054585],\n            [-0.6460471709104708, 44.80564743856663],\n            [-0.6460422277450562, 44.805672561504906],\n            [-0.6460542976856232, 44.80579530680288],\n            [-0.646069093721612, 44.80583985137739],\n            [-0.6460542, 44.8057952],\n            [-0.6461041344154723, 44.805944903377586],\n            [-0.6461991369724274, 44.80603699057963],\n            [-0.6462588068796641, 44.80608667910137],\n            [-0.6463809, 44.8061882],\n            [-0.646437, 44.806159],\n            [-0.64649, 44.80611],\n            [-0.64662, 44.806065],\n            [-0.6466971, 44.8060413],\n            [-0.6467005, 44.8059967],\n            [-0.6466831, 44.8059719],\n            [-0.6466376, 44.8059546],\n            [-0.6465922, 44.8059124],\n            [-0.6465119, 44.8057959],\n            [-0.6464734, 44.8056645],\n            [-0.6465049, 44.8055554],\n            [-0.6471907, 44.8053946],\n            [-0.6474134, 44.805326]\n          ],\n          [\n            [-0.6461073, 44.8053383],\n            [-0.6461158838109077, 44.80524109574131],\n            [-0.646107941865921, 44.80533857879061],\n            [-0.646093673696575, 44.80541109474097],\n            [-0.6461073, 44.8053383]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/out/jsts/clip-polygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [139.5703125, -29.075375179558346],\n            [139.5703125, -34.52466147177172],\n            [127.705078125, -34.52466147177172],\n            [127.705078125, -15.28418511407642],\n            [133.154296875, -15.28418511407642],\n            [133.154296875, -29.075375179558346],\n            [139.5703125, -29.075375179558346]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127.705078125, -34.52466147177172],\n            [139.5703125, -34.52466147177172],\n            [139.5703125, -15.28418511407642],\n            [127.705078125, -15.28418511407642],\n            [127.705078125, -34.52466147177172]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [133.154296875, -29.075375179558346],\n            [144.228515625, -29.075375179558346],\n            [144.228515625, -12.983147716796566],\n            [133.154296875, -12.983147716796566],\n            [133.154296875, -29.075375179558346]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/out/jsts/completely-overlapped.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128.583984375, -27.916766641249065],\n            [137.8125, -27.916766641249065],\n            [137.8125, -20.879342971957897],\n            [128.583984375, -20.879342971957897],\n            [128.583984375, -27.916766641249065]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [125.33203125, -31.353636941500987],\n            [141.15234374999997, -31.353636941500987],\n            [141.15234374999997, -16.804541076383455],\n            [125.33203125, -16.804541076383455],\n            [125.33203125, -31.353636941500987]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/out/jsts/create-hole.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121, -31],\n            [121, -15],\n            [144, -15],\n            [144, -31],\n            [121, -31]\n          ],\n          [\n            [126, -28],\n            [140, -28],\n            [140, -20],\n            [126, -20],\n            [126, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121, -31],\n            [144, -31],\n            [144, -15],\n            [121, -15],\n            [121, -31]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126, -28],\n            [140, -28],\n            [140, -20],\n            [126, -20],\n            [126, -28]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/out/jsts/issue-#721-inverse.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-0.6462588068806041, 44.80608667910215],\n              [-0.6461987, 44.8060367],\n              [-0.6461042, 44.8059451],\n              [-0.6461041344154722, 44.805944903377586],\n              [-0.6461991369724274, 44.80603699057963],\n              [-0.6462588068806041, 44.80608667910215]\n            ]\n          ],\n          [\n            [\n              [-0.646069093721612, 44.80583985137739],\n              [-0.6460542, 44.8057952],\n              [-0.6460421, 44.8056729],\n              [-0.6460471709105139, 44.80564743856641],\n              [-0.6460422277450562, 44.805672561504906],\n              [-0.6460542976856232, 44.80579530680288],\n              [-0.646069093721612, 44.80583985137739]\n            ]\n          ],\n          [\n            [\n              [-0.646093673696575, 44.80541109474097],\n              [-0.6461073, 44.8053383],\n              [-0.6461158838109077, 44.80524109574131],\n              [-0.646107941865921, 44.80533857879061],\n              [-0.646093673696575, 44.80541109474097]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6474134, 44.805326],\n            [-0.6471907, 44.8053946],\n            [-0.6465049, 44.8055554],\n            [-0.6464734, 44.8056645],\n            [-0.6465119, 44.8057959],\n            [-0.6465922, 44.8059124],\n            [-0.6466376, 44.8059546],\n            [-0.6466831, 44.8059719],\n            [-0.6467005, 44.8059967],\n            [-0.6466971, 44.8060413],\n            [-0.64662, 44.806065],\n            [-0.64649, 44.80611],\n            [-0.646437, 44.806159],\n            [-0.6463809, 44.8061882],\n            [-0.6461987, 44.8060367],\n            [-0.6461042, 44.8059451],\n            [-0.6460542, 44.8057952],\n            [-0.6460421, 44.8056729],\n            [-0.6460848, 44.8054585],\n            [-0.6461073, 44.8053383],\n            [-0.6461218, 44.8051741],\n            [-0.6460827, 44.8050017],\n            [-0.6460168, 44.8047948],\n            [-0.645829, 44.8043891],\n            [-0.646075, 44.8042943],\n            [-0.6462847, 44.8042192],\n            [-0.6465997, 44.8047375],\n            [-0.6469113, 44.8048572],\n            [-0.6472295, 44.8050484],\n            [-0.6474134, 44.805326]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/out/jsts/issue-#721.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6474134, 44.805326],\n            [-0.6471907, 44.8053946],\n            [-0.6465049, 44.8055554],\n            [-0.6464734, 44.8056645],\n            [-0.6465119, 44.8057959],\n            [-0.6465922, 44.8059124],\n            [-0.6466376, 44.8059546],\n            [-0.6466831, 44.8059719],\n            [-0.6467005, 44.8059967],\n            [-0.6466971, 44.8060413],\n            [-0.64662, 44.806065],\n            [-0.64649, 44.80611],\n            [-0.646437, 44.806159],\n            [-0.6463809, 44.8061882],\n            [-0.6461987, 44.8060367],\n            [-0.6461042, 44.8059451],\n            [-0.6460542, 44.8057952],\n            [-0.6460421, 44.8056729],\n            [-0.6460848, 44.8054585],\n            [-0.6461073, 44.8053383],\n            [-0.6461218, 44.8051741],\n            [-0.6460827, 44.8050017],\n            [-0.6460168, 44.8047948],\n            [-0.645829, 44.8043891],\n            [-0.646075, 44.8042943],\n            [-0.6462847, 44.8042192],\n            [-0.6465997, 44.8047375],\n            [-0.6469113, 44.8048572],\n            [-0.6472295, 44.8050484],\n            [-0.6474134, 44.805326]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6474134, 44.805326],\n            [-0.6471907, 44.8053946],\n            [-0.6465049, 44.8055554],\n            [-0.6464734, 44.8056645],\n            [-0.6465119, 44.8057959],\n            [-0.6465922, 44.8059124],\n            [-0.6466376, 44.8059546],\n            [-0.6466831, 44.8059719],\n            [-0.6467005, 44.8059967],\n            [-0.6466971, 44.8060413],\n            [-0.64662, 44.806065],\n            [-0.64649, 44.80611],\n            [-0.646437, 44.806159],\n            [-0.6463809, 44.8061882],\n            [-0.6461987, 44.8060367],\n            [-0.6461042, 44.8059451],\n            [-0.6460542, 44.8057952],\n            [-0.6460421, 44.8056729],\n            [-0.6460848, 44.8054585],\n            [-0.6461073, 44.8053383],\n            [-0.6461218, 44.8051741],\n            [-0.6460827, 44.8050017],\n            [-0.6460168, 44.8047948],\n            [-0.645829, 44.8043891],\n            [-0.646075, 44.8042943],\n            [-0.6462847, 44.8042192],\n            [-0.6465997, 44.8047375],\n            [-0.6469113, 44.8048572],\n            [-0.6472295, 44.8050484],\n            [-0.6474134, 44.805326]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-0.6462588068806041, 44.80608667910215],\n              [-0.6461987, 44.8060367],\n              [-0.6461042, 44.8059451],\n              [-0.6461041344154722, 44.805944903377586],\n              [-0.6461991369724274, 44.80603699057963],\n              [-0.6462588068806041, 44.80608667910215]\n            ]\n          ],\n          [\n            [\n              [-0.646069093721612, 44.80583985137739],\n              [-0.6460542, 44.8057952],\n              [-0.6460421, 44.8056729],\n              [-0.6460471709105139, 44.80564743856641],\n              [-0.6460422277450562, 44.805672561504906],\n              [-0.6460542976856232, 44.80579530680288],\n              [-0.646069093721612, 44.80583985137739]\n            ]\n          ],\n          [\n            [\n              [-0.646093673696575, 44.80541109474097],\n              [-0.6461073, 44.8053383],\n              [-0.6461158838109077, 44.80524109574131],\n              [-0.646107941865921, 44.80533857879061],\n              [-0.646093673696575, 44.80541109474097]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/out/jsts/multi-polygon-input.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [126.298828125, -25.562265014427492],\n              [123.134765625, -25.562265014427492],\n              [123.134765625, -13.068776734357694],\n              [136.142578125, -13.068776734357694],\n              [136.142578125, -25.562265014427492],\n              [131.8359375, -25.562265014427492],\n              [131.8359375, -18.396230138028812],\n              [126.298828125, -18.396230138028812],\n              [126.298828125, -25.562265014427492]\n            ]\n          ],\n          [\n            [\n              [131.8359375, -28.38173504322308],\n              [134.560546875, -28.38173504322308],\n              [134.560546875, -39.57182223734373],\n              [119.53125, -39.57182223734373],\n              [119.53125, -28.38173504322308],\n              [126.298828125, -28.38173504322308],\n              [126.298828125, -35.81781315869662],\n              [131.8359375, -35.81781315869662],\n              [131.8359375, -28.38173504322308]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [123.134765625, -25.562265014427492],\n              [136.142578125, -25.562265014427492],\n              [136.142578125, -13.068776734357694],\n              [123.134765625, -13.068776734357694],\n              [123.134765625, -25.562265014427492]\n            ]\n          ],\n          [\n            [\n              [119.53125, -39.57182223734373],\n              [134.560546875, -39.57182223734373],\n              [134.560546875, -28.38173504322308],\n              [119.53125, -28.38173504322308],\n              [119.53125, -39.57182223734373]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126.298828125, -35.81781315869662],\n            [131.8359375, -35.81781315869662],\n            [131.8359375, -18.396230138028812],\n            [126.298828125, -18.396230138028812],\n            [126.298828125, -35.81781315869662]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/out/jsts/multi-polygon-target.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [128.8916015625, -30.713503990354965],\n              [127.66113281249999, -30.713503990354965],\n              [127.66113281249999, -20.2209657795223],\n              [128.8916015625, -20.2209657795223],\n              [128.8916015625, -30.713503990354965]\n            ]\n          ],\n          [\n            [\n              [136.23046875, -30.713503990354965],\n              [130.6494140625, -30.713503990354965],\n              [130.6494140625, -20.2209657795223],\n              [136.23046875, -20.2209657795223],\n              [136.23046875, -30.713503990354965]\n            ],\n            [\n              [132.38525390625, -27.313213898568247],\n              [135.1318359375, -27.313213898568247],\n              [135.1318359375, -24.467150664738988],\n              [132.38525390625, -24.467150664738988],\n              [132.38525390625, -27.313213898568247]\n            ]\n          ],\n          [\n            [\n              [138.6474609375, -20.2209657795223],\n              [140.7568359375, -20.2209657795223],\n              [140.7568359375, -30.713503990354965],\n              [138.6474609375, -30.713503990354965],\n              [138.6474609375, -20.2209657795223]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127.66113281249999, -30.713503990354965],\n            [140.7568359375, -30.713503990354965],\n            [140.7568359375, -20.2209657795223],\n            [127.66113281249999, -20.2209657795223],\n            [127.66113281249999, -30.713503990354965]\n          ],\n          [\n            [132.38525390625, -27.313213898568247],\n            [135.1318359375, -27.313213898568247],\n            [135.1318359375, -24.467150664738988],\n            [132.38525390625, -24.467150664738988],\n            [132.38525390625, -27.313213898568247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [128.8916015625, -31.84023266790935],\n              [130.6494140625, -31.84023266790935],\n              [130.6494140625, -18.646245142670598],\n              [128.8916015625, -18.646245142670598],\n              [128.8916015625, -31.84023266790935]\n            ]\n          ],\n          [\n            [\n              [136.23046875, -32.175612478499325],\n              [138.6474609375, -32.175612478499325],\n              [138.6474609375, -18.729501999072138],\n              [136.23046875, -18.729501999072138],\n              [136.23046875, -32.175612478499325]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/out/jsts/split-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [127.705078125, -29.22889003019423],\n              [122.51953124999999, -29.22889003019423],\n              [122.51953124999999, -21.53484700204879],\n              [127.705078125, -21.53484700204879],\n              [127.705078125, -29.22889003019423]\n            ]\n          ],\n          [\n            [\n              [139.5703125, -21.53484700204879],\n              [144.228515625, -21.53484700204879],\n              [144.228515625, -29.22889003019423],\n              [139.5703125, -29.22889003019423],\n              [139.5703125, -21.53484700204879]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122.51953124999999, -29.22889003019423],\n            [144.228515625, -29.22889003019423],\n            [144.228515625, -21.53484700204879],\n            [122.51953124999999, -21.53484700204879],\n            [122.51953124999999, -29.22889003019423]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127.705078125, -34.52466147177172],\n            [139.5703125, -34.52466147177172],\n            [139.5703125, -15.28418511407642],\n            [127.705078125, -15.28418511407642],\n            [127.705078125, -34.52466147177172]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/out/multi-polygon-input.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [123.134765625, -25.562265014427492],\n              [136.142578125, -25.562265014427492],\n              [136.142578125, -13.068776734357694],\n              [123.134765625, -13.068776734357694],\n              [123.134765625, -25.562265014427492]\n            ]\n          ],\n          [\n            [\n              [119.53125, -39.57182223734373],\n              [134.560546875, -39.57182223734373],\n              [134.560546875, -28.38173504322308],\n              [119.53125, -28.38173504322308],\n              [119.53125, -39.57182223734373]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126.298828125, -35.81781315869662],\n            [131.8359375, -35.81781315869662],\n            [131.8359375, -18.396230138028812],\n            [126.298828125, -18.396230138028812],\n            [126.298828125, -35.81781315869662]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1,\n        \"fill\": \"#0F0\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [119.53125, -39.57182223734373],\n              [134.560546875, -39.57182223734373],\n              [134.560546875, -28.38173504322308],\n              [131.8359375, -28.38173504322308],\n              [131.8359375, -35.81781315869662],\n              [126.298828125, -35.81781315869662],\n              [126.298828125, -28.38173504322308],\n              [119.53125, -28.38173504322308],\n              [119.53125, -39.57182223734373]\n            ]\n          ],\n          [\n            [\n              [123.134765625, -25.562265014427492],\n              [126.298828125, -25.562265014427492],\n              [126.298828125, -18.396230138028812],\n              [131.8359375, -18.396230138028812],\n              [131.8359375, -25.562265014427492],\n              [136.142578125, -25.562265014427492],\n              [136.142578125, -13.068776734357694],\n              [123.134765625, -13.068776734357694],\n              [123.134765625, -25.562265014427492]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/out/multi-polygon-target.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127.66113281249999, -30.713503990354965],\n            [140.7568359375, -30.713503990354965],\n            [140.7568359375, -20.2209657795223],\n            [127.66113281249999, -20.2209657795223],\n            [127.66113281249999, -30.713503990354965]\n          ],\n          [\n            [132.38525390625, -27.313213898568247],\n            [135.1318359375, -27.313213898568247],\n            [135.1318359375, -24.467150664738988],\n            [132.38525390625, -24.467150664738988],\n            [132.38525390625, -27.313213898568247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [128.8916015625, -31.84023266790935],\n              [130.6494140625, -31.84023266790935],\n              [130.6494140625, -18.646245142670598],\n              [128.8916015625, -18.646245142670598],\n              [128.8916015625, -31.84023266790935]\n            ]\n          ],\n          [\n            [\n              [136.23046875, -32.175612478499325],\n              [138.6474609375, -32.175612478499325],\n              [138.6474609375, -18.729501999072138],\n              [136.23046875, -18.729501999072138],\n              [136.23046875, -32.175612478499325]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1,\n        \"fill\": \"#0F0\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [127.66113281249999, -30.713503990354965],\n              [128.8916015625, -30.713503990354965],\n              [128.8916015625, -20.2209657795223],\n              [127.66113281249999, -20.2209657795223],\n              [127.66113281249999, -30.713503990354965]\n            ]\n          ],\n          [\n            [\n              [130.6494140625, -30.713503990354965],\n              [136.23046875, -30.713503990354965],\n              [136.23046875, -20.2209657795223],\n              [130.6494140625, -20.2209657795223],\n              [130.6494140625, -30.713503990354965]\n            ],\n            [\n              [132.38525390625, -27.313213898568247],\n              [132.38525390625, -24.467150664738988],\n              [135.1318359375, -24.467150664738988],\n              [135.1318359375, -27.313213898568247],\n              [132.38525390625, -27.313213898568247]\n            ]\n          ],\n          [\n            [\n              [138.6474609375, -30.713503990354965],\n              [140.7568359375, -30.713503990354965],\n              [140.7568359375, -20.2209657795223],\n              [138.6474609375, -20.2209657795223],\n              [138.6474609375, -30.713503990354965]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test/out/split-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122.51953124999999, -29.22889003019423],\n            [144.228515625, -29.22889003019423],\n            [144.228515625, -21.53484700204879],\n            [122.51953124999999, -21.53484700204879],\n            [122.51953124999999, -29.22889003019423]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127.705078125, -34.52466147177172],\n            [139.5703125, -34.52466147177172],\n            [139.5703125, -15.28418511407642],\n            [127.705078125, -15.28418511407642],\n            [127.705078125, -34.52466147177172]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1,\n        \"fill\": \"#0F0\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [122.51953124999999, -29.22889003019423],\n              [127.705078125, -29.22889003019423],\n              [127.705078125, -21.53484700204879],\n              [122.51953124999999, -21.53484700204879],\n              [122.51953124999999, -29.22889003019423]\n            ]\n          ],\n          [\n            [\n              [139.5703125, -29.22889003019423],\n              [144.228515625, -29.22889003019423],\n              [144.228515625, -21.53484700204879],\n              [139.5703125, -21.53484700204879],\n              [139.5703125, -29.22889003019423]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-difference/test.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { featureCollection, polygon } from \"@turf/helpers\";\nimport { difference } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\ntest(\"turf-difference\", (t) => {\n  glob.sync(directories.in + \"*.geojson\").forEach((filepath) => {\n    const { name, base } = path.parse(filepath);\n    const [polygon1, polygon2] = loadJsonFileSync(filepath).features;\n\n    if (name.includes(\"skip\")) return t.skip(name);\n\n    // Red Polygon1\n    polygon1.properties = Object.assign(polygon1.properties || {}, {\n      \"fill-opacity\": 0.5,\n      fill: \"#F00\",\n    });\n    // Blue Polygon2\n    polygon2.properties = Object.assign(polygon2.properties || {}, {\n      \"fill-opacity\": 0.5,\n      fill: \"#00F\",\n    });\n\n    const results = featureCollection([polygon1, polygon2]);\n\n    const result = difference(results);\n    if (result) {\n      // Green Polygon\n      result.properties = { \"fill-opacity\": 1, fill: \"#0F0\" };\n      results.features.push(result);\n    }\n\n    if (process.env.REGEN) writeJsonFileSync(directories.out + base, results);\n    t.deepEqual(results, loadJsonFileSync(directories.out + base), name);\n  });\n  t.end();\n});\n\ntest(\"turf-difference - support specific polygons\", (t) => {\n  const poly1 = polygon([\n    [\n      [121, -31],\n      [144, -31],\n      [144, -15],\n      [121, -15],\n      [121, -31],\n    ],\n  ]);\n  const poly2 = polygon([\n    [\n      [126, -28],\n      [140, -28],\n      [140, -20],\n      [126, -20],\n      [126, -28],\n    ],\n  ]);\n\n  t.assert(\n    difference(featureCollection([poly1, poly2])),\n    \"geometry object support\"\n  );\n  t.end();\n});\n\ntest(\"turf-difference - prevent input mutation\", (t) => {\n  const poly1 = polygon([\n    [\n      [121, -31],\n      [144, -31],\n      [144, -15],\n      [121, -15],\n      [121, -31],\n    ],\n  ]);\n  const poly2 = polygon([\n    [\n      [126, -28],\n      [140, -28],\n      [140, -20],\n      [126, -20],\n      [126, -28],\n    ],\n  ]);\n  const before1 = JSON.parse(JSON.stringify(poly1));\n  const before2 = JSON.parse(JSON.stringify(poly2));\n\n  difference(featureCollection([poly1, poly2]));\n  t.deepEqual(poly1, before1, \"polygon1 should not mutate\");\n  t.deepEqual(poly2, before2, \"polygon2 should not mutate\");\n  t.end();\n});\n\ntest(\"turf-difference - complete overlap\", (t) => {\n  const poly = polygon([\n    [\n      [121, -31],\n      [144, -31],\n      [144, -15],\n      [121, -15],\n      [121, -31],\n    ],\n  ]);\n\n  const result = difference(featureCollection([poly, poly]));\n  t.deepEqual(result, null, \"difference should be null\");\n  t.end();\n});\n\ntest(\"difference - unable to complete output ring - issue 2409\", (t) => {\n  // Test examples copied from https://github.com/Turfjs/turf/issues/2409\n  const area1 = polygon([\n    [\n      [11.79926, 59.307999],\n      [18.80383, 60.15596],\n      [18.73765340635914, 60.23951348693759],\n      [18.58133, 60.34301],\n      [11.79926, 59.307999],\n    ],\n  ]);\n\n  const area1_subtract = polygon([\n    [\n      [11.79926, 59.307999],\n      [18.80383, 60.15596],\n      [\n        18.73765340635913, // Subtract 1 to final digit\n        60.23951348693759,\n      ],\n      [18.58133, 60.34301],\n      [11.79926, 59.307999],\n    ],\n  ]);\n\n  const area1_add = polygon([\n    [\n      [11.79926, 59.307999],\n      [18.80383, 60.15596],\n      [\n        18.73765340635915, // Add 1 to final digit\n        60.23951348693759,\n      ],\n      [18.58133, 60.34301],\n      [11.79926, 59.307999],\n    ],\n  ]);\n\n  const area2 = polygon([\n    [\n      [18.35554, 60.35768],\n      [18.58133, 60.34301],\n      [18.75959, 60.22499],\n      [18.80383, 60.15596],\n      [18.35554, 60.35768],\n    ],\n  ]);\n\n  t.doesNotThrow(\n    () => difference(featureCollection([area1, area2])),\n    \"[area1, area2] should not throw\"\n  );\n  t.doesNotThrow(\n    () => difference(featureCollection([area1_subtract, area2])),\n    \"[area1_subtract, area2] should not throw\"\n  );\n  t.doesNotThrow(\n    () => difference(featureCollection([area1_add, area2])),\n    \"[area1_add, area2] should not throw\"\n  );\n\n  t.end();\n});\n\ntest(\"difference - unable to complete output ring - issue 2277\", (t) => {\n  // Test example copied from https://github.com/Turfjs/turf/issues/2277\n  const poly1 = polygon([\n    [\n      [54.56658645236534, 24.445194105819738],\n      [54.56658654953498, 24.441605817571325],\n      [54.57000000000001, 24.43981171174874],\n      [54.57341345046501, 24.441605817571325],\n      [54.573413547634665, 24.445194105819738],\n      [54.57000000000001, 24.44698828825126],\n      [54.56658645236534, 24.445194105819738],\n    ],\n    [\n      [54.56795530519258, 24.44447467409078],\n      [54.57000000000001, 24.4455493756693],\n      [54.57204469480743, 24.44447467409078],\n      [54.57204465994316, 24.442325298422087],\n      [54.57000000000001, 24.441250624330703],\n      [54.56795534005685, 24.442325298422087],\n      [54.56795530519258, 24.44447467409078],\n    ],\n  ]);\n\n  const poly2 = polygon([\n    [\n      [54.569778932416476, 24.441366817541834],\n      [54.56977894449294, 24.441074136738756],\n      [54.57000000000001, 24.441190327160086],\n      [54.57084694057397, 24.440745161222193],\n      [54.57084693745136, 24.44028034081218],\n      [54.571147760242575, 24.44043845608456],\n      [54.57114771720956, 24.441853864959285],\n      [54.57080496898934, 24.4416737163564],\n      [54.57080502276297, 24.441026402022757],\n      [54.57074511559248, 24.441057889217532],\n      [54.57074509421786, 24.441642246152345],\n      [54.57000000000001, 24.441250624330703],\n      [54.569778932416476, 24.441366817541834],\n    ],\n  ]);\n\n  t.doesNotThrow(\n    () => difference(featureCollection([poly1, poly2])),\n    \"[poly1, poly2] should not throw\"\n  );\n\n  t.end();\n});\n\ntest(\"difference - maximum call stack size exceeded - issue 2479\", (t) => {\n  // Test example copied from https://github.com/Turfjs/turf/issues/2479\n  const poly1 = polygon([\n    [\n      [49.93317115095019, 20.170898437500004],\n      [49.93927561914192, 20.16278743743897],\n      [49.941126142253154, 20.165448188781742],\n      [49.934096538617936, 20.174009799957275],\n      [49.93317115095019, 20.170898437500004],\n    ],\n  ]);\n\n  const poly2 = polygon([\n    [\n      [49.93317115095019, 20.170898437500004],\n      [49.933680058500165, 20.170222252607346],\n      [49.933758735535065, 20.170222252607346],\n      [49.933803934349285, 20.170152112841606],\n      [49.933803934349285, 20.170057658905122],\n      [49.934306839656294, 20.169389449185992],\n      [49.93434632011994, 20.16945071518421],\n      [49.93434632011994, 20.16959099471569],\n      [49.93448191656261, 20.16980141401291],\n      [49.93457231419105, 20.16980141401291],\n      [49.93466271181949, 20.16966113448143],\n      [49.93484350707638, 20.16966113448143],\n      [49.93520509759015, 20.169100016355515],\n      [49.93529549521859, 20.169100016355515],\n      [49.935928278617695, 20.168118059635166],\n      [49.936018676246135, 20.168118059635166],\n      [49.93660626083101, 20.167206242680553],\n      [49.93660626083101, 20.167065963149074],\n      [49.9367870560879, 20.166785404086117],\n      [49.9367870560879, 20.166645124554638],\n      [49.93714864660167, 20.166084006428722],\n      [49.93714864660167, 20.165613543475054],\n      [49.93742361679489, 20.16524819088677],\n      [49.93755543592966, 20.165452748537067],\n      [49.938504611028314, 20.16397981345654],\n      [49.938504611028314, 20.163811875057462],\n      [49.93927561914192, 20.16278743743897],\n      [49.941126142253154, 20.165448188781742],\n      [49.93988364085967, 20.16696147663808],\n      [49.93981537664073, 20.166855543851856],\n      [49.93958938256963, 20.167206242680553],\n      [49.93958938256963, 20.167319864563666],\n      [49.934096538617936, 20.174009799957275],\n      [49.93317115095019, 20.170898437500004],\n    ],\n  ]);\n\n  t.doesNotThrow(\n    () => difference(featureCollection([poly1, poly2])),\n    \"[poly1, poly2] should not throw\"\n  );\n\n  t.end();\n});\n\ntest(\"difference - unable to find segment - issue 2306\", (t) => {\n  // Test example copied from https://github.com/Turfjs/turf/issues/2306\n  const poly1 = polygon([\n    [\n      [10.299138347373786, 48.460352133145804],\n      [10.299142854373908, 48.46034913552448],\n      [10.299142854373908, 48.460339214732976],\n      [10.299225267807545, 48.46033958029495],\n      [10.29927355737747, 48.46034017606536],\n      [10.29927355737747, 48.46034613790316],\n      [10.299266796877285, 48.46035363195647],\n      [10.299257782877039, 48.46035363195647],\n      [10.299251022376856, 48.46035812838846],\n      [10.299251022376856, 48.46036507625937],\n      [10.299195961284822, 48.4603647734974],\n      [10.299201445375504, 48.46036112600978],\n      [10.29919468487532, 48.460356629577795],\n      [10.299187924375136, 48.46035812838846],\n      [10.299187924375136, 48.46036112600978],\n      [10.299193387184792, 48.460364759343314],\n      [10.299138347373786, 48.460364456698365],\n      [10.299138347373786, 48.460352133145804],\n    ],\n    [\n      [10.299142854373908, 48.46035812838846],\n      [10.299145107873969, 48.46035962719912],\n      [10.2991608823744, 48.46035812838846],\n      [10.299158628874338, 48.46035363195647],\n      [10.299149614874093, 48.46035363195647],\n      [10.299142854373908, 48.46035812838846],\n    ],\n  ]);\n\n  const poly2 = polygon([\n    [\n      [10.299138347373786, 48.46036049139952],\n      [10.299187924375136, 48.46036028454162],\n      [10.299187924375136, 48.46036112600978],\n      [10.29919468487532, 48.46036562244176],\n      [10.299201445375504, 48.46036112600978],\n      [10.299200103800315, 48.46036023372349],\n      [10.299208777179729, 48.46036019753419],\n      [10.299209806197382, 48.46031596598246],\n      [10.299250947482829, 48.460316111877646],\n      [10.299251022376856, 48.460316161689924],\n      [10.299251022376856, 48.46031915931125],\n      [10.299257677970186, 48.46032358596932],\n      [10.299256707063519, 48.46035434748375],\n      [10.299251022376856, 48.46035812838846],\n      [10.299251022376856, 48.4603761141164],\n      [10.299246515376732, 48.46037911173772],\n      [10.299246515376732, 48.4603872476338],\n      [10.29919425093356, 48.460374326689575],\n      [10.299190177875197, 48.460371617684416],\n      [10.299188312254989, 48.46037285851485],\n      [10.299138347373786, 48.460360506074],\n      [10.299138347373786, 48.46036049139952],\n    ],\n  ]);\n\n  t.doesNotThrow(\n    () => difference(featureCollection([poly1, poly2])),\n    \"[poly1, poly2] should not throw\"\n  );\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-difference/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-directional-mean/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-directional-mean/README.md",
    "content": "# @turf/directional-mean\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## DirectionalMeanLine\n\nType: [Object][1]\n\n### Properties\n\n*   `cartesianAngle` **[number][2]** the mean angle of all lines. (measure from due earth counterclockwise).\n*   `bearingAngle` **[number][2]** the mean angle of all lines. (bearing).\n*   `circularVariance` **[number][2]** the extent to which features all point in the same direction.\n    the value ranges 0-1, the bigger the value, the more variation in directions between lines.\n*   `averageX` **[number][2]** the centroid of all lines.\n*   `averageY` **[number][2]** the centroid of all line.\n*   `averageLength` **[number][2]** the average length of line.\n*   `countOfLines` **[number][2]** the count of features.\n\n## directionalMean\n\nThis module calculate the average angle of a set of lines, measuring the trend of it.\nIt can be used in both project coordinate system and geography coordinate system.\nIt can handle segments of line or the whole line.\n\n### Parameters\n\n*   `lines` **[FeatureCollection][3]<[LineString][4]>**&#x20;\n*   `options` **[object][1]**  (optional, default `{}`)\n\n    *   `options.planar` **[boolean][5]** whether the spatial reference system is projected or geographical. (optional, default `true`)\n    *   `options.segment` **[boolean][5]** whether treat a LineString as a whole or a set of segments. (optional, default `false`)\n\n### Examples\n\n```javascript\nvar lines = turf.lineStrings([\n  [[110, 45], [120, 50]],\n  [[100, 50], [115, 55]],\n])\nvar directionalMeanLine = turf.directionalMean(lines);\n// => directionalMeanLine\n```\n\nReturns **[DirectionalMeanLine][6]** Directional Mean Line\n\n[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n[6]: #directionalmeanline\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/directional-mean\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-directional-mean/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { directionalMean } from \"./index.js\";\nimport { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n * bus_route_gps: 35.172ms\n * bus_route_gps segment: 543.932ms\n * bus_route_utm: 26.696ms\n * bus_route_utm segment: 482.157ms\n * bus_route_gps x 45.72 ops/sec ±2.32% (60 runs sampled)\n * bus_route_gps segment x 2.48 ops/sec ±6.68% (10 runs sampled)\n * bus_route_utm x 46.85 ops/sec ±3.21% (62 runs sampled)\n * bus_route_utm segment x 2.19 ops/sec ±3.18% (10 runs sampled)\n */\n\nconst suite = new Benchmark.Suite(\"turf-directional-mean\");\nglob.sync(path.join(__dirname, \"test\", \"in\", \"*.json\")).forEach((filepath) => {\n  const { name } = path.parse(filepath);\n  const geojson = loadJsonFileSync(filepath);\n  if (name === \"bus_route_gps.json\") {\n    console.time(name);\n    directionalMean(geojson, {\n      planar: false,\n    });\n    console.timeEnd(name);\n    console.time(name + \" segment\");\n    directionalMean(geojson, {\n      planar: false,\n      segment: true,\n    });\n    console.timeEnd(name + \" segment\");\n    suite.add(name, () =>\n      directionalMean(geojson, {\n        planar: false,\n      })\n    );\n    suite.add(name + \" segment\", () =>\n      directionalMean(geojson, {\n        planar: false,\n        segment: true,\n      })\n    );\n  } else {\n    console.time(name);\n    directionalMean(geojson, {\n      planar: true,\n    });\n    console.timeEnd(name);\n    console.time(name + \" segment\");\n    directionalMean(geojson, {\n      planar: true,\n      segment: true,\n    });\n    console.timeEnd(name + \" segment\");\n    suite.add(name, () =>\n      directionalMean(geojson, {\n        planar: true,\n      })\n    );\n    suite.add(name + \" segment\", () =>\n      directionalMean(geojson, {\n        planar: true,\n        segment: true,\n      })\n    );\n  }\n});\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-directional-mean/index.ts",
    "content": "import { Feature, FeatureCollection, LineString, Point } from \"geojson\";\nimport { bearing } from \"@turf/bearing\";\nimport { centroid } from \"@turf/centroid\";\nimport { destination } from \"@turf/destination\";\nimport { featureCollection, lineString, point } from \"@turf/helpers\";\nimport { getCoord } from \"@turf/invariant\";\nimport { length } from \"@turf/length\";\nimport { featureEach, segmentEach, segmentReduce } from \"@turf/meta\";\n\ninterface DirectionalMeanLine extends Feature<LineString> {\n  properties: {\n    cartesianAngle: number;\n    bearingAngle: number;\n    circularVariance: number;\n    averageX: number;\n    averageY: number;\n    averageLength: number;\n    countOfLines: number;\n    [key: string]: any;\n  };\n}\n\n/**\n * @typedef {Object} DirectionalMeanLine\n * @property {number} cartesianAngle the mean angle of all lines. (measure from due earth counterclockwise).\n * @property {number} bearingAngle the mean angle of all lines. (bearing).\n * @property {number} circularVariance the extent to which features all point in the same direction.\n *  the value ranges 0-1, the bigger the value, the more variation in directions between lines.\n * @property {number} averageX the centroid of all lines.\n * @property {number} averageY the centroid of all line.\n * @property {number} averageLength the average length of line.\n * @property {number} countOfLines the count of features.\n */\n\n/**\n * This module calculate the average angle of a set of lines, measuring the trend of it.\n * It can be used in both project coordinate system and geography coordinate system.\n * It can handle segments of line or the whole line.\n *\n * @function\n * @param {FeatureCollection<LineString>} lines\n * @param {object} [options={}]\n * @param {boolean} [options.planar=true] whether the spatial reference system is projected or geographical.\n * @param {boolean} [options.segment=false] whether treat a LineString as a whole or a set of segments.\n * @returns {DirectionalMeanLine} Directional Mean Line\n * @example\n *\n * var lines = turf.lineStrings([\n *   [[110, 45], [120, 50]],\n *   [[100, 50], [115, 55]],\n * ])\n * var directionalMeanLine = turf.directionalMean(lines);\n * // => directionalMeanLine\n */\nfunction directionalMean(\n  lines: FeatureCollection<LineString>,\n  options: {\n    planar?: boolean;\n    segment?: boolean;\n  } = {}\n): DirectionalMeanLine {\n  const isPlanar = !!options.planar; // you can't use options.planar || true here.\n  const isSegment: boolean = options.segment ?? false;\n  let sigmaSin = 0;\n  let sigmaCos = 0;\n  let countOfLines = 0;\n  let sumOfLen = 0;\n  const centroidList: Array<Feature<Point>> = [];\n\n  if (isSegment) {\n    segmentEach(lines, (currentSegment: any) => {\n      // todo fix turf-meta's declaration file\n      const [sin1, cos1]: [number, number] = getCosAndSin(\n        currentSegment.geometry.coordinates,\n        isPlanar\n      );\n      const lenOfLine = getLengthOfLineString(currentSegment, isPlanar);\n      if (isNaN(sin1) || isNaN(cos1)) {\n        return;\n      } else {\n        sigmaSin += sin1;\n        sigmaCos += cos1;\n        countOfLines += 1;\n        sumOfLen += lenOfLine;\n        centroidList.push(centroid(currentSegment));\n      }\n    });\n    // planar and segment\n  } else {\n    // planar and non-segment\n    featureEach(lines, (currentFeature: Feature<LineString>) => {\n      if (currentFeature.geometry.type !== \"LineString\") {\n        throw new Error(\"shold to support MultiLineString?\");\n      }\n      const [sin1, cos1]: [number, number] = getCosAndSin(\n        currentFeature.geometry.coordinates,\n        isPlanar\n      );\n      const lenOfLine = getLengthOfLineString(currentFeature, isPlanar);\n      if (isNaN(sin1) || isNaN(cos1)) {\n        return;\n      } else {\n        sigmaSin += sin1;\n        sigmaCos += cos1;\n        countOfLines += 1;\n        sumOfLen += lenOfLine;\n        centroidList.push(centroid(currentFeature));\n      }\n    });\n  }\n\n  const cartesianAngle: number = getAngleBySinAndCos(sigmaSin, sigmaCos);\n  const bearingAngle: number = bearingToCartesian(cartesianAngle);\n  const circularVariance = getCircularVariance(\n    sigmaSin,\n    sigmaCos,\n    countOfLines\n  );\n  const averageLength = sumOfLen / countOfLines;\n  const centroidOfLines = centroid(featureCollection(centroidList));\n  const [averageX, averageY]: number[] = getCoord(centroidOfLines);\n  let meanLinestring;\n  if (isPlanar) {\n    meanLinestring = getMeanLineString(\n      [averageX, averageY],\n      cartesianAngle,\n      averageLength,\n      isPlanar\n    );\n  } else {\n    meanLinestring = getMeanLineString(\n      [averageX, averageY],\n      bearingAngle,\n      averageLength,\n      isPlanar\n    );\n  }\n\n  return lineString(meanLinestring, {\n    averageLength,\n    averageX,\n    averageY,\n    bearingAngle,\n    cartesianAngle,\n    circularVariance,\n    countOfLines,\n  });\n}\n\n/**\n * get euclidean distance between two points.\n * @private\n * @name euclideanDistance\n * @param coords\n */\nfunction euclideanDistance(coords: number[][]) {\n  const [x0, y0]: number[] = coords[0];\n  const [x1, y1]: number[] = coords[1];\n  const dx: number = x1 - x0;\n  const dy: number = y1 - y0;\n  return Math.sqrt(Math.pow(dx, 2) + Math.pow(dy, 2));\n}\n\n/**\n * get the length of a LineString, both in projected or geographical coordinate system.\n * @private\n * @name getLengthOfLineString\n * @param {Feature<LineString>} line\n * @param {boolean} isPlanar\n */\nfunction getLengthOfLineString(line: Feature<LineString>, isPlanar: boolean) {\n  if (isPlanar) {\n    return segmentReduce<number>(\n      line,\n      (previousValue?: number, segment?: Feature<LineString>): number => {\n        const coords = segment!.geometry.coordinates; // the signatrue of segmentReduce has problem ?\n        return previousValue! + euclideanDistance(coords);\n      },\n      0\n    );\n  } else {\n    return length(line, {\n      units: \"meters\",\n    });\n  }\n}\n\n/**\n * bearing to xy(from due earth counterclockwise 0-180)\n * convert between two forms\n * @private\n * @name bearingToCartesian\n * @param angle\n */\nfunction bearingToCartesian(angle: number): number {\n  let result = 90 - angle;\n  if (result > 180) {\n    result -= 360;\n  }\n  return result;\n}\n\n/**\n * @private\n * @name getCosAndSin\n * @param {Array<Array<number>>} coordinates\n * @returns {Array<number>} [cos, sin]\n */\nfunction getCosAndSin(\n  coordinates: number[][],\n  isPlanar: boolean\n): [number, number] {\n  const beginPoint: number[] = coordinates[0];\n  const endPoint: number[] = coordinates[coordinates.length - 1];\n  if (isPlanar) {\n    const [x0, y0]: number[] = beginPoint;\n    const [x1, y1]: number[] = endPoint;\n    const dx: number = x1 - x0;\n    const dy: number = y1 - y0;\n    const h = Math.sqrt(Math.pow(dx, 2) + Math.pow(dy, 2));\n    if (h < 0.000000001) {\n      return [NaN, NaN];\n    }\n    const sin1 = dy / h;\n    const cos1 = dx / h;\n    return [sin1, cos1];\n  } else {\n    const angle = bearingToCartesian(bearing(beginPoint, endPoint));\n    const radian = (angle * Math.PI) / 180;\n    return [Math.sin(radian), Math.cos(radian)];\n  }\n}\n\nfunction getAngleBySinAndCos(sin1: number, cos1: number): number {\n  let angle = 0;\n  if (Math.abs(cos1) < 0.000000001) {\n    angle = 90;\n  } else {\n    angle = (Math.atan2(sin1, cos1) * 180) / Math.PI;\n  }\n  if (sin1 >= 0) {\n    if (cos1 < 0) {\n      angle += 180;\n    }\n  } else {\n    if (cos1 < 0) {\n      angle -= 180;\n    }\n  }\n  return angle;\n}\n\nfunction getCircularVariance(sin1: number, cos1: number, len: number) {\n  if (len === 0) {\n    throw new Error(\"the size of the features set must be greater than 0\");\n  }\n  return 1 - Math.sqrt(Math.pow(sin1, 2) + Math.pow(cos1, 2)) / len;\n}\n\nfunction getMeanLineString(\n  centroidOfLine: number[],\n  angle: number,\n  lenOfLine: number,\n  isPlanar: boolean\n) {\n  if (isPlanar) {\n    const [averageX, averageY]: number[] = centroidOfLine;\n    let beginX: number;\n    let beginY: number;\n    let endX: number;\n    let endY: number;\n    const r: number = (angle * Math.PI) / 180;\n    const sin: number = Math.sin(r);\n    const cos: number = Math.cos(r);\n    beginX = averageX - (lenOfLine / 2) * cos;\n    beginY = averageY - (lenOfLine / 2) * sin;\n    endX = averageX + (lenOfLine / 2) * cos;\n    endY = averageY + (lenOfLine / 2) * sin;\n    return [\n      [beginX, beginY],\n      [endX, endY],\n    ];\n  } else {\n    const end = destination(point(centroidOfLine), lenOfLine / 2, angle, {\n      units: \"meters\",\n    });\n    const begin = destination(point(centroidOfLine), -lenOfLine / 2, angle, {\n      units: \"meters\",\n    });\n    return [getCoord(begin), getCoord(end)];\n  }\n}\n\nexport { directionalMean, DirectionalMeanLine };\nexport default directionalMean;\n"
  },
  {
    "path": "packages/turf-directional-mean/package.json",
    "content": "{\n  \"name\": \"@turf/directional-mean\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Calculates the average angle of a set of lines, measuring the trend of it.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Haoming Zhuang <@zhuang-hao-ming>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"directional-mean\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/bearing\": \"workspace:*\",\n    \"@turf/centroid\": \"workspace:*\",\n    \"@turf/destination\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/length\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-directional-mean/test/out/bus_route_gps.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"cartesianAngle\": -62.476236458143916,\n    \"bearingAngle\": 152.47623645814392,\n    \"circularVariance\": 0.9560327266298506,\n    \"averageX\": 114.0481498585655,\n    \"averageY\": 22.6359322404607,\n    \"averageLength\": 24840.40218696326,\n    \"countOfLines\": 539\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [113.99218428178095, 22.734977926527673],\n      [114.10403479999434, 22.536867163442935]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-directional-mean/test/out/bus_route_gps1.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"averageLength\": 24840.40218696326,\n    \"averageX\": 114.0481498585655,\n    \"averageY\": 22.6359322404607,\n    \"bearingAngle\": 152.47623645814392,\n    \"cartesianAngle\": -62.476236458143916,\n    \"circularVariance\": 0.9560327266298506,\n    \"countOfLines\": 539\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [113.99218428178095, 22.734977926527673],\n      [114.10403479999434, 22.536867163442935]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-directional-mean/test/out/bus_route_gps2.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"averageLength\": 48.42971829319359,\n    \"averageX\": 114.06007706366387,\n    \"averageY\": 22.632852642469093,\n    \"bearingAngle\": 126.93706469097845,\n    \"cartesianAngle\": -36.937064690978445,\n    \"circularVariance\": 0.9946441590238705,\n    \"countOfLines\": 276462\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [114.05988847846298, 22.632983507994844],\n      [114.06026564850558, 22.632721776722867]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-directional-mean/test/out/bus_route_utm1.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"averageLength\": 24865.8833845794,\n    \"averageX\": 813350.6889736726,\n    \"averageY\": 2506449.133536962,\n    \"bearingAngle\": 152.504692687896,\n    \"cartesianAngle\": -62.504692687896025,\n    \"circularVariance\": 0.9540978955813745,\n    \"countOfLines\": 538\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [807610.6986453704, 2517477.757664879],\n      [819090.6793019747, 2495420.509409045]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-directional-mean/test/out/bus_route_utm2.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"averageLength\": 48.416925614400036,\n    \"averageX\": 814546.9056864326,\n    \"averageY\": 2506121.0821411484,\n    \"bearingAngle\": 125.92398812851624,\n    \"cartesianAngle\": -35.92398812851625,\n    \"circularVariance\": 0.9946649189247785,\n    \"countOfLines\": 276462\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [814527.3017683452, 2506135.2855233904],\n      [814566.50960452, 2506106.8787589064]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-directional-mean/test.ts",
    "content": "import test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { directionalMean } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-directional-mean\", (t) => {\n  const outGpsJsonPath1 = path.join(\n    __dirname,\n    \"test\",\n    \"out\",\n    \"bus_route_gps1.json\"\n  );\n  const outGpsJsonPath2 = path.join(\n    __dirname,\n    \"test\",\n    \"out\",\n    \"bus_route_gps2.json\"\n  );\n  const outUtmJsonPath1 = path.join(\n    __dirname,\n    \"test\",\n    \"out\",\n    \"bus_route_utm1.json\"\n  );\n  const outUtmJsonPath2 = path.join(\n    __dirname,\n    \"test\",\n    \"out\",\n    \"bus_route_utm2.json\"\n  );\n\n  const utmFilepath = path.join(__dirname, \"test\", \"in\", \"bus_route_utm.json\");\n  const utmGeojson = loadJsonFileSync(utmFilepath);\n\n  const gpsFilepath = path.join(__dirname, \"test\", \"in\", \"bus_route_gps.json\");\n  const gpsGeojson = loadJsonFileSync(gpsFilepath);\n\n  // utm\n  let utmResult1 = directionalMean(utmGeojson, {\n    planar: true,\n    segment: false,\n  });\n  t.deepEqual(utmResult1, loadJsonFileSync(outUtmJsonPath1), \"utm\");\n  // utm segment\n  let utmResult2 = directionalMean(utmGeojson, {\n    planar: true,\n    segment: true,\n  });\n  t.deepEqual(utmResult2, loadJsonFileSync(outUtmJsonPath2), \"utm segment\");\n\n  // gps\n  let gpsResult1 = directionalMean(gpsGeojson, {\n    planar: false,\n  });\n  t.deepEqual(gpsResult1, loadJsonFileSync(outGpsJsonPath1), \"gps\");\n  // gps segment\n  let gpsResult2 = directionalMean(gpsGeojson, {\n    planar: false,\n    segment: true,\n  });\n  t.deepEqual(gpsResult2, loadJsonFileSync(outGpsJsonPath2), \"gps segment\");\n\n  if (process.env.REGEN) {\n    writeJsonFileSync(outGpsJsonPath1, gpsResult1);\n    writeJsonFileSync(outGpsJsonPath2, gpsResult2);\n    writeJsonFileSync(outUtmJsonPath1, utmResult1);\n    writeJsonFileSync(outUtmJsonPath2, utmResult2);\n  }\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-directional-mean/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-dissolve/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-dissolve/README.md",
    "content": "# @turf/dissolve\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## dissolve\n\nDissolves a FeatureCollection of [Polygon][1] features, filtered by an optional property name:value.\nNote that [MultiPolygon][2] features within the collection are not supported\n\n### Parameters\n\n*   `fc` **[FeatureCollection][3]<[Polygon][1]>**&#x20;\n*   `options` **[Object][4]** Optional parameters (optional, default `{}`)\n\n    *   `options.propertyName` **[string][5]?** features with the same `propertyName` value will be dissolved.\n*   `featureCollection` **[FeatureCollection][3]<[Polygon][1]>** input feature collection to be dissolved\n\n### Examples\n\n```javascript\nvar features = turf.featureCollection([\n  turf.polygon([[[0, 0], [0, 1], [1, 1], [1, 0], [0, 0]]], {combine: 'yes'}),\n  turf.polygon([[[0, -1], [0, 0], [1, 0], [1, -1], [0,-1]]], {combine: 'yes'}),\n  turf.polygon([[[1,-1],[1, 0], [2, 0], [2, -1], [1, -1]]], {combine: 'no'}),\n]);\n\nvar dissolved = turf.dissolve(features, {propertyName: 'combine'});\n\n//addToMap\nvar addToMap = [features, dissolved]\n```\n\nReturns **[FeatureCollection][3]<[Polygon][1]>** a FeatureCollection containing the dissolved polygons\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/dissolve\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-dissolve/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { dissolve } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * polysByProperty x 6,366 ops/sec ±1.49% (89 runs sampled)\n * polysWithoutProperty x 4,224 ops/sec ±2.34% (77 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-dissolve\");\nfor (const { name, geojson } of fixtures) {\n  const propertyName = geojson.propertyName;\n  suite.add(name, () => dissolve(geojson, { propertyName }));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-dissolve/index.ts",
    "content": "import { Feature, FeatureCollection, Polygon } from \"geojson\";\nimport { featureCollection, isObject, multiPolygon } from \"@turf/helpers\";\nimport { collectionOf } from \"@turf/invariant\";\nimport { featureEach } from \"@turf/meta\";\nimport { flatten } from \"@turf/flatten\";\nimport * as polyclip from \"polyclip-ts\";\n\n/**\n * Dissolves a FeatureCollection of {@link Polygon} features, filtered by an optional property name:value.\n * Note that {@link MultiPolygon} features within the collection are not supported\n *\n * @function\n * @param {FeatureCollection<Polygon>} featureCollection input feature collection to be dissolved\n * @param {Object} [options={}] Optional parameters\n * @param {string} [options.propertyName] features with the same `propertyName` value will be dissolved.\n * @returns {FeatureCollection<Polygon>} a FeatureCollection containing the dissolved polygons\n * @example\n * var features = turf.featureCollection([\n *   turf.polygon([[[0, 0], [0, 1], [1, 1], [1, 0], [0, 0]]], {combine: 'yes'}),\n *   turf.polygon([[[0, -1], [0, 0], [1, 0], [1, -1], [0,-1]]], {combine: 'yes'}),\n *   turf.polygon([[[1,-1],[1, 0], [2, 0], [2, -1], [1, -1]]], {combine: 'no'}),\n * ]);\n *\n * var dissolved = turf.dissolve(features, {propertyName: 'combine'});\n *\n * //addToMap\n * var addToMap = [features, dissolved]\n */\nfunction dissolve(\n  fc: FeatureCollection<Polygon>,\n  options: {\n    propertyName?: string;\n  } = {}\n): FeatureCollection<Polygon> {\n  // Optional parameters\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  const { propertyName } = options;\n\n  // Input validation\n  collectionOf(fc, \"Polygon\", \"dissolve\");\n\n  // Main\n  const outFeatures = [];\n  if (!propertyName) {\n    return flatten(\n      multiPolygon(\n        polyclip.union.apply(\n          null,\n          // List of polygons expressed as Position[][][] a.k.a. Geom[]\n          fc.features.map(function (f) {\n            return f.geometry.coordinates;\n          }) as [polyclip.Geom, ...polyclip.Geom[]]\n        )\n      )\n    );\n  } else {\n    // Group polygons by the value of their property named by propertyName\n    const uniquePropertyVals: { [key: string]: Feature[] } = {};\n    featureEach(fc, function (feature) {\n      if (feature.properties) {\n        if (\n          !Object.prototype.hasOwnProperty.call(\n            uniquePropertyVals,\n            feature.properties[propertyName]\n          )\n        ) {\n          uniquePropertyVals[feature.properties[propertyName]] =\n            [] as Feature[];\n        }\n        uniquePropertyVals[feature.properties[propertyName]].push(feature);\n      }\n    });\n    const vals = Object.keys(uniquePropertyVals);\n\n    // Export each group of polygons as a separate feature.\n    for (let i = 0; i < vals.length; i++) {\n      const mp = multiPolygon(\n        polyclip.union.apply(\n          null,\n          // List of polygons expressed as Position[][][] a.k.a. Geom[]\n          (uniquePropertyVals[vals[i]] as Feature<Polygon>[]).map(function (f) {\n            return f.geometry.coordinates;\n          }) as [polyclip.Geom, ...polyclip.Geom[]]\n        )\n      );\n      if (mp && mp.properties) {\n        mp.properties[propertyName] = vals[i];\n        outFeatures.push(mp);\n      }\n    }\n  }\n\n  return flatten(featureCollection(outFeatures));\n}\n\nexport { dissolve };\nexport default dissolve;\n"
  },
  {
    "path": "packages/turf-dissolve/package.json",
    "content": "{\n  \"name\": \"@turf/dissolve\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Dissolves a FeatureCollection of Polygon features.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"dissolve\",\n    \"gis\",\n    \"geojson\",\n    \"polygon\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/flatten\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"polyclip-ts\": \"^0.16.8\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-dissolve/test/in/hexagons-issue#742.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.653, 45.488],\n            [-76.644, 45.485],\n            [-76.64, 45.479],\n            [-76.644, 45.473],\n            [-76.653, 45.47],\n            [-76.662, 45.473],\n            [-76.666, 45.479],\n            [-76.662, 45.485],\n            [-76.653, 45.488]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.663, 45.482],\n            [-76.654, 45.48],\n            [-76.65, 45.473],\n            [-76.654, 45.467],\n            [-76.663, 45.464],\n            [-76.672, 45.467],\n            [-76.676, 45.473],\n            [-76.672, 45.48],\n            [-76.663, 45.482]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.705, 45.362],\n            [-75.696, 45.36],\n            [-75.692, 45.353],\n            [-75.696, 45.347],\n            [-75.705, 45.344],\n            [-75.714, 45.347],\n            [-75.717, 45.353],\n            [-75.714, 45.36],\n            [-75.705, 45.362]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.646, 45.363],\n            [-75.637, 45.36],\n            [-75.634, 45.354],\n            [-75.637, 45.348],\n            [-75.646, 45.345],\n            [-75.655, 45.348],\n            [-75.659, 45.354],\n            [-75.655, 45.36],\n            [-75.646, 45.363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.704, 45.379],\n            [-75.695, 45.377],\n            [-75.691, 45.37],\n            [-75.695, 45.364],\n            [-75.704, 45.361],\n            [-75.713, 45.364],\n            [-75.717, 45.37],\n            [-75.713, 45.377],\n            [-75.704, 45.379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.537, 45.488],\n            [-75.528, 45.486],\n            [-75.525, 45.479],\n            [-75.528, 45.473],\n            [-75.537, 45.47],\n            [-75.547, 45.473],\n            [-75.55, 45.479],\n            [-75.547, 45.486],\n            [-75.537, 45.488]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.687, 45.484],\n            [-76.678, 45.481],\n            [-76.674, 45.475],\n            [-76.678, 45.468],\n            [-76.687, 45.466],\n            [-76.696, 45.468],\n            [-76.7, 45.475],\n            [-76.696, 45.481],\n            [-76.687, 45.484]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.697, 45.488],\n            [-76.687, 45.485],\n            [-76.684, 45.479],\n            [-76.687, 45.472],\n            [-76.697, 45.47],\n            [-76.706, 45.472],\n            [-76.709, 45.479],\n            [-76.706, 45.485],\n            [-76.697, 45.488]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.702, 45.49],\n            [-76.693, 45.488],\n            [-76.689, 45.481],\n            [-76.693, 45.475],\n            [-76.702, 45.473],\n            [-76.711, 45.475],\n            [-76.715, 45.481],\n            [-76.711, 45.488],\n            [-76.702, 45.49]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.661, 45.483],\n            [-76.652, 45.48],\n            [-76.648, 45.474],\n            [-76.652, 45.467],\n            [-76.661, 45.465],\n            [-76.67, 45.467],\n            [-76.674, 45.474],\n            [-76.67, 45.48],\n            [-76.661, 45.483]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.724, 45.344],\n            [-75.715, 45.342],\n            [-75.711, 45.335],\n            [-75.715, 45.329],\n            [-75.724, 45.326],\n            [-75.733, 45.329],\n            [-75.736, 45.335],\n            [-75.733, 45.342],\n            [-75.724, 45.344]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.685, 45.438],\n            [-75.676, 45.435],\n            [-75.673, 45.429],\n            [-75.676, 45.422],\n            [-75.685, 45.42],\n            [-75.694, 45.422],\n            [-75.698, 45.429],\n            [-75.694, 45.435],\n            [-75.685, 45.438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.625, 45.357],\n            [-75.616, 45.354],\n            [-75.612, 45.348],\n            [-75.616, 45.342],\n            [-75.625, 45.339],\n            [-75.634, 45.342],\n            [-75.638, 45.348],\n            [-75.634, 45.354],\n            [-75.625, 45.357]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.702, 45.378],\n            [-75.692, 45.375],\n            [-75.689, 45.369],\n            [-75.692, 45.362],\n            [-75.702, 45.36],\n            [-75.711, 45.362],\n            [-75.714, 45.369],\n            [-75.711, 45.375],\n            [-75.702, 45.378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.365, 45.435],\n            [-76.356, 45.432],\n            [-76.353, 45.426],\n            [-76.356, 45.42],\n            [-76.365, 45.417],\n            [-76.374, 45.42],\n            [-76.378, 45.426],\n            [-76.374, 45.432],\n            [-76.365, 45.435]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.369, 45.432],\n            [-76.36, 45.43],\n            [-76.356, 45.423],\n            [-76.36, 45.417],\n            [-76.369, 45.414],\n            [-76.378, 45.417],\n            [-76.382, 45.423],\n            [-76.378, 45.43],\n            [-76.369, 45.432]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.369, 45.433],\n            [-76.36, 45.43],\n            [-76.356, 45.424],\n            [-76.36, 45.417],\n            [-76.369, 45.415],\n            [-76.378, 45.417],\n            [-76.382, 45.424],\n            [-76.378, 45.43],\n            [-76.369, 45.433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.916, 45.318],\n            [-75.907, 45.315],\n            [-75.904, 45.309],\n            [-75.907, 45.302],\n            [-75.916, 45.3],\n            [-75.925, 45.302],\n            [-75.929, 45.309],\n            [-75.925, 45.315],\n            [-75.916, 45.318]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.916, 45.317],\n            [-75.907, 45.315],\n            [-75.903, 45.308],\n            [-75.907, 45.302],\n            [-75.916, 45.299],\n            [-75.925, 45.302],\n            [-75.928, 45.308],\n            [-75.925, 45.315],\n            [-75.916, 45.317]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.881, 45.319],\n            [-75.872, 45.316],\n            [-75.868, 45.31],\n            [-75.872, 45.304],\n            [-75.881, 45.301],\n            [-75.89, 45.304],\n            [-75.893, 45.31],\n            [-75.89, 45.316],\n            [-75.881, 45.319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.87, 45.3],\n            [-75.861, 45.297],\n            [-75.858, 45.291],\n            [-75.861, 45.284],\n            [-75.87, 45.282],\n            [-75.879, 45.284],\n            [-75.883, 45.291],\n            [-75.879, 45.297],\n            [-75.87, 45.3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.637, 45.039],\n            [-75.628, 45.036],\n            [-75.625, 45.03],\n            [-75.628, 45.023],\n            [-75.637, 45.021],\n            [-75.646, 45.023],\n            [-75.65, 45.03],\n            [-75.646, 45.036],\n            [-75.637, 45.039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.653, 45.03],\n            [-75.644, 45.027],\n            [-75.64, 45.021],\n            [-75.644, 45.015],\n            [-75.653, 45.012],\n            [-75.662, 45.015],\n            [-75.666, 45.021],\n            [-75.662, 45.027],\n            [-75.653, 45.03]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.651, 45.028],\n            [-75.642, 45.026],\n            [-75.638, 45.02],\n            [-75.642, 45.013],\n            [-75.651, 45.011],\n            [-75.66, 45.013],\n            [-75.664, 45.02],\n            [-75.66, 45.026],\n            [-75.651, 45.028]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.64, 45.038],\n            [-75.631, 45.035],\n            [-75.627, 45.029],\n            [-75.631, 45.022],\n            [-75.64, 45.02],\n            [-75.649, 45.022],\n            [-75.653, 45.029],\n            [-75.649, 45.035],\n            [-75.64, 45.038]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.649, 45.032],\n            [-75.64, 45.029],\n            [-75.637, 45.023],\n            [-75.64, 45.017],\n            [-75.649, 45.014],\n            [-75.658, 45.017],\n            [-75.662, 45.023],\n            [-75.658, 45.029],\n            [-75.649, 45.032]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.497, 45.467],\n            [-75.488, 45.464],\n            [-75.484, 45.458],\n            [-75.488, 45.451],\n            [-75.497, 45.449],\n            [-75.506, 45.451],\n            [-75.509, 45.458],\n            [-75.506, 45.464],\n            [-75.497, 45.467]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.744, 45.405],\n            [-75.735, 45.403],\n            [-75.731, 45.396],\n            [-75.735, 45.39],\n            [-75.744, 45.388],\n            [-75.753, 45.39],\n            [-75.757, 45.396],\n            [-75.753, 45.403],\n            [-75.744, 45.405]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.691, 45.351],\n            [-75.682, 45.349],\n            [-75.678, 45.342],\n            [-75.682, 45.336],\n            [-75.691, 45.333],\n            [-75.7, 45.336],\n            [-75.703, 45.342],\n            [-75.7, 45.349],\n            [-75.691, 45.351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.6, 45.34],\n            [-75.591, 45.338],\n            [-75.587, 45.331],\n            [-75.591, 45.325],\n            [-75.6, 45.322],\n            [-75.609, 45.325],\n            [-75.612, 45.331],\n            [-75.609, 45.338],\n            [-75.6, 45.34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.706, 45.42],\n            [-75.697, 45.417],\n            [-75.693, 45.411],\n            [-75.697, 45.405],\n            [-75.706, 45.402],\n            [-75.715, 45.405],\n            [-75.719, 45.411],\n            [-75.715, 45.417],\n            [-75.706, 45.42]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.694, 45.343],\n            [-75.685, 45.34],\n            [-75.681, 45.334],\n            [-75.685, 45.327],\n            [-75.694, 45.325],\n            [-75.703, 45.327],\n            [-75.707, 45.334],\n            [-75.703, 45.34],\n            [-75.694, 45.343]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.643, 45.363],\n            [-75.634, 45.36],\n            [-75.631, 45.354],\n            [-75.634, 45.347],\n            [-75.643, 45.345],\n            [-75.652, 45.347],\n            [-75.656, 45.354],\n            [-75.652, 45.36],\n            [-75.643, 45.363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.697, 45.427],\n            [-75.688, 45.425],\n            [-75.684, 45.418],\n            [-75.688, 45.412],\n            [-75.697, 45.409],\n            [-75.706, 45.412],\n            [-75.71, 45.418],\n            [-75.706, 45.425],\n            [-75.697, 45.427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.618, 45.398],\n            [-75.609, 45.395],\n            [-75.606, 45.389],\n            [-75.609, 45.383],\n            [-75.618, 45.38],\n            [-75.627, 45.383],\n            [-75.631, 45.389],\n            [-75.627, 45.395],\n            [-75.618, 45.398]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.639, 45.437],\n            [-75.63, 45.435],\n            [-75.626, 45.428],\n            [-75.63, 45.422],\n            [-75.639, 45.419],\n            [-75.648, 45.422],\n            [-75.652, 45.428],\n            [-75.648, 45.435],\n            [-75.639, 45.437]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.754, 45.386],\n            [-75.745, 45.383],\n            [-75.741, 45.377],\n            [-75.745, 45.371],\n            [-75.754, 45.368],\n            [-75.763, 45.371],\n            [-75.767, 45.377],\n            [-75.763, 45.383],\n            [-75.754, 45.386]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.588, 45.458],\n            [-75.579, 45.456],\n            [-75.575, 45.449],\n            [-75.579, 45.443],\n            [-75.588, 45.44],\n            [-75.597, 45.443],\n            [-75.601, 45.449],\n            [-75.597, 45.456],\n            [-75.588, 45.458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.729, 45.41],\n            [-75.72, 45.407],\n            [-75.717, 45.401],\n            [-75.72, 45.394],\n            [-75.729, 45.392],\n            [-75.738, 45.394],\n            [-75.742, 45.401],\n            [-75.738, 45.407],\n            [-75.729, 45.41]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.642, 45.363],\n            [-75.633, 45.36],\n            [-75.629, 45.354],\n            [-75.633, 45.347],\n            [-75.642, 45.345],\n            [-75.651, 45.347],\n            [-75.655, 45.354],\n            [-75.651, 45.36],\n            [-75.642, 45.363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.67, 45.352],\n            [-75.661, 45.349],\n            [-75.657, 45.343],\n            [-75.661, 45.337],\n            [-75.67, 45.334],\n            [-75.679, 45.337],\n            [-75.683, 45.343],\n            [-75.679, 45.349],\n            [-75.67, 45.352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.602, 45.392],\n            [-75.593, 45.389],\n            [-75.589, 45.383],\n            [-75.593, 45.377],\n            [-75.602, 45.374],\n            [-75.611, 45.377],\n            [-75.615, 45.383],\n            [-75.611, 45.389],\n            [-75.602, 45.392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.688, 45.484],\n            [-76.679, 45.481],\n            [-76.675, 45.475],\n            [-76.679, 45.468],\n            [-76.688, 45.466],\n            [-76.697, 45.468],\n            [-76.701, 45.475],\n            [-76.697, 45.481],\n            [-76.688, 45.484]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.681, 45.479],\n            [-76.672, 45.476],\n            [-76.668, 45.47],\n            [-76.672, 45.463],\n            [-76.681, 45.461],\n            [-76.69, 45.463],\n            [-76.693, 45.47],\n            [-76.69, 45.476],\n            [-76.681, 45.479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.301, 45.55],\n            [-75.292, 45.548],\n            [-75.288, 45.541],\n            [-75.292, 45.535],\n            [-75.301, 45.532],\n            [-75.31, 45.535],\n            [-75.314, 45.541],\n            [-75.31, 45.548],\n            [-75.301, 45.55]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.021, 44.913],\n            [-76.012, 44.91],\n            [-76.009, 44.904],\n            [-76.012, 44.897],\n            [-76.021, 44.895],\n            [-76.03, 44.897],\n            [-76.034, 44.904],\n            [-76.03, 44.91],\n            [-76.021, 44.913]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.255, 44.911],\n            [-76.246, 44.908],\n            [-76.242, 44.902],\n            [-76.246, 44.895],\n            [-76.255, 44.893],\n            [-76.264, 44.895],\n            [-76.267, 44.902],\n            [-76.264, 44.908],\n            [-76.255, 44.911]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.253, 44.91],\n            [-76.244, 44.907],\n            [-76.24, 44.901],\n            [-76.244, 44.895],\n            [-76.253, 44.892],\n            [-76.262, 44.895],\n            [-76.266, 44.901],\n            [-76.262, 44.907],\n            [-76.253, 44.91]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.241, 44.901],\n            [-76.232, 44.899],\n            [-76.228, 44.892],\n            [-76.232, 44.886],\n            [-76.241, 44.883],\n            [-76.25, 44.886],\n            [-76.253, 44.892],\n            [-76.25, 44.899],\n            [-76.241, 44.901]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.264, 44.92],\n            [-76.255, 44.917],\n            [-76.251, 44.911],\n            [-76.255, 44.904],\n            [-76.264, 44.902],\n            [-76.273, 44.904],\n            [-76.277, 44.911],\n            [-76.273, 44.917],\n            [-76.264, 44.92]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.027, 44.903],\n            [-76.018, 44.9],\n            [-76.015, 44.894],\n            [-76.018, 44.888],\n            [-76.027, 44.885],\n            [-76.036, 44.888],\n            [-76.04, 44.894],\n            [-76.036, 44.9],\n            [-76.027, 44.903]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.594, 45.457],\n            [-75.585, 45.454],\n            [-75.581, 45.448],\n            [-75.585, 45.441],\n            [-75.594, 45.439],\n            [-75.603, 45.441],\n            [-75.607, 45.448],\n            [-75.603, 45.454],\n            [-75.594, 45.457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.869, 45.297],\n            [-75.86, 45.294],\n            [-75.856, 45.288],\n            [-75.86, 45.282],\n            [-75.869, 45.279],\n            [-75.878, 45.282],\n            [-75.882, 45.288],\n            [-75.878, 45.294],\n            [-75.869, 45.297]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.564, 45.441],\n            [-75.555, 45.438],\n            [-75.551, 45.432],\n            [-75.555, 45.425],\n            [-75.564, 45.423],\n            [-75.573, 45.425],\n            [-75.577, 45.432],\n            [-75.573, 45.438],\n            [-75.564, 45.441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.667, 45.386],\n            [-75.658, 45.384],\n            [-75.654, 45.377],\n            [-75.658, 45.371],\n            [-75.667, 45.368],\n            [-75.676, 45.371],\n            [-75.68, 45.377],\n            [-75.676, 45.384],\n            [-75.667, 45.386]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.668, 45.387],\n            [-75.658, 45.384],\n            [-75.655, 45.378],\n            [-75.658, 45.371],\n            [-75.668, 45.369],\n            [-75.677, 45.371],\n            [-75.68, 45.378],\n            [-75.677, 45.384],\n            [-75.668, 45.387]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.747, 45.39],\n            [-75.738, 45.387],\n            [-75.735, 45.381],\n            [-75.738, 45.374],\n            [-75.747, 45.372],\n            [-75.756, 45.374],\n            [-75.76, 45.381],\n            [-75.756, 45.387],\n            [-75.747, 45.39]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.757, 45.385],\n            [-75.748, 45.383],\n            [-75.745, 45.376],\n            [-75.748, 45.37],\n            [-75.757, 45.367],\n            [-75.766, 45.37],\n            [-75.77, 45.376],\n            [-75.766, 45.383],\n            [-75.757, 45.385]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.022, 44.913],\n            [-76.013, 44.91],\n            [-76.009, 44.904],\n            [-76.013, 44.898],\n            [-76.022, 44.895],\n            [-76.031, 44.898],\n            [-76.034, 44.904],\n            [-76.031, 44.91],\n            [-76.022, 44.913]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.523, 45.481],\n            [-75.514, 45.478],\n            [-75.51, 45.472],\n            [-75.514, 45.465],\n            [-75.523, 45.463],\n            [-75.532, 45.465],\n            [-75.536, 45.472],\n            [-75.532, 45.478],\n            [-75.523, 45.481]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.651, 45.029],\n            [-75.642, 45.026],\n            [-75.638, 45.02],\n            [-75.642, 45.013],\n            [-75.651, 45.011],\n            [-75.66, 45.013],\n            [-75.664, 45.02],\n            [-75.66, 45.026],\n            [-75.651, 45.029]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.631, 45.392],\n            [-75.622, 45.389],\n            [-75.618, 45.383],\n            [-75.622, 45.377],\n            [-75.631, 45.374],\n            [-75.64, 45.377],\n            [-75.644, 45.383],\n            [-75.64, 45.389],\n            [-75.631, 45.392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.02, 44.898],\n            [-76.011, 44.895],\n            [-76.007, 44.889],\n            [-76.011, 44.882],\n            [-76.02, 44.88],\n            [-76.029, 44.882],\n            [-76.033, 44.889],\n            [-76.029, 44.895],\n            [-76.02, 44.898]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.029, 44.902],\n            [-76.02, 44.899],\n            [-76.017, 44.893],\n            [-76.02, 44.886],\n            [-76.029, 44.884],\n            [-76.038, 44.886],\n            [-76.042, 44.893],\n            [-76.038, 44.899],\n            [-76.029, 44.902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.011, 44.912],\n            [-76.002, 44.909],\n            [-75.999, 44.903],\n            [-76.002, 44.896],\n            [-76.011, 44.894],\n            [-76.02, 44.896],\n            [-76.024, 44.903],\n            [-76.02, 44.909],\n            [-76.011, 44.912]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.033, 44.898],\n            [-76.024, 44.895],\n            [-76.02, 44.889],\n            [-76.024, 44.883],\n            [-76.033, 44.88],\n            [-76.042, 44.883],\n            [-76.046, 44.889],\n            [-76.042, 44.895],\n            [-76.033, 44.898]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.021, 44.919],\n            [-76.012, 44.917],\n            [-76.008, 44.91],\n            [-76.012, 44.904],\n            [-76.021, 44.901],\n            [-76.03, 44.904],\n            [-76.034, 44.91],\n            [-76.03, 44.917],\n            [-76.021, 44.919]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.883, 45.322],\n            [-75.874, 45.32],\n            [-75.87, 45.313],\n            [-75.874, 45.307],\n            [-75.883, 45.304],\n            [-75.892, 45.307],\n            [-75.895, 45.313],\n            [-75.892, 45.32],\n            [-75.883, 45.322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.296, 45.554],\n            [-75.287, 45.552],\n            [-75.283, 45.545],\n            [-75.287, 45.539],\n            [-75.296, 45.536],\n            [-75.305, 45.539],\n            [-75.309, 45.545],\n            [-75.305, 45.552],\n            [-75.296, 45.554]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.296, 45.56],\n            [-75.286, 45.558],\n            [-75.283, 45.551],\n            [-75.286, 45.545],\n            [-75.296, 45.542],\n            [-75.305, 45.545],\n            [-75.308, 45.551],\n            [-75.305, 45.558],\n            [-75.296, 45.56]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.303, 45.555],\n            [-75.294, 45.553],\n            [-75.29, 45.546],\n            [-75.294, 45.54],\n            [-75.303, 45.537],\n            [-75.312, 45.54],\n            [-75.316, 45.546],\n            [-75.312, 45.553],\n            [-75.303, 45.555]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.54, 45.473],\n            [-75.531, 45.47],\n            [-75.528, 45.464],\n            [-75.531, 45.457],\n            [-75.54, 45.455],\n            [-75.549, 45.457],\n            [-75.553, 45.464],\n            [-75.549, 45.47],\n            [-75.54, 45.473]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.878, 45.313],\n            [-75.869, 45.31],\n            [-75.865, 45.304],\n            [-75.869, 45.297],\n            [-75.878, 45.295],\n            [-75.887, 45.297],\n            [-75.891, 45.304],\n            [-75.887, 45.31],\n            [-75.878, 45.313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.917, 45.351],\n            [-75.908, 45.349],\n            [-75.904, 45.342],\n            [-75.908, 45.336],\n            [-75.917, 45.333],\n            [-75.926, 45.336],\n            [-75.93, 45.342],\n            [-75.926, 45.349],\n            [-75.917, 45.351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.641, 45.42],\n            [-75.632, 45.417],\n            [-75.628, 45.411],\n            [-75.632, 45.405],\n            [-75.641, 45.402],\n            [-75.65, 45.405],\n            [-75.654, 45.411],\n            [-75.65, 45.417],\n            [-75.641, 45.42]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.666, 45.443],\n            [-75.657, 45.44],\n            [-75.653, 45.434],\n            [-75.657, 45.428],\n            [-75.666, 45.425],\n            [-75.675, 45.428],\n            [-75.679, 45.434],\n            [-75.675, 45.44],\n            [-75.666, 45.443]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.668, 45.442],\n            [-75.659, 45.44],\n            [-75.656, 45.433],\n            [-75.659, 45.427],\n            [-75.668, 45.424],\n            [-75.677, 45.427],\n            [-75.681, 45.433],\n            [-75.677, 45.44],\n            [-75.668, 45.442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.67, 45.442],\n            [-75.661, 45.44],\n            [-75.657, 45.433],\n            [-75.661, 45.427],\n            [-75.67, 45.424],\n            [-75.679, 45.427],\n            [-75.682, 45.433],\n            [-75.679, 45.44],\n            [-75.67, 45.442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.644, 45.451],\n            [-75.635, 45.448],\n            [-75.631, 45.442],\n            [-75.635, 45.435],\n            [-75.644, 45.433],\n            [-75.653, 45.435],\n            [-75.657, 45.442],\n            [-75.653, 45.448],\n            [-75.644, 45.451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.654, 45.448],\n            [-75.645, 45.445],\n            [-75.641, 45.439],\n            [-75.645, 45.433],\n            [-75.654, 45.43],\n            [-75.663, 45.433],\n            [-75.667, 45.439],\n            [-75.663, 45.445],\n            [-75.654, 45.448]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.605, 45.424],\n            [-75.596, 45.421],\n            [-75.592, 45.415],\n            [-75.596, 45.409],\n            [-75.605, 45.406],\n            [-75.614, 45.409],\n            [-75.617, 45.415],\n            [-75.614, 45.421],\n            [-75.605, 45.424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.516, 45.485],\n            [-75.507, 45.482],\n            [-75.504, 45.476],\n            [-75.507, 45.47],\n            [-75.516, 45.467],\n            [-75.526, 45.47],\n            [-75.529, 45.476],\n            [-75.526, 45.482],\n            [-75.516, 45.485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.89, 45.306],\n            [-75.881, 45.303],\n            [-75.877, 45.297],\n            [-75.881, 45.291],\n            [-75.89, 45.288],\n            [-75.899, 45.291],\n            [-75.903, 45.297],\n            [-75.899, 45.303],\n            [-75.89, 45.306]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.88, 45.311],\n            [-75.87, 45.309],\n            [-75.867, 45.302],\n            [-75.87, 45.296],\n            [-75.88, 45.293],\n            [-75.889, 45.296],\n            [-75.892, 45.302],\n            [-75.889, 45.309],\n            [-75.88, 45.311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.359, 45.267],\n            [-75.35, 45.264],\n            [-75.346, 45.258],\n            [-75.35, 45.252],\n            [-75.359, 45.249],\n            [-75.368, 45.252],\n            [-75.372, 45.258],\n            [-75.368, 45.264],\n            [-75.359, 45.267]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.124, 45.139],\n            [-76.115, 45.136],\n            [-76.111, 45.13],\n            [-76.115, 45.123],\n            [-76.124, 45.121],\n            [-76.133, 45.123],\n            [-76.136, 45.13],\n            [-76.133, 45.136],\n            [-76.124, 45.139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.141, 45.146],\n            [-76.132, 45.143],\n            [-76.128, 45.137],\n            [-76.132, 45.131],\n            [-76.141, 45.128],\n            [-76.15, 45.131],\n            [-76.153, 45.137],\n            [-76.15, 45.143],\n            [-76.141, 45.146]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.141, 45.159],\n            [-76.132, 45.157],\n            [-76.129, 45.15],\n            [-76.132, 45.144],\n            [-76.141, 45.141],\n            [-76.15, 45.144],\n            [-76.154, 45.15],\n            [-76.15, 45.157],\n            [-76.141, 45.159]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.143, 45.146],\n            [-76.134, 45.143],\n            [-76.13, 45.137],\n            [-76.134, 45.131],\n            [-76.143, 45.128],\n            [-76.152, 45.131],\n            [-76.155, 45.137],\n            [-76.152, 45.143],\n            [-76.143, 45.146]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.255, 44.911],\n            [-76.246, 44.908],\n            [-76.242, 44.902],\n            [-76.246, 44.895],\n            [-76.255, 44.893],\n            [-76.264, 44.895],\n            [-76.267, 44.902],\n            [-76.264, 44.908],\n            [-76.255, 44.911]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.411, 45.527],\n            [-75.402, 45.524],\n            [-75.398, 45.518],\n            [-75.402, 45.511],\n            [-75.411, 45.509],\n            [-75.42, 45.511],\n            [-75.424, 45.518],\n            [-75.42, 45.524],\n            [-75.411, 45.527]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.596, 45.428],\n            [-75.587, 45.426],\n            [-75.584, 45.419],\n            [-75.587, 45.413],\n            [-75.596, 45.41],\n            [-75.605, 45.413],\n            [-75.609, 45.419],\n            [-75.605, 45.426],\n            [-75.596, 45.428]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.539, 45.473],\n            [-75.53, 45.471],\n            [-75.526, 45.464],\n            [-75.53, 45.458],\n            [-75.539, 45.455],\n            [-75.548, 45.458],\n            [-75.552, 45.464],\n            [-75.548, 45.471],\n            [-75.539, 45.473]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.702, 45.343],\n            [-75.693, 45.34],\n            [-75.689, 45.334],\n            [-75.693, 45.327],\n            [-75.702, 45.325],\n            [-75.711, 45.327],\n            [-75.715, 45.334],\n            [-75.711, 45.34],\n            [-75.702, 45.343]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.73, 45.352],\n            [-75.721, 45.35],\n            [-75.717, 45.343],\n            [-75.721, 45.337],\n            [-75.73, 45.334],\n            [-75.739, 45.337],\n            [-75.742, 45.343],\n            [-75.739, 45.35],\n            [-75.73, 45.352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.734, 45.359],\n            [-75.725, 45.357],\n            [-75.721, 45.35],\n            [-75.725, 45.344],\n            [-75.734, 45.341],\n            [-75.743, 45.344],\n            [-75.746, 45.35],\n            [-75.743, 45.357],\n            [-75.734, 45.359]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.736, 45.363],\n            [-75.727, 45.361],\n            [-75.723, 45.354],\n            [-75.727, 45.348],\n            [-75.736, 45.345],\n            [-75.745, 45.348],\n            [-75.749, 45.354],\n            [-75.745, 45.361],\n            [-75.736, 45.363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.346, 45.443],\n            [-76.337, 45.44],\n            [-76.334, 45.434],\n            [-76.337, 45.427],\n            [-76.346, 45.425],\n            [-76.355, 45.427],\n            [-76.359, 45.434],\n            [-76.355, 45.44],\n            [-76.346, 45.443]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.378, 45.428],\n            [-76.369, 45.425],\n            [-76.365, 45.419],\n            [-76.369, 45.412],\n            [-76.378, 45.41],\n            [-76.387, 45.412],\n            [-76.39, 45.419],\n            [-76.387, 45.425],\n            [-76.378, 45.428]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.595, 45.428],\n            [-75.586, 45.425],\n            [-75.582, 45.419],\n            [-75.586, 45.413],\n            [-75.595, 45.41],\n            [-75.604, 45.413],\n            [-75.608, 45.419],\n            [-75.604, 45.425],\n            [-75.595, 45.428]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.545, 44.852],\n            [-75.536, 44.849],\n            [-75.532, 44.843],\n            [-75.536, 44.836],\n            [-75.545, 44.834],\n            [-75.554, 44.836],\n            [-75.558, 44.843],\n            [-75.554, 44.849],\n            [-75.545, 44.852]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.444, 45.354],\n            [-75.435, 45.351],\n            [-75.431, 45.345],\n            [-75.435, 45.339],\n            [-75.444, 45.336],\n            [-75.453, 45.339],\n            [-75.456, 45.345],\n            [-75.453, 45.351],\n            [-75.444, 45.354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.618, 45.429],\n            [-75.609, 45.427],\n            [-75.605, 45.42],\n            [-75.609, 45.414],\n            [-75.618, 45.411],\n            [-75.627, 45.414],\n            [-75.631, 45.42],\n            [-75.627, 45.427],\n            [-75.618, 45.429]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.605, 45.426],\n            [-75.596, 45.423],\n            [-75.592, 45.417],\n            [-75.596, 45.411],\n            [-75.605, 45.408],\n            [-75.614, 45.411],\n            [-75.617, 45.417],\n            [-75.614, 45.423],\n            [-75.605, 45.426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.773, 45.378],\n            [-75.764, 45.375],\n            [-75.76, 45.369],\n            [-75.764, 45.362],\n            [-75.773, 45.36],\n            [-75.782, 45.362],\n            [-75.786, 45.369],\n            [-75.782, 45.375],\n            [-75.773, 45.378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.636, 45.434],\n            [-75.626, 45.431],\n            [-75.623, 45.425],\n            [-75.626, 45.419],\n            [-75.636, 45.416],\n            [-75.645, 45.419],\n            [-75.648, 45.425],\n            [-75.645, 45.431],\n            [-75.636, 45.434]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.637, 45.434],\n            [-75.628, 45.432],\n            [-75.625, 45.425],\n            [-75.628, 45.419],\n            [-75.637, 45.416],\n            [-75.646, 45.419],\n            [-75.65, 45.425],\n            [-75.646, 45.432],\n            [-75.637, 45.434]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.627, 45.414],\n            [-75.618, 45.412],\n            [-75.615, 45.405],\n            [-75.618, 45.399],\n            [-75.627, 45.396],\n            [-75.636, 45.399],\n            [-75.64, 45.405],\n            [-75.636, 45.412],\n            [-75.627, 45.414]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.921, 45.287],\n            [-75.912, 45.284],\n            [-75.908, 45.278],\n            [-75.912, 45.271],\n            [-75.921, 45.269],\n            [-75.93, 45.271],\n            [-75.934, 45.278],\n            [-75.93, 45.284],\n            [-75.921, 45.287]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.782, 45.38],\n            [-75.773, 45.377],\n            [-75.769, 45.371],\n            [-75.773, 45.364],\n            [-75.782, 45.362],\n            [-75.791, 45.364],\n            [-75.795, 45.371],\n            [-75.791, 45.377],\n            [-75.782, 45.38]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.757, 45.385],\n            [-75.748, 45.382],\n            [-75.744, 45.376],\n            [-75.748, 45.369],\n            [-75.757, 45.367],\n            [-75.766, 45.369],\n            [-75.77, 45.376],\n            [-75.766, 45.382],\n            [-75.757, 45.385]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.786, 45.351],\n            [-75.777, 45.348],\n            [-75.773, 45.342],\n            [-75.777, 45.336],\n            [-75.786, 45.333],\n            [-75.795, 45.336],\n            [-75.799, 45.342],\n            [-75.795, 45.348],\n            [-75.786, 45.351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.788, 45.356],\n            [-75.779, 45.354],\n            [-75.775, 45.348],\n            [-75.779, 45.341],\n            [-75.788, 45.339],\n            [-75.797, 45.341],\n            [-75.801, 45.348],\n            [-75.797, 45.354],\n            [-75.788, 45.356]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.675, 45.243],\n            [-75.666, 45.24],\n            [-75.662, 45.234],\n            [-75.666, 45.228],\n            [-75.675, 45.225],\n            [-75.684, 45.228],\n            [-75.688, 45.234],\n            [-75.684, 45.24],\n            [-75.675, 45.243]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.699, 45.279],\n            [-75.69, 45.276],\n            [-75.686, 45.27],\n            [-75.69, 45.263],\n            [-75.699, 45.261],\n            [-75.708, 45.263],\n            [-75.712, 45.27],\n            [-75.708, 45.276],\n            [-75.699, 45.279]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.62, 45.373],\n            [-75.611, 45.371],\n            [-75.607, 45.364],\n            [-75.611, 45.358],\n            [-75.62, 45.355],\n            [-75.629, 45.358],\n            [-75.633, 45.364],\n            [-75.629, 45.371],\n            [-75.62, 45.373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.621, 45.404],\n            [-75.612, 45.402],\n            [-75.609, 45.395],\n            [-75.612, 45.389],\n            [-75.621, 45.386],\n            [-75.63, 45.389],\n            [-75.634, 45.395],\n            [-75.63, 45.402],\n            [-75.621, 45.404]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.624, 45.383],\n            [-75.615, 45.38],\n            [-75.611, 45.374],\n            [-75.615, 45.368],\n            [-75.624, 45.365],\n            [-75.633, 45.368],\n            [-75.637, 45.374],\n            [-75.633, 45.38],\n            [-75.624, 45.383]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.757, 45.296],\n            [-75.748, 45.294],\n            [-75.745, 45.287],\n            [-75.748, 45.281],\n            [-75.757, 45.279],\n            [-75.766, 45.281],\n            [-75.77, 45.287],\n            [-75.766, 45.294],\n            [-75.757, 45.296]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.732, 45.307],\n            [-75.723, 45.304],\n            [-75.719, 45.298],\n            [-75.723, 45.291],\n            [-75.732, 45.289],\n            [-75.741, 45.291],\n            [-75.744, 45.298],\n            [-75.741, 45.304],\n            [-75.732, 45.307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.677, 45.448],\n            [-75.668, 45.446],\n            [-75.664, 45.439],\n            [-75.668, 45.433],\n            [-75.677, 45.43],\n            [-75.686, 45.433],\n            [-75.689, 45.439],\n            [-75.686, 45.446],\n            [-75.677, 45.448]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.756, 45.295],\n            [-75.747, 45.293],\n            [-75.744, 45.286],\n            [-75.747, 45.28],\n            [-75.756, 45.277],\n            [-75.765, 45.28],\n            [-75.769, 45.286],\n            [-75.765, 45.293],\n            [-75.756, 45.295]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.694, 45.421],\n            [-75.685, 45.418],\n            [-75.681, 45.412],\n            [-75.685, 45.405],\n            [-75.694, 45.403],\n            [-75.703, 45.405],\n            [-75.706, 45.412],\n            [-75.703, 45.418],\n            [-75.694, 45.421]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.668, 45.39],\n            [-75.659, 45.387],\n            [-75.655, 45.381],\n            [-75.659, 45.374],\n            [-75.668, 45.372],\n            [-75.677, 45.374],\n            [-75.681, 45.381],\n            [-75.677, 45.387],\n            [-75.668, 45.39]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.75, 45.402],\n            [-75.741, 45.4],\n            [-75.738, 45.394],\n            [-75.741, 45.387],\n            [-75.75, 45.385],\n            [-75.759, 45.387],\n            [-75.763, 45.394],\n            [-75.759, 45.4],\n            [-75.75, 45.402]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.48, 45.5],\n            [-75.471, 45.497],\n            [-75.467, 45.491],\n            [-75.471, 45.485],\n            [-75.48, 45.482],\n            [-75.489, 45.485],\n            [-75.493, 45.491],\n            [-75.489, 45.497],\n            [-75.48, 45.5]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.788, 45.35],\n            [-75.779, 45.348],\n            [-75.775, 45.341],\n            [-75.779, 45.335],\n            [-75.788, 45.332],\n            [-75.797, 45.335],\n            [-75.801, 45.341],\n            [-75.797, 45.348],\n            [-75.788, 45.35]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.692, 45.419],\n            [-75.683, 45.416],\n            [-75.68, 45.41],\n            [-75.683, 45.403],\n            [-75.692, 45.401],\n            [-75.702, 45.403],\n            [-75.705, 45.41],\n            [-75.702, 45.416],\n            [-75.692, 45.419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.595, 45.279],\n            [-75.586, 45.276],\n            [-75.582, 45.27],\n            [-75.586, 45.263],\n            [-75.595, 45.261],\n            [-75.604, 45.263],\n            [-75.607, 45.27],\n            [-75.604, 45.276],\n            [-75.595, 45.279]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.631, 45.435],\n            [-75.622, 45.432],\n            [-75.618, 45.426],\n            [-75.622, 45.42],\n            [-75.631, 45.417],\n            [-75.64, 45.42],\n            [-75.644, 45.426],\n            [-75.64, 45.432],\n            [-75.631, 45.435]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.786, 45.376],\n            [-75.777, 45.374],\n            [-75.773, 45.367],\n            [-75.777, 45.361],\n            [-75.786, 45.359],\n            [-75.795, 45.361],\n            [-75.799, 45.367],\n            [-75.795, 45.374],\n            [-75.786, 45.376]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.548, 45.471],\n            [-75.539, 45.468],\n            [-75.536, 45.462],\n            [-75.539, 45.455],\n            [-75.548, 45.453],\n            [-75.558, 45.455],\n            [-75.561, 45.462],\n            [-75.558, 45.468],\n            [-75.548, 45.471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.648, 45.441],\n            [-75.639, 45.438],\n            [-75.635, 45.432],\n            [-75.639, 45.426],\n            [-75.648, 45.423],\n            [-75.657, 45.426],\n            [-75.661, 45.432],\n            [-75.657, 45.438],\n            [-75.648, 45.441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.64, 45.452],\n            [-75.631, 45.449],\n            [-75.628, 45.443],\n            [-75.631, 45.437],\n            [-75.64, 45.434],\n            [-75.649, 45.437],\n            [-75.653, 45.443],\n            [-75.649, 45.449],\n            [-75.64, 45.452]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.509, 45.463],\n            [-75.5, 45.46],\n            [-75.496, 45.454],\n            [-75.5, 45.447],\n            [-75.509, 45.445],\n            [-75.518, 45.447],\n            [-75.521, 45.454],\n            [-75.518, 45.46],\n            [-75.509, 45.463]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.505, 45.464],\n            [-75.496, 45.462],\n            [-75.492, 45.455],\n            [-75.496, 45.449],\n            [-75.505, 45.446],\n            [-75.514, 45.449],\n            [-75.518, 45.455],\n            [-75.514, 45.462],\n            [-75.505, 45.464]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.527, 45.456],\n            [-75.518, 45.453],\n            [-75.514, 45.447],\n            [-75.518, 45.441],\n            [-75.527, 45.438],\n            [-75.536, 45.441],\n            [-75.54, 45.447],\n            [-75.536, 45.453],\n            [-75.527, 45.456]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.512, 45.462],\n            [-75.503, 45.459],\n            [-75.499, 45.453],\n            [-75.503, 45.447],\n            [-75.512, 45.444],\n            [-75.521, 45.447],\n            [-75.525, 45.453],\n            [-75.521, 45.459],\n            [-75.512, 45.462]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.821, 45.336],\n            [-75.812, 45.334],\n            [-75.809, 45.327],\n            [-75.812, 45.321],\n            [-75.821, 45.318],\n            [-75.83, 45.321],\n            [-75.834, 45.327],\n            [-75.83, 45.334],\n            [-75.821, 45.336]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.82, 45.336],\n            [-75.811, 45.334],\n            [-75.807, 45.327],\n            [-75.811, 45.321],\n            [-75.82, 45.318],\n            [-75.829, 45.321],\n            [-75.833, 45.327],\n            [-75.829, 45.334],\n            [-75.82, 45.336]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.663, 45.379],\n            [-75.654, 45.376],\n            [-75.65, 45.37],\n            [-75.654, 45.364],\n            [-75.663, 45.361],\n            [-75.672, 45.364],\n            [-75.676, 45.37],\n            [-75.672, 45.376],\n            [-75.663, 45.379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.61, 45.427],\n            [-75.601, 45.425],\n            [-75.597, 45.419],\n            [-75.601, 45.412],\n            [-75.61, 45.41],\n            [-75.619, 45.412],\n            [-75.623, 45.419],\n            [-75.619, 45.425],\n            [-75.61, 45.427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.739, 45.37],\n            [-75.73, 45.368],\n            [-75.726, 45.361],\n            [-75.73, 45.355],\n            [-75.739, 45.352],\n            [-75.748, 45.355],\n            [-75.752, 45.361],\n            [-75.748, 45.368],\n            [-75.739, 45.37]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.752, 45.299],\n            [-75.743, 45.296],\n            [-75.739, 45.29],\n            [-75.743, 45.284],\n            [-75.752, 45.281],\n            [-75.761, 45.284],\n            [-75.765, 45.29],\n            [-75.761, 45.296],\n            [-75.752, 45.299]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.723, 45.294],\n            [-75.714, 45.291],\n            [-75.71, 45.285],\n            [-75.714, 45.278],\n            [-75.723, 45.276],\n            [-75.732, 45.278],\n            [-75.736, 45.285],\n            [-75.732, 45.291],\n            [-75.723, 45.294]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.704, 45.416],\n            [-75.695, 45.414],\n            [-75.691, 45.407],\n            [-75.695, 45.401],\n            [-75.704, 45.398],\n            [-75.713, 45.401],\n            [-75.717, 45.407],\n            [-75.713, 45.414],\n            [-75.704, 45.416]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.595, 45.457],\n            [-75.586, 45.454],\n            [-75.582, 45.448],\n            [-75.586, 45.441],\n            [-75.595, 45.439],\n            [-75.604, 45.441],\n            [-75.608, 45.448],\n            [-75.604, 45.454],\n            [-75.595, 45.457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.733, 45.39],\n            [-75.724, 45.388],\n            [-75.721, 45.381],\n            [-75.724, 45.375],\n            [-75.733, 45.372],\n            [-75.743, 45.375],\n            [-75.746, 45.381],\n            [-75.743, 45.388],\n            [-75.733, 45.39]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.617, 45.416],\n            [-75.608, 45.413],\n            [-75.604, 45.407],\n            [-75.608, 45.401],\n            [-75.617, 45.398],\n            [-75.626, 45.401],\n            [-75.63, 45.407],\n            [-75.626, 45.413],\n            [-75.617, 45.416]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.67, 45.452],\n            [-75.661, 45.45],\n            [-75.657, 45.444],\n            [-75.661, 45.437],\n            [-75.67, 45.435],\n            [-75.679, 45.437],\n            [-75.683, 45.444],\n            [-75.679, 45.45],\n            [-75.67, 45.452]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.742, 45.406],\n            [-75.733, 45.404],\n            [-75.729, 45.397],\n            [-75.733, 45.391],\n            [-75.742, 45.388],\n            [-75.751, 45.391],\n            [-75.755, 45.397],\n            [-75.751, 45.404],\n            [-75.742, 45.406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.756, 45.352],\n            [-75.747, 45.349],\n            [-75.744, 45.343],\n            [-75.747, 45.336],\n            [-75.756, 45.334],\n            [-75.765, 45.336],\n            [-75.769, 45.343],\n            [-75.765, 45.349],\n            [-75.756, 45.352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.809, 45.363],\n            [-75.8, 45.36],\n            [-75.796, 45.354],\n            [-75.8, 45.347],\n            [-75.809, 45.345],\n            [-75.818, 45.347],\n            [-75.822, 45.354],\n            [-75.818, 45.36],\n            [-75.809, 45.363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.67, 45.36],\n            [-75.661, 45.357],\n            [-75.657, 45.351],\n            [-75.661, 45.345],\n            [-75.67, 45.342],\n            [-75.679, 45.345],\n            [-75.683, 45.351],\n            [-75.679, 45.357],\n            [-75.67, 45.36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.955, 45.288],\n            [-75.946, 45.286],\n            [-75.942, 45.279],\n            [-75.946, 45.273],\n            [-75.955, 45.27],\n            [-75.964, 45.273],\n            [-75.968, 45.279],\n            [-75.964, 45.286],\n            [-75.955, 45.288]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.651, 45.029],\n            [-75.642, 45.026],\n            [-75.638, 45.02],\n            [-75.642, 45.013],\n            [-75.651, 45.011],\n            [-75.66, 45.013],\n            [-75.664, 45.02],\n            [-75.66, 45.026],\n            [-75.651, 45.029]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.523, 45.481],\n            [-75.514, 45.478],\n            [-75.51, 45.472],\n            [-75.514, 45.465],\n            [-75.523, 45.463],\n            [-75.532, 45.465],\n            [-75.536, 45.472],\n            [-75.532, 45.478],\n            [-75.523, 45.481]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.708, 45.408],\n            [-75.699, 45.405],\n            [-75.695, 45.399],\n            [-75.699, 45.392],\n            [-75.708, 45.39],\n            [-75.717, 45.392],\n            [-75.721, 45.399],\n            [-75.717, 45.405],\n            [-75.708, 45.408]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.747, 45.282],\n            [-75.738, 45.279],\n            [-75.734, 45.273],\n            [-75.738, 45.266],\n            [-75.747, 45.264],\n            [-75.756, 45.266],\n            [-75.76, 45.273],\n            [-75.756, 45.279],\n            [-75.747, 45.282]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.701, 45.413],\n            [-75.692, 45.41],\n            [-75.688, 45.404],\n            [-75.692, 45.397],\n            [-75.701, 45.395],\n            [-75.71, 45.397],\n            [-75.714, 45.404],\n            [-75.71, 45.41],\n            [-75.701, 45.413]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.931, 45.281],\n            [-75.922, 45.279],\n            [-75.918, 45.272],\n            [-75.922, 45.266],\n            [-75.931, 45.263],\n            [-75.94, 45.266],\n            [-75.943, 45.272],\n            [-75.94, 45.279],\n            [-75.931, 45.281]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.923, 45.285],\n            [-75.914, 45.283],\n            [-75.91, 45.276],\n            [-75.914, 45.27],\n            [-75.923, 45.267],\n            [-75.932, 45.27],\n            [-75.935, 45.276],\n            [-75.932, 45.283],\n            [-75.923, 45.285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.938, 45.277],\n            [-75.929, 45.274],\n            [-75.925, 45.268],\n            [-75.929, 45.262],\n            [-75.938, 45.259],\n            [-75.947, 45.262],\n            [-75.951, 45.268],\n            [-75.947, 45.274],\n            [-75.938, 45.277]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.632, 45.435],\n            [-75.623, 45.433],\n            [-75.619, 45.426],\n            [-75.623, 45.42],\n            [-75.632, 45.417],\n            [-75.641, 45.42],\n            [-75.645, 45.426],\n            [-75.641, 45.433],\n            [-75.632, 45.435]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.916, 45.263],\n            [-75.907, 45.261],\n            [-75.904, 45.254],\n            [-75.907, 45.248],\n            [-75.916, 45.245],\n            [-75.926, 45.248],\n            [-75.929, 45.254],\n            [-75.926, 45.261],\n            [-75.916, 45.263]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.927, 45.36],\n            [-75.918, 45.357],\n            [-75.914, 45.351],\n            [-75.918, 45.345],\n            [-75.927, 45.342],\n            [-75.936, 45.345],\n            [-75.94, 45.351],\n            [-75.936, 45.357],\n            [-75.927, 45.36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.05, 45.327],\n            [-76.041, 45.324],\n            [-76.037, 45.318],\n            [-76.041, 45.311],\n            [-76.05, 45.309],\n            [-76.059, 45.311],\n            [-76.063, 45.318],\n            [-76.059, 45.324],\n            [-76.05, 45.327]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.648, 45.438],\n            [-75.639, 45.435],\n            [-75.635, 45.429],\n            [-75.639, 45.422],\n            [-75.648, 45.42],\n            [-75.657, 45.422],\n            [-75.661, 45.429],\n            [-75.657, 45.435],\n            [-75.648, 45.438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.73, 45.407],\n            [-75.721, 45.404],\n            [-75.718, 45.398],\n            [-75.721, 45.391],\n            [-75.73, 45.389],\n            [-75.739, 45.391],\n            [-75.743, 45.398],\n            [-75.74, 45.404],\n            [-75.73, 45.407]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.702, 45.351],\n            [-75.693, 45.349],\n            [-75.689, 45.342],\n            [-75.693, 45.336],\n            [-75.702, 45.333],\n            [-75.711, 45.336],\n            [-75.715, 45.342],\n            [-75.711, 45.349],\n            [-75.702, 45.351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.63, 45.421],\n            [-75.621, 45.419],\n            [-75.617, 45.412],\n            [-75.621, 45.406],\n            [-75.63, 45.403],\n            [-75.639, 45.406],\n            [-75.643, 45.412],\n            [-75.639, 45.419],\n            [-75.63, 45.421]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.083, 45.315],\n            [-75.074, 45.313],\n            [-75.07, 45.306],\n            [-75.074, 45.3],\n            [-75.083, 45.297],\n            [-75.092, 45.3],\n            [-75.095, 45.306],\n            [-75.092, 45.313],\n            [-75.083, 45.315]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.487, 45.47],\n            [-75.478, 45.468],\n            [-75.475, 45.461],\n            [-75.478, 45.455],\n            [-75.487, 45.452],\n            [-75.497, 45.455],\n            [-75.5, 45.461],\n            [-75.497, 45.468],\n            [-75.487, 45.47]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.823, 45.335],\n            [-75.814, 45.332],\n            [-75.811, 45.326],\n            [-75.814, 45.32],\n            [-75.823, 45.317],\n            [-75.832, 45.32],\n            [-75.836, 45.326],\n            [-75.832, 45.332],\n            [-75.823, 45.335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.728, 45.3],\n            [-75.719, 45.298],\n            [-75.715, 45.291],\n            [-75.719, 45.285],\n            [-75.728, 45.282],\n            [-75.737, 45.285],\n            [-75.741, 45.291],\n            [-75.737, 45.298],\n            [-75.728, 45.3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.703, 45.296],\n            [-75.694, 45.293],\n            [-75.69, 45.287],\n            [-75.694, 45.28],\n            [-75.703, 45.278],\n            [-75.712, 45.28],\n            [-75.716, 45.287],\n            [-75.712, 45.293],\n            [-75.703, 45.296]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.491, 45.476],\n            [-75.482, 45.474],\n            [-75.478, 45.467],\n            [-75.482, 45.461],\n            [-75.491, 45.458],\n            [-75.5, 45.461],\n            [-75.504, 45.467],\n            [-75.5, 45.474],\n            [-75.491, 45.476]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.492, 45.477],\n            [-75.483, 45.474],\n            [-75.479, 45.468],\n            [-75.483, 45.462],\n            [-75.492, 45.459],\n            [-75.501, 45.462],\n            [-75.504, 45.468],\n            [-75.501, 45.474],\n            [-75.492, 45.477]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.802, 45.278],\n            [-75.793, 45.276],\n            [-75.789, 45.269],\n            [-75.793, 45.263],\n            [-75.802, 45.26],\n            [-75.811, 45.263],\n            [-75.815, 45.269],\n            [-75.811, 45.276],\n            [-75.802, 45.278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.536, 45.458],\n            [-75.527, 45.455],\n            [-75.523, 45.449],\n            [-75.527, 45.442],\n            [-75.536, 45.44],\n            [-75.545, 45.442],\n            [-75.548, 45.449],\n            [-75.545, 45.455],\n            [-75.536, 45.458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.719, 45.285],\n            [-75.71, 45.282],\n            [-75.706, 45.276],\n            [-75.71, 45.27],\n            [-75.719, 45.267],\n            [-75.728, 45.27],\n            [-75.732, 45.276],\n            [-75.728, 45.282],\n            [-75.719, 45.285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.533, 45.476],\n            [-75.524, 45.473],\n            [-75.521, 45.467],\n            [-75.524, 45.46],\n            [-75.533, 45.458],\n            [-75.542, 45.46],\n            [-75.546, 45.467],\n            [-75.542, 45.473],\n            [-75.533, 45.476]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.613, 45.442],\n            [-75.604, 45.44],\n            [-75.6, 45.433],\n            [-75.604, 45.427],\n            [-75.613, 45.424],\n            [-75.622, 45.427],\n            [-75.625, 45.433],\n            [-75.622, 45.44],\n            [-75.613, 45.442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.951, 45.379],\n            [-75.942, 45.376],\n            [-75.938, 45.37],\n            [-75.942, 45.363],\n            [-75.951, 45.361],\n            [-75.96, 45.363],\n            [-75.964, 45.37],\n            [-75.96, 45.376],\n            [-75.951, 45.379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.777, 45.333],\n            [-75.768, 45.33],\n            [-75.765, 45.324],\n            [-75.768, 45.317],\n            [-75.777, 45.315],\n            [-75.787, 45.317],\n            [-75.79, 45.324],\n            [-75.787, 45.33],\n            [-75.777, 45.333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.736, 45.369],\n            [-75.727, 45.366],\n            [-75.723, 45.36],\n            [-75.727, 45.354],\n            [-75.736, 45.351],\n            [-75.745, 45.354],\n            [-75.749, 45.36],\n            [-75.745, 45.366],\n            [-75.736, 45.369]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.631, 45.432],\n            [-75.622, 45.43],\n            [-75.618, 45.423],\n            [-75.622, 45.417],\n            [-75.631, 45.414],\n            [-75.64, 45.417],\n            [-75.644, 45.423],\n            [-75.64, 45.43],\n            [-75.631, 45.432]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.68, 45.441],\n            [-75.671, 45.438],\n            [-75.667, 45.432],\n            [-75.671, 45.425],\n            [-75.68, 45.423],\n            [-75.689, 45.425],\n            [-75.692, 45.432],\n            [-75.689, 45.438],\n            [-75.68, 45.441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.748, 45.384],\n            [-75.739, 45.381],\n            [-75.735, 45.375],\n            [-75.739, 45.368],\n            [-75.748, 45.366],\n            [-75.757, 45.368],\n            [-75.761, 45.375],\n            [-75.757, 45.381],\n            [-75.748, 45.384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.788, 45.372],\n            [-75.779, 45.369],\n            [-75.775, 45.363],\n            [-75.779, 45.356],\n            [-75.788, 45.354],\n            [-75.797, 45.356],\n            [-75.801, 45.363],\n            [-75.797, 45.369],\n            [-75.788, 45.372]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.621, 45.406],\n            [-75.612, 45.403],\n            [-75.608, 45.397],\n            [-75.612, 45.39],\n            [-75.621, 45.388],\n            [-75.63, 45.39],\n            [-75.634, 45.397],\n            [-75.63, 45.403],\n            [-75.621, 45.406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.752, 45.343],\n            [-75.743, 45.341],\n            [-75.739, 45.334],\n            [-75.743, 45.328],\n            [-75.752, 45.325],\n            [-75.761, 45.328],\n            [-75.765, 45.334],\n            [-75.761, 45.341],\n            [-75.752, 45.343]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.738, 45.284],\n            [-75.729, 45.281],\n            [-75.725, 45.275],\n            [-75.729, 45.268],\n            [-75.738, 45.266],\n            [-75.747, 45.268],\n            [-75.751, 45.275],\n            [-75.747, 45.281],\n            [-75.738, 45.284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.631, 45.369],\n            [-75.622, 45.367],\n            [-75.619, 45.36],\n            [-75.622, 45.354],\n            [-75.631, 45.351],\n            [-75.641, 45.354],\n            [-75.644, 45.36],\n            [-75.641, 45.367],\n            [-75.631, 45.369]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.838, 45.29],\n            [-75.829, 45.288],\n            [-75.825, 45.281],\n            [-75.829, 45.275],\n            [-75.838, 45.272],\n            [-75.847, 45.275],\n            [-75.851, 45.281],\n            [-75.847, 45.288],\n            [-75.838, 45.29]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.901, 45.307],\n            [-75.892, 45.304],\n            [-75.888, 45.298],\n            [-75.892, 45.291],\n            [-75.901, 45.289],\n            [-75.91, 45.291],\n            [-75.914, 45.298],\n            [-75.91, 45.304],\n            [-75.901, 45.307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.918, 45.319],\n            [-75.909, 45.316],\n            [-75.906, 45.31],\n            [-75.909, 45.304],\n            [-75.918, 45.301],\n            [-75.927, 45.304],\n            [-75.931, 45.31],\n            [-75.927, 45.316],\n            [-75.918, 45.319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.344, 45.349],\n            [-75.335, 45.347],\n            [-75.331, 45.34],\n            [-75.335, 45.334],\n            [-75.344, 45.332],\n            [-75.353, 45.334],\n            [-75.357, 45.34],\n            [-75.353, 45.347],\n            [-75.344, 45.349]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.605, 45.445],\n            [-75.596, 45.443],\n            [-75.592, 45.436],\n            [-75.596, 45.43],\n            [-75.605, 45.427],\n            [-75.614, 45.43],\n            [-75.617, 45.436],\n            [-75.614, 45.443],\n            [-75.605, 45.445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.376, 45.427],\n            [-76.367, 45.425],\n            [-76.363, 45.418],\n            [-76.367, 45.412],\n            [-76.376, 45.409],\n            [-76.385, 45.412],\n            [-76.388, 45.418],\n            [-76.385, 45.425],\n            [-76.376, 45.427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.736, 45.364],\n            [-75.727, 45.361],\n            [-75.723, 45.355],\n            [-75.727, 45.349],\n            [-75.736, 45.346],\n            [-75.745, 45.349],\n            [-75.748, 45.355],\n            [-75.745, 45.361],\n            [-75.736, 45.364]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.713, 45.249],\n            [-75.704, 45.247],\n            [-75.7, 45.24],\n            [-75.704, 45.234],\n            [-75.713, 45.231],\n            [-75.722, 45.234],\n            [-75.725, 45.24],\n            [-75.722, 45.247],\n            [-75.713, 45.249]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.698, 45.587],\n            [-76.689, 45.584],\n            [-76.685, 45.578],\n            [-76.689, 45.571],\n            [-76.698, 45.569],\n            [-76.707, 45.571],\n            [-76.711, 45.578],\n            [-76.707, 45.584],\n            [-76.698, 45.587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.72, 45.336],\n            [-75.711, 45.333],\n            [-75.707, 45.327],\n            [-75.711, 45.321],\n            [-75.72, 45.318],\n            [-75.729, 45.321],\n            [-75.733, 45.327],\n            [-75.729, 45.333],\n            [-75.72, 45.336]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.881, 45.567],\n            [-74.872, 45.565],\n            [-74.868, 45.558],\n            [-74.872, 45.552],\n            [-74.881, 45.549],\n            [-74.89, 45.552],\n            [-74.894, 45.558],\n            [-74.89, 45.565],\n            [-74.881, 45.567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.904, 45.561],\n            [-74.895, 45.558],\n            [-74.891, 45.552],\n            [-74.895, 45.545],\n            [-74.904, 45.543],\n            [-74.913, 45.545],\n            [-74.917, 45.552],\n            [-74.913, 45.558],\n            [-74.904, 45.561]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.197, 45.234],\n            [-76.188, 45.232],\n            [-76.184, 45.225],\n            [-76.188, 45.219],\n            [-76.197, 45.216],\n            [-76.206, 45.219],\n            [-76.21, 45.225],\n            [-76.206, 45.232],\n            [-76.197, 45.234]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.186, 45.243],\n            [-76.177, 45.24],\n            [-76.173, 45.234],\n            [-76.177, 45.227],\n            [-76.186, 45.225],\n            [-76.195, 45.227],\n            [-76.198, 45.234],\n            [-76.195, 45.24],\n            [-76.186, 45.243]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.346, 45.34],\n            [-75.337, 45.337],\n            [-75.333, 45.331],\n            [-75.337, 45.324],\n            [-75.346, 45.322],\n            [-75.355, 45.324],\n            [-75.359, 45.331],\n            [-75.355, 45.337],\n            [-75.346, 45.34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.95, 45.285],\n            [-75.941, 45.282],\n            [-75.937, 45.276],\n            [-75.941, 45.269],\n            [-75.95, 45.267],\n            [-75.959, 45.269],\n            [-75.963, 45.276],\n            [-75.959, 45.282],\n            [-75.95, 45.285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.23, 45.112],\n            [-75.221, 45.109],\n            [-75.218, 45.103],\n            [-75.221, 45.097],\n            [-75.23, 45.094],\n            [-75.239, 45.097],\n            [-75.243, 45.103],\n            [-75.239, 45.109],\n            [-75.23, 45.112]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.969, 45.392],\n            [-75.96, 45.389],\n            [-75.957, 45.383],\n            [-75.96, 45.377],\n            [-75.969, 45.374],\n            [-75.979, 45.377],\n            [-75.982, 45.383],\n            [-75.979, 45.389],\n            [-75.969, 45.392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.077, 45.155],\n            [-75.068, 45.153],\n            [-75.065, 45.146],\n            [-75.068, 45.14],\n            [-75.077, 45.137],\n            [-75.086, 45.14],\n            [-75.09, 45.146],\n            [-75.086, 45.153],\n            [-75.077, 45.155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.205, 45.23],\n            [-76.196, 45.227],\n            [-76.192, 45.221],\n            [-76.196, 45.214],\n            [-76.205, 45.212],\n            [-76.214, 45.214],\n            [-76.217, 45.221],\n            [-76.214, 45.227],\n            [-76.205, 45.23]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.938, 44.844],\n            [-75.929, 44.841],\n            [-75.925, 44.835],\n            [-75.929, 44.828],\n            [-75.938, 44.826],\n            [-75.947, 44.828],\n            [-75.95, 44.835],\n            [-75.947, 44.841],\n            [-75.938, 44.844]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.252, 45.339],\n            [-75.243, 45.336],\n            [-75.239, 45.33],\n            [-75.243, 45.323],\n            [-75.252, 45.321],\n            [-75.261, 45.323],\n            [-75.265, 45.33],\n            [-75.261, 45.336],\n            [-75.252, 45.339]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.896, 45.349],\n            [-74.887, 45.347],\n            [-74.884, 45.34],\n            [-74.887, 45.334],\n            [-74.896, 45.331],\n            [-74.905, 45.334],\n            [-74.909, 45.34],\n            [-74.905, 45.347],\n            [-74.896, 45.349]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.081, 45.315],\n            [-75.072, 45.313],\n            [-75.068, 45.306],\n            [-75.072, 45.3],\n            [-75.081, 45.297],\n            [-75.09, 45.3],\n            [-75.094, 45.306],\n            [-75.09, 45.313],\n            [-75.081, 45.315]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.679, 44.975],\n            [-75.67, 44.972],\n            [-75.666, 44.966],\n            [-75.67, 44.959],\n            [-75.679, 44.957],\n            [-75.688, 44.959],\n            [-75.691, 44.966],\n            [-75.688, 44.972],\n            [-75.679, 44.975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.141, 44.858],\n            [-76.132, 44.856],\n            [-76.129, 44.849],\n            [-76.132, 44.843],\n            [-76.141, 44.84],\n            [-76.15, 44.843],\n            [-76.154, 44.849],\n            [-76.15, 44.856],\n            [-76.141, 44.858]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.249, 45.568],\n            [-75.24, 45.565],\n            [-75.236, 45.559],\n            [-75.24, 45.553],\n            [-75.249, 45.55],\n            [-75.258, 45.553],\n            [-75.262, 45.559],\n            [-75.258, 45.565],\n            [-75.249, 45.568]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.344, 45.451],\n            [-75.335, 45.448],\n            [-75.332, 45.442],\n            [-75.335, 45.435],\n            [-75.344, 45.433],\n            [-75.353, 45.435],\n            [-75.357, 45.442],\n            [-75.353, 45.448],\n            [-75.344, 45.451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.423, 45.43],\n            [-75.414, 45.428],\n            [-75.41, 45.421],\n            [-75.414, 45.415],\n            [-75.423, 45.412],\n            [-75.432, 45.415],\n            [-75.436, 45.421],\n            [-75.432, 45.428],\n            [-75.423, 45.43]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.089, 45.324],\n            [-75.079, 45.321],\n            [-75.076, 45.315],\n            [-75.079, 45.308],\n            [-75.089, 45.306],\n            [-75.098, 45.308],\n            [-75.101, 45.315],\n            [-75.098, 45.321],\n            [-75.089, 45.324]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.079, 45.308],\n            [-75.07, 45.306],\n            [-75.066, 45.299],\n            [-75.07, 45.293],\n            [-75.079, 45.29],\n            [-75.088, 45.293],\n            [-75.092, 45.299],\n            [-75.088, 45.306],\n            [-75.079, 45.308]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.291, 45.343],\n            [-76.282, 45.34],\n            [-76.278, 45.334],\n            [-76.282, 45.327],\n            [-76.291, 45.325],\n            [-76.3, 45.327],\n            [-76.303, 45.334],\n            [-76.3, 45.34],\n            [-76.291, 45.343]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.032, 44.915],\n            [-76.023, 44.913],\n            [-76.019, 44.906],\n            [-76.023, 44.9],\n            [-76.032, 44.897],\n            [-76.041, 44.9],\n            [-76.045, 44.906],\n            [-76.041, 44.913],\n            [-76.032, 44.915]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.491, 45.468],\n            [-75.482, 45.466],\n            [-75.478, 45.459],\n            [-75.482, 45.453],\n            [-75.491, 45.45],\n            [-75.5, 45.453],\n            [-75.504, 45.459],\n            [-75.5, 45.466],\n            [-75.491, 45.468]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.244, 45.327],\n            [-75.235, 45.325],\n            [-75.231, 45.318],\n            [-75.235, 45.312],\n            [-75.244, 45.309],\n            [-75.253, 45.312],\n            [-75.257, 45.318],\n            [-75.253, 45.325],\n            [-75.244, 45.327]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.9, 45.356],\n            [-74.891, 45.353],\n            [-74.887, 45.347],\n            [-74.891, 45.341],\n            [-74.9, 45.338],\n            [-74.909, 45.341],\n            [-74.913, 45.347],\n            [-74.909, 45.353],\n            [-74.9, 45.356]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.074, 45.495],\n            [-76.065, 45.493],\n            [-76.061, 45.486],\n            [-76.065, 45.48],\n            [-76.074, 45.477],\n            [-76.083, 45.48],\n            [-76.086, 45.486],\n            [-76.083, 45.493],\n            [-76.074, 45.495]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.121, 45.141],\n            [-76.112, 45.139],\n            [-76.108, 45.132],\n            [-76.112, 45.126],\n            [-76.121, 45.123],\n            [-76.13, 45.126],\n            [-76.134, 45.132],\n            [-76.13, 45.139],\n            [-76.121, 45.141]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.458, 44.995],\n            [-75.449, 44.992],\n            [-75.445, 44.986],\n            [-75.449, 44.98],\n            [-75.458, 44.977],\n            [-75.467, 44.98],\n            [-75.471, 44.986],\n            [-75.467, 44.992],\n            [-75.458, 44.995]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.377, 45.097],\n            [-75.368, 45.095],\n            [-75.365, 45.088],\n            [-75.368, 45.082],\n            [-75.377, 45.079],\n            [-75.386, 45.082],\n            [-75.39, 45.088],\n            [-75.386, 45.095],\n            [-75.377, 45.097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.597, 45.334],\n            [-75.588, 45.331],\n            [-75.584, 45.325],\n            [-75.588, 45.318],\n            [-75.597, 45.316],\n            [-75.606, 45.318],\n            [-75.61, 45.325],\n            [-75.606, 45.331],\n            [-75.597, 45.334]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.677, 45.398],\n            [-75.668, 45.395],\n            [-75.664, 45.389],\n            [-75.668, 45.382],\n            [-75.677, 45.38],\n            [-75.686, 45.382],\n            [-75.69, 45.389],\n            [-75.686, 45.395],\n            [-75.677, 45.398]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.65, 45.454],\n            [-75.641, 45.452],\n            [-75.637, 45.445],\n            [-75.641, 45.439],\n            [-75.65, 45.436],\n            [-75.659, 45.439],\n            [-75.662, 45.445],\n            [-75.659, 45.452],\n            [-75.65, 45.454]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.461, 45.169],\n            [-75.452, 45.166],\n            [-75.448, 45.16],\n            [-75.452, 45.153],\n            [-75.461, 45.151],\n            [-75.47, 45.153],\n            [-75.474, 45.16],\n            [-75.47, 45.166],\n            [-75.461, 45.169]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.836, 45.361],\n            [-75.826, 45.359],\n            [-75.823, 45.352],\n            [-75.826, 45.346],\n            [-75.836, 45.343],\n            [-75.845, 45.346],\n            [-75.848, 45.352],\n            [-75.845, 45.359],\n            [-75.836, 45.361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.734, 45.372],\n            [-75.725, 45.37],\n            [-75.721, 45.363],\n            [-75.725, 45.357],\n            [-75.734, 45.354],\n            [-75.743, 45.357],\n            [-75.747, 45.363],\n            [-75.743, 45.37],\n            [-75.734, 45.372]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.836, 45.33],\n            [-75.827, 45.328],\n            [-75.823, 45.321],\n            [-75.827, 45.315],\n            [-75.836, 45.312],\n            [-75.845, 45.315],\n            [-75.849, 45.321],\n            [-75.845, 45.328],\n            [-75.836, 45.33]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.83, 45.332],\n            [-75.821, 45.33],\n            [-75.817, 45.323],\n            [-75.821, 45.317],\n            [-75.83, 45.314],\n            [-75.839, 45.317],\n            [-75.842, 45.323],\n            [-75.839, 45.33],\n            [-75.83, 45.332]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.775, 45.356],\n            [-75.766, 45.353],\n            [-75.762, 45.347],\n            [-75.766, 45.34],\n            [-75.775, 45.338],\n            [-75.784, 45.34],\n            [-75.788, 45.347],\n            [-75.784, 45.353],\n            [-75.775, 45.356]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.775, 45.356],\n            [-75.766, 45.353],\n            [-75.762, 45.347],\n            [-75.766, 45.341],\n            [-75.775, 45.338],\n            [-75.784, 45.341],\n            [-75.787, 45.347],\n            [-75.784, 45.353],\n            [-75.775, 45.356]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.455, 45.378],\n            [-75.446, 45.375],\n            [-75.443, 45.369],\n            [-75.446, 45.363],\n            [-75.455, 45.36],\n            [-75.464, 45.363],\n            [-75.468, 45.369],\n            [-75.464, 45.375],\n            [-75.455, 45.378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.245, 45.419],\n            [-75.236, 45.417],\n            [-75.232, 45.41],\n            [-75.236, 45.404],\n            [-75.245, 45.401],\n            [-75.254, 45.404],\n            [-75.258, 45.41],\n            [-75.254, 45.417],\n            [-75.245, 45.419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.75, 45.278],\n            [-75.741, 45.275],\n            [-75.738, 45.269],\n            [-75.741, 45.262],\n            [-75.75, 45.26],\n            [-75.759, 45.262],\n            [-75.763, 45.269],\n            [-75.759, 45.275],\n            [-75.75, 45.278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.249, 45.069],\n            [-76.24, 45.067],\n            [-76.236, 45.06],\n            [-76.24, 45.054],\n            [-76.249, 45.051],\n            [-76.258, 45.054],\n            [-76.262, 45.06],\n            [-76.258, 45.067],\n            [-76.249, 45.069]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.571, 45.29],\n            [-75.562, 45.288],\n            [-75.558, 45.281],\n            [-75.562, 45.275],\n            [-75.571, 45.272],\n            [-75.58, 45.275],\n            [-75.584, 45.281],\n            [-75.58, 45.288],\n            [-75.571, 45.29]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.61, 45.153],\n            [-75.601, 45.151],\n            [-75.597, 45.144],\n            [-75.601, 45.138],\n            [-75.61, 45.135],\n            [-75.619, 45.138],\n            [-75.622, 45.144],\n            [-75.619, 45.151],\n            [-75.61, 45.153]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.721, 45.339],\n            [-75.712, 45.336],\n            [-75.708, 45.33],\n            [-75.712, 45.323],\n            [-75.721, 45.321],\n            [-75.73, 45.323],\n            [-75.734, 45.33],\n            [-75.73, 45.336],\n            [-75.721, 45.339]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.994, 45.503],\n            [-74.985, 45.501],\n            [-74.981, 45.494],\n            [-74.985, 45.488],\n            [-74.994, 45.485],\n            [-75.003, 45.488],\n            [-75.007, 45.494],\n            [-75.003, 45.501],\n            [-74.994, 45.503]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.606, 45.445],\n            [-75.596, 45.442],\n            [-75.593, 45.436],\n            [-75.596, 45.43],\n            [-75.606, 45.427],\n            [-75.615, 45.43],\n            [-75.618, 45.436],\n            [-75.615, 45.442],\n            [-75.606, 45.445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.643, 45.363],\n            [-75.634, 45.361],\n            [-75.63, 45.354],\n            [-75.634, 45.348],\n            [-75.643, 45.345],\n            [-75.652, 45.348],\n            [-75.656, 45.354],\n            [-75.652, 45.361],\n            [-75.643, 45.363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.9, 45.306],\n            [-75.891, 45.304],\n            [-75.887, 45.297],\n            [-75.891, 45.291],\n            [-75.9, 45.288],\n            [-75.909, 45.291],\n            [-75.912, 45.297],\n            [-75.909, 45.304],\n            [-75.9, 45.306]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.513, 45.487],\n            [-75.503, 45.485],\n            [-75.5, 45.478],\n            [-75.503, 45.472],\n            [-75.513, 45.469],\n            [-75.522, 45.472],\n            [-75.525, 45.478],\n            [-75.522, 45.485],\n            [-75.513, 45.487]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.486, 45.606],\n            [-76.477, 45.603],\n            [-76.473, 45.597],\n            [-76.477, 45.59],\n            [-76.486, 45.588],\n            [-76.495, 45.59],\n            [-76.499, 45.597],\n            [-76.495, 45.603],\n            [-76.486, 45.606]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.494, 45.609],\n            [-76.485, 45.606],\n            [-76.482, 45.6],\n            [-76.485, 45.594],\n            [-76.494, 45.591],\n            [-76.503, 45.594],\n            [-76.507, 45.6],\n            [-76.503, 45.606],\n            [-76.494, 45.609]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.075, 45.472],\n            [-76.066, 45.469],\n            [-76.062, 45.463],\n            [-76.066, 45.456],\n            [-76.075, 45.454],\n            [-76.084, 45.456],\n            [-76.087, 45.463],\n            [-76.084, 45.469],\n            [-76.075, 45.472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.357, 45.02],\n            [-76.348, 45.017],\n            [-76.344, 45.011],\n            [-76.348, 45.004],\n            [-76.357, 45.002],\n            [-76.366, 45.004],\n            [-76.369, 45.011],\n            [-76.366, 45.017],\n            [-76.357, 45.02]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.836, 44.924],\n            [-75.827, 44.921],\n            [-75.824, 44.915],\n            [-75.827, 44.908],\n            [-75.836, 44.906],\n            [-75.845, 44.908],\n            [-75.849, 44.915],\n            [-75.845, 44.921],\n            [-75.836, 44.924]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.809, 45.422],\n            [-75.8, 45.419],\n            [-75.796, 45.413],\n            [-75.8, 45.406],\n            [-75.809, 45.404],\n            [-75.818, 45.406],\n            [-75.822, 45.413],\n            [-75.818, 45.419],\n            [-75.809, 45.422]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.839, 45.42],\n            [-75.83, 45.417],\n            [-75.826, 45.411],\n            [-75.83, 45.405],\n            [-75.839, 45.402],\n            [-75.848, 45.405],\n            [-75.851, 45.411],\n            [-75.848, 45.417],\n            [-75.839, 45.42]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.857, 45.418],\n            [-75.848, 45.415],\n            [-75.844, 45.409],\n            [-75.848, 45.402],\n            [-75.857, 45.4],\n            [-75.866, 45.402],\n            [-75.87, 45.409],\n            [-75.866, 45.415],\n            [-75.857, 45.418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.83, 45.405],\n            [-75.821, 45.402],\n            [-75.817, 45.396],\n            [-75.821, 45.39],\n            [-75.83, 45.387],\n            [-75.839, 45.39],\n            [-75.843, 45.396],\n            [-75.839, 45.402],\n            [-75.83, 45.405]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.732, 45.455],\n            [-75.723, 45.453],\n            [-75.719, 45.446],\n            [-75.723, 45.44],\n            [-75.732, 45.437],\n            [-75.741, 45.44],\n            [-75.745, 45.446],\n            [-75.741, 45.453],\n            [-75.732, 45.455]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.738, 45.477],\n            [-75.729, 45.475],\n            [-75.725, 45.468],\n            [-75.729, 45.462],\n            [-75.738, 45.459],\n            [-75.747, 45.462],\n            [-75.75, 45.468],\n            [-75.747, 45.475],\n            [-75.738, 45.477]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.188, 45.401],\n            [-76.179, 45.398],\n            [-76.176, 45.392],\n            [-76.179, 45.385],\n            [-76.188, 45.383],\n            [-76.198, 45.385],\n            [-76.201, 45.392],\n            [-76.198, 45.398],\n            [-76.188, 45.401]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.36, 44.949],\n            [-75.351, 44.946],\n            [-75.347, 44.94],\n            [-75.351, 44.933],\n            [-75.36, 44.931],\n            [-75.369, 44.933],\n            [-75.372, 44.94],\n            [-75.369, 44.946],\n            [-75.36, 44.949]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.481, 45.501],\n            [-75.472, 45.498],\n            [-75.468, 45.492],\n            [-75.472, 45.486],\n            [-75.481, 45.483],\n            [-75.49, 45.486],\n            [-75.494, 45.492],\n            [-75.49, 45.498],\n            [-75.481, 45.501]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.834, 45.404],\n            [-75.825, 45.402],\n            [-75.821, 45.395],\n            [-75.825, 45.389],\n            [-75.834, 45.386],\n            [-75.843, 45.389],\n            [-75.847, 45.395],\n            [-75.843, 45.402],\n            [-75.834, 45.404]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.454, 45.48],\n            [-75.445, 45.477],\n            [-75.441, 45.471],\n            [-75.445, 45.465],\n            [-75.454, 45.462],\n            [-75.463, 45.465],\n            [-75.467, 45.471],\n            [-75.463, 45.477],\n            [-75.454, 45.48]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.853, 45.409],\n            [-75.844, 45.407],\n            [-75.84, 45.4],\n            [-75.844, 45.394],\n            [-75.853, 45.391],\n            [-75.862, 45.394],\n            [-75.866, 45.4],\n            [-75.862, 45.407],\n            [-75.853, 45.409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.87, 45.571],\n            [-74.861, 45.568],\n            [-74.857, 45.562],\n            [-74.861, 45.556],\n            [-74.87, 45.553],\n            [-74.879, 45.556],\n            [-74.883, 45.562],\n            [-74.879, 45.568],\n            [-74.87, 45.571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.808, 45.395],\n            [-75.799, 45.392],\n            [-75.795, 45.386],\n            [-75.799, 45.38],\n            [-75.808, 45.377],\n            [-75.817, 45.38],\n            [-75.821, 45.386],\n            [-75.817, 45.392],\n            [-75.808, 45.395]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.73, 45.684],\n            [-75.721, 45.681],\n            [-75.717, 45.675],\n            [-75.721, 45.668],\n            [-75.73, 45.666],\n            [-75.739, 45.668],\n            [-75.743, 45.675],\n            [-75.739, 45.681],\n            [-75.73, 45.684]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.783, 45.58],\n            [-75.774, 45.577],\n            [-75.77, 45.571],\n            [-75.774, 45.564],\n            [-75.783, 45.562],\n            [-75.792, 45.564],\n            [-75.795, 45.571],\n            [-75.792, 45.577],\n            [-75.783, 45.58]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.724, 45.691],\n            [-75.715, 45.689],\n            [-75.711, 45.682],\n            [-75.715, 45.676],\n            [-75.724, 45.673],\n            [-75.733, 45.676],\n            [-75.737, 45.682],\n            [-75.733, 45.689],\n            [-75.724, 45.691]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.912, 45.559],\n            [-74.902, 45.556],\n            [-74.899, 45.55],\n            [-74.902, 45.543],\n            [-74.912, 45.541],\n            [-74.921, 45.543],\n            [-74.924, 45.55],\n            [-74.921, 45.556],\n            [-74.912, 45.559]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.347, 45.34],\n            [-75.338, 45.338],\n            [-75.334, 45.331],\n            [-75.338, 45.325],\n            [-75.347, 45.322],\n            [-75.356, 45.325],\n            [-75.359, 45.331],\n            [-75.356, 45.338],\n            [-75.347, 45.34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.989, 45.55],\n            [-74.98, 45.547],\n            [-74.977, 45.541],\n            [-74.98, 45.535],\n            [-74.989, 45.532],\n            [-74.998, 45.535],\n            [-75.002, 45.541],\n            [-74.998, 45.547],\n            [-74.989, 45.55]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.44, 45.349],\n            [-75.431, 45.346],\n            [-75.427, 45.34],\n            [-75.431, 45.334],\n            [-75.44, 45.331],\n            [-75.449, 45.334],\n            [-75.453, 45.34],\n            [-75.449, 45.346],\n            [-75.44, 45.349]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.734, 45.457],\n            [-75.725, 45.455],\n            [-75.721, 45.448],\n            [-75.725, 45.442],\n            [-75.734, 45.439],\n            [-75.743, 45.442],\n            [-75.746, 45.448],\n            [-75.743, 45.455],\n            [-75.734, 45.457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.741, 45.469],\n            [-75.732, 45.466],\n            [-75.728, 45.46],\n            [-75.732, 45.453],\n            [-75.741, 45.451],\n            [-75.75, 45.453],\n            [-75.754, 45.46],\n            [-75.75, 45.466],\n            [-75.741, 45.469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.742, 45.466],\n            [-75.733, 45.464],\n            [-75.729, 45.457],\n            [-75.733, 45.451],\n            [-75.742, 45.448],\n            [-75.751, 45.451],\n            [-75.755, 45.457],\n            [-75.751, 45.464],\n            [-75.742, 45.466]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.744, 45.456],\n            [-75.735, 45.453],\n            [-75.731, 45.447],\n            [-75.735, 45.441],\n            [-75.744, 45.438],\n            [-75.753, 45.441],\n            [-75.757, 45.447],\n            [-75.753, 45.453],\n            [-75.744, 45.456]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.766, 45.445],\n            [-75.757, 45.443],\n            [-75.753, 45.436],\n            [-75.757, 45.43],\n            [-75.766, 45.427],\n            [-75.775, 45.43],\n            [-75.779, 45.436],\n            [-75.775, 45.443],\n            [-75.766, 45.445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.699, 45.471],\n            [-75.69, 45.468],\n            [-75.687, 45.462],\n            [-75.69, 45.455],\n            [-75.699, 45.453],\n            [-75.708, 45.455],\n            [-75.712, 45.462],\n            [-75.708, 45.468],\n            [-75.699, 45.471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.708, 45.484],\n            [-75.699, 45.482],\n            [-75.695, 45.475],\n            [-75.699, 45.469],\n            [-75.708, 45.467],\n            [-75.717, 45.469],\n            [-75.721, 45.475],\n            [-75.717, 45.482],\n            [-75.708, 45.484]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.719, 45.498],\n            [-75.71, 45.495],\n            [-75.706, 45.489],\n            [-75.71, 45.482],\n            [-75.719, 45.48],\n            [-75.728, 45.482],\n            [-75.732, 45.489],\n            [-75.728, 45.495],\n            [-75.719, 45.498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.676, 45.499],\n            [-75.667, 45.496],\n            [-75.663, 45.49],\n            [-75.667, 45.484],\n            [-75.676, 45.481],\n            [-75.685, 45.484],\n            [-75.689, 45.49],\n            [-75.685, 45.496],\n            [-75.676, 45.499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.651, 45.493],\n            [-75.642, 45.49],\n            [-75.638, 45.484],\n            [-75.642, 45.478],\n            [-75.651, 45.475],\n            [-75.66, 45.478],\n            [-75.663, 45.484],\n            [-75.66, 45.49],\n            [-75.651, 45.493]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.74, 45.482],\n            [-75.731, 45.48],\n            [-75.727, 45.473],\n            [-75.731, 45.467],\n            [-75.74, 45.464],\n            [-75.749, 45.467],\n            [-75.753, 45.473],\n            [-75.749, 45.48],\n            [-75.74, 45.482]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.738, 45.479],\n            [-75.729, 45.476],\n            [-75.725, 45.47],\n            [-75.729, 45.464],\n            [-75.738, 45.461],\n            [-75.747, 45.464],\n            [-75.751, 45.47],\n            [-75.747, 45.476],\n            [-75.738, 45.479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.809, 45.423],\n            [-75.8, 45.421],\n            [-75.796, 45.414],\n            [-75.8, 45.408],\n            [-75.809, 45.405],\n            [-75.818, 45.408],\n            [-75.822, 45.414],\n            [-75.818, 45.421],\n            [-75.809, 45.423]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.421, 45.595],\n            [-75.412, 45.593],\n            [-75.408, 45.586],\n            [-75.412, 45.58],\n            [-75.421, 45.577],\n            [-75.43, 45.58],\n            [-75.434, 45.586],\n            [-75.43, 45.593],\n            [-75.421, 45.595]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.832, 45.405],\n            [-75.823, 45.402],\n            [-75.82, 45.396],\n            [-75.823, 45.39],\n            [-75.832, 45.387],\n            [-75.841, 45.39],\n            [-75.845, 45.396],\n            [-75.841, 45.402],\n            [-75.832, 45.405]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.722, 45.442],\n            [-75.713, 45.439],\n            [-75.709, 45.433],\n            [-75.713, 45.426],\n            [-75.722, 45.424],\n            [-75.731, 45.426],\n            [-75.735, 45.433],\n            [-75.731, 45.439],\n            [-75.722, 45.442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.689, 45.498],\n            [-75.68, 45.496],\n            [-75.676, 45.489],\n            [-75.68, 45.483],\n            [-75.689, 45.48],\n            [-75.698, 45.483],\n            [-75.702, 45.489],\n            [-75.698, 45.496],\n            [-75.689, 45.498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.713, 45.497],\n            [-75.704, 45.495],\n            [-75.7, 45.488],\n            [-75.704, 45.482],\n            [-75.713, 45.479],\n            [-75.722, 45.482],\n            [-75.726, 45.488],\n            [-75.722, 45.495],\n            [-75.713, 45.497]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.642, 45.51],\n            [-75.633, 45.508],\n            [-75.629, 45.501],\n            [-75.633, 45.495],\n            [-75.642, 45.492],\n            [-75.651, 45.495],\n            [-75.655, 45.501],\n            [-75.651, 45.508],\n            [-75.642, 45.51]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.702, 45.487],\n            [-75.692, 45.484],\n            [-75.689, 45.478],\n            [-75.692, 45.472],\n            [-75.702, 45.469],\n            [-75.711, 45.472],\n            [-75.714, 45.478],\n            [-75.711, 45.484],\n            [-75.702, 45.487]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.729, 45.451],\n            [-75.72, 45.448],\n            [-75.716, 45.442],\n            [-75.72, 45.435],\n            [-75.729, 45.433],\n            [-75.738, 45.435],\n            [-75.742, 45.442],\n            [-75.738, 45.448],\n            [-75.729, 45.451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.726, 45.438],\n            [-75.717, 45.435],\n            [-75.713, 45.429],\n            [-75.717, 45.423],\n            [-75.726, 45.42],\n            [-75.735, 45.423],\n            [-75.739, 45.429],\n            [-75.735, 45.435],\n            [-75.726, 45.438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.747, 45.471],\n            [-75.737, 45.469],\n            [-75.734, 45.462],\n            [-75.737, 45.456],\n            [-75.747, 45.453],\n            [-75.756, 45.456],\n            [-75.759, 45.462],\n            [-75.756, 45.469],\n            [-75.747, 45.471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.639, 45.493],\n            [-75.63, 45.491],\n            [-75.626, 45.484],\n            [-75.63, 45.478],\n            [-75.639, 45.475],\n            [-75.648, 45.478],\n            [-75.652, 45.484],\n            [-75.648, 45.491],\n            [-75.639, 45.493]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.815, 45.451],\n            [-75.806, 45.449],\n            [-75.803, 45.442],\n            [-75.806, 45.436],\n            [-75.815, 45.433],\n            [-75.824, 45.436],\n            [-75.828, 45.442],\n            [-75.824, 45.449],\n            [-75.815, 45.451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.496, 45.237],\n            [-75.487, 45.234],\n            [-75.483, 45.228],\n            [-75.487, 45.221],\n            [-75.496, 45.219],\n            [-75.505, 45.221],\n            [-75.509, 45.228],\n            [-75.505, 45.234],\n            [-75.496, 45.237]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.746, 45.431],\n            [-75.737, 45.428],\n            [-75.733, 45.422],\n            [-75.737, 45.416],\n            [-75.746, 45.413],\n            [-75.755, 45.416],\n            [-75.759, 45.422],\n            [-75.755, 45.428],\n            [-75.746, 45.431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.228, 45.3],\n            [-75.219, 45.297],\n            [-75.216, 45.291],\n            [-75.219, 45.284],\n            [-75.228, 45.282],\n            [-75.237, 45.284],\n            [-75.241, 45.291],\n            [-75.237, 45.297],\n            [-75.228, 45.3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.229, 45.299],\n            [-75.22, 45.297],\n            [-75.216, 45.29],\n            [-75.22, 45.284],\n            [-75.229, 45.281],\n            [-75.238, 45.284],\n            [-75.242, 45.29],\n            [-75.238, 45.297],\n            [-75.229, 45.299]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.412, 44.927],\n            [-75.403, 44.924],\n            [-75.399, 44.918],\n            [-75.403, 44.911],\n            [-75.412, 44.909],\n            [-75.421, 44.911],\n            [-75.425, 44.918],\n            [-75.421, 44.924],\n            [-75.412, 44.927]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.407, 45.584],\n            [-75.398, 45.582],\n            [-75.394, 45.575],\n            [-75.398, 45.569],\n            [-75.407, 45.566],\n            [-75.416, 45.569],\n            [-75.42, 45.575],\n            [-75.416, 45.582],\n            [-75.407, 45.584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.422, 45.565],\n            [-75.413, 45.563],\n            [-75.409, 45.556],\n            [-75.413, 45.55],\n            [-75.422, 45.547],\n            [-75.431, 45.55],\n            [-75.435, 45.556],\n            [-75.431, 45.563],\n            [-75.422, 45.565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.696, 45.42],\n            [-75.686, 45.418],\n            [-75.683, 45.411],\n            [-75.686, 45.405],\n            [-75.696, 45.403],\n            [-75.705, 45.405],\n            [-75.708, 45.411],\n            [-75.705, 45.418],\n            [-75.696, 45.42]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.7, 45.47],\n            [-75.691, 45.468],\n            [-75.687, 45.461],\n            [-75.691, 45.455],\n            [-75.7, 45.452],\n            [-75.709, 45.455],\n            [-75.713, 45.461],\n            [-75.709, 45.468],\n            [-75.7, 45.47]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.344, 45.442],\n            [-76.335, 45.44],\n            [-76.331, 45.433],\n            [-76.335, 45.427],\n            [-76.344, 45.424],\n            [-76.353, 45.427],\n            [-76.356, 45.433],\n            [-76.353, 45.44],\n            [-76.344, 45.442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.326, 45.201],\n            [-76.317, 45.198],\n            [-76.314, 45.192],\n            [-76.317, 45.186],\n            [-76.326, 45.183],\n            [-76.335, 45.186],\n            [-76.339, 45.192],\n            [-76.335, 45.198],\n            [-76.326, 45.201]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.106, 45.116],\n            [-76.097, 45.113],\n            [-76.093, 45.107],\n            [-76.097, 45.1],\n            [-76.106, 45.098],\n            [-76.115, 45.1],\n            [-76.118, 45.107],\n            [-76.115, 45.113],\n            [-76.106, 45.116]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.931, 45.692],\n            [-75.922, 45.689],\n            [-75.918, 45.683],\n            [-75.922, 45.676],\n            [-75.931, 45.674],\n            [-75.94, 45.676],\n            [-75.944, 45.683],\n            [-75.94, 45.689],\n            [-75.931, 45.692]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.645, 45.493],\n            [-75.636, 45.491],\n            [-75.632, 45.484],\n            [-75.636, 45.478],\n            [-75.645, 45.475],\n            [-75.654, 45.478],\n            [-75.658, 45.484],\n            [-75.654, 45.491],\n            [-75.645, 45.493]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.702, 45.49],\n            [-75.693, 45.488],\n            [-75.689, 45.481],\n            [-75.693, 45.475],\n            [-75.702, 45.472],\n            [-75.711, 45.475],\n            [-75.715, 45.481],\n            [-75.711, 45.488],\n            [-75.702, 45.49]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.772, 45.484],\n            [-75.763, 45.481],\n            [-75.759, 45.475],\n            [-75.763, 45.468],\n            [-75.772, 45.466],\n            [-75.781, 45.468],\n            [-75.785, 45.475],\n            [-75.781, 45.481],\n            [-75.772, 45.484]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.491, 45.607],\n            [-76.482, 45.605],\n            [-76.478, 45.598],\n            [-76.482, 45.592],\n            [-76.491, 45.589],\n            [-76.5, 45.592],\n            [-76.504, 45.598],\n            [-76.5, 45.605],\n            [-76.491, 45.607]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.73, 45.414],\n            [-75.721, 45.412],\n            [-75.717, 45.405],\n            [-75.721, 45.399],\n            [-75.73, 45.396],\n            [-75.739, 45.399],\n            [-75.743, 45.405],\n            [-75.739, 45.412],\n            [-75.73, 45.414]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.753, 45.402],\n            [-75.744, 45.399],\n            [-75.74, 45.393],\n            [-75.744, 45.386],\n            [-75.753, 45.384],\n            [-75.762, 45.386],\n            [-75.766, 45.393],\n            [-75.762, 45.399],\n            [-75.753, 45.402]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.841, 45.202],\n            [-75.832, 45.199],\n            [-75.828, 45.193],\n            [-75.832, 45.187],\n            [-75.841, 45.184],\n            [-75.85, 45.187],\n            [-75.854, 45.193],\n            [-75.85, 45.199],\n            [-75.841, 45.202]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.823, 45.214],\n            [-75.814, 45.211],\n            [-75.81, 45.205],\n            [-75.814, 45.198],\n            [-75.823, 45.196],\n            [-75.832, 45.198],\n            [-75.836, 45.205],\n            [-75.832, 45.211],\n            [-75.823, 45.214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.228, 45.248],\n            [-76.219, 45.246],\n            [-76.216, 45.239],\n            [-76.219, 45.233],\n            [-76.228, 45.23],\n            [-76.237, 45.233],\n            [-76.241, 45.239],\n            [-76.237, 45.246],\n            [-76.228, 45.248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.188, 45.217],\n            [-76.179, 45.214],\n            [-76.175, 45.208],\n            [-76.179, 45.201],\n            [-76.188, 45.199],\n            [-76.197, 45.201],\n            [-76.201, 45.208],\n            [-76.197, 45.214],\n            [-76.188, 45.217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.518, 45.25],\n            [-75.509, 45.248],\n            [-75.505, 45.241],\n            [-75.509, 45.235],\n            [-75.518, 45.232],\n            [-75.527, 45.235],\n            [-75.531, 45.241],\n            [-75.527, 45.248],\n            [-75.518, 45.25]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.807, 45.395],\n            [-75.798, 45.392],\n            [-75.795, 45.386],\n            [-75.798, 45.38],\n            [-75.807, 45.377],\n            [-75.816, 45.38],\n            [-75.82, 45.386],\n            [-75.816, 45.392],\n            [-75.807, 45.395]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.902, 45.385],\n            [-74.893, 45.382],\n            [-74.89, 45.376],\n            [-74.893, 45.369],\n            [-74.902, 45.367],\n            [-74.911, 45.369],\n            [-74.915, 45.376],\n            [-74.911, 45.382],\n            [-74.902, 45.385]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.761, 45.436],\n            [-75.752, 45.433],\n            [-75.749, 45.427],\n            [-75.752, 45.421],\n            [-75.761, 45.418],\n            [-75.77, 45.421],\n            [-75.774, 45.427],\n            [-75.77, 45.433],\n            [-75.761, 45.436]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.786, 45.453],\n            [-75.777, 45.45],\n            [-75.773, 45.444],\n            [-75.777, 45.437],\n            [-75.786, 45.435],\n            [-75.795, 45.437],\n            [-75.799, 45.444],\n            [-75.795, 45.45],\n            [-75.786, 45.453]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.763, 45.439],\n            [-75.754, 45.437],\n            [-75.75, 45.43],\n            [-75.754, 45.424],\n            [-75.763, 45.421],\n            [-75.772, 45.424],\n            [-75.776, 45.43],\n            [-75.772, 45.437],\n            [-75.763, 45.439]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.747, 45.497],\n            [-75.738, 45.495],\n            [-75.734, 45.488],\n            [-75.738, 45.482],\n            [-75.747, 45.479],\n            [-75.756, 45.482],\n            [-75.76, 45.488],\n            [-75.756, 45.495],\n            [-75.747, 45.497]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.711, 45.137],\n            [-75.702, 45.134],\n            [-75.699, 45.128],\n            [-75.702, 45.121],\n            [-75.711, 45.119],\n            [-75.72, 45.121],\n            [-75.724, 45.128],\n            [-75.72, 45.134],\n            [-75.711, 45.137]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.229, 45.11],\n            [-75.22, 45.108],\n            [-75.216, 45.101],\n            [-75.22, 45.095],\n            [-75.229, 45.092],\n            [-75.238, 45.095],\n            [-75.242, 45.101],\n            [-75.238, 45.108],\n            [-75.229, 45.11]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.491, 45.364],\n            [-76.482, 45.361],\n            [-76.478, 45.355],\n            [-76.482, 45.349],\n            [-76.491, 45.346],\n            [-76.5, 45.349],\n            [-76.504, 45.355],\n            [-76.5, 45.361],\n            [-76.491, 45.364]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.713, 45.455],\n            [-75.704, 45.453],\n            [-75.7, 45.446],\n            [-75.704, 45.44],\n            [-75.713, 45.437],\n            [-75.722, 45.44],\n            [-75.726, 45.446],\n            [-75.722, 45.453],\n            [-75.713, 45.455]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.752, 45.463],\n            [-75.743, 45.461],\n            [-75.739, 45.454],\n            [-75.743, 45.448],\n            [-75.752, 45.445],\n            [-75.761, 45.448],\n            [-75.765, 45.454],\n            [-75.761, 45.461],\n            [-75.752, 45.463]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.675, 45.491],\n            [-75.666, 45.489],\n            [-75.662, 45.482],\n            [-75.666, 45.476],\n            [-75.675, 45.473],\n            [-75.684, 45.476],\n            [-75.688, 45.482],\n            [-75.684, 45.489],\n            [-75.675, 45.491]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.492, 45.477],\n            [-75.483, 45.474],\n            [-75.479, 45.468],\n            [-75.483, 45.462],\n            [-75.492, 45.459],\n            [-75.501, 45.462],\n            [-75.504, 45.468],\n            [-75.501, 45.474],\n            [-75.492, 45.477]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.676, 45.514],\n            [-75.667, 45.512],\n            [-75.663, 45.505],\n            [-75.667, 45.499],\n            [-75.676, 45.496],\n            [-75.685, 45.499],\n            [-75.689, 45.505],\n            [-75.685, 45.512],\n            [-75.676, 45.514]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.291, 45.342],\n            [-76.282, 45.34],\n            [-76.278, 45.333],\n            [-76.282, 45.327],\n            [-76.291, 45.324],\n            [-76.3, 45.327],\n            [-76.303, 45.333],\n            [-76.3, 45.34],\n            [-76.291, 45.342]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.303, 45.277],\n            [-75.294, 45.274],\n            [-75.29, 45.268],\n            [-75.294, 45.261],\n            [-75.303, 45.259],\n            [-75.312, 45.261],\n            [-75.316, 45.268],\n            [-75.312, 45.274],\n            [-75.303, 45.277]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.629, 45.455],\n            [-75.62, 45.453],\n            [-75.616, 45.446],\n            [-75.62, 45.44],\n            [-75.629, 45.437],\n            [-75.638, 45.44],\n            [-75.642, 45.446],\n            [-75.638, 45.453],\n            [-75.629, 45.455]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.294, 45.279],\n            [-75.285, 45.276],\n            [-75.281, 45.27],\n            [-75.285, 45.263],\n            [-75.294, 45.261],\n            [-75.303, 45.263],\n            [-75.307, 45.27],\n            [-75.303, 45.276],\n            [-75.294, 45.279]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.245, 44.984],\n            [-75.236, 44.982],\n            [-75.232, 44.975],\n            [-75.236, 44.969],\n            [-75.245, 44.966],\n            [-75.254, 44.969],\n            [-75.257, 44.975],\n            [-75.254, 44.982],\n            [-75.245, 44.984]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.283, 45.417],\n            [-76.273, 45.415],\n            [-76.27, 45.408],\n            [-76.273, 45.402],\n            [-76.283, 45.399],\n            [-76.292, 45.402],\n            [-76.295, 45.408],\n            [-76.292, 45.415],\n            [-76.283, 45.417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.337, 45.439],\n            [-76.328, 45.437],\n            [-76.324, 45.43],\n            [-76.328, 45.424],\n            [-76.337, 45.421],\n            [-76.346, 45.424],\n            [-76.35, 45.43],\n            [-76.346, 45.437],\n            [-76.337, 45.439]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.059, 45.048],\n            [-76.05, 45.045],\n            [-76.047, 45.039],\n            [-76.05, 45.033],\n            [-76.059, 45.03],\n            [-76.068, 45.033],\n            [-76.072, 45.039],\n            [-76.068, 45.045],\n            [-76.059, 45.048]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.829, 45.21],\n            [-75.82, 45.207],\n            [-75.817, 45.201],\n            [-75.82, 45.194],\n            [-75.829, 45.192],\n            [-75.838, 45.194],\n            [-75.842, 45.201],\n            [-75.838, 45.207],\n            [-75.829, 45.21]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.956, 45.553],\n            [-74.946, 45.55],\n            [-74.943, 45.544],\n            [-74.946, 45.537],\n            [-74.956, 45.535],\n            [-74.965, 45.537],\n            [-74.968, 45.544],\n            [-74.965, 45.55],\n            [-74.956, 45.553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.596, 45.334],\n            [-75.587, 45.331],\n            [-75.583, 45.325],\n            [-75.587, 45.318],\n            [-75.596, 45.316],\n            [-75.605, 45.318],\n            [-75.609, 45.325],\n            [-75.605, 45.331],\n            [-75.596, 45.334]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.747, 45.498],\n            [-75.737, 45.495],\n            [-75.734, 45.489],\n            [-75.737, 45.482],\n            [-75.747, 45.48],\n            [-75.756, 45.482],\n            [-75.759, 45.489],\n            [-75.756, 45.495],\n            [-75.747, 45.498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.639, 45.437],\n            [-75.63, 45.435],\n            [-75.626, 45.428],\n            [-75.63, 45.422],\n            [-75.639, 45.419],\n            [-75.648, 45.422],\n            [-75.652, 45.428],\n            [-75.648, 45.435],\n            [-75.639, 45.437]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.12, 45.576],\n            [-75.111, 45.574],\n            [-75.108, 45.567],\n            [-75.111, 45.561],\n            [-75.12, 45.558],\n            [-75.129, 45.561],\n            [-75.133, 45.567],\n            [-75.129, 45.574],\n            [-75.12, 45.576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.41, 45.526],\n            [-75.401, 45.523],\n            [-75.397, 45.517],\n            [-75.401, 45.51],\n            [-75.41, 45.508],\n            [-75.419, 45.51],\n            [-75.423, 45.517],\n            [-75.419, 45.523],\n            [-75.41, 45.526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.51, 45.448],\n            [-76.501, 45.445],\n            [-76.497, 45.439],\n            [-76.501, 45.432],\n            [-76.51, 45.43],\n            [-76.519, 45.432],\n            [-76.523, 45.439],\n            [-76.519, 45.445],\n            [-76.51, 45.448]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.672, 45.471],\n            [-76.663, 45.469],\n            [-76.659, 45.462],\n            [-76.663, 45.456],\n            [-76.672, 45.454],\n            [-76.681, 45.456],\n            [-76.685, 45.462],\n            [-76.681, 45.469],\n            [-76.672, 45.471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.754, 45.386],\n            [-75.745, 45.384],\n            [-75.741, 45.377],\n            [-75.745, 45.371],\n            [-75.754, 45.368],\n            [-75.763, 45.371],\n            [-75.767, 45.377],\n            [-75.763, 45.384],\n            [-75.754, 45.386]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.881, 45.319],\n            [-75.872, 45.316],\n            [-75.868, 45.31],\n            [-75.872, 45.304],\n            [-75.881, 45.301],\n            [-75.89, 45.304],\n            [-75.893, 45.31],\n            [-75.89, 45.316],\n            [-75.881, 45.319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.731, 45.485],\n            [-75.722, 45.482],\n            [-75.718, 45.476],\n            [-75.722, 45.469],\n            [-75.731, 45.467],\n            [-75.74, 45.469],\n            [-75.744, 45.476],\n            [-75.74, 45.482],\n            [-75.731, 45.485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.931, 45.443],\n            [-74.922, 45.44],\n            [-74.918, 45.434],\n            [-74.922, 45.428],\n            [-74.931, 45.425],\n            [-74.94, 45.428],\n            [-74.944, 45.434],\n            [-74.94, 45.44],\n            [-74.931, 45.443]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.75, 45.278],\n            [-75.741, 45.275],\n            [-75.738, 45.269],\n            [-75.741, 45.262],\n            [-75.75, 45.26],\n            [-75.759, 45.262],\n            [-75.763, 45.269],\n            [-75.759, 45.275],\n            [-75.75, 45.278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.701, 45.475],\n            [-75.692, 45.473],\n            [-75.688, 45.466],\n            [-75.692, 45.46],\n            [-75.701, 45.457],\n            [-75.71, 45.46],\n            [-75.714, 45.466],\n            [-75.71, 45.473],\n            [-75.701, 45.475]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.724, 45.499],\n            [-75.715, 45.496],\n            [-75.711, 45.49],\n            [-75.715, 45.483],\n            [-75.724, 45.481],\n            [-75.733, 45.483],\n            [-75.737, 45.49],\n            [-75.733, 45.496],\n            [-75.724, 45.499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.014, 45.626],\n            [-75.005, 45.624],\n            [-75.001, 45.617],\n            [-75.005, 45.611],\n            [-75.014, 45.608],\n            [-75.023, 45.611],\n            [-75.027, 45.617],\n            [-75.023, 45.624],\n            [-75.014, 45.626]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.017, 45.626],\n            [-75.007, 45.624],\n            [-75.004, 45.617],\n            [-75.007, 45.611],\n            [-75.017, 45.608],\n            [-75.026, 45.611],\n            [-75.029, 45.617],\n            [-75.026, 45.624],\n            [-75.017, 45.626]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.241, 45.606],\n            [-75.232, 45.604],\n            [-75.228, 45.597],\n            [-75.232, 45.591],\n            [-75.241, 45.588],\n            [-75.25, 45.591],\n            [-75.254, 45.597],\n            [-75.25, 45.604],\n            [-75.241, 45.606]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.948, 45.659],\n            [-74.939, 45.657],\n            [-74.935, 45.65],\n            [-74.939, 45.644],\n            [-74.948, 45.641],\n            [-74.957, 45.644],\n            [-74.96, 45.65],\n            [-74.957, 45.657],\n            [-74.948, 45.659]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.767, 45.469],\n            [-75.758, 45.467],\n            [-75.754, 45.46],\n            [-75.758, 45.454],\n            [-75.767, 45.451],\n            [-75.776, 45.454],\n            [-75.78, 45.46],\n            [-75.776, 45.467],\n            [-75.767, 45.469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.637, 45.208],\n            [-75.628, 45.205],\n            [-75.625, 45.199],\n            [-75.628, 45.192],\n            [-75.637, 45.19],\n            [-75.646, 45.192],\n            [-75.65, 45.199],\n            [-75.646, 45.205],\n            [-75.637, 45.208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.43, 45.263],\n            [-75.421, 45.261],\n            [-75.417, 45.254],\n            [-75.421, 45.248],\n            [-75.43, 45.245],\n            [-75.439, 45.248],\n            [-75.443, 45.254],\n            [-75.439, 45.261],\n            [-75.43, 45.263]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.525, 45.351],\n            [-75.516, 45.349],\n            [-75.512, 45.342],\n            [-75.516, 45.336],\n            [-75.525, 45.333],\n            [-75.534, 45.336],\n            [-75.538, 45.342],\n            [-75.534, 45.349],\n            [-75.525, 45.351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.747, 45.282],\n            [-75.738, 45.279],\n            [-75.734, 45.273],\n            [-75.738, 45.266],\n            [-75.747, 45.264],\n            [-75.756, 45.266],\n            [-75.76, 45.273],\n            [-75.756, 45.279],\n            [-75.747, 45.282]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.676, 45.511],\n            [-75.667, 45.509],\n            [-75.663, 45.502],\n            [-75.667, 45.496],\n            [-75.676, 45.493],\n            [-75.685, 45.496],\n            [-75.689, 45.502],\n            [-75.685, 45.509],\n            [-75.676, 45.511]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.928, 45.303],\n            [-75.919, 45.301],\n            [-75.915, 45.294],\n            [-75.919, 45.288],\n            [-75.928, 45.285],\n            [-75.937, 45.288],\n            [-75.941, 45.294],\n            [-75.937, 45.301],\n            [-75.928, 45.303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.12, 45.615],\n            [-75.111, 45.612],\n            [-75.107, 45.606],\n            [-75.111, 45.599],\n            [-75.12, 45.597],\n            [-75.129, 45.599],\n            [-75.133, 45.606],\n            [-75.129, 45.612],\n            [-75.12, 45.615]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.665, 45.494],\n            [-75.656, 45.491],\n            [-75.652, 45.485],\n            [-75.656, 45.478],\n            [-75.665, 45.476],\n            [-75.674, 45.478],\n            [-75.678, 45.485],\n            [-75.674, 45.491],\n            [-75.665, 45.494]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.436, 45.563],\n            [-75.427, 45.561],\n            [-75.423, 45.554],\n            [-75.427, 45.548],\n            [-75.436, 45.545],\n            [-75.445, 45.548],\n            [-75.449, 45.554],\n            [-75.445, 45.561],\n            [-75.436, 45.563]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.497, 45.539],\n            [-75.487, 45.537],\n            [-75.484, 45.53],\n            [-75.487, 45.524],\n            [-75.497, 45.521],\n            [-75.506, 45.524],\n            [-75.509, 45.53],\n            [-75.506, 45.537],\n            [-75.497, 45.539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.571, 45.507],\n            [-75.562, 45.505],\n            [-75.558, 45.498],\n            [-75.562, 45.492],\n            [-75.571, 45.489],\n            [-75.58, 45.492],\n            [-75.584, 45.498],\n            [-75.58, 45.505],\n            [-75.571, 45.507]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.6, 45.497],\n            [-75.591, 45.495],\n            [-75.587, 45.488],\n            [-75.591, 45.482],\n            [-75.6, 45.48],\n            [-75.609, 45.482],\n            [-75.613, 45.488],\n            [-75.609, 45.495],\n            [-75.6, 45.497]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.609, 45.516],\n            [-75.6, 45.513],\n            [-75.596, 45.507],\n            [-75.6, 45.501],\n            [-75.609, 45.498],\n            [-75.618, 45.501],\n            [-75.622, 45.507],\n            [-75.618, 45.513],\n            [-75.609, 45.516]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.603, 45.496],\n            [-75.594, 45.493],\n            [-75.59, 45.487],\n            [-75.594, 45.481],\n            [-75.603, 45.478],\n            [-75.612, 45.481],\n            [-75.616, 45.487],\n            [-75.612, 45.493],\n            [-75.603, 45.496]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.607, 45.155],\n            [-75.598, 45.152],\n            [-75.594, 45.146],\n            [-75.598, 45.139],\n            [-75.607, 45.137],\n            [-75.616, 45.139],\n            [-75.619, 45.146],\n            [-75.616, 45.152],\n            [-75.607, 45.155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.657, 45.501],\n            [-75.648, 45.498],\n            [-75.644, 45.492],\n            [-75.648, 45.485],\n            [-75.657, 45.483],\n            [-75.666, 45.485],\n            [-75.67, 45.492],\n            [-75.666, 45.498],\n            [-75.657, 45.501]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.249, 45.069],\n            [-76.24, 45.067],\n            [-76.236, 45.06],\n            [-76.24, 45.054],\n            [-76.249, 45.051],\n            [-76.258, 45.054],\n            [-76.262, 45.06],\n            [-76.258, 45.067],\n            [-76.249, 45.069]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.719, 45.346],\n            [-75.71, 45.344],\n            [-75.706, 45.337],\n            [-75.71, 45.331],\n            [-75.719, 45.328],\n            [-75.728, 45.331],\n            [-75.732, 45.337],\n            [-75.728, 45.344],\n            [-75.719, 45.346]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.249, 45.069],\n            [-76.24, 45.067],\n            [-76.236, 45.06],\n            [-76.24, 45.054],\n            [-76.249, 45.051],\n            [-76.258, 45.054],\n            [-76.262, 45.06],\n            [-76.258, 45.067],\n            [-76.249, 45.069]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.997, 45.544],\n            [-74.988, 45.542],\n            [-74.984, 45.535],\n            [-74.988, 45.529],\n            [-74.997, 45.526],\n            [-75.006, 45.529],\n            [-75.01, 45.535],\n            [-75.006, 45.542],\n            [-74.997, 45.544]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.738, 45.477],\n            [-75.729, 45.475],\n            [-75.725, 45.468],\n            [-75.729, 45.462],\n            [-75.738, 45.459],\n            [-75.747, 45.462],\n            [-75.751, 45.468],\n            [-75.747, 45.475],\n            [-75.738, 45.477]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.272, 45.563],\n            [-75.263, 45.56],\n            [-75.259, 45.554],\n            [-75.263, 45.547],\n            [-75.272, 45.545],\n            [-75.281, 45.547],\n            [-75.284, 45.554],\n            [-75.281, 45.56],\n            [-75.272, 45.563]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.647, 45.158],\n            [-75.638, 45.155],\n            [-75.634, 45.149],\n            [-75.638, 45.142],\n            [-75.647, 45.14],\n            [-75.656, 45.142],\n            [-75.659, 45.149],\n            [-75.656, 45.155],\n            [-75.647, 45.158]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.193, 45.435],\n            [-75.184, 45.433],\n            [-75.18, 45.426],\n            [-75.184, 45.42],\n            [-75.193, 45.417],\n            [-75.202, 45.42],\n            [-75.206, 45.426],\n            [-75.202, 45.433],\n            [-75.193, 45.435]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.057, 45.74],\n            [-75.048, 45.737],\n            [-75.044, 45.731],\n            [-75.048, 45.725],\n            [-75.057, 45.722],\n            [-75.066, 45.725],\n            [-75.07, 45.731],\n            [-75.066, 45.737],\n            [-75.057, 45.74]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.811, 45.512],\n            [-75.801, 45.51],\n            [-75.798, 45.503],\n            [-75.801, 45.497],\n            [-75.811, 45.494],\n            [-75.82, 45.497],\n            [-75.823, 45.503],\n            [-75.82, 45.51],\n            [-75.811, 45.512]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.998, 45.544],\n            [-74.989, 45.541],\n            [-74.985, 45.535],\n            [-74.989, 45.529],\n            [-74.998, 45.526],\n            [-75.007, 45.529],\n            [-75.011, 45.535],\n            [-75.007, 45.541],\n            [-74.998, 45.544]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.82, 45.336],\n            [-75.811, 45.334],\n            [-75.807, 45.327],\n            [-75.811, 45.321],\n            [-75.82, 45.318],\n            [-75.829, 45.321],\n            [-75.833, 45.327],\n            [-75.829, 45.334],\n            [-75.82, 45.336]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.431, 45.551],\n            [-75.421, 45.549],\n            [-75.418, 45.542],\n            [-75.421, 45.536],\n            [-75.431, 45.533],\n            [-75.44, 45.536],\n            [-75.443, 45.542],\n            [-75.44, 45.549],\n            [-75.431, 45.551]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.341, 45.085],\n            [-75.332, 45.082],\n            [-75.328, 45.076],\n            [-75.332, 45.069],\n            [-75.341, 45.067],\n            [-75.35, 45.069],\n            [-75.354, 45.076],\n            [-75.35, 45.082],\n            [-75.341, 45.085]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.641, 45.502],\n            [-75.632, 45.5],\n            [-75.628, 45.493],\n            [-75.632, 45.487],\n            [-75.641, 45.484],\n            [-75.65, 45.487],\n            [-75.654, 45.493],\n            [-75.65, 45.5],\n            [-75.641, 45.502]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.428, 45.571],\n            [-75.419, 45.568],\n            [-75.415, 45.562],\n            [-75.419, 45.555],\n            [-75.428, 45.553],\n            [-75.437, 45.555],\n            [-75.441, 45.562],\n            [-75.437, 45.568],\n            [-75.428, 45.571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.42, 45.565],\n            [-75.411, 45.562],\n            [-75.407, 45.556],\n            [-75.411, 45.55],\n            [-75.42, 45.547],\n            [-75.429, 45.55],\n            [-75.432, 45.556],\n            [-75.429, 45.562],\n            [-75.42, 45.565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.711, 45.798],\n            [-75.702, 45.795],\n            [-75.698, 45.789],\n            [-75.702, 45.783],\n            [-75.711, 45.78],\n            [-75.72, 45.783],\n            [-75.724, 45.789],\n            [-75.72, 45.795],\n            [-75.711, 45.798]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.302, 45.555],\n            [-75.293, 45.552],\n            [-75.289, 45.546],\n            [-75.293, 45.54],\n            [-75.302, 45.537],\n            [-75.311, 45.54],\n            [-75.315, 45.546],\n            [-75.311, 45.552],\n            [-75.302, 45.555]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.617, 45.605],\n            [-75.608, 45.602],\n            [-75.604, 45.596],\n            [-75.608, 45.589],\n            [-75.617, 45.587],\n            [-75.626, 45.589],\n            [-75.63, 45.596],\n            [-75.626, 45.602],\n            [-75.617, 45.605]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.483, 45.46],\n            [-75.474, 45.457],\n            [-75.47, 45.451],\n            [-75.474, 45.444],\n            [-75.483, 45.442],\n            [-75.492, 45.444],\n            [-75.495, 45.451],\n            [-75.492, 45.457],\n            [-75.483, 45.46]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.109, 45.185],\n            [-75.1, 45.182],\n            [-75.096, 45.176],\n            [-75.1, 45.17],\n            [-75.109, 45.167],\n            [-75.118, 45.17],\n            [-75.122, 45.176],\n            [-75.118, 45.182],\n            [-75.109, 45.185]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.151, 45.225],\n            [-75.142, 45.223],\n            [-75.138, 45.216],\n            [-75.142, 45.21],\n            [-75.151, 45.207],\n            [-75.16, 45.21],\n            [-75.164, 45.216],\n            [-75.16, 45.223],\n            [-75.151, 45.225]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.293, 45.041],\n            [-75.284, 45.038],\n            [-75.281, 45.032],\n            [-75.284, 45.026],\n            [-75.293, 45.023],\n            [-75.302, 45.026],\n            [-75.306, 45.032],\n            [-75.302, 45.038],\n            [-75.293, 45.041]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.581, 45.306],\n            [-75.572, 45.303],\n            [-75.568, 45.297],\n            [-75.572, 45.291],\n            [-75.581, 45.288],\n            [-75.59, 45.291],\n            [-75.593, 45.297],\n            [-75.59, 45.303],\n            [-75.581, 45.306]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.021, 45.548],\n            [-76.011, 45.545],\n            [-76.008, 45.539],\n            [-76.011, 45.532],\n            [-76.021, 45.53],\n            [-76.03, 45.532],\n            [-76.033, 45.539],\n            [-76.03, 45.545],\n            [-76.021, 45.548]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.127, 45.149],\n            [-76.118, 45.146],\n            [-76.115, 45.14],\n            [-76.118, 45.133],\n            [-76.127, 45.131],\n            [-76.136, 45.133],\n            [-76.14, 45.14],\n            [-76.136, 45.146],\n            [-76.127, 45.149]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.4, 45.468],\n            [-76.391, 45.466],\n            [-76.387, 45.459],\n            [-76.391, 45.453],\n            [-76.4, 45.45],\n            [-76.409, 45.453],\n            [-76.413, 45.459],\n            [-76.409, 45.466],\n            [-76.4, 45.468]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.741, 45.469],\n            [-75.732, 45.466],\n            [-75.729, 45.46],\n            [-75.732, 45.453],\n            [-75.741, 45.451],\n            [-75.75, 45.453],\n            [-75.754, 45.46],\n            [-75.75, 45.466],\n            [-75.741, 45.469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.669, 45.387],\n            [-75.66, 45.384],\n            [-75.656, 45.378],\n            [-75.66, 45.372],\n            [-75.669, 45.369],\n            [-75.678, 45.372],\n            [-75.682, 45.378],\n            [-75.678, 45.384],\n            [-75.669, 45.387]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.748, 45.471],\n            [-75.739, 45.469],\n            [-75.735, 45.462],\n            [-75.739, 45.456],\n            [-75.748, 45.453],\n            [-75.757, 45.456],\n            [-75.76, 45.462],\n            [-75.757, 45.469],\n            [-75.748, 45.471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.748, 45.471],\n            [-75.739, 45.469],\n            [-75.735, 45.462],\n            [-75.739, 45.456],\n            [-75.748, 45.453],\n            [-75.757, 45.456],\n            [-75.76, 45.462],\n            [-75.757, 45.469],\n            [-75.748, 45.471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.703, 45.296],\n            [-75.694, 45.293],\n            [-75.69, 45.287],\n            [-75.694, 45.28],\n            [-75.703, 45.278],\n            [-75.712, 45.28],\n            [-75.716, 45.287],\n            [-75.712, 45.293],\n            [-75.703, 45.296]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.637, 45.434],\n            [-75.628, 45.432],\n            [-75.625, 45.425],\n            [-75.628, 45.419],\n            [-75.637, 45.416],\n            [-75.646, 45.419],\n            [-75.65, 45.425],\n            [-75.646, 45.432],\n            [-75.637, 45.434]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.772, 45.484],\n            [-75.763, 45.481],\n            [-75.759, 45.475],\n            [-75.763, 45.468],\n            [-75.772, 45.466],\n            [-75.781, 45.468],\n            [-75.785, 45.475],\n            [-75.781, 45.481],\n            [-75.772, 45.484]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.691, 45.351],\n            [-75.682, 45.349],\n            [-75.678, 45.342],\n            [-75.682, 45.336],\n            [-75.691, 45.333],\n            [-75.7, 45.336],\n            [-75.703, 45.342],\n            [-75.7, 45.349],\n            [-75.691, 45.351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.64, 45.038],\n            [-75.631, 45.035],\n            [-75.627, 45.029],\n            [-75.631, 45.022],\n            [-75.64, 45.02],\n            [-75.649, 45.022],\n            [-75.653, 45.029],\n            [-75.649, 45.035],\n            [-75.64, 45.038]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.702, 45.378],\n            [-75.692, 45.375],\n            [-75.689, 45.369],\n            [-75.692, 45.362],\n            [-75.702, 45.36],\n            [-75.711, 45.362],\n            [-75.714, 45.369],\n            [-75.711, 45.375],\n            [-75.702, 45.378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.241, 44.901],\n            [-76.232, 44.899],\n            [-76.228, 44.892],\n            [-76.232, 44.886],\n            [-76.241, 44.883],\n            [-76.25, 44.886],\n            [-76.253, 44.892],\n            [-76.25, 44.899],\n            [-76.241, 44.901]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.594, 45.329],\n            [-75.585, 45.326],\n            [-75.581, 45.32],\n            [-75.585, 45.313],\n            [-75.594, 45.311],\n            [-75.603, 45.313],\n            [-75.606, 45.32],\n            [-75.603, 45.326],\n            [-75.594, 45.329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.603, 45.496],\n            [-75.594, 45.493],\n            [-75.59, 45.487],\n            [-75.594, 45.481],\n            [-75.603, 45.478],\n            [-75.612, 45.481],\n            [-75.616, 45.487],\n            [-75.612, 45.493],\n            [-75.603, 45.496]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.763, 45.439],\n            [-75.754, 45.437],\n            [-75.75, 45.43],\n            [-75.754, 45.424],\n            [-75.763, 45.421],\n            [-75.772, 45.424],\n            [-75.775, 45.43],\n            [-75.772, 45.437],\n            [-75.763, 45.439]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.601, 45.497],\n            [-75.592, 45.495],\n            [-75.588, 45.488],\n            [-75.592, 45.482],\n            [-75.601, 45.479],\n            [-75.61, 45.482],\n            [-75.614, 45.488],\n            [-75.61, 45.495],\n            [-75.601, 45.497]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.719, 45.346],\n            [-75.71, 45.344],\n            [-75.706, 45.337],\n            [-75.71, 45.331],\n            [-75.719, 45.328],\n            [-75.728, 45.331],\n            [-75.732, 45.337],\n            [-75.728, 45.344],\n            [-75.719, 45.346]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.72, 45.336],\n            [-75.711, 45.333],\n            [-75.707, 45.327],\n            [-75.711, 45.321],\n            [-75.72, 45.318],\n            [-75.729, 45.321],\n            [-75.733, 45.327],\n            [-75.729, 45.333],\n            [-75.72, 45.336]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.401, 45.585],\n            [-75.391, 45.582],\n            [-75.388, 45.576],\n            [-75.391, 45.569],\n            [-75.401, 45.567],\n            [-75.41, 45.569],\n            [-75.413, 45.576],\n            [-75.41, 45.582],\n            [-75.401, 45.585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.401, 45.585],\n            [-75.392, 45.582],\n            [-75.388, 45.576],\n            [-75.392, 45.569],\n            [-75.401, 45.567],\n            [-75.41, 45.569],\n            [-75.413, 45.576],\n            [-75.41, 45.582],\n            [-75.401, 45.585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.72, 45.336],\n            [-75.711, 45.333],\n            [-75.707, 45.327],\n            [-75.711, 45.321],\n            [-75.72, 45.318],\n            [-75.729, 45.321],\n            [-75.733, 45.327],\n            [-75.729, 45.333],\n            [-75.72, 45.336]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.303, 45.277],\n            [-75.294, 45.274],\n            [-75.29, 45.268],\n            [-75.294, 45.261],\n            [-75.303, 45.259],\n            [-75.312, 45.261],\n            [-75.316, 45.268],\n            [-75.312, 45.274],\n            [-75.303, 45.277]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.303, 45.277],\n            [-75.294, 45.274],\n            [-75.29, 45.268],\n            [-75.294, 45.261],\n            [-75.303, 45.259],\n            [-75.312, 45.261],\n            [-75.316, 45.268],\n            [-75.312, 45.274],\n            [-75.303, 45.277]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.72, 45.336],\n            [-75.711, 45.333],\n            [-75.707, 45.327],\n            [-75.711, 45.321],\n            [-75.72, 45.318],\n            [-75.729, 45.321],\n            [-75.733, 45.327],\n            [-75.729, 45.333],\n            [-75.72, 45.336]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.72, 45.336],\n            [-75.711, 45.333],\n            [-75.707, 45.327],\n            [-75.711, 45.321],\n            [-75.72, 45.318],\n            [-75.729, 45.321],\n            [-75.733, 45.327],\n            [-75.729, 45.333],\n            [-75.72, 45.336]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.653, 45.03],\n            [-75.644, 45.027],\n            [-75.64, 45.021],\n            [-75.644, 45.015],\n            [-75.653, 45.012],\n            [-75.662, 45.015],\n            [-75.666, 45.021],\n            [-75.662, 45.027],\n            [-75.653, 45.03]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.625, 45.357],\n            [-75.616, 45.354],\n            [-75.612, 45.348],\n            [-75.616, 45.342],\n            [-75.625, 45.339],\n            [-75.634, 45.342],\n            [-75.638, 45.348],\n            [-75.634, 45.354],\n            [-75.625, 45.357]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.597, 45.384],\n            [-75.588, 45.381],\n            [-75.584, 45.375],\n            [-75.588, 45.368],\n            [-75.597, 45.366],\n            [-75.606, 45.368],\n            [-75.61, 45.375],\n            [-75.606, 45.381],\n            [-75.597, 45.384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.179, 45.246],\n            [-76.17, 45.243],\n            [-76.167, 45.237],\n            [-76.17, 45.23],\n            [-76.179, 45.228],\n            [-76.188, 45.23],\n            [-76.192, 45.237],\n            [-76.188, 45.243],\n            [-76.179, 45.246]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.955, 45.288],\n            [-75.946, 45.286],\n            [-75.942, 45.279],\n            [-75.946, 45.273],\n            [-75.955, 45.27],\n            [-75.964, 45.273],\n            [-75.968, 45.279],\n            [-75.964, 45.286],\n            [-75.955, 45.288]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.955, 45.288],\n            [-75.946, 45.286],\n            [-75.942, 45.279],\n            [-75.946, 45.273],\n            [-75.955, 45.27],\n            [-75.964, 45.273],\n            [-75.968, 45.279],\n            [-75.964, 45.286],\n            [-75.955, 45.288]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.67, 45.442],\n            [-75.661, 45.44],\n            [-75.657, 45.433],\n            [-75.661, 45.427],\n            [-75.67, 45.424],\n            [-75.679, 45.427],\n            [-75.682, 45.433],\n            [-75.679, 45.44],\n            [-75.67, 45.442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.523, 45.481],\n            [-75.514, 45.478],\n            [-75.51, 45.472],\n            [-75.514, 45.465],\n            [-75.523, 45.463],\n            [-75.532, 45.465],\n            [-75.536, 45.472],\n            [-75.532, 45.478],\n            [-75.523, 45.481]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.612, 45.422],\n            [-75.603, 45.419],\n            [-75.599, 45.413],\n            [-75.603, 45.406],\n            [-75.612, 45.404],\n            [-75.621, 45.406],\n            [-75.624, 45.413],\n            [-75.621, 45.419],\n            [-75.612, 45.422]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.955, 45.288],\n            [-75.946, 45.285],\n            [-75.942, 45.279],\n            [-75.946, 45.272],\n            [-75.955, 45.27],\n            [-75.964, 45.272],\n            [-75.967, 45.279],\n            [-75.964, 45.285],\n            [-75.955, 45.288]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.23, 45.112],\n            [-75.221, 45.109],\n            [-75.218, 45.103],\n            [-75.221, 45.097],\n            [-75.23, 45.094],\n            [-75.239, 45.097],\n            [-75.243, 45.103],\n            [-75.239, 45.109],\n            [-75.23, 45.112]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.23, 45.112],\n            [-75.221, 45.109],\n            [-75.218, 45.103],\n            [-75.221, 45.097],\n            [-75.23, 45.094],\n            [-75.239, 45.097],\n            [-75.243, 45.103],\n            [-75.239, 45.109],\n            [-75.23, 45.112]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.23, 45.112],\n            [-75.221, 45.109],\n            [-75.218, 45.103],\n            [-75.221, 45.097],\n            [-75.23, 45.094],\n            [-75.239, 45.097],\n            [-75.243, 45.103],\n            [-75.239, 45.109],\n            [-75.23, 45.112]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.23, 45.112],\n            [-75.221, 45.109],\n            [-75.218, 45.103],\n            [-75.221, 45.097],\n            [-75.23, 45.094],\n            [-75.239, 45.097],\n            [-75.243, 45.103],\n            [-75.239, 45.109],\n            [-75.23, 45.112]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.23, 45.53],\n            [-76.221, 45.527],\n            [-76.217, 45.521],\n            [-76.221, 45.514],\n            [-76.23, 45.512],\n            [-76.239, 45.514],\n            [-76.243, 45.521],\n            [-76.239, 45.527],\n            [-76.23, 45.53]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.747, 45.497],\n            [-75.738, 45.495],\n            [-75.734, 45.488],\n            [-75.738, 45.482],\n            [-75.747, 45.479],\n            [-75.756, 45.482],\n            [-75.76, 45.488],\n            [-75.756, 45.495],\n            [-75.747, 45.497]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.075, 45.472],\n            [-76.066, 45.469],\n            [-76.062, 45.463],\n            [-76.066, 45.456],\n            [-76.075, 45.454],\n            [-76.084, 45.456],\n            [-76.087, 45.463],\n            [-76.084, 45.469],\n            [-76.075, 45.472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.807, 45.426],\n            [-75.798, 45.423],\n            [-75.795, 45.417],\n            [-75.798, 45.411],\n            [-75.807, 45.408],\n            [-75.817, 45.411],\n            [-75.82, 45.417],\n            [-75.817, 45.423],\n            [-75.807, 45.426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.609, 45.516],\n            [-75.6, 45.513],\n            [-75.596, 45.507],\n            [-75.6, 45.501],\n            [-75.609, 45.498],\n            [-75.618, 45.501],\n            [-75.622, 45.507],\n            [-75.618, 45.513],\n            [-75.609, 45.516]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.609, 45.516],\n            [-75.6, 45.513],\n            [-75.596, 45.507],\n            [-75.6, 45.501],\n            [-75.609, 45.498],\n            [-75.618, 45.501],\n            [-75.622, 45.507],\n            [-75.618, 45.513],\n            [-75.609, 45.516]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.609, 45.516],\n            [-75.6, 45.513],\n            [-75.596, 45.507],\n            [-75.6, 45.501],\n            [-75.609, 45.498],\n            [-75.618, 45.501],\n            [-75.622, 45.507],\n            [-75.618, 45.513],\n            [-75.609, 45.516]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.643, 45.363],\n            [-75.634, 45.36],\n            [-75.631, 45.354],\n            [-75.634, 45.347],\n            [-75.643, 45.345],\n            [-75.652, 45.347],\n            [-75.656, 45.354],\n            [-75.652, 45.36],\n            [-75.643, 45.363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.643, 45.363],\n            [-75.634, 45.36],\n            [-75.631, 45.354],\n            [-75.634, 45.347],\n            [-75.643, 45.345],\n            [-75.652, 45.347],\n            [-75.656, 45.354],\n            [-75.652, 45.36],\n            [-75.643, 45.363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.412, 45.591],\n            [-75.403, 45.588],\n            [-75.399, 45.582],\n            [-75.403, 45.575],\n            [-75.412, 45.573],\n            [-75.421, 45.575],\n            [-75.425, 45.582],\n            [-75.421, 45.588],\n            [-75.412, 45.591]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.747, 45.497],\n            [-75.738, 45.495],\n            [-75.734, 45.488],\n            [-75.738, 45.482],\n            [-75.747, 45.479],\n            [-75.756, 45.482],\n            [-75.76, 45.488],\n            [-75.756, 45.495],\n            [-75.747, 45.497]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.719, 45.346],\n            [-75.71, 45.344],\n            [-75.706, 45.337],\n            [-75.71, 45.331],\n            [-75.719, 45.328],\n            [-75.728, 45.331],\n            [-75.732, 45.337],\n            [-75.728, 45.344],\n            [-75.719, 45.346]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.719, 45.346],\n            [-75.71, 45.344],\n            [-75.706, 45.337],\n            [-75.71, 45.331],\n            [-75.719, 45.328],\n            [-75.728, 45.331],\n            [-75.732, 45.337],\n            [-75.728, 45.344],\n            [-75.719, 45.346]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.911, 45.347],\n            [-75.902, 45.344],\n            [-75.899, 45.338],\n            [-75.902, 45.331],\n            [-75.911, 45.329],\n            [-75.92, 45.331],\n            [-75.924, 45.338],\n            [-75.92, 45.344],\n            [-75.911, 45.347]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.627, 45.414],\n            [-75.618, 45.412],\n            [-75.615, 45.405],\n            [-75.618, 45.399],\n            [-75.627, 45.396],\n            [-75.636, 45.399],\n            [-75.64, 45.405],\n            [-75.636, 45.412],\n            [-75.627, 45.414]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.106, 45.116],\n            [-76.097, 45.113],\n            [-76.093, 45.107],\n            [-76.097, 45.1],\n            [-76.106, 45.098],\n            [-76.115, 45.1],\n            [-76.118, 45.107],\n            [-76.115, 45.113],\n            [-76.106, 45.116]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.786, 45.453],\n            [-75.777, 45.451],\n            [-75.773, 45.444],\n            [-75.777, 45.438],\n            [-75.786, 45.435],\n            [-75.795, 45.438],\n            [-75.799, 45.444],\n            [-75.795, 45.451],\n            [-75.786, 45.453]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.752, 45.463],\n            [-75.743, 45.461],\n            [-75.739, 45.454],\n            [-75.743, 45.448],\n            [-75.752, 45.445],\n            [-75.761, 45.448],\n            [-75.765, 45.454],\n            [-75.761, 45.461],\n            [-75.752, 45.463]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.428, 45.571],\n            [-75.419, 45.568],\n            [-75.415, 45.562],\n            [-75.419, 45.555],\n            [-75.428, 45.553],\n            [-75.437, 45.555],\n            [-75.441, 45.562],\n            [-75.437, 45.568],\n            [-75.428, 45.571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.73, 45.407],\n            [-75.721, 45.404],\n            [-75.718, 45.398],\n            [-75.721, 45.391],\n            [-75.73, 45.389],\n            [-75.739, 45.391],\n            [-75.743, 45.398],\n            [-75.74, 45.404],\n            [-75.73, 45.407]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.241, 45.607],\n            [-75.232, 45.604],\n            [-75.228, 45.598],\n            [-75.232, 45.591],\n            [-75.241, 45.589],\n            [-75.25, 45.591],\n            [-75.254, 45.598],\n            [-75.25, 45.604],\n            [-75.241, 45.607]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.747, 45.497],\n            [-75.738, 45.494],\n            [-75.734, 45.488],\n            [-75.738, 45.482],\n            [-75.747, 45.479],\n            [-75.756, 45.482],\n            [-75.76, 45.488],\n            [-75.756, 45.494],\n            [-75.747, 45.497]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.378, 45.428],\n            [-76.369, 45.425],\n            [-76.365, 45.419],\n            [-76.369, 45.412],\n            [-76.378, 45.41],\n            [-76.387, 45.412],\n            [-76.39, 45.419],\n            [-76.387, 45.425],\n            [-76.378, 45.428]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.994, 45.503],\n            [-74.985, 45.501],\n            [-74.981, 45.494],\n            [-74.985, 45.488],\n            [-74.994, 45.485],\n            [-75.003, 45.488],\n            [-75.007, 45.494],\n            [-75.003, 45.501],\n            [-74.994, 45.503]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.564, 45.441],\n            [-75.555, 45.438],\n            [-75.551, 45.432],\n            [-75.555, 45.425],\n            [-75.564, 45.423],\n            [-75.573, 45.425],\n            [-75.577, 45.432],\n            [-75.573, 45.438],\n            [-75.564, 45.441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.64, 45.389],\n            [-75.631, 45.387],\n            [-75.627, 45.38],\n            [-75.631, 45.374],\n            [-75.64, 45.371],\n            [-75.649, 45.374],\n            [-75.652, 45.38],\n            [-75.649, 45.387],\n            [-75.64, 45.389]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.802, 45.278],\n            [-75.793, 45.276],\n            [-75.789, 45.269],\n            [-75.793, 45.263],\n            [-75.802, 45.26],\n            [-75.811, 45.263],\n            [-75.815, 45.269],\n            [-75.811, 45.276],\n            [-75.802, 45.278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.705, 45.362],\n            [-75.696, 45.359],\n            [-75.692, 45.353],\n            [-75.696, 45.347],\n            [-75.705, 45.344],\n            [-75.714, 45.347],\n            [-75.717, 45.353],\n            [-75.714, 45.359],\n            [-75.705, 45.362]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.782, 45.278],\n            [-75.773, 45.275],\n            [-75.77, 45.269],\n            [-75.773, 45.262],\n            [-75.782, 45.26],\n            [-75.792, 45.262],\n            [-75.795, 45.269],\n            [-75.792, 45.275],\n            [-75.782, 45.278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.642, 45.363],\n            [-75.633, 45.36],\n            [-75.629, 45.354],\n            [-75.633, 45.347],\n            [-75.642, 45.345],\n            [-75.651, 45.347],\n            [-75.655, 45.354],\n            [-75.651, 45.36],\n            [-75.642, 45.363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.925, 45.285],\n            [-75.916, 45.282],\n            [-75.912, 45.276],\n            [-75.916, 45.27],\n            [-75.925, 45.267],\n            [-75.934, 45.27],\n            [-75.938, 45.276],\n            [-75.934, 45.282],\n            [-75.925, 45.285]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-dissolve/test/in/issue-1208.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.253225263517834, 48.59717338797604, 0],\n            [-1.253181967856458, 48.59717979931626, 0],\n            [-1.253139397057852, 48.59718807515635, 0],\n            [-1.253097733412258, 48.59719818005896, 0],\n            [-1.253057155326247, 48.59721007075426, 0],\n            [-1.253017836557686, 48.59722369632577, 0],\n            [-1.252979945472796, 48.59723899842815, 0],\n            [-1.252943644324689, 48.59725591153686, 0],\n            [-1.25290908855882, 48.597274363229, 0],\n            [-1.252876426146965, 48.59729427449319, 0],\n            [-1.252845796954463, 48.59731556006806, 0],\n            [-1.252817332140237, 48.59733812880711, 0],\n            [-1.252791153595885, 48.59736188406926, 0],\n            [-1.252767373423613, 48.59738672413238, 0],\n            [-1.252746093455865, 48.59741254262912, 0],\n            [-1.252727404819447, 48.59743922900204, 0],\n            [-1.25271138754534, 48.59746666897733, 0],\n            [-1.252698110225676, 48.59749474505379, 0],\n            [-1.252687629720053, 48.59752333700656, 0],\n            [-1.252679990912307, 48.59755232240108, 0],\n            [-1.252675226517568, 48.59758157711809, 0],\n            [-1.252673356942813, 48.59761097588475, 0],\n            [-1.252674390198794, 48.59764039281117, 0],\n            [-1.252678321866105, 48.5976697019295, 0],\n            [-1.252685023359526, 48.59769830081823, 0],\n            [-1.252679475384746, 48.59770054129492, 0],\n            [-1.252643173803025, 48.5977174543079, 0],\n            [-1.252608617610178, 48.59773590590888, 0],\n            [-1.252575954780237, 48.59775581708682, 0],\n            [-1.252545325180001, 48.59777710258079, 0],\n            [-1.252516859970052, 48.59779967124452, 0],\n            [-1.252490681044125, 48.59782342643738, 0],\n            [-1.252466900505647, 48.59784826643747, 0],\n            [-1.252445620188778, 48.59787408487775, 0],\n            [-1.252426931221824, 48.59790077120097, 0],\n            [-1.252410913637165, 48.59792821113346, 0],\n            [-1.252397636028273, 48.59795628717443, 0],\n            [-1.252387155255943, 48.59798487909906, 0],\n            [-1.252379516205231, 48.59801386447276, 0],\n            [-1.252374751592247, 48.59804311917658, 0],\n            [-1.252372881824926, 48.5980725179376, 0],\n            [-1.252373914914839, 48.59810193486606, 0],\n            [-1.252377846443302, 48.59813124399403, 0],\n            [-1.252384659579837, 48.59816031981494, 0],\n            [-1.252394325154478, 48.59818903782123, 0],\n            [-1.252406801782209, 48.59821727503727, 0],\n            [-1.252415245537604, 48.59823327715994, 0],\n            [-1.252836850810517, 48.59898641926226, 0],\n            [-1.252843641512518, 48.59899805262291, 0],\n            [-1.252861568663461, 48.59902496801673, 0],\n            [-1.252882111484306, 48.59905104809576, 0],\n            [-1.252905182010495, 48.5990761811798, 0],\n            [-1.252930681452773, 48.59910025964346, 0],\n            [-1.252958500620303, 48.5991231803775, 0],\n            [-1.252988520388354, 48.59914484523033, 0],\n            [-1.253020612207896, 48.59916516142785, 0],\n            [-1.253054638656694, 48.5991840419715, 0],\n            [-1.253090454027523, 48.59920140601011, 0],\n            [-1.253127904951665, 48.59921717918667, 0],\n            [-1.253166831056545, 48.59923129395642, 0],\n            [-1.2532070656518, 48.5992436898764, 0],\n            [-1.253248436443413, 48.59925431386409, 0],\n            [-1.253290766271475, 48.59926312042469, 0],\n            [-1.253333873869247, 48.59927007184644, 0],\n            [-1.25337757463859, 48.59927513836125, 0],\n            [-1.2534216814415, 48.59927829827314, 0],\n            [-1.253466005400803, 48.59927953805043, 0],\n            [-1.253510356709588, 48.5992788523841, 0],\n            [-1.25355454544354, 48.59927624421039, 0],\n            [-1.253598382374725, 48.59927172469814, 0],\n            [-1.253641679781825, 48.59926531320109, 0],\n            [-1.253684252254093, 48.59925703717507, 0],\n            [-1.253725917485558, 48.59924693206003, 0],\n            [-1.253766497055102, 48.59923504112891, 0],\n            [-1.253805817191649, 48.59922141530161, 0],\n            [-1.253843709517346, 48.59920611292741, 0],\n            [-1.253880011769091, 48.59918919953497, 0],\n            [-1.253914568493293, 48.59917074755153, 0],\n            [-1.253947231711843, 48.59915083599297, 0],\n            [-1.253977861555105, 48.59912955012546, 0],\n            [-1.254006326861876, 48.59910698109994, 0],\n            [-1.254032505740221, 48.59908322556196, 0],\n            [-1.254056286089591, 48.59905838523816, 0],\n            [-1.2540775660811, 48.59903256650014, 0],\n            [-1.254087185345545, 48.59901940199093, 0],\n            [-1.254516617729897, 48.59840648252719, 0],\n            [-1.254525686751831, 48.59839296041072, 0],\n            [-1.254541703331873, 48.59836552018291, 0],\n            [-1.254554979853315, 48.59833744389379, 0],\n            [-1.254565459467951, 48.59830885177131, 0],\n            [-1.254573097305214, 48.59827986625212, 0],\n            [-1.254577860663282, 48.59825061145719, 0],\n            [-1.254579729149947, 48.59822121266042, 0],\n            [-1.254578694768946, 48.59819179575207, 0],\n            [-1.254574761954692, 48.59816248669985, 0],\n            [-1.254567947553149, 48.59813341100927, 0],\n            [-1.254558280749611, 48.59810469318647, 0],\n            [-1.254545802943203, 48.59807645620485, 0],\n            [-1.25453056757024, 48.59804882097853, 0],\n            [-1.254512639874632, 48.59802190584469, 0],\n            [-1.254492096629147, 48.59799582605688, 0],\n            [-1.254469025805975, 48.59797069329133, 0],\n            [-1.254443526200109, 48.59794661516895, 0],\n            [-1.25441570700658, 48.59792369479444, 0],\n            [-1.254385687352557, 48.59790203031459, 0],\n            [-1.25436673900003, 48.59789003491503, 0],\n            [-1.254375526750358, 48.59787937250336, 0],\n            [-1.254394214676664, 48.59785268586207, 0],\n            [-1.254410231156526, 48.59782524565184, 0],\n            [-1.254423507608784, 48.59779716937713, 0],\n            [-1.25443398718565, 48.59776857726585, 0],\n            [-1.254441625016658, 48.59773959175458, 0],\n            [-1.254446388400006, 48.59771033696431, 0],\n            [-1.254448256943366, 48.59768093816884, 0],\n            [-1.254447222650275, 48.59765152125848, 0],\n            [-1.254443289954745, 48.5976222122009, 0],\n            [-1.254436475702223, 48.59759313650175, 0],\n            [-1.254426809077383, 48.59756441866699, 0],\n            [-1.254414331478548, 48.59753618167021, 0],\n            [-1.254399096341237, 48.59750854642555, 0],\n            [-1.254381168908259, 48.59748163127037, 0],\n            [-1.254360625951283, 48.59745555145822, 0],\n            [-1.254337555441141, 48.59743041866553, 0],\n            [-1.254312056171765, 48.59740634051322, 0],\n            [-1.254284237336669, 48.59738342010597, 0],\n            [-1.254254218061284, 48.59736175559107, 0],\n            [-1.254222126893361, 48.59734143973743, 0],\n            [-1.254188101251836, 48.59732255953907, 0],\n            [-1.254152286838941, 48.59730519584223, 0],\n            [-1.254114837015858, 48.59728942299935, 0],\n            [-1.254075912146411, 48.59727530855058, 0],\n            [-1.254035678910148, 48.59726291293472, 0],\n            [-1.25399430958856, 48.59725228923053, 0],\n            [-1.253951981327723, 48.59724348292905, 0],\n            [-1.253916774952248, 48.59723765800342, 0],\n            [-1.253497660559697, 48.59717616737184, 0],\n            [-1.253489761006026, 48.59717504107898, 0],\n            [-1.253446062047994, 48.59716997460642, 0],\n            [-1.253401957090288, 48.59716681470356, 0],\n            [-1.253357634992236, 48.5971655749013, 0],\n            [-1.253313285542723, 48.5971662605085, 0],\n            [-1.2532690986479, 48.59716886858938, 0],\n            [-1.253225263517834, 48.59717338797604, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.261047036841909, 48.59733251210368, 0],\n            [-1.261003742039826, 48.5973389264027, 0],\n            [-1.260961172392459, 48.59734720515201, 0],\n            [-1.260919510185055, 48.59735731290185, 0],\n            [-1.260878933817968, 48.59736920637014, 0],\n            [-1.260839617041973, 48.59738283462858, 0],\n            [-1.260801728214498, 48.59739813932027, 0],\n            [-1.260765429579041, 48.59741505490967, 0],\n            [-1.260730876570226, 48.59743350896311, 0],\n            [-1.260698217148339, 48.59745342245916, 0],\n            [-1.26066759116557, 48.59747471012703, 0],\n            [-1.260639129767152, 48.59749728081107, 0],\n            [-1.260612954830354, 48.59752103786196, 0],\n            [-1.260589178441556, 48.59754587954995, 0],\n            [-1.260567902417213, 48.59757169950064, 0],\n            [-1.260549217867186, 48.59759838715041, 0],\n            [-1.26053320480495, 48.59762582821987, 0],\n            [-1.260519931804631, 48.59765390520345, 0],\n            [-1.260509455707282, 48.59768249787204, 0],\n            [-1.260501821377913, 48.59771148378819, 0],\n            [-1.260497061512491, 48.59774073883042, 0],\n            [-1.260495196498548, 48.59777013772445, 0],\n            [-1.260496234327311, 48.5977995545799, 0],\n            [-1.260500170559851, 48.59782886342913, 0],\n            [-1.260502533204371, 48.59784043920406, 0],\n            [-1.26068589218455, 48.59865869617723, 0],\n            [-1.260690347461777, 48.59867619573216, 0],\n            [-1.260700017872409, 48.59870491303608, 0],\n            [-1.260712499285572, 48.59873314934578, 0],\n            [-1.260727738258476, 48.59876078374815, 0],\n            [-1.260745669539156, 48.59878769790737, 0],\n            [-1.260766216346592, 48.59881377657148, 0],\n            [-1.26078929069922, 48.59883890806648, 0],\n            [-1.260814793791318, 48.59886298477383, 0],\n            [-1.260842616416502, 48.59888590359184, 0],\n            [-1.260872639435033, 48.59890756637692, 0],\n            [-1.260904734284372, 48.59892788036397, 0],\n            [-1.260938763528894, 48.59894675856394, 0],\n            [-1.260974581449463, 48.59896412013557, 0],\n            [-1.261012034666751, 48.59897989073242, 0],\n            [-1.261046994967765, 48.59899266348113, 0],\n            [-1.261447711504358, 48.5991290247514, 0],\n            [-1.261451679356045, 48.59913036407725, 0],\n            [-1.261491915909994, 48.59914275708487, 0],\n            [-1.261533288366374, 48.59915337807792, 0],\n            [-1.261575619558406, 48.59916218157462, 0],\n            [-1.261618728213312, 48.5991691298759, 0],\n            [-1.261662429728399, 48.59917419322756, 0],\n            [-1.261706536962524, 48.59917734994673, 0],\n            [-1.261750861036715, 48.59917858651572, 0],\n            [-1.261795212143482, 48.59917789763902, 0],\n            [-1.261839400359428, 48.5991752862667, 0],\n            [-1.261883236458838, 48.59917076358131, 0],\n            [-1.261926532723912, 48.59916434895025, 0],\n            [-1.261969103748877, 48.59915606984265, 0],\n            [-1.262010767233879, 48.59914596171171, 0],\n            [-1.262051344765294, 48.59913406784322, 0],\n            [-1.262090662580837, 48.5991204391698, 0],\n            [-1.262128552312529, 48.59910513405278, 0],\n            [-1.262164851708398, 48.59908821803263, 0],\n            [-1.262199405327045, 48.59906976354785, 0],\n            [-1.262232065203728, 48.59904984962498, 0],\n            [-1.2622626914831, 48.59902856154037, 0],\n            [-1.262291153019188, 48.59900599045445, 0],\n            [-1.262317327936222, 48.59898223302151, 0],\n            [-1.262341104150659, 48.59895739097645, 0],\n            [-1.262362379851261, 48.598931570698, 0],\n            [-1.262381063934981, 48.59890488275408, 0],\n            [-1.262397076396957, 48.59887744142787, 0],\n            [-1.262410348673095, 48.5988493642285, 0],\n            [-1.262420471754249, 48.59882188414993, 0],\n            [-1.26264939976048, 48.59810306363474, 0],\n            [-1.262649751929934, 48.59810195087174, 0],\n            [-1.262657385082044, 48.5980729648129, 0],\n            [-1.262662143723765, 48.59804370968134, 0],\n            [-1.262664007482672, 48.59801431075241, 0],\n            [-1.262662968383006, 48.59798489391701, 0],\n            [-1.262659030879443, 48.5979555851424, 0],\n            [-1.262652211837911, 48.59792650993304, 0],\n            [-1.26264254046345, 48.59789779279289, 0],\n            [-1.262630058175067, 48.59786955669247, 0],\n            [-1.262614818427883, 48.59784192254202, 0],\n            [-1.262596886484972, 48.59781500867436, 0],\n            [-1.262576339136929, 48.59778893033752, 0],\n            [-1.262553264373569, 48.59776379920143, 0],\n            [-1.262527761006931, 48.59773972288009, 0],\n            [-1.262499938248054, 48.59771680447032, 0],\n            [-1.262469915239455, 48.59769514211074, 0],\n            [-1.262437820544413, 48.5976748285613, 0],\n            [-1.262403791597453, 48.59765595080577, 0],\n            [-1.262367974114633, 48.59763858968024, 0],\n            [-1.262330521470347, 48.59762281952594, 0],\n            [-1.262291594040508, 48.59760870787162, 0],\n            [-1.262257702418959, 48.59759812952174, 0],\n            [-1.261444686919695, 48.59736233454655, 0],\n            [-1.261438343075305, 48.59736052012381, 0],\n            [-1.26139697211201, 48.59734989909548, 0],\n            [-1.261354642474715, 48.59734109553191, 0],\n            [-1.261311535421268, 48.59733414713043, 0],\n            [-1.261267835538396, 48.5973290836444, 0],\n            [-1.261223729950733, 48.59732592675577, 0],\n            [-1.261179407520268, 48.59732468998261, 0],\n            [-1.261135058037362, 48.59732537862071, 0],\n            [-1.261090871408246, 48.59732798972133, 0],\n            [-1.261047036841909, 48.59733251210368, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.256230543149746, 48.59795792463168, 0],\n            [-1.255541047028008, 48.59938115419852, 0],\n            [-1.255533319924131, 48.59939826307819, 0],\n            [-1.255522840632357, 48.59942685528763, 0],\n            [-1.255515203167816, 48.59945584086849, 0],\n            [-1.255510440240224, 48.59948509570052, 0],\n            [-1.255508572250161, 48.59951449451059, 0],\n            [-1.255509607201626, 48.59954391140847, 0],\n            [-1.255513540667899, 48.59957322042644, 0],\n            [-1.255520355810229, 48.59960229605846, 0],\n            [-1.255530023450098, 48.59963101379777, 0],\n            [-1.255542502193576, 48.59965925066977, 0],\n            [-1.255557738609325, 48.59968688575911, 0],\n            [-1.255575667456272, 48.5997138007268, 0],\n            [-1.255596211963908, 48.59973988031781, 0],\n            [-1.255619284160441, 48.59976501285378, 0],\n            [-1.255644785249421, 48.59978909071189, 0],\n            [-1.255672606033038, 48.59981201078542, 0],\n            [-1.255702627379527, 48.59983367492561, 0],\n            [-1.255707698903188, 48.59983706624144, 0],\n            [-1.256198454988837, 48.60016176286954, 0],\n            [-1.25622547715802, 48.60017868687334, 0],\n            [-1.256259505493429, 48.60019756646323, 0],\n            [-1.256295322690277, 48.60021492949797, 0],\n            [-1.256332775372293, 48.60023070162501, 0],\n            [-1.256371703159067, 48.60024481530403, 0],\n            [-1.256411939353164, 48.60025721009674, 0],\n            [-1.256453311653609, 48.60026783292536, 0],\n            [-1.256495642894322, 48.60027663830027, 0],\n            [-1.256538751802245, 48.60028358851456, 0],\n            [-1.256582453773667, 48.60028865380546, 0],\n            [-1.256626561665486, 48.60029181248214, 0],\n            [-1.256670886595852, 48.60029305101826, 0],\n            [-1.256715238753678, 48.60029236411008, 0],\n            [-1.256759428211032, 48.60028975469916, 0],\n            [-1.256803265736901, 48.6002852339597, 0],\n            [-1.25684656360739, 48.60027882125065, 0],\n            [-1.256889136409773, 48.60027054403302, 0],\n            [-1.256930801836662, 48.60026043775189, 0],\n            [-1.256971381466119, 48.60024854568512, 0],\n            [-1.257010701526846, 48.60023491875757, 0],\n            [-1.257048593641232, 48.60021961532317, 0],\n            [-1.257084895547114, 48.60020270091513, 0],\n            [-1.257119451792359, 48.60018424796509, 0],\n            [-1.257152114400977, 48.6001643354931, 0],\n            [-1.257182743505889, 48.60014304876899, 0],\n            [-1.257211207949192, 48.60012047894766, 0],\n            [-1.257229351547495, 48.60010436687913, 0],\n            [-1.258137644118331, 48.59925896598441, 0],\n            [-1.258680604352984, 48.59908281891148, 0],\n            [-1.258716194767939, 48.59907039158392, 0],\n            [-1.258754085487661, 48.59905508758405, 0],\n            [-1.258790385981052, 48.59903817263405, 0],\n            [-1.258824940802077, 48.59901971916798, 0],\n            [-1.258857601980818, 48.59899980620806, 0],\n            [-1.258888229656414, 48.59897851902629, 0],\n            [-1.258916692676795, 48.59895594877941, 0],\n            [-1.258934830757792, 48.59893984067655, 0],\n            [-1.259171199868516, 48.59871983140947, 0],\n            [-1.259474356223216, 48.59853939698603, 0],\n            [-1.259496456349145, 48.59852563942481, 0],\n            [-1.259527083466228, 48.59850435207158, 0],\n            [-1.259555545932252, 48.59848178166527, 0],\n            [-1.259581721867451, 48.59845802485735, 0],\n            [-1.259605499183967, 48.59843318337989, 0],\n            [-1.259626776065823, 48.59840736360928, 0],\n            [-1.259645461404939, 48.59838067611123, 0],\n            [-1.259661475191016, 48.59835323516699, 0],\n            [-1.259674748854365, 48.59832515828409, 0],\n            [-1.259685225559388, 48.59829656569279, 0],\n            [-1.25969286044753, 48.59826757983201, 0],\n            [-1.259694945031975, 48.59825685489147, 0],\n            [-1.259946817523598, 48.59682543806711, 0],\n            [-1.259949493152837, 48.59680690799236, 0],\n            [-1.259951358449833, 48.59677750910579, 0],\n            [-1.259950320960319, 48.59674809224385, 0],\n            [-1.259946385132316, 48.59671878337404, 0],\n            [-1.259940451310562, 48.59669286667325, 0],\n            [-1.259823344930708, 48.59626567713719, 0],\n            [-1.259822461459552, 48.59626251846414, 0],\n            [-1.259812792018544, 48.59623380108239, 0],\n            [-1.259800311729302, 48.59620556467094, 0],\n            [-1.259785074038713, 48.59617793014136, 0],\n            [-1.259767144200699, 48.59615101582806, 0],\n            [-1.25974659899714, 48.5961249369809, 0],\n            [-1.259723526408521, 48.59609980527215, 0],\n            [-1.259698025237646, 48.59607572831819, 0],\n            [-1.259670204686183, 48.59605280921858, 0],\n            [-1.259640183886917, 48.59603114611487, 0],\n            [-1.259608091394093, 48.59601083177006, 0],\n            [-1.259574064632345, 48.59599195317169, 0],\n            [-1.259538249308718, 48.59597459115903, 0],\n            [-1.259500798788273, 48.59595882007746, 0],\n            [-1.25946187343783, 48.59594470745951, 0],\n            [-1.259421639938898, 48.59593231373614, 0],\n            [-1.259380270574244, 48.59592169197803, 0],\n            [-1.259337942490186, 48.59591288766791, 0],\n            [-1.259294836937639, 48.59590593850642, 0],\n            [-1.259251138497013, 48.59590087424989, 0],\n            [-1.259207034286729, 48.59589771658396, 0],\n            [-1.259162713162918, 48.59589647902966, 0],\n            [-1.259118364910288, 48.5958971668864, 0],\n            [-1.259074179414845, 48.59589977721015, 0],\n            [-1.259035110725622, 48.59590371249357, 0],\n            [-1.258687945908628, 48.59594558091786, 0],\n            [-1.258318735609614, 48.59567264666158, 0],\n            [-1.258297990001303, 48.59565798384798, 0],\n            [-1.258276829149192, 48.59564458859183, 0],\n            [-1.258275631532106, 48.59563044105737, 0],\n            [-1.258271696766173, 48.59560113212832, 0],\n            [-1.258264880576721, 48.59557205665402, 0],\n            [-1.258255212156456, 48.59554333913969, 0],\n            [-1.258242732911818, 48.59551510255734, 0],\n            [-1.258227496284858, 48.59548746781944, 0],\n            [-1.258209567525281, 48.59546055326118, 0],\n            [-1.258189023410072, 48.59543447413348, 0],\n            [-1.258165951915178, 48.59540934210986, 0],\n            [-1.258140451838667, 48.59538526480796, 0],\n            [-1.258112632377513, 48.59536234532898, 0],\n            [-1.258082612659901, 48.59534068181593, 0],\n            [-1.258050521235483, 48.59532036703363, 0],\n            [-1.258016495524355, 48.59530148797152, 0],\n            [-1.257980681228725, 48.5952841254708, 0],\n            [-1.257943231709739, 48.59526835387897, 0],\n            [-1.25790430732952, 48.59525424073076, 0],\n            [-1.2578640747656, 48.59524184645943, 0],\n            [-1.25782270629673, 48.59523122413794, 0],\n            [-1.25778037906543, 48.59522241925152, 0],\n            [-1.257737274318858, 48.59521546950301, 0],\n            [-1.257693576634047, 48.59521040465171, 0],\n            [-1.257649473126181, 48.59520724638539, 0],\n            [-1.257605152648353, 48.59520600822789, 0],\n            [-1.257560804982554, 48.59520669548106, 0],\n            [-1.255530334423245, 48.5952822925235, 0],\n            [-1.255486149296388, 48.5952849014606, 0],\n            [-1.255442316005351, 48.59528942169678, 0],\n            [-1.255399022246033, 48.5952958338763, 0],\n            [-1.255356453404481, 48.59530411054188, 0],\n            [-1.255314791762565, 48.5953142162525, 0],\n            [-1.255274215718201, 48.59532610773503, 0],\n            [-1.255234899020583, 48.59533973406954, 0],\n            [-1.25519701002702, 48.59535503690741, 0],\n            [-1.255156778048931, 48.59534264168449, 0],\n            [-1.25511541006839, 48.5953320183844, 0],\n            [-1.25507308322562, 48.59532321249674, 0],\n            [-1.255029978766578, 48.59531626172873, 0],\n            [-1.254986281266639, 48.59531119584371, 0],\n            [-1.254942177840328, 48.59530803653405, 0],\n            [-1.254897857340378, 48.59530679732815, 0],\n            [-1.254853509548899, 48.59530748353229, 0],\n            [-1.254809324364887, 48.59531009220804, 0],\n            [-1.254765490991137, 48.59531461218504, 0],\n            [-1.254722197123985, 48.59532102410851, 0],\n            [-1.254690489067425, 48.59532699728374, 0],\n            [-1.253355816934831, 48.59560184247675, 0],\n            [-1.253344955896982, 48.59560414558872, 0],\n            [-1.253303293603267, 48.5956142505669, 0],\n            [-1.253262716842036, 48.59562614133607, 0],\n            [-1.253223399365842, 48.5956397669794, 0],\n            [-1.253185509535248, 48.59565506915105, 0],\n            [-1.253175382432152, 48.59565978765932, 0],\n            [-1.252865074545886, 48.59365920604927, 0],\n            [-1.252863639256538, 48.59365074067758, 0],\n            [-1.25285764402191, 48.59362458518964, 0],\n            [-1.252585381295466, 48.59263384110065, 0],\n            [-1.252584563758907, 48.59263092078733, 0],\n            [-1.25257489914268, 48.59260220278884, 0],\n            [-1.252562423811752, 48.59257396558297, 0],\n            [-1.252547191191886, 48.5925463300848, 0],\n            [-1.252529266515183, 48.5925194146327, 0],\n            [-1.252508726541501, 48.59249333448146, 0],\n            [-1.252485659229001, 48.59246820130903, 0],\n            [-1.252460163357647, 48.59244412273797, 0],\n            [-1.252432348106505, 48.59242120187489, 0],\n            [-1.25241487697886, 48.59240824724332, 0],\n            [-1.251979031592758, 48.59209737695413, 0],\n            [-1.251966487352612, 48.59208866653147, 0],\n            [-1.251934400467683, 48.592068350031, 0],\n            [-1.251900379246742, 48.59204946914733, 0],\n            [-1.251864569372736, 48.59203210472995, 0],\n            [-1.251827124187523, 48.5920163311342, 0],\n            [-1.251788204035023, 48.59200221590357, 0],\n            [-1.25174797557454, 48.59198981948016, 0],\n            [-1.2517066110674, 48.59197919494619, 0],\n            [-1.251664287638739, 48.59197038779638, 0],\n            [-1.251621186519885, 48.59196343574321, 0],\n            [-1.251577492272165, 48.5919583685559, 0],\n            [-1.251533391996014, 48.59195520793214, 0],\n            [-1.251489074530776, 48.59195396740589, 0],\n            [-1.251444729645432, 48.59195465228925, 0],\n            [-1.251400547226629, 48.59195725964946, 0],\n            [-1.251356716465288, 48.59196177832161, 0],\n            [-1.251313425046599, 48.59196818895667, 0],\n            [-1.251270858346494, 48.591976464104, 0],\n            [-1.251229198637651, 48.5919865683291, 0],\n            [-1.251188624309814, 48.59199845836513, 0],\n            [-1.251149309104682, 48.59201208329835, 0],\n            [-1.25111142137331, 48.59202738478619, 0],\n            [-1.251075123354419, 48.59204429730681, 0],\n            [-1.251040570480038, 48.59206274843972, 0],\n            [-1.25100791070957, 48.59208265917602, 0],\n            [-1.250977283897043, 48.59210394425647, 0],\n            [-1.250948821191211, 48.59212651253684, 0],\n            [-1.250922644474657, 48.59215026737801, 0],\n            [-1.250898865841694, 48.59217510705953, 0],\n            [-1.250877587118231, 48.59220092521575, 0],\n            [-1.250858899425718, 48.59222761129072, 0],\n            [-1.250842882791099, 48.59225505101182, 0],\n            [-1.250829605803749, 48.59228312687905, 0],\n            [-1.250819125321867, 48.59231171866839, 0],\n            [-1.250811486229189, 48.59234070394593, 0],\n            [-1.250809724264255, 48.59234961940842, 0],\n            [-1.250461573890365, 48.59425912167232, 0],\n            [-1.250458570613717, 48.59427946084583, 0],\n            [-1.250456699867439, 48.59430885958132, 0],\n            [-1.25045773176081, 48.59433827653275, 0],\n            [-1.25046166188016, 48.59436758573226, 0],\n            [-1.250468473401107, 48.59439666167287, 0],\n            [-1.25047813716058, 48.59442537984659, 0],\n            [-1.250490611781436, 48.59445361727698, 0],\n            [-1.250492943577972, 48.59445823516749, 0],\n            [-1.251077414192019, 48.59559521142408, 0],\n            [-1.251090315022103, 48.59561822923565, 0],\n            [-1.251108240032599, 48.59564514490879, 0],\n            [-1.251128780566573, 48.59567122530714, 0],\n            [-1.251151848669221, 48.59569635874895, 0],\n            [-1.251177345561618, 48.5957204376075, 0],\n            [-1.25120516206392, 48.59574335877172, 0],\n            [-1.251235179062686, 48.59576502408829, 0],\n            [-1.251267268020917, 48.59578534078098, 0],\n            [-1.251301291528468, 48.59580422184921, 0],\n            [-1.251315739617673, 48.59581151578874, 0],\n            [-1.252119283414854, 48.59620600914748, 0],\n            [-1.252140648016082, 48.59621607964807, 0],\n            [-1.252178096422398, 48.59623185313787, 0],\n            [-1.252217019953297, 48.59624596823284, 0],\n            [-1.252257251929447, 48.59625836448858, 0],\n            [-1.252298620068022, 48.59626898882127, 0],\n            [-1.252340947220525, 48.59627779573455, 0],\n            [-1.252384052131446, 48.59628474751499, 0],\n            [-1.252427750214418, 48.59628981439334, 0],\n            [-1.252471854342847, 48.59629297467178, 0],\n            [-1.252516175651031, 48.5962942148171, 0],\n            [-1.252560524343349, 48.59629352951876, 0],\n            [-1.252604710506777, 48.59629092171126, 0],\n            [-1.252648544924313, 48.59628640256212, 0],\n            [-1.252691839885509, 48.59627999142339, 0],\n            [-1.252734409989931, 48.59627171574932, 0],\n            [-1.252776072941799, 48.59626161097858, 0],\n            [-1.252816650329969, 48.59624972038235, 0],\n            [-1.252855968392475, 48.59623609487915, 0],\n            [-1.252893858760378, 48.59622079281705, 0],\n            [-1.252930159178989, 48.59620387972324, 0],\n            [-1.252930811381681, 48.59620353146014, 0],\n            [-1.25294601231869, 48.5962263549829, 0],\n            [-1.252966554041572, 48.59625243505064, 0],\n            [-1.252969983170753, 48.59625641443407, 0],\n            [-1.253096274526067, 48.59640125213645, 0],\n            [-1.25311591479258, 48.59642240580183, 0],\n            [-1.253141412991772, 48.59644648422193, 0],\n            [-1.253169230789157, 48.596469404908, 0],\n            [-1.253199249065662, 48.59649106970851, 0],\n            [-1.253231339279068, 48.5965113858498, 0],\n            [-1.253265364013658, 48.59653026633346, 0],\n            [-1.253301177569539, 48.59654763030848, 0],\n            [-1.253338626586067, 48.59656340341826, 0],\n            [-1.25337755069856, 48.5965775181183, 0],\n            [-1.25341778322527, 48.59658991396594, 0],\n            [-1.253459151880971, 48.59660053787889, 0],\n            [-1.253501479515129, 48.59660934436283, 0],\n            [-1.253542907217218, 48.59661606197049, 0],\n            [-1.254395742211183, 48.59673562503283, 0],\n            [-1.254397419872113, 48.59673585875591, 0],\n            [-1.25444111854913, 48.5967409248654, 0],\n            [-1.254485223199002, 48.5967440843679, 0],\n            [-1.254529544953849, 48.59674532373347, 0],\n            [-1.254573894016031, 48.59674463765499, 0],\n            [-1.254618080471026, 48.5967420290703, 0],\n            [-1.254661915100532, 48.59673750915009, 0],\n            [-1.254705210193203, 48.59673109724988, 0],\n            [-1.254747780348104, 48.59672282082709, 0],\n            [-1.254789443269178, 48.59671271532367, 0],\n            [-1.254830020545437, 48.59670082401388, 0],\n            [-1.254869338415356, 48.59668719781935, 0],\n            [-1.254907228510858, 48.5966718950911, 0],\n            [-1.254943528578389, 48.59665498135906, 0],\n            [-1.254978083173735, 48.59663652905213, 0],\n            [-1.255010744327796, 48.59661661718745, 0],\n            [-1.25504137218013, 48.59659533103245, 0],\n            [-1.255069835577649, 48.59657276173942, 0],\n            [-1.255096012636749, 48.59654900595508, 0],\n            [-1.255119791264716, 48.59652416540705, 0],\n            [-1.255141069639958, 48.59649834646783, 0],\n            [-1.255157019293216, 48.59647586953799, 0],\n            [-1.25522963646685, 48.59636573706141, 0],\n            [-1.255236028833706, 48.59637100381518, 0],\n            [-1.255266047940746, 48.59639266807368, 0],\n            [-1.255298138925216, 48.59641298363562, 0],\n            [-1.255332164368319, 48.59643186350485, 0],\n            [-1.255367978566886, 48.59644922683323, 0],\n            [-1.255405428157614, 48.59646499926679, 0],\n            [-1.255444352773365, 48.59647911326404, 0],\n            [-1.255484585730211, 48.59649150838517, 0],\n            [-1.255525954741108, 48.59650213155112, 0],\n            [-1.255568282654003, 48.59651093727071, 0],\n            [-1.255611388210127, 48.59651788783566, 0],\n            [-1.255655086820098, 48.5965229534817, 0],\n            [-1.255699191355242, 48.59652611251633, 0],\n            [-1.255743512948078, 48.59652735141188, 0],\n            [-1.255787861801767, 48.5965266648629, 0],\n            [-1.255817773487415, 48.59652489867574, 0],\n            [-1.255823554401863, 48.59652470773709, 0],\n            [-1.256230543149746, 48.59795792463168, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.241687719203461, 48.60931143094087, 0],\n            [-1.241644411634211, 48.60931783791229, 0],\n            [-1.241601828675212, 48.60932610945541, 0],\n            [-1.241560152668746, 48.6093362101513, 0],\n            [-1.24151956207422, 48.60934809674809, 0],\n            [-1.24148023070334, 48.60936171834694, 0],\n            [-1.241442326976003, 48.60937701661938, 0],\n            [-1.241406013199597, 48.60939392605739, 0],\n            [-1.241371444873456, 48.60941237425373, 0],\n            [-1.24133877002353, 48.60943228221197, 0],\n            [-1.241308128568077, 48.60945356468499, 0],\n            [-1.241279651718539, 48.60947613053953, 0],\n            [-1.24125346141839, 48.60949988314678, 0],\n            [-1.241229669819739, 48.60952472079616, 0],\n            [-1.241208378804228, 48.60955053713047, 0],\n            [-1.241189679545867, 48.60957722160162, 0],\n            [-1.241173652121179, 48.60960465994387, 0],\n            [-1.241160365165703, 48.60963273466321, 0],\n            [-1.241149875580343, 48.60966132554038, 0],\n            [-1.241142228287824, 48.60969031014547, 0],\n            [-1.241137456039587, 48.60971956436265, 0],\n            [-1.241135579276222, 48.60974896292122, 0],\n            [-1.241136606039337, 48.60977837993217, 0],\n            [-1.241140531937284, 48.60980768942729, 0],\n            [-1.241147340163686, 48.60983676589844, 0],\n            [-1.241153455566371, 48.60985592862144, 0],\n            [-1.241332068757348, 48.61036103342558, 0],\n            [-1.241335614830084, 48.61037058963361, 0],\n            [-1.241348088273861, 48.61039882803615, 0],\n            [-1.241363320147604, 48.61042646499831, 0],\n            [-1.241381245230082, 48.61045338217331, 0],\n            [-1.241401786766834, 48.61047946429642, 0],\n            [-1.241424856798519, 48.61050459967855, 0],\n            [-1.241450356538258, 48.61052868068462, 0],\n            [-1.241478176793918, 48.61055160419455, 0],\n            [-1.24150819843599, 48.6105732720447, 0],\n            [-1.24154029290753, 48.61059359144834, 0],\n            [-1.241574322774994, 48.61061247539296, 0],\n            [-1.241610142316267, 48.61062984301297, 0],\n            [-1.241647598144986, 48.61064561993594, 0],\n            [-1.241686529867532, 48.61065973860122, 0],\n            [-1.241726770769502, 48.61067213854893, 0],\n            [-1.24176814852988, 48.6106827666795, 0],\n            [-1.241810485958943, 48.61069157748035, 0],\n            [-1.241853601757195, 48.61069853322142, 0],\n            [-1.241897311291587, 48.6107036041164, 0],\n            [-1.241941427386544, 48.61070676845031, 0],\n            [-1.241985761125084, 48.61070801267264, 0],\n            [-1.242030122658371, 48.61070733145532, 0],\n            [-1.242074322018403, 48.61070472771545, 0],\n            [-1.242118169931643, 48.61070021260301, 0],\n            [-1.242161478629831, 48.61069380545284, 0],\n            [-1.242204062653798, 48.61068553370215, 0],\n            [-1.242245739648134, 48.61067543277266, 0],\n            [-1.24228633114134, 48.61066354591928, 0],\n            [-1.242325663311301, 48.6106499240445, 0],\n            [-1.242363567728626, 48.61063462548064, 0],\n            [-1.242399882078393, 48.61061771574003, 0],\n            [-1.242434450855194, 48.61059926723443, 0],\n            [-1.242467126029361, 48.61057935896467, 0],\n            [-1.242497767680078, 48.61055807618281, 0],\n            [-1.242526244595523, 48.61053551002671, 0],\n            [-1.242552434834041, 48.61051175712953, 0],\n            [-1.242576226246521, 48.61048691920671, 0],\n            [-1.242597516956616, 48.61046110261935, 0],\n            [-1.242609549700457, 48.61044446541254, 0],\n            [-1.242881417715258, 48.61004789184448, 0],\n            [-1.242888083705058, 48.61003784433545, 0],\n            [-1.242904110333223, 48.61001040575394, 0],\n            [-1.242917396415917, 48.60998233083278, 0],\n            [-1.242927885064327, 48.60995373979417, 0],\n            [-1.242935531368776, 48.60992475507022, 0],\n            [-1.242940302591593, 48.60989550077839, 0],\n            [-1.242942178306576, 48.60986610219051, 0],\n            [-1.242941150486507, 48.60983668519591, 0],\n            [-1.242937223538061, 48.60980737576263, 0],\n            [-1.242930414281722, 48.60977829939786, 0],\n            [-1.242920751880803, 48.60974958061056, 0],\n            [-1.242908277715862, 48.60972134237837, 0],\n            [-1.242893045207187, 48.60969370562057, 0],\n            [-1.242875119586899, 48.60966678868117, 0],\n            [-1.242854577618513, 48.60964070682134, 0],\n            [-1.242831507268782, 48.6096155717261, 0],\n            [-1.242806007330901, 48.60959149102642, 0],\n            [-1.242778187001201, 48.60956856783788, 0],\n            [-1.242748165411767, 48.60954690031954, 0],\n            [-1.242716071119983, 48.60952658125334, 0],\n            [-1.242682041558274, 48.60950769764695, 0],\n            [-1.242646222445678, 48.6094903303613, 0],\n            [-1.242608767163422, 48.60947455376403, 0],\n            [-1.24256983609879, 48.60946043541146, 0],\n            [-1.242529595957731, 48.60944803575919, 0],\n            [-1.242495663890275, 48.60943916897769, 0],\n            [-1.242045175849744, 48.60933063821547, 0],\n            [-1.242037731042833, 48.60932887711164, 0],\n            [-1.241995394719986, 48.60932006639413, 0],\n            [-1.241952280082646, 48.60931311070586, 0],\n            [-1.241908571750032, 48.60930803983158, 0],\n            [-1.241864456882873, 48.60930487548472, 0],\n            [-1.241820124382962, 48.60930363121534, 0],\n            [-1.241775764083768, 48.60930431235134, 0],\n            [-1.241731565937845, 48.60930691597618, 0],\n            [-1.241687719203461, 48.60931143094087, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.221211424717179, 48.6345355101136, 0],\n            [-1.221168092832079, 48.63454190932896, 0],\n            [-1.221125485161687, 48.63455017324279, 0],\n            [-1.22108378415404, 48.63456026646873, 0],\n            [-1.221081556502777, 48.63456086412968, 0],\n            [-1.219859408487987, 48.63489041897382, 0],\n            [-1.21982101983543, 48.63490170022128, 0],\n            [-1.219781662617405, 48.63491531434391, 0],\n            [-1.219743733044842, 48.63493060540812, 0],\n            [-1.219707393535781, 48.63494750793669, 0],\n            [-1.219672799699785, 48.63496594955197, 0],\n            [-1.219640099671999, 48.63498585128588, 0],\n            [-1.219609433478375, 48.63500712791773, 0],\n            [-1.219580932436648, 48.63502968833942, 0],\n            [-1.219554718593452, 48.63505343594538, 0],\n            [-1.219530904202153, 48.63507826904636, 0],\n            [-1.219509591241577, 48.63510408130469, 0],\n            [-1.219490870979936, 48.63513076218975, 0],\n            [-1.219474823583604, 48.63515819745125, 0],\n            [-1.21946151777359, 48.63518626960809, 0],\n            [-1.219451010531834, 48.63521485845222, 0],\n            [-1.219443346856259, 48.63524384156246, 0],\n            [-1.219438559568853, 48.63527309482927, 0],\n            [-1.219436669174252, 48.635302492986, 0],\n            [-1.219437683772817, 48.63533191014552, 0],\n            [-1.21944159902458, 48.63536122033878, 0],\n            [-1.219448398169227, 48.63539029805479, 0],\n            [-1.219458052096225, 48.63541901877787, 0],\n            [-1.219470519470938, 48.63544725952058, 0],\n            [-1.219485746910207, 48.63547489935107, 0],\n            [-1.219486647247292, 48.63547637366471, 0],\n            [-1.219830961995305, 48.63603733202068, 0],\n            [-1.219847984323792, 48.63606277821404, 0],\n            [-1.21986852515255, 48.63608886415967, 0],\n            [-1.219891596168448, 48.63611400384153, 0],\n            [-1.21991709858011, 48.63613808960599, 0],\n            [-1.219944923183951, 48.63616101831264, 0],\n            [-1.219974950832059, 48.63618269177547, 0],\n            [-1.22000705294169, 48.63620301718381, 0],\n            [-1.220041092046584, 48.63622190749942, 0],\n            [-1.220076922385001, 48.63623928182943, 0],\n            [-1.220114390524552, 48.63625506577262, 0],\n            [-1.220153336018661, 48.63626919173834, 0],\n            [-1.220193592094034, 48.63628159923553, 0],\n            [-1.220234986364566, 48.63629223513209, 0],\n            [-1.220277341570089, 48.63630105388246, 0],\n            [-1.220320476334929, 48.63630801772221, 0],\n            [-1.220345153205835, 48.63631112409529, 0],\n            [-1.221147914155289, 48.63640200371971, 0],\n            [-1.221166966960003, 48.6364039763214, 0],\n            [-1.22121110428346, 48.6364071486388, 0],\n            [-1.221255460152837, 48.63640840088703, 0],\n            [-1.221299844624435, 48.63640772770368, 0],\n            [-1.221638541946144, 48.63639523194597, 0],\n            [-1.221682764925243, 48.63639263608297, 0],\n            [-1.221726637052853, 48.63638812878783, 0],\n            [-1.221769970456899, 48.63638172936188, 0],\n            [-1.221812579572434, 48.63637346520932, 0],\n            [-1.221854281936636, 48.63636337171916, 0],\n            [-1.221894898969334, 48.63635149211466, 0],\n            [-1.221934256739057, 48.63633787726717, 0],\n            [-1.221972186706744, 48.63632258547889, 0],\n            [-1.22200852644812, 48.63630568223324, 0],\n            [-1.222043120349023, 48.63628723991401, 0],\n            [-1.222075820272173, 48.63626733749574, 0],\n            [-1.222106486190777, 48.63624606020525, 0],\n            [-1.222134986789079, 48.63622349915694, 0],\n            [-1.222161200024061, 48.63619975096221, 0],\n            [-1.222185013648094, 48.63617491731615, 0],\n            [-1.222206325689705, 48.63614910456174, 0],\n            [-1.222225044890315, 48.63612242323463, 0],\n            [-1.22224109109456, 48.63609498758955, 0],\n            [-1.222254395593982, 48.63606691511141, 0],\n            [-1.222264901420911, 48.63603832601164, 0],\n            [-1.222272563592108, 48.63600934271416, 0],\n            [-1.222277349301977, 48.63598008933029, 0],\n            [-1.222279238062185, 48.63595069112793, 0],\n            [-1.222278221789939, 48.63592127399477, 0],\n            [-1.222240508168133, 48.63547231053839, 0],\n            [-1.222236591277202, 48.635443000441, 0],\n            [-1.222229790514269, 48.63541392289059, 0],\n            [-1.222220135006016, 48.63538520240117, 0],\n            [-1.222215060914149, 48.63537286779603, 0],\n            [-1.221989149801972, 48.63485293554022, 0],\n            [-1.22198175513907, 48.63483702968675, 0],\n            [-1.221966526521763, 48.63480939018706, 0],\n            [-1.221948603149177, 48.63478247001221, 0],\n            [-1.221928061775235, 48.63475638443735, 0],\n            [-1.221904990364473, 48.63473124516356, 0],\n            [-1.221879487714281, 48.63470715983955, 0],\n            [-1.221851663032763, 48.6346842316008, 0],\n            [-1.221821635470526, 48.63466255862788, 0],\n            [-1.221789533610715, 48.63464223372615, 0],\n            [-1.221755494918171, 48.63462334392822, 0],\n            [-1.221719665150738, 48.63460597012152, 0],\n            [-1.221682197735727, 48.63459018670178, 0],\n            [-1.221643253111981, 48.63457606125441, 0],\n            [-1.221602998043663, 48.63456365426537, 0],\n            [-1.221561604905905, 48.63455301886201, 0],\n            [-1.221519250946725, 48.63454420058562, 0],\n            [-1.221476117528149, 48.63453723719652, 0],\n            [-1.221432389349531, 48.63453215851208, 0],\n            [-1.22138825365681, 48.63452898627956, 0],\n            [-1.22134389944089, 48.63452773408262, 0],\n            [-1.221299516628225, 48.63452840728311, 0],\n            [-1.221255295267751, 48.63453100299845, 0],\n            [-1.221211424717179, 48.6345355101136, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.185942982098176, 48.65333607701309, 0],\n            [-1.185981931217186, 48.65335021458009, 0],\n            [-1.18602219252989, 48.65336263407172, 0],\n            [-1.18606359362776, 48.65337328230446, 0],\n            [-1.186105957221393, 48.65338211367981, 0],\n            [-1.186149101899183, 48.65338909037958, 0],\n            [-1.186192842904261, 48.65339418252761, 0],\n            [-1.186236992926359, 48.65339736831804, 0],\n            [-1.186281362903232, 48.65339863410839, 0],\n            [-1.186325762830847, 48.65339797447825, 0],\n            [-1.186370002576753, 48.65339539225233, 0],\n            [-1.186413892694493, 48.65339089848849, 0],\n            [-1.186457245235071, 48.65338451243001, 0],\n            [-1.186473089522193, 48.65338167945284, 0],\n            [-1.187032106025161, 48.65327690469804, 0],\n            [-1.187419546841431, 48.65331974767945, 0],\n            [-1.187435764768992, 48.65332140774797, 0],\n            [-1.187479914805918, 48.6533245930595, 0],\n            [-1.187524284749877, 48.65332585836852, 0],\n            [-1.187568684596956, 48.65332519825675, 0],\n            [-1.187612924215025, 48.65332261555095, 0],\n            [-1.187656814158205, 48.65331812131092, 0],\n            [-1.187700166478238, 48.65331173478218, 0],\n            [-1.187742795529148, 48.65330348331359, 0],\n            [-1.187784518762576, 48.6532934022401, 0],\n            [-1.187825157509364, 48.65328153473148, 0],\n            [-1.187864537744696, 48.65326793160741, 0],\n            [-1.187902490833428, 48.6532526511201, 0],\n            [-1.187909216244356, 48.65324952687111, 0],\n            [-1.187988945709786, 48.65326568144791, 0],\n            [-1.188005032512536, 48.65326879752022, 0],\n            [-1.188048177356413, 48.65327577350493, 0],\n            [-1.188091918455196, 48.65328086492811, 0],\n            [-1.188136068498098, 48.65328404998677, 0],\n            [-1.188180438422812, 48.65328531504174, 0],\n            [-1.188224838225467, 48.6532846546757, 0],\n            [-1.188269077774171, 48.65328207171653, 0],\n            [-1.188312967623366, 48.6532775772252, 0],\n            [-1.188356319825155, 48.65327119044817, 0],\n            [-1.188398948734037, 48.65326293873549, 0],\n            [-1.188440671802418, 48.65325285742295, 0],\n            [-1.188481310361536, 48.6532409896816, 0],\n            [-1.188520690387656, 48.65322738633203, 0],\n            [-1.188550261921357, 48.65321567622387, 0],\n            [-1.190481776837007, 48.65240600341343, 0],\n            [-1.190490157890118, 48.65240243267529, 0],\n            [-1.19051582888243, 48.65239075274894, 0],\n            [-1.193554134844552, 48.65093921310398, 0],\n            [-1.193564825163922, 48.65093399950827, 0],\n            [-1.193599439551518, 48.65091556579884, 0],\n            [-1.19363216023638, 48.65089567152148, 0],\n            [-1.193662847102708, 48.6508744018682, 0],\n            [-1.193691368745216, 48.65085184792078, 0],\n            [-1.1937176030304, 48.65082810626018, 0],\n            [-1.193741437620821, 48.65080327855337, 0],\n            [-1.19376277045518, 48.6507774711181, 0],\n            [-1.193781510185747, 48.6507507944671, 0],\n            [-1.193797576569351, 48.65072336283517, 0],\n            [-1.193810900811061, 48.65069529368996, 0],\n            [-1.193821425858694, 48.65066670722867, 0],\n            [-1.19382910664668, 48.65063772586393, 0],\n            [-1.193833910289723, 48.65060847369876, 0],\n            [-1.193835816222695, 48.65057907599584, 0],\n            [-1.193834816289299, 48.65054965864081, 0],\n            [-1.193830914776366, 48.65052034760318, 0],\n            [-1.193829638160913, 48.65051377834664, 0],\n            [-1.193609884164992, 48.64944513418621, 0],\n            [-1.193604374615356, 48.64942262422446, 0],\n            [-1.193594732762739, 48.64939390135042, 0],\n            [-1.193582276459391, 48.64936565781867, 0],\n            [-1.193567059049199, 48.64933801457127, 0],\n            [-1.193549145699595, 48.64931108997994, 0],\n            [-1.193528613121577, 48.64928499933858, 0],\n            [-1.193505549241711, 48.64925985436994, 0],\n            [-1.193480052825433, 48.64923576274721, 0],\n            [-1.193452233054066, 48.64921282763271, 0],\n            [-1.193422209057298, 48.64919114723664, 0],\n            [-1.193390109402743, 48.64917081439612, 0],\n            [-1.19335607154605, 48.64915191617756, 0],\n            [-1.193320241241507, 48.6491345335047, 0],\n            [-1.193282771918403, 48.64911874081099, 0],\n            [-1.193243824024113, 48.64910460572173, 0],\n            [-1.193203564336649, 48.64909218876411, 0],\n            [-1.193162165250949, 48.64908154310819, 0],\n            [-1.19311980404063, 48.6490727143392, 0],\n            [-1.193076662098371, 48.64906574026216, 0],\n            [-1.19303292416046, 48.64906065074059, 0],\n            [-1.192988777514441, 48.64905746756783, 0],\n            [-1.192966488681122, 48.6490565919969, 0],\n            [-1.189498749058369, 48.64895821794163, 0],\n            [-1.189476671645311, 48.64895782965103, 0],\n            [-1.189432275678168, 48.64895849050232, 0],\n            [-1.189388039991635, 48.64896107391137, 0],\n            [-1.18934415400471, 48.6489655688159, 0],\n            [-1.189300805639073, 48.64897195596855, 0],\n            [-1.189258180514523, 48.64898020801915, 0],\n            [-1.189216461153877, 48.6489902896323, 0],\n            [-1.189175826202273, 48.64900215763786, 0],\n            [-1.189136449661086, 48.64901576121654, 0],\n            [-1.189106880823807, 48.64902747144124, 0],\n            [-1.18722744104562, 48.64981533685799, 0],\n            [-1.187219060101061, 48.64981890739618, 0],\n            [-1.187182698910583, 48.64983579958754, 0],\n            [-1.187148082914633, 48.64985423135969, 0],\n            [-1.187115360342921, 48.64987412378664, 0],\n            [-1.187084671318379, 48.6498953916876, 0],\n            [-1.187056147256127, 48.64991794399181, 0],\n            [-1.187029910301498, 48.64994168412856, 0],\n            [-1.18700607280678, 48.64996651044044, 0],\n            [-1.186984736849899, 48.64999231661896, 0],\n            [-1.186965993797409, 48.65001899215957, 0],\n            [-1.186949923913265, 48.65004642283475, 0],\n            [-1.18693659601496, 48.65007449118323, 0],\n            [-1.186926067178638, 48.65010307701301, 0],\n            [-1.186918382495088, 48.65013205791598, 0],\n            [-1.186913574875925, 48.65016130979201, 0],\n            [-1.186911664913197, 48.65019070738046, 0],\n            [-1.186912660790678, 48.65022012479652, 0],\n            [-1.186916558248974, 48.65024943607021, 0],\n            [-1.186917834285171, 48.65025600701116, 0],\n            [-1.18697259624204, 48.65052247793741, 0],\n            [-1.186733262865383, 48.65084762543689, 0],\n            [-1.186718950109602, 48.65086839199936, 0],\n            [-1.186702879819284, 48.65089582263828, 0],\n            [-1.186689551558069, 48.65092389095639, 0],\n            [-1.186683599623584, 48.65093903868794, 0],\n            [-1.186668667814614, 48.65097994778673, 0],\n            [-1.186664861473392, 48.65098068455525, 0],\n            [-1.186623139933769, 48.65099076522272, 0],\n            [-1.186582502754268, 48.65100263230683, 0],\n            [-1.186543123945734, 48.65101623499234, 0],\n            [-1.186505172131482, 48.65103151503179, 0],\n            [-1.186468809824677, 48.65104840699523, 0],\n            [-1.186434192732664, 48.65106683855019, 0],\n            [-1.186401469089768, 48.65108673077158, 0],\n            [-1.18637077902354, 48.65110799847954, 0],\n            [-1.186342253953594, 48.65113055060411, 0],\n            [-1.186316016029541, 48.65115429057546, 0],\n            [-1.186292177607804, 48.65117911673674, 0],\n            [-1.186270840770307, 48.6512049227802, 0],\n            [-1.186252096887361, 48.65123159820183, 0],\n            [-1.186236026226539, 48.6512590287746, 0],\n            [-1.18622269760855, 48.65128709703764, 0],\n            [-1.186212168112695, 48.65131568279952, 0],\n            [-1.186204482832542, 48.6513446636522, 0],\n            [-1.186199674682344, 48.65137391549587, 0],\n            [-1.186197764256347, 48.65140331306996, 0],\n            [-1.18619867194715, 48.65143013612602, 0],\n            [-1.186196697951802, 48.65143150405623, 0],\n            [-1.186168172620346, 48.65145405613703, 0],\n            [-1.186141934445373, 48.65147779606789, 0],\n            [-1.186123425106691, 48.65149675172897, 0],\n            [-1.18548485702374, 48.6521881692393, 0],\n            [-1.185479527553675, 48.65219403967279, 0],\n            [-1.185458189868716, 48.65221984556318, 0],\n            [-1.185439445176677, 48.65224652084996, 0],\n            [-1.185423373748309, 48.65227395130683, 0],\n            [-1.185410044407917, 48.65230201947345, 0],\n            [-1.185399514237842, 48.6523306051586, 0],\n            [-1.185391828334328, 48.65235958595477, 0],\n            [-1.185387019614466, 48.65238883776225, 0],\n            [-1.185385108674979, 48.6524182353208, 0],\n            [-1.185386103703738, 48.65244765274566, 0],\n            [-1.185390000445068, 48.6524769640668, 0],\n            [-1.185396782217432, 48.65250604376827, 0],\n            [-1.185406419985176, 48.65253476732597, 0],\n            [-1.185410695453155, 48.65254526491832, 0],\n            [-1.185635314224218, 48.65307139329811, 0],\n            [-1.18564349141828, 48.65308914010341, 0],\n            [-1.185658705608608, 48.65311678439598, 0],\n            [-1.185676616089746, 48.65314371021388, 0],\n            [-1.185697146169882, 48.65316980225537, 0],\n            [-1.185720207938976, 48.65319494878905, 0],\n            [-1.185745702645242, 48.65321904213202, 0],\n            [-1.185773521118287, 48.65324197911138, 0],\n            [-1.185803544236019, 48.6532636615057, 0],\n            [-1.185835643435618, 48.65328399646606, 0],\n            [-1.185869681262795, 48.65330289691341, 0],\n            [-1.185905511961662, 48.65332028191131, 0],\n            [-1.185942982098176, 48.65333607701309, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.208667740434286, 48.66018729271837, 0],\n            [-1.208624384851682, 48.66019368717697, 0],\n            [-1.208581753388103, 48.66020194641027, 0],\n            [-1.208540028593463, 48.6602120350517, 0],\n            [-1.208533828789973, 48.66021371189937, 0],\n            [-1.207131861581128, 48.66059824345537, 0],\n            [-1.207097421379617, 48.66060844103555, 0],\n            [-1.20705804059984, 48.66062205076235, 0],\n            [-1.2070200877711, 48.66063733758642, 0],\n            [-1.207003981663812, 48.66064453302487, 0],\n            [-1.206669557837221, 48.66079859409124, 0],\n            [-1.206649301457727, 48.66080829705572, 0],\n            [-1.206614685044931, 48.66082673469474, 0],\n            [-1.20658196303495, 48.66084663266569, 0],\n            [-1.206551275547918, 48.66086790576394, 0],\n            [-1.20652275399278, 48.66089046289665, 0],\n            [-1.206496520503939, 48.66091420747232, 0],\n            [-1.206472687418874, 48.66093903781454, 0],\n            [-1.206451356796685, 48.6609648475977, 0],\n            [-1.206432619981146, 48.66099152630166, 0],\n            [-1.206416557209233, 48.66101895968531, 0],\n            [-1.206403454568401, 48.66104651502528, 0],\n            [-1.205923587389628, 48.66218171732532, 0],\n            [-1.205923370079598, 48.66218223257492, 0],\n            [-1.205912849501269, 48.66221082012457, 0],\n            [-1.205905173909547, 48.66223980227558, 0],\n            [-1.205900376177116, 48.66226905492268, 0],\n            [-1.205898476853717, 48.66229845280189, 0],\n            [-1.205899484077522, 48.6623278700271, 0],\n            [-1.205903393540615, 48.6623571806292, 0],\n            [-1.205910188506985, 48.66238625909528, 0],\n            [-1.205919839884502, 48.66241498090649, 0],\n            [-1.205932306348962, 48.66244322307082, 0],\n            [-1.205947534521565, 48.6624708646502, 0],\n            [-1.20596545919659, 48.6624977872779, 0],\n            [-1.205986003621371, 48.66252387566602, 0],\n            [-1.206009079824519, 48.66254901809863, 0],\n            [-1.206034588992417, 48.6625731069105, 0],\n            [-1.206062421892662, 48.66259603894797, 0],\n            [-1.20609245934161, 48.66261771601107, 0],\n            [-1.206124572714691, 48.66263804527338, 0],\n            [-1.206158624497224, 48.66265693968038, 0],\n            [-1.206194468873572, 48.66267431832163, 0],\n            [-1.206231952350814, 48.66269010677753, 0],\n            [-1.206270914416967, 48.66270423743786, 0],\n            [-1.206311188227693, 48.66271664979168, 0],\n            [-1.206352601321048, 48.66272729068596, 0],\n            [-1.206394976355929, 48.66273611455376, 0],\n            [-1.206433462071344, 48.66274242456987, 0],\n            [-1.207418186983236, 48.66288379218516, 0],\n            [-1.207422856810021, 48.6628844511841, 0],\n            [-1.207466608226551, 48.66288953520722, 0],\n            [-1.207510767930864, 48.66289271279818, 0],\n            [-1.207555146819288, 48.66289397034956, 0],\n            [-1.207599554849541, 48.66289330247628, 0],\n            [-1.207643801854521, 48.66289071203827, 0],\n            [-1.207687698356694, 48.66288621012857, 0],\n            [-1.207731056379686, 48.66287981602552, 0],\n            [-1.207773690253138, 48.66287155711034, 0],\n            [-1.207815417408109, 48.66286146874987, 0],\n            [-1.207856059158394, 48.66284959414518, 0],\n            [-1.207895441466549, 48.66283598414632, 0],\n            [-1.207933395688514, 48.66282069703474, 0],\n            [-1.207969759296099, 48.66280379827375, 0],\n            [-1.208004376573084, 48.66278536022802, 0],\n            [-1.208037099281787, 48.6627654618538, 0],\n            [-1.208067787298095, 48.66274418836046, 0],\n            [-1.208096309211666, 48.66272163084625, 0],\n            [-1.208122542887877, 48.66269788590742, 0],\n            [-1.208146375991848, 48.66267305522512, 0],\n            [-1.20815869366427, 48.66265864417345, 0],\n            [-1.208376974834349, 48.66239192544576, 0],\n            [-1.20876415012068, 48.66212639898349, 0],\n            [-1.208781762845319, 48.66211385008661, 0],\n            [-1.208810284081012, 48.66209129239361, 0],\n            [-1.208836517091376, 48.66206754729033, 0],\n            [-1.208860349544128, 48.66204271645842, 0],\n            [-1.208881679387139, 48.66201690622891, 0],\n            [-1.208900415285492, 48.66199022712654, 0],\n            [-1.20891647701256, 48.66196279339657, 0],\n            [-1.208927965796305, 48.66193899063353, 0],\n            [-1.20944551286019, 48.66075415450932, 0],\n            [-1.209447342770234, 48.66074988638299, 0],\n            [-1.209457861033794, 48.66072129850588, 0],\n            [-1.209465534346459, 48.66069231611383, 0],\n            [-1.209470329854609, 48.66066306331418, 0],\n            [-1.209472227028408, 48.66063366537245, 0],\n            [-1.209471217748588, 48.66060424817509, 0],\n            [-1.209467306342509, 48.66057493769101, 0],\n            [-1.209460509564029, 48.66054585943221, 0],\n            [-1.209450856523202, 48.66051713791536, 0],\n            [-1.20943838856016, 48.66048889612993, 0],\n            [-1.209423159069052, 48.6604612550105, 0],\n            [-1.209405233268848, 48.66043433291971, 0],\n            [-1.209384687923962, 48.66040824514073, 0],\n            [-1.209361611015538, 48.66038310338397, 0],\n            [-1.209336101364926, 48.660359015309, 0],\n            [-1.209308268209985, 48.66033608406293, 0],\n            [-1.209278230737796, 48.66031440783912, 0],\n            [-1.209246117573708, 48.66029407945715, 0],\n            [-1.209212066231002, 48.6602751859643, 0],\n            [-1.209176222521842, 48.66025780826409, 0],\n            [-1.209138739933189, 48.66024202076845, 0],\n            [-1.209099778968814, 48.66022789108068, 0],\n            [-1.209059506462884, 48.66021547970463, 0],\n            [-1.209018094865193, 48.66020483978661, 0],\n            [-1.208975721502914, 48.66019601688716, 0],\n            [-1.208932567820826, 48.6601890487863, 0],\n            [-1.208888818605396, 48.66018396532174, 0],\n            [-1.20884466119253, 48.66018078826136, 0],\n            [-1.208800284666076, 48.66017953120894, 0],\n            [-1.208755879048094, 48.66018019954776, 0],\n            [-1.20871163448512, 48.66018279041548, 0],\n            [-1.208667740434286, 48.66018729271837, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.196141747783353, 48.665627280773, 0],\n            [-1.196173859055274, 48.66564761281908, 0],\n            [-1.196207909136609, 48.66566651017852, 0],\n            [-1.196243752219011, 48.66568389192815, 0],\n            [-1.196281234814998, 48.66569968363514, 0],\n            [-1.196320196416443, 48.66571381767536, 0],\n            [-1.196360470181026, 48.66572623352319, 0],\n            [-1.196401883646923, 48.66573687801104, 0],\n            [-1.196444259471572, 48.66574570555621, 0],\n            [-1.19648741619105, 48.66575267835687, 0],\n            [-1.196531168997048, 48.66575776655377, 0],\n            [-1.1965753305287, 48.66576094835784, 0],\n            [-1.196619711674478, 48.66576221014363, 0],\n            [-1.196664122382489, 48.66576154650797, 0],\n            [-1.19670837247414, 48.66575896029264, 0],\n            [-1.196747499281115, 48.66575504642617, 0],\n            [-1.199755814701626, 48.66539439044286, 0],\n            [-1.199760587810035, 48.66539380646402, 0],\n            [-1.199803949002871, 48.66538741536122, 0],\n            [-1.199846586304001, 48.66537915939659, 0],\n            [-1.199888317129796, 48.66536907392437, 0],\n            [-1.19991312560537, 48.66536207895145, 0],\n            [-1.201832957295612, 48.6647906509407, 0],\n            [-1.201848794101439, 48.6647857738572, 0],\n            [-1.201888179552839, 48.66477216592431, 0],\n            [-1.201926137062235, 48.66475688080445, 0],\n            [-1.201962504088525, 48.66473998395202, 0],\n            [-1.201968125574582, 48.66473715553244, 0],\n            [-1.203130315132872, 48.66414605591847, 0],\n            [-1.203159313757574, 48.66413044781481, 0],\n            [-1.203192039258623, 48.66411055082595, 0],\n            [-1.203222730145335, 48.66408927863215, 0],\n            [-1.203251254995137, 48.66406672232602, 0],\n            [-1.20327639546838, 48.6640440386127, 0],\n            [-1.203797169100218, 48.66354193895945, 0],\n            [-1.203798265270772, 48.66354087884037, 0],\n            [-1.203822100909315, 48.6635160490589, 0],\n            [-1.203843433963079, 48.66349023976991, 0],\n            [-1.203862173083334, 48.66346356149417, 0],\n            [-1.203878238029468, 48.66343612847335, 0],\n            [-1.20388041006442, 48.66343196082209, 0],\n            [-1.204787489268508, 48.66166335048834, 0],\n            [-1.205715649697823, 48.66080991829035, 0],\n            [-1.205725479979232, 48.66080063465137, 0],\n            [-1.205742788189677, 48.66078296771654, 0],\n            [-1.206311010477659, 48.66017209218758, 0],\n            [-1.20632222116158, 48.66017615824559, 0],\n            [-1.206362492960476, 48.66018857058354, 0],\n            [-1.206403903982907, 48.66019921146133, 0],\n            [-1.206446276896764, 48.6602080353117, 0],\n            [-1.206489430250535, 48.66021500434876, 0],\n            [-1.206533179250418, 48.66022008872928, 0],\n            [-1.206577336551753, 48.6602232666805, 0],\n            [-1.2066217130612, 48.6602245245936, 0],\n            [-1.206666118746689, 48.66022385708191, 0],\n            [-1.206710363451129, 48.6602212670038, 0],\n            [-1.206754257706839, 48.66021676545078, 0],\n            [-1.206797613547117, 48.66021037169967, 0],\n            [-1.206840245310836, 48.66020211313011, 0],\n            [-1.20688197043811, 48.66019202510765, 0],\n            [-1.206922610251644, 48.66018015083173, 0],\n            [-1.206961990722029, 48.660166541151, 0],\n            [-1.206999943213138, 48.66015125434569, 0],\n            [-1.207036305204217, 48.6601343558777, 0],\n            [-1.207070920985878, 48.66011591811043, 0],\n            [-1.207103642326994, 48.66009601999883, 0],\n            [-1.20713432910935, 48.66007474675151, 0],\n            [-1.207162849927557, 48.66005218946527, 0],\n            [-1.207189082652149, 48.6600284447356, 0],\n            [-1.207212914951943, 48.66000361424274, 0],\n            [-1.20723424477563, 48.65997780431611, 0],\n            [-1.207252980788272, 48.65995112547917, 0],\n            [-1.207269042762882, 48.65992369197619, 0],\n            [-1.207282361923097, 48.6598956212827, 0],\n            [-1.207291488124591, 48.65987133669223, 0],\n            [-1.207630206736929, 48.65884948558358, 0],\n            [-1.209796757221486, 48.65707634558959, 0],\n            [-1.209803517113472, 48.65707072157717, 0],\n            [-1.209829747036246, 48.65704697623799, 0],\n            [-1.209853576619573, 48.65702214519074, 0],\n            [-1.209874903823676, 48.65699633476714, 0],\n            [-1.209884798624954, 48.65698281364236, 0],\n            [-1.210610226044988, 48.65594779625716, 0],\n            [-1.211139224288138, 48.65535309246679, 0],\n            [-1.211365747426565, 48.65524871325008, 0],\n            [-1.21138599770442, 48.65523901080859, 0],\n            [-1.211420608522311, 48.65522057172113, 0],\n            [-1.211453324957772, 48.65520067236077, 0],\n            [-1.211484006913628, 48.65517939794135, 0],\n            [-1.211512523005096, 48.65515683956478, 0],\n            [-1.211538751122934, 48.65513309383132, 0],\n            [-1.211562578955661, 48.65510826242535, 0],\n            [-1.211583904471214, 48.6550824516803, 0],\n            [-1.21160263635314, 48.65505577212304, 0],\n            [-1.211618694391858, 48.65502833800103, 0],\n            [-1.211632009828292, 48.65500026679235, 0],\n            [-1.211633708925115, 48.65499615176141, 0],\n            [-1.212262279399705, 48.65344489577172, 0],\n            [-1.212271095544559, 48.65342042266268, 0],\n            [-1.212278766122412, 48.65339144006739, 0],\n            [-1.212283559298348, 48.65336218713507, 0],\n            [-1.212285454552502, 48.65333278913168, 0],\n            [-1.212284443773861, 48.65330337194412, 0],\n            [-1.212280531296039, 48.65327406154113, 0],\n            [-1.212273733877851, 48.65324498343425, 0],\n            [-1.212264080631689, 48.65321626213971, 0],\n            [-1.212251612898903, 48.65318802064592, 0],\n            [-1.212242593916821, 48.65317098500754, 0],\n            [-1.211874160129702, 48.65251736855066, 0],\n            [-1.212016685551027, 48.65214199774288, 0],\n            [-1.212022799785766, 48.65212440980748, 0],\n            [-1.212030470309022, 48.65209542722626, 0],\n            [-1.212035263505862, 48.65206617430173, 0],\n            [-1.212037158856338, 48.65203677629983, 0],\n            [-1.212036148249041, 48.65200735910743, 0],\n            [-1.212032236016702, 48.65197804869337, 0],\n            [-1.212025438917099, 48.65194897056913, 0],\n            [-1.212015786061524, 48.65192024925118, 0],\n            [-1.21200331878931, 48.65189200772786, 0],\n            [-1.211988090491727, 48.65186436693277, 0],\n            [-1.21197016638235, 48.65183744522706, 0],\n            [-1.21194962321866, 48.65181135789221, 0],\n            [-1.211926548972346, 48.65178621663694, 0],\n            [-1.211901042453429, 48.65176212911843, 0],\n            [-1.211891479309493, 48.65175389845536, 0],\n            [-1.211450454561052, 48.65138325663013, 0],\n            [-1.21159618993502, 48.65099944731832, 0],\n            [-1.211602305736685, 48.65098185529896, 0],\n            [-1.211609976328907, 48.65095287274088, 0],\n            [-1.211614769661518, 48.65092361983171, 0],\n            [-1.211616665214532, 48.65089422183443, 0],\n            [-1.211615654876119, 48.65086480463599, 0],\n            [-1.211611742977674, 48.65083549420531, 0],\n            [-1.211604946275653, 48.65080641605387, 0],\n            [-1.211595293879331, 48.65077769469821, 0],\n            [-1.211582827126501, 48.65074945312693, 0],\n            [-1.211567599405776, 48.65072181227383, 0],\n            [-1.211549675928694, 48.65069489050019, 0],\n            [-1.211529133449696, 48.65066880308793, 0],\n            [-1.211506059937675, 48.65064366174603, 0],\n            [-1.211480554199373, 48.65061957413201, 0],\n            [-1.211452725455984, 48.65059664339127, 0],\n            [-1.211422692875661, 48.65057496771497, 0],\n            [-1.211390585062673, 48.65055463992016, 0],\n            [-1.211356539507738, 48.65053574705172, 0],\n            [-1.211320701997898, 48.65051837001041, 0],\n            [-1.211283225993678, 48.65050258320554, 0],\n            [-1.211244271970631, 48.65048845423723, 0],\n            [-1.211204006733246, 48.65047604360644, 0],\n            [-1.211162602700204, 48.65046540445619, 0],\n            [-1.211120237166123, 48.65045658234374, 0],\n            [-1.21107709154259, 48.65044961504572, 0],\n            [-1.211033350581297, 48.65044453239658, 0],\n            [-1.210989201582839, 48.65044135616023, 0],\n            [-1.210944833595136, 48.65044009993758, 0],\n            [-1.210900436603533, 48.65044076910778, 0],\n            [-1.210856200717818, 48.65044336080536, 0],\n            [-1.210812315357832, 48.65044786393263, 0],\n            [-1.210768968442495, 48.65045425920702, 0],\n            [-1.210758941563048, 48.6504560227441, 0],\n            [-1.209826515186359, 48.650625079771, 0],\n            [-1.209943670716256, 48.65027152737947, 0],\n            [-1.210991686897613, 48.64994126166868, 0],\n            [-1.210994271296069, 48.6499404427828, 0],\n            [-1.211033642648267, 48.64992683169316, 0],\n            [-1.211071586176107, 48.64991154352855, 0],\n            [-1.21110793939724, 48.6498946437566, 0],\n            [-1.211142546639792, 48.64987620474632, 0],\n            [-1.211155385259839, 48.64986870468563, 0],\n            [-1.212587986423617, 48.64901026809634, 0],\n            [-1.212607860180757, 48.64899786861949, 0],\n            [-1.21263853786493, 48.64897659388184, 0],\n            [-1.212667049922345, 48.64895403520843, 0],\n            [-1.212693274261005, 48.64893028920055, 0],\n            [-1.212717098585698, 48.64890545754394, 0],\n            [-1.212738420879229, 48.64887964657298, 0],\n            [-1.212757149838892, 48.64885296681574, 0],\n            [-1.212773205267959, 48.64882553252022, 0],\n            [-1.212775376066539, 48.64882136443966, 0],\n            [-1.213361903653158, 48.6476770003389, 0],\n            [-1.213373045472506, 48.64765309700595, 0],\n            [-1.213383558766481, 48.64762450874271, 0],\n            [-1.213391227819614, 48.64759552606149, 0],\n            [-1.213396019796469, 48.64756627307111, 0],\n            [-1.213397914182017, 48.6475368750377, 0],\n            [-1.213396902869384, 48.64750745784829, 0],\n            [-1.21339299019416, 48.64747814747178, 0],\n            [-1.213386192916119, 48.64744906941936, 0],\n            [-1.213376540147015, 48.64742034820722, 0],\n            [-1.21336407322618, 48.6473921068234, 0],\n            [-1.213348845543045, 48.64736446620077, 0],\n            [-1.213330922308908, 48.64733754469966, 0],\n            [-1.213310380277193, 48.64731145760082, 0],\n            [-1.213287307414872, 48.64728631661193, 0],\n            [-1.213261802525911, 48.64726222938899, 0],\n            [-1.21325552685297, 48.64725678369738, 0],\n            [-1.213247581391701, 48.64724999688243, 0],\n            [-1.213249846442468, 48.64724986412166, 0],\n            [-1.21329372879432, 48.64724536005979, 0],\n            [-1.213337072623566, 48.6472389638288, 0],\n            [-1.213379692320578, 48.64723070281916, 0],\n            [-1.213421405377206, 48.64722061240654, 0],\n            [-1.213462033167538, 48.64720873580087, 0],\n            [-1.213501401713961, 48.64719512386078, 0],\n            [-1.213539342431349, 48.64717983487602, 0],\n            [-1.213575692849305, 48.64716293431795, 0],\n            [-1.213610297308003, 48.64714449455887, 0],\n            [-1.213643007624958, 48.6471245945623, 0],\n            [-1.213673683728835, 48.64710331954479, 0],\n            [-1.213702194260291, 48.64708076061099, 0],\n            [-1.213728417133744, 48.6470570143631, 0],\n            [-1.213752240060295, 48.6470321824881, 0],\n            [-1.213773561028686, 48.64700637132126, 0],\n            [-1.213792288742006, 48.64697969139139, 0],\n            [-1.213808343008562, 48.64695225694736, 0],\n            [-1.213815735747803, 48.64693746802404, 0],\n            [-1.214054854053039, 48.6464298163696, 0],\n            [-1.214326395840975, 48.6461216089379, 0],\n            [-1.214344502086637, 48.64612054748482, 0],\n            [-1.214388383355356, 48.64611604300328, 0],\n            [-1.214431726072371, 48.64610964635766, 0],\n            [-1.214474344632852, 48.64610138494019, 0],\n            [-1.214516056533486, 48.64609129412824, 0],\n            [-1.214556683153314, 48.64607941713349, 0],\n            [-1.214596050519761, 48.64606580481622, 0],\n            [-1.214633990052696, 48.64605051546779, 0],\n            [-1.214670339286879, 48.64603361456112, 0],\n            [-1.214704942567459, 48.64601517446999, 0],\n            [-1.214737651717088, 48.64599527415939, 0],\n            [-1.214768326669367, 48.6459739988472, 0],\n            [-1.214796836069887, 48.64595143963921, 0],\n            [-1.214823057837944, 48.64592769313904, 0],\n            [-1.214846879689355, 48.64590286103456, 0],\n            [-1.214868199617458, 48.64587704966203, 0],\n            [-1.214886926329819, 48.64585036955123, 0],\n            [-1.214902979639001, 48.64582293495172, 0],\n            [-1.21491629080605, 48.64579486334392, 0],\n            [-1.214926802834777, 48.64576627493548, 0],\n            [-1.214934470715408, 48.6457372921474, 0],\n            [-1.214939261617862, 48.64570803908882, 0],\n            [-1.214941155031588, 48.64567864102624, 0],\n            [-1.214940142853866, 48.64564922384682, 0],\n            [-1.214934533827863, 48.64558234794652, 0],\n            [-1.21608855596933, 48.64451046700448, 0],\n            [-1.216096604261003, 48.64450282510422, 0],\n            [-1.216120424809057, 48.64447799273257, 0],\n            [-1.216141743479886, 48.6444521811206, 0],\n            [-1.216160468986312, 48.64442550079909, 0],\n            [-1.216176521146393, 48.64439806601852, 0],\n            [-1.216189831225771, 48.64436999426, 0],\n            [-1.216200342232956, 48.6443414057321, 0],\n            [-1.216208009162787, 48.64431242285604, 0],\n            [-1.216212799189003, 48.64428316974143, 0],\n            [-1.216214691804887, 48.64425377165502, 0],\n            [-1.216213678911138, 48.64422435448405, 0],\n            [-1.216209764850142, 48.64419504419737, 0],\n            [-1.21620296638759, 48.64416596630571, 0],\n            [-1.216193312640288, 48.64413724532468, 0],\n            [-1.216180844951826, 48.64410900424112, 0],\n            [-1.216165616714795, 48.64408136398676, 0],\n            [-1.216147693143008, 48.64405444292051, 0],\n            [-1.216127150991249, 48.6440283563211, 0],\n            [-1.216104078227029, 48.64400321589396, 0],\n            [-1.216078573653896, 48.64397912929285, 0],\n            [-1.216050746488044, 48.64395619965877, 0],\n            [-1.216020715890755, 48.64393452517805, 0],\n            [-1.215988610458143, 48.64391419866281, 0],\n            [-1.215954567670374, 48.64389530715234, 0],\n            [-1.215930262437288, 48.64388326369759, 0],\n            [-1.215929283172299, 48.64388280193768, 0],\n            [-1.215834190058156, 48.64383784320634, 0],\n            [-1.216117057299206, 48.64357510073584, 0],\n            [-1.216118027156761, 48.64357442801256, 0],\n            [-1.216146534592233, 48.64355186846513, 0],\n            [-1.216171652714615, 48.64352918795458, 0],\n            [-1.216305029598572, 48.64340049993934, 0],\n            [-1.216398241796333, 48.6433139178729, 0],\n            [-1.216517568817817, 48.643243037912, 0],\n            [-1.216695951506857, 48.64314082867317, 0],\n            [-1.216727177646171, 48.64312177353738, 0],\n            [-1.216757850005004, 48.64310049768843, 0],\n            [-1.21678635688502, 48.64307793798103, 0],\n            [-1.216811477736399, 48.64305525418967, 0],\n            [-1.217309766484882, 48.64257445667995, 0],\n            [-1.217974084411511, 48.64219381126623, 0],\n            [-1.21797555610198, 48.64219296921928, 0],\n            [-1.21800678887237, 48.64217390931894, 0],\n            [-1.218037460112278, 48.64215263312606, 0],\n            [-1.218065965881383, 48.64213007309889, 0],\n            [-1.218092184114628, 48.64210632584445, 0],\n            [-1.21809350369801, 48.64210503990541, 0],\n            [-1.218681089811415, 48.64153029209299, 0],\n            [-1.218703588124328, 48.64150674512521, 0],\n            [-1.218724904210804, 48.64148093302752, 0],\n            [-1.21874362724143, 48.64145425227854, 0],\n            [-1.218759677044856, 48.64142681713071, 0],\n            [-1.218772984896837, 48.64139874506656, 0],\n            [-1.218783493815372, 48.64137015629605, 0],\n            [-1.218791158804315, 48.64134117324149, 0],\n            [-1.218795947045639, 48.64131192001317, 0],\n            [-1.21879783804034, 48.64128252187832, 0],\n            [-1.218796823696011, 48.64125310472453, 0],\n            [-1.218792908361255, 48.64122379452031, 0],\n            [-1.218786108807215, 48.6411947167763, 0],\n            [-1.218776454155397, 48.64116599600733, 0],\n            [-1.218763985753266, 48.64113775519944, 0],\n            [-1.218748756996431, 48.64111011528308, 0],\n            [-1.218730833100983, 48.64108319461575, 0],\n            [-1.218710290823004, 48.64105710847442, 0],\n            [-1.218687218130647, 48.64103196856267, 0],\n            [-1.218661713827058, 48.64100788253198, 0],\n            [-1.218633887127334, 48.64098495352085, 0],\n            [-1.218603857190737, 48.6409632797131, 0],\n            [-1.218571752610622, 48.64094295391782, 0],\n            [-1.218537710863381, 48.64092406317128, 0],\n            [-1.218503475968442, 48.64090741355324, 0],\n            [-1.217443378989882, 48.64042492200069, 0],\n            [-1.217441780772084, 48.64042419679766, 0],\n            [-1.217404310366246, 48.64040841198442, 0],\n            [-1.217365362439902, 48.64039428508777, 0],\n            [-1.217325103771283, 48.64038187659993, 0],\n            [-1.217283706751031, 48.64037123965452, 0],\n            [-1.217281004788358, 48.64037061620907, 0],\n            [-1.216414269225117, 48.64017198018648, 0],\n            [-1.216217115448213, 48.64002086115919, 0],\n            [-1.216188363269235, 48.64000016774037, 0],\n            [-1.216156260279528, 48.63997984126682, 0],\n            [-1.216122220090941, 48.63996094980135, 0],\n            [-1.216086388467692, 48.63994357423843, 0],\n            [-1.216048918845067, 48.6399277889813, 0],\n            [-1.216009971671361, 48.63991366162338, 0],\n            [-1.215969713721647, 48.63990125265876, 0],\n            [-1.21592831738341, 48.63989061522323, 0],\n            [-1.215922030522498, 48.63988917754185, 0],\n            [-1.214687675800543, 48.639611375806, 0],\n            [-1.214651605576695, 48.63960399274212, 0],\n            [-1.214608468769749, 48.63959702676884, 0],\n            [-1.214596643146968, 48.6395954593164, 0],\n            [-1.210752597923495, 48.63910937871067, 0],\n            [-1.210720692241418, 48.63910586378783, 0],\n            [-1.210676553212327, 48.63910268742866, 0],\n            [-1.210632195231378, 48.63910143108395, 0],\n            [-1.210587808241175, 48.6391021001335, 0],\n            [-1.210543582308539, 48.63910469171236, 0],\n            [-1.210499706810764, 48.63910919472324, 0],\n            [-1.210456369624584, 48.63911558988421, 0],\n            [-1.210413756321918, 48.63912384981074, 0],\n            [-1.210372049374962, 48.63913393913369, 0],\n            [-1.210331427375737, 48.63914581464985, 0],\n            [-1.210292663219972, 48.63915920185052, 0],\n            [-1.209894014237107, 48.63930788621498, 0],\n            [-1.209865354202142, 48.63928973643623, 0],\n            [-1.209831316842611, 48.63927084310053, 0],\n            [-1.209795487883671, 48.63925346556902, 0],\n            [-1.209758020748857, 48.63923767825349, 0],\n            [-1.20971907587593, 48.63922354875604, 0],\n            [-1.209678820030153, 48.63921113758004, 0],\n            [-1.209637425589938, 48.63920049787065, 0],\n            [-1.209595069808895, 48.63919167518758, 0],\n            [-1.209559837064154, 48.63918583631539, 0],\n            [-1.209140422350035, 48.63912418360262, 0],\n            [-1.209132519361811, 48.63912305456823, 0],\n            [-1.209088788444124, 48.63911797117281, 0],\n            [-1.209044649507458, 48.6391147941849, 0],\n            [-1.209000291556606, 48.63911353720818, 0],\n            [-1.208955904534028, 48.63911420562538, 0],\n            [-1.208911678506688, 48.63911679657412, 0],\n            [-1.208867802852318, 48.63912129896006, 0],\n            [-1.208824465448293, 48.63912769350351, 0],\n            [-1.208781851867449, 48.63913595282298, 0],\n            [-1.208740144583262, 48.63914604155167, 0],\n            [-1.208699522188974, 48.63915791648918, 0],\n            [-1.20866015863254, 48.63917152678639, 0],\n            [-1.208622222471627, 48.63918681416336, 0],\n            [-1.208585876152513, 48.6392037131586, 0],\n            [-1.208551275313918, 48.63922215140968, 0],\n            [-1.208518568120944, 48.63924204996273, 0],\n            [-1.208487894630257, 48.63926332361086, 0],\n            [-1.208459386190808, 48.63928588125872, 0],\n            [-1.208433164881004, 48.63930962631257, 0],\n            [-1.208409342985908, 48.63933445709416, 0],\n            [-1.208388022516778, 48.63936026727571, 0],\n            [-1.208369294773841, 48.63938694633547, 0],\n            [-1.208353239955566, 48.63941438003087, 0],\n            [-1.208339926814697, 48.63944245088787, 0],\n            [-1.208329412364586, 48.63947103870366, 0],\n            [-1.208321741633975, 48.63950002106149, 0],\n            [-1.208316947475165, 48.63952927385516, 0],\n            [-1.208315050422131, 48.63955867182003, 0],\n            [-1.208316058603769, 48.63958808906966, 0],\n            [-1.20831996770761, 48.63961739963479, 0],\n            [-1.208326760999599, 48.63964647800275, 0],\n            [-1.208336409394402, 48.639675199655, 0],\n            [-1.208348871580944, 48.63970344160031, 0],\n            [-1.208351439211093, 48.63970852216476, 0],\n            [-1.208490307210632, 48.6399779572966, 0],\n            [-1.208502962327906, 48.64000051801766, 0],\n            [-1.208520880364921, 48.64002744028703, 0],\n            [-1.208541416939142, 48.64005352825706, 0],\n            [-1.208558660622863, 48.64007232293123, 0],\n            [-1.208559399263631, 48.64009387211319, 0],\n            [-1.208563308548547, 48.64012318266905, 0],\n            [-1.208570102049489, 48.64015226102162, 0],\n            [-1.208579750680163, 48.64018098265245, 0],\n            [-1.208592213128616, 48.64020922457033, 0],\n            [-1.208607436032814, 48.64023686583829, 0],\n            [-1.208625354209796, 48.640263788091, 0],\n            [-1.208645890934657, 48.64028987604183, 0],\n            [-1.208668958269019, 48.64031501797713, 0],\n            [-1.208694457437196, 48.64033910623352, 0],\n            [-1.20872227924963, 48.64036203765997, 0],\n            [-1.20875230457006, 48.64038371405875, 0],\n            [-1.208784404826013, 48.64040404260676, 0],\n            [-1.208818442559045, 48.64042293625218, 0],\n            [-1.208854272013349, 48.64044031408785, 0],\n            [-1.208858278153548, 48.64044200213752, 0],\n            [-1.208853203406526, 48.64045580004309, 0],\n            [-1.208845532827534, 48.64048478243414, 0],\n            [-1.208840738879415, 48.64051403524788, 0],\n            [-1.208838842095326, 48.64054343321953, 0],\n            [-1.208839850602863, 48.64057285046269, 0],\n            [-1.208843760088458, 48.64060216100808, 0],\n            [-1.208850553816179, 48.64063123934307, 0],\n            [-1.208860202698852, 48.64065996094939, 0],\n            [-1.208872665423344, 48.6406882028359, 0],\n            [-1.208887888626462, 48.64071584406573, 0],\n            [-1.208905807124208, 48.64074276627368, 0],\n            [-1.208926344190016, 48.64076885417352, 0],\n            [-1.20894941188411, 48.64079399605145, 0],\n            [-1.208974911429346, 48.64081808424469, 0],\n            [-1.209002733634386, 48.64084101560231, 0],\n            [-1.20903275936161, 48.64086269192696, 0],\n            [-1.209064860036468, 48.64088302039571, 0],\n            [-1.209098898210708, 48.64090191396294, 0],\n            [-1.209133130143356, 48.64091856646128, 0],\n            [-1.209218664951033, 48.64095750612646, 0],\n            [-1.208616099063287, 48.64155942702978, 0],\n            [-1.208597315157216, 48.64157929629792, 0],\n            [-1.20857599383319, 48.64160510651065, 0],\n            [-1.208575263238005, 48.64160614725854, 0],\n            [-1.208323207739792, 48.64185969598036, 0],\n            [-1.208305628721431, 48.64187835719244, 0],\n            [-1.208284307121066, 48.64190416735043, 0],\n            [-1.208265578376171, 48.6419308463888, 0],\n            [-1.208249522689491, 48.64195828006521, 0],\n            [-1.208236208817706, 48.64198635090543, 0],\n            [-1.208225693776888, 48.64201493870695, 0],\n            [-1.208218022598775, 48.64204392105303, 0],\n            [-1.208213228137107, 48.64207317383751, 0],\n            [-1.208211330927678, 48.64210257179579, 0],\n            [-1.208212339099524, 48.64213198904145, 0],\n            [-1.208216248340714, 48.64216129960524, 0],\n            [-1.208223041916177, 48.6421903779745, 0],\n            [-1.208232690739717, 48.64221909963079, 0],\n            [-1.208245153498062, 48.64224734158265, 0],\n            [-1.208260376828318, 48.64227498289306, 0],\n            [-1.208278295545449, 48.64230190519636, 0],\n            [-1.208298832922348, 48.64232799320603, 0],\n            [-1.208321901017742, 48.64235313520788, 0],\n            [-1.208347401052745, 48.64237722353828, 0],\n            [-1.208356844144334, 48.64238500652766, 0],\n            [-1.208364130284565, 48.64239426185644, 0],\n            [-1.208379137233968, 48.64241103235032, 0],\n            [-1.208080646606893, 48.64253418174281, 0],\n            [-1.208047615048484, 48.64254058321864, 0],\n            [-1.208005904794534, 48.64255067167779, 0],\n            [-1.207965279477943, 48.64256254635218, 0],\n            [-1.207925913058878, 48.64257615639404, 0],\n            [-1.207887974107558, 48.64259144352444, 0],\n            [-1.207851625082108, 48.64260834228295, 0],\n            [-1.207817021632902, 48.64262678030812, 0],\n            [-1.207784311935971, 48.64264667864719, 0],\n            [-1.207753636059092, 48.64266795209395, 0],\n            [-1.20772512536113, 48.64269050955402, 0],\n            [-1.207698901930143, 48.64271425443456, 0],\n            [-1.207675078060506, 48.64273908505788, 0],\n            [-1.207653755771811, 48.64276489509702, 0],\n            [-1.20763502637212, 48.6427915740308, 0],\n            [-1.207618970066935, 48.64281900761724, 0],\n            [-1.207605655615514, 48.64284707838259, 0],\n            [-1.207595140036466, 48.64287566612465, 0],\n            [-1.207587468363869, 48.64290464842685, 0],\n            [-1.20758267345354, 48.64293390118326, 0],\n            [-1.207580775843151, 48.64296329912942, 0],\n            [-1.207581783663558, 48.64299271637898, 0],\n            [-1.20759369501918, 48.64313499019508, 0],\n            [-1.207591014837524, 48.64313579965944, 0],\n            [-1.207578416070754, 48.64313970857167, 0],\n            [-1.207539049095394, 48.64315331848007, 0],\n            [-1.207501109591276, 48.64316860548174, 0],\n            [-1.207464760018844, 48.64318550411687, 0],\n            [-1.207430156030889, 48.64320394202451, 0],\n            [-1.20739744580566, 48.64322384025234, 0],\n            [-1.207366769413274, 48.64324511359471, 0],\n            [-1.207338258214772, 48.64326767095761, 0],\n            [-1.207312034300352, 48.6432914157487, 0],\n            [-1.207288209966406, 48.6433162462906, 0],\n            [-1.207266887234646, 48.64334205625673, 0],\n            [-1.207248157414911, 48.64336873512628, 0],\n            [-1.207240396605775, 48.64338199479096, 0],\n            [-1.206627273138858, 48.64292806062919, 0],\n            [-1.206697515967212, 48.64272285473483, 0],\n            [-1.207265927219519, 48.64199219523461, 0],\n            [-1.207266495955257, 48.6419918492552, 0],\n            [-1.207297171625861, 48.64197057593785, 0],\n            [-1.207325682107836, 48.64194801858326, 0],\n            [-1.207351905315481, 48.64192427378698, 0],\n            [-1.207375728958759, 48.64189944322949, 0],\n            [-1.207397051023293, 48.64187363324065, 0],\n            [-1.207415780207477, 48.64184695434413, 0],\n            [-1.207431836313222, 48.64181952078451, 0],\n            [-1.207445150589683, 48.64179145003742, 0],\n            [-1.207455666027324, 48.64176286230712, 0],\n            [-1.207462969833504, 48.64173526939704, 0],\n            [-1.207476661741191, 48.6417118752274, 0],\n            [-1.207489975964156, 48.64168380447487, 0],\n            [-1.207500491353735, 48.64165521674033, 0],\n            [-1.207508162886024, 48.64162623444157, 0],\n            [-1.207512957715038, 48.64159698168573, 0],\n            [-1.207514855313516, 48.64156758373808, 0],\n            [-1.207513847560795, 48.64153816648521, 0],\n            [-1.207509938777258, 48.64150885589621, 0],\n            [-1.207503145705993, 48.64147977748333, 0],\n            [-1.207493497440746, 48.64145105576425, 0],\n            [-1.207481035301545, 48.64142281372914, 0],\n            [-1.20746581265738, 48.64139517231362, 0],\n            [-1.207447894697964, 48.64136824988162, 0],\n            [-1.207427358154098, 48.64134216171775, 0],\n            [-1.207404290969296, 48.64131701953415, 0],\n            [-1.207378791923182, 48.64129293099209, 0],\n            [-1.20735097020833, 48.64126999924083, 0],\n            [-1.20732094496262, 48.64124832247585, 0],\n            [-1.207288844759324, 48.64122799351894, 0],\n            [-1.207254807056168, 48.64120909942005, 0],\n            [-1.207230506936552, 48.641197054937, 0],\n            [-1.20670248359636, 48.64094733962969, 0],\n            [-1.205963238487293, 48.64059772289944, 0],\n            [-1.206172162977541, 48.64047365792687, 0],\n            [-1.206194306087667, 48.64045990476034, 0],\n            [-1.206224981277595, 48.64043863172809, 0],\n            [-1.20625349137206, 48.64041607463809, 0],\n            [-1.206279714287339, 48.64039233008481, 0],\n            [-1.206303537734395, 48.64036749974794, 0],\n            [-1.206324859699728, 48.64034168995603, 0],\n            [-1.206343588882053, 48.64031501123216, 0],\n            [-1.206359645083641, 48.64028757782003, 0],\n            [-1.206372959552908, 48.64025950719472, 0],\n            [-1.206383475279498, 48.64023091956006, 0],\n            [-1.206391147238086, 48.6402019373334, 0],\n            [-1.206395942580829, 48.64017268462159, 0],\n            [-1.206397840778268, 48.64014328668974, 0],\n            [-1.206396833707202, 48.64011386942423, 0],\n            [-1.206392925685056, 48.64008455879447, 0],\n            [-1.2063861334517, 48.64005548031265, 0],\n            [-1.206376486097265, 48.64002675849685, 0],\n            [-1.206364024937821, 48.63999851633756, 0],\n            [-1.20634880333836, 48.63997087477113, 0],\n            [-1.20633088648392, 48.63994395216186, 0],\n            [-1.206310351100546, 48.63991786379527, 0],\n            [-1.206287285127075, 48.63989272138439, 0],\n            [-1.206261787337635, 48.63986863259147, 0],\n            [-1.206233966919506, 48.6398457005668, 0],\n            [-1.206203943005071, 48.63982402350706, 0],\n            [-1.206171844161847, 48.63980369423526, 0],\n            [-1.206137807841765, 48.63978479980268, 0],\n            [-1.206101979792458, 48.63976742111652, 0],\n            [-1.206064513433942, 48.63975163259339, 0],\n            [-1.206025569200504, 48.63973750184075, 0],\n            [-1.205985313854687, 48.63972508936714, 0],\n            [-1.205943919772725, 48.63971444832328, 0],\n            [-1.205901564206751, 48.63970562427483, 0],\n            [-1.205858428525664, 48.6396986550067, 0],\n            [-1.205825920987482, 48.63969468931273, 0],\n            [-1.205824054542184, 48.63969449264046, 0],\n            [-1.205850702321667, 48.63967340892189, 0],\n            [-1.205876925039864, 48.63964966445973, 0],\n            [-1.205900748334041, 48.63962483420536, 0],\n            [-1.205922070191241, 48.63959902448719, 0],\n            [-1.205940799310776, 48.63957234582791, 0],\n            [-1.205956855494919, 48.63954491247092, 0],\n            [-1.205970169992503, 48.6395168418911, 0],\n            [-1.205980685792694, 48.63948825429198, 0],\n            [-1.205988357870067, 48.63945927209091, 0],\n            [-1.205993153376119, 48.63943001939455, 0],\n            [-1.205995051780993, 48.63940062146794, 0],\n            [-1.205994044960186, 48.63937120419752, 0],\n            [-1.205990137230406, 48.63934189355254, 0],\n            [-1.205983345330104, 48.63931281504544, 0],\n            [-1.205973698348011, 48.63928409319435, 0],\n            [-1.205961237598698, 48.63925585098989, 0],\n            [-1.205946016445121, 48.6392282093685, 0],\n            [-1.205928100070677, 48.63920128669501, 0],\n            [-1.205907565199393, 48.63917519825496, 0],\n            [-1.205884499767569, 48.6391500557618, 0],\n            [-1.205859002547354, 48.63912596687807, 0],\n            [-1.205831182723469, 48.63910303475443, 0],\n            [-1.205801159425761, 48.63908135758808, 0],\n            [-1.205769061219089, 48.63906102820243, 0],\n            [-1.205455559376882, 48.63887508943533, 0],\n            [-1.205421523953882, 48.6388561947888, 0],\n            [-1.205385696813388, 48.63883881587753, 0],\n            [-1.205348231371139, 48.63882302711919, 0],\n            [-1.205309288057666, 48.63880889612215, 0],\n            [-1.205269033631513, 48.63879648339609, 0],\n            [-1.205227640465059, 48.63878584209281, 0],\n            [-1.205185285806458, 48.63877701777894, 0],\n            [-1.205142151020715, 48.63877004824062, 0],\n            [-1.20509842081308, 48.6387649633217, 0],\n            [-1.205054282438105, 48.63876178479599, 0],\n            [-1.205009924898244, 48.63876052627405, 0],\n            [-1.20496553813414, 48.63876119314493, 0],\n            [-1.204921312211695, 48.63876378255313, 0],\n            [-1.204877436508165, 48.63876828341062, 0],\n            [-1.204834098901082, 48.63877467644461, 0],\n            [-1.204791484964263, 48.63878293427982, 0],\n            [-1.204749777172702, 48.63879302155576, 0],\n            [-1.204709154121699, 48.6388048950784, 0],\n            [-1.204669789761967, 48.63881850400464, 0],\n            [-1.204631852654852, 48.63883379006033, 0],\n            [-1.204601398535425, 48.63884794803217, 0],\n            [-1.204406521584849, 48.63877252379015, 0],\n            [-1.2043705643988, 48.63875955488, 0],\n            [-1.204330310243711, 48.63874714182394, 0],\n            [-1.204288917316525, 48.63873650018145, 0],\n            [-1.20424656286412, 48.63872767552049, 0],\n            [-1.204246497255122, 48.63872766340127, 0],\n            [-1.203415770652774, 48.63857423839049, 0],\n            [-1.203372701894434, 48.6385672803055, 0],\n            [-1.203328972041875, 48.638562194711, 0],\n            [-1.203284833956608, 48.63855901550342, 0],\n            [-1.203240476639789, 48.63855775629628, 0],\n            [-1.20319609003112, 48.63855842248155, 0],\n            [-1.203151864195866, 48.63856101120658, 0],\n            [-1.203107988510881, 48.63856551138638, 0],\n            [-1.203064650853638, 48.63857190375093, 0],\n            [-1.203022036798154, 48.63858016092791, 0],\n            [-1.202980328819823, 48.6385902475598, 0],\n            [-1.202939705515083, 48.63860212045499, 0],\n            [-1.202900340835407, 48.6386157287733, 0],\n            [-1.202862403343599, 48.63863101424323, 0],\n            [-1.202826055491491, 48.63864791141141, 0],\n            [-1.202791452924519, 48.63866634792329, 0],\n            [-1.202758743814858, 48.6386862448324, 0],\n            [-1.202728068227827, 48.63870751693889, 0],\n            [-1.202699557520992, 48.63873007315394, 0],\n            [-1.202673333782451, 48.63875381689012, 0],\n            [-1.202649509307938, 48.63877864647463, 0],\n            [-1.202628186119663, 48.638804455585, 0],\n            [-1.202609455529464, 48.63883113370395, 0],\n            [-1.20259339774794, 48.63885856659303, 0],\n            [-1.202580081540703, 48.63888663678145, 0],\n            [-1.202569563933937, 48.63891522406951, 0],\n            [-1.202561889970273, 48.6389442060426, 0],\n            [-1.202557092515439, 48.63897345859614, 0],\n            [-1.20255519211796, 48.63900285646659, 0],\n            [-1.202556196920621, 48.63903227376792, 0],\n            [-1.20256010262582, 48.63906158453057, 0],\n            [-1.202566892513752, 48.63909066324106, 0],\n            [-1.202576537513891, 48.63911938537945, 0],\n            [-1.202580813817202, 48.63912987857811, 0],\n            [-1.202672765446013, 48.63934513871723, 0],\n            [-1.202181497268835, 48.63936318037452, 0],\n            [-1.202137270673969, 48.6393657687077, 0],\n            [-1.202093394196417, 48.63937026849864, 0],\n            [-1.202050055717112, 48.63937666047899, 0],\n            [-1.202007440813466, 48.63938491727815, 0],\n            [-1.201965731964632, 48.63939500354002, 0],\n            [-1.201925107770683, 48.63940687607477, 0],\n            [-1.20188574218693, 48.63942048404376, 0],\n            [-1.201847803780054, 48.63943576917675, 0],\n            [-1.201811455005803, 48.63945266602217, 0],\n            [-1.201781641766186, 48.63946839981883, 0],\n            [-1.200272618645986, 48.64031172257154, 0],\n            [-1.200267828232, 48.64031442491597, 0],\n            [-1.200235117052875, 48.64033432110239, 0],\n            [-1.200204439393982, 48.64035559253072, 0],\n            [-1.200175926621758, 48.6403781481152, 0],\n            [-1.200149700833257, 48.64040189127117, 0],\n            [-1.200125874332865, 48.64042672032806, 0],\n            [-1.200104549151484, 48.64045252896585, 0],\n            [-1.200085816609626, 48.64047920666929, 0],\n            [-1.200069756925963, 48.64050663920166, 0],\n            [-1.200056438874522, 48.64053470909371, 0],\n            [-1.200045919489359, 48.64056329614692, 0],\n            [-1.200038243820438, 48.64059227794783, 0],\n            [-1.200033444741104, 48.64062153039255, 0],\n            [-1.200031542806774, 48.64065092821795, 0],\n            [-1.200032546166729, 48.64068034553825, 0],\n            [-1.200036450529642, 48.64070965638381, 0],\n            [-1.200043239181323, 48.64073873524077, 0],\n            [-1.200052883056721, 48.64076745758855, 0],\n            [-1.200065340863807, 48.64079570043289, 0],\n            [-1.20008055926049, 48.6408233428327, 0],\n            [-1.200098473083335, 48.64085026641798, 0],\n            [-1.200119005626101, 48.64087635589647, 0],\n            [-1.200142068967918, 48.64090149954772, 0],\n            [-1.200149761612699, 48.64090912804412, 0],\n            [-1.200145216420196, 48.6409160357755, 0],\n            [-1.200129156629579, 48.64094346831542, 0],\n            [-1.200115838495524, 48.64097153821363, 0],\n            [-1.200105319052767, 48.64100012527143, 0],\n            [-1.200097643351452, 48.64102910707549, 0],\n            [-1.200092844265104, 48.6410583595219, 0],\n            [-1.200090942348819, 48.64108775734746, 0],\n            [-1.20009194575224, 48.64111717466636, 0],\n            [-1.200095850183658, 48.64114648550908, 0],\n            [-1.200102638928744, 48.64117556436168, 0],\n            [-1.200104709771781, 48.6411825445093, 0],\n            [-1.200186121508773, 48.64144593198417, 0],\n            [-1.199907072492359, 48.6417947804558, 0],\n            [-1.19990108994662, 48.6418024358247, 0],\n            [-1.199882356794231, 48.64182911349253, 0],\n            [-1.199866296568821, 48.64185654599392, 0],\n            [-1.199852978046416, 48.64188461585993, 0],\n            [-1.199842458263372, 48.6419132028919, 0],\n            [-1.19983478227129, 48.64194218467655, 0],\n            [-1.199829982944913, 48.64197143711023, 0],\n            [-1.199828080840639, 48.64200083492965, 0],\n            [-1.199829084108548, 48.64203025224914, 0],\n            [-1.199832988457672, 48.64205956309901, 0],\n            [-1.199837449502805, 48.64207999072288, 0],\n            [-1.199367156312914, 48.64234932663294, 0],\n            [-1.199335910209849, 48.64236838497992, 0],\n            [-1.199305230930292, 48.64238965616461, 0],\n            [-1.199276716602153, 48.64241221152236, 0],\n            [-1.19925048932902, 48.64243595446915, 0],\n            [-1.199226661421513, 48.64246078333585, 0],\n            [-1.199205334916651, 48.64248659180277, 0],\n            [-1.199186601140461, 48.64251326935562, 0],\n            [-1.199170540317249, 48.64254070175818, 0],\n            [-1.19915722122554, 48.64256877154201, 0],\n            [-1.199146700904086, 48.64259735850886, 0],\n            [-1.199139024406828, 48.64262634024563, 0],\n            [-1.199134224610727, 48.64265559264881, 0],\n            [-1.199132322073919, 48.64268499045539, 0],\n            [-1.199133324948742, 48.6427144077796, 0],\n            [-1.199137228945628, 48.64274371865194, 0],\n            [-1.199144017352045, 48.64277279755827, 0],\n            [-1.199153661103942, 48.64280151997795, 0],\n            [-1.199166118909769, 48.64282976291629, 0],\n            [-1.199181337427835, 48.64285740543197, 0],\n            [-1.199199251493686, 48.64288432915419, 0],\n            [-1.199219784400221, 48.64291041879044, 0],\n            [-1.19924284822519, 48.64293556261934, 0],\n            [-1.199268344208095, 48.64295965296969, 0],\n            [-1.199268907174309, 48.64296011707448, 0],\n            [-1.198688200206557, 48.64389224452903, 0],\n            [-1.198675105887308, 48.64391498939471, 0],\n            [-1.198661786155291, 48.6439430591184, 0],\n            [-1.198651265264952, 48.64397164603715, 0],\n            [-1.19864982948082, 48.64397631104529, 0],\n            [-1.198456675804427, 48.6446212982268, 0],\n            [-1.197510638180748, 48.64481970114973, 0],\n            [-1.197503796479562, 48.64482116242062, 0],\n            [-1.197462082220715, 48.64483124703914, 0],\n            [-1.197421452573908, 48.64484311797241, 0],\n            [-1.197382081518192, 48.64485672438871, 0],\n            [-1.19734413764331, 48.64487200802468, 0],\n            [-1.197307783428552, 48.64488890343487, 0],\n            [-1.197273174546472, 48.64490733827217, 0],\n            [-1.197240459196602, 48.64492723359727, 0],\n            [-1.197236618449302, 48.6449297474518, 0],\n            [-1.196651477775068, 48.64531578971412, 0],\n            [-1.196624636372328, 48.64533454634202, 0],\n            [-1.196596119173106, 48.645357101028, 0],\n            [-1.196569889099413, 48.64538084335659, 0],\n            [-1.19654605847402, 48.64540567166073, 0],\n            [-1.196524729345496, 48.64543147962361, 0],\n            [-1.19650599305112, 48.64545815673281, 0],\n            [-1.19648992982599, 48.64548558875426, 0],\n            [-1.196476608458961, 48.64551365822081, 0],\n            [-1.196466085998258, 48.64554224493593, 0],\n            [-1.196458407507435, 48.64557122648745, 0],\n            [-1.196453605871486, 48.64560047877257, 0],\n            [-1.19645170165692, 48.64562987652887, 0],\n            [-1.19645270302279, 48.64565929387079, 0],\n            [-1.196456605686342, 48.6456886048287, 0],\n            [-1.196463392940621, 48.64571768388829, 0],\n            [-1.196473035726551, 48.64574640652796, 0],\n            [-1.196485492756698, 48.64577464975228, 0],\n            [-1.19650071069265, 48.64580229261868, 0],\n            [-1.196518624372509, 48.6458292167548, 0],\n            [-1.196539157090775, 48.64585530686639, 0],\n            [-1.196562220926076, 48.6458804512301, 0],\n            [-1.196587717117814, 48.64590454217235, 0],\n            [-1.196615536489141, 48.64592747653047, 0],\n            [-1.196645559914347, 48.6459491560945, 0],\n            [-1.196677658828853, 48.64596948802737, 0],\n            [-1.196711695780031, 48.64598838526301, 0],\n            [-1.196747525015689, 48.646005766879, 0],\n            [-1.196776136083284, 48.64601802927857, 0],\n            [-1.197297813780185, 48.64622949554524, 0],\n            [-1.197529906850527, 48.64658013581086, 0],\n            [-1.197539720773742, 48.64659429059588, 0],\n            [-1.197560254333834, 48.64662038052306, 0],\n            [-1.197583319030287, 48.6466455246799, 0],\n            [-1.197608816098783, 48.64666961539368, 0],\n            [-1.197636636358739, 48.64669254950273, 0],\n            [-1.197666660680508, 48.64671422879805, 0],\n            [-1.197698760496033, 48.6467345604437, 0],\n            [-1.19773279834843, 48.64675345737511, 0],\n            [-1.19776862848169, 48.64677083867076, 0],\n            [-1.197806097464187, 48.64678662989989, 0],\n            [-1.197845044845727, 48.64680076344038, 0],\n            [-1.197885303844921, 48.64681317876891, 0],\n            [-1.197926702063175, 48.64682382271976, 0],\n            [-1.197969062223394, 48.64683264971276, 0],\n            [-1.198012202928682, 48.64683962194855, 0],\n            [-1.198055939439175, 48.64684470957, 0],\n            [-1.198100084463871, 48.64684789079068, 0],\n            [-1.198128662708422, 48.64684892407222, 0],\n            [-1.200775460819465, 48.64690752879214, 0],\n            [-1.200967153086425, 48.64730883353518, 0],\n            [-1.200969357636548, 48.64731336515477, 0],\n            [-1.200984578501936, 48.64734100742265, 0],\n            [-1.201002495129617, 48.64736793085486, 0],\n            [-1.2010230308014, 48.64739402016005, 0],\n            [-1.201046097583405, 48.64741916361841, 0],\n            [-1.201071596702321, 48.64744325356025, 0],\n            [-1.201099418968792, 48.64746618682716, 0],\n            [-1.201129445244737, 48.64748786521382, 0],\n            [-1.201161546953349, 48.6475081958882, 0],\n            [-1.201195586630006, 48.64752709178973, 0],\n            [-1.201231418510869, 48.64754447200156, 0],\n            [-1.201260030271449, 48.64755673276315, 0],\n            [-1.201377893804143, 48.64760450249246, 0],\n            [-1.201679890492959, 48.64783605367328, 0],\n            [-1.201708654234668, 48.64785676073027, 0],\n            [-1.201740756412784, 48.64787709124187, 0],\n            [-1.201774796556627, 48.64789598697085, 0],\n            [-1.201810628900379, 48.64791336700107, 0],\n            [-1.201848100002601, 48.64792915690697, 0],\n            [-1.201887049404324, 48.64794328907225, 0],\n            [-1.201927310315449, 48.64795570297939, 0],\n            [-1.201968710329247, 48.64796634546884, 0],\n            [-1.202011072160669, 48.64797517096661, 0],\n            [-1.202054214405985, 48.64798214167978, 0],\n            [-1.202097952318577, 48.64798722775777, 0],\n            [-1.202116854173618, 48.64798882647138, 0],\n            [-1.204180345702706, 48.64814385959504, 0],\n            [-1.2044165753862, 48.64832496958789, 0],\n            [-1.204803722026346, 48.64866999680659, 0],\n            [-1.204481075290038, 48.6490195655302, 0],\n            [-1.202962131178909, 48.64893730927727, 0],\n            [-1.20255767002494, 48.64884181928064, 0],\n            [-1.202554508702176, 48.64884107873793, 0],\n            [-1.202512146045993, 48.6488322534416, 0],\n            [-1.202469003008211, 48.64882528290126, 0],\n            [-1.202425264329432, 48.64882019696523, 0],\n            [-1.2023811173004, 48.64881701741156, 0],\n            [-1.202336750960658, 48.6488157578553, 0],\n            [-1.202292355288479, 48.64881642368989, 0],\n            [-1.202248120387957, 48.64881901206429, 0],\n            [-1.202204235674773, 48.64882351189483, 0],\n            [-1.202183017942922, 48.64882639423348, 0],\n            [-1.199840723701697, 48.64917045550408, 0],\n            [-1.197931096880525, 48.64905447232341, 0],\n            [-1.197920401136654, 48.64905387909299, 0],\n            [-1.19787603469977, 48.6490526178094, 0],\n            [-1.197831638759566, 48.64905328191544, 0],\n            [-1.197787403421293, 48.64905586856749, 0],\n            [-1.197743518102534, 48.64906036668933, 0],\n            [-1.197700170721949, 48.64906675701984, 0],\n            [-1.197657546895241, 48.64907501219534, 0],\n            [-1.197643471793217, 48.64907818637146, 0],\n            [-1.195818623638871, 48.64950453909431, 0],\n            [-1.195790980500313, 48.64951144914924, 0],\n            [-1.195750346678886, 48.64952331948615, 0],\n            [-1.195710971508002, 48.64953692532389, 0],\n            [-1.19567302359499, 48.64955220840153, 0],\n            [-1.195636665436486, 48.64956910327611, 0],\n            [-1.195602052721911, 48.64958753760273, 0],\n            [-1.195569333667186, 48.64960743244439, 0],\n            [-1.195538648379935, 48.64962870261009, 0],\n            [-1.19551012825923, 48.64965125701928, 0],\n            [-1.195483895433858, 48.64967499909231, 0],\n            [-1.195460062238081, 48.64969982716338, 0],\n            [-1.19543873073156, 48.6497256349166, 0],\n            [-1.195419992261784, 48.64975231184055, 0],\n            [-1.195403927073104, 48.64977974370177, 0],\n            [-1.195390603962829, 48.64980781303395, 0],\n            [-1.195380079986679, 48.64983639964108, 0],\n            [-1.19537240021464, 48.64986538111133, 0],\n            [-1.195367597537265, 48.64989463334252, 0],\n            [-1.195365692525436, 48.64992403107221, 0],\n            [-1.195366693341706, 48.64995344841518, 0],\n            [-1.195370595705558, 48.64998275940161, 0],\n            [-1.195377382911436, 48.6500118385171, 0],\n            [-1.19537945358339, 48.65001881913666, 0],\n            [-1.195543731719104, 48.65055036962161, 0],\n            [-1.195551304187197, 48.65057211171322, 0],\n            [-1.195563761894882, 48.65060035502858, 0],\n            [-1.195578980784271, 48.6506279980084, 0],\n            [-1.19559689568933, 48.6506549222799, 0],\n            [-1.195617429899363, 48.65068101254821, 0],\n            [-1.195640495486563, 48.65070615708925, 0],\n            [-1.195665993682857, 48.65073024822882, 0],\n            [-1.195693815302825, 48.6507531828033, 0],\n            [-1.195723841211125, 48.6507748626018, 0],\n            [-1.195755942832586, 48.65079519478627, 0],\n            [-1.195789982702868, 48.65081409228967, 0],\n            [-1.195825815057352, 48.65083147418823, 0],\n            [-1.195863286454597, 48.65084726604841, 0],\n            [-1.195902236434299, 48.6508614002455, 0],\n            [-1.195942498203977, 48.65087381625329, 0],\n            [-1.195983899353166, 48.65088446090325, 0],\n            [-1.196026262591943, 48.65089328861221, 0],\n            [-1.19606940651056, 48.65090026157765, 0],\n            [-1.196113146355267, 48.65090534993939, 0],\n            [-1.19615729482077, 48.65090853190784, 0],\n            [-1.196201662851539, 48.65090979385683, 0],\n            [-1.196246060451816, 48.65090913038251, 0],\n            [-1.196290297499101, 48.6509065443259, 0],\n            [-1.196334184558567, 48.65090204676126, 0],\n            [-1.196373313498496, 48.65089636624095, 0],\n            [-1.199923668249827, 48.65030761774598, 0],\n            [-1.201387968990568, 48.6514550636347, 0],\n            [-1.201336738892105, 48.65182551808347, 0],\n            [-1.201335844077642, 48.65183260492838, 0],\n            [-1.201333942480602, 48.6518620027534, 0],\n            [-1.201334946825889, 48.6518914200402, 0],\n            [-1.201338852817959, 48.65192073081936, 0],\n            [-1.201345643735667, 48.65194980957737, 0],\n            [-1.201347713608101, 48.65195678456507, 0],\n            [-1.201465293965871, 48.65233709485797, 0],\n            [-1.201472870970095, 48.65235884207851, 0],\n            [-1.201485332445367, 48.65238708474648, 0],\n            [-1.20150055512952, 48.65241472693622, 0],\n            [-1.201518473840755, 48.65244165027849, 0],\n            [-1.201539011851647, 48.65246773948221, 0],\n            [-1.201562081218204, 48.65249288282801, 0],\n            [-1.201587583156405, 48.65251697264672, 0],\n            [-1.201615408464583, 48.65253990578039, 0],\n            [-1.201645437991687, 48.65256158402427, 0],\n            [-1.201677543147022, 48.65258191454714, 0],\n            [-1.201711586451237, 48.65260081028882, 0],\n            [-1.201745825335925, 48.65261746563576, 0],\n            [-1.202291152880066, 48.65286571599044, 0],\n            [-1.202308299856545, 48.65307074382167, 0],\n            [-1.202236901303215, 48.65404579446977, 0],\n            [-1.201977421459384, 48.65514501584705, 0],\n            [-1.201976005275354, 48.65515130608822, 0],\n            [-1.201972520726204, 48.65517054020788, 0],\n            [-1.201687925181314, 48.65709002482909, 0],\n            [-1.201679543149645, 48.65708210768367, 0],\n            [-1.201651715299241, 48.65705917457278, 0],\n            [-1.201621683084047, 48.65703749633725, 0],\n            [-1.201589575107109, 48.65701716580507, 0],\n            [-1.201555528859528, 48.65699827003297, 0],\n            [-1.201519690131383, 48.65698088993377, 0],\n            [-1.201482212388474, 48.65696509993029, 0],\n            [-1.201443256113768, 48.65695096763613, 0],\n            [-1.201402988121427, 48.65693855356657, 0],\n            [-1.201361580841842, 48.6569279108793, 0],\n            [-1.20131921158376, 48.65691908514676, 0],\n            [-1.201276061774315, 48.65691211416105, 0],\n            [-1.201232316183445, 48.65690702777242, 0],\n            [-1.20118816213151, 48.65690384776089, 0],\n            [-1.201143788687991, 48.65690258774335, 0],\n            [-1.201099385861715, 48.65690325311532, 0],\n            [-1.201055143787331, 48.65690584102764, 0],\n            [-1.201011251911237, 48.65691034039871, 0],\n            [-1.200967898180272, 48.65691673196211, 0],\n            [-1.200925268237236, 48.65692498834885, 0],\n            [-1.200883544625551, 48.65693507420481, 0],\n            [-1.200842906008599, 48.65694694634171, 0],\n            [-1.200803526403462, 48.65696055392265, 0],\n            [-1.200765574436813, 48.65697583867923, 0],\n            [-1.200729212622493, 48.65699273516117, 0],\n            [-1.200694596665692, 48.65701117101681, 0],\n            [-1.200661874795979, 48.65703106730259, 0],\n            [-1.200631187133208, 48.65705233882122, 0],\n            [-1.200602665086763, 48.65707489448647, 0],\n            [-1.200576430793265, 48.6570986377133, 0],\n            [-1.200552596593631, 48.65712346683097, 0],\n            [-1.200531264551699, 48.65714927551905, 0],\n            [-1.200512526017254, 48.65717595326214, 0],\n            [-1.20049646123493, 48.65720338582332, 0],\n            [-1.200491989264416, 48.65721211752388, 0],\n            [-1.200428302139023, 48.65734078980312, 0],\n            [-1.200355496750065, 48.65736819157045, 0],\n            [-1.200342942851365, 48.65735633356103, 0],\n            [-1.200315115458694, 48.65733340012604, 0],\n            [-1.20028508365585, 48.65731172154059, 0],\n            [-1.200252976044161, 48.65729139063432, 0],\n            [-1.200218930113086, 48.65727249446541, 0],\n            [-1.200183091651468, 48.65725511394853, 0],\n            [-1.200145614123807, 48.6572393235082, 0],\n            [-1.20010665801231, 48.65722519075994, 0],\n            [-1.200066390130301, 48.6572127762209, 0],\n            [-1.20002498290781, 48.65720213305083, 0],\n            [-1.199982613653245, 48.65719330682425, 0],\n            [-1.19993946379382, 48.65718633533538, 0],\n            [-1.199895718099613, 48.65718124843659, 0],\n            [-1.199851563891463, 48.65717806791003, 0],\n            [-1.19980719023951, 48.657176807375, 0],\n            [-1.199762787153442, 48.65717747222897, 0],\n            [-1.199718544769066, 48.65718005962519, 0],\n            [-1.1996746525341, 48.65718455848419, 0],\n            [-1.199631298396899, 48.65719094954179, 0],\n            [-1.199588668002005, 48.65719920543113, 0],\n            [-1.199546943894836, 48.65720929080019, 0],\n            [-1.199506304740814, 48.65722116246288, 0],\n            [-1.199466924559338, 48.65723476958415, 0],\n            [-1.199428971979559, 48.65725005389773, 0],\n            [-1.199392609517977, 48.6572669499552, 0],\n            [-1.199357992882519, 48.65728538540672, 0],\n            [-1.199325270305631, 48.65730528131049, 0],\n            [-1.199294581910246, 48.65732655247076, 0],\n            [-1.199266059108846, 48.6573491078028, 0],\n            [-1.199239824041347, 48.65737285072319, 0],\n            [-1.199215989051905, 48.65739767956238, 0],\n            [-1.199194656207774, 48.65742348800109, 0],\n            [-1.199175916862179, 48.65745016552511, 0],\n            [-1.199159851263227, 48.65747759789841, 0],\n            [-1.199155379036259, 48.65748632954661, 0],\n            [-1.19915446010213, 48.6574881860283, 0],\n            [-1.198939708489117, 48.65749606350164, 0],\n            [-1.198895465782159, 48.65749865058, 0],\n            [-1.198851573195494, 48.65750314912362, 0],\n            [-1.198808218679097, 48.65750953986967, 0],\n            [-1.198765587879047, 48.65751779545261, 0],\n            [-1.198723863342501, 48.65752788052176, 0],\n            [-1.198683223736801, 48.6575397518922, 0],\n            [-1.198643843083183, 48.65755335873038, 0],\n            [-1.198605890012856, 48.65756864277101, 0],\n            [-1.19856952704442, 48.65758553856693, 0],\n            [-1.198534909887958, 48.65760397376938, 0],\n            [-1.198502186778196, 48.65762386943761, 0],\n            [-1.198471497840326, 48.65764514037695, 0],\n            [-1.198442974489125, 48.65766769550366, 0],\n            [-1.19841673886685, 48.65769143823508, 0],\n            [-1.198392903320094, 48.65771626690248, 0],\n            [-1.198371569918488, 48.65774207518739, 0],\n            [-1.198280776196747, 48.65774540507388, 0],\n            [-1.19794192930812, 48.65775783174409, 0],\n            [-1.19792351372578, 48.65775890842436, 0],\n            [-1.197915896727049, 48.6577591195022, 0],\n            [-1.193825147356105, 48.65801389570889, 0],\n            [-1.193806936750741, 48.65801519399365, 0],\n            [-1.19376304325826, 48.65801969058806, 0],\n            [-1.193719687650097, 48.65802607940858, 0],\n            [-1.193677055577005, 48.65803433309815, 0],\n            [-1.193635329591678, 48.65804441631401, 0],\n            [-1.193594688367452, 48.65805628587942, 0],\n            [-1.193555305932879, 48.65806989096825, 0],\n            [-1.193517350926461, 48.6580851733229, 0],\n            [-1.193480985875191, 48.65810206750344, 0],\n            [-1.193479564590401, 48.65810277678742, 0],\n            [-1.192714011347982, 48.65848585932943, 0],\n            [-1.192680812732985, 48.65850358348762, 0],\n            [-1.192648086722123, 48.65852347748282, 0],\n            [-1.192617394759452, 48.65854474685297, 0],\n            [-1.192588868272739, 48.65856730052094, 0],\n            [-1.192562629417611, 48.65859104191049, 0],\n            [-1.192538790554527, 48.65861586935849, 0],\n            [-1.19251745376727, 48.65864167655188, 0],\n            [-1.192498710425951, 48.6586683529815, 0],\n            [-1.192482640795844, 48.65869578441619, 0],\n            [-1.192469313693203, 48.65872385339129, 0],\n            [-1.192458786190893, 48.65875243971236, 0],\n            [-1.19245110337397, 48.65878142096896, 0],\n            [-1.192446298145995, 48.65881067305955, 0],\n            [-1.192444391088863, 48.65884007072253, 0],\n            [-1.192445390373798, 48.6588694880728, 0],\n            [-1.192449291726938, 48.65889879914063, 0],\n            [-1.192456078446984, 48.65892787841113, 0],\n            [-1.192465721477098, 48.65895660136203, 0],\n            [-1.192478179528869, 48.65898484499642, 0],\n            [-1.192493399259464, 48.65901248837001, 0],\n            [-1.192511315499336, 48.65903941310826, 0],\n            [-1.192531851531951, 48.65906550391432, 0],\n            [-1.192554919421829, 48.65909064906192, 0],\n            [-1.192580420390985, 48.65911474087406, 0],\n            [-1.192608245242128, 48.65913767618444, 0],\n            [-1.192638274826068, 48.65915935677895, 0],\n            [-1.192670380551846, 48.6591796898161, 0],\n            [-1.192704424937656, 48.65919858822514, 0],\n            [-1.192728732792625, 48.65921063696486, 0],\n            [-1.193320064342711, 48.65949029692213, 0],\n            [-1.193439451738441, 48.66206929760822, 0],\n            [-1.191819427648424, 48.66268381605439, 0],\n            [-1.191785405001185, 48.66269761623243, 0],\n            [-1.191749036032728, 48.66271450985781, 0],\n            [-1.191714412845391, 48.66273294299299, 0],\n            [-1.191681683700017, 48.66275283670611, 0],\n            [-1.191650988747397, 48.66277410581106, 0],\n            [-1.19162245942803, 48.66279665923172, 0],\n            [-1.191596217910051, 48.66282040039271, 0],\n            [-1.191572376564953, 48.66284522763233, 0],\n            [-1.191551037487308, 48.66287103463796, 0],\n            [-1.191535036382188, 48.6628935055811, 0],\n            [-1.191471111854836, 48.66299010723821, 0],\n            [-1.190940216975358, 48.66306562575037, 0],\n            [-1.190913768716315, 48.66306975638396, 0],\n            [-1.190871131906992, 48.66307800902661, 0],\n            [-1.190829401174283, 48.6630880912171, 0],\n            [-1.190788755211687, 48.66309995978304, 0],\n            [-1.190785735647788, 48.66310092692999, 0],\n            [-1.189898054429017, 48.66338703495394, 0],\n            [-1.188527655816409, 48.66367421275393, 0],\n            [-1.188520812030811, 48.66367567333106, 0],\n            [-1.188479080330835, 48.66368575466523, 0],\n            [-1.18843843333059, 48.66369762239707, 0],\n            [-1.188399045083066, 48.66371122570831, 0],\n            [-1.188361084251928, 48.66372650634894, 0],\n            [-1.188324713389026, 48.66374339888627, 0],\n            [-1.18829008823826, 48.6637618309855, 0],\n            [-1.188287630894931, 48.66376323595797, 0],\n            [-1.187718021202018, 48.66409048111974, 0],\n            [-1.187687746969197, 48.66410896873011, 0],\n            [-1.187657049499611, 48.66413023676311, 0],\n            [-1.187628517619772, 48.66415278918728, 0],\n            [-1.187602273508468, 48.66417652943146, 0],\n            [-1.187578429548641, 48.66420135583763, 0],\n            [-1.187557087845896, 48.66422716209699, 0],\n            [-1.187538339791507, 48.66425383770464, 0],\n            [-1.187522265670573, 48.66428126843266, 0],\n            [-1.18750893431899, 48.6643093368197, 0],\n            [-1.187498402827711, 48.66433792267355, 0],\n            [-1.187490716298578, 48.66436690358589, 0],\n            [-1.187485907651458, 48.66439615545674, 0],\n            [-1.187483997482675, 48.6644255530254, 0],\n            [-1.187484993976862, 48.66445497040709, 0],\n            [-1.187488892872008, 48.66448428163198, 0],\n            [-1.187495677477406, 48.66451336118463, 0],\n            [-1.18750531874533, 48.6645420845414, 0],\n            [-1.187517775394782, 48.66457032870374, 0],\n            [-1.187532994089047, 48.66459797272504, 0],\n            [-1.187550909662971, 48.66462489822803, 0],\n            [-1.18757144540288, 48.66465098991256, 0],\n            [-1.187594513374572, 48.66467613604857, 0],\n            [-1.187620014799644, 48.66470022895496, 0],\n            [-1.187647840478885, 48.66472316546058, 0],\n            [-1.187677871259607, 48.66474484734623, 0],\n            [-1.187709978545717, 48.66476518176497, 0],\n            [-1.187744024848674, 48.66478408164012, 0],\n            [-1.187779864376299, 48.66480146603784, 0],\n            [-1.187815245967416, 48.66481643573157, 0],\n            [-1.1902231785281, 48.66576703806393, 0],\n            [-1.19022527629622, 48.66576786280209, 0],\n            [-1.190264236248204, 48.66578199890094, 0],\n            [-1.1903045085719, 48.66579441687687, 0],\n            [-1.190345920811897, 48.6658050635529, 0],\n            [-1.190388295630791, 48.66581389333719, 0],\n            [-1.190431451568974, 48.66582086841827, 0],\n            [-1.190475203821395, 48.66582595892703, 0],\n            [-1.190519365029585, 48.66582914306451, 0],\n            [-1.190563746083477, 48.66583040719551, 0],\n            [-1.190608156931516, 48.66582974590654, 0],\n            [-1.19065240739449, 48.66582716202946, 0],\n            [-1.190696307980097, 48.66582266662909, 0],\n            [-1.190739670694476, 48.66581627895606, 0],\n            [-1.190782309847125, 48.66580802636389, 0],\n            [-1.190824042846601, 48.66579794419255, 0],\n            [-1.190864690983637, 48.66578607561563, 0],\n            [-1.190867712063803, 48.66578510802958, 0],\n            [-1.191675921144684, 48.66552461757441, 0],\n            [-1.192226839989707, 48.66558549994, 0],\n            [-1.192243062610994, 48.66558715939062, 0],\n            [-1.192287223721422, 48.665590342847, 0],\n            [-1.192331604608967, 48.66559160629335, 0],\n            [-1.192376015222834, 48.66559094431931, 0],\n            [-1.192420265384848, 48.66558835975962, 0],\n            [-1.192464165603928, 48.66558386368203, 0],\n            [-1.192507527887792, 48.66557747533997, 0],\n            [-1.192550166547814, 48.66556922209, 0],\n            [-1.192591898994613, 48.66555913927471, 0],\n            [-1.192632546519259, 48.66554727007137, 0],\n            [-1.192671935059648, 48.66553366530694, 0],\n            [-1.192709895944943, 48.66551838324044, 0],\n            [-1.192746266618516, 48.66550148931358, 0],\n            [-1.192780891333691, 48.66548305587033, 0],\n            [-1.192813621821272, 48.66546316184714, 0],\n            [-1.192844317923572, 48.66544189243499, 0],\n            [-1.192872848195576, 48.66541933871446, 0],\n            [-1.192899090467172, 48.66539559726557, 0],\n            [-1.192917603022301, 48.6653766398196, 0],\n            [-1.193241117466815, 48.66502636705992, 0],\n            [-1.193948618895897, 48.6647261038928, 0],\n            [-1.193953766540348, 48.66472389742243, 0],\n            [-1.193990136221395, 48.66470700309989, 0],\n            [-1.194024759933692, 48.66468856927982, 0],\n            [-1.194057489411959, 48.66466867490027, 0],\n            [-1.194088184503188, 48.66464740515367, 0],\n            [-1.19411671376668, 48.66462485112218, 0],\n            [-1.194134894968644, 48.66460875458085, 0],\n            [-1.194306237698808, 48.66444976834827, 0],\n            [-1.19448052446115, 48.66439954238128, 0],\n            [-1.196120989519804, 48.6656126053287, 0],\n            [-1.196141747783353, 48.665627280773, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.243815582687555, 48.67741296781817, 0],\n            [-1.243772216724974, 48.67741937556566, 0],\n            [-1.243729576433137, 48.67742764786315, 0],\n            [-1.243687844399748, 48.67743774928812, 0],\n            [-1.243647199324163, 48.67744963658599, 0],\n            [-1.2436078152513, 48.67746325885454, 0],\n            [-1.243569860826956, 48.67747855776268, 0],\n            [-1.243533498575367, 48.67749546779954, 0],\n            [-1.243498884203538, 48.67751391655522, 0],\n            [-1.243466165934544, 48.67753382503125, 0],\n            [-1.243435483872513, 48.6775551079779, 0],\n            [-1.243406969403027, 48.67757767426014, 0],\n            [-1.243380744630294, 48.67760142724728, 0],\n            [-1.243356921854482, 48.67762626522698, 0],\n            [-1.243335603090348, 48.67765208184079, 0],\n            [-1.243316879630905, 48.67767876653925, 0],\n            [-1.243300831656256, 48.67770620505586, 0],\n            [-1.243287527889947, 48.67773427989572, 0],\n            [-1.243278727110202, 48.67775763125716, 0],\n            [-1.243243029203052, 48.67786443889865, 0],\n            [-1.243238084216551, 48.67786680918647, 0],\n            [-1.243203469480654, 48.67788525785253, 0],\n            [-1.243170750853007, 48.67790516624355, 0],\n            [-1.243140068439377, 48.67792644911063, 0],\n            [-1.243111553626586, 48.67794901531867, 0],\n            [-1.243085328520659, 48.67797276823751, 0],\n            [-1.243061505422844, 48.6779976061552, 0],\n            [-1.243040186349538, 48.67802342271328, 0],\n            [-1.243021462594991, 48.6780501073628, 0],\n            [-1.243005414340586, 48.67807754583723, 0],\n            [-1.24299232820615, 48.67810510319966, 0],\n            [-1.242841991643651, 48.6784612872649, 0],\n            [-1.242391759409316, 48.67866883339746, 0],\n            [-1.242371502997508, 48.67867854253739, 0],\n            [-1.242336887384672, 48.67869699094068, 0],\n            [-1.242304167885542, 48.67871689908314, 0],\n            [-1.242273484609662, 48.67873818171695, 0],\n            [-1.24224496894747, 48.67876074770806, 0],\n            [-1.24221874300863, 48.67878450042718, 0],\n            [-1.242194919098005, 48.67880933816316, 0],\n            [-1.24217359923543, 48.67883515455851, 0],\n            [-1.242154874718613, 48.67886183906487, 0],\n            [-1.242138825732093, 48.67888927741626, 0],\n            [-1.242125521003894, 48.67891735211875, 0],\n            [-1.242115017510919, 48.67894594295304, 0],\n            [-1.242107360235505, 48.67897492748949, 0],\n            [-1.2421025819719, 48.67900418161258, 0],\n            [-1.242100703186393, 48.6790335800519, 0],\n            [-1.242101731929324, 48.67906299691909, 0],\n            [-1.242105663800552, 48.67909230624641, 0],\n            [-1.242112481968123, 48.67912138252655, 0],\n            [-1.242122124389684, 48.67915001680446, 0],\n            [-1.242373646397406, 48.67979682214535, 0],\n            [-1.24236907001805, 48.67979816045541, 0],\n            [-1.242329683758956, 48.67981178228248, 0],\n            [-1.242291727172462, 48.67982708076461, 0],\n            [-1.242255362792215, 48.67984399039293, 0],\n            [-1.242220746334375, 48.67986243875949, 0],\n            [-1.242188026030608, 48.67988234686713, 0],\n            [-1.242157341994217, 48.67990362946785, 0],\n            [-1.242128825618916, 48.67992619542803, 0],\n            [-1.242102599017125, 48.67994994811853, 0],\n            [-1.242078774496769, 48.67997478582815, 0],\n            [-1.242057454080316, 48.68000060219954, 0],\n            [-1.242038729067836, 48.68002728668452, 0],\n            [-1.242022679645765, 48.68005472501729, 0],\n            [-1.242009374544244, 48.68008279970378, 0],\n            [-1.241998870741836, 48.68011139052481, 0],\n            [-1.241991213221838, 48.68014037505091, 0],\n            [-1.241986434779856, 48.68016962916648, 0],\n            [-1.241984555882878, 48.68019902760129, 0],\n            [-1.241985584581664, 48.68022844446687, 0],\n            [-1.241989516476334, 48.68025775379556, 0],\n            [-1.241996334734812, 48.68028683008006, 0],\n            [-1.242006010165249, 48.68031554881061, 0],\n            [-1.242018501340543, 48.68034378700863, 0],\n            [-1.242021075164677, 48.68034886818891, 0],\n            [-1.242160235583105, 48.68061825827311, 0],\n            [-1.242172915324542, 48.68064081382126, 0],\n            [-1.242190865876747, 48.68066773074342, 0],\n            [-1.242211436524232, 48.68069381259918, 0],\n            [-1.242234539183178, 48.6807189477005, 0],\n            [-1.242260074926778, 48.68074302841349, 0],\n            [-1.242287934408779, 48.68076595161934, 0],\n            [-1.24231799833175, 48.6807876191557, 0],\n            [-1.242350137957651, 48.68080793823712, 0],\n            [-1.242384215659511, 48.68082682185255, 0],\n            [-1.24242008551064, 48.6808441891378, 0],\n            [-1.242457593908988, 48.68085996572192, 0],\n            [-1.242496580235895, 48.68087408404555, 0],\n            [-1.242536877543106, 48.6808864836505, 0],\n            [-1.242578313268077, 48.68089711143843, 0],\n            [-1.242620709972764, 48.68090592189839, 0],\n            [-1.242663886104114, 48.68091287730176, 0],\n            [-1.242707656770425, 48.68091794786353, 0],\n            [-1.242751834534412, 48.68092111187035, 0],\n            [-1.242796230215084, 48.68092235577296, 0],\n            [-1.242840653698236, 48.68092167424477, 0],\n            [-1.242884914750619, 48.68091907020415, 0],\n            [-1.242928823834548, 48.68091455480241, 0],\n            [-1.242972192919731, 48.68090814737559, 0],\n            [-1.243014836288408, 48.68089987536212, 0],\n            [-1.243056571331089, 48.68088977418474, 0],\n            [-1.243097219327698, 48.68087788709954, 0],\n            [-1.24313660621407, 48.68086426500998, 0],\n            [-1.243174563326563, 48.68084896624927, 0],\n            [-1.243210928124596, 48.68083205633063, 0],\n            [-1.243245544886753, 48.68081360766649, 0],\n            [-1.24327826537783, 48.68079369925844, 0],\n            [-1.243308941607646, 48.68077242219226, 0],\n            [-1.243589580465858, 48.68056456194125, 0],\n            [-1.243618100485184, 48.68054199270226, 0],\n            [-1.24364432667978, 48.68051823966611, 0],\n            [-1.24366815068415, 48.68049340163224, 0],\n            [-1.243689470482456, 48.68046758496224, 0],\n            [-1.243708194782707, 48.68044090020855, 0],\n            [-1.243724243408075, 48.68041346164064, 0],\n            [-1.243737547639432, 48.68038538675587, 0],\n            [-1.243748050510245, 48.68035679577614, 0],\n            [-1.243755707050267, 48.68032781113317, 0],\n            [-1.243760484477721, 48.68029855694417, 0],\n            [-1.243762362339826, 48.68026915848047, 0],\n            [-1.243762273371574, 48.68026661690132, 0],\n            [-1.243768516252946, 48.68025930763273, 0],\n            [-1.244400332810818, 48.67948668911869, 0],\n            [-1.244409341009065, 48.67947528651195, 0],\n            [-1.244428064557697, 48.67944860163864, 0],\n            [-1.244444112473313, 48.67942116296786, 0],\n            [-1.244457416040041, 48.67939308799748, 0],\n            [-1.244467918294228, 48.6793644969495, 0],\n            [-1.244475574268003, 48.67933551225626, 0],\n            [-1.244480351182227, 48.67930625803506, 0],\n            [-1.244482022074771, 48.6792844597129, 0],\n            [-1.244515111585682, 48.67845601613568, 0],\n            [-1.244550065820589, 48.67844579310498, 0],\n            [-1.24458945040786, 48.67843217051377, 0],\n            [-1.244627405241836, 48.67841687126918, 0],\n            [-1.244663767791927, 48.67839996088652, 0],\n            [-1.24469838234635, 48.67838151178032, 0],\n            [-1.244731100679053, 48.67836160295394, 0],\n            [-1.244761782684809, 48.67834031966181, 0],\n            [-1.244790296978695, 48.67831775304387, 0],\n            [-1.244816521459122, 48.67829399973563, 0],\n            [-1.244840343830218, 48.6782691614538, 0],\n            [-1.244861662083301, 48.67824334456137, 0],\n            [-1.244880384933051, 48.67821665961181, 0],\n            [-1.24489643220852, 48.67818922087513, 0],\n            [-1.244909735196751, 48.6781611458495, 0],\n            [-1.244920236936249, 48.67813255475745, 0],\n            [-1.244927892461722, 48.67810357003123, 0],\n            [-1.244932668995611, 48.67807431578845, 0],\n            [-1.244934546089271, 48.67804491730051, 0],\n            [-1.24493351570951, 48.67801550045651, 0],\n            [-1.244929582273873, 48.67798619122375, 0],\n            [-1.244922762630942, 48.67795711510864, 0],\n            [-1.244913085988195, 48.67792839661905, 0],\n            [-1.244900593787321, 48.67790015873122, 0],\n            [-1.244885339525867, 48.67787252236315, 0],\n            [-1.244867388529058, 48.67784560585709, 0],\n            [-1.244846817669123, 48.67781952447222, 0],\n            [-1.244823715036516, 48.67779438989174, 0],\n            [-1.244798179562681, 48.6777703097443, 0],\n            [-1.244770320596167, 48.67774738714329, 0],\n            [-1.244740257434367, 48.67772572024498, 0],\n            [-1.244708114408646, 48.67770539922147, 0],\n            [-1.244394223785472, 48.67751957179928, 0],\n            [-1.244360156378717, 48.67750069399133, 0],\n            [-1.244324288243035, 48.67748332730861, 0],\n            [-1.244286781778041, 48.67746755133128, 0],\n            [-1.244247797590103, 48.67745343361273, 0],\n            [-1.244207502612789, 48.67744103460591, 0],\n            [-1.244166069391914, 48.67743040740402, 0],\n            [-1.24412367534726, 48.67742159751309, 0],\n            [-1.244080502012313, 48.67741464265776, 0],\n            [-1.244036734257672, 48.67740957261869, 0],\n            [-1.243992559498541, 48.67740640910624, 0],\n            [-1.24394816689311, 48.67740516566649, 0],\n            [-1.24390374653222, 48.67740584762402, 0],\n            [-1.24385948862564, 48.67740845205869, 0],\n            [-1.243815582687555, 48.67741296781817, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.243605536924812, 48.68320846010897, 0],\n            [-1.243600759130752, 48.68323771428489, 0],\n            [-1.243598881063091, 48.68326711273915, 0],\n            [-1.243599910769491, 48.68329652958324, 0],\n            [-1.243603843845396, 48.68332583884957, 0],\n            [-1.243610663453774, 48.68335491503107, 0],\n            [-1.24362034039702, 48.68338363361862, 0],\n            [-1.243632833241439, 48.68341187163394, 0],\n            [-1.243648088495259, 48.68343950815689, 0],\n            [-1.243666040836793, 48.68346642484226, 0],\n            [-1.24368661339495, 48.68349250642764, 0],\n            [-1.243709718077757, 48.68351764122619, 0],\n            [-1.243735255949734, 48.6835417216054, 0],\n            [-1.243741891440611, 48.6835474655424, 0],\n            [-1.244642730131693, 48.68431439138568, 0],\n            [-1.244663956978334, 48.68433157012323, 0],\n            [-1.24469402405802, 48.6843532370305, 0],\n            [-1.244726166924148, 48.68437355544013, 0],\n            [-1.244760247935801, 48.68439243834406, 0],\n            [-1.244796121152199, 48.68440980488111, 0],\n            [-1.244833632956861, 48.68442558068341, 0],\n            [-1.244872622716542, 48.68443969819509, 0],\n            [-1.244912923468258, 48.68445209696142, 0],\n            [-1.244954362634736, 48.68446272388756, 0],\n            [-1.244996762763204, 48.68447153346643, 0],\n            [-1.245039942285922, 48.68447848797301, 0],\n            [-1.245083716296698, 48.68448355762617, 0],\n            [-1.245127897343938, 48.68448672071652, 0],\n            [-1.245172296232484, 48.68448796369864, 0],\n            [-1.245216722834561, 48.6844872812499, 0],\n            [-1.245260986903392, 48.6844846762927, 0],\n            [-1.24530489888846, 48.68448015998213, 0],\n            [-1.245348270747064, 48.68447375165822, 0],\n            [-1.245390916749554, 48.68446547876325, 0],\n            [-1.245432654275049, 48.68445537672364, 0],\n            [-1.245473304593101, 48.68444348879928, 0],\n            [-1.245512693629414, 48.68442986589718, 0],\n            [-1.245550652711152, 48.68441456635404, 0],\n            [-1.2455870192893, 48.68439765568638, 0],\n            [-1.245621637634831, 48.68437920630992, 0],\n            [-1.245631897710899, 48.6843732420698, 0],\n            [-1.247610331896478, 48.68319959527402, 0],\n            [-1.247632792618141, 48.68318565004461, 0],\n            [-1.247663476339624, 48.68316436598381, 0],\n            [-1.247691992067244, 48.68314179865265, 0],\n            [-1.247710163900702, 48.68312569262207, 0],\n            [-1.247789248564519, 48.68305222847154, 0],\n            [-1.247854171830762, 48.68302022722561, 0],\n            [-1.247873619607651, 48.68304476570553, 0],\n            [-1.247896726178188, 48.6830698996611, 0],\n            [-1.247922265828403, 48.68309397910844, 0],\n            [-1.247950129195197, 48.68311690093408, 0],\n            [-1.247980196964731, 48.68313856698157, 0],\n            [-1.248012340382378, 48.68315888447189, 0],\n            [-1.248046421805042, 48.6831777664007, 0],\n            [-1.248082295289785, 48.68319513191118, 0],\n            [-1.248110933702427, 48.68320737889114, 0],\n            [-1.248319230305013, 48.68329162540813, 0],\n            [-1.24832810385143, 48.6832951531406, 0],\n            [-1.248367093715668, 48.68330926946514, 0],\n            [-1.248407394422999, 48.68332166700418, 0],\n            [-1.248448833396192, 48.68333229266825, 0],\n            [-1.248491233183633, 48.68334110095559, 0],\n            [-1.24853441221874, 48.68334805414661, 0],\n            [-1.248578185597522, 48.68335312246614, 0],\n            [-1.248622365871002, 48.68335628421004, 0],\n            [-1.248666763847497, 48.68335752583916, 0],\n            [-1.248711189402971, 48.68335684203619, 0],\n            [-1.248802026023017, 48.68335347219894, 0],\n            [-1.24882756625095, 48.6833775514441, 0],\n            [-1.248855430187867, 48.68340047304911, 0],\n            [-1.248885498517174, 48.68342213885877, 0],\n            [-1.248917642482104, 48.68344245609475, 0],\n            [-1.248951724436942, 48.68346133775407, 0],\n            [-1.248987598436893, 48.68347870298084, 0],\n            [-1.249025110862099, 48.68349447741292, 0],\n            [-1.249064101076676, 48.68350859350018, 0],\n            [-1.249104402115682, 48.68352099079409, 0],\n            [-1.249145841400625, 48.68353161620605, 0],\n            [-1.249188241478214, 48.68354042423539, 0],\n            [-1.249231420780967, 48.68354737716386, 0],\n            [-1.249275194403574, 48.68355244521712, 0],\n            [-1.249319374896099, 48.68355560669244, 0],\n            [-1.249363773065819, 48.68355684805154, 0],\n            [-1.24940819878798, 48.68355616397858, 0],\n            [-1.250086214596218, 48.68353100531307, 0],\n            [-1.250130477570584, 48.68352839847564, 0],\n            [-1.25017438828269, 48.68352388029969, 0],\n            [-1.250217758695331, 48.68351747013321, 0],\n            [-1.250232545228049, 48.68351482760058, 0],\n            [-1.250584964304531, 48.68361495505187, 0],\n            [-1.25058693564682, 48.68361551269716, 0],\n            [-1.250628375323051, 48.68362613757318, 0],\n            [-1.250670775740128, 48.6836349450542, 0],\n            [-1.250713955329112, 48.68364189742424, 0],\n            [-1.250757729183514, 48.68364696491143, 0],\n            [-1.250786278132778, 48.68364922867609, 0],\n            [-1.251928736879624, 48.68372360566825, 0],\n            [-1.251944502226332, 48.68373619431954, 0],\n            [-1.251974572087753, 48.68375785931833, 0],\n            [-1.252006717515972, 48.68377817568768, 0],\n            [-1.25204080085874, 48.68379705642825, 0],\n            [-1.252076676165266, 48.68381442068792, 0],\n            [-1.252114189810476, 48.68383019410881, 0],\n            [-1.252153181152871, 48.68384430914519, 0],\n            [-1.252193483222872, 48.68385670535286, 0],\n            [-1.252234923437392, 48.68386732964801, 0],\n            [-1.252277324339501, 48.68387613653467, 0],\n            [-1.252320504357842, 48.6838830882996, 0],\n            [-1.252364278584186, 48.68388815517324, 0],\n            [-1.252408459566019, 48.68389131545807, 0],\n            [-1.252452858108542, 48.68389255562092, 0],\n            [-1.252497284085299, 48.68389187035096, 0],\n            [-1.252836293564967, 48.68387928238553, 0],\n            [-1.252880556703362, 48.68387667448647, 0],\n            [-1.252890272494673, 48.68387584201578, 0],\n            [-1.25480838731429, 48.68370215314294, 0],\n            [-1.254842582033227, 48.68369846581241, 0],\n            [-1.254885952001124, 48.68369205388011, 0],\n            [-1.254928595770459, 48.68368377743698, 0],\n            [-1.254970330729948, 48.68367367192478, 0],\n            [-1.255010978159949, 48.68366178061813, 0],\n            [-1.25505036399854, 48.6836481544386, 0],\n            [-1.255088319586772, 48.6836328517368, 0],\n            [-1.25512468239054, 48.68361593804297, 0],\n            [-1.255159296697022, 48.68359748578568, 0],\n            [-1.255192014281303, 48.68357757398191, 0],\n            [-1.255222695041196, 48.6835562878987, 0],\n            [-1.255251207597492, 48.68353371868815, 0],\n            [-1.255277429855577, 48.68350996299666, 0],\n            [-1.25530124952951, 48.68348512255124, 0],\n            [-1.255322564621881, 48.68345930372412, 0],\n            [-1.25534128386098, 48.68343261707695, 0],\n            [-1.255357327091364, 48.68340517688731, 0],\n            [-1.255370625617225, 48.68337710065936, 0],\n            [-1.255381122496571, 48.68334850862071, 0],\n            [-1.255388772784474, 48.68331952320788, 0],\n            [-1.255392788731229, 48.68329637695996, 0],\n            [-1.255774681197639, 48.68044555047212, 0],\n            [-1.255775436103357, 48.6804394420496, 0],\n            [-1.255776759137139, 48.68042436593752, 0],\n            [-1.255817678500057, 48.67976790535147, 0],\n            [-1.256326016806046, 48.67979000274778, 0],\n            [-1.257487460532301, 48.67987241351359, 0],\n            [-1.257509043298055, 48.67987371448476, 0],\n            [-1.257553438418055, 48.67987495267268, 0],\n            [-1.257597860774748, 48.67987426542614, 0],\n            [-1.257642120139701, 48.67987165568791, 0],\n            [-1.257686026982443, 48.67986713463374, 0],\n            [-1.257729393282314, 48.67986072162394, 0],\n            [-1.257772033333484, 48.67985244412073, 0],\n            [-1.257813764540494, 48.67984233757046, 0],\n            [-1.257854408200052, 48.67983044525218, 0],\n            [-1.2578937902663, 48.67981681809177, 0],\n            [-1.257931742096279, 48.67980151444409, 0],\n            [-1.257968101172049, 48.67978459984343, 0],\n            [-1.258002711796675, 48.67976614672216, 0],\n            [-1.258035425761332, 48.67974623410112, 0],\n            [-1.258066102978999, 48.67972494725067, 0],\n            [-1.258094612085694, 48.6797023773263, 0],\n            [-1.258120831001652, 48.67967862097737, 0],\n            [-1.258144647455262, 48.67965377993387, 0],\n            [-1.25816595946282, 48.67962796057051, 0],\n            [-1.258184675765848, 48.67960127345115, 0],\n            [-1.258200716221491, 48.67957383285543, 0],\n            [-1.258214012145853, 48.67954575628944, 0],\n            [-1.258215914647449, 48.67954112903778, 0],\n            [-1.258235319105689, 48.67954490840184, 0],\n            [-1.258278496227467, 48.67955185792504, 0],\n            [-1.258322267282788, 48.67955692252567, 0],\n            [-1.258366444832546, 48.67956008051561, 0],\n            [-1.258410839696671, 48.67956131837155, 0],\n            [-1.258455261764535, 48.67956063079275, 0],\n            [-1.258499520808845, 48.67955802072343, 0],\n            [-1.258543427300547, 48.6795534993408, 0],\n            [-1.258586793220482, 48.67954708600646, 0],\n            [-1.258629432864438, 48.67953880818411, 0],\n            [-1.258671163638714, 48.67952870132157, 0],\n            [-1.258711806841897, 48.679516808699, 0],\n            [-1.258751188430047, 48.67950318124359, 0],\n            [-1.258789139762224, 48.67948787731187, 0],\n            [-1.258825498322687, 48.67947096243889, 0],\n            [-1.258860108416657, 48.67945250905827, 0],\n            [-1.25889282183747, 48.67943259619199, 0],\n            [-1.258923498500819, 48.67941130911169, 0],\n            [-1.258952007044625, 48.67938873897345, 0],\n            [-1.258970179522208, 48.6793726259419, 0],\n            [-1.259508158531588, 48.6788726661642, 0],\n            [-1.260531080541965, 48.67826481635244, 0],\n            [-1.260553223936203, 48.67825105360069, 0],\n            [-1.260583899175491, 48.67822976607413, 0],\n            [-1.260612406303829, 48.67820719552098, 0],\n            [-1.260638623250343, 48.67818343859355, 0],\n            [-1.260662437751514, 48.6781585970242, 0],\n            [-1.260683747832134, 48.6781327771898, 0],\n            [-1.260702462241856, 48.67810608965633, 0],\n            [-1.260718500846261, 48.67807864870518, 0],\n            [-1.260731794969083, 48.6780505718439, 0],\n            [-1.260742287687058, 48.67802197930281, 0],\n            [-1.260749934073482, 48.67799299352036, 0],\n            [-1.260754701389963, 48.6779637386187, 0],\n            [-1.260755015387471, 48.67796083696682, 0],\n            [-1.260942392519242, 48.67614694120506, 0],\n            [-1.262038765757438, 48.6761061401417, 0],\n            [-1.262083021574569, 48.67610352868825, 0],\n            [-1.262126924727063, 48.67609900593195, 0],\n            [-1.262170287210067, 48.67609259124038, 0],\n            [-1.262212923334138, 48.67608431208307, 0],\n            [-1.262254650520724, 48.67607420391332, 0],\n            [-1.26229529008342, 48.67606231001718, 0],\n            [-1.262334667994232, 48.67604868132731, 0],\n            [-1.262372615627867, 48.67603337620514, 0],\n            [-1.262408970484392, 48.67601646019115, 0],\n            [-1.262443576884957, 48.67599800572392, 0],\n            [-1.262476286638703, 48.67597809182978, 0],\n            [-1.262506959676812, 48.67595680378498, 0],\n            [-1.262535464653012, 48.67593423274979, 0],\n            [-1.262561679505521, 48.67591047537836, 0],\n            [-1.262585491979813, 48.67588563340523, 0],\n            [-1.262606800109374, 48.67585981320889, 0],\n            [-1.262625512652329, 48.67583312535687, 0],\n            [-1.262636801520249, 48.67581438357435, 0],\n            [-1.262985549657119, 48.67519537451714, 0],\n            [-1.262986581663659, 48.67519558880121, 0],\n            [-1.263029755706899, 48.6752025365372, 0],\n            [-1.263073523454186, 48.67520759932538, 0],\n            [-1.263117697480602, 48.67521075548544, 0],\n            [-1.263162088621066, 48.67521199150185, 0],\n            [-1.263206506780996, 48.67521130208173, 0],\n            [-1.263250761749766, 48.67520869017724, 0],\n            [-1.263294664015808, 48.67520416697338, 0],\n            [-1.263338025578029, 48.67519775183964, 0],\n            [-1.263380660750961, 48.67518947224735, 0],\n            [-1.263422386959969, 48.67517936365195, 0],\n            [-1.263463025523204, 48.67516746934093, 0],\n            [-1.26350240241657, 48.675153840249, 0],\n            [-1.26354034901933, 48.67513853473933, 0],\n            [-1.263576702835907, 48.67512161835387, 0],\n            [-1.263611308191888, 48.67510316353281, 0],\n            [-1.263644016900829, 48.67508324930414, 0],\n            [-1.263674688898651, 48.67506196094543, 0],\n            [-1.263703192843255, 48.67503938961831, 0],\n            [-1.263729406677419, 48.67501563197825, 0],\n            [-1.263753218150892, 48.67499078976088, 0],\n            [-1.263774525301495, 48.67496496934576, 0],\n            [-1.263793236891453, 48.6749382813013, 0],\n            [-1.263807199868527, 48.6749143872068, 0],\n            [-1.263977199700699, 48.67490805700896, 0],\n            [-1.264021454362514, 48.6749054448069, 0],\n            [-1.264065356294404, 48.67490092130777, 0],\n            [-1.264108717496772, 48.67489450588234, 0],\n            [-1.264151352285612, 48.67488622600327, 0],\n            [-1.264193078088105, 48.67487611712706, 0],\n            [-1.264233716223762, 48.67486422254258, 0],\n            [-1.264273092670745, 48.67485059318562, 0],\n            [-1.264311038809975, 48.67483528742036, 0],\n            [-1.264347392147975, 48.67481837079011, 0],\n            [-1.264381997012329, 48.67479991573594, 0],\n            [-1.264414705218833, 48.67478000128694, 0],\n            [-1.264445376705223, 48.67475871272154, 0],\n            [-1.264473880131902, 48.67473614120228, 0],\n            [-1.264500093443763, 48.67471238338545, 0],\n            [-1.264523904392836, 48.67468754100737, 0],\n            [-1.264545211019119, 48.67466172044841, 0],\n            [-1.264563922087214, 48.67463503227753, 0],\n            [-1.26457995747663, 48.67460759077899, 0],\n            [-1.264593248525192, 48.67457951346255, 0],\n            [-1.264603738322883, 48.67455092056046, 0],\n            [-1.26461138195507, 48.67452193451291, 0],\n            [-1.264616146695552, 48.67449267944294, 0],\n            [-1.264618012145826, 48.67446328062571, 0],\n            [-1.264616970322918, 48.67443386395166, 0],\n            [-1.264521670159617, 48.67331149328753, 0],\n            [-1.26451772567338, 48.67328218471744, 0],\n            [-1.2645108953408, 48.67325310975828, 0],\n            [-1.264501208415199, 48.67322439291285, 0],\n            [-1.26448870638217, 48.67319615715049, 0],\n            [-1.264473442781446, 48.67316852338006, 0],\n            [-1.264455482978242, 48.67314160993265, 0],\n            [-1.264434903882454, 48.67311553205433, 0],\n            [-1.264411793619811, 48.6730904014134, 0],\n            [-1.264386251154488, 48.67306632562152, 0],\n            [-1.264358385864872, 48.67304340777338, 0],\n            [-1.264328317075494, 48.67302174600504, 0],\n            [-1.264296173546036, 48.67300143307394, 0],\n            [-1.26426349460828, 48.67298333235118, 0],\n            [-1.264292903629958, 48.67296291939118, 0],\n            [-1.264321406107036, 48.67294034790674, 0],\n            [-1.264347618554589, 48.6729165901216, 0],\n            [-1.264371428728501, 48.67289174777182, 0],\n            [-1.264392734672091, 48.67286592723771, 0],\n            [-1.264411445152835, 48.67283923908814, 0],\n            [-1.264427480052743, 48.67281179760725, 0],\n            [-1.264440770711757, 48.67278372030469, 0],\n            [-1.264451260221478, 48.67275512741267, 0],\n            [-1.264458903668673, 48.67272614137135, 0],\n            [-1.26446366832758, 48.67269688630382, 0],\n            [-1.264465533800496, 48.67266748748512, 0],\n            [-1.264464492103907, 48.67263807080567, 0],\n            [-1.264445433092358, 48.67241359663118, 0],\n            [-1.264441488721029, 48.67238428805649, 0],\n            [-1.264434658554516, 48.67235521309079, 0],\n            [-1.264424971845422, 48.67232649623701, 0],\n            [-1.2644124700785, 48.67229826046444, 0],\n            [-1.264397206792245, 48.67227062668198, 0],\n            [-1.264379247350551, 48.6722437132208, 0],\n            [-1.264363924977141, 48.6722242962807, 0],\n            [-1.264369837059804, 48.67222524765848, 0],\n            [-1.264413602350296, 48.67223030993612, 0],\n            [-1.264457773845038, 48.67223346558038, 0],\n            [-1.264502162389838, 48.67223470107821, 0],\n            [-1.264546577901147, 48.67223401113854, 0],\n            [-1.264590830179748, 48.67223139871611, 0],\n            [-1.264634729725547, 48.67222687499806, 0],\n            [-1.264678088549138, 48.67222045935593, 0],\n            [-1.264720720976726, 48.67221217926343, 0],\n            [-1.264762444445646, 48.6722020701779, 0],\n            [-1.264803080285299, 48.67219017538928, 0],\n            [-1.264842454483721, 48.67217654583395, 0],\n            [-1.264880398431565, 48.67216123987713, 0],\n            [-1.264916749644565, 48.67214432306294, 0],\n            [-1.264951352459498, 48.67212586783319, 0],\n            [-1.264984058700973, 48.67210595321775, 0],\n            [-1.265014728314962, 48.67208466449577, 0],\n            [-1.265295214657873, 48.67187675428409, 0],\n            [-1.265323716069384, 48.67185418254843, 0],\n            [-1.265349927477169, 48.67183042453221, 0],\n            [-1.265373736641529, 48.67180558197224, 0],\n            [-1.265395041610138, 48.67177976124976, 0],\n            [-1.265413751154532, 48.67175307293444, 0],\n            [-1.265429785161014, 48.67172563131103, 0],\n            [-1.265443074973325, 48.67169755388996, 0],\n            [-1.265453563686343, 48.67166896090398, 0],\n            [-1.265461206390592, 48.67163997479351, 0],\n            [-1.265465970363529, 48.67161071968189, 0],\n            [-1.265467835209986, 48.67158132084453, 0],\n            [-1.265466792949588, 48.67155190417179, 0],\n            [-1.26546284805048, 48.6715225956304, 0],\n            [-1.265456017410427, 48.67149352072368, 0],\n            [-1.265446330284026, 48.67146480395435, 0],\n            [-1.265433828157652, 48.67143656829138, 0],\n            [-1.265418564571776, 48.67140893464325, 0],\n            [-1.265400604891054, 48.67138202134031, 0],\n            [-1.265380026025262, 48.67135594362828, 0],\n            [-1.26535691609913, 48.67133081317456, 0],\n            [-1.265331374075114, 48.67130673759013, 0],\n            [-1.265303509329863, 48.67128381996879, 0],\n            [-1.265273441185608, 48.67126215844558, 0],\n            [-1.265241298399216, 48.67124184577679, 0],\n            [-1.265207218610704, 48.67122296894281, 0],\n            [-1.265181932729216, 48.67121073151411, 0],\n            [-1.26544992960151, 48.67113685393213, 0],\n            [-1.265483673322028, 48.67112682924937, 0],\n            [-1.265523046503183, 48.67111319945916, 0],\n            [-1.265560989441354, 48.67109789327587, 0],\n            [-1.265597339656612, 48.6710809762445, 0],\n            [-1.265631941490051, 48.67106252080784, 0],\n            [-1.265664646770175, 48.67104260599668, 0],\n            [-1.265695315447493, 48.67102131709076, 0],\n            [-1.265723816194515, 48.6709987452544, 0],\n            [-1.265750026967167, 48.67097498714516, 0],\n            [-1.26577383552877, 48.67095014450042, 0],\n            [-1.265795139929453, 48.67092432370192, 0],\n            [-1.265800658743919, 48.6709169129107, 0],\n            [-1.266268127253321, 48.67027436086077, 0],\n            [-1.26652712376236, 48.67015042443713, 0],\n            [-1.266537827464165, 48.67014519596951, 0],\n            [-1.266572428308455, 48.67012674024764, 0],\n            [-1.266605132607404, 48.67010682516678, 0],\n            [-1.266635800315756, 48.6700855360077, 0],\n            [-1.266664300110141, 48.67006296393597, 0],\n            [-1.266690509950619, 48.67003920560994, 0],\n            [-1.266714317604487, 48.6700143627682, 0],\n            [-1.266735621125694, 48.66998854179308, 0],\n            [-1.26675432929215, 48.66996185325534, 0],\n            [-1.266770361995815, 48.66993441144088, 0],\n            [-1.266781617536614, 48.66991107862092, 0],\n            [-1.26709706868102, 48.6691899448854, 0],\n            [-1.267099101671456, 48.66918520011917, 0],\n            [-1.267109588918707, 48.66915660697637, 0],\n            [-1.267117230286465, 48.66912762075003, 0],\n            [-1.267121993057743, 48.66909836556419, 0],\n            [-1.267123856842889, 48.66906896669441, 0],\n            [-1.267122813665744, 48.66903955003123, 0],\n            [-1.267118867998511, 48.66901024154139, 0],\n            [-1.267112036742171, 48.668981166728, 0],\n            [-1.267102349154019, 48.66895245009329, 0],\n            [-1.267089846722509, 48.6689242146057, 0],\n            [-1.267074582989072, 48.66889658117283, 0],\n            [-1.26705662331944, 48.66886966812444, 0],\n            [-1.267036044623013, 48.6688435907049, 0],\n            [-1.267012935023819, 48.6688184605804, 0],\n            [-1.267001136790888, 48.66880733967888, 0],\n            [-1.26709498816566, 48.66863240418627, 0],\n            [-1.267096103003242, 48.66863030978445, 0],\n            [-1.267109391066872, 48.66860223216375, 0],\n            [-1.267119878186804, 48.6685736390187, 0],\n            [-1.267127519459939, 48.66854465279044, 0],\n            [-1.267132282170105, 48.66851539760289, 0],\n            [-1.267134145927533, 48.66848599873167, 0],\n            [-1.267133102756484, 48.66845658206735, 0],\n            [-1.267129157128979, 48.66842727357661, 0],\n            [-1.26712232594588, 48.66839819876256, 0],\n            [-1.267112638464163, 48.6683694821275, 0],\n            [-1.267100136171822, 48.6683412466398, 0],\n            [-1.267084872609707, 48.66831361320713, 0],\n            [-1.267066913142794, 48.66828670015922, 0],\n            [-1.2670463346796, 48.6682606227404, 0],\n            [-1.267023225343196, 48.66823549261689, 0],\n            [-1.267002479112542, 48.66821568904371, 0],\n            [-1.266617812181774, 48.66786873513859, 0],\n            [-1.266669588897409, 48.66768512003426, 0],\n            [-1.26693179181129, 48.66758462870082, 0],\n            [-1.266963723154899, 48.66757159786585, 0],\n            [-1.267000070349074, 48.66755468038519, 0],\n            [-1.267034669241165, 48.66753622452027, 0],\n            [-1.267067371672168, 48.66751630930367, 0],\n            [-1.267098037605001, 48.66749502001698, 0],\n            [-1.267126535723546, 48.66747244782587, 0],\n            [-1.267152743995359, 48.66744868938964, 0],\n            [-1.267176550194331, 48.66742384644714, 0],\n            [-1.267197852380686, 48.66739802538122, 0],\n            [-1.267216559338009, 48.66737133676294, 0],\n            [-1.267232590963456, 48.66734389487858, 0],\n            [-1.267245878611019, 48.66731581723936, 0],\n            [-1.267256365384948, 48.66728722407913, 0],\n            [-1.267264006384001, 48.66725823783908, 0],\n            [-1.267268768892849, 48.66722898264309, 0],\n            [-1.267270240571188, 48.66721126166707, 0],\n            [-1.267298620965083, 48.66667768611518, 0],\n            [-1.26735791930588, 48.6666754759064, 0],\n            [-1.267402166546712, 48.66667286239755, 0],\n            [-1.267446060986854, 48.66666833760091, 0],\n            [-1.267489414658827, 48.66666192089274, 0],\n            [-1.267532041910835, 48.6666536397512, 0],\n            [-1.267573760202376, 48.66664352963817, 0],\n            [-1.267614390885095, 48.66663163384799, 0],\n            [-1.267653759969027, 48.66661800332135, 0],\n            [-1.267691698866751, 48.66660269642768, 0],\n            [-1.267728045115641, 48.66658577871493, 0],\n            [-1.26776264307376, 48.66656732262895, 0],\n            [-1.267795344586458, 48.66654740720319, 0],\n            [-1.26782600962011, 48.66652611772019, 0],\n            [-1.267854506862756, 48.66650354534657, 0],\n            [-1.267880714285747, 48.66647978674213, 0],\n            [-1.267904519666354, 48.66645494364671, 0],\n            [-1.267925821068476, 48.66642912244365, 0],\n            [-1.267944527278977, 48.66640243370469, 0],\n            [-1.267960558198249, 48.66637499171644, 0],\n            [-1.267973845183201, 48.66634691399097, 0],\n            [-1.267984331341243, 48.6663183207621, 0],\n            [-1.26799197177335, 48.66628933447142, 0],\n            [-1.26799673376697, 48.66626007924314, 0],\n            [-1.267998596935429, 48.66623068035302, 0],\n            [-1.267997553305467, 48.66620126369171, 0],\n            [-1.267977741906345, 48.66596809157402, 0],\n            [-1.269352937126664, 48.66515129862422, 0],\n            [-1.269375314319783, 48.66513739035384, 0],\n            [-1.269405977824798, 48.66511610044593, 0],\n            [-1.26943447355915, 48.66509352767707, 0],\n            [-1.269460679500847, 48.665069768709, 0],\n            [-1.269484483433392, 48.66504492528289, 0],\n            [-1.269505783426921, 48.66501910378351, 0],\n            [-1.269524488274272, 48.66499241478393, 0],\n            [-1.269540517881913, 48.66496497257191, 0],\n            [-1.269553803612149, 48.66493689466027, 0],\n            [-1.269564288577705, 48.66490830128401, 0],\n            [-1.269571927884932, 48.66487931488508, 0],\n            [-1.269576688825873, 48.66485005958814, 0],\n            [-1.269578551018393, 48.66482066066932, 0],\n            [-1.269577506493447, 48.66479124401941, 0],\n            [-1.269573559728892, 48.66476193560495, 0],\n            [-1.269566727630405, 48.66473286092881, 0],\n            [-1.2695570394589, 48.66470414449271, 0],\n            [-1.269544536705247, 48.66467590926414, 0],\n            [-1.269529272912537, 48.66464827614971, 0],\n            [-1.269516555865262, 48.66462874223586, 0],\n            [-1.269080581708006, 48.66400036865976, 0],\n            [-1.269136517016372, 48.66390518457099, 0],\n            [-1.270071425167167, 48.66361428536391, 0],\n            [-1.270077436812189, 48.66361239089733, 0],\n            [-1.270116802864827, 48.66359875952166, 0],\n            [-1.270154738734992, 48.66358345180932, 0],\n            [-1.270191081973051, 48.6635665333118, 0],\n            [-1.270225676949994, 48.66354807647826, 0],\n            [-1.270258375523863, 48.66352816034532, 0],\n            [-1.270289037673682, 48.66350687019871, 0],\n            [-1.270317532099801, 48.66348429720772, 0],\n            [-1.270343736785662, 48.66346053803488, 0],\n            [-1.270367539520245, 48.66343569442244, 0],\n            [-1.270388838378742, 48.66340987275595, 0],\n            [-1.270407542158987, 48.66338318360918, 0],\n            [-1.270423570771704, 48.66335574127042, 0],\n            [-1.270436855583734, 48.66332766325327, 0],\n            [-1.27044733971164, 48.6632990697928, 0],\n            [-1.27045497826543, 48.66327008333164, 0],\n            [-1.270459738540324, 48.66324082799464, 0],\n            [-1.270461600157005, 48.66321142905804, 0],\n            [-1.270460555148925, 48.66318201241276, 0],\n            [-1.27045660799602, 48.66315270402532, 0],\n            [-1.270449775605647, 48.66312362939846, 0],\n            [-1.270440087239897, 48.66309491303365, 0],\n            [-1.270427584390641, 48.66306667789814, 0],\n            [-1.270412320601029, 48.66303904489801, 0],\n            [-1.270394361237073, 48.66301213236121, 0],\n            [-1.270392897659034, 48.66301013257818, 0],\n            [-1.270106857063984, 48.66262174108219, 0],\n            [-1.269687082163444, 48.66164283245227, 0],\n            [-1.26981653655579, 48.66161560307815, 0],\n            [-1.26982337741421, 48.66161413770616, 0],\n            [-1.269865091064444, 48.66160402675553, 0],\n            [-1.269905717133693, 48.66159213014868, 0],\n            [-1.269945081651458, 48.66157849882996, 0],\n            [-1.2699830160499, 48.6615631911723, 0],\n            [-1.270019357885781, 48.66154627272677, 0],\n            [-1.270053951535966, 48.66152781594239, 0],\n            [-1.27008664886429, 48.66150789985558, 0],\n            [-1.270117309855017, 48.66148660975182, 0],\n            [-1.270145803213549, 48.66146403680027, 0],\n            [-1.270172006927848, 48.66144027766325, 0],\n            [-1.270195808791048, 48.66141543408286, 0],\n            [-1.270217106882119, 48.66138961244455, 0],\n            [-1.270235810002012, 48.66136292332196, 0],\n            [-1.270251838064629, 48.66133548100326, 0],\n            [-1.27026512243887, 48.66130740300186, 0],\n            [-1.270275606243274, 48.66127880955306, 0],\n            [-1.27028324458919, 48.66124982309909, 0],\n            [-1.270288004772757, 48.66122056776498, 0],\n            [-1.270289866415058, 48.66119116882693, 0],\n            [-1.270288821549404, 48.66116175217586, 0],\n            [-1.270269740890051, 48.66093727878231, 0],\n            [-1.270265794024517, 48.66090797038357, 0],\n            [-1.270258962049411, 48.66087889574062, 0],\n            [-1.270249274225088, 48.66085017935512, 0],\n            [-1.27023677204102, 48.66082194419423, 0],\n            [-1.270233182056131, 48.66081491628377, 0],\n            [-1.269597700919039, 48.65960383901003, 0],\n            [-1.269609053845238, 48.65960215822248, 0],\n            [-1.269651674764392, 48.65959387628842, 0],\n            [-1.269693386773578, 48.65958376539869, 0],\n            [-1.26973401125136, 48.65957186885098, 0],\n            [-1.269773374234373, 48.65955823758939, 0],\n            [-1.269811307161233, 48.65954292998628, 0],\n            [-1.269847647595015, 48.6595260115928, 0],\n            [-1.269882239918561, 48.65950755485757, 0],\n            [-1.269914936001422, 48.65948763881691, 0],\n            [-1.269945595833175, 48.65946634875604, 0],\n            [-1.269974088124182, 48.65944377584389, 0],\n            [-1.270000290866957, 48.65942001674278, 0],\n            [-1.270024091858895, 48.65939517319449, 0],\n            [-1.270045389182539, 48.65936935158436, 0],\n            [-1.27006409164238, 48.65934266248593, 0],\n            [-1.270080119154757, 48.65931522018735, 0],\n            [-1.270093403091208, 48.65928714220188, 0],\n            [-1.270103886572191, 48.65925854876459, 0],\n            [-1.270111524710154, 48.65922956231795, 0],\n            [-1.270116284802394, 48.65920030698675, 0],\n            [-1.270118146470274, 48.65917090804727, 0],\n            [-1.270117101747046, 48.65914149139039, 0],\n            [-1.270113155111408, 48.65911218298265, 0],\n            [-1.270106323468496, 48.65908310832697, 0],\n            [-1.270096636077227, 48.65905439192488, 0],\n            [-1.270084134425273, 48.65902615674372, 0],\n            [-1.270080556530213, 48.65901915158539, 0],\n            [-1.269411075891587, 48.65774300306033, 0],\n            [-1.269565853591863, 48.65675669477042, 0],\n            [-1.269567601365169, 48.65674373709332, 0],\n            [-1.269569463262825, 48.65671433815771, 0],\n            [-1.26956841891158, 48.65668492149074, 0],\n            [-1.269564472788411, 48.65665561305902, 0],\n            [-1.269557641796359, 48.6566265383656, 0],\n            [-1.269547955191541, 48.65659782191214, 0],\n            [-1.269535454458113, 48.65656958666628, 0],\n            [-1.269520193130551, 48.6565419535347, 0],\n            [-1.269502236563938, 48.65651504084558, 0],\n            [-1.269481661654421, 48.65648896384202, 0],\n            [-1.269458556510084, 48.65646383418835, 0],\n            [-1.269433020072759, 48.65643975949211, 0],\n            [-1.269405161695294, 48.65641684284337, 0],\n            [-1.269375100672503, 48.65639518237292, 0],\n            [-1.269342965730835, 48.65637487083263, 0],\n            [-1.269308894476717, 48.65635599519793, 0],\n            [-1.269273032807683, 48.65633863629557, 0],\n            [-1.269235534287354, 48.65632286845738, 0],\n            [-1.269196559487846, 48.65630875920222, 0],\n            [-1.26916262853336, 48.6562981834199, 0],\n            [-1.269136495008136, 48.65629061484636, 0],\n            [-1.268988205294628, 48.65611944577924, 0],\n            [-1.269010291085044, 48.65610194767583, 0],\n            [-1.269036492542108, 48.65607818878949, 0],\n            [-1.26906029242867, 48.65605334543556, 0],\n            [-1.269081588832051, 48.65602752399849, 0],\n            [-1.269100290560656, 48.65600083505112, 0],\n            [-1.269116317533965, 48.65597339288081, 0],\n            [-1.269129601125851, 48.65594531500052, 0],\n            [-1.269140084458194, 48.65591672164472, 0],\n            [-1.269147722644097, 48.65588773525547, 0],\n            [-1.269152482980682, 48.65585847995746, 0],\n            [-1.26915434508823, 48.65582908102675, 0],\n            [-1.269153300998136, 48.65579966435418, 0],\n            [-1.269134227440882, 48.65557519068673, 0],\n            [-1.269130281657762, 48.65554588223777, 0],\n            [-1.269123451067449, 48.65551680751623, 0],\n            [-1.269113764924241, 48.65548809102384, 0],\n            [-1.269101264710517, 48.65545985572838, 0],\n            [-1.269086003958075, 48.6554322225368, 0],\n            [-1.269068048020019, 48.65540530977762, 0],\n            [-1.26904747378966, 48.65537923269409, 0],\n            [-1.269024369371941, 48.65535410295092, 0],\n            [-1.268998833705899, 48.65533002815609, 0],\n            [-1.268970976140904, 48.65530711139996, 0],\n            [-1.268940915968353, 48.65528545081391, 0],\n            [-1.268908781911078, 48.65526513915032, 0],\n            [-1.268874711571748, 48.65524626338509, 0],\n            [-1.268838850843701, 48.65522890434549, 0],\n            [-1.268801353286841, 48.655213136364, 0],\n            [-1.268762379469088, 48.65519902696008, 0],\n            [-1.268757269236631, 48.65513887940286, 0],\n            [-1.268753323707448, 48.65510957094008, 0],\n            [-1.268746493394273, 48.65508049619511, 0],\n            [-1.268736807550346, 48.65505177967003, 0],\n            [-1.268724307656646, 48.65502354433265, 0],\n            [-1.268709047243712, 48.65499591108996, 0],\n            [-1.26869109166311, 48.65496899827094, 0],\n            [-1.268670517806672, 48.6549429211189, 0],\n            [-1.268647413777702, 48.65491779129897, 0],\n            [-1.268621878513618, 48.65489371641935, 0],\n            [-1.268594021362013, 48.65487079957093, 0],\n            [-1.268563961612583, 48.65484913888533, 0],\n            [-1.268531827986263, 48.65482882711538, 0],\n            [-1.268497758083984, 48.65480995123749, 0],\n            [-1.268461897797104, 48.6547925920794, 0],\n            [-1.26842440068369, 48.6547768239741, 0],\n            [-1.268385427309762, 48.65476271444152, 0],\n            [-1.268380317572448, 48.65470256686568, 0],\n            [-1.268361247881022, 48.65447809305238, 0],\n            [-1.268323109008782, 48.65402914540593, 0],\n            [-1.268319163819607, 48.65399983692596, 0],\n            [-1.26831233390811, 48.6539707621529, 0],\n            [-1.268302648525754, 48.65394204558885, 0],\n            [-1.268290149151539, 48.6539138102019, 0],\n            [-1.268274889313825, 48.65388617689929, 0],\n            [-1.26825693436168, 48.65385926401017, 0],\n            [-1.268236361184278, 48.65383318677816, 0],\n            [-1.268213257881987, 48.65380805686877, 0],\n            [-1.268187723389107, 48.65378398189057, 0],\n            [-1.268159867049952, 48.65376106493483, 0],\n            [-1.268129808150682, 48.65373940413363, 0],\n            [-1.268097675408675, 48.65371909224042, 0],\n            [-1.268063606420984, 48.65370021623199, 0],\n            [-1.268027747075171, 48.65368285693667, 0],\n            [-1.267990250925186, 48.65366708868808, 0],\n            [-1.267951278532913, 48.65365297900674, 0],\n            [-1.267910996781438, 48.65364058831106, 0],\n            [-1.267889278484877, 48.65363502030965, 0],\n            [-1.267878490865959, 48.65362134640148, 0],\n            [-1.267855387839747, 48.65359621641954, 0],\n            [-1.267829853625704, 48.65357214136124, 0],\n            [-1.267801997566924, 48.65354922431813, 0],\n            [-1.26777193894839, 48.65352756342274, 0],\n            [-1.267739806486219, 48.65350725142885, 0],\n            [-1.267705737776346, 48.65348837531378, 0],\n            [-1.267669878705053, 48.65347101590619, 0],\n            [-1.267632382825192, 48.65345524754026, 0],\n            [-1.267593410697427, 48.65344113773701, 0],\n            [-1.267588302041469, 48.65338099012033, 0],\n            [-1.267584357331311, 48.65335168161379, 0],\n            [-1.267577527932584, 48.65332260679559, 0],\n            [-1.267567843094553, 48.65329389016819, 0],\n            [-1.267555344293898, 48.65326565469983, 0],\n            [-1.267540085056544, 48.65323802129807, 0],\n            [-1.26752213072894, 48.65321110829264, 0],\n            [-1.267501558197581, 48.65318503092753, 0],\n            [-1.267478455560138, 48.65315990086886, 0],\n            [-1.267452921747994, 48.65313582572582, 0],\n            [-1.267425066102583, 48.65311290859039, 0],\n            [-1.267395007907111, 48.65309124759547, 0],\n            [-1.267362875875895, 48.65307093549527, 0],\n            [-1.267328807603012, 48.65305205926753, 0],\n            [-1.267292948972847, 48.65303469974147, 0],\n            [-1.267255453536431, 48.65301893125173, 0],\n            [-1.267216481852471, 48.65300482131981, 0],\n            [-1.267211373691557, 48.65294467368454, 0],\n            [-1.267207429235275, 48.65291536516409, 0],\n            [-1.267200600113647, 48.6528862903226, 0],\n            [-1.267190915574816, 48.65285757366248, 0],\n            [-1.267178417094186, 48.65282933815214, 0],\n            [-1.267163158196261, 48.65280170469937, 0],\n            [-1.26714520422607, 48.65277479163404, 0],\n            [-1.267124632068633, 48.65274871420046, 0],\n            [-1.267101529819878, 48.65272358406501, 0],\n            [-1.267075996409632, 48.65269950883732, 0],\n            [-1.267048141177611, 48.65267659160956, 0],\n            [-1.2670180834052, 48.65265493051508, 0],\n            [-1.26698595180492, 48.65263461830857, 0],\n            [-1.266951883969008, 48.6526157419682, 0],\n            [-1.266916025780009, 48.65259838232363, 0],\n            [-1.266878530786959, 48.6525826137101, 0],\n            [-1.266839559546844, 48.65256850364954, 0],\n            [-1.266799278937716, 48.6525561125621, 0],\n            [-1.266777561232482, 48.65255054434953, 0],\n            [-1.266766774148376, 48.6525368703357, 0],\n            [-1.266743672175721, 48.65251174012775, 0],\n            [-1.266718139044312, 48.65248766481987, 0],\n            [-1.266690284092646, 48.65246474750482, 0],\n            [-1.266660226600911, 48.65244308631618, 0],\n            [-1.266628095280507, 48.65242277400903, 0],\n            [-1.266594027722372, 48.65240389756194, 0],\n            [-1.266558169807894, 48.65238653780515, 0],\n            [-1.266520675084968, 48.65237076907427, 0],\n            [-1.266481704109341, 48.6523566588918, 0],\n            [-1.266441423758047, 48.65234426767835, 0],\n            [-1.266419706183908, 48.65233869939787, 0],\n            [-1.266408919242508, 48.65232502535014, 0],\n            [-1.266385817545932, 48.65229989506964, 0],\n            [-1.26636028469334, 48.65227581968172, 0],\n            [-1.26633243002203, 48.6522529022793, 0],\n            [-1.26630237281103, 48.65223124099649, 0],\n            [-1.266270241770462, 48.65221092858866, 0],\n            [-1.266236174490065, 48.6521920520349, 0],\n            [-1.266200316850128, 48.65217469216588, 0],\n            [-1.266162822397325, 48.65215892331765, 0],\n            [-1.266123851686207, 48.65214481301329, 0],\n            [-1.266083571592707, 48.65213242167385, 0],\n            [-1.266042154599092, 48.65212180235978, 0],\n            [-1.265999778055658, 48.65211300054336, 0],\n            [-1.265956623420752, 48.65210605391435, 0],\n            [-1.265912875484958, 48.65210099221865, 0],\n            [-1.265868721578667, 48.6520978371305, 0],\n            [-1.265824350770799, 48.65209660216021, 0],\n            [-1.265779953058792, 48.65209729259588, 0],\n            [-1.265565234978596, 48.65210529493217, 0],\n            [-1.265564010075018, 48.65210351771958, 0],\n            [-1.265558099721171, 48.65209516997105, 0],\n            [-1.265537528664513, 48.65206909225135, 0],\n            [-1.265514427520835, 48.65204396179471, 0],\n            [-1.265488895215245, 48.65201988621218, 0],\n            [-1.265461041082685, 48.65199696859754, 0],\n            [-1.265430984399902, 48.65197530708571, 0],\n            [-1.265398853874662, 48.65195499443319, 0],\n            [-1.265364787094685, 48.65193611762, 0],\n            [-1.265328929937941, 48.65191875747796, 0],\n            [-1.265291435949048, 48.65190298834428, 0],\n            [-1.265252465680695, 48.65188887774331, 0],\n            [-1.265212186006839, 48.65187648609732, 0],\n            [-1.265170769407908, 48.65186586646805, 0],\n            [-1.26512839323258, 48.65185706432921, 0],\n            [-1.265085238937582, 48.65185011737188, 0],\n            [-1.2650414913121, 48.6518450553434, 0],\n            [-1.264997337685145, 48.65184189991935, 0],\n            [-1.26495296712442, 48.65184066461158, 0],\n            [-1.264908569626382, 48.65184135470968, 0],\n            [-1.264864335302858, 48.65184396725858, 0],\n            [-1.264820453567093, 48.65184849107122, 0],\n            [-1.264777112322459, 48.65185490677651, 0],\n            [-1.264734497158342, 48.65186318690206, 0],\n            [-1.264692790554871, 48.6518732959921, 0],\n            [-1.264652171102629, 48.65188519075899, 0],\n            [-1.264612812736543, 48.65189882026875, 0],\n            [-1.264574883992418, 48.65191412615918, 0],\n            [-1.264538547284675, 48.65193104288948, 0],\n            [-1.26450395821095, 48.6519494980213, 0],\n            [-1.264471264885723, 48.65196941252851, 0],\n            [-1.264440607306687, 48.65199070113582, 0],\n            [-1.26441211675427, 48.65201327268374, 0],\n            [-1.264385915230399, 48.65203703051932, 0],\n            [-1.264362114935544, 48.65206187290922, 0],\n            [-1.264340817788459, 48.65208769347618, 0],\n            [-1.264322114989449, 48.65211438165397, 0],\n            [-1.264306086630169, 48.65214182316092, 0],\n            [-1.264301626188233, 48.65215055735173, 0],\n            [-1.264166032643881, 48.65242531464685, 0],\n            [-1.264040002301679, 48.65262002460328, 0],\n            [-1.264033310772368, 48.65261274501855, 0],\n            [-1.264007778887022, 48.65258866910688, 0],\n            [-1.263979925114314, 48.65256575113308, 0],\n            [-1.263949868729473, 48.65254408923357, 0],\n            [-1.263917738439084, 48.65252377616649, 0],\n            [-1.263883671829691, 48.65250489891371, 0],\n            [-1.263847814778663, 48.65248753830879, 0],\n            [-1.263810320830177, 48.65247176869106, 0],\n            [-1.263771350536644, 48.65245765758685, 0],\n            [-1.263731070772201, 48.65244526542068, 0],\n            [-1.263689654017675, 48.65243464525645, 0],\n            [-1.263647277622342, 48.65242584257015, 0],\n            [-1.263604123043931, 48.65241889505523, 0],\n            [-1.263560375072805, 48.65241383246144, 0],\n            [-1.263516221039516, 48.65241067646678, 0],\n            [-1.263510334167446, 48.65241051249878, 0],\n            [-1.263386915314049, 48.65226762841789, 0],\n            [-1.263223605410788, 48.65181911054817, 0],\n            [-1.263221011555977, 48.65181222543225, 0],\n            [-1.263208515563496, 48.65178398948688, 0],\n            [-1.263193259163793, 48.65175635550361, 0],\n            [-1.263175307690865, 48.65172944181417, 0],\n            [-1.263154738018979, 48.65170336366604, 0],\n            [-1.263131638233894, 48.6516782327284, 0],\n            [-1.263106107254464, 48.65165415661426, 0],\n            [-1.263078254410093, 48.6516312384198, 0],\n            [-1.263048198971974, 48.65160957628235, 0],\n            [-1.263016069642637, 48.65158926296111, 0],\n            [-1.262982004004587, 48.65157038543902, 0],\n            [-1.262946147930937, 48.65155302455089, 0],\n            [-1.262908654961708, 48.65153725463703, 0],\n            [-1.262869685645174, 48.65152314322529, 0],\n            [-1.262829406851174, 48.65151075074139, 0],\n            [-1.26278799105652, 48.65150013025051, 0],\n            [-1.262745615606171, 48.65149132723012, 0],\n            [-1.262702461954199, 48.65148437937527, 0],\n            [-1.262658714886611, 48.65147931643676, 0],\n            [-1.2626145617302, 48.65147616009445, 0],\n            [-1.262570191550649, 48.65147492386388, 0],\n            [-1.262525794342739, 48.65147561303865, 0],\n            [-1.262481560217137, 48.65147822466767, 0],\n            [-1.262437678586148, 48.65148274756785, 0],\n            [-1.262394337352786, 48.65148916237199, 0],\n            [-1.262369354803716, 48.65149401595424, 0],\n            [-1.262325885753237, 48.65144382511859, 0],\n            [-1.26231585801224, 48.65132561076925, 0],\n            [-1.262311916535395, 48.65129630207705, 0],\n            [-1.262305090463347, 48.65126722694063, 0],\n            [-1.262295409031111, 48.65123850986361, 0],\n            [-1.262282913700821, 48.65121027381619, 0],\n            [-1.262267657983531, 48.65118263970845, 0],\n            [-1.262249707210603, 48.65115572587305, 0],\n            [-1.262229138253366, 48.65112964755771, 0],\n            [-1.26220603919404, 48.65110451643245, 0],\n            [-1.262180508948863, 48.65108044011111, 0],\n            [-1.26215265684388, 48.65105752169075, 0],\n            [-1.262122602147209, 48.65103585930966, 0],\n            [-1.26209047355812, 48.65101554572809, 0],\n            [-1.262056408655981, 48.65099666793008, 0],\n            [-1.262020553310768, 48.65097930675158, 0],\n            [-1.261983061059364, 48.65096353653421, 0],\n            [-1.261944092446987, 48.6509494248071, 0],\n            [-1.261903814340457, 48.65093703199729, 0],\n            [-1.26188209787623, 48.65093146285618, 0],\n            [-1.261871312470162, 48.65091778837994, 0],\n            [-1.261848213686936, 48.65089265718218, 0],\n            [-1.261822683720535, 48.65086858078079, 0],\n            [-1.261794831895948, 48.6508456622731, 0],\n            [-1.261764777479932, 48.65082399979784, 0],\n            [-1.261732649170679, 48.65080368611563, 0],\n            [-1.261698584546278, 48.65078480821095, 0],\n            [-1.261662729475606, 48.65076744692023, 0],\n            [-1.261625237494306, 48.6507516765856, 0],\n            [-1.261586269146418, 48.65073756473651, 0],\n            [-1.261545991297701, 48.65072517180074, 0],\n            [-1.261504576420833, 48.65071455084539, 0],\n            [-1.261462201857035, 48.65070574734993, 0],\n            [-1.261419049056143, 48.65069879901119, 0],\n            [-1.261375302800984, 48.65069373558247, 0],\n            [-1.261331150414657, 48.6506905787454, 0],\n            [-1.261286780959627, 48.6506893420178, 0],\n            [-1.261242384427537, 48.65069003069527, 0],\n            [-1.26056481687667, 48.6507152553984, 0],\n            [-1.260520583317875, 48.65071786627048, 0],\n            [-1.260476702173916, 48.65072238841985, 0],\n            [-1.26043336134563, 48.65072880248253, 0],\n            [-1.260431488533844, 48.65072912449299, 0],\n            [-1.259874123426037, 48.65082551819031, 0],\n            [-1.259833381146567, 48.6508334744922, 0],\n            [-1.259791674411981, 48.65084358179891, 0],\n            [-1.259751054632241, 48.65085547482908, 0],\n            [-1.259711695744052, 48.65086910265617, 0],\n            [-1.259709832200713, 48.65086980282769, 0],\n            [-1.259459122500573, 48.65096434597109, 0],\n            [-1.25945118691998, 48.65095686172099, 0],\n            [-1.259423336127008, 48.65093394263692, 0],\n            [-1.259393282679617, 48.65091227953973, 0],\n            [-1.259361155271703, 48.65089196519268, 0],\n            [-1.259327091477558, 48.65087308658296, 0],\n            [-1.259291237162501, 48.65085572455023, 0],\n            [-1.259253745858919, 48.65083995343969, 0],\n            [-1.259214778107973, 48.65082584078413, 0],\n            [-1.259174500772866, 48.65081344701476, 0],\n            [-1.259133086324076, 48.65080282520225, 0],\n            [-1.259090712101005, 48.65079402082975, 0],\n            [-1.259047559551991, 48.6507870715979, 0],\n            [-1.259003813458803, 48.65078200726371, 0],\n            [-1.258959661143879, 48.65077884951278, 0],\n            [-1.258915291669305, 48.65077761186679, 0],\n            [-1.258870895026822, 48.65077829962532, 0],\n            [-1.258599820364705, 48.65078838611784, 0],\n            [-1.258422610617829, 48.65077146742679, 0],\n            [-1.258208110623003, 48.65052577293941, 0],\n            [-1.258081668658664, 48.65038094134821, 0],\n            [-1.258062005235674, 48.65035978860352, 0],\n            [-1.258036477352027, 48.65033571135761, 0],\n            [-1.258008627547584, 48.65031279192861, 0],\n            [-1.257978575080649, 48.65029112845951, 0],\n            [-1.257946448640701, 48.65027081371486, 0],\n            [-1.257912385798155, 48.65025193468377, 0],\n            [-1.257876532414253, 48.65023457220759, 0],\n            [-1.257839042017106, 48.65021880063346, 0],\n            [-1.257800075144298, 48.65020468749621, 0],\n            [-1.257766150703821, 48.65019410833483, 0],\n            [-1.257742449690629, 48.6501872406014, 0],\n            [-1.257729796980189, 48.65017119625846, 0],\n            [-1.257706700608994, 48.65014606422444, 0],\n            [-1.257702029481069, 48.65014165847588, 0],\n            [-1.257708711670491, 48.65014213646401, 0],\n            [-1.257753080554858, 48.6501433745773, 0],\n            [-1.257797476652176, 48.65014268725187, 0],\n            [-1.258475037877902, 48.65011747891333, 0],\n            [-1.259152598424431, 48.65009226656781, 0],\n            [-1.259582154246484, 48.65007628050577, 0],\n            [-1.259607682738344, 48.65010035740767, 0],\n            [-1.259635533153758, 48.65012327644822, 0],\n            [-1.259665586234122, 48.65014493948303, 0],\n            [-1.25969771328784, 48.65016525374578, 0],\n            [-1.259731776741737, 48.65018413224618, 0],\n            [-1.259767630730155, 48.65020149414186, 0],\n            [-1.259805121718989, 48.65021726508498, 0],\n            [-1.259844089164099, 48.6502313775403, 0],\n            [-1.259884366198087, 48.65024377107482, 0],\n            [-1.259925780345239, 48.65025439261614, 0],\n            [-1.259968154259916, 48.6502631966801, 0],\n            [-1.260011306486668, 48.65027014556553, 0],\n            [-1.260055052236131, 48.6502752095152, 0],\n            [-1.260099204177774, 48.65027836684406, 0],\n            [-1.260143573241097, 48.65027960403166, 0],\n            [-1.260187969425965, 48.65027891577989, 0],\n            [-1.260366799764803, 48.65027225915025, 0],\n            [-1.260916312994063, 48.65042943997123, 0],\n            [-1.260919743033335, 48.65043041367211, 0],\n            [-1.260961157552769, 48.65044103483906, 0],\n            [-1.261003531805895, 48.65044983852, 0],\n            [-1.261046684335785, 48.6504567870153, 0],\n            [-1.261090430351795, 48.65046185056956, 0],\n            [-1.261134582522234, 48.65046500749948, 0],\n            [-1.261178951775666, 48.65046624428603, 0],\n            [-1.261223348111114, 48.65046555563313, 0],\n            [-1.261267581411516, 48.65046294448968, 0],\n            [-1.261311462258052, 48.65045842203734, 0],\n            [-1.261354802741415, 48.65045200764241, 0],\n            [-1.261397417266263, 48.6504437287731, 0],\n            [-1.261439123346553, 48.65043362088157, 0],\n            [-1.261479742386504, 48.65042172725261, 0],\n            [-1.261519100445716, 48.65040809881771, 0],\n            [-1.261522344266088, 48.65040687664039, 0],\n            [-1.262041823126057, 48.6502098958564, 0],\n            [-1.262220652974087, 48.65020323633309, 0],\n            [-1.262264885992075, 48.65020062480458, 0],\n            [-1.262308766520086, 48.6501961019702, 0],\n            [-1.262352106650231, 48.65018968719788, 0],\n            [-1.262394720788729, 48.65018140795747, 0],\n            [-1.262436426451212, 48.65017129970271, 0],\n            [-1.262477045043402, 48.65015940572, 0],\n            [-1.262516402627174, 48.65014577694229, 0],\n            [-1.262554330664245, 48.65013047173147, 0],\n            [-1.262590666738594, 48.65011355562835, 0],\n            [-1.262625255251808, 48.65009510107183, 0],\n            [-1.262657948089665, 48.6500751870888, 0],\n            [-1.262688605255711, 48.65005389895571, 0],\n            [-1.262717095471677, 48.6500313278333, 0],\n            [-1.262743296739013, 48.65000757037614, 0],\n            [-1.262767096861346, 48.64998272831905, 0],\n            [-1.262788393925038, 48.64995690804089, 0],\n            [-1.262807096735599, 48.6499302201095, 0],\n            [-1.262823125207908, 48.64990277880811, 0],\n            [-1.262836410709447, 48.64987470164572, 0],\n            [-1.26284689635386, 48.64984610885379, 0],\n            [-1.26285453724438, 48.64981712287205, 0],\n            [-1.262859300666517, 48.64978786782335, 0],\n            [-1.262861166227403, 48.64975846898275, 0],\n            [-1.262860125943583, 48.64972905224062, 0],\n            [-1.262855023324356, 48.64966890439776, 0],\n            [-1.262891358964173, 48.64965198819876, 0],\n            [-1.262897111337971, 48.64964891899226, 0],\n            [-1.262920546885713, 48.64966373641364, 0],\n            [-1.262954611209495, 48.64968261395649, 0],\n            [-1.262990465952789, 48.64969997484421, 0],\n            [-1.263027957578233, 48.64971574473321, 0],\n            [-1.263066925538972, 48.64972985609289, 0],\n            [-1.263107202965406, 48.64974224849479, 0],\n            [-1.263148617380163, 48.64975286887157, 0],\n            [-1.263190991436487, 48.64976167174392, 0],\n            [-1.263234143678067, 48.64976861941564, 0],\n            [-1.263277889315779, 48.64977368213501, 0],\n            [-1.263322041019452, 48.64977683822207, 0],\n            [-1.263366409719626, 48.64977807416159, 0],\n            [-1.263410805417724, 48.64977738466101, 0],\n            [-1.263455037999421, 48.6497747726729, 0],\n            [-1.263498918048915, 48.6497702493826, 0],\n            [-1.263542257660395, 48.64976383415988, 0],\n            [-1.263584871242218, 48.64975555447652, 0],\n            [-1.263626576312336, 48.64974544578834, 0],\n            [-1.263667194279345, 48.64973355138332, 0],\n            [-1.263706551207462, 48.6497199221963, 0],\n            [-1.2637444785613, 48.64970461659112, 0],\n            [-1.263780813927815, 48.64968770011005, 0],\n            [-1.263815401711532, 48.64966924519371, 0],\n            [-1.263848093801447, 48.64964933087056, 0],\n            [-1.263878750204264, 48.6496280424184, 0],\n            [-1.26390723964503, 48.64960547099938, 0],\n            [-1.263933440128433, 48.64958171326932, 0],\n            [-1.263957239461497, 48.64955687096427, 0],\n            [-1.263978535733963, 48.64953105046413, 0],\n            [-1.263997237754635, 48.64950436233774, 0],\n            [-1.264013265442112, 48.64947692086908, 0],\n            [-1.264026550166852, 48.64944884356775, 0],\n            [-1.264037035045897, 48.64942025066615, 0],\n            [-1.264044675186058, 48.6493912646042, 0],\n            [-1.264049437875681, 48.64936200950522, 0],\n            [-1.264050037679547, 48.64935619542077, 0],\n            [-1.264070627781031, 48.6491356083739, 0],\n            [-1.264679263045339, 48.64925883500618, 0],\n            [-1.264695854476627, 48.64926204163707, 0],\n            [-1.264739006497544, 48.64926898874229, 0],\n            [-1.264782751852183, 48.6492740508872, 0],\n            [-1.264826903211711, 48.64927720639443, 0],\n            [-1.264871271508188, 48.64927844175122, 0],\n            [-1.264915666744675, 48.64927775166751, 0],\n            [-1.264959898808886, 48.64927513909835, 0],\n            [-1.265003778287217, 48.64927061523151, 0],\n            [-1.265047117276275, 48.64926419943933, 0],\n            [-1.265089730187134, 48.64925591919604, 0],\n            [-1.265131434540705, 48.64924580995967, 0],\n            [-1.265172051748442, 48.64923391502076, 0],\n            [-1.265211407877758, 48.64922028531639, 0],\n            [-1.265249334397003, 48.64920497921249, 0],\n            [-1.265285668896492, 48.64918806225357, 0],\n            [-1.265320255784705, 48.64916960688235, 0],\n            [-1.265352946954017, 48.64914969212915, 0],\n            [-1.265383602415446, 48.64912840327354, 0],\n            [-1.265412090898079, 48.64910583147959, 0],\n            [-1.265438290410399, 48.64908207340465, 0],\n            [-1.265462088763887, 48.64905723078611, 0],\n            [-1.265483384052379, 48.6490314100054, 0],\n            [-1.265502085088999, 48.64900472163245, 0],\n            [-1.26551811179624, 48.64897727995241, 0],\n            [-1.265531395549058, 48.64894920247567, 0],\n            [-1.26554187946869, 48.64892060943532, 0],\n            [-1.265549518665685, 48.64889162327205, 0],\n            [-1.265554280432846, 48.64886236810948, 0],\n            [-1.265556144384359, 48.64883296922316, 0],\n            [-1.265555102543665, 48.64880355250369, 0],\n            [-1.265551159377112, 48.64877424391793, 0],\n            [-1.265544331775008, 48.64874516896948, 0],\n            [-1.265534648978963, 48.64871645216127, 0],\n            [-1.265522152456946, 48.64868821646234, 0],\n            [-1.265506895725028, 48.64866058278119, 0],\n            [-1.265488944119027, 48.64863366944871, 0],\n            [-1.265468374513767, 48.64860759171042, 0],\n            [-1.265467318357225, 48.64860635776631, 0],\n            [-1.265108290742707, 48.64818842699301, 0],\n            [-1.265098186395368, 48.64806937969079, 0],\n            [-1.265094243552576, 48.64804007108788, 0],\n            [-1.265087416314201, 48.64801099611078, 0],\n            [-1.265077733920315, 48.64798227926248, 0],\n            [-1.265065237837146, 48.6479540435123, 0],\n            [-1.26504998157893, 48.64792640976897, 0],\n            [-1.265032030479383, 48.64789949636354, 0],\n            [-1.265011461411174, 48.64787341854196, 0],\n            [-1.264988362457105, 48.64784828797214, 0],\n            [-1.26496283253289, 48.64782421226547, 0],\n            [-1.264934980963199, 48.64780129451641, 0],\n            [-1.26490492701385, 48.64777963286042, 0],\n            [-1.264872799380956, 48.64775932005455, 0],\n            [-1.264838735639748, 48.6477404430796, 0],\n            [-1.264802881655267, 48.64772308276801, 0],\n            [-1.26476539095856, 48.64770731345767, 0],\n            [-1.26472642408813, 48.64769320267377, 0],\n            [-1.264721319443902, 48.64763305490573, 0],\n            [-1.264717376854887, 48.64760374628899, 0],\n            [-1.264710549893571, 48.64757467128859, 0],\n            [-1.264700867798805, 48.64754595440763, 0],\n            [-1.264688372035581, 48.64751771861549, 0],\n            [-1.264673116116692, 48.64749008482116, 0],\n            [-1.26465516537448, 48.6474631713559, 0],\n            [-1.264634596680052, 48.6474370934659, 0],\n            [-1.264611498114612, 48.64741196281933, 0],\n            [-1.264585968592196, 48.64738788702801, 0],\n            [-1.264558117435775, 48.64736496918663, 0],\n            [-1.264528063909387, 48.64734330743112, 0],\n            [-1.264495936707368, 48.647322994519, 0],\n            [-1.264461873403011, 48.64730411743143, 0],\n            [-1.264426019859597, 48.64728675700139, 0],\n            [-1.264388529606175, 48.64727098756731, 0],\n            [-1.26434956317947, 48.64725687665478, 0],\n            [-1.264344459030127, 48.64719672886822, 0],\n            [-1.264340516694849, 48.64716742023762, 0],\n            [-1.264333690010571, 48.64713834521392, 0],\n            [-1.264324008214945, 48.64710962830027, 0],\n            [-1.264311512771605, 48.6470813924662, 0],\n            [-1.264296257192066, 48.64705375862086, 0],\n            [-1.264278306807167, 48.64702684509578, 0],\n            [-1.264257738486521, 48.64700076713734, 0],\n            [-1.264234640309729, 48.64697563641404, 0],\n            [-1.264209111189072, 48.64695156053803, 0],\n            [-1.26418126044592, 48.6469286426044, 0],\n            [-1.264151207342514, 48.64690698074941, 0],\n            [-1.264119080571311, 48.64688666773103, 0],\n            [-1.264085017703824, 48.64686779053086, 0],\n            [-1.264049164601437, 48.64685042998234, 0],\n            [-1.264011674791361, 48.64683466042444, 0],\n            [-1.263972708808321, 48.64682054938334, 0],\n            [-1.263971199218068, 48.64680275851145, 0],\n            [-1.263998988471207, 48.64680474491445, 0],\n            [-1.264043354566644, 48.64680598059213, 0],\n            [-1.264087747632468, 48.64680529082904, 0],\n            [-1.264131977565683, 48.64680267857911, 0],\n            [-1.26417585496182, 48.64679815502858, 0],\n            [-1.264219191926377, 48.64679173954851, 0],\n            [-1.264261802879103, 48.64678345961177, 0],\n            [-1.26430350534928, 48.64677335067508, 0],\n            [-1.264344120756358, 48.64676145602773, 0],\n            [-1.264383475175781, 48.64674782660551, 0],\n            [-1.264421400082856, 48.64673252077311, 0],\n            [-1.264457733074971, 48.64671560407394, 0],\n            [-1.264492318566881, 48.64669714894956, 0],\n            [-1.264525008457336, 48.64667723442924, 0],\n            [-1.26455566276235, 48.64665594579175, 0],\n            [-1.264836009219659, 48.64644803632938, 0],\n            [-1.264864496430049, 48.6464254646674, 0],\n            [-1.264890694805139, 48.64640170671344, 0],\n            [-1.264914492161005, 48.64637686420419, 0],\n            [-1.26493578659592, 48.64635104352061, 0],\n            [-1.264954486926504, 48.64632435523226, 0],\n            [-1.264970513078529, 48.64629691362375, 0],\n            [-1.264983796429309, 48.64626883620548, 0],\n            [-1.264994280101499, 48.64624024321015, 0],\n            [-1.265001919207087, 48.64621125707818, 0],\n            [-1.265006681038976, 48.64618200193307, 0],\n            [-1.265008545211193, 48.64615260305034, 0],\n            [-1.265007503746238, 48.64612318632061, 0],\n            [-1.265003561108822, 48.64609387771075, 0],\n            [-1.264996734187014, 48.64606480272445, 0],\n            [-1.264989903379634, 48.64604454245179, 0],\n            [-1.265014825625601, 48.6460419728591, 0],\n            [-1.265058161831685, 48.64603555706136, 0],\n            [-1.265100772005814, 48.64602727681216, 0],\n            [-1.265142473680547, 48.64601716756955, 0],\n            [-1.265183088278752, 48.64600527262417, 0],\n            [-1.26522244187927, 48.64599164291305, 0],\n            [-1.265260365961005, 48.64597633680219, 0],\n            [-1.265296698124843, 48.64595941983609, 0],\n            [-1.265331282789075, 48.64594096445749, 0],\n            [-1.265363971856008, 48.64592104969677, 0],\n            [-1.265394625345315, 48.64589976083366, 0],\n            [-1.265423111994495, 48.64587718903207, 0],\n            [-1.265449309820204, 48.64585343094941, 0],\n            [-1.265473106640858, 48.64582858832326, 0],\n            [-1.265494400556968, 48.64580276753487, 0],\n            [-1.265755069458492, 48.64579305154337, 0],\n            [-1.265772979196844, 48.64581575822255, 0],\n            [-1.265796077609587, 48.64584088863758, 0],\n            [-1.265821606926068, 48.64586496416175, 0],\n            [-1.265849457827533, 48.6458878816983, 0],\n            [-1.265879511053381, 48.64590954310922, 0],\n            [-1.265911637911414, 48.64592985563535, 0],\n            [-1.265945700829321, 48.64594873229355, 0],\n            [-1.265981553943478, 48.64596609224963, 0],\n            [-1.266019043723838, 48.64598186116371, 0],\n            [-1.266058009631259, 48.64599597150961, 0],\n            [-1.266098284804835, 48.6460083628632, 0],\n            [-1.266139696777027, 48.64601898216135, 0],\n            [-1.266182068211568, 48.6460277839297, 0],\n            [-1.266225217663399, 48.6460347304766, 0],\n            [-1.266268960355128, 48.6460397920552, 0],\n            [-1.266313108969253, 48.64604294699035, 0],\n            [-1.266357474449682, 48.64604418177191, 0],\n            [-1.266401866811489, 48.64604349111211, 0],\n            [-1.266446095954736, 48.6460408779686, 0],\n            [-1.266489972478291, 48.64603635353157, 0],\n            [-1.266533308491429, 48.64602993717579, 0],\n            [-1.266575918417976, 48.64602165637795, 0],\n            [-1.26661761979161, 48.64601154659838, 0],\n            [-1.266658234036437, 48.64599965113001, 0],\n            [-1.266697587232899, 48.64598602091219, 0],\n            [-1.266735510861556, 48.64597071431295, 0],\n            [-1.266771842525254, 48.64595379687906, 0],\n            [-1.266806426644442, 48.64593534105515, 0],\n            [-1.266839115123726, 48.64591542587348, 0],\n            [-1.266869767985235, 48.64589413661577, 0],\n            [-1.26715010063301, 48.64568622148019, 0],\n            [-1.267178586373696, 48.64566364924158, 0],\n            [-1.267201309811727, 48.64564304089839, 0],\n            [-1.267202888615175, 48.64564976359452, 0],\n            [-1.267212571773251, 48.64567848026767, 0],\n            [-1.267225068496407, 48.64570671578795, 0],\n            [-1.267240325276267, 48.64573434924575, 0],\n            [-1.267258276784646, 48.64576126230905, 0],\n            [-1.267278846153914, 48.64578733973091, 0],\n            [-1.267301945305865, 48.64581246984243, 0],\n            [-1.267327475328621, 48.64583654503107, 0],\n            [-1.26735532690045, 48.64585946220151, 0],\n            [-1.267385380757753, 48.6458811232175, 0],\n            [-1.267417508205675, 48.64590143532125, 0],\n            [-1.267731271833974, 48.64608719789241, 0],\n            [-1.267765335541209, 48.64610607400944, 0],\n            [-1.267801189395414, 48.64612343339581, 0],\n            [-1.267838679863325, 48.64613920171438, 0],\n            [-1.26787764640298, 48.64615331144121, 0],\n            [-1.267917922150836, 48.64616570215483, 0],\n            [-1.267959334636677, 48.64617632079519, 0],\n            [-1.268001706522117, 48.64618512189044, 0],\n            [-1.26804485636, 48.64619206775189, 0],\n            [-1.268088599371633, 48.64619712863564, 0],\n            [-1.268132748237976, 48.64620028286959, 0],\n            [-1.268177113901778, 48.64620151694643, 0],\n            [-1.268221506377474, 48.64620082558155, 0],\n            [-1.268265735564487, 48.64619821173561, 0],\n            [-1.268309612061622, 48.64619368660171, 0],\n            [-1.268352947978177, 48.64618726955773, 0],\n            [-1.268395557738438, 48.64617898808306, 0],\n            [-1.2684372588767, 48.64616887764134, 0],\n            [-1.268447394099241, 48.64616590896419, 0],\n            [-1.268449590586014, 48.64616798020381, 0],\n            [-1.268477442852547, 48.64619089710095, 0],\n            [-1.268507497391025, 48.64621255782209, 0],\n            [-1.268539625503675, 48.64623286961074, 0],\n            [-1.268573689612769, 48.6462517454872, 0],\n            [-1.268609543849828, 48.64626910462045, 0],\n            [-1.268647034679709, 48.64628487267432, 0],\n            [-1.268686001558932, 48.64629898212604, 0],\n            [-1.268726277622536, 48.64631137255545, 0],\n            [-1.268767690398904, 48.64632199090349, 0],\n            [-1.268810062548333, 48.64633079169962, 0],\n            [-1.268853212622927, 48.64633773725659, 0],\n            [-1.268896955842513, 48.64634279783162, 0],\n            [-1.268941104887373, 48.64634595175399, 0],\n            [-1.268985470699497, 48.6463471855178, 0],\n            [-1.269029863292619, 48.64634649383969, 0],\n            [-1.269368615606878, 48.64633385695504, 0],\n            [-1.269707367750954, 48.64632121906873, 0],\n            [-1.271062374624998, 48.64627065750675, 0],\n            [-1.27110660372576, 48.64626804256405, 0],\n            [-1.271150480028231, 48.64626351634216, 0],\n            [-1.271193815642528, 48.64625709822361, 0],\n            [-1.271236424994235, 48.64624881569243, 0],\n            [-1.271278125619488, 48.64623870421661, 0],\n            [-1.27131873894559, 48.64622680709625, 0],\n            [-1.27135809105692, 48.64621317527769, 0],\n            [-1.271396013438695, 48.64619786713598, 0],\n            [-1.271432343699075, 48.64618094822439, 0],\n            [-1.271466926264546, 48.64616249099389, 0],\n            [-1.271499613046367, 48.64614257448277, 0],\n            [-1.271530264073983, 48.64612128397837, 0],\n            [-1.271558748095485, 48.64609871065148, 0],\n            [-1.271584943138739, 48.64607495116614, 0],\n            [-1.271608737034133, 48.64605010726596, 0],\n            [-1.271630027894668, 48.64602428533765, 0],\n            [-1.27164872455239, 48.6459975959561, 0],\n            [-1.27166474694854, 48.64597015341067, 0],\n            [-1.271678026476597, 48.64594207521574, 0],\n            [-1.271688506275845, 48.64591348160725, 0],\n            [-1.271696141474479, 48.6458844950284, 0],\n            [-1.271700899382406, 48.64585523960456, 0],\n            [-1.271702759630382, 48.64582584061235, 0],\n            [-1.271701714257694, 48.64579642394293, 0],\n            [-1.271644471360671, 48.6451230037345, 0],\n            [-1.272321958027498, 48.64509771349931, 0],\n            [-1.272366186031577, 48.64509509807013, 0],\n            [-1.272410061197697, 48.64509057136548, 0],\n            [-1.272453395640871, 48.64508415276993, 0],\n            [-1.272496003791699, 48.64507586976968, 0],\n            [-1.272537703191492, 48.64506575783456, 0],\n            [-1.27257831527277, 48.64505386026671, 0],\n            [-1.272617666125266, 48.64504022801446, 0],\n            [-1.272655587239515, 48.6450249194546, 0],\n            [-1.272691916229212, 48.64500800014225, 0],\n            [-1.272726497526198, 48.64498954253009, 0],\n            [-1.272759183047207, 48.64496962565801, 0],\n            [-1.272789832827121, 48.64494833481497, 0],\n            [-1.272818315619306, 48.64492576117317, 0],\n            [-1.272844509456945, 48.64490200139802, 0],\n            [-1.272868302175501, 48.64487715723426, 0],\n            [-1.272889591893089, 48.64485133506981, 0],\n            [-1.272908287446635, 48.64482464548063, 0],\n            [-1.272924308782113, 48.64479720275694, 0],\n            [-1.27293758729752, 48.64476912441381, 0],\n            [-1.272948066136517, 48.64474053068786, 0],\n            [-1.272955700431373, 48.6447115440228, 0],\n            [-1.272960457495915, 48.64468228854435, 0],\n            [-1.272962316964414, 48.64465288952941, 0],\n            [-1.272961270879596, 48.64462347286923, 0],\n            [-1.272904012456773, 48.64395005323777, 0],\n            [-1.273581482694302, 48.64392475555202, 0],\n            [-1.273625709601678, 48.64392213963634, 0],\n            [-1.273669583631467, 48.64391761244895, 0],\n            [-1.273712916903578, 48.64391119337644, 0],\n            [-1.273755523853586, 48.64390290990713, 0],\n            [-1.273797222027959, 48.64389279751281, 0],\n            [-1.273837832864453, 48.64388089949751, 0],\n            [-1.273877182458136, 48.64386726681157, 0],\n            [-1.273915102304979, 48.6438519578336, 0],\n            [-1.273951430024032, 48.64383503812054, 0],\n            [-1.273986010052632, 48.64381658012673, 0],\n            [-1.274018694312931, 48.64379666289378, 0],\n            [-1.274049342845163, 48.64377537171208, 0],\n            [-1.274077824408071, 48.64375279775539, 0],\n            [-1.274104017040114, 48.64372903769042, 0],\n            [-1.274127808581931, 48.64370419326315, 0],\n            [-1.274149097156654, 48.64367837086265, 0],\n            [-1.274167791606122, 48.64365168106583, 0],\n            [-1.274183811880989, 48.64362423816385, 0],\n            [-1.274197089383846, 48.64359615967259, 0],\n            [-1.274207567262631, 48.64356756582918, 0],\n            [-1.27421520065379, 48.64353857907794, 0],\n            [-1.274219956874987, 48.64350932354495, 0],\n            [-1.274221815564109, 48.6434799245073, 0],\n            [-1.2742207687672, 48.64345050785631, 0],\n            [-1.274201677281148, 48.64322603484481, 0],\n            [-1.274197729514475, 48.6431967265459, 0],\n            [-1.274190897672223, 48.64316765210213, 0],\n            [-1.274187472985768, 48.64315645109572, 0],\n            [-1.273980249800817, 48.64252033029841, 0],\n            [-1.273973987980495, 48.64250281520471, 0],\n            [-1.273963700112937, 48.64247911258057, 0],\n            [-1.273252844011215, 48.64099570532226, 0],\n            [-1.273250632292986, 48.64099117314227, 0],\n            [-1.273235373650357, 48.6409635404763, 0],\n            [-1.273217420656545, 48.64093662834119, 0],\n            [-1.273196850192413, 48.64091055197729, 0],\n            [-1.273173750346637, 48.64088542304627, 0],\n            [-1.273148220038789, 48.64086134915271, 0],\n            [-1.273120368595218, 48.64083843338307, 0],\n            [-1.27309031528114, 48.64081677386445, 0],\n            [-1.273058188789973, 48.64079646334479, 0],\n            [-1.273024126692071, 48.64077758879494, 0],\n            [-1.272988274845399, 48.64076023103707, 0],\n            [-1.272950786771874, 48.64074446439815, 0],\n            [-1.272911822998786, 48.64073035639183, 0],\n            [-1.272871550372292, 48.64071796742937, 0],\n            [-1.272830141342687, 48.64070735056087, 0],\n            [-1.272787773226192, 48.64069855124835, 0],\n            [-1.272744627445044, 48.64069160717072, 0],\n            [-1.272700888751956, 48.64068654806299, 0],\n            [-1.272656744437692, 48.64068339558835, 0],\n            [-1.272644785092978, 48.64068287343442, 0],\n            [-1.271339680241708, 48.64063355217802, 0],\n            [-1.271307278729035, 48.64063284162025, 0],\n            [-1.271262891208775, 48.64063353418106, 0],\n            [-1.271218667069485, 48.64063614918511, 0],\n            [-1.271174795680783, 48.64064067543477, 0],\n            [-1.271131464901798, 48.64064709354857, 0],\n            [-1.271094756082534, 48.64065422987862, 0],\n            [-1.271057070301718, 48.64064987032941, 0],\n            [-1.271012926122666, 48.64064671722124, 0],\n            [-1.27096856528768, 48.64064548424215, 0],\n            [-1.270924177751633, 48.64064617667176, 0],\n            [-1.270585464124228, 48.64065881816081, 0],\n            [-1.270541239927523, 48.64066143290332, 0],\n            [-1.270497368455827, 48.64066595889355, 0],\n            [-1.270454037568649, 48.64067237675106, 0],\n            [-1.270411432810927, 48.64068065899424, 0],\n            [-1.270369736618329, 48.6406907701583, 0],\n            [-1.270329127536771, 48.64070266694662, 0],\n            [-1.270289779456837, 48.64071629841665, 0],\n            [-1.270251860870266, 48.64073160619777, 0],\n            [-1.270215534147976, 48.64074852474106, 0],\n            [-1.270180954844875, 48.64076698160041, 0],\n            [-1.270148271033558, 48.6407868977424, 0],\n            [-1.27011762267097, 48.64080818788456, 0],\n            [-1.27008914099819, 48.64083076086097, 0],\n            [-1.270062947978976, 48.6408545200125, 0],\n            [-1.270039155777447, 48.64087936360016, 0],\n            [-1.270017866277704, 48.6409051852416, 0],\n            [-1.269497633466494, 48.64092459675575, 0],\n            [-1.269516329360247, 48.64089790771321, 0],\n            [-1.269532351295446, 48.64087046545682, 0],\n            [-1.269545630667528, 48.64084238749966, 0],\n            [-1.269556110616397, 48.64081379407659, 0],\n            [-1.269563746269706, 48.64078480763011, 0],\n            [-1.269568504935328, 48.640755552285, 0],\n            [-1.269570366240798, 48.64072615331754, 0],\n            [-1.269569322220887, 48.64069673661879, 0],\n            [-1.269613546499127, 48.6406941222515, 0],\n            [-1.269657418074899, 48.64068959659981, 0],\n            [-1.269700749078504, 48.64068317904361, 0],\n            [-1.26974335395537, 48.64067489706474, 0],\n            [-1.269785050260679, 48.64066478612869, 0],\n            [-1.269825659440338, 48.64065288953322, 0],\n            [-1.269865007596431, 48.64063925822259, 0],\n            [-1.269902926231084, 48.64062395056943, 0],\n            [-1.269939252968562, 48.64060703212511, 0],\n            [-1.2699738322504, 48.64058857533853, 0],\n            [-1.270006516001925, 48.64056865924611, 0],\n            [-1.270037164265612, 48.64054736913332, 0],\n            [-1.270065645801302, 48.64052479616943, 0],\n            [-1.270091838647574, 48.64050103701674, 0],\n            [-1.270115630644166, 48.64047619341753, 0],\n            [-1.270136919912235, 48.6404503717572, 0],\n            [-1.27015561529064, 48.6404236826095, 0],\n            [-1.270164016302866, 48.64040929292362, 0],\n            [-1.270184648781472, 48.64040214514154, 0],\n            [-1.270222567140205, 48.64038683738238, 0],\n            [-1.270258893598966, 48.64036991883643, 0],\n            [-1.270293472600568, 48.64035146195306, 0],\n            [-1.270326156071557, 48.64033154576914, 0],\n            [-1.270356804055528, 48.6403102555705, 0],\n            [-1.27038528531356, 48.64028768252679, 0],\n            [-1.270411477885451, 48.64026392330068, 0],\n            [-1.27043526961208, 48.64023907963463, 0],\n            [-1.27045655861574, 48.64021325791451, 0],\n            [-1.270475253736472, 48.64018656871426, 0],\n            [-1.270483654617682, 48.64017217900468, 0],\n            [-1.270504286953662, 48.64016503116496, 0],\n            [-1.270542205036416, 48.64014972329974, 0],\n            [-1.2705785312165, 48.64013280465218, 0],\n            [-1.270613109937866, 48.640114347672, 0],\n            [-1.2706457931283, 48.64009443139661, 0],\n            [-1.270676440832554, 48.64007314111211, 0],\n            [-1.270704921812949, 48.64005056798858, 0],\n            [-1.270731114110439, 48.64002680868902, 0],\n            [-1.270754905567124, 48.64000196495623, 0],\n            [-1.270776194306396, 48.63997614317627, 0],\n            [-1.270866951121699, 48.63997275584645, 0],\n            [-1.270911174696101, 48.63997014097809, 0],\n            [-1.270955045523812, 48.63996561482919, 0],\n            [-1.270998375738408, 48.63995919678182, 0],\n            [-1.271040979788516, 48.63995091431998, 0],\n            [-1.271082675233053, 48.63994080291111, 0],\n            [-1.271123283521525, 48.63992890585506, 0],\n            [-1.271162630759792, 48.63991527409801, 0],\n            [-1.271200548453997, 48.63989996601461, 0],\n            [-1.271236874232382, 48.63988304715802, 0],\n            [-1.271271452540579, 48.63986458997883, 0],\n            [-1.271304135308131, 48.63984467351523, 0],\n            [-1.27133478258167, 48.63982338305432, 0],\n            [-1.271363263125314, 48.63980080976664, 0],\n            [-1.271389454981917, 48.63977705031619, 0],\n            [-1.271413245995376, 48.63975220644627, 0],\n            [-1.271434534291103, 48.63972638454357, 0],\n            [-1.271453228712114, 48.63969969518286, 0],\n            [-1.271469249209283, 48.63967225265341, 0],\n            [-1.271482527184142, 48.6396441744695, 0],\n            [-1.271493005782671, 48.63961558086706, 0],\n            [-1.271500640138179, 48.6395865942892, 0],\n            [-1.271505397564232, 48.63955733886136, 0],\n            [-1.271507257693603, 48.63952793986018, 0],\n            [-1.271506212566058, 48.63949852317676, 0],\n            [-1.271550435690421, 48.63949590806151, 0],\n            [-1.271594306047088, 48.63949138166765, 0],\n            [-1.271637635771696, 48.63948496337827, 0],\n            [-1.27168023931503, 48.63947668067839, 0],\n            [-1.271721934238084, 48.63946656903654, 0],\n            [-1.271762541992583, 48.63945467175352, 0],\n            [-1.271801888686786, 48.63944103977648, 0],\n            [-1.271839805829111, 48.63942573148101, 0],\n            [-1.271876131050103, 48.63940881242114, 0],\n            [-1.271910708797868, 48.63939035504843, 0],\n            [-1.271943391004309, 48.63937043840186, 0],\n            [-1.271974037718455, 48.6393491477692, 0],\n            [-1.272002517706823, 48.63932657432196, 0],\n            [-1.272028709014645, 48.63930281472459, 0],\n            [-1.272052499488177, 48.63927797072114, 0],\n            [-1.272073787255186, 48.63925214869886, 0],\n            [-1.272092481160889, 48.63922545923298, 0],\n            [-1.272100881419078, 48.63921106940386, 0],\n            [-1.272121513131137, 48.63920392127245, 0],\n            [-1.272159429997484, 48.63918861287094, 0],\n            [-1.272195754939818, 48.63917169370943, 0],\n            [-1.272230332407367, 48.63915323623996, 0],\n            [-1.272263014333253, 48.63913331950186, 0],\n            [-1.272293660767703, 48.63911202878343, 0],\n            [-1.272322140478452, 48.63908945525634, 0],\n            [-1.272348331511894, 48.63906569558551, 0],\n            [-1.272372121715502, 48.63904085151531, 0],\n            [-1.272393409218102, 48.63901502943321, 0],\n            [-1.272412102866192, 48.6389883399148, 0],\n            [-1.2724281226138, 48.63896089724995, 0],\n            [-1.272441399865818, 48.63893281895366, 0],\n            [-1.272451877771241, 48.63890422526212, 0],\n            [-1.272459511466397, 48.63887523861904, 0],\n            [-1.27246426826761, 48.63884598315003, 0],\n            [-1.27246612781039, 48.63881658413192, 0],\n            [-1.272465082136982, 48.63878716745591, 0],\n            [-1.272459969145012, 48.63872701999766, 0],\n            [-1.272496293653034, 48.63871010074038, 0],\n            [-1.272530870693085, 48.63869164317962, 0],\n            [-1.272563552200146, 48.63867172635519, 0],\n            [-1.272594198226282, 48.63865043555571, 0],\n            [-1.272622677540909, 48.63862786195324, 0],\n            [-1.272648868192137, 48.63860410221299, 0],\n            [-1.272672658029077, 48.63857925807964, 0],\n            [-1.272693945182137, 48.63855343594089, 0],\n            [-1.272784699301957, 48.63855004709133, 0],\n            [-1.272828921526179, 48.63854743148233, 0],\n            [-1.27287279094082, 48.63854290459857, 0],\n            [-1.272916119685472, 48.63853648582521, 0],\n            [-1.272958722215176, 48.63852820264931, 0],\n            [-1.273000416095265, 48.63851809054144, 0],\n            [-1.273041022781938, 48.63850619280449, 0],\n            [-1.273080368388011, 48.63849256038745, 0],\n            [-1.27311828442652, 48.63847725166784, 0],\n            [-1.273154608532823, 48.63846033220149, 0],\n            [-1.273189185159704, 48.63844187444177, 0],\n            [-1.273221866243943, 48.63842195742917, 0],\n            [-1.273252511839365, 48.63840066645319, 0],\n            [-1.27328099071724, 48.63837809268669, 0],\n            [-1.273307180927581, 48.63835433279553, 0],\n            [-1.273330970321356, 48.63832948852504, 0],\n            [-1.273352257030871, 48.63830366626359, 0],\n            [-1.273370949905999, 48.63827697658743, 0],\n            [-1.273379349640187, 48.63826258666374, 0],\n            [-1.273399980781682, 48.63825543830152, 0],\n            [-1.273437896544232, 48.63824012947592, 0],\n            [-1.273474220371857, 48.63822320990797, 0],\n            [-1.273508796718543, 48.63820475205149, 0],\n            [-1.273541477522266, 48.63818483494736, 0],\n            [-1.273572122837972, 48.63816354388557, 0],\n            [-1.27360060143827, 48.63814097003925, 0],\n            [-1.273626791374229, 48.6381172100747, 0],\n            [-1.27365058049804, 48.63809236573743, 0],\n            [-1.273671866943227, 48.63806654341615, 0],\n            [-1.273690559560701, 48.63803985368745, 0],\n            [-1.273706578309028, 48.63801241084218, 0],\n            [-1.273719854597297, 48.63798433239592, 0],\n            [-1.27373033157864, 48.63795573858572, 0],\n            [-1.27373796439332, 48.63792675185566, 0],\n            [-1.273742720361499, 48.63789749633178, 0],\n            [-1.273744579122185, 48.63786809729114, 0],\n            [-1.273743532721059, 48.637838680625, 0],\n            [-1.273738418297175, 48.63777853322018, 0],\n            [-1.273774741690488, 48.63776161355646, 0],\n            [-1.273809317609695, 48.63774315560866, 0],\n            [-1.273841997994614, 48.63772323841824, 0],\n            [-1.273872642902025, 48.63770194727539, 0],\n            [-1.2739011211062, 48.6376793733537, 0],\n            [-1.273927310659986, 48.63765561331972, 0],\n            [-1.27395109941717, 48.63763076891927, 0],\n            [-1.273972385512816, 48.63760494654143, 0],\n            [-1.273988341916095, 48.63758246380847, 0],\n            [-1.274092981970876, 48.63742378403876, 0],\n            [-1.274516024977261, 48.637350547195, 0],\n            [-1.274556758056411, 48.63734258496556, 0],\n            [-1.274598450632842, 48.63733247227532, 0],\n            [-1.274639055984863, 48.6373205739709, 0],\n            [-1.274678400230664, 48.6373069410039, 0],\n            [-1.274716314889497, 48.6372916317542, 0],\n            [-1.274752637602454, 48.63727471177981, 0],\n            [-1.274787212828437, 48.63725625353628, 0],\n            [-1.274819892509898, 48.63723633606632, 0],\n            [-1.274850536706937, 48.63721504466113, 0],\n            [-1.274879014196864, 48.63719247049555, 0],\n            [-1.274905203035301, 48.6371687102373, 0],\n            [-1.274928991079436, 48.63714386563297, 0],\n            [-1.274950276467188, 48.63711804307256, 0],\n            [-1.274968968054167, 48.63709135313363, 0],\n            [-1.274984985803234, 48.63706391010793, 0],\n            [-1.274998261127793, 48.63703583151177, 0],\n            [-1.275008737185095, 48.6370072375829, 0],\n            [-1.275016369119419, 48.63697825076587, 0],\n            [-1.275021124254605, 48.63694899518714, 0],\n            [-1.275022982233276, 48.63691959612397, 0],\n            [-1.275021935104452, 48.6368901794677, 0],\n            [-1.274983750132608, 48.63644123351393, 0],\n            [-1.275027970389064, 48.6364386170556, 0],\n            [-1.275071837767174, 48.636434089329, 0],\n            [-1.275115164415304, 48.63642766972296, 0],\n            [-1.275157764797406, 48.63641938572806, 0],\n            [-1.275199456488025, 48.6364092728184, 0],\n            [-1.275240060952796, 48.63639737430027, 0],\n            [-1.275279404313945, 48.63638374112603, 0],\n            [-1.27531731809424, 48.63636843167646, 0],\n            [-1.275353639938632, 48.6363515115105, 0],\n            [-1.275388214309658, 48.63633305308447, 0],\n            [-1.275420893153669, 48.63631313544174, 0],\n            [-1.275451536534122, 48.63629184387459, 0],\n            [-1.275480013231802, 48.63626926955833, 0],\n            [-1.275506201306031, 48.63624550916116, 0],\n            [-1.275529988616913, 48.63622066443061, 0],\n            [-1.275551273305704, 48.63619484175701, 0],\n            [-1.275569964230892, 48.63616815171839, 0],\n            [-1.275585981358296, 48.636140708607, 0],\n            [-1.275599256103879, 48.63611262993958, 0],\n            [-1.275609731627407, 48.63608403595408, 0],\n            [-1.275617363075461, 48.63605504909528, 0],\n            [-1.275622117773956, 48.63602579348985, 0],\n            [-1.275623975367415, 48.63599639441521, 0],\n            [-1.275622927906417, 48.63596697776274, 0],\n            [-1.275593753560917, 48.6356240137073, 0],\n            [-1.27572732993348, 48.63541881711434, 0],\n            [-1.275913994628841, 48.63536229848137, 0],\n            [-1.275926588624807, 48.63535838129923, 0],\n            [-1.275965930987555, 48.63534474788827, 0],\n            [-1.276003843776064, 48.63532943821046, 0],\n            [-1.27604016463956, 48.63531251782565, 0],\n            [-1.276074738044799, 48.63529405919119, 0],\n            [-1.276107415942247, 48.63527414135133, 0],\n            [-1.276138058399459, 48.63525284959905, 0],\n            [-1.276166534201115, 48.63523027511057, 0],\n            [-1.276192721410376, 48.63520651455489, 0],\n            [-1.276216507891101, 48.63518166968013, 0],\n            [-1.276237791788046, 48.63515584687729, 0],\n            [-1.276256481963114, 48.63512915672487, 0],\n            [-1.276272498385342, 48.63510171351565, 0],\n            [-1.276285772473691, 48.6350736347668, 0],\n            [-1.276296247390805, 48.63504504071663, 0],\n            [-1.276303878285781, 48.63501605381019, 0],\n            [-1.276308632486953, 48.63498679817432, 0],\n            [-1.276310489640904, 48.63495739908661, 0],\n            [-1.27630944180019, 48.63492798243844, 0],\n            [-1.276305493456837, 48.63489867419649, 0],\n            [-1.276298661523359, 48.63486959986282, 0],\n            [-1.276288975259867, 48.63484088393767, 0],\n            [-1.276276476149181, 48.63481264938633, 0],\n            [-1.276261217718462, 48.63478501711246, 0],\n            [-1.276243265310801, 48.63475810544089, 0],\n            [-1.276222695804443, 48.63473202960999, 0],\n            [-1.276199597284027, 48.63470690127922, 0],\n            [-1.276174068663409, 48.63468282805049, 0],\n            [-1.276146219261725, 48.63465991300747, 0],\n            [-1.276116168335477, 48.6346382542741, 0],\n            [-1.276084044567831, 48.634617944595, 0],\n            [-1.276049985517431, 48.63459907093744, 0],\n            [-1.276014137029313, 48.6345817141197, 0],\n            [-1.275976652610864, 48.6345659484648, 0],\n            [-1.275937692773828, 48.63455184148209, 0],\n            [-1.275897424347474, 48.63453945357851, 0],\n            [-1.275872535846114, 48.63453307238326, 0],\n            [-1.275878236533456, 48.63453041663849, 0],\n            [-1.275912809460718, 48.63451195805194, 0],\n            [-1.275945486914341, 48.63449204025729, 0],\n            [-1.275976128963778, 48.63447074854725, 0],\n            [-1.276004604395471, 48.63444817409798, 0],\n            [-1.276030791274136, 48.63442441357815, 0],\n            [-1.276054577465093, 48.63439956873577, 0],\n            [-1.276075861114316, 48.63437374596168, 0],\n            [-1.276094551084808, 48.63434705583439, 0],\n            [-1.276110567346385, 48.63431961264646, 0],\n            [-1.276123841318786, 48.634291533915, 0],\n            [-1.276134316165096, 48.63426293987818, 0],\n            [-1.276141947034752, 48.63423395298109, 0],\n            [-1.276146701256149, 48.63420469735053, 0],\n            [-1.276148558475847, 48.63417529826397, 0],\n            [-1.276147510746104, 48.63414588161291, 0],\n            [-1.276133236696322, 48.63397809567923, 0],\n            [-1.27620251760721, 48.63374544746945, 0],\n            [-1.276486341589427, 48.633422612222, 0],\n            [-1.276504931136149, 48.63343043090574, 0],\n            [-1.276543890263953, 48.63344453769642, 0],\n            [-1.2765841579731, 48.63345692537365, 0],\n            [-1.276625561828044, 48.63346754088998, 0],\n            [-1.276667924527213, 48.63347633878719, 0],\n            [-1.276711064662917, 48.63348328139025, 0],\n            [-1.27675479749775, 48.63348833896912, 0],\n            [-1.276798935756438, 48.63349148986595, 0],\n            [-1.276843290427114, 48.63349272058783, 0],\n            [-1.276887671571274, 48.63349202586427, 0],\n            [-1.276931889136903, 48.63348940867037, 0],\n            [-1.276975753772567, 48.63348488021376, 0],\n            [-1.277019077638362, 48.63347845988637, 0],\n            [-1.277061675210152, 48.63347017518182, 0],\n            [-1.277103364074512, 48.63346006157725, 0],\n            [-1.277143965709167, 48.6334481623819, 0],\n            [-1.277183306248533, 48.6334345285512, 0],\n            [-1.277221217227369, 48.6334192184686, 0],\n            [-1.277257536302676, 48.6334022976957, 0],\n            [-1.277292107948822, 48.63338383869153, 0],\n            [-1.277324784123868, 48.6333639205019, 0],\n            [-1.277355428834517, 48.63334262550371, 0],\n            [-1.277635651575428, 48.63313467477455, 0],\n            [-1.277664117642852, 48.63311210574623, 0],\n            [-1.27769030304258, 48.63308834484506, 0],\n            [-1.277714087782438, 48.63306349965588, 0],\n            [-1.277735370014914, 48.63303767657127, 0],\n            [-1.277754058608887, 48.63301098617103, 0],\n            [-1.277770073540128, 48.6329835427487, 0],\n            [-1.277783346234152, 48.63295546382248, 0],\n            [-1.277793819859199, 48.6329268696315, 0],\n            [-1.277801449570342, 48.63289788262143, 0],\n            [-1.277806202700591, 48.63286862691949, 0],\n            [-1.277808058901484, 48.63283922780354, 0],\n            [-1.277807010229395, 48.63280981116518, 0],\n            [-1.277803061180007, 48.63278050297096, 0],\n            [-1.277796228668711, 48.6327514287227, 0],\n            [-1.277786541958457, 48.63272271292036, 0],\n            [-1.277774042533482, 48.6326944785287, 0],\n            [-1.277758783922827, 48.63266684645068, 0],\n            [-1.277740831469822, 48.63263993501012, 0],\n            [-1.277720262053292, 48.63261385944473, 0],\n            [-1.277697163757356, 48.63258873141268, 0],\n            [-1.277671635494893, 48.63256465851448, 0],\n            [-1.277643786583675, 48.63254174383245, 0],\n            [-1.277613736277792, 48.63252008548925, 0],\n            [-1.277581613257948, 48.63249977622733, 0],\n            [-1.27754755507945, 48.63248090301263, 0],\n            [-1.277511707583898, 48.63246354666127, 0],\n            [-1.277474224274082, 48.63244778149442, 0],\n            [-1.27743526565721, 48.63243367501927, 0],\n            [-1.277394998557355, 48.63242128764055, 0],\n            [-1.277353595400992, 48.63241067240166, 0],\n            [-1.277311233479102, 48.63240187475748, 0],\n            [-1.277275999802325, 48.63239605702935, 0],\n            [-1.276856564046938, 48.63233465206403, 0],\n            [-1.276848658451339, 48.63233352738568, 0],\n            [-1.276804926610711, 48.63232846984234, 0],\n            [-1.276760789371827, 48.63232531894755, 0],\n            [-1.276716435732166, 48.6323240881937, 0],\n            [-1.276672055615764, 48.63232478285091, 0],\n            [-1.276627839060007, 48.63232739994465, 0],\n            [-1.276583975402041, 48.63233192826832, 0],\n            [-1.276562466140949, 48.63233511579632, 0],\n            [-1.276577763732723, 48.63232298763126, 0],\n            [-1.276603949234789, 48.63229922697717, 0],\n            [-1.276627734138136, 48.63227438201248, 0],\n            [-1.276649016594373, 48.63224855912841, 0],\n            [-1.276667705471479, 48.63222186890403, 0],\n            [-1.276683720744047, 48.63219442563225, 0],\n            [-1.276696993836033, 48.6321663468306, 0],\n            [-1.276707467914238, 48.63213775273759, 0],\n            [-1.276715098131436, 48.63210876579846, 0],\n            [-1.276715654673608, 48.63210534066808, 0],\n            [-1.276730048920123, 48.63210035214518, 0],\n            [-1.276767959031653, 48.63208504221124, 0],\n            [-1.276804277296408, 48.63206812158071, 0],\n            [-1.276838848192194, 48.63204966271179, 0],\n            [-1.27687152368025, 48.63202974464983, 0],\n            [-1.276902167770235, 48.63200844977115, 0],\n            [-1.277182384954472, 48.63180050013351, 0],\n            [-1.277210850470456, 48.63177793121601, 0],\n            [-1.277237035389969, 48.63175417041644, 0],\n            [-1.277260819722992, 48.63172932531934, 0],\n            [-1.277282101623793, 48.63170350231677, 0],\n            [-1.27730078996269, 48.63167681198826, 0],\n            [-1.277316804716493, 48.63164936862704, 0],\n            [-1.277330077311516, 48.63162128975096, 0],\n            [-1.277340550916439, 48.63159269559909, 0],\n            [-1.277348180686435, 48.63156370861675, 0],\n            [-1.277352933954155, 48.63153445293123, 0],\n            [-1.277354790370675, 48.63150505382014, 0],\n            [-1.277353741991372, 48.63147563717517, 0],\n            [-1.277349793310669, 48.63144632896284, 0],\n            [-1.277342961242418, 48.63141725468513, 0],\n            [-1.277333275047632, 48.63138853884207, 0],\n            [-1.277320776208428, 48.63136030439861, 0],\n            [-1.277305518251211, 48.63133267225787, 0],\n            [-1.277287566516612, 48.63130576074401, 0],\n            [-1.277266997880298, 48.63127968509501, 0],\n            [-1.277243900423151, 48.63125455696947, 0],\n            [-1.277218373054372, 48.63123048396828, 0],\n            [-1.277190525087919, 48.63120756917414, 0],\n            [-1.277160475773882, 48.63118591071015, 0],\n            [-1.27712835378867, 48.63116560131942, 0],\n            [-1.277094296683174, 48.6311467279683, 0],\n            [-1.277058450294397, 48.6311293714737, 0],\n            [-1.277020968120373, 48.63111360615717, 0],\n            [-1.276982010663492, 48.63109949952671, 0],\n            [-1.276941744742854, 48.63108711198759, 0],\n            [-1.276900342779836, 48.63107649658395, 0],\n            [-1.276857982060364, 48.63106769877135, 0],\n            [-1.276822749370179, 48.63106188090337, 0],\n            [-1.276403325288593, 48.63100047427303, 0],\n            [-1.276395419912719, 48.63099934956334, 0],\n            [-1.276351689277127, 48.6309942918465, 0],\n            [-1.276307553236844, 48.63099114077677, 0],\n            [-1.276274022234329, 48.63099021018049, 0],\n            [-1.276276728059713, 48.63098657400613, 0],\n            [-1.276306899755895, 48.63098345919173, 0],\n            [-1.276350221553404, 48.63097703911633, 0],\n            [-1.27639281711782, 48.63096875465921, 0],\n            [-1.27643450404429, 48.63095864129654, 0],\n            [-1.276475103818793, 48.63094674233649, 0],\n            [-1.276514442583798, 48.63093310873336, 0],\n            [-1.276552351881579, 48.6309177988697, 0],\n            [-1.276588669376391, 48.63090087830631, 0],\n            [-1.276623239549375, 48.63088241950111, 0],\n            [-1.276655914364828, 48.63086250149922, 0],\n            [-1.276686553903514, 48.6308412095943, 0],\n            [-1.276715026962625, 48.63081863496326, 0],\n            [-1.27674121161707, 48.63079487427556, 0],\n            [-1.276764995741579, 48.63077002928002, 0],\n            [-1.276786277491142, 48.63074420636805, 0],\n            [-1.276804965736713, 48.63071751611876, 0],\n            [-1.276820980455644, 48.6306900728252, 0],\n            [-1.276834253074248, 48.63066199400505, 0],\n            [-1.276844726761346, 48.63063339989673, 0],\n            [-1.27685235667139, 48.63060441294577, 0],\n            [-1.276857110136851, 48.63057515727904, 0],\n            [-1.276858966807568, 48.63054575817425, 0],\n            [-1.276857918738077, 48.63051634152298, 0],\n            [-1.276819722222906, 48.63006739600102, 0],\n            [-1.276815773963846, 48.63003808776774, 0],\n            [-1.276808942395356, 48.63000901345562, 0],\n            [-1.276799256776369, 48.62998029756488, 0],\n            [-1.276786758586546, 48.62995206306065, 0],\n            [-1.276771501349572, 48.62992443084642, 0],\n            [-1.276753550402923, 48.62989751924657, 0],\n            [-1.276732982618947, 48.62987144349935, 0],\n            [-1.276729549320241, 48.62986746483568, 0],\n            [-1.276476663328234, 48.62957784201226, 0],\n            [-1.276457000302367, 48.62955669239661, 0],\n            [-1.276431474171338, 48.62953261921744, 0],\n            [-1.276403627502667, 48.62950970422958, 0],\n            [-1.276373579541288, 48.62948804555684, 0],\n            [-1.276341458957355, 48.62946773594337, 0],\n            [-1.276307403296164, 48.6294488623562, 0],\n            [-1.276271558388262, 48.62943150561351, 0],\n            [-1.276234077725409, 48.62941574003775, 0],\n            [-1.276195121803521, 48.6294016331381, 0],\n            [-1.276161207521118, 48.62939105940949, 0],\n            [-1.275671663920481, 48.62924924003848, 0],\n            [-1.275492489760233, 48.62898925064763, 0],\n            [-1.275486581611802, 48.62898090504945, 0],\n            [-1.275466014858981, 48.62895482907335, 0],\n            [-1.275442919368202, 48.62892970058087, 0],\n            [-1.27541739404031, 48.6289056271748, 0],\n            [-1.275389548180392, 48.62888271193941, 0],\n            [-1.275359501029845, 48.62886105299981, 0],\n            [-1.275327381255464, 48.62884074310104, 0],\n            [-1.27529332639883, 48.62882186921168, 0],\n            [-1.275257482287291, 48.62880451215092, 0],\n            [-1.27522000240913, 48.62878874624272, 0],\n            [-1.275181047256886, 48.62877463899758, 0],\n            [-1.275140783639706, 48.62876225082345, 0],\n            [-1.275099383969454, 48.62875163476729, 0],\n            [-1.275057025521884, 48.62874283628743, 0],\n            [-1.275013889678187, 48.62873589305924, 0],\n            [-1.27497016114839, 48.62873083481405, 0],\n            [-1.27492602717981, 48.62872768321159, 0],\n            [-1.274881676755937, 48.62872645174691, 0],\n            [-1.274837299786977, 48.62872714569336, 0],\n            [-1.274793086296908, 48.62872976207931, 0],\n            [-1.274749225609726, 48.62873428970139, 0],\n            [-1.274705905538696, 48.62874070917206, 0],\n            [-1.274663311582513, 48.62874899300289, 0],\n            [-1.274621626130543, 48.62875910572227, 0],\n            [-1.27458102768272, 48.62877100402689, 0],\n            [-1.274541690084141, 48.62878463696774, 0],\n            [-1.274503781781624, 48.6287999461679, 0],\n            [-1.274467465102001, 48.62881686607237, 0],\n            [-1.274432895557254, 48.62883532422917, 0],\n            [-1.274400221178191, 48.62885524159934, 0],\n            [-1.274369581881332, 48.62887653289518, 0],\n            [-1.274368141964546, 48.62887767449459, 0],\n            [-1.274112634600479, 48.62880506445049, 0],\n            [-1.274110664267603, 48.6288045069584, 0],\n            [-1.274069264779765, 48.62879389052982, 0],\n            [-1.27402690647684, 48.62878509166895, 0],\n            [-1.273983770739078, 48.62877814805286, 0],\n            [-1.273940042276147, 48.6287730894144, 0],\n            [-1.273895908334985, 48.62876993741489, 0],\n            [-1.273851557899102, 48.62876870555136, 0],\n            [-1.273807180878683, 48.62876939909858, 0],\n            [-1.273762967297927, 48.62877201508685, 0],\n            [-1.273719106481228, 48.62877654231436, 0],\n            [-1.273675786242452, 48.62878296139539, 0],\n            [-1.273633192080914, 48.62879124484307, 0],\n            [-1.273591506386937, 48.62880135718748, 0],\n            [-1.273550907661476, 48.62881325512687, 0],\n            [-1.273511569750807, 48.62882688771389, 0],\n            [-1.273473661103046, 48.62884219657295, 0],\n            [-1.273437344046604, 48.62885911615073, 0],\n            [-1.273402774095023, 48.62887757399658, 0],\n            [-1.273370099280788, 48.62889749107276, 0],\n            [-1.273367464774375, 48.62889932174514, 0],\n            [-1.273164671443967, 48.62886962389136, 0],\n            [-1.273156766475247, 48.62886849895794, 0],\n            [-1.273113038016893, 48.62886344000381, 0],\n            [-1.273068904048333, 48.6288602876856, 0],\n            [-1.273024553553057, 48.62885905550176, 0],\n            [-1.272980176441572, 48.62885974872856, 0],\n            [-1.272935962738453, 48.62886236439756, 0],\n            [-1.272892101768597, 48.62886689130828, 0],\n            [-1.272848781346547, 48.62887331007648, 0],\n            [-1.272806186972439, 48.62888159321653, 0],\n            [-1.272764501037436, 48.62889170525982, 0],\n            [-1.272723902043569, 48.62890360290601, 0],\n            [-1.272684563838196, 48.62891723520881, 0],\n            [-1.27264665487081, 48.62893254379409, 0],\n            [-1.272610337471123, 48.62894946310952, 0],\n            [-1.272575767154114, 48.62896792070561, 0],\n            [-1.272543091953908, 48.62898783754575, 0],\n            [-1.272512451790582, 48.62900912834459, 0],\n            [-1.2724839778701, 48.62903170193331, 0],\n            [-1.27245779212303, 48.62905546165024, 0],\n            [-1.272434006682353, 48.62908030575392, 0],\n            [-1.272412723403174, 48.62910612785977, 0],\n            [-1.272394033426447, 48.62913281739495, 0],\n            [-1.272378016788911, 48.62916026007208, 0],\n            [-1.272364742079959, 48.62918833837837, 0],\n            [-1.272354266147997, 48.62921693207945, 0],\n            [-1.272346633857358, 48.62924591873325, 0],\n            [-1.272341877895193, 48.62927517421512, 0],\n            [-1.27234001863243, 48.62930457324894, 0],\n            [-1.272341064035654, 48.6293339899437, 0],\n            [-1.272002426905177, 48.62934663563155, 0],\n            [-1.271958212723461, 48.62934925092301, 0],\n            [-1.271914351241295, 48.62935377745916, 0],\n            [-1.27187103027538, 48.6293601958573, 0],\n            [-1.271828435328191, 48.62936847863344, 0],\n            [-1.271786748793407, 48.62937859032057, 0],\n            [-1.271746149175559, 48.62939048761975, 0],\n            [-1.271706810324722, 48.62940411958631, 0],\n            [-1.271668900693128, 48.62941942784746, 0],\n            [-1.271632582613305, 48.62943634685232, 0],\n            [-1.27159801160321, 48.62945480415268, 0],\n            [-1.271565335699867, 48.62947472071324, 0],\n            [-1.271534694826408, 48.62949601124987, 0],\n            [-1.271506220191838, 48.62951858459486, 0],\n            [-1.271480033729739, 48.62954234408748, 0],\n            [-1.271456247576233, 48.62956718798733, 0],\n            [-1.2714349635894, 48.62959300991069, 0],\n            [-1.271416272913253, 48.62961969928552, 0],\n            [-1.271400255587527, 48.62964714182504, 0],\n            [-1.271386980204594, 48.62967522001717, 0],\n            [-1.271376503615718, 48.62970381362797, 0],\n            [-1.271368870688008, 48.6297328002157, 0],\n            [-1.271364114111415, 48.62976205565609, 0],\n            [-1.271362254259423, 48.62979145467315, 0],\n            [-1.271363299101176, 48.62982087137595, 0],\n            [-1.27131908446958, 48.62982348642057, 0],\n            [-1.27127522251657, 48.62982801271183, 0],\n            [-1.271231901060868, 48.62983443086799, 0],\n            [-1.271189305607103, 48.62984271340621, 0],\n            [-1.271147618551036, 48.62985282486037, 0],\n            [-1.271107018399456, 48.62986472193265, 0],\n            [-1.271067679004754, 48.62987835367926, 0],\n            [-1.271029768821441, 48.62989366172841, 0],\n            [-1.270993450184503, 48.62991058053009, 0],\n            [-1.270958878614157, 48.62992903763698, 0],\n            [-1.270926202149942, 48.62994895401464, 0],\n            [-1.270895560717311, 48.62997024437959, 0],\n            [-1.270867085527705, 48.629992817565, 0],\n            [-1.270840898517065, 48.63001657691076, 0],\n            [-1.27081711182381, 48.63004142067713, 0],\n            [-1.27079582730846, 48.63006724248098, 0],\n            [-1.270777136117205, 48.6300939317507, 0],\n            [-1.270768737002421, 48.63010832149103, 0],\n            [-1.270748108827373, 48.63011546938297, 0],\n            [-1.270710198368221, 48.63013077732609, 0],\n            [-1.270673879452686, 48.63014769602617, 0],\n            [-1.270639307602244, 48.63016615303633, 0],\n            [-1.270606630857574, 48.63018606932251, 0],\n            [-1.270575989145366, 48.63020735960169, 0],\n            [-1.270547513678202, 48.63022993270727, 0],\n            [-1.270521326393261, 48.63025369197963, 0],\n            [-1.270497539430202, 48.63027853567924, 0],\n            [-1.270476254650563, 48.63030435742331, 0],\n            [-1.270457563201715, 48.6303310466405, 0],\n            [-1.270441545126748, 48.63035848904473, 0],\n            [-1.270428269021213, 48.63038656712455, 0],\n            [-1.270417791739471, 48.63041516064634, 0],\n            [-1.270410158151609, 48.63044414716888, 0],\n            [-1.270405400950416, 48.6304734025682, 0],\n            [-1.270403540512013, 48.63050280156834, 0],\n            [-1.270403831115774, 48.63051098757071, 0],\n            [-1.269696647122409, 48.6308507515911, 0],\n            [-1.269387286293295, 48.63081539471862, 0],\n            [-1.269591415060345, 48.63040478229461, 0],\n            [-1.26962061355181, 48.63038974478197, 0],\n            [-1.269646975132468, 48.63037545061887, 0],\n            [-1.269679652379816, 48.63035553460676, 0],\n            [-1.269710294561568, 48.63033424456759, 0],\n            [-1.269738770463325, 48.63031167167024, 0],\n            [-1.269764958147905, 48.63028791257698, 0],\n            [-1.269783429072655, 48.6302689424058, 0],\n            [-1.269972774302031, 48.63006332556572, 0],\n            [-1.270837377181262, 48.62961803610125, 0],\n            [-1.27086374046252, 48.62960374039527, 0],\n            [-1.270896416727314, 48.62958382403507, 0],\n            [-1.270927057924234, 48.62956253366936, 0],\n            [-1.270955532843516, 48.62953996046845, 0],\n            [-1.270981719551998, 48.62951620109574, 0],\n            [-1.271000190322731, 48.62949723008906, 0],\n            [-1.271453234019169, 48.62900522306961, 0],\n            [-1.272652962782044, 48.6283166265759, 0],\n            [-1.272684171721257, 48.62829754860034, 0],\n            [-1.272714811378648, 48.62827625775458, 0],\n            [-1.272743284768274, 48.62825368410735, 0],\n            [-1.272768377102465, 48.62823098405403, 0],\n            [-1.273645429307686, 48.62738310290778, 0],\n            [-1.273949098929395, 48.62725753664032, 0],\n            [-1.273961776129604, 48.62725216425382, 0],\n            [-1.273998091850055, 48.62723524450809, 0],\n            [-1.274032660455133, 48.62721678648071, 0],\n            [-1.27406533391575, 48.62719686921344, 0],\n            [-1.274095972318805, 48.62717557799676, 0],\n            [-1.274124444466025, 48.62715300400457, 0],\n            [-1.274150628436297, 48.62712924390388, 0],\n            [-1.27417441210735, 48.62710439944071, 0],\n            [-1.274195693636009, 48.62707857700433, 0],\n            [-1.274202323770031, 48.62706962064916, 0],\n            [-1.274270370676081, 48.62697506064556, 0],\n            [-1.274518237774007, 48.6272405972539, 0],\n            [-1.274527630496047, 48.62725037550652, 0],\n            [-1.274553154558731, 48.62727444911334, 0],\n            [-1.274580999147905, 48.62729736455424, 0],\n            [-1.274611045029868, 48.62731902370021, 0],\n            [-1.274643163543876, 48.62733933380176, 0],\n            [-1.274677217153428, 48.62735820788618, 0],\n            [-1.274713060034711, 48.62737556513017, 0],\n            [-1.274749568279499, 48.62739095119848, 0],\n            [-1.27626417716405, 48.62798516506544, 0],\n            [-1.276265147608915, 48.62798554505973, 0],\n            [-1.276304102454224, 48.62799965193681, 0],\n            [-1.276344365747604, 48.6280120397025, 0],\n            [-1.276385765072152, 48.6280226553091, 0],\n            [-1.276428123145741, 48.62803145329792, 0],\n            [-1.276471258580725, 48.62803839599373, 0],\n            [-1.276514986659683, 48.62804345366585, 0],\n            [-1.276559120127703, 48.6280466046562, 0],\n            [-1.276603469993463, 48.62804783547129, 0],\n            [-1.276647846339021, 48.6280471408405, 0],\n            [-1.276684399891825, 48.62804497711546, 0],\n            [-1.276687877050087, 48.62804485430479, 0],\n            [-1.276692059886724, 48.62804452804312, 0],\n            [-1.278771380745858, 48.62788449453407, 0],\n            [-1.27877556280168, 48.62788416389157, 0],\n            [-1.278819422385624, 48.62787963472728, 0],\n            [-1.278862741190607, 48.62787321370021, 0],\n            [-1.278905333714195, 48.62786492830708, 0],\n            [-1.278947017564607, 48.62785481402794, 0],\n            [-1.278987614240947, 48.62784291417496, 0],\n            [-1.279026949898898, 48.62782927970621, 0],\n            [-1.279064856094181, 48.62781396900802, 0],\n            [-1.27910117050422, 48.62779704764463, 0],\n            [-1.279135737623387, 48.62777858807751, 0],\n            [-1.279168409429128, 48.627758669355, 0],\n            [-1.279199046015016, 48.62773737677382, 0],\n            [-1.279227516190893, 48.62771480151384, 0],\n            [-1.279253698044038, 48.62769104024716, 0],\n            [-1.279277479461234, 48.62766619472512, 0],\n            [-1.279298758608918, 48.62764037134134, 0],\n            [-1.279314707002863, 48.62761789159951, 0],\n            [-1.279789656554071, 48.62689738999161, 0],\n            [-1.279792393841488, 48.62689317905749, 0],\n            [-1.279808405714396, 48.62686573533979, 0],\n            [-1.27982167565748, 48.62683765616672, 0],\n            [-1.279832146851132, 48.62680906177859, 0],\n            [-1.279839774460696, 48.62678007462175, 0],\n            [-1.279844525828255, 48.62675081882422, 0],\n            [-1.279846380612661, 48.62672141966406, 0],\n            [-1.279845330876583, 48.62669200303325, 0],\n            [-1.279841381120181, 48.62666269489817, 0],\n            [-1.279834548262022, 48.62663362076055, 0],\n            [-1.279824861566117, 48.62660490511973, 0],\n            [-1.279812362517101, 48.62657667093986, 0],\n            [-1.279797104642177, 48.62654903912302, 0],\n            [-1.279779153281699, 48.62652212799178, 0],\n            [-1.279758585309454, 48.62649605278263, 0],\n            [-1.279757528703951, 48.62649481831334, 0],\n            [-1.279652071250022, 48.62637206012624, 0],\n            [-1.279875272508158, 48.62607205191524, 0],\n            [-1.281753461943795, 48.62495505370313, 0],\n            [-1.281775772328495, 48.62494117003791, 0],\n            [-1.281806406096058, 48.62491987675553, 0],\n            [-1.281834873508565, 48.62489730084347, 0],\n            [-1.281853013602492, 48.62488118913314, 0],\n            [-1.281992969806598, 48.62475090412556, 0],\n            [-1.282001008826768, 48.62474325395918, 0],\n            [-1.282024787494682, 48.62471840786216, 0],\n            [-1.282046063986311, 48.6246925839633, 0],\n            [-1.282064747195131, 48.6246658928459, 0],\n            [-1.282080757120157, 48.62463844880679, 0],\n            [-1.282094025208265, 48.62461036936661, 0],\n            [-1.2821044946474, 48.62458177476684, 0],\n            [-1.282112120610581, 48.62455278745478, 0],\n            [-1.282116870446906, 48.62452353155894, 0],\n            [-1.282118723821819, 48.62449413235807, 0],\n            [-1.282117672803986, 48.62446471574414, 0],\n            [-1.282113721899103, 48.62443540768351, 0],\n            [-1.282106888030572, 48.62440633367755, 0],\n            [-1.282097200466841, 48.62437761822509, 0],\n            [-1.282084700696202, 48.62434938428942, 0],\n            [-1.282069442248937, 48.6243217527716, 0],\n            [-1.282051490467715, 48.62429484199298, 0],\n            [-1.282030922228523, 48.62426876718838, 0],\n            [-1.282007825610525, 48.62424364001276, 0],\n            [-1.281982299519224, 48.62421956806305, 0],\n            [-1.281954453263003, 48.62419665441759, 0],\n            [-1.28192856902515, 48.62417783220956, 0],\n            [-1.281761589950823, 48.6240631114826, 0],\n            [-1.281757427029535, 48.62406027646122, 0],\n            [-1.281725307737269, 48.62403996835099, 0],\n            [-1.281691253729915, 48.62402109635866, 0],\n            [-1.281686539751807, 48.62401867519647, 0],\n            [-1.281092638173931, 48.62371639624983, 0],\n            [-1.282346382912698, 48.62227399650104, 0],\n            [-1.283017264546404, 48.62184480232968, 0],\n            [-1.283021535787126, 48.62184204564879, 0],\n            [-1.283052167141299, 48.62182075202924, 0],\n            [-1.283080632242095, 48.62179817580327, 0],\n            [-1.283106809198158, 48.62177441364735, 0],\n            [-1.283130585917551, 48.6217495673162, 0],\n            [-1.283151860586738, 48.62172374320732, 0],\n            [-1.283170542107148, 48.62169705190474, 0],\n            [-1.283186550484832, 48.62166960770618, 0],\n            [-1.28319981717322, 48.62164152813292, 0],\n            [-1.283210285366672, 48.62161293342695, 0],\n            [-1.283217910243022, 48.62158394603607, 0],\n            [-1.283222659156424, 48.6215546900892, 0],\n            [-1.283224511776062, 48.62152529086523, 0],\n            [-1.283223460173957, 48.62149587425616, 0],\n            [-1.283204336863981, 48.62127140243766, 0],\n            [-1.283200385576984, 48.62124209440894, 0],\n            [-1.283193551514328, 48.62121302046229, 0],\n            [-1.283183863945261, 48.62118430509621, 0],\n            [-1.283171364358196, 48.6211560712738, 0],\n            [-1.283156106282353, 48.62112843989542, 0],\n            [-1.283138155059225, 48.62110152928209, 0],\n            [-1.283117587562039, 48.6210754546677, 0],\n            [-1.283094491866843, 48.62105032770651, 0],\n            [-1.283068966875343, 48.62102625599444, 0],\n            [-1.283041121891164, 48.62100334260881, 0],\n            [-1.283011076151868, 48.62098168566641, 0],\n            [-1.282978958318435, 48.62096137790418, 0],\n            [-1.282944905924131, 48.6209425062812, 0],\n            [-1.282909064785374, 48.62092515160702, 0],\n            [-1.282871588378216, 48.62090938819544, 0],\n            [-1.282853281000662, 48.62090248529155, 0],\n            [-1.280368567300112, 48.61999912347692, 0],\n            [-1.280347924205498, 48.6199919212834, 0],\n            [-1.280320228618654, 48.61998340002793, 0],\n            [-1.280324998460496, 48.61997522341591, 0],\n            [-1.280338266298704, 48.61994714417142, 0],\n            [-1.280348735765438, 48.61991854972417, 0],\n            [-1.280356362033155, 48.61988956252101, 0],\n            [-1.280361112449975, 48.61986030668986, 0],\n            [-1.280362966678725, 48.61983090750925, 0],\n            [-1.280361916784434, 48.619801490871, 0],\n            [-1.28035796726794, 48.61977218274163, 0],\n            [-1.280351135046791, 48.61974310862284, 0],\n            [-1.280341449382321, 48.61971439301387, 0],\n            [-1.280328951754748, 48.61968615887872, 0],\n            [-1.28031369568492, 48.6196585271192, 0],\n            [-1.280300986646259, 48.61963899553673, 0],\n            [-1.280170895889152, 48.61945139684287, 0],\n            [-1.28048774662674, 48.61854324594615, 0],\n            [-1.280490936201344, 48.61853362513352, 0],\n            [-1.280498562177315, 48.61850463791849, 0],\n            [-1.280503312380765, 48.61847538207909, 0],\n            [-1.280505166475443, 48.61844598289379, 0],\n            [-1.280504116526935, 48.61841656625445, 0],\n            [-1.28050016703634, 48.61838725812762, 0],\n            [-1.280493334921027, 48.61835818401493, 0],\n            [-1.280483649441928, 48.61832946841567, 0],\n            [-1.280471152078464, 48.61830123429375, 0],\n            [-1.280455896350363, 48.61827360255095, 0],\n            [-1.280437947589066, 48.61824669150978, 0],\n            [-1.280417382657269, 48.61822061640603, 0],\n            [-1.280394289620006, 48.61819548889595, 0],\n            [-1.280368767367615, 48.61817141657797, 0],\n            [-1.28034092519197, 48.61814850253186, 0],\n            [-1.28031088231868, 48.61812684487731, 0],\n            [-1.280278767396359, 48.6181065363543, 0],\n            [-1.28024471794584, 48.61808766392516, 0],\n            [-1.280208879770972, 48.61807030840294, 0],\n            [-1.280171406335078, 48.61805454410499, 0],\n            [-1.280132458102798, 48.61804043853504, 0],\n            [-1.280092201853704, 48.61802805209381, 0],\n            [-1.280050809968025, 48.61801743782071, 0],\n            [-1.280039161095319, 48.61801481604547, 0],\n            [-1.277893047964311, 48.61754612109502, 0],\n            [-1.277862347106655, 48.6175399456404, 0],\n            [-1.277819220476808, 48.61753300346428, 0],\n            [-1.277775501397791, 48.61752794628687, 0],\n            [-1.277756612566772, 48.6175263603501, 0],\n            [-1.277038716919983, 48.61747285955211, 0],\n            [-1.276533593969416, 48.61699219301506, 0],\n            [-1.27651894045939, 48.61697878223661, 0],\n            [-1.276491100696056, 48.61695586725282, 0],\n            [-1.276461060191072, 48.61693420858668, 0],\n            [-1.276428947583039, 48.61691389898248, 0],\n            [-1.2763949003828, 48.61689502540719, 0],\n            [-1.276359064384531, 48.61687766867873, 0],\n            [-1.276321593042302, 48.61686190311978, 0],\n            [-1.276282646811742, 48.61684779623928, 0],\n            [-1.276242392463927, 48.61683540844369, 0],\n            [-1.276201002370874, 48.61682479277815, 0],\n            [-1.276158653767689, 48.61681599469944, 0],\n            [-1.276115527993058, 48.61680905188124, 0],\n            [-1.276071809714041, 48.6168039940532, 0],\n            [-1.276027686133991, 48.61680084287293, 0],\n            [-1.275983346192013, 48.61679961183405, 0],\n            [-1.275938979753371, 48.61680030620785, 0],\n            [-1.275894776796955, 48.61680292302098, 0],\n            [-1.275850926601601, 48.6168074510682, 0],\n            [-1.275807616935787, 48.61681387096022, 0],\n            [-1.275765033253546, 48.61682215520671, 0],\n            [-1.275729335789202, 48.6168306906182, 0],\n            [-1.274463836155797, 48.61716007658698, 0],\n            [-1.274453290014777, 48.61715004027392, 0],\n            [-1.274438635011306, 48.61713662732433, 0],\n            [-1.274410796107763, 48.61711371183489, 0],\n            [-1.274380756403759, 48.61709205262328, 0],\n            [-1.274348644534395, 48.61707174243572, 0],\n            [-1.274314598007298, 48.61705286824202, 0],\n            [-1.274278762614125, 48.61703551086261, 0],\n            [-1.274241291805989, 48.61701974462297, 0],\n            [-1.274202346036359, 48.61700563703504, 0],\n            [-1.274162092074316, 48.61699324850819, 0],\n            [-1.274120702290216, 48.61698263209073, 0],\n            [-1.274078353917727, 48.6169738332426, 0],\n            [-1.274035228294954, 48.61696688964098, 0],\n            [-1.27399151008792, 48.61696183101858, 0],\n            [-1.273947386499776, 48.61695867903674, 0],\n            [-1.273903046469629, 48.6169574471922, 0],\n            [-1.27385867986316, 48.61695814075996, 0],\n            [-1.273814476660002, 48.61696075676985, 0],\n            [-1.273770626140047, 48.61696528402038, 0],\n            [-1.273727316073114, 48.61697170312535, 0],\n            [-1.273684731914975, 48.61697998659814, 0],\n            [-1.273643056013185, 48.61699009896836, 0],\n            [-1.273602466826473, 48.61700199693458, 0],\n            [-1.27357004069961, 48.61701307787754, 0],\n            [-1.273065773229409, 48.61719694395058, 0],\n            [-1.273057704553942, 48.61717870814652, 0],\n            [-1.273042453235833, 48.61715107541426, 0],\n            [-1.273024508838465, 48.61712416320931, 0],\n            [-1.273003948205789, 48.6170980867725, 0],\n            [-1.272980859384494, 48.61707295776574, 0],\n            [-1.272955341246851, 48.61704888379381, 0],\n            [-1.272927503067129, 48.61702596794363, 0],\n            [-1.272897464053753, 48.61700430834265, 0],\n            [-1.272865361639526, 48.61698400295171, 0],\n            [-1.272551755497371, 48.61679824464821, 0],\n            [-1.272517705428846, 48.61677936731356, 0],\n            [-1.272481870850022, 48.61676200937147, 0],\n            [-1.272444400808233, 48.61674624254358, 0],\n            [-1.272405455753831, 48.61673213434422, 0],\n            [-1.272365202452899, 48.61671974518536, 0],\n            [-1.272323813272696, 48.61670912811817, 0],\n            [-1.272281465444451, 48.6167003286053, 0],\n            [-1.272238340303773, 48.61669338432682, 0],\n            [-1.272194622514884, 48.61668832501821, 0],\n            [-1.272150499279039, 48.61668517234385, 0],\n            [-1.272106159533784, 48.61668393980342, 0],\n            [-1.272105879689855, 48.6166839441738, 0],\n            [-1.27208963797846, 48.61665958454313, 0],\n            [-1.272069078019884, 48.6166335079377, 0],\n            [-1.272045989878425, 48.61660837874173, 0],\n            [-1.272020472423436, 48.6165843045608, 0],\n            [-1.271992634926249, 48.61656138848269, 0],\n            [-1.271962596592409, 48.61653972863585, 0],\n            [-1.271930486051163, 48.61651941776955, 0],\n            [-1.271896440804521, 48.61650054285615, 0],\n            [-1.271860606638346, 48.61648318471942, 0],\n            [-1.271823136998815, 48.6164674176879, 0],\n            [-1.271784192334302, 48.61645330927694, 0],\n            [-1.271743939409129, 48.6164409198995, 0],\n            [-1.271702550589258, 48.61643030260758, 0],\n            [-1.271660203104299, 48.61642150286484, 0],\n            [-1.271617078288221, 48.61641455835216, 0],\n            [-1.271581154840984, 48.61641025813049, 0],\n            [-1.26999263224622, 48.61624923195067, 0],\n            [-1.268596544302509, 48.61563617055374, 0],\n            [-1.268028022380709, 48.61521616769613, 0],\n            [-1.268007264146518, 48.61520150537049, 0],\n            [-1.267975156054972, 48.61518119339327, 0],\n            [-1.26794111319652, 48.61516231730238, 0],\n            [-1.267905281347133, 48.6151449579264, 0],\n            [-1.267867813942674, 48.61512918959932, 0],\n            [-1.267828871422145, 48.61511507984191, 0],\n            [-1.267788620540817, 48.61510268907298, 0],\n            [-1.267747233655618, 48.61509207035044, 0],\n            [-1.267704887987926, 48.61508326914404, 0],\n            [-1.267661764864074, 48.61507632314111, 0],\n            [-1.267618048939674, 48.61507126208461, 0],\n            [-1.267573927407986, 48.61506810764622, 0],\n            [-1.267529589199341, 48.61506687333341, 0],\n            [-1.26748522417157, 48.61506756443155, 0],\n            [-1.267441022297569, 48.61507017798129, 0],\n            [-1.267397172851494, 48.6150747027913, 0],\n            [-1.26735386359863, 48.61508111948611, 0],\n            [-1.26731127999121, 48.61508940058927, 0],\n            [-1.267269604374373, 48.61509951064075, 0],\n            [-1.267229015205946, 48.61511140634873, 0],\n            [-1.267189686291181, 48.61512503677523, 0],\n            [-1.267151786039824, 48.61514034355416, 0],\n            [-1.267115476744214, 48.61515726114093, 0],\n            [-1.267093169226601, 48.61516888784513, 0],\n            [-1.265853283086302, 48.61584339908835, 0],\n            [-1.26488106946905, 48.61579977812966, 0],\n            [-1.265111733284419, 48.61527671667284, 0],\n            [-1.265114225300092, 48.61527092175837, 0],\n            [-1.265124702442166, 48.61524232869601, 0],\n            [-1.265132336768398, 48.61521334249945, 0],\n            [-1.265137095591993, 48.61518408729255, 0],\n            [-1.265138958540149, 48.61515468835103, 0],\n            [-1.265137917640322, 48.61512527156578, 0],\n            [-1.265133977354904, 48.61509596290397, 0],\n            [-1.265127154561754, 48.61506688786943, 0],\n            [-1.265117478482176, 48.61503817096541, 0],\n            [-1.265104990555024, 48.61500993516152, 0],\n            [-1.265089744259877, 48.61498230136673, 0],\n            [-1.26507180488749, 48.61495538791212, 0],\n            [-1.265051249260629, 48.61492931004404, 0],\n            [-1.265028165404483, 48.61490417943058, 0],\n            [-1.265002652169878, 48.61488010368335, 0],\n            [-1.264974818810201, 48.61485718589684, 0],\n            [-1.264944784513211, 48.61483552420684, 0],\n            [-1.26491267789089, 48.61481521137043, 0],\n            [-1.264878636428402, 48.61479633436854, 0],\n            [-1.264842805895721, 48.61477897403377, 0],\n            [-1.264805339723096, 48.61476320470409, 0],\n            [-1.264766398344215, 48.61474909390476, 0],\n            [-1.264742680291753, 48.61474153548334, 0],\n            [-1.264273856366831, 48.61459948750937, 0],\n            [-1.264257324676035, 48.61459465401724, 0],\n            [-1.264215938953526, 48.61458403401792, 0],\n            [-1.264173594330798, 48.61457523150529, 0],\n            [-1.264130472129528, 48.61456828417205, 0],\n            [-1.26408675700143, 48.61456322176712, 0],\n            [-1.264042636136389, 48.61456006596778, 0],\n            [-1.263998298461877, 48.61455883028742, 0],\n            [-1.263953933833426, 48.61455952001716, 0],\n            [-1.263909732222235, 48.61456213220364, 0],\n            [-1.263865882901381, 48.61456665566129, 0],\n            [-1.263822573635507, 48.61457307102057, 0],\n            [-1.263779989877008, 48.6145813508105, 0],\n            [-1.263738313971581, 48.61459145957689, 0],\n            [-1.263697724378314, 48.61460335403327, 0],\n            [-1.263658394904357, 48.61461698324719, 0],\n            [-1.263641872356427, 48.61462365558212, 0],\n            [-1.26361228817792, 48.61453551155164, 0],\n            [-1.263577540495668, 48.6141257004852, 0],\n            [-1.263579394701717, 48.61412441198329, 0],\n            [-1.26360786418275, 48.61410184058854, 0],\n            [-1.263634046327982, 48.61407808287426, 0],\n            [-1.263652514060165, 48.61405911319032, 0],\n            [-1.264002148082399, 48.61367937660366, 0],\n            [-1.264007462964254, 48.61367350397324, 0],\n            [-1.264028744029984, 48.61364768340593, 0],\n            [-1.264047432692441, 48.61362099521154, 0],\n            [-1.26406344892714, 48.61359355367434, 0],\n            [-1.264076724153938, 48.61356547630443, 0],\n            [-1.264087201530484, 48.61353688333408, 0],\n            [-1.264094836195364, 48.61350789720386, 0],\n            [-1.264099595460806, 48.61347864203729, 0],\n            [-1.264101458951668, 48.6134492431098, 0],\n            [-1.264100418693408, 48.61341982631225, 0],\n            [-1.26409647914554, 48.61339051761182, 0],\n            [-1.264089657182885, 48.61336144251261, 0],\n            [-1.264079982022932, 48.61333272551815, 0],\n            [-1.264075693511366, 48.61332223090956, 0],\n            [-1.264055429998419, 48.61327491686429, 0],\n            [-1.26409066871952, 48.61325676512489, 0],\n            [-1.264117023146361, 48.61324247209221, 0],\n            [-1.264149691459715, 48.61322255763768, 0],\n            [-1.264180325550919, 48.61320126905643, 0],\n            [-1.264208794240425, 48.61317869751116, 0],\n            [-1.264234975621887, 48.61315493965811, 0],\n            [-1.264258757584087, 48.61313009723399, 0],\n            [-1.264280038291163, 48.61310427661919, 0],\n            [-1.264298726618569, 48.61307758838296, 0],\n            [-1.264314742543495, 48.61305014680976, 0],\n            [-1.2643280174868, 48.61302206940975, 0],\n            [-1.264338494607391, 48.61299347641562, 0],\n            [-1.264346129045293, 48.61296449026777, 0],\n            [-1.264346456499057, 48.61296293174382, 0],\n            [-1.264358675229425, 48.61290402229591, 0],\n            [-1.264393629453819, 48.61291299215851, 0],\n            [-1.264435972716875, 48.61292179459066, 0],\n            [-1.26447909354974, 48.61292874180938, 0],\n            [-1.264522807297881, 48.61293380406504, 0],\n            [-1.264566926767619, 48.61293695967964, 0],\n            [-1.264611263027602, 48.6129381951399, 0],\n            [-1.264655626218123, 48.61293750515539, 0],\n            [-1.264699826364046, 48.61293489268071, 0],\n            [-1.264743674188558, 48.61293036890324, 0],\n            [-1.264786981923756, 48.61292395319492, 0],\n            [-1.264829564114529, 48.61291567302964, 0],\n            [-1.264871238413401, 48.6129055638651, 0],\n            [-1.26488176719143, 48.61290247825924, 0],\n            [-1.264991843904455, 48.61311563907948, 0],\n            [-1.265004515039516, 48.61313818865409, 0],\n            [-1.265022453728331, 48.61316510212198, 0],\n            [-1.265043008619879, 48.61319117999784, 0],\n            [-1.265066091698008, 48.61321631061075, 0],\n            [-1.265091604119704, 48.61324038634617, 0],\n            [-1.265119436638493, 48.6132633041064, 0],\n            [-1.265149470072573, 48.61328496575253, 0],\n            [-1.265181575814418, 48.61330527852435, 0],\n            [-1.265215616382163, 48.61332415543778, 0],\n            [-1.265251446007909, 48.61334151565733, 0],\n            [-1.265288911262208, 48.6133572848422, 0],\n            [-1.265327851710874, 48.61337139546491, 0],\n            [-1.265368100602133, 48.61338378710019, 0],\n            [-1.265409485580937, 48.61339440668376, 0],\n            [-1.265451829426587, 48.61340320874, 0],\n            [-1.265494950812149, 48.61341015557595, 0],\n            [-1.265538665080495, 48.61341521744361, 0],\n            [-1.265582785035864, 48.61341837266652, 0],\n            [-1.265627121744788, 48.61341960773345, 0],\n            [-1.265671485345641, 48.61341891735524, 0],\n            [-1.265715685861548, 48.61341630448841, 0],\n            [-1.265759534014117, 48.61341178032205, 0],\n            [-1.265802842033987, 48.61340536422959, 0],\n            [-1.265845424464909, 48.61339708368674, 0],\n            [-1.265887098958325, 48.61338697415269, 0],\n            [-1.26592768705345, 48.61337507891926, 0],\n            [-1.265967014942675, 48.61336144892488, 0],\n            [-1.266004914214935, 48.6133461425366, 0],\n            [-1.266041222577392, 48.61332922530027, 0],\n            [-1.266075784550316, 48.61331076965969, 0],\n            [-1.266108452133095, 48.61329085464629, 0],\n            [-1.266139089368383, 48.61326956262371, 0],\n            [-1.266419246699657, 48.61306163908913, 0],\n            [-1.266447706444458, 48.61303907282166, 0],\n            [-1.266473886696624, 48.61301531445655, 0],\n            [-1.26649766748782, 48.61299047156706, 0],\n            [-1.266518946987443, 48.61296465053585, 0],\n            [-1.266537634076119, 48.61293796193404, 0],\n            [-1.266553648735997, 48.61291052004744, 0],\n            [-1.26656692239377, 48.6128824423876, 0],\n            [-1.266577398213602, 48.61285384918831, 0],\n            [-1.266585031341092, 48.61282486289091, 0],\n            [-1.266589789094603, 48.61279560761971, 0],\n            [-1.266591651105988, 48.61276620865053, 0],\n            [-1.266590609406642, 48.61273679187448, 0],\n            [-1.266586668462371, 48.61270748325862, 0],\n            [-1.266579845153892, 48.61267840830669, 0],\n            [-1.26657016870473, 48.61264969152158, 0],\n            [-1.266557680555256, 48.61262145587229, 0],\n            [-1.266542434186069, 48.61259382226704, 0],\n            [-1.266524494888222, 48.61256690903644, 0],\n            [-1.266503939484103, 48.61254083142565, 0],\n            [-1.26648085599792, 48.61251570110166, 0],\n            [-1.266455343279063, 48.61249162567489, 0],\n            [-1.266427510578758, 48.61246870823838, 0],\n            [-1.266397477081709, 48.61244704692652, 0],\n            [-1.266365371396598, 48.61242673449466, 0],\n            [-1.266331331004553, 48.61240785792216, 0],\n            [-1.266295501670953, 48.61239049803962, 0],\n            [-1.266258036820851, 48.61237472918332, 0],\n            [-1.266219096882417, 48.61236061887616, 0],\n            [-1.266178848599771, 48.61234822753933, 0],\n            [-1.266137464318748, 48.61233760823321, 0],\n            [-1.266095121249558, 48.61232880643009, 0],\n            [-1.266059902919046, 48.61232298524463, 0],\n            [-1.265640648101822, 48.61226153913135, 0],\n            [-1.265632745909302, 48.6122604136775, 0],\n            [-1.265589032634302, 48.61225535184555, 0],\n            [-1.265544913697878, 48.61225219662471, 0],\n            [-1.26550057801919, 48.61225096152596, 0],\n            [-1.265456215445275, 48.61225165183793, 0],\n            [-1.265438542140136, 48.61225269656265, 0],\n            [-1.265629886839521, 48.61184521077672, 0],\n            [-1.266390066905077, 48.61096687933918, 0],\n            [-1.266407308275008, 48.61094565994346, 0],\n            [-1.266425994673257, 48.61091897135676, 0],\n            [-1.2664420087517, 48.61089152948263, 0],\n            [-1.266455281939409, 48.61086345183254, 0],\n            [-1.266465757402466, 48.61083485864025, 0],\n            [-1.266467186678144, 48.61083019035177, 0],\n            [-1.266605050830778, 48.61036733521132, 0],\n            [-1.267328761143776, 48.60954400234456, 0],\n            [-1.26734829064693, 48.60952015834522, 0],\n            [-1.267366976017321, 48.60949346960276, 0],\n            [-1.267382989129378, 48.60946602759493, 0],\n            [-1.267396261416307, 48.60943794983346, 0],\n            [-1.267406736048409, 48.60940935655276, 0],\n            [-1.267414368176139, 48.60938037019444, 0],\n            [-1.267419125122196, 48.60935111488307, 0],\n            [-1.26741976873396, 48.60934481720861, 0],\n            [-1.267575981475682, 48.60763882668152, 0],\n            [-1.267577199150543, 48.60761572536382, 0],\n            [-1.267576156981871, 48.60758630858825, 0],\n            [-1.267572215867037, 48.6075569999979, 0],\n            [-1.267565392687535, 48.60752792509633, 0],\n            [-1.267555716666071, 48.6074992083862, 0],\n            [-1.267543229241537, 48.60747097283622, 0],\n            [-1.267527983891095, 48.60744333935444, 0],\n            [-1.267510045901761, 48.60741642627048, 0],\n            [-1.267489492090088, 48.60739034882907, 0],\n            [-1.26746641047347, 48.60736521869654, 0],\n            [-1.267440899893422, 48.60734114348243, 0],\n            [-1.267413069591779, 48.60731822627902, 0],\n            [-1.267383038743271, 48.60729656521947, 0],\n            [-1.267350935945071, 48.60727625305816, 0],\n            [-1.267316898665996, 48.60725737677326, 0],\n            [-1.267281072658055, 48.60724001719417, 0],\n            [-1.267243611332194, 48.60722424865573, 0],\n            [-1.267204675101274, 48.60721013867975, 0],\n            [-1.267164430693528, 48.60719774768587, 0],\n            [-1.267123050438406, 48.60718712873296, 0],\n            [-1.267080711528827, 48.60717832729186, 0],\n            [-1.26703759526229, 48.60717138105072, 0],\n            [-1.266993886264749, 48.60716631975366, 0],\n            [-1.266949771700008, 48.60716316507335, 0],\n            [-1.266905440468482, 48.60716193051825, 0],\n            [-1.266861082398205, 48.60716262137481, 0],\n            [-1.266816887432218, 48.6071652346847, 0],\n            [-1.266773044815182, 48.60716975925766, 0],\n            [-1.266729742283042, 48.60717617571935, 0],\n            [-1.266687165259335, 48.60718445659401, 0],\n            [-1.266645496060923, 48.60719456642282, 0],\n            [-1.266604913118177, 48.60720646191481, 0],\n            [-1.266565590209787, 48.60722009213305, 0],\n            [-1.266527695719681, 48.60723539871217, 0],\n            [-1.266491391915539, 48.60725231610858, 0],\n            [-1.266456834254166, 48.60727077188088, 0],\n            [-1.266454360527243, 48.60727219082437, 0],\n            [-1.265155755343577, 48.60802069798778, 0],\n            [-1.264047103637358, 48.60789876035135, 0],\n            [-1.264030895333839, 48.60789711084891, 0],\n            [-1.263986780314441, 48.6078939550269, 0],\n            [-1.263942448512092, 48.60789271932439, 0],\n            [-1.263898089757303, 48.60789340903281, 0],\n            [-1.263853893996012, 48.60789602119868, 0],\n            [-1.263810050476277, 48.60790054463663, 0],\n            [-1.263766746937962, 48.60790695997721, 0],\n            [-1.263750921517248, 48.60790980361223, 0],\n            [-1.263202474455603, 48.60801308736664, 0],\n            [-1.263175721633105, 48.60801852337573, 0],\n            [-1.26313405103923, 48.60802863192582, 0],\n            [-1.263093466594405, 48.60804052617247, 0],\n            [-1.263054142083937, 48.60805415518384, 0],\n            [-1.263016245898427, 48.60806946059985, 0],\n            [-1.262979940312869, 48.60808637688182, 0],\n            [-1.262945380791645, 48.60810483159321, 0],\n            [-1.262912715322935, 48.60812474570978, 0],\n            [-1.262882083784689, 48.60814603395793, 0],\n            [-1.262853617346242, 48.60816860517976, 0],\n            [-1.262827437906167, 48.60819236272344, 0],\n            [-1.262808972739171, 48.60821133149428, 0],\n            [-1.262658503916609, 48.60837476739238, 0],\n            [-1.262618430348166, 48.60838553340705, 0],\n            [-1.26257879747812, 48.60839717227114, 0],\n            [-1.262539472549746, 48.60841080110539, 0],\n            [-1.262501575939297, 48.60842610635074, 0],\n            [-1.262465269923603, 48.60844302246917, 0],\n            [-1.262430709968905, 48.60846147702485, 0],\n            [-1.262398044065143, 48.60848139099412, 0],\n            [-1.262367412092265, 48.60850267910412, 0],\n            [-1.262338945221424, 48.60852525019751, 0],\n            [-1.262316206496681, 48.60854569221159, 0],\n            [-1.262298970254308, 48.60854544050518, 0],\n            [-1.262254610901896, 48.60854612957674, 0],\n            [-1.262210414482292, 48.60854874110793, 0],\n            [-1.26216657024651, 48.60855326391642, 0],\n            [-1.262123265937272, 48.60855967863501, 0],\n            [-1.262080686985887, 48.60856795779573, 0],\n            [-1.262039015717371, 48.60857806594698, 0],\n            [-1.261998430570848, 48.60858995980499, 0],\n            [-1.2619591053348, 48.60860358843981, 0],\n            [-1.261921208402788, 48.60861889349279, 0],\n            [-1.261884902053061, 48.608635809427, 0],\n            [-1.261850341753219, 48.60865426380731, 0],\n            [-1.261817675494821, 48.60867417761075, 0],\n            [-1.261789687542525, 48.60869351460252, 0],\n            [-1.26107393892587, 48.60921848097193, 0],\n            [-1.261071294487381, 48.6092204319181, 0],\n            [-1.26104282662945, 48.60924300268823, 0],\n            [-1.261016645776125, 48.60926675981638, 0],\n            [-1.260992864039106, 48.60929160157251, 0],\n            [-1.260971583257748, 48.60931742158184, 0],\n            [-1.260952894562317, 48.60934410928057, 0],\n            [-1.260936877983994, 48.60937155038917, 0],\n            [-1.260923602111972, 48.60939962740167, 0],\n            [-1.260913123799674, 48.60942822008913, 0],\n            [-1.260905487921524, 48.60945720601383, 0],\n            [-1.260901490962221, 48.6094802736225, 0],\n            [-1.260877320641876, 48.60966074727084, 0],\n            [-1.260038261608083, 48.61001462869984, 0],\n            [-1.260030717987835, 48.61001785695558, 0],\n            [-1.259994409993943, 48.61003477228883, 0],\n            [-1.259959848040804, 48.61005322609696, 0],\n            [-1.25992718012671, 48.61007313935948, 0],\n            [-1.259896546140542, 48.61009442680644, 0],\n            [-1.259868077261788, 48.61011699728329, 0],\n            [-1.25984189539943, 48.61014075414169, 0],\n            [-1.259838378713687, 48.61014420896316, 0],\n            [-1.257163417853711, 48.61279838906726, 0],\n            [-1.257143149604891, 48.61281977527986, 0],\n            [-1.257121865357427, 48.61284559456841, 0],\n            [-1.257103173311156, 48.61287228163333, 0],\n            [-1.257087153511689, 48.61289972219779, 0],\n            [-1.257073874561889, 48.61292779875831, 0],\n            [-1.25706478080744, 48.61295208762934, 0],\n            [-1.256847445925249, 48.61361039951218, 0],\n            [-1.256231647584889, 48.61384467236022, 0],\n            [-1.256197676362714, 48.61385849141628, 0],\n            [-1.256161364310628, 48.61387540553024, 0],\n            [-1.256126798315282, 48.61389385817712, 0],\n            [-1.256094126392535, 48.6139137703414, 0],\n            [-1.256063488448154, 48.61393505675807, 0],\n            [-1.256035015678552, 48.61395762627684, 0],\n            [-1.256008830009738, 48.61398138225335, 0],\n            [-1.255985043574037, 48.61400622296248, 0],\n            [-1.255963758230869, 48.614032042034, 0],\n            [-1.255947802693358, 48.61405452008826, 0],\n            [-1.25573362947194, 48.61437923359666, 0],\n            [-1.255489385002171, 48.61447290923803, 0],\n            [-1.255457483022133, 48.61448593743882, 0],\n            [-1.255421170268729, 48.61450285131736, 0],\n            [-1.255412964966751, 48.61450701073709, 0],\n            [-1.254835432593986, 48.61480441714611, 0],\n            [-1.254809070878655, 48.61481871001592, 0],\n            [-1.254776397834345, 48.61483862180317, 0],\n            [-1.2547457587697, 48.61485990786601, 0],\n            [-1.254717284886249, 48.61488247705593, 0],\n            [-1.254691098114458, 48.61490623272975, 0],\n            [-1.254672626198921, 48.61492520150522, 0],\n            [-1.254102150869245, 48.6155446051518, 0],\n            [-1.253237648639263, 48.61598976086305, 0],\n            [-1.253211285032525, 48.61600405378466, 0],\n            [-1.253178610586796, 48.61602396511452, 0],\n            [-1.253147970125068, 48.61604525074838, 0],\n            [-1.253119494854587, 48.61606781953933, 0],\n            [-1.253093306712032, 48.6160915748461, 0],\n            [-1.253074835655688, 48.61611054130374, 0],\n            [-1.252631371983464, 48.61659200141092, 0],\n            [-1.251902164644851, 48.61696747298707, 0],\n            [-1.24996381601139, 48.61737519028635, 0],\n            [-1.249956978331628, 48.61737665495142, 0],\n            [-1.249915297336353, 48.61738675868428, 0],\n            [-1.249874702223022, 48.61739864823802, 0],\n            [-1.249835366822765, 48.61741227270105, 0],\n            [-1.249797459572686, 48.61742757373278, 0],\n            [-1.24976114279522, 48.61744448581323, 0],\n            [-1.249726572002652, 48.61746293652391, 0],\n            [-1.249693895231423, 48.61748284685761, 0],\n            [-1.249663252408024, 48.6175041315571, 0],\n            [-1.249634774749773, 48.61752669947946, 0],\n            [-1.249608584203601, 48.61755045398715, 0],\n            [-1.249590107091221, 48.61756942444855, 0],\n            [-1.249588480565087, 48.61757119017085, 0],\n            [-1.248928121484829, 48.61759572309477, 0],\n            [-1.248883916428374, 48.61759832947968, 0],\n            [-1.248840063113015, 48.61760284718169, 0],\n            [-1.248796749320442, 48.6176092568558, 0],\n            [-1.248754160522394, 48.61761753105544, 0],\n            [-1.248712479086211, 48.6176276343503, 0],\n            [-1.248671883494583, 48.61763952347737, 0],\n            [-1.248632547580397, 48.61765314752702, 0],\n            [-1.248594639783276, 48.6176684481603, 0],\n            [-1.248558322427893, 48.61768535985898, 0],\n            [-1.248523751029089, 48.61770381020627, 0],\n            [-1.248491073625586, 48.61772372019649, 0],\n            [-1.248460430146912, 48.61774500457366, 0],\n            [-1.24843195181318, 48.61776757219652, 0],\n            [-1.248405760573923, 48.61779132642882, 0],\n            [-1.248381968585584, 48.6178161655527, 0],\n            [-1.248360677731344, 48.61784198320487, 0],\n            [-1.248357949780379, 48.61784587640148, 0],\n            [-1.248354972557451, 48.6178457336185, 0],\n            [-1.247561338430474, 48.61780911368209, 0],\n            [-1.247536554564455, 48.61780206224454, 0],\n            [-1.247098237270714, 48.61620839586915, 0],\n            [-1.247097436133478, 48.61620553540573, 0],\n            [-1.247087770121307, 48.61617681698068, 0],\n            [-1.24707529202589, 48.61614857921284, 0],\n            [-1.247060055284341, 48.61612094301968, 0],\n            [-1.247042125146887, 48.61609402674266, 0],\n            [-1.247021578396446, 48.61606794564006, 0],\n            [-1.246998503020136, 48.61604281139378, 0],\n            [-1.246972997832794, 48.61601873163107, 0],\n            [-1.246945172053133, 48.61599580946367, 0],\n            [-1.24691514483654, 48.61597414304601, 0],\n            [-1.2468830447647, 48.61595382515552, 0],\n            [-1.246849009294757, 48.61593494279469, 0],\n            [-1.24681318417071, 48.61591757681915, 0],\n            [-1.246775722800044, 48.61590180159094, 0],\n            [-1.246736785595684, 48.61588768466064, 0],\n            [-1.246696539290035, 48.6158752864776, 0],\n            [-1.246655156220764, 48.61586466013151, 0],\n            [-1.24661281359278, 48.61585585112495, 0],\n            [-1.246569692719308, 48.61584889717825, 0],\n            [-1.246525978246347, 48.61584382806876, 0],\n            [-1.246481857360982, 48.61584066550243, 0],\n            [-1.246437518990726, 48.6158394230216, 0],\n            [-1.24639315299419, 48.61584010594659, 0],\n            [-1.246348949348326, 48.61584271135313, 0],\n            [-1.246305097334985, 48.61584722808463, 0],\n            [-1.246261784730303, 48.61585363680048, 0],\n            [-1.24621919700102, 48.61586191005803, 0],\n            [-1.246177516509781, 48.61587201243105, 0],\n            [-1.246136921735379, 48.61588390066061, 0],\n            [-1.246097586507065, 48.61589752384071, 0],\n            [-1.246082626169276, 48.61590356200589, 0],\n            [-1.246074943115563, 48.61588750055275, 0],\n            [-1.246072734629129, 48.61588296717541, 0],\n            [-1.246057498518576, 48.61585533084845, 0],\n            [-1.246039569011836, 48.61582841441397, 0],\n            [-1.246019022889133, 48.61580233313099, 0],\n            [-1.245995948135346, 48.61577719868226, 0],\n            [-1.245970443562152, 48.61575311869592, 0],\n            [-1.245942618385889, 48.6157301962845, 0],\n            [-1.245912591759284, 48.61570852960365, 0],\n            [-1.245880492261504, 48.6156882114317, 0],\n            [-1.245846457347137, 48.61566932877259, 0],\n            [-1.245810632758122, 48.61565196248302, 0],\n            [-1.245782025459812, 48.61563971168037, 0],\n            [-1.24527766358195, 48.61543543449824, 0],\n            [-1.245135455906055, 48.61509179755218, 0],\n            [-1.245125687646294, 48.61507030950584, 0],\n            [-1.245110452301528, 48.61504267305151, 0],\n            [-1.245092523590672, 48.61501575646743, 0],\n            [-1.245071978290491, 48.61498967501343, 0],\n            [-1.245048904382007, 48.61496454037267, 0],\n            [-1.245023400673622, 48.61494046017419, 0],\n            [-1.244995576377854, 48.61491753753149, 0],\n            [-1.244965550643775, 48.61489587060124, 0],\n            [-1.244933452046355, 48.61487555216291, 0],\n            [-1.244899418036825, 48.6148566692213, 0],\n            [-1.244863594352945, 48.61483930263465, 0],\n            [-1.244826134395629, 48.61482352676767, 0],\n            [-1.244787198572104, 48.61480940917346, 0],\n            [-1.244746953608822, 48.61479701030437, 0],\n            [-1.244705571837672, 48.61478638325297, 0],\n            [-1.24466323045783, 48.61477757352483, 0],\n            [-1.244620110777384, 48.61477061884347, 0],\n            [-1.244576397437176, 48.6147655489893, 0],\n            [-1.244532277619437, 48.61476238567149, 0],\n            [-1.244487940247123, 48.61476114243561, 0],\n            [-1.244443575174508, 48.61476182460518, 0],\n            [-1.244399372374667, 48.61476442925915, 0],\n            [-1.244355521125755, 48.61476894524429, 0],\n            [-1.244312209200709, 48.61477535322296, 0],\n            [-1.244269622063292, 48.61478362575586, 0],\n            [-1.244227942073672, 48.61479372741981, 0],\n            [-1.244187347708423, 48.61480561495888, 0],\n            [-1.244148012795077, 48.61481923747, 0],\n            [-1.244110105769039, 48.61483453662106, 0],\n            [-1.244073788951685, 48.61485144690008, 0],\n            [-1.244039217855519, 48.61486989589625, 0],\n            [-1.244006540518003, 48.61488980460985, 0],\n            [-1.243975896868326, 48.6149110877903, 0],\n            [-1.24394741812742, 48.61493365430137, 0],\n            [-1.243921226246436, 48.61495740751172, 0],\n            [-1.243897433384695, 48.61498224570779, 0],\n            [-1.243876141429037, 48.61500806253022, 0],\n            [-1.243857441557545, 48.61503474742888, 0],\n            [-1.243841413849345, 48.61506218613614, 0],\n            [-1.243828126941231, 48.61509026115637, 0],\n            [-1.243817637733828, 48.61511885226913, 0],\n            [-1.243811546746534, 48.61514092886468, 0],\n            [-1.243717525692571, 48.61553735313805, 0],\n            [-1.242983084745952, 48.61556460135693, 0],\n            [-1.242938881165576, 48.61556720544695, 0],\n            [-1.242895029086308, 48.61557172087247, 0],\n            [-1.242851716284583, 48.61557812829834, 0],\n            [-1.242809128227942, 48.61558640028763, 0],\n            [-1.242767447280508, 48.6155965014194, 0],\n            [-1.242726851922933, 48.61560838844005, 0],\n            [-1.242687515987024, 48.61562201044881, 0],\n            [-1.242649607912545, 48.61563730911557, 0],\n            [-1.242613290025367, 48.61565421893057, 0],\n            [-1.242578717842551, 48.61567266748489, 0],\n            [-1.242546039406214, 48.61569257578072, 0],\n            [-1.242515394650361, 48.61571385856924, 0],\n            [-1.242486914800443, 48.61573642471603, 0],\n            [-1.242460721812584, 48.61576017759115, 0],\n            [-1.242436927850723, 48.61578501548252, 0],\n            [-1.242415634806375, 48.61581083203218, 0],\n            [-1.242396933862402, 48.61583751669106, 0],\n            [-1.242380905102443, 48.61586495519261, 0],\n            [-1.24236761716781, 48.61589303004202, 0],\n            [-1.242357126963585, 48.61592162101965, 0],\n            [-1.24234947941511, 48.61595060569506, 0],\n            [-1.242344707274987, 48.61597985995216, 0],\n            [-1.242342830983325, 48.61600925852006, 0],\n            [-1.242343320737722, 48.61602327871794, 0],\n            [-1.242152518214021, 48.61586032617572, 0],\n            [-1.242130968888877, 48.61584284635353, 0],\n            [-1.242100943835813, 48.61582117867316, 0],\n            [-1.24206884580482, 48.61580085943275, 0],\n            [-1.24203481224429, 48.61578197564074, 0],\n            [-1.241998988890107, 48.61576460815865, 0],\n            [-1.241961529142124, 48.61574883135523, 0],\n            [-1.241922593406348, 48.61573471278763, 0],\n            [-1.241882348408874, 48.61572231291223, 0],\n            [-1.241840966481729, 48.61571168482605, 0],\n            [-1.241798624825028, 48.61570287403895, 0],\n            [-1.241755504747779, 48.61569591827914, 0],\n            [-1.241711790892563, 48.61569084733152, 0],\n            [-1.241667670443869, 48.61568768291, 0],\n            [-1.241623332327291, 48.61568643856485, 0],\n            [-1.241578966400339, 48.61568711962438, 0],\n            [-1.241534762639727, 48.61568972317224, 0],\n            [-1.241490910327765, 48.61569423805995, 0],\n            [-1.241447597241907, 48.61570064495459, 0],\n            [-1.241431769204666, 48.61570348529704, 0],\n            [-1.241247904599385, 48.61573806676205, 0],\n            [-1.240858779439811, 48.61558755700515, 0],\n            [-1.240767332159842, 48.61540072452942, 0],\n            [-1.240766522373804, 48.61539908085022, 0],\n            [-1.240751289323023, 48.61537144381644, 0],\n            [-1.240733362826056, 48.61534452655035, 0],\n            [-1.240712819650296, 48.6153184443145, 0],\n            [-1.240689747767911, 48.61529330879576, 0],\n            [-1.240673632762961, 48.61527770663503, 0],\n            [-1.240317938077056, 48.61494840203852, 0],\n            [-1.239655269948605, 48.61325383399979, 0],\n            [-1.239643052951431, 48.61322625264579, 0],\n            [-1.239627821174991, 48.61319861545914, 0],\n            [-1.239609896052565, 48.61317169801374, 0],\n            [-1.239589354345649, 48.61314561557313, 0],\n            [-1.239566284020119, 48.61312047982484, 0],\n            [-1.239540783868789, 48.61309639840263, 0],\n            [-1.239512963088989, 48.61307347442524, 0],\n            [-1.239482940814642, 48.61305180605486, 0],\n            [-1.239450845606291, 48.61303148607731, 0],\n            [-1.239416814900238, 48.61301260150409, 0],\n            [-1.239380994420116, 48.61299523320013, 0],\n            [-1.239362513108295, 48.61298716324475, 0],\n            [-1.239307408071662, 48.61296394705914, 0],\n            [-1.238801492996209, 48.61157058091715, 0],\n            [-1.238798882326389, 48.61156363402585, 0],\n            [-1.238786410024098, 48.61153539534737, 0],\n            [-1.238771179229452, 48.61150775804401, 0],\n            [-1.238753255167158, 48.61148084046197, 0],\n            [-1.238732714594155, 48.61145475786516, 0],\n            [-1.238709645471143, 48.6114296219419, 0],\n            [-1.238695926340652, 48.61141625049571, 0],\n            [-1.236613295578566, 48.60946278404123, 0],\n            [-1.236601516724194, 48.60945207365661, 0],\n            [-1.236573699296832, 48.60942914896023, 0],\n            [-1.236543680461095, 48.60940747981471, 0],\n            [-1.236511588762417, 48.60938715900907, 0],\n            [-1.236477561622511, 48.60936827355823, 0],\n            [-1.236472854676358, 48.60936585230947, 0],\n            [-1.236262608041976, 48.60925867881767, 0],\n            [-1.235804097984954, 48.60832155790068, 0],\n            [-1.235803286487205, 48.60831991012317, 0],\n            [-1.235788058303031, 48.60829227241801, 0],\n            [-1.235770136980585, 48.60826535436406, 0],\n            [-1.235749599265097, 48.60823927122745, 0],\n            [-1.235726533104975, 48.60821413469851, 0],\n            [-1.235701037275587, 48.60819005241446, 0],\n            [-1.2356732209556, 48.60816712749763, 0],\n            [-1.235643203259931, 48.60814545811449, 0],\n            [-1.235611112729238, 48.60812513705498, 0],\n            [-1.2355770867801, 48.60810625133514, 0],\n            [-1.235576174660999, 48.60810577868047, 0],\n            [-1.234121723509023, 48.60735339525775, 0],\n            [-1.234086821045983, 48.60733649799332, 0],\n            [-1.234049369976338, 48.60732071855876, 0],\n            [-1.234010442977853, 48.60730659729384, 0],\n            [-1.23397020666673, 48.60729419463151, 0],\n            [-1.233928833337847, 48.60728356368058, 0],\n            [-1.233886500154449, 48.60727474996327, 0],\n            [-1.233843388389291, 48.60726779122038, 0],\n            [-1.233799682649364, 48.60726271724944, 0],\n            [-1.233755570084383, 48.6072595497776, 0],\n            [-1.23371123958623, 48.60725830236778, 0],\n            [-1.233666880979802, 48.60725898036173, 0],\n            [-1.233622684210358, 48.6072615808561, 0],\n            [-1.233578838530411, 48.60726609271559, 0],\n            [-1.233535531688879, 48.60727249662004, 0],\n            [-1.233492949127881, 48.60728076514786, 0],\n            [-1.233451273187902, 48.6072908628927, 0],\n            [-1.233410682328129, 48.60730274661571, 0],\n            [-1.233371350361305, 48.60731636543007, 0],\n            [-1.233333445710148, 48.60733166101934, 0],\n            [-1.23329713068568, 48.60734856788697, 0],\n            [-1.233262560792772, 48.60736701363665, 0],\n            [-1.233229884063969, 48.60738691928266, 0],\n            [-1.233199240425542, 48.6074081995875, 0],\n            [-1.233170761098565, 48.60743076342743, 0],\n            [-1.233144568036686, 48.60745451418214, 0],\n            [-1.233120773404361, 48.60747935014899, 0],\n            [-1.233099479095725, 48.60750516497798, 0],\n            [-1.233080776299154, 48.60753184812747, 0],\n            [-1.23306474510622, 48.60755928533745, 0],\n            [-1.23305145416857, 48.60758735911859, 0],\n            [-1.233040960404392, 48.60761594925585, 0],\n            [-1.233033308753959, 48.60764493332243, 0],\n            [-1.233028531987777, 48.60767418720475, 0],\n            [-1.233026650565339, 48.60770358563357, 0],\n            [-1.233027672548497, 48.60773300272041, 0],\n            [-1.233031593566047, 48.60776231249674, 0],\n            [-1.233038396832538, 48.60779138945326, 0],\n            [-1.233047841016253, 48.60781956134012, 0],\n            [-1.233519239252958, 48.60903947978478, 0],\n            [-1.233519451466985, 48.60904002752132, 0],\n            [-1.233531920196753, 48.60906826677741, 0],\n            [-1.23354714737693, 48.60909590478154, 0],\n            [-1.23356506780649, 48.6091228231822, 0],\n            [-1.233585604750636, 48.60914890670954, 0],\n            [-1.23360867027003, 48.60917404366846, 0],\n            [-1.23363416559684, 48.60919812641721, 0],\n            [-1.233661981557854, 48.60922105182819, 0],\n            [-1.233691999042113, 48.6092427217295, 0],\n            [-1.233724089510455, 48.60926304332583, 0],\n            [-1.233758115546404, 48.60928192959513, 0],\n            [-1.233793931444231, 48.60929929966191, 0],\n            [-1.233812405719821, 48.60930736849932, 0],\n            [-1.234264621749164, 48.6094979371254, 0],\n            [-1.234358757750278, 48.60969034155035, 0],\n            [-1.234591974185662, 48.61019633085756, 0],\n            [-1.235015536335735, 48.61167966846324, 0],\n            [-1.235025137592285, 48.61170818803938, 0],\n            [-1.235037607827569, 48.61173642712728, 0],\n            [-1.235052836641499, 48.61176406492688, 0],\n            [-1.235070758825916, 48.61179098308782, 0],\n            [-1.235091297638826, 48.61181706634114, 0],\n            [-1.235114365132521, 48.61184220299298, 0],\n            [-1.235135075643987, 48.61186201246348, 0],\n            [-1.235831175481459, 48.61249110978704, 0],\n            [-1.236154351175964, 48.61333508658309, 0],\n            [-1.23615493804258, 48.61333660802195, 0],\n            [-1.236167409314954, 48.61336484698419, 0],\n            [-1.236182639241914, 48.61339248463101, 0],\n            [-1.236200562610283, 48.61341940261256, 0],\n            [-1.236221102672934, 48.61344548566077, 0],\n            [-1.236244171477121, 48.61347062208263, 0],\n            [-1.236269670240942, 48.61349470423858, 0],\n            [-1.236297489776517, 48.61351762900355, 0],\n            [-1.236327510957438, 48.61353929820866, 0],\n            [-1.236359605228778, 48.61355961906118, 0],\n            [-1.236393635157673, 48.61357850454252, 0],\n            [-1.236429455022068, 48.61359587378054, 0],\n            [-1.236458045949014, 48.61360812168122, 0],\n            [-1.236494487883184, 48.61362288669623, 0],\n            [-1.236207337836623, 48.61358072603828, 0],\n            [-1.236199438252097, 48.61357959886967, 0],\n            [-1.236155726794543, 48.61357452580006, 0],\n            [-1.236111608550146, 48.61357135923721, 0],\n            [-1.236067272435086, 48.61357011274026, 0],\n            [-1.236022908298362, 48.61357079164691, 0],\n            [-1.235978706108913, 48.61357339305001, 0],\n            [-1.235934855142395, 48.61357790581025, 0],\n            [-1.235891543170486, 48.61358431060371, 0],\n            [-1.235848955657131, 48.61359258000503, 0],\n            [-1.235807274964114, 48.61360267860403, 0],\n            [-1.235789549166604, 48.61360786794407, 0],\n            [-1.23471660400005, 48.61236703426386, 0],\n            [-1.234695773654102, 48.6123445049813, 0],\n            [-1.234670276225953, 48.61232042247324, 0],\n            [-1.234642458093056, 48.61229749731131, 0],\n            [-1.234612438378062, 48.61227582766291, 0],\n            [-1.234580345630523, 48.6122555063191, 0],\n            [-1.234546317276168, 48.61223662029736, 0],\n            [-1.23451049902882, 48.61221925046878, 0],\n            [-1.234473044266229, 48.6122034712122, 0],\n            [-1.2344431501584, 48.61219262794396, 0],\n            [-1.234399873812373, 48.6121087097201, 0],\n            [-1.234387214101453, 48.6120861518232, 0],\n            [-1.234369292177349, 48.61205923355566, 0],\n            [-1.234348753639838, 48.61203315017325, 0],\n            [-1.234325686440847, 48.61200801336745, 0],\n            [-1.23430018936008, 48.61198393077649, 0],\n            [-1.23427237158166, 48.61196100552415, 0],\n            [-1.234242352226738, 48.61193933577827, 0],\n            [-1.234210259843107, 48.61191901433035, 0],\n            [-1.23417855380723, 48.6119014169233, 0],\n            [-1.234187676043197, 48.61188840293706, 0],\n            [-1.234203708002717, 48.61186096557647, 0],\n            [-1.234216999426139, 48.61183289166819, 0],\n            [-1.234227493401428, 48.61180430142994, 0],\n            [-1.234235144996525, 48.61177531729032, 0],\n            [-1.234239921450777, 48.61174606336432, 0],\n            [-1.234241802315641, 48.61171666492224, 0],\n            [-1.234240779542095, 48.61168724785279, 0],\n            [-1.234236857514812, 48.61165793812426, 0],\n            [-1.234230053033634, 48.61162886124527, 0],\n            [-1.234220395241088, 48.61160014172683, 0],\n            [-1.23420792549799, 48.61157190254967, 0],\n            [-1.234192697206082, 48.6115442646374, 0],\n            [-1.2341747755789, 48.6115173463386, 0],\n            [-1.234154237363272, 48.61149126292042, 0],\n            [-1.234131170509805, 48.61146612607465, 0],\n            [-1.234105673796564, 48.61144204343965, 0],\n            [-1.234077856406173, 48.61141911813939, 0],\n            [-1.234047837458046, 48.61139744834188, 0],\n            [-1.234015745498396, 48.61137712683874, 0],\n            [-1.233981717949597, 48.61135824064826, 0],\n            [-1.233945900522093, 48.61134087064223, 0],\n            [-1.233908446589997, 48.61132509120012, 0],\n            [-1.233869516534558, 48.6113109698904, 0],\n            [-1.233829277057548, 48.61129856718137, 0],\n            [-1.233793243842056, 48.61128930907081, 0],\n            [-1.233764866428877, 48.61095224494345, 0],\n            [-1.233760944735967, 48.61092293519746, 0],\n            [-1.233754140629009, 48.61089385828893, 0],\n            [-1.233744483248993, 48.61086513872917, 0],\n            [-1.233732013955016, 48.61083689949901, 0],\n            [-1.233716786146601, 48.61080926152222, 0],\n            [-1.233698865035706, 48.6107823431479, 0],\n            [-1.233678327366501, 48.61075625964326, 0],\n            [-1.233655261087394, 48.61073112270053, 0],\n            [-1.233629764974074, 48.61070703995853, 0],\n            [-1.233601948206564, 48.61068411454173, 0],\n            [-1.233571929901562, 48.61066244461843, 0],\n            [-1.233539838602584, 48.61064212298113, 0],\n            [-1.233505811729285, 48.61062323664845, 0],\n            [-1.233469994988812, 48.6106058664928, 0],\n            [-1.233432541752739, 48.61059008689433, 0],\n            [-1.233393612399198, 48.61057596542223, 0],\n            [-1.233388548955694, 48.61051581612549, 0],\n            [-1.233384627515881, 48.61048650636586, 0],\n            [-1.233377823685262, 48.61045742943428, 0],\n            [-1.233368166603668, 48.61042870984205, 0],\n            [-1.233355697628895, 48.61040047057026, 0],\n            [-1.23334047015911, 48.61037283254268, 0],\n            [-1.23332254940479, 48.61034591410878, 0],\n            [-1.233302012108626, 48.61031983053601, 0],\n            [-1.233278946217389, 48.61029469351687, 0],\n            [-1.233253450505107, 48.61027061069044, 0],\n            [-1.233225634150128, 48.61024768518168, 0],\n            [-1.233195616267349, 48.61022601515918, 0],\n            [-1.233163525398506, 48.61020569341589, 0],\n            [-1.233129498961378, 48.61018680697084, 0],\n            [-1.233093682661273, 48.61016943669706, 0],\n            [-1.233056229867826, 48.61015365697513, 0],\n            [-1.233017300957351, 48.61013953537469, 0],\n            [-1.232977062626643, 48.61012713236519, 0],\n            [-1.232935687179235, 48.61011650105703, 0],\n            [-1.232893351787483, 48.61010768697389, 0],\n            [-1.232850237733516, 48.61010072785799, 0],\n            [-1.232850161149857, 48.61010071896692, 0],\n            [-1.232798957767043, 48.61000509509154, 0],\n            [-1.23278891540618, 48.60998751503201, 0],\n            [-1.232770995083934, 48.60996059651113, 0],\n            [-1.232766057929609, 48.60995393340933, 0],\n            [-1.231475140314764, 48.60824740457449, 0],\n            [-1.23145954164269, 48.60822798382628, 0],\n            [-1.231437760855016, 48.60820415210839, 0],\n            [-1.23064658500684, 48.60739606090572, 0],\n            [-1.229840578373465, 48.60633045072431, 0],\n            [-1.229824981348513, 48.60631103031015, 0],\n            [-1.229801919029998, 48.60628589258485, 0],\n            [-1.229776427011122, 48.60626180897878, 0],\n            [-1.229748614454365, 48.60623888262001, 0],\n            [-1.229718600458536, 48.60621721168108, 0],\n            [-1.229686513548367, 48.60619688895866, 0],\n            [-1.229652491124968, 48.60617800147593, 0],\n            [-1.229638044824613, 48.60617070560394, 0],\n            [-1.229563425211504, 48.60613405655685, 0],\n            [-1.229430637590645, 48.60579610402322, 0],\n            [-1.229418655708059, 48.6057691026799, 0],\n            [-1.229403431800364, 48.60574146412166, 0],\n            [-1.229385514799621, 48.60571454506452, 0],\n            [-1.229364981432435, 48.60568846077887, 0],\n            [-1.229341919628788, 48.60566332296008, 0],\n            [-1.229316428145184, 48.60563923925073, 0],\n            [-1.229288616141824, 48.6056163127794, 0],\n            [-1.22925860271514, 48.60559464171914, 0],\n            [-1.229226516387425, 48.60557431886706, 0],\n            [-1.229192494557332, 48.60555543124703, 0],\n            [-1.229156682910484, 48.60553805973712, 0],\n            [-1.229119234796254, 48.60552227872314, 0],\n            [-1.229080310571191, 48.60550815578037, 0],\n            [-1.229046418969866, 48.6054975671243, 0],\n            [-1.228779119176127, 48.60541996468906, 0],\n            [-1.22873671013259, 48.60533769713281, 0],\n            [-1.228724054661678, 48.60531513860125, 0],\n            [-1.228706138175804, 48.60528821943716, 0],\n            [-1.228685605334476, 48.60526213502904, 0],\n            [-1.228662544065322, 48.6052369970728, 0],\n            [-1.228637053122546, 48.60521291321163, 0],\n            [-1.228609241664089, 48.60518998657467, 0],\n            [-1.228579228783988, 48.60516831533579, 0],\n            [-1.228547143002297, 48.60514799229278, 0],\n            [-1.228513121715049, 48.60512910447039, 0],\n            [-1.228477310605851, 48.60511173274757, 0],\n            [-1.228439863021698, 48.60509595151098, 0],\n            [-1.228400939316798, 48.60508182833685, 0],\n            [-1.228360706165688, 48.60506942370138, 0],\n            [-1.228319335849735, 48.60505879072177, 0],\n            [-1.228277005519034, 48.60504997492899, 0],\n            [-1.228233896434372, 48.60504301407274, 0],\n            [-1.228190193191248, 48.60503793795949, 0],\n            [-1.228146082928585, 48.60503476832565, 0],\n            [-1.228101754528475, 48.60503351874342, 0],\n            [-1.228057397806759, 48.60503419456386, 0],\n            [-1.228013202700764, 48.60503679289285, 0],\n            [-1.227969358455709, 48.60504130260425, 0],\n            [-1.227926052814516, 48.60504770438741, 0],\n            [-1.227883471214051, 48.60505597082954, 0],\n            [-1.227841795990798, 48.60506606653344, 0],\n            [-1.227801205600889, 48.60507794826873, 0],\n            [-1.227761873854869, 48.60509156515733, 0],\n            [-1.227723969174515, 48.60510685889109, 0],\n            [-1.22768765387119, 48.60512376398122, 0],\n            [-1.227653083450924, 48.60514220803918, 0],\n            [-1.22762040594828, 48.60516211208635, 0],\n            [-1.227589761293166, 48.60518339089215, 0],\n            [-1.227309481080507, 48.60539121693888, 0],\n            [-1.22728100025491, 48.60541377931592, 0],\n            [-1.227254805463993, 48.6054375287256, 0],\n            [-1.22723100887945, 48.60546236347075, 0],\n            [-1.227209712404027, 48.60548817720694, 0],\n            [-1.227191007235373, 48.60551485939708, 0],\n            [-1.227174973474974, 48.60554229578519, 0],\n            [-1.227161679785604, 48.60557036888564, 0],\n            [-1.227151183097246, 48.60559895848596, 0],\n            [-1.22714352836266, 48.60562794216195, 0],\n            [-1.227138748365442, 48.6056571958017, 0],\n            [-1.227136863579295, 48.60568659413686, 0],\n            [-1.227137882080118, 48.60571601127946, 0],\n            [-1.227141799511717, 48.60574532126071, 0],\n            [-1.227148599103947, 48.60577439857043, 0],\n            [-1.227158251744833, 48.60580311869462, 0],\n            [-1.227170716104857, 48.60583135864852, 0],\n            [-1.227185938813911, 48.60585899750353, 0],\n            [-1.227203854690113, 48.60588591690471, 0],\n            [-1.227224387018111, 48.60591200157777, 0],\n            [-1.227247447878292, 48.60593713982286, 0],\n            [-1.227272938522988, 48.60596122399253, 0],\n            [-1.22730074979895, 48.60598415095309, 0],\n            [-1.227330762615202, 48.60600582252619, 0],\n            [-1.227362848452549, 48.60602614590924, 0],\n            [-1.227396869914437, 48.60604503407255, 0],\n            [-1.227432681314662, 48.60606240613259, 0],\n            [-1.227470129301873, 48.6060781876978, 0],\n            [-1.227509053515965, 48.60609231118766, 0],\n            [-1.22754928727465, 48.60610471612178, 0],\n            [-1.227590658287565, 48.60611534937901, 0],\n            [-1.227632989393845, 48.60612416542507, 0],\n            [-1.227668201096499, 48.60612999874961, 0],\n            [-1.227682461943582, 48.60613209403663, 0],\n            [-1.227723008125954, 48.60623529346931, 0],\n            [-1.2277349881579, 48.6062622923113, 0],\n            [-1.227750211307161, 48.6062899310907, 0],\n            [-1.22776812763828, 48.60631685040296, 0],\n            [-1.227788660434384, 48.60634293497414, 0],\n            [-1.227789715437728, 48.60634417003492, 0],\n            [-1.227995533603179, 48.60658422956676, 0],\n            [-1.228118116551971, 48.606896222163, 0],\n            [-1.228130096953102, 48.60692322096264, 0],\n            [-1.22814532051907, 48.60695085968847, 0],\n            [-1.228163237296711, 48.6069777789379, 0],\n            [-1.228183770567095, 48.60700386343726, 0],\n            [-1.228185551427095, 48.60700594294015, 0],\n            [-1.231443950306947, 48.61078697287665, 0],\n            [-1.231445739415229, 48.61078904930504, 0],\n            [-1.231447382887927, 48.61079095132395, 0],\n            [-1.231699915394413, 48.6110806738482, 0],\n            [-1.231719552396338, 48.61110183116765, 0],\n            [-1.231745047795729, 48.61112591433455, 0],\n            [-1.23177286396174, 48.61114884020204, 0],\n            [-1.231802881782209, 48.61117051059636, 0],\n            [-1.231834972716939, 48.61119083271994, 0],\n            [-1.231868999347052, 48.61120971954876, 0],\n            [-1.231904815964604, 48.61122709020464, 0],\n            [-1.23194226919582, 48.61124287030231, 0],\n            [-1.231981198657954, 48.61125699226742, 0],\n            [-1.232015091437977, 48.61126757908864, 0],\n            [-1.23209547781753, 48.61129091185416, 0],\n            [-1.232128923849334, 48.61168833440827, 0],\n            [-1.232132844651657, 48.61171764420894, 0],\n            [-1.232139647933475, 48.61174672121242, 0],\n            [-1.232149304567067, 48.61177544090617, 0],\n            [-1.232161773205629, 48.61180368030718, 0],\n            [-1.232177000461086, 48.61183131848928, 0],\n            [-1.232194921131653, 48.61185823710027, 0],\n            [-1.232215458481794, 48.61188432086941, 0],\n            [-1.232238524570373, 48.61190945810058, 0],\n            [-1.232264020627099, 48.61193354115074, 0],\n            [-1.232291837475723, 48.61195646689104, 0],\n            [-1.232321856001308, 48.61197813714839, 0],\n            [-1.232353947660299, 48.61199845912557, 0],\n            [-1.23238797503104, 48.6120173457992, 0],\n            [-1.232423792402388, 48.612034716292, 0],\n            [-1.232461246397074, 48.61205049621917, 0],\n            [-1.232500176629372, 48.61206461800716, 0],\n            [-1.232540416391255, 48.61207702118287, 0],\n            [-1.232581793366601, 48.61208765263275, 0],\n            [-1.232624130368984, 48.61209646683012, 0],\n            [-1.232664269047685, 48.6121029455124, 0],\n            [-1.232672371131209, 48.61211511536588, 0],\n            [-1.232692908833548, 48.61214119904894, 0],\n            [-1.232715975278242, 48.61216633618351, 0],\n            [-1.232741471693482, 48.61219041912703, 0],\n            [-1.232769288901499, 48.61221334475107, 0],\n            [-1.232799307785677, 48.61223501488285, 0],\n            [-1.232831399801162, 48.61225533672597, 0],\n            [-1.232863105589037, 48.61227293450572, 0],\n            [-1.23285398294096, 48.61228594838609, 0],\n            [-1.232837950110417, 48.61231338555699, 0],\n            [-1.232824657791072, 48.61234145930443, 0],\n            [-1.23281416290707, 48.61237004941324, 0],\n            [-1.232806510403399, 48.61239903345692, 0],\n            [-1.232801733054183, 48.61242828732201, 0],\n            [-1.232799851321713, 48.61245768573923, 0],\n            [-1.23280087326888, 48.61248710282028, 0],\n            [-1.23280479452466, 48.61251641259662, 0],\n            [-1.232811598302561, 48.61254548955888, 0],\n            [-1.232821255472745, 48.61257420919459, 0],\n            [-1.232833724686226, 48.61260244852119, 0],\n            [-1.232848952552135, 48.6126300866126, 0],\n            [-1.232866873866467, 48.61265700511724, 0],\n            [-1.232887411890689, 48.61268308876463, 0],\n            [-1.232910478680707, 48.61270822585928, 0],\n            [-1.232935975463472, 48.61273230875872, 0],\n            [-1.232963793059498, 48.61275523433471, 0],\n            [-1.232993812350691, 48.61277690441483, 0],\n            [-1.233025904790177, 48.61279722620277, 0],\n            [-1.233059932953045, 48.61281611267584, 0],\n            [-1.233095751124513, 48.61283348295761, 0],\n            [-1.233133205924155, 48.61284926266428, 0],\n            [-1.233172136962708, 48.61286338422309, 0],\n            [-1.233212377528667, 48.61287578716203, 0],\n            [-1.233253755302495, 48.61288641836855, 0],\n            [-1.233296093094427, 48.61289523231712, 0],\n            [-1.233331310189527, 48.61290106389746, 0],\n            [-1.23333137014193, 48.61290107270173, 0],\n            [-1.233431928240238, 48.61319369742787, 0],\n            [-1.233436417916489, 48.61320596479111, 0],\n            [-1.23344888763157, 48.61323420404964, 0],\n            [-1.233464116026335, 48.61326184205832, 0],\n            [-1.233476805467773, 48.61328137911459, 0],\n            [-1.234230955583828, 48.6143707841709, 0],\n            [-1.234236188234461, 48.61437816548698, 0],\n            [-1.234256727670433, 48.61440424888618, 0],\n            [-1.234279795933073, 48.61442938570245, 0],\n            [-1.234305294242777, 48.61445346829461, 0],\n            [-1.234333113413604, 48.61447639353563, 0],\n            [-1.234363134320724, 48.61449806325466, 0],\n            [-1.23439522841031, 48.61451838465666, 0],\n            [-1.234429258250376, 48.61453727072085, 0],\n            [-1.234463482723291, 48.6145539166281, 0],\n            [-1.234502985035533, 48.61457189649422, 0],\n            [-1.234616843387559, 48.61477537924472, 0],\n            [-1.234623634480547, 48.61478701809371, 0],\n            [-1.234628102210593, 48.61479419103643, 0],\n            [-1.235173399940863, 48.61564867544494, 0],\n            [-1.235186855684363, 48.61566842066059, 0],\n            [-1.235207396139539, 48.6156945038873, 0],\n            [-1.23522106452868, 48.61570983971375, 0],\n            [-1.237234894121484, 48.61787034162996, 0],\n            [-1.237244295856574, 48.61788014225975, 0],\n            [-1.237269797332745, 48.61790422418688, 0],\n            [-1.237297619760966, 48.61792714870297, 0],\n            [-1.237327644002499, 48.61794881764029, 0],\n            [-1.237359741489228, 48.61796913820724, 0],\n            [-1.237388849647632, 48.61798544289, 0],\n            [-1.23747573199299, 48.61803139907362, 0],\n            [-1.237617075102866, 48.61839087290856, 0],\n            [-1.237629063345505, 48.61841787072267, 0],\n            [-1.237644295603899, 48.61844550816692, 0],\n            [-1.237662221553384, 48.61847242591183, 0],\n            [-1.237682764435539, 48.61849850869021, 0],\n            [-1.23770583628547, 48.61852364481023, 0],\n            [-1.237731338308483, 48.61854772663361, 0],\n            [-1.237759161302612, 48.61857065103671, 0],\n            [-1.237789186126699, 48.61859231985213, 0],\n            [-1.23782128421015, 48.61861264028902, 0],\n            [-1.237855318103893, 48.61863152533039, 0],\n            [-1.237891142068608, 48.61864889410605, 0],\n            [-1.237928602699006, 48.61866467223849, 0],\n            [-1.237967539580944, 48.61867879216192, 0],\n            [-1.238007785977819, 48.61869119341115, 0],\n            [-1.238049169545152, 48.61870182288093, 0],\n            [-1.23809151306838, 48.61871063505316, 0],\n            [-1.238134635221828, 48.61871759219163, 0],\n            [-1.238178351345309, 48.61872266450416, 0],\n            [-1.238222474234991, 48.61872583026969, 0],\n            [-1.238266814944815, 48.61872707593166, 0],\n            [-1.238311183596088, 48.61872639615571, 0],\n            [-1.238355390190293, 48.61872379385289, 0],\n            [-1.238399245422959, 48.61871928016683, 0],\n            [-1.238442561494448, 48.61871287442661, 0],\n            [-1.23848515291402, 48.61870460406298, 0],\n            [-1.238526837294507, 48.61869450449204, 0],\n            [-1.238567436133078, 48.61868261896264, 0],\n            [-1.238606775575881, 48.61866899837186, 0],\n            [-1.238644687162431, 48.61865370104641, 0],\n            [-1.238681008547131, 48.61863679249327, 0],\n            [-1.238715584194456, 48.61861834511911, 0],\n            [-1.238748266045262, 48.61859843791994, 0],\n            [-1.238778914150336, 48.61857715614328, 0],\n            [-1.238807397269959, 48.61855459092255, 0],\n            [-1.238833593436055, 48.61853083888717, 0],\n            [-1.238857390474095, 48.61850600174862, 0],\n            [-1.238878686483611, 48.61848018586476, 0],\n            [-1.238897390274567, 48.6184535017847, 0],\n            [-1.238913421757808, 48.61842606377494, 0],\n            [-1.238926712287944, 48.61839798933053, 0],\n            [-1.238926960353732, 48.61839739672804, 0],\n            [-1.239174852964491, 48.61780362515194, 0],\n            [-1.239185097308884, 48.61777562707216, 0],\n            [-1.239192746956839, 48.61774664261121, 0],\n            [-1.239197521096402, 48.61771738848849, 0],\n            [-1.239199399288824, 48.61768798997507, 0],\n            [-1.239198373496553, 48.61765857296004, 0],\n            [-1.239194448117151, 48.61762926341145, 0],\n            [-1.239187639964849, 48.6176001868371, 0],\n            [-1.239177978197923, 48.6175714677468, 0],\n            [-1.239165504194253, 48.61754322911936, 0],\n            [-1.239150271373508, 48.61751559187595, 0],\n            [-1.239132344969127, 48.61748867436261, 0],\n            [-1.239111801747983, 48.61746259184276, 0],\n            [-1.239088729682185, 48.6174374560045, 0],\n            [-1.239063227572281, 48.61741337448188, 0],\n            [-1.239035404623876, 48.61739045039413, 0],\n            [-1.239005379980265, 48.61736878190389, 0],\n            [-1.238973282211981, 48.61734846179757, 0],\n            [-1.23893924876646, 48.61732957708707, 0],\n            [-1.238903425378943, 48.61731220863802, 0],\n            [-1.238865965449525, 48.6172964308232, 0],\n            [-1.238827029384932, 48.61728231120417, 0],\n            [-1.238793136706129, 48.61727172802352, 0],\n            [-1.23860210371882, 48.61721629766613, 0],\n            [-1.238495992781084, 48.61700914881163, 0],\n            [-1.238482862864989, 48.61698568261568, 0],\n            [-1.238467791362203, 48.61696274745742, 0],\n            [-1.237091520379725, 48.61501792198064, 0],\n            [-1.237361865958568, 48.61481744890259, 0],\n            [-1.237390347586025, 48.61479488402945, 0],\n            [-1.237416542464132, 48.6147711323131, 0],\n            [-1.237440338423934, 48.61474629546359, 0],\n            [-1.237461633569601, 48.61472047983773, 0],\n            [-1.237480336714734, 48.61469379598332, 0],\n            [-1.237496367773014, 48.61466635816606, 0],\n            [-1.237500473624433, 48.61465768503145, 0],\n            [-1.237726065326632, 48.61502760809575, 0],\n            [-1.237743688118378, 48.61505402979826, 0],\n            [-1.237764229647755, 48.61508011256716, 0],\n            [-1.237787299971527, 48.61510524867575, 0],\n            [-1.237812800301634, 48.61512933048574, 0],\n            [-1.237840621443445, 48.61515225487357, 0],\n            [-1.237870644263555, 48.61517392367194, 0],\n            [-1.237902740200063, 48.61519424409003, 0],\n            [-1.237936771813111, 48.61521312911094, 0],\n            [-1.237972593373089, 48.61523049786457, 0],\n            [-1.238010051485041, 48.61524627597352, 0],\n            [-1.238031790082803, 48.61525442978694, 0],\n            [-1.238543057125205, 48.6154380397686, 0],\n            [-1.238863791171128, 48.61596393593069, 0],\n            [-1.238881413264612, 48.61599035479503, 0],\n            [-1.238901955765612, 48.61601643735843, 0],\n            [-1.238925027086706, 48.61604157323636, 0],\n            [-1.238950528435479, 48.61606565479171, 0],\n            [-1.23897835061294, 48.61608857890184, 0],\n            [-1.239008374481292, 48.61611024740068, 0],\n            [-1.239040471474135, 48.61613056749876, 0],\n            [-1.239074504147075, 48.61614945218046, 0],\n            [-1.239110326765986, 48.61616682057714, 0],\n            [-1.239147785931356, 48.61618259831302, 0],\n            [-1.239186721235257, 48.6161967178239, 0],\n            [-1.239226965947959, 48.61620911864636, 0],\n            [-1.239268347732099, 48.61621974767712, 0],\n            [-1.239310689380766, 48.61622855939967, 0],\n            [-1.23935380957632, 48.61623551607999, 0],\n            [-1.239373385081337, 48.61623802182224, 0],\n            [-1.23925371131582, 48.61645048723754, 0],\n            [-1.239248965271023, 48.61645918510606, 0],\n            [-1.239235675432693, 48.61648725959106, 0],\n            [-1.23922518332575, 48.61651585028068, 0],\n            [-1.23921753388341, 48.61654483474588, 0],\n            [-1.239212759866688, 48.61657408887139, 0],\n            [-1.239210881723627, 48.61660348738697, 0],\n            [-1.239211907501729, 48.61663290440367, 0],\n            [-1.239215832813565, 48.61666221395334, 0],\n            [-1.239222640855275, 48.61669129052761, 0],\n            [-1.239232302478777, 48.61672000961563, 0],\n            [-1.2392447763159, 48.61674824823712, 0],\n            [-1.239260008956309, 48.61677588546918, 0],\n            [-1.239277935175098, 48.6168028029637, 0],\n            [-1.239298478213069, 48.6168288854547, 0],\n            [-1.239321550104646, 48.61685402125158, 0],\n            [-1.239347052054778, 48.61687810271745, 0],\n            [-1.239374874861856, 48.61690102673013, 0],\n            [-1.239404899385563, 48.61692269512405, 0],\n            [-1.239436997056544, 48.61694301510996, 0],\n            [-1.239471030427466, 48.6169618996729, 0],\n            [-1.239506853761505, 48.61697926794472, 0],\n            [-1.239544313655792, 48.61699504555011, 0],\n            [-1.239555827494714, 48.61699945109371, 0],\n            [-1.239759146265274, 48.61707549528382, 0],\n            [-1.24012400423589, 48.6184027660974, 0],\n            [-1.240124804720948, 48.61840562555127, 0],\n            [-1.240134467188254, 48.61843434456028, 0],\n            [-1.240146941956393, 48.61846258308069, 0],\n            [-1.24016217561097, 48.61849022018999, 0],\n            [-1.240180102922825, 48.61851713754059, 0],\n            [-1.240200647127943, 48.61854321986705, 0],\n            [-1.240223720255891, 48.61856835547964, 0],\n            [-1.240249223506222, 48.61859243674215, 0],\n            [-1.240277047671874, 48.61861536053341, 0],\n            [-1.240307073606453, 48.61863702868852, 0],\n            [-1.240339172735028, 48.61865734841942, 0],\n            [-1.240373207603591, 48.61867623271239, 0],\n            [-1.240397502979083, 48.61868826932953, 0],\n            [-1.242235744798046, 48.61955717591562, 0],\n            [-1.242344830053475, 48.61976534691785, 0],\n            [-1.242356438318524, 48.61978587127208, 0],\n            [-1.24237436726647, 48.61981278827905, 0],\n            [-1.242394913137535, 48.61983887020983, 0],\n            [-1.242413124161403, 48.61985900602256, 0],\n            [-1.242947780642991, 48.62041662079452, 0],\n            [-1.242952644543813, 48.62042162012727, 0],\n            [-1.242978150038849, 48.62044570077934, 0],\n            [-1.242998737361916, 48.6204629503095, 0],\n            [-1.244349863181102, 48.62153977541059, 0],\n            [-1.244357102598288, 48.62154544892013, 0],\n            [-1.244387132037523, 48.62156711600166, 0],\n            [-1.244419234681886, 48.62158743458516, 0],\n            [-1.2444532730627, 48.62160631766198, 0],\n            [-1.244487501185536, 48.62162295853106, 0],\n            [-1.244704011133526, 48.62172146476579, 0],\n            [-1.244288076194635, 48.62167607738429, 0],\n            [-1.244272862571814, 48.62167453454925, 0],\n            [-1.244228736716684, 48.62167137111576, 0],\n            [-1.244184393265493, 48.62167012776282, 0],\n            [-1.244140022098632, 48.62167080981449, 0],\n            [-1.244095813215178, 48.62167341435023, 0],\n            [-1.244071552058415, 48.62167567144566, 0],\n            [-1.243167188297456, 48.6217708751672, 0],\n            [-1.242725460553553, 48.62175748609583, 0],\n            [-1.242700967531643, 48.62175703737585, 0],\n            [-1.242628970363595, 48.62175911926315, 0],\n            [-1.241340315695321, 48.62068863280592, 0],\n            [-1.24132439312336, 48.62067589348691, 0],\n            [-1.241294365534365, 48.6206542256012, 0],\n            [-1.241262264746776, 48.62063390614036, 0],\n            [-1.241228228220699, 48.62061502211389, 0],\n            [-1.241192401705005, 48.6205976543844, 0],\n            [-1.241154938612676, 48.62058187732158, 0],\n            [-1.241115999364351, 48.62056775848368, 0],\n            [-1.241075750701188, 48.62055535832826, 0],\n            [-1.241034364970566, 48.62054472995356, 0],\n            [-1.240992019389204, 48.62053591887057, 0],\n            [-1.240948895282859, 48.62052896280901, 0],\n            [-1.240905177311276, 48.62052389155474, 0],\n            [-1.24086105267665, 48.62052072682339, 0],\n            [-1.240816710322441, 48.62051948216618, 0],\n            [-1.240772340124385, 48.62052016291301, 0],\n            [-1.240728132077382, 48.62052276614863, 0],\n            [-1.240684275482147, 48.62052728072618, 0],\n            [-1.240640958134498, 48.62053368731381, 0],\n            [-1.240598365521342, 48.62054195847843, 0],\n            [-1.240556680026366, 48.6205520588024, 0],\n            [-1.240516080149605, 48.62056394503584, 0],\n            [-1.240476739742413, 48.6205775662811, 0],\n            [-1.240438827263657, 48.62059286421146, 0],\n            [-1.240402505057914, 48.62060977332025, 0],\n            [-1.240367928660708, 48.62062822120156, 0],\n            [-1.240335246132565, 48.62064812886064, 0],\n            [-1.240304597424453, 48.62066941105128, 0],\n            [-1.240276113779251, 48.62069197664164, 0],\n            [-1.24024991716911, 48.62071572900408, 0],\n            [-1.240226119773615, 48.62074056642884, 0],\n            [-1.240204823498792, 48.62076638255986, 0],\n            [-1.240186119541389, 48.62079306684981, 0],\n            [-1.240170087998016, 48.62082050503393, 0],\n            [-1.240156797521756, 48.62084857961862, 0],\n            [-1.240146305028902, 48.62087717038538, 0],\n            [-1.240138655454168, 48.62090615490477, 0],\n            [-1.240133881559269, 48.62093540906123, 0],\n            [-1.240132003791388, 48.62096480758436, 0],\n            [-1.240133030196828, 48.62099422458532, 0],\n            [-1.240136956385243, 48.62102353409589, 0],\n            [-1.240140360775432, 48.62103962374751, 0],\n            [-1.240323618036618, 48.62180493773029, 0],\n            [-1.240327022909302, 48.62181792458473, 0],\n            [-1.240336686147112, 48.62184664357082, 0],\n            [-1.240349161874583, 48.62187488206349, 0],\n            [-1.240364396672906, 48.62190251914029, 0],\n            [-1.240382325308362, 48.62192943645382, 0],\n            [-1.240402871011261, 48.62195551873883, 0],\n            [-1.24042466345591, 48.62197935022338, 0],\n            [-1.241120317461171, 48.62268946615612, 0],\n            [-1.241533931676828, 48.6232645769451, 0],\n            [-1.241522663123937, 48.62326982268863, 0],\n            [-1.241505090369166, 48.6232788892102, 0],\n            [-1.240699153808558, 48.62370896564939, 0],\n            [-1.240682148453773, 48.62371834722462, 0],\n            [-1.240649464043095, 48.62373825496967, 0],\n            [-1.240618813586163, 48.62375953724054, 0],\n            [-1.240590328332947, 48.62378210290483, 0],\n            [-1.240564130262634, 48.62380585533478, 0],\n            [-1.240540331560944, 48.62383069282024, 0],\n            [-1.240519034139718, 48.62385650900492, 0],\n            [-1.24050032920062, 48.62388319334138, 0],\n            [-1.240484296844078, 48.62391063156439, 0],\n            [-1.240471005727151, 48.62393870618042, 0],\n            [-1.240460512768549, 48.62396729697063, 0],\n            [-1.240453006925641, 48.62399561004112, 0],\n            [-1.240236681400708, 48.62499873227094, 0],\n            [-1.239284889116421, 48.62528350428617, 0],\n            [-1.239269770308675, 48.62528817686054, 0],\n            [-1.239230425871227, 48.62530179767374, 0],\n            [-1.239192509454601, 48.62531709518711, 0],\n            [-1.23915618342044, 48.62533400389567, 0],\n            [-1.239121603320776, 48.62535245139556, 0],\n            [-1.239088917231641, 48.62537235869325, 0],\n            [-1.23906874630805, 48.62538604627991, 0],\n            [-1.238895194472867, 48.62532171672815, 0],\n            [-1.238870002964767, 48.62531283488944, 0],\n            [-1.238829751060058, 48.62530043394808, 0],\n            [-1.238788361901777, 48.62528980476459, 0],\n            [-1.238746012721095, 48.62528099285363, 0],\n            [-1.238702884859173, 48.62527403594806, 0],\n            [-1.238659162991986, 48.62526896383785, 0],\n            [-1.238615034338275, 48.62526579824177, 0],\n            [-1.238570687858787, 48.62526455271518, 0],\n            [-1.238526313446862, 48.62526523259142, 0],\n            [-1.238482101115526, 48.62526783495926, 0],\n            [-1.238438240183759, 48.62527234867518, 0],\n            [-1.238394918465986, 48.6252787544114, 0],\n            [-1.238352321467857, 48.62528702473811, 0],\n            [-1.238310631591786, 48.62529712424162, 0],\n            [-1.238270027356672, 48.62530900967518, 0],\n            [-1.238230682632313, 48.62532263014493, 0],\n            [-1.238192765896142, 48.62533792732725, 0],\n            [-1.238156439511082, 48.62535483571874, 0],\n            [-1.238121859030603, 48.62537328291671, 0],\n            [-1.238089172532375, 48.62539318992902, 0],\n            [-1.238058519984835, 48.6254144715124, 0],\n            [-1.238030032646926, 48.62543703653757, 0],\n            [-1.238003832506729, 48.62546078837938, 0],\n            [-1.23799166462127, 48.62547303703659, 0],\n            [-1.237940448204942, 48.6255264705038, 0],\n            [-1.237923885213204, 48.62552623068491, 0],\n            [-1.23787951056181, 48.62552691031047, 0],\n            [-1.237835297967145, 48.62552951242855, 0],\n            [-1.237791436749327, 48.62553402589675, 0],\n            [-1.237748936240815, 48.62554029143076, 0],\n            [-1.237570288239942, 48.62557064762352, 0],\n            [-1.237486776434171, 48.62544929879062, 0],\n            [-1.237480875004506, 48.62544095123098, 0],\n            [-1.237460329393174, 48.62541486842726, 0],\n            [-1.237437254506493, 48.62538973226806, 0],\n            [-1.23741174915714, 48.62536565038901, 0],\n            [-1.23738392256459, 48.6253427259107, 0],\n            [-1.237353893887805, 48.62532105699771, 0],\n            [-1.237321791714485, 48.62530073643792, 0],\n            [-1.23728775351079, 48.62528185124547, 0],\n            [-1.237251925032785, 48.62526448228796, 0],\n            [-1.237214459701828, 48.62524870394033, 0],\n            [-1.237175517948166, 48.6252345837663, 0],\n            [-1.237135266523552, 48.62522218222933, 0],\n            [-1.237093877787654, 48.62521155243334, 0],\n            [-1.237051528969402, 48.62520273989568, 0],\n            [-1.237008401408779, 48.6251957823519, 0],\n            [-1.236964679780381, 48.62519070959461, 0],\n            [-1.23692055130187, 48.62518754334566, 0],\n            [-1.236876204933273, 48.62518629716283, 0],\n            [-1.236831830567491, 48.6251869763825, 0],\n            [-1.23678761821731, 48.62518957809615, 0],\n            [-1.23674375720179, 48.62519409116311, 0],\n            [-1.236700435335716, 48.62520049625828, 0],\n            [-1.236657838125357, 48.62520876595473, 0],\n            [-1.236616147974066, 48.62521886484142, 0],\n            [-1.236575543401921, 48.62523074967426, 0],\n            [-1.23653619828016, 48.62524436956182, 0],\n            [-1.236498281087894, 48.62525966618319, 0],\n            [-1.236461954190025, 48.62527657403724, 0],\n            [-1.236427373142239, 48.62529502072358, 0],\n            [-1.236394686024567, 48.62531492725233, 0],\n            [-1.236364032808162, 48.62533620838222, 0],\n            [-1.236335544754805, 48.62535877298597, 0],\n            [-1.236309343855615, 48.62538252444021, 0],\n            [-1.236285542308502, 48.62540736103903, 0],\n            [-1.236264242037495, 48.62543317642988, 0],\n            [-1.236245534256291, 48.62545986006875, 0],\n            [-1.236229499077866, 48.6254872976934, 0],\n            [-1.236225036977636, 48.6254960290809, 0],\n            [-1.236132431895813, 48.62568354030397, 0],\n            [-1.23596108980224, 48.62579301334644, 0],\n            [-1.23595681619753, 48.62579576792032, 0],\n            [-1.235926162503087, 48.62581704893252, 0],\n            [-1.235897673981126, 48.62583961342667, 0],\n            [-1.235871472625061, 48.62586336478007, 0],\n            [-1.235847670634422, 48.62588820128708, 0],\n            [-1.235826369935298, 48.62591401659578, 0],\n            [-1.235807661743162, 48.62594070016233, 0],\n            [-1.235791858786399, 48.62596773971297, 0],\n            [-1.235753090162748, 48.6259666499062, 0],\n            [-1.235708715093729, 48.62596732869059, 0],\n            [-1.235599786096087, 48.62597136184225, 0],\n            [-1.235551081336901, 48.62583362548889, 0],\n            [-1.235547535272978, 48.62582406911036, 0],\n            [-1.235535061260795, 48.6257958301013, 0],\n            [-1.235519827935994, 48.62576819238855, 0],\n            [-1.235501900533791, 48.62574127431994, 0],\n            [-1.235481355825356, 48.62571519116158, 0],\n            [-1.235458281789534, 48.62569005460414, 0],\n            [-1.235432777234966, 48.62566597228473, 0],\n            [-1.235404951377868, 48.62564304732607, 0],\n            [-1.235374923373884, 48.62562137789455, 0],\n            [-1.235342821808039, 48.62560105678035, 0],\n            [-1.235308784143852, 48.62558217100001, 0],\n            [-1.235272956135052, 48.62556480142365, 0],\n            [-1.235235491201077, 48.62554902242881, 0],\n            [-1.235196549770317, 48.62553490158211, 0],\n            [-1.235156298593185, 48.62552249934979, 0],\n            [-1.23511491002819, 48.62551186883875, 0],\n            [-1.235072561303783, 48.62550305556941, 0],\n            [-1.235029433759527, 48.62549609728055, 0],\n            [-1.234985712069678, 48.62549102376777, 0],\n            [-1.234941583452358, 48.6254878567562, 0],\n            [-1.234897236868193, 48.6254866098071, 0],\n            [-1.234852862210885, 48.62548728825983, 0],\n            [-1.234808649494577, 48.62548988920942, 0],\n            [-1.234764788039888, 48.62549440151825, 0],\n            [-1.234721465663422, 48.6255008058647, 0],\n            [-1.234678867873726, 48.62550907482491, 0],\n            [-1.234637177076572, 48.62551917299088, 0],\n            [-1.234596571794775, 48.62553105712181, 0],\n            [-1.23455722590271, 48.62554467632917, 0],\n            [-1.234519307882667, 48.62555997229502, 0],\n            [-1.234482980103162, 48.625576879521, 0],\n            [-1.234448398123642, 48.62559532560939, 0],\n            [-1.234415710028172, 48.62561523157285, 0],\n            [-1.234385055792022, 48.62563651217267, 0],\n            [-1.234356566681352, 48.62565907628369, 0],\n            [-1.234330364691894, 48.62568282728472, 0],\n            [-1.234306562026095, 48.62570766347175, 0],\n            [-1.234285260612802, 48.62573347849399, 0],\n            [-1.234273221461566, 48.62575011481096, 0],\n            [-1.234031320888733, 48.62610275871455, 0],\n            [-1.23401283392939, 48.62609250098025, 0],\n            [-1.233977006004583, 48.62607513099903, 0],\n            [-1.233939541096927, 48.62605935158074, 0],\n            [-1.233900599634892, 48.62604523029381, 0],\n            [-1.233860348368971, 48.62603282760632, 0],\n            [-1.233818959658153, 48.62602219662723, 0],\n            [-1.233776610731268, 48.62601338287882, 0],\n            [-1.233733482928758, 48.62600642410214, 0],\n            [-1.23368976092622, 48.62600135009477, 0],\n            [-1.233645631942972, 48.62599818258396, 0],\n            [-1.233601284941222, 48.62599693513293, 0],\n            [-1.233556909816487, 48.62599761308359, 0],\n            [-1.233512696584851, 48.62600021353273, 0],\n            [-1.233468834569211, 48.62600472534509, 0],\n            [-1.233425511588508, 48.62601112920102, 0],\n            [-1.233382913153909, 48.62601939767887, 0],\n            [-1.23334122167396, 48.62602949537276, 0],\n            [-1.233300615674418, 48.62604137904376, 0],\n            [-1.233261269032633, 48.62605499780553, 0],\n            [-1.233223350234232, 48.62607029334172, 0],\n            [-1.23318702165097, 48.62608720015607, 0],\n            [-1.23315243884577, 48.62610564585252, 0],\n            [-1.233119749906195, 48.62612555144546, 0],\n            [-1.233089094811193, 48.62614683169765, 0],\n            [-1.23280872055654, 48.62635467095754, 0],\n            [-1.23278023033256, 48.62637723467547, 0],\n            [-1.232754027225216, 48.62640098531472, 0],\n            [-1.232730223441811, 48.62642582117303, 0],\n            [-1.232708920915968, 48.62645163590094, 0],\n            [-1.232690210871175, 48.6264783189573, 0],\n            [-1.23267417342988, 48.62650575608239, 0],\n            [-1.232660877270566, 48.62653382978739, 0],\n            [-1.232650379333826, 48.6265624198573, 0],\n            [-1.232642724577717, 48.62659140386582, 0],\n            [-1.232637945785995, 48.62662065769965, 0],\n            [-1.232636063427186, 48.62665005608965, 0],\n            [-1.232637085566799, 48.6266794731476, 0],\n            [-1.232641007833051, 48.62670878290506, 0],\n            [-1.232647813435073, 48.62673785985275, 0],\n            [-1.232657473235232, 48.62676657947831, 0],\n            [-1.232669945873315, 48.62679481879915, 0],\n            [-1.23268517794378, 48.62682245688924, 0],\n            [-1.23270310422462, 48.62684937539703, 0],\n            [-1.232723647955956, 48.62687545905202, 0],\n            [-1.232746721169375, 48.62690059615862, 0],\n            [-1.232772225064251, 48.62692467907441, 0],\n            [-1.232800050430682, 48.62694760467102, 0],\n            [-1.23283007811728, 48.62696927477594, 0],\n            [-1.232862179541239, 48.62698959659281, 0],\n            [-1.232896217239159, 48.62700848309872, 0],\n            [-1.232932045455413, 48.62702585341719, 0],\n            [-1.232969510766586, 48.62704163316419, 0],\n            [-1.233008452738373, 48.62705575476685, 0],\n            [-1.233048704612487, 48.62706815775294, 0],\n            [-1.233084748988911, 48.62707741608928, 0],\n            [-1.23311313093962, 48.62741448006601, 0],\n            [-1.233117053540385, 48.62744378980585, 0],\n            [-1.233123859516887, 48.62747286672397, 0],\n            [-1.233133519729797, 48.62750158630807, 0],\n            [-1.23314599281708, 48.62752982557579, 0],\n            [-1.233161225371557, 48.62755746360138, 0],\n            [-1.233179152168724, 48.62758438203335, 0],\n            [-1.233199696446883, 48.62761046560177, 0],\n            [-1.233222770235183, 48.62763560261136, 0],\n            [-1.233248274730379, 48.62765968542003, 0],\n            [-1.233276100720111, 48.62768261089998, 0],\n            [-1.233306129050253, 48.62770428087913, 0],\n            [-1.233338231135264, 48.62772460256157, 0],\n            [-1.233372269508883, 48.62774348892516, 0],\n            [-1.233408098412867, 48.62776085909387, 0],\n            [-1.233445564420523, 48.62777663868442, 0],\n            [-1.233484507094649, 48.6277907601246, 0],\n            [-1.233524759674018, 48.62780316294284, 0],\n            [-1.233566149787555, 48.62781379402712, 0],\n            [-1.233608500192558, 48.62782260785231, 0],\n            [-1.233643923241292, 48.6278283232835, 0],\n            [-1.233663829152991, 48.62786718133636, 0],\n            [-1.233676956223242, 48.62789064135865, 0],\n            [-1.233694883414993, 48.6279175597094, 0],\n            [-1.233715428096589, 48.62794364318477, 0],\n            [-1.233738502295161, 48.62796878008993, 0],\n            [-1.233764007206024, 48.62799286278329, 0],\n            [-1.233791833614881, 48.62801578813738, 0],\n            [-1.233821862365907, 48.6280374579809, 0],\n            [-1.233853964871741, 48.62805777951836, 0],\n            [-1.233888003664285, 48.62807666572827, 0],\n            [-1.233922231693496, 48.62809330929352, 0],\n            [-1.234448295492079, 48.62833269431737, 0],\n            [-1.235896224593696, 48.62944228462108, 0],\n            [-1.235924990109025, 48.62946298173886, 0],\n            [-1.235957094373532, 48.62948330268507, 0],\n            [-1.235991134919734, 48.62950218826821, 0],\n            [-1.236026965979733, 48.6295195576156, 0],\n            [-1.236064434118045, 48.62953533634764, 0],\n            [-1.236103378888094, 48.62954945689582, 0],\n            [-1.236143633519682, 48.62956185879221, 0],\n            [-1.236185025632859, 48.62957248892877, 0],\n            [-1.236227377976751, 48.62958130178462, 0],\n            [-1.236264015409518, 48.62958733812785, 0],\n            [-1.236981509684512, 48.62969158825194, 0],\n            [-1.237476299733324, 48.63007073265717, 0],\n            [-1.237505066622076, 48.63009142965645, 0],\n            [-1.237537171925591, 48.63011175015889, 0],\n            [-1.237571213489899, 48.63013063527164, 0],\n            [-1.237607045542783, 48.63014800412404, 0],\n            [-1.237644514644445, 48.63016378233853, 0],\n            [-1.23768346034421, 48.63017790234872, 0],\n            [-1.237723715867924, 48.63019030368934, 0],\n            [-1.237765108831841, 48.63020093325439, 0],\n            [-1.237767811582045, 48.63020155646432, 0],\n            [-1.239607996161141, 48.6306229725587, 0],\n            [-1.239647647191939, 48.63063116098252, 0],\n            [-1.239684293028944, 48.6306371972815, 0],\n            [-1.240104302938336, 48.63069820666284, 0],\n            [-1.240525401919481, 48.63105776182153, 0],\n            [-1.240546962192688, 48.63107524619073, 0],\n            [-1.240576995678226, 48.63109691425875, 0],\n            [-1.240609102863737, 48.63111723389876, 0],\n            [-1.240643146261098, 48.63113611809716, 0],\n            [-1.240678980090242, 48.63115348598737, 0],\n            [-1.240716450903794, 48.63116926319583, 0],\n            [-1.240755398243727, 48.63118338216054, 0],\n            [-1.240795655328832, 48.63119578242056, 0],\n            [-1.240837049768708, 48.63120641087468, 0],\n            [-1.240879404302429, 48.63121522200926, 0],\n            [-1.240922537557216, 48.63122217809245, 0],\n            [-1.240966264825123, 48.63122724933675, 0],\n            [-1.241010398854634, 48.63123041402556, 0],\n            [-1.241054750652069, 48.63123165860699, 0],\n            [-1.241099130291212, 48.63123097775113, 0],\n            [-1.241143347726506, 48.63122837437386, 0],\n            [-1.241187213607014, 48.63122385962348, 0],\n            [-1.241230540087577, 48.63121745283332, 0],\n            [-1.241273141632828, 48.63120918143899, 0],\n            [-1.241314835812337, 48.63119908086064, 0],\n            [-1.241355444081025, 48.63118719435179, 0],\n            [-1.241394792544952, 48.63117357281337, 0],\n            [-1.241432712704884, 48.63115827457629, 0],\n            [-1.241462593634415, 48.63114454099019, 0],\n            [-1.242214789089278, 48.63077864979384, 0],\n            [-1.241894306808384, 48.63112637658269, 0],\n            [-1.240735273210847, 48.63172281457736, 0],\n            [-1.240708900723653, 48.63173710310732, 0],\n            [-1.240676211115213, 48.63175701085013, 0],\n            [-1.240645555785278, 48.63177829311776, 0],\n            [-1.240617066004683, 48.63180085877762, 0],\n            [-1.24059086377226, 48.63182461120197, 0],\n            [-1.240567061291293, 48.6318494486808, 0],\n            [-1.240545760489911, 48.63187526485775, 0],\n            [-1.240527052584126, 48.63190194918546, 0],\n            [-1.240511017687416, 48.63192938739873, 0],\n            [-1.240497724467411, 48.63195746200397, 0],\n            [-1.240487229851774, 48.63198605278263, 0],\n            [-1.240485797018742, 48.63199072257087, 0],\n            [-1.240450860419649, 48.63210775719282, 0],\n            [-1.240435193880423, 48.6321059402364, 0],\n            [-1.240391059119157, 48.63210277532606, 0],\n            [-1.240346706570343, 48.63210153048779, 0],\n            [-1.240302326153222, 48.63210221105196, 0],\n            [-1.240258107906558, 48.63210481410437, 0],\n            [-1.240214241174691, 48.63210932849863, 0],\n            [-1.240170913796825, 48.63211573490399, 0],\n            [-1.240135149959574, 48.63212254208705, 0],\n            [-1.239815810819043, 48.63218965950347, 0],\n            [-1.239508862274441, 48.63221984272148, 0],\n            [-1.239482461431329, 48.63222279278219, 0],\n            [-1.239439133862597, 48.63222919891071, 0],\n            [-1.239396531152317, 48.6322374696223, 0],\n            [-1.239354835727344, 48.63224756950158, 0],\n            [-1.239314226130239, 48.63225945530035, 0],\n            [-1.239274876254122, 48.63227307612302, 0],\n            [-1.239236954598046, 48.6322883736445, 0],\n            [-1.239200623546219, 48.63230528236001, 0],\n            [-1.239166038671955, 48.63232372986537, 0],\n            [-1.239133348072048, 48.6323436371671, 0],\n            [-1.239102691732161, 48.63236491902094, 0],\n            [-1.239074200927546, 48.63238748429621, 0],\n            [-1.239047997661409, 48.63241123636669, 0],\n            [-1.239024194141394, 48.63243607352398, 0],\n            [-1.23901828953533, 48.63244322937118, 0],\n            [-1.238997338681878, 48.63246222031991, 0],\n            [-1.238978855969897, 48.63248118484626, 0],\n            [-1.23869794640135, 48.63278593824146, 0],\n            [-1.238366405745441, 48.63292691539477, 0],\n            [-1.23812823160693, 48.63296807175529, 0],\n            [-1.238087497457836, 48.63297602083302, 0],\n            [-1.238045801158163, 48.63298612023528, 0],\n            [-1.238005190655902, 48.63299800556932, 0],\n            [-1.23796583984777, 48.63301162594159, 0],\n            [-1.237927917237158, 48.63302692302903, 0],\n            [-1.23789158521219, 48.63304383132848, 0],\n            [-1.237856999350535, 48.63306227843766, 0],\n            [-1.237824307752826, 48.63308218536489, 0],\n            [-1.237793650409342, 48.6331034668673, 0],\n            [-1.237765158599611, 48.63312603181587, 0],\n            [-1.237738954330836, 48.63314978358584, 0],\n            [-1.237715149815337, 48.63317462046987, 0],\n            [-1.237693846989794, 48.63320043611424, 0],\n            [-1.237676922703821, 48.63322436422426, 0],\n            [-1.237472667479687, 48.63353671170965, 0],\n            [-1.237094556394645, 48.63388820747591, 0],\n            [-1.236911313125286, 48.63392533424069, 0],\n            [-1.236246444870435, 48.63400563311056, 0],\n            [-1.236245609593007, 48.63400494507833, 0],\n            [-1.236215576236845, 48.63398327587838, 0],\n            [-1.236183468996839, 48.63396295501047, 0],\n            [-1.236149425360789, 48.63394406948977, 0],\n            [-1.236113591107744, 48.63392670018537, 0],\n            [-1.23607611968416, 48.63391092147371, 0],\n            [-1.236037171546125, 48.63389680092023, 0],\n            [-1.23599691347277, 48.6338843989897, 0],\n            [-1.235955517852179, 48.63387376878802, 0],\n            [-1.235913161943079, 48.6338649558341, 0],\n            [-1.235870027115449, 48.63385799786538, 0],\n            [-1.23582629807512, 48.63385292467623, 0],\n            [-1.235782162071528, 48.63384975799022, 0],\n            [-1.23578077780075, 48.63384971908388, 0],\n            [-1.235777738471822, 48.63384824586673, 0],\n            [-1.235740267211987, 48.63383246704512, 0],\n            [-1.235701319228928, 48.63381834637733, 0],\n            [-1.235661061301137, 48.63380594432874, 0],\n            [-1.235619665816017, 48.6337953140056, 0],\n            [-1.235577310031777, 48.63378650092741, 0],\n            [-1.235534175317876, 48.63377954283219, 0],\n            [-1.235490446379566, 48.63377446951478, 0],\n            [-1.235446310465922, 48.63377130269929, 0],\n            [-1.235401956568807, 48.63377005594631, 0],\n            [-1.235357574613256, 48.63377073459429, 0],\n            [-1.235313354644629, 48.63377333573739, 0],\n            [-1.235269486014621, 48.63377784823724, 0],\n            [-1.235226156570608, 48.63378425277134, 0],\n            [-1.23521032131702, 48.63378709247178, 0],\n            [-1.233894549664947, 48.63403439206028, 0],\n            [-1.23315404570048, 48.63412373507685, 0],\n            [-1.232562001427273, 48.63399751073283, 0],\n            [-1.232051975438031, 48.63387721185757, 0],\n            [-1.232048817602198, 48.63387647283109, 0],\n            [-1.232006462374993, 48.63386765843244, 0],\n            [-1.231963328085333, 48.63386069899241, 0],\n            [-1.231957276732933, 48.633859996738, 0],\n            [-1.231930174601834, 48.63353808526532, 0],\n            [-1.231926252217297, 48.63350877549596, 0],\n            [-1.231919446116474, 48.63347969851757, 0],\n            [-1.231909785448808, 48.63345097884169, 0],\n            [-1.231897311587544, 48.63342273944974, 0],\n            [-1.231882077951731, 48.63339510126608, 0],\n            [-1.231864149778266, 48.63336818264084, 0],\n            [-1.231843603841634, 48.63334209884216, 0],\n            [-1.231820528125556, 48.63331696156357, 0],\n            [-1.231795021446227, 48.63329287844544, 0],\n            [-1.231767193028877, 48.6332699526136, 0],\n            [-1.231737162040081, 48.63324828223844, 0],\n            [-1.231705057077672, 48.63322796011413, 0],\n            [-1.23167101561982, 48.63320907326148, 0],\n            [-1.231635183436119, 48.63319170255517, 0],\n            [-1.231597713964274, 48.63317592237765, 0],\n            [-1.231558767651959, 48.63316180030062, 0],\n            [-1.231518511270531, 48.63314939679547, 0],\n            [-1.231496805847832, 48.63314382188906, 0],\n            [-1.231486032512748, 48.63313014453757, 0],\n            [-1.231462957072489, 48.63310500718664, 0],\n            [-1.231437450671757, 48.63308092398853, 0],\n            [-1.231409622534503, 48.63305799806957, 0],\n            [-1.231379591826203, 48.63303632760028, 0],\n            [-1.231347487143431, 48.63301600537552, 0],\n            [-1.231313445963196, 48.63299711841633, 0],\n            [-1.231277614053876, 48.6329797475979, 0],\n            [-1.231240144851995, 48.63296396730323, 0],\n            [-1.231201198804088, 48.63294984510442, 0],\n            [-1.231160942680354, 48.63293744147342, 0],\n            [-1.23113923738871, 48.63293186649918, 0],\n            [-1.231128464196192, 48.63291818911399, 0],\n            [-1.231105389031793, 48.63289305169069, 0],\n            [-1.231079882909618, 48.63286896841256, 0],\n            [-1.23105205505252, 48.63284604240643, 0],\n            [-1.231022024624675, 48.63282437184312, 0],\n            [-1.230989920221579, 48.63280404951786, 0],\n            [-1.230955879318922, 48.63278516245215, 0],\n            [-1.230920047683983, 48.63276779152165, 0],\n            [-1.230882578752066, 48.63275201110976, 0],\n            [-1.230843632968568, 48.63273788878917, 0],\n            [-1.230803377102547, 48.63272548503234, 0],\n            [-1.230761983532636, 48.6327148529528, 0],\n            [-1.230719629508708, 48.63270603807766, 0],\n            [-1.230676496392809, 48.6326990781525, 0],\n            [-1.230632768883335, 48.63269400298014, 0],\n            [-1.23059694870681, 48.63269143123971, 0],\n            [-1.230441495278321, 48.63199628286641, 0],\n            [-1.230424331893147, 48.63179234072216, 0],\n            [-1.23042041052178, 48.63176303089803, 0],\n            [-1.230413605527212, 48.63173395382696, 0],\n            [-1.230403946054131, 48.63170523402095, 0],\n            [-1.230391473470724, 48.6316769944619, 0],\n            [-1.230376241190507, 48.63164935607496, 0],\n            [-1.23035831444454, 48.63162243721102, 0],\n            [-1.230337770001293, 48.63159635313936, 0],\n            [-1.230314695838013, 48.6315712155547, 0],\n            [-1.23028919076426, 48.63154713209848, 0],\n            [-1.230261363998408, 48.63152420589837, 0],\n            [-1.230231334699961, 48.63150253512596, 0],\n            [-1.230199231459515, 48.63148221257735, 0],\n            [-1.230165191747825, 48.63146332527507, 0],\n            [-1.230129361327095, 48.63144595409574, 0],\n            [-1.230091893627392, 48.63143017342393, 0],\n            [-1.230052949088838, 48.63141605083327, 0],\n            [-1.230012694475196, 48.63140364679747, 0],\n            [-1.229990989972341, 48.63139807160513, 0],\n            [-1.22998021742031, 48.63138439411059, 0],\n            [-1.229957143532849, 48.63135925645355, 0],\n            [-1.229931638737674, 48.63133517291742, 0],\n            [-1.229903812251938, 48.63131224663012, 0],\n            [-1.229873783233946, 48.63129057576366, 0],\n            [-1.229841680273116, 48.63127025311457, 0],\n            [-1.229807640839025, 48.63125136570578, 0],\n            [-1.229771810692655, 48.63123399441437, 0],\n            [-1.229734343262916, 48.63121821362534, 0],\n            [-1.229695398988731, 48.63120409091294, 0],\n            [-1.229655144632802, 48.63119168675132, 0],\n            [-1.229613752567167, 48.63118105425583, 0],\n            [-1.229571400035385, 48.63117223895519, 0],\n            [-1.229528268393008, 48.63116527859694, 0],\n            [-1.229484542332215, 48.63116020298573, 0],\n            [-1.229440409089655, 48.63115703385537, 0],\n            [-1.229439214052206, 48.63115700019953, 0],\n            [-1.22942707785298, 48.63114377824867, 0],\n            [-1.229401573420714, 48.63111969459419, 0],\n            [-1.22937374729563, 48.63109676817768, 0],\n            [-1.229343718634632, 48.63107509717201, 0],\n            [-1.229311616025262, 48.63105477437409, 0],\n            [-1.229277576935854, 48.63103588680745, 0],\n            [-1.229241747125995, 48.63101851535002, 0],\n            [-1.229204280022835, 48.6310027343874, 0],\n            [-1.229165336064177, 48.63098861149454, 0],\n            [-1.229125082011287, 48.63097620714648, 0],\n            [-1.22908369023488, 48.63096557445927, 0],\n            [-1.229041337977359, 48.6309567589625, 0],\n            [-1.228998206592995, 48.63094979840453, 0],\n            [-1.22895448077287, 48.63094472259089, 0],\n            [-1.228910347752672, 48.63094155325624, 0],\n            [-1.228865996511872, 48.63094030397193, 0],\n            [-1.228821616964135, 48.63094098008737, 0],\n            [-1.22877739914451, 48.63094357870749, 0],\n            [-1.228733532395496, 48.63094808870478, 0],\n            [-1.228707874335919, 48.6309516413094, 0],\n            [-1.228512119958851, 48.63098137250266, 0],\n            [-1.22849340447357, 48.63097835210317, 0],\n            [-1.228449678679604, 48.63097327609675, 0],\n            [-1.22840554566614, 48.63097010656764, 0],\n            [-1.22836119441269, 48.63096885708784, 0],\n            [-1.228316814832999, 48.63096953300768, 0],\n            [-1.228272596962194, 48.63097213143287, 0],\n            [-1.228228730143057, 48.63097664123684, 0],\n            [-1.228185402215112, 48.63098304310839, 0],\n            [-1.228142798710648, 48.6309913096345, 0],\n            [-1.228101102059975, 48.63100140541751, 0],\n            [-1.228060490810952, 48.63101328722681, 0],\n            [-1.228034323160805, 48.63102209863924, 0],\n            [-1.227877551695296, 48.6310777482482, 0],\n            [-1.227761997949584, 48.63109529768083, 0],\n            [-1.227744328066027, 48.63109814699282, 0],\n            [-1.227701724391659, 48.63110641335477, 0],\n            [-1.227660027557114, 48.63111650897712, 0],\n            [-1.227619416110948, 48.63112839062993, 0],\n            [-1.227580063954175, 48.63114200743538, 0],\n            [-1.227542139595701, 48.6311573010856, 0],\n            [-1.227505805431244, 48.63117420609236, 0],\n            [-1.227471217047447, 48.63119265006731, 0],\n            [-1.227438522556132, 48.63121255403222, 0],\n            [-1.227407861959671, 48.63123383275696, 0],\n            [-1.227379366551438, 48.63125639512434, 0],\n            [-1.227353158354425, 48.63128014452063, 0],\n            [-1.227329349597399, 48.63130497924878, 0],\n            [-1.227308042235384, 48.63133079296423, 0],\n            [-1.227289327512493, 48.63135747513015, 0],\n            [-1.227273285571378, 48.6313849114905, 0],\n            [-1.227259985109805, 48.63141298455987, 0],\n            [-1.227249483086514, 48.63144157412607, 0],\n            [-1.227241824477467, 48.6314705577648, 0],\n            [-1.227237042082547, 48.63149981136439, 0],\n            [-1.227235156385889, 48.63152920965671, 0],\n            [-1.227236175467228, 48.63155862675394, 0],\n            [-1.227240094967932, 48.63158793668746, 0],\n            [-1.227246898108982, 48.6316170139473, 0],\n            [-1.227256555763239, 48.6316457340197, 0],\n            [-1.227258296056129, 48.63164967487834, 0],\n            [-1.227259324034611, 48.63165406854397, 0],\n            [-1.227268981703076, 48.63168278861529, 0],\n            [-1.227281452535582, 48.63171102851431, 0],\n            [-1.227296683134644, 48.63173866731276, 0],\n            [-1.227314608284169, 48.63176558665568, 0],\n            [-1.227335151229394, 48.63179167126935, 0],\n            [-1.227357082300413, 48.63181564867257, 0],\n            [-1.227548791239317, 48.63201121792784, 0],\n            [-1.227391061830963, 48.6322196986827, 0],\n            [-1.227373286830011, 48.63224514316323, 0],\n            [-1.227357244651586, 48.63227257953389, 0],\n            [-1.227343944002224, 48.6323006526115, 0],\n            [-1.227333441841463, 48.63232924218373, 0],\n            [-1.227325783145545, 48.63235822582646, 0],\n            [-1.227321000715114, 48.63238747942792, 0],\n            [-1.227319115034222, 48.63241687771996, 0],\n            [-1.227320134182628, 48.63244629481484, 0],\n            [-1.227324053801377, 48.63247560474384, 0],\n            [-1.227330857110953, 48.63250468199708, 0],\n            [-1.227340514983495, 48.63253340206082, 0],\n            [-1.227352986067081, 48.6325616419506, 0],\n            [-1.227368216962785, 48.63258928073794, 0],\n            [-1.227386142453557, 48.63261620006834, 0],\n            [-1.227388847088153, 48.63261963424117, 0],\n            [-1.227357126718063, 48.63259955300573, 0],\n            [-1.227323087317225, 48.63258066486013, 0],\n            [-1.227287257082146, 48.63256329279287, 0],\n            [-1.227249789441736, 48.63254751119245, 0],\n            [-1.227210844836095, 48.63253338763635, 0],\n            [-1.227170590029347, 48.63252098260251, 0],\n            [-1.227129197395267, 48.63251034920994, 0],\n            [-1.227086844179812, 48.63250153299123, 0],\n            [-1.227043711741751, 48.63249457169793, 0],\n            [-1.226999984776422, 48.63248949513847, 0],\n            [-1.226955850524489, 48.63248632505108, 0],\n            [-1.226943893341566, 48.63248579811571, 0],\n            [-1.225458866776188, 48.63242907296082, 0],\n            [-1.225426471463156, 48.6324283494351, 0],\n            [-1.225382090556846, 48.63242902421764, 0],\n            [-1.225337871252008, 48.63243162150959, 0],\n            [-1.225294002897559, 48.63243613018901, 0],\n            [-1.225250673339557, 48.63244253094977, 0],\n            [-1.225208068117327, 48.63245079638347, 0],\n            [-1.225166369668473, 48.63246089109706, 0],\n            [-1.225125756548486, 48.63247277186459, 0],\n            [-1.225086402665574, 48.63248638781212, 0],\n            [-1.225048476535997, 48.6325016806353, 0],\n            [-1.225012140563027, 48.63251858484948, 0],\n            [-1.225003927218042, 48.63252274341841, 0],\n            [-1.224042640500076, 48.63301718282746, 0],\n            [-1.224016263091179, 48.63303146725698, 0],\n            [-1.223983566038494, 48.63305137023334, 0],\n            [-1.223952902860477, 48.63307264803065, 0],\n            [-1.223924404861916, 48.63309520953592, 0],\n            [-1.223898194076414, 48.63311895813876, 0],\n            [-1.223874382744148, 48.63314379214577, 0],\n            [-1.223853072831114, 48.63316960521545, 0],\n            [-1.223834355592375, 48.63319628681365, 0],\n            [-1.223818311181115, 48.63322372268696, 0],\n            [-1.223805008305954, 48.63325179535187, 0],\n            [-1.22379450393594, 48.63328038459788, 0],\n            [-1.223786843056849, 48.63330936800221, 0],\n            [-1.223782058478555, 48.63333862145406, 0],\n            [-1.223780170694406, 48.6333680196861, 0],\n            [-1.223781187793152, 48.63339743681064, 0],\n            [-1.223785105424591, 48.63342674685899, 0],\n            [-1.223791906817699, 48.63345582432071, 0],\n            [-1.223801562852851, 48.63348454468108, 0],\n            [-1.223814032185917, 48.63351278495449, 0],\n            [-1.223829261425726, 48.63354042421088, 0],\n            [-1.223847185362041, 48.63356734409341, 0],\n            [-1.223867727245356, 48.63359342932602, 0],\n            [-1.22389079911513, 48.63361856820627, 0],\n            [-1.223911513806433, 48.63363837935184, 0],\n            [-1.225122410665316, 48.63473257587635, 0],\n            [-1.225127199242191, 48.63473684955772, 0],\n            [-1.225155025445353, 48.63475977700062, 0],\n            [-1.225185054501394, 48.63478144909955, 0],\n            [-1.225217157821557, 48.63480177304934, 0],\n            [-1.225251197934305, 48.63482066181826, 0],\n            [-1.225287029074, 48.63483803452, 0],\n            [-1.225324497804279, 48.63485381676028, 0],\n            [-1.225363443676426, 48.63486794095568, 0],\n            [-1.225403699915368, 48.63488034662288, 0],\n            [-1.225445094134441, 48.63489098063746, 0],\n            [-1.225487449073377, 48.63489979746188, 0],\n            [-1.225530583357961, 48.63490675934024, 0],\n            [-1.225574312275688, 48.63491183645984, 0],\n            [-1.225618448568069, 48.63491500707922, 0],\n            [-1.225662803231671, 48.63491625762084, 0],\n            [-1.225707186328009, 48.63491558272958, 0],\n            [-1.225751407796736, 48.63491298529551, 0],\n            [-1.22579527826965, 48.63490847644154, 0],\n            [-1.225838609881889, 48.63490207547574, 0],\n            [-1.225854447849746, 48.63489923672659, 0],\n            [-1.227134543552444, 48.63465874132552, 0],\n            [-1.227161312512812, 48.63465331410852, 0],\n            [-1.227203012378313, 48.63464321866995, 0],\n            [-1.227243626759551, 48.63463133716745, 0],\n            [-1.227282981736408, 48.63461772048059, 0],\n            [-1.227320908781793, 48.63460242691949, 0],\n            [-1.22735724548392, 48.63458552197506, 0],\n            [-1.227391836241678, 48.63456707803847, 0],\n            [-1.227424532931214, 48.63454717409103, 0],\n            [-1.227455195539626, 48.63452589536628, 0],\n            [-1.227483692765305, 48.63450333298465, 0],\n            [-1.227509902579644, 48.63447958356325, 0],\n            [-1.22753371274968, 48.63445474880256, 0],\n            [-1.227555021318809, 48.63442893505022, 0],\n            [-1.227573737043199, 48.63440225284606, 0],\n            [-1.227589779782456, 48.63437481644878, 0],\n            [-1.227594515163484, 48.63436482199867, 0],\n            [-1.227517076522764, 48.634822438216, 0],\n            [-1.227514767018076, 48.6348387702066, 0],\n            [-1.227512881358428, 48.63486816849732, 0],\n            [-1.227513900669883, 48.63489758558593, 0],\n            [-1.22751782059233, 48.63492689550377, 0],\n            [-1.227524624345451, 48.634955972741, 0],\n            [-1.227534282798988, 48.63498469278398, 0],\n            [-1.227546754598881, 48.63501293264822, 0],\n            [-1.227561986343027, 48.63504057140567, 0],\n            [-1.227579912810877, 48.63506749070154, 0],\n            [-1.227600457241753, 48.63509357526213, 0],\n            [-1.227601512861045, 48.63509481034333, 0],\n            [-1.227750551592062, 48.63526854589221, 0],\n            [-1.227750291849594, 48.63526886054782, 0],\n            [-1.227731575896487, 48.63529554277936, 0],\n            [-1.227715532940983, 48.63532297919494, 0],\n            [-1.227702231685186, 48.63535105230866, 0],\n            [-1.227691729091192, 48.6353796419083, 0],\n            [-1.22768407013746, 48.63540862556941, 0],\n            [-1.227679287625394, 48.63543787918019, 0],\n            [-1.227677402039527, 48.63546727747247, 0],\n            [-1.227678421459195, 48.63549669455851, 0],\n            [-1.227732330474167, 48.63613762683285, 0],\n            [-1.227693837444064, 48.63642390638831, 0],\n            [-1.227312861670575, 48.6365259708366, 0],\n            [-1.227311750526698, 48.6365262668062, 0],\n            [-1.227271883859251, 48.63653794795986, 0],\n            [-1.227232527377558, 48.6365515646412, 0],\n            [-1.22719459883607, 48.63656685817112, 0],\n            [-1.227158260648391, 48.63658376306181, 0],\n            [-1.227123668418491, 48.63660220692552, 0],\n            [-1.227090970274598, 48.63662211078441, 0],\n            [-1.227060306234591, 48.63664338940883, 0],\n            [-1.227031807606973, 48.63666595168208, 0],\n            [-1.227005596428166, 48.63668970099072, 0],\n            [-1.226981784939825, 48.63671453563813, 0],\n            [-1.226960475108645, 48.63674034928012, 0],\n            [-1.226941758189351, 48.63676703138005, 0],\n            [-1.226925714333966, 48.63679446768236, 0],\n            [-1.226912412248393, 48.63682254070179, 0],\n            [-1.226901908898583, 48.63685113022634, 0],\n            [-1.226894249265775, 48.63688011383194, 0],\n            [-1.226892784748568, 48.63688907084362, 0],\n            [-1.226793799890937, 48.63673965356671, 0],\n            [-1.226602478560759, 48.63640033415346, 0],\n            [-1.226596268424254, 48.63638973097773, 0],\n            [-1.226578342011719, 48.63636281153022, 0],\n            [-1.226557797592474, 48.63633672678837, 0],\n            [-1.226534723143822, 48.63631158844968, 0],\n            [-1.226509217476484, 48.636287504159, 0],\n            [-1.226481389811371, 48.63626457704731, 0],\n            [-1.226451359311824, 48.63624290529032, 0],\n            [-1.226419254573616, 48.63622258168832, 0],\n            [-1.226385213073917, 48.63620369326825, 0],\n            [-1.226349380582543, 48.63618632091158, 0],\n            [-1.226311910538496, 48.63617053900788, 0],\n            [-1.226290164237476, 48.63616238277638, 0],\n            [-1.226044976001621, 48.63607433206275, 0],\n            [-1.226027775215206, 48.63606836438567, 0],\n            [-1.225987517871887, 48.63605595893881, 0],\n            [-1.225946122579753, 48.63604532512102, 0],\n            [-1.225939392591506, 48.63604378836753, 0],\n            [-1.224736027807147, 48.63577367158315, 0],\n            [-1.224724173468297, 48.63577101061219, 0],\n            [-1.224688547877939, 48.63576373034152, 0],\n            [-1.224645412975209, 48.63575676814638, 0],\n            [-1.224601683416895, 48.63575169067242, 0],\n            [-1.22455754645467, 48.63574851966145, 0],\n            [-1.224513191084873, 48.63574726869188, 0],\n            [-1.224468807238914, 48.63574794312039, 0],\n            [-1.224424584970167, 48.63575054005918, 0],\n            [-1.224380713640219, 48.63575504838784, 0],\n            [-1.224337381107976, 48.63576144880177, 0],\n            [-1.224294772925394, 48.63576971389394, 0],\n            [-1.224253071542827, 48.63577980827295, 0],\n            [-1.224212455528395, 48.63579168871414, 0],\n            [-1.224173098802377, 48.63580530434492, 0],\n            [-1.224135169893543, 48.63582059686253, 0],\n            [-1.224098831216955, 48.63583750078335, 0],\n            [-1.224064238378781, 48.63585594372397, 0],\n            [-1.224031539509489, 48.63587584671051, 0],\n            [-1.224000874630613, 48.63589712451683, 0],\n            [-1.223972375053815, 48.63591968602989, 0],\n            [-1.223946162819591, 48.63594343463955, 0],\n            [-1.223922350174376, 48.63596826865209, 0],\n            [-1.223901039089699, 48.63599408172609, 0],\n            [-1.2238823208256, 48.63602076332734, 0],\n            [-1.22386627553994, 48.63604819920247, 0],\n            [-1.223852971944774, 48.63607627186782, 0],\n            [-1.223842467012271, 48.63610486111319, 0],\n            [-1.223834805730841, 48.63613384451555, 0],\n            [-1.22383002091184, 48.63616309796417, 0],\n            [-1.223828246389811, 48.63618757990593, 0],\n            [-1.223822633344442, 48.63636687659398, 0],\n            [-1.223746480589401, 48.63716476982863, 0],\n            [-1.223745159899123, 48.63718874514668, 0],\n            [-1.223746177054643, 48.63721816226438, 0],\n            [-1.223783905420495, 48.63766712517483, 0],\n            [-1.223821634459688, 48.63811608805991, 0],\n            [-1.223825552482074, 48.63814539809805, 0],\n            [-1.223832354536454, 48.63817447554862, 0],\n            [-1.223842011500302, 48.63820319589696, 0],\n            [-1.223854482025475, 48.63823143615745, 0],\n            [-1.223869712715804, 48.63825907540014, 0],\n            [-1.223887638354777, 48.63828599526828, 0],\n            [-1.223908182185594, 48.63831208048579, 0],\n            [-1.223931256239381, 48.63833721935033, 0],\n            [-1.223956761711715, 48.63836130421192, 0],\n            [-1.22398458938608, 48.63838423193384, 0],\n            [-1.224014620101175, 48.6384059043346, 0],\n            [-1.224046725261185, 48.63842622860774, 0],\n            [-1.224080767386704, 48.63844511772014, 0],\n            [-1.224116600703438, 48.63846249078397, 0],\n            [-1.224154071765791, 48.63847827340349, 0],\n            [-1.224193020114917, 48.63849239799363, 0],\n            [-1.22423327896525, 48.63850480406928, 0],\n            [-1.224274675918915, 48.63851543850437, 0],\n            [-1.224317033703894, 48.63852425575958, 0],\n            [-1.224360170933803, 48.6385312180771, 0],\n            [-1.224403902883584, 48.63853629564236, 0],\n            [-1.224448042281701, 48.63853946671203, 0],\n            [-1.224480294886827, 48.63854037631263, 0],\n            [-1.224552526703036, 48.63861443442687, 0],\n            [-1.224554524189732, 48.63861647033419, 0],\n            [-1.224580030102034, 48.63864055505657, 0],\n            [-1.224607858214848, 48.63866348262673, 0],\n            [-1.224637889364975, 48.63868515486363, 0],\n            [-1.224669994955101, 48.6387054789617, 0],\n            [-1.224704037503561, 48.63872436788861, 0],\n            [-1.224739871234244, 48.63874174075703, 0],\n            [-1.224777342700174, 48.6387575231724, 0],\n            [-1.224816291440447, 48.63877164755035, 0],\n            [-1.224856550667939, 48.6387840534067, 0],\n            [-1.224897947982955, 48.63879468761637, 0],\n            [-1.224940306112379, 48.63880350464095, 0],\n            [-1.224983443667986, 48.63881046672363, 0],\n            [-1.225027175923363, 48.63881554405082, 0],\n            [-1.225071315605733, 48.63881871488027, 0],\n            [-1.225115673697153, 48.6388199656334, 0],\n            [-1.22516006024449, 48.63881929095437, 0],\n            [-1.22520428517253, 48.63881669373217, 0],\n            [-1.225248159098322, 48.63881218508892, 0],\n            [-1.225291494142196, 48.63880578433167, 0],\n            [-1.225334104732192, 48.6387975188704, 0],\n            [-1.225375808399072, 48.63878742409974, 0],\n            [-1.22539657116288, 48.63878161407108, 0],\n            [-1.225483925456898, 48.63875602858339, 0],\n            [-1.225677004524213, 48.63878312436405, 0],\n            [-1.225678682424791, 48.63878335836315, 0],\n            [-1.225722414726751, 48.638788435425, 0],\n            [-1.225766554429164, 48.63879160598646, 0],\n            [-1.225810912513989, 48.63879285647045, 0],\n            [-1.225855299028034, 48.6387921815219, 0],\n            [-1.225899523896381, 48.63878958403137, 0],\n            [-1.225943397736242, 48.63878507512177, 0],\n            [-1.225986732668305, 48.63877867410157, 0],\n            [-1.226029343121091, 48.63877040838154, 0],\n            [-1.226071046626041, 48.63876031335781, 0],\n            [-1.226111664598126, 48.63874843225978, 0],\n            [-1.226151023101663, 48.63873481596541, 0],\n            [-1.226188953594689, 48.63871952278322, 0],\n            [-1.226225293650574, 48.63870261820231, 0],\n            [-1.226259887653916, 48.63868417461243, 0],\n            [-1.226292587466733, 48.63866427099347, 0],\n            [-1.226323253063075, 48.63864299257732, 0],\n            [-1.226351753128263, 48.63862043048324, 0],\n            [-1.226377965621539, 48.6385966813272, 0],\n            [-1.226401778298689, 48.63857184680828, 0],\n            [-1.226423089192219, 48.63854603327329, 0],\n            [-1.226439066418501, 48.63852355825984, 0],\n            [-1.22649795901592, 48.63843440616933, 0],\n            [-1.226519531341486, 48.63842127544898, 0],\n            [-1.226550196693643, 48.6383999969718, 0],\n            [-1.226578696519423, 48.63837743482093, 0],\n            [-1.226604908779085, 48.63835368561253, 0],\n            [-1.226628721229217, 48.63832885104614, 0],\n            [-1.226650031903382, 48.63830303746849, 0],\n            [-1.226668749548796, 48.63827635541888, 0],\n            [-1.22668479401685, 48.6382489191551, 0],\n            [-1.22669809660644, 48.63822084616477, 0],\n            [-1.226708600358109, 48.63819225666141, 0],\n            [-1.226716260297511, 48.63816327307067, 0],\n            [-1.226720728438628, 48.63813668546031, 0],\n            [-1.226726685155748, 48.63808815539984, 0],\n            [-1.226795222842614, 48.63798440049122, 0],\n            [-1.226797963413364, 48.63798019348386, 0],\n            [-1.22681400771649, 48.63795275720158, 0],\n            [-1.22682731015566, 48.63792468419558, 0],\n            [-1.226837813772117, 48.63789609467982, 0],\n            [-1.226840576677402, 48.63788685497583, 0],\n            [-1.226961736604473, 48.63745817011709, 0],\n            [-1.226964166315205, 48.63745522693299, 0],\n            [-1.226982883478665, 48.63742854483058, 0],\n            [-1.226998927505032, 48.6374011085214, 0],\n            [-1.227012229695301, 48.63737303549294, 0],\n            [-1.227022733091394, 48.63734444595924, 0],\n            [-1.227030392720845, 48.63731546234597, 0],\n            [-1.227035175788587, 48.63728620876577, 0],\n            [-1.227035304186619, 48.63728420737728, 0],\n            [-1.227384293148928, 48.63790313071714, 0],\n            [-1.227390503215808, 48.63791373309995, 0],\n            [-1.227408430615473, 48.63794065241768, 0],\n            [-1.227428976130622, 48.63796673700426, 0],\n            [-1.22745205178515, 48.63799187516009, 0],\n            [-1.227463986663375, 48.63800314425587, 0],\n            [-1.227477066491416, 48.63802526807825, 0],\n            [-1.227479444512056, 48.63802923483888, 0],\n            [-1.22749737200047, 48.63805615414247, 0],\n            [-1.227517917608885, 48.63808223871293, 0],\n            [-1.227540993360834, 48.63810737685071, 0],\n            [-1.227566500444599, 48.63813146090881, 0],\n            [-1.22759432963675, 48.63815438775411, 0],\n            [-1.22762436176949, 48.63817605920878, 0],\n            [-1.227656468240972, 48.63819638247045, 0],\n            [-1.227690511566171, 48.63821527051031, 0],\n            [-1.227726345965599, 48.63823264244512, 0],\n            [-1.227763817989023, 48.63824842388404, 0],\n            [-1.227785567754891, 48.63825658066932, 0],\n            [-1.22794160963283, 48.63831261168004, 0],\n            [-1.227953094472409, 48.63833344978819, 0],\n            [-1.227971022322634, 48.63836036901712, 0],\n            [-1.227991568300832, 48.63838645350213, 0],\n            [-1.228014644428961, 48.63841159154394, 0],\n            [-1.228040151893701, 48.63843567549613, 0],\n            [-1.228067981469965, 48.63845860222592, 0],\n            [-1.228098013988297, 48.63848027355598, 0],\n            [-1.22813012084523, 48.63850059668448, 0],\n            [-1.228164164554082, 48.6385194845832, 0],\n            [-1.228199999333706, 48.63853685636952, 0],\n            [-1.22823747173229, 48.63855263765317, 0],\n            [-1.228276421285273, 48.6385667608547, 0],\n            [-1.228281481440208, 48.63862691027563, 0],\n            [-1.228285402100484, 48.63865622016019, 0],\n            [-1.228292206801367, 48.63868529734489, 0],\n            [-1.228301866409081, 48.63871401731625, 0],\n            [-1.228314339564149, 48.6387422570902, 0],\n            [-1.228329572859075, 48.63876989573893, 0],\n            [-1.228347501066274, 48.63879681490819, 0],\n            [-1.228368047417894, 48.63882289932489, 0],\n            [-1.228391123934272, 48.6388480372902, 0],\n            [-1.228416631800511, 48.63887212115786, 0],\n            [-1.228444461789744, 48.63889504779553, 0],\n            [-1.228474494730758, 48.63891671902626, 0],\n            [-1.228506602018287, 48.63893704204869, 0],\n            [-1.228540646163769, 48.63895592983494, 0],\n            [-1.22857648138424, 48.63897330150301, 0],\n            [-1.228611407632854, 48.63898801020191, 0],\n            [-1.228627149213593, 48.63901164581701, 0],\n            [-1.228647695797946, 48.6390377301832, 0],\n            [-1.228670772552594, 48.63906286809179, 0],\n            [-1.228696280661579, 48.63908695189686, 0],\n            [-1.228724110897055, 48.63910987846622, 0],\n            [-1.22875414408679, 48.63913154962337, 0],\n            [-1.228786251624379, 48.6391518725671, 0],\n            [-1.228820296020221, 48.63917076027002, 0],\n            [-1.228856131490252, 48.63918813185036, 0],\n            [-1.228893604579704, 48.63920391291869, 0],\n            [-1.228932554821056, 48.63921803589652, 0],\n            [-1.22897281542063, 48.63923044030577, 0],\n            [-1.229014213973037, 48.63924107302752, 0],\n            [-1.229056573199443, 48.63924988852965, 0],\n            [-1.229099711707309, 48.63925684906196, 0],\n            [-1.229143444766043, 48.6392619248175, 0],\n            [-1.229187585099372, 48.63926509406061, 0],\n            [-1.229231943686615, 48.63926634321974, 0],\n            [-1.229276330572482, 48.63926566694566, 0],\n            [-1.229288542752349, 48.6392649493199, 0],\n            [-1.229317734538138, 48.63927724270533, 0],\n            [-1.22935668495533, 48.63929136553892, 0],\n            [-1.229396945718033, 48.63930376979901, 0],\n            [-1.229438344420439, 48.63931440236744, 0],\n            [-1.229480703782997, 48.63932321771277, 0],\n            [-1.229523842412426, 48.63933017808521, 0],\n            [-1.229567575577655, 48.63933525367888, 0],\n            [-1.22961171600203, 48.63933842275851, 0],\n            [-1.229656074664454, 48.63933967175343, 0],\n            [-1.229700461609293, 48.63933899531492, 0],\n            [-1.229744686759715, 48.63933639633984, 0],\n            [-1.229788560731751, 48.63933188595762, 0],\n            [-1.229831895645568, 48.63932548348294, 0],\n            [-1.229874505929669, 48.63931721633294, 0],\n            [-1.229916209116253, 48.63930711990956, 0],\n            [-1.229956826621672, 48.63929523744851, 0],\n            [-1.229996184512339, 48.63928161983347, 0],\n            [-1.23003411424875, 48.63926632537853, 0],\n            [-1.230070453407592, 48.63924941957841, 0],\n            [-1.230105046377221, 48.63923097482788, 0],\n            [-1.230137745024331, 48.63921107011188, 0],\n            [-1.230168409327568, 48.63918979066716, 0],\n            [-1.230196907978147, 48.63916722761725, 0],\n            [-1.230223118941347, 48.63914347758207, 0],\n            [-1.230235294550568, 48.63913122712646, 0],\n            [-1.230275551945406, 48.63908924724461, 0],\n            [-1.230357679494347, 48.6390738162431, 0],\n            [-1.230745047935611, 48.63911651277509, 0],\n            [-1.230761262711753, 48.63911816671247, 0],\n            [-1.23080540302086, 48.6391213353322, 0],\n            [-1.230849761521513, 48.63912258386484, 0],\n            [-1.230894148258779, 48.63912190696387, 0],\n            [-1.230924098748687, 48.63912014654605, 0],\n            [-1.230957293597716, 48.63912252939781, 0],\n            [-1.231001652103205, 48.63912377787158, 0],\n            [-1.231046038839452, 48.63912310091176, 0],\n            [-1.231090263730581, 48.63912050141715, 0],\n            [-1.231134137393724, 48.63911599051949, 0],\n            [-1.231177471950327, 48.63910958753563, 0],\n            [-1.231220081830491, 48.63910131988498, 0],\n            [-1.231261784568114, 48.63909122297159, 0],\n            [-1.231302401581407, 48.63907934003327, 0],\n            [-1.231317640444678, 48.63907432398319, 0],\n            [-1.231913777969562, 48.63887188069993, 0],\n            [-1.232009409990504, 48.63886026999089, 0],\n            [-1.232013053365226, 48.63885982082695, 0],\n            [-1.232056387589315, 48.63885341751051, 0],\n            [-1.232098997108129, 48.63884514953269, 0],\n            [-1.232140699456883, 48.63883505229928, 0],\n            [-1.232181316055947, 48.63882316904905, 0],\n            [-1.232220672975211, 48.63880955066924, 0],\n            [-1.232223364598915, 48.63880853832542, 0],\n            [-1.233028372921117, 48.63850415198093, 0],\n            [-1.233434115233685, 48.63861960544297, 0],\n            [-1.233436085533448, 48.63862016364401, 0],\n            [-1.233477484526842, 48.63863079475304, 0],\n            [-1.233519844021394, 48.63863960860504, 0],\n            [-1.233562982623404, 48.63864656745676, 0],\n            [-1.233606715601843, 48.63865164150845, 0],\n            [-1.233650855680855, 48.63865480903181, 0],\n            [-1.23369521384078, 48.63865605646257, 0],\n            [-1.233730234280528, 48.63865552152436, 0],\n            [-1.233867012589347, 48.63868777819569, 0],\n            [-1.233870171251938, 48.63868851728932, 0],\n            [-1.233912530863996, 48.638697330996, 0],\n            [-1.233955669569704, 48.63870428969973, 0],\n            [-1.233999402637911, 48.63870936360155, 0],\n            [-1.234043542792283, 48.63871253097359, 0],\n            [-1.234087901012819, 48.63871377825224, 0],\n            [-1.234132287345828, 48.63871310009647, 0],\n            [-1.234176511717073, 48.6387104994102, 0],\n            [-1.234220384745923, 48.63870598733037, 0],\n            [-1.234263718556603, 48.6386995831788, 0],\n            [-1.234306327582351, 48.63869131437988, 0],\n            [-1.234348029360721, 48.63868121634267, 0],\n            [-1.234388645314122, 48.63866933230967, 0],\n            [-1.2344280015156, 48.63865571317136, 0],\n            [-1.234465929432866, 48.63864041724833, 0],\n            [-1.234502266650421, 48.63862351004157, 0],\n            [-1.234536857564934, 48.63860506395196, 0],\n            [-1.234569554051912, 48.63858515797009, 0],\n            [-1.234600216099233, 48.63856387733812, 0],\n            [-1.234628712407786, 48.63854131318473, 0],\n            [-1.23465492095286, 48.63851756213456, 0],\n            [-1.234678729506928, 48.63849272589507, 0],\n            [-1.234700036120282, 48.63846691082018, 0],\n            [-1.234718749557482, 48.63844022745554, 0],\n            [-1.234734789687926, 48.63841279006466, 0],\n            [-1.234748087829194, 48.63838471613984, 0],\n            [-1.234758587040754, 48.63835612589878, 0],\n            [-1.23476374750441, 48.63833788878429, 0],\n            [-1.234781055874867, 48.63826889148497, 0],\n            [-1.234825333350333, 48.63824925925541, 0],\n            [-1.234855874891729, 48.63823489313523, 0],\n            [-1.234890465409499, 48.63821644693839, 0],\n            [-1.234923161503931, 48.63819654085516, 0],\n            [-1.234953823164862, 48.63817526012793, 0],\n            [-1.234982319094817, 48.63815269588599, 0],\n            [-1.235008527270447, 48.63812894475436, 0],\n            [-1.235032335466062, 48.63810410844068, 0],\n            [-1.235053641733392, 48.63807829329943, 0],\n            [-1.235072354838538, 48.63805160987634, 0],\n            [-1.235088394652275, 48.63802417243531, 0],\n            [-1.235101692493523, 48.63799609846871, 0],\n            [-1.235112191423049, 48.6379675081945, 0],\n            [-1.235119846487232, 48.63793852404157, 0],\n            [-1.235124624910868, 48.63790927012492, 0],\n            [-1.235126506236843, 48.63787987171477, 0],\n            [-1.235125482414197, 48.63785045469971, 0],\n            [-1.235121557832097, 48.6378211450478, 0],\n            [-1.235114749301318, 48.6377920682673, 0],\n            [-1.235105085981734, 48.63776334886888, 0],\n            [-1.23509260925794, 48.63773510983269, 0],\n            [-1.235077372561255, 48.63770747208169, 0],\n            [-1.235059441141686, 48.63768055396387, 0],\n            [-1.235038891787588, 48.63765447074565, 0],\n            [-1.235015812497349, 48.63762933411778, 0],\n            [-1.234990302102452, 48.63760525171783, 0],\n            [-1.234962469843994, 48.63758232666865, 0],\n            [-1.234932434905198, 48.63756065713729, 0],\n            [-1.23490102423879, 48.63754077788052, 0],\n            [-1.234893224016722, 48.63752312309561, 0],\n            [-1.235777252828516, 48.63768453375402, 0],\n            [-1.235789429324028, 48.63769612902739, 0],\n            [-1.235774503930147, 48.63770408861878, 0],\n            [-1.23574180849247, 48.63772399494572, 0],\n            [-1.235711147439813, 48.63774527588441, 0],\n            [-1.235682652067571, 48.63776784030826, 0],\n            [-1.235656444398197, 48.63779159159476, 0],\n            [-1.235632636658517, 48.63781642803858, 0],\n            [-1.23561133079914, 48.637842243288, 0],\n            [-1.235592618057704, 48.63786892679948, 0],\n            [-1.235576578568407, 48.63789636431146, 0],\n            [-1.235572115254369, 48.63790509566674, 0],\n            [-1.235567023585023, 48.63791540271212, 0],\n            [-1.235563809798785, 48.63791587771276, 0],\n            [-1.235521201636367, 48.63792414697983, 0],\n            [-1.235479500720946, 48.63793424544469, 0],\n            [-1.235438885618625, 48.63794612986502, 0],\n            [-1.235399530245844, 48.63795974935124, 0],\n            [-1.23536160312548, 48.63797504558408, 0],\n            [-1.235325266665019, 48.63799195306417, 0],\n            [-1.235290676461098, 48.63801039939256, 0],\n            [-1.235257980632913, 48.63803030558105, 0],\n            [-1.23522731918897, 48.6380515863898, 0],\n            [-1.23519882342626, 48.63807415069284, 0],\n            [-1.235172615368916, 48.63809790186811, 0],\n            [-1.235148807245483, 48.63812273821089, 0],\n            [-1.235127501008149, 48.63814855336982, 0],\n            [-1.235108787896189, 48.63817523680176, 0],\n            [-1.235092748045421, 48.63820267424544, 0],\n            [-1.235079450144601, 48.63823074821055, 0],\n            [-1.235068951141534, 48.63825933848126, 0],\n            [-1.235061295999194, 48.63828832263018, 0],\n            [-1.235056517502755, 48.63831757654347, 0],\n            [-1.235054636119506, 48.63834697495166, 0],\n            [-1.235055659910838, 48.6383763919664, 0],\n            [-1.235088832923035, 48.63877008171804, 0],\n            [-1.234987649387345, 48.63912029141054, 0],\n            [-1.2348654936987, 48.63930886523333, 0],\n            [-1.234864651866416, 48.63931017045802, 0],\n            [-1.234848611520685, 48.63933760786549, 0],\n            [-1.234835313183673, 48.6393656818003, 0],\n            [-1.234824813804607, 48.63939427204791, 0],\n            [-1.234819609602997, 48.63941268338373, 0],\n            [-1.234707751228794, 48.63985966338986, 0],\n            [-1.234694910960805, 48.63988357917633, 0],\n            [-1.234693796987492, 48.63988567033168, 0],\n            [-1.234680498419145, 48.63991374424752, 0],\n            [-1.23466999883826, 48.63994233447851, 0],\n            [-1.234662343209929, 48.63997131859756, 0],\n            [-1.23466201531238, 48.63997287390366, 0],\n            [-1.234576005964896, 48.64038609998833, 0],\n            [-1.234466708700857, 48.64082282886767, 0],\n            [-1.234229459115739, 48.64110912139203, 0],\n            [-1.23392774834699, 48.64112028485159, 0],\n            [-1.23388352184463, 48.64112288544141, 0],\n            [-1.23383964667789, 48.64112739739151, 0],\n            [-1.233796310722106, 48.64113380138161, 0],\n            [-1.23375369954394, 48.64114206998949, 0],\n            [-1.233711995606477, 48.64115216780878, 0],\n            [-1.233671377488887, 48.64116405159989, 0],\n            [-1.233632019120383, 48.64117767047604, 0],\n            [-1.233594089036789, 48.64119296612044, 0],\n            [-1.233557749658223, 48.64120987303626, 0],\n            [-1.23352315659381, 48.64122831882704, 0],\n            [-1.233490457975017, 48.64124822450686, 0],\n            [-1.23345979382228, 48.641269504838, 0],\n            [-1.233431295444203, 48.64129206869662, 0],\n            [-1.233405084876147, 48.64131581946253, 0],\n            [-1.233385023809879, 48.64133674450386, 0],\n            [-1.233291810694193, 48.64135632585925, 0],\n            [-1.233284968022084, 48.64135778978863, 0],\n            [-1.233243263811739, 48.64136788743706, 0],\n            [-1.233202645409257, 48.64137977106183, 0],\n            [-1.233163286745109, 48.64139338977676, 0],\n            [-1.233125356356359, 48.64140868526575, 0],\n            [-1.233089016664484, 48.6414255920326, 0],\n            [-1.233054423279867, 48.64144403768157, 0],\n            [-1.233021724335435, 48.64146394322727, 0],\n            [-1.232991059852941, 48.64148522343267, 0],\n            [-1.23296256114245, 48.64150778717438, 0],\n            [-1.232939843301601, 48.64152837264391, 0],\n            [-1.232905770093087, 48.6415383412192, 0],\n            [-1.232866411224542, 48.64155195983199, 0],\n            [-1.23282848062598, 48.64156725522243, 0],\n            [-1.232792140719796, 48.64158416189493, 0],\n            [-1.232757547117294, 48.64160260745409, 0],\n            [-1.232724847952338, 48.64162251291485, 0],\n            [-1.232694183247642, 48.64164379304055, 0],\n            [-1.232665684314189, 48.64166635670812, 0],\n            [-1.232639473189658, 48.6416901072983, 0],\n            [-1.232615662115786, 48.64171494310876, 0],\n            [-1.232594353057348, 48.64174075779046, 0],\n            [-1.232575637265831, 48.6417674408023, 0],\n            [-1.232559594888185, 48.64179487788483, 0],\n            [-1.232546294624335, 48.64182295154938, 0],\n            [-1.232535793432159, 48.64185154158116, 0],\n            [-1.232528136283784, 48.64188052555398, 0],\n            [-1.232523355973136, 48.64190977935476, 0],\n            [-1.232521472975319, 48.64193917771443, 0],\n            [-1.232522495358577, 48.64196859474496, 0],\n            [-1.232526418750048, 48.64199790447796, 0],\n            [-1.232533226354069, 48.64202698140439, 0],\n            [-1.232542889024413, 48.64205570101184, 0],\n            [-1.232555365388515, 48.64208394031778, 0],\n            [-1.232570602025187, 48.64211157839644, 0],\n            [-1.23257150240266, 48.64211305185468, 0],\n            [-1.232639483296074, 48.64222373880764, 0],\n            [-1.232568092457194, 48.64242020036566, 0],\n            [-1.232563586760158, 48.64243347944651, 0],\n            [-1.232555929539321, 48.64246246342007, 0],\n            [-1.232551149189565, 48.64249171722086, 0],\n            [-1.232549266186191, 48.64252111557989, 0],\n            [-1.232549309183917, 48.64252235271876, 0],\n            [-1.231677373685294, 48.64255459887654, 0],\n            [-1.231661252395271, 48.64254439613962, 0],\n            [-1.231627204649808, 48.6425255092853, 0],\n            [-1.231591365845823, 48.64250813857566, 0],\n            [-1.231553889448998, 48.64249235839326, 0],\n            [-1.231514935936762, 48.64247823630983, 0],\n            [-1.231474672111328, 48.64246583279674, 0],\n            [-1.2314332703853, 48.64245520096648, 0],\n            [-1.231390908043546, 48.64244638634501, 0],\n            [-1.231347766483901, 48.64243942667709, 0],\n            [-1.231333824499354, 48.64243759616586, 0],\n            [-1.22859681853936, 48.64209790886746, 0],\n            [-1.228567024858298, 48.64209466375384, 0],\n            [-1.228540064067538, 48.64209249785306, 0],\n            [-1.227695709011445, 48.64203600078527, 0],\n            [-1.225862438666554, 48.6417610454417, 0],\n            [-1.225851536629021, 48.64175947258002, 0],\n            [-1.225807801731398, 48.64175439556845, 0],\n            [-1.225763659426966, 48.64175122502342, 0],\n            [-1.225729088158458, 48.64175008482845, 0],\n            [-1.22433330294379, 48.64172767199689, 0],\n            [-1.224279425338433, 48.64160667789012, 0],\n            [-1.224273268502172, 48.64159358970842, 0],\n            [-1.224258036580788, 48.64156595052543, 0],\n            [-1.224240109574848, 48.64153903072093, 0],\n            [-1.224219564254243, 48.64151294556842, 0],\n            [-1.224196488599976, 48.64148780676713, 0],\n            [-1.224170981427841, 48.64146372196382, 0],\n            [-1.224143151965187, 48.64144079429174, 0],\n            [-1.224113119383186, 48.64141912192908, 0],\n            [-1.224081012286464, 48.64139879767839, 0],\n            [-1.224046968162125, 48.64137990856972, 0],\n            [-1.224011132791654, 48.64136253548738, 0],\n            [-1.223973659625963, 48.64134675282405, 0],\n            [-1.223934709128676, 48.64133262816197, 0],\n            [-1.223894448089113, 48.64132022198372, 0],\n            [-1.22385304890799, 48.64130958741319, 0],\n            [-1.223811469111065, 48.64130091432517, 0],\n            [-1.222156479578067, 48.64099404131129, 0],\n            [-1.222155699335736, 48.64099389696272, 0],\n            [-1.222112560299373, 48.6409869338161, 0],\n            [-1.222068826450671, 48.64098185537683, 0],\n            [-1.222043396120989, 48.64097979153793, 0],\n            [-1.220371849883664, 48.64086530493125, 0],\n            [-1.2203531389018, 48.64086419651117, 0],\n            [-1.220308779126507, 48.64086294391383, 0],\n            [-1.220264390711243, 48.64086361671297, 0],\n            [-1.220220163728947, 48.64086621202758, 0],\n            [-1.220176287561428, 48.64087071874441, 0],\n            [-1.220132950088237, 48.64087711756557, 0],\n            [-1.220090336882573, 48.64088538109091, 0],\n            [-1.220048630416213, 48.64089547393587, 0],\n            [-1.220008009279119, 48.64090735288225, 0],\n            [-1.219968647413472, 48.64092096706385, 0],\n            [-1.219930713370045, 48.64093625818408, 0],\n            [-1.219894369585883, 48.64095316076542, 0],\n            [-1.219859771689036, 48.64097160243015, 0],\n            [-1.219827067831654, 48.64099150420972, 0],\n            [-1.219796398056554, 48.64101278088339, 0],\n            [-1.219767893696462, 48.64103534134281, 0],\n            [-1.219741676812298, 48.64105908898246, 0],\n            [-1.21971785967042, 48.64108392211261, 0],\n            [-1.219705550591363, 48.64109833442783, 0],\n            [-1.219534554899637, 48.64130743833926, 0],\n            [-1.219182548682463, 48.6414422238142, 0],\n            [-1.219174493145425, 48.64144531110902, 0],\n            [-1.219142569813168, 48.64145832719539, 0],\n            [-1.219106225387099, 48.64147522952608, 0],\n            [-1.21907162684221, 48.64149367095211, 0],\n            [-1.219038922333768, 48.64151357250596, 0],\n            [-1.21900825190701, 48.64153484896788, 0],\n            [-1.218979746897697, 48.64155740923049, 0],\n            [-1.218953529369569, 48.64158115668884, 0],\n            [-1.218929711591499, 48.64160598965437, 0],\n            [-1.218908395557121, 48.64163180178997, 0],\n            [-1.218889672547698, 48.64165848256555, 0],\n            [-1.218873622741334, 48.64168591773112, 0],\n            [-1.21886031486957, 48.64171398980643, 0],\n            [-1.218849805922757, 48.64174257858342, 0],\n            [-1.218842140906555, 48.64177156164117, 0],\n            [-1.218837352648345, 48.64180081487053, 0],\n            [-1.218837083941189, 48.64180326348172, 0],\n            [-1.218825468143625, 48.64191326313439, 0],\n            [-1.218674591238336, 48.64280767988122, 0],\n            [-1.218672314975178, 48.64282379591029, 0],\n            [-1.218670423848862, 48.64285319404242, 0],\n            [-1.218671438151544, 48.64288261119429, 0],\n            [-1.218675353544634, 48.64291192139943, 0],\n            [-1.218682153266719, 48.64294099914676, 0],\n            [-1.218691808205328, 48.64296971992036, 0],\n            [-1.218704277021008, 48.64299796073269, 0],\n            [-1.218719506324846, 48.64302560065156, 0],\n            [-1.218737430906325, 48.6430525213173, 0],\n            [-1.218757974013101, 48.64307860745028, 0],\n            [-1.218781047679498, 48.6431037473444, 0],\n            [-1.218806553102692, 48.6431278333452, 0],\n            [-1.218834381066385, 48.64315076231124, 0],\n            [-1.218864412407918, 48.6431724360554, 0],\n            [-1.2188965185292, 48.64319276176568, 0],\n            [-1.218930561946285, 48.64321165240281, 0],\n            [-1.218966396879346, 48.64322902707227, 0],\n            [-1.219003869876252, 48.64324481137162, 0],\n            [-1.219042820469523, 48.64325893770852, 0],\n            [-1.219076730499886, 48.64326952787894, 0],\n            [-1.219237866560261, 48.6433162909705, 0],\n            [-1.219236098312073, 48.64334459501417, 0],\n            [-1.219237112955423, 48.64337401216013, 0],\n            [-1.219241028716318, 48.64340332234501, 0],\n            [-1.219247828831789, 48.64343240005776, 0],\n            [-1.219257484187664, 48.64346112078276, 0],\n            [-1.219269953442672, 48.64348936153262, 0],\n            [-1.219285183206063, 48.64351700137536, 0],\n            [-1.219303108265299, 48.64354392195173, 0],\n            [-1.2193236518661, 48.64357000798242, 0],\n            [-1.219346726040531, 48.6435951477618, 0],\n            [-1.219372231983689, 48.6436192336359, 0],\n            [-1.219400060477018, 48.64364216246373, 0],\n            [-1.219430092355622, 48.64366383605889, 0],\n            [-1.21946219901901, 48.64368416160997, 0],\n            [-1.21949624298106, 48.6437030520784, 0],\n            [-1.219532078459544, 48.64372042657033, 0],\n            [-1.219569551999915, 48.64373621068414, 0],\n            [-1.219608503132514, 48.64375033682823, 0],\n            [-1.219642420355624, 48.64376092878751, 0],\n            [-1.219658843256384, 48.64376569458698, 0],\n            [-1.219503773319453, 48.643802976356, 0],\n            [-1.219481718636852, 48.64380856835732, 0],\n            [-1.219441095013567, 48.64382044710038, 0],\n            [-1.219401730715366, 48.64383406108459, 0],\n            [-1.219363794303014, 48.64384935201413, 0],\n            [-1.219327448223908, 48.64386625441241, 0],\n            [-1.21929284811571, 48.64388469590233, 0],\n            [-1.219260142140421, 48.64390459751618, 0],\n            [-1.219229470349494, 48.643925874034, 0],\n            [-1.219200964084586, 48.64394843434809, 0],\n            [-1.219174745414851, 48.64397218185334, 0],\n            [-1.219150926613959, 48.64399701486099, 0],\n            [-1.219147542677288, 48.64400085509676, 0],\n            [-1.218860669215962, 48.64433013732353, 0],\n            [-1.218842735976069, 48.64435210921512, 0],\n            [-1.218824011919404, 48.6443787899752, 0],\n            [-1.218807961209363, 48.64440622512671, 0],\n            [-1.218794652581243, 48.64443429718934, 0],\n            [-1.218784143028955, 48.6444628859551, 0],\n            [-1.218776477560335, 48.64449186900326, 0],\n            [-1.218771689005103, 48.64452112222467, 0],\n            [-1.218769797873311, 48.64455052035276, 0],\n            [-1.218770812268299, 48.64457993750043, 0],\n            [-1.218774727851417, 48.64460924769895, 0],\n            [-1.218781527860353, 48.64463832543704, 0],\n            [-1.218791183181456, 48.64466704619905, 0],\n            [-1.218803652473615, 48.64469528699739, 0],\n            [-1.218818882345878, 48.64472292689992, 0],\n            [-1.218836807585271, 48.64474984754707, 0],\n            [-1.218857351436731, 48.64477593365934, 0],\n            [-1.218880425931246, 48.64480107353064, 0],\n            [-1.218905932262593, 48.64482515950662, 0],\n            [-1.218933761210479, 48.64484808844584, 0],\n            [-1.218963793608168, 48.64486976216155, 0],\n            [-1.218995900852711, 48.64489008784172, 0],\n            [-1.219029945455727, 48.64490897844712, 0],\n            [-1.219034657059614, 48.64491140151459, 0],\n            [-1.219746211486155, 48.64527402358199, 0],\n            [-1.219633918738574, 48.6457336972706, 0],\n            [-1.219631910585131, 48.64574246485769, 0],\n            [-1.219627122408216, 48.64577171811239, 0],\n            [-1.219625231729402, 48.64580111625219, 0],\n            [-1.21962624664985, 48.64583053338988, 0],\n            [-1.219630162828671, 48.64585984355665, 0],\n            [-1.219636963501156, 48.64588892124159, 0],\n            [-1.219646619550676, 48.6459176419291, 0],\n            [-1.219659089633003, 48.64594588263197, 0],\n            [-1.219674320353927, 48.6459735224185, 0],\n            [-1.219692246496718, 48.64600044292952, 0],\n            [-1.219712791302474, 48.6460265288862, 0],\n            [-1.219735866798148, 48.64605166858308, 0],\n            [-1.219761374173141, 48.64607575436661, 0],\n            [-1.219789204202761, 48.64609868309616, 0],\n            [-1.219819237715618, 48.64612035658579, 0],\n            [-1.219851346103986, 48.6461406820245, 0],\n            [-1.219885391874589, 48.64615957237414, 0],\n            [-1.219920642336738, 48.64617668099614, 0],\n            [-1.219867410108972, 48.64621657818709, 0],\n            [-1.219841533139485, 48.6462371788115, 0],\n            [-1.219815313579242, 48.64626092645975, 0],\n            [-1.219791494010885, 48.64628575959681, 0],\n            [-1.219770176435739, 48.64631157188476, 0],\n            [-1.219751452141584, 48.64633825279292, 0],\n            [-1.219735401312199, 48.64636568807077, 0],\n            [-1.2197220926833, 48.64639376023744, 0],\n            [-1.219711583248617, 48.64642234908461, 0],\n            [-1.219703918015889, 48.64645133219108, 0],\n            [-1.219699129813354, 48.64648058544739, 0],\n            [-1.219697239149988, 48.64650998358695, 0],\n            [-1.219698254126851, 48.64653940072263, 0],\n            [-1.219702170402834, 48.64656871088557, 0],\n            [-1.21970897121273, 48.64659778856483, 0],\n            [-1.219718627439448, 48.64662650924491, 0],\n            [-1.219731097737942, 48.64665474993861, 0],\n            [-1.219746328713023, 48.64668238971424, 0],\n            [-1.21976425514696, 48.64670931021279, 0],\n            [-1.219784800279575, 48.64673539615528, 0],\n            [-1.219807876136381, 48.64676053583649, 0],\n            [-1.219833383905298, 48.64678462160283, 0],\n            [-1.219861214359899, 48.6468075503138, 0],\n            [-1.219891248326892, 48.64682922378351, 0],\n            [-1.219923357196935, 48.64684954920109, 0],\n            [-1.219957403474332, 48.64686843952843, 0],\n            [-1.219993241366986, 48.64688581387248, 0],\n            [-1.220030717410074, 48.6469015978321, 0],\n            [-1.22006967112313, 48.64691572381644, 0],\n            [-1.220109935697704, 48.64692813133437, 0],\n            [-1.220151338711282, 48.64693876725376, 0],\n            [-1.220193702866226, 48.64694758602883, 0],\n            [-1.220236846748573, 48.64695454989531, 0],\n            [-1.220280585604849, 48.64695962903198, 0],\n            [-1.220324732133942, 48.64696280168876, 0],\n            [-1.220338187159535, 48.64696318157511, 0],\n            [-1.220338499776288, 48.64697223874066, 0],\n            [-1.220342416459006, 48.64700154888085, 0],\n            [-1.220349217697538, 48.64703062652127, 0],\n            [-1.220358874372838, 48.64705934714651, 0],\n            [-1.220371345138058, 48.64708758776975, 0],\n            [-1.220386576595993, 48.64711522745944, 0],\n            [-1.220391296386731, 48.64712231504741, 0],\n            [-1.220391808062293, 48.64713713886222, 0],\n            [-1.220395724788916, 48.64716644900022, 0],\n            [-1.220402526080526, 48.64719552663719, 0],\n            [-1.220412182817976, 48.6472242472576, 0],\n            [-1.220424653654, 48.64725248787472, 0],\n            [-1.220439885191131, 48.64728012755703, 0],\n            [-1.220457812209241, 48.6473070479459, 0],\n            [-1.220478357945614, 48.64733313376305, 0],\n            [-1.220501434423262, 48.6473582733035, 0],\n            [-1.220526942827311, 48.64738235891448, 0],\n            [-1.220554773928735, 48.64740528745599, 0],\n            [-1.220584808551544, 48.64742696074303, 0],\n            [-1.220616918083237, 48.64744728596542, 0],\n            [-1.220650965025603, 48.64746617608589, 0],\n            [-1.220686803583784, 48.6474835502123, 0],\n            [-1.220724280289682, 48.64749933394442, 0],\n            [-1.220763234660391, 48.64751345969231, 0],\n            [-1.220803499884446, 48.64752586696609, 0],\n            [-1.220844903536753, 48.64753650263435, 0],\n            [-1.220887268316577, 48.6475453211526, 0],\n            [-1.220930412807597, 48.64755228475764, 0],\n            [-1.220963727391708, 48.64755633009638, 0],\n            [-1.221132773181175, 48.64757397989769, 0],\n            [-1.221765400803443, 48.64789634327208, 0],\n            [-1.222037959763784, 48.64812043560353, 0],\n            [-1.222024001067545, 48.6481245172856, 0],\n            [-1.221984634100179, 48.64813813215348, 0],\n            [-1.221946695227076, 48.64815342393388, 0],\n            [-1.221910346906023, 48.64817032714679, 0],\n            [-1.221875744784375, 48.6481887694115, 0],\n            [-1.221843037032508, 48.64820867175711, 0],\n            [-1.221812363709827, 48.64822994896035, 0],\n            [-1.221783856164243, 48.64825250991058, 0],\n            [-1.221757636470406, 48.6482762580002, 0],\n            [-1.221733816906645, 48.64830109153762, 0],\n            [-1.221712499474086, 48.64832690418352, 0],\n            [-1.221693775460127, 48.64835358540552, 0],\n            [-1.221677725046908, 48.64838102095183, 0],\n            [-1.221664416968769, 48.64840909334036, 0],\n            [-1.22165390821704, 48.64843768236175, 0],\n            [-1.221646243796182, 48.64846666559421, 0],\n            [-1.221641456531357, 48.64849591892777, 0],\n            [-1.221639566927384, 48.64852531709538, 0],\n            [-1.221640583080785, 48.6485547342098, 0],\n            [-1.221644500645398, 48.6485840443024, 0],\n            [-1.221651302850537, 48.6486131218624, 0],\n            [-1.221660960573099, 48.64864184237484, 0],\n            [-1.221673432461761, 48.64867008285329, 0],\n            [-1.221676002610075, 48.64867516450182, 0],\n            [-1.221814966443455, 48.64894457989058, 0],\n            [-1.221827629077696, 48.64896713773993, 0],\n            [-1.221845557439711, 48.64899405790859, 0],\n            [-1.221866104584797, 48.64902014347389, 0],\n            [-1.221889182529852, 48.64904528273193, 0],\n            [-1.221914692453905, 48.64906936803116, 0],\n            [-1.221942525121256, 48.64909229623298, 0],\n            [-1.221972561349241, 48.64911396915376, 0],\n            [-1.222004672518524, 48.64913429398486, 0],\n            [-1.222038721123899, 48.64915318369075, 0],\n            [-1.222074561363316, 48.64917055738106, 0],\n            [-1.22211203976152, 48.64918634065743, 0],\n            [-1.222150995828353, 48.64920046593186, 0],\n            [-1.222191262745094, 48.64921287271642, 0],\n            [-1.222232668079355, 48.64922350788202, 0],\n            [-1.222275034523248, 48.64923232588601, 0],\n            [-1.222318180653337, 48.64923928896764, 0],\n            [-1.222361921706356, 48.64924436730895, 0],\n            [-1.22240607037184, 48.64924753916317, 0],\n            [-1.222450437593436, 48.64924879094757, 0],\n            [-1.222494833378784, 48.64924811730175, 0],\n            [-1.22253906761326, 48.64924552111038, 0],\n            [-1.222582950873965, 48.64924101349105, 0],\n            [-1.2226262952413, 48.64923461374656, 0],\n            [-1.22266891510332, 48.6492263492824, 0],\n            [-1.222710627951156, 48.64921625548904, 0],\n            [-1.222751255159753, 48.6492043755909, 0],\n            [-1.222790622754078, 48.64919076046062, 0],\n            [-1.22282856215302, 48.64917546840174, 0],\n            [-1.222864910891819, 48.6491585648987, 0],\n            [-1.222899513317883, 48.64914012233642, 0],\n            [-1.222919024530789, 48.64912824984716, 0],\n            [-1.222917388775957, 48.64915370842535, 0],\n            [-1.22291840568943, 48.64918312552723, 0],\n            [-1.222922324047548, 48.64921243557485, 0],\n            [-1.222929127076289, 48.64924151305776, 0],\n            [-1.22293878564909, 48.64927023346125, 0],\n            [-1.222951258410834, 48.6492984737994, 0],\n            [-1.222966491955779, 48.64932611314197, 0],\n            [-1.222984421055204, 48.64935303313176, 0],\n            [-1.22300496893752, 48.64937911849216, 0],\n            [-1.223028047616448, 48.64940425752026, 0],\n            [-1.223053558267819, 48.6494283425653, 0],\n            [-1.223081391652896, 48.64945127048986, 0],\n            [-1.223111428585917, 48.64947294311156, 0],\n            [-1.223143540444549, 48.64949326762298, 0],\n            [-1.223177589720568, 48.64951215698994, 0],\n            [-1.223213430609085, 48.64952953032356, 0],\n            [-1.223231917752481, 48.64953760076002, 0],\n            [-1.22358313328224, 48.64968553399746, 0],\n            [-1.223752620956196, 48.64987987801357, 0],\n            [-1.223772269761858, 48.64990103664514, 0],\n            [-1.223797781021523, 48.64992512152367, 0],\n            [-1.223825615020708, 48.64994804926673, 0],\n            [-1.223855652570935, 48.64996972169251, 0],\n            [-1.223887765047473, 48.64999004599467, 0],\n            [-1.22392181493924, 48.65000893513988, 0],\n            [-1.223954991751017, 48.65002501661278, 0],\n            [-1.223973538629171, 48.65004262445094, 0],\n            [-1.223973018669795, 48.65013084815308, 0],\n            [-1.223974063695461, 48.65015761041425, 0],\n            [-1.223977724594845, 48.6501854958059, 0],\n            [-1.224315140322683, 48.65207291553137, 0],\n            [-1.224351709551848, 48.65250789735412, 0],\n            [-1.224389454791262, 48.65295685960849, 0],\n            [-1.224393374300579, 48.65298616959825, 0],\n            [-1.22440017869017, 48.65301524698634, 0],\n            [-1.22440983882756, 48.65304396725843, 0],\n            [-1.224422313351035, 48.65307220742912, 0],\n            [-1.224437548847239, 48.65309984656896, 0],\n            [-1.224455480079139, 48.65312676632159, 0],\n            [-1.224476030266011, 48.65315285141144, 0],\n            [-1.224499111411685, 48.6531779901367, 0],\n            [-1.224524624681462, 48.653202074848, 0],\n            [-1.224552460825352, 48.65322500240926, 0],\n            [-1.224582500645823, 48.65324667463967, 0],\n            [-1.224614615508093, 48.6532669987335, 0],\n            [-1.224648667891186, 48.65328588765842, 0],\n            [-1.224684511976846, 48.65330326052736, 0],\n            [-1.224692391025599, 48.65330657810717, 0],\n            [-1.224666967038044, 48.65359876157939, 0],\n            [-1.224365800196838, 48.65394600975484, 0],\n            [-1.224348528823887, 48.65396721991007, 0],\n            [-1.224329804108568, 48.65399390155261, 0],\n            [-1.224313753333339, 48.6540213374576, 0],\n            [-1.224300445234097, 48.65404941014145, 0],\n            [-1.224289936802232, 48.65407799939362, 0],\n            [-1.224282273040867, 48.65410698279122, 0],\n            [-1.224277486772365, 48.65413623622362, 0],\n            [-1.224275598497209, 48.65416563442334, 0],\n            [-1.224276616306266, 48.65419505150307, 0],\n            [-1.224280535846298, 48.65422436149418, 0],\n            [-1.224287340338188, 48.65425343888647, 0],\n            [-1.22429700064894, 48.65428215916559, 0],\n            [-1.224309475416139, 48.65431039934619, 0],\n            [-1.224324711225413, 48.65433803849867, 0],\n            [-1.224342642838328, 48.65436495826665, 0],\n            [-1.224344103655275, 48.65436695771593, 0],\n            [-1.225079885293092, 48.65536770350997, 0],\n            [-1.225098975842693, 48.65539178904421, 0],\n            [-1.225122058327057, 48.6554169276401, 0],\n            [-1.225147573030847, 48.65544101220895, 0],\n            [-1.225175410697859, 48.65546393961529, 0],\n            [-1.225205452123965, 48.65548561167899, 0],\n            [-1.22523756866759, 48.65550593559513, 0],\n            [-1.225271622800443, 48.65552482433197, 0],\n            [-1.225307468696915, 48.65554219700334, 0],\n            [-1.22534495285745, 48.65555797921524, 0],\n            [-1.225383914767229, 48.65557210338419, 0],\n            [-1.225424187582551, 48.65558450902698, 0],\n            [-1.22546559884575, 48.65559514301963, 0],\n            [-1.225507971223616, 48.65560395982432, 0],\n            [-1.225551123266975, 48.65561092168532, 0],\n            [-1.225558168593217, 48.65561187196662, 0],\n            [-1.226339807124617, 48.65571444370936, 0],\n            [-1.225689997835899, 48.65603926524107, 0],\n            [-1.225656290357771, 48.65605726019668, 0],\n            [-1.22562357898502, 48.65607716361071, 0],\n            [-1.225592902462918, 48.65609844181459, 0],\n            [-1.225564392153364, 48.65612100369339, 0],\n            [-1.225538170142762, 48.65614475263529, 0],\n            [-1.225514348719208, 48.65616958694531, 0],\n            [-1.225493029891944, 48.65619540028064, 0],\n            [-1.225474304954124, 48.65622208210608, 0],\n            [-1.225458254092244, 48.65624951816706, 0],\n            [-1.225444946042222, 48.65627759097954, 0],\n            [-1.22543443779529, 48.6563061803323, 0],\n            [-1.225426774353968, 48.65633516380192, 0],\n            [-1.225421988539184, 48.6563644172776, 0],\n            [-1.225420100849219, 48.65639381549164, 0],\n            [-1.225421119372905, 48.65642323255661, 0],\n            [-1.225425039753445, 48.65645254250404, 0],\n            [-1.225431845208564, 48.65648161982379, 0],\n            [-1.225441506600731, 48.65651034000199, 0],\n            [-1.225445791288555, 48.65652083732612, 0],\n            [-1.225510974563653, 48.65667319781134, 0],\n            [-1.22511873899243, 48.65687485314606, 0],\n            [-1.225092350076238, 48.65688913744124, 0],\n            [-1.225059637939299, 48.65690904069313, 0],\n            [-1.225028960671213, 48.65693031874481, 0],\n            [-1.225000449637119, 48.65695288048197, 0],\n            [-1.224974226926516, 48.65697662929341, 0],\n            [-1.224950404830481, 48.65700146348479, 0],\n            [-1.224929085361131, 48.65702727671371, 0],\n            [-1.224910359814457, 48.65705395844541, 0],\n            [-1.224894308379456, 48.65708139442582, 0],\n            [-1.224880999794522, 48.65710946717115, 0],\n            [-1.224870491053225, 48.65713805647052, 0],\n            [-1.224862827160145, 48.65716703990077, 0],\n            [-1.224858040938186, 48.65719629335115, 0],\n            [-1.22485615288739, 48.65722569155421, 0],\n            [-1.224857171098046, 48.65725510862244, 0],\n            [-1.224861091214797, 48.65728441858746, 0],\n            [-1.224867896456408, 48.65731349593906, 0],\n            [-1.224877557686364, 48.65734221616314, 0],\n            [-1.224881841743373, 48.65735271214291, 0],\n            [-1.22492488726514, 48.65745332996726, 0],\n            [-1.224424988995561, 48.65761465441502, 0],\n            [-1.223971594246316, 48.65770982930408, 0],\n            [-1.222942660236421, 48.65785651252033, 0],\n            [-1.222916218786971, 48.65786065033549, 0],\n            [-1.222873591648712, 48.65786891488678, 0],\n            [-1.222831871657311, 48.65787900873334, 0],\n            [-1.222812604840848, 48.65788437939118, 0],\n            [-1.22145928303423, 48.65827796676871, 0],\n            [-1.221437915311219, 48.65828447577796, 0],\n            [-1.221398540232601, 48.65829809043488, 0],\n            [-1.221387512561505, 48.65830253431231, 0],\n            [-1.221182738841384, 48.65810879355911, 0],\n            [-1.221169272906697, 48.65809650034478, 0],\n            [-1.22114143560889, 48.65807357196942, 0],\n            [-1.221111394388239, 48.65805189884425, 0],\n            [-1.221079277886281, 48.65803157377519, 0],\n            [-1.221045223630506, 48.65801268379576, 0],\n            [-1.221009377445705, 48.65799530979404, 0],\n            [-1.220971892829175, 48.65797952616656, 0],\n            [-1.220932930293517, 48.6579654004998, 0],\n            [-1.220892656679573, 48.65795299328056, 0],\n            [-1.220851244441954, 48.65794235763706, 0],\n            [-1.22080887091039, 48.65793353911179, 0],\n            [-1.220765717530761, 48.65792657546605, 0],\n            [-1.220755705780112, 48.65792524007038, 0],\n            [-1.219353830506127, 48.65774550430051, 0],\n            [-1.219345511075483, 48.65764644031434, 0],\n            [-1.219341594144763, 48.65761713016147, 0],\n            [-1.21933479205719, 48.65758805248237, 0],\n            [-1.219325133945119, 48.65755933179158, 0],\n            [-1.219312661170826, 48.65753109107477, 0],\n            [-1.219297427148662, 48.65750345126206, 0],\n            [-1.219279497117223, 48.65747653071047, 0],\n            [-1.219258947858948, 48.65745044469652, 0],\n            [-1.219235867371786, 48.65742530492323, 0],\n            [-1.219210354492397, 48.6574012190414, 0],\n            [-1.219182518472488, 48.65737829018907, 0],\n            [-1.21915247851123, 48.65735661654919, 0],\n            [-1.219120363244943, 48.6573362909302, 0],\n            [-1.219086310195823, 48.65731740036769, 0],\n            [-1.219050465183165, 48.65730002575238, 0],\n            [-1.219012981699588, 48.65728424148333, 0],\n            [-1.218974020252739, 48.65727011514979, 0],\n            [-1.218933747678843, 48.65725770724141, 0],\n            [-1.21891203324705, 48.65725212995909, 0],\n            [-1.21890125817034, 48.65723845144605, 0],\n            [-1.218878177959277, 48.65721331160028, 0],\n            [-1.218852665358705, 48.6571892256385, 0],\n            [-1.218824829619192, 48.65716629669891, 0],\n            [-1.218794789938729, 48.65714462296494, 0],\n            [-1.218762674952338, 48.65712429724543, 0],\n            [-1.218728622181096, 48.65710540657636, 0],\n            [-1.218692777443098, 48.65708803184883, 0],\n            [-1.218655294229785, 48.65707224746259, 0],\n            [-1.218616333047644, 48.65705812100723, 0],\n            [-1.218576060731722, 48.65704571297295, 0],\n            [-1.218534649731053, 48.65703507649165, 0],\n            [-1.218492277370193, 48.65702625710918, 0],\n            [-1.218449125089685, 48.65701929259054, 0],\n            [-1.218405377669958, 48.65701421275815, 0],\n            [-1.218361222439226, 48.65701103936396, 0],\n            [-1.218316848472065, 48.65700978599667, 0],\n            [-1.218272445779463, 48.65701045802319, 0],\n            [-1.218253422779048, 48.65701115902748, 0],\n            [-1.218221182885793, 48.65699327376341, 0],\n            [-1.218185338403111, 48.65697589887704, 0],\n            [-1.218147855432643, 48.65696011432465, 0],\n            [-1.218108894479879, 48.65694598769663, 0],\n            [-1.218068622378945, 48.65693357948397, 0],\n            [-1.218027211577897, 48.65692294281914, 0],\n            [-1.21798483940041, 48.65691412324899, 0],\n            [-1.217941687286468, 48.65690715853926, 0],\n            [-1.217897940015542, 48.65690207851298, 0],\n            [-1.217853784915266, 48.65689890492327, 0],\n            [-1.217809411059676, 48.65689765135946, 0],\n            [-1.21776500845932, 48.65689832318932, 0],\n            [-1.217720767247845, 48.65690091753617, 0],\n            [-1.217676876868015, 48.65690542329075, 0],\n            [-1.217633525260231, 48.65691182115939, 0],\n            [-1.217590898058203, 48.65692008374596, 0],\n            [-1.217580383152177, 48.65692243512006, 0],\n            [-1.215218407984584, 48.65746488733636, 0],\n            [-1.215187201926007, 48.65747262724272, 0],\n            [-1.215146566251741, 48.65748450445177, 0],\n            [-1.215127501547246, 48.65749082407903, 0],\n            [-1.212643243798093, 48.6583468490378, 0],\n            [-1.212622931641396, 48.65835414146558, 0],\n            [-1.212584982215674, 48.65836943013507, 0],\n            [-1.212548623365084, 48.6583863303658, 0],\n            [-1.212514010782004, 48.65840476978995, 0],\n            [-1.212481292681895, 48.65842466944863, 0],\n            [-1.212450609168205, 48.65844594413033, 0],\n            [-1.212422091632472, 48.65846850273507, 0],\n            [-1.212403910979609, 48.65848460917002, 0],\n            [-1.212110246692162, 48.65875727575717, 0],\n            [-1.212102197816596, 48.65876491523166, 0],\n            [-1.212078368517842, 48.65878974674347, 0],\n            [-1.212057041684063, 48.65881555757386, 0],\n            [-1.212038308642824, 48.65884223719833, 0],\n            [-1.212022249615277, 48.65886967137186, 0],\n            [-1.212008933372208, 48.65889774261815, 0],\n            [-1.211998416940243, 48.65892633073301, 0],\n            [-1.211990745356635, 48.65895531329833, 0],\n            [-1.211985951477341, 48.65898456620695, 0],\n            [-1.211984055835138, 48.65901396419379, 0],\n            [-1.211985066552728, 48.65904338137233, 0],\n            [-1.212041526423546, 48.65971683053877, 0],\n            [-1.212045439263298, 48.65974614093667, 0],\n            [-1.21205223742817, 48.65977521904387, 0],\n            [-1.212061891812342, 48.65980394034306, 0],\n            [-1.212074361078701, 48.65983218184439, 0],\n            [-1.212089591836436, 48.6598598226127, 0],\n            [-1.212107518868835, 48.65988674428463, 0],\n            [-1.212128065413081, 48.65991283157648, 0],\n            [-1.212151143488691, 48.65993797277692, 0],\n            [-1.212176654274055, 48.65996206022599, 0],\n            [-1.212204488529856, 48.65998499077598, 0],\n            [-1.212234527066614, 48.66000666623316, 0],\n            [-1.212266641255102, 48.66002699377809, 0],\n            [-1.212300693577164, 48.66004588636351, 0],\n            [-1.212336538214882, 48.66006326308688, 0],\n            [-1.212374021674159, 48.66007904953671, 0],\n            [-1.212383425686427, 48.66008245968392, 0],\n            [-1.212380816071084, 48.66008617625157, 0],\n            [-1.212364756833044, 48.66011361047071, 0],\n            [-1.212351440451907, 48.6601416817544, 0],\n            [-1.212340923954514, 48.66017026989811, 0],\n            [-1.212333252378559, 48.66019925248379, 0],\n            [-1.212328458579781, 48.66022850540416, 0],\n            [-1.212326563091015, 48.66025790339409, 0],\n            [-1.212327574033965, 48.66028732056697, 0],\n            [-1.212331487084808, 48.66031663095393, 0],\n            [-1.212338285492185, 48.66034570904299, 0],\n            [-1.212347940149219, 48.66037443031691, 0],\n            [-1.212360409717657, 48.66040267178599, 0],\n            [-1.212375640805428, 48.66043031251517, 0],\n            [-1.212393568194281, 48.66045723414126, 0],\n            [-1.212414115120002, 48.66048332138075, 0],\n            [-1.212437193600389, 48.66050846252255, 0],\n            [-1.212462704812132, 48.66053254990701, 0],\n            [-1.212490539514115, 48.66055548038656, 0],\n            [-1.212520578514922, 48.66057715576785, 0],\n            [-1.212552693183306, 48.6605974832318, 0],\n            [-1.212586745999114, 48.66061637573149, 0],\n            [-1.212622591142287, 48.66063375236466, 0],\n            [-1.212660075116552, 48.66064953872025, 0],\n            [-1.212699037407825, 48.6606636671972, 0],\n            [-1.21273931117083, 48.66067607729379, 0],\n            [-1.21278072394378, 48.66068671586669, 0],\n            [-1.212823098386995, 48.66069553735883, 0],\n            [-1.212866253042704, 48.66070250399437, 0],\n            [-1.212910003111172, 48.66070758594013, 0],\n            [-1.21292062151227, 48.66070852678805, 0],\n            [-1.213488270430081, 48.66075580455562, 0],\n            [-1.213525667372144, 48.66120169983839, 0],\n            [-1.21339139624171, 48.66202735090703, 0],\n            [-1.213389419723081, 48.66204164286537, 0],\n            [-1.213387524786194, 48.66207104086904, 0],\n            [-1.213388536386217, 48.66210045802875, 0],\n            [-1.213392450196493, 48.66212976837569, 0],\n            [-1.213399249462444, 48.66215884639809, 0],\n            [-1.213408905073514, 48.66218756757888, 0],\n            [-1.213421375687356, 48.66221580892887, 0],\n            [-1.213436607907401, 48.66224344951344, 0],\n            [-1.213454536510603, 48.66227037097006, 0],\n            [-1.213475084727471, 48.66229645801596, 0],\n            [-1.213498164570348, 48.66232159894081, 0],\n            [-1.213505391577541, 48.66232876943948, 0],\n            [-1.21447877358174, 48.66327475173358, 0],\n            [-1.214497059885671, 48.66329166822359, 0],\n            [-1.214524897042451, 48.66331459820454, 0],\n            [-1.214554938568118, 48.66333627304827, 0],\n            [-1.214587055820835, 48.66335659993816, 0],\n            [-1.214621111269376, 48.66337549182957, 0],\n            [-1.214656959082014, 48.66339286782285, 0],\n            [-1.214694445751603, 48.66340865350994, 0],\n            [-1.214733410752129, 48.66342278129235, 0],\n            [-1.214773687226824, 48.66343519067151, 0],\n            [-1.214815102702214, 48.66344582850713, 0],\n            [-1.214857479827283, 48.66345464924531, 0],\n            [-1.214894141651539, 48.66346069274249, 0],\n            [-1.215446997020784, 48.66354107415717, 0],\n            [-1.215459506837706, 48.66356377215541, 0],\n            [-1.215477436994585, 48.66359069329302, 0],\n            [-1.215497986800322, 48.66361677997367, 0],\n            [-1.215521068260506, 48.66364192048878, 0],\n            [-1.215546582538996, 48.66366600718126, 0],\n            [-1.215574420381527, 48.66368893690658, 0],\n            [-1.215604462583293, 48.66371061147464, 0],\n            [-1.21563658049928, 48.66373093806977, 0],\n            [-1.215670636595483, 48.6637498296488, 0],\n            [-1.215706485037778, 48.66376720531341, 0],\n            [-1.215743972315759, 48.66378299065677, 0],\n            [-1.215782937901158, 48.663797118082, 0],\n            [-1.215823214934666, 48.66380952709195, 0],\n            [-1.215864630940451, 48.663820164548, 0],\n            [-1.21590700856496, 48.66382898489783, 0],\n            [-1.215950166336857, 48.66383595037042, 0],\n            [-1.215993919443035, 48.66384103113775, 0],\n            [-1.216038080521449, 48.66384420544257, 0],\n            [-1.216082460462511, 48.66384545969167, 0],\n            [-1.216126869219463, 48.66384478851412, 0],\n            [-1.216377851835453, 48.66383554539333, 0],\n            [-1.217065729155957, 48.66392905110671, 0],\n            [-1.218409920642336, 48.66453382339175, 0],\n            [-1.219237239731772, 48.66665190168623, 0],\n            [-1.219245408339302, 48.66667035065498, 0],\n            [-1.219215980118202, 48.66666693440002, 0],\n            [-1.219171816360252, 48.66666376132042, 0],\n            [-1.219127433854821, 48.66666250826788, 0],\n            [-1.219083022649508, 48.66666318060807, 0],\n            [-1.219038772914811, 48.66666577546188, 0],\n            [-1.218994874129984, 48.66667028171817, 0],\n            [-1.21895151427142, 48.66667668008093, 0],\n            [-1.21890887900816, 48.66668494315215, 0],\n            [-1.218867150906526, 48.66669503554887, 0],\n            [-1.218826508648827, 48.66670691405505, 0],\n            [-1.218787126267991, 48.66672052780642, 0],\n            [-1.21874917240252, 48.66673581850808, 0],\n            [-1.218712809574392, 48.66675272068442, 0],\n            [-1.21867819349311, 48.66677116195934, 0],\n            [-1.218645472388764, 48.66679106336609, 0],\n            [-1.218614786377992, 48.66681233968544, 0],\n            [-1.218586266863062, 48.66683489981056, 0],\n            [-1.218560035969805, 48.66685864713736, 0],\n            [-1.218536206024508, 48.66688347997753, 0],\n            [-1.218514879072843, 48.66690929199475, 0],\n            [-1.218496146442876, 48.6669359726593, 0],\n            [-1.218480088353677, 48.66696340772175, 0],\n            [-1.21846677357248, 48.66699147970213, 0],\n            [-1.218456259119312, 48.66702006839283, 0],\n            [-1.218448590023054, 48.66704905137354, 0],\n            [-1.218443799128872, 48.66707830453514, 0],\n            [-1.218441906957133, 48.66710770261163, 0],\n            [-1.21844292161535, 48.66713711971595, 0],\n            [-1.218446838763816, 48.66716642987952, 0],\n            [-1.218453641633603, 48.66719550759132, 0],\n            [-1.218463301098731, 48.66722422833574, 0],\n            [-1.218475775800463, 48.66725246912533, 0],\n            [-1.218478346575436, 48.66725755083894, 0],\n            [-1.218617344629942, 48.66752696975335, 0],\n            [-1.218630010509108, 48.66754952792657, 0],\n            [-1.218647943784652, 48.66757644856029, 0],\n            [-1.21866849686407, 48.66760253466489, 0],\n            [-1.218691581738942, 48.66762767453411, 0],\n            [-1.21871709955852, 48.66765176051372, 0],\n            [-1.218744941053349, 48.66767468946226, 0],\n            [-1.218774987003037, 48.66769636319287, 0],\n            [-1.218807108746483, 48.66771668889356, 0],\n            [-1.218841168733293, 48.66773557952493, 0],\n            [-1.218877021112639, 48.66775295419272, 0],\n            [-1.218914512357308, 48.66776873849438, 0],\n            [-1.218953481922123, 48.66778286483752, 0],\n            [-1.218993762930551, 48.66779527272959, 0],\n            [-1.219035182889854, 48.66780590903674, 0],\n            [-1.219077564429572, 48.66781472821162, 0],\n            [-1.2191207260615, 48.66782169248825, 0],\n            [-1.219164482956108, 48.66782677204355, 0],\n            [-1.219208647735062, 48.66782994512576, 0],\n            [-1.219253031272927, 48.66783119814676, 0],\n            [-1.219267828630226, 48.66783097411508, 0],\n            [-1.219254978841173, 48.66790618179577, 0],\n            [-1.218031552794943, 48.66860682934463, 0],\n            [-1.215931924878153, 48.66926839219309, 0],\n            [-1.215929339783834, 48.66926921112081, 0],\n            [-1.215889954611751, 48.6692828238741, 0],\n            [-1.215851997931232, 48.66929811361341, 0],\n            [-1.215815632276245, 48.66931501486738, 0],\n            [-1.215781013368484, 48.66933345526379, 0],\n            [-1.215748289450069, 48.66935335583965, 0],\n            [-1.215717600649688, 48.66937463137926, 0],\n            [-1.215689078381621, 48.6693971907792, 0],\n            [-1.215663941739054, 48.6694198763314, 0],\n            [-1.215458037627233, 48.66961844078752, 0],\n            [-1.215048974572544, 48.66982863556905, 0],\n            [-1.215022576005991, 48.66984291752739, 0],\n            [-1.214989851455921, 48.66986281788591, 0],\n            [-1.214959162023725, 48.66988409322169, 0],\n            [-1.214930639126242, 48.66990665243207, 0],\n            [-1.214904404904127, 48.66993039891673, 0],\n            [-1.214880571697639, 48.66995523099129, 0],\n            [-1.214859241566497, 48.66998104232236, 0],\n            [-1.214840505852297, 48.67000772238332, 0],\n            [-1.214824444787579, 48.67003515692731, 0],\n            [-1.214811127152045, 48.67006322847665, 0],\n            [-1.214800609977933, 48.67009181682556, 0],\n            [-1.214794924948566, 48.6701121275422, 0],\n            [-1.214567990042359, 48.67104150729048, 0],\n            [-1.214566003323909, 48.67105017929875, 0],\n            [-1.21456120978974, 48.67107943228942, 0],\n            [-1.214559315197217, 48.67110883029304, 0],\n            [-1.214560327664747, 48.67113824742306, 0],\n            [-1.214564242861633, 48.67116755771062, 0],\n            [-1.214571044027404, 48.67119663564428, 0],\n            [-1.214580702043411, 48.67122535670745, 0],\n            [-1.214593175556993, 48.67125359791122, 0],\n            [-1.214608411159133, 48.67128123832178, 0],\n            [-1.214626343612395, 48.67130815957732, 0],\n            [-1.214646896130742, 48.67133424639587, 0],\n            [-1.214669980708132, 48.67135938706814, 0],\n            [-1.214695498495075, 48.67138347393647, 0],\n            [-1.214723340222299, 48.6714064038556, 0],\n            [-1.21475338666833, 48.67142807863453, 0],\n            [-1.214785509170049, 48.67144840545667, 0],\n            [-1.214819570173726, 48.6714672972779, 0],\n            [-1.214855423824255, 48.67148467319893, 0],\n            [-1.214892916588948, 48.6715004588117, 0],\n            [-1.214931887916073, 48.67151458651831, 0],\n            [-1.214972170921604, 48.67152699582037, 0],\n            [-1.215013593104288, 48.67153763357793, 0],\n            [-1.215055977084034, 48.67154645423749, 0],\n            [-1.215099141362326, 48.6715534200266, 0],\n            [-1.215109155070249, 48.67155475583742, 0],\n            [-1.217404514911407, 48.67184904502301, 0],\n            [-1.217610886471088, 48.67202521475468, 0],\n            [-1.217632450058424, 48.67204269802366, 0],\n            [-1.217662498138687, 48.6720643720389, 0],\n            [-1.21769462222306, 48.67208469804477, 0],\n            [-1.217728684750858, 48.67210358900069, 0],\n            [-1.21776453986032, 48.6721209640108, 0],\n            [-1.217802034012883, 48.67213674867125, 0],\n            [-1.21784100665058, 48.6721508753881, 0],\n            [-1.217881290883889, 48.67216328366715, 0],\n            [-1.217922714206101, 48.6721739203729, 0],\n            [-1.217945041752753, 48.67217881783362, 0],\n            [-1.218549645693745, 48.67230377921458, 0],\n            [-1.218743412198986, 48.67259614044054, 0],\n            [-1.218753236546002, 48.67261029243714, 0],\n            [-1.218773791737811, 48.67263637851308, 0],\n            [-1.218796878976551, 48.67266151835173, 0],\n            [-1.218820324847576, 48.67268376685593, 0],\n            [-1.219283399127018, 48.67309609907674, 0],\n            [-1.219290920932397, 48.67318563902863, 0],\n            [-1.21929483904643, 48.67321494915008, 0],\n            [-1.21930164322503, 48.67324402679857, 0],\n            [-1.219311304336601, 48.67327274745866, 0],\n            [-1.219323781015271, 48.67330098814325, 0],\n            [-1.219339019838495, 48.67332862792076, 0],\n            [-1.219356955554907, 48.67335554843202, 0],\n            [-1.219377511364621, 48.67338163439828, 0],\n            [-1.219400599247447, 48.67340677411396, 0],\n            [-1.219426120339766, 48.67343085992538, 0],\n            [-1.219453965358137, 48.67345378869187, 0],\n            [-1.219484015066998, 48.67347546222731, 0],\n            [-1.219516140789261, 48.67349578772056, 0],\n            [-1.219550204957407, 48.67351467813312, 0],\n            [-1.21958606170276, 48.67353205257168, 0],\n            [-1.219623557479403, 48.67354783663462, 0],\n            [-1.219662531722656, 48.67356196273063, 0],\n            [-1.219702817536101, 48.67357437036815, 0],\n            [-1.219744242406335, 48.67358500641451, 0],\n            [-1.219762951580266, 48.6735888990327, 0],\n            [-1.219949825662234, 48.67413249877237, 0],\n            [-1.219954317911067, 48.67414476783772, 0],\n            [-1.219966795167415, 48.67417300845054, 0],\n            [-1.219982034608305, 48.67420064814071, 0],\n            [-1.219999970980232, 48.6742275685497, 0],\n            [-1.220020527480095, 48.6742536543989, 0],\n            [-1.220043616084863, 48.67427879398331, 0],\n            [-1.220069137927882, 48.67430287965001, 0],\n            [-1.220096983722332, 48.67432580825886, 0],\n            [-1.220127034229595, 48.67434748162428, 0],\n            [-1.220159160769023, 48.67436780693603, 0],\n            [-1.220193225769664, 48.67438669715627, 0],\n            [-1.220227480364464, 48.67440334456711, 0],\n            [-1.220823078258368, 48.67467422556451, 0],\n            [-1.221082524739168, 48.67487293532324, 0],\n            [-1.221111304683236, 48.67489363191096, 0],\n            [-1.221143431969547, 48.674913956946, 0],\n            [-1.221177497710075, 48.67493284687291, 0],\n            [-1.221211751711651, 48.67494949340171, 0],\n            [-1.221411265256616, 48.6750402308007, 0],\n            [-1.22141286957987, 48.67504095819681, 0],\n            [-1.221450367055434, 48.67505674166026, 0],\n            [-1.221489342981661, 48.6750708671335, 0],\n            [-1.221529630454878, 48.67508327412765, 0],\n            [-1.221571056954849, 48.67509390951258, 0],\n            [-1.221613445083016, 48.67510272774501, 0],\n            [-1.221656613322859, 48.67510969106281, 0],\n            [-1.221663659491807, 48.67511064134386, 0],\n            [-1.221961931991766, 48.67514977916045, 0],\n            [-1.222105595959648, 48.67527239407719, 0],\n            [-1.22212716057692, 48.67528987485262, 0],\n            [-1.222157212535562, 48.67531154768422, 0],\n            [-1.222189340511741, 48.67533187242547, 0],\n            [-1.222223406928409, 48.67535076204103, 0],\n            [-1.222259265906935, 48.67536813564094, 0],\n            [-1.222287898275711, 48.67538039098345, 0],\n            [-1.223286008635134, 48.67578443980758, 0],\n            [-1.223294874392842, 48.67578796757405, 0],\n            [-1.22333385140416, 48.67580209241937, 0],\n            [-1.223374139918625, 48.67581449876453, 0],\n            [-1.223415567411161, 48.67582513348228, 0],\n            [-1.223457956479357, 48.67583395103209, 0],\n            [-1.223501125602493, 48.67584091365488, 0],\n            [-1.223508174232573, 48.67584186412743, 0],\n            [-1.223624433318571, 48.67585711671322, 0],\n            [-1.223632891029702, 48.67587245361209, 0],\n            [-1.223650829952789, 48.67589937344634, 0],\n            [-1.22367138903047, 48.6759254586375, 0],\n            [-1.223694480228543, 48.67595059748339, 0],\n            [-1.223720004669244, 48.67597468233418, 0],\n            [-1.223747853054742, 48.6759976100531, 0],\n            [-1.223777906135066, 48.67601928245877, 0],\n            [-1.22381003521872, 48.67603960674462, 0],\n            [-1.223844102723737, 48.67605849587747, 0],\n            [-1.223879962767231, 48.67607586896945, 0],\n            [-1.223917461789059, 48.67609165162475, 0],\n            [-1.223956439210749, 48.67610577625806, 0],\n            [-1.223996728122196, 48.67611818238406, 0],\n            [-1.224038155996767, 48.67612881687658, 0],\n            [-1.224080545430091, 48.67613763419594, 0],\n            [-1.224123714900229, 48.67614459658418, 0],\n            [-1.224167479543978, 48.67614967422632, 0],\n            [-1.224211651949931, 48.6761528453787, 0],\n            [-1.224256042959919, 48.67615409646145, 0],\n            [-1.224300462479842, 48.67615342211726, 0],\n            [-1.224460189910643, 48.67614752980288, 0],\n            [-1.226036531437293, 48.6766664270321, 0],\n            [-1.226072785176284, 48.67667749276223, 0],\n            [-1.226114213950755, 48.676688126504, 0],\n            [-1.22615660421985, 48.67669694305533, 0],\n            [-1.226199774457735, 48.67670390466138, 0],\n            [-1.226243539798047, 48.67670898151068, 0],\n            [-1.226287712826342, 48.67671215186293, 0],\n            [-1.226332104381833, 48.67671340214174, 0],\n            [-1.226376524368082, 48.67671272699309, 0],\n            [-1.226420782566728, 48.67671012930814, 0],\n            [-1.22643070096643, 48.67670928067314, 0],\n            [-1.228371340434913, 48.67653358698122, 0],\n            [-1.229276116689131, 48.67674749355296, 0],\n            [-1.228770027945079, 48.67716750517316, 0],\n            [-1.228278270697936, 48.67728057741353, 0],\n            [-1.228247268726785, 48.6772882715997, 0],\n            [-1.228206620122003, 48.67730015342271, 0],\n            [-1.228167231983373, 48.67731377038638, 0],\n            [-1.228129272973897, 48.67732906418213, 0],\n            [-1.228092905637614, 48.67734596932102, 0],\n            [-1.228058285703295, 48.67736441341435, 0],\n            [-1.228025561417834, 48.67738431748315, 0],\n            [-1.227994872911078, 48.67740559629695, 0],\n            [-1.227966351596248, 48.67742815873825, 0],\n            [-1.227940119606907, 48.67745190819286, 0],\n            [-1.22791628927388, 48.67747674296358, 0],\n            [-1.227901922705306, 48.67749368216146, 0],\n            [-1.226669337203821, 48.67902342648995, 0],\n            [-1.226662376713676, 48.67903230095819, 0],\n            [-1.226643643890584, 48.67905898293002, 0],\n            [-1.226627586375546, 48.67908641910895, 0],\n            [-1.226614272933058, 48.67911449201024, 0],\n            [-1.226603760577691, 48.67914308142223, 0],\n            [-1.226596094329295, 48.6791720649216, 0],\n            [-1.226591307020806, 48.67920131839708, 0],\n            [-1.22658941915724, 48.67923071658116, 0],\n            [-1.226590438827708, 48.67926013358643, 0],\n            [-1.226594361670998, 48.67928944344477, 0],\n            [-1.226601170893824, 48.67931852064634, 0],\n            [-1.226610837342965, 48.6793472406778, 0],\n            [-1.226623319629709, 48.67937548055477, 0],\n            [-1.22663856430751, 48.67940311934894, 0],\n            [-1.226656506099941, 48.67943003870549, 0],\n            [-1.226677068181059, 48.67945612335057, 0],\n            [-1.226700162503853, 48.67948126158423, 0],\n            [-1.226725690177128, 48.67950534575924, 0],\n            [-1.226753541889245, 48.67952827274179, 0],\n            [-1.226783598375985, 48.67954994435354, 0],\n            [-1.226815730931241, 48.67957026779151, 0],\n            [-1.226849801958201, 48.67958915602593, 0],\n            [-1.226874123952939, 48.67960119566106, 0],\n            [-1.22737578133971, 48.67983812767582, 0],\n            [-1.22765756405625, 48.68004625062066, 0],\n            [-1.227678332074536, 48.68006091634014, 0],\n            [-1.227710465318102, 48.68008123952655, 0],\n            [-1.227744537027655, 48.68010012749437, 0],\n            [-1.227780401301906, 48.68011749936081, 0],\n            [-1.227817904563122, 48.68013328073522, 0],\n            [-1.227856886214309, 48.68014740403786, 0],\n            [-1.227897179327335, 48.68015980878921, 0],\n            [-1.227938611357502, 48.68017044186879, 0],\n            [-1.227981004882932, 48.6801792577431, 0],\n            [-1.228024178363882, 48.68018621866026, 0],\n            [-1.228067946920082, 48.68019129481168, 0],\n            [-1.228112123123257, 48.68019446446007, 0],\n            [-1.228156517799133, 48.68019571403207, 0],\n            [-1.22820094083784, 48.68019503817658, 0],\n            [-1.228245202007989, 48.68019243978803, 0],\n            [-1.228289111771355, 48.68018792999314, 0],\n            [-1.228332482094807, 48.68018152810428, 0],\n            [-1.228358970052914, 48.68017639353751, 0],\n            [-1.228379329819807, 48.68019107271857, 0],\n            [-1.228411463429959, 48.68021139570827, 0],\n            [-1.228445535491112, 48.68023028346758, 0],\n            [-1.228481400100454, 48.68024765511454, 0],\n            [-1.228518903678717, 48.68026343625954, 0],\n            [-1.228557885627766, 48.68027755932366, 0],\n            [-1.22859817901809, 48.68028996382839, 0],\n            [-1.228639611303912, 48.68030059665453, 0],\n            [-1.228682005062036, 48.68030941226962, 0],\n            [-1.22872517875168, 48.68031637292264, 0],\n            [-1.228768947491992, 48.68032144880642, 0],\n            [-1.22881312385376, 48.68032461818466, 0],\n            [-1.22885751866201, 48.68032586748512, 0],\n            [-1.228901941806293, 48.68032519135805, 0],\n            [-1.228946203054799, 48.68032259269884, 0],\n            [-1.228990112868964, 48.6803180826356, 0],\n            [-1.229033483215438, 48.68031168048155, 0],\n            [-1.229076128371025, 48.68030341365257, 0],\n            [-1.229117865718583, 48.68029331754921, 0],\n            [-1.229158516528142, 48.68028143540583, 0],\n            [-1.229197906723547, 48.68026781810466, 0],\n            [-1.229235867626948, 48.68025252395852, 0],\n            [-1.229272236681516, 48.68023561846075, 0],\n            [-1.22930685814763, 48.68021717400491, 0],\n            [-1.229339583769922, 48.68019726957461, 0],\n            [-1.22937027341161, 48.68017599040537, 0],\n            [-1.229398795655297, 48.68015342761958, 0],\n            [-1.229425028365281, 48.68012967783605, 0],\n            [-1.229448859210578, 48.68010484275681, 0],\n            [-1.229470186145956, 48.68007902873084, 0],\n            [-1.229488917849044, 48.68005234629926, 0],\n            [-1.229504974111004, 48.68002490972156, 0],\n            [-1.229509443071266, 48.68001617690406, 0],\n            [-1.229535638101591, 48.67996320846347, 0],\n            [-1.230235114958787, 48.67985572176481, 0],\n            [-1.23025097675878, 48.67985315078378, 0],\n            [-1.230293621325198, 48.67984488350156, 0],\n            [-1.230335358047436, 48.67983478695464, 0],\n            [-1.230376008198562, 48.67982290437904, 0],\n            [-1.230415397704898, 48.6798092866591, 0],\n            [-1.230453357891632, 48.67979399210923, 0],\n            [-1.230489726205073, 48.67977708622469, 0],\n            [-1.230524346908677, 48.67975864140054, 0],\n            [-1.230557071750353, 48.67973873662205, 0],\n            [-1.230587760596857, 48.67971745712607, 0],\n            [-1.230616282033969, 48.67969489403655, 0],\n            [-1.230642513929505, 48.67967114397365, 0],\n            [-1.230666343955957, 48.67964630864045, 0],\n            [-1.230687670071551, 48.67962049438711, 0],\n            [-1.230706400957593, 48.67959381175561, 0],\n            [-1.230722456408642, 48.67956637500646, 0],\n            [-1.23073576767669, 48.67953830162912, 0],\n            [-1.230746277764829, 48.67950971183911, 0],\n            [-1.230753941671998, 48.67948072806304, 0],\n            [-1.230758726584724, 48.67945147441438, 0],\n            [-1.23075904219706, 48.6794485740557, 0],\n            [-1.230910094701045, 48.67799479597035, 0],\n            [-1.230910403213101, 48.67799189528817, 0],\n            [-1.230911972909015, 48.67796539739521, 0],\n            [-1.230910950736388, 48.67793598041992, 0],\n            [-1.230907025482226, 48.67790667070634, 0],\n            [-1.23090021396016, 48.67787759375737, 0],\n            [-1.230892501183443, 48.67785402883464, 0],\n            [-1.230552103863611, 48.67693389662275, 0],\n            [-1.230772529835207, 48.67691393456038, 0],\n            [-1.230806519192675, 48.67691027271579, 0],\n            [-1.230849886368026, 48.67690386987301, 0],\n            [-1.230892528334264, 48.67689560236609, 0],\n            [-1.230934262487917, 48.67688550559883, 0],\n            [-1.230974910112783, 48.67687362280827, 0],\n            [-1.231014297146098, 48.67686000487942, 0],\n            [-1.231052254923759, 48.67684471012779, 0],\n            [-1.231088620902308, 48.67682780404941, 0],\n            [-1.231123239355332, 48.67680935904021, 0],\n            [-1.231155962040134, 48.67678945408628, 0],\n            [-1.231186648832841, 48.67676817442525, 0],\n            [-1.231215168328026, 48.67674561118163, 0],\n            [-1.231241398401699, 48.67672186097637, 0],\n            [-1.231265226734366, 48.67669702551301, 0],\n            [-1.231286551291506, 48.67667121114241, 0],\n            [-1.231305280760862, 48.67664452840707, 0],\n            [-1.231315039462269, 48.67662849660083, 0],\n            [-1.231907730216384, 48.67559810553436, 0],\n            [-1.233126604308061, 48.67435677890063, 0],\n            [-1.233689712338866, 48.67407762338888, 0],\n            [-1.233690934225058, 48.67407701622228, 0],\n            [-1.233725549829301, 48.67405857042336, 0],\n            [-1.233758269693519, 48.67403866472243, 0],\n            [-1.23378895370573, 48.67401738436032, 0],\n            [-1.233817470472778, 48.67399482046465, 0],\n            [-1.233843697882062, 48.673971069659, 0],\n            [-1.23386752362558, 48.67394623364956, 0],\n            [-1.233888845679863, 48.67392041878951, 0],\n            [-1.233907572743442, 48.67389373562347, 0],\n            [-1.233923624627344, 48.6738662984142, 0],\n            [-1.233936932598729, 48.67383822465301, 0],\n            [-1.233945585551484, 48.67381532589809, 0],\n            [-1.234134958747908, 48.67325175037627, 0],\n            [-1.234146050465053, 48.67326221402246, 0],\n            [-1.234173902102349, 48.673285139213, 0],\n            [-1.234203958055216, 48.67330680888941, 0],\n            [-1.234211811086141, 48.67331202534496, 0],\n            [-1.235343516906178, 48.67405154064504, 0],\n            [-1.235631631390608, 48.67438378693053, 0],\n            [-1.234694714240645, 48.67441843924063, 0],\n            [-1.234650458487103, 48.6744210401205, 0],\n            [-1.234606554331033, 48.67442555235373, 0],\n            [-1.234563189771869, 48.674431956619, 0],\n            [-1.234520550498757, 48.67444022549279, 0],\n            [-1.234478819095164, 48.67445032356756, 0],\n            [-1.234438174257608, 48.67446220760276, 0],\n            [-1.234398790030189, 48.67447582671044, 0],\n            [-1.234360835059043, 48.6744911225729, 0],\n            [-1.234324471870982, 48.67450802969232, 0],\n            [-1.234289856177011, 48.67452647567147, 0],\n            [-1.234288386549332, 48.67452731513832, 0],\n            [-1.233852706706708, 48.67477689801865, 0],\n            [-1.233821456042812, 48.67479596428469, 0],\n            [-1.23379077156917, 48.6748172446542, 0],\n            [-1.233762254323745, 48.67483980854183, 0],\n            [-1.233736026422714, 48.67486355932738, 0],\n            [-1.233712200179555, 48.67488839530769, 0],\n            [-1.233690877624034, 48.67491421013297, 0],\n            [-1.233685655932275, 48.67492120489182, 0],\n            [-1.233047836828063, 48.67579457698194, 0],\n            [-1.233034330476726, 48.6758142652753, 0],\n            [-1.233018277485569, 48.67584170235603, 0],\n            [-1.233004968470799, 48.67586977600632, 0],\n            [-1.232994460428023, 48.67589836601141, 0],\n            [-1.232986798358604, 48.67592734994517, 0],\n            [-1.232982015077713, 48.67595660369467, 0],\n            [-1.232980131072821, 48.67598600199115, 0],\n            [-1.23298115441691, 48.67601541894682, 0],\n            [-1.232985080732683, 48.67604472859353, 0],\n            [-1.232991893212123, 48.67607380542268, 0],\n            [-1.233001562688123, 48.67610252492226, 0],\n            [-1.23301404775892, 48.67613076411028, 0],\n            [-1.233029294966057, 48.67615840206141, 0],\n            [-1.233047239022338, 48.67618532042431, 0],\n            [-1.233067803092105, 48.6762114039295, 0],\n            [-1.233090899119755, 48.67623654088186, 0],\n            [-1.23311642820688, 48.67626062363965, 0],\n            [-1.233144281035723, 48.67628354907516, 0],\n            [-1.233174338337311, 48.67630521901673, 0],\n            [-1.23320647140204, 48.67632554066832, 0],\n            [-1.233240542630958, 48.6763444270081, 0],\n            [-1.233276406125132, 48.67636179716013, 0],\n            [-1.23331390830973, 48.67637757674113, 0],\n            [-1.233352888592691, 48.676391698179, 0],\n            [-1.233393180051681, 48.67640410100212, 0],\n            [-1.233434610149153, 48.67641473209844, 0],\n            [-1.233440905662044, 48.67641616962024, 0],\n            [-1.235299610150287, 48.67683382634767, 0],\n            [-1.23614249682958, 48.67707346268261, 0],\n            [-1.236144468041993, 48.67707402065796, 0],\n            [-1.236185899273299, 48.67708465075943, 0],\n            [-1.236228291642614, 48.67709346358598, 0],\n            [-1.236271463615131, 48.67710042139878, 0],\n            [-1.236315230317293, 48.67710549440272, 0],\n            [-1.236359404328742, 48.67710866087377, 0],\n            [-1.236403796484413, 48.67710990725225, 0],\n            [-1.236448216685351, 48.67710922820087, 0],\n            [-1.236492474712234, 48.67710662662751, 0],\n            [-1.236536381040367, 48.67710211367282, 0],\n            [-1.23657974765131, 48.67709570866239, 0],\n            [-1.236622388837891, 48.67708743902421, 0],\n            [-1.236664121999838, 48.67707734017117, 0],\n            [-1.236704768425423, 48.67706545534905, 0],\n            [-1.236741876817282, 48.67705268304424, 0],\n            [-1.237115320084432, 48.67691431116812, 0],\n            [-1.237157917112477, 48.67692618779624, 0],\n            [-1.237196943432233, 48.6769361433768, 0],\n            [-1.237239335853566, 48.67694495582957, 0],\n            [-1.237282507838473, 48.67695191326164, 0],\n            [-1.237326274513377, 48.67695698587964, 0],\n            [-1.237370448458, 48.67696015196112, 0],\n            [-1.237414840507596, 48.67696139794811, 0],\n            [-1.237459260563649, 48.67696071850497, 0],\n            [-1.237503518407459, 48.67695811654118, 0],\n            [-1.237547424515149, 48.67695360319919, 0],\n            [-1.237590790869196, 48.67694719780621, 0],\n            [-1.237633431763492, 48.67693892779186, 0],\n            [-1.237675164599059, 48.67692882857064, 0],\n            [-1.237715810665552, 48.67691694338988, 0],\n            [-1.23775291928385, 48.67690417053795, 0],\n            [-1.237793252916863, 48.67688922527204, 0],\n            [-1.237870344117487, 48.67691071878972, 0],\n            [-1.23790937045231, 48.6769206740959, 0],\n            [-1.237951762985494, 48.67692948628528, 0],\n            [-1.237994935055693, 48.67693644344904, 0],\n            [-1.23803870178903, 48.67694151579507, 0],\n            [-1.238082875764888, 48.67694468160197, 0],\n            [-1.238127267818501, 48.6769459273131, 0],\n            [-1.238171687851273, 48.6769452475939, 0],\n            [-1.238215945644583, 48.67694264535511, 0],\n            [-1.238259851674795, 48.67693813174015, 0],\n            [-1.238303217924706, 48.67693172607771, 0],\n            [-1.238345858688725, 48.67692345579837, 0],\n            [-1.238387591368317, 48.67691335631772, 0],\n            [-1.238428237253855, 48.67690147088432, 0],\n            [-1.238467622290007, 48.67688785039466, 0],\n            [-1.238505577821025, 48.67687255317529, 0],\n            [-1.238541941313203, 48.67685564473253, 0],\n            [-1.238576557050599, 48.67683719747261, 0],\n            [-1.238609276802427, 48.6768172903912, 0],\n            [-1.238639960457224, 48.67679600873511, 0],\n            [-1.238668476623013, 48.67677344363728, 0],\n            [-1.238694703190191, 48.67674969172676, 0],\n            [-1.238718527854053, 48.67672485471435, 0],\n            [-1.238739848595865, 48.67669903895742, 0],\n            [-1.238755832910556, 48.67667656157551, 0],\n            [-1.238767154596845, 48.67665942813833, 0],\n            [-1.238922314157265, 48.67661683506349, 0],\n            [-1.239444014982645, 48.67661122821626, 0],\n            [-1.239470893006971, 48.67661058647276, 0],\n            [-1.239507895774361, 48.67660854314885, 0],\n            [-1.242107626720759, 48.67641742396582, 0],\n            [-1.242168918871294, 48.67660583683013, 0],\n            [-1.24217517449793, 48.67662335558489, 0],\n            [-1.242187664850782, 48.6766515937724, 0],\n            [-1.242202917258859, 48.67667923050203, 0],\n            [-1.242220866412642, 48.67670614742778, 0],\n            [-1.242241435454732, 48.67673222928595, 0],\n            [-1.242264536308222, 48.67675736438891, 0],\n            [-1.24229007005402, 48.67678144510253, 0],\n            [-1.242317927354406, 48.67680436830806, 0],\n            [-1.242347988921182, 48.67682603584315, 0],\n            [-1.242380126026779, 48.67684635492229, 0],\n            [-1.242414201054598, 48.6768652385346, 0],\n            [-1.24245006808948, 48.67688260581569, 0],\n            [-1.242487573541724, 48.67689838239478, 0],\n            [-1.242526556804962, 48.67691250071253, 0],\n            [-1.242566850944207, 48.67692490031068, 0],\n            [-1.242608283410285, 48.67693552809103, 0],\n            [-1.2426506767795, 48.67694433854258, 0],\n            [-1.242693849512768, 48.67695129393677, 0],\n            [-1.242737616733016, 48.67695636448866, 0],\n            [-1.242781791017766, 48.67695952848489, 0],\n            [-1.242826183200796, 48.67696077237628, 0],\n            [-1.242870603183068, 48.6769600908363, 0],\n            [-1.242914860746163, 48.67695748678332, 0],\n            [-1.242958766367401, 48.67695297136872, 0],\n            [-1.243002132031301, 48.67694656392862, 0],\n            [-1.243017978036909, 48.67694372361068, 0],\n            [-1.243234818235885, 48.67690298645255, 0],\n            [-1.243457167137476, 48.67692744979087, 0],\n            [-1.243473392684482, 48.6769291017217, 0],\n            [-1.243517566991534, 48.67693226543439, 0],\n            [-1.243561959168749, 48.67693350904089, 0],\n            [-1.243606379116928, 48.67693282721574, 0],\n            [-1.243650636617892, 48.67693022287871, 0],\n            [-1.243694542149223, 48.67692570718229, 0],\n            [-1.243737907695877, 48.67691929946385, 0],\n            [-1.24378054755522, 48.67691102716301, 0],\n            [-1.243822279132734, 48.67690092570382, 0],\n            [-1.243862923723207, 48.67688903834345, 0],\n            [-1.243902307277125, 48.67687541598669, 0],\n            [-1.243940261145033, 48.67686011696775, 0],\n            [-1.24397662280028, 48.67684320680108, 0],\n            [-1.244011236534939, 48.67682475790011, 0],\n            [-1.244043954126715, 48.67680484926746, 0],\n            [-1.244074635473198, 48.67678356615674, 0],\n            [-1.244103149192604, 48.67676099970715, 0],\n            [-1.244129373185621, 48.67673724655315, 0],\n            [-1.244153195158655, 48.67671240841128, 0],\n            [-1.244174513104503, 48.6766865916436, 0],\n            [-1.244193235739206, 48.67665990680298, 0],\n            [-1.244209282892792, 48.67663246815923, 0],\n            [-1.244222585852726, 48.6766043932101, 0],\n            [-1.244233087657931, 48.67657580217756, 0],\n            [-1.244240743342397, 48.67654681749383, 0],\n            [-1.244244008609055, 48.67652894787445, 0],\n            [-1.244329707405174, 48.67596561372879, 0],\n            [-1.244355280748837, 48.67598665669913, 0],\n            [-1.244385342704701, 48.67600832370123, 0],\n            [-1.244417480110878, 48.67602864221055, 0],\n            [-1.244451555349828, 48.67604752521838, 0],\n            [-1.244487422505134, 48.67606489186306, 0],\n            [-1.244524927986674, 48.67608066777656, 0],\n            [-1.244563911187961, 48.67609478540231, 0],\n            [-1.244604205174289, 48.67610718428511, 0],\n            [-1.244645637397162, 48.67611781132971, 0],\n            [-1.244680866948638, 48.67612527317426, 0],\n            [-1.245653771196462, 48.67631215096039, 0],\n            [-1.246002106156019, 48.67663163437435, 0],\n            [-1.246010002464806, 48.67663872904501, 0],\n            [-1.246037861382199, 48.67666165134669, 0],\n            [-1.24606792446692, 48.67668331790652, 0],\n            [-1.246100062984588, 48.676703635943, 0],\n            [-1.246134139312887, 48.67672251844969, 0],\n            [-1.246170007531042, 48.67673988456711, 0],\n            [-1.246207514044018, 48.67675565992925, 0],\n            [-1.246219042356043, 48.67676006486099, 0],\n            [-1.246310970375339, 48.67679439932643, 0],\n            [-1.24615862733062, 48.67724978227873, 0],\n            [-1.246156890678238, 48.67725512707649, 0],\n            [-1.246149235990515, 48.67728411188661, 0],\n            [-1.24614446023954, 48.67731336618191, 0],\n            [-1.246142583880792, 48.67734276469126, 0],\n            [-1.246143614954118, 48.6773721815259, 0],\n            [-1.246147549049488, 48.67740149071834, 0],\n            [-1.246154369325412, 48.67743056676184, 0],\n            [-1.246164046581388, 48.67745928514774, 0],\n            [-1.246176539382482, 48.6774875228988, 0],\n            [-1.246179165877683, 48.67749270536714, 0],\n            [-1.246505212216911, 48.67812330135217, 0],\n            [-1.246517840880046, 48.67814575504387, 0],\n            [-1.246535792867682, 48.67817267129094, 0],\n            [-1.246556364748441, 48.678198752372, 0],\n            [-1.246579468433027, 48.6782238866025, 0],\n            [-1.246605004990435, 48.67824796635229, 0],\n            [-1.246632865070898, 48.67827088850662, 0],\n            [-1.246662929374405, 48.67829255490769, 0],\n            [-1.246695069161257, 48.67831287277488, 0],\n            [-1.246729146803824, 48.67833175510234, 0],\n            [-1.246765016375657, 48.67834912103148, 0],\n            [-1.246802524275883, 48.67836489619701, 0],\n            [-1.246841509888041, 48.67837901304579, 0],\n            [-1.246881806266855, 48.67839141112576, 0],\n            [-1.246923240853817, 48.67840203734533, 0],\n            [-1.246965636215838, 48.67841084620017, 0],\n            [-1.247008810805281, 48.67841779996843, 0],\n            [-1.24705257973738, 48.67842286887231, 0],\n            [-1.247096755582182, 48.67842603120543, 0],\n            [-1.24714114916691, 48.67842727342575, 0],\n            [-1.247185570386373, 48.67842659021379, 0],\n            [-1.247229829016894, 48.67842398449519, 0],\n            [-1.247273735531258, 48.67841946742847, 0],\n            [-1.247317101910146, 48.67841305835671, 0],\n            [-1.247359742449246, 48.6784047847251, 0],\n            [-1.247367569793418, 48.67840304493227, 0],\n            [-1.247774238771711, 48.67831082770269, 0],\n            [-1.24795849436965, 48.67833785740273, 0],\n            [-1.247966563828471, 48.67833900713021, 0],\n            [-1.248010332788547, 48.67834407566839, 0],\n            [-1.248054508624357, 48.67834723763243, 0],\n            [-1.248098902163142, 48.67834847948187, 0],\n            [-1.248176546259294, 48.67834602085684, 0],\n            [-1.24817788729056, 48.6783473830094, 0],\n            [-1.248203424676286, 48.67837146240291, 0],\n            [-1.248231285553991, 48.67839438416848, 0],\n            [-1.248261350620228, 48.6784160501502, 0],\n            [-1.24829349113204, 48.67843636756902, 0],\n            [-1.24832756945866, 48.6784552494212, 0],\n            [-1.248363439670761, 48.67847261485001, 0],\n            [-1.248400948164692, 48.6784883894924, 0],\n            [-1.248439934321435, 48.67850250579741, 0],\n            [-1.248480231193434, 48.67851490331542, 0],\n            [-1.248521666220004, 48.67852552895716, 0],\n            [-1.248564061966218, 48.67853433722075, 0],\n            [-1.248607236882799, 48.67854129038696, 0],\n            [-1.248651006083603, 48.67854635868054, 0],\n            [-1.248695182137458, 48.67854952039762, 0],\n            [-1.248739575870708, 48.67855076199892, 0],\n            [-1.248783997177521, 48.67855007816757, 0],\n            [-1.24882825583392, 48.67854747183191, 0],\n            [-1.248872162312493, 48.67854295415303, 0],\n            [-1.248875154080686, 48.6785425749512, 0],\n            [-1.248912327695053, 48.67857666479124, 0],\n            [-1.2489202221036, 48.67858375686092, 0],\n            [-1.248948083425809, 48.67860667845203, 0],\n            [-1.248978148927757, 48.67862834424527, 0],\n            [-1.249010289865109, 48.67864866146283, 0],\n            [-1.249044368604879, 48.67866754310167, 0],\n            [-1.249080239215921, 48.67868490830583, 0],\n            [-1.249117748093265, 48.67870068271341, 0],\n            [-1.249156734615895, 48.67871479877444, 0],\n            [-1.249197031834817, 48.67872719604034, 0],\n            [-1.249238467187885, 48.67873782142275, 0],\n            [-1.249280863238615, 48.67874662942113, 0],\n            [-1.249324038436792, 48.6787535823173, 0],\n            [-1.24936780789465, 48.67875865033711, 0],\n            [-1.24941198418014, 48.67876181177793, 0],\n            [-1.249456378118545, 48.67876305310158, 0],\n            [-1.249500799603196, 48.67876236899253, 0],\n            [-1.249545058409316, 48.67875976238013, 0],\n            [-1.249588965008892, 48.67875524442675, 0],\n            [-1.249632331382264, 48.67874883447938, 0],\n            [-1.249674971823302, 48.67874055998721, 0],\n            [-1.249716703735009, 48.67873045638361, 0],\n            [-1.249757348410734, 48.67871856693503, 0],\n            [-1.249796731800583, 48.67870494255509, 0],\n            [-1.249834685255782, 48.67868964158679, 0],\n            [-1.249871046251516, 48.67867272955282, 0],\n            [-1.249905659082597, 48.67865427887463, 0],\n            [-1.249918925653959, 48.67864651866324, 0],\n            [-1.250541877546689, 48.67827243687486, 0],\n            [-1.250561327128135, 48.67826028666812, 0],\n            [-1.250592006603735, 48.67823900181549, 0],\n            [-1.250620518223, 48.67821643374724, 0],\n            [-1.250646739895693, 48.67819267910516, 0],\n            [-1.250670559338312, 48.67816783961165, 0],\n            [-1.250691874554384, 48.67814202163497, 0],\n            [-1.25071059427168, 48.67811533573292, 0],\n            [-1.2507266383327, 48.67808789618005, 0],\n            [-1.250739938038217, 48.67805982047773, 0],\n            [-1.250750436440824, 48.67803122885142, 0],\n            [-1.250758088589499, 48.67800224373575, 0],\n            [-1.250762861721109, 48.67797298924984, 0],\n            [-1.250764735401699, 48.67794359066635, 0],\n            [-1.250763701612565, 48.67791417387459, 0],\n            [-1.25075976478602, 48.67788486484174, 0],\n            [-1.250752941784816, 48.67785578907336, 0],\n            [-1.250743261831278, 48.67782707107573, 0],\n            [-1.250730766380763, 48.67779883382316, 0],\n            [-1.250728139143915, 48.67779365096346, 0],\n            [-1.250388537107903, 48.67713695433926, 0],\n            [-1.250403071092878, 48.67713343534125, 0],\n            [-1.250443714315146, 48.67712154564789, 0],\n            [-1.250483096267905, 48.6771079210305, 0],\n            [-1.250521048308635, 48.67709261983311, 0],\n            [-1.250557407918398, 48.67707570757939, 0],\n            [-1.25059201939806, 48.6770572566917, 0],\n            [-1.25062473453506, 48.67703734618126, 0],\n            [-1.250655413237418, 48.67701606130963, 0],\n            [-1.250683924134681, 48.67699349322363, 0],\n            [-1.250710145139669, 48.67696973856471, 0],\n            [-1.250733963971555, 48.67694489905578, 0],\n            [-1.250740615202202, 48.67693726374228, 0],\n            [-1.251131459480284, 48.67647825090927, 0],\n            [-1.251665848284351, 48.67636597653031, 0],\n            [-1.251633603315236, 48.67667755930504, 0],\n            [-1.251160983910065, 48.67806323408025, 0],\n            [-1.251158626854894, 48.67807041724788, 0],\n            [-1.251150974926902, 48.67809940239012, 0],\n            [-1.251146202009001, 48.67812865689189, 0],\n            [-1.251145887671785, 48.6781315564317, 0],\n            [-1.251067948053566, 48.67888455492231, 0],\n            [-1.250957126476131, 48.67912743647581, 0],\n            [-1.250867552061665, 48.67896766607192, 0],\n            [-1.250860749593497, 48.6789560301189, 0],\n            [-1.250842795010536, 48.67892911455081, 0],\n            [-1.250822220607175, 48.67890303424046, 0],\n            [-1.250799114489316, 48.6788779008664, 0],\n            [-1.25077357560307, 48.67885382205206, 0],\n            [-1.250745713311596, 48.67883090090516, 0],\n            [-1.250715646926635, 48.67880923557578, 0],\n            [-1.250683505197516, 48.67878891883653, 0],\n            [-1.250649425759784, 48.67877003768525, 0],\n            [-1.250613554545965, 48.6787526729721, 0],\n            [-1.250576045160587, 48.67873689905401, 0],\n            [-1.25053705822227, 48.67872278347566, 0],\n            [-1.250496760676449, 48.67871038668091, 0],\n            [-1.250455325080055, 48.67869976175318, 0],\n            [-1.250412928862978, 48.67869095418918, 0],\n            [-1.250369753568119, 48.67868400170308, 0],\n            [-1.25032598407423, 48.6786789340658, 0],\n            [-1.250281807804108, 48.67867577297717, 0],\n            [-1.250237413922377, 48.67867453197312, 0],\n            [-1.250192992525376, 48.67867521636765, 0],\n            [-1.25014873382727, 48.67867782323022, 0],\n            [-1.250104827345639, 48.67868234139798, 0],\n            [-1.250061461089873, 48.67868875152413, 0],\n            [-1.250018820756389, 48.67869702616019, 0],\n            [-1.249977088933232, 48.67870712987373, 0],\n            [-1.249966262695146, 48.67871009245918, 0],\n            [-1.249620657987414, 48.67880698562404, 0],\n            [-1.248319768190209, 48.67871977384971, 0],\n            [-1.248302208402385, 48.67871874883972, 0],\n            [-1.248257814531606, 48.67871750706907, 0],\n            [-1.248213393069677, 48.67871819069651, 0],\n            [-1.248169134231123, 48.67872079679476, 0],\n            [-1.248125227534045, 48.67872531420437, 0],\n            [-1.24808186098881, 48.6787317235816, 0],\n            [-1.248039220293076, 48.67873999748124, 0],\n            [-1.247997488036305, 48.67875010047417, 0],\n            [-1.247956842918874, 48.67876198929874, 0],\n            [-1.247917458985739, 48.67877561304654, 0],\n            [-1.247881476931023, 48.67879006183803, 0],\n            [-1.24687294246892, 48.67922389636892, 0],\n            [-1.246870970385883, 48.6792247478935, 0],\n            [-1.246834607981675, 48.67924165897518, 0],\n            [-1.246799993618999, 48.67926010872528, 0],\n            [-1.246767275520848, 48.67928001814072, 0],\n            [-1.246736593790752, 48.67930130196811, 0],\n            [-1.246708079812573, 48.67932386906836, 0],\n            [-1.24668185568876, 48.6793476228075, 0],\n            [-1.246658033716386, 48.67937246146987, 0],\n            [-1.246636715906988, 48.67939827869411, 0],\n            [-1.246617993549484, 48.67942496392821, 0],\n            [-1.246605738087758, 48.67944541710989, 0],\n            [-1.245584979523424, 48.68127851138964, 0],\n            [-1.245581187974749, 48.68128549714831, 0],\n            [-1.24556788453484, 48.68131357224498, 0],\n            [-1.245560849474705, 48.68133178462027, 0],\n            [-1.245318857578044, 48.68201765765073, 0],\n            [-1.245197617341693, 48.68205429414315, 0],\n            [-1.245185011746806, 48.6820582071799, 0],\n            [-1.245145624480017, 48.68207182997195, 0],\n            [-1.245107667044063, 48.68208712938381, 0],\n            [-1.245071301976166, 48.68210403990248, 0],\n            [-1.245036684995464, 48.68212248911603, 0],\n            [-1.245003964335862, 48.68214239802387, 0],\n            [-1.244973280112141, 48.68216368137455, 0],\n            [-1.244944763718874, 48.68218624803126, 0],\n            [-1.244918537268542, 48.6822100013618, 0],\n            [-1.24489471306841, 48.68223483965222, 0],\n            [-1.244873393139587, 48.68226065654281, 0],\n            [-1.244854668779944, 48.68228734148311, 0],\n            [-1.244838620173461, 48.6823147802052, 0],\n            [-1.244825316046421, 48.68234285521352, 0],\n            [-1.24481481337323, 48.68237144628763, 0],\n            [-1.244807157132728, 48.68240043099674, 0],\n            [-1.244802380114627, 48.68242968522457, 0],\n            [-1.244800502780039, 48.68245908370036, 0],\n            [-1.24480153317293, 48.68248850053547, 0],\n            [-1.244803908422547, 48.68250619799911, 0],\n            [-1.244786114718957, 48.68251195832204, 0],\n            [-1.244750457450219, 48.6825243826532, 0],\n            [-1.244712499552374, 48.68253968193368, 0],\n            [-1.244708066775069, 48.68254161941222, 0],\n            [-1.243901626316137, 48.68289709911278, 0],\n            [-1.243869693099187, 48.68291207180191, 0],\n            [-1.243835075120923, 48.68293052065151, 0],\n            [-1.243802353459582, 48.68295042921507, 0],\n            [-1.243771668233782, 48.68297171224281, 0],\n            [-1.243743150842713, 48.68299427859927, 0],\n            [-1.243716923403093, 48.68301803165336, 0],\n            [-1.243693098226322, 48.68304286969259, 0],\n            [-1.243671777337647, 48.68306868635811, 0],\n            [-1.243653052039155, 48.68309537110041, 0],\n            [-1.243637002518803, 48.68312280965255, 0],\n            [-1.243623697506671, 48.68315088451972, 0],\n            [-1.243613193981361, 48.68317947548194, 0],\n            [-1.243605536924812, 48.68320846010897, 0]\n          ],\n          [\n            [-1.227579260787302, 48.63277531667875, 0],\n            [-1.227615091274279, 48.63279268865445, 0],\n            [-1.227652559211712, 48.63280847013521, 0],\n            [-1.227691504154242, 48.63282259354083, 0],\n            [-1.227731759330795, 48.63283499839128, 0],\n            [-1.227745668272853, 48.63283880275819, 0],\n            [-1.228026052989257, 48.63291309183324, 0],\n            [-1.228405273609063, 48.63323697927023, 0],\n            [-1.228373524950881, 48.63325630711471, 0],\n            [-1.228342863504479, 48.63327758608698, 0],\n            [-1.228314367358256, 48.6333001486841, 0],\n            [-1.228288158537942, 48.63332389829133, 0],\n            [-1.228269668795805, 48.63334286399222, 0],\n            [-1.228073423058105, 48.63355570015795, 0],\n            [-1.228004273534877, 48.6335821889051, 0],\n            [-1.227972352325202, 48.63359520943156, 0],\n            [-1.227936016544877, 48.63361211457213, 0],\n            [-1.227901426642934, 48.63363055867426, 0],\n            [-1.227868730737751, 48.63365046275892, 0],\n            [-1.227838068837712, 48.63367174159557, 0],\n            [-1.227809572241789, 48.63369430406654, 0],\n            [-1.22779648123575, 48.6337061664686, 0],\n            [-1.227835302957707, 48.63357623718851, 0],\n            [-1.227841527941735, 48.63355192164688, 0],\n            [-1.227846310180241, 48.6335226680258, 0],\n            [-1.227848195594525, 48.63349326972713, 0],\n            [-1.227847176116204, 48.63346385263888, 0],\n            [-1.227843256115759, 48.63343454272958, 0],\n            [-1.227836452384361, 48.63340546550847, 0],\n            [-1.22782679406138, 48.63337674548815, 0],\n            [-1.227816528907832, 48.63335303684518, 0],\n            [-1.227551568345862, 48.63279887084621, 0],\n            [-1.227549361996159, 48.63279433964719, 0],\n            [-1.227534130938863, 48.63276670088419, 0],\n            [-1.227516205315198, 48.63273978157721, 0],\n            [-1.227513500665574, 48.63273634740746, 0],\n            [-1.227545221184305, 48.63275642859933, 0],\n            [-1.227579260787302, 48.63277531667875, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.219664805357696, 48.68602382728152, 0],\n            [-1.219621428889719, 48.68603022588836, 0],\n            [-1.219578777320862, 48.68603848919657, 0],\n            [-1.219537033287232, 48.68604858182246, 0],\n            [-1.219496375539564, 48.68606046054877, 0],\n            [-1.219456978176872, 48.68607407451016, 0],\n            [-1.219427395945847, 48.68608579196574, 0],\n            [-1.21846851065178, 48.68648782165304, 0],\n            [-1.218460124472649, 48.68649139502836, 0],\n            [-1.21842374725569, 48.68650829708763, 0],\n            [-1.218389117463237, 48.68652673824751, 0],\n            [-1.218356383384209, 48.68654663954188, 0],\n            [-1.218325685190502, 48.68656791575183, 0],\n            [-1.218297154336823, 48.68659047577125, 0],\n            [-1.218270912997441, 48.68661422299611, 0],\n            [-1.21824707354343, 48.68663905573889, 0],\n            [-1.218228108342261, 48.68666179236556, 0],\n            [-1.21677548687307, 48.68852866562606, 0],\n            [-1.21677311641508, 48.68853174089351, 0],\n            [-1.216754374801918, 48.68855842122932, 0],\n            [-1.216738308854166, 48.68858585600245, 0],\n            [-1.216724987372309, 48.68861392773407, 0],\n            [-1.216714467405151, 48.68864251621785, 0],\n            [-1.216706794005495, 48.68867149903408, 0],\n            [-1.216702000036614, 48.68870075207468, 0],\n            [-1.2167001060321, 48.68873015007375, 0],\n            [-1.216701120107424, 48.68875956714492, 0],\n            [-1.216705037925274, 48.68878887731957, 0],\n            [-1.216711842713927, 48.68881795508672, 0],\n            [-1.216721505339167, 48.68884667593046, 0],\n            [-1.216733984428629, 48.68887491686298, 0],\n            [-1.216749226549434, 48.68890255695143, 0],\n            [-1.21676716643617, 48.68892947783552, 0],\n            [-1.216787727271025, 48.68895556423472, 0],\n            [-1.216810821012324, 48.68898070444172, 0],\n            [-1.216836348771371, 48.68900479080075, 0],\n            [-1.216864201236185, 48.68902772016863, 0],\n            [-1.216894259139272, 48.68904939435695, 0],\n            [-1.216926393768489, 48.68906972055144, 0],\n            [-1.216937108399852, 48.68907566095718, 0],\n            [-1.216926099138609, 48.68908712792237, 0],\n            [-1.216904761938802, 48.68911293959614, 0],\n            [-1.216886020178938, 48.68913961995223, 0],\n            [-1.216869954117137, 48.68916705474258, 0],\n            [-1.216856632554804, 48.68919512648827, 0],\n            [-1.216846112540964, 48.68922371498272, 0],\n            [-1.216838439128358, 48.68925269780642, 0],\n            [-1.216833645180659, 48.68928195085113, 0],\n            [-1.216831751231262, 48.68931134885105, 0],\n            [-1.216832765395375, 48.68934076591967, 0],\n            [-1.216836683335287, 48.68937007608848, 0],\n            [-1.216843488278776, 48.68939915384648, 0],\n            [-1.216853151090966, 48.68942787467783, 0],\n            [-1.216865630398694, 48.68945611559468, 0],\n            [-1.21688087276818, 48.68948375566436, 0],\n            [-1.216898812932874, 48.68951067652661, 0],\n            [-1.216919374073804, 48.68953676290099, 0],\n            [-1.216942468147997, 48.68956190308029, 0],\n            [-1.216967996265317, 48.68958598940886, 0],\n            [-1.216995849112246, 48.68960891874377, 0],\n            [-1.217025907419669, 48.68963059289653, 0],\n            [-1.217058046877564, 48.68965092166173, 0],\n            [-1.217371912175276, 48.6898368237466, 0],\n            [-1.217405977804673, 48.68985570955552, 0],\n            [-1.217441845466534, 48.68987308464285, 0],\n            [-1.217479352760384, 48.68988886938716, 0],\n            [-1.217518339072323, 48.68990299619433, 0],\n            [-1.217558637454115, 48.68991540456965, 0],\n            [-1.217600075338678, 48.68992604137749, 0],\n            [-1.217642475278777, 48.68993486106807, 0],\n            [-1.21768565570721, 48.68994182587323, 0],\n            [-1.21772943171421, 48.68994690596787, 0],\n            [-1.217773615839488, 48.68995007959767, 0],\n            [-1.217818018874797, 48.68995133317224, 0],\n            [-1.217862450674516, 48.68995066132349, 0],\n            [-1.217906720969666, 48.68994806692835, 0],\n            [-1.217950640183032, 48.68994356109693, 0],\n            [-1.217994020240978, 48.68993716312417, 0],\n            [-1.21803667537872, 48.68992890040802, 0],\n            [-1.218078422936291, 48.68991880833156, 0],\n            [-1.218119084140275, 48.68990693011176, 0],\n            [-1.218158484869694, 48.68989331661407, 0],\n            [-1.218196456401692, 48.68987802613515, 0],\n            [-1.218232836133979, 48.68986112415253, 0],\n            [-1.218267468281109, 48.68984268304469, 0],\n            [-1.218300204542051, 48.68982278178093, 0],\n            [-1.218330904734439, 48.68980150558333, 0],\n            [-1.218359437395693, 48.68977894556136, 0],\n            [-1.218385680345526, 48.6897551983221, 0],\n            [-1.21840952120905, 48.68973036555666, 0],\n            [-1.218430857898205, 48.68970455360417, 0],\n            [-1.218449599048677, 48.6896778729968, 0],\n            [-1.218465664411517, 48.68965043798626, 0],\n            [-1.218471684858657, 48.68963775063093, 0],\n            [-1.218510551688272, 48.689628354722, 0],\n            [-1.218551212555046, 48.68961647634869, 0],\n            [-1.218590612939741, 48.68960286270227, 0],\n            [-1.21862858412086, 48.68958757207983, 0],\n            [-1.218664963497591, 48.68957066995967, 0],\n            [-1.218699595286048, 48.6895522287209, 0],\n            [-1.218732331186718, 48.68953232733332, 0],\n            [-1.218763031018735, 48.68951105101949, 0],\n            [-1.218791563321156, 48.68948849088952, 0],\n            [-1.218817805915173, 48.68946474355079, 0],\n            [-1.218841646427458, 48.68943991069494, 0],\n            [-1.218862982771349, 48.68941409866143, 0],\n            [-1.218881723584271, 48.68938741798276, 0],\n            [-1.218897788618314, 48.68935998291103, 0],\n            [-1.218911109084324, 48.6893319109287, 0],\n            [-1.218916946077193, 48.68931604686479, 0],\n            [-1.219311158533372, 48.68923336622034, 0],\n            [-1.219318005637715, 48.68923190365355, 0],\n            [-1.219359752359175, 48.68922181110999, 0],\n            [-1.219400412696472, 48.68920993243511, 0],\n            [-1.219439812532386, 48.6891963184965, 0],\n            [-1.219477783148018, 48.68918102759226, 0],\n            [-1.219514161944892, 48.68916412520218, 0],\n            [-1.219548793141763, 48.68914568370633, 0],\n            [-1.219581528441334, 48.68912578207578, 0],\n            [-1.219612227665576, 48.68910450553378, 0],\n            [-1.219640759356166, 48.68908194519178, 0],\n            [-1.219667001336575, 48.68905819765796, 0],\n            [-1.219690841236449, 48.68903336462465, 0],\n            [-1.219712176971708, 48.68900755243239, 0],\n            [-1.219713682744634, 48.68900556795596, 0],\n            [-1.220712602831782, 48.68768089509464, 0],\n            [-1.220729836324375, 48.68765619859995, 0],\n            [-1.220745899796347, 48.6876287632656, 0],\n            [-1.22075921877143, 48.68760069106458, 0],\n            [-1.220769736220002, 48.68757210220734, 0],\n            [-1.220777407109106, 48.68754311911673, 0],\n            [-1.220782198595733, 48.68751386590316, 0],\n            [-1.220784090166893, 48.68748446783383, 0],\n            [-1.22078307372774, 48.68745505079586, 0],\n            [-1.220779153635849, 48.68742574075746, 0],\n            [-1.220772346682768, 48.6873966632286, 0],\n            [-1.220762682021617, 48.68736794272287, 0],\n            [-1.22075839661199, 48.6873574474196, 0],\n            [-1.220711630349567, 48.68724817404269, 0],\n            [-1.220728854589481, 48.68723623594146, 0],\n            [-1.221009622900662, 48.68702843107955, 0],\n            [-1.221038156724945, 48.68700586747024, 0],\n            [-1.221064396961369, 48.68698211961268, 0],\n            [-1.221088235186183, 48.68695728628485, 0],\n            [-1.2211095693226, 48.68693147382821, 0],\n            [-1.221128308017256, 48.68690479277707, 0],\n            [-1.221144371031735, 48.68687735738523, 0],\n            [-1.221157689585135, 48.68684928513626, 0],\n            [-1.221168206649774, 48.68682069624085, 0],\n            [-1.221175877194494, 48.68679171312187, 0],\n            [-1.221180668377624, 48.68676245988991, 0],\n            [-1.221182559687433, 48.68673306181222, 0],\n            [-1.221181543030294, 48.68670364477601, 0],\n            [-1.221177622764622, 48.68667433474954, 0],\n            [-1.221170815682804, 48.68664525724248, 0],\n            [-1.221161150938459, 48.68661653676872, 0],\n            [-1.221148669922239, 48.68658829631307, 0],\n            [-1.221133426084127, 48.68656065680443, 0],\n            [-1.221115484704365, 48.68653373659841, 0],\n            [-1.221094922614074, 48.68650765097032, 0],\n            [-1.22107182786644, 48.68648251162126, 0],\n            [-1.221046299358792, 48.68645842620046, 0],\n            [-1.221018446410005, 48.6864354978438, 0],\n            [-1.220988388291691, 48.68641382473213, 0],\n            [-1.220956253717849, 48.68639349967177, 0],\n            [-1.220922180293427, 48.68637460969579, 0],\n            [-1.220886313924972, 48.68635723569236, 0],\n            [-1.220848808196569, 48.68634145205807, 0],\n            [-1.220809823711029, 48.68632732637933, 0],\n            [-1.220769527403298, 48.68631491914309, 0],\n            [-1.22072809182503, 48.68630428347758, 0],\n            [-1.220685694406034, 48.68629546492549, 0],\n            [-1.220650435048101, 48.68628963061322, 0],\n            [-1.220430605836327, 48.68625736748525, 0],\n            [-1.220279800044912, 48.68615371956964, 0],\n            [-1.220275637258177, 48.68615088356881, 0],\n            [-1.22024350314067, 48.68613055830829, 0],\n            [-1.220209430162351, 48.68611166812003, 0],\n            [-1.220173564227869, 48.68609429389326, 0],\n            [-1.22013605891945, 48.68607851002549, 0],\n            [-1.220097074838147, 48.68606438410414, 0],\n            [-1.220056778917147, 48.68605197661718, 0],\n            [-1.220015343706444, 48.68604134069392, 0],\n            [-1.219972946634271, 48.68603252187796, 0],\n            [-1.219929769247226, 48.6860255579321, 0],\n            [-1.219885996432932, 48.6860204786758, 0],\n            [-1.219841815628477, 48.68601730585903, 0],\n            [-1.219797416017949, 48.6860160530678, 0],\n            [-1.219752987722067, 48.68601672566654, 0],\n            [-1.219708720984671, 48.68601932077528, 0],\n            [-1.219664805357696, 48.68602382728152, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.231876888232117, 48.68704078661146, 0],\n            [-1.231894835556144, 48.68706770513215, 0],\n            [-1.231915403480068, 48.68709378882199, 0],\n            [-1.23193850393178, 48.68711892598532, 0],\n            [-1.231964037993865, 48.68714300897948, 0],\n            [-1.231991896327345, 48.68716593467569, 0],\n            [-1.232021959639524, 48.68718760490103, 0],\n            [-1.232054099195261, 48.68720792685863, 0],\n            [-1.232088177367805, 48.68722681352494, 0],\n            [-1.232124048228227, 48.68724418402274, 0],\n            [-1.232152691648902, 48.68725643765121, 0],\n            [-1.233737282913006, 48.68789755088939, 0],\n            [-1.233746149658883, 48.68790107708287, 0],\n            [-1.233785138999959, 48.68791519836111, 0],\n            [-1.233825439802894, 48.68792760102125, 0],\n            [-1.233866879489995, 48.68793823195183, 0],\n            [-1.233889218960429, 48.68794312699608, 0],\n            [-1.2353537229601, 48.68824548430882, 0],\n            [-1.236200922295525, 48.68959870231987, 0],\n            [-1.236216327853634, 48.68962149760413, 0],\n            [-1.236236899065228, 48.6896475805134, 0],\n            [-1.236260002851932, 48.68967271680093, 0],\n            [-1.236285540282003, 48.6896967988277, 0],\n            [-1.236313402002054, 48.68971972346925, 0],\n            [-1.236343468704921, 48.68974139255705, 0],\n            [-1.236375611640994, 48.68976171329906, 0],\n            [-1.236409693168774, 48.68978059867713, 0],\n            [-1.236445567345244, 48.68979796781938, 0],\n            [-1.236474211744936, 48.68981021974684, 0],\n            [-1.236984238317231, 48.69001654098786, 0],\n            [-1.236993107194624, 48.69002006754857, 0],\n            [-1.237032099091655, 48.6900341877203, 0],\n            [-1.23707240239483, 48.69004658923706, 0],\n            [-1.237113844515845, 48.69005721899229, 0],\n            [-1.237156247989337, 48.69006603146677, 0],\n            [-1.237199431233198, 48.6900729889231, 0],\n            [-1.237243209325269, 48.69007806156756, 0],\n            [-1.237287394796531, 48.69008122767783, 0],\n            [-1.237331798432959, 48.69008247369567, 0],\n            [-1.237376230086256, 48.69008179428539, 0],\n            [-1.2374204994882, 48.69007919235634, 0],\n            [-1.237464417065335, 48.69007467905077, 0],\n            [-1.237507794751018, 48.69006827369573, 0],\n            [-1.237550446790658, 48.69006000372082, 0],\n            [-1.237592190537518, 48.69004990454005, 0],\n            [-1.237632847234547, 48.6900380194009, 0],\n            [-1.237672242780072, 48.69002439919854, 0],\n            [-1.237710208473402, 48.69000910225806, 0],\n            [-1.237746581737222, 48.68999219408496, 0],\n            [-1.237781206813848, 48.68997374708415, 0],\n            [-1.237813935432564, 48.68995384025009, 0],\n            [-1.237844627443596, 48.68993255882874, 0],\n            [-1.237873151419537, 48.68990999395202, 0],\n            [-1.237899385217212, 48.68988624224765, 0],\n            [-1.237923216500978, 48.68986140542603, 0],\n            [-1.237944543223766, 48.68983558984346, 0],\n            [-1.237963274064065, 48.68980890604781, 0],\n            [-1.23797198165895, 48.68979468992837, 0],\n            [-1.237992349874044, 48.68978737681825, 0],\n            [-1.238030315290895, 48.68977207977153, 0],\n            [-1.238066688275499, 48.68975517149655, 0],\n            [-1.238101313071389, 48.68973672439871, 0],\n            [-1.238134041408949, 48.68971681747293, 0],\n            [-1.238164733139706, 48.68969553596549, 0],\n            [-1.23819325683743, 48.6896729710087, 0],\n            [-1.238219490360144, 48.68964921923065, 0],\n            [-1.238243321373327, 48.68962438234202, 0],\n            [-1.238264647831127, 48.68959856669943, 0],\n            [-1.238283378413152, 48.68957188285098, 0],\n            [-1.23829943291536, 48.68954444506222, 0],\n            [-1.238302283653305, 48.68953894197132, 0],\n            [-1.239633076693232, 48.68691462357536, 0],\n            [-1.23964353449006, 48.68689205230523, 0],\n            [-1.239654041049243, 48.68686346171506, 0],\n            [-1.239661700941064, 48.6868344773603, 0],\n            [-1.239664105687466, 48.6868219543653, 0],\n            [-1.239681829358437, 48.6867180148527, 0],\n            [-1.239705832653528, 48.68673131527865, 0],\n            [-1.239741705792767, 48.68674868339397, 0],\n            [-1.239779217756483, 48.68676446084707, 0],\n            [-1.239818207910708, 48.68677858007498, 0],\n            [-1.239858509290821, 48.68679098061569, 0],\n            [-1.239899949316832, 48.68680160936673, 0],\n            [-1.23994235053229, 48.68681042081315, 0],\n            [-1.2399855313648, 48.68681737722199, 0],\n            [-1.240029306902555, 48.68682244880403, 0],\n            [-1.240073489687426, 48.6868256138415, 0],\n            [-1.240117890516879, 48.68682685878072, 0],\n            [-1.240162319254667, 48.68682617829068, 0],\n            [-1.240206585645041, 48.68682357528537, 0],\n            [-1.240250500127451, 48.6868190609115, 0],\n            [-1.240293874648526, 48.68681265450086, 0],\n            [-1.240336523467223, 48.68680438348743, 0],\n            [-1.240378263950532, 48.68679428328975, 0],\n            [-1.240418917355435, 48.68678239715964, 0],\n            [-1.240458309594366, 48.68676877599655, 0],\n            [-1.24049627198076, 48.68675347812966, 0],\n            [-1.240512379791365, 48.68674627885909, 0],\n            [-1.24098807961178, 48.68652704142327, 0],\n            [-1.241008341591614, 48.68651733154844, 0],\n            [-1.241042963077512, 48.68649888355759, 0],\n            [-1.241075688141851, 48.68647897578704, 0],\n            [-1.241106376650125, 48.68645769348676, 0],\n            [-1.241134897189915, 48.68643512779241, 0],\n            [-1.241161127632713, 48.68641137533528, 0],\n            [-1.241184955657306, 48.68638653782886, 0],\n            [-1.241206279230533, 48.68636072163257, 0],\n            [-1.241225007044313, 48.68633403729671, 0],\n            [-1.241241058906752, 48.68630659908912, 0],\n            [-1.24125414911463, 48.68627903962725, 0],\n            [-1.24144259384547, 48.68583266366214, 0],\n            [-1.241441572583335, 48.68584863847769, 0],\n            [-1.241442601079963, 48.6858780553352, 0],\n            [-1.241446533099953, 48.6859073646696, 0],\n            [-1.241453351810689, 48.68593644097353, 0],\n            [-1.241463028018364, 48.68596515973729, 0],\n            [-1.241475520292559, 48.685993397982, 0],\n            [-1.241478094351085, 48.68599847917226, 0],\n            [-1.24161726750057, 48.68626786979683, 0],\n            [-1.241629948423502, 48.68629042539506, 0],\n            [-1.241647900702565, 48.68631734239041, 0],\n            [-1.241668473380346, 48.68634342433206, 0],\n            [-1.241691578364452, 48.6863685595317, 0],\n            [-1.241717116718044, 48.68639264035504, 0],\n            [-1.241744979083739, 48.68641556368267, 0],\n            [-1.241775046151734, 48.68643723135189, 0],\n            [-1.241807189170541, 48.68645755057656, 0],\n            [-1.24184127049864, 48.68647643434506, 0],\n            [-1.241877144193815, 48.6864938017925, 0],\n            [-1.241914656637566, 48.68650957854732, 0],\n            [-1.24195364719389, 48.68652369704933, 0],\n            [-1.241993948896465, 48.68653609683966, 0],\n            [-1.242035389163883, 48.6865467248191, 0],\n            [-1.242077790538654, 48.68655553547599, 0],\n            [-1.242120971447722, 48.68656249108072, 0],\n            [-1.242164746978942, 48.68656756184757, 0],\n            [-1.242208929674205, 48.68657072606221, 0],\n            [-1.242253330331355, 48.68657197017451, 0],\n            [-1.242297758814948, 48.68657128885702, 0],\n            [-1.242342024870249, 48.68656868502712, 0],\n            [-1.242385938938151, 48.68656416983534, 0],\n            [-1.242429312967099, 48.6865577626167, 0],\n            [-1.24247196121811, 48.68654949080878, 0],\n            [-1.242513701060772, 48.68653938983353, 0],\n            [-1.242554353754424, 48.68652750294605, 0],\n            [-1.242593745214917, 48.68651388104896, 0],\n            [-1.242631706758866, 48.68649858247476, 0],\n            [-1.242668075826803, 48.68648167273578, 0],\n            [-1.242702696678968, 48.68646322424369, 0],\n            [-1.242735421062751, 48.6864433159994, 0],\n            [-1.242766100970205, 48.68642203908784, 0],\n            [-1.24304677361593, 48.68621418025731, 0],\n            [-1.243075297084517, 48.68619161116327, 0],\n            [-1.24310152648331, 48.68616785826179, 0],\n            [-1.243125353433643, 48.68614302035165, 0],\n            [-1.24314667590699, 48.68611720379397, 0],\n            [-1.243165402599906, 48.68609051914071, 0],\n            [-1.243181453325415, 48.6860630806609, 0],\n            [-1.243194759355253, 48.68603500585147, 0],\n            [-1.243205263715275, 48.68600641493407, 0],\n            [-1.243212921428858, 48.68597743034016, 0],\n            [-1.243217699709169, 48.68594817618665, 0],\n            [-1.243219578099792, 48.6859187777448, 0],\n            [-1.243218548562397, 48.68588936090333, 0],\n            [-1.243214615510573, 48.68586005162968, 0],\n            [-1.243207795791383, 48.68583097543035, 0],\n            [-1.243198118612705, 48.6858022568135, 0],\n            [-1.243185625418286, 48.68577401875609, 0],\n            [-1.243170369710349, 48.68574638217675, 0],\n            [-1.243152416819955, 48.68571946541848, 0],\n            [-1.243131843627445, 48.68569338374182, 0],\n            [-1.243108738233587, 48.68566824883111, 0],\n            [-1.243083199581354, 48.68564416831633, 0],\n            [-1.243055337032966, 48.68562124531255, 0],\n            [-1.243025269901181, 48.68559957797767, 0],\n            [-1.24299312693861, 48.68557925909313, 0],\n            [-1.24295904578611, 48.68556037566567, 0],\n            [-1.242923172383281, 48.6855430085554, 0],\n            [-1.242885660344346, 48.6855272321294, 0],\n            [-1.242846670299174, 48.68551311394322, 0],\n            [-1.242806369206451, 48.6855007144517, 0],\n            [-1.242764929638374, 48.68549008674998, 0],\n            [-1.24272252904182, 48.68548127634649, 0],\n            [-1.242687267698694, 48.68547544881101, 0],\n            [-1.242267425868173, 48.68541391417829, 0],\n            [-1.242259507166998, 48.68541278630602, 0],\n            [-1.242215732631882, 48.68540771557486, 0],\n            [-1.242171550958462, 48.68540455136253, 0],\n            [-1.242127151334524, 48.68540330721842, 0],\n            [-1.242082723880948, 48.68540398846992, 0],\n            [-1.242038458837897, 48.68540659219991, 0],\n            [-1.241994545750051, 48.68541110725908, 0],\n            [-1.241951172655156, 48.68541751431376, 0],\n            [-1.241908525278865, 48.68542578592879, 0],\n            [-1.241866786239421, 48.68543588668454, 0],\n            [-1.241826134265893, 48.68544777332929, 0],\n            [-1.241786743432878, 48.68546139496384, 0],\n            [-1.241748782415049, 48.68547669325947, 0],\n            [-1.241712413764977, 48.68549360270815, 0],\n            [-1.241677793217169, 48.6855120509026, 0],\n            [-1.241645069020816, 48.68553195884653, 0],\n            [-1.241614381305827, 48.68555324129258, 0],\n            [-1.241585861481664, 48.68557580710775, 0],\n            [-1.241559631675577, 48.6855995596636, 0],\n            [-1.241535804209197, 48.68562439724946, 0],\n            [-1.241524986590796, 48.68563749434271, 0],\n            [-1.241644546652168, 48.68535428145905, 0],\n            [-1.241644763614356, 48.68535376633652, 0],\n            [-1.241655268713746, 48.68532517555944, 0],\n            [-1.241662927217198, 48.68529619106752, 0],\n            [-1.241667706334819, 48.68526693697703, 0],\n            [-1.241669585606497, 48.68523753855907, 0],\n            [-1.241668556990125, 48.68520812170211, 0],\n            [-1.241664624895416, 48.68517881237371, 0],\n            [-1.241657806165215, 48.68514973608062, 0],\n            [-1.241648130003223, 48.68512101733144, 0],\n            [-1.241642225427855, 48.6851076701785, 0],\n            [-1.241915908717166, 48.68490498822995, 0],\n            [-1.241944431950601, 48.68488241941493, 0],\n            [-1.241970661200633, 48.68485866676972, 0],\n            [-1.241994488089175, 48.68483382909205, 0],\n            [-1.242015810587982, 48.68480801274203, 0],\n            [-1.242034537393528, 48.68478132827072, 0],\n            [-1.242050588318258, 48.68475388994639, 0],\n            [-1.242063894633128, 48.68472581526532, 0],\n            [-1.242074399362814, 48.68469722444857, 0],\n            [-1.242082057529015, 48.68466823992715, 0],\n            [-1.242086836343019, 48.68463898581781, 0],\n            [-1.242088715346092, 48.68460958739148, 0],\n            [-1.242087686497286, 48.68458017053685, 0],\n            [-1.242083754207293, 48.68455086122134, 0],\n            [-1.242076935319858, 48.68452178495176, 0],\n            [-1.242067259039281, 48.68449306623656, 0],\n            [-1.242054766805554, 48.68446482805296, 0],\n            [-1.242039512116662, 48.68443719132034, 0],\n            [-1.242021560299409, 48.68441027438226, 0],\n            [-1.242000988229481, 48.68438419249997, 0],\n            [-1.24197788400287, 48.6843590573588, 0],\n            [-1.241952346557531, 48.68433497658966, 0],\n            [-1.24192448525047, 48.68431205330871, 0],\n            [-1.241894419389249, 48.68429038567502, 0],\n            [-1.241862277720942, 48.68427006647138, 0],\n            [-1.241828197880892, 48.68425118270587, 0],\n            [-1.241792325803084, 48.68423381523996, 0],\n            [-1.241754815096043, 48.68421803844237, 0],\n            [-1.241715826383965, 48.68420391987014, 0],\n            [-1.241675526619839, 48.68419151997991, 0],\n            [-1.241634088370147, 48.68418089186832, 0],\n            [-1.241611653643651, 48.68417622980259, 0],\n            [-1.241840057862589, 48.68400707737588, 0],\n            [-1.241868580620584, 48.68398450857813, 0],\n            [-1.241894809437922, 48.68396075594858, 0],\n            [-1.241918635938335, 48.68393591828494, 0],\n            [-1.241939958095195, 48.68391010194722, 0],\n            [-1.241958684606497, 48.68388341748643, 0],\n            [-1.241974735285942, 48.68385597917077, 0],\n            [-1.241988041405508, 48.6838279044965, 0],\n            [-1.24199854599067, 48.68379931368474, 0],\n            [-1.242006204063806, 48.68377032916635, 0],\n            [-1.242010982836603, 48.68374107505811, 0],\n            [-1.242012861850468, 48.68371167663094, 0],\n            [-1.242011833064451, 48.68368225977355, 0],\n            [-1.242007900888926, 48.6836529504534, 0],\n            [-1.242006161389382, 48.68364553291259, 0],\n            [-1.242141143355307, 48.68354556556547, 0],\n            [-1.24216966571624, 48.68352299669198, 0],\n            [-1.242195894150504, 48.68349924399269, 0],\n            [-1.242219720283411, 48.68347440626558, 0],\n            [-1.242241042089891, 48.68344858987092, 0],\n            [-1.242259768269438, 48.68342190535999, 0],\n            [-1.242275818637153, 48.68339446700121, 0],\n            [-1.242289124466391, 48.68336639229098, 0],\n            [-1.242299628783887, 48.68333780145056, 0],\n            [-1.242307286613118, 48.68330881691107, 0],\n            [-1.242312065166791, 48.68327956278919, 0],\n            [-1.24231394398735, 48.68325016435606, 0],\n            [-1.242312915034567, 48.68322074750031, 0],\n            [-1.242308982719573, 48.68319143818946, 0],\n            [-1.242302163886315, 48.68316236193017, 0],\n            [-1.242292487738732, 48.68313364323087, 0],\n            [-1.242279995716276, 48.68310540506886, 0],\n            [-1.242264741316113, 48.68307776836327, 0],\n            [-1.242246789863708, 48.68305085145758, 0],\n            [-1.242226218233269, 48.68302476961295, 0],\n            [-1.242215683189332, 48.68301330828354, 0],\n            [-1.242423258688441, 48.68285957529984, 0],\n            [-1.242451780533487, 48.68283700635504, 0],\n            [-1.242478008476524, 48.68281325358993, 0],\n            [-1.242501834144882, 48.68278841580286, 0],\n            [-1.242523155515531, 48.68276259935436, 0],\n            [-1.242541881289763, 48.68273591479587, 0],\n            [-1.242557931284436, 48.68270847639617, 0],\n            [-1.242571236774586, 48.68268040165172, 0],\n            [-1.242581740788245, 48.68265181078393, 0],\n            [-1.242589398350329, 48.68262282622402, 0],\n            [-1.242594176674625, 48.68259357208886, 0],\n            [-1.242596055304537, 48.6825641736495, 0],\n            [-1.242595026200715, 48.68253475679471, 0],\n            [-1.24259109377491, 48.68250544749196, 0],\n            [-1.242584274871488, 48.68247637124791, 0],\n            [-1.242574598694808, 48.6824476525709, 0],\n            [-1.242562106684342, 48.68241941443812, 0],\n            [-1.242546852337256, 48.68239177776857, 0],\n            [-1.242528900978777, 48.68236486090563, 0],\n            [-1.24250832948269, 48.68233877911024, 0],\n            [-1.242485225942489, 48.68231364406726, 0],\n            [-1.242459689293214, 48.68228956340731, 0],\n            [-1.242431828888471, 48.68226664024594, 0],\n            [-1.242401764031906, 48.68224497274191, 0],\n            [-1.242369623466337, 48.68222465367724, 0],\n            [-1.242335544822391, 48.68220577005949, 0],\n            [-1.242299674028915, 48.68218840274961, 0],\n            [-1.242262164688921, 48.68217262611546, 0],\n            [-1.242223177420787, 48.68215850771354, 0],\n            [-1.24218287917125, 48.6821461079996, 0],\n            [-1.242141442500375, 48.6821354800697, 0],\n            [-1.242099044842571, 48.68212666943337, 0],\n            [-1.242063785924805, 48.68212084170458, 0],\n            [-1.241643972874622, 48.6820593047727, 0],\n            [-1.241636054715873, 48.68205817685707, 0],\n            [-1.24159228316483, 48.68205310588655, 0],\n            [-1.24154810447902, 48.68204994143317, 0],\n            [-1.24150370783344, 48.68204869704734, 0],\n            [-1.241459283336159, 48.68204937805739, 0],\n            [-1.241415021214711, 48.68205198154737, 0],\n            [-1.241371111001346, 48.68205649636892, 0],\n            [-1.241327740721379, 48.68206290318948, 0],\n            [-1.241285096088494, 48.68207117457477, 0],\n            [-1.241243359709121, 48.68208127510623, 0],\n            [-1.241202710301002, 48.68209316153303, 0],\n            [-1.241163321927699, 48.68210678295695, 0],\n            [-1.241125363253395, 48.68212208105017, 0],\n            [-1.24108899682063, 48.68213899030557, 0],\n            [-1.241054378354356, 48.68215743831664, 0],\n            [-1.241021656094894, 48.6821773460878, 0],\n            [-1.240990970163838, 48.68219862837257, 0],\n            [-1.240962451963037, 48.68222119403864, 0],\n            [-1.240936223612785, 48.6822449464581, 0],\n            [-1.24091239742848, 48.68226978392087, 0],\n            [-1.240891075439625, 48.68229560007076, 0],\n            [-1.240872348953124, 48.6823222843605, 0],\n            [-1.240856298161708, 48.68234972252508, 0],\n            [-1.240842991801314, 48.68237779707117, 0],\n            [-1.240832486856001, 48.68240638778029, 0],\n            [-1.24082482831386, 48.68243537222333, 0],\n            [-1.240820048974936, 48.68246462628516, 0],\n            [-1.240818169310072, 48.68249402469557, 0],\n            [-1.240819197373266, 48.68252344156639, 0],\n            [-1.240823128767377, 48.68255275092985, 0],\n            [-1.240829946662465, 48.6825818272785, 0],\n            [-1.240839621868282, 48.68261054610245, 0],\n            [-1.240852112958644, 48.6826387844225, 0],\n            [-1.240854686782378, 48.68264386562812, 0],\n            [-1.240924047025767, 48.68277813582048, 0],\n            [-1.24092058261297, 48.68277914883599, 0],\n            [-1.240881193625718, 48.68279277016226, 0],\n            [-1.240843234347557, 48.68280806816124, 0],\n            [-1.240806867323605, 48.68282497732622, 0],\n            [-1.240772248281392, 48.68284342525114, 0],\n            [-1.240739525463657, 48.68286333294072, 0],\n            [-1.240708838994371, 48.68288461514884, 0],\n            [-1.240680320277763, 48.68290718074352, 0],\n            [-1.240654091436284, 48.68293093309715, 0],\n            [-1.24063026478743, 48.68295577049997, 0],\n            [-1.240608942362704, 48.68298158659603, 0],\n            [-1.240590215470887, 48.68300827083824, 0],\n            [-1.240574164306429, 48.6830357089619, 0],\n            [-1.240560857606907, 48.68306378347377, 0],\n            [-1.240550352357737, 48.68309237415547, 0],\n            [-1.24054269354843, 48.68312135857809, 0],\n            [-1.240537913980089, 48.68315061262656, 0],\n            [-1.240536034124578, 48.68318001103087, 0],\n            [-1.240537062036713, 48.68320942790261, 0],\n            [-1.240540993319972, 48.68323873727418, 0],\n            [-1.240547699315651, 48.68326733671395, 0],\n            [-1.240542141356118, 48.68326957658968, 0],\n            [-1.240505773896994, 48.68328648565857, 0],\n            [-1.240471154426444, 48.68330493349185, 0],\n            [-1.240438431189044, 48.68332484109481, 0],\n            [-1.240407744310565, 48.68334612322155, 0],\n            [-1.240379225196955, 48.68336868874052, 0],\n            [-1.240352995972422, 48.68339244102442, 0],\n            [-1.240329168956003, 48.68341727836377, 0],\n            [-1.240307846180917, 48.68344309440289, 0],\n            [-1.240289118957345, 48.68346977859497, 0],\n            [-1.240273067481157, 48.68349721667546, 0],\n            [-1.240259760491307, 48.68352529115141, 0],\n            [-1.24024925497443, 48.68355388180449, 0],\n            [-1.240241595921199, 48.68358286620597, 0],\n            [-1.240236816133753, 48.6836121202408, 0],\n            [-1.240234936084896, 48.68364151863908, 0],\n            [-1.240235963830265, 48.6836709355125, 0],\n            [-1.240239894974016, 48.68370024489334, 0],\n            [-1.24024671268743, 48.68372932127408, 0],\n            [-1.240256387780876, 48.68375804014464, 0],\n            [-1.240268878828712, 48.68378627852572, 0],\n            [-1.240271452652246, 48.68379135974395, 0],\n            [-1.240410007775161, 48.6840595798357, 0],\n            [-1.240404632655152, 48.68406037379048, 0],\n            [-1.240361986175804, 48.68406864483102, 0],\n            [-1.240320247952387, 48.68407874502493, 0],\n            [-1.240279596710674, 48.6840906311226, 0],\n            [-1.240240206522203, 48.68410425222712, 0],\n            [-1.24020224605861, 48.68411955001244, 0],\n            [-1.24016587787019, 48.68413645897235, 0],\n            [-1.240131257689427, 48.68415490670182, 0],\n            [-1.240098533764178, 48.68417481420634, 0],\n            [-1.24006784622293, 48.6841960962408, 0],\n            [-1.240039326474427, 48.68421866167368, 0],\n            [-1.240013096645838, 48.6842424138782, 0],\n            [-1.239989269058615, 48.68426725114533, 0],\n            [-1.239976957171765, 48.68428166320464, 0],\n            [-1.239692885818504, 48.68462895889504, 0],\n            [-1.239632015134651, 48.68465701311774, 0],\n            [-1.239630993618099, 48.68465644706258, 0],\n            [-1.239595122010255, 48.68463907890984, 0],\n            [-1.239557611690405, 48.68462330139381, 0],\n            [-1.239518623281164, 48.6846091820749, 0],\n            [-1.239478323734145, 48.6845967814126, 0],\n            [-1.239436885614929, 48.68458615250732, 0],\n            [-1.239394486364318, 48.68457734087247, 0],\n            [-1.239351307537844, 48.68457038423979, 0],\n            [-1.239307534029726, 48.68456531239796, 0],\n            [-1.239263353279827, 48.68456214706481, 0],\n            [-1.239218954471957, 48.68456090179441, 0],\n            [-1.239174527723577, 48.684561581919, 0],\n            [-1.239130263271733, 48.68456418452637, 0],\n            [-1.239086350658627, 48.68456869847195, 0],\n            [-1.239042977919946, 48.68457510442696, 0],\n            [-1.239000330779847, 48.68458337496065, 0],\n            [-1.23895859185543, 48.68459347465845, 0],\n            [-1.238917939875648, 48.68460536027278, 0],\n            [-1.238878548914695, 48.684618980909, 0],\n            [-1.238840587648005, 48.68463427824284, 0],\n            [-1.238804218629188, 48.68465118677014, 0],\n            [-1.238769597594289, 48.68466963408766, 0],\n            [-1.238736872794599, 48.68468954120281, 0],\n            [-1.238706192238963, 48.68471081703906, 0],\n            [-1.238425510039201, 48.68491866526829, 0],\n            [-1.238417186554359, 48.68492525040573, 0],\n            [-1.237639148791203, 48.68482564305124, 0],\n            [-1.237605349430793, 48.68482189892747, 0],\n            [-1.237561168562529, 48.68481873293844, 0],\n            [-1.237516769570246, 48.68481748700888, 0],\n            [-1.237472342572066, 48.68481816647388, 0],\n            [-1.237428077806133, 48.68482076842402, 0],\n            [-1.237384164816069, 48.68482528171756, 0],\n            [-1.237340791639079, 48.68483168702848, 0],\n            [-1.237298144001218, 48.68483995692888, 0],\n            [-1.237256404521765, 48.68485005600678, 0],\n            [-1.237243648350905, 48.68485378534642, 0],\n            [-1.237233694379578, 48.68484896558083, 0],\n            [-1.23719618464424, 48.68483318729254, 0],\n            [-1.237157196735499, 48.6848190671708, 0],\n            [-1.237119495136776, 48.68480740182307, 0],\n            [-1.23502955450538, 48.68421167478038, 0],\n            [-1.235026957032823, 48.68421093858871, 0],\n            [-1.23498552017302, 48.6842003080742, 0],\n            [-1.234943122028085, 48.6841914947929, 0],\n            [-1.234899944149273, 48.68418453648365, 0],\n            [-1.234856171426366, 48.68417946294214, 0],\n            [-1.234811991295972, 48.68417629589352, 0],\n            [-1.234808291795027, 48.68417611826649, 0],\n            [-1.23425881494001, 48.68415073313425, 0],\n            [-1.234186520180831, 48.68406791929154, 0],\n            [-1.234166853636458, 48.68404676249908, 0],\n            [-1.234141320091799, 48.68402267998964, 0],\n            [-1.23411346252001, 48.68399975480997, 0],\n            [-1.234083400212767, 48.68397808512763, 0],\n            [-1.234051261901574, 48.68395776373383, 0],\n            [-1.234017185207768, 48.68393887764601, 0],\n            [-1.233981316051862, 48.68392150773599, 0],\n            [-1.233943808029494, 48.68390572838248, 0],\n            [-1.233904821753726, 48.68389160715373, 0],\n            [-1.233870878879715, 48.68388102073224, 0],\n            [-1.232575244079188, 48.6835055124789, 0],\n            [-1.232568889460737, 48.68350369619243, 0],\n            [-1.232527453703871, 48.68349306478895, 0],\n            [-1.232485056586474, 48.68348425059821, 0],\n            [-1.232441879655304, 48.68347729136278, 0],\n            [-1.232398107796406, 48.68347221688259, 0],\n            [-1.232353928442471, 48.6834690488866, 0],\n            [-1.232309530771452, 48.68346780094045, 0],\n            [-1.232265104895813, 48.68346847838771, 0],\n            [-1.232220841048985, 48.68347107832769, 0],\n            [-1.232176928770552, 48.68347558962726, 0],\n            [-1.232133556094681, 48.68348199296896, 0],\n            [-1.232090908745369, 48.6834902609332, 0],\n            [-1.232049169340537, 48.68350035811641, 0],\n            [-1.232008516611214, 48.68351224128186, 0],\n            [-1.231969124634853, 48.6835258595453, 0],\n            [-1.231931162091164, 48.68354115459265, 0],\n            [-1.231894791539274, 48.68355806092958, 0],\n            [-1.231860168721761, 48.68357650616215, 0],\n            [-1.231827441897571, 48.68359641130677, 0],\n            [-1.231796751207841, 48.68361769112811, 0],\n            [-1.231768228074825, 48.6836402545044, 0],\n            [-1.231741994639881, 48.68366400481765, 0],\n            [-1.231718163240267, 48.68368884036673, 0],\n            [-1.231696835927751, 48.68371465480363, 0],\n            [-1.231680845795273, 48.68373713182951, 0],\n            [-1.2315657331969, 48.6839112663349, 0],\n            [-1.230975957043825, 48.68421435980282, 0],\n            [-1.230949551169598, 48.68422864761228, 0],\n            [-1.230916823560355, 48.68424855249586, 0],\n            [-1.230886132086853, 48.68426983207236, 0],\n            [-1.23085760817506, 48.68429239522103, 0],\n            [-1.230831373969672, 48.68431614532463, 0],\n            [-1.230807541810925, 48.6843409806832, 0],\n            [-1.230786213754065, 48.68436679494941, 0],\n            [-1.230767481131871, 48.68439347758403, 0],\n            [-1.230751424163596, 48.68442091432915, 0],\n            [-1.230738111611316, 48.68444898769766, 0],\n            [-1.230727600485806, 48.68447757747604, 0],\n            [-1.230719935801639, 48.68450656123915, 0],\n            [-1.230715150385155, 48.68453581487471, 0],\n            [-1.230713264732941, 48.68456521311447, 0],\n            [-1.230714286925072, 48.68459463007087, 0],\n            [-1.230718212589206, 48.68462393977588, 0],\n            [-1.230725024920085, 48.68465301672045, 0],\n            [-1.230734694751221, 48.68468173639225, 0],\n            [-1.230747180679392, 48.68470997580846, 0],\n            [-1.230755886434449, 48.6847264327031, 0],\n            [-1.231471030500555, 48.68599864612484, 0],\n            [-1.231848562816744, 48.68698338565324, 0],\n            [-1.231849151231022, 48.68698490924069, 0],\n            [-1.231861638357534, 48.6870131485304, 0],\n            [-1.231876888232117, 48.68704078661146, 0]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-dissolve/test/in/issue-1237.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.49609375, 42.64507129879989],\n            [-83.49609375, 42.645576368740564],\n            [-83.49540710449219, 42.645576368740564],\n            [-83.49540710449219, 42.64507129879989],\n            [-83.49609375, 42.64507129879989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.49609375, 42.64456622475866],\n            [-83.49609375, 42.64507129879989],\n            [-83.49540710449219, 42.64507129879989],\n            [-83.49540710449219, 42.64456622475866],\n            [-83.49609375, 42.64456622475866]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.49609375, 42.64052548480924],\n            [-83.49609375, 42.64103059165476],\n            [-83.49540710449219, 42.64103059165476],\n            [-83.49540710449219, 42.64052548480924],\n            [-83.49609375, 42.64052548480924]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.42674255371094, 42.681930627802714],\n            [-83.42674255371094, 42.68243539838622],\n            [-83.42605590820312, 42.68243539838622],\n            [-83.42605590820312, 42.681930627802714],\n            [-83.42674255371094, 42.681930627802714]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.42193603515625, 42.681930627802714],\n            [-83.42193603515625, 42.68243539838622],\n            [-83.42124938964844, 42.68243539838622],\n            [-83.42124938964844, 42.681930627802714],\n            [-83.42193603515625, 42.681930627802714]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.42262268066406, 42.681930627802714],\n            [-83.42262268066406, 42.68243539838622],\n            [-83.42193603515625, 42.68243539838622],\n            [-83.42193603515625, 42.681930627802714],\n            [-83.42262268066406, 42.681930627802714]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.41850280761719, 42.681930627802714],\n            [-83.41850280761719, 42.68243539838622],\n            [-83.41781616210938, 42.68243539838622],\n            [-83.41781616210938, 42.681930627802714],\n            [-83.41850280761719, 42.681930627802714]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.49609375, 42.66880515319917],\n            [-83.49609375, 42.66931003040664],\n            [-83.49540710449219, 42.66931003040664],\n            [-83.49540710449219, 42.66880515319917],\n            [-83.49609375, 42.66880515319917]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.49540710449219, 42.66830027189085],\n            [-83.49540710449219, 42.66880515319917],\n            [-83.49472045898438, 42.66880515319917],\n            [-83.49472045898438, 42.66830027189085],\n            [-83.49540710449219, 42.66830027189085]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.49472045898438, 42.66830027189085],\n            [-83.49472045898438, 42.66880515319917],\n            [-83.49403381347656, 42.66880515319917],\n            [-83.49403381347656, 42.66830027189085],\n            [-83.49472045898438, 42.66830027189085]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-dissolve/test/in/polysByProperty.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"propertyName\": \"combine\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#555555\",\n        \"stroke-width\": 2,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#ff0000\",\n        \"fill-opacity\": 0.5,\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5, 0],\n            [0, 1],\n            [1, 1],\n            [1, 0.5],\n            [0.7, 0],\n            [0.5, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#555555\",\n        \"stroke-width\": 2,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#ff0000\",\n        \"fill-opacity\": 0.5,\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 0],\n            [1, 1],\n            [2, 1],\n            [2, 0],\n            [1, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#555555\",\n        \"stroke-width\": 2,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#ff0000\",\n        \"fill-opacity\": 0.5,\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.23620605468749623, -0.8901516807502449],\n            [0.23620605468749623, 0.10986321392741416],\n            [1.2362060546874962, 0.10986321392741416],\n            [1.2362060546874962, -0.8901516807502449],\n            [0.23620605468749623, -0.8901516807502449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#555555\",\n        \"stroke-width\": 2,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00ff00\",\n        \"fill-opacity\": 0.5,\n        \"combine\": \"no\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, -1],\n            [1, 0],\n            [2, 0],\n            [2, -1],\n            [1, -1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#555555\",\n        \"stroke-width\": 2,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00ff00\",\n        \"fill-opacity\": 0.5,\n        \"combine\": \"no\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.851440429687502, -1.647722051796948],\n            [0.851440429687502, 1.4500404973607692],\n            [1.516113281250002, 1.4500404973607692],\n            [1.516113281250002, -1.647722051796948],\n            [0.851440429687502, -1.647722051796948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#555555\",\n        \"stroke-width\": 2,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#ffff00\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.252685546875, 1.252341676699629],\n            [-0.252685546875, 1.653212936926045],\n            [0.28564453125, 1.653212936926045],\n            [0.28564453125, 1.252341676699629],\n            [-0.252685546875, 1.252341676699629]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-dissolve/test/in/polysWithoutProperty.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#555555\",\n        \"stroke-width\": 2,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#ff0000\",\n        \"fill-opacity\": 0.5,\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5, 0],\n            [0, 1],\n            [1, 1],\n            [1, 0.5],\n            [0.7, 0],\n            [0.5, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#555555\",\n        \"stroke-width\": 2,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#ff0000\",\n        \"fill-opacity\": 0.5,\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 0],\n            [1, 1],\n            [2, 1],\n            [2, 0],\n            [1, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#555555\",\n        \"stroke-width\": 2,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#ff0000\",\n        \"fill-opacity\": 0.5,\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.23620605468749623, -0.8901516807502449],\n            [0.23620605468749623, 0.10986321392741416],\n            [1.2362060546874962, 0.10986321392741416],\n            [1.2362060546874962, -0.8901516807502449],\n            [0.23620605468749623, -0.8901516807502449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#555555\",\n        \"stroke-width\": 2,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00ff00\",\n        \"fill-opacity\": 0.5,\n        \"combine\": \"no\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, -1],\n            [1, 0],\n            [2, 0],\n            [2, -1],\n            [1, -1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#555555\",\n        \"stroke-width\": 2,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#00ff00\",\n        \"fill-opacity\": 0.5,\n        \"combine\": \"no\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.851440429687502, -1.647722051796948],\n            [0.851440429687502, 1.4500404973607692],\n            [1.516113281250002, 1.4500404973607692],\n            [1.516113281250002, -1.647722051796948],\n            [0.851440429687502, -1.647722051796948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#555555\",\n        \"stroke-width\": 2,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#ffff00\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.252685546875, 1.252341676699629],\n            [-0.252685546875, 1.653212936926045],\n            [0.28564453125, 1.653212936926045],\n            [0.28564453125, 1.252341676699629],\n            [-0.252685546875, 1.252341676699629]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-dissolve/test/in/simplified-issue.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.705, 45.362],\n            [-75.714, 45.36],\n            [-75.717, 45.353],\n            [-75.714, 45.347],\n            [-75.705, 45.344],\n            [-75.696, 45.347],\n            [-75.692, 45.353],\n            [-75.696, 45.36],\n            [-75.705, 45.362]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.646, 45.363],\n            [-75.655, 45.36],\n            [-75.659, 45.354],\n            [-75.655, 45.348],\n            [-75.646, 45.345],\n            [-75.637, 45.348],\n            [-75.634, 45.354],\n            [-75.637, 45.36],\n            [-75.646, 45.363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.704, 45.379],\n            [-75.713, 45.377],\n            [-75.717, 45.37],\n            [-75.713, 45.364],\n            [-75.704, 45.361],\n            [-75.695, 45.364],\n            [-75.691, 45.37],\n            [-75.695, 45.377],\n            [-75.704, 45.379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.724, 45.344],\n            [-75.733, 45.342],\n            [-75.736, 45.335],\n            [-75.733, 45.329],\n            [-75.724, 45.326],\n            [-75.715, 45.329],\n            [-75.711, 45.335],\n            [-75.715, 45.342],\n            [-75.724, 45.344]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.685, 45.438],\n            [-75.694, 45.435],\n            [-75.698, 45.429],\n            [-75.694, 45.422],\n            [-75.685, 45.42],\n            [-75.676, 45.422],\n            [-75.673, 45.429],\n            [-75.676, 45.435],\n            [-75.685, 45.438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.625, 45.357],\n            [-75.634, 45.354],\n            [-75.638, 45.348],\n            [-75.634, 45.342],\n            [-75.625, 45.339],\n            [-75.616, 45.342],\n            [-75.612, 45.348],\n            [-75.616, 45.354],\n            [-75.625, 45.357]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.702, 45.378],\n            [-75.711, 45.375],\n            [-75.714, 45.369],\n            [-75.711, 45.362],\n            [-75.702, 45.36],\n            [-75.692, 45.362],\n            [-75.689, 45.369],\n            [-75.692, 45.375],\n            [-75.702, 45.378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.744, 45.405],\n            [-75.753, 45.403],\n            [-75.757, 45.396],\n            [-75.753, 45.39],\n            [-75.744, 45.388],\n            [-75.735, 45.39],\n            [-75.731, 45.396],\n            [-75.735, 45.403],\n            [-75.744, 45.405]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.691, 45.351],\n            [-75.7, 45.349],\n            [-75.703, 45.342],\n            [-75.7, 45.336],\n            [-75.691, 45.333],\n            [-75.682, 45.336],\n            [-75.678, 45.342],\n            [-75.682, 45.349],\n            [-75.691, 45.351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.706, 45.42],\n            [-75.715, 45.417],\n            [-75.719, 45.411],\n            [-75.715, 45.405],\n            [-75.706, 45.402],\n            [-75.697, 45.405],\n            [-75.693, 45.411],\n            [-75.697, 45.417],\n            [-75.706, 45.42]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.694, 45.343],\n            [-75.703, 45.34],\n            [-75.707, 45.334],\n            [-75.703, 45.327],\n            [-75.694, 45.325],\n            [-75.685, 45.327],\n            [-75.681, 45.334],\n            [-75.685, 45.34],\n            [-75.694, 45.343]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.643, 45.363],\n            [-75.652, 45.36],\n            [-75.656, 45.354],\n            [-75.652, 45.347],\n            [-75.643, 45.345],\n            [-75.634, 45.347],\n            [-75.631, 45.354],\n            [-75.634, 45.36],\n            [-75.643, 45.363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.697, 45.427],\n            [-75.706, 45.425],\n            [-75.71, 45.418],\n            [-75.706, 45.412],\n            [-75.697, 45.409],\n            [-75.688, 45.412],\n            [-75.684, 45.418],\n            [-75.688, 45.425],\n            [-75.697, 45.427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.618, 45.398],\n            [-75.627, 45.395],\n            [-75.631, 45.389],\n            [-75.627, 45.383],\n            [-75.618, 45.38],\n            [-75.609, 45.383],\n            [-75.606, 45.389],\n            [-75.609, 45.395],\n            [-75.618, 45.398]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.639, 45.437],\n            [-75.648, 45.435],\n            [-75.652, 45.428],\n            [-75.648, 45.422],\n            [-75.639, 45.419],\n            [-75.63, 45.422],\n            [-75.626, 45.428],\n            [-75.63, 45.435],\n            [-75.639, 45.437]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.754, 45.386],\n            [-75.763, 45.383],\n            [-75.767, 45.377],\n            [-75.763, 45.371],\n            [-75.754, 45.368],\n            [-75.745, 45.371],\n            [-75.741, 45.377],\n            [-75.745, 45.383],\n            [-75.754, 45.386]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.588, 45.458],\n            [-75.597, 45.456],\n            [-75.601, 45.449],\n            [-75.597, 45.443],\n            [-75.588, 45.44],\n            [-75.579, 45.443],\n            [-75.575, 45.449],\n            [-75.579, 45.456],\n            [-75.588, 45.458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.729, 45.41],\n            [-75.738, 45.407],\n            [-75.742, 45.401],\n            [-75.738, 45.394],\n            [-75.729, 45.392],\n            [-75.72, 45.394],\n            [-75.717, 45.401],\n            [-75.72, 45.407],\n            [-75.729, 45.41]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.642, 45.363],\n            [-75.651, 45.36],\n            [-75.655, 45.354],\n            [-75.651, 45.347],\n            [-75.642, 45.345],\n            [-75.633, 45.347],\n            [-75.629, 45.354],\n            [-75.633, 45.36],\n            [-75.642, 45.363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.67, 45.352],\n            [-75.679, 45.349],\n            [-75.683, 45.343],\n            [-75.679, 45.337],\n            [-75.67, 45.334],\n            [-75.661, 45.337],\n            [-75.657, 45.343],\n            [-75.661, 45.349],\n            [-75.67, 45.352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.602, 45.392],\n            [-75.611, 45.389],\n            [-75.615, 45.383],\n            [-75.611, 45.377],\n            [-75.602, 45.374],\n            [-75.593, 45.377],\n            [-75.589, 45.383],\n            [-75.593, 45.389],\n            [-75.602, 45.392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.594, 45.457],\n            [-75.603, 45.454],\n            [-75.607, 45.448],\n            [-75.603, 45.441],\n            [-75.594, 45.439],\n            [-75.585, 45.441],\n            [-75.581, 45.448],\n            [-75.585, 45.454],\n            [-75.594, 45.457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.747, 45.39],\n            [-75.756, 45.387],\n            [-75.76, 45.381],\n            [-75.756, 45.374],\n            [-75.747, 45.372],\n            [-75.738, 45.374],\n            [-75.735, 45.381],\n            [-75.738, 45.387],\n            [-75.747, 45.39]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.757, 45.385],\n            [-75.766, 45.383],\n            [-75.77, 45.376],\n            [-75.766, 45.37],\n            [-75.757, 45.367],\n            [-75.748, 45.37],\n            [-75.745, 45.376],\n            [-75.748, 45.383],\n            [-75.757, 45.385]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.631, 45.392],\n            [-75.64, 45.389],\n            [-75.644, 45.383],\n            [-75.64, 45.377],\n            [-75.631, 45.374],\n            [-75.622, 45.377],\n            [-75.618, 45.383],\n            [-75.622, 45.389],\n            [-75.631, 45.392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.641, 45.42],\n            [-75.65, 45.417],\n            [-75.654, 45.411],\n            [-75.65, 45.405],\n            [-75.641, 45.402],\n            [-75.632, 45.405],\n            [-75.628, 45.411],\n            [-75.632, 45.417],\n            [-75.641, 45.42]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.666, 45.443],\n            [-75.675, 45.44],\n            [-75.679, 45.434],\n            [-75.675, 45.428],\n            [-75.666, 45.425],\n            [-75.657, 45.428],\n            [-75.653, 45.434],\n            [-75.657, 45.44],\n            [-75.666, 45.443]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.668, 45.442],\n            [-75.677, 45.44],\n            [-75.681, 45.433],\n            [-75.677, 45.427],\n            [-75.668, 45.424],\n            [-75.659, 45.427],\n            [-75.656, 45.433],\n            [-75.659, 45.44],\n            [-75.668, 45.442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.67, 45.442],\n            [-75.679, 45.44],\n            [-75.682, 45.433],\n            [-75.679, 45.427],\n            [-75.67, 45.424],\n            [-75.661, 45.427],\n            [-75.657, 45.433],\n            [-75.661, 45.44],\n            [-75.67, 45.442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.644, 45.451],\n            [-75.653, 45.448],\n            [-75.657, 45.442],\n            [-75.653, 45.435],\n            [-75.644, 45.433],\n            [-75.635, 45.435],\n            [-75.631, 45.442],\n            [-75.635, 45.448],\n            [-75.644, 45.451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.654, 45.448],\n            [-75.663, 45.445],\n            [-75.667, 45.439],\n            [-75.663, 45.433],\n            [-75.654, 45.43],\n            [-75.645, 45.433],\n            [-75.641, 45.439],\n            [-75.645, 45.445],\n            [-75.654, 45.448]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.605, 45.424],\n            [-75.614, 45.421],\n            [-75.617, 45.415],\n            [-75.614, 45.409],\n            [-75.605, 45.406],\n            [-75.596, 45.409],\n            [-75.592, 45.415],\n            [-75.596, 45.421],\n            [-75.605, 45.424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.596, 45.428],\n            [-75.605, 45.426],\n            [-75.609, 45.419],\n            [-75.605, 45.413],\n            [-75.596, 45.41],\n            [-75.587, 45.413],\n            [-75.584, 45.419],\n            [-75.587, 45.426],\n            [-75.596, 45.428]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.702, 45.343],\n            [-75.711, 45.34],\n            [-75.715, 45.334],\n            [-75.711, 45.327],\n            [-75.702, 45.325],\n            [-75.693, 45.327],\n            [-75.689, 45.334],\n            [-75.693, 45.34],\n            [-75.702, 45.343]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.73, 45.352],\n            [-75.739, 45.35],\n            [-75.742, 45.343],\n            [-75.739, 45.337],\n            [-75.73, 45.334],\n            [-75.721, 45.337],\n            [-75.717, 45.343],\n            [-75.721, 45.35],\n            [-75.73, 45.352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.734, 45.359],\n            [-75.743, 45.357],\n            [-75.746, 45.35],\n            [-75.743, 45.344],\n            [-75.734, 45.341],\n            [-75.725, 45.344],\n            [-75.721, 45.35],\n            [-75.725, 45.357],\n            [-75.734, 45.359]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.736, 45.363],\n            [-75.745, 45.361],\n            [-75.749, 45.354],\n            [-75.745, 45.348],\n            [-75.736, 45.345],\n            [-75.727, 45.348],\n            [-75.723, 45.354],\n            [-75.727, 45.361],\n            [-75.736, 45.363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.595, 45.428],\n            [-75.604, 45.425],\n            [-75.608, 45.419],\n            [-75.604, 45.413],\n            [-75.595, 45.41],\n            [-75.586, 45.413],\n            [-75.582, 45.419],\n            [-75.586, 45.425],\n            [-75.595, 45.428]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.618, 45.429],\n            [-75.627, 45.427],\n            [-75.631, 45.42],\n            [-75.627, 45.414],\n            [-75.618, 45.411],\n            [-75.609, 45.414],\n            [-75.605, 45.42],\n            [-75.609, 45.427],\n            [-75.618, 45.429]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.605, 45.426],\n            [-75.614, 45.423],\n            [-75.617, 45.417],\n            [-75.614, 45.411],\n            [-75.605, 45.408],\n            [-75.596, 45.411],\n            [-75.592, 45.417],\n            [-75.596, 45.423],\n            [-75.605, 45.426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.773, 45.378],\n            [-75.782, 45.375],\n            [-75.786, 45.369],\n            [-75.782, 45.362],\n            [-75.773, 45.36],\n            [-75.764, 45.362],\n            [-75.76, 45.369],\n            [-75.764, 45.375],\n            [-75.773, 45.378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.636, 45.434],\n            [-75.645, 45.431],\n            [-75.648, 45.425],\n            [-75.645, 45.419],\n            [-75.636, 45.416],\n            [-75.626, 45.419],\n            [-75.623, 45.425],\n            [-75.626, 45.431],\n            [-75.636, 45.434]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.637, 45.434],\n            [-75.646, 45.432],\n            [-75.65, 45.425],\n            [-75.646, 45.419],\n            [-75.637, 45.416],\n            [-75.628, 45.419],\n            [-75.625, 45.425],\n            [-75.628, 45.432],\n            [-75.637, 45.434]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.627, 45.414],\n            [-75.636, 45.412],\n            [-75.64, 45.405],\n            [-75.636, 45.399],\n            [-75.627, 45.396],\n            [-75.618, 45.399],\n            [-75.615, 45.405],\n            [-75.618, 45.412],\n            [-75.627, 45.414]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.782, 45.38],\n            [-75.791, 45.377],\n            [-75.795, 45.371],\n            [-75.791, 45.364],\n            [-75.782, 45.362],\n            [-75.773, 45.364],\n            [-75.769, 45.371],\n            [-75.773, 45.377],\n            [-75.782, 45.38]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.757, 45.385],\n            [-75.766, 45.382],\n            [-75.77, 45.376],\n            [-75.766, 45.369],\n            [-75.757, 45.367],\n            [-75.748, 45.369],\n            [-75.744, 45.376],\n            [-75.748, 45.382],\n            [-75.757, 45.385]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.786, 45.351],\n            [-75.795, 45.348],\n            [-75.799, 45.342],\n            [-75.795, 45.336],\n            [-75.786, 45.333],\n            [-75.777, 45.336],\n            [-75.773, 45.342],\n            [-75.777, 45.348],\n            [-75.786, 45.351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.788, 45.356],\n            [-75.797, 45.354],\n            [-75.801, 45.348],\n            [-75.797, 45.341],\n            [-75.788, 45.339],\n            [-75.779, 45.341],\n            [-75.775, 45.348],\n            [-75.779, 45.354],\n            [-75.788, 45.356]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.62, 45.373],\n            [-75.629, 45.371],\n            [-75.633, 45.364],\n            [-75.629, 45.358],\n            [-75.62, 45.355],\n            [-75.611, 45.358],\n            [-75.607, 45.364],\n            [-75.611, 45.371],\n            [-75.62, 45.373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.621, 45.404],\n            [-75.63, 45.402],\n            [-75.634, 45.395],\n            [-75.63, 45.389],\n            [-75.621, 45.386],\n            [-75.612, 45.389],\n            [-75.609, 45.395],\n            [-75.612, 45.402],\n            [-75.621, 45.404]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.624, 45.383],\n            [-75.633, 45.38],\n            [-75.637, 45.374],\n            [-75.633, 45.368],\n            [-75.624, 45.365],\n            [-75.615, 45.368],\n            [-75.611, 45.374],\n            [-75.615, 45.38],\n            [-75.624, 45.383]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.677, 45.448],\n            [-75.686, 45.446],\n            [-75.689, 45.439],\n            [-75.686, 45.433],\n            [-75.677, 45.43],\n            [-75.668, 45.433],\n            [-75.664, 45.439],\n            [-75.668, 45.446],\n            [-75.677, 45.448]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.694, 45.421],\n            [-75.703, 45.418],\n            [-75.706, 45.412],\n            [-75.703, 45.405],\n            [-75.694, 45.403],\n            [-75.685, 45.405],\n            [-75.681, 45.412],\n            [-75.685, 45.418],\n            [-75.694, 45.421]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.75, 45.402],\n            [-75.759, 45.4],\n            [-75.763, 45.394],\n            [-75.759, 45.387],\n            [-75.75, 45.385],\n            [-75.741, 45.387],\n            [-75.738, 45.394],\n            [-75.741, 45.4],\n            [-75.75, 45.402]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.788, 45.35],\n            [-75.797, 45.348],\n            [-75.801, 45.341],\n            [-75.797, 45.335],\n            [-75.788, 45.332],\n            [-75.779, 45.335],\n            [-75.775, 45.341],\n            [-75.779, 45.348],\n            [-75.788, 45.35]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.692, 45.419],\n            [-75.702, 45.416],\n            [-75.705, 45.41],\n            [-75.702, 45.403],\n            [-75.692, 45.401],\n            [-75.683, 45.403],\n            [-75.68, 45.41],\n            [-75.683, 45.416],\n            [-75.692, 45.419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.631, 45.435],\n            [-75.64, 45.432],\n            [-75.644, 45.426],\n            [-75.64, 45.42],\n            [-75.631, 45.417],\n            [-75.622, 45.42],\n            [-75.618, 45.426],\n            [-75.622, 45.432],\n            [-75.631, 45.435]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.786, 45.376],\n            [-75.795, 45.374],\n            [-75.799, 45.367],\n            [-75.795, 45.361],\n            [-75.786, 45.359],\n            [-75.777, 45.361],\n            [-75.773, 45.367],\n            [-75.777, 45.374],\n            [-75.786, 45.376]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.648, 45.441],\n            [-75.657, 45.438],\n            [-75.661, 45.432],\n            [-75.657, 45.426],\n            [-75.648, 45.423],\n            [-75.639, 45.426],\n            [-75.635, 45.432],\n            [-75.639, 45.438],\n            [-75.648, 45.441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.64, 45.452],\n            [-75.649, 45.449],\n            [-75.653, 45.443],\n            [-75.649, 45.437],\n            [-75.64, 45.434],\n            [-75.631, 45.437],\n            [-75.628, 45.443],\n            [-75.631, 45.449],\n            [-75.64, 45.452]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.61, 45.427],\n            [-75.619, 45.425],\n            [-75.623, 45.419],\n            [-75.619, 45.412],\n            [-75.61, 45.41],\n            [-75.601, 45.412],\n            [-75.597, 45.419],\n            [-75.601, 45.425],\n            [-75.61, 45.427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.739, 45.37],\n            [-75.748, 45.368],\n            [-75.752, 45.361],\n            [-75.748, 45.355],\n            [-75.739, 45.352],\n            [-75.73, 45.355],\n            [-75.726, 45.361],\n            [-75.73, 45.368],\n            [-75.739, 45.37]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.704, 45.416],\n            [-75.713, 45.414],\n            [-75.717, 45.407],\n            [-75.713, 45.401],\n            [-75.704, 45.398],\n            [-75.695, 45.401],\n            [-75.691, 45.407],\n            [-75.695, 45.414],\n            [-75.704, 45.416]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.595, 45.457],\n            [-75.604, 45.454],\n            [-75.608, 45.448],\n            [-75.604, 45.441],\n            [-75.595, 45.439],\n            [-75.586, 45.441],\n            [-75.582, 45.448],\n            [-75.586, 45.454],\n            [-75.595, 45.457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.733, 45.39],\n            [-75.743, 45.388],\n            [-75.746, 45.381],\n            [-75.743, 45.375],\n            [-75.733, 45.372],\n            [-75.724, 45.375],\n            [-75.721, 45.381],\n            [-75.724, 45.388],\n            [-75.733, 45.39]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.617, 45.416],\n            [-75.626, 45.413],\n            [-75.63, 45.407],\n            [-75.626, 45.401],\n            [-75.617, 45.398],\n            [-75.608, 45.401],\n            [-75.604, 45.407],\n            [-75.608, 45.413],\n            [-75.617, 45.416]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.67, 45.452],\n            [-75.679, 45.45],\n            [-75.683, 45.444],\n            [-75.679, 45.437],\n            [-75.67, 45.435],\n            [-75.661, 45.437],\n            [-75.657, 45.444],\n            [-75.661, 45.45],\n            [-75.67, 45.452]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.742, 45.406],\n            [-75.751, 45.404],\n            [-75.755, 45.397],\n            [-75.751, 45.391],\n            [-75.742, 45.388],\n            [-75.733, 45.391],\n            [-75.729, 45.397],\n            [-75.733, 45.404],\n            [-75.742, 45.406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.756, 45.352],\n            [-75.765, 45.349],\n            [-75.769, 45.343],\n            [-75.765, 45.336],\n            [-75.756, 45.334],\n            [-75.747, 45.336],\n            [-75.744, 45.343],\n            [-75.747, 45.349],\n            [-75.756, 45.352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.809, 45.363],\n            [-75.818, 45.36],\n            [-75.822, 45.354],\n            [-75.818, 45.347],\n            [-75.809, 45.345],\n            [-75.8, 45.347],\n            [-75.796, 45.354],\n            [-75.8, 45.36],\n            [-75.809, 45.363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.67, 45.36],\n            [-75.679, 45.357],\n            [-75.683, 45.351],\n            [-75.679, 45.345],\n            [-75.67, 45.342],\n            [-75.661, 45.345],\n            [-75.657, 45.351],\n            [-75.661, 45.357],\n            [-75.67, 45.36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.708, 45.408],\n            [-75.717, 45.405],\n            [-75.721, 45.399],\n            [-75.717, 45.392],\n            [-75.708, 45.39],\n            [-75.699, 45.392],\n            [-75.695, 45.399],\n            [-75.699, 45.405],\n            [-75.708, 45.408]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.701, 45.413],\n            [-75.71, 45.41],\n            [-75.714, 45.404],\n            [-75.71, 45.397],\n            [-75.701, 45.395],\n            [-75.692, 45.397],\n            [-75.688, 45.404],\n            [-75.692, 45.41],\n            [-75.701, 45.413]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.632, 45.435],\n            [-75.641, 45.433],\n            [-75.645, 45.426],\n            [-75.641, 45.42],\n            [-75.632, 45.417],\n            [-75.623, 45.42],\n            [-75.619, 45.426],\n            [-75.623, 45.433],\n            [-75.632, 45.435]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.648, 45.438],\n            [-75.657, 45.435],\n            [-75.661, 45.429],\n            [-75.657, 45.422],\n            [-75.648, 45.42],\n            [-75.639, 45.422],\n            [-75.635, 45.429],\n            [-75.639, 45.435],\n            [-75.648, 45.438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.73, 45.407],\n            [-75.74, 45.404],\n            [-75.743, 45.398],\n            [-75.739, 45.391],\n            [-75.73, 45.389],\n            [-75.721, 45.391],\n            [-75.718, 45.398],\n            [-75.721, 45.404],\n            [-75.73, 45.407]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.702, 45.351],\n            [-75.711, 45.349],\n            [-75.715, 45.342],\n            [-75.711, 45.336],\n            [-75.702, 45.333],\n            [-75.693, 45.336],\n            [-75.689, 45.342],\n            [-75.693, 45.349],\n            [-75.702, 45.351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.63, 45.421],\n            [-75.639, 45.419],\n            [-75.643, 45.412],\n            [-75.639, 45.406],\n            [-75.63, 45.403],\n            [-75.621, 45.406],\n            [-75.617, 45.412],\n            [-75.621, 45.419],\n            [-75.63, 45.421]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.613, 45.442],\n            [-75.622, 45.44],\n            [-75.625, 45.433],\n            [-75.622, 45.427],\n            [-75.613, 45.424],\n            [-75.604, 45.427],\n            [-75.6, 45.433],\n            [-75.604, 45.44],\n            [-75.613, 45.442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.736, 45.369],\n            [-75.745, 45.366],\n            [-75.749, 45.36],\n            [-75.745, 45.354],\n            [-75.736, 45.351],\n            [-75.727, 45.354],\n            [-75.723, 45.36],\n            [-75.727, 45.366],\n            [-75.736, 45.369]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.631, 45.432],\n            [-75.64, 45.43],\n            [-75.644, 45.423],\n            [-75.64, 45.417],\n            [-75.631, 45.414],\n            [-75.622, 45.417],\n            [-75.618, 45.423],\n            [-75.622, 45.43],\n            [-75.631, 45.432]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.68, 45.441],\n            [-75.689, 45.438],\n            [-75.692, 45.432],\n            [-75.689, 45.425],\n            [-75.68, 45.423],\n            [-75.671, 45.425],\n            [-75.667, 45.432],\n            [-75.671, 45.438],\n            [-75.68, 45.441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.748, 45.384],\n            [-75.757, 45.381],\n            [-75.761, 45.375],\n            [-75.757, 45.368],\n            [-75.748, 45.366],\n            [-75.739, 45.368],\n            [-75.735, 45.375],\n            [-75.739, 45.381],\n            [-75.748, 45.384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.788, 45.372],\n            [-75.797, 45.369],\n            [-75.801, 45.363],\n            [-75.797, 45.356],\n            [-75.788, 45.354],\n            [-75.779, 45.356],\n            [-75.775, 45.363],\n            [-75.779, 45.369],\n            [-75.788, 45.372]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.621, 45.406],\n            [-75.63, 45.403],\n            [-75.634, 45.397],\n            [-75.63, 45.39],\n            [-75.621, 45.388],\n            [-75.612, 45.39],\n            [-75.608, 45.397],\n            [-75.612, 45.403],\n            [-75.621, 45.406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.752, 45.343],\n            [-75.761, 45.341],\n            [-75.765, 45.334],\n            [-75.761, 45.328],\n            [-75.752, 45.325],\n            [-75.743, 45.328],\n            [-75.739, 45.334],\n            [-75.743, 45.341],\n            [-75.752, 45.343]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.631, 45.369],\n            [-75.641, 45.367],\n            [-75.644, 45.36],\n            [-75.641, 45.354],\n            [-75.631, 45.351],\n            [-75.622, 45.354],\n            [-75.619, 45.36],\n            [-75.622, 45.367],\n            [-75.631, 45.369]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.605, 45.445],\n            [-75.614, 45.443],\n            [-75.617, 45.436],\n            [-75.614, 45.43],\n            [-75.605, 45.427],\n            [-75.596, 45.43],\n            [-75.592, 45.436],\n            [-75.596, 45.443],\n            [-75.605, 45.445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.736, 45.364],\n            [-75.745, 45.361],\n            [-75.748, 45.355],\n            [-75.745, 45.349],\n            [-75.736, 45.346],\n            [-75.727, 45.349],\n            [-75.723, 45.355],\n            [-75.727, 45.361],\n            [-75.736, 45.364]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.72, 45.336],\n            [-75.729, 45.333],\n            [-75.733, 45.327],\n            [-75.729, 45.321],\n            [-75.72, 45.318],\n            [-75.711, 45.321],\n            [-75.707, 45.327],\n            [-75.711, 45.333],\n            [-75.72, 45.336]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.65, 45.454],\n            [-75.659, 45.452],\n            [-75.662, 45.445],\n            [-75.659, 45.439],\n            [-75.65, 45.436],\n            [-75.641, 45.439],\n            [-75.637, 45.445],\n            [-75.641, 45.452],\n            [-75.65, 45.454]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.734, 45.372],\n            [-75.743, 45.37],\n            [-75.747, 45.363],\n            [-75.743, 45.357],\n            [-75.734, 45.354],\n            [-75.725, 45.357],\n            [-75.721, 45.363],\n            [-75.725, 45.37],\n            [-75.734, 45.372]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.775, 45.356],\n            [-75.784, 45.353],\n            [-75.788, 45.347],\n            [-75.784, 45.34],\n            [-75.775, 45.338],\n            [-75.766, 45.34],\n            [-75.762, 45.347],\n            [-75.766, 45.353],\n            [-75.775, 45.356]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.775, 45.356],\n            [-75.784, 45.353],\n            [-75.787, 45.347],\n            [-75.784, 45.341],\n            [-75.775, 45.338],\n            [-75.766, 45.341],\n            [-75.762, 45.347],\n            [-75.766, 45.353],\n            [-75.775, 45.356]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.721, 45.339],\n            [-75.73, 45.336],\n            [-75.734, 45.33],\n            [-75.73, 45.323],\n            [-75.721, 45.321],\n            [-75.712, 45.323],\n            [-75.708, 45.33],\n            [-75.712, 45.336],\n            [-75.721, 45.339]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.606, 45.445],\n            [-75.615, 45.442],\n            [-75.618, 45.436],\n            [-75.615, 45.43],\n            [-75.606, 45.427],\n            [-75.596, 45.43],\n            [-75.593, 45.436],\n            [-75.596, 45.442],\n            [-75.606, 45.445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.643, 45.363],\n            [-75.652, 45.361],\n            [-75.656, 45.354],\n            [-75.652, 45.348],\n            [-75.643, 45.345],\n            [-75.634, 45.348],\n            [-75.63, 45.354],\n            [-75.634, 45.361],\n            [-75.643, 45.363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.696, 45.42],\n            [-75.705, 45.418],\n            [-75.708, 45.411],\n            [-75.705, 45.405],\n            [-75.696, 45.403],\n            [-75.686, 45.405],\n            [-75.683, 45.411],\n            [-75.686, 45.418],\n            [-75.696, 45.42]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.73, 45.414],\n            [-75.739, 45.412],\n            [-75.743, 45.405],\n            [-75.739, 45.399],\n            [-75.73, 45.396],\n            [-75.721, 45.399],\n            [-75.717, 45.405],\n            [-75.721, 45.412],\n            [-75.73, 45.414]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.753, 45.402],\n            [-75.762, 45.399],\n            [-75.766, 45.393],\n            [-75.762, 45.386],\n            [-75.753, 45.384],\n            [-75.744, 45.386],\n            [-75.74, 45.393],\n            [-75.744, 45.399],\n            [-75.753, 45.402]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.629, 45.455],\n            [-75.638, 45.453],\n            [-75.642, 45.446],\n            [-75.638, 45.44],\n            [-75.629, 45.437],\n            [-75.62, 45.44],\n            [-75.616, 45.446],\n            [-75.62, 45.453],\n            [-75.629, 45.455]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.639, 45.437],\n            [-75.648, 45.435],\n            [-75.652, 45.428],\n            [-75.648, 45.422],\n            [-75.639, 45.419],\n            [-75.63, 45.422],\n            [-75.626, 45.428],\n            [-75.63, 45.435],\n            [-75.639, 45.437]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.754, 45.386],\n            [-75.763, 45.384],\n            [-75.767, 45.377],\n            [-75.763, 45.371],\n            [-75.754, 45.368],\n            [-75.745, 45.371],\n            [-75.741, 45.377],\n            [-75.745, 45.384],\n            [-75.754, 45.386]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.719, 45.346],\n            [-75.728, 45.344],\n            [-75.732, 45.337],\n            [-75.728, 45.331],\n            [-75.719, 45.328],\n            [-75.71, 45.331],\n            [-75.706, 45.337],\n            [-75.71, 45.344],\n            [-75.719, 45.346]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.637, 45.434],\n            [-75.646, 45.432],\n            [-75.65, 45.425],\n            [-75.646, 45.419],\n            [-75.637, 45.416],\n            [-75.628, 45.419],\n            [-75.625, 45.425],\n            [-75.628, 45.432],\n            [-75.637, 45.434]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.691, 45.351],\n            [-75.7, 45.349],\n            [-75.703, 45.342],\n            [-75.7, 45.336],\n            [-75.691, 45.333],\n            [-75.682, 45.336],\n            [-75.678, 45.342],\n            [-75.682, 45.349],\n            [-75.691, 45.351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.702, 45.378],\n            [-75.711, 45.375],\n            [-75.714, 45.369],\n            [-75.711, 45.362],\n            [-75.702, 45.36],\n            [-75.692, 45.362],\n            [-75.689, 45.369],\n            [-75.692, 45.375],\n            [-75.702, 45.378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.719, 45.346],\n            [-75.728, 45.344],\n            [-75.732, 45.337],\n            [-75.728, 45.331],\n            [-75.719, 45.328],\n            [-75.71, 45.331],\n            [-75.706, 45.337],\n            [-75.71, 45.344],\n            [-75.719, 45.346]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.72, 45.336],\n            [-75.729, 45.333],\n            [-75.733, 45.327],\n            [-75.729, 45.321],\n            [-75.72, 45.318],\n            [-75.711, 45.321],\n            [-75.707, 45.327],\n            [-75.711, 45.333],\n            [-75.72, 45.336]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.72, 45.336],\n            [-75.729, 45.333],\n            [-75.733, 45.327],\n            [-75.729, 45.321],\n            [-75.72, 45.318],\n            [-75.711, 45.321],\n            [-75.707, 45.327],\n            [-75.711, 45.333],\n            [-75.72, 45.336]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.72, 45.336],\n            [-75.729, 45.333],\n            [-75.733, 45.327],\n            [-75.729, 45.321],\n            [-75.72, 45.318],\n            [-75.711, 45.321],\n            [-75.707, 45.327],\n            [-75.711, 45.333],\n            [-75.72, 45.336]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.72, 45.336],\n            [-75.729, 45.333],\n            [-75.733, 45.327],\n            [-75.729, 45.321],\n            [-75.72, 45.318],\n            [-75.711, 45.321],\n            [-75.707, 45.327],\n            [-75.711, 45.333],\n            [-75.72, 45.336]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.625, 45.357],\n            [-75.634, 45.354],\n            [-75.638, 45.348],\n            [-75.634, 45.342],\n            [-75.625, 45.339],\n            [-75.616, 45.342],\n            [-75.612, 45.348],\n            [-75.616, 45.354],\n            [-75.625, 45.357]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.597, 45.384],\n            [-75.606, 45.381],\n            [-75.61, 45.375],\n            [-75.606, 45.368],\n            [-75.597, 45.366],\n            [-75.588, 45.368],\n            [-75.584, 45.375],\n            [-75.588, 45.381],\n            [-75.597, 45.384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.67, 45.442],\n            [-75.679, 45.44],\n            [-75.682, 45.433],\n            [-75.679, 45.427],\n            [-75.67, 45.424],\n            [-75.661, 45.427],\n            [-75.657, 45.433],\n            [-75.661, 45.44],\n            [-75.67, 45.442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.612, 45.422],\n            [-75.621, 45.419],\n            [-75.624, 45.413],\n            [-75.621, 45.406],\n            [-75.612, 45.404],\n            [-75.603, 45.406],\n            [-75.599, 45.413],\n            [-75.603, 45.419],\n            [-75.612, 45.422]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.643, 45.363],\n            [-75.652, 45.36],\n            [-75.656, 45.354],\n            [-75.652, 45.347],\n            [-75.643, 45.345],\n            [-75.634, 45.347],\n            [-75.631, 45.354],\n            [-75.634, 45.36],\n            [-75.643, 45.363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.643, 45.363],\n            [-75.652, 45.36],\n            [-75.656, 45.354],\n            [-75.652, 45.347],\n            [-75.643, 45.345],\n            [-75.634, 45.347],\n            [-75.631, 45.354],\n            [-75.634, 45.36],\n            [-75.643, 45.363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.719, 45.346],\n            [-75.728, 45.344],\n            [-75.732, 45.337],\n            [-75.728, 45.331],\n            [-75.719, 45.328],\n            [-75.71, 45.331],\n            [-75.706, 45.337],\n            [-75.71, 45.344],\n            [-75.719, 45.346]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.719, 45.346],\n            [-75.728, 45.344],\n            [-75.732, 45.337],\n            [-75.728, 45.331],\n            [-75.719, 45.328],\n            [-75.71, 45.331],\n            [-75.706, 45.337],\n            [-75.71, 45.344],\n            [-75.719, 45.346]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.627, 45.414],\n            [-75.636, 45.412],\n            [-75.64, 45.405],\n            [-75.636, 45.399],\n            [-75.627, 45.396],\n            [-75.618, 45.399],\n            [-75.615, 45.405],\n            [-75.618, 45.412],\n            [-75.627, 45.414]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.73, 45.407],\n            [-75.74, 45.404],\n            [-75.743, 45.398],\n            [-75.739, 45.391],\n            [-75.73, 45.389],\n            [-75.721, 45.391],\n            [-75.718, 45.398],\n            [-75.721, 45.404],\n            [-75.73, 45.407]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.64, 45.389],\n            [-75.649, 45.387],\n            [-75.652, 45.38],\n            [-75.649, 45.374],\n            [-75.64, 45.371],\n            [-75.631, 45.374],\n            [-75.627, 45.38],\n            [-75.631, 45.387],\n            [-75.64, 45.389]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.705, 45.362],\n            [-75.714, 45.359],\n            [-75.717, 45.353],\n            [-75.714, 45.347],\n            [-75.705, 45.344],\n            [-75.696, 45.347],\n            [-75.692, 45.353],\n            [-75.696, 45.359],\n            [-75.705, 45.362]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.642, 45.363],\n            [-75.651, 45.36],\n            [-75.655, 45.354],\n            [-75.651, 45.347],\n            [-75.642, 45.345],\n            [-75.633, 45.347],\n            [-75.629, 45.354],\n            [-75.633, 45.36],\n            [-75.642, 45.363]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-dissolve/test/out/hexagons-issue#742.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.715, 45.481],\n            [-76.711, 45.475],\n            [-76.7068947368421, 45.47408771929825],\n            [-76.706, 45.472],\n            [-76.69830909090909, 45.470290909090906],\n            [-76.697, 45.468],\n            [-76.69163157894737, 45.46680701754386],\n            [-76.69, 45.463],\n            [-76.68491304347826, 45.46186956521739],\n            [-76.681, 45.456],\n            [-76.672, 45.454],\n            [-76.663, 45.456],\n            [-76.659, 45.462],\n            [-76.6606, 45.4648],\n            [-76.658, 45.465666666666664],\n            [-76.652, 45.467],\n            [-76.64964705882353, 45.471117647058826],\n            [-76.644, 45.473],\n            [-76.64, 45.479],\n            [-76.644, 45.485],\n            [-76.653, 45.488],\n            [-76.662, 45.485],\n            [-76.664, 45.482],\n            [-76.666, 45.48133333333333],\n            [-76.672, 45.48],\n            [-76.67392, 45.47664],\n            [-76.67542857142857, 45.47714285714286],\n            [-76.678, 45.481],\n            [-76.6864, 45.4838],\n            [-76.687, 45.485],\n            [-76.6921724137931, 45.48655172413793],\n            [-76.693, 45.488],\n            [-76.702, 45.49],\n            [-76.711, 45.488],\n            [-76.715, 45.481]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.711, 45.578],\n            [-76.707, 45.571],\n            [-76.698, 45.569],\n            [-76.689, 45.571],\n            [-76.685, 45.578],\n            [-76.689, 45.584],\n            [-76.698, 45.587],\n            [-76.707, 45.584],\n            [-76.711, 45.578]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.523, 45.439],\n            [-76.519, 45.432],\n            [-76.51, 45.43],\n            [-76.501, 45.432],\n            [-76.497, 45.439],\n            [-76.501, 45.445],\n            [-76.51, 45.448],\n            [-76.519, 45.445],\n            [-76.523, 45.439]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.507, 45.6],\n            [-76.503, 45.594],\n            [-76.50085714285714, 45.59328571428571],\n            [-76.5, 45.592],\n            [-76.49523529411765, 45.590411764705884],\n            [-76.495, 45.59],\n            [-76.492, 45.589333333333336],\n            [-76.491, 45.589],\n            [-76.4908, 45.58906666666667],\n            [-76.486, 45.588],\n            [-76.477, 45.59],\n            [-76.473, 45.597],\n            [-76.477, 45.603],\n            [-76.48176470588236, 45.604588235294116],\n            [-76.482, 45.605],\n            [-76.4848125, 45.605625],\n            [-76.485, 45.606],\n            [-76.494, 45.609],\n            [-76.503, 45.606],\n            [-76.507, 45.6]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.504, 45.355],\n            [-76.5, 45.349],\n            [-76.491, 45.346],\n            [-76.482, 45.349],\n            [-76.478, 45.355],\n            [-76.482, 45.361],\n            [-76.491, 45.364],\n            [-76.5, 45.361],\n            [-76.504, 45.355]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.413, 45.459],\n            [-76.409, 45.453],\n            [-76.4, 45.45],\n            [-76.391, 45.453],\n            [-76.387, 45.459],\n            [-76.391, 45.466],\n            [-76.4, 45.468],\n            [-76.409, 45.466],\n            [-76.413, 45.459]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.39, 45.419],\n            [-76.387, 45.412],\n            [-76.381, 45.410666666666664],\n            [-76.376, 45.409],\n            [-76.367, 45.412],\n            [-76.36471428571429, 45.41542857142857],\n            [-76.36, 45.417],\n            [-76.35857142857142, 45.41914285714286],\n            [-76.356, 45.42],\n            [-76.353, 45.426],\n            [-76.3533125, 45.426625],\n            [-76.349, 45.425666666666665],\n            [-76.34657142857142, 45.42485714285714],\n            [-76.346, 45.424],\n            [-76.337, 45.421],\n            [-76.328, 45.424],\n            [-76.324, 45.43],\n            [-76.328, 45.437],\n            [-76.33405454545455, 45.438345454545455],\n            [-76.335, 45.44],\n            [-76.341, 45.44133333333333],\n            [-76.346, 45.443],\n            [-76.355, 45.44],\n            [-76.359, 45.434],\n            [-76.35829411764706, 45.432764705882356],\n            [-76.365, 45.435],\n            [-76.374, 45.432],\n            [-76.37457142857143, 45.43114285714286],\n            [-76.378, 45.43],\n            [-76.37971428571429, 45.42742857142857],\n            [-76.387, 45.425],\n            [-76.39, 45.419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.369, 45.011],\n            [-76.366, 45.004],\n            [-76.357, 45.002],\n            [-76.348, 45.004],\n            [-76.344, 45.011],\n            [-76.348, 45.017],\n            [-76.357, 45.02],\n            [-76.366, 45.017],\n            [-76.369, 45.011]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.339, 45.192],\n            [-76.335, 45.186],\n            [-76.326, 45.183],\n            [-76.317, 45.186],\n            [-76.314, 45.192],\n            [-76.317, 45.198],\n            [-76.326, 45.201],\n            [-76.335, 45.198],\n            [-76.339, 45.192]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.303, 45.333],\n            [-76.3, 45.327],\n            [-76.291, 45.324],\n            [-76.282, 45.327],\n            [-76.278, 45.333],\n            [-76.27828571428572, 45.3335],\n            [-76.278, 45.334],\n            [-76.282, 45.34],\n            [-76.291, 45.343],\n            [-76.3, 45.34],\n            [-76.303, 45.334],\n            [-76.30278571428572, 45.3335],\n            [-76.303, 45.333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.295, 45.408],\n            [-76.292, 45.402],\n            [-76.283, 45.399],\n            [-76.273, 45.402],\n            [-76.27, 45.408],\n            [-76.273, 45.415],\n            [-76.283, 45.417],\n            [-76.292, 45.415],\n            [-76.295, 45.408]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.277, 44.911],\n            [-76.273, 44.904],\n            [-76.2667, 44.9026],\n            [-76.267, 44.902],\n            [-76.264, 44.895],\n            [-76.258, 44.89366666666667],\n            [-76.253, 44.892],\n            [-76.25, 44.886],\n            [-76.241, 44.883],\n            [-76.232, 44.886],\n            [-76.228, 44.892],\n            [-76.232, 44.899],\n            [-76.24012903225807, 44.9008064516129],\n            [-76.24, 44.901],\n            [-76.244, 44.907],\n            [-76.24571428571429, 44.90757142857143],\n            [-76.246, 44.908],\n            [-76.25164, 44.90988],\n            [-76.251, 44.911],\n            [-76.255, 44.917],\n            [-76.264, 44.92],\n            [-76.273, 44.917],\n            [-76.277, 44.911]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.262, 45.06],\n            [-76.258, 45.054],\n            [-76.249, 45.051],\n            [-76.24, 45.054],\n            [-76.236, 45.06],\n            [-76.24, 45.067],\n            [-76.249, 45.069],\n            [-76.258, 45.067],\n            [-76.262, 45.06]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.243, 45.521],\n            [-76.239, 45.514],\n            [-76.23, 45.512],\n            [-76.221, 45.514],\n            [-76.217, 45.521],\n            [-76.221, 45.527],\n            [-76.23, 45.53],\n            [-76.239, 45.527],\n            [-76.243, 45.521]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.241, 45.239],\n            [-76.237, 45.233],\n            [-76.228, 45.23],\n            [-76.219, 45.233],\n            [-76.216, 45.239],\n            [-76.219, 45.246],\n            [-76.228, 45.248],\n            [-76.237, 45.246],\n            [-76.241, 45.239]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.217, 45.221],\n            [-76.214, 45.214],\n            [-76.205, 45.212],\n            [-76.19717391304347, 45.21373913043478],\n            [-76.201, 45.208],\n            [-76.197, 45.201],\n            [-76.188, 45.199],\n            [-76.179, 45.201],\n            [-76.175, 45.208],\n            [-76.179, 45.214],\n            [-76.188, 45.217],\n            [-76.19576470588235, 45.21441176470588],\n            [-76.19435294117648, 45.21688235294118],\n            [-76.188, 45.219],\n            [-76.184, 45.225],\n            [-76.18422535211268, 45.225394366197186],\n            [-76.177, 45.227],\n            [-76.17605454545455, 45.228654545454546],\n            [-76.17, 45.23],\n            [-76.167, 45.237],\n            [-76.17, 45.243],\n            [-76.179, 45.246],\n            [-76.188, 45.243],\n            [-76.18857142857142, 45.24214285714286],\n            [-76.195, 45.24],\n            [-76.198, 45.234],\n            [-76.19791304347827, 45.23379710144928],\n            [-76.206, 45.232],\n            [-76.20764705882353, 45.22911764705882],\n            [-76.214, 45.227],\n            [-76.217, 45.221]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.201, 45.392],\n            [-76.198, 45.385],\n            [-76.188, 45.383],\n            [-76.179, 45.385],\n            [-76.176, 45.392],\n            [-76.179, 45.398],\n            [-76.188, 45.401],\n            [-76.198, 45.398],\n            [-76.201, 45.392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.155, 45.137],\n            [-76.152, 45.131],\n            [-76.143, 45.128],\n            [-76.142, 45.12833333333333],\n            [-76.141, 45.128],\n            [-76.135875, 45.12970833333333],\n            [-76.133, 45.123],\n            [-76.124, 45.121],\n            [-76.115, 45.123],\n            [-76.11358823529412, 45.125470588235295],\n            [-76.112, 45.126],\n            [-76.108, 45.132],\n            [-76.112, 45.139],\n            [-76.11513043478261, 45.13969565217391],\n            [-76.115, 45.14],\n            [-76.118, 45.146],\n            [-76.127, 45.149],\n            [-76.13, 45.148],\n            [-76.129, 45.15],\n            [-76.132, 45.157],\n            [-76.141, 45.159],\n            [-76.15, 45.157],\n            [-76.154, 45.15],\n            [-76.15, 45.144],\n            [-76.1495, 45.14383333333333],\n            [-76.152, 45.143],\n            [-76.155, 45.137]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.154, 44.849],\n            [-76.15, 44.843],\n            [-76.141, 44.84],\n            [-76.132, 44.843],\n            [-76.129, 44.849],\n            [-76.132, 44.856],\n            [-76.141, 44.858],\n            [-76.15, 44.856],\n            [-76.154, 44.849]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.118, 45.107],\n            [-76.115, 45.1],\n            [-76.106, 45.098],\n            [-76.097, 45.1],\n            [-76.093, 45.107],\n            [-76.097, 45.113],\n            [-76.106, 45.116],\n            [-76.115, 45.113],\n            [-76.118, 45.107]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.087, 45.463],\n            [-76.084, 45.456],\n            [-76.075, 45.454],\n            [-76.066, 45.456],\n            [-76.062, 45.463],\n            [-76.066, 45.469],\n            [-76.075, 45.472],\n            [-76.084, 45.469],\n            [-76.087, 45.463]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.086, 45.486],\n            [-76.083, 45.48],\n            [-76.074, 45.477],\n            [-76.065, 45.48],\n            [-76.061, 45.486],\n            [-76.065, 45.493],\n            [-76.074, 45.495],\n            [-76.083, 45.493],\n            [-76.086, 45.486]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.072, 45.039],\n            [-76.068, 45.033],\n            [-76.059, 45.03],\n            [-76.05, 45.033],\n            [-76.047, 45.039],\n            [-76.05, 45.045],\n            [-76.059, 45.048],\n            [-76.068, 45.045],\n            [-76.072, 45.039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.063, 45.318],\n            [-76.059, 45.311],\n            [-76.05, 45.309],\n            [-76.041, 45.311],\n            [-76.037, 45.318],\n            [-76.041, 45.324],\n            [-76.05, 45.327],\n            [-76.059, 45.324],\n            [-76.063, 45.318]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.046, 44.889],\n            [-76.042, 44.883],\n            [-76.033, 44.88],\n            [-76.0278, 44.88173333333334],\n            [-76.02, 44.88],\n            [-76.011, 44.882],\n            [-76.007, 44.889],\n            [-76.0104193548387, 44.894129032258064],\n            [-76.002, 44.896],\n            [-75.999, 44.903],\n            [-76.002, 44.909],\n            [-76.00870588235294, 44.911235294117645],\n            [-76.012, 44.917],\n            [-76.021, 44.919],\n            [-76.03, 44.917],\n            [-76.03123943661971, 44.91483098591549],\n            [-76.032, 44.915],\n            [-76.041, 44.913],\n            [-76.045, 44.906],\n            [-76.041, 44.9],\n            [-76.038, 44.899],\n            [-76.04028571428572, 44.89557142857143],\n            [-76.042, 44.895],\n            [-76.046, 44.889]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.033, 45.539],\n            [-76.03, 45.532],\n            [-76.021, 45.53],\n            [-76.011, 45.532],\n            [-76.008, 45.539],\n            [-76.011, 45.545],\n            [-76.021, 45.548],\n            [-76.03, 45.545],\n            [-76.033, 45.539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.982, 45.383],\n            [-75.979, 45.377],\n            [-75.969, 45.374],\n            [-75.96, 45.377],\n            [-75.957, 45.383],\n            [-75.96, 45.389],\n            [-75.969, 45.392],\n            [-75.979, 45.389],\n            [-75.982, 45.383]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.968, 45.279],\n            [-75.9652, 45.2748],\n            [-75.964, 45.272],\n            [-75.96023636363637, 45.27116363636364],\n            [-75.959, 45.269],\n            [-75.95039130434783, 45.26708695652174],\n            [-75.947, 45.262],\n            [-75.938, 45.259],\n            [-75.929, 45.262],\n            [-75.92757142857143, 45.26414285714286],\n            [-75.922, 45.266],\n            [-75.92085714285714, 45.267714285714284],\n            [-75.914, 45.27],\n            [-75.91356521739131, 45.27065217391304],\n            [-75.912, 45.271],\n            [-75.908, 45.278],\n            [-75.912, 45.284],\n            [-75.921, 45.287],\n            [-75.93, 45.284],\n            [-75.9304347826087, 45.28334782608696],\n            [-75.932, 45.283],\n            [-75.93216666666666, 45.28261111111111],\n            [-75.934, 45.282],\n            [-75.93530434782609, 45.28004347826087],\n            [-75.93912903225807, 45.2791935483871],\n            [-75.941, 45.282],\n            [-75.94435294117648, 45.28311764705882],\n            [-75.946, 45.286],\n            [-75.955, 45.288],\n            [-75.964, 45.286],\n            [-75.968, 45.279]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.964, 45.37],\n            [-75.96, 45.363],\n            [-75.951, 45.361],\n            [-75.942, 45.363],\n            [-75.938, 45.37],\n            [-75.942, 45.376],\n            [-75.951, 45.379],\n            [-75.96, 45.376],\n            [-75.964, 45.37]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.95, 44.835],\n            [-75.947, 44.828],\n            [-75.938, 44.826],\n            [-75.929, 44.828],\n            [-75.925, 44.835],\n            [-75.929, 44.841],\n            [-75.938, 44.844],\n            [-75.947, 44.841],\n            [-75.95, 44.835]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.944, 45.683],\n            [-75.94, 45.676],\n            [-75.931, 45.674],\n            [-75.922, 45.676],\n            [-75.918, 45.683],\n            [-75.922, 45.689],\n            [-75.931, 45.692],\n            [-75.94, 45.689],\n            [-75.944, 45.683]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.941, 45.294],\n            [-75.937, 45.288],\n            [-75.928, 45.285],\n            [-75.919, 45.288],\n            [-75.915, 45.294],\n            [-75.91829411764706, 45.29976470588235],\n            [-75.916, 45.299],\n            [-75.91257142857143, 45.30014285714286],\n            [-75.914, 45.298],\n            [-75.91, 45.291],\n            [-75.907, 45.290333333333336],\n            [-75.9, 45.288],\n            [-75.895, 45.28966666666667],\n            [-75.89, 45.288],\n            [-75.88268, 45.29044],\n            [-75.88161538461539, 45.288576923076924],\n            [-75.882, 45.288],\n            [-75.878, 45.282],\n            [-75.869, 45.279],\n            [-75.86, 45.282],\n            [-75.856, 45.288],\n            [-75.858, 45.291],\n            [-75.861, 45.297],\n            [-75.86772, 45.29924],\n            [-75.865, 45.304],\n            [-75.8685, 45.30925],\n            [-75.868, 45.31],\n            [-75.87, 45.313],\n            [-75.874, 45.32],\n            [-75.883, 45.322],\n            [-75.892, 45.32],\n            [-75.895, 45.313],\n            [-75.892, 45.307],\n            [-75.8914, 45.3068],\n            [-75.89085714285714, 45.30571428571429],\n            [-75.894, 45.30466666666667],\n            [-75.901, 45.307],\n            [-75.90442857142857, 45.30585714285714],\n            [-75.903, 45.308],\n            [-75.907, 45.315],\n            [-75.9088, 45.3156],\n            [-75.909, 45.316],\n            [-75.918, 45.319],\n            [-75.927, 45.316],\n            [-75.931, 45.31],\n            [-75.927, 45.304],\n            [-75.92594117647059, 45.30364705882353],\n            [-75.92521818181818, 45.30238181818182],\n            [-75.928, 45.303],\n            [-75.937, 45.301],\n            [-75.941, 45.294]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.94, 45.351],\n            [-75.936, 45.345],\n            [-75.92952, 45.34284],\n            [-75.93, 45.342],\n            [-75.926, 45.336],\n            [-75.92211764705883, 45.33470588235294],\n            [-75.92, 45.331],\n            [-75.911, 45.329],\n            [-75.902, 45.331],\n            [-75.899, 45.338],\n            [-75.902, 45.344],\n            [-75.90588235294118, 45.34529411764706],\n            [-75.908, 45.349],\n            [-75.91438709677419, 45.35041935483871],\n            [-75.914, 45.351],\n            [-75.918, 45.357],\n            [-75.927, 45.36],\n            [-75.936, 45.357],\n            [-75.94, 45.351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.929, 45.254],\n            [-75.926, 45.248],\n            [-75.916, 45.245],\n            [-75.907, 45.248],\n            [-75.904, 45.254],\n            [-75.907, 45.261],\n            [-75.916, 45.263],\n            [-75.926, 45.261],\n            [-75.929, 45.254]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.87, 45.409],\n            [-75.866, 45.402],\n            [-75.86498591549295, 45.40177464788732],\n            [-75.866, 45.4],\n            [-75.862, 45.394],\n            [-75.853, 45.391],\n            [-75.84590909090909, 45.39336363636364],\n            [-75.843, 45.389],\n            [-75.834, 45.386],\n            [-75.8305, 45.387166666666666],\n            [-75.83, 45.387],\n            [-75.821, 45.39],\n            [-75.817, 45.396],\n            [-75.821, 45.402],\n            [-75.83, 45.405],\n            [-75.826, 45.411],\n            [-75.83, 45.417],\n            [-75.839, 45.42],\n            [-75.848, 45.417],\n            [-75.84885714285714, 45.415285714285716],\n            [-75.857, 45.418],\n            [-75.866, 45.415],\n            [-75.87, 45.409]\n          ],\n          [\n            [-75.84164705882353, 45.40288235294118],\n            [-75.8406, 45.40253333333333],\n            [-75.84135211267606, 45.4023661971831],\n            [-75.84164705882353, 45.40288235294118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.854, 45.193],\n            [-75.85, 45.187],\n            [-75.841, 45.184],\n            [-75.832, 45.187],\n            [-75.82860869565218, 45.19208695652174],\n            [-75.82, 45.194],\n            [-75.81873684210527, 45.19694736842105],\n            [-75.814, 45.198],\n            [-75.81, 45.205],\n            [-75.814, 45.211],\n            [-75.823, 45.214],\n            [-75.832, 45.211],\n            [-75.83371428571428, 45.20842857142857],\n            [-75.838, 45.207],\n            [-75.84142857142857, 45.20185714285714],\n            [-75.85, 45.199],\n            [-75.854, 45.193]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.851, 45.281],\n            [-75.847, 45.275],\n            [-75.838, 45.272],\n            [-75.829, 45.275],\n            [-75.825, 45.281],\n            [-75.829, 45.288],\n            [-75.838, 45.29],\n            [-75.847, 45.288],\n            [-75.851, 45.281]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.849, 44.915],\n            [-75.845, 44.908],\n            [-75.836, 44.906],\n            [-75.827, 44.908],\n            [-75.824, 44.915],\n            [-75.827, 44.921],\n            [-75.836, 44.924],\n            [-75.845, 44.921],\n            [-75.849, 44.915]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.849, 45.321],\n            [-75.845, 45.315],\n            [-75.836, 45.312],\n            [-75.821, 45.317],\n            [-75.82042857142856, 45.31785714285714],\n            [-75.82, 45.318],\n            [-75.811, 45.321],\n            [-75.807, 45.327],\n            [-75.811, 45.334],\n            [-75.82, 45.336],\n            [-75.8205, 45.33588888888889],\n            [-75.821, 45.336],\n            [-75.83, 45.334],\n            [-75.83094117647059, 45.332352941176474],\n            [-75.832, 45.332],\n            [-75.83234782608696, 45.33147826086957],\n            [-75.839, 45.33],\n            [-75.83931578947369, 45.32926315789474],\n            [-75.845, 45.328],\n            [-75.849, 45.321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.848, 45.352],\n            [-75.845, 45.346],\n            [-75.836, 45.343],\n            [-75.826, 45.346],\n            [-75.823, 45.352],\n            [-75.826, 45.359],\n            [-75.836, 45.361],\n            [-75.845, 45.359],\n            [-75.848, 45.352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.828, 45.442],\n            [-75.824, 45.436],\n            [-75.815, 45.433],\n            [-75.806, 45.436],\n            [-75.803, 45.442],\n            [-75.806, 45.449],\n            [-75.815, 45.451],\n            [-75.824, 45.449],\n            [-75.828, 45.442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.823, 45.503],\n            [-75.82, 45.497],\n            [-75.811, 45.494],\n            [-75.801, 45.497],\n            [-75.798, 45.503],\n            [-75.801, 45.51],\n            [-75.811, 45.512],\n            [-75.82, 45.51],\n            [-75.823, 45.503]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.822, 45.354],\n            [-75.818, 45.347],\n            [-75.809, 45.345],\n            [-75.80038028169014, 45.34691549295775],\n            [-75.799, 45.3445],\n            [-75.801, 45.341],\n            [-75.797, 45.335],\n            [-75.788, 45.332],\n            [-75.779, 45.335],\n            [-75.77871428571429, 45.33542857142857],\n            [-75.777, 45.336],\n            [-75.77558064516128, 45.33812903225807],\n            [-75.775, 45.338],\n            [-75.76714084507043, 45.33974647887324],\n            [-75.765, 45.336],\n            [-75.76398591549295, 45.33577464788733],\n            [-75.765, 45.334],\n            [-75.761, 45.328],\n            [-75.752, 45.325],\n            [-75.743, 45.328],\n            [-75.739, 45.334],\n            [-75.743, 45.341],\n            [-75.74469565217392, 45.3413768115942],\n            [-75.744, 45.343],\n            [-75.747, 45.349],\n            [-75.756, 45.352],\n            [-75.76363636363637, 45.34945454545455],\n            [-75.766, 45.353],\n            [-75.775, 45.356],\n            [-75.7802, 45.35426666666667],\n            [-75.7835, 45.355],\n            [-75.779, 45.356],\n            [-75.77629577464789, 45.360732394366195],\n            [-75.773, 45.36],\n            [-75.764, 45.362],\n            [-75.76067605633803, 45.36781690140845],\n            [-75.757, 45.367],\n            [-75.75475, 45.3675],\n            [-75.74901408450704, 45.36622535211268],\n            [-75.752, 45.361],\n            [-75.74823076923077, 45.355346153846156],\n            [-75.749, 45.354],\n            [-75.745, 45.348],\n            [-75.743, 45.344],\n            [-75.74175, 45.343583333333335],\n            [-75.742, 45.343],\n            [-75.739, 45.337],\n            [-75.735625, 45.335875],\n            [-75.736, 45.335],\n            [-75.73371428571429, 45.33042857142857],\n            [-75.734, 45.33],\n            [-75.73261538461539, 45.327576923076926],\n            [-75.733, 45.327],\n            [-75.729, 45.321],\n            [-75.72, 45.318],\n            [-75.711, 45.321],\n            [-75.70751612903226, 45.32622580645161],\n            [-75.702, 45.325],\n            [-75.698, 45.32588888888889],\n            [-75.694, 45.325],\n            [-75.685, 45.327],\n            [-75.681, 45.334],\n            [-75.68227272727273, 45.33590909090909],\n            [-75.682, 45.336],\n            [-75.68016666666666, 45.33875],\n            [-75.679, 45.337],\n            [-75.67, 45.334],\n            [-75.661, 45.337],\n            [-75.657, 45.343],\n            [-75.65966666666667, 45.347],\n            [-75.657, 45.351],\n            [-75.655, 45.348],\n            [-75.646, 45.345],\n            [-75.6448, 45.3454],\n            [-75.643, 45.345],\n            [-75.6425, 45.34511111111111],\n            [-75.642, 45.345],\n            [-75.63677419354839, 45.346161290322584],\n            [-75.634, 45.342],\n            [-75.625, 45.339],\n            [-75.616, 45.342],\n            [-75.612, 45.348],\n            [-75.616, 45.354],\n            [-75.6195, 45.35516666666667],\n            [-75.611, 45.358],\n            [-75.607, 45.364],\n            [-75.611, 45.371],\n            [-75.61274193548387, 45.37138709677419],\n            [-75.611, 45.374],\n            [-75.615, 45.38],\n            [-75.6165, 45.3805],\n            [-75.61390909090909, 45.38136363636364],\n            [-75.611, 45.377],\n            [-75.60909090909091, 45.376363636363635],\n            [-75.61, 45.375],\n            [-75.606, 45.368],\n            [-75.597, 45.366],\n            [-75.588, 45.368],\n            [-75.584, 45.375],\n            [-75.588, 45.381],\n            [-75.58990909090909, 45.38163636363636],\n            [-75.589, 45.383],\n            [-75.593, 45.389],\n            [-75.602, 45.392],\n            [-75.60671428571429, 45.39042857142857],\n            [-75.609, 45.395],\n            [-75.60906122448979, 45.39514285714286],\n            [-75.608, 45.397],\n            [-75.61018181818181, 45.40027272727273],\n            [-75.608, 45.401],\n            [-75.60495652173913, 45.405565217391306],\n            [-75.603, 45.406],\n            [-75.6025294117647, 45.40682352941177],\n            [-75.596, 45.409],\n            [-75.59527272727273, 45.41009090909091],\n            [-75.595, 45.41],\n            [-75.586, 45.413],\n            [-75.582, 45.419],\n            [-75.586, 45.425],\n            [-75.58666666666667, 45.425222222222224],\n            [-75.587, 45.426],\n            [-75.593, 45.42733333333333],\n            [-75.595, 45.428],\n            [-75.5954, 45.42786666666667],\n            [-75.596, 45.428],\n            [-75.605, 45.426],\n            [-75.6052, 45.42593333333333],\n            [-75.6064, 45.4262],\n            [-75.604, 45.427],\n            [-75.60371428571429, 45.42742857142857],\n            [-75.596, 45.43],\n            [-75.592, 45.436],\n            [-75.59374647887324, 45.439056338028166],\n            [-75.5886, 45.4402],\n            [-75.588, 45.44],\n            [-75.579, 45.443],\n            [-75.575, 45.449],\n            [-75.579, 45.456],\n            [-75.588, 45.458],\n            [-75.5934, 45.4568],\n            [-75.594, 45.457],\n            [-75.5945, 45.456833333333336],\n            [-75.595, 45.457],\n            [-75.604, 45.454],\n            [-75.608, 45.448],\n            [-75.60624, 45.44492],\n            [-75.608, 45.44433333333333],\n            [-75.614, 45.443],\n            [-75.61433333333333, 45.44222222222222],\n            [-75.615, 45.442],\n            [-75.61525, 45.4415],\n            [-75.61965217391304, 45.44052173913043],\n            [-75.616, 45.446],\n            [-75.62, 45.453],\n            [-75.629, 45.455],\n            [-75.638, 45.453],\n            [-75.6388, 45.4516],\n            [-75.64, 45.452],\n            [-75.64084, 45.45172],\n            [-75.641, 45.452],\n            [-75.65, 45.454],\n            [-75.659, 45.452],\n            [-75.66030434782608, 45.44895652173913],\n            [-75.661, 45.45],\n            [-75.67, 45.452],\n            [-75.679, 45.45],\n            [-75.68091304347826, 45.44713043478261],\n            [-75.686, 45.446],\n            [-75.689, 45.439],\n            [-75.68857142857142, 45.43814285714286],\n            [-75.689, 45.438],\n            [-75.6898, 45.4364],\n            [-75.694, 45.435],\n            [-75.698, 45.429],\n            [-75.69683636363636, 45.42696363636364],\n            [-75.697, 45.427],\n            [-75.706, 45.425],\n            [-75.7095294117647, 45.41882352941177],\n            [-75.715, 45.417],\n            [-75.719, 45.411],\n            [-75.71669230769231, 45.407538461538465],\n            [-75.717, 45.407],\n            [-75.7159090909091, 45.40536363636364],\n            [-75.717, 45.405],\n            [-75.721, 45.412],\n            [-75.73, 45.414],\n            [-75.739, 45.412],\n            [-75.7424909090909, 45.40589090909091],\n            [-75.751, 45.404],\n            [-75.75136363636364, 45.403363636363636],\n            [-75.753, 45.403],\n            [-75.75370588235295, 45.40176470588235],\n            [-75.759, 45.4],\n            [-75.762, 45.399],\n            [-75.766, 45.393],\n            [-75.762, 45.386],\n            [-75.758, 45.38511111111111],\n            [-75.763, 45.384],\n            [-75.76321818181817, 45.38361818181818],\n            [-75.766, 45.383],\n            [-75.76952, 45.37684],\n            [-75.773, 45.378],\n            [-75.7745, 45.3775],\n            [-75.782, 45.38],\n            [-75.791, 45.377],\n            [-75.79265217391304, 45.37452173913044],\n            [-75.795, 45.374],\n            [-75.799, 45.367],\n            [-75.79866666666666, 45.3665],\n            [-75.801, 45.363],\n            [-75.797, 45.356],\n            [-75.7925, 45.355],\n            [-75.79612903225807, 45.354193548387094],\n            [-75.8, 45.36],\n            [-75.809, 45.363],\n            [-75.818, 45.36],\n            [-75.822, 45.354]\n          ],\n          [\n            [-75.74034375, 45.38853125],\n            [-75.74033333333334, 45.388555555555556],\n            [-75.738, 45.38933333333333],\n            [-75.735, 45.39],\n            [-75.73493548387097, 45.39009677419355],\n            [-75.73378947368421, 45.389842105263156],\n            [-75.74034375, 45.38853125]\n          ],\n          [\n            [-75.73710909090909, 45.371309090909094],\n            [-75.73617073170732, 45.372951219512196],\n            [-75.733, 45.372],\n            [-75.724, 45.375],\n            [-75.721, 45.381],\n            [-75.724, 45.388],\n            [-75.72925, 45.38916666666667],\n            [-75.721, 45.391],\n            [-75.71904081632653, 45.39557142857143],\n            [-75.717, 45.392],\n            [-75.708, 45.39],\n            [-75.699, 45.392],\n            [-75.69674545454545, 45.395945454545455],\n            [-75.692, 45.397],\n            [-75.68938181818181, 45.40158181818182],\n            [-75.683, 45.403],\n            [-75.68, 45.41],\n            [-75.683, 45.416],\n            [-75.68385714285715, 45.41628571428571],\n            [-75.6845, 45.41725],\n            [-75.684, 45.418],\n            [-75.68516363636364, 45.42003636363636],\n            [-75.685, 45.42],\n            [-75.676, 45.422],\n            [-75.67510526315789, 45.42408771929824],\n            [-75.6722, 45.424733333333336],\n            [-75.67, 45.424],\n            [-75.669, 45.42433333333334],\n            [-75.668, 45.424],\n            [-75.65972, 45.42676],\n            [-75.657, 45.422],\n            [-75.648, 45.42],\n            [-75.64683870967743, 45.420258064516126],\n            [-75.646, 45.419],\n            [-75.645, 45.41866666666667],\n            [-75.65, 45.417],\n            [-75.654, 45.411],\n            [-75.65, 45.405],\n            [-75.641, 45.402],\n            [-75.63854545454545, 45.40281818181818],\n            [-75.636, 45.399],\n            [-75.63327272727273, 45.39809090909091],\n            [-75.634, 45.397],\n            [-75.63342857142857, 45.396],\n            [-75.634, 45.395],\n            [-75.63181818181818, 45.39172727272727],\n            [-75.64, 45.389],\n            [-75.649, 45.387],\n            [-75.652, 45.38],\n            [-75.649, 45.374],\n            [-75.64, 45.371],\n            [-75.6359090909091, 45.37236363636364],\n            [-75.63335294117647, 45.368529411764705],\n            [-75.641, 45.367],\n            [-75.64273913043478, 45.36294202898551],\n            [-75.643, 45.363],\n            [-75.6448, 45.3626],\n            [-75.646, 45.363],\n            [-75.655, 45.36],\n            [-75.659, 45.354],\n            [-75.661, 45.357],\n            [-75.67, 45.36],\n            [-75.679, 45.357],\n            [-75.683, 45.351],\n            [-75.68033333333334, 45.347],\n            [-75.68061538461538, 45.346576923076924],\n            [-75.682, 45.349],\n            [-75.691, 45.351],\n            [-75.69373913043478, 45.35039130434782],\n            [-75.692, 45.353],\n            [-75.696, 45.36],\n            [-75.69884210526315, 45.36063157894737],\n            [-75.692, 45.362],\n            [-75.689, 45.369],\n            [-75.692, 45.375],\n            [-75.69424137931034, 45.375672413793104],\n            [-75.695, 45.377],\n            [-75.704, 45.379],\n            [-75.713, 45.377],\n            [-75.717, 45.37],\n            [-75.713, 45.364],\n            [-75.71166666666667, 45.36355555555556],\n            [-75.711, 45.362],\n            [-75.708, 45.361333333333334],\n            [-75.714, 45.36],\n            [-75.717, 45.353],\n            [-75.714, 45.347],\n            [-75.71244, 45.34648],\n            [-75.71342253521127, 45.344760563380284],\n            [-75.71867272727273, 45.34592727272727],\n            [-75.721, 45.35],\n            [-75.72315384615385, 45.35376923076923],\n            [-75.723, 45.354],\n            [-75.7233076923077, 45.35453846153846],\n            [-75.723, 45.355],\n            [-75.72466666666666, 45.3575],\n            [-75.723, 45.36],\n            [-75.721, 45.363],\n            [-75.725, 45.37],\n            [-75.734, 45.372],\n            [-75.73710909090909, 45.371309090909094]\n          ],\n          [\n            [-75.6342, 45.43593333333333],\n            [-75.631, 45.437],\n            [-75.63071428571429, 45.43757142857143],\n            [-75.629, 45.437],\n            [-75.62233333333333, 45.43922222222222],\n            [-75.62482608695652, 45.43340579710145],\n            [-75.629, 45.434333333333335],\n            [-75.62976470588235, 45.434588235294115],\n            [-75.63, 45.435],\n            [-75.6342, 45.43593333333333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.822, 45.413],\n            [-75.818, 45.406],\n            [-75.809, 45.404],\n            [-75.8, 45.406],\n            [-75.796, 45.413],\n            [-75.79633333333334, 45.4135],\n            [-75.796, 45.414],\n            [-75.79626666666667, 45.41446666666667],\n            [-75.795, 45.417],\n            [-75.798, 45.423],\n            [-75.807, 45.426],\n            [-75.817, 45.423],\n            [-75.818, 45.421],\n            [-75.822, 45.414],\n            [-75.82166666666667, 45.4135],\n            [-75.822, 45.413]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.821, 45.386],\n            [-75.817, 45.38],\n            [-75.808, 45.377],\n            [-75.8075, 45.37716666666667],\n            [-75.807, 45.377],\n            [-75.798, 45.38],\n            [-75.795, 45.386],\n            [-75.798, 45.392],\n            [-75.807, 45.395],\n            [-75.8075, 45.39483333333333],\n            [-75.808, 45.395],\n            [-75.817, 45.392],\n            [-75.821, 45.386]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.815, 45.269],\n            [-75.811, 45.263],\n            [-75.802, 45.26],\n            [-75.793, 45.263],\n            [-75.79265217391304, 45.26352173913043],\n            [-75.792, 45.262],\n            [-75.782, 45.26],\n            [-75.773, 45.262],\n            [-75.77, 45.269],\n            [-75.773, 45.275],\n            [-75.782, 45.278],\n            [-75.792, 45.275],\n            [-75.7922, 45.2746],\n            [-75.793, 45.276],\n            [-75.802, 45.278],\n            [-75.811, 45.276],\n            [-75.815, 45.269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.799, 45.444],\n            [-75.795, 45.437],\n            [-75.786, 45.435],\n            [-75.77863636363637, 45.43663636363636],\n            [-75.779, 45.436],\n            [-75.77553846153846, 45.430807692307695],\n            [-75.776, 45.43],\n            [-75.77, 45.421],\n            [-75.761, 45.418],\n            [-75.75718181818182, 45.41927272727273],\n            [-75.755, 45.416],\n            [-75.746, 45.413],\n            [-75.737, 45.416],\n            [-75.733, 45.422],\n            [-75.73328571428571, 45.42242857142857],\n            [-75.726, 45.42],\n            [-75.717, 45.423],\n            [-75.71534782608695, 45.42547826086957],\n            [-75.713, 45.426],\n            [-75.709, 45.433],\n            [-75.71190909090909, 45.437363636363635],\n            [-75.704, 45.44],\n            [-75.7, 45.446],\n            [-75.704, 45.453],\n            [-75.713, 45.455],\n            [-75.722, 45.453],\n            [-75.7225, 45.452125],\n            [-75.723, 45.453],\n            [-75.72398181818181, 45.45321818181818],\n            [-75.725, 45.455],\n            [-75.72964516129032, 45.45603225806452],\n            [-75.729, 45.457],\n            [-75.72935714285714, 45.457625],\n            [-75.728, 45.46],\n            [-75.72927272727273, 45.46190909090909],\n            [-75.729, 45.462],\n            [-75.725, 45.468],\n            [-75.7251690140845, 45.468295774647885],\n            [-75.722, 45.469],\n            [-75.71969230769231, 45.473038461538465],\n            [-75.717, 45.469],\n            [-75.71281690140844, 45.46807042253521],\n            [-75.714, 45.466],\n            [-75.71192307692307, 45.46288461538462],\n            [-75.713, 45.461],\n            [-75.709, 45.455],\n            [-75.7, 45.452],\n            [-75.693, 45.45433333333333],\n            [-75.69, 45.455],\n            [-75.6882, 45.4592],\n            [-75.687, 45.461],\n            [-75.68724489795919, 45.46142857142857],\n            [-75.687, 45.462],\n            [-75.68857142857142, 45.46514285714286],\n            [-75.688, 45.466],\n            [-75.69173333333333, 45.47253333333333],\n            [-75.689, 45.478],\n            [-75.68985714285714, 45.47971428571429],\n            [-75.68954545454545, 45.48018181818182],\n            [-75.689, 45.48],\n            [-75.68709090909091, 45.480636363636364],\n            [-75.684, 45.476],\n            [-75.675, 45.473],\n            [-75.666, 45.476],\n            [-75.66587096774194, 45.476193548387094],\n            [-75.665, 45.476],\n            [-75.6584, 45.477466666666665],\n            [-75.651, 45.475],\n            [-75.648, 45.476],\n            [-75.645, 45.475],\n            [-75.642, 45.476],\n            [-75.639, 45.475],\n            [-75.63, 45.478],\n            [-75.626, 45.484],\n            [-75.62969230769231, 45.49046153846154],\n            [-75.628, 45.493],\n            [-75.63092307692308, 45.49811538461538],\n            [-75.629, 45.501],\n            [-75.633, 45.508],\n            [-75.642, 45.51],\n            [-75.651, 45.508],\n            [-75.655, 45.501],\n            [-75.65442857142857, 45.500142857142855],\n            [-75.657, 45.501],\n            [-75.66557142857143, 45.49814285714286],\n            [-75.663, 45.502],\n            [-75.66392307692308, 45.50361538461539],\n            [-75.663, 45.505],\n            [-75.667, 45.512],\n            [-75.676, 45.514],\n            [-75.685, 45.512],\n            [-75.689, 45.505],\n            [-75.68807692307692, 45.50361538461539],\n            [-75.689, 45.502],\n            [-75.68586956521739, 45.49730434782609],\n            [-75.689, 45.498],\n            [-75.698, 45.496],\n            [-75.70128571428572, 45.49025],\n            [-75.704, 45.495],\n            [-75.713, 45.497],\n            [-75.7148, 45.4966],\n            [-75.719, 45.498],\n            [-75.72, 45.49766666666667],\n            [-75.724, 45.499],\n            [-75.733, 45.496],\n            [-75.73557142857143, 45.49214285714286],\n            [-75.737, 45.495],\n            [-75.747, 45.498],\n            [-75.756, 45.495],\n            [-75.76, 45.488],\n            [-75.756, 45.482],\n            [-75.74916, 45.47972],\n            [-75.753, 45.473],\n            [-75.75119354838709, 45.470290322580645],\n            [-75.757, 45.469],\n            [-75.75791836734695, 45.466857142857144],\n            [-75.758, 45.467],\n            [-75.76294366197183, 45.46809859154929],\n            [-75.759, 45.475],\n            [-75.763, 45.481],\n            [-75.772, 45.484],\n            [-75.781, 45.481],\n            [-75.785, 45.475],\n            [-75.781, 45.468],\n            [-75.77605633802817, 45.4669014084507],\n            [-75.78, 45.46],\n            [-75.776, 45.454],\n            [-75.767, 45.451],\n            [-75.76372727272727, 45.452090909090906],\n            [-75.761, 45.448],\n            [-75.75671428571428, 45.44657142857143],\n            [-75.753, 45.441],\n            [-75.744, 45.438],\n            [-75.7404, 45.4392],\n            [-75.738, 45.435],\n            [-75.73538709677419, 45.43441935483871],\n            [-75.739, 45.429],\n            [-75.73871428571428, 45.42857142857143],\n            [-75.746, 45.431],\n            [-75.75028571428571, 45.42957142857143],\n            [-75.75, 45.43],\n            [-75.75323076923077, 45.43565384615385],\n            [-75.753, 45.436],\n            [-75.757, 45.443],\n            [-75.766, 45.445],\n            [-75.77336363636364, 45.443363636363635],\n            [-75.773, 45.444],\n            [-75.777, 45.451],\n            [-75.786, 45.453],\n            [-75.795, 45.451],\n            [-75.799, 45.444]\n          ],\n          [\n            [-75.7365, 45.48316666666667],\n            [-75.7352, 45.4862],\n            [-75.735, 45.4865],\n            [-75.73364, 45.48412],\n            [-75.7365, 45.48316666666667]\n          ],\n          [\n            [-75.72095652173913, 45.4804347826087],\n            [-75.719, 45.48],\n            [-75.71801818181818, 45.48021818181818],\n            [-75.7193076923077, 45.477961538461535],\n            [-75.72095652173913, 45.4804347826087]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.795, 45.571],\n            [-75.792, 45.564],\n            [-75.783, 45.562],\n            [-75.774, 45.564],\n            [-75.77, 45.571],\n            [-75.774, 45.577],\n            [-75.783, 45.58],\n            [-75.792, 45.577],\n            [-75.795, 45.571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.79, 45.324],\n            [-75.787, 45.317],\n            [-75.777, 45.315],\n            [-75.768, 45.317],\n            [-75.765, 45.324],\n            [-75.768, 45.33],\n            [-75.777, 45.333],\n            [-75.787, 45.33],\n            [-75.79, 45.324]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.77, 45.287],\n            [-75.766, 45.281],\n            [-75.76560869565218, 45.28091304347826],\n            [-75.765, 45.28],\n            [-75.7570909090909, 45.27736363636364],\n            [-75.75857142857143, 45.27514285714286],\n            [-75.759, 45.275],\n            [-75.763, 45.269],\n            [-75.759, 45.262],\n            [-75.75, 45.26],\n            [-75.741, 45.262],\n            [-75.73942105263158, 45.26568421052632],\n            [-75.738, 45.266],\n            [-75.729, 45.268],\n            [-75.72788, 45.26996],\n            [-75.719, 45.267],\n            [-75.71168, 45.26944],\n            [-75.708, 45.263],\n            [-75.699, 45.261],\n            [-75.69, 45.263],\n            [-75.686, 45.27],\n            [-75.69, 45.276],\n            [-75.6988, 45.278933333333335],\n            [-75.694, 45.28],\n            [-75.69, 45.287],\n            [-75.694, 45.293],\n            [-75.703, 45.296],\n            [-75.712, 45.293],\n            [-75.71366666666667, 45.2905],\n            [-75.714, 45.291],\n            [-75.71523529411765, 45.291411764705884],\n            [-75.719, 45.298],\n            [-75.723, 45.304],\n            [-75.732, 45.307],\n            [-75.741, 45.304],\n            [-75.744, 45.298],\n            [-75.74316666666667, 45.296055555555554],\n            [-75.752, 45.299],\n            [-75.761, 45.296],\n            [-75.76169565217391, 45.29495652173913],\n            [-75.766, 45.294],\n            [-75.77, 45.287]\n          ],\n          [\n            [-75.74614285714286, 45.28171428571429],\n            [-75.7454, 45.2832],\n            [-75.743, 45.284],\n            [-75.73966666666666, 45.289],\n            [-75.737, 45.285],\n            [-75.73576470588235, 45.284588235294116],\n            [-75.73482352941177, 45.28294117647059],\n            [-75.738, 45.284],\n            [-75.7455, 45.2815],\n            [-75.74614285714286, 45.28171428571429]\n          ],\n          [\n            [-75.70808695652174, 45.27913043478261],\n            [-75.703, 45.278],\n            [-75.7, 45.278666666666666],\n            [-75.70636363636363, 45.276545454545456],\n            [-75.70808695652174, 45.27913043478261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.743, 45.675],\n            [-75.739, 45.668],\n            [-75.73, 45.666],\n            [-75.721, 45.668],\n            [-75.717, 45.675],\n            [-75.71718181818181, 45.67527272727273],\n            [-75.715, 45.676],\n            [-75.711, 45.682],\n            [-75.715, 45.689],\n            [-75.724, 45.691],\n            [-75.733, 45.689],\n            [-75.737, 45.682],\n            [-75.73681818181818, 45.68172727272727],\n            [-75.739, 45.681],\n            [-75.743, 45.675]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.725, 45.24],\n            [-75.722, 45.234],\n            [-75.713, 45.231],\n            [-75.704, 45.234],\n            [-75.7, 45.24],\n            [-75.704, 45.247],\n            [-75.713, 45.249],\n            [-75.722, 45.247],\n            [-75.725, 45.24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.724, 45.128],\n            [-75.72, 45.121],\n            [-75.711, 45.119],\n            [-75.702, 45.121],\n            [-75.699, 45.128],\n            [-75.702, 45.134],\n            [-75.711, 45.137],\n            [-75.72, 45.134],\n            [-75.724, 45.128]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.724, 45.789],\n            [-75.72, 45.783],\n            [-75.711, 45.78],\n            [-75.702, 45.783],\n            [-75.698, 45.789],\n            [-75.702, 45.795],\n            [-75.711, 45.798],\n            [-75.72, 45.795],\n            [-75.724, 45.789]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.691, 44.966],\n            [-75.688, 44.959],\n            [-75.679, 44.957],\n            [-75.67, 44.959],\n            [-75.666, 44.966],\n            [-75.67, 44.972],\n            [-75.679, 44.975],\n            [-75.688, 44.972],\n            [-75.691, 44.966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.69, 45.389],\n            [-75.686, 45.382],\n            [-75.68092727272727, 45.380872727272724],\n            [-75.68053846153846, 45.380192307692305],\n            [-75.682, 45.378],\n            [-75.678, 45.372],\n            [-75.67733333333334, 45.37177777777778],\n            [-75.677, 45.371],\n            [-75.67554838709677, 45.37067741935484],\n            [-75.676, 45.37],\n            [-75.672, 45.364],\n            [-75.663, 45.361],\n            [-75.654, 45.364],\n            [-75.65, 45.37],\n            [-75.654, 45.376],\n            [-75.65454545454546, 45.37618181818182],\n            [-75.654, 45.377],\n            [-75.65564285714285, 45.379875],\n            [-75.655, 45.381],\n            [-75.659, 45.387],\n            [-75.66416, 45.38872],\n            [-75.664, 45.389],\n            [-75.668, 45.395],\n            [-75.677, 45.398],\n            [-75.686, 45.395],\n            [-75.69, 45.389]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.688, 45.234],\n            [-75.684, 45.228],\n            [-75.675, 45.225],\n            [-75.666, 45.228],\n            [-75.662, 45.234],\n            [-75.666, 45.24],\n            [-75.675, 45.243],\n            [-75.684, 45.24],\n            [-75.688, 45.234]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.666, 45.021],\n            [-75.662, 45.015],\n            [-75.66094117647059, 45.01464705882353],\n            [-75.66, 45.013],\n            [-75.651, 45.011],\n            [-75.642, 45.013],\n            [-75.638, 45.02],\n            [-75.63825806451612, 45.02038709677419],\n            [-75.631, 45.022],\n            [-75.63078181818182, 45.02238181818182],\n            [-75.628, 45.023],\n            [-75.625, 45.03],\n            [-75.628, 45.036],\n            [-75.637, 45.039],\n            [-75.649, 45.035],\n            [-75.65157142857143, 45.03114285714286],\n            [-75.658, 45.029],\n            [-75.65857142857143, 45.02814285714286],\n            [-75.662, 45.027],\n            [-75.666, 45.021]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.659, 45.149],\n            [-75.656, 45.142],\n            [-75.647, 45.14],\n            [-75.638, 45.142],\n            [-75.634, 45.149],\n            [-75.638, 45.155],\n            [-75.647, 45.158],\n            [-75.656, 45.155],\n            [-75.659, 45.149]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.65, 45.199],\n            [-75.646, 45.192],\n            [-75.637, 45.19],\n            [-75.628, 45.192],\n            [-75.625, 45.199],\n            [-75.628, 45.205],\n            [-75.637, 45.208],\n            [-75.646, 45.205],\n            [-75.65, 45.199]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.63, 45.596],\n            [-75.626, 45.589],\n            [-75.617, 45.587],\n            [-75.608, 45.589],\n            [-75.604, 45.596],\n            [-75.608, 45.602],\n            [-75.617, 45.605],\n            [-75.626, 45.602],\n            [-75.63, 45.596]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.622, 45.144],\n            [-75.619, 45.138],\n            [-75.61, 45.135],\n            [-75.601, 45.138],\n            [-75.60073913043479, 45.13839130434783],\n            [-75.598, 45.139],\n            [-75.594, 45.146],\n            [-75.598, 45.152],\n            [-75.607, 45.155],\n            [-75.616, 45.152],\n            [-75.6161875, 45.151625],\n            [-75.619, 45.151],\n            [-75.622, 45.144]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.622, 45.507],\n            [-75.618, 45.501],\n            [-75.609, 45.498],\n            [-75.6, 45.501],\n            [-75.596, 45.507],\n            [-75.6, 45.513],\n            [-75.609, 45.516],\n            [-75.618, 45.513],\n            [-75.622, 45.507]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.616, 45.487],\n            [-75.612, 45.481],\n            [-75.603, 45.478],\n            [-75.594, 45.481],\n            [-75.59373913043478, 45.481391304347824],\n            [-75.591, 45.482],\n            [-75.587, 45.488],\n            [-75.591, 45.495],\n            [-75.6, 45.497],\n            [-75.6005, 45.49688888888889],\n            [-75.601, 45.497],\n            [-75.61, 45.495],\n            [-75.61094117647059, 45.49335294117647],\n            [-75.612, 45.493],\n            [-75.616, 45.487]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.612, 45.331],\n            [-75.60942857142857, 45.325857142857146],\n            [-75.61, 45.325],\n            [-75.606, 45.318],\n            [-75.60505263157894, 45.31778947368421],\n            [-75.603, 45.313],\n            [-75.594, 45.311],\n            [-75.585, 45.313],\n            [-75.581, 45.32],\n            [-75.58361538461538, 45.32392307692308],\n            [-75.583, 45.325],\n            [-75.587, 45.331],\n            [-75.591, 45.338],\n            [-75.6, 45.34],\n            [-75.609, 45.338],\n            [-75.612, 45.331]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.607, 45.27],\n            [-75.604, 45.263],\n            [-75.595, 45.261],\n            [-75.586, 45.263],\n            [-75.582, 45.27],\n            [-75.586, 45.276],\n            [-75.595, 45.279],\n            [-75.604, 45.276],\n            [-75.607, 45.27]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.593, 45.297],\n            [-75.59, 45.291],\n            [-75.581, 45.288],\n            [-75.572, 45.291],\n            [-75.568, 45.297],\n            [-75.572, 45.303],\n            [-75.581, 45.306],\n            [-75.59, 45.303],\n            [-75.593, 45.297]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.584, 45.281],\n            [-75.58, 45.275],\n            [-75.571, 45.272],\n            [-75.562, 45.275],\n            [-75.558, 45.281],\n            [-75.562, 45.288],\n            [-75.571, 45.29],\n            [-75.58, 45.288],\n            [-75.584, 45.281]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.584, 45.498],\n            [-75.58, 45.492],\n            [-75.571, 45.489],\n            [-75.562, 45.492],\n            [-75.558, 45.498],\n            [-75.562, 45.505],\n            [-75.571, 45.507],\n            [-75.58, 45.505],\n            [-75.584, 45.498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.577, 45.432],\n            [-75.573, 45.425],\n            [-75.564, 45.423],\n            [-75.555, 45.425],\n            [-75.551, 45.432],\n            [-75.555, 45.438],\n            [-75.564, 45.441],\n            [-75.573, 45.438],\n            [-75.577, 45.432]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.561, 45.462],\n            [-75.558, 45.455],\n            [-75.548, 45.453],\n            [-75.54575, 45.4535],\n            [-75.548, 45.449],\n            [-75.545, 45.442],\n            [-75.536, 45.44],\n            [-75.5342, 45.4404],\n            [-75.527, 45.438],\n            [-75.518, 45.441],\n            [-75.51527272727273, 45.44509090909091],\n            [-75.512, 45.444],\n            [-75.509, 45.445],\n            [-75.5, 45.447],\n            [-75.49952941176471, 45.447823529411764],\n            [-75.496, 45.449],\n            [-75.49582608695653, 45.449260869565215],\n            [-75.49439130434783, 45.449579710144924],\n            [-75.492, 45.444],\n            [-75.483, 45.442],\n            [-75.474, 45.444],\n            [-75.47, 45.451],\n            [-75.474, 45.457],\n            [-75.47657142857143, 45.457857142857144],\n            [-75.475, 45.461],\n            [-75.478, 45.468],\n            [-75.47865454545455, 45.46814545454546],\n            [-75.482, 45.474],\n            [-75.485, 45.474666666666664],\n            [-75.492, 45.477],\n            [-75.501, 45.474],\n            [-75.504, 45.468],\n            [-75.50373333333333, 45.46746666666667],\n            [-75.504, 45.467],\n            [-75.50272727272727, 45.46509090909091],\n            [-75.506, 45.464],\n            [-75.506125, 45.46375],\n            [-75.514, 45.462],\n            [-75.5144705882353, 45.461176470588235],\n            [-75.518, 45.46],\n            [-75.521, 45.459],\n            [-75.52372727272727, 45.45490909090909],\n            [-75.527, 45.456],\n            [-75.5285, 45.4555],\n            [-75.5322, 45.45673333333333],\n            [-75.531, 45.457],\n            [-75.53066666666666, 45.45777777777778],\n            [-75.53, 45.458],\n            [-75.52947826086957, 45.45878260869565],\n            [-75.524, 45.46],\n            [-75.52268421052632, 45.463070175438595],\n            [-75.514, 45.465],\n            [-75.51211764705883, 45.46829411764706],\n            [-75.507, 45.47],\n            [-75.5065294117647, 45.47094117647059],\n            [-75.503, 45.472],\n            [-75.5, 45.478],\n            [-75.503, 45.485],\n            [-75.513, 45.487],\n            [-75.522, 45.485],\n            [-75.52288524590163, 45.482934426229505],\n            [-75.526, 45.482],\n            [-75.52615384615385, 45.481692307692306],\n            [-75.528, 45.486],\n            [-75.537, 45.488],\n            [-75.547, 45.486],\n            [-75.55, 45.479],\n            [-75.547, 45.473],\n            [-75.54359574468086, 45.471978723404256],\n            [-75.548, 45.471],\n            [-75.558, 45.468],\n            [-75.561, 45.462]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.558, 44.843],\n            [-75.554, 44.836],\n            [-75.545, 44.834],\n            [-75.536, 44.836],\n            [-75.532, 44.843],\n            [-75.536, 44.849],\n            [-75.545, 44.852],\n            [-75.554, 44.849],\n            [-75.558, 44.843]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.538, 45.342],\n            [-75.534, 45.336],\n            [-75.525, 45.333],\n            [-75.516, 45.336],\n            [-75.512, 45.342],\n            [-75.516, 45.349],\n            [-75.525, 45.351],\n            [-75.534, 45.349],\n            [-75.538, 45.342]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.531, 45.241],\n            [-75.527, 45.235],\n            [-75.518, 45.232],\n            [-75.509, 45.235],\n            [-75.505, 45.241],\n            [-75.509, 45.248],\n            [-75.518, 45.25],\n            [-75.527, 45.248],\n            [-75.531, 45.241]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.509, 45.228],\n            [-75.505, 45.221],\n            [-75.496, 45.219],\n            [-75.487, 45.221],\n            [-75.483, 45.228],\n            [-75.487, 45.234],\n            [-75.496, 45.237],\n            [-75.505, 45.234],\n            [-75.509, 45.228]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.509, 45.53],\n            [-75.506, 45.524],\n            [-75.497, 45.521],\n            [-75.487, 45.524],\n            [-75.484, 45.53],\n            [-75.487, 45.537],\n            [-75.497, 45.539],\n            [-75.506, 45.537],\n            [-75.509, 45.53]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.494, 45.492],\n            [-75.49, 45.486],\n            [-75.48957142857142, 45.48585714285714],\n            [-75.489, 45.485],\n            [-75.48, 45.482],\n            [-75.471, 45.485],\n            [-75.467, 45.491],\n            [-75.471, 45.497],\n            [-75.47142857142858, 45.497142857142855],\n            [-75.472, 45.498],\n            [-75.481, 45.501],\n            [-75.49, 45.498],\n            [-75.494, 45.492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.474, 45.16],\n            [-75.47, 45.153],\n            [-75.461, 45.151],\n            [-75.452, 45.153],\n            [-75.448, 45.16],\n            [-75.452, 45.166],\n            [-75.461, 45.169],\n            [-75.47, 45.166],\n            [-75.474, 45.16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.471, 44.986],\n            [-75.467, 44.98],\n            [-75.458, 44.977],\n            [-75.449, 44.98],\n            [-75.445, 44.986],\n            [-75.449, 44.992],\n            [-75.458, 44.995],\n            [-75.467, 44.992],\n            [-75.471, 44.986]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.468, 45.369],\n            [-75.464, 45.363],\n            [-75.455, 45.36],\n            [-75.446, 45.363],\n            [-75.443, 45.369],\n            [-75.446, 45.375],\n            [-75.455, 45.378],\n            [-75.464, 45.375],\n            [-75.468, 45.369]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.467, 45.471],\n            [-75.463, 45.465],\n            [-75.454, 45.462],\n            [-75.445, 45.465],\n            [-75.441, 45.471],\n            [-75.445, 45.477],\n            [-75.454, 45.48],\n            [-75.463, 45.477],\n            [-75.467, 45.471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.456, 45.345],\n            [-75.453, 45.339],\n            [-75.45214285714286, 45.33871428571429],\n            [-75.449, 45.334],\n            [-75.44, 45.331],\n            [-75.431, 45.334],\n            [-75.427, 45.34],\n            [-75.431, 45.346],\n            [-75.43185714285714, 45.34628571428571],\n            [-75.435, 45.351],\n            [-75.444, 45.354],\n            [-75.453, 45.351],\n            [-75.456, 45.345]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.449, 45.554],\n            [-75.445, 45.548],\n            [-75.441, 45.54666666666667],\n            [-75.443, 45.542],\n            [-75.44, 45.536],\n            [-75.431, 45.533],\n            [-75.421, 45.536],\n            [-75.418, 45.542],\n            [-75.42016666666666, 45.54705555555555],\n            [-75.42, 45.547],\n            [-75.411, 45.55],\n            [-75.407, 45.556],\n            [-75.411, 45.562],\n            [-75.41276470588235, 45.562588235294115],\n            [-75.413, 45.563],\n            [-75.416, 45.56366666666667],\n            [-75.41614285714286, 45.56371428571428],\n            [-75.419, 45.568],\n            [-75.428, 45.571],\n            [-75.437, 45.568],\n            [-75.441, 45.562],\n            [-75.44094366197183, 45.5619014084507],\n            [-75.445, 45.561],\n            [-75.449, 45.554]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.443, 45.254],\n            [-75.439, 45.248],\n            [-75.43, 45.245],\n            [-75.421, 45.248],\n            [-75.417, 45.254],\n            [-75.421, 45.261],\n            [-75.43, 45.263],\n            [-75.439, 45.261],\n            [-75.443, 45.254]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.436, 45.421],\n            [-75.432, 45.415],\n            [-75.423, 45.412],\n            [-75.414, 45.415],\n            [-75.41, 45.421],\n            [-75.414, 45.428],\n            [-75.423, 45.43],\n            [-75.432, 45.428],\n            [-75.436, 45.421]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.434, 45.586],\n            [-75.43, 45.58],\n            [-75.42241176470588, 45.57747058823529],\n            [-75.421, 45.575],\n            [-75.41982608695652, 45.574739130434786],\n            [-75.416, 45.569],\n            [-75.407, 45.566],\n            [-75.4028, 45.5674],\n            [-75.401, 45.567],\n            [-75.391, 45.569],\n            [-75.388, 45.576],\n            [-75.391, 45.582],\n            [-75.401, 45.585],\n            [-75.403, 45.588],\n            [-75.41058823529411, 45.590529411764706],\n            [-75.412, 45.593],\n            [-75.421, 45.595],\n            [-75.43, 45.593],\n            [-75.434, 45.586]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.425, 44.918],\n            [-75.421, 44.911],\n            [-75.412, 44.909],\n            [-75.403, 44.911],\n            [-75.399, 44.918],\n            [-75.403, 44.924],\n            [-75.412, 44.927],\n            [-75.421, 44.924],\n            [-75.425, 44.918]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.424, 45.518],\n            [-75.42, 45.511],\n            [-75.41950909090909, 45.51089090909091],\n            [-75.419, 45.51],\n            [-75.41, 45.508],\n            [-75.401, 45.51],\n            [-75.397, 45.517],\n            [-75.401, 45.523],\n            [-75.40142857142857, 45.52314285714286],\n            [-75.402, 45.524],\n            [-75.411, 45.527],\n            [-75.42, 45.524],\n            [-75.424, 45.518]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.39, 45.088],\n            [-75.386, 45.082],\n            [-75.377, 45.079],\n            [-75.368, 45.082],\n            [-75.365, 45.088],\n            [-75.368, 45.095],\n            [-75.377, 45.097],\n            [-75.386, 45.095],\n            [-75.39, 45.088]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.372, 44.94],\n            [-75.369, 44.933],\n            [-75.36, 44.931],\n            [-75.351, 44.933],\n            [-75.347, 44.94],\n            [-75.351, 44.946],\n            [-75.36, 44.949],\n            [-75.369, 44.946],\n            [-75.372, 44.94]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.372, 45.258],\n            [-75.368, 45.252],\n            [-75.359, 45.249],\n            [-75.35, 45.252],\n            [-75.346, 45.258],\n            [-75.35, 45.264],\n            [-75.359, 45.267],\n            [-75.368, 45.264],\n            [-75.372, 45.258]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.359, 45.331],\n            [-75.356, 45.325],\n            [-75.35547058823529, 45.324823529411766],\n            [-75.355, 45.324],\n            [-75.349, 45.32266666666667],\n            [-75.347, 45.322],\n            [-75.3466, 45.32213333333333],\n            [-75.346, 45.322],\n            [-75.337, 45.324],\n            [-75.333, 45.331],\n            [-75.335, 45.334],\n            [-75.331, 45.34],\n            [-75.335, 45.347],\n            [-75.344, 45.349],\n            [-75.353, 45.347],\n            [-75.357, 45.34],\n            [-75.35570967741936, 45.33806451612903],\n            [-75.356, 45.338],\n            [-75.359, 45.331]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.357, 45.442],\n            [-75.353, 45.435],\n            [-75.344, 45.433],\n            [-75.335, 45.435],\n            [-75.332, 45.442],\n            [-75.335, 45.448],\n            [-75.344, 45.451],\n            [-75.353, 45.448],\n            [-75.357, 45.442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.354, 45.076],\n            [-75.35, 45.069],\n            [-75.341, 45.067],\n            [-75.332, 45.069],\n            [-75.328, 45.076],\n            [-75.332, 45.082],\n            [-75.341, 45.085],\n            [-75.35, 45.082],\n            [-75.354, 45.076]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.316, 45.268],\n            [-75.312, 45.261],\n            [-75.303, 45.259],\n            [-75.285, 45.263],\n            [-75.281, 45.27],\n            [-75.285, 45.276],\n            [-75.294, 45.279],\n            [-75.3015, 45.2765],\n            [-75.303, 45.277],\n            [-75.312, 45.274],\n            [-75.316, 45.268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.316, 45.546],\n            [-75.31338461538462, 45.54207692307692],\n            [-75.314, 45.541],\n            [-75.31, 45.535],\n            [-75.301, 45.532],\n            [-75.292, 45.535],\n            [-75.29, 45.538],\n            [-75.287, 45.539],\n            [-75.283, 45.545],\n            [-75.2846, 45.5478],\n            [-75.283, 45.551],\n            [-75.286, 45.558],\n            [-75.296, 45.56],\n            [-75.305, 45.558],\n            [-75.30663157894737, 45.554192982456144],\n            [-75.312, 45.553],\n            [-75.316, 45.546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.306, 45.032],\n            [-75.302, 45.026],\n            [-75.293, 45.023],\n            [-75.284, 45.026],\n            [-75.281, 45.032],\n            [-75.284, 45.038],\n            [-75.293, 45.041],\n            [-75.302, 45.038],\n            [-75.306, 45.032]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.284, 45.554],\n            [-75.281, 45.547],\n            [-75.272, 45.545],\n            [-75.263, 45.547],\n            [-75.259, 45.554],\n            [-75.263, 45.56],\n            [-75.272, 45.563],\n            [-75.281, 45.56],\n            [-75.284, 45.554]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.265, 45.33],\n            [-75.261, 45.323],\n            [-75.25491549295775, 45.32164788732394],\n            [-75.257, 45.318],\n            [-75.253, 45.312],\n            [-75.244, 45.309],\n            [-75.235, 45.312],\n            [-75.231, 45.318],\n            [-75.235, 45.325],\n            [-75.24108450704226, 45.326352112676055],\n            [-75.239, 45.33],\n            [-75.243, 45.336],\n            [-75.252, 45.339],\n            [-75.261, 45.336],\n            [-75.265, 45.33]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.262, 45.559],\n            [-75.258, 45.553],\n            [-75.249, 45.55],\n            [-75.24, 45.553],\n            [-75.236, 45.559],\n            [-75.24, 45.565],\n            [-75.249, 45.568],\n            [-75.258, 45.565],\n            [-75.262, 45.559]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.258, 45.41],\n            [-75.254, 45.404],\n            [-75.245, 45.401],\n            [-75.236, 45.404],\n            [-75.232, 45.41],\n            [-75.236, 45.417],\n            [-75.245, 45.419],\n            [-75.254, 45.417],\n            [-75.258, 45.41]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.257, 44.975],\n            [-75.254, 44.969],\n            [-75.245, 44.966],\n            [-75.236, 44.969],\n            [-75.232, 44.975],\n            [-75.236, 44.982],\n            [-75.245, 44.984],\n            [-75.254, 44.982],\n            [-75.257, 44.975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.254, 45.597],\n            [-75.25, 45.591],\n            [-75.241, 45.588],\n            [-75.232, 45.591],\n            [-75.228, 45.597],\n            [-75.22828571428572, 45.5975],\n            [-75.228, 45.598],\n            [-75.232, 45.604],\n            [-75.241, 45.607],\n            [-75.25, 45.604],\n            [-75.254, 45.598],\n            [-75.25371428571428, 45.5975],\n            [-75.254, 45.597]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.243, 45.103],\n            [-75.24184615384615, 45.10126923076923],\n            [-75.242, 45.101],\n            [-75.238, 45.095],\n            [-75.229, 45.092],\n            [-75.22, 45.095],\n            [-75.216, 45.101],\n            [-75.22, 45.108],\n            [-75.2205625, 45.108125],\n            [-75.221, 45.109],\n            [-75.23, 45.112],\n            [-75.239, 45.109],\n            [-75.243, 45.103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.242, 45.29],\n            [-75.238, 45.284],\n            [-75.229, 45.281],\n            [-75.222, 45.28333333333333],\n            [-75.219, 45.284],\n            [-75.2172, 45.2882],\n            [-75.216, 45.29],\n            [-75.21624489795919, 45.29042857142857],\n            [-75.216, 45.291],\n            [-75.219, 45.297],\n            [-75.228, 45.3],\n            [-75.235, 45.297666666666665],\n            [-75.238, 45.297],\n            [-75.242, 45.29]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.206, 45.426],\n            [-75.202, 45.42],\n            [-75.193, 45.417],\n            [-75.184, 45.42],\n            [-75.18, 45.426],\n            [-75.184, 45.433],\n            [-75.193, 45.435],\n            [-75.202, 45.433],\n            [-75.206, 45.426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.164, 45.216],\n            [-75.16, 45.21],\n            [-75.151, 45.207],\n            [-75.142, 45.21],\n            [-75.138, 45.216],\n            [-75.142, 45.223],\n            [-75.151, 45.225],\n            [-75.16, 45.223],\n            [-75.164, 45.216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.133, 45.567],\n            [-75.129, 45.561],\n            [-75.12, 45.558],\n            [-75.111, 45.561],\n            [-75.108, 45.567],\n            [-75.111, 45.574],\n            [-75.12, 45.576],\n            [-75.129, 45.574],\n            [-75.133, 45.567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.133, 45.606],\n            [-75.129, 45.599],\n            [-75.12, 45.597],\n            [-75.111, 45.599],\n            [-75.107, 45.606],\n            [-75.111, 45.612],\n            [-75.12, 45.615],\n            [-75.129, 45.612],\n            [-75.133, 45.606]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.122, 45.176],\n            [-75.118, 45.17],\n            [-75.109, 45.167],\n            [-75.1, 45.17],\n            [-75.096, 45.176],\n            [-75.1, 45.182],\n            [-75.109, 45.185],\n            [-75.118, 45.182],\n            [-75.122, 45.176]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.101, 45.315],\n            [-75.098, 45.308],\n            [-75.09447826086956, 45.30721739130435],\n            [-75.095, 45.306],\n            [-75.092, 45.3],\n            [-75.09152, 45.29984],\n            [-75.092, 45.299],\n            [-75.088, 45.293],\n            [-75.079, 45.29],\n            [-75.07, 45.293],\n            [-75.066, 45.299],\n            [-75.06907692307692, 45.30438461538461],\n            [-75.068, 45.306],\n            [-75.072, 45.313],\n            [-75.0764347826087, 45.31398550724638],\n            [-75.076, 45.315],\n            [-75.079, 45.321],\n            [-75.089, 45.324],\n            [-75.098, 45.321],\n            [-75.101, 45.315]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.09, 45.146],\n            [-75.086, 45.14],\n            [-75.077, 45.137],\n            [-75.068, 45.14],\n            [-75.065, 45.146],\n            [-75.068, 45.153],\n            [-75.077, 45.155],\n            [-75.086, 45.153],\n            [-75.09, 45.146]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.07, 45.731],\n            [-75.066, 45.725],\n            [-75.057, 45.722],\n            [-75.048, 45.725],\n            [-75.044, 45.731],\n            [-75.048, 45.737],\n            [-75.057, 45.74],\n            [-75.066, 45.737],\n            [-75.07, 45.731]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.029, 45.617],\n            [-75.026, 45.611],\n            [-75.017, 45.608],\n            [-75.01542105263158, 45.60847368421052],\n            [-75.014, 45.608],\n            [-75.005, 45.611],\n            [-75.001, 45.617],\n            [-75.005, 45.624],\n            [-75.014, 45.626],\n            [-75.01542105263158, 45.625684210526316],\n            [-75.017, 45.626],\n            [-75.026, 45.624],\n            [-75.029, 45.617]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.011, 45.535],\n            [-75.007, 45.529],\n            [-74.998, 45.526],\n            [-74.9975, 45.52616666666667],\n            [-74.997, 45.526],\n            [-74.988, 45.529],\n            [-74.98514285714286, 45.53328571428571],\n            [-74.98, 45.535],\n            [-74.977, 45.541],\n            [-74.98, 45.547],\n            [-74.989, 45.55],\n            [-74.998, 45.547],\n            [-75.00052173913043, 45.543217391304346],\n            [-75.006, 45.542],\n            [-75.00647058823529, 45.54117647058823],\n            [-75.007, 45.541],\n            [-75.011, 45.535]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.007, 45.494],\n            [-75.003, 45.488],\n            [-74.994, 45.485],\n            [-74.985, 45.488],\n            [-74.981, 45.494],\n            [-74.985, 45.501],\n            [-74.994, 45.503],\n            [-75.003, 45.501],\n            [-75.007, 45.494]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.968, 45.544],\n            [-74.965, 45.537],\n            [-74.956, 45.535],\n            [-74.946, 45.537],\n            [-74.943, 45.544],\n            [-74.946, 45.55],\n            [-74.956, 45.553],\n            [-74.965, 45.55],\n            [-74.968, 45.544]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.96, 45.65],\n            [-74.957, 45.644],\n            [-74.948, 45.641],\n            [-74.939, 45.644],\n            [-74.935, 45.65],\n            [-74.939, 45.657],\n            [-74.948, 45.659],\n            [-74.957, 45.657],\n            [-74.96, 45.65]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.944, 45.434],\n            [-74.94, 45.428],\n            [-74.931, 45.425],\n            [-74.922, 45.428],\n            [-74.918, 45.434],\n            [-74.922, 45.44],\n            [-74.931, 45.443],\n            [-74.94, 45.44],\n            [-74.944, 45.434]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.924, 45.55],\n            [-74.921, 45.543],\n            [-74.912, 45.541],\n            [-74.902, 45.543],\n            [-74.9017894736842, 45.543491228070174],\n            [-74.895, 45.545],\n            [-74.891, 45.552],\n            [-74.895, 45.558],\n            [-74.904, 45.561],\n            [-74.91094736842105, 45.558684210526316],\n            [-74.912, 45.559],\n            [-74.921, 45.556],\n            [-74.924, 45.55]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.915, 45.376],\n            [-74.911, 45.369],\n            [-74.902, 45.367],\n            [-74.893, 45.369],\n            [-74.89, 45.376],\n            [-74.893, 45.382],\n            [-74.902, 45.385],\n            [-74.911, 45.382],\n            [-74.915, 45.376]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.913, 45.347],\n            [-74.909, 45.341],\n            [-74.90852, 45.34084],\n            [-74.909, 45.34],\n            [-74.905, 45.334],\n            [-74.896, 45.331],\n            [-74.887, 45.334],\n            [-74.884, 45.34],\n            [-74.887, 45.347],\n            [-74.891, 45.353],\n            [-74.9, 45.356],\n            [-74.909, 45.353],\n            [-74.913, 45.347]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.894, 45.558],\n            [-74.89, 45.552],\n            [-74.881, 45.549],\n            [-74.872, 45.552],\n            [-74.87109090909091, 45.553363636363635],\n            [-74.87, 45.553],\n            [-74.861, 45.556],\n            [-74.857, 45.562],\n            [-74.861, 45.568],\n            [-74.87, 45.571],\n            [-74.879, 45.568],\n            [-74.87983870967741, 45.56674193548387],\n            [-74.881, 45.567],\n            [-74.89, 45.565],\n            [-74.894, 45.558]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-dissolve/test/out/issue-1208.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.283224511776062, 48.62152529086523],\n            [-1.283223460173957, 48.62149587425616],\n            [-1.283204336863981, 48.62127140243766],\n            [-1.283200385576984, 48.62124209440894],\n            [-1.283193551514328, 48.62121302046229],\n            [-1.283183863945261, 48.62118430509621],\n            [-1.283171364358196, 48.6211560712738],\n            [-1.283156106282353, 48.62112843989542],\n            [-1.283138155059225, 48.62110152928209],\n            [-1.283117587562039, 48.6210754546677],\n            [-1.283094491866843, 48.62105032770651],\n            [-1.283068966875343, 48.62102625599444],\n            [-1.283041121891164, 48.62100334260881],\n            [-1.283011076151868, 48.62098168566641],\n            [-1.282978958318435, 48.62096137790418],\n            [-1.282944905924131, 48.6209425062812],\n            [-1.282909064785374, 48.62092515160702],\n            [-1.282871588378216, 48.62090938819544],\n            [-1.282853281000662, 48.62090248529155],\n            [-1.280368567300112, 48.61999912347692],\n            [-1.280347924205498, 48.6199919212834],\n            [-1.280320228618654, 48.61998340002793],\n            [-1.280324998460496, 48.61997522341591],\n            [-1.280338266298704, 48.61994714417142],\n            [-1.280348735765438, 48.61991854972417],\n            [-1.280356362033155, 48.61988956252101],\n            [-1.280361112449975, 48.61986030668986],\n            [-1.280362966678725, 48.61983090750925],\n            [-1.280361916784434, 48.619801490871],\n            [-1.28035796726794, 48.61977218274163],\n            [-1.280351135046791, 48.61974310862284],\n            [-1.280341449382321, 48.61971439301387],\n            [-1.280328951754748, 48.61968615887872],\n            [-1.28031369568492, 48.6196585271192],\n            [-1.280300986646259, 48.61963899553673],\n            [-1.280170895889152, 48.61945139684287],\n            [-1.28048774662674, 48.61854324594615],\n            [-1.280490936201344, 48.61853362513352],\n            [-1.280498562177315, 48.61850463791849],\n            [-1.280503312380765, 48.61847538207909],\n            [-1.280505166475443, 48.61844598289379],\n            [-1.280504116526935, 48.61841656625445],\n            [-1.28050016703634, 48.61838725812762],\n            [-1.280493334921027, 48.61835818401493],\n            [-1.280483649441928, 48.61832946841567],\n            [-1.280471152078464, 48.61830123429375],\n            [-1.280455896350363, 48.61827360255095],\n            [-1.280437947589066, 48.61824669150978],\n            [-1.280417382657269, 48.61822061640603],\n            [-1.280394289620006, 48.61819548889595],\n            [-1.280368767367615, 48.61817141657797],\n            [-1.28034092519197, 48.61814850253186],\n            [-1.28031088231868, 48.61812684487731],\n            [-1.280278767396359, 48.6181065363543],\n            [-1.28024471794584, 48.61808766392516],\n            [-1.280208879770972, 48.61807030840294],\n            [-1.280171406335078, 48.61805454410499],\n            [-1.280132458102798, 48.61804043853504],\n            [-1.280092201853704, 48.61802805209381],\n            [-1.280050809968025, 48.61801743782071],\n            [-1.280039161095319, 48.61801481604547],\n            [-1.277893047964311, 48.61754612109502],\n            [-1.277862347106655, 48.6175399456404],\n            [-1.277819220476808, 48.61753300346428],\n            [-1.277775501397791, 48.61752794628687],\n            [-1.277756612566772, 48.6175263603501],\n            [-1.277038716919983, 48.61747285955211],\n            [-1.276533593969416, 48.61699219301506],\n            [-1.27651894045939, 48.61697878223661],\n            [-1.276491100696056, 48.61695586725282],\n            [-1.276461060191072, 48.61693420858668],\n            [-1.276428947583039, 48.61691389898248],\n            [-1.2763949003828, 48.61689502540719],\n            [-1.276359064384531, 48.61687766867873],\n            [-1.276321593042302, 48.61686190311978],\n            [-1.276282646811742, 48.61684779623928],\n            [-1.276242392463927, 48.61683540844369],\n            [-1.276201002370874, 48.61682479277815],\n            [-1.276158653767689, 48.61681599469944],\n            [-1.276115527993058, 48.61680905188124],\n            [-1.276071809714041, 48.6168039940532],\n            [-1.276027686133991, 48.61680084287293],\n            [-1.275983346192013, 48.61679961183405],\n            [-1.275938979753371, 48.61680030620785],\n            [-1.275894776796955, 48.61680292302098],\n            [-1.275850926601601, 48.6168074510682],\n            [-1.275807616935787, 48.61681387096022],\n            [-1.275765033253546, 48.61682215520671],\n            [-1.275729335789202, 48.6168306906182],\n            [-1.274463836155797, 48.61716007658698],\n            [-1.274453290014777, 48.61715004027392],\n            [-1.274438635011306, 48.61713662732433],\n            [-1.274410796107763, 48.61711371183489],\n            [-1.274380756403759, 48.61709205262328],\n            [-1.274348644534395, 48.61707174243572],\n            [-1.274314598007298, 48.61705286824202],\n            [-1.274278762614125, 48.61703551086261],\n            [-1.274241291805989, 48.61701974462297],\n            [-1.274202346036359, 48.61700563703504],\n            [-1.274162092074316, 48.61699324850819],\n            [-1.274120702290216, 48.61698263209073],\n            [-1.274078353917727, 48.6169738332426],\n            [-1.274035228294954, 48.61696688964098],\n            [-1.27399151008792, 48.61696183101858],\n            [-1.273947386499776, 48.61695867903674],\n            [-1.273903046469629, 48.6169574471922],\n            [-1.27385867986316, 48.61695814075996],\n            [-1.273814476660002, 48.61696075676985],\n            [-1.273770626140047, 48.61696528402038],\n            [-1.273727316073114, 48.61697170312535],\n            [-1.273684731914975, 48.61697998659814],\n            [-1.273643056013185, 48.61699009896836],\n            [-1.273602466826473, 48.61700199693458],\n            [-1.27357004069961, 48.61701307787754],\n            [-1.273065773229409, 48.61719694395058],\n            [-1.273057704553942, 48.61717870814652],\n            [-1.273042453235833, 48.61715107541426],\n            [-1.273024508838465, 48.61712416320931],\n            [-1.273003948205789, 48.6170980867725],\n            [-1.272980859384494, 48.61707295776574],\n            [-1.272955341246851, 48.61704888379381],\n            [-1.272927503067129, 48.61702596794363],\n            [-1.272897464053753, 48.61700430834265],\n            [-1.272865361639526, 48.61698400295171],\n            [-1.272551755497371, 48.61679824464821],\n            [-1.272517705428846, 48.61677936731356],\n            [-1.272481870850022, 48.61676200937147],\n            [-1.272444400808233, 48.61674624254358],\n            [-1.272405455753831, 48.61673213434422],\n            [-1.272365202452899, 48.61671974518536],\n            [-1.272323813272696, 48.61670912811817],\n            [-1.272281465444451, 48.6167003286053],\n            [-1.272238340303773, 48.61669338432682],\n            [-1.272194622514884, 48.61668832501821],\n            [-1.272150499279039, 48.61668517234385],\n            [-1.272106159533784, 48.61668393980342],\n            [-1.272105879689855, 48.6166839441738],\n            [-1.27208963797846, 48.61665958454313],\n            [-1.272069078019884, 48.6166335079377],\n            [-1.272045989878425, 48.61660837874173],\n            [-1.272020472423436, 48.6165843045608],\n            [-1.271992634926249, 48.61656138848269],\n            [-1.271962596592409, 48.61653972863585],\n            [-1.271930486051163, 48.61651941776955],\n            [-1.271896440804521, 48.61650054285615],\n            [-1.271860606638346, 48.61648318471942],\n            [-1.271823136998815, 48.6164674176879],\n            [-1.271784192334302, 48.61645330927694],\n            [-1.271743939409129, 48.6164409198995],\n            [-1.271702550589258, 48.61643030260758],\n            [-1.271660203104299, 48.61642150286484],\n            [-1.271617078288221, 48.61641455835216],\n            [-1.271581154840984, 48.61641025813049],\n            [-1.26999263224622, 48.61624923195067],\n            [-1.268596544302509, 48.61563617055374],\n            [-1.268028022380709, 48.61521616769613],\n            [-1.268007264146518, 48.61520150537049],\n            [-1.267975156054972, 48.61518119339327],\n            [-1.26794111319652, 48.61516231730238],\n            [-1.267905281347133, 48.6151449579264],\n            [-1.267867813942674, 48.61512918959932],\n            [-1.267828871422145, 48.61511507984191],\n            [-1.267788620540817, 48.61510268907298],\n            [-1.267747233655618, 48.61509207035044],\n            [-1.267704887987926, 48.61508326914404],\n            [-1.267661764864074, 48.61507632314111],\n            [-1.267618048939674, 48.61507126208461],\n            [-1.267573927407986, 48.61506810764622],\n            [-1.267529589199341, 48.61506687333341],\n            [-1.26748522417157, 48.61506756443155],\n            [-1.267441022297569, 48.61507017798129],\n            [-1.267397172851494, 48.6150747027913],\n            [-1.26735386359863, 48.61508111948611],\n            [-1.26731127999121, 48.61508940058927],\n            [-1.267269604374373, 48.61509951064075],\n            [-1.267229015205946, 48.61511140634873],\n            [-1.267189686291181, 48.61512503677523],\n            [-1.267151786039824, 48.61514034355416],\n            [-1.267115476744214, 48.61515726114093],\n            [-1.267093169226601, 48.61516888784513],\n            [-1.265853283086302, 48.61584339908835],\n            [-1.26488106946905, 48.61579977812966],\n            [-1.265111733284419, 48.61527671667284],\n            [-1.265114225300092, 48.61527092175837],\n            [-1.265124702442166, 48.61524232869601],\n            [-1.265132336768398, 48.61521334249945],\n            [-1.265137095591993, 48.61518408729255],\n            [-1.265138958540149, 48.61515468835103],\n            [-1.265137917640322, 48.61512527156578],\n            [-1.265133977354904, 48.61509596290397],\n            [-1.265127154561754, 48.61506688786943],\n            [-1.265117478482176, 48.61503817096541],\n            [-1.265104990555024, 48.61500993516152],\n            [-1.265089744259877, 48.61498230136673],\n            [-1.26507180488749, 48.61495538791212],\n            [-1.265051249260629, 48.61492931004404],\n            [-1.265028165404483, 48.61490417943058],\n            [-1.265002652169878, 48.61488010368335],\n            [-1.264974818810201, 48.61485718589684],\n            [-1.264944784513211, 48.61483552420684],\n            [-1.26491267789089, 48.61481521137043],\n            [-1.264878636428402, 48.61479633436854],\n            [-1.264842805895721, 48.61477897403377],\n            [-1.264805339723096, 48.61476320470409],\n            [-1.264766398344215, 48.61474909390476],\n            [-1.264742680291753, 48.61474153548334],\n            [-1.264273856366831, 48.61459948750937],\n            [-1.264257324676035, 48.61459465401724],\n            [-1.264215938953526, 48.61458403401792],\n            [-1.264173594330798, 48.61457523150529],\n            [-1.264130472129528, 48.61456828417205],\n            [-1.26408675700143, 48.61456322176712],\n            [-1.264042636136389, 48.61456006596778],\n            [-1.263998298461877, 48.61455883028742],\n            [-1.263953933833426, 48.61455952001716],\n            [-1.263909732222235, 48.61456213220364],\n            [-1.263865882901381, 48.61456665566129],\n            [-1.263822573635507, 48.61457307102057],\n            [-1.263779989877008, 48.6145813508105],\n            [-1.263738313971581, 48.61459145957689],\n            [-1.263697724378314, 48.61460335403327],\n            [-1.263658394904357, 48.61461698324719],\n            [-1.263641872356427, 48.61462365558212],\n            [-1.26361228817792, 48.61453551155164],\n            [-1.263577540495668, 48.6141257004852],\n            [-1.263579394701717, 48.61412441198329],\n            [-1.26360786418275, 48.61410184058854],\n            [-1.263634046327982, 48.61407808287426],\n            [-1.263652514060165, 48.61405911319032],\n            [-1.264002148082399, 48.61367937660366],\n            [-1.264007462964254, 48.61367350397324],\n            [-1.264028744029984, 48.61364768340593],\n            [-1.264047432692441, 48.61362099521154],\n            [-1.26406344892714, 48.61359355367434],\n            [-1.264076724153938, 48.61356547630443],\n            [-1.264087201530484, 48.61353688333408],\n            [-1.264094836195364, 48.61350789720386],\n            [-1.264099595460806, 48.61347864203729],\n            [-1.264101458951668, 48.6134492431098],\n            [-1.264100418693408, 48.61341982631225],\n            [-1.26409647914554, 48.61339051761182],\n            [-1.264089657182885, 48.61336144251261],\n            [-1.264079982022932, 48.61333272551815],\n            [-1.264075693511366, 48.61332223090956],\n            [-1.264055429998419, 48.61327491686429],\n            [-1.26409066871952, 48.61325676512489],\n            [-1.264117023146361, 48.61324247209221],\n            [-1.264149691459715, 48.61322255763768],\n            [-1.264180325550919, 48.61320126905643],\n            [-1.264208794240425, 48.61317869751116],\n            [-1.264234975621887, 48.61315493965811],\n            [-1.264258757584087, 48.61313009723399],\n            [-1.264280038291163, 48.61310427661919],\n            [-1.264298726618569, 48.61307758838296],\n            [-1.264314742543495, 48.61305014680976],\n            [-1.2643280174868, 48.61302206940975],\n            [-1.264338494607391, 48.61299347641562],\n            [-1.264346129045293, 48.61296449026777],\n            [-1.264346456499057, 48.61296293174382],\n            [-1.264358675229425, 48.61290402229591],\n            [-1.264393629453819, 48.61291299215851],\n            [-1.264435972716875, 48.61292179459066],\n            [-1.26447909354974, 48.61292874180938],\n            [-1.264522807297881, 48.61293380406504],\n            [-1.264566926767619, 48.61293695967964],\n            [-1.264611263027602, 48.6129381951399],\n            [-1.264655626218123, 48.61293750515539],\n            [-1.264699826364046, 48.61293489268071],\n            [-1.264743674188558, 48.61293036890324],\n            [-1.264786981923756, 48.61292395319492],\n            [-1.264829564114529, 48.61291567302964],\n            [-1.264871238413401, 48.6129055638651],\n            [-1.26488176719143, 48.61290247825924],\n            [-1.264991843904455, 48.61311563907948],\n            [-1.265004515039516, 48.61313818865409],\n            [-1.265022453728331, 48.61316510212198],\n            [-1.265043008619879, 48.61319117999784],\n            [-1.265066091698008, 48.61321631061075],\n            [-1.265091604119704, 48.61324038634617],\n            [-1.265119436638493, 48.6132633041064],\n            [-1.265149470072573, 48.61328496575253],\n            [-1.265181575814418, 48.61330527852435],\n            [-1.265215616382163, 48.61332415543778],\n            [-1.265251446007909, 48.61334151565733],\n            [-1.265288911262208, 48.6133572848422],\n            [-1.265327851710874, 48.61337139546491],\n            [-1.265368100602133, 48.61338378710019],\n            [-1.265409485580937, 48.61339440668376],\n            [-1.265451829426587, 48.61340320874],\n            [-1.265494950812149, 48.61341015557595],\n            [-1.265538665080495, 48.61341521744361],\n            [-1.265582785035864, 48.61341837266652],\n            [-1.265627121744788, 48.61341960773345],\n            [-1.265671485345641, 48.61341891735524],\n            [-1.265715685861548, 48.61341630448841],\n            [-1.265759534014117, 48.61341178032205],\n            [-1.265802842033987, 48.61340536422959],\n            [-1.265845424464909, 48.61339708368674],\n            [-1.265887098958325, 48.61338697415269],\n            [-1.26592768705345, 48.61337507891926],\n            [-1.265967014942675, 48.61336144892488],\n            [-1.266004914214935, 48.6133461425366],\n            [-1.266041222577392, 48.61332922530027],\n            [-1.266075784550316, 48.61331076965969],\n            [-1.266108452133095, 48.61329085464629],\n            [-1.266139089368383, 48.61326956262371],\n            [-1.266419246699657, 48.61306163908913],\n            [-1.266447706444458, 48.61303907282166],\n            [-1.266473886696624, 48.61301531445655],\n            [-1.26649766748782, 48.61299047156706],\n            [-1.266518946987443, 48.61296465053585],\n            [-1.266537634076119, 48.61293796193404],\n            [-1.266553648735997, 48.61291052004744],\n            [-1.26656692239377, 48.6128824423876],\n            [-1.266577398213602, 48.61285384918831],\n            [-1.266585031341092, 48.61282486289091],\n            [-1.266589789094603, 48.61279560761971],\n            [-1.266591651105988, 48.61276620865053],\n            [-1.266590609406642, 48.61273679187448],\n            [-1.266586668462371, 48.61270748325862],\n            [-1.266579845153892, 48.61267840830669],\n            [-1.26657016870473, 48.61264969152158],\n            [-1.266557680555256, 48.61262145587229],\n            [-1.266542434186069, 48.61259382226704],\n            [-1.266524494888222, 48.61256690903644],\n            [-1.266503939484103, 48.61254083142565],\n            [-1.26648085599792, 48.61251570110166],\n            [-1.266455343279063, 48.61249162567489],\n            [-1.266427510578758, 48.61246870823838],\n            [-1.266397477081709, 48.61244704692652],\n            [-1.266365371396598, 48.61242673449466],\n            [-1.266331331004553, 48.61240785792216],\n            [-1.266295501670953, 48.61239049803962],\n            [-1.266258036820851, 48.61237472918332],\n            [-1.266219096882417, 48.61236061887616],\n            [-1.266178848599771, 48.61234822753933],\n            [-1.266137464318748, 48.61233760823321],\n            [-1.266095121249558, 48.61232880643009],\n            [-1.266059902919046, 48.61232298524463],\n            [-1.265640648101822, 48.61226153913135],\n            [-1.265632745909302, 48.6122604136775],\n            [-1.265589032634302, 48.61225535184555],\n            [-1.265544913697878, 48.61225219662471],\n            [-1.26550057801919, 48.61225096152596],\n            [-1.265456215445275, 48.61225165183793],\n            [-1.265438542140136, 48.61225269656265],\n            [-1.265629886839521, 48.61184521077672],\n            [-1.266390066905077, 48.61096687933918],\n            [-1.266407308275008, 48.61094565994346],\n            [-1.266425994673257, 48.61091897135676],\n            [-1.2664420087517, 48.61089152948263],\n            [-1.266455281939409, 48.61086345183254],\n            [-1.266465757402466, 48.61083485864025],\n            [-1.266467186678144, 48.61083019035177],\n            [-1.266605050830778, 48.61036733521132],\n            [-1.267328761143776, 48.60954400234456],\n            [-1.26734829064693, 48.60952015834522],\n            [-1.267366976017321, 48.60949346960276],\n            [-1.267382989129378, 48.60946602759493],\n            [-1.267396261416307, 48.60943794983346],\n            [-1.267406736048409, 48.60940935655276],\n            [-1.267414368176139, 48.60938037019444],\n            [-1.267419125122196, 48.60935111488307],\n            [-1.26741976873396, 48.60934481720861],\n            [-1.267575981475682, 48.60763882668152],\n            [-1.267577199150543, 48.60761572536382],\n            [-1.267576156981871, 48.60758630858825],\n            [-1.267572215867037, 48.6075569999979],\n            [-1.267565392687535, 48.60752792509633],\n            [-1.267555716666071, 48.6074992083862],\n            [-1.267543229241537, 48.60747097283622],\n            [-1.267527983891095, 48.60744333935444],\n            [-1.267510045901761, 48.60741642627048],\n            [-1.267489492090088, 48.60739034882907],\n            [-1.26746641047347, 48.60736521869654],\n            [-1.267440899893422, 48.60734114348243],\n            [-1.267413069591779, 48.60731822627902],\n            [-1.267383038743271, 48.60729656521947],\n            [-1.267350935945071, 48.60727625305816],\n            [-1.267316898665996, 48.60725737677326],\n            [-1.267281072658055, 48.60724001719417],\n            [-1.267243611332194, 48.60722424865573],\n            [-1.267204675101274, 48.60721013867975],\n            [-1.267164430693528, 48.60719774768587],\n            [-1.267123050438406, 48.60718712873296],\n            [-1.267080711528827, 48.60717832729186],\n            [-1.26703759526229, 48.60717138105072],\n            [-1.266993886264749, 48.60716631975366],\n            [-1.266949771700008, 48.60716316507335],\n            [-1.266905440468482, 48.60716193051825],\n            [-1.266861082398205, 48.60716262137481],\n            [-1.266816887432218, 48.6071652346847],\n            [-1.266773044815182, 48.60716975925766],\n            [-1.266729742283042, 48.60717617571935],\n            [-1.266687165259335, 48.60718445659401],\n            [-1.266645496060923, 48.60719456642282],\n            [-1.266604913118177, 48.60720646191481],\n            [-1.266565590209787, 48.60722009213305],\n            [-1.266527695719681, 48.60723539871217],\n            [-1.266491391915539, 48.60725231610858],\n            [-1.266456834254166, 48.60727077188088],\n            [-1.266454360527243, 48.60727219082437],\n            [-1.265155755343577, 48.60802069798778],\n            [-1.264047103637358, 48.60789876035135],\n            [-1.264030895333839, 48.60789711084891],\n            [-1.263986780314441, 48.6078939550269],\n            [-1.263942448512092, 48.60789271932439],\n            [-1.263898089757303, 48.60789340903281],\n            [-1.263853893996012, 48.60789602119868],\n            [-1.263810050476277, 48.60790054463663],\n            [-1.263766746937962, 48.60790695997721],\n            [-1.263750921517248, 48.60790980361223],\n            [-1.263202474455603, 48.60801308736664],\n            [-1.263175721633105, 48.60801852337573],\n            [-1.26313405103923, 48.60802863192582],\n            [-1.263093466594405, 48.60804052617247],\n            [-1.263054142083937, 48.60805415518384],\n            [-1.263016245898427, 48.60806946059985],\n            [-1.262979940312869, 48.60808637688182],\n            [-1.262945380791645, 48.60810483159321],\n            [-1.262912715322935, 48.60812474570978],\n            [-1.262882083784689, 48.60814603395793],\n            [-1.262853617346242, 48.60816860517976],\n            [-1.262827437906167, 48.60819236272344],\n            [-1.262808972739171, 48.60821133149428],\n            [-1.262658503916609, 48.60837476739238],\n            [-1.262618430348166, 48.60838553340705],\n            [-1.26257879747812, 48.60839717227114],\n            [-1.262539472549746, 48.60841080110539],\n            [-1.262501575939297, 48.60842610635074],\n            [-1.262465269923603, 48.60844302246917],\n            [-1.262430709968905, 48.60846147702485],\n            [-1.262398044065143, 48.60848139099412],\n            [-1.262367412092265, 48.60850267910412],\n            [-1.262338945221424, 48.60852525019751],\n            [-1.262316206496681, 48.60854569221159],\n            [-1.262298970254308, 48.60854544050518],\n            [-1.262254610901896, 48.60854612957674],\n            [-1.262210414482292, 48.60854874110793],\n            [-1.26216657024651, 48.60855326391642],\n            [-1.262123265937272, 48.60855967863501],\n            [-1.262080686985887, 48.60856795779573],\n            [-1.262039015717371, 48.60857806594698],\n            [-1.261998430570848, 48.60858995980499],\n            [-1.2619591053348, 48.60860358843981],\n            [-1.261921208402788, 48.60861889349279],\n            [-1.261884902053061, 48.608635809427],\n            [-1.261850341753219, 48.60865426380731],\n            [-1.261817675494821, 48.60867417761075],\n            [-1.261789687542525, 48.60869351460252],\n            [-1.26107393892587, 48.60921848097193],\n            [-1.261071294487381, 48.6092204319181],\n            [-1.26104282662945, 48.60924300268823],\n            [-1.261016645776125, 48.60926675981638],\n            [-1.260992864039106, 48.60929160157251],\n            [-1.260971583257748, 48.60931742158184],\n            [-1.260952894562317, 48.60934410928057],\n            [-1.260936877983994, 48.60937155038917],\n            [-1.260923602111972, 48.60939962740167],\n            [-1.260913123799674, 48.60942822008913],\n            [-1.260905487921524, 48.60945720601383],\n            [-1.260901490962221, 48.6094802736225],\n            [-1.260877320641876, 48.60966074727084],\n            [-1.260038261608083, 48.61001462869984],\n            [-1.260030717987835, 48.61001785695558],\n            [-1.259994409993943, 48.61003477228883],\n            [-1.259959848040804, 48.61005322609696],\n            [-1.25992718012671, 48.61007313935948],\n            [-1.259896546140542, 48.61009442680644],\n            [-1.259868077261788, 48.61011699728329],\n            [-1.25984189539943, 48.61014075414169],\n            [-1.259838378713687, 48.61014420896316],\n            [-1.257163417853711, 48.61279838906726],\n            [-1.257143149604891, 48.61281977527986],\n            [-1.257121865357427, 48.61284559456841],\n            [-1.257103173311156, 48.61287228163333],\n            [-1.257087153511689, 48.61289972219779],\n            [-1.257073874561889, 48.61292779875831],\n            [-1.25706478080744, 48.61295208762934],\n            [-1.256847445925249, 48.61361039951218],\n            [-1.256231647584889, 48.61384467236022],\n            [-1.256197676362714, 48.61385849141628],\n            [-1.256161364310628, 48.61387540553024],\n            [-1.256126798315282, 48.61389385817712],\n            [-1.256094126392535, 48.6139137703414],\n            [-1.256063488448154, 48.61393505675807],\n            [-1.256035015678552, 48.61395762627684],\n            [-1.256008830009738, 48.61398138225335],\n            [-1.255985043574037, 48.61400622296248],\n            [-1.255963758230869, 48.614032042034],\n            [-1.255947802693358, 48.61405452008826],\n            [-1.25573362947194, 48.61437923359666],\n            [-1.255489385002171, 48.61447290923803],\n            [-1.255457483022133, 48.61448593743882],\n            [-1.255421170268729, 48.61450285131736],\n            [-1.255412964966751, 48.61450701073709],\n            [-1.254835432593986, 48.61480441714611],\n            [-1.254809070878655, 48.61481871001592],\n            [-1.254776397834345, 48.61483862180317],\n            [-1.2547457587697, 48.61485990786601],\n            [-1.254717284886249, 48.61488247705593],\n            [-1.254691098114458, 48.61490623272975],\n            [-1.254672626198921, 48.61492520150522],\n            [-1.254102150869245, 48.6155446051518],\n            [-1.253237648639263, 48.61598976086305],\n            [-1.253211285032525, 48.61600405378466],\n            [-1.253178610586796, 48.61602396511452],\n            [-1.253147970125068, 48.61604525074838],\n            [-1.253119494854587, 48.61606781953933],\n            [-1.253093306712032, 48.6160915748461],\n            [-1.253074835655688, 48.61611054130374],\n            [-1.252631371983464, 48.61659200141092],\n            [-1.251902164644851, 48.61696747298707],\n            [-1.24996381601139, 48.61737519028635],\n            [-1.249956978331628, 48.61737665495142],\n            [-1.249915297336353, 48.61738675868428],\n            [-1.249874702223022, 48.61739864823802],\n            [-1.249835366822765, 48.61741227270105],\n            [-1.249797459572686, 48.61742757373278],\n            [-1.24976114279522, 48.61744448581323],\n            [-1.249726572002652, 48.61746293652391],\n            [-1.249693895231423, 48.61748284685761],\n            [-1.249663252408024, 48.6175041315571],\n            [-1.249634774749773, 48.61752669947946],\n            [-1.249608584203601, 48.61755045398715],\n            [-1.249590107091221, 48.61756942444855],\n            [-1.249588480565087, 48.61757119017085],\n            [-1.248928121484829, 48.61759572309477],\n            [-1.248883916428374, 48.61759832947968],\n            [-1.248840063113015, 48.61760284718169],\n            [-1.248796749320442, 48.6176092568558],\n            [-1.248754160522394, 48.61761753105544],\n            [-1.248712479086211, 48.6176276343503],\n            [-1.248671883494583, 48.61763952347737],\n            [-1.248632547580397, 48.61765314752702],\n            [-1.248594639783276, 48.6176684481603],\n            [-1.248558322427893, 48.61768535985898],\n            [-1.248523751029089, 48.61770381020627],\n            [-1.248491073625586, 48.61772372019649],\n            [-1.248460430146912, 48.61774500457366],\n            [-1.24843195181318, 48.61776757219652],\n            [-1.248405760573923, 48.61779132642882],\n            [-1.248381968585584, 48.6178161655527],\n            [-1.248360677731344, 48.61784198320487],\n            [-1.248357949780379, 48.61784587640148],\n            [-1.248354972557451, 48.6178457336185],\n            [-1.247561338430474, 48.61780911368209],\n            [-1.247536554564455, 48.61780206224454],\n            [-1.247098237270714, 48.61620839586915],\n            [-1.247097436133478, 48.61620553540573],\n            [-1.247087770121307, 48.61617681698068],\n            [-1.24707529202589, 48.61614857921284],\n            [-1.247060055284341, 48.61612094301968],\n            [-1.247042125146887, 48.61609402674266],\n            [-1.247021578396446, 48.61606794564006],\n            [-1.246998503020136, 48.61604281139378],\n            [-1.246972997832794, 48.61601873163107],\n            [-1.246945172053133, 48.61599580946367],\n            [-1.24691514483654, 48.61597414304601],\n            [-1.2468830447647, 48.61595382515552],\n            [-1.246849009294757, 48.61593494279469],\n            [-1.24681318417071, 48.61591757681915],\n            [-1.246775722800044, 48.61590180159094],\n            [-1.246736785595684, 48.61588768466064],\n            [-1.246696539290035, 48.6158752864776],\n            [-1.246655156220764, 48.61586466013151],\n            [-1.24661281359278, 48.61585585112495],\n            [-1.246569692719308, 48.61584889717825],\n            [-1.246525978246347, 48.61584382806876],\n            [-1.246481857360982, 48.61584066550243],\n            [-1.246437518990726, 48.6158394230216],\n            [-1.24639315299419, 48.61584010594659],\n            [-1.246348949348326, 48.61584271135313],\n            [-1.246305097334985, 48.61584722808463],\n            [-1.246261784730303, 48.61585363680048],\n            [-1.24621919700102, 48.61586191005803],\n            [-1.246177516509781, 48.61587201243105],\n            [-1.246136921735379, 48.61588390066061],\n            [-1.246097586507065, 48.61589752384071],\n            [-1.246082626169276, 48.61590356200589],\n            [-1.246074943115563, 48.61588750055275],\n            [-1.246072734629129, 48.61588296717541],\n            [-1.246057498518576, 48.61585533084845],\n            [-1.246039569011836, 48.61582841441397],\n            [-1.246019022889133, 48.61580233313099],\n            [-1.245995948135346, 48.61577719868226],\n            [-1.245970443562152, 48.61575311869592],\n            [-1.245942618385889, 48.6157301962845],\n            [-1.245912591759284, 48.61570852960365],\n            [-1.245880492261504, 48.6156882114317],\n            [-1.245846457347137, 48.61566932877259],\n            [-1.245810632758122, 48.61565196248302],\n            [-1.245782025459812, 48.61563971168037],\n            [-1.24527766358195, 48.61543543449824],\n            [-1.245135455906055, 48.61509179755218],\n            [-1.245125687646294, 48.61507030950584],\n            [-1.245110452301528, 48.61504267305151],\n            [-1.245092523590672, 48.61501575646743],\n            [-1.245071978290491, 48.61498967501343],\n            [-1.245048904382007, 48.61496454037267],\n            [-1.245023400673622, 48.61494046017419],\n            [-1.244995576377854, 48.61491753753149],\n            [-1.244965550643775, 48.61489587060124],\n            [-1.244933452046355, 48.61487555216291],\n            [-1.244899418036825, 48.6148566692213],\n            [-1.244863594352945, 48.61483930263465],\n            [-1.244826134395629, 48.61482352676767],\n            [-1.244787198572104, 48.61480940917346],\n            [-1.244746953608822, 48.61479701030437],\n            [-1.244705571837672, 48.61478638325297],\n            [-1.24466323045783, 48.61477757352483],\n            [-1.244620110777384, 48.61477061884347],\n            [-1.244576397437176, 48.6147655489893],\n            [-1.244532277619437, 48.61476238567149],\n            [-1.244487940247123, 48.61476114243561],\n            [-1.244443575174508, 48.61476182460518],\n            [-1.244399372374667, 48.61476442925915],\n            [-1.244355521125755, 48.61476894524429],\n            [-1.244312209200709, 48.61477535322296],\n            [-1.244269622063292, 48.61478362575586],\n            [-1.244227942073672, 48.61479372741981],\n            [-1.244187347708423, 48.61480561495888],\n            [-1.244148012795077, 48.61481923747],\n            [-1.244110105769039, 48.61483453662106],\n            [-1.244073788951685, 48.61485144690008],\n            [-1.244039217855519, 48.61486989589625],\n            [-1.244006540518003, 48.61488980460985],\n            [-1.243975896868326, 48.6149110877903],\n            [-1.24394741812742, 48.61493365430137],\n            [-1.243921226246436, 48.61495740751172],\n            [-1.243897433384695, 48.61498224570779],\n            [-1.243876141429037, 48.61500806253022],\n            [-1.243857441557545, 48.61503474742888],\n            [-1.243841413849345, 48.61506218613614],\n            [-1.243828126941231, 48.61509026115637],\n            [-1.243817637733828, 48.61511885226913],\n            [-1.243811546746534, 48.61514092886468],\n            [-1.243717525692571, 48.61553735313805],\n            [-1.242983084745952, 48.61556460135693],\n            [-1.242938881165576, 48.61556720544695],\n            [-1.242895029086308, 48.61557172087247],\n            [-1.242851716284583, 48.61557812829834],\n            [-1.242809128227942, 48.61558640028763],\n            [-1.242767447280508, 48.6155965014194],\n            [-1.242726851922933, 48.61560838844005],\n            [-1.242687515987024, 48.61562201044881],\n            [-1.242649607912545, 48.61563730911557],\n            [-1.242613290025367, 48.61565421893057],\n            [-1.242578717842551, 48.61567266748489],\n            [-1.242546039406214, 48.61569257578072],\n            [-1.242515394650361, 48.61571385856924],\n            [-1.242486914800443, 48.61573642471603],\n            [-1.242460721812584, 48.61576017759115],\n            [-1.242436927850723, 48.61578501548252],\n            [-1.242415634806375, 48.61581083203218],\n            [-1.242396933862402, 48.61583751669106],\n            [-1.242380905102443, 48.61586495519261],\n            [-1.24236761716781, 48.61589303004202],\n            [-1.242357126963585, 48.61592162101965],\n            [-1.24234947941511, 48.61595060569506],\n            [-1.242344707274987, 48.61597985995216],\n            [-1.242342830983325, 48.61600925852006],\n            [-1.242343320737722, 48.61602327871794],\n            [-1.242152518214021, 48.61586032617572],\n            [-1.242130968888877, 48.61584284635353],\n            [-1.242100943835813, 48.61582117867316],\n            [-1.24206884580482, 48.61580085943275],\n            [-1.24203481224429, 48.61578197564074],\n            [-1.241998988890107, 48.61576460815865],\n            [-1.241961529142124, 48.61574883135523],\n            [-1.241922593406348, 48.61573471278763],\n            [-1.241882348408874, 48.61572231291223],\n            [-1.241840966481729, 48.61571168482605],\n            [-1.241798624825028, 48.61570287403895],\n            [-1.241755504747779, 48.61569591827914],\n            [-1.241711790892563, 48.61569084733152],\n            [-1.241667670443869, 48.61568768291],\n            [-1.241623332327291, 48.61568643856485],\n            [-1.241578966400339, 48.61568711962438],\n            [-1.241534762639727, 48.61568972317224],\n            [-1.241490910327765, 48.61569423805995],\n            [-1.241447597241907, 48.61570064495459],\n            [-1.241431769204666, 48.61570348529704],\n            [-1.241247904599385, 48.61573806676205],\n            [-1.240858779439811, 48.61558755700515],\n            [-1.240767332159842, 48.61540072452942],\n            [-1.240766522373804, 48.61539908085022],\n            [-1.240751289323023, 48.61537144381644],\n            [-1.240733362826056, 48.61534452655035],\n            [-1.240712819650296, 48.6153184443145],\n            [-1.240689747767911, 48.61529330879576],\n            [-1.240673632762961, 48.61527770663503],\n            [-1.240317938077056, 48.61494840203852],\n            [-1.239655269948605, 48.61325383399979],\n            [-1.239643052951431, 48.61322625264579],\n            [-1.239627821174991, 48.61319861545914],\n            [-1.239609896052565, 48.61317169801374],\n            [-1.239589354345649, 48.61314561557313],\n            [-1.239566284020119, 48.61312047982484],\n            [-1.239540783868789, 48.61309639840263],\n            [-1.239512963088989, 48.61307347442524],\n            [-1.239482940814642, 48.61305180605486],\n            [-1.239450845606291, 48.61303148607731],\n            [-1.239416814900238, 48.61301260150409],\n            [-1.239380994420116, 48.61299523320013],\n            [-1.239362513108295, 48.61298716324475],\n            [-1.239307408071662, 48.61296394705914],\n            [-1.238801492996209, 48.61157058091715],\n            [-1.238798882326389, 48.61156363402585],\n            [-1.238786410024098, 48.61153539534737],\n            [-1.238771179229452, 48.61150775804401],\n            [-1.238753255167158, 48.61148084046197],\n            [-1.238732714594155, 48.61145475786516],\n            [-1.238709645471143, 48.6114296219419],\n            [-1.238695926340652, 48.61141625049571],\n            [-1.236613295578566, 48.60946278404123],\n            [-1.236601516724194, 48.60945207365661],\n            [-1.236573699296832, 48.60942914896023],\n            [-1.236543680461095, 48.60940747981471],\n            [-1.236511588762417, 48.60938715900907],\n            [-1.236477561622511, 48.60936827355823],\n            [-1.236472854676358, 48.60936585230947],\n            [-1.236262608041976, 48.60925867881767],\n            [-1.235804097984954, 48.60832155790068],\n            [-1.235803286487205, 48.60831991012317],\n            [-1.235788058303031, 48.60829227241801],\n            [-1.235770136980585, 48.60826535436406],\n            [-1.235749599265097, 48.60823927122745],\n            [-1.235726533104975, 48.60821413469851],\n            [-1.235701037275587, 48.60819005241446],\n            [-1.2356732209556, 48.60816712749763],\n            [-1.235643203259931, 48.60814545811449],\n            [-1.235611112729238, 48.60812513705498],\n            [-1.2355770867801, 48.60810625133514],\n            [-1.235576174660999, 48.60810577868047],\n            [-1.234121723509023, 48.60735339525775],\n            [-1.234086821045983, 48.60733649799332],\n            [-1.234049369976338, 48.60732071855876],\n            [-1.234010442977853, 48.60730659729384],\n            [-1.23397020666673, 48.60729419463151],\n            [-1.233928833337847, 48.60728356368058],\n            [-1.233886500154449, 48.60727474996327],\n            [-1.233843388389291, 48.60726779122038],\n            [-1.233799682649364, 48.60726271724944],\n            [-1.233755570084383, 48.6072595497776],\n            [-1.23371123958623, 48.60725830236778],\n            [-1.233666880979802, 48.60725898036173],\n            [-1.233622684210358, 48.6072615808561],\n            [-1.233578838530411, 48.60726609271559],\n            [-1.233535531688879, 48.60727249662004],\n            [-1.233492949127881, 48.60728076514786],\n            [-1.233451273187902, 48.6072908628927],\n            [-1.233410682328129, 48.60730274661571],\n            [-1.233371350361305, 48.60731636543007],\n            [-1.233333445710148, 48.60733166101934],\n            [-1.23329713068568, 48.60734856788697],\n            [-1.233262560792772, 48.60736701363665],\n            [-1.233229884063969, 48.60738691928266],\n            [-1.233199240425542, 48.6074081995875],\n            [-1.233170761098565, 48.60743076342743],\n            [-1.233144568036686, 48.60745451418214],\n            [-1.233120773404361, 48.60747935014899],\n            [-1.233099479095725, 48.60750516497798],\n            [-1.233080776299154, 48.60753184812747],\n            [-1.23306474510622, 48.60755928533745],\n            [-1.23305145416857, 48.60758735911859],\n            [-1.233040960404392, 48.60761594925585],\n            [-1.233033308753959, 48.60764493332243],\n            [-1.233028531987777, 48.60767418720475],\n            [-1.233026650565339, 48.60770358563357],\n            [-1.233027672548497, 48.60773300272041],\n            [-1.233031593566047, 48.60776231249674],\n            [-1.233038396832538, 48.60779138945326],\n            [-1.233047841016253, 48.60781956134012],\n            [-1.233519239252958, 48.60903947978478],\n            [-1.233519451466985, 48.60904002752132],\n            [-1.233531920196753, 48.60906826677741],\n            [-1.23354714737693, 48.60909590478154],\n            [-1.23356506780649, 48.6091228231822],\n            [-1.233585604750636, 48.60914890670954],\n            [-1.23360867027003, 48.60917404366846],\n            [-1.23363416559684, 48.60919812641721],\n            [-1.233661981557854, 48.60922105182819],\n            [-1.233691999042113, 48.6092427217295],\n            [-1.233724089510455, 48.60926304332583],\n            [-1.233758115546404, 48.60928192959513],\n            [-1.233793931444231, 48.60929929966191],\n            [-1.233812405719821, 48.60930736849932],\n            [-1.234264621749164, 48.6094979371254],\n            [-1.234358757750278, 48.60969034155035],\n            [-1.234591974185662, 48.61019633085756],\n            [-1.235015536335735, 48.61167966846324],\n            [-1.235025137592285, 48.61170818803938],\n            [-1.235037607827569, 48.61173642712728],\n            [-1.235052836641499, 48.61176406492688],\n            [-1.235070758825916, 48.61179098308782],\n            [-1.235091297638826, 48.61181706634114],\n            [-1.235114365132521, 48.61184220299298],\n            [-1.235135075643987, 48.61186201246348],\n            [-1.235831175481459, 48.61249110978704],\n            [-1.236154351175964, 48.61333508658309],\n            [-1.23615493804258, 48.61333660802195],\n            [-1.236167409314954, 48.61336484698419],\n            [-1.236182639241914, 48.61339248463101],\n            [-1.236200562610283, 48.61341940261256],\n            [-1.236221102672934, 48.61344548566077],\n            [-1.236244171477121, 48.61347062208263],\n            [-1.236269670240942, 48.61349470423858],\n            [-1.236297489776517, 48.61351762900355],\n            [-1.236327510957438, 48.61353929820866],\n            [-1.236359605228778, 48.61355961906118],\n            [-1.236393635157673, 48.61357850454252],\n            [-1.236429455022068, 48.61359587378054],\n            [-1.236458045949014, 48.61360812168122],\n            [-1.236494487883184, 48.61362288669623],\n            [-1.236207337836623, 48.61358072603828],\n            [-1.236199438252097, 48.61357959886967],\n            [-1.236155726794543, 48.61357452580006],\n            [-1.236111608550146, 48.61357135923721],\n            [-1.236067272435086, 48.61357011274026],\n            [-1.236022908298362, 48.61357079164691],\n            [-1.235978706108913, 48.61357339305001],\n            [-1.235934855142395, 48.61357790581025],\n            [-1.235891543170486, 48.61358431060371],\n            [-1.235848955657131, 48.61359258000503],\n            [-1.235807274964114, 48.61360267860403],\n            [-1.235789549166604, 48.61360786794407],\n            [-1.23471660400005, 48.61236703426386],\n            [-1.234695773654102, 48.6123445049813],\n            [-1.234670276225953, 48.61232042247324],\n            [-1.234642458093056, 48.61229749731131],\n            [-1.234612438378062, 48.61227582766291],\n            [-1.234580345630523, 48.6122555063191],\n            [-1.234546317276168, 48.61223662029736],\n            [-1.23451049902882, 48.61221925046878],\n            [-1.234473044266229, 48.6122034712122],\n            [-1.2344431501584, 48.61219262794396],\n            [-1.234399873812373, 48.6121087097201],\n            [-1.234387214101453, 48.6120861518232],\n            [-1.234369292177349, 48.61205923355566],\n            [-1.234348753639838, 48.61203315017325],\n            [-1.234325686440847, 48.61200801336745],\n            [-1.23430018936008, 48.61198393077649],\n            [-1.23427237158166, 48.61196100552415],\n            [-1.234242352226738, 48.61193933577827],\n            [-1.234210259843107, 48.61191901433035],\n            [-1.23417855380723, 48.6119014169233],\n            [-1.234187676043197, 48.61188840293706],\n            [-1.234203708002717, 48.61186096557647],\n            [-1.234216999426139, 48.61183289166819],\n            [-1.234227493401428, 48.61180430142994],\n            [-1.234235144996525, 48.61177531729032],\n            [-1.234239921450777, 48.61174606336432],\n            [-1.234241802315641, 48.61171666492224],\n            [-1.234240779542095, 48.61168724785279],\n            [-1.234236857514812, 48.61165793812426],\n            [-1.234230053033634, 48.61162886124527],\n            [-1.234220395241088, 48.61160014172683],\n            [-1.23420792549799, 48.61157190254967],\n            [-1.234192697206082, 48.6115442646374],\n            [-1.2341747755789, 48.6115173463386],\n            [-1.234154237363272, 48.61149126292042],\n            [-1.234131170509805, 48.61146612607465],\n            [-1.234105673796564, 48.61144204343965],\n            [-1.234077856406173, 48.61141911813939],\n            [-1.234047837458046, 48.61139744834188],\n            [-1.234015745498396, 48.61137712683874],\n            [-1.233981717949597, 48.61135824064826],\n            [-1.233945900522093, 48.61134087064223],\n            [-1.233908446589997, 48.61132509120012],\n            [-1.233869516534558, 48.6113109698904],\n            [-1.233829277057548, 48.61129856718137],\n            [-1.233793243842056, 48.61128930907081],\n            [-1.233764866428877, 48.61095224494345],\n            [-1.233760944735967, 48.61092293519746],\n            [-1.233754140629009, 48.61089385828893],\n            [-1.233744483248993, 48.61086513872917],\n            [-1.233732013955016, 48.61083689949901],\n            [-1.233716786146601, 48.61080926152222],\n            [-1.233698865035706, 48.6107823431479],\n            [-1.233678327366501, 48.61075625964326],\n            [-1.233655261087394, 48.61073112270053],\n            [-1.233629764974074, 48.61070703995853],\n            [-1.233601948206564, 48.61068411454173],\n            [-1.233571929901562, 48.61066244461843],\n            [-1.233539838602584, 48.61064212298113],\n            [-1.233505811729285, 48.61062323664845],\n            [-1.233469994988812, 48.6106058664928],\n            [-1.233432541752739, 48.61059008689433],\n            [-1.233393612399198, 48.61057596542223],\n            [-1.233388548955694, 48.61051581612549],\n            [-1.233384627515881, 48.61048650636586],\n            [-1.233377823685262, 48.61045742943428],\n            [-1.233368166603668, 48.61042870984205],\n            [-1.233355697628895, 48.61040047057026],\n            [-1.23334047015911, 48.61037283254268],\n            [-1.23332254940479, 48.61034591410878],\n            [-1.233302012108626, 48.61031983053601],\n            [-1.233278946217389, 48.61029469351687],\n            [-1.233253450505107, 48.61027061069044],\n            [-1.233225634150128, 48.61024768518168],\n            [-1.233195616267349, 48.61022601515918],\n            [-1.233163525398506, 48.61020569341589],\n            [-1.233129498961378, 48.61018680697084],\n            [-1.233093682661273, 48.61016943669706],\n            [-1.233056229867826, 48.61015365697513],\n            [-1.233017300957351, 48.61013953537469],\n            [-1.232977062626643, 48.61012713236519],\n            [-1.232935687179235, 48.61011650105703],\n            [-1.232893351787483, 48.61010768697389],\n            [-1.232850237733516, 48.61010072785799],\n            [-1.232850161149857, 48.61010071896692],\n            [-1.232798957767043, 48.61000509509154],\n            [-1.23278891540618, 48.60998751503201],\n            [-1.232770995083934, 48.60996059651113],\n            [-1.232766057929609, 48.60995393340933],\n            [-1.231475140314764, 48.60824740457449],\n            [-1.23145954164269, 48.60822798382628],\n            [-1.231437760855016, 48.60820415210839],\n            [-1.23064658500684, 48.60739606090572],\n            [-1.229840578373465, 48.60633045072431],\n            [-1.229824981348513, 48.60631103031015],\n            [-1.229801919029998, 48.60628589258485],\n            [-1.229776427011122, 48.60626180897878],\n            [-1.229748614454365, 48.60623888262001],\n            [-1.229718600458536, 48.60621721168108],\n            [-1.229686513548367, 48.60619688895866],\n            [-1.229652491124968, 48.60617800147593],\n            [-1.229638044824613, 48.60617070560394],\n            [-1.229563425211504, 48.60613405655685],\n            [-1.229430637590645, 48.60579610402322],\n            [-1.229418655708059, 48.6057691026799],\n            [-1.229403431800364, 48.60574146412166],\n            [-1.229385514799621, 48.60571454506452],\n            [-1.229364981432435, 48.60568846077887],\n            [-1.229341919628788, 48.60566332296008],\n            [-1.229316428145184, 48.60563923925073],\n            [-1.229288616141824, 48.6056163127794],\n            [-1.22925860271514, 48.60559464171914],\n            [-1.229226516387425, 48.60557431886706],\n            [-1.229192494557332, 48.60555543124703],\n            [-1.229156682910484, 48.60553805973712],\n            [-1.229119234796254, 48.60552227872314],\n            [-1.229080310571191, 48.60550815578037],\n            [-1.229046418969866, 48.6054975671243],\n            [-1.228779119176127, 48.60541996468906],\n            [-1.22873671013259, 48.60533769713281],\n            [-1.228724054661678, 48.60531513860125],\n            [-1.228706138175804, 48.60528821943716],\n            [-1.228685605334476, 48.60526213502904],\n            [-1.228662544065322, 48.6052369970728],\n            [-1.228637053122546, 48.60521291321163],\n            [-1.228609241664089, 48.60518998657467],\n            [-1.228579228783988, 48.60516831533579],\n            [-1.228547143002297, 48.60514799229278],\n            [-1.228513121715049, 48.60512910447039],\n            [-1.228477310605851, 48.60511173274757],\n            [-1.228439863021698, 48.60509595151098],\n            [-1.228400939316798, 48.60508182833685],\n            [-1.228360706165688, 48.60506942370138],\n            [-1.228319335849735, 48.60505879072177],\n            [-1.228277005519034, 48.60504997492899],\n            [-1.228233896434372, 48.60504301407274],\n            [-1.228190193191248, 48.60503793795949],\n            [-1.228146082928585, 48.60503476832565],\n            [-1.228101754528475, 48.60503351874342],\n            [-1.228057397806759, 48.60503419456386],\n            [-1.228013202700764, 48.60503679289285],\n            [-1.227969358455709, 48.60504130260425],\n            [-1.227926052814516, 48.60504770438741],\n            [-1.227883471214051, 48.60505597082954],\n            [-1.227841795990798, 48.60506606653344],\n            [-1.227801205600889, 48.60507794826873],\n            [-1.227761873854869, 48.60509156515733],\n            [-1.227723969174515, 48.60510685889109],\n            [-1.22768765387119, 48.60512376398122],\n            [-1.227653083450924, 48.60514220803918],\n            [-1.22762040594828, 48.60516211208635],\n            [-1.227589761293166, 48.60518339089215],\n            [-1.227309481080507, 48.60539121693888],\n            [-1.22728100025491, 48.60541377931592],\n            [-1.227254805463993, 48.6054375287256],\n            [-1.22723100887945, 48.60546236347075],\n            [-1.227209712404027, 48.60548817720694],\n            [-1.227191007235373, 48.60551485939708],\n            [-1.227174973474974, 48.60554229578519],\n            [-1.227161679785604, 48.60557036888564],\n            [-1.227151183097246, 48.60559895848596],\n            [-1.22714352836266, 48.60562794216195],\n            [-1.227138748365442, 48.6056571958017],\n            [-1.227136863579295, 48.60568659413686],\n            [-1.227137882080118, 48.60571601127946],\n            [-1.227141799511717, 48.60574532126071],\n            [-1.227148599103947, 48.60577439857043],\n            [-1.227158251744833, 48.60580311869462],\n            [-1.227170716104857, 48.60583135864852],\n            [-1.227185938813911, 48.60585899750353],\n            [-1.227203854690113, 48.60588591690471],\n            [-1.227224387018111, 48.60591200157777],\n            [-1.227247447878292, 48.60593713982286],\n            [-1.227272938522988, 48.60596122399253],\n            [-1.22730074979895, 48.60598415095309],\n            [-1.227330762615202, 48.60600582252619],\n            [-1.227362848452549, 48.60602614590924],\n            [-1.227396869914437, 48.60604503407255],\n            [-1.227432681314662, 48.60606240613259],\n            [-1.227470129301873, 48.6060781876978],\n            [-1.227509053515965, 48.60609231118766],\n            [-1.22754928727465, 48.60610471612178],\n            [-1.227590658287565, 48.60611534937901],\n            [-1.227632989393845, 48.60612416542507],\n            [-1.227668201096499, 48.60612999874961],\n            [-1.227682461943582, 48.60613209403663],\n            [-1.227723008125954, 48.60623529346931],\n            [-1.2277349881579, 48.6062622923113],\n            [-1.227750211307161, 48.6062899310907],\n            [-1.22776812763828, 48.60631685040296],\n            [-1.227788660434384, 48.60634293497414],\n            [-1.227789715437728, 48.60634417003492],\n            [-1.227995533603179, 48.60658422956676],\n            [-1.228118116551971, 48.606896222163],\n            [-1.228130096953102, 48.60692322096264],\n            [-1.22814532051907, 48.60695085968847],\n            [-1.228163237296711, 48.6069777789379],\n            [-1.228183770567095, 48.60700386343726],\n            [-1.228185551427095, 48.60700594294015],\n            [-1.231443950306947, 48.61078697287665],\n            [-1.231445739415229, 48.61078904930504],\n            [-1.231447382887927, 48.61079095132395],\n            [-1.231699915394413, 48.6110806738482],\n            [-1.231719552396338, 48.61110183116765],\n            [-1.231745047795729, 48.61112591433455],\n            [-1.23177286396174, 48.61114884020204],\n            [-1.231802881782209, 48.61117051059636],\n            [-1.231834972716939, 48.61119083271994],\n            [-1.231868999347052, 48.61120971954876],\n            [-1.231904815964604, 48.61122709020464],\n            [-1.23194226919582, 48.61124287030231],\n            [-1.231981198657954, 48.61125699226742],\n            [-1.232015091437977, 48.61126757908864],\n            [-1.23209547781753, 48.61129091185416],\n            [-1.232128923849334, 48.61168833440827],\n            [-1.232132844651657, 48.61171764420894],\n            [-1.232139647933475, 48.61174672121242],\n            [-1.232149304567067, 48.61177544090617],\n            [-1.232161773205629, 48.61180368030718],\n            [-1.232177000461086, 48.61183131848928],\n            [-1.232194921131653, 48.61185823710027],\n            [-1.232215458481794, 48.61188432086941],\n            [-1.232238524570373, 48.61190945810058],\n            [-1.232264020627099, 48.61193354115074],\n            [-1.232291837475723, 48.61195646689104],\n            [-1.232321856001308, 48.61197813714839],\n            [-1.232353947660299, 48.61199845912557],\n            [-1.23238797503104, 48.6120173457992],\n            [-1.232423792402388, 48.612034716292],\n            [-1.232461246397074, 48.61205049621917],\n            [-1.232500176629372, 48.61206461800716],\n            [-1.232540416391255, 48.61207702118287],\n            [-1.232581793366601, 48.61208765263275],\n            [-1.232624130368984, 48.61209646683012],\n            [-1.232664269047685, 48.6121029455124],\n            [-1.232672371131209, 48.61211511536588],\n            [-1.232692908833548, 48.61214119904894],\n            [-1.232715975278242, 48.61216633618351],\n            [-1.232741471693482, 48.61219041912703],\n            [-1.232769288901499, 48.61221334475107],\n            [-1.232799307785677, 48.61223501488285],\n            [-1.232831399801162, 48.61225533672597],\n            [-1.232863105589037, 48.61227293450572],\n            [-1.23285398294096, 48.61228594838609],\n            [-1.232837950110417, 48.61231338555699],\n            [-1.232824657791072, 48.61234145930443],\n            [-1.23281416290707, 48.61237004941324],\n            [-1.232806510403399, 48.61239903345692],\n            [-1.232801733054183, 48.61242828732201],\n            [-1.232799851321713, 48.61245768573923],\n            [-1.23280087326888, 48.61248710282028],\n            [-1.23280479452466, 48.61251641259662],\n            [-1.232811598302561, 48.61254548955888],\n            [-1.232821255472745, 48.61257420919459],\n            [-1.232833724686226, 48.61260244852119],\n            [-1.232848952552135, 48.6126300866126],\n            [-1.232866873866467, 48.61265700511724],\n            [-1.232887411890689, 48.61268308876463],\n            [-1.232910478680707, 48.61270822585928],\n            [-1.232935975463472, 48.61273230875872],\n            [-1.232963793059498, 48.61275523433471],\n            [-1.232993812350691, 48.61277690441483],\n            [-1.233025904790177, 48.61279722620277],\n            [-1.233059932953045, 48.61281611267584],\n            [-1.233095751124513, 48.61283348295761],\n            [-1.233133205924155, 48.61284926266428],\n            [-1.233172136962708, 48.61286338422309],\n            [-1.233212377528667, 48.61287578716203],\n            [-1.233253755302495, 48.61288641836855],\n            [-1.233296093094427, 48.61289523231712],\n            [-1.233331310189527, 48.61290106389746],\n            [-1.23333137014193, 48.61290107270173],\n            [-1.233431928240238, 48.61319369742787],\n            [-1.233436417916489, 48.61320596479111],\n            [-1.23344888763157, 48.61323420404964],\n            [-1.233464116026335, 48.61326184205832],\n            [-1.233476805467773, 48.61328137911459],\n            [-1.234230955583828, 48.6143707841709],\n            [-1.234236188234461, 48.61437816548698],\n            [-1.234256727670433, 48.61440424888618],\n            [-1.234279795933073, 48.61442938570245],\n            [-1.234305294242777, 48.61445346829461],\n            [-1.234333113413604, 48.61447639353563],\n            [-1.234363134320724, 48.61449806325466],\n            [-1.23439522841031, 48.61451838465666],\n            [-1.234429258250376, 48.61453727072085],\n            [-1.234463482723291, 48.6145539166281],\n            [-1.234502985035533, 48.61457189649422],\n            [-1.234616843387559, 48.61477537924472],\n            [-1.234623634480547, 48.61478701809371],\n            [-1.234628102210593, 48.61479419103643],\n            [-1.235173399940863, 48.61564867544494],\n            [-1.235186855684363, 48.61566842066059],\n            [-1.235207396139539, 48.6156945038873],\n            [-1.23522106452868, 48.61570983971375],\n            [-1.237234894121484, 48.61787034162996],\n            [-1.237244295856574, 48.61788014225975],\n            [-1.237269797332745, 48.61790422418688],\n            [-1.237297619760966, 48.61792714870297],\n            [-1.237327644002499, 48.61794881764029],\n            [-1.237359741489228, 48.61796913820724],\n            [-1.237388849647632, 48.61798544289],\n            [-1.23747573199299, 48.61803139907362],\n            [-1.237617075102866, 48.61839087290856],\n            [-1.237629063345505, 48.61841787072267],\n            [-1.237644295603899, 48.61844550816692],\n            [-1.237662221553384, 48.61847242591183],\n            [-1.237682764435539, 48.61849850869021],\n            [-1.23770583628547, 48.61852364481023],\n            [-1.237731338308483, 48.61854772663361],\n            [-1.237759161302612, 48.61857065103671],\n            [-1.237789186126699, 48.61859231985213],\n            [-1.23782128421015, 48.61861264028902],\n            [-1.237855318103893, 48.61863152533039],\n            [-1.237891142068608, 48.61864889410605],\n            [-1.237928602699006, 48.61866467223849],\n            [-1.237967539580944, 48.61867879216192],\n            [-1.238007785977819, 48.61869119341115],\n            [-1.238049169545152, 48.61870182288093],\n            [-1.23809151306838, 48.61871063505316],\n            [-1.238134635221828, 48.61871759219163],\n            [-1.238178351345309, 48.61872266450416],\n            [-1.238222474234991, 48.61872583026969],\n            [-1.238266814944815, 48.61872707593166],\n            [-1.238311183596088, 48.61872639615571],\n            [-1.238355390190293, 48.61872379385289],\n            [-1.238399245422959, 48.61871928016683],\n            [-1.238442561494448, 48.61871287442661],\n            [-1.23848515291402, 48.61870460406298],\n            [-1.238526837294507, 48.61869450449204],\n            [-1.238567436133078, 48.61868261896264],\n            [-1.238606775575881, 48.61866899837186],\n            [-1.238644687162431, 48.61865370104641],\n            [-1.238681008547131, 48.61863679249327],\n            [-1.238715584194456, 48.61861834511911],\n            [-1.238748266045262, 48.61859843791994],\n            [-1.238778914150336, 48.61857715614328],\n            [-1.238807397269959, 48.61855459092255],\n            [-1.238833593436055, 48.61853083888717],\n            [-1.238857390474095, 48.61850600174862],\n            [-1.238878686483611, 48.61848018586476],\n            [-1.238897390274567, 48.6184535017847],\n            [-1.238913421757808, 48.61842606377494],\n            [-1.238926712287944, 48.61839798933053],\n            [-1.238926960353732, 48.61839739672804],\n            [-1.239174852964491, 48.61780362515194],\n            [-1.239185097308884, 48.61777562707216],\n            [-1.239192746956839, 48.61774664261121],\n            [-1.239197521096402, 48.61771738848849],\n            [-1.239199399288824, 48.61768798997507],\n            [-1.239198373496553, 48.61765857296004],\n            [-1.239194448117151, 48.61762926341145],\n            [-1.239187639964849, 48.6176001868371],\n            [-1.239177978197923, 48.6175714677468],\n            [-1.239165504194253, 48.61754322911936],\n            [-1.239150271373508, 48.61751559187595],\n            [-1.239132344969127, 48.61748867436261],\n            [-1.239111801747983, 48.61746259184276],\n            [-1.239088729682185, 48.6174374560045],\n            [-1.239063227572281, 48.61741337448188],\n            [-1.239035404623876, 48.61739045039413],\n            [-1.239005379980265, 48.61736878190389],\n            [-1.238973282211981, 48.61734846179757],\n            [-1.23893924876646, 48.61732957708707],\n            [-1.238903425378943, 48.61731220863802],\n            [-1.238865965449525, 48.6172964308232],\n            [-1.238827029384932, 48.61728231120417],\n            [-1.238793136706129, 48.61727172802352],\n            [-1.23860210371882, 48.61721629766613],\n            [-1.238495992781084, 48.61700914881163],\n            [-1.238482862864989, 48.61698568261568],\n            [-1.238467791362203, 48.61696274745742],\n            [-1.237091520379725, 48.61501792198064],\n            [-1.237361865958568, 48.61481744890259],\n            [-1.237390347586025, 48.61479488402945],\n            [-1.237416542464132, 48.6147711323131],\n            [-1.237440338423934, 48.61474629546359],\n            [-1.237461633569601, 48.61472047983773],\n            [-1.237480336714734, 48.61469379598332],\n            [-1.237496367773014, 48.61466635816606],\n            [-1.237500473624433, 48.61465768503145],\n            [-1.237726065326632, 48.61502760809575],\n            [-1.237743688118378, 48.61505402979826],\n            [-1.237764229647755, 48.61508011256716],\n            [-1.237787299971527, 48.61510524867575],\n            [-1.237812800301634, 48.61512933048574],\n            [-1.237840621443445, 48.61515225487357],\n            [-1.237870644263555, 48.61517392367194],\n            [-1.237902740200063, 48.61519424409003],\n            [-1.237936771813111, 48.61521312911094],\n            [-1.237972593373089, 48.61523049786457],\n            [-1.238010051485041, 48.61524627597352],\n            [-1.238031790082803, 48.61525442978694],\n            [-1.238543057125205, 48.6154380397686],\n            [-1.238863791171128, 48.61596393593069],\n            [-1.238881413264612, 48.61599035479503],\n            [-1.238901955765612, 48.61601643735843],\n            [-1.238925027086706, 48.61604157323636],\n            [-1.238950528435479, 48.61606565479171],\n            [-1.23897835061294, 48.61608857890184],\n            [-1.239008374481292, 48.61611024740068],\n            [-1.239040471474135, 48.61613056749876],\n            [-1.239074504147075, 48.61614945218046],\n            [-1.239110326765986, 48.61616682057714],\n            [-1.239147785931356, 48.61618259831302],\n            [-1.239186721235257, 48.6161967178239],\n            [-1.239226965947959, 48.61620911864636],\n            [-1.239268347732099, 48.61621974767712],\n            [-1.239310689380766, 48.61622855939967],\n            [-1.23935380957632, 48.61623551607999],\n            [-1.239373385081337, 48.61623802182224],\n            [-1.23925371131582, 48.61645048723754],\n            [-1.239248965271023, 48.61645918510606],\n            [-1.239235675432693, 48.61648725959106],\n            [-1.23922518332575, 48.61651585028068],\n            [-1.23921753388341, 48.61654483474588],\n            [-1.239212759866688, 48.61657408887139],\n            [-1.239210881723627, 48.61660348738697],\n            [-1.239211907501729, 48.61663290440367],\n            [-1.239215832813565, 48.61666221395334],\n            [-1.239222640855275, 48.61669129052761],\n            [-1.239232302478777, 48.61672000961563],\n            [-1.2392447763159, 48.61674824823712],\n            [-1.239260008956309, 48.61677588546918],\n            [-1.239277935175098, 48.6168028029637],\n            [-1.239298478213069, 48.6168288854547],\n            [-1.239321550104646, 48.61685402125158],\n            [-1.239347052054778, 48.61687810271745],\n            [-1.239374874861856, 48.61690102673013],\n            [-1.239404899385563, 48.61692269512405],\n            [-1.239436997056544, 48.61694301510996],\n            [-1.239471030427466, 48.6169618996729],\n            [-1.239506853761505, 48.61697926794472],\n            [-1.239544313655792, 48.61699504555011],\n            [-1.239555827494714, 48.61699945109371],\n            [-1.239759146265274, 48.61707549528382],\n            [-1.24012400423589, 48.6184027660974],\n            [-1.240124804720948, 48.61840562555127],\n            [-1.240134467188254, 48.61843434456028],\n            [-1.240146941956393, 48.61846258308069],\n            [-1.24016217561097, 48.61849022018999],\n            [-1.240180102922825, 48.61851713754059],\n            [-1.240200647127943, 48.61854321986705],\n            [-1.240223720255891, 48.61856835547964],\n            [-1.240249223506222, 48.61859243674215],\n            [-1.240277047671874, 48.61861536053341],\n            [-1.240307073606453, 48.61863702868852],\n            [-1.240339172735028, 48.61865734841942],\n            [-1.240373207603591, 48.61867623271239],\n            [-1.240397502979083, 48.61868826932953],\n            [-1.242235744798046, 48.61955717591562],\n            [-1.242344830053475, 48.61976534691785],\n            [-1.242356438318524, 48.61978587127208],\n            [-1.24237436726647, 48.61981278827905],\n            [-1.242394913137535, 48.61983887020983],\n            [-1.242413124161403, 48.61985900602256],\n            [-1.242947780642991, 48.62041662079452],\n            [-1.242952644543813, 48.62042162012727],\n            [-1.242978150038849, 48.62044570077934],\n            [-1.242998737361916, 48.6204629503095],\n            [-1.244349863181102, 48.62153977541059],\n            [-1.244357102598288, 48.62154544892013],\n            [-1.244387132037523, 48.62156711600166],\n            [-1.244419234681886, 48.62158743458516],\n            [-1.2444532730627, 48.62160631766198],\n            [-1.244487501185536, 48.62162295853106],\n            [-1.244704011133526, 48.62172146476579],\n            [-1.244288076194635, 48.62167607738429],\n            [-1.244272862571814, 48.62167453454925],\n            [-1.244228736716684, 48.62167137111576],\n            [-1.244184393265493, 48.62167012776282],\n            [-1.244140022098632, 48.62167080981449],\n            [-1.244095813215178, 48.62167341435023],\n            [-1.244071552058415, 48.62167567144566],\n            [-1.243167188297456, 48.6217708751672],\n            [-1.242725460553553, 48.62175748609583],\n            [-1.242700967531643, 48.62175703737585],\n            [-1.242628970363595, 48.62175911926315],\n            [-1.241340315695321, 48.62068863280592],\n            [-1.24132439312336, 48.62067589348691],\n            [-1.241294365534365, 48.6206542256012],\n            [-1.241262264746776, 48.62063390614036],\n            [-1.241228228220699, 48.62061502211389],\n            [-1.241192401705005, 48.6205976543844],\n            [-1.241154938612676, 48.62058187732158],\n            [-1.241115999364351, 48.62056775848368],\n            [-1.241075750701188, 48.62055535832826],\n            [-1.241034364970566, 48.62054472995356],\n            [-1.240992019389204, 48.62053591887057],\n            [-1.240948895282859, 48.62052896280901],\n            [-1.240905177311276, 48.62052389155474],\n            [-1.24086105267665, 48.62052072682339],\n            [-1.240816710322441, 48.62051948216618],\n            [-1.240772340124385, 48.62052016291301],\n            [-1.240728132077382, 48.62052276614863],\n            [-1.240684275482147, 48.62052728072618],\n            [-1.240640958134498, 48.62053368731381],\n            [-1.240598365521342, 48.62054195847843],\n            [-1.240556680026366, 48.6205520588024],\n            [-1.240516080149605, 48.62056394503584],\n            [-1.240476739742413, 48.6205775662811],\n            [-1.240438827263657, 48.62059286421146],\n            [-1.240402505057914, 48.62060977332025],\n            [-1.240367928660708, 48.62062822120156],\n            [-1.240335246132565, 48.62064812886064],\n            [-1.240304597424453, 48.62066941105128],\n            [-1.240276113779251, 48.62069197664164],\n            [-1.24024991716911, 48.62071572900408],\n            [-1.240226119773615, 48.62074056642884],\n            [-1.240204823498792, 48.62076638255986],\n            [-1.240186119541389, 48.62079306684981],\n            [-1.240170087998016, 48.62082050503393],\n            [-1.240156797521756, 48.62084857961862],\n            [-1.240146305028902, 48.62087717038538],\n            [-1.240138655454168, 48.62090615490477],\n            [-1.240133881559269, 48.62093540906123],\n            [-1.240132003791388, 48.62096480758436],\n            [-1.240133030196828, 48.62099422458532],\n            [-1.240136956385243, 48.62102353409589],\n            [-1.240140360775432, 48.62103962374751],\n            [-1.240323618036618, 48.62180493773029],\n            [-1.240327022909302, 48.62181792458473],\n            [-1.240336686147112, 48.62184664357082],\n            [-1.240349161874583, 48.62187488206349],\n            [-1.240364396672906, 48.62190251914029],\n            [-1.240382325308362, 48.62192943645382],\n            [-1.240402871011261, 48.62195551873883],\n            [-1.24042466345591, 48.62197935022338],\n            [-1.241120317461171, 48.62268946615612],\n            [-1.241533931676828, 48.6232645769451],\n            [-1.241522663123937, 48.62326982268863],\n            [-1.241505090369166, 48.6232788892102],\n            [-1.240699153808558, 48.62370896564939],\n            [-1.240682148453773, 48.62371834722462],\n            [-1.240649464043095, 48.62373825496967],\n            [-1.240618813586163, 48.62375953724054],\n            [-1.240590328332947, 48.62378210290483],\n            [-1.240564130262634, 48.62380585533478],\n            [-1.240540331560944, 48.62383069282024],\n            [-1.240519034139718, 48.62385650900492],\n            [-1.24050032920062, 48.62388319334138],\n            [-1.240484296844078, 48.62391063156439],\n            [-1.240471005727151, 48.62393870618042],\n            [-1.240460512768549, 48.62396729697063],\n            [-1.240453006925641, 48.62399561004112],\n            [-1.240236681400708, 48.62499873227094],\n            [-1.239284889116421, 48.62528350428617],\n            [-1.239269770308675, 48.62528817686054],\n            [-1.239230425871227, 48.62530179767374],\n            [-1.239192509454601, 48.62531709518711],\n            [-1.23915618342044, 48.62533400389567],\n            [-1.239121603320776, 48.62535245139556],\n            [-1.239088917231641, 48.62537235869325],\n            [-1.23906874630805, 48.62538604627991],\n            [-1.238895194472867, 48.62532171672815],\n            [-1.238870002964767, 48.62531283488944],\n            [-1.238829751060058, 48.62530043394808],\n            [-1.238788361901777, 48.62528980476459],\n            [-1.238746012721095, 48.62528099285363],\n            [-1.238702884859173, 48.62527403594806],\n            [-1.238659162991986, 48.62526896383785],\n            [-1.238615034338275, 48.62526579824177],\n            [-1.238570687858787, 48.62526455271518],\n            [-1.238526313446862, 48.62526523259142],\n            [-1.238482101115526, 48.62526783495926],\n            [-1.238438240183759, 48.62527234867518],\n            [-1.238394918465986, 48.6252787544114],\n            [-1.238352321467857, 48.62528702473811],\n            [-1.238310631591786, 48.62529712424162],\n            [-1.238270027356672, 48.62530900967518],\n            [-1.238230682632313, 48.62532263014493],\n            [-1.238192765896142, 48.62533792732725],\n            [-1.238156439511082, 48.62535483571874],\n            [-1.238121859030603, 48.62537328291671],\n            [-1.238089172532375, 48.62539318992902],\n            [-1.238058519984835, 48.6254144715124],\n            [-1.238030032646926, 48.62543703653757],\n            [-1.238003832506729, 48.62546078837938],\n            [-1.23799166462127, 48.62547303703659],\n            [-1.237940448204942, 48.6255264705038],\n            [-1.237923885213204, 48.62552623068491],\n            [-1.23787951056181, 48.62552691031047],\n            [-1.237835297967145, 48.62552951242855],\n            [-1.237791436749327, 48.62553402589675],\n            [-1.237748936240815, 48.62554029143076],\n            [-1.237570288239942, 48.62557064762352],\n            [-1.237486776434171, 48.62544929879062],\n            [-1.237480875004506, 48.62544095123098],\n            [-1.237460329393174, 48.62541486842726],\n            [-1.237437254506493, 48.62538973226806],\n            [-1.23741174915714, 48.62536565038901],\n            [-1.23738392256459, 48.6253427259107],\n            [-1.237353893887805, 48.62532105699771],\n            [-1.237321791714485, 48.62530073643792],\n            [-1.23728775351079, 48.62528185124547],\n            [-1.237251925032785, 48.62526448228796],\n            [-1.237214459701828, 48.62524870394033],\n            [-1.237175517948166, 48.6252345837663],\n            [-1.237135266523552, 48.62522218222933],\n            [-1.237093877787654, 48.62521155243334],\n            [-1.237051528969402, 48.62520273989568],\n            [-1.237008401408779, 48.6251957823519],\n            [-1.236964679780381, 48.62519070959461],\n            [-1.23692055130187, 48.62518754334566],\n            [-1.236876204933273, 48.62518629716283],\n            [-1.236831830567491, 48.6251869763825],\n            [-1.23678761821731, 48.62518957809615],\n            [-1.23674375720179, 48.62519409116311],\n            [-1.236700435335716, 48.62520049625828],\n            [-1.236657838125357, 48.62520876595473],\n            [-1.236616147974066, 48.62521886484142],\n            [-1.236575543401921, 48.62523074967426],\n            [-1.23653619828016, 48.62524436956182],\n            [-1.236498281087894, 48.62525966618319],\n            [-1.236461954190025, 48.62527657403724],\n            [-1.236427373142239, 48.62529502072358],\n            [-1.236394686024567, 48.62531492725233],\n            [-1.236364032808162, 48.62533620838222],\n            [-1.236335544754805, 48.62535877298597],\n            [-1.236309343855615, 48.62538252444021],\n            [-1.236285542308502, 48.62540736103903],\n            [-1.236264242037495, 48.62543317642988],\n            [-1.236245534256291, 48.62545986006875],\n            [-1.236229499077866, 48.6254872976934],\n            [-1.236225036977636, 48.6254960290809],\n            [-1.236132431895813, 48.62568354030397],\n            [-1.23596108980224, 48.62579301334644],\n            [-1.23595681619753, 48.62579576792032],\n            [-1.235926162503087, 48.62581704893252],\n            [-1.235897673981126, 48.62583961342667],\n            [-1.235871472625061, 48.62586336478007],\n            [-1.235847670634422, 48.62588820128708],\n            [-1.235826369935298, 48.62591401659578],\n            [-1.235807661743162, 48.62594070016233],\n            [-1.235791858786399, 48.62596773971297],\n            [-1.235753090162748, 48.6259666499062],\n            [-1.235708715093729, 48.62596732869059],\n            [-1.235599786096087, 48.62597136184225],\n            [-1.235551081336901, 48.62583362548889],\n            [-1.235547535272978, 48.62582406911036],\n            [-1.235535061260795, 48.6257958301013],\n            [-1.235519827935994, 48.62576819238855],\n            [-1.235501900533791, 48.62574127431994],\n            [-1.235481355825356, 48.62571519116158],\n            [-1.235458281789534, 48.62569005460414],\n            [-1.235432777234966, 48.62566597228473],\n            [-1.235404951377868, 48.62564304732607],\n            [-1.235374923373884, 48.62562137789455],\n            [-1.235342821808039, 48.62560105678035],\n            [-1.235308784143852, 48.62558217100001],\n            [-1.235272956135052, 48.62556480142365],\n            [-1.235235491201077, 48.62554902242881],\n            [-1.235196549770317, 48.62553490158211],\n            [-1.235156298593185, 48.62552249934979],\n            [-1.23511491002819, 48.62551186883875],\n            [-1.235072561303783, 48.62550305556941],\n            [-1.235029433759527, 48.62549609728055],\n            [-1.234985712069678, 48.62549102376777],\n            [-1.234941583452358, 48.6254878567562],\n            [-1.234897236868193, 48.6254866098071],\n            [-1.234852862210885, 48.62548728825983],\n            [-1.234808649494577, 48.62548988920942],\n            [-1.234764788039888, 48.62549440151825],\n            [-1.234721465663422, 48.6255008058647],\n            [-1.234678867873726, 48.62550907482491],\n            [-1.234637177076572, 48.62551917299088],\n            [-1.234596571794775, 48.62553105712181],\n            [-1.23455722590271, 48.62554467632917],\n            [-1.234519307882667, 48.62555997229502],\n            [-1.234482980103162, 48.625576879521],\n            [-1.234448398123642, 48.62559532560939],\n            [-1.234415710028172, 48.62561523157285],\n            [-1.234385055792022, 48.62563651217267],\n            [-1.234356566681352, 48.62565907628369],\n            [-1.234330364691894, 48.62568282728472],\n            [-1.234306562026095, 48.62570766347175],\n            [-1.234285260612802, 48.62573347849399],\n            [-1.234273221461566, 48.62575011481096],\n            [-1.234031320888733, 48.62610275871455],\n            [-1.23401283392939, 48.62609250098025],\n            [-1.233977006004583, 48.62607513099903],\n            [-1.233939541096927, 48.62605935158074],\n            [-1.233900599634892, 48.62604523029381],\n            [-1.233860348368971, 48.62603282760632],\n            [-1.233818959658153, 48.62602219662723],\n            [-1.233776610731268, 48.62601338287882],\n            [-1.233733482928758, 48.62600642410214],\n            [-1.23368976092622, 48.62600135009477],\n            [-1.233645631942972, 48.62599818258396],\n            [-1.233601284941222, 48.62599693513293],\n            [-1.233556909816487, 48.62599761308359],\n            [-1.233512696584851, 48.62600021353273],\n            [-1.233468834569211, 48.62600472534509],\n            [-1.233425511588508, 48.62601112920102],\n            [-1.233382913153909, 48.62601939767887],\n            [-1.23334122167396, 48.62602949537276],\n            [-1.233300615674418, 48.62604137904376],\n            [-1.233261269032633, 48.62605499780553],\n            [-1.233223350234232, 48.62607029334172],\n            [-1.23318702165097, 48.62608720015607],\n            [-1.23315243884577, 48.62610564585252],\n            [-1.233119749906195, 48.62612555144546],\n            [-1.233089094811193, 48.62614683169765],\n            [-1.23280872055654, 48.62635467095754],\n            [-1.23278023033256, 48.62637723467547],\n            [-1.232754027225216, 48.62640098531472],\n            [-1.232730223441811, 48.62642582117303],\n            [-1.232708920915968, 48.62645163590094],\n            [-1.232690210871175, 48.6264783189573],\n            [-1.23267417342988, 48.62650575608239],\n            [-1.232660877270566, 48.62653382978739],\n            [-1.232650379333826, 48.6265624198573],\n            [-1.232642724577717, 48.62659140386582],\n            [-1.232637945785995, 48.62662065769965],\n            [-1.232636063427186, 48.62665005608965],\n            [-1.232637085566799, 48.6266794731476],\n            [-1.232641007833051, 48.62670878290506],\n            [-1.232647813435073, 48.62673785985275],\n            [-1.232657473235232, 48.62676657947831],\n            [-1.232669945873315, 48.62679481879915],\n            [-1.23268517794378, 48.62682245688924],\n            [-1.23270310422462, 48.62684937539703],\n            [-1.232723647955956, 48.62687545905202],\n            [-1.232746721169375, 48.62690059615862],\n            [-1.232772225064251, 48.62692467907441],\n            [-1.232800050430682, 48.62694760467102],\n            [-1.23283007811728, 48.62696927477594],\n            [-1.232862179541239, 48.62698959659281],\n            [-1.232896217239159, 48.62700848309872],\n            [-1.232932045455413, 48.62702585341719],\n            [-1.232969510766586, 48.62704163316419],\n            [-1.233008452738373, 48.62705575476685],\n            [-1.233048704612487, 48.62706815775294],\n            [-1.233084748988911, 48.62707741608928],\n            [-1.23311313093962, 48.62741448006601],\n            [-1.233117053540385, 48.62744378980585],\n            [-1.233123859516887, 48.62747286672397],\n            [-1.233133519729797, 48.62750158630807],\n            [-1.23314599281708, 48.62752982557579],\n            [-1.233161225371557, 48.62755746360138],\n            [-1.233179152168724, 48.62758438203335],\n            [-1.233199696446883, 48.62761046560177],\n            [-1.233222770235183, 48.62763560261136],\n            [-1.233248274730379, 48.62765968542003],\n            [-1.233276100720111, 48.62768261089998],\n            [-1.233306129050253, 48.62770428087913],\n            [-1.233338231135264, 48.62772460256157],\n            [-1.233372269508883, 48.62774348892516],\n            [-1.233408098412867, 48.62776085909387],\n            [-1.233445564420523, 48.62777663868442],\n            [-1.233484507094649, 48.6277907601246],\n            [-1.233524759674018, 48.62780316294284],\n            [-1.233566149787555, 48.62781379402712],\n            [-1.233608500192558, 48.62782260785231],\n            [-1.233643923241292, 48.6278283232835],\n            [-1.233663829152991, 48.62786718133636],\n            [-1.233676956223242, 48.62789064135865],\n            [-1.233694883414993, 48.6279175597094],\n            [-1.233715428096589, 48.62794364318477],\n            [-1.233738502295161, 48.62796878008993],\n            [-1.233764007206024, 48.62799286278329],\n            [-1.233791833614881, 48.62801578813738],\n            [-1.233821862365907, 48.6280374579809],\n            [-1.233853964871741, 48.62805777951836],\n            [-1.233888003664285, 48.62807666572827],\n            [-1.233922231693496, 48.62809330929352],\n            [-1.234448295492079, 48.62833269431737],\n            [-1.235896224593696, 48.62944228462108],\n            [-1.235924990109025, 48.62946298173886],\n            [-1.235957094373532, 48.62948330268507],\n            [-1.235991134919734, 48.62950218826821],\n            [-1.236026965979733, 48.6295195576156],\n            [-1.236064434118045, 48.62953533634764],\n            [-1.236103378888094, 48.62954945689582],\n            [-1.236143633519682, 48.62956185879221],\n            [-1.236185025632859, 48.62957248892877],\n            [-1.236227377976751, 48.62958130178462],\n            [-1.236264015409518, 48.62958733812785],\n            [-1.236981509684512, 48.62969158825194],\n            [-1.237476299733324, 48.63007073265717],\n            [-1.237505066622076, 48.63009142965645],\n            [-1.237537171925591, 48.63011175015889],\n            [-1.237571213489899, 48.63013063527164],\n            [-1.237607045542783, 48.63014800412404],\n            [-1.237644514644445, 48.63016378233853],\n            [-1.23768346034421, 48.63017790234872],\n            [-1.237723715867924, 48.63019030368934],\n            [-1.237765108831841, 48.63020093325439],\n            [-1.237767811582045, 48.63020155646432],\n            [-1.239607996161141, 48.6306229725587],\n            [-1.239647647191939, 48.63063116098252],\n            [-1.239684293028944, 48.6306371972815],\n            [-1.240104302938336, 48.63069820666284],\n            [-1.240525401919481, 48.63105776182153],\n            [-1.240546962192688, 48.63107524619073],\n            [-1.240576995678226, 48.63109691425875],\n            [-1.240609102863737, 48.63111723389876],\n            [-1.240643146261098, 48.63113611809716],\n            [-1.240678980090242, 48.63115348598737],\n            [-1.240716450903794, 48.63116926319583],\n            [-1.240755398243727, 48.63118338216054],\n            [-1.240795655328832, 48.63119578242056],\n            [-1.240837049768708, 48.63120641087468],\n            [-1.240879404302429, 48.63121522200926],\n            [-1.240922537557216, 48.63122217809245],\n            [-1.240966264825123, 48.63122724933675],\n            [-1.241010398854634, 48.63123041402556],\n            [-1.241054750652069, 48.63123165860699],\n            [-1.241099130291212, 48.63123097775113],\n            [-1.241143347726506, 48.63122837437386],\n            [-1.241187213607014, 48.63122385962348],\n            [-1.241230540087577, 48.63121745283332],\n            [-1.241273141632828, 48.63120918143899],\n            [-1.241314835812337, 48.63119908086064],\n            [-1.241355444081025, 48.63118719435179],\n            [-1.241394792544952, 48.63117357281337],\n            [-1.241432712704884, 48.63115827457629],\n            [-1.241462593634415, 48.63114454099019],\n            [-1.242214789089278, 48.63077864979384],\n            [-1.241894306808384, 48.63112637658269],\n            [-1.240735273210847, 48.63172281457736],\n            [-1.240708900723653, 48.63173710310732],\n            [-1.240676211115213, 48.63175701085013],\n            [-1.240645555785278, 48.63177829311776],\n            [-1.240617066004683, 48.63180085877762],\n            [-1.24059086377226, 48.63182461120197],\n            [-1.240567061291293, 48.6318494486808],\n            [-1.240545760489911, 48.63187526485775],\n            [-1.240527052584126, 48.63190194918546],\n            [-1.240511017687416, 48.63192938739873],\n            [-1.240497724467411, 48.63195746200397],\n            [-1.240487229851774, 48.63198605278263],\n            [-1.240485797018742, 48.63199072257087],\n            [-1.240450860419649, 48.63210775719282],\n            [-1.240435193880423, 48.6321059402364],\n            [-1.240391059119157, 48.63210277532606],\n            [-1.240346706570343, 48.63210153048779],\n            [-1.240302326153222, 48.63210221105196],\n            [-1.240258107906558, 48.63210481410437],\n            [-1.240214241174691, 48.63210932849863],\n            [-1.240170913796825, 48.63211573490399],\n            [-1.240135149959574, 48.63212254208705],\n            [-1.239815810819043, 48.63218965950347],\n            [-1.239508862274441, 48.63221984272148],\n            [-1.239482461431329, 48.63222279278219],\n            [-1.239439133862597, 48.63222919891071],\n            [-1.239396531152317, 48.6322374696223],\n            [-1.239354835727344, 48.63224756950158],\n            [-1.239314226130239, 48.63225945530035],\n            [-1.239274876254122, 48.63227307612302],\n            [-1.239236954598046, 48.6322883736445],\n            [-1.239200623546219, 48.63230528236001],\n            [-1.239166038671955, 48.63232372986537],\n            [-1.239133348072048, 48.6323436371671],\n            [-1.239102691732161, 48.63236491902094],\n            [-1.239074200927546, 48.63238748429621],\n            [-1.239047997661409, 48.63241123636669],\n            [-1.239024194141394, 48.63243607352398],\n            [-1.23901828953533, 48.63244322937118],\n            [-1.238997338681878, 48.63246222031991],\n            [-1.238978855969897, 48.63248118484626],\n            [-1.23869794640135, 48.63278593824146],\n            [-1.238366405745441, 48.63292691539477],\n            [-1.23812823160693, 48.63296807175529],\n            [-1.238087497457836, 48.63297602083302],\n            [-1.238045801158163, 48.63298612023528],\n            [-1.238005190655902, 48.63299800556932],\n            [-1.23796583984777, 48.63301162594159],\n            [-1.237927917237158, 48.63302692302903],\n            [-1.23789158521219, 48.63304383132848],\n            [-1.237856999350535, 48.63306227843766],\n            [-1.237824307752826, 48.63308218536489],\n            [-1.237793650409342, 48.6331034668673],\n            [-1.237765158599611, 48.63312603181587],\n            [-1.237738954330836, 48.63314978358584],\n            [-1.237715149815337, 48.63317462046987],\n            [-1.237693846989794, 48.63320043611424],\n            [-1.237676922703821, 48.63322436422426],\n            [-1.237472667479687, 48.63353671170965],\n            [-1.237094556394645, 48.63388820747591],\n            [-1.236911313125286, 48.63392533424069],\n            [-1.236246444870435, 48.63400563311056],\n            [-1.236245609593007, 48.63400494507833],\n            [-1.236215576236845, 48.63398327587838],\n            [-1.236183468996839, 48.63396295501047],\n            [-1.236149425360789, 48.63394406948977],\n            [-1.236113591107744, 48.63392670018537],\n            [-1.23607611968416, 48.63391092147371],\n            [-1.236037171546125, 48.63389680092023],\n            [-1.23599691347277, 48.6338843989897],\n            [-1.235955517852179, 48.63387376878802],\n            [-1.235913161943079, 48.6338649558341],\n            [-1.235870027115449, 48.63385799786538],\n            [-1.23582629807512, 48.63385292467623],\n            [-1.235782162071528, 48.63384975799022],\n            [-1.23578077780075, 48.63384971908388],\n            [-1.235777738471822, 48.63384824586673],\n            [-1.235740267211987, 48.63383246704512],\n            [-1.235701319228928, 48.63381834637733],\n            [-1.235661061301137, 48.63380594432874],\n            [-1.235619665816017, 48.6337953140056],\n            [-1.235577310031777, 48.63378650092741],\n            [-1.235534175317876, 48.63377954283219],\n            [-1.235490446379566, 48.63377446951478],\n            [-1.235446310465922, 48.63377130269929],\n            [-1.235401956568807, 48.63377005594631],\n            [-1.235357574613256, 48.63377073459429],\n            [-1.235313354644629, 48.63377333573739],\n            [-1.235269486014621, 48.63377784823724],\n            [-1.235226156570608, 48.63378425277134],\n            [-1.23521032131702, 48.63378709247178],\n            [-1.233894549664947, 48.63403439206028],\n            [-1.23315404570048, 48.63412373507685],\n            [-1.232562001427273, 48.63399751073283],\n            [-1.232051975438031, 48.63387721185757],\n            [-1.232048817602198, 48.63387647283109],\n            [-1.232006462374993, 48.63386765843244],\n            [-1.231963328085333, 48.63386069899241],\n            [-1.231957276732933, 48.633859996738],\n            [-1.231930174601834, 48.63353808526532],\n            [-1.231926252217297, 48.63350877549596],\n            [-1.231919446116474, 48.63347969851757],\n            [-1.231909785448808, 48.63345097884169],\n            [-1.231897311587544, 48.63342273944974],\n            [-1.231882077951731, 48.63339510126608],\n            [-1.231864149778266, 48.63336818264084],\n            [-1.231843603841634, 48.63334209884216],\n            [-1.231820528125556, 48.63331696156357],\n            [-1.231795021446227, 48.63329287844544],\n            [-1.231767193028877, 48.6332699526136],\n            [-1.231737162040081, 48.63324828223844],\n            [-1.231705057077672, 48.63322796011413],\n            [-1.23167101561982, 48.63320907326148],\n            [-1.231635183436119, 48.63319170255517],\n            [-1.231597713964274, 48.63317592237765],\n            [-1.231558767651959, 48.63316180030062],\n            [-1.231518511270531, 48.63314939679547],\n            [-1.231496805847832, 48.63314382188906],\n            [-1.231486032512748, 48.63313014453757],\n            [-1.231462957072489, 48.63310500718664],\n            [-1.231437450671757, 48.63308092398853],\n            [-1.231409622534503, 48.63305799806957],\n            [-1.231379591826203, 48.63303632760028],\n            [-1.231347487143431, 48.63301600537552],\n            [-1.231313445963196, 48.63299711841633],\n            [-1.231277614053876, 48.6329797475979],\n            [-1.231240144851995, 48.63296396730323],\n            [-1.231201198804088, 48.63294984510442],\n            [-1.231160942680354, 48.63293744147342],\n            [-1.23113923738871, 48.63293186649918],\n            [-1.231128464196192, 48.63291818911399],\n            [-1.231105389031793, 48.63289305169069],\n            [-1.231079882909618, 48.63286896841256],\n            [-1.23105205505252, 48.63284604240643],\n            [-1.231022024624675, 48.63282437184312],\n            [-1.230989920221579, 48.63280404951786],\n            [-1.230955879318922, 48.63278516245215],\n            [-1.230920047683983, 48.63276779152165],\n            [-1.230882578752066, 48.63275201110976],\n            [-1.230843632968568, 48.63273788878917],\n            [-1.230803377102547, 48.63272548503234],\n            [-1.230761983532636, 48.6327148529528],\n            [-1.230719629508708, 48.63270603807766],\n            [-1.230676496392809, 48.6326990781525],\n            [-1.230632768883335, 48.63269400298014],\n            [-1.23059694870681, 48.63269143123971],\n            [-1.230441495278321, 48.63199628286641],\n            [-1.230424331893147, 48.63179234072216],\n            [-1.23042041052178, 48.63176303089803],\n            [-1.230413605527212, 48.63173395382696],\n            [-1.230403946054131, 48.63170523402095],\n            [-1.230391473470724, 48.6316769944619],\n            [-1.230376241190507, 48.63164935607496],\n            [-1.23035831444454, 48.63162243721102],\n            [-1.230337770001293, 48.63159635313936],\n            [-1.230314695838013, 48.6315712155547],\n            [-1.23028919076426, 48.63154713209848],\n            [-1.230261363998408, 48.63152420589837],\n            [-1.230231334699961, 48.63150253512596],\n            [-1.230199231459515, 48.63148221257735],\n            [-1.230165191747825, 48.63146332527507],\n            [-1.230129361327095, 48.63144595409574],\n            [-1.230091893627392, 48.63143017342393],\n            [-1.230052949088838, 48.63141605083327],\n            [-1.230012694475196, 48.63140364679747],\n            [-1.229990989972341, 48.63139807160513],\n            [-1.22998021742031, 48.63138439411059],\n            [-1.229957143532849, 48.63135925645355],\n            [-1.229931638737674, 48.63133517291742],\n            [-1.229903812251938, 48.63131224663012],\n            [-1.229873783233946, 48.63129057576366],\n            [-1.229841680273116, 48.63127025311457],\n            [-1.229807640839025, 48.63125136570578],\n            [-1.229771810692655, 48.63123399441437],\n            [-1.229734343262916, 48.63121821362534],\n            [-1.229695398988731, 48.63120409091294],\n            [-1.229655144632802, 48.63119168675132],\n            [-1.229613752567167, 48.63118105425583],\n            [-1.229571400035385, 48.63117223895519],\n            [-1.229528268393008, 48.63116527859694],\n            [-1.229484542332215, 48.63116020298573],\n            [-1.229440409089655, 48.63115703385537],\n            [-1.229439214052206, 48.63115700019953],\n            [-1.22942707785298, 48.63114377824867],\n            [-1.229401573420714, 48.63111969459419],\n            [-1.22937374729563, 48.63109676817768],\n            [-1.229343718634632, 48.63107509717201],\n            [-1.229311616025262, 48.63105477437409],\n            [-1.229277576935854, 48.63103588680745],\n            [-1.229241747125995, 48.63101851535002],\n            [-1.229204280022835, 48.6310027343874],\n            [-1.229165336064177, 48.63098861149454],\n            [-1.229125082011287, 48.63097620714648],\n            [-1.22908369023488, 48.63096557445927],\n            [-1.229041337977359, 48.6309567589625],\n            [-1.228998206592995, 48.63094979840453],\n            [-1.22895448077287, 48.63094472259089],\n            [-1.228910347752672, 48.63094155325624],\n            [-1.228865996511872, 48.63094030397193],\n            [-1.228821616964135, 48.63094098008737],\n            [-1.22877739914451, 48.63094357870749],\n            [-1.228733532395496, 48.63094808870478],\n            [-1.228707874335919, 48.6309516413094],\n            [-1.228512119958851, 48.63098137250266],\n            [-1.22849340447357, 48.63097835210317],\n            [-1.228449678679604, 48.63097327609675],\n            [-1.22840554566614, 48.63097010656764],\n            [-1.22836119441269, 48.63096885708784],\n            [-1.228316814832999, 48.63096953300768],\n            [-1.228272596962194, 48.63097213143287],\n            [-1.228228730143057, 48.63097664123684],\n            [-1.228185402215112, 48.63098304310839],\n            [-1.228142798710648, 48.6309913096345],\n            [-1.228101102059975, 48.63100140541751],\n            [-1.228060490810952, 48.63101328722681],\n            [-1.228034323160805, 48.63102209863924],\n            [-1.227877551695296, 48.6310777482482],\n            [-1.227761997949584, 48.63109529768083],\n            [-1.227744328066027, 48.63109814699282],\n            [-1.227701724391659, 48.63110641335477],\n            [-1.227660027557114, 48.63111650897712],\n            [-1.227619416110948, 48.63112839062993],\n            [-1.227580063954175, 48.63114200743538],\n            [-1.227542139595701, 48.6311573010856],\n            [-1.227505805431244, 48.63117420609236],\n            [-1.227471217047447, 48.63119265006731],\n            [-1.227438522556132, 48.63121255403222],\n            [-1.227407861959671, 48.63123383275696],\n            [-1.227379366551438, 48.63125639512434],\n            [-1.227353158354425, 48.63128014452063],\n            [-1.227329349597399, 48.63130497924878],\n            [-1.227308042235384, 48.63133079296423],\n            [-1.227289327512493, 48.63135747513015],\n            [-1.227273285571378, 48.6313849114905],\n            [-1.227259985109805, 48.63141298455987],\n            [-1.227249483086514, 48.63144157412607],\n            [-1.227241824477467, 48.6314705577648],\n            [-1.227237042082547, 48.63149981136439],\n            [-1.227235156385889, 48.63152920965671],\n            [-1.227236175467228, 48.63155862675394],\n            [-1.227240094967932, 48.63158793668746],\n            [-1.227246898108982, 48.6316170139473],\n            [-1.227256555763239, 48.6316457340197],\n            [-1.227258296056129, 48.63164967487834],\n            [-1.227259324034611, 48.63165406854397],\n            [-1.227268981703076, 48.63168278861529],\n            [-1.227281452535582, 48.63171102851431],\n            [-1.227296683134644, 48.63173866731276],\n            [-1.227314608284169, 48.63176558665568],\n            [-1.227335151229394, 48.63179167126935],\n            [-1.227357082300413, 48.63181564867257],\n            [-1.227548791239317, 48.63201121792784],\n            [-1.227391061830963, 48.6322196986827],\n            [-1.227373286830011, 48.63224514316323],\n            [-1.227357244651586, 48.63227257953389],\n            [-1.227343944002224, 48.6323006526115],\n            [-1.227333441841463, 48.63232924218373],\n            [-1.227325783145545, 48.63235822582646],\n            [-1.227321000715114, 48.63238747942792],\n            [-1.227319115034222, 48.63241687771996],\n            [-1.227320134182628, 48.63244629481484],\n            [-1.227324053801377, 48.63247560474384],\n            [-1.227330857110953, 48.63250468199708],\n            [-1.227340514983495, 48.63253340206082],\n            [-1.227352986067081, 48.6325616419506],\n            [-1.227368216962785, 48.63258928073794],\n            [-1.227386142453557, 48.63261620006834],\n            [-1.227388847088153, 48.63261963424117],\n            [-1.227357126718063, 48.63259955300573],\n            [-1.227323087317225, 48.63258066486013],\n            [-1.227287257082146, 48.63256329279287],\n            [-1.227249789441736, 48.63254751119245],\n            [-1.227210844836095, 48.63253338763635],\n            [-1.227170590029347, 48.63252098260251],\n            [-1.227129197395267, 48.63251034920994],\n            [-1.227086844179812, 48.63250153299123],\n            [-1.227043711741751, 48.63249457169793],\n            [-1.226999984776422, 48.63248949513847],\n            [-1.226955850524489, 48.63248632505108],\n            [-1.226943893341566, 48.63248579811571],\n            [-1.225458866776188, 48.63242907296082],\n            [-1.225426471463156, 48.6324283494351],\n            [-1.225382090556846, 48.63242902421764],\n            [-1.225337871252008, 48.63243162150959],\n            [-1.225294002897559, 48.63243613018901],\n            [-1.225250673339557, 48.63244253094977],\n            [-1.225208068117327, 48.63245079638347],\n            [-1.225166369668473, 48.63246089109706],\n            [-1.225125756548486, 48.63247277186459],\n            [-1.225086402665574, 48.63248638781212],\n            [-1.225048476535997, 48.6325016806353],\n            [-1.225012140563027, 48.63251858484948],\n            [-1.225003927218042, 48.63252274341841],\n            [-1.224042640500076, 48.63301718282746],\n            [-1.224016263091179, 48.63303146725698],\n            [-1.223983566038494, 48.63305137023334],\n            [-1.223952902860477, 48.63307264803065],\n            [-1.223924404861916, 48.63309520953592],\n            [-1.223898194076414, 48.63311895813876],\n            [-1.223874382744148, 48.63314379214577],\n            [-1.223853072831114, 48.63316960521545],\n            [-1.223834355592375, 48.63319628681365],\n            [-1.223818311181115, 48.63322372268696],\n            [-1.223805008305954, 48.63325179535187],\n            [-1.22379450393594, 48.63328038459788],\n            [-1.223786843056849, 48.63330936800221],\n            [-1.223782058478555, 48.63333862145406],\n            [-1.223780170694406, 48.6333680196861],\n            [-1.223781187793152, 48.63339743681064],\n            [-1.223785105424591, 48.63342674685899],\n            [-1.223791906817699, 48.63345582432071],\n            [-1.223801562852851, 48.63348454468108],\n            [-1.223814032185917, 48.63351278495449],\n            [-1.223829261425726, 48.63354042421088],\n            [-1.223847185362041, 48.63356734409341],\n            [-1.223867727245356, 48.63359342932602],\n            [-1.22389079911513, 48.63361856820627],\n            [-1.223911513806433, 48.63363837935184],\n            [-1.225122410665316, 48.63473257587635],\n            [-1.225127199242191, 48.63473684955772],\n            [-1.225155025445353, 48.63475977700062],\n            [-1.225185054501394, 48.63478144909955],\n            [-1.225217157821557, 48.63480177304934],\n            [-1.225251197934305, 48.63482066181826],\n            [-1.225287029074, 48.63483803452],\n            [-1.225324497804279, 48.63485381676028],\n            [-1.225363443676426, 48.63486794095568],\n            [-1.225403699915368, 48.63488034662288],\n            [-1.225445094134441, 48.63489098063746],\n            [-1.225487449073377, 48.63489979746188],\n            [-1.225530583357961, 48.63490675934024],\n            [-1.225574312275688, 48.63491183645984],\n            [-1.225618448568069, 48.63491500707922],\n            [-1.225662803231671, 48.63491625762084],\n            [-1.225707186328009, 48.63491558272958],\n            [-1.225751407796736, 48.63491298529551],\n            [-1.22579527826965, 48.63490847644154],\n            [-1.225838609881889, 48.63490207547574],\n            [-1.225854447849746, 48.63489923672659],\n            [-1.227134543552444, 48.63465874132552],\n            [-1.227161312512812, 48.63465331410852],\n            [-1.227203012378313, 48.63464321866995],\n            [-1.227243626759551, 48.63463133716745],\n            [-1.227282981736408, 48.63461772048059],\n            [-1.227320908781793, 48.63460242691949],\n            [-1.22735724548392, 48.63458552197506],\n            [-1.227391836241678, 48.63456707803847],\n            [-1.227424532931214, 48.63454717409103],\n            [-1.227455195539626, 48.63452589536628],\n            [-1.227483692765305, 48.63450333298465],\n            [-1.227509902579644, 48.63447958356325],\n            [-1.22753371274968, 48.63445474880256],\n            [-1.227555021318809, 48.63442893505022],\n            [-1.227573737043199, 48.63440225284606],\n            [-1.227589779782456, 48.63437481644878],\n            [-1.227594515163484, 48.63436482199867],\n            [-1.227517076522764, 48.634822438216],\n            [-1.227514767018076, 48.6348387702066],\n            [-1.227512881358428, 48.63486816849732],\n            [-1.227513900669883, 48.63489758558593],\n            [-1.22751782059233, 48.63492689550377],\n            [-1.227524624345451, 48.634955972741],\n            [-1.227534282798988, 48.63498469278398],\n            [-1.227546754598881, 48.63501293264822],\n            [-1.227561986343027, 48.63504057140567],\n            [-1.227579912810877, 48.63506749070154],\n            [-1.227600457241753, 48.63509357526213],\n            [-1.227601512861045, 48.63509481034333],\n            [-1.227750551592062, 48.63526854589221],\n            [-1.227750291849594, 48.63526886054782],\n            [-1.227731575896487, 48.63529554277936],\n            [-1.227715532940983, 48.63532297919494],\n            [-1.227702231685186, 48.63535105230866],\n            [-1.227691729091192, 48.6353796419083],\n            [-1.22768407013746, 48.63540862556941],\n            [-1.227679287625394, 48.63543787918019],\n            [-1.227677402039527, 48.63546727747247],\n            [-1.227678421459195, 48.63549669455851],\n            [-1.227732330474167, 48.63613762683285],\n            [-1.227693837444064, 48.63642390638831],\n            [-1.227312861670575, 48.6365259708366],\n            [-1.227311750526698, 48.6365262668062],\n            [-1.227271883859251, 48.63653794795986],\n            [-1.227232527377558, 48.6365515646412],\n            [-1.22719459883607, 48.63656685817112],\n            [-1.227158260648391, 48.63658376306181],\n            [-1.227123668418491, 48.63660220692552],\n            [-1.227090970274598, 48.63662211078441],\n            [-1.227060306234591, 48.63664338940883],\n            [-1.227031807606973, 48.63666595168208],\n            [-1.227005596428166, 48.63668970099072],\n            [-1.226981784939825, 48.63671453563813],\n            [-1.226960475108645, 48.63674034928012],\n            [-1.226941758189351, 48.63676703138005],\n            [-1.226925714333966, 48.63679446768236],\n            [-1.226912412248393, 48.63682254070179],\n            [-1.226901908898583, 48.63685113022634],\n            [-1.226894249265775, 48.63688011383194],\n            [-1.226892784748568, 48.63688907084362],\n            [-1.226793799890937, 48.63673965356671],\n            [-1.226602478560759, 48.63640033415346],\n            [-1.226596268424254, 48.63638973097773],\n            [-1.226578342011719, 48.63636281153022],\n            [-1.226557797592474, 48.63633672678837],\n            [-1.226534723143822, 48.63631158844968],\n            [-1.226509217476484, 48.636287504159],\n            [-1.226481389811371, 48.63626457704731],\n            [-1.226451359311824, 48.63624290529032],\n            [-1.226419254573616, 48.63622258168832],\n            [-1.226385213073917, 48.63620369326825],\n            [-1.226349380582543, 48.63618632091158],\n            [-1.226311910538496, 48.63617053900788],\n            [-1.226290164237476, 48.63616238277638],\n            [-1.226044976001621, 48.63607433206275],\n            [-1.226027775215206, 48.63606836438567],\n            [-1.225987517871887, 48.63605595893881],\n            [-1.225946122579753, 48.63604532512102],\n            [-1.225939392591506, 48.63604378836753],\n            [-1.224736027807147, 48.63577367158315],\n            [-1.224724173468297, 48.63577101061219],\n            [-1.224688547877939, 48.63576373034152],\n            [-1.224645412975209, 48.63575676814638],\n            [-1.224601683416895, 48.63575169067242],\n            [-1.22455754645467, 48.63574851966145],\n            [-1.224513191084873, 48.63574726869188],\n            [-1.224468807238914, 48.63574794312039],\n            [-1.224424584970167, 48.63575054005918],\n            [-1.224380713640219, 48.63575504838784],\n            [-1.224337381107976, 48.63576144880177],\n            [-1.224294772925394, 48.63576971389394],\n            [-1.224253071542827, 48.63577980827295],\n            [-1.224212455528395, 48.63579168871414],\n            [-1.224173098802377, 48.63580530434492],\n            [-1.224135169893543, 48.63582059686253],\n            [-1.224098831216955, 48.63583750078335],\n            [-1.224064238378781, 48.63585594372397],\n            [-1.224031539509489, 48.63587584671051],\n            [-1.224000874630613, 48.63589712451683],\n            [-1.223972375053815, 48.63591968602989],\n            [-1.223946162819591, 48.63594343463955],\n            [-1.223922350174376, 48.63596826865209],\n            [-1.223901039089699, 48.63599408172609],\n            [-1.2238823208256, 48.63602076332734],\n            [-1.22386627553994, 48.63604819920247],\n            [-1.223852971944774, 48.63607627186782],\n            [-1.223842467012271, 48.63610486111319],\n            [-1.223834805730841, 48.63613384451555],\n            [-1.22383002091184, 48.63616309796417],\n            [-1.223828246389811, 48.63618757990593],\n            [-1.223822633344442, 48.63636687659398],\n            [-1.223746480589401, 48.63716476982863],\n            [-1.223745159899123, 48.63718874514668],\n            [-1.223746177054643, 48.63721816226438],\n            [-1.223783905420495, 48.63766712517483],\n            [-1.223821634459688, 48.63811608805991],\n            [-1.223825552482074, 48.63814539809805],\n            [-1.223832354536454, 48.63817447554862],\n            [-1.223842011500302, 48.63820319589696],\n            [-1.223854482025475, 48.63823143615745],\n            [-1.223869712715804, 48.63825907540014],\n            [-1.223887638354777, 48.63828599526828],\n            [-1.223908182185594, 48.63831208048579],\n            [-1.223931256239381, 48.63833721935033],\n            [-1.223956761711715, 48.63836130421192],\n            [-1.22398458938608, 48.63838423193384],\n            [-1.224014620101175, 48.6384059043346],\n            [-1.224046725261185, 48.63842622860774],\n            [-1.224080767386704, 48.63844511772014],\n            [-1.224116600703438, 48.63846249078397],\n            [-1.224154071765791, 48.63847827340349],\n            [-1.224193020114917, 48.63849239799363],\n            [-1.22423327896525, 48.63850480406928],\n            [-1.224274675918915, 48.63851543850437],\n            [-1.224317033703894, 48.63852425575958],\n            [-1.224360170933803, 48.6385312180771],\n            [-1.224403902883584, 48.63853629564236],\n            [-1.224448042281701, 48.63853946671203],\n            [-1.224480294886827, 48.63854037631263],\n            [-1.224552526703036, 48.63861443442687],\n            [-1.224554524189732, 48.63861647033419],\n            [-1.224580030102034, 48.63864055505657],\n            [-1.224607858214848, 48.63866348262673],\n            [-1.224637889364975, 48.63868515486363],\n            [-1.224669994955101, 48.6387054789617],\n            [-1.224704037503561, 48.63872436788861],\n            [-1.224739871234244, 48.63874174075703],\n            [-1.224777342700174, 48.6387575231724],\n            [-1.224816291440447, 48.63877164755035],\n            [-1.224856550667939, 48.6387840534067],\n            [-1.224897947982955, 48.63879468761637],\n            [-1.224940306112379, 48.63880350464095],\n            [-1.224983443667986, 48.63881046672363],\n            [-1.225027175923363, 48.63881554405082],\n            [-1.225071315605733, 48.63881871488027],\n            [-1.225115673697153, 48.6388199656334],\n            [-1.22516006024449, 48.63881929095437],\n            [-1.22520428517253, 48.63881669373217],\n            [-1.225248159098322, 48.63881218508892],\n            [-1.225291494142196, 48.63880578433167],\n            [-1.225334104732192, 48.6387975188704],\n            [-1.225375808399072, 48.63878742409974],\n            [-1.22539657116288, 48.63878161407108],\n            [-1.225483925456898, 48.63875602858339],\n            [-1.225677004524213, 48.63878312436405],\n            [-1.225678682424791, 48.63878335836315],\n            [-1.225722414726751, 48.638788435425],\n            [-1.225766554429164, 48.63879160598646],\n            [-1.225810912513989, 48.63879285647045],\n            [-1.225855299028034, 48.6387921815219],\n            [-1.225899523896381, 48.63878958403137],\n            [-1.225943397736242, 48.63878507512177],\n            [-1.225986732668305, 48.63877867410157],\n            [-1.226029343121091, 48.63877040838154],\n            [-1.226071046626041, 48.63876031335781],\n            [-1.226111664598126, 48.63874843225978],\n            [-1.226151023101663, 48.63873481596541],\n            [-1.226188953594689, 48.63871952278322],\n            [-1.226225293650574, 48.63870261820231],\n            [-1.226259887653916, 48.63868417461243],\n            [-1.226292587466733, 48.63866427099347],\n            [-1.226323253063075, 48.63864299257732],\n            [-1.226351753128263, 48.63862043048324],\n            [-1.226377965621539, 48.6385966813272],\n            [-1.226401778298689, 48.63857184680828],\n            [-1.226423089192219, 48.63854603327329],\n            [-1.226439066418501, 48.63852355825984],\n            [-1.22649795901592, 48.63843440616933],\n            [-1.226519531341486, 48.63842127544898],\n            [-1.226550196693643, 48.6383999969718],\n            [-1.226578696519423, 48.63837743482093],\n            [-1.226604908779085, 48.63835368561253],\n            [-1.226628721229217, 48.63832885104614],\n            [-1.226650031903382, 48.63830303746849],\n            [-1.226668749548796, 48.63827635541888],\n            [-1.22668479401685, 48.6382489191551],\n            [-1.22669809660644, 48.63822084616477],\n            [-1.226708600358109, 48.63819225666141],\n            [-1.226716260297511, 48.63816327307067],\n            [-1.226720728438628, 48.63813668546031],\n            [-1.226726685155748, 48.63808815539984],\n            [-1.226795222842614, 48.63798440049122],\n            [-1.226797963413364, 48.63798019348386],\n            [-1.22681400771649, 48.63795275720158],\n            [-1.22682731015566, 48.63792468419558],\n            [-1.226837813772117, 48.63789609467982],\n            [-1.226840576677402, 48.63788685497583],\n            [-1.226961736604473, 48.63745817011709],\n            [-1.226964166315205, 48.63745522693299],\n            [-1.226982883478665, 48.63742854483058],\n            [-1.226998927505032, 48.6374011085214],\n            [-1.227012229695301, 48.63737303549294],\n            [-1.227022733091394, 48.63734444595924],\n            [-1.227030392720845, 48.63731546234597],\n            [-1.227035175788587, 48.63728620876577],\n            [-1.227035304186619, 48.63728420737728],\n            [-1.227384293148928, 48.63790313071714],\n            [-1.227390503215808, 48.63791373309995],\n            [-1.227408430615473, 48.63794065241768],\n            [-1.227428976130622, 48.63796673700426],\n            [-1.22745205178515, 48.63799187516009],\n            [-1.227463986663375, 48.63800314425587],\n            [-1.227477066491416, 48.63802526807825],\n            [-1.227479444512056, 48.63802923483888],\n            [-1.22749737200047, 48.63805615414247],\n            [-1.227517917608885, 48.63808223871293],\n            [-1.227540993360834, 48.63810737685071],\n            [-1.227566500444599, 48.63813146090881],\n            [-1.22759432963675, 48.63815438775411],\n            [-1.22762436176949, 48.63817605920878],\n            [-1.227656468240972, 48.63819638247045],\n            [-1.227690511566171, 48.63821527051031],\n            [-1.227726345965599, 48.63823264244512],\n            [-1.227763817989023, 48.63824842388404],\n            [-1.227785567754891, 48.63825658066932],\n            [-1.22794160963283, 48.63831261168004],\n            [-1.227953094472409, 48.63833344978819],\n            [-1.227971022322634, 48.63836036901712],\n            [-1.227991568300832, 48.63838645350213],\n            [-1.228014644428961, 48.63841159154394],\n            [-1.228040151893701, 48.63843567549613],\n            [-1.228067981469965, 48.63845860222592],\n            [-1.228098013988297, 48.63848027355598],\n            [-1.22813012084523, 48.63850059668448],\n            [-1.228164164554082, 48.6385194845832],\n            [-1.228199999333706, 48.63853685636952],\n            [-1.22823747173229, 48.63855263765317],\n            [-1.228276421285273, 48.6385667608547],\n            [-1.228281481440208, 48.63862691027563],\n            [-1.228285402100484, 48.63865622016019],\n            [-1.228292206801367, 48.63868529734489],\n            [-1.228301866409081, 48.63871401731625],\n            [-1.228314339564149, 48.6387422570902],\n            [-1.228329572859075, 48.63876989573893],\n            [-1.228347501066274, 48.63879681490819],\n            [-1.228368047417894, 48.63882289932489],\n            [-1.228391123934272, 48.6388480372902],\n            [-1.228416631800511, 48.63887212115786],\n            [-1.228444461789744, 48.63889504779553],\n            [-1.228474494730758, 48.63891671902626],\n            [-1.228506602018287, 48.63893704204869],\n            [-1.228540646163769, 48.63895592983494],\n            [-1.22857648138424, 48.63897330150301],\n            [-1.228611407632854, 48.63898801020191],\n            [-1.228627149213593, 48.63901164581701],\n            [-1.228647695797946, 48.6390377301832],\n            [-1.228670772552594, 48.63906286809179],\n            [-1.228696280661579, 48.63908695189686],\n            [-1.228724110897055, 48.63910987846622],\n            [-1.22875414408679, 48.63913154962337],\n            [-1.228786251624379, 48.6391518725671],\n            [-1.228820296020221, 48.63917076027002],\n            [-1.228856131490252, 48.63918813185036],\n            [-1.228893604579704, 48.63920391291869],\n            [-1.228932554821056, 48.63921803589652],\n            [-1.22897281542063, 48.63923044030577],\n            [-1.229014213973037, 48.63924107302752],\n            [-1.229056573199443, 48.63924988852965],\n            [-1.229099711707309, 48.63925684906196],\n            [-1.229143444766043, 48.6392619248175],\n            [-1.229187585099372, 48.63926509406061],\n            [-1.229231943686615, 48.63926634321974],\n            [-1.229276330572482, 48.63926566694566],\n            [-1.229288542752349, 48.6392649493199],\n            [-1.229317734538138, 48.63927724270533],\n            [-1.22935668495533, 48.63929136553892],\n            [-1.229396945718033, 48.63930376979901],\n            [-1.229438344420439, 48.63931440236744],\n            [-1.229480703782997, 48.63932321771277],\n            [-1.229523842412426, 48.63933017808521],\n            [-1.229567575577655, 48.63933525367888],\n            [-1.22961171600203, 48.63933842275851],\n            [-1.229656074664454, 48.63933967175343],\n            [-1.229700461609293, 48.63933899531492],\n            [-1.229744686759715, 48.63933639633984],\n            [-1.229788560731751, 48.63933188595762],\n            [-1.229831895645568, 48.63932548348294],\n            [-1.229874505929669, 48.63931721633294],\n            [-1.229916209116253, 48.63930711990956],\n            [-1.229956826621672, 48.63929523744851],\n            [-1.229996184512339, 48.63928161983347],\n            [-1.23003411424875, 48.63926632537853],\n            [-1.230070453407592, 48.63924941957841],\n            [-1.230105046377221, 48.63923097482788],\n            [-1.230137745024331, 48.63921107011188],\n            [-1.230168409327568, 48.63918979066716],\n            [-1.230196907978147, 48.63916722761725],\n            [-1.230223118941347, 48.63914347758207],\n            [-1.230235294550568, 48.63913122712646],\n            [-1.230275551945406, 48.63908924724461],\n            [-1.230357679494347, 48.6390738162431],\n            [-1.230745047935611, 48.63911651277509],\n            [-1.230761262711753, 48.63911816671247],\n            [-1.23080540302086, 48.6391213353322],\n            [-1.230849761521513, 48.63912258386484],\n            [-1.230894148258779, 48.63912190696387],\n            [-1.230924098748687, 48.63912014654605],\n            [-1.230957293597716, 48.63912252939781],\n            [-1.231001652103205, 48.63912377787158],\n            [-1.231046038839452, 48.63912310091176],\n            [-1.231090263730581, 48.63912050141715],\n            [-1.231134137393724, 48.63911599051949],\n            [-1.231177471950327, 48.63910958753563],\n            [-1.231220081830491, 48.63910131988498],\n            [-1.231261784568114, 48.63909122297159],\n            [-1.231302401581407, 48.63907934003327],\n            [-1.231317640444678, 48.63907432398319],\n            [-1.231913777969562, 48.63887188069993],\n            [-1.232009409990504, 48.63886026999089],\n            [-1.232013053365226, 48.63885982082695],\n            [-1.232056387589315, 48.63885341751051],\n            [-1.232098997108129, 48.63884514953269],\n            [-1.232140699456883, 48.63883505229928],\n            [-1.232181316055947, 48.63882316904905],\n            [-1.232220672975211, 48.63880955066924],\n            [-1.232223364598915, 48.63880853832542],\n            [-1.233028372921117, 48.63850415198093],\n            [-1.233434115233685, 48.63861960544297],\n            [-1.233436085533448, 48.63862016364401],\n            [-1.233477484526842, 48.63863079475304],\n            [-1.233519844021394, 48.63863960860504],\n            [-1.233562982623404, 48.63864656745676],\n            [-1.233606715601843, 48.63865164150845],\n            [-1.233650855680855, 48.63865480903181],\n            [-1.23369521384078, 48.63865605646257],\n            [-1.233730234280528, 48.63865552152436],\n            [-1.233867012589347, 48.63868777819569],\n            [-1.233870171251938, 48.63868851728932],\n            [-1.233912530863996, 48.638697330996],\n            [-1.233955669569704, 48.63870428969973],\n            [-1.233999402637911, 48.63870936360155],\n            [-1.234043542792283, 48.63871253097359],\n            [-1.234087901012819, 48.63871377825224],\n            [-1.234132287345828, 48.63871310009647],\n            [-1.234176511717073, 48.6387104994102],\n            [-1.234220384745923, 48.63870598733037],\n            [-1.234263718556603, 48.6386995831788],\n            [-1.234306327582351, 48.63869131437988],\n            [-1.234348029360721, 48.63868121634267],\n            [-1.234388645314122, 48.63866933230967],\n            [-1.2344280015156, 48.63865571317136],\n            [-1.234465929432866, 48.63864041724833],\n            [-1.234502266650421, 48.63862351004157],\n            [-1.234536857564934, 48.63860506395196],\n            [-1.234569554051912, 48.63858515797009],\n            [-1.234600216099233, 48.63856387733812],\n            [-1.234628712407786, 48.63854131318473],\n            [-1.23465492095286, 48.63851756213456],\n            [-1.234678729506928, 48.63849272589507],\n            [-1.234700036120282, 48.63846691082018],\n            [-1.234718749557482, 48.63844022745554],\n            [-1.234734789687926, 48.63841279006466],\n            [-1.234748087829194, 48.63838471613984],\n            [-1.234758587040754, 48.63835612589878],\n            [-1.23476374750441, 48.63833788878429],\n            [-1.234781055874867, 48.63826889148497],\n            [-1.234825333350333, 48.63824925925541],\n            [-1.234855874891729, 48.63823489313523],\n            [-1.234890465409499, 48.63821644693839],\n            [-1.234923161503931, 48.63819654085516],\n            [-1.234953823164862, 48.63817526012793],\n            [-1.234982319094817, 48.63815269588599],\n            [-1.235008527270447, 48.63812894475436],\n            [-1.235032335466062, 48.63810410844068],\n            [-1.235053641733392, 48.63807829329943],\n            [-1.235072354838538, 48.63805160987634],\n            [-1.235088394652275, 48.63802417243531],\n            [-1.235101692493523, 48.63799609846871],\n            [-1.235112191423049, 48.6379675081945],\n            [-1.235119846487232, 48.63793852404157],\n            [-1.235124624910868, 48.63790927012492],\n            [-1.235126506236843, 48.63787987171477],\n            [-1.235125482414197, 48.63785045469971],\n            [-1.235121557832097, 48.6378211450478],\n            [-1.235114749301318, 48.6377920682673],\n            [-1.235105085981734, 48.63776334886888],\n            [-1.23509260925794, 48.63773510983269],\n            [-1.235077372561255, 48.63770747208169],\n            [-1.235059441141686, 48.63768055396387],\n            [-1.235038891787588, 48.63765447074565],\n            [-1.235015812497349, 48.63762933411778],\n            [-1.234990302102452, 48.63760525171783],\n            [-1.234962469843994, 48.63758232666865],\n            [-1.234932434905198, 48.63756065713729],\n            [-1.23490102423879, 48.63754077788052],\n            [-1.234893224016722, 48.63752312309561],\n            [-1.235777252828516, 48.63768453375402],\n            [-1.235789429324028, 48.63769612902739],\n            [-1.235774503930147, 48.63770408861878],\n            [-1.23574180849247, 48.63772399494572],\n            [-1.235711147439813, 48.63774527588441],\n            [-1.235682652067571, 48.63776784030826],\n            [-1.235656444398197, 48.63779159159476],\n            [-1.235632636658517, 48.63781642803858],\n            [-1.23561133079914, 48.637842243288],\n            [-1.235592618057704, 48.63786892679948],\n            [-1.235576578568407, 48.63789636431146],\n            [-1.235572115254369, 48.63790509566674],\n            [-1.235567023585023, 48.63791540271212],\n            [-1.235563809798785, 48.63791587771276],\n            [-1.235521201636367, 48.63792414697983],\n            [-1.235479500720946, 48.63793424544469],\n            [-1.235438885618625, 48.63794612986502],\n            [-1.235399530245844, 48.63795974935124],\n            [-1.23536160312548, 48.63797504558408],\n            [-1.235325266665019, 48.63799195306417],\n            [-1.235290676461098, 48.63801039939256],\n            [-1.235257980632913, 48.63803030558105],\n            [-1.23522731918897, 48.6380515863898],\n            [-1.23519882342626, 48.63807415069284],\n            [-1.235172615368916, 48.63809790186811],\n            [-1.235148807245483, 48.63812273821089],\n            [-1.235127501008149, 48.63814855336982],\n            [-1.235108787896189, 48.63817523680176],\n            [-1.235092748045421, 48.63820267424544],\n            [-1.235079450144601, 48.63823074821055],\n            [-1.235068951141534, 48.63825933848126],\n            [-1.235061295999194, 48.63828832263018],\n            [-1.235056517502755, 48.63831757654347],\n            [-1.235054636119506, 48.63834697495166],\n            [-1.235055659910838, 48.6383763919664],\n            [-1.235088832923035, 48.63877008171804],\n            [-1.234987649387345, 48.63912029141054],\n            [-1.2348654936987, 48.63930886523333],\n            [-1.234864651866416, 48.63931017045802],\n            [-1.234848611520685, 48.63933760786549],\n            [-1.234835313183673, 48.6393656818003],\n            [-1.234824813804607, 48.63939427204791],\n            [-1.234819609602997, 48.63941268338373],\n            [-1.234707751228794, 48.63985966338986],\n            [-1.234694910960805, 48.63988357917633],\n            [-1.234693796987492, 48.63988567033168],\n            [-1.234680498419145, 48.63991374424752],\n            [-1.23466999883826, 48.63994233447851],\n            [-1.234662343209929, 48.63997131859756],\n            [-1.23466201531238, 48.63997287390366],\n            [-1.234576005964896, 48.64038609998833],\n            [-1.234466708700857, 48.64082282886767],\n            [-1.234229459115739, 48.64110912139203],\n            [-1.23392774834699, 48.64112028485159],\n            [-1.23388352184463, 48.64112288544141],\n            [-1.23383964667789, 48.64112739739151],\n            [-1.233796310722106, 48.64113380138161],\n            [-1.23375369954394, 48.64114206998949],\n            [-1.233711995606477, 48.64115216780878],\n            [-1.233671377488887, 48.64116405159989],\n            [-1.233632019120383, 48.64117767047604],\n            [-1.233594089036789, 48.64119296612044],\n            [-1.233557749658223, 48.64120987303626],\n            [-1.23352315659381, 48.64122831882704],\n            [-1.233490457975017, 48.64124822450686],\n            [-1.23345979382228, 48.641269504838],\n            [-1.233431295444203, 48.64129206869662],\n            [-1.233405084876147, 48.64131581946253],\n            [-1.233385023809879, 48.64133674450386],\n            [-1.233291810694193, 48.64135632585925],\n            [-1.233284968022084, 48.64135778978863],\n            [-1.233243263811739, 48.64136788743706],\n            [-1.233202645409257, 48.64137977106183],\n            [-1.233163286745109, 48.64139338977676],\n            [-1.233125356356359, 48.64140868526575],\n            [-1.233089016664484, 48.6414255920326],\n            [-1.233054423279867, 48.64144403768157],\n            [-1.233021724335435, 48.64146394322727],\n            [-1.232991059852941, 48.64148522343267],\n            [-1.23296256114245, 48.64150778717438],\n            [-1.232939843301601, 48.64152837264391],\n            [-1.232905770093087, 48.6415383412192],\n            [-1.232866411224542, 48.64155195983199],\n            [-1.23282848062598, 48.64156725522243],\n            [-1.232792140719796, 48.64158416189493],\n            [-1.232757547117294, 48.64160260745409],\n            [-1.232724847952338, 48.64162251291485],\n            [-1.232694183247642, 48.64164379304055],\n            [-1.232665684314189, 48.64166635670812],\n            [-1.232639473189658, 48.6416901072983],\n            [-1.232615662115786, 48.64171494310876],\n            [-1.232594353057348, 48.64174075779046],\n            [-1.232575637265831, 48.6417674408023],\n            [-1.232559594888185, 48.64179487788483],\n            [-1.232546294624335, 48.64182295154938],\n            [-1.232535793432159, 48.64185154158116],\n            [-1.232528136283784, 48.64188052555398],\n            [-1.232523355973136, 48.64190977935476],\n            [-1.232521472975319, 48.64193917771443],\n            [-1.232522495358577, 48.64196859474496],\n            [-1.232526418750048, 48.64199790447796],\n            [-1.232533226354069, 48.64202698140439],\n            [-1.232542889024413, 48.64205570101184],\n            [-1.232555365388515, 48.64208394031778],\n            [-1.232570602025187, 48.64211157839644],\n            [-1.23257150240266, 48.64211305185468],\n            [-1.232639483296074, 48.64222373880764],\n            [-1.232568092457194, 48.64242020036566],\n            [-1.232563586760158, 48.64243347944651],\n            [-1.232555929539321, 48.64246246342007],\n            [-1.232551149189565, 48.64249171722086],\n            [-1.232549266186191, 48.64252111557989],\n            [-1.232549309183917, 48.64252235271876],\n            [-1.231677373685294, 48.64255459887654],\n            [-1.231661252395271, 48.64254439613962],\n            [-1.231627204649808, 48.6425255092853],\n            [-1.231591365845823, 48.64250813857566],\n            [-1.231553889448998, 48.64249235839326],\n            [-1.231514935936762, 48.64247823630983],\n            [-1.231474672111328, 48.64246583279674],\n            [-1.2314332703853, 48.64245520096648],\n            [-1.231390908043546, 48.64244638634501],\n            [-1.231347766483901, 48.64243942667709],\n            [-1.231333824499354, 48.64243759616586],\n            [-1.22859681853936, 48.64209790886746],\n            [-1.228567024858298, 48.64209466375384],\n            [-1.228540064067538, 48.64209249785306],\n            [-1.227695709011445, 48.64203600078527],\n            [-1.225862438666554, 48.6417610454417],\n            [-1.225851536629021, 48.64175947258002],\n            [-1.225807801731398, 48.64175439556845],\n            [-1.225763659426966, 48.64175122502342],\n            [-1.225729088158458, 48.64175008482845],\n            [-1.22433330294379, 48.64172767199689],\n            [-1.224279425338433, 48.64160667789012],\n            [-1.224273268502172, 48.64159358970842],\n            [-1.224258036580788, 48.64156595052543],\n            [-1.224240109574848, 48.64153903072093],\n            [-1.224219564254243, 48.64151294556842],\n            [-1.224196488599976, 48.64148780676713],\n            [-1.224170981427841, 48.64146372196382],\n            [-1.224143151965187, 48.64144079429174],\n            [-1.224113119383186, 48.64141912192908],\n            [-1.224081012286464, 48.64139879767839],\n            [-1.224046968162125, 48.64137990856972],\n            [-1.224011132791654, 48.64136253548738],\n            [-1.223973659625963, 48.64134675282405],\n            [-1.223934709128676, 48.64133262816197],\n            [-1.223894448089113, 48.64132022198372],\n            [-1.22385304890799, 48.64130958741319],\n            [-1.223811469111065, 48.64130091432517],\n            [-1.222156479578067, 48.64099404131129],\n            [-1.222155699335736, 48.64099389696272],\n            [-1.222112560299373, 48.6409869338161],\n            [-1.222068826450671, 48.64098185537683],\n            [-1.222043396120989, 48.64097979153793],\n            [-1.220371849883664, 48.64086530493125],\n            [-1.2203531389018, 48.64086419651117],\n            [-1.220308779126507, 48.64086294391383],\n            [-1.220264390711243, 48.64086361671297],\n            [-1.220220163728947, 48.64086621202758],\n            [-1.220176287561428, 48.64087071874441],\n            [-1.220132950088237, 48.64087711756557],\n            [-1.220090336882573, 48.64088538109091],\n            [-1.220048630416213, 48.64089547393587],\n            [-1.220008009279119, 48.64090735288225],\n            [-1.219968647413472, 48.64092096706385],\n            [-1.219930713370045, 48.64093625818408],\n            [-1.219894369585883, 48.64095316076542],\n            [-1.219859771689036, 48.64097160243015],\n            [-1.219827067831654, 48.64099150420972],\n            [-1.219796398056554, 48.64101278088339],\n            [-1.219767893696462, 48.64103534134281],\n            [-1.219741676812298, 48.64105908898246],\n            [-1.21971785967042, 48.64108392211261],\n            [-1.219705550591363, 48.64109833442783],\n            [-1.219534554899637, 48.64130743833926],\n            [-1.219182548682463, 48.6414422238142],\n            [-1.219174493145425, 48.64144531110902],\n            [-1.219142569813168, 48.64145832719539],\n            [-1.219106225387099, 48.64147522952608],\n            [-1.21907162684221, 48.64149367095211],\n            [-1.219038922333768, 48.64151357250596],\n            [-1.21900825190701, 48.64153484896788],\n            [-1.218979746897697, 48.64155740923049],\n            [-1.218953529369569, 48.64158115668884],\n            [-1.218929711591499, 48.64160598965437],\n            [-1.218908395557121, 48.64163180178997],\n            [-1.218889672547698, 48.64165848256555],\n            [-1.218873622741334, 48.64168591773112],\n            [-1.21886031486957, 48.64171398980643],\n            [-1.218849805922757, 48.64174257858342],\n            [-1.218842140906555, 48.64177156164117],\n            [-1.218837352648345, 48.64180081487053],\n            [-1.218837083941189, 48.64180326348172],\n            [-1.218825468143625, 48.64191326313439],\n            [-1.218674591238336, 48.64280767988122],\n            [-1.218672314975178, 48.64282379591029],\n            [-1.218670423848862, 48.64285319404242],\n            [-1.218671438151544, 48.64288261119429],\n            [-1.218675353544634, 48.64291192139943],\n            [-1.218682153266719, 48.64294099914676],\n            [-1.218691808205328, 48.64296971992036],\n            [-1.218704277021008, 48.64299796073269],\n            [-1.218719506324846, 48.64302560065156],\n            [-1.218737430906325, 48.6430525213173],\n            [-1.218757974013101, 48.64307860745028],\n            [-1.218781047679498, 48.6431037473444],\n            [-1.218806553102692, 48.6431278333452],\n            [-1.218834381066385, 48.64315076231124],\n            [-1.218864412407918, 48.6431724360554],\n            [-1.2188965185292, 48.64319276176568],\n            [-1.218930561946285, 48.64321165240281],\n            [-1.218966396879346, 48.64322902707227],\n            [-1.219003869876252, 48.64324481137162],\n            [-1.219042820469523, 48.64325893770852],\n            [-1.219076730499886, 48.64326952787894],\n            [-1.219237866560261, 48.6433162909705],\n            [-1.219236098312073, 48.64334459501417],\n            [-1.219237112955423, 48.64337401216013],\n            [-1.219241028716318, 48.64340332234501],\n            [-1.219247828831789, 48.64343240005776],\n            [-1.219257484187664, 48.64346112078276],\n            [-1.219269953442672, 48.64348936153262],\n            [-1.219285183206063, 48.64351700137536],\n            [-1.219303108265299, 48.64354392195173],\n            [-1.2193236518661, 48.64357000798242],\n            [-1.219346726040531, 48.6435951477618],\n            [-1.219372231983689, 48.6436192336359],\n            [-1.219400060477018, 48.64364216246373],\n            [-1.219430092355622, 48.64366383605889],\n            [-1.21946219901901, 48.64368416160997],\n            [-1.21949624298106, 48.6437030520784],\n            [-1.219532078459544, 48.64372042657033],\n            [-1.219569551999915, 48.64373621068414],\n            [-1.219608503132514, 48.64375033682823],\n            [-1.219642420355624, 48.64376092878751],\n            [-1.219658843256384, 48.64376569458698],\n            [-1.219503773319453, 48.643802976356],\n            [-1.219481718636852, 48.64380856835732],\n            [-1.219441095013567, 48.64382044710038],\n            [-1.219401730715366, 48.64383406108459],\n            [-1.219363794303014, 48.64384935201413],\n            [-1.219327448223908, 48.64386625441241],\n            [-1.21929284811571, 48.64388469590233],\n            [-1.219260142140421, 48.64390459751618],\n            [-1.219229470349494, 48.643925874034],\n            [-1.219200964084586, 48.64394843434809],\n            [-1.219174745414851, 48.64397218185334],\n            [-1.219150926613959, 48.64399701486099],\n            [-1.219147542677288, 48.64400085509676],\n            [-1.218860669215962, 48.64433013732353],\n            [-1.218842735976069, 48.64435210921512],\n            [-1.218824011919404, 48.6443787899752],\n            [-1.218807961209363, 48.64440622512671],\n            [-1.218794652581243, 48.64443429718934],\n            [-1.218784143028955, 48.6444628859551],\n            [-1.218776477560335, 48.64449186900326],\n            [-1.218771689005103, 48.64452112222467],\n            [-1.218769797873311, 48.64455052035276],\n            [-1.218770812268299, 48.64457993750043],\n            [-1.218774727851417, 48.64460924769895],\n            [-1.218781527860353, 48.64463832543704],\n            [-1.218791183181456, 48.64466704619905],\n            [-1.218803652473615, 48.64469528699739],\n            [-1.218818882345878, 48.64472292689992],\n            [-1.218836807585271, 48.64474984754707],\n            [-1.218857351436731, 48.64477593365934],\n            [-1.218880425931246, 48.64480107353064],\n            [-1.218905932262593, 48.64482515950662],\n            [-1.218933761210479, 48.64484808844584],\n            [-1.218963793608168, 48.64486976216155],\n            [-1.218995900852711, 48.64489008784172],\n            [-1.219029945455727, 48.64490897844712],\n            [-1.219034657059614, 48.64491140151459],\n            [-1.219746211486155, 48.64527402358199],\n            [-1.219633918738574, 48.6457336972706],\n            [-1.219631910585131, 48.64574246485769],\n            [-1.219627122408216, 48.64577171811239],\n            [-1.219625231729402, 48.64580111625219],\n            [-1.21962624664985, 48.64583053338988],\n            [-1.219630162828671, 48.64585984355665],\n            [-1.219636963501156, 48.64588892124159],\n            [-1.219646619550676, 48.6459176419291],\n            [-1.219659089633003, 48.64594588263197],\n            [-1.219674320353927, 48.6459735224185],\n            [-1.219692246496718, 48.64600044292952],\n            [-1.219712791302474, 48.6460265288862],\n            [-1.219735866798148, 48.64605166858308],\n            [-1.219761374173141, 48.64607575436661],\n            [-1.219789204202761, 48.64609868309616],\n            [-1.219819237715618, 48.64612035658579],\n            [-1.219851346103986, 48.6461406820245],\n            [-1.219885391874589, 48.64615957237414],\n            [-1.219920642336738, 48.64617668099614],\n            [-1.219867410108972, 48.64621657818709],\n            [-1.219841533139485, 48.6462371788115],\n            [-1.219815313579242, 48.64626092645975],\n            [-1.219791494010885, 48.64628575959681],\n            [-1.219770176435739, 48.64631157188476],\n            [-1.219751452141584, 48.64633825279292],\n            [-1.219735401312199, 48.64636568807077],\n            [-1.2197220926833, 48.64639376023744],\n            [-1.219711583248617, 48.64642234908461],\n            [-1.219703918015889, 48.64645133219108],\n            [-1.219699129813354, 48.64648058544739],\n            [-1.219697239149988, 48.64650998358695],\n            [-1.219698254126851, 48.64653940072263],\n            [-1.219702170402834, 48.64656871088557],\n            [-1.21970897121273, 48.64659778856483],\n            [-1.219718627439448, 48.64662650924491],\n            [-1.219731097737942, 48.64665474993861],\n            [-1.219746328713023, 48.64668238971424],\n            [-1.21976425514696, 48.64670931021279],\n            [-1.219784800279575, 48.64673539615528],\n            [-1.219807876136381, 48.64676053583649],\n            [-1.219833383905298, 48.64678462160283],\n            [-1.219861214359899, 48.6468075503138],\n            [-1.219891248326892, 48.64682922378351],\n            [-1.219923357196935, 48.64684954920109],\n            [-1.219957403474332, 48.64686843952843],\n            [-1.219993241366986, 48.64688581387248],\n            [-1.220030717410074, 48.6469015978321],\n            [-1.22006967112313, 48.64691572381644],\n            [-1.220109935697704, 48.64692813133437],\n            [-1.220151338711282, 48.64693876725376],\n            [-1.220193702866226, 48.64694758602883],\n            [-1.220236846748573, 48.64695454989531],\n            [-1.220280585604849, 48.64695962903198],\n            [-1.220324732133942, 48.64696280168876],\n            [-1.220338187159535, 48.64696318157511],\n            [-1.220338499776288, 48.64697223874066],\n            [-1.220342416459006, 48.64700154888085],\n            [-1.220349217697538, 48.64703062652127],\n            [-1.220358874372838, 48.64705934714651],\n            [-1.220371345138058, 48.64708758776975],\n            [-1.220386576595993, 48.64711522745944],\n            [-1.220391296386731, 48.64712231504741],\n            [-1.220391808062293, 48.64713713886222],\n            [-1.220395724788916, 48.64716644900022],\n            [-1.220402526080526, 48.64719552663719],\n            [-1.220412182817976, 48.6472242472576],\n            [-1.220424653654, 48.64725248787472],\n            [-1.220439885191131, 48.64728012755703],\n            [-1.220457812209241, 48.6473070479459],\n            [-1.220478357945614, 48.64733313376305],\n            [-1.220501434423262, 48.6473582733035],\n            [-1.220526942827311, 48.64738235891448],\n            [-1.220554773928735, 48.64740528745599],\n            [-1.220584808551544, 48.64742696074303],\n            [-1.220616918083237, 48.64744728596542],\n            [-1.220650965025603, 48.64746617608589],\n            [-1.220686803583784, 48.6474835502123],\n            [-1.220724280289682, 48.64749933394442],\n            [-1.220763234660391, 48.64751345969231],\n            [-1.220803499884446, 48.64752586696609],\n            [-1.220844903536753, 48.64753650263435],\n            [-1.220887268316577, 48.6475453211526],\n            [-1.220930412807597, 48.64755228475764],\n            [-1.220963727391708, 48.64755633009638],\n            [-1.221132773181175, 48.64757397989769],\n            [-1.221765400803443, 48.64789634327208],\n            [-1.222037959763784, 48.64812043560353],\n            [-1.222024001067545, 48.6481245172856],\n            [-1.221984634100179, 48.64813813215348],\n            [-1.221946695227076, 48.64815342393388],\n            [-1.221910346906023, 48.64817032714679],\n            [-1.221875744784375, 48.6481887694115],\n            [-1.221843037032508, 48.64820867175711],\n            [-1.221812363709827, 48.64822994896035],\n            [-1.221783856164243, 48.64825250991058],\n            [-1.221757636470406, 48.6482762580002],\n            [-1.221733816906645, 48.64830109153762],\n            [-1.221712499474086, 48.64832690418352],\n            [-1.221693775460127, 48.64835358540552],\n            [-1.221677725046908, 48.64838102095183],\n            [-1.221664416968769, 48.64840909334036],\n            [-1.22165390821704, 48.64843768236175],\n            [-1.221646243796182, 48.64846666559421],\n            [-1.221641456531357, 48.64849591892777],\n            [-1.221639566927384, 48.64852531709538],\n            [-1.221640583080785, 48.6485547342098],\n            [-1.221644500645398, 48.6485840443024],\n            [-1.221651302850537, 48.6486131218624],\n            [-1.221660960573099, 48.64864184237484],\n            [-1.221673432461761, 48.64867008285329],\n            [-1.221676002610075, 48.64867516450182],\n            [-1.221814966443455, 48.64894457989058],\n            [-1.221827629077696, 48.64896713773993],\n            [-1.221845557439711, 48.64899405790859],\n            [-1.221866104584797, 48.64902014347389],\n            [-1.221889182529852, 48.64904528273193],\n            [-1.221914692453905, 48.64906936803116],\n            [-1.221942525121256, 48.64909229623298],\n            [-1.221972561349241, 48.64911396915376],\n            [-1.222004672518524, 48.64913429398486],\n            [-1.222038721123899, 48.64915318369075],\n            [-1.222074561363316, 48.64917055738106],\n            [-1.22211203976152, 48.64918634065743],\n            [-1.222150995828353, 48.64920046593186],\n            [-1.222191262745094, 48.64921287271642],\n            [-1.222232668079355, 48.64922350788202],\n            [-1.222275034523248, 48.64923232588601],\n            [-1.222318180653337, 48.64923928896764],\n            [-1.222361921706356, 48.64924436730895],\n            [-1.22240607037184, 48.64924753916317],\n            [-1.222450437593436, 48.64924879094757],\n            [-1.222494833378784, 48.64924811730175],\n            [-1.22253906761326, 48.64924552111038],\n            [-1.222582950873965, 48.64924101349105],\n            [-1.2226262952413, 48.64923461374656],\n            [-1.22266891510332, 48.6492263492824],\n            [-1.222710627951156, 48.64921625548904],\n            [-1.222751255159753, 48.6492043755909],\n            [-1.222790622754078, 48.64919076046062],\n            [-1.22282856215302, 48.64917546840174],\n            [-1.222864910891819, 48.6491585648987],\n            [-1.222899513317883, 48.64914012233642],\n            [-1.222919024530789, 48.64912824984716],\n            [-1.222917388775957, 48.64915370842535],\n            [-1.22291840568943, 48.64918312552723],\n            [-1.222922324047548, 48.64921243557485],\n            [-1.222929127076289, 48.64924151305776],\n            [-1.22293878564909, 48.64927023346125],\n            [-1.222951258410834, 48.6492984737994],\n            [-1.222966491955779, 48.64932611314197],\n            [-1.222984421055204, 48.64935303313176],\n            [-1.22300496893752, 48.64937911849216],\n            [-1.223028047616448, 48.64940425752026],\n            [-1.223053558267819, 48.6494283425653],\n            [-1.223081391652896, 48.64945127048986],\n            [-1.223111428585917, 48.64947294311156],\n            [-1.223143540444549, 48.64949326762298],\n            [-1.223177589720568, 48.64951215698994],\n            [-1.223213430609085, 48.64952953032356],\n            [-1.223231917752481, 48.64953760076002],\n            [-1.22358313328224, 48.64968553399746],\n            [-1.223752620956196, 48.64987987801357],\n            [-1.223772269761858, 48.64990103664514],\n            [-1.223797781021523, 48.64992512152367],\n            [-1.223825615020708, 48.64994804926673],\n            [-1.223855652570935, 48.64996972169251],\n            [-1.223887765047473, 48.64999004599467],\n            [-1.22392181493924, 48.65000893513988],\n            [-1.223954991751017, 48.65002501661278],\n            [-1.223973538629171, 48.65004262445094],\n            [-1.223973018669795, 48.65013084815308],\n            [-1.223974063695461, 48.65015761041425],\n            [-1.223977724594845, 48.6501854958059],\n            [-1.224315140322683, 48.65207291553137],\n            [-1.224351709551848, 48.65250789735412],\n            [-1.224389454791262, 48.65295685960849],\n            [-1.224393374300579, 48.65298616959825],\n            [-1.22440017869017, 48.65301524698634],\n            [-1.22440983882756, 48.65304396725843],\n            [-1.224422313351035, 48.65307220742912],\n            [-1.224437548847239, 48.65309984656896],\n            [-1.224455480079139, 48.65312676632159],\n            [-1.224476030266011, 48.65315285141144],\n            [-1.224499111411685, 48.6531779901367],\n            [-1.224524624681462, 48.653202074848],\n            [-1.224552460825352, 48.65322500240926],\n            [-1.224582500645823, 48.65324667463967],\n            [-1.224614615508093, 48.6532669987335],\n            [-1.224648667891186, 48.65328588765842],\n            [-1.224684511976846, 48.65330326052736],\n            [-1.224692391025599, 48.65330657810717],\n            [-1.224666967038044, 48.65359876157939],\n            [-1.224365800196838, 48.65394600975484],\n            [-1.224348528823887, 48.65396721991007],\n            [-1.224329804108568, 48.65399390155261],\n            [-1.224313753333339, 48.6540213374576],\n            [-1.224300445234097, 48.65404941014145],\n            [-1.224289936802232, 48.65407799939362],\n            [-1.224282273040867, 48.65410698279122],\n            [-1.224277486772365, 48.65413623622362],\n            [-1.224275598497209, 48.65416563442334],\n            [-1.224276616306266, 48.65419505150307],\n            [-1.224280535846298, 48.65422436149418],\n            [-1.224287340338188, 48.65425343888647],\n            [-1.22429700064894, 48.65428215916559],\n            [-1.224309475416139, 48.65431039934619],\n            [-1.224324711225413, 48.65433803849867],\n            [-1.224342642838328, 48.65436495826665],\n            [-1.224344103655275, 48.65436695771593],\n            [-1.225079885293092, 48.65536770350997],\n            [-1.225098975842693, 48.65539178904421],\n            [-1.225122058327057, 48.6554169276401],\n            [-1.225147573030847, 48.65544101220895],\n            [-1.225175410697859, 48.65546393961529],\n            [-1.225205452123965, 48.65548561167899],\n            [-1.22523756866759, 48.65550593559513],\n            [-1.225271622800443, 48.65552482433197],\n            [-1.225307468696915, 48.65554219700334],\n            [-1.22534495285745, 48.65555797921524],\n            [-1.225383914767229, 48.65557210338419],\n            [-1.225424187582551, 48.65558450902698],\n            [-1.22546559884575, 48.65559514301963],\n            [-1.225507971223616, 48.65560395982432],\n            [-1.225551123266975, 48.65561092168532],\n            [-1.225558168593217, 48.65561187196662],\n            [-1.226339807124617, 48.65571444370936],\n            [-1.225689997835899, 48.65603926524107],\n            [-1.225656290357771, 48.65605726019668],\n            [-1.22562357898502, 48.65607716361071],\n            [-1.225592902462918, 48.65609844181459],\n            [-1.225564392153364, 48.65612100369339],\n            [-1.225538170142762, 48.65614475263529],\n            [-1.225514348719208, 48.65616958694531],\n            [-1.225493029891944, 48.65619540028064],\n            [-1.225474304954124, 48.65622208210608],\n            [-1.225458254092244, 48.65624951816706],\n            [-1.225444946042222, 48.65627759097954],\n            [-1.22543443779529, 48.6563061803323],\n            [-1.225426774353968, 48.65633516380192],\n            [-1.225421988539184, 48.6563644172776],\n            [-1.225420100849219, 48.65639381549164],\n            [-1.225421119372905, 48.65642323255661],\n            [-1.225425039753445, 48.65645254250404],\n            [-1.225431845208564, 48.65648161982379],\n            [-1.225441506600731, 48.65651034000199],\n            [-1.225445791288555, 48.65652083732612],\n            [-1.225510974563653, 48.65667319781134],\n            [-1.22511873899243, 48.65687485314606],\n            [-1.225092350076238, 48.65688913744124],\n            [-1.225059637939299, 48.65690904069313],\n            [-1.225028960671213, 48.65693031874481],\n            [-1.225000449637119, 48.65695288048197],\n            [-1.224974226926516, 48.65697662929341],\n            [-1.224950404830481, 48.65700146348479],\n            [-1.224929085361131, 48.65702727671371],\n            [-1.224910359814457, 48.65705395844541],\n            [-1.224894308379456, 48.65708139442582],\n            [-1.224880999794522, 48.65710946717115],\n            [-1.224870491053225, 48.65713805647052],\n            [-1.224862827160145, 48.65716703990077],\n            [-1.224858040938186, 48.65719629335115],\n            [-1.22485615288739, 48.65722569155421],\n            [-1.224857171098046, 48.65725510862244],\n            [-1.224861091214797, 48.65728441858746],\n            [-1.224867896456408, 48.65731349593906],\n            [-1.224877557686364, 48.65734221616314],\n            [-1.224881841743373, 48.65735271214291],\n            [-1.22492488726514, 48.65745332996726],\n            [-1.224424988995561, 48.65761465441502],\n            [-1.223971594246316, 48.65770982930408],\n            [-1.222942660236421, 48.65785651252033],\n            [-1.222916218786971, 48.65786065033549],\n            [-1.222873591648712, 48.65786891488678],\n            [-1.222831871657311, 48.65787900873334],\n            [-1.222812604840848, 48.65788437939118],\n            [-1.22145928303423, 48.65827796676871],\n            [-1.221437915311219, 48.65828447577796],\n            [-1.221398540232601, 48.65829809043488],\n            [-1.221387512561505, 48.65830253431231],\n            [-1.221182738841384, 48.65810879355911],\n            [-1.221169272906697, 48.65809650034478],\n            [-1.22114143560889, 48.65807357196942],\n            [-1.221111394388239, 48.65805189884425],\n            [-1.221079277886281, 48.65803157377519],\n            [-1.221045223630506, 48.65801268379576],\n            [-1.221009377445705, 48.65799530979404],\n            [-1.220971892829175, 48.65797952616656],\n            [-1.220932930293517, 48.6579654004998],\n            [-1.220892656679573, 48.65795299328056],\n            [-1.220851244441954, 48.65794235763706],\n            [-1.22080887091039, 48.65793353911179],\n            [-1.220765717530761, 48.65792657546605],\n            [-1.220755705780112, 48.65792524007038],\n            [-1.219353830506127, 48.65774550430051],\n            [-1.219345511075483, 48.65764644031434],\n            [-1.219341594144763, 48.65761713016147],\n            [-1.21933479205719, 48.65758805248237],\n            [-1.219325133945119, 48.65755933179158],\n            [-1.219312661170826, 48.65753109107477],\n            [-1.219297427148662, 48.65750345126206],\n            [-1.219279497117223, 48.65747653071047],\n            [-1.219258947858948, 48.65745044469652],\n            [-1.219235867371786, 48.65742530492323],\n            [-1.219210354492397, 48.6574012190414],\n            [-1.219182518472488, 48.65737829018907],\n            [-1.21915247851123, 48.65735661654919],\n            [-1.219120363244943, 48.6573362909302],\n            [-1.219086310195823, 48.65731740036769],\n            [-1.219050465183165, 48.65730002575238],\n            [-1.219012981699588, 48.65728424148333],\n            [-1.218974020252739, 48.65727011514979],\n            [-1.218933747678843, 48.65725770724141],\n            [-1.21891203324705, 48.65725212995909],\n            [-1.21890125817034, 48.65723845144605],\n            [-1.218878177959277, 48.65721331160028],\n            [-1.218852665358705, 48.6571892256385],\n            [-1.218824829619192, 48.65716629669891],\n            [-1.218794789938729, 48.65714462296494],\n            [-1.218762674952338, 48.65712429724543],\n            [-1.218728622181096, 48.65710540657636],\n            [-1.218692777443098, 48.65708803184883],\n            [-1.218655294229785, 48.65707224746259],\n            [-1.218616333047644, 48.65705812100723],\n            [-1.218576060731722, 48.65704571297295],\n            [-1.218534649731053, 48.65703507649165],\n            [-1.218492277370193, 48.65702625710918],\n            [-1.218449125089685, 48.65701929259054],\n            [-1.218405377669958, 48.65701421275815],\n            [-1.218361222439226, 48.65701103936396],\n            [-1.218316848472065, 48.65700978599667],\n            [-1.218272445779463, 48.65701045802319],\n            [-1.218253422779048, 48.65701115902748],\n            [-1.218221182885793, 48.65699327376341],\n            [-1.218185338403111, 48.65697589887704],\n            [-1.218147855432643, 48.65696011432465],\n            [-1.218108894479879, 48.65694598769663],\n            [-1.218068622378945, 48.65693357948397],\n            [-1.218027211577897, 48.65692294281914],\n            [-1.21798483940041, 48.65691412324899],\n            [-1.217941687286468, 48.65690715853926],\n            [-1.217897940015542, 48.65690207851298],\n            [-1.217853784915266, 48.65689890492327],\n            [-1.217809411059676, 48.65689765135946],\n            [-1.21776500845932, 48.65689832318932],\n            [-1.217720767247845, 48.65690091753617],\n            [-1.217676876868015, 48.65690542329075],\n            [-1.217633525260231, 48.65691182115939],\n            [-1.217590898058203, 48.65692008374596],\n            [-1.217580383152177, 48.65692243512006],\n            [-1.215218407984584, 48.65746488733636],\n            [-1.215187201926007, 48.65747262724272],\n            [-1.215146566251741, 48.65748450445177],\n            [-1.215127501547246, 48.65749082407903],\n            [-1.212643243798093, 48.6583468490378],\n            [-1.212622931641396, 48.65835414146558],\n            [-1.212584982215674, 48.65836943013507],\n            [-1.212548623365084, 48.6583863303658],\n            [-1.212514010782004, 48.65840476978995],\n            [-1.212481292681895, 48.65842466944863],\n            [-1.212450609168205, 48.65844594413033],\n            [-1.212422091632472, 48.65846850273507],\n            [-1.212403910979609, 48.65848460917002],\n            [-1.212110246692162, 48.65875727575717],\n            [-1.212102197816596, 48.65876491523166],\n            [-1.212078368517842, 48.65878974674347],\n            [-1.212057041684063, 48.65881555757386],\n            [-1.212038308642824, 48.65884223719833],\n            [-1.212022249615277, 48.65886967137186],\n            [-1.212008933372208, 48.65889774261815],\n            [-1.211998416940243, 48.65892633073301],\n            [-1.211990745356635, 48.65895531329833],\n            [-1.211985951477341, 48.65898456620695],\n            [-1.211984055835138, 48.65901396419379],\n            [-1.211985066552728, 48.65904338137233],\n            [-1.212041526423546, 48.65971683053877],\n            [-1.212045439263298, 48.65974614093667],\n            [-1.21205223742817, 48.65977521904387],\n            [-1.212061891812342, 48.65980394034306],\n            [-1.212074361078701, 48.65983218184439],\n            [-1.212089591836436, 48.6598598226127],\n            [-1.212107518868835, 48.65988674428463],\n            [-1.212128065413081, 48.65991283157648],\n            [-1.212151143488691, 48.65993797277692],\n            [-1.212176654274055, 48.65996206022599],\n            [-1.212204488529856, 48.65998499077598],\n            [-1.212234527066614, 48.66000666623316],\n            [-1.212266641255102, 48.66002699377809],\n            [-1.212300693577164, 48.66004588636351],\n            [-1.212336538214882, 48.66006326308688],\n            [-1.212374021674159, 48.66007904953671],\n            [-1.212383425686427, 48.66008245968392],\n            [-1.212380816071084, 48.66008617625157],\n            [-1.212364756833044, 48.66011361047071],\n            [-1.212351440451907, 48.6601416817544],\n            [-1.212340923954514, 48.66017026989811],\n            [-1.212333252378559, 48.66019925248379],\n            [-1.212328458579781, 48.66022850540416],\n            [-1.212326563091015, 48.66025790339409],\n            [-1.212327574033965, 48.66028732056697],\n            [-1.212331487084808, 48.66031663095393],\n            [-1.212338285492185, 48.66034570904299],\n            [-1.212347940149219, 48.66037443031691],\n            [-1.212360409717657, 48.66040267178599],\n            [-1.212375640805428, 48.66043031251517],\n            [-1.212393568194281, 48.66045723414126],\n            [-1.212414115120002, 48.66048332138075],\n            [-1.212437193600389, 48.66050846252255],\n            [-1.212462704812132, 48.66053254990701],\n            [-1.212490539514115, 48.66055548038656],\n            [-1.212520578514922, 48.66057715576785],\n            [-1.212552693183306, 48.6605974832318],\n            [-1.212586745999114, 48.66061637573149],\n            [-1.212622591142287, 48.66063375236466],\n            [-1.212660075116552, 48.66064953872025],\n            [-1.212699037407825, 48.6606636671972],\n            [-1.21273931117083, 48.66067607729379],\n            [-1.21278072394378, 48.66068671586669],\n            [-1.212823098386995, 48.66069553735883],\n            [-1.212866253042704, 48.66070250399437],\n            [-1.212910003111172, 48.66070758594013],\n            [-1.21292062151227, 48.66070852678805],\n            [-1.213488270430081, 48.66075580455562],\n            [-1.213525667372144, 48.66120169983839],\n            [-1.21339139624171, 48.66202735090703],\n            [-1.213389419723081, 48.66204164286537],\n            [-1.213387524786194, 48.66207104086904],\n            [-1.213388536386217, 48.66210045802875],\n            [-1.213392450196493, 48.66212976837569],\n            [-1.213399249462444, 48.66215884639809],\n            [-1.213408905073514, 48.66218756757888],\n            [-1.213421375687356, 48.66221580892887],\n            [-1.213436607907401, 48.66224344951344],\n            [-1.213454536510603, 48.66227037097006],\n            [-1.213475084727471, 48.66229645801596],\n            [-1.213498164570348, 48.66232159894081],\n            [-1.213505391577541, 48.66232876943948],\n            [-1.21447877358174, 48.66327475173358],\n            [-1.214497059885671, 48.66329166822359],\n            [-1.214524897042451, 48.66331459820454],\n            [-1.214554938568118, 48.66333627304827],\n            [-1.214587055820835, 48.66335659993816],\n            [-1.214621111269376, 48.66337549182957],\n            [-1.214656959082014, 48.66339286782285],\n            [-1.214694445751603, 48.66340865350994],\n            [-1.214733410752129, 48.66342278129235],\n            [-1.214773687226824, 48.66343519067151],\n            [-1.214815102702214, 48.66344582850713],\n            [-1.214857479827283, 48.66345464924531],\n            [-1.214894141651539, 48.66346069274249],\n            [-1.215446997020784, 48.66354107415717],\n            [-1.215459506837706, 48.66356377215541],\n            [-1.215477436994585, 48.66359069329302],\n            [-1.215497986800322, 48.66361677997367],\n            [-1.215521068260506, 48.66364192048878],\n            [-1.215546582538996, 48.66366600718126],\n            [-1.215574420381527, 48.66368893690658],\n            [-1.215604462583293, 48.66371061147464],\n            [-1.21563658049928, 48.66373093806977],\n            [-1.215670636595483, 48.6637498296488],\n            [-1.215706485037778, 48.66376720531341],\n            [-1.215743972315759, 48.66378299065677],\n            [-1.215782937901158, 48.663797118082],\n            [-1.215823214934666, 48.66380952709195],\n            [-1.215864630940451, 48.663820164548],\n            [-1.21590700856496, 48.66382898489783],\n            [-1.215950166336857, 48.66383595037042],\n            [-1.215993919443035, 48.66384103113775],\n            [-1.216038080521449, 48.66384420544257],\n            [-1.216082460462511, 48.66384545969167],\n            [-1.216126869219463, 48.66384478851412],\n            [-1.216377851835453, 48.66383554539333],\n            [-1.217065729155957, 48.66392905110671],\n            [-1.218409920642336, 48.66453382339175],\n            [-1.219237239731772, 48.66665190168623],\n            [-1.219245408339302, 48.66667035065498],\n            [-1.219215980118202, 48.66666693440002],\n            [-1.219171816360252, 48.66666376132042],\n            [-1.219127433854821, 48.66666250826788],\n            [-1.219083022649508, 48.66666318060807],\n            [-1.219038772914811, 48.66666577546188],\n            [-1.218994874129984, 48.66667028171817],\n            [-1.21895151427142, 48.66667668008093],\n            [-1.21890887900816, 48.66668494315215],\n            [-1.218867150906526, 48.66669503554887],\n            [-1.218826508648827, 48.66670691405505],\n            [-1.218787126267991, 48.66672052780642],\n            [-1.21874917240252, 48.66673581850808],\n            [-1.218712809574392, 48.66675272068442],\n            [-1.21867819349311, 48.66677116195934],\n            [-1.218645472388764, 48.66679106336609],\n            [-1.218614786377992, 48.66681233968544],\n            [-1.218586266863062, 48.66683489981056],\n            [-1.218560035969805, 48.66685864713736],\n            [-1.218536206024508, 48.66688347997753],\n            [-1.218514879072843, 48.66690929199475],\n            [-1.218496146442876, 48.6669359726593],\n            [-1.218480088353677, 48.66696340772175],\n            [-1.21846677357248, 48.66699147970213],\n            [-1.218456259119312, 48.66702006839283],\n            [-1.218448590023054, 48.66704905137354],\n            [-1.218443799128872, 48.66707830453514],\n            [-1.218441906957133, 48.66710770261163],\n            [-1.21844292161535, 48.66713711971595],\n            [-1.218446838763816, 48.66716642987952],\n            [-1.218453641633603, 48.66719550759132],\n            [-1.218463301098731, 48.66722422833574],\n            [-1.218475775800463, 48.66725246912533],\n            [-1.218478346575436, 48.66725755083894],\n            [-1.218617344629942, 48.66752696975335],\n            [-1.218630010509108, 48.66754952792657],\n            [-1.218647943784652, 48.66757644856029],\n            [-1.21866849686407, 48.66760253466489],\n            [-1.218691581738942, 48.66762767453411],\n            [-1.21871709955852, 48.66765176051372],\n            [-1.218744941053349, 48.66767468946226],\n            [-1.218774987003037, 48.66769636319287],\n            [-1.218807108746483, 48.66771668889356],\n            [-1.218841168733293, 48.66773557952493],\n            [-1.218877021112639, 48.66775295419272],\n            [-1.218914512357308, 48.66776873849438],\n            [-1.218953481922123, 48.66778286483752],\n            [-1.218993762930551, 48.66779527272959],\n            [-1.219035182889854, 48.66780590903674],\n            [-1.219077564429572, 48.66781472821162],\n            [-1.2191207260615, 48.66782169248825],\n            [-1.219164482956108, 48.66782677204355],\n            [-1.219208647735062, 48.66782994512576],\n            [-1.219253031272927, 48.66783119814676],\n            [-1.219267828630226, 48.66783097411508],\n            [-1.219254978841173, 48.66790618179577],\n            [-1.218031552794943, 48.66860682934463],\n            [-1.215931924878153, 48.66926839219309],\n            [-1.215929339783834, 48.66926921112081],\n            [-1.215889954611751, 48.6692828238741],\n            [-1.215851997931232, 48.66929811361341],\n            [-1.215815632276245, 48.66931501486738],\n            [-1.215781013368484, 48.66933345526379],\n            [-1.215748289450069, 48.66935335583965],\n            [-1.215717600649688, 48.66937463137926],\n            [-1.215689078381621, 48.6693971907792],\n            [-1.215663941739054, 48.6694198763314],\n            [-1.215458037627233, 48.66961844078752],\n            [-1.215048974572544, 48.66982863556905],\n            [-1.215022576005991, 48.66984291752739],\n            [-1.214989851455921, 48.66986281788591],\n            [-1.214959162023725, 48.66988409322169],\n            [-1.214930639126242, 48.66990665243207],\n            [-1.214904404904127, 48.66993039891673],\n            [-1.214880571697639, 48.66995523099129],\n            [-1.214859241566497, 48.66998104232236],\n            [-1.214840505852297, 48.67000772238332],\n            [-1.214824444787579, 48.67003515692731],\n            [-1.214811127152045, 48.67006322847665],\n            [-1.214800609977933, 48.67009181682556],\n            [-1.214794924948566, 48.6701121275422],\n            [-1.214567990042359, 48.67104150729048],\n            [-1.214566003323909, 48.67105017929875],\n            [-1.21456120978974, 48.67107943228942],\n            [-1.214559315197217, 48.67110883029304],\n            [-1.214560327664747, 48.67113824742306],\n            [-1.214564242861633, 48.67116755771062],\n            [-1.214571044027404, 48.67119663564428],\n            [-1.214580702043411, 48.67122535670745],\n            [-1.214593175556993, 48.67125359791122],\n            [-1.214608411159133, 48.67128123832178],\n            [-1.214626343612395, 48.67130815957732],\n            [-1.214646896130742, 48.67133424639587],\n            [-1.214669980708132, 48.67135938706814],\n            [-1.214695498495075, 48.67138347393647],\n            [-1.214723340222299, 48.6714064038556],\n            [-1.21475338666833, 48.67142807863453],\n            [-1.214785509170049, 48.67144840545667],\n            [-1.214819570173726, 48.6714672972779],\n            [-1.214855423824255, 48.67148467319893],\n            [-1.214892916588948, 48.6715004588117],\n            [-1.214931887916073, 48.67151458651831],\n            [-1.214972170921604, 48.67152699582037],\n            [-1.215013593104288, 48.67153763357793],\n            [-1.215055977084034, 48.67154645423749],\n            [-1.215099141362326, 48.6715534200266],\n            [-1.215109155070249, 48.67155475583742],\n            [-1.217404514911407, 48.67184904502301],\n            [-1.217610886471088, 48.67202521475468],\n            [-1.217632450058424, 48.67204269802366],\n            [-1.217662498138687, 48.6720643720389],\n            [-1.21769462222306, 48.67208469804477],\n            [-1.217728684750858, 48.67210358900069],\n            [-1.21776453986032, 48.6721209640108],\n            [-1.217802034012883, 48.67213674867125],\n            [-1.21784100665058, 48.6721508753881],\n            [-1.217881290883889, 48.67216328366715],\n            [-1.217922714206101, 48.6721739203729],\n            [-1.217945041752753, 48.67217881783362],\n            [-1.218549645693745, 48.67230377921458],\n            [-1.218743412198986, 48.67259614044054],\n            [-1.218753236546002, 48.67261029243714],\n            [-1.218773791737811, 48.67263637851308],\n            [-1.218796878976551, 48.67266151835173],\n            [-1.218820324847576, 48.67268376685593],\n            [-1.219283399127018, 48.67309609907674],\n            [-1.219290920932397, 48.67318563902863],\n            [-1.21929483904643, 48.67321494915008],\n            [-1.21930164322503, 48.67324402679857],\n            [-1.219311304336601, 48.67327274745866],\n            [-1.219323781015271, 48.67330098814325],\n            [-1.219339019838495, 48.67332862792076],\n            [-1.219356955554907, 48.67335554843202],\n            [-1.219377511364621, 48.67338163439828],\n            [-1.219400599247447, 48.67340677411396],\n            [-1.219426120339766, 48.67343085992538],\n            [-1.219453965358137, 48.67345378869187],\n            [-1.219484015066998, 48.67347546222731],\n            [-1.219516140789261, 48.67349578772056],\n            [-1.219550204957407, 48.67351467813312],\n            [-1.21958606170276, 48.67353205257168],\n            [-1.219623557479403, 48.67354783663462],\n            [-1.219662531722656, 48.67356196273063],\n            [-1.219702817536101, 48.67357437036815],\n            [-1.219744242406335, 48.67358500641451],\n            [-1.219762951580266, 48.6735888990327],\n            [-1.219949825662234, 48.67413249877237],\n            [-1.219954317911067, 48.67414476783772],\n            [-1.219966795167415, 48.67417300845054],\n            [-1.219982034608305, 48.67420064814071],\n            [-1.219999970980232, 48.6742275685497],\n            [-1.220020527480095, 48.6742536543989],\n            [-1.220043616084863, 48.67427879398331],\n            [-1.220069137927882, 48.67430287965001],\n            [-1.220096983722332, 48.67432580825886],\n            [-1.220127034229595, 48.67434748162428],\n            [-1.220159160769023, 48.67436780693603],\n            [-1.220193225769664, 48.67438669715627],\n            [-1.220227480364464, 48.67440334456711],\n            [-1.220823078258368, 48.67467422556451],\n            [-1.221082524739168, 48.67487293532324],\n            [-1.221111304683236, 48.67489363191096],\n            [-1.221143431969547, 48.674913956946],\n            [-1.221177497710075, 48.67493284687291],\n            [-1.221211751711651, 48.67494949340171],\n            [-1.221411265256616, 48.6750402308007],\n            [-1.22141286957987, 48.67504095819681],\n            [-1.221450367055434, 48.67505674166026],\n            [-1.221489342981661, 48.6750708671335],\n            [-1.221529630454878, 48.67508327412765],\n            [-1.221571056954849, 48.67509390951258],\n            [-1.221613445083016, 48.67510272774501],\n            [-1.221656613322859, 48.67510969106281],\n            [-1.221663659491807, 48.67511064134386],\n            [-1.221961931991766, 48.67514977916045],\n            [-1.222105595959648, 48.67527239407719],\n            [-1.22212716057692, 48.67528987485262],\n            [-1.222157212535562, 48.67531154768422],\n            [-1.222189340511741, 48.67533187242547],\n            [-1.222223406928409, 48.67535076204103],\n            [-1.222259265906935, 48.67536813564094],\n            [-1.222287898275711, 48.67538039098345],\n            [-1.223286008635134, 48.67578443980758],\n            [-1.223294874392842, 48.67578796757405],\n            [-1.22333385140416, 48.67580209241937],\n            [-1.223374139918625, 48.67581449876453],\n            [-1.223415567411161, 48.67582513348228],\n            [-1.223457956479357, 48.67583395103209],\n            [-1.223501125602493, 48.67584091365488],\n            [-1.223508174232573, 48.67584186412743],\n            [-1.223624433318571, 48.67585711671322],\n            [-1.223632891029702, 48.67587245361209],\n            [-1.223650829952789, 48.67589937344634],\n            [-1.22367138903047, 48.6759254586375],\n            [-1.223694480228543, 48.67595059748339],\n            [-1.223720004669244, 48.67597468233418],\n            [-1.223747853054742, 48.6759976100531],\n            [-1.223777906135066, 48.67601928245877],\n            [-1.22381003521872, 48.67603960674462],\n            [-1.223844102723737, 48.67605849587747],\n            [-1.223879962767231, 48.67607586896945],\n            [-1.223917461789059, 48.67609165162475],\n            [-1.223956439210749, 48.67610577625806],\n            [-1.223996728122196, 48.67611818238406],\n            [-1.224038155996767, 48.67612881687658],\n            [-1.224080545430091, 48.67613763419594],\n            [-1.224123714900229, 48.67614459658418],\n            [-1.224167479543978, 48.67614967422632],\n            [-1.224211651949931, 48.6761528453787],\n            [-1.224256042959919, 48.67615409646145],\n            [-1.224300462479842, 48.67615342211726],\n            [-1.224460189910643, 48.67614752980288],\n            [-1.226036531437293, 48.6766664270321],\n            [-1.226072785176284, 48.67667749276223],\n            [-1.226114213950755, 48.676688126504],\n            [-1.22615660421985, 48.67669694305533],\n            [-1.226199774457735, 48.67670390466138],\n            [-1.226243539798047, 48.67670898151068],\n            [-1.226287712826342, 48.67671215186293],\n            [-1.226332104381833, 48.67671340214174],\n            [-1.226376524368082, 48.67671272699309],\n            [-1.226420782566728, 48.67671012930814],\n            [-1.22643070096643, 48.67670928067314],\n            [-1.228371340434913, 48.67653358698122],\n            [-1.229276116689131, 48.67674749355296],\n            [-1.228770027945079, 48.67716750517316],\n            [-1.228278270697936, 48.67728057741353],\n            [-1.228247268726785, 48.6772882715997],\n            [-1.228206620122003, 48.67730015342271],\n            [-1.228167231983373, 48.67731377038638],\n            [-1.228129272973897, 48.67732906418213],\n            [-1.228092905637614, 48.67734596932102],\n            [-1.228058285703295, 48.67736441341435],\n            [-1.228025561417834, 48.67738431748315],\n            [-1.227994872911078, 48.67740559629695],\n            [-1.227966351596248, 48.67742815873825],\n            [-1.227940119606907, 48.67745190819286],\n            [-1.22791628927388, 48.67747674296358],\n            [-1.227901922705306, 48.67749368216146],\n            [-1.226669337203821, 48.67902342648995],\n            [-1.226662376713676, 48.67903230095819],\n            [-1.226643643890584, 48.67905898293002],\n            [-1.226627586375546, 48.67908641910895],\n            [-1.226614272933058, 48.67911449201024],\n            [-1.226603760577691, 48.67914308142223],\n            [-1.226596094329295, 48.6791720649216],\n            [-1.226591307020806, 48.67920131839708],\n            [-1.22658941915724, 48.67923071658116],\n            [-1.226590438827708, 48.67926013358643],\n            [-1.226594361670998, 48.67928944344477],\n            [-1.226601170893824, 48.67931852064634],\n            [-1.226610837342965, 48.6793472406778],\n            [-1.226623319629709, 48.67937548055477],\n            [-1.22663856430751, 48.67940311934894],\n            [-1.226656506099941, 48.67943003870549],\n            [-1.226677068181059, 48.67945612335057],\n            [-1.226700162503853, 48.67948126158423],\n            [-1.226725690177128, 48.67950534575924],\n            [-1.226753541889245, 48.67952827274179],\n            [-1.226783598375985, 48.67954994435354],\n            [-1.226815730931241, 48.67957026779151],\n            [-1.226849801958201, 48.67958915602593],\n            [-1.226874123952939, 48.67960119566106],\n            [-1.22737578133971, 48.67983812767582],\n            [-1.22765756405625, 48.68004625062066],\n            [-1.227678332074536, 48.68006091634014],\n            [-1.227710465318102, 48.68008123952655],\n            [-1.227744537027655, 48.68010012749437],\n            [-1.227780401301906, 48.68011749936081],\n            [-1.227817904563122, 48.68013328073522],\n            [-1.227856886214309, 48.68014740403786],\n            [-1.227897179327335, 48.68015980878921],\n            [-1.227938611357502, 48.68017044186879],\n            [-1.227981004882932, 48.6801792577431],\n            [-1.228024178363882, 48.68018621866026],\n            [-1.228067946920082, 48.68019129481168],\n            [-1.228112123123257, 48.68019446446007],\n            [-1.228156517799133, 48.68019571403207],\n            [-1.22820094083784, 48.68019503817658],\n            [-1.228245202007989, 48.68019243978803],\n            [-1.228289111771355, 48.68018792999314],\n            [-1.228332482094807, 48.68018152810428],\n            [-1.228358970052914, 48.68017639353751],\n            [-1.228379329819807, 48.68019107271857],\n            [-1.228411463429959, 48.68021139570827],\n            [-1.228445535491112, 48.68023028346758],\n            [-1.228481400100454, 48.68024765511454],\n            [-1.228518903678717, 48.68026343625954],\n            [-1.228557885627766, 48.68027755932366],\n            [-1.22859817901809, 48.68028996382839],\n            [-1.228639611303912, 48.68030059665453],\n            [-1.228682005062036, 48.68030941226962],\n            [-1.22872517875168, 48.68031637292264],\n            [-1.228768947491992, 48.68032144880642],\n            [-1.22881312385376, 48.68032461818466],\n            [-1.22885751866201, 48.68032586748512],\n            [-1.228901941806293, 48.68032519135805],\n            [-1.228946203054799, 48.68032259269884],\n            [-1.228990112868964, 48.6803180826356],\n            [-1.229033483215438, 48.68031168048155],\n            [-1.229076128371025, 48.68030341365257],\n            [-1.229117865718583, 48.68029331754921],\n            [-1.229158516528142, 48.68028143540583],\n            [-1.229197906723547, 48.68026781810466],\n            [-1.229235867626948, 48.68025252395852],\n            [-1.229272236681516, 48.68023561846075],\n            [-1.22930685814763, 48.68021717400491],\n            [-1.229339583769922, 48.68019726957461],\n            [-1.22937027341161, 48.68017599040537],\n            [-1.229398795655297, 48.68015342761958],\n            [-1.229425028365281, 48.68012967783605],\n            [-1.229448859210578, 48.68010484275681],\n            [-1.229470186145956, 48.68007902873084],\n            [-1.229488917849044, 48.68005234629926],\n            [-1.229504974111004, 48.68002490972156],\n            [-1.229509443071266, 48.68001617690406],\n            [-1.229535638101591, 48.67996320846347],\n            [-1.230235114958787, 48.67985572176481],\n            [-1.23025097675878, 48.67985315078378],\n            [-1.230293621325198, 48.67984488350156],\n            [-1.230335358047436, 48.67983478695464],\n            [-1.230376008198562, 48.67982290437904],\n            [-1.230415397704898, 48.6798092866591],\n            [-1.230453357891632, 48.67979399210923],\n            [-1.230489726205073, 48.67977708622469],\n            [-1.230524346908677, 48.67975864140054],\n            [-1.230557071750353, 48.67973873662205],\n            [-1.230587760596857, 48.67971745712607],\n            [-1.230616282033969, 48.67969489403655],\n            [-1.230642513929505, 48.67967114397365],\n            [-1.230666343955957, 48.67964630864045],\n            [-1.230687670071551, 48.67962049438711],\n            [-1.230706400957593, 48.67959381175561],\n            [-1.230722456408642, 48.67956637500646],\n            [-1.23073576767669, 48.67953830162912],\n            [-1.230746277764829, 48.67950971183911],\n            [-1.230753941671998, 48.67948072806304],\n            [-1.230758726584724, 48.67945147441438],\n            [-1.23075904219706, 48.6794485740557],\n            [-1.230910094701045, 48.67799479597035],\n            [-1.230910403213101, 48.67799189528817],\n            [-1.230911972909015, 48.67796539739521],\n            [-1.230910950736388, 48.67793598041992],\n            [-1.230907025482226, 48.67790667070634],\n            [-1.23090021396016, 48.67787759375737],\n            [-1.230892501183443, 48.67785402883464],\n            [-1.230552103863611, 48.67693389662275],\n            [-1.230772529835207, 48.67691393456038],\n            [-1.230806519192675, 48.67691027271579],\n            [-1.230849886368026, 48.67690386987301],\n            [-1.230892528334264, 48.67689560236609],\n            [-1.230934262487917, 48.67688550559883],\n            [-1.230974910112783, 48.67687362280827],\n            [-1.231014297146098, 48.67686000487942],\n            [-1.231052254923759, 48.67684471012779],\n            [-1.231088620902308, 48.67682780404941],\n            [-1.231123239355332, 48.67680935904021],\n            [-1.231155962040134, 48.67678945408628],\n            [-1.231186648832841, 48.67676817442525],\n            [-1.231215168328026, 48.67674561118163],\n            [-1.231241398401699, 48.67672186097637],\n            [-1.231265226734366, 48.67669702551301],\n            [-1.231286551291506, 48.67667121114241],\n            [-1.231305280760862, 48.67664452840707],\n            [-1.231315039462269, 48.67662849660083],\n            [-1.231907730216384, 48.67559810553436],\n            [-1.233126604308061, 48.67435677890063],\n            [-1.233689712338866, 48.67407762338888],\n            [-1.233690934225058, 48.67407701622228],\n            [-1.233725549829301, 48.67405857042336],\n            [-1.233758269693519, 48.67403866472243],\n            [-1.23378895370573, 48.67401738436032],\n            [-1.233817470472778, 48.67399482046465],\n            [-1.233843697882062, 48.673971069659],\n            [-1.23386752362558, 48.67394623364956],\n            [-1.233888845679863, 48.67392041878951],\n            [-1.233907572743442, 48.67389373562347],\n            [-1.233923624627344, 48.6738662984142],\n            [-1.233936932598729, 48.67383822465301],\n            [-1.233945585551484, 48.67381532589809],\n            [-1.234134958747908, 48.67325175037627],\n            [-1.234146050465053, 48.67326221402246],\n            [-1.234173902102349, 48.673285139213],\n            [-1.234203958055216, 48.67330680888941],\n            [-1.234211811086141, 48.67331202534496],\n            [-1.235343516906178, 48.67405154064504],\n            [-1.235631631390608, 48.67438378693053],\n            [-1.234694714240645, 48.67441843924063],\n            [-1.234650458487103, 48.6744210401205],\n            [-1.234606554331033, 48.67442555235373],\n            [-1.234563189771869, 48.674431956619],\n            [-1.234520550498757, 48.67444022549279],\n            [-1.234478819095164, 48.67445032356756],\n            [-1.234438174257608, 48.67446220760276],\n            [-1.234398790030189, 48.67447582671044],\n            [-1.234360835059043, 48.6744911225729],\n            [-1.234324471870982, 48.67450802969232],\n            [-1.234289856177011, 48.67452647567147],\n            [-1.234288386549332, 48.67452731513832],\n            [-1.233852706706708, 48.67477689801865],\n            [-1.233821456042812, 48.67479596428469],\n            [-1.23379077156917, 48.6748172446542],\n            [-1.233762254323745, 48.67483980854183],\n            [-1.233736026422714, 48.67486355932738],\n            [-1.233712200179555, 48.67488839530769],\n            [-1.233690877624034, 48.67491421013297],\n            [-1.233685655932275, 48.67492120489182],\n            [-1.233047836828063, 48.67579457698194],\n            [-1.233034330476726, 48.6758142652753],\n            [-1.233018277485569, 48.67584170235603],\n            [-1.233004968470799, 48.67586977600632],\n            [-1.232994460428023, 48.67589836601141],\n            [-1.232986798358604, 48.67592734994517],\n            [-1.232982015077713, 48.67595660369467],\n            [-1.232980131072821, 48.67598600199115],\n            [-1.23298115441691, 48.67601541894682],\n            [-1.232985080732683, 48.67604472859353],\n            [-1.232991893212123, 48.67607380542268],\n            [-1.233001562688123, 48.67610252492226],\n            [-1.23301404775892, 48.67613076411028],\n            [-1.233029294966057, 48.67615840206141],\n            [-1.233047239022338, 48.67618532042431],\n            [-1.233067803092105, 48.6762114039295],\n            [-1.233090899119755, 48.67623654088186],\n            [-1.23311642820688, 48.67626062363965],\n            [-1.233144281035723, 48.67628354907516],\n            [-1.233174338337311, 48.67630521901673],\n            [-1.23320647140204, 48.67632554066832],\n            [-1.233240542630958, 48.6763444270081],\n            [-1.233276406125132, 48.67636179716013],\n            [-1.23331390830973, 48.67637757674113],\n            [-1.233352888592691, 48.676391698179],\n            [-1.233393180051681, 48.67640410100212],\n            [-1.233434610149153, 48.67641473209844],\n            [-1.233440905662044, 48.67641616962024],\n            [-1.235299610150287, 48.67683382634767],\n            [-1.23614249682958, 48.67707346268261],\n            [-1.236144468041993, 48.67707402065796],\n            [-1.236185899273299, 48.67708465075943],\n            [-1.236228291642614, 48.67709346358598],\n            [-1.236271463615131, 48.67710042139878],\n            [-1.236315230317293, 48.67710549440272],\n            [-1.236359404328742, 48.67710866087377],\n            [-1.236403796484413, 48.67710990725225],\n            [-1.236448216685351, 48.67710922820087],\n            [-1.236492474712234, 48.67710662662751],\n            [-1.236536381040367, 48.67710211367282],\n            [-1.23657974765131, 48.67709570866239],\n            [-1.236622388837891, 48.67708743902421],\n            [-1.236664121999838, 48.67707734017117],\n            [-1.236704768425423, 48.67706545534905],\n            [-1.236741876817282, 48.67705268304424],\n            [-1.237115320084432, 48.67691431116812],\n            [-1.237157917112477, 48.67692618779624],\n            [-1.237196943432233, 48.6769361433768],\n            [-1.237239335853566, 48.67694495582957],\n            [-1.237282507838473, 48.67695191326164],\n            [-1.237326274513377, 48.67695698587964],\n            [-1.237370448458, 48.67696015196112],\n            [-1.237414840507596, 48.67696139794811],\n            [-1.237459260563649, 48.67696071850497],\n            [-1.237503518407459, 48.67695811654118],\n            [-1.237547424515149, 48.67695360319919],\n            [-1.237590790869196, 48.67694719780621],\n            [-1.237633431763492, 48.67693892779186],\n            [-1.237675164599059, 48.67692882857064],\n            [-1.237715810665552, 48.67691694338988],\n            [-1.23775291928385, 48.67690417053795],\n            [-1.237793252916863, 48.67688922527204],\n            [-1.237870344117487, 48.67691071878972],\n            [-1.23790937045231, 48.6769206740959],\n            [-1.237951762985494, 48.67692948628528],\n            [-1.237994935055693, 48.67693644344904],\n            [-1.23803870178903, 48.67694151579507],\n            [-1.238082875764888, 48.67694468160197],\n            [-1.238127267818501, 48.6769459273131],\n            [-1.238171687851273, 48.6769452475939],\n            [-1.238215945644583, 48.67694264535511],\n            [-1.238259851674795, 48.67693813174015],\n            [-1.238303217924706, 48.67693172607771],\n            [-1.238345858688725, 48.67692345579837],\n            [-1.238387591368317, 48.67691335631772],\n            [-1.238428237253855, 48.67690147088432],\n            [-1.238467622290007, 48.67688785039466],\n            [-1.238505577821025, 48.67687255317529],\n            [-1.238541941313203, 48.67685564473253],\n            [-1.238576557050599, 48.67683719747261],\n            [-1.238609276802427, 48.6768172903912],\n            [-1.238639960457224, 48.67679600873511],\n            [-1.238668476623013, 48.67677344363728],\n            [-1.238694703190191, 48.67674969172676],\n            [-1.238718527854053, 48.67672485471435],\n            [-1.238739848595865, 48.67669903895742],\n            [-1.238755832910556, 48.67667656157551],\n            [-1.238767154596845, 48.67665942813833],\n            [-1.238922314157265, 48.67661683506349],\n            [-1.239444014982645, 48.67661122821626],\n            [-1.239470893006971, 48.67661058647276],\n            [-1.239507895774361, 48.67660854314885],\n            [-1.242107626720759, 48.67641742396582],\n            [-1.242168918871294, 48.67660583683013],\n            [-1.24217517449793, 48.67662335558489],\n            [-1.242187664850782, 48.6766515937724],\n            [-1.242202917258859, 48.67667923050203],\n            [-1.242220866412642, 48.67670614742778],\n            [-1.242241435454732, 48.67673222928595],\n            [-1.242264536308222, 48.67675736438891],\n            [-1.24229007005402, 48.67678144510253],\n            [-1.242317927354406, 48.67680436830806],\n            [-1.242347988921182, 48.67682603584315],\n            [-1.242380126026779, 48.67684635492229],\n            [-1.242414201054598, 48.6768652385346],\n            [-1.24245006808948, 48.67688260581569],\n            [-1.242487573541724, 48.67689838239478],\n            [-1.242526556804962, 48.67691250071253],\n            [-1.242566850944207, 48.67692490031068],\n            [-1.242608283410285, 48.67693552809103],\n            [-1.2426506767795, 48.67694433854258],\n            [-1.242693849512768, 48.67695129393677],\n            [-1.242737616733016, 48.67695636448866],\n            [-1.242781791017766, 48.67695952848489],\n            [-1.242826183200796, 48.67696077237628],\n            [-1.242870603183068, 48.6769600908363],\n            [-1.242914860746163, 48.67695748678332],\n            [-1.242958766367401, 48.67695297136872],\n            [-1.243002132031301, 48.67694656392862],\n            [-1.243017978036909, 48.67694372361068],\n            [-1.243234818235885, 48.67690298645255],\n            [-1.243457167137476, 48.67692744979087],\n            [-1.243473392684482, 48.6769291017217],\n            [-1.243517566991534, 48.67693226543439],\n            [-1.243561959168749, 48.67693350904089],\n            [-1.243606379116928, 48.67693282721574],\n            [-1.243650636617892, 48.67693022287871],\n            [-1.243694542149223, 48.67692570718229],\n            [-1.243737907695877, 48.67691929946385],\n            [-1.24378054755522, 48.67691102716301],\n            [-1.243822279132734, 48.67690092570382],\n            [-1.243862923723207, 48.67688903834345],\n            [-1.243902307277125, 48.67687541598669],\n            [-1.243940261145033, 48.67686011696775],\n            [-1.24397662280028, 48.67684320680108],\n            [-1.244011236534939, 48.67682475790011],\n            [-1.244043954126715, 48.67680484926746],\n            [-1.244074635473198, 48.67678356615674],\n            [-1.244103149192604, 48.67676099970715],\n            [-1.244129373185621, 48.67673724655315],\n            [-1.244153195158655, 48.67671240841128],\n            [-1.244174513104503, 48.6766865916436],\n            [-1.244193235739206, 48.67665990680298],\n            [-1.244209282892792, 48.67663246815923],\n            [-1.244222585852726, 48.6766043932101],\n            [-1.244233087657931, 48.67657580217756],\n            [-1.244240743342397, 48.67654681749383],\n            [-1.244244008609055, 48.67652894787445],\n            [-1.244329707405174, 48.67596561372879],\n            [-1.244355280748837, 48.67598665669913],\n            [-1.244385342704701, 48.67600832370123],\n            [-1.244417480110878, 48.67602864221055],\n            [-1.244451555349828, 48.67604752521838],\n            [-1.244487422505134, 48.67606489186306],\n            [-1.244524927986674, 48.67608066777656],\n            [-1.244563911187961, 48.67609478540231],\n            [-1.244604205174289, 48.67610718428511],\n            [-1.244645637397162, 48.67611781132971],\n            [-1.244680866948638, 48.67612527317426],\n            [-1.245653771196462, 48.67631215096039],\n            [-1.246002106156019, 48.67663163437435],\n            [-1.246010002464806, 48.67663872904501],\n            [-1.246037861382199, 48.67666165134669],\n            [-1.24606792446692, 48.67668331790652],\n            [-1.246100062984588, 48.676703635943],\n            [-1.246134139312887, 48.67672251844969],\n            [-1.246170007531042, 48.67673988456711],\n            [-1.246207514044018, 48.67675565992925],\n            [-1.246219042356043, 48.67676006486099],\n            [-1.246310970375339, 48.67679439932643],\n            [-1.24615862733062, 48.67724978227873],\n            [-1.246156890678238, 48.67725512707649],\n            [-1.246149235990515, 48.67728411188661],\n            [-1.24614446023954, 48.67731336618191],\n            [-1.246142583880792, 48.67734276469126],\n            [-1.246143614954118, 48.6773721815259],\n            [-1.246147549049488, 48.67740149071834],\n            [-1.246154369325412, 48.67743056676184],\n            [-1.246164046581388, 48.67745928514774],\n            [-1.246176539382482, 48.6774875228988],\n            [-1.246179165877683, 48.67749270536714],\n            [-1.246505212216911, 48.67812330135217],\n            [-1.246517840880046, 48.67814575504387],\n            [-1.246535792867682, 48.67817267129094],\n            [-1.246556364748441, 48.678198752372],\n            [-1.246579468433027, 48.6782238866025],\n            [-1.246605004990435, 48.67824796635229],\n            [-1.246632865070898, 48.67827088850662],\n            [-1.246662929374405, 48.67829255490769],\n            [-1.246695069161257, 48.67831287277488],\n            [-1.246729146803824, 48.67833175510234],\n            [-1.246765016375657, 48.67834912103148],\n            [-1.246802524275883, 48.67836489619701],\n            [-1.246841509888041, 48.67837901304579],\n            [-1.246881806266855, 48.67839141112576],\n            [-1.246923240853817, 48.67840203734533],\n            [-1.246965636215838, 48.67841084620017],\n            [-1.247008810805281, 48.67841779996843],\n            [-1.24705257973738, 48.67842286887231],\n            [-1.247096755582182, 48.67842603120543],\n            [-1.24714114916691, 48.67842727342575],\n            [-1.247185570386373, 48.67842659021379],\n            [-1.247229829016894, 48.67842398449519],\n            [-1.247273735531258, 48.67841946742847],\n            [-1.247317101910146, 48.67841305835671],\n            [-1.247359742449246, 48.6784047847251],\n            [-1.247367569793418, 48.67840304493227],\n            [-1.247774238771711, 48.67831082770269],\n            [-1.24795849436965, 48.67833785740273],\n            [-1.247966563828471, 48.67833900713021],\n            [-1.248010332788547, 48.67834407566839],\n            [-1.248054508624357, 48.67834723763243],\n            [-1.248098902163142, 48.67834847948187],\n            [-1.248176546259294, 48.67834602085684],\n            [-1.24817788729056, 48.6783473830094],\n            [-1.248203424676286, 48.67837146240291],\n            [-1.248231285553991, 48.67839438416848],\n            [-1.248261350620228, 48.6784160501502],\n            [-1.24829349113204, 48.67843636756902],\n            [-1.24832756945866, 48.6784552494212],\n            [-1.248363439670761, 48.67847261485001],\n            [-1.248400948164692, 48.6784883894924],\n            [-1.248439934321435, 48.67850250579741],\n            [-1.248480231193434, 48.67851490331542],\n            [-1.248521666220004, 48.67852552895716],\n            [-1.248564061966218, 48.67853433722075],\n            [-1.248607236882799, 48.67854129038696],\n            [-1.248651006083603, 48.67854635868054],\n            [-1.248695182137458, 48.67854952039762],\n            [-1.248739575870708, 48.67855076199892],\n            [-1.248783997177521, 48.67855007816757],\n            [-1.24882825583392, 48.67854747183191],\n            [-1.248872162312493, 48.67854295415303],\n            [-1.248875154080686, 48.6785425749512],\n            [-1.248912327695053, 48.67857666479124],\n            [-1.2489202221036, 48.67858375686092],\n            [-1.248948083425809, 48.67860667845203],\n            [-1.248978148927757, 48.67862834424527],\n            [-1.249010289865109, 48.67864866146283],\n            [-1.249044368604879, 48.67866754310167],\n            [-1.249080239215921, 48.67868490830583],\n            [-1.249117748093265, 48.67870068271341],\n            [-1.249156734615895, 48.67871479877444],\n            [-1.249197031834817, 48.67872719604034],\n            [-1.249238467187885, 48.67873782142275],\n            [-1.249280863238615, 48.67874662942113],\n            [-1.249324038436792, 48.6787535823173],\n            [-1.24936780789465, 48.67875865033711],\n            [-1.24941198418014, 48.67876181177793],\n            [-1.249456378118545, 48.67876305310158],\n            [-1.249500799603196, 48.67876236899253],\n            [-1.249545058409316, 48.67875976238013],\n            [-1.249588965008892, 48.67875524442675],\n            [-1.249632331382264, 48.67874883447938],\n            [-1.249674971823302, 48.67874055998721],\n            [-1.249716703735009, 48.67873045638361],\n            [-1.249757348410734, 48.67871856693503],\n            [-1.249796731800583, 48.67870494255509],\n            [-1.249834685255782, 48.67868964158679],\n            [-1.249871046251516, 48.67867272955282],\n            [-1.249905659082597, 48.67865427887463],\n            [-1.249918925653959, 48.67864651866324],\n            [-1.250541877546689, 48.67827243687486],\n            [-1.250561327128135, 48.67826028666812],\n            [-1.250592006603735, 48.67823900181549],\n            [-1.250620518223, 48.67821643374724],\n            [-1.250646739895693, 48.67819267910516],\n            [-1.250670559338312, 48.67816783961165],\n            [-1.250691874554384, 48.67814202163497],\n            [-1.25071059427168, 48.67811533573292],\n            [-1.2507266383327, 48.67808789618005],\n            [-1.250739938038217, 48.67805982047773],\n            [-1.250750436440824, 48.67803122885142],\n            [-1.250758088589499, 48.67800224373575],\n            [-1.250762861721109, 48.67797298924984],\n            [-1.250764735401699, 48.67794359066635],\n            [-1.250763701612565, 48.67791417387459],\n            [-1.25075976478602, 48.67788486484174],\n            [-1.250752941784816, 48.67785578907336],\n            [-1.250743261831278, 48.67782707107573],\n            [-1.250730766380763, 48.67779883382316],\n            [-1.250728139143915, 48.67779365096346],\n            [-1.250388537107903, 48.67713695433926],\n            [-1.250403071092878, 48.67713343534125],\n            [-1.250443714315146, 48.67712154564789],\n            [-1.250483096267905, 48.6771079210305],\n            [-1.250521048308635, 48.67709261983311],\n            [-1.250557407918398, 48.67707570757939],\n            [-1.25059201939806, 48.6770572566917],\n            [-1.25062473453506, 48.67703734618126],\n            [-1.250655413237418, 48.67701606130963],\n            [-1.250683924134681, 48.67699349322363],\n            [-1.250710145139669, 48.67696973856471],\n            [-1.250733963971555, 48.67694489905578],\n            [-1.250740615202202, 48.67693726374228],\n            [-1.251131459480284, 48.67647825090927],\n            [-1.251665848284351, 48.67636597653031],\n            [-1.251633603315236, 48.67667755930504],\n            [-1.251160983910065, 48.67806323408025],\n            [-1.251158626854894, 48.67807041724788],\n            [-1.251150974926902, 48.67809940239012],\n            [-1.251146202009001, 48.67812865689189],\n            [-1.251145887671785, 48.6781315564317],\n            [-1.251067948053566, 48.67888455492231],\n            [-1.250957126476131, 48.67912743647581],\n            [-1.250867552061665, 48.67896766607192],\n            [-1.250860749593497, 48.6789560301189],\n            [-1.250842795010536, 48.67892911455081],\n            [-1.250822220607175, 48.67890303424046],\n            [-1.250799114489316, 48.6788779008664],\n            [-1.25077357560307, 48.67885382205206],\n            [-1.250745713311596, 48.67883090090516],\n            [-1.250715646926635, 48.67880923557578],\n            [-1.250683505197516, 48.67878891883653],\n            [-1.250649425759784, 48.67877003768525],\n            [-1.250613554545965, 48.6787526729721],\n            [-1.250576045160587, 48.67873689905401],\n            [-1.25053705822227, 48.67872278347566],\n            [-1.250496760676449, 48.67871038668091],\n            [-1.250455325080055, 48.67869976175318],\n            [-1.250412928862978, 48.67869095418918],\n            [-1.250369753568119, 48.67868400170308],\n            [-1.25032598407423, 48.6786789340658],\n            [-1.250281807804108, 48.67867577297717],\n            [-1.250237413922377, 48.67867453197312],\n            [-1.250192992525376, 48.67867521636765],\n            [-1.25014873382727, 48.67867782323022],\n            [-1.250104827345639, 48.67868234139798],\n            [-1.250061461089873, 48.67868875152413],\n            [-1.250018820756389, 48.67869702616019],\n            [-1.249977088933232, 48.67870712987373],\n            [-1.249966262695146, 48.67871009245918],\n            [-1.249620657987414, 48.67880698562404],\n            [-1.248319768190209, 48.67871977384971],\n            [-1.248302208402385, 48.67871874883972],\n            [-1.248257814531606, 48.67871750706907],\n            [-1.248213393069677, 48.67871819069651],\n            [-1.248169134231123, 48.67872079679476],\n            [-1.248125227534045, 48.67872531420437],\n            [-1.24808186098881, 48.6787317235816],\n            [-1.248039220293076, 48.67873999748124],\n            [-1.247997488036305, 48.67875010047417],\n            [-1.247956842918874, 48.67876198929874],\n            [-1.247917458985739, 48.67877561304654],\n            [-1.247881476931023, 48.67879006183803],\n            [-1.24687294246892, 48.67922389636892],\n            [-1.246870970385883, 48.6792247478935],\n            [-1.246834607981675, 48.67924165897518],\n            [-1.246799993618999, 48.67926010872528],\n            [-1.246767275520848, 48.67928001814072],\n            [-1.246736593790752, 48.67930130196811],\n            [-1.246708079812573, 48.67932386906836],\n            [-1.24668185568876, 48.6793476228075],\n            [-1.246658033716386, 48.67937246146987],\n            [-1.246636715906988, 48.67939827869411],\n            [-1.246617993549484, 48.67942496392821],\n            [-1.246605738087758, 48.67944541710989],\n            [-1.245584979523424, 48.68127851138964],\n            [-1.245581187974749, 48.68128549714831],\n            [-1.24556788453484, 48.68131357224498],\n            [-1.245560849474705, 48.68133178462027],\n            [-1.245318857578044, 48.68201765765073],\n            [-1.245197617341693, 48.68205429414315],\n            [-1.245185011746806, 48.6820582071799],\n            [-1.245145624480017, 48.68207182997195],\n            [-1.245107667044063, 48.68208712938381],\n            [-1.245071301976166, 48.68210403990248],\n            [-1.245036684995464, 48.68212248911603],\n            [-1.245003964335862, 48.68214239802387],\n            [-1.244973280112141, 48.68216368137455],\n            [-1.244944763718874, 48.68218624803126],\n            [-1.244918537268542, 48.6822100013618],\n            [-1.24489471306841, 48.68223483965222],\n            [-1.244873393139587, 48.68226065654281],\n            [-1.244854668779944, 48.68228734148311],\n            [-1.244838620173461, 48.6823147802052],\n            [-1.244825316046421, 48.68234285521352],\n            [-1.24481481337323, 48.68237144628763],\n            [-1.244807157132728, 48.68240043099674],\n            [-1.244802380114627, 48.68242968522457],\n            [-1.244800502780039, 48.68245908370036],\n            [-1.24480153317293, 48.68248850053547],\n            [-1.244803908422547, 48.68250619799911],\n            [-1.244786114718957, 48.68251195832204],\n            [-1.244750457450219, 48.6825243826532],\n            [-1.244712499552374, 48.68253968193368],\n            [-1.244708066775069, 48.68254161941222],\n            [-1.243901626316137, 48.68289709911278],\n            [-1.243869693099187, 48.68291207180191],\n            [-1.243835075120923, 48.68293052065151],\n            [-1.243802353459582, 48.68295042921507],\n            [-1.243771668233782, 48.68297171224281],\n            [-1.243743150842713, 48.68299427859927],\n            [-1.243716923403093, 48.68301803165336],\n            [-1.243693098226322, 48.68304286969259],\n            [-1.243671777337647, 48.68306868635811],\n            [-1.243653052039155, 48.68309537110041],\n            [-1.243637002518803, 48.68312280965255],\n            [-1.243623697506671, 48.68315088451972],\n            [-1.243613193981361, 48.68317947548194],\n            [-1.243605536924812, 48.68320846010897],\n            [-1.243600759130752, 48.68323771428489],\n            [-1.243598881063091, 48.68326711273915],\n            [-1.243599910769491, 48.68329652958324],\n            [-1.243603843845396, 48.68332583884957],\n            [-1.243610663453774, 48.68335491503107],\n            [-1.24362034039702, 48.68338363361862],\n            [-1.243632833241439, 48.68341187163394],\n            [-1.243648088495259, 48.68343950815689],\n            [-1.243666040836793, 48.68346642484226],\n            [-1.24368661339495, 48.68349250642764],\n            [-1.243709718077757, 48.68351764122619],\n            [-1.243735255949734, 48.6835417216054],\n            [-1.243741891440611, 48.6835474655424],\n            [-1.244642730131693, 48.68431439138568],\n            [-1.244663956978334, 48.68433157012323],\n            [-1.24469402405802, 48.6843532370305],\n            [-1.244726166924148, 48.68437355544013],\n            [-1.244760247935801, 48.68439243834406],\n            [-1.244796121152199, 48.68440980488111],\n            [-1.244833632956861, 48.68442558068341],\n            [-1.244872622716542, 48.68443969819509],\n            [-1.244912923468258, 48.68445209696142],\n            [-1.244954362634736, 48.68446272388756],\n            [-1.244996762763204, 48.68447153346643],\n            [-1.245039942285922, 48.68447848797301],\n            [-1.245083716296698, 48.68448355762617],\n            [-1.245127897343938, 48.68448672071652],\n            [-1.245172296232484, 48.68448796369864],\n            [-1.245216722834561, 48.6844872812499],\n            [-1.245260986903392, 48.6844846762927],\n            [-1.24530489888846, 48.68448015998213],\n            [-1.245348270747064, 48.68447375165822],\n            [-1.245390916749554, 48.68446547876325],\n            [-1.245432654275049, 48.68445537672364],\n            [-1.245473304593101, 48.68444348879928],\n            [-1.245512693629414, 48.68442986589718],\n            [-1.245550652711152, 48.68441456635404],\n            [-1.2455870192893, 48.68439765568638],\n            [-1.245621637634831, 48.68437920630992],\n            [-1.245631897710899, 48.6843732420698],\n            [-1.247610331896478, 48.68319959527402],\n            [-1.247632792618141, 48.68318565004461],\n            [-1.247663476339624, 48.68316436598381],\n            [-1.247691992067244, 48.68314179865265],\n            [-1.247710163900702, 48.68312569262207],\n            [-1.247789248564519, 48.68305222847154],\n            [-1.247854171830762, 48.68302022722561],\n            [-1.247873619607651, 48.68304476570553],\n            [-1.247896726178188, 48.6830698996611],\n            [-1.247922265828403, 48.68309397910844],\n            [-1.247950129195197, 48.68311690093408],\n            [-1.247980196964731, 48.68313856698157],\n            [-1.248012340382378, 48.68315888447189],\n            [-1.248046421805042, 48.6831777664007],\n            [-1.248082295289785, 48.68319513191118],\n            [-1.248110933702427, 48.68320737889114],\n            [-1.248319230305013, 48.68329162540813],\n            [-1.24832810385143, 48.6832951531406],\n            [-1.248367093715668, 48.68330926946514],\n            [-1.248407394422999, 48.68332166700418],\n            [-1.248448833396192, 48.68333229266825],\n            [-1.248491233183633, 48.68334110095559],\n            [-1.24853441221874, 48.68334805414661],\n            [-1.248578185597522, 48.68335312246614],\n            [-1.248622365871002, 48.68335628421004],\n            [-1.248666763847497, 48.68335752583916],\n            [-1.248711189402971, 48.68335684203619],\n            [-1.248802026023017, 48.68335347219894],\n            [-1.24882756625095, 48.6833775514441],\n            [-1.248855430187867, 48.68340047304911],\n            [-1.248885498517174, 48.68342213885877],\n            [-1.248917642482104, 48.68344245609475],\n            [-1.248951724436942, 48.68346133775407],\n            [-1.248987598436893, 48.68347870298084],\n            [-1.249025110862099, 48.68349447741292],\n            [-1.249064101076676, 48.68350859350018],\n            [-1.249104402115682, 48.68352099079409],\n            [-1.249145841400625, 48.68353161620605],\n            [-1.249188241478214, 48.68354042423539],\n            [-1.249231420780967, 48.68354737716386],\n            [-1.249275194403574, 48.68355244521712],\n            [-1.249319374896099, 48.68355560669244],\n            [-1.249363773065819, 48.68355684805154],\n            [-1.24940819878798, 48.68355616397858],\n            [-1.250086214596218, 48.68353100531307],\n            [-1.250130477570584, 48.68352839847564],\n            [-1.25017438828269, 48.68352388029969],\n            [-1.250217758695331, 48.68351747013321],\n            [-1.250232545228049, 48.68351482760058],\n            [-1.250584964304531, 48.68361495505187],\n            [-1.25058693564682, 48.68361551269716],\n            [-1.250628375323051, 48.68362613757318],\n            [-1.250670775740128, 48.6836349450542],\n            [-1.250713955329112, 48.68364189742424],\n            [-1.250757729183514, 48.68364696491143],\n            [-1.250786278132778, 48.68364922867609],\n            [-1.251928736879624, 48.68372360566825],\n            [-1.251944502226332, 48.68373619431954],\n            [-1.251974572087753, 48.68375785931833],\n            [-1.252006717515972, 48.68377817568768],\n            [-1.25204080085874, 48.68379705642825],\n            [-1.252076676165266, 48.68381442068792],\n            [-1.252114189810476, 48.68383019410881],\n            [-1.252153181152871, 48.68384430914519],\n            [-1.252193483222872, 48.68385670535286],\n            [-1.252234923437392, 48.68386732964801],\n            [-1.252277324339501, 48.68387613653467],\n            [-1.252320504357842, 48.6838830882996],\n            [-1.252364278584186, 48.68388815517324],\n            [-1.252408459566019, 48.68389131545807],\n            [-1.252452858108542, 48.68389255562092],\n            [-1.252497284085299, 48.68389187035096],\n            [-1.252836293564967, 48.68387928238553],\n            [-1.252880556703362, 48.68387667448647],\n            [-1.252890272494673, 48.68387584201578],\n            [-1.25480838731429, 48.68370215314294],\n            [-1.254842582033227, 48.68369846581241],\n            [-1.254885952001124, 48.68369205388011],\n            [-1.254928595770459, 48.68368377743698],\n            [-1.254970330729948, 48.68367367192478],\n            [-1.255010978159949, 48.68366178061813],\n            [-1.25505036399854, 48.6836481544386],\n            [-1.255088319586772, 48.6836328517368],\n            [-1.25512468239054, 48.68361593804297],\n            [-1.255159296697022, 48.68359748578568],\n            [-1.255192014281303, 48.68357757398191],\n            [-1.255222695041196, 48.6835562878987],\n            [-1.255251207597492, 48.68353371868815],\n            [-1.255277429855577, 48.68350996299666],\n            [-1.25530124952951, 48.68348512255124],\n            [-1.255322564621881, 48.68345930372412],\n            [-1.25534128386098, 48.68343261707695],\n            [-1.255357327091364, 48.68340517688731],\n            [-1.255370625617225, 48.68337710065936],\n            [-1.255381122496571, 48.68334850862071],\n            [-1.255388772784474, 48.68331952320788],\n            [-1.255392788731229, 48.68329637695996],\n            [-1.255774681197639, 48.68044555047212],\n            [-1.255775436103357, 48.6804394420496],\n            [-1.255776759137139, 48.68042436593752],\n            [-1.255817678500057, 48.67976790535147],\n            [-1.256326016806046, 48.67979000274778],\n            [-1.257487460532301, 48.67987241351359],\n            [-1.257509043298055, 48.67987371448476],\n            [-1.257553438418055, 48.67987495267268],\n            [-1.257597860774748, 48.67987426542614],\n            [-1.257642120139701, 48.67987165568791],\n            [-1.257686026982443, 48.67986713463374],\n            [-1.257729393282314, 48.67986072162394],\n            [-1.257772033333484, 48.67985244412073],\n            [-1.257813764540494, 48.67984233757046],\n            [-1.257854408200052, 48.67983044525218],\n            [-1.2578937902663, 48.67981681809177],\n            [-1.257931742096279, 48.67980151444409],\n            [-1.257968101172049, 48.67978459984343],\n            [-1.258002711796675, 48.67976614672216],\n            [-1.258035425761332, 48.67974623410112],\n            [-1.258066102978999, 48.67972494725067],\n            [-1.258094612085694, 48.6797023773263],\n            [-1.258120831001652, 48.67967862097737],\n            [-1.258144647455262, 48.67965377993387],\n            [-1.25816595946282, 48.67962796057051],\n            [-1.258184675765848, 48.67960127345115],\n            [-1.258200716221491, 48.67957383285543],\n            [-1.258214012145853, 48.67954575628944],\n            [-1.258215914647449, 48.67954112903778],\n            [-1.258235319105689, 48.67954490840184],\n            [-1.258278496227467, 48.67955185792504],\n            [-1.258322267282788, 48.67955692252567],\n            [-1.258366444832546, 48.67956008051561],\n            [-1.258410839696671, 48.67956131837155],\n            [-1.258455261764535, 48.67956063079275],\n            [-1.258499520808845, 48.67955802072343],\n            [-1.258543427300547, 48.6795534993408],\n            [-1.258586793220482, 48.67954708600646],\n            [-1.258629432864438, 48.67953880818411],\n            [-1.258671163638714, 48.67952870132157],\n            [-1.258711806841897, 48.679516808699],\n            [-1.258751188430047, 48.67950318124359],\n            [-1.258789139762224, 48.67948787731187],\n            [-1.258825498322687, 48.67947096243889],\n            [-1.258860108416657, 48.67945250905827],\n            [-1.25889282183747, 48.67943259619199],\n            [-1.258923498500819, 48.67941130911169],\n            [-1.258952007044625, 48.67938873897345],\n            [-1.258970179522208, 48.6793726259419],\n            [-1.259508158531588, 48.6788726661642],\n            [-1.260531080541965, 48.67826481635244],\n            [-1.260553223936203, 48.67825105360069],\n            [-1.260583899175491, 48.67822976607413],\n            [-1.260612406303829, 48.67820719552098],\n            [-1.260638623250343, 48.67818343859355],\n            [-1.260662437751514, 48.6781585970242],\n            [-1.260683747832134, 48.6781327771898],\n            [-1.260702462241856, 48.67810608965633],\n            [-1.260718500846261, 48.67807864870518],\n            [-1.260731794969083, 48.6780505718439],\n            [-1.260742287687058, 48.67802197930281],\n            [-1.260749934073482, 48.67799299352036],\n            [-1.260754701389963, 48.6779637386187],\n            [-1.260755015387471, 48.67796083696682],\n            [-1.260942392519242, 48.67614694120506],\n            [-1.262038765757438, 48.6761061401417],\n            [-1.262083021574569, 48.67610352868825],\n            [-1.262126924727063, 48.67609900593195],\n            [-1.262170287210067, 48.67609259124038],\n            [-1.262212923334138, 48.67608431208307],\n            [-1.262254650520724, 48.67607420391332],\n            [-1.26229529008342, 48.67606231001718],\n            [-1.262334667994232, 48.67604868132731],\n            [-1.262372615627867, 48.67603337620514],\n            [-1.262408970484392, 48.67601646019115],\n            [-1.262443576884957, 48.67599800572392],\n            [-1.262476286638703, 48.67597809182978],\n            [-1.262506959676812, 48.67595680378498],\n            [-1.262535464653012, 48.67593423274979],\n            [-1.262561679505521, 48.67591047537836],\n            [-1.262585491979813, 48.67588563340523],\n            [-1.262606800109374, 48.67585981320889],\n            [-1.262625512652329, 48.67583312535687],\n            [-1.262636801520249, 48.67581438357435],\n            [-1.262985549657119, 48.67519537451714],\n            [-1.262986581663659, 48.67519558880121],\n            [-1.263029755706899, 48.6752025365372],\n            [-1.263073523454186, 48.67520759932538],\n            [-1.263117697480602, 48.67521075548544],\n            [-1.263162088621066, 48.67521199150185],\n            [-1.263206506780996, 48.67521130208173],\n            [-1.263250761749766, 48.67520869017724],\n            [-1.263294664015808, 48.67520416697338],\n            [-1.263338025578029, 48.67519775183964],\n            [-1.263380660750961, 48.67518947224735],\n            [-1.263422386959969, 48.67517936365195],\n            [-1.263463025523204, 48.67516746934093],\n            [-1.26350240241657, 48.675153840249],\n            [-1.26354034901933, 48.67513853473933],\n            [-1.263576702835907, 48.67512161835387],\n            [-1.263611308191888, 48.67510316353281],\n            [-1.263644016900829, 48.67508324930414],\n            [-1.263674688898651, 48.67506196094543],\n            [-1.263703192843255, 48.67503938961831],\n            [-1.263729406677419, 48.67501563197825],\n            [-1.263753218150892, 48.67499078976088],\n            [-1.263774525301495, 48.67496496934576],\n            [-1.263793236891453, 48.6749382813013],\n            [-1.263807199868527, 48.6749143872068],\n            [-1.263977199700699, 48.67490805700896],\n            [-1.264021454362514, 48.6749054448069],\n            [-1.264065356294404, 48.67490092130777],\n            [-1.264108717496772, 48.67489450588234],\n            [-1.264151352285612, 48.67488622600327],\n            [-1.264193078088105, 48.67487611712706],\n            [-1.264233716223762, 48.67486422254258],\n            [-1.264273092670745, 48.67485059318562],\n            [-1.264311038809975, 48.67483528742036],\n            [-1.264347392147975, 48.67481837079011],\n            [-1.264381997012329, 48.67479991573594],\n            [-1.264414705218833, 48.67478000128694],\n            [-1.264445376705223, 48.67475871272154],\n            [-1.264473880131902, 48.67473614120228],\n            [-1.264500093443763, 48.67471238338545],\n            [-1.264523904392836, 48.67468754100737],\n            [-1.264545211019119, 48.67466172044841],\n            [-1.264563922087214, 48.67463503227753],\n            [-1.26457995747663, 48.67460759077899],\n            [-1.264593248525192, 48.67457951346255],\n            [-1.264603738322883, 48.67455092056046],\n            [-1.26461138195507, 48.67452193451291],\n            [-1.264616146695552, 48.67449267944294],\n            [-1.264618012145826, 48.67446328062571],\n            [-1.264616970322918, 48.67443386395166],\n            [-1.264521670159617, 48.67331149328753],\n            [-1.26451772567338, 48.67328218471744],\n            [-1.2645108953408, 48.67325310975828],\n            [-1.264501208415199, 48.67322439291285],\n            [-1.26448870638217, 48.67319615715049],\n            [-1.264473442781446, 48.67316852338006],\n            [-1.264455482978242, 48.67314160993265],\n            [-1.264434903882454, 48.67311553205433],\n            [-1.264411793619811, 48.6730904014134],\n            [-1.264386251154488, 48.67306632562152],\n            [-1.264358385864872, 48.67304340777338],\n            [-1.264328317075494, 48.67302174600504],\n            [-1.264296173546036, 48.67300143307394],\n            [-1.26426349460828, 48.67298333235118],\n            [-1.264292903629958, 48.67296291939118],\n            [-1.264321406107036, 48.67294034790674],\n            [-1.264347618554589, 48.6729165901216],\n            [-1.264371428728501, 48.67289174777182],\n            [-1.264392734672091, 48.67286592723771],\n            [-1.264411445152835, 48.67283923908814],\n            [-1.264427480052743, 48.67281179760725],\n            [-1.264440770711757, 48.67278372030469],\n            [-1.264451260221478, 48.67275512741267],\n            [-1.264458903668673, 48.67272614137135],\n            [-1.26446366832758, 48.67269688630382],\n            [-1.264465533800496, 48.67266748748512],\n            [-1.264464492103907, 48.67263807080567],\n            [-1.264445433092358, 48.67241359663118],\n            [-1.264441488721029, 48.67238428805649],\n            [-1.264434658554516, 48.67235521309079],\n            [-1.264424971845422, 48.67232649623701],\n            [-1.2644124700785, 48.67229826046444],\n            [-1.264397206792245, 48.67227062668198],\n            [-1.264379247350551, 48.6722437132208],\n            [-1.264363924977141, 48.6722242962807],\n            [-1.264369837059804, 48.67222524765848],\n            [-1.264413602350296, 48.67223030993612],\n            [-1.264457773845038, 48.67223346558038],\n            [-1.264502162389838, 48.67223470107821],\n            [-1.264546577901147, 48.67223401113854],\n            [-1.264590830179748, 48.67223139871611],\n            [-1.264634729725547, 48.67222687499806],\n            [-1.264678088549138, 48.67222045935593],\n            [-1.264720720976726, 48.67221217926343],\n            [-1.264762444445646, 48.6722020701779],\n            [-1.264803080285299, 48.67219017538928],\n            [-1.264842454483721, 48.67217654583395],\n            [-1.264880398431565, 48.67216123987713],\n            [-1.264916749644565, 48.67214432306294],\n            [-1.264951352459498, 48.67212586783319],\n            [-1.264984058700973, 48.67210595321775],\n            [-1.265014728314962, 48.67208466449577],\n            [-1.265295214657873, 48.67187675428409],\n            [-1.265323716069384, 48.67185418254843],\n            [-1.265349927477169, 48.67183042453221],\n            [-1.265373736641529, 48.67180558197224],\n            [-1.265395041610138, 48.67177976124976],\n            [-1.265413751154532, 48.67175307293444],\n            [-1.265429785161014, 48.67172563131103],\n            [-1.265443074973325, 48.67169755388996],\n            [-1.265453563686343, 48.67166896090398],\n            [-1.265461206390592, 48.67163997479351],\n            [-1.265465970363529, 48.67161071968189],\n            [-1.265467835209986, 48.67158132084453],\n            [-1.265466792949588, 48.67155190417179],\n            [-1.26546284805048, 48.6715225956304],\n            [-1.265456017410427, 48.67149352072368],\n            [-1.265446330284026, 48.67146480395435],\n            [-1.265433828157652, 48.67143656829138],\n            [-1.265418564571776, 48.67140893464325],\n            [-1.265400604891054, 48.67138202134031],\n            [-1.265380026025262, 48.67135594362828],\n            [-1.26535691609913, 48.67133081317456],\n            [-1.265331374075114, 48.67130673759013],\n            [-1.265303509329863, 48.67128381996879],\n            [-1.265273441185608, 48.67126215844558],\n            [-1.265241298399216, 48.67124184577679],\n            [-1.265207218610704, 48.67122296894281],\n            [-1.265181932729216, 48.67121073151411],\n            [-1.26544992960151, 48.67113685393213],\n            [-1.265483673322028, 48.67112682924937],\n            [-1.265523046503183, 48.67111319945916],\n            [-1.265560989441354, 48.67109789327587],\n            [-1.265597339656612, 48.6710809762445],\n            [-1.265631941490051, 48.67106252080784],\n            [-1.265664646770175, 48.67104260599668],\n            [-1.265695315447493, 48.67102131709076],\n            [-1.265723816194515, 48.6709987452544],\n            [-1.265750026967167, 48.67097498714516],\n            [-1.26577383552877, 48.67095014450042],\n            [-1.265795139929453, 48.67092432370192],\n            [-1.265800658743919, 48.6709169129107],\n            [-1.266268127253321, 48.67027436086077],\n            [-1.26652712376236, 48.67015042443713],\n            [-1.266537827464165, 48.67014519596951],\n            [-1.266572428308455, 48.67012674024764],\n            [-1.266605132607404, 48.67010682516678],\n            [-1.266635800315756, 48.6700855360077],\n            [-1.266664300110141, 48.67006296393597],\n            [-1.266690509950619, 48.67003920560994],\n            [-1.266714317604487, 48.6700143627682],\n            [-1.266735621125694, 48.66998854179308],\n            [-1.26675432929215, 48.66996185325534],\n            [-1.266770361995815, 48.66993441144088],\n            [-1.266781617536614, 48.66991107862092],\n            [-1.26709706868102, 48.6691899448854],\n            [-1.267099101671456, 48.66918520011917],\n            [-1.267109588918707, 48.66915660697637],\n            [-1.267117230286465, 48.66912762075003],\n            [-1.267121993057743, 48.66909836556419],\n            [-1.267123856842889, 48.66906896669441],\n            [-1.267122813665744, 48.66903955003123],\n            [-1.267118867998511, 48.66901024154139],\n            [-1.267112036742171, 48.668981166728],\n            [-1.267102349154019, 48.66895245009329],\n            [-1.267089846722509, 48.6689242146057],\n            [-1.267074582989072, 48.66889658117283],\n            [-1.26705662331944, 48.66886966812444],\n            [-1.267036044623013, 48.6688435907049],\n            [-1.267012935023819, 48.6688184605804],\n            [-1.267001136790888, 48.66880733967888],\n            [-1.26709498816566, 48.66863240418627],\n            [-1.267096103003242, 48.66863030978445],\n            [-1.267109391066872, 48.66860223216375],\n            [-1.267119878186804, 48.6685736390187],\n            [-1.267127519459939, 48.66854465279044],\n            [-1.267132282170105, 48.66851539760289],\n            [-1.267134145927533, 48.66848599873167],\n            [-1.267133102756484, 48.66845658206735],\n            [-1.267129157128979, 48.66842727357661],\n            [-1.26712232594588, 48.66839819876256],\n            [-1.267112638464163, 48.6683694821275],\n            [-1.267100136171822, 48.6683412466398],\n            [-1.267084872609707, 48.66831361320713],\n            [-1.267066913142794, 48.66828670015922],\n            [-1.2670463346796, 48.6682606227404],\n            [-1.267023225343196, 48.66823549261689],\n            [-1.267002479112542, 48.66821568904371],\n            [-1.266617812181774, 48.66786873513859],\n            [-1.266669588897409, 48.66768512003426],\n            [-1.26693179181129, 48.66758462870082],\n            [-1.266963723154899, 48.66757159786585],\n            [-1.267000070349074, 48.66755468038519],\n            [-1.267034669241165, 48.66753622452027],\n            [-1.267067371672168, 48.66751630930367],\n            [-1.267098037605001, 48.66749502001698],\n            [-1.267126535723546, 48.66747244782587],\n            [-1.267152743995359, 48.66744868938964],\n            [-1.267176550194331, 48.66742384644714],\n            [-1.267197852380686, 48.66739802538122],\n            [-1.267216559338009, 48.66737133676294],\n            [-1.267232590963456, 48.66734389487858],\n            [-1.267245878611019, 48.66731581723936],\n            [-1.267256365384948, 48.66728722407913],\n            [-1.267264006384001, 48.66725823783908],\n            [-1.267268768892849, 48.66722898264309],\n            [-1.267270240571188, 48.66721126166707],\n            [-1.267298620965083, 48.66667768611518],\n            [-1.26735791930588, 48.6666754759064],\n            [-1.267402166546712, 48.66667286239755],\n            [-1.267446060986854, 48.66666833760091],\n            [-1.267489414658827, 48.66666192089274],\n            [-1.267532041910835, 48.6666536397512],\n            [-1.267573760202376, 48.66664352963817],\n            [-1.267614390885095, 48.66663163384799],\n            [-1.267653759969027, 48.66661800332135],\n            [-1.267691698866751, 48.66660269642768],\n            [-1.267728045115641, 48.66658577871493],\n            [-1.26776264307376, 48.66656732262895],\n            [-1.267795344586458, 48.66654740720319],\n            [-1.26782600962011, 48.66652611772019],\n            [-1.267854506862756, 48.66650354534657],\n            [-1.267880714285747, 48.66647978674213],\n            [-1.267904519666354, 48.66645494364671],\n            [-1.267925821068476, 48.66642912244365],\n            [-1.267944527278977, 48.66640243370469],\n            [-1.267960558198249, 48.66637499171644],\n            [-1.267973845183201, 48.66634691399097],\n            [-1.267984331341243, 48.6663183207621],\n            [-1.26799197177335, 48.66628933447142],\n            [-1.26799673376697, 48.66626007924314],\n            [-1.267998596935429, 48.66623068035302],\n            [-1.267997553305467, 48.66620126369171],\n            [-1.267977741906345, 48.66596809157402],\n            [-1.269352937126664, 48.66515129862422],\n            [-1.269375314319783, 48.66513739035384],\n            [-1.269405977824798, 48.66511610044593],\n            [-1.26943447355915, 48.66509352767707],\n            [-1.269460679500847, 48.665069768709],\n            [-1.269484483433392, 48.66504492528289],\n            [-1.269505783426921, 48.66501910378351],\n            [-1.269524488274272, 48.66499241478393],\n            [-1.269540517881913, 48.66496497257191],\n            [-1.269553803612149, 48.66493689466027],\n            [-1.269564288577705, 48.66490830128401],\n            [-1.269571927884932, 48.66487931488508],\n            [-1.269576688825873, 48.66485005958814],\n            [-1.269578551018393, 48.66482066066932],\n            [-1.269577506493447, 48.66479124401941],\n            [-1.269573559728892, 48.66476193560495],\n            [-1.269566727630405, 48.66473286092881],\n            [-1.2695570394589, 48.66470414449271],\n            [-1.269544536705247, 48.66467590926414],\n            [-1.269529272912537, 48.66464827614971],\n            [-1.269516555865262, 48.66462874223586],\n            [-1.269080581708006, 48.66400036865976],\n            [-1.269136517016372, 48.66390518457099],\n            [-1.270071425167167, 48.66361428536391],\n            [-1.270077436812189, 48.66361239089733],\n            [-1.270116802864827, 48.66359875952166],\n            [-1.270154738734992, 48.66358345180932],\n            [-1.270191081973051, 48.6635665333118],\n            [-1.270225676949994, 48.66354807647826],\n            [-1.270258375523863, 48.66352816034532],\n            [-1.270289037673682, 48.66350687019871],\n            [-1.270317532099801, 48.66348429720772],\n            [-1.270343736785662, 48.66346053803488],\n            [-1.270367539520245, 48.66343569442244],\n            [-1.270388838378742, 48.66340987275595],\n            [-1.270407542158987, 48.66338318360918],\n            [-1.270423570771704, 48.66335574127042],\n            [-1.270436855583734, 48.66332766325327],\n            [-1.27044733971164, 48.6632990697928],\n            [-1.27045497826543, 48.66327008333164],\n            [-1.270459738540324, 48.66324082799464],\n            [-1.270461600157005, 48.66321142905804],\n            [-1.270460555148925, 48.66318201241276],\n            [-1.27045660799602, 48.66315270402532],\n            [-1.270449775605647, 48.66312362939846],\n            [-1.270440087239897, 48.66309491303365],\n            [-1.270427584390641, 48.66306667789814],\n            [-1.270412320601029, 48.66303904489801],\n            [-1.270394361237073, 48.66301213236121],\n            [-1.270392897659034, 48.66301013257818],\n            [-1.270106857063984, 48.66262174108219],\n            [-1.269687082163444, 48.66164283245227],\n            [-1.26981653655579, 48.66161560307815],\n            [-1.26982337741421, 48.66161413770616],\n            [-1.269865091064444, 48.66160402675553],\n            [-1.269905717133693, 48.66159213014868],\n            [-1.269945081651458, 48.66157849882996],\n            [-1.2699830160499, 48.6615631911723],\n            [-1.270019357885781, 48.66154627272677],\n            [-1.270053951535966, 48.66152781594239],\n            [-1.27008664886429, 48.66150789985558],\n            [-1.270117309855017, 48.66148660975182],\n            [-1.270145803213549, 48.66146403680027],\n            [-1.270172006927848, 48.66144027766325],\n            [-1.270195808791048, 48.66141543408286],\n            [-1.270217106882119, 48.66138961244455],\n            [-1.270235810002012, 48.66136292332196],\n            [-1.270251838064629, 48.66133548100326],\n            [-1.27026512243887, 48.66130740300186],\n            [-1.270275606243274, 48.66127880955306],\n            [-1.27028324458919, 48.66124982309909],\n            [-1.270288004772757, 48.66122056776498],\n            [-1.270289866415058, 48.66119116882693],\n            [-1.270288821549404, 48.66116175217586],\n            [-1.270269740890051, 48.66093727878231],\n            [-1.270265794024517, 48.66090797038357],\n            [-1.270258962049411, 48.66087889574062],\n            [-1.270249274225088, 48.66085017935512],\n            [-1.27023677204102, 48.66082194419423],\n            [-1.270233182056131, 48.66081491628377],\n            [-1.269597700919039, 48.65960383901003],\n            [-1.269609053845238, 48.65960215822248],\n            [-1.269651674764392, 48.65959387628842],\n            [-1.269693386773578, 48.65958376539869],\n            [-1.26973401125136, 48.65957186885098],\n            [-1.269773374234373, 48.65955823758939],\n            [-1.269811307161233, 48.65954292998628],\n            [-1.269847647595015, 48.6595260115928],\n            [-1.269882239918561, 48.65950755485757],\n            [-1.269914936001422, 48.65948763881691],\n            [-1.269945595833175, 48.65946634875604],\n            [-1.269974088124182, 48.65944377584389],\n            [-1.270000290866957, 48.65942001674278],\n            [-1.270024091858895, 48.65939517319449],\n            [-1.270045389182539, 48.65936935158436],\n            [-1.27006409164238, 48.65934266248593],\n            [-1.270080119154757, 48.65931522018735],\n            [-1.270093403091208, 48.65928714220188],\n            [-1.270103886572191, 48.65925854876459],\n            [-1.270111524710154, 48.65922956231795],\n            [-1.270116284802394, 48.65920030698675],\n            [-1.270118146470274, 48.65917090804727],\n            [-1.270117101747046, 48.65914149139039],\n            [-1.270113155111408, 48.65911218298265],\n            [-1.270106323468496, 48.65908310832697],\n            [-1.270096636077227, 48.65905439192488],\n            [-1.270084134425273, 48.65902615674372],\n            [-1.270080556530213, 48.65901915158539],\n            [-1.269411075891587, 48.65774300306033],\n            [-1.269565853591863, 48.65675669477042],\n            [-1.269567601365169, 48.65674373709332],\n            [-1.269569463262825, 48.65671433815771],\n            [-1.26956841891158, 48.65668492149074],\n            [-1.269564472788411, 48.65665561305902],\n            [-1.269557641796359, 48.6566265383656],\n            [-1.269547955191541, 48.65659782191214],\n            [-1.269535454458113, 48.65656958666628],\n            [-1.269520193130551, 48.6565419535347],\n            [-1.269502236563938, 48.65651504084558],\n            [-1.269481661654421, 48.65648896384202],\n            [-1.269458556510084, 48.65646383418835],\n            [-1.269433020072759, 48.65643975949211],\n            [-1.269405161695294, 48.65641684284337],\n            [-1.269375100672503, 48.65639518237292],\n            [-1.269342965730835, 48.65637487083263],\n            [-1.269308894476717, 48.65635599519793],\n            [-1.269273032807683, 48.65633863629557],\n            [-1.269235534287354, 48.65632286845738],\n            [-1.269196559487846, 48.65630875920222],\n            [-1.26916262853336, 48.6562981834199],\n            [-1.269136495008136, 48.65629061484636],\n            [-1.268988205294628, 48.65611944577924],\n            [-1.269010291085044, 48.65610194767583],\n            [-1.269036492542108, 48.65607818878949],\n            [-1.26906029242867, 48.65605334543556],\n            [-1.269081588832051, 48.65602752399849],\n            [-1.269100290560656, 48.65600083505112],\n            [-1.269116317533965, 48.65597339288081],\n            [-1.269129601125851, 48.65594531500052],\n            [-1.269140084458194, 48.65591672164472],\n            [-1.269147722644097, 48.65588773525547],\n            [-1.269152482980682, 48.65585847995746],\n            [-1.26915434508823, 48.65582908102675],\n            [-1.269153300998136, 48.65579966435418],\n            [-1.269134227440882, 48.65557519068673],\n            [-1.269130281657762, 48.65554588223777],\n            [-1.269123451067449, 48.65551680751623],\n            [-1.269113764924241, 48.65548809102384],\n            [-1.269101264710517, 48.65545985572838],\n            [-1.269086003958075, 48.6554322225368],\n            [-1.269068048020019, 48.65540530977762],\n            [-1.26904747378966, 48.65537923269409],\n            [-1.269024369371941, 48.65535410295092],\n            [-1.268998833705899, 48.65533002815609],\n            [-1.268970976140904, 48.65530711139996],\n            [-1.268940915968353, 48.65528545081391],\n            [-1.268908781911078, 48.65526513915032],\n            [-1.268874711571748, 48.65524626338509],\n            [-1.268838850843701, 48.65522890434549],\n            [-1.268801353286841, 48.655213136364],\n            [-1.268762379469088, 48.65519902696008],\n            [-1.268757269236631, 48.65513887940286],\n            [-1.268753323707448, 48.65510957094008],\n            [-1.268746493394273, 48.65508049619511],\n            [-1.268736807550346, 48.65505177967003],\n            [-1.268724307656646, 48.65502354433265],\n            [-1.268709047243712, 48.65499591108996],\n            [-1.26869109166311, 48.65496899827094],\n            [-1.268670517806672, 48.6549429211189],\n            [-1.268647413777702, 48.65491779129897],\n            [-1.268621878513618, 48.65489371641935],\n            [-1.268594021362013, 48.65487079957093],\n            [-1.268563961612583, 48.65484913888533],\n            [-1.268531827986263, 48.65482882711538],\n            [-1.268497758083984, 48.65480995123749],\n            [-1.268461897797104, 48.6547925920794],\n            [-1.26842440068369, 48.6547768239741],\n            [-1.268385427309762, 48.65476271444152],\n            [-1.268380317572448, 48.65470256686568],\n            [-1.268361247881022, 48.65447809305238],\n            [-1.268323109008782, 48.65402914540593],\n            [-1.268319163819607, 48.65399983692596],\n            [-1.26831233390811, 48.6539707621529],\n            [-1.268302648525754, 48.65394204558885],\n            [-1.268290149151539, 48.6539138102019],\n            [-1.268274889313825, 48.65388617689929],\n            [-1.26825693436168, 48.65385926401017],\n            [-1.268236361184278, 48.65383318677816],\n            [-1.268213257881987, 48.65380805686877],\n            [-1.268187723389107, 48.65378398189057],\n            [-1.268159867049952, 48.65376106493483],\n            [-1.268129808150682, 48.65373940413363],\n            [-1.268097675408675, 48.65371909224042],\n            [-1.268063606420984, 48.65370021623199],\n            [-1.268027747075171, 48.65368285693667],\n            [-1.267990250925186, 48.65366708868808],\n            [-1.267951278532913, 48.65365297900674],\n            [-1.267910996781438, 48.65364058831106],\n            [-1.267889278484877, 48.65363502030965],\n            [-1.267878490865959, 48.65362134640148],\n            [-1.267855387839747, 48.65359621641954],\n            [-1.267829853625704, 48.65357214136124],\n            [-1.267801997566924, 48.65354922431813],\n            [-1.26777193894839, 48.65352756342274],\n            [-1.267739806486219, 48.65350725142885],\n            [-1.267705737776346, 48.65348837531378],\n            [-1.267669878705053, 48.65347101590619],\n            [-1.267632382825192, 48.65345524754026],\n            [-1.267593410697427, 48.65344113773701],\n            [-1.267588302041469, 48.65338099012033],\n            [-1.267584357331311, 48.65335168161379],\n            [-1.267577527932584, 48.65332260679559],\n            [-1.267567843094553, 48.65329389016819],\n            [-1.267555344293898, 48.65326565469983],\n            [-1.267540085056544, 48.65323802129807],\n            [-1.26752213072894, 48.65321110829264],\n            [-1.267501558197581, 48.65318503092753],\n            [-1.267478455560138, 48.65315990086886],\n            [-1.267452921747994, 48.65313582572582],\n            [-1.267425066102583, 48.65311290859039],\n            [-1.267395007907111, 48.65309124759547],\n            [-1.267362875875895, 48.65307093549527],\n            [-1.267328807603012, 48.65305205926753],\n            [-1.267292948972847, 48.65303469974147],\n            [-1.267255453536431, 48.65301893125173],\n            [-1.267216481852471, 48.65300482131981],\n            [-1.267211373691557, 48.65294467368454],\n            [-1.267207429235275, 48.65291536516409],\n            [-1.267200600113647, 48.6528862903226],\n            [-1.267190915574816, 48.65285757366248],\n            [-1.267178417094186, 48.65282933815214],\n            [-1.267163158196261, 48.65280170469937],\n            [-1.26714520422607, 48.65277479163404],\n            [-1.267124632068633, 48.65274871420046],\n            [-1.267101529819878, 48.65272358406501],\n            [-1.267075996409632, 48.65269950883732],\n            [-1.267048141177611, 48.65267659160956],\n            [-1.2670180834052, 48.65265493051508],\n            [-1.26698595180492, 48.65263461830857],\n            [-1.266951883969008, 48.6526157419682],\n            [-1.266916025780009, 48.65259838232363],\n            [-1.266878530786959, 48.6525826137101],\n            [-1.266839559546844, 48.65256850364954],\n            [-1.266799278937716, 48.6525561125621],\n            [-1.266777561232482, 48.65255054434953],\n            [-1.266766774148376, 48.6525368703357],\n            [-1.266743672175721, 48.65251174012775],\n            [-1.266718139044312, 48.65248766481987],\n            [-1.266690284092646, 48.65246474750482],\n            [-1.266660226600911, 48.65244308631618],\n            [-1.266628095280507, 48.65242277400903],\n            [-1.266594027722372, 48.65240389756194],\n            [-1.266558169807894, 48.65238653780515],\n            [-1.266520675084968, 48.65237076907427],\n            [-1.266481704109341, 48.6523566588918],\n            [-1.266441423758047, 48.65234426767835],\n            [-1.266419706183908, 48.65233869939787],\n            [-1.266408919242508, 48.65232502535014],\n            [-1.266385817545932, 48.65229989506964],\n            [-1.26636028469334, 48.65227581968172],\n            [-1.26633243002203, 48.6522529022793],\n            [-1.26630237281103, 48.65223124099649],\n            [-1.266270241770462, 48.65221092858866],\n            [-1.266236174490065, 48.6521920520349],\n            [-1.266200316850128, 48.65217469216588],\n            [-1.266162822397325, 48.65215892331765],\n            [-1.266123851686207, 48.65214481301329],\n            [-1.266083571592707, 48.65213242167385],\n            [-1.266042154599092, 48.65212180235978],\n            [-1.265999778055658, 48.65211300054336],\n            [-1.265956623420752, 48.65210605391435],\n            [-1.265912875484958, 48.65210099221865],\n            [-1.265868721578667, 48.6520978371305],\n            [-1.265824350770799, 48.65209660216021],\n            [-1.265779953058792, 48.65209729259588],\n            [-1.265565234978596, 48.65210529493217],\n            [-1.265564010075018, 48.65210351771958],\n            [-1.265558099721171, 48.65209516997105],\n            [-1.265537528664513, 48.65206909225135],\n            [-1.265514427520835, 48.65204396179471],\n            [-1.265488895215245, 48.65201988621218],\n            [-1.265461041082685, 48.65199696859754],\n            [-1.265430984399902, 48.65197530708571],\n            [-1.265398853874662, 48.65195499443319],\n            [-1.265364787094685, 48.65193611762],\n            [-1.265328929937941, 48.65191875747796],\n            [-1.265291435949048, 48.65190298834428],\n            [-1.265252465680695, 48.65188887774331],\n            [-1.265212186006839, 48.65187648609732],\n            [-1.265170769407908, 48.65186586646805],\n            [-1.26512839323258, 48.65185706432921],\n            [-1.265085238937582, 48.65185011737188],\n            [-1.2650414913121, 48.6518450553434],\n            [-1.264997337685145, 48.65184189991935],\n            [-1.26495296712442, 48.65184066461158],\n            [-1.264908569626382, 48.65184135470968],\n            [-1.264864335302858, 48.65184396725858],\n            [-1.264820453567093, 48.65184849107122],\n            [-1.264777112322459, 48.65185490677651],\n            [-1.264734497158342, 48.65186318690206],\n            [-1.264692790554871, 48.6518732959921],\n            [-1.264652171102629, 48.65188519075899],\n            [-1.264612812736543, 48.65189882026875],\n            [-1.264574883992418, 48.65191412615918],\n            [-1.264538547284675, 48.65193104288948],\n            [-1.26450395821095, 48.6519494980213],\n            [-1.264471264885723, 48.65196941252851],\n            [-1.264440607306687, 48.65199070113582],\n            [-1.26441211675427, 48.65201327268374],\n            [-1.264385915230399, 48.65203703051932],\n            [-1.264362114935544, 48.65206187290922],\n            [-1.264340817788459, 48.65208769347618],\n            [-1.264322114989449, 48.65211438165397],\n            [-1.264306086630169, 48.65214182316092],\n            [-1.264301626188233, 48.65215055735173],\n            [-1.264166032643881, 48.65242531464685],\n            [-1.264040002301679, 48.65262002460328],\n            [-1.264033310772368, 48.65261274501855],\n            [-1.264007778887022, 48.65258866910688],\n            [-1.263979925114314, 48.65256575113308],\n            [-1.263949868729473, 48.65254408923357],\n            [-1.263917738439084, 48.65252377616649],\n            [-1.263883671829691, 48.65250489891371],\n            [-1.263847814778663, 48.65248753830879],\n            [-1.263810320830177, 48.65247176869106],\n            [-1.263771350536644, 48.65245765758685],\n            [-1.263731070772201, 48.65244526542068],\n            [-1.263689654017675, 48.65243464525645],\n            [-1.263647277622342, 48.65242584257015],\n            [-1.263604123043931, 48.65241889505523],\n            [-1.263560375072805, 48.65241383246144],\n            [-1.263516221039516, 48.65241067646678],\n            [-1.263510334167446, 48.65241051249878],\n            [-1.263386915314049, 48.65226762841789],\n            [-1.263223605410788, 48.65181911054817],\n            [-1.263221011555977, 48.65181222543225],\n            [-1.263208515563496, 48.65178398948688],\n            [-1.263193259163793, 48.65175635550361],\n            [-1.263175307690865, 48.65172944181417],\n            [-1.263154738018979, 48.65170336366604],\n            [-1.263131638233894, 48.6516782327284],\n            [-1.263106107254464, 48.65165415661426],\n            [-1.263078254410093, 48.6516312384198],\n            [-1.263048198971974, 48.65160957628235],\n            [-1.263016069642637, 48.65158926296111],\n            [-1.262982004004587, 48.65157038543902],\n            [-1.262946147930937, 48.65155302455089],\n            [-1.262908654961708, 48.65153725463703],\n            [-1.262869685645174, 48.65152314322529],\n            [-1.262829406851174, 48.65151075074139],\n            [-1.26278799105652, 48.65150013025051],\n            [-1.262745615606171, 48.65149132723012],\n            [-1.262702461954199, 48.65148437937527],\n            [-1.262658714886611, 48.65147931643676],\n            [-1.2626145617302, 48.65147616009445],\n            [-1.262570191550649, 48.65147492386388],\n            [-1.262525794342739, 48.65147561303865],\n            [-1.262481560217137, 48.65147822466767],\n            [-1.262437678586148, 48.65148274756785],\n            [-1.262394337352786, 48.65148916237199],\n            [-1.262369354803716, 48.65149401595424],\n            [-1.262325885753237, 48.65144382511859],\n            [-1.26231585801224, 48.65132561076925],\n            [-1.262311916535395, 48.65129630207705],\n            [-1.262305090463347, 48.65126722694063],\n            [-1.262295409031111, 48.65123850986361],\n            [-1.262282913700821, 48.65121027381619],\n            [-1.262267657983531, 48.65118263970845],\n            [-1.262249707210603, 48.65115572587305],\n            [-1.262229138253366, 48.65112964755771],\n            [-1.26220603919404, 48.65110451643245],\n            [-1.262180508948863, 48.65108044011111],\n            [-1.26215265684388, 48.65105752169075],\n            [-1.262122602147209, 48.65103585930966],\n            [-1.26209047355812, 48.65101554572809],\n            [-1.262056408655981, 48.65099666793008],\n            [-1.262020553310768, 48.65097930675158],\n            [-1.261983061059364, 48.65096353653421],\n            [-1.261944092446987, 48.6509494248071],\n            [-1.261903814340457, 48.65093703199729],\n            [-1.26188209787623, 48.65093146285618],\n            [-1.261871312470162, 48.65091778837994],\n            [-1.261848213686936, 48.65089265718218],\n            [-1.261822683720535, 48.65086858078079],\n            [-1.261794831895948, 48.6508456622731],\n            [-1.261764777479932, 48.65082399979784],\n            [-1.261732649170679, 48.65080368611563],\n            [-1.261698584546278, 48.65078480821095],\n            [-1.261662729475606, 48.65076744692023],\n            [-1.261625237494306, 48.6507516765856],\n            [-1.261586269146418, 48.65073756473651],\n            [-1.261545991297701, 48.65072517180074],\n            [-1.261504576420833, 48.65071455084539],\n            [-1.261462201857035, 48.65070574734993],\n            [-1.261419049056143, 48.65069879901119],\n            [-1.261375302800984, 48.65069373558247],\n            [-1.261331150414657, 48.6506905787454],\n            [-1.261286780959627, 48.6506893420178],\n            [-1.261242384427537, 48.65069003069527],\n            [-1.26056481687667, 48.6507152553984],\n            [-1.260520583317875, 48.65071786627048],\n            [-1.260476702173916, 48.65072238841985],\n            [-1.26043336134563, 48.65072880248253],\n            [-1.260431488533844, 48.65072912449299],\n            [-1.259874123426037, 48.65082551819031],\n            [-1.259833381146567, 48.6508334744922],\n            [-1.259791674411981, 48.65084358179891],\n            [-1.259751054632241, 48.65085547482908],\n            [-1.259711695744052, 48.65086910265617],\n            [-1.259709832200713, 48.65086980282769],\n            [-1.259459122500573, 48.65096434597109],\n            [-1.25945118691998, 48.65095686172099],\n            [-1.259423336127008, 48.65093394263692],\n            [-1.259393282679617, 48.65091227953973],\n            [-1.259361155271703, 48.65089196519268],\n            [-1.259327091477558, 48.65087308658296],\n            [-1.259291237162501, 48.65085572455023],\n            [-1.259253745858919, 48.65083995343969],\n            [-1.259214778107973, 48.65082584078413],\n            [-1.259174500772866, 48.65081344701476],\n            [-1.259133086324076, 48.65080282520225],\n            [-1.259090712101005, 48.65079402082975],\n            [-1.259047559551991, 48.6507870715979],\n            [-1.259003813458803, 48.65078200726371],\n            [-1.258959661143879, 48.65077884951278],\n            [-1.258915291669305, 48.65077761186679],\n            [-1.258870895026822, 48.65077829962532],\n            [-1.258599820364705, 48.65078838611784],\n            [-1.258422610617829, 48.65077146742679],\n            [-1.258208110623003, 48.65052577293941],\n            [-1.258081668658664, 48.65038094134821],\n            [-1.258062005235674, 48.65035978860352],\n            [-1.258036477352027, 48.65033571135761],\n            [-1.258008627547584, 48.65031279192861],\n            [-1.257978575080649, 48.65029112845951],\n            [-1.257946448640701, 48.65027081371486],\n            [-1.257912385798155, 48.65025193468377],\n            [-1.257876532414253, 48.65023457220759],\n            [-1.257839042017106, 48.65021880063346],\n            [-1.257800075144298, 48.65020468749621],\n            [-1.257766150703821, 48.65019410833483],\n            [-1.257742449690629, 48.6501872406014],\n            [-1.257729796980189, 48.65017119625846],\n            [-1.257706700608994, 48.65014606422444],\n            [-1.257702029481069, 48.65014165847588],\n            [-1.257708711670491, 48.65014213646401],\n            [-1.257753080554858, 48.6501433745773],\n            [-1.257797476652176, 48.65014268725187],\n            [-1.258475037877902, 48.65011747891333],\n            [-1.259152598424431, 48.65009226656781],\n            [-1.259582154246484, 48.65007628050577],\n            [-1.259607682738344, 48.65010035740767],\n            [-1.259635533153758, 48.65012327644822],\n            [-1.259665586234122, 48.65014493948303],\n            [-1.25969771328784, 48.65016525374578],\n            [-1.259731776741737, 48.65018413224618],\n            [-1.259767630730155, 48.65020149414186],\n            [-1.259805121718989, 48.65021726508498],\n            [-1.259844089164099, 48.6502313775403],\n            [-1.259884366198087, 48.65024377107482],\n            [-1.259925780345239, 48.65025439261614],\n            [-1.259968154259916, 48.6502631966801],\n            [-1.260011306486668, 48.65027014556553],\n            [-1.260055052236131, 48.6502752095152],\n            [-1.260099204177774, 48.65027836684406],\n            [-1.260143573241097, 48.65027960403166],\n            [-1.260187969425965, 48.65027891577989],\n            [-1.260366799764803, 48.65027225915025],\n            [-1.260916312994063, 48.65042943997123],\n            [-1.260919743033335, 48.65043041367211],\n            [-1.260961157552769, 48.65044103483906],\n            [-1.261003531805895, 48.65044983852],\n            [-1.261046684335785, 48.6504567870153],\n            [-1.261090430351795, 48.65046185056956],\n            [-1.261134582522234, 48.65046500749948],\n            [-1.261178951775666, 48.65046624428603],\n            [-1.261223348111114, 48.65046555563313],\n            [-1.261267581411516, 48.65046294448968],\n            [-1.261311462258052, 48.65045842203734],\n            [-1.261354802741415, 48.65045200764241],\n            [-1.261397417266263, 48.6504437287731],\n            [-1.261439123346553, 48.65043362088157],\n            [-1.261479742386504, 48.65042172725261],\n            [-1.261519100445716, 48.65040809881771],\n            [-1.261522344266088, 48.65040687664039],\n            [-1.262041823126057, 48.6502098958564],\n            [-1.262220652974087, 48.65020323633309],\n            [-1.262264885992075, 48.65020062480458],\n            [-1.262308766520086, 48.6501961019702],\n            [-1.262352106650231, 48.65018968719788],\n            [-1.262394720788729, 48.65018140795747],\n            [-1.262436426451212, 48.65017129970271],\n            [-1.262477045043402, 48.65015940572],\n            [-1.262516402627174, 48.65014577694229],\n            [-1.262554330664245, 48.65013047173147],\n            [-1.262590666738594, 48.65011355562835],\n            [-1.262625255251808, 48.65009510107183],\n            [-1.262657948089665, 48.6500751870888],\n            [-1.262688605255711, 48.65005389895571],\n            [-1.262717095471677, 48.6500313278333],\n            [-1.262743296739013, 48.65000757037614],\n            [-1.262767096861346, 48.64998272831905],\n            [-1.262788393925038, 48.64995690804089],\n            [-1.262807096735599, 48.6499302201095],\n            [-1.262823125207908, 48.64990277880811],\n            [-1.262836410709447, 48.64987470164572],\n            [-1.26284689635386, 48.64984610885379],\n            [-1.26285453724438, 48.64981712287205],\n            [-1.262859300666517, 48.64978786782335],\n            [-1.262861166227403, 48.64975846898275],\n            [-1.262860125943583, 48.64972905224062],\n            [-1.262855023324356, 48.64966890439776],\n            [-1.262891358964173, 48.64965198819876],\n            [-1.262897111337971, 48.64964891899226],\n            [-1.262920546885713, 48.64966373641364],\n            [-1.262954611209495, 48.64968261395649],\n            [-1.262990465952789, 48.64969997484421],\n            [-1.263027957578233, 48.64971574473321],\n            [-1.263066925538972, 48.64972985609289],\n            [-1.263107202965406, 48.64974224849479],\n            [-1.263148617380163, 48.64975286887157],\n            [-1.263190991436487, 48.64976167174392],\n            [-1.263234143678067, 48.64976861941564],\n            [-1.263277889315779, 48.64977368213501],\n            [-1.263322041019452, 48.64977683822207],\n            [-1.263366409719626, 48.64977807416159],\n            [-1.263410805417724, 48.64977738466101],\n            [-1.263455037999421, 48.6497747726729],\n            [-1.263498918048915, 48.6497702493826],\n            [-1.263542257660395, 48.64976383415988],\n            [-1.263584871242218, 48.64975555447652],\n            [-1.263626576312336, 48.64974544578834],\n            [-1.263667194279345, 48.64973355138332],\n            [-1.263706551207462, 48.6497199221963],\n            [-1.2637444785613, 48.64970461659112],\n            [-1.263780813927815, 48.64968770011005],\n            [-1.263815401711532, 48.64966924519371],\n            [-1.263848093801447, 48.64964933087056],\n            [-1.263878750204264, 48.6496280424184],\n            [-1.26390723964503, 48.64960547099938],\n            [-1.263933440128433, 48.64958171326932],\n            [-1.263957239461497, 48.64955687096427],\n            [-1.263978535733963, 48.64953105046413],\n            [-1.263997237754635, 48.64950436233774],\n            [-1.264013265442112, 48.64947692086908],\n            [-1.264026550166852, 48.64944884356775],\n            [-1.264037035045897, 48.64942025066615],\n            [-1.264044675186058, 48.6493912646042],\n            [-1.264049437875681, 48.64936200950522],\n            [-1.264050037679547, 48.64935619542077],\n            [-1.264070627781031, 48.6491356083739],\n            [-1.264679263045339, 48.64925883500618],\n            [-1.264695854476627, 48.64926204163707],\n            [-1.264739006497544, 48.64926898874229],\n            [-1.264782751852183, 48.6492740508872],\n            [-1.264826903211711, 48.64927720639443],\n            [-1.264871271508188, 48.64927844175122],\n            [-1.264915666744675, 48.64927775166751],\n            [-1.264959898808886, 48.64927513909835],\n            [-1.265003778287217, 48.64927061523151],\n            [-1.265047117276275, 48.64926419943933],\n            [-1.265089730187134, 48.64925591919604],\n            [-1.265131434540705, 48.64924580995967],\n            [-1.265172051748442, 48.64923391502076],\n            [-1.265211407877758, 48.64922028531639],\n            [-1.265249334397003, 48.64920497921249],\n            [-1.265285668896492, 48.64918806225357],\n            [-1.265320255784705, 48.64916960688235],\n            [-1.265352946954017, 48.64914969212915],\n            [-1.265383602415446, 48.64912840327354],\n            [-1.265412090898079, 48.64910583147959],\n            [-1.265438290410399, 48.64908207340465],\n            [-1.265462088763887, 48.64905723078611],\n            [-1.265483384052379, 48.6490314100054],\n            [-1.265502085088999, 48.64900472163245],\n            [-1.26551811179624, 48.64897727995241],\n            [-1.265531395549058, 48.64894920247567],\n            [-1.26554187946869, 48.64892060943532],\n            [-1.265549518665685, 48.64889162327205],\n            [-1.265554280432846, 48.64886236810948],\n            [-1.265556144384359, 48.64883296922316],\n            [-1.265555102543665, 48.64880355250369],\n            [-1.265551159377112, 48.64877424391793],\n            [-1.265544331775008, 48.64874516896948],\n            [-1.265534648978963, 48.64871645216127],\n            [-1.265522152456946, 48.64868821646234],\n            [-1.265506895725028, 48.64866058278119],\n            [-1.265488944119027, 48.64863366944871],\n            [-1.265468374513767, 48.64860759171042],\n            [-1.265467318357225, 48.64860635776631],\n            [-1.265108290742707, 48.64818842699301],\n            [-1.265098186395368, 48.64806937969079],\n            [-1.265094243552576, 48.64804007108788],\n            [-1.265087416314201, 48.64801099611078],\n            [-1.265077733920315, 48.64798227926248],\n            [-1.265065237837146, 48.6479540435123],\n            [-1.26504998157893, 48.64792640976897],\n            [-1.265032030479383, 48.64789949636354],\n            [-1.265011461411174, 48.64787341854196],\n            [-1.264988362457105, 48.64784828797214],\n            [-1.26496283253289, 48.64782421226547],\n            [-1.264934980963199, 48.64780129451641],\n            [-1.26490492701385, 48.64777963286042],\n            [-1.264872799380956, 48.64775932005455],\n            [-1.264838735639748, 48.6477404430796],\n            [-1.264802881655267, 48.64772308276801],\n            [-1.26476539095856, 48.64770731345767],\n            [-1.26472642408813, 48.64769320267377],\n            [-1.264721319443902, 48.64763305490573],\n            [-1.264717376854887, 48.64760374628899],\n            [-1.264710549893571, 48.64757467128859],\n            [-1.264700867798805, 48.64754595440763],\n            [-1.264688372035581, 48.64751771861549],\n            [-1.264673116116692, 48.64749008482116],\n            [-1.26465516537448, 48.6474631713559],\n            [-1.264634596680052, 48.6474370934659],\n            [-1.264611498114612, 48.64741196281933],\n            [-1.264585968592196, 48.64738788702801],\n            [-1.264558117435775, 48.64736496918663],\n            [-1.264528063909387, 48.64734330743112],\n            [-1.264495936707368, 48.647322994519],\n            [-1.264461873403011, 48.64730411743143],\n            [-1.264426019859597, 48.64728675700139],\n            [-1.264388529606175, 48.64727098756731],\n            [-1.26434956317947, 48.64725687665478],\n            [-1.264344459030127, 48.64719672886822],\n            [-1.264340516694849, 48.64716742023762],\n            [-1.264333690010571, 48.64713834521392],\n            [-1.264324008214945, 48.64710962830027],\n            [-1.264311512771605, 48.6470813924662],\n            [-1.264296257192066, 48.64705375862086],\n            [-1.264278306807167, 48.64702684509578],\n            [-1.264257738486521, 48.64700076713734],\n            [-1.264234640309729, 48.64697563641404],\n            [-1.264209111189072, 48.64695156053803],\n            [-1.26418126044592, 48.6469286426044],\n            [-1.264151207342514, 48.64690698074941],\n            [-1.264119080571311, 48.64688666773103],\n            [-1.264085017703824, 48.64686779053086],\n            [-1.264049164601437, 48.64685042998234],\n            [-1.264011674791361, 48.64683466042444],\n            [-1.263972708808321, 48.64682054938334],\n            [-1.263971199218068, 48.64680275851145],\n            [-1.263998988471207, 48.64680474491445],\n            [-1.264043354566644, 48.64680598059213],\n            [-1.264087747632468, 48.64680529082904],\n            [-1.264131977565683, 48.64680267857911],\n            [-1.26417585496182, 48.64679815502858],\n            [-1.264219191926377, 48.64679173954851],\n            [-1.264261802879103, 48.64678345961177],\n            [-1.26430350534928, 48.64677335067508],\n            [-1.264344120756358, 48.64676145602773],\n            [-1.264383475175781, 48.64674782660551],\n            [-1.264421400082856, 48.64673252077311],\n            [-1.264457733074971, 48.64671560407394],\n            [-1.264492318566881, 48.64669714894956],\n            [-1.264525008457336, 48.64667723442924],\n            [-1.26455566276235, 48.64665594579175],\n            [-1.264836009219659, 48.64644803632938],\n            [-1.264864496430049, 48.6464254646674],\n            [-1.264890694805139, 48.64640170671344],\n            [-1.264914492161005, 48.64637686420419],\n            [-1.26493578659592, 48.64635104352061],\n            [-1.264954486926504, 48.64632435523226],\n            [-1.264970513078529, 48.64629691362375],\n            [-1.264983796429309, 48.64626883620548],\n            [-1.264994280101499, 48.64624024321015],\n            [-1.265001919207087, 48.64621125707818],\n            [-1.265006681038976, 48.64618200193307],\n            [-1.265008545211193, 48.64615260305034],\n            [-1.265007503746238, 48.64612318632061],\n            [-1.265003561108822, 48.64609387771075],\n            [-1.264996734187014, 48.64606480272445],\n            [-1.264989903379634, 48.64604454245179],\n            [-1.265014825625601, 48.6460419728591],\n            [-1.265058161831685, 48.64603555706136],\n            [-1.265100772005814, 48.64602727681216],\n            [-1.265142473680547, 48.64601716756955],\n            [-1.265183088278752, 48.64600527262417],\n            [-1.26522244187927, 48.64599164291305],\n            [-1.265260365961005, 48.64597633680219],\n            [-1.265296698124843, 48.64595941983609],\n            [-1.265331282789075, 48.64594096445749],\n            [-1.265363971856008, 48.64592104969677],\n            [-1.265394625345315, 48.64589976083366],\n            [-1.265423111994495, 48.64587718903207],\n            [-1.265449309820204, 48.64585343094941],\n            [-1.265473106640858, 48.64582858832326],\n            [-1.265494400556968, 48.64580276753487],\n            [-1.265755069458492, 48.64579305154337],\n            [-1.265772979196844, 48.64581575822255],\n            [-1.265796077609587, 48.64584088863758],\n            [-1.265821606926068, 48.64586496416175],\n            [-1.265849457827533, 48.6458878816983],\n            [-1.265879511053381, 48.64590954310922],\n            [-1.265911637911414, 48.64592985563535],\n            [-1.265945700829321, 48.64594873229355],\n            [-1.265981553943478, 48.64596609224963],\n            [-1.266019043723838, 48.64598186116371],\n            [-1.266058009631259, 48.64599597150961],\n            [-1.266098284804835, 48.6460083628632],\n            [-1.266139696777027, 48.64601898216135],\n            [-1.266182068211568, 48.6460277839297],\n            [-1.266225217663399, 48.6460347304766],\n            [-1.266268960355128, 48.6460397920552],\n            [-1.266313108969253, 48.64604294699035],\n            [-1.266357474449682, 48.64604418177191],\n            [-1.266401866811489, 48.64604349111211],\n            [-1.266446095954736, 48.6460408779686],\n            [-1.266489972478291, 48.64603635353157],\n            [-1.266533308491429, 48.64602993717579],\n            [-1.266575918417976, 48.64602165637795],\n            [-1.26661761979161, 48.64601154659838],\n            [-1.266658234036437, 48.64599965113001],\n            [-1.266697587232899, 48.64598602091219],\n            [-1.266735510861556, 48.64597071431295],\n            [-1.266771842525254, 48.64595379687906],\n            [-1.266806426644442, 48.64593534105515],\n            [-1.266839115123726, 48.64591542587348],\n            [-1.266869767985235, 48.64589413661577],\n            [-1.26715010063301, 48.64568622148019],\n            [-1.267178586373696, 48.64566364924158],\n            [-1.267201309811727, 48.64564304089839],\n            [-1.267202888615175, 48.64564976359452],\n            [-1.267212571773251, 48.64567848026767],\n            [-1.267225068496407, 48.64570671578795],\n            [-1.267240325276267, 48.64573434924575],\n            [-1.267258276784646, 48.64576126230905],\n            [-1.267278846153914, 48.64578733973091],\n            [-1.267301945305865, 48.64581246984243],\n            [-1.267327475328621, 48.64583654503107],\n            [-1.26735532690045, 48.64585946220151],\n            [-1.267385380757753, 48.6458811232175],\n            [-1.267417508205675, 48.64590143532125],\n            [-1.267731271833974, 48.64608719789241],\n            [-1.267765335541209, 48.64610607400944],\n            [-1.267801189395414, 48.64612343339581],\n            [-1.267838679863325, 48.64613920171438],\n            [-1.26787764640298, 48.64615331144121],\n            [-1.267917922150836, 48.64616570215483],\n            [-1.267959334636677, 48.64617632079519],\n            [-1.268001706522117, 48.64618512189044],\n            [-1.26804485636, 48.64619206775189],\n            [-1.268088599371633, 48.64619712863564],\n            [-1.268132748237976, 48.64620028286959],\n            [-1.268177113901778, 48.64620151694643],\n            [-1.268221506377474, 48.64620082558155],\n            [-1.268265735564487, 48.64619821173561],\n            [-1.268309612061622, 48.64619368660171],\n            [-1.268352947978177, 48.64618726955773],\n            [-1.268395557738438, 48.64617898808306],\n            [-1.2684372588767, 48.64616887764134],\n            [-1.268447394099241, 48.64616590896419],\n            [-1.268449590586014, 48.64616798020381],\n            [-1.268477442852547, 48.64619089710095],\n            [-1.268507497391025, 48.64621255782209],\n            [-1.268539625503675, 48.64623286961074],\n            [-1.268573689612769, 48.6462517454872],\n            [-1.268609543849828, 48.64626910462045],\n            [-1.268647034679709, 48.64628487267432],\n            [-1.268686001558932, 48.64629898212604],\n            [-1.268726277622536, 48.64631137255545],\n            [-1.268767690398904, 48.64632199090349],\n            [-1.268810062548333, 48.64633079169962],\n            [-1.268853212622927, 48.64633773725659],\n            [-1.268896955842513, 48.64634279783162],\n            [-1.268941104887373, 48.64634595175399],\n            [-1.268985470699497, 48.6463471855178],\n            [-1.269029863292619, 48.64634649383969],\n            [-1.269368615606878, 48.64633385695504],\n            [-1.269707367750954, 48.64632121906873],\n            [-1.271062374624998, 48.64627065750675],\n            [-1.27110660372576, 48.64626804256405],\n            [-1.271150480028231, 48.64626351634216],\n            [-1.271193815642528, 48.64625709822361],\n            [-1.271236424994235, 48.64624881569243],\n            [-1.271278125619488, 48.64623870421661],\n            [-1.27131873894559, 48.64622680709625],\n            [-1.27135809105692, 48.64621317527769],\n            [-1.271396013438695, 48.64619786713598],\n            [-1.271432343699075, 48.64618094822439],\n            [-1.271466926264546, 48.64616249099389],\n            [-1.271499613046367, 48.64614257448277],\n            [-1.271530264073983, 48.64612128397837],\n            [-1.271558748095485, 48.64609871065148],\n            [-1.271584943138739, 48.64607495116614],\n            [-1.271608737034133, 48.64605010726596],\n            [-1.271630027894668, 48.64602428533765],\n            [-1.27164872455239, 48.6459975959561],\n            [-1.27166474694854, 48.64597015341067],\n            [-1.271678026476597, 48.64594207521574],\n            [-1.271688506275845, 48.64591348160725],\n            [-1.271696141474479, 48.6458844950284],\n            [-1.271700899382406, 48.64585523960456],\n            [-1.271702759630382, 48.64582584061235],\n            [-1.271701714257694, 48.64579642394293],\n            [-1.271644471360671, 48.6451230037345],\n            [-1.272321958027498, 48.64509771349931],\n            [-1.272366186031577, 48.64509509807013],\n            [-1.272410061197697, 48.64509057136548],\n            [-1.272453395640871, 48.64508415276993],\n            [-1.272496003791699, 48.64507586976968],\n            [-1.272537703191492, 48.64506575783456],\n            [-1.27257831527277, 48.64505386026671],\n            [-1.272617666125266, 48.64504022801446],\n            [-1.272655587239515, 48.6450249194546],\n            [-1.272691916229212, 48.64500800014225],\n            [-1.272726497526198, 48.64498954253009],\n            [-1.272759183047207, 48.64496962565801],\n            [-1.272789832827121, 48.64494833481497],\n            [-1.272818315619306, 48.64492576117317],\n            [-1.272844509456945, 48.64490200139802],\n            [-1.272868302175501, 48.64487715723426],\n            [-1.272889591893089, 48.64485133506981],\n            [-1.272908287446635, 48.64482464548063],\n            [-1.272924308782113, 48.64479720275694],\n            [-1.27293758729752, 48.64476912441381],\n            [-1.272948066136517, 48.64474053068786],\n            [-1.272955700431373, 48.6447115440228],\n            [-1.272960457495915, 48.64468228854435],\n            [-1.272962316964414, 48.64465288952941],\n            [-1.272961270879596, 48.64462347286923],\n            [-1.272904012456773, 48.64395005323777],\n            [-1.273581482694302, 48.64392475555202],\n            [-1.273625709601678, 48.64392213963634],\n            [-1.273669583631467, 48.64391761244895],\n            [-1.273712916903578, 48.64391119337644],\n            [-1.273755523853586, 48.64390290990713],\n            [-1.273797222027959, 48.64389279751281],\n            [-1.273837832864453, 48.64388089949751],\n            [-1.273877182458136, 48.64386726681157],\n            [-1.273915102304979, 48.6438519578336],\n            [-1.273951430024032, 48.64383503812054],\n            [-1.273986010052632, 48.64381658012673],\n            [-1.274018694312931, 48.64379666289378],\n            [-1.274049342845163, 48.64377537171208],\n            [-1.274077824408071, 48.64375279775539],\n            [-1.274104017040114, 48.64372903769042],\n            [-1.274127808581931, 48.64370419326315],\n            [-1.274149097156654, 48.64367837086265],\n            [-1.274167791606122, 48.64365168106583],\n            [-1.274183811880989, 48.64362423816385],\n            [-1.274197089383846, 48.64359615967259],\n            [-1.274207567262631, 48.64356756582918],\n            [-1.27421520065379, 48.64353857907794],\n            [-1.274219956874987, 48.64350932354495],\n            [-1.274221815564109, 48.6434799245073],\n            [-1.2742207687672, 48.64345050785631],\n            [-1.274201677281148, 48.64322603484481],\n            [-1.274197729514475, 48.6431967265459],\n            [-1.274190897672223, 48.64316765210213],\n            [-1.274187472985768, 48.64315645109572],\n            [-1.273980249800817, 48.64252033029841],\n            [-1.273973987980495, 48.64250281520471],\n            [-1.273963700112937, 48.64247911258057],\n            [-1.273252844011215, 48.64099570532226],\n            [-1.273250632292986, 48.64099117314227],\n            [-1.273235373650357, 48.6409635404763],\n            [-1.273217420656545, 48.64093662834119],\n            [-1.273196850192413, 48.64091055197729],\n            [-1.273173750346637, 48.64088542304627],\n            [-1.273148220038789, 48.64086134915271],\n            [-1.273120368595218, 48.64083843338307],\n            [-1.27309031528114, 48.64081677386445],\n            [-1.273058188789973, 48.64079646334479],\n            [-1.273024126692071, 48.64077758879494],\n            [-1.272988274845399, 48.64076023103707],\n            [-1.272950786771874, 48.64074446439815],\n            [-1.272911822998786, 48.64073035639183],\n            [-1.272871550372292, 48.64071796742937],\n            [-1.272830141342687, 48.64070735056087],\n            [-1.272787773226192, 48.64069855124835],\n            [-1.272744627445044, 48.64069160717072],\n            [-1.272700888751956, 48.64068654806299],\n            [-1.272656744437692, 48.64068339558835],\n            [-1.272644785092978, 48.64068287343442],\n            [-1.271339680241708, 48.64063355217802],\n            [-1.271307278729035, 48.64063284162025],\n            [-1.271262891208775, 48.64063353418106],\n            [-1.271218667069485, 48.64063614918511],\n            [-1.271174795680783, 48.64064067543477],\n            [-1.271131464901798, 48.64064709354857],\n            [-1.271094756082534, 48.64065422987862],\n            [-1.271057070301718, 48.64064987032941],\n            [-1.271012926122666, 48.64064671722124],\n            [-1.27096856528768, 48.64064548424215],\n            [-1.270924177751633, 48.64064617667176],\n            [-1.270585464124228, 48.64065881816081],\n            [-1.270541239927523, 48.64066143290332],\n            [-1.270497368455827, 48.64066595889355],\n            [-1.270454037568649, 48.64067237675106],\n            [-1.270411432810927, 48.64068065899424],\n            [-1.270369736618329, 48.6406907701583],\n            [-1.270329127536771, 48.64070266694662],\n            [-1.270289779456837, 48.64071629841665],\n            [-1.270251860870266, 48.64073160619777],\n            [-1.270215534147976, 48.64074852474106],\n            [-1.270180954844875, 48.64076698160041],\n            [-1.270148271033558, 48.6407868977424],\n            [-1.27011762267097, 48.64080818788456],\n            [-1.27008914099819, 48.64083076086097],\n            [-1.270062947978976, 48.6408545200125],\n            [-1.270039155777447, 48.64087936360016],\n            [-1.270017866277704, 48.6409051852416],\n            [-1.269497633466494, 48.64092459675575],\n            [-1.269516329360247, 48.64089790771321],\n            [-1.269532351295446, 48.64087046545682],\n            [-1.269545630667528, 48.64084238749966],\n            [-1.269556110616397, 48.64081379407659],\n            [-1.269563746269706, 48.64078480763011],\n            [-1.269568504935328, 48.640755552285],\n            [-1.269570366240798, 48.64072615331754],\n            [-1.269569322220887, 48.64069673661879],\n            [-1.269613546499127, 48.6406941222515],\n            [-1.269657418074899, 48.64068959659981],\n            [-1.269700749078504, 48.64068317904361],\n            [-1.26974335395537, 48.64067489706474],\n            [-1.269785050260679, 48.64066478612869],\n            [-1.269825659440338, 48.64065288953322],\n            [-1.269865007596431, 48.64063925822259],\n            [-1.269902926231084, 48.64062395056943],\n            [-1.269939252968562, 48.64060703212511],\n            [-1.2699738322504, 48.64058857533853],\n            [-1.270006516001925, 48.64056865924611],\n            [-1.270037164265612, 48.64054736913332],\n            [-1.270065645801302, 48.64052479616943],\n            [-1.270091838647574, 48.64050103701674],\n            [-1.270115630644166, 48.64047619341753],\n            [-1.270136919912235, 48.6404503717572],\n            [-1.27015561529064, 48.6404236826095],\n            [-1.270164016302866, 48.64040929292362],\n            [-1.270184648781472, 48.64040214514154],\n            [-1.270222567140205, 48.64038683738238],\n            [-1.270258893598966, 48.64036991883643],\n            [-1.270293472600568, 48.64035146195306],\n            [-1.270326156071557, 48.64033154576914],\n            [-1.270356804055528, 48.6403102555705],\n            [-1.27038528531356, 48.64028768252679],\n            [-1.270411477885451, 48.64026392330068],\n            [-1.27043526961208, 48.64023907963463],\n            [-1.27045655861574, 48.64021325791451],\n            [-1.270475253736472, 48.64018656871426],\n            [-1.270483654617682, 48.64017217900468],\n            [-1.270504286953662, 48.64016503116496],\n            [-1.270542205036416, 48.64014972329974],\n            [-1.2705785312165, 48.64013280465218],\n            [-1.270613109937866, 48.640114347672],\n            [-1.2706457931283, 48.64009443139661],\n            [-1.270676440832554, 48.64007314111211],\n            [-1.270704921812949, 48.64005056798858],\n            [-1.270731114110439, 48.64002680868902],\n            [-1.270754905567124, 48.64000196495623],\n            [-1.270776194306396, 48.63997614317627],\n            [-1.270866951121699, 48.63997275584645],\n            [-1.270911174696101, 48.63997014097809],\n            [-1.270955045523812, 48.63996561482919],\n            [-1.270998375738408, 48.63995919678182],\n            [-1.271040979788516, 48.63995091431998],\n            [-1.271082675233053, 48.63994080291111],\n            [-1.271123283521525, 48.63992890585506],\n            [-1.271162630759792, 48.63991527409801],\n            [-1.271200548453997, 48.63989996601461],\n            [-1.271236874232382, 48.63988304715802],\n            [-1.271271452540579, 48.63986458997883],\n            [-1.271304135308131, 48.63984467351523],\n            [-1.27133478258167, 48.63982338305432],\n            [-1.271363263125314, 48.63980080976664],\n            [-1.271389454981917, 48.63977705031619],\n            [-1.271413245995376, 48.63975220644627],\n            [-1.271434534291103, 48.63972638454357],\n            [-1.271453228712114, 48.63969969518286],\n            [-1.271469249209283, 48.63967225265341],\n            [-1.271482527184142, 48.6396441744695],\n            [-1.271493005782671, 48.63961558086706],\n            [-1.271500640138179, 48.6395865942892],\n            [-1.271505397564232, 48.63955733886136],\n            [-1.271507257693603, 48.63952793986018],\n            [-1.271506212566058, 48.63949852317676],\n            [-1.271550435690421, 48.63949590806151],\n            [-1.271594306047088, 48.63949138166765],\n            [-1.271637635771696, 48.63948496337827],\n            [-1.27168023931503, 48.63947668067839],\n            [-1.271721934238084, 48.63946656903654],\n            [-1.271762541992583, 48.63945467175352],\n            [-1.271801888686786, 48.63944103977648],\n            [-1.271839805829111, 48.63942573148101],\n            [-1.271876131050103, 48.63940881242114],\n            [-1.271910708797868, 48.63939035504843],\n            [-1.271943391004309, 48.63937043840186],\n            [-1.271974037718455, 48.6393491477692],\n            [-1.272002517706823, 48.63932657432196],\n            [-1.272028709014645, 48.63930281472459],\n            [-1.272052499488177, 48.63927797072114],\n            [-1.272073787255186, 48.63925214869886],\n            [-1.272092481160889, 48.63922545923298],\n            [-1.272100881419078, 48.63921106940386],\n            [-1.272121513131137, 48.63920392127245],\n            [-1.272159429997484, 48.63918861287094],\n            [-1.272195754939818, 48.63917169370943],\n            [-1.272230332407367, 48.63915323623996],\n            [-1.272263014333253, 48.63913331950186],\n            [-1.272293660767703, 48.63911202878343],\n            [-1.272322140478452, 48.63908945525634],\n            [-1.272348331511894, 48.63906569558551],\n            [-1.272372121715502, 48.63904085151531],\n            [-1.272393409218102, 48.63901502943321],\n            [-1.272412102866192, 48.6389883399148],\n            [-1.2724281226138, 48.63896089724995],\n            [-1.272441399865818, 48.63893281895366],\n            [-1.272451877771241, 48.63890422526212],\n            [-1.272459511466397, 48.63887523861904],\n            [-1.27246426826761, 48.63884598315003],\n            [-1.27246612781039, 48.63881658413192],\n            [-1.272465082136982, 48.63878716745591],\n            [-1.272459969145012, 48.63872701999766],\n            [-1.272496293653034, 48.63871010074038],\n            [-1.272530870693085, 48.63869164317962],\n            [-1.272563552200146, 48.63867172635519],\n            [-1.272594198226282, 48.63865043555571],\n            [-1.272622677540909, 48.63862786195324],\n            [-1.272648868192137, 48.63860410221299],\n            [-1.272672658029077, 48.63857925807964],\n            [-1.272693945182137, 48.63855343594089],\n            [-1.272784699301957, 48.63855004709133],\n            [-1.272828921526179, 48.63854743148233],\n            [-1.27287279094082, 48.63854290459857],\n            [-1.272916119685472, 48.63853648582521],\n            [-1.272958722215176, 48.63852820264931],\n            [-1.273000416095265, 48.63851809054144],\n            [-1.273041022781938, 48.63850619280449],\n            [-1.273080368388011, 48.63849256038745],\n            [-1.27311828442652, 48.63847725166784],\n            [-1.273154608532823, 48.63846033220149],\n            [-1.273189185159704, 48.63844187444177],\n            [-1.273221866243943, 48.63842195742917],\n            [-1.273252511839365, 48.63840066645319],\n            [-1.27328099071724, 48.63837809268669],\n            [-1.273307180927581, 48.63835433279553],\n            [-1.273330970321356, 48.63832948852504],\n            [-1.273352257030871, 48.63830366626359],\n            [-1.273370949905999, 48.63827697658743],\n            [-1.273379349640187, 48.63826258666374],\n            [-1.273399980781682, 48.63825543830152],\n            [-1.273437896544232, 48.63824012947592],\n            [-1.273474220371857, 48.63822320990797],\n            [-1.273508796718543, 48.63820475205149],\n            [-1.273541477522266, 48.63818483494736],\n            [-1.273572122837972, 48.63816354388557],\n            [-1.27360060143827, 48.63814097003925],\n            [-1.273626791374229, 48.6381172100747],\n            [-1.27365058049804, 48.63809236573743],\n            [-1.273671866943227, 48.63806654341615],\n            [-1.273690559560701, 48.63803985368745],\n            [-1.273706578309028, 48.63801241084218],\n            [-1.273719854597297, 48.63798433239592],\n            [-1.27373033157864, 48.63795573858572],\n            [-1.27373796439332, 48.63792675185566],\n            [-1.273742720361499, 48.63789749633178],\n            [-1.273744579122185, 48.63786809729114],\n            [-1.273743532721059, 48.637838680625],\n            [-1.273738418297175, 48.63777853322018],\n            [-1.273774741690488, 48.63776161355646],\n            [-1.273809317609695, 48.63774315560866],\n            [-1.273841997994614, 48.63772323841824],\n            [-1.273872642902025, 48.63770194727539],\n            [-1.2739011211062, 48.6376793733537],\n            [-1.273927310659986, 48.63765561331972],\n            [-1.27395109941717, 48.63763076891927],\n            [-1.273972385512816, 48.63760494654143],\n            [-1.273988341916095, 48.63758246380847],\n            [-1.274092981970876, 48.63742378403876],\n            [-1.274516024977261, 48.637350547195],\n            [-1.274556758056411, 48.63734258496556],\n            [-1.274598450632842, 48.63733247227532],\n            [-1.274639055984863, 48.6373205739709],\n            [-1.274678400230664, 48.6373069410039],\n            [-1.274716314889497, 48.6372916317542],\n            [-1.274752637602454, 48.63727471177981],\n            [-1.274787212828437, 48.63725625353628],\n            [-1.274819892509898, 48.63723633606632],\n            [-1.274850536706937, 48.63721504466113],\n            [-1.274879014196864, 48.63719247049555],\n            [-1.274905203035301, 48.6371687102373],\n            [-1.274928991079436, 48.63714386563297],\n            [-1.274950276467188, 48.63711804307256],\n            [-1.274968968054167, 48.63709135313363],\n            [-1.274984985803234, 48.63706391010793],\n            [-1.274998261127793, 48.63703583151177],\n            [-1.275008737185095, 48.6370072375829],\n            [-1.275016369119419, 48.63697825076587],\n            [-1.275021124254605, 48.63694899518714],\n            [-1.275022982233276, 48.63691959612397],\n            [-1.275021935104452, 48.6368901794677],\n            [-1.274983750132608, 48.63644123351393],\n            [-1.275027970389064, 48.6364386170556],\n            [-1.275071837767174, 48.636434089329],\n            [-1.275115164415304, 48.63642766972296],\n            [-1.275157764797406, 48.63641938572806],\n            [-1.275199456488025, 48.6364092728184],\n            [-1.275240060952796, 48.63639737430027],\n            [-1.275279404313945, 48.63638374112603],\n            [-1.27531731809424, 48.63636843167646],\n            [-1.275353639938632, 48.6363515115105],\n            [-1.275388214309658, 48.63633305308447],\n            [-1.275420893153669, 48.63631313544174],\n            [-1.275451536534122, 48.63629184387459],\n            [-1.275480013231802, 48.63626926955833],\n            [-1.275506201306031, 48.63624550916116],\n            [-1.275529988616913, 48.63622066443061],\n            [-1.275551273305704, 48.63619484175701],\n            [-1.275569964230892, 48.63616815171839],\n            [-1.275585981358296, 48.636140708607],\n            [-1.275599256103879, 48.63611262993958],\n            [-1.275609731627407, 48.63608403595408],\n            [-1.275617363075461, 48.63605504909528],\n            [-1.275622117773956, 48.63602579348985],\n            [-1.275623975367415, 48.63599639441521],\n            [-1.275622927906417, 48.63596697776274],\n            [-1.275593753560917, 48.6356240137073],\n            [-1.27572732993348, 48.63541881711434],\n            [-1.275913994628841, 48.63536229848137],\n            [-1.275926588624807, 48.63535838129923],\n            [-1.275965930987555, 48.63534474788827],\n            [-1.276003843776064, 48.63532943821046],\n            [-1.27604016463956, 48.63531251782565],\n            [-1.276074738044799, 48.63529405919119],\n            [-1.276107415942247, 48.63527414135133],\n            [-1.276138058399459, 48.63525284959905],\n            [-1.276166534201115, 48.63523027511057],\n            [-1.276192721410376, 48.63520651455489],\n            [-1.276216507891101, 48.63518166968013],\n            [-1.276237791788046, 48.63515584687729],\n            [-1.276256481963114, 48.63512915672487],\n            [-1.276272498385342, 48.63510171351565],\n            [-1.276285772473691, 48.6350736347668],\n            [-1.276296247390805, 48.63504504071663],\n            [-1.276303878285781, 48.63501605381019],\n            [-1.276308632486953, 48.63498679817432],\n            [-1.276310489640904, 48.63495739908661],\n            [-1.27630944180019, 48.63492798243844],\n            [-1.276305493456837, 48.63489867419649],\n            [-1.276298661523359, 48.63486959986282],\n            [-1.276288975259867, 48.63484088393767],\n            [-1.276276476149181, 48.63481264938633],\n            [-1.276261217718462, 48.63478501711246],\n            [-1.276243265310801, 48.63475810544089],\n            [-1.276222695804443, 48.63473202960999],\n            [-1.276199597284027, 48.63470690127922],\n            [-1.276174068663409, 48.63468282805049],\n            [-1.276146219261725, 48.63465991300747],\n            [-1.276116168335477, 48.6346382542741],\n            [-1.276084044567831, 48.634617944595],\n            [-1.276049985517431, 48.63459907093744],\n            [-1.276014137029313, 48.6345817141197],\n            [-1.275976652610864, 48.6345659484648],\n            [-1.275937692773828, 48.63455184148209],\n            [-1.275897424347474, 48.63453945357851],\n            [-1.275872535846114, 48.63453307238326],\n            [-1.275878236533456, 48.63453041663849],\n            [-1.275912809460718, 48.63451195805194],\n            [-1.275945486914341, 48.63449204025729],\n            [-1.275976128963778, 48.63447074854725],\n            [-1.276004604395471, 48.63444817409798],\n            [-1.276030791274136, 48.63442441357815],\n            [-1.276054577465093, 48.63439956873577],\n            [-1.276075861114316, 48.63437374596168],\n            [-1.276094551084808, 48.63434705583439],\n            [-1.276110567346385, 48.63431961264646],\n            [-1.276123841318786, 48.634291533915],\n            [-1.276134316165096, 48.63426293987818],\n            [-1.276141947034752, 48.63423395298109],\n            [-1.276146701256149, 48.63420469735053],\n            [-1.276148558475847, 48.63417529826397],\n            [-1.276147510746104, 48.63414588161291],\n            [-1.276133236696322, 48.63397809567923],\n            [-1.27620251760721, 48.63374544746945],\n            [-1.276486341589427, 48.633422612222],\n            [-1.276504931136149, 48.63343043090574],\n            [-1.276543890263953, 48.63344453769642],\n            [-1.2765841579731, 48.63345692537365],\n            [-1.276625561828044, 48.63346754088998],\n            [-1.276667924527213, 48.63347633878719],\n            [-1.276711064662917, 48.63348328139025],\n            [-1.27675479749775, 48.63348833896912],\n            [-1.276798935756438, 48.63349148986595],\n            [-1.276843290427114, 48.63349272058783],\n            [-1.276887671571274, 48.63349202586427],\n            [-1.276931889136903, 48.63348940867037],\n            [-1.276975753772567, 48.63348488021376],\n            [-1.277019077638362, 48.63347845988637],\n            [-1.277061675210152, 48.63347017518182],\n            [-1.277103364074512, 48.63346006157725],\n            [-1.277143965709167, 48.6334481623819],\n            [-1.277183306248533, 48.6334345285512],\n            [-1.277221217227369, 48.6334192184686],\n            [-1.277257536302676, 48.6334022976957],\n            [-1.277292107948822, 48.63338383869153],\n            [-1.277324784123868, 48.6333639205019],\n            [-1.277355428834517, 48.63334262550371],\n            [-1.277635651575428, 48.63313467477455],\n            [-1.277664117642852, 48.63311210574623],\n            [-1.27769030304258, 48.63308834484506],\n            [-1.277714087782438, 48.63306349965588],\n            [-1.277735370014914, 48.63303767657127],\n            [-1.277754058608887, 48.63301098617103],\n            [-1.277770073540128, 48.6329835427487],\n            [-1.277783346234152, 48.63295546382248],\n            [-1.277793819859199, 48.6329268696315],\n            [-1.277801449570342, 48.63289788262143],\n            [-1.277806202700591, 48.63286862691949],\n            [-1.277808058901484, 48.63283922780354],\n            [-1.277807010229395, 48.63280981116518],\n            [-1.277803061180007, 48.63278050297096],\n            [-1.277796228668711, 48.6327514287227],\n            [-1.277786541958457, 48.63272271292036],\n            [-1.277774042533482, 48.6326944785287],\n            [-1.277758783922827, 48.63266684645068],\n            [-1.277740831469822, 48.63263993501012],\n            [-1.277720262053292, 48.63261385944473],\n            [-1.277697163757356, 48.63258873141268],\n            [-1.277671635494893, 48.63256465851448],\n            [-1.277643786583675, 48.63254174383245],\n            [-1.277613736277792, 48.63252008548925],\n            [-1.277581613257948, 48.63249977622733],\n            [-1.27754755507945, 48.63248090301263],\n            [-1.277511707583898, 48.63246354666127],\n            [-1.277474224274082, 48.63244778149442],\n            [-1.27743526565721, 48.63243367501927],\n            [-1.277394998557355, 48.63242128764055],\n            [-1.277353595400992, 48.63241067240166],\n            [-1.277311233479102, 48.63240187475748],\n            [-1.277275999802325, 48.63239605702935],\n            [-1.276856564046938, 48.63233465206403],\n            [-1.276848658451339, 48.63233352738568],\n            [-1.276804926610711, 48.63232846984234],\n            [-1.276760789371827, 48.63232531894755],\n            [-1.276716435732166, 48.6323240881937],\n            [-1.276672055615764, 48.63232478285091],\n            [-1.276627839060007, 48.63232739994465],\n            [-1.276583975402041, 48.63233192826832],\n            [-1.276562466140949, 48.63233511579632],\n            [-1.276577763732723, 48.63232298763126],\n            [-1.276603949234789, 48.63229922697717],\n            [-1.276627734138136, 48.63227438201248],\n            [-1.276649016594373, 48.63224855912841],\n            [-1.276667705471479, 48.63222186890403],\n            [-1.276683720744047, 48.63219442563225],\n            [-1.276696993836033, 48.6321663468306],\n            [-1.276707467914238, 48.63213775273759],\n            [-1.276715098131436, 48.63210876579846],\n            [-1.276715654673608, 48.63210534066808],\n            [-1.276730048920123, 48.63210035214518],\n            [-1.276767959031653, 48.63208504221124],\n            [-1.276804277296408, 48.63206812158071],\n            [-1.276838848192194, 48.63204966271179],\n            [-1.27687152368025, 48.63202974464983],\n            [-1.276902167770235, 48.63200844977115],\n            [-1.277182384954472, 48.63180050013351],\n            [-1.277210850470456, 48.63177793121601],\n            [-1.277237035389969, 48.63175417041644],\n            [-1.277260819722992, 48.63172932531934],\n            [-1.277282101623793, 48.63170350231677],\n            [-1.27730078996269, 48.63167681198826],\n            [-1.277316804716493, 48.63164936862704],\n            [-1.277330077311516, 48.63162128975096],\n            [-1.277340550916439, 48.63159269559909],\n            [-1.277348180686435, 48.63156370861675],\n            [-1.277352933954155, 48.63153445293123],\n            [-1.277354790370675, 48.63150505382014],\n            [-1.277353741991372, 48.63147563717517],\n            [-1.277349793310669, 48.63144632896284],\n            [-1.277342961242418, 48.63141725468513],\n            [-1.277333275047632, 48.63138853884207],\n            [-1.277320776208428, 48.63136030439861],\n            [-1.277305518251211, 48.63133267225787],\n            [-1.277287566516612, 48.63130576074401],\n            [-1.277266997880298, 48.63127968509501],\n            [-1.277243900423151, 48.63125455696947],\n            [-1.277218373054372, 48.63123048396828],\n            [-1.277190525087919, 48.63120756917414],\n            [-1.277160475773882, 48.63118591071015],\n            [-1.27712835378867, 48.63116560131942],\n            [-1.277094296683174, 48.6311467279683],\n            [-1.277058450294397, 48.6311293714737],\n            [-1.277020968120373, 48.63111360615717],\n            [-1.276982010663492, 48.63109949952671],\n            [-1.276941744742854, 48.63108711198759],\n            [-1.276900342779836, 48.63107649658395],\n            [-1.276857982060364, 48.63106769877135],\n            [-1.276822749370179, 48.63106188090337],\n            [-1.276403325288593, 48.63100047427303],\n            [-1.276395419912719, 48.63099934956334],\n            [-1.276351689277127, 48.6309942918465],\n            [-1.276307553236844, 48.63099114077677],\n            [-1.276274022234329, 48.63099021018049],\n            [-1.276276728059713, 48.63098657400613],\n            [-1.276306899755895, 48.63098345919173],\n            [-1.276350221553404, 48.63097703911633],\n            [-1.27639281711782, 48.63096875465921],\n            [-1.27643450404429, 48.63095864129654],\n            [-1.276475103818793, 48.63094674233649],\n            [-1.276514442583798, 48.63093310873336],\n            [-1.276552351881579, 48.6309177988697],\n            [-1.276588669376391, 48.63090087830631],\n            [-1.276623239549375, 48.63088241950111],\n            [-1.276655914364828, 48.63086250149922],\n            [-1.276686553903514, 48.6308412095943],\n            [-1.276715026962625, 48.63081863496326],\n            [-1.27674121161707, 48.63079487427556],\n            [-1.276764995741579, 48.63077002928002],\n            [-1.276786277491142, 48.63074420636805],\n            [-1.276804965736713, 48.63071751611876],\n            [-1.276820980455644, 48.6306900728252],\n            [-1.276834253074248, 48.63066199400505],\n            [-1.276844726761346, 48.63063339989673],\n            [-1.27685235667139, 48.63060441294577],\n            [-1.276857110136851, 48.63057515727904],\n            [-1.276858966807568, 48.63054575817425],\n            [-1.276857918738077, 48.63051634152298],\n            [-1.276819722222906, 48.63006739600102],\n            [-1.276815773963846, 48.63003808776774],\n            [-1.276808942395356, 48.63000901345562],\n            [-1.276799256776369, 48.62998029756488],\n            [-1.276786758586546, 48.62995206306065],\n            [-1.276771501349572, 48.62992443084642],\n            [-1.276753550402923, 48.62989751924657],\n            [-1.276732982618947, 48.62987144349935],\n            [-1.276729549320241, 48.62986746483568],\n            [-1.276476663328234, 48.62957784201226],\n            [-1.276457000302367, 48.62955669239661],\n            [-1.276431474171338, 48.62953261921744],\n            [-1.276403627502667, 48.62950970422958],\n            [-1.276373579541288, 48.62948804555684],\n            [-1.276341458957355, 48.62946773594337],\n            [-1.276307403296164, 48.6294488623562],\n            [-1.276271558388262, 48.62943150561351],\n            [-1.276234077725409, 48.62941574003775],\n            [-1.276195121803521, 48.6294016331381],\n            [-1.276161207521118, 48.62939105940949],\n            [-1.275671663920481, 48.62924924003848],\n            [-1.275492489760233, 48.62898925064763],\n            [-1.275486581611802, 48.62898090504945],\n            [-1.275466014858981, 48.62895482907335],\n            [-1.275442919368202, 48.62892970058087],\n            [-1.27541739404031, 48.6289056271748],\n            [-1.275389548180392, 48.62888271193941],\n            [-1.275359501029845, 48.62886105299981],\n            [-1.275327381255464, 48.62884074310104],\n            [-1.27529332639883, 48.62882186921168],\n            [-1.275257482287291, 48.62880451215092],\n            [-1.27522000240913, 48.62878874624272],\n            [-1.275181047256886, 48.62877463899758],\n            [-1.275140783639706, 48.62876225082345],\n            [-1.275099383969454, 48.62875163476729],\n            [-1.275057025521884, 48.62874283628743],\n            [-1.275013889678187, 48.62873589305924],\n            [-1.27497016114839, 48.62873083481405],\n            [-1.27492602717981, 48.62872768321159],\n            [-1.274881676755937, 48.62872645174691],\n            [-1.274837299786977, 48.62872714569336],\n            [-1.274793086296908, 48.62872976207931],\n            [-1.274749225609726, 48.62873428970139],\n            [-1.274705905538696, 48.62874070917206],\n            [-1.274663311582513, 48.62874899300289],\n            [-1.274621626130543, 48.62875910572227],\n            [-1.27458102768272, 48.62877100402689],\n            [-1.274541690084141, 48.62878463696774],\n            [-1.274503781781624, 48.6287999461679],\n            [-1.274467465102001, 48.62881686607237],\n            [-1.274432895557254, 48.62883532422917],\n            [-1.274400221178191, 48.62885524159934],\n            [-1.274369581881332, 48.62887653289518],\n            [-1.274368141964546, 48.62887767449459],\n            [-1.274112634600479, 48.62880506445049],\n            [-1.274110664267603, 48.6288045069584],\n            [-1.274069264779765, 48.62879389052982],\n            [-1.27402690647684, 48.62878509166895],\n            [-1.273983770739078, 48.62877814805286],\n            [-1.273940042276147, 48.6287730894144],\n            [-1.273895908334985, 48.62876993741489],\n            [-1.273851557899102, 48.62876870555136],\n            [-1.273807180878683, 48.62876939909858],\n            [-1.273762967297927, 48.62877201508685],\n            [-1.273719106481228, 48.62877654231436],\n            [-1.273675786242452, 48.62878296139539],\n            [-1.273633192080914, 48.62879124484307],\n            [-1.273591506386937, 48.62880135718748],\n            [-1.273550907661476, 48.62881325512687],\n            [-1.273511569750807, 48.62882688771389],\n            [-1.273473661103046, 48.62884219657295],\n            [-1.273437344046604, 48.62885911615073],\n            [-1.273402774095023, 48.62887757399658],\n            [-1.273370099280788, 48.62889749107276],\n            [-1.273367464774375, 48.62889932174514],\n            [-1.273164671443967, 48.62886962389136],\n            [-1.273156766475247, 48.62886849895794],\n            [-1.273113038016893, 48.62886344000381],\n            [-1.273068904048333, 48.6288602876856],\n            [-1.273024553553057, 48.62885905550176],\n            [-1.272980176441572, 48.62885974872856],\n            [-1.272935962738453, 48.62886236439756],\n            [-1.272892101768597, 48.62886689130828],\n            [-1.272848781346547, 48.62887331007648],\n            [-1.272806186972439, 48.62888159321653],\n            [-1.272764501037436, 48.62889170525982],\n            [-1.272723902043569, 48.62890360290601],\n            [-1.272684563838196, 48.62891723520881],\n            [-1.27264665487081, 48.62893254379409],\n            [-1.272610337471123, 48.62894946310952],\n            [-1.272575767154114, 48.62896792070561],\n            [-1.272543091953908, 48.62898783754575],\n            [-1.272512451790582, 48.62900912834459],\n            [-1.2724839778701, 48.62903170193331],\n            [-1.27245779212303, 48.62905546165024],\n            [-1.272434006682353, 48.62908030575392],\n            [-1.272412723403174, 48.62910612785977],\n            [-1.272394033426447, 48.62913281739495],\n            [-1.272378016788911, 48.62916026007208],\n            [-1.272364742079959, 48.62918833837837],\n            [-1.272354266147997, 48.62921693207945],\n            [-1.272346633857358, 48.62924591873325],\n            [-1.272341877895193, 48.62927517421512],\n            [-1.27234001863243, 48.62930457324894],\n            [-1.272341064035654, 48.6293339899437],\n            [-1.272002426905177, 48.62934663563155],\n            [-1.271958212723461, 48.62934925092301],\n            [-1.271914351241295, 48.62935377745916],\n            [-1.27187103027538, 48.6293601958573],\n            [-1.271828435328191, 48.62936847863344],\n            [-1.271786748793407, 48.62937859032057],\n            [-1.271746149175559, 48.62939048761975],\n            [-1.271706810324722, 48.62940411958631],\n            [-1.271668900693128, 48.62941942784746],\n            [-1.271632582613305, 48.62943634685232],\n            [-1.27159801160321, 48.62945480415268],\n            [-1.271565335699867, 48.62947472071324],\n            [-1.271534694826408, 48.62949601124987],\n            [-1.271506220191838, 48.62951858459486],\n            [-1.271480033729739, 48.62954234408748],\n            [-1.271456247576233, 48.62956718798733],\n            [-1.2714349635894, 48.62959300991069],\n            [-1.271416272913253, 48.62961969928552],\n            [-1.271400255587527, 48.62964714182504],\n            [-1.271386980204594, 48.62967522001717],\n            [-1.271376503615718, 48.62970381362797],\n            [-1.271368870688008, 48.6297328002157],\n            [-1.271364114111415, 48.62976205565609],\n            [-1.271362254259423, 48.62979145467315],\n            [-1.271363299101176, 48.62982087137595],\n            [-1.27131908446958, 48.62982348642057],\n            [-1.27127522251657, 48.62982801271183],\n            [-1.271231901060868, 48.62983443086799],\n            [-1.271189305607103, 48.62984271340621],\n            [-1.271147618551036, 48.62985282486037],\n            [-1.271107018399456, 48.62986472193265],\n            [-1.271067679004754, 48.62987835367926],\n            [-1.271029768821441, 48.62989366172841],\n            [-1.270993450184503, 48.62991058053009],\n            [-1.270958878614157, 48.62992903763698],\n            [-1.270926202149942, 48.62994895401464],\n            [-1.270895560717311, 48.62997024437959],\n            [-1.270867085527705, 48.629992817565],\n            [-1.270840898517065, 48.63001657691076],\n            [-1.27081711182381, 48.63004142067713],\n            [-1.27079582730846, 48.63006724248098],\n            [-1.270777136117205, 48.6300939317507],\n            [-1.270768737002421, 48.63010832149103],\n            [-1.270748108827373, 48.63011546938297],\n            [-1.270710198368221, 48.63013077732609],\n            [-1.270673879452686, 48.63014769602617],\n            [-1.270639307602244, 48.63016615303633],\n            [-1.270606630857574, 48.63018606932251],\n            [-1.270575989145366, 48.63020735960169],\n            [-1.270547513678202, 48.63022993270727],\n            [-1.270521326393261, 48.63025369197963],\n            [-1.270497539430202, 48.63027853567924],\n            [-1.270476254650563, 48.63030435742331],\n            [-1.270457563201715, 48.6303310466405],\n            [-1.270441545126748, 48.63035848904473],\n            [-1.270428269021213, 48.63038656712455],\n            [-1.270417791739471, 48.63041516064634],\n            [-1.270410158151609, 48.63044414716888],\n            [-1.270405400950416, 48.6304734025682],\n            [-1.270403540512013, 48.63050280156834],\n            [-1.270403831115774, 48.63051098757071],\n            [-1.269696647122409, 48.6308507515911],\n            [-1.269387286293295, 48.63081539471862],\n            [-1.269591415060345, 48.63040478229461],\n            [-1.26962061355181, 48.63038974478197],\n            [-1.269646975132468, 48.63037545061887],\n            [-1.269679652379816, 48.63035553460676],\n            [-1.269710294561568, 48.63033424456759],\n            [-1.269738770463325, 48.63031167167024],\n            [-1.269764958147905, 48.63028791257698],\n            [-1.269783429072655, 48.6302689424058],\n            [-1.269972774302031, 48.63006332556572],\n            [-1.270837377181262, 48.62961803610125],\n            [-1.27086374046252, 48.62960374039527],\n            [-1.270896416727314, 48.62958382403507],\n            [-1.270927057924234, 48.62956253366936],\n            [-1.270955532843516, 48.62953996046845],\n            [-1.270981719551998, 48.62951620109574],\n            [-1.271000190322731, 48.62949723008906],\n            [-1.271453234019169, 48.62900522306961],\n            [-1.272652962782044, 48.6283166265759],\n            [-1.272684171721257, 48.62829754860034],\n            [-1.272714811378648, 48.62827625775458],\n            [-1.272743284768274, 48.62825368410735],\n            [-1.272768377102465, 48.62823098405403],\n            [-1.273645429307686, 48.62738310290778],\n            [-1.273949098929395, 48.62725753664032],\n            [-1.273961776129604, 48.62725216425382],\n            [-1.273998091850055, 48.62723524450809],\n            [-1.274032660455133, 48.62721678648071],\n            [-1.27406533391575, 48.62719686921344],\n            [-1.274095972318805, 48.62717557799676],\n            [-1.274124444466025, 48.62715300400457],\n            [-1.274150628436297, 48.62712924390388],\n            [-1.27417441210735, 48.62710439944071],\n            [-1.274195693636009, 48.62707857700433],\n            [-1.274202323770031, 48.62706962064916],\n            [-1.274270370676081, 48.62697506064556],\n            [-1.274518237774007, 48.6272405972539],\n            [-1.274527630496047, 48.62725037550652],\n            [-1.274553154558731, 48.62727444911334],\n            [-1.274580999147905, 48.62729736455424],\n            [-1.274611045029868, 48.62731902370021],\n            [-1.274643163543876, 48.62733933380176],\n            [-1.274677217153428, 48.62735820788618],\n            [-1.274713060034711, 48.62737556513017],\n            [-1.274749568279499, 48.62739095119848],\n            [-1.27626417716405, 48.62798516506544],\n            [-1.276265147608915, 48.62798554505973],\n            [-1.276304102454224, 48.62799965193681],\n            [-1.276344365747604, 48.6280120397025],\n            [-1.276385765072152, 48.6280226553091],\n            [-1.276428123145741, 48.62803145329792],\n            [-1.276471258580725, 48.62803839599373],\n            [-1.276514986659683, 48.62804345366585],\n            [-1.276559120127703, 48.6280466046562],\n            [-1.276603469993463, 48.62804783547129],\n            [-1.276647846339021, 48.6280471408405],\n            [-1.276684399891825, 48.62804497711546],\n            [-1.276687877050087, 48.62804485430479],\n            [-1.276692059886724, 48.62804452804312],\n            [-1.278771380745858, 48.62788449453407],\n            [-1.27877556280168, 48.62788416389157],\n            [-1.278819422385624, 48.62787963472728],\n            [-1.278862741190607, 48.62787321370021],\n            [-1.278905333714195, 48.62786492830708],\n            [-1.278947017564607, 48.62785481402794],\n            [-1.278987614240947, 48.62784291417496],\n            [-1.279026949898898, 48.62782927970621],\n            [-1.279064856094181, 48.62781396900802],\n            [-1.27910117050422, 48.62779704764463],\n            [-1.279135737623387, 48.62777858807751],\n            [-1.279168409429128, 48.627758669355],\n            [-1.279199046015016, 48.62773737677382],\n            [-1.279227516190893, 48.62771480151384],\n            [-1.279253698044038, 48.62769104024716],\n            [-1.279277479461234, 48.62766619472512],\n            [-1.279298758608918, 48.62764037134134],\n            [-1.279314707002863, 48.62761789159951],\n            [-1.279789656554071, 48.62689738999161],\n            [-1.279792393841488, 48.62689317905749],\n            [-1.279808405714396, 48.62686573533979],\n            [-1.27982167565748, 48.62683765616672],\n            [-1.279832146851132, 48.62680906177859],\n            [-1.279839774460696, 48.62678007462175],\n            [-1.279844525828255, 48.62675081882422],\n            [-1.279846380612661, 48.62672141966406],\n            [-1.279845330876583, 48.62669200303325],\n            [-1.279841381120181, 48.62666269489817],\n            [-1.279834548262022, 48.62663362076055],\n            [-1.279824861566117, 48.62660490511973],\n            [-1.279812362517101, 48.62657667093986],\n            [-1.279797104642177, 48.62654903912302],\n            [-1.279779153281699, 48.62652212799178],\n            [-1.279758585309454, 48.62649605278263],\n            [-1.279757528703951, 48.62649481831334],\n            [-1.279652071250022, 48.62637206012624],\n            [-1.279875272508158, 48.62607205191524],\n            [-1.281753461943795, 48.62495505370313],\n            [-1.281775772328495, 48.62494117003791],\n            [-1.281806406096058, 48.62491987675553],\n            [-1.281834873508565, 48.62489730084347],\n            [-1.281853013602492, 48.62488118913314],\n            [-1.281992969806598, 48.62475090412556],\n            [-1.282001008826768, 48.62474325395918],\n            [-1.282024787494682, 48.62471840786216],\n            [-1.282046063986311, 48.6246925839633],\n            [-1.282064747195131, 48.6246658928459],\n            [-1.282080757120157, 48.62463844880679],\n            [-1.282094025208265, 48.62461036936661],\n            [-1.2821044946474, 48.62458177476684],\n            [-1.282112120610581, 48.62455278745478],\n            [-1.282116870446906, 48.62452353155894],\n            [-1.282118723821819, 48.62449413235807],\n            [-1.282117672803986, 48.62446471574414],\n            [-1.282113721899103, 48.62443540768351],\n            [-1.282106888030572, 48.62440633367755],\n            [-1.282097200466841, 48.62437761822509],\n            [-1.282084700696202, 48.62434938428942],\n            [-1.282069442248937, 48.6243217527716],\n            [-1.282051490467715, 48.62429484199298],\n            [-1.282030922228523, 48.62426876718838],\n            [-1.282007825610525, 48.62424364001276],\n            [-1.281982299519224, 48.62421956806305],\n            [-1.281954453263003, 48.62419665441759],\n            [-1.28192856902515, 48.62417783220956],\n            [-1.281761589950823, 48.6240631114826],\n            [-1.281757427029535, 48.62406027646122],\n            [-1.281725307737269, 48.62403996835099],\n            [-1.281691253729915, 48.62402109635866],\n            [-1.281686539751807, 48.62401867519647],\n            [-1.281092638173931, 48.62371639624983],\n            [-1.282346382912698, 48.62227399650104],\n            [-1.283017264546404, 48.62184480232968],\n            [-1.283021535787126, 48.62184204564879],\n            [-1.283052167141299, 48.62182075202924],\n            [-1.283080632242095, 48.62179817580327],\n            [-1.283106809198158, 48.62177441364735],\n            [-1.283130585917551, 48.6217495673162],\n            [-1.283151860586738, 48.62172374320732],\n            [-1.283170542107148, 48.62169705190474],\n            [-1.283186550484832, 48.62166960770618],\n            [-1.28319981717322, 48.62164152813292],\n            [-1.283210285366672, 48.62161293342695],\n            [-1.283217910243022, 48.62158394603607],\n            [-1.283222659156424, 48.6215546900892],\n            [-1.283224511776062, 48.62152529086523]\n          ],\n          [\n            [-1.228405273609063, 48.63323697927023],\n            [-1.228373524950881, 48.63325630711471],\n            [-1.228342863504479, 48.63327758608698],\n            [-1.228314367358256, 48.6333001486841],\n            [-1.228288158537942, 48.63332389829133],\n            [-1.228269668795805, 48.63334286399222],\n            [-1.228073423058105, 48.63355570015795],\n            [-1.228004273534877, 48.6335821889051],\n            [-1.227972352325202, 48.63359520943156],\n            [-1.227936016544877, 48.63361211457213],\n            [-1.227901426642934, 48.63363055867426],\n            [-1.227868730737751, 48.63365046275892],\n            [-1.227838068837712, 48.63367174159557],\n            [-1.227809572241789, 48.63369430406654],\n            [-1.22779648123575, 48.6337061664686],\n            [-1.227835302957707, 48.63357623718851],\n            [-1.227841527941735, 48.63355192164688],\n            [-1.227846310180241, 48.6335226680258],\n            [-1.227848195594525, 48.63349326972713],\n            [-1.227847176116204, 48.63346385263888],\n            [-1.227843256115759, 48.63343454272958],\n            [-1.227836452384361, 48.63340546550847],\n            [-1.22782679406138, 48.63337674548815],\n            [-1.227816528907832, 48.63335303684518],\n            [-1.227551568345862, 48.63279887084621],\n            [-1.227549361996159, 48.63279433964719],\n            [-1.227534130938863, 48.63276670088419],\n            [-1.227516205315198, 48.63273978157721],\n            [-1.227513500665574, 48.63273634740746],\n            [-1.227545221184305, 48.63275642859933],\n            [-1.227579260787302, 48.63277531667875],\n            [-1.227615091274279, 48.63279268865445],\n            [-1.227652559211712, 48.63280847013521],\n            [-1.227691504154242, 48.63282259354083],\n            [-1.227731759330795, 48.63283499839128],\n            [-1.227745668272853, 48.63283880275819],\n            [-1.228026052989257, 48.63291309183324],\n            [-1.228405273609063, 48.63323697927023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.262664007482672, 48.59801431075241],\n            [-1.262662968383006, 48.59798489391701],\n            [-1.262659030879443, 48.5979555851424],\n            [-1.262652211837911, 48.59792650993304],\n            [-1.26264254046345, 48.59789779279289],\n            [-1.262630058175067, 48.59786955669247],\n            [-1.262614818427883, 48.59784192254202],\n            [-1.262596886484972, 48.59781500867436],\n            [-1.262576339136929, 48.59778893033752],\n            [-1.262553264373569, 48.59776379920143],\n            [-1.262527761006931, 48.59773972288009],\n            [-1.262499938248054, 48.59771680447032],\n            [-1.262469915239455, 48.59769514211074],\n            [-1.262437820544413, 48.5976748285613],\n            [-1.262403791597453, 48.59765595080577],\n            [-1.262367974114633, 48.59763858968024],\n            [-1.262330521470347, 48.59762281952594],\n            [-1.262291594040508, 48.59760870787162],\n            [-1.262257702418959, 48.59759812952174],\n            [-1.261444686919695, 48.59736233454655],\n            [-1.261438343075305, 48.59736052012381],\n            [-1.26139697211201, 48.59734989909548],\n            [-1.261354642474715, 48.59734109553191],\n            [-1.261311535421268, 48.59733414713043],\n            [-1.261267835538396, 48.5973290836444],\n            [-1.261223729950733, 48.59732592675577],\n            [-1.261179407520268, 48.59732468998261],\n            [-1.261135058037362, 48.59732537862071],\n            [-1.261090871408246, 48.59732798972133],\n            [-1.261047036841909, 48.59733251210368],\n            [-1.261003742039826, 48.5973389264027],\n            [-1.260961172392459, 48.59734720515201],\n            [-1.260919510185055, 48.59735731290185],\n            [-1.260878933817968, 48.59736920637014],\n            [-1.260839617041973, 48.59738283462858],\n            [-1.260801728214498, 48.59739813932027],\n            [-1.260765429579041, 48.59741505490967],\n            [-1.260730876570226, 48.59743350896311],\n            [-1.260698217148339, 48.59745342245916],\n            [-1.26066759116557, 48.59747471012703],\n            [-1.260639129767152, 48.59749728081107],\n            [-1.260612954830354, 48.59752103786196],\n            [-1.260589178441556, 48.59754587954995],\n            [-1.260567902417213, 48.59757169950064],\n            [-1.260549217867186, 48.59759838715041],\n            [-1.26053320480495, 48.59762582821987],\n            [-1.260519931804631, 48.59765390520345],\n            [-1.260509455707282, 48.59768249787204],\n            [-1.260501821377913, 48.59771148378819],\n            [-1.260497061512491, 48.59774073883042],\n            [-1.260495196498548, 48.59777013772445],\n            [-1.260496234327311, 48.5977995545799],\n            [-1.260500170559851, 48.59782886342913],\n            [-1.260502533204371, 48.59784043920406],\n            [-1.26068589218455, 48.59865869617723],\n            [-1.260690347461777, 48.59867619573216],\n            [-1.260700017872409, 48.59870491303608],\n            [-1.260712499285572, 48.59873314934578],\n            [-1.260727738258476, 48.59876078374815],\n            [-1.260745669539156, 48.59878769790737],\n            [-1.260766216346592, 48.59881377657148],\n            [-1.26078929069922, 48.59883890806648],\n            [-1.260814793791318, 48.59886298477383],\n            [-1.260842616416502, 48.59888590359184],\n            [-1.260872639435033, 48.59890756637692],\n            [-1.260904734284372, 48.59892788036397],\n            [-1.260938763528894, 48.59894675856394],\n            [-1.260974581449463, 48.59896412013557],\n            [-1.261012034666751, 48.59897989073242],\n            [-1.261046994967765, 48.59899266348113],\n            [-1.261447711504358, 48.5991290247514],\n            [-1.261451679356045, 48.59913036407725],\n            [-1.261491915909994, 48.59914275708487],\n            [-1.261533288366374, 48.59915337807792],\n            [-1.261575619558406, 48.59916218157462],\n            [-1.261618728213312, 48.5991691298759],\n            [-1.261662429728399, 48.59917419322756],\n            [-1.261706536962524, 48.59917734994673],\n            [-1.261750861036715, 48.59917858651572],\n            [-1.261795212143482, 48.59917789763902],\n            [-1.261839400359428, 48.5991752862667],\n            [-1.261883236458838, 48.59917076358131],\n            [-1.261926532723912, 48.59916434895025],\n            [-1.261969103748877, 48.59915606984265],\n            [-1.262010767233879, 48.59914596171171],\n            [-1.262051344765294, 48.59913406784322],\n            [-1.262090662580837, 48.5991204391698],\n            [-1.262128552312529, 48.59910513405278],\n            [-1.262164851708398, 48.59908821803263],\n            [-1.262199405327045, 48.59906976354785],\n            [-1.262232065203728, 48.59904984962498],\n            [-1.2622626914831, 48.59902856154037],\n            [-1.262291153019188, 48.59900599045445],\n            [-1.262317327936222, 48.59898223302151],\n            [-1.262341104150659, 48.59895739097645],\n            [-1.262362379851261, 48.598931570698],\n            [-1.262381063934981, 48.59890488275408],\n            [-1.262397076396957, 48.59887744142787],\n            [-1.262410348673095, 48.5988493642285],\n            [-1.262420471754249, 48.59882188414993],\n            [-1.26264939976048, 48.59810306363474],\n            [-1.262649751929934, 48.59810195087174],\n            [-1.262657385082044, 48.5980729648129],\n            [-1.262662143723765, 48.59804370968134],\n            [-1.262664007482672, 48.59801431075241]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.259951358449833, 48.59677750910579],\n            [-1.259950320960319, 48.59674809224385],\n            [-1.259946385132316, 48.59671878337404],\n            [-1.259940451310562, 48.59669286667325],\n            [-1.259823344930708, 48.59626567713719],\n            [-1.259822461459552, 48.59626251846414],\n            [-1.259812792018544, 48.59623380108239],\n            [-1.259800311729302, 48.59620556467094],\n            [-1.259785074038713, 48.59617793014136],\n            [-1.259767144200699, 48.59615101582806],\n            [-1.25974659899714, 48.5961249369809],\n            [-1.259723526408521, 48.59609980527215],\n            [-1.259698025237646, 48.59607572831819],\n            [-1.259670204686183, 48.59605280921858],\n            [-1.259640183886917, 48.59603114611487],\n            [-1.259608091394093, 48.59601083177006],\n            [-1.259574064632345, 48.59599195317169],\n            [-1.259538249308718, 48.59597459115903],\n            [-1.259500798788273, 48.59595882007746],\n            [-1.25946187343783, 48.59594470745951],\n            [-1.259421639938898, 48.59593231373614],\n            [-1.259380270574244, 48.59592169197803],\n            [-1.259337942490186, 48.59591288766791],\n            [-1.259294836937639, 48.59590593850642],\n            [-1.259251138497013, 48.59590087424989],\n            [-1.259207034286729, 48.59589771658396],\n            [-1.259162713162918, 48.59589647902966],\n            [-1.259118364910288, 48.5958971668864],\n            [-1.259074179414845, 48.59589977721015],\n            [-1.259035110725622, 48.59590371249357],\n            [-1.258687945908628, 48.59594558091786],\n            [-1.258318735609614, 48.59567264666158],\n            [-1.258297990001303, 48.59565798384798],\n            [-1.258276829149192, 48.59564458859183],\n            [-1.258275631532106, 48.59563044105737],\n            [-1.258271696766173, 48.59560113212832],\n            [-1.258264880576721, 48.59557205665402],\n            [-1.258255212156456, 48.59554333913969],\n            [-1.258242732911818, 48.59551510255734],\n            [-1.258227496284858, 48.59548746781944],\n            [-1.258209567525281, 48.59546055326118],\n            [-1.258189023410072, 48.59543447413348],\n            [-1.258165951915178, 48.59540934210986],\n            [-1.258140451838667, 48.59538526480796],\n            [-1.258112632377513, 48.59536234532898],\n            [-1.258082612659901, 48.59534068181593],\n            [-1.258050521235483, 48.59532036703363],\n            [-1.258016495524355, 48.59530148797152],\n            [-1.257980681228725, 48.5952841254708],\n            [-1.257943231709739, 48.59526835387897],\n            [-1.25790430732952, 48.59525424073076],\n            [-1.2578640747656, 48.59524184645943],\n            [-1.25782270629673, 48.59523122413794],\n            [-1.25778037906543, 48.59522241925152],\n            [-1.257737274318858, 48.59521546950301],\n            [-1.257693576634047, 48.59521040465171],\n            [-1.257649473126181, 48.59520724638539],\n            [-1.257605152648353, 48.59520600822789],\n            [-1.257560804982554, 48.59520669548106],\n            [-1.255530334423245, 48.5952822925235],\n            [-1.255486149296388, 48.5952849014606],\n            [-1.255442316005351, 48.59528942169678],\n            [-1.255399022246033, 48.5952958338763],\n            [-1.255356453404481, 48.59530411054188],\n            [-1.255314791762565, 48.5953142162525],\n            [-1.255274215718201, 48.59532610773503],\n            [-1.255234899020583, 48.59533973406954],\n            [-1.25519701002702, 48.59535503690741],\n            [-1.255156778048931, 48.59534264168449],\n            [-1.25511541006839, 48.5953320183844],\n            [-1.25507308322562, 48.59532321249674],\n            [-1.255029978766578, 48.59531626172873],\n            [-1.254986281266639, 48.59531119584371],\n            [-1.254942177840328, 48.59530803653405],\n            [-1.254897857340378, 48.59530679732815],\n            [-1.254853509548899, 48.59530748353229],\n            [-1.254809324364887, 48.59531009220804],\n            [-1.254765490991137, 48.59531461218504],\n            [-1.254722197123985, 48.59532102410851],\n            [-1.254690489067425, 48.59532699728374],\n            [-1.253355816934831, 48.59560184247675],\n            [-1.253344955896982, 48.59560414558872],\n            [-1.253303293603267, 48.5956142505669],\n            [-1.253262716842036, 48.59562614133607],\n            [-1.253223399365842, 48.5956397669794],\n            [-1.253185509535248, 48.59565506915105],\n            [-1.253175382432152, 48.59565978765932],\n            [-1.252865074545886, 48.59365920604927],\n            [-1.252863639256538, 48.59365074067758],\n            [-1.25285764402191, 48.59362458518964],\n            [-1.252585381295466, 48.59263384110065],\n            [-1.252584563758907, 48.59263092078733],\n            [-1.25257489914268, 48.59260220278884],\n            [-1.252562423811752, 48.59257396558297],\n            [-1.252547191191886, 48.5925463300848],\n            [-1.252529266515183, 48.5925194146327],\n            [-1.252508726541501, 48.59249333448146],\n            [-1.252485659229001, 48.59246820130903],\n            [-1.252460163357647, 48.59244412273797],\n            [-1.252432348106505, 48.59242120187489],\n            [-1.25241487697886, 48.59240824724332],\n            [-1.251979031592758, 48.59209737695413],\n            [-1.251966487352612, 48.59208866653147],\n            [-1.251934400467683, 48.592068350031],\n            [-1.251900379246742, 48.59204946914733],\n            [-1.251864569372736, 48.59203210472995],\n            [-1.251827124187523, 48.5920163311342],\n            [-1.251788204035023, 48.59200221590357],\n            [-1.25174797557454, 48.59198981948016],\n            [-1.2517066110674, 48.59197919494619],\n            [-1.251664287638739, 48.59197038779638],\n            [-1.251621186519885, 48.59196343574321],\n            [-1.251577492272165, 48.5919583685559],\n            [-1.251533391996014, 48.59195520793214],\n            [-1.251489074530776, 48.59195396740589],\n            [-1.251444729645432, 48.59195465228925],\n            [-1.251400547226629, 48.59195725964946],\n            [-1.251356716465288, 48.59196177832161],\n            [-1.251313425046599, 48.59196818895667],\n            [-1.251270858346494, 48.591976464104],\n            [-1.251229198637651, 48.5919865683291],\n            [-1.251188624309814, 48.59199845836513],\n            [-1.251149309104682, 48.59201208329835],\n            [-1.25111142137331, 48.59202738478619],\n            [-1.251075123354419, 48.59204429730681],\n            [-1.251040570480038, 48.59206274843972],\n            [-1.25100791070957, 48.59208265917602],\n            [-1.250977283897043, 48.59210394425647],\n            [-1.250948821191211, 48.59212651253684],\n            [-1.250922644474657, 48.59215026737801],\n            [-1.250898865841694, 48.59217510705953],\n            [-1.250877587118231, 48.59220092521575],\n            [-1.250858899425718, 48.59222761129072],\n            [-1.250842882791099, 48.59225505101182],\n            [-1.250829605803749, 48.59228312687905],\n            [-1.250819125321867, 48.59231171866839],\n            [-1.250811486229189, 48.59234070394593],\n            [-1.250809724264255, 48.59234961940842],\n            [-1.250461573890365, 48.59425912167232],\n            [-1.250458570613717, 48.59427946084583],\n            [-1.250456699867439, 48.59430885958132],\n            [-1.25045773176081, 48.59433827653275],\n            [-1.25046166188016, 48.59436758573226],\n            [-1.250468473401107, 48.59439666167287],\n            [-1.25047813716058, 48.59442537984659],\n            [-1.250490611781436, 48.59445361727698],\n            [-1.250492943577972, 48.59445823516749],\n            [-1.251077414192019, 48.59559521142408],\n            [-1.251090315022103, 48.59561822923565],\n            [-1.251108240032599, 48.59564514490879],\n            [-1.251128780566573, 48.59567122530714],\n            [-1.251151848669221, 48.59569635874895],\n            [-1.251177345561618, 48.5957204376075],\n            [-1.25120516206392, 48.59574335877172],\n            [-1.251235179062686, 48.59576502408829],\n            [-1.251267268020917, 48.59578534078098],\n            [-1.251301291528468, 48.59580422184921],\n            [-1.251315739617673, 48.59581151578874],\n            [-1.252119283414854, 48.59620600914748],\n            [-1.252140648016082, 48.59621607964807],\n            [-1.252178096422398, 48.59623185313787],\n            [-1.252217019953297, 48.59624596823284],\n            [-1.252257251929447, 48.59625836448858],\n            [-1.252298620068022, 48.59626898882127],\n            [-1.252340947220525, 48.59627779573455],\n            [-1.252384052131446, 48.59628474751499],\n            [-1.252427750214418, 48.59628981439334],\n            [-1.252471854342847, 48.59629297467178],\n            [-1.252516175651031, 48.5962942148171],\n            [-1.252560524343349, 48.59629352951876],\n            [-1.252604710506777, 48.59629092171126],\n            [-1.252648544924313, 48.59628640256212],\n            [-1.252691839885509, 48.59627999142339],\n            [-1.252734409989931, 48.59627171574932],\n            [-1.252776072941799, 48.59626161097858],\n            [-1.252816650329969, 48.59624972038235],\n            [-1.252855968392475, 48.59623609487915],\n            [-1.252893858760378, 48.59622079281705],\n            [-1.252930159178989, 48.59620387972324],\n            [-1.252930811381681, 48.59620353146014],\n            [-1.25294601231869, 48.5962263549829],\n            [-1.252966554041572, 48.59625243505064],\n            [-1.252969983170753, 48.59625641443407],\n            [-1.253096274526067, 48.59640125213645],\n            [-1.25311591479258, 48.59642240580183],\n            [-1.253141412991772, 48.59644648422193],\n            [-1.253169230789157, 48.596469404908],\n            [-1.253199249065662, 48.59649106970851],\n            [-1.253231339279068, 48.5965113858498],\n            [-1.253265364013658, 48.59653026633346],\n            [-1.253301177569539, 48.59654763030848],\n            [-1.253338626586067, 48.59656340341826],\n            [-1.25337755069856, 48.5965775181183],\n            [-1.25341778322527, 48.59658991396594],\n            [-1.253459151880971, 48.59660053787889],\n            [-1.253501479515129, 48.59660934436283],\n            [-1.253542907217218, 48.59661606197049],\n            [-1.254395742211183, 48.59673562503283],\n            [-1.254397419872113, 48.59673585875591],\n            [-1.25444111854913, 48.5967409248654],\n            [-1.254485223199002, 48.5967440843679],\n            [-1.254529544953849, 48.59674532373347],\n            [-1.254573894016031, 48.59674463765499],\n            [-1.254618080471026, 48.5967420290703],\n            [-1.254661915100532, 48.59673750915009],\n            [-1.254705210193203, 48.59673109724988],\n            [-1.254747780348104, 48.59672282082709],\n            [-1.254789443269178, 48.59671271532367],\n            [-1.254830020545437, 48.59670082401388],\n            [-1.254869338415356, 48.59668719781935],\n            [-1.254907228510858, 48.5966718950911],\n            [-1.254943528578389, 48.59665498135906],\n            [-1.254978083173735, 48.59663652905213],\n            [-1.255010744327796, 48.59661661718745],\n            [-1.25504137218013, 48.59659533103245],\n            [-1.255069835577649, 48.59657276173942],\n            [-1.255096012636749, 48.59654900595508],\n            [-1.255119791264716, 48.59652416540705],\n            [-1.255141069639958, 48.59649834646783],\n            [-1.255157019293216, 48.59647586953799],\n            [-1.25522963646685, 48.59636573706141],\n            [-1.255236028833706, 48.59637100381518],\n            [-1.255266047940746, 48.59639266807368],\n            [-1.255298138925216, 48.59641298363562],\n            [-1.255332164368319, 48.59643186350485],\n            [-1.255367978566886, 48.59644922683323],\n            [-1.255405428157614, 48.59646499926679],\n            [-1.255444352773365, 48.59647911326404],\n            [-1.255484585730211, 48.59649150838517],\n            [-1.255525954741108, 48.59650213155112],\n            [-1.255568282654003, 48.59651093727071],\n            [-1.255611388210127, 48.59651788783566],\n            [-1.255655086820098, 48.5965229534817],\n            [-1.255699191355242, 48.59652611251633],\n            [-1.255743512948078, 48.59652735141188],\n            [-1.255787861801767, 48.5965266648629],\n            [-1.255817773487415, 48.59652489867574],\n            [-1.255823554401863, 48.59652470773709],\n            [-1.256230543149746, 48.59795792463168],\n            [-1.255541047028008, 48.59938115419852],\n            [-1.255533319924131, 48.59939826307819],\n            [-1.255522840632357, 48.59942685528763],\n            [-1.255515203167816, 48.59945584086849],\n            [-1.255510440240224, 48.59948509570052],\n            [-1.255508572250161, 48.59951449451059],\n            [-1.255509607201626, 48.59954391140847],\n            [-1.255513540667899, 48.59957322042644],\n            [-1.255520355810229, 48.59960229605846],\n            [-1.255530023450098, 48.59963101379777],\n            [-1.255542502193576, 48.59965925066977],\n            [-1.255557738609325, 48.59968688575911],\n            [-1.255575667456272, 48.5997138007268],\n            [-1.255596211963908, 48.59973988031781],\n            [-1.255619284160441, 48.59976501285378],\n            [-1.255644785249421, 48.59978909071189],\n            [-1.255672606033038, 48.59981201078542],\n            [-1.255702627379527, 48.59983367492561],\n            [-1.255707698903188, 48.59983706624144],\n            [-1.256198454988837, 48.60016176286954],\n            [-1.25622547715802, 48.60017868687334],\n            [-1.256259505493429, 48.60019756646323],\n            [-1.256295322690277, 48.60021492949797],\n            [-1.256332775372293, 48.60023070162501],\n            [-1.256371703159067, 48.60024481530403],\n            [-1.256411939353164, 48.60025721009674],\n            [-1.256453311653609, 48.60026783292536],\n            [-1.256495642894322, 48.60027663830027],\n            [-1.256538751802245, 48.60028358851456],\n            [-1.256582453773667, 48.60028865380546],\n            [-1.256626561665486, 48.60029181248214],\n            [-1.256670886595852, 48.60029305101826],\n            [-1.256715238753678, 48.60029236411008],\n            [-1.256759428211032, 48.60028975469916],\n            [-1.256803265736901, 48.6002852339597],\n            [-1.25684656360739, 48.60027882125065],\n            [-1.256889136409773, 48.60027054403302],\n            [-1.256930801836662, 48.60026043775189],\n            [-1.256971381466119, 48.60024854568512],\n            [-1.257010701526846, 48.60023491875757],\n            [-1.257048593641232, 48.60021961532317],\n            [-1.257084895547114, 48.60020270091513],\n            [-1.257119451792359, 48.60018424796509],\n            [-1.257152114400977, 48.6001643354931],\n            [-1.257182743505889, 48.60014304876899],\n            [-1.257211207949192, 48.60012047894766],\n            [-1.257229351547495, 48.60010436687913],\n            [-1.258137644118331, 48.59925896598441],\n            [-1.258680604352984, 48.59908281891148],\n            [-1.258716194767939, 48.59907039158392],\n            [-1.258754085487661, 48.59905508758405],\n            [-1.258790385981052, 48.59903817263405],\n            [-1.258824940802077, 48.59901971916798],\n            [-1.258857601980818, 48.59899980620806],\n            [-1.258888229656414, 48.59897851902629],\n            [-1.258916692676795, 48.59895594877941],\n            [-1.258934830757792, 48.59893984067655],\n            [-1.259171199868516, 48.59871983140947],\n            [-1.259474356223216, 48.59853939698603],\n            [-1.259496456349145, 48.59852563942481],\n            [-1.259527083466228, 48.59850435207158],\n            [-1.259555545932252, 48.59848178166527],\n            [-1.259581721867451, 48.59845802485735],\n            [-1.259605499183967, 48.59843318337989],\n            [-1.259626776065823, 48.59840736360928],\n            [-1.259645461404939, 48.59838067611123],\n            [-1.259661475191016, 48.59835323516699],\n            [-1.259674748854365, 48.59832515828409],\n            [-1.259685225559388, 48.59829656569279],\n            [-1.25969286044753, 48.59826757983201],\n            [-1.259694945031975, 48.59825685489147],\n            [-1.259946817523598, 48.59682543806711],\n            [-1.259949493152837, 48.59680690799236],\n            [-1.259951358449833, 48.59677750910579]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.254579729149947, 48.59822121266042],\n            [-1.254578694768946, 48.59819179575207],\n            [-1.254574761954692, 48.59816248669985],\n            [-1.254567947553149, 48.59813341100927],\n            [-1.254558280749611, 48.59810469318647],\n            [-1.254545802943203, 48.59807645620485],\n            [-1.25453056757024, 48.59804882097853],\n            [-1.254512639874632, 48.59802190584469],\n            [-1.254492096629147, 48.59799582605688],\n            [-1.254469025805975, 48.59797069329133],\n            [-1.254443526200109, 48.59794661516895],\n            [-1.25441570700658, 48.59792369479444],\n            [-1.254385687352557, 48.59790203031459],\n            [-1.25436673900003, 48.59789003491503],\n            [-1.254375526750358, 48.59787937250336],\n            [-1.254394214676664, 48.59785268586207],\n            [-1.254410231156526, 48.59782524565184],\n            [-1.254423507608784, 48.59779716937713],\n            [-1.25443398718565, 48.59776857726585],\n            [-1.254441625016658, 48.59773959175458],\n            [-1.254446388400006, 48.59771033696431],\n            [-1.254448256943366, 48.59768093816884],\n            [-1.254447222650275, 48.59765152125848],\n            [-1.254443289954745, 48.5976222122009],\n            [-1.254436475702223, 48.59759313650175],\n            [-1.254426809077383, 48.59756441866699],\n            [-1.254414331478548, 48.59753618167021],\n            [-1.254399096341237, 48.59750854642555],\n            [-1.254381168908259, 48.59748163127037],\n            [-1.254360625951283, 48.59745555145822],\n            [-1.254337555441141, 48.59743041866553],\n            [-1.254312056171765, 48.59740634051322],\n            [-1.254284237336669, 48.59738342010597],\n            [-1.254254218061284, 48.59736175559107],\n            [-1.254222126893361, 48.59734143973743],\n            [-1.254188101251836, 48.59732255953907],\n            [-1.254152286838941, 48.59730519584223],\n            [-1.254114837015858, 48.59728942299935],\n            [-1.254075912146411, 48.59727530855058],\n            [-1.254035678910148, 48.59726291293472],\n            [-1.25399430958856, 48.59725228923053],\n            [-1.253951981327723, 48.59724348292905],\n            [-1.253916774952248, 48.59723765800342],\n            [-1.253497660559697, 48.59717616737184],\n            [-1.253489761006026, 48.59717504107898],\n            [-1.253446062047994, 48.59716997460642],\n            [-1.253401957090288, 48.59716681470356],\n            [-1.253357634992236, 48.5971655749013],\n            [-1.253313285542723, 48.5971662605085],\n            [-1.2532690986479, 48.59716886858938],\n            [-1.253225263517834, 48.59717338797604],\n            [-1.253181967856458, 48.59717979931626],\n            [-1.253139397057852, 48.59718807515635],\n            [-1.253097733412258, 48.59719818005896],\n            [-1.253057155326247, 48.59721007075426],\n            [-1.253017836557686, 48.59722369632577],\n            [-1.252979945472796, 48.59723899842815],\n            [-1.252943644324689, 48.59725591153686],\n            [-1.25290908855882, 48.597274363229],\n            [-1.252876426146965, 48.59729427449319],\n            [-1.252845796954463, 48.59731556006806],\n            [-1.252817332140237, 48.59733812880711],\n            [-1.252791153595885, 48.59736188406926],\n            [-1.252767373423613, 48.59738672413238],\n            [-1.252746093455865, 48.59741254262912],\n            [-1.252727404819447, 48.59743922900204],\n            [-1.25271138754534, 48.59746666897733],\n            [-1.252698110225676, 48.59749474505379],\n            [-1.252687629720053, 48.59752333700656],\n            [-1.252679990912307, 48.59755232240108],\n            [-1.252675226517568, 48.59758157711809],\n            [-1.252673356942813, 48.59761097588475],\n            [-1.252674390198794, 48.59764039281117],\n            [-1.252678321866105, 48.5976697019295],\n            [-1.252685023359526, 48.59769830081823],\n            [-1.252679475384746, 48.59770054129492],\n            [-1.252643173803025, 48.5977174543079],\n            [-1.252608617610178, 48.59773590590888],\n            [-1.252575954780237, 48.59775581708682],\n            [-1.252545325180001, 48.59777710258079],\n            [-1.252516859970052, 48.59779967124452],\n            [-1.252490681044125, 48.59782342643738],\n            [-1.252466900505647, 48.59784826643747],\n            [-1.252445620188778, 48.59787408487775],\n            [-1.252426931221824, 48.59790077120097],\n            [-1.252410913637165, 48.59792821113346],\n            [-1.252397636028273, 48.59795628717443],\n            [-1.252387155255943, 48.59798487909906],\n            [-1.252379516205231, 48.59801386447276],\n            [-1.252374751592247, 48.59804311917658],\n            [-1.252372881824926, 48.5980725179376],\n            [-1.252373914914839, 48.59810193486606],\n            [-1.252377846443302, 48.59813124399403],\n            [-1.252384659579837, 48.59816031981494],\n            [-1.252394325154478, 48.59818903782123],\n            [-1.252406801782209, 48.59821727503727],\n            [-1.252415245537604, 48.59823327715994],\n            [-1.252836850810517, 48.59898641926226],\n            [-1.252843641512518, 48.59899805262291],\n            [-1.252861568663461, 48.59902496801673],\n            [-1.252882111484306, 48.59905104809576],\n            [-1.252905182010495, 48.5990761811798],\n            [-1.252930681452773, 48.59910025964346],\n            [-1.252958500620303, 48.5991231803775],\n            [-1.252988520388354, 48.59914484523033],\n            [-1.253020612207896, 48.59916516142785],\n            [-1.253054638656694, 48.5991840419715],\n            [-1.253090454027523, 48.59920140601011],\n            [-1.253127904951665, 48.59921717918667],\n            [-1.253166831056545, 48.59923129395642],\n            [-1.2532070656518, 48.5992436898764],\n            [-1.253248436443413, 48.59925431386409],\n            [-1.253290766271475, 48.59926312042469],\n            [-1.253333873869247, 48.59927007184644],\n            [-1.25337757463859, 48.59927513836125],\n            [-1.2534216814415, 48.59927829827314],\n            [-1.253466005400803, 48.59927953805043],\n            [-1.253510356709588, 48.5992788523841],\n            [-1.25355454544354, 48.59927624421039],\n            [-1.253598382374725, 48.59927172469814],\n            [-1.253641679781825, 48.59926531320109],\n            [-1.253684252254093, 48.59925703717507],\n            [-1.253725917485558, 48.59924693206003],\n            [-1.253766497055102, 48.59923504112891],\n            [-1.253805817191649, 48.59922141530161],\n            [-1.253843709517346, 48.59920611292741],\n            [-1.253880011769091, 48.59918919953497],\n            [-1.253914568493293, 48.59917074755153],\n            [-1.253947231711843, 48.59915083599297],\n            [-1.253977861555105, 48.59912955012546],\n            [-1.254006326861876, 48.59910698109994],\n            [-1.254032505740221, 48.59908322556196],\n            [-1.254056286089591, 48.59905838523816],\n            [-1.2540775660811, 48.59903256650014],\n            [-1.254087185345545, 48.59901940199093],\n            [-1.254516617729897, 48.59840648252719],\n            [-1.254525686751831, 48.59839296041072],\n            [-1.254541703331873, 48.59836552018291],\n            [-1.254554979853315, 48.59833744389379],\n            [-1.254565459467951, 48.59830885177131],\n            [-1.254573097305214, 48.59827986625212],\n            [-1.254577860663282, 48.59825061145719],\n            [-1.254579729149947, 48.59822121266042]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.244934546089271, 48.67804491730051],\n            [-1.24493351570951, 48.67801550045651],\n            [-1.244929582273873, 48.67798619122375],\n            [-1.244922762630942, 48.67795711510864],\n            [-1.244913085988195, 48.67792839661905],\n            [-1.244900593787321, 48.67790015873122],\n            [-1.244885339525867, 48.67787252236315],\n            [-1.244867388529058, 48.67784560585709],\n            [-1.244846817669123, 48.67781952447222],\n            [-1.244823715036516, 48.67779438989174],\n            [-1.244798179562681, 48.6777703097443],\n            [-1.244770320596167, 48.67774738714329],\n            [-1.244740257434367, 48.67772572024498],\n            [-1.244708114408646, 48.67770539922147],\n            [-1.244394223785472, 48.67751957179928],\n            [-1.244360156378717, 48.67750069399133],\n            [-1.244324288243035, 48.67748332730861],\n            [-1.244286781778041, 48.67746755133128],\n            [-1.244247797590103, 48.67745343361273],\n            [-1.244207502612789, 48.67744103460591],\n            [-1.244166069391914, 48.67743040740402],\n            [-1.24412367534726, 48.67742159751309],\n            [-1.244080502012313, 48.67741464265776],\n            [-1.244036734257672, 48.67740957261869],\n            [-1.243992559498541, 48.67740640910624],\n            [-1.24394816689311, 48.67740516566649],\n            [-1.24390374653222, 48.67740584762402],\n            [-1.24385948862564, 48.67740845205869],\n            [-1.243815582687555, 48.67741296781817],\n            [-1.243772216724974, 48.67741937556566],\n            [-1.243729576433137, 48.67742764786315],\n            [-1.243687844399748, 48.67743774928812],\n            [-1.243647199324163, 48.67744963658599],\n            [-1.2436078152513, 48.67746325885454],\n            [-1.243569860826956, 48.67747855776268],\n            [-1.243533498575367, 48.67749546779954],\n            [-1.243498884203538, 48.67751391655522],\n            [-1.243466165934544, 48.67753382503125],\n            [-1.243435483872513, 48.6775551079779],\n            [-1.243406969403027, 48.67757767426014],\n            [-1.243380744630294, 48.67760142724728],\n            [-1.243356921854482, 48.67762626522698],\n            [-1.243335603090348, 48.67765208184079],\n            [-1.243316879630905, 48.67767876653925],\n            [-1.243300831656256, 48.67770620505586],\n            [-1.243287527889947, 48.67773427989572],\n            [-1.243278727110202, 48.67775763125716],\n            [-1.243243029203052, 48.67786443889865],\n            [-1.243238084216551, 48.67786680918647],\n            [-1.243203469480654, 48.67788525785253],\n            [-1.243170750853007, 48.67790516624355],\n            [-1.243140068439377, 48.67792644911063],\n            [-1.243111553626586, 48.67794901531867],\n            [-1.243085328520659, 48.67797276823751],\n            [-1.243061505422844, 48.6779976061552],\n            [-1.243040186349538, 48.67802342271328],\n            [-1.243021462594991, 48.6780501073628],\n            [-1.243005414340586, 48.67807754583723],\n            [-1.24299232820615, 48.67810510319966],\n            [-1.242841991643651, 48.6784612872649],\n            [-1.242391759409316, 48.67866883339746],\n            [-1.242371502997508, 48.67867854253739],\n            [-1.242336887384672, 48.67869699094068],\n            [-1.242304167885542, 48.67871689908314],\n            [-1.242273484609662, 48.67873818171695],\n            [-1.24224496894747, 48.67876074770806],\n            [-1.24221874300863, 48.67878450042718],\n            [-1.242194919098005, 48.67880933816316],\n            [-1.24217359923543, 48.67883515455851],\n            [-1.242154874718613, 48.67886183906487],\n            [-1.242138825732093, 48.67888927741626],\n            [-1.242125521003894, 48.67891735211875],\n            [-1.242115017510919, 48.67894594295304],\n            [-1.242107360235505, 48.67897492748949],\n            [-1.2421025819719, 48.67900418161258],\n            [-1.242100703186393, 48.6790335800519],\n            [-1.242101731929324, 48.67906299691909],\n            [-1.242105663800552, 48.67909230624641],\n            [-1.242112481968123, 48.67912138252655],\n            [-1.242122124389684, 48.67915001680446],\n            [-1.242373646397406, 48.67979682214535],\n            [-1.24236907001805, 48.67979816045541],\n            [-1.242329683758956, 48.67981178228248],\n            [-1.242291727172462, 48.67982708076461],\n            [-1.242255362792215, 48.67984399039293],\n            [-1.242220746334375, 48.67986243875949],\n            [-1.242188026030608, 48.67988234686713],\n            [-1.242157341994217, 48.67990362946785],\n            [-1.242128825618916, 48.67992619542803],\n            [-1.242102599017125, 48.67994994811853],\n            [-1.242078774496769, 48.67997478582815],\n            [-1.242057454080316, 48.68000060219954],\n            [-1.242038729067836, 48.68002728668452],\n            [-1.242022679645765, 48.68005472501729],\n            [-1.242009374544244, 48.68008279970378],\n            [-1.241998870741836, 48.68011139052481],\n            [-1.241991213221838, 48.68014037505091],\n            [-1.241986434779856, 48.68016962916648],\n            [-1.241984555882878, 48.68019902760129],\n            [-1.241985584581664, 48.68022844446687],\n            [-1.241989516476334, 48.68025775379556],\n            [-1.241996334734812, 48.68028683008006],\n            [-1.242006010165249, 48.68031554881061],\n            [-1.242018501340543, 48.68034378700863],\n            [-1.242021075164677, 48.68034886818891],\n            [-1.242160235583105, 48.68061825827311],\n            [-1.242172915324542, 48.68064081382126],\n            [-1.242190865876747, 48.68066773074342],\n            [-1.242211436524232, 48.68069381259918],\n            [-1.242234539183178, 48.6807189477005],\n            [-1.242260074926778, 48.68074302841349],\n            [-1.242287934408779, 48.68076595161934],\n            [-1.24231799833175, 48.6807876191557],\n            [-1.242350137957651, 48.68080793823712],\n            [-1.242384215659511, 48.68082682185255],\n            [-1.24242008551064, 48.6808441891378],\n            [-1.242457593908988, 48.68085996572192],\n            [-1.242496580235895, 48.68087408404555],\n            [-1.242536877543106, 48.6808864836505],\n            [-1.242578313268077, 48.68089711143843],\n            [-1.242620709972764, 48.68090592189839],\n            [-1.242663886104114, 48.68091287730176],\n            [-1.242707656770425, 48.68091794786353],\n            [-1.242751834534412, 48.68092111187035],\n            [-1.242796230215084, 48.68092235577296],\n            [-1.242840653698236, 48.68092167424477],\n            [-1.242884914750619, 48.68091907020415],\n            [-1.242928823834548, 48.68091455480241],\n            [-1.242972192919731, 48.68090814737559],\n            [-1.243014836288408, 48.68089987536212],\n            [-1.243056571331089, 48.68088977418474],\n            [-1.243097219327698, 48.68087788709954],\n            [-1.24313660621407, 48.68086426500998],\n            [-1.243174563326563, 48.68084896624927],\n            [-1.243210928124596, 48.68083205633063],\n            [-1.243245544886753, 48.68081360766649],\n            [-1.24327826537783, 48.68079369925844],\n            [-1.243308941607646, 48.68077242219226],\n            [-1.243589580465858, 48.68056456194125],\n            [-1.243618100485184, 48.68054199270226],\n            [-1.24364432667978, 48.68051823966611],\n            [-1.24366815068415, 48.68049340163224],\n            [-1.243689470482456, 48.68046758496224],\n            [-1.243708194782707, 48.68044090020855],\n            [-1.243724243408075, 48.68041346164064],\n            [-1.243737547639432, 48.68038538675587],\n            [-1.243748050510245, 48.68035679577614],\n            [-1.243755707050267, 48.68032781113317],\n            [-1.243760484477721, 48.68029855694417],\n            [-1.243762362339826, 48.68026915848047],\n            [-1.243762273371574, 48.68026661690132],\n            [-1.243768516252946, 48.68025930763273],\n            [-1.244400332810818, 48.67948668911869],\n            [-1.244409341009065, 48.67947528651195],\n            [-1.244428064557697, 48.67944860163864],\n            [-1.244444112473313, 48.67942116296786],\n            [-1.244457416040041, 48.67939308799748],\n            [-1.244467918294228, 48.6793644969495],\n            [-1.244475574268003, 48.67933551225626],\n            [-1.244480351182227, 48.67930625803506],\n            [-1.244482022074771, 48.6792844597129],\n            [-1.244515111585682, 48.67845601613568],\n            [-1.244550065820589, 48.67844579310498],\n            [-1.24458945040786, 48.67843217051377],\n            [-1.244627405241836, 48.67841687126918],\n            [-1.244663767791927, 48.67839996088652],\n            [-1.24469838234635, 48.67838151178032],\n            [-1.244731100679053, 48.67836160295394],\n            [-1.244761782684809, 48.67834031966181],\n            [-1.244790296978695, 48.67831775304387],\n            [-1.244816521459122, 48.67829399973563],\n            [-1.244840343830218, 48.6782691614538],\n            [-1.244861662083301, 48.67824334456137],\n            [-1.244880384933051, 48.67821665961181],\n            [-1.24489643220852, 48.67818922087513],\n            [-1.244909735196751, 48.6781611458495],\n            [-1.244920236936249, 48.67813255475745],\n            [-1.244927892461722, 48.67810357003123],\n            [-1.244932668995611, 48.67807431578845],\n            [-1.244934546089271, 48.67804491730051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.243219578099792, 48.6859187777448],\n            [-1.243218548562397, 48.68588936090333],\n            [-1.243214615510573, 48.68586005162968],\n            [-1.243207795791383, 48.68583097543035],\n            [-1.243198118612705, 48.6858022568135],\n            [-1.243185625418286, 48.68577401875609],\n            [-1.243170369710349, 48.68574638217675],\n            [-1.243152416819955, 48.68571946541848],\n            [-1.243131843627445, 48.68569338374182],\n            [-1.243108738233587, 48.68566824883111],\n            [-1.243083199581354, 48.68564416831633],\n            [-1.243055337032966, 48.68562124531255],\n            [-1.243025269901181, 48.68559957797767],\n            [-1.24299312693861, 48.68557925909313],\n            [-1.24295904578611, 48.68556037566567],\n            [-1.242923172383281, 48.6855430085554],\n            [-1.242885660344346, 48.6855272321294],\n            [-1.242846670299174, 48.68551311394322],\n            [-1.242806369206451, 48.6855007144517],\n            [-1.242764929638374, 48.68549008674998],\n            [-1.24272252904182, 48.68548127634649],\n            [-1.242687267698694, 48.68547544881101],\n            [-1.242267425868173, 48.68541391417829],\n            [-1.242259507166998, 48.68541278630602],\n            [-1.242215732631882, 48.68540771557486],\n            [-1.242171550958462, 48.68540455136253],\n            [-1.242127151334524, 48.68540330721842],\n            [-1.242082723880948, 48.68540398846992],\n            [-1.242038458837897, 48.68540659219991],\n            [-1.241994545750051, 48.68541110725908],\n            [-1.241951172655156, 48.68541751431376],\n            [-1.241908525278865, 48.68542578592879],\n            [-1.241866786239421, 48.68543588668454],\n            [-1.241826134265893, 48.68544777332929],\n            [-1.241786743432878, 48.68546139496384],\n            [-1.241748782415049, 48.68547669325947],\n            [-1.241712413764977, 48.68549360270815],\n            [-1.241677793217169, 48.6855120509026],\n            [-1.241645069020816, 48.68553195884653],\n            [-1.241614381305827, 48.68555324129258],\n            [-1.241585861481664, 48.68557580710775],\n            [-1.241559631675577, 48.6855995596636],\n            [-1.241535804209197, 48.68562439724946],\n            [-1.241524986590796, 48.68563749434271],\n            [-1.241644546652168, 48.68535428145905],\n            [-1.241644763614356, 48.68535376633652],\n            [-1.241655268713746, 48.68532517555944],\n            [-1.241662927217198, 48.68529619106752],\n            [-1.241667706334819, 48.68526693697703],\n            [-1.241669585606497, 48.68523753855907],\n            [-1.241668556990125, 48.68520812170211],\n            [-1.241664624895416, 48.68517881237371],\n            [-1.241657806165215, 48.68514973608062],\n            [-1.241648130003223, 48.68512101733144],\n            [-1.241642225427855, 48.6851076701785],\n            [-1.241915908717166, 48.68490498822995],\n            [-1.241944431950601, 48.68488241941493],\n            [-1.241970661200633, 48.68485866676972],\n            [-1.241994488089175, 48.68483382909205],\n            [-1.242015810587982, 48.68480801274203],\n            [-1.242034537393528, 48.68478132827072],\n            [-1.242050588318258, 48.68475388994639],\n            [-1.242063894633128, 48.68472581526532],\n            [-1.242074399362814, 48.68469722444857],\n            [-1.242082057529015, 48.68466823992715],\n            [-1.242086836343019, 48.68463898581781],\n            [-1.242088715346092, 48.68460958739148],\n            [-1.242087686497286, 48.68458017053685],\n            [-1.242083754207293, 48.68455086122134],\n            [-1.242076935319858, 48.68452178495176],\n            [-1.242067259039281, 48.68449306623656],\n            [-1.242054766805554, 48.68446482805296],\n            [-1.242039512116662, 48.68443719132034],\n            [-1.242021560299409, 48.68441027438226],\n            [-1.242000988229481, 48.68438419249997],\n            [-1.24197788400287, 48.6843590573588],\n            [-1.241952346557531, 48.68433497658966],\n            [-1.24192448525047, 48.68431205330871],\n            [-1.241894419389249, 48.68429038567502],\n            [-1.241862277720942, 48.68427006647138],\n            [-1.241828197880892, 48.68425118270587],\n            [-1.241792325803084, 48.68423381523996],\n            [-1.241754815096043, 48.68421803844237],\n            [-1.241715826383965, 48.68420391987014],\n            [-1.241675526619839, 48.68419151997991],\n            [-1.241634088370147, 48.68418089186832],\n            [-1.241611653643651, 48.68417622980259],\n            [-1.241840057862589, 48.68400707737588],\n            [-1.241868580620584, 48.68398450857813],\n            [-1.241894809437922, 48.68396075594858],\n            [-1.241918635938335, 48.68393591828494],\n            [-1.241939958095195, 48.68391010194722],\n            [-1.241958684606497, 48.68388341748643],\n            [-1.241974735285942, 48.68385597917077],\n            [-1.241988041405508, 48.6838279044965],\n            [-1.24199854599067, 48.68379931368474],\n            [-1.242006204063806, 48.68377032916635],\n            [-1.242010982836603, 48.68374107505811],\n            [-1.242012861850468, 48.68371167663094],\n            [-1.242011833064451, 48.68368225977355],\n            [-1.242007900888926, 48.6836529504534],\n            [-1.242006161389382, 48.68364553291259],\n            [-1.242141143355307, 48.68354556556547],\n            [-1.24216966571624, 48.68352299669198],\n            [-1.242195894150504, 48.68349924399269],\n            [-1.242219720283411, 48.68347440626558],\n            [-1.242241042089891, 48.68344858987092],\n            [-1.242259768269438, 48.68342190535999],\n            [-1.242275818637153, 48.68339446700121],\n            [-1.242289124466391, 48.68336639229098],\n            [-1.242299628783887, 48.68333780145056],\n            [-1.242307286613118, 48.68330881691107],\n            [-1.242312065166791, 48.68327956278919],\n            [-1.24231394398735, 48.68325016435606],\n            [-1.242312915034567, 48.68322074750031],\n            [-1.242308982719573, 48.68319143818946],\n            [-1.242302163886315, 48.68316236193017],\n            [-1.242292487738732, 48.68313364323087],\n            [-1.242279995716276, 48.68310540506886],\n            [-1.242264741316113, 48.68307776836327],\n            [-1.242246789863708, 48.68305085145758],\n            [-1.242226218233269, 48.68302476961295],\n            [-1.242215683189332, 48.68301330828354],\n            [-1.242423258688441, 48.68285957529984],\n            [-1.242451780533487, 48.68283700635504],\n            [-1.242478008476524, 48.68281325358993],\n            [-1.242501834144882, 48.68278841580286],\n            [-1.242523155515531, 48.68276259935436],\n            [-1.242541881289763, 48.68273591479587],\n            [-1.242557931284436, 48.68270847639617],\n            [-1.242571236774586, 48.68268040165172],\n            [-1.242581740788245, 48.68265181078393],\n            [-1.242589398350329, 48.68262282622402],\n            [-1.242594176674625, 48.68259357208886],\n            [-1.242596055304537, 48.6825641736495],\n            [-1.242595026200715, 48.68253475679471],\n            [-1.24259109377491, 48.68250544749196],\n            [-1.242584274871488, 48.68247637124791],\n            [-1.242574598694808, 48.6824476525709],\n            [-1.242562106684342, 48.68241941443812],\n            [-1.242546852337256, 48.68239177776857],\n            [-1.242528900978777, 48.68236486090563],\n            [-1.24250832948269, 48.68233877911024],\n            [-1.242485225942489, 48.68231364406726],\n            [-1.242459689293214, 48.68228956340731],\n            [-1.242431828888471, 48.68226664024594],\n            [-1.242401764031906, 48.68224497274191],\n            [-1.242369623466337, 48.68222465367724],\n            [-1.242335544822391, 48.68220577005949],\n            [-1.242299674028915, 48.68218840274961],\n            [-1.242262164688921, 48.68217262611546],\n            [-1.242223177420787, 48.68215850771354],\n            [-1.24218287917125, 48.6821461079996],\n            [-1.242141442500375, 48.6821354800697],\n            [-1.242099044842571, 48.68212666943337],\n            [-1.242063785924805, 48.68212084170458],\n            [-1.241643972874622, 48.6820593047727],\n            [-1.241636054715873, 48.68205817685707],\n            [-1.24159228316483, 48.68205310588655],\n            [-1.24154810447902, 48.68204994143317],\n            [-1.24150370783344, 48.68204869704734],\n            [-1.241459283336159, 48.68204937805739],\n            [-1.241415021214711, 48.68205198154737],\n            [-1.241371111001346, 48.68205649636892],\n            [-1.241327740721379, 48.68206290318948],\n            [-1.241285096088494, 48.68207117457477],\n            [-1.241243359709121, 48.68208127510623],\n            [-1.241202710301002, 48.68209316153303],\n            [-1.241163321927699, 48.68210678295695],\n            [-1.241125363253395, 48.68212208105017],\n            [-1.24108899682063, 48.68213899030557],\n            [-1.241054378354356, 48.68215743831664],\n            [-1.241021656094894, 48.6821773460878],\n            [-1.240990970163838, 48.68219862837257],\n            [-1.240962451963037, 48.68222119403864],\n            [-1.240936223612785, 48.6822449464581],\n            [-1.24091239742848, 48.68226978392087],\n            [-1.240891075439625, 48.68229560007076],\n            [-1.240872348953124, 48.6823222843605],\n            [-1.240856298161708, 48.68234972252508],\n            [-1.240842991801314, 48.68237779707117],\n            [-1.240832486856001, 48.68240638778029],\n            [-1.24082482831386, 48.68243537222333],\n            [-1.240820048974936, 48.68246462628516],\n            [-1.240818169310072, 48.68249402469557],\n            [-1.240819197373266, 48.68252344156639],\n            [-1.240823128767377, 48.68255275092985],\n            [-1.240829946662465, 48.6825818272785],\n            [-1.240839621868282, 48.68261054610245],\n            [-1.240852112958644, 48.6826387844225],\n            [-1.240854686782378, 48.68264386562812],\n            [-1.240924047025767, 48.68277813582048],\n            [-1.24092058261297, 48.68277914883599],\n            [-1.240881193625718, 48.68279277016226],\n            [-1.240843234347557, 48.68280806816124],\n            [-1.240806867323605, 48.68282497732622],\n            [-1.240772248281392, 48.68284342525114],\n            [-1.240739525463657, 48.68286333294072],\n            [-1.240708838994371, 48.68288461514884],\n            [-1.240680320277763, 48.68290718074352],\n            [-1.240654091436284, 48.68293093309715],\n            [-1.24063026478743, 48.68295577049997],\n            [-1.240608942362704, 48.68298158659603],\n            [-1.240590215470887, 48.68300827083824],\n            [-1.240574164306429, 48.6830357089619],\n            [-1.240560857606907, 48.68306378347377],\n            [-1.240550352357737, 48.68309237415547],\n            [-1.24054269354843, 48.68312135857809],\n            [-1.240537913980089, 48.68315061262656],\n            [-1.240536034124578, 48.68318001103087],\n            [-1.240537062036713, 48.68320942790261],\n            [-1.240540993319972, 48.68323873727418],\n            [-1.240547699315651, 48.68326733671395],\n            [-1.240542141356118, 48.68326957658968],\n            [-1.240505773896994, 48.68328648565857],\n            [-1.240471154426444, 48.68330493349185],\n            [-1.240438431189044, 48.68332484109481],\n            [-1.240407744310565, 48.68334612322155],\n            [-1.240379225196955, 48.68336868874052],\n            [-1.240352995972422, 48.68339244102442],\n            [-1.240329168956003, 48.68341727836377],\n            [-1.240307846180917, 48.68344309440289],\n            [-1.240289118957345, 48.68346977859497],\n            [-1.240273067481157, 48.68349721667546],\n            [-1.240259760491307, 48.68352529115141],\n            [-1.24024925497443, 48.68355388180449],\n            [-1.240241595921199, 48.68358286620597],\n            [-1.240236816133753, 48.6836121202408],\n            [-1.240234936084896, 48.68364151863908],\n            [-1.240235963830265, 48.6836709355125],\n            [-1.240239894974016, 48.68370024489334],\n            [-1.24024671268743, 48.68372932127408],\n            [-1.240256387780876, 48.68375804014464],\n            [-1.240268878828712, 48.68378627852572],\n            [-1.240271452652246, 48.68379135974395],\n            [-1.240410007775161, 48.6840595798357],\n            [-1.240404632655152, 48.68406037379048],\n            [-1.240361986175804, 48.68406864483102],\n            [-1.240320247952387, 48.68407874502493],\n            [-1.240279596710674, 48.6840906311226],\n            [-1.240240206522203, 48.68410425222712],\n            [-1.24020224605861, 48.68411955001244],\n            [-1.24016587787019, 48.68413645897235],\n            [-1.240131257689427, 48.68415490670182],\n            [-1.240098533764178, 48.68417481420634],\n            [-1.24006784622293, 48.6841960962408],\n            [-1.240039326474427, 48.68421866167368],\n            [-1.240013096645838, 48.6842424138782],\n            [-1.239989269058615, 48.68426725114533],\n            [-1.239976957171765, 48.68428166320464],\n            [-1.239692885818504, 48.68462895889504],\n            [-1.239632015134651, 48.68465701311774],\n            [-1.239630993618099, 48.68465644706258],\n            [-1.239595122010255, 48.68463907890984],\n            [-1.239557611690405, 48.68462330139381],\n            [-1.239518623281164, 48.6846091820749],\n            [-1.239478323734145, 48.6845967814126],\n            [-1.239436885614929, 48.68458615250732],\n            [-1.239394486364318, 48.68457734087247],\n            [-1.239351307537844, 48.68457038423979],\n            [-1.239307534029726, 48.68456531239796],\n            [-1.239263353279827, 48.68456214706481],\n            [-1.239218954471957, 48.68456090179441],\n            [-1.239174527723577, 48.684561581919],\n            [-1.239130263271733, 48.68456418452637],\n            [-1.239086350658627, 48.68456869847195],\n            [-1.239042977919946, 48.68457510442696],\n            [-1.239000330779847, 48.68458337496065],\n            [-1.23895859185543, 48.68459347465845],\n            [-1.238917939875648, 48.68460536027278],\n            [-1.238878548914695, 48.684618980909],\n            [-1.238840587648005, 48.68463427824284],\n            [-1.238804218629188, 48.68465118677014],\n            [-1.238769597594289, 48.68466963408766],\n            [-1.238736872794599, 48.68468954120281],\n            [-1.238706192238963, 48.68471081703906],\n            [-1.238425510039201, 48.68491866526829],\n            [-1.238417186554359, 48.68492525040573],\n            [-1.237639148791203, 48.68482564305124],\n            [-1.237605349430793, 48.68482189892747],\n            [-1.237561168562529, 48.68481873293844],\n            [-1.237516769570246, 48.68481748700888],\n            [-1.237472342572066, 48.68481816647388],\n            [-1.237428077806133, 48.68482076842402],\n            [-1.237384164816069, 48.68482528171756],\n            [-1.237340791639079, 48.68483168702848],\n            [-1.237298144001218, 48.68483995692888],\n            [-1.237256404521765, 48.68485005600678],\n            [-1.237243648350905, 48.68485378534642],\n            [-1.237233694379578, 48.68484896558083],\n            [-1.23719618464424, 48.68483318729254],\n            [-1.237157196735499, 48.6848190671708],\n            [-1.237119495136776, 48.68480740182307],\n            [-1.23502955450538, 48.68421167478038],\n            [-1.235026957032823, 48.68421093858871],\n            [-1.23498552017302, 48.6842003080742],\n            [-1.234943122028085, 48.6841914947929],\n            [-1.234899944149273, 48.68418453648365],\n            [-1.234856171426366, 48.68417946294214],\n            [-1.234811991295972, 48.68417629589352],\n            [-1.234808291795027, 48.68417611826649],\n            [-1.23425881494001, 48.68415073313425],\n            [-1.234186520180831, 48.68406791929154],\n            [-1.234166853636458, 48.68404676249908],\n            [-1.234141320091799, 48.68402267998964],\n            [-1.23411346252001, 48.68399975480997],\n            [-1.234083400212767, 48.68397808512763],\n            [-1.234051261901574, 48.68395776373383],\n            [-1.234017185207768, 48.68393887764601],\n            [-1.233981316051862, 48.68392150773599],\n            [-1.233943808029494, 48.68390572838248],\n            [-1.233904821753726, 48.68389160715373],\n            [-1.233870878879715, 48.68388102073224],\n            [-1.232575244079188, 48.6835055124789],\n            [-1.232568889460737, 48.68350369619243],\n            [-1.232527453703871, 48.68349306478895],\n            [-1.232485056586474, 48.68348425059821],\n            [-1.232441879655304, 48.68347729136278],\n            [-1.232398107796406, 48.68347221688259],\n            [-1.232353928442471, 48.6834690488866],\n            [-1.232309530771452, 48.68346780094045],\n            [-1.232265104895813, 48.68346847838771],\n            [-1.232220841048985, 48.68347107832769],\n            [-1.232176928770552, 48.68347558962726],\n            [-1.232133556094681, 48.68348199296896],\n            [-1.232090908745369, 48.6834902609332],\n            [-1.232049169340537, 48.68350035811641],\n            [-1.232008516611214, 48.68351224128186],\n            [-1.231969124634853, 48.6835258595453],\n            [-1.231931162091164, 48.68354115459265],\n            [-1.231894791539274, 48.68355806092958],\n            [-1.231860168721761, 48.68357650616215],\n            [-1.231827441897571, 48.68359641130677],\n            [-1.231796751207841, 48.68361769112811],\n            [-1.231768228074825, 48.6836402545044],\n            [-1.231741994639881, 48.68366400481765],\n            [-1.231718163240267, 48.68368884036673],\n            [-1.231696835927751, 48.68371465480363],\n            [-1.231680845795273, 48.68373713182951],\n            [-1.2315657331969, 48.6839112663349],\n            [-1.230975957043825, 48.68421435980282],\n            [-1.230949551169598, 48.68422864761228],\n            [-1.230916823560355, 48.68424855249586],\n            [-1.230886132086853, 48.68426983207236],\n            [-1.23085760817506, 48.68429239522103],\n            [-1.230831373969672, 48.68431614532463],\n            [-1.230807541810925, 48.6843409806832],\n            [-1.230786213754065, 48.68436679494941],\n            [-1.230767481131871, 48.68439347758403],\n            [-1.230751424163596, 48.68442091432915],\n            [-1.230738111611316, 48.68444898769766],\n            [-1.230727600485806, 48.68447757747604],\n            [-1.230719935801639, 48.68450656123915],\n            [-1.230715150385155, 48.68453581487471],\n            [-1.230713264732941, 48.68456521311447],\n            [-1.230714286925072, 48.68459463007087],\n            [-1.230718212589206, 48.68462393977588],\n            [-1.230725024920085, 48.68465301672045],\n            [-1.230734694751221, 48.68468173639225],\n            [-1.230747180679392, 48.68470997580846],\n            [-1.230755886434449, 48.6847264327031],\n            [-1.231471030500555, 48.68599864612484],\n            [-1.231848562816744, 48.68698338565324],\n            [-1.231849151231022, 48.68698490924069],\n            [-1.231861638357534, 48.6870131485304],\n            [-1.231876888232117, 48.68704078661146],\n            [-1.231894835556144, 48.68706770513215],\n            [-1.231915403480068, 48.68709378882199],\n            [-1.23193850393178, 48.68711892598532],\n            [-1.231964037993865, 48.68714300897948],\n            [-1.231991896327345, 48.68716593467569],\n            [-1.232021959639524, 48.68718760490103],\n            [-1.232054099195261, 48.68720792685863],\n            [-1.232088177367805, 48.68722681352494],\n            [-1.232124048228227, 48.68724418402274],\n            [-1.232152691648902, 48.68725643765121],\n            [-1.233737282913006, 48.68789755088939],\n            [-1.233746149658883, 48.68790107708287],\n            [-1.233785138999959, 48.68791519836111],\n            [-1.233825439802894, 48.68792760102125],\n            [-1.233866879489995, 48.68793823195183],\n            [-1.233889218960429, 48.68794312699608],\n            [-1.2353537229601, 48.68824548430882],\n            [-1.236200922295525, 48.68959870231987],\n            [-1.236216327853634, 48.68962149760413],\n            [-1.236236899065228, 48.6896475805134],\n            [-1.236260002851932, 48.68967271680093],\n            [-1.236285540282003, 48.6896967988277],\n            [-1.236313402002054, 48.68971972346925],\n            [-1.236343468704921, 48.68974139255705],\n            [-1.236375611640994, 48.68976171329906],\n            [-1.236409693168774, 48.68978059867713],\n            [-1.236445567345244, 48.68979796781938],\n            [-1.236474211744936, 48.68981021974684],\n            [-1.236984238317231, 48.69001654098786],\n            [-1.236993107194624, 48.69002006754857],\n            [-1.237032099091655, 48.6900341877203],\n            [-1.23707240239483, 48.69004658923706],\n            [-1.237113844515845, 48.69005721899229],\n            [-1.237156247989337, 48.69006603146677],\n            [-1.237199431233198, 48.6900729889231],\n            [-1.237243209325269, 48.69007806156756],\n            [-1.237287394796531, 48.69008122767783],\n            [-1.237331798432959, 48.69008247369567],\n            [-1.237376230086256, 48.69008179428539],\n            [-1.2374204994882, 48.69007919235634],\n            [-1.237464417065335, 48.69007467905077],\n            [-1.237507794751018, 48.69006827369573],\n            [-1.237550446790658, 48.69006000372082],\n            [-1.237592190537518, 48.69004990454005],\n            [-1.237632847234547, 48.6900380194009],\n            [-1.237672242780072, 48.69002439919854],\n            [-1.237710208473402, 48.69000910225806],\n            [-1.237746581737222, 48.68999219408496],\n            [-1.237781206813848, 48.68997374708415],\n            [-1.237813935432564, 48.68995384025009],\n            [-1.237844627443596, 48.68993255882874],\n            [-1.237873151419537, 48.68990999395202],\n            [-1.237899385217212, 48.68988624224765],\n            [-1.237923216500978, 48.68986140542603],\n            [-1.237944543223766, 48.68983558984346],\n            [-1.237963274064065, 48.68980890604781],\n            [-1.23797198165895, 48.68979468992837],\n            [-1.237992349874044, 48.68978737681825],\n            [-1.238030315290895, 48.68977207977153],\n            [-1.238066688275499, 48.68975517149655],\n            [-1.238101313071389, 48.68973672439871],\n            [-1.238134041408949, 48.68971681747293],\n            [-1.238164733139706, 48.68969553596549],\n            [-1.23819325683743, 48.6896729710087],\n            [-1.238219490360144, 48.68964921923065],\n            [-1.238243321373327, 48.68962438234202],\n            [-1.238264647831127, 48.68959856669943],\n            [-1.238283378413152, 48.68957188285098],\n            [-1.23829943291536, 48.68954444506222],\n            [-1.238302283653305, 48.68953894197132],\n            [-1.239633076693232, 48.68691462357536],\n            [-1.23964353449006, 48.68689205230523],\n            [-1.239654041049243, 48.68686346171506],\n            [-1.239661700941064, 48.6868344773603],\n            [-1.239664105687466, 48.6868219543653],\n            [-1.239681829358437, 48.6867180148527],\n            [-1.239705832653528, 48.68673131527865],\n            [-1.239741705792767, 48.68674868339397],\n            [-1.239779217756483, 48.68676446084707],\n            [-1.239818207910708, 48.68677858007498],\n            [-1.239858509290821, 48.68679098061569],\n            [-1.239899949316832, 48.68680160936673],\n            [-1.23994235053229, 48.68681042081315],\n            [-1.2399855313648, 48.68681737722199],\n            [-1.240029306902555, 48.68682244880403],\n            [-1.240073489687426, 48.6868256138415],\n            [-1.240117890516879, 48.68682685878072],\n            [-1.240162319254667, 48.68682617829068],\n            [-1.240206585645041, 48.68682357528537],\n            [-1.240250500127451, 48.6868190609115],\n            [-1.240293874648526, 48.68681265450086],\n            [-1.240336523467223, 48.68680438348743],\n            [-1.240378263950532, 48.68679428328975],\n            [-1.240418917355435, 48.68678239715964],\n            [-1.240458309594366, 48.68676877599655],\n            [-1.24049627198076, 48.68675347812966],\n            [-1.240512379791365, 48.68674627885909],\n            [-1.24098807961178, 48.68652704142327],\n            [-1.241008341591614, 48.68651733154844],\n            [-1.241042963077512, 48.68649888355759],\n            [-1.241075688141851, 48.68647897578704],\n            [-1.241106376650125, 48.68645769348676],\n            [-1.241134897189915, 48.68643512779241],\n            [-1.241161127632713, 48.68641137533528],\n            [-1.241184955657306, 48.68638653782886],\n            [-1.241206279230533, 48.68636072163257],\n            [-1.241225007044313, 48.68633403729671],\n            [-1.241241058906752, 48.68630659908912],\n            [-1.24125414911463, 48.68627903962725],\n            [-1.24144259384547, 48.68583266366214],\n            [-1.241441572583335, 48.68584863847769],\n            [-1.241442601079963, 48.6858780553352],\n            [-1.241446533099953, 48.6859073646696],\n            [-1.241453351810689, 48.68593644097353],\n            [-1.241463028018364, 48.68596515973729],\n            [-1.241475520292559, 48.685993397982],\n            [-1.241478094351085, 48.68599847917226],\n            [-1.24161726750057, 48.68626786979683],\n            [-1.241629948423502, 48.68629042539506],\n            [-1.241647900702565, 48.68631734239041],\n            [-1.241668473380346, 48.68634342433206],\n            [-1.241691578364452, 48.6863685595317],\n            [-1.241717116718044, 48.68639264035504],\n            [-1.241744979083739, 48.68641556368267],\n            [-1.241775046151734, 48.68643723135189],\n            [-1.241807189170541, 48.68645755057656],\n            [-1.24184127049864, 48.68647643434506],\n            [-1.241877144193815, 48.6864938017925],\n            [-1.241914656637566, 48.68650957854732],\n            [-1.24195364719389, 48.68652369704933],\n            [-1.241993948896465, 48.68653609683966],\n            [-1.242035389163883, 48.6865467248191],\n            [-1.242077790538654, 48.68655553547599],\n            [-1.242120971447722, 48.68656249108072],\n            [-1.242164746978942, 48.68656756184757],\n            [-1.242208929674205, 48.68657072606221],\n            [-1.242253330331355, 48.68657197017451],\n            [-1.242297758814948, 48.68657128885702],\n            [-1.242342024870249, 48.68656868502712],\n            [-1.242385938938151, 48.68656416983534],\n            [-1.242429312967099, 48.6865577626167],\n            [-1.24247196121811, 48.68654949080878],\n            [-1.242513701060772, 48.68653938983353],\n            [-1.242554353754424, 48.68652750294605],\n            [-1.242593745214917, 48.68651388104896],\n            [-1.242631706758866, 48.68649858247476],\n            [-1.242668075826803, 48.68648167273578],\n            [-1.242702696678968, 48.68646322424369],\n            [-1.242735421062751, 48.6864433159994],\n            [-1.242766100970205, 48.68642203908784],\n            [-1.24304677361593, 48.68621418025731],\n            [-1.243075297084517, 48.68619161116327],\n            [-1.24310152648331, 48.68616785826179],\n            [-1.243125353433643, 48.68614302035165],\n            [-1.24314667590699, 48.68611720379397],\n            [-1.243165402599906, 48.68609051914071],\n            [-1.243181453325415, 48.6860630806609],\n            [-1.243194759355253, 48.68603500585147],\n            [-1.243205263715275, 48.68600641493407],\n            [-1.243212921428858, 48.68597743034016],\n            [-1.243217699709169, 48.68594817618665],\n            [-1.243219578099792, 48.6859187777448]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.242942178306576, 48.60986610219051],\n            [-1.242941150486507, 48.60983668519591],\n            [-1.242937223538061, 48.60980737576263],\n            [-1.242930414281722, 48.60977829939786],\n            [-1.242920751880803, 48.60974958061056],\n            [-1.242908277715862, 48.60972134237837],\n            [-1.242893045207187, 48.60969370562057],\n            [-1.242875119586899, 48.60966678868117],\n            [-1.242854577618513, 48.60964070682134],\n            [-1.242831507268782, 48.6096155717261],\n            [-1.242806007330901, 48.60959149102642],\n            [-1.242778187001201, 48.60956856783788],\n            [-1.242748165411767, 48.60954690031954],\n            [-1.242716071119983, 48.60952658125334],\n            [-1.242682041558274, 48.60950769764695],\n            [-1.242646222445678, 48.6094903303613],\n            [-1.242608767163422, 48.60947455376403],\n            [-1.24256983609879, 48.60946043541146],\n            [-1.242529595957731, 48.60944803575919],\n            [-1.242495663890275, 48.60943916897769],\n            [-1.242045175849744, 48.60933063821547],\n            [-1.242037731042833, 48.60932887711164],\n            [-1.241995394719986, 48.60932006639413],\n            [-1.241952280082646, 48.60931311070586],\n            [-1.241908571750032, 48.60930803983158],\n            [-1.241864456882873, 48.60930487548472],\n            [-1.241820124382962, 48.60930363121534],\n            [-1.241775764083768, 48.60930431235134],\n            [-1.241731565937845, 48.60930691597618],\n            [-1.241687719203461, 48.60931143094087],\n            [-1.241644411634211, 48.60931783791229],\n            [-1.241601828675212, 48.60932610945541],\n            [-1.241560152668746, 48.6093362101513],\n            [-1.24151956207422, 48.60934809674809],\n            [-1.24148023070334, 48.60936171834694],\n            [-1.241442326976003, 48.60937701661938],\n            [-1.241406013199597, 48.60939392605739],\n            [-1.241371444873456, 48.60941237425373],\n            [-1.24133877002353, 48.60943228221197],\n            [-1.241308128568077, 48.60945356468499],\n            [-1.241279651718539, 48.60947613053953],\n            [-1.24125346141839, 48.60949988314678],\n            [-1.241229669819739, 48.60952472079616],\n            [-1.241208378804228, 48.60955053713047],\n            [-1.241189679545867, 48.60957722160162],\n            [-1.241173652121179, 48.60960465994387],\n            [-1.241160365165703, 48.60963273466321],\n            [-1.241149875580343, 48.60966132554038],\n            [-1.241142228287824, 48.60969031014547],\n            [-1.241137456039587, 48.60971956436265],\n            [-1.241135579276222, 48.60974896292122],\n            [-1.241136606039337, 48.60977837993217],\n            [-1.241140531937284, 48.60980768942729],\n            [-1.241147340163686, 48.60983676589844],\n            [-1.241153455566371, 48.60985592862144],\n            [-1.241332068757348, 48.61036103342558],\n            [-1.241335614830084, 48.61037058963361],\n            [-1.241348088273861, 48.61039882803615],\n            [-1.241363320147604, 48.61042646499831],\n            [-1.241381245230082, 48.61045338217331],\n            [-1.241401786766834, 48.61047946429642],\n            [-1.241424856798519, 48.61050459967855],\n            [-1.241450356538258, 48.61052868068462],\n            [-1.241478176793918, 48.61055160419455],\n            [-1.24150819843599, 48.6105732720447],\n            [-1.24154029290753, 48.61059359144834],\n            [-1.241574322774994, 48.61061247539296],\n            [-1.241610142316267, 48.61062984301297],\n            [-1.241647598144986, 48.61064561993594],\n            [-1.241686529867532, 48.61065973860122],\n            [-1.241726770769502, 48.61067213854893],\n            [-1.24176814852988, 48.6106827666795],\n            [-1.241810485958943, 48.61069157748035],\n            [-1.241853601757195, 48.61069853322142],\n            [-1.241897311291587, 48.6107036041164],\n            [-1.241941427386544, 48.61070676845031],\n            [-1.241985761125084, 48.61070801267264],\n            [-1.242030122658371, 48.61070733145532],\n            [-1.242074322018403, 48.61070472771545],\n            [-1.242118169931643, 48.61070021260301],\n            [-1.242161478629831, 48.61069380545284],\n            [-1.242204062653798, 48.61068553370215],\n            [-1.242245739648134, 48.61067543277266],\n            [-1.24228633114134, 48.61066354591928],\n            [-1.242325663311301, 48.6106499240445],\n            [-1.242363567728626, 48.61063462548064],\n            [-1.242399882078393, 48.61061771574003],\n            [-1.242434450855194, 48.61059926723443],\n            [-1.242467126029361, 48.61057935896467],\n            [-1.242497767680078, 48.61055807618281],\n            [-1.242526244595523, 48.61053551002671],\n            [-1.242552434834041, 48.61051175712953],\n            [-1.242576226246521, 48.61048691920671],\n            [-1.242597516956616, 48.61046110261935],\n            [-1.242609549700457, 48.61044446541254],\n            [-1.242881417715258, 48.61004789184448],\n            [-1.242888083705058, 48.61003784433545],\n            [-1.242904110333223, 48.61001040575394],\n            [-1.242917396415917, 48.60998233083278],\n            [-1.242927885064327, 48.60995373979417],\n            [-1.242935531368776, 48.60992475507022],\n            [-1.242940302591593, 48.60989550077839],\n            [-1.242942178306576, 48.60986610219051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.222279238062185, 48.63595069112793],\n            [-1.222278221789939, 48.63592127399477],\n            [-1.222240508168133, 48.63547231053839],\n            [-1.222236591277202, 48.635443000441],\n            [-1.222229790514269, 48.63541392289059],\n            [-1.222220135006016, 48.63538520240117],\n            [-1.222215060914149, 48.63537286779603],\n            [-1.221989149801972, 48.63485293554022],\n            [-1.22198175513907, 48.63483702968675],\n            [-1.221966526521763, 48.63480939018706],\n            [-1.221948603149177, 48.63478247001221],\n            [-1.221928061775235, 48.63475638443735],\n            [-1.221904990364473, 48.63473124516356],\n            [-1.221879487714281, 48.63470715983955],\n            [-1.221851663032763, 48.6346842316008],\n            [-1.221821635470526, 48.63466255862788],\n            [-1.221789533610715, 48.63464223372615],\n            [-1.221755494918171, 48.63462334392822],\n            [-1.221719665150738, 48.63460597012152],\n            [-1.221682197735727, 48.63459018670178],\n            [-1.221643253111981, 48.63457606125441],\n            [-1.221602998043663, 48.63456365426537],\n            [-1.221561604905905, 48.63455301886201],\n            [-1.221519250946725, 48.63454420058562],\n            [-1.221476117528149, 48.63453723719652],\n            [-1.221432389349531, 48.63453215851208],\n            [-1.22138825365681, 48.63452898627956],\n            [-1.22134389944089, 48.63452773408262],\n            [-1.221299516628225, 48.63452840728311],\n            [-1.221255295267751, 48.63453100299845],\n            [-1.221211424717179, 48.6345355101136],\n            [-1.221168092832079, 48.63454190932896],\n            [-1.221125485161687, 48.63455017324279],\n            [-1.22108378415404, 48.63456026646873],\n            [-1.221081556502777, 48.63456086412968],\n            [-1.219859408487987, 48.63489041897382],\n            [-1.21982101983543, 48.63490170022128],\n            [-1.219781662617405, 48.63491531434391],\n            [-1.219743733044842, 48.63493060540812],\n            [-1.219707393535781, 48.63494750793669],\n            [-1.219672799699785, 48.63496594955197],\n            [-1.219640099671999, 48.63498585128588],\n            [-1.219609433478375, 48.63500712791773],\n            [-1.219580932436648, 48.63502968833942],\n            [-1.219554718593452, 48.63505343594538],\n            [-1.219530904202153, 48.63507826904636],\n            [-1.219509591241577, 48.63510408130469],\n            [-1.219490870979936, 48.63513076218975],\n            [-1.219474823583604, 48.63515819745125],\n            [-1.21946151777359, 48.63518626960809],\n            [-1.219451010531834, 48.63521485845222],\n            [-1.219443346856259, 48.63524384156246],\n            [-1.219438559568853, 48.63527309482927],\n            [-1.219436669174252, 48.635302492986],\n            [-1.219437683772817, 48.63533191014552],\n            [-1.21944159902458, 48.63536122033878],\n            [-1.219448398169227, 48.63539029805479],\n            [-1.219458052096225, 48.63541901877787],\n            [-1.219470519470938, 48.63544725952058],\n            [-1.219485746910207, 48.63547489935107],\n            [-1.219486647247292, 48.63547637366471],\n            [-1.219830961995305, 48.63603733202068],\n            [-1.219847984323792, 48.63606277821404],\n            [-1.21986852515255, 48.63608886415967],\n            [-1.219891596168448, 48.63611400384153],\n            [-1.21991709858011, 48.63613808960599],\n            [-1.219944923183951, 48.63616101831264],\n            [-1.219974950832059, 48.63618269177547],\n            [-1.22000705294169, 48.63620301718381],\n            [-1.220041092046584, 48.63622190749942],\n            [-1.220076922385001, 48.63623928182943],\n            [-1.220114390524552, 48.63625506577262],\n            [-1.220153336018661, 48.63626919173834],\n            [-1.220193592094034, 48.63628159923553],\n            [-1.220234986364566, 48.63629223513209],\n            [-1.220277341570089, 48.63630105388246],\n            [-1.220320476334929, 48.63630801772221],\n            [-1.220345153205835, 48.63631112409529],\n            [-1.221147914155289, 48.63640200371971],\n            [-1.221166966960003, 48.6364039763214],\n            [-1.22121110428346, 48.6364071486388],\n            [-1.221255460152837, 48.63640840088703],\n            [-1.221299844624435, 48.63640772770368],\n            [-1.221638541946144, 48.63639523194597],\n            [-1.221682764925243, 48.63639263608297],\n            [-1.221726637052853, 48.63638812878783],\n            [-1.221769970456899, 48.63638172936188],\n            [-1.221812579572434, 48.63637346520932],\n            [-1.221854281936636, 48.63636337171916],\n            [-1.221894898969334, 48.63635149211466],\n            [-1.221934256739057, 48.63633787726717],\n            [-1.221972186706744, 48.63632258547889],\n            [-1.22200852644812, 48.63630568223324],\n            [-1.222043120349023, 48.63628723991401],\n            [-1.222075820272173, 48.63626733749574],\n            [-1.222106486190777, 48.63624606020525],\n            [-1.222134986789079, 48.63622349915694],\n            [-1.222161200024061, 48.63619975096221],\n            [-1.222185013648094, 48.63617491731615],\n            [-1.222206325689705, 48.63614910456174],\n            [-1.222225044890315, 48.63612242323463],\n            [-1.22224109109456, 48.63609498758955],\n            [-1.222254395593982, 48.63606691511141],\n            [-1.222264901420911, 48.63603832601164],\n            [-1.222272563592108, 48.63600934271416],\n            [-1.222277349301977, 48.63598008933029],\n            [-1.222279238062185, 48.63595069112793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.221182559687433, 48.68673306181222],\n            [-1.221181543030294, 48.68670364477601],\n            [-1.221177622764622, 48.68667433474954],\n            [-1.221170815682804, 48.68664525724248],\n            [-1.221161150938459, 48.68661653676872],\n            [-1.221148669922239, 48.68658829631307],\n            [-1.221133426084127, 48.68656065680443],\n            [-1.221115484704365, 48.68653373659841],\n            [-1.221094922614074, 48.68650765097032],\n            [-1.22107182786644, 48.68648251162126],\n            [-1.221046299358792, 48.68645842620046],\n            [-1.221018446410005, 48.6864354978438],\n            [-1.220988388291691, 48.68641382473213],\n            [-1.220956253717849, 48.68639349967177],\n            [-1.220922180293427, 48.68637460969579],\n            [-1.220886313924972, 48.68635723569236],\n            [-1.220848808196569, 48.68634145205807],\n            [-1.220809823711029, 48.68632732637933],\n            [-1.220769527403298, 48.68631491914309],\n            [-1.22072809182503, 48.68630428347758],\n            [-1.220685694406034, 48.68629546492549],\n            [-1.220650435048101, 48.68628963061322],\n            [-1.220430605836327, 48.68625736748525],\n            [-1.220279800044912, 48.68615371956964],\n            [-1.220275637258177, 48.68615088356881],\n            [-1.22024350314067, 48.68613055830829],\n            [-1.220209430162351, 48.68611166812003],\n            [-1.220173564227869, 48.68609429389326],\n            [-1.22013605891945, 48.68607851002549],\n            [-1.220097074838147, 48.68606438410414],\n            [-1.220056778917147, 48.68605197661718],\n            [-1.220015343706444, 48.68604134069392],\n            [-1.219972946634271, 48.68603252187796],\n            [-1.219929769247226, 48.6860255579321],\n            [-1.219885996432932, 48.6860204786758],\n            [-1.219841815628477, 48.68601730585903],\n            [-1.219797416017949, 48.6860160530678],\n            [-1.219752987722067, 48.68601672566654],\n            [-1.219708720984671, 48.68601932077528],\n            [-1.219664805357696, 48.68602382728152],\n            [-1.219621428889719, 48.68603022588836],\n            [-1.219578777320862, 48.68603848919657],\n            [-1.219537033287232, 48.68604858182246],\n            [-1.219496375539564, 48.68606046054877],\n            [-1.219456978176872, 48.68607407451016],\n            [-1.219427395945847, 48.68608579196574],\n            [-1.21846851065178, 48.68648782165304],\n            [-1.218460124472649, 48.68649139502836],\n            [-1.21842374725569, 48.68650829708763],\n            [-1.218389117463237, 48.68652673824751],\n            [-1.218356383384209, 48.68654663954188],\n            [-1.218325685190502, 48.68656791575183],\n            [-1.218297154336823, 48.68659047577125],\n            [-1.218270912997441, 48.68661422299611],\n            [-1.21824707354343, 48.68663905573889],\n            [-1.218228108342261, 48.68666179236556],\n            [-1.21677548687307, 48.68852866562606],\n            [-1.21677311641508, 48.68853174089351],\n            [-1.216754374801918, 48.68855842122932],\n            [-1.216738308854166, 48.68858585600245],\n            [-1.216724987372309, 48.68861392773407],\n            [-1.216714467405151, 48.68864251621785],\n            [-1.216706794005495, 48.68867149903408],\n            [-1.216702000036614, 48.68870075207468],\n            [-1.2167001060321, 48.68873015007375],\n            [-1.216701120107424, 48.68875956714492],\n            [-1.216705037925274, 48.68878887731957],\n            [-1.216711842713927, 48.68881795508672],\n            [-1.216721505339167, 48.68884667593046],\n            [-1.216733984428629, 48.68887491686298],\n            [-1.216749226549434, 48.68890255695143],\n            [-1.21676716643617, 48.68892947783552],\n            [-1.216787727271025, 48.68895556423472],\n            [-1.216810821012324, 48.68898070444172],\n            [-1.216836348771371, 48.68900479080075],\n            [-1.216864201236185, 48.68902772016863],\n            [-1.216894259139272, 48.68904939435695],\n            [-1.216926393768489, 48.68906972055144],\n            [-1.216937108399852, 48.68907566095718],\n            [-1.216926099138609, 48.68908712792237],\n            [-1.216904761938802, 48.68911293959614],\n            [-1.216886020178938, 48.68913961995223],\n            [-1.216869954117137, 48.68916705474258],\n            [-1.216856632554804, 48.68919512648827],\n            [-1.216846112540964, 48.68922371498272],\n            [-1.216838439128358, 48.68925269780642],\n            [-1.216833645180659, 48.68928195085113],\n            [-1.216831751231262, 48.68931134885105],\n            [-1.216832765395375, 48.68934076591967],\n            [-1.216836683335287, 48.68937007608848],\n            [-1.216843488278776, 48.68939915384648],\n            [-1.216853151090966, 48.68942787467783],\n            [-1.216865630398694, 48.68945611559468],\n            [-1.21688087276818, 48.68948375566436],\n            [-1.216898812932874, 48.68951067652661],\n            [-1.216919374073804, 48.68953676290099],\n            [-1.216942468147997, 48.68956190308029],\n            [-1.216967996265317, 48.68958598940886],\n            [-1.216995849112246, 48.68960891874377],\n            [-1.217025907419669, 48.68963059289653],\n            [-1.217058046877564, 48.68965092166173],\n            [-1.217371912175276, 48.6898368237466],\n            [-1.217405977804673, 48.68985570955552],\n            [-1.217441845466534, 48.68987308464285],\n            [-1.217479352760384, 48.68988886938716],\n            [-1.217518339072323, 48.68990299619433],\n            [-1.217558637454115, 48.68991540456965],\n            [-1.217600075338678, 48.68992604137749],\n            [-1.217642475278777, 48.68993486106807],\n            [-1.21768565570721, 48.68994182587323],\n            [-1.21772943171421, 48.68994690596787],\n            [-1.217773615839488, 48.68995007959767],\n            [-1.217818018874797, 48.68995133317224],\n            [-1.217862450674516, 48.68995066132349],\n            [-1.217906720969666, 48.68994806692835],\n            [-1.217950640183032, 48.68994356109693],\n            [-1.217994020240978, 48.68993716312417],\n            [-1.21803667537872, 48.68992890040802],\n            [-1.218078422936291, 48.68991880833156],\n            [-1.218119084140275, 48.68990693011176],\n            [-1.218158484869694, 48.68989331661407],\n            [-1.218196456401692, 48.68987802613515],\n            [-1.218232836133979, 48.68986112415253],\n            [-1.218267468281109, 48.68984268304469],\n            [-1.218300204542051, 48.68982278178093],\n            [-1.218330904734439, 48.68980150558333],\n            [-1.218359437395693, 48.68977894556136],\n            [-1.218385680345526, 48.6897551983221],\n            [-1.21840952120905, 48.68973036555666],\n            [-1.218430857898205, 48.68970455360417],\n            [-1.218449599048677, 48.6896778729968],\n            [-1.218465664411517, 48.68965043798626],\n            [-1.218471684858657, 48.68963775063093],\n            [-1.218510551688272, 48.689628354722],\n            [-1.218551212555046, 48.68961647634869],\n            [-1.218590612939741, 48.68960286270227],\n            [-1.21862858412086, 48.68958757207983],\n            [-1.218664963497591, 48.68957066995967],\n            [-1.218699595286048, 48.6895522287209],\n            [-1.218732331186718, 48.68953232733332],\n            [-1.218763031018735, 48.68951105101949],\n            [-1.218791563321156, 48.68948849088952],\n            [-1.218817805915173, 48.68946474355079],\n            [-1.218841646427458, 48.68943991069494],\n            [-1.218862982771349, 48.68941409866143],\n            [-1.218881723584271, 48.68938741798276],\n            [-1.218897788618314, 48.68935998291103],\n            [-1.218911109084324, 48.6893319109287],\n            [-1.218916946077193, 48.68931604686479],\n            [-1.219311158533372, 48.68923336622034],\n            [-1.219318005637715, 48.68923190365355],\n            [-1.219359752359175, 48.68922181110999],\n            [-1.219400412696472, 48.68920993243511],\n            [-1.219439812532386, 48.6891963184965],\n            [-1.219477783148018, 48.68918102759226],\n            [-1.219514161944892, 48.68916412520218],\n            [-1.219548793141763, 48.68914568370633],\n            [-1.219581528441334, 48.68912578207578],\n            [-1.219612227665576, 48.68910450553378],\n            [-1.219640759356166, 48.68908194519178],\n            [-1.219667001336575, 48.68905819765796],\n            [-1.219690841236449, 48.68903336462465],\n            [-1.219712176971708, 48.68900755243239],\n            [-1.219713682744634, 48.68900556795596],\n            [-1.220712602831782, 48.68768089509464],\n            [-1.220729836324375, 48.68765619859995],\n            [-1.220745899796347, 48.6876287632656],\n            [-1.22075921877143, 48.68760069106458],\n            [-1.220769736220002, 48.68757210220734],\n            [-1.220777407109106, 48.68754311911673],\n            [-1.220782198595733, 48.68751386590316],\n            [-1.220784090166893, 48.68748446783383],\n            [-1.22078307372774, 48.68745505079586],\n            [-1.220779153635849, 48.68742574075746],\n            [-1.220772346682768, 48.6873966632286],\n            [-1.220762682021617, 48.68736794272287],\n            [-1.22075839661199, 48.6873574474196],\n            [-1.220711630349567, 48.68724817404269],\n            [-1.220728854589481, 48.68723623594146],\n            [-1.221009622900662, 48.68702843107955],\n            [-1.221038156724945, 48.68700586747024],\n            [-1.221064396961369, 48.68698211961268],\n            [-1.221088235186183, 48.68695728628485],\n            [-1.2211095693226, 48.68693147382821],\n            [-1.221128308017256, 48.68690479277707],\n            [-1.221144371031735, 48.68687735738523],\n            [-1.221157689585135, 48.68684928513626],\n            [-1.221168206649774, 48.68682069624085],\n            [-1.221175877194494, 48.68679171312187],\n            [-1.221180668377624, 48.68676245988991],\n            [-1.221182559687433, 48.68673306181222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.21879783804034, 48.64128252187832],\n            [-1.218796823696011, 48.64125310472453],\n            [-1.218792908361255, 48.64122379452031],\n            [-1.218786108807215, 48.6411947167763],\n            [-1.218776454155397, 48.64116599600733],\n            [-1.218763985753266, 48.64113775519944],\n            [-1.218748756996431, 48.64111011528308],\n            [-1.218730833100983, 48.64108319461575],\n            [-1.218710290823004, 48.64105710847442],\n            [-1.218687218130647, 48.64103196856267],\n            [-1.218661713827058, 48.64100788253198],\n            [-1.218633887127334, 48.64098495352085],\n            [-1.218603857190737, 48.6409632797131],\n            [-1.218571752610622, 48.64094295391782],\n            [-1.218537710863381, 48.64092406317128],\n            [-1.218503475968442, 48.64090741355324],\n            [-1.217443378989882, 48.64042492200069],\n            [-1.217441780772084, 48.64042419679766],\n            [-1.217404310366246, 48.64040841198442],\n            [-1.217365362439902, 48.64039428508777],\n            [-1.217325103771283, 48.64038187659993],\n            [-1.217283706751031, 48.64037123965452],\n            [-1.217281004788358, 48.64037061620907],\n            [-1.216414269225117, 48.64017198018648],\n            [-1.216217115448213, 48.64002086115919],\n            [-1.216188363269235, 48.64000016774037],\n            [-1.216156260279528, 48.63997984126682],\n            [-1.216122220090941, 48.63996094980135],\n            [-1.216086388467692, 48.63994357423843],\n            [-1.216048918845067, 48.6399277889813],\n            [-1.216009971671361, 48.63991366162338],\n            [-1.215969713721647, 48.63990125265876],\n            [-1.21592831738341, 48.63989061522323],\n            [-1.215922030522498, 48.63988917754185],\n            [-1.214687675800543, 48.639611375806],\n            [-1.214651605576695, 48.63960399274212],\n            [-1.214608468769749, 48.63959702676884],\n            [-1.214596643146968, 48.6395954593164],\n            [-1.210752597923495, 48.63910937871067],\n            [-1.210720692241418, 48.63910586378783],\n            [-1.210676553212327, 48.63910268742866],\n            [-1.210632195231378, 48.63910143108395],\n            [-1.210587808241175, 48.6391021001335],\n            [-1.210543582308539, 48.63910469171236],\n            [-1.210499706810764, 48.63910919472324],\n            [-1.210456369624584, 48.63911558988421],\n            [-1.210413756321918, 48.63912384981074],\n            [-1.210372049374962, 48.63913393913369],\n            [-1.210331427375737, 48.63914581464985],\n            [-1.210292663219972, 48.63915920185052],\n            [-1.209894014237107, 48.63930788621498],\n            [-1.209865354202142, 48.63928973643623],\n            [-1.209831316842611, 48.63927084310053],\n            [-1.209795487883671, 48.63925346556902],\n            [-1.209758020748857, 48.63923767825349],\n            [-1.20971907587593, 48.63922354875604],\n            [-1.209678820030153, 48.63921113758004],\n            [-1.209637425589938, 48.63920049787065],\n            [-1.209595069808895, 48.63919167518758],\n            [-1.209559837064154, 48.63918583631539],\n            [-1.209140422350035, 48.63912418360262],\n            [-1.209132519361811, 48.63912305456823],\n            [-1.209088788444124, 48.63911797117281],\n            [-1.209044649507458, 48.6391147941849],\n            [-1.209000291556606, 48.63911353720818],\n            [-1.208955904534028, 48.63911420562538],\n            [-1.208911678506688, 48.63911679657412],\n            [-1.208867802852318, 48.63912129896006],\n            [-1.208824465448293, 48.63912769350351],\n            [-1.208781851867449, 48.63913595282298],\n            [-1.208740144583262, 48.63914604155167],\n            [-1.208699522188974, 48.63915791648918],\n            [-1.20866015863254, 48.63917152678639],\n            [-1.208622222471627, 48.63918681416336],\n            [-1.208585876152513, 48.6392037131586],\n            [-1.208551275313918, 48.63922215140968],\n            [-1.208518568120944, 48.63924204996273],\n            [-1.208487894630257, 48.63926332361086],\n            [-1.208459386190808, 48.63928588125872],\n            [-1.208433164881004, 48.63930962631257],\n            [-1.208409342985908, 48.63933445709416],\n            [-1.208388022516778, 48.63936026727571],\n            [-1.208369294773841, 48.63938694633547],\n            [-1.208353239955566, 48.63941438003087],\n            [-1.208339926814697, 48.63944245088787],\n            [-1.208329412364586, 48.63947103870366],\n            [-1.208321741633975, 48.63950002106149],\n            [-1.208316947475165, 48.63952927385516],\n            [-1.208315050422131, 48.63955867182003],\n            [-1.208316058603769, 48.63958808906966],\n            [-1.20831996770761, 48.63961739963479],\n            [-1.208326760999599, 48.63964647800275],\n            [-1.208336409394402, 48.639675199655],\n            [-1.208348871580944, 48.63970344160031],\n            [-1.208351439211093, 48.63970852216476],\n            [-1.208490307210632, 48.6399779572966],\n            [-1.208502962327906, 48.64000051801766],\n            [-1.208520880364921, 48.64002744028703],\n            [-1.208541416939142, 48.64005352825706],\n            [-1.208558660622863, 48.64007232293123],\n            [-1.208559399263631, 48.64009387211319],\n            [-1.208563308548547, 48.64012318266905],\n            [-1.208570102049489, 48.64015226102162],\n            [-1.208579750680163, 48.64018098265245],\n            [-1.208592213128616, 48.64020922457033],\n            [-1.208607436032814, 48.64023686583829],\n            [-1.208625354209796, 48.640263788091],\n            [-1.208645890934657, 48.64028987604183],\n            [-1.208668958269019, 48.64031501797713],\n            [-1.208694457437196, 48.64033910623352],\n            [-1.20872227924963, 48.64036203765997],\n            [-1.20875230457006, 48.64038371405875],\n            [-1.208784404826013, 48.64040404260676],\n            [-1.208818442559045, 48.64042293625218],\n            [-1.208854272013349, 48.64044031408785],\n            [-1.208858278153548, 48.64044200213752],\n            [-1.208853203406526, 48.64045580004309],\n            [-1.208845532827534, 48.64048478243414],\n            [-1.208840738879415, 48.64051403524788],\n            [-1.208838842095326, 48.64054343321953],\n            [-1.208839850602863, 48.64057285046269],\n            [-1.208843760088458, 48.64060216100808],\n            [-1.208850553816179, 48.64063123934307],\n            [-1.208860202698852, 48.64065996094939],\n            [-1.208872665423344, 48.6406882028359],\n            [-1.208887888626462, 48.64071584406573],\n            [-1.208905807124208, 48.64074276627368],\n            [-1.208926344190016, 48.64076885417352],\n            [-1.20894941188411, 48.64079399605145],\n            [-1.208974911429346, 48.64081808424469],\n            [-1.209002733634386, 48.64084101560231],\n            [-1.20903275936161, 48.64086269192696],\n            [-1.209064860036468, 48.64088302039571],\n            [-1.209098898210708, 48.64090191396294],\n            [-1.209133130143356, 48.64091856646128],\n            [-1.209218664951033, 48.64095750612646],\n            [-1.208616099063287, 48.64155942702978],\n            [-1.208597315157216, 48.64157929629792],\n            [-1.20857599383319, 48.64160510651065],\n            [-1.208575263238005, 48.64160614725854],\n            [-1.208323207739792, 48.64185969598036],\n            [-1.208305628721431, 48.64187835719244],\n            [-1.208284307121066, 48.64190416735043],\n            [-1.208265578376171, 48.6419308463888],\n            [-1.208249522689491, 48.64195828006521],\n            [-1.208236208817706, 48.64198635090543],\n            [-1.208225693776888, 48.64201493870695],\n            [-1.208218022598775, 48.64204392105303],\n            [-1.208213228137107, 48.64207317383751],\n            [-1.208211330927678, 48.64210257179579],\n            [-1.208212339099524, 48.64213198904145],\n            [-1.208216248340714, 48.64216129960524],\n            [-1.208223041916177, 48.6421903779745],\n            [-1.208232690739717, 48.64221909963079],\n            [-1.208245153498062, 48.64224734158265],\n            [-1.208260376828318, 48.64227498289306],\n            [-1.208278295545449, 48.64230190519636],\n            [-1.208298832922348, 48.64232799320603],\n            [-1.208321901017742, 48.64235313520788],\n            [-1.208347401052745, 48.64237722353828],\n            [-1.208356844144334, 48.64238500652766],\n            [-1.208364130284565, 48.64239426185644],\n            [-1.208379137233968, 48.64241103235032],\n            [-1.208080646606893, 48.64253418174281],\n            [-1.208047615048484, 48.64254058321864],\n            [-1.208005904794534, 48.64255067167779],\n            [-1.207965279477943, 48.64256254635218],\n            [-1.207925913058878, 48.64257615639404],\n            [-1.207887974107558, 48.64259144352444],\n            [-1.207851625082108, 48.64260834228295],\n            [-1.207817021632902, 48.64262678030812],\n            [-1.207784311935971, 48.64264667864719],\n            [-1.207753636059092, 48.64266795209395],\n            [-1.20772512536113, 48.64269050955402],\n            [-1.207698901930143, 48.64271425443456],\n            [-1.207675078060506, 48.64273908505788],\n            [-1.207653755771811, 48.64276489509702],\n            [-1.20763502637212, 48.6427915740308],\n            [-1.207618970066935, 48.64281900761724],\n            [-1.207605655615514, 48.64284707838259],\n            [-1.207595140036466, 48.64287566612465],\n            [-1.207587468363869, 48.64290464842685],\n            [-1.20758267345354, 48.64293390118326],\n            [-1.207580775843151, 48.64296329912942],\n            [-1.207581783663558, 48.64299271637898],\n            [-1.20759369501918, 48.64313499019508],\n            [-1.207591014837524, 48.64313579965944],\n            [-1.207578416070754, 48.64313970857167],\n            [-1.207539049095394, 48.64315331848007],\n            [-1.207501109591276, 48.64316860548174],\n            [-1.207464760018844, 48.64318550411687],\n            [-1.207430156030889, 48.64320394202451],\n            [-1.20739744580566, 48.64322384025234],\n            [-1.207366769413274, 48.64324511359471],\n            [-1.207338258214772, 48.64326767095761],\n            [-1.207312034300352, 48.6432914157487],\n            [-1.207288209966406, 48.6433162462906],\n            [-1.207266887234646, 48.64334205625673],\n            [-1.207248157414911, 48.64336873512628],\n            [-1.207240396605775, 48.64338199479096],\n            [-1.206627273138858, 48.64292806062919],\n            [-1.206697515967212, 48.64272285473483],\n            [-1.207265927219519, 48.64199219523461],\n            [-1.207266495955257, 48.6419918492552],\n            [-1.207297171625861, 48.64197057593785],\n            [-1.207325682107836, 48.64194801858326],\n            [-1.207351905315481, 48.64192427378698],\n            [-1.207375728958759, 48.64189944322949],\n            [-1.207397051023293, 48.64187363324065],\n            [-1.207415780207477, 48.64184695434413],\n            [-1.207431836313222, 48.64181952078451],\n            [-1.207445150589683, 48.64179145003742],\n            [-1.207455666027324, 48.64176286230712],\n            [-1.207462969833504, 48.64173526939704],\n            [-1.207476661741191, 48.6417118752274],\n            [-1.207489975964156, 48.64168380447487],\n            [-1.207500491353735, 48.64165521674033],\n            [-1.207508162886024, 48.64162623444157],\n            [-1.207512957715038, 48.64159698168573],\n            [-1.207514855313516, 48.64156758373808],\n            [-1.207513847560795, 48.64153816648521],\n            [-1.207509938777258, 48.64150885589621],\n            [-1.207503145705993, 48.64147977748333],\n            [-1.207493497440746, 48.64145105576425],\n            [-1.207481035301545, 48.64142281372914],\n            [-1.20746581265738, 48.64139517231362],\n            [-1.207447894697964, 48.64136824988162],\n            [-1.207427358154098, 48.64134216171775],\n            [-1.207404290969296, 48.64131701953415],\n            [-1.207378791923182, 48.64129293099209],\n            [-1.20735097020833, 48.64126999924083],\n            [-1.20732094496262, 48.64124832247585],\n            [-1.207288844759324, 48.64122799351894],\n            [-1.207254807056168, 48.64120909942005],\n            [-1.207230506936552, 48.641197054937],\n            [-1.20670248359636, 48.64094733962969],\n            [-1.205963238487293, 48.64059772289944],\n            [-1.206172162977541, 48.64047365792687],\n            [-1.206194306087667, 48.64045990476034],\n            [-1.206224981277595, 48.64043863172809],\n            [-1.20625349137206, 48.64041607463809],\n            [-1.206279714287339, 48.64039233008481],\n            [-1.206303537734395, 48.64036749974794],\n            [-1.206324859699728, 48.64034168995603],\n            [-1.206343588882053, 48.64031501123216],\n            [-1.206359645083641, 48.64028757782003],\n            [-1.206372959552908, 48.64025950719472],\n            [-1.206383475279498, 48.64023091956006],\n            [-1.206391147238086, 48.6402019373334],\n            [-1.206395942580829, 48.64017268462159],\n            [-1.206397840778268, 48.64014328668974],\n            [-1.206396833707202, 48.64011386942423],\n            [-1.206392925685056, 48.64008455879447],\n            [-1.2063861334517, 48.64005548031265],\n            [-1.206376486097265, 48.64002675849685],\n            [-1.206364024937821, 48.63999851633756],\n            [-1.20634880333836, 48.63997087477113],\n            [-1.20633088648392, 48.63994395216186],\n            [-1.206310351100546, 48.63991786379527],\n            [-1.206287285127075, 48.63989272138439],\n            [-1.206261787337635, 48.63986863259147],\n            [-1.206233966919506, 48.6398457005668],\n            [-1.206203943005071, 48.63982402350706],\n            [-1.206171844161847, 48.63980369423526],\n            [-1.206137807841765, 48.63978479980268],\n            [-1.206101979792458, 48.63976742111652],\n            [-1.206064513433942, 48.63975163259339],\n            [-1.206025569200504, 48.63973750184075],\n            [-1.205985313854687, 48.63972508936714],\n            [-1.205943919772725, 48.63971444832328],\n            [-1.205901564206751, 48.63970562427483],\n            [-1.205858428525664, 48.6396986550067],\n            [-1.205825920987482, 48.63969468931273],\n            [-1.205824054542184, 48.63969449264046],\n            [-1.205850702321667, 48.63967340892189],\n            [-1.205876925039864, 48.63964966445973],\n            [-1.205900748334041, 48.63962483420536],\n            [-1.205922070191241, 48.63959902448719],\n            [-1.205940799310776, 48.63957234582791],\n            [-1.205956855494919, 48.63954491247092],\n            [-1.205970169992503, 48.6395168418911],\n            [-1.205980685792694, 48.63948825429198],\n            [-1.205988357870067, 48.63945927209091],\n            [-1.205993153376119, 48.63943001939455],\n            [-1.205995051780993, 48.63940062146794],\n            [-1.205994044960186, 48.63937120419752],\n            [-1.205990137230406, 48.63934189355254],\n            [-1.205983345330104, 48.63931281504544],\n            [-1.205973698348011, 48.63928409319435],\n            [-1.205961237598698, 48.63925585098989],\n            [-1.205946016445121, 48.6392282093685],\n            [-1.205928100070677, 48.63920128669501],\n            [-1.205907565199393, 48.63917519825496],\n            [-1.205884499767569, 48.6391500557618],\n            [-1.205859002547354, 48.63912596687807],\n            [-1.205831182723469, 48.63910303475443],\n            [-1.205801159425761, 48.63908135758808],\n            [-1.205769061219089, 48.63906102820243],\n            [-1.205455559376882, 48.63887508943533],\n            [-1.205421523953882, 48.6388561947888],\n            [-1.205385696813388, 48.63883881587753],\n            [-1.205348231371139, 48.63882302711919],\n            [-1.205309288057666, 48.63880889612215],\n            [-1.205269033631513, 48.63879648339609],\n            [-1.205227640465059, 48.63878584209281],\n            [-1.205185285806458, 48.63877701777894],\n            [-1.205142151020715, 48.63877004824062],\n            [-1.20509842081308, 48.6387649633217],\n            [-1.205054282438105, 48.63876178479599],\n            [-1.205009924898244, 48.63876052627405],\n            [-1.20496553813414, 48.63876119314493],\n            [-1.204921312211695, 48.63876378255313],\n            [-1.204877436508165, 48.63876828341062],\n            [-1.204834098901082, 48.63877467644461],\n            [-1.204791484964263, 48.63878293427982],\n            [-1.204749777172702, 48.63879302155576],\n            [-1.204709154121699, 48.6388048950784],\n            [-1.204669789761967, 48.63881850400464],\n            [-1.204631852654852, 48.63883379006033],\n            [-1.204601398535425, 48.63884794803217],\n            [-1.204406521584849, 48.63877252379015],\n            [-1.2043705643988, 48.63875955488],\n            [-1.204330310243711, 48.63874714182394],\n            [-1.204288917316525, 48.63873650018145],\n            [-1.20424656286412, 48.63872767552049],\n            [-1.204246497255122, 48.63872766340127],\n            [-1.203415770652774, 48.63857423839049],\n            [-1.203372701894434, 48.6385672803055],\n            [-1.203328972041875, 48.638562194711],\n            [-1.203284833956608, 48.63855901550342],\n            [-1.203240476639789, 48.63855775629628],\n            [-1.20319609003112, 48.63855842248155],\n            [-1.203151864195866, 48.63856101120658],\n            [-1.203107988510881, 48.63856551138638],\n            [-1.203064650853638, 48.63857190375093],\n            [-1.203022036798154, 48.63858016092791],\n            [-1.202980328819823, 48.6385902475598],\n            [-1.202939705515083, 48.63860212045499],\n            [-1.202900340835407, 48.6386157287733],\n            [-1.202862403343599, 48.63863101424323],\n            [-1.202826055491491, 48.63864791141141],\n            [-1.202791452924519, 48.63866634792329],\n            [-1.202758743814858, 48.6386862448324],\n            [-1.202728068227827, 48.63870751693889],\n            [-1.202699557520992, 48.63873007315394],\n            [-1.202673333782451, 48.63875381689012],\n            [-1.202649509307938, 48.63877864647463],\n            [-1.202628186119663, 48.638804455585],\n            [-1.202609455529464, 48.63883113370395],\n            [-1.20259339774794, 48.63885856659303],\n            [-1.202580081540703, 48.63888663678145],\n            [-1.202569563933937, 48.63891522406951],\n            [-1.202561889970273, 48.6389442060426],\n            [-1.202557092515439, 48.63897345859614],\n            [-1.20255519211796, 48.63900285646659],\n            [-1.202556196920621, 48.63903227376792],\n            [-1.20256010262582, 48.63906158453057],\n            [-1.202566892513752, 48.63909066324106],\n            [-1.202576537513891, 48.63911938537945],\n            [-1.202580813817202, 48.63912987857811],\n            [-1.202672765446013, 48.63934513871723],\n            [-1.202181497268835, 48.63936318037452],\n            [-1.202137270673969, 48.6393657687077],\n            [-1.202093394196417, 48.63937026849864],\n            [-1.202050055717112, 48.63937666047899],\n            [-1.202007440813466, 48.63938491727815],\n            [-1.201965731964632, 48.63939500354002],\n            [-1.201925107770683, 48.63940687607477],\n            [-1.20188574218693, 48.63942048404376],\n            [-1.201847803780054, 48.63943576917675],\n            [-1.201811455005803, 48.63945266602217],\n            [-1.201781641766186, 48.63946839981883],\n            [-1.200272618645986, 48.64031172257154],\n            [-1.200267828232, 48.64031442491597],\n            [-1.200235117052875, 48.64033432110239],\n            [-1.200204439393982, 48.64035559253072],\n            [-1.200175926621758, 48.6403781481152],\n            [-1.200149700833257, 48.64040189127117],\n            [-1.200125874332865, 48.64042672032806],\n            [-1.200104549151484, 48.64045252896585],\n            [-1.200085816609626, 48.64047920666929],\n            [-1.200069756925963, 48.64050663920166],\n            [-1.200056438874522, 48.64053470909371],\n            [-1.200045919489359, 48.64056329614692],\n            [-1.200038243820438, 48.64059227794783],\n            [-1.200033444741104, 48.64062153039255],\n            [-1.200031542806774, 48.64065092821795],\n            [-1.200032546166729, 48.64068034553825],\n            [-1.200036450529642, 48.64070965638381],\n            [-1.200043239181323, 48.64073873524077],\n            [-1.200052883056721, 48.64076745758855],\n            [-1.200065340863807, 48.64079570043289],\n            [-1.20008055926049, 48.6408233428327],\n            [-1.200098473083335, 48.64085026641798],\n            [-1.200119005626101, 48.64087635589647],\n            [-1.200142068967918, 48.64090149954772],\n            [-1.200149761612699, 48.64090912804412],\n            [-1.200145216420196, 48.6409160357755],\n            [-1.200129156629579, 48.64094346831542],\n            [-1.200115838495524, 48.64097153821363],\n            [-1.200105319052767, 48.64100012527143],\n            [-1.200097643351452, 48.64102910707549],\n            [-1.200092844265104, 48.6410583595219],\n            [-1.200090942348819, 48.64108775734746],\n            [-1.20009194575224, 48.64111717466636],\n            [-1.200095850183658, 48.64114648550908],\n            [-1.200102638928744, 48.64117556436168],\n            [-1.200104709771781, 48.6411825445093],\n            [-1.200186121508773, 48.64144593198417],\n            [-1.199907072492359, 48.6417947804558],\n            [-1.19990108994662, 48.6418024358247],\n            [-1.199882356794231, 48.64182911349253],\n            [-1.199866296568821, 48.64185654599392],\n            [-1.199852978046416, 48.64188461585993],\n            [-1.199842458263372, 48.6419132028919],\n            [-1.19983478227129, 48.64194218467655],\n            [-1.199829982944913, 48.64197143711023],\n            [-1.199828080840639, 48.64200083492965],\n            [-1.199829084108548, 48.64203025224914],\n            [-1.199832988457672, 48.64205956309901],\n            [-1.199837449502805, 48.64207999072288],\n            [-1.199367156312914, 48.64234932663294],\n            [-1.199335910209849, 48.64236838497992],\n            [-1.199305230930292, 48.64238965616461],\n            [-1.199276716602153, 48.64241221152236],\n            [-1.19925048932902, 48.64243595446915],\n            [-1.199226661421513, 48.64246078333585],\n            [-1.199205334916651, 48.64248659180277],\n            [-1.199186601140461, 48.64251326935562],\n            [-1.199170540317249, 48.64254070175818],\n            [-1.19915722122554, 48.64256877154201],\n            [-1.199146700904086, 48.64259735850886],\n            [-1.199139024406828, 48.64262634024563],\n            [-1.199134224610727, 48.64265559264881],\n            [-1.199132322073919, 48.64268499045539],\n            [-1.199133324948742, 48.6427144077796],\n            [-1.199137228945628, 48.64274371865194],\n            [-1.199144017352045, 48.64277279755827],\n            [-1.199153661103942, 48.64280151997795],\n            [-1.199166118909769, 48.64282976291629],\n            [-1.199181337427835, 48.64285740543197],\n            [-1.199199251493686, 48.64288432915419],\n            [-1.199219784400221, 48.64291041879044],\n            [-1.19924284822519, 48.64293556261934],\n            [-1.199268344208095, 48.64295965296969],\n            [-1.199268907174309, 48.64296011707448],\n            [-1.198688200206557, 48.64389224452903],\n            [-1.198675105887308, 48.64391498939471],\n            [-1.198661786155291, 48.6439430591184],\n            [-1.198651265264952, 48.64397164603715],\n            [-1.19864982948082, 48.64397631104529],\n            [-1.198456675804427, 48.6446212982268],\n            [-1.197510638180748, 48.64481970114973],\n            [-1.197503796479562, 48.64482116242062],\n            [-1.197462082220715, 48.64483124703914],\n            [-1.197421452573908, 48.64484311797241],\n            [-1.197382081518192, 48.64485672438871],\n            [-1.19734413764331, 48.64487200802468],\n            [-1.197307783428552, 48.64488890343487],\n            [-1.197273174546472, 48.64490733827217],\n            [-1.197240459196602, 48.64492723359727],\n            [-1.197236618449302, 48.6449297474518],\n            [-1.196651477775068, 48.64531578971412],\n            [-1.196624636372328, 48.64533454634202],\n            [-1.196596119173106, 48.645357101028],\n            [-1.196569889099413, 48.64538084335659],\n            [-1.19654605847402, 48.64540567166073],\n            [-1.196524729345496, 48.64543147962361],\n            [-1.19650599305112, 48.64545815673281],\n            [-1.19648992982599, 48.64548558875426],\n            [-1.196476608458961, 48.64551365822081],\n            [-1.196466085998258, 48.64554224493593],\n            [-1.196458407507435, 48.64557122648745],\n            [-1.196453605871486, 48.64560047877257],\n            [-1.19645170165692, 48.64562987652887],\n            [-1.19645270302279, 48.64565929387079],\n            [-1.196456605686342, 48.6456886048287],\n            [-1.196463392940621, 48.64571768388829],\n            [-1.196473035726551, 48.64574640652796],\n            [-1.196485492756698, 48.64577464975228],\n            [-1.19650071069265, 48.64580229261868],\n            [-1.196518624372509, 48.6458292167548],\n            [-1.196539157090775, 48.64585530686639],\n            [-1.196562220926076, 48.6458804512301],\n            [-1.196587717117814, 48.64590454217235],\n            [-1.196615536489141, 48.64592747653047],\n            [-1.196645559914347, 48.6459491560945],\n            [-1.196677658828853, 48.64596948802737],\n            [-1.196711695780031, 48.64598838526301],\n            [-1.196747525015689, 48.646005766879],\n            [-1.196776136083284, 48.64601802927857],\n            [-1.197297813780185, 48.64622949554524],\n            [-1.197529906850527, 48.64658013581086],\n            [-1.197539720773742, 48.64659429059588],\n            [-1.197560254333834, 48.64662038052306],\n            [-1.197583319030287, 48.6466455246799],\n            [-1.197608816098783, 48.64666961539368],\n            [-1.197636636358739, 48.64669254950273],\n            [-1.197666660680508, 48.64671422879805],\n            [-1.197698760496033, 48.6467345604437],\n            [-1.19773279834843, 48.64675345737511],\n            [-1.19776862848169, 48.64677083867076],\n            [-1.197806097464187, 48.64678662989989],\n            [-1.197845044845727, 48.64680076344038],\n            [-1.197885303844921, 48.64681317876891],\n            [-1.197926702063175, 48.64682382271976],\n            [-1.197969062223394, 48.64683264971276],\n            [-1.198012202928682, 48.64683962194855],\n            [-1.198055939439175, 48.64684470957],\n            [-1.198100084463871, 48.64684789079068],\n            [-1.198128662708422, 48.64684892407222],\n            [-1.200775460819465, 48.64690752879214],\n            [-1.200967153086425, 48.64730883353518],\n            [-1.200969357636548, 48.64731336515477],\n            [-1.200984578501936, 48.64734100742265],\n            [-1.201002495129617, 48.64736793085486],\n            [-1.2010230308014, 48.64739402016005],\n            [-1.201046097583405, 48.64741916361841],\n            [-1.201071596702321, 48.64744325356025],\n            [-1.201099418968792, 48.64746618682716],\n            [-1.201129445244737, 48.64748786521382],\n            [-1.201161546953349, 48.6475081958882],\n            [-1.201195586630006, 48.64752709178973],\n            [-1.201231418510869, 48.64754447200156],\n            [-1.201260030271449, 48.64755673276315],\n            [-1.201377893804143, 48.64760450249246],\n            [-1.201679890492959, 48.64783605367328],\n            [-1.201708654234668, 48.64785676073027],\n            [-1.201740756412784, 48.64787709124187],\n            [-1.201774796556627, 48.64789598697085],\n            [-1.201810628900379, 48.64791336700107],\n            [-1.201848100002601, 48.64792915690697],\n            [-1.201887049404324, 48.64794328907225],\n            [-1.201927310315449, 48.64795570297939],\n            [-1.201968710329247, 48.64796634546884],\n            [-1.202011072160669, 48.64797517096661],\n            [-1.202054214405985, 48.64798214167978],\n            [-1.202097952318577, 48.64798722775777],\n            [-1.202116854173618, 48.64798882647138],\n            [-1.204180345702706, 48.64814385959504],\n            [-1.2044165753862, 48.64832496958789],\n            [-1.204803722026346, 48.64866999680659],\n            [-1.204481075290038, 48.6490195655302],\n            [-1.202962131178909, 48.64893730927727],\n            [-1.20255767002494, 48.64884181928064],\n            [-1.202554508702176, 48.64884107873793],\n            [-1.202512146045993, 48.6488322534416],\n            [-1.202469003008211, 48.64882528290126],\n            [-1.202425264329432, 48.64882019696523],\n            [-1.2023811173004, 48.64881701741156],\n            [-1.202336750960658, 48.6488157578553],\n            [-1.202292355288479, 48.64881642368989],\n            [-1.202248120387957, 48.64881901206429],\n            [-1.202204235674773, 48.64882351189483],\n            [-1.202183017942922, 48.64882639423348],\n            [-1.199840723701697, 48.64917045550408],\n            [-1.197931096880525, 48.64905447232341],\n            [-1.197920401136654, 48.64905387909299],\n            [-1.19787603469977, 48.6490526178094],\n            [-1.197831638759566, 48.64905328191544],\n            [-1.197787403421293, 48.64905586856749],\n            [-1.197743518102534, 48.64906036668933],\n            [-1.197700170721949, 48.64906675701984],\n            [-1.197657546895241, 48.64907501219534],\n            [-1.197643471793217, 48.64907818637146],\n            [-1.195818623638871, 48.64950453909431],\n            [-1.195790980500313, 48.64951144914924],\n            [-1.195750346678886, 48.64952331948615],\n            [-1.195710971508002, 48.64953692532389],\n            [-1.19567302359499, 48.64955220840153],\n            [-1.195636665436486, 48.64956910327611],\n            [-1.195602052721911, 48.64958753760273],\n            [-1.195569333667186, 48.64960743244439],\n            [-1.195538648379935, 48.64962870261009],\n            [-1.19551012825923, 48.64965125701928],\n            [-1.195483895433858, 48.64967499909231],\n            [-1.195460062238081, 48.64969982716338],\n            [-1.19543873073156, 48.6497256349166],\n            [-1.195419992261784, 48.64975231184055],\n            [-1.195403927073104, 48.64977974370177],\n            [-1.195390603962829, 48.64980781303395],\n            [-1.195380079986679, 48.64983639964108],\n            [-1.19537240021464, 48.64986538111133],\n            [-1.195367597537265, 48.64989463334252],\n            [-1.195365692525436, 48.64992403107221],\n            [-1.195366693341706, 48.64995344841518],\n            [-1.195370595705558, 48.64998275940161],\n            [-1.195377382911436, 48.6500118385171],\n            [-1.19537945358339, 48.65001881913666],\n            [-1.195543731719104, 48.65055036962161],\n            [-1.195551304187197, 48.65057211171322],\n            [-1.195563761894882, 48.65060035502858],\n            [-1.195578980784271, 48.6506279980084],\n            [-1.19559689568933, 48.6506549222799],\n            [-1.195617429899363, 48.65068101254821],\n            [-1.195640495486563, 48.65070615708925],\n            [-1.195665993682857, 48.65073024822882],\n            [-1.195693815302825, 48.6507531828033],\n            [-1.195723841211125, 48.6507748626018],\n            [-1.195755942832586, 48.65079519478627],\n            [-1.195789982702868, 48.65081409228967],\n            [-1.195825815057352, 48.65083147418823],\n            [-1.195863286454597, 48.65084726604841],\n            [-1.195902236434299, 48.6508614002455],\n            [-1.195942498203977, 48.65087381625329],\n            [-1.195983899353166, 48.65088446090325],\n            [-1.196026262591943, 48.65089328861221],\n            [-1.19606940651056, 48.65090026157765],\n            [-1.196113146355267, 48.65090534993939],\n            [-1.19615729482077, 48.65090853190784],\n            [-1.196201662851539, 48.65090979385683],\n            [-1.196246060451816, 48.65090913038251],\n            [-1.196290297499101, 48.6509065443259],\n            [-1.196334184558567, 48.65090204676126],\n            [-1.196373313498496, 48.65089636624095],\n            [-1.199923668249827, 48.65030761774598],\n            [-1.201387968990568, 48.6514550636347],\n            [-1.201336738892105, 48.65182551808347],\n            [-1.201335844077642, 48.65183260492838],\n            [-1.201333942480602, 48.6518620027534],\n            [-1.201334946825889, 48.6518914200402],\n            [-1.201338852817959, 48.65192073081936],\n            [-1.201345643735667, 48.65194980957737],\n            [-1.201347713608101, 48.65195678456507],\n            [-1.201465293965871, 48.65233709485797],\n            [-1.201472870970095, 48.65235884207851],\n            [-1.201485332445367, 48.65238708474648],\n            [-1.20150055512952, 48.65241472693622],\n            [-1.201518473840755, 48.65244165027849],\n            [-1.201539011851647, 48.65246773948221],\n            [-1.201562081218204, 48.65249288282801],\n            [-1.201587583156405, 48.65251697264672],\n            [-1.201615408464583, 48.65253990578039],\n            [-1.201645437991687, 48.65256158402427],\n            [-1.201677543147022, 48.65258191454714],\n            [-1.201711586451237, 48.65260081028882],\n            [-1.201745825335925, 48.65261746563576],\n            [-1.202291152880066, 48.65286571599044],\n            [-1.202308299856545, 48.65307074382167],\n            [-1.202236901303215, 48.65404579446977],\n            [-1.201977421459384, 48.65514501584705],\n            [-1.201976005275354, 48.65515130608822],\n            [-1.201972520726204, 48.65517054020788],\n            [-1.201687925181314, 48.65709002482909],\n            [-1.201679543149645, 48.65708210768367],\n            [-1.201651715299241, 48.65705917457278],\n            [-1.201621683084047, 48.65703749633725],\n            [-1.201589575107109, 48.65701716580507],\n            [-1.201555528859528, 48.65699827003297],\n            [-1.201519690131383, 48.65698088993377],\n            [-1.201482212388474, 48.65696509993029],\n            [-1.201443256113768, 48.65695096763613],\n            [-1.201402988121427, 48.65693855356657],\n            [-1.201361580841842, 48.6569279108793],\n            [-1.20131921158376, 48.65691908514676],\n            [-1.201276061774315, 48.65691211416105],\n            [-1.201232316183445, 48.65690702777242],\n            [-1.20118816213151, 48.65690384776089],\n            [-1.201143788687991, 48.65690258774335],\n            [-1.201099385861715, 48.65690325311532],\n            [-1.201055143787331, 48.65690584102764],\n            [-1.201011251911237, 48.65691034039871],\n            [-1.200967898180272, 48.65691673196211],\n            [-1.200925268237236, 48.65692498834885],\n            [-1.200883544625551, 48.65693507420481],\n            [-1.200842906008599, 48.65694694634171],\n            [-1.200803526403462, 48.65696055392265],\n            [-1.200765574436813, 48.65697583867923],\n            [-1.200729212622493, 48.65699273516117],\n            [-1.200694596665692, 48.65701117101681],\n            [-1.200661874795979, 48.65703106730259],\n            [-1.200631187133208, 48.65705233882122],\n            [-1.200602665086763, 48.65707489448647],\n            [-1.200576430793265, 48.6570986377133],\n            [-1.200552596593631, 48.65712346683097],\n            [-1.200531264551699, 48.65714927551905],\n            [-1.200512526017254, 48.65717595326214],\n            [-1.20049646123493, 48.65720338582332],\n            [-1.200491989264416, 48.65721211752388],\n            [-1.200428302139023, 48.65734078980312],\n            [-1.200355496750065, 48.65736819157045],\n            [-1.200342942851365, 48.65735633356103],\n            [-1.200315115458694, 48.65733340012604],\n            [-1.20028508365585, 48.65731172154059],\n            [-1.200252976044161, 48.65729139063432],\n            [-1.200218930113086, 48.65727249446541],\n            [-1.200183091651468, 48.65725511394853],\n            [-1.200145614123807, 48.6572393235082],\n            [-1.20010665801231, 48.65722519075994],\n            [-1.200066390130301, 48.6572127762209],\n            [-1.20002498290781, 48.65720213305083],\n            [-1.199982613653245, 48.65719330682425],\n            [-1.19993946379382, 48.65718633533538],\n            [-1.199895718099613, 48.65718124843659],\n            [-1.199851563891463, 48.65717806791003],\n            [-1.19980719023951, 48.657176807375],\n            [-1.199762787153442, 48.65717747222897],\n            [-1.199718544769066, 48.65718005962519],\n            [-1.1996746525341, 48.65718455848419],\n            [-1.199631298396899, 48.65719094954179],\n            [-1.199588668002005, 48.65719920543113],\n            [-1.199546943894836, 48.65720929080019],\n            [-1.199506304740814, 48.65722116246288],\n            [-1.199466924559338, 48.65723476958415],\n            [-1.199428971979559, 48.65725005389773],\n            [-1.199392609517977, 48.6572669499552],\n            [-1.199357992882519, 48.65728538540672],\n            [-1.199325270305631, 48.65730528131049],\n            [-1.199294581910246, 48.65732655247076],\n            [-1.199266059108846, 48.6573491078028],\n            [-1.199239824041347, 48.65737285072319],\n            [-1.199215989051905, 48.65739767956238],\n            [-1.199194656207774, 48.65742348800109],\n            [-1.199175916862179, 48.65745016552511],\n            [-1.199159851263227, 48.65747759789841],\n            [-1.199155379036259, 48.65748632954661],\n            [-1.19915446010213, 48.6574881860283],\n            [-1.198939708489117, 48.65749606350164],\n            [-1.198895465782159, 48.65749865058],\n            [-1.198851573195494, 48.65750314912362],\n            [-1.198808218679097, 48.65750953986967],\n            [-1.198765587879047, 48.65751779545261],\n            [-1.198723863342501, 48.65752788052176],\n            [-1.198683223736801, 48.6575397518922],\n            [-1.198643843083183, 48.65755335873038],\n            [-1.198605890012856, 48.65756864277101],\n            [-1.19856952704442, 48.65758553856693],\n            [-1.198534909887958, 48.65760397376938],\n            [-1.198502186778196, 48.65762386943761],\n            [-1.198471497840326, 48.65764514037695],\n            [-1.198442974489125, 48.65766769550366],\n            [-1.19841673886685, 48.65769143823508],\n            [-1.198392903320094, 48.65771626690248],\n            [-1.198371569918488, 48.65774207518739],\n            [-1.198280776196747, 48.65774540507388],\n            [-1.19794192930812, 48.65775783174409],\n            [-1.19792351372578, 48.65775890842436],\n            [-1.197915896727049, 48.6577591195022],\n            [-1.193825147356105, 48.65801389570889],\n            [-1.193806936750741, 48.65801519399365],\n            [-1.19376304325826, 48.65801969058806],\n            [-1.193719687650097, 48.65802607940858],\n            [-1.193677055577005, 48.65803433309815],\n            [-1.193635329591678, 48.65804441631401],\n            [-1.193594688367452, 48.65805628587942],\n            [-1.193555305932879, 48.65806989096825],\n            [-1.193517350926461, 48.6580851733229],\n            [-1.193480985875191, 48.65810206750344],\n            [-1.193479564590401, 48.65810277678742],\n            [-1.192714011347982, 48.65848585932943],\n            [-1.192680812732985, 48.65850358348762],\n            [-1.192648086722123, 48.65852347748282],\n            [-1.192617394759452, 48.65854474685297],\n            [-1.192588868272739, 48.65856730052094],\n            [-1.192562629417611, 48.65859104191049],\n            [-1.192538790554527, 48.65861586935849],\n            [-1.19251745376727, 48.65864167655188],\n            [-1.192498710425951, 48.6586683529815],\n            [-1.192482640795844, 48.65869578441619],\n            [-1.192469313693203, 48.65872385339129],\n            [-1.192458786190893, 48.65875243971236],\n            [-1.19245110337397, 48.65878142096896],\n            [-1.192446298145995, 48.65881067305955],\n            [-1.192444391088863, 48.65884007072253],\n            [-1.192445390373798, 48.6588694880728],\n            [-1.192449291726938, 48.65889879914063],\n            [-1.192456078446984, 48.65892787841113],\n            [-1.192465721477098, 48.65895660136203],\n            [-1.192478179528869, 48.65898484499642],\n            [-1.192493399259464, 48.65901248837001],\n            [-1.192511315499336, 48.65903941310826],\n            [-1.192531851531951, 48.65906550391432],\n            [-1.192554919421829, 48.65909064906192],\n            [-1.192580420390985, 48.65911474087406],\n            [-1.192608245242128, 48.65913767618444],\n            [-1.192638274826068, 48.65915935677895],\n            [-1.192670380551846, 48.6591796898161],\n            [-1.192704424937656, 48.65919858822514],\n            [-1.192728732792625, 48.65921063696486],\n            [-1.193320064342711, 48.65949029692213],\n            [-1.193439451738441, 48.66206929760822],\n            [-1.191819427648424, 48.66268381605439],\n            [-1.191785405001185, 48.66269761623243],\n            [-1.191749036032728, 48.66271450985781],\n            [-1.191714412845391, 48.66273294299299],\n            [-1.191681683700017, 48.66275283670611],\n            [-1.191650988747397, 48.66277410581106],\n            [-1.19162245942803, 48.66279665923172],\n            [-1.191596217910051, 48.66282040039271],\n            [-1.191572376564953, 48.66284522763233],\n            [-1.191551037487308, 48.66287103463796],\n            [-1.191535036382188, 48.6628935055811],\n            [-1.191471111854836, 48.66299010723821],\n            [-1.190940216975358, 48.66306562575037],\n            [-1.190913768716315, 48.66306975638396],\n            [-1.190871131906992, 48.66307800902661],\n            [-1.190829401174283, 48.6630880912171],\n            [-1.190788755211687, 48.66309995978304],\n            [-1.190785735647788, 48.66310092692999],\n            [-1.189898054429017, 48.66338703495394],\n            [-1.188527655816409, 48.66367421275393],\n            [-1.188520812030811, 48.66367567333106],\n            [-1.188479080330835, 48.66368575466523],\n            [-1.18843843333059, 48.66369762239707],\n            [-1.188399045083066, 48.66371122570831],\n            [-1.188361084251928, 48.66372650634894],\n            [-1.188324713389026, 48.66374339888627],\n            [-1.18829008823826, 48.6637618309855],\n            [-1.188287630894931, 48.66376323595797],\n            [-1.187718021202018, 48.66409048111974],\n            [-1.187687746969197, 48.66410896873011],\n            [-1.187657049499611, 48.66413023676311],\n            [-1.187628517619772, 48.66415278918728],\n            [-1.187602273508468, 48.66417652943146],\n            [-1.187578429548641, 48.66420135583763],\n            [-1.187557087845896, 48.66422716209699],\n            [-1.187538339791507, 48.66425383770464],\n            [-1.187522265670573, 48.66428126843266],\n            [-1.18750893431899, 48.6643093368197],\n            [-1.187498402827711, 48.66433792267355],\n            [-1.187490716298578, 48.66436690358589],\n            [-1.187485907651458, 48.66439615545674],\n            [-1.187483997482675, 48.6644255530254],\n            [-1.187484993976862, 48.66445497040709],\n            [-1.187488892872008, 48.66448428163198],\n            [-1.187495677477406, 48.66451336118463],\n            [-1.18750531874533, 48.6645420845414],\n            [-1.187517775394782, 48.66457032870374],\n            [-1.187532994089047, 48.66459797272504],\n            [-1.187550909662971, 48.66462489822803],\n            [-1.18757144540288, 48.66465098991256],\n            [-1.187594513374572, 48.66467613604857],\n            [-1.187620014799644, 48.66470022895496],\n            [-1.187647840478885, 48.66472316546058],\n            [-1.187677871259607, 48.66474484734623],\n            [-1.187709978545717, 48.66476518176497],\n            [-1.187744024848674, 48.66478408164012],\n            [-1.187779864376299, 48.66480146603784],\n            [-1.187815245967416, 48.66481643573157],\n            [-1.1902231785281, 48.66576703806393],\n            [-1.19022527629622, 48.66576786280209],\n            [-1.190264236248204, 48.66578199890094],\n            [-1.1903045085719, 48.66579441687687],\n            [-1.190345920811897, 48.6658050635529],\n            [-1.190388295630791, 48.66581389333719],\n            [-1.190431451568974, 48.66582086841827],\n            [-1.190475203821395, 48.66582595892703],\n            [-1.190519365029585, 48.66582914306451],\n            [-1.190563746083477, 48.66583040719551],\n            [-1.190608156931516, 48.66582974590654],\n            [-1.19065240739449, 48.66582716202946],\n            [-1.190696307980097, 48.66582266662909],\n            [-1.190739670694476, 48.66581627895606],\n            [-1.190782309847125, 48.66580802636389],\n            [-1.190824042846601, 48.66579794419255],\n            [-1.190864690983637, 48.66578607561563],\n            [-1.190867712063803, 48.66578510802958],\n            [-1.191675921144684, 48.66552461757441],\n            [-1.192226839989707, 48.66558549994],\n            [-1.192243062610994, 48.66558715939062],\n            [-1.192287223721422, 48.665590342847],\n            [-1.192331604608967, 48.66559160629335],\n            [-1.192376015222834, 48.66559094431931],\n            [-1.192420265384848, 48.66558835975962],\n            [-1.192464165603928, 48.66558386368203],\n            [-1.192507527887792, 48.66557747533997],\n            [-1.192550166547814, 48.66556922209],\n            [-1.192591898994613, 48.66555913927471],\n            [-1.192632546519259, 48.66554727007137],\n            [-1.192671935059648, 48.66553366530694],\n            [-1.192709895944943, 48.66551838324044],\n            [-1.192746266618516, 48.66550148931358],\n            [-1.192780891333691, 48.66548305587033],\n            [-1.192813621821272, 48.66546316184714],\n            [-1.192844317923572, 48.66544189243499],\n            [-1.192872848195576, 48.66541933871446],\n            [-1.192899090467172, 48.66539559726557],\n            [-1.192917603022301, 48.6653766398196],\n            [-1.193241117466815, 48.66502636705992],\n            [-1.193948618895897, 48.6647261038928],\n            [-1.193953766540348, 48.66472389742243],\n            [-1.193990136221395, 48.66470700309989],\n            [-1.194024759933692, 48.66468856927982],\n            [-1.194057489411959, 48.66466867490027],\n            [-1.194088184503188, 48.66464740515367],\n            [-1.19411671376668, 48.66462485112218],\n            [-1.194134894968644, 48.66460875458085],\n            [-1.194306237698808, 48.66444976834827],\n            [-1.19448052446115, 48.66439954238128],\n            [-1.196120989519804, 48.6656126053287],\n            [-1.196141747783353, 48.665627280773],\n            [-1.196173859055274, 48.66564761281908],\n            [-1.196207909136609, 48.66566651017852],\n            [-1.196243752219011, 48.66568389192815],\n            [-1.196281234814998, 48.66569968363514],\n            [-1.196320196416443, 48.66571381767536],\n            [-1.196360470181026, 48.66572623352319],\n            [-1.196401883646923, 48.66573687801104],\n            [-1.196444259471572, 48.66574570555621],\n            [-1.19648741619105, 48.66575267835687],\n            [-1.196531168997048, 48.66575776655377],\n            [-1.1965753305287, 48.66576094835784],\n            [-1.196619711674478, 48.66576221014363],\n            [-1.196664122382489, 48.66576154650797],\n            [-1.19670837247414, 48.66575896029264],\n            [-1.196747499281115, 48.66575504642617],\n            [-1.199755814701626, 48.66539439044286],\n            [-1.199760587810035, 48.66539380646402],\n            [-1.199803949002871, 48.66538741536122],\n            [-1.199846586304001, 48.66537915939659],\n            [-1.199888317129796, 48.66536907392437],\n            [-1.19991312560537, 48.66536207895145],\n            [-1.201832957295612, 48.6647906509407],\n            [-1.201848794101439, 48.6647857738572],\n            [-1.201888179552839, 48.66477216592431],\n            [-1.201926137062235, 48.66475688080445],\n            [-1.201962504088525, 48.66473998395202],\n            [-1.201968125574582, 48.66473715553244],\n            [-1.203130315132872, 48.66414605591847],\n            [-1.203159313757574, 48.66413044781481],\n            [-1.203192039258623, 48.66411055082595],\n            [-1.203222730145335, 48.66408927863215],\n            [-1.203251254995137, 48.66406672232602],\n            [-1.20327639546838, 48.6640440386127],\n            [-1.203797169100218, 48.66354193895945],\n            [-1.203798265270772, 48.66354087884037],\n            [-1.203822100909315, 48.6635160490589],\n            [-1.203843433963079, 48.66349023976991],\n            [-1.203862173083334, 48.66346356149417],\n            [-1.203878238029468, 48.66343612847335],\n            [-1.20388041006442, 48.66343196082209],\n            [-1.204787489268508, 48.66166335048834],\n            [-1.205715649697823, 48.66080991829035],\n            [-1.205725479979232, 48.66080063465137],\n            [-1.205742788189677, 48.66078296771654],\n            [-1.206311010477659, 48.66017209218758],\n            [-1.20632222116158, 48.66017615824559],\n            [-1.206362492960476, 48.66018857058354],\n            [-1.206403903982907, 48.66019921146133],\n            [-1.206446276896764, 48.6602080353117],\n            [-1.206489430250535, 48.66021500434876],\n            [-1.206533179250418, 48.66022008872928],\n            [-1.206577336551753, 48.6602232666805],\n            [-1.2066217130612, 48.6602245245936],\n            [-1.206666118746689, 48.66022385708191],\n            [-1.206710363451129, 48.6602212670038],\n            [-1.206754257706839, 48.66021676545078],\n            [-1.206797613547117, 48.66021037169967],\n            [-1.206840245310836, 48.66020211313011],\n            [-1.20688197043811, 48.66019202510765],\n            [-1.206922610251644, 48.66018015083173],\n            [-1.206961990722029, 48.660166541151],\n            [-1.206999943213138, 48.66015125434569],\n            [-1.207036305204217, 48.6601343558777],\n            [-1.207070920985878, 48.66011591811043],\n            [-1.207103642326994, 48.66009601999883],\n            [-1.20713432910935, 48.66007474675151],\n            [-1.207162849927557, 48.66005218946527],\n            [-1.207189082652149, 48.6600284447356],\n            [-1.207212914951943, 48.66000361424274],\n            [-1.20723424477563, 48.65997780431611],\n            [-1.207252980788272, 48.65995112547917],\n            [-1.207269042762882, 48.65992369197619],\n            [-1.207282361923097, 48.6598956212827],\n            [-1.207291488124591, 48.65987133669223],\n            [-1.207630206736929, 48.65884948558358],\n            [-1.209796757221486, 48.65707634558959],\n            [-1.209803517113472, 48.65707072157717],\n            [-1.209829747036246, 48.65704697623799],\n            [-1.209853576619573, 48.65702214519074],\n            [-1.209874903823676, 48.65699633476714],\n            [-1.209884798624954, 48.65698281364236],\n            [-1.210610226044988, 48.65594779625716],\n            [-1.211139224288138, 48.65535309246679],\n            [-1.211365747426565, 48.65524871325008],\n            [-1.21138599770442, 48.65523901080859],\n            [-1.211420608522311, 48.65522057172113],\n            [-1.211453324957772, 48.65520067236077],\n            [-1.211484006913628, 48.65517939794135],\n            [-1.211512523005096, 48.65515683956478],\n            [-1.211538751122934, 48.65513309383132],\n            [-1.211562578955661, 48.65510826242535],\n            [-1.211583904471214, 48.6550824516803],\n            [-1.21160263635314, 48.65505577212304],\n            [-1.211618694391858, 48.65502833800103],\n            [-1.211632009828292, 48.65500026679235],\n            [-1.211633708925115, 48.65499615176141],\n            [-1.212262279399705, 48.65344489577172],\n            [-1.212271095544559, 48.65342042266268],\n            [-1.212278766122412, 48.65339144006739],\n            [-1.212283559298348, 48.65336218713507],\n            [-1.212285454552502, 48.65333278913168],\n            [-1.212284443773861, 48.65330337194412],\n            [-1.212280531296039, 48.65327406154113],\n            [-1.212273733877851, 48.65324498343425],\n            [-1.212264080631689, 48.65321626213971],\n            [-1.212251612898903, 48.65318802064592],\n            [-1.212242593916821, 48.65317098500754],\n            [-1.211874160129702, 48.65251736855066],\n            [-1.212016685551027, 48.65214199774288],\n            [-1.212022799785766, 48.65212440980748],\n            [-1.212030470309022, 48.65209542722626],\n            [-1.212035263505862, 48.65206617430173],\n            [-1.212037158856338, 48.65203677629983],\n            [-1.212036148249041, 48.65200735910743],\n            [-1.212032236016702, 48.65197804869337],\n            [-1.212025438917099, 48.65194897056913],\n            [-1.212015786061524, 48.65192024925118],\n            [-1.21200331878931, 48.65189200772786],\n            [-1.211988090491727, 48.65186436693277],\n            [-1.21197016638235, 48.65183744522706],\n            [-1.21194962321866, 48.65181135789221],\n            [-1.211926548972346, 48.65178621663694],\n            [-1.211901042453429, 48.65176212911843],\n            [-1.211891479309493, 48.65175389845536],\n            [-1.211450454561052, 48.65138325663013],\n            [-1.21159618993502, 48.65099944731832],\n            [-1.211602305736685, 48.65098185529896],\n            [-1.211609976328907, 48.65095287274088],\n            [-1.211614769661518, 48.65092361983171],\n            [-1.211616665214532, 48.65089422183443],\n            [-1.211615654876119, 48.65086480463599],\n            [-1.211611742977674, 48.65083549420531],\n            [-1.211604946275653, 48.65080641605387],\n            [-1.211595293879331, 48.65077769469821],\n            [-1.211582827126501, 48.65074945312693],\n            [-1.211567599405776, 48.65072181227383],\n            [-1.211549675928694, 48.65069489050019],\n            [-1.211529133449696, 48.65066880308793],\n            [-1.211506059937675, 48.65064366174603],\n            [-1.211480554199373, 48.65061957413201],\n            [-1.211452725455984, 48.65059664339127],\n            [-1.211422692875661, 48.65057496771497],\n            [-1.211390585062673, 48.65055463992016],\n            [-1.211356539507738, 48.65053574705172],\n            [-1.211320701997898, 48.65051837001041],\n            [-1.211283225993678, 48.65050258320554],\n            [-1.211244271970631, 48.65048845423723],\n            [-1.211204006733246, 48.65047604360644],\n            [-1.211162602700204, 48.65046540445619],\n            [-1.211120237166123, 48.65045658234374],\n            [-1.21107709154259, 48.65044961504572],\n            [-1.211033350581297, 48.65044453239658],\n            [-1.210989201582839, 48.65044135616023],\n            [-1.210944833595136, 48.65044009993758],\n            [-1.210900436603533, 48.65044076910778],\n            [-1.210856200717818, 48.65044336080536],\n            [-1.210812315357832, 48.65044786393263],\n            [-1.210768968442495, 48.65045425920702],\n            [-1.210758941563048, 48.6504560227441],\n            [-1.209826515186359, 48.650625079771],\n            [-1.209943670716256, 48.65027152737947],\n            [-1.210991686897613, 48.64994126166868],\n            [-1.210994271296069, 48.6499404427828],\n            [-1.211033642648267, 48.64992683169316],\n            [-1.211071586176107, 48.64991154352855],\n            [-1.21110793939724, 48.6498946437566],\n            [-1.211142546639792, 48.64987620474632],\n            [-1.211155385259839, 48.64986870468563],\n            [-1.212587986423617, 48.64901026809634],\n            [-1.212607860180757, 48.64899786861949],\n            [-1.21263853786493, 48.64897659388184],\n            [-1.212667049922345, 48.64895403520843],\n            [-1.212693274261005, 48.64893028920055],\n            [-1.212717098585698, 48.64890545754394],\n            [-1.212738420879229, 48.64887964657298],\n            [-1.212757149838892, 48.64885296681574],\n            [-1.212773205267959, 48.64882553252022],\n            [-1.212775376066539, 48.64882136443966],\n            [-1.213361903653158, 48.6476770003389],\n            [-1.213373045472506, 48.64765309700595],\n            [-1.213383558766481, 48.64762450874271],\n            [-1.213391227819614, 48.64759552606149],\n            [-1.213396019796469, 48.64756627307111],\n            [-1.213397914182017, 48.6475368750377],\n            [-1.213396902869384, 48.64750745784829],\n            [-1.21339299019416, 48.64747814747178],\n            [-1.213386192916119, 48.64744906941936],\n            [-1.213376540147015, 48.64742034820722],\n            [-1.21336407322618, 48.6473921068234],\n            [-1.213348845543045, 48.64736446620077],\n            [-1.213330922308908, 48.64733754469966],\n            [-1.213310380277193, 48.64731145760082],\n            [-1.213287307414872, 48.64728631661193],\n            [-1.213261802525911, 48.64726222938899],\n            [-1.21325552685297, 48.64725678369738],\n            [-1.213247581391701, 48.64724999688243],\n            [-1.213249846442468, 48.64724986412166],\n            [-1.21329372879432, 48.64724536005979],\n            [-1.213337072623566, 48.6472389638288],\n            [-1.213379692320578, 48.64723070281916],\n            [-1.213421405377206, 48.64722061240654],\n            [-1.213462033167538, 48.64720873580087],\n            [-1.213501401713961, 48.64719512386078],\n            [-1.213539342431349, 48.64717983487602],\n            [-1.213575692849305, 48.64716293431795],\n            [-1.213610297308003, 48.64714449455887],\n            [-1.213643007624958, 48.6471245945623],\n            [-1.213673683728835, 48.64710331954479],\n            [-1.213702194260291, 48.64708076061099],\n            [-1.213728417133744, 48.6470570143631],\n            [-1.213752240060295, 48.6470321824881],\n            [-1.213773561028686, 48.64700637132126],\n            [-1.213792288742006, 48.64697969139139],\n            [-1.213808343008562, 48.64695225694736],\n            [-1.213815735747803, 48.64693746802404],\n            [-1.214054854053039, 48.6464298163696],\n            [-1.214326395840975, 48.6461216089379],\n            [-1.214344502086637, 48.64612054748482],\n            [-1.214388383355356, 48.64611604300328],\n            [-1.214431726072371, 48.64610964635766],\n            [-1.214474344632852, 48.64610138494019],\n            [-1.214516056533486, 48.64609129412824],\n            [-1.214556683153314, 48.64607941713349],\n            [-1.214596050519761, 48.64606580481622],\n            [-1.214633990052696, 48.64605051546779],\n            [-1.214670339286879, 48.64603361456112],\n            [-1.214704942567459, 48.64601517446999],\n            [-1.214737651717088, 48.64599527415939],\n            [-1.214768326669367, 48.6459739988472],\n            [-1.214796836069887, 48.64595143963921],\n            [-1.214823057837944, 48.64592769313904],\n            [-1.214846879689355, 48.64590286103456],\n            [-1.214868199617458, 48.64587704966203],\n            [-1.214886926329819, 48.64585036955123],\n            [-1.214902979639001, 48.64582293495172],\n            [-1.21491629080605, 48.64579486334392],\n            [-1.214926802834777, 48.64576627493548],\n            [-1.214934470715408, 48.6457372921474],\n            [-1.214939261617862, 48.64570803908882],\n            [-1.214941155031588, 48.64567864102624],\n            [-1.214940142853866, 48.64564922384682],\n            [-1.214934533827863, 48.64558234794652],\n            [-1.21608855596933, 48.64451046700448],\n            [-1.216096604261003, 48.64450282510422],\n            [-1.216120424809057, 48.64447799273257],\n            [-1.216141743479886, 48.6444521811206],\n            [-1.216160468986312, 48.64442550079909],\n            [-1.216176521146393, 48.64439806601852],\n            [-1.216189831225771, 48.64436999426],\n            [-1.216200342232956, 48.6443414057321],\n            [-1.216208009162787, 48.64431242285604],\n            [-1.216212799189003, 48.64428316974143],\n            [-1.216214691804887, 48.64425377165502],\n            [-1.216213678911138, 48.64422435448405],\n            [-1.216209764850142, 48.64419504419737],\n            [-1.21620296638759, 48.64416596630571],\n            [-1.216193312640288, 48.64413724532468],\n            [-1.216180844951826, 48.64410900424112],\n            [-1.216165616714795, 48.64408136398676],\n            [-1.216147693143008, 48.64405444292051],\n            [-1.216127150991249, 48.6440283563211],\n            [-1.216104078227029, 48.64400321589396],\n            [-1.216078573653896, 48.64397912929285],\n            [-1.216050746488044, 48.64395619965877],\n            [-1.216020715890755, 48.64393452517805],\n            [-1.215988610458143, 48.64391419866281],\n            [-1.215954567670374, 48.64389530715234],\n            [-1.215930262437288, 48.64388326369759],\n            [-1.215929283172299, 48.64388280193768],\n            [-1.215834190058156, 48.64383784320634],\n            [-1.216117057299206, 48.64357510073584],\n            [-1.216118027156761, 48.64357442801256],\n            [-1.216146534592233, 48.64355186846513],\n            [-1.216171652714615, 48.64352918795458],\n            [-1.216305029598572, 48.64340049993934],\n            [-1.216398241796333, 48.6433139178729],\n            [-1.216517568817817, 48.643243037912],\n            [-1.216695951506857, 48.64314082867317],\n            [-1.216727177646171, 48.64312177353738],\n            [-1.216757850005004, 48.64310049768843],\n            [-1.21678635688502, 48.64307793798103],\n            [-1.216811477736399, 48.64305525418967],\n            [-1.217309766484882, 48.64257445667995],\n            [-1.217974084411511, 48.64219381126623],\n            [-1.21797555610198, 48.64219296921928],\n            [-1.21800678887237, 48.64217390931894],\n            [-1.218037460112278, 48.64215263312606],\n            [-1.218065965881383, 48.64213007309889],\n            [-1.218092184114628, 48.64210632584445],\n            [-1.21809350369801, 48.64210503990541],\n            [-1.218681089811415, 48.64153029209299],\n            [-1.218703588124328, 48.64150674512521],\n            [-1.218724904210804, 48.64148093302752],\n            [-1.21874362724143, 48.64145425227854],\n            [-1.218759677044856, 48.64142681713071],\n            [-1.218772984896837, 48.64139874506656],\n            [-1.218783493815372, 48.64137015629605],\n            [-1.218791158804315, 48.64134117324149],\n            [-1.218795947045639, 48.64131192001317],\n            [-1.21879783804034, 48.64128252187832]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.209472227028408, 48.66063366537245],\n            [-1.209471217748588, 48.66060424817509],\n            [-1.209467306342509, 48.66057493769101],\n            [-1.209460509564029, 48.66054585943221],\n            [-1.209450856523202, 48.66051713791536],\n            [-1.20943838856016, 48.66048889612993],\n            [-1.209423159069052, 48.6604612550105],\n            [-1.209405233268848, 48.66043433291971],\n            [-1.209384687923962, 48.66040824514073],\n            [-1.209361611015538, 48.66038310338397],\n            [-1.209336101364926, 48.660359015309],\n            [-1.209308268209985, 48.66033608406293],\n            [-1.209278230737796, 48.66031440783912],\n            [-1.209246117573708, 48.66029407945715],\n            [-1.209212066231002, 48.6602751859643],\n            [-1.209176222521842, 48.66025780826409],\n            [-1.209138739933189, 48.66024202076845],\n            [-1.209099778968814, 48.66022789108068],\n            [-1.209059506462884, 48.66021547970463],\n            [-1.209018094865193, 48.66020483978661],\n            [-1.208975721502914, 48.66019601688716],\n            [-1.208932567820826, 48.6601890487863],\n            [-1.208888818605396, 48.66018396532174],\n            [-1.20884466119253, 48.66018078826136],\n            [-1.208800284666076, 48.66017953120894],\n            [-1.208755879048094, 48.66018019954776],\n            [-1.20871163448512, 48.66018279041548],\n            [-1.208667740434286, 48.66018729271837],\n            [-1.208624384851682, 48.66019368717697],\n            [-1.208581753388103, 48.66020194641027],\n            [-1.208540028593463, 48.6602120350517],\n            [-1.208533828789973, 48.66021371189937],\n            [-1.207131861581128, 48.66059824345537],\n            [-1.207097421379617, 48.66060844103555],\n            [-1.20705804059984, 48.66062205076235],\n            [-1.2070200877711, 48.66063733758642],\n            [-1.207003981663812, 48.66064453302487],\n            [-1.206669557837221, 48.66079859409124],\n            [-1.206649301457727, 48.66080829705572],\n            [-1.206614685044931, 48.66082673469474],\n            [-1.20658196303495, 48.66084663266569],\n            [-1.206551275547918, 48.66086790576394],\n            [-1.20652275399278, 48.66089046289665],\n            [-1.206496520503939, 48.66091420747232],\n            [-1.206472687418874, 48.66093903781454],\n            [-1.206451356796685, 48.6609648475977],\n            [-1.206432619981146, 48.66099152630166],\n            [-1.206416557209233, 48.66101895968531],\n            [-1.206403454568401, 48.66104651502528],\n            [-1.205923587389628, 48.66218171732532],\n            [-1.205923370079598, 48.66218223257492],\n            [-1.205912849501269, 48.66221082012457],\n            [-1.205905173909547, 48.66223980227558],\n            [-1.205900376177116, 48.66226905492268],\n            [-1.205898476853717, 48.66229845280189],\n            [-1.205899484077522, 48.6623278700271],\n            [-1.205903393540615, 48.6623571806292],\n            [-1.205910188506985, 48.66238625909528],\n            [-1.205919839884502, 48.66241498090649],\n            [-1.205932306348962, 48.66244322307082],\n            [-1.205947534521565, 48.6624708646502],\n            [-1.20596545919659, 48.6624977872779],\n            [-1.205986003621371, 48.66252387566602],\n            [-1.206009079824519, 48.66254901809863],\n            [-1.206034588992417, 48.6625731069105],\n            [-1.206062421892662, 48.66259603894797],\n            [-1.20609245934161, 48.66261771601107],\n            [-1.206124572714691, 48.66263804527338],\n            [-1.206158624497224, 48.66265693968038],\n            [-1.206194468873572, 48.66267431832163],\n            [-1.206231952350814, 48.66269010677753],\n            [-1.206270914416967, 48.66270423743786],\n            [-1.206311188227693, 48.66271664979168],\n            [-1.206352601321048, 48.66272729068596],\n            [-1.206394976355929, 48.66273611455376],\n            [-1.206433462071344, 48.66274242456987],\n            [-1.207418186983236, 48.66288379218516],\n            [-1.207422856810021, 48.6628844511841],\n            [-1.207466608226551, 48.66288953520722],\n            [-1.207510767930864, 48.66289271279818],\n            [-1.207555146819288, 48.66289397034956],\n            [-1.207599554849541, 48.66289330247628],\n            [-1.207643801854521, 48.66289071203827],\n            [-1.207687698356694, 48.66288621012857],\n            [-1.207731056379686, 48.66287981602552],\n            [-1.207773690253138, 48.66287155711034],\n            [-1.207815417408109, 48.66286146874987],\n            [-1.207856059158394, 48.66284959414518],\n            [-1.207895441466549, 48.66283598414632],\n            [-1.207933395688514, 48.66282069703474],\n            [-1.207969759296099, 48.66280379827375],\n            [-1.208004376573084, 48.66278536022802],\n            [-1.208037099281787, 48.6627654618538],\n            [-1.208067787298095, 48.66274418836046],\n            [-1.208096309211666, 48.66272163084625],\n            [-1.208122542887877, 48.66269788590742],\n            [-1.208146375991848, 48.66267305522512],\n            [-1.20815869366427, 48.66265864417345],\n            [-1.208376974834349, 48.66239192544576],\n            [-1.20876415012068, 48.66212639898349],\n            [-1.208781762845319, 48.66211385008661],\n            [-1.208810284081012, 48.66209129239361],\n            [-1.208836517091376, 48.66206754729033],\n            [-1.208860349544128, 48.66204271645842],\n            [-1.208881679387139, 48.66201690622891],\n            [-1.208900415285492, 48.66199022712654],\n            [-1.20891647701256, 48.66196279339657],\n            [-1.208927965796305, 48.66193899063353],\n            [-1.20944551286019, 48.66075415450932],\n            [-1.209447342770234, 48.66074988638299],\n            [-1.209457861033794, 48.66072129850588],\n            [-1.209465534346459, 48.66069231611383],\n            [-1.209470329854609, 48.66066306331418],\n            [-1.209472227028408, 48.66063366537245]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.193835816222695, 48.65057907599584],\n            [-1.193834816289299, 48.65054965864081],\n            [-1.193830914776366, 48.65052034760318],\n            [-1.193829638160913, 48.65051377834664],\n            [-1.193609884164992, 48.64944513418621],\n            [-1.193604374615356, 48.64942262422446],\n            [-1.193594732762739, 48.64939390135042],\n            [-1.193582276459391, 48.64936565781867],\n            [-1.193567059049199, 48.64933801457127],\n            [-1.193549145699595, 48.64931108997994],\n            [-1.193528613121577, 48.64928499933858],\n            [-1.193505549241711, 48.64925985436994],\n            [-1.193480052825433, 48.64923576274721],\n            [-1.193452233054066, 48.64921282763271],\n            [-1.193422209057298, 48.64919114723664],\n            [-1.193390109402743, 48.64917081439612],\n            [-1.19335607154605, 48.64915191617756],\n            [-1.193320241241507, 48.6491345335047],\n            [-1.193282771918403, 48.64911874081099],\n            [-1.193243824024113, 48.64910460572173],\n            [-1.193203564336649, 48.64909218876411],\n            [-1.193162165250949, 48.64908154310819],\n            [-1.19311980404063, 48.6490727143392],\n            [-1.193076662098371, 48.64906574026216],\n            [-1.19303292416046, 48.64906065074059],\n            [-1.192988777514441, 48.64905746756783],\n            [-1.192966488681122, 48.6490565919969],\n            [-1.189498749058369, 48.64895821794163],\n            [-1.189476671645311, 48.64895782965103],\n            [-1.189432275678168, 48.64895849050232],\n            [-1.189388039991635, 48.64896107391137],\n            [-1.18934415400471, 48.6489655688159],\n            [-1.189300805639073, 48.64897195596855],\n            [-1.189258180514523, 48.64898020801915],\n            [-1.189216461153877, 48.6489902896323],\n            [-1.189175826202273, 48.64900215763786],\n            [-1.189136449661086, 48.64901576121654],\n            [-1.189106880823807, 48.64902747144124],\n            [-1.18722744104562, 48.64981533685799],\n            [-1.187219060101061, 48.64981890739618],\n            [-1.187182698910583, 48.64983579958754],\n            [-1.187148082914633, 48.64985423135969],\n            [-1.187115360342921, 48.64987412378664],\n            [-1.187084671318379, 48.6498953916876],\n            [-1.187056147256127, 48.64991794399181],\n            [-1.187029910301498, 48.64994168412856],\n            [-1.18700607280678, 48.64996651044044],\n            [-1.186984736849899, 48.64999231661896],\n            [-1.186965993797409, 48.65001899215957],\n            [-1.186949923913265, 48.65004642283475],\n            [-1.18693659601496, 48.65007449118323],\n            [-1.186926067178638, 48.65010307701301],\n            [-1.186918382495088, 48.65013205791598],\n            [-1.186913574875925, 48.65016130979201],\n            [-1.186911664913197, 48.65019070738046],\n            [-1.186912660790678, 48.65022012479652],\n            [-1.186916558248974, 48.65024943607021],\n            [-1.186917834285171, 48.65025600701116],\n            [-1.18697259624204, 48.65052247793741],\n            [-1.186733262865383, 48.65084762543689],\n            [-1.186718950109602, 48.65086839199936],\n            [-1.186702879819284, 48.65089582263828],\n            [-1.186689551558069, 48.65092389095639],\n            [-1.186683599623584, 48.65093903868794],\n            [-1.186668667814614, 48.65097994778673],\n            [-1.186664861473392, 48.65098068455525],\n            [-1.186623139933769, 48.65099076522272],\n            [-1.186582502754268, 48.65100263230683],\n            [-1.186543123945734, 48.65101623499234],\n            [-1.186505172131482, 48.65103151503179],\n            [-1.186468809824677, 48.65104840699523],\n            [-1.186434192732664, 48.65106683855019],\n            [-1.186401469089768, 48.65108673077158],\n            [-1.18637077902354, 48.65110799847954],\n            [-1.186342253953594, 48.65113055060411],\n            [-1.186316016029541, 48.65115429057546],\n            [-1.186292177607804, 48.65117911673674],\n            [-1.186270840770307, 48.6512049227802],\n            [-1.186252096887361, 48.65123159820183],\n            [-1.186236026226539, 48.6512590287746],\n            [-1.18622269760855, 48.65128709703764],\n            [-1.186212168112695, 48.65131568279952],\n            [-1.186204482832542, 48.6513446636522],\n            [-1.186199674682344, 48.65137391549587],\n            [-1.186197764256347, 48.65140331306996],\n            [-1.18619867194715, 48.65143013612602],\n            [-1.186196697951802, 48.65143150405623],\n            [-1.186168172620346, 48.65145405613703],\n            [-1.186141934445373, 48.65147779606789],\n            [-1.186123425106691, 48.65149675172897],\n            [-1.18548485702374, 48.6521881692393],\n            [-1.185479527553675, 48.65219403967279],\n            [-1.185458189868716, 48.65221984556318],\n            [-1.185439445176677, 48.65224652084996],\n            [-1.185423373748309, 48.65227395130683],\n            [-1.185410044407917, 48.65230201947345],\n            [-1.185399514237842, 48.6523306051586],\n            [-1.185391828334328, 48.65235958595477],\n            [-1.185387019614466, 48.65238883776225],\n            [-1.185385108674979, 48.6524182353208],\n            [-1.185386103703738, 48.65244765274566],\n            [-1.185390000445068, 48.6524769640668],\n            [-1.185396782217432, 48.65250604376827],\n            [-1.185406419985176, 48.65253476732597],\n            [-1.185410695453155, 48.65254526491832],\n            [-1.185635314224218, 48.65307139329811],\n            [-1.18564349141828, 48.65308914010341],\n            [-1.185658705608608, 48.65311678439598],\n            [-1.185676616089746, 48.65314371021388],\n            [-1.185697146169882, 48.65316980225537],\n            [-1.185720207938976, 48.65319494878905],\n            [-1.185745702645242, 48.65321904213202],\n            [-1.185773521118287, 48.65324197911138],\n            [-1.185803544236019, 48.6532636615057],\n            [-1.185835643435618, 48.65328399646606],\n            [-1.185869681262795, 48.65330289691341],\n            [-1.185905511961662, 48.65332028191131],\n            [-1.185942982098176, 48.65333607701309],\n            [-1.185981931217186, 48.65335021458009],\n            [-1.18602219252989, 48.65336263407172],\n            [-1.18606359362776, 48.65337328230446],\n            [-1.186105957221393, 48.65338211367981],\n            [-1.186149101899183, 48.65338909037958],\n            [-1.186192842904261, 48.65339418252761],\n            [-1.186236992926359, 48.65339736831804],\n            [-1.186281362903232, 48.65339863410839],\n            [-1.186325762830847, 48.65339797447825],\n            [-1.186370002576753, 48.65339539225233],\n            [-1.186413892694493, 48.65339089848849],\n            [-1.186457245235071, 48.65338451243001],\n            [-1.186473089522193, 48.65338167945284],\n            [-1.187032106025161, 48.65327690469804],\n            [-1.187419546841431, 48.65331974767945],\n            [-1.187435764768992, 48.65332140774797],\n            [-1.187479914805918, 48.6533245930595],\n            [-1.187524284749877, 48.65332585836852],\n            [-1.187568684596956, 48.65332519825675],\n            [-1.187612924215025, 48.65332261555095],\n            [-1.187656814158205, 48.65331812131092],\n            [-1.187700166478238, 48.65331173478218],\n            [-1.187742795529148, 48.65330348331359],\n            [-1.187784518762576, 48.6532934022401],\n            [-1.187825157509364, 48.65328153473148],\n            [-1.187864537744696, 48.65326793160741],\n            [-1.187902490833428, 48.6532526511201],\n            [-1.187909216244356, 48.65324952687111],\n            [-1.187988945709786, 48.65326568144791],\n            [-1.188005032512536, 48.65326879752022],\n            [-1.188048177356413, 48.65327577350493],\n            [-1.188091918455196, 48.65328086492811],\n            [-1.188136068498098, 48.65328404998677],\n            [-1.188180438422812, 48.65328531504174],\n            [-1.188224838225467, 48.6532846546757],\n            [-1.188269077774171, 48.65328207171653],\n            [-1.188312967623366, 48.6532775772252],\n            [-1.188356319825155, 48.65327119044817],\n            [-1.188398948734037, 48.65326293873549],\n            [-1.188440671802418, 48.65325285742295],\n            [-1.188481310361536, 48.6532409896816],\n            [-1.188520690387656, 48.65322738633203],\n            [-1.188550261921357, 48.65321567622387],\n            [-1.190481776837007, 48.65240600341343],\n            [-1.190490157890118, 48.65240243267529],\n            [-1.19051582888243, 48.65239075274894],\n            [-1.193554134844552, 48.65093921310398],\n            [-1.193564825163922, 48.65093399950827],\n            [-1.193599439551518, 48.65091556579884],\n            [-1.19363216023638, 48.65089567152148],\n            [-1.193662847102708, 48.6508744018682],\n            [-1.193691368745216, 48.65085184792078],\n            [-1.1937176030304, 48.65082810626018],\n            [-1.193741437620821, 48.65080327855337],\n            [-1.19376277045518, 48.6507774711181],\n            [-1.193781510185747, 48.6507507944671],\n            [-1.193797576569351, 48.65072336283517],\n            [-1.193810900811061, 48.65069529368996],\n            [-1.193821425858694, 48.65066670722867],\n            [-1.19382910664668, 48.65063772586393],\n            [-1.193833910289723, 48.65060847369876],\n            [-1.193835816222695, 48.65057907599584]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-dissolve/test/out/issue-1237.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.49609375, 42.64052548480924],\n            [-83.49540710449219, 42.64052548480924],\n            [-83.49540710449219, 42.64103059165476],\n            [-83.49609375, 42.64103059165476],\n            [-83.49609375, 42.64052548480924]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.49609375, 42.64456622475866],\n            [-83.49540710449219, 42.64456622475866],\n            [-83.49540710449219, 42.645576368740564],\n            [-83.49609375, 42.645576368740564],\n            [-83.49609375, 42.64456622475866]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.49609375, 42.66880515319917],\n            [-83.49540710449219, 42.66880515319917],\n            [-83.49540710449219, 42.66931003040664],\n            [-83.49609375, 42.66931003040664],\n            [-83.49609375, 42.66880515319917]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.49540710449219, 42.66830027189085],\n            [-83.49403381347656, 42.66830027189085],\n            [-83.49403381347656, 42.66880515319917],\n            [-83.49540710449219, 42.66880515319917],\n            [-83.49540710449219, 42.66830027189085]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.42674255371094, 42.681930627802714],\n            [-83.42605590820312, 42.681930627802714],\n            [-83.42605590820312, 42.68243539838622],\n            [-83.42674255371094, 42.68243539838622],\n            [-83.42674255371094, 42.681930627802714]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.42262268066406, 42.681930627802714],\n            [-83.42124938964844, 42.681930627802714],\n            [-83.42124938964844, 42.68243539838622],\n            [-83.42262268066406, 42.68243539838622],\n            [-83.42262268066406, 42.681930627802714]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.41850280761719, 42.681930627802714],\n            [-83.41781616210938, 42.681930627802714],\n            [-83.41781616210938, 42.68243539838622],\n            [-83.41850280761719, 42.68243539838622],\n            [-83.41850280761719, 42.681930627802714]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-dissolve/test/out/polysByProperty.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"combine\": \"yes\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 1],\n            [0.4450683930362929, 0.10986321392741416],\n            [0.23620605468749623, 0.10986321392741416],\n            [0.23620605468749623, -0.8901516807502449],\n            [1.2362060546874962, -0.8901516807502449],\n            [1.2362060546874962, 0],\n            [2, 0],\n            [2, 1],\n            [0, 1]\n          ],\n          [\n            [0.7659179283564485, 0.10986321392741416],\n            [1, 0.5],\n            [1, 0.10986321392741416],\n            [0.7659179283564485, 0.10986321392741416]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"combine\": \"no\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.851440429687502, -1.647722051796948],\n            [1.516113281250002, -1.647722051796948],\n            [1.516113281250002, -1],\n            [2, -1],\n            [2, 0],\n            [1.516113281250002, 0],\n            [1.516113281250002, 1.4500404973607692],\n            [0.851440429687502, 1.4500404973607692],\n            [0.851440429687502, -1.647722051796948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"combine\": \"undefined\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.252685546875, 1.252341676699629],\n            [0.28564453125, 1.252341676699629],\n            [0.28564453125, 1.653212936926045],\n            [-0.252685546875, 1.653212936926045],\n            [-0.252685546875, 1.252341676699629]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-dissolve/test/out/polysWithoutProperty.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.252685546875, 1.252341676699629],\n            [0.28564453125, 1.252341676699629],\n            [0.28564453125, 1.653212936926045],\n            [-0.252685546875, 1.653212936926045],\n            [-0.252685546875, 1.252341676699629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 1],\n            [0.4450683930362929, 0.10986321392741416],\n            [0.23620605468749623, 0.10986321392741416],\n            [0.23620605468749623, -0.8901516807502449],\n            [0.851440429687502, -0.8901516807502449],\n            [0.851440429687502, -1.647722051796948],\n            [1.516113281250002, -1.647722051796948],\n            [1.516113281250002, -1],\n            [2, -1],\n            [2, 1],\n            [1.516113281250002, 1],\n            [1.516113281250002, 1.4500404973607692],\n            [0.851440429687502, 1.4500404973607692],\n            [0.851440429687502, 1],\n            [0, 1]\n          ],\n          [\n            [0.7659179283564485, 0.10986321392741416],\n            [0.851440429687502, 0.25240071614583665],\n            [0.851440429687502, 0.10986321392741416],\n            [0.7659179283564485, 0.10986321392741416]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-dissolve/test/out/simplified-issue.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.822, 45.354],\n            [-75.818, 45.347],\n            [-75.809, 45.345],\n            [-75.80038028169014, 45.34691549295775],\n            [-75.799, 45.3445],\n            [-75.801, 45.341],\n            [-75.797, 45.335],\n            [-75.788, 45.332],\n            [-75.779, 45.335],\n            [-75.77871428571429, 45.33542857142857],\n            [-75.777, 45.336],\n            [-75.77558064516128, 45.33812903225807],\n            [-75.775, 45.338],\n            [-75.76714084507043, 45.33974647887324],\n            [-75.765, 45.336],\n            [-75.76398591549295, 45.33577464788733],\n            [-75.765, 45.334],\n            [-75.761, 45.328],\n            [-75.752, 45.325],\n            [-75.743, 45.328],\n            [-75.739, 45.334],\n            [-75.743, 45.341],\n            [-75.74469565217392, 45.3413768115942],\n            [-75.744, 45.343],\n            [-75.747, 45.349],\n            [-75.756, 45.352],\n            [-75.76363636363637, 45.34945454545455],\n            [-75.766, 45.353],\n            [-75.775, 45.356],\n            [-75.7802, 45.35426666666667],\n            [-75.7835, 45.355],\n            [-75.779, 45.356],\n            [-75.77629577464789, 45.360732394366195],\n            [-75.773, 45.36],\n            [-75.764, 45.362],\n            [-75.76067605633803, 45.36781690140845],\n            [-75.757, 45.367],\n            [-75.75475, 45.3675],\n            [-75.74901408450704, 45.36622535211268],\n            [-75.752, 45.361],\n            [-75.74823076923077, 45.355346153846156],\n            [-75.749, 45.354],\n            [-75.745, 45.348],\n            [-75.743, 45.344],\n            [-75.74175, 45.343583333333335],\n            [-75.742, 45.343],\n            [-75.739, 45.337],\n            [-75.735625, 45.335875],\n            [-75.736, 45.335],\n            [-75.73371428571429, 45.33042857142857],\n            [-75.734, 45.33],\n            [-75.73261538461539, 45.327576923076926],\n            [-75.733, 45.327],\n            [-75.729, 45.321],\n            [-75.72, 45.318],\n            [-75.711, 45.321],\n            [-75.70751612903226, 45.32622580645161],\n            [-75.702, 45.325],\n            [-75.698, 45.32588888888889],\n            [-75.694, 45.325],\n            [-75.685, 45.327],\n            [-75.681, 45.334],\n            [-75.68227272727273, 45.33590909090909],\n            [-75.682, 45.336],\n            [-75.68016666666666, 45.33875],\n            [-75.679, 45.337],\n            [-75.67, 45.334],\n            [-75.661, 45.337],\n            [-75.657, 45.343],\n            [-75.65966666666667, 45.347],\n            [-75.657, 45.351],\n            [-75.655, 45.348],\n            [-75.646, 45.345],\n            [-75.6448, 45.3454],\n            [-75.643, 45.345],\n            [-75.6425, 45.34511111111111],\n            [-75.642, 45.345],\n            [-75.63677419354839, 45.346161290322584],\n            [-75.634, 45.342],\n            [-75.625, 45.339],\n            [-75.616, 45.342],\n            [-75.612, 45.348],\n            [-75.616, 45.354],\n            [-75.6195, 45.35516666666667],\n            [-75.611, 45.358],\n            [-75.607, 45.364],\n            [-75.611, 45.371],\n            [-75.61274193548387, 45.37138709677419],\n            [-75.611, 45.374],\n            [-75.615, 45.38],\n            [-75.6165, 45.3805],\n            [-75.61390909090909, 45.38136363636364],\n            [-75.611, 45.377],\n            [-75.60909090909091, 45.376363636363635],\n            [-75.61, 45.375],\n            [-75.606, 45.368],\n            [-75.597, 45.366],\n            [-75.588, 45.368],\n            [-75.584, 45.375],\n            [-75.588, 45.381],\n            [-75.58990909090909, 45.38163636363636],\n            [-75.589, 45.383],\n            [-75.593, 45.389],\n            [-75.602, 45.392],\n            [-75.60671428571429, 45.39042857142857],\n            [-75.609, 45.395],\n            [-75.60906122448979, 45.39514285714286],\n            [-75.608, 45.397],\n            [-75.61018181818181, 45.40027272727273],\n            [-75.608, 45.401],\n            [-75.60495652173913, 45.405565217391306],\n            [-75.603, 45.406],\n            [-75.6025294117647, 45.40682352941177],\n            [-75.596, 45.409],\n            [-75.59527272727273, 45.41009090909091],\n            [-75.595, 45.41],\n            [-75.586, 45.413],\n            [-75.582, 45.419],\n            [-75.586, 45.425],\n            [-75.58666666666667, 45.425222222222224],\n            [-75.587, 45.426],\n            [-75.593, 45.42733333333333],\n            [-75.595, 45.428],\n            [-75.5954, 45.42786666666667],\n            [-75.596, 45.428],\n            [-75.605, 45.426],\n            [-75.6052, 45.42593333333333],\n            [-75.6064, 45.4262],\n            [-75.604, 45.427],\n            [-75.60371428571429, 45.42742857142857],\n            [-75.596, 45.43],\n            [-75.592, 45.436],\n            [-75.59374647887324, 45.439056338028166],\n            [-75.5886, 45.4402],\n            [-75.588, 45.44],\n            [-75.579, 45.443],\n            [-75.575, 45.449],\n            [-75.579, 45.456],\n            [-75.588, 45.458],\n            [-75.5934, 45.4568],\n            [-75.594, 45.457],\n            [-75.5945, 45.456833333333336],\n            [-75.595, 45.457],\n            [-75.604, 45.454],\n            [-75.608, 45.448],\n            [-75.60624, 45.44492],\n            [-75.608, 45.44433333333333],\n            [-75.614, 45.443],\n            [-75.61433333333333, 45.44222222222222],\n            [-75.615, 45.442],\n            [-75.61525, 45.4415],\n            [-75.61965217391304, 45.44052173913043],\n            [-75.616, 45.446],\n            [-75.62, 45.453],\n            [-75.629, 45.455],\n            [-75.638, 45.453],\n            [-75.6388, 45.4516],\n            [-75.64, 45.452],\n            [-75.64084, 45.45172],\n            [-75.641, 45.452],\n            [-75.65, 45.454],\n            [-75.659, 45.452],\n            [-75.66030434782608, 45.44895652173913],\n            [-75.661, 45.45],\n            [-75.67, 45.452],\n            [-75.679, 45.45],\n            [-75.68091304347826, 45.44713043478261],\n            [-75.686, 45.446],\n            [-75.689, 45.439],\n            [-75.68857142857142, 45.43814285714286],\n            [-75.689, 45.438],\n            [-75.6898, 45.4364],\n            [-75.694, 45.435],\n            [-75.698, 45.429],\n            [-75.69683636363636, 45.42696363636364],\n            [-75.697, 45.427],\n            [-75.706, 45.425],\n            [-75.7095294117647, 45.41882352941177],\n            [-75.715, 45.417],\n            [-75.719, 45.411],\n            [-75.71669230769231, 45.407538461538465],\n            [-75.717, 45.407],\n            [-75.7159090909091, 45.40536363636364],\n            [-75.717, 45.405],\n            [-75.721, 45.412],\n            [-75.73, 45.414],\n            [-75.739, 45.412],\n            [-75.7424909090909, 45.40589090909091],\n            [-75.751, 45.404],\n            [-75.75136363636364, 45.403363636363636],\n            [-75.753, 45.403],\n            [-75.75370588235295, 45.40176470588235],\n            [-75.759, 45.4],\n            [-75.762, 45.399],\n            [-75.766, 45.393],\n            [-75.762, 45.386],\n            [-75.758, 45.38511111111111],\n            [-75.763, 45.384],\n            [-75.76321818181817, 45.38361818181818],\n            [-75.766, 45.383],\n            [-75.76952, 45.37684],\n            [-75.773, 45.378],\n            [-75.7745, 45.3775],\n            [-75.782, 45.38],\n            [-75.791, 45.377],\n            [-75.79265217391304, 45.37452173913044],\n            [-75.795, 45.374],\n            [-75.799, 45.367],\n            [-75.79866666666666, 45.3665],\n            [-75.801, 45.363],\n            [-75.797, 45.356],\n            [-75.7925, 45.355],\n            [-75.79612903225807, 45.354193548387094],\n            [-75.8, 45.36],\n            [-75.809, 45.363],\n            [-75.818, 45.36],\n            [-75.822, 45.354]\n          ],\n          [\n            [-75.74034375, 45.38853125],\n            [-75.74033333333334, 45.388555555555556],\n            [-75.738, 45.38933333333333],\n            [-75.735, 45.39],\n            [-75.73493548387097, 45.39009677419355],\n            [-75.73378947368421, 45.389842105263156],\n            [-75.74034375, 45.38853125]\n          ],\n          [\n            [-75.73710909090909, 45.371309090909094],\n            [-75.73617073170732, 45.372951219512196],\n            [-75.733, 45.372],\n            [-75.724, 45.375],\n            [-75.721, 45.381],\n            [-75.724, 45.388],\n            [-75.72925, 45.38916666666667],\n            [-75.721, 45.391],\n            [-75.71904081632653, 45.39557142857143],\n            [-75.717, 45.392],\n            [-75.708, 45.39],\n            [-75.699, 45.392],\n            [-75.69674545454545, 45.395945454545455],\n            [-75.692, 45.397],\n            [-75.68938181818181, 45.40158181818182],\n            [-75.683, 45.403],\n            [-75.68, 45.41],\n            [-75.683, 45.416],\n            [-75.68385714285715, 45.41628571428571],\n            [-75.6845, 45.41725],\n            [-75.684, 45.418],\n            [-75.68516363636364, 45.42003636363636],\n            [-75.685, 45.42],\n            [-75.676, 45.422],\n            [-75.67510526315789, 45.42408771929824],\n            [-75.6722, 45.424733333333336],\n            [-75.67, 45.424],\n            [-75.669, 45.42433333333334],\n            [-75.668, 45.424],\n            [-75.65972, 45.42676],\n            [-75.657, 45.422],\n            [-75.648, 45.42],\n            [-75.64683870967743, 45.420258064516126],\n            [-75.646, 45.419],\n            [-75.645, 45.41866666666667],\n            [-75.65, 45.417],\n            [-75.654, 45.411],\n            [-75.65, 45.405],\n            [-75.641, 45.402],\n            [-75.63854545454545, 45.40281818181818],\n            [-75.636, 45.399],\n            [-75.63327272727273, 45.39809090909091],\n            [-75.634, 45.397],\n            [-75.63342857142857, 45.396],\n            [-75.634, 45.395],\n            [-75.63181818181818, 45.39172727272727],\n            [-75.64, 45.389],\n            [-75.649, 45.387],\n            [-75.652, 45.38],\n            [-75.649, 45.374],\n            [-75.64, 45.371],\n            [-75.6359090909091, 45.37236363636364],\n            [-75.63335294117647, 45.368529411764705],\n            [-75.641, 45.367],\n            [-75.64273913043478, 45.36294202898551],\n            [-75.643, 45.363],\n            [-75.6448, 45.3626],\n            [-75.646, 45.363],\n            [-75.655, 45.36],\n            [-75.659, 45.354],\n            [-75.661, 45.357],\n            [-75.67, 45.36],\n            [-75.679, 45.357],\n            [-75.683, 45.351],\n            [-75.68033333333334, 45.347],\n            [-75.68061538461538, 45.346576923076924],\n            [-75.682, 45.349],\n            [-75.691, 45.351],\n            [-75.69373913043478, 45.35039130434782],\n            [-75.692, 45.353],\n            [-75.696, 45.36],\n            [-75.69884210526315, 45.36063157894737],\n            [-75.692, 45.362],\n            [-75.689, 45.369],\n            [-75.692, 45.375],\n            [-75.69424137931034, 45.375672413793104],\n            [-75.695, 45.377],\n            [-75.704, 45.379],\n            [-75.713, 45.377],\n            [-75.717, 45.37],\n            [-75.713, 45.364],\n            [-75.71166666666667, 45.36355555555556],\n            [-75.711, 45.362],\n            [-75.708, 45.361333333333334],\n            [-75.714, 45.36],\n            [-75.717, 45.353],\n            [-75.714, 45.347],\n            [-75.71244, 45.34648],\n            [-75.71342253521127, 45.344760563380284],\n            [-75.71867272727273, 45.34592727272727],\n            [-75.721, 45.35],\n            [-75.72315384615385, 45.35376923076923],\n            [-75.723, 45.354],\n            [-75.7233076923077, 45.35453846153846],\n            [-75.723, 45.355],\n            [-75.72466666666666, 45.3575],\n            [-75.723, 45.36],\n            [-75.721, 45.363],\n            [-75.725, 45.37],\n            [-75.734, 45.372],\n            [-75.73710909090909, 45.371309090909094]\n          ],\n          [\n            [-75.6342, 45.43593333333333],\n            [-75.631, 45.437],\n            [-75.63071428571429, 45.43757142857143],\n            [-75.629, 45.437],\n            [-75.62233333333333, 45.43922222222222],\n            [-75.62482608695652, 45.43340579710145],\n            [-75.629, 45.434333333333335],\n            [-75.62976470588235, 45.434588235294115],\n            [-75.63, 45.435],\n            [-75.6342, 45.43593333333333]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-dissolve/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { polygon, point, featureCollection } from \"@turf/helpers\";\nimport { dissolve } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst SKIP = [];\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-dissolve\", (t) => {\n  for (const { filename, name, geojson } of fixtures) {\n    if (-1 !== SKIP.indexOf(filename)) {\n      continue;\n    }\n    const propertyName = geojson.propertyName;\n    const results = dissolve(geojson, { propertyName });\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEquals(results, loadJsonFileSync(directories.out + filename), name);\n  }\n  t.end();\n});\n\ntest(\"dissolve -- throw\", (t) => {\n  const poly = polygon([\n    [\n      [-61, 27],\n      [-59, 27],\n      [-59, 29],\n      [-61, 29],\n      [-61, 27],\n    ],\n  ]);\n  const pt = point([-62, 29]);\n\n  t.throws(\n    () => dissolve(null),\n    /No featureCollection passed/,\n    \"missing featureCollection\"\n  );\n  t.throws(\n    () => dissolve(poly),\n    /Invalid input to dissolve, FeatureCollection required/,\n    \"invalid featureCollection\"\n  );\n  t.throws(\n    () => dissolve(featureCollection([poly, pt])),\n    /Invalid input to dissolve: must be a Polygon, given Point/,\n    \"invalid collection type\"\n  );\n  t.end();\n});\n\ntest(\"dissolve -- properties\", (t) => {\n  var features = featureCollection([\n    polygon(\n      [\n        [\n          [0, 0],\n          [0, 1],\n          [1, 1],\n          [1, 0],\n          [0, 0],\n        ],\n      ],\n      { combine: \"yes\" }\n    ),\n    polygon(\n      [\n        [\n          [0, -1],\n          [0, 0],\n          [1, 0],\n          [1, -1],\n          [0, -1],\n        ],\n      ],\n      { combine: \"yes\" }\n    ),\n    polygon(\n      [\n        [\n          [1, -1],\n          [1, 0],\n          [2, 0],\n          [2, -1],\n          [1, -1],\n        ],\n      ],\n      { combine: \"no\" }\n    ),\n  ]);\n\n  var results = dissolve(features, { propertyName: \"combine\" });\n  t.equals(results.features[0].properties.combine, \"yes\");\n  t.equals(results.features[1].properties.combine, \"no\");\n\n  t.end();\n});\n\ntest(\"dissolve - unable to complete output ring - issue 2420\", (t) => {\n  // Test example copied from https://github.com/Turfjs/turf/issues/2420\n\n  const poly1 = polygon([\n    [\n      [54.674471560746106, -2.669669459403366],\n      [54.66827243056676, -2.590808846502601],\n      [54.61818656347785, -2.5731465650016876],\n      [54.59479733372542, -2.5582148982951005],\n      [54.52907798654607, -2.5983186383573154],\n      [54.533564730328536, -2.68329182348515],\n      [54.58040270977906, -2.713147336590615],\n      [54.60545643615633, -2.7220126907386035],\n      [54.674471560746106, -2.669669459403366],\n    ],\n  ]);\n\n  const poly2 = polygon([\n    [\n      [54.59029423717366, -2.4733591205361],\n      [54.59479733372542, -2.5582148982951005],\n      [54.61818656347788, -2.573146565001703],\n      [54.66827243056676, -2.590808846502601],\n      [54.73723247700517, -2.538498282632361],\n      [54.730995571183335, -2.4597687064449976],\n      [54.655899262660675, -2.433377660227877],\n      [54.59029423717366, -2.4733591205361],\n    ],\n  ]);\n\n  // This used to fail with \"Unable to complete output ring ...\"\n  t.doesNotThrow(\n    () => dissolve(featureCollection([poly1, poly2])),\n    \"does not throw\"\n  );\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-dissolve/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-distance/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-distance/README.md",
    "content": "# @turf/distance\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## distance\n\nCalculates the distance between two [coordinates][1] in degrees, radians, miles, or kilometers.\nThis uses the [Haversine formula][2] to account for global curvature.\n\n### Parameters\n\n*   `from` **[Coord][1]** origin coordinate\n*   `to` **[Coord][1]** destination coordinate\n*   `options` **[Object][3]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** Supports all valid Turf [Units][4]. (optional, default `'kilometers'`)\n\n### Examples\n\n```javascript\nvar from = turf.point([-75.343, 39.984]);\nvar to = turf.point([-75.534, 39.123]);\nvar options = {units: 'miles'};\n\nvar distance = turf.distance(from, to, options);\n\n//addToMap\nvar addToMap = [from, to];\nfrom.properties.distance = distance;\nto.properties.distance = distance;\n```\n\nReturns **[number][5]** distance between the two coordinates\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[2]: http://en.wikipedia.org/wiki/Haversine_formula\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[4]: https://turfjs.org/docs/api/types/Units\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/distance\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-distance/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { distance } from \"./index.js\";\n\nvar pt1 = [-75.4, 39.4];\nvar pt2 = [-75.534, 39.123];\n\nvar suite = new Benchmark.Suite(\"turf-distance\");\nsuite\n  .add(\"turf-distance\", () => distance(pt1, pt2))\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-distance/index.ts",
    "content": "import { getCoord } from \"@turf/invariant\";\nimport { radiansToLength, degreesToRadians, Coord, Units } from \"@turf/helpers\";\n\n//http://en.wikipedia.org/wiki/Haversine_formula\n//http://www.movable-type.co.uk/scripts/latlong.html\n\n/**\n * Calculates the distance between two {@link Coord|coordinates} in degrees, radians, miles, or kilometers.\n * This uses the [Haversine formula](http://en.wikipedia.org/wiki/Haversine_formula) to account for global curvature.\n *\n * @function\n * @param {Coord} from origin coordinate\n * @param {Coord} to destination coordinate\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.\n * @returns {number} distance between the two coordinates\n * @example\n * var from = turf.point([-75.343, 39.984]);\n * var to = turf.point([-75.534, 39.123]);\n * var options = {units: 'miles'};\n *\n * var distance = turf.distance(from, to, options);\n *\n * //addToMap\n * var addToMap = [from, to];\n * from.properties.distance = distance;\n * to.properties.distance = distance;\n */\nfunction distance(\n  from: Coord,\n  to: Coord,\n  options: {\n    units?: Units;\n  } = {}\n) {\n  var coordinates1 = getCoord(from);\n  var coordinates2 = getCoord(to);\n  var dLat = degreesToRadians(coordinates2[1] - coordinates1[1]);\n  var dLon = degreesToRadians(coordinates2[0] - coordinates1[0]);\n  var lat1 = degreesToRadians(coordinates1[1]);\n  var lat2 = degreesToRadians(coordinates2[1]);\n\n  var a =\n    Math.pow(Math.sin(dLat / 2), 2) +\n    Math.pow(Math.sin(dLon / 2), 2) * Math.cos(lat1) * Math.cos(lat2);\n\n  return radiansToLength(\n    2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a)),\n    options.units\n  );\n}\n\nexport { distance };\nexport default distance;\n"
  },
  {
    "path": "packages/turf-distance/package.json",
    "content": "{\n  \"name\": \"@turf/distance\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Measures the straight-line distance between two points, like cities or landmarks.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"distance\",\n    \"miles\",\n    \"km\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-distance/test/in/points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.343, 39.984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.534, 39.123]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-distance/test/out/points.json",
    "content": "{\n  \"miles\": 60.35329997171415,\n  \"nauticalmiles\": 52.44558379572265,\n  \"kilometers\": 97.12922118967835,\n  \"radians\": 0.015245501024842149,\n  \"degrees\": 0.8735028652858263\n}\n"
  },
  {
    "path": "packages/turf-distance/test.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { point } from \"@turf/helpers\";\nimport { distance } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"distance\", (t) => {\n  fixtures.forEach((fixture) => {\n    const name = fixture.name;\n    const geojson = fixture.geojson;\n    const pt1 = geojson.features[0];\n    const pt2 = geojson.features[1];\n    const distances = {\n      miles: distance(pt1, pt2, { units: \"miles\" }),\n      nauticalmiles: distance(pt1, pt2, { units: \"nauticalmiles\" }),\n      kilometers: distance(pt1, pt2, { units: \"kilometers\" }),\n      radians: distance(pt1, pt2, { units: \"radians\" }),\n      degrees: distance(pt1, pt2, { units: \"degrees\" }),\n    };\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + name + \".json\", distances);\n    t.deepEqual(\n      distances,\n      loadJsonFileSync(directories.out + name + \".json\"),\n      name\n    );\n  });\n  t.end();\n});\n\n// https://github.com/Turfjs/turf/issues/758\ntest(\"distance -- Issue #758\", (t) => {\n  t.equal(\n    Math.round(distance(point([-180, -90]), point([180, -90]))),\n    0,\n    \"should be 0\"\n  );\n  t.end();\n});\n\ntest(\"distance -- throws\", (t) => {\n  t.throws(\n    () => distance(point([0, 0]), point([10, 10]), { units: \"foo\" }),\n    /units is invalid/\n  );\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-distance/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-distance-weight/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-distance-weight/README.md",
    "content": "# @turf/distance-weight\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## pNormDistance\n\ncalcualte the Minkowski p-norm distance between two features.\n\n### Parameters\n\n*   `feature1` **[Feature][1]<[Point][2]>** point feature\n*   `feature2` **[Feature][1]<[Point][2]>** point feature\n*   `p`  p-norm 1=\\<p<=infinity 1: Manhattan distance 2: Euclidean distance (optional, default `2`)\n\nReturns **[number][3]**&#x20;\n\n## distanceWeight\n\n### Parameters\n\n*   `fc` **[FeatureCollection][4]\\<any>** FeatureCollection.\n*   `options` **[Object][5]?** option object.\n\n    *   `options.threshold` **[number][3]** If the distance between neighbor and\n        target features is greater than threshold, the weight of that neighbor is 0. (optional, default `10000`)\n    *   `options.p` **[number][3]** Minkowski p-norm distance parameter.\n        1: Manhattan distance. 2: Euclidean distance. 1=\\<p<=infinity. (optional, default `2`)\n    *   `options.binary` **[boolean][6]** If true, weight=1 if d <= threshold otherwise weight=0.\n        If false, weight=Math.pow(d, alpha). (optional, default `false`)\n    *   `options.alpha` **[number][3]** distance decay parameter.\n        A big value means the weight decay quickly as distance increases. (optional, default `-1`)\n    *   `options.standardization` **[boolean][6]** row standardization. (optional, default `false`)\n\n### Examples\n\n```javascript\nvar bbox = [-65, 40, -63, 42];\nvar dataset = turf.randomPoint(100, { bbox: bbox });\nvar result = turf.distanceWeight(dataset);\n```\n\nReturns **[Array][7]<[Array][7]<[number][3]>>** distance weight matrix.\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/distance-weight\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-distance-weight/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { distanceWeight } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n * point: 1.919ms\n * point x 22,881 ops/sec ±0.68% (97 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-distance-weight\");\n\nconst columbusPath = path.join(__dirname, \"test\", \"in\", \"point.json\");\nconst columbusJson = loadJsonFileSync(columbusPath);\nconst { name } = path.parse(columbusPath);\n\nconsole.time(name);\ndistanceWeight(columbusJson);\nconsole.timeEnd(name);\n\nsuite.add(name, () => distanceWeight(columbusJson));\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-distance-weight/index.ts",
    "content": "import { Feature, FeatureCollection, Point } from \"geojson\";\nimport { centroid } from \"@turf/centroid\";\nimport { getCoord } from \"@turf/invariant\";\nimport { featureEach } from \"@turf/meta\";\n\n/**\n * calcualte the Minkowski p-norm distance between two features.\n *\n * @function\n * @param feature1 point feature\n * @param feature2 point feature\n * @param p p-norm 1=<p<=infinity 1: Manhattan distance 2: Euclidean distance\n */\nfunction pNormDistance(\n  feature1: Feature<Point>,\n  feature2: Feature<Point>,\n  p = 2\n): number {\n  const coordinate1 = getCoord(feature1);\n  const coordinate2 = getCoord(feature2);\n  const xDiff = coordinate1[0] - coordinate2[0];\n  const yDiff = coordinate1[1] - coordinate2[1];\n  if (p === 1) {\n    return Math.abs(xDiff) + Math.abs(yDiff);\n  }\n  return Math.pow(Math.pow(xDiff, p) + Math.pow(yDiff, p), 1 / p);\n}\n\n/**\n *\n *\n * @function\n * @param {FeatureCollection<any>} fc FeatureCollection.\n * @param {Object} [options] option object.\n * @param {number} [options.threshold=10000] If the distance between neighbor and\n * target features is greater than threshold, the weight of that neighbor is 0.\n * @param {number} [options.p=2] Minkowski p-norm distance parameter.\n * 1: Manhattan distance. 2: Euclidean distance. 1=<p<=infinity.\n * @param {boolean} [options.binary=false] If true, weight=1 if d <= threshold otherwise weight=0.\n *  If false, weight=Math.pow(d, alpha).\n * @param {number} [options.alpha=-1] distance decay parameter.\n * A big value means the weight decay quickly as distance increases.\n * @param {boolean} [options.standardization=false] row standardization.\n * @returns {Array<Array<number>>} distance weight matrix.\n * @example\n *\n * var bbox = [-65, 40, -63, 42];\n * var dataset = turf.randomPoint(100, { bbox: bbox });\n * var result = turf.distanceWeight(dataset);\n */\nfunction distanceWeight(\n  fc: FeatureCollection<any>,\n  options?: {\n    threshold?: number;\n    p?: number;\n    binary?: boolean;\n    alpha?: number;\n    standardization?: boolean;\n  }\n): number[][] {\n  options = options || {};\n  const threshold = options.threshold || 10000;\n  const p = options.p || 2;\n  const binary = options.binary ?? false;\n  const alpha = options.alpha || -1;\n  const rowTransform = options.standardization ?? false;\n\n  const features: Array<Feature<Point>> = [];\n  featureEach(fc, (feature) => {\n    features.push(centroid(feature));\n  });\n\n  // computing the distance between the features\n  const weights: number[][] = [];\n  for (let i = 0; i < features.length; i++) {\n    weights[i] = [];\n  }\n\n  for (let i = 0; i < features.length; i++) {\n    for (let j = i; j < features.length; j++) {\n      if (i === j) {\n        weights[i][j] = 0;\n      }\n      const dis = pNormDistance(features[i], features[j], p);\n      weights[i][j] = dis;\n      weights[j][i] = dis;\n    }\n  }\n\n  // binary or distance decay\n  for (let i = 0; i < features.length; i++) {\n    for (let j = 0; j < features.length; j++) {\n      const dis: number = weights[i][j];\n      if (dis === 0) {\n        continue;\n      }\n      if (binary) {\n        if (dis <= threshold) {\n          weights[i][j] = 1.0;\n        } else {\n          weights[i][j] = 0.0;\n        }\n      } else {\n        if (dis <= threshold) {\n          weights[i][j] = Math.pow(dis, alpha);\n        } else {\n          weights[i][j] = 0.0;\n        }\n      }\n    }\n  }\n\n  if (rowTransform) {\n    for (let i = 0; i < features.length; i++) {\n      const rowSum = weights[i].reduce((sum: number, currentVal: number) => {\n        return sum + currentVal;\n      }, 0);\n      for (let j = 0; j < features.length; j++) {\n        weights[i][j] = weights[i][j] / rowSum;\n      }\n    }\n  }\n\n  return weights;\n}\n\nexport { pNormDistance, distanceWeight };\nexport default distanceWeight;\n"
  },
  {
    "path": "packages/turf-distance-weight/package.json",
    "content": "{\n  \"name\": \"@turf/distance-weight\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Calculate the influence or weight of points over an area based on their distances.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Haoming Zhuang <@zhuang-hao-ming>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"distance-weight\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/centroid\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-distance-weight/test/in/columbus.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.309441,\n        \"PERIMETER\": 2.440629,\n        \"COLUMBUS_\": 2.0,\n        \"COLUMBUS_I\": 5.0,\n        \"POLYID\": 1.0,\n        \"NEIG\": 5,\n        \"HOVAL\": 80.467003,\n        \"INC\": 19.531,\n        \"CRIME\": 15.72598,\n        \"OPEN\": 2.850747,\n        \"PLUMB\": 0.217155,\n        \"DISCBD\": 5.03,\n        \"X\": 38.799999,\n        \"Y\": 44.07,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1005.0\n      },\n      \"bbox\": [\n        8.559700012207031, 13.995059967041016, 9.09996509552002, 14.742449760437012\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.624129295349121, 14.236980438232422],\n            [8.559700012207031, 14.742449760437012],\n            [8.809452056884766, 14.734430313110352],\n            [8.808412551879883, 14.636520385742188],\n            [8.919304847717285, 14.638500213623047],\n            [9.087138175964355, 14.630490303039551],\n            [9.09996509552002, 14.244830131530762],\n            [9.015047073364258, 14.241840362548828],\n            [9.008951187133789, 13.995059967041016],\n            [8.818140029907227, 14.002050399780273],\n            [8.653305053710938, 14.008090019226074],\n            [8.642902374267578, 14.089710235595703],\n            [8.63259220123291, 14.170590400695801],\n            [8.625825881958008, 14.22367000579834],\n            [8.624129295349121, 14.236980438232422]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.259329,\n        \"PERIMETER\": 2.236939,\n        \"COLUMBUS_\": 3.0,\n        \"COLUMBUS_I\": 1.0,\n        \"POLYID\": 2.0,\n        \"NEIG\": 1,\n        \"HOVAL\": 44.567001,\n        \"INC\": 21.232,\n        \"CRIME\": 18.801754,\n        \"OPEN\": 5.29672,\n        \"PLUMB\": 0.320581,\n        \"DISCBD\": 4.27,\n        \"X\": 35.619999,\n        \"Y\": 42.380001,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1001.0\n      },\n      \"bbox\": [\n        7.950088977813721, 13.727390289306641, 8.666550636291504, 14.263930320739746\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.252790451049805, 14.236940383911133],\n            [8.282757759094238, 14.229940414428711],\n            [8.330711364746094, 14.229940414428711],\n            [8.383658409118652, 14.228930473327637],\n            [8.444600105285645, 14.228919982910156],\n            [8.544504165649414, 14.23490047454834],\n            [8.624129295349121, 14.236980438232422],\n            [8.625825881958008, 14.22367000579834],\n            [8.63259220123291, 14.170590400695801],\n            [8.642902374267578, 14.089710235595703],\n            [8.653305053710938, 14.008090019226074],\n            [8.662188529968262, 13.909899711608887],\n            [8.666550636291504, 13.861700057983398],\n            [8.605281829833984, 13.839249610900879],\n            [8.579310417175293, 13.841250419616699],\n            [8.562577247619629, 13.84253978729248],\n            [8.540358543395996, 13.842399597167969],\n            [8.516386985778809, 13.841679573059082],\n            [8.502935409545898, 13.838729858398438],\n            [8.473407745361328, 13.832269668579102],\n            [8.459499359130859, 13.82034969329834],\n            [8.431432723999023, 13.793310165405273],\n            [8.415447235107422, 13.790309906005859],\n            [8.387155532836914, 13.788969993591309],\n            [8.37348747253418, 13.78831958770752],\n            [8.323546409606934, 13.786080360412598],\n            [8.284571647644043, 13.784330368041992],\n            [8.291547775268555, 13.74137020111084],\n            [8.229602813720703, 13.727390289306641],\n            [8.22661304473877, 13.744379997253418],\n            [8.215643882751465, 13.794329643249512],\n            [8.198686599731445, 13.858280181884766],\n            [8.16972541809082, 13.883259773254395],\n            [8.12777042388916, 13.89225959777832],\n            [8.093802452087402, 13.891260147094727],\n            [8.063838005065918, 13.90526008605957],\n            [8.044872283935547, 13.943220138549805],\n            [8.037888526916504, 13.96720027923584],\n            [7.999115943908691, 14.024570465087891],\n            [7.99936580657959, 14.034970283508301],\n            [8.003013610839844, 14.187020301818848],\n            [7.950088977813721, 14.243969917297363],\n            [8.111939430236816, 14.263930320739746],\n            [8.147891998291016, 14.232959747314453],\n            [8.181855201721191, 14.225959777832031],\n            [8.20982837677002, 14.226949691772461],\n            [8.252790451049805, 14.236940383911133]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.192468,\n        \"PERIMETER\": 2.187547,\n        \"COLUMBUS_\": 4.0,\n        \"COLUMBUS_I\": 6.0,\n        \"POLYID\": 3.0,\n        \"NEIG\": 6,\n        \"HOVAL\": 26.35,\n        \"INC\": 15.956,\n        \"CRIME\": 30.626781,\n        \"OPEN\": 4.534649,\n        \"PLUMB\": 0.374404,\n        \"DISCBD\": 3.89,\n        \"X\": 39.82,\n        \"Y\": 41.18,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1006.0\n      },\n      \"bbox\": [\n        8.653305053710938, 13.544429779052734, 9.351485252380371, 14.008090019226074\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.653305053710938, 14.008090019226074],\n            [8.818140029907227, 14.002050399780273],\n            [9.008951187133789, 13.995059967041016],\n            [9.008928298950195, 13.9381103515625],\n            [9.34359073638916, 13.913080215454102],\n            [9.351485252380371, 13.675290107727051],\n            [9.298501014709473, 13.589380264282227],\n            [9.273821830749512, 13.588560104370117],\n            [9.244555473327637, 13.59138011932373],\n            [9.24254322052002, 13.558409690856934],\n            [9.196581840515137, 13.544429779052734],\n            [9.190605163574219, 13.586389541625977],\n            [9.166626930236816, 13.581399917602539],\n            [9.161684036254883, 13.708290100097656],\n            [8.909939765930176, 13.715530395507812],\n            [8.677577018737793, 13.722209930419922],\n            [8.666550636291504, 13.861700057983398],\n            [8.662188529968262, 13.909899711608887],\n            [8.653305053710938, 14.008090019226074]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.083841,\n        \"PERIMETER\": 1.427635,\n        \"COLUMBUS_\": 5.0,\n        \"COLUMBUS_I\": 2.0,\n        \"POLYID\": 4.0,\n        \"NEIG\": 2,\n        \"HOVAL\": 33.200001,\n        \"INC\": 4.477,\n        \"CRIME\": 32.38776,\n        \"OPEN\": 0.394427,\n        \"PLUMB\": 1.186944,\n        \"DISCBD\": 3.7,\n        \"X\": 36.5,\n        \"Y\": 40.52,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1002.0\n      },\n      \"bbox\": [\n        8.19859504699707, 13.586509704589844, 8.685274124145508, 13.861700057983398\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.459499359130859, 13.82034969329834],\n            [8.473407745361328, 13.832269668579102],\n            [8.502935409545898, 13.838729858398438],\n            [8.516386985778809, 13.841679573059082],\n            [8.540358543395996, 13.842399597167969],\n            [8.562577247619629, 13.84253978729248],\n            [8.579310417175293, 13.841250419616699],\n            [8.605281829833984, 13.839249610900879],\n            [8.666550636291504, 13.861700057983398],\n            [8.677577018737793, 13.722209930419922],\n            [8.685274124145508, 13.639519691467285],\n            [8.628178596496582, 13.639459609985352],\n            [8.588301658630371, 13.641819953918457],\n            [8.571109771728516, 13.641269683837891],\n            [8.547515869140625, 13.643819808959961],\n            [8.537267684936523, 13.644430160522461],\n            [8.505298614501953, 13.644430160522461],\n            [8.459343910217285, 13.644430160522461],\n            [8.450570106506348, 13.60453987121582],\n            [8.439335823059082, 13.605520248413086],\n            [8.380410194396973, 13.616470336914062],\n            [8.385412216186523, 13.63444995880127],\n            [8.316472053527832, 13.616479873657227],\n            [8.294443130493164, 13.604570388793945],\n            [8.279500007629395, 13.596500396728516],\n            [8.247527122497559, 13.586509704589844],\n            [8.201574325561523, 13.591509819030762],\n            [8.201583862304688, 13.614489555358887],\n            [8.19859504699707, 13.635479927062988],\n            [8.233589172363281, 13.703410148620605],\n            [8.229602813720703, 13.727390289306641],\n            [8.291547775268555, 13.74137020111084],\n            [8.284571647644043, 13.784330368041992],\n            [8.323546409606934, 13.786080360412598],\n            [8.37348747253418, 13.78831958770752],\n            [8.387155532836914, 13.788969993591309],\n            [8.415447235107422, 13.790309906005859],\n            [8.431432723999023, 13.793310165405273],\n            [8.459499359130859, 13.82034969329834]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.488888,\n        \"PERIMETER\": 2.997133,\n        \"COLUMBUS_\": 6.0,\n        \"COLUMBUS_I\": 7.0,\n        \"POLYID\": 5.0,\n        \"NEIG\": 7,\n        \"HOVAL\": 23.225,\n        \"INC\": 11.252,\n        \"CRIME\": 50.73151,\n        \"OPEN\": 0.405664,\n        \"PLUMB\": 0.624596,\n        \"DISCBD\": 2.83,\n        \"X\": 40.009998,\n        \"Y\": 38.0,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1007.0\n      },\n      \"bbox\": [\n        8.677577018737793, 12.861089706420898, 9.401384353637695, 13.722209930419922\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.685274124145508, 13.639519691467285],\n            [8.677577018737793, 13.722209930419922],\n            [8.909939765930176, 13.715530395507812],\n            [9.161684036254883, 13.708290100097656],\n            [9.166626930236816, 13.581399917602539],\n            [9.190605163574219, 13.586389541625977],\n            [9.196581840515137, 13.544429779052734],\n            [9.24254322052002, 13.558409690856934],\n            [9.244555473327637, 13.59138011932373],\n            [9.273821830749512, 13.588560104370117],\n            [9.298501014709473, 13.589380264282227],\n            [9.310471534729004, 13.54541015625],\n            [9.401384353637695, 13.550399780273438],\n            [9.333296775817871, 13.272419929504395],\n            [9.23626708984375, 12.876279830932617],\n            [9.233386993408203, 12.86400032043457],\n            [8.943572998046875, 12.86221981048584],\n            [8.757728576660156, 12.861089706420898],\n            [8.733969688415527, 13.116339683532715],\n            [8.685274124145508, 13.639519691467285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.283079,\n        \"PERIMETER\": 2.335634,\n        \"COLUMBUS_\": 7.0,\n        \"COLUMBUS_I\": 8.0,\n        \"POLYID\": 6.0,\n        \"NEIG\": 8,\n        \"HOVAL\": 28.75,\n        \"INC\": 16.028999,\n        \"CRIME\": 26.066658,\n        \"OPEN\": 0.563075,\n        \"PLUMB\": 0.25413,\n        \"DISCBD\": 3.78,\n        \"X\": 43.75,\n        \"Y\": 39.279999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1008.0\n      },\n      \"bbox\": [\n        9.333296775817871, 13.272419929504395, 10.180600166320801, 13.698240280151367\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401384353637695, 13.550399780273438],\n            [9.43441104888916, 13.694270133972168],\n            [9.605246543884277, 13.698240280151367],\n            [9.651198387145996, 13.692239761352539],\n            [9.687166213989258, 13.697230339050293],\n            [9.686145782470703, 13.645279884338379],\n            [9.845992088317871, 13.652250289916992],\n            [10.050789833068848, 13.650230407714844],\n            [10.103719711303711, 13.603260040283203],\n            [10.175629615783691, 13.565290451049805],\n            [10.180600166320801, 13.482359886169434],\n            [10.167599678039551, 13.471369743347168],\n            [10.153610229492188, 13.454389572143555],\n            [10.1356201171875, 13.439399719238281],\n            [10.119629859924316, 13.429409980773926],\n            [10.121600151062012, 13.344490051269531],\n            [10.096619606018066, 13.342490196228027],\n            [10.085630416870117, 13.333499908447266],\n            [10.05265998840332, 13.33650016784668],\n            [10.027669906616211, 13.298540115356445],\n            [9.772106170654297, 13.292110443115234],\n            [9.677009582519531, 13.296589851379395],\n            [9.67100715637207, 13.27361011505127],\n            [9.333296775817871, 13.272419929504395],\n            [9.401384353637695, 13.550399780273438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.257084,\n        \"PERIMETER\": 2.554577,\n        \"COLUMBUS_\": 8.0,\n        \"COLUMBUS_I\": 4.0,\n        \"POLYID\": 7.0,\n        \"NEIG\": 4,\n        \"HOVAL\": 75.0,\n        \"INC\": 8.438,\n        \"CRIME\": 0.178269,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 2.402402,\n        \"DISCBD\": 2.74,\n        \"X\": 33.360001,\n        \"Y\": 38.41,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1004.0\n      },\n      \"bbox\": [\n        7.801973819732666, 12.942020416259766, 8.456572532653809, 13.644510269165039\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.037740707397461, 13.60752010345459],\n            [8.062715530395508, 13.604519844055176],\n            [8.072694778442383, 13.580539703369141],\n            [8.115653038024902, 13.579540252685547],\n            [8.130637168884277, 13.576539993286133],\n            [8.197451591491699, 13.575770378112793],\n            [8.189590454101562, 13.545760154724121],\n            [8.179450035095215, 13.529829978942871],\n            [8.164705276489258, 13.511059761047363],\n            [8.14012622833252, 13.479769706726074],\n            [8.128536224365234, 13.470100402832031],\n            [8.121718406677246, 13.461039543151855],\n            [8.109848022460938, 13.432640075683594],\n            [8.10498046875, 13.420989990234375],\n            [8.181536674499512, 13.415909767150879],\n            [8.293397903442383, 13.408490180969238],\n            [8.380322456359863, 13.404660224914551],\n            [8.456572532653809, 13.104069709777832],\n            [8.425149917602539, 13.09391975402832],\n            [8.412152290344238, 13.068949699401855],\n            [8.351269721984863, 13.066499710083008],\n            [8.288271903991699, 13.063969612121582],\n            [8.28026294708252, 13.026000022888184],\n            [8.232307434082031, 13.020009994506836],\n            [8.220302581787109, 12.979049682617188],\n            [8.154367446899414, 12.978059768676758],\n            [8.145203590393066, 12.942020416259766],\n            [8.104400634765625, 12.943050384521484],\n            [8.062442779541016, 12.944100379943848],\n            [8.052460670471191, 12.963089942932129],\n            [8.052496910095215, 13.052009582519531],\n            [8.048531532287598, 13.129940032958984],\n            [8.032543182373047, 13.117950439453125],\n            [8.01356029510498, 13.114959716796875],\n            [7.989583969116211, 13.115960121154785],\n            [7.962619781494141, 13.137940406799316],\n            [7.923679828643799, 13.191900253295898],\n            [7.898725986480713, 13.243860244750977],\n            [7.88774299621582, 13.25784969329834],\n            [7.871758937835693, 13.25885009765625],\n            [7.868794918060303, 13.338780403137207],\n            [7.866809844970703, 13.371749877929688],\n            [7.851837158203125, 13.400730133056641],\n            [7.844857215881348, 13.432700157165527],\n            [7.84089183807373, 13.50862979888916],\n            [7.824925899505615, 13.552599906921387],\n            [7.803965091705322, 13.596559524536133],\n            [7.801973819732666, 13.61553955078125],\n            [7.90187406539917, 13.608539581298828],\n            [7.90288782119751, 13.644510269165039],\n            [7.9967942237854, 13.639499664306641],\n            [7.998781204223633, 13.614520072937012],\n            [8.037740707397461, 13.60752010345459]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.204954,\n        \"PERIMETER\": 2.139524,\n        \"COLUMBUS_\": 9.0,\n        \"COLUMBUS_I\": 3.0,\n        \"POLYID\": 8.0,\n        \"NEIG\": 3,\n        \"HOVAL\": 37.125,\n        \"INC\": 11.337,\n        \"CRIME\": 38.425858,\n        \"OPEN\": 3.483478,\n        \"PLUMB\": 2.739726,\n        \"DISCBD\": 2.89,\n        \"X\": 36.709999,\n        \"Y\": 38.709999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1003.0\n      },\n      \"bbox\": [8.10498046875, 13.104069709777832, 8.733969688415527, 13.644430160522461],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.247527122497559, 13.586509704589844],\n            [8.279500007629395, 13.596500396728516],\n            [8.294443130493164, 13.604570388793945],\n            [8.316472053527832, 13.616479873657227],\n            [8.385412216186523, 13.63444995880127],\n            [8.380410194396973, 13.616470336914062],\n            [8.439335823059082, 13.605520248413086],\n            [8.450570106506348, 13.60453987121582],\n            [8.459343910217285, 13.644430160522461],\n            [8.505298614501953, 13.644430160522461],\n            [8.537267684936523, 13.644430160522461],\n            [8.547515869140625, 13.643819808959961],\n            [8.571109771728516, 13.641269683837891],\n            [8.588301658630371, 13.641819953918457],\n            [8.628178596496582, 13.639459609985352],\n            [8.685274124145508, 13.639519691467285],\n            [8.733969688415527, 13.116339683532715],\n            [8.651877403259277, 13.113670349121094],\n            [8.596989631652832, 13.111889839172363],\n            [8.585997581481934, 13.106889724731445],\n            [8.517032623291016, 13.105389595031738],\n            [8.456572532653809, 13.104069709777832],\n            [8.380322456359863, 13.404660224914551],\n            [8.293397903442383, 13.408490180969238],\n            [8.181536674499512, 13.415909767150879],\n            [8.10498046875, 13.420989990234375],\n            [8.109848022460938, 13.432640075683594],\n            [8.121718406677246, 13.461039543151855],\n            [8.128536224365234, 13.470100402832031],\n            [8.14012622833252, 13.479769706726074],\n            [8.164705276489258, 13.511059761047363],\n            [8.179450035095215, 13.529829978942871],\n            [8.189590454101562, 13.545760154724121],\n            [8.197451591491699, 13.575770378112793],\n            [8.201574325561523, 13.591509819030762],\n            [8.247527122497559, 13.586509704589844]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.500755,\n        \"PERIMETER\": 3.169707,\n        \"COLUMBUS_\": 10.0,\n        \"COLUMBUS_I\": 18.0,\n        \"POLYID\": 9.0,\n        \"NEIG\": 18,\n        \"HOVAL\": 52.599998,\n        \"INC\": 17.586,\n        \"CRIME\": 30.515917,\n        \"OPEN\": 0.527488,\n        \"PLUMB\": 0.890736,\n        \"DISCBD\": 3.17,\n        \"X\": 43.439999,\n        \"Y\": 35.919998,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1018.0\n      },\n      \"bbox\": [\n        9.124277114868164, 12.595190048217773, 10.095430374145508, 13.298540115356445\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.333296775817871, 13.272419929504395],\n            [9.67100715637207, 13.27361011505127],\n            [9.677009582519531, 13.296589851379395],\n            [9.772106170654297, 13.292110443115234],\n            [10.027669906616211, 13.298540115356445],\n            [9.950613975524902, 12.983830451965332],\n            [10.004560470581055, 12.976829528808594],\n            [10.082509994506836, 13.033769607543945],\n            [10.083649635314941, 13.019869804382324],\n            [10.086819648742676, 12.981430053710938],\n            [10.089170455932617, 12.952810287475586],\n            [10.091629981994629, 12.923040390014648],\n            [10.093509674072266, 12.900219917297363],\n            [10.095430374145508, 12.876899719238281],\n            [10.015439987182617, 12.72404956817627],\n            [9.763668060302734, 12.673130035400391],\n            [9.723674774169922, 12.595199584960938],\n            [9.555828094482422, 12.595190048217773],\n            [9.471497535705566, 12.595709800720215],\n            [9.386005401611328, 12.596240043640137],\n            [9.383021354675293, 12.627209663391113],\n            [9.258048057556152, 12.630610466003418],\n            [9.124277114868164, 12.63424015045166],\n            [9.146787643432617, 12.658740043640137],\n            [9.166311264038086, 12.679980278015137],\n            [9.187246322631836, 12.709170341491699],\n            [9.206208229064941, 12.75883960723877],\n            [9.213532447814941, 12.778030395507812],\n            [9.220885276794434, 12.805720329284668],\n            [9.233386993408203, 12.86400032043457],\n            [9.23626708984375, 12.876279830932617],\n            [9.333296775817871, 13.272419929504395]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.246689,\n        \"PERIMETER\": 2.087235,\n        \"COLUMBUS_\": 11.0,\n        \"COLUMBUS_I\": 10.0,\n        \"POLYID\": 10.0,\n        \"NEIG\": 10,\n        \"HOVAL\": 96.400002,\n        \"INC\": 13.598,\n        \"CRIME\": 34.000835,\n        \"OPEN\": 1.548348,\n        \"PLUMB\": 0.557724,\n        \"DISCBD\": 4.33,\n        \"X\": 47.610001,\n        \"Y\": 36.419998,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1010.0\n      },\n      \"bbox\": [\n        10.015439987182617, 12.72404956817627, 10.649680137634277, 13.272509574890137\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10.082509994506836, 13.033769607543945],\n            [10.092499732971191, 13.052749633789062],\n            [10.126489639282227, 13.090709686279297],\n            [10.182459831237793, 13.157649993896484],\n            [10.267419815063477, 13.254549980163574],\n            [10.289389610290527, 13.247550010681152],\n            [10.316360473632812, 13.244549751281738],\n            [10.33234977722168, 13.23954963684082],\n            [10.368260383605957, 13.246430397033691],\n            [10.394289970397949, 13.246540069580078],\n            [10.417269706726074, 13.247540473937988],\n            [10.450240135192871, 13.251529693603516],\n            [10.4752197265625, 13.261520385742188],\n            [10.4752197265625, 13.272509574890137],\n            [10.534159660339355, 13.271499633789062],\n            [10.566129684448242, 13.271499633789062],\n            [10.603090286254883, 13.265500068664551],\n            [10.632060050964355, 13.263489723205566],\n            [10.639049530029297, 13.244509696960449],\n            [10.640040397644043, 13.21953010559082],\n            [10.649020195007324, 13.199549674987793],\n            [10.646010398864746, 13.176569938659668],\n            [10.64700984954834, 13.157589912414551],\n            [10.645999908447266, 13.144599914550781],\n            [10.637999534606934, 13.129610061645508],\n            [10.63899040222168, 13.104630470275879],\n            [10.631979942321777, 13.070659637451172],\n            [10.626979827880859, 13.051679611206055],\n            [10.627969741821289, 13.026700019836426],\n            [10.631959915161133, 13.008720397949219],\n            [10.633950233459473, 12.983739852905273],\n            [10.62893009185791, 12.945779800415039],\n            [10.639909744262695, 12.918800354003906],\n            [10.637900352478027, 12.890819549560547],\n            [10.645890235900879, 12.865839958190918],\n            [10.647870063781738, 12.842860221862793],\n            [10.649680137634277, 12.830180168151855],\n            [10.501099586486816, 12.805319786071777],\n            [10.356599807739258, 12.781140327453613],\n            [10.178409576416016, 12.751319885253906],\n            [10.015439987182617, 12.72404956817627],\n            [10.095430374145508, 12.876899719238281],\n            [10.093509674072266, 12.900219917297363],\n            [10.091629981994629, 12.923040390014648],\n            [10.089170455932617, 12.952810287475586],\n            [10.086819648742676, 12.981430053710938],\n            [10.083649635314941, 13.019869804382324],\n            [10.082509994506836, 13.033769607543945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.041012,\n        \"PERIMETER\": 0.919488,\n        \"COLUMBUS_\": 12.0,\n        \"COLUMBUS_I\": 38.0,\n        \"POLYID\": 11.0,\n        \"NEIG\": 38,\n        \"HOVAL\": 19.700001,\n        \"INC\": 7.467,\n        \"CRIME\": 62.275448,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 1.479915,\n        \"DISCBD\": 1.9,\n        \"X\": 37.849998,\n        \"Y\": 36.299999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1038.0\n      },\n      \"bbox\": [\n        8.572946548461914, 12.810150146484375, 8.757728576660156, 13.116339683532715\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.585997581481934, 13.106889724731445],\n            [8.596989631652832, 13.111889839172363],\n            [8.651877403259277, 13.113670349121094],\n            [8.733969688415527, 13.116339683532715],\n            [8.757728576660156, 12.861089706420898],\n            [8.700782775878906, 12.857099533081055],\n            [8.693771362304688, 12.811140060424805],\n            [8.632829666137695, 12.810150146484375],\n            [8.629888534545898, 12.945030212402344],\n            [8.572946548461914, 12.950030326843262],\n            [8.585997581481934, 13.106889724731445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.035769,\n        \"PERIMETER\": 0.902125,\n        \"COLUMBUS_\": 13.0,\n        \"COLUMBUS_I\": 37.0,\n        \"POLYID\": 12.0,\n        \"NEIG\": 37,\n        \"HOVAL\": 19.9,\n        \"INC\": 10.048,\n        \"CRIME\": 56.705669,\n        \"OPEN\": 3.157895,\n        \"PLUMB\": 2.635046,\n        \"DISCBD\": 1.91,\n        \"X\": 37.130001,\n        \"Y\": 36.119999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1037.0\n      },\n      \"bbox\": [\n        8.456572532653809, 12.809200286865234, 8.632829666137695, 13.106889724731445\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.456572532653809, 13.104069709777832],\n            [8.517032623291016, 13.105389595031738],\n            [8.585997581481934, 13.106889724731445],\n            [8.572946548461914, 12.950030326843262],\n            [8.629888534545898, 12.945030212402344],\n            [8.632829666137695, 12.810150146484375],\n            [8.582889556884766, 12.809769630432129],\n            [8.50916576385498, 12.809200286865234],\n            [8.487373352050781, 12.930660247802734],\n            [8.456572532653809, 13.104069709777832]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.034377,\n        \"PERIMETER\": 0.93659,\n        \"COLUMBUS_\": 14.0,\n        \"COLUMBUS_I\": 39.0,\n        \"POLYID\": 13.0,\n        \"NEIG\": 39,\n        \"HOVAL\": 41.700001,\n        \"INC\": 9.549,\n        \"CRIME\": 46.716129,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 6.328423,\n        \"DISCBD\": 2.09,\n        \"X\": 35.950001,\n        \"Y\": 36.400002,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1039.0\n      },\n      \"bbox\": [\n        8.145203590393066, 12.930660247802734, 8.487373352050781, 13.104069709777832\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.145203590393066, 12.942020416259766],\n            [8.154367446899414, 12.978059768676758],\n            [8.220302581787109, 12.979049682617188],\n            [8.232307434082031, 13.020009994506836],\n            [8.28026294708252, 13.026000022888184],\n            [8.288271903991699, 13.063969612121582],\n            [8.351269721984863, 13.066499710083008],\n            [8.412152290344238, 13.068949699401855],\n            [8.425149917602539, 13.09391975402832],\n            [8.456572532653809, 13.104069709777832],\n            [8.487373352050781, 12.930660247802734],\n            [8.456042289733887, 12.931710243225098],\n            [8.402054786682129, 12.933529853820801],\n            [8.337125778198242, 12.935720443725586],\n            [8.245318412780762, 12.938819885253906],\n            [8.145203590393066, 12.942020416259766]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.060884,\n        \"PERIMETER\": 1.128424,\n        \"COLUMBUS_\": 15.0,\n        \"COLUMBUS_I\": 40.0,\n        \"POLYID\": 14.0,\n        \"NEIG\": 40,\n        \"HOVAL\": 42.900002,\n        \"INC\": 9.963,\n        \"CRIME\": 57.066132,\n        \"OPEN\": 0.477104,\n        \"PLUMB\": 5.110962,\n        \"DISCBD\": 1.83,\n        \"X\": 35.720001,\n        \"Y\": 35.599998,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1040.0\n      },\n      \"bbox\": [\n        8.062442779541016, 12.787229537963867, 8.512937545776367, 12.944100379943848\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.062442779541016, 12.944100379943848],\n            [8.104400634765625, 12.943050384521484],\n            [8.145203590393066, 12.942020416259766],\n            [8.245318412780762, 12.938819885253906],\n            [8.337125778198242, 12.935720443725586],\n            [8.402054786682129, 12.933529853820801],\n            [8.456042289733887, 12.931710243225098],\n            [8.487373352050781, 12.930660247802734],\n            [8.50916576385498, 12.809200286865234],\n            [8.512937545776367, 12.788180351257324],\n            [8.478970527648926, 12.788189888000488],\n            [8.431012153625488, 12.788060188293457],\n            [8.259181022644043, 12.787599563598633],\n            [8.122319221496582, 12.787229537963867],\n            [8.062442779541016, 12.944100379943848]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.106653,\n        \"PERIMETER\": 1.437606,\n        \"COLUMBUS_\": 16.0,\n        \"COLUMBUS_I\": 9.0,\n        \"POLYID\": 15.0,\n        \"NEIG\": 9,\n        \"HOVAL\": 18.0,\n        \"INC\": 9.873,\n        \"CRIME\": 48.585487,\n        \"OPEN\": 0.174325,\n        \"PLUMB\": 1.311475,\n        \"DISCBD\": 1.7,\n        \"X\": 39.610001,\n        \"Y\": 34.91,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1009.0\n      },\n      \"bbox\": [\n        8.757728576660156, 12.532369613647461, 9.233386993408203, 12.86400032043457\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.757728576660156, 12.861089706420898],\n            [8.943572998046875, 12.86221981048584],\n            [9.233386993408203, 12.86400032043457],\n            [9.220885276794434, 12.805720329284668],\n            [9.213532447814941, 12.778030395507812],\n            [9.206208229064941, 12.75883960723877],\n            [9.187246322631836, 12.709170341491699],\n            [9.166311264038086, 12.679980278015137],\n            [9.146787643432617, 12.658740043640137],\n            [9.124277114868164, 12.63424015045166],\n            [8.913296699523926, 12.609800338745117],\n            [8.855527877807617, 12.606300354003906],\n            [8.785566329956055, 12.532369613647461],\n            [8.777865409851074, 12.628029823303223],\n            [8.757728576660156, 12.861089706420898]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.093154,\n        \"PERIMETER\": 1.340061,\n        \"COLUMBUS_\": 17.0,\n        \"COLUMBUS_I\": 36.0,\n        \"POLYID\": 16.0,\n        \"NEIG\": 36,\n        \"HOVAL\": 18.799999,\n        \"INC\": 7.625,\n        \"CRIME\": 54.838711,\n        \"OPEN\": 0.533737,\n        \"PLUMB\": 4.6875,\n        \"DISCBD\": 1.1,\n        \"X\": 37.599998,\n        \"Y\": 34.080002,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1036.0\n      },\n      \"bbox\": [\n        8.50916576385498, 12.361550331115723, 8.785566329956055, 12.861089706420898\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.632829666137695, 12.810150146484375],\n            [8.693771362304688, 12.811140060424805],\n            [8.700782775878906, 12.857099533081055],\n            [8.757728576660156, 12.861089706420898],\n            [8.777865409851074, 12.628029823303223],\n            [8.785566329956055, 12.532369613647461],\n            [8.75838565826416, 12.49685001373291],\n            [8.726524353027344, 12.455209732055664],\n            [8.709477424621582, 12.427309989929199],\n            [8.694606781005859, 12.417490005493164],\n            [8.657632827758789, 12.391510009765625],\n            [8.605761528015137, 12.367939949035645],\n            [8.589687347412109, 12.361550331115723],\n            [8.512937545776367, 12.788180351257324],\n            [8.50916576385498, 12.809200286865234],\n            [8.582889556884766, 12.809769630432129],\n            [8.632829666137695, 12.810150146484375]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.102087,\n        \"PERIMETER\": 1.382359,\n        \"COLUMBUS_\": 18.0,\n        \"COLUMBUS_I\": 11.0,\n        \"POLYID\": 17.0,\n        \"NEIG\": 11,\n        \"HOVAL\": 41.75,\n        \"INC\": 9.798,\n        \"CRIME\": 36.868774,\n        \"OPEN\": 0.448232,\n        \"PLUMB\": 1.619745,\n        \"DISCBD\": 4.47,\n        \"X\": 48.580002,\n        \"Y\": 34.459999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1011.0\n      },\n      \"bbox\": [\n        10.356060028076172, 12.44025993347168, 10.709790229797363, 12.838859558105469\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10.356599807739258, 12.781140327453613],\n            [10.501099586486816, 12.805319786071777],\n            [10.649680137634277, 12.830180168151855],\n            [10.70281982421875, 12.838859558105469],\n            [10.709790229797363, 12.774909973144531],\n            [10.664819717407227, 12.762929916381836],\n            [10.6697998046875, 12.703980445861816],\n            [10.667770385742188, 12.648030281066895],\n            [10.666970252990723, 12.595029830932617],\n            [10.667340278625488, 12.580109596252441],\n            [10.669699668884277, 12.483180046081543],\n            [10.421750068664551, 12.44025993347168],\n            [10.420989990234375, 12.578129768371582],\n            [10.356060028076172, 12.598119735717773],\n            [10.356389999389648, 12.712010383605957],\n            [10.356599807739258, 12.781140327453613]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.055494,\n        \"PERIMETER\": 1.183352,\n        \"COLUMBUS_\": 19.0,\n        \"COLUMBUS_I\": 42.0,\n        \"POLYID\": 18.0,\n        \"NEIG\": 42,\n        \"HOVAL\": 60.0,\n        \"INC\": 13.185,\n        \"CRIME\": 43.962486,\n        \"OPEN\": 24.998068,\n        \"PLUMB\": 13.849287,\n        \"DISCBD\": 1.58,\n        \"X\": 36.150002,\n        \"Y\": 33.919998,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1042.0\n      },\n      \"bbox\": [\n        8.358473777770996, 12.355310440063477, 8.589687347412109, 12.788189888000488\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.431012153625488, 12.788060188293457],\n            [8.478970527648926, 12.788189888000488],\n            [8.512937545776367, 12.788180351257324],\n            [8.589687347412109, 12.361550331115723],\n            [8.565507888793945, 12.355330467224121],\n            [8.554715156555176, 12.355330467224121],\n            [8.523073196411133, 12.355310440063477],\n            [8.502638816833496, 12.357080459594727],\n            [8.481381416320801, 12.362910270690918],\n            [8.438838958740234, 12.373559951782227],\n            [8.406447410583496, 12.396730422973633],\n            [8.391569137573242, 12.407380104064941],\n            [8.369997024536133, 12.428179740905762],\n            [8.358473777770996, 12.445659637451172],\n            [8.423884391784668, 12.448490142822266],\n            [8.431012153625488, 12.788060188293457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.061342,\n        \"PERIMETER\": 1.249247,\n        \"COLUMBUS_\": 20.0,\n        \"COLUMBUS_I\": 41.0,\n        \"POLYID\": 19.0,\n        \"NEIG\": 41,\n        \"HOVAL\": 30.6,\n        \"INC\": 11.618,\n        \"CRIME\": 54.521965,\n        \"OPEN\": 0.111111,\n        \"PLUMB\": 2.622951,\n        \"DISCBD\": 1.53,\n        \"X\": 35.759998,\n        \"Y\": 34.66,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1041.0\n      },\n      \"bbox\": [\n        8.122319221496582, 12.445659637451172, 8.431012153625488, 12.788060188293457\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.122319221496582, 12.787229537963867],\n            [8.259181022644043, 12.787599563598633],\n            [8.431012153625488, 12.788060188293457],\n            [8.423884391784668, 12.448490142822266],\n            [8.358473777770996, 12.445659637451172],\n            [8.350508689880371, 12.481929779052734],\n            [8.347976684570312, 12.493459701538086],\n            [8.3489990234375, 12.547419548034668],\n            [8.33201789855957, 12.547419548034668],\n            [8.30504322052002, 12.550419807434082],\n            [8.301017761230469, 12.593090057373047],\n            [8.299444198608398, 12.609780311584473],\n            [8.296090126037598, 12.645339965820312],\n            [8.223162651062012, 12.645339965820312],\n            [8.148235321044922, 12.645350456237793],\n            [8.13826847076416, 12.703310012817383],\n            [8.138282775878906, 12.737279891967773],\n            [8.122319221496582, 12.787229537963867]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.444629,\n        \"PERIMETER\": 3.174601,\n        \"COLUMBUS_\": 21.0,\n        \"COLUMBUS_I\": 17.0,\n        \"POLYID\": 20.0,\n        \"NEIG\": 17,\n        \"HOVAL\": 81.266998,\n        \"INC\": 31.07,\n        \"CRIME\": 0.223797,\n        \"OPEN\": 5.318607,\n        \"PLUMB\": 0.167224,\n        \"DISCBD\": 3.57,\n        \"X\": 46.73,\n        \"Y\": 31.91,\n        \"NSA\": 0.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1017.0\n      },\n      \"bbox\": [\n        9.841083526611328, 11.741860389709473, 10.425640106201172, 12.781140327453613\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10.015439987182617, 12.72404956817627],\n            [10.178409576416016, 12.751319885253906],\n            [10.356599807739258, 12.781140327453613],\n            [10.356389999389648, 12.712010383605957],\n            [10.356060028076172, 12.598119735717773],\n            [10.420989990234375, 12.578129768371582],\n            [10.421750068664551, 12.44025993347168],\n            [10.424249649047852, 11.990639686584473],\n            [10.425640106201172, 11.741860389709473],\n            [10.252799987792969, 11.742819786071777],\n            [10.05659008026123, 11.74390983581543],\n            [10.049909591674805, 11.76294994354248],\n            [10.049750328063965, 11.778960227966309],\n            [10.049289703369141, 11.822830200195312],\n            [10.048910140991211, 11.858799934387207],\n            [10.042079925537109, 11.912759780883789],\n            [10.02422046661377, 11.962309837341309],\n            [10.007160186767578, 12.009679794311523],\n            [9.991960525512695, 12.031510353088379],\n            [9.956293106079102, 12.08275032043457],\n            [9.914779663085938, 12.142390251159668],\n            [9.899951934814453, 12.163689613342285],\n            [9.892878532409668, 12.173850059509277],\n            [9.884350776672363, 12.191530227661133],\n            [10.001230239868164, 12.170539855957031],\n            [9.96633243560791, 12.341389656066895],\n            [9.841083526611328, 12.314740180969238],\n            [9.935688018798828, 12.501870155334473],\n            [9.941193580627441, 12.512129783630371],\n            [9.933468818664551, 12.599410057067871],\n            [10.015439987182617, 12.72404956817627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.699258,\n        \"PERIMETER\": 5.07749,\n        \"COLUMBUS_\": 22.0,\n        \"COLUMBUS_I\": 43.0,\n        \"POLYID\": 21.0,\n        \"NEIG\": 43,\n        \"HOVAL\": 19.975,\n        \"INC\": 10.655,\n        \"CRIME\": 40.074074,\n        \"OPEN\": 1.643756,\n        \"PLUMB\": 1.559576,\n        \"DISCBD\": 1.41,\n        \"X\": 34.080002,\n        \"Y\": 30.42,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1043.0\n      },\n      \"bbox\": [\n        7.06132984161377, 11.527389526367188, 8.563572883605957, 12.725419998168945\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.842434883117676, 12.405599594116211],\n            [8.131139755249023, 12.373600006103516],\n            [8.136807441711426, 12.348549842834473],\n            [8.141800880432129, 12.326470375061035],\n            [8.148349761962891, 12.298720359802246],\n            [8.157790184020996, 12.281220436096191],\n            [8.174397468566895, 12.250430107116699],\n            [8.190520286560059, 12.237640380859375],\n            [8.225326538085938, 12.206859588623047],\n            [8.25028133392334, 12.194430351257324],\n            [8.310224533081055, 12.156929969787598],\n            [8.32612133026123, 12.153280258178711],\n            [8.358863830566406, 12.145950317382812],\n            [8.408769607543945, 12.134770393371582],\n            [8.43419361114502, 12.139209747314453],\n            [8.471713066101074, 12.145750045776367],\n            [8.495033264160156, 12.13776969909668],\n            [8.505514144897461, 12.128210067749023],\n            [8.519205093383789, 12.115229606628418],\n            [8.538623809814453, 12.088789939880371],\n            [8.544462203979492, 12.073599815368652],\n            [8.563572883605957, 12.023850440979004],\n            [8.525978088378906, 11.924659729003906],\n            [8.517660140991211, 11.91471004486084],\n            [8.471677780151367, 11.863730430603027],\n            [8.455998420715332, 11.847610473632812],\n            [8.412508010864258, 11.807350158691406],\n            [8.404298782348633, 11.800470352172852],\n            [8.386432647705078, 11.785490036010742],\n            [8.373654365539551, 11.774089813232422],\n            [8.282732009887695, 11.74413013458252],\n            [8.256792068481445, 11.828060150146484],\n            [8.103923797607422, 11.785120010375977],\n            [8.120859146118164, 11.670220375061035],\n            [7.733179092407227, 11.527389526367188],\n            [7.688279151916504, 11.66327953338623],\n            [7.717282772064209, 11.741209983825684],\n            [7.580474853515625, 11.882100105285645],\n            [7.637434005737305, 11.917059898376465],\n            [7.616511821746826, 12.057939529418945],\n            [7.40372896194458, 12.080949783325195],\n            [7.404763221740723, 12.164870262145996],\n            [7.323862075805664, 12.21183967590332],\n            [7.19602108001709, 12.295780181884766],\n            [7.135107040405273, 12.359729766845703],\n            [7.108152866363525, 12.406700134277344],\n            [7.092213153839111, 12.51261043548584],\n            [7.06132984161377, 12.725419998168945],\n            [7.143249988555908, 12.724410057067871],\n            [7.155218124389648, 12.674460411071777],\n            [7.173169136047363, 12.598520278930664],\n            [7.206113815307617, 12.544560432434082],\n            [7.27003812789917, 12.510580062866211],\n            [7.341958045959473, 12.486599922180176],\n            [7.429862976074219, 12.46660041809082],\n            [7.459833145141602, 12.463600158691406],\n            [7.481781005859375, 12.389659881591797],\n            [7.498770236968994, 12.403650283813477],\n            [7.516755104064941, 12.409640312194824],\n            [7.548725128173828, 12.412630081176758],\n            [7.559714794158936, 12.414629936218262],\n            [7.55869197845459, 12.356679916381836],\n            [7.569672107696533, 12.334699630737305],\n            [7.616611003875732, 12.29872989654541],\n            [7.669570922851562, 12.327690124511719],\n            [7.721512794494629, 12.307709693908691],\n            [7.708548069000244, 12.36266040802002],\n            [7.639626979827881, 12.389639854431152],\n            [7.646636009216309, 12.430609703063965],\n            [7.842434883117676, 12.405599594116211]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.192891,\n        \"PERIMETER\": 1.992717,\n        \"COLUMBUS_\": 23.0,\n        \"COLUMBUS_I\": 19.0,\n        \"POLYID\": 22.0,\n        \"NEIG\": 19,\n        \"HOVAL\": 30.450001,\n        \"INC\": 11.709,\n        \"CRIME\": 33.705048,\n        \"OPEN\": 4.539754,\n        \"PLUMB\": 1.785714,\n        \"DISCBD\": 2.45,\n        \"X\": 43.369999,\n        \"Y\": 33.459999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1019.0\n      },\n      \"bbox\": [\n        9.357977867126465, 12.226559638977051, 10.015439987182617, 12.72404956817627\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.386005401611328, 12.596240043640137],\n            [9.471497535705566, 12.595709800720215],\n            [9.555828094482422, 12.595190048217773],\n            [9.723674774169922, 12.595199584960938],\n            [9.763668060302734, 12.673130035400391],\n            [10.015439987182617, 12.72404956817627],\n            [9.933468818664551, 12.599410057067871],\n            [9.941193580627441, 12.512129783630371],\n            [9.935688018798828, 12.501870155334473],\n            [9.841083526611328, 12.314740180969238],\n            [9.656930923461914, 12.274029731750488],\n            [9.468775749206543, 12.234550476074219],\n            [9.394844055175781, 12.226559638977051],\n            [9.386472702026367, 12.34727954864502],\n            [9.385739326477051, 12.361639976501465],\n            [9.380951881408691, 12.45536994934082],\n            [9.357977867126465, 12.462360382080078],\n            [9.35901927947998, 12.56527042388916],\n            [9.386005401611328, 12.596240043640137]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.24712,\n        \"PERIMETER\": 2.147528,\n        \"COLUMBUS_\": 24.0,\n        \"COLUMBUS_I\": 12.0,\n        \"POLYID\": 23.0,\n        \"NEIG\": 12,\n        \"HOVAL\": 47.733002,\n        \"INC\": 21.155001,\n        \"CRIME\": 20.048504,\n        \"OPEN\": 0.532632,\n        \"PLUMB\": 0.216763,\n        \"DISCBD\": 4.78,\n        \"X\": 49.610001,\n        \"Y\": 32.650002,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1012.0\n      },\n      \"bbox\": [\n        10.421750068664551, 11.990639686584473, 10.888489723205566, 12.652009963989258\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10.667770385742188, 12.648030281066895],\n            [10.776670455932617, 12.652009963989258],\n            [10.88755989074707, 12.644009590148926],\n            [10.888489723205566, 12.49213981628418],\n            [10.884440422058105, 12.349269866943359],\n            [10.884380340576172, 12.19340991973877],\n            [10.876319885253906, 12.037540435791016],\n            [10.640899658203125, 12.013119697570801],\n            [10.424249649047852, 11.990639686584473],\n            [10.421750068664551, 12.44025993347168],\n            [10.669699668884277, 12.483180046081543],\n            [10.667340278625488, 12.580109596252441],\n            [10.666970252990723, 12.595029830932617],\n            [10.667770385742188, 12.648030281066895]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.192226,\n        \"PERIMETER\": 2.240392,\n        \"COLUMBUS_\": 25.0,\n        \"COLUMBUS_I\": 35.0,\n        \"POLYID\": 24.0,\n        \"NEIG\": 35,\n        \"HOVAL\": 53.200001,\n        \"INC\": 14.236,\n        \"CRIME\": 38.297871,\n        \"OPEN\": 0.62622,\n        \"PLUMB\": 18.811075,\n        \"DISCBD\": 0.42,\n        \"X\": 36.599998,\n        \"Y\": 32.09,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1035.0\n      },\n      \"bbox\": [\n        8.131139755249023, 12.088789939880371, 8.790392875671387, 12.645350456237793\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.148235321044922, 12.645350456237793],\n            [8.223162651062012, 12.645339965820312],\n            [8.296090126037598, 12.645339965820312],\n            [8.299444198608398, 12.609780311584473],\n            [8.301017761230469, 12.593090057373047],\n            [8.30504322052002, 12.550419807434082],\n            [8.33201789855957, 12.547419548034668],\n            [8.3489990234375, 12.547419548034668],\n            [8.347976684570312, 12.493459701538086],\n            [8.350508689880371, 12.481929779052734],\n            [8.358473777770996, 12.445659637451172],\n            [8.369997024536133, 12.428179740905762],\n            [8.391569137573242, 12.407380104064941],\n            [8.406447410583496, 12.396730422973633],\n            [8.438838958740234, 12.373559951782227],\n            [8.481381416320801, 12.362910270690918],\n            [8.502638816833496, 12.357080459594727],\n            [8.523073196411133, 12.355310440063477],\n            [8.554715156555176, 12.355330467224121],\n            [8.565507888793945, 12.355330467224121],\n            [8.589687347412109, 12.361550331115723],\n            [8.605761528015137, 12.367939949035645],\n            [8.657632827758789, 12.391510009765625],\n            [8.694606781005859, 12.417490005493164],\n            [8.709477424621582, 12.427309989929199],\n            [8.708919525146484, 12.39048957824707],\n            [8.708315849304199, 12.350500106811523],\n            [8.707547187805176, 12.302590370178223],\n            [8.767485618591309, 12.29557991027832],\n            [8.758467674255371, 12.230640411376953],\n            [8.784432411193848, 12.206660270690918],\n            [8.790392875671387, 12.125729560852051],\n            [8.643799781799316, 12.102089881896973],\n            [8.538623809814453, 12.088789939880371],\n            [8.519205093383789, 12.115229606628418],\n            [8.505514144897461, 12.128210067749023],\n            [8.495033264160156, 12.13776969909668],\n            [8.471713066101074, 12.145750045776367],\n            [8.43419361114502, 12.139209747314453],\n            [8.408769607543945, 12.134770393371582],\n            [8.358863830566406, 12.145950317382812],\n            [8.32612133026123, 12.153280258178711],\n            [8.310224533081055, 12.156929969787598],\n            [8.25028133392334, 12.194430351257324],\n            [8.225326538085938, 12.206859588623047],\n            [8.190520286560059, 12.237640380859375],\n            [8.174397468566895, 12.250430107116699],\n            [8.157790184020996, 12.281220436096191],\n            [8.148349761962891, 12.298720359802246],\n            [8.141800880432129, 12.326470375061035],\n            [8.136807441711426, 12.348549842834473],\n            [8.131139755249023, 12.373600006103516],\n            [8.137151718139648, 12.416560173034668],\n            [8.14915943145752, 12.462510108947754],\n            [8.160175323486328, 12.528459548950195],\n            [8.155200958251953, 12.579409599304199],\n            [8.147226333618164, 12.619379997253418],\n            [8.148235321044922, 12.645350456237793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.17168,\n        \"PERIMETER\": 1.666489,\n        \"COLUMBUS_\": 26.0,\n        \"COLUMBUS_I\": 32.0,\n        \"POLYID\": 25.0,\n        \"NEIG\": 32,\n        \"HOVAL\": 17.9,\n        \"INC\": 8.461,\n        \"CRIME\": 61.299175,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 6.529851,\n        \"DISCBD\": 0.83,\n        \"X\": 39.360001,\n        \"Y\": 32.880001,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1032.0\n      },\n      \"bbox\": [\n        8.707547187805176, 12.125729560852051, 9.131059646606445, 12.63424015045166\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.785566329956055, 12.532369613647461],\n            [8.855527877807617, 12.606300354003906],\n            [8.913296699523926, 12.609800338745117],\n            [9.124277114868164, 12.63424015045166],\n            [9.124981880187988, 12.587260246276855],\n            [9.127169609069824, 12.441459655761719],\n            [9.129522323608398, 12.284629821777344],\n            [9.131059646606445, 12.182160377502441],\n            [9.116094589233398, 12.17965030670166],\n            [8.95518970489502, 12.153010368347168],\n            [8.790392875671387, 12.125729560852051],\n            [8.784432411193848, 12.206660270690918],\n            [8.758467674255371, 12.230640411376953],\n            [8.767485618591309, 12.29557991027832],\n            [8.707547187805176, 12.302590370178223],\n            [8.708315849304199, 12.350500106811523],\n            [8.708919525146484, 12.39048957824707],\n            [8.709477424621582, 12.427309989929199],\n            [8.726524353027344, 12.455209732055664],\n            [8.75838565826416, 12.49685001373291],\n            [8.785566329956055, 12.532369613647461]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.107298,\n        \"PERIMETER\": 1.406823,\n        \"COLUMBUS_\": 27.0,\n        \"COLUMBUS_I\": 20.0,\n        \"POLYID\": 26.0,\n        \"NEIG\": 20,\n        \"HOVAL\": 20.299999,\n        \"INC\": 8.085,\n        \"CRIME\": 40.969742,\n        \"OPEN\": 1.238288,\n        \"PLUMB\": 2.534275,\n        \"DISCBD\": 1.5,\n        \"X\": 41.130001,\n        \"Y\": 33.139999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1020.0\n      },\n      \"bbox\": [\n        9.124277114868164, 12.182160377502441, 9.394844055175781, 12.63424015045166\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.124277114868164, 12.63424015045166],\n            [9.258048057556152, 12.630610466003418],\n            [9.383021354675293, 12.627209663391113],\n            [9.386005401611328, 12.596240043640137],\n            [9.35901927947998, 12.56527042388916],\n            [9.357977867126465, 12.462360382080078],\n            [9.380951881408691, 12.45536994934082],\n            [9.385739326477051, 12.361639976501465],\n            [9.386472702026367, 12.34727954864502],\n            [9.394844055175781, 12.226559638977051],\n            [9.258297920227051, 12.203579902648926],\n            [9.131059646606445, 12.182160377502441],\n            [9.129522323608398, 12.284629821777344],\n            [9.127169609069824, 12.441459655761719],\n            [9.124981880187988, 12.587260246276855],\n            [9.124277114868164, 12.63424015045166]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.137802,\n        \"PERIMETER\": 1.780751,\n        \"COLUMBUS_\": 28.0,\n        \"COLUMBUS_I\": 21.0,\n        \"POLYID\": 27.0,\n        \"NEIG\": 21,\n        \"HOVAL\": 34.099998,\n        \"INC\": 10.822,\n        \"CRIME\": 52.79443,\n        \"OPEN\": 19.368099,\n        \"PLUMB\": 1.483516,\n        \"DISCBD\": 2.24,\n        \"X\": 43.950001,\n        \"Y\": 31.610001,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1021.0\n      },\n      \"bbox\": [\n        9.468775749206543, 12.002750396728516, 10.007160186767578, 12.341389656066895\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.468775749206543, 12.234550476074219],\n            [9.656930923461914, 12.274029731750488],\n            [9.841083526611328, 12.314740180969238],\n            [9.96633243560791, 12.341389656066895],\n            [10.001230239868164, 12.170539855957031],\n            [9.884350776672363, 12.191530227661133],\n            [9.892878532409668, 12.173850059509277],\n            [9.899951934814453, 12.163689613342285],\n            [9.914779663085938, 12.142390251159668],\n            [9.956293106079102, 12.08275032043457],\n            [9.991960525512695, 12.031510353088379],\n            [10.007160186767578, 12.009679794311523],\n            [9.755396842956543, 12.004929542541504],\n            [9.480667114257812, 12.002750396728516],\n            [9.481962203979492, 12.065779685974121],\n            [9.478416442871094, 12.161820411682129],\n            [9.468775749206543, 12.234550476074219]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.174773,\n        \"PERIMETER\": 1.637148,\n        \"COLUMBUS_\": 29.0,\n        \"COLUMBUS_I\": 31.0,\n        \"POLYID\": 28.0,\n        \"NEIG\": 31,\n        \"HOVAL\": 22.85,\n        \"INC\": 7.856,\n        \"CRIME\": 56.919785,\n        \"OPEN\": 0.509305,\n        \"PLUMB\": 3.001072,\n        \"DISCBD\": 1.41,\n        \"X\": 41.310001,\n        \"Y\": 30.9,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1031.0\n      },\n      \"bbox\": [\n        9.084967613220215, 11.734999656677246, 9.492551803588867, 12.234550476074219\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394844055175781, 12.226559638977051],\n            [9.468775749206543, 12.234550476074219],\n            [9.478416442871094, 12.161820411682129],\n            [9.481962203979492, 12.065779685974121],\n            [9.480667114257812, 12.002750396728516],\n            [9.482346534729004, 11.975689888000488],\n            [9.488198280334473, 11.881449699401855],\n            [9.489535331726074, 11.859919548034668],\n            [9.492551803588867, 11.751970291137695],\n            [9.343691825866699, 11.734999656677246],\n            [9.200423240661621, 11.767109870910645],\n            [9.084967613220215, 11.792989730834961],\n            [9.090069770812988, 11.873970031738281],\n            [9.093652725219727, 11.930830001831055],\n            [9.098085403442383, 12.025779724121094],\n            [9.100104331970215, 12.063579559326172],\n            [9.103628158569336, 12.128439903259277],\n            [9.115089416503906, 12.158659934997559],\n            [9.131059646606445, 12.182160377502441],\n            [9.258297920227051, 12.203579902648926],\n            [9.394844055175781, 12.226559638977051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.085972,\n        \"PERIMETER\": 1.312158,\n        \"COLUMBUS_\": 30.0,\n        \"COLUMBUS_I\": 33.0,\n        \"POLYID\": 29.0,\n        \"NEIG\": 33,\n        \"HOVAL\": 32.5,\n        \"INC\": 8.681,\n        \"CRIME\": 60.750446,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 2.645051,\n        \"DISCBD\": 0.81,\n        \"X\": 39.720001,\n        \"Y\": 30.639999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1033.0\n      },\n      \"bbox\": [\n        8.790384292602539, 11.792989730834961, 9.131059646606445, 12.182160377502441\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116094589233398, 12.17965030670166],\n            [9.131059646606445, 12.182160377502441],\n            [9.115089416503906, 12.158659934997559],\n            [9.103628158569336, 12.128439903259277],\n            [9.100104331970215, 12.063579559326172],\n            [9.098085403442383, 12.025779724121094],\n            [9.093652725219727, 11.930830001831055],\n            [9.090069770812988, 11.873970031738281],\n            [9.084967613220215, 11.792989730834961],\n            [8.898137092590332, 11.80247974395752],\n            [8.868269920349121, 12.013819694519043],\n            [8.811333656311035, 12.030810356140137],\n            [8.813672065734863, 12.06682014465332],\n            [8.81535530090332, 12.09276008605957],\n            [8.790384292602539, 12.10575008392334],\n            [8.790392875671387, 12.125729560852051],\n            [8.95518970489502, 12.153010368347168],\n            [9.116094589233398, 12.17965030670166]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.104355,\n        \"PERIMETER\": 1.524931,\n        \"COLUMBUS_\": 31.0,\n        \"COLUMBUS_I\": 34.0,\n        \"POLYID\": 30.0,\n        \"NEIG\": 34,\n        \"HOVAL\": 22.5,\n        \"INC\": 13.906,\n        \"CRIME\": 68.892044,\n        \"OPEN\": 1.63878,\n        \"PLUMB\": 15.600624,\n        \"DISCBD\": 0.37,\n        \"X\": 38.290001,\n        \"Y\": 30.35,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1034.0\n      },\n      \"bbox\": [\n        8.386432647705078, 11.785490036010742, 8.898137092590332, 12.125729560852051\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.643799781799316, 12.102089881896973],\n            [8.790392875671387, 12.125729560852051],\n            [8.790384292602539, 12.10575008392334],\n            [8.81535530090332, 12.09276008605957],\n            [8.813672065734863, 12.06682014465332],\n            [8.811333656311035, 12.030810356140137],\n            [8.868269920349121, 12.013819694519043],\n            [8.898137092590332, 11.80247974395752],\n            [8.829165458679199, 11.80486011505127],\n            [8.713337898254395, 11.810020446777344],\n            [8.618428230285645, 11.80504035949707],\n            [8.508537292480469, 11.809040069580078],\n            [8.386432647705078, 11.785490036010742],\n            [8.404298782348633, 11.800470352172852],\n            [8.412508010864258, 11.807350158691406],\n            [8.455998420715332, 11.847610473632812],\n            [8.471677780151367, 11.863730430603027],\n            [8.517660140991211, 11.91471004486084],\n            [8.525978088378906, 11.924659729003906],\n            [8.563572883605957, 12.023850440979004],\n            [8.544462203979492, 12.073599815368652],\n            [8.538623809814453, 12.088789939880371],\n            [8.643799781799316, 12.102089881896973]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.117409,\n        \"PERIMETER\": 1.716047,\n        \"COLUMBUS_\": 32.0,\n        \"COLUMBUS_I\": 45.0,\n        \"POLYID\": 31.0,\n        \"NEIG\": 45,\n        \"HOVAL\": 31.799999,\n        \"INC\": 16.940001,\n        \"CRIME\": 17.677214,\n        \"OPEN\": 3.936443,\n        \"PLUMB\": 0.85389,\n        \"DISCBD\": 3.78,\n        \"X\": 27.940001,\n        \"Y\": 29.85,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1045.0\n      },\n      \"bbox\": [\n        6.456532001495361, 11.781330108642578, 7.185831069946289, 12.078980445861816\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.763313770294189, 11.981120109558105],\n            [6.942171096801758, 12.0560302734375],\n            [7.004114151000977, 12.067009925842285],\n            [7.078045845031738, 12.076990127563477],\n            [7.125000953674316, 12.078980445861816],\n            [7.185831069946289, 11.848239898681641],\n            [7.013006210327148, 11.82621955871582],\n            [6.741261005401611, 11.799280166625977],\n            [6.456532001495361, 11.781330108642578],\n            [6.674379825592041, 11.931170463562012],\n            [6.763313770294189, 11.981120109558105]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.18558,\n        \"PERIMETER\": 2.108951,\n        \"COLUMBUS_\": 33.0,\n        \"COLUMBUS_I\": 13.0,\n        \"POLYID\": 32.0,\n        \"NEIG\": 13,\n        \"HOVAL\": 40.299999,\n        \"INC\": 18.941999,\n        \"CRIME\": 19.145592,\n        \"OPEN\": 2.221022,\n        \"PLUMB\": 0.255102,\n        \"DISCBD\": 4.76,\n        \"X\": 50.110001,\n        \"Y\": 29.91,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1013.0\n      },\n      \"bbox\": [\n        10.424249649047852, 11.633870124816895, 11.204830169677734, 12.037540435791016\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10.424249649047852, 11.990639686584473],\n            [10.640899658203125, 12.013119697570801],\n            [10.876319885253906, 12.037540435791016],\n            [10.886269569396973, 11.946619987487793],\n            [10.915240287780762, 11.941619873046875],\n            [10.932220458984375, 11.938619613647461],\n            [10.963190078735352, 11.940620422363281],\n            [10.983169555664062, 11.936619758605957],\n            [10.995160102844238, 11.937620162963867],\n            [11.045080184936523, 11.853679656982422],\n            [11.112970352172852, 11.761759757995605],\n            [11.204830169677734, 11.638850212097168],\n            [11.126910209655762, 11.633870124816895],\n            [11.073969841003418, 11.65785026550293],\n            [10.974069595336914, 11.661860466003418],\n            [10.952119827270508, 11.727809906005859],\n            [10.878219604492188, 11.723259925842285],\n            [10.806260108947754, 11.718830108642578],\n            [10.783359527587891, 11.719550132751465],\n            [10.766209602355957, 11.720080375671387],\n            [10.677379608154297, 11.72284984588623],\n            [10.656399726867676, 11.72284984588623],\n            [10.613459587097168, 11.723299980163574],\n            [10.560500144958496, 11.723859786987305],\n            [10.531530380249023, 11.743849754333496],\n            [10.425640106201172, 11.741860389709473],\n            [10.424249649047852, 11.990639686584473]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.087472,\n        \"PERIMETER\": 1.507971,\n        \"COLUMBUS_\": 34.0,\n        \"COLUMBUS_I\": 22.0,\n        \"POLYID\": 33.0,\n        \"NEIG\": 22,\n        \"HOVAL\": 23.6,\n        \"INC\": 9.918,\n        \"CRIME\": 41.968163,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 1.023891,\n        \"DISCBD\": 2.28,\n        \"X\": 44.099998,\n        \"Y\": 30.4,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1022.0\n      },\n      \"bbox\": [\n        9.480667114257812, 11.76294994354248, 10.049909591674805, 12.009679794311523\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.480667114257812, 12.002750396728516],\n            [9.755396842956543, 12.004929542541504],\n            [10.007160186767578, 12.009679794311523],\n            [10.02422046661377, 11.962309837341309],\n            [10.042079925537109, 11.912759780883789],\n            [10.048910140991211, 11.858799934387207],\n            [10.049289703369141, 11.822830200195312],\n            [10.049750328063965, 11.778960227966309],\n            [10.049909591674805, 11.76294994354248],\n            [10.026479721069336, 11.787699699401855],\n            [9.986115455627441, 11.802860260009766],\n            [9.973393440246582, 11.809060096740723],\n            [9.925159454345703, 11.823849678039551],\n            [9.877091407775879, 11.844180107116699],\n            [9.859211921691895, 11.851739883422852],\n            [9.831770896911621, 11.858819961547852],\n            [9.800299644470215, 11.866829872131348],\n            [9.639468193054199, 11.863249778747559],\n            [9.489535331726074, 11.859919548034668],\n            [9.488198280334473, 11.881449699401855],\n            [9.482346534729004, 11.975689888000488],\n            [9.480667114257812, 12.002750396728516]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.226594,\n        \"PERIMETER\": 2.519132,\n        \"COLUMBUS_\": 35.0,\n        \"COLUMBUS_I\": 44.0,\n        \"POLYID\": 34.0,\n        \"NEIG\": 44,\n        \"HOVAL\": 28.450001,\n        \"INC\": 14.948,\n        \"CRIME\": 23.974028,\n        \"OPEN\": 3.029087,\n        \"PLUMB\": 0.386803,\n        \"DISCBD\": 3.06,\n        \"X\": 30.32,\n        \"Y\": 28.26,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1044.0\n      },\n      \"bbox\": [\n        6.966993808746338, 11.329950332641602, 7.733179092407227, 11.872119903564453\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.185831069946289, 11.848239898681641],\n            [7.317720890045166, 11.856149673461914],\n            [7.508541107177734, 11.872119903564453],\n            [7.484549999237061, 11.838150024414062],\n            [7.463559150695801, 11.80918025970459],\n            [7.469532012939453, 11.757220268249512],\n            [7.493495941162109, 11.728249549865723],\n            [7.492452144622803, 11.619339942932129],\n            [7.688279151916504, 11.66327953338623],\n            [7.733179092407227, 11.527389526367188],\n            [7.710183143615723, 11.482439994812012],\n            [7.674202919006348, 11.446470260620117],\n            [7.624241828918457, 11.421500205993652],\n            [7.562289237976074, 11.388540267944336],\n            [7.468363761901855, 11.349579811096191],\n            [7.398374080657959, 11.329950332641602],\n            [7.375504970550537, 11.471489906311035],\n            [7.315611839294434, 11.586389541625977],\n            [7.123810768127441, 11.530790328979492],\n            [6.9848952293396, 11.490519523620605],\n            [6.971885204315186, 11.633569717407227],\n            [6.966993808746338, 11.687350273132324],\n            [7.019946098327637, 11.695340156555176],\n            [7.013006210327148, 11.82621955871582],\n            [7.185831069946289, 11.848239898681641]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.175453,\n        \"PERIMETER\": 1.974937,\n        \"COLUMBUS_\": 36.0,\n        \"COLUMBUS_I\": 23.0,\n        \"POLYID\": 35.0,\n        \"NEIG\": 23,\n        \"HOVAL\": 27.0,\n        \"INC\": 12.814,\n        \"CRIME\": 39.175053,\n        \"OPEN\": 4.220401,\n        \"PLUMB\": 0.633675,\n        \"DISCBD\": 2.37,\n        \"X\": 43.700001,\n        \"Y\": 29.18,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1023.0\n      },\n      \"bbox\": [\n        9.341614723205566, 11.531109809875488, 10.05659008026123, 11.866829872131348\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.489535331726074, 11.859919548034668],\n            [9.639468193054199, 11.863249778747559],\n            [9.800299644470215, 11.866829872131348],\n            [9.831770896911621, 11.858819961547852],\n            [9.859211921691895, 11.851739883422852],\n            [9.877091407775879, 11.844180107116699],\n            [9.925159454345703, 11.823849678039551],\n            [9.973393440246582, 11.809060096740723],\n            [9.986115455627441, 11.802860260009766],\n            [10.026479721069336, 11.787699699401855],\n            [10.049909591674805, 11.76294994354248],\n            [10.05659008026123, 11.74390983581543],\n            [9.917131423950195, 11.737930297851562],\n            [9.918045997619629, 11.531109809875488],\n            [9.500506401062012, 11.542019844055176],\n            [9.341614723205566, 11.546170234680176],\n            [9.343691825866699, 11.734999656677246],\n            [9.492551803588867, 11.751970291137695],\n            [9.489535331726074, 11.859919548034668]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.17813,\n        \"PERIMETER\": 1.790058,\n        \"COLUMBUS_\": 37.0,\n        \"COLUMBUS_I\": 46.0,\n        \"POLYID\": 36.0,\n        \"NEIG\": 46,\n        \"HOVAL\": 36.299999,\n        \"INC\": 18.739,\n        \"CRIME\": 14.305556,\n        \"OPEN\": 6.773331,\n        \"PLUMB\": 0.332349,\n        \"DISCBD\": 4.23,\n        \"X\": 27.27,\n        \"Y\": 28.209999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1046.0\n      },\n      \"bbox\": [\n        6.456532001495361, 11.439629554748535, 7.019946098327637, 11.82621955871582\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.741261005401611, 11.799280166625977],\n            [7.013006210327148, 11.82621955871582],\n            [7.019946098327637, 11.695340156555176],\n            [6.966993808746338, 11.687350273132324],\n            [6.971885204315186, 11.633569717407227],\n            [6.9848952293396, 11.490519523620605],\n            [6.891400814056396, 11.479410171508789],\n            [6.77780818939209, 11.465909957885742],\n            [6.758334159851074, 11.462329864501953],\n            [6.678176879882812, 11.447600364685059],\n            [6.61027717590332, 11.444780349731445],\n            [6.558311939239502, 11.44219970703125],\n            [6.481366157531738, 11.439629554748535],\n            [6.456532001495361, 11.781330108642578],\n            [6.741261005401611, 11.799280166625977]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.121154,\n        \"PERIMETER\": 1.402252,\n        \"COLUMBUS_\": 38.0,\n        \"COLUMBUS_I\": 30.0,\n        \"POLYID\": 37.0,\n        \"NEIG\": 30,\n        \"HOVAL\": 43.299999,\n        \"INC\": 17.017,\n        \"CRIME\": 42.445076,\n        \"OPEN\": 4.839273,\n        \"PLUMB\": 1.230329,\n        \"DISCBD\": 1.08,\n        \"X\": 38.32,\n        \"Y\": 28.82,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1030.0\n      },\n      \"bbox\": [\n        8.713337898254395, 11.434320449829102, 9.095859527587891, 11.810020446777344\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.713337898254395, 11.810020446777344],\n            [8.829165458679199, 11.80486011505127],\n            [8.898137092590332, 11.80247974395752],\n            [9.084967613220215, 11.792989730834961],\n            [9.085843086242676, 11.639080047607422],\n            [9.095859527587891, 11.559189796447754],\n            [9.082836151123047, 11.456330299377441],\n            [9.000834465026855, 11.458020210266113],\n            [8.935976028442383, 11.460300445556641],\n            [8.922977447509766, 11.434320449829102],\n            [8.77213191986084, 11.450329780578613],\n            [8.713337898254395, 11.810020446777344]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.053881,\n        \"PERIMETER\": 0.934509,\n        \"COLUMBUS_\": 39.0,\n        \"COLUMBUS_I\": 24.0,\n        \"POLYID\": 38.0,\n        \"NEIG\": 24,\n        \"HOVAL\": 22.700001,\n        \"INC\": 11.107,\n        \"CRIME\": 53.710938,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 0.8,\n        \"DISCBD\": 1.58,\n        \"X\": 41.040001,\n        \"Y\": 28.780001,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1024.0\n      },\n      \"bbox\": [\n        9.084967613220215, 11.546170234680176, 9.343691825866699, 11.792989730834961\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.084967613220215, 11.792989730834961],\n            [9.200423240661621, 11.767109870910645],\n            [9.343691825866699, 11.734999656677246],\n            [9.341614723205566, 11.546170234680176],\n            [9.20775318145752, 11.55325984954834],\n            [9.095859527587891, 11.559189796447754],\n            [9.085843086242676, 11.639080047607422],\n            [9.084967613220215, 11.792989730834961]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.174823,\n        \"PERIMETER\": 2.335402,\n        \"COLUMBUS_\": 40.0,\n        \"COLUMBUS_I\": 47.0,\n        \"POLYID\": 39.0,\n        \"NEIG\": 47,\n        \"HOVAL\": 39.599998,\n        \"INC\": 18.476999,\n        \"CRIME\": 19.100863,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 0.314663,\n        \"DISCBD\": 5.53,\n        \"X\": 24.25,\n        \"Y\": 26.690001,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1047.0\n      },\n      \"bbox\": [\n        5.87490701675415, 11.057000160217285, 6.481366157531738, 11.781330108642578\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.181705951690674, 11.553569793701172],\n            [6.394561767578125, 11.710399627685547],\n            [6.456532001495361, 11.781330108642578],\n            [6.481366157531738, 11.439629554748535],\n            [6.33650016784668, 11.420660018920898],\n            [6.335865020751953, 11.39568042755127],\n            [6.335484027862549, 11.38070011138916],\n            [6.356451034545898, 11.349720001220703],\n            [6.359416007995605, 11.27379035949707],\n            [6.316442012786865, 11.232830047607422],\n            [6.167585849761963, 11.230850219726562],\n            [6.179293155670166, 11.18159008026123],\n            [6.180611133575439, 11.167719841003418],\n            [6.212475776672363, 11.122119903564453],\n            [6.220479965209961, 11.099960327148438],\n            [6.220462799072266, 11.057000160217285],\n            [6.088609218597412, 11.097979545593262],\n            [6.088623046875, 11.132949829101562],\n            [6.084632873535156, 11.148940086364746],\n            [6.085638046264648, 11.160920143127441],\n            [6.035704135894775, 11.202890396118164],\n            [5.984754085540771, 11.203900337219238],\n            [5.948803901672363, 11.239870071411133],\n            [5.96979284286499, 11.263850212097168],\n            [5.970815181732178, 11.31779956817627],\n            [5.87490701675415, 11.313819885253906],\n            [6.181705951690674, 11.553569793701172]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.302908,\n        \"PERIMETER\": 2.285487,\n        \"COLUMBUS_\": 41.0,\n        \"COLUMBUS_I\": 16.0,\n        \"POLYID\": 40.0,\n        \"NEIG\": 16,\n        \"HOVAL\": 61.950001,\n        \"INC\": 29.833,\n        \"CRIME\": 16.241299,\n        \"OPEN\": 6.45131,\n        \"PLUMB\": 0.132743,\n        \"DISCBD\": 4.4,\n        \"X\": 48.439999,\n        \"Y\": 27.93,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1016.0\n      },\n      \"bbox\": [\n        10.05659008026123, 11.213310241699219, 10.808690071105957, 11.74390983581543\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10.05659008026123, 11.74390983581543],\n            [10.252799987792969, 11.742819786071777],\n            [10.425640106201172, 11.741860389709473],\n            [10.531530380249023, 11.743849754333496],\n            [10.560500144958496, 11.723859786987305],\n            [10.613459587097168, 11.723299980163574],\n            [10.656399726867676, 11.72284984588623],\n            [10.677379608154297, 11.72284984588623],\n            [10.766209602355957, 11.720080375671387],\n            [10.783359527587891, 11.719550132751465],\n            [10.806260108947754, 11.718830108642578],\n            [10.802240371704102, 11.674869537353516],\n            [10.803219795227051, 11.661589622497559],\n            [10.806090354919434, 11.620909690856934],\n            [10.808199882507324, 11.590950012207031],\n            [10.808690071105957, 11.57466983795166],\n            [10.804929733276367, 11.558989524841309],\n            [10.799189567565918, 11.534999847412109],\n            [10.802140235900879, 11.434080123901367],\n            [10.802060127258301, 11.232259750366211],\n            [10.73412036895752, 11.228269577026367],\n            [10.687170028686523, 11.2222900390625],\n            [10.613240242004395, 11.216300010681152],\n            [10.595250129699707, 11.213310241699219],\n            [10.555290222167969, 11.22029972076416],\n            [10.480369567871094, 11.221309661865234],\n            [10.421429634094238, 11.23231029510498],\n            [10.364489555358887, 11.254300117492676],\n            [10.343520164489746, 11.272279739379883],\n            [10.329560279846191, 11.328240394592285],\n            [10.320590019226074, 11.369199752807617],\n            [10.279640197753906, 11.403180122375488],\n            [10.226710319519043, 11.45613956451416],\n            [10.168800354003906, 11.523090362548828],\n            [10.109880447387695, 11.590029716491699],\n            [10.070949554443359, 11.671970367431641],\n            [10.05659008026123, 11.74390983581543]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.137024,\n        \"PERIMETER\": 1.525097,\n        \"COLUMBUS_\": 42.0,\n        \"COLUMBUS_I\": 14.0,\n        \"POLYID\": 41.0,\n        \"NEIG\": 14,\n        \"HOVAL\": 42.099998,\n        \"INC\": 22.207001,\n        \"CRIME\": 18.905146,\n        \"OPEN\": 0.293317,\n        \"PLUMB\": 0.247036,\n        \"DISCBD\": 5.33,\n        \"X\": 51.240002,\n        \"Y\": 27.799999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1014.0\n      },\n      \"bbox\": [\n        10.799189567565918, 11.232259750366211, 11.141839981079102, 11.727809906005859\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10.806260108947754, 11.718830108642578],\n            [10.878219604492188, 11.723259925842285],\n            [10.952119827270508, 11.727809906005859],\n            [10.974069595336914, 11.661860466003418],\n            [11.073969841003418, 11.65785026550293],\n            [11.126910209655762, 11.633870124816895],\n            [11.126890182495117, 11.59589958190918],\n            [11.138870239257812, 11.569919586181641],\n            [11.139849662780762, 11.530960083007812],\n            [11.141839981079102, 11.505979537963867],\n            [11.12285041809082, 11.492989540100098],\n            [11.122790336608887, 11.336130142211914],\n            [11.122209548950195, 11.315879821777344],\n            [11.098469734191895, 11.303170204162598],\n            [11.078960418701172, 11.295280456542969],\n            [11.06859016418457, 11.2918701171875],\n            [11.014869689941406, 11.274200439453125],\n            [10.963910102844238, 11.265210151672363],\n            [10.919949531555176, 11.254229545593262],\n            [10.901860237121582, 11.252129554748535],\n            [10.877499580383301, 11.246870040893555],\n            [10.840740203857422, 11.238940238952637],\n            [10.818880081176758, 11.235170364379883],\n            [10.802060127258301, 11.232259750366211],\n            [10.802140235900879, 11.434080123901367],\n            [10.799189567565918, 11.534999847412109],\n            [10.804929733276367, 11.558989524841309],\n            [10.808690071105957, 11.57466983795166],\n            [10.808199882507324, 11.590950012207031],\n            [10.806090354919434, 11.620909690856934],\n            [10.803219795227051, 11.661589622497559],\n            [10.802240371704102, 11.674869537353516],\n            [10.806260108947754, 11.718830108642578]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.266541,\n        \"PERIMETER\": 2.176543,\n        \"COLUMBUS_\": 43.0,\n        \"COLUMBUS_I\": 49.0,\n        \"POLYID\": 42.0,\n        \"NEIG\": 49,\n        \"HOVAL\": 44.333,\n        \"INC\": 25.872999,\n        \"CRIME\": 16.49189,\n        \"OPEN\": 1.792993,\n        \"PLUMB\": 0.134439,\n        \"DISCBD\": 3.87,\n        \"X\": 29.02,\n        \"Y\": 26.58,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1049.0\n      },\n      \"bbox\": [\n        6.75403881072998, 10.997920036315918, 7.404403209686279, 11.586389541625977\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.758334159851074, 11.462329864501953],\n            [6.77780818939209, 11.465909957885742],\n            [6.891400814056396, 11.479410171508789],\n            [6.9848952293396, 11.490519523620605],\n            [7.123810768127441, 11.530790328979492],\n            [7.315611839294434, 11.586389541625977],\n            [7.375504970550537, 11.471489906311035],\n            [7.398374080657959, 11.329950332641602],\n            [7.404403209686279, 11.29263973236084],\n            [7.38238000869751, 11.18474006652832],\n            [7.359377861022949, 11.124790191650391],\n            [7.327386856079102, 11.071849822998047],\n            [7.275406837463379, 10.997920036315918],\n            [6.82789421081543, 11.116869926452637],\n            [6.879881858825684, 11.211779594421387],\n            [6.81195592880249, 11.22877025604248],\n            [6.83095121383667, 11.262740135192871],\n            [6.771010875701904, 11.265749931335449],\n            [6.75403881072998, 11.292719841003418],\n            [6.78602123260498, 11.325690269470215],\n            [6.778051853179932, 11.380640029907227],\n            [6.758076190948486, 11.392629623413086],\n            [6.758334159851074, 11.462329864501953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.060241,\n        \"PERIMETER\": 0.967793,\n        \"COLUMBUS_\": 44.0,\n        \"COLUMBUS_I\": 29.0,\n        \"POLYID\": 43.0,\n        \"NEIG\": 29,\n        \"HOVAL\": 25.700001,\n        \"INC\": 13.38,\n        \"CRIME\": 36.663612,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 0.589226,\n        \"DISCBD\": 1.95,\n        \"X\": 41.09,\n        \"Y\": 27.49,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1029.0\n      },\n      \"bbox\": [\n        9.082836151123047, 11.308409690856934, 9.341614723205566, 11.559189796447754\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095859527587891, 11.559189796447754],\n            [9.20775318145752, 11.55325984954834],\n            [9.341614723205566, 11.546170234680176],\n            [9.338521957397461, 11.312379837036133],\n            [9.207670211791992, 11.31017017364502],\n            [9.10374927520752, 11.308409690856934],\n            [9.082836151123047, 11.456330299377441],\n            [9.095859527587891, 11.559189796447754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.173337,\n        \"PERIMETER\": 1.868044,\n        \"COLUMBUS_\": 45.0,\n        \"COLUMBUS_I\": 25.0,\n        \"POLYID\": 44.0,\n        \"NEIG\": 25,\n        \"HOVAL\": 33.5,\n        \"INC\": 16.961,\n        \"CRIME\": 25.962263,\n        \"OPEN\": 1.463993,\n        \"PLUMB\": 0.329761,\n        \"DISCBD\": 2.67,\n        \"X\": 43.23,\n        \"Y\": 27.309999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1025.0\n      },\n      \"bbox\": [\n        9.335508346557617, 11.211409568786621, 9.963891983032227, 11.546170234680176\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.341614723205566, 11.546170234680176],\n            [9.500506401062012, 11.542019844055176],\n            [9.918045997619629, 11.531109809875488],\n            [9.963891983032227, 11.268340110778809],\n            [9.778072357177734, 11.265359878540039],\n            [9.776052474975586, 11.211409568786621],\n            [9.656153678894043, 11.212479591369629],\n            [9.548275947570801, 11.21343994140625],\n            [9.546306610107422, 11.285369873046875],\n            [9.391454696655273, 11.275400161743164],\n            [9.335508346557617, 11.27241039276123],\n            [9.338521957397461, 11.312379837036133],\n            [9.341614723205566, 11.546170234680176]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.256431,\n        \"PERIMETER\": 2.193039,\n        \"COLUMBUS_\": 46.0,\n        \"COLUMBUS_I\": 28.0,\n        \"POLYID\": 45.0,\n        \"NEIG\": 28,\n        \"HOVAL\": 27.733,\n        \"INC\": 14.135,\n        \"CRIME\": 29.028488,\n        \"OPEN\": 1.006118,\n        \"PLUMB\": 2.3912,\n        \"DISCBD\": 2.13,\n        \"X\": 39.32,\n        \"Y\": 25.85,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1028.0\n      },\n      \"bbox\": [\n        8.622117042541504, 10.821869850158691, 9.178548812866211, 11.460300445556641\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.000834465026855, 11.458020210266113],\n            [9.082836151123047, 11.456330299377441],\n            [9.10374927520752, 11.308409690856934],\n            [9.111679077148438, 11.157540321350098],\n            [9.107674598693848, 11.135560035705566],\n            [9.098838806152344, 11.115389823913574],\n            [9.093674659729004, 11.10359001159668],\n            [9.171592712402344, 11.09158992767334],\n            [9.174186706542969, 11.060310363769531],\n            [9.175572395324707, 11.048629760742188],\n            [9.178548812866211, 10.999670028686523],\n            [9.146570205688477, 10.976699829101562],\n            [9.135557174682617, 10.917750358581543],\n            [9.100429534912109, 10.899089813232422],\n            [9.095559120178223, 10.828829765319824],\n            [8.850795745849609, 10.821869850158691],\n            [8.815848350524902, 10.867839813232422],\n            [8.789886474609375, 10.899809837341309],\n            [8.765927314758301, 10.938779830932617],\n            [8.752955436706543, 10.978750228881836],\n            [8.747973442077637, 11.010720252990723],\n            [8.753978729248047, 11.035699844360352],\n            [8.750991821289062, 11.060669898986816],\n            [8.622117042541504, 11.059690475463867],\n            [8.631120681762695, 11.089659690856934],\n            [8.634133338928223, 11.126629829406738],\n            [8.63216495513916, 11.199569702148438],\n            [8.665151596069336, 11.246520042419434],\n            [8.683139801025391, 11.257510185241699],\n            [8.69713020324707, 11.267499923706055],\n            [8.67520809173584, 11.405380249023438],\n            [8.77213191986084, 11.450329780578613],\n            [8.922977447509766, 11.434320449829102],\n            [8.935976028442383, 11.460300445556641],\n            [9.000834465026855, 11.458020210266113]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.124728,\n        \"PERIMETER\": 1.841029,\n        \"COLUMBUS_\": 47.0,\n        \"COLUMBUS_I\": 48.0,\n        \"POLYID\": 46.0,\n        \"NEIG\": 48,\n        \"HOVAL\": 76.099998,\n        \"INC\": 18.323999,\n        \"CRIME\": 16.530533,\n        \"OPEN\": 9.683953,\n        \"PLUMB\": 0.424628,\n        \"DISCBD\": 5.27,\n        \"X\": 25.469999,\n        \"Y\": 25.709999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1048.0\n      },\n      \"bbox\": [\n        6.167585849761963, 10.978030204772949, 6.678176879882812, 11.447600364685059\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.481366157531738, 11.439629554748535],\n            [6.558311939239502, 11.44219970703125],\n            [6.61027717590332, 11.444780349731445],\n            [6.678176879882812, 11.447600364685059],\n            [6.649185180664062, 11.399640083312988],\n            [6.647164821624756, 11.344690322875977],\n            [6.639161109924316, 11.315719604492188],\n            [6.522275924682617, 11.318730354309082],\n            [6.520257949829102, 11.269769668579102],\n            [6.516248226165771, 11.236800193786621],\n            [6.542212009429932, 11.209819793701172],\n            [6.549192905426025, 11.180850028991699],\n            [6.55515718460083, 11.10791015625],\n            [6.534173011779785, 11.096920013427734],\n            [6.537120819091797, 10.978030204772949],\n            [6.220462799072266, 11.057000160217285],\n            [6.220479965209961, 11.099960327148438],\n            [6.212475776672363, 11.122119903564453],\n            [6.180611133575439, 11.167719841003418],\n            [6.179293155670166, 11.18159008026123],\n            [6.167585849761963, 11.230850219726562],\n            [6.316442012786865, 11.232830047607422],\n            [6.359416007995605, 11.27379035949707],\n            [6.356451034545898, 11.349720001220703],\n            [6.335484027862549, 11.38070011138916],\n            [6.335865020751953, 11.39568042755127],\n            [6.33650016784668, 11.420660018920898],\n            [6.481366157531738, 11.439629554748535]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.245249,\n        \"PERIMETER\": 2.079986,\n        \"COLUMBUS_\": 48.0,\n        \"COLUMBUS_I\": 15.0,\n        \"POLYID\": 47.0,\n        \"NEIG\": 15,\n        \"HOVAL\": 42.5,\n        \"INC\": 18.950001,\n        \"CRIME\": 27.822861,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 0.268817,\n        \"DISCBD\": 5.57,\n        \"X\": 50.889999,\n        \"Y\": 25.24,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1015.0\n      },\n      \"bbox\": [\n        10.588159561157227, 10.788629531860352, 11.287420272827148, 11.315879821777344\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [11.098469734191895, 11.303170204162598],\n            [11.122209548950195, 11.315879821777344],\n            [11.120759963989258, 11.265190124511719],\n            [11.119729995727539, 11.199250221252441],\n            [11.123700141906738, 11.127309799194336],\n            [11.144650459289551, 11.056369781494141],\n            [11.181599617004395, 11.025400161743164],\n            [11.221540451049805, 10.978429794311523],\n            [11.256489753723145, 10.922479629516602],\n            [11.275449752807617, 10.888500213623047],\n            [11.287420272827148, 10.84253978729248],\n            [11.286399841308594, 10.790590286254883],\n            [11.013669967651367, 10.788629531860352],\n            [10.963720321655273, 10.799619674682617],\n            [10.88379955291748, 10.807620048522949],\n            [10.781900405883789, 10.812629699707031],\n            [10.708979606628418, 10.819640159606934],\n            [10.694000244140625, 10.833629608154297],\n            [10.649069786071777, 10.890580177307129],\n            [10.616109848022461, 10.925559997558594],\n            [10.588159561157227, 10.978509902954102],\n            [10.592169761657715, 10.994500160217285],\n            [10.691129684448242, 11.140359878540039],\n            [10.687170028686523, 11.2222900390625],\n            [10.73412036895752, 11.228269577026367],\n            [10.802060127258301, 11.232259750366211],\n            [10.818880081176758, 11.235170364379883],\n            [10.840740203857422, 11.238940238952637],\n            [10.877499580383301, 11.246870040893555],\n            [10.901860237121582, 11.252129554748535],\n            [10.919949531555176, 11.254229545593262],\n            [10.963910102844238, 11.265210151672363],\n            [11.014869689941406, 11.274200439453125],\n            [11.06859016418457, 11.2918701171875],\n            [11.078960418701172, 11.295280456542969],\n            [11.098469734191895, 11.303170204162598]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.069762,\n        \"PERIMETER\": 1.102032,\n        \"COLUMBUS_\": 49.0,\n        \"COLUMBUS_I\": 27.0,\n        \"POLYID\": 48.0,\n        \"NEIG\": 27,\n        \"HOVAL\": 26.799999,\n        \"INC\": 11.813,\n        \"CRIME\": 26.645266,\n        \"OPEN\": 4.884389,\n        \"PLUMB\": 1.034807,\n        \"DISCBD\": 2.33,\n        \"X\": 41.209999,\n        \"Y\": 25.9,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1027.0\n      },\n      \"bbox\": [\n        9.093674659729004, 11.048029899597168, 9.3948974609375, 11.312379837036133\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207670211791992, 11.31017017364502],\n            [9.338521957397461, 11.312379837036133],\n            [9.335508346557617, 11.27241039276123],\n            [9.391454696655273, 11.275400161743164],\n            [9.393032073974609, 11.262740135192871],\n            [9.393250465393066, 11.251399993896484],\n            [9.3948974609375, 11.165470123291016],\n            [9.39454460144043, 11.139530181884766],\n            [9.393360137939453, 11.052599906921387],\n            [9.282283782958984, 11.048029899597168],\n            [9.175572395324707, 11.048629760742188],\n            [9.174186706542969, 11.060310363769531],\n            [9.171592712402344, 11.09158992767334],\n            [9.093674659729004, 11.10359001159668],\n            [9.098838806152344, 11.115389823913574],\n            [9.107674598693848, 11.135560035705566],\n            [9.111679077148438, 11.157540321350098],\n            [9.10374927520752, 11.308409690856934],\n            [9.207670211791992, 11.31017017364502]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.205964,\n        \"PERIMETER\": 2.199169,\n        \"COLUMBUS_\": 50.0,\n        \"COLUMBUS_I\": 26.0,\n        \"POLYID\": 49.0,\n        \"NEIG\": 26,\n        \"HOVAL\": 35.799999,\n        \"INC\": 18.796,\n        \"CRIME\": 22.541491,\n        \"OPEN\": 0.259826,\n        \"PLUMB\": 0.901442,\n        \"DISCBD\": 3.03,\n        \"X\": 42.669998,\n        \"Y\": 24.959999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1026.0\n      },\n      \"bbox\": [\n        9.095559120178223, 10.828829765319824, 9.78189754486084, 11.285369873046875\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.391454696655273, 11.275400161743164],\n            [9.546306610107422, 11.285369873046875],\n            [9.548275947570801, 11.21343994140625],\n            [9.656153678894043, 11.212479591369629],\n            [9.776052474975586, 11.211409568786621],\n            [9.779011726379395, 11.118490219116211],\n            [9.774969100952148, 11.007590293884277],\n            [9.775935173034668, 10.92866039276123],\n            [9.78189754486084, 10.853730201721191],\n            [9.095559120178223, 10.828829765319824],\n            [9.100429534912109, 10.899089813232422],\n            [9.135557174682617, 10.917750358581543],\n            [9.146570205688477, 10.976699829101562],\n            [9.178548812866211, 10.999670028686523],\n            [9.175572395324707, 11.048629760742188],\n            [9.282283782958984, 11.048029899597168],\n            [9.393360137939453, 11.052599906921387],\n            [9.39454460144043, 11.139530181884766],\n            [9.3948974609375, 11.165470123291016],\n            [9.393250465393066, 11.251399993896484],\n            [9.393032073974609, 11.262740135192871],\n            [9.391454696655273, 11.275400161743164]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-distance-weight/test/in/point.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 1,\n        \"AREA\": 0.309441,\n        \"PERIMETER\": 2.440629,\n        \"COLUMBUS_\": 2.0,\n        \"COLUMBUS_I\": 5.0,\n        \"POLYID\": 1.0,\n        \"NEIG\": 5,\n        \"HOVAL\": 80.467003,\n        \"INC\": 19.531,\n        \"CRIME\": 15.72598,\n        \"OPEN\": 2.850747,\n        \"PLUMB\": 0.217155,\n        \"DISCBD\": 5.03,\n        \"X\": 38.799999,\n        \"Y\": 44.07,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1005.0,\n        \"ORIG_FID\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.827218469203906, 14.369076018912065]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 2,\n        \"AREA\": 0.259329,\n        \"PERIMETER\": 2.236939,\n        \"COLUMBUS_\": 3.0,\n        \"COLUMBUS_I\": 1.0,\n        \"POLYID\": 2.0,\n        \"NEIG\": 1,\n        \"HOVAL\": 44.567001,\n        \"INC\": 21.232,\n        \"CRIME\": 18.801754,\n        \"OPEN\": 5.29672,\n        \"PLUMB\": 0.320581,\n        \"DISCBD\": 4.27,\n        \"X\": 35.619999,\n        \"Y\": 42.380001,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1001.0,\n        \"ORIG_FID\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.332658372724923, 14.03162400632397]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 3,\n        \"AREA\": 0.192468,\n        \"PERIMETER\": 2.187547,\n        \"COLUMBUS_\": 4.0,\n        \"COLUMBUS_I\": 6.0,\n        \"POLYID\": 3.0,\n        \"NEIG\": 6,\n        \"HOVAL\": 26.35,\n        \"INC\": 15.956,\n        \"CRIME\": 30.626781,\n        \"OPEN\": 4.534649,\n        \"PLUMB\": 0.374404,\n        \"DISCBD\": 3.89,\n        \"X\": 39.82,\n        \"Y\": 41.18,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1006.0,\n        \"ORIG_FID\": 2\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.012265409371699, 13.81971907996915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 4,\n        \"AREA\": 0.083841,\n        \"PERIMETER\": 1.427635,\n        \"COLUMBUS_\": 5.0,\n        \"COLUMBUS_I\": 2.0,\n        \"POLYID\": 4.0,\n        \"NEIG\": 2,\n        \"HOVAL\": 33.200001,\n        \"INC\": 4.477,\n        \"CRIME\": 32.38776,\n        \"OPEN\": 0.394427,\n        \"PLUMB\": 1.186944,\n        \"DISCBD\": 3.7,\n        \"X\": 36.5,\n        \"Y\": 40.52,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1002.0,\n        \"ORIG_FID\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.460800893307432, 13.71696217022814]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 5,\n        \"AREA\": 0.488888,\n        \"PERIMETER\": 2.997133,\n        \"COLUMBUS_\": 6.0,\n        \"COLUMBUS_I\": 7.0,\n        \"POLYID\": 5.0,\n        \"NEIG\": 7,\n        \"HOVAL\": 23.225,\n        \"INC\": 11.252,\n        \"CRIME\": 50.73151,\n        \"OPEN\": 0.405664,\n        \"PLUMB\": 0.624596,\n        \"DISCBD\": 2.83,\n        \"X\": 40.009998,\n        \"Y\": 38.0,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1007.0,\n        \"ORIG_FID\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.007982127497687, 13.296366430537295]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 6,\n        \"AREA\": 0.283079,\n        \"PERIMETER\": 2.335634,\n        \"COLUMBUS_\": 7.0,\n        \"COLUMBUS_I\": 8.0,\n        \"POLYID\": 6.0,\n        \"NEIG\": 8,\n        \"HOVAL\": 28.75,\n        \"INC\": 16.028999,\n        \"CRIME\": 26.066658,\n        \"OPEN\": 0.563075,\n        \"PLUMB\": 0.25413,\n        \"DISCBD\": 3.78,\n        \"X\": 43.75,\n        \"Y\": 39.279999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1008.0,\n        \"ORIG_FID\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.739925828001205, 13.474632743210716]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 7,\n        \"AREA\": 0.257084,\n        \"PERIMETER\": 2.554577,\n        \"COLUMBUS_\": 8.0,\n        \"COLUMBUS_I\": 4.0,\n        \"POLYID\": 7.0,\n        \"NEIG\": 4,\n        \"HOVAL\": 75.0,\n        \"INC\": 8.438,\n        \"CRIME\": 0.178269,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 2.402402,\n        \"DISCBD\": 2.74,\n        \"X\": 33.360001,\n        \"Y\": 38.41,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1004.0,\n        \"ORIG_FID\": 6\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.118750060628727, 13.29570386705354]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 8,\n        \"AREA\": 0.204954,\n        \"PERIMETER\": 2.139524,\n        \"COLUMBUS_\": 9.0,\n        \"COLUMBUS_I\": 3.0,\n        \"POLYID\": 8.0,\n        \"NEIG\": 3,\n        \"HOVAL\": 37.125,\n        \"INC\": 11.337,\n        \"CRIME\": 38.425858,\n        \"OPEN\": 3.483478,\n        \"PLUMB\": 2.739726,\n        \"DISCBD\": 2.89,\n        \"X\": 36.709999,\n        \"Y\": 38.709999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1003.0,\n        \"ORIG_FID\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.49648817195755, 13.402612361972411]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 9,\n        \"AREA\": 0.500755,\n        \"PERIMETER\": 3.169707,\n        \"COLUMBUS_\": 10.0,\n        \"COLUMBUS_I\": 18.0,\n        \"POLYID\": 9.0,\n        \"NEIG\": 18,\n        \"HOVAL\": 52.599998,\n        \"INC\": 17.586,\n        \"CRIME\": 30.515917,\n        \"OPEN\": 0.527488,\n        \"PLUMB\": 0.890736,\n        \"DISCBD\": 3.17,\n        \"X\": 43.439999,\n        \"Y\": 35.919998,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1018.0,\n        \"ORIG_FID\": 8\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.630793442508985, 12.942724931765365]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 10,\n        \"AREA\": 0.246689,\n        \"PERIMETER\": 2.087235,\n        \"COLUMBUS_\": 11.0,\n        \"COLUMBUS_I\": 10.0,\n        \"POLYID\": 10.0,\n        \"NEIG\": 10,\n        \"HOVAL\": 96.400002,\n        \"INC\": 13.598,\n        \"CRIME\": 34.000835,\n        \"OPEN\": 1.548348,\n        \"PLUMB\": 0.557724,\n        \"DISCBD\": 4.33,\n        \"X\": 47.610001,\n        \"Y\": 36.419998,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1010.0,\n        \"ORIG_FID\": 9\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10.366382709801059, 13.001889360253092]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 11,\n        \"AREA\": 0.041012,\n        \"PERIMETER\": 0.919488,\n        \"COLUMBUS_\": 12.0,\n        \"COLUMBUS_I\": 38.0,\n        \"POLYID\": 11.0,\n        \"NEIG\": 38,\n        \"HOVAL\": 19.700001,\n        \"INC\": 7.467,\n        \"CRIME\": 62.275448,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 1.479915,\n        \"DISCBD\": 1.9,\n        \"X\": 37.849998,\n        \"Y\": 36.299999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1038.0,\n        \"ORIG_FID\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.669735412857047, 12.98012156123324]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 12,\n        \"AREA\": 0.035769,\n        \"PERIMETER\": 0.902125,\n        \"COLUMBUS_\": 13.0,\n        \"COLUMBUS_I\": 37.0,\n        \"POLYID\": 12.0,\n        \"NEIG\": 37,\n        \"HOVAL\": 19.9,\n        \"INC\": 10.048,\n        \"CRIME\": 56.705669,\n        \"OPEN\": 3.157895,\n        \"PLUMB\": 2.635046,\n        \"DISCBD\": 1.91,\n        \"X\": 37.130001,\n        \"Y\": 36.119999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1037.0,\n        \"ORIG_FID\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.544995589641779, 12.953125683982199]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 13,\n        \"AREA\": 0.034377,\n        \"PERIMETER\": 0.93659,\n        \"COLUMBUS_\": 14.0,\n        \"COLUMBUS_I\": 39.0,\n        \"POLYID\": 13.0,\n        \"NEIG\": 39,\n        \"HOVAL\": 41.700001,\n        \"INC\": 9.549,\n        \"CRIME\": 46.716129,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 6.328423,\n        \"DISCBD\": 2.09,\n        \"X\": 35.950001,\n        \"Y\": 36.400002,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1039.0,\n        \"ORIG_FID\": 12\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.349223482851055, 12.996094141102329]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 14,\n        \"AREA\": 0.060884,\n        \"PERIMETER\": 1.128424,\n        \"COLUMBUS_\": 15.0,\n        \"COLUMBUS_I\": 40.0,\n        \"POLYID\": 14.0,\n        \"NEIG\": 40,\n        \"HOVAL\": 42.900002,\n        \"INC\": 9.963,\n        \"CRIME\": 57.066132,\n        \"OPEN\": 0.477104,\n        \"PLUMB\": 5.110962,\n        \"DISCBD\": 1.83,\n        \"X\": 35.720001,\n        \"Y\": 35.599998,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1040.0,\n        \"ORIG_FID\": 13\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.292701516920957, 12.863707688216895]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 15,\n        \"AREA\": 0.106653,\n        \"PERIMETER\": 1.437606,\n        \"COLUMBUS_\": 16.0,\n        \"COLUMBUS_I\": 9.0,\n        \"POLYID\": 15.0,\n        \"NEIG\": 9,\n        \"HOVAL\": 18.0,\n        \"INC\": 9.873,\n        \"CRIME\": 48.585487,\n        \"OPEN\": 0.174325,\n        \"PLUMB\": 1.311475,\n        \"DISCBD\": 1.7,\n        \"X\": 39.610001,\n        \"Y\": 34.91,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1009.0,\n        \"ORIG_FID\": 14\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.973462206070096, 12.741586740380374]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 16,\n        \"AREA\": 0.093154,\n        \"PERIMETER\": 1.340061,\n        \"COLUMBUS_\": 17.0,\n        \"COLUMBUS_I\": 36.0,\n        \"POLYID\": 16.0,\n        \"NEIG\": 36,\n        \"HOVAL\": 18.799999,\n        \"INC\": 7.625,\n        \"CRIME\": 54.838711,\n        \"OPEN\": 0.533737,\n        \"PLUMB\": 4.6875,\n        \"DISCBD\": 1.1,\n        \"X\": 37.599998,\n        \"Y\": 34.080002,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1036.0,\n        \"ORIG_FID\": 15\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.655866335560422, 12.627315808754123]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 17,\n        \"AREA\": 0.102087,\n        \"PERIMETER\": 1.382359,\n        \"COLUMBUS_\": 18.0,\n        \"COLUMBUS_I\": 11.0,\n        \"POLYID\": 17.0,\n        \"NEIG\": 11,\n        \"HOVAL\": 41.75,\n        \"INC\": 9.798,\n        \"CRIME\": 36.868774,\n        \"OPEN\": 0.448232,\n        \"PLUMB\": 1.619745,\n        \"DISCBD\": 4.47,\n        \"X\": 48.580002,\n        \"Y\": 34.459999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1011.0,\n        \"ORIG_FID\": 16\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10.528621192777081, 12.647475597059021]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 18,\n        \"AREA\": 0.055494,\n        \"PERIMETER\": 1.183352,\n        \"COLUMBUS_\": 19.0,\n        \"COLUMBUS_I\": 42.0,\n        \"POLYID\": 18.0,\n        \"NEIG\": 42,\n        \"HOVAL\": 60.0,\n        \"INC\": 13.185,\n        \"CRIME\": 43.962486,\n        \"OPEN\": 24.998068,\n        \"PLUMB\": 13.849287,\n        \"DISCBD\": 1.58,\n        \"X\": 36.150002,\n        \"Y\": 33.919998,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1042.0,\n        \"ORIG_FID\": 17\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.487918125725194, 12.545342471590065]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 19,\n        \"AREA\": 0.061342,\n        \"PERIMETER\": 1.249247,\n        \"COLUMBUS_\": 20.0,\n        \"COLUMBUS_I\": 41.0,\n        \"POLYID\": 19.0,\n        \"NEIG\": 41,\n        \"HOVAL\": 30.6,\n        \"INC\": 11.618,\n        \"CRIME\": 54.521965,\n        \"OPEN\": 0.111111,\n        \"PLUMB\": 2.622951,\n        \"DISCBD\": 1.53,\n        \"X\": 35.759998,\n        \"Y\": 34.66,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1041.0,\n        \"ORIG_FID\": 18\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.276665687561035, 12.716493200126546]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 20,\n        \"AREA\": 0.444629,\n        \"PERIMETER\": 3.174601,\n        \"COLUMBUS_\": 21.0,\n        \"COLUMBUS_I\": 17.0,\n        \"POLYID\": 20.0,\n        \"NEIG\": 17,\n        \"HOVAL\": 81.266998,\n        \"INC\": 31.07,\n        \"CRIME\": 0.223797,\n        \"OPEN\": 5.318607,\n        \"PLUMB\": 0.167224,\n        \"DISCBD\": 3.57,\n        \"X\": 46.73,\n        \"Y\": 31.91,\n        \"NSA\": 0.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1017.0,\n        \"ORIG_FID\": 19\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10.190581526179411, 12.256899149288646]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 21,\n        \"AREA\": 0.699258,\n        \"PERIMETER\": 5.07749,\n        \"COLUMBUS_\": 22.0,\n        \"COLUMBUS_I\": 43.0,\n        \"POLYID\": 21.0,\n        \"NEIG\": 43,\n        \"HOVAL\": 19.975,\n        \"INC\": 10.655,\n        \"CRIME\": 40.074074,\n        \"OPEN\": 1.643756,\n        \"PLUMB\": 1.559576,\n        \"DISCBD\": 1.41,\n        \"X\": 34.080002,\n        \"Y\": 30.42,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1043.0,\n        \"ORIG_FID\": 20\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.847423618980445, 12.084997322022751]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 22,\n        \"AREA\": 0.192891,\n        \"PERIMETER\": 1.992717,\n        \"COLUMBUS_\": 23.0,\n        \"COLUMBUS_I\": 19.0,\n        \"POLYID\": 22.0,\n        \"NEIG\": 19,\n        \"HOVAL\": 30.450001,\n        \"INC\": 11.709,\n        \"CRIME\": 33.705048,\n        \"OPEN\": 4.539754,\n        \"PLUMB\": 1.785714,\n        \"DISCBD\": 2.45,\n        \"X\": 43.369999,\n        \"Y\": 33.459999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1019.0,\n        \"ORIG_FID\": 21\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.655244367498366, 12.462765864102987]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 23,\n        \"AREA\": 0.24712,\n        \"PERIMETER\": 2.147528,\n        \"COLUMBUS_\": 24.0,\n        \"COLUMBUS_I\": 12.0,\n        \"POLYID\": 23.0,\n        \"NEIG\": 12,\n        \"HOVAL\": 47.733002,\n        \"INC\": 21.155001,\n        \"CRIME\": 20.048504,\n        \"OPEN\": 0.532632,\n        \"PLUMB\": 0.216763,\n        \"DISCBD\": 4.78,\n        \"X\": 49.610001,\n        \"Y\": 32.650002,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1012.0,\n        \"ORIG_FID\": 22\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10.655119895935059, 12.247625542087841]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 24,\n        \"AREA\": 0.192226,\n        \"PERIMETER\": 2.240392,\n        \"COLUMBUS_\": 25.0,\n        \"COLUMBUS_I\": 35.0,\n        \"POLYID\": 24.0,\n        \"NEIG\": 35,\n        \"HOVAL\": 53.200001,\n        \"INC\": 14.236,\n        \"CRIME\": 38.297871,\n        \"OPEN\": 0.62622,\n        \"PLUMB\": 18.811075,\n        \"DISCBD\": 0.42,\n        \"X\": 36.599998,\n        \"Y\": 32.09,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1035.0,\n        \"ORIG_FID\": 23\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.460766315460205, 12.25595634881094]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 25,\n        \"AREA\": 0.17168,\n        \"PERIMETER\": 1.666489,\n        \"COLUMBUS_\": 26.0,\n        \"COLUMBUS_I\": 32.0,\n        \"POLYID\": 25.0,\n        \"NEIG\": 32,\n        \"HOVAL\": 17.9,\n        \"INC\": 8.461,\n        \"CRIME\": 61.299175,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 6.529851,\n        \"DISCBD\": 0.83,\n        \"X\": 39.360001,\n        \"Y\": 32.880001,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1032.0,\n        \"ORIG_FID\": 24\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.938751825549428, 12.380509826386749]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 26,\n        \"AREA\": 0.107298,\n        \"PERIMETER\": 1.406823,\n        \"COLUMBUS_\": 27.0,\n        \"COLUMBUS_I\": 20.0,\n        \"POLYID\": 26.0,\n        \"NEIG\": 20,\n        \"HOVAL\": 20.299999,\n        \"INC\": 8.085,\n        \"CRIME\": 40.969742,\n        \"OPEN\": 1.238288,\n        \"PLUMB\": 2.534275,\n        \"DISCBD\": 1.5,\n        \"X\": 41.130001,\n        \"Y\": 33.139999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1020.0,\n        \"ORIG_FID\": 25\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.250921130765516, 12.413783516339139]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 27,\n        \"AREA\": 0.137802,\n        \"PERIMETER\": 1.780751,\n        \"COLUMBUS_\": 28.0,\n        \"COLUMBUS_I\": 21.0,\n        \"POLYID\": 27.0,\n        \"NEIG\": 21,\n        \"HOVAL\": 34.099998,\n        \"INC\": 10.822,\n        \"CRIME\": 52.79443,\n        \"OPEN\": 19.368099,\n        \"PLUMB\": 1.483516,\n        \"DISCBD\": 2.24,\n        \"X\": 43.950001,\n        \"Y\": 31.610001,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1021.0,\n        \"ORIG_FID\": 26\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.737004148455057, 12.149692840219398]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 28,\n        \"AREA\": 0.174773,\n        \"PERIMETER\": 1.637148,\n        \"COLUMBUS_\": 29.0,\n        \"COLUMBUS_I\": 31.0,\n        \"POLYID\": 28.0,\n        \"NEIG\": 31,\n        \"HOVAL\": 22.85,\n        \"INC\": 7.856,\n        \"CRIME\": 56.919785,\n        \"OPEN\": 0.509305,\n        \"PLUMB\": 3.001072,\n        \"DISCBD\": 1.41,\n        \"X\": 41.310001,\n        \"Y\": 30.9,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1031.0,\n        \"ORIG_FID\": 27\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.297975780128178, 11.977787924704431]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 29,\n        \"AREA\": 0.085972,\n        \"PERIMETER\": 1.312158,\n        \"COLUMBUS_\": 30.0,\n        \"COLUMBUS_I\": 33.0,\n        \"POLYID\": 29.0,\n        \"NEIG\": 33,\n        \"HOVAL\": 32.5,\n        \"INC\": 8.681,\n        \"CRIME\": 60.750446,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 2.645051,\n        \"DISCBD\": 0.81,\n        \"X\": 39.720001,\n        \"Y\": 30.639999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1033.0,\n        \"ORIG_FID\": 28\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.977861502440565, 11.994012072407752]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 30,\n        \"AREA\": 0.104355,\n        \"PERIMETER\": 1.524931,\n        \"COLUMBUS_\": 31.0,\n        \"COLUMBUS_I\": 34.0,\n        \"POLYID\": 30.0,\n        \"NEIG\": 34,\n        \"HOVAL\": 22.5,\n        \"INC\": 13.906,\n        \"CRIME\": 68.892044,\n        \"OPEN\": 1.63878,\n        \"PLUMB\": 15.600624,\n        \"DISCBD\": 0.37,\n        \"X\": 38.290001,\n        \"Y\": 30.35,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1034.0,\n        \"ORIG_FID\": 29\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.688719493192551, 11.938718355531325]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 31,\n        \"AREA\": 0.117409,\n        \"PERIMETER\": 1.716047,\n        \"COLUMBUS_\": 32.0,\n        \"COLUMBUS_I\": 45.0,\n        \"POLYID\": 31.0,\n        \"NEIG\": 45,\n        \"HOVAL\": 31.799999,\n        \"INC\": 16.940001,\n        \"CRIME\": 17.677214,\n        \"OPEN\": 3.936443,\n        \"PLUMB\": 0.85389,\n        \"DISCBD\": 3.78,\n        \"X\": 27.940001,\n        \"Y\": 29.85,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1045.0,\n        \"ORIG_FID\": 30\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [6.892482325993742, 11.914150957988443]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 32,\n        \"AREA\": 0.18558,\n        \"PERIMETER\": 2.108951,\n        \"COLUMBUS_\": 33.0,\n        \"COLUMBUS_I\": 13.0,\n        \"POLYID\": 32.0,\n        \"NEIG\": 13,\n        \"HOVAL\": 40.299999,\n        \"INC\": 18.941999,\n        \"CRIME\": 19.145592,\n        \"OPEN\": 2.221022,\n        \"PLUMB\": 0.255102,\n        \"DISCBD\": 4.76,\n        \"X\": 50.110001,\n        \"Y\": 29.91,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1013.0,\n        \"ORIG_FID\": 31\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10.76378352110245, 11.844431047650394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 33,\n        \"AREA\": 0.087472,\n        \"PERIMETER\": 1.507971,\n        \"COLUMBUS_\": 34.0,\n        \"COLUMBUS_I\": 22.0,\n        \"POLYID\": 33.0,\n        \"NEIG\": 22,\n        \"HOVAL\": 23.6,\n        \"INC\": 9.918,\n        \"CRIME\": 41.968163,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 1.023891,\n        \"DISCBD\": 2.28,\n        \"X\": 44.099998,\n        \"Y\": 30.4,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1022.0,\n        \"ORIG_FID\": 32\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.765288352966309, 11.935583349396865]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 34,\n        \"AREA\": 0.226594,\n        \"PERIMETER\": 2.519132,\n        \"COLUMBUS_\": 35.0,\n        \"COLUMBUS_I\": 44.0,\n        \"POLYID\": 34.0,\n        \"NEIG\": 44,\n        \"HOVAL\": 28.450001,\n        \"INC\": 14.948,\n        \"CRIME\": 23.974028,\n        \"OPEN\": 3.029087,\n        \"PLUMB\": 0.386803,\n        \"DISCBD\": 3.06,\n        \"X\": 30.32,\n        \"Y\": 28.26,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1044.0,\n        \"ORIG_FID\": 33\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.15854012966156, 11.692810153517712]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 35,\n        \"AREA\": 0.175453,\n        \"PERIMETER\": 1.974937,\n        \"COLUMBUS_\": 36.0,\n        \"COLUMBUS_I\": 23.0,\n        \"POLYID\": 35.0,\n        \"NEIG\": 23,\n        \"HOVAL\": 27.0,\n        \"INC\": 12.814,\n        \"CRIME\": 39.175053,\n        \"OPEN\": 4.220401,\n        \"PLUMB\": 0.633675,\n        \"DISCBD\": 2.37,\n        \"X\": 43.700001,\n        \"Y\": 29.18,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1023.0,\n        \"ORIG_FID\": 34\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.668248963690392, 11.692541207168869]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 36,\n        \"AREA\": 0.17813,\n        \"PERIMETER\": 1.790058,\n        \"COLUMBUS_\": 37.0,\n        \"COLUMBUS_I\": 46.0,\n        \"POLYID\": 36.0,\n        \"NEIG\": 46,\n        \"HOVAL\": 36.299999,\n        \"INC\": 18.739,\n        \"CRIME\": 14.305556,\n        \"OPEN\": 6.773331,\n        \"PLUMB\": 0.332349,\n        \"DISCBD\": 4.23,\n        \"X\": 27.27,\n        \"Y\": 28.209999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1046.0,\n        \"ORIG_FID\": 35\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [6.728837547719331, 11.634364976122034]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 37,\n        \"AREA\": 0.121154,\n        \"PERIMETER\": 1.402252,\n        \"COLUMBUS_\": 38.0,\n        \"COLUMBUS_I\": 30.0,\n        \"POLYID\": 37.0,\n        \"NEIG\": 30,\n        \"HOVAL\": 43.299999,\n        \"INC\": 17.017,\n        \"CRIME\": 42.445076,\n        \"OPEN\": 4.839273,\n        \"PLUMB\": 1.230329,\n        \"DISCBD\": 1.08,\n        \"X\": 38.32,\n        \"Y\": 28.82,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1030.0,\n        \"ORIG_FID\": 36\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.912362855719715, 11.630310543083501]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 38,\n        \"AREA\": 0.053881,\n        \"PERIMETER\": 0.934509,\n        \"COLUMBUS_\": 39.0,\n        \"COLUMBUS_I\": 24.0,\n        \"POLYID\": 38.0,\n        \"NEIG\": 24,\n        \"HOVAL\": 22.700001,\n        \"INC\": 11.107,\n        \"CRIME\": 53.710938,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 0.8,\n        \"DISCBD\": 1.58,\n        \"X\": 41.040001,\n        \"Y\": 28.780001,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1024.0,\n        \"ORIG_FID\": 37\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.210527335403754, 11.659838850006437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 39,\n        \"AREA\": 0.174823,\n        \"PERIMETER\": 2.335402,\n        \"COLUMBUS_\": 40.0,\n        \"COLUMBUS_I\": 47.0,\n        \"POLYID\": 39.0,\n        \"NEIG\": 47,\n        \"HOVAL\": 39.599998,\n        \"INC\": 18.476999,\n        \"CRIME\": 19.100863,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 0.314663,\n        \"DISCBD\": 5.53,\n        \"X\": 24.25,\n        \"Y\": 26.690001,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1047.0,\n        \"ORIG_FID\": 38\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [6.221942933898137, 11.402513578924118]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 40,\n        \"AREA\": 0.302908,\n        \"PERIMETER\": 2.285487,\n        \"COLUMBUS_\": 41.0,\n        \"COLUMBUS_I\": 16.0,\n        \"POLYID\": 40.0,\n        \"NEIG\": 16,\n        \"HOVAL\": 61.950001,\n        \"INC\": 29.833,\n        \"CRIME\": 16.241299,\n        \"OPEN\": 6.45131,\n        \"PLUMB\": 0.132743,\n        \"DISCBD\": 4.4,\n        \"X\": 48.439999,\n        \"Y\": 27.93,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1016.0,\n        \"ORIG_FID\": 39\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10.492492572016712, 11.507197282569432]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 41,\n        \"AREA\": 0.137024,\n        \"PERIMETER\": 1.525097,\n        \"COLUMBUS_\": 42.0,\n        \"COLUMBUS_I\": 14.0,\n        \"POLYID\": 41.0,\n        \"NEIG\": 14,\n        \"HOVAL\": 42.099998,\n        \"INC\": 22.207001,\n        \"CRIME\": 18.905146,\n        \"OPEN\": 0.293317,\n        \"PLUMB\": 0.247036,\n        \"DISCBD\": 5.33,\n        \"X\": 51.240002,\n        \"Y\": 27.799999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1014.0,\n        \"ORIG_FID\": 40\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10.953587436376452, 11.479245868637376]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 42,\n        \"AREA\": 0.266541,\n        \"PERIMETER\": 2.176543,\n        \"COLUMBUS_\": 43.0,\n        \"COLUMBUS_I\": 49.0,\n        \"POLYID\": 42.0,\n        \"NEIG\": 49,\n        \"HOVAL\": 44.333,\n        \"INC\": 25.872999,\n        \"CRIME\": 16.49189,\n        \"OPEN\": 1.792993,\n        \"PLUMB\": 0.134439,\n        \"DISCBD\": 3.87,\n        \"X\": 29.02,\n        \"Y\": 26.58,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1049.0,\n        \"ORIG_FID\": 41\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.110050905390898, 11.295438892865233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 43,\n        \"AREA\": 0.060241,\n        \"PERIMETER\": 0.967793,\n        \"COLUMBUS_\": 44.0,\n        \"COLUMBUS_I\": 29.0,\n        \"POLYID\": 43.0,\n        \"NEIG\": 29,\n        \"HOVAL\": 25.700001,\n        \"INC\": 13.38,\n        \"CRIME\": 36.663612,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 0.589226,\n        \"DISCBD\": 1.95,\n        \"X\": 41.09,\n        \"Y\": 27.49,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1029.0,\n        \"ORIG_FID\": 42\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.214330280393483, 11.432771789368283]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 44,\n        \"AREA\": 0.173337,\n        \"PERIMETER\": 1.868044,\n        \"COLUMBUS_\": 45.0,\n        \"COLUMBUS_I\": 25.0,\n        \"POLYID\": 44.0,\n        \"NEIG\": 25,\n        \"HOVAL\": 33.5,\n        \"INC\": 16.961,\n        \"CRIME\": 25.962263,\n        \"OPEN\": 1.463993,\n        \"PLUMB\": 0.329761,\n        \"DISCBD\": 2.67,\n        \"X\": 43.23,\n        \"Y\": 27.309999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1025.0,\n        \"ORIG_FID\": 43\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.641904437882928, 11.391036212262494]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 45,\n        \"AREA\": 0.256431,\n        \"PERIMETER\": 2.193039,\n        \"COLUMBUS_\": 46.0,\n        \"COLUMBUS_I\": 28.0,\n        \"POLYID\": 45.0,\n        \"NEIG\": 28,\n        \"HOVAL\": 27.733,\n        \"INC\": 14.135,\n        \"CRIME\": 29.028488,\n        \"OPEN\": 1.006118,\n        \"PLUMB\": 2.3912,\n        \"DISCBD\": 2.13,\n        \"X\": 39.32,\n        \"Y\": 25.85,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1028.0,\n        \"ORIG_FID\": 44\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.910340473827834, 11.148639078569651]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 46,\n        \"AREA\": 0.124728,\n        \"PERIMETER\": 1.841029,\n        \"COLUMBUS_\": 47.0,\n        \"COLUMBUS_I\": 48.0,\n        \"POLYID\": 46.0,\n        \"NEIG\": 48,\n        \"HOVAL\": 76.099998,\n        \"INC\": 18.323999,\n        \"CRIME\": 16.530533,\n        \"OPEN\": 9.683953,\n        \"PLUMB\": 0.424628,\n        \"DISCBD\": 5.27,\n        \"X\": 25.469999,\n        \"Y\": 25.709999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1048.0,\n        \"ORIG_FID\": 45\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [6.423385031583335, 11.219238093398321]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 47,\n        \"AREA\": 0.245249,\n        \"PERIMETER\": 2.079986,\n        \"COLUMBUS_\": 48.0,\n        \"COLUMBUS_I\": 15.0,\n        \"POLYID\": 47.0,\n        \"NEIG\": 15,\n        \"HOVAL\": 42.5,\n        \"INC\": 18.950001,\n        \"CRIME\": 27.822861,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 0.268817,\n        \"DISCBD\": 5.57,\n        \"X\": 50.889999,\n        \"Y\": 25.24,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1015.0,\n        \"ORIG_FID\": 46\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10.935302271773978, 11.010030663664558]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 48,\n        \"AREA\": 0.069762,\n        \"PERIMETER\": 1.102032,\n        \"COLUMBUS_\": 49.0,\n        \"COLUMBUS_I\": 27.0,\n        \"POLYID\": 48.0,\n        \"NEIG\": 27,\n        \"HOVAL\": 26.799999,\n        \"INC\": 11.813,\n        \"CRIME\": 26.645266,\n        \"OPEN\": 4.884389,\n        \"PLUMB\": 1.034807,\n        \"DISCBD\": 2.33,\n        \"X\": 41.209999,\n        \"Y\": 25.9,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1027.0,\n        \"ORIG_FID\": 47\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.251957402833794, 11.181253873699426]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 49,\n        \"AREA\": 0.205964,\n        \"PERIMETER\": 2.199169,\n        \"COLUMBUS_\": 50.0,\n        \"COLUMBUS_I\": 26.0,\n        \"POLYID\": 49.0,\n        \"NEIG\": 26,\n        \"HOVAL\": 35.799999,\n        \"INC\": 18.796,\n        \"CRIME\": 22.541491,\n        \"OPEN\": 0.259826,\n        \"PLUMB\": 0.901442,\n        \"DISCBD\": 3.03,\n        \"X\": 42.669998,\n        \"Y\": 24.959999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1026.0,\n        \"ORIG_FID\": 48\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.610312938690186, 11.030196383904508]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-distance-weight/test.ts",
    "content": "import { point } from \"@turf/helpers\";\n\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { distanceWeight, pNormDistance } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"pNormDistance function\", (t) => {\n  t.equal(pNormDistance(point([2, 0]), point([0, 0]), 2), 2, \"2-norm is ok\");\n  t.equal(pNormDistance(point([1, 1]), point([0, 0]), 1), 2, \"1-norm is ok\");\n  t.end();\n});\n\ntest(\"turf-distance-weight\", (t) => {\n  const columbusPath = path.join(__dirname, \"test\", \"in\", \"point.json\");\n  const columbusJson = loadJsonFileSync(columbusPath);\n\n  let result = distanceWeight(columbusJson, {\n    threshold: 1,\n    binary: false,\n    p: 1,\n    alpha: 1,\n    standardization: false,\n  });\n  t.equal(result[0][1], 0.8320121090670778, \"base arguments\");\n\n  // test threshold\n  result = distanceWeight(columbusJson, {\n    threshold: 2,\n    binary: false,\n    p: 1,\n    alpha: 1,\n  });\n  t.equal(result[0][1], 0.8320121090670778, \"change threshold\");\n\n  // test binary\n  result = distanceWeight(columbusJson, {\n    threshold: 1,\n    binary: true,\n    p: 1,\n    alpha: 1,\n  });\n  t.equal(result[0][1], 1, \"change binary\");\n\n  // test p\n  result = distanceWeight(columbusJson, {\n    threshold: 1,\n    binary: false,\n    p: 2,\n    alpha: 1,\n  });\n  t.equal(result[0][1], 0.5987182558007202, \"change p\");\n\n  // test alpha\n  result = distanceWeight(columbusJson, {\n    threshold: 1,\n    binary: false,\n    p: 1,\n    alpha: -1,\n  });\n  t.equal(result[0][1], 1.201905584188293, \"change alpha\");\n\n  result = distanceWeight(columbusJson, {\n    threshold: 1,\n    binary: false,\n    p: 1,\n    alpha: 1,\n    standardization: true,\n  });\n  t.equal(result[0][1], 0.5311565480348293, \"standardization 1\");\n\n  result = distanceWeight(columbusJson, {\n    threshold: 1,\n    binary: true,\n    p: 1,\n    alpha: 1,\n    standardization: true,\n  });\n  t.equal(result[0][1], 0.5, \"standardization 2\");\n\n  // test default\n  result = distanceWeight(columbusJson);\n  t.equal(result[0][1], 1.6702346893742355, \"default arguments\");\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-distance-weight/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-ellipse/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-ellipse/README.md",
    "content": "# @turf/ellipse\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## ellipse\n\nTakes a [Point][1] and calculates the ellipse polygon given two semi-axes expressed in variable units and steps for precision.\n\n### Parameters\n\n*   `center` **[Coord][2]** center point\n*   `xSemiAxis` **[number][3]** semi (major) axis of the ellipse along the x-axis\n*   `ySemiAxis` **[number][3]** semi (minor) axis of the ellipse along the y-axis\n*   `options` **[Object][4]** Optional parameters (optional, default `{}`)\n\n    *   `options.angle` **[number][3]** angle of rotation in decimal degrees, positive clockwise (optional, default `0`)\n    *   `options.pivot` **[Coord][2]** point around which any rotation will be performed (optional, default `center`)\n    *   `options.steps` **[number][3]** number of steps (optional, default `64`)\n    *   `options.units` **Units** unit of measurement for axes. Supports all valid Turf [Units][5] (optional, default `'kilometers'`)\n    *   `options.properties` **[Object][4]** properties (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar center = [-75, 40];\nvar xSemiAxis = 5;\nvar ySemiAxis = 2;\nvar ellipse = turf.ellipse(center, xSemiAxis, ySemiAxis);\n\n//addToMap\nvar addToMap = [turf.point(center), ellipse]\n```\n\nReturns **[Feature][6]<[Polygon][7]>** ellipse polygon\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[5]: https://turfjs.org/docs/api/types/Units\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/ellipse\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-ellipse/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { ellipse } from \"./index.js\";\n\n/**\n * Benchmark Results\n *\n * turf-ellipse - 8 steps x 1,691,641 ops/sec ±1.88% (84 runs sampled)\n * turf-ellipse - 64 steps x 179,814 ops/sec ±2.23% (85 runs sampled)\n * turf-ellipse - 256 steps x 45,268 ops/sec ±2.33% (87 runs sampled)\n *\n */\nconst suite = new Benchmark.Suite(\"turf-ellipse\");\nconst center = [-73.9975, 40.730833];\nconst xSemiAxis = 50;\nconst ySemiAxis = 10;\n\nsuite\n  .add(\"turf-ellipse - 8 steps\", () =>\n    ellipse(center, xSemiAxis, ySemiAxis, { steps: 8 })\n  )\n  .add(\"turf-ellipse - 64 steps\", () =>\n    ellipse(center, xSemiAxis, ySemiAxis, { steps: 64 })\n  )\n  .add(\"turf-ellipse - 256 steps\", () =>\n    ellipse(center, xSemiAxis, ySemiAxis, { steps: 256 })\n  )\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-ellipse/index.ts",
    "content": "import {\n  polygon,\n  isObject,\n  isNumber,\n  Coord,\n  Units,\n  point,\n  radiansToDegrees,\n} from \"@turf/helpers\";\nimport { destination } from \"@turf/destination\";\nimport { transformRotate } from \"@turf/transform-rotate\";\nimport { getCoord } from \"@turf/invariant\";\nimport { GeoJsonProperties, Feature, Polygon, Position } from \"geojson\";\n\n/**\n * Takes a {@link Point} and calculates the ellipse polygon given two semi-axes expressed in variable units and steps for precision.\n *\n * @param {Coord} center center point\n * @param {number} xSemiAxis semi (major) axis of the ellipse along the x-axis\n * @param {number} ySemiAxis semi (minor) axis of the ellipse along the y-axis\n * @param {Object} [options={}] Optional parameters\n * @param {number} [options.angle=0] angle of rotation in decimal degrees, positive clockwise\n * @param {Coord} [options.pivot=center] point around which any rotation will be performed\n * @param {number} [options.steps=64] number of steps\n * @param {Units} [options.units='kilometers'] unit of measurement for axes. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}\n * @param {Object} [options.properties={}] properties\n * @returns {Feature<Polygon>} ellipse polygon\n * @example\n * var center = [-75, 40];\n * var xSemiAxis = 5;\n * var ySemiAxis = 2;\n * var ellipse = turf.ellipse(center, xSemiAxis, ySemiAxis);\n *\n * //addToMap\n * var addToMap = [turf.point(center), ellipse]\n */\nfunction ellipse(\n  center: Coord,\n  xSemiAxis: number,\n  ySemiAxis: number,\n  options: {\n    steps?: number;\n    units?: Units;\n    angle?: number;\n    pivot?: Coord;\n    properties?: GeoJsonProperties;\n  }\n): Feature<Polygon> {\n  // Optional params\n  options = options || {};\n  let steps = options.steps || 64;\n  const units = options.units || \"kilometers\";\n  let angle = options.angle || 0;\n  const pivot = options.pivot || center;\n  const properties = options.properties || {};\n  // validation\n  if (!center) throw new Error(\"center is required\");\n  if (!xSemiAxis) throw new Error(\"xSemiAxis is required\");\n  if (!ySemiAxis) throw new Error(\"ySemiAxis is required\");\n  if (!isObject(options)) throw new Error(\"options must be an object\");\n  if (!isNumber(steps)) throw new Error(\"steps must be a number\");\n  if (!isNumber(angle)) throw new Error(\"angle must be a number\");\n\n  const centerCoords = getCoord(\n    transformRotate(point(getCoord(center)), angle, { pivot })\n  );\n\n  angle = -90 + angle;\n\n  // Divide steps by 4 for one quadrant\n  steps = Math.ceil(steps / 4);\n\n  let quadrantParameters = [];\n  let parameters = [];\n\n  const a = xSemiAxis;\n  const b = ySemiAxis;\n\n  // Gradient x intersect\n  const c = b;\n\n  // Gradient of line\n  const m = (a - b) / (Math.PI / 2);\n\n  // Area under line\n  const A = ((a + b) * Math.PI) / 4;\n\n  // Weighting function\n  const v = 0.5;\n\n  const k = steps;\n\n  let w = 0;\n  let x = 0;\n\n  for (let i = 0; i < steps; i++) {\n    x += w;\n\n    if (m === 0) {\n      // It's a circle, so use simplified c*w - A/k == 0\n      w = A / k / c;\n    } else {\n      // Otherwise, use full (v*m)*w^2 + (m*x+c)*w - A/k == 0\n      // Solve as quadratic ax^2 + bx + c = 0\n      w =\n        (-(m * x + c) +\n          Math.sqrt(Math.pow(m * x + c, 2) - 4 * (v * m) * -(A / k))) /\n        (2 * (v * m));\n    }\n    if (x != 0) {\n      // easier to add it later to avoid having twice the same point\n      quadrantParameters.push(x);\n    }\n  }\n\n  //NE\n  parameters.push(0);\n  for (let i = 0; i < quadrantParameters.length; i++) {\n    parameters.push(quadrantParameters[i]);\n  }\n  //NW\n  parameters.push(Math.PI / 2);\n  for (let i = 0; i < quadrantParameters.length; i++) {\n    parameters.push(\n      Math.PI - quadrantParameters[quadrantParameters.length - i - 1]\n    );\n  }\n  //SW\n  parameters.push(Math.PI);\n  for (let i = 0; i < quadrantParameters.length; i++) {\n    parameters.push(Math.PI + quadrantParameters[i]);\n  }\n  //SE\n  parameters.push((3 * Math.PI) / 2);\n  for (let i = 0; i < quadrantParameters.length; i++) {\n    parameters.push(\n      2 * Math.PI - quadrantParameters[quadrantParameters.length - i - 1]\n    );\n  }\n  parameters.push(0);\n\n  // We can now construct the ellipse\n  const coords: Position[] = [];\n  for (const param of parameters) {\n    const theta = Math.atan2(b * Math.sin(param), a * Math.cos(param));\n    const r = Math.sqrt(\n      (Math.pow(a, 2) * Math.pow(b, 2)) /\n        (Math.pow(a * Math.sin(theta), 2) + Math.pow(b * Math.cos(theta), 2))\n    );\n    coords.push(\n      destination(centerCoords, r, angle + radiansToDegrees(theta), {\n        units: units,\n      }).geometry.coordinates\n    );\n  }\n  return polygon([coords], properties);\n}\n\nexport { ellipse };\nexport default ellipse;\n"
  },
  {
    "path": "packages/turf-ellipse/package.json",
    "content": "{\n  \"name\": \"@turf/ellipse\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a Point and calculates the ellipse polygon given two semi-axes expressed in variable units and steps for precision.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Moacir P. de Sá Pereira <@muziejus>\",\n    \"Pavel Rozvora <@prozvora>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"ellipse\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@placemarkio/check-geojson\": \"^0.1.12\",\n    \"@turf/area\": \"workspace:*\",\n    \"@turf/bbox-polygon\": \"workspace:*\",\n    \"@turf/circle\": \"workspace:*\",\n    \"@turf/intersect\": \"workspace:*\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/destination\": \"workspace:*\",\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/transform-rotate\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test/in/anti-meridian-degrees.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"units\": \"degrees\",\n    \"xSemiAxis\": 50,\n    \"ySemiAxis\": 10\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-180, -17]\n  }\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test/in/anti-meridian.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"xSemiAxis\": 50,\n    \"ySemiAxis\": 10\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-180, -17]\n  }\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test/in/northern-latitudes-degrees.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"units\": \"degrees\",\n    \"xSemiAxis\": 5,\n    \"ySemiAxis\": 1\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-94, 74]\n  }\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test/in/northern-latitudes.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"xSemiAxis\": 50,\n    \"ySemiAxis\": 10,\n    \"steps\": 128\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-94, 74]\n  }\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test/in/rotation-degrees.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"units\": \"degrees\",\n    \"xSemiAxis\": 0.125,\n    \"ySemiAxis\": 0.025,\n    \"angle\": 30\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-73.9975, 40.730833]\n  }\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test/in/rotation.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"xSemiAxis\": 5,\n    \"ySemiAxis\": 1,\n    \"angle\": 30\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-73.9975, 40.730833]\n  }\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test/in/simple-degrees.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"units\": \"degrees\",\n    \"xSemiAxis\": 5,\n    \"ySemiAxis\": 1\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-73.9975, 40.730833]\n  }\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test/in/simple-with-elevation.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"xSemiAxis\": 5,\n    \"ySemiAxis\": 1\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-73.9975, 40.730833, 120]\n  }\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test/in/simple.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"xSemiAxis\": 5,\n    \"ySemiAxis\": 1\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-73.9975, 40.730833]\n  }\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test/out/anti-meridian-degrees.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"units\": \"degrees\",\n        \"xSemiAxis\": 50,\n        \"ySemiAxis\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180, -17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, 33],\n            [-185.122556, 32.759336],\n            [-190.154864, 32.043494],\n            [-195.015087, 30.870189],\n            [-199.636266, 29.266686],\n            [-203.969686, 27.267013],\n            [-207.985062, 24.909007],\n            [-211.66833, 22.231692],\n            [-215.01814, 19.273248],\n            [-218.042031, 16.069658],\n            [-220.752936, 12.653961],\n            [-223.166311, 9.055964],\n            [-225.297939, 5.302282],\n            [-227.162325, 1.416582],\n            [-228.771529, -2.580054],\n            [-230.13428, -6.668708],\n            [-231.255224, -10.832176],\n            [-232.134166, -15.054488],\n            [-232.765193, -19.320412],\n            [-233.135518, -23.6149],\n            [-233.223906, -27.92245],\n            [-232.998485, -32.22632],\n            [-232.413665, -36.507505],\n            [-231.405877, -40.743336],\n            [-229.887782, -44.905495],\n            [-227.740782, -48.957147],\n            [-224.806435, -52.848766],\n            [-220.879642, -56.512237],\n            [-215.712322, -59.853159],\n            [-209.048076, -62.742919],\n            [-200.722424, -65.016396],\n            [-190.848503, -66.488112],\n            [-180, -67],\n            [-169.151497, -66.488112],\n            [-159.277576, -65.016396],\n            [-150.951924, -62.742919],\n            [-144.287678, -59.853159],\n            [-139.120358, -56.512237],\n            [-135.193565, -52.848766],\n            [-132.259218, -48.957147],\n            [-130.112218, -44.905495],\n            [-128.594123, -40.743336],\n            [-127.586335, -36.507505],\n            [-127.001515, -32.22632],\n            [-126.776094, -27.92245],\n            [-126.864482, -23.6149],\n            [-127.234807, -19.320412],\n            [-127.865834, -15.054488],\n            [-128.744776, -10.832176],\n            [-129.86572, -6.668708],\n            [-131.228471, -2.580054],\n            [-132.837675, 1.416582],\n            [-134.702061, 5.302282],\n            [-136.833689, 9.055964],\n            [-139.247064, 12.653961],\n            [-141.957969, 16.069658],\n            [-144.98186, 19.273248],\n            [-148.33167, 22.231692],\n            [-152.014938, 24.909007],\n            [-156.030314, 27.267013],\n            [-160.363734, 29.266686],\n            [-164.984913, 30.870189],\n            [-169.845136, 32.043494],\n            [-174.877444, 32.759336],\n            [-180, 33]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-231.255224, -10.832176],\n            [-229.537115, -9.171208],\n            [-226.785333, -8.318289],\n            [-223.616357, -7.809288],\n            [-220.237616, -7.490076],\n            [-216.750783, -7.287067],\n            [-213.215132, -7.158857],\n            [-209.668909, -7.079876],\n            [-206.138464, -7.033411],\n            [-202.642783, -7.008151],\n            [-199.195982, -6.996301],\n            [-195.808785, -6.992459],\n            [-192.489461, -6.992913],\n            [-189.24444, -6.99517],\n            [-186.078735, -6.997636],\n            [-182.996251, -6.999388],\n            [-180, -7],\n            [-177.003749, -6.999388],\n            [-173.921265, -6.997636],\n            [-170.75556, -6.99517],\n            [-167.510539, -6.992913],\n            [-164.191215, -6.992459],\n            [-160.804018, -6.996301],\n            [-157.357217, -7.008151],\n            [-153.861536, -7.033411],\n            [-150.331091, -7.079876],\n            [-146.784868, -7.158857],\n            [-143.249217, -7.287067],\n            [-139.762384, -7.490076],\n            [-136.383643, -7.809288],\n            [-133.214667, -8.318289],\n            [-130.462885, -9.171208],\n            [-128.744776, -10.832176],\n            [-129.549848, -13.068509],\n            [-131.704315, -15.006667],\n            [-134.457899, -16.764622],\n            [-137.558403, -18.370546],\n            [-140.881596, -19.832788],\n            [-144.353404, -21.153602],\n            [-147.923695, -22.333485],\n            [-151.555203, -23.372894],\n            [-155.218208, -24.273002],\n            [-158.887798, -25.036029],\n            [-162.542409, -25.665364],\n            [-166.163061, -26.16555],\n            [-169.732965, -26.542201],\n            [-173.237347, -26.80186],\n            [-176.663352, -26.951832],\n            [-180, -27],\n            [-183.336648, -26.951832],\n            [-186.762653, -26.80186],\n            [-190.267035, -26.542201],\n            [-193.836939, -26.16555],\n            [-197.457591, -25.665364],\n            [-201.112202, -25.036029],\n            [-204.781792, -24.273002],\n            [-208.444797, -23.372894],\n            [-212.076305, -22.333485],\n            [-215.646596, -21.153602],\n            [-219.118404, -19.832788],\n            [-222.441597, -18.370546],\n            [-225.542101, -16.764622],\n            [-228.295685, -15.006667],\n            [-230.450152, -13.068509],\n            [-231.255224, -10.832176]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, 33],\n            [-177.649663, 31.703957],\n            [-176.075902, 29.197049],\n            [-174.899856, 26.193732],\n            [-173.977415, 22.936144],\n            [-173.23134, 19.54281],\n            [-172.614036, 16.082418],\n            [-172.093927, 12.598902],\n            [-171.649083, 9.122233],\n            [-171.263795, 5.673775],\n            [-170.926553, 2.269246],\n            [-170.628782, -1.079531],\n            [-170.364019, -4.363529],\n            [-170.127356, -7.575789],\n            [-169.915059, -10.710919],\n            [-169.724292, -13.764747],\n            [-169.55293, -16.734064],\n            [-169.394938, -19.704191],\n            [-169.246345, -22.760568],\n            [-169.109071, -25.900205],\n            [-168.985952, -29.119223],\n            [-168.881153, -32.41262],\n            [-168.800816, -35.773947],\n            [-168.754065, -39.194852],\n            [-168.754629, -42.664405],\n            [-168.823498, -46.168062],\n            [-168.993438, -49.685982],\n            [-169.316859, -53.190124],\n            [-169.880034, -56.638822],\n            [-170.829705, -59.965537],\n            [-172.425015, -63.051999],\n            [-175.146105, -65.648285],\n            [-180, -67],\n            [-184.853895, -65.648285],\n            [-187.574985, -63.051999],\n            [-189.170295, -59.965537],\n            [-190.119966, -56.638822],\n            [-190.683141, -53.190124],\n            [-191.006562, -49.685982],\n            [-191.176502, -46.168062],\n            [-191.245371, -42.664405],\n            [-191.245935, -39.194852],\n            [-191.199184, -35.773947],\n            [-191.118847, -32.41262],\n            [-191.014048, -29.119223],\n            [-190.890929, -25.900205],\n            [-190.753655, -22.760568],\n            [-190.605062, -19.704191],\n            [-190.44707, -16.734064],\n            [-190.275708, -13.764747],\n            [-190.084941, -10.710919],\n            [-189.872644, -7.575789],\n            [-189.635981, -4.363529],\n            [-189.371218, -1.079531],\n            [-189.073447, 2.269246],\n            [-188.736205, 5.673775],\n            [-188.350917, 9.122233],\n            [-187.906073, 12.598902],\n            [-187.385964, 16.082418],\n            [-186.76866, 19.54281],\n            [-186.022585, 22.936144],\n            [-185.100144, 26.193732],\n            [-183.924098, 29.197049],\n            [-182.350337, 31.703957],\n            [-180, 33]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test/out/anti-meridian.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"xSemiAxis\": 50,\n        \"ySemiAxis\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180, -17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, -16.55034],\n            [-180.045979, -16.5525],\n            [-180.091519, -16.55896],\n            [-180.136183, -16.569657],\n            [-180.179545, -16.58449],\n            [-180.221189, -16.603316],\n            [-180.260716, -16.625956],\n            [-180.297747, -16.652193],\n            [-180.331926, -16.681775],\n            [-180.362924, -16.714418],\n            [-180.390443, -16.749812],\n            [-180.414217, -16.787614],\n            [-180.434016, -16.827464],\n            [-180.449646, -16.868978],\n            [-180.460955, -16.911758],\n            [-180.467831, -16.955392],\n            [-180.470205, -16.999461],\n            [-180.468051, -17.04354],\n            [-180.461387, -17.087204],\n            [-180.450273, -17.130034],\n            [-180.434813, -17.171615],\n            [-180.415155, -17.211547],\n            [-180.391486, -17.249443],\n            [-180.364031, -17.284937],\n            [-180.333054, -17.317686],\n            [-180.298853, -17.347373],\n            [-180.261758, -17.373711],\n            [-180.222127, -17.396444],\n            [-180.180343, -17.415352],\n            [-180.13681, -17.430252],\n            [-180.091951, -17.440999],\n            [-180.046199, -17.44749],\n            [-180, -17.44966],\n            [-179.953801, -17.44749],\n            [-179.908049, -17.440999],\n            [-179.86319, -17.430252],\n            [-179.819657, -17.415352],\n            [-179.777873, -17.396444],\n            [-179.738242, -17.373711],\n            [-179.701147, -17.347373],\n            [-179.666946, -17.317686],\n            [-179.635969, -17.284937],\n            [-179.608514, -17.249443],\n            [-179.584845, -17.211547],\n            [-179.565187, -17.171615],\n            [-179.549727, -17.130034],\n            [-179.538613, -17.087204],\n            [-179.531949, -17.04354],\n            [-179.529795, -16.999461],\n            [-179.532169, -16.955392],\n            [-179.539045, -16.911758],\n            [-179.550354, -16.868978],\n            [-179.565984, -16.827464],\n            [-179.585783, -16.787614],\n            [-179.609557, -16.749812],\n            [-179.637076, -16.714418],\n            [-179.668074, -16.681775],\n            [-179.702253, -16.652193],\n            [-179.739284, -16.625956],\n            [-179.778811, -16.603316],\n            [-179.820455, -16.58449],\n            [-179.863817, -16.569657],\n            [-179.908481, -16.55896],\n            [-179.954021, -16.5525],\n            [-180, -16.55034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.470205, -16.999461],\n            [-180.457964, -16.979142],\n            [-180.434333, -16.965124],\n            [-180.406011, -16.954269],\n            [-180.375269, -16.945497],\n            [-180.343224, -16.938267],\n            [-180.310525, -16.932253],\n            [-180.277591, -16.927239],\n            [-180.244707, -16.923072],\n            [-180.21208, -16.919634],\n            [-180.17986, -16.916835],\n            [-180.148164, -16.9146],\n            [-180.117078, -16.91287],\n            [-180.086671, -16.911592],\n            [-180.056997, -16.910724],\n            [-180.028096, -16.910227],\n            [-180, -16.910068],\n            [-179.971904, -16.910227],\n            [-179.943003, -16.910724],\n            [-179.913329, -16.911592],\n            [-179.882922, -16.91287],\n            [-179.851836, -16.9146],\n            [-179.82014, -16.916835],\n            [-179.78792, -16.919634],\n            [-179.755293, -16.923072],\n            [-179.722409, -16.927239],\n            [-179.689475, -16.932253],\n            [-179.656776, -16.938267],\n            [-179.624731, -16.945497],\n            [-179.593989, -16.954269],\n            [-179.565667, -16.965124],\n            [-179.542036, -16.979142],\n            [-179.529795, -16.999461],\n            [-179.541936, -17.019834],\n            [-179.565507, -17.033955],\n            [-179.593793, -17.044926],\n            [-179.624514, -17.053815],\n            [-179.656551, -17.061158],\n            [-179.689251, -17.067276],\n            [-179.722194, -17.072384],\n            [-179.755092, -17.076635],\n            [-179.787739, -17.080146],\n            [-179.81998, -17.083007],\n            [-179.851701, -17.085293],\n            [-179.882813, -17.087063],\n            [-179.913247, -17.088371],\n            [-179.942949, -17.08926],\n            [-179.971877, -17.089769],\n            [-180, -17.089932],\n            [-180.028123, -17.089769],\n            [-180.057051, -17.08926],\n            [-180.086753, -17.088371],\n            [-180.117187, -17.087063],\n            [-180.148299, -17.085293],\n            [-180.18002, -17.083007],\n            [-180.212261, -17.080146],\n            [-180.244908, -17.076635],\n            [-180.277806, -17.072384],\n            [-180.310749, -17.067276],\n            [-180.343449, -17.061158],\n            [-180.375486, -17.053815],\n            [-180.406207, -17.044926],\n            [-180.434493, -17.033955],\n            [-180.458064, -17.019834],\n            [-180.470205, -16.999461]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, -16.55034],\n            [-179.978774, -16.561997],\n            [-179.964091, -16.584565],\n            [-179.952697, -16.61163],\n            [-179.943474, -16.641017],\n            [-179.935858, -16.671656],\n            [-179.929514, -16.702924],\n            [-179.924218, -16.734422],\n            [-179.91981, -16.765874],\n            [-179.916167, -16.797083],\n            [-179.913197, -16.827904],\n            [-179.910821, -16.858226],\n            [-179.908978, -16.887966],\n            [-179.907613, -16.917056],\n            [-179.90668, -16.945447],\n            [-179.90614, -16.973098],\n            [-179.905959, -16.999978],\n            [-179.906114, -17.026859],\n            [-179.906626, -17.054511],\n            [-179.907531, -17.082902],\n            [-179.908869, -17.111994],\n            [-179.910686, -17.141735],\n            [-179.913037, -17.172059],\n            [-179.915986, -17.202882],\n            [-179.919609, -17.234095],\n            [-179.924003, -17.26555],\n            [-179.92929, -17.297052],\n            [-179.935633, -17.328324],\n            [-179.943257, -17.358968],\n            [-179.952501, -17.388359],\n            [-179.963931, -17.415429],\n            [-179.978674, -17.438],\n            [-180, -17.44966],\n            [-180.021326, -17.438],\n            [-180.036069, -17.415429],\n            [-180.047499, -17.388359],\n            [-180.056743, -17.358968],\n            [-180.064367, -17.328324],\n            [-180.07071, -17.297052],\n            [-180.075997, -17.26555],\n            [-180.080391, -17.234095],\n            [-180.084014, -17.202882],\n            [-180.086963, -17.172059],\n            [-180.089314, -17.141735],\n            [-180.091131, -17.111994],\n            [-180.092469, -17.082902],\n            [-180.093374, -17.054511],\n            [-180.093886, -17.026859],\n            [-180.094041, -16.999978],\n            [-180.09386, -16.973098],\n            [-180.09332, -16.945447],\n            [-180.092387, -16.917056],\n            [-180.091022, -16.887966],\n            [-180.089179, -16.858226],\n            [-180.086803, -16.827904],\n            [-180.083833, -16.797083],\n            [-180.08019, -16.765874],\n            [-180.075782, -16.734422],\n            [-180.070486, -16.702924],\n            [-180.064142, -16.671656],\n            [-180.056526, -16.641017],\n            [-180.047303, -16.61163],\n            [-180.035909, -16.584565],\n            [-180.021226, -16.561997],\n            [-180, -16.55034]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test/out/northern-latitudes-degrees.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"units\": \"degrees\",\n        \"xSemiAxis\": 5,\n        \"ySemiAxis\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-94, 74]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94, 79],\n            [-96.55809, 78.965318],\n            [-99.049871, 78.862243],\n            [-101.414398, 78.693594],\n            [-103.60042, 78.46379],\n            [-105.568992, 78.178486],\n            [-107.294206, 77.844169],\n            [-108.762366, 77.467777],\n            [-109.970133, 77.056367],\n            [-110.922237, 76.616871],\n            [-111.629174, 76.15592],\n            [-112.105192, 75.679744],\n            [-112.366654, 75.194117],\n            [-112.430825, 74.704344],\n            [-112.315011, 74.215272],\n            [-112.035994, 73.731307],\n            [-111.609696, 73.256451],\n            [-111.051001, 72.794332],\n            [-110.373684, 72.348231],\n            [-109.59042, 71.92112],\n            [-108.712834, 71.51568],\n            [-107.751577, 71.134329],\n            [-106.71642, 70.779237],\n            [-105.616343, 70.452347],\n            [-104.459636, 70.155384],\n            [-103.253983, 69.889871],\n            [-102.006554, 69.657131],\n            [-100.72408, 69.458303],\n            [-99.412931, 69.294338],\n            [-98.079181, 69.166013],\n            [-96.728676, 69.073925],\n            [-95.367094, 69.018503],\n            [-94, 69],\n            [-92.632906, 69.018503],\n            [-91.271324, 69.073925],\n            [-89.920819, 69.166013],\n            [-88.587069, 69.294338],\n            [-87.27592, 69.458303],\n            [-85.993446, 69.657131],\n            [-84.746017, 69.889871],\n            [-83.540364, 70.155384],\n            [-82.383657, 70.452347],\n            [-81.28358, 70.779237],\n            [-80.248423, 71.134329],\n            [-79.287166, 71.51568],\n            [-78.40958, 71.92112],\n            [-77.626316, 72.348231],\n            [-76.948999, 72.794332],\n            [-76.390304, 73.256451],\n            [-75.964006, 73.731307],\n            [-75.684989, 74.215272],\n            [-75.569175, 74.704344],\n            [-75.633346, 75.194117],\n            [-75.894808, 75.679744],\n            [-76.370826, 76.15592],\n            [-77.077763, 76.616871],\n            [-78.029867, 77.056367],\n            [-79.237634, 77.467777],\n            [-80.705794, 77.844169],\n            [-82.431008, 78.178486],\n            [-84.39958, 78.46379],\n            [-86.585602, 78.693594],\n            [-88.950129, 78.862243],\n            [-91.44191, 78.965318],\n            [-94, 79]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-111.609696, 73.256451],\n            [-111.404311, 73.510243],\n            [-110.70689, 73.730954],\n            [-109.783251, 73.928702],\n            [-108.725348, 74.106339],\n            [-107.580194, 74.2652],\n            [-106.376848, 74.406176],\n            [-105.135467, 74.53002],\n            [-103.871136, 74.637455],\n            [-102.595732, 74.729222],\n            [-101.318919, 74.806086],\n            [-100.04873, 74.86884],\n            [-98.79192, 74.918302],\n            [-97.554199, 74.955305],\n            [-96.340385, 74.980693],\n            [-95.154529, 74.995312],\n            [-94, 75],\n            [-92.845471, 74.995312],\n            [-91.659615, 74.980693],\n            [-90.445801, 74.955305],\n            [-89.20808, 74.918302],\n            [-87.95127, 74.86884],\n            [-86.681081, 74.806086],\n            [-85.404268, 74.729222],\n            [-84.128864, 74.637455],\n            [-82.864533, 74.53002],\n            [-81.623152, 74.406176],\n            [-80.419806, 74.2652],\n            [-79.274652, 74.106339],\n            [-78.216749, 73.928702],\n            [-77.29311, 73.730954],\n            [-76.595689, 73.510243],\n            [-76.390304, 73.256451],\n            [-77.042091, 73.076913],\n            [-78.015528, 72.994911],\n            [-79.115088, 72.954647],\n            [-80.276835, 72.936876],\n            [-81.469995, 72.932154],\n            [-82.676747, 72.935073],\n            [-83.885546, 72.942272],\n            [-85.088332, 72.951565],\n            [-86.279178, 72.9615],\n            [-87.45357, 72.971111],\n            [-88.607982, 72.979764],\n            [-89.73962, 72.987065],\n            [-90.846251, 72.992792],\n            [-91.92609, 72.996848],\n            [-92.977713, 72.999229],\n            [-94, 73],\n            [-95.022287, 72.999229],\n            [-96.07391, 72.996848],\n            [-97.153749, 72.992792],\n            [-98.26038, 72.987065],\n            [-99.392018, 72.979764],\n            [-100.54643, 72.971111],\n            [-101.720822, 72.9615],\n            [-102.911668, 72.951565],\n            [-104.114454, 72.942272],\n            [-105.323253, 72.935073],\n            [-106.530005, 72.932154],\n            [-107.723165, 72.936876],\n            [-108.884912, 72.954647],\n            [-109.984472, 72.994911],\n            [-110.957909, 73.076913],\n            [-111.609696, 73.256451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94, 79],\n            [-92.829533, 78.868122],\n            [-92.063446, 78.613133],\n            [-91.514439, 78.307836],\n            [-91.1101, 77.976934],\n            [-90.810522, 77.632522],\n            [-90.590161, 77.281607],\n            [-90.431305, 76.928659],\n            [-90.321068, 76.576722],\n            [-90.249767, 76.227955],\n            [-90.209956, 75.883941],\n            [-90.195813, 75.545863],\n            [-90.202719, 75.21462],\n            [-90.226974, 74.890901],\n            [-90.265581, 74.575235],\n            [-90.316097, 74.26803],\n            [-90.376515, 73.969595],\n            [-90.447416, 73.671357],\n            [-90.530789, 73.364764],\n            [-90.627066, 73.050162],\n            [-90.736781, 72.727995],\n            [-90.860599, 72.398831],\n            [-90.999361, 72.063398],\n            [-91.154149, 71.722628],\n            [-91.326376, 71.377739],\n            [-91.517927, 71.030336],\n            [-91.731383, 70.682588],\n            [-91.970405, 70.337519],\n            [-92.240431, 69.999537],\n            [-92.550102, 69.675491],\n            [-92.914615, 69.377145],\n            [-93.365745, 69.128445],\n            [-94, 69],\n            [-94.634255, 69.128445],\n            [-95.085385, 69.377145],\n            [-95.449898, 69.675491],\n            [-95.759569, 69.999537],\n            [-96.029595, 70.337519],\n            [-96.268617, 70.682588],\n            [-96.482073, 71.030336],\n            [-96.673624, 71.377739],\n            [-96.845851, 71.722628],\n            [-97.000639, 72.063398],\n            [-97.139401, 72.398831],\n            [-97.263219, 72.727995],\n            [-97.372934, 73.050162],\n            [-97.469211, 73.364764],\n            [-97.552584, 73.671357],\n            [-97.623485, 73.969595],\n            [-97.683903, 74.26803],\n            [-97.734419, 74.575235],\n            [-97.773026, 74.890901],\n            [-97.797281, 75.21462],\n            [-97.804187, 75.545863],\n            [-97.790044, 75.883941],\n            [-97.750233, 76.227955],\n            [-97.678932, 76.576722],\n            [-97.568695, 76.928659],\n            [-97.409839, 77.281607],\n            [-97.189478, 77.632522],\n            [-96.8899, 77.976934],\n            [-96.485561, 78.307836],\n            [-95.936554, 78.613133],\n            [-95.170467, 78.868122],\n            [-94, 79]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test/out/northern-latitudes.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"xSemiAxis\": 50,\n        \"ySemiAxis\": 10,\n        \"steps\": 128\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-94, 74]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94, 74.44966],\n            [-94.082298, 74.449103],\n            [-94.16438, 74.447434],\n            [-94.246033, 74.444657],\n            [-94.327042, 74.440779],\n            [-94.407197, 74.435811],\n            [-94.48629, 74.429765],\n            [-94.564115, 74.422658],\n            [-94.640472, 74.414507],\n            [-94.715164, 74.405334],\n            [-94.788, 74.395163],\n            [-94.858795, 74.38402],\n            [-94.927372, 74.371934],\n            [-94.993557, 74.358937],\n            [-95.057187, 74.345061],\n            [-95.118104, 74.330342],\n            [-95.176161, 74.314819],\n            [-95.231218, 74.29853],\n            [-95.283143, 74.281518],\n            [-95.331815, 74.263825],\n            [-95.377123, 74.245497],\n            [-95.418962, 74.226579],\n            [-95.45724, 74.207119],\n            [-95.491875, 74.187166],\n            [-95.522794, 74.166769],\n            [-95.549933, 74.14598],\n            [-95.573241, 74.124849],\n            [-95.592674, 74.10343],\n            [-95.608201, 74.081774],\n            [-95.619798, 74.059934],\n            [-95.627454, 74.037964],\n            [-95.631166, 74.015918],\n            [-95.63094, 73.993848],\n            [-95.626793, 73.971807],\n            [-95.61875, 73.949849],\n            [-95.606847, 73.928026],\n            [-95.591127, 73.90639],\n            [-95.571641, 73.884992],\n            [-95.548451, 73.863882],\n            [-95.521625, 73.843111],\n            [-95.491239, 73.822727],\n            [-95.457378, 73.802777],\n            [-95.420132, 73.783309],\n            [-95.379599, 73.764366],\n            [-95.335884, 73.745994],\n            [-95.289098, 73.728234],\n            [-95.239358, 73.711126],\n            [-95.186787, 73.694711],\n            [-95.131512, 73.679026],\n            [-95.073666, 73.664105],\n            [-95.013388, 73.649984],\n            [-94.95082, 73.636694],\n            [-94.886109, 73.624265],\n            [-94.819404, 73.612726],\n            [-94.750859, 73.602101],\n            [-94.680632, 73.592415],\n            [-94.608882, 73.58369],\n            [-94.535773, 73.575945],\n            [-94.461468, 73.569197],\n            [-94.386135, 73.563462],\n            [-94.309943, 73.558752],\n            [-94.233062, 73.555078],\n            [-94.155663, 73.552448],\n            [-94.077918, 73.550867],\n            [-94, 73.55034],\n            [-93.922082, 73.550867],\n            [-93.844337, 73.552448],\n            [-93.766938, 73.555078],\n            [-93.690057, 73.558752],\n            [-93.613865, 73.563462],\n            [-93.538532, 73.569197],\n            [-93.464227, 73.575945],\n            [-93.391118, 73.58369],\n            [-93.319368, 73.592415],\n            [-93.249141, 73.602101],\n            [-93.180596, 73.612726],\n            [-93.113891, 73.624265],\n            [-93.04918, 73.636694],\n            [-92.986612, 73.649984],\n            [-92.926334, 73.664105],\n            [-92.868488, 73.679026],\n            [-92.813213, 73.694711],\n            [-92.760642, 73.711126],\n            [-92.710902, 73.728234],\n            [-92.664116, 73.745994],\n            [-92.620401, 73.764366],\n            [-92.579868, 73.783309],\n            [-92.542622, 73.802777],\n            [-92.508761, 73.822727],\n            [-92.478375, 73.843111],\n            [-92.451549, 73.863882],\n            [-92.428359, 73.884992],\n            [-92.408873, 73.90639],\n            [-92.393153, 73.928026],\n            [-92.38125, 73.949849],\n            [-92.373207, 73.971807],\n            [-92.36906, 73.993848],\n            [-92.368834, 74.015918],\n            [-92.372546, 74.037964],\n            [-92.380202, 74.059934],\n            [-92.391799, 74.081774],\n            [-92.407326, 74.10343],\n            [-92.426759, 74.124849],\n            [-92.450067, 74.14598],\n            [-92.477206, 74.166769],\n            [-92.508125, 74.187166],\n            [-92.54276, 74.207119],\n            [-92.581038, 74.226579],\n            [-92.622877, 74.245497],\n            [-92.668185, 74.263825],\n            [-92.716857, 74.281518],\n            [-92.768782, 74.29853],\n            [-92.823839, 74.314819],\n            [-92.881896, 74.330342],\n            [-92.942813, 74.345061],\n            [-93.006443, 74.358937],\n            [-93.072628, 74.371934],\n            [-93.141205, 74.38402],\n            [-93.212, 74.395163],\n            [-93.284836, 74.405334],\n            [-93.359528, 74.414507],\n            [-93.435885, 74.422658],\n            [-93.51371, 74.429765],\n            [-93.592803, 74.435811],\n            [-93.672958, 74.440779],\n            [-93.753967, 74.444657],\n            [-93.83562, 74.447434],\n            [-93.917702, 74.449103],\n            [-94, 74.44966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.63094, 73.993848],\n            [-95.618974, 74.005314],\n            [-95.590643, 74.014501],\n            [-95.553238, 74.022313],\n            [-95.510009, 74.029153],\n            [-95.462755, 74.035244],\n            [-95.412603, 74.040726],\n            [-95.360317, 74.045697],\n            [-95.306446, 74.050225],\n            [-95.2514, 74.054363],\n            [-95.195495, 74.058153],\n            [-95.138982, 74.061628],\n            [-95.082063, 74.064815],\n            [-95.024904, 74.067738],\n            [-94.967645, 74.070417],\n            [-94.910401, 74.072868],\n            [-94.853272, 74.075106],\n            [-94.796343, 74.077145],\n            [-94.739687, 74.078997],\n            [-94.683367, 74.080672],\n            [-94.62744, 74.082181],\n            [-94.571954, 74.083531],\n            [-94.516951, 74.084732],\n            [-94.462469, 74.08579],\n            [-94.408542, 74.086713],\n            [-94.3552, 74.087507],\n            [-94.302467, 74.088179],\n            [-94.250367, 74.088734],\n            [-94.198921, 74.089177],\n            [-94.148146, 74.089514],\n            [-94.098058, 74.089749],\n            [-94.048672, 74.089887],\n            [-94, 74.089932],\n            [-93.951328, 74.089887],\n            [-93.901942, 74.089749],\n            [-93.851854, 74.089514],\n            [-93.801079, 74.089177],\n            [-93.749633, 74.088734],\n            [-93.697533, 74.088179],\n            [-93.6448, 74.087507],\n            [-93.591458, 74.086713],\n            [-93.537531, 74.08579],\n            [-93.483049, 74.084732],\n            [-93.428046, 74.083531],\n            [-93.37256, 74.082181],\n            [-93.316633, 74.080672],\n            [-93.260313, 74.078997],\n            [-93.203657, 74.077145],\n            [-93.146728, 74.075106],\n            [-93.089599, 74.072868],\n            [-93.032355, 74.070417],\n            [-92.975096, 74.067738],\n            [-92.917937, 74.064815],\n            [-92.861018, 74.061628],\n            [-92.804505, 74.058153],\n            [-92.7486, 74.054363],\n            [-92.693554, 74.050225],\n            [-92.639683, 74.045697],\n            [-92.587397, 74.040726],\n            [-92.537245, 74.035244],\n            [-92.489991, 74.029153],\n            [-92.446762, 74.022313],\n            [-92.409357, 74.014501],\n            [-92.381026, 74.005314],\n            [-92.36906, 73.993848],\n            [-92.383264, 73.982578],\n            [-92.41329, 73.973824],\n            [-92.452023, 73.966565],\n            [-92.496301, 73.960344],\n            [-92.544379, 73.954908],\n            [-92.595167, 73.950095],\n            [-92.647929, 73.945796],\n            [-92.702136, 73.941933],\n            [-92.757398, 73.938445],\n            [-92.813412, 73.935286],\n            [-92.86994, 73.932419],\n            [-92.926792, 73.929814],\n            [-92.98381, 73.927445],\n            [-93.040864, 73.925291],\n            [-93.097847, 73.923334],\n            [-93.154665, 73.921558],\n            [-93.21124, 73.91995],\n            [-93.267504, 73.918497],\n            [-93.323399, 73.91719],\n            [-93.378874, 73.916017],\n            [-93.433884, 73.914972],\n            [-93.488392, 73.914045],\n            [-93.542363, 73.913231],\n            [-93.595766, 73.912523],\n            [-93.648577, 73.911915],\n            [-93.70077, 73.911402],\n            [-93.752327, 73.910979],\n            [-93.803229, 73.910642],\n            [-93.853461, 73.910386],\n            [-93.903008, 73.910207],\n            [-93.951857, 73.910102],\n            [-94, 73.910068],\n            [-94.048143, 73.910102],\n            [-94.096992, 73.910207],\n            [-94.146539, 73.910386],\n            [-94.196771, 73.910642],\n            [-94.247673, 73.910979],\n            [-94.29923, 73.911402],\n            [-94.351423, 73.911915],\n            [-94.404234, 73.912523],\n            [-94.457637, 73.913231],\n            [-94.511608, 73.914045],\n            [-94.566116, 73.914972],\n            [-94.621126, 73.916017],\n            [-94.676601, 73.91719],\n            [-94.732496, 73.918497],\n            [-94.78876, 73.91995],\n            [-94.845335, 73.921558],\n            [-94.902153, 73.923334],\n            [-94.959136, 73.925291],\n            [-95.01619, 73.927445],\n            [-95.073208, 73.929814],\n            [-95.13006, 73.932419],\n            [-95.186588, 73.935286],\n            [-95.242602, 73.938445],\n            [-95.297864, 73.941933],\n            [-95.352071, 73.945796],\n            [-95.404833, 73.950095],\n            [-95.455621, 73.954908],\n            [-95.503699, 73.960344],\n            [-95.547977, 73.966565],\n            [-95.58671, 73.973824],\n            [-95.616736, 73.982578],\n            [-95.63094, 73.993848]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94, 74.44966],\n            [-93.95759, 74.446047],\n            [-93.924163, 74.437989],\n            [-93.896135, 74.427476],\n            [-93.871901, 74.415395],\n            [-93.850567, 74.402234],\n            [-93.831566, 74.3883],\n            [-93.814511, 74.373801],\n            [-93.799121, 74.358884],\n            [-93.785183, 74.343661],\n            [-93.772529, 74.328217],\n            [-93.761024, 74.312619],\n            [-93.750558, 74.296922],\n            [-93.741037, 74.281171],\n            [-93.732384, 74.265401],\n            [-93.724528, 74.249645],\n            [-93.717412, 74.233928],\n            [-93.710983, 74.218274],\n            [-93.705195, 74.202701],\n            [-93.700005, 74.187227],\n            [-93.695378, 74.171865],\n            [-93.691278, 74.156629],\n            [-93.687675, 74.141531],\n            [-93.684541, 74.126578],\n            [-93.68185, 74.111782],\n            [-93.679578, 74.097148],\n            [-93.677703, 74.082684],\n            [-93.676204, 74.068396],\n            [-93.675063, 74.054289],\n            [-93.674262, 74.040367],\n            [-93.673784, 74.026635],\n            [-93.673612, 74.013096],\n            [-93.673734, 73.999754],\n            [-93.674142, 73.986412],\n            [-93.674849, 73.972874],\n            [-93.675868, 73.959145],\n            [-93.677213, 73.945226],\n            [-93.678898, 73.931123],\n            [-93.68094, 73.91684],\n            [-93.683354, 73.902383],\n            [-93.686158, 73.887756],\n            [-93.689373, 73.872968],\n            [-93.693018, 73.858026],\n            [-93.697116, 73.842938],\n            [-93.701692, 73.827715],\n            [-93.706773, 73.812367],\n            [-93.712388, 73.796907],\n            [-93.718569, 73.78135],\n            [-93.725353, 73.765713],\n            [-93.73278, 73.750015],\n            [-93.740897, 73.734278],\n            [-93.749757, 73.71853],\n            [-93.759418, 73.7028],\n            [-93.769952, 73.687126],\n            [-93.781443, 73.671553],\n            [-93.793988, 73.656134],\n            [-93.807712, 73.640937],\n            [-93.822766, 73.626047],\n            [-93.839345, 73.611574],\n            [-93.85771, 73.597668],\n            [-93.878219, 73.584533],\n            [-93.901403, 73.572476],\n            [-93.928101, 73.561986],\n            [-93.959832, 73.553946],\n            [-94, 73.55034],\n            [-94.040168, 73.553946],\n            [-94.071899, 73.561986],\n            [-94.098597, 73.572476],\n            [-94.121781, 73.584533],\n            [-94.14229, 73.597668],\n            [-94.160655, 73.611574],\n            [-94.177234, 73.626047],\n            [-94.192288, 73.640937],\n            [-94.206012, 73.656134],\n            [-94.218557, 73.671553],\n            [-94.230048, 73.687126],\n            [-94.240582, 73.7028],\n            [-94.250243, 73.71853],\n            [-94.259103, 73.734278],\n            [-94.26722, 73.750015],\n            [-94.274647, 73.765713],\n            [-94.281431, 73.78135],\n            [-94.287612, 73.796907],\n            [-94.293227, 73.812367],\n            [-94.298308, 73.827715],\n            [-94.302884, 73.842938],\n            [-94.306982, 73.858026],\n            [-94.310627, 73.872968],\n            [-94.313842, 73.887756],\n            [-94.316646, 73.902383],\n            [-94.31906, 73.91684],\n            [-94.321102, 73.931123],\n            [-94.322787, 73.945226],\n            [-94.324132, 73.959145],\n            [-94.325151, 73.972874],\n            [-94.325858, 73.986412],\n            [-94.326266, 73.999754],\n            [-94.326388, 74.013096],\n            [-94.326216, 74.026635],\n            [-94.325738, 74.040367],\n            [-94.324937, 74.054289],\n            [-94.323796, 74.068396],\n            [-94.322297, 74.082684],\n            [-94.320422, 74.097148],\n            [-94.31815, 74.111782],\n            [-94.315459, 74.126578],\n            [-94.312325, 74.141531],\n            [-94.308722, 74.156629],\n            [-94.304622, 74.171865],\n            [-94.299995, 74.187227],\n            [-94.294805, 74.202701],\n            [-94.289017, 74.218274],\n            [-94.282588, 74.233928],\n            [-94.275472, 74.249645],\n            [-94.267616, 74.265401],\n            [-94.258963, 74.281171],\n            [-94.249442, 74.296922],\n            [-94.238976, 74.312619],\n            [-94.227471, 74.328217],\n            [-94.214817, 74.343661],\n            [-94.200879, 74.358884],\n            [-94.185489, 74.373801],\n            [-94.168434, 74.3883],\n            [-94.149433, 74.402234],\n            [-94.128099, 74.415395],\n            [-94.103865, 74.427476],\n            [-94.075837, 74.437989],\n            [-94.04241, 74.446047],\n            [-94, 74.44966]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test/out/rotation-degrees.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"units\": \"degrees\",\n        \"xSemiAxis\": 0.125,\n        \"ySemiAxis\": 0.025,\n        \"angle\": 30\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.9975, 40.730833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.9975, 40.855833],\n            [-74.013699, 40.85523],\n            [-74.029741, 40.853427],\n            [-74.04547, 40.850441],\n            [-74.060735, 40.846301],\n            [-74.075388, 40.841047],\n            [-74.089287, 40.83473],\n            [-74.102298, 40.827412],\n            [-74.114296, 40.819163],\n            [-74.125164, 40.810062],\n            [-74.134798, 40.800198],\n            [-74.143106, 40.789666],\n            [-74.150008, 40.778568],\n            [-74.155438, 40.767011],\n            [-74.159344, 40.755106],\n            [-74.161691, 40.742969],\n            [-74.162455, 40.730716],\n            [-74.16163, 40.718465],\n            [-74.159226, 40.706334],\n            [-74.155266, 40.69444],\n            [-74.149789, 40.682897],\n            [-74.142848, 40.671817],\n            [-74.134512, 40.661306],\n            [-74.12486, 40.651464],\n            [-74.113986, 40.642386],\n            [-74.101995, 40.63416],\n            [-74.089001, 40.626863],\n            [-74.075131, 40.620567],\n            [-74.060516, 40.615331],\n            [-74.045298, 40.611206],\n            [-74.029622, 40.60823],\n            [-74.013638, 40.606434],\n            [-73.9975, 40.605833],\n            [-73.981362, 40.606434],\n            [-73.965378, 40.60823],\n            [-73.949702, 40.611206],\n            [-73.934484, 40.615331],\n            [-73.919869, 40.620567],\n            [-73.905999, 40.626863],\n            [-73.893005, 40.63416],\n            [-73.881014, 40.642386],\n            [-73.87014, 40.651464],\n            [-73.860488, 40.661306],\n            [-73.852152, 40.671817],\n            [-73.845211, 40.682897],\n            [-73.839734, 40.69444],\n            [-73.835774, 40.706334],\n            [-73.83337, 40.718465],\n            [-73.832545, 40.730716],\n            [-73.833309, 40.742969],\n            [-73.835656, 40.755106],\n            [-73.839562, 40.767011],\n            [-73.844992, 40.778568],\n            [-73.851894, 40.789666],\n            [-73.860202, 40.800198],\n            [-73.869836, 40.810062],\n            [-73.880704, 40.819163],\n            [-73.892702, 40.827412],\n            [-73.905713, 40.83473],\n            [-73.919612, 40.841047],\n            [-73.934265, 40.846301],\n            [-73.94953, 40.850441],\n            [-73.965259, 40.853427],\n            [-73.981301, 40.85523],\n            [-73.9975, 40.855833]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.140489, 40.793245],\n            [-74.133053, 40.796531],\n            [-74.123293, 40.796793],\n            [-74.11268, 40.795669],\n            [-74.10171, 40.79372],\n            [-74.090624, 40.791225],\n            [-74.079564, 40.788347],\n            [-74.068615, 40.785194],\n            [-74.057839, 40.781842],\n            [-74.047275, 40.778345],\n            [-74.036954, 40.774747],\n            [-74.026898, 40.771079],\n            [-74.017122, 40.767369],\n            [-74.007637, 40.763638],\n            [-73.998451, 40.759903],\n            [-73.989571, 40.756181],\n            [-73.980999, 40.752482],\n            [-73.972487, 40.748706],\n            [-73.963795, 40.744739],\n            [-73.954937, 40.740579],\n            [-73.945934, 40.73622],\n            [-73.93681, 40.731661],\n            [-73.927596, 40.726897],\n            [-73.91833, 40.721925],\n            [-73.909059, 40.716744],\n            [-73.899849, 40.711352],\n            [-73.890781, 40.705747],\n            [-73.881973, 40.699932],\n            [-73.87359, 40.69391],\n            [-73.865889, 40.687691],\n            [-73.859309, 40.681293],\n            [-73.854737, 40.674764],\n            [-73.854779, 40.668245],\n            [-73.862215, 40.664976],\n            [-73.871956, 40.664737],\n            [-73.882545, 40.665883],\n            [-73.893487, 40.667852],\n            [-73.904545, 40.670366],\n            [-73.915578, 40.673261],\n            [-73.926501, 40.676428],\n            [-73.937254, 40.679793],\n            [-73.947796, 40.683299],\n            [-73.958098, 40.686906],\n            [-73.968137, 40.69058],\n            [-73.9779, 40.694294],\n            [-73.987373, 40.698027],\n            [-73.99655, 40.701763],\n            [-74.005423, 40.705485],\n            [-74.01399, 40.709181],\n            [-74.022499, 40.712955],\n            [-74.031191, 40.716917],\n            [-74.040051, 40.721072],\n            [-74.049058, 40.725423],\n            [-74.058188, 40.729973],\n            [-74.067412, 40.734727],\n            [-74.076692, 40.739687],\n            [-74.085978, 40.744854],\n            [-74.095208, 40.750232],\n            [-74.104299, 40.755821],\n            [-74.113135, 40.761619],\n            [-74.121548, 40.767623],\n            [-74.129281, 40.773826],\n            [-74.135896, 40.780208],\n            [-74.140503, 40.786726],\n            [-74.140489, 40.793245]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.914888, 40.839057],\n            [-73.910563, 40.833419],\n            [-73.910242, 40.82603],\n            [-73.911752, 40.817997],\n            [-73.914351, 40.809697],\n            [-73.917671, 40.80131],\n            [-73.921493, 40.792941],\n            [-73.925676, 40.784657],\n            [-73.93012, 40.776502],\n            [-73.934751, 40.768508],\n            [-73.939515, 40.760697],\n            [-73.944367, 40.753085],\n            [-73.949273, 40.745684],\n            [-73.954204, 40.738503],\n            [-73.959137, 40.731547],\n            [-73.964053, 40.724822],\n            [-73.968934, 40.718329],\n            [-73.973917, 40.711882],\n            [-73.979149, 40.705295],\n            [-73.984635, 40.698583],\n            [-73.99038, 40.69176],\n            [-73.996387, 40.684844],\n            [-74.002662, 40.677858],\n            [-74.009209, 40.67083],\n            [-74.016029, 40.663799],\n            [-74.023126, 40.65681],\n            [-74.0305, 40.649928],\n            [-74.038149, 40.643241],\n            [-74.046069, 40.636874],\n            [-74.054249, 40.631022],\n            [-74.062663, 40.626018],\n            [-74.071255, 40.622535],\n            [-74.079844, 40.622551],\n            [-74.084169, 40.628182],\n            [-74.084508, 40.635571],\n            [-74.083023, 40.643605],\n            [-74.080452, 40.65191],\n            [-74.07716, 40.660302],\n            [-74.073365, 40.668675],\n            [-74.069208, 40.676965],\n            [-74.064788, 40.685125],\n            [-74.060178, 40.693124],\n            [-74.055433, 40.70094],\n            [-74.050597, 40.708557],\n            [-74.045705, 40.715962],\n            [-74.040786, 40.723147],\n            [-74.035862, 40.730106],\n            [-74.030953, 40.736834],\n            [-74.026076, 40.743329],\n            [-74.021096, 40.74978],\n            [-74.015865, 40.756368],\n            [-74.010377, 40.763081],\n            [-74.004629, 40.769906],\n            [-73.998614, 40.776822],\n            [-73.992329, 40.783808],\n            [-73.98577, 40.790834],\n            [-73.978934, 40.797865],\n            [-73.971817, 40.80485],\n            [-73.96442, 40.811729],\n            [-73.956744, 40.818411],\n            [-73.948793, 40.824772],\n            [-73.940581, 40.830616],\n            [-73.932131, 40.835611],\n            [-73.923504, 40.839084],\n            [-73.914888, 40.839057]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test/out/rotation.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"xSemiAxis\": 5,\n        \"ySemiAxis\": 1,\n        \"angle\": 30\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.9975, 40.730833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.9975, 40.775799],\n            [-74.00332, 40.775582],\n            [-74.009084, 40.774934],\n            [-74.014736, 40.773862],\n            [-74.020222, 40.772374],\n            [-74.025489, 40.770486],\n            [-74.030485, 40.768216],\n            [-74.035164, 40.765586],\n            [-74.039479, 40.762621],\n            [-74.043389, 40.75935],\n            [-74.046857, 40.755804],\n            [-74.049849, 40.752018],\n            [-74.052336, 40.748028],\n            [-74.054295, 40.743872],\n            [-74.055706, 40.739591],\n            [-74.056557, 40.735225],\n            [-74.056839, 40.730818],\n            [-74.056549, 40.726411],\n            [-74.055691, 40.722046],\n            [-74.054273, 40.717766],\n            [-74.052308, 40.713612],\n            [-74.049816, 40.709624],\n            [-74.04682, 40.705841],\n            [-74.04335, 40.702298],\n            [-74.039439, 40.69903],\n            [-74.035125, 40.696068],\n            [-74.030448, 40.69344],\n            [-74.025456, 40.691173],\n            [-74.020194, 40.689288],\n            [-74.014714, 40.687802],\n            [-74.009069, 40.68673],\n            [-74.003312, 40.686083],\n            [-73.9975, 40.685867],\n            [-73.991688, 40.686083],\n            [-73.985931, 40.68673],\n            [-73.980286, 40.687802],\n            [-73.974806, 40.689288],\n            [-73.969544, 40.691173],\n            [-73.964552, 40.69344],\n            [-73.959875, 40.696068],\n            [-73.955561, 40.69903],\n            [-73.95165, 40.702298],\n            [-73.94818, 40.705841],\n            [-73.945184, 40.709624],\n            [-73.942692, 40.713612],\n            [-73.940727, 40.717766],\n            [-73.939309, 40.722046],\n            [-73.938451, 40.726411],\n            [-73.938161, 40.730818],\n            [-73.938443, 40.735225],\n            [-73.939294, 40.739591],\n            [-73.940705, 40.743872],\n            [-73.942664, 40.748028],\n            [-73.945151, 40.752018],\n            [-73.948143, 40.755804],\n            [-73.951611, 40.75935],\n            [-73.955521, 40.762621],\n            [-73.959836, 40.765586],\n            [-73.964515, 40.768216],\n            [-73.969511, 40.770486],\n            [-73.974778, 40.772374],\n            [-73.980264, 40.773862],\n            [-73.985916, 40.774934],\n            [-73.99168, 40.775582],\n            [-73.9975, 40.775799]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.048906, 40.753305],\n            [-74.046231, 40.754485],\n            [-74.042723, 40.754576],\n            [-74.038908, 40.754169],\n            [-74.034964, 40.753466],\n            [-74.03098, 40.752566],\n            [-74.027004, 40.751529],\n            [-74.023069, 40.750393],\n            [-74.019195, 40.749186],\n            [-74.015397, 40.747927],\n            [-74.011687, 40.746631],\n            [-74.008071, 40.745311],\n            [-74.004556, 40.743976],\n            [-74.001145, 40.742634],\n            [-73.997842, 40.74129],\n            [-73.994648, 40.739951],\n            [-73.991565, 40.738621],\n            [-73.988504, 40.737263],\n            [-73.985377, 40.735837],\n            [-73.98219, 40.734341],\n            [-73.978951, 40.732774],\n            [-73.975668, 40.731134],\n            [-73.972353, 40.729422],\n            [-73.969018, 40.727635],\n            [-73.965681, 40.725773],\n            [-73.962365, 40.723834],\n            [-73.959101, 40.72182],\n            [-73.955929, 40.71973],\n            [-73.95291, 40.717566],\n            [-73.950136, 40.715331],\n            [-73.947765, 40.713031],\n            [-73.946117, 40.710684],\n            [-73.946128, 40.708339],\n            [-73.948803, 40.707161],\n            [-73.95231, 40.707072],\n            [-73.956122, 40.707482],\n            [-73.960061, 40.708188],\n            [-73.964042, 40.70909],\n            [-73.968014, 40.710129],\n            [-73.971946, 40.711267],\n            [-73.975817, 40.712476],\n            [-73.979612, 40.713736],\n            [-73.98332, 40.715033],\n            [-73.986933, 40.716354],\n            [-73.990447, 40.717689],\n            [-73.993856, 40.719032],\n            [-73.997158, 40.720376],\n            [-74.000351, 40.721715],\n            [-74.003433, 40.723045],\n            [-74.006494, 40.724402],\n            [-74.009621, 40.725828],\n            [-74.012808, 40.727323],\n            [-74.016048, 40.728889],\n            [-74.019331, 40.730527],\n            [-74.022648, 40.732239],\n            [-74.025985, 40.734024],\n            [-74.029324, 40.735885],\n            [-74.032642, 40.737821],\n            [-74.035909, 40.739833],\n            [-74.039085, 40.741921],\n            [-74.042108, 40.744083],\n            [-74.044886, 40.746316],\n            [-74.047261, 40.748613],\n            [-74.048915, 40.75096],\n            [-74.048906, 40.753305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.967813, 40.769771],\n            [-73.966257, 40.767744],\n            [-73.96614, 40.765085],\n            [-73.96668, 40.762196],\n            [-73.967612, 40.759209],\n            [-73.968803, 40.756192],\n            [-73.970174, 40.753181],\n            [-73.971676, 40.7502],\n            [-73.973272, 40.747266],\n            [-73.974936, 40.74439],\n            [-73.976647, 40.741579],\n            [-73.978391, 40.73884],\n            [-73.980154, 40.736178],\n            [-73.981926, 40.733594],\n            [-73.9837, 40.731091],\n            [-73.985467, 40.728672],\n            [-73.987223, 40.726336],\n            [-73.989015, 40.724016],\n            [-73.990897, 40.721647],\n            [-73.992871, 40.719232],\n            [-73.994938, 40.716777],\n            [-73.9971, 40.714289],\n            [-73.999358, 40.711776],\n            [-74.001714, 40.709248],\n            [-74.00417, 40.706719],\n            [-74.006725, 40.704205],\n            [-74.00938, 40.70173],\n            [-74.012135, 40.699325],\n            [-74.014987, 40.697036],\n            [-74.017934, 40.694931],\n            [-74.020965, 40.693132],\n            [-74.024059, 40.691881],\n            [-74.027152, 40.691887],\n            [-74.028708, 40.693914],\n            [-74.028828, 40.696572],\n            [-74.028291, 40.699462],\n            [-74.027363, 40.702449],\n            [-74.026176, 40.705467],\n            [-74.024807, 40.708479],\n            [-74.023309, 40.71146],\n            [-74.021716, 40.714395],\n            [-74.020055, 40.717272],\n            [-74.018346, 40.720083],\n            [-74.016605, 40.722822],\n            [-74.014843, 40.725486],\n            [-74.013072, 40.72807],\n            [-74.0113, 40.730573],\n            [-74.009533, 40.732993],\n            [-74.007778, 40.735329],\n            [-74.005987, 40.737649],\n            [-74.004105, 40.740019],\n            [-74.002131, 40.742434],\n            [-74.000063, 40.744889],\n            [-73.997901, 40.747377],\n            [-73.995641, 40.74989],\n            [-73.993283, 40.752417],\n            [-73.990825, 40.754946],\n            [-73.988268, 40.75746],\n            [-73.98561, 40.759934],\n            [-73.982851, 40.762339],\n            [-73.979995, 40.764628],\n            [-73.977044, 40.766731],\n            [-73.974009, 40.768529],\n            [-73.970909, 40.769779],\n            [-73.967813, 40.769771]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test/out/simple-degrees.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"units\": \"degrees\",\n        \"xSemiAxis\": 5,\n        \"ySemiAxis\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.9975, 40.730833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.9975, 45.730833],\n            [-74.698398, 45.704735],\n            [-75.390706, 45.626764],\n            [-76.066017, 45.497886],\n            [-76.716273, 45.319684],\n            [-77.333929, 45.094327],\n            [-77.912074, 44.824524],\n            [-78.444546, 44.513469],\n            [-78.926002, 44.164781],\n            [-79.351961, 43.782438],\n            [-79.718829, 43.370713],\n            [-80.023884, 42.934104],\n            [-80.265253, 42.477272],\n            [-80.441865, 42.004981],\n            [-80.553401, 41.522038],\n            [-80.600227, 41.033248],\n            [-80.583334, 40.543359],\n            [-80.504269, 40.057027],\n            [-80.365071, 39.578777],\n            [-80.168217, 39.112966],\n            [-79.916559, 38.663761],\n            [-79.61328, 38.235109],\n            [-79.261849, 37.830717],\n            [-78.865975, 37.454029],\n            [-78.42958, 37.108214],\n            [-77.956762, 36.796144],\n            [-77.451771, 36.520386],\n            [-76.918984, 36.283188],\n            [-76.36288, 36.086469],\n            [-75.788026, 35.931812],\n            [-75.199053, 35.820454],\n            [-74.60064, 35.753283],\n            [-73.9975, 35.730833],\n            [-73.39436, 35.753283],\n            [-72.795947, 35.820454],\n            [-72.206974, 35.931812],\n            [-71.63212, 36.086469],\n            [-71.076016, 36.283188],\n            [-70.543229, 36.520386],\n            [-70.038238, 36.796144],\n            [-69.56542, 37.108214],\n            [-69.129025, 37.454029],\n            [-68.733151, 37.830717],\n            [-68.38172, 38.235109],\n            [-68.078441, 38.663761],\n            [-67.826783, 39.112966],\n            [-67.629929, 39.578777],\n            [-67.490731, 40.057027],\n            [-67.411666, 40.543359],\n            [-67.394773, 41.033248],\n            [-67.441599, 41.522038],\n            [-67.553135, 42.004981],\n            [-67.729747, 42.477272],\n            [-67.971116, 42.934104],\n            [-68.276171, 43.370713],\n            [-68.643039, 43.782438],\n            [-69.068998, 44.164781],\n            [-69.550454, 44.513469],\n            [-70.082926, 44.824524],\n            [-70.661071, 45.094327],\n            [-71.278727, 45.319684],\n            [-71.928983, 45.497886],\n            [-72.604294, 45.626764],\n            [-73.296602, 45.704735],\n            [-73.9975, 45.730833]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.583334, 40.543359],\n            [-80.434982, 40.778295],\n            [-80.118789, 40.952109],\n            [-79.731663, 41.0934],\n            [-79.306767, 41.211904],\n            [-78.860567, 41.312527],\n            [-78.402775, 41.398261],\n            [-77.939728, 41.471161],\n            [-77.475834, 41.532755],\n            [-77.014306, 41.584252],\n            [-76.557557, 41.626646],\n            [-76.10744, 41.660784],\n            [-75.6654, 41.687402],\n            [-75.232575, 41.707154],\n            [-74.809867, 41.720628],\n            [-74.397988, 41.728358],\n            [-73.9975, 41.730833],\n            [-73.597012, 41.728358],\n            [-73.185133, 41.720628],\n            [-72.762425, 41.707154],\n            [-72.3296, 41.687402],\n            [-71.88756, 41.660784],\n            [-71.437443, 41.626646],\n            [-70.980694, 41.584252],\n            [-70.519166, 41.532755],\n            [-70.055272, 41.471161],\n            [-69.592225, 41.398261],\n            [-69.134433, 41.312527],\n            [-68.688233, 41.211904],\n            [-68.263337, 41.0934],\n            [-67.876211, 40.952109],\n            [-67.560018, 40.778295],\n            [-67.411666, 40.543359],\n            [-67.603386, 40.327569],\n            [-67.945847, 40.189403],\n            [-68.349157, 40.088399],\n            [-68.783101, 40.010585],\n            [-69.232966, 39.948999],\n            [-69.690255, 39.899533],\n            [-70.149548, 39.859515],\n            [-70.607154, 39.827093],\n            [-71.060448, 39.800922],\n            [-71.507502, 39.779994],\n            [-71.946867, 39.763537],\n            [-72.377441, 39.750943],\n            [-72.798375, 39.74173],\n            [-73.209014, 39.73551],\n            [-73.608852, 39.731964],\n            [-73.9975, 39.730833],\n            [-74.386148, 39.731964],\n            [-74.785986, 39.73551],\n            [-75.196625, 39.74173],\n            [-75.617559, 39.750943],\n            [-76.048133, 39.763537],\n            [-76.487498, 39.779994],\n            [-76.934552, 39.800922],\n            [-77.387846, 39.827093],\n            [-77.845452, 39.859515],\n            [-78.304745, 39.899533],\n            [-78.762034, 39.948999],\n            [-79.211899, 40.010585],\n            [-79.645843, 40.088399],\n            [-80.049153, 40.189403],\n            [-80.391614, 40.327569],\n            [-80.583334, 40.543359]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.9975, 45.730833],\n            [-73.674533, 45.600765],\n            [-73.453563, 45.349008],\n            [-73.284769, 45.04715],\n            [-73.150635, 44.719483],\n            [-73.042184, 44.377943],\n            [-72.953933, 44.029476],\n            [-72.882164, 43.678549],\n            [-72.824183, 43.328221],\n            [-72.777941, 42.980686],\n            [-72.741824, 42.637559],\n            [-72.714527, 42.300063],\n            [-72.694972, 41.969133],\n            [-72.682254, 41.645492],\n            [-72.675606, 41.329702],\n            [-72.674366, 41.022199],\n            [-72.677961, 40.723319],\n            [-72.686198, 40.424493],\n            [-72.699476, 40.117156],\n            [-72.718202, 39.801652],\n            [-72.742835, 39.478429],\n            [-72.773905, 39.148055],\n            [-72.812033, 38.81126],\n            [-72.857956, 38.468986],\n            [-72.912575, 38.122458],\n            [-72.977017, 37.773294],\n            [-73.052734, 37.423681],\n            [-73.141681, 37.076667],\n            [-73.246627, 36.736695],\n            [-73.371792, 36.410667],\n            [-73.524324, 36.110436],\n            [-73.718686, 35.860124],\n            [-73.9975, 35.730833],\n            [-74.276314, 35.860124],\n            [-74.470676, 36.110436],\n            [-74.623208, 36.410667],\n            [-74.748373, 36.736695],\n            [-74.853319, 37.076667],\n            [-74.942266, 37.423681],\n            [-75.017983, 37.773294],\n            [-75.082425, 38.122458],\n            [-75.137044, 38.468986],\n            [-75.182967, 38.81126],\n            [-75.221095, 39.148055],\n            [-75.252165, 39.478429],\n            [-75.276798, 39.801652],\n            [-75.295524, 40.117156],\n            [-75.308802, 40.424493],\n            [-75.317039, 40.723319],\n            [-75.320634, 41.022199],\n            [-75.319394, 41.329702],\n            [-75.312746, 41.645492],\n            [-75.300028, 41.969133],\n            [-75.280473, 42.300063],\n            [-75.253176, 42.637559],\n            [-75.217059, 42.980686],\n            [-75.170817, 43.328221],\n            [-75.112836, 43.678549],\n            [-75.041067, 44.029476],\n            [-74.952816, 44.377943],\n            [-74.844365, 44.719483],\n            [-74.710231, 45.04715],\n            [-74.541437, 45.349008],\n            [-74.320467, 45.600765],\n            [-73.9975, 45.730833]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test/out/simple-with-elevation.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"xSemiAxis\": 5,\n        \"ySemiAxis\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.9975, 40.730833, 120]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.9975, 40.775799, 120],\n            [-74.00332, 40.775582, 120],\n            [-74.009084, 40.774934, 120],\n            [-74.014736, 40.773862, 120],\n            [-74.020222, 40.772374, 120],\n            [-74.025489, 40.770486, 120],\n            [-74.030485, 40.768216, 120],\n            [-74.035164, 40.765586, 120],\n            [-74.039479, 40.762621, 120],\n            [-74.043389, 40.75935, 120],\n            [-74.046857, 40.755804, 120],\n            [-74.049849, 40.752018, 120],\n            [-74.052336, 40.748028, 120],\n            [-74.054295, 40.743872, 120],\n            [-74.055706, 40.739591, 120],\n            [-74.056557, 40.735225, 120],\n            [-74.056839, 40.730818, 120],\n            [-74.056549, 40.726411, 120],\n            [-74.055691, 40.722046, 120],\n            [-74.054273, 40.717766, 120],\n            [-74.052308, 40.713612, 120],\n            [-74.049816, 40.709624, 120],\n            [-74.04682, 40.705841, 120],\n            [-74.04335, 40.702298, 120],\n            [-74.039439, 40.69903, 120],\n            [-74.035125, 40.696068, 120],\n            [-74.030448, 40.69344, 120],\n            [-74.025456, 40.691173, 120],\n            [-74.020194, 40.689288, 120],\n            [-74.014714, 40.687802, 120],\n            [-74.009069, 40.68673, 120],\n            [-74.003312, 40.686083, 120],\n            [-73.9975, 40.685867, 120],\n            [-73.991688, 40.686083, 120],\n            [-73.985931, 40.68673, 120],\n            [-73.980286, 40.687802, 120],\n            [-73.974806, 40.689288, 120],\n            [-73.969544, 40.691173, 120],\n            [-73.964552, 40.69344, 120],\n            [-73.959875, 40.696068, 120],\n            [-73.955561, 40.69903, 120],\n            [-73.95165, 40.702298, 120],\n            [-73.94818, 40.705841, 120],\n            [-73.945184, 40.709624, 120],\n            [-73.942692, 40.713612, 120],\n            [-73.940727, 40.717766, 120],\n            [-73.939309, 40.722046, 120],\n            [-73.938451, 40.726411, 120],\n            [-73.938161, 40.730818, 120],\n            [-73.938443, 40.735225, 120],\n            [-73.939294, 40.739591, 120],\n            [-73.940705, 40.743872, 120],\n            [-73.942664, 40.748028, 120],\n            [-73.945151, 40.752018, 120],\n            [-73.948143, 40.755804, 120],\n            [-73.951611, 40.75935, 120],\n            [-73.955521, 40.762621, 120],\n            [-73.959836, 40.765586, 120],\n            [-73.964515, 40.768216, 120],\n            [-73.969511, 40.770486, 120],\n            [-73.974778, 40.772374, 120],\n            [-73.980264, 40.773862, 120],\n            [-73.985916, 40.774934, 120],\n            [-73.99168, 40.775582, 120],\n            [-73.9975, 40.775799, 120]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.056839, 40.730818, 120],\n            [-74.055302, 40.732853, 120],\n            [-74.052325, 40.734262, 120],\n            [-74.048754, 40.735355, 120],\n            [-74.044876, 40.736239, 120],\n            [-74.040832, 40.73697, 120],\n            [-74.036706, 40.737578, 120],\n            [-74.032549, 40.738085, 120],\n            [-74.028398, 40.738507, 120],\n            [-74.024279, 40.738856, 120],\n            [-74.020211, 40.739139, 120],\n            [-74.016209, 40.739366, 120],\n            [-74.012284, 40.739542, 120],\n            [-74.008444, 40.739671, 120],\n            [-74.004697, 40.73976, 120],\n            [-74.001048, 40.73981, 120],\n            [-73.9975, 40.739826, 120],\n            [-73.993952, 40.73981, 120],\n            [-73.990303, 40.73976, 120],\n            [-73.986556, 40.739671, 120],\n            [-73.982716, 40.739542, 120],\n            [-73.978791, 40.739366, 120],\n            [-73.974789, 40.739139, 120],\n            [-73.970721, 40.738856, 120],\n            [-73.966602, 40.738507, 120],\n            [-73.962451, 40.738085, 120],\n            [-73.958294, 40.737578, 120],\n            [-73.954168, 40.73697, 120],\n            [-73.950124, 40.736239, 120],\n            [-73.946246, 40.735355, 120],\n            [-73.942675, 40.734262, 120],\n            [-73.939698, 40.732853, 120],\n            [-73.938161, 40.730818, 120],\n            [-73.939701, 40.728784, 120],\n            [-73.942681, 40.727378, 120],\n            [-73.946253, 40.726289, 120],\n            [-73.950132, 40.725407, 120],\n            [-73.954176, 40.72468, 120],\n            [-73.958302, 40.724075, 120],\n            [-73.962459, 40.72357, 120],\n            [-73.966609, 40.723151, 120],\n            [-73.970728, 40.722804, 120],\n            [-73.974795, 40.722522, 120],\n            [-73.978796, 40.722297, 120],\n            [-73.98272, 40.722122, 120],\n            [-73.986559, 40.721994, 120],\n            [-73.990305, 40.721906, 120],\n            [-73.993953, 40.721856, 120],\n            [-73.9975, 40.72184, 120],\n            [-74.001047, 40.721856, 120],\n            [-74.004695, 40.721906, 120],\n            [-74.008441, 40.721994, 120],\n            [-74.01228, 40.722122, 120],\n            [-74.016204, 40.722297, 120],\n            [-74.020205, 40.722522, 120],\n            [-74.024272, 40.722804, 120],\n            [-74.028391, 40.723151, 120],\n            [-74.032541, 40.72357, 120],\n            [-74.036698, 40.724075, 120],\n            [-74.040824, 40.72468, 120],\n            [-74.044868, 40.725407, 120],\n            [-74.048747, 40.726289, 120],\n            [-74.052319, 40.727378, 120],\n            [-74.055299, 40.728784, 120],\n            [-74.056839, 40.730818, 120]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.9975, 40.775799, 120],\n            [-73.994813, 40.774633, 120],\n            [-73.992956, 40.772376, 120],\n            [-73.991515, 40.769669, 120],\n            [-73.990349, 40.76673, 120],\n            [-73.989387, 40.763666, 120],\n            [-73.988587, 40.760539, 120],\n            [-73.987919, 40.757389, 120],\n            [-73.987364, 40.754244, 120],\n            [-73.986906, 40.751122, 120],\n            [-73.986533, 40.74804, 120],\n            [-73.986235, 40.745008, 120],\n            [-73.986004, 40.742034, 120],\n            [-73.985834, 40.739125, 120],\n            [-73.985719, 40.736286, 120],\n            [-73.985653, 40.73352, 120],\n            [-73.985632, 40.730832, 120],\n            [-73.985654, 40.728144, 120],\n            [-73.985721, 40.725379, 120],\n            [-73.985837, 40.72254, 120],\n            [-73.986008, 40.719631, 120],\n            [-73.98624, 40.716657, 120],\n            [-73.986538, 40.713625, 120],\n            [-73.986912, 40.710543, 120],\n            [-73.987371, 40.707422, 120],\n            [-73.987927, 40.704276, 120],\n            [-73.988595, 40.701126, 120],\n            [-73.989395, 40.697999, 120],\n            [-73.990357, 40.694935, 120],\n            [-73.991522, 40.691996, 120],\n            [-73.992961, 40.68929, 120],\n            [-73.994817, 40.687033, 120],\n            [-73.9975, 40.685867, 120],\n            [-74.000183, 40.687033, 120],\n            [-74.002039, 40.68929, 120],\n            [-74.003478, 40.691996, 120],\n            [-74.004643, 40.694935, 120],\n            [-74.005605, 40.697999, 120],\n            [-74.006405, 40.701126, 120],\n            [-74.007073, 40.704276, 120],\n            [-74.007629, 40.707422, 120],\n            [-74.008088, 40.710543, 120],\n            [-74.008462, 40.713625, 120],\n            [-74.00876, 40.716657, 120],\n            [-74.008992, 40.719631, 120],\n            [-74.009163, 40.72254, 120],\n            [-74.009279, 40.725379, 120],\n            [-74.009346, 40.728144, 120],\n            [-74.009368, 40.730832, 120],\n            [-74.009347, 40.73352, 120],\n            [-74.009281, 40.736286, 120],\n            [-74.009166, 40.739125, 120],\n            [-74.008996, 40.742034, 120],\n            [-74.008765, 40.745008, 120],\n            [-74.008467, 40.74804, 120],\n            [-74.008094, 40.751122, 120],\n            [-74.007636, 40.754244, 120],\n            [-74.007081, 40.757389, 120],\n            [-74.006413, 40.760539, 120],\n            [-74.005613, 40.763666, 120],\n            [-74.004651, 40.76673, 120],\n            [-74.003485, 40.769669, 120],\n            [-74.002044, 40.772376, 120],\n            [-74.000187, 40.774633, 120],\n            [-73.9975, 40.775799, 120]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test/out/simple.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"xSemiAxis\": 5,\n        \"ySemiAxis\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.9975, 40.730833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.9975, 40.775799],\n            [-74.00332, 40.775582],\n            [-74.009084, 40.774934],\n            [-74.014736, 40.773862],\n            [-74.020222, 40.772374],\n            [-74.025489, 40.770486],\n            [-74.030485, 40.768216],\n            [-74.035164, 40.765586],\n            [-74.039479, 40.762621],\n            [-74.043389, 40.75935],\n            [-74.046857, 40.755804],\n            [-74.049849, 40.752018],\n            [-74.052336, 40.748028],\n            [-74.054295, 40.743872],\n            [-74.055706, 40.739591],\n            [-74.056557, 40.735225],\n            [-74.056839, 40.730818],\n            [-74.056549, 40.726411],\n            [-74.055691, 40.722046],\n            [-74.054273, 40.717766],\n            [-74.052308, 40.713612],\n            [-74.049816, 40.709624],\n            [-74.04682, 40.705841],\n            [-74.04335, 40.702298],\n            [-74.039439, 40.69903],\n            [-74.035125, 40.696068],\n            [-74.030448, 40.69344],\n            [-74.025456, 40.691173],\n            [-74.020194, 40.689288],\n            [-74.014714, 40.687802],\n            [-74.009069, 40.68673],\n            [-74.003312, 40.686083],\n            [-73.9975, 40.685867],\n            [-73.991688, 40.686083],\n            [-73.985931, 40.68673],\n            [-73.980286, 40.687802],\n            [-73.974806, 40.689288],\n            [-73.969544, 40.691173],\n            [-73.964552, 40.69344],\n            [-73.959875, 40.696068],\n            [-73.955561, 40.69903],\n            [-73.95165, 40.702298],\n            [-73.94818, 40.705841],\n            [-73.945184, 40.709624],\n            [-73.942692, 40.713612],\n            [-73.940727, 40.717766],\n            [-73.939309, 40.722046],\n            [-73.938451, 40.726411],\n            [-73.938161, 40.730818],\n            [-73.938443, 40.735225],\n            [-73.939294, 40.739591],\n            [-73.940705, 40.743872],\n            [-73.942664, 40.748028],\n            [-73.945151, 40.752018],\n            [-73.948143, 40.755804],\n            [-73.951611, 40.75935],\n            [-73.955521, 40.762621],\n            [-73.959836, 40.765586],\n            [-73.964515, 40.768216],\n            [-73.969511, 40.770486],\n            [-73.974778, 40.772374],\n            [-73.980264, 40.773862],\n            [-73.985916, 40.774934],\n            [-73.99168, 40.775582],\n            [-73.9975, 40.775799]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.056839, 40.730818],\n            [-74.055302, 40.732853],\n            [-74.052325, 40.734262],\n            [-74.048754, 40.735355],\n            [-74.044876, 40.736239],\n            [-74.040832, 40.73697],\n            [-74.036706, 40.737578],\n            [-74.032549, 40.738085],\n            [-74.028398, 40.738507],\n            [-74.024279, 40.738856],\n            [-74.020211, 40.739139],\n            [-74.016209, 40.739366],\n            [-74.012284, 40.739542],\n            [-74.008444, 40.739671],\n            [-74.004697, 40.73976],\n            [-74.001048, 40.73981],\n            [-73.9975, 40.739826],\n            [-73.993952, 40.73981],\n            [-73.990303, 40.73976],\n            [-73.986556, 40.739671],\n            [-73.982716, 40.739542],\n            [-73.978791, 40.739366],\n            [-73.974789, 40.739139],\n            [-73.970721, 40.738856],\n            [-73.966602, 40.738507],\n            [-73.962451, 40.738085],\n            [-73.958294, 40.737578],\n            [-73.954168, 40.73697],\n            [-73.950124, 40.736239],\n            [-73.946246, 40.735355],\n            [-73.942675, 40.734262],\n            [-73.939698, 40.732853],\n            [-73.938161, 40.730818],\n            [-73.939701, 40.728784],\n            [-73.942681, 40.727378],\n            [-73.946253, 40.726289],\n            [-73.950132, 40.725407],\n            [-73.954176, 40.72468],\n            [-73.958302, 40.724075],\n            [-73.962459, 40.72357],\n            [-73.966609, 40.723151],\n            [-73.970728, 40.722804],\n            [-73.974795, 40.722522],\n            [-73.978796, 40.722297],\n            [-73.98272, 40.722122],\n            [-73.986559, 40.721994],\n            [-73.990305, 40.721906],\n            [-73.993953, 40.721856],\n            [-73.9975, 40.72184],\n            [-74.001047, 40.721856],\n            [-74.004695, 40.721906],\n            [-74.008441, 40.721994],\n            [-74.01228, 40.722122],\n            [-74.016204, 40.722297],\n            [-74.020205, 40.722522],\n            [-74.024272, 40.722804],\n            [-74.028391, 40.723151],\n            [-74.032541, 40.72357],\n            [-74.036698, 40.724075],\n            [-74.040824, 40.72468],\n            [-74.044868, 40.725407],\n            [-74.048747, 40.726289],\n            [-74.052319, 40.727378],\n            [-74.055299, 40.728784],\n            [-74.056839, 40.730818]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 6,\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.9975, 40.775799],\n            [-73.994813, 40.774633],\n            [-73.992956, 40.772376],\n            [-73.991515, 40.769669],\n            [-73.990349, 40.76673],\n            [-73.989387, 40.763666],\n            [-73.988587, 40.760539],\n            [-73.987919, 40.757389],\n            [-73.987364, 40.754244],\n            [-73.986906, 40.751122],\n            [-73.986533, 40.74804],\n            [-73.986235, 40.745008],\n            [-73.986004, 40.742034],\n            [-73.985834, 40.739125],\n            [-73.985719, 40.736286],\n            [-73.985653, 40.73352],\n            [-73.985632, 40.730832],\n            [-73.985654, 40.728144],\n            [-73.985721, 40.725379],\n            [-73.985837, 40.72254],\n            [-73.986008, 40.719631],\n            [-73.98624, 40.716657],\n            [-73.986538, 40.713625],\n            [-73.986912, 40.710543],\n            [-73.987371, 40.707422],\n            [-73.987927, 40.704276],\n            [-73.988595, 40.701126],\n            [-73.989395, 40.697999],\n            [-73.990357, 40.694935],\n            [-73.991522, 40.691996],\n            [-73.992961, 40.68929],\n            [-73.994817, 40.687033],\n            [-73.9975, 40.685867],\n            [-74.000183, 40.687033],\n            [-74.002039, 40.68929],\n            [-74.003478, 40.691996],\n            [-74.004643, 40.694935],\n            [-74.005605, 40.697999],\n            [-74.006405, 40.701126],\n            [-74.007073, 40.704276],\n            [-74.007629, 40.707422],\n            [-74.008088, 40.710543],\n            [-74.008462, 40.713625],\n            [-74.00876, 40.716657],\n            [-74.008992, 40.719631],\n            [-74.009163, 40.72254],\n            [-74.009279, 40.725379],\n            [-74.009346, 40.728144],\n            [-74.009368, 40.730832],\n            [-74.009347, 40.73352],\n            [-74.009281, 40.736286],\n            [-74.009166, 40.739125],\n            [-74.008996, 40.742034],\n            [-74.008765, 40.745008],\n            [-74.008467, 40.74804],\n            [-74.008094, 40.751122],\n            [-74.007636, 40.754244],\n            [-74.007081, 40.757389],\n            [-74.006413, 40.760539],\n            [-74.005613, 40.763666],\n            [-74.004651, 40.76673],\n            [-74.003485, 40.769669],\n            [-74.002044, 40.772376],\n            [-74.000187, 40.774633],\n            [-73.9975, 40.775799]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-ellipse/test.ts",
    "content": "import test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { circle } from \"@turf/circle\";\nimport { truncate } from \"@turf/truncate\";\nimport { check } from \"@placemarkio/check-geojson\";\nimport { featureCollection } from \"@turf/helpers\";\nimport { intersect } from \"@turf/intersect\";\nimport { area } from \"@turf/area\";\nimport { ellipse } from \"./index.js\";\nimport fs from \"fs\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-ellipse\", (t) => {\n  fixtures.forEach((fixture) => {\n    console.log(fixture.filename);\n    const filename = fixture.filename;\n    const name = fixture.name;\n    const geojson = fixture.geojson;\n    const center = geojson.geometry.coordinates;\n    let { xSemiAxis, ySemiAxis, steps, angle, units, accuracy } =\n      geojson.properties;\n    angle = angle || 0;\n    const options = {\n      steps: steps,\n      angle: angle,\n      units: units,\n      accuracy: accuracy,\n    };\n    const maxAxis = Math.max(xSemiAxis, ySemiAxis);\n\n    const results = featureCollection([\n      geojson,\n      truncate(colorize(circle(center, maxAxis, options), \"#F00\")),\n      truncate(\n        colorize(ellipse(center, xSemiAxis, ySemiAxis, options), \"#00F\")\n      ),\n      truncate(\n        colorize(\n          ellipse(center, xSemiAxis, ySemiAxis, {\n            steps,\n            angle: angle + 90,\n            units,\n            accuracy: accuracy,\n          }),\n          \"#0F0\"\n        )\n      ),\n    ]);\n\n    // Save to file\n    const out = path.join(directories.out, filename);\n    if (process.env.REGEN) writeJsonFileSync(out, results);\n    t.deepEqual(results, loadJsonFileSync(out), name);\n  });\n  t.end();\n});\n\ntest(\"turf-ellipse -- circle consistency\", (t) => {\n  const ellipseGeom = truncate(ellipse([0, 60], 2000, 2000, { steps: 300 }));\n  const circleGeom = truncate(circle([0, 60], 2000, { steps: 300 }));\n  const intersectionGeom = intersect(\n    featureCollection([ellipseGeom, circleGeom])\n  );\n  const areaIntersection =\n    intersectionGeom != null ? area(intersectionGeom.geometry) : 0;\n  const areaCircle = circleGeom != null ? area(circleGeom.geometry) : 0;\n  t.true(\n    Math.abs(areaIntersection - areaCircle) / areaCircle < 0.00001,\n    \"both areas are equal\"\n  );\n  t.end();\n});\n\ntest(\"turf-ellipse -- rotation consistency\", (t) => {\n  const ellipseGeom = ellipse([0, 60], 2000, 2000, { angle: 0 });\n  const ellipseTurnedGeom = ellipse([0, 60], 2000, 2000, { angle: 90 });\n  const intersectionGeom = intersect(\n    featureCollection([ellipseGeom, ellipseTurnedGeom])\n  );\n  const areaIntersection =\n    intersectionGeom != null ? area(intersectionGeom.geometry) : 0;\n  const areaEllipse = ellipseGeom != null ? area(ellipseGeom.geometry) : 0;\n  t.true(\n    Math.abs(areaIntersection - areaEllipse) / areaEllipse < 0.00001,\n    \"both areas are equal\"\n  );\n  t.end();\n});\n\ntest(\"turf-ellipse -- with coordinates\", (t) => {\n  t.assert(ellipse([-100, 75], 5, 1));\n  t.end();\n});\n\ntest(\"turf-ellipse -- validate geojson\", (t) => {\n  const E = ellipse([0, 0], 10, 20);\n  try {\n    check(JSON.stringify(E));\n    t.pass();\n  } catch (e) {\n    t.fail(e.message);\n  }\n  t.end();\n});\n\nfunction colorize(feature, color) {\n  color = color || \"#F00\";\n  feature.properties[\"stroke-width\"] = 6;\n  feature.properties.stroke = color;\n  feature.properties.fill = color;\n  feature.properties[\"fill-opacity\"] = 0;\n  return feature;\n}\n"
  },
  {
    "path": "packages/turf-ellipse/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-envelope/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-envelope/README.md",
    "content": "# @turf/envelope\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## envelope\n\nTakes any number of features and returns a rectangular [Polygon][1] that encompasses all vertices.\n\n### Parameters\n\n*   `geojson` **[GeoJSON][2]** input features\n\n### Examples\n\n```javascript\nvar features = turf.featureCollection([\n  turf.point([-75.343, 39.984], {\"name\": \"Location A\"}),\n  turf.point([-75.833, 39.284], {\"name\": \"Location B\"}),\n  turf.point([-75.534, 39.123], {\"name\": \"Location C\"})\n]);\n\nvar enveloped = turf.envelope(features);\n\n//addToMap\nvar addToMap = [features, enveloped];\n```\n\nReturns **[Feature][3]<[Polygon][1]>** a rectangular Polygon feature that encompasses all vertices\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/envelope\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-envelope/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { envelope } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst fixture = loadJsonFileSync(\n  path.join(__dirname, \"test\", \"in\", \"feature-collection.geojson\")\n);\n\nvar suite = new Benchmark.Suite(\"turf-envelope\");\nsuite\n  .add(\"turf-envelope\", function () {\n    envelope(fixture);\n  })\n  .on(\"cycle\", function (event) {\n    console.log(String(event.target));\n  })\n  .run();\n"
  },
  {
    "path": "packages/turf-envelope/index.ts",
    "content": "import type { Feature, Polygon } from \"geojson\";\nimport type { AllGeoJSON } from \"@turf/helpers\";\nimport { bbox } from \"@turf/bbox\";\nimport { bboxPolygon } from \"@turf/bbox-polygon\";\n\n/**\n * Takes any number of features and returns a rectangular {@link Polygon} that encompasses all vertices.\n *\n * @function\n * @param {GeoJSON} geojson input features\n * @returns {Feature<Polygon>} a rectangular Polygon feature that encompasses all vertices\n * @example\n * var features = turf.featureCollection([\n *   turf.point([-75.343, 39.984], {\"name\": \"Location A\"}),\n *   turf.point([-75.833, 39.284], {\"name\": \"Location B\"}),\n *   turf.point([-75.534, 39.123], {\"name\": \"Location C\"})\n * ]);\n *\n * var enveloped = turf.envelope(features);\n *\n * //addToMap\n * var addToMap = [features, enveloped];\n */\nfunction envelope(geojson: AllGeoJSON): Feature<Polygon> {\n  return bboxPolygon(bbox(geojson));\n}\n\nexport { envelope };\nexport default envelope;\n"
  },
  {
    "path": "packages/turf-envelope/package.json",
    "content": "{\n  \"name\": \"@turf/envelope\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes any number of features and returns a rectangular Polygon that encompasses all vertices.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"envelope\",\n    \"polygon\",\n    \"extent\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/bbox-polygon\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-envelope/test/in/feature-collection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [102.0, 0.5]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [102.0, -10.0],\n          [103.0, 1.0],\n          [104.0, 0.0],\n          [130.0, 4.0]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20.0, 0.0],\n            [101.0, 0.0],\n            [101.0, 1.0],\n            [100.0, 1.0],\n            [100.0, 0.0]\n          ]\n        ]\n      },\n      \"properties\": {}\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-envelope/test.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { envelope } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n// Fixtures\nconst fc = loadJsonFileSync(\n  path.join(__dirname, \"test\", \"in\", \"feature-collection.geojson\")\n);\n\ntest(\"envelope\", (t) => {\n  const enveloped = envelope(fc);\n  t.ok(\n    enveloped,\n    \"should return a polygon that represents the bbox around a feature or feature collection\"\n  );\n  t.equal(enveloped.geometry.type, \"Polygon\");\n  t.deepEqual(\n    enveloped.geometry.coordinates,\n    [\n      [\n        [20, -10],\n        [130, -10],\n        [130, 4],\n        [20, 4],\n        [20, -10],\n      ],\n    ],\n    \"positions are correct\"\n  );\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-envelope/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-explode/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-explode/README.md",
    "content": "# @turf/explode\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## explode\n\nTakes a feature or set of features and returns all positions as [points][1].\n\n### Parameters\n\n*   `geojson` **[GeoJSON][2]** input features\n\n### Examples\n\n```javascript\nvar polygon = turf.polygon([[[-81, 41], [-88, 36], [-84, 31], [-80, 33], [-77, 39], [-81, 41]]]);\n\nvar explode = turf.explode(polygon);\n\n//addToMap\nvar addToMap = [polygon, explode]\n```\n\n*   Throws **[Error][3]** if it encounters an unknown geometry type\n\nReturns **[FeatureCollection][4]\\<point>** points representing the exploded input features\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/explode\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-explode/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { polygon } from \"@turf/helpers\";\nimport { explode } from \"./index.js\";\n\nvar poly = polygon([\n  [\n    [0, 0],\n    [0, 10],\n    [10, 10],\n    [10, 0],\n    [0, 0],\n  ],\n]);\n\nvar suite = new Benchmark.Suite(\"turf-explode\");\nsuite\n  .add(\"turf-explode\", () => {\n    explode(poly);\n  })\n  .on(\"cycle\", (event) => {\n    console.log(String(event.target));\n  })\n  .run();\n"
  },
  {
    "path": "packages/turf-explode/index.ts",
    "content": "import { coordEach, featureEach } from \"@turf/meta\";\nimport { point, featureCollection } from \"@turf/helpers\";\nimport type { AllGeoJSON } from \"@turf/helpers\";\nimport type { Feature, FeatureCollection, Point } from \"geojson\";\n\n/**\n * Takes a feature or set of features and returns all positions as {@link Point|points}.\n *\n * @function\n * @param {GeoJSON} geojson input features\n * @returns {FeatureCollection<point>} points representing the exploded input features\n * @throws {Error} if it encounters an unknown geometry type\n * @example\n * var polygon = turf.polygon([[[-81, 41], [-88, 36], [-84, 31], [-80, 33], [-77, 39], [-81, 41]]]);\n *\n * var explode = turf.explode(polygon);\n *\n * //addToMap\n * var addToMap = [polygon, explode]\n */\nfunction explode(geojson: AllGeoJSON): FeatureCollection<Point> {\n  const points: Feature<Point>[] = [];\n  if (geojson.type === \"FeatureCollection\") {\n    featureEach(geojson, function (feature) {\n      coordEach(feature, function (coord) {\n        points.push(point(coord, feature.properties));\n      });\n    });\n  } else if (geojson.type === \"Feature\") {\n    coordEach(geojson, function (coord) {\n      points.push(point(coord, geojson.properties));\n    });\n  } else {\n    // No properties to copy.\n    coordEach(geojson, function (coord) {\n      points.push(point(coord));\n    });\n  }\n\n  return featureCollection(points);\n}\n\nexport { explode };\nexport default explode;\n"
  },
  {
    "path": "packages/turf-explode/package.json",
    "content": "{\n  \"name\": \"@turf/explode\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a feature or set of features and returns all positions as points.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"geospatial\",\n    \"coordinates\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-explode/test/in/geometrycollection-0-0.json",
    "content": "{\n  \"type\": \"GeometryCollection\",\n  \"geometries\": [\n    {\n      \"type\": \"Point\",\n      \"coordinates\": [100, 0]\n    },\n    {\n      \"type\": \"LineString\",\n      \"coordinates\": [\n        [101, 0],\n        [102, 1]\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/in/geometrycollection-xyz-0-6.json",
    "content": "{\n  \"type\": \"GeometryCollection\",\n  \"geometries\": [\n    {\n      \"type\": \"Point\",\n      \"coordinates\": [100, 0, 3]\n    },\n    {\n      \"type\": \"LineString\",\n      \"coordinates\": [\n        [101, 0, 5],\n        [102, 1, 8]\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/in/multilinestring-0-5.json",
    "content": "{\n  \"type\": \"MultiLineString\",\n  \"coordinates\": [\n    [\n      [100, 0],\n      [101, 1]\n    ],\n    [\n      [102, 2],\n      [103, 3]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/in/multilinestring-xyz-0-11.json",
    "content": "{\n  \"type\": \"MultiLineString\",\n  \"coordinates\": [\n    [\n      [100, 0, 5.2],\n      [101, 1, 8.1]\n    ],\n    [\n      [102, 2, 2.3],\n      [103, 3, 7.4]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/in/multipoint-0-3.json",
    "content": "{\n  \"type\": \"MultiPoint\",\n  \"coordinates\": [\n    [100, 0],\n    [101, 1]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/in/multipoint-xyz-0-9.json",
    "content": "{\n  \"type\": \"MultiPoint\",\n  \"coordinates\": [\n    [100, 0, 1],\n    [101, 1, 2]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/in/multipolygon-0-4.json",
    "content": "{\n  \"type\": \"MultiPolygon\",\n  \"coordinates\": [\n    [\n      [\n        [102, 2],\n        [103, 2],\n        [103, 3],\n        [102, 3],\n        [102, 2]\n      ]\n    ],\n    [\n      [\n        [100, 0],\n        [101, 0],\n        [101, 1],\n        [100, 1],\n        [100, 0]\n      ],\n      [\n        [100.2, 0.2],\n        [100.8, 0.2],\n        [100.8, 0.8],\n        [100.2, 0.8],\n        [100.2, 0.2]\n      ]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/in/multipolygon-xyz-0-10.json",
    "content": "{\n  \"type\": \"MultiPolygon\",\n  \"coordinates\": [\n    [\n      [\n        [102, 2, 1],\n        [103, 2, 1],\n        [103, 3, 1],\n        [102, 3, 1],\n        [102, 2, 1]\n      ]\n    ],\n    [\n      [\n        [100, 0, 2],\n        [101, 0, 2],\n        [101, 1, 2],\n        [100, 1, 2],\n        [100, 0, 2]\n      ],\n      [\n        [100.2, 0.2, 3],\n        [100.8, 0.2, 3],\n        [100.8, 0.8, 3],\n        [100.2, 0.8, 3],\n        [100.2, 0.2, 3]\n      ]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/in/one-1-0.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [102, 0.5]\n      },\n      \"properties\": {\n        \"prop0\": \"value0\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [102, 0],\n          [103, 1],\n          [104, 0],\n          [105, 1]\n        ]\n      },\n      \"properties\": {\n        \"prop0\": \"value0\",\n        \"prop1\": 0\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, 0],\n            [101, 0],\n            [101, 1],\n            [100, 1],\n            [100, 0]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"prop0\": \"value0\",\n        \"prop1\": {\n          \"this\": \"that\"\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/in/one-2-0.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [100, 0],\n        [101, 0],\n        [101, 1],\n        [100, 1],\n        [100, 0]\n      ]\n    ]\n  },\n  \"properties\": {\n    \"prop0\": \"value0\",\n    \"prop1\": {\n      \"this\": \"that\"\n    }\n  }\n}\n"
  },
  {
    "path": "packages/turf-explode/test/in/point-0-2.json",
    "content": "{\n  \"type\": \"Point\",\n  \"coordinates\": [100, 0]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/in/point-xyz-0-8.json",
    "content": "{\n  \"type\": \"Point\",\n  \"coordinates\": [100, 0, 1]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/in/polygon-0-1.json",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [100, 0],\n      [101, 0],\n      [101, 1],\n      [100, 1],\n      [100, 0]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/in/polygon-with-properties.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.24218749999999, 37.996162679728116],\n            [-88.24218749999999, 53.330872983017066],\n            [-64.3359375, 53.330872983017066],\n            [-64.3359375, 37.996162679728116],\n            [-88.24218749999999, 37.996162679728116]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/in/polygon-xyz-0-7.json",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [100, 0, 1],\n      [101, 0],\n      [101, 1, 1],\n      [100, 1, 1],\n      [100, 0, 1]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/out/geometrycollection-0-0.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [102, 1]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/out/geometrycollection-xyz-0-6.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0, 3]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 0, 5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [102, 1, 8]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/out/multilinestring-0-5.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [102, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [103, 3]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/out/multilinestring-xyz-0-11.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0, 5.2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 1, 8.1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [102, 2, 2.3]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [103, 3, 7.4]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/out/multipoint-0-3.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 1]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/out/multipoint-xyz-0-9.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 1, 2]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/out/multipolygon-0-4.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [102, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [103, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [103, 3]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [102, 3]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [102, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100.2, 0.2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100.8, 0.2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100.8, 0.8]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100.2, 0.8]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100.2, 0.2]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/out/multipolygon-xyz-0-10.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [102, 2, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [103, 2, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [103, 3, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [102, 3, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [102, 2, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 0, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 1, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 1, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100.2, 0.2, 3]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100.8, 0.2, 3]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100.8, 0.8, 3]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100.2, 0.8, 3]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100.2, 0.2, 3]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/out/one-1-0.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"prop0\": \"value0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [102, 0.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"prop0\": \"value0\",\n        \"prop1\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [102, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"prop0\": \"value0\",\n        \"prop1\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [103, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"prop0\": \"value0\",\n        \"prop1\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [104, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"prop0\": \"value0\",\n        \"prop1\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [105, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"prop0\": \"value0\",\n        \"prop1\": {\n          \"this\": \"that\"\n        }\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"prop0\": \"value0\",\n        \"prop1\": {\n          \"this\": \"that\"\n        }\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"prop0\": \"value0\",\n        \"prop1\": {\n          \"this\": \"that\"\n        }\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"prop0\": \"value0\",\n        \"prop1\": {\n          \"this\": \"that\"\n        }\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"prop0\": \"value0\",\n        \"prop1\": {\n          \"this\": \"that\"\n        }\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/out/one-2-0.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"prop0\": \"value0\",\n        \"prop1\": {\n          \"this\": \"that\"\n        }\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"prop0\": \"value0\",\n        \"prop1\": {\n          \"this\": \"that\"\n        }\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"prop0\": \"value0\",\n        \"prop1\": {\n          \"this\": \"that\"\n        }\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"prop0\": \"value0\",\n        \"prop1\": {\n          \"this\": \"that\"\n        }\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"prop0\": \"value0\",\n        \"prop1\": {\n          \"this\": \"that\"\n        }\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/out/point-0-2.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/out/point-xyz-0-8.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0, 1]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/out/polygon-0-1.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/out/polygon-with-properties.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-88.24218749999999, 37.996162679728116]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-88.24218749999999, 53.330872983017066]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-64.3359375, 53.330872983017066]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-64.3359375, 37.996162679728116]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-88.24218749999999, 37.996162679728116]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test/out/polygon-xyz-0-7.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0, 1]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-explode/test.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport tape from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { explode } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\ntape(\"explode - fixtures\", (t) => {\n  fs.readdirSync(directories.in).forEach((filename) => {\n    const name = filename.replace(\".json\", \"\");\n    const features = loadJsonFileSync(directories.in + filename);\n    const exploded = explode(features);\n    if (process.env.REGEN) {\n      writeJsonFileSync(directories.out + filename, exploded);\n    }\n    t.deepEqual(exploded, loadJsonFileSync(directories.out + filename), name);\n  });\n  t.end();\n});\n\ntape(\"explode - preserve properties\", (t) => {\n  const filename = \"polygon-with-properties.json\";\n  const features = loadJsonFileSync(directories.in + filename);\n  const exploded = explode(features);\n  if (process.env.REGEN) {\n    writeJsonFileSync(directories.out + filename, exploded);\n  }\n  t.deepEqual(\n    exploded,\n    loadJsonFileSync(directories.out + filename),\n    \"properties\"\n  );\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-explode/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-flatten/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-flatten/README.md",
    "content": "# @turf/flatten\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## flatten\n\nFlattens any [GeoJSON][1] to a [FeatureCollection][2] inspired by [geojson-flatten][3].\n\n### Parameters\n\n*   `geojson` **[GeoJSON][1]** any valid GeoJSON Object\n\n### Examples\n\n```javascript\nvar multiGeometry = turf.multiPolygon([\n  [[[102.0, 2.0], [103.0, 2.0], [103.0, 3.0], [102.0, 3.0], [102.0, 2.0]]],\n  [[[100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0]],\n  [[100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2]]]\n]);\n\nvar flatten = turf.flatten(multiGeometry);\n\n//addToMap\nvar addToMap = [flatten]\n```\n\nReturns **[FeatureCollection][2]\\<any>** all Multi-Geometries are flattened into single Features\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[3]: https://github.com/tmcw/geojson-flatten\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/flatten\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-flatten/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { flatten } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n// Define fixtures\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nlet fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n// fixtures = fixtures.filter(({name}) => (name === 'Polygon'));\n\n/**\n * Benchmark Results\n *\n * FeatureCollection x 678,568 ops/sec ±2.21% (86 runs sampled)\n * GeometryCollection x 627,806 ops/sec ±1.28% (87 runs sampled)\n * GeometryObject x 3,209,419 ops/sec ±1.18% (82 runs sampled)\n * MultiLineString x 3,743,664 ops/sec ±1.87% (85 runs sampled)\n * MultiPoint x 3,428,413 ops/sec ±5.65% (78 runs sampled)\n * MultiPolygon x 3,114,204 ops/sec ±4.52% (82 runs sampled)\n * Polygon x 22,219,812 ops/sec ±0.82% (88 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-flatten\");\nfor (const { geojson, name } of fixtures) {\n  suite.add(name, () => flatten(geojson));\n}\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-flatten/index.ts",
    "content": "import { flattenEach } from \"@turf/meta\";\nimport { featureCollection } from \"@turf/helpers\";\nimport type { AllGeoJSON } from \"@turf/helpers\";\nimport type {\n  Feature,\n  Point,\n  MultiPoint,\n  LineString,\n  MultiLineString,\n  FeatureCollection,\n  Polygon,\n  MultiPolygon,\n} from \"geojson\";\n\n/**\n * Flattens any {@link GeoJSON} to a {@link FeatureCollection} inspired by [geojson-flatten](https://github.com/tmcw/geojson-flatten).\n *\n * @function\n * @param {GeoJSON} geojson any valid GeoJSON Object\n * @returns {FeatureCollection<any>} all Multi-Geometries are flattened into single Features\n * @example\n * var multiGeometry = turf.multiPolygon([\n *   [[[102.0, 2.0], [103.0, 2.0], [103.0, 3.0], [102.0, 3.0], [102.0, 2.0]]],\n *   [[[100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0]],\n *   [[100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2]]]\n * ]);\n *\n * var flatten = turf.flatten(multiGeometry);\n *\n * //addToMap\n * var addToMap = [flatten]\n */\nfunction flatten<T extends Point | MultiPoint>(\n  geojson: Feature<T> | FeatureCollection<T> | T\n): FeatureCollection<Point>;\n\nfunction flatten<T extends LineString | MultiLineString>(\n  geojson: Feature<T> | FeatureCollection<T> | T\n): FeatureCollection<LineString>;\n\nfunction flatten<T extends Polygon | MultiPolygon>(\n  geojson: Feature<T> | FeatureCollection<T> | T\n): FeatureCollection<Polygon>;\n\nfunction flatten(geojson: AllGeoJSON): FeatureCollection<any>;\n\nfunction flatten(geojson: AllGeoJSON): FeatureCollection {\n  if (!geojson) throw new Error(\"geojson is required\");\n\n  var results: Feature[] = [];\n  flattenEach(geojson, function (feature) {\n    results.push(feature);\n  });\n  return featureCollection(results);\n}\n\nexport { flatten };\nexport default flatten;\n"
  },
  {
    "path": "packages/turf-flatten/package.json",
    "content": "{\n  \"name\": \"@turf/flatten\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Flattens any GeoJSON to a FeatureCollection\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Tom MacWright <@tmcw>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"geography\",\n    \"gis\",\n    \"featurecollection\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-flatten/test/in/FeatureCollection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [100, 0],\n          [101, 1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [102, 2],\n              [103, 2],\n              [103, 3],\n              [102, 3],\n              [102, 2]\n            ]\n          ],\n          [\n            [\n              [100, 0],\n              [101, 0],\n              [101, 1],\n              [100, 1],\n              [100, 0]\n            ],\n            [\n              [100.2, 0.2],\n              [100.8, 0.2],\n              [100.8, 0.8],\n              [100.2, 0.8],\n              [100.2, 0.2]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [100, 0],\n            [101, 1]\n          ],\n          [\n            [102, 2],\n            [103, 3]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-flatten/test/in/GeometryCollection.geojson",
    "content": "{\n  \"type\": \"GeometryCollection\",\n  \"geometries\": [\n    {\n      \"type\": \"MultiLineString\",\n      \"coordinates\": [\n        [\n          [100, 0],\n          [101, 1]\n        ],\n        [\n          [102, 2],\n          [103, 3]\n        ]\n      ]\n    },\n    {\n      \"type\": \"MultiPoint\",\n      \"coordinates\": [\n        [100, 0],\n        [101, 1]\n      ]\n    },\n    {\n      \"type\": \"MultiPolygon\",\n      \"coordinates\": [\n        [\n          [\n            [102, 2],\n            [103, 2],\n            [103, 3],\n            [102, 3],\n            [102, 2]\n          ]\n        ],\n        [\n          [\n            [100, 0],\n            [101, 0],\n            [101, 1],\n            [100, 1],\n            [100, 0]\n          ],\n          [\n            [100.2, 0.2],\n            [100.8, 0.2],\n            [100.8, 0.8],\n            [100.2, 0.8],\n            [100.2, 0.2]\n          ]\n        ]\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-flatten/test/in/GeometryObject.geojson",
    "content": "{\n  \"type\": \"MultiPolygon\",\n  \"coordinates\": [\n    [\n      [\n        [102, 2],\n        [103, 2],\n        [103, 3],\n        [102, 3],\n        [102, 2]\n      ]\n    ],\n    [\n      [\n        [100, 0],\n        [101, 0],\n        [101, 1],\n        [100, 1],\n        [100, 0]\n      ],\n      [\n        [100.2, 0.2],\n        [100.8, 0.2],\n        [100.8, 0.8],\n        [100.2, 0.8],\n        [100.2, 0.2]\n      ]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-flatten/test/in/MultiLineString.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"foo\": \"bar\"\n  },\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [100, 0],\n        [101, 1]\n      ],\n      [\n        [102, 2],\n        [103, 3]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-flatten/test/in/MultiPoint.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"foo\": \"bar\"\n  },\n  \"geometry\": {\n    \"type\": \"MultiPoint\",\n    \"coordinates\": [\n      [100, 0],\n      [101, 1]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-flatten/test/in/MultiPolygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"foo\": \"bar\"\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [102, 2],\n          [103, 2],\n          [103, 3],\n          [102, 3],\n          [102, 2]\n        ]\n      ],\n      [\n        [\n          [100, 0],\n          [101, 0],\n          [101, 1],\n          [100, 1],\n          [100, 0]\n        ],\n        [\n          [100.2, 0.2],\n          [100.8, 0.2],\n          [100.8, 0.8],\n          [100.2, 0.8],\n          [100.2, 0.2]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-flatten/test/in/Polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"foo\": \"bar\"\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [102, 2],\n        [103, 2],\n        [103, 3],\n        [102, 3],\n        [102, 2]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-flatten/test/out/FeatureCollection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [102, 2],\n            [103, 2],\n            [103, 3],\n            [102, 3],\n            [102, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, 0],\n            [101, 0],\n            [101, 1],\n            [100, 1],\n            [100, 0]\n          ],\n          [\n            [100.2, 0.2],\n            [100.8, 0.2],\n            [100.8, 0.8],\n            [100.2, 0.8],\n            [100.2, 0.2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [100, 0],\n          [101, 1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [102, 2],\n          [103, 3]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-flatten/test/out/GeometryCollection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [100, 0],\n          [101, 1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [102, 2],\n          [103, 3]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [102, 2],\n            [103, 2],\n            [103, 3],\n            [102, 3],\n            [102, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, 0],\n            [101, 0],\n            [101, 1],\n            [100, 1],\n            [100, 0]\n          ],\n          [\n            [100.2, 0.2],\n            [100.8, 0.2],\n            [100.8, 0.8],\n            [100.2, 0.8],\n            [100.2, 0.2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-flatten/test/out/GeometryObject.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [102, 2],\n            [103, 2],\n            [103, 3],\n            [102, 3],\n            [102, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, 0],\n            [101, 0],\n            [101, 1],\n            [100, 1],\n            [100, 0]\n          ],\n          [\n            [100.2, 0.2],\n            [100.8, 0.2],\n            [100.8, 0.8],\n            [100.2, 0.8],\n            [100.2, 0.2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-flatten/test/out/MultiLineString.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [100, 0],\n          [101, 1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [102, 2],\n          [103, 3]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-flatten/test/out/MultiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [101, 1]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-flatten/test/out/MultiPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [102, 2],\n            [103, 2],\n            [103, 3],\n            [102, 3],\n            [102, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, 0],\n            [101, 0],\n            [101, 1],\n            [100, 1],\n            [100, 0]\n          ],\n          [\n            [100.2, 0.2],\n            [100.8, 0.2],\n            [100.8, 0.8],\n            [100.2, 0.8],\n            [100.2, 0.2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-flatten/test/out/Polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [102, 2],\n            [103, 2],\n            [103, 3],\n            [102, 3],\n            [102, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-flatten/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { flatten } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nlet fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename: filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n// fixtures = fixtures.filter(({name}) => (name === 'FeatureCollection'));\n\ntest(\"flatten\", (t) => {\n  fixtures.forEach((fixture) => {\n    const filename = fixture.filename;\n    const name = fixture.name;\n    const geojson = fixture.geojson;\n\n    const flattened = flatten(geojson);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, flattened);\n    t.deepEqual(flattened, loadJsonFileSync(directories.out + filename), name);\n    t.equal(\n      flattened.type,\n      \"FeatureCollection\",\n      name + \": feature outputs a featurecollection\"\n    );\n\n    switch (geojson.geometry ? geojson.geometry.type : geojson.type) {\n      case \"Point\":\n      case \"LineString\":\n      case \"Polygon\":\n        break;\n      default:\n        t.true(\n          flattened.features.length > 1,\n          name + \": featureCollection has multiple features with feature input\"\n        );\n    }\n  });\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-flatten/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-flatten/types.ts",
    "content": "import { FeatureCollection, Point, LineString } from \"geojson\";\nimport {\n  multiPoint,\n  multiLineString,\n  geometryCollection,\n  // Typescript types\n} from \"@turf/helpers\";\nimport { flatten } from \"./index.js\";\n\nconst multiPt = multiPoint([\n  [0, 0],\n  [10, 10],\n]);\nconst multiLine = multiLineString([\n  [\n    [20, 20],\n    [30, 30],\n  ],\n  [\n    [0, 0],\n    [10, 10],\n  ],\n]);\n\nlet points: FeatureCollection<Point> = flatten(multiPt);\nlet lines: FeatureCollection<LineString> = flatten(multiLine);\npoints = flatten(multiPt.geometry);\nlines = flatten(multiLine.geometry);\n\nflatten(geometryCollection([multiPt.geometry, multiLine.geometry]));\n"
  },
  {
    "path": "packages/turf-flip/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-flip/README.md",
    "content": "# @turf/flip\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## flip\n\nTakes input features and flips all of their coordinates from `[x, y]` to `[y, x]`.\n\n### Parameters\n\n*   `geojson` **[GeoJSON][1]** input features\n*   `options` **[Object][2]** Optional parameters (optional, default `{}`)\n\n    *   `options.mutate` **[boolean][3]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`)\n\n### Examples\n\n```javascript\nvar serbia = turf.point([20.566406, 43.421008]);\n\nvar saudiArabia = turf.flip(serbia);\n\n//addToMap\nvar addToMap = [serbia, saudiArabia];\n```\n\nReturns **[GeoJSON][1]** a feature or set of features of the same type as `input` with flipped coordinates\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/flip\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-flip/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { flip } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * feature-collection-points x 7,937,394 ops/sec ±1.43% (89 runs sampled)\n * linestring x 6,496,534 ops/sec ±1.75% (86 runs sampled)\n * point-with-elevation x 10,779,300 ops/sec ±2.08% (84 runs sampled)\n * polygon x 4,454,602 ops/sec ±3.45% (86 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-flip\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => flip(geojson));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-flip/index.ts",
    "content": "import { coordEach } from \"@turf/meta\";\nimport { isObject, AllGeoJSON } from \"@turf/helpers\";\nimport { clone } from \"@turf/clone\";\n\n/**\n * Takes input features and flips all of their coordinates from `[x, y]` to `[y, x]`.\n *\n * @function\n * @param {GeoJSON} geojson input features\n * @param {Object} [options={}] Optional parameters\n * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true)\n * @returns {GeoJSON} a feature or set of features of the same type as `input` with flipped coordinates\n * @example\n * var serbia = turf.point([20.566406, 43.421008]);\n *\n * var saudiArabia = turf.flip(serbia);\n *\n * //addToMap\n * var addToMap = [serbia, saudiArabia];\n */\nfunction flip<T extends AllGeoJSON>(\n  geojson: T,\n  options?: {\n    mutate?: boolean;\n  }\n): T {\n  // Optional parameters\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  const mutate = options.mutate ?? false;\n\n  if (!geojson) throw new Error(\"geojson is required\");\n  // ensure that we don't modify features in-place and changes to the\n  // output do not change the previous feature, including changes to nested\n  // properties.\n  if (mutate === false || mutate === undefined) geojson = clone(geojson);\n\n  coordEach(geojson, function (coord) {\n    var x = coord[0];\n    var y = coord[1];\n    coord[0] = y;\n    coord[1] = x;\n  });\n  return geojson;\n}\n\nexport { flip };\nexport default flip;\n"
  },
  {
    "path": "packages/turf-flip/package.json",
    "content": "{\n  \"name\": \"@turf/flip\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes input features and flips all of their coordinates.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"coordinate\",\n    \"flip\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/clone\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-flip/test/in/feature-collection-points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-41.40625, 38.54816542304656]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.4609375, 13.923403897723347]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-flip/test/in/linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [13.359375, 50.51342652633956],\n      [13.359375, 40.97989806962013],\n      [35.15625, 30.751277776257812],\n      [58.00781249999999, 30.751277776257812],\n      [63.984375, 18.312810846425442]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-flip/test/in/point-with-elevation.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [77.34374999999999, 43.58039085560784, 3000]\n  }\n}\n"
  },
  {
    "path": "packages/turf-flip/test/in/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [2.8125, 41.50857729743935],\n        [-2.109375, 32.24997445586331],\n        [7.3828125, 18.979025953255267],\n        [22.148437499999996, 20.96143961409684],\n        [24.960937499999996, 33.7243396617476],\n        [21.09375, 41.50857729743935],\n        [14.0625, 46.558860303117164],\n        [2.8125, 41.50857729743935]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-flip/test/out/feature-collection-points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [38.54816542304656, -41.40625]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [13.923403897723347, 2.4609375]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-flip/test/out/linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [50.51342652633956, 13.359375],\n      [40.97989806962013, 13.359375],\n      [30.751277776257812, 35.15625],\n      [30.751277776257812, 58.00781249999999],\n      [18.312810846425442, 63.984375]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-flip/test/out/point-with-elevation.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [43.58039085560784, 77.34374999999999, 3000]\n  }\n}\n"
  },
  {
    "path": "packages/turf-flip/test/out/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [41.50857729743935, 2.8125],\n        [32.24997445586331, -2.109375],\n        [18.979025953255267, 7.3828125],\n        [20.96143961409684, 22.148437499999996],\n        [33.7243396617476, 24.960937499999996],\n        [41.50857729743935, 21.09375],\n        [46.558860303117164, 14.0625],\n        [41.50857729743935, 2.8125]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-flip/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { point } from \"@turf/helpers\";\nimport { flip } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-flip\", (t) => {\n  fixtures.forEach((fixture) => {\n    const name = fixture.name;\n    const filename = fixture.filename;\n    const geojson = fixture.geojson;\n    const results = flip(geojson);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEqual(loadJsonFileSync(directories.out + filename), results, name);\n  });\n  t.end();\n});\n\ntest(\"turf-flip - handle input mutation\", (t) => {\n  const geojson = point([120, 40]);\n  flip(geojson);\n  t.deepEqual(geojson, point([120, 40]), \"does not mutate input\");\n  flip(geojson, { mutate: true });\n  t.deepEqual(geojson, point([40, 120]), \"does mutate input\");\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-flip/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-flip/types.ts",
    "content": "import {\n  featureCollection,\n  point,\n  lineString,\n  geometryCollection,\n} from \"@turf/helpers\";\nimport { flip } from \"./index.js\";\n\nconst pt = point([120.1234567, 40.1234567]);\nconst ptGeom = pt.geometry;\nconst line = lineString([\n  [20, 80],\n  [50, 40],\n]);\nconst lineGeom = line.geometry;\nconst points = featureCollection([pt]);\nconst lines = featureCollection([line]);\nconst geomCollection = geometryCollection([ptGeom, lineGeom]);\n\nflip(pt);\nflip(ptGeom);\nflip(line);\nflip(lineGeom);\nflip(lines);\nflip(points);\nflip(geomCollection, { mutate: true });\n"
  },
  {
    "path": "packages/turf-geojson-rbush/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-geojson-rbush/README.md",
    "content": "# @turf/geojson-rbush\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## rbush\n\n### insert\n\n[insert][1]\n\n#### Parameters\n\n*   `feature` **[Feature][2]** insert single GeoJSON Feature\n\n#### Examples\n\n```javascript\nvar poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]);\ntree.insert(poly)\n```\n\nReturns **RBush** GeoJSON RBush\n\n### load\n\n[load][3]\n\n#### Parameters\n\n*   `features` **([FeatureCollection][4] | [Array][5]<[Feature][2]>)** load entire GeoJSON FeatureCollection\n\n#### Examples\n\n```javascript\nvar polys = turf.polygons([\n    [[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]],\n    [[[-93, 32], [-83, 32], [-83, 39], [-93, 39], [-93, 32]]]\n]);\ntree.load(polys);\n```\n\nReturns **RBush** GeoJSON RBush\n\n### remove\n\n[remove][6]\n\n#### Parameters\n\n*   `feature` **[Feature][2]** remove single GeoJSON Feature\n*   `equals` **[Function][7]** Pass a custom equals function to compare by value for removal.\n\n#### Examples\n\n```javascript\nvar poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]);\n\ntree.remove(poly);\n```\n\nReturns **RBush** GeoJSON RBush\n\n### clear\n\n[clear][6]\n\n#### Examples\n\n```javascript\ntree.clear()\n```\n\nReturns **RBush** GeoJSON Rbush\n\n### search\n\n[search][8]\n\n#### Parameters\n\n*   `geojson` **([BBox][9] | [FeatureCollection][4] | [Feature][2])** search with GeoJSON\n\n#### Examples\n\n```javascript\nvar poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]);\n\ntree.search(poly);\n```\n\nReturns **[FeatureCollection][4]** all features that intersects with the given GeoJSON.\n\n### collides\n\n[collides][10]\n\n#### Parameters\n\n*   `geojson` **([BBox][9] | [FeatureCollection][4] | [Feature][2])** collides with GeoJSON\n\n#### Examples\n\n```javascript\nvar poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]);\n\ntree.collides(poly);\n```\n\nReturns **[boolean][11]** true if there are any items intersecting the given GeoJSON, otherwise false.\n\n### all\n\n[all][8]\n\n#### Examples\n\n```javascript\ntree.all()\n```\n\nReturns **[FeatureCollection][4]** all the features in RBush\n\n### toJSON\n\n[toJSON][12]\n\n#### Examples\n\n```javascript\nvar exported = tree.toJSON()\n```\n\nReturns **any** export data as JSON object\n\n### fromJSON\n\n[fromJSON][12]\n\n#### Parameters\n\n*   `json` **any** import previously exported data\n\n#### Examples\n\n```javascript\nvar exported = {\n  \"children\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [110, 50]\n      },\n      \"properties\": {},\n      \"bbox\": [110, 50, 110, 50]\n    }\n  ],\n  \"height\": 1,\n  \"leaf\": true,\n  \"minX\": 110,\n  \"minY\": 50,\n  \"maxX\": 110,\n  \"maxY\": 50\n}\ntree.fromJSON(exported)\n```\n\nReturns **RBush** GeoJSON RBush\n\n## rbush\n\nGeoJSON implementation of [RBush][13] spatial index.\n\n### Parameters\n\n*   `maxEntries` **[number][14]** defines the maximum number of entries in a tree node. 9 (used by default) is a\n    reasonable choice for most applications. Higher value means faster insertion and slower search, and vice versa. (optional, default `9`)\n\n### Examples\n\n```javascript\nvar geojsonRbush = require('geojson-rbush').default;\nvar tree = geojsonRbush();\n```\n\nReturns **RBush** GeoJSON RBush\n\n### insert\n\n[insert][1]\n\n#### Parameters\n\n*   `feature` **[Feature][2]** insert single GeoJSON Feature\n\n#### Examples\n\n```javascript\nvar poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]);\ntree.insert(poly)\n```\n\nReturns **RBush** GeoJSON RBush\n\n### load\n\n[load][3]\n\n#### Parameters\n\n*   `features` **([FeatureCollection][4] | [Array][5]<[Feature][2]>)** load entire GeoJSON FeatureCollection\n\n#### Examples\n\n```javascript\nvar polys = turf.polygons([\n    [[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]],\n    [[[-93, 32], [-83, 32], [-83, 39], [-93, 39], [-93, 32]]]\n]);\ntree.load(polys);\n```\n\nReturns **RBush** GeoJSON RBush\n\n### remove\n\n[remove][6]\n\n#### Parameters\n\n*   `feature` **[Feature][2]** remove single GeoJSON Feature\n*   `equals` **[Function][7]** Pass a custom equals function to compare by value for removal.\n\n#### Examples\n\n```javascript\nvar poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]);\n\ntree.remove(poly);\n```\n\nReturns **RBush** GeoJSON RBush\n\n### clear\n\n[clear][6]\n\n#### Examples\n\n```javascript\ntree.clear()\n```\n\nReturns **RBush** GeoJSON Rbush\n\n### search\n\n[search][8]\n\n#### Parameters\n\n*   `geojson` **([BBox][9] | [FeatureCollection][4] | [Feature][2])** search with GeoJSON\n\n#### Examples\n\n```javascript\nvar poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]);\n\ntree.search(poly);\n```\n\nReturns **[FeatureCollection][4]** all features that intersects with the given GeoJSON.\n\n### collides\n\n[collides][10]\n\n#### Parameters\n\n*   `geojson` **([BBox][9] | [FeatureCollection][4] | [Feature][2])** collides with GeoJSON\n\n#### Examples\n\n```javascript\nvar poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]);\n\ntree.collides(poly);\n```\n\nReturns **[boolean][11]** true if there are any items intersecting the given GeoJSON, otherwise false.\n\n### all\n\n[all][8]\n\n#### Examples\n\n```javascript\ntree.all()\n```\n\nReturns **[FeatureCollection][4]** all the features in RBush\n\n### toJSON\n\n[toJSON][12]\n\n#### Examples\n\n```javascript\nvar exported = tree.toJSON()\n```\n\nReturns **any** export data as JSON object\n\n### fromJSON\n\n[fromJSON][12]\n\n#### Parameters\n\n*   `json` **any** import previously exported data\n\n#### Examples\n\n```javascript\nvar exported = {\n  \"children\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [110, 50]\n      },\n      \"properties\": {},\n      \"bbox\": [110, 50, 110, 50]\n    }\n  ],\n  \"height\": 1,\n  \"leaf\": true,\n  \"minX\": 110,\n  \"minY\": 50,\n  \"maxX\": 110,\n  \"maxY\": 50\n}\ntree.fromJSON(exported)\n```\n\nReturns **RBush** GeoJSON RBush\n\n[1]: https://github.com/mourner/rbush#data-format\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://github.com/mourner/rbush#bulk-inserting-data\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array\n\n[6]: https://github.com/mourner/rbush#removing-data\n\n[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function\n\n[8]: https://github.com/mourner/rbush#search\n\n[9]: https://tools.ietf.org/html/rfc7946#section-5\n\n[10]: https://github.com/mourner/rbush#collisions\n\n[11]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n[12]: https://github.com/mourner/rbush#export-and-import\n\n[13]: https://github.com/mourner/rbush#rbush\n\n[14]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/geojson-rbush\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-geojson-rbush/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { randomPoint, randomPolygon } from \"@turf/random\";\nimport { geojsonRbush } from \"./index.js\";\n\n// Fixtures\nconst points = randomPoint(3);\nconst point = points.features[0];\nconst polygons = randomPolygon(3);\nconst polygon = polygons.features[0];\n\n// Load trees before (used to benchmark search)\nconst pointsTree = geojsonRbush();\npointsTree.load(points);\nconst polygonsTree = geojsonRbush();\npolygonsTree.load(polygons);\n\n/**\n * Benchmark Results\n *\n * rbush.points x 313,979 ops/sec ±10.60% (67 runs sampled)\n * rbush.polygons x 428,333 ops/sec ±1.69% (70 runs sampled)\n * search.points x 5,986,675 ops/sec ±7.95% (77 runs sampled)\n * search.polygons x 6,481,248 ops/sec ±0.93% (90 runs sampled)\n */\nnew Benchmark.Suite(\"geojson-rbush\")\n  .add(\"rbush.points\", () => {\n    const tree = geojsonRbush();\n    tree.load(points);\n  })\n  .add(\"rbush.polygons\", () => {\n    const tree = geojsonRbush();\n    tree.load(polygons);\n  })\n  .add(\"search.points\", () => pointsTree.search(point))\n  .add(\"search.polygons\", () => polygonsTree.search(polygon))\n  .on(\"cycle\", (e: any) => console.log(String(e.target)))\n  .on(\"complete\", () => {})\n  .run();\n"
  },
  {
    "path": "packages/turf-geojson-rbush/index.ts",
    "content": "import rbush from \"rbush\";\nimport { featureCollection } from \"@turf/helpers\";\nimport { featureEach } from \"@turf/meta\";\nimport { bbox as turfBBox } from \"@turf/bbox\";\nimport {\n  BBox,\n  Feature,\n  FeatureCollection,\n  GeoJsonProperties,\n  Geometry,\n} from \"geojson\";\n\n/**\n * @module rbush\n */\n\n/**\n * Converts GeoJSON to {minX, minY, maxX, maxY} schema\n *\n * @memberof rbush\n * @private\n * @param {BBox|FeatureCollection|Feature} geojson feature(s) to retrieve BBox from\n * @returns {Object} converted to {minX, minY, maxX, maxY}\n */\nfunction toBBox(geojson: BBox | FeatureCollection | Feature) {\n  var bbox;\n  if ((geojson as any).bbox) bbox = (geojson as any).bbox;\n  else if (Array.isArray(geojson) && geojson.length === 4) bbox = geojson;\n  else if (Array.isArray(geojson) && geojson.length === 6)\n    bbox = [geojson[0], geojson[1], geojson[3], geojson[4]];\n  else if (geojson.type === \"Feature\") bbox = turfBBox(geojson);\n  else if (geojson.type === \"FeatureCollection\") bbox = turfBBox(geojson);\n  else throw new Error(\"invalid geojson\");\n\n  return {\n    minX: bbox[0],\n    minY: bbox[1],\n    maxX: bbox[2],\n    maxY: bbox[3],\n  };\n}\n\nclass RBush<G extends Geometry, P extends GeoJsonProperties> {\n  private tree: rbush<Feature<G, P>>;\n\n  constructor(maxEntries = 9) {\n    this.tree = new rbush<Feature<G, P>>(maxEntries);\n    // When we load features into the underlying rbush instance, it has to be able to correctly\n    // handle GeoJSON bbox values while inserting into the data structure. The rest of the API\n    // can just be a passthrough wrapping class.\n    this.tree.toBBox = toBBox;\n  }\n\n  /**\n   * [insert](https://github.com/mourner/rbush#data-format)\n   *\n   * @memberof rbush\n   * @param {Feature} feature insert single GeoJSON Feature\n   * @returns {RBush} GeoJSON RBush\n   * @example\n   * var poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]);\n   * tree.insert(poly)\n   */\n  insert(feature: Feature<G, P>): RBush<G, P> {\n    if (feature.type !== \"Feature\") throw new Error(\"invalid feature\");\n    feature.bbox = feature.bbox ? feature.bbox : turfBBox(feature);\n    this.tree.insert(feature);\n    return this;\n  }\n\n  /**\n   * [load](https://github.com/mourner/rbush#bulk-inserting-data)\n   *\n   * @memberof rbush\n   * @param {FeatureCollection|Array<Feature>} features load entire GeoJSON FeatureCollection\n   * @returns {RBush} GeoJSON RBush\n   * @example\n   * var polys = turf.polygons([\n   *     [[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]],\n   *     [[[-93, 32], [-83, 32], [-83, 39], [-93, 39], [-93, 32]]]\n   * ]);\n   * tree.load(polys);\n   */\n  load(features: FeatureCollection<G, P> | Feature<G, P>[]): RBush<G, P> {\n    var load: Feature<G, P>[] = [];\n    // Load an Array of Features\n    if (Array.isArray(features)) {\n      features.forEach(function (feature) {\n        if (feature.type !== \"Feature\") throw new Error(\"invalid features\");\n        feature.bbox = feature.bbox ? feature.bbox : turfBBox(feature);\n        load.push(feature);\n      });\n    } else {\n      // Load a FeatureCollection\n      featureEach(features, function (feature) {\n        if (feature.type !== \"Feature\") throw new Error(\"invalid features\");\n        feature.bbox = feature.bbox ? feature.bbox : turfBBox(feature);\n        load.push(feature);\n      });\n    }\n    this.tree.load(load);\n    return this;\n  }\n\n  /**\n   * [remove](https://github.com/mourner/rbush#removing-data)\n   *\n   * @memberof rbush\n   * @param {Feature} feature remove single GeoJSON Feature\n   * @param {Function} equals Pass a custom equals function to compare by value for removal.\n   * @returns {RBush} GeoJSON RBush\n   * @example\n   * var poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]);\n   *\n   * tree.remove(poly);\n   */\n  remove(\n    feature: Feature<G, P>,\n    equals?: (a: Feature<G, P>, b: Feature<G, P>) => boolean\n  ) {\n    if (feature.type !== \"Feature\") throw new Error(\"invalid feature\");\n    feature.bbox = feature.bbox ? feature.bbox : turfBBox(feature);\n    this.tree.remove(feature, equals);\n    return this;\n  }\n\n  /**\n   * [clear](https://github.com/mourner/rbush#removing-data)\n   *\n   * @memberof rbush\n   * @returns {RBush} GeoJSON Rbush\n   * @example\n   * tree.clear()\n   */\n  clear() {\n    this.tree.clear();\n    return this;\n  }\n\n  /**\n   * [search](https://github.com/mourner/rbush#search)\n   *\n   * @memberof rbush\n   * @param {BBox|FeatureCollection|Feature} geojson search with GeoJSON\n   * @returns {FeatureCollection} all features that intersects with the given GeoJSON.\n   * @example\n   * var poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]);\n   *\n   * tree.search(poly);\n   */\n  search(geojson: Feature | FeatureCollection | BBox): FeatureCollection<G, P> {\n    var features = this.tree.search(toBBox(geojson));\n    return featureCollection(features);\n  }\n\n  /**\n   * [collides](https://github.com/mourner/rbush#collisions)\n   *\n   * @memberof rbush\n   * @param {BBox|FeatureCollection|Feature} geojson collides with GeoJSON\n   * @returns {boolean} true if there are any items intersecting the given GeoJSON, otherwise false.\n   * @example\n   * var poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]);\n   *\n   * tree.collides(poly);\n   */\n  collides(geojson: Feature | FeatureCollection | BBox): boolean {\n    return this.tree.collides(toBBox(geojson));\n  }\n\n  /**\n   * [all](https://github.com/mourner/rbush#search)\n   *\n   * @memberof rbush\n   * @returns {FeatureCollection} all the features in RBush\n   * @example\n   * tree.all()\n   */\n  all() {\n    const features = this.tree.all();\n    return featureCollection(features);\n  }\n\n  /**\n   * [toJSON](https://github.com/mourner/rbush#export-and-import)\n   *\n   * @memberof rbush\n   * @returns {any} export data as JSON object\n   * @example\n   * var exported = tree.toJSON()\n   */\n  toJSON() {\n    return this.tree.toJSON();\n  }\n\n  /**\n   * [fromJSON](https://github.com/mourner/rbush#export-and-import)\n   *\n   * @memberof rbush\n   * @param {any} json import previously exported data\n   * @returns {RBush} GeoJSON RBush\n   * @example\n   * var exported = {\n   *   \"children\": [\n   *     {\n   *       \"type\": \"Feature\",\n   *       \"geometry\": {\n   *         \"type\": \"Point\",\n   *         \"coordinates\": [110, 50]\n   *       },\n   *       \"properties\": {},\n   *       \"bbox\": [110, 50, 110, 50]\n   *     }\n   *   ],\n   *   \"height\": 1,\n   *   \"leaf\": true,\n   *   \"minX\": 110,\n   *   \"minY\": 50,\n   *   \"maxX\": 110,\n   *   \"maxY\": 50\n   * }\n   * tree.fromJSON(exported)\n   */\n  fromJSON(json: any): RBush<G, P> {\n    this.tree.fromJSON(json);\n    return this;\n  }\n}\n\n/**\n * GeoJSON implementation of [RBush](https://github.com/mourner/rbush#rbush) spatial index.\n *\n * @function rbush\n * @param {number} [maxEntries=9] defines the maximum number of entries in a tree node. 9 (used by default) is a\n * reasonable choice for most applications. Higher value means faster insertion and slower search, and vice versa.\n * @returns {RBush} GeoJSON RBush\n * @example\n * var geojsonRbush = require('geojson-rbush').default;\n * var tree = geojsonRbush();\n */\nfunction geojsonRbush<\n  G extends Geometry,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(maxEntries?: number) {\n  return new RBush<G, P>(maxEntries);\n}\n\nexport { geojsonRbush };\nexport default geojsonRbush;\n"
  },
  {
    "path": "packages/turf-geojson-rbush/package.json",
    "content": "{\n  \"name\": \"@turf/geojson-rbush\",\n  \"version\": \"7.3.4\",\n  \"description\": \"GeoJSON implementation of RBush\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Vladimir Agafonkin <@mourner>\",\n    \"Denis Carriere <@DenisCarriere>\",\n    \"Jordan Rousseau <@jvrousseau>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"geojson\",\n    \"index\",\n    \"tree\",\n    \"spatial\",\n    \"rbush\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/bbox-polygon\": \"workspace:*\",\n    \"@turf/random\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/rbush\": \"^3.0.4\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"rbush\": \"^3.0.1\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-geojson-rbush/test/in/linestrings.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-121.9921875, 41.77131167976407],\n          [-112.1484375, 49.15296965617042],\n          [-95.2734375, 49.15296965617042]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-101.953125, 34.016241889667015],\n          [-88.9453125, 40.17887331434696],\n          [-78.046875, 50.064191736659104]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-108.6328125, 42.032974332441405],\n          [-102.65625, 39.36827914916014],\n          [-95.97656249999999, 39.36827914916014]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-71.71875, 39.842286020743394],\n          [-69.169921875, 35.96022296929667],\n          [-66.796875, 31.952162238024975]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-geojson-rbush/test/in/points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.8359375, 42.8115217450979]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-67.5, 48.69096039092549]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-106.171875, 46.800059446787316]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-geojson-rbush/test/in/polygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78, 41],\n            [-67, 41],\n            [-67, 48],\n            [-78, 48],\n            [-78, 41]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93, 32],\n            [-83, 32],\n            [-83, 39],\n            [-93, 39],\n            [-93, 32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-97.646484375, 43.197167282501276],\n            [-88.681640625, 43.197167282501276],\n            [-88.681640625, 48.28319289548349],\n            [-97.646484375, 48.28319289548349],\n            [-97.646484375, 43.197167282501276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.8671875, 36.87962060502676],\n            [-75.89355468749999, 36.87962060502676],\n            [-75.89355468749999, 45.1510532655634],\n            [-93.8671875, 45.1510532655634],\n            [-93.8671875, 36.87962060502676]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-geojson-rbush/test/out/all.linestrings.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-121.9921875, 41.77131167976407],\n          [-112.1484375, 49.15296965617042],\n          [-95.2734375, 49.15296965617042]\n        ]\n      },\n      \"bbox\": [-121.9921875, 41.77131167976407, -95.2734375, 49.15296965617042]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-101.953125, 34.016241889667015],\n          [-88.9453125, 40.17887331434696],\n          [-78.046875, 50.064191736659104]\n        ]\n      },\n      \"bbox\": [-101.953125, 34.016241889667015, -78.046875, 50.064191736659104]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-108.6328125, 42.032974332441405],\n          [-102.65625, 39.36827914916014],\n          [-95.97656249999999, 39.36827914916014]\n        ]\n      },\n      \"bbox\": [-108.6328125, 39.36827914916014, -95.97656249999999, 42.032974332441405]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-71.71875, 39.842286020743394],\n          [-69.169921875, 35.96022296929667],\n          [-66.796875, 31.952162238024975]\n        ]\n      },\n      \"bbox\": [-71.71875, 31.952162238024975, -66.796875, 39.842286020743394]\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-geojson-rbush/test/out/all.points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.8359375, 42.8115217450979]\n      },\n      \"bbox\": [-86.8359375, 42.8115217450979, -86.8359375, 42.8115217450979]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-67.5, 48.69096039092549]\n      },\n      \"bbox\": [-67.5, 48.69096039092549, -67.5, 48.69096039092549]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-106.171875, 46.800059446787316]\n      },\n      \"bbox\": [-106.171875, 46.800059446787316, -106.171875, 46.800059446787316]\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-geojson-rbush/test/out/all.polygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78, 41],\n            [-67, 41],\n            [-67, 48],\n            [-78, 48],\n            [-78, 41]\n          ]\n        ]\n      },\n      \"bbox\": [-78, 41, -67, 48]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93, 32],\n            [-83, 32],\n            [-83, 39],\n            [-93, 39],\n            [-93, 32]\n          ]\n        ]\n      },\n      \"bbox\": [-93, 32, -83, 39]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-97.646484375, 43.197167282501276],\n            [-88.681640625, 43.197167282501276],\n            [-88.681640625, 48.28319289548349],\n            [-97.646484375, 48.28319289548349],\n            [-97.646484375, 43.197167282501276]\n          ]\n        ]\n      },\n      \"bbox\": [-97.646484375, 43.197167282501276, -88.681640625, 48.28319289548349]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.8671875, 36.87962060502676],\n            [-75.89355468749999, 36.87962060502676],\n            [-75.89355468749999, 45.1510532655634],\n            [-93.8671875, 45.1510532655634],\n            [-93.8671875, 36.87962060502676]\n          ]\n        ]\n      },\n      \"bbox\": [-93.8671875, 36.87962060502676, -75.89355468749999, 45.1510532655634]\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-geojson-rbush/test/out/search.linestrings.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-121.9921875, 41.77131167976407],\n          [-112.1484375, 49.15296965617042],\n          [-95.2734375, 49.15296965617042]\n        ]\n      },\n      \"bbox\": [-121.9921875, 41.77131167976407, -95.2734375, 49.15296965617042]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-101.953125, 34.016241889667015],\n          [-88.9453125, 40.17887331434696],\n          [-78.046875, 50.064191736659104]\n        ]\n      },\n      \"bbox\": [-101.953125, 34.016241889667015, -78.046875, 50.064191736659104]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-108.6328125, 42.032974332441405],\n          [-102.65625, 39.36827914916014],\n          [-95.97656249999999, 39.36827914916014]\n        ]\n      },\n      \"bbox\": [-108.6328125, 39.36827914916014, -95.97656249999999, 42.032974332441405]\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-geojson-rbush/test/out/search.points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-86.8359375, 42.8115217450979]\n      },\n      \"bbox\": [-86.8359375, 42.8115217450979, -86.8359375, 42.8115217450979]\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-geojson-rbush/test/out/search.polygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-78, 41],\n            [-67, 41],\n            [-67, 48],\n            [-78, 48],\n            [-78, 41]\n          ]\n        ]\n      },\n      \"bbox\": [-78, 41, -67, 48]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.8671875, 36.87962060502676],\n            [-75.89355468749999, 36.87962060502676],\n            [-75.89355468749999, 45.1510532655634],\n            [-93.8671875, 45.1510532655634],\n            [-93.8671875, 36.87962060502676]\n          ]\n        ]\n      },\n      \"bbox\": [-93.8671875, 36.87962060502676, -75.89355468749999, 45.1510532655634]\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-geojson-rbush/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { bboxPolygon } from \"@turf/bbox-polygon\";\nimport { featureCollection, polygons } from \"@turf/helpers\";\nimport { geojsonRbush } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"geojson-rbush\", (t) => {\n  for (const fixture of fixtures) {\n    const name = fixture.name;\n    const filename = fixture.filename;\n    const geojson = fixture.geojson;\n    const tree = geojsonRbush();\n    tree.load(geojson as any);\n\n    // Retrive all features inside the RBush index\n    const all = tree.all();\n\n    // Search using the first item in the FeatureCollection\n    const search = tree.search((geojson as any).features[0]);\n\n    if (process.env.REGEN) {\n      writeJsonFileSync(directories.out + \"all.\" + filename, all);\n      writeJsonFileSync(directories.out + \"search.\" + filename, search);\n    }\n\n    t.deepEqual(\n      all,\n      loadJsonFileSync(directories.out + \"all.\" + filename),\n      \"all.\" + name\n    );\n    t.deepEqual(\n      search,\n      loadJsonFileSync(directories.out + \"search.\" + filename),\n      \"search.\" + name\n    );\n  }\n  t.end();\n});\n\ntest(\"geojson-rbush -- bbox\", (t) => {\n  const tree = geojsonRbush();\n  tree.insert(bboxPolygon([-150, -60, 150, 60]));\n\n  t.equal(tree.collides([-140, -50, 140, 50]), true);\n  t.equal(tree.search([-140, -50, 140, 50]).features.length, 1);\n  t.equal(tree.search(bboxPolygon([-150, -60, 150, 60])).features.length, 1);\n  t.equal(\n    tree.search(featureCollection([bboxPolygon([-150, -60, 150, 60])])).features\n      .length,\n    1\n  );\n  t.equal(tree.collides([-180, -80, -170, -60]), false);\n\n  // Errors\n  t.throws(() => tree.search(\"foo\" as any));\n  t.end();\n});\n\ntest(\"geojson-rbush -- fromJSON\", (t) => {\n  const tree = geojsonRbush();\n  const poly = bboxPolygon([-150, -60, 150, 60]);\n  tree.insert(poly);\n\n  const newTree = geojsonRbush();\n  newTree.fromJSON(tree.toJSON());\n  t.equal(newTree.all().features.length, 1);\n  newTree.remove(poly);\n  t.equal(newTree.all().features.length, 0);\n  t.end();\n});\n\ntest(\"geojson-rbush -- Array of Features -- Issue #5\", (t) => {\n  // https://github.com/DenisCarriere/geojson-rbush/issues/5\n  const tree = geojsonRbush();\n  const polys = polygons([\n    [\n      [\n        [-78, 41],\n        [-67, 41],\n        [-67, 48],\n        [-78, 48],\n        [-78, 41],\n      ],\n    ],\n    [\n      [\n        [-93, 32],\n        [-83, 32],\n        [-83, 39],\n        [-93, 39],\n        [-93, 32],\n      ],\n    ],\n  ]);\n  // Load Feature Collection\n  tree.load(polys);\n  t.equal(tree.all().features.length, 2);\n\n  // Load Array of Features\n  tree.load(polys.features);\n  t.equal(tree.all().features.length, 4);\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-geojson-rbush/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-geojson-rbush/types.ts",
    "content": "import { point, polygon, featureCollection } from \"@turf/helpers\";\nimport { BBox, Point, Polygon } from \"geojson\";\nimport { geojsonRbush as rbush } from \"./index.js\";\n\n// Fixtures\nconst bbox: BBox = [-180, -90, 180, 90];\nconst pt = point([0, 0]);\nconst points = featureCollection([pt, pt]);\nconst poly = polygon([\n  [\n    [0, 0],\n    [1, 1],\n    [1, 1],\n    [0, 0],\n  ],\n]);\nconst polygons = featureCollection([poly, poly]);\n\n// Initialize GeoJSON RBush Tree\nconst tree = rbush<Point | Polygon>();\n\n// Load Tree with a FeatureCollection\ntree.load(points);\ntree.load(polygons);\n\n// Insert by Feature\ntree.insert(pt);\ntree.insert(poly);\n\n// Find All (returns FeatureCollection)\nconst all = tree.all();\n\n// Search by Feature (returns FeatureCollection)\nconst search = tree.search(poly);\n\n// Collides by Feature (returns FeatureCollection)\nconst collides = tree.collides(poly);\n\n// Remove by Feature\ntree.remove(pt);\ntree.remove(poly);\n\n// BBox support\ntree.search(bbox);\ntree.collides(bbox);\n"
  },
  {
    "path": "packages/turf-great-circle/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-great-circle/README.md",
    "content": "# @turf/great-circle\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## greatCircle\n\nCalculate great circles routes as [LineString][1] or [MultiLineString][2].\nIf the `start` and `end` points span the antimeridian, the resulting feature will\nbe split into a `MultiLineString`. If the `start` and `end` positions are the same\nthen a `LineString` will be returned with duplicate coordinates the length of the `npoints` option.\n\n### Parameters\n\n*   `start` **[Coord][3]** source point feature\n*   `end` **[Coord][3]** destination point feature\n*   `options` **[Object][4]** Optional parameters (optional, default `{}`)\n\n    *   `options.properties` **[Object][4]** line feature properties (optional, default `{}`)\n    *   `options.npoints` **[number][5]** number of points (optional, default `100`)\n    *   `options.offset` **[number][5]** offset controls the likelyhood that lines will\n        be split which cross the dateline. The higher the number the more likely. (optional, default `10`)\n\n### Examples\n\n```javascript\nvar start = turf.point([-122, 48]);\nvar end = turf.point([-77, 39]);\n\nvar greatCircle = turf.greatCircle(start, end, {properties: {name: 'Seattle to DC'}});\n\n//addToMap\nvar addToMap = [start, end, greatCircle]\n```\n\nReturns **[Feature][6]<([LineString][1] | [MultiLineString][2])>** great circle line feature\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.5\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/great-circle\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-great-circle/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { point } from \"@turf/helpers\";\nimport { greatCircle } from \"./index.js\";\n\nconst point1 = point([-75, 45]);\nconst point2 = point([30, 45]);\n\nconst suite = new Benchmark.Suite(\"turf-great-circle\");\n\nsuite\n  .add(\"greatCircle\", () => {\n    greatCircle(point1, point2);\n  })\n  .on(\"cycle\", (e: any) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-great-circle/index.ts",
    "content": "import type {\n  Feature,\n  GeoJsonProperties,\n  LineString,\n  MultiLineString,\n  Point,\n  Position,\n} from \"geojson\";\nimport { lineString } from \"@turf/helpers\";\nimport { getCoord } from \"@turf/invariant\";\nimport { GreatCircle } from \"arc\";\n\n/**\n * Calculate great circles routes as {@link LineString} or {@link MultiLineString}.\n * If the `start` and `end` points span the antimeridian, the resulting feature will\n * be split into a `MultiLineString`. If the `start` and `end` positions are the same\n * then a `LineString` will be returned with duplicate coordinates the length of the `npoints` option.\n *\n * @name greatCircle\n * @param {Coord} start source point feature\n * @param {Coord} end destination point feature\n * @param {Object} [options={}] Optional parameters\n * @param {Object} [options.properties={}] line feature properties\n * @param {number} [options.npoints=100] number of points\n * @param {number} [options.offset=10] offset controls the likelyhood that lines will\n * be split which cross the dateline. The higher the number the more likely.\n * @returns {Feature<LineString | MultiLineString>} great circle line feature\n * @example\n * var start = turf.point([-122, 48]);\n * var end = turf.point([-77, 39]);\n *\n * var greatCircle = turf.greatCircle(start, end, {properties: {name: 'Seattle to DC'}});\n *\n * //addToMap\n * var addToMap = [start, end, greatCircle]\n */\nfunction greatCircle(\n  start: Feature<Point, GeoJsonProperties> | Point | Position,\n  end: Feature<Point, GeoJsonProperties> | Point | Position,\n  options: {\n    properties?: GeoJsonProperties;\n    npoints?: number;\n    offset?: number;\n  } = {}\n): Feature<LineString | MultiLineString> {\n  // Optional parameters\n  if (typeof options !== \"object\") throw new Error(\"options is invalid\");\n  const { properties = {}, npoints = 100, offset = 10 } = options;\n\n  const startCoord = getCoord(start);\n  const endCoord = getCoord(end);\n\n  if (startCoord[0] === endCoord[0] && startCoord[1] === endCoord[1]) {\n    const arr = Array(npoints).fill([startCoord[0], startCoord[1]]);\n    return lineString(arr, properties);\n  }\n\n  const generator = new GreatCircle(\n    { x: startCoord[0], y: startCoord[1] },\n    { x: endCoord[0], y: endCoord[1] },\n    properties || {}\n  );\n\n  const line = generator.Arc(npoints, { offset: offset });\n\n  return line.json() as Feature<\n    LineString | MultiLineString,\n    GeoJsonProperties\n  >;\n}\n\nexport { greatCircle };\nexport default greatCircle;\n"
  },
  {
    "path": "packages/turf-great-circle/package.json",
    "content": "{\n  \"name\": \"@turf/great-circle\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Calculate great circles routes as LineString or MultiLineString.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Dane Springmeyer <@springmeyer>\",\n    \"Stepan Kuzmin <@stepankuzmin>\",\n    \"Denis Carriere <@DenisCarriere>\",\n    \"Thomas Hervey <@thomas-hervey>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"arc\",\n    \"line\",\n    \"great\",\n    \"circle\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"arc\": \"^0.2.0\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-great-circle/test/in/basic.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122, 48]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [28.125, 43.32517767999296]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-great-circle/test/out/basic.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-122, 48],\n          [-121.526078, 48.798446],\n          [-121.036843, 49.594886],\n          [-120.531386, 50.389196],\n          [-120.00873, 51.181242],\n          [-119.467827, 51.970877],\n          [-118.907551, 52.757946],\n          [-118.326688, 53.542278],\n          [-117.723935, 54.323689],\n          [-117.097886, 55.10198],\n          [-116.447022, 55.876934],\n          [-115.769709, 56.648315],\n          [-115.064179, 57.415865],\n          [-114.328521, 58.179305],\n          [-113.56067, 58.938327],\n          [-112.758394, 59.692598],\n          [-111.919276, 60.441748],\n          [-111.0407, 61.185378],\n          [-110.119838, 61.923043],\n          [-109.153629, 62.65426],\n          [-108.138765, 63.378492],\n          [-107.071672, 64.095153],\n          [-105.948495, 64.803592],\n          [-104.765084, 65.503093],\n          [-103.516979, 66.192866],\n          [-102.199407, 66.872037],\n          [-100.807275, 67.539642],\n          [-99.335183, 68.194617],\n          [-97.777438, 68.835785],\n          [-96.128094, 69.461851],\n          [-94.381008, 70.071389],\n          [-92.529923, 70.662834],\n          [-90.568586, 71.234472],\n          [-88.490913, 71.784437],\n          [-86.291189, 72.310705],\n          [-83.964338, 72.811097],\n          [-81.506236, 73.283287],\n          [-78.914093, 73.724819],\n          [-76.18687, 74.133131],\n          [-73.325735, 74.505596],\n          [-70.334509, 74.839569],\n          [-67.220071, 75.132455],\n          [-63.992654, 75.381783],\n          [-60.665988, 75.585292],\n          [-57.257219, 75.741019],\n          [-53.786573, 75.847386],\n          [-50.276753, 75.903276],\n          [-46.752103, 75.908087],\n          [-43.237605, 75.861768],\n          [-39.757801, 75.764817],\n          [-36.335775, 75.618259],\n          [-32.992271, 75.423591],\n          [-29.745047, 75.182709],\n          [-26.60849, 74.897826],\n          [-23.593485, 74.57138],\n          [-20.707522, 74.205948],\n          [-17.954968, 73.804171],\n          [-15.337456, 73.368685],\n          [-12.854329, 72.902065],\n          [-10.50309, 72.406792],\n          [-8.279837, 71.885217],\n          [-6.179646, 71.339546],\n          [-4.196901, 70.771834],\n          [-2.32557, 70.183976],\n          [-0.559417, 69.577714],\n          [1.107823, 68.954642],\n          [2.682322, 68.316209],\n          [4.17007, 67.663737],\n          [5.576808, 66.998421],\n          [6.907995, 66.321347],\n          [8.168781, 65.633497],\n          [9.364001, 64.935761],\n          [10.498173, 64.228946],\n          [11.575503, 63.513779],\n          [12.599903, 62.790923],\n          [13.574995, 62.060976],\n          [14.504139, 61.324484],\n          [15.39044, 60.581941],\n          [16.236768, 59.833796],\n          [17.045778, 59.080459],\n          [17.819923, 58.322303],\n          [18.561469, 57.559669],\n          [19.272511, 56.792869],\n          [19.954988, 56.022188],\n          [20.610694, 55.247887],\n          [21.241288, 54.470206],\n          [21.848309, 53.689365],\n          [22.433183, 52.905568],\n          [22.997233, 52.119],\n          [23.541689, 51.329835],\n          [24.067692, 50.538231],\n          [24.576305, 49.744336],\n          [25.068517, 48.948286],\n          [25.54525, 48.150208],\n          [26.007365, 47.350219],\n          [26.455663, 46.548428],\n          [26.890896, 45.744937],\n          [27.313765, 44.939841],\n          [27.724928, 44.133227],\n          [28.125, 43.325178]\n        ]\n      },\n      \"type\": \"Feature\",\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122, 48]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [28.125, 43.32517767999296]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-great-circle/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport type {\n  FeatureCollection,\n  LineString,\n  Feature,\n  Geometry,\n  Point,\n} from \"geojson\";\nimport { truncate } from \"@turf/truncate\";\nimport { featureCollection, point, lineString } from \"@turf/helpers\";\nimport { greatCircle } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(\n      path.join(directories.in, filename)\n    ) as FeatureCollection,\n  };\n});\n\n// Function to get the start and end points from the fixture\nfunction getStartEndPoints(fixture: (typeof fixtures)[0]) {\n  const geojson = fixture.geojson;\n  const start = geojson.features[0] as Feature<Point>;\n  const end = geojson.features[1] as Feature<Point>;\n  return { start, end };\n}\n\ntest(\"turf-great-circle\", (t) => {\n  fixtures.forEach((fixture) => {\n    const name = fixture.name;\n    const filename = fixture.filename;\n    const { start, end } = getStartEndPoints(fixture);\n\n    const line = truncate(greatCircle(start, end));\n    const results = featureCollection<Geometry>([line, start, end]);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEquals(results, loadJsonFileSync(directories.out + filename), name);\n  });\n  t.end();\n});\n\ntest(\"turf-great-circle with same input and output\", (t) => {\n  const start = point([0, 0]);\n  const end = point([0, 0]);\n  const line = greatCircle(start, end, {\n    npoints: 4,\n  });\n\n  t.deepEquals(\n    lineString([\n      [0, 0],\n      [0, 0],\n      [0, 0],\n      [0, 0],\n    ]),\n    line as Feature<LineString>\n  );\n\n  t.end();\n});\n\ntest(\"turf-great-circle accepts Feature<Point> inputs\", (t) => {\n  const { start, end } = getStartEndPoints(fixtures[0]);\n  t.doesNotThrow(\n    () => greatCircle(start, end),\n    \"accepts Feature<Point> inputs\"\n  );\n  t.end();\n});\n\ntest(\"turf-great-circle accepts Point geometry inputs\", (t) => {\n  const { start, end } = getStartEndPoints(fixtures[0]);\n  t.doesNotThrow(\n    () => greatCircle(start.geometry, end.geometry),\n    \"accepts Point geometry inputs\"\n  );\n  t.end();\n});\n\ntest(\"turf-great-circle accepts Position inputs\", (t) => {\n  const { start, end } = getStartEndPoints(fixtures[0]);\n  t.doesNotThrow(\n    () => greatCircle(start.geometry.coordinates, end.geometry.coordinates),\n    \"accepts Position inputs\"\n  );\n  t.end();\n});\n\ntest(\"turf-great-circle applies custom properties\", (t) => {\n  const { start, end } = getStartEndPoints(fixtures[0]);\n  const withProperties = greatCircle(start, end, {\n    properties: { name: \"Test Route\" },\n  });\n  t.equal(\n    withProperties.properties?.name,\n    \"Test Route\",\n    \"applies custom properties\"\n  );\n  t.end();\n});\n\ntest(\"turf-great-circle respects npoints option\", (t) => {\n  const { start, end } = getStartEndPoints(fixtures[0]);\n  const withCustomPoints = greatCircle(start, end, { npoints: 5 });\n  t.equal(\n    (withCustomPoints.geometry as LineString).coordinates.length,\n    5,\n    \"respects npoints option\"\n  );\n  t.end();\n});\n\ntest(\"turf-great-circle respects offset and npoints options\", (t) => {\n  const { start, end } = getStartEndPoints(fixtures[0]);\n  const withOffset = greatCircle(start, end, { offset: 100, npoints: 10 });\n  t.equal(\n    (withOffset.geometry as LineString).coordinates.length,\n    10,\n    \"respects offset and npoints options\"\n  );\n  t.end();\n});\n\ntest(\"turf-great-circle with antipodal start and end\", (t) => {\n  const start = point([0, 90]);\n  const end = point([0, -90]);\n\n  t.throws(() => {\n    greatCircle(start, end, {\n      npoints: 4,\n    });\n  }, \"it appears 0,90 and 0,-90 are 'antipodal', e.g diametrically opposite, thus there is no single route but rather infinite\");\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-great-circle/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-great-circle/types.ts",
    "content": "import { point } from \"@turf/helpers\";\nimport { greatCircle } from \"./index.js\";\n\nconst pt1 = point([0, 0]);\nconst pt2 = point([60, 0]);\ngreatCircle(pt1, pt2);\ngreatCircle(pt1.geometry, pt2.geometry);\ngreatCircle(pt1.geometry.coordinates, pt2.geometry.coordinates);\ngreatCircle(pt1, pt2, { properties: { name: \"Seattle to DC\" } });\ngreatCircle(pt1, pt2, { npoints: 10 });\ngreatCircle(pt1, pt2, { offset: 100, npoints: 10 });\n"
  },
  {
    "path": "packages/turf-helpers/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-helpers/README.md",
    "content": "# @turf/helpers\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## helpers\n\n## Units\n\nLinear measurement units.\n\n⚠️ Warning. Be aware of the implications of using radian or degree units to\nmeasure distance. The distance represented by a degree of longitude *varies*\ndepending on latitude.\n\nSee [https://www.thoughtco.com/degree-of-latitude-and-longitude-distance-4070616][1]\nfor an illustration of this behaviour.\n\nType: (`\"meters\"` | `\"metres\"` | `\"millimeters\"` | `\"millimetres\"` | `\"centimeters\"` | `\"centimetres\"` | `\"kilometers\"` | `\"kilometres\"` | `\"miles\"` | `\"nauticalmiles\"` | `\"inches\"` | `\"yards\"` | `\"feet\"` | `\"radians\"` | `\"degrees\"`)\n\n## AreaUnits\n\nArea measurement units.\n\nType: (Exclude<[Units][2], (`\"radians\"` | `\"degrees\"`)> | `\"acres\"` | `\"hectares\"`)\n\n## Grid\n\nGrid types.\n\nType: (`\"point\"` | `\"square\"` | `\"hex\"` | `\"triangle\"`)\n\n## Corners\n\nShorthand corner identifiers.\n\nType: (`\"sw\"` | `\"se\"` | `\"nw\"` | `\"ne\"` | `\"center\"` | `\"centroid\"`)\n\n## Lines\n\nGeometries made up of lines i.e. lines and polygons.\n\nType: ([LineString][3] | [MultiLineString][4] | [Polygon][5] | [MultiPolygon][6])\n\n## AllGeoJSON\n\nConvenience type for all possible GeoJSON.\n\nType: ([Feature][7] | [FeatureCollection][8] | [Geometry][9] | [GeometryCollection][10])\n\n## earthRadius\n\nThe Earth radius in meters. Used by Turf modules that model the Earth as a sphere. The [mean radius][11] was selected because it is [recommended ][12] by the Haversine formula (used by turf/distance) to reduce error.\n\nType: [number][13]\n\n## factors\n\nUnit of measurement factors based on earthRadius.\n\nKeys are the name of the unit, values are the number of that unit in a single radian\n\nType: Record<[Units][2], [number][13]>\n\n## areaFactors\n\nArea of measurement factors based on 1 square meter.\n\nType: Record<[AreaUnits][14], [number][13]>\n\n## feature\n\nWraps a GeoJSON [Geometry][9] in a GeoJSON [Feature][7].\n\n### Parameters\n\n*   `geom` **(G | null)**&#x20;\n*   `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)\n*   `options` **[Object][15]** Optional Parameters (optional, default `{}`)\n\n    *   `options.bbox` **[BBox][16]?** Bounding Box Array \\[west, south, east, north] associated with the Feature\n    *   `options.id` **Id?** Identifier associated with the Feature\n*   `geometry` **[GeometryObject][9]** input geometry\n\n### Examples\n\n```javascript\nvar geometry = {\n  \"type\": \"Point\",\n  \"coordinates\": [110, 50]\n};\n\nvar feature = turf.feature(geometry);\n\n//=feature\n```\n\nReturns **[Feature][7]<[GeometryObject][9], [GeoJsonProperties][7]>** a GeoJSON Feature\n\n## geometry\n\nCreates a GeoJSON [Geometry][9] from a Geometry string type & coordinates.\nFor GeometryCollection type use `helpers.geometryCollection`\n\n### Parameters\n\n*   `type` **(`\"Point\"` | `\"LineString\"` | `\"Polygon\"` | `\"MultiPoint\"` | `\"MultiLineString\"` | `\"MultiPolygon\"`)** Geometry Type\n*   `coordinates` **[Array][17]\\<any>** Coordinates\n*   `_options` **Record<[string][18], never>**  (optional, default `{}`)\n*   `options` **[Object][15]** Optional Parameters (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar type = \"Point\";\nvar coordinates = [110, 50];\nvar geometry = turf.geometry(type, coordinates);\n// => geometry\n```\n\nReturns **[Geometry][9]** a GeoJSON Geometry\n\n## point\n\nCreates a [Point][19] [Feature][7] from a Position.\n\n### Parameters\n\n*   `coordinates` **[Position][20]** longitude, latitude position (each in decimal degrees)\n*   `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)\n*   `options` **[Object][15]** Optional Parameters (optional, default `{}`)\n\n    *   `options.bbox` **[BBox][16]?** Bounding Box Array \\[west, south, east, north] associated with the Feature\n    *   `options.id` **Id?** Identifier associated with the Feature\n\n### Examples\n\n```javascript\nvar point = turf.point([-75.343, 39.984]);\n\n//=point\n```\n\nReturns **[Feature][7]<[Point][19], [GeoJsonProperties][7]>** a Point feature\n\n## points\n\nCreates a [Point][19] [FeatureCollection][8] from an Array of Point coordinates.\n\n### Parameters\n\n*   `coordinates` **[Array][17]<[Position][20]>** an array of Points\n*   `properties` **[GeoJsonProperties][7]** Translate these properties to each Feature (optional, default `{}`)\n*   `options` **[Object][15]** Optional Parameters (optional, default `{}`)\n\n    *   `options.bbox` **[BBox][16]?** Bounding Box Array \\[west, south, east, north]\n        associated with the FeatureCollection\n    *   `options.id` **Id?** Identifier associated with the FeatureCollection\n\n### Examples\n\n```javascript\nvar points = turf.points([\n  [-75, 39],\n  [-80, 45],\n  [-78, 50]\n]);\n\n//=points\n```\n\nReturns **[FeatureCollection][8]<[Point][19]>** Point Feature\n\n## polygon\n\nCreates a [Polygon][5] [Feature][7] from an Array of LinearRings.\n\n### Parameters\n\n*   `coordinates` **[Array][17]<[Array][17]<[Position][20]>>**&#x20;\n*   `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)\n*   `options` **[Object][15]** Optional Parameters (optional, default `{}`)\n\n    *   `options.bbox` **[BBox][16]?** Bounding Box Array \\[west, south, east, north] associated with the Feature\n    *   `options.id` **Id?** Identifier associated with the Feature\n\n### Examples\n\n```javascript\nvar polygon = turf.polygon([[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]], { name: 'poly1' });\n\n//=polygon\n```\n\nReturns **[Feature][7]<[Polygon][5], [GeoJsonProperties][7]>** Polygon Feature\n\n## polygons\n\nCreates a [Polygon][5] [FeatureCollection][8] from an Array of Polygon coordinates.\n\n### Parameters\n\n*   `coordinates` **[Array][17]<[Array][17]<[Array][17]<[Position][20]>>>**&#x20;\n*   `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)\n*   `options` **[Object][15]** Optional Parameters (optional, default `{}`)\n\n    *   `options.bbox` **[BBox][16]?** Bounding Box Array \\[west, south, east, north] associated with the Feature\n    *   `options.id` **Id?** Identifier associated with the FeatureCollection\n\n### Examples\n\n```javascript\nvar polygons = turf.polygons([\n  [[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]],\n  [[[-15, 42], [-14, 46], [-12, 41], [-17, 44], [-15, 42]]],\n]);\n\n//=polygons\n```\n\nReturns **[FeatureCollection][8]<[Polygon][5], [GeoJsonProperties][7]>** Polygon FeatureCollection\n\n## lineString\n\nCreates a [LineString][3] [Feature][7] from an Array of Positions.\n\n### Parameters\n\n*   `coordinates` **[Array][17]<[Position][20]>** an array of Positions\n*   `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)\n*   `options` **[Object][15]** Optional Parameters (optional, default `{}`)\n\n    *   `options.bbox` **[BBox][16]?** Bounding Box Array \\[west, south, east, north] associated with the Feature\n    *   `options.id` **Id?** Identifier associated with the Feature\n\n### Examples\n\n```javascript\nvar linestring1 = turf.lineString([[-24, 63], [-23, 60], [-25, 65], [-20, 69]], {name: 'line 1'});\nvar linestring2 = turf.lineString([[-14, 43], [-13, 40], [-15, 45], [-10, 49]], {name: 'line 2'});\n\n//=linestring1\n//=linestring2\n```\n\nReturns **[Feature][7]<[LineString][3], [GeoJsonProperties][7]>** LineString Feature\n\n## lineStrings\n\nCreates a [LineString][3] [FeatureCollection][8] from an Array of LineString coordinates.\n\n### Parameters\n\n*   `coordinates` **[Array][17]<[Array][17]<[Position][20]>>**&#x20;\n*   `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)\n*   `options` **[Object][15]** Optional Parameters (optional, default `{}`)\n\n    *   `options.bbox` **[BBox][16]?** Bounding Box Array \\[west, south, east, north]\n        associated with the FeatureCollection\n    *   `options.id` **Id?** Identifier associated with the FeatureCollection\n\n### Examples\n\n```javascript\nvar linestrings = turf.lineStrings([\n  [[-24, 63], [-23, 60], [-25, 65], [-20, 69]],\n  [[-14, 43], [-13, 40], [-15, 45], [-10, 49]]\n]);\n\n//=linestrings\n```\n\nReturns **[FeatureCollection][8]<[LineString][3], [GeoJsonProperties][7]>** LineString FeatureCollection\n\n## featureCollection\n\nTakes one or more [Features][7] and creates a [FeatureCollection][8].\n\n### Parameters\n\n*   `features` **[Array][17]<[Feature][7]<[GeometryObject][9], [GeoJsonProperties][7]>>** input features\n*   `options` **[Object][15]** Optional Parameters (optional, default `{}`)\n\n    *   `options.bbox` **[BBox][16]?** Bounding Box Array \\[west, south, east, north] associated with the Feature\n    *   `options.id` **Id?** Identifier associated with the Feature\n\n### Examples\n\n```javascript\nvar locationA = turf.point([-75.343, 39.984], {name: 'Location A'});\nvar locationB = turf.point([-75.833, 39.284], {name: 'Location B'});\nvar locationC = turf.point([-75.534, 39.123], {name: 'Location C'});\n\nvar collection = turf.featureCollection([\n  locationA,\n  locationB,\n  locationC\n]);\n\n//=collection\n```\n\nReturns **[FeatureCollection][8]<[GeometryObject][9], [GeoJsonProperties][7]>** FeatureCollection of Features\n\n## multiLineString\n\nCreates a [Feature][7]<[MultiLineString][4]> based on a\ncoordinate array. Properties can be added optionally.\n\n### Parameters\n\n*   `coordinates` **[Array][17]<[Array][17]<[Position][20]>>**&#x20;\n*   `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)\n*   `options` **[Object][15]** Optional Parameters (optional, default `{}`)\n\n    *   `options.bbox` **[BBox][16]?** Bounding Box Array \\[west, south, east, north] associated with the Feature\n    *   `options.id` **Id?** Identifier associated with the Feature\n\n### Examples\n\n```javascript\nvar multiLine = turf.multiLineString([[[0,0],[10,10]]]);\n\n//=multiLine\n```\n\n*   Throws **[Error][21]** if no coordinates are passed\n\nReturns **[Feature][7]<[MultiLineString][4], [GeoJsonProperties][7]>** a MultiLineString feature\n\n## multiPoint\n\nCreates a [Feature][7]<[MultiPoint][22]> based on a\ncoordinate array. Properties can be added optionally.\n\n### Parameters\n\n*   `coordinates` **[Array][17]<[Position][20]>** an array of Positions\n*   `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)\n*   `options` **[Object][15]** Optional Parameters (optional, default `{}`)\n\n    *   `options.bbox` **[BBox][16]?** Bounding Box Array \\[west, south, east, north] associated with the Feature\n    *   `options.id` **Id?** Identifier associated with the Feature\n\n### Examples\n\n```javascript\nvar multiPt = turf.multiPoint([[0,0],[10,10]]);\n\n//=multiPt\n```\n\n*   Throws **[Error][21]** if no coordinates are passed\n\nReturns **[Feature][7]<[MultiPoint][22], [GeoJsonProperties][7]>** a MultiPoint feature\n\n## multiPolygon\n\nCreates a [Feature][7]<[MultiPolygon][6]> based on a\ncoordinate array. Properties can be added optionally.\n\n### Parameters\n\n*   `coordinates` **[Array][17]<[Array][17]<[Array][17]<[Position][20]>>>**&#x20;\n*   `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)\n*   `options` **[Object][15]** Optional Parameters (optional, default `{}`)\n\n    *   `options.bbox` **[BBox][16]?** Bounding Box Array \\[west, south, east, north] associated with the Feature\n    *   `options.id` **Id?** Identifier associated with the Feature\n\n### Examples\n\n```javascript\nvar multiPoly = turf.multiPolygon([[[[0,0],[0,10],[10,10],[10,0],[0,0]]]]);\n\n//=multiPoly\n```\n\n*   Throws **[Error][21]** if no coordinates are passed\n\nReturns **[Feature][7]<[MultiPolygon][6], [GeoJsonProperties][7]>** a multipolygon feature\n\n## geometryCollection\n\nCreates a Feature<GeometryCollection> based on a\ncoordinate array. Properties can be added optionally.\n\n### Parameters\n\n*   `geometries` **[Array][17]<([Point][19] | [LineString][3] | [Polygon][5] | [MultiPoint][22] | [MultiLineString][4] | [MultiPolygon][6])>** an array of GeoJSON Geometries\n*   `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`)\n*   `options` **[Object][15]** Optional Parameters (optional, default `{}`)\n\n    *   `options.bbox` **[BBox][16]?** Bounding Box Array \\[west, south, east, north] associated with the Feature\n    *   `options.id` **Id?** Identifier associated with the Feature\n\n### Examples\n\n```javascript\nvar pt = turf.geometry(\"Point\", [100, 0]);\nvar line = turf.geometry(\"LineString\", [[101, 0], [102, 1]]);\nvar collection = turf.geometryCollection([pt, line]);\n\n// => collection\n```\n\nReturns **[Feature][7]<[GeometryCollection][10], [GeoJsonProperties][7]>** a GeoJSON GeometryCollection Feature\n\n## round\n\nRound number to precision\n\n### Parameters\n\n*   `num` **[number][13]** Number\n*   `precision` **[number][13]** Precision (optional, default `0`)\n\n### Examples\n\n```javascript\nturf.round(120.4321)\n//=120\n\nturf.round(120.4321, 2)\n//=120.43\n```\n\nReturns **[number][13]** rounded number\n\n## radiansToLength\n\nConvert a distance measurement (assuming a spherical Earth) from radians to a more friendly unit.\nValid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet\n\n### Parameters\n\n*   `radians` **[number][13]** in radians across the sphere\n*   `units` **[Units][2]** can be degrees, radians, miles, inches, yards, metres,\n    meters, kilometres, kilometers. (optional, default `\"kilometers\"`)\n\nReturns **[number][13]** distance\n\n## lengthToRadians\n\nConvert a distance measurement (assuming a spherical Earth) from a real-world unit into radians\nValid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet\n\n### Parameters\n\n*   `distance` **[number][13]** in real units\n*   `units` **[Units][2]** can be degrees, radians, miles, inches, yards, metres,\n    meters, kilometres, kilometers. (optional, default `\"kilometers\"`)\n\nReturns **[number][13]** radians\n\n## lengthToDegrees\n\nConvert a distance measurement (assuming a spherical Earth) from a real-world unit into degrees\nValid units: miles, nauticalmiles, inches, yards, meters, metres, centimeters, kilometres, feet\n\n### Parameters\n\n*   `distance` **[number][13]** in real units\n*   `units` **[Units][2]** can be degrees, radians, miles, inches, yards, metres,\n    meters, kilometres, kilometers. (optional, default `\"kilometers\"`)\n\nReturns **[number][13]** degrees\n\n## bearingToAzimuth\n\nConverts any bearing angle from the north line direction (positive clockwise)\nand returns an angle between 0-360 degrees (positive clockwise), 0 being the north line\n\n### Parameters\n\n*   `bearing` **[number][13]** angle, between -180 and +180 degrees\n\nReturns **[number][13]** angle between 0 and 360 degrees\n\n## azimuthToBearing\n\nConverts any azimuth angle from the north line direction (positive clockwise)\nand returns an angle between -180 and +180 degrees (positive clockwise), 0 being the north line\n\n### Parameters\n\n*   `angle` **[number][13]** between 0 and 360 degrees\n\nReturns **[number][13]** bearing between -180 and +180 degrees\n\n## radiansToDegrees\n\nConverts an angle in radians to degrees\n\n### Parameters\n\n*   `radians` **[number][13]** angle in radians\n\nReturns **[number][13]** degrees between 0 and 360 degrees\n\n## degreesToRadians\n\nConverts an angle in degrees to radians\n\n### Parameters\n\n*   `degrees` **[number][13]** angle between 0 and 360 degrees\n\nReturns **[number][13]** angle in radians\n\n## convertLength\n\nConverts a length from one unit to another.\n\n### Parameters\n\n*   `length` **[number][13]** Length to be converted\n*   `originalUnit` **[Units][2]** Input length unit (optional, default `\"kilometers\"`)\n*   `finalUnit` **[Units][2]** Returned length unit (optional, default `\"kilometers\"`)\n\nReturns **[number][13]** The converted length\n\n## convertArea\n\nConverts an area from one unit to another.\n\n### Parameters\n\n*   `area` **[number][13]** Area to be converted\n*   `originalUnit` **[AreaUnits][14]** Input area unit (optional, default `\"meters\"`)\n*   `finalUnit` **[AreaUnits][14]** Returned area unit (optional, default `\"kilometers\"`)\n\nReturns **[number][13]** The converted length\n\n## isNumber\n\nisNumber\n\n### Parameters\n\n*   `num` **any** Number to validate\n\n### Examples\n\n```javascript\nturf.isNumber(123)\n//=true\nturf.isNumber('foo')\n//=false\n```\n\nReturns **[boolean][23]** true/false\n\n## isObject\n\nisObject\n\n### Parameters\n\n*   `input` **any** variable to validate\n\n### Examples\n\n```javascript\nturf.isObject({elevation: 10})\n//=true\nturf.isObject('foo')\n//=false\n```\n\nReturns **[boolean][23]** true/false, including false for Arrays and Functions\n\n[1]: https://www.thoughtco.com/degree-of-latitude-and-longitude-distance-4070616\n\n[2]: #units\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.5\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[8]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[9]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[10]: https://tools.ietf.org/html/rfc7946#section-3.1.8\n\n[11]: https://en.wikipedia.org/wiki/Earth_radius#Arithmetic_mean_radius\n\n[12]: https://rosettacode.org/wiki/Haversine_formula#:~:text=This%20value%20is%20recommended\n\n[13]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[14]: #areaunits\n\n[15]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[16]: https://tools.ietf.org/html/rfc7946#section-5\n\n[17]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array\n\n[18]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n[19]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[20]: https://developer.mozilla.org/docs/Web/API/Position\n\n[21]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error\n\n[22]: https://tools.ietf.org/html/rfc7946#section-3.1.3\n\n[23]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/helpers\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-helpers/README_UNITS.md",
    "content": "# @turf/helpers\n\n## Units\n\n* meters\n* metres\n* millimeters\n* millimetres\n* centimeters\n* centimetres\n* kilometers\n* kilometres\n* miles\n* nauticalmiles\n* inches\n* yards\n* feet\n* radians\n* degrees\n\n## AreaUnits\n\n* meters\n* metres\n* millimeters\n* millimetres\n* centimeters\n* centimetres\n* kilometers\n* kilometres\n* miles\n* nauticalmiles\n* inches\n* yards\n* feet\n* acres\n* hectares"
  },
  {
    "path": "packages/turf-helpers/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport {\n  point,\n  lineString,\n  polygon,\n  multiPoint,\n  multiLineString,\n  multiPolygon,\n  featureCollection,\n  geometryCollection,\n  round,\n} from \"./index.js\";\n\n/**\n * Benchmark Results\n *\n * round x 54,405,175 ops/sec ±2.03% (89 runs sampled)\n * point x 25,384,060 ops/sec ±2.29% (85 runs sampled)\n * lineString x 16,548,474 ops/sec ±1.84% (86 runs sampled)\n * polygon x 12,348,826 ops/sec ±2.02% (85 runs sampled)\n * multiPoint x 17,150,485 ops/sec ±1.76% (86 runs sampled)\n * multiLineString x 11,328,369 ops/sec ±2.82% (79 runs sampled)\n * multiPolygon x 1,284,305 ops/sec ±1.22% (89 runs sampled)\n * featureCollection x 10,847,952 ops/sec ±1.95% (82 runs sampled)\n * geometryCollection x 14,392,524 ops/sec ±2.06% (89 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-helpers\");\nsuite\n  .add(\"point + properties\", () => point([5, 10], { foo: \"bar\" }))\n  .add(\"point\", () => point([5, 10]))\n  .add(\"round\", () => round(120.123))\n  .add(\"lineString\", () =>\n    lineString([\n      [5, 10],\n      [20, 40],\n    ])\n  )\n  .add(\"polygon\", () =>\n    polygon([\n      [\n        [5, 10],\n        [20, 40],\n        [40, 0],\n        [5, 10],\n      ],\n    ])\n  )\n  .add(\"multiPoint\", () =>\n    multiPoint([\n      [0, 0],\n      [10, 10],\n    ])\n  )\n  .add(\"multiLineString\", () =>\n    multiLineString([\n      [\n        [0, 0],\n        [10, 10],\n      ],\n      [\n        [5, 0],\n        [15, 8],\n      ],\n    ])\n  )\n  .add(\"multiPolygon\", () =>\n    multiPolygon([\n      [\n        [\n          [94, 57],\n          [78, 49],\n          [94, 43],\n          [94, 57],\n        ],\n      ],\n      [\n        [\n          [93, 19],\n          [63, 7],\n          [79, 0],\n          [93, 19],\n        ],\n      ],\n    ])\n  )\n  .add(\"featureCollection\", () =>\n    featureCollection([point([5, 10]), point([5, 10])])\n  )\n  .add(\"geometryCollection\", () =>\n    geometryCollection([\n      { type: \"Point\", coordinates: [100, 0] },\n      { type: \"Point\", coordinates: [100, 0] },\n    ])\n  )\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-helpers/index.ts",
    "content": "import {\n  BBox,\n  Feature,\n  FeatureCollection,\n  Geometry,\n  GeometryCollection,\n  GeometryObject,\n  LineString,\n  MultiLineString,\n  MultiPoint,\n  MultiPolygon,\n  Point,\n  Polygon,\n  Position,\n  GeoJsonProperties,\n} from \"geojson\";\n\nimport { Id } from \"./lib/geojson.js\";\nexport * from \"./lib/geojson.js\";\n\n/**\n * @module helpers\n */\n\n// TurfJS Combined Types\nexport type Coord = Feature<Point> | Point | Position;\n\n/**\n * Linear measurement units.\n *\n * ⚠️ Warning. Be aware of the implications of using radian or degree units to\n * measure distance. The distance represented by a degree of longitude *varies*\n * depending on latitude.\n *\n * See https://www.thoughtco.com/degree-of-latitude-and-longitude-distance-4070616\n * for an illustration of this behaviour.\n *\n * @typedef\n */\nexport type Units =\n  | \"meters\"\n  | \"metres\"\n  | \"millimeters\"\n  | \"millimetres\"\n  | \"centimeters\"\n  | \"centimetres\"\n  | \"kilometers\"\n  | \"kilometres\"\n  | \"miles\"\n  | \"nauticalmiles\"\n  | \"inches\"\n  | \"yards\"\n  | \"feet\"\n  | \"radians\"\n  | \"degrees\";\n\n/**\n * Area measurement units.\n *\n * @typedef\n */\nexport type AreaUnits =\n  | Exclude<Units, \"radians\" | \"degrees\">\n  | \"acres\"\n  | \"hectares\";\n\n/**\n * Grid types.\n *\n * @typedef\n */\nexport type Grid = \"point\" | \"square\" | \"hex\" | \"triangle\";\n\n/**\n * Shorthand corner identifiers.\n *\n * @typedef\n */\nexport type Corners = \"sw\" | \"se\" | \"nw\" | \"ne\" | \"center\" | \"centroid\";\n\n/**\n * Geometries made up of lines i.e. lines and polygons.\n *\n * @typedef\n */\nexport type Lines = LineString | MultiLineString | Polygon | MultiPolygon;\n\n/**\n * Convenience type for all possible GeoJSON.\n *\n * @typedef\n */\nexport type AllGeoJSON =\n  | Feature\n  | FeatureCollection\n  | Geometry\n  | GeometryCollection;\n\n/**\n * The Earth radius in meters. Used by Turf modules that model the Earth as a sphere. The {@link https://en.wikipedia.org/wiki/Earth_radius#Arithmetic_mean_radius mean radius} was selected because it is {@link https://rosettacode.org/wiki/Haversine_formula#:~:text=This%20value%20is%20recommended recommended } by the Haversine formula (used by turf/distance) to reduce error.\n *\n * @constant\n */\nexport const earthRadius = 6371008.8;\n\n/**\n * Unit of measurement factors based on earthRadius.\n *\n * Keys are the name of the unit, values are the number of that unit in a single radian\n *\n * @constant\n */\nexport const factors: Record<Units, number> = {\n  centimeters: earthRadius * 100,\n  centimetres: earthRadius * 100,\n  degrees: 360 / (2 * Math.PI),\n  feet: earthRadius * 3.28084,\n  inches: earthRadius * 39.37,\n  kilometers: earthRadius / 1000,\n  kilometres: earthRadius / 1000,\n  meters: earthRadius,\n  metres: earthRadius,\n  miles: earthRadius / 1609.344,\n  millimeters: earthRadius * 1000,\n  millimetres: earthRadius * 1000,\n  nauticalmiles: earthRadius / 1852,\n  radians: 1,\n  yards: earthRadius * 1.0936,\n};\n\n/**\n\n * Area of measurement factors based on 1 square meter.\n *\n * @constant\n */\nexport const areaFactors: Record<AreaUnits, number> = {\n  acres: 0.000247105,\n  centimeters: 10000,\n  centimetres: 10000,\n  feet: 10.763910417,\n  hectares: 0.0001,\n  inches: 1550.003100006,\n  kilometers: 0.000001,\n  kilometres: 0.000001,\n  meters: 1,\n  metres: 1,\n  miles: 3.86e-7,\n  nauticalmiles: 2.9155334959812285e-7,\n  millimeters: 1000000,\n  millimetres: 1000000,\n  yards: 1.195990046,\n};\n\n/**\n * Wraps a GeoJSON {@link Geometry} in a GeoJSON {@link Feature}.\n *\n * @function\n * @param {GeometryObject} geometry input geometry\n * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {Id} [options.id] Identifier associated with the Feature\n * @returns {Feature<GeometryObject, GeoJsonProperties>} a GeoJSON Feature\n * @example\n * var geometry = {\n *   \"type\": \"Point\",\n *   \"coordinates\": [110, 50]\n * };\n *\n * var feature = turf.feature(geometry);\n *\n * //=feature\n */\nexport function feature<\n  G extends GeometryObject = Geometry,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  geom: G | null,\n  properties?: P,\n  options: { bbox?: BBox; id?: Id } = {}\n): Feature<G, P> {\n  const feat: any = { type: \"Feature\" };\n  if (options.id === 0 || options.id) {\n    feat.id = options.id;\n  }\n  if (options.bbox) {\n    feat.bbox = options.bbox;\n  }\n  feat.properties = properties || {};\n  feat.geometry = geom;\n  return feat;\n}\n\n/**\n * Creates a GeoJSON {@link Geometry} from a Geometry string type & coordinates.\n * For GeometryCollection type use `helpers.geometryCollection`\n *\n * @function\n * @param {(\"Point\" | \"LineString\" | \"Polygon\" | \"MultiPoint\" | \"MultiLineString\" | \"MultiPolygon\")} type Geometry Type\n * @param {Array<any>} coordinates Coordinates\n * @param {Object} [options={}] Optional Parameters\n * @returns {Geometry} a GeoJSON Geometry\n * @example\n * var type = \"Point\";\n * var coordinates = [110, 50];\n * var geometry = turf.geometry(type, coordinates);\n * // => geometry\n */\nexport function geometry<\n  T extends\n    | \"Point\"\n    | \"LineString\"\n    | \"Polygon\"\n    | \"MultiPoint\"\n    | \"MultiLineString\"\n    | \"MultiPolygon\",\n>(\n  type: T,\n  coordinates: any[],\n  _options: Record<string, never> = {}\n): Extract<Geometry, { type: T }> {\n  switch (type) {\n    case \"Point\":\n      return point(coordinates).geometry as Extract<Geometry, { type: T }>;\n    case \"LineString\":\n      return lineString(coordinates).geometry as Extract<Geometry, { type: T }>;\n    case \"Polygon\":\n      return polygon(coordinates).geometry as Extract<Geometry, { type: T }>;\n    case \"MultiPoint\":\n      return multiPoint(coordinates).geometry as Extract<Geometry, { type: T }>;\n    case \"MultiLineString\":\n      return multiLineString(coordinates).geometry as Extract<\n        Geometry,\n        { type: T }\n      >;\n    case \"MultiPolygon\":\n      return multiPolygon(coordinates).geometry as Extract<\n        Geometry,\n        { type: T }\n      >;\n    default:\n      throw new Error(type + \" is invalid\");\n  }\n}\n\n/**\n * Creates a {@link Point} {@link Feature} from a Position.\n *\n * @function\n * @param {Position} coordinates longitude, latitude position (each in decimal degrees)\n * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {Id} [options.id] Identifier associated with the Feature\n * @returns {Feature<Point, GeoJsonProperties>} a Point feature\n * @example\n * var point = turf.point([-75.343, 39.984]);\n *\n * //=point\n */\nexport function point<P extends GeoJsonProperties = GeoJsonProperties>(\n  coordinates: Position,\n  properties?: P,\n  options: { bbox?: BBox; id?: Id } = {}\n): Feature<Point, P> {\n  if (!coordinates) {\n    throw new Error(\"coordinates is required\");\n  }\n  if (!Array.isArray(coordinates)) {\n    throw new Error(\"coordinates must be an Array\");\n  }\n  if (coordinates.length < 2) {\n    throw new Error(\"coordinates must be at least 2 numbers long\");\n  }\n  if (!isNumber(coordinates[0]) || !isNumber(coordinates[1])) {\n    throw new Error(\"coordinates must contain numbers\");\n  }\n\n  const geom: Point = {\n    type: \"Point\",\n    coordinates,\n  };\n  return feature(geom, properties, options);\n}\n\n/**\n * Creates a {@link Point} {@link FeatureCollection} from an Array of Point coordinates.\n *\n * @function\n * @param {Position[]} coordinates an array of Points\n * @param {GeoJsonProperties} [properties={}] Translate these properties to each Feature\n * @param {Object} [options={}] Optional Parameters\n * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north]\n * associated with the FeatureCollection\n * @param {Id} [options.id] Identifier associated with the FeatureCollection\n * @returns {FeatureCollection<Point>} Point Feature\n * @example\n * var points = turf.points([\n *   [-75, 39],\n *   [-80, 45],\n *   [-78, 50]\n * ]);\n *\n * //=points\n */\nexport function points<P extends GeoJsonProperties = GeoJsonProperties>(\n  coordinates: Position[],\n  properties?: P,\n  options: { bbox?: BBox; id?: Id } = {}\n): FeatureCollection<Point, P> {\n  return featureCollection(\n    coordinates.map((coords) => {\n      return point(coords, properties);\n    }),\n    options\n  );\n}\n\n/**\n * Creates a {@link Polygon} {@link Feature} from an Array of LinearRings.\n *\n * @function\n * @param {Position[][]} coordinates an array of LinearRings\n * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {Id} [options.id] Identifier associated with the Feature\n * @returns {Feature<Polygon, GeoJsonProperties>} Polygon Feature\n * @example\n * var polygon = turf.polygon([[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]], { name: 'poly1' });\n *\n * //=polygon\n */\nexport function polygon<P extends GeoJsonProperties = GeoJsonProperties>(\n  coordinates: Position[][],\n  properties?: P,\n  options: { bbox?: BBox; id?: Id } = {}\n): Feature<Polygon, P> {\n  for (const ring of coordinates) {\n    if (ring.length < 4) {\n      throw new Error(\n        \"Each LinearRing of a Polygon must have 4 or more Positions.\"\n      );\n    }\n\n    if (ring[ring.length - 1].length !== ring[0].length) {\n      throw new Error(\"First and last Position are not equivalent.\");\n    }\n\n    for (let j = 0; j < ring[ring.length - 1].length; j++) {\n      // Check if first point of Polygon contains two numbers\n      if (ring[ring.length - 1][j] !== ring[0][j]) {\n        throw new Error(\"First and last Position are not equivalent.\");\n      }\n    }\n  }\n  const geom: Polygon = {\n    type: \"Polygon\",\n    coordinates,\n  };\n  return feature(geom, properties, options);\n}\n\n/**\n * Creates a {@link Polygon} {@link FeatureCollection} from an Array of Polygon coordinates.\n *\n * @function\n * @param {Position[][][]} coordinates an array of Polygon coordinates\n * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {Id} [options.id] Identifier associated with the FeatureCollection\n * @returns {FeatureCollection<Polygon, GeoJsonProperties>} Polygon FeatureCollection\n * @example\n * var polygons = turf.polygons([\n *   [[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]],\n *   [[[-15, 42], [-14, 46], [-12, 41], [-17, 44], [-15, 42]]],\n * ]);\n *\n * //=polygons\n */\nexport function polygons<P extends GeoJsonProperties = GeoJsonProperties>(\n  coordinates: Position[][][],\n  properties?: P,\n  options: { bbox?: BBox; id?: Id } = {}\n): FeatureCollection<Polygon, P> {\n  return featureCollection(\n    coordinates.map((coords) => {\n      return polygon(coords, properties);\n    }),\n    options\n  );\n}\n\n/**\n * Creates a {@link LineString} {@link Feature} from an Array of Positions.\n *\n * @function\n * @param {Position[]} coordinates an array of Positions\n * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {Id} [options.id] Identifier associated with the Feature\n * @returns {Feature<LineString, GeoJsonProperties>} LineString Feature\n * @example\n * var linestring1 = turf.lineString([[-24, 63], [-23, 60], [-25, 65], [-20, 69]], {name: 'line 1'});\n * var linestring2 = turf.lineString([[-14, 43], [-13, 40], [-15, 45], [-10, 49]], {name: 'line 2'});\n *\n * //=linestring1\n * //=linestring2\n */\nexport function lineString<P extends GeoJsonProperties = GeoJsonProperties>(\n  coordinates: Position[],\n  properties?: P,\n  options: { bbox?: BBox; id?: Id } = {}\n): Feature<LineString, P> {\n  if (coordinates.length < 2) {\n    throw new Error(\"coordinates must be an array of two or more positions\");\n  }\n  const geom: LineString = {\n    type: \"LineString\",\n    coordinates,\n  };\n  return feature(geom, properties, options);\n}\n\n/**\n * Creates a {@link LineString} {@link FeatureCollection} from an Array of LineString coordinates.\n *\n * @function\n * @param {Position[][]} coordinates an array of LinearRings\n * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north]\n * associated with the FeatureCollection\n * @param {Id} [options.id] Identifier associated with the FeatureCollection\n * @returns {FeatureCollection<LineString, GeoJsonProperties>} LineString FeatureCollection\n * @example\n * var linestrings = turf.lineStrings([\n *   [[-24, 63], [-23, 60], [-25, 65], [-20, 69]],\n *   [[-14, 43], [-13, 40], [-15, 45], [-10, 49]]\n * ]);\n *\n * //=linestrings\n */\nexport function lineStrings<P extends GeoJsonProperties = GeoJsonProperties>(\n  coordinates: Position[][],\n  properties?: P,\n  options: { bbox?: BBox; id?: Id } = {}\n): FeatureCollection<LineString, P> {\n  return featureCollection(\n    coordinates.map((coords) => {\n      return lineString(coords, properties);\n    }),\n    options\n  );\n}\n\n/**\n * Takes one or more {@link Feature|Features} and creates a {@link FeatureCollection}.\n *\n * @function\n * @param {Array<Feature<GeometryObject, GeoJsonProperties>>} features input features\n * @param {Object} [options={}] Optional Parameters\n * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {Id} [options.id] Identifier associated with the Feature\n * @returns {FeatureCollection<GeometryObject, GeoJsonProperties>} FeatureCollection of Features\n * @example\n * var locationA = turf.point([-75.343, 39.984], {name: 'Location A'});\n * var locationB = turf.point([-75.833, 39.284], {name: 'Location B'});\n * var locationC = turf.point([-75.534, 39.123], {name: 'Location C'});\n *\n * var collection = turf.featureCollection([\n *   locationA,\n *   locationB,\n *   locationC\n * ]);\n *\n * //=collection\n */\nexport function featureCollection<\n  G extends GeometryObject = Geometry,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  features: Array<Feature<G, P>>,\n  options: { bbox?: BBox; id?: Id } = {}\n): FeatureCollection<G, P> {\n  const fc: any = { type: \"FeatureCollection\" };\n  if (options.id) {\n    fc.id = options.id;\n  }\n  if (options.bbox) {\n    fc.bbox = options.bbox;\n  }\n  fc.features = features;\n  return fc;\n}\n\n/**\n * Creates a {@link Feature}<{@link MultiLineString}> based on a\n * coordinate array. Properties can be added optionally.\n *\n * @function\n * @param {Position[][]} coordinates an array of LineStrings\n * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {Id} [options.id] Identifier associated with the Feature\n * @returns {Feature<MultiLineString, GeoJsonProperties>} a MultiLineString feature\n * @throws {Error} if no coordinates are passed\n * @example\n * var multiLine = turf.multiLineString([[[0,0],[10,10]]]);\n *\n * //=multiLine\n */\nexport function multiLineString<\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  coordinates: Position[][],\n  properties?: P,\n  options: { bbox?: BBox; id?: Id } = {}\n): Feature<MultiLineString, P> {\n  const geom: MultiLineString = {\n    type: \"MultiLineString\",\n    coordinates,\n  };\n  return feature(geom, properties, options);\n}\n\n/**\n * Creates a {@link Feature}<{@link MultiPoint}> based on a\n * coordinate array. Properties can be added optionally.\n *\n * @function\n * @param {Position[]} coordinates an array of Positions\n * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {Id} [options.id] Identifier associated with the Feature\n * @returns {Feature<MultiPoint, GeoJsonProperties>} a MultiPoint feature\n * @throws {Error} if no coordinates are passed\n * @example\n * var multiPt = turf.multiPoint([[0,0],[10,10]]);\n *\n * //=multiPt\n */\nexport function multiPoint<P extends GeoJsonProperties = GeoJsonProperties>(\n  coordinates: Position[],\n  properties?: P,\n  options: { bbox?: BBox; id?: Id } = {}\n): Feature<MultiPoint, P> {\n  const geom: MultiPoint = {\n    type: \"MultiPoint\",\n    coordinates,\n  };\n  return feature(geom, properties, options);\n}\n\n/**\n * Creates a {@link Feature}<{@link MultiPolygon}> based on a\n * coordinate array. Properties can be added optionally.\n *\n * @function\n * @param {Position[][][]} coordinates an array of Polygons\n * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {Id} [options.id] Identifier associated with the Feature\n * @returns {Feature<MultiPolygon, GeoJsonProperties>} a multipolygon feature\n * @throws {Error} if no coordinates are passed\n * @example\n * var multiPoly = turf.multiPolygon([[[[0,0],[0,10],[10,10],[10,0],[0,0]]]]);\n *\n * //=multiPoly\n *\n */\nexport function multiPolygon<P extends GeoJsonProperties = GeoJsonProperties>(\n  coordinates: Position[][][],\n  properties?: P,\n  options: { bbox?: BBox; id?: Id } = {}\n): Feature<MultiPolygon, P> {\n  const geom: MultiPolygon = {\n    type: \"MultiPolygon\",\n    coordinates,\n  };\n  return feature(geom, properties, options);\n}\n\n/**\n * Creates a Feature<GeometryCollection> based on a\n * coordinate array. Properties can be added optionally.\n *\n * @function\n * @param {Array<Point | LineString | Polygon | MultiPoint | MultiLineString | MultiPolygon>} geometries an array of GeoJSON Geometries\n * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties\n * @param {Object} [options={}] Optional Parameters\n * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature\n * @param {Id} [options.id] Identifier associated with the Feature\n * @returns {Feature<GeometryCollection, GeoJsonProperties>} a GeoJSON GeometryCollection Feature\n * @example\n * var pt = turf.geometry(\"Point\", [100, 0]);\n * var line = turf.geometry(\"LineString\", [[101, 0], [102, 1]]);\n * var collection = turf.geometryCollection([pt, line]);\n *\n * // => collection\n */\nexport function geometryCollection<\n  G extends\n    | Point\n    | LineString\n    | Polygon\n    | MultiPoint\n    | MultiLineString\n    | MultiPolygon,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  geometries: Array<G>,\n  properties?: P,\n  options: { bbox?: BBox; id?: Id } = {}\n): Feature<GeometryCollection<G>, P> {\n  const geom: GeometryCollection<G> = {\n    type: \"GeometryCollection\",\n    geometries,\n  };\n  return feature(geom, properties, options);\n}\n\n/**\n * Round number to precision\n *\n * @function\n * @param {number} num Number\n * @param {number} [precision=0] Precision\n * @returns {number} rounded number\n * @example\n * turf.round(120.4321)\n * //=120\n *\n * turf.round(120.4321, 2)\n * //=120.43\n */\nexport function round(num: number, precision = 0): number {\n  if (precision && !(precision >= 0)) {\n    throw new Error(\"precision must be a positive number\");\n  }\n  const multiplier = Math.pow(10, precision || 0);\n  return Math.round(num * multiplier) / multiplier;\n}\n\n/**\n * Convert a distance measurement (assuming a spherical Earth) from radians to a more friendly unit.\n * Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet\n *\n * @function\n * @param {number} radians in radians across the sphere\n * @param {Units} [units=\"kilometers\"] can be degrees, radians, miles, inches, yards, metres,\n * meters, kilometres, kilometers.\n * @returns {number} distance\n */\nexport function radiansToLength(\n  radians: number,\n  units: Units = \"kilometers\"\n): number {\n  const factor = factors[units];\n  if (!factor) {\n    throw new Error(units + \" units is invalid\");\n  }\n  return radians * factor;\n}\n\n/**\n * Convert a distance measurement (assuming a spherical Earth) from a real-world unit into radians\n * Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet\n *\n * @function\n * @param {number} distance in real units\n * @param {Units} [units=\"kilometers\"] can be degrees, radians, miles, inches, yards, metres,\n * meters, kilometres, kilometers.\n * @returns {number} radians\n */\nexport function lengthToRadians(\n  distance: number,\n  units: Units = \"kilometers\"\n): number {\n  const factor = factors[units];\n  if (!factor) {\n    throw new Error(units + \" units is invalid\");\n  }\n  return distance / factor;\n}\n\n/**\n * Convert a distance measurement (assuming a spherical Earth) from a real-world unit into degrees\n * Valid units: miles, nauticalmiles, inches, yards, meters, metres, centimeters, kilometres, feet\n *\n * @function\n * @param {number} distance in real units\n * @param {Units} [units=\"kilometers\"] can be degrees, radians, miles, inches, yards, metres,\n * meters, kilometres, kilometers.\n * @returns {number} degrees\n */\nexport function lengthToDegrees(distance: number, units?: Units): number {\n  return radiansToDegrees(lengthToRadians(distance, units));\n}\n\n/**\n * Converts any bearing angle from the north line direction (positive clockwise)\n * and returns an angle between 0-360 degrees (positive clockwise), 0 being the north line\n *\n * @function\n * @param {number} bearing angle, between -180 and +180 degrees\n * @returns {number} angle between 0 and 360 degrees\n */\nexport function bearingToAzimuth(bearing: number): number {\n  let angle = bearing % 360;\n  if (angle < 0) {\n    angle += 360;\n  }\n  return angle;\n}\n\n/**\n * Converts any azimuth angle from the north line direction (positive clockwise)\n * and returns an angle between -180 and +180 degrees (positive clockwise), 0 being the north line\n *\n * @function\n * @param {number} angle between 0 and 360 degrees\n * @returns {number} bearing between -180 and +180 degrees\n */\nexport function azimuthToBearing(angle: number): number {\n  // Ignore full revolutions (multiples of 360)\n  angle = angle % 360;\n\n  if (angle > 180) {\n    return angle - 360;\n  } else if (angle < -180) {\n    return angle + 360;\n  }\n\n  return angle;\n}\n\n/**\n * Converts an angle in radians to degrees\n *\n * @function\n * @param {number} radians angle in radians\n * @returns {number} degrees between 0 and 360 degrees\n */\nexport function radiansToDegrees(radians: number): number {\n  // % (2 * Math.PI) radians in case someone passes value > 2π\n  const normalisedRadians = radians % (2 * Math.PI);\n  return (normalisedRadians * 180) / Math.PI;\n}\n\n/**\n * Converts an angle in degrees to radians\n *\n * @function\n * @param {number} degrees angle between 0 and 360 degrees\n * @returns {number} angle in radians\n */\nexport function degreesToRadians(degrees: number): number {\n  // % 360 degrees in case someone passes value > 360\n  const normalisedDegrees = degrees % 360;\n  return (normalisedDegrees * Math.PI) / 180;\n}\n\n/**\n * Converts a length from one unit to another.\n *\n * @function\n * @param {number} length Length to be converted\n * @param {Units} [originalUnit=\"kilometers\"] Input length unit\n * @param {Units} [finalUnit=\"kilometers\"] Returned length unit\n * @returns {number} The converted length\n */\nexport function convertLength(\n  length: number,\n  originalUnit: Units = \"kilometers\",\n  finalUnit: Units = \"kilometers\"\n): number {\n  if (!(length >= 0)) {\n    throw new Error(\"length must be a positive number\");\n  }\n  return radiansToLength(lengthToRadians(length, originalUnit), finalUnit);\n}\n\n/**\n * Converts an area from one unit to another.\n *\n * @function\n * @param {number} area Area to be converted\n * @param {AreaUnits} [originalUnit=\"meters\"] Input area unit\n * @param {AreaUnits} [finalUnit=\"kilometers\"] Returned area unit\n * @returns {number} The converted length\n */\nexport function convertArea(\n  area: number,\n  originalUnit: AreaUnits = \"meters\",\n  finalUnit: AreaUnits = \"kilometers\"\n): number {\n  if (!(area >= 0)) {\n    throw new Error(\"area must be a positive number\");\n  }\n\n  const startFactor = areaFactors[originalUnit];\n  if (!startFactor) {\n    throw new Error(\"invalid original units\");\n  }\n\n  const finalFactor = areaFactors[finalUnit];\n  if (!finalFactor) {\n    throw new Error(\"invalid final units\");\n  }\n\n  return (area / startFactor) * finalFactor;\n}\n\n/**\n * isNumber\n *\n * @function\n * @param {any} num Number to validate\n * @returns {boolean} true/false\n * @example\n * turf.isNumber(123)\n * //=true\n * turf.isNumber('foo')\n * //=false\n */\nexport function isNumber(num: any): boolean {\n  return !isNaN(num) && num !== null && !Array.isArray(num);\n}\n\n/**\n * isObject\n *\n * @function\n * @param {any} input variable to validate\n * @returns {boolean} true/false, including false for Arrays and Functions\n * @example\n * turf.isObject({elevation: 10})\n * //=true\n * turf.isObject('foo')\n * //=false\n */\nexport function isObject(input: any): boolean {\n  return input !== null && typeof input === \"object\" && !Array.isArray(input);\n}\n\n/**\n * Validate BBox\n *\n * @private\n * @param {any} bbox BBox to validate\n * @returns {void}\n * @throws {Error} if BBox is not valid\n * @example\n * validateBBox([-180, -40, 110, 50])\n * //=OK\n * validateBBox([-180, -40])\n * //=Error\n * validateBBox('Foo')\n * //=Error\n * validateBBox(5)\n * //=Error\n * validateBBox(null)\n * //=Error\n * validateBBox(undefined)\n * //=Error\n */\nexport function validateBBox(bbox: any): void {\n  if (!bbox) {\n    throw new Error(\"bbox is required\");\n  }\n  if (!Array.isArray(bbox)) {\n    throw new Error(\"bbox must be an Array\");\n  }\n  if (bbox.length !== 4 && bbox.length !== 6) {\n    throw new Error(\"bbox must be an Array of 4 or 6 numbers\");\n  }\n  bbox.forEach((num) => {\n    if (!isNumber(num)) {\n      throw new Error(\"bbox must only contain numbers\");\n    }\n  });\n}\n\n/**\n * Validate Id\n *\n * @private\n * @param {any} id Id to validate\n * @returns {void}\n * @throws {Error} if Id is not valid\n * @example\n * validateId([-180, -40, 110, 50])\n * //=Error\n * validateId([-180, -40])\n * //=Error\n * validateId('Foo')\n * //=OK\n * validateId(5)\n * //=OK\n * validateId(null)\n * //=Error\n * validateId(undefined)\n * //=Error\n */\nexport function validateId(id: any): void {\n  if (!id) {\n    throw new Error(\"id is required\");\n  }\n  if ([\"string\", \"number\"].indexOf(typeof id) === -1) {\n    throw new Error(\"id must be a number or a string\");\n  }\n}\n"
  },
  {
    "path": "packages/turf-helpers/lib/geojson.ts",
    "content": "/**\n * Id\n *\n * https://tools.ietf.org/html/rfc7946#section-3.2\n * If a Feature has a commonly used identifier, that identifier SHOULD be included as a member of\n * the Feature object with the name \"id\", and the value of this member is either a JSON string or number.\n *\n * Should be contributed to @types/geojson\n */\nexport type Id = string | number;\n"
  },
  {
    "path": "packages/turf-helpers/package.json",
    "content": "{\n  \"name\": \"@turf/helpers\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Provides helper functions to create GeoJSON features, like points, lines, or areas on a map.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Tom MacWright <@tmcw>\",\n    \"Stefano Borghi <@stebogit>\",\n    \"Denis Carriere <@DenisCarriere>\",\n    \"William Nordmann <@wnordmann>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"geo\",\n    \"point\",\n    \"turf\",\n    \"geojson\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-helpers/test.ts",
    "content": "import test from \"tape\";\nimport {\n  point,\n  polygon,\n  lineString,\n  feature,\n  featureCollection,\n  geometryCollection,\n  multiLineString,\n  multiPoint,\n  multiPolygon,\n  radiansToLength,\n  lengthToRadians,\n  lengthToDegrees,\n  radiansToDegrees,\n  degreesToRadians,\n  bearingToAzimuth,\n  azimuthToBearing,\n  convertLength,\n  convertArea,\n  round,\n  isObject,\n  isNumber,\n  earthRadius,\n} from \"./index.js\";\nimport * as turf from \"./index.js\";\n\ntest(\"point\", (t) => {\n  const ptArray = point([5, 10], { name: \"test point\" });\n\n  t.ok(ptArray);\n  t.equal(ptArray.geometry.coordinates[0], 5);\n  t.equal(ptArray.geometry.coordinates[1], 10);\n  t.equal(ptArray.properties.name, \"test point\");\n\n  // t.throws(() => {\n  //     point('hey', 'invalid');\n  // }, 'numbers required');\n\n  const noProps = point([0, 0]);\n  t.deepEqual(noProps.properties, {}, \"no props becomes {}\");\n\n  t.throws(() => {\n    point(\"hello\");\n  }, \"Issue #1941 - point rejects invalid coordinate arg\");\n\n  t.end();\n});\n\ntest(\"polygon\", (t) => {\n  const poly = polygon(\n    [\n      [\n        [5, 10],\n        [20, 40],\n        [40, 0],\n        [5, 10],\n      ],\n    ],\n    { name: \"test polygon\" }\n  );\n  t.ok(poly);\n  t.equal(poly.geometry.coordinates[0][0][0], 5);\n  t.equal(poly.geometry.coordinates[0][1][0], 20);\n  t.equal(poly.geometry.coordinates[0][2][0], 40);\n  t.equal(poly.properties.name, \"test polygon\");\n  t.equal(poly.geometry.type, \"Polygon\");\n  t.throws(\n    () => {\n      t.equal(\n        polygon([\n          [\n            [20.0, 0.0],\n            [101.0, 0.0],\n            [101.0, 1.0],\n            [100.0, 1.0],\n            [100.0, 0.0],\n          ],\n        ]).message\n      );\n    },\n    /First and last Position are not equivalent/,\n    \"invalid ring - not wrapped\"\n  );\n  t.throws(\n    () => {\n      t.equal(\n        polygon([\n          [\n            [1, 2, 3],\n            [4, 5],\n            [6, 7],\n            [1, 2],\n          ],\n        ]).message\n      );\n    },\n    /First and last Position are not equivalent/,\n    \"invalid ring - z coordinate\"\n  );\n  t.throws(\n    () => {\n      t.equal(\n        polygon([\n          [\n            [1, 2],\n            [4, 5],\n            [6, 7],\n            [1, 2, 3],\n          ],\n        ]).message\n      );\n    },\n    /First and last Position are not equivalent/,\n    \"invalid ring - z coordinate #2\"\n  );\n  t.throws(\n    () => {\n      t.equal(\n        polygon([\n          [\n            [20.0, 0.0],\n            [101.0, 0.0],\n          ],\n        ]).message\n      );\n    },\n    /Each LinearRing of a Polygon must have 4 or more Positions/,\n    \"invalid ring - too few positions\"\n  );\n  const noProperties = polygon([\n    [\n      [5, 10],\n      [20, 40],\n      [40, 0],\n      [5, 10],\n    ],\n  ]);\n  t.deepEqual(noProperties.properties, {});\n  t.end();\n});\n\ntest(\"lineString\", (t) => {\n  const line = lineString(\n    [\n      [5, 10],\n      [20, 40],\n    ],\n    { name: \"test line\" }\n  );\n  t.ok(line, \"creates a linestring\");\n  t.equal(line.geometry.coordinates[0][0], 5);\n  t.equal(line.geometry.coordinates[1][0], 20);\n  t.equal(line.properties.name, \"test line\");\n  t.deepEqual(\n    lineString([\n      [5, 10],\n      [20, 40],\n    ]).properties,\n    {},\n    \"no properties case\"\n  );\n\n  t.throws(() => lineString(), \"error on no coordinates\");\n  t.throws(\n    () => lineString([[5, 10]]),\n    \"coordinates must be an array of two or more positions\"\n  );\n  t.throws(() => lineString([[\"xyz\", 10]]), \"coordinates must contain numbers\");\n  t.throws(() => lineString([[5, \"xyz\"]]), \"coordinates must contain numbers\");\n  t.end();\n});\n\ntest(\"featureCollection\", (t) => {\n  const p1 = point([0, 0], { name: \"first point\" });\n  const p2 = point([0, 10]);\n  const p3 = point([10, 10]);\n  const p4 = point([10, 0]);\n  const fc = featureCollection([p1, p2, p3, p4]);\n  t.ok(fc);\n  t.equal(fc.features.length, 4);\n  t.equal(fc.features[0].properties.name, \"first point\");\n  t.equal(fc.type, \"FeatureCollection\");\n  t.equal(fc.features[1].geometry.type, \"Point\");\n  t.equal(fc.features[1].geometry.coordinates[0], 0);\n  t.equal(fc.features[1].geometry.coordinates[1], 10);\n  // t.throws(() => featureCollection(fc), /features must be an Array/);\n  // t.throws(() => featureCollection(p1), /features must be an Array/);\n  t.end();\n});\n\ntest(\"multilinestring\", (t) => {\n  t.deepEqual(\n    multiLineString([\n      [\n        [0, 0],\n        [10, 10],\n      ],\n      [\n        [5, 0],\n        [15, 8],\n      ],\n    ]),\n    {\n      type: \"Feature\",\n      properties: {},\n      geometry: {\n        type: \"MultiLineString\",\n        coordinates: [\n          [\n            [0, 0],\n            [10, 10],\n          ],\n          [\n            [5, 0],\n            [15, 8],\n          ],\n        ],\n      },\n    },\n    \"takes coordinates\"\n  );\n\n  t.deepEqual(\n    multiLineString(\n      [\n        [\n          [0, 0],\n          [10, 10],\n        ],\n        [\n          [5, 0],\n          [15, 8],\n        ],\n      ],\n      { test: 23 }\n    ),\n    {\n      type: \"Feature\",\n      properties: {\n        test: 23,\n      },\n      geometry: {\n        type: \"MultiLineString\",\n        coordinates: [\n          [\n            [0, 0],\n            [10, 10],\n          ],\n          [\n            [5, 0],\n            [15, 8],\n          ],\n        ],\n      },\n    },\n    \"takes properties\"\n  );\n\n  // t.throws(() => {\n  //     multiLineString();\n  // }, 'throws error with no coordinates');\n\n  t.end();\n});\n\ntest(\"multiPoint\", (t) => {\n  t.deepEqual(\n    multiPoint([\n      [0, 0],\n      [10, 10],\n    ]),\n    {\n      type: \"Feature\",\n      properties: {},\n      geometry: {\n        type: \"MultiPoint\",\n        coordinates: [\n          [0, 0],\n          [10, 10],\n        ],\n      },\n    },\n    \"takes coordinates\"\n  );\n\n  t.deepEqual(\n    multiPoint(\n      [\n        [0, 0],\n        [10, 10],\n      ],\n      { test: 23 }\n    ),\n    {\n      type: \"Feature\",\n      properties: {\n        test: 23,\n      },\n      geometry: {\n        type: \"MultiPoint\",\n        coordinates: [\n          [0, 0],\n          [10, 10],\n        ],\n      },\n    },\n    \"takes properties\"\n  );\n\n  // t.throws(() => {\n  //     multiPoint();\n  // }, 'throws error with no coordinates');\n\n  t.end();\n});\n\ntest(\"multipolygon\", (t) => {\n  t.deepEqual(\n    multiPolygon([\n      [\n        [\n          [94, 57],\n          [78, 49],\n          [94, 43],\n          [94, 57],\n        ],\n      ],\n      [\n        [\n          [93, 19],\n          [63, 7],\n          [79, 0],\n          [93, 19],\n        ],\n      ],\n    ]),\n    {\n      type: \"Feature\",\n      properties: {},\n      geometry: {\n        type: \"MultiPolygon\",\n        coordinates: [\n          [\n            [\n              [94, 57],\n              [78, 49],\n              [94, 43],\n              [94, 57],\n            ],\n          ],\n          [\n            [\n              [93, 19],\n              [63, 7],\n              [79, 0],\n              [93, 19],\n            ],\n          ],\n        ],\n      },\n    },\n    \"takes coordinates\"\n  );\n\n  t.deepEqual(\n    multiPolygon(\n      [\n        [\n          [\n            [94, 57],\n            [78, 49],\n            [94, 43],\n            [94, 57],\n          ],\n        ],\n        [\n          [\n            [93, 19],\n            [63, 7],\n            [79, 0],\n            [93, 19],\n          ],\n        ],\n      ],\n      { test: 23 }\n    ),\n    {\n      type: \"Feature\",\n      properties: {\n        test: 23,\n      },\n      geometry: {\n        type: \"MultiPolygon\",\n        coordinates: [\n          [\n            [\n              [94, 57],\n              [78, 49],\n              [94, 43],\n              [94, 57],\n            ],\n          ],\n          [\n            [\n              [93, 19],\n              [63, 7],\n              [79, 0],\n              [93, 19],\n            ],\n          ],\n        ],\n      },\n    },\n    \"takes properties\"\n  );\n\n  // t.throws(() => {\n  //     multiPolygon();\n  // }, 'throws error with no coordinates');\n\n  t.end();\n});\n\ntest(\"geometrycollection\", (t) => {\n  const pt = {\n    type: \"Point\",\n    coordinates: [100, 0],\n  };\n  const line = {\n    type: \"LineString\",\n    coordinates: [\n      [101, 0],\n      [102, 1],\n    ],\n  };\n  const gc = geometryCollection([pt, line]);\n\n  t.deepEqual(\n    gc,\n    {\n      type: \"Feature\",\n      properties: {},\n      geometry: {\n        type: \"GeometryCollection\",\n        geometries: [\n          {\n            type: \"Point\",\n            coordinates: [100, 0],\n          },\n          {\n            type: \"LineString\",\n            coordinates: [\n              [101, 0],\n              [102, 1],\n            ],\n          },\n        ],\n      },\n    },\n    \"creates a GeometryCollection\"\n  );\n\n  const gcWithProps = geometryCollection([pt, line], { a: 23 });\n  t.deepEqual(\n    gcWithProps,\n    {\n      type: \"Feature\",\n      properties: { a: 23 },\n      geometry: {\n        type: \"GeometryCollection\",\n        geometries: [\n          {\n            type: \"Point\",\n            coordinates: [100, 0],\n          },\n          {\n            type: \"LineString\",\n            coordinates: [\n              [101, 0],\n              [102, 1],\n            ],\n          },\n        ],\n      },\n    },\n    \"creates a GeometryCollection with properties\"\n  );\n\n  t.end();\n});\n\ntest(\"radiansToLength\", (t) => {\n  t.equal(radiansToLength(1, \"radians\"), 1);\n  t.equal(radiansToLength(1, \"kilometers\"), earthRadius / 1000);\n  t.equal(radiansToLength(1, \"miles\"), earthRadius / 1609.344);\n  // t.throws(() => radiansToLength(1, 'foo'), 'invalid units');\n  t.end();\n});\n\ntest(\"lengthToRadians\", (t) => {\n  t.equal(lengthToRadians(1, \"radians\"), 1);\n  t.equal(lengthToRadians(earthRadius / 1000, \"kilometers\"), 1);\n  t.equal(lengthToRadians(earthRadius / 1609.344, \"miles\"), 1);\n  // t.throws(() => lengthToRadians(1, 'foo'), 'invalid units');\n  t.end();\n});\n\ntest(\"lengthToDegrees\", (t) => {\n  t.equal(lengthToDegrees(1, \"radians\"), 57.29577951308232);\n  t.equal(lengthToDegrees(100, \"kilometers\"), 0.899320363724538);\n  t.equal(lengthToDegrees(10, \"miles\"), 0.1447315831437903);\n  // t.throws(() => lengthToRadians(1, 'foo'), 'invalid units');\n  t.end();\n});\n\ntest(\"radiansToDegrees\", (t) => {\n  t.equal(\n    round(radiansToDegrees(Math.PI / 3), 6),\n    60,\n    \"radiance conversion PI/3\"\n  );\n  t.equal(radiansToDegrees(3.5 * Math.PI), 270, \"radiance conversion 3.5PI\");\n  t.equal(radiansToDegrees(-Math.PI), -180, \"radiance conversion -PI\");\n  t.end();\n});\n\ntest(\"degreesToRadians\", (t) => {\n  t.equal(degreesToRadians(60), Math.PI / 3, \"degrees conversion 60\");\n  t.equal(degreesToRadians(270), 1.5 * Math.PI, \"degrees conversion 270\");\n  t.equal(degreesToRadians(-180), -Math.PI, \"degrees conversion -180\");\n  t.end();\n});\n\ntest(\"bearingToAzimuth\", (t) => {\n  t.equal(bearingToAzimuth(40), 40);\n  t.equal(bearingToAzimuth(-105), 255);\n  t.equal(bearingToAzimuth(410), 50);\n  t.equal(bearingToAzimuth(-200), 160);\n  t.equal(bearingToAzimuth(-395), 325);\n  t.end();\n});\n\ntest(\"azimuthToBearing\", (t) => {\n  t.equal(azimuthToBearing(0), 0);\n  t.equal(azimuthToBearing(360), 0);\n  t.equal(azimuthToBearing(180), 180);\n\n  t.equal(azimuthToBearing(40), 40);\n  t.equal(azimuthToBearing(40 + 360), 40);\n\n  t.equal(azimuthToBearing(-35), -35);\n  t.equal(azimuthToBearing(-35 - 360), -35);\n\n  t.equal(azimuthToBearing(255), -105);\n  t.equal(azimuthToBearing(255 + 360), -105);\n\n  t.equal(azimuthToBearing(-200), 160);\n  t.equal(azimuthToBearing(-200 - 360), 160);\n\n  t.end();\n});\n\ntest(\"round\", (t) => {\n  t.equal(round(125.123), 125);\n  t.equal(round(123.123, 1), 123.1);\n  t.equal(round(123.5), 124);\n  t.throws(() => round(34.5, \"precision\"), \"invalid precision\");\n  t.throws(() => round(34.5, -5), \"invalid precision\");\n  t.end();\n});\n\ntest(\"convertLength\", (t) => {\n  t.equal(convertLength(1000, \"meters\"), 1);\n  t.equal(convertLength(1000, \"meters\", \"kilometers\"), 1);\n  t.equal(convertLength(1, \"kilometers\", \"miles\"), 0.621371192237334);\n  t.equal(convertLength(1, \"miles\", \"kilometers\"), 1.609344);\n  t.equal(convertLength(1, \"nauticalmiles\"), 1.852);\n  t.equal(convertLength(1, \"meters\", \"centimeters\"), 100.00000000000001);\n  t.equal(convertLength(1, \"meters\", \"yards\"), 1.0936);\n  t.equal(convertLength(1, \"yards\", \"meters\"), 0.91441111923921);\n  // t.throws(() => convertLength(1, 'foo'), 'invalid units');\n\n  t.equal(\n    convertLength(Math.PI, \"radians\", \"degrees\"),\n    180,\n    \"PI Radians is 180 degrees\"\n  );\n  t.equal(\n    convertLength(180, \"degrees\", \"radians\"),\n    Math.PI,\n    \"180 Degrees is PI Radians\"\n  );\n  t.end();\n});\n\ntest(\"convertArea\", (t) => {\n  t.equal(convertArea(1000), 0.001);\n  t.equal(convertArea(1, \"kilometres\", \"miles\"), 0.386);\n  t.equal(convertArea(1, \"miles\", \"kilometers\"), 2.5906735751295336);\n  t.equal(convertArea(1, \"meters\", \"centimetres\"), 10000);\n  t.equal(convertArea(100, \"metres\", \"acres\"), 0.0247105);\n  t.equal(convertArea(100, undefined, \"yards\"), 119.59900459999999);\n  t.equal(convertArea(100, \"metres\", \"feet\"), 1076.3910417);\n  t.equal(convertArea(100000, \"feet\", undefined), 0.009290303999749462);\n  t.equal(convertArea(1, \"meters\", \"hectares\"), 0.0001);\n  // t.throws(() => convertLength(1, 'foo'), 'invalid original units');\n  // t.throws(() => convertLength(1, 'meters', 'foo'), 'invalid final units');\n\n  t.end();\n});\n\n// https://github.com/Turfjs/turf/issues/853\n// https://github.com/Turfjs/turf/pull/866#discussion_r129873661\ntest(\"null geometries\", (t) => {\n  t.equal(feature(null).geometry, null, \"feature\");\n  t.equal(\n    featureCollection([feature(null)]).features[0].geometry,\n    null,\n    \"featureCollection\"\n  );\n  t.equal(\n    geometryCollection([feature(null).geometry]).geometry.geometries[0],\n    null,\n    \"geometryCollection\"\n  );\n  t.equal(\n    geometryCollection([]).geometry.geometries.length,\n    0,\n    \"geometryCollection -- empty\"\n  );\n  t.end();\n});\n\ntest(\"turf-helpers -- Handle Id & BBox properties\", (t) => {\n  const id = 12345;\n  const bbox = [10, 30, 10, 30];\n  const pt = point([10, 30], {}, { bbox, id });\n  const ptId0 = point([10, 30], {}, { bbox, id: 0 });\n  const fc = featureCollection([pt], { bbox, id });\n  t.equal(pt.id, id, \"feature id\");\n  t.equal(ptId0.id, 0, \"feature id = 0\"); // issue #1180\n  t.equal(pt.bbox, bbox, \"feature bbox\");\n  t.equal(fc.id, id, \"featureCollection id\");\n  t.equal(fc.bbox, bbox, \"featureCollection bbox\");\n  // t.throws(() => point([10, 30], {}, {bbox: [0], id}), 'throws invalid bbox');\n  // t.throws(() => point([10, 30], {}, {bbox, id: {invalid: 'id'}}), 'throws invalid id');\n  // t.throws(() => featureCollection([pt], {bbox: [0], id}), 'throws invalid bbox');\n  // t.throws(() => featureCollection([pt], {bbox: [0], id: {invalid: 'id'}}), 'throws invalid id');\n  t.end();\n});\n\ntest(\"turf-helpers -- isNumber\", (t) => {\n  // t.throws(() => point(['foo', 'bar']), /coordinates must contain numbers/, 'coordinates must contain numbers');\n  // t.throws(() => lineString([['foo', 'bar'], ['hello', 'world']]), /coordinates must contain numbers/, 'coordinates must contain numbers');\n  // t.throws(() => polygon([[['foo', 'bar'], ['hello', 'world'], ['world', 'hello'], ['foo', 'bar']]]), /coordinates must contain numbers/, 'coordinates must contain numbers');\n\n  // true\n  t.true(isNumber(123));\n  t.true(isNumber(1.23));\n  t.true(isNumber(-1.23));\n  t.true(isNumber(-123));\n  t.true(isNumber(\"123\"));\n  t.true(isNumber(+\"123\"));\n  t.true(isNumber(\"1e10000\"));\n  t.true(isNumber(1e100));\n  t.true(isNumber(Infinity));\n  t.true(isNumber(-Infinity));\n\n  // false\n  t.false(isNumber(+\"ciao\"));\n  t.false(isNumber(\"foo\"));\n  t.false(isNumber(\"10px\"));\n  t.false(isNumber(NaN));\n  t.false(isNumber(undefined));\n  t.false(isNumber(null));\n  t.false(isNumber({ a: 1 }));\n  t.false(isNumber({}));\n  t.false(isNumber([1, 2, 3]));\n  t.false(isNumber([]));\n  t.false(isNumber(isNumber));\n  t.end();\n});\n\ntest(\"turf-helpers -- isObject\", (t) => {\n  // true\n  t.true(isObject({ a: 1 }));\n  t.true(isObject({}));\n  t.true(point([0, 1]));\n  t.true(isObject(new Object()));\n\n  // false\n  t.false(isObject(123));\n  t.false(isObject(Infinity));\n  t.false(isObject(-123));\n  t.false(isObject(\"foo\"));\n  t.false(isObject(NaN));\n  t.false(isObject(undefined));\n  t.false(isObject(null));\n  t.false(isObject([1, 2, 3]));\n  t.false(isObject([]));\n  t.false(isObject(isNumber));\n  t.false(\n    isObject(function () {\n      /*noop*/\n    })\n  );\n  t.end();\n});\n\ntest(\"turf-helpers -- points\", (t) => {\n  const points = turf.points(\n    [\n      [-75, 39],\n      [-80, 45],\n      [-78, 50],\n    ],\n    { foo: \"bar\" },\n    { id: \"hello\" }\n  );\n\n  t.equal(points.features.length, 3);\n  t.equal(points.id, \"hello\");\n  t.equal(points.features[0].properties.foo, \"bar\");\n  t.end();\n});\n\ntest(\"turf-helpers -- lineStrings\", (t) => {\n  var linestrings = turf.lineStrings(\n    [\n      [\n        [-24, 63],\n        [-23, 60],\n        [-25, 65],\n        [-20, 69],\n      ],\n      [\n        [-14, 43],\n        [-13, 40],\n        [-15, 45],\n        [-10, 49],\n      ],\n    ],\n    { foo: \"bar\" },\n    { id: \"hello\" }\n  );\n\n  t.equal(linestrings.features.length, 2);\n  t.equal(linestrings.id, \"hello\");\n  t.equal(linestrings.features[0].properties.foo, \"bar\");\n  t.end();\n});\n\ntest(\"turf-helpers -- polygons\", (t) => {\n  var polygons = turf.polygons(\n    [\n      [\n        [\n          [-5, 52],\n          [-4, 56],\n          [-2, 51],\n          [-7, 54],\n          [-5, 52],\n        ],\n      ],\n      [\n        [\n          [-15, 42],\n          [-14, 46],\n          [-12, 41],\n          [-17, 44],\n          [-15, 42],\n        ],\n      ],\n    ],\n    { foo: \"bar\" },\n    { id: \"hello\" }\n  );\n\n  t.equal(polygons.features.length, 2);\n  t.equal(polygons.id, \"hello\");\n  t.equal(polygons.features[0].properties.foo, \"bar\");\n  t.end();\n});\n\ntest(\"turf-helpers -- Issue #1284 - Prevent mutating Properties\", (t) => {\n  // https://github.com/Turfjs/turf/issues/1284\n  const coord = [110, 45];\n  const properties = { foo: \"bar\" };\n\n  // Create initial Feature\n  const pt = feature(coord, properties);\n  t.deepEqual(pt.properties, { foo: \"bar\" });\n  t.deepEqual(properties, { foo: \"bar\" });\n\n  // Mutate Original Properties\n  properties.foo = \"barbar\";\n\n  // Initial Point's Properties ~should~ be mutated\n  // https://github.com/Turfjs/turf/commit/39c6c9ec29986cc540960b3e2680e9e0a65168a1#r28018260\n  t.deepEqual(pt.properties, { foo: \"barbar\" });\n  t.deepEqual(properties, { foo: \"barbar\" });\n\n  // Include this test case if initial point should ~not~ have it's properties mutated\n  t.skip(pt.properties, { foo: \"bar\" });\n\n  // Create Mutated Point\n  const ptMutate = feature(coord, properties);\n  t.deepEqual(ptMutate.properties, { foo: \"barbar\" });\n  t.deepEqual(properties, { foo: \"barbar\" });\n\n  // New Features should contain empty properties {}\n  t.deepEqual(feature(coord).properties, {});\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-helpers/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-helpers/types.ts",
    "content": "import { BBox, GeometryCollection, LineString, Polygon, Point } from \"geojson\";\nimport {\n  feature,\n  featureCollection,\n  geometry,\n  geometryCollection,\n  isNumber,\n  isObject,\n  lengthToDegrees,\n  lengthToRadians,\n  lineString,\n  multiLineString,\n  multiPoint,\n  multiPolygon,\n  // Typescript types\n  point,\n  polygon,\n  radiansToLength,\n} from \"./index.js\";\n\n// Fixtures\nconst bbox: BBox = [-180, -90, 180, 90];\nconst properties = { foo: \"bar\" };\nconst pt = point([0, 1]);\nconst line = lineString([\n  [0, 1],\n  [2, 3],\n]);\nconst poly = polygon([\n  [\n    [0, 1],\n    [0, 0],\n    [2, 3],\n    [0, 1],\n  ],\n]);\nconst feat = feature({ coordinates: [1, 0], type: \"Point\" });\nconst multiPt = multiPoint([\n  [0, 1],\n  [2, 3],\n  [0, 1],\n]);\nconst multiLine = multiLineString([\n  [\n    [0, 1],\n    [2, 3],\n    [0, 1],\n  ],\n]);\nconst multiPoly = multiPolygon([\n  [\n    [\n      [0, 1],\n      [0, 0],\n      [2, 3],\n      [0, 1],\n    ],\n  ],\n]);\n\n// radiansToLength & lengthToRadians\nradiansToLength(5);\nlengthToRadians(10);\nlengthToDegrees(45);\n\n// default import & import * as\npoint([0, 1]);\nlineString([\n  [0, 1],\n  [2, 3],\n]);\npolygon([\n  [\n    [0, 1],\n    [0, 0],\n    [2, 3],\n    [0, 1],\n  ],\n]);\nfeature({ coordinates: [1, 0], type: \"Point\" });\nfeature(null);\nmultiPoint([\n  [0, 1],\n  [2, 3],\n  [0, 1],\n]);\nmultiLineString([\n  [\n    [0, 1],\n    [2, 3],\n    [0, 1],\n  ],\n]);\nmultiPolygon([\n  [\n    [\n      [0, 1],\n      [0, 0],\n      [2, 3],\n      [0, 1],\n    ],\n  ],\n]);\n\n// Mixed collection is defiend as FeatureCollection<any>\nconst mixed = featureCollection<Point | LineString | Polygon>([pt, poly]);\nmixed.features.push(pt);\nmixed.features.push(line);\nmixed.features.push(poly);\n\n// Blank collection is defined as FeatureCollection<any>\nconst blank = featureCollection<Point | LineString | Polygon>([]);\nblank.features.push(pt);\nblank.features.push(line);\nblank.features.push(poly);\n\n// Collection with only Points\nconst points = featureCollection<Point>([]);\npoints.features.push(pt);\n// points.features.push(line)\n// Argument of type 'Feature<LineString>' is not assignable to parameter of type 'Feature<Point>'.\n\n// Collection with only LineStrings\nconst lines = featureCollection([line]);\nlines.features.push(line);\n// lines.features.push(pt)\n// Argument of type 'Feature<Point>' is not assignable to parameter of type 'Feature<LineString>'.\n\n// Collection with only Polygons\nconst polygons = featureCollection<Polygon>([]);\npolygons.features.push(poly);\n\n// bbox & id\npoint(pt.geometry.coordinates, properties, { bbox, id: 1 });\nlineString(line.geometry.coordinates, properties, { bbox, id: 1 });\npolygon(poly.geometry.coordinates, properties, { bbox, id: 1 });\nmultiPoint(multiPt.geometry.coordinates, properties, { bbox, id: 1 });\nmultiLineString(multiLine.geometry.coordinates, properties, { bbox, id: 1 });\nmultiPolygon(multiPoly.geometry.coordinates, properties, { bbox, id: 1 });\ngeometryCollection([pt.geometry], properties, { bbox, id: 1 });\n\n// properties\npoint(pt.geometry.coordinates, { foo: \"bar\" });\npoint(pt.geometry.coordinates, { 1: 2 });\npoint(pt.geometry.coordinates, { 1: { foo: \"bar\" } });\n\n// isNumber -- true\nisNumber(123);\nisNumber(1.23);\nisNumber(-1.23);\nisNumber(-123);\nisNumber(\"123\");\nisNumber(+\"123\");\nisNumber(\"1e10000\");\nisNumber(1e100);\nisNumber(Infinity);\nisNumber(-Infinity);\n\n// isNumber -- false\nisNumber(+\"ciao\");\nisNumber(\"foo\");\nisNumber(\"10px\");\nisNumber(NaN);\nisNumber(undefined);\nisNumber(null);\nisNumber({ a: 1 });\nisNumber({});\nisNumber([1, 2, 3]);\nisNumber([]);\nisNumber(isNumber);\n\n// isObject -- true\nisObject({ a: 1 });\nisObject({});\nisObject(point([0, 1]));\n\n// isObject -- false\nisObject(123);\nisObject(Infinity);\nisObject(-123);\nisObject(\"foo\");\nisObject(NaN);\nisObject(undefined);\nisObject(null);\nisObject([1, 2, 3]);\nisObject([]);\nisObject(isNumber);\n\n// Geometry\nconst ptGeom = geometry(\"Point\", pt.geometry.coordinates);\nconst lineGeom = geometry(\"LineString\", line.geometry.coordinates);\nconst polyGeom = geometry(\"Polygon\", poly.geometry.coordinates);\nconst multiPtGeom = geometry(\"MultiPoint\", multiPt.geometry.coordinates);\nconst multiLineGeom = geometry(\n  \"MultiLineString\",\n  multiLine.geometry.coordinates\n);\nconst multiPolyGeom = geometry(\"MultiPolygon\", multiPoly.geometry.coordinates);\n\n// Custom Properties\nconst customPt = point([10, 50], { foo: \"bar\" });\n\n// Handle GeometryCollection & Feature.GeometryCollection\nconst geomCollection = geometryCollection([pt.geometry, line.geometry]);\nconst p1 = geomCollection.geometry.geometries[0];\nconst l1 = geomCollection.geometry.geometries[0];\n\nconst mixedGeomCollection = featureCollection<Point | GeometryCollection>([\n  pt,\n  geomCollection,\n]);\nconst fc = featureCollection<Point | LineString>([pt, line]);\nconst featureGeomCollection = feature(geomCollection.geometry);\n"
  },
  {
    "path": "packages/turf-hex-grid/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-hex-grid/README.md",
    "content": "# @turf/hex-grid\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## hexGrid\n\nTakes a bounding box and the diameter of the cell and returns a [FeatureCollection][1] of flat-topped\nhexagons or triangles ([Polygon][2] features) aligned in an \"odd-q\" vertical grid as\ndescribed in [Hexagonal Grids][3].\n\n### Parameters\n\n*   `bbox` **[BBox][4]** extent in \\[minX, minY, maxX, maxY] order\n*   `cellSide` **[number][5]** length of the side of the the hexagons or triangles, in units. It will also coincide with the\n    radius of the circumcircle of the hexagons.\n*   `options` **[Object][6]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** used in calculating cell size. Supports all valid Turf [Units][7]. (optional, default `'kilometers'`)\n    *   `options.properties` **[Object][6]** passed to each hexagon or triangle of the grid (optional, default `{}`)\n    *   `options.mask` **[Feature][8]<([Polygon][2] | [MultiPolygon][9])>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it\n    *   `options.triangles` **[boolean][10]** whether to return as triangles instead of hexagons (optional, default `false`)\n\n### Examples\n\n```javascript\nvar bbox = [-96,31,-84,40];\nvar cellSide = 50;\nvar options = {units: 'miles'};\n\nvar hexgrid = turf.hexGrid(bbox, cellSide, options);\n\n//addToMap\nvar addToMap = [hexgrid];\n```\n\nReturns **[FeatureCollection][1]<[Polygon][2]>** a hexagonal grid\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[3]: http://www.redblobgames.com/grids/hexagons/\n\n[4]: https://tools.ietf.org/html/rfc7946#section-5\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[7]: https://turfjs.org/docs/api/types/Units\n\n[8]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[9]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[10]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/hex-grid\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-hex-grid/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { hexGrid as grid } from \"./index.js\";\n\n// prettier-ignore\nvar bbox = [\n  -96.6357421875,\n  31.12819929911196,\n  -84.9462890625,\n  40.58058466412764,\n];\n\n/**\n * Benchmark Results\n *\n * turf-hex-grid -- 10 cells x 67,086 ops/sec ±12.27% (80 runs sampled)\n * turf-hex-grid -- 1570 cells x 571 ops/sec ±1.52% (83 runs sampled)\n * turf-hex-grid -- 163778 cells x 1.13 ops/sec ±11.65% (7 runs sampled)\n */\n\nvar lowres = grid(bbox, 100, { units: \"miles\" }).features.length;\nvar midres = grid(bbox, 10, { units: \"miles\" }).features.length;\nvar highres = grid(bbox, 1, { units: \"miles\" }).features.length;\n\nvar suite = new Benchmark.Suite(\"turf-hex-grid\");\nsuite\n  .add(\"turf-hex-grid -- \" + lowres + \" cells\", function () {\n    grid(bbox, 100, { units: \"miles\" });\n  })\n  .add(\"turf-hex-grid -- \" + midres + \" cells\", function () {\n    grid(bbox, 10, { units: \"miles\" });\n  })\n  .add(\"turf-hex-grid -- \" + highres + \" cells\", function () {\n    grid(bbox, 1, { units: \"miles\" });\n  })\n  .on(\"cycle\", function (event) {\n    console.log(String(event.target));\n  })\n  .run();\n"
  },
  {
    "path": "packages/turf-hex-grid/index.ts",
    "content": "import { distance } from \"@turf/distance\";\nimport { intersect } from \"@turf/intersect\";\nimport {\n  Feature,\n  FeatureCollection,\n  GeoJsonProperties,\n  Polygon,\n  BBox,\n  MultiPolygon,\n} from \"geojson\";\nimport { polygon, featureCollection, Units } from \"@turf/helpers\";\n\n/**\n * Takes a bounding box and the diameter of the cell and returns a {@link FeatureCollection} of flat-topped\n * hexagons or triangles ({@link Polygon} features) aligned in an \"odd-q\" vertical grid as\n * described in [Hexagonal Grids](http://www.redblobgames.com/grids/hexagons/).\n *\n * @function\n * @param {BBox} bbox extent in [minX, minY, maxX, maxY] order\n * @param {number} cellSide length of the side of the the hexagons or triangles, in units. It will also coincide with the\n * radius of the circumcircle of the hexagons.\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units='kilometers'] used in calculating cell size. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.\n * @param {Object} [options.properties={}] passed to each hexagon or triangle of the grid\n * @param {Feature<Polygon | MultiPolygon>} [options.mask] if passed a Polygon or MultiPolygon, the grid Points will be created only inside it\n * @param {boolean} [options.triangles=false] whether to return as triangles instead of hexagons\n * @returns {FeatureCollection<Polygon>} a hexagonal grid\n * @example\n * var bbox = [-96,31,-84,40];\n * var cellSide = 50;\n * var options = {units: 'miles'};\n *\n * var hexgrid = turf.hexGrid(bbox, cellSide, options);\n *\n * //addToMap\n * var addToMap = [hexgrid];\n */\nfunction hexGrid<P extends GeoJsonProperties = GeoJsonProperties>(\n  bbox: BBox,\n  cellSide: number,\n  options: {\n    units?: Units;\n    triangles?: boolean;\n    properties?: P;\n    mask?: Feature<Polygon | MultiPolygon>;\n  } = {}\n): FeatureCollection<Polygon, P> {\n  // Issue => https://github.com/Turfjs/turf/issues/1284\n  const clonedProperties = JSON.stringify(options.properties || {});\n\n  const [west, south, east, north] = bbox;\n  const centerY = (south + north) / 2;\n  const centerX = (west + east) / 2;\n\n  // https://github.com/Turfjs/turf/issues/758\n  const xFraction =\n    (cellSide * 2) / distance([west, centerY], [east, centerY], options);\n  const cellWidth = xFraction * (east - west);\n  const yFraction =\n    (cellSide * 2) / distance([centerX, south], [centerX, north], options);\n  const cellHeight = yFraction * (north - south);\n  const radius = cellWidth / 2;\n\n  const hex_width = radius * 2;\n  const hex_height = (Math.sqrt(3) / 2) * cellHeight;\n\n  const box_width = east - west;\n  const box_height = north - south;\n\n  const x_interval = (3 / 4) * hex_width;\n  const y_interval = hex_height;\n\n  // adjust box_width so all hexagons will be inside the bbox\n  const x_span = (box_width - hex_width) / (hex_width - radius / 2);\n  const x_count = Math.floor(x_span);\n\n  const x_adjust =\n    (x_count * x_interval - radius / 2 - box_width) / 2 -\n    radius / 2 +\n    x_interval / 2;\n\n  // adjust box_height so all hexagons will be inside the bbox\n  const y_count = Math.floor((box_height - hex_height) / hex_height);\n\n  let y_adjust = (box_height - y_count * hex_height) / 2;\n\n  const hasOffsetY = y_count * hex_height - box_height > hex_height / 2;\n  if (hasOffsetY) {\n    y_adjust -= hex_height / 4;\n  }\n\n  // Precompute cosines and sines of angles used in hexagon creation for performance gain\n  const cosines = [];\n  const sines = [];\n  for (let i = 0; i < 6; i++) {\n    const angle = ((2 * Math.PI) / 6) * i;\n    cosines.push(Math.cos(angle));\n    sines.push(Math.sin(angle));\n  }\n\n  const results = [];\n  for (let x = 0; x <= x_count; x++) {\n    for (let y = 0; y <= y_count; y++) {\n      const isOdd = x % 2 === 1;\n      if (y === 0 && isOdd) continue;\n      if (y === 0 && hasOffsetY) continue;\n\n      const center_x = x * x_interval + west - x_adjust;\n      let center_y = y * y_interval + south + y_adjust;\n\n      if (isOdd) {\n        center_y -= hex_height / 2;\n      }\n\n      if (options.triangles === true) {\n        hexTriangles(\n          [center_x, center_y],\n          cellWidth / 2,\n          cellHeight / 2,\n          JSON.parse(clonedProperties),\n          cosines,\n          sines\n        ).forEach(function (triangle) {\n          if (options.mask) {\n            if (intersect(featureCollection([options.mask, triangle])))\n              results.push(triangle);\n          } else {\n            results.push(triangle);\n          }\n        });\n      } else {\n        const hex = hexagon(\n          [center_x, center_y],\n          cellWidth / 2,\n          cellHeight / 2,\n          JSON.parse(clonedProperties),\n          cosines,\n          sines\n        );\n        if (options.mask) {\n          if (intersect(featureCollection([options.mask, hex])))\n            results.push(hex);\n        } else {\n          results.push(hex);\n        }\n      }\n    }\n  }\n\n  return featureCollection(results) as FeatureCollection<Polygon, P>;\n}\n\n/**\n * Creates hexagon\n *\n * @private\n * @param {Array<number>} center of the hexagon\n * @param {number} rx half hexagon width\n * @param {number} ry half hexagon height\n * @param {Object} properties passed to each hexagon\n * @param {Array<number>} cosines precomputed\n * @param {Array<number>} sines precomputed\n * @returns {Feature<Polygon>} hexagon\n */\nfunction hexagon(\n  center: number[],\n  rx: number,\n  ry: number,\n  properties: GeoJsonProperties,\n  cosines: number[],\n  sines: number[]\n) {\n  const vertices = [];\n  for (let i = 0; i < 6; i++) {\n    const x = center[0] + rx * cosines[i];\n    const y = center[1] + ry * sines[i];\n    vertices.push([x, y]);\n  }\n  //first and last vertex must be the same\n  vertices.push(vertices[0].slice());\n  return polygon([vertices], properties);\n}\n\n/**\n * Creates triangles composing an hexagon\n *\n * @private\n * @param {Array<number>} center of the hexagon\n * @param {number} rx half triangle width\n * @param {number} ry half triangle height\n * @param {Object} properties passed to each triangle\n * @param {Array<number>} cosines precomputed\n * @param {Array<number>} sines precomputed\n * @returns {Array<Feature<Polygon>>} triangles\n */\nfunction hexTriangles(\n  center: number[],\n  rx: number,\n  ry: number,\n  properties: GeoJsonProperties,\n  cosines: number[],\n  sines: number[]\n) {\n  const triangles = [];\n  for (let i = 0; i < 6; i++) {\n    const vertices = [];\n    vertices.push(center);\n    vertices.push([center[0] + rx * cosines[i], center[1] + ry * sines[i]]);\n    vertices.push([\n      center[0] + rx * cosines[(i + 1) % 6],\n      center[1] + ry * sines[(i + 1) % 6],\n    ]);\n    vertices.push(center);\n    triangles.push(polygon([vertices], properties));\n  }\n  return triangles;\n}\n\nexport { hexGrid };\nexport default hexGrid;\n"
  },
  {
    "path": "packages/turf-hex-grid/package.json",
    "content": "{\n  \"name\": \"@turf/hex-grid\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Creates a honeycomb-like grid of hexagons within a bounding box.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"James Seppi <@jseppi>\",\n    \"Morgan Herlocker <@morganherlocker>\",\n    \"Tom MacWright <@tmcw>\",\n    \"Jan Vaillant <@jvail>\",\n    \"Lyzi Diamond <@lyzidiamond>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"grid\",\n    \"hexgrid\",\n    \"hexbin\",\n    \"points\",\n    \"geojson\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/bbox-polygon\": \"workspace:*\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/intersect\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-hex-grid/test/in/bbox1-triangles.json",
    "content": "{\n  \"bbox\": [-96.6357421875, 31.12819929911196, -84.9462890625, 40.58058466412764],\n  \"cellSide\": 25,\n  \"units\": \"miles\",\n  \"triangles\": true\n}\n"
  },
  {
    "path": "packages/turf-hex-grid/test/in/bbox1.json",
    "content": "{\n  \"bbox\": [-96.6357421875, 31.12819929911196, -84.9462890625, 40.58058466412764],\n  \"cellSide\": 25,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-hex-grid/test/in/big-bbox.json",
    "content": "{\n  \"bbox\": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629],\n  \"cellSide\": 500,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-hex-grid/test/in/fiji-10-miles.json",
    "content": "{\n  \"bbox\": [\n    -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812\n  ],\n  \"cellSide\": 10,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-hex-grid/test/in/london-20-miles.json",
    "content": "{\n  \"bbox\": [-0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154],\n  \"cellSide\": 20,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-hex-grid/test/in/piedemont-mask.json",
    "content": "{\n  \"bbox\": [6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049],\n  \"cellSide\": 12.5,\n  \"units\": \"miles\",\n  \"mask\": {\n    \"type\": \"Feature\",\n    \"properties\": {\n      \"stroke\": \"#00F\",\n      \"stroke-width\": 6,\n      \"fill-opacity\": 0\n    },\n    \"geometry\": {\n      \"type\": \"Polygon\",\n      \"coordinates\": [\n        [\n          [8.382568359375012, 46.456781428126554],\n          [8.313903808593762, 46.41892578708079],\n          [8.31939697265626, 46.379149058330775],\n          [8.099670410156264, 46.26913887119718],\n          [8.171081542968762, 46.1893382140708],\n          [7.8799438476562615, 45.94160076422079],\n          [7.907409667968761, 45.627484212338246],\n          [7.7247619628906365, 45.55444852652113],\n          [7.5833129882812615, 45.5900172453615],\n          [7.484436035156261, 45.58136746810096],\n          [7.347106933593762, 45.527516684421215],\n          [7.116394042968763, 45.46976215263039],\n          [7.176818847656262, 45.408092022812276],\n          [7.094421386718762, 45.222677199620094],\n          [6.980438232421887, 45.20719857986464],\n          [6.9515991210937615, 45.17332441090049],\n          [6.900787353515638, 45.166547157856016],\n          [6.900787353515638, 45.14621056019852],\n          [6.854095458984387, 45.1278045274732],\n          [6.7813110351562615, 45.164610651725425],\n          [6.749725341796888, 45.1394300814679],\n          [6.687927246093762, 45.1394300814679],\n          [6.6302490234375, 45.10987715527803],\n          [6.65496826171875, 45.069156265623505],\n          [6.6741943359375, 45.02015580433459],\n          [6.755218505859382, 45.0182143279711],\n          [6.749725341796875, 44.90744135615697],\n          [6.815643310546875, 44.872415981701394],\n          [6.900787353515625, 44.84515927771909],\n          [6.946105957031258, 44.86560301534198],\n          [7.017517089843757, 44.8344477567128],\n          [7.002410888671875, 44.78378451819761],\n          [7.032623291015625, 44.73210119404699],\n          [7.0751953125, 44.68330096401701],\n          [6.990051269531262, 44.69404054463802],\n          [6.8637084960937615, 44.51021754644927],\n          [6.9021606445312615, 44.36509667482153],\n          [7.055969238281263, 44.219615400229195],\n          [7.3965454101562615, 44.125056482685174],\n          [7.6712036132812615, 44.180234276372886],\n          [7.7151489257812615, 44.09350315285844],\n          [7.770080566406262, 44.136884638560495],\n          [8.02825927734376, 44.140826830775524],\n          [8.08868408203126, 44.321883129398586],\n          [8.247985839843762, 44.52196830685208],\n          [8.357849121093762, 44.48670891691767],\n          [8.599548339843762, 44.537632301346086],\n          [8.665466308593762, 44.58851118961441],\n          [8.802795410156264, 44.51805165000559],\n          [8.912658691406264, 44.592423107178654],\n          [8.912658691406264, 44.67841867818858],\n          [9.017028808593762, 44.6725593921204],\n          [9.139251708984387, 44.57970841241188],\n          [9.213409423828137, 44.6061127451739],\n          [9.221649169921887, 44.75453548416007],\n          [9.066467285156264, 44.85002749260048],\n          [8.896179199218762, 45.05606124274412],\n          [8.775329589843762, 45.01530198999206],\n          [8.659973144531262, 45.02695045318543],\n          [8.522644042968764, 45.28841433167348],\n          [8.550109863281262, 45.3617951914213],\n          [8.63800048828126, 45.34828480683997],\n          [8.676452636718762, 45.30773430004872],\n          [8.76983642578126, 45.35407536661812],\n          [8.734130859375014, 45.38494834654319],\n          [8.846740722656262, 45.40423540168332],\n          [8.725891113281262, 45.51789504294005],\n          [8.654479980468762, 45.70809729528788],\n          [8.56109619140626, 45.79242458189573],\n          [8.599548339843762, 45.832626782661585],\n          [8.580322265625012, 45.90529985724794],\n          [8.725891113281262, 46.02557483126793],\n          [8.717651367187512, 46.0998999106273],\n          [8.610534667968762, 46.14178273759229],\n          [8.539123535156262, 46.221652456379104],\n          [8.451232910156262, 46.25774588045678],\n          [8.445739746093764, 46.30899569419854],\n          [8.47045898437501, 46.34313560260196],\n          [8.462219238281264, 46.462457505996056],\n          [8.382568359375012, 46.456781428126554]\n        ]\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "packages/turf-hex-grid/test/in/properties.json",
    "content": "{\n  \"bbox\": [2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261],\n  \"properties\": {\n    \"marker-color\": \"#0ff\"\n  },\n  \"cellSide\": 1,\n  \"mask\": {\n    \"type\": \"Feature\",\n    \"properties\": {},\n    \"geometry\": {\n      \"type\": \"MultiPolygon\",\n      \"coordinates\": [\n        [\n          [\n            [2.223186492919922, 41.416856461155575],\n            [2.1716880798339844, 41.44182560856202],\n            [2.1636199951171875, 41.41608406639095],\n            [2.1334075927734375, 41.407200866420744],\n            [2.1845626831054683, 41.37977115211044],\n            [2.223186492919922, 41.416856461155575]\n          ]\n        ]\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "packages/turf-hex-grid/test/in/resolute.json",
    "content": "{\n  \"bbox\": [-95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785],\n  \"cellSide\": 12.5,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-hex-grid/test/out/bbox1-triangles.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 31.467449],\n            [-95.704593, 31.467449],\n            [-95.927937, 31.780802],\n            [-96.151282, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 31.467449],\n            [-95.927937, 31.780802],\n            [-96.374626, 31.780802],\n            [-96.151282, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 31.467449],\n            [-96.374626, 31.780802],\n            [-96.59797, 31.467449],\n            [-96.151282, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 31.467449],\n            [-96.59797, 31.467449],\n            [-96.374626, 31.154096],\n            [-96.151282, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 31.467449],\n            [-96.374626, 31.154096],\n            [-95.927937, 31.154096],\n            [-96.151282, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 31.467449],\n            [-95.927937, 31.154096],\n            [-95.704593, 31.467449],\n            [-96.151282, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 32.094155],\n            [-95.704593, 32.094155],\n            [-95.927937, 32.407508],\n            [-96.151282, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 32.094155],\n            [-95.927937, 32.407508],\n            [-96.374626, 32.407508],\n            [-96.151282, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 32.094155],\n            [-96.374626, 32.407508],\n            [-96.59797, 32.094155],\n            [-96.151282, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 32.094155],\n            [-96.59797, 32.094155],\n            [-96.374626, 31.780802],\n            [-96.151282, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 32.094155],\n            [-96.374626, 31.780802],\n            [-95.927937, 31.780802],\n            [-96.151282, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 32.094155],\n            [-95.927937, 31.780802],\n            [-95.704593, 32.094155],\n            [-96.151282, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 32.720861],\n            [-95.704593, 32.720861],\n            [-95.927937, 33.034214],\n            [-96.151282, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 32.720861],\n            [-95.927937, 33.034214],\n            [-96.374626, 33.034214],\n            [-96.151282, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 32.720861],\n            [-96.374626, 33.034214],\n            [-96.59797, 32.720861],\n            [-96.151282, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 32.720861],\n            [-96.59797, 32.720861],\n            [-96.374626, 32.407508],\n            [-96.151282, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 32.720861],\n            [-96.374626, 32.407508],\n            [-95.927937, 32.407508],\n            [-96.151282, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 32.720861],\n            [-95.927937, 32.407508],\n            [-95.704593, 32.720861],\n            [-96.151282, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 33.347567],\n            [-95.704593, 33.347567],\n            [-95.927937, 33.66092],\n            [-96.151282, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 33.347567],\n            [-95.927937, 33.66092],\n            [-96.374626, 33.66092],\n            [-96.151282, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 33.347567],\n            [-96.374626, 33.66092],\n            [-96.59797, 33.347567],\n            [-96.151282, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 33.347567],\n            [-96.59797, 33.347567],\n            [-96.374626, 33.034214],\n            [-96.151282, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 33.347567],\n            [-96.374626, 33.034214],\n            [-95.927937, 33.034214],\n            [-96.151282, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 33.347567],\n            [-95.927937, 33.034214],\n            [-95.704593, 33.347567],\n            [-96.151282, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 33.974274],\n            [-95.704593, 33.974274],\n            [-95.927937, 34.287627],\n            [-96.151282, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 33.974274],\n            [-95.927937, 34.287627],\n            [-96.374626, 34.287627],\n            [-96.151282, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 33.974274],\n            [-96.374626, 34.287627],\n            [-96.59797, 33.974274],\n            [-96.151282, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 33.974274],\n            [-96.59797, 33.974274],\n            [-96.374626, 33.66092],\n            [-96.151282, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 33.974274],\n            [-96.374626, 33.66092],\n            [-95.927937, 33.66092],\n            [-96.151282, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 33.974274],\n            [-95.927937, 33.66092],\n            [-95.704593, 33.974274],\n            [-96.151282, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 34.60098],\n            [-95.704593, 34.60098],\n            [-95.927937, 34.914333],\n            [-96.151282, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 34.60098],\n            [-95.927937, 34.914333],\n            [-96.374626, 34.914333],\n            [-96.151282, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 34.60098],\n            [-96.374626, 34.914333],\n            [-96.59797, 34.60098],\n            [-96.151282, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 34.60098],\n            [-96.59797, 34.60098],\n            [-96.374626, 34.287627],\n            [-96.151282, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 34.60098],\n            [-96.374626, 34.287627],\n            [-95.927937, 34.287627],\n            [-96.151282, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 34.60098],\n            [-95.927937, 34.287627],\n            [-95.704593, 34.60098],\n            [-96.151282, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 35.227686],\n            [-95.704593, 35.227686],\n            [-95.927937, 35.541039],\n            [-96.151282, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 35.227686],\n            [-95.927937, 35.541039],\n            [-96.374626, 35.541039],\n            [-96.151282, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 35.227686],\n            [-96.374626, 35.541039],\n            [-96.59797, 35.227686],\n            [-96.151282, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 35.227686],\n            [-96.59797, 35.227686],\n            [-96.374626, 34.914333],\n            [-96.151282, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 35.227686],\n            [-96.374626, 34.914333],\n            [-95.927937, 34.914333],\n            [-96.151282, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 35.227686],\n            [-95.927937, 34.914333],\n            [-95.704593, 35.227686],\n            [-96.151282, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 35.854392],\n            [-95.704593, 35.854392],\n            [-95.927937, 36.167745],\n            [-96.151282, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 35.854392],\n            [-95.927937, 36.167745],\n            [-96.374626, 36.167745],\n            [-96.151282, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 35.854392],\n            [-96.374626, 36.167745],\n            [-96.59797, 35.854392],\n            [-96.151282, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 35.854392],\n            [-96.59797, 35.854392],\n            [-96.374626, 35.541039],\n            [-96.151282, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 35.854392],\n            [-96.374626, 35.541039],\n            [-95.927937, 35.541039],\n            [-96.151282, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 35.854392],\n            [-95.927937, 35.541039],\n            [-95.704593, 35.854392],\n            [-96.151282, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 36.481098],\n            [-95.704593, 36.481098],\n            [-95.927937, 36.794451],\n            [-96.151282, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 36.481098],\n            [-95.927937, 36.794451],\n            [-96.374626, 36.794451],\n            [-96.151282, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 36.481098],\n            [-96.374626, 36.794451],\n            [-96.59797, 36.481098],\n            [-96.151282, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 36.481098],\n            [-96.59797, 36.481098],\n            [-96.374626, 36.167745],\n            [-96.151282, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 36.481098],\n            [-96.374626, 36.167745],\n            [-95.927937, 36.167745],\n            [-96.151282, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 36.481098],\n            [-95.927937, 36.167745],\n            [-95.704593, 36.481098],\n            [-96.151282, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 37.107804],\n            [-95.704593, 37.107804],\n            [-95.927937, 37.421157],\n            [-96.151282, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 37.107804],\n            [-95.927937, 37.421157],\n            [-96.374626, 37.421157],\n            [-96.151282, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 37.107804],\n            [-96.374626, 37.421157],\n            [-96.59797, 37.107804],\n            [-96.151282, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 37.107804],\n            [-96.59797, 37.107804],\n            [-96.374626, 36.794451],\n            [-96.151282, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 37.107804],\n            [-96.374626, 36.794451],\n            [-95.927937, 36.794451],\n            [-96.151282, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 37.107804],\n            [-95.927937, 36.794451],\n            [-95.704593, 37.107804],\n            [-96.151282, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 37.73451],\n            [-95.704593, 37.73451],\n            [-95.927937, 38.047863],\n            [-96.151282, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 37.73451],\n            [-95.927937, 38.047863],\n            [-96.374626, 38.047863],\n            [-96.151282, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 37.73451],\n            [-96.374626, 38.047863],\n            [-96.59797, 37.73451],\n            [-96.151282, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 37.73451],\n            [-96.59797, 37.73451],\n            [-96.374626, 37.421157],\n            [-96.151282, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 37.73451],\n            [-96.374626, 37.421157],\n            [-95.927937, 37.421157],\n            [-96.151282, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 37.73451],\n            [-95.927937, 37.421157],\n            [-95.704593, 37.73451],\n            [-96.151282, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 38.361217],\n            [-95.704593, 38.361217],\n            [-95.927937, 38.67457],\n            [-96.151282, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 38.361217],\n            [-95.927937, 38.67457],\n            [-96.374626, 38.67457],\n            [-96.151282, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 38.361217],\n            [-96.374626, 38.67457],\n            [-96.59797, 38.361217],\n            [-96.151282, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 38.361217],\n            [-96.59797, 38.361217],\n            [-96.374626, 38.047863],\n            [-96.151282, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 38.361217],\n            [-96.374626, 38.047863],\n            [-95.927937, 38.047863],\n            [-96.151282, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 38.361217],\n            [-95.927937, 38.047863],\n            [-95.704593, 38.361217],\n            [-96.151282, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 38.987923],\n            [-95.704593, 38.987923],\n            [-95.927937, 39.301276],\n            [-96.151282, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 38.987923],\n            [-95.927937, 39.301276],\n            [-96.374626, 39.301276],\n            [-96.151282, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 38.987923],\n            [-96.374626, 39.301276],\n            [-96.59797, 38.987923],\n            [-96.151282, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 38.987923],\n            [-96.59797, 38.987923],\n            [-96.374626, 38.67457],\n            [-96.151282, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 38.987923],\n            [-96.374626, 38.67457],\n            [-95.927937, 38.67457],\n            [-96.151282, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 38.987923],\n            [-95.927937, 38.67457],\n            [-95.704593, 38.987923],\n            [-96.151282, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 39.614629],\n            [-95.704593, 39.614629],\n            [-95.927937, 39.927982],\n            [-96.151282, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 39.614629],\n            [-95.927937, 39.927982],\n            [-96.374626, 39.927982],\n            [-96.151282, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 39.614629],\n            [-96.374626, 39.927982],\n            [-96.59797, 39.614629],\n            [-96.151282, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 39.614629],\n            [-96.59797, 39.614629],\n            [-96.374626, 39.301276],\n            [-96.151282, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 39.614629],\n            [-96.374626, 39.301276],\n            [-95.927937, 39.301276],\n            [-96.151282, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 39.614629],\n            [-95.927937, 39.301276],\n            [-95.704593, 39.614629],\n            [-96.151282, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 40.241335],\n            [-95.704593, 40.241335],\n            [-95.927937, 40.554688],\n            [-96.151282, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 40.241335],\n            [-95.927937, 40.554688],\n            [-96.374626, 40.554688],\n            [-96.151282, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 40.241335],\n            [-96.374626, 40.554688],\n            [-96.59797, 40.241335],\n            [-96.151282, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 40.241335],\n            [-96.59797, 40.241335],\n            [-96.374626, 39.927982],\n            [-96.151282, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 40.241335],\n            [-96.374626, 39.927982],\n            [-95.927937, 39.927982],\n            [-96.151282, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.151282, 40.241335],\n            [-95.927937, 39.927982],\n            [-95.704593, 40.241335],\n            [-96.151282, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 31.780802],\n            [-95.034559, 31.780802],\n            [-95.257904, 32.094155],\n            [-95.481248, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 31.780802],\n            [-95.257904, 32.094155],\n            [-95.704593, 32.094155],\n            [-95.481248, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 31.780802],\n            [-95.704593, 32.094155],\n            [-95.927937, 31.780802],\n            [-95.481248, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 31.780802],\n            [-95.927937, 31.780802],\n            [-95.704593, 31.467449],\n            [-95.481248, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 31.780802],\n            [-95.704593, 31.467449],\n            [-95.257904, 31.467449],\n            [-95.481248, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 31.780802],\n            [-95.257904, 31.467449],\n            [-95.034559, 31.780802],\n            [-95.481248, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 32.407508],\n            [-95.034559, 32.407508],\n            [-95.257904, 32.720861],\n            [-95.481248, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 32.407508],\n            [-95.257904, 32.720861],\n            [-95.704593, 32.720861],\n            [-95.481248, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 32.407508],\n            [-95.704593, 32.720861],\n            [-95.927937, 32.407508],\n            [-95.481248, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 32.407508],\n            [-95.927937, 32.407508],\n            [-95.704593, 32.094155],\n            [-95.481248, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 32.407508],\n            [-95.704593, 32.094155],\n            [-95.257904, 32.094155],\n            [-95.481248, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 32.407508],\n            [-95.257904, 32.094155],\n            [-95.034559, 32.407508],\n            [-95.481248, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 33.034214],\n            [-95.034559, 33.034214],\n            [-95.257904, 33.347567],\n            [-95.481248, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 33.034214],\n            [-95.257904, 33.347567],\n            [-95.704593, 33.347567],\n            [-95.481248, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 33.034214],\n            [-95.704593, 33.347567],\n            [-95.927937, 33.034214],\n            [-95.481248, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 33.034214],\n            [-95.927937, 33.034214],\n            [-95.704593, 32.720861],\n            [-95.481248, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 33.034214],\n            [-95.704593, 32.720861],\n            [-95.257904, 32.720861],\n            [-95.481248, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 33.034214],\n            [-95.257904, 32.720861],\n            [-95.034559, 33.034214],\n            [-95.481248, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 33.66092],\n            [-95.034559, 33.66092],\n            [-95.257904, 33.974274],\n            [-95.481248, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 33.66092],\n            [-95.257904, 33.974274],\n            [-95.704593, 33.974274],\n            [-95.481248, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 33.66092],\n            [-95.704593, 33.974274],\n            [-95.927937, 33.66092],\n            [-95.481248, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 33.66092],\n            [-95.927937, 33.66092],\n            [-95.704593, 33.347567],\n            [-95.481248, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 33.66092],\n            [-95.704593, 33.347567],\n            [-95.257904, 33.347567],\n            [-95.481248, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 33.66092],\n            [-95.257904, 33.347567],\n            [-95.034559, 33.66092],\n            [-95.481248, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 34.287627],\n            [-95.034559, 34.287627],\n            [-95.257904, 34.60098],\n            [-95.481248, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 34.287627],\n            [-95.257904, 34.60098],\n            [-95.704593, 34.60098],\n            [-95.481248, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 34.287627],\n            [-95.704593, 34.60098],\n            [-95.927937, 34.287627],\n            [-95.481248, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 34.287627],\n            [-95.927937, 34.287627],\n            [-95.704593, 33.974274],\n            [-95.481248, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 34.287627],\n            [-95.704593, 33.974274],\n            [-95.257904, 33.974274],\n            [-95.481248, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 34.287627],\n            [-95.257904, 33.974274],\n            [-95.034559, 34.287627],\n            [-95.481248, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 34.914333],\n            [-95.034559, 34.914333],\n            [-95.257904, 35.227686],\n            [-95.481248, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 34.914333],\n            [-95.257904, 35.227686],\n            [-95.704593, 35.227686],\n            [-95.481248, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 34.914333],\n            [-95.704593, 35.227686],\n            [-95.927937, 34.914333],\n            [-95.481248, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 34.914333],\n            [-95.927937, 34.914333],\n            [-95.704593, 34.60098],\n            [-95.481248, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 34.914333],\n            [-95.704593, 34.60098],\n            [-95.257904, 34.60098],\n            [-95.481248, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 34.914333],\n            [-95.257904, 34.60098],\n            [-95.034559, 34.914333],\n            [-95.481248, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 35.541039],\n            [-95.034559, 35.541039],\n            [-95.257904, 35.854392],\n            [-95.481248, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 35.541039],\n            [-95.257904, 35.854392],\n            [-95.704593, 35.854392],\n            [-95.481248, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 35.541039],\n            [-95.704593, 35.854392],\n            [-95.927937, 35.541039],\n            [-95.481248, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 35.541039],\n            [-95.927937, 35.541039],\n            [-95.704593, 35.227686],\n            [-95.481248, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 35.541039],\n            [-95.704593, 35.227686],\n            [-95.257904, 35.227686],\n            [-95.481248, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 35.541039],\n            [-95.257904, 35.227686],\n            [-95.034559, 35.541039],\n            [-95.481248, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 36.167745],\n            [-95.034559, 36.167745],\n            [-95.257904, 36.481098],\n            [-95.481248, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 36.167745],\n            [-95.257904, 36.481098],\n            [-95.704593, 36.481098],\n            [-95.481248, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 36.167745],\n            [-95.704593, 36.481098],\n            [-95.927937, 36.167745],\n            [-95.481248, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 36.167745],\n            [-95.927937, 36.167745],\n            [-95.704593, 35.854392],\n            [-95.481248, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 36.167745],\n            [-95.704593, 35.854392],\n            [-95.257904, 35.854392],\n            [-95.481248, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 36.167745],\n            [-95.257904, 35.854392],\n            [-95.034559, 36.167745],\n            [-95.481248, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 36.794451],\n            [-95.034559, 36.794451],\n            [-95.257904, 37.107804],\n            [-95.481248, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 36.794451],\n            [-95.257904, 37.107804],\n            [-95.704593, 37.107804],\n            [-95.481248, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 36.794451],\n            [-95.704593, 37.107804],\n            [-95.927937, 36.794451],\n            [-95.481248, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 36.794451],\n            [-95.927937, 36.794451],\n            [-95.704593, 36.481098],\n            [-95.481248, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 36.794451],\n            [-95.704593, 36.481098],\n            [-95.257904, 36.481098],\n            [-95.481248, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 36.794451],\n            [-95.257904, 36.481098],\n            [-95.034559, 36.794451],\n            [-95.481248, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 37.421157],\n            [-95.034559, 37.421157],\n            [-95.257904, 37.73451],\n            [-95.481248, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 37.421157],\n            [-95.257904, 37.73451],\n            [-95.704593, 37.73451],\n            [-95.481248, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 37.421157],\n            [-95.704593, 37.73451],\n            [-95.927937, 37.421157],\n            [-95.481248, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 37.421157],\n            [-95.927937, 37.421157],\n            [-95.704593, 37.107804],\n            [-95.481248, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 37.421157],\n            [-95.704593, 37.107804],\n            [-95.257904, 37.107804],\n            [-95.481248, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 37.421157],\n            [-95.257904, 37.107804],\n            [-95.034559, 37.421157],\n            [-95.481248, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 38.047863],\n            [-95.034559, 38.047863],\n            [-95.257904, 38.361217],\n            [-95.481248, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 38.047863],\n            [-95.257904, 38.361217],\n            [-95.704593, 38.361217],\n            [-95.481248, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 38.047863],\n            [-95.704593, 38.361217],\n            [-95.927937, 38.047863],\n            [-95.481248, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 38.047863],\n            [-95.927937, 38.047863],\n            [-95.704593, 37.73451],\n            [-95.481248, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 38.047863],\n            [-95.704593, 37.73451],\n            [-95.257904, 37.73451],\n            [-95.481248, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 38.047863],\n            [-95.257904, 37.73451],\n            [-95.034559, 38.047863],\n            [-95.481248, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 38.67457],\n            [-95.034559, 38.67457],\n            [-95.257904, 38.987923],\n            [-95.481248, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 38.67457],\n            [-95.257904, 38.987923],\n            [-95.704593, 38.987923],\n            [-95.481248, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 38.67457],\n            [-95.704593, 38.987923],\n            [-95.927937, 38.67457],\n            [-95.481248, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 38.67457],\n            [-95.927937, 38.67457],\n            [-95.704593, 38.361217],\n            [-95.481248, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 38.67457],\n            [-95.704593, 38.361217],\n            [-95.257904, 38.361217],\n            [-95.481248, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 38.67457],\n            [-95.257904, 38.361217],\n            [-95.034559, 38.67457],\n            [-95.481248, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 39.301276],\n            [-95.034559, 39.301276],\n            [-95.257904, 39.614629],\n            [-95.481248, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 39.301276],\n            [-95.257904, 39.614629],\n            [-95.704593, 39.614629],\n            [-95.481248, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 39.301276],\n            [-95.704593, 39.614629],\n            [-95.927937, 39.301276],\n            [-95.481248, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 39.301276],\n            [-95.927937, 39.301276],\n            [-95.704593, 38.987923],\n            [-95.481248, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 39.301276],\n            [-95.704593, 38.987923],\n            [-95.257904, 38.987923],\n            [-95.481248, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 39.301276],\n            [-95.257904, 38.987923],\n            [-95.034559, 39.301276],\n            [-95.481248, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 39.927982],\n            [-95.034559, 39.927982],\n            [-95.257904, 40.241335],\n            [-95.481248, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 39.927982],\n            [-95.257904, 40.241335],\n            [-95.704593, 40.241335],\n            [-95.481248, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 39.927982],\n            [-95.704593, 40.241335],\n            [-95.927937, 39.927982],\n            [-95.481248, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 39.927982],\n            [-95.927937, 39.927982],\n            [-95.704593, 39.614629],\n            [-95.481248, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 39.927982],\n            [-95.704593, 39.614629],\n            [-95.257904, 39.614629],\n            [-95.481248, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.481248, 39.927982],\n            [-95.257904, 39.614629],\n            [-95.034559, 39.927982],\n            [-95.481248, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 31.467449],\n            [-94.364526, 31.467449],\n            [-94.587871, 31.780802],\n            [-94.811215, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 31.467449],\n            [-94.587871, 31.780802],\n            [-95.034559, 31.780802],\n            [-94.811215, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 31.467449],\n            [-95.034559, 31.780802],\n            [-95.257904, 31.467449],\n            [-94.811215, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 31.467449],\n            [-95.257904, 31.467449],\n            [-95.034559, 31.154096],\n            [-94.811215, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 31.467449],\n            [-95.034559, 31.154096],\n            [-94.587871, 31.154096],\n            [-94.811215, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 31.467449],\n            [-94.587871, 31.154096],\n            [-94.364526, 31.467449],\n            [-94.811215, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 32.094155],\n            [-94.364526, 32.094155],\n            [-94.587871, 32.407508],\n            [-94.811215, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 32.094155],\n            [-94.587871, 32.407508],\n            [-95.034559, 32.407508],\n            [-94.811215, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 32.094155],\n            [-95.034559, 32.407508],\n            [-95.257904, 32.094155],\n            [-94.811215, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 32.094155],\n            [-95.257904, 32.094155],\n            [-95.034559, 31.780802],\n            [-94.811215, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 32.094155],\n            [-95.034559, 31.780802],\n            [-94.587871, 31.780802],\n            [-94.811215, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 32.094155],\n            [-94.587871, 31.780802],\n            [-94.364526, 32.094155],\n            [-94.811215, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 32.720861],\n            [-94.364526, 32.720861],\n            [-94.587871, 33.034214],\n            [-94.811215, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 32.720861],\n            [-94.587871, 33.034214],\n            [-95.034559, 33.034214],\n            [-94.811215, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 32.720861],\n            [-95.034559, 33.034214],\n            [-95.257904, 32.720861],\n            [-94.811215, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 32.720861],\n            [-95.257904, 32.720861],\n            [-95.034559, 32.407508],\n            [-94.811215, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 32.720861],\n            [-95.034559, 32.407508],\n            [-94.587871, 32.407508],\n            [-94.811215, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 32.720861],\n            [-94.587871, 32.407508],\n            [-94.364526, 32.720861],\n            [-94.811215, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 33.347567],\n            [-94.364526, 33.347567],\n            [-94.587871, 33.66092],\n            [-94.811215, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 33.347567],\n            [-94.587871, 33.66092],\n            [-95.034559, 33.66092],\n            [-94.811215, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 33.347567],\n            [-95.034559, 33.66092],\n            [-95.257904, 33.347567],\n            [-94.811215, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 33.347567],\n            [-95.257904, 33.347567],\n            [-95.034559, 33.034214],\n            [-94.811215, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 33.347567],\n            [-95.034559, 33.034214],\n            [-94.587871, 33.034214],\n            [-94.811215, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 33.347567],\n            [-94.587871, 33.034214],\n            [-94.364526, 33.347567],\n            [-94.811215, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 33.974274],\n            [-94.364526, 33.974274],\n            [-94.587871, 34.287627],\n            [-94.811215, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 33.974274],\n            [-94.587871, 34.287627],\n            [-95.034559, 34.287627],\n            [-94.811215, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 33.974274],\n            [-95.034559, 34.287627],\n            [-95.257904, 33.974274],\n            [-94.811215, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 33.974274],\n            [-95.257904, 33.974274],\n            [-95.034559, 33.66092],\n            [-94.811215, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 33.974274],\n            [-95.034559, 33.66092],\n            [-94.587871, 33.66092],\n            [-94.811215, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 33.974274],\n            [-94.587871, 33.66092],\n            [-94.364526, 33.974274],\n            [-94.811215, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 34.60098],\n            [-94.364526, 34.60098],\n            [-94.587871, 34.914333],\n            [-94.811215, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 34.60098],\n            [-94.587871, 34.914333],\n            [-95.034559, 34.914333],\n            [-94.811215, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 34.60098],\n            [-95.034559, 34.914333],\n            [-95.257904, 34.60098],\n            [-94.811215, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 34.60098],\n            [-95.257904, 34.60098],\n            [-95.034559, 34.287627],\n            [-94.811215, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 34.60098],\n            [-95.034559, 34.287627],\n            [-94.587871, 34.287627],\n            [-94.811215, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 34.60098],\n            [-94.587871, 34.287627],\n            [-94.364526, 34.60098],\n            [-94.811215, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 35.227686],\n            [-94.364526, 35.227686],\n            [-94.587871, 35.541039],\n            [-94.811215, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 35.227686],\n            [-94.587871, 35.541039],\n            [-95.034559, 35.541039],\n            [-94.811215, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 35.227686],\n            [-95.034559, 35.541039],\n            [-95.257904, 35.227686],\n            [-94.811215, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 35.227686],\n            [-95.257904, 35.227686],\n            [-95.034559, 34.914333],\n            [-94.811215, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 35.227686],\n            [-95.034559, 34.914333],\n            [-94.587871, 34.914333],\n            [-94.811215, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 35.227686],\n            [-94.587871, 34.914333],\n            [-94.364526, 35.227686],\n            [-94.811215, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 35.854392],\n            [-94.364526, 35.854392],\n            [-94.587871, 36.167745],\n            [-94.811215, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 35.854392],\n            [-94.587871, 36.167745],\n            [-95.034559, 36.167745],\n            [-94.811215, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 35.854392],\n            [-95.034559, 36.167745],\n            [-95.257904, 35.854392],\n            [-94.811215, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 35.854392],\n            [-95.257904, 35.854392],\n            [-95.034559, 35.541039],\n            [-94.811215, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 35.854392],\n            [-95.034559, 35.541039],\n            [-94.587871, 35.541039],\n            [-94.811215, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 35.854392],\n            [-94.587871, 35.541039],\n            [-94.364526, 35.854392],\n            [-94.811215, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 36.481098],\n            [-94.364526, 36.481098],\n            [-94.587871, 36.794451],\n            [-94.811215, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 36.481098],\n            [-94.587871, 36.794451],\n            [-95.034559, 36.794451],\n            [-94.811215, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 36.481098],\n            [-95.034559, 36.794451],\n            [-95.257904, 36.481098],\n            [-94.811215, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 36.481098],\n            [-95.257904, 36.481098],\n            [-95.034559, 36.167745],\n            [-94.811215, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 36.481098],\n            [-95.034559, 36.167745],\n            [-94.587871, 36.167745],\n            [-94.811215, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 36.481098],\n            [-94.587871, 36.167745],\n            [-94.364526, 36.481098],\n            [-94.811215, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 37.107804],\n            [-94.364526, 37.107804],\n            [-94.587871, 37.421157],\n            [-94.811215, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 37.107804],\n            [-94.587871, 37.421157],\n            [-95.034559, 37.421157],\n            [-94.811215, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 37.107804],\n            [-95.034559, 37.421157],\n            [-95.257904, 37.107804],\n            [-94.811215, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 37.107804],\n            [-95.257904, 37.107804],\n            [-95.034559, 36.794451],\n            [-94.811215, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 37.107804],\n            [-95.034559, 36.794451],\n            [-94.587871, 36.794451],\n            [-94.811215, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 37.107804],\n            [-94.587871, 36.794451],\n            [-94.364526, 37.107804],\n            [-94.811215, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 37.73451],\n            [-94.364526, 37.73451],\n            [-94.587871, 38.047863],\n            [-94.811215, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 37.73451],\n            [-94.587871, 38.047863],\n            [-95.034559, 38.047863],\n            [-94.811215, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 37.73451],\n            [-95.034559, 38.047863],\n            [-95.257904, 37.73451],\n            [-94.811215, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 37.73451],\n            [-95.257904, 37.73451],\n            [-95.034559, 37.421157],\n            [-94.811215, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 37.73451],\n            [-95.034559, 37.421157],\n            [-94.587871, 37.421157],\n            [-94.811215, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 37.73451],\n            [-94.587871, 37.421157],\n            [-94.364526, 37.73451],\n            [-94.811215, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 38.361217],\n            [-94.364526, 38.361217],\n            [-94.587871, 38.67457],\n            [-94.811215, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 38.361217],\n            [-94.587871, 38.67457],\n            [-95.034559, 38.67457],\n            [-94.811215, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 38.361217],\n            [-95.034559, 38.67457],\n            [-95.257904, 38.361217],\n            [-94.811215, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 38.361217],\n            [-95.257904, 38.361217],\n            [-95.034559, 38.047863],\n            [-94.811215, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 38.361217],\n            [-95.034559, 38.047863],\n            [-94.587871, 38.047863],\n            [-94.811215, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 38.361217],\n            [-94.587871, 38.047863],\n            [-94.364526, 38.361217],\n            [-94.811215, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 38.987923],\n            [-94.364526, 38.987923],\n            [-94.587871, 39.301276],\n            [-94.811215, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 38.987923],\n            [-94.587871, 39.301276],\n            [-95.034559, 39.301276],\n            [-94.811215, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 38.987923],\n            [-95.034559, 39.301276],\n            [-95.257904, 38.987923],\n            [-94.811215, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 38.987923],\n            [-95.257904, 38.987923],\n            [-95.034559, 38.67457],\n            [-94.811215, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 38.987923],\n            [-95.034559, 38.67457],\n            [-94.587871, 38.67457],\n            [-94.811215, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 38.987923],\n            [-94.587871, 38.67457],\n            [-94.364526, 38.987923],\n            [-94.811215, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 39.614629],\n            [-94.364526, 39.614629],\n            [-94.587871, 39.927982],\n            [-94.811215, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 39.614629],\n            [-94.587871, 39.927982],\n            [-95.034559, 39.927982],\n            [-94.811215, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 39.614629],\n            [-95.034559, 39.927982],\n            [-95.257904, 39.614629],\n            [-94.811215, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 39.614629],\n            [-95.257904, 39.614629],\n            [-95.034559, 39.301276],\n            [-94.811215, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 39.614629],\n            [-95.034559, 39.301276],\n            [-94.587871, 39.301276],\n            [-94.811215, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 39.614629],\n            [-94.587871, 39.301276],\n            [-94.364526, 39.614629],\n            [-94.811215, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 40.241335],\n            [-94.364526, 40.241335],\n            [-94.587871, 40.554688],\n            [-94.811215, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 40.241335],\n            [-94.587871, 40.554688],\n            [-95.034559, 40.554688],\n            [-94.811215, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 40.241335],\n            [-95.034559, 40.554688],\n            [-95.257904, 40.241335],\n            [-94.811215, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 40.241335],\n            [-95.257904, 40.241335],\n            [-95.034559, 39.927982],\n            [-94.811215, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 40.241335],\n            [-95.034559, 39.927982],\n            [-94.587871, 39.927982],\n            [-94.811215, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.811215, 40.241335],\n            [-94.587871, 39.927982],\n            [-94.364526, 40.241335],\n            [-94.811215, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 31.780802],\n            [-93.694493, 31.780802],\n            [-93.917837, 32.094155],\n            [-94.141182, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 31.780802],\n            [-93.917837, 32.094155],\n            [-94.364526, 32.094155],\n            [-94.141182, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 31.780802],\n            [-94.364526, 32.094155],\n            [-94.587871, 31.780802],\n            [-94.141182, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 31.780802],\n            [-94.587871, 31.780802],\n            [-94.364526, 31.467449],\n            [-94.141182, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 31.780802],\n            [-94.364526, 31.467449],\n            [-93.917837, 31.467449],\n            [-94.141182, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 31.780802],\n            [-93.917837, 31.467449],\n            [-93.694493, 31.780802],\n            [-94.141182, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 32.407508],\n            [-93.694493, 32.407508],\n            [-93.917837, 32.720861],\n            [-94.141182, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 32.407508],\n            [-93.917837, 32.720861],\n            [-94.364526, 32.720861],\n            [-94.141182, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 32.407508],\n            [-94.364526, 32.720861],\n            [-94.587871, 32.407508],\n            [-94.141182, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 32.407508],\n            [-94.587871, 32.407508],\n            [-94.364526, 32.094155],\n            [-94.141182, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 32.407508],\n            [-94.364526, 32.094155],\n            [-93.917837, 32.094155],\n            [-94.141182, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 32.407508],\n            [-93.917837, 32.094155],\n            [-93.694493, 32.407508],\n            [-94.141182, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 33.034214],\n            [-93.694493, 33.034214],\n            [-93.917837, 33.347567],\n            [-94.141182, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 33.034214],\n            [-93.917837, 33.347567],\n            [-94.364526, 33.347567],\n            [-94.141182, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 33.034214],\n            [-94.364526, 33.347567],\n            [-94.587871, 33.034214],\n            [-94.141182, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 33.034214],\n            [-94.587871, 33.034214],\n            [-94.364526, 32.720861],\n            [-94.141182, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 33.034214],\n            [-94.364526, 32.720861],\n            [-93.917837, 32.720861],\n            [-94.141182, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 33.034214],\n            [-93.917837, 32.720861],\n            [-93.694493, 33.034214],\n            [-94.141182, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 33.66092],\n            [-93.694493, 33.66092],\n            [-93.917837, 33.974274],\n            [-94.141182, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 33.66092],\n            [-93.917837, 33.974274],\n            [-94.364526, 33.974274],\n            [-94.141182, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 33.66092],\n            [-94.364526, 33.974274],\n            [-94.587871, 33.66092],\n            [-94.141182, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 33.66092],\n            [-94.587871, 33.66092],\n            [-94.364526, 33.347567],\n            [-94.141182, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 33.66092],\n            [-94.364526, 33.347567],\n            [-93.917837, 33.347567],\n            [-94.141182, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 33.66092],\n            [-93.917837, 33.347567],\n            [-93.694493, 33.66092],\n            [-94.141182, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 34.287627],\n            [-93.694493, 34.287627],\n            [-93.917837, 34.60098],\n            [-94.141182, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 34.287627],\n            [-93.917837, 34.60098],\n            [-94.364526, 34.60098],\n            [-94.141182, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 34.287627],\n            [-94.364526, 34.60098],\n            [-94.587871, 34.287627],\n            [-94.141182, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 34.287627],\n            [-94.587871, 34.287627],\n            [-94.364526, 33.974274],\n            [-94.141182, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 34.287627],\n            [-94.364526, 33.974274],\n            [-93.917837, 33.974274],\n            [-94.141182, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 34.287627],\n            [-93.917837, 33.974274],\n            [-93.694493, 34.287627],\n            [-94.141182, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 34.914333],\n            [-93.694493, 34.914333],\n            [-93.917837, 35.227686],\n            [-94.141182, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 34.914333],\n            [-93.917837, 35.227686],\n            [-94.364526, 35.227686],\n            [-94.141182, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 34.914333],\n            [-94.364526, 35.227686],\n            [-94.587871, 34.914333],\n            [-94.141182, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 34.914333],\n            [-94.587871, 34.914333],\n            [-94.364526, 34.60098],\n            [-94.141182, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 34.914333],\n            [-94.364526, 34.60098],\n            [-93.917837, 34.60098],\n            [-94.141182, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 34.914333],\n            [-93.917837, 34.60098],\n            [-93.694493, 34.914333],\n            [-94.141182, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 35.541039],\n            [-93.694493, 35.541039],\n            [-93.917837, 35.854392],\n            [-94.141182, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 35.541039],\n            [-93.917837, 35.854392],\n            [-94.364526, 35.854392],\n            [-94.141182, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 35.541039],\n            [-94.364526, 35.854392],\n            [-94.587871, 35.541039],\n            [-94.141182, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 35.541039],\n            [-94.587871, 35.541039],\n            [-94.364526, 35.227686],\n            [-94.141182, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 35.541039],\n            [-94.364526, 35.227686],\n            [-93.917837, 35.227686],\n            [-94.141182, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 35.541039],\n            [-93.917837, 35.227686],\n            [-93.694493, 35.541039],\n            [-94.141182, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 36.167745],\n            [-93.694493, 36.167745],\n            [-93.917837, 36.481098],\n            [-94.141182, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 36.167745],\n            [-93.917837, 36.481098],\n            [-94.364526, 36.481098],\n            [-94.141182, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 36.167745],\n            [-94.364526, 36.481098],\n            [-94.587871, 36.167745],\n            [-94.141182, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 36.167745],\n            [-94.587871, 36.167745],\n            [-94.364526, 35.854392],\n            [-94.141182, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 36.167745],\n            [-94.364526, 35.854392],\n            [-93.917837, 35.854392],\n            [-94.141182, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 36.167745],\n            [-93.917837, 35.854392],\n            [-93.694493, 36.167745],\n            [-94.141182, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 36.794451],\n            [-93.694493, 36.794451],\n            [-93.917837, 37.107804],\n            [-94.141182, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 36.794451],\n            [-93.917837, 37.107804],\n            [-94.364526, 37.107804],\n            [-94.141182, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 36.794451],\n            [-94.364526, 37.107804],\n            [-94.587871, 36.794451],\n            [-94.141182, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 36.794451],\n            [-94.587871, 36.794451],\n            [-94.364526, 36.481098],\n            [-94.141182, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 36.794451],\n            [-94.364526, 36.481098],\n            [-93.917837, 36.481098],\n            [-94.141182, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 36.794451],\n            [-93.917837, 36.481098],\n            [-93.694493, 36.794451],\n            [-94.141182, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 37.421157],\n            [-93.694493, 37.421157],\n            [-93.917837, 37.73451],\n            [-94.141182, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 37.421157],\n            [-93.917837, 37.73451],\n            [-94.364526, 37.73451],\n            [-94.141182, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 37.421157],\n            [-94.364526, 37.73451],\n            [-94.587871, 37.421157],\n            [-94.141182, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 37.421157],\n            [-94.587871, 37.421157],\n            [-94.364526, 37.107804],\n            [-94.141182, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 37.421157],\n            [-94.364526, 37.107804],\n            [-93.917837, 37.107804],\n            [-94.141182, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 37.421157],\n            [-93.917837, 37.107804],\n            [-93.694493, 37.421157],\n            [-94.141182, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 38.047863],\n            [-93.694493, 38.047863],\n            [-93.917837, 38.361217],\n            [-94.141182, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 38.047863],\n            [-93.917837, 38.361217],\n            [-94.364526, 38.361217],\n            [-94.141182, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 38.047863],\n            [-94.364526, 38.361217],\n            [-94.587871, 38.047863],\n            [-94.141182, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 38.047863],\n            [-94.587871, 38.047863],\n            [-94.364526, 37.73451],\n            [-94.141182, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 38.047863],\n            [-94.364526, 37.73451],\n            [-93.917837, 37.73451],\n            [-94.141182, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 38.047863],\n            [-93.917837, 37.73451],\n            [-93.694493, 38.047863],\n            [-94.141182, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 38.67457],\n            [-93.694493, 38.67457],\n            [-93.917837, 38.987923],\n            [-94.141182, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 38.67457],\n            [-93.917837, 38.987923],\n            [-94.364526, 38.987923],\n            [-94.141182, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 38.67457],\n            [-94.364526, 38.987923],\n            [-94.587871, 38.67457],\n            [-94.141182, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 38.67457],\n            [-94.587871, 38.67457],\n            [-94.364526, 38.361217],\n            [-94.141182, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 38.67457],\n            [-94.364526, 38.361217],\n            [-93.917837, 38.361217],\n            [-94.141182, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 38.67457],\n            [-93.917837, 38.361217],\n            [-93.694493, 38.67457],\n            [-94.141182, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 39.301276],\n            [-93.694493, 39.301276],\n            [-93.917837, 39.614629],\n            [-94.141182, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 39.301276],\n            [-93.917837, 39.614629],\n            [-94.364526, 39.614629],\n            [-94.141182, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 39.301276],\n            [-94.364526, 39.614629],\n            [-94.587871, 39.301276],\n            [-94.141182, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 39.301276],\n            [-94.587871, 39.301276],\n            [-94.364526, 38.987923],\n            [-94.141182, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 39.301276],\n            [-94.364526, 38.987923],\n            [-93.917837, 38.987923],\n            [-94.141182, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 39.301276],\n            [-93.917837, 38.987923],\n            [-93.694493, 39.301276],\n            [-94.141182, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 39.927982],\n            [-93.694493, 39.927982],\n            [-93.917837, 40.241335],\n            [-94.141182, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 39.927982],\n            [-93.917837, 40.241335],\n            [-94.364526, 40.241335],\n            [-94.141182, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 39.927982],\n            [-94.364526, 40.241335],\n            [-94.587871, 39.927982],\n            [-94.141182, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 39.927982],\n            [-94.587871, 39.927982],\n            [-94.364526, 39.614629],\n            [-94.141182, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 39.927982],\n            [-94.364526, 39.614629],\n            [-93.917837, 39.614629],\n            [-94.141182, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.141182, 39.927982],\n            [-93.917837, 39.614629],\n            [-93.694493, 39.927982],\n            [-94.141182, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 31.467449],\n            [-93.02446, 31.467449],\n            [-93.247804, 31.780802],\n            [-93.471149, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 31.467449],\n            [-93.247804, 31.780802],\n            [-93.694493, 31.780802],\n            [-93.471149, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 31.467449],\n            [-93.694493, 31.780802],\n            [-93.917837, 31.467449],\n            [-93.471149, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 31.467449],\n            [-93.917837, 31.467449],\n            [-93.694493, 31.154096],\n            [-93.471149, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 31.467449],\n            [-93.694493, 31.154096],\n            [-93.247804, 31.154096],\n            [-93.471149, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 31.467449],\n            [-93.247804, 31.154096],\n            [-93.02446, 31.467449],\n            [-93.471149, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 32.094155],\n            [-93.02446, 32.094155],\n            [-93.247804, 32.407508],\n            [-93.471149, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 32.094155],\n            [-93.247804, 32.407508],\n            [-93.694493, 32.407508],\n            [-93.471149, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 32.094155],\n            [-93.694493, 32.407508],\n            [-93.917837, 32.094155],\n            [-93.471149, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 32.094155],\n            [-93.917837, 32.094155],\n            [-93.694493, 31.780802],\n            [-93.471149, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 32.094155],\n            [-93.694493, 31.780802],\n            [-93.247804, 31.780802],\n            [-93.471149, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 32.094155],\n            [-93.247804, 31.780802],\n            [-93.02446, 32.094155],\n            [-93.471149, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 32.720861],\n            [-93.02446, 32.720861],\n            [-93.247804, 33.034214],\n            [-93.471149, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 32.720861],\n            [-93.247804, 33.034214],\n            [-93.694493, 33.034214],\n            [-93.471149, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 32.720861],\n            [-93.694493, 33.034214],\n            [-93.917837, 32.720861],\n            [-93.471149, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 32.720861],\n            [-93.917837, 32.720861],\n            [-93.694493, 32.407508],\n            [-93.471149, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 32.720861],\n            [-93.694493, 32.407508],\n            [-93.247804, 32.407508],\n            [-93.471149, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 32.720861],\n            [-93.247804, 32.407508],\n            [-93.02446, 32.720861],\n            [-93.471149, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 33.347567],\n            [-93.02446, 33.347567],\n            [-93.247804, 33.66092],\n            [-93.471149, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 33.347567],\n            [-93.247804, 33.66092],\n            [-93.694493, 33.66092],\n            [-93.471149, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 33.347567],\n            [-93.694493, 33.66092],\n            [-93.917837, 33.347567],\n            [-93.471149, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 33.347567],\n            [-93.917837, 33.347567],\n            [-93.694493, 33.034214],\n            [-93.471149, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 33.347567],\n            [-93.694493, 33.034214],\n            [-93.247804, 33.034214],\n            [-93.471149, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 33.347567],\n            [-93.247804, 33.034214],\n            [-93.02446, 33.347567],\n            [-93.471149, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 33.974274],\n            [-93.02446, 33.974274],\n            [-93.247804, 34.287627],\n            [-93.471149, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 33.974274],\n            [-93.247804, 34.287627],\n            [-93.694493, 34.287627],\n            [-93.471149, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 33.974274],\n            [-93.694493, 34.287627],\n            [-93.917837, 33.974274],\n            [-93.471149, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 33.974274],\n            [-93.917837, 33.974274],\n            [-93.694493, 33.66092],\n            [-93.471149, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 33.974274],\n            [-93.694493, 33.66092],\n            [-93.247804, 33.66092],\n            [-93.471149, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 33.974274],\n            [-93.247804, 33.66092],\n            [-93.02446, 33.974274],\n            [-93.471149, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 34.60098],\n            [-93.02446, 34.60098],\n            [-93.247804, 34.914333],\n            [-93.471149, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 34.60098],\n            [-93.247804, 34.914333],\n            [-93.694493, 34.914333],\n            [-93.471149, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 34.60098],\n            [-93.694493, 34.914333],\n            [-93.917837, 34.60098],\n            [-93.471149, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 34.60098],\n            [-93.917837, 34.60098],\n            [-93.694493, 34.287627],\n            [-93.471149, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 34.60098],\n            [-93.694493, 34.287627],\n            [-93.247804, 34.287627],\n            [-93.471149, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 34.60098],\n            [-93.247804, 34.287627],\n            [-93.02446, 34.60098],\n            [-93.471149, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 35.227686],\n            [-93.02446, 35.227686],\n            [-93.247804, 35.541039],\n            [-93.471149, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 35.227686],\n            [-93.247804, 35.541039],\n            [-93.694493, 35.541039],\n            [-93.471149, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 35.227686],\n            [-93.694493, 35.541039],\n            [-93.917837, 35.227686],\n            [-93.471149, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 35.227686],\n            [-93.917837, 35.227686],\n            [-93.694493, 34.914333],\n            [-93.471149, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 35.227686],\n            [-93.694493, 34.914333],\n            [-93.247804, 34.914333],\n            [-93.471149, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 35.227686],\n            [-93.247804, 34.914333],\n            [-93.02446, 35.227686],\n            [-93.471149, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 35.854392],\n            [-93.02446, 35.854392],\n            [-93.247804, 36.167745],\n            [-93.471149, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 35.854392],\n            [-93.247804, 36.167745],\n            [-93.694493, 36.167745],\n            [-93.471149, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 35.854392],\n            [-93.694493, 36.167745],\n            [-93.917837, 35.854392],\n            [-93.471149, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 35.854392],\n            [-93.917837, 35.854392],\n            [-93.694493, 35.541039],\n            [-93.471149, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 35.854392],\n            [-93.694493, 35.541039],\n            [-93.247804, 35.541039],\n            [-93.471149, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 35.854392],\n            [-93.247804, 35.541039],\n            [-93.02446, 35.854392],\n            [-93.471149, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 36.481098],\n            [-93.02446, 36.481098],\n            [-93.247804, 36.794451],\n            [-93.471149, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 36.481098],\n            [-93.247804, 36.794451],\n            [-93.694493, 36.794451],\n            [-93.471149, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 36.481098],\n            [-93.694493, 36.794451],\n            [-93.917837, 36.481098],\n            [-93.471149, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 36.481098],\n            [-93.917837, 36.481098],\n            [-93.694493, 36.167745],\n            [-93.471149, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 36.481098],\n            [-93.694493, 36.167745],\n            [-93.247804, 36.167745],\n            [-93.471149, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 36.481098],\n            [-93.247804, 36.167745],\n            [-93.02446, 36.481098],\n            [-93.471149, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 37.107804],\n            [-93.02446, 37.107804],\n            [-93.247804, 37.421157],\n            [-93.471149, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 37.107804],\n            [-93.247804, 37.421157],\n            [-93.694493, 37.421157],\n            [-93.471149, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 37.107804],\n            [-93.694493, 37.421157],\n            [-93.917837, 37.107804],\n            [-93.471149, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 37.107804],\n            [-93.917837, 37.107804],\n            [-93.694493, 36.794451],\n            [-93.471149, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 37.107804],\n            [-93.694493, 36.794451],\n            [-93.247804, 36.794451],\n            [-93.471149, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 37.107804],\n            [-93.247804, 36.794451],\n            [-93.02446, 37.107804],\n            [-93.471149, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 37.73451],\n            [-93.02446, 37.73451],\n            [-93.247804, 38.047863],\n            [-93.471149, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 37.73451],\n            [-93.247804, 38.047863],\n            [-93.694493, 38.047863],\n            [-93.471149, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 37.73451],\n            [-93.694493, 38.047863],\n            [-93.917837, 37.73451],\n            [-93.471149, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 37.73451],\n            [-93.917837, 37.73451],\n            [-93.694493, 37.421157],\n            [-93.471149, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 37.73451],\n            [-93.694493, 37.421157],\n            [-93.247804, 37.421157],\n            [-93.471149, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 37.73451],\n            [-93.247804, 37.421157],\n            [-93.02446, 37.73451],\n            [-93.471149, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 38.361217],\n            [-93.02446, 38.361217],\n            [-93.247804, 38.67457],\n            [-93.471149, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 38.361217],\n            [-93.247804, 38.67457],\n            [-93.694493, 38.67457],\n            [-93.471149, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 38.361217],\n            [-93.694493, 38.67457],\n            [-93.917837, 38.361217],\n            [-93.471149, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 38.361217],\n            [-93.917837, 38.361217],\n            [-93.694493, 38.047863],\n            [-93.471149, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 38.361217],\n            [-93.694493, 38.047863],\n            [-93.247804, 38.047863],\n            [-93.471149, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 38.361217],\n            [-93.247804, 38.047863],\n            [-93.02446, 38.361217],\n            [-93.471149, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 38.987923],\n            [-93.02446, 38.987923],\n            [-93.247804, 39.301276],\n            [-93.471149, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 38.987923],\n            [-93.247804, 39.301276],\n            [-93.694493, 39.301276],\n            [-93.471149, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 38.987923],\n            [-93.694493, 39.301276],\n            [-93.917837, 38.987923],\n            [-93.471149, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 38.987923],\n            [-93.917837, 38.987923],\n            [-93.694493, 38.67457],\n            [-93.471149, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 38.987923],\n            [-93.694493, 38.67457],\n            [-93.247804, 38.67457],\n            [-93.471149, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 38.987923],\n            [-93.247804, 38.67457],\n            [-93.02446, 38.987923],\n            [-93.471149, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 39.614629],\n            [-93.02446, 39.614629],\n            [-93.247804, 39.927982],\n            [-93.471149, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 39.614629],\n            [-93.247804, 39.927982],\n            [-93.694493, 39.927982],\n            [-93.471149, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 39.614629],\n            [-93.694493, 39.927982],\n            [-93.917837, 39.614629],\n            [-93.471149, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 39.614629],\n            [-93.917837, 39.614629],\n            [-93.694493, 39.301276],\n            [-93.471149, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 39.614629],\n            [-93.694493, 39.301276],\n            [-93.247804, 39.301276],\n            [-93.471149, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 39.614629],\n            [-93.247804, 39.301276],\n            [-93.02446, 39.614629],\n            [-93.471149, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 40.241335],\n            [-93.02446, 40.241335],\n            [-93.247804, 40.554688],\n            [-93.471149, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 40.241335],\n            [-93.247804, 40.554688],\n            [-93.694493, 40.554688],\n            [-93.471149, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 40.241335],\n            [-93.694493, 40.554688],\n            [-93.917837, 40.241335],\n            [-93.471149, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 40.241335],\n            [-93.917837, 40.241335],\n            [-93.694493, 39.927982],\n            [-93.471149, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 40.241335],\n            [-93.694493, 39.927982],\n            [-93.247804, 39.927982],\n            [-93.471149, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.471149, 40.241335],\n            [-93.247804, 39.927982],\n            [-93.02446, 40.241335],\n            [-93.471149, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 31.780802],\n            [-92.354427, 31.780802],\n            [-92.577771, 32.094155],\n            [-92.801115, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 31.780802],\n            [-92.577771, 32.094155],\n            [-93.02446, 32.094155],\n            [-92.801115, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 31.780802],\n            [-93.02446, 32.094155],\n            [-93.247804, 31.780802],\n            [-92.801115, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 31.780802],\n            [-93.247804, 31.780802],\n            [-93.02446, 31.467449],\n            [-92.801115, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 31.780802],\n            [-93.02446, 31.467449],\n            [-92.577771, 31.467449],\n            [-92.801115, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 31.780802],\n            [-92.577771, 31.467449],\n            [-92.354427, 31.780802],\n            [-92.801115, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 32.407508],\n            [-92.354427, 32.407508],\n            [-92.577771, 32.720861],\n            [-92.801115, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 32.407508],\n            [-92.577771, 32.720861],\n            [-93.02446, 32.720861],\n            [-92.801115, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 32.407508],\n            [-93.02446, 32.720861],\n            [-93.247804, 32.407508],\n            [-92.801115, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 32.407508],\n            [-93.247804, 32.407508],\n            [-93.02446, 32.094155],\n            [-92.801115, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 32.407508],\n            [-93.02446, 32.094155],\n            [-92.577771, 32.094155],\n            [-92.801115, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 32.407508],\n            [-92.577771, 32.094155],\n            [-92.354427, 32.407508],\n            [-92.801115, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 33.034214],\n            [-92.354427, 33.034214],\n            [-92.577771, 33.347567],\n            [-92.801115, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 33.034214],\n            [-92.577771, 33.347567],\n            [-93.02446, 33.347567],\n            [-92.801115, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 33.034214],\n            [-93.02446, 33.347567],\n            [-93.247804, 33.034214],\n            [-92.801115, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 33.034214],\n            [-93.247804, 33.034214],\n            [-93.02446, 32.720861],\n            [-92.801115, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 33.034214],\n            [-93.02446, 32.720861],\n            [-92.577771, 32.720861],\n            [-92.801115, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 33.034214],\n            [-92.577771, 32.720861],\n            [-92.354427, 33.034214],\n            [-92.801115, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 33.66092],\n            [-92.354427, 33.66092],\n            [-92.577771, 33.974274],\n            [-92.801115, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 33.66092],\n            [-92.577771, 33.974274],\n            [-93.02446, 33.974274],\n            [-92.801115, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 33.66092],\n            [-93.02446, 33.974274],\n            [-93.247804, 33.66092],\n            [-92.801115, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 33.66092],\n            [-93.247804, 33.66092],\n            [-93.02446, 33.347567],\n            [-92.801115, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 33.66092],\n            [-93.02446, 33.347567],\n            [-92.577771, 33.347567],\n            [-92.801115, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 33.66092],\n            [-92.577771, 33.347567],\n            [-92.354427, 33.66092],\n            [-92.801115, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 34.287627],\n            [-92.354427, 34.287627],\n            [-92.577771, 34.60098],\n            [-92.801115, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 34.287627],\n            [-92.577771, 34.60098],\n            [-93.02446, 34.60098],\n            [-92.801115, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 34.287627],\n            [-93.02446, 34.60098],\n            [-93.247804, 34.287627],\n            [-92.801115, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 34.287627],\n            [-93.247804, 34.287627],\n            [-93.02446, 33.974274],\n            [-92.801115, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 34.287627],\n            [-93.02446, 33.974274],\n            [-92.577771, 33.974274],\n            [-92.801115, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 34.287627],\n            [-92.577771, 33.974274],\n            [-92.354427, 34.287627],\n            [-92.801115, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 34.914333],\n            [-92.354427, 34.914333],\n            [-92.577771, 35.227686],\n            [-92.801115, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 34.914333],\n            [-92.577771, 35.227686],\n            [-93.02446, 35.227686],\n            [-92.801115, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 34.914333],\n            [-93.02446, 35.227686],\n            [-93.247804, 34.914333],\n            [-92.801115, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 34.914333],\n            [-93.247804, 34.914333],\n            [-93.02446, 34.60098],\n            [-92.801115, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 34.914333],\n            [-93.02446, 34.60098],\n            [-92.577771, 34.60098],\n            [-92.801115, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 34.914333],\n            [-92.577771, 34.60098],\n            [-92.354427, 34.914333],\n            [-92.801115, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 35.541039],\n            [-92.354427, 35.541039],\n            [-92.577771, 35.854392],\n            [-92.801115, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 35.541039],\n            [-92.577771, 35.854392],\n            [-93.02446, 35.854392],\n            [-92.801115, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 35.541039],\n            [-93.02446, 35.854392],\n            [-93.247804, 35.541039],\n            [-92.801115, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 35.541039],\n            [-93.247804, 35.541039],\n            [-93.02446, 35.227686],\n            [-92.801115, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 35.541039],\n            [-93.02446, 35.227686],\n            [-92.577771, 35.227686],\n            [-92.801115, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 35.541039],\n            [-92.577771, 35.227686],\n            [-92.354427, 35.541039],\n            [-92.801115, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 36.167745],\n            [-92.354427, 36.167745],\n            [-92.577771, 36.481098],\n            [-92.801115, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 36.167745],\n            [-92.577771, 36.481098],\n            [-93.02446, 36.481098],\n            [-92.801115, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 36.167745],\n            [-93.02446, 36.481098],\n            [-93.247804, 36.167745],\n            [-92.801115, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 36.167745],\n            [-93.247804, 36.167745],\n            [-93.02446, 35.854392],\n            [-92.801115, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 36.167745],\n            [-93.02446, 35.854392],\n            [-92.577771, 35.854392],\n            [-92.801115, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 36.167745],\n            [-92.577771, 35.854392],\n            [-92.354427, 36.167745],\n            [-92.801115, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 36.794451],\n            [-92.354427, 36.794451],\n            [-92.577771, 37.107804],\n            [-92.801115, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 36.794451],\n            [-92.577771, 37.107804],\n            [-93.02446, 37.107804],\n            [-92.801115, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 36.794451],\n            [-93.02446, 37.107804],\n            [-93.247804, 36.794451],\n            [-92.801115, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 36.794451],\n            [-93.247804, 36.794451],\n            [-93.02446, 36.481098],\n            [-92.801115, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 36.794451],\n            [-93.02446, 36.481098],\n            [-92.577771, 36.481098],\n            [-92.801115, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 36.794451],\n            [-92.577771, 36.481098],\n            [-92.354427, 36.794451],\n            [-92.801115, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 37.421157],\n            [-92.354427, 37.421157],\n            [-92.577771, 37.73451],\n            [-92.801115, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 37.421157],\n            [-92.577771, 37.73451],\n            [-93.02446, 37.73451],\n            [-92.801115, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 37.421157],\n            [-93.02446, 37.73451],\n            [-93.247804, 37.421157],\n            [-92.801115, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 37.421157],\n            [-93.247804, 37.421157],\n            [-93.02446, 37.107804],\n            [-92.801115, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 37.421157],\n            [-93.02446, 37.107804],\n            [-92.577771, 37.107804],\n            [-92.801115, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 37.421157],\n            [-92.577771, 37.107804],\n            [-92.354427, 37.421157],\n            [-92.801115, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 38.047863],\n            [-92.354427, 38.047863],\n            [-92.577771, 38.361217],\n            [-92.801115, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 38.047863],\n            [-92.577771, 38.361217],\n            [-93.02446, 38.361217],\n            [-92.801115, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 38.047863],\n            [-93.02446, 38.361217],\n            [-93.247804, 38.047863],\n            [-92.801115, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 38.047863],\n            [-93.247804, 38.047863],\n            [-93.02446, 37.73451],\n            [-92.801115, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 38.047863],\n            [-93.02446, 37.73451],\n            [-92.577771, 37.73451],\n            [-92.801115, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 38.047863],\n            [-92.577771, 37.73451],\n            [-92.354427, 38.047863],\n            [-92.801115, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 38.67457],\n            [-92.354427, 38.67457],\n            [-92.577771, 38.987923],\n            [-92.801115, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 38.67457],\n            [-92.577771, 38.987923],\n            [-93.02446, 38.987923],\n            [-92.801115, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 38.67457],\n            [-93.02446, 38.987923],\n            [-93.247804, 38.67457],\n            [-92.801115, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 38.67457],\n            [-93.247804, 38.67457],\n            [-93.02446, 38.361217],\n            [-92.801115, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 38.67457],\n            [-93.02446, 38.361217],\n            [-92.577771, 38.361217],\n            [-92.801115, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 38.67457],\n            [-92.577771, 38.361217],\n            [-92.354427, 38.67457],\n            [-92.801115, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 39.301276],\n            [-92.354427, 39.301276],\n            [-92.577771, 39.614629],\n            [-92.801115, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 39.301276],\n            [-92.577771, 39.614629],\n            [-93.02446, 39.614629],\n            [-92.801115, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 39.301276],\n            [-93.02446, 39.614629],\n            [-93.247804, 39.301276],\n            [-92.801115, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 39.301276],\n            [-93.247804, 39.301276],\n            [-93.02446, 38.987923],\n            [-92.801115, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 39.301276],\n            [-93.02446, 38.987923],\n            [-92.577771, 38.987923],\n            [-92.801115, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 39.301276],\n            [-92.577771, 38.987923],\n            [-92.354427, 39.301276],\n            [-92.801115, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 39.927982],\n            [-92.354427, 39.927982],\n            [-92.577771, 40.241335],\n            [-92.801115, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 39.927982],\n            [-92.577771, 40.241335],\n            [-93.02446, 40.241335],\n            [-92.801115, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 39.927982],\n            [-93.02446, 40.241335],\n            [-93.247804, 39.927982],\n            [-92.801115, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 39.927982],\n            [-93.247804, 39.927982],\n            [-93.02446, 39.614629],\n            [-92.801115, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 39.927982],\n            [-93.02446, 39.614629],\n            [-92.577771, 39.614629],\n            [-92.801115, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.801115, 39.927982],\n            [-92.577771, 39.614629],\n            [-92.354427, 39.927982],\n            [-92.801115, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 31.467449],\n            [-91.684393, 31.467449],\n            [-91.907738, 31.780802],\n            [-92.131082, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 31.467449],\n            [-91.907738, 31.780802],\n            [-92.354427, 31.780802],\n            [-92.131082, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 31.467449],\n            [-92.354427, 31.780802],\n            [-92.577771, 31.467449],\n            [-92.131082, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 31.467449],\n            [-92.577771, 31.467449],\n            [-92.354427, 31.154096],\n            [-92.131082, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 31.467449],\n            [-92.354427, 31.154096],\n            [-91.907738, 31.154096],\n            [-92.131082, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 31.467449],\n            [-91.907738, 31.154096],\n            [-91.684393, 31.467449],\n            [-92.131082, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 32.094155],\n            [-91.684393, 32.094155],\n            [-91.907738, 32.407508],\n            [-92.131082, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 32.094155],\n            [-91.907738, 32.407508],\n            [-92.354427, 32.407508],\n            [-92.131082, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 32.094155],\n            [-92.354427, 32.407508],\n            [-92.577771, 32.094155],\n            [-92.131082, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 32.094155],\n            [-92.577771, 32.094155],\n            [-92.354427, 31.780802],\n            [-92.131082, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 32.094155],\n            [-92.354427, 31.780802],\n            [-91.907738, 31.780802],\n            [-92.131082, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 32.094155],\n            [-91.907738, 31.780802],\n            [-91.684393, 32.094155],\n            [-92.131082, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 32.720861],\n            [-91.684393, 32.720861],\n            [-91.907738, 33.034214],\n            [-92.131082, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 32.720861],\n            [-91.907738, 33.034214],\n            [-92.354427, 33.034214],\n            [-92.131082, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 32.720861],\n            [-92.354427, 33.034214],\n            [-92.577771, 32.720861],\n            [-92.131082, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 32.720861],\n            [-92.577771, 32.720861],\n            [-92.354427, 32.407508],\n            [-92.131082, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 32.720861],\n            [-92.354427, 32.407508],\n            [-91.907738, 32.407508],\n            [-92.131082, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 32.720861],\n            [-91.907738, 32.407508],\n            [-91.684393, 32.720861],\n            [-92.131082, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 33.347567],\n            [-91.684393, 33.347567],\n            [-91.907738, 33.66092],\n            [-92.131082, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 33.347567],\n            [-91.907738, 33.66092],\n            [-92.354427, 33.66092],\n            [-92.131082, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 33.347567],\n            [-92.354427, 33.66092],\n            [-92.577771, 33.347567],\n            [-92.131082, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 33.347567],\n            [-92.577771, 33.347567],\n            [-92.354427, 33.034214],\n            [-92.131082, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 33.347567],\n            [-92.354427, 33.034214],\n            [-91.907738, 33.034214],\n            [-92.131082, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 33.347567],\n            [-91.907738, 33.034214],\n            [-91.684393, 33.347567],\n            [-92.131082, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 33.974274],\n            [-91.684393, 33.974274],\n            [-91.907738, 34.287627],\n            [-92.131082, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 33.974274],\n            [-91.907738, 34.287627],\n            [-92.354427, 34.287627],\n            [-92.131082, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 33.974274],\n            [-92.354427, 34.287627],\n            [-92.577771, 33.974274],\n            [-92.131082, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 33.974274],\n            [-92.577771, 33.974274],\n            [-92.354427, 33.66092],\n            [-92.131082, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 33.974274],\n            [-92.354427, 33.66092],\n            [-91.907738, 33.66092],\n            [-92.131082, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 33.974274],\n            [-91.907738, 33.66092],\n            [-91.684393, 33.974274],\n            [-92.131082, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 34.60098],\n            [-91.684393, 34.60098],\n            [-91.907738, 34.914333],\n            [-92.131082, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 34.60098],\n            [-91.907738, 34.914333],\n            [-92.354427, 34.914333],\n            [-92.131082, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 34.60098],\n            [-92.354427, 34.914333],\n            [-92.577771, 34.60098],\n            [-92.131082, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 34.60098],\n            [-92.577771, 34.60098],\n            [-92.354427, 34.287627],\n            [-92.131082, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 34.60098],\n            [-92.354427, 34.287627],\n            [-91.907738, 34.287627],\n            [-92.131082, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 34.60098],\n            [-91.907738, 34.287627],\n            [-91.684393, 34.60098],\n            [-92.131082, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 35.227686],\n            [-91.684393, 35.227686],\n            [-91.907738, 35.541039],\n            [-92.131082, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 35.227686],\n            [-91.907738, 35.541039],\n            [-92.354427, 35.541039],\n            [-92.131082, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 35.227686],\n            [-92.354427, 35.541039],\n            [-92.577771, 35.227686],\n            [-92.131082, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 35.227686],\n            [-92.577771, 35.227686],\n            [-92.354427, 34.914333],\n            [-92.131082, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 35.227686],\n            [-92.354427, 34.914333],\n            [-91.907738, 34.914333],\n            [-92.131082, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 35.227686],\n            [-91.907738, 34.914333],\n            [-91.684393, 35.227686],\n            [-92.131082, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 35.854392],\n            [-91.684393, 35.854392],\n            [-91.907738, 36.167745],\n            [-92.131082, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 35.854392],\n            [-91.907738, 36.167745],\n            [-92.354427, 36.167745],\n            [-92.131082, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 35.854392],\n            [-92.354427, 36.167745],\n            [-92.577771, 35.854392],\n            [-92.131082, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 35.854392],\n            [-92.577771, 35.854392],\n            [-92.354427, 35.541039],\n            [-92.131082, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 35.854392],\n            [-92.354427, 35.541039],\n            [-91.907738, 35.541039],\n            [-92.131082, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 35.854392],\n            [-91.907738, 35.541039],\n            [-91.684393, 35.854392],\n            [-92.131082, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 36.481098],\n            [-91.684393, 36.481098],\n            [-91.907738, 36.794451],\n            [-92.131082, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 36.481098],\n            [-91.907738, 36.794451],\n            [-92.354427, 36.794451],\n            [-92.131082, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 36.481098],\n            [-92.354427, 36.794451],\n            [-92.577771, 36.481098],\n            [-92.131082, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 36.481098],\n            [-92.577771, 36.481098],\n            [-92.354427, 36.167745],\n            [-92.131082, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 36.481098],\n            [-92.354427, 36.167745],\n            [-91.907738, 36.167745],\n            [-92.131082, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 36.481098],\n            [-91.907738, 36.167745],\n            [-91.684393, 36.481098],\n            [-92.131082, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 37.107804],\n            [-91.684393, 37.107804],\n            [-91.907738, 37.421157],\n            [-92.131082, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 37.107804],\n            [-91.907738, 37.421157],\n            [-92.354427, 37.421157],\n            [-92.131082, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 37.107804],\n            [-92.354427, 37.421157],\n            [-92.577771, 37.107804],\n            [-92.131082, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 37.107804],\n            [-92.577771, 37.107804],\n            [-92.354427, 36.794451],\n            [-92.131082, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 37.107804],\n            [-92.354427, 36.794451],\n            [-91.907738, 36.794451],\n            [-92.131082, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 37.107804],\n            [-91.907738, 36.794451],\n            [-91.684393, 37.107804],\n            [-92.131082, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 37.73451],\n            [-91.684393, 37.73451],\n            [-91.907738, 38.047863],\n            [-92.131082, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 37.73451],\n            [-91.907738, 38.047863],\n            [-92.354427, 38.047863],\n            [-92.131082, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 37.73451],\n            [-92.354427, 38.047863],\n            [-92.577771, 37.73451],\n            [-92.131082, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 37.73451],\n            [-92.577771, 37.73451],\n            [-92.354427, 37.421157],\n            [-92.131082, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 37.73451],\n            [-92.354427, 37.421157],\n            [-91.907738, 37.421157],\n            [-92.131082, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 37.73451],\n            [-91.907738, 37.421157],\n            [-91.684393, 37.73451],\n            [-92.131082, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 38.361217],\n            [-91.684393, 38.361217],\n            [-91.907738, 38.67457],\n            [-92.131082, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 38.361217],\n            [-91.907738, 38.67457],\n            [-92.354427, 38.67457],\n            [-92.131082, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 38.361217],\n            [-92.354427, 38.67457],\n            [-92.577771, 38.361217],\n            [-92.131082, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 38.361217],\n            [-92.577771, 38.361217],\n            [-92.354427, 38.047863],\n            [-92.131082, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 38.361217],\n            [-92.354427, 38.047863],\n            [-91.907738, 38.047863],\n            [-92.131082, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 38.361217],\n            [-91.907738, 38.047863],\n            [-91.684393, 38.361217],\n            [-92.131082, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 38.987923],\n            [-91.684393, 38.987923],\n            [-91.907738, 39.301276],\n            [-92.131082, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 38.987923],\n            [-91.907738, 39.301276],\n            [-92.354427, 39.301276],\n            [-92.131082, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 38.987923],\n            [-92.354427, 39.301276],\n            [-92.577771, 38.987923],\n            [-92.131082, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 38.987923],\n            [-92.577771, 38.987923],\n            [-92.354427, 38.67457],\n            [-92.131082, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 38.987923],\n            [-92.354427, 38.67457],\n            [-91.907738, 38.67457],\n            [-92.131082, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 38.987923],\n            [-91.907738, 38.67457],\n            [-91.684393, 38.987923],\n            [-92.131082, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 39.614629],\n            [-91.684393, 39.614629],\n            [-91.907738, 39.927982],\n            [-92.131082, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 39.614629],\n            [-91.907738, 39.927982],\n            [-92.354427, 39.927982],\n            [-92.131082, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 39.614629],\n            [-92.354427, 39.927982],\n            [-92.577771, 39.614629],\n            [-92.131082, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 39.614629],\n            [-92.577771, 39.614629],\n            [-92.354427, 39.301276],\n            [-92.131082, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 39.614629],\n            [-92.354427, 39.301276],\n            [-91.907738, 39.301276],\n            [-92.131082, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 39.614629],\n            [-91.907738, 39.301276],\n            [-91.684393, 39.614629],\n            [-92.131082, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 40.241335],\n            [-91.684393, 40.241335],\n            [-91.907738, 40.554688],\n            [-92.131082, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 40.241335],\n            [-91.907738, 40.554688],\n            [-92.354427, 40.554688],\n            [-92.131082, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 40.241335],\n            [-92.354427, 40.554688],\n            [-92.577771, 40.241335],\n            [-92.131082, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 40.241335],\n            [-92.577771, 40.241335],\n            [-92.354427, 39.927982],\n            [-92.131082, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 40.241335],\n            [-92.354427, 39.927982],\n            [-91.907738, 39.927982],\n            [-92.131082, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.131082, 40.241335],\n            [-91.907738, 39.927982],\n            [-91.684393, 40.241335],\n            [-92.131082, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 31.780802],\n            [-91.01436, 31.780802],\n            [-91.237704, 32.094155],\n            [-91.461049, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 31.780802],\n            [-91.237704, 32.094155],\n            [-91.684393, 32.094155],\n            [-91.461049, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 31.780802],\n            [-91.684393, 32.094155],\n            [-91.907738, 31.780802],\n            [-91.461049, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 31.780802],\n            [-91.907738, 31.780802],\n            [-91.684393, 31.467449],\n            [-91.461049, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 31.780802],\n            [-91.684393, 31.467449],\n            [-91.237704, 31.467449],\n            [-91.461049, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 31.780802],\n            [-91.237704, 31.467449],\n            [-91.01436, 31.780802],\n            [-91.461049, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 32.407508],\n            [-91.01436, 32.407508],\n            [-91.237704, 32.720861],\n            [-91.461049, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 32.407508],\n            [-91.237704, 32.720861],\n            [-91.684393, 32.720861],\n            [-91.461049, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 32.407508],\n            [-91.684393, 32.720861],\n            [-91.907738, 32.407508],\n            [-91.461049, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 32.407508],\n            [-91.907738, 32.407508],\n            [-91.684393, 32.094155],\n            [-91.461049, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 32.407508],\n            [-91.684393, 32.094155],\n            [-91.237704, 32.094155],\n            [-91.461049, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 32.407508],\n            [-91.237704, 32.094155],\n            [-91.01436, 32.407508],\n            [-91.461049, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 33.034214],\n            [-91.01436, 33.034214],\n            [-91.237704, 33.347567],\n            [-91.461049, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 33.034214],\n            [-91.237704, 33.347567],\n            [-91.684393, 33.347567],\n            [-91.461049, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 33.034214],\n            [-91.684393, 33.347567],\n            [-91.907738, 33.034214],\n            [-91.461049, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 33.034214],\n            [-91.907738, 33.034214],\n            [-91.684393, 32.720861],\n            [-91.461049, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 33.034214],\n            [-91.684393, 32.720861],\n            [-91.237704, 32.720861],\n            [-91.461049, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 33.034214],\n            [-91.237704, 32.720861],\n            [-91.01436, 33.034214],\n            [-91.461049, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 33.66092],\n            [-91.01436, 33.66092],\n            [-91.237704, 33.974274],\n            [-91.461049, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 33.66092],\n            [-91.237704, 33.974274],\n            [-91.684393, 33.974274],\n            [-91.461049, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 33.66092],\n            [-91.684393, 33.974274],\n            [-91.907738, 33.66092],\n            [-91.461049, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 33.66092],\n            [-91.907738, 33.66092],\n            [-91.684393, 33.347567],\n            [-91.461049, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 33.66092],\n            [-91.684393, 33.347567],\n            [-91.237704, 33.347567],\n            [-91.461049, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 33.66092],\n            [-91.237704, 33.347567],\n            [-91.01436, 33.66092],\n            [-91.461049, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 34.287627],\n            [-91.01436, 34.287627],\n            [-91.237704, 34.60098],\n            [-91.461049, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 34.287627],\n            [-91.237704, 34.60098],\n            [-91.684393, 34.60098],\n            [-91.461049, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 34.287627],\n            [-91.684393, 34.60098],\n            [-91.907738, 34.287627],\n            [-91.461049, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 34.287627],\n            [-91.907738, 34.287627],\n            [-91.684393, 33.974274],\n            [-91.461049, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 34.287627],\n            [-91.684393, 33.974274],\n            [-91.237704, 33.974274],\n            [-91.461049, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 34.287627],\n            [-91.237704, 33.974274],\n            [-91.01436, 34.287627],\n            [-91.461049, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 34.914333],\n            [-91.01436, 34.914333],\n            [-91.237704, 35.227686],\n            [-91.461049, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 34.914333],\n            [-91.237704, 35.227686],\n            [-91.684393, 35.227686],\n            [-91.461049, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 34.914333],\n            [-91.684393, 35.227686],\n            [-91.907738, 34.914333],\n            [-91.461049, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 34.914333],\n            [-91.907738, 34.914333],\n            [-91.684393, 34.60098],\n            [-91.461049, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 34.914333],\n            [-91.684393, 34.60098],\n            [-91.237704, 34.60098],\n            [-91.461049, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 34.914333],\n            [-91.237704, 34.60098],\n            [-91.01436, 34.914333],\n            [-91.461049, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 35.541039],\n            [-91.01436, 35.541039],\n            [-91.237704, 35.854392],\n            [-91.461049, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 35.541039],\n            [-91.237704, 35.854392],\n            [-91.684393, 35.854392],\n            [-91.461049, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 35.541039],\n            [-91.684393, 35.854392],\n            [-91.907738, 35.541039],\n            [-91.461049, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 35.541039],\n            [-91.907738, 35.541039],\n            [-91.684393, 35.227686],\n            [-91.461049, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 35.541039],\n            [-91.684393, 35.227686],\n            [-91.237704, 35.227686],\n            [-91.461049, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 35.541039],\n            [-91.237704, 35.227686],\n            [-91.01436, 35.541039],\n            [-91.461049, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 36.167745],\n            [-91.01436, 36.167745],\n            [-91.237704, 36.481098],\n            [-91.461049, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 36.167745],\n            [-91.237704, 36.481098],\n            [-91.684393, 36.481098],\n            [-91.461049, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 36.167745],\n            [-91.684393, 36.481098],\n            [-91.907738, 36.167745],\n            [-91.461049, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 36.167745],\n            [-91.907738, 36.167745],\n            [-91.684393, 35.854392],\n            [-91.461049, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 36.167745],\n            [-91.684393, 35.854392],\n            [-91.237704, 35.854392],\n            [-91.461049, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 36.167745],\n            [-91.237704, 35.854392],\n            [-91.01436, 36.167745],\n            [-91.461049, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 36.794451],\n            [-91.01436, 36.794451],\n            [-91.237704, 37.107804],\n            [-91.461049, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 36.794451],\n            [-91.237704, 37.107804],\n            [-91.684393, 37.107804],\n            [-91.461049, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 36.794451],\n            [-91.684393, 37.107804],\n            [-91.907738, 36.794451],\n            [-91.461049, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 36.794451],\n            [-91.907738, 36.794451],\n            [-91.684393, 36.481098],\n            [-91.461049, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 36.794451],\n            [-91.684393, 36.481098],\n            [-91.237704, 36.481098],\n            [-91.461049, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 36.794451],\n            [-91.237704, 36.481098],\n            [-91.01436, 36.794451],\n            [-91.461049, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 37.421157],\n            [-91.01436, 37.421157],\n            [-91.237704, 37.73451],\n            [-91.461049, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 37.421157],\n            [-91.237704, 37.73451],\n            [-91.684393, 37.73451],\n            [-91.461049, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 37.421157],\n            [-91.684393, 37.73451],\n            [-91.907738, 37.421157],\n            [-91.461049, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 37.421157],\n            [-91.907738, 37.421157],\n            [-91.684393, 37.107804],\n            [-91.461049, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 37.421157],\n            [-91.684393, 37.107804],\n            [-91.237704, 37.107804],\n            [-91.461049, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 37.421157],\n            [-91.237704, 37.107804],\n            [-91.01436, 37.421157],\n            [-91.461049, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 38.047863],\n            [-91.01436, 38.047863],\n            [-91.237704, 38.361217],\n            [-91.461049, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 38.047863],\n            [-91.237704, 38.361217],\n            [-91.684393, 38.361217],\n            [-91.461049, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 38.047863],\n            [-91.684393, 38.361217],\n            [-91.907738, 38.047863],\n            [-91.461049, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 38.047863],\n            [-91.907738, 38.047863],\n            [-91.684393, 37.73451],\n            [-91.461049, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 38.047863],\n            [-91.684393, 37.73451],\n            [-91.237704, 37.73451],\n            [-91.461049, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 38.047863],\n            [-91.237704, 37.73451],\n            [-91.01436, 38.047863],\n            [-91.461049, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 38.67457],\n            [-91.01436, 38.67457],\n            [-91.237704, 38.987923],\n            [-91.461049, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 38.67457],\n            [-91.237704, 38.987923],\n            [-91.684393, 38.987923],\n            [-91.461049, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 38.67457],\n            [-91.684393, 38.987923],\n            [-91.907738, 38.67457],\n            [-91.461049, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 38.67457],\n            [-91.907738, 38.67457],\n            [-91.684393, 38.361217],\n            [-91.461049, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 38.67457],\n            [-91.684393, 38.361217],\n            [-91.237704, 38.361217],\n            [-91.461049, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 38.67457],\n            [-91.237704, 38.361217],\n            [-91.01436, 38.67457],\n            [-91.461049, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 39.301276],\n            [-91.01436, 39.301276],\n            [-91.237704, 39.614629],\n            [-91.461049, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 39.301276],\n            [-91.237704, 39.614629],\n            [-91.684393, 39.614629],\n            [-91.461049, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 39.301276],\n            [-91.684393, 39.614629],\n            [-91.907738, 39.301276],\n            [-91.461049, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 39.301276],\n            [-91.907738, 39.301276],\n            [-91.684393, 38.987923],\n            [-91.461049, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 39.301276],\n            [-91.684393, 38.987923],\n            [-91.237704, 38.987923],\n            [-91.461049, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 39.301276],\n            [-91.237704, 38.987923],\n            [-91.01436, 39.301276],\n            [-91.461049, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 39.927982],\n            [-91.01436, 39.927982],\n            [-91.237704, 40.241335],\n            [-91.461049, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 39.927982],\n            [-91.237704, 40.241335],\n            [-91.684393, 40.241335],\n            [-91.461049, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 39.927982],\n            [-91.684393, 40.241335],\n            [-91.907738, 39.927982],\n            [-91.461049, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 39.927982],\n            [-91.907738, 39.927982],\n            [-91.684393, 39.614629],\n            [-91.461049, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 39.927982],\n            [-91.684393, 39.614629],\n            [-91.237704, 39.614629],\n            [-91.461049, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.461049, 39.927982],\n            [-91.237704, 39.614629],\n            [-91.01436, 39.927982],\n            [-91.461049, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 31.467449],\n            [-90.344327, 31.467449],\n            [-90.567671, 31.780802],\n            [-90.791016, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 31.467449],\n            [-90.567671, 31.780802],\n            [-91.01436, 31.780802],\n            [-90.791016, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 31.467449],\n            [-91.01436, 31.780802],\n            [-91.237704, 31.467449],\n            [-90.791016, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 31.467449],\n            [-91.237704, 31.467449],\n            [-91.01436, 31.154096],\n            [-90.791016, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 31.467449],\n            [-91.01436, 31.154096],\n            [-90.567671, 31.154096],\n            [-90.791016, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 31.467449],\n            [-90.567671, 31.154096],\n            [-90.344327, 31.467449],\n            [-90.791016, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 32.094155],\n            [-90.344327, 32.094155],\n            [-90.567671, 32.407508],\n            [-90.791016, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 32.094155],\n            [-90.567671, 32.407508],\n            [-91.01436, 32.407508],\n            [-90.791016, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 32.094155],\n            [-91.01436, 32.407508],\n            [-91.237704, 32.094155],\n            [-90.791016, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 32.094155],\n            [-91.237704, 32.094155],\n            [-91.01436, 31.780802],\n            [-90.791016, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 32.094155],\n            [-91.01436, 31.780802],\n            [-90.567671, 31.780802],\n            [-90.791016, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 32.094155],\n            [-90.567671, 31.780802],\n            [-90.344327, 32.094155],\n            [-90.791016, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 32.720861],\n            [-90.344327, 32.720861],\n            [-90.567671, 33.034214],\n            [-90.791016, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 32.720861],\n            [-90.567671, 33.034214],\n            [-91.01436, 33.034214],\n            [-90.791016, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 32.720861],\n            [-91.01436, 33.034214],\n            [-91.237704, 32.720861],\n            [-90.791016, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 32.720861],\n            [-91.237704, 32.720861],\n            [-91.01436, 32.407508],\n            [-90.791016, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 32.720861],\n            [-91.01436, 32.407508],\n            [-90.567671, 32.407508],\n            [-90.791016, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 32.720861],\n            [-90.567671, 32.407508],\n            [-90.344327, 32.720861],\n            [-90.791016, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 33.347567],\n            [-90.344327, 33.347567],\n            [-90.567671, 33.66092],\n            [-90.791016, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 33.347567],\n            [-90.567671, 33.66092],\n            [-91.01436, 33.66092],\n            [-90.791016, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 33.347567],\n            [-91.01436, 33.66092],\n            [-91.237704, 33.347567],\n            [-90.791016, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 33.347567],\n            [-91.237704, 33.347567],\n            [-91.01436, 33.034214],\n            [-90.791016, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 33.347567],\n            [-91.01436, 33.034214],\n            [-90.567671, 33.034214],\n            [-90.791016, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 33.347567],\n            [-90.567671, 33.034214],\n            [-90.344327, 33.347567],\n            [-90.791016, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 33.974274],\n            [-90.344327, 33.974274],\n            [-90.567671, 34.287627],\n            [-90.791016, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 33.974274],\n            [-90.567671, 34.287627],\n            [-91.01436, 34.287627],\n            [-90.791016, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 33.974274],\n            [-91.01436, 34.287627],\n            [-91.237704, 33.974274],\n            [-90.791016, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 33.974274],\n            [-91.237704, 33.974274],\n            [-91.01436, 33.66092],\n            [-90.791016, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 33.974274],\n            [-91.01436, 33.66092],\n            [-90.567671, 33.66092],\n            [-90.791016, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 33.974274],\n            [-90.567671, 33.66092],\n            [-90.344327, 33.974274],\n            [-90.791016, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 34.60098],\n            [-90.344327, 34.60098],\n            [-90.567671, 34.914333],\n            [-90.791016, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 34.60098],\n            [-90.567671, 34.914333],\n            [-91.01436, 34.914333],\n            [-90.791016, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 34.60098],\n            [-91.01436, 34.914333],\n            [-91.237704, 34.60098],\n            [-90.791016, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 34.60098],\n            [-91.237704, 34.60098],\n            [-91.01436, 34.287627],\n            [-90.791016, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 34.60098],\n            [-91.01436, 34.287627],\n            [-90.567671, 34.287627],\n            [-90.791016, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 34.60098],\n            [-90.567671, 34.287627],\n            [-90.344327, 34.60098],\n            [-90.791016, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 35.227686],\n            [-90.344327, 35.227686],\n            [-90.567671, 35.541039],\n            [-90.791016, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 35.227686],\n            [-90.567671, 35.541039],\n            [-91.01436, 35.541039],\n            [-90.791016, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 35.227686],\n            [-91.01436, 35.541039],\n            [-91.237704, 35.227686],\n            [-90.791016, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 35.227686],\n            [-91.237704, 35.227686],\n            [-91.01436, 34.914333],\n            [-90.791016, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 35.227686],\n            [-91.01436, 34.914333],\n            [-90.567671, 34.914333],\n            [-90.791016, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 35.227686],\n            [-90.567671, 34.914333],\n            [-90.344327, 35.227686],\n            [-90.791016, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 35.854392],\n            [-90.344327, 35.854392],\n            [-90.567671, 36.167745],\n            [-90.791016, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 35.854392],\n            [-90.567671, 36.167745],\n            [-91.01436, 36.167745],\n            [-90.791016, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 35.854392],\n            [-91.01436, 36.167745],\n            [-91.237704, 35.854392],\n            [-90.791016, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 35.854392],\n            [-91.237704, 35.854392],\n            [-91.01436, 35.541039],\n            [-90.791016, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 35.854392],\n            [-91.01436, 35.541039],\n            [-90.567671, 35.541039],\n            [-90.791016, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 35.854392],\n            [-90.567671, 35.541039],\n            [-90.344327, 35.854392],\n            [-90.791016, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 36.481098],\n            [-90.344327, 36.481098],\n            [-90.567671, 36.794451],\n            [-90.791016, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 36.481098],\n            [-90.567671, 36.794451],\n            [-91.01436, 36.794451],\n            [-90.791016, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 36.481098],\n            [-91.01436, 36.794451],\n            [-91.237704, 36.481098],\n            [-90.791016, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 36.481098],\n            [-91.237704, 36.481098],\n            [-91.01436, 36.167745],\n            [-90.791016, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 36.481098],\n            [-91.01436, 36.167745],\n            [-90.567671, 36.167745],\n            [-90.791016, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 36.481098],\n            [-90.567671, 36.167745],\n            [-90.344327, 36.481098],\n            [-90.791016, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 37.107804],\n            [-90.344327, 37.107804],\n            [-90.567671, 37.421157],\n            [-90.791016, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 37.107804],\n            [-90.567671, 37.421157],\n            [-91.01436, 37.421157],\n            [-90.791016, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 37.107804],\n            [-91.01436, 37.421157],\n            [-91.237704, 37.107804],\n            [-90.791016, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 37.107804],\n            [-91.237704, 37.107804],\n            [-91.01436, 36.794451],\n            [-90.791016, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 37.107804],\n            [-91.01436, 36.794451],\n            [-90.567671, 36.794451],\n            [-90.791016, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 37.107804],\n            [-90.567671, 36.794451],\n            [-90.344327, 37.107804],\n            [-90.791016, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 37.73451],\n            [-90.344327, 37.73451],\n            [-90.567671, 38.047863],\n            [-90.791016, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 37.73451],\n            [-90.567671, 38.047863],\n            [-91.01436, 38.047863],\n            [-90.791016, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 37.73451],\n            [-91.01436, 38.047863],\n            [-91.237704, 37.73451],\n            [-90.791016, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 37.73451],\n            [-91.237704, 37.73451],\n            [-91.01436, 37.421157],\n            [-90.791016, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 37.73451],\n            [-91.01436, 37.421157],\n            [-90.567671, 37.421157],\n            [-90.791016, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 37.73451],\n            [-90.567671, 37.421157],\n            [-90.344327, 37.73451],\n            [-90.791016, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 38.361217],\n            [-90.344327, 38.361217],\n            [-90.567671, 38.67457],\n            [-90.791016, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 38.361217],\n            [-90.567671, 38.67457],\n            [-91.01436, 38.67457],\n            [-90.791016, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 38.361217],\n            [-91.01436, 38.67457],\n            [-91.237704, 38.361217],\n            [-90.791016, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 38.361217],\n            [-91.237704, 38.361217],\n            [-91.01436, 38.047863],\n            [-90.791016, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 38.361217],\n            [-91.01436, 38.047863],\n            [-90.567671, 38.047863],\n            [-90.791016, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 38.361217],\n            [-90.567671, 38.047863],\n            [-90.344327, 38.361217],\n            [-90.791016, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 38.987923],\n            [-90.344327, 38.987923],\n            [-90.567671, 39.301276],\n            [-90.791016, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 38.987923],\n            [-90.567671, 39.301276],\n            [-91.01436, 39.301276],\n            [-90.791016, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 38.987923],\n            [-91.01436, 39.301276],\n            [-91.237704, 38.987923],\n            [-90.791016, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 38.987923],\n            [-91.237704, 38.987923],\n            [-91.01436, 38.67457],\n            [-90.791016, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 38.987923],\n            [-91.01436, 38.67457],\n            [-90.567671, 38.67457],\n            [-90.791016, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 38.987923],\n            [-90.567671, 38.67457],\n            [-90.344327, 38.987923],\n            [-90.791016, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 39.614629],\n            [-90.344327, 39.614629],\n            [-90.567671, 39.927982],\n            [-90.791016, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 39.614629],\n            [-90.567671, 39.927982],\n            [-91.01436, 39.927982],\n            [-90.791016, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 39.614629],\n            [-91.01436, 39.927982],\n            [-91.237704, 39.614629],\n            [-90.791016, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 39.614629],\n            [-91.237704, 39.614629],\n            [-91.01436, 39.301276],\n            [-90.791016, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 39.614629],\n            [-91.01436, 39.301276],\n            [-90.567671, 39.301276],\n            [-90.791016, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 39.614629],\n            [-90.567671, 39.301276],\n            [-90.344327, 39.614629],\n            [-90.791016, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 40.241335],\n            [-90.344327, 40.241335],\n            [-90.567671, 40.554688],\n            [-90.791016, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 40.241335],\n            [-90.567671, 40.554688],\n            [-91.01436, 40.554688],\n            [-90.791016, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 40.241335],\n            [-91.01436, 40.554688],\n            [-91.237704, 40.241335],\n            [-90.791016, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 40.241335],\n            [-91.237704, 40.241335],\n            [-91.01436, 39.927982],\n            [-90.791016, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 40.241335],\n            [-91.01436, 39.927982],\n            [-90.567671, 39.927982],\n            [-90.791016, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.791016, 40.241335],\n            [-90.567671, 39.927982],\n            [-90.344327, 40.241335],\n            [-90.791016, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 31.780802],\n            [-89.674294, 31.780802],\n            [-89.897638, 32.094155],\n            [-90.120982, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 31.780802],\n            [-89.897638, 32.094155],\n            [-90.344327, 32.094155],\n            [-90.120982, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 31.780802],\n            [-90.344327, 32.094155],\n            [-90.567671, 31.780802],\n            [-90.120982, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 31.780802],\n            [-90.567671, 31.780802],\n            [-90.344327, 31.467449],\n            [-90.120982, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 31.780802],\n            [-90.344327, 31.467449],\n            [-89.897638, 31.467449],\n            [-90.120982, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 31.780802],\n            [-89.897638, 31.467449],\n            [-89.674294, 31.780802],\n            [-90.120982, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 32.407508],\n            [-89.674294, 32.407508],\n            [-89.897638, 32.720861],\n            [-90.120982, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 32.407508],\n            [-89.897638, 32.720861],\n            [-90.344327, 32.720861],\n            [-90.120982, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 32.407508],\n            [-90.344327, 32.720861],\n            [-90.567671, 32.407508],\n            [-90.120982, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 32.407508],\n            [-90.567671, 32.407508],\n            [-90.344327, 32.094155],\n            [-90.120982, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 32.407508],\n            [-90.344327, 32.094155],\n            [-89.897638, 32.094155],\n            [-90.120982, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 32.407508],\n            [-89.897638, 32.094155],\n            [-89.674294, 32.407508],\n            [-90.120982, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 33.034214],\n            [-89.674294, 33.034214],\n            [-89.897638, 33.347567],\n            [-90.120982, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 33.034214],\n            [-89.897638, 33.347567],\n            [-90.344327, 33.347567],\n            [-90.120982, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 33.034214],\n            [-90.344327, 33.347567],\n            [-90.567671, 33.034214],\n            [-90.120982, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 33.034214],\n            [-90.567671, 33.034214],\n            [-90.344327, 32.720861],\n            [-90.120982, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 33.034214],\n            [-90.344327, 32.720861],\n            [-89.897638, 32.720861],\n            [-90.120982, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 33.034214],\n            [-89.897638, 32.720861],\n            [-89.674294, 33.034214],\n            [-90.120982, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 33.66092],\n            [-89.674294, 33.66092],\n            [-89.897638, 33.974274],\n            [-90.120982, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 33.66092],\n            [-89.897638, 33.974274],\n            [-90.344327, 33.974274],\n            [-90.120982, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 33.66092],\n            [-90.344327, 33.974274],\n            [-90.567671, 33.66092],\n            [-90.120982, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 33.66092],\n            [-90.567671, 33.66092],\n            [-90.344327, 33.347567],\n            [-90.120982, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 33.66092],\n            [-90.344327, 33.347567],\n            [-89.897638, 33.347567],\n            [-90.120982, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 33.66092],\n            [-89.897638, 33.347567],\n            [-89.674294, 33.66092],\n            [-90.120982, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 34.287627],\n            [-89.674294, 34.287627],\n            [-89.897638, 34.60098],\n            [-90.120982, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 34.287627],\n            [-89.897638, 34.60098],\n            [-90.344327, 34.60098],\n            [-90.120982, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 34.287627],\n            [-90.344327, 34.60098],\n            [-90.567671, 34.287627],\n            [-90.120982, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 34.287627],\n            [-90.567671, 34.287627],\n            [-90.344327, 33.974274],\n            [-90.120982, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 34.287627],\n            [-90.344327, 33.974274],\n            [-89.897638, 33.974274],\n            [-90.120982, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 34.287627],\n            [-89.897638, 33.974274],\n            [-89.674294, 34.287627],\n            [-90.120982, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 34.914333],\n            [-89.674294, 34.914333],\n            [-89.897638, 35.227686],\n            [-90.120982, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 34.914333],\n            [-89.897638, 35.227686],\n            [-90.344327, 35.227686],\n            [-90.120982, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 34.914333],\n            [-90.344327, 35.227686],\n            [-90.567671, 34.914333],\n            [-90.120982, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 34.914333],\n            [-90.567671, 34.914333],\n            [-90.344327, 34.60098],\n            [-90.120982, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 34.914333],\n            [-90.344327, 34.60098],\n            [-89.897638, 34.60098],\n            [-90.120982, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 34.914333],\n            [-89.897638, 34.60098],\n            [-89.674294, 34.914333],\n            [-90.120982, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 35.541039],\n            [-89.674294, 35.541039],\n            [-89.897638, 35.854392],\n            [-90.120982, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 35.541039],\n            [-89.897638, 35.854392],\n            [-90.344327, 35.854392],\n            [-90.120982, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 35.541039],\n            [-90.344327, 35.854392],\n            [-90.567671, 35.541039],\n            [-90.120982, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 35.541039],\n            [-90.567671, 35.541039],\n            [-90.344327, 35.227686],\n            [-90.120982, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 35.541039],\n            [-90.344327, 35.227686],\n            [-89.897638, 35.227686],\n            [-90.120982, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 35.541039],\n            [-89.897638, 35.227686],\n            [-89.674294, 35.541039],\n            [-90.120982, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 36.167745],\n            [-89.674294, 36.167745],\n            [-89.897638, 36.481098],\n            [-90.120982, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 36.167745],\n            [-89.897638, 36.481098],\n            [-90.344327, 36.481098],\n            [-90.120982, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 36.167745],\n            [-90.344327, 36.481098],\n            [-90.567671, 36.167745],\n            [-90.120982, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 36.167745],\n            [-90.567671, 36.167745],\n            [-90.344327, 35.854392],\n            [-90.120982, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 36.167745],\n            [-90.344327, 35.854392],\n            [-89.897638, 35.854392],\n            [-90.120982, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 36.167745],\n            [-89.897638, 35.854392],\n            [-89.674294, 36.167745],\n            [-90.120982, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 36.794451],\n            [-89.674294, 36.794451],\n            [-89.897638, 37.107804],\n            [-90.120982, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 36.794451],\n            [-89.897638, 37.107804],\n            [-90.344327, 37.107804],\n            [-90.120982, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 36.794451],\n            [-90.344327, 37.107804],\n            [-90.567671, 36.794451],\n            [-90.120982, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 36.794451],\n            [-90.567671, 36.794451],\n            [-90.344327, 36.481098],\n            [-90.120982, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 36.794451],\n            [-90.344327, 36.481098],\n            [-89.897638, 36.481098],\n            [-90.120982, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 36.794451],\n            [-89.897638, 36.481098],\n            [-89.674294, 36.794451],\n            [-90.120982, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 37.421157],\n            [-89.674294, 37.421157],\n            [-89.897638, 37.73451],\n            [-90.120982, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 37.421157],\n            [-89.897638, 37.73451],\n            [-90.344327, 37.73451],\n            [-90.120982, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 37.421157],\n            [-90.344327, 37.73451],\n            [-90.567671, 37.421157],\n            [-90.120982, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 37.421157],\n            [-90.567671, 37.421157],\n            [-90.344327, 37.107804],\n            [-90.120982, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 37.421157],\n            [-90.344327, 37.107804],\n            [-89.897638, 37.107804],\n            [-90.120982, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 37.421157],\n            [-89.897638, 37.107804],\n            [-89.674294, 37.421157],\n            [-90.120982, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 38.047863],\n            [-89.674294, 38.047863],\n            [-89.897638, 38.361217],\n            [-90.120982, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 38.047863],\n            [-89.897638, 38.361217],\n            [-90.344327, 38.361217],\n            [-90.120982, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 38.047863],\n            [-90.344327, 38.361217],\n            [-90.567671, 38.047863],\n            [-90.120982, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 38.047863],\n            [-90.567671, 38.047863],\n            [-90.344327, 37.73451],\n            [-90.120982, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 38.047863],\n            [-90.344327, 37.73451],\n            [-89.897638, 37.73451],\n            [-90.120982, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 38.047863],\n            [-89.897638, 37.73451],\n            [-89.674294, 38.047863],\n            [-90.120982, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 38.67457],\n            [-89.674294, 38.67457],\n            [-89.897638, 38.987923],\n            [-90.120982, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 38.67457],\n            [-89.897638, 38.987923],\n            [-90.344327, 38.987923],\n            [-90.120982, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 38.67457],\n            [-90.344327, 38.987923],\n            [-90.567671, 38.67457],\n            [-90.120982, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 38.67457],\n            [-90.567671, 38.67457],\n            [-90.344327, 38.361217],\n            [-90.120982, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 38.67457],\n            [-90.344327, 38.361217],\n            [-89.897638, 38.361217],\n            [-90.120982, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 38.67457],\n            [-89.897638, 38.361217],\n            [-89.674294, 38.67457],\n            [-90.120982, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 39.301276],\n            [-89.674294, 39.301276],\n            [-89.897638, 39.614629],\n            [-90.120982, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 39.301276],\n            [-89.897638, 39.614629],\n            [-90.344327, 39.614629],\n            [-90.120982, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 39.301276],\n            [-90.344327, 39.614629],\n            [-90.567671, 39.301276],\n            [-90.120982, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 39.301276],\n            [-90.567671, 39.301276],\n            [-90.344327, 38.987923],\n            [-90.120982, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 39.301276],\n            [-90.344327, 38.987923],\n            [-89.897638, 38.987923],\n            [-90.120982, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 39.301276],\n            [-89.897638, 38.987923],\n            [-89.674294, 39.301276],\n            [-90.120982, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 39.927982],\n            [-89.674294, 39.927982],\n            [-89.897638, 40.241335],\n            [-90.120982, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 39.927982],\n            [-89.897638, 40.241335],\n            [-90.344327, 40.241335],\n            [-90.120982, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 39.927982],\n            [-90.344327, 40.241335],\n            [-90.567671, 39.927982],\n            [-90.120982, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 39.927982],\n            [-90.567671, 39.927982],\n            [-90.344327, 39.614629],\n            [-90.120982, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 39.927982],\n            [-90.344327, 39.614629],\n            [-89.897638, 39.614629],\n            [-90.120982, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.120982, 39.927982],\n            [-89.897638, 39.614629],\n            [-89.674294, 39.927982],\n            [-90.120982, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 31.467449],\n            [-89.00426, 31.467449],\n            [-89.227605, 31.780802],\n            [-89.450949, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 31.467449],\n            [-89.227605, 31.780802],\n            [-89.674294, 31.780802],\n            [-89.450949, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 31.467449],\n            [-89.674294, 31.780802],\n            [-89.897638, 31.467449],\n            [-89.450949, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 31.467449],\n            [-89.897638, 31.467449],\n            [-89.674294, 31.154096],\n            [-89.450949, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 31.467449],\n            [-89.674294, 31.154096],\n            [-89.227605, 31.154096],\n            [-89.450949, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 31.467449],\n            [-89.227605, 31.154096],\n            [-89.00426, 31.467449],\n            [-89.450949, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 32.094155],\n            [-89.00426, 32.094155],\n            [-89.227605, 32.407508],\n            [-89.450949, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 32.094155],\n            [-89.227605, 32.407508],\n            [-89.674294, 32.407508],\n            [-89.450949, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 32.094155],\n            [-89.674294, 32.407508],\n            [-89.897638, 32.094155],\n            [-89.450949, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 32.094155],\n            [-89.897638, 32.094155],\n            [-89.674294, 31.780802],\n            [-89.450949, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 32.094155],\n            [-89.674294, 31.780802],\n            [-89.227605, 31.780802],\n            [-89.450949, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 32.094155],\n            [-89.227605, 31.780802],\n            [-89.00426, 32.094155],\n            [-89.450949, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 32.720861],\n            [-89.00426, 32.720861],\n            [-89.227605, 33.034214],\n            [-89.450949, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 32.720861],\n            [-89.227605, 33.034214],\n            [-89.674294, 33.034214],\n            [-89.450949, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 32.720861],\n            [-89.674294, 33.034214],\n            [-89.897638, 32.720861],\n            [-89.450949, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 32.720861],\n            [-89.897638, 32.720861],\n            [-89.674294, 32.407508],\n            [-89.450949, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 32.720861],\n            [-89.674294, 32.407508],\n            [-89.227605, 32.407508],\n            [-89.450949, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 32.720861],\n            [-89.227605, 32.407508],\n            [-89.00426, 32.720861],\n            [-89.450949, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 33.347567],\n            [-89.00426, 33.347567],\n            [-89.227605, 33.66092],\n            [-89.450949, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 33.347567],\n            [-89.227605, 33.66092],\n            [-89.674294, 33.66092],\n            [-89.450949, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 33.347567],\n            [-89.674294, 33.66092],\n            [-89.897638, 33.347567],\n            [-89.450949, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 33.347567],\n            [-89.897638, 33.347567],\n            [-89.674294, 33.034214],\n            [-89.450949, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 33.347567],\n            [-89.674294, 33.034214],\n            [-89.227605, 33.034214],\n            [-89.450949, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 33.347567],\n            [-89.227605, 33.034214],\n            [-89.00426, 33.347567],\n            [-89.450949, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 33.974274],\n            [-89.00426, 33.974274],\n            [-89.227605, 34.287627],\n            [-89.450949, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 33.974274],\n            [-89.227605, 34.287627],\n            [-89.674294, 34.287627],\n            [-89.450949, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 33.974274],\n            [-89.674294, 34.287627],\n            [-89.897638, 33.974274],\n            [-89.450949, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 33.974274],\n            [-89.897638, 33.974274],\n            [-89.674294, 33.66092],\n            [-89.450949, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 33.974274],\n            [-89.674294, 33.66092],\n            [-89.227605, 33.66092],\n            [-89.450949, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 33.974274],\n            [-89.227605, 33.66092],\n            [-89.00426, 33.974274],\n            [-89.450949, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 34.60098],\n            [-89.00426, 34.60098],\n            [-89.227605, 34.914333],\n            [-89.450949, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 34.60098],\n            [-89.227605, 34.914333],\n            [-89.674294, 34.914333],\n            [-89.450949, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 34.60098],\n            [-89.674294, 34.914333],\n            [-89.897638, 34.60098],\n            [-89.450949, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 34.60098],\n            [-89.897638, 34.60098],\n            [-89.674294, 34.287627],\n            [-89.450949, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 34.60098],\n            [-89.674294, 34.287627],\n            [-89.227605, 34.287627],\n            [-89.450949, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 34.60098],\n            [-89.227605, 34.287627],\n            [-89.00426, 34.60098],\n            [-89.450949, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 35.227686],\n            [-89.00426, 35.227686],\n            [-89.227605, 35.541039],\n            [-89.450949, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 35.227686],\n            [-89.227605, 35.541039],\n            [-89.674294, 35.541039],\n            [-89.450949, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 35.227686],\n            [-89.674294, 35.541039],\n            [-89.897638, 35.227686],\n            [-89.450949, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 35.227686],\n            [-89.897638, 35.227686],\n            [-89.674294, 34.914333],\n            [-89.450949, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 35.227686],\n            [-89.674294, 34.914333],\n            [-89.227605, 34.914333],\n            [-89.450949, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 35.227686],\n            [-89.227605, 34.914333],\n            [-89.00426, 35.227686],\n            [-89.450949, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 35.854392],\n            [-89.00426, 35.854392],\n            [-89.227605, 36.167745],\n            [-89.450949, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 35.854392],\n            [-89.227605, 36.167745],\n            [-89.674294, 36.167745],\n            [-89.450949, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 35.854392],\n            [-89.674294, 36.167745],\n            [-89.897638, 35.854392],\n            [-89.450949, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 35.854392],\n            [-89.897638, 35.854392],\n            [-89.674294, 35.541039],\n            [-89.450949, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 35.854392],\n            [-89.674294, 35.541039],\n            [-89.227605, 35.541039],\n            [-89.450949, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 35.854392],\n            [-89.227605, 35.541039],\n            [-89.00426, 35.854392],\n            [-89.450949, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 36.481098],\n            [-89.00426, 36.481098],\n            [-89.227605, 36.794451],\n            [-89.450949, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 36.481098],\n            [-89.227605, 36.794451],\n            [-89.674294, 36.794451],\n            [-89.450949, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 36.481098],\n            [-89.674294, 36.794451],\n            [-89.897638, 36.481098],\n            [-89.450949, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 36.481098],\n            [-89.897638, 36.481098],\n            [-89.674294, 36.167745],\n            [-89.450949, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 36.481098],\n            [-89.674294, 36.167745],\n            [-89.227605, 36.167745],\n            [-89.450949, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 36.481098],\n            [-89.227605, 36.167745],\n            [-89.00426, 36.481098],\n            [-89.450949, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 37.107804],\n            [-89.00426, 37.107804],\n            [-89.227605, 37.421157],\n            [-89.450949, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 37.107804],\n            [-89.227605, 37.421157],\n            [-89.674294, 37.421157],\n            [-89.450949, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 37.107804],\n            [-89.674294, 37.421157],\n            [-89.897638, 37.107804],\n            [-89.450949, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 37.107804],\n            [-89.897638, 37.107804],\n            [-89.674294, 36.794451],\n            [-89.450949, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 37.107804],\n            [-89.674294, 36.794451],\n            [-89.227605, 36.794451],\n            [-89.450949, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 37.107804],\n            [-89.227605, 36.794451],\n            [-89.00426, 37.107804],\n            [-89.450949, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 37.73451],\n            [-89.00426, 37.73451],\n            [-89.227605, 38.047863],\n            [-89.450949, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 37.73451],\n            [-89.227605, 38.047863],\n            [-89.674294, 38.047863],\n            [-89.450949, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 37.73451],\n            [-89.674294, 38.047863],\n            [-89.897638, 37.73451],\n            [-89.450949, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 37.73451],\n            [-89.897638, 37.73451],\n            [-89.674294, 37.421157],\n            [-89.450949, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 37.73451],\n            [-89.674294, 37.421157],\n            [-89.227605, 37.421157],\n            [-89.450949, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 37.73451],\n            [-89.227605, 37.421157],\n            [-89.00426, 37.73451],\n            [-89.450949, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 38.361217],\n            [-89.00426, 38.361217],\n            [-89.227605, 38.67457],\n            [-89.450949, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 38.361217],\n            [-89.227605, 38.67457],\n            [-89.674294, 38.67457],\n            [-89.450949, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 38.361217],\n            [-89.674294, 38.67457],\n            [-89.897638, 38.361217],\n            [-89.450949, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 38.361217],\n            [-89.897638, 38.361217],\n            [-89.674294, 38.047863],\n            [-89.450949, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 38.361217],\n            [-89.674294, 38.047863],\n            [-89.227605, 38.047863],\n            [-89.450949, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 38.361217],\n            [-89.227605, 38.047863],\n            [-89.00426, 38.361217],\n            [-89.450949, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 38.987923],\n            [-89.00426, 38.987923],\n            [-89.227605, 39.301276],\n            [-89.450949, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 38.987923],\n            [-89.227605, 39.301276],\n            [-89.674294, 39.301276],\n            [-89.450949, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 38.987923],\n            [-89.674294, 39.301276],\n            [-89.897638, 38.987923],\n            [-89.450949, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 38.987923],\n            [-89.897638, 38.987923],\n            [-89.674294, 38.67457],\n            [-89.450949, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 38.987923],\n            [-89.674294, 38.67457],\n            [-89.227605, 38.67457],\n            [-89.450949, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 38.987923],\n            [-89.227605, 38.67457],\n            [-89.00426, 38.987923],\n            [-89.450949, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 39.614629],\n            [-89.00426, 39.614629],\n            [-89.227605, 39.927982],\n            [-89.450949, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 39.614629],\n            [-89.227605, 39.927982],\n            [-89.674294, 39.927982],\n            [-89.450949, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 39.614629],\n            [-89.674294, 39.927982],\n            [-89.897638, 39.614629],\n            [-89.450949, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 39.614629],\n            [-89.897638, 39.614629],\n            [-89.674294, 39.301276],\n            [-89.450949, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 39.614629],\n            [-89.674294, 39.301276],\n            [-89.227605, 39.301276],\n            [-89.450949, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 39.614629],\n            [-89.227605, 39.301276],\n            [-89.00426, 39.614629],\n            [-89.450949, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 40.241335],\n            [-89.00426, 40.241335],\n            [-89.227605, 40.554688],\n            [-89.450949, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 40.241335],\n            [-89.227605, 40.554688],\n            [-89.674294, 40.554688],\n            [-89.450949, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 40.241335],\n            [-89.674294, 40.554688],\n            [-89.897638, 40.241335],\n            [-89.450949, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 40.241335],\n            [-89.897638, 40.241335],\n            [-89.674294, 39.927982],\n            [-89.450949, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 40.241335],\n            [-89.674294, 39.927982],\n            [-89.227605, 39.927982],\n            [-89.450949, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.450949, 40.241335],\n            [-89.227605, 39.927982],\n            [-89.00426, 40.241335],\n            [-89.450949, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 31.780802],\n            [-88.334227, 31.780802],\n            [-88.557572, 32.094155],\n            [-88.780916, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 31.780802],\n            [-88.557572, 32.094155],\n            [-89.00426, 32.094155],\n            [-88.780916, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 31.780802],\n            [-89.00426, 32.094155],\n            [-89.227605, 31.780802],\n            [-88.780916, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 31.780802],\n            [-89.227605, 31.780802],\n            [-89.00426, 31.467449],\n            [-88.780916, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 31.780802],\n            [-89.00426, 31.467449],\n            [-88.557572, 31.467449],\n            [-88.780916, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 31.780802],\n            [-88.557572, 31.467449],\n            [-88.334227, 31.780802],\n            [-88.780916, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 32.407508],\n            [-88.334227, 32.407508],\n            [-88.557572, 32.720861],\n            [-88.780916, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 32.407508],\n            [-88.557572, 32.720861],\n            [-89.00426, 32.720861],\n            [-88.780916, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 32.407508],\n            [-89.00426, 32.720861],\n            [-89.227605, 32.407508],\n            [-88.780916, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 32.407508],\n            [-89.227605, 32.407508],\n            [-89.00426, 32.094155],\n            [-88.780916, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 32.407508],\n            [-89.00426, 32.094155],\n            [-88.557572, 32.094155],\n            [-88.780916, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 32.407508],\n            [-88.557572, 32.094155],\n            [-88.334227, 32.407508],\n            [-88.780916, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 33.034214],\n            [-88.334227, 33.034214],\n            [-88.557572, 33.347567],\n            [-88.780916, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 33.034214],\n            [-88.557572, 33.347567],\n            [-89.00426, 33.347567],\n            [-88.780916, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 33.034214],\n            [-89.00426, 33.347567],\n            [-89.227605, 33.034214],\n            [-88.780916, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 33.034214],\n            [-89.227605, 33.034214],\n            [-89.00426, 32.720861],\n            [-88.780916, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 33.034214],\n            [-89.00426, 32.720861],\n            [-88.557572, 32.720861],\n            [-88.780916, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 33.034214],\n            [-88.557572, 32.720861],\n            [-88.334227, 33.034214],\n            [-88.780916, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 33.66092],\n            [-88.334227, 33.66092],\n            [-88.557572, 33.974274],\n            [-88.780916, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 33.66092],\n            [-88.557572, 33.974274],\n            [-89.00426, 33.974274],\n            [-88.780916, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 33.66092],\n            [-89.00426, 33.974274],\n            [-89.227605, 33.66092],\n            [-88.780916, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 33.66092],\n            [-89.227605, 33.66092],\n            [-89.00426, 33.347567],\n            [-88.780916, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 33.66092],\n            [-89.00426, 33.347567],\n            [-88.557572, 33.347567],\n            [-88.780916, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 33.66092],\n            [-88.557572, 33.347567],\n            [-88.334227, 33.66092],\n            [-88.780916, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 34.287627],\n            [-88.334227, 34.287627],\n            [-88.557572, 34.60098],\n            [-88.780916, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 34.287627],\n            [-88.557572, 34.60098],\n            [-89.00426, 34.60098],\n            [-88.780916, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 34.287627],\n            [-89.00426, 34.60098],\n            [-89.227605, 34.287627],\n            [-88.780916, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 34.287627],\n            [-89.227605, 34.287627],\n            [-89.00426, 33.974274],\n            [-88.780916, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 34.287627],\n            [-89.00426, 33.974274],\n            [-88.557572, 33.974274],\n            [-88.780916, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 34.287627],\n            [-88.557572, 33.974274],\n            [-88.334227, 34.287627],\n            [-88.780916, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 34.914333],\n            [-88.334227, 34.914333],\n            [-88.557572, 35.227686],\n            [-88.780916, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 34.914333],\n            [-88.557572, 35.227686],\n            [-89.00426, 35.227686],\n            [-88.780916, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 34.914333],\n            [-89.00426, 35.227686],\n            [-89.227605, 34.914333],\n            [-88.780916, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 34.914333],\n            [-89.227605, 34.914333],\n            [-89.00426, 34.60098],\n            [-88.780916, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 34.914333],\n            [-89.00426, 34.60098],\n            [-88.557572, 34.60098],\n            [-88.780916, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 34.914333],\n            [-88.557572, 34.60098],\n            [-88.334227, 34.914333],\n            [-88.780916, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 35.541039],\n            [-88.334227, 35.541039],\n            [-88.557572, 35.854392],\n            [-88.780916, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 35.541039],\n            [-88.557572, 35.854392],\n            [-89.00426, 35.854392],\n            [-88.780916, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 35.541039],\n            [-89.00426, 35.854392],\n            [-89.227605, 35.541039],\n            [-88.780916, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 35.541039],\n            [-89.227605, 35.541039],\n            [-89.00426, 35.227686],\n            [-88.780916, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 35.541039],\n            [-89.00426, 35.227686],\n            [-88.557572, 35.227686],\n            [-88.780916, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 35.541039],\n            [-88.557572, 35.227686],\n            [-88.334227, 35.541039],\n            [-88.780916, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 36.167745],\n            [-88.334227, 36.167745],\n            [-88.557572, 36.481098],\n            [-88.780916, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 36.167745],\n            [-88.557572, 36.481098],\n            [-89.00426, 36.481098],\n            [-88.780916, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 36.167745],\n            [-89.00426, 36.481098],\n            [-89.227605, 36.167745],\n            [-88.780916, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 36.167745],\n            [-89.227605, 36.167745],\n            [-89.00426, 35.854392],\n            [-88.780916, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 36.167745],\n            [-89.00426, 35.854392],\n            [-88.557572, 35.854392],\n            [-88.780916, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 36.167745],\n            [-88.557572, 35.854392],\n            [-88.334227, 36.167745],\n            [-88.780916, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 36.794451],\n            [-88.334227, 36.794451],\n            [-88.557572, 37.107804],\n            [-88.780916, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 36.794451],\n            [-88.557572, 37.107804],\n            [-89.00426, 37.107804],\n            [-88.780916, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 36.794451],\n            [-89.00426, 37.107804],\n            [-89.227605, 36.794451],\n            [-88.780916, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 36.794451],\n            [-89.227605, 36.794451],\n            [-89.00426, 36.481098],\n            [-88.780916, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 36.794451],\n            [-89.00426, 36.481098],\n            [-88.557572, 36.481098],\n            [-88.780916, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 36.794451],\n            [-88.557572, 36.481098],\n            [-88.334227, 36.794451],\n            [-88.780916, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 37.421157],\n            [-88.334227, 37.421157],\n            [-88.557572, 37.73451],\n            [-88.780916, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 37.421157],\n            [-88.557572, 37.73451],\n            [-89.00426, 37.73451],\n            [-88.780916, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 37.421157],\n            [-89.00426, 37.73451],\n            [-89.227605, 37.421157],\n            [-88.780916, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 37.421157],\n            [-89.227605, 37.421157],\n            [-89.00426, 37.107804],\n            [-88.780916, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 37.421157],\n            [-89.00426, 37.107804],\n            [-88.557572, 37.107804],\n            [-88.780916, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 37.421157],\n            [-88.557572, 37.107804],\n            [-88.334227, 37.421157],\n            [-88.780916, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 38.047863],\n            [-88.334227, 38.047863],\n            [-88.557572, 38.361217],\n            [-88.780916, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 38.047863],\n            [-88.557572, 38.361217],\n            [-89.00426, 38.361217],\n            [-88.780916, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 38.047863],\n            [-89.00426, 38.361217],\n            [-89.227605, 38.047863],\n            [-88.780916, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 38.047863],\n            [-89.227605, 38.047863],\n            [-89.00426, 37.73451],\n            [-88.780916, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 38.047863],\n            [-89.00426, 37.73451],\n            [-88.557572, 37.73451],\n            [-88.780916, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 38.047863],\n            [-88.557572, 37.73451],\n            [-88.334227, 38.047863],\n            [-88.780916, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 38.67457],\n            [-88.334227, 38.67457],\n            [-88.557572, 38.987923],\n            [-88.780916, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 38.67457],\n            [-88.557572, 38.987923],\n            [-89.00426, 38.987923],\n            [-88.780916, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 38.67457],\n            [-89.00426, 38.987923],\n            [-89.227605, 38.67457],\n            [-88.780916, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 38.67457],\n            [-89.227605, 38.67457],\n            [-89.00426, 38.361217],\n            [-88.780916, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 38.67457],\n            [-89.00426, 38.361217],\n            [-88.557572, 38.361217],\n            [-88.780916, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 38.67457],\n            [-88.557572, 38.361217],\n            [-88.334227, 38.67457],\n            [-88.780916, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 39.301276],\n            [-88.334227, 39.301276],\n            [-88.557572, 39.614629],\n            [-88.780916, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 39.301276],\n            [-88.557572, 39.614629],\n            [-89.00426, 39.614629],\n            [-88.780916, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 39.301276],\n            [-89.00426, 39.614629],\n            [-89.227605, 39.301276],\n            [-88.780916, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 39.301276],\n            [-89.227605, 39.301276],\n            [-89.00426, 38.987923],\n            [-88.780916, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 39.301276],\n            [-89.00426, 38.987923],\n            [-88.557572, 38.987923],\n            [-88.780916, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 39.301276],\n            [-88.557572, 38.987923],\n            [-88.334227, 39.301276],\n            [-88.780916, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 39.927982],\n            [-88.334227, 39.927982],\n            [-88.557572, 40.241335],\n            [-88.780916, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 39.927982],\n            [-88.557572, 40.241335],\n            [-89.00426, 40.241335],\n            [-88.780916, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 39.927982],\n            [-89.00426, 40.241335],\n            [-89.227605, 39.927982],\n            [-88.780916, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 39.927982],\n            [-89.227605, 39.927982],\n            [-89.00426, 39.614629],\n            [-88.780916, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 39.927982],\n            [-89.00426, 39.614629],\n            [-88.557572, 39.614629],\n            [-88.780916, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.780916, 39.927982],\n            [-88.557572, 39.614629],\n            [-88.334227, 39.927982],\n            [-88.780916, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 31.467449],\n            [-87.664194, 31.467449],\n            [-87.887538, 31.780802],\n            [-88.110883, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 31.467449],\n            [-87.887538, 31.780802],\n            [-88.334227, 31.780802],\n            [-88.110883, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 31.467449],\n            [-88.334227, 31.780802],\n            [-88.557572, 31.467449],\n            [-88.110883, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 31.467449],\n            [-88.557572, 31.467449],\n            [-88.334227, 31.154096],\n            [-88.110883, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 31.467449],\n            [-88.334227, 31.154096],\n            [-87.887538, 31.154096],\n            [-88.110883, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 31.467449],\n            [-87.887538, 31.154096],\n            [-87.664194, 31.467449],\n            [-88.110883, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 32.094155],\n            [-87.664194, 32.094155],\n            [-87.887538, 32.407508],\n            [-88.110883, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 32.094155],\n            [-87.887538, 32.407508],\n            [-88.334227, 32.407508],\n            [-88.110883, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 32.094155],\n            [-88.334227, 32.407508],\n            [-88.557572, 32.094155],\n            [-88.110883, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 32.094155],\n            [-88.557572, 32.094155],\n            [-88.334227, 31.780802],\n            [-88.110883, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 32.094155],\n            [-88.334227, 31.780802],\n            [-87.887538, 31.780802],\n            [-88.110883, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 32.094155],\n            [-87.887538, 31.780802],\n            [-87.664194, 32.094155],\n            [-88.110883, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 32.720861],\n            [-87.664194, 32.720861],\n            [-87.887538, 33.034214],\n            [-88.110883, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 32.720861],\n            [-87.887538, 33.034214],\n            [-88.334227, 33.034214],\n            [-88.110883, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 32.720861],\n            [-88.334227, 33.034214],\n            [-88.557572, 32.720861],\n            [-88.110883, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 32.720861],\n            [-88.557572, 32.720861],\n            [-88.334227, 32.407508],\n            [-88.110883, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 32.720861],\n            [-88.334227, 32.407508],\n            [-87.887538, 32.407508],\n            [-88.110883, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 32.720861],\n            [-87.887538, 32.407508],\n            [-87.664194, 32.720861],\n            [-88.110883, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 33.347567],\n            [-87.664194, 33.347567],\n            [-87.887538, 33.66092],\n            [-88.110883, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 33.347567],\n            [-87.887538, 33.66092],\n            [-88.334227, 33.66092],\n            [-88.110883, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 33.347567],\n            [-88.334227, 33.66092],\n            [-88.557572, 33.347567],\n            [-88.110883, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 33.347567],\n            [-88.557572, 33.347567],\n            [-88.334227, 33.034214],\n            [-88.110883, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 33.347567],\n            [-88.334227, 33.034214],\n            [-87.887538, 33.034214],\n            [-88.110883, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 33.347567],\n            [-87.887538, 33.034214],\n            [-87.664194, 33.347567],\n            [-88.110883, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 33.974274],\n            [-87.664194, 33.974274],\n            [-87.887538, 34.287627],\n            [-88.110883, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 33.974274],\n            [-87.887538, 34.287627],\n            [-88.334227, 34.287627],\n            [-88.110883, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 33.974274],\n            [-88.334227, 34.287627],\n            [-88.557572, 33.974274],\n            [-88.110883, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 33.974274],\n            [-88.557572, 33.974274],\n            [-88.334227, 33.66092],\n            [-88.110883, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 33.974274],\n            [-88.334227, 33.66092],\n            [-87.887538, 33.66092],\n            [-88.110883, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 33.974274],\n            [-87.887538, 33.66092],\n            [-87.664194, 33.974274],\n            [-88.110883, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 34.60098],\n            [-87.664194, 34.60098],\n            [-87.887538, 34.914333],\n            [-88.110883, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 34.60098],\n            [-87.887538, 34.914333],\n            [-88.334227, 34.914333],\n            [-88.110883, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 34.60098],\n            [-88.334227, 34.914333],\n            [-88.557572, 34.60098],\n            [-88.110883, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 34.60098],\n            [-88.557572, 34.60098],\n            [-88.334227, 34.287627],\n            [-88.110883, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 34.60098],\n            [-88.334227, 34.287627],\n            [-87.887538, 34.287627],\n            [-88.110883, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 34.60098],\n            [-87.887538, 34.287627],\n            [-87.664194, 34.60098],\n            [-88.110883, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 35.227686],\n            [-87.664194, 35.227686],\n            [-87.887538, 35.541039],\n            [-88.110883, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 35.227686],\n            [-87.887538, 35.541039],\n            [-88.334227, 35.541039],\n            [-88.110883, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 35.227686],\n            [-88.334227, 35.541039],\n            [-88.557572, 35.227686],\n            [-88.110883, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 35.227686],\n            [-88.557572, 35.227686],\n            [-88.334227, 34.914333],\n            [-88.110883, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 35.227686],\n            [-88.334227, 34.914333],\n            [-87.887538, 34.914333],\n            [-88.110883, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 35.227686],\n            [-87.887538, 34.914333],\n            [-87.664194, 35.227686],\n            [-88.110883, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 35.854392],\n            [-87.664194, 35.854392],\n            [-87.887538, 36.167745],\n            [-88.110883, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 35.854392],\n            [-87.887538, 36.167745],\n            [-88.334227, 36.167745],\n            [-88.110883, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 35.854392],\n            [-88.334227, 36.167745],\n            [-88.557572, 35.854392],\n            [-88.110883, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 35.854392],\n            [-88.557572, 35.854392],\n            [-88.334227, 35.541039],\n            [-88.110883, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 35.854392],\n            [-88.334227, 35.541039],\n            [-87.887538, 35.541039],\n            [-88.110883, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 35.854392],\n            [-87.887538, 35.541039],\n            [-87.664194, 35.854392],\n            [-88.110883, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 36.481098],\n            [-87.664194, 36.481098],\n            [-87.887538, 36.794451],\n            [-88.110883, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 36.481098],\n            [-87.887538, 36.794451],\n            [-88.334227, 36.794451],\n            [-88.110883, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 36.481098],\n            [-88.334227, 36.794451],\n            [-88.557572, 36.481098],\n            [-88.110883, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 36.481098],\n            [-88.557572, 36.481098],\n            [-88.334227, 36.167745],\n            [-88.110883, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 36.481098],\n            [-88.334227, 36.167745],\n            [-87.887538, 36.167745],\n            [-88.110883, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 36.481098],\n            [-87.887538, 36.167745],\n            [-87.664194, 36.481098],\n            [-88.110883, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 37.107804],\n            [-87.664194, 37.107804],\n            [-87.887538, 37.421157],\n            [-88.110883, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 37.107804],\n            [-87.887538, 37.421157],\n            [-88.334227, 37.421157],\n            [-88.110883, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 37.107804],\n            [-88.334227, 37.421157],\n            [-88.557572, 37.107804],\n            [-88.110883, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 37.107804],\n            [-88.557572, 37.107804],\n            [-88.334227, 36.794451],\n            [-88.110883, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 37.107804],\n            [-88.334227, 36.794451],\n            [-87.887538, 36.794451],\n            [-88.110883, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 37.107804],\n            [-87.887538, 36.794451],\n            [-87.664194, 37.107804],\n            [-88.110883, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 37.73451],\n            [-87.664194, 37.73451],\n            [-87.887538, 38.047863],\n            [-88.110883, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 37.73451],\n            [-87.887538, 38.047863],\n            [-88.334227, 38.047863],\n            [-88.110883, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 37.73451],\n            [-88.334227, 38.047863],\n            [-88.557572, 37.73451],\n            [-88.110883, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 37.73451],\n            [-88.557572, 37.73451],\n            [-88.334227, 37.421157],\n            [-88.110883, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 37.73451],\n            [-88.334227, 37.421157],\n            [-87.887538, 37.421157],\n            [-88.110883, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 37.73451],\n            [-87.887538, 37.421157],\n            [-87.664194, 37.73451],\n            [-88.110883, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 38.361217],\n            [-87.664194, 38.361217],\n            [-87.887538, 38.67457],\n            [-88.110883, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 38.361217],\n            [-87.887538, 38.67457],\n            [-88.334227, 38.67457],\n            [-88.110883, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 38.361217],\n            [-88.334227, 38.67457],\n            [-88.557572, 38.361217],\n            [-88.110883, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 38.361217],\n            [-88.557572, 38.361217],\n            [-88.334227, 38.047863],\n            [-88.110883, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 38.361217],\n            [-88.334227, 38.047863],\n            [-87.887538, 38.047863],\n            [-88.110883, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 38.361217],\n            [-87.887538, 38.047863],\n            [-87.664194, 38.361217],\n            [-88.110883, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 38.987923],\n            [-87.664194, 38.987923],\n            [-87.887538, 39.301276],\n            [-88.110883, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 38.987923],\n            [-87.887538, 39.301276],\n            [-88.334227, 39.301276],\n            [-88.110883, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 38.987923],\n            [-88.334227, 39.301276],\n            [-88.557572, 38.987923],\n            [-88.110883, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 38.987923],\n            [-88.557572, 38.987923],\n            [-88.334227, 38.67457],\n            [-88.110883, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 38.987923],\n            [-88.334227, 38.67457],\n            [-87.887538, 38.67457],\n            [-88.110883, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 38.987923],\n            [-87.887538, 38.67457],\n            [-87.664194, 38.987923],\n            [-88.110883, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 39.614629],\n            [-87.664194, 39.614629],\n            [-87.887538, 39.927982],\n            [-88.110883, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 39.614629],\n            [-87.887538, 39.927982],\n            [-88.334227, 39.927982],\n            [-88.110883, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 39.614629],\n            [-88.334227, 39.927982],\n            [-88.557572, 39.614629],\n            [-88.110883, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 39.614629],\n            [-88.557572, 39.614629],\n            [-88.334227, 39.301276],\n            [-88.110883, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 39.614629],\n            [-88.334227, 39.301276],\n            [-87.887538, 39.301276],\n            [-88.110883, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 39.614629],\n            [-87.887538, 39.301276],\n            [-87.664194, 39.614629],\n            [-88.110883, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 40.241335],\n            [-87.664194, 40.241335],\n            [-87.887538, 40.554688],\n            [-88.110883, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 40.241335],\n            [-87.887538, 40.554688],\n            [-88.334227, 40.554688],\n            [-88.110883, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 40.241335],\n            [-88.334227, 40.554688],\n            [-88.557572, 40.241335],\n            [-88.110883, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 40.241335],\n            [-88.557572, 40.241335],\n            [-88.334227, 39.927982],\n            [-88.110883, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 40.241335],\n            [-88.334227, 39.927982],\n            [-87.887538, 39.927982],\n            [-88.110883, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.110883, 40.241335],\n            [-87.887538, 39.927982],\n            [-87.664194, 40.241335],\n            [-88.110883, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 31.780802],\n            [-86.994161, 31.780802],\n            [-87.217505, 32.094155],\n            [-87.440849, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 31.780802],\n            [-87.217505, 32.094155],\n            [-87.664194, 32.094155],\n            [-87.440849, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 31.780802],\n            [-87.664194, 32.094155],\n            [-87.887538, 31.780802],\n            [-87.440849, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 31.780802],\n            [-87.887538, 31.780802],\n            [-87.664194, 31.467449],\n            [-87.440849, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 31.780802],\n            [-87.664194, 31.467449],\n            [-87.217505, 31.467449],\n            [-87.440849, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 31.780802],\n            [-87.217505, 31.467449],\n            [-86.994161, 31.780802],\n            [-87.440849, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 32.407508],\n            [-86.994161, 32.407508],\n            [-87.217505, 32.720861],\n            [-87.440849, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 32.407508],\n            [-87.217505, 32.720861],\n            [-87.664194, 32.720861],\n            [-87.440849, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 32.407508],\n            [-87.664194, 32.720861],\n            [-87.887538, 32.407508],\n            [-87.440849, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 32.407508],\n            [-87.887538, 32.407508],\n            [-87.664194, 32.094155],\n            [-87.440849, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 32.407508],\n            [-87.664194, 32.094155],\n            [-87.217505, 32.094155],\n            [-87.440849, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 32.407508],\n            [-87.217505, 32.094155],\n            [-86.994161, 32.407508],\n            [-87.440849, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 33.034214],\n            [-86.994161, 33.034214],\n            [-87.217505, 33.347567],\n            [-87.440849, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 33.034214],\n            [-87.217505, 33.347567],\n            [-87.664194, 33.347567],\n            [-87.440849, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 33.034214],\n            [-87.664194, 33.347567],\n            [-87.887538, 33.034214],\n            [-87.440849, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 33.034214],\n            [-87.887538, 33.034214],\n            [-87.664194, 32.720861],\n            [-87.440849, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 33.034214],\n            [-87.664194, 32.720861],\n            [-87.217505, 32.720861],\n            [-87.440849, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 33.034214],\n            [-87.217505, 32.720861],\n            [-86.994161, 33.034214],\n            [-87.440849, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 33.66092],\n            [-86.994161, 33.66092],\n            [-87.217505, 33.974274],\n            [-87.440849, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 33.66092],\n            [-87.217505, 33.974274],\n            [-87.664194, 33.974274],\n            [-87.440849, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 33.66092],\n            [-87.664194, 33.974274],\n            [-87.887538, 33.66092],\n            [-87.440849, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 33.66092],\n            [-87.887538, 33.66092],\n            [-87.664194, 33.347567],\n            [-87.440849, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 33.66092],\n            [-87.664194, 33.347567],\n            [-87.217505, 33.347567],\n            [-87.440849, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 33.66092],\n            [-87.217505, 33.347567],\n            [-86.994161, 33.66092],\n            [-87.440849, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 34.287627],\n            [-86.994161, 34.287627],\n            [-87.217505, 34.60098],\n            [-87.440849, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 34.287627],\n            [-87.217505, 34.60098],\n            [-87.664194, 34.60098],\n            [-87.440849, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 34.287627],\n            [-87.664194, 34.60098],\n            [-87.887538, 34.287627],\n            [-87.440849, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 34.287627],\n            [-87.887538, 34.287627],\n            [-87.664194, 33.974274],\n            [-87.440849, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 34.287627],\n            [-87.664194, 33.974274],\n            [-87.217505, 33.974274],\n            [-87.440849, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 34.287627],\n            [-87.217505, 33.974274],\n            [-86.994161, 34.287627],\n            [-87.440849, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 34.914333],\n            [-86.994161, 34.914333],\n            [-87.217505, 35.227686],\n            [-87.440849, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 34.914333],\n            [-87.217505, 35.227686],\n            [-87.664194, 35.227686],\n            [-87.440849, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 34.914333],\n            [-87.664194, 35.227686],\n            [-87.887538, 34.914333],\n            [-87.440849, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 34.914333],\n            [-87.887538, 34.914333],\n            [-87.664194, 34.60098],\n            [-87.440849, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 34.914333],\n            [-87.664194, 34.60098],\n            [-87.217505, 34.60098],\n            [-87.440849, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 34.914333],\n            [-87.217505, 34.60098],\n            [-86.994161, 34.914333],\n            [-87.440849, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 35.541039],\n            [-86.994161, 35.541039],\n            [-87.217505, 35.854392],\n            [-87.440849, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 35.541039],\n            [-87.217505, 35.854392],\n            [-87.664194, 35.854392],\n            [-87.440849, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 35.541039],\n            [-87.664194, 35.854392],\n            [-87.887538, 35.541039],\n            [-87.440849, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 35.541039],\n            [-87.887538, 35.541039],\n            [-87.664194, 35.227686],\n            [-87.440849, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 35.541039],\n            [-87.664194, 35.227686],\n            [-87.217505, 35.227686],\n            [-87.440849, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 35.541039],\n            [-87.217505, 35.227686],\n            [-86.994161, 35.541039],\n            [-87.440849, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 36.167745],\n            [-86.994161, 36.167745],\n            [-87.217505, 36.481098],\n            [-87.440849, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 36.167745],\n            [-87.217505, 36.481098],\n            [-87.664194, 36.481098],\n            [-87.440849, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 36.167745],\n            [-87.664194, 36.481098],\n            [-87.887538, 36.167745],\n            [-87.440849, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 36.167745],\n            [-87.887538, 36.167745],\n            [-87.664194, 35.854392],\n            [-87.440849, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 36.167745],\n            [-87.664194, 35.854392],\n            [-87.217505, 35.854392],\n            [-87.440849, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 36.167745],\n            [-87.217505, 35.854392],\n            [-86.994161, 36.167745],\n            [-87.440849, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 36.794451],\n            [-86.994161, 36.794451],\n            [-87.217505, 37.107804],\n            [-87.440849, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 36.794451],\n            [-87.217505, 37.107804],\n            [-87.664194, 37.107804],\n            [-87.440849, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 36.794451],\n            [-87.664194, 37.107804],\n            [-87.887538, 36.794451],\n            [-87.440849, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 36.794451],\n            [-87.887538, 36.794451],\n            [-87.664194, 36.481098],\n            [-87.440849, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 36.794451],\n            [-87.664194, 36.481098],\n            [-87.217505, 36.481098],\n            [-87.440849, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 36.794451],\n            [-87.217505, 36.481098],\n            [-86.994161, 36.794451],\n            [-87.440849, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 37.421157],\n            [-86.994161, 37.421157],\n            [-87.217505, 37.73451],\n            [-87.440849, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 37.421157],\n            [-87.217505, 37.73451],\n            [-87.664194, 37.73451],\n            [-87.440849, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 37.421157],\n            [-87.664194, 37.73451],\n            [-87.887538, 37.421157],\n            [-87.440849, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 37.421157],\n            [-87.887538, 37.421157],\n            [-87.664194, 37.107804],\n            [-87.440849, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 37.421157],\n            [-87.664194, 37.107804],\n            [-87.217505, 37.107804],\n            [-87.440849, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 37.421157],\n            [-87.217505, 37.107804],\n            [-86.994161, 37.421157],\n            [-87.440849, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 38.047863],\n            [-86.994161, 38.047863],\n            [-87.217505, 38.361217],\n            [-87.440849, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 38.047863],\n            [-87.217505, 38.361217],\n            [-87.664194, 38.361217],\n            [-87.440849, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 38.047863],\n            [-87.664194, 38.361217],\n            [-87.887538, 38.047863],\n            [-87.440849, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 38.047863],\n            [-87.887538, 38.047863],\n            [-87.664194, 37.73451],\n            [-87.440849, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 38.047863],\n            [-87.664194, 37.73451],\n            [-87.217505, 37.73451],\n            [-87.440849, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 38.047863],\n            [-87.217505, 37.73451],\n            [-86.994161, 38.047863],\n            [-87.440849, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 38.67457],\n            [-86.994161, 38.67457],\n            [-87.217505, 38.987923],\n            [-87.440849, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 38.67457],\n            [-87.217505, 38.987923],\n            [-87.664194, 38.987923],\n            [-87.440849, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 38.67457],\n            [-87.664194, 38.987923],\n            [-87.887538, 38.67457],\n            [-87.440849, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 38.67457],\n            [-87.887538, 38.67457],\n            [-87.664194, 38.361217],\n            [-87.440849, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 38.67457],\n            [-87.664194, 38.361217],\n            [-87.217505, 38.361217],\n            [-87.440849, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 38.67457],\n            [-87.217505, 38.361217],\n            [-86.994161, 38.67457],\n            [-87.440849, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 39.301276],\n            [-86.994161, 39.301276],\n            [-87.217505, 39.614629],\n            [-87.440849, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 39.301276],\n            [-87.217505, 39.614629],\n            [-87.664194, 39.614629],\n            [-87.440849, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 39.301276],\n            [-87.664194, 39.614629],\n            [-87.887538, 39.301276],\n            [-87.440849, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 39.301276],\n            [-87.887538, 39.301276],\n            [-87.664194, 38.987923],\n            [-87.440849, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 39.301276],\n            [-87.664194, 38.987923],\n            [-87.217505, 38.987923],\n            [-87.440849, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 39.301276],\n            [-87.217505, 38.987923],\n            [-86.994161, 39.301276],\n            [-87.440849, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 39.927982],\n            [-86.994161, 39.927982],\n            [-87.217505, 40.241335],\n            [-87.440849, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 39.927982],\n            [-87.217505, 40.241335],\n            [-87.664194, 40.241335],\n            [-87.440849, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 39.927982],\n            [-87.664194, 40.241335],\n            [-87.887538, 39.927982],\n            [-87.440849, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 39.927982],\n            [-87.887538, 39.927982],\n            [-87.664194, 39.614629],\n            [-87.440849, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 39.927982],\n            [-87.664194, 39.614629],\n            [-87.217505, 39.614629],\n            [-87.440849, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.440849, 39.927982],\n            [-87.217505, 39.614629],\n            [-86.994161, 39.927982],\n            [-87.440849, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 31.467449],\n            [-86.324127, 31.467449],\n            [-86.547472, 31.780802],\n            [-86.770816, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 31.467449],\n            [-86.547472, 31.780802],\n            [-86.994161, 31.780802],\n            [-86.770816, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 31.467449],\n            [-86.994161, 31.780802],\n            [-87.217505, 31.467449],\n            [-86.770816, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 31.467449],\n            [-87.217505, 31.467449],\n            [-86.994161, 31.154096],\n            [-86.770816, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 31.467449],\n            [-86.994161, 31.154096],\n            [-86.547472, 31.154096],\n            [-86.770816, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 31.467449],\n            [-86.547472, 31.154096],\n            [-86.324127, 31.467449],\n            [-86.770816, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 32.094155],\n            [-86.324127, 32.094155],\n            [-86.547472, 32.407508],\n            [-86.770816, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 32.094155],\n            [-86.547472, 32.407508],\n            [-86.994161, 32.407508],\n            [-86.770816, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 32.094155],\n            [-86.994161, 32.407508],\n            [-87.217505, 32.094155],\n            [-86.770816, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 32.094155],\n            [-87.217505, 32.094155],\n            [-86.994161, 31.780802],\n            [-86.770816, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 32.094155],\n            [-86.994161, 31.780802],\n            [-86.547472, 31.780802],\n            [-86.770816, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 32.094155],\n            [-86.547472, 31.780802],\n            [-86.324127, 32.094155],\n            [-86.770816, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 32.720861],\n            [-86.324127, 32.720861],\n            [-86.547472, 33.034214],\n            [-86.770816, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 32.720861],\n            [-86.547472, 33.034214],\n            [-86.994161, 33.034214],\n            [-86.770816, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 32.720861],\n            [-86.994161, 33.034214],\n            [-87.217505, 32.720861],\n            [-86.770816, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 32.720861],\n            [-87.217505, 32.720861],\n            [-86.994161, 32.407508],\n            [-86.770816, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 32.720861],\n            [-86.994161, 32.407508],\n            [-86.547472, 32.407508],\n            [-86.770816, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 32.720861],\n            [-86.547472, 32.407508],\n            [-86.324127, 32.720861],\n            [-86.770816, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 33.347567],\n            [-86.324127, 33.347567],\n            [-86.547472, 33.66092],\n            [-86.770816, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 33.347567],\n            [-86.547472, 33.66092],\n            [-86.994161, 33.66092],\n            [-86.770816, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 33.347567],\n            [-86.994161, 33.66092],\n            [-87.217505, 33.347567],\n            [-86.770816, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 33.347567],\n            [-87.217505, 33.347567],\n            [-86.994161, 33.034214],\n            [-86.770816, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 33.347567],\n            [-86.994161, 33.034214],\n            [-86.547472, 33.034214],\n            [-86.770816, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 33.347567],\n            [-86.547472, 33.034214],\n            [-86.324127, 33.347567],\n            [-86.770816, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 33.974274],\n            [-86.324127, 33.974274],\n            [-86.547472, 34.287627],\n            [-86.770816, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 33.974274],\n            [-86.547472, 34.287627],\n            [-86.994161, 34.287627],\n            [-86.770816, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 33.974274],\n            [-86.994161, 34.287627],\n            [-87.217505, 33.974274],\n            [-86.770816, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 33.974274],\n            [-87.217505, 33.974274],\n            [-86.994161, 33.66092],\n            [-86.770816, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 33.974274],\n            [-86.994161, 33.66092],\n            [-86.547472, 33.66092],\n            [-86.770816, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 33.974274],\n            [-86.547472, 33.66092],\n            [-86.324127, 33.974274],\n            [-86.770816, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 34.60098],\n            [-86.324127, 34.60098],\n            [-86.547472, 34.914333],\n            [-86.770816, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 34.60098],\n            [-86.547472, 34.914333],\n            [-86.994161, 34.914333],\n            [-86.770816, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 34.60098],\n            [-86.994161, 34.914333],\n            [-87.217505, 34.60098],\n            [-86.770816, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 34.60098],\n            [-87.217505, 34.60098],\n            [-86.994161, 34.287627],\n            [-86.770816, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 34.60098],\n            [-86.994161, 34.287627],\n            [-86.547472, 34.287627],\n            [-86.770816, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 34.60098],\n            [-86.547472, 34.287627],\n            [-86.324127, 34.60098],\n            [-86.770816, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 35.227686],\n            [-86.324127, 35.227686],\n            [-86.547472, 35.541039],\n            [-86.770816, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 35.227686],\n            [-86.547472, 35.541039],\n            [-86.994161, 35.541039],\n            [-86.770816, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 35.227686],\n            [-86.994161, 35.541039],\n            [-87.217505, 35.227686],\n            [-86.770816, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 35.227686],\n            [-87.217505, 35.227686],\n            [-86.994161, 34.914333],\n            [-86.770816, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 35.227686],\n            [-86.994161, 34.914333],\n            [-86.547472, 34.914333],\n            [-86.770816, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 35.227686],\n            [-86.547472, 34.914333],\n            [-86.324127, 35.227686],\n            [-86.770816, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 35.854392],\n            [-86.324127, 35.854392],\n            [-86.547472, 36.167745],\n            [-86.770816, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 35.854392],\n            [-86.547472, 36.167745],\n            [-86.994161, 36.167745],\n            [-86.770816, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 35.854392],\n            [-86.994161, 36.167745],\n            [-87.217505, 35.854392],\n            [-86.770816, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 35.854392],\n            [-87.217505, 35.854392],\n            [-86.994161, 35.541039],\n            [-86.770816, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 35.854392],\n            [-86.994161, 35.541039],\n            [-86.547472, 35.541039],\n            [-86.770816, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 35.854392],\n            [-86.547472, 35.541039],\n            [-86.324127, 35.854392],\n            [-86.770816, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 36.481098],\n            [-86.324127, 36.481098],\n            [-86.547472, 36.794451],\n            [-86.770816, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 36.481098],\n            [-86.547472, 36.794451],\n            [-86.994161, 36.794451],\n            [-86.770816, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 36.481098],\n            [-86.994161, 36.794451],\n            [-87.217505, 36.481098],\n            [-86.770816, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 36.481098],\n            [-87.217505, 36.481098],\n            [-86.994161, 36.167745],\n            [-86.770816, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 36.481098],\n            [-86.994161, 36.167745],\n            [-86.547472, 36.167745],\n            [-86.770816, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 36.481098],\n            [-86.547472, 36.167745],\n            [-86.324127, 36.481098],\n            [-86.770816, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 37.107804],\n            [-86.324127, 37.107804],\n            [-86.547472, 37.421157],\n            [-86.770816, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 37.107804],\n            [-86.547472, 37.421157],\n            [-86.994161, 37.421157],\n            [-86.770816, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 37.107804],\n            [-86.994161, 37.421157],\n            [-87.217505, 37.107804],\n            [-86.770816, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 37.107804],\n            [-87.217505, 37.107804],\n            [-86.994161, 36.794451],\n            [-86.770816, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 37.107804],\n            [-86.994161, 36.794451],\n            [-86.547472, 36.794451],\n            [-86.770816, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 37.107804],\n            [-86.547472, 36.794451],\n            [-86.324127, 37.107804],\n            [-86.770816, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 37.73451],\n            [-86.324127, 37.73451],\n            [-86.547472, 38.047863],\n            [-86.770816, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 37.73451],\n            [-86.547472, 38.047863],\n            [-86.994161, 38.047863],\n            [-86.770816, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 37.73451],\n            [-86.994161, 38.047863],\n            [-87.217505, 37.73451],\n            [-86.770816, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 37.73451],\n            [-87.217505, 37.73451],\n            [-86.994161, 37.421157],\n            [-86.770816, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 37.73451],\n            [-86.994161, 37.421157],\n            [-86.547472, 37.421157],\n            [-86.770816, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 37.73451],\n            [-86.547472, 37.421157],\n            [-86.324127, 37.73451],\n            [-86.770816, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 38.361217],\n            [-86.324127, 38.361217],\n            [-86.547472, 38.67457],\n            [-86.770816, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 38.361217],\n            [-86.547472, 38.67457],\n            [-86.994161, 38.67457],\n            [-86.770816, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 38.361217],\n            [-86.994161, 38.67457],\n            [-87.217505, 38.361217],\n            [-86.770816, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 38.361217],\n            [-87.217505, 38.361217],\n            [-86.994161, 38.047863],\n            [-86.770816, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 38.361217],\n            [-86.994161, 38.047863],\n            [-86.547472, 38.047863],\n            [-86.770816, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 38.361217],\n            [-86.547472, 38.047863],\n            [-86.324127, 38.361217],\n            [-86.770816, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 38.987923],\n            [-86.324127, 38.987923],\n            [-86.547472, 39.301276],\n            [-86.770816, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 38.987923],\n            [-86.547472, 39.301276],\n            [-86.994161, 39.301276],\n            [-86.770816, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 38.987923],\n            [-86.994161, 39.301276],\n            [-87.217505, 38.987923],\n            [-86.770816, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 38.987923],\n            [-87.217505, 38.987923],\n            [-86.994161, 38.67457],\n            [-86.770816, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 38.987923],\n            [-86.994161, 38.67457],\n            [-86.547472, 38.67457],\n            [-86.770816, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 38.987923],\n            [-86.547472, 38.67457],\n            [-86.324127, 38.987923],\n            [-86.770816, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 39.614629],\n            [-86.324127, 39.614629],\n            [-86.547472, 39.927982],\n            [-86.770816, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 39.614629],\n            [-86.547472, 39.927982],\n            [-86.994161, 39.927982],\n            [-86.770816, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 39.614629],\n            [-86.994161, 39.927982],\n            [-87.217505, 39.614629],\n            [-86.770816, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 39.614629],\n            [-87.217505, 39.614629],\n            [-86.994161, 39.301276],\n            [-86.770816, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 39.614629],\n            [-86.994161, 39.301276],\n            [-86.547472, 39.301276],\n            [-86.770816, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 39.614629],\n            [-86.547472, 39.301276],\n            [-86.324127, 39.614629],\n            [-86.770816, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 40.241335],\n            [-86.324127, 40.241335],\n            [-86.547472, 40.554688],\n            [-86.770816, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 40.241335],\n            [-86.547472, 40.554688],\n            [-86.994161, 40.554688],\n            [-86.770816, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 40.241335],\n            [-86.994161, 40.554688],\n            [-87.217505, 40.241335],\n            [-86.770816, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 40.241335],\n            [-87.217505, 40.241335],\n            [-86.994161, 39.927982],\n            [-86.770816, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 40.241335],\n            [-86.994161, 39.927982],\n            [-86.547472, 39.927982],\n            [-86.770816, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.770816, 40.241335],\n            [-86.547472, 39.927982],\n            [-86.324127, 40.241335],\n            [-86.770816, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 31.780802],\n            [-85.654094, 31.780802],\n            [-85.877439, 32.094155],\n            [-86.100783, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 31.780802],\n            [-85.877439, 32.094155],\n            [-86.324127, 32.094155],\n            [-86.100783, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 31.780802],\n            [-86.324127, 32.094155],\n            [-86.547472, 31.780802],\n            [-86.100783, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 31.780802],\n            [-86.547472, 31.780802],\n            [-86.324127, 31.467449],\n            [-86.100783, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 31.780802],\n            [-86.324127, 31.467449],\n            [-85.877439, 31.467449],\n            [-86.100783, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 31.780802],\n            [-85.877439, 31.467449],\n            [-85.654094, 31.780802],\n            [-86.100783, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 32.407508],\n            [-85.654094, 32.407508],\n            [-85.877439, 32.720861],\n            [-86.100783, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 32.407508],\n            [-85.877439, 32.720861],\n            [-86.324127, 32.720861],\n            [-86.100783, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 32.407508],\n            [-86.324127, 32.720861],\n            [-86.547472, 32.407508],\n            [-86.100783, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 32.407508],\n            [-86.547472, 32.407508],\n            [-86.324127, 32.094155],\n            [-86.100783, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 32.407508],\n            [-86.324127, 32.094155],\n            [-85.877439, 32.094155],\n            [-86.100783, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 32.407508],\n            [-85.877439, 32.094155],\n            [-85.654094, 32.407508],\n            [-86.100783, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 33.034214],\n            [-85.654094, 33.034214],\n            [-85.877439, 33.347567],\n            [-86.100783, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 33.034214],\n            [-85.877439, 33.347567],\n            [-86.324127, 33.347567],\n            [-86.100783, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 33.034214],\n            [-86.324127, 33.347567],\n            [-86.547472, 33.034214],\n            [-86.100783, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 33.034214],\n            [-86.547472, 33.034214],\n            [-86.324127, 32.720861],\n            [-86.100783, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 33.034214],\n            [-86.324127, 32.720861],\n            [-85.877439, 32.720861],\n            [-86.100783, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 33.034214],\n            [-85.877439, 32.720861],\n            [-85.654094, 33.034214],\n            [-86.100783, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 33.66092],\n            [-85.654094, 33.66092],\n            [-85.877439, 33.974274],\n            [-86.100783, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 33.66092],\n            [-85.877439, 33.974274],\n            [-86.324127, 33.974274],\n            [-86.100783, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 33.66092],\n            [-86.324127, 33.974274],\n            [-86.547472, 33.66092],\n            [-86.100783, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 33.66092],\n            [-86.547472, 33.66092],\n            [-86.324127, 33.347567],\n            [-86.100783, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 33.66092],\n            [-86.324127, 33.347567],\n            [-85.877439, 33.347567],\n            [-86.100783, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 33.66092],\n            [-85.877439, 33.347567],\n            [-85.654094, 33.66092],\n            [-86.100783, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 34.287627],\n            [-85.654094, 34.287627],\n            [-85.877439, 34.60098],\n            [-86.100783, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 34.287627],\n            [-85.877439, 34.60098],\n            [-86.324127, 34.60098],\n            [-86.100783, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 34.287627],\n            [-86.324127, 34.60098],\n            [-86.547472, 34.287627],\n            [-86.100783, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 34.287627],\n            [-86.547472, 34.287627],\n            [-86.324127, 33.974274],\n            [-86.100783, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 34.287627],\n            [-86.324127, 33.974274],\n            [-85.877439, 33.974274],\n            [-86.100783, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 34.287627],\n            [-85.877439, 33.974274],\n            [-85.654094, 34.287627],\n            [-86.100783, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 34.914333],\n            [-85.654094, 34.914333],\n            [-85.877439, 35.227686],\n            [-86.100783, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 34.914333],\n            [-85.877439, 35.227686],\n            [-86.324127, 35.227686],\n            [-86.100783, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 34.914333],\n            [-86.324127, 35.227686],\n            [-86.547472, 34.914333],\n            [-86.100783, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 34.914333],\n            [-86.547472, 34.914333],\n            [-86.324127, 34.60098],\n            [-86.100783, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 34.914333],\n            [-86.324127, 34.60098],\n            [-85.877439, 34.60098],\n            [-86.100783, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 34.914333],\n            [-85.877439, 34.60098],\n            [-85.654094, 34.914333],\n            [-86.100783, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 35.541039],\n            [-85.654094, 35.541039],\n            [-85.877439, 35.854392],\n            [-86.100783, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 35.541039],\n            [-85.877439, 35.854392],\n            [-86.324127, 35.854392],\n            [-86.100783, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 35.541039],\n            [-86.324127, 35.854392],\n            [-86.547472, 35.541039],\n            [-86.100783, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 35.541039],\n            [-86.547472, 35.541039],\n            [-86.324127, 35.227686],\n            [-86.100783, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 35.541039],\n            [-86.324127, 35.227686],\n            [-85.877439, 35.227686],\n            [-86.100783, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 35.541039],\n            [-85.877439, 35.227686],\n            [-85.654094, 35.541039],\n            [-86.100783, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 36.167745],\n            [-85.654094, 36.167745],\n            [-85.877439, 36.481098],\n            [-86.100783, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 36.167745],\n            [-85.877439, 36.481098],\n            [-86.324127, 36.481098],\n            [-86.100783, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 36.167745],\n            [-86.324127, 36.481098],\n            [-86.547472, 36.167745],\n            [-86.100783, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 36.167745],\n            [-86.547472, 36.167745],\n            [-86.324127, 35.854392],\n            [-86.100783, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 36.167745],\n            [-86.324127, 35.854392],\n            [-85.877439, 35.854392],\n            [-86.100783, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 36.167745],\n            [-85.877439, 35.854392],\n            [-85.654094, 36.167745],\n            [-86.100783, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 36.794451],\n            [-85.654094, 36.794451],\n            [-85.877439, 37.107804],\n            [-86.100783, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 36.794451],\n            [-85.877439, 37.107804],\n            [-86.324127, 37.107804],\n            [-86.100783, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 36.794451],\n            [-86.324127, 37.107804],\n            [-86.547472, 36.794451],\n            [-86.100783, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 36.794451],\n            [-86.547472, 36.794451],\n            [-86.324127, 36.481098],\n            [-86.100783, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 36.794451],\n            [-86.324127, 36.481098],\n            [-85.877439, 36.481098],\n            [-86.100783, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 36.794451],\n            [-85.877439, 36.481098],\n            [-85.654094, 36.794451],\n            [-86.100783, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 37.421157],\n            [-85.654094, 37.421157],\n            [-85.877439, 37.73451],\n            [-86.100783, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 37.421157],\n            [-85.877439, 37.73451],\n            [-86.324127, 37.73451],\n            [-86.100783, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 37.421157],\n            [-86.324127, 37.73451],\n            [-86.547472, 37.421157],\n            [-86.100783, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 37.421157],\n            [-86.547472, 37.421157],\n            [-86.324127, 37.107804],\n            [-86.100783, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 37.421157],\n            [-86.324127, 37.107804],\n            [-85.877439, 37.107804],\n            [-86.100783, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 37.421157],\n            [-85.877439, 37.107804],\n            [-85.654094, 37.421157],\n            [-86.100783, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 38.047863],\n            [-85.654094, 38.047863],\n            [-85.877439, 38.361217],\n            [-86.100783, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 38.047863],\n            [-85.877439, 38.361217],\n            [-86.324127, 38.361217],\n            [-86.100783, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 38.047863],\n            [-86.324127, 38.361217],\n            [-86.547472, 38.047863],\n            [-86.100783, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 38.047863],\n            [-86.547472, 38.047863],\n            [-86.324127, 37.73451],\n            [-86.100783, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 38.047863],\n            [-86.324127, 37.73451],\n            [-85.877439, 37.73451],\n            [-86.100783, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 38.047863],\n            [-85.877439, 37.73451],\n            [-85.654094, 38.047863],\n            [-86.100783, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 38.67457],\n            [-85.654094, 38.67457],\n            [-85.877439, 38.987923],\n            [-86.100783, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 38.67457],\n            [-85.877439, 38.987923],\n            [-86.324127, 38.987923],\n            [-86.100783, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 38.67457],\n            [-86.324127, 38.987923],\n            [-86.547472, 38.67457],\n            [-86.100783, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 38.67457],\n            [-86.547472, 38.67457],\n            [-86.324127, 38.361217],\n            [-86.100783, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 38.67457],\n            [-86.324127, 38.361217],\n            [-85.877439, 38.361217],\n            [-86.100783, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 38.67457],\n            [-85.877439, 38.361217],\n            [-85.654094, 38.67457],\n            [-86.100783, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 39.301276],\n            [-85.654094, 39.301276],\n            [-85.877439, 39.614629],\n            [-86.100783, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 39.301276],\n            [-85.877439, 39.614629],\n            [-86.324127, 39.614629],\n            [-86.100783, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 39.301276],\n            [-86.324127, 39.614629],\n            [-86.547472, 39.301276],\n            [-86.100783, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 39.301276],\n            [-86.547472, 39.301276],\n            [-86.324127, 38.987923],\n            [-86.100783, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 39.301276],\n            [-86.324127, 38.987923],\n            [-85.877439, 38.987923],\n            [-86.100783, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 39.301276],\n            [-85.877439, 38.987923],\n            [-85.654094, 39.301276],\n            [-86.100783, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 39.927982],\n            [-85.654094, 39.927982],\n            [-85.877439, 40.241335],\n            [-86.100783, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 39.927982],\n            [-85.877439, 40.241335],\n            [-86.324127, 40.241335],\n            [-86.100783, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 39.927982],\n            [-86.324127, 40.241335],\n            [-86.547472, 39.927982],\n            [-86.100783, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 39.927982],\n            [-86.547472, 39.927982],\n            [-86.324127, 39.614629],\n            [-86.100783, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 39.927982],\n            [-86.324127, 39.614629],\n            [-85.877439, 39.614629],\n            [-86.100783, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.100783, 39.927982],\n            [-85.877439, 39.614629],\n            [-85.654094, 39.927982],\n            [-86.100783, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 31.467449],\n            [-84.984061, 31.467449],\n            [-85.207405, 31.780802],\n            [-85.43075, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 31.467449],\n            [-85.207405, 31.780802],\n            [-85.654094, 31.780802],\n            [-85.43075, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 31.467449],\n            [-85.654094, 31.780802],\n            [-85.877439, 31.467449],\n            [-85.43075, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 31.467449],\n            [-85.877439, 31.467449],\n            [-85.654094, 31.154096],\n            [-85.43075, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 31.467449],\n            [-85.654094, 31.154096],\n            [-85.207405, 31.154096],\n            [-85.43075, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 31.467449],\n            [-85.207405, 31.154096],\n            [-84.984061, 31.467449],\n            [-85.43075, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 32.094155],\n            [-84.984061, 32.094155],\n            [-85.207405, 32.407508],\n            [-85.43075, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 32.094155],\n            [-85.207405, 32.407508],\n            [-85.654094, 32.407508],\n            [-85.43075, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 32.094155],\n            [-85.654094, 32.407508],\n            [-85.877439, 32.094155],\n            [-85.43075, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 32.094155],\n            [-85.877439, 32.094155],\n            [-85.654094, 31.780802],\n            [-85.43075, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 32.094155],\n            [-85.654094, 31.780802],\n            [-85.207405, 31.780802],\n            [-85.43075, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 32.094155],\n            [-85.207405, 31.780802],\n            [-84.984061, 32.094155],\n            [-85.43075, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 32.720861],\n            [-84.984061, 32.720861],\n            [-85.207405, 33.034214],\n            [-85.43075, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 32.720861],\n            [-85.207405, 33.034214],\n            [-85.654094, 33.034214],\n            [-85.43075, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 32.720861],\n            [-85.654094, 33.034214],\n            [-85.877439, 32.720861],\n            [-85.43075, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 32.720861],\n            [-85.877439, 32.720861],\n            [-85.654094, 32.407508],\n            [-85.43075, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 32.720861],\n            [-85.654094, 32.407508],\n            [-85.207405, 32.407508],\n            [-85.43075, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 32.720861],\n            [-85.207405, 32.407508],\n            [-84.984061, 32.720861],\n            [-85.43075, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 33.347567],\n            [-84.984061, 33.347567],\n            [-85.207405, 33.66092],\n            [-85.43075, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 33.347567],\n            [-85.207405, 33.66092],\n            [-85.654094, 33.66092],\n            [-85.43075, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 33.347567],\n            [-85.654094, 33.66092],\n            [-85.877439, 33.347567],\n            [-85.43075, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 33.347567],\n            [-85.877439, 33.347567],\n            [-85.654094, 33.034214],\n            [-85.43075, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 33.347567],\n            [-85.654094, 33.034214],\n            [-85.207405, 33.034214],\n            [-85.43075, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 33.347567],\n            [-85.207405, 33.034214],\n            [-84.984061, 33.347567],\n            [-85.43075, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 33.974274],\n            [-84.984061, 33.974274],\n            [-85.207405, 34.287627],\n            [-85.43075, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 33.974274],\n            [-85.207405, 34.287627],\n            [-85.654094, 34.287627],\n            [-85.43075, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 33.974274],\n            [-85.654094, 34.287627],\n            [-85.877439, 33.974274],\n            [-85.43075, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 33.974274],\n            [-85.877439, 33.974274],\n            [-85.654094, 33.66092],\n            [-85.43075, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 33.974274],\n            [-85.654094, 33.66092],\n            [-85.207405, 33.66092],\n            [-85.43075, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 33.974274],\n            [-85.207405, 33.66092],\n            [-84.984061, 33.974274],\n            [-85.43075, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 34.60098],\n            [-84.984061, 34.60098],\n            [-85.207405, 34.914333],\n            [-85.43075, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 34.60098],\n            [-85.207405, 34.914333],\n            [-85.654094, 34.914333],\n            [-85.43075, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 34.60098],\n            [-85.654094, 34.914333],\n            [-85.877439, 34.60098],\n            [-85.43075, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 34.60098],\n            [-85.877439, 34.60098],\n            [-85.654094, 34.287627],\n            [-85.43075, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 34.60098],\n            [-85.654094, 34.287627],\n            [-85.207405, 34.287627],\n            [-85.43075, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 34.60098],\n            [-85.207405, 34.287627],\n            [-84.984061, 34.60098],\n            [-85.43075, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 35.227686],\n            [-84.984061, 35.227686],\n            [-85.207405, 35.541039],\n            [-85.43075, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 35.227686],\n            [-85.207405, 35.541039],\n            [-85.654094, 35.541039],\n            [-85.43075, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 35.227686],\n            [-85.654094, 35.541039],\n            [-85.877439, 35.227686],\n            [-85.43075, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 35.227686],\n            [-85.877439, 35.227686],\n            [-85.654094, 34.914333],\n            [-85.43075, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 35.227686],\n            [-85.654094, 34.914333],\n            [-85.207405, 34.914333],\n            [-85.43075, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 35.227686],\n            [-85.207405, 34.914333],\n            [-84.984061, 35.227686],\n            [-85.43075, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 35.854392],\n            [-84.984061, 35.854392],\n            [-85.207405, 36.167745],\n            [-85.43075, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 35.854392],\n            [-85.207405, 36.167745],\n            [-85.654094, 36.167745],\n            [-85.43075, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 35.854392],\n            [-85.654094, 36.167745],\n            [-85.877439, 35.854392],\n            [-85.43075, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 35.854392],\n            [-85.877439, 35.854392],\n            [-85.654094, 35.541039],\n            [-85.43075, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 35.854392],\n            [-85.654094, 35.541039],\n            [-85.207405, 35.541039],\n            [-85.43075, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 35.854392],\n            [-85.207405, 35.541039],\n            [-84.984061, 35.854392],\n            [-85.43075, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 36.481098],\n            [-84.984061, 36.481098],\n            [-85.207405, 36.794451],\n            [-85.43075, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 36.481098],\n            [-85.207405, 36.794451],\n            [-85.654094, 36.794451],\n            [-85.43075, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 36.481098],\n            [-85.654094, 36.794451],\n            [-85.877439, 36.481098],\n            [-85.43075, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 36.481098],\n            [-85.877439, 36.481098],\n            [-85.654094, 36.167745],\n            [-85.43075, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 36.481098],\n            [-85.654094, 36.167745],\n            [-85.207405, 36.167745],\n            [-85.43075, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 36.481098],\n            [-85.207405, 36.167745],\n            [-84.984061, 36.481098],\n            [-85.43075, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 37.107804],\n            [-84.984061, 37.107804],\n            [-85.207405, 37.421157],\n            [-85.43075, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 37.107804],\n            [-85.207405, 37.421157],\n            [-85.654094, 37.421157],\n            [-85.43075, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 37.107804],\n            [-85.654094, 37.421157],\n            [-85.877439, 37.107804],\n            [-85.43075, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 37.107804],\n            [-85.877439, 37.107804],\n            [-85.654094, 36.794451],\n            [-85.43075, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 37.107804],\n            [-85.654094, 36.794451],\n            [-85.207405, 36.794451],\n            [-85.43075, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 37.107804],\n            [-85.207405, 36.794451],\n            [-84.984061, 37.107804],\n            [-85.43075, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 37.73451],\n            [-84.984061, 37.73451],\n            [-85.207405, 38.047863],\n            [-85.43075, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 37.73451],\n            [-85.207405, 38.047863],\n            [-85.654094, 38.047863],\n            [-85.43075, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 37.73451],\n            [-85.654094, 38.047863],\n            [-85.877439, 37.73451],\n            [-85.43075, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 37.73451],\n            [-85.877439, 37.73451],\n            [-85.654094, 37.421157],\n            [-85.43075, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 37.73451],\n            [-85.654094, 37.421157],\n            [-85.207405, 37.421157],\n            [-85.43075, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 37.73451],\n            [-85.207405, 37.421157],\n            [-84.984061, 37.73451],\n            [-85.43075, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 38.361217],\n            [-84.984061, 38.361217],\n            [-85.207405, 38.67457],\n            [-85.43075, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 38.361217],\n            [-85.207405, 38.67457],\n            [-85.654094, 38.67457],\n            [-85.43075, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 38.361217],\n            [-85.654094, 38.67457],\n            [-85.877439, 38.361217],\n            [-85.43075, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 38.361217],\n            [-85.877439, 38.361217],\n            [-85.654094, 38.047863],\n            [-85.43075, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 38.361217],\n            [-85.654094, 38.047863],\n            [-85.207405, 38.047863],\n            [-85.43075, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 38.361217],\n            [-85.207405, 38.047863],\n            [-84.984061, 38.361217],\n            [-85.43075, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 38.987923],\n            [-84.984061, 38.987923],\n            [-85.207405, 39.301276],\n            [-85.43075, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 38.987923],\n            [-85.207405, 39.301276],\n            [-85.654094, 39.301276],\n            [-85.43075, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 38.987923],\n            [-85.654094, 39.301276],\n            [-85.877439, 38.987923],\n            [-85.43075, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 38.987923],\n            [-85.877439, 38.987923],\n            [-85.654094, 38.67457],\n            [-85.43075, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 38.987923],\n            [-85.654094, 38.67457],\n            [-85.207405, 38.67457],\n            [-85.43075, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 38.987923],\n            [-85.207405, 38.67457],\n            [-84.984061, 38.987923],\n            [-85.43075, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 39.614629],\n            [-84.984061, 39.614629],\n            [-85.207405, 39.927982],\n            [-85.43075, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 39.614629],\n            [-85.207405, 39.927982],\n            [-85.654094, 39.927982],\n            [-85.43075, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 39.614629],\n            [-85.654094, 39.927982],\n            [-85.877439, 39.614629],\n            [-85.43075, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 39.614629],\n            [-85.877439, 39.614629],\n            [-85.654094, 39.301276],\n            [-85.43075, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 39.614629],\n            [-85.654094, 39.301276],\n            [-85.207405, 39.301276],\n            [-85.43075, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 39.614629],\n            [-85.207405, 39.301276],\n            [-84.984061, 39.614629],\n            [-85.43075, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 40.241335],\n            [-84.984061, 40.241335],\n            [-85.207405, 40.554688],\n            [-85.43075, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 40.241335],\n            [-85.207405, 40.554688],\n            [-85.654094, 40.554688],\n            [-85.43075, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 40.241335],\n            [-85.654094, 40.554688],\n            [-85.877439, 40.241335],\n            [-85.43075, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 40.241335],\n            [-85.877439, 40.241335],\n            [-85.654094, 39.927982],\n            [-85.43075, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 40.241335],\n            [-85.654094, 39.927982],\n            [-85.207405, 39.927982],\n            [-85.43075, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.43075, 40.241335],\n            [-85.207405, 39.927982],\n            [-84.984061, 40.241335],\n            [-85.43075, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-96.6357421875, 31.12819929911196, -84.9462890625, 40.58058466412764],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.6357421875, 31.12819929911196],\n            [-84.9462890625, 31.12819929911196],\n            [-84.9462890625, 40.58058466412764],\n            [-96.6357421875, 40.58058466412764],\n            [-96.6357421875, 31.12819929911196]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-hex-grid/test/out/bbox1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.704593, 31.467449],\n            [-95.927937, 31.780802],\n            [-96.374626, 31.780802],\n            [-96.59797, 31.467449],\n            [-96.374626, 31.154096],\n            [-95.927937, 31.154096],\n            [-95.704593, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.704593, 32.094155],\n            [-95.927937, 32.407508],\n            [-96.374626, 32.407508],\n            [-96.59797, 32.094155],\n            [-96.374626, 31.780802],\n            [-95.927937, 31.780802],\n            [-95.704593, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.704593, 32.720861],\n            [-95.927937, 33.034214],\n            [-96.374626, 33.034214],\n            [-96.59797, 32.720861],\n            [-96.374626, 32.407508],\n            [-95.927937, 32.407508],\n            [-95.704593, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.704593, 33.347567],\n            [-95.927937, 33.66092],\n            [-96.374626, 33.66092],\n            [-96.59797, 33.347567],\n            [-96.374626, 33.034214],\n            [-95.927937, 33.034214],\n            [-95.704593, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.704593, 33.974274],\n            [-95.927937, 34.287627],\n            [-96.374626, 34.287627],\n            [-96.59797, 33.974274],\n            [-96.374626, 33.66092],\n            [-95.927937, 33.66092],\n            [-95.704593, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.704593, 34.60098],\n            [-95.927937, 34.914333],\n            [-96.374626, 34.914333],\n            [-96.59797, 34.60098],\n            [-96.374626, 34.287627],\n            [-95.927937, 34.287627],\n            [-95.704593, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.704593, 35.227686],\n            [-95.927937, 35.541039],\n            [-96.374626, 35.541039],\n            [-96.59797, 35.227686],\n            [-96.374626, 34.914333],\n            [-95.927937, 34.914333],\n            [-95.704593, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.704593, 35.854392],\n            [-95.927937, 36.167745],\n            [-96.374626, 36.167745],\n            [-96.59797, 35.854392],\n            [-96.374626, 35.541039],\n            [-95.927937, 35.541039],\n            [-95.704593, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.704593, 36.481098],\n            [-95.927937, 36.794451],\n            [-96.374626, 36.794451],\n            [-96.59797, 36.481098],\n            [-96.374626, 36.167745],\n            [-95.927937, 36.167745],\n            [-95.704593, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.704593, 37.107804],\n            [-95.927937, 37.421157],\n            [-96.374626, 37.421157],\n            [-96.59797, 37.107804],\n            [-96.374626, 36.794451],\n            [-95.927937, 36.794451],\n            [-95.704593, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.704593, 37.73451],\n            [-95.927937, 38.047863],\n            [-96.374626, 38.047863],\n            [-96.59797, 37.73451],\n            [-96.374626, 37.421157],\n            [-95.927937, 37.421157],\n            [-95.704593, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.704593, 38.361217],\n            [-95.927937, 38.67457],\n            [-96.374626, 38.67457],\n            [-96.59797, 38.361217],\n            [-96.374626, 38.047863],\n            [-95.927937, 38.047863],\n            [-95.704593, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.704593, 38.987923],\n            [-95.927937, 39.301276],\n            [-96.374626, 39.301276],\n            [-96.59797, 38.987923],\n            [-96.374626, 38.67457],\n            [-95.927937, 38.67457],\n            [-95.704593, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.704593, 39.614629],\n            [-95.927937, 39.927982],\n            [-96.374626, 39.927982],\n            [-96.59797, 39.614629],\n            [-96.374626, 39.301276],\n            [-95.927937, 39.301276],\n            [-95.704593, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.704593, 40.241335],\n            [-95.927937, 40.554688],\n            [-96.374626, 40.554688],\n            [-96.59797, 40.241335],\n            [-96.374626, 39.927982],\n            [-95.927937, 39.927982],\n            [-95.704593, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.034559, 31.780802],\n            [-95.257904, 32.094155],\n            [-95.704593, 32.094155],\n            [-95.927937, 31.780802],\n            [-95.704593, 31.467449],\n            [-95.257904, 31.467449],\n            [-95.034559, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.034559, 32.407508],\n            [-95.257904, 32.720861],\n            [-95.704593, 32.720861],\n            [-95.927937, 32.407508],\n            [-95.704593, 32.094155],\n            [-95.257904, 32.094155],\n            [-95.034559, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.034559, 33.034214],\n            [-95.257904, 33.347567],\n            [-95.704593, 33.347567],\n            [-95.927937, 33.034214],\n            [-95.704593, 32.720861],\n            [-95.257904, 32.720861],\n            [-95.034559, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.034559, 33.66092],\n            [-95.257904, 33.974274],\n            [-95.704593, 33.974274],\n            [-95.927937, 33.66092],\n            [-95.704593, 33.347567],\n            [-95.257904, 33.347567],\n            [-95.034559, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.034559, 34.287627],\n            [-95.257904, 34.60098],\n            [-95.704593, 34.60098],\n            [-95.927937, 34.287627],\n            [-95.704593, 33.974274],\n            [-95.257904, 33.974274],\n            [-95.034559, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.034559, 34.914333],\n            [-95.257904, 35.227686],\n            [-95.704593, 35.227686],\n            [-95.927937, 34.914333],\n            [-95.704593, 34.60098],\n            [-95.257904, 34.60098],\n            [-95.034559, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.034559, 35.541039],\n            [-95.257904, 35.854392],\n            [-95.704593, 35.854392],\n            [-95.927937, 35.541039],\n            [-95.704593, 35.227686],\n            [-95.257904, 35.227686],\n            [-95.034559, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.034559, 36.167745],\n            [-95.257904, 36.481098],\n            [-95.704593, 36.481098],\n            [-95.927937, 36.167745],\n            [-95.704593, 35.854392],\n            [-95.257904, 35.854392],\n            [-95.034559, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.034559, 36.794451],\n            [-95.257904, 37.107804],\n            [-95.704593, 37.107804],\n            [-95.927937, 36.794451],\n            [-95.704593, 36.481098],\n            [-95.257904, 36.481098],\n            [-95.034559, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.034559, 37.421157],\n            [-95.257904, 37.73451],\n            [-95.704593, 37.73451],\n            [-95.927937, 37.421157],\n            [-95.704593, 37.107804],\n            [-95.257904, 37.107804],\n            [-95.034559, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.034559, 38.047863],\n            [-95.257904, 38.361217],\n            [-95.704593, 38.361217],\n            [-95.927937, 38.047863],\n            [-95.704593, 37.73451],\n            [-95.257904, 37.73451],\n            [-95.034559, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.034559, 38.67457],\n            [-95.257904, 38.987923],\n            [-95.704593, 38.987923],\n            [-95.927937, 38.67457],\n            [-95.704593, 38.361217],\n            [-95.257904, 38.361217],\n            [-95.034559, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.034559, 39.301276],\n            [-95.257904, 39.614629],\n            [-95.704593, 39.614629],\n            [-95.927937, 39.301276],\n            [-95.704593, 38.987923],\n            [-95.257904, 38.987923],\n            [-95.034559, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.034559, 39.927982],\n            [-95.257904, 40.241335],\n            [-95.704593, 40.241335],\n            [-95.927937, 39.927982],\n            [-95.704593, 39.614629],\n            [-95.257904, 39.614629],\n            [-95.034559, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.364526, 31.467449],\n            [-94.587871, 31.780802],\n            [-95.034559, 31.780802],\n            [-95.257904, 31.467449],\n            [-95.034559, 31.154096],\n            [-94.587871, 31.154096],\n            [-94.364526, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.364526, 32.094155],\n            [-94.587871, 32.407508],\n            [-95.034559, 32.407508],\n            [-95.257904, 32.094155],\n            [-95.034559, 31.780802],\n            [-94.587871, 31.780802],\n            [-94.364526, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.364526, 32.720861],\n            [-94.587871, 33.034214],\n            [-95.034559, 33.034214],\n            [-95.257904, 32.720861],\n            [-95.034559, 32.407508],\n            [-94.587871, 32.407508],\n            [-94.364526, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.364526, 33.347567],\n            [-94.587871, 33.66092],\n            [-95.034559, 33.66092],\n            [-95.257904, 33.347567],\n            [-95.034559, 33.034214],\n            [-94.587871, 33.034214],\n            [-94.364526, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.364526, 33.974274],\n            [-94.587871, 34.287627],\n            [-95.034559, 34.287627],\n            [-95.257904, 33.974274],\n            [-95.034559, 33.66092],\n            [-94.587871, 33.66092],\n            [-94.364526, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.364526, 34.60098],\n            [-94.587871, 34.914333],\n            [-95.034559, 34.914333],\n            [-95.257904, 34.60098],\n            [-95.034559, 34.287627],\n            [-94.587871, 34.287627],\n            [-94.364526, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.364526, 35.227686],\n            [-94.587871, 35.541039],\n            [-95.034559, 35.541039],\n            [-95.257904, 35.227686],\n            [-95.034559, 34.914333],\n            [-94.587871, 34.914333],\n            [-94.364526, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.364526, 35.854392],\n            [-94.587871, 36.167745],\n            [-95.034559, 36.167745],\n            [-95.257904, 35.854392],\n            [-95.034559, 35.541039],\n            [-94.587871, 35.541039],\n            [-94.364526, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.364526, 36.481098],\n            [-94.587871, 36.794451],\n            [-95.034559, 36.794451],\n            [-95.257904, 36.481098],\n            [-95.034559, 36.167745],\n            [-94.587871, 36.167745],\n            [-94.364526, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.364526, 37.107804],\n            [-94.587871, 37.421157],\n            [-95.034559, 37.421157],\n            [-95.257904, 37.107804],\n            [-95.034559, 36.794451],\n            [-94.587871, 36.794451],\n            [-94.364526, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.364526, 37.73451],\n            [-94.587871, 38.047863],\n            [-95.034559, 38.047863],\n            [-95.257904, 37.73451],\n            [-95.034559, 37.421157],\n            [-94.587871, 37.421157],\n            [-94.364526, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.364526, 38.361217],\n            [-94.587871, 38.67457],\n            [-95.034559, 38.67457],\n            [-95.257904, 38.361217],\n            [-95.034559, 38.047863],\n            [-94.587871, 38.047863],\n            [-94.364526, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.364526, 38.987923],\n            [-94.587871, 39.301276],\n            [-95.034559, 39.301276],\n            [-95.257904, 38.987923],\n            [-95.034559, 38.67457],\n            [-94.587871, 38.67457],\n            [-94.364526, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.364526, 39.614629],\n            [-94.587871, 39.927982],\n            [-95.034559, 39.927982],\n            [-95.257904, 39.614629],\n            [-95.034559, 39.301276],\n            [-94.587871, 39.301276],\n            [-94.364526, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.364526, 40.241335],\n            [-94.587871, 40.554688],\n            [-95.034559, 40.554688],\n            [-95.257904, 40.241335],\n            [-95.034559, 39.927982],\n            [-94.587871, 39.927982],\n            [-94.364526, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.694493, 31.780802],\n            [-93.917837, 32.094155],\n            [-94.364526, 32.094155],\n            [-94.587871, 31.780802],\n            [-94.364526, 31.467449],\n            [-93.917837, 31.467449],\n            [-93.694493, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.694493, 32.407508],\n            [-93.917837, 32.720861],\n            [-94.364526, 32.720861],\n            [-94.587871, 32.407508],\n            [-94.364526, 32.094155],\n            [-93.917837, 32.094155],\n            [-93.694493, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.694493, 33.034214],\n            [-93.917837, 33.347567],\n            [-94.364526, 33.347567],\n            [-94.587871, 33.034214],\n            [-94.364526, 32.720861],\n            [-93.917837, 32.720861],\n            [-93.694493, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.694493, 33.66092],\n            [-93.917837, 33.974274],\n            [-94.364526, 33.974274],\n            [-94.587871, 33.66092],\n            [-94.364526, 33.347567],\n            [-93.917837, 33.347567],\n            [-93.694493, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.694493, 34.287627],\n            [-93.917837, 34.60098],\n            [-94.364526, 34.60098],\n            [-94.587871, 34.287627],\n            [-94.364526, 33.974274],\n            [-93.917837, 33.974274],\n            [-93.694493, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.694493, 34.914333],\n            [-93.917837, 35.227686],\n            [-94.364526, 35.227686],\n            [-94.587871, 34.914333],\n            [-94.364526, 34.60098],\n            [-93.917837, 34.60098],\n            [-93.694493, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.694493, 35.541039],\n            [-93.917837, 35.854392],\n            [-94.364526, 35.854392],\n            [-94.587871, 35.541039],\n            [-94.364526, 35.227686],\n            [-93.917837, 35.227686],\n            [-93.694493, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.694493, 36.167745],\n            [-93.917837, 36.481098],\n            [-94.364526, 36.481098],\n            [-94.587871, 36.167745],\n            [-94.364526, 35.854392],\n            [-93.917837, 35.854392],\n            [-93.694493, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.694493, 36.794451],\n            [-93.917837, 37.107804],\n            [-94.364526, 37.107804],\n            [-94.587871, 36.794451],\n            [-94.364526, 36.481098],\n            [-93.917837, 36.481098],\n            [-93.694493, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.694493, 37.421157],\n            [-93.917837, 37.73451],\n            [-94.364526, 37.73451],\n            [-94.587871, 37.421157],\n            [-94.364526, 37.107804],\n            [-93.917837, 37.107804],\n            [-93.694493, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.694493, 38.047863],\n            [-93.917837, 38.361217],\n            [-94.364526, 38.361217],\n            [-94.587871, 38.047863],\n            [-94.364526, 37.73451],\n            [-93.917837, 37.73451],\n            [-93.694493, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.694493, 38.67457],\n            [-93.917837, 38.987923],\n            [-94.364526, 38.987923],\n            [-94.587871, 38.67457],\n            [-94.364526, 38.361217],\n            [-93.917837, 38.361217],\n            [-93.694493, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.694493, 39.301276],\n            [-93.917837, 39.614629],\n            [-94.364526, 39.614629],\n            [-94.587871, 39.301276],\n            [-94.364526, 38.987923],\n            [-93.917837, 38.987923],\n            [-93.694493, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.694493, 39.927982],\n            [-93.917837, 40.241335],\n            [-94.364526, 40.241335],\n            [-94.587871, 39.927982],\n            [-94.364526, 39.614629],\n            [-93.917837, 39.614629],\n            [-93.694493, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.02446, 31.467449],\n            [-93.247804, 31.780802],\n            [-93.694493, 31.780802],\n            [-93.917837, 31.467449],\n            [-93.694493, 31.154096],\n            [-93.247804, 31.154096],\n            [-93.02446, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.02446, 32.094155],\n            [-93.247804, 32.407508],\n            [-93.694493, 32.407508],\n            [-93.917837, 32.094155],\n            [-93.694493, 31.780802],\n            [-93.247804, 31.780802],\n            [-93.02446, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.02446, 32.720861],\n            [-93.247804, 33.034214],\n            [-93.694493, 33.034214],\n            [-93.917837, 32.720861],\n            [-93.694493, 32.407508],\n            [-93.247804, 32.407508],\n            [-93.02446, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.02446, 33.347567],\n            [-93.247804, 33.66092],\n            [-93.694493, 33.66092],\n            [-93.917837, 33.347567],\n            [-93.694493, 33.034214],\n            [-93.247804, 33.034214],\n            [-93.02446, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.02446, 33.974274],\n            [-93.247804, 34.287627],\n            [-93.694493, 34.287627],\n            [-93.917837, 33.974274],\n            [-93.694493, 33.66092],\n            [-93.247804, 33.66092],\n            [-93.02446, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.02446, 34.60098],\n            [-93.247804, 34.914333],\n            [-93.694493, 34.914333],\n            [-93.917837, 34.60098],\n            [-93.694493, 34.287627],\n            [-93.247804, 34.287627],\n            [-93.02446, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.02446, 35.227686],\n            [-93.247804, 35.541039],\n            [-93.694493, 35.541039],\n            [-93.917837, 35.227686],\n            [-93.694493, 34.914333],\n            [-93.247804, 34.914333],\n            [-93.02446, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.02446, 35.854392],\n            [-93.247804, 36.167745],\n            [-93.694493, 36.167745],\n            [-93.917837, 35.854392],\n            [-93.694493, 35.541039],\n            [-93.247804, 35.541039],\n            [-93.02446, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.02446, 36.481098],\n            [-93.247804, 36.794451],\n            [-93.694493, 36.794451],\n            [-93.917837, 36.481098],\n            [-93.694493, 36.167745],\n            [-93.247804, 36.167745],\n            [-93.02446, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.02446, 37.107804],\n            [-93.247804, 37.421157],\n            [-93.694493, 37.421157],\n            [-93.917837, 37.107804],\n            [-93.694493, 36.794451],\n            [-93.247804, 36.794451],\n            [-93.02446, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.02446, 37.73451],\n            [-93.247804, 38.047863],\n            [-93.694493, 38.047863],\n            [-93.917837, 37.73451],\n            [-93.694493, 37.421157],\n            [-93.247804, 37.421157],\n            [-93.02446, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.02446, 38.361217],\n            [-93.247804, 38.67457],\n            [-93.694493, 38.67457],\n            [-93.917837, 38.361217],\n            [-93.694493, 38.047863],\n            [-93.247804, 38.047863],\n            [-93.02446, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.02446, 38.987923],\n            [-93.247804, 39.301276],\n            [-93.694493, 39.301276],\n            [-93.917837, 38.987923],\n            [-93.694493, 38.67457],\n            [-93.247804, 38.67457],\n            [-93.02446, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.02446, 39.614629],\n            [-93.247804, 39.927982],\n            [-93.694493, 39.927982],\n            [-93.917837, 39.614629],\n            [-93.694493, 39.301276],\n            [-93.247804, 39.301276],\n            [-93.02446, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.02446, 40.241335],\n            [-93.247804, 40.554688],\n            [-93.694493, 40.554688],\n            [-93.917837, 40.241335],\n            [-93.694493, 39.927982],\n            [-93.247804, 39.927982],\n            [-93.02446, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.354427, 31.780802],\n            [-92.577771, 32.094155],\n            [-93.02446, 32.094155],\n            [-93.247804, 31.780802],\n            [-93.02446, 31.467449],\n            [-92.577771, 31.467449],\n            [-92.354427, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.354427, 32.407508],\n            [-92.577771, 32.720861],\n            [-93.02446, 32.720861],\n            [-93.247804, 32.407508],\n            [-93.02446, 32.094155],\n            [-92.577771, 32.094155],\n            [-92.354427, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.354427, 33.034214],\n            [-92.577771, 33.347567],\n            [-93.02446, 33.347567],\n            [-93.247804, 33.034214],\n            [-93.02446, 32.720861],\n            [-92.577771, 32.720861],\n            [-92.354427, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.354427, 33.66092],\n            [-92.577771, 33.974274],\n            [-93.02446, 33.974274],\n            [-93.247804, 33.66092],\n            [-93.02446, 33.347567],\n            [-92.577771, 33.347567],\n            [-92.354427, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.354427, 34.287627],\n            [-92.577771, 34.60098],\n            [-93.02446, 34.60098],\n            [-93.247804, 34.287627],\n            [-93.02446, 33.974274],\n            [-92.577771, 33.974274],\n            [-92.354427, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.354427, 34.914333],\n            [-92.577771, 35.227686],\n            [-93.02446, 35.227686],\n            [-93.247804, 34.914333],\n            [-93.02446, 34.60098],\n            [-92.577771, 34.60098],\n            [-92.354427, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.354427, 35.541039],\n            [-92.577771, 35.854392],\n            [-93.02446, 35.854392],\n            [-93.247804, 35.541039],\n            [-93.02446, 35.227686],\n            [-92.577771, 35.227686],\n            [-92.354427, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.354427, 36.167745],\n            [-92.577771, 36.481098],\n            [-93.02446, 36.481098],\n            [-93.247804, 36.167745],\n            [-93.02446, 35.854392],\n            [-92.577771, 35.854392],\n            [-92.354427, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.354427, 36.794451],\n            [-92.577771, 37.107804],\n            [-93.02446, 37.107804],\n            [-93.247804, 36.794451],\n            [-93.02446, 36.481098],\n            [-92.577771, 36.481098],\n            [-92.354427, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.354427, 37.421157],\n            [-92.577771, 37.73451],\n            [-93.02446, 37.73451],\n            [-93.247804, 37.421157],\n            [-93.02446, 37.107804],\n            [-92.577771, 37.107804],\n            [-92.354427, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.354427, 38.047863],\n            [-92.577771, 38.361217],\n            [-93.02446, 38.361217],\n            [-93.247804, 38.047863],\n            [-93.02446, 37.73451],\n            [-92.577771, 37.73451],\n            [-92.354427, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.354427, 38.67457],\n            [-92.577771, 38.987923],\n            [-93.02446, 38.987923],\n            [-93.247804, 38.67457],\n            [-93.02446, 38.361217],\n            [-92.577771, 38.361217],\n            [-92.354427, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.354427, 39.301276],\n            [-92.577771, 39.614629],\n            [-93.02446, 39.614629],\n            [-93.247804, 39.301276],\n            [-93.02446, 38.987923],\n            [-92.577771, 38.987923],\n            [-92.354427, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.354427, 39.927982],\n            [-92.577771, 40.241335],\n            [-93.02446, 40.241335],\n            [-93.247804, 39.927982],\n            [-93.02446, 39.614629],\n            [-92.577771, 39.614629],\n            [-92.354427, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.684393, 31.467449],\n            [-91.907738, 31.780802],\n            [-92.354427, 31.780802],\n            [-92.577771, 31.467449],\n            [-92.354427, 31.154096],\n            [-91.907738, 31.154096],\n            [-91.684393, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.684393, 32.094155],\n            [-91.907738, 32.407508],\n            [-92.354427, 32.407508],\n            [-92.577771, 32.094155],\n            [-92.354427, 31.780802],\n            [-91.907738, 31.780802],\n            [-91.684393, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.684393, 32.720861],\n            [-91.907738, 33.034214],\n            [-92.354427, 33.034214],\n            [-92.577771, 32.720861],\n            [-92.354427, 32.407508],\n            [-91.907738, 32.407508],\n            [-91.684393, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.684393, 33.347567],\n            [-91.907738, 33.66092],\n            [-92.354427, 33.66092],\n            [-92.577771, 33.347567],\n            [-92.354427, 33.034214],\n            [-91.907738, 33.034214],\n            [-91.684393, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.684393, 33.974274],\n            [-91.907738, 34.287627],\n            [-92.354427, 34.287627],\n            [-92.577771, 33.974274],\n            [-92.354427, 33.66092],\n            [-91.907738, 33.66092],\n            [-91.684393, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.684393, 34.60098],\n            [-91.907738, 34.914333],\n            [-92.354427, 34.914333],\n            [-92.577771, 34.60098],\n            [-92.354427, 34.287627],\n            [-91.907738, 34.287627],\n            [-91.684393, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.684393, 35.227686],\n            [-91.907738, 35.541039],\n            [-92.354427, 35.541039],\n            [-92.577771, 35.227686],\n            [-92.354427, 34.914333],\n            [-91.907738, 34.914333],\n            [-91.684393, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.684393, 35.854392],\n            [-91.907738, 36.167745],\n            [-92.354427, 36.167745],\n            [-92.577771, 35.854392],\n            [-92.354427, 35.541039],\n            [-91.907738, 35.541039],\n            [-91.684393, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.684393, 36.481098],\n            [-91.907738, 36.794451],\n            [-92.354427, 36.794451],\n            [-92.577771, 36.481098],\n            [-92.354427, 36.167745],\n            [-91.907738, 36.167745],\n            [-91.684393, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.684393, 37.107804],\n            [-91.907738, 37.421157],\n            [-92.354427, 37.421157],\n            [-92.577771, 37.107804],\n            [-92.354427, 36.794451],\n            [-91.907738, 36.794451],\n            [-91.684393, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.684393, 37.73451],\n            [-91.907738, 38.047863],\n            [-92.354427, 38.047863],\n            [-92.577771, 37.73451],\n            [-92.354427, 37.421157],\n            [-91.907738, 37.421157],\n            [-91.684393, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.684393, 38.361217],\n            [-91.907738, 38.67457],\n            [-92.354427, 38.67457],\n            [-92.577771, 38.361217],\n            [-92.354427, 38.047863],\n            [-91.907738, 38.047863],\n            [-91.684393, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.684393, 38.987923],\n            [-91.907738, 39.301276],\n            [-92.354427, 39.301276],\n            [-92.577771, 38.987923],\n            [-92.354427, 38.67457],\n            [-91.907738, 38.67457],\n            [-91.684393, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.684393, 39.614629],\n            [-91.907738, 39.927982],\n            [-92.354427, 39.927982],\n            [-92.577771, 39.614629],\n            [-92.354427, 39.301276],\n            [-91.907738, 39.301276],\n            [-91.684393, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.684393, 40.241335],\n            [-91.907738, 40.554688],\n            [-92.354427, 40.554688],\n            [-92.577771, 40.241335],\n            [-92.354427, 39.927982],\n            [-91.907738, 39.927982],\n            [-91.684393, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.01436, 31.780802],\n            [-91.237704, 32.094155],\n            [-91.684393, 32.094155],\n            [-91.907738, 31.780802],\n            [-91.684393, 31.467449],\n            [-91.237704, 31.467449],\n            [-91.01436, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.01436, 32.407508],\n            [-91.237704, 32.720861],\n            [-91.684393, 32.720861],\n            [-91.907738, 32.407508],\n            [-91.684393, 32.094155],\n            [-91.237704, 32.094155],\n            [-91.01436, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.01436, 33.034214],\n            [-91.237704, 33.347567],\n            [-91.684393, 33.347567],\n            [-91.907738, 33.034214],\n            [-91.684393, 32.720861],\n            [-91.237704, 32.720861],\n            [-91.01436, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.01436, 33.66092],\n            [-91.237704, 33.974274],\n            [-91.684393, 33.974274],\n            [-91.907738, 33.66092],\n            [-91.684393, 33.347567],\n            [-91.237704, 33.347567],\n            [-91.01436, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.01436, 34.287627],\n            [-91.237704, 34.60098],\n            [-91.684393, 34.60098],\n            [-91.907738, 34.287627],\n            [-91.684393, 33.974274],\n            [-91.237704, 33.974274],\n            [-91.01436, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.01436, 34.914333],\n            [-91.237704, 35.227686],\n            [-91.684393, 35.227686],\n            [-91.907738, 34.914333],\n            [-91.684393, 34.60098],\n            [-91.237704, 34.60098],\n            [-91.01436, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.01436, 35.541039],\n            [-91.237704, 35.854392],\n            [-91.684393, 35.854392],\n            [-91.907738, 35.541039],\n            [-91.684393, 35.227686],\n            [-91.237704, 35.227686],\n            [-91.01436, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.01436, 36.167745],\n            [-91.237704, 36.481098],\n            [-91.684393, 36.481098],\n            [-91.907738, 36.167745],\n            [-91.684393, 35.854392],\n            [-91.237704, 35.854392],\n            [-91.01436, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.01436, 36.794451],\n            [-91.237704, 37.107804],\n            [-91.684393, 37.107804],\n            [-91.907738, 36.794451],\n            [-91.684393, 36.481098],\n            [-91.237704, 36.481098],\n            [-91.01436, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.01436, 37.421157],\n            [-91.237704, 37.73451],\n            [-91.684393, 37.73451],\n            [-91.907738, 37.421157],\n            [-91.684393, 37.107804],\n            [-91.237704, 37.107804],\n            [-91.01436, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.01436, 38.047863],\n            [-91.237704, 38.361217],\n            [-91.684393, 38.361217],\n            [-91.907738, 38.047863],\n            [-91.684393, 37.73451],\n            [-91.237704, 37.73451],\n            [-91.01436, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.01436, 38.67457],\n            [-91.237704, 38.987923],\n            [-91.684393, 38.987923],\n            [-91.907738, 38.67457],\n            [-91.684393, 38.361217],\n            [-91.237704, 38.361217],\n            [-91.01436, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.01436, 39.301276],\n            [-91.237704, 39.614629],\n            [-91.684393, 39.614629],\n            [-91.907738, 39.301276],\n            [-91.684393, 38.987923],\n            [-91.237704, 38.987923],\n            [-91.01436, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.01436, 39.927982],\n            [-91.237704, 40.241335],\n            [-91.684393, 40.241335],\n            [-91.907738, 39.927982],\n            [-91.684393, 39.614629],\n            [-91.237704, 39.614629],\n            [-91.01436, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.344327, 31.467449],\n            [-90.567671, 31.780802],\n            [-91.01436, 31.780802],\n            [-91.237704, 31.467449],\n            [-91.01436, 31.154096],\n            [-90.567671, 31.154096],\n            [-90.344327, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.344327, 32.094155],\n            [-90.567671, 32.407508],\n            [-91.01436, 32.407508],\n            [-91.237704, 32.094155],\n            [-91.01436, 31.780802],\n            [-90.567671, 31.780802],\n            [-90.344327, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.344327, 32.720861],\n            [-90.567671, 33.034214],\n            [-91.01436, 33.034214],\n            [-91.237704, 32.720861],\n            [-91.01436, 32.407508],\n            [-90.567671, 32.407508],\n            [-90.344327, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.344327, 33.347567],\n            [-90.567671, 33.66092],\n            [-91.01436, 33.66092],\n            [-91.237704, 33.347567],\n            [-91.01436, 33.034214],\n            [-90.567671, 33.034214],\n            [-90.344327, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.344327, 33.974274],\n            [-90.567671, 34.287627],\n            [-91.01436, 34.287627],\n            [-91.237704, 33.974274],\n            [-91.01436, 33.66092],\n            [-90.567671, 33.66092],\n            [-90.344327, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.344327, 34.60098],\n            [-90.567671, 34.914333],\n            [-91.01436, 34.914333],\n            [-91.237704, 34.60098],\n            [-91.01436, 34.287627],\n            [-90.567671, 34.287627],\n            [-90.344327, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.344327, 35.227686],\n            [-90.567671, 35.541039],\n            [-91.01436, 35.541039],\n            [-91.237704, 35.227686],\n            [-91.01436, 34.914333],\n            [-90.567671, 34.914333],\n            [-90.344327, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.344327, 35.854392],\n            [-90.567671, 36.167745],\n            [-91.01436, 36.167745],\n            [-91.237704, 35.854392],\n            [-91.01436, 35.541039],\n            [-90.567671, 35.541039],\n            [-90.344327, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.344327, 36.481098],\n            [-90.567671, 36.794451],\n            [-91.01436, 36.794451],\n            [-91.237704, 36.481098],\n            [-91.01436, 36.167745],\n            [-90.567671, 36.167745],\n            [-90.344327, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.344327, 37.107804],\n            [-90.567671, 37.421157],\n            [-91.01436, 37.421157],\n            [-91.237704, 37.107804],\n            [-91.01436, 36.794451],\n            [-90.567671, 36.794451],\n            [-90.344327, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.344327, 37.73451],\n            [-90.567671, 38.047863],\n            [-91.01436, 38.047863],\n            [-91.237704, 37.73451],\n            [-91.01436, 37.421157],\n            [-90.567671, 37.421157],\n            [-90.344327, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.344327, 38.361217],\n            [-90.567671, 38.67457],\n            [-91.01436, 38.67457],\n            [-91.237704, 38.361217],\n            [-91.01436, 38.047863],\n            [-90.567671, 38.047863],\n            [-90.344327, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.344327, 38.987923],\n            [-90.567671, 39.301276],\n            [-91.01436, 39.301276],\n            [-91.237704, 38.987923],\n            [-91.01436, 38.67457],\n            [-90.567671, 38.67457],\n            [-90.344327, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.344327, 39.614629],\n            [-90.567671, 39.927982],\n            [-91.01436, 39.927982],\n            [-91.237704, 39.614629],\n            [-91.01436, 39.301276],\n            [-90.567671, 39.301276],\n            [-90.344327, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90.344327, 40.241335],\n            [-90.567671, 40.554688],\n            [-91.01436, 40.554688],\n            [-91.237704, 40.241335],\n            [-91.01436, 39.927982],\n            [-90.567671, 39.927982],\n            [-90.344327, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.674294, 31.780802],\n            [-89.897638, 32.094155],\n            [-90.344327, 32.094155],\n            [-90.567671, 31.780802],\n            [-90.344327, 31.467449],\n            [-89.897638, 31.467449],\n            [-89.674294, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.674294, 32.407508],\n            [-89.897638, 32.720861],\n            [-90.344327, 32.720861],\n            [-90.567671, 32.407508],\n            [-90.344327, 32.094155],\n            [-89.897638, 32.094155],\n            [-89.674294, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.674294, 33.034214],\n            [-89.897638, 33.347567],\n            [-90.344327, 33.347567],\n            [-90.567671, 33.034214],\n            [-90.344327, 32.720861],\n            [-89.897638, 32.720861],\n            [-89.674294, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.674294, 33.66092],\n            [-89.897638, 33.974274],\n            [-90.344327, 33.974274],\n            [-90.567671, 33.66092],\n            [-90.344327, 33.347567],\n            [-89.897638, 33.347567],\n            [-89.674294, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.674294, 34.287627],\n            [-89.897638, 34.60098],\n            [-90.344327, 34.60098],\n            [-90.567671, 34.287627],\n            [-90.344327, 33.974274],\n            [-89.897638, 33.974274],\n            [-89.674294, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.674294, 34.914333],\n            [-89.897638, 35.227686],\n            [-90.344327, 35.227686],\n            [-90.567671, 34.914333],\n            [-90.344327, 34.60098],\n            [-89.897638, 34.60098],\n            [-89.674294, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.674294, 35.541039],\n            [-89.897638, 35.854392],\n            [-90.344327, 35.854392],\n            [-90.567671, 35.541039],\n            [-90.344327, 35.227686],\n            [-89.897638, 35.227686],\n            [-89.674294, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.674294, 36.167745],\n            [-89.897638, 36.481098],\n            [-90.344327, 36.481098],\n            [-90.567671, 36.167745],\n            [-90.344327, 35.854392],\n            [-89.897638, 35.854392],\n            [-89.674294, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.674294, 36.794451],\n            [-89.897638, 37.107804],\n            [-90.344327, 37.107804],\n            [-90.567671, 36.794451],\n            [-90.344327, 36.481098],\n            [-89.897638, 36.481098],\n            [-89.674294, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.674294, 37.421157],\n            [-89.897638, 37.73451],\n            [-90.344327, 37.73451],\n            [-90.567671, 37.421157],\n            [-90.344327, 37.107804],\n            [-89.897638, 37.107804],\n            [-89.674294, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.674294, 38.047863],\n            [-89.897638, 38.361217],\n            [-90.344327, 38.361217],\n            [-90.567671, 38.047863],\n            [-90.344327, 37.73451],\n            [-89.897638, 37.73451],\n            [-89.674294, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.674294, 38.67457],\n            [-89.897638, 38.987923],\n            [-90.344327, 38.987923],\n            [-90.567671, 38.67457],\n            [-90.344327, 38.361217],\n            [-89.897638, 38.361217],\n            [-89.674294, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.674294, 39.301276],\n            [-89.897638, 39.614629],\n            [-90.344327, 39.614629],\n            [-90.567671, 39.301276],\n            [-90.344327, 38.987923],\n            [-89.897638, 38.987923],\n            [-89.674294, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.674294, 39.927982],\n            [-89.897638, 40.241335],\n            [-90.344327, 40.241335],\n            [-90.567671, 39.927982],\n            [-90.344327, 39.614629],\n            [-89.897638, 39.614629],\n            [-89.674294, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.00426, 31.467449],\n            [-89.227605, 31.780802],\n            [-89.674294, 31.780802],\n            [-89.897638, 31.467449],\n            [-89.674294, 31.154096],\n            [-89.227605, 31.154096],\n            [-89.00426, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.00426, 32.094155],\n            [-89.227605, 32.407508],\n            [-89.674294, 32.407508],\n            [-89.897638, 32.094155],\n            [-89.674294, 31.780802],\n            [-89.227605, 31.780802],\n            [-89.00426, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.00426, 32.720861],\n            [-89.227605, 33.034214],\n            [-89.674294, 33.034214],\n            [-89.897638, 32.720861],\n            [-89.674294, 32.407508],\n            [-89.227605, 32.407508],\n            [-89.00426, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.00426, 33.347567],\n            [-89.227605, 33.66092],\n            [-89.674294, 33.66092],\n            [-89.897638, 33.347567],\n            [-89.674294, 33.034214],\n            [-89.227605, 33.034214],\n            [-89.00426, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.00426, 33.974274],\n            [-89.227605, 34.287627],\n            [-89.674294, 34.287627],\n            [-89.897638, 33.974274],\n            [-89.674294, 33.66092],\n            [-89.227605, 33.66092],\n            [-89.00426, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.00426, 34.60098],\n            [-89.227605, 34.914333],\n            [-89.674294, 34.914333],\n            [-89.897638, 34.60098],\n            [-89.674294, 34.287627],\n            [-89.227605, 34.287627],\n            [-89.00426, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.00426, 35.227686],\n            [-89.227605, 35.541039],\n            [-89.674294, 35.541039],\n            [-89.897638, 35.227686],\n            [-89.674294, 34.914333],\n            [-89.227605, 34.914333],\n            [-89.00426, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.00426, 35.854392],\n            [-89.227605, 36.167745],\n            [-89.674294, 36.167745],\n            [-89.897638, 35.854392],\n            [-89.674294, 35.541039],\n            [-89.227605, 35.541039],\n            [-89.00426, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.00426, 36.481098],\n            [-89.227605, 36.794451],\n            [-89.674294, 36.794451],\n            [-89.897638, 36.481098],\n            [-89.674294, 36.167745],\n            [-89.227605, 36.167745],\n            [-89.00426, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.00426, 37.107804],\n            [-89.227605, 37.421157],\n            [-89.674294, 37.421157],\n            [-89.897638, 37.107804],\n            [-89.674294, 36.794451],\n            [-89.227605, 36.794451],\n            [-89.00426, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.00426, 37.73451],\n            [-89.227605, 38.047863],\n            [-89.674294, 38.047863],\n            [-89.897638, 37.73451],\n            [-89.674294, 37.421157],\n            [-89.227605, 37.421157],\n            [-89.00426, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.00426, 38.361217],\n            [-89.227605, 38.67457],\n            [-89.674294, 38.67457],\n            [-89.897638, 38.361217],\n            [-89.674294, 38.047863],\n            [-89.227605, 38.047863],\n            [-89.00426, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.00426, 38.987923],\n            [-89.227605, 39.301276],\n            [-89.674294, 39.301276],\n            [-89.897638, 38.987923],\n            [-89.674294, 38.67457],\n            [-89.227605, 38.67457],\n            [-89.00426, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.00426, 39.614629],\n            [-89.227605, 39.927982],\n            [-89.674294, 39.927982],\n            [-89.897638, 39.614629],\n            [-89.674294, 39.301276],\n            [-89.227605, 39.301276],\n            [-89.00426, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.00426, 40.241335],\n            [-89.227605, 40.554688],\n            [-89.674294, 40.554688],\n            [-89.897638, 40.241335],\n            [-89.674294, 39.927982],\n            [-89.227605, 39.927982],\n            [-89.00426, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.334227, 31.780802],\n            [-88.557572, 32.094155],\n            [-89.00426, 32.094155],\n            [-89.227605, 31.780802],\n            [-89.00426, 31.467449],\n            [-88.557572, 31.467449],\n            [-88.334227, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.334227, 32.407508],\n            [-88.557572, 32.720861],\n            [-89.00426, 32.720861],\n            [-89.227605, 32.407508],\n            [-89.00426, 32.094155],\n            [-88.557572, 32.094155],\n            [-88.334227, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.334227, 33.034214],\n            [-88.557572, 33.347567],\n            [-89.00426, 33.347567],\n            [-89.227605, 33.034214],\n            [-89.00426, 32.720861],\n            [-88.557572, 32.720861],\n            [-88.334227, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.334227, 33.66092],\n            [-88.557572, 33.974274],\n            [-89.00426, 33.974274],\n            [-89.227605, 33.66092],\n            [-89.00426, 33.347567],\n            [-88.557572, 33.347567],\n            [-88.334227, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.334227, 34.287627],\n            [-88.557572, 34.60098],\n            [-89.00426, 34.60098],\n            [-89.227605, 34.287627],\n            [-89.00426, 33.974274],\n            [-88.557572, 33.974274],\n            [-88.334227, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.334227, 34.914333],\n            [-88.557572, 35.227686],\n            [-89.00426, 35.227686],\n            [-89.227605, 34.914333],\n            [-89.00426, 34.60098],\n            [-88.557572, 34.60098],\n            [-88.334227, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.334227, 35.541039],\n            [-88.557572, 35.854392],\n            [-89.00426, 35.854392],\n            [-89.227605, 35.541039],\n            [-89.00426, 35.227686],\n            [-88.557572, 35.227686],\n            [-88.334227, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.334227, 36.167745],\n            [-88.557572, 36.481098],\n            [-89.00426, 36.481098],\n            [-89.227605, 36.167745],\n            [-89.00426, 35.854392],\n            [-88.557572, 35.854392],\n            [-88.334227, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.334227, 36.794451],\n            [-88.557572, 37.107804],\n            [-89.00426, 37.107804],\n            [-89.227605, 36.794451],\n            [-89.00426, 36.481098],\n            [-88.557572, 36.481098],\n            [-88.334227, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.334227, 37.421157],\n            [-88.557572, 37.73451],\n            [-89.00426, 37.73451],\n            [-89.227605, 37.421157],\n            [-89.00426, 37.107804],\n            [-88.557572, 37.107804],\n            [-88.334227, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.334227, 38.047863],\n            [-88.557572, 38.361217],\n            [-89.00426, 38.361217],\n            [-89.227605, 38.047863],\n            [-89.00426, 37.73451],\n            [-88.557572, 37.73451],\n            [-88.334227, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.334227, 38.67457],\n            [-88.557572, 38.987923],\n            [-89.00426, 38.987923],\n            [-89.227605, 38.67457],\n            [-89.00426, 38.361217],\n            [-88.557572, 38.361217],\n            [-88.334227, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.334227, 39.301276],\n            [-88.557572, 39.614629],\n            [-89.00426, 39.614629],\n            [-89.227605, 39.301276],\n            [-89.00426, 38.987923],\n            [-88.557572, 38.987923],\n            [-88.334227, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.334227, 39.927982],\n            [-88.557572, 40.241335],\n            [-89.00426, 40.241335],\n            [-89.227605, 39.927982],\n            [-89.00426, 39.614629],\n            [-88.557572, 39.614629],\n            [-88.334227, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.664194, 31.467449],\n            [-87.887538, 31.780802],\n            [-88.334227, 31.780802],\n            [-88.557572, 31.467449],\n            [-88.334227, 31.154096],\n            [-87.887538, 31.154096],\n            [-87.664194, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.664194, 32.094155],\n            [-87.887538, 32.407508],\n            [-88.334227, 32.407508],\n            [-88.557572, 32.094155],\n            [-88.334227, 31.780802],\n            [-87.887538, 31.780802],\n            [-87.664194, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.664194, 32.720861],\n            [-87.887538, 33.034214],\n            [-88.334227, 33.034214],\n            [-88.557572, 32.720861],\n            [-88.334227, 32.407508],\n            [-87.887538, 32.407508],\n            [-87.664194, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.664194, 33.347567],\n            [-87.887538, 33.66092],\n            [-88.334227, 33.66092],\n            [-88.557572, 33.347567],\n            [-88.334227, 33.034214],\n            [-87.887538, 33.034214],\n            [-87.664194, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.664194, 33.974274],\n            [-87.887538, 34.287627],\n            [-88.334227, 34.287627],\n            [-88.557572, 33.974274],\n            [-88.334227, 33.66092],\n            [-87.887538, 33.66092],\n            [-87.664194, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.664194, 34.60098],\n            [-87.887538, 34.914333],\n            [-88.334227, 34.914333],\n            [-88.557572, 34.60098],\n            [-88.334227, 34.287627],\n            [-87.887538, 34.287627],\n            [-87.664194, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.664194, 35.227686],\n            [-87.887538, 35.541039],\n            [-88.334227, 35.541039],\n            [-88.557572, 35.227686],\n            [-88.334227, 34.914333],\n            [-87.887538, 34.914333],\n            [-87.664194, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.664194, 35.854392],\n            [-87.887538, 36.167745],\n            [-88.334227, 36.167745],\n            [-88.557572, 35.854392],\n            [-88.334227, 35.541039],\n            [-87.887538, 35.541039],\n            [-87.664194, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.664194, 36.481098],\n            [-87.887538, 36.794451],\n            [-88.334227, 36.794451],\n            [-88.557572, 36.481098],\n            [-88.334227, 36.167745],\n            [-87.887538, 36.167745],\n            [-87.664194, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.664194, 37.107804],\n            [-87.887538, 37.421157],\n            [-88.334227, 37.421157],\n            [-88.557572, 37.107804],\n            [-88.334227, 36.794451],\n            [-87.887538, 36.794451],\n            [-87.664194, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.664194, 37.73451],\n            [-87.887538, 38.047863],\n            [-88.334227, 38.047863],\n            [-88.557572, 37.73451],\n            [-88.334227, 37.421157],\n            [-87.887538, 37.421157],\n            [-87.664194, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.664194, 38.361217],\n            [-87.887538, 38.67457],\n            [-88.334227, 38.67457],\n            [-88.557572, 38.361217],\n            [-88.334227, 38.047863],\n            [-87.887538, 38.047863],\n            [-87.664194, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.664194, 38.987923],\n            [-87.887538, 39.301276],\n            [-88.334227, 39.301276],\n            [-88.557572, 38.987923],\n            [-88.334227, 38.67457],\n            [-87.887538, 38.67457],\n            [-87.664194, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.664194, 39.614629],\n            [-87.887538, 39.927982],\n            [-88.334227, 39.927982],\n            [-88.557572, 39.614629],\n            [-88.334227, 39.301276],\n            [-87.887538, 39.301276],\n            [-87.664194, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.664194, 40.241335],\n            [-87.887538, 40.554688],\n            [-88.334227, 40.554688],\n            [-88.557572, 40.241335],\n            [-88.334227, 39.927982],\n            [-87.887538, 39.927982],\n            [-87.664194, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.994161, 31.780802],\n            [-87.217505, 32.094155],\n            [-87.664194, 32.094155],\n            [-87.887538, 31.780802],\n            [-87.664194, 31.467449],\n            [-87.217505, 31.467449],\n            [-86.994161, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.994161, 32.407508],\n            [-87.217505, 32.720861],\n            [-87.664194, 32.720861],\n            [-87.887538, 32.407508],\n            [-87.664194, 32.094155],\n            [-87.217505, 32.094155],\n            [-86.994161, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.994161, 33.034214],\n            [-87.217505, 33.347567],\n            [-87.664194, 33.347567],\n            [-87.887538, 33.034214],\n            [-87.664194, 32.720861],\n            [-87.217505, 32.720861],\n            [-86.994161, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.994161, 33.66092],\n            [-87.217505, 33.974274],\n            [-87.664194, 33.974274],\n            [-87.887538, 33.66092],\n            [-87.664194, 33.347567],\n            [-87.217505, 33.347567],\n            [-86.994161, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.994161, 34.287627],\n            [-87.217505, 34.60098],\n            [-87.664194, 34.60098],\n            [-87.887538, 34.287627],\n            [-87.664194, 33.974274],\n            [-87.217505, 33.974274],\n            [-86.994161, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.994161, 34.914333],\n            [-87.217505, 35.227686],\n            [-87.664194, 35.227686],\n            [-87.887538, 34.914333],\n            [-87.664194, 34.60098],\n            [-87.217505, 34.60098],\n            [-86.994161, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.994161, 35.541039],\n            [-87.217505, 35.854392],\n            [-87.664194, 35.854392],\n            [-87.887538, 35.541039],\n            [-87.664194, 35.227686],\n            [-87.217505, 35.227686],\n            [-86.994161, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.994161, 36.167745],\n            [-87.217505, 36.481098],\n            [-87.664194, 36.481098],\n            [-87.887538, 36.167745],\n            [-87.664194, 35.854392],\n            [-87.217505, 35.854392],\n            [-86.994161, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.994161, 36.794451],\n            [-87.217505, 37.107804],\n            [-87.664194, 37.107804],\n            [-87.887538, 36.794451],\n            [-87.664194, 36.481098],\n            [-87.217505, 36.481098],\n            [-86.994161, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.994161, 37.421157],\n            [-87.217505, 37.73451],\n            [-87.664194, 37.73451],\n            [-87.887538, 37.421157],\n            [-87.664194, 37.107804],\n            [-87.217505, 37.107804],\n            [-86.994161, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.994161, 38.047863],\n            [-87.217505, 38.361217],\n            [-87.664194, 38.361217],\n            [-87.887538, 38.047863],\n            [-87.664194, 37.73451],\n            [-87.217505, 37.73451],\n            [-86.994161, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.994161, 38.67457],\n            [-87.217505, 38.987923],\n            [-87.664194, 38.987923],\n            [-87.887538, 38.67457],\n            [-87.664194, 38.361217],\n            [-87.217505, 38.361217],\n            [-86.994161, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.994161, 39.301276],\n            [-87.217505, 39.614629],\n            [-87.664194, 39.614629],\n            [-87.887538, 39.301276],\n            [-87.664194, 38.987923],\n            [-87.217505, 38.987923],\n            [-86.994161, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.994161, 39.927982],\n            [-87.217505, 40.241335],\n            [-87.664194, 40.241335],\n            [-87.887538, 39.927982],\n            [-87.664194, 39.614629],\n            [-87.217505, 39.614629],\n            [-86.994161, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.324127, 31.467449],\n            [-86.547472, 31.780802],\n            [-86.994161, 31.780802],\n            [-87.217505, 31.467449],\n            [-86.994161, 31.154096],\n            [-86.547472, 31.154096],\n            [-86.324127, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.324127, 32.094155],\n            [-86.547472, 32.407508],\n            [-86.994161, 32.407508],\n            [-87.217505, 32.094155],\n            [-86.994161, 31.780802],\n            [-86.547472, 31.780802],\n            [-86.324127, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.324127, 32.720861],\n            [-86.547472, 33.034214],\n            [-86.994161, 33.034214],\n            [-87.217505, 32.720861],\n            [-86.994161, 32.407508],\n            [-86.547472, 32.407508],\n            [-86.324127, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.324127, 33.347567],\n            [-86.547472, 33.66092],\n            [-86.994161, 33.66092],\n            [-87.217505, 33.347567],\n            [-86.994161, 33.034214],\n            [-86.547472, 33.034214],\n            [-86.324127, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.324127, 33.974274],\n            [-86.547472, 34.287627],\n            [-86.994161, 34.287627],\n            [-87.217505, 33.974274],\n            [-86.994161, 33.66092],\n            [-86.547472, 33.66092],\n            [-86.324127, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.324127, 34.60098],\n            [-86.547472, 34.914333],\n            [-86.994161, 34.914333],\n            [-87.217505, 34.60098],\n            [-86.994161, 34.287627],\n            [-86.547472, 34.287627],\n            [-86.324127, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.324127, 35.227686],\n            [-86.547472, 35.541039],\n            [-86.994161, 35.541039],\n            [-87.217505, 35.227686],\n            [-86.994161, 34.914333],\n            [-86.547472, 34.914333],\n            [-86.324127, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.324127, 35.854392],\n            [-86.547472, 36.167745],\n            [-86.994161, 36.167745],\n            [-87.217505, 35.854392],\n            [-86.994161, 35.541039],\n            [-86.547472, 35.541039],\n            [-86.324127, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.324127, 36.481098],\n            [-86.547472, 36.794451],\n            [-86.994161, 36.794451],\n            [-87.217505, 36.481098],\n            [-86.994161, 36.167745],\n            [-86.547472, 36.167745],\n            [-86.324127, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.324127, 37.107804],\n            [-86.547472, 37.421157],\n            [-86.994161, 37.421157],\n            [-87.217505, 37.107804],\n            [-86.994161, 36.794451],\n            [-86.547472, 36.794451],\n            [-86.324127, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.324127, 37.73451],\n            [-86.547472, 38.047863],\n            [-86.994161, 38.047863],\n            [-87.217505, 37.73451],\n            [-86.994161, 37.421157],\n            [-86.547472, 37.421157],\n            [-86.324127, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.324127, 38.361217],\n            [-86.547472, 38.67457],\n            [-86.994161, 38.67457],\n            [-87.217505, 38.361217],\n            [-86.994161, 38.047863],\n            [-86.547472, 38.047863],\n            [-86.324127, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.324127, 38.987923],\n            [-86.547472, 39.301276],\n            [-86.994161, 39.301276],\n            [-87.217505, 38.987923],\n            [-86.994161, 38.67457],\n            [-86.547472, 38.67457],\n            [-86.324127, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.324127, 39.614629],\n            [-86.547472, 39.927982],\n            [-86.994161, 39.927982],\n            [-87.217505, 39.614629],\n            [-86.994161, 39.301276],\n            [-86.547472, 39.301276],\n            [-86.324127, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-86.324127, 40.241335],\n            [-86.547472, 40.554688],\n            [-86.994161, 40.554688],\n            [-87.217505, 40.241335],\n            [-86.994161, 39.927982],\n            [-86.547472, 39.927982],\n            [-86.324127, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.654094, 31.780802],\n            [-85.877439, 32.094155],\n            [-86.324127, 32.094155],\n            [-86.547472, 31.780802],\n            [-86.324127, 31.467449],\n            [-85.877439, 31.467449],\n            [-85.654094, 31.780802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.654094, 32.407508],\n            [-85.877439, 32.720861],\n            [-86.324127, 32.720861],\n            [-86.547472, 32.407508],\n            [-86.324127, 32.094155],\n            [-85.877439, 32.094155],\n            [-85.654094, 32.407508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.654094, 33.034214],\n            [-85.877439, 33.347567],\n            [-86.324127, 33.347567],\n            [-86.547472, 33.034214],\n            [-86.324127, 32.720861],\n            [-85.877439, 32.720861],\n            [-85.654094, 33.034214]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.654094, 33.66092],\n            [-85.877439, 33.974274],\n            [-86.324127, 33.974274],\n            [-86.547472, 33.66092],\n            [-86.324127, 33.347567],\n            [-85.877439, 33.347567],\n            [-85.654094, 33.66092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.654094, 34.287627],\n            [-85.877439, 34.60098],\n            [-86.324127, 34.60098],\n            [-86.547472, 34.287627],\n            [-86.324127, 33.974274],\n            [-85.877439, 33.974274],\n            [-85.654094, 34.287627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.654094, 34.914333],\n            [-85.877439, 35.227686],\n            [-86.324127, 35.227686],\n            [-86.547472, 34.914333],\n            [-86.324127, 34.60098],\n            [-85.877439, 34.60098],\n            [-85.654094, 34.914333]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.654094, 35.541039],\n            [-85.877439, 35.854392],\n            [-86.324127, 35.854392],\n            [-86.547472, 35.541039],\n            [-86.324127, 35.227686],\n            [-85.877439, 35.227686],\n            [-85.654094, 35.541039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.654094, 36.167745],\n            [-85.877439, 36.481098],\n            [-86.324127, 36.481098],\n            [-86.547472, 36.167745],\n            [-86.324127, 35.854392],\n            [-85.877439, 35.854392],\n            [-85.654094, 36.167745]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.654094, 36.794451],\n            [-85.877439, 37.107804],\n            [-86.324127, 37.107804],\n            [-86.547472, 36.794451],\n            [-86.324127, 36.481098],\n            [-85.877439, 36.481098],\n            [-85.654094, 36.794451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.654094, 37.421157],\n            [-85.877439, 37.73451],\n            [-86.324127, 37.73451],\n            [-86.547472, 37.421157],\n            [-86.324127, 37.107804],\n            [-85.877439, 37.107804],\n            [-85.654094, 37.421157]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.654094, 38.047863],\n            [-85.877439, 38.361217],\n            [-86.324127, 38.361217],\n            [-86.547472, 38.047863],\n            [-86.324127, 37.73451],\n            [-85.877439, 37.73451],\n            [-85.654094, 38.047863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.654094, 38.67457],\n            [-85.877439, 38.987923],\n            [-86.324127, 38.987923],\n            [-86.547472, 38.67457],\n            [-86.324127, 38.361217],\n            [-85.877439, 38.361217],\n            [-85.654094, 38.67457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.654094, 39.301276],\n            [-85.877439, 39.614629],\n            [-86.324127, 39.614629],\n            [-86.547472, 39.301276],\n            [-86.324127, 38.987923],\n            [-85.877439, 38.987923],\n            [-85.654094, 39.301276]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.654094, 39.927982],\n            [-85.877439, 40.241335],\n            [-86.324127, 40.241335],\n            [-86.547472, 39.927982],\n            [-86.324127, 39.614629],\n            [-85.877439, 39.614629],\n            [-85.654094, 39.927982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-84.984061, 31.467449],\n            [-85.207405, 31.780802],\n            [-85.654094, 31.780802],\n            [-85.877439, 31.467449],\n            [-85.654094, 31.154096],\n            [-85.207405, 31.154096],\n            [-84.984061, 31.467449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-84.984061, 32.094155],\n            [-85.207405, 32.407508],\n            [-85.654094, 32.407508],\n            [-85.877439, 32.094155],\n            [-85.654094, 31.780802],\n            [-85.207405, 31.780802],\n            [-84.984061, 32.094155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-84.984061, 32.720861],\n            [-85.207405, 33.034214],\n            [-85.654094, 33.034214],\n            [-85.877439, 32.720861],\n            [-85.654094, 32.407508],\n            [-85.207405, 32.407508],\n            [-84.984061, 32.720861]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-84.984061, 33.347567],\n            [-85.207405, 33.66092],\n            [-85.654094, 33.66092],\n            [-85.877439, 33.347567],\n            [-85.654094, 33.034214],\n            [-85.207405, 33.034214],\n            [-84.984061, 33.347567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-84.984061, 33.974274],\n            [-85.207405, 34.287627],\n            [-85.654094, 34.287627],\n            [-85.877439, 33.974274],\n            [-85.654094, 33.66092],\n            [-85.207405, 33.66092],\n            [-84.984061, 33.974274]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-84.984061, 34.60098],\n            [-85.207405, 34.914333],\n            [-85.654094, 34.914333],\n            [-85.877439, 34.60098],\n            [-85.654094, 34.287627],\n            [-85.207405, 34.287627],\n            [-84.984061, 34.60098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-84.984061, 35.227686],\n            [-85.207405, 35.541039],\n            [-85.654094, 35.541039],\n            [-85.877439, 35.227686],\n            [-85.654094, 34.914333],\n            [-85.207405, 34.914333],\n            [-84.984061, 35.227686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-84.984061, 35.854392],\n            [-85.207405, 36.167745],\n            [-85.654094, 36.167745],\n            [-85.877439, 35.854392],\n            [-85.654094, 35.541039],\n            [-85.207405, 35.541039],\n            [-84.984061, 35.854392]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-84.984061, 36.481098],\n            [-85.207405, 36.794451],\n            [-85.654094, 36.794451],\n            [-85.877439, 36.481098],\n            [-85.654094, 36.167745],\n            [-85.207405, 36.167745],\n            [-84.984061, 36.481098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-84.984061, 37.107804],\n            [-85.207405, 37.421157],\n            [-85.654094, 37.421157],\n            [-85.877439, 37.107804],\n            [-85.654094, 36.794451],\n            [-85.207405, 36.794451],\n            [-84.984061, 37.107804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-84.984061, 37.73451],\n            [-85.207405, 38.047863],\n            [-85.654094, 38.047863],\n            [-85.877439, 37.73451],\n            [-85.654094, 37.421157],\n            [-85.207405, 37.421157],\n            [-84.984061, 37.73451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-84.984061, 38.361217],\n            [-85.207405, 38.67457],\n            [-85.654094, 38.67457],\n            [-85.877439, 38.361217],\n            [-85.654094, 38.047863],\n            [-85.207405, 38.047863],\n            [-84.984061, 38.361217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-84.984061, 38.987923],\n            [-85.207405, 39.301276],\n            [-85.654094, 39.301276],\n            [-85.877439, 38.987923],\n            [-85.654094, 38.67457],\n            [-85.207405, 38.67457],\n            [-84.984061, 38.987923]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-84.984061, 39.614629],\n            [-85.207405, 39.927982],\n            [-85.654094, 39.927982],\n            [-85.877439, 39.614629],\n            [-85.654094, 39.301276],\n            [-85.207405, 39.301276],\n            [-84.984061, 39.614629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-84.984061, 40.241335],\n            [-85.207405, 40.554688],\n            [-85.654094, 40.554688],\n            [-85.877439, 40.241335],\n            [-85.654094, 39.927982],\n            [-85.207405, 39.927982],\n            [-84.984061, 40.241335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-96.6357421875, 31.12819929911196, -84.9462890625, 40.58058466412764],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.6357421875, 31.12819929911196],\n            [-84.9462890625, 31.12819929911196],\n            [-84.9462890625, 40.58058466412764],\n            [-96.6357421875, 40.58058466412764],\n            [-96.6357421875, 31.12819929911196]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-hex-grid/test/out/big-bbox.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-203.177114, -70.086487],\n            [-207.283475, -63.819426],\n            [-215.496198, -63.819426],\n            [-219.602559, -70.086487],\n            [-215.496198, -76.353549],\n            [-207.283475, -76.353549],\n            [-203.177114, -70.086487]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-203.177114, -57.552365],\n            [-207.283475, -51.285303],\n            [-215.496198, -51.285303],\n            [-219.602559, -57.552365],\n            [-215.496198, -63.819426],\n            [-207.283475, -63.819426],\n            [-203.177114, -57.552365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-203.177114, -45.018242],\n            [-207.283475, -38.75118],\n            [-215.496198, -38.75118],\n            [-219.602559, -45.018242],\n            [-215.496198, -51.285303],\n            [-207.283475, -51.285303],\n            [-203.177114, -45.018242]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-203.177114, -32.484119],\n            [-207.283475, -26.217058],\n            [-215.496198, -26.217058],\n            [-219.602559, -32.484119],\n            [-215.496198, -38.75118],\n            [-207.283475, -38.75118],\n            [-203.177114, -32.484119]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-203.177114, -19.949996],\n            [-207.283475, -13.682935],\n            [-215.496198, -13.682935],\n            [-219.602559, -19.949996],\n            [-215.496198, -26.217058],\n            [-207.283475, -26.217058],\n            [-203.177114, -19.949996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-203.177114, -7.415873],\n            [-207.283475, -1.148812],\n            [-215.496198, -1.148812],\n            [-219.602559, -7.415873],\n            [-215.496198, -13.682935],\n            [-207.283475, -13.682935],\n            [-203.177114, -7.415873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-203.177114, 5.118249],\n            [-207.283475, 11.385311],\n            [-215.496198, 11.385311],\n            [-219.602559, 5.118249],\n            [-215.496198, -1.148812],\n            [-207.283475, -1.148812],\n            [-203.177114, 5.118249]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-203.177114, 17.652372],\n            [-207.283475, 23.919434],\n            [-215.496198, 23.919434],\n            [-219.602559, 17.652372],\n            [-215.496198, 11.385311],\n            [-207.283475, 11.385311],\n            [-203.177114, 17.652372]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-203.177114, 30.186495],\n            [-207.283475, 36.453556],\n            [-215.496198, 36.453556],\n            [-219.602559, 30.186495],\n            [-215.496198, 23.919434],\n            [-207.283475, 23.919434],\n            [-203.177114, 30.186495]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-203.177114, 42.720618],\n            [-207.283475, 48.987679],\n            [-215.496198, 48.987679],\n            [-219.602559, 42.720618],\n            [-215.496198, 36.453556],\n            [-207.283475, 36.453556],\n            [-203.177114, 42.720618]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-203.177114, 55.25474],\n            [-207.283475, 61.521802],\n            [-215.496198, 61.521802],\n            [-219.602559, 55.25474],\n            [-215.496198, 48.987679],\n            [-207.283475, 48.987679],\n            [-203.177114, 55.25474]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-203.177114, 67.788863],\n            [-207.283475, 74.055925],\n            [-215.496198, 74.055925],\n            [-219.602559, 67.788863],\n            [-215.496198, 61.521802],\n            [-207.283475, 61.521802],\n            [-203.177114, 67.788863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.85803, -63.819426],\n            [-194.964391, -57.552365],\n            [-203.177114, -57.552365],\n            [-207.283475, -63.819426],\n            [-203.177114, -70.086487],\n            [-194.964391, -70.086487],\n            [-190.85803, -63.819426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.85803, -51.285303],\n            [-194.964391, -45.018242],\n            [-203.177114, -45.018242],\n            [-207.283475, -51.285303],\n            [-203.177114, -57.552365],\n            [-194.964391, -57.552365],\n            [-190.85803, -51.285303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.85803, -38.75118],\n            [-194.964391, -32.484119],\n            [-203.177114, -32.484119],\n            [-207.283475, -38.75118],\n            [-203.177114, -45.018242],\n            [-194.964391, -45.018242],\n            [-190.85803, -38.75118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.85803, -26.217058],\n            [-194.964391, -19.949996],\n            [-203.177114, -19.949996],\n            [-207.283475, -26.217058],\n            [-203.177114, -32.484119],\n            [-194.964391, -32.484119],\n            [-190.85803, -26.217058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.85803, -13.682935],\n            [-194.964391, -7.415873],\n            [-203.177114, -7.415873],\n            [-207.283475, -13.682935],\n            [-203.177114, -19.949996],\n            [-194.964391, -19.949996],\n            [-190.85803, -13.682935]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.85803, -1.148812],\n            [-194.964391, 5.118249],\n            [-203.177114, 5.118249],\n            [-207.283475, -1.148812],\n            [-203.177114, -7.415873],\n            [-194.964391, -7.415873],\n            [-190.85803, -1.148812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.85803, 11.385311],\n            [-194.964391, 17.652372],\n            [-203.177114, 17.652372],\n            [-207.283475, 11.385311],\n            [-203.177114, 5.118249],\n            [-194.964391, 5.118249],\n            [-190.85803, 11.385311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.85803, 23.919434],\n            [-194.964391, 30.186495],\n            [-203.177114, 30.186495],\n            [-207.283475, 23.919434],\n            [-203.177114, 17.652372],\n            [-194.964391, 17.652372],\n            [-190.85803, 23.919434]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.85803, 36.453556],\n            [-194.964391, 42.720618],\n            [-203.177114, 42.720618],\n            [-207.283475, 36.453556],\n            [-203.177114, 30.186495],\n            [-194.964391, 30.186495],\n            [-190.85803, 36.453556]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.85803, 48.987679],\n            [-194.964391, 55.25474],\n            [-203.177114, 55.25474],\n            [-207.283475, 48.987679],\n            [-203.177114, 42.720618],\n            [-194.964391, 42.720618],\n            [-190.85803, 48.987679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.85803, 61.521802],\n            [-194.964391, 67.788863],\n            [-203.177114, 67.788863],\n            [-207.283475, 61.521802],\n            [-203.177114, 55.25474],\n            [-194.964391, 55.25474],\n            [-190.85803, 61.521802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-178.538946, -70.086487],\n            [-182.645308, -63.819426],\n            [-190.85803, -63.819426],\n            [-194.964391, -70.086487],\n            [-190.85803, -76.353549],\n            [-182.645308, -76.353549],\n            [-178.538946, -70.086487]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-178.538946, -57.552365],\n            [-182.645308, -51.285303],\n            [-190.85803, -51.285303],\n            [-194.964391, -57.552365],\n            [-190.85803, -63.819426],\n            [-182.645308, -63.819426],\n            [-178.538946, -57.552365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-178.538946, -45.018242],\n            [-182.645308, -38.75118],\n            [-190.85803, -38.75118],\n            [-194.964391, -45.018242],\n            [-190.85803, -51.285303],\n            [-182.645308, -51.285303],\n            [-178.538946, -45.018242]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-178.538946, -32.484119],\n            [-182.645308, -26.217058],\n            [-190.85803, -26.217058],\n            [-194.964391, -32.484119],\n            [-190.85803, -38.75118],\n            [-182.645308, -38.75118],\n            [-178.538946, -32.484119]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-178.538946, -19.949996],\n            [-182.645308, -13.682935],\n            [-190.85803, -13.682935],\n            [-194.964391, -19.949996],\n            [-190.85803, -26.217058],\n            [-182.645308, -26.217058],\n            [-178.538946, -19.949996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-178.538946, -7.415873],\n            [-182.645308, -1.148812],\n            [-190.85803, -1.148812],\n            [-194.964391, -7.415873],\n            [-190.85803, -13.682935],\n            [-182.645308, -13.682935],\n            [-178.538946, -7.415873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-178.538946, 5.118249],\n            [-182.645308, 11.385311],\n            [-190.85803, 11.385311],\n            [-194.964391, 5.118249],\n            [-190.85803, -1.148812],\n            [-182.645308, -1.148812],\n            [-178.538946, 5.118249]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-178.538946, 17.652372],\n            [-182.645308, 23.919434],\n            [-190.85803, 23.919434],\n            [-194.964391, 17.652372],\n            [-190.85803, 11.385311],\n            [-182.645308, 11.385311],\n            [-178.538946, 17.652372]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-178.538946, 30.186495],\n            [-182.645308, 36.453556],\n            [-190.85803, 36.453556],\n            [-194.964391, 30.186495],\n            [-190.85803, 23.919434],\n            [-182.645308, 23.919434],\n            [-178.538946, 30.186495]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-178.538946, 42.720618],\n            [-182.645308, 48.987679],\n            [-190.85803, 48.987679],\n            [-194.964391, 42.720618],\n            [-190.85803, 36.453556],\n            [-182.645308, 36.453556],\n            [-178.538946, 42.720618]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-178.538946, 55.25474],\n            [-182.645308, 61.521802],\n            [-190.85803, 61.521802],\n            [-194.964391, 55.25474],\n            [-190.85803, 48.987679],\n            [-182.645308, 48.987679],\n            [-178.538946, 55.25474]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-178.538946, 67.788863],\n            [-182.645308, 74.055925],\n            [-190.85803, 74.055925],\n            [-194.964391, 67.788863],\n            [-190.85803, 61.521802],\n            [-182.645308, 61.521802],\n            [-178.538946, 67.788863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-166.219863, -63.819426],\n            [-170.326224, -57.552365],\n            [-178.538946, -57.552365],\n            [-182.645308, -63.819426],\n            [-178.538946, -70.086487],\n            [-170.326224, -70.086487],\n            [-166.219863, -63.819426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-166.219863, -51.285303],\n            [-170.326224, -45.018242],\n            [-178.538946, -45.018242],\n            [-182.645308, -51.285303],\n            [-178.538946, -57.552365],\n            [-170.326224, -57.552365],\n            [-166.219863, -51.285303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-166.219863, -38.75118],\n            [-170.326224, -32.484119],\n            [-178.538946, -32.484119],\n            [-182.645308, -38.75118],\n            [-178.538946, -45.018242],\n            [-170.326224, -45.018242],\n            [-166.219863, -38.75118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-166.219863, -26.217058],\n            [-170.326224, -19.949996],\n            [-178.538946, -19.949996],\n            [-182.645308, -26.217058],\n            [-178.538946, -32.484119],\n            [-170.326224, -32.484119],\n            [-166.219863, -26.217058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-166.219863, -13.682935],\n            [-170.326224, -7.415873],\n            [-178.538946, -7.415873],\n            [-182.645308, -13.682935],\n            [-178.538946, -19.949996],\n            [-170.326224, -19.949996],\n            [-166.219863, -13.682935]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-166.219863, -1.148812],\n            [-170.326224, 5.118249],\n            [-178.538946, 5.118249],\n            [-182.645308, -1.148812],\n            [-178.538946, -7.415873],\n            [-170.326224, -7.415873],\n            [-166.219863, -1.148812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-166.219863, 11.385311],\n            [-170.326224, 17.652372],\n            [-178.538946, 17.652372],\n            [-182.645308, 11.385311],\n            [-178.538946, 5.118249],\n            [-170.326224, 5.118249],\n            [-166.219863, 11.385311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-166.219863, 23.919434],\n            [-170.326224, 30.186495],\n            [-178.538946, 30.186495],\n            [-182.645308, 23.919434],\n            [-178.538946, 17.652372],\n            [-170.326224, 17.652372],\n            [-166.219863, 23.919434]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-166.219863, 36.453556],\n            [-170.326224, 42.720618],\n            [-178.538946, 42.720618],\n            [-182.645308, 36.453556],\n            [-178.538946, 30.186495],\n            [-170.326224, 30.186495],\n            [-166.219863, 36.453556]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-166.219863, 48.987679],\n            [-170.326224, 55.25474],\n            [-178.538946, 55.25474],\n            [-182.645308, 48.987679],\n            [-178.538946, 42.720618],\n            [-170.326224, 42.720618],\n            [-166.219863, 48.987679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-166.219863, 61.521802],\n            [-170.326224, 67.788863],\n            [-178.538946, 67.788863],\n            [-182.645308, 61.521802],\n            [-178.538946, 55.25474],\n            [-170.326224, 55.25474],\n            [-166.219863, 61.521802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-153.900779, -70.086487],\n            [-158.00714, -63.819426],\n            [-166.219863, -63.819426],\n            [-170.326224, -70.086487],\n            [-166.219863, -76.353549],\n            [-158.00714, -76.353549],\n            [-153.900779, -70.086487]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-153.900779, -57.552365],\n            [-158.00714, -51.285303],\n            [-166.219863, -51.285303],\n            [-170.326224, -57.552365],\n            [-166.219863, -63.819426],\n            [-158.00714, -63.819426],\n            [-153.900779, -57.552365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-153.900779, -45.018242],\n            [-158.00714, -38.75118],\n            [-166.219863, -38.75118],\n            [-170.326224, -45.018242],\n            [-166.219863, -51.285303],\n            [-158.00714, -51.285303],\n            [-153.900779, -45.018242]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-153.900779, -32.484119],\n            [-158.00714, -26.217058],\n            [-166.219863, -26.217058],\n            [-170.326224, -32.484119],\n            [-166.219863, -38.75118],\n            [-158.00714, -38.75118],\n            [-153.900779, -32.484119]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-153.900779, -19.949996],\n            [-158.00714, -13.682935],\n            [-166.219863, -13.682935],\n            [-170.326224, -19.949996],\n            [-166.219863, -26.217058],\n            [-158.00714, -26.217058],\n            [-153.900779, -19.949996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-153.900779, -7.415873],\n            [-158.00714, -1.148812],\n            [-166.219863, -1.148812],\n            [-170.326224, -7.415873],\n            [-166.219863, -13.682935],\n            [-158.00714, -13.682935],\n            [-153.900779, -7.415873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-153.900779, 5.118249],\n            [-158.00714, 11.385311],\n            [-166.219863, 11.385311],\n            [-170.326224, 5.118249],\n            [-166.219863, -1.148812],\n            [-158.00714, -1.148812],\n            [-153.900779, 5.118249]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-153.900779, 17.652372],\n            [-158.00714, 23.919434],\n            [-166.219863, 23.919434],\n            [-170.326224, 17.652372],\n            [-166.219863, 11.385311],\n            [-158.00714, 11.385311],\n            [-153.900779, 17.652372]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-153.900779, 30.186495],\n            [-158.00714, 36.453556],\n            [-166.219863, 36.453556],\n            [-170.326224, 30.186495],\n            [-166.219863, 23.919434],\n            [-158.00714, 23.919434],\n            [-153.900779, 30.186495]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-153.900779, 42.720618],\n            [-158.00714, 48.987679],\n            [-166.219863, 48.987679],\n            [-170.326224, 42.720618],\n            [-166.219863, 36.453556],\n            [-158.00714, 36.453556],\n            [-153.900779, 42.720618]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-153.900779, 55.25474],\n            [-158.00714, 61.521802],\n            [-166.219863, 61.521802],\n            [-170.326224, 55.25474],\n            [-166.219863, 48.987679],\n            [-158.00714, 48.987679],\n            [-153.900779, 55.25474]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-153.900779, 67.788863],\n            [-158.00714, 74.055925],\n            [-166.219863, 74.055925],\n            [-170.326224, 67.788863],\n            [-166.219863, 61.521802],\n            [-158.00714, 61.521802],\n            [-153.900779, 67.788863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-141.581695, -63.819426],\n            [-145.688056, -57.552365],\n            [-153.900779, -57.552365],\n            [-158.00714, -63.819426],\n            [-153.900779, -70.086487],\n            [-145.688056, -70.086487],\n            [-141.581695, -63.819426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-141.581695, -51.285303],\n            [-145.688056, -45.018242],\n            [-153.900779, -45.018242],\n            [-158.00714, -51.285303],\n            [-153.900779, -57.552365],\n            [-145.688056, -57.552365],\n            [-141.581695, -51.285303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-141.581695, -38.75118],\n            [-145.688056, -32.484119],\n            [-153.900779, -32.484119],\n            [-158.00714, -38.75118],\n            [-153.900779, -45.018242],\n            [-145.688056, -45.018242],\n            [-141.581695, -38.75118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-141.581695, -26.217058],\n            [-145.688056, -19.949996],\n            [-153.900779, -19.949996],\n            [-158.00714, -26.217058],\n            [-153.900779, -32.484119],\n            [-145.688056, -32.484119],\n            [-141.581695, -26.217058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-141.581695, -13.682935],\n            [-145.688056, -7.415873],\n            [-153.900779, -7.415873],\n            [-158.00714, -13.682935],\n            [-153.900779, -19.949996],\n            [-145.688056, -19.949996],\n            [-141.581695, -13.682935]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-141.581695, -1.148812],\n            [-145.688056, 5.118249],\n            [-153.900779, 5.118249],\n            [-158.00714, -1.148812],\n            [-153.900779, -7.415873],\n            [-145.688056, -7.415873],\n            [-141.581695, -1.148812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-141.581695, 11.385311],\n            [-145.688056, 17.652372],\n            [-153.900779, 17.652372],\n            [-158.00714, 11.385311],\n            [-153.900779, 5.118249],\n            [-145.688056, 5.118249],\n            [-141.581695, 11.385311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-141.581695, 23.919434],\n            [-145.688056, 30.186495],\n            [-153.900779, 30.186495],\n            [-158.00714, 23.919434],\n            [-153.900779, 17.652372],\n            [-145.688056, 17.652372],\n            [-141.581695, 23.919434]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-141.581695, 36.453556],\n            [-145.688056, 42.720618],\n            [-153.900779, 42.720618],\n            [-158.00714, 36.453556],\n            [-153.900779, 30.186495],\n            [-145.688056, 30.186495],\n            [-141.581695, 36.453556]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-141.581695, 48.987679],\n            [-145.688056, 55.25474],\n            [-153.900779, 55.25474],\n            [-158.00714, 48.987679],\n            [-153.900779, 42.720618],\n            [-145.688056, 42.720618],\n            [-141.581695, 48.987679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-141.581695, 61.521802],\n            [-145.688056, 67.788863],\n            [-153.900779, 67.788863],\n            [-158.00714, 61.521802],\n            [-153.900779, 55.25474],\n            [-145.688056, 55.25474],\n            [-141.581695, 61.521802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-129.262611, -70.086487],\n            [-133.368973, -63.819426],\n            [-141.581695, -63.819426],\n            [-145.688056, -70.086487],\n            [-141.581695, -76.353549],\n            [-133.368973, -76.353549],\n            [-129.262611, -70.086487]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-129.262611, -57.552365],\n            [-133.368973, -51.285303],\n            [-141.581695, -51.285303],\n            [-145.688056, -57.552365],\n            [-141.581695, -63.819426],\n            [-133.368973, -63.819426],\n            [-129.262611, -57.552365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-129.262611, -45.018242],\n            [-133.368973, -38.75118],\n            [-141.581695, -38.75118],\n            [-145.688056, -45.018242],\n            [-141.581695, -51.285303],\n            [-133.368973, -51.285303],\n            [-129.262611, -45.018242]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-129.262611, -32.484119],\n            [-133.368973, -26.217058],\n            [-141.581695, -26.217058],\n            [-145.688056, -32.484119],\n            [-141.581695, -38.75118],\n            [-133.368973, -38.75118],\n            [-129.262611, -32.484119]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-129.262611, -19.949996],\n            [-133.368973, -13.682935],\n            [-141.581695, -13.682935],\n            [-145.688056, -19.949996],\n            [-141.581695, -26.217058],\n            [-133.368973, -26.217058],\n            [-129.262611, -19.949996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-129.262611, -7.415873],\n            [-133.368973, -1.148812],\n            [-141.581695, -1.148812],\n            [-145.688056, -7.415873],\n            [-141.581695, -13.682935],\n            [-133.368973, -13.682935],\n            [-129.262611, -7.415873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-129.262611, 5.118249],\n            [-133.368973, 11.385311],\n            [-141.581695, 11.385311],\n            [-145.688056, 5.118249],\n            [-141.581695, -1.148812],\n            [-133.368973, -1.148812],\n            [-129.262611, 5.118249]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-129.262611, 17.652372],\n            [-133.368973, 23.919434],\n            [-141.581695, 23.919434],\n            [-145.688056, 17.652372],\n            [-141.581695, 11.385311],\n            [-133.368973, 11.385311],\n            [-129.262611, 17.652372]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-129.262611, 30.186495],\n            [-133.368973, 36.453556],\n            [-141.581695, 36.453556],\n            [-145.688056, 30.186495],\n            [-141.581695, 23.919434],\n            [-133.368973, 23.919434],\n            [-129.262611, 30.186495]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-129.262611, 42.720618],\n            [-133.368973, 48.987679],\n            [-141.581695, 48.987679],\n            [-145.688056, 42.720618],\n            [-141.581695, 36.453556],\n            [-133.368973, 36.453556],\n            [-129.262611, 42.720618]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-129.262611, 55.25474],\n            [-133.368973, 61.521802],\n            [-141.581695, 61.521802],\n            [-145.688056, 55.25474],\n            [-141.581695, 48.987679],\n            [-133.368973, 48.987679],\n            [-129.262611, 55.25474]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-129.262611, 67.788863],\n            [-133.368973, 74.055925],\n            [-141.581695, 74.055925],\n            [-145.688056, 67.788863],\n            [-141.581695, 61.521802],\n            [-133.368973, 61.521802],\n            [-129.262611, 67.788863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-116.943527, -63.819426],\n            [-121.049889, -57.552365],\n            [-129.262611, -57.552365],\n            [-133.368973, -63.819426],\n            [-129.262611, -70.086487],\n            [-121.049889, -70.086487],\n            [-116.943527, -63.819426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-116.943527, -51.285303],\n            [-121.049889, -45.018242],\n            [-129.262611, -45.018242],\n            [-133.368973, -51.285303],\n            [-129.262611, -57.552365],\n            [-121.049889, -57.552365],\n            [-116.943527, -51.285303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-116.943527, -38.75118],\n            [-121.049889, -32.484119],\n            [-129.262611, -32.484119],\n            [-133.368973, -38.75118],\n            [-129.262611, -45.018242],\n            [-121.049889, -45.018242],\n            [-116.943527, -38.75118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-116.943527, -26.217058],\n            [-121.049889, -19.949996],\n            [-129.262611, -19.949996],\n            [-133.368973, -26.217058],\n            [-129.262611, -32.484119],\n            [-121.049889, -32.484119],\n            [-116.943527, -26.217058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-116.943527, -13.682935],\n            [-121.049889, -7.415873],\n            [-129.262611, -7.415873],\n            [-133.368973, -13.682935],\n            [-129.262611, -19.949996],\n            [-121.049889, -19.949996],\n            [-116.943527, -13.682935]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-116.943527, -1.148812],\n            [-121.049889, 5.118249],\n            [-129.262611, 5.118249],\n            [-133.368973, -1.148812],\n            [-129.262611, -7.415873],\n            [-121.049889, -7.415873],\n            [-116.943527, -1.148812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-116.943527, 11.385311],\n            [-121.049889, 17.652372],\n            [-129.262611, 17.652372],\n            [-133.368973, 11.385311],\n            [-129.262611, 5.118249],\n            [-121.049889, 5.118249],\n            [-116.943527, 11.385311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-116.943527, 23.919434],\n            [-121.049889, 30.186495],\n            [-129.262611, 30.186495],\n            [-133.368973, 23.919434],\n            [-129.262611, 17.652372],\n            [-121.049889, 17.652372],\n            [-116.943527, 23.919434]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-116.943527, 36.453556],\n            [-121.049889, 42.720618],\n            [-129.262611, 42.720618],\n            [-133.368973, 36.453556],\n            [-129.262611, 30.186495],\n            [-121.049889, 30.186495],\n            [-116.943527, 36.453556]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-116.943527, 48.987679],\n            [-121.049889, 55.25474],\n            [-129.262611, 55.25474],\n            [-133.368973, 48.987679],\n            [-129.262611, 42.720618],\n            [-121.049889, 42.720618],\n            [-116.943527, 48.987679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-116.943527, 61.521802],\n            [-121.049889, 67.788863],\n            [-129.262611, 67.788863],\n            [-133.368973, 61.521802],\n            [-129.262611, 55.25474],\n            [-121.049889, 55.25474],\n            [-116.943527, 61.521802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-104.624444, -70.086487],\n            [-108.730805, -63.819426],\n            [-116.943527, -63.819426],\n            [-121.049889, -70.086487],\n            [-116.943527, -76.353549],\n            [-108.730805, -76.353549],\n            [-104.624444, -70.086487]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-104.624444, -57.552365],\n            [-108.730805, -51.285303],\n            [-116.943527, -51.285303],\n            [-121.049889, -57.552365],\n            [-116.943527, -63.819426],\n            [-108.730805, -63.819426],\n            [-104.624444, -57.552365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-104.624444, -45.018242],\n            [-108.730805, -38.75118],\n            [-116.943527, -38.75118],\n            [-121.049889, -45.018242],\n            [-116.943527, -51.285303],\n            [-108.730805, -51.285303],\n            [-104.624444, -45.018242]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-104.624444, -32.484119],\n            [-108.730805, -26.217058],\n            [-116.943527, -26.217058],\n            [-121.049889, -32.484119],\n            [-116.943527, -38.75118],\n            [-108.730805, -38.75118],\n            [-104.624444, -32.484119]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-104.624444, -19.949996],\n            [-108.730805, -13.682935],\n            [-116.943527, -13.682935],\n            [-121.049889, -19.949996],\n            [-116.943527, -26.217058],\n            [-108.730805, -26.217058],\n            [-104.624444, -19.949996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-104.624444, -7.415873],\n            [-108.730805, -1.148812],\n            [-116.943527, -1.148812],\n            [-121.049889, -7.415873],\n            [-116.943527, -13.682935],\n            [-108.730805, -13.682935],\n            [-104.624444, -7.415873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-104.624444, 5.118249],\n            [-108.730805, 11.385311],\n            [-116.943527, 11.385311],\n            [-121.049889, 5.118249],\n            [-116.943527, -1.148812],\n            [-108.730805, -1.148812],\n            [-104.624444, 5.118249]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-104.624444, 17.652372],\n            [-108.730805, 23.919434],\n            [-116.943527, 23.919434],\n            [-121.049889, 17.652372],\n            [-116.943527, 11.385311],\n            [-108.730805, 11.385311],\n            [-104.624444, 17.652372]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-104.624444, 30.186495],\n            [-108.730805, 36.453556],\n            [-116.943527, 36.453556],\n            [-121.049889, 30.186495],\n            [-116.943527, 23.919434],\n            [-108.730805, 23.919434],\n            [-104.624444, 30.186495]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-104.624444, 42.720618],\n            [-108.730805, 48.987679],\n            [-116.943527, 48.987679],\n            [-121.049889, 42.720618],\n            [-116.943527, 36.453556],\n            [-108.730805, 36.453556],\n            [-104.624444, 42.720618]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-104.624444, 55.25474],\n            [-108.730805, 61.521802],\n            [-116.943527, 61.521802],\n            [-121.049889, 55.25474],\n            [-116.943527, 48.987679],\n            [-108.730805, 48.987679],\n            [-104.624444, 55.25474]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-104.624444, 67.788863],\n            [-108.730805, 74.055925],\n            [-116.943527, 74.055925],\n            [-121.049889, 67.788863],\n            [-116.943527, 61.521802],\n            [-108.730805, 61.521802],\n            [-104.624444, 67.788863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.30536, -63.819426],\n            [-96.411721, -57.552365],\n            [-104.624444, -57.552365],\n            [-108.730805, -63.819426],\n            [-104.624444, -70.086487],\n            [-96.411721, -70.086487],\n            [-92.30536, -63.819426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.30536, -51.285303],\n            [-96.411721, -45.018242],\n            [-104.624444, -45.018242],\n            [-108.730805, -51.285303],\n            [-104.624444, -57.552365],\n            [-96.411721, -57.552365],\n            [-92.30536, -51.285303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.30536, -38.75118],\n            [-96.411721, -32.484119],\n            [-104.624444, -32.484119],\n            [-108.730805, -38.75118],\n            [-104.624444, -45.018242],\n            [-96.411721, -45.018242],\n            [-92.30536, -38.75118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.30536, -26.217058],\n            [-96.411721, -19.949996],\n            [-104.624444, -19.949996],\n            [-108.730805, -26.217058],\n            [-104.624444, -32.484119],\n            [-96.411721, -32.484119],\n            [-92.30536, -26.217058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.30536, -13.682935],\n            [-96.411721, -7.415873],\n            [-104.624444, -7.415873],\n            [-108.730805, -13.682935],\n            [-104.624444, -19.949996],\n            [-96.411721, -19.949996],\n            [-92.30536, -13.682935]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.30536, -1.148812],\n            [-96.411721, 5.118249],\n            [-104.624444, 5.118249],\n            [-108.730805, -1.148812],\n            [-104.624444, -7.415873],\n            [-96.411721, -7.415873],\n            [-92.30536, -1.148812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.30536, 11.385311],\n            [-96.411721, 17.652372],\n            [-104.624444, 17.652372],\n            [-108.730805, 11.385311],\n            [-104.624444, 5.118249],\n            [-96.411721, 5.118249],\n            [-92.30536, 11.385311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.30536, 23.919434],\n            [-96.411721, 30.186495],\n            [-104.624444, 30.186495],\n            [-108.730805, 23.919434],\n            [-104.624444, 17.652372],\n            [-96.411721, 17.652372],\n            [-92.30536, 23.919434]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.30536, 36.453556],\n            [-96.411721, 42.720618],\n            [-104.624444, 42.720618],\n            [-108.730805, 36.453556],\n            [-104.624444, 30.186495],\n            [-96.411721, 30.186495],\n            [-92.30536, 36.453556]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.30536, 48.987679],\n            [-96.411721, 55.25474],\n            [-104.624444, 55.25474],\n            [-108.730805, 48.987679],\n            [-104.624444, 42.720618],\n            [-96.411721, 42.720618],\n            [-92.30536, 48.987679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.30536, 61.521802],\n            [-96.411721, 67.788863],\n            [-104.624444, 67.788863],\n            [-108.730805, 61.521802],\n            [-104.624444, 55.25474],\n            [-96.411721, 55.25474],\n            [-92.30536, 61.521802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.986276, -70.086487],\n            [-84.092637, -63.819426],\n            [-92.30536, -63.819426],\n            [-96.411721, -70.086487],\n            [-92.30536, -76.353549],\n            [-84.092637, -76.353549],\n            [-79.986276, -70.086487]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.986276, -57.552365],\n            [-84.092637, -51.285303],\n            [-92.30536, -51.285303],\n            [-96.411721, -57.552365],\n            [-92.30536, -63.819426],\n            [-84.092637, -63.819426],\n            [-79.986276, -57.552365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.986276, -45.018242],\n            [-84.092637, -38.75118],\n            [-92.30536, -38.75118],\n            [-96.411721, -45.018242],\n            [-92.30536, -51.285303],\n            [-84.092637, -51.285303],\n            [-79.986276, -45.018242]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.986276, -32.484119],\n            [-84.092637, -26.217058],\n            [-92.30536, -26.217058],\n            [-96.411721, -32.484119],\n            [-92.30536, -38.75118],\n            [-84.092637, -38.75118],\n            [-79.986276, -32.484119]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.986276, -19.949996],\n            [-84.092637, -13.682935],\n            [-92.30536, -13.682935],\n            [-96.411721, -19.949996],\n            [-92.30536, -26.217058],\n            [-84.092637, -26.217058],\n            [-79.986276, -19.949996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.986276, -7.415873],\n            [-84.092637, -1.148812],\n            [-92.30536, -1.148812],\n            [-96.411721, -7.415873],\n            [-92.30536, -13.682935],\n            [-84.092637, -13.682935],\n            [-79.986276, -7.415873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.986276, 5.118249],\n            [-84.092637, 11.385311],\n            [-92.30536, 11.385311],\n            [-96.411721, 5.118249],\n            [-92.30536, -1.148812],\n            [-84.092637, -1.148812],\n            [-79.986276, 5.118249]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.986276, 17.652372],\n            [-84.092637, 23.919434],\n            [-92.30536, 23.919434],\n            [-96.411721, 17.652372],\n            [-92.30536, 11.385311],\n            [-84.092637, 11.385311],\n            [-79.986276, 17.652372]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.986276, 30.186495],\n            [-84.092637, 36.453556],\n            [-92.30536, 36.453556],\n            [-96.411721, 30.186495],\n            [-92.30536, 23.919434],\n            [-84.092637, 23.919434],\n            [-79.986276, 30.186495]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.986276, 42.720618],\n            [-84.092637, 48.987679],\n            [-92.30536, 48.987679],\n            [-96.411721, 42.720618],\n            [-92.30536, 36.453556],\n            [-84.092637, 36.453556],\n            [-79.986276, 42.720618]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.986276, 55.25474],\n            [-84.092637, 61.521802],\n            [-92.30536, 61.521802],\n            [-96.411721, 55.25474],\n            [-92.30536, 48.987679],\n            [-84.092637, 48.987679],\n            [-79.986276, 55.25474]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.986276, 67.788863],\n            [-84.092637, 74.055925],\n            [-92.30536, 74.055925],\n            [-96.411721, 67.788863],\n            [-92.30536, 61.521802],\n            [-84.092637, 61.521802],\n            [-79.986276, 67.788863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.667192, -63.819426],\n            [-71.773554, -57.552365],\n            [-79.986276, -57.552365],\n            [-84.092637, -63.819426],\n            [-79.986276, -70.086487],\n            [-71.773554, -70.086487],\n            [-67.667192, -63.819426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.667192, -51.285303],\n            [-71.773554, -45.018242],\n            [-79.986276, -45.018242],\n            [-84.092637, -51.285303],\n            [-79.986276, -57.552365],\n            [-71.773554, -57.552365],\n            [-67.667192, -51.285303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.667192, -38.75118],\n            [-71.773554, -32.484119],\n            [-79.986276, -32.484119],\n            [-84.092637, -38.75118],\n            [-79.986276, -45.018242],\n            [-71.773554, -45.018242],\n            [-67.667192, -38.75118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.667192, -26.217058],\n            [-71.773554, -19.949996],\n            [-79.986276, -19.949996],\n            [-84.092637, -26.217058],\n            [-79.986276, -32.484119],\n            [-71.773554, -32.484119],\n            [-67.667192, -26.217058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.667192, -13.682935],\n            [-71.773554, -7.415873],\n            [-79.986276, -7.415873],\n            [-84.092637, -13.682935],\n            [-79.986276, -19.949996],\n            [-71.773554, -19.949996],\n            [-67.667192, -13.682935]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.667192, -1.148812],\n            [-71.773554, 5.118249],\n            [-79.986276, 5.118249],\n            [-84.092637, -1.148812],\n            [-79.986276, -7.415873],\n            [-71.773554, -7.415873],\n            [-67.667192, -1.148812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.667192, 11.385311],\n            [-71.773554, 17.652372],\n            [-79.986276, 17.652372],\n            [-84.092637, 11.385311],\n            [-79.986276, 5.118249],\n            [-71.773554, 5.118249],\n            [-67.667192, 11.385311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.667192, 23.919434],\n            [-71.773554, 30.186495],\n            [-79.986276, 30.186495],\n            [-84.092637, 23.919434],\n            [-79.986276, 17.652372],\n            [-71.773554, 17.652372],\n            [-67.667192, 23.919434]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.667192, 36.453556],\n            [-71.773554, 42.720618],\n            [-79.986276, 42.720618],\n            [-84.092637, 36.453556],\n            [-79.986276, 30.186495],\n            [-71.773554, 30.186495],\n            [-67.667192, 36.453556]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.667192, 48.987679],\n            [-71.773554, 55.25474],\n            [-79.986276, 55.25474],\n            [-84.092637, 48.987679],\n            [-79.986276, 42.720618],\n            [-71.773554, 42.720618],\n            [-67.667192, 48.987679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.667192, 61.521802],\n            [-71.773554, 67.788863],\n            [-79.986276, 67.788863],\n            [-84.092637, 61.521802],\n            [-79.986276, 55.25474],\n            [-71.773554, 55.25474],\n            [-67.667192, 61.521802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-55.348109, -70.086487],\n            [-59.45447, -63.819426],\n            [-67.667192, -63.819426],\n            [-71.773554, -70.086487],\n            [-67.667192, -76.353549],\n            [-59.45447, -76.353549],\n            [-55.348109, -70.086487]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-55.348109, -57.552365],\n            [-59.45447, -51.285303],\n            [-67.667192, -51.285303],\n            [-71.773554, -57.552365],\n            [-67.667192, -63.819426],\n            [-59.45447, -63.819426],\n            [-55.348109, -57.552365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-55.348109, -45.018242],\n            [-59.45447, -38.75118],\n            [-67.667192, -38.75118],\n            [-71.773554, -45.018242],\n            [-67.667192, -51.285303],\n            [-59.45447, -51.285303],\n            [-55.348109, -45.018242]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-55.348109, -32.484119],\n            [-59.45447, -26.217058],\n            [-67.667192, -26.217058],\n            [-71.773554, -32.484119],\n            [-67.667192, -38.75118],\n            [-59.45447, -38.75118],\n            [-55.348109, -32.484119]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-55.348109, -19.949996],\n            [-59.45447, -13.682935],\n            [-67.667192, -13.682935],\n            [-71.773554, -19.949996],\n            [-67.667192, -26.217058],\n            [-59.45447, -26.217058],\n            [-55.348109, -19.949996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-55.348109, -7.415873],\n            [-59.45447, -1.148812],\n            [-67.667192, -1.148812],\n            [-71.773554, -7.415873],\n            [-67.667192, -13.682935],\n            [-59.45447, -13.682935],\n            [-55.348109, -7.415873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-55.348109, 5.118249],\n            [-59.45447, 11.385311],\n            [-67.667192, 11.385311],\n            [-71.773554, 5.118249],\n            [-67.667192, -1.148812],\n            [-59.45447, -1.148812],\n            [-55.348109, 5.118249]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-55.348109, 17.652372],\n            [-59.45447, 23.919434],\n            [-67.667192, 23.919434],\n            [-71.773554, 17.652372],\n            [-67.667192, 11.385311],\n            [-59.45447, 11.385311],\n            [-55.348109, 17.652372]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-55.348109, 30.186495],\n            [-59.45447, 36.453556],\n            [-67.667192, 36.453556],\n            [-71.773554, 30.186495],\n            [-67.667192, 23.919434],\n            [-59.45447, 23.919434],\n            [-55.348109, 30.186495]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-55.348109, 42.720618],\n            [-59.45447, 48.987679],\n            [-67.667192, 48.987679],\n            [-71.773554, 42.720618],\n            [-67.667192, 36.453556],\n            [-59.45447, 36.453556],\n            [-55.348109, 42.720618]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-55.348109, 55.25474],\n            [-59.45447, 61.521802],\n            [-67.667192, 61.521802],\n            [-71.773554, 55.25474],\n            [-67.667192, 48.987679],\n            [-59.45447, 48.987679],\n            [-55.348109, 55.25474]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-55.348109, 67.788863],\n            [-59.45447, 74.055925],\n            [-67.667192, 74.055925],\n            [-71.773554, 67.788863],\n            [-67.667192, 61.521802],\n            [-59.45447, 61.521802],\n            [-55.348109, 67.788863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-43.029025, -63.819426],\n            [-47.135386, -57.552365],\n            [-55.348109, -57.552365],\n            [-59.45447, -63.819426],\n            [-55.348109, -70.086487],\n            [-47.135386, -70.086487],\n            [-43.029025, -63.819426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-43.029025, -51.285303],\n            [-47.135386, -45.018242],\n            [-55.348109, -45.018242],\n            [-59.45447, -51.285303],\n            [-55.348109, -57.552365],\n            [-47.135386, -57.552365],\n            [-43.029025, -51.285303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-43.029025, -38.75118],\n            [-47.135386, -32.484119],\n            [-55.348109, -32.484119],\n            [-59.45447, -38.75118],\n            [-55.348109, -45.018242],\n            [-47.135386, -45.018242],\n            [-43.029025, -38.75118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-43.029025, -26.217058],\n            [-47.135386, -19.949996],\n            [-55.348109, -19.949996],\n            [-59.45447, -26.217058],\n            [-55.348109, -32.484119],\n            [-47.135386, -32.484119],\n            [-43.029025, -26.217058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-43.029025, -13.682935],\n            [-47.135386, -7.415873],\n            [-55.348109, -7.415873],\n            [-59.45447, -13.682935],\n            [-55.348109, -19.949996],\n            [-47.135386, -19.949996],\n            [-43.029025, -13.682935]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-43.029025, -1.148812],\n            [-47.135386, 5.118249],\n            [-55.348109, 5.118249],\n            [-59.45447, -1.148812],\n            [-55.348109, -7.415873],\n            [-47.135386, -7.415873],\n            [-43.029025, -1.148812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-43.029025, 11.385311],\n            [-47.135386, 17.652372],\n            [-55.348109, 17.652372],\n            [-59.45447, 11.385311],\n            [-55.348109, 5.118249],\n            [-47.135386, 5.118249],\n            [-43.029025, 11.385311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-43.029025, 23.919434],\n            [-47.135386, 30.186495],\n            [-55.348109, 30.186495],\n            [-59.45447, 23.919434],\n            [-55.348109, 17.652372],\n            [-47.135386, 17.652372],\n            [-43.029025, 23.919434]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-43.029025, 36.453556],\n            [-47.135386, 42.720618],\n            [-55.348109, 42.720618],\n            [-59.45447, 36.453556],\n            [-55.348109, 30.186495],\n            [-47.135386, 30.186495],\n            [-43.029025, 36.453556]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-43.029025, 48.987679],\n            [-47.135386, 55.25474],\n            [-55.348109, 55.25474],\n            [-59.45447, 48.987679],\n            [-55.348109, 42.720618],\n            [-47.135386, 42.720618],\n            [-43.029025, 48.987679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-43.029025, 61.521802],\n            [-47.135386, 67.788863],\n            [-55.348109, 67.788863],\n            [-59.45447, 61.521802],\n            [-55.348109, 55.25474],\n            [-47.135386, 55.25474],\n            [-43.029025, 61.521802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30.709941, -70.086487],\n            [-34.816302, -63.819426],\n            [-43.029025, -63.819426],\n            [-47.135386, -70.086487],\n            [-43.029025, -76.353549],\n            [-34.816302, -76.353549],\n            [-30.709941, -70.086487]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30.709941, -57.552365],\n            [-34.816302, -51.285303],\n            [-43.029025, -51.285303],\n            [-47.135386, -57.552365],\n            [-43.029025, -63.819426],\n            [-34.816302, -63.819426],\n            [-30.709941, -57.552365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30.709941, -45.018242],\n            [-34.816302, -38.75118],\n            [-43.029025, -38.75118],\n            [-47.135386, -45.018242],\n            [-43.029025, -51.285303],\n            [-34.816302, -51.285303],\n            [-30.709941, -45.018242]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30.709941, -32.484119],\n            [-34.816302, -26.217058],\n            [-43.029025, -26.217058],\n            [-47.135386, -32.484119],\n            [-43.029025, -38.75118],\n            [-34.816302, -38.75118],\n            [-30.709941, -32.484119]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30.709941, -19.949996],\n            [-34.816302, -13.682935],\n            [-43.029025, -13.682935],\n            [-47.135386, -19.949996],\n            [-43.029025, -26.217058],\n            [-34.816302, -26.217058],\n            [-30.709941, -19.949996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30.709941, -7.415873],\n            [-34.816302, -1.148812],\n            [-43.029025, -1.148812],\n            [-47.135386, -7.415873],\n            [-43.029025, -13.682935],\n            [-34.816302, -13.682935],\n            [-30.709941, -7.415873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30.709941, 5.118249],\n            [-34.816302, 11.385311],\n            [-43.029025, 11.385311],\n            [-47.135386, 5.118249],\n            [-43.029025, -1.148812],\n            [-34.816302, -1.148812],\n            [-30.709941, 5.118249]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30.709941, 17.652372],\n            [-34.816302, 23.919434],\n            [-43.029025, 23.919434],\n            [-47.135386, 17.652372],\n            [-43.029025, 11.385311],\n            [-34.816302, 11.385311],\n            [-30.709941, 17.652372]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30.709941, 30.186495],\n            [-34.816302, 36.453556],\n            [-43.029025, 36.453556],\n            [-47.135386, 30.186495],\n            [-43.029025, 23.919434],\n            [-34.816302, 23.919434],\n            [-30.709941, 30.186495]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30.709941, 42.720618],\n            [-34.816302, 48.987679],\n            [-43.029025, 48.987679],\n            [-47.135386, 42.720618],\n            [-43.029025, 36.453556],\n            [-34.816302, 36.453556],\n            [-30.709941, 42.720618]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30.709941, 55.25474],\n            [-34.816302, 61.521802],\n            [-43.029025, 61.521802],\n            [-47.135386, 55.25474],\n            [-43.029025, 48.987679],\n            [-34.816302, 48.987679],\n            [-30.709941, 55.25474]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30.709941, 67.788863],\n            [-34.816302, 74.055925],\n            [-43.029025, 74.055925],\n            [-47.135386, 67.788863],\n            [-43.029025, 61.521802],\n            [-34.816302, 61.521802],\n            [-30.709941, 67.788863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -80.64703474739618],\n            [-29.53125, -80.64703474739618],\n            [-29.53125, 78.34941069014629],\n            [-220.78125, 78.34941069014629],\n            [-220.78125, -80.64703474739618]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-hex-grid/test/out/fiji-10-miles.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.03715, -16.950607],\n            [-180.112752, -16.825266],\n            [-180.263957, -16.825266],\n            [-180.339559, -16.950607],\n            [-180.263957, -17.075948],\n            [-180.112752, -17.075948],\n            [-180.03715, -16.950607]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.03715, -16.699925],\n            [-180.112752, -16.574584],\n            [-180.263957, -16.574584],\n            [-180.339559, -16.699925],\n            [-180.263957, -16.825266],\n            [-180.112752, -16.825266],\n            [-180.03715, -16.699925]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.810343, -16.825266],\n            [-179.885946, -16.699925],\n            [-180.03715, -16.699925],\n            [-180.112752, -16.825266],\n            [-180.03715, -16.950607],\n            [-179.885946, -16.950607],\n            [-179.810343, -16.825266]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.583537, -16.950607],\n            [-179.659139, -16.825266],\n            [-179.810343, -16.825266],\n            [-179.885946, -16.950607],\n            [-179.810343, -17.075948],\n            [-179.659139, -17.075948],\n            [-179.583537, -16.950607]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.583537, -16.699925],\n            [-179.659139, -16.574584],\n            [-179.810343, -16.574584],\n            [-179.885946, -16.699925],\n            [-179.810343, -16.825266],\n            [-179.659139, -16.825266],\n            [-179.583537, -16.699925]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [\n        -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812\n      ],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.3460693359375, -17.16703442146408],\n            [-179.5770263671875, -17.16703442146408],\n            [-179.5770263671875, -16.48349760264812],\n            [-180.3460693359375, -16.48349760264812],\n            [-180.3460693359375, -17.16703442146408]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-hex-grid/test/out/london-20-miles.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.374386, 51.502843],\n            [0.141874, 51.753526],\n            [-0.323149, 51.753526],\n            [-0.55566, 51.502843],\n            [-0.323149, 51.252161],\n            [0.141874, 51.252161],\n            [0.374386, 51.502843]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6207275390625, 51.23784668914442],\n            [0.439453125, 51.23784668914442],\n            [0.439453125, 51.767839887322154],\n            [-0.6207275390625, 51.767839887322154],\n            [-0.6207275390625, 51.23784668914442]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-hex-grid/test/out/piedemont-mask.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.007451, 44.340924],\n            [6.878885, 44.4976],\n            [6.621754, 44.4976],\n            [6.493188, 44.340924],\n            [6.621754, 44.184247],\n            [6.878885, 44.184247],\n            [7.007451, 44.340924]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.007451, 44.654277],\n            [6.878885, 44.810953],\n            [6.621754, 44.810953],\n            [6.493188, 44.654277],\n            [6.621754, 44.4976],\n            [6.878885, 44.4976],\n            [7.007451, 44.654277]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.007451, 44.96763],\n            [6.878885, 45.124307],\n            [6.621754, 45.124307],\n            [6.493188, 44.96763],\n            [6.621754, 44.810953],\n            [6.878885, 44.810953],\n            [7.007451, 44.96763]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.007451, 45.280983],\n            [6.878885, 45.43766],\n            [6.621754, 45.43766],\n            [6.493188, 45.280983],\n            [6.621754, 45.124307],\n            [6.878885, 45.124307],\n            [7.007451, 45.280983]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.393147, 44.4976],\n            [7.264582, 44.654277],\n            [7.007451, 44.654277],\n            [6.878885, 44.4976],\n            [7.007451, 44.340924],\n            [7.264582, 44.340924],\n            [7.393147, 44.4976]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.393147, 44.810953],\n            [7.264582, 44.96763],\n            [7.007451, 44.96763],\n            [6.878885, 44.810953],\n            [7.007451, 44.654277],\n            [7.264582, 44.654277],\n            [7.393147, 44.810953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.393147, 45.124307],\n            [7.264582, 45.280983],\n            [7.007451, 45.280983],\n            [6.878885, 45.124307],\n            [7.007451, 44.96763],\n            [7.264582, 44.96763],\n            [7.393147, 45.124307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.393147, 45.43766],\n            [7.264582, 45.594336],\n            [7.007451, 45.594336],\n            [6.878885, 45.43766],\n            [7.007451, 45.280983],\n            [7.264582, 45.280983],\n            [7.393147, 45.43766]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.778844, 44.340924],\n            [7.650279, 44.4976],\n            [7.393147, 44.4976],\n            [7.264582, 44.340924],\n            [7.393147, 44.184247],\n            [7.650279, 44.184247],\n            [7.778844, 44.340924]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.778844, 44.654277],\n            [7.650279, 44.810953],\n            [7.393147, 44.810953],\n            [7.264582, 44.654277],\n            [7.393147, 44.4976],\n            [7.650279, 44.4976],\n            [7.778844, 44.654277]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.778844, 44.96763],\n            [7.650279, 45.124307],\n            [7.393147, 45.124307],\n            [7.264582, 44.96763],\n            [7.393147, 44.810953],\n            [7.650279, 44.810953],\n            [7.778844, 44.96763]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.778844, 45.280983],\n            [7.650279, 45.43766],\n            [7.393147, 45.43766],\n            [7.264582, 45.280983],\n            [7.393147, 45.124307],\n            [7.650279, 45.124307],\n            [7.778844, 45.280983]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.778844, 45.594336],\n            [7.650279, 45.751013],\n            [7.393147, 45.751013],\n            [7.264582, 45.594336],\n            [7.393147, 45.43766],\n            [7.650279, 45.43766],\n            [7.778844, 45.594336]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.164541, 44.4976],\n            [8.035975, 44.654277],\n            [7.778844, 44.654277],\n            [7.650279, 44.4976],\n            [7.778844, 44.340924],\n            [8.035975, 44.340924],\n            [8.164541, 44.4976]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.164541, 44.810953],\n            [8.035975, 44.96763],\n            [7.778844, 44.96763],\n            [7.650279, 44.810953],\n            [7.778844, 44.654277],\n            [8.035975, 44.654277],\n            [8.164541, 44.810953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.164541, 45.124307],\n            [8.035975, 45.280983],\n            [7.778844, 45.280983],\n            [7.650279, 45.124307],\n            [7.778844, 44.96763],\n            [8.035975, 44.96763],\n            [8.164541, 45.124307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.164541, 45.43766],\n            [8.035975, 45.594336],\n            [7.778844, 45.594336],\n            [7.650279, 45.43766],\n            [7.778844, 45.280983],\n            [8.035975, 45.280983],\n            [8.164541, 45.43766]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.164541, 45.751013],\n            [8.035975, 45.907689],\n            [7.778844, 45.907689],\n            [7.650279, 45.751013],\n            [7.778844, 45.594336],\n            [8.035975, 45.594336],\n            [8.164541, 45.751013]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.164541, 46.064366],\n            [8.035975, 46.221042],\n            [7.778844, 46.221042],\n            [7.650279, 46.064366],\n            [7.778844, 45.907689],\n            [8.035975, 45.907689],\n            [8.164541, 46.064366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.550238, 44.340924],\n            [8.421672, 44.4976],\n            [8.164541, 44.4976],\n            [8.035975, 44.340924],\n            [8.164541, 44.184247],\n            [8.421672, 44.184247],\n            [8.550238, 44.340924]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.550238, 44.654277],\n            [8.421672, 44.810953],\n            [8.164541, 44.810953],\n            [8.035975, 44.654277],\n            [8.164541, 44.4976],\n            [8.421672, 44.4976],\n            [8.550238, 44.654277]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.550238, 44.96763],\n            [8.421672, 45.124307],\n            [8.164541, 45.124307],\n            [8.035975, 44.96763],\n            [8.164541, 44.810953],\n            [8.421672, 44.810953],\n            [8.550238, 44.96763]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.550238, 45.280983],\n            [8.421672, 45.43766],\n            [8.164541, 45.43766],\n            [8.035975, 45.280983],\n            [8.164541, 45.124307],\n            [8.421672, 45.124307],\n            [8.550238, 45.280983]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.550238, 45.594336],\n            [8.421672, 45.751013],\n            [8.164541, 45.751013],\n            [8.035975, 45.594336],\n            [8.164541, 45.43766],\n            [8.421672, 45.43766],\n            [8.550238, 45.594336]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.550238, 45.907689],\n            [8.421672, 46.064366],\n            [8.164541, 46.064366],\n            [8.035975, 45.907689],\n            [8.164541, 45.751013],\n            [8.421672, 45.751013],\n            [8.550238, 45.907689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.550238, 46.221042],\n            [8.421672, 46.377719],\n            [8.164541, 46.377719],\n            [8.035975, 46.221042],\n            [8.164541, 46.064366],\n            [8.421672, 46.064366],\n            [8.550238, 46.221042]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.935934, 44.4976],\n            [8.807369, 44.654277],\n            [8.550238, 44.654277],\n            [8.421672, 44.4976],\n            [8.550238, 44.340924],\n            [8.807369, 44.340924],\n            [8.935934, 44.4976]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.935934, 44.810953],\n            [8.807369, 44.96763],\n            [8.550238, 44.96763],\n            [8.421672, 44.810953],\n            [8.550238, 44.654277],\n            [8.807369, 44.654277],\n            [8.935934, 44.810953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.935934, 45.124307],\n            [8.807369, 45.280983],\n            [8.550238, 45.280983],\n            [8.421672, 45.124307],\n            [8.550238, 44.96763],\n            [8.807369, 44.96763],\n            [8.935934, 45.124307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.935934, 45.43766],\n            [8.807369, 45.594336],\n            [8.550238, 45.594336],\n            [8.421672, 45.43766],\n            [8.550238, 45.280983],\n            [8.807369, 45.280983],\n            [8.935934, 45.43766]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.935934, 45.751013],\n            [8.807369, 45.907689],\n            [8.550238, 45.907689],\n            [8.421672, 45.751013],\n            [8.550238, 45.594336],\n            [8.807369, 45.594336],\n            [8.935934, 45.751013]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.935934, 46.064366],\n            [8.807369, 46.221042],\n            [8.550238, 46.221042],\n            [8.421672, 46.064366],\n            [8.550238, 45.907689],\n            [8.807369, 45.907689],\n            [8.935934, 46.064366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.321631, 44.654277],\n            [9.193065, 44.810953],\n            [8.935934, 44.810953],\n            [8.807369, 44.654277],\n            [8.935934, 44.4976],\n            [9.193065, 44.4976],\n            [9.321631, 44.654277]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.321631, 44.96763],\n            [9.193065, 45.124307],\n            [8.935934, 45.124307],\n            [8.807369, 44.96763],\n            [8.935934, 44.810953],\n            [9.193065, 44.810953],\n            [9.321631, 44.96763]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.3775634765625, 44.05601169578525],\n            [9.437255859375, 44.05601169578525],\n            [9.437255859375, 46.50595444552049],\n            [6.3775634765625, 46.50595444552049],\n            [6.3775634765625, 44.05601169578525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.382568359375012, 46.456781428126554],\n            [8.313903808593762, 46.41892578708079],\n            [8.31939697265626, 46.379149058330775],\n            [8.099670410156264, 46.26913887119718],\n            [8.171081542968762, 46.1893382140708],\n            [7.8799438476562615, 45.94160076422079],\n            [7.907409667968761, 45.627484212338246],\n            [7.7247619628906365, 45.55444852652113],\n            [7.5833129882812615, 45.5900172453615],\n            [7.484436035156261, 45.58136746810096],\n            [7.347106933593762, 45.527516684421215],\n            [7.116394042968763, 45.46976215263039],\n            [7.176818847656262, 45.408092022812276],\n            [7.094421386718762, 45.222677199620094],\n            [6.980438232421887, 45.20719857986464],\n            [6.9515991210937615, 45.17332441090049],\n            [6.900787353515638, 45.166547157856016],\n            [6.900787353515638, 45.14621056019852],\n            [6.854095458984387, 45.1278045274732],\n            [6.7813110351562615, 45.164610651725425],\n            [6.749725341796888, 45.1394300814679],\n            [6.687927246093762, 45.1394300814679],\n            [6.6302490234375, 45.10987715527803],\n            [6.65496826171875, 45.069156265623505],\n            [6.6741943359375, 45.02015580433459],\n            [6.755218505859382, 45.0182143279711],\n            [6.749725341796875, 44.90744135615697],\n            [6.815643310546875, 44.872415981701394],\n            [6.900787353515625, 44.84515927771909],\n            [6.946105957031258, 44.86560301534198],\n            [7.017517089843757, 44.8344477567128],\n            [7.002410888671875, 44.78378451819761],\n            [7.032623291015625, 44.73210119404699],\n            [7.0751953125, 44.68330096401701],\n            [6.990051269531262, 44.69404054463802],\n            [6.8637084960937615, 44.51021754644927],\n            [6.9021606445312615, 44.36509667482153],\n            [7.055969238281263, 44.219615400229195],\n            [7.3965454101562615, 44.125056482685174],\n            [7.6712036132812615, 44.180234276372886],\n            [7.7151489257812615, 44.09350315285844],\n            [7.770080566406262, 44.136884638560495],\n            [8.02825927734376, 44.140826830775524],\n            [8.08868408203126, 44.321883129398586],\n            [8.247985839843762, 44.52196830685208],\n            [8.357849121093762, 44.48670891691767],\n            [8.599548339843762, 44.537632301346086],\n            [8.665466308593762, 44.58851118961441],\n            [8.802795410156264, 44.51805165000559],\n            [8.912658691406264, 44.592423107178654],\n            [8.912658691406264, 44.67841867818858],\n            [9.017028808593762, 44.6725593921204],\n            [9.139251708984387, 44.57970841241188],\n            [9.213409423828137, 44.6061127451739],\n            [9.221649169921887, 44.75453548416007],\n            [9.066467285156264, 44.85002749260048],\n            [8.896179199218762, 45.05606124274412],\n            [8.775329589843762, 45.01530198999206],\n            [8.659973144531262, 45.02695045318543],\n            [8.522644042968764, 45.28841433167348],\n            [8.550109863281262, 45.3617951914213],\n            [8.63800048828126, 45.34828480683997],\n            [8.676452636718762, 45.30773430004872],\n            [8.76983642578126, 45.35407536661812],\n            [8.734130859375014, 45.38494834654319],\n            [8.846740722656262, 45.40423540168332],\n            [8.725891113281262, 45.51789504294005],\n            [8.654479980468762, 45.70809729528788],\n            [8.56109619140626, 45.79242458189573],\n            [8.599548339843762, 45.832626782661585],\n            [8.580322265625012, 45.90529985724794],\n            [8.725891113281262, 46.02557483126793],\n            [8.717651367187512, 46.0998999106273],\n            [8.610534667968762, 46.14178273759229],\n            [8.539123535156262, 46.221652456379104],\n            [8.451232910156262, 46.25774588045678],\n            [8.445739746093764, 46.30899569419854],\n            [8.47045898437501, 46.34313560260196],\n            [8.462219238281264, 46.462457505996056],\n            [8.382568359375012, 46.456781428126554]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-hex-grid/test/out/properties.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.163995, 41.387754],\n            [2.157999, 41.395543],\n            [2.146008, 41.395543],\n            [2.140012, 41.387754],\n            [2.146008, 41.379966],\n            [2.157999, 41.379966],\n            [2.163995, 41.387754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.163995, 41.403331],\n            [2.157999, 41.411119],\n            [2.146008, 41.411119],\n            [2.140012, 41.403331],\n            [2.146008, 41.395543],\n            [2.157999, 41.395543],\n            [2.163995, 41.403331]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.163995, 41.418908],\n            [2.157999, 41.426696],\n            [2.146008, 41.426696],\n            [2.140012, 41.418908],\n            [2.146008, 41.411119],\n            [2.157999, 41.411119],\n            [2.163995, 41.418908]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.181981, 41.395543],\n            [2.175986, 41.403331],\n            [2.163995, 41.403331],\n            [2.157999, 41.395543],\n            [2.163995, 41.387754],\n            [2.175986, 41.387754],\n            [2.181981, 41.395543]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.181981, 41.411119],\n            [2.175986, 41.418908],\n            [2.163995, 41.418908],\n            [2.157999, 41.411119],\n            [2.163995, 41.403331],\n            [2.175986, 41.403331],\n            [2.181981, 41.411119]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.181981, 41.426696],\n            [2.175986, 41.434484],\n            [2.163995, 41.434484],\n            [2.157999, 41.426696],\n            [2.163995, 41.418908],\n            [2.175986, 41.418908],\n            [2.181981, 41.426696]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.199968, 41.387754],\n            [2.193973, 41.395543],\n            [2.181981, 41.395543],\n            [2.175986, 41.387754],\n            [2.181981, 41.379966],\n            [2.193973, 41.379966],\n            [2.199968, 41.387754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.199968, 41.403331],\n            [2.193973, 41.411119],\n            [2.181981, 41.411119],\n            [2.175986, 41.403331],\n            [2.181981, 41.395543],\n            [2.193973, 41.395543],\n            [2.199968, 41.403331]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.199968, 41.418908],\n            [2.193973, 41.426696],\n            [2.181981, 41.426696],\n            [2.175986, 41.418908],\n            [2.181981, 41.411119],\n            [2.193973, 41.411119],\n            [2.199968, 41.418908]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.199968, 41.434484],\n            [2.193973, 41.442273],\n            [2.181981, 41.442273],\n            [2.175986, 41.434484],\n            [2.181981, 41.426696],\n            [2.193973, 41.426696],\n            [2.199968, 41.434484]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.217955, 41.395543],\n            [2.21196, 41.403331],\n            [2.199968, 41.403331],\n            [2.193973, 41.395543],\n            [2.199968, 41.387754],\n            [2.21196, 41.387754],\n            [2.217955, 41.395543]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.217955, 41.411119],\n            [2.21196, 41.418908],\n            [2.199968, 41.418908],\n            [2.193973, 41.411119],\n            [2.199968, 41.403331],\n            [2.21196, 41.403331],\n            [2.217955, 41.411119]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.217955, 41.426696],\n            [2.21196, 41.434484],\n            [2.199968, 41.434484],\n            [2.193973, 41.426696],\n            [2.199968, 41.418908],\n            [2.21196, 41.418908],\n            [2.217955, 41.426696]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [\n        2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261\n      ],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.131519317626953, 41.37835427979543],\n            [2.2264480590820312, 41.37835427979543],\n            [2.2264480590820312, 41.44388449101261],\n            [2.131519317626953, 41.44388449101261],\n            [2.131519317626953, 41.37835427979543]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [2.223186492919922, 41.416856461155575],\n              [2.1716880798339844, 41.44182560856202],\n              [2.1636199951171875, 41.41608406639095],\n              [2.1334075927734375, 41.407200866420744],\n              [2.1845626831054683, 41.37977115211044],\n              [2.223186492919922, 41.416856461155575]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-hex-grid/test/out/resolute.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.269834, 74.685378],\n            [-94.612334, 74.842055],\n            [-95.297334, 74.842055],\n            [-95.639834, 74.685378],\n            [-95.297334, 74.528702],\n            [-94.612334, 74.528702],\n            [-94.269834, 74.685378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.877685546875, 74.46849062193377],\n            [-94.031982421875, 74.46849062193377],\n            [-94.031982421875, 74.90226611990785],\n            [-95.877685546875, 74.90226611990785],\n            [-95.877685546875, 74.46849062193377]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-hex-grid/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { truncate } from \"@turf/truncate\";\nimport { bboxPolygon as bboxPoly } from \"@turf/bbox-polygon\";\nimport { hexGrid } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    json: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"hex-grid\", (t) => {\n  fixtures.forEach(({ name, json }) => {\n    const { bbox, cellSide } = json;\n    const options = json;\n\n    const result = truncate(hexGrid(bbox, cellSide, options));\n    const poly = bboxPoly(bbox);\n    t.assert(poly.bbox);\n    poly.properties = {\n      stroke: \"#F00\",\n      \"stroke-width\": 6,\n      \"fill-opacity\": 0,\n    };\n    result.features.push(poly);\n    if (options.mask) {\n      options.mask.properties = {\n        stroke: \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0,\n      };\n      result.features.push(options.mask);\n    }\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + name + \".geojson\", result);\n    t.deepEqual(\n      result,\n      loadJsonFileSync(directories.out + name + \".geojson\"),\n      name\n    );\n  });\n  t.end();\n});\n\ntest(\"grid tiles count\", (t) => {\n  const bbox1 = loadJsonFileSync(directories.in + \"bbox1.json\").bbox;\n  t.equal(hexGrid(bbox1, 50, { units: \"miles\" }).features.length, 52);\n  t.equal(\n    hexGrid(bbox1, 50, { units: \"miles\", triangles: true }).features.length,\n    312\n  );\n\n  t.end();\n});\n\ntest(\"Property mutation\", (t) => {\n  const bbox1 = loadJsonFileSync(directories.in + \"bbox1.json\").bbox;\n  const grid = hexGrid(bbox1, 50, {\n    units: \"miles\",\n    properties: { foo: \"bar\" },\n  });\n  t.equal(grid.features[0].properties.foo, \"bar\");\n  t.equal(grid.features[1].properties.foo, \"bar\");\n\n  grid.features[0].properties.foo = \"baz\";\n  t.equal(grid.features[0].properties.foo, \"baz\");\n  t.equal(grid.features[1].properties.foo, \"bar\");\n  t.end();\n});\n\ntest(\"longitude (13141439571036224) - issue #758\", (t) => {\n  const bbox = [-179, -90, 179, 90];\n  const grid = hexGrid(bbox, 250, { units: \"kilometers\" });\n\n  const coords = [];\n  grid.features.forEach((feature) =>\n    feature.geometry.coordinates[0].forEach((coord) => coords.push(coord))\n  );\n\n  for (const coord of coords) {\n    const lng = coord[0];\n    const lat = coord[1];\n    if (lng > 1000 || lng < -1000) {\n      t.fail(`longitude is +- 1000 [${lng},${lat}]`);\n      break;\n    }\n  }\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-hex-grid/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-hex-grid/types.ts",
    "content": "import { BBox } from \"geojson\";\nimport { hexGrid } from \"./index.js\";\n\n// prettier-ignore\nconst bbox: BBox = [\n  -96.6357421875,\n  31.12819929911196,\n  -84.9462890625,\n  40.58058466412764,\n];\n\nhexGrid(bbox, 50);\nhexGrid(bbox, 50, { units: \"miles\" });\nhexGrid(bbox, 50, { units: \"miles\", triangles: true });\n\n// Access Custom Properties\nconst foo = hexGrid(bbox, 50, {\n  units: \"miles\",\n  triangles: true,\n  properties: { foo: \"bar\" },\n});\nfoo.features[0].properties.foo;\n// foo.features[0].properties.bar // => [ts] Property 'bar' does not exist on type '{ foo: string; }'.\n"
  },
  {
    "path": "packages/turf-interpolate/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-interpolate/README.md",
    "content": "# @turf/interpolate\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## interpolate\n\nTakes a set of points and estimates their 'property' values on a grid using the [Inverse Distance Weighting (IDW) method][1].\n\n### Parameters\n\n*   `points` **[FeatureCollection][2]<[Point][3]>** with known value\n*   `cellSize` **[number][4]** the distance across each grid point\n*   `options` **[Object][5]** Optional parameters (optional, default `{}`)\n\n    *   `options.gridType` **[string][6]** defines the output format based on a Grid Type (options: 'square' | 'point' | 'hex' | 'triangle') (optional, default `'square'`)\n    *   `options.property` **[string][6]** the property name in `points` from which z-values will be pulled, zValue fallbacks to 3rd coordinate if no property exists. (optional, default `'elevation'`)\n    *   `options.units` **Units** used in calculating cellSize. Supports all valid Turf [Units][7]. (optional, default `'kilometers'`)\n    *   `options.weight` **[number][4]** exponent regulating the distance-decay weighting (optional, default `1`)\n    *   `options.bbox` **[BBox][8]** Bounding Box Array \\[west, south, east, north] associated with the FeatureCollection. (optional, default `bbox(points)`)\n\n### Examples\n\n```javascript\nvar points = turf.randomPoint(30, {bbox: [50, 30, 70, 50]});\n\n// add a random property to each point\nturf.featureEach(points, function(point) {\n    point.properties.solRad = Math.random() * 50;\n});\nvar options = {gridType: 'points', property: 'solRad', units: 'miles'};\nvar grid = turf.interpolate(points, 100, options);\n\n//addToMap\nvar addToMap = [grid];\n```\n\nReturns **[FeatureCollection][2]<([Point][3] | [Polygon][9])>** grid of points or polygons with interpolated 'property'\n\n[1]: https://en.wikipedia.org/wiki/Inverse_distance_weighting\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n[7]: https://turfjs.org/docs/api/types/Units\n\n[8]: https://tools.ietf.org/html/rfc7946#section-5\n\n[9]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/interpolate\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-interpolate/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { interpolate } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n// Define Fixtures\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * data-1km: 15.042ms\n * data-500m: 14.286ms\n * data-weight-2: 0.408ms\n * hex-zValue: 1.778ms\n * points-random: 20.676ms\n * points1-weight-3: 5.569ms\n * points1: 4.254ms\n * triangle-zValue: 3.519ms\n * data-1km x 1,585 ops/sec ±2.77% (80 runs sampled)\n * data-500m x 351 ops/sec ±2.59% (76 runs sampled)\n * data-weight-2 x 3,730 ops/sec ±1.55% (82 runs sampled)\n * hex-zValue x 2,854 ops/sec ±4.45% (72 runs sampled)\n * points-random x 265 ops/sec ±1.67% (75 runs sampled)\n * points1-weight-3 x 381 ops/sec ±2.06% (76 runs sampled)\n * points1 x 356 ops/sec ±1.83% (70 runs sampled)\n * triangle-zValue x 570 ops/sec ±1.69% (81 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-interpolate\");\nfor (const { name, geojson } of fixtures) {\n  const options = geojson.properties;\n  const cellSize = options.cellSize;\n  console.time(name);\n  interpolate(geojson, cellSize, options);\n  console.timeEnd(name);\n  suite.add(name, () => interpolate(geojson, cellSize, options));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-interpolate/index.ts",
    "content": "import { bbox } from \"@turf/bbox\";\nimport { hexGrid } from \"@turf/hex-grid\";\nimport { pointGrid } from \"@turf/point-grid\";\nimport { distance } from \"@turf/distance\";\nimport { centroid } from \"@turf/centroid\";\nimport { squareGrid } from \"@turf/square-grid\";\nimport { triangleGrid } from \"@turf/triangle-grid\";\nimport { clone } from \"@turf/clone\";\nimport { featureCollection, Grid, Units, validateBBox } from \"@turf/helpers\";\nimport { featureEach } from \"@turf/meta\";\nimport { collectionOf } from \"@turf/invariant\";\nimport { BBox, Feature, FeatureCollection, Point, Polygon } from \"geojson\";\n\n/**\n * Takes a set of points and estimates their 'property' values on a grid using the [Inverse Distance Weighting (IDW) method](https://en.wikipedia.org/wiki/Inverse_distance_weighting).\n *\n * @function\n * @param {FeatureCollection<Point>} points with known value\n * @param {number} cellSize the distance across each grid point\n * @param {Object} [options={}] Optional parameters\n * @param {string} [options.gridType='square'] defines the output format based on a Grid Type (options: 'square' | 'point' | 'hex' | 'triangle')\n * @param {string} [options.property='elevation'] the property name in `points` from which z-values will be pulled, zValue fallbacks to 3rd coordinate if no property exists.\n * @param {Units} [options.units='kilometers'] used in calculating cellSize. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.\n * @param {number} [options.weight=1] exponent regulating the distance-decay weighting\n * @param {BBox}   [options.bbox=bbox(points)] Bounding Box Array [west, south, east, north] associated with the FeatureCollection.\n * @returns {FeatureCollection<Point|Polygon>} grid of points or polygons with interpolated 'property'\n * @example\n * var points = turf.randomPoint(30, {bbox: [50, 30, 70, 50]});\n *\n * // add a random property to each point\n * turf.featureEach(points, function(point) {\n *     point.properties.solRad = Math.random() * 50;\n * });\n * var options = {gridType: 'points', property: 'solRad', units: 'miles'};\n * var grid = turf.interpolate(points, 100, options);\n *\n * //addToMap\n * var addToMap = [grid];\n */\nfunction interpolate<T extends Grid = \"square\">(\n  points: FeatureCollection<Point>,\n  cellSize: number,\n  options?: {\n    gridType?: T;\n    property?: string;\n    units?: Units;\n    weight?: number;\n    bbox?: BBox;\n  }\n): FeatureCollection<T extends \"point\" ? Point : Polygon> {\n  // Optional parameters\n  options = options || {};\n\n  // Validation pre-options parsing\n  if (typeof options !== \"object\") {\n    throw new Error(\"options is invalid\");\n  }\n  if (!points) {\n    throw new Error(\"points is required\");\n  }\n  collectionOf(points, \"Point\", \"input must contain Points\");\n  if (!cellSize) {\n    throw new Error(\"cellSize is required\");\n  }\n\n  var gridType = options.gridType ?? \"square\";\n  var property = options.property ?? \"elevation\";\n  var weight = options.weight ?? 1;\n  var box = options.bbox ?? bbox(points);\n\n  // validation post options-parsing\n  if (weight !== undefined && typeof weight !== \"number\") {\n    throw new Error(\"weight must be a number\");\n  }\n\n  validateBBox(box);\n\n  var grid;\n  switch (gridType) {\n    case \"point\":\n    case \"points\":\n      grid = pointGrid(box, cellSize, options);\n      break;\n    case \"square\":\n    case \"squares\":\n      grid = squareGrid(box, cellSize, options);\n      break;\n    case \"hex\":\n    case \"hexes\":\n      grid = hexGrid(box, cellSize, options);\n      break;\n    case \"triangle\":\n    case \"triangles\":\n      grid = triangleGrid(box, cellSize, options);\n      break;\n    default:\n      throw new Error(\"invalid gridType\");\n  }\n  var results: Feature<Point | Polygon>[] = [];\n  featureEach<Point | Polygon>(grid, function (gridFeature) {\n    var zw = 0;\n    var sw = 0;\n    // calculate the distance from each input point to the grid points\n    featureEach(points, function (point) {\n      var gridPoint =\n        gridType === \"point\"\n          ? (gridFeature as Feature<Point>)\n          : centroid(gridFeature);\n      var d = distance(gridPoint, point, options);\n      var zValue;\n      // property has priority for zValue, fallbacks to 3rd coordinate from geometry\n      if (property !== undefined) {\n        zValue = point.properties?.[property];\n      }\n      if (zValue === undefined) {\n        zValue = point.geometry.coordinates[2];\n      }\n      if (zValue === undefined) {\n        throw new Error(\"zValue is missing\");\n      }\n      if (d === 0) {\n        zw = zValue;\n      }\n      var w = 1.0 / Math.pow(d, weight);\n      sw += w;\n      zw += w * zValue;\n    });\n    // write interpolated value for each grid point\n    var newFeature = clone(gridFeature);\n    newFeature.properties ??= {};\n    newFeature.properties[property] = zw / sw;\n    results.push(newFeature);\n  });\n  return featureCollection(results) as FeatureCollection<\n    T extends \"point\" ? Point : Polygon\n  >;\n}\n\nexport { interpolate };\nexport default interpolate;\n"
  },
  {
    "path": "packages/turf-interpolate/package.json",
    "content": "{\n  \"name\": \"@turf/interpolate\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Creates an interpolated grid of points using the Inverse Distance Weighting method.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Stefano Borghi <@stebogit>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"idw\",\n    \"interpolate\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"chromatism\": \"^3.0.0\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/centroid\": \"workspace:*\",\n    \"@turf/clone\": \"workspace:*\",\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/hex-grid\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@turf/point-grid\": \"workspace:*\",\n    \"@turf/square-grid\": \"workspace:*\",\n    \"@turf/triangle-grid\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/in/data-1km-bbox.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"property\": \"value\",\n    \"gridType\": \"square\",\n    \"weight\": 0.5,\n    \"cellSize\": 1,\n    \"bbox\": [9.416249084472656, 45.3391764115696, 9.031605529785156, 45.63689620055365]\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.155731201171875, 45.47216977418841]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 99\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.195213317871094, 45.53689620055365]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.175300598144531, 45.49912810913339]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 6\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.231605529785156, 45.49190839157102]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.116249084472656, 45.4391764115696]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/in/data-1km.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"property\": \"value\",\n    \"gridType\": \"square\",\n    \"weight\": 0.5,\n    \"cellSize\": 1\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.155731201171875, 45.47216977418841]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 99\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.195213317871094, 45.53689620055365]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.175300598144531, 45.49912810913339]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 6\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.231605529785156, 45.49190839157102]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.116249084472656, 45.4391764115696]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/in/data-500m-bbox.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"property\": \"value\",\n    \"weight\": 0.5,\n    \"gridType\": \"square\",\n    \"cellSize\": 0.5,\n    \"units\": \"kilometers\",\n    \"bbox\": [9.416249084472656, 45.3391764115696, 9.031605529785156, 45.63689620055365]\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.155731201171875, 45.47216977418841]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 99\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.195213317871094, 45.53689620055365]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.175300598144531, 45.49912810913339]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 6\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.231605529785156, 45.49190839157102]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.116249084472656, 45.4391764115696]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/in/data-500m.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"property\": \"value\",\n    \"weight\": 0.5,\n    \"gridType\": \"square\",\n    \"cellSize\": 0.5,\n    \"units\": \"kilometers\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.155731201171875, 45.47216977418841]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 99\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.195213317871094, 45.53689620055365]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.175300598144531, 45.49912810913339]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 6\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.231605529785156, 45.49190839157102]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.116249084472656, 45.4391764115696]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/in/data-weight-2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"property\": \"value\",\n    \"weight\": 2,\n    \"gridType\": \"square\",\n    \"cellSize\": 1,\n    \"units\": \"miles\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.155731201171875, 45.47216977418841]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 99\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.195213317871094, 45.53689620055365]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.175300598144531, 45.49912810913339]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 6\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.231605529785156, 45.49190839157102]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.116249084472656, 45.4391764115696]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/in/hex-zValue-bbox.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"weight\": 2,\n    \"gridType\": \"hex\",\n    \"cellSize\": 0.5,\n    \"units\": \"miles\",\n    \"bbox\": [-6.357258206107161, 53.39023949422162, -6.186614219650437, 53.31219701461626]\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.3288116455078125, 53.355879304922276, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.2615203857421875, 53.38087096356977, 5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.248474121093749, 53.31979992850456, 14]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.2697601318359375, 53.352190769802725, 9]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.2505340576171875, 53.3648943803576, 11]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/in/hex-zValue.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"weight\": 2,\n    \"gridType\": \"hex\",\n    \"cellSize\": 0.5,\n    \"units\": \"miles\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.3288116455078125, 53.355879304922276, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.2615203857421875, 53.38087096356977, 5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.248474121093749, 53.31979992850456, 14]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.2697601318359375, 53.352190769802725, 9]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.2505340576171875, 53.3648943803576, 11]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/in/points-random.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"cellSize\": 5,\n    \"gridType\": \"point\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.833, 39.284]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 25\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6, 39.984]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 50\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.221, 39.125]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 70\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.358, 39.987]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 10\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.9221, 39.27]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 90\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.534, 39.123]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 150\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.21, 39.12]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 50\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.22, 39.33]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 190\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.44, 39.55]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 220\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.77, 39.66]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 175\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.44, 39.11]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 155\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.05, 39.92]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 40\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.88, 39.98]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 152\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.55, 39.55]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 143\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.33, 39.44]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 76\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.56, 39.24]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 18\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.56, 39.36]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 200\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/in/points1-weight-3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"cellSize\": 1,\n    \"property\": \"pressure\",\n    \"gridType\": \"point\",\n    \"weight\": 3,\n    \"units\": \"miles\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.58526611328125, -0.6687775379129342]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.51385498046874, -0.7429296202184131]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.41635131835938, -0.8486628140085705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.25018310546875, -1.0065705335484296]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/in/points1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"cellSize\": 1,\n    \"property\": \"pressure\",\n    \"gridType\": \"point\",\n    \"weight\": 0.5,\n    \"units\": \"miles\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.58526611328125, -0.6687775379129342]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.51385498046874, -0.7429296202184131]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.41635131835938, -0.8486628140085705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.25018310546875, -1.0065705335484296]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/in/triangle-zValue.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"weight\": 4,\n    \"cellSize\": 0.3,\n    \"gridType\": \"triangle\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.3288116455078125, 53.355879304922276, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.2615203857421875, 53.38087096356977, 5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.248474121093749, 53.31979992850456, 14]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.2697601318359375, 53.352190769802725, 9]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.2505340576171875, 53.3648943803576, 11]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/out/data-1km-bbox.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.339648],\n            [9.03507, 45.348642],\n            [9.044063, 45.348642],\n            [9.044063, 45.339648],\n            [9.03507, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.348642],\n            [9.03507, 45.357635],\n            [9.044063, 45.357635],\n            [9.044063, 45.348642],\n            [9.03507, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.357635],\n            [9.03507, 45.366628],\n            [9.044063, 45.366628],\n            [9.044063, 45.357635],\n            [9.03507, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.366628],\n            [9.03507, 45.375621],\n            [9.044063, 45.375621],\n            [9.044063, 45.366628],\n            [9.03507, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.375621],\n            [9.03507, 45.384614],\n            [9.044063, 45.384614],\n            [9.044063, 45.375621],\n            [9.03507, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.384614],\n            [9.03507, 45.393608],\n            [9.044063, 45.393608],\n            [9.044063, 45.384614],\n            [9.03507, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.393608],\n            [9.03507, 45.402601],\n            [9.044063, 45.402601],\n            [9.044063, 45.393608],\n            [9.03507, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.402601],\n            [9.03507, 45.411594],\n            [9.044063, 45.411594],\n            [9.044063, 45.402601],\n            [9.03507, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.411594],\n            [9.03507, 45.420587],\n            [9.044063, 45.420587],\n            [9.044063, 45.411594],\n            [9.03507, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.420587],\n            [9.03507, 45.42958],\n            [9.044063, 45.42958],\n            [9.044063, 45.420587],\n            [9.03507, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.42958],\n            [9.03507, 45.438574],\n            [9.044063, 45.438574],\n            [9.044063, 45.42958],\n            [9.03507, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.438574],\n            [9.03507, 45.447567],\n            [9.044063, 45.447567],\n            [9.044063, 45.438574],\n            [9.03507, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.447567],\n            [9.03507, 45.45656],\n            [9.044063, 45.45656],\n            [9.044063, 45.447567],\n            [9.03507, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.45656],\n            [9.03507, 45.465553],\n            [9.044063, 45.465553],\n            [9.044063, 45.45656],\n            [9.03507, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.465553],\n            [9.03507, 45.474547],\n            [9.044063, 45.474547],\n            [9.044063, 45.465553],\n            [9.03507, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.474547],\n            [9.03507, 45.48354],\n            [9.044063, 45.48354],\n            [9.044063, 45.474547],\n            [9.03507, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.48354],\n            [9.03507, 45.492533],\n            [9.044063, 45.492533],\n            [9.044063, 45.48354],\n            [9.03507, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.492533],\n            [9.03507, 45.501526],\n            [9.044063, 45.501526],\n            [9.044063, 45.492533],\n            [9.03507, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.501526],\n            [9.03507, 45.510519],\n            [9.044063, 45.510519],\n            [9.044063, 45.501526],\n            [9.03507, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.510519],\n            [9.03507, 45.519513],\n            [9.044063, 45.519513],\n            [9.044063, 45.510519],\n            [9.03507, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.519513],\n            [9.03507, 45.528506],\n            [9.044063, 45.528506],\n            [9.044063, 45.519513],\n            [9.03507, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.528506],\n            [9.03507, 45.537499],\n            [9.044063, 45.537499],\n            [9.044063, 45.528506],\n            [9.03507, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.537499],\n            [9.03507, 45.546492],\n            [9.044063, 45.546492],\n            [9.044063, 45.537499],\n            [9.03507, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.546492],\n            [9.03507, 45.555485],\n            [9.044063, 45.555485],\n            [9.044063, 45.546492],\n            [9.03507, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.555485],\n            [9.03507, 45.564479],\n            [9.044063, 45.564479],\n            [9.044063, 45.555485],\n            [9.03507, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.564479],\n            [9.03507, 45.573472],\n            [9.044063, 45.573472],\n            [9.044063, 45.564479],\n            [9.03507, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.573472],\n            [9.03507, 45.582465],\n            [9.044063, 45.582465],\n            [9.044063, 45.573472],\n            [9.03507, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.582465],\n            [9.03507, 45.591458],\n            [9.044063, 45.591458],\n            [9.044063, 45.582465],\n            [9.03507, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.591458],\n            [9.03507, 45.600451],\n            [9.044063, 45.600451],\n            [9.044063, 45.591458],\n            [9.03507, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.600451],\n            [9.03507, 45.609445],\n            [9.044063, 45.609445],\n            [9.044063, 45.600451],\n            [9.03507, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.609445],\n            [9.03507, 45.618438],\n            [9.044063, 45.618438],\n            [9.044063, 45.609445],\n            [9.03507, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.618438],\n            [9.03507, 45.627431],\n            [9.044063, 45.627431],\n            [9.044063, 45.618438],\n            [9.03507, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.03507, 45.627431],\n            [9.03507, 45.636424],\n            [9.044063, 45.636424],\n            [9.044063, 45.627431],\n            [9.03507, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.339648],\n            [9.044063, 45.348642],\n            [9.053056, 45.348642],\n            [9.053056, 45.339648],\n            [9.044063, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.348642],\n            [9.044063, 45.357635],\n            [9.053056, 45.357635],\n            [9.053056, 45.348642],\n            [9.044063, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.357635],\n            [9.044063, 45.366628],\n            [9.053056, 45.366628],\n            [9.053056, 45.357635],\n            [9.044063, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.366628],\n            [9.044063, 45.375621],\n            [9.053056, 45.375621],\n            [9.053056, 45.366628],\n            [9.044063, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.375621],\n            [9.044063, 45.384614],\n            [9.053056, 45.384614],\n            [9.053056, 45.375621],\n            [9.044063, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.384614],\n            [9.044063, 45.393608],\n            [9.053056, 45.393608],\n            [9.053056, 45.384614],\n            [9.044063, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.393608],\n            [9.044063, 45.402601],\n            [9.053056, 45.402601],\n            [9.053056, 45.393608],\n            [9.044063, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.402601],\n            [9.044063, 45.411594],\n            [9.053056, 45.411594],\n            [9.053056, 45.402601],\n            [9.044063, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.411594],\n            [9.044063, 45.420587],\n            [9.053056, 45.420587],\n            [9.053056, 45.411594],\n            [9.044063, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.420587],\n            [9.044063, 45.42958],\n            [9.053056, 45.42958],\n            [9.053056, 45.420587],\n            [9.044063, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.42958],\n            [9.044063, 45.438574],\n            [9.053056, 45.438574],\n            [9.053056, 45.42958],\n            [9.044063, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.438574],\n            [9.044063, 45.447567],\n            [9.053056, 45.447567],\n            [9.053056, 45.438574],\n            [9.044063, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.447567],\n            [9.044063, 45.45656],\n            [9.053056, 45.45656],\n            [9.053056, 45.447567],\n            [9.044063, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.45656],\n            [9.044063, 45.465553],\n            [9.053056, 45.465553],\n            [9.053056, 45.45656],\n            [9.044063, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.465553],\n            [9.044063, 45.474547],\n            [9.053056, 45.474547],\n            [9.053056, 45.465553],\n            [9.044063, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.474547],\n            [9.044063, 45.48354],\n            [9.053056, 45.48354],\n            [9.053056, 45.474547],\n            [9.044063, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.48354],\n            [9.044063, 45.492533],\n            [9.053056, 45.492533],\n            [9.053056, 45.48354],\n            [9.044063, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.492533],\n            [9.044063, 45.501526],\n            [9.053056, 45.501526],\n            [9.053056, 45.492533],\n            [9.044063, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.501526],\n            [9.044063, 45.510519],\n            [9.053056, 45.510519],\n            [9.053056, 45.501526],\n            [9.044063, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.510519],\n            [9.044063, 45.519513],\n            [9.053056, 45.519513],\n            [9.053056, 45.510519],\n            [9.044063, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.519513],\n            [9.044063, 45.528506],\n            [9.053056, 45.528506],\n            [9.053056, 45.519513],\n            [9.044063, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.528506],\n            [9.044063, 45.537499],\n            [9.053056, 45.537499],\n            [9.053056, 45.528506],\n            [9.044063, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.537499],\n            [9.044063, 45.546492],\n            [9.053056, 45.546492],\n            [9.053056, 45.537499],\n            [9.044063, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.546492],\n            [9.044063, 45.555485],\n            [9.053056, 45.555485],\n            [9.053056, 45.546492],\n            [9.044063, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.555485],\n            [9.044063, 45.564479],\n            [9.053056, 45.564479],\n            [9.053056, 45.555485],\n            [9.044063, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.564479],\n            [9.044063, 45.573472],\n            [9.053056, 45.573472],\n            [9.053056, 45.564479],\n            [9.044063, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.573472],\n            [9.044063, 45.582465],\n            [9.053056, 45.582465],\n            [9.053056, 45.573472],\n            [9.044063, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.582465],\n            [9.044063, 45.591458],\n            [9.053056, 45.591458],\n            [9.053056, 45.582465],\n            [9.044063, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.591458],\n            [9.044063, 45.600451],\n            [9.053056, 45.600451],\n            [9.053056, 45.591458],\n            [9.044063, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.600451],\n            [9.044063, 45.609445],\n            [9.053056, 45.609445],\n            [9.053056, 45.600451],\n            [9.044063, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.609445],\n            [9.044063, 45.618438],\n            [9.053056, 45.618438],\n            [9.053056, 45.609445],\n            [9.044063, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.618438],\n            [9.044063, 45.627431],\n            [9.053056, 45.627431],\n            [9.053056, 45.618438],\n            [9.044063, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.044063, 45.627431],\n            [9.044063, 45.636424],\n            [9.053056, 45.636424],\n            [9.053056, 45.627431],\n            [9.044063, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.339648],\n            [9.053056, 45.348642],\n            [9.06205, 45.348642],\n            [9.06205, 45.339648],\n            [9.053056, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.348642],\n            [9.053056, 45.357635],\n            [9.06205, 45.357635],\n            [9.06205, 45.348642],\n            [9.053056, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.357635],\n            [9.053056, 45.366628],\n            [9.06205, 45.366628],\n            [9.06205, 45.357635],\n            [9.053056, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.366628],\n            [9.053056, 45.375621],\n            [9.06205, 45.375621],\n            [9.06205, 45.366628],\n            [9.053056, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.375621],\n            [9.053056, 45.384614],\n            [9.06205, 45.384614],\n            [9.06205, 45.375621],\n            [9.053056, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.384614],\n            [9.053056, 45.393608],\n            [9.06205, 45.393608],\n            [9.06205, 45.384614],\n            [9.053056, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.393608],\n            [9.053056, 45.402601],\n            [9.06205, 45.402601],\n            [9.06205, 45.393608],\n            [9.053056, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.402601],\n            [9.053056, 45.411594],\n            [9.06205, 45.411594],\n            [9.06205, 45.402601],\n            [9.053056, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.411594],\n            [9.053056, 45.420587],\n            [9.06205, 45.420587],\n            [9.06205, 45.411594],\n            [9.053056, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.420587],\n            [9.053056, 45.42958],\n            [9.06205, 45.42958],\n            [9.06205, 45.420587],\n            [9.053056, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.42958],\n            [9.053056, 45.438574],\n            [9.06205, 45.438574],\n            [9.06205, 45.42958],\n            [9.053056, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.438574],\n            [9.053056, 45.447567],\n            [9.06205, 45.447567],\n            [9.06205, 45.438574],\n            [9.053056, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.447567],\n            [9.053056, 45.45656],\n            [9.06205, 45.45656],\n            [9.06205, 45.447567],\n            [9.053056, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.45656],\n            [9.053056, 45.465553],\n            [9.06205, 45.465553],\n            [9.06205, 45.45656],\n            [9.053056, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.465553],\n            [9.053056, 45.474547],\n            [9.06205, 45.474547],\n            [9.06205, 45.465553],\n            [9.053056, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.474547],\n            [9.053056, 45.48354],\n            [9.06205, 45.48354],\n            [9.06205, 45.474547],\n            [9.053056, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.48354],\n            [9.053056, 45.492533],\n            [9.06205, 45.492533],\n            [9.06205, 45.48354],\n            [9.053056, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.492533],\n            [9.053056, 45.501526],\n            [9.06205, 45.501526],\n            [9.06205, 45.492533],\n            [9.053056, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.501526],\n            [9.053056, 45.510519],\n            [9.06205, 45.510519],\n            [9.06205, 45.501526],\n            [9.053056, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.510519],\n            [9.053056, 45.519513],\n            [9.06205, 45.519513],\n            [9.06205, 45.510519],\n            [9.053056, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.519513],\n            [9.053056, 45.528506],\n            [9.06205, 45.528506],\n            [9.06205, 45.519513],\n            [9.053056, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.528506],\n            [9.053056, 45.537499],\n            [9.06205, 45.537499],\n            [9.06205, 45.528506],\n            [9.053056, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.537499],\n            [9.053056, 45.546492],\n            [9.06205, 45.546492],\n            [9.06205, 45.537499],\n            [9.053056, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.546492],\n            [9.053056, 45.555485],\n            [9.06205, 45.555485],\n            [9.06205, 45.546492],\n            [9.053056, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.555485],\n            [9.053056, 45.564479],\n            [9.06205, 45.564479],\n            [9.06205, 45.555485],\n            [9.053056, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.564479],\n            [9.053056, 45.573472],\n            [9.06205, 45.573472],\n            [9.06205, 45.564479],\n            [9.053056, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.573472],\n            [9.053056, 45.582465],\n            [9.06205, 45.582465],\n            [9.06205, 45.573472],\n            [9.053056, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.582465],\n            [9.053056, 45.591458],\n            [9.06205, 45.591458],\n            [9.06205, 45.582465],\n            [9.053056, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.591458],\n            [9.053056, 45.600451],\n            [9.06205, 45.600451],\n            [9.06205, 45.591458],\n            [9.053056, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.600451],\n            [9.053056, 45.609445],\n            [9.06205, 45.609445],\n            [9.06205, 45.600451],\n            [9.053056, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.609445],\n            [9.053056, 45.618438],\n            [9.06205, 45.618438],\n            [9.06205, 45.609445],\n            [9.053056, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.618438],\n            [9.053056, 45.627431],\n            [9.06205, 45.627431],\n            [9.06205, 45.618438],\n            [9.053056, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.053056, 45.627431],\n            [9.053056, 45.636424],\n            [9.06205, 45.636424],\n            [9.06205, 45.627431],\n            [9.053056, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.339648],\n            [9.06205, 45.348642],\n            [9.071043, 45.348642],\n            [9.071043, 45.339648],\n            [9.06205, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.348642],\n            [9.06205, 45.357635],\n            [9.071043, 45.357635],\n            [9.071043, 45.348642],\n            [9.06205, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.357635],\n            [9.06205, 45.366628],\n            [9.071043, 45.366628],\n            [9.071043, 45.357635],\n            [9.06205, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.366628],\n            [9.06205, 45.375621],\n            [9.071043, 45.375621],\n            [9.071043, 45.366628],\n            [9.06205, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.375621],\n            [9.06205, 45.384614],\n            [9.071043, 45.384614],\n            [9.071043, 45.375621],\n            [9.06205, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.384614],\n            [9.06205, 45.393608],\n            [9.071043, 45.393608],\n            [9.071043, 45.384614],\n            [9.06205, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.393608],\n            [9.06205, 45.402601],\n            [9.071043, 45.402601],\n            [9.071043, 45.393608],\n            [9.06205, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.402601],\n            [9.06205, 45.411594],\n            [9.071043, 45.411594],\n            [9.071043, 45.402601],\n            [9.06205, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.411594],\n            [9.06205, 45.420587],\n            [9.071043, 45.420587],\n            [9.071043, 45.411594],\n            [9.06205, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.420587],\n            [9.06205, 45.42958],\n            [9.071043, 45.42958],\n            [9.071043, 45.420587],\n            [9.06205, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.42958],\n            [9.06205, 45.438574],\n            [9.071043, 45.438574],\n            [9.071043, 45.42958],\n            [9.06205, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.438574],\n            [9.06205, 45.447567],\n            [9.071043, 45.447567],\n            [9.071043, 45.438574],\n            [9.06205, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.447567],\n            [9.06205, 45.45656],\n            [9.071043, 45.45656],\n            [9.071043, 45.447567],\n            [9.06205, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.45656],\n            [9.06205, 45.465553],\n            [9.071043, 45.465553],\n            [9.071043, 45.45656],\n            [9.06205, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.465553],\n            [9.06205, 45.474547],\n            [9.071043, 45.474547],\n            [9.071043, 45.465553],\n            [9.06205, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.474547],\n            [9.06205, 45.48354],\n            [9.071043, 45.48354],\n            [9.071043, 45.474547],\n            [9.06205, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.48354],\n            [9.06205, 45.492533],\n            [9.071043, 45.492533],\n            [9.071043, 45.48354],\n            [9.06205, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.492533],\n            [9.06205, 45.501526],\n            [9.071043, 45.501526],\n            [9.071043, 45.492533],\n            [9.06205, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.501526],\n            [9.06205, 45.510519],\n            [9.071043, 45.510519],\n            [9.071043, 45.501526],\n            [9.06205, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.510519],\n            [9.06205, 45.519513],\n            [9.071043, 45.519513],\n            [9.071043, 45.510519],\n            [9.06205, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.519513],\n            [9.06205, 45.528506],\n            [9.071043, 45.528506],\n            [9.071043, 45.519513],\n            [9.06205, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.528506],\n            [9.06205, 45.537499],\n            [9.071043, 45.537499],\n            [9.071043, 45.528506],\n            [9.06205, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.537499],\n            [9.06205, 45.546492],\n            [9.071043, 45.546492],\n            [9.071043, 45.537499],\n            [9.06205, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.546492],\n            [9.06205, 45.555485],\n            [9.071043, 45.555485],\n            [9.071043, 45.546492],\n            [9.06205, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.555485],\n            [9.06205, 45.564479],\n            [9.071043, 45.564479],\n            [9.071043, 45.555485],\n            [9.06205, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.564479],\n            [9.06205, 45.573472],\n            [9.071043, 45.573472],\n            [9.071043, 45.564479],\n            [9.06205, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.573472],\n            [9.06205, 45.582465],\n            [9.071043, 45.582465],\n            [9.071043, 45.573472],\n            [9.06205, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.582465],\n            [9.06205, 45.591458],\n            [9.071043, 45.591458],\n            [9.071043, 45.582465],\n            [9.06205, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.591458],\n            [9.06205, 45.600451],\n            [9.071043, 45.600451],\n            [9.071043, 45.591458],\n            [9.06205, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.600451],\n            [9.06205, 45.609445],\n            [9.071043, 45.609445],\n            [9.071043, 45.600451],\n            [9.06205, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.609445],\n            [9.06205, 45.618438],\n            [9.071043, 45.618438],\n            [9.071043, 45.609445],\n            [9.06205, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.618438],\n            [9.06205, 45.627431],\n            [9.071043, 45.627431],\n            [9.071043, 45.618438],\n            [9.06205, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.06205, 45.627431],\n            [9.06205, 45.636424],\n            [9.071043, 45.636424],\n            [9.071043, 45.627431],\n            [9.06205, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.339648],\n            [9.071043, 45.348642],\n            [9.080036, 45.348642],\n            [9.080036, 45.339648],\n            [9.071043, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.348642],\n            [9.071043, 45.357635],\n            [9.080036, 45.357635],\n            [9.080036, 45.348642],\n            [9.071043, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.357635],\n            [9.071043, 45.366628],\n            [9.080036, 45.366628],\n            [9.080036, 45.357635],\n            [9.071043, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.366628],\n            [9.071043, 45.375621],\n            [9.080036, 45.375621],\n            [9.080036, 45.366628],\n            [9.071043, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.375621],\n            [9.071043, 45.384614],\n            [9.080036, 45.384614],\n            [9.080036, 45.375621],\n            [9.071043, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.384614],\n            [9.071043, 45.393608],\n            [9.080036, 45.393608],\n            [9.080036, 45.384614],\n            [9.071043, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.393608],\n            [9.071043, 45.402601],\n            [9.080036, 45.402601],\n            [9.080036, 45.393608],\n            [9.071043, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.402601],\n            [9.071043, 45.411594],\n            [9.080036, 45.411594],\n            [9.080036, 45.402601],\n            [9.071043, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.411594],\n            [9.071043, 45.420587],\n            [9.080036, 45.420587],\n            [9.080036, 45.411594],\n            [9.071043, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.420587],\n            [9.071043, 45.42958],\n            [9.080036, 45.42958],\n            [9.080036, 45.420587],\n            [9.071043, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.42958],\n            [9.071043, 45.438574],\n            [9.080036, 45.438574],\n            [9.080036, 45.42958],\n            [9.071043, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.438574],\n            [9.071043, 45.447567],\n            [9.080036, 45.447567],\n            [9.080036, 45.438574],\n            [9.071043, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.447567],\n            [9.071043, 45.45656],\n            [9.080036, 45.45656],\n            [9.080036, 45.447567],\n            [9.071043, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.45656],\n            [9.071043, 45.465553],\n            [9.080036, 45.465553],\n            [9.080036, 45.45656],\n            [9.071043, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.465553],\n            [9.071043, 45.474547],\n            [9.080036, 45.474547],\n            [9.080036, 45.465553],\n            [9.071043, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.474547],\n            [9.071043, 45.48354],\n            [9.080036, 45.48354],\n            [9.080036, 45.474547],\n            [9.071043, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.48354],\n            [9.071043, 45.492533],\n            [9.080036, 45.492533],\n            [9.080036, 45.48354],\n            [9.071043, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.492533],\n            [9.071043, 45.501526],\n            [9.080036, 45.501526],\n            [9.080036, 45.492533],\n            [9.071043, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.501526],\n            [9.071043, 45.510519],\n            [9.080036, 45.510519],\n            [9.080036, 45.501526],\n            [9.071043, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.510519],\n            [9.071043, 45.519513],\n            [9.080036, 45.519513],\n            [9.080036, 45.510519],\n            [9.071043, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.519513],\n            [9.071043, 45.528506],\n            [9.080036, 45.528506],\n            [9.080036, 45.519513],\n            [9.071043, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.528506],\n            [9.071043, 45.537499],\n            [9.080036, 45.537499],\n            [9.080036, 45.528506],\n            [9.071043, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.537499],\n            [9.071043, 45.546492],\n            [9.080036, 45.546492],\n            [9.080036, 45.537499],\n            [9.071043, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.546492],\n            [9.071043, 45.555485],\n            [9.080036, 45.555485],\n            [9.080036, 45.546492],\n            [9.071043, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.555485],\n            [9.071043, 45.564479],\n            [9.080036, 45.564479],\n            [9.080036, 45.555485],\n            [9.071043, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.564479],\n            [9.071043, 45.573472],\n            [9.080036, 45.573472],\n            [9.080036, 45.564479],\n            [9.071043, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.573472],\n            [9.071043, 45.582465],\n            [9.080036, 45.582465],\n            [9.080036, 45.573472],\n            [9.071043, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.582465],\n            [9.071043, 45.591458],\n            [9.080036, 45.591458],\n            [9.080036, 45.582465],\n            [9.071043, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.591458],\n            [9.071043, 45.600451],\n            [9.080036, 45.600451],\n            [9.080036, 45.591458],\n            [9.071043, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.600451],\n            [9.071043, 45.609445],\n            [9.080036, 45.609445],\n            [9.080036, 45.600451],\n            [9.071043, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.609445],\n            [9.071043, 45.618438],\n            [9.080036, 45.618438],\n            [9.080036, 45.609445],\n            [9.071043, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.618438],\n            [9.071043, 45.627431],\n            [9.080036, 45.627431],\n            [9.080036, 45.618438],\n            [9.071043, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.071043, 45.627431],\n            [9.071043, 45.636424],\n            [9.080036, 45.636424],\n            [9.080036, 45.627431],\n            [9.071043, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.339648],\n            [9.080036, 45.348642],\n            [9.089029, 45.348642],\n            [9.089029, 45.339648],\n            [9.080036, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.348642],\n            [9.080036, 45.357635],\n            [9.089029, 45.357635],\n            [9.089029, 45.348642],\n            [9.080036, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.357635],\n            [9.080036, 45.366628],\n            [9.089029, 45.366628],\n            [9.089029, 45.357635],\n            [9.080036, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.366628],\n            [9.080036, 45.375621],\n            [9.089029, 45.375621],\n            [9.089029, 45.366628],\n            [9.080036, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.375621],\n            [9.080036, 45.384614],\n            [9.089029, 45.384614],\n            [9.089029, 45.375621],\n            [9.080036, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.384614],\n            [9.080036, 45.393608],\n            [9.089029, 45.393608],\n            [9.089029, 45.384614],\n            [9.080036, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.393608],\n            [9.080036, 45.402601],\n            [9.089029, 45.402601],\n            [9.089029, 45.393608],\n            [9.080036, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.402601],\n            [9.080036, 45.411594],\n            [9.089029, 45.411594],\n            [9.089029, 45.402601],\n            [9.080036, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.411594],\n            [9.080036, 45.420587],\n            [9.089029, 45.420587],\n            [9.089029, 45.411594],\n            [9.080036, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.420587],\n            [9.080036, 45.42958],\n            [9.089029, 45.42958],\n            [9.089029, 45.420587],\n            [9.080036, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.42958],\n            [9.080036, 45.438574],\n            [9.089029, 45.438574],\n            [9.089029, 45.42958],\n            [9.080036, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.438574],\n            [9.080036, 45.447567],\n            [9.089029, 45.447567],\n            [9.089029, 45.438574],\n            [9.080036, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.447567],\n            [9.080036, 45.45656],\n            [9.089029, 45.45656],\n            [9.089029, 45.447567],\n            [9.080036, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.45656],\n            [9.080036, 45.465553],\n            [9.089029, 45.465553],\n            [9.089029, 45.45656],\n            [9.080036, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.465553],\n            [9.080036, 45.474547],\n            [9.089029, 45.474547],\n            [9.089029, 45.465553],\n            [9.080036, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.474547],\n            [9.080036, 45.48354],\n            [9.089029, 45.48354],\n            [9.089029, 45.474547],\n            [9.080036, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.48354],\n            [9.080036, 45.492533],\n            [9.089029, 45.492533],\n            [9.089029, 45.48354],\n            [9.080036, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.492533],\n            [9.080036, 45.501526],\n            [9.089029, 45.501526],\n            [9.089029, 45.492533],\n            [9.080036, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.501526],\n            [9.080036, 45.510519],\n            [9.089029, 45.510519],\n            [9.089029, 45.501526],\n            [9.080036, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.510519],\n            [9.080036, 45.519513],\n            [9.089029, 45.519513],\n            [9.089029, 45.510519],\n            [9.080036, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.519513],\n            [9.080036, 45.528506],\n            [9.089029, 45.528506],\n            [9.089029, 45.519513],\n            [9.080036, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.528506],\n            [9.080036, 45.537499],\n            [9.089029, 45.537499],\n            [9.089029, 45.528506],\n            [9.080036, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.537499],\n            [9.080036, 45.546492],\n            [9.089029, 45.546492],\n            [9.089029, 45.537499],\n            [9.080036, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.546492],\n            [9.080036, 45.555485],\n            [9.089029, 45.555485],\n            [9.089029, 45.546492],\n            [9.080036, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.555485],\n            [9.080036, 45.564479],\n            [9.089029, 45.564479],\n            [9.089029, 45.555485],\n            [9.080036, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.564479],\n            [9.080036, 45.573472],\n            [9.089029, 45.573472],\n            [9.089029, 45.564479],\n            [9.080036, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.573472],\n            [9.080036, 45.582465],\n            [9.089029, 45.582465],\n            [9.089029, 45.573472],\n            [9.080036, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.582465],\n            [9.080036, 45.591458],\n            [9.089029, 45.591458],\n            [9.089029, 45.582465],\n            [9.080036, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.591458],\n            [9.080036, 45.600451],\n            [9.089029, 45.600451],\n            [9.089029, 45.591458],\n            [9.080036, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.600451],\n            [9.080036, 45.609445],\n            [9.089029, 45.609445],\n            [9.089029, 45.600451],\n            [9.080036, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.609445],\n            [9.080036, 45.618438],\n            [9.089029, 45.618438],\n            [9.089029, 45.609445],\n            [9.080036, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.618438],\n            [9.080036, 45.627431],\n            [9.089029, 45.627431],\n            [9.089029, 45.618438],\n            [9.080036, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.080036, 45.627431],\n            [9.080036, 45.636424],\n            [9.089029, 45.636424],\n            [9.089029, 45.627431],\n            [9.080036, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.339648],\n            [9.089029, 45.348642],\n            [9.098022, 45.348642],\n            [9.098022, 45.339648],\n            [9.089029, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.348642],\n            [9.089029, 45.357635],\n            [9.098022, 45.357635],\n            [9.098022, 45.348642],\n            [9.089029, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.357635],\n            [9.089029, 45.366628],\n            [9.098022, 45.366628],\n            [9.098022, 45.357635],\n            [9.089029, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.366628],\n            [9.089029, 45.375621],\n            [9.098022, 45.375621],\n            [9.098022, 45.366628],\n            [9.089029, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.375621],\n            [9.089029, 45.384614],\n            [9.098022, 45.384614],\n            [9.098022, 45.375621],\n            [9.089029, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.384614],\n            [9.089029, 45.393608],\n            [9.098022, 45.393608],\n            [9.098022, 45.384614],\n            [9.089029, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.393608],\n            [9.089029, 45.402601],\n            [9.098022, 45.402601],\n            [9.098022, 45.393608],\n            [9.089029, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.402601],\n            [9.089029, 45.411594],\n            [9.098022, 45.411594],\n            [9.098022, 45.402601],\n            [9.089029, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.411594],\n            [9.089029, 45.420587],\n            [9.098022, 45.420587],\n            [9.098022, 45.411594],\n            [9.089029, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.420587],\n            [9.089029, 45.42958],\n            [9.098022, 45.42958],\n            [9.098022, 45.420587],\n            [9.089029, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.42958],\n            [9.089029, 45.438574],\n            [9.098022, 45.438574],\n            [9.098022, 45.42958],\n            [9.089029, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.438574],\n            [9.089029, 45.447567],\n            [9.098022, 45.447567],\n            [9.098022, 45.438574],\n            [9.089029, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.447567],\n            [9.089029, 45.45656],\n            [9.098022, 45.45656],\n            [9.098022, 45.447567],\n            [9.089029, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.45656],\n            [9.089029, 45.465553],\n            [9.098022, 45.465553],\n            [9.098022, 45.45656],\n            [9.089029, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.465553],\n            [9.089029, 45.474547],\n            [9.098022, 45.474547],\n            [9.098022, 45.465553],\n            [9.089029, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.474547],\n            [9.089029, 45.48354],\n            [9.098022, 45.48354],\n            [9.098022, 45.474547],\n            [9.089029, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.48354],\n            [9.089029, 45.492533],\n            [9.098022, 45.492533],\n            [9.098022, 45.48354],\n            [9.089029, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.492533],\n            [9.089029, 45.501526],\n            [9.098022, 45.501526],\n            [9.098022, 45.492533],\n            [9.089029, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.501526],\n            [9.089029, 45.510519],\n            [9.098022, 45.510519],\n            [9.098022, 45.501526],\n            [9.089029, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.510519],\n            [9.089029, 45.519513],\n            [9.098022, 45.519513],\n            [9.098022, 45.510519],\n            [9.089029, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.519513],\n            [9.089029, 45.528506],\n            [9.098022, 45.528506],\n            [9.098022, 45.519513],\n            [9.089029, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.528506],\n            [9.089029, 45.537499],\n            [9.098022, 45.537499],\n            [9.098022, 45.528506],\n            [9.089029, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.537499],\n            [9.089029, 45.546492],\n            [9.098022, 45.546492],\n            [9.098022, 45.537499],\n            [9.089029, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.546492],\n            [9.089029, 45.555485],\n            [9.098022, 45.555485],\n            [9.098022, 45.546492],\n            [9.089029, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.555485],\n            [9.089029, 45.564479],\n            [9.098022, 45.564479],\n            [9.098022, 45.555485],\n            [9.089029, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.564479],\n            [9.089029, 45.573472],\n            [9.098022, 45.573472],\n            [9.098022, 45.564479],\n            [9.089029, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.573472],\n            [9.089029, 45.582465],\n            [9.098022, 45.582465],\n            [9.098022, 45.573472],\n            [9.089029, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.582465],\n            [9.089029, 45.591458],\n            [9.098022, 45.591458],\n            [9.098022, 45.582465],\n            [9.089029, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.591458],\n            [9.089029, 45.600451],\n            [9.098022, 45.600451],\n            [9.098022, 45.591458],\n            [9.089029, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.600451],\n            [9.089029, 45.609445],\n            [9.098022, 45.609445],\n            [9.098022, 45.600451],\n            [9.089029, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.609445],\n            [9.089029, 45.618438],\n            [9.098022, 45.618438],\n            [9.098022, 45.609445],\n            [9.089029, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.618438],\n            [9.089029, 45.627431],\n            [9.098022, 45.627431],\n            [9.098022, 45.618438],\n            [9.089029, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.089029, 45.627431],\n            [9.089029, 45.636424],\n            [9.098022, 45.636424],\n            [9.098022, 45.627431],\n            [9.089029, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.339648],\n            [9.098022, 45.348642],\n            [9.107016, 45.348642],\n            [9.107016, 45.339648],\n            [9.098022, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.348642],\n            [9.098022, 45.357635],\n            [9.107016, 45.357635],\n            [9.107016, 45.348642],\n            [9.098022, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.357635],\n            [9.098022, 45.366628],\n            [9.107016, 45.366628],\n            [9.107016, 45.357635],\n            [9.098022, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.366628],\n            [9.098022, 45.375621],\n            [9.107016, 45.375621],\n            [9.107016, 45.366628],\n            [9.098022, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.375621],\n            [9.098022, 45.384614],\n            [9.107016, 45.384614],\n            [9.107016, 45.375621],\n            [9.098022, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.384614],\n            [9.098022, 45.393608],\n            [9.107016, 45.393608],\n            [9.107016, 45.384614],\n            [9.098022, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.393608],\n            [9.098022, 45.402601],\n            [9.107016, 45.402601],\n            [9.107016, 45.393608],\n            [9.098022, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.402601],\n            [9.098022, 45.411594],\n            [9.107016, 45.411594],\n            [9.107016, 45.402601],\n            [9.098022, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.411594],\n            [9.098022, 45.420587],\n            [9.107016, 45.420587],\n            [9.107016, 45.411594],\n            [9.098022, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.420587],\n            [9.098022, 45.42958],\n            [9.107016, 45.42958],\n            [9.107016, 45.420587],\n            [9.098022, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.42958],\n            [9.098022, 45.438574],\n            [9.107016, 45.438574],\n            [9.107016, 45.42958],\n            [9.098022, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.438574],\n            [9.098022, 45.447567],\n            [9.107016, 45.447567],\n            [9.107016, 45.438574],\n            [9.098022, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.447567],\n            [9.098022, 45.45656],\n            [9.107016, 45.45656],\n            [9.107016, 45.447567],\n            [9.098022, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.45656],\n            [9.098022, 45.465553],\n            [9.107016, 45.465553],\n            [9.107016, 45.45656],\n            [9.098022, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.465553],\n            [9.098022, 45.474547],\n            [9.107016, 45.474547],\n            [9.107016, 45.465553],\n            [9.098022, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.474547],\n            [9.098022, 45.48354],\n            [9.107016, 45.48354],\n            [9.107016, 45.474547],\n            [9.098022, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.48354],\n            [9.098022, 45.492533],\n            [9.107016, 45.492533],\n            [9.107016, 45.48354],\n            [9.098022, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.492533],\n            [9.098022, 45.501526],\n            [9.107016, 45.501526],\n            [9.107016, 45.492533],\n            [9.098022, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.501526],\n            [9.098022, 45.510519],\n            [9.107016, 45.510519],\n            [9.107016, 45.501526],\n            [9.098022, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.510519],\n            [9.098022, 45.519513],\n            [9.107016, 45.519513],\n            [9.107016, 45.510519],\n            [9.098022, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.519513],\n            [9.098022, 45.528506],\n            [9.107016, 45.528506],\n            [9.107016, 45.519513],\n            [9.098022, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.528506],\n            [9.098022, 45.537499],\n            [9.107016, 45.537499],\n            [9.107016, 45.528506],\n            [9.098022, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.537499],\n            [9.098022, 45.546492],\n            [9.107016, 45.546492],\n            [9.107016, 45.537499],\n            [9.098022, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.546492],\n            [9.098022, 45.555485],\n            [9.107016, 45.555485],\n            [9.107016, 45.546492],\n            [9.098022, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.555485],\n            [9.098022, 45.564479],\n            [9.107016, 45.564479],\n            [9.107016, 45.555485],\n            [9.098022, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.564479],\n            [9.098022, 45.573472],\n            [9.107016, 45.573472],\n            [9.107016, 45.564479],\n            [9.098022, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.573472],\n            [9.098022, 45.582465],\n            [9.107016, 45.582465],\n            [9.107016, 45.573472],\n            [9.098022, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.582465],\n            [9.098022, 45.591458],\n            [9.107016, 45.591458],\n            [9.107016, 45.582465],\n            [9.098022, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.591458],\n            [9.098022, 45.600451],\n            [9.107016, 45.600451],\n            [9.107016, 45.591458],\n            [9.098022, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.600451],\n            [9.098022, 45.609445],\n            [9.107016, 45.609445],\n            [9.107016, 45.600451],\n            [9.098022, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.609445],\n            [9.098022, 45.618438],\n            [9.107016, 45.618438],\n            [9.107016, 45.609445],\n            [9.098022, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.618438],\n            [9.098022, 45.627431],\n            [9.107016, 45.627431],\n            [9.107016, 45.618438],\n            [9.098022, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.098022, 45.627431],\n            [9.098022, 45.636424],\n            [9.107016, 45.636424],\n            [9.107016, 45.627431],\n            [9.098022, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.339648],\n            [9.107016, 45.348642],\n            [9.116009, 45.348642],\n            [9.116009, 45.339648],\n            [9.107016, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.348642],\n            [9.107016, 45.357635],\n            [9.116009, 45.357635],\n            [9.116009, 45.348642],\n            [9.107016, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.357635],\n            [9.107016, 45.366628],\n            [9.116009, 45.366628],\n            [9.116009, 45.357635],\n            [9.107016, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.366628],\n            [9.107016, 45.375621],\n            [9.116009, 45.375621],\n            [9.116009, 45.366628],\n            [9.107016, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.375621],\n            [9.107016, 45.384614],\n            [9.116009, 45.384614],\n            [9.116009, 45.375621],\n            [9.107016, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.384614],\n            [9.107016, 45.393608],\n            [9.116009, 45.393608],\n            [9.116009, 45.384614],\n            [9.107016, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.393608],\n            [9.107016, 45.402601],\n            [9.116009, 45.402601],\n            [9.116009, 45.393608],\n            [9.107016, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.402601],\n            [9.107016, 45.411594],\n            [9.116009, 45.411594],\n            [9.116009, 45.402601],\n            [9.107016, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.411594],\n            [9.107016, 45.420587],\n            [9.116009, 45.420587],\n            [9.116009, 45.411594],\n            [9.107016, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.420587],\n            [9.107016, 45.42958],\n            [9.116009, 45.42958],\n            [9.116009, 45.420587],\n            [9.107016, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.42958],\n            [9.107016, 45.438574],\n            [9.116009, 45.438574],\n            [9.116009, 45.42958],\n            [9.107016, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 16,\n        \"stroke\": \"#e5f3ff\",\n        \"fill\": \"#e5f3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.438574],\n            [9.107016, 45.447567],\n            [9.116009, 45.447567],\n            [9.116009, 45.438574],\n            [9.107016, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.447567],\n            [9.107016, 45.45656],\n            [9.116009, 45.45656],\n            [9.116009, 45.447567],\n            [9.107016, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.45656],\n            [9.107016, 45.465553],\n            [9.116009, 45.465553],\n            [9.116009, 45.45656],\n            [9.107016, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.465553],\n            [9.107016, 45.474547],\n            [9.116009, 45.474547],\n            [9.116009, 45.465553],\n            [9.107016, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.474547],\n            [9.107016, 45.48354],\n            [9.116009, 45.48354],\n            [9.116009, 45.474547],\n            [9.107016, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.48354],\n            [9.107016, 45.492533],\n            [9.116009, 45.492533],\n            [9.116009, 45.48354],\n            [9.107016, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.492533],\n            [9.107016, 45.501526],\n            [9.116009, 45.501526],\n            [9.116009, 45.492533],\n            [9.107016, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.501526],\n            [9.107016, 45.510519],\n            [9.116009, 45.510519],\n            [9.116009, 45.501526],\n            [9.107016, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.510519],\n            [9.107016, 45.519513],\n            [9.116009, 45.519513],\n            [9.116009, 45.510519],\n            [9.107016, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.519513],\n            [9.107016, 45.528506],\n            [9.116009, 45.528506],\n            [9.116009, 45.519513],\n            [9.107016, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.528506],\n            [9.107016, 45.537499],\n            [9.116009, 45.537499],\n            [9.116009, 45.528506],\n            [9.107016, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.537499],\n            [9.107016, 45.546492],\n            [9.116009, 45.546492],\n            [9.116009, 45.537499],\n            [9.107016, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.546492],\n            [9.107016, 45.555485],\n            [9.116009, 45.555485],\n            [9.116009, 45.546492],\n            [9.107016, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.555485],\n            [9.107016, 45.564479],\n            [9.116009, 45.564479],\n            [9.116009, 45.555485],\n            [9.107016, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.564479],\n            [9.107016, 45.573472],\n            [9.116009, 45.573472],\n            [9.116009, 45.564479],\n            [9.107016, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.573472],\n            [9.107016, 45.582465],\n            [9.116009, 45.582465],\n            [9.116009, 45.573472],\n            [9.107016, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.582465],\n            [9.107016, 45.591458],\n            [9.116009, 45.591458],\n            [9.116009, 45.582465],\n            [9.107016, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.591458],\n            [9.107016, 45.600451],\n            [9.116009, 45.600451],\n            [9.116009, 45.591458],\n            [9.107016, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.600451],\n            [9.107016, 45.609445],\n            [9.116009, 45.609445],\n            [9.116009, 45.600451],\n            [9.107016, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.609445],\n            [9.107016, 45.618438],\n            [9.116009, 45.618438],\n            [9.116009, 45.609445],\n            [9.107016, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.618438],\n            [9.107016, 45.627431],\n            [9.116009, 45.627431],\n            [9.116009, 45.618438],\n            [9.107016, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.107016, 45.627431],\n            [9.107016, 45.636424],\n            [9.116009, 45.636424],\n            [9.116009, 45.627431],\n            [9.107016, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.339648],\n            [9.116009, 45.348642],\n            [9.125002, 45.348642],\n            [9.125002, 45.339648],\n            [9.116009, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.348642],\n            [9.116009, 45.357635],\n            [9.125002, 45.357635],\n            [9.125002, 45.348642],\n            [9.116009, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.357635],\n            [9.116009, 45.366628],\n            [9.125002, 45.366628],\n            [9.125002, 45.357635],\n            [9.116009, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.366628],\n            [9.116009, 45.375621],\n            [9.125002, 45.375621],\n            [9.125002, 45.366628],\n            [9.116009, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.375621],\n            [9.116009, 45.384614],\n            [9.125002, 45.384614],\n            [9.125002, 45.375621],\n            [9.116009, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.384614],\n            [9.116009, 45.393608],\n            [9.125002, 45.393608],\n            [9.125002, 45.384614],\n            [9.116009, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.393608],\n            [9.116009, 45.402601],\n            [9.125002, 45.402601],\n            [9.125002, 45.393608],\n            [9.116009, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.402601],\n            [9.116009, 45.411594],\n            [9.125002, 45.411594],\n            [9.125002, 45.402601],\n            [9.116009, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.411594],\n            [9.116009, 45.420587],\n            [9.125002, 45.420587],\n            [9.125002, 45.411594],\n            [9.116009, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.420587],\n            [9.116009, 45.42958],\n            [9.125002, 45.42958],\n            [9.125002, 45.420587],\n            [9.116009, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.42958],\n            [9.116009, 45.438574],\n            [9.125002, 45.438574],\n            [9.125002, 45.42958],\n            [9.116009, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 16,\n        \"stroke\": \"#e5f3ff\",\n        \"fill\": \"#e5f3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.438574],\n            [9.116009, 45.447567],\n            [9.125002, 45.447567],\n            [9.125002, 45.438574],\n            [9.116009, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.447567],\n            [9.116009, 45.45656],\n            [9.125002, 45.45656],\n            [9.125002, 45.447567],\n            [9.116009, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.45656],\n            [9.116009, 45.465553],\n            [9.125002, 45.465553],\n            [9.125002, 45.45656],\n            [9.116009, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.465553],\n            [9.116009, 45.474547],\n            [9.125002, 45.474547],\n            [9.125002, 45.465553],\n            [9.116009, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.474547],\n            [9.116009, 45.48354],\n            [9.125002, 45.48354],\n            [9.125002, 45.474547],\n            [9.116009, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.48354],\n            [9.116009, 45.492533],\n            [9.125002, 45.492533],\n            [9.125002, 45.48354],\n            [9.116009, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.492533],\n            [9.116009, 45.501526],\n            [9.125002, 45.501526],\n            [9.125002, 45.492533],\n            [9.116009, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.501526],\n            [9.116009, 45.510519],\n            [9.125002, 45.510519],\n            [9.125002, 45.501526],\n            [9.116009, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.510519],\n            [9.116009, 45.519513],\n            [9.125002, 45.519513],\n            [9.125002, 45.510519],\n            [9.116009, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.519513],\n            [9.116009, 45.528506],\n            [9.125002, 45.528506],\n            [9.125002, 45.519513],\n            [9.116009, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.528506],\n            [9.116009, 45.537499],\n            [9.125002, 45.537499],\n            [9.125002, 45.528506],\n            [9.116009, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.537499],\n            [9.116009, 45.546492],\n            [9.125002, 45.546492],\n            [9.125002, 45.537499],\n            [9.116009, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.546492],\n            [9.116009, 45.555485],\n            [9.125002, 45.555485],\n            [9.125002, 45.546492],\n            [9.116009, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.555485],\n            [9.116009, 45.564479],\n            [9.125002, 45.564479],\n            [9.125002, 45.555485],\n            [9.116009, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.564479],\n            [9.116009, 45.573472],\n            [9.125002, 45.573472],\n            [9.125002, 45.564479],\n            [9.116009, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.573472],\n            [9.116009, 45.582465],\n            [9.125002, 45.582465],\n            [9.125002, 45.573472],\n            [9.116009, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.582465],\n            [9.116009, 45.591458],\n            [9.125002, 45.591458],\n            [9.125002, 45.582465],\n            [9.116009, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.591458],\n            [9.116009, 45.600451],\n            [9.125002, 45.600451],\n            [9.125002, 45.591458],\n            [9.116009, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.600451],\n            [9.116009, 45.609445],\n            [9.125002, 45.609445],\n            [9.125002, 45.600451],\n            [9.116009, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.609445],\n            [9.116009, 45.618438],\n            [9.125002, 45.618438],\n            [9.125002, 45.609445],\n            [9.116009, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.618438],\n            [9.116009, 45.627431],\n            [9.125002, 45.627431],\n            [9.125002, 45.618438],\n            [9.116009, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116009, 45.627431],\n            [9.116009, 45.636424],\n            [9.125002, 45.636424],\n            [9.125002, 45.627431],\n            [9.116009, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.339648],\n            [9.125002, 45.348642],\n            [9.133995, 45.348642],\n            [9.133995, 45.339648],\n            [9.125002, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.348642],\n            [9.125002, 45.357635],\n            [9.133995, 45.357635],\n            [9.133995, 45.348642],\n            [9.125002, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.357635],\n            [9.125002, 45.366628],\n            [9.133995, 45.366628],\n            [9.133995, 45.357635],\n            [9.125002, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.366628],\n            [9.125002, 45.375621],\n            [9.133995, 45.375621],\n            [9.133995, 45.366628],\n            [9.125002, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.375621],\n            [9.125002, 45.384614],\n            [9.133995, 45.384614],\n            [9.133995, 45.375621],\n            [9.125002, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.384614],\n            [9.125002, 45.393608],\n            [9.133995, 45.393608],\n            [9.133995, 45.384614],\n            [9.125002, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.393608],\n            [9.125002, 45.402601],\n            [9.133995, 45.402601],\n            [9.133995, 45.393608],\n            [9.125002, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.402601],\n            [9.125002, 45.411594],\n            [9.133995, 45.411594],\n            [9.133995, 45.402601],\n            [9.125002, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.411594],\n            [9.125002, 45.420587],\n            [9.133995, 45.420587],\n            [9.133995, 45.411594],\n            [9.125002, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.420587],\n            [9.125002, 45.42958],\n            [9.133995, 45.42958],\n            [9.133995, 45.420587],\n            [9.125002, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.42958],\n            [9.125002, 45.438574],\n            [9.133995, 45.438574],\n            [9.133995, 45.42958],\n            [9.125002, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.438574],\n            [9.125002, 45.447567],\n            [9.133995, 45.447567],\n            [9.133995, 45.438574],\n            [9.125002, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.447567],\n            [9.125002, 45.45656],\n            [9.133995, 45.45656],\n            [9.133995, 45.447567],\n            [9.125002, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.45656],\n            [9.125002, 45.465553],\n            [9.133995, 45.465553],\n            [9.133995, 45.45656],\n            [9.125002, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.465553],\n            [9.125002, 45.474547],\n            [9.133995, 45.474547],\n            [9.133995, 45.465553],\n            [9.125002, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.474547],\n            [9.125002, 45.48354],\n            [9.133995, 45.48354],\n            [9.133995, 45.474547],\n            [9.125002, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.48354],\n            [9.125002, 45.492533],\n            [9.133995, 45.492533],\n            [9.133995, 45.48354],\n            [9.125002, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.492533],\n            [9.125002, 45.501526],\n            [9.133995, 45.501526],\n            [9.133995, 45.492533],\n            [9.125002, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.501526],\n            [9.125002, 45.510519],\n            [9.133995, 45.510519],\n            [9.133995, 45.501526],\n            [9.125002, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.510519],\n            [9.125002, 45.519513],\n            [9.133995, 45.519513],\n            [9.133995, 45.510519],\n            [9.125002, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.519513],\n            [9.125002, 45.528506],\n            [9.133995, 45.528506],\n            [9.133995, 45.519513],\n            [9.125002, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.528506],\n            [9.125002, 45.537499],\n            [9.133995, 45.537499],\n            [9.133995, 45.528506],\n            [9.125002, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.537499],\n            [9.125002, 45.546492],\n            [9.133995, 45.546492],\n            [9.133995, 45.537499],\n            [9.125002, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.546492],\n            [9.125002, 45.555485],\n            [9.133995, 45.555485],\n            [9.133995, 45.546492],\n            [9.125002, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.555485],\n            [9.125002, 45.564479],\n            [9.133995, 45.564479],\n            [9.133995, 45.555485],\n            [9.125002, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.564479],\n            [9.125002, 45.573472],\n            [9.133995, 45.573472],\n            [9.133995, 45.564479],\n            [9.125002, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.573472],\n            [9.125002, 45.582465],\n            [9.133995, 45.582465],\n            [9.133995, 45.573472],\n            [9.125002, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.582465],\n            [9.125002, 45.591458],\n            [9.133995, 45.591458],\n            [9.133995, 45.582465],\n            [9.125002, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.591458],\n            [9.125002, 45.600451],\n            [9.133995, 45.600451],\n            [9.133995, 45.591458],\n            [9.125002, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.600451],\n            [9.125002, 45.609445],\n            [9.133995, 45.609445],\n            [9.133995, 45.600451],\n            [9.125002, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.609445],\n            [9.125002, 45.618438],\n            [9.133995, 45.618438],\n            [9.133995, 45.609445],\n            [9.125002, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.618438],\n            [9.125002, 45.627431],\n            [9.133995, 45.627431],\n            [9.133995, 45.618438],\n            [9.125002, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.125002, 45.627431],\n            [9.125002, 45.636424],\n            [9.133995, 45.636424],\n            [9.133995, 45.627431],\n            [9.125002, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.339648],\n            [9.133995, 45.348642],\n            [9.142988, 45.348642],\n            [9.142988, 45.339648],\n            [9.133995, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.348642],\n            [9.133995, 45.357635],\n            [9.142988, 45.357635],\n            [9.142988, 45.348642],\n            [9.133995, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.357635],\n            [9.133995, 45.366628],\n            [9.142988, 45.366628],\n            [9.142988, 45.357635],\n            [9.133995, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.366628],\n            [9.133995, 45.375621],\n            [9.142988, 45.375621],\n            [9.142988, 45.366628],\n            [9.133995, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.375621],\n            [9.133995, 45.384614],\n            [9.142988, 45.384614],\n            [9.142988, 45.375621],\n            [9.133995, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.384614],\n            [9.133995, 45.393608],\n            [9.142988, 45.393608],\n            [9.142988, 45.384614],\n            [9.133995, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.393608],\n            [9.133995, 45.402601],\n            [9.142988, 45.402601],\n            [9.142988, 45.393608],\n            [9.133995, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.402601],\n            [9.133995, 45.411594],\n            [9.142988, 45.411594],\n            [9.142988, 45.402601],\n            [9.133995, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.411594],\n            [9.133995, 45.420587],\n            [9.142988, 45.420587],\n            [9.142988, 45.411594],\n            [9.133995, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.420587],\n            [9.133995, 45.42958],\n            [9.142988, 45.42958],\n            [9.142988, 45.420587],\n            [9.133995, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.42958],\n            [9.133995, 45.438574],\n            [9.142988, 45.438574],\n            [9.142988, 45.42958],\n            [9.133995, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.438574],\n            [9.133995, 45.447567],\n            [9.142988, 45.447567],\n            [9.142988, 45.438574],\n            [9.133995, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.447567],\n            [9.133995, 45.45656],\n            [9.142988, 45.45656],\n            [9.142988, 45.447567],\n            [9.133995, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.45656],\n            [9.133995, 45.465553],\n            [9.142988, 45.465553],\n            [9.142988, 45.45656],\n            [9.133995, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.465553],\n            [9.133995, 45.474547],\n            [9.142988, 45.474547],\n            [9.142988, 45.465553],\n            [9.133995, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.474547],\n            [9.133995, 45.48354],\n            [9.142988, 45.48354],\n            [9.142988, 45.474547],\n            [9.133995, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.48354],\n            [9.133995, 45.492533],\n            [9.142988, 45.492533],\n            [9.142988, 45.48354],\n            [9.133995, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.492533],\n            [9.133995, 45.501526],\n            [9.142988, 45.501526],\n            [9.142988, 45.492533],\n            [9.133995, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.501526],\n            [9.133995, 45.510519],\n            [9.142988, 45.510519],\n            [9.142988, 45.501526],\n            [9.133995, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.510519],\n            [9.133995, 45.519513],\n            [9.142988, 45.519513],\n            [9.142988, 45.510519],\n            [9.133995, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.519513],\n            [9.133995, 45.528506],\n            [9.142988, 45.528506],\n            [9.142988, 45.519513],\n            [9.133995, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.528506],\n            [9.133995, 45.537499],\n            [9.142988, 45.537499],\n            [9.142988, 45.528506],\n            [9.133995, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.537499],\n            [9.133995, 45.546492],\n            [9.142988, 45.546492],\n            [9.142988, 45.537499],\n            [9.133995, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.546492],\n            [9.133995, 45.555485],\n            [9.142988, 45.555485],\n            [9.142988, 45.546492],\n            [9.133995, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.555485],\n            [9.133995, 45.564479],\n            [9.142988, 45.564479],\n            [9.142988, 45.555485],\n            [9.133995, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.564479],\n            [9.133995, 45.573472],\n            [9.142988, 45.573472],\n            [9.142988, 45.564479],\n            [9.133995, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.573472],\n            [9.133995, 45.582465],\n            [9.142988, 45.582465],\n            [9.142988, 45.573472],\n            [9.133995, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.582465],\n            [9.133995, 45.591458],\n            [9.142988, 45.591458],\n            [9.142988, 45.582465],\n            [9.133995, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.591458],\n            [9.133995, 45.600451],\n            [9.142988, 45.600451],\n            [9.142988, 45.591458],\n            [9.133995, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.600451],\n            [9.133995, 45.609445],\n            [9.142988, 45.609445],\n            [9.142988, 45.600451],\n            [9.133995, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.609445],\n            [9.133995, 45.618438],\n            [9.142988, 45.618438],\n            [9.142988, 45.609445],\n            [9.133995, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.618438],\n            [9.133995, 45.627431],\n            [9.142988, 45.627431],\n            [9.142988, 45.618438],\n            [9.133995, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.133995, 45.627431],\n            [9.133995, 45.636424],\n            [9.142988, 45.636424],\n            [9.142988, 45.627431],\n            [9.133995, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.339648],\n            [9.142988, 45.348642],\n            [9.151982, 45.348642],\n            [9.151982, 45.339648],\n            [9.142988, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.348642],\n            [9.142988, 45.357635],\n            [9.151982, 45.357635],\n            [9.151982, 45.348642],\n            [9.142988, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.357635],\n            [9.142988, 45.366628],\n            [9.151982, 45.366628],\n            [9.151982, 45.357635],\n            [9.142988, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.366628],\n            [9.142988, 45.375621],\n            [9.151982, 45.375621],\n            [9.151982, 45.366628],\n            [9.142988, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.375621],\n            [9.142988, 45.384614],\n            [9.151982, 45.384614],\n            [9.151982, 45.375621],\n            [9.142988, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.384614],\n            [9.142988, 45.393608],\n            [9.151982, 45.393608],\n            [9.151982, 45.384614],\n            [9.142988, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.393608],\n            [9.142988, 45.402601],\n            [9.151982, 45.402601],\n            [9.151982, 45.393608],\n            [9.142988, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.402601],\n            [9.142988, 45.411594],\n            [9.151982, 45.411594],\n            [9.151982, 45.402601],\n            [9.142988, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.411594],\n            [9.142988, 45.420587],\n            [9.151982, 45.420587],\n            [9.151982, 45.411594],\n            [9.142988, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.420587],\n            [9.142988, 45.42958],\n            [9.151982, 45.42958],\n            [9.151982, 45.420587],\n            [9.142988, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.42958],\n            [9.142988, 45.438574],\n            [9.151982, 45.438574],\n            [9.151982, 45.42958],\n            [9.142988, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.438574],\n            [9.142988, 45.447567],\n            [9.151982, 45.447567],\n            [9.151982, 45.438574],\n            [9.142988, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.447567],\n            [9.142988, 45.45656],\n            [9.151982, 45.45656],\n            [9.151982, 45.447567],\n            [9.142988, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.45656],\n            [9.142988, 45.465553],\n            [9.151982, 45.465553],\n            [9.151982, 45.45656],\n            [9.142988, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.465553],\n            [9.142988, 45.474547],\n            [9.151982, 45.474547],\n            [9.151982, 45.465553],\n            [9.142988, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.474547],\n            [9.142988, 45.48354],\n            [9.151982, 45.48354],\n            [9.151982, 45.474547],\n            [9.142988, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.48354],\n            [9.142988, 45.492533],\n            [9.151982, 45.492533],\n            [9.151982, 45.48354],\n            [9.142988, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.492533],\n            [9.142988, 45.501526],\n            [9.151982, 45.501526],\n            [9.151982, 45.492533],\n            [9.142988, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.501526],\n            [9.142988, 45.510519],\n            [9.151982, 45.510519],\n            [9.151982, 45.501526],\n            [9.142988, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.510519],\n            [9.142988, 45.519513],\n            [9.151982, 45.519513],\n            [9.151982, 45.510519],\n            [9.142988, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.519513],\n            [9.142988, 45.528506],\n            [9.151982, 45.528506],\n            [9.151982, 45.519513],\n            [9.142988, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.528506],\n            [9.142988, 45.537499],\n            [9.151982, 45.537499],\n            [9.151982, 45.528506],\n            [9.142988, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.537499],\n            [9.142988, 45.546492],\n            [9.151982, 45.546492],\n            [9.151982, 45.537499],\n            [9.142988, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.546492],\n            [9.142988, 45.555485],\n            [9.151982, 45.555485],\n            [9.151982, 45.546492],\n            [9.142988, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.555485],\n            [9.142988, 45.564479],\n            [9.151982, 45.564479],\n            [9.151982, 45.555485],\n            [9.142988, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.564479],\n            [9.142988, 45.573472],\n            [9.151982, 45.573472],\n            [9.151982, 45.564479],\n            [9.142988, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.573472],\n            [9.142988, 45.582465],\n            [9.151982, 45.582465],\n            [9.151982, 45.573472],\n            [9.142988, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.582465],\n            [9.142988, 45.591458],\n            [9.151982, 45.591458],\n            [9.151982, 45.582465],\n            [9.142988, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.591458],\n            [9.142988, 45.600451],\n            [9.151982, 45.600451],\n            [9.151982, 45.591458],\n            [9.142988, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.600451],\n            [9.142988, 45.609445],\n            [9.151982, 45.609445],\n            [9.151982, 45.600451],\n            [9.142988, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.609445],\n            [9.142988, 45.618438],\n            [9.151982, 45.618438],\n            [9.151982, 45.609445],\n            [9.142988, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.618438],\n            [9.142988, 45.627431],\n            [9.151982, 45.627431],\n            [9.151982, 45.618438],\n            [9.142988, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.142988, 45.627431],\n            [9.142988, 45.636424],\n            [9.151982, 45.636424],\n            [9.151982, 45.627431],\n            [9.142988, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.339648],\n            [9.151982, 45.348642],\n            [9.160975, 45.348642],\n            [9.160975, 45.339648],\n            [9.151982, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.348642],\n            [9.151982, 45.357635],\n            [9.160975, 45.357635],\n            [9.160975, 45.348642],\n            [9.151982, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.357635],\n            [9.151982, 45.366628],\n            [9.160975, 45.366628],\n            [9.160975, 45.357635],\n            [9.151982, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.366628],\n            [9.151982, 45.375621],\n            [9.160975, 45.375621],\n            [9.160975, 45.366628],\n            [9.151982, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.375621],\n            [9.151982, 45.384614],\n            [9.160975, 45.384614],\n            [9.160975, 45.375621],\n            [9.151982, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.384614],\n            [9.151982, 45.393608],\n            [9.160975, 45.393608],\n            [9.160975, 45.384614],\n            [9.151982, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.393608],\n            [9.151982, 45.402601],\n            [9.160975, 45.402601],\n            [9.160975, 45.393608],\n            [9.151982, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.402601],\n            [9.151982, 45.411594],\n            [9.160975, 45.411594],\n            [9.160975, 45.402601],\n            [9.151982, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.411594],\n            [9.151982, 45.420587],\n            [9.160975, 45.420587],\n            [9.160975, 45.411594],\n            [9.151982, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.420587],\n            [9.151982, 45.42958],\n            [9.160975, 45.42958],\n            [9.160975, 45.420587],\n            [9.151982, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.42958],\n            [9.151982, 45.438574],\n            [9.160975, 45.438574],\n            [9.160975, 45.42958],\n            [9.151982, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.438574],\n            [9.151982, 45.447567],\n            [9.160975, 45.447567],\n            [9.160975, 45.438574],\n            [9.151982, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.447567],\n            [9.151982, 45.45656],\n            [9.160975, 45.45656],\n            [9.160975, 45.447567],\n            [9.151982, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.45656],\n            [9.151982, 45.465553],\n            [9.160975, 45.465553],\n            [9.160975, 45.45656],\n            [9.151982, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 14,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.465553],\n            [9.151982, 45.474547],\n            [9.160975, 45.474547],\n            [9.160975, 45.465553],\n            [9.151982, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.474547],\n            [9.151982, 45.48354],\n            [9.160975, 45.48354],\n            [9.160975, 45.474547],\n            [9.151982, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.48354],\n            [9.151982, 45.492533],\n            [9.160975, 45.492533],\n            [9.160975, 45.48354],\n            [9.151982, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.492533],\n            [9.151982, 45.501526],\n            [9.160975, 45.501526],\n            [9.160975, 45.492533],\n            [9.151982, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.501526],\n            [9.151982, 45.510519],\n            [9.160975, 45.510519],\n            [9.160975, 45.501526],\n            [9.151982, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.510519],\n            [9.151982, 45.519513],\n            [9.160975, 45.519513],\n            [9.160975, 45.510519],\n            [9.151982, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.519513],\n            [9.151982, 45.528506],\n            [9.160975, 45.528506],\n            [9.160975, 45.519513],\n            [9.151982, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.528506],\n            [9.151982, 45.537499],\n            [9.160975, 45.537499],\n            [9.160975, 45.528506],\n            [9.151982, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.537499],\n            [9.151982, 45.546492],\n            [9.160975, 45.546492],\n            [9.160975, 45.537499],\n            [9.151982, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.546492],\n            [9.151982, 45.555485],\n            [9.160975, 45.555485],\n            [9.160975, 45.546492],\n            [9.151982, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.555485],\n            [9.151982, 45.564479],\n            [9.160975, 45.564479],\n            [9.160975, 45.555485],\n            [9.151982, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.564479],\n            [9.151982, 45.573472],\n            [9.160975, 45.573472],\n            [9.160975, 45.564479],\n            [9.151982, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.573472],\n            [9.151982, 45.582465],\n            [9.160975, 45.582465],\n            [9.160975, 45.573472],\n            [9.151982, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.582465],\n            [9.151982, 45.591458],\n            [9.160975, 45.591458],\n            [9.160975, 45.582465],\n            [9.151982, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.591458],\n            [9.151982, 45.600451],\n            [9.160975, 45.600451],\n            [9.160975, 45.591458],\n            [9.151982, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.600451],\n            [9.151982, 45.609445],\n            [9.160975, 45.609445],\n            [9.160975, 45.600451],\n            [9.151982, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.609445],\n            [9.151982, 45.618438],\n            [9.160975, 45.618438],\n            [9.160975, 45.609445],\n            [9.151982, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.618438],\n            [9.151982, 45.627431],\n            [9.160975, 45.627431],\n            [9.160975, 45.618438],\n            [9.151982, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.151982, 45.627431],\n            [9.151982, 45.636424],\n            [9.160975, 45.636424],\n            [9.160975, 45.627431],\n            [9.151982, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.339648],\n            [9.160975, 45.348642],\n            [9.169968, 45.348642],\n            [9.169968, 45.339648],\n            [9.160975, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.348642],\n            [9.160975, 45.357635],\n            [9.169968, 45.357635],\n            [9.169968, 45.348642],\n            [9.160975, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.357635],\n            [9.160975, 45.366628],\n            [9.169968, 45.366628],\n            [9.169968, 45.357635],\n            [9.160975, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.366628],\n            [9.160975, 45.375621],\n            [9.169968, 45.375621],\n            [9.169968, 45.366628],\n            [9.160975, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.375621],\n            [9.160975, 45.384614],\n            [9.169968, 45.384614],\n            [9.169968, 45.375621],\n            [9.160975, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.384614],\n            [9.160975, 45.393608],\n            [9.169968, 45.393608],\n            [9.169968, 45.384614],\n            [9.160975, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.393608],\n            [9.160975, 45.402601],\n            [9.169968, 45.402601],\n            [9.169968, 45.393608],\n            [9.160975, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.402601],\n            [9.160975, 45.411594],\n            [9.169968, 45.411594],\n            [9.169968, 45.402601],\n            [9.160975, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.411594],\n            [9.160975, 45.420587],\n            [9.169968, 45.420587],\n            [9.169968, 45.411594],\n            [9.160975, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.420587],\n            [9.160975, 45.42958],\n            [9.169968, 45.42958],\n            [9.169968, 45.420587],\n            [9.160975, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.42958],\n            [9.160975, 45.438574],\n            [9.169968, 45.438574],\n            [9.169968, 45.42958],\n            [9.160975, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.438574],\n            [9.160975, 45.447567],\n            [9.169968, 45.447567],\n            [9.169968, 45.438574],\n            [9.160975, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.447567],\n            [9.160975, 45.45656],\n            [9.169968, 45.45656],\n            [9.169968, 45.447567],\n            [9.160975, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.45656],\n            [9.160975, 45.465553],\n            [9.169968, 45.465553],\n            [9.169968, 45.45656],\n            [9.160975, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.465553],\n            [9.160975, 45.474547],\n            [9.169968, 45.474547],\n            [9.169968, 45.465553],\n            [9.160975, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.474547],\n            [9.160975, 45.48354],\n            [9.169968, 45.48354],\n            [9.169968, 45.474547],\n            [9.160975, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.48354],\n            [9.160975, 45.492533],\n            [9.169968, 45.492533],\n            [9.169968, 45.48354],\n            [9.160975, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.492533],\n            [9.160975, 45.501526],\n            [9.169968, 45.501526],\n            [9.169968, 45.492533],\n            [9.160975, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.501526],\n            [9.160975, 45.510519],\n            [9.169968, 45.510519],\n            [9.169968, 45.501526],\n            [9.160975, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.510519],\n            [9.160975, 45.519513],\n            [9.169968, 45.519513],\n            [9.169968, 45.510519],\n            [9.160975, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.519513],\n            [9.160975, 45.528506],\n            [9.169968, 45.528506],\n            [9.169968, 45.519513],\n            [9.160975, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#007aeb\",\n        \"fill\": \"#007aeb\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.528506],\n            [9.160975, 45.537499],\n            [9.169968, 45.537499],\n            [9.169968, 45.528506],\n            [9.160975, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.537499],\n            [9.160975, 45.546492],\n            [9.169968, 45.546492],\n            [9.169968, 45.537499],\n            [9.160975, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.546492],\n            [9.160975, 45.555485],\n            [9.169968, 45.555485],\n            [9.169968, 45.546492],\n            [9.160975, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#007aeb\",\n        \"fill\": \"#007aeb\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.555485],\n            [9.160975, 45.564479],\n            [9.169968, 45.564479],\n            [9.169968, 45.555485],\n            [9.160975, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.564479],\n            [9.160975, 45.573472],\n            [9.169968, 45.573472],\n            [9.169968, 45.564479],\n            [9.160975, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.573472],\n            [9.160975, 45.582465],\n            [9.169968, 45.582465],\n            [9.169968, 45.573472],\n            [9.160975, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.582465],\n            [9.160975, 45.591458],\n            [9.169968, 45.591458],\n            [9.169968, 45.582465],\n            [9.160975, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.591458],\n            [9.160975, 45.600451],\n            [9.169968, 45.600451],\n            [9.169968, 45.591458],\n            [9.160975, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.600451],\n            [9.160975, 45.609445],\n            [9.169968, 45.609445],\n            [9.169968, 45.600451],\n            [9.160975, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.609445],\n            [9.160975, 45.618438],\n            [9.169968, 45.618438],\n            [9.169968, 45.609445],\n            [9.160975, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.618438],\n            [9.160975, 45.627431],\n            [9.169968, 45.627431],\n            [9.169968, 45.618438],\n            [9.160975, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.160975, 45.627431],\n            [9.160975, 45.636424],\n            [9.169968, 45.636424],\n            [9.169968, 45.627431],\n            [9.160975, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.339648],\n            [9.169968, 45.348642],\n            [9.178961, 45.348642],\n            [9.178961, 45.339648],\n            [9.169968, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.348642],\n            [9.169968, 45.357635],\n            [9.178961, 45.357635],\n            [9.178961, 45.348642],\n            [9.169968, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.357635],\n            [9.169968, 45.366628],\n            [9.178961, 45.366628],\n            [9.178961, 45.357635],\n            [9.169968, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.366628],\n            [9.169968, 45.375621],\n            [9.178961, 45.375621],\n            [9.178961, 45.366628],\n            [9.169968, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.375621],\n            [9.169968, 45.384614],\n            [9.178961, 45.384614],\n            [9.178961, 45.375621],\n            [9.169968, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.384614],\n            [9.169968, 45.393608],\n            [9.178961, 45.393608],\n            [9.178961, 45.384614],\n            [9.169968, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.393608],\n            [9.169968, 45.402601],\n            [9.178961, 45.402601],\n            [9.178961, 45.393608],\n            [9.169968, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.402601],\n            [9.169968, 45.411594],\n            [9.178961, 45.411594],\n            [9.178961, 45.402601],\n            [9.169968, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.411594],\n            [9.169968, 45.420587],\n            [9.178961, 45.420587],\n            [9.178961, 45.411594],\n            [9.169968, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.420587],\n            [9.169968, 45.42958],\n            [9.178961, 45.42958],\n            [9.178961, 45.420587],\n            [9.169968, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.42958],\n            [9.169968, 45.438574],\n            [9.178961, 45.438574],\n            [9.178961, 45.42958],\n            [9.169968, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.438574],\n            [9.169968, 45.447567],\n            [9.178961, 45.447567],\n            [9.178961, 45.438574],\n            [9.169968, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.447567],\n            [9.169968, 45.45656],\n            [9.178961, 45.45656],\n            [9.178961, 45.447567],\n            [9.169968, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.45656],\n            [9.169968, 45.465553],\n            [9.178961, 45.465553],\n            [9.178961, 45.45656],\n            [9.169968, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.465553],\n            [9.169968, 45.474547],\n            [9.178961, 45.474547],\n            [9.178961, 45.465553],\n            [9.169968, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.474547],\n            [9.169968, 45.48354],\n            [9.178961, 45.48354],\n            [9.178961, 45.474547],\n            [9.169968, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.48354],\n            [9.169968, 45.492533],\n            [9.178961, 45.492533],\n            [9.178961, 45.48354],\n            [9.169968, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.492533],\n            [9.169968, 45.501526],\n            [9.178961, 45.501526],\n            [9.178961, 45.492533],\n            [9.169968, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.501526],\n            [9.169968, 45.510519],\n            [9.178961, 45.510519],\n            [9.178961, 45.501526],\n            [9.169968, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.510519],\n            [9.169968, 45.519513],\n            [9.178961, 45.519513],\n            [9.178961, 45.510519],\n            [9.169968, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.519513],\n            [9.169968, 45.528506],\n            [9.178961, 45.528506],\n            [9.178961, 45.519513],\n            [9.169968, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#0065c2\",\n        \"fill\": \"#0065c2\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.528506],\n            [9.169968, 45.537499],\n            [9.178961, 45.537499],\n            [9.178961, 45.528506],\n            [9.169968, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 38,\n        \"stroke\": \"#005db3\",\n        \"fill\": \"#005db3\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.537499],\n            [9.169968, 45.546492],\n            [9.178961, 45.546492],\n            [9.178961, 45.537499],\n            [9.169968, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#0065c2\",\n        \"fill\": \"#0065c2\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.546492],\n            [9.169968, 45.555485],\n            [9.178961, 45.555485],\n            [9.178961, 45.546492],\n            [9.169968, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.555485],\n            [9.169968, 45.564479],\n            [9.178961, 45.564479],\n            [9.178961, 45.555485],\n            [9.169968, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#007aeb\",\n        \"fill\": \"#007aeb\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.564479],\n            [9.169968, 45.573472],\n            [9.178961, 45.573472],\n            [9.178961, 45.564479],\n            [9.169968, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.573472],\n            [9.169968, 45.582465],\n            [9.178961, 45.582465],\n            [9.178961, 45.573472],\n            [9.169968, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.582465],\n            [9.169968, 45.591458],\n            [9.178961, 45.591458],\n            [9.178961, 45.582465],\n            [9.169968, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.591458],\n            [9.169968, 45.600451],\n            [9.178961, 45.600451],\n            [9.178961, 45.591458],\n            [9.169968, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.600451],\n            [9.169968, 45.609445],\n            [9.178961, 45.609445],\n            [9.178961, 45.600451],\n            [9.169968, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.609445],\n            [9.169968, 45.618438],\n            [9.178961, 45.618438],\n            [9.178961, 45.609445],\n            [9.169968, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.618438],\n            [9.169968, 45.627431],\n            [9.178961, 45.627431],\n            [9.178961, 45.618438],\n            [9.169968, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.169968, 45.627431],\n            [9.169968, 45.636424],\n            [9.178961, 45.636424],\n            [9.178961, 45.627431],\n            [9.169968, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.339648],\n            [9.178961, 45.348642],\n            [9.187954, 45.348642],\n            [9.187954, 45.339648],\n            [9.178961, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.348642],\n            [9.178961, 45.357635],\n            [9.187954, 45.357635],\n            [9.187954, 45.348642],\n            [9.178961, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.357635],\n            [9.178961, 45.366628],\n            [9.187954, 45.366628],\n            [9.187954, 45.357635],\n            [9.178961, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.366628],\n            [9.178961, 45.375621],\n            [9.187954, 45.375621],\n            [9.187954, 45.366628],\n            [9.178961, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.375621],\n            [9.178961, 45.384614],\n            [9.187954, 45.384614],\n            [9.187954, 45.375621],\n            [9.178961, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.384614],\n            [9.178961, 45.393608],\n            [9.187954, 45.393608],\n            [9.187954, 45.384614],\n            [9.178961, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.393608],\n            [9.178961, 45.402601],\n            [9.187954, 45.402601],\n            [9.187954, 45.393608],\n            [9.178961, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.402601],\n            [9.178961, 45.411594],\n            [9.187954, 45.411594],\n            [9.187954, 45.402601],\n            [9.178961, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.411594],\n            [9.178961, 45.420587],\n            [9.187954, 45.420587],\n            [9.187954, 45.411594],\n            [9.178961, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.420587],\n            [9.178961, 45.42958],\n            [9.187954, 45.42958],\n            [9.187954, 45.420587],\n            [9.178961, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.42958],\n            [9.178961, 45.438574],\n            [9.187954, 45.438574],\n            [9.187954, 45.42958],\n            [9.178961, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.438574],\n            [9.178961, 45.447567],\n            [9.187954, 45.447567],\n            [9.187954, 45.438574],\n            [9.178961, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.447567],\n            [9.178961, 45.45656],\n            [9.187954, 45.45656],\n            [9.187954, 45.447567],\n            [9.178961, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.45656],\n            [9.178961, 45.465553],\n            [9.187954, 45.465553],\n            [9.187954, 45.45656],\n            [9.178961, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.465553],\n            [9.178961, 45.474547],\n            [9.187954, 45.474547],\n            [9.187954, 45.465553],\n            [9.178961, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.474547],\n            [9.178961, 45.48354],\n            [9.187954, 45.48354],\n            [9.187954, 45.474547],\n            [9.178961, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.48354],\n            [9.178961, 45.492533],\n            [9.187954, 45.492533],\n            [9.187954, 45.48354],\n            [9.178961, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.492533],\n            [9.178961, 45.501526],\n            [9.187954, 45.501526],\n            [9.187954, 45.492533],\n            [9.178961, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.501526],\n            [9.178961, 45.510519],\n            [9.187954, 45.510519],\n            [9.187954, 45.501526],\n            [9.178961, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.510519],\n            [9.178961, 45.519513],\n            [9.187954, 45.519513],\n            [9.187954, 45.510519],\n            [9.178961, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.519513],\n            [9.178961, 45.528506],\n            [9.187954, 45.528506],\n            [9.187954, 45.519513],\n            [9.178961, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 42,\n        \"stroke\": \"#00407a\",\n        \"fill\": \"#00407a\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.528506],\n            [9.178961, 45.537499],\n            [9.187954, 45.537499],\n            [9.187954, 45.528506],\n            [9.178961, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 43,\n        \"stroke\": \"#003b70\",\n        \"fill\": \"#003b70\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.537499],\n            [9.178961, 45.546492],\n            [9.187954, 45.546492],\n            [9.187954, 45.537499],\n            [9.178961, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 39,\n        \"stroke\": \"#0055a3\",\n        \"fill\": \"#0055a3\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.546492],\n            [9.178961, 45.555485],\n            [9.187954, 45.555485],\n            [9.187954, 45.546492],\n            [9.178961, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#006dd1\",\n        \"fill\": \"#006dd1\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.555485],\n            [9.178961, 45.564479],\n            [9.187954, 45.564479],\n            [9.187954, 45.555485],\n            [9.178961, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#007aeb\",\n        \"fill\": \"#007aeb\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.564479],\n            [9.178961, 45.573472],\n            [9.187954, 45.573472],\n            [9.187954, 45.564479],\n            [9.178961, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.573472],\n            [9.178961, 45.582465],\n            [9.187954, 45.582465],\n            [9.187954, 45.573472],\n            [9.178961, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.582465],\n            [9.178961, 45.591458],\n            [9.187954, 45.591458],\n            [9.187954, 45.582465],\n            [9.178961, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.591458],\n            [9.178961, 45.600451],\n            [9.187954, 45.600451],\n            [9.187954, 45.591458],\n            [9.178961, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.600451],\n            [9.178961, 45.609445],\n            [9.187954, 45.609445],\n            [9.187954, 45.600451],\n            [9.178961, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.609445],\n            [9.178961, 45.618438],\n            [9.187954, 45.618438],\n            [9.187954, 45.609445],\n            [9.178961, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.618438],\n            [9.178961, 45.627431],\n            [9.187954, 45.627431],\n            [9.187954, 45.618438],\n            [9.178961, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.178961, 45.627431],\n            [9.178961, 45.636424],\n            [9.187954, 45.636424],\n            [9.187954, 45.627431],\n            [9.178961, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.339648],\n            [9.187954, 45.348642],\n            [9.196948, 45.348642],\n            [9.196948, 45.339648],\n            [9.187954, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.348642],\n            [9.187954, 45.357635],\n            [9.196948, 45.357635],\n            [9.196948, 45.348642],\n            [9.187954, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.357635],\n            [9.187954, 45.366628],\n            [9.196948, 45.366628],\n            [9.196948, 45.357635],\n            [9.187954, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.366628],\n            [9.187954, 45.375621],\n            [9.196948, 45.375621],\n            [9.196948, 45.366628],\n            [9.187954, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.375621],\n            [9.187954, 45.384614],\n            [9.196948, 45.384614],\n            [9.196948, 45.375621],\n            [9.187954, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.384614],\n            [9.187954, 45.393608],\n            [9.196948, 45.393608],\n            [9.196948, 45.384614],\n            [9.187954, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.393608],\n            [9.187954, 45.402601],\n            [9.196948, 45.402601],\n            [9.196948, 45.393608],\n            [9.187954, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.402601],\n            [9.187954, 45.411594],\n            [9.196948, 45.411594],\n            [9.196948, 45.402601],\n            [9.187954, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.411594],\n            [9.187954, 45.420587],\n            [9.196948, 45.420587],\n            [9.196948, 45.411594],\n            [9.187954, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.420587],\n            [9.187954, 45.42958],\n            [9.196948, 45.42958],\n            [9.196948, 45.420587],\n            [9.187954, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.42958],\n            [9.187954, 45.438574],\n            [9.196948, 45.438574],\n            [9.196948, 45.42958],\n            [9.187954, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.438574],\n            [9.187954, 45.447567],\n            [9.196948, 45.447567],\n            [9.196948, 45.438574],\n            [9.187954, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.447567],\n            [9.187954, 45.45656],\n            [9.196948, 45.45656],\n            [9.196948, 45.447567],\n            [9.187954, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.45656],\n            [9.187954, 45.465553],\n            [9.196948, 45.465553],\n            [9.196948, 45.45656],\n            [9.187954, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.465553],\n            [9.187954, 45.474547],\n            [9.196948, 45.474547],\n            [9.196948, 45.465553],\n            [9.187954, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.474547],\n            [9.187954, 45.48354],\n            [9.196948, 45.48354],\n            [9.196948, 45.474547],\n            [9.187954, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.48354],\n            [9.187954, 45.492533],\n            [9.196948, 45.492533],\n            [9.196948, 45.48354],\n            [9.187954, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.492533],\n            [9.187954, 45.501526],\n            [9.196948, 45.501526],\n            [9.196948, 45.492533],\n            [9.187954, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.501526],\n            [9.187954, 45.510519],\n            [9.196948, 45.510519],\n            [9.196948, 45.501526],\n            [9.187954, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.510519],\n            [9.187954, 45.519513],\n            [9.196948, 45.519513],\n            [9.196948, 45.510519],\n            [9.187954, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#0065c2\",\n        \"fill\": \"#0065c2\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.519513],\n            [9.187954, 45.528506],\n            [9.196948, 45.528506],\n            [9.196948, 45.519513],\n            [9.187954, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 51,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.528506],\n            [9.187954, 45.537499],\n            [9.196948, 45.537499],\n            [9.196948, 45.528506],\n            [9.187954, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 50,\n        \"stroke\": \"#00080f\",\n        \"fill\": \"#00080f\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.537499],\n            [9.187954, 45.546492],\n            [9.196948, 45.546492],\n            [9.196948, 45.537499],\n            [9.187954, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 41,\n        \"stroke\": \"#00488a\",\n        \"fill\": \"#00488a\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.546492],\n            [9.187954, 45.555485],\n            [9.196948, 45.555485],\n            [9.196948, 45.546492],\n            [9.187954, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#0065c2\",\n        \"fill\": \"#0065c2\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.555485],\n            [9.187954, 45.564479],\n            [9.196948, 45.564479],\n            [9.196948, 45.555485],\n            [9.187954, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#007aeb\",\n        \"fill\": \"#007aeb\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.564479],\n            [9.187954, 45.573472],\n            [9.196948, 45.573472],\n            [9.196948, 45.564479],\n            [9.187954, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.573472],\n            [9.187954, 45.582465],\n            [9.196948, 45.582465],\n            [9.196948, 45.573472],\n            [9.187954, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.582465],\n            [9.187954, 45.591458],\n            [9.196948, 45.591458],\n            [9.196948, 45.582465],\n            [9.187954, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.591458],\n            [9.187954, 45.600451],\n            [9.196948, 45.600451],\n            [9.196948, 45.591458],\n            [9.187954, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.600451],\n            [9.187954, 45.609445],\n            [9.196948, 45.609445],\n            [9.196948, 45.600451],\n            [9.187954, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.609445],\n            [9.187954, 45.618438],\n            [9.196948, 45.618438],\n            [9.196948, 45.609445],\n            [9.187954, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.618438],\n            [9.187954, 45.627431],\n            [9.196948, 45.627431],\n            [9.196948, 45.618438],\n            [9.187954, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.187954, 45.627431],\n            [9.187954, 45.636424],\n            [9.196948, 45.636424],\n            [9.196948, 45.627431],\n            [9.187954, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.339648],\n            [9.196948, 45.348642],\n            [9.205941, 45.348642],\n            [9.205941, 45.339648],\n            [9.196948, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.348642],\n            [9.196948, 45.357635],\n            [9.205941, 45.357635],\n            [9.205941, 45.348642],\n            [9.196948, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.357635],\n            [9.196948, 45.366628],\n            [9.205941, 45.366628],\n            [9.205941, 45.357635],\n            [9.196948, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.366628],\n            [9.196948, 45.375621],\n            [9.205941, 45.375621],\n            [9.205941, 45.366628],\n            [9.196948, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.375621],\n            [9.196948, 45.384614],\n            [9.205941, 45.384614],\n            [9.205941, 45.375621],\n            [9.196948, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.384614],\n            [9.196948, 45.393608],\n            [9.205941, 45.393608],\n            [9.205941, 45.384614],\n            [9.196948, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.393608],\n            [9.196948, 45.402601],\n            [9.205941, 45.402601],\n            [9.205941, 45.393608],\n            [9.196948, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.402601],\n            [9.196948, 45.411594],\n            [9.205941, 45.411594],\n            [9.205941, 45.402601],\n            [9.196948, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.411594],\n            [9.196948, 45.420587],\n            [9.205941, 45.420587],\n            [9.205941, 45.411594],\n            [9.196948, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.420587],\n            [9.196948, 45.42958],\n            [9.205941, 45.42958],\n            [9.205941, 45.420587],\n            [9.196948, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.42958],\n            [9.196948, 45.438574],\n            [9.205941, 45.438574],\n            [9.205941, 45.42958],\n            [9.196948, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.438574],\n            [9.196948, 45.447567],\n            [9.205941, 45.447567],\n            [9.205941, 45.438574],\n            [9.196948, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.447567],\n            [9.196948, 45.45656],\n            [9.205941, 45.45656],\n            [9.205941, 45.447567],\n            [9.196948, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.45656],\n            [9.196948, 45.465553],\n            [9.205941, 45.465553],\n            [9.205941, 45.45656],\n            [9.196948, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.465553],\n            [9.196948, 45.474547],\n            [9.205941, 45.474547],\n            [9.205941, 45.465553],\n            [9.196948, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.474547],\n            [9.196948, 45.48354],\n            [9.205941, 45.48354],\n            [9.205941, 45.474547],\n            [9.196948, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.48354],\n            [9.196948, 45.492533],\n            [9.205941, 45.492533],\n            [9.205941, 45.48354],\n            [9.196948, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.492533],\n            [9.196948, 45.501526],\n            [9.205941, 45.501526],\n            [9.205941, 45.492533],\n            [9.196948, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.501526],\n            [9.196948, 45.510519],\n            [9.205941, 45.510519],\n            [9.205941, 45.501526],\n            [9.196948, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.510519],\n            [9.196948, 45.519513],\n            [9.205941, 45.519513],\n            [9.205941, 45.510519],\n            [9.196948, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#0065c2\",\n        \"fill\": \"#0065c2\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.519513],\n            [9.196948, 45.528506],\n            [9.205941, 45.528506],\n            [9.205941, 45.519513],\n            [9.196948, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 48,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.528506],\n            [9.196948, 45.537499],\n            [9.205941, 45.537499],\n            [9.205941, 45.528506],\n            [9.196948, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 48,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.537499],\n            [9.196948, 45.546492],\n            [9.205941, 45.546492],\n            [9.205941, 45.537499],\n            [9.196948, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 40,\n        \"stroke\": \"#005099\",\n        \"fill\": \"#005099\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.546492],\n            [9.196948, 45.555485],\n            [9.205941, 45.555485],\n            [9.205941, 45.546492],\n            [9.196948, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#0065c2\",\n        \"fill\": \"#0065c2\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.555485],\n            [9.196948, 45.564479],\n            [9.205941, 45.564479],\n            [9.205941, 45.555485],\n            [9.196948, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#007aeb\",\n        \"fill\": \"#007aeb\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.564479],\n            [9.196948, 45.573472],\n            [9.205941, 45.573472],\n            [9.205941, 45.564479],\n            [9.196948, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.573472],\n            [9.196948, 45.582465],\n            [9.205941, 45.582465],\n            [9.205941, 45.573472],\n            [9.196948, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.582465],\n            [9.196948, 45.591458],\n            [9.205941, 45.591458],\n            [9.205941, 45.582465],\n            [9.196948, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.591458],\n            [9.196948, 45.600451],\n            [9.205941, 45.600451],\n            [9.205941, 45.591458],\n            [9.196948, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.600451],\n            [9.196948, 45.609445],\n            [9.205941, 45.609445],\n            [9.205941, 45.600451],\n            [9.196948, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.609445],\n            [9.196948, 45.618438],\n            [9.205941, 45.618438],\n            [9.205941, 45.609445],\n            [9.196948, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.618438],\n            [9.196948, 45.627431],\n            [9.205941, 45.627431],\n            [9.205941, 45.618438],\n            [9.196948, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.196948, 45.627431],\n            [9.196948, 45.636424],\n            [9.205941, 45.636424],\n            [9.205941, 45.627431],\n            [9.196948, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.339648],\n            [9.205941, 45.348642],\n            [9.214934, 45.348642],\n            [9.214934, 45.339648],\n            [9.205941, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.348642],\n            [9.205941, 45.357635],\n            [9.214934, 45.357635],\n            [9.214934, 45.348642],\n            [9.205941, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.357635],\n            [9.205941, 45.366628],\n            [9.214934, 45.366628],\n            [9.214934, 45.357635],\n            [9.205941, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.366628],\n            [9.205941, 45.375621],\n            [9.214934, 45.375621],\n            [9.214934, 45.366628],\n            [9.205941, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.375621],\n            [9.205941, 45.384614],\n            [9.214934, 45.384614],\n            [9.214934, 45.375621],\n            [9.205941, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.384614],\n            [9.205941, 45.393608],\n            [9.214934, 45.393608],\n            [9.214934, 45.384614],\n            [9.205941, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.393608],\n            [9.205941, 45.402601],\n            [9.214934, 45.402601],\n            [9.214934, 45.393608],\n            [9.205941, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.402601],\n            [9.205941, 45.411594],\n            [9.214934, 45.411594],\n            [9.214934, 45.402601],\n            [9.205941, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.411594],\n            [9.205941, 45.420587],\n            [9.214934, 45.420587],\n            [9.214934, 45.411594],\n            [9.205941, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.420587],\n            [9.205941, 45.42958],\n            [9.214934, 45.42958],\n            [9.214934, 45.420587],\n            [9.205941, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.42958],\n            [9.205941, 45.438574],\n            [9.214934, 45.438574],\n            [9.214934, 45.42958],\n            [9.205941, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.438574],\n            [9.205941, 45.447567],\n            [9.214934, 45.447567],\n            [9.214934, 45.438574],\n            [9.205941, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.447567],\n            [9.205941, 45.45656],\n            [9.214934, 45.45656],\n            [9.214934, 45.447567],\n            [9.205941, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.45656],\n            [9.205941, 45.465553],\n            [9.214934, 45.465553],\n            [9.214934, 45.45656],\n            [9.205941, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.465553],\n            [9.205941, 45.474547],\n            [9.214934, 45.474547],\n            [9.214934, 45.465553],\n            [9.205941, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.474547],\n            [9.205941, 45.48354],\n            [9.214934, 45.48354],\n            [9.214934, 45.474547],\n            [9.205941, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.48354],\n            [9.205941, 45.492533],\n            [9.214934, 45.492533],\n            [9.214934, 45.48354],\n            [9.205941, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.492533],\n            [9.205941, 45.501526],\n            [9.214934, 45.501526],\n            [9.214934, 45.492533],\n            [9.205941, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.501526],\n            [9.205941, 45.510519],\n            [9.214934, 45.510519],\n            [9.214934, 45.501526],\n            [9.205941, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.510519],\n            [9.205941, 45.519513],\n            [9.214934, 45.519513],\n            [9.214934, 45.510519],\n            [9.205941, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.519513],\n            [9.205941, 45.528506],\n            [9.214934, 45.528506],\n            [9.214934, 45.519513],\n            [9.205941, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 40,\n        \"stroke\": \"#005099\",\n        \"fill\": \"#005099\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.528506],\n            [9.205941, 45.537499],\n            [9.214934, 45.537499],\n            [9.214934, 45.528506],\n            [9.205941, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 42,\n        \"stroke\": \"#00407a\",\n        \"fill\": \"#00407a\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.537499],\n            [9.205941, 45.546492],\n            [9.214934, 45.546492],\n            [9.214934, 45.537499],\n            [9.205941, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 39,\n        \"stroke\": \"#0055a3\",\n        \"fill\": \"#0055a3\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.546492],\n            [9.205941, 45.555485],\n            [9.214934, 45.555485],\n            [9.214934, 45.546492],\n            [9.205941, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#006dd1\",\n        \"fill\": \"#006dd1\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.555485],\n            [9.205941, 45.564479],\n            [9.214934, 45.564479],\n            [9.214934, 45.555485],\n            [9.205941, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#007aeb\",\n        \"fill\": \"#007aeb\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.564479],\n            [9.205941, 45.573472],\n            [9.214934, 45.573472],\n            [9.214934, 45.564479],\n            [9.205941, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.573472],\n            [9.205941, 45.582465],\n            [9.214934, 45.582465],\n            [9.214934, 45.573472],\n            [9.205941, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.582465],\n            [9.205941, 45.591458],\n            [9.214934, 45.591458],\n            [9.214934, 45.582465],\n            [9.205941, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.591458],\n            [9.205941, 45.600451],\n            [9.214934, 45.600451],\n            [9.214934, 45.591458],\n            [9.205941, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.600451],\n            [9.205941, 45.609445],\n            [9.214934, 45.609445],\n            [9.214934, 45.600451],\n            [9.205941, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.609445],\n            [9.205941, 45.618438],\n            [9.214934, 45.618438],\n            [9.214934, 45.609445],\n            [9.205941, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.618438],\n            [9.205941, 45.627431],\n            [9.214934, 45.627431],\n            [9.214934, 45.618438],\n            [9.205941, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.205941, 45.627431],\n            [9.205941, 45.636424],\n            [9.214934, 45.636424],\n            [9.214934, 45.627431],\n            [9.205941, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.339648],\n            [9.214934, 45.348642],\n            [9.223927, 45.348642],\n            [9.223927, 45.339648],\n            [9.214934, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.348642],\n            [9.214934, 45.357635],\n            [9.223927, 45.357635],\n            [9.223927, 45.348642],\n            [9.214934, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.357635],\n            [9.214934, 45.366628],\n            [9.223927, 45.366628],\n            [9.223927, 45.357635],\n            [9.214934, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.366628],\n            [9.214934, 45.375621],\n            [9.223927, 45.375621],\n            [9.223927, 45.366628],\n            [9.214934, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.375621],\n            [9.214934, 45.384614],\n            [9.223927, 45.384614],\n            [9.223927, 45.375621],\n            [9.214934, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.384614],\n            [9.214934, 45.393608],\n            [9.223927, 45.393608],\n            [9.223927, 45.384614],\n            [9.214934, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.393608],\n            [9.214934, 45.402601],\n            [9.223927, 45.402601],\n            [9.223927, 45.393608],\n            [9.214934, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.402601],\n            [9.214934, 45.411594],\n            [9.223927, 45.411594],\n            [9.223927, 45.402601],\n            [9.214934, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.411594],\n            [9.214934, 45.420587],\n            [9.223927, 45.420587],\n            [9.223927, 45.411594],\n            [9.214934, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.420587],\n            [9.214934, 45.42958],\n            [9.223927, 45.42958],\n            [9.223927, 45.420587],\n            [9.214934, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.42958],\n            [9.214934, 45.438574],\n            [9.223927, 45.438574],\n            [9.223927, 45.42958],\n            [9.214934, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.438574],\n            [9.214934, 45.447567],\n            [9.223927, 45.447567],\n            [9.223927, 45.438574],\n            [9.214934, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.447567],\n            [9.214934, 45.45656],\n            [9.223927, 45.45656],\n            [9.223927, 45.447567],\n            [9.214934, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.45656],\n            [9.214934, 45.465553],\n            [9.223927, 45.465553],\n            [9.223927, 45.45656],\n            [9.214934, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.465553],\n            [9.214934, 45.474547],\n            [9.223927, 45.474547],\n            [9.223927, 45.465553],\n            [9.214934, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.474547],\n            [9.214934, 45.48354],\n            [9.223927, 45.48354],\n            [9.223927, 45.474547],\n            [9.214934, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.48354],\n            [9.214934, 45.492533],\n            [9.223927, 45.492533],\n            [9.223927, 45.48354],\n            [9.214934, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.492533],\n            [9.214934, 45.501526],\n            [9.223927, 45.501526],\n            [9.223927, 45.492533],\n            [9.214934, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.501526],\n            [9.214934, 45.510519],\n            [9.223927, 45.510519],\n            [9.223927, 45.501526],\n            [9.214934, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.510519],\n            [9.214934, 45.519513],\n            [9.223927, 45.519513],\n            [9.223927, 45.510519],\n            [9.214934, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.519513],\n            [9.214934, 45.528506],\n            [9.223927, 45.528506],\n            [9.223927, 45.519513],\n            [9.214934, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#006dd1\",\n        \"fill\": \"#006dd1\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.528506],\n            [9.214934, 45.537499],\n            [9.223927, 45.537499],\n            [9.223927, 45.528506],\n            [9.214934, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 38,\n        \"stroke\": \"#005db3\",\n        \"fill\": \"#005db3\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.537499],\n            [9.214934, 45.546492],\n            [9.223927, 45.546492],\n            [9.223927, 45.537499],\n            [9.214934, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#006dd1\",\n        \"fill\": \"#006dd1\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.546492],\n            [9.214934, 45.555485],\n            [9.223927, 45.555485],\n            [9.223927, 45.546492],\n            [9.214934, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.555485],\n            [9.214934, 45.564479],\n            [9.223927, 45.564479],\n            [9.223927, 45.555485],\n            [9.214934, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#007aeb\",\n        \"fill\": \"#007aeb\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.564479],\n            [9.214934, 45.573472],\n            [9.223927, 45.573472],\n            [9.223927, 45.564479],\n            [9.214934, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.573472],\n            [9.214934, 45.582465],\n            [9.223927, 45.582465],\n            [9.223927, 45.573472],\n            [9.214934, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.582465],\n            [9.214934, 45.591458],\n            [9.223927, 45.591458],\n            [9.223927, 45.582465],\n            [9.214934, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.591458],\n            [9.214934, 45.600451],\n            [9.223927, 45.600451],\n            [9.223927, 45.591458],\n            [9.214934, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.600451],\n            [9.214934, 45.609445],\n            [9.223927, 45.609445],\n            [9.223927, 45.600451],\n            [9.214934, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.609445],\n            [9.214934, 45.618438],\n            [9.223927, 45.618438],\n            [9.223927, 45.609445],\n            [9.214934, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.618438],\n            [9.214934, 45.627431],\n            [9.223927, 45.627431],\n            [9.223927, 45.618438],\n            [9.214934, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.214934, 45.627431],\n            [9.214934, 45.636424],\n            [9.223927, 45.636424],\n            [9.223927, 45.627431],\n            [9.214934, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.339648],\n            [9.223927, 45.348642],\n            [9.232921, 45.348642],\n            [9.232921, 45.339648],\n            [9.223927, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.348642],\n            [9.223927, 45.357635],\n            [9.232921, 45.357635],\n            [9.232921, 45.348642],\n            [9.223927, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.357635],\n            [9.223927, 45.366628],\n            [9.232921, 45.366628],\n            [9.232921, 45.357635],\n            [9.223927, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.366628],\n            [9.223927, 45.375621],\n            [9.232921, 45.375621],\n            [9.232921, 45.366628],\n            [9.223927, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.375621],\n            [9.223927, 45.384614],\n            [9.232921, 45.384614],\n            [9.232921, 45.375621],\n            [9.223927, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.384614],\n            [9.223927, 45.393608],\n            [9.232921, 45.393608],\n            [9.232921, 45.384614],\n            [9.223927, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.393608],\n            [9.223927, 45.402601],\n            [9.232921, 45.402601],\n            [9.232921, 45.393608],\n            [9.223927, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.402601],\n            [9.223927, 45.411594],\n            [9.232921, 45.411594],\n            [9.232921, 45.402601],\n            [9.223927, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.411594],\n            [9.223927, 45.420587],\n            [9.232921, 45.420587],\n            [9.232921, 45.411594],\n            [9.223927, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.420587],\n            [9.223927, 45.42958],\n            [9.232921, 45.42958],\n            [9.232921, 45.420587],\n            [9.223927, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.42958],\n            [9.223927, 45.438574],\n            [9.232921, 45.438574],\n            [9.232921, 45.42958],\n            [9.223927, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.438574],\n            [9.223927, 45.447567],\n            [9.232921, 45.447567],\n            [9.232921, 45.438574],\n            [9.223927, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.447567],\n            [9.223927, 45.45656],\n            [9.232921, 45.45656],\n            [9.232921, 45.447567],\n            [9.223927, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.45656],\n            [9.223927, 45.465553],\n            [9.232921, 45.465553],\n            [9.232921, 45.45656],\n            [9.223927, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.465553],\n            [9.223927, 45.474547],\n            [9.232921, 45.474547],\n            [9.232921, 45.465553],\n            [9.223927, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.474547],\n            [9.223927, 45.48354],\n            [9.232921, 45.48354],\n            [9.232921, 45.474547],\n            [9.223927, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.48354],\n            [9.223927, 45.492533],\n            [9.232921, 45.492533],\n            [9.232921, 45.48354],\n            [9.223927, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.492533],\n            [9.223927, 45.501526],\n            [9.232921, 45.501526],\n            [9.232921, 45.492533],\n            [9.223927, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.501526],\n            [9.223927, 45.510519],\n            [9.232921, 45.510519],\n            [9.232921, 45.501526],\n            [9.223927, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.510519],\n            [9.223927, 45.519513],\n            [9.232921, 45.519513],\n            [9.232921, 45.510519],\n            [9.223927, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.519513],\n            [9.223927, 45.528506],\n            [9.232921, 45.528506],\n            [9.232921, 45.519513],\n            [9.223927, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#007aeb\",\n        \"fill\": \"#007aeb\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.528506],\n            [9.223927, 45.537499],\n            [9.232921, 45.537499],\n            [9.232921, 45.528506],\n            [9.223927, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.537499],\n            [9.223927, 45.546492],\n            [9.232921, 45.546492],\n            [9.232921, 45.537499],\n            [9.223927, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.546492],\n            [9.223927, 45.555485],\n            [9.232921, 45.555485],\n            [9.232921, 45.546492],\n            [9.223927, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#007aeb\",\n        \"fill\": \"#007aeb\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.555485],\n            [9.223927, 45.564479],\n            [9.232921, 45.564479],\n            [9.232921, 45.555485],\n            [9.223927, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.564479],\n            [9.223927, 45.573472],\n            [9.232921, 45.573472],\n            [9.232921, 45.564479],\n            [9.223927, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.573472],\n            [9.223927, 45.582465],\n            [9.232921, 45.582465],\n            [9.232921, 45.573472],\n            [9.223927, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.582465],\n            [9.223927, 45.591458],\n            [9.232921, 45.591458],\n            [9.232921, 45.582465],\n            [9.223927, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.591458],\n            [9.223927, 45.600451],\n            [9.232921, 45.600451],\n            [9.232921, 45.591458],\n            [9.223927, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.600451],\n            [9.223927, 45.609445],\n            [9.232921, 45.609445],\n            [9.232921, 45.600451],\n            [9.223927, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.609445],\n            [9.223927, 45.618438],\n            [9.232921, 45.618438],\n            [9.232921, 45.609445],\n            [9.223927, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.618438],\n            [9.223927, 45.627431],\n            [9.232921, 45.627431],\n            [9.232921, 45.618438],\n            [9.223927, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.223927, 45.627431],\n            [9.223927, 45.636424],\n            [9.232921, 45.636424],\n            [9.232921, 45.627431],\n            [9.223927, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.339648],\n            [9.232921, 45.348642],\n            [9.241914, 45.348642],\n            [9.241914, 45.339648],\n            [9.232921, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.348642],\n            [9.232921, 45.357635],\n            [9.241914, 45.357635],\n            [9.241914, 45.348642],\n            [9.232921, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.357635],\n            [9.232921, 45.366628],\n            [9.241914, 45.366628],\n            [9.241914, 45.357635],\n            [9.232921, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.366628],\n            [9.232921, 45.375621],\n            [9.241914, 45.375621],\n            [9.241914, 45.366628],\n            [9.232921, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.375621],\n            [9.232921, 45.384614],\n            [9.241914, 45.384614],\n            [9.241914, 45.375621],\n            [9.232921, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.384614],\n            [9.232921, 45.393608],\n            [9.241914, 45.393608],\n            [9.241914, 45.384614],\n            [9.232921, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.393608],\n            [9.232921, 45.402601],\n            [9.241914, 45.402601],\n            [9.241914, 45.393608],\n            [9.232921, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.402601],\n            [9.232921, 45.411594],\n            [9.241914, 45.411594],\n            [9.241914, 45.402601],\n            [9.232921, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.411594],\n            [9.232921, 45.420587],\n            [9.241914, 45.420587],\n            [9.241914, 45.411594],\n            [9.232921, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.420587],\n            [9.232921, 45.42958],\n            [9.241914, 45.42958],\n            [9.241914, 45.420587],\n            [9.232921, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.42958],\n            [9.232921, 45.438574],\n            [9.241914, 45.438574],\n            [9.241914, 45.42958],\n            [9.232921, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.438574],\n            [9.232921, 45.447567],\n            [9.241914, 45.447567],\n            [9.241914, 45.438574],\n            [9.232921, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.447567],\n            [9.232921, 45.45656],\n            [9.241914, 45.45656],\n            [9.241914, 45.447567],\n            [9.232921, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.45656],\n            [9.232921, 45.465553],\n            [9.241914, 45.465553],\n            [9.241914, 45.45656],\n            [9.232921, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.465553],\n            [9.232921, 45.474547],\n            [9.241914, 45.474547],\n            [9.241914, 45.465553],\n            [9.232921, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.474547],\n            [9.232921, 45.48354],\n            [9.241914, 45.48354],\n            [9.241914, 45.474547],\n            [9.232921, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.48354],\n            [9.232921, 45.492533],\n            [9.241914, 45.492533],\n            [9.241914, 45.48354],\n            [9.232921, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.492533],\n            [9.232921, 45.501526],\n            [9.241914, 45.501526],\n            [9.241914, 45.492533],\n            [9.232921, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.501526],\n            [9.232921, 45.510519],\n            [9.241914, 45.510519],\n            [9.241914, 45.501526],\n            [9.232921, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.510519],\n            [9.232921, 45.519513],\n            [9.241914, 45.519513],\n            [9.241914, 45.510519],\n            [9.232921, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.519513],\n            [9.232921, 45.528506],\n            [9.241914, 45.528506],\n            [9.241914, 45.519513],\n            [9.232921, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.528506],\n            [9.232921, 45.537499],\n            [9.241914, 45.537499],\n            [9.241914, 45.528506],\n            [9.232921, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.537499],\n            [9.232921, 45.546492],\n            [9.241914, 45.546492],\n            [9.241914, 45.537499],\n            [9.232921, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.546492],\n            [9.232921, 45.555485],\n            [9.241914, 45.555485],\n            [9.241914, 45.546492],\n            [9.232921, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.555485],\n            [9.232921, 45.564479],\n            [9.241914, 45.564479],\n            [9.241914, 45.555485],\n            [9.232921, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.564479],\n            [9.232921, 45.573472],\n            [9.241914, 45.573472],\n            [9.241914, 45.564479],\n            [9.232921, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.573472],\n            [9.232921, 45.582465],\n            [9.241914, 45.582465],\n            [9.241914, 45.573472],\n            [9.232921, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.582465],\n            [9.232921, 45.591458],\n            [9.241914, 45.591458],\n            [9.241914, 45.582465],\n            [9.232921, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.591458],\n            [9.232921, 45.600451],\n            [9.241914, 45.600451],\n            [9.241914, 45.591458],\n            [9.232921, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.600451],\n            [9.232921, 45.609445],\n            [9.241914, 45.609445],\n            [9.241914, 45.600451],\n            [9.232921, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.609445],\n            [9.232921, 45.618438],\n            [9.241914, 45.618438],\n            [9.241914, 45.609445],\n            [9.232921, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.618438],\n            [9.232921, 45.627431],\n            [9.241914, 45.627431],\n            [9.241914, 45.618438],\n            [9.232921, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.232921, 45.627431],\n            [9.232921, 45.636424],\n            [9.241914, 45.636424],\n            [9.241914, 45.627431],\n            [9.232921, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.339648],\n            [9.241914, 45.348642],\n            [9.250907, 45.348642],\n            [9.250907, 45.339648],\n            [9.241914, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.348642],\n            [9.241914, 45.357635],\n            [9.250907, 45.357635],\n            [9.250907, 45.348642],\n            [9.241914, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.357635],\n            [9.241914, 45.366628],\n            [9.250907, 45.366628],\n            [9.250907, 45.357635],\n            [9.241914, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.366628],\n            [9.241914, 45.375621],\n            [9.250907, 45.375621],\n            [9.250907, 45.366628],\n            [9.241914, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.375621],\n            [9.241914, 45.384614],\n            [9.250907, 45.384614],\n            [9.250907, 45.375621],\n            [9.241914, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.384614],\n            [9.241914, 45.393608],\n            [9.250907, 45.393608],\n            [9.250907, 45.384614],\n            [9.241914, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.393608],\n            [9.241914, 45.402601],\n            [9.250907, 45.402601],\n            [9.250907, 45.393608],\n            [9.241914, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.402601],\n            [9.241914, 45.411594],\n            [9.250907, 45.411594],\n            [9.250907, 45.402601],\n            [9.241914, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.411594],\n            [9.241914, 45.420587],\n            [9.250907, 45.420587],\n            [9.250907, 45.411594],\n            [9.241914, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.420587],\n            [9.241914, 45.42958],\n            [9.250907, 45.42958],\n            [9.250907, 45.420587],\n            [9.241914, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.42958],\n            [9.241914, 45.438574],\n            [9.250907, 45.438574],\n            [9.250907, 45.42958],\n            [9.241914, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.438574],\n            [9.241914, 45.447567],\n            [9.250907, 45.447567],\n            [9.250907, 45.438574],\n            [9.241914, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.447567],\n            [9.241914, 45.45656],\n            [9.250907, 45.45656],\n            [9.250907, 45.447567],\n            [9.241914, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.45656],\n            [9.241914, 45.465553],\n            [9.250907, 45.465553],\n            [9.250907, 45.45656],\n            [9.241914, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.465553],\n            [9.241914, 45.474547],\n            [9.250907, 45.474547],\n            [9.250907, 45.465553],\n            [9.241914, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.474547],\n            [9.241914, 45.48354],\n            [9.250907, 45.48354],\n            [9.250907, 45.474547],\n            [9.241914, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.48354],\n            [9.241914, 45.492533],\n            [9.250907, 45.492533],\n            [9.250907, 45.48354],\n            [9.241914, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.492533],\n            [9.241914, 45.501526],\n            [9.250907, 45.501526],\n            [9.250907, 45.492533],\n            [9.241914, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.501526],\n            [9.241914, 45.510519],\n            [9.250907, 45.510519],\n            [9.250907, 45.501526],\n            [9.241914, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.510519],\n            [9.241914, 45.519513],\n            [9.250907, 45.519513],\n            [9.250907, 45.510519],\n            [9.241914, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.519513],\n            [9.241914, 45.528506],\n            [9.250907, 45.528506],\n            [9.250907, 45.519513],\n            [9.241914, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.528506],\n            [9.241914, 45.537499],\n            [9.250907, 45.537499],\n            [9.250907, 45.528506],\n            [9.241914, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.537499],\n            [9.241914, 45.546492],\n            [9.250907, 45.546492],\n            [9.250907, 45.537499],\n            [9.241914, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.546492],\n            [9.241914, 45.555485],\n            [9.250907, 45.555485],\n            [9.250907, 45.546492],\n            [9.241914, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.555485],\n            [9.241914, 45.564479],\n            [9.250907, 45.564479],\n            [9.250907, 45.555485],\n            [9.241914, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.564479],\n            [9.241914, 45.573472],\n            [9.250907, 45.573472],\n            [9.250907, 45.564479],\n            [9.241914, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.573472],\n            [9.241914, 45.582465],\n            [9.250907, 45.582465],\n            [9.250907, 45.573472],\n            [9.241914, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.582465],\n            [9.241914, 45.591458],\n            [9.250907, 45.591458],\n            [9.250907, 45.582465],\n            [9.241914, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.591458],\n            [9.241914, 45.600451],\n            [9.250907, 45.600451],\n            [9.250907, 45.591458],\n            [9.241914, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.600451],\n            [9.241914, 45.609445],\n            [9.250907, 45.609445],\n            [9.250907, 45.600451],\n            [9.241914, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.609445],\n            [9.241914, 45.618438],\n            [9.250907, 45.618438],\n            [9.250907, 45.609445],\n            [9.241914, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.618438],\n            [9.241914, 45.627431],\n            [9.250907, 45.627431],\n            [9.250907, 45.618438],\n            [9.241914, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.241914, 45.627431],\n            [9.241914, 45.636424],\n            [9.250907, 45.636424],\n            [9.250907, 45.627431],\n            [9.241914, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.339648],\n            [9.250907, 45.348642],\n            [9.2599, 45.348642],\n            [9.2599, 45.339648],\n            [9.250907, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.348642],\n            [9.250907, 45.357635],\n            [9.2599, 45.357635],\n            [9.2599, 45.348642],\n            [9.250907, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.357635],\n            [9.250907, 45.366628],\n            [9.2599, 45.366628],\n            [9.2599, 45.357635],\n            [9.250907, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.366628],\n            [9.250907, 45.375621],\n            [9.2599, 45.375621],\n            [9.2599, 45.366628],\n            [9.250907, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.375621],\n            [9.250907, 45.384614],\n            [9.2599, 45.384614],\n            [9.2599, 45.375621],\n            [9.250907, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.384614],\n            [9.250907, 45.393608],\n            [9.2599, 45.393608],\n            [9.2599, 45.384614],\n            [9.250907, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.393608],\n            [9.250907, 45.402601],\n            [9.2599, 45.402601],\n            [9.2599, 45.393608],\n            [9.250907, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.402601],\n            [9.250907, 45.411594],\n            [9.2599, 45.411594],\n            [9.2599, 45.402601],\n            [9.250907, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.411594],\n            [9.250907, 45.420587],\n            [9.2599, 45.420587],\n            [9.2599, 45.411594],\n            [9.250907, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.420587],\n            [9.250907, 45.42958],\n            [9.2599, 45.42958],\n            [9.2599, 45.420587],\n            [9.250907, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.42958],\n            [9.250907, 45.438574],\n            [9.2599, 45.438574],\n            [9.2599, 45.42958],\n            [9.250907, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.438574],\n            [9.250907, 45.447567],\n            [9.2599, 45.447567],\n            [9.2599, 45.438574],\n            [9.250907, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.447567],\n            [9.250907, 45.45656],\n            [9.2599, 45.45656],\n            [9.2599, 45.447567],\n            [9.250907, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.45656],\n            [9.250907, 45.465553],\n            [9.2599, 45.465553],\n            [9.2599, 45.45656],\n            [9.250907, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.465553],\n            [9.250907, 45.474547],\n            [9.2599, 45.474547],\n            [9.2599, 45.465553],\n            [9.250907, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.474547],\n            [9.250907, 45.48354],\n            [9.2599, 45.48354],\n            [9.2599, 45.474547],\n            [9.250907, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.48354],\n            [9.250907, 45.492533],\n            [9.2599, 45.492533],\n            [9.2599, 45.48354],\n            [9.250907, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.492533],\n            [9.250907, 45.501526],\n            [9.2599, 45.501526],\n            [9.2599, 45.492533],\n            [9.250907, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.501526],\n            [9.250907, 45.510519],\n            [9.2599, 45.510519],\n            [9.2599, 45.501526],\n            [9.250907, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.510519],\n            [9.250907, 45.519513],\n            [9.2599, 45.519513],\n            [9.2599, 45.510519],\n            [9.250907, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.519513],\n            [9.250907, 45.528506],\n            [9.2599, 45.528506],\n            [9.2599, 45.519513],\n            [9.250907, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.528506],\n            [9.250907, 45.537499],\n            [9.2599, 45.537499],\n            [9.2599, 45.528506],\n            [9.250907, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.537499],\n            [9.250907, 45.546492],\n            [9.2599, 45.546492],\n            [9.2599, 45.537499],\n            [9.250907, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.546492],\n            [9.250907, 45.555485],\n            [9.2599, 45.555485],\n            [9.2599, 45.546492],\n            [9.250907, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.555485],\n            [9.250907, 45.564479],\n            [9.2599, 45.564479],\n            [9.2599, 45.555485],\n            [9.250907, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.564479],\n            [9.250907, 45.573472],\n            [9.2599, 45.573472],\n            [9.2599, 45.564479],\n            [9.250907, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.573472],\n            [9.250907, 45.582465],\n            [9.2599, 45.582465],\n            [9.2599, 45.573472],\n            [9.250907, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.582465],\n            [9.250907, 45.591458],\n            [9.2599, 45.591458],\n            [9.2599, 45.582465],\n            [9.250907, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.591458],\n            [9.250907, 45.600451],\n            [9.2599, 45.600451],\n            [9.2599, 45.591458],\n            [9.250907, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.600451],\n            [9.250907, 45.609445],\n            [9.2599, 45.609445],\n            [9.2599, 45.600451],\n            [9.250907, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.609445],\n            [9.250907, 45.618438],\n            [9.2599, 45.618438],\n            [9.2599, 45.609445],\n            [9.250907, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.618438],\n            [9.250907, 45.627431],\n            [9.2599, 45.627431],\n            [9.2599, 45.618438],\n            [9.250907, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.250907, 45.627431],\n            [9.250907, 45.636424],\n            [9.2599, 45.636424],\n            [9.2599, 45.627431],\n            [9.250907, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.339648],\n            [9.2599, 45.348642],\n            [9.268893, 45.348642],\n            [9.268893, 45.339648],\n            [9.2599, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.348642],\n            [9.2599, 45.357635],\n            [9.268893, 45.357635],\n            [9.268893, 45.348642],\n            [9.2599, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.357635],\n            [9.2599, 45.366628],\n            [9.268893, 45.366628],\n            [9.268893, 45.357635],\n            [9.2599, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.366628],\n            [9.2599, 45.375621],\n            [9.268893, 45.375621],\n            [9.268893, 45.366628],\n            [9.2599, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.375621],\n            [9.2599, 45.384614],\n            [9.268893, 45.384614],\n            [9.268893, 45.375621],\n            [9.2599, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.384614],\n            [9.2599, 45.393608],\n            [9.268893, 45.393608],\n            [9.268893, 45.384614],\n            [9.2599, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.393608],\n            [9.2599, 45.402601],\n            [9.268893, 45.402601],\n            [9.268893, 45.393608],\n            [9.2599, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.402601],\n            [9.2599, 45.411594],\n            [9.268893, 45.411594],\n            [9.268893, 45.402601],\n            [9.2599, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.411594],\n            [9.2599, 45.420587],\n            [9.268893, 45.420587],\n            [9.268893, 45.411594],\n            [9.2599, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.420587],\n            [9.2599, 45.42958],\n            [9.268893, 45.42958],\n            [9.268893, 45.420587],\n            [9.2599, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.42958],\n            [9.2599, 45.438574],\n            [9.268893, 45.438574],\n            [9.268893, 45.42958],\n            [9.2599, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.438574],\n            [9.2599, 45.447567],\n            [9.268893, 45.447567],\n            [9.268893, 45.438574],\n            [9.2599, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.447567],\n            [9.2599, 45.45656],\n            [9.268893, 45.45656],\n            [9.268893, 45.447567],\n            [9.2599, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.45656],\n            [9.2599, 45.465553],\n            [9.268893, 45.465553],\n            [9.268893, 45.45656],\n            [9.2599, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.465553],\n            [9.2599, 45.474547],\n            [9.268893, 45.474547],\n            [9.268893, 45.465553],\n            [9.2599, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.474547],\n            [9.2599, 45.48354],\n            [9.268893, 45.48354],\n            [9.268893, 45.474547],\n            [9.2599, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.48354],\n            [9.2599, 45.492533],\n            [9.268893, 45.492533],\n            [9.268893, 45.48354],\n            [9.2599, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.492533],\n            [9.2599, 45.501526],\n            [9.268893, 45.501526],\n            [9.268893, 45.492533],\n            [9.2599, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.501526],\n            [9.2599, 45.510519],\n            [9.268893, 45.510519],\n            [9.268893, 45.501526],\n            [9.2599, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.510519],\n            [9.2599, 45.519513],\n            [9.268893, 45.519513],\n            [9.268893, 45.510519],\n            [9.2599, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.519513],\n            [9.2599, 45.528506],\n            [9.268893, 45.528506],\n            [9.268893, 45.519513],\n            [9.2599, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.528506],\n            [9.2599, 45.537499],\n            [9.268893, 45.537499],\n            [9.268893, 45.528506],\n            [9.2599, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.537499],\n            [9.2599, 45.546492],\n            [9.268893, 45.546492],\n            [9.268893, 45.537499],\n            [9.2599, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.546492],\n            [9.2599, 45.555485],\n            [9.268893, 45.555485],\n            [9.268893, 45.546492],\n            [9.2599, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.555485],\n            [9.2599, 45.564479],\n            [9.268893, 45.564479],\n            [9.268893, 45.555485],\n            [9.2599, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.564479],\n            [9.2599, 45.573472],\n            [9.268893, 45.573472],\n            [9.268893, 45.564479],\n            [9.2599, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.573472],\n            [9.2599, 45.582465],\n            [9.268893, 45.582465],\n            [9.268893, 45.573472],\n            [9.2599, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.582465],\n            [9.2599, 45.591458],\n            [9.268893, 45.591458],\n            [9.268893, 45.582465],\n            [9.2599, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.591458],\n            [9.2599, 45.600451],\n            [9.268893, 45.600451],\n            [9.268893, 45.591458],\n            [9.2599, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.600451],\n            [9.2599, 45.609445],\n            [9.268893, 45.609445],\n            [9.268893, 45.600451],\n            [9.2599, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.609445],\n            [9.2599, 45.618438],\n            [9.268893, 45.618438],\n            [9.268893, 45.609445],\n            [9.2599, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.618438],\n            [9.2599, 45.627431],\n            [9.268893, 45.627431],\n            [9.268893, 45.618438],\n            [9.2599, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2599, 45.627431],\n            [9.2599, 45.636424],\n            [9.268893, 45.636424],\n            [9.268893, 45.627431],\n            [9.2599, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.339648],\n            [9.268893, 45.348642],\n            [9.277887, 45.348642],\n            [9.277887, 45.339648],\n            [9.268893, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.348642],\n            [9.268893, 45.357635],\n            [9.277887, 45.357635],\n            [9.277887, 45.348642],\n            [9.268893, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.357635],\n            [9.268893, 45.366628],\n            [9.277887, 45.366628],\n            [9.277887, 45.357635],\n            [9.268893, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.366628],\n            [9.268893, 45.375621],\n            [9.277887, 45.375621],\n            [9.277887, 45.366628],\n            [9.268893, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.375621],\n            [9.268893, 45.384614],\n            [9.277887, 45.384614],\n            [9.277887, 45.375621],\n            [9.268893, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.384614],\n            [9.268893, 45.393608],\n            [9.277887, 45.393608],\n            [9.277887, 45.384614],\n            [9.268893, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.393608],\n            [9.268893, 45.402601],\n            [9.277887, 45.402601],\n            [9.277887, 45.393608],\n            [9.268893, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.402601],\n            [9.268893, 45.411594],\n            [9.277887, 45.411594],\n            [9.277887, 45.402601],\n            [9.268893, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.411594],\n            [9.268893, 45.420587],\n            [9.277887, 45.420587],\n            [9.277887, 45.411594],\n            [9.268893, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.420587],\n            [9.268893, 45.42958],\n            [9.277887, 45.42958],\n            [9.277887, 45.420587],\n            [9.268893, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.42958],\n            [9.268893, 45.438574],\n            [9.277887, 45.438574],\n            [9.277887, 45.42958],\n            [9.268893, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.438574],\n            [9.268893, 45.447567],\n            [9.277887, 45.447567],\n            [9.277887, 45.438574],\n            [9.268893, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.447567],\n            [9.268893, 45.45656],\n            [9.277887, 45.45656],\n            [9.277887, 45.447567],\n            [9.268893, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.45656],\n            [9.268893, 45.465553],\n            [9.277887, 45.465553],\n            [9.277887, 45.45656],\n            [9.268893, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.465553],\n            [9.268893, 45.474547],\n            [9.277887, 45.474547],\n            [9.277887, 45.465553],\n            [9.268893, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.474547],\n            [9.268893, 45.48354],\n            [9.277887, 45.48354],\n            [9.277887, 45.474547],\n            [9.268893, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.48354],\n            [9.268893, 45.492533],\n            [9.277887, 45.492533],\n            [9.277887, 45.48354],\n            [9.268893, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.492533],\n            [9.268893, 45.501526],\n            [9.277887, 45.501526],\n            [9.277887, 45.492533],\n            [9.268893, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.501526],\n            [9.268893, 45.510519],\n            [9.277887, 45.510519],\n            [9.277887, 45.501526],\n            [9.268893, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.510519],\n            [9.268893, 45.519513],\n            [9.277887, 45.519513],\n            [9.277887, 45.510519],\n            [9.268893, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.519513],\n            [9.268893, 45.528506],\n            [9.277887, 45.528506],\n            [9.277887, 45.519513],\n            [9.268893, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.528506],\n            [9.268893, 45.537499],\n            [9.277887, 45.537499],\n            [9.277887, 45.528506],\n            [9.268893, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.537499],\n            [9.268893, 45.546492],\n            [9.277887, 45.546492],\n            [9.277887, 45.537499],\n            [9.268893, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.546492],\n            [9.268893, 45.555485],\n            [9.277887, 45.555485],\n            [9.277887, 45.546492],\n            [9.268893, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.555485],\n            [9.268893, 45.564479],\n            [9.277887, 45.564479],\n            [9.277887, 45.555485],\n            [9.268893, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.564479],\n            [9.268893, 45.573472],\n            [9.277887, 45.573472],\n            [9.277887, 45.564479],\n            [9.268893, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.573472],\n            [9.268893, 45.582465],\n            [9.277887, 45.582465],\n            [9.277887, 45.573472],\n            [9.268893, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.582465],\n            [9.268893, 45.591458],\n            [9.277887, 45.591458],\n            [9.277887, 45.582465],\n            [9.268893, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.591458],\n            [9.268893, 45.600451],\n            [9.277887, 45.600451],\n            [9.277887, 45.591458],\n            [9.268893, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.600451],\n            [9.268893, 45.609445],\n            [9.277887, 45.609445],\n            [9.277887, 45.600451],\n            [9.268893, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.609445],\n            [9.268893, 45.618438],\n            [9.277887, 45.618438],\n            [9.277887, 45.609445],\n            [9.268893, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.618438],\n            [9.268893, 45.627431],\n            [9.277887, 45.627431],\n            [9.277887, 45.618438],\n            [9.268893, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.268893, 45.627431],\n            [9.268893, 45.636424],\n            [9.277887, 45.636424],\n            [9.277887, 45.627431],\n            [9.268893, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.339648],\n            [9.277887, 45.348642],\n            [9.28688, 45.348642],\n            [9.28688, 45.339648],\n            [9.277887, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.348642],\n            [9.277887, 45.357635],\n            [9.28688, 45.357635],\n            [9.28688, 45.348642],\n            [9.277887, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.357635],\n            [9.277887, 45.366628],\n            [9.28688, 45.366628],\n            [9.28688, 45.357635],\n            [9.277887, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.366628],\n            [9.277887, 45.375621],\n            [9.28688, 45.375621],\n            [9.28688, 45.366628],\n            [9.277887, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.375621],\n            [9.277887, 45.384614],\n            [9.28688, 45.384614],\n            [9.28688, 45.375621],\n            [9.277887, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.384614],\n            [9.277887, 45.393608],\n            [9.28688, 45.393608],\n            [9.28688, 45.384614],\n            [9.277887, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.393608],\n            [9.277887, 45.402601],\n            [9.28688, 45.402601],\n            [9.28688, 45.393608],\n            [9.277887, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.402601],\n            [9.277887, 45.411594],\n            [9.28688, 45.411594],\n            [9.28688, 45.402601],\n            [9.277887, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.411594],\n            [9.277887, 45.420587],\n            [9.28688, 45.420587],\n            [9.28688, 45.411594],\n            [9.277887, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.420587],\n            [9.277887, 45.42958],\n            [9.28688, 45.42958],\n            [9.28688, 45.420587],\n            [9.277887, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.42958],\n            [9.277887, 45.438574],\n            [9.28688, 45.438574],\n            [9.28688, 45.42958],\n            [9.277887, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.438574],\n            [9.277887, 45.447567],\n            [9.28688, 45.447567],\n            [9.28688, 45.438574],\n            [9.277887, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.447567],\n            [9.277887, 45.45656],\n            [9.28688, 45.45656],\n            [9.28688, 45.447567],\n            [9.277887, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.45656],\n            [9.277887, 45.465553],\n            [9.28688, 45.465553],\n            [9.28688, 45.45656],\n            [9.277887, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.465553],\n            [9.277887, 45.474547],\n            [9.28688, 45.474547],\n            [9.28688, 45.465553],\n            [9.277887, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.474547],\n            [9.277887, 45.48354],\n            [9.28688, 45.48354],\n            [9.28688, 45.474547],\n            [9.277887, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.48354],\n            [9.277887, 45.492533],\n            [9.28688, 45.492533],\n            [9.28688, 45.48354],\n            [9.277887, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.492533],\n            [9.277887, 45.501526],\n            [9.28688, 45.501526],\n            [9.28688, 45.492533],\n            [9.277887, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.501526],\n            [9.277887, 45.510519],\n            [9.28688, 45.510519],\n            [9.28688, 45.501526],\n            [9.277887, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.510519],\n            [9.277887, 45.519513],\n            [9.28688, 45.519513],\n            [9.28688, 45.510519],\n            [9.277887, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.519513],\n            [9.277887, 45.528506],\n            [9.28688, 45.528506],\n            [9.28688, 45.519513],\n            [9.277887, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.528506],\n            [9.277887, 45.537499],\n            [9.28688, 45.537499],\n            [9.28688, 45.528506],\n            [9.277887, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.537499],\n            [9.277887, 45.546492],\n            [9.28688, 45.546492],\n            [9.28688, 45.537499],\n            [9.277887, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.546492],\n            [9.277887, 45.555485],\n            [9.28688, 45.555485],\n            [9.28688, 45.546492],\n            [9.277887, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.555485],\n            [9.277887, 45.564479],\n            [9.28688, 45.564479],\n            [9.28688, 45.555485],\n            [9.277887, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.564479],\n            [9.277887, 45.573472],\n            [9.28688, 45.573472],\n            [9.28688, 45.564479],\n            [9.277887, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.573472],\n            [9.277887, 45.582465],\n            [9.28688, 45.582465],\n            [9.28688, 45.573472],\n            [9.277887, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.582465],\n            [9.277887, 45.591458],\n            [9.28688, 45.591458],\n            [9.28688, 45.582465],\n            [9.277887, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.591458],\n            [9.277887, 45.600451],\n            [9.28688, 45.600451],\n            [9.28688, 45.591458],\n            [9.277887, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.600451],\n            [9.277887, 45.609445],\n            [9.28688, 45.609445],\n            [9.28688, 45.600451],\n            [9.277887, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.609445],\n            [9.277887, 45.618438],\n            [9.28688, 45.618438],\n            [9.28688, 45.609445],\n            [9.277887, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.618438],\n            [9.277887, 45.627431],\n            [9.28688, 45.627431],\n            [9.28688, 45.618438],\n            [9.277887, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.277887, 45.627431],\n            [9.277887, 45.636424],\n            [9.28688, 45.636424],\n            [9.28688, 45.627431],\n            [9.277887, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.339648],\n            [9.28688, 45.348642],\n            [9.295873, 45.348642],\n            [9.295873, 45.339648],\n            [9.28688, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.348642],\n            [9.28688, 45.357635],\n            [9.295873, 45.357635],\n            [9.295873, 45.348642],\n            [9.28688, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.357635],\n            [9.28688, 45.366628],\n            [9.295873, 45.366628],\n            [9.295873, 45.357635],\n            [9.28688, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.366628],\n            [9.28688, 45.375621],\n            [9.295873, 45.375621],\n            [9.295873, 45.366628],\n            [9.28688, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.375621],\n            [9.28688, 45.384614],\n            [9.295873, 45.384614],\n            [9.295873, 45.375621],\n            [9.28688, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.384614],\n            [9.28688, 45.393608],\n            [9.295873, 45.393608],\n            [9.295873, 45.384614],\n            [9.28688, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.393608],\n            [9.28688, 45.402601],\n            [9.295873, 45.402601],\n            [9.295873, 45.393608],\n            [9.28688, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.402601],\n            [9.28688, 45.411594],\n            [9.295873, 45.411594],\n            [9.295873, 45.402601],\n            [9.28688, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.411594],\n            [9.28688, 45.420587],\n            [9.295873, 45.420587],\n            [9.295873, 45.411594],\n            [9.28688, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.420587],\n            [9.28688, 45.42958],\n            [9.295873, 45.42958],\n            [9.295873, 45.420587],\n            [9.28688, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.42958],\n            [9.28688, 45.438574],\n            [9.295873, 45.438574],\n            [9.295873, 45.42958],\n            [9.28688, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.438574],\n            [9.28688, 45.447567],\n            [9.295873, 45.447567],\n            [9.295873, 45.438574],\n            [9.28688, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.447567],\n            [9.28688, 45.45656],\n            [9.295873, 45.45656],\n            [9.295873, 45.447567],\n            [9.28688, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.45656],\n            [9.28688, 45.465553],\n            [9.295873, 45.465553],\n            [9.295873, 45.45656],\n            [9.28688, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.465553],\n            [9.28688, 45.474547],\n            [9.295873, 45.474547],\n            [9.295873, 45.465553],\n            [9.28688, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.474547],\n            [9.28688, 45.48354],\n            [9.295873, 45.48354],\n            [9.295873, 45.474547],\n            [9.28688, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.48354],\n            [9.28688, 45.492533],\n            [9.295873, 45.492533],\n            [9.295873, 45.48354],\n            [9.28688, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.492533],\n            [9.28688, 45.501526],\n            [9.295873, 45.501526],\n            [9.295873, 45.492533],\n            [9.28688, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.501526],\n            [9.28688, 45.510519],\n            [9.295873, 45.510519],\n            [9.295873, 45.501526],\n            [9.28688, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.510519],\n            [9.28688, 45.519513],\n            [9.295873, 45.519513],\n            [9.295873, 45.510519],\n            [9.28688, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.519513],\n            [9.28688, 45.528506],\n            [9.295873, 45.528506],\n            [9.295873, 45.519513],\n            [9.28688, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.528506],\n            [9.28688, 45.537499],\n            [9.295873, 45.537499],\n            [9.295873, 45.528506],\n            [9.28688, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.537499],\n            [9.28688, 45.546492],\n            [9.295873, 45.546492],\n            [9.295873, 45.537499],\n            [9.28688, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.546492],\n            [9.28688, 45.555485],\n            [9.295873, 45.555485],\n            [9.295873, 45.546492],\n            [9.28688, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.555485],\n            [9.28688, 45.564479],\n            [9.295873, 45.564479],\n            [9.295873, 45.555485],\n            [9.28688, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.564479],\n            [9.28688, 45.573472],\n            [9.295873, 45.573472],\n            [9.295873, 45.564479],\n            [9.28688, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.573472],\n            [9.28688, 45.582465],\n            [9.295873, 45.582465],\n            [9.295873, 45.573472],\n            [9.28688, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.582465],\n            [9.28688, 45.591458],\n            [9.295873, 45.591458],\n            [9.295873, 45.582465],\n            [9.28688, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.591458],\n            [9.28688, 45.600451],\n            [9.295873, 45.600451],\n            [9.295873, 45.591458],\n            [9.28688, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.600451],\n            [9.28688, 45.609445],\n            [9.295873, 45.609445],\n            [9.295873, 45.600451],\n            [9.28688, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.609445],\n            [9.28688, 45.618438],\n            [9.295873, 45.618438],\n            [9.295873, 45.609445],\n            [9.28688, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.618438],\n            [9.28688, 45.627431],\n            [9.295873, 45.627431],\n            [9.295873, 45.618438],\n            [9.28688, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.28688, 45.627431],\n            [9.28688, 45.636424],\n            [9.295873, 45.636424],\n            [9.295873, 45.627431],\n            [9.28688, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.339648],\n            [9.295873, 45.348642],\n            [9.304866, 45.348642],\n            [9.304866, 45.339648],\n            [9.295873, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.348642],\n            [9.295873, 45.357635],\n            [9.304866, 45.357635],\n            [9.304866, 45.348642],\n            [9.295873, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.357635],\n            [9.295873, 45.366628],\n            [9.304866, 45.366628],\n            [9.304866, 45.357635],\n            [9.295873, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.366628],\n            [9.295873, 45.375621],\n            [9.304866, 45.375621],\n            [9.304866, 45.366628],\n            [9.295873, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.375621],\n            [9.295873, 45.384614],\n            [9.304866, 45.384614],\n            [9.304866, 45.375621],\n            [9.295873, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.384614],\n            [9.295873, 45.393608],\n            [9.304866, 45.393608],\n            [9.304866, 45.384614],\n            [9.295873, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.393608],\n            [9.295873, 45.402601],\n            [9.304866, 45.402601],\n            [9.304866, 45.393608],\n            [9.295873, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.402601],\n            [9.295873, 45.411594],\n            [9.304866, 45.411594],\n            [9.304866, 45.402601],\n            [9.295873, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.411594],\n            [9.295873, 45.420587],\n            [9.304866, 45.420587],\n            [9.304866, 45.411594],\n            [9.295873, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.420587],\n            [9.295873, 45.42958],\n            [9.304866, 45.42958],\n            [9.304866, 45.420587],\n            [9.295873, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.42958],\n            [9.295873, 45.438574],\n            [9.304866, 45.438574],\n            [9.304866, 45.42958],\n            [9.295873, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.438574],\n            [9.295873, 45.447567],\n            [9.304866, 45.447567],\n            [9.304866, 45.438574],\n            [9.295873, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.447567],\n            [9.295873, 45.45656],\n            [9.304866, 45.45656],\n            [9.304866, 45.447567],\n            [9.295873, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.45656],\n            [9.295873, 45.465553],\n            [9.304866, 45.465553],\n            [9.304866, 45.45656],\n            [9.295873, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.465553],\n            [9.295873, 45.474547],\n            [9.304866, 45.474547],\n            [9.304866, 45.465553],\n            [9.295873, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.474547],\n            [9.295873, 45.48354],\n            [9.304866, 45.48354],\n            [9.304866, 45.474547],\n            [9.295873, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.48354],\n            [9.295873, 45.492533],\n            [9.304866, 45.492533],\n            [9.304866, 45.48354],\n            [9.295873, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.492533],\n            [9.295873, 45.501526],\n            [9.304866, 45.501526],\n            [9.304866, 45.492533],\n            [9.295873, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.501526],\n            [9.295873, 45.510519],\n            [9.304866, 45.510519],\n            [9.304866, 45.501526],\n            [9.295873, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.510519],\n            [9.295873, 45.519513],\n            [9.304866, 45.519513],\n            [9.304866, 45.510519],\n            [9.295873, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.519513],\n            [9.295873, 45.528506],\n            [9.304866, 45.528506],\n            [9.304866, 45.519513],\n            [9.295873, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.528506],\n            [9.295873, 45.537499],\n            [9.304866, 45.537499],\n            [9.304866, 45.528506],\n            [9.295873, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.537499],\n            [9.295873, 45.546492],\n            [9.304866, 45.546492],\n            [9.304866, 45.537499],\n            [9.295873, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.546492],\n            [9.295873, 45.555485],\n            [9.304866, 45.555485],\n            [9.304866, 45.546492],\n            [9.295873, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.555485],\n            [9.295873, 45.564479],\n            [9.304866, 45.564479],\n            [9.304866, 45.555485],\n            [9.295873, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.564479],\n            [9.295873, 45.573472],\n            [9.304866, 45.573472],\n            [9.304866, 45.564479],\n            [9.295873, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.573472],\n            [9.295873, 45.582465],\n            [9.304866, 45.582465],\n            [9.304866, 45.573472],\n            [9.295873, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.582465],\n            [9.295873, 45.591458],\n            [9.304866, 45.591458],\n            [9.304866, 45.582465],\n            [9.295873, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.591458],\n            [9.295873, 45.600451],\n            [9.304866, 45.600451],\n            [9.304866, 45.591458],\n            [9.295873, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.600451],\n            [9.295873, 45.609445],\n            [9.304866, 45.609445],\n            [9.304866, 45.600451],\n            [9.295873, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.609445],\n            [9.295873, 45.618438],\n            [9.304866, 45.618438],\n            [9.304866, 45.609445],\n            [9.295873, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.618438],\n            [9.295873, 45.627431],\n            [9.304866, 45.627431],\n            [9.304866, 45.618438],\n            [9.295873, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.295873, 45.627431],\n            [9.295873, 45.636424],\n            [9.304866, 45.636424],\n            [9.304866, 45.627431],\n            [9.295873, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.339648],\n            [9.304866, 45.348642],\n            [9.313859, 45.348642],\n            [9.313859, 45.339648],\n            [9.304866, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.348642],\n            [9.304866, 45.357635],\n            [9.313859, 45.357635],\n            [9.313859, 45.348642],\n            [9.304866, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.357635],\n            [9.304866, 45.366628],\n            [9.313859, 45.366628],\n            [9.313859, 45.357635],\n            [9.304866, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.366628],\n            [9.304866, 45.375621],\n            [9.313859, 45.375621],\n            [9.313859, 45.366628],\n            [9.304866, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.375621],\n            [9.304866, 45.384614],\n            [9.313859, 45.384614],\n            [9.313859, 45.375621],\n            [9.304866, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.384614],\n            [9.304866, 45.393608],\n            [9.313859, 45.393608],\n            [9.313859, 45.384614],\n            [9.304866, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.393608],\n            [9.304866, 45.402601],\n            [9.313859, 45.402601],\n            [9.313859, 45.393608],\n            [9.304866, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.402601],\n            [9.304866, 45.411594],\n            [9.313859, 45.411594],\n            [9.313859, 45.402601],\n            [9.304866, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.411594],\n            [9.304866, 45.420587],\n            [9.313859, 45.420587],\n            [9.313859, 45.411594],\n            [9.304866, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.420587],\n            [9.304866, 45.42958],\n            [9.313859, 45.42958],\n            [9.313859, 45.420587],\n            [9.304866, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.42958],\n            [9.304866, 45.438574],\n            [9.313859, 45.438574],\n            [9.313859, 45.42958],\n            [9.304866, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.438574],\n            [9.304866, 45.447567],\n            [9.313859, 45.447567],\n            [9.313859, 45.438574],\n            [9.304866, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.447567],\n            [9.304866, 45.45656],\n            [9.313859, 45.45656],\n            [9.313859, 45.447567],\n            [9.304866, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.45656],\n            [9.304866, 45.465553],\n            [9.313859, 45.465553],\n            [9.313859, 45.45656],\n            [9.304866, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.465553],\n            [9.304866, 45.474547],\n            [9.313859, 45.474547],\n            [9.313859, 45.465553],\n            [9.304866, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.474547],\n            [9.304866, 45.48354],\n            [9.313859, 45.48354],\n            [9.313859, 45.474547],\n            [9.304866, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.48354],\n            [9.304866, 45.492533],\n            [9.313859, 45.492533],\n            [9.313859, 45.48354],\n            [9.304866, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.492533],\n            [9.304866, 45.501526],\n            [9.313859, 45.501526],\n            [9.313859, 45.492533],\n            [9.304866, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.501526],\n            [9.304866, 45.510519],\n            [9.313859, 45.510519],\n            [9.313859, 45.501526],\n            [9.304866, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.510519],\n            [9.304866, 45.519513],\n            [9.313859, 45.519513],\n            [9.313859, 45.510519],\n            [9.304866, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.519513],\n            [9.304866, 45.528506],\n            [9.313859, 45.528506],\n            [9.313859, 45.519513],\n            [9.304866, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.528506],\n            [9.304866, 45.537499],\n            [9.313859, 45.537499],\n            [9.313859, 45.528506],\n            [9.304866, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.537499],\n            [9.304866, 45.546492],\n            [9.313859, 45.546492],\n            [9.313859, 45.537499],\n            [9.304866, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.546492],\n            [9.304866, 45.555485],\n            [9.313859, 45.555485],\n            [9.313859, 45.546492],\n            [9.304866, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.555485],\n            [9.304866, 45.564479],\n            [9.313859, 45.564479],\n            [9.313859, 45.555485],\n            [9.304866, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.564479],\n            [9.304866, 45.573472],\n            [9.313859, 45.573472],\n            [9.313859, 45.564479],\n            [9.304866, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.573472],\n            [9.304866, 45.582465],\n            [9.313859, 45.582465],\n            [9.313859, 45.573472],\n            [9.304866, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.582465],\n            [9.304866, 45.591458],\n            [9.313859, 45.591458],\n            [9.313859, 45.582465],\n            [9.304866, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.591458],\n            [9.304866, 45.600451],\n            [9.313859, 45.600451],\n            [9.313859, 45.591458],\n            [9.304866, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.600451],\n            [9.304866, 45.609445],\n            [9.313859, 45.609445],\n            [9.313859, 45.600451],\n            [9.304866, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.609445],\n            [9.304866, 45.618438],\n            [9.313859, 45.618438],\n            [9.313859, 45.609445],\n            [9.304866, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.618438],\n            [9.304866, 45.627431],\n            [9.313859, 45.627431],\n            [9.313859, 45.618438],\n            [9.304866, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.304866, 45.627431],\n            [9.304866, 45.636424],\n            [9.313859, 45.636424],\n            [9.313859, 45.627431],\n            [9.304866, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.339648],\n            [9.313859, 45.348642],\n            [9.322853, 45.348642],\n            [9.322853, 45.339648],\n            [9.313859, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.348642],\n            [9.313859, 45.357635],\n            [9.322853, 45.357635],\n            [9.322853, 45.348642],\n            [9.313859, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.357635],\n            [9.313859, 45.366628],\n            [9.322853, 45.366628],\n            [9.322853, 45.357635],\n            [9.313859, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.366628],\n            [9.313859, 45.375621],\n            [9.322853, 45.375621],\n            [9.322853, 45.366628],\n            [9.313859, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.375621],\n            [9.313859, 45.384614],\n            [9.322853, 45.384614],\n            [9.322853, 45.375621],\n            [9.313859, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.384614],\n            [9.313859, 45.393608],\n            [9.322853, 45.393608],\n            [9.322853, 45.384614],\n            [9.313859, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.393608],\n            [9.313859, 45.402601],\n            [9.322853, 45.402601],\n            [9.322853, 45.393608],\n            [9.313859, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.402601],\n            [9.313859, 45.411594],\n            [9.322853, 45.411594],\n            [9.322853, 45.402601],\n            [9.313859, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.411594],\n            [9.313859, 45.420587],\n            [9.322853, 45.420587],\n            [9.322853, 45.411594],\n            [9.313859, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.420587],\n            [9.313859, 45.42958],\n            [9.322853, 45.42958],\n            [9.322853, 45.420587],\n            [9.313859, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.42958],\n            [9.313859, 45.438574],\n            [9.322853, 45.438574],\n            [9.322853, 45.42958],\n            [9.313859, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.438574],\n            [9.313859, 45.447567],\n            [9.322853, 45.447567],\n            [9.322853, 45.438574],\n            [9.313859, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.447567],\n            [9.313859, 45.45656],\n            [9.322853, 45.45656],\n            [9.322853, 45.447567],\n            [9.313859, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.45656],\n            [9.313859, 45.465553],\n            [9.322853, 45.465553],\n            [9.322853, 45.45656],\n            [9.313859, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.465553],\n            [9.313859, 45.474547],\n            [9.322853, 45.474547],\n            [9.322853, 45.465553],\n            [9.313859, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.474547],\n            [9.313859, 45.48354],\n            [9.322853, 45.48354],\n            [9.322853, 45.474547],\n            [9.313859, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.48354],\n            [9.313859, 45.492533],\n            [9.322853, 45.492533],\n            [9.322853, 45.48354],\n            [9.313859, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.492533],\n            [9.313859, 45.501526],\n            [9.322853, 45.501526],\n            [9.322853, 45.492533],\n            [9.313859, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.501526],\n            [9.313859, 45.510519],\n            [9.322853, 45.510519],\n            [9.322853, 45.501526],\n            [9.313859, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.510519],\n            [9.313859, 45.519513],\n            [9.322853, 45.519513],\n            [9.322853, 45.510519],\n            [9.313859, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.519513],\n            [9.313859, 45.528506],\n            [9.322853, 45.528506],\n            [9.322853, 45.519513],\n            [9.313859, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.528506],\n            [9.313859, 45.537499],\n            [9.322853, 45.537499],\n            [9.322853, 45.528506],\n            [9.313859, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.537499],\n            [9.313859, 45.546492],\n            [9.322853, 45.546492],\n            [9.322853, 45.537499],\n            [9.313859, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.546492],\n            [9.313859, 45.555485],\n            [9.322853, 45.555485],\n            [9.322853, 45.546492],\n            [9.313859, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.555485],\n            [9.313859, 45.564479],\n            [9.322853, 45.564479],\n            [9.322853, 45.555485],\n            [9.313859, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.564479],\n            [9.313859, 45.573472],\n            [9.322853, 45.573472],\n            [9.322853, 45.564479],\n            [9.313859, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.573472],\n            [9.313859, 45.582465],\n            [9.322853, 45.582465],\n            [9.322853, 45.573472],\n            [9.313859, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.582465],\n            [9.313859, 45.591458],\n            [9.322853, 45.591458],\n            [9.322853, 45.582465],\n            [9.313859, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.591458],\n            [9.313859, 45.600451],\n            [9.322853, 45.600451],\n            [9.322853, 45.591458],\n            [9.313859, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.600451],\n            [9.313859, 45.609445],\n            [9.322853, 45.609445],\n            [9.322853, 45.600451],\n            [9.313859, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.609445],\n            [9.313859, 45.618438],\n            [9.322853, 45.618438],\n            [9.322853, 45.609445],\n            [9.313859, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.618438],\n            [9.313859, 45.627431],\n            [9.322853, 45.627431],\n            [9.322853, 45.618438],\n            [9.313859, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.313859, 45.627431],\n            [9.313859, 45.636424],\n            [9.322853, 45.636424],\n            [9.322853, 45.627431],\n            [9.313859, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.339648],\n            [9.322853, 45.348642],\n            [9.331846, 45.348642],\n            [9.331846, 45.339648],\n            [9.322853, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.348642],\n            [9.322853, 45.357635],\n            [9.331846, 45.357635],\n            [9.331846, 45.348642],\n            [9.322853, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.357635],\n            [9.322853, 45.366628],\n            [9.331846, 45.366628],\n            [9.331846, 45.357635],\n            [9.322853, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.366628],\n            [9.322853, 45.375621],\n            [9.331846, 45.375621],\n            [9.331846, 45.366628],\n            [9.322853, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.375621],\n            [9.322853, 45.384614],\n            [9.331846, 45.384614],\n            [9.331846, 45.375621],\n            [9.322853, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.384614],\n            [9.322853, 45.393608],\n            [9.331846, 45.393608],\n            [9.331846, 45.384614],\n            [9.322853, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.393608],\n            [9.322853, 45.402601],\n            [9.331846, 45.402601],\n            [9.331846, 45.393608],\n            [9.322853, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.402601],\n            [9.322853, 45.411594],\n            [9.331846, 45.411594],\n            [9.331846, 45.402601],\n            [9.322853, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.411594],\n            [9.322853, 45.420587],\n            [9.331846, 45.420587],\n            [9.331846, 45.411594],\n            [9.322853, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.420587],\n            [9.322853, 45.42958],\n            [9.331846, 45.42958],\n            [9.331846, 45.420587],\n            [9.322853, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.42958],\n            [9.322853, 45.438574],\n            [9.331846, 45.438574],\n            [9.331846, 45.42958],\n            [9.322853, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.438574],\n            [9.322853, 45.447567],\n            [9.331846, 45.447567],\n            [9.331846, 45.438574],\n            [9.322853, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.447567],\n            [9.322853, 45.45656],\n            [9.331846, 45.45656],\n            [9.331846, 45.447567],\n            [9.322853, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.45656],\n            [9.322853, 45.465553],\n            [9.331846, 45.465553],\n            [9.331846, 45.45656],\n            [9.322853, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.465553],\n            [9.322853, 45.474547],\n            [9.331846, 45.474547],\n            [9.331846, 45.465553],\n            [9.322853, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.474547],\n            [9.322853, 45.48354],\n            [9.331846, 45.48354],\n            [9.331846, 45.474547],\n            [9.322853, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.48354],\n            [9.322853, 45.492533],\n            [9.331846, 45.492533],\n            [9.331846, 45.48354],\n            [9.322853, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.492533],\n            [9.322853, 45.501526],\n            [9.331846, 45.501526],\n            [9.331846, 45.492533],\n            [9.322853, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.501526],\n            [9.322853, 45.510519],\n            [9.331846, 45.510519],\n            [9.331846, 45.501526],\n            [9.322853, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.510519],\n            [9.322853, 45.519513],\n            [9.331846, 45.519513],\n            [9.331846, 45.510519],\n            [9.322853, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.519513],\n            [9.322853, 45.528506],\n            [9.331846, 45.528506],\n            [9.331846, 45.519513],\n            [9.322853, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.528506],\n            [9.322853, 45.537499],\n            [9.331846, 45.537499],\n            [9.331846, 45.528506],\n            [9.322853, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.537499],\n            [9.322853, 45.546492],\n            [9.331846, 45.546492],\n            [9.331846, 45.537499],\n            [9.322853, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.546492],\n            [9.322853, 45.555485],\n            [9.331846, 45.555485],\n            [9.331846, 45.546492],\n            [9.322853, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.555485],\n            [9.322853, 45.564479],\n            [9.331846, 45.564479],\n            [9.331846, 45.555485],\n            [9.322853, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.564479],\n            [9.322853, 45.573472],\n            [9.331846, 45.573472],\n            [9.331846, 45.564479],\n            [9.322853, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.573472],\n            [9.322853, 45.582465],\n            [9.331846, 45.582465],\n            [9.331846, 45.573472],\n            [9.322853, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.582465],\n            [9.322853, 45.591458],\n            [9.331846, 45.591458],\n            [9.331846, 45.582465],\n            [9.322853, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.591458],\n            [9.322853, 45.600451],\n            [9.331846, 45.600451],\n            [9.331846, 45.591458],\n            [9.322853, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.600451],\n            [9.322853, 45.609445],\n            [9.331846, 45.609445],\n            [9.331846, 45.600451],\n            [9.322853, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.609445],\n            [9.322853, 45.618438],\n            [9.331846, 45.618438],\n            [9.331846, 45.609445],\n            [9.322853, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.618438],\n            [9.322853, 45.627431],\n            [9.331846, 45.627431],\n            [9.331846, 45.618438],\n            [9.322853, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.322853, 45.627431],\n            [9.322853, 45.636424],\n            [9.331846, 45.636424],\n            [9.331846, 45.627431],\n            [9.322853, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.339648],\n            [9.331846, 45.348642],\n            [9.340839, 45.348642],\n            [9.340839, 45.339648],\n            [9.331846, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.348642],\n            [9.331846, 45.357635],\n            [9.340839, 45.357635],\n            [9.340839, 45.348642],\n            [9.331846, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.357635],\n            [9.331846, 45.366628],\n            [9.340839, 45.366628],\n            [9.340839, 45.357635],\n            [9.331846, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.366628],\n            [9.331846, 45.375621],\n            [9.340839, 45.375621],\n            [9.340839, 45.366628],\n            [9.331846, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.375621],\n            [9.331846, 45.384614],\n            [9.340839, 45.384614],\n            [9.340839, 45.375621],\n            [9.331846, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.384614],\n            [9.331846, 45.393608],\n            [9.340839, 45.393608],\n            [9.340839, 45.384614],\n            [9.331846, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.393608],\n            [9.331846, 45.402601],\n            [9.340839, 45.402601],\n            [9.340839, 45.393608],\n            [9.331846, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.402601],\n            [9.331846, 45.411594],\n            [9.340839, 45.411594],\n            [9.340839, 45.402601],\n            [9.331846, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.411594],\n            [9.331846, 45.420587],\n            [9.340839, 45.420587],\n            [9.340839, 45.411594],\n            [9.331846, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.420587],\n            [9.331846, 45.42958],\n            [9.340839, 45.42958],\n            [9.340839, 45.420587],\n            [9.331846, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.42958],\n            [9.331846, 45.438574],\n            [9.340839, 45.438574],\n            [9.340839, 45.42958],\n            [9.331846, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.438574],\n            [9.331846, 45.447567],\n            [9.340839, 45.447567],\n            [9.340839, 45.438574],\n            [9.331846, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.447567],\n            [9.331846, 45.45656],\n            [9.340839, 45.45656],\n            [9.340839, 45.447567],\n            [9.331846, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.45656],\n            [9.331846, 45.465553],\n            [9.340839, 45.465553],\n            [9.340839, 45.45656],\n            [9.331846, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.465553],\n            [9.331846, 45.474547],\n            [9.340839, 45.474547],\n            [9.340839, 45.465553],\n            [9.331846, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.474547],\n            [9.331846, 45.48354],\n            [9.340839, 45.48354],\n            [9.340839, 45.474547],\n            [9.331846, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.48354],\n            [9.331846, 45.492533],\n            [9.340839, 45.492533],\n            [9.340839, 45.48354],\n            [9.331846, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.492533],\n            [9.331846, 45.501526],\n            [9.340839, 45.501526],\n            [9.340839, 45.492533],\n            [9.331846, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.501526],\n            [9.331846, 45.510519],\n            [9.340839, 45.510519],\n            [9.340839, 45.501526],\n            [9.331846, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.510519],\n            [9.331846, 45.519513],\n            [9.340839, 45.519513],\n            [9.340839, 45.510519],\n            [9.331846, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.519513],\n            [9.331846, 45.528506],\n            [9.340839, 45.528506],\n            [9.340839, 45.519513],\n            [9.331846, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.528506],\n            [9.331846, 45.537499],\n            [9.340839, 45.537499],\n            [9.340839, 45.528506],\n            [9.331846, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.537499],\n            [9.331846, 45.546492],\n            [9.340839, 45.546492],\n            [9.340839, 45.537499],\n            [9.331846, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.546492],\n            [9.331846, 45.555485],\n            [9.340839, 45.555485],\n            [9.340839, 45.546492],\n            [9.331846, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.555485],\n            [9.331846, 45.564479],\n            [9.340839, 45.564479],\n            [9.340839, 45.555485],\n            [9.331846, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.564479],\n            [9.331846, 45.573472],\n            [9.340839, 45.573472],\n            [9.340839, 45.564479],\n            [9.331846, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.573472],\n            [9.331846, 45.582465],\n            [9.340839, 45.582465],\n            [9.340839, 45.573472],\n            [9.331846, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.582465],\n            [9.331846, 45.591458],\n            [9.340839, 45.591458],\n            [9.340839, 45.582465],\n            [9.331846, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.591458],\n            [9.331846, 45.600451],\n            [9.340839, 45.600451],\n            [9.340839, 45.591458],\n            [9.331846, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.600451],\n            [9.331846, 45.609445],\n            [9.340839, 45.609445],\n            [9.340839, 45.600451],\n            [9.331846, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.609445],\n            [9.331846, 45.618438],\n            [9.340839, 45.618438],\n            [9.340839, 45.609445],\n            [9.331846, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.618438],\n            [9.331846, 45.627431],\n            [9.340839, 45.627431],\n            [9.340839, 45.618438],\n            [9.331846, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.331846, 45.627431],\n            [9.331846, 45.636424],\n            [9.340839, 45.636424],\n            [9.340839, 45.627431],\n            [9.331846, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.339648],\n            [9.340839, 45.348642],\n            [9.349832, 45.348642],\n            [9.349832, 45.339648],\n            [9.340839, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.348642],\n            [9.340839, 45.357635],\n            [9.349832, 45.357635],\n            [9.349832, 45.348642],\n            [9.340839, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.357635],\n            [9.340839, 45.366628],\n            [9.349832, 45.366628],\n            [9.349832, 45.357635],\n            [9.340839, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.366628],\n            [9.340839, 45.375621],\n            [9.349832, 45.375621],\n            [9.349832, 45.366628],\n            [9.340839, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.375621],\n            [9.340839, 45.384614],\n            [9.349832, 45.384614],\n            [9.349832, 45.375621],\n            [9.340839, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.384614],\n            [9.340839, 45.393608],\n            [9.349832, 45.393608],\n            [9.349832, 45.384614],\n            [9.340839, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.393608],\n            [9.340839, 45.402601],\n            [9.349832, 45.402601],\n            [9.349832, 45.393608],\n            [9.340839, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.402601],\n            [9.340839, 45.411594],\n            [9.349832, 45.411594],\n            [9.349832, 45.402601],\n            [9.340839, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.411594],\n            [9.340839, 45.420587],\n            [9.349832, 45.420587],\n            [9.349832, 45.411594],\n            [9.340839, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.420587],\n            [9.340839, 45.42958],\n            [9.349832, 45.42958],\n            [9.349832, 45.420587],\n            [9.340839, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.42958],\n            [9.340839, 45.438574],\n            [9.349832, 45.438574],\n            [9.349832, 45.42958],\n            [9.340839, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.438574],\n            [9.340839, 45.447567],\n            [9.349832, 45.447567],\n            [9.349832, 45.438574],\n            [9.340839, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.447567],\n            [9.340839, 45.45656],\n            [9.349832, 45.45656],\n            [9.349832, 45.447567],\n            [9.340839, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.45656],\n            [9.340839, 45.465553],\n            [9.349832, 45.465553],\n            [9.349832, 45.45656],\n            [9.340839, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.465553],\n            [9.340839, 45.474547],\n            [9.349832, 45.474547],\n            [9.349832, 45.465553],\n            [9.340839, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.474547],\n            [9.340839, 45.48354],\n            [9.349832, 45.48354],\n            [9.349832, 45.474547],\n            [9.340839, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.48354],\n            [9.340839, 45.492533],\n            [9.349832, 45.492533],\n            [9.349832, 45.48354],\n            [9.340839, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.492533],\n            [9.340839, 45.501526],\n            [9.349832, 45.501526],\n            [9.349832, 45.492533],\n            [9.340839, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.501526],\n            [9.340839, 45.510519],\n            [9.349832, 45.510519],\n            [9.349832, 45.501526],\n            [9.340839, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.510519],\n            [9.340839, 45.519513],\n            [9.349832, 45.519513],\n            [9.349832, 45.510519],\n            [9.340839, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.519513],\n            [9.340839, 45.528506],\n            [9.349832, 45.528506],\n            [9.349832, 45.519513],\n            [9.340839, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.528506],\n            [9.340839, 45.537499],\n            [9.349832, 45.537499],\n            [9.349832, 45.528506],\n            [9.340839, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.537499],\n            [9.340839, 45.546492],\n            [9.349832, 45.546492],\n            [9.349832, 45.537499],\n            [9.340839, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.546492],\n            [9.340839, 45.555485],\n            [9.349832, 45.555485],\n            [9.349832, 45.546492],\n            [9.340839, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.555485],\n            [9.340839, 45.564479],\n            [9.349832, 45.564479],\n            [9.349832, 45.555485],\n            [9.340839, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.564479],\n            [9.340839, 45.573472],\n            [9.349832, 45.573472],\n            [9.349832, 45.564479],\n            [9.340839, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.573472],\n            [9.340839, 45.582465],\n            [9.349832, 45.582465],\n            [9.349832, 45.573472],\n            [9.340839, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.582465],\n            [9.340839, 45.591458],\n            [9.349832, 45.591458],\n            [9.349832, 45.582465],\n            [9.340839, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.591458],\n            [9.340839, 45.600451],\n            [9.349832, 45.600451],\n            [9.349832, 45.591458],\n            [9.340839, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.600451],\n            [9.340839, 45.609445],\n            [9.349832, 45.609445],\n            [9.349832, 45.600451],\n            [9.340839, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.609445],\n            [9.340839, 45.618438],\n            [9.349832, 45.618438],\n            [9.349832, 45.609445],\n            [9.340839, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.618438],\n            [9.340839, 45.627431],\n            [9.349832, 45.627431],\n            [9.349832, 45.618438],\n            [9.340839, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.340839, 45.627431],\n            [9.340839, 45.636424],\n            [9.349832, 45.636424],\n            [9.349832, 45.627431],\n            [9.340839, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.339648],\n            [9.349832, 45.348642],\n            [9.358825, 45.348642],\n            [9.358825, 45.339648],\n            [9.349832, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.348642],\n            [9.349832, 45.357635],\n            [9.358825, 45.357635],\n            [9.358825, 45.348642],\n            [9.349832, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.357635],\n            [9.349832, 45.366628],\n            [9.358825, 45.366628],\n            [9.358825, 45.357635],\n            [9.349832, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.366628],\n            [9.349832, 45.375621],\n            [9.358825, 45.375621],\n            [9.358825, 45.366628],\n            [9.349832, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.375621],\n            [9.349832, 45.384614],\n            [9.358825, 45.384614],\n            [9.358825, 45.375621],\n            [9.349832, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.384614],\n            [9.349832, 45.393608],\n            [9.358825, 45.393608],\n            [9.358825, 45.384614],\n            [9.349832, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.393608],\n            [9.349832, 45.402601],\n            [9.358825, 45.402601],\n            [9.358825, 45.393608],\n            [9.349832, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.402601],\n            [9.349832, 45.411594],\n            [9.358825, 45.411594],\n            [9.358825, 45.402601],\n            [9.349832, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.411594],\n            [9.349832, 45.420587],\n            [9.358825, 45.420587],\n            [9.358825, 45.411594],\n            [9.349832, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.420587],\n            [9.349832, 45.42958],\n            [9.358825, 45.42958],\n            [9.358825, 45.420587],\n            [9.349832, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.42958],\n            [9.349832, 45.438574],\n            [9.358825, 45.438574],\n            [9.358825, 45.42958],\n            [9.349832, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.438574],\n            [9.349832, 45.447567],\n            [9.358825, 45.447567],\n            [9.358825, 45.438574],\n            [9.349832, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.447567],\n            [9.349832, 45.45656],\n            [9.358825, 45.45656],\n            [9.358825, 45.447567],\n            [9.349832, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.45656],\n            [9.349832, 45.465553],\n            [9.358825, 45.465553],\n            [9.358825, 45.45656],\n            [9.349832, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.465553],\n            [9.349832, 45.474547],\n            [9.358825, 45.474547],\n            [9.358825, 45.465553],\n            [9.349832, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.474547],\n            [9.349832, 45.48354],\n            [9.358825, 45.48354],\n            [9.358825, 45.474547],\n            [9.349832, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.48354],\n            [9.349832, 45.492533],\n            [9.358825, 45.492533],\n            [9.358825, 45.48354],\n            [9.349832, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.492533],\n            [9.349832, 45.501526],\n            [9.358825, 45.501526],\n            [9.358825, 45.492533],\n            [9.349832, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.501526],\n            [9.349832, 45.510519],\n            [9.358825, 45.510519],\n            [9.358825, 45.501526],\n            [9.349832, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.510519],\n            [9.349832, 45.519513],\n            [9.358825, 45.519513],\n            [9.358825, 45.510519],\n            [9.349832, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.519513],\n            [9.349832, 45.528506],\n            [9.358825, 45.528506],\n            [9.358825, 45.519513],\n            [9.349832, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.528506],\n            [9.349832, 45.537499],\n            [9.358825, 45.537499],\n            [9.358825, 45.528506],\n            [9.349832, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.537499],\n            [9.349832, 45.546492],\n            [9.358825, 45.546492],\n            [9.358825, 45.537499],\n            [9.349832, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.546492],\n            [9.349832, 45.555485],\n            [9.358825, 45.555485],\n            [9.358825, 45.546492],\n            [9.349832, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.555485],\n            [9.349832, 45.564479],\n            [9.358825, 45.564479],\n            [9.358825, 45.555485],\n            [9.349832, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.564479],\n            [9.349832, 45.573472],\n            [9.358825, 45.573472],\n            [9.358825, 45.564479],\n            [9.349832, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.573472],\n            [9.349832, 45.582465],\n            [9.358825, 45.582465],\n            [9.358825, 45.573472],\n            [9.349832, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.582465],\n            [9.349832, 45.591458],\n            [9.358825, 45.591458],\n            [9.358825, 45.582465],\n            [9.349832, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.591458],\n            [9.349832, 45.600451],\n            [9.358825, 45.600451],\n            [9.358825, 45.591458],\n            [9.349832, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.600451],\n            [9.349832, 45.609445],\n            [9.358825, 45.609445],\n            [9.358825, 45.600451],\n            [9.349832, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.609445],\n            [9.349832, 45.618438],\n            [9.358825, 45.618438],\n            [9.358825, 45.609445],\n            [9.349832, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.618438],\n            [9.349832, 45.627431],\n            [9.358825, 45.627431],\n            [9.358825, 45.618438],\n            [9.349832, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.349832, 45.627431],\n            [9.349832, 45.636424],\n            [9.358825, 45.636424],\n            [9.358825, 45.627431],\n            [9.349832, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.339648],\n            [9.358825, 45.348642],\n            [9.367819, 45.348642],\n            [9.367819, 45.339648],\n            [9.358825, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.348642],\n            [9.358825, 45.357635],\n            [9.367819, 45.357635],\n            [9.367819, 45.348642],\n            [9.358825, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.357635],\n            [9.358825, 45.366628],\n            [9.367819, 45.366628],\n            [9.367819, 45.357635],\n            [9.358825, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.366628],\n            [9.358825, 45.375621],\n            [9.367819, 45.375621],\n            [9.367819, 45.366628],\n            [9.358825, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.375621],\n            [9.358825, 45.384614],\n            [9.367819, 45.384614],\n            [9.367819, 45.375621],\n            [9.358825, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.384614],\n            [9.358825, 45.393608],\n            [9.367819, 45.393608],\n            [9.367819, 45.384614],\n            [9.358825, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.393608],\n            [9.358825, 45.402601],\n            [9.367819, 45.402601],\n            [9.367819, 45.393608],\n            [9.358825, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.402601],\n            [9.358825, 45.411594],\n            [9.367819, 45.411594],\n            [9.367819, 45.402601],\n            [9.358825, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.411594],\n            [9.358825, 45.420587],\n            [9.367819, 45.420587],\n            [9.367819, 45.411594],\n            [9.358825, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.420587],\n            [9.358825, 45.42958],\n            [9.367819, 45.42958],\n            [9.367819, 45.420587],\n            [9.358825, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.42958],\n            [9.358825, 45.438574],\n            [9.367819, 45.438574],\n            [9.367819, 45.42958],\n            [9.358825, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.438574],\n            [9.358825, 45.447567],\n            [9.367819, 45.447567],\n            [9.367819, 45.438574],\n            [9.358825, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.447567],\n            [9.358825, 45.45656],\n            [9.367819, 45.45656],\n            [9.367819, 45.447567],\n            [9.358825, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.45656],\n            [9.358825, 45.465553],\n            [9.367819, 45.465553],\n            [9.367819, 45.45656],\n            [9.358825, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.465553],\n            [9.358825, 45.474547],\n            [9.367819, 45.474547],\n            [9.367819, 45.465553],\n            [9.358825, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.474547],\n            [9.358825, 45.48354],\n            [9.367819, 45.48354],\n            [9.367819, 45.474547],\n            [9.358825, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.48354],\n            [9.358825, 45.492533],\n            [9.367819, 45.492533],\n            [9.367819, 45.48354],\n            [9.358825, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.492533],\n            [9.358825, 45.501526],\n            [9.367819, 45.501526],\n            [9.367819, 45.492533],\n            [9.358825, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.501526],\n            [9.358825, 45.510519],\n            [9.367819, 45.510519],\n            [9.367819, 45.501526],\n            [9.358825, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.510519],\n            [9.358825, 45.519513],\n            [9.367819, 45.519513],\n            [9.367819, 45.510519],\n            [9.358825, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.519513],\n            [9.358825, 45.528506],\n            [9.367819, 45.528506],\n            [9.367819, 45.519513],\n            [9.358825, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.528506],\n            [9.358825, 45.537499],\n            [9.367819, 45.537499],\n            [9.367819, 45.528506],\n            [9.358825, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.537499],\n            [9.358825, 45.546492],\n            [9.367819, 45.546492],\n            [9.367819, 45.537499],\n            [9.358825, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.546492],\n            [9.358825, 45.555485],\n            [9.367819, 45.555485],\n            [9.367819, 45.546492],\n            [9.358825, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.555485],\n            [9.358825, 45.564479],\n            [9.367819, 45.564479],\n            [9.367819, 45.555485],\n            [9.358825, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.564479],\n            [9.358825, 45.573472],\n            [9.367819, 45.573472],\n            [9.367819, 45.564479],\n            [9.358825, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.573472],\n            [9.358825, 45.582465],\n            [9.367819, 45.582465],\n            [9.367819, 45.573472],\n            [9.358825, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.582465],\n            [9.358825, 45.591458],\n            [9.367819, 45.591458],\n            [9.367819, 45.582465],\n            [9.358825, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.591458],\n            [9.358825, 45.600451],\n            [9.367819, 45.600451],\n            [9.367819, 45.591458],\n            [9.358825, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.600451],\n            [9.358825, 45.609445],\n            [9.367819, 45.609445],\n            [9.367819, 45.600451],\n            [9.358825, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.609445],\n            [9.358825, 45.618438],\n            [9.367819, 45.618438],\n            [9.367819, 45.609445],\n            [9.358825, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.618438],\n            [9.358825, 45.627431],\n            [9.367819, 45.627431],\n            [9.367819, 45.618438],\n            [9.358825, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.358825, 45.627431],\n            [9.358825, 45.636424],\n            [9.367819, 45.636424],\n            [9.367819, 45.627431],\n            [9.358825, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.339648],\n            [9.367819, 45.348642],\n            [9.376812, 45.348642],\n            [9.376812, 45.339648],\n            [9.367819, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.348642],\n            [9.367819, 45.357635],\n            [9.376812, 45.357635],\n            [9.376812, 45.348642],\n            [9.367819, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.357635],\n            [9.367819, 45.366628],\n            [9.376812, 45.366628],\n            [9.376812, 45.357635],\n            [9.367819, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.366628],\n            [9.367819, 45.375621],\n            [9.376812, 45.375621],\n            [9.376812, 45.366628],\n            [9.367819, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.375621],\n            [9.367819, 45.384614],\n            [9.376812, 45.384614],\n            [9.376812, 45.375621],\n            [9.367819, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.384614],\n            [9.367819, 45.393608],\n            [9.376812, 45.393608],\n            [9.376812, 45.384614],\n            [9.367819, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.393608],\n            [9.367819, 45.402601],\n            [9.376812, 45.402601],\n            [9.376812, 45.393608],\n            [9.367819, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.402601],\n            [9.367819, 45.411594],\n            [9.376812, 45.411594],\n            [9.376812, 45.402601],\n            [9.367819, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.411594],\n            [9.367819, 45.420587],\n            [9.376812, 45.420587],\n            [9.376812, 45.411594],\n            [9.367819, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.420587],\n            [9.367819, 45.42958],\n            [9.376812, 45.42958],\n            [9.376812, 45.420587],\n            [9.367819, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.42958],\n            [9.367819, 45.438574],\n            [9.376812, 45.438574],\n            [9.376812, 45.42958],\n            [9.367819, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.438574],\n            [9.367819, 45.447567],\n            [9.376812, 45.447567],\n            [9.376812, 45.438574],\n            [9.367819, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.447567],\n            [9.367819, 45.45656],\n            [9.376812, 45.45656],\n            [9.376812, 45.447567],\n            [9.367819, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.45656],\n            [9.367819, 45.465553],\n            [9.376812, 45.465553],\n            [9.376812, 45.45656],\n            [9.367819, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.465553],\n            [9.367819, 45.474547],\n            [9.376812, 45.474547],\n            [9.376812, 45.465553],\n            [9.367819, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.474547],\n            [9.367819, 45.48354],\n            [9.376812, 45.48354],\n            [9.376812, 45.474547],\n            [9.367819, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.48354],\n            [9.367819, 45.492533],\n            [9.376812, 45.492533],\n            [9.376812, 45.48354],\n            [9.367819, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.492533],\n            [9.367819, 45.501526],\n            [9.376812, 45.501526],\n            [9.376812, 45.492533],\n            [9.367819, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.501526],\n            [9.367819, 45.510519],\n            [9.376812, 45.510519],\n            [9.376812, 45.501526],\n            [9.367819, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.510519],\n            [9.367819, 45.519513],\n            [9.376812, 45.519513],\n            [9.376812, 45.510519],\n            [9.367819, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.519513],\n            [9.367819, 45.528506],\n            [9.376812, 45.528506],\n            [9.376812, 45.519513],\n            [9.367819, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.528506],\n            [9.367819, 45.537499],\n            [9.376812, 45.537499],\n            [9.376812, 45.528506],\n            [9.367819, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.537499],\n            [9.367819, 45.546492],\n            [9.376812, 45.546492],\n            [9.376812, 45.537499],\n            [9.367819, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.546492],\n            [9.367819, 45.555485],\n            [9.376812, 45.555485],\n            [9.376812, 45.546492],\n            [9.367819, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.555485],\n            [9.367819, 45.564479],\n            [9.376812, 45.564479],\n            [9.376812, 45.555485],\n            [9.367819, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.564479],\n            [9.367819, 45.573472],\n            [9.376812, 45.573472],\n            [9.376812, 45.564479],\n            [9.367819, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.573472],\n            [9.367819, 45.582465],\n            [9.376812, 45.582465],\n            [9.376812, 45.573472],\n            [9.367819, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.582465],\n            [9.367819, 45.591458],\n            [9.376812, 45.591458],\n            [9.376812, 45.582465],\n            [9.367819, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.591458],\n            [9.367819, 45.600451],\n            [9.376812, 45.600451],\n            [9.376812, 45.591458],\n            [9.367819, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.600451],\n            [9.367819, 45.609445],\n            [9.376812, 45.609445],\n            [9.376812, 45.600451],\n            [9.367819, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.609445],\n            [9.367819, 45.618438],\n            [9.376812, 45.618438],\n            [9.376812, 45.609445],\n            [9.367819, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.618438],\n            [9.367819, 45.627431],\n            [9.376812, 45.627431],\n            [9.376812, 45.618438],\n            [9.367819, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.367819, 45.627431],\n            [9.367819, 45.636424],\n            [9.376812, 45.636424],\n            [9.376812, 45.627431],\n            [9.367819, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.339648],\n            [9.376812, 45.348642],\n            [9.385805, 45.348642],\n            [9.385805, 45.339648],\n            [9.376812, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.348642],\n            [9.376812, 45.357635],\n            [9.385805, 45.357635],\n            [9.385805, 45.348642],\n            [9.376812, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.357635],\n            [9.376812, 45.366628],\n            [9.385805, 45.366628],\n            [9.385805, 45.357635],\n            [9.376812, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.366628],\n            [9.376812, 45.375621],\n            [9.385805, 45.375621],\n            [9.385805, 45.366628],\n            [9.376812, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.375621],\n            [9.376812, 45.384614],\n            [9.385805, 45.384614],\n            [9.385805, 45.375621],\n            [9.376812, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.384614],\n            [9.376812, 45.393608],\n            [9.385805, 45.393608],\n            [9.385805, 45.384614],\n            [9.376812, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.393608],\n            [9.376812, 45.402601],\n            [9.385805, 45.402601],\n            [9.385805, 45.393608],\n            [9.376812, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.402601],\n            [9.376812, 45.411594],\n            [9.385805, 45.411594],\n            [9.385805, 45.402601],\n            [9.376812, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.411594],\n            [9.376812, 45.420587],\n            [9.385805, 45.420587],\n            [9.385805, 45.411594],\n            [9.376812, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.420587],\n            [9.376812, 45.42958],\n            [9.385805, 45.42958],\n            [9.385805, 45.420587],\n            [9.376812, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.42958],\n            [9.376812, 45.438574],\n            [9.385805, 45.438574],\n            [9.385805, 45.42958],\n            [9.376812, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.438574],\n            [9.376812, 45.447567],\n            [9.385805, 45.447567],\n            [9.385805, 45.438574],\n            [9.376812, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.447567],\n            [9.376812, 45.45656],\n            [9.385805, 45.45656],\n            [9.385805, 45.447567],\n            [9.376812, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.45656],\n            [9.376812, 45.465553],\n            [9.385805, 45.465553],\n            [9.385805, 45.45656],\n            [9.376812, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.465553],\n            [9.376812, 45.474547],\n            [9.385805, 45.474547],\n            [9.385805, 45.465553],\n            [9.376812, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.474547],\n            [9.376812, 45.48354],\n            [9.385805, 45.48354],\n            [9.385805, 45.474547],\n            [9.376812, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.48354],\n            [9.376812, 45.492533],\n            [9.385805, 45.492533],\n            [9.385805, 45.48354],\n            [9.376812, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.492533],\n            [9.376812, 45.501526],\n            [9.385805, 45.501526],\n            [9.385805, 45.492533],\n            [9.376812, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.501526],\n            [9.376812, 45.510519],\n            [9.385805, 45.510519],\n            [9.385805, 45.501526],\n            [9.376812, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.510519],\n            [9.376812, 45.519513],\n            [9.385805, 45.519513],\n            [9.385805, 45.510519],\n            [9.376812, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.519513],\n            [9.376812, 45.528506],\n            [9.385805, 45.528506],\n            [9.385805, 45.519513],\n            [9.376812, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.528506],\n            [9.376812, 45.537499],\n            [9.385805, 45.537499],\n            [9.385805, 45.528506],\n            [9.376812, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.537499],\n            [9.376812, 45.546492],\n            [9.385805, 45.546492],\n            [9.385805, 45.537499],\n            [9.376812, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.546492],\n            [9.376812, 45.555485],\n            [9.385805, 45.555485],\n            [9.385805, 45.546492],\n            [9.376812, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.555485],\n            [9.376812, 45.564479],\n            [9.385805, 45.564479],\n            [9.385805, 45.555485],\n            [9.376812, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.564479],\n            [9.376812, 45.573472],\n            [9.385805, 45.573472],\n            [9.385805, 45.564479],\n            [9.376812, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.573472],\n            [9.376812, 45.582465],\n            [9.385805, 45.582465],\n            [9.385805, 45.573472],\n            [9.376812, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.582465],\n            [9.376812, 45.591458],\n            [9.385805, 45.591458],\n            [9.385805, 45.582465],\n            [9.376812, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.591458],\n            [9.376812, 45.600451],\n            [9.385805, 45.600451],\n            [9.385805, 45.591458],\n            [9.376812, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.600451],\n            [9.376812, 45.609445],\n            [9.385805, 45.609445],\n            [9.385805, 45.600451],\n            [9.376812, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.609445],\n            [9.376812, 45.618438],\n            [9.385805, 45.618438],\n            [9.385805, 45.609445],\n            [9.376812, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.618438],\n            [9.376812, 45.627431],\n            [9.385805, 45.627431],\n            [9.385805, 45.618438],\n            [9.376812, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.376812, 45.627431],\n            [9.376812, 45.636424],\n            [9.385805, 45.636424],\n            [9.385805, 45.627431],\n            [9.376812, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.339648],\n            [9.385805, 45.348642],\n            [9.394798, 45.348642],\n            [9.394798, 45.339648],\n            [9.385805, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.348642],\n            [9.385805, 45.357635],\n            [9.394798, 45.357635],\n            [9.394798, 45.348642],\n            [9.385805, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.357635],\n            [9.385805, 45.366628],\n            [9.394798, 45.366628],\n            [9.394798, 45.357635],\n            [9.385805, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.366628],\n            [9.385805, 45.375621],\n            [9.394798, 45.375621],\n            [9.394798, 45.366628],\n            [9.385805, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.375621],\n            [9.385805, 45.384614],\n            [9.394798, 45.384614],\n            [9.394798, 45.375621],\n            [9.385805, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.384614],\n            [9.385805, 45.393608],\n            [9.394798, 45.393608],\n            [9.394798, 45.384614],\n            [9.385805, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.393608],\n            [9.385805, 45.402601],\n            [9.394798, 45.402601],\n            [9.394798, 45.393608],\n            [9.385805, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.402601],\n            [9.385805, 45.411594],\n            [9.394798, 45.411594],\n            [9.394798, 45.402601],\n            [9.385805, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.411594],\n            [9.385805, 45.420587],\n            [9.394798, 45.420587],\n            [9.394798, 45.411594],\n            [9.385805, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.420587],\n            [9.385805, 45.42958],\n            [9.394798, 45.42958],\n            [9.394798, 45.420587],\n            [9.385805, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.42958],\n            [9.385805, 45.438574],\n            [9.394798, 45.438574],\n            [9.394798, 45.42958],\n            [9.385805, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.438574],\n            [9.385805, 45.447567],\n            [9.394798, 45.447567],\n            [9.394798, 45.438574],\n            [9.385805, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.447567],\n            [9.385805, 45.45656],\n            [9.394798, 45.45656],\n            [9.394798, 45.447567],\n            [9.385805, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.45656],\n            [9.385805, 45.465553],\n            [9.394798, 45.465553],\n            [9.394798, 45.45656],\n            [9.385805, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.465553],\n            [9.385805, 45.474547],\n            [9.394798, 45.474547],\n            [9.394798, 45.465553],\n            [9.385805, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.474547],\n            [9.385805, 45.48354],\n            [9.394798, 45.48354],\n            [9.394798, 45.474547],\n            [9.385805, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.48354],\n            [9.385805, 45.492533],\n            [9.394798, 45.492533],\n            [9.394798, 45.48354],\n            [9.385805, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.492533],\n            [9.385805, 45.501526],\n            [9.394798, 45.501526],\n            [9.394798, 45.492533],\n            [9.385805, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.501526],\n            [9.385805, 45.510519],\n            [9.394798, 45.510519],\n            [9.394798, 45.501526],\n            [9.385805, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.510519],\n            [9.385805, 45.519513],\n            [9.394798, 45.519513],\n            [9.394798, 45.510519],\n            [9.385805, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.519513],\n            [9.385805, 45.528506],\n            [9.394798, 45.528506],\n            [9.394798, 45.519513],\n            [9.385805, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.528506],\n            [9.385805, 45.537499],\n            [9.394798, 45.537499],\n            [9.394798, 45.528506],\n            [9.385805, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.537499],\n            [9.385805, 45.546492],\n            [9.394798, 45.546492],\n            [9.394798, 45.537499],\n            [9.385805, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.546492],\n            [9.385805, 45.555485],\n            [9.394798, 45.555485],\n            [9.394798, 45.546492],\n            [9.385805, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.555485],\n            [9.385805, 45.564479],\n            [9.394798, 45.564479],\n            [9.394798, 45.555485],\n            [9.385805, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.564479],\n            [9.385805, 45.573472],\n            [9.394798, 45.573472],\n            [9.394798, 45.564479],\n            [9.385805, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.573472],\n            [9.385805, 45.582465],\n            [9.394798, 45.582465],\n            [9.394798, 45.573472],\n            [9.385805, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.582465],\n            [9.385805, 45.591458],\n            [9.394798, 45.591458],\n            [9.394798, 45.582465],\n            [9.385805, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.591458],\n            [9.385805, 45.600451],\n            [9.394798, 45.600451],\n            [9.394798, 45.591458],\n            [9.385805, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.600451],\n            [9.385805, 45.609445],\n            [9.394798, 45.609445],\n            [9.394798, 45.600451],\n            [9.385805, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.609445],\n            [9.385805, 45.618438],\n            [9.394798, 45.618438],\n            [9.394798, 45.609445],\n            [9.385805, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.618438],\n            [9.385805, 45.627431],\n            [9.394798, 45.627431],\n            [9.394798, 45.618438],\n            [9.385805, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.385805, 45.627431],\n            [9.385805, 45.636424],\n            [9.394798, 45.636424],\n            [9.394798, 45.627431],\n            [9.385805, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.339648],\n            [9.394798, 45.348642],\n            [9.403791, 45.348642],\n            [9.403791, 45.339648],\n            [9.394798, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.348642],\n            [9.394798, 45.357635],\n            [9.403791, 45.357635],\n            [9.403791, 45.348642],\n            [9.394798, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.357635],\n            [9.394798, 45.366628],\n            [9.403791, 45.366628],\n            [9.403791, 45.357635],\n            [9.394798, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.366628],\n            [9.394798, 45.375621],\n            [9.403791, 45.375621],\n            [9.403791, 45.366628],\n            [9.394798, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.375621],\n            [9.394798, 45.384614],\n            [9.403791, 45.384614],\n            [9.403791, 45.375621],\n            [9.394798, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.384614],\n            [9.394798, 45.393608],\n            [9.403791, 45.393608],\n            [9.403791, 45.384614],\n            [9.394798, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.393608],\n            [9.394798, 45.402601],\n            [9.403791, 45.402601],\n            [9.403791, 45.393608],\n            [9.394798, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.402601],\n            [9.394798, 45.411594],\n            [9.403791, 45.411594],\n            [9.403791, 45.402601],\n            [9.394798, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.411594],\n            [9.394798, 45.420587],\n            [9.403791, 45.420587],\n            [9.403791, 45.411594],\n            [9.394798, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.420587],\n            [9.394798, 45.42958],\n            [9.403791, 45.42958],\n            [9.403791, 45.420587],\n            [9.394798, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.42958],\n            [9.394798, 45.438574],\n            [9.403791, 45.438574],\n            [9.403791, 45.42958],\n            [9.394798, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.438574],\n            [9.394798, 45.447567],\n            [9.403791, 45.447567],\n            [9.403791, 45.438574],\n            [9.394798, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.447567],\n            [9.394798, 45.45656],\n            [9.403791, 45.45656],\n            [9.403791, 45.447567],\n            [9.394798, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.45656],\n            [9.394798, 45.465553],\n            [9.403791, 45.465553],\n            [9.403791, 45.45656],\n            [9.394798, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.465553],\n            [9.394798, 45.474547],\n            [9.403791, 45.474547],\n            [9.403791, 45.465553],\n            [9.394798, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.474547],\n            [9.394798, 45.48354],\n            [9.403791, 45.48354],\n            [9.403791, 45.474547],\n            [9.394798, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.48354],\n            [9.394798, 45.492533],\n            [9.403791, 45.492533],\n            [9.403791, 45.48354],\n            [9.394798, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.492533],\n            [9.394798, 45.501526],\n            [9.403791, 45.501526],\n            [9.403791, 45.492533],\n            [9.394798, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.501526],\n            [9.394798, 45.510519],\n            [9.403791, 45.510519],\n            [9.403791, 45.501526],\n            [9.394798, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.510519],\n            [9.394798, 45.519513],\n            [9.403791, 45.519513],\n            [9.403791, 45.510519],\n            [9.394798, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.519513],\n            [9.394798, 45.528506],\n            [9.403791, 45.528506],\n            [9.403791, 45.519513],\n            [9.394798, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.528506],\n            [9.394798, 45.537499],\n            [9.403791, 45.537499],\n            [9.403791, 45.528506],\n            [9.394798, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.537499],\n            [9.394798, 45.546492],\n            [9.403791, 45.546492],\n            [9.403791, 45.537499],\n            [9.394798, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.546492],\n            [9.394798, 45.555485],\n            [9.403791, 45.555485],\n            [9.403791, 45.546492],\n            [9.394798, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.555485],\n            [9.394798, 45.564479],\n            [9.403791, 45.564479],\n            [9.403791, 45.555485],\n            [9.394798, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.564479],\n            [9.394798, 45.573472],\n            [9.403791, 45.573472],\n            [9.403791, 45.564479],\n            [9.394798, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.573472],\n            [9.394798, 45.582465],\n            [9.403791, 45.582465],\n            [9.403791, 45.573472],\n            [9.394798, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.582465],\n            [9.394798, 45.591458],\n            [9.403791, 45.591458],\n            [9.403791, 45.582465],\n            [9.394798, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.591458],\n            [9.394798, 45.600451],\n            [9.403791, 45.600451],\n            [9.403791, 45.591458],\n            [9.394798, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.600451],\n            [9.394798, 45.609445],\n            [9.403791, 45.609445],\n            [9.403791, 45.600451],\n            [9.394798, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.609445],\n            [9.394798, 45.618438],\n            [9.403791, 45.618438],\n            [9.403791, 45.609445],\n            [9.394798, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.618438],\n            [9.394798, 45.627431],\n            [9.403791, 45.627431],\n            [9.403791, 45.618438],\n            [9.394798, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394798, 45.627431],\n            [9.394798, 45.636424],\n            [9.403791, 45.636424],\n            [9.403791, 45.627431],\n            [9.394798, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.339648],\n            [9.403791, 45.348642],\n            [9.412785, 45.348642],\n            [9.412785, 45.339648],\n            [9.403791, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.348642],\n            [9.403791, 45.357635],\n            [9.412785, 45.357635],\n            [9.412785, 45.348642],\n            [9.403791, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.357635],\n            [9.403791, 45.366628],\n            [9.412785, 45.366628],\n            [9.412785, 45.357635],\n            [9.403791, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.366628],\n            [9.403791, 45.375621],\n            [9.412785, 45.375621],\n            [9.412785, 45.366628],\n            [9.403791, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.375621],\n            [9.403791, 45.384614],\n            [9.412785, 45.384614],\n            [9.412785, 45.375621],\n            [9.403791, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.384614],\n            [9.403791, 45.393608],\n            [9.412785, 45.393608],\n            [9.412785, 45.384614],\n            [9.403791, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.393608],\n            [9.403791, 45.402601],\n            [9.412785, 45.402601],\n            [9.412785, 45.393608],\n            [9.403791, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.402601],\n            [9.403791, 45.411594],\n            [9.412785, 45.411594],\n            [9.412785, 45.402601],\n            [9.403791, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.411594],\n            [9.403791, 45.420587],\n            [9.412785, 45.420587],\n            [9.412785, 45.411594],\n            [9.403791, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.420587],\n            [9.403791, 45.42958],\n            [9.412785, 45.42958],\n            [9.412785, 45.420587],\n            [9.403791, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.42958],\n            [9.403791, 45.438574],\n            [9.412785, 45.438574],\n            [9.412785, 45.42958],\n            [9.403791, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.438574],\n            [9.403791, 45.447567],\n            [9.412785, 45.447567],\n            [9.412785, 45.438574],\n            [9.403791, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.447567],\n            [9.403791, 45.45656],\n            [9.412785, 45.45656],\n            [9.412785, 45.447567],\n            [9.403791, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.45656],\n            [9.403791, 45.465553],\n            [9.412785, 45.465553],\n            [9.412785, 45.45656],\n            [9.403791, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.465553],\n            [9.403791, 45.474547],\n            [9.412785, 45.474547],\n            [9.412785, 45.465553],\n            [9.403791, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.474547],\n            [9.403791, 45.48354],\n            [9.412785, 45.48354],\n            [9.412785, 45.474547],\n            [9.403791, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.48354],\n            [9.403791, 45.492533],\n            [9.412785, 45.492533],\n            [9.412785, 45.48354],\n            [9.403791, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.492533],\n            [9.403791, 45.501526],\n            [9.412785, 45.501526],\n            [9.412785, 45.492533],\n            [9.403791, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.501526],\n            [9.403791, 45.510519],\n            [9.412785, 45.510519],\n            [9.412785, 45.501526],\n            [9.403791, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.510519],\n            [9.403791, 45.519513],\n            [9.412785, 45.519513],\n            [9.412785, 45.510519],\n            [9.403791, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.519513],\n            [9.403791, 45.528506],\n            [9.412785, 45.528506],\n            [9.412785, 45.519513],\n            [9.403791, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.528506],\n            [9.403791, 45.537499],\n            [9.412785, 45.537499],\n            [9.412785, 45.528506],\n            [9.403791, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.537499],\n            [9.403791, 45.546492],\n            [9.412785, 45.546492],\n            [9.412785, 45.537499],\n            [9.403791, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.546492],\n            [9.403791, 45.555485],\n            [9.412785, 45.555485],\n            [9.412785, 45.546492],\n            [9.403791, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.555485],\n            [9.403791, 45.564479],\n            [9.412785, 45.564479],\n            [9.412785, 45.555485],\n            [9.403791, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.564479],\n            [9.403791, 45.573472],\n            [9.412785, 45.573472],\n            [9.412785, 45.564479],\n            [9.403791, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.573472],\n            [9.403791, 45.582465],\n            [9.412785, 45.582465],\n            [9.412785, 45.573472],\n            [9.403791, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.582465],\n            [9.403791, 45.591458],\n            [9.412785, 45.591458],\n            [9.412785, 45.582465],\n            [9.403791, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.591458],\n            [9.403791, 45.600451],\n            [9.412785, 45.600451],\n            [9.412785, 45.591458],\n            [9.403791, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.600451],\n            [9.403791, 45.609445],\n            [9.412785, 45.609445],\n            [9.412785, 45.600451],\n            [9.403791, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.609445],\n            [9.403791, 45.618438],\n            [9.412785, 45.618438],\n            [9.412785, 45.609445],\n            [9.403791, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.618438],\n            [9.403791, 45.627431],\n            [9.412785, 45.627431],\n            [9.412785, 45.618438],\n            [9.403791, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.403791, 45.627431],\n            [9.403791, 45.636424],\n            [9.412785, 45.636424],\n            [9.412785, 45.627431],\n            [9.403791, 45.627431]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/out/data-1km.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.119968, 45.44307],\n            [9.119968, 45.452063],\n            [9.128961, 45.452063],\n            [9.128961, 45.44307],\n            [9.119968, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.119968, 45.452063],\n            [9.119968, 45.461057],\n            [9.128961, 45.461057],\n            [9.128961, 45.452063],\n            [9.119968, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#b3daff\",\n        \"fill\": \"#b3daff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.119968, 45.461057],\n            [9.119968, 45.47005],\n            [9.128961, 45.47005],\n            [9.128961, 45.461057],\n            [9.119968, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#b3daff\",\n        \"fill\": \"#b3daff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.119968, 45.47005],\n            [9.119968, 45.479043],\n            [9.128961, 45.479043],\n            [9.128961, 45.47005],\n            [9.119968, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.119968, 45.479043],\n            [9.119968, 45.488036],\n            [9.128961, 45.488036],\n            [9.128961, 45.479043],\n            [9.119968, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8ac7ff\",\n        \"fill\": \"#8ac7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.119968, 45.488036],\n            [9.119968, 45.49703],\n            [9.128961, 45.49703],\n            [9.128961, 45.488036],\n            [9.119968, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.119968, 45.49703],\n            [9.119968, 45.506023],\n            [9.128961, 45.506023],\n            [9.128961, 45.49703],\n            [9.119968, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.119968, 45.506023],\n            [9.119968, 45.515016],\n            [9.128961, 45.515016],\n            [9.128961, 45.506023],\n            [9.119968, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.119968, 45.515016],\n            [9.119968, 45.524009],\n            [9.128961, 45.524009],\n            [9.128961, 45.515016],\n            [9.119968, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.119968, 45.524009],\n            [9.119968, 45.533002],\n            [9.128961, 45.533002],\n            [9.128961, 45.524009],\n            [9.119968, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.128961, 45.44307],\n            [9.128961, 45.452063],\n            [9.137954, 45.452063],\n            [9.137954, 45.44307],\n            [9.128961, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.128961, 45.452063],\n            [9.128961, 45.461057],\n            [9.137954, 45.461057],\n            [9.137954, 45.452063],\n            [9.128961, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.128961, 45.461057],\n            [9.128961, 45.47005],\n            [9.137954, 45.47005],\n            [9.137954, 45.461057],\n            [9.128961, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#b3daff\",\n        \"fill\": \"#b3daff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.128961, 45.47005],\n            [9.128961, 45.479043],\n            [9.137954, 45.479043],\n            [9.137954, 45.47005],\n            [9.128961, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.128961, 45.479043],\n            [9.128961, 45.488036],\n            [9.137954, 45.488036],\n            [9.137954, 45.479043],\n            [9.128961, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8ac7ff\",\n        \"fill\": \"#8ac7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.128961, 45.488036],\n            [9.128961, 45.49703],\n            [9.137954, 45.49703],\n            [9.137954, 45.488036],\n            [9.128961, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.128961, 45.49703],\n            [9.128961, 45.506023],\n            [9.137954, 45.506023],\n            [9.137954, 45.49703],\n            [9.128961, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.128961, 45.506023],\n            [9.128961, 45.515016],\n            [9.137954, 45.515016],\n            [9.137954, 45.506023],\n            [9.128961, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.128961, 45.515016],\n            [9.128961, 45.524009],\n            [9.137954, 45.524009],\n            [9.137954, 45.515016],\n            [9.128961, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.128961, 45.524009],\n            [9.128961, 45.533002],\n            [9.137954, 45.533002],\n            [9.137954, 45.524009],\n            [9.128961, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.137954, 45.44307],\n            [9.137954, 45.452063],\n            [9.146948, 45.452063],\n            [9.146948, 45.44307],\n            [9.137954, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.137954, 45.452063],\n            [9.137954, 45.461057],\n            [9.146948, 45.461057],\n            [9.146948, 45.452063],\n            [9.137954, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.137954, 45.461057],\n            [9.137954, 45.47005],\n            [9.146948, 45.47005],\n            [9.146948, 45.461057],\n            [9.137954, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.137954, 45.47005],\n            [9.137954, 45.479043],\n            [9.146948, 45.479043],\n            [9.146948, 45.47005],\n            [9.137954, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#b3daff\",\n        \"fill\": \"#b3daff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.137954, 45.479043],\n            [9.137954, 45.488036],\n            [9.146948, 45.488036],\n            [9.146948, 45.479043],\n            [9.137954, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8ac7ff\",\n        \"fill\": \"#8ac7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.137954, 45.488036],\n            [9.137954, 45.49703],\n            [9.146948, 45.49703],\n            [9.146948, 45.488036],\n            [9.137954, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.137954, 45.49703],\n            [9.137954, 45.506023],\n            [9.146948, 45.506023],\n            [9.146948, 45.49703],\n            [9.137954, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.137954, 45.506023],\n            [9.137954, 45.515016],\n            [9.146948, 45.515016],\n            [9.146948, 45.506023],\n            [9.137954, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.137954, 45.515016],\n            [9.137954, 45.524009],\n            [9.146948, 45.524009],\n            [9.146948, 45.515016],\n            [9.137954, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.137954, 45.524009],\n            [9.137954, 45.533002],\n            [9.146948, 45.533002],\n            [9.146948, 45.524009],\n            [9.137954, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.146948, 45.44307],\n            [9.146948, 45.452063],\n            [9.155941, 45.452063],\n            [9.155941, 45.44307],\n            [9.146948, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.146948, 45.452063],\n            [9.146948, 45.461057],\n            [9.155941, 45.461057],\n            [9.155941, 45.452063],\n            [9.146948, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#ebf5ff\",\n        \"fill\": \"#ebf5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.146948, 45.461057],\n            [9.146948, 45.47005],\n            [9.155941, 45.47005],\n            [9.155941, 45.461057],\n            [9.146948, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 16,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.146948, 45.47005],\n            [9.146948, 45.479043],\n            [9.155941, 45.479043],\n            [9.155941, 45.47005],\n            [9.146948, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#b3daff\",\n        \"fill\": \"#b3daff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.146948, 45.479043],\n            [9.146948, 45.488036],\n            [9.155941, 45.488036],\n            [9.155941, 45.479043],\n            [9.146948, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8ac7ff\",\n        \"fill\": \"#8ac7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.146948, 45.488036],\n            [9.146948, 45.49703],\n            [9.155941, 45.49703],\n            [9.155941, 45.488036],\n            [9.146948, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.146948, 45.49703],\n            [9.146948, 45.506023],\n            [9.155941, 45.506023],\n            [9.155941, 45.49703],\n            [9.146948, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.146948, 45.506023],\n            [9.146948, 45.515016],\n            [9.155941, 45.515016],\n            [9.155941, 45.506023],\n            [9.146948, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.146948, 45.515016],\n            [9.146948, 45.524009],\n            [9.155941, 45.524009],\n            [9.155941, 45.515016],\n            [9.146948, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#007aeb\",\n        \"fill\": \"#007aeb\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.146948, 45.524009],\n            [9.146948, 45.533002],\n            [9.155941, 45.533002],\n            [9.155941, 45.524009],\n            [9.146948, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.155941, 45.44307],\n            [9.155941, 45.452063],\n            [9.164934, 45.452063],\n            [9.164934, 45.44307],\n            [9.155941, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.155941, 45.452063],\n            [9.155941, 45.461057],\n            [9.164934, 45.461057],\n            [9.164934, 45.452063],\n            [9.155941, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#ebf5ff\",\n        \"fill\": \"#ebf5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.155941, 45.461057],\n            [9.155941, 45.47005],\n            [9.164934, 45.47005],\n            [9.164934, 45.461057],\n            [9.155941, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 16,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.155941, 45.47005],\n            [9.155941, 45.479043],\n            [9.164934, 45.479043],\n            [9.164934, 45.47005],\n            [9.155941, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#b3daff\",\n        \"fill\": \"#b3daff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.155941, 45.479043],\n            [9.155941, 45.488036],\n            [9.164934, 45.488036],\n            [9.164934, 45.479043],\n            [9.155941, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.155941, 45.488036],\n            [9.155941, 45.49703],\n            [9.164934, 45.49703],\n            [9.164934, 45.488036],\n            [9.155941, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.155941, 45.49703],\n            [9.155941, 45.506023],\n            [9.164934, 45.506023],\n            [9.164934, 45.49703],\n            [9.155941, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.155941, 45.506023],\n            [9.155941, 45.515016],\n            [9.164934, 45.515016],\n            [9.164934, 45.506023],\n            [9.155941, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.155941, 45.515016],\n            [9.155941, 45.524009],\n            [9.164934, 45.524009],\n            [9.164934, 45.515016],\n            [9.155941, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0065c2\",\n        \"fill\": \"#0065c2\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.155941, 45.524009],\n            [9.155941, 45.533002],\n            [9.164934, 45.533002],\n            [9.164934, 45.524009],\n            [9.155941, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#b3daff\",\n        \"fill\": \"#b3daff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.164934, 45.44307],\n            [9.164934, 45.452063],\n            [9.173927, 45.452063],\n            [9.173927, 45.44307],\n            [9.164934, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.164934, 45.452063],\n            [9.164934, 45.461057],\n            [9.173927, 45.461057],\n            [9.173927, 45.452063],\n            [9.164934, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.164934, 45.461057],\n            [9.164934, 45.47005],\n            [9.173927, 45.47005],\n            [9.173927, 45.461057],\n            [9.164934, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.164934, 45.47005],\n            [9.164934, 45.479043],\n            [9.173927, 45.479043],\n            [9.173927, 45.47005],\n            [9.164934, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#b3daff\",\n        \"fill\": \"#b3daff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.164934, 45.479043],\n            [9.164934, 45.488036],\n            [9.173927, 45.488036],\n            [9.173927, 45.479043],\n            [9.164934, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.164934, 45.488036],\n            [9.164934, 45.49703],\n            [9.173927, 45.49703],\n            [9.173927, 45.488036],\n            [9.164934, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.164934, 45.49703],\n            [9.164934, 45.506023],\n            [9.173927, 45.506023],\n            [9.173927, 45.49703],\n            [9.164934, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.164934, 45.506023],\n            [9.164934, 45.515016],\n            [9.173927, 45.515016],\n            [9.173927, 45.506023],\n            [9.164934, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#007aeb\",\n        \"fill\": \"#007aeb\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.164934, 45.515016],\n            [9.164934, 45.524009],\n            [9.173927, 45.524009],\n            [9.173927, 45.515016],\n            [9.164934, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#00529e\",\n        \"fill\": \"#00529e\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.164934, 45.524009],\n            [9.164934, 45.533002],\n            [9.173927, 45.533002],\n            [9.173927, 45.524009],\n            [9.164934, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#b3daff\",\n        \"fill\": \"#b3daff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.173927, 45.44307],\n            [9.173927, 45.452063],\n            [9.182921, 45.452063],\n            [9.182921, 45.44307],\n            [9.173927, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#b3daff\",\n        \"fill\": \"#b3daff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.173927, 45.452063],\n            [9.173927, 45.461057],\n            [9.182921, 45.461057],\n            [9.182921, 45.452063],\n            [9.173927, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#b3daff\",\n        \"fill\": \"#b3daff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.173927, 45.461057],\n            [9.173927, 45.47005],\n            [9.182921, 45.47005],\n            [9.182921, 45.461057],\n            [9.173927, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#b3daff\",\n        \"fill\": \"#b3daff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.173927, 45.47005],\n            [9.173927, 45.479043],\n            [9.182921, 45.479043],\n            [9.182921, 45.47005],\n            [9.173927, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.173927, 45.479043],\n            [9.173927, 45.488036],\n            [9.182921, 45.488036],\n            [9.182921, 45.479043],\n            [9.173927, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.173927, 45.488036],\n            [9.173927, 45.49703],\n            [9.182921, 45.49703],\n            [9.182921, 45.488036],\n            [9.173927, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.173927, 45.49703],\n            [9.173927, 45.506023],\n            [9.182921, 45.506023],\n            [9.182921, 45.49703],\n            [9.173927, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.173927, 45.506023],\n            [9.173927, 45.515016],\n            [9.182921, 45.515016],\n            [9.182921, 45.506023],\n            [9.173927, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.173927, 45.515016],\n            [9.173927, 45.524009],\n            [9.182921, 45.524009],\n            [9.182921, 45.515016],\n            [9.173927, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#003361\",\n        \"fill\": \"#003361\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.173927, 45.524009],\n            [9.173927, 45.533002],\n            [9.182921, 45.533002],\n            [9.182921, 45.524009],\n            [9.173927, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.182921, 45.44307],\n            [9.182921, 45.452063],\n            [9.191914, 45.452063],\n            [9.191914, 45.44307],\n            [9.182921, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.182921, 45.452063],\n            [9.182921, 45.461057],\n            [9.191914, 45.461057],\n            [9.191914, 45.452063],\n            [9.182921, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#b3daff\",\n        \"fill\": \"#b3daff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.182921, 45.461057],\n            [9.182921, 45.47005],\n            [9.191914, 45.47005],\n            [9.191914, 45.461057],\n            [9.182921, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.182921, 45.47005],\n            [9.182921, 45.479043],\n            [9.191914, 45.479043],\n            [9.191914, 45.47005],\n            [9.182921, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.182921, 45.479043],\n            [9.182921, 45.488036],\n            [9.191914, 45.488036],\n            [9.191914, 45.479043],\n            [9.182921, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8ac7ff\",\n        \"fill\": \"#8ac7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.182921, 45.488036],\n            [9.182921, 45.49703],\n            [9.191914, 45.49703],\n            [9.191914, 45.488036],\n            [9.182921, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.182921, 45.49703],\n            [9.182921, 45.506023],\n            [9.191914, 45.506023],\n            [9.191914, 45.49703],\n            [9.182921, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.182921, 45.506023],\n            [9.182921, 45.515016],\n            [9.191914, 45.515016],\n            [9.191914, 45.506023],\n            [9.182921, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#005db3\",\n        \"fill\": \"#005db3\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.182921, 45.515016],\n            [9.182921, 45.524009],\n            [9.191914, 45.524009],\n            [9.191914, 45.515016],\n            [9.182921, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 40,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.182921, 45.524009],\n            [9.182921, 45.533002],\n            [9.191914, 45.533002],\n            [9.191914, 45.524009],\n            [9.182921, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.191914, 45.44307],\n            [9.191914, 45.452063],\n            [9.200907, 45.452063],\n            [9.200907, 45.44307],\n            [9.191914, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.191914, 45.452063],\n            [9.191914, 45.461057],\n            [9.200907, 45.461057],\n            [9.200907, 45.452063],\n            [9.191914, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.191914, 45.461057],\n            [9.191914, 45.47005],\n            [9.200907, 45.47005],\n            [9.200907, 45.461057],\n            [9.191914, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.191914, 45.47005],\n            [9.191914, 45.479043],\n            [9.200907, 45.479043],\n            [9.200907, 45.47005],\n            [9.191914, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8ac7ff\",\n        \"fill\": \"#8ac7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.191914, 45.479043],\n            [9.191914, 45.488036],\n            [9.200907, 45.488036],\n            [9.200907, 45.479043],\n            [9.191914, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.191914, 45.488036],\n            [9.191914, 45.49703],\n            [9.200907, 45.49703],\n            [9.200907, 45.488036],\n            [9.191914, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.191914, 45.49703],\n            [9.191914, 45.506023],\n            [9.200907, 45.506023],\n            [9.200907, 45.49703],\n            [9.191914, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.191914, 45.506023],\n            [9.191914, 45.515016],\n            [9.200907, 45.515016],\n            [9.200907, 45.506023],\n            [9.191914, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#005db3\",\n        \"fill\": \"#005db3\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.191914, 45.515016],\n            [9.191914, 45.524009],\n            [9.200907, 45.524009],\n            [9.200907, 45.515016],\n            [9.191914, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 42,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.191914, 45.524009],\n            [9.191914, 45.533002],\n            [9.200907, 45.533002],\n            [9.200907, 45.524009],\n            [9.191914, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.200907, 45.44307],\n            [9.200907, 45.452063],\n            [9.2099, 45.452063],\n            [9.2099, 45.44307],\n            [9.200907, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.200907, 45.452063],\n            [9.200907, 45.461057],\n            [9.2099, 45.461057],\n            [9.2099, 45.452063],\n            [9.200907, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.200907, 45.461057],\n            [9.200907, 45.47005],\n            [9.2099, 45.47005],\n            [9.2099, 45.461057],\n            [9.200907, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8ac7ff\",\n        \"fill\": \"#8ac7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.200907, 45.47005],\n            [9.200907, 45.479043],\n            [9.2099, 45.479043],\n            [9.2099, 45.47005],\n            [9.200907, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8ac7ff\",\n        \"fill\": \"#8ac7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.200907, 45.479043],\n            [9.200907, 45.488036],\n            [9.2099, 45.488036],\n            [9.2099, 45.479043],\n            [9.200907, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.200907, 45.488036],\n            [9.200907, 45.49703],\n            [9.2099, 45.49703],\n            [9.2099, 45.488036],\n            [9.200907, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.200907, 45.49703],\n            [9.200907, 45.506023],\n            [9.2099, 45.506023],\n            [9.2099, 45.49703],\n            [9.200907, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.200907, 45.506023],\n            [9.200907, 45.515016],\n            [9.2099, 45.515016],\n            [9.2099, 45.506023],\n            [9.200907, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#005db3\",\n        \"fill\": \"#005db3\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.200907, 45.515016],\n            [9.200907, 45.524009],\n            [9.2099, 45.524009],\n            [9.2099, 45.515016],\n            [9.200907, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 40,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.200907, 45.524009],\n            [9.200907, 45.533002],\n            [9.2099, 45.533002],\n            [9.2099, 45.524009],\n            [9.200907, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8ac7ff\",\n        \"fill\": \"#8ac7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2099, 45.44307],\n            [9.2099, 45.452063],\n            [9.218893, 45.452063],\n            [9.218893, 45.44307],\n            [9.2099, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8ac7ff\",\n        \"fill\": \"#8ac7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2099, 45.452063],\n            [9.2099, 45.461057],\n            [9.218893, 45.461057],\n            [9.218893, 45.452063],\n            [9.2099, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8ac7ff\",\n        \"fill\": \"#8ac7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2099, 45.461057],\n            [9.2099, 45.47005],\n            [9.218893, 45.47005],\n            [9.218893, 45.461057],\n            [9.2099, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8ac7ff\",\n        \"fill\": \"#8ac7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2099, 45.47005],\n            [9.2099, 45.479043],\n            [9.218893, 45.479043],\n            [9.218893, 45.47005],\n            [9.2099, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8ac7ff\",\n        \"fill\": \"#8ac7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2099, 45.479043],\n            [9.2099, 45.488036],\n            [9.218893, 45.488036],\n            [9.218893, 45.479043],\n            [9.2099, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8ac7ff\",\n        \"fill\": \"#8ac7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2099, 45.488036],\n            [9.2099, 45.49703],\n            [9.218893, 45.49703],\n            [9.218893, 45.488036],\n            [9.2099, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2099, 45.49703],\n            [9.2099, 45.506023],\n            [9.218893, 45.506023],\n            [9.218893, 45.49703],\n            [9.2099, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#148fff\",\n        \"fill\": \"#148fff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2099, 45.506023],\n            [9.2099, 45.515016],\n            [9.218893, 45.515016],\n            [9.218893, 45.506023],\n            [9.2099, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0065c2\",\n        \"fill\": \"#0065c2\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2099, 45.515016],\n            [9.2099, 45.524009],\n            [9.218893, 45.524009],\n            [9.218893, 45.515016],\n            [9.2099, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#003d75\",\n        \"fill\": \"#003d75\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.2099, 45.524009],\n            [9.2099, 45.533002],\n            [9.218893, 45.533002],\n            [9.218893, 45.524009],\n            [9.2099, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8ac7ff\",\n        \"fill\": \"#8ac7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.218893, 45.44307],\n            [9.218893, 45.452063],\n            [9.227887, 45.452063],\n            [9.227887, 45.44307],\n            [9.218893, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8ac7ff\",\n        \"fill\": \"#8ac7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.218893, 45.452063],\n            [9.218893, 45.461057],\n            [9.227887, 45.461057],\n            [9.227887, 45.452063],\n            [9.218893, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8ac7ff\",\n        \"fill\": \"#8ac7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.218893, 45.461057],\n            [9.218893, 45.47005],\n            [9.227887, 45.47005],\n            [9.227887, 45.461057],\n            [9.218893, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8ac7ff\",\n        \"fill\": \"#8ac7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.218893, 45.47005],\n            [9.218893, 45.479043],\n            [9.227887, 45.479043],\n            [9.227887, 45.47005],\n            [9.218893, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.218893, 45.479043],\n            [9.218893, 45.488036],\n            [9.227887, 45.488036],\n            [9.227887, 45.479043],\n            [9.218893, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#b3daff\",\n        \"fill\": \"#b3daff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.218893, 45.488036],\n            [9.218893, 45.49703],\n            [9.227887, 45.49703],\n            [9.227887, 45.488036],\n            [9.218893, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.218893, 45.49703],\n            [9.218893, 45.506023],\n            [9.227887, 45.506023],\n            [9.227887, 45.49703],\n            [9.218893, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.218893, 45.506023],\n            [9.218893, 45.515016],\n            [9.227887, 45.515016],\n            [9.227887, 45.506023],\n            [9.218893, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#007aeb\",\n        \"fill\": \"#007aeb\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.218893, 45.515016],\n            [9.218893, 45.524009],\n            [9.227887, 45.524009],\n            [9.227887, 45.515016],\n            [9.218893, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#00529e\",\n        \"fill\": \"#00529e\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.218893, 45.524009],\n            [9.218893, 45.533002],\n            [9.227887, 45.533002],\n            [9.227887, 45.524009],\n            [9.218893, 45.524009]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/out/data-500m-bbox.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.339648],\n            [9.032822, 45.344145],\n            [9.037318, 45.344145],\n            [9.037318, 45.339648],\n            [9.032822, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.344145],\n            [9.032822, 45.348642],\n            [9.037318, 45.348642],\n            [9.037318, 45.344145],\n            [9.032822, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.348642],\n            [9.032822, 45.353138],\n            [9.037318, 45.353138],\n            [9.037318, 45.348642],\n            [9.032822, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.353138],\n            [9.032822, 45.357635],\n            [9.037318, 45.357635],\n            [9.037318, 45.353138],\n            [9.032822, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.357635],\n            [9.032822, 45.362131],\n            [9.037318, 45.362131],\n            [9.037318, 45.357635],\n            [9.032822, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.362131],\n            [9.032822, 45.366628],\n            [9.037318, 45.366628],\n            [9.037318, 45.362131],\n            [9.032822, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.366628],\n            [9.032822, 45.371125],\n            [9.037318, 45.371125],\n            [9.037318, 45.366628],\n            [9.032822, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.371125],\n            [9.032822, 45.375621],\n            [9.037318, 45.375621],\n            [9.037318, 45.371125],\n            [9.032822, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.375621],\n            [9.032822, 45.380118],\n            [9.037318, 45.380118],\n            [9.037318, 45.375621],\n            [9.032822, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.380118],\n            [9.032822, 45.384614],\n            [9.037318, 45.384614],\n            [9.037318, 45.380118],\n            [9.032822, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.384614],\n            [9.032822, 45.389111],\n            [9.037318, 45.389111],\n            [9.037318, 45.384614],\n            [9.032822, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.389111],\n            [9.032822, 45.393608],\n            [9.037318, 45.393608],\n            [9.037318, 45.389111],\n            [9.032822, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.393608],\n            [9.032822, 45.398104],\n            [9.037318, 45.398104],\n            [9.037318, 45.393608],\n            [9.032822, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.398104],\n            [9.032822, 45.402601],\n            [9.037318, 45.402601],\n            [9.037318, 45.398104],\n            [9.032822, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.402601],\n            [9.032822, 45.407097],\n            [9.037318, 45.407097],\n            [9.037318, 45.402601],\n            [9.032822, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.407097],\n            [9.032822, 45.411594],\n            [9.037318, 45.411594],\n            [9.037318, 45.407097],\n            [9.032822, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.411594],\n            [9.032822, 45.416091],\n            [9.037318, 45.416091],\n            [9.037318, 45.411594],\n            [9.032822, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.416091],\n            [9.032822, 45.420587],\n            [9.037318, 45.420587],\n            [9.037318, 45.416091],\n            [9.032822, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.420587],\n            [9.032822, 45.425084],\n            [9.037318, 45.425084],\n            [9.037318, 45.420587],\n            [9.032822, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.425084],\n            [9.032822, 45.42958],\n            [9.037318, 45.42958],\n            [9.037318, 45.425084],\n            [9.032822, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.42958],\n            [9.032822, 45.434077],\n            [9.037318, 45.434077],\n            [9.037318, 45.42958],\n            [9.032822, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.434077],\n            [9.032822, 45.438574],\n            [9.037318, 45.438574],\n            [9.037318, 45.434077],\n            [9.032822, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.438574],\n            [9.032822, 45.44307],\n            [9.037318, 45.44307],\n            [9.037318, 45.438574],\n            [9.032822, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.44307],\n            [9.032822, 45.447567],\n            [9.037318, 45.447567],\n            [9.037318, 45.44307],\n            [9.032822, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.447567],\n            [9.032822, 45.452063],\n            [9.037318, 45.452063],\n            [9.037318, 45.447567],\n            [9.032822, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.452063],\n            [9.032822, 45.45656],\n            [9.037318, 45.45656],\n            [9.037318, 45.452063],\n            [9.032822, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.45656],\n            [9.032822, 45.461057],\n            [9.037318, 45.461057],\n            [9.037318, 45.45656],\n            [9.032822, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.461057],\n            [9.032822, 45.465553],\n            [9.037318, 45.465553],\n            [9.037318, 45.461057],\n            [9.032822, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.465553],\n            [9.032822, 45.47005],\n            [9.037318, 45.47005],\n            [9.037318, 45.465553],\n            [9.032822, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.47005],\n            [9.032822, 45.474547],\n            [9.037318, 45.474547],\n            [9.037318, 45.47005],\n            [9.032822, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.474547],\n            [9.032822, 45.479043],\n            [9.037318, 45.479043],\n            [9.037318, 45.474547],\n            [9.032822, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.479043],\n            [9.032822, 45.48354],\n            [9.037318, 45.48354],\n            [9.037318, 45.479043],\n            [9.032822, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.48354],\n            [9.032822, 45.488036],\n            [9.037318, 45.488036],\n            [9.037318, 45.48354],\n            [9.032822, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.488036],\n            [9.032822, 45.492533],\n            [9.037318, 45.492533],\n            [9.037318, 45.488036],\n            [9.032822, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.492533],\n            [9.032822, 45.49703],\n            [9.037318, 45.49703],\n            [9.037318, 45.492533],\n            [9.032822, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.49703],\n            [9.032822, 45.501526],\n            [9.037318, 45.501526],\n            [9.037318, 45.49703],\n            [9.032822, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.501526],\n            [9.032822, 45.506023],\n            [9.037318, 45.506023],\n            [9.037318, 45.501526],\n            [9.032822, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.506023],\n            [9.032822, 45.510519],\n            [9.037318, 45.510519],\n            [9.037318, 45.506023],\n            [9.032822, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.510519],\n            [9.032822, 45.515016],\n            [9.037318, 45.515016],\n            [9.037318, 45.510519],\n            [9.032822, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.515016],\n            [9.032822, 45.519513],\n            [9.037318, 45.519513],\n            [9.037318, 45.515016],\n            [9.032822, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.519513],\n            [9.032822, 45.524009],\n            [9.037318, 45.524009],\n            [9.037318, 45.519513],\n            [9.032822, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.524009],\n            [9.032822, 45.528506],\n            [9.037318, 45.528506],\n            [9.037318, 45.524009],\n            [9.032822, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.528506],\n            [9.032822, 45.533002],\n            [9.037318, 45.533002],\n            [9.037318, 45.528506],\n            [9.032822, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.533002],\n            [9.032822, 45.537499],\n            [9.037318, 45.537499],\n            [9.037318, 45.533002],\n            [9.032822, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.537499],\n            [9.032822, 45.541996],\n            [9.037318, 45.541996],\n            [9.037318, 45.537499],\n            [9.032822, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.541996],\n            [9.032822, 45.546492],\n            [9.037318, 45.546492],\n            [9.037318, 45.541996],\n            [9.032822, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.546492],\n            [9.032822, 45.550989],\n            [9.037318, 45.550989],\n            [9.037318, 45.546492],\n            [9.032822, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.550989],\n            [9.032822, 45.555485],\n            [9.037318, 45.555485],\n            [9.037318, 45.550989],\n            [9.032822, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.555485],\n            [9.032822, 45.559982],\n            [9.037318, 45.559982],\n            [9.037318, 45.555485],\n            [9.032822, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.559982],\n            [9.032822, 45.564479],\n            [9.037318, 45.564479],\n            [9.037318, 45.559982],\n            [9.032822, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.564479],\n            [9.032822, 45.568975],\n            [9.037318, 45.568975],\n            [9.037318, 45.564479],\n            [9.032822, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.568975],\n            [9.032822, 45.573472],\n            [9.037318, 45.573472],\n            [9.037318, 45.568975],\n            [9.032822, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.573472],\n            [9.032822, 45.577968],\n            [9.037318, 45.577968],\n            [9.037318, 45.573472],\n            [9.032822, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.577968],\n            [9.032822, 45.582465],\n            [9.037318, 45.582465],\n            [9.037318, 45.577968],\n            [9.032822, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.582465],\n            [9.032822, 45.586962],\n            [9.037318, 45.586962],\n            [9.037318, 45.582465],\n            [9.032822, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.586962],\n            [9.032822, 45.591458],\n            [9.037318, 45.591458],\n            [9.037318, 45.586962],\n            [9.032822, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.591458],\n            [9.032822, 45.595955],\n            [9.037318, 45.595955],\n            [9.037318, 45.591458],\n            [9.032822, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.595955],\n            [9.032822, 45.600451],\n            [9.037318, 45.600451],\n            [9.037318, 45.595955],\n            [9.032822, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.600451],\n            [9.032822, 45.604948],\n            [9.037318, 45.604948],\n            [9.037318, 45.600451],\n            [9.032822, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.604948],\n            [9.032822, 45.609445],\n            [9.037318, 45.609445],\n            [9.037318, 45.604948],\n            [9.032822, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.609445],\n            [9.032822, 45.613941],\n            [9.037318, 45.613941],\n            [9.037318, 45.609445],\n            [9.032822, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.613941],\n            [9.032822, 45.618438],\n            [9.037318, 45.618438],\n            [9.037318, 45.613941],\n            [9.032822, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.618438],\n            [9.032822, 45.622934],\n            [9.037318, 45.622934],\n            [9.037318, 45.618438],\n            [9.032822, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.622934],\n            [9.032822, 45.627431],\n            [9.037318, 45.627431],\n            [9.037318, 45.622934],\n            [9.032822, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.627431],\n            [9.032822, 45.631928],\n            [9.037318, 45.631928],\n            [9.037318, 45.627431],\n            [9.032822, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.032822, 45.631928],\n            [9.032822, 45.636424],\n            [9.037318, 45.636424],\n            [9.037318, 45.631928],\n            [9.032822, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.339648],\n            [9.037318, 45.344145],\n            [9.041815, 45.344145],\n            [9.041815, 45.339648],\n            [9.037318, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.344145],\n            [9.037318, 45.348642],\n            [9.041815, 45.348642],\n            [9.041815, 45.344145],\n            [9.037318, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.348642],\n            [9.037318, 45.353138],\n            [9.041815, 45.353138],\n            [9.041815, 45.348642],\n            [9.037318, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.353138],\n            [9.037318, 45.357635],\n            [9.041815, 45.357635],\n            [9.041815, 45.353138],\n            [9.037318, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.357635],\n            [9.037318, 45.362131],\n            [9.041815, 45.362131],\n            [9.041815, 45.357635],\n            [9.037318, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.362131],\n            [9.037318, 45.366628],\n            [9.041815, 45.366628],\n            [9.041815, 45.362131],\n            [9.037318, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.366628],\n            [9.037318, 45.371125],\n            [9.041815, 45.371125],\n            [9.041815, 45.366628],\n            [9.037318, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.371125],\n            [9.037318, 45.375621],\n            [9.041815, 45.375621],\n            [9.041815, 45.371125],\n            [9.037318, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.375621],\n            [9.037318, 45.380118],\n            [9.041815, 45.380118],\n            [9.041815, 45.375621],\n            [9.037318, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.380118],\n            [9.037318, 45.384614],\n            [9.041815, 45.384614],\n            [9.041815, 45.380118],\n            [9.037318, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.384614],\n            [9.037318, 45.389111],\n            [9.041815, 45.389111],\n            [9.041815, 45.384614],\n            [9.037318, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.389111],\n            [9.037318, 45.393608],\n            [9.041815, 45.393608],\n            [9.041815, 45.389111],\n            [9.037318, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.393608],\n            [9.037318, 45.398104],\n            [9.041815, 45.398104],\n            [9.041815, 45.393608],\n            [9.037318, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.398104],\n            [9.037318, 45.402601],\n            [9.041815, 45.402601],\n            [9.041815, 45.398104],\n            [9.037318, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.402601],\n            [9.037318, 45.407097],\n            [9.041815, 45.407097],\n            [9.041815, 45.402601],\n            [9.037318, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.407097],\n            [9.037318, 45.411594],\n            [9.041815, 45.411594],\n            [9.041815, 45.407097],\n            [9.037318, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.411594],\n            [9.037318, 45.416091],\n            [9.041815, 45.416091],\n            [9.041815, 45.411594],\n            [9.037318, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.416091],\n            [9.037318, 45.420587],\n            [9.041815, 45.420587],\n            [9.041815, 45.416091],\n            [9.037318, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.420587],\n            [9.037318, 45.425084],\n            [9.041815, 45.425084],\n            [9.041815, 45.420587],\n            [9.037318, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.425084],\n            [9.037318, 45.42958],\n            [9.041815, 45.42958],\n            [9.041815, 45.425084],\n            [9.037318, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.42958],\n            [9.037318, 45.434077],\n            [9.041815, 45.434077],\n            [9.041815, 45.42958],\n            [9.037318, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.434077],\n            [9.037318, 45.438574],\n            [9.041815, 45.438574],\n            [9.041815, 45.434077],\n            [9.037318, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.438574],\n            [9.037318, 45.44307],\n            [9.041815, 45.44307],\n            [9.041815, 45.438574],\n            [9.037318, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.44307],\n            [9.037318, 45.447567],\n            [9.041815, 45.447567],\n            [9.041815, 45.44307],\n            [9.037318, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.447567],\n            [9.037318, 45.452063],\n            [9.041815, 45.452063],\n            [9.041815, 45.447567],\n            [9.037318, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.452063],\n            [9.037318, 45.45656],\n            [9.041815, 45.45656],\n            [9.041815, 45.452063],\n            [9.037318, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.45656],\n            [9.037318, 45.461057],\n            [9.041815, 45.461057],\n            [9.041815, 45.45656],\n            [9.037318, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.461057],\n            [9.037318, 45.465553],\n            [9.041815, 45.465553],\n            [9.041815, 45.461057],\n            [9.037318, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.465553],\n            [9.037318, 45.47005],\n            [9.041815, 45.47005],\n            [9.041815, 45.465553],\n            [9.037318, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.47005],\n            [9.037318, 45.474547],\n            [9.041815, 45.474547],\n            [9.041815, 45.47005],\n            [9.037318, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.474547],\n            [9.037318, 45.479043],\n            [9.041815, 45.479043],\n            [9.041815, 45.474547],\n            [9.037318, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.479043],\n            [9.037318, 45.48354],\n            [9.041815, 45.48354],\n            [9.041815, 45.479043],\n            [9.037318, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.48354],\n            [9.037318, 45.488036],\n            [9.041815, 45.488036],\n            [9.041815, 45.48354],\n            [9.037318, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.488036],\n            [9.037318, 45.492533],\n            [9.041815, 45.492533],\n            [9.041815, 45.488036],\n            [9.037318, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.492533],\n            [9.037318, 45.49703],\n            [9.041815, 45.49703],\n            [9.041815, 45.492533],\n            [9.037318, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.49703],\n            [9.037318, 45.501526],\n            [9.041815, 45.501526],\n            [9.041815, 45.49703],\n            [9.037318, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.501526],\n            [9.037318, 45.506023],\n            [9.041815, 45.506023],\n            [9.041815, 45.501526],\n            [9.037318, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.506023],\n            [9.037318, 45.510519],\n            [9.041815, 45.510519],\n            [9.041815, 45.506023],\n            [9.037318, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.510519],\n            [9.037318, 45.515016],\n            [9.041815, 45.515016],\n            [9.041815, 45.510519],\n            [9.037318, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.515016],\n            [9.037318, 45.519513],\n            [9.041815, 45.519513],\n            [9.041815, 45.515016],\n            [9.037318, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.519513],\n            [9.037318, 45.524009],\n            [9.041815, 45.524009],\n            [9.041815, 45.519513],\n            [9.037318, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.524009],\n            [9.037318, 45.528506],\n            [9.041815, 45.528506],\n            [9.041815, 45.524009],\n            [9.037318, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.528506],\n            [9.037318, 45.533002],\n            [9.041815, 45.533002],\n            [9.041815, 45.528506],\n            [9.037318, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.533002],\n            [9.037318, 45.537499],\n            [9.041815, 45.537499],\n            [9.041815, 45.533002],\n            [9.037318, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.537499],\n            [9.037318, 45.541996],\n            [9.041815, 45.541996],\n            [9.041815, 45.537499],\n            [9.037318, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.541996],\n            [9.037318, 45.546492],\n            [9.041815, 45.546492],\n            [9.041815, 45.541996],\n            [9.037318, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.546492],\n            [9.037318, 45.550989],\n            [9.041815, 45.550989],\n            [9.041815, 45.546492],\n            [9.037318, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.550989],\n            [9.037318, 45.555485],\n            [9.041815, 45.555485],\n            [9.041815, 45.550989],\n            [9.037318, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.555485],\n            [9.037318, 45.559982],\n            [9.041815, 45.559982],\n            [9.041815, 45.555485],\n            [9.037318, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.559982],\n            [9.037318, 45.564479],\n            [9.041815, 45.564479],\n            [9.041815, 45.559982],\n            [9.037318, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.564479],\n            [9.037318, 45.568975],\n            [9.041815, 45.568975],\n            [9.041815, 45.564479],\n            [9.037318, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.568975],\n            [9.037318, 45.573472],\n            [9.041815, 45.573472],\n            [9.041815, 45.568975],\n            [9.037318, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.573472],\n            [9.037318, 45.577968],\n            [9.041815, 45.577968],\n            [9.041815, 45.573472],\n            [9.037318, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.577968],\n            [9.037318, 45.582465],\n            [9.041815, 45.582465],\n            [9.041815, 45.577968],\n            [9.037318, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.582465],\n            [9.037318, 45.586962],\n            [9.041815, 45.586962],\n            [9.041815, 45.582465],\n            [9.037318, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.586962],\n            [9.037318, 45.591458],\n            [9.041815, 45.591458],\n            [9.041815, 45.586962],\n            [9.037318, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.591458],\n            [9.037318, 45.595955],\n            [9.041815, 45.595955],\n            [9.041815, 45.591458],\n            [9.037318, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.595955],\n            [9.037318, 45.600451],\n            [9.041815, 45.600451],\n            [9.041815, 45.595955],\n            [9.037318, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.600451],\n            [9.037318, 45.604948],\n            [9.041815, 45.604948],\n            [9.041815, 45.600451],\n            [9.037318, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.604948],\n            [9.037318, 45.609445],\n            [9.041815, 45.609445],\n            [9.041815, 45.604948],\n            [9.037318, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.609445],\n            [9.037318, 45.613941],\n            [9.041815, 45.613941],\n            [9.041815, 45.609445],\n            [9.037318, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.613941],\n            [9.037318, 45.618438],\n            [9.041815, 45.618438],\n            [9.041815, 45.613941],\n            [9.037318, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.618438],\n            [9.037318, 45.622934],\n            [9.041815, 45.622934],\n            [9.041815, 45.618438],\n            [9.037318, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.622934],\n            [9.037318, 45.627431],\n            [9.041815, 45.627431],\n            [9.041815, 45.622934],\n            [9.037318, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.627431],\n            [9.037318, 45.631928],\n            [9.041815, 45.631928],\n            [9.041815, 45.627431],\n            [9.037318, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.037318, 45.631928],\n            [9.037318, 45.636424],\n            [9.041815, 45.636424],\n            [9.041815, 45.631928],\n            [9.037318, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.339648],\n            [9.041815, 45.344145],\n            [9.046312, 45.344145],\n            [9.046312, 45.339648],\n            [9.041815, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.344145],\n            [9.041815, 45.348642],\n            [9.046312, 45.348642],\n            [9.046312, 45.344145],\n            [9.041815, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.348642],\n            [9.041815, 45.353138],\n            [9.046312, 45.353138],\n            [9.046312, 45.348642],\n            [9.041815, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.353138],\n            [9.041815, 45.357635],\n            [9.046312, 45.357635],\n            [9.046312, 45.353138],\n            [9.041815, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.357635],\n            [9.041815, 45.362131],\n            [9.046312, 45.362131],\n            [9.046312, 45.357635],\n            [9.041815, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.362131],\n            [9.041815, 45.366628],\n            [9.046312, 45.366628],\n            [9.046312, 45.362131],\n            [9.041815, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.366628],\n            [9.041815, 45.371125],\n            [9.046312, 45.371125],\n            [9.046312, 45.366628],\n            [9.041815, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.371125],\n            [9.041815, 45.375621],\n            [9.046312, 45.375621],\n            [9.046312, 45.371125],\n            [9.041815, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.375621],\n            [9.041815, 45.380118],\n            [9.046312, 45.380118],\n            [9.046312, 45.375621],\n            [9.041815, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.380118],\n            [9.041815, 45.384614],\n            [9.046312, 45.384614],\n            [9.046312, 45.380118],\n            [9.041815, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.384614],\n            [9.041815, 45.389111],\n            [9.046312, 45.389111],\n            [9.046312, 45.384614],\n            [9.041815, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.389111],\n            [9.041815, 45.393608],\n            [9.046312, 45.393608],\n            [9.046312, 45.389111],\n            [9.041815, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.393608],\n            [9.041815, 45.398104],\n            [9.046312, 45.398104],\n            [9.046312, 45.393608],\n            [9.041815, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.398104],\n            [9.041815, 45.402601],\n            [9.046312, 45.402601],\n            [9.046312, 45.398104],\n            [9.041815, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.402601],\n            [9.041815, 45.407097],\n            [9.046312, 45.407097],\n            [9.046312, 45.402601],\n            [9.041815, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.407097],\n            [9.041815, 45.411594],\n            [9.046312, 45.411594],\n            [9.046312, 45.407097],\n            [9.041815, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.411594],\n            [9.041815, 45.416091],\n            [9.046312, 45.416091],\n            [9.046312, 45.411594],\n            [9.041815, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.416091],\n            [9.041815, 45.420587],\n            [9.046312, 45.420587],\n            [9.046312, 45.416091],\n            [9.041815, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.420587],\n            [9.041815, 45.425084],\n            [9.046312, 45.425084],\n            [9.046312, 45.420587],\n            [9.041815, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.425084],\n            [9.041815, 45.42958],\n            [9.046312, 45.42958],\n            [9.046312, 45.425084],\n            [9.041815, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.42958],\n            [9.041815, 45.434077],\n            [9.046312, 45.434077],\n            [9.046312, 45.42958],\n            [9.041815, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.434077],\n            [9.041815, 45.438574],\n            [9.046312, 45.438574],\n            [9.046312, 45.434077],\n            [9.041815, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.438574],\n            [9.041815, 45.44307],\n            [9.046312, 45.44307],\n            [9.046312, 45.438574],\n            [9.041815, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.44307],\n            [9.041815, 45.447567],\n            [9.046312, 45.447567],\n            [9.046312, 45.44307],\n            [9.041815, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.447567],\n            [9.041815, 45.452063],\n            [9.046312, 45.452063],\n            [9.046312, 45.447567],\n            [9.041815, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.452063],\n            [9.041815, 45.45656],\n            [9.046312, 45.45656],\n            [9.046312, 45.452063],\n            [9.041815, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.45656],\n            [9.041815, 45.461057],\n            [9.046312, 45.461057],\n            [9.046312, 45.45656],\n            [9.041815, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.461057],\n            [9.041815, 45.465553],\n            [9.046312, 45.465553],\n            [9.046312, 45.461057],\n            [9.041815, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.465553],\n            [9.041815, 45.47005],\n            [9.046312, 45.47005],\n            [9.046312, 45.465553],\n            [9.041815, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.47005],\n            [9.041815, 45.474547],\n            [9.046312, 45.474547],\n            [9.046312, 45.47005],\n            [9.041815, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.474547],\n            [9.041815, 45.479043],\n            [9.046312, 45.479043],\n            [9.046312, 45.474547],\n            [9.041815, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.479043],\n            [9.041815, 45.48354],\n            [9.046312, 45.48354],\n            [9.046312, 45.479043],\n            [9.041815, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.48354],\n            [9.041815, 45.488036],\n            [9.046312, 45.488036],\n            [9.046312, 45.48354],\n            [9.041815, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.488036],\n            [9.041815, 45.492533],\n            [9.046312, 45.492533],\n            [9.046312, 45.488036],\n            [9.041815, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.492533],\n            [9.041815, 45.49703],\n            [9.046312, 45.49703],\n            [9.046312, 45.492533],\n            [9.041815, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.49703],\n            [9.041815, 45.501526],\n            [9.046312, 45.501526],\n            [9.046312, 45.49703],\n            [9.041815, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.501526],\n            [9.041815, 45.506023],\n            [9.046312, 45.506023],\n            [9.046312, 45.501526],\n            [9.041815, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.506023],\n            [9.041815, 45.510519],\n            [9.046312, 45.510519],\n            [9.046312, 45.506023],\n            [9.041815, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.510519],\n            [9.041815, 45.515016],\n            [9.046312, 45.515016],\n            [9.046312, 45.510519],\n            [9.041815, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.515016],\n            [9.041815, 45.519513],\n            [9.046312, 45.519513],\n            [9.046312, 45.515016],\n            [9.041815, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.519513],\n            [9.041815, 45.524009],\n            [9.046312, 45.524009],\n            [9.046312, 45.519513],\n            [9.041815, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.524009],\n            [9.041815, 45.528506],\n            [9.046312, 45.528506],\n            [9.046312, 45.524009],\n            [9.041815, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.528506],\n            [9.041815, 45.533002],\n            [9.046312, 45.533002],\n            [9.046312, 45.528506],\n            [9.041815, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.533002],\n            [9.041815, 45.537499],\n            [9.046312, 45.537499],\n            [9.046312, 45.533002],\n            [9.041815, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.537499],\n            [9.041815, 45.541996],\n            [9.046312, 45.541996],\n            [9.046312, 45.537499],\n            [9.041815, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.541996],\n            [9.041815, 45.546492],\n            [9.046312, 45.546492],\n            [9.046312, 45.541996],\n            [9.041815, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.546492],\n            [9.041815, 45.550989],\n            [9.046312, 45.550989],\n            [9.046312, 45.546492],\n            [9.041815, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.550989],\n            [9.041815, 45.555485],\n            [9.046312, 45.555485],\n            [9.046312, 45.550989],\n            [9.041815, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.555485],\n            [9.041815, 45.559982],\n            [9.046312, 45.559982],\n            [9.046312, 45.555485],\n            [9.041815, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.559982],\n            [9.041815, 45.564479],\n            [9.046312, 45.564479],\n            [9.046312, 45.559982],\n            [9.041815, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.564479],\n            [9.041815, 45.568975],\n            [9.046312, 45.568975],\n            [9.046312, 45.564479],\n            [9.041815, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.568975],\n            [9.041815, 45.573472],\n            [9.046312, 45.573472],\n            [9.046312, 45.568975],\n            [9.041815, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.573472],\n            [9.041815, 45.577968],\n            [9.046312, 45.577968],\n            [9.046312, 45.573472],\n            [9.041815, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.577968],\n            [9.041815, 45.582465],\n            [9.046312, 45.582465],\n            [9.046312, 45.577968],\n            [9.041815, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.582465],\n            [9.041815, 45.586962],\n            [9.046312, 45.586962],\n            [9.046312, 45.582465],\n            [9.041815, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.586962],\n            [9.041815, 45.591458],\n            [9.046312, 45.591458],\n            [9.046312, 45.586962],\n            [9.041815, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.591458],\n            [9.041815, 45.595955],\n            [9.046312, 45.595955],\n            [9.046312, 45.591458],\n            [9.041815, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.595955],\n            [9.041815, 45.600451],\n            [9.046312, 45.600451],\n            [9.046312, 45.595955],\n            [9.041815, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.600451],\n            [9.041815, 45.604948],\n            [9.046312, 45.604948],\n            [9.046312, 45.600451],\n            [9.041815, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.604948],\n            [9.041815, 45.609445],\n            [9.046312, 45.609445],\n            [9.046312, 45.604948],\n            [9.041815, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.609445],\n            [9.041815, 45.613941],\n            [9.046312, 45.613941],\n            [9.046312, 45.609445],\n            [9.041815, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.613941],\n            [9.041815, 45.618438],\n            [9.046312, 45.618438],\n            [9.046312, 45.613941],\n            [9.041815, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.618438],\n            [9.041815, 45.622934],\n            [9.046312, 45.622934],\n            [9.046312, 45.618438],\n            [9.041815, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.622934],\n            [9.041815, 45.627431],\n            [9.046312, 45.627431],\n            [9.046312, 45.622934],\n            [9.041815, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.627431],\n            [9.041815, 45.631928],\n            [9.046312, 45.631928],\n            [9.046312, 45.627431],\n            [9.041815, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.041815, 45.631928],\n            [9.041815, 45.636424],\n            [9.046312, 45.636424],\n            [9.046312, 45.631928],\n            [9.041815, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.339648],\n            [9.046312, 45.344145],\n            [9.050808, 45.344145],\n            [9.050808, 45.339648],\n            [9.046312, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.344145],\n            [9.046312, 45.348642],\n            [9.050808, 45.348642],\n            [9.050808, 45.344145],\n            [9.046312, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.348642],\n            [9.046312, 45.353138],\n            [9.050808, 45.353138],\n            [9.050808, 45.348642],\n            [9.046312, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.353138],\n            [9.046312, 45.357635],\n            [9.050808, 45.357635],\n            [9.050808, 45.353138],\n            [9.046312, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.357635],\n            [9.046312, 45.362131],\n            [9.050808, 45.362131],\n            [9.050808, 45.357635],\n            [9.046312, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.362131],\n            [9.046312, 45.366628],\n            [9.050808, 45.366628],\n            [9.050808, 45.362131],\n            [9.046312, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.366628],\n            [9.046312, 45.371125],\n            [9.050808, 45.371125],\n            [9.050808, 45.366628],\n            [9.046312, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.371125],\n            [9.046312, 45.375621],\n            [9.050808, 45.375621],\n            [9.050808, 45.371125],\n            [9.046312, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.375621],\n            [9.046312, 45.380118],\n            [9.050808, 45.380118],\n            [9.050808, 45.375621],\n            [9.046312, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.380118],\n            [9.046312, 45.384614],\n            [9.050808, 45.384614],\n            [9.050808, 45.380118],\n            [9.046312, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.384614],\n            [9.046312, 45.389111],\n            [9.050808, 45.389111],\n            [9.050808, 45.384614],\n            [9.046312, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.389111],\n            [9.046312, 45.393608],\n            [9.050808, 45.393608],\n            [9.050808, 45.389111],\n            [9.046312, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.393608],\n            [9.046312, 45.398104],\n            [9.050808, 45.398104],\n            [9.050808, 45.393608],\n            [9.046312, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.398104],\n            [9.046312, 45.402601],\n            [9.050808, 45.402601],\n            [9.050808, 45.398104],\n            [9.046312, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.402601],\n            [9.046312, 45.407097],\n            [9.050808, 45.407097],\n            [9.050808, 45.402601],\n            [9.046312, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.407097],\n            [9.046312, 45.411594],\n            [9.050808, 45.411594],\n            [9.050808, 45.407097],\n            [9.046312, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.411594],\n            [9.046312, 45.416091],\n            [9.050808, 45.416091],\n            [9.050808, 45.411594],\n            [9.046312, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.416091],\n            [9.046312, 45.420587],\n            [9.050808, 45.420587],\n            [9.050808, 45.416091],\n            [9.046312, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.420587],\n            [9.046312, 45.425084],\n            [9.050808, 45.425084],\n            [9.050808, 45.420587],\n            [9.046312, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.425084],\n            [9.046312, 45.42958],\n            [9.050808, 45.42958],\n            [9.050808, 45.425084],\n            [9.046312, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.42958],\n            [9.046312, 45.434077],\n            [9.050808, 45.434077],\n            [9.050808, 45.42958],\n            [9.046312, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.434077],\n            [9.046312, 45.438574],\n            [9.050808, 45.438574],\n            [9.050808, 45.434077],\n            [9.046312, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.438574],\n            [9.046312, 45.44307],\n            [9.050808, 45.44307],\n            [9.050808, 45.438574],\n            [9.046312, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.44307],\n            [9.046312, 45.447567],\n            [9.050808, 45.447567],\n            [9.050808, 45.44307],\n            [9.046312, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.447567],\n            [9.046312, 45.452063],\n            [9.050808, 45.452063],\n            [9.050808, 45.447567],\n            [9.046312, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.452063],\n            [9.046312, 45.45656],\n            [9.050808, 45.45656],\n            [9.050808, 45.452063],\n            [9.046312, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.45656],\n            [9.046312, 45.461057],\n            [9.050808, 45.461057],\n            [9.050808, 45.45656],\n            [9.046312, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.461057],\n            [9.046312, 45.465553],\n            [9.050808, 45.465553],\n            [9.050808, 45.461057],\n            [9.046312, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.465553],\n            [9.046312, 45.47005],\n            [9.050808, 45.47005],\n            [9.050808, 45.465553],\n            [9.046312, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.47005],\n            [9.046312, 45.474547],\n            [9.050808, 45.474547],\n            [9.050808, 45.47005],\n            [9.046312, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.474547],\n            [9.046312, 45.479043],\n            [9.050808, 45.479043],\n            [9.050808, 45.474547],\n            [9.046312, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.479043],\n            [9.046312, 45.48354],\n            [9.050808, 45.48354],\n            [9.050808, 45.479043],\n            [9.046312, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.48354],\n            [9.046312, 45.488036],\n            [9.050808, 45.488036],\n            [9.050808, 45.48354],\n            [9.046312, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.488036],\n            [9.046312, 45.492533],\n            [9.050808, 45.492533],\n            [9.050808, 45.488036],\n            [9.046312, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.492533],\n            [9.046312, 45.49703],\n            [9.050808, 45.49703],\n            [9.050808, 45.492533],\n            [9.046312, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.49703],\n            [9.046312, 45.501526],\n            [9.050808, 45.501526],\n            [9.050808, 45.49703],\n            [9.046312, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.501526],\n            [9.046312, 45.506023],\n            [9.050808, 45.506023],\n            [9.050808, 45.501526],\n            [9.046312, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.506023],\n            [9.046312, 45.510519],\n            [9.050808, 45.510519],\n            [9.050808, 45.506023],\n            [9.046312, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.510519],\n            [9.046312, 45.515016],\n            [9.050808, 45.515016],\n            [9.050808, 45.510519],\n            [9.046312, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.515016],\n            [9.046312, 45.519513],\n            [9.050808, 45.519513],\n            [9.050808, 45.515016],\n            [9.046312, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.519513],\n            [9.046312, 45.524009],\n            [9.050808, 45.524009],\n            [9.050808, 45.519513],\n            [9.046312, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.524009],\n            [9.046312, 45.528506],\n            [9.050808, 45.528506],\n            [9.050808, 45.524009],\n            [9.046312, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.528506],\n            [9.046312, 45.533002],\n            [9.050808, 45.533002],\n            [9.050808, 45.528506],\n            [9.046312, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.533002],\n            [9.046312, 45.537499],\n            [9.050808, 45.537499],\n            [9.050808, 45.533002],\n            [9.046312, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.537499],\n            [9.046312, 45.541996],\n            [9.050808, 45.541996],\n            [9.050808, 45.537499],\n            [9.046312, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.541996],\n            [9.046312, 45.546492],\n            [9.050808, 45.546492],\n            [9.050808, 45.541996],\n            [9.046312, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.546492],\n            [9.046312, 45.550989],\n            [9.050808, 45.550989],\n            [9.050808, 45.546492],\n            [9.046312, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.550989],\n            [9.046312, 45.555485],\n            [9.050808, 45.555485],\n            [9.050808, 45.550989],\n            [9.046312, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.555485],\n            [9.046312, 45.559982],\n            [9.050808, 45.559982],\n            [9.050808, 45.555485],\n            [9.046312, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.559982],\n            [9.046312, 45.564479],\n            [9.050808, 45.564479],\n            [9.050808, 45.559982],\n            [9.046312, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.564479],\n            [9.046312, 45.568975],\n            [9.050808, 45.568975],\n            [9.050808, 45.564479],\n            [9.046312, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.568975],\n            [9.046312, 45.573472],\n            [9.050808, 45.573472],\n            [9.050808, 45.568975],\n            [9.046312, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.573472],\n            [9.046312, 45.577968],\n            [9.050808, 45.577968],\n            [9.050808, 45.573472],\n            [9.046312, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.577968],\n            [9.046312, 45.582465],\n            [9.050808, 45.582465],\n            [9.050808, 45.577968],\n            [9.046312, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.582465],\n            [9.046312, 45.586962],\n            [9.050808, 45.586962],\n            [9.050808, 45.582465],\n            [9.046312, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.586962],\n            [9.046312, 45.591458],\n            [9.050808, 45.591458],\n            [9.050808, 45.586962],\n            [9.046312, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.591458],\n            [9.046312, 45.595955],\n            [9.050808, 45.595955],\n            [9.050808, 45.591458],\n            [9.046312, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.595955],\n            [9.046312, 45.600451],\n            [9.050808, 45.600451],\n            [9.050808, 45.595955],\n            [9.046312, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.600451],\n            [9.046312, 45.604948],\n            [9.050808, 45.604948],\n            [9.050808, 45.600451],\n            [9.046312, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.604948],\n            [9.046312, 45.609445],\n            [9.050808, 45.609445],\n            [9.050808, 45.604948],\n            [9.046312, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.609445],\n            [9.046312, 45.613941],\n            [9.050808, 45.613941],\n            [9.050808, 45.609445],\n            [9.046312, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.613941],\n            [9.046312, 45.618438],\n            [9.050808, 45.618438],\n            [9.050808, 45.613941],\n            [9.046312, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.618438],\n            [9.046312, 45.622934],\n            [9.050808, 45.622934],\n            [9.050808, 45.618438],\n            [9.046312, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.622934],\n            [9.046312, 45.627431],\n            [9.050808, 45.627431],\n            [9.050808, 45.622934],\n            [9.046312, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.627431],\n            [9.046312, 45.631928],\n            [9.050808, 45.631928],\n            [9.050808, 45.627431],\n            [9.046312, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.046312, 45.631928],\n            [9.046312, 45.636424],\n            [9.050808, 45.636424],\n            [9.050808, 45.631928],\n            [9.046312, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.339648],\n            [9.050808, 45.344145],\n            [9.055305, 45.344145],\n            [9.055305, 45.339648],\n            [9.050808, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.344145],\n            [9.050808, 45.348642],\n            [9.055305, 45.348642],\n            [9.055305, 45.344145],\n            [9.050808, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.348642],\n            [9.050808, 45.353138],\n            [9.055305, 45.353138],\n            [9.055305, 45.348642],\n            [9.050808, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.353138],\n            [9.050808, 45.357635],\n            [9.055305, 45.357635],\n            [9.055305, 45.353138],\n            [9.050808, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.357635],\n            [9.050808, 45.362131],\n            [9.055305, 45.362131],\n            [9.055305, 45.357635],\n            [9.050808, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.362131],\n            [9.050808, 45.366628],\n            [9.055305, 45.366628],\n            [9.055305, 45.362131],\n            [9.050808, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.366628],\n            [9.050808, 45.371125],\n            [9.055305, 45.371125],\n            [9.055305, 45.366628],\n            [9.050808, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.371125],\n            [9.050808, 45.375621],\n            [9.055305, 45.375621],\n            [9.055305, 45.371125],\n            [9.050808, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.375621],\n            [9.050808, 45.380118],\n            [9.055305, 45.380118],\n            [9.055305, 45.375621],\n            [9.050808, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.380118],\n            [9.050808, 45.384614],\n            [9.055305, 45.384614],\n            [9.055305, 45.380118],\n            [9.050808, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.384614],\n            [9.050808, 45.389111],\n            [9.055305, 45.389111],\n            [9.055305, 45.384614],\n            [9.050808, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.389111],\n            [9.050808, 45.393608],\n            [9.055305, 45.393608],\n            [9.055305, 45.389111],\n            [9.050808, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.393608],\n            [9.050808, 45.398104],\n            [9.055305, 45.398104],\n            [9.055305, 45.393608],\n            [9.050808, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.398104],\n            [9.050808, 45.402601],\n            [9.055305, 45.402601],\n            [9.055305, 45.398104],\n            [9.050808, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.402601],\n            [9.050808, 45.407097],\n            [9.055305, 45.407097],\n            [9.055305, 45.402601],\n            [9.050808, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.407097],\n            [9.050808, 45.411594],\n            [9.055305, 45.411594],\n            [9.055305, 45.407097],\n            [9.050808, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.411594],\n            [9.050808, 45.416091],\n            [9.055305, 45.416091],\n            [9.055305, 45.411594],\n            [9.050808, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.416091],\n            [9.050808, 45.420587],\n            [9.055305, 45.420587],\n            [9.055305, 45.416091],\n            [9.050808, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.420587],\n            [9.050808, 45.425084],\n            [9.055305, 45.425084],\n            [9.055305, 45.420587],\n            [9.050808, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.425084],\n            [9.050808, 45.42958],\n            [9.055305, 45.42958],\n            [9.055305, 45.425084],\n            [9.050808, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.42958],\n            [9.050808, 45.434077],\n            [9.055305, 45.434077],\n            [9.055305, 45.42958],\n            [9.050808, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.434077],\n            [9.050808, 45.438574],\n            [9.055305, 45.438574],\n            [9.055305, 45.434077],\n            [9.050808, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.438574],\n            [9.050808, 45.44307],\n            [9.055305, 45.44307],\n            [9.055305, 45.438574],\n            [9.050808, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.44307],\n            [9.050808, 45.447567],\n            [9.055305, 45.447567],\n            [9.055305, 45.44307],\n            [9.050808, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.447567],\n            [9.050808, 45.452063],\n            [9.055305, 45.452063],\n            [9.055305, 45.447567],\n            [9.050808, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.452063],\n            [9.050808, 45.45656],\n            [9.055305, 45.45656],\n            [9.055305, 45.452063],\n            [9.050808, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.45656],\n            [9.050808, 45.461057],\n            [9.055305, 45.461057],\n            [9.055305, 45.45656],\n            [9.050808, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.461057],\n            [9.050808, 45.465553],\n            [9.055305, 45.465553],\n            [9.055305, 45.461057],\n            [9.050808, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.465553],\n            [9.050808, 45.47005],\n            [9.055305, 45.47005],\n            [9.055305, 45.465553],\n            [9.050808, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.47005],\n            [9.050808, 45.474547],\n            [9.055305, 45.474547],\n            [9.055305, 45.47005],\n            [9.050808, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.474547],\n            [9.050808, 45.479043],\n            [9.055305, 45.479043],\n            [9.055305, 45.474547],\n            [9.050808, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.479043],\n            [9.050808, 45.48354],\n            [9.055305, 45.48354],\n            [9.055305, 45.479043],\n            [9.050808, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.48354],\n            [9.050808, 45.488036],\n            [9.055305, 45.488036],\n            [9.055305, 45.48354],\n            [9.050808, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.488036],\n            [9.050808, 45.492533],\n            [9.055305, 45.492533],\n            [9.055305, 45.488036],\n            [9.050808, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.492533],\n            [9.050808, 45.49703],\n            [9.055305, 45.49703],\n            [9.055305, 45.492533],\n            [9.050808, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.49703],\n            [9.050808, 45.501526],\n            [9.055305, 45.501526],\n            [9.055305, 45.49703],\n            [9.050808, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.501526],\n            [9.050808, 45.506023],\n            [9.055305, 45.506023],\n            [9.055305, 45.501526],\n            [9.050808, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.506023],\n            [9.050808, 45.510519],\n            [9.055305, 45.510519],\n            [9.055305, 45.506023],\n            [9.050808, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.510519],\n            [9.050808, 45.515016],\n            [9.055305, 45.515016],\n            [9.055305, 45.510519],\n            [9.050808, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.515016],\n            [9.050808, 45.519513],\n            [9.055305, 45.519513],\n            [9.055305, 45.515016],\n            [9.050808, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.519513],\n            [9.050808, 45.524009],\n            [9.055305, 45.524009],\n            [9.055305, 45.519513],\n            [9.050808, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.524009],\n            [9.050808, 45.528506],\n            [9.055305, 45.528506],\n            [9.055305, 45.524009],\n            [9.050808, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.528506],\n            [9.050808, 45.533002],\n            [9.055305, 45.533002],\n            [9.055305, 45.528506],\n            [9.050808, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.533002],\n            [9.050808, 45.537499],\n            [9.055305, 45.537499],\n            [9.055305, 45.533002],\n            [9.050808, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.537499],\n            [9.050808, 45.541996],\n            [9.055305, 45.541996],\n            [9.055305, 45.537499],\n            [9.050808, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.541996],\n            [9.050808, 45.546492],\n            [9.055305, 45.546492],\n            [9.055305, 45.541996],\n            [9.050808, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.546492],\n            [9.050808, 45.550989],\n            [9.055305, 45.550989],\n            [9.055305, 45.546492],\n            [9.050808, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.550989],\n            [9.050808, 45.555485],\n            [9.055305, 45.555485],\n            [9.055305, 45.550989],\n            [9.050808, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.555485],\n            [9.050808, 45.559982],\n            [9.055305, 45.559982],\n            [9.055305, 45.555485],\n            [9.050808, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.559982],\n            [9.050808, 45.564479],\n            [9.055305, 45.564479],\n            [9.055305, 45.559982],\n            [9.050808, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.564479],\n            [9.050808, 45.568975],\n            [9.055305, 45.568975],\n            [9.055305, 45.564479],\n            [9.050808, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.568975],\n            [9.050808, 45.573472],\n            [9.055305, 45.573472],\n            [9.055305, 45.568975],\n            [9.050808, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.573472],\n            [9.050808, 45.577968],\n            [9.055305, 45.577968],\n            [9.055305, 45.573472],\n            [9.050808, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.577968],\n            [9.050808, 45.582465],\n            [9.055305, 45.582465],\n            [9.055305, 45.577968],\n            [9.050808, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.582465],\n            [9.050808, 45.586962],\n            [9.055305, 45.586962],\n            [9.055305, 45.582465],\n            [9.050808, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.586962],\n            [9.050808, 45.591458],\n            [9.055305, 45.591458],\n            [9.055305, 45.586962],\n            [9.050808, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.591458],\n            [9.050808, 45.595955],\n            [9.055305, 45.595955],\n            [9.055305, 45.591458],\n            [9.050808, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.595955],\n            [9.050808, 45.600451],\n            [9.055305, 45.600451],\n            [9.055305, 45.595955],\n            [9.050808, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.600451],\n            [9.050808, 45.604948],\n            [9.055305, 45.604948],\n            [9.055305, 45.600451],\n            [9.050808, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.604948],\n            [9.050808, 45.609445],\n            [9.055305, 45.609445],\n            [9.055305, 45.604948],\n            [9.050808, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.609445],\n            [9.050808, 45.613941],\n            [9.055305, 45.613941],\n            [9.055305, 45.609445],\n            [9.050808, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.613941],\n            [9.050808, 45.618438],\n            [9.055305, 45.618438],\n            [9.055305, 45.613941],\n            [9.050808, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.618438],\n            [9.050808, 45.622934],\n            [9.055305, 45.622934],\n            [9.055305, 45.618438],\n            [9.050808, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.622934],\n            [9.050808, 45.627431],\n            [9.055305, 45.627431],\n            [9.055305, 45.622934],\n            [9.050808, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.627431],\n            [9.050808, 45.631928],\n            [9.055305, 45.631928],\n            [9.055305, 45.627431],\n            [9.050808, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.050808, 45.631928],\n            [9.050808, 45.636424],\n            [9.055305, 45.636424],\n            [9.055305, 45.631928],\n            [9.050808, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.339648],\n            [9.055305, 45.344145],\n            [9.059801, 45.344145],\n            [9.059801, 45.339648],\n            [9.055305, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.344145],\n            [9.055305, 45.348642],\n            [9.059801, 45.348642],\n            [9.059801, 45.344145],\n            [9.055305, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.348642],\n            [9.055305, 45.353138],\n            [9.059801, 45.353138],\n            [9.059801, 45.348642],\n            [9.055305, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.353138],\n            [9.055305, 45.357635],\n            [9.059801, 45.357635],\n            [9.059801, 45.353138],\n            [9.055305, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.357635],\n            [9.055305, 45.362131],\n            [9.059801, 45.362131],\n            [9.059801, 45.357635],\n            [9.055305, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.362131],\n            [9.055305, 45.366628],\n            [9.059801, 45.366628],\n            [9.059801, 45.362131],\n            [9.055305, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.366628],\n            [9.055305, 45.371125],\n            [9.059801, 45.371125],\n            [9.059801, 45.366628],\n            [9.055305, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.371125],\n            [9.055305, 45.375621],\n            [9.059801, 45.375621],\n            [9.059801, 45.371125],\n            [9.055305, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.375621],\n            [9.055305, 45.380118],\n            [9.059801, 45.380118],\n            [9.059801, 45.375621],\n            [9.055305, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.380118],\n            [9.055305, 45.384614],\n            [9.059801, 45.384614],\n            [9.059801, 45.380118],\n            [9.055305, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.384614],\n            [9.055305, 45.389111],\n            [9.059801, 45.389111],\n            [9.059801, 45.384614],\n            [9.055305, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.389111],\n            [9.055305, 45.393608],\n            [9.059801, 45.393608],\n            [9.059801, 45.389111],\n            [9.055305, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.393608],\n            [9.055305, 45.398104],\n            [9.059801, 45.398104],\n            [9.059801, 45.393608],\n            [9.055305, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.398104],\n            [9.055305, 45.402601],\n            [9.059801, 45.402601],\n            [9.059801, 45.398104],\n            [9.055305, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.402601],\n            [9.055305, 45.407097],\n            [9.059801, 45.407097],\n            [9.059801, 45.402601],\n            [9.055305, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.407097],\n            [9.055305, 45.411594],\n            [9.059801, 45.411594],\n            [9.059801, 45.407097],\n            [9.055305, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.411594],\n            [9.055305, 45.416091],\n            [9.059801, 45.416091],\n            [9.059801, 45.411594],\n            [9.055305, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.416091],\n            [9.055305, 45.420587],\n            [9.059801, 45.420587],\n            [9.059801, 45.416091],\n            [9.055305, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.420587],\n            [9.055305, 45.425084],\n            [9.059801, 45.425084],\n            [9.059801, 45.420587],\n            [9.055305, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.425084],\n            [9.055305, 45.42958],\n            [9.059801, 45.42958],\n            [9.059801, 45.425084],\n            [9.055305, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.42958],\n            [9.055305, 45.434077],\n            [9.059801, 45.434077],\n            [9.059801, 45.42958],\n            [9.055305, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.434077],\n            [9.055305, 45.438574],\n            [9.059801, 45.438574],\n            [9.059801, 45.434077],\n            [9.055305, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.438574],\n            [9.055305, 45.44307],\n            [9.059801, 45.44307],\n            [9.059801, 45.438574],\n            [9.055305, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.44307],\n            [9.055305, 45.447567],\n            [9.059801, 45.447567],\n            [9.059801, 45.44307],\n            [9.055305, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.447567],\n            [9.055305, 45.452063],\n            [9.059801, 45.452063],\n            [9.059801, 45.447567],\n            [9.055305, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.452063],\n            [9.055305, 45.45656],\n            [9.059801, 45.45656],\n            [9.059801, 45.452063],\n            [9.055305, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.45656],\n            [9.055305, 45.461057],\n            [9.059801, 45.461057],\n            [9.059801, 45.45656],\n            [9.055305, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.461057],\n            [9.055305, 45.465553],\n            [9.059801, 45.465553],\n            [9.059801, 45.461057],\n            [9.055305, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.465553],\n            [9.055305, 45.47005],\n            [9.059801, 45.47005],\n            [9.059801, 45.465553],\n            [9.055305, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.47005],\n            [9.055305, 45.474547],\n            [9.059801, 45.474547],\n            [9.059801, 45.47005],\n            [9.055305, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.474547],\n            [9.055305, 45.479043],\n            [9.059801, 45.479043],\n            [9.059801, 45.474547],\n            [9.055305, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.479043],\n            [9.055305, 45.48354],\n            [9.059801, 45.48354],\n            [9.059801, 45.479043],\n            [9.055305, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.48354],\n            [9.055305, 45.488036],\n            [9.059801, 45.488036],\n            [9.059801, 45.48354],\n            [9.055305, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.488036],\n            [9.055305, 45.492533],\n            [9.059801, 45.492533],\n            [9.059801, 45.488036],\n            [9.055305, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.492533],\n            [9.055305, 45.49703],\n            [9.059801, 45.49703],\n            [9.059801, 45.492533],\n            [9.055305, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.49703],\n            [9.055305, 45.501526],\n            [9.059801, 45.501526],\n            [9.059801, 45.49703],\n            [9.055305, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.501526],\n            [9.055305, 45.506023],\n            [9.059801, 45.506023],\n            [9.059801, 45.501526],\n            [9.055305, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.506023],\n            [9.055305, 45.510519],\n            [9.059801, 45.510519],\n            [9.059801, 45.506023],\n            [9.055305, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.510519],\n            [9.055305, 45.515016],\n            [9.059801, 45.515016],\n            [9.059801, 45.510519],\n            [9.055305, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.515016],\n            [9.055305, 45.519513],\n            [9.059801, 45.519513],\n            [9.059801, 45.515016],\n            [9.055305, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.519513],\n            [9.055305, 45.524009],\n            [9.059801, 45.524009],\n            [9.059801, 45.519513],\n            [9.055305, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.524009],\n            [9.055305, 45.528506],\n            [9.059801, 45.528506],\n            [9.059801, 45.524009],\n            [9.055305, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.528506],\n            [9.055305, 45.533002],\n            [9.059801, 45.533002],\n            [9.059801, 45.528506],\n            [9.055305, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.533002],\n            [9.055305, 45.537499],\n            [9.059801, 45.537499],\n            [9.059801, 45.533002],\n            [9.055305, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.537499],\n            [9.055305, 45.541996],\n            [9.059801, 45.541996],\n            [9.059801, 45.537499],\n            [9.055305, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.541996],\n            [9.055305, 45.546492],\n            [9.059801, 45.546492],\n            [9.059801, 45.541996],\n            [9.055305, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.546492],\n            [9.055305, 45.550989],\n            [9.059801, 45.550989],\n            [9.059801, 45.546492],\n            [9.055305, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.550989],\n            [9.055305, 45.555485],\n            [9.059801, 45.555485],\n            [9.059801, 45.550989],\n            [9.055305, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.555485],\n            [9.055305, 45.559982],\n            [9.059801, 45.559982],\n            [9.059801, 45.555485],\n            [9.055305, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.559982],\n            [9.055305, 45.564479],\n            [9.059801, 45.564479],\n            [9.059801, 45.559982],\n            [9.055305, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.564479],\n            [9.055305, 45.568975],\n            [9.059801, 45.568975],\n            [9.059801, 45.564479],\n            [9.055305, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.568975],\n            [9.055305, 45.573472],\n            [9.059801, 45.573472],\n            [9.059801, 45.568975],\n            [9.055305, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.573472],\n            [9.055305, 45.577968],\n            [9.059801, 45.577968],\n            [9.059801, 45.573472],\n            [9.055305, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.577968],\n            [9.055305, 45.582465],\n            [9.059801, 45.582465],\n            [9.059801, 45.577968],\n            [9.055305, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.582465],\n            [9.055305, 45.586962],\n            [9.059801, 45.586962],\n            [9.059801, 45.582465],\n            [9.055305, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.586962],\n            [9.055305, 45.591458],\n            [9.059801, 45.591458],\n            [9.059801, 45.586962],\n            [9.055305, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.591458],\n            [9.055305, 45.595955],\n            [9.059801, 45.595955],\n            [9.059801, 45.591458],\n            [9.055305, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.595955],\n            [9.055305, 45.600451],\n            [9.059801, 45.600451],\n            [9.059801, 45.595955],\n            [9.055305, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.600451],\n            [9.055305, 45.604948],\n            [9.059801, 45.604948],\n            [9.059801, 45.600451],\n            [9.055305, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.604948],\n            [9.055305, 45.609445],\n            [9.059801, 45.609445],\n            [9.059801, 45.604948],\n            [9.055305, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.609445],\n            [9.055305, 45.613941],\n            [9.059801, 45.613941],\n            [9.059801, 45.609445],\n            [9.055305, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.613941],\n            [9.055305, 45.618438],\n            [9.059801, 45.618438],\n            [9.059801, 45.613941],\n            [9.055305, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.618438],\n            [9.055305, 45.622934],\n            [9.059801, 45.622934],\n            [9.059801, 45.618438],\n            [9.055305, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.622934],\n            [9.055305, 45.627431],\n            [9.059801, 45.627431],\n            [9.059801, 45.622934],\n            [9.055305, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.627431],\n            [9.055305, 45.631928],\n            [9.059801, 45.631928],\n            [9.059801, 45.627431],\n            [9.055305, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.055305, 45.631928],\n            [9.055305, 45.636424],\n            [9.059801, 45.636424],\n            [9.059801, 45.631928],\n            [9.055305, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.339648],\n            [9.059801, 45.344145],\n            [9.064298, 45.344145],\n            [9.064298, 45.339648],\n            [9.059801, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.344145],\n            [9.059801, 45.348642],\n            [9.064298, 45.348642],\n            [9.064298, 45.344145],\n            [9.059801, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.348642],\n            [9.059801, 45.353138],\n            [9.064298, 45.353138],\n            [9.064298, 45.348642],\n            [9.059801, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.353138],\n            [9.059801, 45.357635],\n            [9.064298, 45.357635],\n            [9.064298, 45.353138],\n            [9.059801, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.357635],\n            [9.059801, 45.362131],\n            [9.064298, 45.362131],\n            [9.064298, 45.357635],\n            [9.059801, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.362131],\n            [9.059801, 45.366628],\n            [9.064298, 45.366628],\n            [9.064298, 45.362131],\n            [9.059801, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.366628],\n            [9.059801, 45.371125],\n            [9.064298, 45.371125],\n            [9.064298, 45.366628],\n            [9.059801, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.371125],\n            [9.059801, 45.375621],\n            [9.064298, 45.375621],\n            [9.064298, 45.371125],\n            [9.059801, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.375621],\n            [9.059801, 45.380118],\n            [9.064298, 45.380118],\n            [9.064298, 45.375621],\n            [9.059801, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.380118],\n            [9.059801, 45.384614],\n            [9.064298, 45.384614],\n            [9.064298, 45.380118],\n            [9.059801, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.384614],\n            [9.059801, 45.389111],\n            [9.064298, 45.389111],\n            [9.064298, 45.384614],\n            [9.059801, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.389111],\n            [9.059801, 45.393608],\n            [9.064298, 45.393608],\n            [9.064298, 45.389111],\n            [9.059801, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.393608],\n            [9.059801, 45.398104],\n            [9.064298, 45.398104],\n            [9.064298, 45.393608],\n            [9.059801, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.398104],\n            [9.059801, 45.402601],\n            [9.064298, 45.402601],\n            [9.064298, 45.398104],\n            [9.059801, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.402601],\n            [9.059801, 45.407097],\n            [9.064298, 45.407097],\n            [9.064298, 45.402601],\n            [9.059801, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.407097],\n            [9.059801, 45.411594],\n            [9.064298, 45.411594],\n            [9.064298, 45.407097],\n            [9.059801, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.411594],\n            [9.059801, 45.416091],\n            [9.064298, 45.416091],\n            [9.064298, 45.411594],\n            [9.059801, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.416091],\n            [9.059801, 45.420587],\n            [9.064298, 45.420587],\n            [9.064298, 45.416091],\n            [9.059801, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.420587],\n            [9.059801, 45.425084],\n            [9.064298, 45.425084],\n            [9.064298, 45.420587],\n            [9.059801, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.425084],\n            [9.059801, 45.42958],\n            [9.064298, 45.42958],\n            [9.064298, 45.425084],\n            [9.059801, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.42958],\n            [9.059801, 45.434077],\n            [9.064298, 45.434077],\n            [9.064298, 45.42958],\n            [9.059801, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.434077],\n            [9.059801, 45.438574],\n            [9.064298, 45.438574],\n            [9.064298, 45.434077],\n            [9.059801, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.438574],\n            [9.059801, 45.44307],\n            [9.064298, 45.44307],\n            [9.064298, 45.438574],\n            [9.059801, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.44307],\n            [9.059801, 45.447567],\n            [9.064298, 45.447567],\n            [9.064298, 45.44307],\n            [9.059801, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.447567],\n            [9.059801, 45.452063],\n            [9.064298, 45.452063],\n            [9.064298, 45.447567],\n            [9.059801, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.452063],\n            [9.059801, 45.45656],\n            [9.064298, 45.45656],\n            [9.064298, 45.452063],\n            [9.059801, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.45656],\n            [9.059801, 45.461057],\n            [9.064298, 45.461057],\n            [9.064298, 45.45656],\n            [9.059801, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.461057],\n            [9.059801, 45.465553],\n            [9.064298, 45.465553],\n            [9.064298, 45.461057],\n            [9.059801, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.465553],\n            [9.059801, 45.47005],\n            [9.064298, 45.47005],\n            [9.064298, 45.465553],\n            [9.059801, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.47005],\n            [9.059801, 45.474547],\n            [9.064298, 45.474547],\n            [9.064298, 45.47005],\n            [9.059801, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.474547],\n            [9.059801, 45.479043],\n            [9.064298, 45.479043],\n            [9.064298, 45.474547],\n            [9.059801, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.479043],\n            [9.059801, 45.48354],\n            [9.064298, 45.48354],\n            [9.064298, 45.479043],\n            [9.059801, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.48354],\n            [9.059801, 45.488036],\n            [9.064298, 45.488036],\n            [9.064298, 45.48354],\n            [9.059801, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.488036],\n            [9.059801, 45.492533],\n            [9.064298, 45.492533],\n            [9.064298, 45.488036],\n            [9.059801, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.492533],\n            [9.059801, 45.49703],\n            [9.064298, 45.49703],\n            [9.064298, 45.492533],\n            [9.059801, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.49703],\n            [9.059801, 45.501526],\n            [9.064298, 45.501526],\n            [9.064298, 45.49703],\n            [9.059801, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.501526],\n            [9.059801, 45.506023],\n            [9.064298, 45.506023],\n            [9.064298, 45.501526],\n            [9.059801, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.506023],\n            [9.059801, 45.510519],\n            [9.064298, 45.510519],\n            [9.064298, 45.506023],\n            [9.059801, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.510519],\n            [9.059801, 45.515016],\n            [9.064298, 45.515016],\n            [9.064298, 45.510519],\n            [9.059801, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.515016],\n            [9.059801, 45.519513],\n            [9.064298, 45.519513],\n            [9.064298, 45.515016],\n            [9.059801, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.519513],\n            [9.059801, 45.524009],\n            [9.064298, 45.524009],\n            [9.064298, 45.519513],\n            [9.059801, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.524009],\n            [9.059801, 45.528506],\n            [9.064298, 45.528506],\n            [9.064298, 45.524009],\n            [9.059801, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.528506],\n            [9.059801, 45.533002],\n            [9.064298, 45.533002],\n            [9.064298, 45.528506],\n            [9.059801, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.533002],\n            [9.059801, 45.537499],\n            [9.064298, 45.537499],\n            [9.064298, 45.533002],\n            [9.059801, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.537499],\n            [9.059801, 45.541996],\n            [9.064298, 45.541996],\n            [9.064298, 45.537499],\n            [9.059801, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.541996],\n            [9.059801, 45.546492],\n            [9.064298, 45.546492],\n            [9.064298, 45.541996],\n            [9.059801, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.546492],\n            [9.059801, 45.550989],\n            [9.064298, 45.550989],\n            [9.064298, 45.546492],\n            [9.059801, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.550989],\n            [9.059801, 45.555485],\n            [9.064298, 45.555485],\n            [9.064298, 45.550989],\n            [9.059801, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.555485],\n            [9.059801, 45.559982],\n            [9.064298, 45.559982],\n            [9.064298, 45.555485],\n            [9.059801, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.559982],\n            [9.059801, 45.564479],\n            [9.064298, 45.564479],\n            [9.064298, 45.559982],\n            [9.059801, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.564479],\n            [9.059801, 45.568975],\n            [9.064298, 45.568975],\n            [9.064298, 45.564479],\n            [9.059801, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.568975],\n            [9.059801, 45.573472],\n            [9.064298, 45.573472],\n            [9.064298, 45.568975],\n            [9.059801, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.573472],\n            [9.059801, 45.577968],\n            [9.064298, 45.577968],\n            [9.064298, 45.573472],\n            [9.059801, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.577968],\n            [9.059801, 45.582465],\n            [9.064298, 45.582465],\n            [9.064298, 45.577968],\n            [9.059801, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.582465],\n            [9.059801, 45.586962],\n            [9.064298, 45.586962],\n            [9.064298, 45.582465],\n            [9.059801, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.586962],\n            [9.059801, 45.591458],\n            [9.064298, 45.591458],\n            [9.064298, 45.586962],\n            [9.059801, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.591458],\n            [9.059801, 45.595955],\n            [9.064298, 45.595955],\n            [9.064298, 45.591458],\n            [9.059801, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.595955],\n            [9.059801, 45.600451],\n            [9.064298, 45.600451],\n            [9.064298, 45.595955],\n            [9.059801, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.600451],\n            [9.059801, 45.604948],\n            [9.064298, 45.604948],\n            [9.064298, 45.600451],\n            [9.059801, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.604948],\n            [9.059801, 45.609445],\n            [9.064298, 45.609445],\n            [9.064298, 45.604948],\n            [9.059801, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.609445],\n            [9.059801, 45.613941],\n            [9.064298, 45.613941],\n            [9.064298, 45.609445],\n            [9.059801, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.613941],\n            [9.059801, 45.618438],\n            [9.064298, 45.618438],\n            [9.064298, 45.613941],\n            [9.059801, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.618438],\n            [9.059801, 45.622934],\n            [9.064298, 45.622934],\n            [9.064298, 45.618438],\n            [9.059801, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.622934],\n            [9.059801, 45.627431],\n            [9.064298, 45.627431],\n            [9.064298, 45.622934],\n            [9.059801, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.627431],\n            [9.059801, 45.631928],\n            [9.064298, 45.631928],\n            [9.064298, 45.627431],\n            [9.059801, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.059801, 45.631928],\n            [9.059801, 45.636424],\n            [9.064298, 45.636424],\n            [9.064298, 45.631928],\n            [9.059801, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.339648],\n            [9.064298, 45.344145],\n            [9.068795, 45.344145],\n            [9.068795, 45.339648],\n            [9.064298, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.344145],\n            [9.064298, 45.348642],\n            [9.068795, 45.348642],\n            [9.068795, 45.344145],\n            [9.064298, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.348642],\n            [9.064298, 45.353138],\n            [9.068795, 45.353138],\n            [9.068795, 45.348642],\n            [9.064298, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.353138],\n            [9.064298, 45.357635],\n            [9.068795, 45.357635],\n            [9.068795, 45.353138],\n            [9.064298, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.357635],\n            [9.064298, 45.362131],\n            [9.068795, 45.362131],\n            [9.068795, 45.357635],\n            [9.064298, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.362131],\n            [9.064298, 45.366628],\n            [9.068795, 45.366628],\n            [9.068795, 45.362131],\n            [9.064298, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.366628],\n            [9.064298, 45.371125],\n            [9.068795, 45.371125],\n            [9.068795, 45.366628],\n            [9.064298, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.371125],\n            [9.064298, 45.375621],\n            [9.068795, 45.375621],\n            [9.068795, 45.371125],\n            [9.064298, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.375621],\n            [9.064298, 45.380118],\n            [9.068795, 45.380118],\n            [9.068795, 45.375621],\n            [9.064298, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.380118],\n            [9.064298, 45.384614],\n            [9.068795, 45.384614],\n            [9.068795, 45.380118],\n            [9.064298, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.384614],\n            [9.064298, 45.389111],\n            [9.068795, 45.389111],\n            [9.068795, 45.384614],\n            [9.064298, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.389111],\n            [9.064298, 45.393608],\n            [9.068795, 45.393608],\n            [9.068795, 45.389111],\n            [9.064298, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.393608],\n            [9.064298, 45.398104],\n            [9.068795, 45.398104],\n            [9.068795, 45.393608],\n            [9.064298, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.398104],\n            [9.064298, 45.402601],\n            [9.068795, 45.402601],\n            [9.068795, 45.398104],\n            [9.064298, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.402601],\n            [9.064298, 45.407097],\n            [9.068795, 45.407097],\n            [9.068795, 45.402601],\n            [9.064298, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.407097],\n            [9.064298, 45.411594],\n            [9.068795, 45.411594],\n            [9.068795, 45.407097],\n            [9.064298, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.411594],\n            [9.064298, 45.416091],\n            [9.068795, 45.416091],\n            [9.068795, 45.411594],\n            [9.064298, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.416091],\n            [9.064298, 45.420587],\n            [9.068795, 45.420587],\n            [9.068795, 45.416091],\n            [9.064298, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.420587],\n            [9.064298, 45.425084],\n            [9.068795, 45.425084],\n            [9.068795, 45.420587],\n            [9.064298, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.425084],\n            [9.064298, 45.42958],\n            [9.068795, 45.42958],\n            [9.068795, 45.425084],\n            [9.064298, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.42958],\n            [9.064298, 45.434077],\n            [9.068795, 45.434077],\n            [9.068795, 45.42958],\n            [9.064298, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.434077],\n            [9.064298, 45.438574],\n            [9.068795, 45.438574],\n            [9.068795, 45.434077],\n            [9.064298, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.438574],\n            [9.064298, 45.44307],\n            [9.068795, 45.44307],\n            [9.068795, 45.438574],\n            [9.064298, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.44307],\n            [9.064298, 45.447567],\n            [9.068795, 45.447567],\n            [9.068795, 45.44307],\n            [9.064298, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.447567],\n            [9.064298, 45.452063],\n            [9.068795, 45.452063],\n            [9.068795, 45.447567],\n            [9.064298, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.452063],\n            [9.064298, 45.45656],\n            [9.068795, 45.45656],\n            [9.068795, 45.452063],\n            [9.064298, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.45656],\n            [9.064298, 45.461057],\n            [9.068795, 45.461057],\n            [9.068795, 45.45656],\n            [9.064298, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.461057],\n            [9.064298, 45.465553],\n            [9.068795, 45.465553],\n            [9.068795, 45.461057],\n            [9.064298, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.465553],\n            [9.064298, 45.47005],\n            [9.068795, 45.47005],\n            [9.068795, 45.465553],\n            [9.064298, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.47005],\n            [9.064298, 45.474547],\n            [9.068795, 45.474547],\n            [9.068795, 45.47005],\n            [9.064298, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.474547],\n            [9.064298, 45.479043],\n            [9.068795, 45.479043],\n            [9.068795, 45.474547],\n            [9.064298, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.479043],\n            [9.064298, 45.48354],\n            [9.068795, 45.48354],\n            [9.068795, 45.479043],\n            [9.064298, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.48354],\n            [9.064298, 45.488036],\n            [9.068795, 45.488036],\n            [9.068795, 45.48354],\n            [9.064298, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.488036],\n            [9.064298, 45.492533],\n            [9.068795, 45.492533],\n            [9.068795, 45.488036],\n            [9.064298, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.492533],\n            [9.064298, 45.49703],\n            [9.068795, 45.49703],\n            [9.068795, 45.492533],\n            [9.064298, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.49703],\n            [9.064298, 45.501526],\n            [9.068795, 45.501526],\n            [9.068795, 45.49703],\n            [9.064298, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.501526],\n            [9.064298, 45.506023],\n            [9.068795, 45.506023],\n            [9.068795, 45.501526],\n            [9.064298, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.506023],\n            [9.064298, 45.510519],\n            [9.068795, 45.510519],\n            [9.068795, 45.506023],\n            [9.064298, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.510519],\n            [9.064298, 45.515016],\n            [9.068795, 45.515016],\n            [9.068795, 45.510519],\n            [9.064298, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.515016],\n            [9.064298, 45.519513],\n            [9.068795, 45.519513],\n            [9.068795, 45.515016],\n            [9.064298, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.519513],\n            [9.064298, 45.524009],\n            [9.068795, 45.524009],\n            [9.068795, 45.519513],\n            [9.064298, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.524009],\n            [9.064298, 45.528506],\n            [9.068795, 45.528506],\n            [9.068795, 45.524009],\n            [9.064298, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.528506],\n            [9.064298, 45.533002],\n            [9.068795, 45.533002],\n            [9.068795, 45.528506],\n            [9.064298, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.533002],\n            [9.064298, 45.537499],\n            [9.068795, 45.537499],\n            [9.068795, 45.533002],\n            [9.064298, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.537499],\n            [9.064298, 45.541996],\n            [9.068795, 45.541996],\n            [9.068795, 45.537499],\n            [9.064298, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.541996],\n            [9.064298, 45.546492],\n            [9.068795, 45.546492],\n            [9.068795, 45.541996],\n            [9.064298, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.546492],\n            [9.064298, 45.550989],\n            [9.068795, 45.550989],\n            [9.068795, 45.546492],\n            [9.064298, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.550989],\n            [9.064298, 45.555485],\n            [9.068795, 45.555485],\n            [9.068795, 45.550989],\n            [9.064298, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.555485],\n            [9.064298, 45.559982],\n            [9.068795, 45.559982],\n            [9.068795, 45.555485],\n            [9.064298, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.559982],\n            [9.064298, 45.564479],\n            [9.068795, 45.564479],\n            [9.068795, 45.559982],\n            [9.064298, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.564479],\n            [9.064298, 45.568975],\n            [9.068795, 45.568975],\n            [9.068795, 45.564479],\n            [9.064298, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.568975],\n            [9.064298, 45.573472],\n            [9.068795, 45.573472],\n            [9.068795, 45.568975],\n            [9.064298, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.573472],\n            [9.064298, 45.577968],\n            [9.068795, 45.577968],\n            [9.068795, 45.573472],\n            [9.064298, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.577968],\n            [9.064298, 45.582465],\n            [9.068795, 45.582465],\n            [9.068795, 45.577968],\n            [9.064298, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.582465],\n            [9.064298, 45.586962],\n            [9.068795, 45.586962],\n            [9.068795, 45.582465],\n            [9.064298, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.586962],\n            [9.064298, 45.591458],\n            [9.068795, 45.591458],\n            [9.068795, 45.586962],\n            [9.064298, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.591458],\n            [9.064298, 45.595955],\n            [9.068795, 45.595955],\n            [9.068795, 45.591458],\n            [9.064298, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.595955],\n            [9.064298, 45.600451],\n            [9.068795, 45.600451],\n            [9.068795, 45.595955],\n            [9.064298, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.600451],\n            [9.064298, 45.604948],\n            [9.068795, 45.604948],\n            [9.068795, 45.600451],\n            [9.064298, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.604948],\n            [9.064298, 45.609445],\n            [9.068795, 45.609445],\n            [9.068795, 45.604948],\n            [9.064298, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.609445],\n            [9.064298, 45.613941],\n            [9.068795, 45.613941],\n            [9.068795, 45.609445],\n            [9.064298, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.613941],\n            [9.064298, 45.618438],\n            [9.068795, 45.618438],\n            [9.068795, 45.613941],\n            [9.064298, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.618438],\n            [9.064298, 45.622934],\n            [9.068795, 45.622934],\n            [9.068795, 45.618438],\n            [9.064298, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.622934],\n            [9.064298, 45.627431],\n            [9.068795, 45.627431],\n            [9.068795, 45.622934],\n            [9.064298, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.627431],\n            [9.064298, 45.631928],\n            [9.068795, 45.631928],\n            [9.068795, 45.627431],\n            [9.064298, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.064298, 45.631928],\n            [9.064298, 45.636424],\n            [9.068795, 45.636424],\n            [9.068795, 45.631928],\n            [9.064298, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.339648],\n            [9.068795, 45.344145],\n            [9.073291, 45.344145],\n            [9.073291, 45.339648],\n            [9.068795, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.344145],\n            [9.068795, 45.348642],\n            [9.073291, 45.348642],\n            [9.073291, 45.344145],\n            [9.068795, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.348642],\n            [9.068795, 45.353138],\n            [9.073291, 45.353138],\n            [9.073291, 45.348642],\n            [9.068795, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.353138],\n            [9.068795, 45.357635],\n            [9.073291, 45.357635],\n            [9.073291, 45.353138],\n            [9.068795, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.357635],\n            [9.068795, 45.362131],\n            [9.073291, 45.362131],\n            [9.073291, 45.357635],\n            [9.068795, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.362131],\n            [9.068795, 45.366628],\n            [9.073291, 45.366628],\n            [9.073291, 45.362131],\n            [9.068795, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.366628],\n            [9.068795, 45.371125],\n            [9.073291, 45.371125],\n            [9.073291, 45.366628],\n            [9.068795, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.371125],\n            [9.068795, 45.375621],\n            [9.073291, 45.375621],\n            [9.073291, 45.371125],\n            [9.068795, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.375621],\n            [9.068795, 45.380118],\n            [9.073291, 45.380118],\n            [9.073291, 45.375621],\n            [9.068795, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.380118],\n            [9.068795, 45.384614],\n            [9.073291, 45.384614],\n            [9.073291, 45.380118],\n            [9.068795, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.384614],\n            [9.068795, 45.389111],\n            [9.073291, 45.389111],\n            [9.073291, 45.384614],\n            [9.068795, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.389111],\n            [9.068795, 45.393608],\n            [9.073291, 45.393608],\n            [9.073291, 45.389111],\n            [9.068795, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.393608],\n            [9.068795, 45.398104],\n            [9.073291, 45.398104],\n            [9.073291, 45.393608],\n            [9.068795, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.398104],\n            [9.068795, 45.402601],\n            [9.073291, 45.402601],\n            [9.073291, 45.398104],\n            [9.068795, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.402601],\n            [9.068795, 45.407097],\n            [9.073291, 45.407097],\n            [9.073291, 45.402601],\n            [9.068795, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.407097],\n            [9.068795, 45.411594],\n            [9.073291, 45.411594],\n            [9.073291, 45.407097],\n            [9.068795, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.411594],\n            [9.068795, 45.416091],\n            [9.073291, 45.416091],\n            [9.073291, 45.411594],\n            [9.068795, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.416091],\n            [9.068795, 45.420587],\n            [9.073291, 45.420587],\n            [9.073291, 45.416091],\n            [9.068795, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.420587],\n            [9.068795, 45.425084],\n            [9.073291, 45.425084],\n            [9.073291, 45.420587],\n            [9.068795, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.425084],\n            [9.068795, 45.42958],\n            [9.073291, 45.42958],\n            [9.073291, 45.425084],\n            [9.068795, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.42958],\n            [9.068795, 45.434077],\n            [9.073291, 45.434077],\n            [9.073291, 45.42958],\n            [9.068795, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.434077],\n            [9.068795, 45.438574],\n            [9.073291, 45.438574],\n            [9.073291, 45.434077],\n            [9.068795, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.438574],\n            [9.068795, 45.44307],\n            [9.073291, 45.44307],\n            [9.073291, 45.438574],\n            [9.068795, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.44307],\n            [9.068795, 45.447567],\n            [9.073291, 45.447567],\n            [9.073291, 45.44307],\n            [9.068795, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.447567],\n            [9.068795, 45.452063],\n            [9.073291, 45.452063],\n            [9.073291, 45.447567],\n            [9.068795, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.452063],\n            [9.068795, 45.45656],\n            [9.073291, 45.45656],\n            [9.073291, 45.452063],\n            [9.068795, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.45656],\n            [9.068795, 45.461057],\n            [9.073291, 45.461057],\n            [9.073291, 45.45656],\n            [9.068795, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.461057],\n            [9.068795, 45.465553],\n            [9.073291, 45.465553],\n            [9.073291, 45.461057],\n            [9.068795, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.465553],\n            [9.068795, 45.47005],\n            [9.073291, 45.47005],\n            [9.073291, 45.465553],\n            [9.068795, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.47005],\n            [9.068795, 45.474547],\n            [9.073291, 45.474547],\n            [9.073291, 45.47005],\n            [9.068795, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.474547],\n            [9.068795, 45.479043],\n            [9.073291, 45.479043],\n            [9.073291, 45.474547],\n            [9.068795, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.479043],\n            [9.068795, 45.48354],\n            [9.073291, 45.48354],\n            [9.073291, 45.479043],\n            [9.068795, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.48354],\n            [9.068795, 45.488036],\n            [9.073291, 45.488036],\n            [9.073291, 45.48354],\n            [9.068795, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.488036],\n            [9.068795, 45.492533],\n            [9.073291, 45.492533],\n            [9.073291, 45.488036],\n            [9.068795, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.492533],\n            [9.068795, 45.49703],\n            [9.073291, 45.49703],\n            [9.073291, 45.492533],\n            [9.068795, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.49703],\n            [9.068795, 45.501526],\n            [9.073291, 45.501526],\n            [9.073291, 45.49703],\n            [9.068795, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.501526],\n            [9.068795, 45.506023],\n            [9.073291, 45.506023],\n            [9.073291, 45.501526],\n            [9.068795, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.506023],\n            [9.068795, 45.510519],\n            [9.073291, 45.510519],\n            [9.073291, 45.506023],\n            [9.068795, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.510519],\n            [9.068795, 45.515016],\n            [9.073291, 45.515016],\n            [9.073291, 45.510519],\n            [9.068795, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.515016],\n            [9.068795, 45.519513],\n            [9.073291, 45.519513],\n            [9.073291, 45.515016],\n            [9.068795, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.519513],\n            [9.068795, 45.524009],\n            [9.073291, 45.524009],\n            [9.073291, 45.519513],\n            [9.068795, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.524009],\n            [9.068795, 45.528506],\n            [9.073291, 45.528506],\n            [9.073291, 45.524009],\n            [9.068795, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.528506],\n            [9.068795, 45.533002],\n            [9.073291, 45.533002],\n            [9.073291, 45.528506],\n            [9.068795, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.533002],\n            [9.068795, 45.537499],\n            [9.073291, 45.537499],\n            [9.073291, 45.533002],\n            [9.068795, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.537499],\n            [9.068795, 45.541996],\n            [9.073291, 45.541996],\n            [9.073291, 45.537499],\n            [9.068795, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.541996],\n            [9.068795, 45.546492],\n            [9.073291, 45.546492],\n            [9.073291, 45.541996],\n            [9.068795, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.546492],\n            [9.068795, 45.550989],\n            [9.073291, 45.550989],\n            [9.073291, 45.546492],\n            [9.068795, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.550989],\n            [9.068795, 45.555485],\n            [9.073291, 45.555485],\n            [9.073291, 45.550989],\n            [9.068795, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.555485],\n            [9.068795, 45.559982],\n            [9.073291, 45.559982],\n            [9.073291, 45.555485],\n            [9.068795, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.559982],\n            [9.068795, 45.564479],\n            [9.073291, 45.564479],\n            [9.073291, 45.559982],\n            [9.068795, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.564479],\n            [9.068795, 45.568975],\n            [9.073291, 45.568975],\n            [9.073291, 45.564479],\n            [9.068795, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.568975],\n            [9.068795, 45.573472],\n            [9.073291, 45.573472],\n            [9.073291, 45.568975],\n            [9.068795, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.573472],\n            [9.068795, 45.577968],\n            [9.073291, 45.577968],\n            [9.073291, 45.573472],\n            [9.068795, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.577968],\n            [9.068795, 45.582465],\n            [9.073291, 45.582465],\n            [9.073291, 45.577968],\n            [9.068795, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.582465],\n            [9.068795, 45.586962],\n            [9.073291, 45.586962],\n            [9.073291, 45.582465],\n            [9.068795, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.586962],\n            [9.068795, 45.591458],\n            [9.073291, 45.591458],\n            [9.073291, 45.586962],\n            [9.068795, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.591458],\n            [9.068795, 45.595955],\n            [9.073291, 45.595955],\n            [9.073291, 45.591458],\n            [9.068795, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.595955],\n            [9.068795, 45.600451],\n            [9.073291, 45.600451],\n            [9.073291, 45.595955],\n            [9.068795, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.600451],\n            [9.068795, 45.604948],\n            [9.073291, 45.604948],\n            [9.073291, 45.600451],\n            [9.068795, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.604948],\n            [9.068795, 45.609445],\n            [9.073291, 45.609445],\n            [9.073291, 45.604948],\n            [9.068795, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.609445],\n            [9.068795, 45.613941],\n            [9.073291, 45.613941],\n            [9.073291, 45.609445],\n            [9.068795, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.613941],\n            [9.068795, 45.618438],\n            [9.073291, 45.618438],\n            [9.073291, 45.613941],\n            [9.068795, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.618438],\n            [9.068795, 45.622934],\n            [9.073291, 45.622934],\n            [9.073291, 45.618438],\n            [9.068795, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.622934],\n            [9.068795, 45.627431],\n            [9.073291, 45.627431],\n            [9.073291, 45.622934],\n            [9.068795, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.627431],\n            [9.068795, 45.631928],\n            [9.073291, 45.631928],\n            [9.073291, 45.627431],\n            [9.068795, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.068795, 45.631928],\n            [9.068795, 45.636424],\n            [9.073291, 45.636424],\n            [9.073291, 45.631928],\n            [9.068795, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.339648],\n            [9.073291, 45.344145],\n            [9.077788, 45.344145],\n            [9.077788, 45.339648],\n            [9.073291, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.344145],\n            [9.073291, 45.348642],\n            [9.077788, 45.348642],\n            [9.077788, 45.344145],\n            [9.073291, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.348642],\n            [9.073291, 45.353138],\n            [9.077788, 45.353138],\n            [9.077788, 45.348642],\n            [9.073291, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.353138],\n            [9.073291, 45.357635],\n            [9.077788, 45.357635],\n            [9.077788, 45.353138],\n            [9.073291, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.357635],\n            [9.073291, 45.362131],\n            [9.077788, 45.362131],\n            [9.077788, 45.357635],\n            [9.073291, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.362131],\n            [9.073291, 45.366628],\n            [9.077788, 45.366628],\n            [9.077788, 45.362131],\n            [9.073291, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.366628],\n            [9.073291, 45.371125],\n            [9.077788, 45.371125],\n            [9.077788, 45.366628],\n            [9.073291, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.371125],\n            [9.073291, 45.375621],\n            [9.077788, 45.375621],\n            [9.077788, 45.371125],\n            [9.073291, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.375621],\n            [9.073291, 45.380118],\n            [9.077788, 45.380118],\n            [9.077788, 45.375621],\n            [9.073291, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.380118],\n            [9.073291, 45.384614],\n            [9.077788, 45.384614],\n            [9.077788, 45.380118],\n            [9.073291, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.384614],\n            [9.073291, 45.389111],\n            [9.077788, 45.389111],\n            [9.077788, 45.384614],\n            [9.073291, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.389111],\n            [9.073291, 45.393608],\n            [9.077788, 45.393608],\n            [9.077788, 45.389111],\n            [9.073291, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.393608],\n            [9.073291, 45.398104],\n            [9.077788, 45.398104],\n            [9.077788, 45.393608],\n            [9.073291, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.398104],\n            [9.073291, 45.402601],\n            [9.077788, 45.402601],\n            [9.077788, 45.398104],\n            [9.073291, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.402601],\n            [9.073291, 45.407097],\n            [9.077788, 45.407097],\n            [9.077788, 45.402601],\n            [9.073291, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.407097],\n            [9.073291, 45.411594],\n            [9.077788, 45.411594],\n            [9.077788, 45.407097],\n            [9.073291, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.411594],\n            [9.073291, 45.416091],\n            [9.077788, 45.416091],\n            [9.077788, 45.411594],\n            [9.073291, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.416091],\n            [9.073291, 45.420587],\n            [9.077788, 45.420587],\n            [9.077788, 45.416091],\n            [9.073291, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.420587],\n            [9.073291, 45.425084],\n            [9.077788, 45.425084],\n            [9.077788, 45.420587],\n            [9.073291, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.425084],\n            [9.073291, 45.42958],\n            [9.077788, 45.42958],\n            [9.077788, 45.425084],\n            [9.073291, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.42958],\n            [9.073291, 45.434077],\n            [9.077788, 45.434077],\n            [9.077788, 45.42958],\n            [9.073291, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.434077],\n            [9.073291, 45.438574],\n            [9.077788, 45.438574],\n            [9.077788, 45.434077],\n            [9.073291, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.438574],\n            [9.073291, 45.44307],\n            [9.077788, 45.44307],\n            [9.077788, 45.438574],\n            [9.073291, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.44307],\n            [9.073291, 45.447567],\n            [9.077788, 45.447567],\n            [9.077788, 45.44307],\n            [9.073291, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.447567],\n            [9.073291, 45.452063],\n            [9.077788, 45.452063],\n            [9.077788, 45.447567],\n            [9.073291, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.452063],\n            [9.073291, 45.45656],\n            [9.077788, 45.45656],\n            [9.077788, 45.452063],\n            [9.073291, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.45656],\n            [9.073291, 45.461057],\n            [9.077788, 45.461057],\n            [9.077788, 45.45656],\n            [9.073291, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.461057],\n            [9.073291, 45.465553],\n            [9.077788, 45.465553],\n            [9.077788, 45.461057],\n            [9.073291, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.465553],\n            [9.073291, 45.47005],\n            [9.077788, 45.47005],\n            [9.077788, 45.465553],\n            [9.073291, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.47005],\n            [9.073291, 45.474547],\n            [9.077788, 45.474547],\n            [9.077788, 45.47005],\n            [9.073291, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.474547],\n            [9.073291, 45.479043],\n            [9.077788, 45.479043],\n            [9.077788, 45.474547],\n            [9.073291, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.479043],\n            [9.073291, 45.48354],\n            [9.077788, 45.48354],\n            [9.077788, 45.479043],\n            [9.073291, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.48354],\n            [9.073291, 45.488036],\n            [9.077788, 45.488036],\n            [9.077788, 45.48354],\n            [9.073291, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.488036],\n            [9.073291, 45.492533],\n            [9.077788, 45.492533],\n            [9.077788, 45.488036],\n            [9.073291, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.492533],\n            [9.073291, 45.49703],\n            [9.077788, 45.49703],\n            [9.077788, 45.492533],\n            [9.073291, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.49703],\n            [9.073291, 45.501526],\n            [9.077788, 45.501526],\n            [9.077788, 45.49703],\n            [9.073291, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.501526],\n            [9.073291, 45.506023],\n            [9.077788, 45.506023],\n            [9.077788, 45.501526],\n            [9.073291, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.506023],\n            [9.073291, 45.510519],\n            [9.077788, 45.510519],\n            [9.077788, 45.506023],\n            [9.073291, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.510519],\n            [9.073291, 45.515016],\n            [9.077788, 45.515016],\n            [9.077788, 45.510519],\n            [9.073291, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.515016],\n            [9.073291, 45.519513],\n            [9.077788, 45.519513],\n            [9.077788, 45.515016],\n            [9.073291, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.519513],\n            [9.073291, 45.524009],\n            [9.077788, 45.524009],\n            [9.077788, 45.519513],\n            [9.073291, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.524009],\n            [9.073291, 45.528506],\n            [9.077788, 45.528506],\n            [9.077788, 45.524009],\n            [9.073291, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.528506],\n            [9.073291, 45.533002],\n            [9.077788, 45.533002],\n            [9.077788, 45.528506],\n            [9.073291, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.533002],\n            [9.073291, 45.537499],\n            [9.077788, 45.537499],\n            [9.077788, 45.533002],\n            [9.073291, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.537499],\n            [9.073291, 45.541996],\n            [9.077788, 45.541996],\n            [9.077788, 45.537499],\n            [9.073291, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.541996],\n            [9.073291, 45.546492],\n            [9.077788, 45.546492],\n            [9.077788, 45.541996],\n            [9.073291, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.546492],\n            [9.073291, 45.550989],\n            [9.077788, 45.550989],\n            [9.077788, 45.546492],\n            [9.073291, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.550989],\n            [9.073291, 45.555485],\n            [9.077788, 45.555485],\n            [9.077788, 45.550989],\n            [9.073291, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.555485],\n            [9.073291, 45.559982],\n            [9.077788, 45.559982],\n            [9.077788, 45.555485],\n            [9.073291, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.559982],\n            [9.073291, 45.564479],\n            [9.077788, 45.564479],\n            [9.077788, 45.559982],\n            [9.073291, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.564479],\n            [9.073291, 45.568975],\n            [9.077788, 45.568975],\n            [9.077788, 45.564479],\n            [9.073291, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.568975],\n            [9.073291, 45.573472],\n            [9.077788, 45.573472],\n            [9.077788, 45.568975],\n            [9.073291, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.573472],\n            [9.073291, 45.577968],\n            [9.077788, 45.577968],\n            [9.077788, 45.573472],\n            [9.073291, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.577968],\n            [9.073291, 45.582465],\n            [9.077788, 45.582465],\n            [9.077788, 45.577968],\n            [9.073291, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.582465],\n            [9.073291, 45.586962],\n            [9.077788, 45.586962],\n            [9.077788, 45.582465],\n            [9.073291, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.586962],\n            [9.073291, 45.591458],\n            [9.077788, 45.591458],\n            [9.077788, 45.586962],\n            [9.073291, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.591458],\n            [9.073291, 45.595955],\n            [9.077788, 45.595955],\n            [9.077788, 45.591458],\n            [9.073291, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.595955],\n            [9.073291, 45.600451],\n            [9.077788, 45.600451],\n            [9.077788, 45.595955],\n            [9.073291, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.600451],\n            [9.073291, 45.604948],\n            [9.077788, 45.604948],\n            [9.077788, 45.600451],\n            [9.073291, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.604948],\n            [9.073291, 45.609445],\n            [9.077788, 45.609445],\n            [9.077788, 45.604948],\n            [9.073291, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.609445],\n            [9.073291, 45.613941],\n            [9.077788, 45.613941],\n            [9.077788, 45.609445],\n            [9.073291, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.613941],\n            [9.073291, 45.618438],\n            [9.077788, 45.618438],\n            [9.077788, 45.613941],\n            [9.073291, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.618438],\n            [9.073291, 45.622934],\n            [9.077788, 45.622934],\n            [9.077788, 45.618438],\n            [9.073291, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.622934],\n            [9.073291, 45.627431],\n            [9.077788, 45.627431],\n            [9.077788, 45.622934],\n            [9.073291, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.627431],\n            [9.073291, 45.631928],\n            [9.077788, 45.631928],\n            [9.077788, 45.627431],\n            [9.073291, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.073291, 45.631928],\n            [9.073291, 45.636424],\n            [9.077788, 45.636424],\n            [9.077788, 45.631928],\n            [9.073291, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.339648],\n            [9.077788, 45.344145],\n            [9.082284, 45.344145],\n            [9.082284, 45.339648],\n            [9.077788, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.344145],\n            [9.077788, 45.348642],\n            [9.082284, 45.348642],\n            [9.082284, 45.344145],\n            [9.077788, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.348642],\n            [9.077788, 45.353138],\n            [9.082284, 45.353138],\n            [9.082284, 45.348642],\n            [9.077788, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.353138],\n            [9.077788, 45.357635],\n            [9.082284, 45.357635],\n            [9.082284, 45.353138],\n            [9.077788, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.357635],\n            [9.077788, 45.362131],\n            [9.082284, 45.362131],\n            [9.082284, 45.357635],\n            [9.077788, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.362131],\n            [9.077788, 45.366628],\n            [9.082284, 45.366628],\n            [9.082284, 45.362131],\n            [9.077788, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.366628],\n            [9.077788, 45.371125],\n            [9.082284, 45.371125],\n            [9.082284, 45.366628],\n            [9.077788, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.371125],\n            [9.077788, 45.375621],\n            [9.082284, 45.375621],\n            [9.082284, 45.371125],\n            [9.077788, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.375621],\n            [9.077788, 45.380118],\n            [9.082284, 45.380118],\n            [9.082284, 45.375621],\n            [9.077788, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.380118],\n            [9.077788, 45.384614],\n            [9.082284, 45.384614],\n            [9.082284, 45.380118],\n            [9.077788, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.384614],\n            [9.077788, 45.389111],\n            [9.082284, 45.389111],\n            [9.082284, 45.384614],\n            [9.077788, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.389111],\n            [9.077788, 45.393608],\n            [9.082284, 45.393608],\n            [9.082284, 45.389111],\n            [9.077788, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.393608],\n            [9.077788, 45.398104],\n            [9.082284, 45.398104],\n            [9.082284, 45.393608],\n            [9.077788, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.398104],\n            [9.077788, 45.402601],\n            [9.082284, 45.402601],\n            [9.082284, 45.398104],\n            [9.077788, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.402601],\n            [9.077788, 45.407097],\n            [9.082284, 45.407097],\n            [9.082284, 45.402601],\n            [9.077788, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.407097],\n            [9.077788, 45.411594],\n            [9.082284, 45.411594],\n            [9.082284, 45.407097],\n            [9.077788, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.411594],\n            [9.077788, 45.416091],\n            [9.082284, 45.416091],\n            [9.082284, 45.411594],\n            [9.077788, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.416091],\n            [9.077788, 45.420587],\n            [9.082284, 45.420587],\n            [9.082284, 45.416091],\n            [9.077788, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.420587],\n            [9.077788, 45.425084],\n            [9.082284, 45.425084],\n            [9.082284, 45.420587],\n            [9.077788, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.425084],\n            [9.077788, 45.42958],\n            [9.082284, 45.42958],\n            [9.082284, 45.425084],\n            [9.077788, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.42958],\n            [9.077788, 45.434077],\n            [9.082284, 45.434077],\n            [9.082284, 45.42958],\n            [9.077788, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.434077],\n            [9.077788, 45.438574],\n            [9.082284, 45.438574],\n            [9.082284, 45.434077],\n            [9.077788, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.438574],\n            [9.077788, 45.44307],\n            [9.082284, 45.44307],\n            [9.082284, 45.438574],\n            [9.077788, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.44307],\n            [9.077788, 45.447567],\n            [9.082284, 45.447567],\n            [9.082284, 45.44307],\n            [9.077788, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.447567],\n            [9.077788, 45.452063],\n            [9.082284, 45.452063],\n            [9.082284, 45.447567],\n            [9.077788, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.452063],\n            [9.077788, 45.45656],\n            [9.082284, 45.45656],\n            [9.082284, 45.452063],\n            [9.077788, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.45656],\n            [9.077788, 45.461057],\n            [9.082284, 45.461057],\n            [9.082284, 45.45656],\n            [9.077788, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.461057],\n            [9.077788, 45.465553],\n            [9.082284, 45.465553],\n            [9.082284, 45.461057],\n            [9.077788, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.465553],\n            [9.077788, 45.47005],\n            [9.082284, 45.47005],\n            [9.082284, 45.465553],\n            [9.077788, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.47005],\n            [9.077788, 45.474547],\n            [9.082284, 45.474547],\n            [9.082284, 45.47005],\n            [9.077788, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.474547],\n            [9.077788, 45.479043],\n            [9.082284, 45.479043],\n            [9.082284, 45.474547],\n            [9.077788, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.479043],\n            [9.077788, 45.48354],\n            [9.082284, 45.48354],\n            [9.082284, 45.479043],\n            [9.077788, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.48354],\n            [9.077788, 45.488036],\n            [9.082284, 45.488036],\n            [9.082284, 45.48354],\n            [9.077788, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.488036],\n            [9.077788, 45.492533],\n            [9.082284, 45.492533],\n            [9.082284, 45.488036],\n            [9.077788, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.492533],\n            [9.077788, 45.49703],\n            [9.082284, 45.49703],\n            [9.082284, 45.492533],\n            [9.077788, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.49703],\n            [9.077788, 45.501526],\n            [9.082284, 45.501526],\n            [9.082284, 45.49703],\n            [9.077788, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.501526],\n            [9.077788, 45.506023],\n            [9.082284, 45.506023],\n            [9.082284, 45.501526],\n            [9.077788, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.506023],\n            [9.077788, 45.510519],\n            [9.082284, 45.510519],\n            [9.082284, 45.506023],\n            [9.077788, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.510519],\n            [9.077788, 45.515016],\n            [9.082284, 45.515016],\n            [9.082284, 45.510519],\n            [9.077788, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.515016],\n            [9.077788, 45.519513],\n            [9.082284, 45.519513],\n            [9.082284, 45.515016],\n            [9.077788, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.519513],\n            [9.077788, 45.524009],\n            [9.082284, 45.524009],\n            [9.082284, 45.519513],\n            [9.077788, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.524009],\n            [9.077788, 45.528506],\n            [9.082284, 45.528506],\n            [9.082284, 45.524009],\n            [9.077788, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.528506],\n            [9.077788, 45.533002],\n            [9.082284, 45.533002],\n            [9.082284, 45.528506],\n            [9.077788, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.533002],\n            [9.077788, 45.537499],\n            [9.082284, 45.537499],\n            [9.082284, 45.533002],\n            [9.077788, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.537499],\n            [9.077788, 45.541996],\n            [9.082284, 45.541996],\n            [9.082284, 45.537499],\n            [9.077788, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.541996],\n            [9.077788, 45.546492],\n            [9.082284, 45.546492],\n            [9.082284, 45.541996],\n            [9.077788, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.546492],\n            [9.077788, 45.550989],\n            [9.082284, 45.550989],\n            [9.082284, 45.546492],\n            [9.077788, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.550989],\n            [9.077788, 45.555485],\n            [9.082284, 45.555485],\n            [9.082284, 45.550989],\n            [9.077788, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.555485],\n            [9.077788, 45.559982],\n            [9.082284, 45.559982],\n            [9.082284, 45.555485],\n            [9.077788, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.559982],\n            [9.077788, 45.564479],\n            [9.082284, 45.564479],\n            [9.082284, 45.559982],\n            [9.077788, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.564479],\n            [9.077788, 45.568975],\n            [9.082284, 45.568975],\n            [9.082284, 45.564479],\n            [9.077788, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.568975],\n            [9.077788, 45.573472],\n            [9.082284, 45.573472],\n            [9.082284, 45.568975],\n            [9.077788, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.573472],\n            [9.077788, 45.577968],\n            [9.082284, 45.577968],\n            [9.082284, 45.573472],\n            [9.077788, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.577968],\n            [9.077788, 45.582465],\n            [9.082284, 45.582465],\n            [9.082284, 45.577968],\n            [9.077788, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.582465],\n            [9.077788, 45.586962],\n            [9.082284, 45.586962],\n            [9.082284, 45.582465],\n            [9.077788, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.586962],\n            [9.077788, 45.591458],\n            [9.082284, 45.591458],\n            [9.082284, 45.586962],\n            [9.077788, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.591458],\n            [9.077788, 45.595955],\n            [9.082284, 45.595955],\n            [9.082284, 45.591458],\n            [9.077788, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.595955],\n            [9.077788, 45.600451],\n            [9.082284, 45.600451],\n            [9.082284, 45.595955],\n            [9.077788, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.600451],\n            [9.077788, 45.604948],\n            [9.082284, 45.604948],\n            [9.082284, 45.600451],\n            [9.077788, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.604948],\n            [9.077788, 45.609445],\n            [9.082284, 45.609445],\n            [9.082284, 45.604948],\n            [9.077788, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.609445],\n            [9.077788, 45.613941],\n            [9.082284, 45.613941],\n            [9.082284, 45.609445],\n            [9.077788, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.613941],\n            [9.077788, 45.618438],\n            [9.082284, 45.618438],\n            [9.082284, 45.613941],\n            [9.077788, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.618438],\n            [9.077788, 45.622934],\n            [9.082284, 45.622934],\n            [9.082284, 45.618438],\n            [9.077788, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.622934],\n            [9.077788, 45.627431],\n            [9.082284, 45.627431],\n            [9.082284, 45.622934],\n            [9.077788, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.627431],\n            [9.077788, 45.631928],\n            [9.082284, 45.631928],\n            [9.082284, 45.627431],\n            [9.077788, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.077788, 45.631928],\n            [9.077788, 45.636424],\n            [9.082284, 45.636424],\n            [9.082284, 45.631928],\n            [9.077788, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.339648],\n            [9.082284, 45.344145],\n            [9.086781, 45.344145],\n            [9.086781, 45.339648],\n            [9.082284, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.344145],\n            [9.082284, 45.348642],\n            [9.086781, 45.348642],\n            [9.086781, 45.344145],\n            [9.082284, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.348642],\n            [9.082284, 45.353138],\n            [9.086781, 45.353138],\n            [9.086781, 45.348642],\n            [9.082284, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.353138],\n            [9.082284, 45.357635],\n            [9.086781, 45.357635],\n            [9.086781, 45.353138],\n            [9.082284, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.357635],\n            [9.082284, 45.362131],\n            [9.086781, 45.362131],\n            [9.086781, 45.357635],\n            [9.082284, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.362131],\n            [9.082284, 45.366628],\n            [9.086781, 45.366628],\n            [9.086781, 45.362131],\n            [9.082284, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.366628],\n            [9.082284, 45.371125],\n            [9.086781, 45.371125],\n            [9.086781, 45.366628],\n            [9.082284, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.371125],\n            [9.082284, 45.375621],\n            [9.086781, 45.375621],\n            [9.086781, 45.371125],\n            [9.082284, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.375621],\n            [9.082284, 45.380118],\n            [9.086781, 45.380118],\n            [9.086781, 45.375621],\n            [9.082284, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.380118],\n            [9.082284, 45.384614],\n            [9.086781, 45.384614],\n            [9.086781, 45.380118],\n            [9.082284, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.384614],\n            [9.082284, 45.389111],\n            [9.086781, 45.389111],\n            [9.086781, 45.384614],\n            [9.082284, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.389111],\n            [9.082284, 45.393608],\n            [9.086781, 45.393608],\n            [9.086781, 45.389111],\n            [9.082284, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.393608],\n            [9.082284, 45.398104],\n            [9.086781, 45.398104],\n            [9.086781, 45.393608],\n            [9.082284, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.398104],\n            [9.082284, 45.402601],\n            [9.086781, 45.402601],\n            [9.086781, 45.398104],\n            [9.082284, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.402601],\n            [9.082284, 45.407097],\n            [9.086781, 45.407097],\n            [9.086781, 45.402601],\n            [9.082284, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.407097],\n            [9.082284, 45.411594],\n            [9.086781, 45.411594],\n            [9.086781, 45.407097],\n            [9.082284, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.411594],\n            [9.082284, 45.416091],\n            [9.086781, 45.416091],\n            [9.086781, 45.411594],\n            [9.082284, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.416091],\n            [9.082284, 45.420587],\n            [9.086781, 45.420587],\n            [9.086781, 45.416091],\n            [9.082284, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.420587],\n            [9.082284, 45.425084],\n            [9.086781, 45.425084],\n            [9.086781, 45.420587],\n            [9.082284, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.425084],\n            [9.082284, 45.42958],\n            [9.086781, 45.42958],\n            [9.086781, 45.425084],\n            [9.082284, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.42958],\n            [9.082284, 45.434077],\n            [9.086781, 45.434077],\n            [9.086781, 45.42958],\n            [9.082284, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.434077],\n            [9.082284, 45.438574],\n            [9.086781, 45.438574],\n            [9.086781, 45.434077],\n            [9.082284, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.438574],\n            [9.082284, 45.44307],\n            [9.086781, 45.44307],\n            [9.086781, 45.438574],\n            [9.082284, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.44307],\n            [9.082284, 45.447567],\n            [9.086781, 45.447567],\n            [9.086781, 45.44307],\n            [9.082284, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.447567],\n            [9.082284, 45.452063],\n            [9.086781, 45.452063],\n            [9.086781, 45.447567],\n            [9.082284, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.452063],\n            [9.082284, 45.45656],\n            [9.086781, 45.45656],\n            [9.086781, 45.452063],\n            [9.082284, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.45656],\n            [9.082284, 45.461057],\n            [9.086781, 45.461057],\n            [9.086781, 45.45656],\n            [9.082284, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.461057],\n            [9.082284, 45.465553],\n            [9.086781, 45.465553],\n            [9.086781, 45.461057],\n            [9.082284, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.465553],\n            [9.082284, 45.47005],\n            [9.086781, 45.47005],\n            [9.086781, 45.465553],\n            [9.082284, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.47005],\n            [9.082284, 45.474547],\n            [9.086781, 45.474547],\n            [9.086781, 45.47005],\n            [9.082284, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.474547],\n            [9.082284, 45.479043],\n            [9.086781, 45.479043],\n            [9.086781, 45.474547],\n            [9.082284, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.479043],\n            [9.082284, 45.48354],\n            [9.086781, 45.48354],\n            [9.086781, 45.479043],\n            [9.082284, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.48354],\n            [9.082284, 45.488036],\n            [9.086781, 45.488036],\n            [9.086781, 45.48354],\n            [9.082284, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.488036],\n            [9.082284, 45.492533],\n            [9.086781, 45.492533],\n            [9.086781, 45.488036],\n            [9.082284, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.492533],\n            [9.082284, 45.49703],\n            [9.086781, 45.49703],\n            [9.086781, 45.492533],\n            [9.082284, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.49703],\n            [9.082284, 45.501526],\n            [9.086781, 45.501526],\n            [9.086781, 45.49703],\n            [9.082284, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.501526],\n            [9.082284, 45.506023],\n            [9.086781, 45.506023],\n            [9.086781, 45.501526],\n            [9.082284, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.506023],\n            [9.082284, 45.510519],\n            [9.086781, 45.510519],\n            [9.086781, 45.506023],\n            [9.082284, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.510519],\n            [9.082284, 45.515016],\n            [9.086781, 45.515016],\n            [9.086781, 45.510519],\n            [9.082284, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.515016],\n            [9.082284, 45.519513],\n            [9.086781, 45.519513],\n            [9.086781, 45.515016],\n            [9.082284, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.519513],\n            [9.082284, 45.524009],\n            [9.086781, 45.524009],\n            [9.086781, 45.519513],\n            [9.082284, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.524009],\n            [9.082284, 45.528506],\n            [9.086781, 45.528506],\n            [9.086781, 45.524009],\n            [9.082284, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.528506],\n            [9.082284, 45.533002],\n            [9.086781, 45.533002],\n            [9.086781, 45.528506],\n            [9.082284, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.533002],\n            [9.082284, 45.537499],\n            [9.086781, 45.537499],\n            [9.086781, 45.533002],\n            [9.082284, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.537499],\n            [9.082284, 45.541996],\n            [9.086781, 45.541996],\n            [9.086781, 45.537499],\n            [9.082284, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.541996],\n            [9.082284, 45.546492],\n            [9.086781, 45.546492],\n            [9.086781, 45.541996],\n            [9.082284, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.546492],\n            [9.082284, 45.550989],\n            [9.086781, 45.550989],\n            [9.086781, 45.546492],\n            [9.082284, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.550989],\n            [9.082284, 45.555485],\n            [9.086781, 45.555485],\n            [9.086781, 45.550989],\n            [9.082284, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.555485],\n            [9.082284, 45.559982],\n            [9.086781, 45.559982],\n            [9.086781, 45.555485],\n            [9.082284, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.559982],\n            [9.082284, 45.564479],\n            [9.086781, 45.564479],\n            [9.086781, 45.559982],\n            [9.082284, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.564479],\n            [9.082284, 45.568975],\n            [9.086781, 45.568975],\n            [9.086781, 45.564479],\n            [9.082284, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.568975],\n            [9.082284, 45.573472],\n            [9.086781, 45.573472],\n            [9.086781, 45.568975],\n            [9.082284, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.573472],\n            [9.082284, 45.577968],\n            [9.086781, 45.577968],\n            [9.086781, 45.573472],\n            [9.082284, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.577968],\n            [9.082284, 45.582465],\n            [9.086781, 45.582465],\n            [9.086781, 45.577968],\n            [9.082284, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.582465],\n            [9.082284, 45.586962],\n            [9.086781, 45.586962],\n            [9.086781, 45.582465],\n            [9.082284, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.586962],\n            [9.082284, 45.591458],\n            [9.086781, 45.591458],\n            [9.086781, 45.586962],\n            [9.082284, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.591458],\n            [9.082284, 45.595955],\n            [9.086781, 45.595955],\n            [9.086781, 45.591458],\n            [9.082284, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.595955],\n            [9.082284, 45.600451],\n            [9.086781, 45.600451],\n            [9.086781, 45.595955],\n            [9.082284, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.600451],\n            [9.082284, 45.604948],\n            [9.086781, 45.604948],\n            [9.086781, 45.600451],\n            [9.082284, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.604948],\n            [9.082284, 45.609445],\n            [9.086781, 45.609445],\n            [9.086781, 45.604948],\n            [9.082284, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.609445],\n            [9.082284, 45.613941],\n            [9.086781, 45.613941],\n            [9.086781, 45.609445],\n            [9.082284, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.613941],\n            [9.082284, 45.618438],\n            [9.086781, 45.618438],\n            [9.086781, 45.613941],\n            [9.082284, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.618438],\n            [9.082284, 45.622934],\n            [9.086781, 45.622934],\n            [9.086781, 45.618438],\n            [9.082284, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.622934],\n            [9.082284, 45.627431],\n            [9.086781, 45.627431],\n            [9.086781, 45.622934],\n            [9.082284, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.627431],\n            [9.082284, 45.631928],\n            [9.086781, 45.631928],\n            [9.086781, 45.627431],\n            [9.082284, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.082284, 45.631928],\n            [9.082284, 45.636424],\n            [9.086781, 45.636424],\n            [9.086781, 45.631928],\n            [9.082284, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.339648],\n            [9.086781, 45.344145],\n            [9.091278, 45.344145],\n            [9.091278, 45.339648],\n            [9.086781, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.344145],\n            [9.086781, 45.348642],\n            [9.091278, 45.348642],\n            [9.091278, 45.344145],\n            [9.086781, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.348642],\n            [9.086781, 45.353138],\n            [9.091278, 45.353138],\n            [9.091278, 45.348642],\n            [9.086781, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.353138],\n            [9.086781, 45.357635],\n            [9.091278, 45.357635],\n            [9.091278, 45.353138],\n            [9.086781, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.357635],\n            [9.086781, 45.362131],\n            [9.091278, 45.362131],\n            [9.091278, 45.357635],\n            [9.086781, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.362131],\n            [9.086781, 45.366628],\n            [9.091278, 45.366628],\n            [9.091278, 45.362131],\n            [9.086781, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.366628],\n            [9.086781, 45.371125],\n            [9.091278, 45.371125],\n            [9.091278, 45.366628],\n            [9.086781, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.371125],\n            [9.086781, 45.375621],\n            [9.091278, 45.375621],\n            [9.091278, 45.371125],\n            [9.086781, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.375621],\n            [9.086781, 45.380118],\n            [9.091278, 45.380118],\n            [9.091278, 45.375621],\n            [9.086781, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.380118],\n            [9.086781, 45.384614],\n            [9.091278, 45.384614],\n            [9.091278, 45.380118],\n            [9.086781, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.384614],\n            [9.086781, 45.389111],\n            [9.091278, 45.389111],\n            [9.091278, 45.384614],\n            [9.086781, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.389111],\n            [9.086781, 45.393608],\n            [9.091278, 45.393608],\n            [9.091278, 45.389111],\n            [9.086781, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.393608],\n            [9.086781, 45.398104],\n            [9.091278, 45.398104],\n            [9.091278, 45.393608],\n            [9.086781, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.398104],\n            [9.086781, 45.402601],\n            [9.091278, 45.402601],\n            [9.091278, 45.398104],\n            [9.086781, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.402601],\n            [9.086781, 45.407097],\n            [9.091278, 45.407097],\n            [9.091278, 45.402601],\n            [9.086781, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.407097],\n            [9.086781, 45.411594],\n            [9.091278, 45.411594],\n            [9.091278, 45.407097],\n            [9.086781, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.411594],\n            [9.086781, 45.416091],\n            [9.091278, 45.416091],\n            [9.091278, 45.411594],\n            [9.086781, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.416091],\n            [9.086781, 45.420587],\n            [9.091278, 45.420587],\n            [9.091278, 45.416091],\n            [9.086781, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.420587],\n            [9.086781, 45.425084],\n            [9.091278, 45.425084],\n            [9.091278, 45.420587],\n            [9.086781, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.425084],\n            [9.086781, 45.42958],\n            [9.091278, 45.42958],\n            [9.091278, 45.425084],\n            [9.086781, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.42958],\n            [9.086781, 45.434077],\n            [9.091278, 45.434077],\n            [9.091278, 45.42958],\n            [9.086781, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.434077],\n            [9.086781, 45.438574],\n            [9.091278, 45.438574],\n            [9.091278, 45.434077],\n            [9.086781, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.438574],\n            [9.086781, 45.44307],\n            [9.091278, 45.44307],\n            [9.091278, 45.438574],\n            [9.086781, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.44307],\n            [9.086781, 45.447567],\n            [9.091278, 45.447567],\n            [9.091278, 45.44307],\n            [9.086781, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.447567],\n            [9.086781, 45.452063],\n            [9.091278, 45.452063],\n            [9.091278, 45.447567],\n            [9.086781, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.452063],\n            [9.086781, 45.45656],\n            [9.091278, 45.45656],\n            [9.091278, 45.452063],\n            [9.086781, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.45656],\n            [9.086781, 45.461057],\n            [9.091278, 45.461057],\n            [9.091278, 45.45656],\n            [9.086781, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.461057],\n            [9.086781, 45.465553],\n            [9.091278, 45.465553],\n            [9.091278, 45.461057],\n            [9.086781, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.465553],\n            [9.086781, 45.47005],\n            [9.091278, 45.47005],\n            [9.091278, 45.465553],\n            [9.086781, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.47005],\n            [9.086781, 45.474547],\n            [9.091278, 45.474547],\n            [9.091278, 45.47005],\n            [9.086781, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.474547],\n            [9.086781, 45.479043],\n            [9.091278, 45.479043],\n            [9.091278, 45.474547],\n            [9.086781, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.479043],\n            [9.086781, 45.48354],\n            [9.091278, 45.48354],\n            [9.091278, 45.479043],\n            [9.086781, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.48354],\n            [9.086781, 45.488036],\n            [9.091278, 45.488036],\n            [9.091278, 45.48354],\n            [9.086781, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.488036],\n            [9.086781, 45.492533],\n            [9.091278, 45.492533],\n            [9.091278, 45.488036],\n            [9.086781, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.492533],\n            [9.086781, 45.49703],\n            [9.091278, 45.49703],\n            [9.091278, 45.492533],\n            [9.086781, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.49703],\n            [9.086781, 45.501526],\n            [9.091278, 45.501526],\n            [9.091278, 45.49703],\n            [9.086781, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.501526],\n            [9.086781, 45.506023],\n            [9.091278, 45.506023],\n            [9.091278, 45.501526],\n            [9.086781, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.506023],\n            [9.086781, 45.510519],\n            [9.091278, 45.510519],\n            [9.091278, 45.506023],\n            [9.086781, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.510519],\n            [9.086781, 45.515016],\n            [9.091278, 45.515016],\n            [9.091278, 45.510519],\n            [9.086781, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.515016],\n            [9.086781, 45.519513],\n            [9.091278, 45.519513],\n            [9.091278, 45.515016],\n            [9.086781, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.519513],\n            [9.086781, 45.524009],\n            [9.091278, 45.524009],\n            [9.091278, 45.519513],\n            [9.086781, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.524009],\n            [9.086781, 45.528506],\n            [9.091278, 45.528506],\n            [9.091278, 45.524009],\n            [9.086781, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.528506],\n            [9.086781, 45.533002],\n            [9.091278, 45.533002],\n            [9.091278, 45.528506],\n            [9.086781, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.533002],\n            [9.086781, 45.537499],\n            [9.091278, 45.537499],\n            [9.091278, 45.533002],\n            [9.086781, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.537499],\n            [9.086781, 45.541996],\n            [9.091278, 45.541996],\n            [9.091278, 45.537499],\n            [9.086781, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.541996],\n            [9.086781, 45.546492],\n            [9.091278, 45.546492],\n            [9.091278, 45.541996],\n            [9.086781, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.546492],\n            [9.086781, 45.550989],\n            [9.091278, 45.550989],\n            [9.091278, 45.546492],\n            [9.086781, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.550989],\n            [9.086781, 45.555485],\n            [9.091278, 45.555485],\n            [9.091278, 45.550989],\n            [9.086781, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.555485],\n            [9.086781, 45.559982],\n            [9.091278, 45.559982],\n            [9.091278, 45.555485],\n            [9.086781, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.559982],\n            [9.086781, 45.564479],\n            [9.091278, 45.564479],\n            [9.091278, 45.559982],\n            [9.086781, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.564479],\n            [9.086781, 45.568975],\n            [9.091278, 45.568975],\n            [9.091278, 45.564479],\n            [9.086781, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.568975],\n            [9.086781, 45.573472],\n            [9.091278, 45.573472],\n            [9.091278, 45.568975],\n            [9.086781, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.573472],\n            [9.086781, 45.577968],\n            [9.091278, 45.577968],\n            [9.091278, 45.573472],\n            [9.086781, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.577968],\n            [9.086781, 45.582465],\n            [9.091278, 45.582465],\n            [9.091278, 45.577968],\n            [9.086781, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.582465],\n            [9.086781, 45.586962],\n            [9.091278, 45.586962],\n            [9.091278, 45.582465],\n            [9.086781, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.586962],\n            [9.086781, 45.591458],\n            [9.091278, 45.591458],\n            [9.091278, 45.586962],\n            [9.086781, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.591458],\n            [9.086781, 45.595955],\n            [9.091278, 45.595955],\n            [9.091278, 45.591458],\n            [9.086781, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.595955],\n            [9.086781, 45.600451],\n            [9.091278, 45.600451],\n            [9.091278, 45.595955],\n            [9.086781, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.600451],\n            [9.086781, 45.604948],\n            [9.091278, 45.604948],\n            [9.091278, 45.600451],\n            [9.086781, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.604948],\n            [9.086781, 45.609445],\n            [9.091278, 45.609445],\n            [9.091278, 45.604948],\n            [9.086781, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.609445],\n            [9.086781, 45.613941],\n            [9.091278, 45.613941],\n            [9.091278, 45.609445],\n            [9.086781, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.613941],\n            [9.086781, 45.618438],\n            [9.091278, 45.618438],\n            [9.091278, 45.613941],\n            [9.086781, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.618438],\n            [9.086781, 45.622934],\n            [9.091278, 45.622934],\n            [9.091278, 45.618438],\n            [9.086781, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.622934],\n            [9.086781, 45.627431],\n            [9.091278, 45.627431],\n            [9.091278, 45.622934],\n            [9.086781, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.627431],\n            [9.086781, 45.631928],\n            [9.091278, 45.631928],\n            [9.091278, 45.627431],\n            [9.086781, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.086781, 45.631928],\n            [9.086781, 45.636424],\n            [9.091278, 45.636424],\n            [9.091278, 45.631928],\n            [9.086781, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.339648],\n            [9.091278, 45.344145],\n            [9.095774, 45.344145],\n            [9.095774, 45.339648],\n            [9.091278, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.344145],\n            [9.091278, 45.348642],\n            [9.095774, 45.348642],\n            [9.095774, 45.344145],\n            [9.091278, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.348642],\n            [9.091278, 45.353138],\n            [9.095774, 45.353138],\n            [9.095774, 45.348642],\n            [9.091278, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.353138],\n            [9.091278, 45.357635],\n            [9.095774, 45.357635],\n            [9.095774, 45.353138],\n            [9.091278, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.357635],\n            [9.091278, 45.362131],\n            [9.095774, 45.362131],\n            [9.095774, 45.357635],\n            [9.091278, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.362131],\n            [9.091278, 45.366628],\n            [9.095774, 45.366628],\n            [9.095774, 45.362131],\n            [9.091278, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.366628],\n            [9.091278, 45.371125],\n            [9.095774, 45.371125],\n            [9.095774, 45.366628],\n            [9.091278, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.371125],\n            [9.091278, 45.375621],\n            [9.095774, 45.375621],\n            [9.095774, 45.371125],\n            [9.091278, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.375621],\n            [9.091278, 45.380118],\n            [9.095774, 45.380118],\n            [9.095774, 45.375621],\n            [9.091278, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.380118],\n            [9.091278, 45.384614],\n            [9.095774, 45.384614],\n            [9.095774, 45.380118],\n            [9.091278, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.384614],\n            [9.091278, 45.389111],\n            [9.095774, 45.389111],\n            [9.095774, 45.384614],\n            [9.091278, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.389111],\n            [9.091278, 45.393608],\n            [9.095774, 45.393608],\n            [9.095774, 45.389111],\n            [9.091278, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.393608],\n            [9.091278, 45.398104],\n            [9.095774, 45.398104],\n            [9.095774, 45.393608],\n            [9.091278, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.398104],\n            [9.091278, 45.402601],\n            [9.095774, 45.402601],\n            [9.095774, 45.398104],\n            [9.091278, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.402601],\n            [9.091278, 45.407097],\n            [9.095774, 45.407097],\n            [9.095774, 45.402601],\n            [9.091278, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.407097],\n            [9.091278, 45.411594],\n            [9.095774, 45.411594],\n            [9.095774, 45.407097],\n            [9.091278, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.411594],\n            [9.091278, 45.416091],\n            [9.095774, 45.416091],\n            [9.095774, 45.411594],\n            [9.091278, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.416091],\n            [9.091278, 45.420587],\n            [9.095774, 45.420587],\n            [9.095774, 45.416091],\n            [9.091278, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.420587],\n            [9.091278, 45.425084],\n            [9.095774, 45.425084],\n            [9.095774, 45.420587],\n            [9.091278, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.425084],\n            [9.091278, 45.42958],\n            [9.095774, 45.42958],\n            [9.095774, 45.425084],\n            [9.091278, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.42958],\n            [9.091278, 45.434077],\n            [9.095774, 45.434077],\n            [9.095774, 45.42958],\n            [9.091278, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.434077],\n            [9.091278, 45.438574],\n            [9.095774, 45.438574],\n            [9.095774, 45.434077],\n            [9.091278, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.438574],\n            [9.091278, 45.44307],\n            [9.095774, 45.44307],\n            [9.095774, 45.438574],\n            [9.091278, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.44307],\n            [9.091278, 45.447567],\n            [9.095774, 45.447567],\n            [9.095774, 45.44307],\n            [9.091278, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.447567],\n            [9.091278, 45.452063],\n            [9.095774, 45.452063],\n            [9.095774, 45.447567],\n            [9.091278, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.452063],\n            [9.091278, 45.45656],\n            [9.095774, 45.45656],\n            [9.095774, 45.452063],\n            [9.091278, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.45656],\n            [9.091278, 45.461057],\n            [9.095774, 45.461057],\n            [9.095774, 45.45656],\n            [9.091278, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.461057],\n            [9.091278, 45.465553],\n            [9.095774, 45.465553],\n            [9.095774, 45.461057],\n            [9.091278, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.465553],\n            [9.091278, 45.47005],\n            [9.095774, 45.47005],\n            [9.095774, 45.465553],\n            [9.091278, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.47005],\n            [9.091278, 45.474547],\n            [9.095774, 45.474547],\n            [9.095774, 45.47005],\n            [9.091278, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.474547],\n            [9.091278, 45.479043],\n            [9.095774, 45.479043],\n            [9.095774, 45.474547],\n            [9.091278, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.479043],\n            [9.091278, 45.48354],\n            [9.095774, 45.48354],\n            [9.095774, 45.479043],\n            [9.091278, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.48354],\n            [9.091278, 45.488036],\n            [9.095774, 45.488036],\n            [9.095774, 45.48354],\n            [9.091278, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.488036],\n            [9.091278, 45.492533],\n            [9.095774, 45.492533],\n            [9.095774, 45.488036],\n            [9.091278, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.492533],\n            [9.091278, 45.49703],\n            [9.095774, 45.49703],\n            [9.095774, 45.492533],\n            [9.091278, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.49703],\n            [9.091278, 45.501526],\n            [9.095774, 45.501526],\n            [9.095774, 45.49703],\n            [9.091278, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.501526],\n            [9.091278, 45.506023],\n            [9.095774, 45.506023],\n            [9.095774, 45.501526],\n            [9.091278, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.506023],\n            [9.091278, 45.510519],\n            [9.095774, 45.510519],\n            [9.095774, 45.506023],\n            [9.091278, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.510519],\n            [9.091278, 45.515016],\n            [9.095774, 45.515016],\n            [9.095774, 45.510519],\n            [9.091278, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.515016],\n            [9.091278, 45.519513],\n            [9.095774, 45.519513],\n            [9.095774, 45.515016],\n            [9.091278, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.519513],\n            [9.091278, 45.524009],\n            [9.095774, 45.524009],\n            [9.095774, 45.519513],\n            [9.091278, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.524009],\n            [9.091278, 45.528506],\n            [9.095774, 45.528506],\n            [9.095774, 45.524009],\n            [9.091278, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.528506],\n            [9.091278, 45.533002],\n            [9.095774, 45.533002],\n            [9.095774, 45.528506],\n            [9.091278, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.533002],\n            [9.091278, 45.537499],\n            [9.095774, 45.537499],\n            [9.095774, 45.533002],\n            [9.091278, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.537499],\n            [9.091278, 45.541996],\n            [9.095774, 45.541996],\n            [9.095774, 45.537499],\n            [9.091278, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.541996],\n            [9.091278, 45.546492],\n            [9.095774, 45.546492],\n            [9.095774, 45.541996],\n            [9.091278, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.546492],\n            [9.091278, 45.550989],\n            [9.095774, 45.550989],\n            [9.095774, 45.546492],\n            [9.091278, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.550989],\n            [9.091278, 45.555485],\n            [9.095774, 45.555485],\n            [9.095774, 45.550989],\n            [9.091278, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.555485],\n            [9.091278, 45.559982],\n            [9.095774, 45.559982],\n            [9.095774, 45.555485],\n            [9.091278, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.559982],\n            [9.091278, 45.564479],\n            [9.095774, 45.564479],\n            [9.095774, 45.559982],\n            [9.091278, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.564479],\n            [9.091278, 45.568975],\n            [9.095774, 45.568975],\n            [9.095774, 45.564479],\n            [9.091278, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.568975],\n            [9.091278, 45.573472],\n            [9.095774, 45.573472],\n            [9.095774, 45.568975],\n            [9.091278, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.573472],\n            [9.091278, 45.577968],\n            [9.095774, 45.577968],\n            [9.095774, 45.573472],\n            [9.091278, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.577968],\n            [9.091278, 45.582465],\n            [9.095774, 45.582465],\n            [9.095774, 45.577968],\n            [9.091278, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.582465],\n            [9.091278, 45.586962],\n            [9.095774, 45.586962],\n            [9.095774, 45.582465],\n            [9.091278, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.586962],\n            [9.091278, 45.591458],\n            [9.095774, 45.591458],\n            [9.095774, 45.586962],\n            [9.091278, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.591458],\n            [9.091278, 45.595955],\n            [9.095774, 45.595955],\n            [9.095774, 45.591458],\n            [9.091278, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.595955],\n            [9.091278, 45.600451],\n            [9.095774, 45.600451],\n            [9.095774, 45.595955],\n            [9.091278, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.600451],\n            [9.091278, 45.604948],\n            [9.095774, 45.604948],\n            [9.095774, 45.600451],\n            [9.091278, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.604948],\n            [9.091278, 45.609445],\n            [9.095774, 45.609445],\n            [9.095774, 45.604948],\n            [9.091278, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.609445],\n            [9.091278, 45.613941],\n            [9.095774, 45.613941],\n            [9.095774, 45.609445],\n            [9.091278, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.613941],\n            [9.091278, 45.618438],\n            [9.095774, 45.618438],\n            [9.095774, 45.613941],\n            [9.091278, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.618438],\n            [9.091278, 45.622934],\n            [9.095774, 45.622934],\n            [9.095774, 45.618438],\n            [9.091278, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.622934],\n            [9.091278, 45.627431],\n            [9.095774, 45.627431],\n            [9.095774, 45.622934],\n            [9.091278, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.627431],\n            [9.091278, 45.631928],\n            [9.095774, 45.631928],\n            [9.095774, 45.627431],\n            [9.091278, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.091278, 45.631928],\n            [9.091278, 45.636424],\n            [9.095774, 45.636424],\n            [9.095774, 45.631928],\n            [9.091278, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.339648],\n            [9.095774, 45.344145],\n            [9.100271, 45.344145],\n            [9.100271, 45.339648],\n            [9.095774, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.344145],\n            [9.095774, 45.348642],\n            [9.100271, 45.348642],\n            [9.100271, 45.344145],\n            [9.095774, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.348642],\n            [9.095774, 45.353138],\n            [9.100271, 45.353138],\n            [9.100271, 45.348642],\n            [9.095774, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.353138],\n            [9.095774, 45.357635],\n            [9.100271, 45.357635],\n            [9.100271, 45.353138],\n            [9.095774, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.357635],\n            [9.095774, 45.362131],\n            [9.100271, 45.362131],\n            [9.100271, 45.357635],\n            [9.095774, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.362131],\n            [9.095774, 45.366628],\n            [9.100271, 45.366628],\n            [9.100271, 45.362131],\n            [9.095774, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.366628],\n            [9.095774, 45.371125],\n            [9.100271, 45.371125],\n            [9.100271, 45.366628],\n            [9.095774, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.371125],\n            [9.095774, 45.375621],\n            [9.100271, 45.375621],\n            [9.100271, 45.371125],\n            [9.095774, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.375621],\n            [9.095774, 45.380118],\n            [9.100271, 45.380118],\n            [9.100271, 45.375621],\n            [9.095774, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.380118],\n            [9.095774, 45.384614],\n            [9.100271, 45.384614],\n            [9.100271, 45.380118],\n            [9.095774, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.384614],\n            [9.095774, 45.389111],\n            [9.100271, 45.389111],\n            [9.100271, 45.384614],\n            [9.095774, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.389111],\n            [9.095774, 45.393608],\n            [9.100271, 45.393608],\n            [9.100271, 45.389111],\n            [9.095774, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.393608],\n            [9.095774, 45.398104],\n            [9.100271, 45.398104],\n            [9.100271, 45.393608],\n            [9.095774, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.398104],\n            [9.095774, 45.402601],\n            [9.100271, 45.402601],\n            [9.100271, 45.398104],\n            [9.095774, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.402601],\n            [9.095774, 45.407097],\n            [9.100271, 45.407097],\n            [9.100271, 45.402601],\n            [9.095774, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.407097],\n            [9.095774, 45.411594],\n            [9.100271, 45.411594],\n            [9.100271, 45.407097],\n            [9.095774, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.411594],\n            [9.095774, 45.416091],\n            [9.100271, 45.416091],\n            [9.100271, 45.411594],\n            [9.095774, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.416091],\n            [9.095774, 45.420587],\n            [9.100271, 45.420587],\n            [9.100271, 45.416091],\n            [9.095774, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.420587],\n            [9.095774, 45.425084],\n            [9.100271, 45.425084],\n            [9.100271, 45.420587],\n            [9.095774, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.425084],\n            [9.095774, 45.42958],\n            [9.100271, 45.42958],\n            [9.100271, 45.425084],\n            [9.095774, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.42958],\n            [9.095774, 45.434077],\n            [9.100271, 45.434077],\n            [9.100271, 45.42958],\n            [9.095774, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.434077],\n            [9.095774, 45.438574],\n            [9.100271, 45.438574],\n            [9.100271, 45.434077],\n            [9.095774, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.438574],\n            [9.095774, 45.44307],\n            [9.100271, 45.44307],\n            [9.100271, 45.438574],\n            [9.095774, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.44307],\n            [9.095774, 45.447567],\n            [9.100271, 45.447567],\n            [9.100271, 45.44307],\n            [9.095774, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.447567],\n            [9.095774, 45.452063],\n            [9.100271, 45.452063],\n            [9.100271, 45.447567],\n            [9.095774, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.452063],\n            [9.095774, 45.45656],\n            [9.100271, 45.45656],\n            [9.100271, 45.452063],\n            [9.095774, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.45656],\n            [9.095774, 45.461057],\n            [9.100271, 45.461057],\n            [9.100271, 45.45656],\n            [9.095774, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.461057],\n            [9.095774, 45.465553],\n            [9.100271, 45.465553],\n            [9.100271, 45.461057],\n            [9.095774, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.465553],\n            [9.095774, 45.47005],\n            [9.100271, 45.47005],\n            [9.100271, 45.465553],\n            [9.095774, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.47005],\n            [9.095774, 45.474547],\n            [9.100271, 45.474547],\n            [9.100271, 45.47005],\n            [9.095774, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.474547],\n            [9.095774, 45.479043],\n            [9.100271, 45.479043],\n            [9.100271, 45.474547],\n            [9.095774, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.479043],\n            [9.095774, 45.48354],\n            [9.100271, 45.48354],\n            [9.100271, 45.479043],\n            [9.095774, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.48354],\n            [9.095774, 45.488036],\n            [9.100271, 45.488036],\n            [9.100271, 45.48354],\n            [9.095774, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.488036],\n            [9.095774, 45.492533],\n            [9.100271, 45.492533],\n            [9.100271, 45.488036],\n            [9.095774, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.492533],\n            [9.095774, 45.49703],\n            [9.100271, 45.49703],\n            [9.100271, 45.492533],\n            [9.095774, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.49703],\n            [9.095774, 45.501526],\n            [9.100271, 45.501526],\n            [9.100271, 45.49703],\n            [9.095774, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.501526],\n            [9.095774, 45.506023],\n            [9.100271, 45.506023],\n            [9.100271, 45.501526],\n            [9.095774, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.506023],\n            [9.095774, 45.510519],\n            [9.100271, 45.510519],\n            [9.100271, 45.506023],\n            [9.095774, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.510519],\n            [9.095774, 45.515016],\n            [9.100271, 45.515016],\n            [9.100271, 45.510519],\n            [9.095774, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.515016],\n            [9.095774, 45.519513],\n            [9.100271, 45.519513],\n            [9.100271, 45.515016],\n            [9.095774, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.519513],\n            [9.095774, 45.524009],\n            [9.100271, 45.524009],\n            [9.100271, 45.519513],\n            [9.095774, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.524009],\n            [9.095774, 45.528506],\n            [9.100271, 45.528506],\n            [9.100271, 45.524009],\n            [9.095774, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.528506],\n            [9.095774, 45.533002],\n            [9.100271, 45.533002],\n            [9.100271, 45.528506],\n            [9.095774, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.533002],\n            [9.095774, 45.537499],\n            [9.100271, 45.537499],\n            [9.100271, 45.533002],\n            [9.095774, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.537499],\n            [9.095774, 45.541996],\n            [9.100271, 45.541996],\n            [9.100271, 45.537499],\n            [9.095774, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.541996],\n            [9.095774, 45.546492],\n            [9.100271, 45.546492],\n            [9.100271, 45.541996],\n            [9.095774, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.546492],\n            [9.095774, 45.550989],\n            [9.100271, 45.550989],\n            [9.100271, 45.546492],\n            [9.095774, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.550989],\n            [9.095774, 45.555485],\n            [9.100271, 45.555485],\n            [9.100271, 45.550989],\n            [9.095774, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.555485],\n            [9.095774, 45.559982],\n            [9.100271, 45.559982],\n            [9.100271, 45.555485],\n            [9.095774, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.559982],\n            [9.095774, 45.564479],\n            [9.100271, 45.564479],\n            [9.100271, 45.559982],\n            [9.095774, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.564479],\n            [9.095774, 45.568975],\n            [9.100271, 45.568975],\n            [9.100271, 45.564479],\n            [9.095774, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.568975],\n            [9.095774, 45.573472],\n            [9.100271, 45.573472],\n            [9.100271, 45.568975],\n            [9.095774, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.573472],\n            [9.095774, 45.577968],\n            [9.100271, 45.577968],\n            [9.100271, 45.573472],\n            [9.095774, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.577968],\n            [9.095774, 45.582465],\n            [9.100271, 45.582465],\n            [9.100271, 45.577968],\n            [9.095774, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.582465],\n            [9.095774, 45.586962],\n            [9.100271, 45.586962],\n            [9.100271, 45.582465],\n            [9.095774, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.586962],\n            [9.095774, 45.591458],\n            [9.100271, 45.591458],\n            [9.100271, 45.586962],\n            [9.095774, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.591458],\n            [9.095774, 45.595955],\n            [9.100271, 45.595955],\n            [9.100271, 45.591458],\n            [9.095774, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.595955],\n            [9.095774, 45.600451],\n            [9.100271, 45.600451],\n            [9.100271, 45.595955],\n            [9.095774, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.600451],\n            [9.095774, 45.604948],\n            [9.100271, 45.604948],\n            [9.100271, 45.600451],\n            [9.095774, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.604948],\n            [9.095774, 45.609445],\n            [9.100271, 45.609445],\n            [9.100271, 45.604948],\n            [9.095774, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.609445],\n            [9.095774, 45.613941],\n            [9.100271, 45.613941],\n            [9.100271, 45.609445],\n            [9.095774, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.613941],\n            [9.095774, 45.618438],\n            [9.100271, 45.618438],\n            [9.100271, 45.613941],\n            [9.095774, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.618438],\n            [9.095774, 45.622934],\n            [9.100271, 45.622934],\n            [9.100271, 45.618438],\n            [9.095774, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.622934],\n            [9.095774, 45.627431],\n            [9.100271, 45.627431],\n            [9.100271, 45.622934],\n            [9.095774, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.627431],\n            [9.095774, 45.631928],\n            [9.100271, 45.631928],\n            [9.100271, 45.627431],\n            [9.095774, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095774, 45.631928],\n            [9.095774, 45.636424],\n            [9.100271, 45.636424],\n            [9.100271, 45.631928],\n            [9.095774, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.339648],\n            [9.100271, 45.344145],\n            [9.104767, 45.344145],\n            [9.104767, 45.339648],\n            [9.100271, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.344145],\n            [9.100271, 45.348642],\n            [9.104767, 45.348642],\n            [9.104767, 45.344145],\n            [9.100271, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.348642],\n            [9.100271, 45.353138],\n            [9.104767, 45.353138],\n            [9.104767, 45.348642],\n            [9.100271, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.353138],\n            [9.100271, 45.357635],\n            [9.104767, 45.357635],\n            [9.104767, 45.353138],\n            [9.100271, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.357635],\n            [9.100271, 45.362131],\n            [9.104767, 45.362131],\n            [9.104767, 45.357635],\n            [9.100271, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.362131],\n            [9.100271, 45.366628],\n            [9.104767, 45.366628],\n            [9.104767, 45.362131],\n            [9.100271, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.366628],\n            [9.100271, 45.371125],\n            [9.104767, 45.371125],\n            [9.104767, 45.366628],\n            [9.100271, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.371125],\n            [9.100271, 45.375621],\n            [9.104767, 45.375621],\n            [9.104767, 45.371125],\n            [9.100271, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.375621],\n            [9.100271, 45.380118],\n            [9.104767, 45.380118],\n            [9.104767, 45.375621],\n            [9.100271, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.380118],\n            [9.100271, 45.384614],\n            [9.104767, 45.384614],\n            [9.104767, 45.380118],\n            [9.100271, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.384614],\n            [9.100271, 45.389111],\n            [9.104767, 45.389111],\n            [9.104767, 45.384614],\n            [9.100271, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.389111],\n            [9.100271, 45.393608],\n            [9.104767, 45.393608],\n            [9.104767, 45.389111],\n            [9.100271, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.393608],\n            [9.100271, 45.398104],\n            [9.104767, 45.398104],\n            [9.104767, 45.393608],\n            [9.100271, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.398104],\n            [9.100271, 45.402601],\n            [9.104767, 45.402601],\n            [9.104767, 45.398104],\n            [9.100271, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.402601],\n            [9.100271, 45.407097],\n            [9.104767, 45.407097],\n            [9.104767, 45.402601],\n            [9.100271, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.407097],\n            [9.100271, 45.411594],\n            [9.104767, 45.411594],\n            [9.104767, 45.407097],\n            [9.100271, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.411594],\n            [9.100271, 45.416091],\n            [9.104767, 45.416091],\n            [9.104767, 45.411594],\n            [9.100271, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.416091],\n            [9.100271, 45.420587],\n            [9.104767, 45.420587],\n            [9.104767, 45.416091],\n            [9.100271, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.420587],\n            [9.100271, 45.425084],\n            [9.104767, 45.425084],\n            [9.104767, 45.420587],\n            [9.100271, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.425084],\n            [9.100271, 45.42958],\n            [9.104767, 45.42958],\n            [9.104767, 45.425084],\n            [9.100271, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.42958],\n            [9.100271, 45.434077],\n            [9.104767, 45.434077],\n            [9.104767, 45.42958],\n            [9.100271, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.434077],\n            [9.100271, 45.438574],\n            [9.104767, 45.438574],\n            [9.104767, 45.434077],\n            [9.100271, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.438574],\n            [9.100271, 45.44307],\n            [9.104767, 45.44307],\n            [9.104767, 45.438574],\n            [9.100271, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.44307],\n            [9.100271, 45.447567],\n            [9.104767, 45.447567],\n            [9.104767, 45.44307],\n            [9.100271, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.447567],\n            [9.100271, 45.452063],\n            [9.104767, 45.452063],\n            [9.104767, 45.447567],\n            [9.100271, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.452063],\n            [9.100271, 45.45656],\n            [9.104767, 45.45656],\n            [9.104767, 45.452063],\n            [9.100271, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.45656],\n            [9.100271, 45.461057],\n            [9.104767, 45.461057],\n            [9.104767, 45.45656],\n            [9.100271, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.461057],\n            [9.100271, 45.465553],\n            [9.104767, 45.465553],\n            [9.104767, 45.461057],\n            [9.100271, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.465553],\n            [9.100271, 45.47005],\n            [9.104767, 45.47005],\n            [9.104767, 45.465553],\n            [9.100271, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.47005],\n            [9.100271, 45.474547],\n            [9.104767, 45.474547],\n            [9.104767, 45.47005],\n            [9.100271, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.474547],\n            [9.100271, 45.479043],\n            [9.104767, 45.479043],\n            [9.104767, 45.474547],\n            [9.100271, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.479043],\n            [9.100271, 45.48354],\n            [9.104767, 45.48354],\n            [9.104767, 45.479043],\n            [9.100271, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.48354],\n            [9.100271, 45.488036],\n            [9.104767, 45.488036],\n            [9.104767, 45.48354],\n            [9.100271, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.488036],\n            [9.100271, 45.492533],\n            [9.104767, 45.492533],\n            [9.104767, 45.488036],\n            [9.100271, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.492533],\n            [9.100271, 45.49703],\n            [9.104767, 45.49703],\n            [9.104767, 45.492533],\n            [9.100271, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.49703],\n            [9.100271, 45.501526],\n            [9.104767, 45.501526],\n            [9.104767, 45.49703],\n            [9.100271, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.501526],\n            [9.100271, 45.506023],\n            [9.104767, 45.506023],\n            [9.104767, 45.501526],\n            [9.100271, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.506023],\n            [9.100271, 45.510519],\n            [9.104767, 45.510519],\n            [9.104767, 45.506023],\n            [9.100271, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.510519],\n            [9.100271, 45.515016],\n            [9.104767, 45.515016],\n            [9.104767, 45.510519],\n            [9.100271, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.515016],\n            [9.100271, 45.519513],\n            [9.104767, 45.519513],\n            [9.104767, 45.515016],\n            [9.100271, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.519513],\n            [9.100271, 45.524009],\n            [9.104767, 45.524009],\n            [9.104767, 45.519513],\n            [9.100271, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.524009],\n            [9.100271, 45.528506],\n            [9.104767, 45.528506],\n            [9.104767, 45.524009],\n            [9.100271, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.528506],\n            [9.100271, 45.533002],\n            [9.104767, 45.533002],\n            [9.104767, 45.528506],\n            [9.100271, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.533002],\n            [9.100271, 45.537499],\n            [9.104767, 45.537499],\n            [9.104767, 45.533002],\n            [9.100271, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.537499],\n            [9.100271, 45.541996],\n            [9.104767, 45.541996],\n            [9.104767, 45.537499],\n            [9.100271, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.541996],\n            [9.100271, 45.546492],\n            [9.104767, 45.546492],\n            [9.104767, 45.541996],\n            [9.100271, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.546492],\n            [9.100271, 45.550989],\n            [9.104767, 45.550989],\n            [9.104767, 45.546492],\n            [9.100271, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.550989],\n            [9.100271, 45.555485],\n            [9.104767, 45.555485],\n            [9.104767, 45.550989],\n            [9.100271, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.555485],\n            [9.100271, 45.559982],\n            [9.104767, 45.559982],\n            [9.104767, 45.555485],\n            [9.100271, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.559982],\n            [9.100271, 45.564479],\n            [9.104767, 45.564479],\n            [9.104767, 45.559982],\n            [9.100271, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.564479],\n            [9.100271, 45.568975],\n            [9.104767, 45.568975],\n            [9.104767, 45.564479],\n            [9.100271, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.568975],\n            [9.100271, 45.573472],\n            [9.104767, 45.573472],\n            [9.104767, 45.568975],\n            [9.100271, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.573472],\n            [9.100271, 45.577968],\n            [9.104767, 45.577968],\n            [9.104767, 45.573472],\n            [9.100271, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.577968],\n            [9.100271, 45.582465],\n            [9.104767, 45.582465],\n            [9.104767, 45.577968],\n            [9.100271, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.582465],\n            [9.100271, 45.586962],\n            [9.104767, 45.586962],\n            [9.104767, 45.582465],\n            [9.100271, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.586962],\n            [9.100271, 45.591458],\n            [9.104767, 45.591458],\n            [9.104767, 45.586962],\n            [9.100271, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.591458],\n            [9.100271, 45.595955],\n            [9.104767, 45.595955],\n            [9.104767, 45.591458],\n            [9.100271, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.595955],\n            [9.100271, 45.600451],\n            [9.104767, 45.600451],\n            [9.104767, 45.595955],\n            [9.100271, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.600451],\n            [9.100271, 45.604948],\n            [9.104767, 45.604948],\n            [9.104767, 45.600451],\n            [9.100271, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.604948],\n            [9.100271, 45.609445],\n            [9.104767, 45.609445],\n            [9.104767, 45.604948],\n            [9.100271, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.609445],\n            [9.100271, 45.613941],\n            [9.104767, 45.613941],\n            [9.104767, 45.609445],\n            [9.100271, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.613941],\n            [9.100271, 45.618438],\n            [9.104767, 45.618438],\n            [9.104767, 45.613941],\n            [9.100271, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.618438],\n            [9.100271, 45.622934],\n            [9.104767, 45.622934],\n            [9.104767, 45.618438],\n            [9.100271, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.622934],\n            [9.100271, 45.627431],\n            [9.104767, 45.627431],\n            [9.104767, 45.622934],\n            [9.100271, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.627431],\n            [9.100271, 45.631928],\n            [9.104767, 45.631928],\n            [9.104767, 45.627431],\n            [9.100271, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.100271, 45.631928],\n            [9.100271, 45.636424],\n            [9.104767, 45.636424],\n            [9.104767, 45.631928],\n            [9.100271, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.339648],\n            [9.104767, 45.344145],\n            [9.109264, 45.344145],\n            [9.109264, 45.339648],\n            [9.104767, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.344145],\n            [9.104767, 45.348642],\n            [9.109264, 45.348642],\n            [9.109264, 45.344145],\n            [9.104767, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.348642],\n            [9.104767, 45.353138],\n            [9.109264, 45.353138],\n            [9.109264, 45.348642],\n            [9.104767, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.353138],\n            [9.104767, 45.357635],\n            [9.109264, 45.357635],\n            [9.109264, 45.353138],\n            [9.104767, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.357635],\n            [9.104767, 45.362131],\n            [9.109264, 45.362131],\n            [9.109264, 45.357635],\n            [9.104767, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.362131],\n            [9.104767, 45.366628],\n            [9.109264, 45.366628],\n            [9.109264, 45.362131],\n            [9.104767, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.366628],\n            [9.104767, 45.371125],\n            [9.109264, 45.371125],\n            [9.109264, 45.366628],\n            [9.104767, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.371125],\n            [9.104767, 45.375621],\n            [9.109264, 45.375621],\n            [9.109264, 45.371125],\n            [9.104767, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.375621],\n            [9.104767, 45.380118],\n            [9.109264, 45.380118],\n            [9.109264, 45.375621],\n            [9.104767, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.380118],\n            [9.104767, 45.384614],\n            [9.109264, 45.384614],\n            [9.109264, 45.380118],\n            [9.104767, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.384614],\n            [9.104767, 45.389111],\n            [9.109264, 45.389111],\n            [9.109264, 45.384614],\n            [9.104767, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.389111],\n            [9.104767, 45.393608],\n            [9.109264, 45.393608],\n            [9.109264, 45.389111],\n            [9.104767, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.393608],\n            [9.104767, 45.398104],\n            [9.109264, 45.398104],\n            [9.109264, 45.393608],\n            [9.104767, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.398104],\n            [9.104767, 45.402601],\n            [9.109264, 45.402601],\n            [9.109264, 45.398104],\n            [9.104767, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.402601],\n            [9.104767, 45.407097],\n            [9.109264, 45.407097],\n            [9.109264, 45.402601],\n            [9.104767, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.407097],\n            [9.104767, 45.411594],\n            [9.109264, 45.411594],\n            [9.109264, 45.407097],\n            [9.104767, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.411594],\n            [9.104767, 45.416091],\n            [9.109264, 45.416091],\n            [9.109264, 45.411594],\n            [9.104767, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.416091],\n            [9.104767, 45.420587],\n            [9.109264, 45.420587],\n            [9.109264, 45.416091],\n            [9.104767, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.420587],\n            [9.104767, 45.425084],\n            [9.109264, 45.425084],\n            [9.109264, 45.420587],\n            [9.104767, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.425084],\n            [9.104767, 45.42958],\n            [9.109264, 45.42958],\n            [9.109264, 45.425084],\n            [9.104767, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.42958],\n            [9.104767, 45.434077],\n            [9.109264, 45.434077],\n            [9.109264, 45.42958],\n            [9.104767, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.434077],\n            [9.104767, 45.438574],\n            [9.109264, 45.438574],\n            [9.109264, 45.434077],\n            [9.104767, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.438574],\n            [9.104767, 45.44307],\n            [9.109264, 45.44307],\n            [9.109264, 45.438574],\n            [9.104767, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.44307],\n            [9.104767, 45.447567],\n            [9.109264, 45.447567],\n            [9.109264, 45.44307],\n            [9.104767, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.447567],\n            [9.104767, 45.452063],\n            [9.109264, 45.452063],\n            [9.109264, 45.447567],\n            [9.104767, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.452063],\n            [9.104767, 45.45656],\n            [9.109264, 45.45656],\n            [9.109264, 45.452063],\n            [9.104767, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.45656],\n            [9.104767, 45.461057],\n            [9.109264, 45.461057],\n            [9.109264, 45.45656],\n            [9.104767, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.461057],\n            [9.104767, 45.465553],\n            [9.109264, 45.465553],\n            [9.109264, 45.461057],\n            [9.104767, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.465553],\n            [9.104767, 45.47005],\n            [9.109264, 45.47005],\n            [9.109264, 45.465553],\n            [9.104767, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.47005],\n            [9.104767, 45.474547],\n            [9.109264, 45.474547],\n            [9.109264, 45.47005],\n            [9.104767, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.474547],\n            [9.104767, 45.479043],\n            [9.109264, 45.479043],\n            [9.109264, 45.474547],\n            [9.104767, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.479043],\n            [9.104767, 45.48354],\n            [9.109264, 45.48354],\n            [9.109264, 45.479043],\n            [9.104767, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.48354],\n            [9.104767, 45.488036],\n            [9.109264, 45.488036],\n            [9.109264, 45.48354],\n            [9.104767, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.488036],\n            [9.104767, 45.492533],\n            [9.109264, 45.492533],\n            [9.109264, 45.488036],\n            [9.104767, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.492533],\n            [9.104767, 45.49703],\n            [9.109264, 45.49703],\n            [9.109264, 45.492533],\n            [9.104767, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.49703],\n            [9.104767, 45.501526],\n            [9.109264, 45.501526],\n            [9.109264, 45.49703],\n            [9.104767, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.501526],\n            [9.104767, 45.506023],\n            [9.109264, 45.506023],\n            [9.109264, 45.501526],\n            [9.104767, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.506023],\n            [9.104767, 45.510519],\n            [9.109264, 45.510519],\n            [9.109264, 45.506023],\n            [9.104767, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.510519],\n            [9.104767, 45.515016],\n            [9.109264, 45.515016],\n            [9.109264, 45.510519],\n            [9.104767, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.515016],\n            [9.104767, 45.519513],\n            [9.109264, 45.519513],\n            [9.109264, 45.515016],\n            [9.104767, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.519513],\n            [9.104767, 45.524009],\n            [9.109264, 45.524009],\n            [9.109264, 45.519513],\n            [9.104767, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.524009],\n            [9.104767, 45.528506],\n            [9.109264, 45.528506],\n            [9.109264, 45.524009],\n            [9.104767, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.528506],\n            [9.104767, 45.533002],\n            [9.109264, 45.533002],\n            [9.109264, 45.528506],\n            [9.104767, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.533002],\n            [9.104767, 45.537499],\n            [9.109264, 45.537499],\n            [9.109264, 45.533002],\n            [9.104767, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.537499],\n            [9.104767, 45.541996],\n            [9.109264, 45.541996],\n            [9.109264, 45.537499],\n            [9.104767, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.541996],\n            [9.104767, 45.546492],\n            [9.109264, 45.546492],\n            [9.109264, 45.541996],\n            [9.104767, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.546492],\n            [9.104767, 45.550989],\n            [9.109264, 45.550989],\n            [9.109264, 45.546492],\n            [9.104767, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.550989],\n            [9.104767, 45.555485],\n            [9.109264, 45.555485],\n            [9.109264, 45.550989],\n            [9.104767, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.555485],\n            [9.104767, 45.559982],\n            [9.109264, 45.559982],\n            [9.109264, 45.555485],\n            [9.104767, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.559982],\n            [9.104767, 45.564479],\n            [9.109264, 45.564479],\n            [9.109264, 45.559982],\n            [9.104767, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.564479],\n            [9.104767, 45.568975],\n            [9.109264, 45.568975],\n            [9.109264, 45.564479],\n            [9.104767, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.568975],\n            [9.104767, 45.573472],\n            [9.109264, 45.573472],\n            [9.109264, 45.568975],\n            [9.104767, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.573472],\n            [9.104767, 45.577968],\n            [9.109264, 45.577968],\n            [9.109264, 45.573472],\n            [9.104767, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.577968],\n            [9.104767, 45.582465],\n            [9.109264, 45.582465],\n            [9.109264, 45.577968],\n            [9.104767, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.582465],\n            [9.104767, 45.586962],\n            [9.109264, 45.586962],\n            [9.109264, 45.582465],\n            [9.104767, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.586962],\n            [9.104767, 45.591458],\n            [9.109264, 45.591458],\n            [9.109264, 45.586962],\n            [9.104767, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.591458],\n            [9.104767, 45.595955],\n            [9.109264, 45.595955],\n            [9.109264, 45.591458],\n            [9.104767, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.595955],\n            [9.104767, 45.600451],\n            [9.109264, 45.600451],\n            [9.109264, 45.595955],\n            [9.104767, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.600451],\n            [9.104767, 45.604948],\n            [9.109264, 45.604948],\n            [9.109264, 45.600451],\n            [9.104767, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.604948],\n            [9.104767, 45.609445],\n            [9.109264, 45.609445],\n            [9.109264, 45.604948],\n            [9.104767, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.609445],\n            [9.104767, 45.613941],\n            [9.109264, 45.613941],\n            [9.109264, 45.609445],\n            [9.104767, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.613941],\n            [9.104767, 45.618438],\n            [9.109264, 45.618438],\n            [9.109264, 45.613941],\n            [9.104767, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.618438],\n            [9.104767, 45.622934],\n            [9.109264, 45.622934],\n            [9.109264, 45.618438],\n            [9.104767, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.622934],\n            [9.104767, 45.627431],\n            [9.109264, 45.627431],\n            [9.109264, 45.622934],\n            [9.104767, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.627431],\n            [9.104767, 45.631928],\n            [9.109264, 45.631928],\n            [9.109264, 45.627431],\n            [9.104767, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.104767, 45.631928],\n            [9.104767, 45.636424],\n            [9.109264, 45.636424],\n            [9.109264, 45.631928],\n            [9.104767, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.339648],\n            [9.109264, 45.344145],\n            [9.113761, 45.344145],\n            [9.113761, 45.339648],\n            [9.109264, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.344145],\n            [9.109264, 45.348642],\n            [9.113761, 45.348642],\n            [9.113761, 45.344145],\n            [9.109264, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.348642],\n            [9.109264, 45.353138],\n            [9.113761, 45.353138],\n            [9.113761, 45.348642],\n            [9.109264, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.353138],\n            [9.109264, 45.357635],\n            [9.113761, 45.357635],\n            [9.113761, 45.353138],\n            [9.109264, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.357635],\n            [9.109264, 45.362131],\n            [9.113761, 45.362131],\n            [9.113761, 45.357635],\n            [9.109264, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.362131],\n            [9.109264, 45.366628],\n            [9.113761, 45.366628],\n            [9.113761, 45.362131],\n            [9.109264, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.366628],\n            [9.109264, 45.371125],\n            [9.113761, 45.371125],\n            [9.113761, 45.366628],\n            [9.109264, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.371125],\n            [9.109264, 45.375621],\n            [9.113761, 45.375621],\n            [9.113761, 45.371125],\n            [9.109264, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.375621],\n            [9.109264, 45.380118],\n            [9.113761, 45.380118],\n            [9.113761, 45.375621],\n            [9.109264, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.380118],\n            [9.109264, 45.384614],\n            [9.113761, 45.384614],\n            [9.113761, 45.380118],\n            [9.109264, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.384614],\n            [9.109264, 45.389111],\n            [9.113761, 45.389111],\n            [9.113761, 45.384614],\n            [9.109264, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.389111],\n            [9.109264, 45.393608],\n            [9.113761, 45.393608],\n            [9.113761, 45.389111],\n            [9.109264, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.393608],\n            [9.109264, 45.398104],\n            [9.113761, 45.398104],\n            [9.113761, 45.393608],\n            [9.109264, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.398104],\n            [9.109264, 45.402601],\n            [9.113761, 45.402601],\n            [9.113761, 45.398104],\n            [9.109264, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.402601],\n            [9.109264, 45.407097],\n            [9.113761, 45.407097],\n            [9.113761, 45.402601],\n            [9.109264, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.407097],\n            [9.109264, 45.411594],\n            [9.113761, 45.411594],\n            [9.113761, 45.407097],\n            [9.109264, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.411594],\n            [9.109264, 45.416091],\n            [9.113761, 45.416091],\n            [9.113761, 45.411594],\n            [9.109264, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.416091],\n            [9.109264, 45.420587],\n            [9.113761, 45.420587],\n            [9.113761, 45.416091],\n            [9.109264, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.420587],\n            [9.109264, 45.425084],\n            [9.113761, 45.425084],\n            [9.113761, 45.420587],\n            [9.109264, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.425084],\n            [9.109264, 45.42958],\n            [9.113761, 45.42958],\n            [9.113761, 45.425084],\n            [9.109264, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.42958],\n            [9.109264, 45.434077],\n            [9.113761, 45.434077],\n            [9.113761, 45.42958],\n            [9.109264, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 16,\n        \"stroke\": \"#cce7ff\",\n        \"fill\": \"#cce7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.434077],\n            [9.109264, 45.438574],\n            [9.113761, 45.438574],\n            [9.113761, 45.434077],\n            [9.109264, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 16,\n        \"stroke\": \"#cce7ff\",\n        \"fill\": \"#cce7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.438574],\n            [9.109264, 45.44307],\n            [9.113761, 45.44307],\n            [9.113761, 45.438574],\n            [9.109264, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.44307],\n            [9.109264, 45.447567],\n            [9.113761, 45.447567],\n            [9.113761, 45.44307],\n            [9.109264, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.447567],\n            [9.109264, 45.452063],\n            [9.113761, 45.452063],\n            [9.113761, 45.447567],\n            [9.109264, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.452063],\n            [9.109264, 45.45656],\n            [9.113761, 45.45656],\n            [9.113761, 45.452063],\n            [9.109264, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.45656],\n            [9.109264, 45.461057],\n            [9.113761, 45.461057],\n            [9.113761, 45.45656],\n            [9.109264, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.461057],\n            [9.109264, 45.465553],\n            [9.113761, 45.465553],\n            [9.113761, 45.461057],\n            [9.109264, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.465553],\n            [9.109264, 45.47005],\n            [9.113761, 45.47005],\n            [9.113761, 45.465553],\n            [9.109264, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.47005],\n            [9.109264, 45.474547],\n            [9.113761, 45.474547],\n            [9.113761, 45.47005],\n            [9.109264, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.474547],\n            [9.109264, 45.479043],\n            [9.113761, 45.479043],\n            [9.113761, 45.474547],\n            [9.109264, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.479043],\n            [9.109264, 45.48354],\n            [9.113761, 45.48354],\n            [9.113761, 45.479043],\n            [9.109264, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.48354],\n            [9.109264, 45.488036],\n            [9.113761, 45.488036],\n            [9.113761, 45.48354],\n            [9.109264, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.488036],\n            [9.109264, 45.492533],\n            [9.113761, 45.492533],\n            [9.113761, 45.488036],\n            [9.109264, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.492533],\n            [9.109264, 45.49703],\n            [9.113761, 45.49703],\n            [9.113761, 45.492533],\n            [9.109264, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.49703],\n            [9.109264, 45.501526],\n            [9.113761, 45.501526],\n            [9.113761, 45.49703],\n            [9.109264, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.501526],\n            [9.109264, 45.506023],\n            [9.113761, 45.506023],\n            [9.113761, 45.501526],\n            [9.109264, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.506023],\n            [9.109264, 45.510519],\n            [9.113761, 45.510519],\n            [9.113761, 45.506023],\n            [9.109264, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.510519],\n            [9.109264, 45.515016],\n            [9.113761, 45.515016],\n            [9.113761, 45.510519],\n            [9.109264, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.515016],\n            [9.109264, 45.519513],\n            [9.113761, 45.519513],\n            [9.113761, 45.515016],\n            [9.109264, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.519513],\n            [9.109264, 45.524009],\n            [9.113761, 45.524009],\n            [9.113761, 45.519513],\n            [9.109264, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.524009],\n            [9.109264, 45.528506],\n            [9.113761, 45.528506],\n            [9.113761, 45.524009],\n            [9.109264, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.528506],\n            [9.109264, 45.533002],\n            [9.113761, 45.533002],\n            [9.113761, 45.528506],\n            [9.109264, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.533002],\n            [9.109264, 45.537499],\n            [9.113761, 45.537499],\n            [9.113761, 45.533002],\n            [9.109264, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.537499],\n            [9.109264, 45.541996],\n            [9.113761, 45.541996],\n            [9.113761, 45.537499],\n            [9.109264, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.541996],\n            [9.109264, 45.546492],\n            [9.113761, 45.546492],\n            [9.113761, 45.541996],\n            [9.109264, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.546492],\n            [9.109264, 45.550989],\n            [9.113761, 45.550989],\n            [9.113761, 45.546492],\n            [9.109264, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.550989],\n            [9.109264, 45.555485],\n            [9.113761, 45.555485],\n            [9.113761, 45.550989],\n            [9.109264, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.555485],\n            [9.109264, 45.559982],\n            [9.113761, 45.559982],\n            [9.113761, 45.555485],\n            [9.109264, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.559982],\n            [9.109264, 45.564479],\n            [9.113761, 45.564479],\n            [9.113761, 45.559982],\n            [9.109264, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.564479],\n            [9.109264, 45.568975],\n            [9.113761, 45.568975],\n            [9.113761, 45.564479],\n            [9.109264, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.568975],\n            [9.109264, 45.573472],\n            [9.113761, 45.573472],\n            [9.113761, 45.568975],\n            [9.109264, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.573472],\n            [9.109264, 45.577968],\n            [9.113761, 45.577968],\n            [9.113761, 45.573472],\n            [9.109264, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.577968],\n            [9.109264, 45.582465],\n            [9.113761, 45.582465],\n            [9.113761, 45.577968],\n            [9.109264, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.582465],\n            [9.109264, 45.586962],\n            [9.113761, 45.586962],\n            [9.113761, 45.582465],\n            [9.109264, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.586962],\n            [9.109264, 45.591458],\n            [9.113761, 45.591458],\n            [9.113761, 45.586962],\n            [9.109264, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.591458],\n            [9.109264, 45.595955],\n            [9.113761, 45.595955],\n            [9.113761, 45.591458],\n            [9.109264, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.595955],\n            [9.109264, 45.600451],\n            [9.113761, 45.600451],\n            [9.113761, 45.595955],\n            [9.109264, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.600451],\n            [9.109264, 45.604948],\n            [9.113761, 45.604948],\n            [9.113761, 45.600451],\n            [9.109264, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.604948],\n            [9.109264, 45.609445],\n            [9.113761, 45.609445],\n            [9.113761, 45.604948],\n            [9.109264, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.609445],\n            [9.109264, 45.613941],\n            [9.113761, 45.613941],\n            [9.113761, 45.609445],\n            [9.109264, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.613941],\n            [9.109264, 45.618438],\n            [9.113761, 45.618438],\n            [9.113761, 45.613941],\n            [9.109264, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.618438],\n            [9.109264, 45.622934],\n            [9.113761, 45.622934],\n            [9.113761, 45.618438],\n            [9.109264, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.622934],\n            [9.109264, 45.627431],\n            [9.113761, 45.627431],\n            [9.113761, 45.622934],\n            [9.109264, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.627431],\n            [9.109264, 45.631928],\n            [9.113761, 45.631928],\n            [9.113761, 45.627431],\n            [9.109264, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.109264, 45.631928],\n            [9.109264, 45.636424],\n            [9.113761, 45.636424],\n            [9.113761, 45.631928],\n            [9.109264, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.339648],\n            [9.113761, 45.344145],\n            [9.118257, 45.344145],\n            [9.118257, 45.339648],\n            [9.113761, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.344145],\n            [9.113761, 45.348642],\n            [9.118257, 45.348642],\n            [9.118257, 45.344145],\n            [9.113761, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.348642],\n            [9.113761, 45.353138],\n            [9.118257, 45.353138],\n            [9.118257, 45.348642],\n            [9.113761, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.353138],\n            [9.113761, 45.357635],\n            [9.118257, 45.357635],\n            [9.118257, 45.353138],\n            [9.113761, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.357635],\n            [9.113761, 45.362131],\n            [9.118257, 45.362131],\n            [9.118257, 45.357635],\n            [9.113761, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.362131],\n            [9.113761, 45.366628],\n            [9.118257, 45.366628],\n            [9.118257, 45.362131],\n            [9.113761, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.366628],\n            [9.113761, 45.371125],\n            [9.118257, 45.371125],\n            [9.118257, 45.366628],\n            [9.113761, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.371125],\n            [9.113761, 45.375621],\n            [9.118257, 45.375621],\n            [9.118257, 45.371125],\n            [9.113761, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.375621],\n            [9.113761, 45.380118],\n            [9.118257, 45.380118],\n            [9.118257, 45.375621],\n            [9.113761, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.380118],\n            [9.113761, 45.384614],\n            [9.118257, 45.384614],\n            [9.118257, 45.380118],\n            [9.113761, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.384614],\n            [9.113761, 45.389111],\n            [9.118257, 45.389111],\n            [9.118257, 45.384614],\n            [9.113761, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.389111],\n            [9.113761, 45.393608],\n            [9.118257, 45.393608],\n            [9.118257, 45.389111],\n            [9.113761, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.393608],\n            [9.113761, 45.398104],\n            [9.118257, 45.398104],\n            [9.118257, 45.393608],\n            [9.113761, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.398104],\n            [9.113761, 45.402601],\n            [9.118257, 45.402601],\n            [9.118257, 45.398104],\n            [9.113761, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.402601],\n            [9.113761, 45.407097],\n            [9.118257, 45.407097],\n            [9.118257, 45.402601],\n            [9.113761, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.407097],\n            [9.113761, 45.411594],\n            [9.118257, 45.411594],\n            [9.118257, 45.407097],\n            [9.113761, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.411594],\n            [9.113761, 45.416091],\n            [9.118257, 45.416091],\n            [9.118257, 45.411594],\n            [9.113761, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.416091],\n            [9.113761, 45.420587],\n            [9.118257, 45.420587],\n            [9.118257, 45.416091],\n            [9.113761, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.420587],\n            [9.113761, 45.425084],\n            [9.118257, 45.425084],\n            [9.118257, 45.420587],\n            [9.113761, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.425084],\n            [9.113761, 45.42958],\n            [9.118257, 45.42958],\n            [9.118257, 45.425084],\n            [9.113761, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.42958],\n            [9.113761, 45.434077],\n            [9.118257, 45.434077],\n            [9.118257, 45.42958],\n            [9.113761, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 15,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.434077],\n            [9.113761, 45.438574],\n            [9.118257, 45.438574],\n            [9.118257, 45.434077],\n            [9.113761, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 14,\n        \"stroke\": \"#e0f0ff\",\n        \"fill\": \"#e0f0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.438574],\n            [9.113761, 45.44307],\n            [9.118257, 45.44307],\n            [9.118257, 45.438574],\n            [9.113761, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.44307],\n            [9.113761, 45.447567],\n            [9.118257, 45.447567],\n            [9.118257, 45.44307],\n            [9.113761, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.447567],\n            [9.113761, 45.452063],\n            [9.118257, 45.452063],\n            [9.118257, 45.447567],\n            [9.113761, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.452063],\n            [9.113761, 45.45656],\n            [9.118257, 45.45656],\n            [9.118257, 45.452063],\n            [9.113761, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.45656],\n            [9.113761, 45.461057],\n            [9.118257, 45.461057],\n            [9.118257, 45.45656],\n            [9.113761, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.461057],\n            [9.113761, 45.465553],\n            [9.118257, 45.465553],\n            [9.118257, 45.461057],\n            [9.113761, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.465553],\n            [9.113761, 45.47005],\n            [9.118257, 45.47005],\n            [9.118257, 45.465553],\n            [9.113761, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.47005],\n            [9.113761, 45.474547],\n            [9.118257, 45.474547],\n            [9.118257, 45.47005],\n            [9.113761, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.474547],\n            [9.113761, 45.479043],\n            [9.118257, 45.479043],\n            [9.118257, 45.474547],\n            [9.113761, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.479043],\n            [9.113761, 45.48354],\n            [9.118257, 45.48354],\n            [9.118257, 45.479043],\n            [9.113761, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.48354],\n            [9.113761, 45.488036],\n            [9.118257, 45.488036],\n            [9.118257, 45.48354],\n            [9.113761, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.488036],\n            [9.113761, 45.492533],\n            [9.118257, 45.492533],\n            [9.118257, 45.488036],\n            [9.113761, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.492533],\n            [9.113761, 45.49703],\n            [9.118257, 45.49703],\n            [9.118257, 45.492533],\n            [9.113761, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.49703],\n            [9.113761, 45.501526],\n            [9.118257, 45.501526],\n            [9.118257, 45.49703],\n            [9.113761, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.501526],\n            [9.113761, 45.506023],\n            [9.118257, 45.506023],\n            [9.118257, 45.501526],\n            [9.113761, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.506023],\n            [9.113761, 45.510519],\n            [9.118257, 45.510519],\n            [9.118257, 45.506023],\n            [9.113761, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.510519],\n            [9.113761, 45.515016],\n            [9.118257, 45.515016],\n            [9.118257, 45.510519],\n            [9.113761, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.515016],\n            [9.113761, 45.519513],\n            [9.118257, 45.519513],\n            [9.118257, 45.515016],\n            [9.113761, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.519513],\n            [9.113761, 45.524009],\n            [9.118257, 45.524009],\n            [9.118257, 45.519513],\n            [9.113761, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.524009],\n            [9.113761, 45.528506],\n            [9.118257, 45.528506],\n            [9.118257, 45.524009],\n            [9.113761, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.528506],\n            [9.113761, 45.533002],\n            [9.118257, 45.533002],\n            [9.118257, 45.528506],\n            [9.113761, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.533002],\n            [9.113761, 45.537499],\n            [9.118257, 45.537499],\n            [9.118257, 45.533002],\n            [9.113761, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.537499],\n            [9.113761, 45.541996],\n            [9.118257, 45.541996],\n            [9.118257, 45.537499],\n            [9.113761, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.541996],\n            [9.113761, 45.546492],\n            [9.118257, 45.546492],\n            [9.118257, 45.541996],\n            [9.113761, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.546492],\n            [9.113761, 45.550989],\n            [9.118257, 45.550989],\n            [9.118257, 45.546492],\n            [9.113761, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.550989],\n            [9.113761, 45.555485],\n            [9.118257, 45.555485],\n            [9.118257, 45.550989],\n            [9.113761, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.555485],\n            [9.113761, 45.559982],\n            [9.118257, 45.559982],\n            [9.118257, 45.555485],\n            [9.113761, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.559982],\n            [9.113761, 45.564479],\n            [9.118257, 45.564479],\n            [9.118257, 45.559982],\n            [9.113761, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.564479],\n            [9.113761, 45.568975],\n            [9.118257, 45.568975],\n            [9.118257, 45.564479],\n            [9.113761, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.568975],\n            [9.113761, 45.573472],\n            [9.118257, 45.573472],\n            [9.118257, 45.568975],\n            [9.113761, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.573472],\n            [9.113761, 45.577968],\n            [9.118257, 45.577968],\n            [9.118257, 45.573472],\n            [9.113761, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.577968],\n            [9.113761, 45.582465],\n            [9.118257, 45.582465],\n            [9.118257, 45.577968],\n            [9.113761, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.582465],\n            [9.113761, 45.586962],\n            [9.118257, 45.586962],\n            [9.118257, 45.582465],\n            [9.113761, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.586962],\n            [9.113761, 45.591458],\n            [9.118257, 45.591458],\n            [9.118257, 45.586962],\n            [9.113761, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.591458],\n            [9.113761, 45.595955],\n            [9.118257, 45.595955],\n            [9.118257, 45.591458],\n            [9.113761, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.595955],\n            [9.113761, 45.600451],\n            [9.118257, 45.600451],\n            [9.118257, 45.595955],\n            [9.113761, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.600451],\n            [9.113761, 45.604948],\n            [9.118257, 45.604948],\n            [9.118257, 45.600451],\n            [9.113761, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.604948],\n            [9.113761, 45.609445],\n            [9.118257, 45.609445],\n            [9.118257, 45.604948],\n            [9.113761, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.609445],\n            [9.113761, 45.613941],\n            [9.118257, 45.613941],\n            [9.118257, 45.609445],\n            [9.113761, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.613941],\n            [9.113761, 45.618438],\n            [9.118257, 45.618438],\n            [9.118257, 45.613941],\n            [9.113761, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.618438],\n            [9.113761, 45.622934],\n            [9.118257, 45.622934],\n            [9.118257, 45.618438],\n            [9.113761, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.622934],\n            [9.113761, 45.627431],\n            [9.118257, 45.627431],\n            [9.118257, 45.622934],\n            [9.113761, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.627431],\n            [9.113761, 45.631928],\n            [9.118257, 45.631928],\n            [9.118257, 45.627431],\n            [9.113761, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.113761, 45.631928],\n            [9.113761, 45.636424],\n            [9.118257, 45.636424],\n            [9.118257, 45.631928],\n            [9.113761, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.339648],\n            [9.118257, 45.344145],\n            [9.122754, 45.344145],\n            [9.122754, 45.339648],\n            [9.118257, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.344145],\n            [9.118257, 45.348642],\n            [9.122754, 45.348642],\n            [9.122754, 45.344145],\n            [9.118257, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.348642],\n            [9.118257, 45.353138],\n            [9.122754, 45.353138],\n            [9.122754, 45.348642],\n            [9.118257, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.353138],\n            [9.118257, 45.357635],\n            [9.122754, 45.357635],\n            [9.122754, 45.353138],\n            [9.118257, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.357635],\n            [9.118257, 45.362131],\n            [9.122754, 45.362131],\n            [9.122754, 45.357635],\n            [9.118257, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.362131],\n            [9.118257, 45.366628],\n            [9.122754, 45.366628],\n            [9.122754, 45.362131],\n            [9.118257, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.366628],\n            [9.118257, 45.371125],\n            [9.122754, 45.371125],\n            [9.122754, 45.366628],\n            [9.118257, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.371125],\n            [9.118257, 45.375621],\n            [9.122754, 45.375621],\n            [9.122754, 45.371125],\n            [9.118257, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.375621],\n            [9.118257, 45.380118],\n            [9.122754, 45.380118],\n            [9.122754, 45.375621],\n            [9.118257, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.380118],\n            [9.118257, 45.384614],\n            [9.122754, 45.384614],\n            [9.122754, 45.380118],\n            [9.118257, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.384614],\n            [9.118257, 45.389111],\n            [9.122754, 45.389111],\n            [9.122754, 45.384614],\n            [9.118257, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.389111],\n            [9.118257, 45.393608],\n            [9.122754, 45.393608],\n            [9.122754, 45.389111],\n            [9.118257, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.393608],\n            [9.118257, 45.398104],\n            [9.122754, 45.398104],\n            [9.122754, 45.393608],\n            [9.118257, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.398104],\n            [9.118257, 45.402601],\n            [9.122754, 45.402601],\n            [9.122754, 45.398104],\n            [9.118257, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.402601],\n            [9.118257, 45.407097],\n            [9.122754, 45.407097],\n            [9.122754, 45.402601],\n            [9.118257, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.407097],\n            [9.118257, 45.411594],\n            [9.122754, 45.411594],\n            [9.122754, 45.407097],\n            [9.118257, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.411594],\n            [9.118257, 45.416091],\n            [9.122754, 45.416091],\n            [9.122754, 45.411594],\n            [9.118257, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.416091],\n            [9.118257, 45.420587],\n            [9.122754, 45.420587],\n            [9.122754, 45.416091],\n            [9.118257, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.420587],\n            [9.118257, 45.425084],\n            [9.122754, 45.425084],\n            [9.122754, 45.420587],\n            [9.118257, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.425084],\n            [9.118257, 45.42958],\n            [9.122754, 45.42958],\n            [9.122754, 45.425084],\n            [9.118257, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.42958],\n            [9.118257, 45.434077],\n            [9.122754, 45.434077],\n            [9.122754, 45.42958],\n            [9.118257, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 16,\n        \"stroke\": \"#cce7ff\",\n        \"fill\": \"#cce7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.434077],\n            [9.118257, 45.438574],\n            [9.122754, 45.438574],\n            [9.122754, 45.434077],\n            [9.118257, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 15,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.438574],\n            [9.118257, 45.44307],\n            [9.122754, 45.44307],\n            [9.122754, 45.438574],\n            [9.118257, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.44307],\n            [9.118257, 45.447567],\n            [9.122754, 45.447567],\n            [9.122754, 45.44307],\n            [9.118257, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.447567],\n            [9.118257, 45.452063],\n            [9.122754, 45.452063],\n            [9.122754, 45.447567],\n            [9.118257, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.452063],\n            [9.118257, 45.45656],\n            [9.122754, 45.45656],\n            [9.122754, 45.452063],\n            [9.118257, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.45656],\n            [9.118257, 45.461057],\n            [9.122754, 45.461057],\n            [9.122754, 45.45656],\n            [9.118257, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.461057],\n            [9.118257, 45.465553],\n            [9.122754, 45.465553],\n            [9.122754, 45.461057],\n            [9.118257, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.465553],\n            [9.118257, 45.47005],\n            [9.122754, 45.47005],\n            [9.122754, 45.465553],\n            [9.118257, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.47005],\n            [9.118257, 45.474547],\n            [9.122754, 45.474547],\n            [9.122754, 45.47005],\n            [9.118257, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.474547],\n            [9.118257, 45.479043],\n            [9.122754, 45.479043],\n            [9.122754, 45.474547],\n            [9.118257, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.479043],\n            [9.118257, 45.48354],\n            [9.122754, 45.48354],\n            [9.122754, 45.479043],\n            [9.118257, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.48354],\n            [9.118257, 45.488036],\n            [9.122754, 45.488036],\n            [9.122754, 45.48354],\n            [9.118257, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.488036],\n            [9.118257, 45.492533],\n            [9.122754, 45.492533],\n            [9.122754, 45.488036],\n            [9.118257, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.492533],\n            [9.118257, 45.49703],\n            [9.122754, 45.49703],\n            [9.122754, 45.492533],\n            [9.118257, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.49703],\n            [9.118257, 45.501526],\n            [9.122754, 45.501526],\n            [9.122754, 45.49703],\n            [9.118257, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.501526],\n            [9.118257, 45.506023],\n            [9.122754, 45.506023],\n            [9.122754, 45.501526],\n            [9.118257, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.506023],\n            [9.118257, 45.510519],\n            [9.122754, 45.510519],\n            [9.122754, 45.506023],\n            [9.118257, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.510519],\n            [9.118257, 45.515016],\n            [9.122754, 45.515016],\n            [9.122754, 45.510519],\n            [9.118257, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.515016],\n            [9.118257, 45.519513],\n            [9.122754, 45.519513],\n            [9.122754, 45.515016],\n            [9.118257, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.519513],\n            [9.118257, 45.524009],\n            [9.122754, 45.524009],\n            [9.122754, 45.519513],\n            [9.118257, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.524009],\n            [9.118257, 45.528506],\n            [9.122754, 45.528506],\n            [9.122754, 45.524009],\n            [9.118257, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.528506],\n            [9.118257, 45.533002],\n            [9.122754, 45.533002],\n            [9.122754, 45.528506],\n            [9.118257, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.533002],\n            [9.118257, 45.537499],\n            [9.122754, 45.537499],\n            [9.122754, 45.533002],\n            [9.118257, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.537499],\n            [9.118257, 45.541996],\n            [9.122754, 45.541996],\n            [9.122754, 45.537499],\n            [9.118257, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.541996],\n            [9.118257, 45.546492],\n            [9.122754, 45.546492],\n            [9.122754, 45.541996],\n            [9.118257, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.546492],\n            [9.118257, 45.550989],\n            [9.122754, 45.550989],\n            [9.122754, 45.546492],\n            [9.118257, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.550989],\n            [9.118257, 45.555485],\n            [9.122754, 45.555485],\n            [9.122754, 45.550989],\n            [9.118257, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.555485],\n            [9.118257, 45.559982],\n            [9.122754, 45.559982],\n            [9.122754, 45.555485],\n            [9.118257, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.559982],\n            [9.118257, 45.564479],\n            [9.122754, 45.564479],\n            [9.122754, 45.559982],\n            [9.118257, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.564479],\n            [9.118257, 45.568975],\n            [9.122754, 45.568975],\n            [9.122754, 45.564479],\n            [9.118257, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.568975],\n            [9.118257, 45.573472],\n            [9.122754, 45.573472],\n            [9.122754, 45.568975],\n            [9.118257, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.573472],\n            [9.118257, 45.577968],\n            [9.122754, 45.577968],\n            [9.122754, 45.573472],\n            [9.118257, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.577968],\n            [9.118257, 45.582465],\n            [9.122754, 45.582465],\n            [9.122754, 45.577968],\n            [9.118257, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.582465],\n            [9.118257, 45.586962],\n            [9.122754, 45.586962],\n            [9.122754, 45.582465],\n            [9.118257, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.586962],\n            [9.118257, 45.591458],\n            [9.122754, 45.591458],\n            [9.122754, 45.586962],\n            [9.118257, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.591458],\n            [9.118257, 45.595955],\n            [9.122754, 45.595955],\n            [9.122754, 45.591458],\n            [9.118257, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.595955],\n            [9.118257, 45.600451],\n            [9.122754, 45.600451],\n            [9.122754, 45.595955],\n            [9.118257, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.600451],\n            [9.118257, 45.604948],\n            [9.122754, 45.604948],\n            [9.122754, 45.600451],\n            [9.118257, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.604948],\n            [9.118257, 45.609445],\n            [9.122754, 45.609445],\n            [9.122754, 45.604948],\n            [9.118257, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.609445],\n            [9.118257, 45.613941],\n            [9.122754, 45.613941],\n            [9.122754, 45.609445],\n            [9.118257, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.613941],\n            [9.118257, 45.618438],\n            [9.122754, 45.618438],\n            [9.122754, 45.613941],\n            [9.118257, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.618438],\n            [9.118257, 45.622934],\n            [9.122754, 45.622934],\n            [9.122754, 45.618438],\n            [9.118257, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.622934],\n            [9.118257, 45.627431],\n            [9.122754, 45.627431],\n            [9.122754, 45.622934],\n            [9.118257, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.627431],\n            [9.118257, 45.631928],\n            [9.122754, 45.631928],\n            [9.122754, 45.627431],\n            [9.118257, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.118257, 45.631928],\n            [9.118257, 45.636424],\n            [9.122754, 45.636424],\n            [9.122754, 45.631928],\n            [9.118257, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.339648],\n            [9.122754, 45.344145],\n            [9.12725, 45.344145],\n            [9.12725, 45.339648],\n            [9.122754, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.344145],\n            [9.122754, 45.348642],\n            [9.12725, 45.348642],\n            [9.12725, 45.344145],\n            [9.122754, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.348642],\n            [9.122754, 45.353138],\n            [9.12725, 45.353138],\n            [9.12725, 45.348642],\n            [9.122754, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.353138],\n            [9.122754, 45.357635],\n            [9.12725, 45.357635],\n            [9.12725, 45.353138],\n            [9.122754, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.357635],\n            [9.122754, 45.362131],\n            [9.12725, 45.362131],\n            [9.12725, 45.357635],\n            [9.122754, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.362131],\n            [9.122754, 45.366628],\n            [9.12725, 45.366628],\n            [9.12725, 45.362131],\n            [9.122754, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.366628],\n            [9.122754, 45.371125],\n            [9.12725, 45.371125],\n            [9.12725, 45.366628],\n            [9.122754, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.371125],\n            [9.122754, 45.375621],\n            [9.12725, 45.375621],\n            [9.12725, 45.371125],\n            [9.122754, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.375621],\n            [9.122754, 45.380118],\n            [9.12725, 45.380118],\n            [9.12725, 45.375621],\n            [9.122754, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.380118],\n            [9.122754, 45.384614],\n            [9.12725, 45.384614],\n            [9.12725, 45.380118],\n            [9.122754, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.384614],\n            [9.122754, 45.389111],\n            [9.12725, 45.389111],\n            [9.12725, 45.384614],\n            [9.122754, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.389111],\n            [9.122754, 45.393608],\n            [9.12725, 45.393608],\n            [9.12725, 45.389111],\n            [9.122754, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.393608],\n            [9.122754, 45.398104],\n            [9.12725, 45.398104],\n            [9.12725, 45.393608],\n            [9.122754, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.398104],\n            [9.122754, 45.402601],\n            [9.12725, 45.402601],\n            [9.12725, 45.398104],\n            [9.122754, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.402601],\n            [9.122754, 45.407097],\n            [9.12725, 45.407097],\n            [9.12725, 45.402601],\n            [9.122754, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.407097],\n            [9.122754, 45.411594],\n            [9.12725, 45.411594],\n            [9.12725, 45.407097],\n            [9.122754, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.411594],\n            [9.122754, 45.416091],\n            [9.12725, 45.416091],\n            [9.12725, 45.411594],\n            [9.122754, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.416091],\n            [9.122754, 45.420587],\n            [9.12725, 45.420587],\n            [9.12725, 45.416091],\n            [9.122754, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.420587],\n            [9.122754, 45.425084],\n            [9.12725, 45.425084],\n            [9.12725, 45.420587],\n            [9.122754, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.425084],\n            [9.122754, 45.42958],\n            [9.12725, 45.42958],\n            [9.12725, 45.425084],\n            [9.122754, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.42958],\n            [9.122754, 45.434077],\n            [9.12725, 45.434077],\n            [9.12725, 45.42958],\n            [9.122754, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.434077],\n            [9.122754, 45.438574],\n            [9.12725, 45.438574],\n            [9.12725, 45.434077],\n            [9.122754, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.438574],\n            [9.122754, 45.44307],\n            [9.12725, 45.44307],\n            [9.12725, 45.438574],\n            [9.122754, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.44307],\n            [9.122754, 45.447567],\n            [9.12725, 45.447567],\n            [9.12725, 45.44307],\n            [9.122754, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.447567],\n            [9.122754, 45.452063],\n            [9.12725, 45.452063],\n            [9.12725, 45.447567],\n            [9.122754, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.452063],\n            [9.122754, 45.45656],\n            [9.12725, 45.45656],\n            [9.12725, 45.452063],\n            [9.122754, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.45656],\n            [9.122754, 45.461057],\n            [9.12725, 45.461057],\n            [9.12725, 45.45656],\n            [9.122754, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.461057],\n            [9.122754, 45.465553],\n            [9.12725, 45.465553],\n            [9.12725, 45.461057],\n            [9.122754, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.465553],\n            [9.122754, 45.47005],\n            [9.12725, 45.47005],\n            [9.12725, 45.465553],\n            [9.122754, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.47005],\n            [9.122754, 45.474547],\n            [9.12725, 45.474547],\n            [9.12725, 45.47005],\n            [9.122754, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.474547],\n            [9.122754, 45.479043],\n            [9.12725, 45.479043],\n            [9.12725, 45.474547],\n            [9.122754, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.479043],\n            [9.122754, 45.48354],\n            [9.12725, 45.48354],\n            [9.12725, 45.479043],\n            [9.122754, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.48354],\n            [9.122754, 45.488036],\n            [9.12725, 45.488036],\n            [9.12725, 45.48354],\n            [9.122754, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.488036],\n            [9.122754, 45.492533],\n            [9.12725, 45.492533],\n            [9.12725, 45.488036],\n            [9.122754, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.492533],\n            [9.122754, 45.49703],\n            [9.12725, 45.49703],\n            [9.12725, 45.492533],\n            [9.122754, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.49703],\n            [9.122754, 45.501526],\n            [9.12725, 45.501526],\n            [9.12725, 45.49703],\n            [9.122754, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.501526],\n            [9.122754, 45.506023],\n            [9.12725, 45.506023],\n            [9.12725, 45.501526],\n            [9.122754, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.506023],\n            [9.122754, 45.510519],\n            [9.12725, 45.510519],\n            [9.12725, 45.506023],\n            [9.122754, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.510519],\n            [9.122754, 45.515016],\n            [9.12725, 45.515016],\n            [9.12725, 45.510519],\n            [9.122754, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.515016],\n            [9.122754, 45.519513],\n            [9.12725, 45.519513],\n            [9.12725, 45.515016],\n            [9.122754, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.519513],\n            [9.122754, 45.524009],\n            [9.12725, 45.524009],\n            [9.12725, 45.519513],\n            [9.122754, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.524009],\n            [9.122754, 45.528506],\n            [9.12725, 45.528506],\n            [9.12725, 45.524009],\n            [9.122754, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.528506],\n            [9.122754, 45.533002],\n            [9.12725, 45.533002],\n            [9.12725, 45.528506],\n            [9.122754, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.533002],\n            [9.122754, 45.537499],\n            [9.12725, 45.537499],\n            [9.12725, 45.533002],\n            [9.122754, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.537499],\n            [9.122754, 45.541996],\n            [9.12725, 45.541996],\n            [9.12725, 45.537499],\n            [9.122754, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.541996],\n            [9.122754, 45.546492],\n            [9.12725, 45.546492],\n            [9.12725, 45.541996],\n            [9.122754, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.546492],\n            [9.122754, 45.550989],\n            [9.12725, 45.550989],\n            [9.12725, 45.546492],\n            [9.122754, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.550989],\n            [9.122754, 45.555485],\n            [9.12725, 45.555485],\n            [9.12725, 45.550989],\n            [9.122754, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.555485],\n            [9.122754, 45.559982],\n            [9.12725, 45.559982],\n            [9.12725, 45.555485],\n            [9.122754, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.559982],\n            [9.122754, 45.564479],\n            [9.12725, 45.564479],\n            [9.12725, 45.559982],\n            [9.122754, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.564479],\n            [9.122754, 45.568975],\n            [9.12725, 45.568975],\n            [9.12725, 45.564479],\n            [9.122754, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.568975],\n            [9.122754, 45.573472],\n            [9.12725, 45.573472],\n            [9.12725, 45.568975],\n            [9.122754, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.573472],\n            [9.122754, 45.577968],\n            [9.12725, 45.577968],\n            [9.12725, 45.573472],\n            [9.122754, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.577968],\n            [9.122754, 45.582465],\n            [9.12725, 45.582465],\n            [9.12725, 45.577968],\n            [9.122754, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.582465],\n            [9.122754, 45.586962],\n            [9.12725, 45.586962],\n            [9.12725, 45.582465],\n            [9.122754, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.586962],\n            [9.122754, 45.591458],\n            [9.12725, 45.591458],\n            [9.12725, 45.586962],\n            [9.122754, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.591458],\n            [9.122754, 45.595955],\n            [9.12725, 45.595955],\n            [9.12725, 45.591458],\n            [9.122754, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.595955],\n            [9.122754, 45.600451],\n            [9.12725, 45.600451],\n            [9.12725, 45.595955],\n            [9.122754, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.600451],\n            [9.122754, 45.604948],\n            [9.12725, 45.604948],\n            [9.12725, 45.600451],\n            [9.122754, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.604948],\n            [9.122754, 45.609445],\n            [9.12725, 45.609445],\n            [9.12725, 45.604948],\n            [9.122754, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.609445],\n            [9.122754, 45.613941],\n            [9.12725, 45.613941],\n            [9.12725, 45.609445],\n            [9.122754, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.613941],\n            [9.122754, 45.618438],\n            [9.12725, 45.618438],\n            [9.12725, 45.613941],\n            [9.122754, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.618438],\n            [9.122754, 45.622934],\n            [9.12725, 45.622934],\n            [9.12725, 45.618438],\n            [9.122754, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.622934],\n            [9.122754, 45.627431],\n            [9.12725, 45.627431],\n            [9.12725, 45.622934],\n            [9.122754, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.627431],\n            [9.122754, 45.631928],\n            [9.12725, 45.631928],\n            [9.12725, 45.627431],\n            [9.122754, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122754, 45.631928],\n            [9.122754, 45.636424],\n            [9.12725, 45.636424],\n            [9.12725, 45.631928],\n            [9.122754, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.339648],\n            [9.12725, 45.344145],\n            [9.131747, 45.344145],\n            [9.131747, 45.339648],\n            [9.12725, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.344145],\n            [9.12725, 45.348642],\n            [9.131747, 45.348642],\n            [9.131747, 45.344145],\n            [9.12725, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.348642],\n            [9.12725, 45.353138],\n            [9.131747, 45.353138],\n            [9.131747, 45.348642],\n            [9.12725, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.353138],\n            [9.12725, 45.357635],\n            [9.131747, 45.357635],\n            [9.131747, 45.353138],\n            [9.12725, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.357635],\n            [9.12725, 45.362131],\n            [9.131747, 45.362131],\n            [9.131747, 45.357635],\n            [9.12725, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.362131],\n            [9.12725, 45.366628],\n            [9.131747, 45.366628],\n            [9.131747, 45.362131],\n            [9.12725, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.366628],\n            [9.12725, 45.371125],\n            [9.131747, 45.371125],\n            [9.131747, 45.366628],\n            [9.12725, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.371125],\n            [9.12725, 45.375621],\n            [9.131747, 45.375621],\n            [9.131747, 45.371125],\n            [9.12725, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.375621],\n            [9.12725, 45.380118],\n            [9.131747, 45.380118],\n            [9.131747, 45.375621],\n            [9.12725, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.380118],\n            [9.12725, 45.384614],\n            [9.131747, 45.384614],\n            [9.131747, 45.380118],\n            [9.12725, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.384614],\n            [9.12725, 45.389111],\n            [9.131747, 45.389111],\n            [9.131747, 45.384614],\n            [9.12725, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.389111],\n            [9.12725, 45.393608],\n            [9.131747, 45.393608],\n            [9.131747, 45.389111],\n            [9.12725, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.393608],\n            [9.12725, 45.398104],\n            [9.131747, 45.398104],\n            [9.131747, 45.393608],\n            [9.12725, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.398104],\n            [9.12725, 45.402601],\n            [9.131747, 45.402601],\n            [9.131747, 45.398104],\n            [9.12725, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.402601],\n            [9.12725, 45.407097],\n            [9.131747, 45.407097],\n            [9.131747, 45.402601],\n            [9.12725, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.407097],\n            [9.12725, 45.411594],\n            [9.131747, 45.411594],\n            [9.131747, 45.407097],\n            [9.12725, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.411594],\n            [9.12725, 45.416091],\n            [9.131747, 45.416091],\n            [9.131747, 45.411594],\n            [9.12725, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.416091],\n            [9.12725, 45.420587],\n            [9.131747, 45.420587],\n            [9.131747, 45.416091],\n            [9.12725, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.420587],\n            [9.12725, 45.425084],\n            [9.131747, 45.425084],\n            [9.131747, 45.420587],\n            [9.12725, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.425084],\n            [9.12725, 45.42958],\n            [9.131747, 45.42958],\n            [9.131747, 45.425084],\n            [9.12725, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.42958],\n            [9.12725, 45.434077],\n            [9.131747, 45.434077],\n            [9.131747, 45.42958],\n            [9.12725, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.434077],\n            [9.12725, 45.438574],\n            [9.131747, 45.438574],\n            [9.131747, 45.434077],\n            [9.12725, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.438574],\n            [9.12725, 45.44307],\n            [9.131747, 45.44307],\n            [9.131747, 45.438574],\n            [9.12725, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.44307],\n            [9.12725, 45.447567],\n            [9.131747, 45.447567],\n            [9.131747, 45.44307],\n            [9.12725, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.447567],\n            [9.12725, 45.452063],\n            [9.131747, 45.452063],\n            [9.131747, 45.447567],\n            [9.12725, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.452063],\n            [9.12725, 45.45656],\n            [9.131747, 45.45656],\n            [9.131747, 45.452063],\n            [9.12725, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.45656],\n            [9.12725, 45.461057],\n            [9.131747, 45.461057],\n            [9.131747, 45.45656],\n            [9.12725, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.461057],\n            [9.12725, 45.465553],\n            [9.131747, 45.465553],\n            [9.131747, 45.461057],\n            [9.12725, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.465553],\n            [9.12725, 45.47005],\n            [9.131747, 45.47005],\n            [9.131747, 45.465553],\n            [9.12725, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.47005],\n            [9.12725, 45.474547],\n            [9.131747, 45.474547],\n            [9.131747, 45.47005],\n            [9.12725, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.474547],\n            [9.12725, 45.479043],\n            [9.131747, 45.479043],\n            [9.131747, 45.474547],\n            [9.12725, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.479043],\n            [9.12725, 45.48354],\n            [9.131747, 45.48354],\n            [9.131747, 45.479043],\n            [9.12725, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.48354],\n            [9.12725, 45.488036],\n            [9.131747, 45.488036],\n            [9.131747, 45.48354],\n            [9.12725, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.488036],\n            [9.12725, 45.492533],\n            [9.131747, 45.492533],\n            [9.131747, 45.488036],\n            [9.12725, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.492533],\n            [9.12725, 45.49703],\n            [9.131747, 45.49703],\n            [9.131747, 45.492533],\n            [9.12725, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.49703],\n            [9.12725, 45.501526],\n            [9.131747, 45.501526],\n            [9.131747, 45.49703],\n            [9.12725, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.501526],\n            [9.12725, 45.506023],\n            [9.131747, 45.506023],\n            [9.131747, 45.501526],\n            [9.12725, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.506023],\n            [9.12725, 45.510519],\n            [9.131747, 45.510519],\n            [9.131747, 45.506023],\n            [9.12725, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.510519],\n            [9.12725, 45.515016],\n            [9.131747, 45.515016],\n            [9.131747, 45.510519],\n            [9.12725, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.515016],\n            [9.12725, 45.519513],\n            [9.131747, 45.519513],\n            [9.131747, 45.515016],\n            [9.12725, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.519513],\n            [9.12725, 45.524009],\n            [9.131747, 45.524009],\n            [9.131747, 45.519513],\n            [9.12725, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.524009],\n            [9.12725, 45.528506],\n            [9.131747, 45.528506],\n            [9.131747, 45.524009],\n            [9.12725, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.528506],\n            [9.12725, 45.533002],\n            [9.131747, 45.533002],\n            [9.131747, 45.528506],\n            [9.12725, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.533002],\n            [9.12725, 45.537499],\n            [9.131747, 45.537499],\n            [9.131747, 45.533002],\n            [9.12725, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.537499],\n            [9.12725, 45.541996],\n            [9.131747, 45.541996],\n            [9.131747, 45.537499],\n            [9.12725, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.541996],\n            [9.12725, 45.546492],\n            [9.131747, 45.546492],\n            [9.131747, 45.541996],\n            [9.12725, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.546492],\n            [9.12725, 45.550989],\n            [9.131747, 45.550989],\n            [9.131747, 45.546492],\n            [9.12725, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.550989],\n            [9.12725, 45.555485],\n            [9.131747, 45.555485],\n            [9.131747, 45.550989],\n            [9.12725, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.555485],\n            [9.12725, 45.559982],\n            [9.131747, 45.559982],\n            [9.131747, 45.555485],\n            [9.12725, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.559982],\n            [9.12725, 45.564479],\n            [9.131747, 45.564479],\n            [9.131747, 45.559982],\n            [9.12725, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.564479],\n            [9.12725, 45.568975],\n            [9.131747, 45.568975],\n            [9.131747, 45.564479],\n            [9.12725, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.568975],\n            [9.12725, 45.573472],\n            [9.131747, 45.573472],\n            [9.131747, 45.568975],\n            [9.12725, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.573472],\n            [9.12725, 45.577968],\n            [9.131747, 45.577968],\n            [9.131747, 45.573472],\n            [9.12725, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.577968],\n            [9.12725, 45.582465],\n            [9.131747, 45.582465],\n            [9.131747, 45.577968],\n            [9.12725, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.582465],\n            [9.12725, 45.586962],\n            [9.131747, 45.586962],\n            [9.131747, 45.582465],\n            [9.12725, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.586962],\n            [9.12725, 45.591458],\n            [9.131747, 45.591458],\n            [9.131747, 45.586962],\n            [9.12725, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.591458],\n            [9.12725, 45.595955],\n            [9.131747, 45.595955],\n            [9.131747, 45.591458],\n            [9.12725, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.595955],\n            [9.12725, 45.600451],\n            [9.131747, 45.600451],\n            [9.131747, 45.595955],\n            [9.12725, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.600451],\n            [9.12725, 45.604948],\n            [9.131747, 45.604948],\n            [9.131747, 45.600451],\n            [9.12725, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.604948],\n            [9.12725, 45.609445],\n            [9.131747, 45.609445],\n            [9.131747, 45.604948],\n            [9.12725, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.609445],\n            [9.12725, 45.613941],\n            [9.131747, 45.613941],\n            [9.131747, 45.609445],\n            [9.12725, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.613941],\n            [9.12725, 45.618438],\n            [9.131747, 45.618438],\n            [9.131747, 45.613941],\n            [9.12725, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.618438],\n            [9.12725, 45.622934],\n            [9.131747, 45.622934],\n            [9.131747, 45.618438],\n            [9.12725, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.622934],\n            [9.12725, 45.627431],\n            [9.131747, 45.627431],\n            [9.131747, 45.622934],\n            [9.12725, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.627431],\n            [9.12725, 45.631928],\n            [9.131747, 45.631928],\n            [9.131747, 45.627431],\n            [9.12725, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.12725, 45.631928],\n            [9.12725, 45.636424],\n            [9.131747, 45.636424],\n            [9.131747, 45.631928],\n            [9.12725, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.339648],\n            [9.131747, 45.344145],\n            [9.136244, 45.344145],\n            [9.136244, 45.339648],\n            [9.131747, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.344145],\n            [9.131747, 45.348642],\n            [9.136244, 45.348642],\n            [9.136244, 45.344145],\n            [9.131747, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.348642],\n            [9.131747, 45.353138],\n            [9.136244, 45.353138],\n            [9.136244, 45.348642],\n            [9.131747, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.353138],\n            [9.131747, 45.357635],\n            [9.136244, 45.357635],\n            [9.136244, 45.353138],\n            [9.131747, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.357635],\n            [9.131747, 45.362131],\n            [9.136244, 45.362131],\n            [9.136244, 45.357635],\n            [9.131747, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.362131],\n            [9.131747, 45.366628],\n            [9.136244, 45.366628],\n            [9.136244, 45.362131],\n            [9.131747, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.366628],\n            [9.131747, 45.371125],\n            [9.136244, 45.371125],\n            [9.136244, 45.366628],\n            [9.131747, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.371125],\n            [9.131747, 45.375621],\n            [9.136244, 45.375621],\n            [9.136244, 45.371125],\n            [9.131747, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.375621],\n            [9.131747, 45.380118],\n            [9.136244, 45.380118],\n            [9.136244, 45.375621],\n            [9.131747, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.380118],\n            [9.131747, 45.384614],\n            [9.136244, 45.384614],\n            [9.136244, 45.380118],\n            [9.131747, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.384614],\n            [9.131747, 45.389111],\n            [9.136244, 45.389111],\n            [9.136244, 45.384614],\n            [9.131747, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.389111],\n            [9.131747, 45.393608],\n            [9.136244, 45.393608],\n            [9.136244, 45.389111],\n            [9.131747, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.393608],\n            [9.131747, 45.398104],\n            [9.136244, 45.398104],\n            [9.136244, 45.393608],\n            [9.131747, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.398104],\n            [9.131747, 45.402601],\n            [9.136244, 45.402601],\n            [9.136244, 45.398104],\n            [9.131747, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.402601],\n            [9.131747, 45.407097],\n            [9.136244, 45.407097],\n            [9.136244, 45.402601],\n            [9.131747, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.407097],\n            [9.131747, 45.411594],\n            [9.136244, 45.411594],\n            [9.136244, 45.407097],\n            [9.131747, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.411594],\n            [9.131747, 45.416091],\n            [9.136244, 45.416091],\n            [9.136244, 45.411594],\n            [9.131747, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.416091],\n            [9.131747, 45.420587],\n            [9.136244, 45.420587],\n            [9.136244, 45.416091],\n            [9.131747, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.420587],\n            [9.131747, 45.425084],\n            [9.136244, 45.425084],\n            [9.136244, 45.420587],\n            [9.131747, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.425084],\n            [9.131747, 45.42958],\n            [9.136244, 45.42958],\n            [9.136244, 45.425084],\n            [9.131747, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.42958],\n            [9.131747, 45.434077],\n            [9.136244, 45.434077],\n            [9.136244, 45.42958],\n            [9.131747, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.434077],\n            [9.131747, 45.438574],\n            [9.136244, 45.438574],\n            [9.136244, 45.434077],\n            [9.131747, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.438574],\n            [9.131747, 45.44307],\n            [9.136244, 45.44307],\n            [9.136244, 45.438574],\n            [9.131747, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.44307],\n            [9.131747, 45.447567],\n            [9.136244, 45.447567],\n            [9.136244, 45.44307],\n            [9.131747, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.447567],\n            [9.131747, 45.452063],\n            [9.136244, 45.452063],\n            [9.136244, 45.447567],\n            [9.131747, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.452063],\n            [9.131747, 45.45656],\n            [9.136244, 45.45656],\n            [9.136244, 45.452063],\n            [9.131747, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.45656],\n            [9.131747, 45.461057],\n            [9.136244, 45.461057],\n            [9.136244, 45.45656],\n            [9.131747, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.461057],\n            [9.131747, 45.465553],\n            [9.136244, 45.465553],\n            [9.136244, 45.461057],\n            [9.131747, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.465553],\n            [9.131747, 45.47005],\n            [9.136244, 45.47005],\n            [9.136244, 45.465553],\n            [9.131747, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.47005],\n            [9.131747, 45.474547],\n            [9.136244, 45.474547],\n            [9.136244, 45.47005],\n            [9.131747, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.474547],\n            [9.131747, 45.479043],\n            [9.136244, 45.479043],\n            [9.136244, 45.474547],\n            [9.131747, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.479043],\n            [9.131747, 45.48354],\n            [9.136244, 45.48354],\n            [9.136244, 45.479043],\n            [9.131747, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.48354],\n            [9.131747, 45.488036],\n            [9.136244, 45.488036],\n            [9.136244, 45.48354],\n            [9.131747, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.488036],\n            [9.131747, 45.492533],\n            [9.136244, 45.492533],\n            [9.136244, 45.488036],\n            [9.131747, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.492533],\n            [9.131747, 45.49703],\n            [9.136244, 45.49703],\n            [9.136244, 45.492533],\n            [9.131747, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.49703],\n            [9.131747, 45.501526],\n            [9.136244, 45.501526],\n            [9.136244, 45.49703],\n            [9.131747, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.501526],\n            [9.131747, 45.506023],\n            [9.136244, 45.506023],\n            [9.136244, 45.501526],\n            [9.131747, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.506023],\n            [9.131747, 45.510519],\n            [9.136244, 45.510519],\n            [9.136244, 45.506023],\n            [9.131747, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.510519],\n            [9.131747, 45.515016],\n            [9.136244, 45.515016],\n            [9.136244, 45.510519],\n            [9.131747, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.515016],\n            [9.131747, 45.519513],\n            [9.136244, 45.519513],\n            [9.136244, 45.515016],\n            [9.131747, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.519513],\n            [9.131747, 45.524009],\n            [9.136244, 45.524009],\n            [9.136244, 45.519513],\n            [9.131747, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.524009],\n            [9.131747, 45.528506],\n            [9.136244, 45.528506],\n            [9.136244, 45.524009],\n            [9.131747, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.528506],\n            [9.131747, 45.533002],\n            [9.136244, 45.533002],\n            [9.136244, 45.528506],\n            [9.131747, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.533002],\n            [9.131747, 45.537499],\n            [9.136244, 45.537499],\n            [9.136244, 45.533002],\n            [9.131747, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.537499],\n            [9.131747, 45.541996],\n            [9.136244, 45.541996],\n            [9.136244, 45.537499],\n            [9.131747, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.541996],\n            [9.131747, 45.546492],\n            [9.136244, 45.546492],\n            [9.136244, 45.541996],\n            [9.131747, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.546492],\n            [9.131747, 45.550989],\n            [9.136244, 45.550989],\n            [9.136244, 45.546492],\n            [9.131747, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.550989],\n            [9.131747, 45.555485],\n            [9.136244, 45.555485],\n            [9.136244, 45.550989],\n            [9.131747, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.555485],\n            [9.131747, 45.559982],\n            [9.136244, 45.559982],\n            [9.136244, 45.555485],\n            [9.131747, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.559982],\n            [9.131747, 45.564479],\n            [9.136244, 45.564479],\n            [9.136244, 45.559982],\n            [9.131747, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.564479],\n            [9.131747, 45.568975],\n            [9.136244, 45.568975],\n            [9.136244, 45.564479],\n            [9.131747, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.568975],\n            [9.131747, 45.573472],\n            [9.136244, 45.573472],\n            [9.136244, 45.568975],\n            [9.131747, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.573472],\n            [9.131747, 45.577968],\n            [9.136244, 45.577968],\n            [9.136244, 45.573472],\n            [9.131747, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.577968],\n            [9.131747, 45.582465],\n            [9.136244, 45.582465],\n            [9.136244, 45.577968],\n            [9.131747, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.582465],\n            [9.131747, 45.586962],\n            [9.136244, 45.586962],\n            [9.136244, 45.582465],\n            [9.131747, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.586962],\n            [9.131747, 45.591458],\n            [9.136244, 45.591458],\n            [9.136244, 45.586962],\n            [9.131747, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.591458],\n            [9.131747, 45.595955],\n            [9.136244, 45.595955],\n            [9.136244, 45.591458],\n            [9.131747, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.595955],\n            [9.131747, 45.600451],\n            [9.136244, 45.600451],\n            [9.136244, 45.595955],\n            [9.131747, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.600451],\n            [9.131747, 45.604948],\n            [9.136244, 45.604948],\n            [9.136244, 45.600451],\n            [9.131747, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.604948],\n            [9.131747, 45.609445],\n            [9.136244, 45.609445],\n            [9.136244, 45.604948],\n            [9.131747, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.609445],\n            [9.131747, 45.613941],\n            [9.136244, 45.613941],\n            [9.136244, 45.609445],\n            [9.131747, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.613941],\n            [9.131747, 45.618438],\n            [9.136244, 45.618438],\n            [9.136244, 45.613941],\n            [9.131747, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.618438],\n            [9.131747, 45.622934],\n            [9.136244, 45.622934],\n            [9.136244, 45.618438],\n            [9.131747, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.622934],\n            [9.131747, 45.627431],\n            [9.136244, 45.627431],\n            [9.136244, 45.622934],\n            [9.131747, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.627431],\n            [9.131747, 45.631928],\n            [9.136244, 45.631928],\n            [9.136244, 45.627431],\n            [9.131747, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.131747, 45.631928],\n            [9.131747, 45.636424],\n            [9.136244, 45.636424],\n            [9.136244, 45.631928],\n            [9.131747, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.339648],\n            [9.136244, 45.344145],\n            [9.14074, 45.344145],\n            [9.14074, 45.339648],\n            [9.136244, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.344145],\n            [9.136244, 45.348642],\n            [9.14074, 45.348642],\n            [9.14074, 45.344145],\n            [9.136244, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.348642],\n            [9.136244, 45.353138],\n            [9.14074, 45.353138],\n            [9.14074, 45.348642],\n            [9.136244, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.353138],\n            [9.136244, 45.357635],\n            [9.14074, 45.357635],\n            [9.14074, 45.353138],\n            [9.136244, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.357635],\n            [9.136244, 45.362131],\n            [9.14074, 45.362131],\n            [9.14074, 45.357635],\n            [9.136244, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.362131],\n            [9.136244, 45.366628],\n            [9.14074, 45.366628],\n            [9.14074, 45.362131],\n            [9.136244, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.366628],\n            [9.136244, 45.371125],\n            [9.14074, 45.371125],\n            [9.14074, 45.366628],\n            [9.136244, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.371125],\n            [9.136244, 45.375621],\n            [9.14074, 45.375621],\n            [9.14074, 45.371125],\n            [9.136244, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.375621],\n            [9.136244, 45.380118],\n            [9.14074, 45.380118],\n            [9.14074, 45.375621],\n            [9.136244, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.380118],\n            [9.136244, 45.384614],\n            [9.14074, 45.384614],\n            [9.14074, 45.380118],\n            [9.136244, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.384614],\n            [9.136244, 45.389111],\n            [9.14074, 45.389111],\n            [9.14074, 45.384614],\n            [9.136244, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.389111],\n            [9.136244, 45.393608],\n            [9.14074, 45.393608],\n            [9.14074, 45.389111],\n            [9.136244, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.393608],\n            [9.136244, 45.398104],\n            [9.14074, 45.398104],\n            [9.14074, 45.393608],\n            [9.136244, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.398104],\n            [9.136244, 45.402601],\n            [9.14074, 45.402601],\n            [9.14074, 45.398104],\n            [9.136244, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.402601],\n            [9.136244, 45.407097],\n            [9.14074, 45.407097],\n            [9.14074, 45.402601],\n            [9.136244, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.407097],\n            [9.136244, 45.411594],\n            [9.14074, 45.411594],\n            [9.14074, 45.407097],\n            [9.136244, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.411594],\n            [9.136244, 45.416091],\n            [9.14074, 45.416091],\n            [9.14074, 45.411594],\n            [9.136244, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.416091],\n            [9.136244, 45.420587],\n            [9.14074, 45.420587],\n            [9.14074, 45.416091],\n            [9.136244, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.420587],\n            [9.136244, 45.425084],\n            [9.14074, 45.425084],\n            [9.14074, 45.420587],\n            [9.136244, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.425084],\n            [9.136244, 45.42958],\n            [9.14074, 45.42958],\n            [9.14074, 45.425084],\n            [9.136244, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.42958],\n            [9.136244, 45.434077],\n            [9.14074, 45.434077],\n            [9.14074, 45.42958],\n            [9.136244, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.434077],\n            [9.136244, 45.438574],\n            [9.14074, 45.438574],\n            [9.14074, 45.434077],\n            [9.136244, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.438574],\n            [9.136244, 45.44307],\n            [9.14074, 45.44307],\n            [9.14074, 45.438574],\n            [9.136244, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.44307],\n            [9.136244, 45.447567],\n            [9.14074, 45.447567],\n            [9.14074, 45.44307],\n            [9.136244, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.447567],\n            [9.136244, 45.452063],\n            [9.14074, 45.452063],\n            [9.14074, 45.447567],\n            [9.136244, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.452063],\n            [9.136244, 45.45656],\n            [9.14074, 45.45656],\n            [9.14074, 45.452063],\n            [9.136244, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.45656],\n            [9.136244, 45.461057],\n            [9.14074, 45.461057],\n            [9.14074, 45.45656],\n            [9.136244, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.461057],\n            [9.136244, 45.465553],\n            [9.14074, 45.465553],\n            [9.14074, 45.461057],\n            [9.136244, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.465553],\n            [9.136244, 45.47005],\n            [9.14074, 45.47005],\n            [9.14074, 45.465553],\n            [9.136244, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.47005],\n            [9.136244, 45.474547],\n            [9.14074, 45.474547],\n            [9.14074, 45.47005],\n            [9.136244, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.474547],\n            [9.136244, 45.479043],\n            [9.14074, 45.479043],\n            [9.14074, 45.474547],\n            [9.136244, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.479043],\n            [9.136244, 45.48354],\n            [9.14074, 45.48354],\n            [9.14074, 45.479043],\n            [9.136244, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.48354],\n            [9.136244, 45.488036],\n            [9.14074, 45.488036],\n            [9.14074, 45.48354],\n            [9.136244, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.488036],\n            [9.136244, 45.492533],\n            [9.14074, 45.492533],\n            [9.14074, 45.488036],\n            [9.136244, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.492533],\n            [9.136244, 45.49703],\n            [9.14074, 45.49703],\n            [9.14074, 45.492533],\n            [9.136244, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.49703],\n            [9.136244, 45.501526],\n            [9.14074, 45.501526],\n            [9.14074, 45.49703],\n            [9.136244, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.501526],\n            [9.136244, 45.506023],\n            [9.14074, 45.506023],\n            [9.14074, 45.501526],\n            [9.136244, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.506023],\n            [9.136244, 45.510519],\n            [9.14074, 45.510519],\n            [9.14074, 45.506023],\n            [9.136244, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.510519],\n            [9.136244, 45.515016],\n            [9.14074, 45.515016],\n            [9.14074, 45.510519],\n            [9.136244, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.515016],\n            [9.136244, 45.519513],\n            [9.14074, 45.519513],\n            [9.14074, 45.515016],\n            [9.136244, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.519513],\n            [9.136244, 45.524009],\n            [9.14074, 45.524009],\n            [9.14074, 45.519513],\n            [9.136244, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.524009],\n            [9.136244, 45.528506],\n            [9.14074, 45.528506],\n            [9.14074, 45.524009],\n            [9.136244, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.528506],\n            [9.136244, 45.533002],\n            [9.14074, 45.533002],\n            [9.14074, 45.528506],\n            [9.136244, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.533002],\n            [9.136244, 45.537499],\n            [9.14074, 45.537499],\n            [9.14074, 45.533002],\n            [9.136244, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.537499],\n            [9.136244, 45.541996],\n            [9.14074, 45.541996],\n            [9.14074, 45.537499],\n            [9.136244, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.541996],\n            [9.136244, 45.546492],\n            [9.14074, 45.546492],\n            [9.14074, 45.541996],\n            [9.136244, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.546492],\n            [9.136244, 45.550989],\n            [9.14074, 45.550989],\n            [9.14074, 45.546492],\n            [9.136244, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.550989],\n            [9.136244, 45.555485],\n            [9.14074, 45.555485],\n            [9.14074, 45.550989],\n            [9.136244, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.555485],\n            [9.136244, 45.559982],\n            [9.14074, 45.559982],\n            [9.14074, 45.555485],\n            [9.136244, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.559982],\n            [9.136244, 45.564479],\n            [9.14074, 45.564479],\n            [9.14074, 45.559982],\n            [9.136244, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.564479],\n            [9.136244, 45.568975],\n            [9.14074, 45.568975],\n            [9.14074, 45.564479],\n            [9.136244, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.568975],\n            [9.136244, 45.573472],\n            [9.14074, 45.573472],\n            [9.14074, 45.568975],\n            [9.136244, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.573472],\n            [9.136244, 45.577968],\n            [9.14074, 45.577968],\n            [9.14074, 45.573472],\n            [9.136244, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.577968],\n            [9.136244, 45.582465],\n            [9.14074, 45.582465],\n            [9.14074, 45.577968],\n            [9.136244, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.582465],\n            [9.136244, 45.586962],\n            [9.14074, 45.586962],\n            [9.14074, 45.582465],\n            [9.136244, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.586962],\n            [9.136244, 45.591458],\n            [9.14074, 45.591458],\n            [9.14074, 45.586962],\n            [9.136244, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.591458],\n            [9.136244, 45.595955],\n            [9.14074, 45.595955],\n            [9.14074, 45.591458],\n            [9.136244, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.595955],\n            [9.136244, 45.600451],\n            [9.14074, 45.600451],\n            [9.14074, 45.595955],\n            [9.136244, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.600451],\n            [9.136244, 45.604948],\n            [9.14074, 45.604948],\n            [9.14074, 45.600451],\n            [9.136244, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.604948],\n            [9.136244, 45.609445],\n            [9.14074, 45.609445],\n            [9.14074, 45.604948],\n            [9.136244, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.609445],\n            [9.136244, 45.613941],\n            [9.14074, 45.613941],\n            [9.14074, 45.609445],\n            [9.136244, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.613941],\n            [9.136244, 45.618438],\n            [9.14074, 45.618438],\n            [9.14074, 45.613941],\n            [9.136244, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.618438],\n            [9.136244, 45.622934],\n            [9.14074, 45.622934],\n            [9.14074, 45.618438],\n            [9.136244, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.622934],\n            [9.136244, 45.627431],\n            [9.14074, 45.627431],\n            [9.14074, 45.622934],\n            [9.136244, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.627431],\n            [9.136244, 45.631928],\n            [9.14074, 45.631928],\n            [9.14074, 45.627431],\n            [9.136244, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.136244, 45.631928],\n            [9.136244, 45.636424],\n            [9.14074, 45.636424],\n            [9.14074, 45.631928],\n            [9.136244, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.339648],\n            [9.14074, 45.344145],\n            [9.145237, 45.344145],\n            [9.145237, 45.339648],\n            [9.14074, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.344145],\n            [9.14074, 45.348642],\n            [9.145237, 45.348642],\n            [9.145237, 45.344145],\n            [9.14074, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.348642],\n            [9.14074, 45.353138],\n            [9.145237, 45.353138],\n            [9.145237, 45.348642],\n            [9.14074, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.353138],\n            [9.14074, 45.357635],\n            [9.145237, 45.357635],\n            [9.145237, 45.353138],\n            [9.14074, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.357635],\n            [9.14074, 45.362131],\n            [9.145237, 45.362131],\n            [9.145237, 45.357635],\n            [9.14074, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.362131],\n            [9.14074, 45.366628],\n            [9.145237, 45.366628],\n            [9.145237, 45.362131],\n            [9.14074, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.366628],\n            [9.14074, 45.371125],\n            [9.145237, 45.371125],\n            [9.145237, 45.366628],\n            [9.14074, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.371125],\n            [9.14074, 45.375621],\n            [9.145237, 45.375621],\n            [9.145237, 45.371125],\n            [9.14074, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.375621],\n            [9.14074, 45.380118],\n            [9.145237, 45.380118],\n            [9.145237, 45.375621],\n            [9.14074, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.380118],\n            [9.14074, 45.384614],\n            [9.145237, 45.384614],\n            [9.145237, 45.380118],\n            [9.14074, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.384614],\n            [9.14074, 45.389111],\n            [9.145237, 45.389111],\n            [9.145237, 45.384614],\n            [9.14074, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.389111],\n            [9.14074, 45.393608],\n            [9.145237, 45.393608],\n            [9.145237, 45.389111],\n            [9.14074, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.393608],\n            [9.14074, 45.398104],\n            [9.145237, 45.398104],\n            [9.145237, 45.393608],\n            [9.14074, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.398104],\n            [9.14074, 45.402601],\n            [9.145237, 45.402601],\n            [9.145237, 45.398104],\n            [9.14074, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.402601],\n            [9.14074, 45.407097],\n            [9.145237, 45.407097],\n            [9.145237, 45.402601],\n            [9.14074, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.407097],\n            [9.14074, 45.411594],\n            [9.145237, 45.411594],\n            [9.145237, 45.407097],\n            [9.14074, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.411594],\n            [9.14074, 45.416091],\n            [9.145237, 45.416091],\n            [9.145237, 45.411594],\n            [9.14074, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.416091],\n            [9.14074, 45.420587],\n            [9.145237, 45.420587],\n            [9.145237, 45.416091],\n            [9.14074, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.420587],\n            [9.14074, 45.425084],\n            [9.145237, 45.425084],\n            [9.145237, 45.420587],\n            [9.14074, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.425084],\n            [9.14074, 45.42958],\n            [9.145237, 45.42958],\n            [9.145237, 45.425084],\n            [9.14074, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.42958],\n            [9.14074, 45.434077],\n            [9.145237, 45.434077],\n            [9.145237, 45.42958],\n            [9.14074, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.434077],\n            [9.14074, 45.438574],\n            [9.145237, 45.438574],\n            [9.145237, 45.434077],\n            [9.14074, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.438574],\n            [9.14074, 45.44307],\n            [9.145237, 45.44307],\n            [9.145237, 45.438574],\n            [9.14074, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.44307],\n            [9.14074, 45.447567],\n            [9.145237, 45.447567],\n            [9.145237, 45.44307],\n            [9.14074, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.447567],\n            [9.14074, 45.452063],\n            [9.145237, 45.452063],\n            [9.145237, 45.447567],\n            [9.14074, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.452063],\n            [9.14074, 45.45656],\n            [9.145237, 45.45656],\n            [9.145237, 45.452063],\n            [9.14074, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.45656],\n            [9.14074, 45.461057],\n            [9.145237, 45.461057],\n            [9.145237, 45.45656],\n            [9.14074, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.461057],\n            [9.14074, 45.465553],\n            [9.145237, 45.465553],\n            [9.145237, 45.461057],\n            [9.14074, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.465553],\n            [9.14074, 45.47005],\n            [9.145237, 45.47005],\n            [9.145237, 45.465553],\n            [9.14074, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.47005],\n            [9.14074, 45.474547],\n            [9.145237, 45.474547],\n            [9.145237, 45.47005],\n            [9.14074, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.474547],\n            [9.14074, 45.479043],\n            [9.145237, 45.479043],\n            [9.145237, 45.474547],\n            [9.14074, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.479043],\n            [9.14074, 45.48354],\n            [9.145237, 45.48354],\n            [9.145237, 45.479043],\n            [9.14074, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.48354],\n            [9.14074, 45.488036],\n            [9.145237, 45.488036],\n            [9.145237, 45.48354],\n            [9.14074, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.488036],\n            [9.14074, 45.492533],\n            [9.145237, 45.492533],\n            [9.145237, 45.488036],\n            [9.14074, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.492533],\n            [9.14074, 45.49703],\n            [9.145237, 45.49703],\n            [9.145237, 45.492533],\n            [9.14074, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.49703],\n            [9.14074, 45.501526],\n            [9.145237, 45.501526],\n            [9.145237, 45.49703],\n            [9.14074, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.501526],\n            [9.14074, 45.506023],\n            [9.145237, 45.506023],\n            [9.145237, 45.501526],\n            [9.14074, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.506023],\n            [9.14074, 45.510519],\n            [9.145237, 45.510519],\n            [9.145237, 45.506023],\n            [9.14074, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.510519],\n            [9.14074, 45.515016],\n            [9.145237, 45.515016],\n            [9.145237, 45.510519],\n            [9.14074, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.515016],\n            [9.14074, 45.519513],\n            [9.145237, 45.519513],\n            [9.145237, 45.515016],\n            [9.14074, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.519513],\n            [9.14074, 45.524009],\n            [9.145237, 45.524009],\n            [9.145237, 45.519513],\n            [9.14074, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.524009],\n            [9.14074, 45.528506],\n            [9.145237, 45.528506],\n            [9.145237, 45.524009],\n            [9.14074, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.528506],\n            [9.14074, 45.533002],\n            [9.145237, 45.533002],\n            [9.145237, 45.528506],\n            [9.14074, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.533002],\n            [9.14074, 45.537499],\n            [9.145237, 45.537499],\n            [9.145237, 45.533002],\n            [9.14074, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.537499],\n            [9.14074, 45.541996],\n            [9.145237, 45.541996],\n            [9.145237, 45.537499],\n            [9.14074, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.541996],\n            [9.14074, 45.546492],\n            [9.145237, 45.546492],\n            [9.145237, 45.541996],\n            [9.14074, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.546492],\n            [9.14074, 45.550989],\n            [9.145237, 45.550989],\n            [9.145237, 45.546492],\n            [9.14074, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.550989],\n            [9.14074, 45.555485],\n            [9.145237, 45.555485],\n            [9.145237, 45.550989],\n            [9.14074, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.555485],\n            [9.14074, 45.559982],\n            [9.145237, 45.559982],\n            [9.145237, 45.555485],\n            [9.14074, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.559982],\n            [9.14074, 45.564479],\n            [9.145237, 45.564479],\n            [9.145237, 45.559982],\n            [9.14074, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.564479],\n            [9.14074, 45.568975],\n            [9.145237, 45.568975],\n            [9.145237, 45.564479],\n            [9.14074, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.568975],\n            [9.14074, 45.573472],\n            [9.145237, 45.573472],\n            [9.145237, 45.568975],\n            [9.14074, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.573472],\n            [9.14074, 45.577968],\n            [9.145237, 45.577968],\n            [9.145237, 45.573472],\n            [9.14074, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.577968],\n            [9.14074, 45.582465],\n            [9.145237, 45.582465],\n            [9.145237, 45.577968],\n            [9.14074, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.582465],\n            [9.14074, 45.586962],\n            [9.145237, 45.586962],\n            [9.145237, 45.582465],\n            [9.14074, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.586962],\n            [9.14074, 45.591458],\n            [9.145237, 45.591458],\n            [9.145237, 45.586962],\n            [9.14074, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.591458],\n            [9.14074, 45.595955],\n            [9.145237, 45.595955],\n            [9.145237, 45.591458],\n            [9.14074, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.595955],\n            [9.14074, 45.600451],\n            [9.145237, 45.600451],\n            [9.145237, 45.595955],\n            [9.14074, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.600451],\n            [9.14074, 45.604948],\n            [9.145237, 45.604948],\n            [9.145237, 45.600451],\n            [9.14074, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.604948],\n            [9.14074, 45.609445],\n            [9.145237, 45.609445],\n            [9.145237, 45.604948],\n            [9.14074, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.609445],\n            [9.14074, 45.613941],\n            [9.145237, 45.613941],\n            [9.145237, 45.609445],\n            [9.14074, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.613941],\n            [9.14074, 45.618438],\n            [9.145237, 45.618438],\n            [9.145237, 45.613941],\n            [9.14074, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.618438],\n            [9.14074, 45.622934],\n            [9.145237, 45.622934],\n            [9.145237, 45.618438],\n            [9.14074, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.622934],\n            [9.14074, 45.627431],\n            [9.145237, 45.627431],\n            [9.145237, 45.622934],\n            [9.14074, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.627431],\n            [9.14074, 45.631928],\n            [9.145237, 45.631928],\n            [9.145237, 45.627431],\n            [9.14074, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.14074, 45.631928],\n            [9.14074, 45.636424],\n            [9.145237, 45.636424],\n            [9.145237, 45.631928],\n            [9.14074, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.339648],\n            [9.145237, 45.344145],\n            [9.149733, 45.344145],\n            [9.149733, 45.339648],\n            [9.145237, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.344145],\n            [9.145237, 45.348642],\n            [9.149733, 45.348642],\n            [9.149733, 45.344145],\n            [9.145237, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.348642],\n            [9.145237, 45.353138],\n            [9.149733, 45.353138],\n            [9.149733, 45.348642],\n            [9.145237, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.353138],\n            [9.145237, 45.357635],\n            [9.149733, 45.357635],\n            [9.149733, 45.353138],\n            [9.145237, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.357635],\n            [9.145237, 45.362131],\n            [9.149733, 45.362131],\n            [9.149733, 45.357635],\n            [9.145237, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.362131],\n            [9.145237, 45.366628],\n            [9.149733, 45.366628],\n            [9.149733, 45.362131],\n            [9.145237, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.366628],\n            [9.145237, 45.371125],\n            [9.149733, 45.371125],\n            [9.149733, 45.366628],\n            [9.145237, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.371125],\n            [9.145237, 45.375621],\n            [9.149733, 45.375621],\n            [9.149733, 45.371125],\n            [9.145237, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.375621],\n            [9.145237, 45.380118],\n            [9.149733, 45.380118],\n            [9.149733, 45.375621],\n            [9.145237, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.380118],\n            [9.145237, 45.384614],\n            [9.149733, 45.384614],\n            [9.149733, 45.380118],\n            [9.145237, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.384614],\n            [9.145237, 45.389111],\n            [9.149733, 45.389111],\n            [9.149733, 45.384614],\n            [9.145237, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.389111],\n            [9.145237, 45.393608],\n            [9.149733, 45.393608],\n            [9.149733, 45.389111],\n            [9.145237, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.393608],\n            [9.145237, 45.398104],\n            [9.149733, 45.398104],\n            [9.149733, 45.393608],\n            [9.145237, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.398104],\n            [9.145237, 45.402601],\n            [9.149733, 45.402601],\n            [9.149733, 45.398104],\n            [9.145237, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.402601],\n            [9.145237, 45.407097],\n            [9.149733, 45.407097],\n            [9.149733, 45.402601],\n            [9.145237, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.407097],\n            [9.145237, 45.411594],\n            [9.149733, 45.411594],\n            [9.149733, 45.407097],\n            [9.145237, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.411594],\n            [9.145237, 45.416091],\n            [9.149733, 45.416091],\n            [9.149733, 45.411594],\n            [9.145237, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.416091],\n            [9.145237, 45.420587],\n            [9.149733, 45.420587],\n            [9.149733, 45.416091],\n            [9.145237, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.420587],\n            [9.145237, 45.425084],\n            [9.149733, 45.425084],\n            [9.149733, 45.420587],\n            [9.145237, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.425084],\n            [9.145237, 45.42958],\n            [9.149733, 45.42958],\n            [9.149733, 45.425084],\n            [9.145237, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.42958],\n            [9.145237, 45.434077],\n            [9.149733, 45.434077],\n            [9.149733, 45.42958],\n            [9.145237, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.434077],\n            [9.145237, 45.438574],\n            [9.149733, 45.438574],\n            [9.149733, 45.434077],\n            [9.145237, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.438574],\n            [9.145237, 45.44307],\n            [9.149733, 45.44307],\n            [9.149733, 45.438574],\n            [9.145237, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.44307],\n            [9.145237, 45.447567],\n            [9.149733, 45.447567],\n            [9.149733, 45.44307],\n            [9.145237, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.447567],\n            [9.145237, 45.452063],\n            [9.149733, 45.452063],\n            [9.149733, 45.447567],\n            [9.145237, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.452063],\n            [9.145237, 45.45656],\n            [9.149733, 45.45656],\n            [9.149733, 45.452063],\n            [9.145237, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.45656],\n            [9.145237, 45.461057],\n            [9.149733, 45.461057],\n            [9.149733, 45.45656],\n            [9.145237, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.461057],\n            [9.145237, 45.465553],\n            [9.149733, 45.465553],\n            [9.149733, 45.461057],\n            [9.145237, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.465553],\n            [9.145237, 45.47005],\n            [9.149733, 45.47005],\n            [9.149733, 45.465553],\n            [9.145237, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.47005],\n            [9.145237, 45.474547],\n            [9.149733, 45.474547],\n            [9.149733, 45.47005],\n            [9.145237, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.474547],\n            [9.145237, 45.479043],\n            [9.149733, 45.479043],\n            [9.149733, 45.474547],\n            [9.145237, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.479043],\n            [9.145237, 45.48354],\n            [9.149733, 45.48354],\n            [9.149733, 45.479043],\n            [9.145237, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.48354],\n            [9.145237, 45.488036],\n            [9.149733, 45.488036],\n            [9.149733, 45.48354],\n            [9.145237, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.488036],\n            [9.145237, 45.492533],\n            [9.149733, 45.492533],\n            [9.149733, 45.488036],\n            [9.145237, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.492533],\n            [9.145237, 45.49703],\n            [9.149733, 45.49703],\n            [9.149733, 45.492533],\n            [9.145237, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.49703],\n            [9.145237, 45.501526],\n            [9.149733, 45.501526],\n            [9.149733, 45.49703],\n            [9.145237, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.501526],\n            [9.145237, 45.506023],\n            [9.149733, 45.506023],\n            [9.149733, 45.501526],\n            [9.145237, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.506023],\n            [9.145237, 45.510519],\n            [9.149733, 45.510519],\n            [9.149733, 45.506023],\n            [9.145237, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.510519],\n            [9.145237, 45.515016],\n            [9.149733, 45.515016],\n            [9.149733, 45.510519],\n            [9.145237, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.515016],\n            [9.145237, 45.519513],\n            [9.149733, 45.519513],\n            [9.149733, 45.515016],\n            [9.145237, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.519513],\n            [9.145237, 45.524009],\n            [9.149733, 45.524009],\n            [9.149733, 45.519513],\n            [9.145237, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.524009],\n            [9.145237, 45.528506],\n            [9.149733, 45.528506],\n            [9.149733, 45.524009],\n            [9.145237, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.528506],\n            [9.145237, 45.533002],\n            [9.149733, 45.533002],\n            [9.149733, 45.528506],\n            [9.145237, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.533002],\n            [9.145237, 45.537499],\n            [9.149733, 45.537499],\n            [9.149733, 45.533002],\n            [9.145237, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.537499],\n            [9.145237, 45.541996],\n            [9.149733, 45.541996],\n            [9.149733, 45.537499],\n            [9.145237, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.541996],\n            [9.145237, 45.546492],\n            [9.149733, 45.546492],\n            [9.149733, 45.541996],\n            [9.145237, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.546492],\n            [9.145237, 45.550989],\n            [9.149733, 45.550989],\n            [9.149733, 45.546492],\n            [9.145237, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.550989],\n            [9.145237, 45.555485],\n            [9.149733, 45.555485],\n            [9.149733, 45.550989],\n            [9.145237, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.555485],\n            [9.145237, 45.559982],\n            [9.149733, 45.559982],\n            [9.149733, 45.555485],\n            [9.145237, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.559982],\n            [9.145237, 45.564479],\n            [9.149733, 45.564479],\n            [9.149733, 45.559982],\n            [9.145237, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.564479],\n            [9.145237, 45.568975],\n            [9.149733, 45.568975],\n            [9.149733, 45.564479],\n            [9.145237, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.568975],\n            [9.145237, 45.573472],\n            [9.149733, 45.573472],\n            [9.149733, 45.568975],\n            [9.145237, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.573472],\n            [9.145237, 45.577968],\n            [9.149733, 45.577968],\n            [9.149733, 45.573472],\n            [9.145237, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.577968],\n            [9.145237, 45.582465],\n            [9.149733, 45.582465],\n            [9.149733, 45.577968],\n            [9.145237, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.582465],\n            [9.145237, 45.586962],\n            [9.149733, 45.586962],\n            [9.149733, 45.582465],\n            [9.145237, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.586962],\n            [9.145237, 45.591458],\n            [9.149733, 45.591458],\n            [9.149733, 45.586962],\n            [9.145237, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.591458],\n            [9.145237, 45.595955],\n            [9.149733, 45.595955],\n            [9.149733, 45.591458],\n            [9.145237, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.595955],\n            [9.145237, 45.600451],\n            [9.149733, 45.600451],\n            [9.149733, 45.595955],\n            [9.145237, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.600451],\n            [9.145237, 45.604948],\n            [9.149733, 45.604948],\n            [9.149733, 45.600451],\n            [9.145237, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.604948],\n            [9.145237, 45.609445],\n            [9.149733, 45.609445],\n            [9.149733, 45.604948],\n            [9.145237, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.609445],\n            [9.145237, 45.613941],\n            [9.149733, 45.613941],\n            [9.149733, 45.609445],\n            [9.145237, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.613941],\n            [9.145237, 45.618438],\n            [9.149733, 45.618438],\n            [9.149733, 45.613941],\n            [9.145237, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.618438],\n            [9.145237, 45.622934],\n            [9.149733, 45.622934],\n            [9.149733, 45.618438],\n            [9.145237, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.622934],\n            [9.145237, 45.627431],\n            [9.149733, 45.627431],\n            [9.149733, 45.622934],\n            [9.145237, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.627431],\n            [9.145237, 45.631928],\n            [9.149733, 45.631928],\n            [9.149733, 45.627431],\n            [9.145237, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.145237, 45.631928],\n            [9.145237, 45.636424],\n            [9.149733, 45.636424],\n            [9.149733, 45.631928],\n            [9.145237, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.339648],\n            [9.149733, 45.344145],\n            [9.15423, 45.344145],\n            [9.15423, 45.339648],\n            [9.149733, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.344145],\n            [9.149733, 45.348642],\n            [9.15423, 45.348642],\n            [9.15423, 45.344145],\n            [9.149733, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.348642],\n            [9.149733, 45.353138],\n            [9.15423, 45.353138],\n            [9.15423, 45.348642],\n            [9.149733, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.353138],\n            [9.149733, 45.357635],\n            [9.15423, 45.357635],\n            [9.15423, 45.353138],\n            [9.149733, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.357635],\n            [9.149733, 45.362131],\n            [9.15423, 45.362131],\n            [9.15423, 45.357635],\n            [9.149733, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.362131],\n            [9.149733, 45.366628],\n            [9.15423, 45.366628],\n            [9.15423, 45.362131],\n            [9.149733, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.366628],\n            [9.149733, 45.371125],\n            [9.15423, 45.371125],\n            [9.15423, 45.366628],\n            [9.149733, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.371125],\n            [9.149733, 45.375621],\n            [9.15423, 45.375621],\n            [9.15423, 45.371125],\n            [9.149733, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.375621],\n            [9.149733, 45.380118],\n            [9.15423, 45.380118],\n            [9.15423, 45.375621],\n            [9.149733, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.380118],\n            [9.149733, 45.384614],\n            [9.15423, 45.384614],\n            [9.15423, 45.380118],\n            [9.149733, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.384614],\n            [9.149733, 45.389111],\n            [9.15423, 45.389111],\n            [9.15423, 45.384614],\n            [9.149733, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.389111],\n            [9.149733, 45.393608],\n            [9.15423, 45.393608],\n            [9.15423, 45.389111],\n            [9.149733, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.393608],\n            [9.149733, 45.398104],\n            [9.15423, 45.398104],\n            [9.15423, 45.393608],\n            [9.149733, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.398104],\n            [9.149733, 45.402601],\n            [9.15423, 45.402601],\n            [9.15423, 45.398104],\n            [9.149733, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.402601],\n            [9.149733, 45.407097],\n            [9.15423, 45.407097],\n            [9.15423, 45.402601],\n            [9.149733, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.407097],\n            [9.149733, 45.411594],\n            [9.15423, 45.411594],\n            [9.15423, 45.407097],\n            [9.149733, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.411594],\n            [9.149733, 45.416091],\n            [9.15423, 45.416091],\n            [9.15423, 45.411594],\n            [9.149733, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.416091],\n            [9.149733, 45.420587],\n            [9.15423, 45.420587],\n            [9.15423, 45.416091],\n            [9.149733, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.420587],\n            [9.149733, 45.425084],\n            [9.15423, 45.425084],\n            [9.15423, 45.420587],\n            [9.149733, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.425084],\n            [9.149733, 45.42958],\n            [9.15423, 45.42958],\n            [9.15423, 45.425084],\n            [9.149733, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.42958],\n            [9.149733, 45.434077],\n            [9.15423, 45.434077],\n            [9.15423, 45.42958],\n            [9.149733, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.434077],\n            [9.149733, 45.438574],\n            [9.15423, 45.438574],\n            [9.15423, 45.434077],\n            [9.149733, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.438574],\n            [9.149733, 45.44307],\n            [9.15423, 45.44307],\n            [9.15423, 45.438574],\n            [9.149733, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.44307],\n            [9.149733, 45.447567],\n            [9.15423, 45.447567],\n            [9.15423, 45.44307],\n            [9.149733, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.447567],\n            [9.149733, 45.452063],\n            [9.15423, 45.452063],\n            [9.15423, 45.447567],\n            [9.149733, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.452063],\n            [9.149733, 45.45656],\n            [9.15423, 45.45656],\n            [9.15423, 45.452063],\n            [9.149733, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.45656],\n            [9.149733, 45.461057],\n            [9.15423, 45.461057],\n            [9.15423, 45.45656],\n            [9.149733, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.461057],\n            [9.149733, 45.465553],\n            [9.15423, 45.465553],\n            [9.15423, 45.461057],\n            [9.149733, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 16,\n        \"stroke\": \"#cce7ff\",\n        \"fill\": \"#cce7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.465553],\n            [9.149733, 45.47005],\n            [9.15423, 45.47005],\n            [9.15423, 45.465553],\n            [9.149733, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 15,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.47005],\n            [9.149733, 45.474547],\n            [9.15423, 45.474547],\n            [9.15423, 45.47005],\n            [9.149733, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.474547],\n            [9.149733, 45.479043],\n            [9.15423, 45.479043],\n            [9.15423, 45.474547],\n            [9.149733, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.479043],\n            [9.149733, 45.48354],\n            [9.15423, 45.48354],\n            [9.15423, 45.479043],\n            [9.149733, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.48354],\n            [9.149733, 45.488036],\n            [9.15423, 45.488036],\n            [9.15423, 45.48354],\n            [9.149733, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.488036],\n            [9.149733, 45.492533],\n            [9.15423, 45.492533],\n            [9.15423, 45.488036],\n            [9.149733, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.492533],\n            [9.149733, 45.49703],\n            [9.15423, 45.49703],\n            [9.15423, 45.492533],\n            [9.149733, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.49703],\n            [9.149733, 45.501526],\n            [9.15423, 45.501526],\n            [9.15423, 45.49703],\n            [9.149733, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.501526],\n            [9.149733, 45.506023],\n            [9.15423, 45.506023],\n            [9.15423, 45.501526],\n            [9.149733, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.506023],\n            [9.149733, 45.510519],\n            [9.15423, 45.510519],\n            [9.15423, 45.506023],\n            [9.149733, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.510519],\n            [9.149733, 45.515016],\n            [9.15423, 45.515016],\n            [9.15423, 45.510519],\n            [9.149733, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.515016],\n            [9.149733, 45.519513],\n            [9.15423, 45.519513],\n            [9.15423, 45.515016],\n            [9.149733, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.519513],\n            [9.149733, 45.524009],\n            [9.15423, 45.524009],\n            [9.15423, 45.519513],\n            [9.149733, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.524009],\n            [9.149733, 45.528506],\n            [9.15423, 45.528506],\n            [9.15423, 45.524009],\n            [9.149733, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.528506],\n            [9.149733, 45.533002],\n            [9.15423, 45.533002],\n            [9.15423, 45.528506],\n            [9.149733, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.533002],\n            [9.149733, 45.537499],\n            [9.15423, 45.537499],\n            [9.15423, 45.533002],\n            [9.149733, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.537499],\n            [9.149733, 45.541996],\n            [9.15423, 45.541996],\n            [9.15423, 45.537499],\n            [9.149733, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.541996],\n            [9.149733, 45.546492],\n            [9.15423, 45.546492],\n            [9.15423, 45.541996],\n            [9.149733, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.546492],\n            [9.149733, 45.550989],\n            [9.15423, 45.550989],\n            [9.15423, 45.546492],\n            [9.149733, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.550989],\n            [9.149733, 45.555485],\n            [9.15423, 45.555485],\n            [9.15423, 45.550989],\n            [9.149733, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.555485],\n            [9.149733, 45.559982],\n            [9.15423, 45.559982],\n            [9.15423, 45.555485],\n            [9.149733, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.559982],\n            [9.149733, 45.564479],\n            [9.15423, 45.564479],\n            [9.15423, 45.559982],\n            [9.149733, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.564479],\n            [9.149733, 45.568975],\n            [9.15423, 45.568975],\n            [9.15423, 45.564479],\n            [9.149733, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.568975],\n            [9.149733, 45.573472],\n            [9.15423, 45.573472],\n            [9.15423, 45.568975],\n            [9.149733, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.573472],\n            [9.149733, 45.577968],\n            [9.15423, 45.577968],\n            [9.15423, 45.573472],\n            [9.149733, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.577968],\n            [9.149733, 45.582465],\n            [9.15423, 45.582465],\n            [9.15423, 45.577968],\n            [9.149733, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.582465],\n            [9.149733, 45.586962],\n            [9.15423, 45.586962],\n            [9.15423, 45.582465],\n            [9.149733, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.586962],\n            [9.149733, 45.591458],\n            [9.15423, 45.591458],\n            [9.15423, 45.586962],\n            [9.149733, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.591458],\n            [9.149733, 45.595955],\n            [9.15423, 45.595955],\n            [9.15423, 45.591458],\n            [9.149733, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.595955],\n            [9.149733, 45.600451],\n            [9.15423, 45.600451],\n            [9.15423, 45.595955],\n            [9.149733, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.600451],\n            [9.149733, 45.604948],\n            [9.15423, 45.604948],\n            [9.15423, 45.600451],\n            [9.149733, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.604948],\n            [9.149733, 45.609445],\n            [9.15423, 45.609445],\n            [9.15423, 45.604948],\n            [9.149733, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.609445],\n            [9.149733, 45.613941],\n            [9.15423, 45.613941],\n            [9.15423, 45.609445],\n            [9.149733, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.613941],\n            [9.149733, 45.618438],\n            [9.15423, 45.618438],\n            [9.15423, 45.613941],\n            [9.149733, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.618438],\n            [9.149733, 45.622934],\n            [9.15423, 45.622934],\n            [9.15423, 45.618438],\n            [9.149733, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.622934],\n            [9.149733, 45.627431],\n            [9.15423, 45.627431],\n            [9.15423, 45.622934],\n            [9.149733, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.627431],\n            [9.149733, 45.631928],\n            [9.15423, 45.631928],\n            [9.15423, 45.627431],\n            [9.149733, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149733, 45.631928],\n            [9.149733, 45.636424],\n            [9.15423, 45.636424],\n            [9.15423, 45.631928],\n            [9.149733, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.339648],\n            [9.15423, 45.344145],\n            [9.158727, 45.344145],\n            [9.158727, 45.339648],\n            [9.15423, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.344145],\n            [9.15423, 45.348642],\n            [9.158727, 45.348642],\n            [9.158727, 45.344145],\n            [9.15423, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.348642],\n            [9.15423, 45.353138],\n            [9.158727, 45.353138],\n            [9.158727, 45.348642],\n            [9.15423, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.353138],\n            [9.15423, 45.357635],\n            [9.158727, 45.357635],\n            [9.158727, 45.353138],\n            [9.15423, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.357635],\n            [9.15423, 45.362131],\n            [9.158727, 45.362131],\n            [9.158727, 45.357635],\n            [9.15423, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.362131],\n            [9.15423, 45.366628],\n            [9.158727, 45.366628],\n            [9.158727, 45.362131],\n            [9.15423, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.366628],\n            [9.15423, 45.371125],\n            [9.158727, 45.371125],\n            [9.158727, 45.366628],\n            [9.15423, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.371125],\n            [9.15423, 45.375621],\n            [9.158727, 45.375621],\n            [9.158727, 45.371125],\n            [9.15423, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.375621],\n            [9.15423, 45.380118],\n            [9.158727, 45.380118],\n            [9.158727, 45.375621],\n            [9.15423, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.380118],\n            [9.15423, 45.384614],\n            [9.158727, 45.384614],\n            [9.158727, 45.380118],\n            [9.15423, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.384614],\n            [9.15423, 45.389111],\n            [9.158727, 45.389111],\n            [9.158727, 45.384614],\n            [9.15423, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.389111],\n            [9.15423, 45.393608],\n            [9.158727, 45.393608],\n            [9.158727, 45.389111],\n            [9.15423, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.393608],\n            [9.15423, 45.398104],\n            [9.158727, 45.398104],\n            [9.158727, 45.393608],\n            [9.15423, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.398104],\n            [9.15423, 45.402601],\n            [9.158727, 45.402601],\n            [9.158727, 45.398104],\n            [9.15423, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.402601],\n            [9.15423, 45.407097],\n            [9.158727, 45.407097],\n            [9.158727, 45.402601],\n            [9.15423, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.407097],\n            [9.15423, 45.411594],\n            [9.158727, 45.411594],\n            [9.158727, 45.407097],\n            [9.15423, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.411594],\n            [9.15423, 45.416091],\n            [9.158727, 45.416091],\n            [9.158727, 45.411594],\n            [9.15423, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.416091],\n            [9.15423, 45.420587],\n            [9.158727, 45.420587],\n            [9.158727, 45.416091],\n            [9.15423, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.420587],\n            [9.15423, 45.425084],\n            [9.158727, 45.425084],\n            [9.158727, 45.420587],\n            [9.15423, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.425084],\n            [9.15423, 45.42958],\n            [9.158727, 45.42958],\n            [9.158727, 45.425084],\n            [9.15423, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.42958],\n            [9.15423, 45.434077],\n            [9.158727, 45.434077],\n            [9.158727, 45.42958],\n            [9.15423, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.434077],\n            [9.15423, 45.438574],\n            [9.158727, 45.438574],\n            [9.158727, 45.434077],\n            [9.15423, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.438574],\n            [9.15423, 45.44307],\n            [9.158727, 45.44307],\n            [9.158727, 45.438574],\n            [9.15423, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.44307],\n            [9.15423, 45.447567],\n            [9.158727, 45.447567],\n            [9.158727, 45.44307],\n            [9.15423, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.447567],\n            [9.15423, 45.452063],\n            [9.158727, 45.452063],\n            [9.158727, 45.447567],\n            [9.15423, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.452063],\n            [9.15423, 45.45656],\n            [9.158727, 45.45656],\n            [9.158727, 45.452063],\n            [9.15423, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.45656],\n            [9.15423, 45.461057],\n            [9.158727, 45.461057],\n            [9.158727, 45.45656],\n            [9.15423, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.461057],\n            [9.15423, 45.465553],\n            [9.158727, 45.465553],\n            [9.158727, 45.461057],\n            [9.15423, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 16,\n        \"stroke\": \"#cce7ff\",\n        \"fill\": \"#cce7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.465553],\n            [9.15423, 45.47005],\n            [9.158727, 45.47005],\n            [9.158727, 45.465553],\n            [9.15423, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 11,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.47005],\n            [9.15423, 45.474547],\n            [9.158727, 45.474547],\n            [9.158727, 45.47005],\n            [9.15423, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.474547],\n            [9.15423, 45.479043],\n            [9.158727, 45.479043],\n            [9.158727, 45.474547],\n            [9.15423, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.479043],\n            [9.15423, 45.48354],\n            [9.158727, 45.48354],\n            [9.158727, 45.479043],\n            [9.15423, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.48354],\n            [9.15423, 45.488036],\n            [9.158727, 45.488036],\n            [9.158727, 45.48354],\n            [9.15423, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.488036],\n            [9.15423, 45.492533],\n            [9.158727, 45.492533],\n            [9.158727, 45.488036],\n            [9.15423, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.492533],\n            [9.15423, 45.49703],\n            [9.158727, 45.49703],\n            [9.158727, 45.492533],\n            [9.15423, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.49703],\n            [9.15423, 45.501526],\n            [9.158727, 45.501526],\n            [9.158727, 45.49703],\n            [9.15423, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.501526],\n            [9.15423, 45.506023],\n            [9.158727, 45.506023],\n            [9.158727, 45.501526],\n            [9.15423, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.506023],\n            [9.15423, 45.510519],\n            [9.158727, 45.510519],\n            [9.158727, 45.506023],\n            [9.15423, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.510519],\n            [9.15423, 45.515016],\n            [9.158727, 45.515016],\n            [9.158727, 45.510519],\n            [9.15423, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.515016],\n            [9.15423, 45.519513],\n            [9.158727, 45.519513],\n            [9.158727, 45.515016],\n            [9.15423, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.519513],\n            [9.15423, 45.524009],\n            [9.158727, 45.524009],\n            [9.158727, 45.519513],\n            [9.15423, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.524009],\n            [9.15423, 45.528506],\n            [9.158727, 45.528506],\n            [9.158727, 45.524009],\n            [9.15423, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.528506],\n            [9.15423, 45.533002],\n            [9.158727, 45.533002],\n            [9.158727, 45.528506],\n            [9.15423, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.533002],\n            [9.15423, 45.537499],\n            [9.158727, 45.537499],\n            [9.158727, 45.533002],\n            [9.15423, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.537499],\n            [9.15423, 45.541996],\n            [9.158727, 45.541996],\n            [9.158727, 45.537499],\n            [9.15423, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.541996],\n            [9.15423, 45.546492],\n            [9.158727, 45.546492],\n            [9.158727, 45.541996],\n            [9.15423, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.546492],\n            [9.15423, 45.550989],\n            [9.158727, 45.550989],\n            [9.158727, 45.546492],\n            [9.15423, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.550989],\n            [9.15423, 45.555485],\n            [9.158727, 45.555485],\n            [9.158727, 45.550989],\n            [9.15423, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.555485],\n            [9.15423, 45.559982],\n            [9.158727, 45.559982],\n            [9.158727, 45.555485],\n            [9.15423, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.559982],\n            [9.15423, 45.564479],\n            [9.158727, 45.564479],\n            [9.158727, 45.559982],\n            [9.15423, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.564479],\n            [9.15423, 45.568975],\n            [9.158727, 45.568975],\n            [9.158727, 45.564479],\n            [9.15423, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.568975],\n            [9.15423, 45.573472],\n            [9.158727, 45.573472],\n            [9.158727, 45.568975],\n            [9.15423, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.573472],\n            [9.15423, 45.577968],\n            [9.158727, 45.577968],\n            [9.158727, 45.573472],\n            [9.15423, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.577968],\n            [9.15423, 45.582465],\n            [9.158727, 45.582465],\n            [9.158727, 45.577968],\n            [9.15423, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.582465],\n            [9.15423, 45.586962],\n            [9.158727, 45.586962],\n            [9.158727, 45.582465],\n            [9.15423, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.586962],\n            [9.15423, 45.591458],\n            [9.158727, 45.591458],\n            [9.158727, 45.586962],\n            [9.15423, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.591458],\n            [9.15423, 45.595955],\n            [9.158727, 45.595955],\n            [9.158727, 45.591458],\n            [9.15423, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.595955],\n            [9.15423, 45.600451],\n            [9.158727, 45.600451],\n            [9.158727, 45.595955],\n            [9.15423, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.600451],\n            [9.15423, 45.604948],\n            [9.158727, 45.604948],\n            [9.158727, 45.600451],\n            [9.15423, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.604948],\n            [9.15423, 45.609445],\n            [9.158727, 45.609445],\n            [9.158727, 45.604948],\n            [9.15423, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.609445],\n            [9.15423, 45.613941],\n            [9.158727, 45.613941],\n            [9.158727, 45.609445],\n            [9.15423, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.613941],\n            [9.15423, 45.618438],\n            [9.158727, 45.618438],\n            [9.158727, 45.613941],\n            [9.15423, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.618438],\n            [9.15423, 45.622934],\n            [9.158727, 45.622934],\n            [9.158727, 45.618438],\n            [9.15423, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.622934],\n            [9.15423, 45.627431],\n            [9.158727, 45.627431],\n            [9.158727, 45.622934],\n            [9.15423, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.627431],\n            [9.15423, 45.631928],\n            [9.158727, 45.631928],\n            [9.158727, 45.627431],\n            [9.15423, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.15423, 45.631928],\n            [9.15423, 45.636424],\n            [9.158727, 45.636424],\n            [9.158727, 45.631928],\n            [9.15423, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.339648],\n            [9.158727, 45.344145],\n            [9.163223, 45.344145],\n            [9.163223, 45.339648],\n            [9.158727, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.344145],\n            [9.158727, 45.348642],\n            [9.163223, 45.348642],\n            [9.163223, 45.344145],\n            [9.158727, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.348642],\n            [9.158727, 45.353138],\n            [9.163223, 45.353138],\n            [9.163223, 45.348642],\n            [9.158727, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.353138],\n            [9.158727, 45.357635],\n            [9.163223, 45.357635],\n            [9.163223, 45.353138],\n            [9.158727, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.357635],\n            [9.158727, 45.362131],\n            [9.163223, 45.362131],\n            [9.163223, 45.357635],\n            [9.158727, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.362131],\n            [9.158727, 45.366628],\n            [9.163223, 45.366628],\n            [9.163223, 45.362131],\n            [9.158727, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.366628],\n            [9.158727, 45.371125],\n            [9.163223, 45.371125],\n            [9.163223, 45.366628],\n            [9.158727, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.371125],\n            [9.158727, 45.375621],\n            [9.163223, 45.375621],\n            [9.163223, 45.371125],\n            [9.158727, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.375621],\n            [9.158727, 45.380118],\n            [9.163223, 45.380118],\n            [9.163223, 45.375621],\n            [9.158727, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.380118],\n            [9.158727, 45.384614],\n            [9.163223, 45.384614],\n            [9.163223, 45.380118],\n            [9.158727, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.384614],\n            [9.158727, 45.389111],\n            [9.163223, 45.389111],\n            [9.163223, 45.384614],\n            [9.158727, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.389111],\n            [9.158727, 45.393608],\n            [9.163223, 45.393608],\n            [9.163223, 45.389111],\n            [9.158727, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.393608],\n            [9.158727, 45.398104],\n            [9.163223, 45.398104],\n            [9.163223, 45.393608],\n            [9.158727, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.398104],\n            [9.158727, 45.402601],\n            [9.163223, 45.402601],\n            [9.163223, 45.398104],\n            [9.158727, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.402601],\n            [9.158727, 45.407097],\n            [9.163223, 45.407097],\n            [9.163223, 45.402601],\n            [9.158727, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.407097],\n            [9.158727, 45.411594],\n            [9.163223, 45.411594],\n            [9.163223, 45.407097],\n            [9.158727, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.411594],\n            [9.158727, 45.416091],\n            [9.163223, 45.416091],\n            [9.163223, 45.411594],\n            [9.158727, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.416091],\n            [9.158727, 45.420587],\n            [9.163223, 45.420587],\n            [9.163223, 45.416091],\n            [9.158727, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.420587],\n            [9.158727, 45.425084],\n            [9.163223, 45.425084],\n            [9.163223, 45.420587],\n            [9.158727, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.425084],\n            [9.158727, 45.42958],\n            [9.163223, 45.42958],\n            [9.163223, 45.425084],\n            [9.158727, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.42958],\n            [9.158727, 45.434077],\n            [9.163223, 45.434077],\n            [9.163223, 45.42958],\n            [9.158727, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.434077],\n            [9.158727, 45.438574],\n            [9.163223, 45.438574],\n            [9.163223, 45.434077],\n            [9.158727, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.438574],\n            [9.158727, 45.44307],\n            [9.163223, 45.44307],\n            [9.163223, 45.438574],\n            [9.158727, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.44307],\n            [9.158727, 45.447567],\n            [9.163223, 45.447567],\n            [9.163223, 45.44307],\n            [9.158727, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.447567],\n            [9.158727, 45.452063],\n            [9.163223, 45.452063],\n            [9.163223, 45.447567],\n            [9.158727, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.452063],\n            [9.158727, 45.45656],\n            [9.163223, 45.45656],\n            [9.163223, 45.452063],\n            [9.158727, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.45656],\n            [9.158727, 45.461057],\n            [9.163223, 45.461057],\n            [9.163223, 45.45656],\n            [9.158727, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.461057],\n            [9.158727, 45.465553],\n            [9.163223, 45.465553],\n            [9.163223, 45.461057],\n            [9.158727, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.465553],\n            [9.158727, 45.47005],\n            [9.163223, 45.47005],\n            [9.163223, 45.465553],\n            [9.158727, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 16,\n        \"stroke\": \"#cce7ff\",\n        \"fill\": \"#cce7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.47005],\n            [9.158727, 45.474547],\n            [9.163223, 45.474547],\n            [9.163223, 45.47005],\n            [9.158727, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.474547],\n            [9.158727, 45.479043],\n            [9.163223, 45.479043],\n            [9.163223, 45.474547],\n            [9.158727, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.479043],\n            [9.158727, 45.48354],\n            [9.163223, 45.48354],\n            [9.163223, 45.479043],\n            [9.158727, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.48354],\n            [9.158727, 45.488036],\n            [9.163223, 45.488036],\n            [9.163223, 45.48354],\n            [9.158727, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.488036],\n            [9.158727, 45.492533],\n            [9.163223, 45.492533],\n            [9.163223, 45.488036],\n            [9.158727, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.492533],\n            [9.158727, 45.49703],\n            [9.163223, 45.49703],\n            [9.163223, 45.492533],\n            [9.158727, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.49703],\n            [9.158727, 45.501526],\n            [9.163223, 45.501526],\n            [9.163223, 45.49703],\n            [9.158727, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.501526],\n            [9.158727, 45.506023],\n            [9.163223, 45.506023],\n            [9.163223, 45.501526],\n            [9.158727, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.506023],\n            [9.158727, 45.510519],\n            [9.163223, 45.510519],\n            [9.163223, 45.506023],\n            [9.158727, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.510519],\n            [9.158727, 45.515016],\n            [9.163223, 45.515016],\n            [9.163223, 45.510519],\n            [9.158727, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.515016],\n            [9.158727, 45.519513],\n            [9.163223, 45.519513],\n            [9.163223, 45.515016],\n            [9.158727, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.519513],\n            [9.158727, 45.524009],\n            [9.163223, 45.524009],\n            [9.163223, 45.519513],\n            [9.158727, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.524009],\n            [9.158727, 45.528506],\n            [9.163223, 45.528506],\n            [9.163223, 45.524009],\n            [9.158727, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.528506],\n            [9.158727, 45.533002],\n            [9.163223, 45.533002],\n            [9.163223, 45.528506],\n            [9.158727, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.533002],\n            [9.158727, 45.537499],\n            [9.163223, 45.537499],\n            [9.163223, 45.533002],\n            [9.158727, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.537499],\n            [9.158727, 45.541996],\n            [9.163223, 45.541996],\n            [9.163223, 45.537499],\n            [9.158727, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.541996],\n            [9.158727, 45.546492],\n            [9.163223, 45.546492],\n            [9.163223, 45.541996],\n            [9.158727, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.546492],\n            [9.158727, 45.550989],\n            [9.163223, 45.550989],\n            [9.163223, 45.546492],\n            [9.158727, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.550989],\n            [9.158727, 45.555485],\n            [9.163223, 45.555485],\n            [9.163223, 45.550989],\n            [9.158727, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.555485],\n            [9.158727, 45.559982],\n            [9.163223, 45.559982],\n            [9.163223, 45.555485],\n            [9.158727, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.559982],\n            [9.158727, 45.564479],\n            [9.163223, 45.564479],\n            [9.163223, 45.559982],\n            [9.158727, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.564479],\n            [9.158727, 45.568975],\n            [9.163223, 45.568975],\n            [9.163223, 45.564479],\n            [9.158727, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.568975],\n            [9.158727, 45.573472],\n            [9.163223, 45.573472],\n            [9.163223, 45.568975],\n            [9.158727, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.573472],\n            [9.158727, 45.577968],\n            [9.163223, 45.577968],\n            [9.163223, 45.573472],\n            [9.158727, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.577968],\n            [9.158727, 45.582465],\n            [9.163223, 45.582465],\n            [9.163223, 45.577968],\n            [9.158727, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.582465],\n            [9.158727, 45.586962],\n            [9.163223, 45.586962],\n            [9.163223, 45.582465],\n            [9.158727, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.586962],\n            [9.158727, 45.591458],\n            [9.163223, 45.591458],\n            [9.163223, 45.586962],\n            [9.158727, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.591458],\n            [9.158727, 45.595955],\n            [9.163223, 45.595955],\n            [9.163223, 45.591458],\n            [9.158727, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.595955],\n            [9.158727, 45.600451],\n            [9.163223, 45.600451],\n            [9.163223, 45.595955],\n            [9.158727, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.600451],\n            [9.158727, 45.604948],\n            [9.163223, 45.604948],\n            [9.163223, 45.600451],\n            [9.158727, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.604948],\n            [9.158727, 45.609445],\n            [9.163223, 45.609445],\n            [9.163223, 45.604948],\n            [9.158727, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.609445],\n            [9.158727, 45.613941],\n            [9.163223, 45.613941],\n            [9.163223, 45.609445],\n            [9.158727, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.613941],\n            [9.158727, 45.618438],\n            [9.163223, 45.618438],\n            [9.163223, 45.613941],\n            [9.158727, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.618438],\n            [9.158727, 45.622934],\n            [9.163223, 45.622934],\n            [9.163223, 45.618438],\n            [9.158727, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.622934],\n            [9.158727, 45.627431],\n            [9.163223, 45.627431],\n            [9.163223, 45.622934],\n            [9.158727, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.627431],\n            [9.158727, 45.631928],\n            [9.163223, 45.631928],\n            [9.163223, 45.627431],\n            [9.158727, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158727, 45.631928],\n            [9.158727, 45.636424],\n            [9.163223, 45.636424],\n            [9.163223, 45.631928],\n            [9.158727, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.339648],\n            [9.163223, 45.344145],\n            [9.16772, 45.344145],\n            [9.16772, 45.339648],\n            [9.163223, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.344145],\n            [9.163223, 45.348642],\n            [9.16772, 45.348642],\n            [9.16772, 45.344145],\n            [9.163223, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.348642],\n            [9.163223, 45.353138],\n            [9.16772, 45.353138],\n            [9.16772, 45.348642],\n            [9.163223, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.353138],\n            [9.163223, 45.357635],\n            [9.16772, 45.357635],\n            [9.16772, 45.353138],\n            [9.163223, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.357635],\n            [9.163223, 45.362131],\n            [9.16772, 45.362131],\n            [9.16772, 45.357635],\n            [9.163223, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.362131],\n            [9.163223, 45.366628],\n            [9.16772, 45.366628],\n            [9.16772, 45.362131],\n            [9.163223, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.366628],\n            [9.163223, 45.371125],\n            [9.16772, 45.371125],\n            [9.16772, 45.366628],\n            [9.163223, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.371125],\n            [9.163223, 45.375621],\n            [9.16772, 45.375621],\n            [9.16772, 45.371125],\n            [9.163223, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.375621],\n            [9.163223, 45.380118],\n            [9.16772, 45.380118],\n            [9.16772, 45.375621],\n            [9.163223, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.380118],\n            [9.163223, 45.384614],\n            [9.16772, 45.384614],\n            [9.16772, 45.380118],\n            [9.163223, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.384614],\n            [9.163223, 45.389111],\n            [9.16772, 45.389111],\n            [9.16772, 45.384614],\n            [9.163223, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.389111],\n            [9.163223, 45.393608],\n            [9.16772, 45.393608],\n            [9.16772, 45.389111],\n            [9.163223, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.393608],\n            [9.163223, 45.398104],\n            [9.16772, 45.398104],\n            [9.16772, 45.393608],\n            [9.163223, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.398104],\n            [9.163223, 45.402601],\n            [9.16772, 45.402601],\n            [9.16772, 45.398104],\n            [9.163223, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.402601],\n            [9.163223, 45.407097],\n            [9.16772, 45.407097],\n            [9.16772, 45.402601],\n            [9.163223, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.407097],\n            [9.163223, 45.411594],\n            [9.16772, 45.411594],\n            [9.16772, 45.407097],\n            [9.163223, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.411594],\n            [9.163223, 45.416091],\n            [9.16772, 45.416091],\n            [9.16772, 45.411594],\n            [9.163223, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.416091],\n            [9.163223, 45.420587],\n            [9.16772, 45.420587],\n            [9.16772, 45.416091],\n            [9.163223, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.420587],\n            [9.163223, 45.425084],\n            [9.16772, 45.425084],\n            [9.16772, 45.420587],\n            [9.163223, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.425084],\n            [9.163223, 45.42958],\n            [9.16772, 45.42958],\n            [9.16772, 45.425084],\n            [9.163223, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.42958],\n            [9.163223, 45.434077],\n            [9.16772, 45.434077],\n            [9.16772, 45.42958],\n            [9.163223, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.434077],\n            [9.163223, 45.438574],\n            [9.16772, 45.438574],\n            [9.16772, 45.434077],\n            [9.163223, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.438574],\n            [9.163223, 45.44307],\n            [9.16772, 45.44307],\n            [9.16772, 45.438574],\n            [9.163223, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.44307],\n            [9.163223, 45.447567],\n            [9.16772, 45.447567],\n            [9.16772, 45.44307],\n            [9.163223, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.447567],\n            [9.163223, 45.452063],\n            [9.16772, 45.452063],\n            [9.16772, 45.447567],\n            [9.163223, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.452063],\n            [9.163223, 45.45656],\n            [9.16772, 45.45656],\n            [9.16772, 45.452063],\n            [9.163223, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.45656],\n            [9.163223, 45.461057],\n            [9.16772, 45.461057],\n            [9.16772, 45.45656],\n            [9.163223, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.461057],\n            [9.163223, 45.465553],\n            [9.16772, 45.465553],\n            [9.16772, 45.461057],\n            [9.163223, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.465553],\n            [9.163223, 45.47005],\n            [9.16772, 45.47005],\n            [9.16772, 45.465553],\n            [9.163223, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.47005],\n            [9.163223, 45.474547],\n            [9.16772, 45.474547],\n            [9.16772, 45.47005],\n            [9.163223, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.474547],\n            [9.163223, 45.479043],\n            [9.16772, 45.479043],\n            [9.16772, 45.474547],\n            [9.163223, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.479043],\n            [9.163223, 45.48354],\n            [9.16772, 45.48354],\n            [9.16772, 45.479043],\n            [9.163223, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.48354],\n            [9.163223, 45.488036],\n            [9.16772, 45.488036],\n            [9.16772, 45.48354],\n            [9.163223, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.488036],\n            [9.163223, 45.492533],\n            [9.16772, 45.492533],\n            [9.16772, 45.488036],\n            [9.163223, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.492533],\n            [9.163223, 45.49703],\n            [9.16772, 45.49703],\n            [9.16772, 45.492533],\n            [9.163223, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.49703],\n            [9.163223, 45.501526],\n            [9.16772, 45.501526],\n            [9.16772, 45.49703],\n            [9.163223, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.501526],\n            [9.163223, 45.506023],\n            [9.16772, 45.506023],\n            [9.16772, 45.501526],\n            [9.163223, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.506023],\n            [9.163223, 45.510519],\n            [9.16772, 45.510519],\n            [9.16772, 45.506023],\n            [9.163223, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.510519],\n            [9.163223, 45.515016],\n            [9.16772, 45.515016],\n            [9.16772, 45.510519],\n            [9.163223, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.515016],\n            [9.163223, 45.519513],\n            [9.16772, 45.519513],\n            [9.16772, 45.515016],\n            [9.163223, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.519513],\n            [9.163223, 45.524009],\n            [9.16772, 45.524009],\n            [9.16772, 45.519513],\n            [9.163223, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.524009],\n            [9.163223, 45.528506],\n            [9.16772, 45.528506],\n            [9.16772, 45.524009],\n            [9.163223, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.528506],\n            [9.163223, 45.533002],\n            [9.16772, 45.533002],\n            [9.16772, 45.528506],\n            [9.163223, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.533002],\n            [9.163223, 45.537499],\n            [9.16772, 45.537499],\n            [9.16772, 45.533002],\n            [9.163223, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.537499],\n            [9.163223, 45.541996],\n            [9.16772, 45.541996],\n            [9.16772, 45.537499],\n            [9.163223, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.541996],\n            [9.163223, 45.546492],\n            [9.16772, 45.546492],\n            [9.16772, 45.541996],\n            [9.163223, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.546492],\n            [9.163223, 45.550989],\n            [9.16772, 45.550989],\n            [9.16772, 45.546492],\n            [9.163223, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.550989],\n            [9.163223, 45.555485],\n            [9.16772, 45.555485],\n            [9.16772, 45.550989],\n            [9.163223, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.555485],\n            [9.163223, 45.559982],\n            [9.16772, 45.559982],\n            [9.16772, 45.555485],\n            [9.163223, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.559982],\n            [9.163223, 45.564479],\n            [9.16772, 45.564479],\n            [9.16772, 45.559982],\n            [9.163223, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.564479],\n            [9.163223, 45.568975],\n            [9.16772, 45.568975],\n            [9.16772, 45.564479],\n            [9.163223, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.568975],\n            [9.163223, 45.573472],\n            [9.16772, 45.573472],\n            [9.16772, 45.568975],\n            [9.163223, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.573472],\n            [9.163223, 45.577968],\n            [9.16772, 45.577968],\n            [9.16772, 45.573472],\n            [9.163223, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.577968],\n            [9.163223, 45.582465],\n            [9.16772, 45.582465],\n            [9.16772, 45.577968],\n            [9.163223, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.582465],\n            [9.163223, 45.586962],\n            [9.16772, 45.586962],\n            [9.16772, 45.582465],\n            [9.163223, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.586962],\n            [9.163223, 45.591458],\n            [9.16772, 45.591458],\n            [9.16772, 45.586962],\n            [9.163223, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.591458],\n            [9.163223, 45.595955],\n            [9.16772, 45.595955],\n            [9.16772, 45.591458],\n            [9.163223, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.595955],\n            [9.163223, 45.600451],\n            [9.16772, 45.600451],\n            [9.16772, 45.595955],\n            [9.163223, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.600451],\n            [9.163223, 45.604948],\n            [9.16772, 45.604948],\n            [9.16772, 45.600451],\n            [9.163223, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.604948],\n            [9.163223, 45.609445],\n            [9.16772, 45.609445],\n            [9.16772, 45.604948],\n            [9.163223, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.609445],\n            [9.163223, 45.613941],\n            [9.16772, 45.613941],\n            [9.16772, 45.609445],\n            [9.163223, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.613941],\n            [9.163223, 45.618438],\n            [9.16772, 45.618438],\n            [9.16772, 45.613941],\n            [9.163223, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.618438],\n            [9.163223, 45.622934],\n            [9.16772, 45.622934],\n            [9.16772, 45.618438],\n            [9.163223, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.622934],\n            [9.163223, 45.627431],\n            [9.16772, 45.627431],\n            [9.16772, 45.622934],\n            [9.163223, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.627431],\n            [9.163223, 45.631928],\n            [9.16772, 45.631928],\n            [9.16772, 45.627431],\n            [9.163223, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.163223, 45.631928],\n            [9.163223, 45.636424],\n            [9.16772, 45.636424],\n            [9.16772, 45.631928],\n            [9.163223, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.339648],\n            [9.16772, 45.344145],\n            [9.172216, 45.344145],\n            [9.172216, 45.339648],\n            [9.16772, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.344145],\n            [9.16772, 45.348642],\n            [9.172216, 45.348642],\n            [9.172216, 45.344145],\n            [9.16772, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.348642],\n            [9.16772, 45.353138],\n            [9.172216, 45.353138],\n            [9.172216, 45.348642],\n            [9.16772, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.353138],\n            [9.16772, 45.357635],\n            [9.172216, 45.357635],\n            [9.172216, 45.353138],\n            [9.16772, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.357635],\n            [9.16772, 45.362131],\n            [9.172216, 45.362131],\n            [9.172216, 45.357635],\n            [9.16772, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.362131],\n            [9.16772, 45.366628],\n            [9.172216, 45.366628],\n            [9.172216, 45.362131],\n            [9.16772, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.366628],\n            [9.16772, 45.371125],\n            [9.172216, 45.371125],\n            [9.172216, 45.366628],\n            [9.16772, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.371125],\n            [9.16772, 45.375621],\n            [9.172216, 45.375621],\n            [9.172216, 45.371125],\n            [9.16772, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.375621],\n            [9.16772, 45.380118],\n            [9.172216, 45.380118],\n            [9.172216, 45.375621],\n            [9.16772, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.380118],\n            [9.16772, 45.384614],\n            [9.172216, 45.384614],\n            [9.172216, 45.380118],\n            [9.16772, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.384614],\n            [9.16772, 45.389111],\n            [9.172216, 45.389111],\n            [9.172216, 45.384614],\n            [9.16772, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.389111],\n            [9.16772, 45.393608],\n            [9.172216, 45.393608],\n            [9.172216, 45.389111],\n            [9.16772, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.393608],\n            [9.16772, 45.398104],\n            [9.172216, 45.398104],\n            [9.172216, 45.393608],\n            [9.16772, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.398104],\n            [9.16772, 45.402601],\n            [9.172216, 45.402601],\n            [9.172216, 45.398104],\n            [9.16772, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.402601],\n            [9.16772, 45.407097],\n            [9.172216, 45.407097],\n            [9.172216, 45.402601],\n            [9.16772, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.407097],\n            [9.16772, 45.411594],\n            [9.172216, 45.411594],\n            [9.172216, 45.407097],\n            [9.16772, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.411594],\n            [9.16772, 45.416091],\n            [9.172216, 45.416091],\n            [9.172216, 45.411594],\n            [9.16772, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.416091],\n            [9.16772, 45.420587],\n            [9.172216, 45.420587],\n            [9.172216, 45.416091],\n            [9.16772, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.420587],\n            [9.16772, 45.425084],\n            [9.172216, 45.425084],\n            [9.172216, 45.420587],\n            [9.16772, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.425084],\n            [9.16772, 45.42958],\n            [9.172216, 45.42958],\n            [9.172216, 45.425084],\n            [9.16772, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.42958],\n            [9.16772, 45.434077],\n            [9.172216, 45.434077],\n            [9.172216, 45.42958],\n            [9.16772, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.434077],\n            [9.16772, 45.438574],\n            [9.172216, 45.438574],\n            [9.172216, 45.434077],\n            [9.16772, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.438574],\n            [9.16772, 45.44307],\n            [9.172216, 45.44307],\n            [9.172216, 45.438574],\n            [9.16772, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.44307],\n            [9.16772, 45.447567],\n            [9.172216, 45.447567],\n            [9.172216, 45.44307],\n            [9.16772, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.447567],\n            [9.16772, 45.452063],\n            [9.172216, 45.452063],\n            [9.172216, 45.447567],\n            [9.16772, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.452063],\n            [9.16772, 45.45656],\n            [9.172216, 45.45656],\n            [9.172216, 45.452063],\n            [9.16772, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.45656],\n            [9.16772, 45.461057],\n            [9.172216, 45.461057],\n            [9.172216, 45.45656],\n            [9.16772, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.461057],\n            [9.16772, 45.465553],\n            [9.172216, 45.465553],\n            [9.172216, 45.461057],\n            [9.16772, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.465553],\n            [9.16772, 45.47005],\n            [9.172216, 45.47005],\n            [9.172216, 45.465553],\n            [9.16772, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.47005],\n            [9.16772, 45.474547],\n            [9.172216, 45.474547],\n            [9.172216, 45.47005],\n            [9.16772, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.474547],\n            [9.16772, 45.479043],\n            [9.172216, 45.479043],\n            [9.172216, 45.474547],\n            [9.16772, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.479043],\n            [9.16772, 45.48354],\n            [9.172216, 45.48354],\n            [9.172216, 45.479043],\n            [9.16772, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.48354],\n            [9.16772, 45.488036],\n            [9.172216, 45.488036],\n            [9.172216, 45.48354],\n            [9.16772, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.488036],\n            [9.16772, 45.492533],\n            [9.172216, 45.492533],\n            [9.172216, 45.488036],\n            [9.16772, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.492533],\n            [9.16772, 45.49703],\n            [9.172216, 45.49703],\n            [9.172216, 45.492533],\n            [9.16772, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.49703],\n            [9.16772, 45.501526],\n            [9.172216, 45.501526],\n            [9.172216, 45.49703],\n            [9.16772, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.501526],\n            [9.16772, 45.506023],\n            [9.172216, 45.506023],\n            [9.172216, 45.501526],\n            [9.16772, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.506023],\n            [9.16772, 45.510519],\n            [9.172216, 45.510519],\n            [9.172216, 45.506023],\n            [9.16772, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.510519],\n            [9.16772, 45.515016],\n            [9.172216, 45.515016],\n            [9.172216, 45.510519],\n            [9.16772, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.515016],\n            [9.16772, 45.519513],\n            [9.172216, 45.519513],\n            [9.172216, 45.515016],\n            [9.16772, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.519513],\n            [9.16772, 45.524009],\n            [9.172216, 45.524009],\n            [9.172216, 45.519513],\n            [9.16772, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.524009],\n            [9.16772, 45.528506],\n            [9.172216, 45.528506],\n            [9.172216, 45.524009],\n            [9.16772, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.528506],\n            [9.16772, 45.533002],\n            [9.172216, 45.533002],\n            [9.172216, 45.528506],\n            [9.16772, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.533002],\n            [9.16772, 45.537499],\n            [9.172216, 45.537499],\n            [9.172216, 45.533002],\n            [9.16772, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.537499],\n            [9.16772, 45.541996],\n            [9.172216, 45.541996],\n            [9.172216, 45.537499],\n            [9.16772, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.541996],\n            [9.16772, 45.546492],\n            [9.172216, 45.546492],\n            [9.172216, 45.541996],\n            [9.16772, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.546492],\n            [9.16772, 45.550989],\n            [9.172216, 45.550989],\n            [9.172216, 45.546492],\n            [9.16772, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.550989],\n            [9.16772, 45.555485],\n            [9.172216, 45.555485],\n            [9.172216, 45.550989],\n            [9.16772, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.555485],\n            [9.16772, 45.559982],\n            [9.172216, 45.559982],\n            [9.172216, 45.555485],\n            [9.16772, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.559982],\n            [9.16772, 45.564479],\n            [9.172216, 45.564479],\n            [9.172216, 45.559982],\n            [9.16772, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.564479],\n            [9.16772, 45.568975],\n            [9.172216, 45.568975],\n            [9.172216, 45.564479],\n            [9.16772, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.568975],\n            [9.16772, 45.573472],\n            [9.172216, 45.573472],\n            [9.172216, 45.568975],\n            [9.16772, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.573472],\n            [9.16772, 45.577968],\n            [9.172216, 45.577968],\n            [9.172216, 45.573472],\n            [9.16772, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.577968],\n            [9.16772, 45.582465],\n            [9.172216, 45.582465],\n            [9.172216, 45.577968],\n            [9.16772, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.582465],\n            [9.16772, 45.586962],\n            [9.172216, 45.586962],\n            [9.172216, 45.582465],\n            [9.16772, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.586962],\n            [9.16772, 45.591458],\n            [9.172216, 45.591458],\n            [9.172216, 45.586962],\n            [9.16772, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.591458],\n            [9.16772, 45.595955],\n            [9.172216, 45.595955],\n            [9.172216, 45.591458],\n            [9.16772, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.595955],\n            [9.16772, 45.600451],\n            [9.172216, 45.600451],\n            [9.172216, 45.595955],\n            [9.16772, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.600451],\n            [9.16772, 45.604948],\n            [9.172216, 45.604948],\n            [9.172216, 45.600451],\n            [9.16772, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.604948],\n            [9.16772, 45.609445],\n            [9.172216, 45.609445],\n            [9.172216, 45.604948],\n            [9.16772, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.609445],\n            [9.16772, 45.613941],\n            [9.172216, 45.613941],\n            [9.172216, 45.609445],\n            [9.16772, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.613941],\n            [9.16772, 45.618438],\n            [9.172216, 45.618438],\n            [9.172216, 45.613941],\n            [9.16772, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.618438],\n            [9.16772, 45.622934],\n            [9.172216, 45.622934],\n            [9.172216, 45.618438],\n            [9.16772, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.622934],\n            [9.16772, 45.627431],\n            [9.172216, 45.627431],\n            [9.172216, 45.622934],\n            [9.16772, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.627431],\n            [9.16772, 45.631928],\n            [9.172216, 45.631928],\n            [9.172216, 45.627431],\n            [9.16772, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.16772, 45.631928],\n            [9.16772, 45.636424],\n            [9.172216, 45.636424],\n            [9.172216, 45.631928],\n            [9.16772, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.339648],\n            [9.172216, 45.344145],\n            [9.176713, 45.344145],\n            [9.176713, 45.339648],\n            [9.172216, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.344145],\n            [9.172216, 45.348642],\n            [9.176713, 45.348642],\n            [9.176713, 45.344145],\n            [9.172216, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.348642],\n            [9.172216, 45.353138],\n            [9.176713, 45.353138],\n            [9.176713, 45.348642],\n            [9.172216, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.353138],\n            [9.172216, 45.357635],\n            [9.176713, 45.357635],\n            [9.176713, 45.353138],\n            [9.172216, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.357635],\n            [9.172216, 45.362131],\n            [9.176713, 45.362131],\n            [9.176713, 45.357635],\n            [9.172216, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.362131],\n            [9.172216, 45.366628],\n            [9.176713, 45.366628],\n            [9.176713, 45.362131],\n            [9.172216, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.366628],\n            [9.172216, 45.371125],\n            [9.176713, 45.371125],\n            [9.176713, 45.366628],\n            [9.172216, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.371125],\n            [9.172216, 45.375621],\n            [9.176713, 45.375621],\n            [9.176713, 45.371125],\n            [9.172216, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.375621],\n            [9.172216, 45.380118],\n            [9.176713, 45.380118],\n            [9.176713, 45.375621],\n            [9.172216, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.380118],\n            [9.172216, 45.384614],\n            [9.176713, 45.384614],\n            [9.176713, 45.380118],\n            [9.172216, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.384614],\n            [9.172216, 45.389111],\n            [9.176713, 45.389111],\n            [9.176713, 45.384614],\n            [9.172216, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.389111],\n            [9.172216, 45.393608],\n            [9.176713, 45.393608],\n            [9.176713, 45.389111],\n            [9.172216, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.393608],\n            [9.172216, 45.398104],\n            [9.176713, 45.398104],\n            [9.176713, 45.393608],\n            [9.172216, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.398104],\n            [9.172216, 45.402601],\n            [9.176713, 45.402601],\n            [9.176713, 45.398104],\n            [9.172216, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.402601],\n            [9.172216, 45.407097],\n            [9.176713, 45.407097],\n            [9.176713, 45.402601],\n            [9.172216, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.407097],\n            [9.172216, 45.411594],\n            [9.176713, 45.411594],\n            [9.176713, 45.407097],\n            [9.172216, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.411594],\n            [9.172216, 45.416091],\n            [9.176713, 45.416091],\n            [9.176713, 45.411594],\n            [9.172216, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.416091],\n            [9.172216, 45.420587],\n            [9.176713, 45.420587],\n            [9.176713, 45.416091],\n            [9.172216, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.420587],\n            [9.172216, 45.425084],\n            [9.176713, 45.425084],\n            [9.176713, 45.420587],\n            [9.172216, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.425084],\n            [9.172216, 45.42958],\n            [9.176713, 45.42958],\n            [9.176713, 45.425084],\n            [9.172216, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.42958],\n            [9.172216, 45.434077],\n            [9.176713, 45.434077],\n            [9.176713, 45.42958],\n            [9.172216, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.434077],\n            [9.172216, 45.438574],\n            [9.176713, 45.438574],\n            [9.176713, 45.434077],\n            [9.172216, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.438574],\n            [9.172216, 45.44307],\n            [9.176713, 45.44307],\n            [9.176713, 45.438574],\n            [9.172216, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.44307],\n            [9.172216, 45.447567],\n            [9.176713, 45.447567],\n            [9.176713, 45.44307],\n            [9.172216, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.447567],\n            [9.172216, 45.452063],\n            [9.176713, 45.452063],\n            [9.176713, 45.447567],\n            [9.172216, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.452063],\n            [9.172216, 45.45656],\n            [9.176713, 45.45656],\n            [9.176713, 45.452063],\n            [9.172216, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.45656],\n            [9.172216, 45.461057],\n            [9.176713, 45.461057],\n            [9.176713, 45.45656],\n            [9.172216, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.461057],\n            [9.172216, 45.465553],\n            [9.176713, 45.465553],\n            [9.176713, 45.461057],\n            [9.172216, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.465553],\n            [9.172216, 45.47005],\n            [9.176713, 45.47005],\n            [9.176713, 45.465553],\n            [9.172216, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.47005],\n            [9.172216, 45.474547],\n            [9.176713, 45.474547],\n            [9.176713, 45.47005],\n            [9.172216, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.474547],\n            [9.172216, 45.479043],\n            [9.176713, 45.479043],\n            [9.176713, 45.474547],\n            [9.172216, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.479043],\n            [9.172216, 45.48354],\n            [9.176713, 45.48354],\n            [9.176713, 45.479043],\n            [9.172216, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.48354],\n            [9.172216, 45.488036],\n            [9.176713, 45.488036],\n            [9.176713, 45.48354],\n            [9.172216, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.488036],\n            [9.172216, 45.492533],\n            [9.176713, 45.492533],\n            [9.176713, 45.488036],\n            [9.172216, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.492533],\n            [9.172216, 45.49703],\n            [9.176713, 45.49703],\n            [9.176713, 45.492533],\n            [9.172216, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 16,\n        \"stroke\": \"#cce7ff\",\n        \"fill\": \"#cce7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.49703],\n            [9.172216, 45.501526],\n            [9.176713, 45.501526],\n            [9.176713, 45.49703],\n            [9.172216, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.501526],\n            [9.172216, 45.506023],\n            [9.176713, 45.506023],\n            [9.176713, 45.501526],\n            [9.172216, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.506023],\n            [9.172216, 45.510519],\n            [9.176713, 45.510519],\n            [9.176713, 45.506023],\n            [9.172216, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.510519],\n            [9.172216, 45.515016],\n            [9.176713, 45.515016],\n            [9.176713, 45.510519],\n            [9.172216, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.515016],\n            [9.172216, 45.519513],\n            [9.176713, 45.519513],\n            [9.176713, 45.515016],\n            [9.172216, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.519513],\n            [9.172216, 45.524009],\n            [9.176713, 45.524009],\n            [9.176713, 45.519513],\n            [9.172216, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.524009],\n            [9.172216, 45.528506],\n            [9.176713, 45.528506],\n            [9.176713, 45.524009],\n            [9.172216, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.528506],\n            [9.172216, 45.533002],\n            [9.176713, 45.533002],\n            [9.176713, 45.528506],\n            [9.172216, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 38,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.533002],\n            [9.172216, 45.537499],\n            [9.176713, 45.537499],\n            [9.176713, 45.533002],\n            [9.172216, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 38,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.537499],\n            [9.172216, 45.541996],\n            [9.176713, 45.541996],\n            [9.176713, 45.537499],\n            [9.172216, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 38,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.541996],\n            [9.172216, 45.546492],\n            [9.176713, 45.546492],\n            [9.176713, 45.541996],\n            [9.172216, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.546492],\n            [9.172216, 45.550989],\n            [9.176713, 45.550989],\n            [9.176713, 45.546492],\n            [9.172216, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.550989],\n            [9.172216, 45.555485],\n            [9.176713, 45.555485],\n            [9.176713, 45.550989],\n            [9.172216, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.555485],\n            [9.172216, 45.559982],\n            [9.176713, 45.559982],\n            [9.176713, 45.555485],\n            [9.172216, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.559982],\n            [9.172216, 45.564479],\n            [9.176713, 45.564479],\n            [9.176713, 45.559982],\n            [9.172216, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.564479],\n            [9.172216, 45.568975],\n            [9.176713, 45.568975],\n            [9.176713, 45.564479],\n            [9.172216, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.568975],\n            [9.172216, 45.573472],\n            [9.176713, 45.573472],\n            [9.176713, 45.568975],\n            [9.172216, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.573472],\n            [9.172216, 45.577968],\n            [9.176713, 45.577968],\n            [9.176713, 45.573472],\n            [9.172216, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.577968],\n            [9.172216, 45.582465],\n            [9.176713, 45.582465],\n            [9.176713, 45.577968],\n            [9.172216, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.582465],\n            [9.172216, 45.586962],\n            [9.176713, 45.586962],\n            [9.176713, 45.582465],\n            [9.172216, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.586962],\n            [9.172216, 45.591458],\n            [9.176713, 45.591458],\n            [9.176713, 45.586962],\n            [9.172216, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.591458],\n            [9.172216, 45.595955],\n            [9.176713, 45.595955],\n            [9.176713, 45.591458],\n            [9.172216, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.595955],\n            [9.172216, 45.600451],\n            [9.176713, 45.600451],\n            [9.176713, 45.595955],\n            [9.172216, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.600451],\n            [9.172216, 45.604948],\n            [9.176713, 45.604948],\n            [9.176713, 45.600451],\n            [9.172216, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.604948],\n            [9.172216, 45.609445],\n            [9.176713, 45.609445],\n            [9.176713, 45.604948],\n            [9.172216, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.609445],\n            [9.172216, 45.613941],\n            [9.176713, 45.613941],\n            [9.176713, 45.609445],\n            [9.172216, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.613941],\n            [9.172216, 45.618438],\n            [9.176713, 45.618438],\n            [9.176713, 45.613941],\n            [9.172216, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.618438],\n            [9.172216, 45.622934],\n            [9.176713, 45.622934],\n            [9.176713, 45.618438],\n            [9.172216, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.622934],\n            [9.172216, 45.627431],\n            [9.176713, 45.627431],\n            [9.176713, 45.622934],\n            [9.172216, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.627431],\n            [9.172216, 45.631928],\n            [9.176713, 45.631928],\n            [9.176713, 45.627431],\n            [9.172216, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.172216, 45.631928],\n            [9.172216, 45.636424],\n            [9.176713, 45.636424],\n            [9.176713, 45.631928],\n            [9.172216, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.339648],\n            [9.176713, 45.344145],\n            [9.18121, 45.344145],\n            [9.18121, 45.339648],\n            [9.176713, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.344145],\n            [9.176713, 45.348642],\n            [9.18121, 45.348642],\n            [9.18121, 45.344145],\n            [9.176713, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.348642],\n            [9.176713, 45.353138],\n            [9.18121, 45.353138],\n            [9.18121, 45.348642],\n            [9.176713, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.353138],\n            [9.176713, 45.357635],\n            [9.18121, 45.357635],\n            [9.18121, 45.353138],\n            [9.176713, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.357635],\n            [9.176713, 45.362131],\n            [9.18121, 45.362131],\n            [9.18121, 45.357635],\n            [9.176713, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.362131],\n            [9.176713, 45.366628],\n            [9.18121, 45.366628],\n            [9.18121, 45.362131],\n            [9.176713, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.366628],\n            [9.176713, 45.371125],\n            [9.18121, 45.371125],\n            [9.18121, 45.366628],\n            [9.176713, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.371125],\n            [9.176713, 45.375621],\n            [9.18121, 45.375621],\n            [9.18121, 45.371125],\n            [9.176713, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.375621],\n            [9.176713, 45.380118],\n            [9.18121, 45.380118],\n            [9.18121, 45.375621],\n            [9.176713, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.380118],\n            [9.176713, 45.384614],\n            [9.18121, 45.384614],\n            [9.18121, 45.380118],\n            [9.176713, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.384614],\n            [9.176713, 45.389111],\n            [9.18121, 45.389111],\n            [9.18121, 45.384614],\n            [9.176713, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.389111],\n            [9.176713, 45.393608],\n            [9.18121, 45.393608],\n            [9.18121, 45.389111],\n            [9.176713, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.393608],\n            [9.176713, 45.398104],\n            [9.18121, 45.398104],\n            [9.18121, 45.393608],\n            [9.176713, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.398104],\n            [9.176713, 45.402601],\n            [9.18121, 45.402601],\n            [9.18121, 45.398104],\n            [9.176713, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.402601],\n            [9.176713, 45.407097],\n            [9.18121, 45.407097],\n            [9.18121, 45.402601],\n            [9.176713, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.407097],\n            [9.176713, 45.411594],\n            [9.18121, 45.411594],\n            [9.18121, 45.407097],\n            [9.176713, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.411594],\n            [9.176713, 45.416091],\n            [9.18121, 45.416091],\n            [9.18121, 45.411594],\n            [9.176713, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.416091],\n            [9.176713, 45.420587],\n            [9.18121, 45.420587],\n            [9.18121, 45.416091],\n            [9.176713, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.420587],\n            [9.176713, 45.425084],\n            [9.18121, 45.425084],\n            [9.18121, 45.420587],\n            [9.176713, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.425084],\n            [9.176713, 45.42958],\n            [9.18121, 45.42958],\n            [9.18121, 45.425084],\n            [9.176713, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.42958],\n            [9.176713, 45.434077],\n            [9.18121, 45.434077],\n            [9.18121, 45.42958],\n            [9.176713, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.434077],\n            [9.176713, 45.438574],\n            [9.18121, 45.438574],\n            [9.18121, 45.434077],\n            [9.176713, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.438574],\n            [9.176713, 45.44307],\n            [9.18121, 45.44307],\n            [9.18121, 45.438574],\n            [9.176713, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.44307],\n            [9.176713, 45.447567],\n            [9.18121, 45.447567],\n            [9.18121, 45.44307],\n            [9.176713, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.447567],\n            [9.176713, 45.452063],\n            [9.18121, 45.452063],\n            [9.18121, 45.447567],\n            [9.176713, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.452063],\n            [9.176713, 45.45656],\n            [9.18121, 45.45656],\n            [9.18121, 45.452063],\n            [9.176713, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.45656],\n            [9.176713, 45.461057],\n            [9.18121, 45.461057],\n            [9.18121, 45.45656],\n            [9.176713, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.461057],\n            [9.176713, 45.465553],\n            [9.18121, 45.465553],\n            [9.18121, 45.461057],\n            [9.176713, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.465553],\n            [9.176713, 45.47005],\n            [9.18121, 45.47005],\n            [9.18121, 45.465553],\n            [9.176713, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.47005],\n            [9.176713, 45.474547],\n            [9.18121, 45.474547],\n            [9.18121, 45.47005],\n            [9.176713, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.474547],\n            [9.176713, 45.479043],\n            [9.18121, 45.479043],\n            [9.18121, 45.474547],\n            [9.176713, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.479043],\n            [9.176713, 45.48354],\n            [9.18121, 45.48354],\n            [9.18121, 45.479043],\n            [9.176713, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.48354],\n            [9.176713, 45.488036],\n            [9.18121, 45.488036],\n            [9.18121, 45.48354],\n            [9.176713, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.488036],\n            [9.176713, 45.492533],\n            [9.18121, 45.492533],\n            [9.18121, 45.488036],\n            [9.176713, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.492533],\n            [9.176713, 45.49703],\n            [9.18121, 45.49703],\n            [9.18121, 45.492533],\n            [9.176713, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.49703],\n            [9.176713, 45.501526],\n            [9.18121, 45.501526],\n            [9.18121, 45.49703],\n            [9.176713, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.501526],\n            [9.176713, 45.506023],\n            [9.18121, 45.506023],\n            [9.18121, 45.501526],\n            [9.176713, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.506023],\n            [9.176713, 45.510519],\n            [9.18121, 45.510519],\n            [9.18121, 45.506023],\n            [9.176713, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.510519],\n            [9.176713, 45.515016],\n            [9.18121, 45.515016],\n            [9.18121, 45.510519],\n            [9.176713, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.515016],\n            [9.176713, 45.519513],\n            [9.18121, 45.519513],\n            [9.18121, 45.515016],\n            [9.176713, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.519513],\n            [9.176713, 45.524009],\n            [9.18121, 45.524009],\n            [9.18121, 45.519513],\n            [9.176713, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.524009],\n            [9.176713, 45.528506],\n            [9.18121, 45.528506],\n            [9.18121, 45.524009],\n            [9.176713, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 38,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.528506],\n            [9.176713, 45.533002],\n            [9.18121, 45.533002],\n            [9.18121, 45.528506],\n            [9.176713, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 40,\n        \"stroke\": \"#006dd1\",\n        \"fill\": \"#006dd1\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.533002],\n            [9.176713, 45.537499],\n            [9.18121, 45.537499],\n            [9.18121, 45.533002],\n            [9.176713, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 41,\n        \"stroke\": \"#0068c7\",\n        \"fill\": \"#0068c7\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.537499],\n            [9.176713, 45.541996],\n            [9.18121, 45.541996],\n            [9.18121, 45.537499],\n            [9.176713, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 40,\n        \"stroke\": \"#006dd1\",\n        \"fill\": \"#006dd1\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.541996],\n            [9.176713, 45.546492],\n            [9.18121, 45.546492],\n            [9.18121, 45.541996],\n            [9.176713, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 39,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.546492],\n            [9.176713, 45.550989],\n            [9.18121, 45.550989],\n            [9.18121, 45.546492],\n            [9.176713, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.550989],\n            [9.176713, 45.555485],\n            [9.18121, 45.555485],\n            [9.18121, 45.550989],\n            [9.176713, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.555485],\n            [9.176713, 45.559982],\n            [9.18121, 45.559982],\n            [9.18121, 45.555485],\n            [9.176713, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.559982],\n            [9.176713, 45.564479],\n            [9.18121, 45.564479],\n            [9.18121, 45.559982],\n            [9.176713, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.564479],\n            [9.176713, 45.568975],\n            [9.18121, 45.568975],\n            [9.18121, 45.564479],\n            [9.176713, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.568975],\n            [9.176713, 45.573472],\n            [9.18121, 45.573472],\n            [9.18121, 45.568975],\n            [9.176713, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.573472],\n            [9.176713, 45.577968],\n            [9.18121, 45.577968],\n            [9.18121, 45.573472],\n            [9.176713, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.577968],\n            [9.176713, 45.582465],\n            [9.18121, 45.582465],\n            [9.18121, 45.577968],\n            [9.176713, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.582465],\n            [9.176713, 45.586962],\n            [9.18121, 45.586962],\n            [9.18121, 45.582465],\n            [9.176713, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.586962],\n            [9.176713, 45.591458],\n            [9.18121, 45.591458],\n            [9.18121, 45.586962],\n            [9.176713, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.591458],\n            [9.176713, 45.595955],\n            [9.18121, 45.595955],\n            [9.18121, 45.591458],\n            [9.176713, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.595955],\n            [9.176713, 45.600451],\n            [9.18121, 45.600451],\n            [9.18121, 45.595955],\n            [9.176713, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.600451],\n            [9.176713, 45.604948],\n            [9.18121, 45.604948],\n            [9.18121, 45.600451],\n            [9.176713, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.604948],\n            [9.176713, 45.609445],\n            [9.18121, 45.609445],\n            [9.18121, 45.604948],\n            [9.176713, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.609445],\n            [9.176713, 45.613941],\n            [9.18121, 45.613941],\n            [9.18121, 45.609445],\n            [9.176713, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.613941],\n            [9.176713, 45.618438],\n            [9.18121, 45.618438],\n            [9.18121, 45.613941],\n            [9.176713, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.618438],\n            [9.176713, 45.622934],\n            [9.18121, 45.622934],\n            [9.18121, 45.618438],\n            [9.176713, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.622934],\n            [9.176713, 45.627431],\n            [9.18121, 45.627431],\n            [9.18121, 45.622934],\n            [9.176713, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.627431],\n            [9.176713, 45.631928],\n            [9.18121, 45.631928],\n            [9.18121, 45.627431],\n            [9.176713, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176713, 45.631928],\n            [9.176713, 45.636424],\n            [9.18121, 45.636424],\n            [9.18121, 45.631928],\n            [9.176713, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.339648],\n            [9.18121, 45.344145],\n            [9.185706, 45.344145],\n            [9.185706, 45.339648],\n            [9.18121, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.344145],\n            [9.18121, 45.348642],\n            [9.185706, 45.348642],\n            [9.185706, 45.344145],\n            [9.18121, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.348642],\n            [9.18121, 45.353138],\n            [9.185706, 45.353138],\n            [9.185706, 45.348642],\n            [9.18121, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.353138],\n            [9.18121, 45.357635],\n            [9.185706, 45.357635],\n            [9.185706, 45.353138],\n            [9.18121, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.357635],\n            [9.18121, 45.362131],\n            [9.185706, 45.362131],\n            [9.185706, 45.357635],\n            [9.18121, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.362131],\n            [9.18121, 45.366628],\n            [9.185706, 45.366628],\n            [9.185706, 45.362131],\n            [9.18121, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.366628],\n            [9.18121, 45.371125],\n            [9.185706, 45.371125],\n            [9.185706, 45.366628],\n            [9.18121, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.371125],\n            [9.18121, 45.375621],\n            [9.185706, 45.375621],\n            [9.185706, 45.371125],\n            [9.18121, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.375621],\n            [9.18121, 45.380118],\n            [9.185706, 45.380118],\n            [9.185706, 45.375621],\n            [9.18121, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.380118],\n            [9.18121, 45.384614],\n            [9.185706, 45.384614],\n            [9.185706, 45.380118],\n            [9.18121, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.384614],\n            [9.18121, 45.389111],\n            [9.185706, 45.389111],\n            [9.185706, 45.384614],\n            [9.18121, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.389111],\n            [9.18121, 45.393608],\n            [9.185706, 45.393608],\n            [9.185706, 45.389111],\n            [9.18121, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.393608],\n            [9.18121, 45.398104],\n            [9.185706, 45.398104],\n            [9.185706, 45.393608],\n            [9.18121, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.398104],\n            [9.18121, 45.402601],\n            [9.185706, 45.402601],\n            [9.185706, 45.398104],\n            [9.18121, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.402601],\n            [9.18121, 45.407097],\n            [9.185706, 45.407097],\n            [9.185706, 45.402601],\n            [9.18121, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.407097],\n            [9.18121, 45.411594],\n            [9.185706, 45.411594],\n            [9.185706, 45.407097],\n            [9.18121, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.411594],\n            [9.18121, 45.416091],\n            [9.185706, 45.416091],\n            [9.185706, 45.411594],\n            [9.18121, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.416091],\n            [9.18121, 45.420587],\n            [9.185706, 45.420587],\n            [9.185706, 45.416091],\n            [9.18121, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.420587],\n            [9.18121, 45.425084],\n            [9.185706, 45.425084],\n            [9.185706, 45.420587],\n            [9.18121, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.425084],\n            [9.18121, 45.42958],\n            [9.185706, 45.42958],\n            [9.185706, 45.425084],\n            [9.18121, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.42958],\n            [9.18121, 45.434077],\n            [9.185706, 45.434077],\n            [9.185706, 45.42958],\n            [9.18121, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.434077],\n            [9.18121, 45.438574],\n            [9.185706, 45.438574],\n            [9.185706, 45.434077],\n            [9.18121, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.438574],\n            [9.18121, 45.44307],\n            [9.185706, 45.44307],\n            [9.185706, 45.438574],\n            [9.18121, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.44307],\n            [9.18121, 45.447567],\n            [9.185706, 45.447567],\n            [9.185706, 45.44307],\n            [9.18121, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.447567],\n            [9.18121, 45.452063],\n            [9.185706, 45.452063],\n            [9.185706, 45.447567],\n            [9.18121, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.452063],\n            [9.18121, 45.45656],\n            [9.185706, 45.45656],\n            [9.185706, 45.452063],\n            [9.18121, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.45656],\n            [9.18121, 45.461057],\n            [9.185706, 45.461057],\n            [9.185706, 45.45656],\n            [9.18121, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.461057],\n            [9.18121, 45.465553],\n            [9.185706, 45.465553],\n            [9.185706, 45.461057],\n            [9.18121, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.465553],\n            [9.18121, 45.47005],\n            [9.185706, 45.47005],\n            [9.185706, 45.465553],\n            [9.18121, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.47005],\n            [9.18121, 45.474547],\n            [9.185706, 45.474547],\n            [9.185706, 45.47005],\n            [9.18121, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.474547],\n            [9.18121, 45.479043],\n            [9.185706, 45.479043],\n            [9.185706, 45.474547],\n            [9.18121, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.479043],\n            [9.18121, 45.48354],\n            [9.185706, 45.48354],\n            [9.185706, 45.479043],\n            [9.18121, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.48354],\n            [9.18121, 45.488036],\n            [9.185706, 45.488036],\n            [9.185706, 45.48354],\n            [9.18121, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.488036],\n            [9.18121, 45.492533],\n            [9.185706, 45.492533],\n            [9.185706, 45.488036],\n            [9.18121, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.492533],\n            [9.18121, 45.49703],\n            [9.185706, 45.49703],\n            [9.185706, 45.492533],\n            [9.18121, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.49703],\n            [9.18121, 45.501526],\n            [9.185706, 45.501526],\n            [9.185706, 45.49703],\n            [9.18121, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.501526],\n            [9.18121, 45.506023],\n            [9.185706, 45.506023],\n            [9.185706, 45.501526],\n            [9.18121, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.506023],\n            [9.18121, 45.510519],\n            [9.185706, 45.510519],\n            [9.185706, 45.506023],\n            [9.18121, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.510519],\n            [9.18121, 45.515016],\n            [9.185706, 45.515016],\n            [9.185706, 45.510519],\n            [9.18121, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.515016],\n            [9.18121, 45.519513],\n            [9.185706, 45.519513],\n            [9.185706, 45.515016],\n            [9.18121, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.519513],\n            [9.18121, 45.524009],\n            [9.185706, 45.524009],\n            [9.185706, 45.519513],\n            [9.18121, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.524009],\n            [9.18121, 45.528506],\n            [9.185706, 45.528506],\n            [9.185706, 45.524009],\n            [9.18121, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 41,\n        \"stroke\": \"#0068c7\",\n        \"fill\": \"#0068c7\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.528506],\n            [9.18121, 45.533002],\n            [9.185706, 45.533002],\n            [9.185706, 45.528506],\n            [9.18121, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 44,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.533002],\n            [9.18121, 45.537499],\n            [9.185706, 45.537499],\n            [9.185706, 45.533002],\n            [9.18121, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 44,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.537499],\n            [9.18121, 45.541996],\n            [9.185706, 45.541996],\n            [9.185706, 45.537499],\n            [9.18121, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 42,\n        \"stroke\": \"#0062bd\",\n        \"fill\": \"#0062bd\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.541996],\n            [9.18121, 45.546492],\n            [9.185706, 45.546492],\n            [9.185706, 45.541996],\n            [9.18121, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 40,\n        \"stroke\": \"#006dd1\",\n        \"fill\": \"#006dd1\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.546492],\n            [9.18121, 45.550989],\n            [9.185706, 45.550989],\n            [9.185706, 45.546492],\n            [9.18121, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 38,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.550989],\n            [9.18121, 45.555485],\n            [9.185706, 45.555485],\n            [9.185706, 45.550989],\n            [9.18121, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.555485],\n            [9.18121, 45.559982],\n            [9.185706, 45.559982],\n            [9.185706, 45.555485],\n            [9.18121, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.559982],\n            [9.18121, 45.564479],\n            [9.185706, 45.564479],\n            [9.185706, 45.559982],\n            [9.18121, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.564479],\n            [9.18121, 45.568975],\n            [9.185706, 45.568975],\n            [9.185706, 45.564479],\n            [9.18121, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.568975],\n            [9.18121, 45.573472],\n            [9.185706, 45.573472],\n            [9.185706, 45.568975],\n            [9.18121, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.573472],\n            [9.18121, 45.577968],\n            [9.185706, 45.577968],\n            [9.185706, 45.573472],\n            [9.18121, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.577968],\n            [9.18121, 45.582465],\n            [9.185706, 45.582465],\n            [9.185706, 45.577968],\n            [9.18121, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.582465],\n            [9.18121, 45.586962],\n            [9.185706, 45.586962],\n            [9.185706, 45.582465],\n            [9.18121, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.586962],\n            [9.18121, 45.591458],\n            [9.185706, 45.591458],\n            [9.185706, 45.586962],\n            [9.18121, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.591458],\n            [9.18121, 45.595955],\n            [9.185706, 45.595955],\n            [9.185706, 45.591458],\n            [9.18121, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.595955],\n            [9.18121, 45.600451],\n            [9.185706, 45.600451],\n            [9.185706, 45.595955],\n            [9.18121, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.600451],\n            [9.18121, 45.604948],\n            [9.185706, 45.604948],\n            [9.185706, 45.600451],\n            [9.18121, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.604948],\n            [9.18121, 45.609445],\n            [9.185706, 45.609445],\n            [9.185706, 45.604948],\n            [9.18121, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.609445],\n            [9.18121, 45.613941],\n            [9.185706, 45.613941],\n            [9.185706, 45.609445],\n            [9.18121, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.613941],\n            [9.18121, 45.618438],\n            [9.185706, 45.618438],\n            [9.185706, 45.613941],\n            [9.18121, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.618438],\n            [9.18121, 45.622934],\n            [9.185706, 45.622934],\n            [9.185706, 45.618438],\n            [9.18121, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.622934],\n            [9.18121, 45.627431],\n            [9.185706, 45.627431],\n            [9.185706, 45.622934],\n            [9.18121, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.627431],\n            [9.18121, 45.631928],\n            [9.185706, 45.631928],\n            [9.185706, 45.627431],\n            [9.18121, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.18121, 45.631928],\n            [9.18121, 45.636424],\n            [9.185706, 45.636424],\n            [9.185706, 45.631928],\n            [9.18121, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.339648],\n            [9.185706, 45.344145],\n            [9.190203, 45.344145],\n            [9.190203, 45.339648],\n            [9.185706, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.344145],\n            [9.185706, 45.348642],\n            [9.190203, 45.348642],\n            [9.190203, 45.344145],\n            [9.185706, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.348642],\n            [9.185706, 45.353138],\n            [9.190203, 45.353138],\n            [9.190203, 45.348642],\n            [9.185706, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.353138],\n            [9.185706, 45.357635],\n            [9.190203, 45.357635],\n            [9.190203, 45.353138],\n            [9.185706, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.357635],\n            [9.185706, 45.362131],\n            [9.190203, 45.362131],\n            [9.190203, 45.357635],\n            [9.185706, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.362131],\n            [9.185706, 45.366628],\n            [9.190203, 45.366628],\n            [9.190203, 45.362131],\n            [9.185706, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.366628],\n            [9.185706, 45.371125],\n            [9.190203, 45.371125],\n            [9.190203, 45.366628],\n            [9.185706, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.371125],\n            [9.185706, 45.375621],\n            [9.190203, 45.375621],\n            [9.190203, 45.371125],\n            [9.185706, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.375621],\n            [9.185706, 45.380118],\n            [9.190203, 45.380118],\n            [9.190203, 45.375621],\n            [9.185706, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.380118],\n            [9.185706, 45.384614],\n            [9.190203, 45.384614],\n            [9.190203, 45.380118],\n            [9.185706, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.384614],\n            [9.185706, 45.389111],\n            [9.190203, 45.389111],\n            [9.190203, 45.384614],\n            [9.185706, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.389111],\n            [9.185706, 45.393608],\n            [9.190203, 45.393608],\n            [9.190203, 45.389111],\n            [9.185706, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.393608],\n            [9.185706, 45.398104],\n            [9.190203, 45.398104],\n            [9.190203, 45.393608],\n            [9.185706, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.398104],\n            [9.185706, 45.402601],\n            [9.190203, 45.402601],\n            [9.190203, 45.398104],\n            [9.185706, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.402601],\n            [9.185706, 45.407097],\n            [9.190203, 45.407097],\n            [9.190203, 45.402601],\n            [9.185706, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.407097],\n            [9.185706, 45.411594],\n            [9.190203, 45.411594],\n            [9.190203, 45.407097],\n            [9.185706, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.411594],\n            [9.185706, 45.416091],\n            [9.190203, 45.416091],\n            [9.190203, 45.411594],\n            [9.185706, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.416091],\n            [9.185706, 45.420587],\n            [9.190203, 45.420587],\n            [9.190203, 45.416091],\n            [9.185706, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.420587],\n            [9.185706, 45.425084],\n            [9.190203, 45.425084],\n            [9.190203, 45.420587],\n            [9.185706, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.425084],\n            [9.185706, 45.42958],\n            [9.190203, 45.42958],\n            [9.190203, 45.425084],\n            [9.185706, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.42958],\n            [9.185706, 45.434077],\n            [9.190203, 45.434077],\n            [9.190203, 45.42958],\n            [9.185706, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.434077],\n            [9.185706, 45.438574],\n            [9.190203, 45.438574],\n            [9.190203, 45.434077],\n            [9.185706, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.438574],\n            [9.185706, 45.44307],\n            [9.190203, 45.44307],\n            [9.190203, 45.438574],\n            [9.185706, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.44307],\n            [9.185706, 45.447567],\n            [9.190203, 45.447567],\n            [9.190203, 45.44307],\n            [9.185706, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.447567],\n            [9.185706, 45.452063],\n            [9.190203, 45.452063],\n            [9.190203, 45.447567],\n            [9.185706, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.452063],\n            [9.185706, 45.45656],\n            [9.190203, 45.45656],\n            [9.190203, 45.452063],\n            [9.185706, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.45656],\n            [9.185706, 45.461057],\n            [9.190203, 45.461057],\n            [9.190203, 45.45656],\n            [9.185706, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.461057],\n            [9.185706, 45.465553],\n            [9.190203, 45.465553],\n            [9.190203, 45.461057],\n            [9.185706, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.465553],\n            [9.185706, 45.47005],\n            [9.190203, 45.47005],\n            [9.190203, 45.465553],\n            [9.185706, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.47005],\n            [9.185706, 45.474547],\n            [9.190203, 45.474547],\n            [9.190203, 45.47005],\n            [9.185706, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.474547],\n            [9.185706, 45.479043],\n            [9.190203, 45.479043],\n            [9.190203, 45.474547],\n            [9.185706, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.479043],\n            [9.185706, 45.48354],\n            [9.190203, 45.48354],\n            [9.190203, 45.479043],\n            [9.185706, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.48354],\n            [9.185706, 45.488036],\n            [9.190203, 45.488036],\n            [9.190203, 45.48354],\n            [9.185706, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.488036],\n            [9.185706, 45.492533],\n            [9.190203, 45.492533],\n            [9.190203, 45.488036],\n            [9.185706, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.492533],\n            [9.185706, 45.49703],\n            [9.190203, 45.49703],\n            [9.190203, 45.492533],\n            [9.185706, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.49703],\n            [9.185706, 45.501526],\n            [9.190203, 45.501526],\n            [9.190203, 45.49703],\n            [9.185706, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.501526],\n            [9.185706, 45.506023],\n            [9.190203, 45.506023],\n            [9.190203, 45.501526],\n            [9.185706, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.506023],\n            [9.185706, 45.510519],\n            [9.190203, 45.510519],\n            [9.190203, 45.506023],\n            [9.185706, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.510519],\n            [9.185706, 45.515016],\n            [9.190203, 45.515016],\n            [9.190203, 45.510519],\n            [9.185706, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.515016],\n            [9.185706, 45.519513],\n            [9.190203, 45.519513],\n            [9.190203, 45.515016],\n            [9.185706, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.519513],\n            [9.185706, 45.524009],\n            [9.190203, 45.524009],\n            [9.190203, 45.519513],\n            [9.185706, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 38,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.524009],\n            [9.185706, 45.528506],\n            [9.190203, 45.528506],\n            [9.190203, 45.524009],\n            [9.185706, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 43,\n        \"stroke\": \"#005db3\",\n        \"fill\": \"#005db3\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.528506],\n            [9.185706, 45.533002],\n            [9.190203, 45.533002],\n            [9.190203, 45.528506],\n            [9.185706, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 49,\n        \"stroke\": \"#003b70\",\n        \"fill\": \"#003b70\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.533002],\n            [9.185706, 45.537499],\n            [9.190203, 45.537499],\n            [9.190203, 45.533002],\n            [9.185706, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 49,\n        \"stroke\": \"#003b70\",\n        \"fill\": \"#003b70\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.537499],\n            [9.185706, 45.541996],\n            [9.190203, 45.541996],\n            [9.190203, 45.537499],\n            [9.185706, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 45,\n        \"stroke\": \"#00529e\",\n        \"fill\": \"#00529e\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.541996],\n            [9.185706, 45.546492],\n            [9.190203, 45.546492],\n            [9.190203, 45.541996],\n            [9.185706, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 41,\n        \"stroke\": \"#0068c7\",\n        \"fill\": \"#0068c7\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.546492],\n            [9.185706, 45.550989],\n            [9.190203, 45.550989],\n            [9.190203, 45.546492],\n            [9.185706, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 39,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.550989],\n            [9.185706, 45.555485],\n            [9.190203, 45.555485],\n            [9.190203, 45.550989],\n            [9.185706, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.555485],\n            [9.185706, 45.559982],\n            [9.190203, 45.559982],\n            [9.190203, 45.555485],\n            [9.185706, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.559982],\n            [9.185706, 45.564479],\n            [9.190203, 45.564479],\n            [9.190203, 45.559982],\n            [9.185706, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.564479],\n            [9.185706, 45.568975],\n            [9.190203, 45.568975],\n            [9.190203, 45.564479],\n            [9.185706, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.568975],\n            [9.185706, 45.573472],\n            [9.190203, 45.573472],\n            [9.190203, 45.568975],\n            [9.185706, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.573472],\n            [9.185706, 45.577968],\n            [9.190203, 45.577968],\n            [9.190203, 45.573472],\n            [9.185706, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.577968],\n            [9.185706, 45.582465],\n            [9.190203, 45.582465],\n            [9.190203, 45.577968],\n            [9.185706, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.582465],\n            [9.185706, 45.586962],\n            [9.190203, 45.586962],\n            [9.190203, 45.582465],\n            [9.185706, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.586962],\n            [9.185706, 45.591458],\n            [9.190203, 45.591458],\n            [9.190203, 45.586962],\n            [9.185706, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.591458],\n            [9.185706, 45.595955],\n            [9.190203, 45.595955],\n            [9.190203, 45.591458],\n            [9.185706, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.595955],\n            [9.185706, 45.600451],\n            [9.190203, 45.600451],\n            [9.190203, 45.595955],\n            [9.185706, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.600451],\n            [9.185706, 45.604948],\n            [9.190203, 45.604948],\n            [9.190203, 45.600451],\n            [9.185706, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.604948],\n            [9.185706, 45.609445],\n            [9.190203, 45.609445],\n            [9.190203, 45.604948],\n            [9.185706, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.609445],\n            [9.185706, 45.613941],\n            [9.190203, 45.613941],\n            [9.190203, 45.609445],\n            [9.185706, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.613941],\n            [9.185706, 45.618438],\n            [9.190203, 45.618438],\n            [9.190203, 45.613941],\n            [9.185706, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.618438],\n            [9.185706, 45.622934],\n            [9.190203, 45.622934],\n            [9.190203, 45.618438],\n            [9.185706, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.622934],\n            [9.185706, 45.627431],\n            [9.190203, 45.627431],\n            [9.190203, 45.622934],\n            [9.185706, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.627431],\n            [9.185706, 45.631928],\n            [9.190203, 45.631928],\n            [9.190203, 45.627431],\n            [9.185706, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185706, 45.631928],\n            [9.185706, 45.636424],\n            [9.190203, 45.636424],\n            [9.190203, 45.631928],\n            [9.185706, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.339648],\n            [9.190203, 45.344145],\n            [9.194699, 45.344145],\n            [9.194699, 45.339648],\n            [9.190203, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.344145],\n            [9.190203, 45.348642],\n            [9.194699, 45.348642],\n            [9.194699, 45.344145],\n            [9.190203, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.348642],\n            [9.190203, 45.353138],\n            [9.194699, 45.353138],\n            [9.194699, 45.348642],\n            [9.190203, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.353138],\n            [9.190203, 45.357635],\n            [9.194699, 45.357635],\n            [9.194699, 45.353138],\n            [9.190203, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.357635],\n            [9.190203, 45.362131],\n            [9.194699, 45.362131],\n            [9.194699, 45.357635],\n            [9.190203, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.362131],\n            [9.190203, 45.366628],\n            [9.194699, 45.366628],\n            [9.194699, 45.362131],\n            [9.190203, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.366628],\n            [9.190203, 45.371125],\n            [9.194699, 45.371125],\n            [9.194699, 45.366628],\n            [9.190203, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.371125],\n            [9.190203, 45.375621],\n            [9.194699, 45.375621],\n            [9.194699, 45.371125],\n            [9.190203, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.375621],\n            [9.190203, 45.380118],\n            [9.194699, 45.380118],\n            [9.194699, 45.375621],\n            [9.190203, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.380118],\n            [9.190203, 45.384614],\n            [9.194699, 45.384614],\n            [9.194699, 45.380118],\n            [9.190203, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.384614],\n            [9.190203, 45.389111],\n            [9.194699, 45.389111],\n            [9.194699, 45.384614],\n            [9.190203, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.389111],\n            [9.190203, 45.393608],\n            [9.194699, 45.393608],\n            [9.194699, 45.389111],\n            [9.190203, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.393608],\n            [9.190203, 45.398104],\n            [9.194699, 45.398104],\n            [9.194699, 45.393608],\n            [9.190203, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.398104],\n            [9.190203, 45.402601],\n            [9.194699, 45.402601],\n            [9.194699, 45.398104],\n            [9.190203, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.402601],\n            [9.190203, 45.407097],\n            [9.194699, 45.407097],\n            [9.194699, 45.402601],\n            [9.190203, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.407097],\n            [9.190203, 45.411594],\n            [9.194699, 45.411594],\n            [9.194699, 45.407097],\n            [9.190203, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.411594],\n            [9.190203, 45.416091],\n            [9.194699, 45.416091],\n            [9.194699, 45.411594],\n            [9.190203, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.416091],\n            [9.190203, 45.420587],\n            [9.194699, 45.420587],\n            [9.194699, 45.416091],\n            [9.190203, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.420587],\n            [9.190203, 45.425084],\n            [9.194699, 45.425084],\n            [9.194699, 45.420587],\n            [9.190203, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.425084],\n            [9.190203, 45.42958],\n            [9.194699, 45.42958],\n            [9.194699, 45.425084],\n            [9.190203, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.42958],\n            [9.190203, 45.434077],\n            [9.194699, 45.434077],\n            [9.194699, 45.42958],\n            [9.190203, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.434077],\n            [9.190203, 45.438574],\n            [9.194699, 45.438574],\n            [9.194699, 45.434077],\n            [9.190203, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.438574],\n            [9.190203, 45.44307],\n            [9.194699, 45.44307],\n            [9.194699, 45.438574],\n            [9.190203, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.44307],\n            [9.190203, 45.447567],\n            [9.194699, 45.447567],\n            [9.194699, 45.44307],\n            [9.190203, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.447567],\n            [9.190203, 45.452063],\n            [9.194699, 45.452063],\n            [9.194699, 45.447567],\n            [9.190203, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.452063],\n            [9.190203, 45.45656],\n            [9.194699, 45.45656],\n            [9.194699, 45.452063],\n            [9.190203, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.45656],\n            [9.190203, 45.461057],\n            [9.194699, 45.461057],\n            [9.194699, 45.45656],\n            [9.190203, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.461057],\n            [9.190203, 45.465553],\n            [9.194699, 45.465553],\n            [9.194699, 45.461057],\n            [9.190203, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.465553],\n            [9.190203, 45.47005],\n            [9.194699, 45.47005],\n            [9.194699, 45.465553],\n            [9.190203, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.47005],\n            [9.190203, 45.474547],\n            [9.194699, 45.474547],\n            [9.194699, 45.47005],\n            [9.190203, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.474547],\n            [9.190203, 45.479043],\n            [9.194699, 45.479043],\n            [9.194699, 45.474547],\n            [9.190203, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.479043],\n            [9.190203, 45.48354],\n            [9.194699, 45.48354],\n            [9.194699, 45.479043],\n            [9.190203, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.48354],\n            [9.190203, 45.488036],\n            [9.194699, 45.488036],\n            [9.194699, 45.48354],\n            [9.190203, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.488036],\n            [9.190203, 45.492533],\n            [9.194699, 45.492533],\n            [9.194699, 45.488036],\n            [9.190203, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.492533],\n            [9.190203, 45.49703],\n            [9.194699, 45.49703],\n            [9.194699, 45.492533],\n            [9.190203, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.49703],\n            [9.190203, 45.501526],\n            [9.194699, 45.501526],\n            [9.194699, 45.49703],\n            [9.190203, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.501526],\n            [9.190203, 45.506023],\n            [9.194699, 45.506023],\n            [9.194699, 45.501526],\n            [9.190203, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.506023],\n            [9.190203, 45.510519],\n            [9.194699, 45.510519],\n            [9.194699, 45.506023],\n            [9.190203, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.510519],\n            [9.190203, 45.515016],\n            [9.194699, 45.515016],\n            [9.194699, 45.510519],\n            [9.190203, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.515016],\n            [9.190203, 45.519513],\n            [9.194699, 45.519513],\n            [9.194699, 45.515016],\n            [9.190203, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.519513],\n            [9.190203, 45.524009],\n            [9.194699, 45.524009],\n            [9.194699, 45.519513],\n            [9.190203, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 39,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.524009],\n            [9.190203, 45.528506],\n            [9.194699, 45.528506],\n            [9.194699, 45.524009],\n            [9.190203, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 46,\n        \"stroke\": \"#004d94\",\n        \"fill\": \"#004d94\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.528506],\n            [9.190203, 45.533002],\n            [9.194699, 45.533002],\n            [9.194699, 45.528506],\n            [9.190203, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 57,\n        \"stroke\": \"#00101f\",\n        \"fill\": \"#00101f\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.533002],\n            [9.190203, 45.537499],\n            [9.194699, 45.537499],\n            [9.194699, 45.533002],\n            [9.190203, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 55,\n        \"stroke\": \"#001b33\",\n        \"fill\": \"#001b33\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.537499],\n            [9.190203, 45.541996],\n            [9.194699, 45.541996],\n            [9.194699, 45.537499],\n            [9.190203, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 46,\n        \"stroke\": \"#004d94\",\n        \"fill\": \"#004d94\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.541996],\n            [9.190203, 45.546492],\n            [9.194699, 45.546492],\n            [9.194699, 45.541996],\n            [9.190203, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 42,\n        \"stroke\": \"#0062bd\",\n        \"fill\": \"#0062bd\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.546492],\n            [9.190203, 45.550989],\n            [9.194699, 45.550989],\n            [9.194699, 45.546492],\n            [9.190203, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 39,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.550989],\n            [9.190203, 45.555485],\n            [9.194699, 45.555485],\n            [9.194699, 45.550989],\n            [9.190203, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.555485],\n            [9.190203, 45.559982],\n            [9.194699, 45.559982],\n            [9.194699, 45.555485],\n            [9.190203, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.559982],\n            [9.190203, 45.564479],\n            [9.194699, 45.564479],\n            [9.194699, 45.559982],\n            [9.190203, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.564479],\n            [9.190203, 45.568975],\n            [9.194699, 45.568975],\n            [9.194699, 45.564479],\n            [9.190203, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.568975],\n            [9.190203, 45.573472],\n            [9.194699, 45.573472],\n            [9.194699, 45.568975],\n            [9.190203, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.573472],\n            [9.190203, 45.577968],\n            [9.194699, 45.577968],\n            [9.194699, 45.573472],\n            [9.190203, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.577968],\n            [9.190203, 45.582465],\n            [9.194699, 45.582465],\n            [9.194699, 45.577968],\n            [9.190203, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.582465],\n            [9.190203, 45.586962],\n            [9.194699, 45.586962],\n            [9.194699, 45.582465],\n            [9.190203, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.586962],\n            [9.190203, 45.591458],\n            [9.194699, 45.591458],\n            [9.194699, 45.586962],\n            [9.190203, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.591458],\n            [9.190203, 45.595955],\n            [9.194699, 45.595955],\n            [9.194699, 45.591458],\n            [9.190203, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.595955],\n            [9.190203, 45.600451],\n            [9.194699, 45.600451],\n            [9.194699, 45.595955],\n            [9.190203, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.600451],\n            [9.190203, 45.604948],\n            [9.194699, 45.604948],\n            [9.194699, 45.600451],\n            [9.190203, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.604948],\n            [9.190203, 45.609445],\n            [9.194699, 45.609445],\n            [9.194699, 45.604948],\n            [9.190203, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.609445],\n            [9.190203, 45.613941],\n            [9.194699, 45.613941],\n            [9.194699, 45.609445],\n            [9.190203, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.613941],\n            [9.190203, 45.618438],\n            [9.194699, 45.618438],\n            [9.194699, 45.613941],\n            [9.190203, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.618438],\n            [9.190203, 45.622934],\n            [9.194699, 45.622934],\n            [9.194699, 45.618438],\n            [9.190203, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.622934],\n            [9.190203, 45.627431],\n            [9.194699, 45.627431],\n            [9.194699, 45.622934],\n            [9.190203, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.627431],\n            [9.190203, 45.631928],\n            [9.194699, 45.631928],\n            [9.194699, 45.627431],\n            [9.190203, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.190203, 45.631928],\n            [9.190203, 45.636424],\n            [9.194699, 45.636424],\n            [9.194699, 45.631928],\n            [9.190203, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.339648],\n            [9.194699, 45.344145],\n            [9.199196, 45.344145],\n            [9.199196, 45.339648],\n            [9.194699, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.344145],\n            [9.194699, 45.348642],\n            [9.199196, 45.348642],\n            [9.199196, 45.344145],\n            [9.194699, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.348642],\n            [9.194699, 45.353138],\n            [9.199196, 45.353138],\n            [9.199196, 45.348642],\n            [9.194699, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.353138],\n            [9.194699, 45.357635],\n            [9.199196, 45.357635],\n            [9.199196, 45.353138],\n            [9.194699, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.357635],\n            [9.194699, 45.362131],\n            [9.199196, 45.362131],\n            [9.199196, 45.357635],\n            [9.194699, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.362131],\n            [9.194699, 45.366628],\n            [9.199196, 45.366628],\n            [9.199196, 45.362131],\n            [9.194699, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.366628],\n            [9.194699, 45.371125],\n            [9.199196, 45.371125],\n            [9.199196, 45.366628],\n            [9.194699, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.371125],\n            [9.194699, 45.375621],\n            [9.199196, 45.375621],\n            [9.199196, 45.371125],\n            [9.194699, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.375621],\n            [9.194699, 45.380118],\n            [9.199196, 45.380118],\n            [9.199196, 45.375621],\n            [9.194699, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.380118],\n            [9.194699, 45.384614],\n            [9.199196, 45.384614],\n            [9.199196, 45.380118],\n            [9.194699, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.384614],\n            [9.194699, 45.389111],\n            [9.199196, 45.389111],\n            [9.199196, 45.384614],\n            [9.194699, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.389111],\n            [9.194699, 45.393608],\n            [9.199196, 45.393608],\n            [9.199196, 45.389111],\n            [9.194699, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.393608],\n            [9.194699, 45.398104],\n            [9.199196, 45.398104],\n            [9.199196, 45.393608],\n            [9.194699, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.398104],\n            [9.194699, 45.402601],\n            [9.199196, 45.402601],\n            [9.199196, 45.398104],\n            [9.194699, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.402601],\n            [9.194699, 45.407097],\n            [9.199196, 45.407097],\n            [9.199196, 45.402601],\n            [9.194699, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.407097],\n            [9.194699, 45.411594],\n            [9.199196, 45.411594],\n            [9.199196, 45.407097],\n            [9.194699, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.411594],\n            [9.194699, 45.416091],\n            [9.199196, 45.416091],\n            [9.199196, 45.411594],\n            [9.194699, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.416091],\n            [9.194699, 45.420587],\n            [9.199196, 45.420587],\n            [9.199196, 45.416091],\n            [9.194699, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.420587],\n            [9.194699, 45.425084],\n            [9.199196, 45.425084],\n            [9.199196, 45.420587],\n            [9.194699, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.425084],\n            [9.194699, 45.42958],\n            [9.199196, 45.42958],\n            [9.199196, 45.425084],\n            [9.194699, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.42958],\n            [9.194699, 45.434077],\n            [9.199196, 45.434077],\n            [9.199196, 45.42958],\n            [9.194699, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.434077],\n            [9.194699, 45.438574],\n            [9.199196, 45.438574],\n            [9.199196, 45.434077],\n            [9.194699, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.438574],\n            [9.194699, 45.44307],\n            [9.199196, 45.44307],\n            [9.199196, 45.438574],\n            [9.194699, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.44307],\n            [9.194699, 45.447567],\n            [9.199196, 45.447567],\n            [9.199196, 45.44307],\n            [9.194699, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.447567],\n            [9.194699, 45.452063],\n            [9.199196, 45.452063],\n            [9.199196, 45.447567],\n            [9.194699, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.452063],\n            [9.194699, 45.45656],\n            [9.199196, 45.45656],\n            [9.199196, 45.452063],\n            [9.194699, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.45656],\n            [9.194699, 45.461057],\n            [9.199196, 45.461057],\n            [9.199196, 45.45656],\n            [9.194699, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.461057],\n            [9.194699, 45.465553],\n            [9.199196, 45.465553],\n            [9.199196, 45.461057],\n            [9.194699, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.465553],\n            [9.194699, 45.47005],\n            [9.199196, 45.47005],\n            [9.199196, 45.465553],\n            [9.194699, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.47005],\n            [9.194699, 45.474547],\n            [9.199196, 45.474547],\n            [9.199196, 45.47005],\n            [9.194699, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.474547],\n            [9.194699, 45.479043],\n            [9.199196, 45.479043],\n            [9.199196, 45.474547],\n            [9.194699, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.479043],\n            [9.194699, 45.48354],\n            [9.199196, 45.48354],\n            [9.199196, 45.479043],\n            [9.194699, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.48354],\n            [9.194699, 45.488036],\n            [9.199196, 45.488036],\n            [9.199196, 45.48354],\n            [9.194699, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.488036],\n            [9.194699, 45.492533],\n            [9.199196, 45.492533],\n            [9.199196, 45.488036],\n            [9.194699, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.492533],\n            [9.194699, 45.49703],\n            [9.199196, 45.49703],\n            [9.199196, 45.492533],\n            [9.194699, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.49703],\n            [9.194699, 45.501526],\n            [9.199196, 45.501526],\n            [9.199196, 45.49703],\n            [9.194699, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.501526],\n            [9.194699, 45.506023],\n            [9.199196, 45.506023],\n            [9.199196, 45.501526],\n            [9.194699, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.506023],\n            [9.194699, 45.510519],\n            [9.199196, 45.510519],\n            [9.199196, 45.506023],\n            [9.194699, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.510519],\n            [9.194699, 45.515016],\n            [9.199196, 45.515016],\n            [9.199196, 45.510519],\n            [9.194699, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.515016],\n            [9.194699, 45.519513],\n            [9.199196, 45.519513],\n            [9.199196, 45.515016],\n            [9.194699, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.519513],\n            [9.194699, 45.524009],\n            [9.199196, 45.524009],\n            [9.199196, 45.519513],\n            [9.194699, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 40,\n        \"stroke\": \"#006dd1\",\n        \"fill\": \"#006dd1\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.524009],\n            [9.194699, 45.528506],\n            [9.199196, 45.528506],\n            [9.199196, 45.524009],\n            [9.194699, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 46,\n        \"stroke\": \"#004d94\",\n        \"fill\": \"#004d94\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.528506],\n            [9.194699, 45.533002],\n            [9.199196, 45.533002],\n            [9.199196, 45.528506],\n            [9.194699, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 60,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.533002],\n            [9.194699, 45.537499],\n            [9.199196, 45.537499],\n            [9.199196, 45.533002],\n            [9.194699, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 56,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.537499],\n            [9.194699, 45.541996],\n            [9.199196, 45.541996],\n            [9.199196, 45.537499],\n            [9.194699, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 47,\n        \"stroke\": \"#00488a\",\n        \"fill\": \"#00488a\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.541996],\n            [9.194699, 45.546492],\n            [9.199196, 45.546492],\n            [9.199196, 45.541996],\n            [9.194699, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 42,\n        \"stroke\": \"#0062bd\",\n        \"fill\": \"#0062bd\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.546492],\n            [9.194699, 45.550989],\n            [9.199196, 45.550989],\n            [9.199196, 45.546492],\n            [9.194699, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 39,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.550989],\n            [9.194699, 45.555485],\n            [9.199196, 45.555485],\n            [9.199196, 45.550989],\n            [9.194699, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.555485],\n            [9.194699, 45.559982],\n            [9.199196, 45.559982],\n            [9.199196, 45.555485],\n            [9.194699, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.559982],\n            [9.194699, 45.564479],\n            [9.199196, 45.564479],\n            [9.199196, 45.559982],\n            [9.194699, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.564479],\n            [9.194699, 45.568975],\n            [9.199196, 45.568975],\n            [9.199196, 45.564479],\n            [9.194699, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.568975],\n            [9.194699, 45.573472],\n            [9.199196, 45.573472],\n            [9.199196, 45.568975],\n            [9.194699, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.573472],\n            [9.194699, 45.577968],\n            [9.199196, 45.577968],\n            [9.199196, 45.573472],\n            [9.194699, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.577968],\n            [9.194699, 45.582465],\n            [9.199196, 45.582465],\n            [9.199196, 45.577968],\n            [9.194699, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.582465],\n            [9.194699, 45.586962],\n            [9.199196, 45.586962],\n            [9.199196, 45.582465],\n            [9.194699, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.586962],\n            [9.194699, 45.591458],\n            [9.199196, 45.591458],\n            [9.199196, 45.586962],\n            [9.194699, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.591458],\n            [9.194699, 45.595955],\n            [9.199196, 45.595955],\n            [9.199196, 45.591458],\n            [9.194699, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.595955],\n            [9.194699, 45.600451],\n            [9.199196, 45.600451],\n            [9.199196, 45.595955],\n            [9.194699, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.600451],\n            [9.194699, 45.604948],\n            [9.199196, 45.604948],\n            [9.199196, 45.600451],\n            [9.194699, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.604948],\n            [9.194699, 45.609445],\n            [9.199196, 45.609445],\n            [9.199196, 45.604948],\n            [9.194699, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.609445],\n            [9.194699, 45.613941],\n            [9.199196, 45.613941],\n            [9.199196, 45.609445],\n            [9.194699, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.613941],\n            [9.194699, 45.618438],\n            [9.199196, 45.618438],\n            [9.199196, 45.613941],\n            [9.194699, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.618438],\n            [9.194699, 45.622934],\n            [9.199196, 45.622934],\n            [9.199196, 45.618438],\n            [9.194699, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.622934],\n            [9.194699, 45.627431],\n            [9.199196, 45.627431],\n            [9.199196, 45.622934],\n            [9.194699, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.627431],\n            [9.194699, 45.631928],\n            [9.199196, 45.631928],\n            [9.199196, 45.627431],\n            [9.194699, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194699, 45.631928],\n            [9.194699, 45.636424],\n            [9.199196, 45.636424],\n            [9.199196, 45.631928],\n            [9.194699, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.339648],\n            [9.199196, 45.344145],\n            [9.203693, 45.344145],\n            [9.203693, 45.339648],\n            [9.199196, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.344145],\n            [9.199196, 45.348642],\n            [9.203693, 45.348642],\n            [9.203693, 45.344145],\n            [9.199196, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.348642],\n            [9.199196, 45.353138],\n            [9.203693, 45.353138],\n            [9.203693, 45.348642],\n            [9.199196, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.353138],\n            [9.199196, 45.357635],\n            [9.203693, 45.357635],\n            [9.203693, 45.353138],\n            [9.199196, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.357635],\n            [9.199196, 45.362131],\n            [9.203693, 45.362131],\n            [9.203693, 45.357635],\n            [9.199196, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.362131],\n            [9.199196, 45.366628],\n            [9.203693, 45.366628],\n            [9.203693, 45.362131],\n            [9.199196, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.366628],\n            [9.199196, 45.371125],\n            [9.203693, 45.371125],\n            [9.203693, 45.366628],\n            [9.199196, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.371125],\n            [9.199196, 45.375621],\n            [9.203693, 45.375621],\n            [9.203693, 45.371125],\n            [9.199196, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.375621],\n            [9.199196, 45.380118],\n            [9.203693, 45.380118],\n            [9.203693, 45.375621],\n            [9.199196, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.380118],\n            [9.199196, 45.384614],\n            [9.203693, 45.384614],\n            [9.203693, 45.380118],\n            [9.199196, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.384614],\n            [9.199196, 45.389111],\n            [9.203693, 45.389111],\n            [9.203693, 45.384614],\n            [9.199196, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.389111],\n            [9.199196, 45.393608],\n            [9.203693, 45.393608],\n            [9.203693, 45.389111],\n            [9.199196, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.393608],\n            [9.199196, 45.398104],\n            [9.203693, 45.398104],\n            [9.203693, 45.393608],\n            [9.199196, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.398104],\n            [9.199196, 45.402601],\n            [9.203693, 45.402601],\n            [9.203693, 45.398104],\n            [9.199196, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.402601],\n            [9.199196, 45.407097],\n            [9.203693, 45.407097],\n            [9.203693, 45.402601],\n            [9.199196, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.407097],\n            [9.199196, 45.411594],\n            [9.203693, 45.411594],\n            [9.203693, 45.407097],\n            [9.199196, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.411594],\n            [9.199196, 45.416091],\n            [9.203693, 45.416091],\n            [9.203693, 45.411594],\n            [9.199196, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.416091],\n            [9.199196, 45.420587],\n            [9.203693, 45.420587],\n            [9.203693, 45.416091],\n            [9.199196, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.420587],\n            [9.199196, 45.425084],\n            [9.203693, 45.425084],\n            [9.203693, 45.420587],\n            [9.199196, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.425084],\n            [9.199196, 45.42958],\n            [9.203693, 45.42958],\n            [9.203693, 45.425084],\n            [9.199196, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.42958],\n            [9.199196, 45.434077],\n            [9.203693, 45.434077],\n            [9.203693, 45.42958],\n            [9.199196, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.434077],\n            [9.199196, 45.438574],\n            [9.203693, 45.438574],\n            [9.203693, 45.434077],\n            [9.199196, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.438574],\n            [9.199196, 45.44307],\n            [9.203693, 45.44307],\n            [9.203693, 45.438574],\n            [9.199196, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.44307],\n            [9.199196, 45.447567],\n            [9.203693, 45.447567],\n            [9.203693, 45.44307],\n            [9.199196, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.447567],\n            [9.199196, 45.452063],\n            [9.203693, 45.452063],\n            [9.203693, 45.447567],\n            [9.199196, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.452063],\n            [9.199196, 45.45656],\n            [9.203693, 45.45656],\n            [9.203693, 45.452063],\n            [9.199196, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.45656],\n            [9.199196, 45.461057],\n            [9.203693, 45.461057],\n            [9.203693, 45.45656],\n            [9.199196, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.461057],\n            [9.199196, 45.465553],\n            [9.203693, 45.465553],\n            [9.203693, 45.461057],\n            [9.199196, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.465553],\n            [9.199196, 45.47005],\n            [9.203693, 45.47005],\n            [9.203693, 45.465553],\n            [9.199196, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.47005],\n            [9.199196, 45.474547],\n            [9.203693, 45.474547],\n            [9.203693, 45.47005],\n            [9.199196, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.474547],\n            [9.199196, 45.479043],\n            [9.203693, 45.479043],\n            [9.203693, 45.474547],\n            [9.199196, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.479043],\n            [9.199196, 45.48354],\n            [9.203693, 45.48354],\n            [9.203693, 45.479043],\n            [9.199196, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.48354],\n            [9.199196, 45.488036],\n            [9.203693, 45.488036],\n            [9.203693, 45.48354],\n            [9.199196, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.488036],\n            [9.199196, 45.492533],\n            [9.203693, 45.492533],\n            [9.203693, 45.488036],\n            [9.199196, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.492533],\n            [9.199196, 45.49703],\n            [9.203693, 45.49703],\n            [9.203693, 45.492533],\n            [9.199196, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.49703],\n            [9.199196, 45.501526],\n            [9.203693, 45.501526],\n            [9.203693, 45.49703],\n            [9.199196, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.501526],\n            [9.199196, 45.506023],\n            [9.203693, 45.506023],\n            [9.203693, 45.501526],\n            [9.199196, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.506023],\n            [9.199196, 45.510519],\n            [9.203693, 45.510519],\n            [9.203693, 45.506023],\n            [9.199196, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.510519],\n            [9.199196, 45.515016],\n            [9.203693, 45.515016],\n            [9.203693, 45.510519],\n            [9.199196, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.515016],\n            [9.199196, 45.519513],\n            [9.203693, 45.519513],\n            [9.203693, 45.515016],\n            [9.199196, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.519513],\n            [9.199196, 45.524009],\n            [9.203693, 45.524009],\n            [9.203693, 45.519513],\n            [9.199196, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 39,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.524009],\n            [9.199196, 45.528506],\n            [9.203693, 45.528506],\n            [9.203693, 45.524009],\n            [9.199196, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 44,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.528506],\n            [9.199196, 45.533002],\n            [9.203693, 45.533002],\n            [9.203693, 45.528506],\n            [9.199196, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 51,\n        \"stroke\": \"#00305c\",\n        \"fill\": \"#00305c\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.533002],\n            [9.199196, 45.537499],\n            [9.203693, 45.537499],\n            [9.203693, 45.533002],\n            [9.199196, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 50,\n        \"stroke\": \"#003566\",\n        \"fill\": \"#003566\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.537499],\n            [9.199196, 45.541996],\n            [9.203693, 45.541996],\n            [9.203693, 45.537499],\n            [9.199196, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 45,\n        \"stroke\": \"#00529e\",\n        \"fill\": \"#00529e\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.541996],\n            [9.199196, 45.546492],\n            [9.203693, 45.546492],\n            [9.203693, 45.541996],\n            [9.199196, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 42,\n        \"stroke\": \"#0062bd\",\n        \"fill\": \"#0062bd\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.546492],\n            [9.199196, 45.550989],\n            [9.203693, 45.550989],\n            [9.203693, 45.546492],\n            [9.199196, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 39,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.550989],\n            [9.199196, 45.555485],\n            [9.203693, 45.555485],\n            [9.203693, 45.550989],\n            [9.199196, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.555485],\n            [9.199196, 45.559982],\n            [9.203693, 45.559982],\n            [9.203693, 45.555485],\n            [9.199196, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.559982],\n            [9.199196, 45.564479],\n            [9.203693, 45.564479],\n            [9.203693, 45.559982],\n            [9.199196, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.564479],\n            [9.199196, 45.568975],\n            [9.203693, 45.568975],\n            [9.203693, 45.564479],\n            [9.199196, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.568975],\n            [9.199196, 45.573472],\n            [9.203693, 45.573472],\n            [9.203693, 45.568975],\n            [9.199196, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.573472],\n            [9.199196, 45.577968],\n            [9.203693, 45.577968],\n            [9.203693, 45.573472],\n            [9.199196, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.577968],\n            [9.199196, 45.582465],\n            [9.203693, 45.582465],\n            [9.203693, 45.577968],\n            [9.199196, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.582465],\n            [9.199196, 45.586962],\n            [9.203693, 45.586962],\n            [9.203693, 45.582465],\n            [9.199196, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.586962],\n            [9.199196, 45.591458],\n            [9.203693, 45.591458],\n            [9.203693, 45.586962],\n            [9.199196, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.591458],\n            [9.199196, 45.595955],\n            [9.203693, 45.595955],\n            [9.203693, 45.591458],\n            [9.199196, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.595955],\n            [9.199196, 45.600451],\n            [9.203693, 45.600451],\n            [9.203693, 45.595955],\n            [9.199196, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.600451],\n            [9.199196, 45.604948],\n            [9.203693, 45.604948],\n            [9.203693, 45.600451],\n            [9.199196, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.604948],\n            [9.199196, 45.609445],\n            [9.203693, 45.609445],\n            [9.203693, 45.604948],\n            [9.199196, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.609445],\n            [9.199196, 45.613941],\n            [9.203693, 45.613941],\n            [9.203693, 45.609445],\n            [9.199196, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.613941],\n            [9.199196, 45.618438],\n            [9.203693, 45.618438],\n            [9.203693, 45.613941],\n            [9.199196, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.618438],\n            [9.199196, 45.622934],\n            [9.203693, 45.622934],\n            [9.203693, 45.618438],\n            [9.199196, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.622934],\n            [9.199196, 45.627431],\n            [9.203693, 45.627431],\n            [9.203693, 45.622934],\n            [9.199196, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.627431],\n            [9.199196, 45.631928],\n            [9.203693, 45.631928],\n            [9.203693, 45.627431],\n            [9.199196, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.199196, 45.631928],\n            [9.199196, 45.636424],\n            [9.203693, 45.636424],\n            [9.203693, 45.631928],\n            [9.199196, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.339648],\n            [9.203693, 45.344145],\n            [9.208189, 45.344145],\n            [9.208189, 45.339648],\n            [9.203693, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.344145],\n            [9.203693, 45.348642],\n            [9.208189, 45.348642],\n            [9.208189, 45.344145],\n            [9.203693, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.348642],\n            [9.203693, 45.353138],\n            [9.208189, 45.353138],\n            [9.208189, 45.348642],\n            [9.203693, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.353138],\n            [9.203693, 45.357635],\n            [9.208189, 45.357635],\n            [9.208189, 45.353138],\n            [9.203693, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.357635],\n            [9.203693, 45.362131],\n            [9.208189, 45.362131],\n            [9.208189, 45.357635],\n            [9.203693, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.362131],\n            [9.203693, 45.366628],\n            [9.208189, 45.366628],\n            [9.208189, 45.362131],\n            [9.203693, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.366628],\n            [9.203693, 45.371125],\n            [9.208189, 45.371125],\n            [9.208189, 45.366628],\n            [9.203693, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.371125],\n            [9.203693, 45.375621],\n            [9.208189, 45.375621],\n            [9.208189, 45.371125],\n            [9.203693, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.375621],\n            [9.203693, 45.380118],\n            [9.208189, 45.380118],\n            [9.208189, 45.375621],\n            [9.203693, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.380118],\n            [9.203693, 45.384614],\n            [9.208189, 45.384614],\n            [9.208189, 45.380118],\n            [9.203693, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.384614],\n            [9.203693, 45.389111],\n            [9.208189, 45.389111],\n            [9.208189, 45.384614],\n            [9.203693, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.389111],\n            [9.203693, 45.393608],\n            [9.208189, 45.393608],\n            [9.208189, 45.389111],\n            [9.203693, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.393608],\n            [9.203693, 45.398104],\n            [9.208189, 45.398104],\n            [9.208189, 45.393608],\n            [9.203693, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.398104],\n            [9.203693, 45.402601],\n            [9.208189, 45.402601],\n            [9.208189, 45.398104],\n            [9.203693, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.402601],\n            [9.203693, 45.407097],\n            [9.208189, 45.407097],\n            [9.208189, 45.402601],\n            [9.203693, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.407097],\n            [9.203693, 45.411594],\n            [9.208189, 45.411594],\n            [9.208189, 45.407097],\n            [9.203693, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.411594],\n            [9.203693, 45.416091],\n            [9.208189, 45.416091],\n            [9.208189, 45.411594],\n            [9.203693, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.416091],\n            [9.203693, 45.420587],\n            [9.208189, 45.420587],\n            [9.208189, 45.416091],\n            [9.203693, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.420587],\n            [9.203693, 45.425084],\n            [9.208189, 45.425084],\n            [9.208189, 45.420587],\n            [9.203693, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.425084],\n            [9.203693, 45.42958],\n            [9.208189, 45.42958],\n            [9.208189, 45.425084],\n            [9.203693, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.42958],\n            [9.203693, 45.434077],\n            [9.208189, 45.434077],\n            [9.208189, 45.42958],\n            [9.203693, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.434077],\n            [9.203693, 45.438574],\n            [9.208189, 45.438574],\n            [9.208189, 45.434077],\n            [9.203693, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.438574],\n            [9.203693, 45.44307],\n            [9.208189, 45.44307],\n            [9.208189, 45.438574],\n            [9.203693, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.44307],\n            [9.203693, 45.447567],\n            [9.208189, 45.447567],\n            [9.208189, 45.44307],\n            [9.203693, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.447567],\n            [9.203693, 45.452063],\n            [9.208189, 45.452063],\n            [9.208189, 45.447567],\n            [9.203693, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.452063],\n            [9.203693, 45.45656],\n            [9.208189, 45.45656],\n            [9.208189, 45.452063],\n            [9.203693, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.45656],\n            [9.203693, 45.461057],\n            [9.208189, 45.461057],\n            [9.208189, 45.45656],\n            [9.203693, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.461057],\n            [9.203693, 45.465553],\n            [9.208189, 45.465553],\n            [9.208189, 45.461057],\n            [9.203693, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.465553],\n            [9.203693, 45.47005],\n            [9.208189, 45.47005],\n            [9.208189, 45.465553],\n            [9.203693, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.47005],\n            [9.203693, 45.474547],\n            [9.208189, 45.474547],\n            [9.208189, 45.47005],\n            [9.203693, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.474547],\n            [9.203693, 45.479043],\n            [9.208189, 45.479043],\n            [9.208189, 45.474547],\n            [9.203693, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.479043],\n            [9.203693, 45.48354],\n            [9.208189, 45.48354],\n            [9.208189, 45.479043],\n            [9.203693, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.48354],\n            [9.203693, 45.488036],\n            [9.208189, 45.488036],\n            [9.208189, 45.48354],\n            [9.203693, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.488036],\n            [9.203693, 45.492533],\n            [9.208189, 45.492533],\n            [9.208189, 45.488036],\n            [9.203693, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.492533],\n            [9.203693, 45.49703],\n            [9.208189, 45.49703],\n            [9.208189, 45.492533],\n            [9.203693, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.49703],\n            [9.203693, 45.501526],\n            [9.208189, 45.501526],\n            [9.208189, 45.49703],\n            [9.203693, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.501526],\n            [9.203693, 45.506023],\n            [9.208189, 45.506023],\n            [9.208189, 45.501526],\n            [9.203693, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.506023],\n            [9.203693, 45.510519],\n            [9.208189, 45.510519],\n            [9.208189, 45.506023],\n            [9.203693, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.510519],\n            [9.203693, 45.515016],\n            [9.208189, 45.515016],\n            [9.208189, 45.510519],\n            [9.203693, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.515016],\n            [9.203693, 45.519513],\n            [9.208189, 45.519513],\n            [9.208189, 45.515016],\n            [9.203693, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.519513],\n            [9.203693, 45.524009],\n            [9.208189, 45.524009],\n            [9.208189, 45.519513],\n            [9.203693, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 38,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.524009],\n            [9.203693, 45.528506],\n            [9.208189, 45.528506],\n            [9.208189, 45.524009],\n            [9.203693, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 42,\n        \"stroke\": \"#0062bd\",\n        \"fill\": \"#0062bd\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.528506],\n            [9.203693, 45.533002],\n            [9.208189, 45.533002],\n            [9.208189, 45.528506],\n            [9.203693, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 45,\n        \"stroke\": \"#00529e\",\n        \"fill\": \"#00529e\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.533002],\n            [9.203693, 45.537499],\n            [9.208189, 45.537499],\n            [9.208189, 45.533002],\n            [9.203693, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 45,\n        \"stroke\": \"#00529e\",\n        \"fill\": \"#00529e\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.537499],\n            [9.203693, 45.541996],\n            [9.208189, 45.541996],\n            [9.208189, 45.537499],\n            [9.203693, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 43,\n        \"stroke\": \"#005db3\",\n        \"fill\": \"#005db3\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.541996],\n            [9.203693, 45.546492],\n            [9.208189, 45.546492],\n            [9.208189, 45.541996],\n            [9.203693, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 41,\n        \"stroke\": \"#0068c7\",\n        \"fill\": \"#0068c7\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.546492],\n            [9.203693, 45.550989],\n            [9.208189, 45.550989],\n            [9.208189, 45.546492],\n            [9.203693, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 39,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.550989],\n            [9.203693, 45.555485],\n            [9.208189, 45.555485],\n            [9.208189, 45.550989],\n            [9.203693, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.555485],\n            [9.203693, 45.559982],\n            [9.208189, 45.559982],\n            [9.208189, 45.555485],\n            [9.203693, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.559982],\n            [9.203693, 45.564479],\n            [9.208189, 45.564479],\n            [9.208189, 45.559982],\n            [9.203693, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.564479],\n            [9.203693, 45.568975],\n            [9.208189, 45.568975],\n            [9.208189, 45.564479],\n            [9.203693, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.568975],\n            [9.203693, 45.573472],\n            [9.208189, 45.573472],\n            [9.208189, 45.568975],\n            [9.203693, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.573472],\n            [9.203693, 45.577968],\n            [9.208189, 45.577968],\n            [9.208189, 45.573472],\n            [9.203693, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.577968],\n            [9.203693, 45.582465],\n            [9.208189, 45.582465],\n            [9.208189, 45.577968],\n            [9.203693, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.582465],\n            [9.203693, 45.586962],\n            [9.208189, 45.586962],\n            [9.208189, 45.582465],\n            [9.203693, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.586962],\n            [9.203693, 45.591458],\n            [9.208189, 45.591458],\n            [9.208189, 45.586962],\n            [9.203693, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.591458],\n            [9.203693, 45.595955],\n            [9.208189, 45.595955],\n            [9.208189, 45.591458],\n            [9.203693, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.595955],\n            [9.203693, 45.600451],\n            [9.208189, 45.600451],\n            [9.208189, 45.595955],\n            [9.203693, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.600451],\n            [9.203693, 45.604948],\n            [9.208189, 45.604948],\n            [9.208189, 45.600451],\n            [9.203693, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.604948],\n            [9.203693, 45.609445],\n            [9.208189, 45.609445],\n            [9.208189, 45.604948],\n            [9.203693, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.609445],\n            [9.203693, 45.613941],\n            [9.208189, 45.613941],\n            [9.208189, 45.609445],\n            [9.203693, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.613941],\n            [9.203693, 45.618438],\n            [9.208189, 45.618438],\n            [9.208189, 45.613941],\n            [9.203693, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.618438],\n            [9.203693, 45.622934],\n            [9.208189, 45.622934],\n            [9.208189, 45.618438],\n            [9.203693, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.622934],\n            [9.203693, 45.627431],\n            [9.208189, 45.627431],\n            [9.208189, 45.622934],\n            [9.203693, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.627431],\n            [9.203693, 45.631928],\n            [9.208189, 45.631928],\n            [9.208189, 45.627431],\n            [9.203693, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203693, 45.631928],\n            [9.203693, 45.636424],\n            [9.208189, 45.636424],\n            [9.208189, 45.631928],\n            [9.203693, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.339648],\n            [9.208189, 45.344145],\n            [9.212686, 45.344145],\n            [9.212686, 45.339648],\n            [9.208189, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.344145],\n            [9.208189, 45.348642],\n            [9.212686, 45.348642],\n            [9.212686, 45.344145],\n            [9.208189, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.348642],\n            [9.208189, 45.353138],\n            [9.212686, 45.353138],\n            [9.212686, 45.348642],\n            [9.208189, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.353138],\n            [9.208189, 45.357635],\n            [9.212686, 45.357635],\n            [9.212686, 45.353138],\n            [9.208189, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.357635],\n            [9.208189, 45.362131],\n            [9.212686, 45.362131],\n            [9.212686, 45.357635],\n            [9.208189, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.362131],\n            [9.208189, 45.366628],\n            [9.212686, 45.366628],\n            [9.212686, 45.362131],\n            [9.208189, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.366628],\n            [9.208189, 45.371125],\n            [9.212686, 45.371125],\n            [9.212686, 45.366628],\n            [9.208189, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.371125],\n            [9.208189, 45.375621],\n            [9.212686, 45.375621],\n            [9.212686, 45.371125],\n            [9.208189, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.375621],\n            [9.208189, 45.380118],\n            [9.212686, 45.380118],\n            [9.212686, 45.375621],\n            [9.208189, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.380118],\n            [9.208189, 45.384614],\n            [9.212686, 45.384614],\n            [9.212686, 45.380118],\n            [9.208189, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.384614],\n            [9.208189, 45.389111],\n            [9.212686, 45.389111],\n            [9.212686, 45.384614],\n            [9.208189, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.389111],\n            [9.208189, 45.393608],\n            [9.212686, 45.393608],\n            [9.212686, 45.389111],\n            [9.208189, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.393608],\n            [9.208189, 45.398104],\n            [9.212686, 45.398104],\n            [9.212686, 45.393608],\n            [9.208189, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.398104],\n            [9.208189, 45.402601],\n            [9.212686, 45.402601],\n            [9.212686, 45.398104],\n            [9.208189, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.402601],\n            [9.208189, 45.407097],\n            [9.212686, 45.407097],\n            [9.212686, 45.402601],\n            [9.208189, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.407097],\n            [9.208189, 45.411594],\n            [9.212686, 45.411594],\n            [9.212686, 45.407097],\n            [9.208189, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.411594],\n            [9.208189, 45.416091],\n            [9.212686, 45.416091],\n            [9.212686, 45.411594],\n            [9.208189, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.416091],\n            [9.208189, 45.420587],\n            [9.212686, 45.420587],\n            [9.212686, 45.416091],\n            [9.208189, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.420587],\n            [9.208189, 45.425084],\n            [9.212686, 45.425084],\n            [9.212686, 45.420587],\n            [9.208189, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.425084],\n            [9.208189, 45.42958],\n            [9.212686, 45.42958],\n            [9.212686, 45.425084],\n            [9.208189, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.42958],\n            [9.208189, 45.434077],\n            [9.212686, 45.434077],\n            [9.212686, 45.42958],\n            [9.208189, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.434077],\n            [9.208189, 45.438574],\n            [9.212686, 45.438574],\n            [9.212686, 45.434077],\n            [9.208189, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.438574],\n            [9.208189, 45.44307],\n            [9.212686, 45.44307],\n            [9.212686, 45.438574],\n            [9.208189, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.44307],\n            [9.208189, 45.447567],\n            [9.212686, 45.447567],\n            [9.212686, 45.44307],\n            [9.208189, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.447567],\n            [9.208189, 45.452063],\n            [9.212686, 45.452063],\n            [9.212686, 45.447567],\n            [9.208189, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.452063],\n            [9.208189, 45.45656],\n            [9.212686, 45.45656],\n            [9.212686, 45.452063],\n            [9.208189, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.45656],\n            [9.208189, 45.461057],\n            [9.212686, 45.461057],\n            [9.212686, 45.45656],\n            [9.208189, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.461057],\n            [9.208189, 45.465553],\n            [9.212686, 45.465553],\n            [9.212686, 45.461057],\n            [9.208189, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.465553],\n            [9.208189, 45.47005],\n            [9.212686, 45.47005],\n            [9.212686, 45.465553],\n            [9.208189, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.47005],\n            [9.208189, 45.474547],\n            [9.212686, 45.474547],\n            [9.212686, 45.47005],\n            [9.208189, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.474547],\n            [9.208189, 45.479043],\n            [9.212686, 45.479043],\n            [9.212686, 45.474547],\n            [9.208189, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.479043],\n            [9.208189, 45.48354],\n            [9.212686, 45.48354],\n            [9.212686, 45.479043],\n            [9.208189, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.48354],\n            [9.208189, 45.488036],\n            [9.212686, 45.488036],\n            [9.212686, 45.48354],\n            [9.208189, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.488036],\n            [9.208189, 45.492533],\n            [9.212686, 45.492533],\n            [9.212686, 45.488036],\n            [9.208189, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.492533],\n            [9.208189, 45.49703],\n            [9.212686, 45.49703],\n            [9.212686, 45.492533],\n            [9.208189, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.49703],\n            [9.208189, 45.501526],\n            [9.212686, 45.501526],\n            [9.212686, 45.49703],\n            [9.208189, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.501526],\n            [9.208189, 45.506023],\n            [9.212686, 45.506023],\n            [9.212686, 45.501526],\n            [9.208189, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.506023],\n            [9.208189, 45.510519],\n            [9.212686, 45.510519],\n            [9.212686, 45.506023],\n            [9.208189, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.510519],\n            [9.208189, 45.515016],\n            [9.212686, 45.515016],\n            [9.212686, 45.510519],\n            [9.208189, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.515016],\n            [9.208189, 45.519513],\n            [9.212686, 45.519513],\n            [9.212686, 45.515016],\n            [9.208189, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.519513],\n            [9.208189, 45.524009],\n            [9.212686, 45.524009],\n            [9.212686, 45.519513],\n            [9.208189, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.524009],\n            [9.208189, 45.528506],\n            [9.212686, 45.528506],\n            [9.212686, 45.524009],\n            [9.208189, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 39,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.528506],\n            [9.208189, 45.533002],\n            [9.212686, 45.533002],\n            [9.212686, 45.528506],\n            [9.208189, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 41,\n        \"stroke\": \"#0068c7\",\n        \"fill\": \"#0068c7\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.533002],\n            [9.208189, 45.537499],\n            [9.212686, 45.537499],\n            [9.212686, 45.533002],\n            [9.208189, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 42,\n        \"stroke\": \"#0062bd\",\n        \"fill\": \"#0062bd\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.537499],\n            [9.208189, 45.541996],\n            [9.212686, 45.541996],\n            [9.212686, 45.537499],\n            [9.208189, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 41,\n        \"stroke\": \"#0068c7\",\n        \"fill\": \"#0068c7\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.541996],\n            [9.208189, 45.546492],\n            [9.212686, 45.546492],\n            [9.212686, 45.541996],\n            [9.208189, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 39,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.546492],\n            [9.208189, 45.550989],\n            [9.212686, 45.550989],\n            [9.212686, 45.546492],\n            [9.208189, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 38,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.550989],\n            [9.208189, 45.555485],\n            [9.212686, 45.555485],\n            [9.212686, 45.550989],\n            [9.208189, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.555485],\n            [9.208189, 45.559982],\n            [9.212686, 45.559982],\n            [9.212686, 45.555485],\n            [9.208189, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.559982],\n            [9.208189, 45.564479],\n            [9.212686, 45.564479],\n            [9.212686, 45.559982],\n            [9.208189, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.564479],\n            [9.208189, 45.568975],\n            [9.212686, 45.568975],\n            [9.212686, 45.564479],\n            [9.208189, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.568975],\n            [9.208189, 45.573472],\n            [9.212686, 45.573472],\n            [9.212686, 45.568975],\n            [9.208189, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.573472],\n            [9.208189, 45.577968],\n            [9.212686, 45.577968],\n            [9.212686, 45.573472],\n            [9.208189, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.577968],\n            [9.208189, 45.582465],\n            [9.212686, 45.582465],\n            [9.212686, 45.577968],\n            [9.208189, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.582465],\n            [9.208189, 45.586962],\n            [9.212686, 45.586962],\n            [9.212686, 45.582465],\n            [9.208189, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.586962],\n            [9.208189, 45.591458],\n            [9.212686, 45.591458],\n            [9.212686, 45.586962],\n            [9.208189, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.591458],\n            [9.208189, 45.595955],\n            [9.212686, 45.595955],\n            [9.212686, 45.591458],\n            [9.208189, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.595955],\n            [9.208189, 45.600451],\n            [9.212686, 45.600451],\n            [9.212686, 45.595955],\n            [9.208189, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.600451],\n            [9.208189, 45.604948],\n            [9.212686, 45.604948],\n            [9.212686, 45.600451],\n            [9.208189, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.604948],\n            [9.208189, 45.609445],\n            [9.212686, 45.609445],\n            [9.212686, 45.604948],\n            [9.208189, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.609445],\n            [9.208189, 45.613941],\n            [9.212686, 45.613941],\n            [9.212686, 45.609445],\n            [9.208189, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.613941],\n            [9.208189, 45.618438],\n            [9.212686, 45.618438],\n            [9.212686, 45.613941],\n            [9.208189, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.618438],\n            [9.208189, 45.622934],\n            [9.212686, 45.622934],\n            [9.212686, 45.618438],\n            [9.208189, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.622934],\n            [9.208189, 45.627431],\n            [9.212686, 45.627431],\n            [9.212686, 45.622934],\n            [9.208189, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.627431],\n            [9.208189, 45.631928],\n            [9.212686, 45.631928],\n            [9.212686, 45.627431],\n            [9.208189, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.208189, 45.631928],\n            [9.208189, 45.636424],\n            [9.212686, 45.636424],\n            [9.212686, 45.631928],\n            [9.208189, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.339648],\n            [9.212686, 45.344145],\n            [9.217182, 45.344145],\n            [9.217182, 45.339648],\n            [9.212686, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.344145],\n            [9.212686, 45.348642],\n            [9.217182, 45.348642],\n            [9.217182, 45.344145],\n            [9.212686, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.348642],\n            [9.212686, 45.353138],\n            [9.217182, 45.353138],\n            [9.217182, 45.348642],\n            [9.212686, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.353138],\n            [9.212686, 45.357635],\n            [9.217182, 45.357635],\n            [9.217182, 45.353138],\n            [9.212686, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.357635],\n            [9.212686, 45.362131],\n            [9.217182, 45.362131],\n            [9.217182, 45.357635],\n            [9.212686, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.362131],\n            [9.212686, 45.366628],\n            [9.217182, 45.366628],\n            [9.217182, 45.362131],\n            [9.212686, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.366628],\n            [9.212686, 45.371125],\n            [9.217182, 45.371125],\n            [9.217182, 45.366628],\n            [9.212686, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.371125],\n            [9.212686, 45.375621],\n            [9.217182, 45.375621],\n            [9.217182, 45.371125],\n            [9.212686, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.375621],\n            [9.212686, 45.380118],\n            [9.217182, 45.380118],\n            [9.217182, 45.375621],\n            [9.212686, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.380118],\n            [9.212686, 45.384614],\n            [9.217182, 45.384614],\n            [9.217182, 45.380118],\n            [9.212686, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.384614],\n            [9.212686, 45.389111],\n            [9.217182, 45.389111],\n            [9.217182, 45.384614],\n            [9.212686, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.389111],\n            [9.212686, 45.393608],\n            [9.217182, 45.393608],\n            [9.217182, 45.389111],\n            [9.212686, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.393608],\n            [9.212686, 45.398104],\n            [9.217182, 45.398104],\n            [9.217182, 45.393608],\n            [9.212686, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.398104],\n            [9.212686, 45.402601],\n            [9.217182, 45.402601],\n            [9.217182, 45.398104],\n            [9.212686, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.402601],\n            [9.212686, 45.407097],\n            [9.217182, 45.407097],\n            [9.217182, 45.402601],\n            [9.212686, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.407097],\n            [9.212686, 45.411594],\n            [9.217182, 45.411594],\n            [9.217182, 45.407097],\n            [9.212686, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.411594],\n            [9.212686, 45.416091],\n            [9.217182, 45.416091],\n            [9.217182, 45.411594],\n            [9.212686, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.416091],\n            [9.212686, 45.420587],\n            [9.217182, 45.420587],\n            [9.217182, 45.416091],\n            [9.212686, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.420587],\n            [9.212686, 45.425084],\n            [9.217182, 45.425084],\n            [9.217182, 45.420587],\n            [9.212686, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.425084],\n            [9.212686, 45.42958],\n            [9.217182, 45.42958],\n            [9.217182, 45.425084],\n            [9.212686, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.42958],\n            [9.212686, 45.434077],\n            [9.217182, 45.434077],\n            [9.217182, 45.42958],\n            [9.212686, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.434077],\n            [9.212686, 45.438574],\n            [9.217182, 45.438574],\n            [9.217182, 45.434077],\n            [9.212686, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.438574],\n            [9.212686, 45.44307],\n            [9.217182, 45.44307],\n            [9.217182, 45.438574],\n            [9.212686, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.44307],\n            [9.212686, 45.447567],\n            [9.217182, 45.447567],\n            [9.217182, 45.44307],\n            [9.212686, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.447567],\n            [9.212686, 45.452063],\n            [9.217182, 45.452063],\n            [9.217182, 45.447567],\n            [9.212686, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.452063],\n            [9.212686, 45.45656],\n            [9.217182, 45.45656],\n            [9.217182, 45.452063],\n            [9.212686, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.45656],\n            [9.212686, 45.461057],\n            [9.217182, 45.461057],\n            [9.217182, 45.45656],\n            [9.212686, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.461057],\n            [9.212686, 45.465553],\n            [9.217182, 45.465553],\n            [9.217182, 45.461057],\n            [9.212686, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.465553],\n            [9.212686, 45.47005],\n            [9.217182, 45.47005],\n            [9.217182, 45.465553],\n            [9.212686, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.47005],\n            [9.212686, 45.474547],\n            [9.217182, 45.474547],\n            [9.217182, 45.47005],\n            [9.212686, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.474547],\n            [9.212686, 45.479043],\n            [9.217182, 45.479043],\n            [9.217182, 45.474547],\n            [9.212686, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.479043],\n            [9.212686, 45.48354],\n            [9.217182, 45.48354],\n            [9.217182, 45.479043],\n            [9.212686, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.48354],\n            [9.212686, 45.488036],\n            [9.217182, 45.488036],\n            [9.217182, 45.48354],\n            [9.212686, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.488036],\n            [9.212686, 45.492533],\n            [9.217182, 45.492533],\n            [9.217182, 45.488036],\n            [9.212686, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.492533],\n            [9.212686, 45.49703],\n            [9.217182, 45.49703],\n            [9.217182, 45.492533],\n            [9.212686, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.49703],\n            [9.212686, 45.501526],\n            [9.217182, 45.501526],\n            [9.217182, 45.49703],\n            [9.212686, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.501526],\n            [9.212686, 45.506023],\n            [9.217182, 45.506023],\n            [9.217182, 45.501526],\n            [9.212686, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.506023],\n            [9.212686, 45.510519],\n            [9.217182, 45.510519],\n            [9.217182, 45.506023],\n            [9.212686, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.510519],\n            [9.212686, 45.515016],\n            [9.217182, 45.515016],\n            [9.217182, 45.510519],\n            [9.212686, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.515016],\n            [9.212686, 45.519513],\n            [9.217182, 45.519513],\n            [9.217182, 45.515016],\n            [9.212686, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.519513],\n            [9.212686, 45.524009],\n            [9.217182, 45.524009],\n            [9.217182, 45.519513],\n            [9.212686, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.524009],\n            [9.212686, 45.528506],\n            [9.217182, 45.528506],\n            [9.217182, 45.524009],\n            [9.212686, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.528506],\n            [9.212686, 45.533002],\n            [9.217182, 45.533002],\n            [9.217182, 45.528506],\n            [9.212686, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 39,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.533002],\n            [9.212686, 45.537499],\n            [9.217182, 45.537499],\n            [9.217182, 45.533002],\n            [9.212686, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 39,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.537499],\n            [9.212686, 45.541996],\n            [9.217182, 45.541996],\n            [9.217182, 45.537499],\n            [9.212686, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 39,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.541996],\n            [9.212686, 45.546492],\n            [9.217182, 45.546492],\n            [9.217182, 45.541996],\n            [9.212686, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 38,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.546492],\n            [9.212686, 45.550989],\n            [9.217182, 45.550989],\n            [9.217182, 45.546492],\n            [9.212686, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.550989],\n            [9.212686, 45.555485],\n            [9.217182, 45.555485],\n            [9.217182, 45.550989],\n            [9.212686, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.555485],\n            [9.212686, 45.559982],\n            [9.217182, 45.559982],\n            [9.217182, 45.555485],\n            [9.212686, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.559982],\n            [9.212686, 45.564479],\n            [9.217182, 45.564479],\n            [9.217182, 45.559982],\n            [9.212686, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.564479],\n            [9.212686, 45.568975],\n            [9.217182, 45.568975],\n            [9.217182, 45.564479],\n            [9.212686, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.568975],\n            [9.212686, 45.573472],\n            [9.217182, 45.573472],\n            [9.217182, 45.568975],\n            [9.212686, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.573472],\n            [9.212686, 45.577968],\n            [9.217182, 45.577968],\n            [9.217182, 45.573472],\n            [9.212686, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.577968],\n            [9.212686, 45.582465],\n            [9.217182, 45.582465],\n            [9.217182, 45.577968],\n            [9.212686, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.582465],\n            [9.212686, 45.586962],\n            [9.217182, 45.586962],\n            [9.217182, 45.582465],\n            [9.212686, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.586962],\n            [9.212686, 45.591458],\n            [9.217182, 45.591458],\n            [9.217182, 45.586962],\n            [9.212686, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.591458],\n            [9.212686, 45.595955],\n            [9.217182, 45.595955],\n            [9.217182, 45.591458],\n            [9.212686, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.595955],\n            [9.212686, 45.600451],\n            [9.217182, 45.600451],\n            [9.217182, 45.595955],\n            [9.212686, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.600451],\n            [9.212686, 45.604948],\n            [9.217182, 45.604948],\n            [9.217182, 45.600451],\n            [9.212686, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.604948],\n            [9.212686, 45.609445],\n            [9.217182, 45.609445],\n            [9.217182, 45.604948],\n            [9.212686, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.609445],\n            [9.212686, 45.613941],\n            [9.217182, 45.613941],\n            [9.217182, 45.609445],\n            [9.212686, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.613941],\n            [9.212686, 45.618438],\n            [9.217182, 45.618438],\n            [9.217182, 45.613941],\n            [9.212686, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.618438],\n            [9.212686, 45.622934],\n            [9.217182, 45.622934],\n            [9.217182, 45.618438],\n            [9.212686, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.622934],\n            [9.212686, 45.627431],\n            [9.217182, 45.627431],\n            [9.217182, 45.622934],\n            [9.212686, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.627431],\n            [9.212686, 45.631928],\n            [9.217182, 45.631928],\n            [9.217182, 45.627431],\n            [9.212686, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212686, 45.631928],\n            [9.212686, 45.636424],\n            [9.217182, 45.636424],\n            [9.217182, 45.631928],\n            [9.212686, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.339648],\n            [9.217182, 45.344145],\n            [9.221679, 45.344145],\n            [9.221679, 45.339648],\n            [9.217182, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.344145],\n            [9.217182, 45.348642],\n            [9.221679, 45.348642],\n            [9.221679, 45.344145],\n            [9.217182, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.348642],\n            [9.217182, 45.353138],\n            [9.221679, 45.353138],\n            [9.221679, 45.348642],\n            [9.217182, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.353138],\n            [9.217182, 45.357635],\n            [9.221679, 45.357635],\n            [9.221679, 45.353138],\n            [9.217182, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.357635],\n            [9.217182, 45.362131],\n            [9.221679, 45.362131],\n            [9.221679, 45.357635],\n            [9.217182, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.362131],\n            [9.217182, 45.366628],\n            [9.221679, 45.366628],\n            [9.221679, 45.362131],\n            [9.217182, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.366628],\n            [9.217182, 45.371125],\n            [9.221679, 45.371125],\n            [9.221679, 45.366628],\n            [9.217182, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.371125],\n            [9.217182, 45.375621],\n            [9.221679, 45.375621],\n            [9.221679, 45.371125],\n            [9.217182, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.375621],\n            [9.217182, 45.380118],\n            [9.221679, 45.380118],\n            [9.221679, 45.375621],\n            [9.217182, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.380118],\n            [9.217182, 45.384614],\n            [9.221679, 45.384614],\n            [9.221679, 45.380118],\n            [9.217182, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.384614],\n            [9.217182, 45.389111],\n            [9.221679, 45.389111],\n            [9.221679, 45.384614],\n            [9.217182, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.389111],\n            [9.217182, 45.393608],\n            [9.221679, 45.393608],\n            [9.221679, 45.389111],\n            [9.217182, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.393608],\n            [9.217182, 45.398104],\n            [9.221679, 45.398104],\n            [9.221679, 45.393608],\n            [9.217182, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.398104],\n            [9.217182, 45.402601],\n            [9.221679, 45.402601],\n            [9.221679, 45.398104],\n            [9.217182, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.402601],\n            [9.217182, 45.407097],\n            [9.221679, 45.407097],\n            [9.221679, 45.402601],\n            [9.217182, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.407097],\n            [9.217182, 45.411594],\n            [9.221679, 45.411594],\n            [9.221679, 45.407097],\n            [9.217182, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.411594],\n            [9.217182, 45.416091],\n            [9.221679, 45.416091],\n            [9.221679, 45.411594],\n            [9.217182, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.416091],\n            [9.217182, 45.420587],\n            [9.221679, 45.420587],\n            [9.221679, 45.416091],\n            [9.217182, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.420587],\n            [9.217182, 45.425084],\n            [9.221679, 45.425084],\n            [9.221679, 45.420587],\n            [9.217182, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.425084],\n            [9.217182, 45.42958],\n            [9.221679, 45.42958],\n            [9.221679, 45.425084],\n            [9.217182, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.42958],\n            [9.217182, 45.434077],\n            [9.221679, 45.434077],\n            [9.221679, 45.42958],\n            [9.217182, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.434077],\n            [9.217182, 45.438574],\n            [9.221679, 45.438574],\n            [9.221679, 45.434077],\n            [9.217182, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.438574],\n            [9.217182, 45.44307],\n            [9.221679, 45.44307],\n            [9.221679, 45.438574],\n            [9.217182, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.44307],\n            [9.217182, 45.447567],\n            [9.221679, 45.447567],\n            [9.221679, 45.44307],\n            [9.217182, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.447567],\n            [9.217182, 45.452063],\n            [9.221679, 45.452063],\n            [9.221679, 45.447567],\n            [9.217182, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.452063],\n            [9.217182, 45.45656],\n            [9.221679, 45.45656],\n            [9.221679, 45.452063],\n            [9.217182, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.45656],\n            [9.217182, 45.461057],\n            [9.221679, 45.461057],\n            [9.221679, 45.45656],\n            [9.217182, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.461057],\n            [9.217182, 45.465553],\n            [9.221679, 45.465553],\n            [9.221679, 45.461057],\n            [9.217182, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.465553],\n            [9.217182, 45.47005],\n            [9.221679, 45.47005],\n            [9.221679, 45.465553],\n            [9.217182, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.47005],\n            [9.217182, 45.474547],\n            [9.221679, 45.474547],\n            [9.221679, 45.47005],\n            [9.217182, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.474547],\n            [9.217182, 45.479043],\n            [9.221679, 45.479043],\n            [9.221679, 45.474547],\n            [9.217182, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.479043],\n            [9.217182, 45.48354],\n            [9.221679, 45.48354],\n            [9.221679, 45.479043],\n            [9.217182, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.48354],\n            [9.217182, 45.488036],\n            [9.221679, 45.488036],\n            [9.221679, 45.48354],\n            [9.217182, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.488036],\n            [9.217182, 45.492533],\n            [9.221679, 45.492533],\n            [9.221679, 45.488036],\n            [9.217182, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.492533],\n            [9.217182, 45.49703],\n            [9.221679, 45.49703],\n            [9.221679, 45.492533],\n            [9.217182, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.49703],\n            [9.217182, 45.501526],\n            [9.221679, 45.501526],\n            [9.221679, 45.49703],\n            [9.217182, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.501526],\n            [9.217182, 45.506023],\n            [9.221679, 45.506023],\n            [9.221679, 45.501526],\n            [9.217182, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.506023],\n            [9.217182, 45.510519],\n            [9.221679, 45.510519],\n            [9.221679, 45.506023],\n            [9.217182, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.510519],\n            [9.217182, 45.515016],\n            [9.221679, 45.515016],\n            [9.221679, 45.510519],\n            [9.217182, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.515016],\n            [9.217182, 45.519513],\n            [9.221679, 45.519513],\n            [9.221679, 45.515016],\n            [9.217182, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.519513],\n            [9.217182, 45.524009],\n            [9.221679, 45.524009],\n            [9.221679, 45.519513],\n            [9.217182, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.524009],\n            [9.217182, 45.528506],\n            [9.221679, 45.528506],\n            [9.221679, 45.524009],\n            [9.217182, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.528506],\n            [9.217182, 45.533002],\n            [9.221679, 45.533002],\n            [9.221679, 45.528506],\n            [9.217182, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.533002],\n            [9.217182, 45.537499],\n            [9.221679, 45.537499],\n            [9.221679, 45.533002],\n            [9.217182, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.537499],\n            [9.217182, 45.541996],\n            [9.221679, 45.541996],\n            [9.221679, 45.537499],\n            [9.217182, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.541996],\n            [9.217182, 45.546492],\n            [9.221679, 45.546492],\n            [9.221679, 45.541996],\n            [9.217182, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.546492],\n            [9.217182, 45.550989],\n            [9.221679, 45.550989],\n            [9.221679, 45.546492],\n            [9.217182, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.550989],\n            [9.217182, 45.555485],\n            [9.221679, 45.555485],\n            [9.221679, 45.550989],\n            [9.217182, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.555485],\n            [9.217182, 45.559982],\n            [9.221679, 45.559982],\n            [9.221679, 45.555485],\n            [9.217182, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.559982],\n            [9.217182, 45.564479],\n            [9.221679, 45.564479],\n            [9.221679, 45.559982],\n            [9.217182, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.564479],\n            [9.217182, 45.568975],\n            [9.221679, 45.568975],\n            [9.221679, 45.564479],\n            [9.217182, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.568975],\n            [9.217182, 45.573472],\n            [9.221679, 45.573472],\n            [9.221679, 45.568975],\n            [9.217182, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.573472],\n            [9.217182, 45.577968],\n            [9.221679, 45.577968],\n            [9.221679, 45.573472],\n            [9.217182, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.577968],\n            [9.217182, 45.582465],\n            [9.221679, 45.582465],\n            [9.221679, 45.577968],\n            [9.217182, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.582465],\n            [9.217182, 45.586962],\n            [9.221679, 45.586962],\n            [9.221679, 45.582465],\n            [9.217182, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.586962],\n            [9.217182, 45.591458],\n            [9.221679, 45.591458],\n            [9.221679, 45.586962],\n            [9.217182, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.591458],\n            [9.217182, 45.595955],\n            [9.221679, 45.595955],\n            [9.221679, 45.591458],\n            [9.217182, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.595955],\n            [9.217182, 45.600451],\n            [9.221679, 45.600451],\n            [9.221679, 45.595955],\n            [9.217182, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.600451],\n            [9.217182, 45.604948],\n            [9.221679, 45.604948],\n            [9.221679, 45.600451],\n            [9.217182, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.604948],\n            [9.217182, 45.609445],\n            [9.221679, 45.609445],\n            [9.221679, 45.604948],\n            [9.217182, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.609445],\n            [9.217182, 45.613941],\n            [9.221679, 45.613941],\n            [9.221679, 45.609445],\n            [9.217182, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.613941],\n            [9.217182, 45.618438],\n            [9.221679, 45.618438],\n            [9.221679, 45.613941],\n            [9.217182, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.618438],\n            [9.217182, 45.622934],\n            [9.221679, 45.622934],\n            [9.221679, 45.618438],\n            [9.217182, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.622934],\n            [9.217182, 45.627431],\n            [9.221679, 45.627431],\n            [9.221679, 45.622934],\n            [9.217182, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.627431],\n            [9.217182, 45.631928],\n            [9.221679, 45.631928],\n            [9.221679, 45.627431],\n            [9.217182, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.217182, 45.631928],\n            [9.217182, 45.636424],\n            [9.221679, 45.636424],\n            [9.221679, 45.631928],\n            [9.217182, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.339648],\n            [9.221679, 45.344145],\n            [9.226176, 45.344145],\n            [9.226176, 45.339648],\n            [9.221679, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.344145],\n            [9.221679, 45.348642],\n            [9.226176, 45.348642],\n            [9.226176, 45.344145],\n            [9.221679, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.348642],\n            [9.221679, 45.353138],\n            [9.226176, 45.353138],\n            [9.226176, 45.348642],\n            [9.221679, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.353138],\n            [9.221679, 45.357635],\n            [9.226176, 45.357635],\n            [9.226176, 45.353138],\n            [9.221679, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.357635],\n            [9.221679, 45.362131],\n            [9.226176, 45.362131],\n            [9.226176, 45.357635],\n            [9.221679, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.362131],\n            [9.221679, 45.366628],\n            [9.226176, 45.366628],\n            [9.226176, 45.362131],\n            [9.221679, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.366628],\n            [9.221679, 45.371125],\n            [9.226176, 45.371125],\n            [9.226176, 45.366628],\n            [9.221679, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.371125],\n            [9.221679, 45.375621],\n            [9.226176, 45.375621],\n            [9.226176, 45.371125],\n            [9.221679, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.375621],\n            [9.221679, 45.380118],\n            [9.226176, 45.380118],\n            [9.226176, 45.375621],\n            [9.221679, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.380118],\n            [9.221679, 45.384614],\n            [9.226176, 45.384614],\n            [9.226176, 45.380118],\n            [9.221679, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.384614],\n            [9.221679, 45.389111],\n            [9.226176, 45.389111],\n            [9.226176, 45.384614],\n            [9.221679, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.389111],\n            [9.221679, 45.393608],\n            [9.226176, 45.393608],\n            [9.226176, 45.389111],\n            [9.221679, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.393608],\n            [9.221679, 45.398104],\n            [9.226176, 45.398104],\n            [9.226176, 45.393608],\n            [9.221679, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.398104],\n            [9.221679, 45.402601],\n            [9.226176, 45.402601],\n            [9.226176, 45.398104],\n            [9.221679, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.402601],\n            [9.221679, 45.407097],\n            [9.226176, 45.407097],\n            [9.226176, 45.402601],\n            [9.221679, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.407097],\n            [9.221679, 45.411594],\n            [9.226176, 45.411594],\n            [9.226176, 45.407097],\n            [9.221679, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.411594],\n            [9.221679, 45.416091],\n            [9.226176, 45.416091],\n            [9.226176, 45.411594],\n            [9.221679, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.416091],\n            [9.221679, 45.420587],\n            [9.226176, 45.420587],\n            [9.226176, 45.416091],\n            [9.221679, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.420587],\n            [9.221679, 45.425084],\n            [9.226176, 45.425084],\n            [9.226176, 45.420587],\n            [9.221679, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.425084],\n            [9.221679, 45.42958],\n            [9.226176, 45.42958],\n            [9.226176, 45.425084],\n            [9.221679, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.42958],\n            [9.221679, 45.434077],\n            [9.226176, 45.434077],\n            [9.226176, 45.42958],\n            [9.221679, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.434077],\n            [9.221679, 45.438574],\n            [9.226176, 45.438574],\n            [9.226176, 45.434077],\n            [9.221679, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.438574],\n            [9.221679, 45.44307],\n            [9.226176, 45.44307],\n            [9.226176, 45.438574],\n            [9.221679, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.44307],\n            [9.221679, 45.447567],\n            [9.226176, 45.447567],\n            [9.226176, 45.44307],\n            [9.221679, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.447567],\n            [9.221679, 45.452063],\n            [9.226176, 45.452063],\n            [9.226176, 45.447567],\n            [9.221679, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.452063],\n            [9.221679, 45.45656],\n            [9.226176, 45.45656],\n            [9.226176, 45.452063],\n            [9.221679, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.45656],\n            [9.221679, 45.461057],\n            [9.226176, 45.461057],\n            [9.226176, 45.45656],\n            [9.221679, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.461057],\n            [9.221679, 45.465553],\n            [9.226176, 45.465553],\n            [9.226176, 45.461057],\n            [9.221679, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.465553],\n            [9.221679, 45.47005],\n            [9.226176, 45.47005],\n            [9.226176, 45.465553],\n            [9.221679, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.47005],\n            [9.221679, 45.474547],\n            [9.226176, 45.474547],\n            [9.226176, 45.47005],\n            [9.221679, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.474547],\n            [9.221679, 45.479043],\n            [9.226176, 45.479043],\n            [9.226176, 45.474547],\n            [9.221679, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.479043],\n            [9.221679, 45.48354],\n            [9.226176, 45.48354],\n            [9.226176, 45.479043],\n            [9.221679, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.48354],\n            [9.221679, 45.488036],\n            [9.226176, 45.488036],\n            [9.226176, 45.48354],\n            [9.221679, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.488036],\n            [9.221679, 45.492533],\n            [9.226176, 45.492533],\n            [9.226176, 45.488036],\n            [9.221679, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.492533],\n            [9.221679, 45.49703],\n            [9.226176, 45.49703],\n            [9.226176, 45.492533],\n            [9.221679, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.49703],\n            [9.221679, 45.501526],\n            [9.226176, 45.501526],\n            [9.226176, 45.49703],\n            [9.221679, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.501526],\n            [9.221679, 45.506023],\n            [9.226176, 45.506023],\n            [9.226176, 45.501526],\n            [9.221679, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.506023],\n            [9.221679, 45.510519],\n            [9.226176, 45.510519],\n            [9.226176, 45.506023],\n            [9.221679, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.510519],\n            [9.221679, 45.515016],\n            [9.226176, 45.515016],\n            [9.226176, 45.510519],\n            [9.221679, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.515016],\n            [9.221679, 45.519513],\n            [9.226176, 45.519513],\n            [9.226176, 45.515016],\n            [9.221679, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.519513],\n            [9.221679, 45.524009],\n            [9.226176, 45.524009],\n            [9.226176, 45.519513],\n            [9.221679, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.524009],\n            [9.221679, 45.528506],\n            [9.226176, 45.528506],\n            [9.226176, 45.524009],\n            [9.221679, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.528506],\n            [9.221679, 45.533002],\n            [9.226176, 45.533002],\n            [9.226176, 45.528506],\n            [9.221679, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.533002],\n            [9.221679, 45.537499],\n            [9.226176, 45.537499],\n            [9.226176, 45.533002],\n            [9.221679, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.537499],\n            [9.221679, 45.541996],\n            [9.226176, 45.541996],\n            [9.226176, 45.537499],\n            [9.221679, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.541996],\n            [9.221679, 45.546492],\n            [9.226176, 45.546492],\n            [9.226176, 45.541996],\n            [9.221679, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0082fa\",\n        \"fill\": \"#0082fa\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.546492],\n            [9.221679, 45.550989],\n            [9.226176, 45.550989],\n            [9.226176, 45.546492],\n            [9.221679, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.550989],\n            [9.221679, 45.555485],\n            [9.226176, 45.555485],\n            [9.226176, 45.550989],\n            [9.221679, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.555485],\n            [9.221679, 45.559982],\n            [9.226176, 45.559982],\n            [9.226176, 45.555485],\n            [9.221679, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.559982],\n            [9.221679, 45.564479],\n            [9.226176, 45.564479],\n            [9.226176, 45.559982],\n            [9.221679, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.564479],\n            [9.221679, 45.568975],\n            [9.226176, 45.568975],\n            [9.226176, 45.564479],\n            [9.221679, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.568975],\n            [9.221679, 45.573472],\n            [9.226176, 45.573472],\n            [9.226176, 45.568975],\n            [9.221679, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.573472],\n            [9.221679, 45.577968],\n            [9.226176, 45.577968],\n            [9.226176, 45.573472],\n            [9.221679, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.577968],\n            [9.221679, 45.582465],\n            [9.226176, 45.582465],\n            [9.226176, 45.577968],\n            [9.221679, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.582465],\n            [9.221679, 45.586962],\n            [9.226176, 45.586962],\n            [9.226176, 45.582465],\n            [9.221679, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.586962],\n            [9.221679, 45.591458],\n            [9.226176, 45.591458],\n            [9.226176, 45.586962],\n            [9.221679, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.591458],\n            [9.221679, 45.595955],\n            [9.226176, 45.595955],\n            [9.226176, 45.591458],\n            [9.221679, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.595955],\n            [9.221679, 45.600451],\n            [9.226176, 45.600451],\n            [9.226176, 45.595955],\n            [9.221679, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.600451],\n            [9.221679, 45.604948],\n            [9.226176, 45.604948],\n            [9.226176, 45.600451],\n            [9.221679, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.604948],\n            [9.221679, 45.609445],\n            [9.226176, 45.609445],\n            [9.226176, 45.604948],\n            [9.221679, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.609445],\n            [9.221679, 45.613941],\n            [9.226176, 45.613941],\n            [9.226176, 45.609445],\n            [9.221679, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.613941],\n            [9.221679, 45.618438],\n            [9.226176, 45.618438],\n            [9.226176, 45.613941],\n            [9.221679, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.618438],\n            [9.221679, 45.622934],\n            [9.226176, 45.622934],\n            [9.226176, 45.618438],\n            [9.221679, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.622934],\n            [9.221679, 45.627431],\n            [9.226176, 45.627431],\n            [9.226176, 45.622934],\n            [9.221679, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.627431],\n            [9.221679, 45.631928],\n            [9.226176, 45.631928],\n            [9.226176, 45.627431],\n            [9.221679, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221679, 45.631928],\n            [9.221679, 45.636424],\n            [9.226176, 45.636424],\n            [9.226176, 45.631928],\n            [9.221679, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.339648],\n            [9.226176, 45.344145],\n            [9.230672, 45.344145],\n            [9.230672, 45.339648],\n            [9.226176, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.344145],\n            [9.226176, 45.348642],\n            [9.230672, 45.348642],\n            [9.230672, 45.344145],\n            [9.226176, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.348642],\n            [9.226176, 45.353138],\n            [9.230672, 45.353138],\n            [9.230672, 45.348642],\n            [9.226176, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.353138],\n            [9.226176, 45.357635],\n            [9.230672, 45.357635],\n            [9.230672, 45.353138],\n            [9.226176, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.357635],\n            [9.226176, 45.362131],\n            [9.230672, 45.362131],\n            [9.230672, 45.357635],\n            [9.226176, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.362131],\n            [9.226176, 45.366628],\n            [9.230672, 45.366628],\n            [9.230672, 45.362131],\n            [9.226176, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.366628],\n            [9.226176, 45.371125],\n            [9.230672, 45.371125],\n            [9.230672, 45.366628],\n            [9.226176, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.371125],\n            [9.226176, 45.375621],\n            [9.230672, 45.375621],\n            [9.230672, 45.371125],\n            [9.226176, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.375621],\n            [9.226176, 45.380118],\n            [9.230672, 45.380118],\n            [9.230672, 45.375621],\n            [9.226176, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.380118],\n            [9.226176, 45.384614],\n            [9.230672, 45.384614],\n            [9.230672, 45.380118],\n            [9.226176, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.384614],\n            [9.226176, 45.389111],\n            [9.230672, 45.389111],\n            [9.230672, 45.384614],\n            [9.226176, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.389111],\n            [9.226176, 45.393608],\n            [9.230672, 45.393608],\n            [9.230672, 45.389111],\n            [9.226176, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.393608],\n            [9.226176, 45.398104],\n            [9.230672, 45.398104],\n            [9.230672, 45.393608],\n            [9.226176, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.398104],\n            [9.226176, 45.402601],\n            [9.230672, 45.402601],\n            [9.230672, 45.398104],\n            [9.226176, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.402601],\n            [9.226176, 45.407097],\n            [9.230672, 45.407097],\n            [9.230672, 45.402601],\n            [9.226176, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.407097],\n            [9.226176, 45.411594],\n            [9.230672, 45.411594],\n            [9.230672, 45.407097],\n            [9.226176, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.411594],\n            [9.226176, 45.416091],\n            [9.230672, 45.416091],\n            [9.230672, 45.411594],\n            [9.226176, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.416091],\n            [9.226176, 45.420587],\n            [9.230672, 45.420587],\n            [9.230672, 45.416091],\n            [9.226176, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.420587],\n            [9.226176, 45.425084],\n            [9.230672, 45.425084],\n            [9.230672, 45.420587],\n            [9.226176, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.425084],\n            [9.226176, 45.42958],\n            [9.230672, 45.42958],\n            [9.230672, 45.425084],\n            [9.226176, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.42958],\n            [9.226176, 45.434077],\n            [9.230672, 45.434077],\n            [9.230672, 45.42958],\n            [9.226176, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.434077],\n            [9.226176, 45.438574],\n            [9.230672, 45.438574],\n            [9.230672, 45.434077],\n            [9.226176, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.438574],\n            [9.226176, 45.44307],\n            [9.230672, 45.44307],\n            [9.230672, 45.438574],\n            [9.226176, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.44307],\n            [9.226176, 45.447567],\n            [9.230672, 45.447567],\n            [9.230672, 45.44307],\n            [9.226176, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.447567],\n            [9.226176, 45.452063],\n            [9.230672, 45.452063],\n            [9.230672, 45.447567],\n            [9.226176, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.452063],\n            [9.226176, 45.45656],\n            [9.230672, 45.45656],\n            [9.230672, 45.452063],\n            [9.226176, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.45656],\n            [9.226176, 45.461057],\n            [9.230672, 45.461057],\n            [9.230672, 45.45656],\n            [9.226176, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.461057],\n            [9.226176, 45.465553],\n            [9.230672, 45.465553],\n            [9.230672, 45.461057],\n            [9.226176, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.465553],\n            [9.226176, 45.47005],\n            [9.230672, 45.47005],\n            [9.230672, 45.465553],\n            [9.226176, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.47005],\n            [9.226176, 45.474547],\n            [9.230672, 45.474547],\n            [9.230672, 45.47005],\n            [9.226176, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.474547],\n            [9.226176, 45.479043],\n            [9.230672, 45.479043],\n            [9.230672, 45.474547],\n            [9.226176, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.479043],\n            [9.226176, 45.48354],\n            [9.230672, 45.48354],\n            [9.230672, 45.479043],\n            [9.226176, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.48354],\n            [9.226176, 45.488036],\n            [9.230672, 45.488036],\n            [9.230672, 45.48354],\n            [9.226176, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.488036],\n            [9.226176, 45.492533],\n            [9.230672, 45.492533],\n            [9.230672, 45.488036],\n            [9.226176, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.492533],\n            [9.226176, 45.49703],\n            [9.230672, 45.49703],\n            [9.230672, 45.492533],\n            [9.226176, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.49703],\n            [9.226176, 45.501526],\n            [9.230672, 45.501526],\n            [9.230672, 45.49703],\n            [9.226176, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.501526],\n            [9.226176, 45.506023],\n            [9.230672, 45.506023],\n            [9.230672, 45.501526],\n            [9.226176, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.506023],\n            [9.226176, 45.510519],\n            [9.230672, 45.510519],\n            [9.230672, 45.506023],\n            [9.226176, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.510519],\n            [9.226176, 45.515016],\n            [9.230672, 45.515016],\n            [9.230672, 45.510519],\n            [9.226176, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.515016],\n            [9.226176, 45.519513],\n            [9.230672, 45.519513],\n            [9.230672, 45.515016],\n            [9.226176, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.519513],\n            [9.226176, 45.524009],\n            [9.230672, 45.524009],\n            [9.230672, 45.519513],\n            [9.226176, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.524009],\n            [9.226176, 45.528506],\n            [9.230672, 45.528506],\n            [9.230672, 45.524009],\n            [9.226176, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.528506],\n            [9.226176, 45.533002],\n            [9.230672, 45.533002],\n            [9.230672, 45.528506],\n            [9.226176, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.533002],\n            [9.226176, 45.537499],\n            [9.230672, 45.537499],\n            [9.230672, 45.533002],\n            [9.226176, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.537499],\n            [9.226176, 45.541996],\n            [9.230672, 45.541996],\n            [9.230672, 45.537499],\n            [9.226176, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.541996],\n            [9.226176, 45.546492],\n            [9.230672, 45.546492],\n            [9.230672, 45.541996],\n            [9.226176, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0587ff\",\n        \"fill\": \"#0587ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.546492],\n            [9.226176, 45.550989],\n            [9.230672, 45.550989],\n            [9.230672, 45.546492],\n            [9.226176, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.550989],\n            [9.226176, 45.555485],\n            [9.230672, 45.555485],\n            [9.230672, 45.550989],\n            [9.226176, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.555485],\n            [9.226176, 45.559982],\n            [9.230672, 45.559982],\n            [9.230672, 45.555485],\n            [9.226176, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.559982],\n            [9.226176, 45.564479],\n            [9.230672, 45.564479],\n            [9.230672, 45.559982],\n            [9.226176, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.564479],\n            [9.226176, 45.568975],\n            [9.230672, 45.568975],\n            [9.230672, 45.564479],\n            [9.226176, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.568975],\n            [9.226176, 45.573472],\n            [9.230672, 45.573472],\n            [9.230672, 45.568975],\n            [9.226176, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.573472],\n            [9.226176, 45.577968],\n            [9.230672, 45.577968],\n            [9.230672, 45.573472],\n            [9.226176, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.577968],\n            [9.226176, 45.582465],\n            [9.230672, 45.582465],\n            [9.230672, 45.577968],\n            [9.226176, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.582465],\n            [9.226176, 45.586962],\n            [9.230672, 45.586962],\n            [9.230672, 45.582465],\n            [9.226176, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.586962],\n            [9.226176, 45.591458],\n            [9.230672, 45.591458],\n            [9.230672, 45.586962],\n            [9.226176, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.591458],\n            [9.226176, 45.595955],\n            [9.230672, 45.595955],\n            [9.230672, 45.591458],\n            [9.226176, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.595955],\n            [9.226176, 45.600451],\n            [9.230672, 45.600451],\n            [9.230672, 45.595955],\n            [9.226176, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.600451],\n            [9.226176, 45.604948],\n            [9.230672, 45.604948],\n            [9.230672, 45.600451],\n            [9.226176, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.604948],\n            [9.226176, 45.609445],\n            [9.230672, 45.609445],\n            [9.230672, 45.604948],\n            [9.226176, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.609445],\n            [9.226176, 45.613941],\n            [9.230672, 45.613941],\n            [9.230672, 45.609445],\n            [9.226176, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.613941],\n            [9.226176, 45.618438],\n            [9.230672, 45.618438],\n            [9.230672, 45.613941],\n            [9.226176, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.618438],\n            [9.226176, 45.622934],\n            [9.230672, 45.622934],\n            [9.230672, 45.618438],\n            [9.226176, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.622934],\n            [9.226176, 45.627431],\n            [9.230672, 45.627431],\n            [9.230672, 45.622934],\n            [9.226176, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.627431],\n            [9.226176, 45.631928],\n            [9.230672, 45.631928],\n            [9.230672, 45.627431],\n            [9.226176, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.226176, 45.631928],\n            [9.226176, 45.636424],\n            [9.230672, 45.636424],\n            [9.230672, 45.631928],\n            [9.226176, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.339648],\n            [9.230672, 45.344145],\n            [9.235169, 45.344145],\n            [9.235169, 45.339648],\n            [9.230672, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.344145],\n            [9.230672, 45.348642],\n            [9.235169, 45.348642],\n            [9.235169, 45.344145],\n            [9.230672, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.348642],\n            [9.230672, 45.353138],\n            [9.235169, 45.353138],\n            [9.235169, 45.348642],\n            [9.230672, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.353138],\n            [9.230672, 45.357635],\n            [9.235169, 45.357635],\n            [9.235169, 45.353138],\n            [9.230672, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.357635],\n            [9.230672, 45.362131],\n            [9.235169, 45.362131],\n            [9.235169, 45.357635],\n            [9.230672, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.362131],\n            [9.230672, 45.366628],\n            [9.235169, 45.366628],\n            [9.235169, 45.362131],\n            [9.230672, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.366628],\n            [9.230672, 45.371125],\n            [9.235169, 45.371125],\n            [9.235169, 45.366628],\n            [9.230672, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.371125],\n            [9.230672, 45.375621],\n            [9.235169, 45.375621],\n            [9.235169, 45.371125],\n            [9.230672, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.375621],\n            [9.230672, 45.380118],\n            [9.235169, 45.380118],\n            [9.235169, 45.375621],\n            [9.230672, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.380118],\n            [9.230672, 45.384614],\n            [9.235169, 45.384614],\n            [9.235169, 45.380118],\n            [9.230672, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.384614],\n            [9.230672, 45.389111],\n            [9.235169, 45.389111],\n            [9.235169, 45.384614],\n            [9.230672, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.389111],\n            [9.230672, 45.393608],\n            [9.235169, 45.393608],\n            [9.235169, 45.389111],\n            [9.230672, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.393608],\n            [9.230672, 45.398104],\n            [9.235169, 45.398104],\n            [9.235169, 45.393608],\n            [9.230672, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.398104],\n            [9.230672, 45.402601],\n            [9.235169, 45.402601],\n            [9.235169, 45.398104],\n            [9.230672, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.402601],\n            [9.230672, 45.407097],\n            [9.235169, 45.407097],\n            [9.235169, 45.402601],\n            [9.230672, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.407097],\n            [9.230672, 45.411594],\n            [9.235169, 45.411594],\n            [9.235169, 45.407097],\n            [9.230672, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.411594],\n            [9.230672, 45.416091],\n            [9.235169, 45.416091],\n            [9.235169, 45.411594],\n            [9.230672, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.416091],\n            [9.230672, 45.420587],\n            [9.235169, 45.420587],\n            [9.235169, 45.416091],\n            [9.230672, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.420587],\n            [9.230672, 45.425084],\n            [9.235169, 45.425084],\n            [9.235169, 45.420587],\n            [9.230672, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.425084],\n            [9.230672, 45.42958],\n            [9.235169, 45.42958],\n            [9.235169, 45.425084],\n            [9.230672, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.42958],\n            [9.230672, 45.434077],\n            [9.235169, 45.434077],\n            [9.235169, 45.42958],\n            [9.230672, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.434077],\n            [9.230672, 45.438574],\n            [9.235169, 45.438574],\n            [9.235169, 45.434077],\n            [9.230672, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.438574],\n            [9.230672, 45.44307],\n            [9.235169, 45.44307],\n            [9.235169, 45.438574],\n            [9.230672, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.44307],\n            [9.230672, 45.447567],\n            [9.235169, 45.447567],\n            [9.235169, 45.44307],\n            [9.230672, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.447567],\n            [9.230672, 45.452063],\n            [9.235169, 45.452063],\n            [9.235169, 45.447567],\n            [9.230672, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.452063],\n            [9.230672, 45.45656],\n            [9.235169, 45.45656],\n            [9.235169, 45.452063],\n            [9.230672, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.45656],\n            [9.230672, 45.461057],\n            [9.235169, 45.461057],\n            [9.235169, 45.45656],\n            [9.230672, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.461057],\n            [9.230672, 45.465553],\n            [9.235169, 45.465553],\n            [9.235169, 45.461057],\n            [9.230672, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.465553],\n            [9.230672, 45.47005],\n            [9.235169, 45.47005],\n            [9.235169, 45.465553],\n            [9.230672, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.47005],\n            [9.230672, 45.474547],\n            [9.235169, 45.474547],\n            [9.235169, 45.47005],\n            [9.230672, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.474547],\n            [9.230672, 45.479043],\n            [9.235169, 45.479043],\n            [9.235169, 45.474547],\n            [9.230672, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.479043],\n            [9.230672, 45.48354],\n            [9.235169, 45.48354],\n            [9.235169, 45.479043],\n            [9.230672, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.48354],\n            [9.230672, 45.488036],\n            [9.235169, 45.488036],\n            [9.235169, 45.48354],\n            [9.230672, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 16,\n        \"stroke\": \"#cce7ff\",\n        \"fill\": \"#cce7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.488036],\n            [9.230672, 45.492533],\n            [9.235169, 45.492533],\n            [9.235169, 45.488036],\n            [9.230672, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.492533],\n            [9.230672, 45.49703],\n            [9.235169, 45.49703],\n            [9.235169, 45.492533],\n            [9.230672, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.49703],\n            [9.230672, 45.501526],\n            [9.235169, 45.501526],\n            [9.235169, 45.49703],\n            [9.230672, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.501526],\n            [9.230672, 45.506023],\n            [9.235169, 45.506023],\n            [9.235169, 45.501526],\n            [9.230672, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.506023],\n            [9.230672, 45.510519],\n            [9.235169, 45.510519],\n            [9.235169, 45.506023],\n            [9.230672, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.510519],\n            [9.230672, 45.515016],\n            [9.235169, 45.515016],\n            [9.235169, 45.510519],\n            [9.230672, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.515016],\n            [9.230672, 45.519513],\n            [9.235169, 45.519513],\n            [9.235169, 45.515016],\n            [9.230672, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.519513],\n            [9.230672, 45.524009],\n            [9.235169, 45.524009],\n            [9.235169, 45.519513],\n            [9.230672, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.524009],\n            [9.230672, 45.528506],\n            [9.235169, 45.528506],\n            [9.235169, 45.524009],\n            [9.230672, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.528506],\n            [9.230672, 45.533002],\n            [9.235169, 45.533002],\n            [9.235169, 45.528506],\n            [9.230672, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.533002],\n            [9.230672, 45.537499],\n            [9.235169, 45.537499],\n            [9.235169, 45.533002],\n            [9.230672, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.537499],\n            [9.230672, 45.541996],\n            [9.235169, 45.541996],\n            [9.235169, 45.537499],\n            [9.230672, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.541996],\n            [9.230672, 45.546492],\n            [9.235169, 45.546492],\n            [9.235169, 45.541996],\n            [9.230672, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.546492],\n            [9.230672, 45.550989],\n            [9.235169, 45.550989],\n            [9.235169, 45.546492],\n            [9.230672, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.550989],\n            [9.230672, 45.555485],\n            [9.235169, 45.555485],\n            [9.235169, 45.550989],\n            [9.230672, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.555485],\n            [9.230672, 45.559982],\n            [9.235169, 45.559982],\n            [9.235169, 45.555485],\n            [9.230672, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.559982],\n            [9.230672, 45.564479],\n            [9.235169, 45.564479],\n            [9.235169, 45.559982],\n            [9.230672, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.564479],\n            [9.230672, 45.568975],\n            [9.235169, 45.568975],\n            [9.235169, 45.564479],\n            [9.230672, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.568975],\n            [9.230672, 45.573472],\n            [9.235169, 45.573472],\n            [9.235169, 45.568975],\n            [9.230672, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.573472],\n            [9.230672, 45.577968],\n            [9.235169, 45.577968],\n            [9.235169, 45.573472],\n            [9.230672, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.577968],\n            [9.230672, 45.582465],\n            [9.235169, 45.582465],\n            [9.235169, 45.577968],\n            [9.230672, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.582465],\n            [9.230672, 45.586962],\n            [9.235169, 45.586962],\n            [9.235169, 45.582465],\n            [9.230672, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.586962],\n            [9.230672, 45.591458],\n            [9.235169, 45.591458],\n            [9.235169, 45.586962],\n            [9.230672, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.591458],\n            [9.230672, 45.595955],\n            [9.235169, 45.595955],\n            [9.235169, 45.591458],\n            [9.230672, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.595955],\n            [9.230672, 45.600451],\n            [9.235169, 45.600451],\n            [9.235169, 45.595955],\n            [9.230672, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.600451],\n            [9.230672, 45.604948],\n            [9.235169, 45.604948],\n            [9.235169, 45.600451],\n            [9.230672, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.604948],\n            [9.230672, 45.609445],\n            [9.235169, 45.609445],\n            [9.235169, 45.604948],\n            [9.230672, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.609445],\n            [9.230672, 45.613941],\n            [9.235169, 45.613941],\n            [9.235169, 45.609445],\n            [9.230672, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.613941],\n            [9.230672, 45.618438],\n            [9.235169, 45.618438],\n            [9.235169, 45.613941],\n            [9.230672, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.618438],\n            [9.230672, 45.622934],\n            [9.235169, 45.622934],\n            [9.235169, 45.618438],\n            [9.230672, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.622934],\n            [9.230672, 45.627431],\n            [9.235169, 45.627431],\n            [9.235169, 45.622934],\n            [9.230672, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.627431],\n            [9.230672, 45.631928],\n            [9.235169, 45.631928],\n            [9.235169, 45.627431],\n            [9.230672, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.230672, 45.631928],\n            [9.230672, 45.636424],\n            [9.235169, 45.636424],\n            [9.235169, 45.631928],\n            [9.230672, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.339648],\n            [9.235169, 45.344145],\n            [9.239665, 45.344145],\n            [9.239665, 45.339648],\n            [9.235169, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.344145],\n            [9.235169, 45.348642],\n            [9.239665, 45.348642],\n            [9.239665, 45.344145],\n            [9.235169, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.348642],\n            [9.235169, 45.353138],\n            [9.239665, 45.353138],\n            [9.239665, 45.348642],\n            [9.235169, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.353138],\n            [9.235169, 45.357635],\n            [9.239665, 45.357635],\n            [9.239665, 45.353138],\n            [9.235169, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.357635],\n            [9.235169, 45.362131],\n            [9.239665, 45.362131],\n            [9.239665, 45.357635],\n            [9.235169, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.362131],\n            [9.235169, 45.366628],\n            [9.239665, 45.366628],\n            [9.239665, 45.362131],\n            [9.235169, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.366628],\n            [9.235169, 45.371125],\n            [9.239665, 45.371125],\n            [9.239665, 45.366628],\n            [9.235169, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.371125],\n            [9.235169, 45.375621],\n            [9.239665, 45.375621],\n            [9.239665, 45.371125],\n            [9.235169, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.375621],\n            [9.235169, 45.380118],\n            [9.239665, 45.380118],\n            [9.239665, 45.375621],\n            [9.235169, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.380118],\n            [9.235169, 45.384614],\n            [9.239665, 45.384614],\n            [9.239665, 45.380118],\n            [9.235169, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.384614],\n            [9.235169, 45.389111],\n            [9.239665, 45.389111],\n            [9.239665, 45.384614],\n            [9.235169, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.389111],\n            [9.235169, 45.393608],\n            [9.239665, 45.393608],\n            [9.239665, 45.389111],\n            [9.235169, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.393608],\n            [9.235169, 45.398104],\n            [9.239665, 45.398104],\n            [9.239665, 45.393608],\n            [9.235169, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.398104],\n            [9.235169, 45.402601],\n            [9.239665, 45.402601],\n            [9.239665, 45.398104],\n            [9.235169, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.402601],\n            [9.235169, 45.407097],\n            [9.239665, 45.407097],\n            [9.239665, 45.402601],\n            [9.235169, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.407097],\n            [9.235169, 45.411594],\n            [9.239665, 45.411594],\n            [9.239665, 45.407097],\n            [9.235169, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.411594],\n            [9.235169, 45.416091],\n            [9.239665, 45.416091],\n            [9.239665, 45.411594],\n            [9.235169, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.416091],\n            [9.235169, 45.420587],\n            [9.239665, 45.420587],\n            [9.239665, 45.416091],\n            [9.235169, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.420587],\n            [9.235169, 45.425084],\n            [9.239665, 45.425084],\n            [9.239665, 45.420587],\n            [9.235169, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.425084],\n            [9.235169, 45.42958],\n            [9.239665, 45.42958],\n            [9.239665, 45.425084],\n            [9.235169, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.42958],\n            [9.235169, 45.434077],\n            [9.239665, 45.434077],\n            [9.239665, 45.42958],\n            [9.235169, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.434077],\n            [9.235169, 45.438574],\n            [9.239665, 45.438574],\n            [9.239665, 45.434077],\n            [9.235169, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.438574],\n            [9.235169, 45.44307],\n            [9.239665, 45.44307],\n            [9.239665, 45.438574],\n            [9.235169, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.44307],\n            [9.235169, 45.447567],\n            [9.239665, 45.447567],\n            [9.239665, 45.44307],\n            [9.235169, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.447567],\n            [9.235169, 45.452063],\n            [9.239665, 45.452063],\n            [9.239665, 45.447567],\n            [9.235169, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.452063],\n            [9.235169, 45.45656],\n            [9.239665, 45.45656],\n            [9.239665, 45.452063],\n            [9.235169, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.45656],\n            [9.235169, 45.461057],\n            [9.239665, 45.461057],\n            [9.239665, 45.45656],\n            [9.235169, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.461057],\n            [9.235169, 45.465553],\n            [9.239665, 45.465553],\n            [9.239665, 45.461057],\n            [9.235169, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.465553],\n            [9.235169, 45.47005],\n            [9.239665, 45.47005],\n            [9.239665, 45.465553],\n            [9.235169, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.47005],\n            [9.235169, 45.474547],\n            [9.239665, 45.474547],\n            [9.239665, 45.47005],\n            [9.235169, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.474547],\n            [9.235169, 45.479043],\n            [9.239665, 45.479043],\n            [9.239665, 45.474547],\n            [9.235169, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.479043],\n            [9.235169, 45.48354],\n            [9.239665, 45.48354],\n            [9.239665, 45.479043],\n            [9.235169, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.48354],\n            [9.235169, 45.488036],\n            [9.239665, 45.488036],\n            [9.239665, 45.48354],\n            [9.235169, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.488036],\n            [9.235169, 45.492533],\n            [9.239665, 45.492533],\n            [9.239665, 45.488036],\n            [9.235169, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.492533],\n            [9.235169, 45.49703],\n            [9.239665, 45.49703],\n            [9.239665, 45.492533],\n            [9.235169, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.49703],\n            [9.235169, 45.501526],\n            [9.239665, 45.501526],\n            [9.239665, 45.49703],\n            [9.235169, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.501526],\n            [9.235169, 45.506023],\n            [9.239665, 45.506023],\n            [9.239665, 45.501526],\n            [9.235169, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.506023],\n            [9.235169, 45.510519],\n            [9.239665, 45.510519],\n            [9.239665, 45.506023],\n            [9.235169, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.510519],\n            [9.235169, 45.515016],\n            [9.239665, 45.515016],\n            [9.239665, 45.510519],\n            [9.235169, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.515016],\n            [9.235169, 45.519513],\n            [9.239665, 45.519513],\n            [9.239665, 45.515016],\n            [9.235169, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.519513],\n            [9.235169, 45.524009],\n            [9.239665, 45.524009],\n            [9.239665, 45.519513],\n            [9.235169, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.524009],\n            [9.235169, 45.528506],\n            [9.239665, 45.528506],\n            [9.239665, 45.524009],\n            [9.235169, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.528506],\n            [9.235169, 45.533002],\n            [9.239665, 45.533002],\n            [9.239665, 45.528506],\n            [9.235169, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.533002],\n            [9.235169, 45.537499],\n            [9.239665, 45.537499],\n            [9.239665, 45.533002],\n            [9.235169, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.537499],\n            [9.235169, 45.541996],\n            [9.239665, 45.541996],\n            [9.239665, 45.537499],\n            [9.235169, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.541996],\n            [9.235169, 45.546492],\n            [9.239665, 45.546492],\n            [9.239665, 45.541996],\n            [9.235169, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.546492],\n            [9.235169, 45.550989],\n            [9.239665, 45.550989],\n            [9.239665, 45.546492],\n            [9.235169, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.550989],\n            [9.235169, 45.555485],\n            [9.239665, 45.555485],\n            [9.239665, 45.550989],\n            [9.235169, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.555485],\n            [9.235169, 45.559982],\n            [9.239665, 45.559982],\n            [9.239665, 45.555485],\n            [9.235169, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.559982],\n            [9.235169, 45.564479],\n            [9.239665, 45.564479],\n            [9.239665, 45.559982],\n            [9.235169, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.564479],\n            [9.235169, 45.568975],\n            [9.239665, 45.568975],\n            [9.239665, 45.564479],\n            [9.235169, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.568975],\n            [9.235169, 45.573472],\n            [9.239665, 45.573472],\n            [9.239665, 45.568975],\n            [9.235169, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.573472],\n            [9.235169, 45.577968],\n            [9.239665, 45.577968],\n            [9.239665, 45.573472],\n            [9.235169, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.577968],\n            [9.235169, 45.582465],\n            [9.239665, 45.582465],\n            [9.239665, 45.577968],\n            [9.235169, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.582465],\n            [9.235169, 45.586962],\n            [9.239665, 45.586962],\n            [9.239665, 45.582465],\n            [9.235169, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.586962],\n            [9.235169, 45.591458],\n            [9.239665, 45.591458],\n            [9.239665, 45.586962],\n            [9.235169, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.591458],\n            [9.235169, 45.595955],\n            [9.239665, 45.595955],\n            [9.239665, 45.591458],\n            [9.235169, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.595955],\n            [9.235169, 45.600451],\n            [9.239665, 45.600451],\n            [9.239665, 45.595955],\n            [9.235169, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.600451],\n            [9.235169, 45.604948],\n            [9.239665, 45.604948],\n            [9.239665, 45.600451],\n            [9.235169, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.604948],\n            [9.235169, 45.609445],\n            [9.239665, 45.609445],\n            [9.239665, 45.604948],\n            [9.235169, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.609445],\n            [9.235169, 45.613941],\n            [9.239665, 45.613941],\n            [9.239665, 45.609445],\n            [9.235169, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.613941],\n            [9.235169, 45.618438],\n            [9.239665, 45.618438],\n            [9.239665, 45.613941],\n            [9.235169, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.618438],\n            [9.235169, 45.622934],\n            [9.239665, 45.622934],\n            [9.239665, 45.618438],\n            [9.235169, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.622934],\n            [9.235169, 45.627431],\n            [9.239665, 45.627431],\n            [9.239665, 45.622934],\n            [9.235169, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.627431],\n            [9.235169, 45.631928],\n            [9.239665, 45.631928],\n            [9.239665, 45.627431],\n            [9.235169, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.235169, 45.631928],\n            [9.235169, 45.636424],\n            [9.239665, 45.636424],\n            [9.239665, 45.631928],\n            [9.235169, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.339648],\n            [9.239665, 45.344145],\n            [9.244162, 45.344145],\n            [9.244162, 45.339648],\n            [9.239665, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.344145],\n            [9.239665, 45.348642],\n            [9.244162, 45.348642],\n            [9.244162, 45.344145],\n            [9.239665, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.348642],\n            [9.239665, 45.353138],\n            [9.244162, 45.353138],\n            [9.244162, 45.348642],\n            [9.239665, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.353138],\n            [9.239665, 45.357635],\n            [9.244162, 45.357635],\n            [9.244162, 45.353138],\n            [9.239665, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.357635],\n            [9.239665, 45.362131],\n            [9.244162, 45.362131],\n            [9.244162, 45.357635],\n            [9.239665, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.362131],\n            [9.239665, 45.366628],\n            [9.244162, 45.366628],\n            [9.244162, 45.362131],\n            [9.239665, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.366628],\n            [9.239665, 45.371125],\n            [9.244162, 45.371125],\n            [9.244162, 45.366628],\n            [9.239665, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.371125],\n            [9.239665, 45.375621],\n            [9.244162, 45.375621],\n            [9.244162, 45.371125],\n            [9.239665, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.375621],\n            [9.239665, 45.380118],\n            [9.244162, 45.380118],\n            [9.244162, 45.375621],\n            [9.239665, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.380118],\n            [9.239665, 45.384614],\n            [9.244162, 45.384614],\n            [9.244162, 45.380118],\n            [9.239665, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.384614],\n            [9.239665, 45.389111],\n            [9.244162, 45.389111],\n            [9.244162, 45.384614],\n            [9.239665, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.389111],\n            [9.239665, 45.393608],\n            [9.244162, 45.393608],\n            [9.244162, 45.389111],\n            [9.239665, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.393608],\n            [9.239665, 45.398104],\n            [9.244162, 45.398104],\n            [9.244162, 45.393608],\n            [9.239665, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.398104],\n            [9.239665, 45.402601],\n            [9.244162, 45.402601],\n            [9.244162, 45.398104],\n            [9.239665, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.402601],\n            [9.239665, 45.407097],\n            [9.244162, 45.407097],\n            [9.244162, 45.402601],\n            [9.239665, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.407097],\n            [9.239665, 45.411594],\n            [9.244162, 45.411594],\n            [9.244162, 45.407097],\n            [9.239665, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.411594],\n            [9.239665, 45.416091],\n            [9.244162, 45.416091],\n            [9.244162, 45.411594],\n            [9.239665, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.416091],\n            [9.239665, 45.420587],\n            [9.244162, 45.420587],\n            [9.244162, 45.416091],\n            [9.239665, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.420587],\n            [9.239665, 45.425084],\n            [9.244162, 45.425084],\n            [9.244162, 45.420587],\n            [9.239665, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.425084],\n            [9.239665, 45.42958],\n            [9.244162, 45.42958],\n            [9.244162, 45.425084],\n            [9.239665, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.42958],\n            [9.239665, 45.434077],\n            [9.244162, 45.434077],\n            [9.244162, 45.42958],\n            [9.239665, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.434077],\n            [9.239665, 45.438574],\n            [9.244162, 45.438574],\n            [9.244162, 45.434077],\n            [9.239665, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.438574],\n            [9.239665, 45.44307],\n            [9.244162, 45.44307],\n            [9.244162, 45.438574],\n            [9.239665, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.44307],\n            [9.239665, 45.447567],\n            [9.244162, 45.447567],\n            [9.244162, 45.44307],\n            [9.239665, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.447567],\n            [9.239665, 45.452063],\n            [9.244162, 45.452063],\n            [9.244162, 45.447567],\n            [9.239665, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.452063],\n            [9.239665, 45.45656],\n            [9.244162, 45.45656],\n            [9.244162, 45.452063],\n            [9.239665, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.45656],\n            [9.239665, 45.461057],\n            [9.244162, 45.461057],\n            [9.244162, 45.45656],\n            [9.239665, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.461057],\n            [9.239665, 45.465553],\n            [9.244162, 45.465553],\n            [9.244162, 45.461057],\n            [9.239665, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.465553],\n            [9.239665, 45.47005],\n            [9.244162, 45.47005],\n            [9.244162, 45.465553],\n            [9.239665, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.47005],\n            [9.239665, 45.474547],\n            [9.244162, 45.474547],\n            [9.244162, 45.47005],\n            [9.239665, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.474547],\n            [9.239665, 45.479043],\n            [9.244162, 45.479043],\n            [9.244162, 45.474547],\n            [9.239665, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.479043],\n            [9.239665, 45.48354],\n            [9.244162, 45.48354],\n            [9.244162, 45.479043],\n            [9.239665, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.48354],\n            [9.239665, 45.488036],\n            [9.244162, 45.488036],\n            [9.244162, 45.48354],\n            [9.239665, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.488036],\n            [9.239665, 45.492533],\n            [9.244162, 45.492533],\n            [9.244162, 45.488036],\n            [9.239665, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#99ceff\",\n        \"fill\": \"#99ceff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.492533],\n            [9.239665, 45.49703],\n            [9.244162, 45.49703],\n            [9.244162, 45.492533],\n            [9.239665, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.49703],\n            [9.239665, 45.501526],\n            [9.244162, 45.501526],\n            [9.244162, 45.49703],\n            [9.239665, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.501526],\n            [9.239665, 45.506023],\n            [9.244162, 45.506023],\n            [9.244162, 45.501526],\n            [9.239665, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.506023],\n            [9.239665, 45.510519],\n            [9.244162, 45.510519],\n            [9.244162, 45.506023],\n            [9.239665, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.510519],\n            [9.239665, 45.515016],\n            [9.244162, 45.515016],\n            [9.244162, 45.510519],\n            [9.239665, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.515016],\n            [9.239665, 45.519513],\n            [9.244162, 45.519513],\n            [9.244162, 45.515016],\n            [9.239665, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.519513],\n            [9.239665, 45.524009],\n            [9.244162, 45.524009],\n            [9.244162, 45.519513],\n            [9.239665, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.524009],\n            [9.239665, 45.528506],\n            [9.244162, 45.528506],\n            [9.244162, 45.524009],\n            [9.239665, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.528506],\n            [9.239665, 45.533002],\n            [9.244162, 45.533002],\n            [9.244162, 45.528506],\n            [9.239665, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.533002],\n            [9.239665, 45.537499],\n            [9.244162, 45.537499],\n            [9.244162, 45.533002],\n            [9.239665, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.537499],\n            [9.239665, 45.541996],\n            [9.244162, 45.541996],\n            [9.244162, 45.537499],\n            [9.239665, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.541996],\n            [9.239665, 45.546492],\n            [9.244162, 45.546492],\n            [9.244162, 45.541996],\n            [9.239665, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.546492],\n            [9.239665, 45.550989],\n            [9.244162, 45.550989],\n            [9.244162, 45.546492],\n            [9.239665, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.550989],\n            [9.239665, 45.555485],\n            [9.244162, 45.555485],\n            [9.244162, 45.550989],\n            [9.239665, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.555485],\n            [9.239665, 45.559982],\n            [9.244162, 45.559982],\n            [9.244162, 45.555485],\n            [9.239665, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.559982],\n            [9.239665, 45.564479],\n            [9.244162, 45.564479],\n            [9.244162, 45.559982],\n            [9.239665, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.564479],\n            [9.239665, 45.568975],\n            [9.244162, 45.568975],\n            [9.244162, 45.564479],\n            [9.239665, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.568975],\n            [9.239665, 45.573472],\n            [9.244162, 45.573472],\n            [9.244162, 45.568975],\n            [9.239665, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.573472],\n            [9.239665, 45.577968],\n            [9.244162, 45.577968],\n            [9.244162, 45.573472],\n            [9.239665, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.577968],\n            [9.239665, 45.582465],\n            [9.244162, 45.582465],\n            [9.244162, 45.577968],\n            [9.239665, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.582465],\n            [9.239665, 45.586962],\n            [9.244162, 45.586962],\n            [9.244162, 45.582465],\n            [9.239665, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.586962],\n            [9.239665, 45.591458],\n            [9.244162, 45.591458],\n            [9.244162, 45.586962],\n            [9.239665, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.591458],\n            [9.239665, 45.595955],\n            [9.244162, 45.595955],\n            [9.244162, 45.591458],\n            [9.239665, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.595955],\n            [9.239665, 45.600451],\n            [9.244162, 45.600451],\n            [9.244162, 45.595955],\n            [9.239665, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.600451],\n            [9.239665, 45.604948],\n            [9.244162, 45.604948],\n            [9.244162, 45.600451],\n            [9.239665, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.604948],\n            [9.239665, 45.609445],\n            [9.244162, 45.609445],\n            [9.244162, 45.604948],\n            [9.239665, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.609445],\n            [9.239665, 45.613941],\n            [9.244162, 45.613941],\n            [9.244162, 45.609445],\n            [9.239665, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.613941],\n            [9.239665, 45.618438],\n            [9.244162, 45.618438],\n            [9.244162, 45.613941],\n            [9.239665, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.618438],\n            [9.239665, 45.622934],\n            [9.244162, 45.622934],\n            [9.244162, 45.618438],\n            [9.239665, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.622934],\n            [9.239665, 45.627431],\n            [9.244162, 45.627431],\n            [9.244162, 45.622934],\n            [9.239665, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.627431],\n            [9.239665, 45.631928],\n            [9.244162, 45.631928],\n            [9.244162, 45.627431],\n            [9.239665, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.239665, 45.631928],\n            [9.239665, 45.636424],\n            [9.244162, 45.636424],\n            [9.244162, 45.631928],\n            [9.239665, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.339648],\n            [9.244162, 45.344145],\n            [9.248659, 45.344145],\n            [9.248659, 45.339648],\n            [9.244162, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.344145],\n            [9.244162, 45.348642],\n            [9.248659, 45.348642],\n            [9.248659, 45.344145],\n            [9.244162, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.348642],\n            [9.244162, 45.353138],\n            [9.248659, 45.353138],\n            [9.248659, 45.348642],\n            [9.244162, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.353138],\n            [9.244162, 45.357635],\n            [9.248659, 45.357635],\n            [9.248659, 45.353138],\n            [9.244162, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.357635],\n            [9.244162, 45.362131],\n            [9.248659, 45.362131],\n            [9.248659, 45.357635],\n            [9.244162, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.362131],\n            [9.244162, 45.366628],\n            [9.248659, 45.366628],\n            [9.248659, 45.362131],\n            [9.244162, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.366628],\n            [9.244162, 45.371125],\n            [9.248659, 45.371125],\n            [9.248659, 45.366628],\n            [9.244162, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.371125],\n            [9.244162, 45.375621],\n            [9.248659, 45.375621],\n            [9.248659, 45.371125],\n            [9.244162, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.375621],\n            [9.244162, 45.380118],\n            [9.248659, 45.380118],\n            [9.248659, 45.375621],\n            [9.244162, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.380118],\n            [9.244162, 45.384614],\n            [9.248659, 45.384614],\n            [9.248659, 45.380118],\n            [9.244162, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.384614],\n            [9.244162, 45.389111],\n            [9.248659, 45.389111],\n            [9.248659, 45.384614],\n            [9.244162, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.389111],\n            [9.244162, 45.393608],\n            [9.248659, 45.393608],\n            [9.248659, 45.389111],\n            [9.244162, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.393608],\n            [9.244162, 45.398104],\n            [9.248659, 45.398104],\n            [9.248659, 45.393608],\n            [9.244162, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.398104],\n            [9.244162, 45.402601],\n            [9.248659, 45.402601],\n            [9.248659, 45.398104],\n            [9.244162, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.402601],\n            [9.244162, 45.407097],\n            [9.248659, 45.407097],\n            [9.248659, 45.402601],\n            [9.244162, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.407097],\n            [9.244162, 45.411594],\n            [9.248659, 45.411594],\n            [9.248659, 45.407097],\n            [9.244162, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.411594],\n            [9.244162, 45.416091],\n            [9.248659, 45.416091],\n            [9.248659, 45.411594],\n            [9.244162, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.416091],\n            [9.244162, 45.420587],\n            [9.248659, 45.420587],\n            [9.248659, 45.416091],\n            [9.244162, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.420587],\n            [9.244162, 45.425084],\n            [9.248659, 45.425084],\n            [9.248659, 45.420587],\n            [9.244162, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.425084],\n            [9.244162, 45.42958],\n            [9.248659, 45.42958],\n            [9.248659, 45.425084],\n            [9.244162, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.42958],\n            [9.244162, 45.434077],\n            [9.248659, 45.434077],\n            [9.248659, 45.42958],\n            [9.244162, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.434077],\n            [9.244162, 45.438574],\n            [9.248659, 45.438574],\n            [9.248659, 45.434077],\n            [9.244162, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.438574],\n            [9.244162, 45.44307],\n            [9.248659, 45.44307],\n            [9.248659, 45.438574],\n            [9.244162, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.44307],\n            [9.244162, 45.447567],\n            [9.248659, 45.447567],\n            [9.248659, 45.44307],\n            [9.244162, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.447567],\n            [9.244162, 45.452063],\n            [9.248659, 45.452063],\n            [9.248659, 45.447567],\n            [9.244162, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.452063],\n            [9.244162, 45.45656],\n            [9.248659, 45.45656],\n            [9.248659, 45.452063],\n            [9.244162, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.45656],\n            [9.244162, 45.461057],\n            [9.248659, 45.461057],\n            [9.248659, 45.45656],\n            [9.244162, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.461057],\n            [9.244162, 45.465553],\n            [9.248659, 45.465553],\n            [9.248659, 45.461057],\n            [9.244162, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.465553],\n            [9.244162, 45.47005],\n            [9.248659, 45.47005],\n            [9.248659, 45.465553],\n            [9.244162, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.47005],\n            [9.244162, 45.474547],\n            [9.248659, 45.474547],\n            [9.248659, 45.47005],\n            [9.244162, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.474547],\n            [9.244162, 45.479043],\n            [9.248659, 45.479043],\n            [9.248659, 45.474547],\n            [9.244162, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.479043],\n            [9.244162, 45.48354],\n            [9.248659, 45.48354],\n            [9.248659, 45.479043],\n            [9.244162, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.48354],\n            [9.244162, 45.488036],\n            [9.248659, 45.488036],\n            [9.248659, 45.48354],\n            [9.244162, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.488036],\n            [9.244162, 45.492533],\n            [9.248659, 45.492533],\n            [9.248659, 45.488036],\n            [9.244162, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.492533],\n            [9.244162, 45.49703],\n            [9.248659, 45.49703],\n            [9.248659, 45.492533],\n            [9.244162, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.49703],\n            [9.244162, 45.501526],\n            [9.248659, 45.501526],\n            [9.248659, 45.49703],\n            [9.244162, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.501526],\n            [9.244162, 45.506023],\n            [9.248659, 45.506023],\n            [9.248659, 45.501526],\n            [9.244162, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.506023],\n            [9.244162, 45.510519],\n            [9.248659, 45.510519],\n            [9.248659, 45.506023],\n            [9.244162, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.510519],\n            [9.244162, 45.515016],\n            [9.248659, 45.515016],\n            [9.248659, 45.510519],\n            [9.244162, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.515016],\n            [9.244162, 45.519513],\n            [9.248659, 45.519513],\n            [9.248659, 45.515016],\n            [9.244162, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.519513],\n            [9.244162, 45.524009],\n            [9.248659, 45.524009],\n            [9.248659, 45.519513],\n            [9.244162, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.524009],\n            [9.244162, 45.528506],\n            [9.248659, 45.528506],\n            [9.248659, 45.524009],\n            [9.244162, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.528506],\n            [9.244162, 45.533002],\n            [9.248659, 45.533002],\n            [9.248659, 45.528506],\n            [9.244162, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.533002],\n            [9.244162, 45.537499],\n            [9.248659, 45.537499],\n            [9.248659, 45.533002],\n            [9.244162, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.537499],\n            [9.244162, 45.541996],\n            [9.248659, 45.541996],\n            [9.248659, 45.537499],\n            [9.244162, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.541996],\n            [9.244162, 45.546492],\n            [9.248659, 45.546492],\n            [9.248659, 45.541996],\n            [9.244162, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.546492],\n            [9.244162, 45.550989],\n            [9.248659, 45.550989],\n            [9.248659, 45.546492],\n            [9.244162, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.550989],\n            [9.244162, 45.555485],\n            [9.248659, 45.555485],\n            [9.248659, 45.550989],\n            [9.244162, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.555485],\n            [9.244162, 45.559982],\n            [9.248659, 45.559982],\n            [9.248659, 45.555485],\n            [9.244162, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.559982],\n            [9.244162, 45.564479],\n            [9.248659, 45.564479],\n            [9.248659, 45.559982],\n            [9.244162, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#2496ff\",\n        \"fill\": \"#2496ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.564479],\n            [9.244162, 45.568975],\n            [9.248659, 45.568975],\n            [9.248659, 45.564479],\n            [9.244162, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.568975],\n            [9.244162, 45.573472],\n            [9.248659, 45.573472],\n            [9.248659, 45.568975],\n            [9.244162, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.573472],\n            [9.244162, 45.577968],\n            [9.248659, 45.577968],\n            [9.248659, 45.573472],\n            [9.244162, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.577968],\n            [9.244162, 45.582465],\n            [9.248659, 45.582465],\n            [9.248659, 45.577968],\n            [9.244162, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.582465],\n            [9.244162, 45.586962],\n            [9.248659, 45.586962],\n            [9.248659, 45.582465],\n            [9.244162, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.586962],\n            [9.244162, 45.591458],\n            [9.248659, 45.591458],\n            [9.248659, 45.586962],\n            [9.244162, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.591458],\n            [9.244162, 45.595955],\n            [9.248659, 45.595955],\n            [9.248659, 45.591458],\n            [9.244162, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.595955],\n            [9.244162, 45.600451],\n            [9.248659, 45.600451],\n            [9.248659, 45.595955],\n            [9.244162, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.600451],\n            [9.244162, 45.604948],\n            [9.248659, 45.604948],\n            [9.248659, 45.600451],\n            [9.244162, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.604948],\n            [9.244162, 45.609445],\n            [9.248659, 45.609445],\n            [9.248659, 45.604948],\n            [9.244162, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.609445],\n            [9.244162, 45.613941],\n            [9.248659, 45.613941],\n            [9.248659, 45.609445],\n            [9.244162, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.613941],\n            [9.244162, 45.618438],\n            [9.248659, 45.618438],\n            [9.248659, 45.613941],\n            [9.244162, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.618438],\n            [9.244162, 45.622934],\n            [9.248659, 45.622934],\n            [9.248659, 45.618438],\n            [9.244162, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.622934],\n            [9.244162, 45.627431],\n            [9.248659, 45.627431],\n            [9.248659, 45.622934],\n            [9.244162, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.627431],\n            [9.244162, 45.631928],\n            [9.248659, 45.631928],\n            [9.248659, 45.627431],\n            [9.244162, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.244162, 45.631928],\n            [9.244162, 45.636424],\n            [9.248659, 45.636424],\n            [9.248659, 45.631928],\n            [9.244162, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.339648],\n            [9.248659, 45.344145],\n            [9.253155, 45.344145],\n            [9.253155, 45.339648],\n            [9.248659, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.344145],\n            [9.248659, 45.348642],\n            [9.253155, 45.348642],\n            [9.253155, 45.344145],\n            [9.248659, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.348642],\n            [9.248659, 45.353138],\n            [9.253155, 45.353138],\n            [9.253155, 45.348642],\n            [9.248659, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.353138],\n            [9.248659, 45.357635],\n            [9.253155, 45.357635],\n            [9.253155, 45.353138],\n            [9.248659, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.357635],\n            [9.248659, 45.362131],\n            [9.253155, 45.362131],\n            [9.253155, 45.357635],\n            [9.248659, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.362131],\n            [9.248659, 45.366628],\n            [9.253155, 45.366628],\n            [9.253155, 45.362131],\n            [9.248659, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.366628],\n            [9.248659, 45.371125],\n            [9.253155, 45.371125],\n            [9.253155, 45.366628],\n            [9.248659, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.371125],\n            [9.248659, 45.375621],\n            [9.253155, 45.375621],\n            [9.253155, 45.371125],\n            [9.248659, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.375621],\n            [9.248659, 45.380118],\n            [9.253155, 45.380118],\n            [9.253155, 45.375621],\n            [9.248659, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.380118],\n            [9.248659, 45.384614],\n            [9.253155, 45.384614],\n            [9.253155, 45.380118],\n            [9.248659, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.384614],\n            [9.248659, 45.389111],\n            [9.253155, 45.389111],\n            [9.253155, 45.384614],\n            [9.248659, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.389111],\n            [9.248659, 45.393608],\n            [9.253155, 45.393608],\n            [9.253155, 45.389111],\n            [9.248659, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.393608],\n            [9.248659, 45.398104],\n            [9.253155, 45.398104],\n            [9.253155, 45.393608],\n            [9.248659, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.398104],\n            [9.248659, 45.402601],\n            [9.253155, 45.402601],\n            [9.253155, 45.398104],\n            [9.248659, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.402601],\n            [9.248659, 45.407097],\n            [9.253155, 45.407097],\n            [9.253155, 45.402601],\n            [9.248659, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.407097],\n            [9.248659, 45.411594],\n            [9.253155, 45.411594],\n            [9.253155, 45.407097],\n            [9.248659, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.411594],\n            [9.248659, 45.416091],\n            [9.253155, 45.416091],\n            [9.253155, 45.411594],\n            [9.248659, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.416091],\n            [9.248659, 45.420587],\n            [9.253155, 45.420587],\n            [9.253155, 45.416091],\n            [9.248659, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.420587],\n            [9.248659, 45.425084],\n            [9.253155, 45.425084],\n            [9.253155, 45.420587],\n            [9.248659, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.425084],\n            [9.248659, 45.42958],\n            [9.253155, 45.42958],\n            [9.253155, 45.425084],\n            [9.248659, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.42958],\n            [9.248659, 45.434077],\n            [9.253155, 45.434077],\n            [9.253155, 45.42958],\n            [9.248659, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.434077],\n            [9.248659, 45.438574],\n            [9.253155, 45.438574],\n            [9.253155, 45.434077],\n            [9.248659, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.438574],\n            [9.248659, 45.44307],\n            [9.253155, 45.44307],\n            [9.253155, 45.438574],\n            [9.248659, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.44307],\n            [9.248659, 45.447567],\n            [9.253155, 45.447567],\n            [9.253155, 45.44307],\n            [9.248659, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.447567],\n            [9.248659, 45.452063],\n            [9.253155, 45.452063],\n            [9.253155, 45.447567],\n            [9.248659, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.452063],\n            [9.248659, 45.45656],\n            [9.253155, 45.45656],\n            [9.253155, 45.452063],\n            [9.248659, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.45656],\n            [9.248659, 45.461057],\n            [9.253155, 45.461057],\n            [9.253155, 45.45656],\n            [9.248659, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.461057],\n            [9.248659, 45.465553],\n            [9.253155, 45.465553],\n            [9.253155, 45.461057],\n            [9.248659, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.465553],\n            [9.248659, 45.47005],\n            [9.253155, 45.47005],\n            [9.253155, 45.465553],\n            [9.248659, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.47005],\n            [9.248659, 45.474547],\n            [9.253155, 45.474547],\n            [9.253155, 45.47005],\n            [9.248659, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.474547],\n            [9.248659, 45.479043],\n            [9.253155, 45.479043],\n            [9.253155, 45.474547],\n            [9.248659, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.479043],\n            [9.248659, 45.48354],\n            [9.253155, 45.48354],\n            [9.253155, 45.479043],\n            [9.248659, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.48354],\n            [9.248659, 45.488036],\n            [9.253155, 45.488036],\n            [9.253155, 45.48354],\n            [9.248659, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.488036],\n            [9.248659, 45.492533],\n            [9.253155, 45.492533],\n            [9.253155, 45.488036],\n            [9.248659, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.492533],\n            [9.248659, 45.49703],\n            [9.253155, 45.49703],\n            [9.253155, 45.492533],\n            [9.248659, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.49703],\n            [9.248659, 45.501526],\n            [9.253155, 45.501526],\n            [9.253155, 45.49703],\n            [9.248659, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.501526],\n            [9.248659, 45.506023],\n            [9.253155, 45.506023],\n            [9.253155, 45.501526],\n            [9.248659, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.506023],\n            [9.248659, 45.510519],\n            [9.253155, 45.510519],\n            [9.253155, 45.506023],\n            [9.248659, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.510519],\n            [9.248659, 45.515016],\n            [9.253155, 45.515016],\n            [9.253155, 45.510519],\n            [9.248659, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.515016],\n            [9.248659, 45.519513],\n            [9.253155, 45.519513],\n            [9.253155, 45.515016],\n            [9.248659, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.519513],\n            [9.248659, 45.524009],\n            [9.253155, 45.524009],\n            [9.253155, 45.519513],\n            [9.248659, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.524009],\n            [9.248659, 45.528506],\n            [9.253155, 45.528506],\n            [9.253155, 45.524009],\n            [9.248659, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.528506],\n            [9.248659, 45.533002],\n            [9.253155, 45.533002],\n            [9.253155, 45.528506],\n            [9.248659, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.533002],\n            [9.248659, 45.537499],\n            [9.253155, 45.537499],\n            [9.253155, 45.533002],\n            [9.248659, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.537499],\n            [9.248659, 45.541996],\n            [9.253155, 45.541996],\n            [9.253155, 45.537499],\n            [9.248659, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.541996],\n            [9.248659, 45.546492],\n            [9.253155, 45.546492],\n            [9.253155, 45.541996],\n            [9.248659, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.546492],\n            [9.248659, 45.550989],\n            [9.253155, 45.550989],\n            [9.253155, 45.546492],\n            [9.248659, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.550989],\n            [9.248659, 45.555485],\n            [9.253155, 45.555485],\n            [9.253155, 45.550989],\n            [9.248659, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.555485],\n            [9.248659, 45.559982],\n            [9.253155, 45.559982],\n            [9.253155, 45.555485],\n            [9.248659, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.559982],\n            [9.248659, 45.564479],\n            [9.253155, 45.564479],\n            [9.253155, 45.559982],\n            [9.248659, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.564479],\n            [9.248659, 45.568975],\n            [9.253155, 45.568975],\n            [9.253155, 45.564479],\n            [9.248659, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.568975],\n            [9.248659, 45.573472],\n            [9.253155, 45.573472],\n            [9.253155, 45.568975],\n            [9.248659, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.573472],\n            [9.248659, 45.577968],\n            [9.253155, 45.577968],\n            [9.253155, 45.573472],\n            [9.248659, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.577968],\n            [9.248659, 45.582465],\n            [9.253155, 45.582465],\n            [9.253155, 45.577968],\n            [9.248659, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.582465],\n            [9.248659, 45.586962],\n            [9.253155, 45.586962],\n            [9.253155, 45.582465],\n            [9.248659, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.586962],\n            [9.248659, 45.591458],\n            [9.253155, 45.591458],\n            [9.253155, 45.586962],\n            [9.248659, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.591458],\n            [9.248659, 45.595955],\n            [9.253155, 45.595955],\n            [9.253155, 45.591458],\n            [9.248659, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.595955],\n            [9.248659, 45.600451],\n            [9.253155, 45.600451],\n            [9.253155, 45.595955],\n            [9.248659, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.600451],\n            [9.248659, 45.604948],\n            [9.253155, 45.604948],\n            [9.253155, 45.600451],\n            [9.248659, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.604948],\n            [9.248659, 45.609445],\n            [9.253155, 45.609445],\n            [9.253155, 45.604948],\n            [9.248659, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.609445],\n            [9.248659, 45.613941],\n            [9.253155, 45.613941],\n            [9.253155, 45.609445],\n            [9.248659, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.613941],\n            [9.248659, 45.618438],\n            [9.253155, 45.618438],\n            [9.253155, 45.613941],\n            [9.248659, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.618438],\n            [9.248659, 45.622934],\n            [9.253155, 45.622934],\n            [9.253155, 45.618438],\n            [9.248659, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.622934],\n            [9.248659, 45.627431],\n            [9.253155, 45.627431],\n            [9.253155, 45.622934],\n            [9.248659, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.627431],\n            [9.248659, 45.631928],\n            [9.253155, 45.631928],\n            [9.253155, 45.627431],\n            [9.248659, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.248659, 45.631928],\n            [9.248659, 45.636424],\n            [9.253155, 45.636424],\n            [9.253155, 45.631928],\n            [9.248659, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.339648],\n            [9.253155, 45.344145],\n            [9.257652, 45.344145],\n            [9.257652, 45.339648],\n            [9.253155, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.344145],\n            [9.253155, 45.348642],\n            [9.257652, 45.348642],\n            [9.257652, 45.344145],\n            [9.253155, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.348642],\n            [9.253155, 45.353138],\n            [9.257652, 45.353138],\n            [9.257652, 45.348642],\n            [9.253155, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.353138],\n            [9.253155, 45.357635],\n            [9.257652, 45.357635],\n            [9.257652, 45.353138],\n            [9.253155, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.357635],\n            [9.253155, 45.362131],\n            [9.257652, 45.362131],\n            [9.257652, 45.357635],\n            [9.253155, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.362131],\n            [9.253155, 45.366628],\n            [9.257652, 45.366628],\n            [9.257652, 45.362131],\n            [9.253155, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.366628],\n            [9.253155, 45.371125],\n            [9.257652, 45.371125],\n            [9.257652, 45.366628],\n            [9.253155, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.371125],\n            [9.253155, 45.375621],\n            [9.257652, 45.375621],\n            [9.257652, 45.371125],\n            [9.253155, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.375621],\n            [9.253155, 45.380118],\n            [9.257652, 45.380118],\n            [9.257652, 45.375621],\n            [9.253155, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.380118],\n            [9.253155, 45.384614],\n            [9.257652, 45.384614],\n            [9.257652, 45.380118],\n            [9.253155, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.384614],\n            [9.253155, 45.389111],\n            [9.257652, 45.389111],\n            [9.257652, 45.384614],\n            [9.253155, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.389111],\n            [9.253155, 45.393608],\n            [9.257652, 45.393608],\n            [9.257652, 45.389111],\n            [9.253155, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.393608],\n            [9.253155, 45.398104],\n            [9.257652, 45.398104],\n            [9.257652, 45.393608],\n            [9.253155, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.398104],\n            [9.253155, 45.402601],\n            [9.257652, 45.402601],\n            [9.257652, 45.398104],\n            [9.253155, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.402601],\n            [9.253155, 45.407097],\n            [9.257652, 45.407097],\n            [9.257652, 45.402601],\n            [9.253155, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.407097],\n            [9.253155, 45.411594],\n            [9.257652, 45.411594],\n            [9.257652, 45.407097],\n            [9.253155, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.411594],\n            [9.253155, 45.416091],\n            [9.257652, 45.416091],\n            [9.257652, 45.411594],\n            [9.253155, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.416091],\n            [9.253155, 45.420587],\n            [9.257652, 45.420587],\n            [9.257652, 45.416091],\n            [9.253155, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.420587],\n            [9.253155, 45.425084],\n            [9.257652, 45.425084],\n            [9.257652, 45.420587],\n            [9.253155, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.425084],\n            [9.253155, 45.42958],\n            [9.257652, 45.42958],\n            [9.257652, 45.425084],\n            [9.253155, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.42958],\n            [9.253155, 45.434077],\n            [9.257652, 45.434077],\n            [9.257652, 45.42958],\n            [9.253155, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.434077],\n            [9.253155, 45.438574],\n            [9.257652, 45.438574],\n            [9.257652, 45.434077],\n            [9.253155, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.438574],\n            [9.253155, 45.44307],\n            [9.257652, 45.44307],\n            [9.257652, 45.438574],\n            [9.253155, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.44307],\n            [9.253155, 45.447567],\n            [9.257652, 45.447567],\n            [9.257652, 45.44307],\n            [9.253155, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.447567],\n            [9.253155, 45.452063],\n            [9.257652, 45.452063],\n            [9.257652, 45.447567],\n            [9.253155, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.452063],\n            [9.253155, 45.45656],\n            [9.257652, 45.45656],\n            [9.257652, 45.452063],\n            [9.253155, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.45656],\n            [9.253155, 45.461057],\n            [9.257652, 45.461057],\n            [9.257652, 45.45656],\n            [9.253155, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.461057],\n            [9.253155, 45.465553],\n            [9.257652, 45.465553],\n            [9.257652, 45.461057],\n            [9.253155, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.465553],\n            [9.253155, 45.47005],\n            [9.257652, 45.47005],\n            [9.257652, 45.465553],\n            [9.253155, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.47005],\n            [9.253155, 45.474547],\n            [9.257652, 45.474547],\n            [9.257652, 45.47005],\n            [9.253155, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.474547],\n            [9.253155, 45.479043],\n            [9.257652, 45.479043],\n            [9.257652, 45.474547],\n            [9.253155, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.479043],\n            [9.253155, 45.48354],\n            [9.257652, 45.48354],\n            [9.257652, 45.479043],\n            [9.253155, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.48354],\n            [9.253155, 45.488036],\n            [9.257652, 45.488036],\n            [9.257652, 45.48354],\n            [9.253155, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.488036],\n            [9.253155, 45.492533],\n            [9.257652, 45.492533],\n            [9.257652, 45.488036],\n            [9.253155, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.492533],\n            [9.253155, 45.49703],\n            [9.257652, 45.49703],\n            [9.257652, 45.492533],\n            [9.253155, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.49703],\n            [9.253155, 45.501526],\n            [9.257652, 45.501526],\n            [9.257652, 45.49703],\n            [9.253155, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.501526],\n            [9.253155, 45.506023],\n            [9.257652, 45.506023],\n            [9.257652, 45.501526],\n            [9.253155, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.506023],\n            [9.253155, 45.510519],\n            [9.257652, 45.510519],\n            [9.257652, 45.506023],\n            [9.253155, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.510519],\n            [9.253155, 45.515016],\n            [9.257652, 45.515016],\n            [9.257652, 45.510519],\n            [9.253155, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.515016],\n            [9.253155, 45.519513],\n            [9.257652, 45.519513],\n            [9.257652, 45.515016],\n            [9.253155, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.519513],\n            [9.253155, 45.524009],\n            [9.257652, 45.524009],\n            [9.257652, 45.519513],\n            [9.253155, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.524009],\n            [9.253155, 45.528506],\n            [9.257652, 45.528506],\n            [9.257652, 45.524009],\n            [9.253155, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.528506],\n            [9.253155, 45.533002],\n            [9.257652, 45.533002],\n            [9.257652, 45.528506],\n            [9.253155, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.533002],\n            [9.253155, 45.537499],\n            [9.257652, 45.537499],\n            [9.257652, 45.533002],\n            [9.253155, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.537499],\n            [9.253155, 45.541996],\n            [9.257652, 45.541996],\n            [9.257652, 45.537499],\n            [9.253155, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.541996],\n            [9.253155, 45.546492],\n            [9.257652, 45.546492],\n            [9.257652, 45.541996],\n            [9.253155, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.546492],\n            [9.253155, 45.550989],\n            [9.257652, 45.550989],\n            [9.257652, 45.546492],\n            [9.253155, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.550989],\n            [9.253155, 45.555485],\n            [9.257652, 45.555485],\n            [9.257652, 45.550989],\n            [9.253155, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.555485],\n            [9.253155, 45.559982],\n            [9.257652, 45.559982],\n            [9.257652, 45.555485],\n            [9.253155, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.559982],\n            [9.253155, 45.564479],\n            [9.257652, 45.564479],\n            [9.257652, 45.559982],\n            [9.253155, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.564479],\n            [9.253155, 45.568975],\n            [9.257652, 45.568975],\n            [9.257652, 45.564479],\n            [9.253155, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.568975],\n            [9.253155, 45.573472],\n            [9.257652, 45.573472],\n            [9.257652, 45.568975],\n            [9.253155, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.573472],\n            [9.253155, 45.577968],\n            [9.257652, 45.577968],\n            [9.257652, 45.573472],\n            [9.253155, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.577968],\n            [9.253155, 45.582465],\n            [9.257652, 45.582465],\n            [9.257652, 45.577968],\n            [9.253155, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.582465],\n            [9.253155, 45.586962],\n            [9.257652, 45.586962],\n            [9.257652, 45.582465],\n            [9.253155, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.586962],\n            [9.253155, 45.591458],\n            [9.257652, 45.591458],\n            [9.257652, 45.586962],\n            [9.253155, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.591458],\n            [9.253155, 45.595955],\n            [9.257652, 45.595955],\n            [9.257652, 45.591458],\n            [9.253155, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.595955],\n            [9.253155, 45.600451],\n            [9.257652, 45.600451],\n            [9.257652, 45.595955],\n            [9.253155, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.600451],\n            [9.253155, 45.604948],\n            [9.257652, 45.604948],\n            [9.257652, 45.600451],\n            [9.253155, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.604948],\n            [9.253155, 45.609445],\n            [9.257652, 45.609445],\n            [9.257652, 45.604948],\n            [9.253155, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.609445],\n            [9.253155, 45.613941],\n            [9.257652, 45.613941],\n            [9.257652, 45.609445],\n            [9.253155, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.613941],\n            [9.253155, 45.618438],\n            [9.257652, 45.618438],\n            [9.257652, 45.613941],\n            [9.253155, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.618438],\n            [9.253155, 45.622934],\n            [9.257652, 45.622934],\n            [9.257652, 45.618438],\n            [9.253155, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.622934],\n            [9.253155, 45.627431],\n            [9.257652, 45.627431],\n            [9.257652, 45.622934],\n            [9.253155, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.627431],\n            [9.253155, 45.631928],\n            [9.257652, 45.631928],\n            [9.257652, 45.627431],\n            [9.253155, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.253155, 45.631928],\n            [9.253155, 45.636424],\n            [9.257652, 45.636424],\n            [9.257652, 45.631928],\n            [9.253155, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.339648],\n            [9.257652, 45.344145],\n            [9.262148, 45.344145],\n            [9.262148, 45.339648],\n            [9.257652, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.344145],\n            [9.257652, 45.348642],\n            [9.262148, 45.348642],\n            [9.262148, 45.344145],\n            [9.257652, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.348642],\n            [9.257652, 45.353138],\n            [9.262148, 45.353138],\n            [9.262148, 45.348642],\n            [9.257652, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.353138],\n            [9.257652, 45.357635],\n            [9.262148, 45.357635],\n            [9.262148, 45.353138],\n            [9.257652, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.357635],\n            [9.257652, 45.362131],\n            [9.262148, 45.362131],\n            [9.262148, 45.357635],\n            [9.257652, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.362131],\n            [9.257652, 45.366628],\n            [9.262148, 45.366628],\n            [9.262148, 45.362131],\n            [9.257652, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.366628],\n            [9.257652, 45.371125],\n            [9.262148, 45.371125],\n            [9.262148, 45.366628],\n            [9.257652, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.371125],\n            [9.257652, 45.375621],\n            [9.262148, 45.375621],\n            [9.262148, 45.371125],\n            [9.257652, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.375621],\n            [9.257652, 45.380118],\n            [9.262148, 45.380118],\n            [9.262148, 45.375621],\n            [9.257652, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.380118],\n            [9.257652, 45.384614],\n            [9.262148, 45.384614],\n            [9.262148, 45.380118],\n            [9.257652, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.384614],\n            [9.257652, 45.389111],\n            [9.262148, 45.389111],\n            [9.262148, 45.384614],\n            [9.257652, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.389111],\n            [9.257652, 45.393608],\n            [9.262148, 45.393608],\n            [9.262148, 45.389111],\n            [9.257652, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.393608],\n            [9.257652, 45.398104],\n            [9.262148, 45.398104],\n            [9.262148, 45.393608],\n            [9.257652, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.398104],\n            [9.257652, 45.402601],\n            [9.262148, 45.402601],\n            [9.262148, 45.398104],\n            [9.257652, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.402601],\n            [9.257652, 45.407097],\n            [9.262148, 45.407097],\n            [9.262148, 45.402601],\n            [9.257652, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.407097],\n            [9.257652, 45.411594],\n            [9.262148, 45.411594],\n            [9.262148, 45.407097],\n            [9.257652, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.411594],\n            [9.257652, 45.416091],\n            [9.262148, 45.416091],\n            [9.262148, 45.411594],\n            [9.257652, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.416091],\n            [9.257652, 45.420587],\n            [9.262148, 45.420587],\n            [9.262148, 45.416091],\n            [9.257652, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.420587],\n            [9.257652, 45.425084],\n            [9.262148, 45.425084],\n            [9.262148, 45.420587],\n            [9.257652, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.425084],\n            [9.257652, 45.42958],\n            [9.262148, 45.42958],\n            [9.262148, 45.425084],\n            [9.257652, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.42958],\n            [9.257652, 45.434077],\n            [9.262148, 45.434077],\n            [9.262148, 45.42958],\n            [9.257652, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.434077],\n            [9.257652, 45.438574],\n            [9.262148, 45.438574],\n            [9.262148, 45.434077],\n            [9.257652, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.438574],\n            [9.257652, 45.44307],\n            [9.262148, 45.44307],\n            [9.262148, 45.438574],\n            [9.257652, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.44307],\n            [9.257652, 45.447567],\n            [9.262148, 45.447567],\n            [9.262148, 45.44307],\n            [9.257652, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.447567],\n            [9.257652, 45.452063],\n            [9.262148, 45.452063],\n            [9.262148, 45.447567],\n            [9.257652, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.452063],\n            [9.257652, 45.45656],\n            [9.262148, 45.45656],\n            [9.262148, 45.452063],\n            [9.257652, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.45656],\n            [9.257652, 45.461057],\n            [9.262148, 45.461057],\n            [9.262148, 45.45656],\n            [9.257652, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.461057],\n            [9.257652, 45.465553],\n            [9.262148, 45.465553],\n            [9.262148, 45.461057],\n            [9.257652, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.465553],\n            [9.257652, 45.47005],\n            [9.262148, 45.47005],\n            [9.262148, 45.465553],\n            [9.257652, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.47005],\n            [9.257652, 45.474547],\n            [9.262148, 45.474547],\n            [9.262148, 45.47005],\n            [9.257652, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.474547],\n            [9.257652, 45.479043],\n            [9.262148, 45.479043],\n            [9.262148, 45.474547],\n            [9.257652, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.479043],\n            [9.257652, 45.48354],\n            [9.262148, 45.48354],\n            [9.262148, 45.479043],\n            [9.257652, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.48354],\n            [9.257652, 45.488036],\n            [9.262148, 45.488036],\n            [9.262148, 45.48354],\n            [9.257652, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.488036],\n            [9.257652, 45.492533],\n            [9.262148, 45.492533],\n            [9.262148, 45.488036],\n            [9.257652, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.492533],\n            [9.257652, 45.49703],\n            [9.262148, 45.49703],\n            [9.262148, 45.492533],\n            [9.257652, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.49703],\n            [9.257652, 45.501526],\n            [9.262148, 45.501526],\n            [9.262148, 45.49703],\n            [9.257652, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.501526],\n            [9.257652, 45.506023],\n            [9.262148, 45.506023],\n            [9.262148, 45.501526],\n            [9.257652, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.506023],\n            [9.257652, 45.510519],\n            [9.262148, 45.510519],\n            [9.262148, 45.506023],\n            [9.257652, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.510519],\n            [9.257652, 45.515016],\n            [9.262148, 45.515016],\n            [9.262148, 45.510519],\n            [9.257652, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.515016],\n            [9.257652, 45.519513],\n            [9.262148, 45.519513],\n            [9.262148, 45.515016],\n            [9.257652, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.519513],\n            [9.257652, 45.524009],\n            [9.262148, 45.524009],\n            [9.262148, 45.519513],\n            [9.257652, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.524009],\n            [9.257652, 45.528506],\n            [9.262148, 45.528506],\n            [9.262148, 45.524009],\n            [9.257652, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.528506],\n            [9.257652, 45.533002],\n            [9.262148, 45.533002],\n            [9.262148, 45.528506],\n            [9.257652, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.533002],\n            [9.257652, 45.537499],\n            [9.262148, 45.537499],\n            [9.262148, 45.533002],\n            [9.257652, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.537499],\n            [9.257652, 45.541996],\n            [9.262148, 45.541996],\n            [9.262148, 45.537499],\n            [9.257652, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.541996],\n            [9.257652, 45.546492],\n            [9.262148, 45.546492],\n            [9.262148, 45.541996],\n            [9.257652, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.546492],\n            [9.257652, 45.550989],\n            [9.262148, 45.550989],\n            [9.262148, 45.546492],\n            [9.257652, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.550989],\n            [9.257652, 45.555485],\n            [9.262148, 45.555485],\n            [9.262148, 45.550989],\n            [9.257652, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.555485],\n            [9.257652, 45.559982],\n            [9.262148, 45.559982],\n            [9.262148, 45.555485],\n            [9.257652, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.559982],\n            [9.257652, 45.564479],\n            [9.262148, 45.564479],\n            [9.262148, 45.559982],\n            [9.257652, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.564479],\n            [9.257652, 45.568975],\n            [9.262148, 45.568975],\n            [9.262148, 45.564479],\n            [9.257652, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#2e9bff\",\n        \"fill\": \"#2e9bff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.568975],\n            [9.257652, 45.573472],\n            [9.262148, 45.573472],\n            [9.262148, 45.568975],\n            [9.257652, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.573472],\n            [9.257652, 45.577968],\n            [9.262148, 45.577968],\n            [9.262148, 45.573472],\n            [9.257652, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.577968],\n            [9.257652, 45.582465],\n            [9.262148, 45.582465],\n            [9.262148, 45.577968],\n            [9.257652, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.582465],\n            [9.257652, 45.586962],\n            [9.262148, 45.586962],\n            [9.262148, 45.582465],\n            [9.257652, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.586962],\n            [9.257652, 45.591458],\n            [9.262148, 45.591458],\n            [9.262148, 45.586962],\n            [9.257652, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.591458],\n            [9.257652, 45.595955],\n            [9.262148, 45.595955],\n            [9.262148, 45.591458],\n            [9.257652, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.595955],\n            [9.257652, 45.600451],\n            [9.262148, 45.600451],\n            [9.262148, 45.595955],\n            [9.257652, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.600451],\n            [9.257652, 45.604948],\n            [9.262148, 45.604948],\n            [9.262148, 45.600451],\n            [9.257652, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.604948],\n            [9.257652, 45.609445],\n            [9.262148, 45.609445],\n            [9.262148, 45.604948],\n            [9.257652, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.609445],\n            [9.257652, 45.613941],\n            [9.262148, 45.613941],\n            [9.262148, 45.609445],\n            [9.257652, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.613941],\n            [9.257652, 45.618438],\n            [9.262148, 45.618438],\n            [9.262148, 45.613941],\n            [9.257652, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.618438],\n            [9.257652, 45.622934],\n            [9.262148, 45.622934],\n            [9.262148, 45.618438],\n            [9.257652, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.622934],\n            [9.257652, 45.627431],\n            [9.262148, 45.627431],\n            [9.262148, 45.622934],\n            [9.257652, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.627431],\n            [9.257652, 45.631928],\n            [9.262148, 45.631928],\n            [9.262148, 45.627431],\n            [9.257652, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.257652, 45.631928],\n            [9.257652, 45.636424],\n            [9.262148, 45.636424],\n            [9.262148, 45.631928],\n            [9.257652, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.339648],\n            [9.262148, 45.344145],\n            [9.266645, 45.344145],\n            [9.266645, 45.339648],\n            [9.262148, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.344145],\n            [9.262148, 45.348642],\n            [9.266645, 45.348642],\n            [9.266645, 45.344145],\n            [9.262148, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.348642],\n            [9.262148, 45.353138],\n            [9.266645, 45.353138],\n            [9.266645, 45.348642],\n            [9.262148, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.353138],\n            [9.262148, 45.357635],\n            [9.266645, 45.357635],\n            [9.266645, 45.353138],\n            [9.262148, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.357635],\n            [9.262148, 45.362131],\n            [9.266645, 45.362131],\n            [9.266645, 45.357635],\n            [9.262148, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.362131],\n            [9.262148, 45.366628],\n            [9.266645, 45.366628],\n            [9.266645, 45.362131],\n            [9.262148, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.366628],\n            [9.262148, 45.371125],\n            [9.266645, 45.371125],\n            [9.266645, 45.366628],\n            [9.262148, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.371125],\n            [9.262148, 45.375621],\n            [9.266645, 45.375621],\n            [9.266645, 45.371125],\n            [9.262148, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.375621],\n            [9.262148, 45.380118],\n            [9.266645, 45.380118],\n            [9.266645, 45.375621],\n            [9.262148, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.380118],\n            [9.262148, 45.384614],\n            [9.266645, 45.384614],\n            [9.266645, 45.380118],\n            [9.262148, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.384614],\n            [9.262148, 45.389111],\n            [9.266645, 45.389111],\n            [9.266645, 45.384614],\n            [9.262148, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.389111],\n            [9.262148, 45.393608],\n            [9.266645, 45.393608],\n            [9.266645, 45.389111],\n            [9.262148, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.393608],\n            [9.262148, 45.398104],\n            [9.266645, 45.398104],\n            [9.266645, 45.393608],\n            [9.262148, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.398104],\n            [9.262148, 45.402601],\n            [9.266645, 45.402601],\n            [9.266645, 45.398104],\n            [9.262148, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.402601],\n            [9.262148, 45.407097],\n            [9.266645, 45.407097],\n            [9.266645, 45.402601],\n            [9.262148, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.407097],\n            [9.262148, 45.411594],\n            [9.266645, 45.411594],\n            [9.266645, 45.407097],\n            [9.262148, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.411594],\n            [9.262148, 45.416091],\n            [9.266645, 45.416091],\n            [9.266645, 45.411594],\n            [9.262148, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.416091],\n            [9.262148, 45.420587],\n            [9.266645, 45.420587],\n            [9.266645, 45.416091],\n            [9.262148, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.420587],\n            [9.262148, 45.425084],\n            [9.266645, 45.425084],\n            [9.266645, 45.420587],\n            [9.262148, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.425084],\n            [9.262148, 45.42958],\n            [9.266645, 45.42958],\n            [9.266645, 45.425084],\n            [9.262148, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.42958],\n            [9.262148, 45.434077],\n            [9.266645, 45.434077],\n            [9.266645, 45.42958],\n            [9.262148, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.434077],\n            [9.262148, 45.438574],\n            [9.266645, 45.438574],\n            [9.266645, 45.434077],\n            [9.262148, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.438574],\n            [9.262148, 45.44307],\n            [9.266645, 45.44307],\n            [9.266645, 45.438574],\n            [9.262148, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.44307],\n            [9.262148, 45.447567],\n            [9.266645, 45.447567],\n            [9.266645, 45.44307],\n            [9.262148, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.447567],\n            [9.262148, 45.452063],\n            [9.266645, 45.452063],\n            [9.266645, 45.447567],\n            [9.262148, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.452063],\n            [9.262148, 45.45656],\n            [9.266645, 45.45656],\n            [9.266645, 45.452063],\n            [9.262148, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.45656],\n            [9.262148, 45.461057],\n            [9.266645, 45.461057],\n            [9.266645, 45.45656],\n            [9.262148, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.461057],\n            [9.262148, 45.465553],\n            [9.266645, 45.465553],\n            [9.266645, 45.461057],\n            [9.262148, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.465553],\n            [9.262148, 45.47005],\n            [9.266645, 45.47005],\n            [9.266645, 45.465553],\n            [9.262148, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.47005],\n            [9.262148, 45.474547],\n            [9.266645, 45.474547],\n            [9.266645, 45.47005],\n            [9.262148, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.474547],\n            [9.262148, 45.479043],\n            [9.266645, 45.479043],\n            [9.266645, 45.474547],\n            [9.262148, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.479043],\n            [9.262148, 45.48354],\n            [9.266645, 45.48354],\n            [9.266645, 45.479043],\n            [9.262148, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.48354],\n            [9.262148, 45.488036],\n            [9.266645, 45.488036],\n            [9.266645, 45.48354],\n            [9.262148, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.488036],\n            [9.262148, 45.492533],\n            [9.266645, 45.492533],\n            [9.266645, 45.488036],\n            [9.262148, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.492533],\n            [9.262148, 45.49703],\n            [9.266645, 45.49703],\n            [9.266645, 45.492533],\n            [9.262148, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.49703],\n            [9.262148, 45.501526],\n            [9.266645, 45.501526],\n            [9.266645, 45.49703],\n            [9.262148, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.501526],\n            [9.262148, 45.506023],\n            [9.266645, 45.506023],\n            [9.266645, 45.501526],\n            [9.262148, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.506023],\n            [9.262148, 45.510519],\n            [9.266645, 45.510519],\n            [9.266645, 45.506023],\n            [9.262148, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.510519],\n            [9.262148, 45.515016],\n            [9.266645, 45.515016],\n            [9.266645, 45.510519],\n            [9.262148, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.515016],\n            [9.262148, 45.519513],\n            [9.266645, 45.519513],\n            [9.266645, 45.515016],\n            [9.262148, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.519513],\n            [9.262148, 45.524009],\n            [9.266645, 45.524009],\n            [9.266645, 45.519513],\n            [9.262148, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.524009],\n            [9.262148, 45.528506],\n            [9.266645, 45.528506],\n            [9.266645, 45.524009],\n            [9.262148, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.528506],\n            [9.262148, 45.533002],\n            [9.266645, 45.533002],\n            [9.266645, 45.528506],\n            [9.262148, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.533002],\n            [9.262148, 45.537499],\n            [9.266645, 45.537499],\n            [9.266645, 45.533002],\n            [9.262148, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.537499],\n            [9.262148, 45.541996],\n            [9.266645, 45.541996],\n            [9.266645, 45.537499],\n            [9.262148, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.541996],\n            [9.262148, 45.546492],\n            [9.266645, 45.546492],\n            [9.266645, 45.541996],\n            [9.262148, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.546492],\n            [9.262148, 45.550989],\n            [9.266645, 45.550989],\n            [9.266645, 45.546492],\n            [9.262148, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.550989],\n            [9.262148, 45.555485],\n            [9.266645, 45.555485],\n            [9.266645, 45.550989],\n            [9.262148, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.555485],\n            [9.262148, 45.559982],\n            [9.266645, 45.559982],\n            [9.266645, 45.555485],\n            [9.262148, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.559982],\n            [9.262148, 45.564479],\n            [9.266645, 45.564479],\n            [9.266645, 45.559982],\n            [9.262148, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.564479],\n            [9.262148, 45.568975],\n            [9.266645, 45.568975],\n            [9.266645, 45.564479],\n            [9.262148, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.568975],\n            [9.262148, 45.573472],\n            [9.266645, 45.573472],\n            [9.266645, 45.568975],\n            [9.262148, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.573472],\n            [9.262148, 45.577968],\n            [9.266645, 45.577968],\n            [9.266645, 45.573472],\n            [9.262148, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.577968],\n            [9.262148, 45.582465],\n            [9.266645, 45.582465],\n            [9.266645, 45.577968],\n            [9.262148, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.582465],\n            [9.262148, 45.586962],\n            [9.266645, 45.586962],\n            [9.266645, 45.582465],\n            [9.262148, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.586962],\n            [9.262148, 45.591458],\n            [9.266645, 45.591458],\n            [9.266645, 45.586962],\n            [9.262148, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.591458],\n            [9.262148, 45.595955],\n            [9.266645, 45.595955],\n            [9.266645, 45.591458],\n            [9.262148, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.595955],\n            [9.262148, 45.600451],\n            [9.266645, 45.600451],\n            [9.266645, 45.595955],\n            [9.262148, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.600451],\n            [9.262148, 45.604948],\n            [9.266645, 45.604948],\n            [9.266645, 45.600451],\n            [9.262148, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.604948],\n            [9.262148, 45.609445],\n            [9.266645, 45.609445],\n            [9.266645, 45.604948],\n            [9.262148, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.609445],\n            [9.262148, 45.613941],\n            [9.266645, 45.613941],\n            [9.266645, 45.609445],\n            [9.262148, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.613941],\n            [9.262148, 45.618438],\n            [9.266645, 45.618438],\n            [9.266645, 45.613941],\n            [9.262148, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.618438],\n            [9.262148, 45.622934],\n            [9.266645, 45.622934],\n            [9.266645, 45.618438],\n            [9.262148, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.622934],\n            [9.262148, 45.627431],\n            [9.266645, 45.627431],\n            [9.266645, 45.622934],\n            [9.262148, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.627431],\n            [9.262148, 45.631928],\n            [9.266645, 45.631928],\n            [9.266645, 45.627431],\n            [9.262148, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.262148, 45.631928],\n            [9.262148, 45.636424],\n            [9.266645, 45.636424],\n            [9.266645, 45.631928],\n            [9.262148, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.339648],\n            [9.266645, 45.344145],\n            [9.271142, 45.344145],\n            [9.271142, 45.339648],\n            [9.266645, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.344145],\n            [9.266645, 45.348642],\n            [9.271142, 45.348642],\n            [9.271142, 45.344145],\n            [9.266645, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.348642],\n            [9.266645, 45.353138],\n            [9.271142, 45.353138],\n            [9.271142, 45.348642],\n            [9.266645, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.353138],\n            [9.266645, 45.357635],\n            [9.271142, 45.357635],\n            [9.271142, 45.353138],\n            [9.266645, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.357635],\n            [9.266645, 45.362131],\n            [9.271142, 45.362131],\n            [9.271142, 45.357635],\n            [9.266645, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.362131],\n            [9.266645, 45.366628],\n            [9.271142, 45.366628],\n            [9.271142, 45.362131],\n            [9.266645, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.366628],\n            [9.266645, 45.371125],\n            [9.271142, 45.371125],\n            [9.271142, 45.366628],\n            [9.266645, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.371125],\n            [9.266645, 45.375621],\n            [9.271142, 45.375621],\n            [9.271142, 45.371125],\n            [9.266645, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.375621],\n            [9.266645, 45.380118],\n            [9.271142, 45.380118],\n            [9.271142, 45.375621],\n            [9.266645, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.380118],\n            [9.266645, 45.384614],\n            [9.271142, 45.384614],\n            [9.271142, 45.380118],\n            [9.266645, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.384614],\n            [9.266645, 45.389111],\n            [9.271142, 45.389111],\n            [9.271142, 45.384614],\n            [9.266645, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.389111],\n            [9.266645, 45.393608],\n            [9.271142, 45.393608],\n            [9.271142, 45.389111],\n            [9.266645, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.393608],\n            [9.266645, 45.398104],\n            [9.271142, 45.398104],\n            [9.271142, 45.393608],\n            [9.266645, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.398104],\n            [9.266645, 45.402601],\n            [9.271142, 45.402601],\n            [9.271142, 45.398104],\n            [9.266645, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.402601],\n            [9.266645, 45.407097],\n            [9.271142, 45.407097],\n            [9.271142, 45.402601],\n            [9.266645, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.407097],\n            [9.266645, 45.411594],\n            [9.271142, 45.411594],\n            [9.271142, 45.407097],\n            [9.266645, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.411594],\n            [9.266645, 45.416091],\n            [9.271142, 45.416091],\n            [9.271142, 45.411594],\n            [9.266645, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.416091],\n            [9.266645, 45.420587],\n            [9.271142, 45.420587],\n            [9.271142, 45.416091],\n            [9.266645, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.420587],\n            [9.266645, 45.425084],\n            [9.271142, 45.425084],\n            [9.271142, 45.420587],\n            [9.266645, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.425084],\n            [9.266645, 45.42958],\n            [9.271142, 45.42958],\n            [9.271142, 45.425084],\n            [9.266645, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.42958],\n            [9.266645, 45.434077],\n            [9.271142, 45.434077],\n            [9.271142, 45.42958],\n            [9.266645, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.434077],\n            [9.266645, 45.438574],\n            [9.271142, 45.438574],\n            [9.271142, 45.434077],\n            [9.266645, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.438574],\n            [9.266645, 45.44307],\n            [9.271142, 45.44307],\n            [9.271142, 45.438574],\n            [9.266645, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.44307],\n            [9.266645, 45.447567],\n            [9.271142, 45.447567],\n            [9.271142, 45.44307],\n            [9.266645, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.447567],\n            [9.266645, 45.452063],\n            [9.271142, 45.452063],\n            [9.271142, 45.447567],\n            [9.266645, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.452063],\n            [9.266645, 45.45656],\n            [9.271142, 45.45656],\n            [9.271142, 45.452063],\n            [9.266645, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.45656],\n            [9.266645, 45.461057],\n            [9.271142, 45.461057],\n            [9.271142, 45.45656],\n            [9.266645, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.461057],\n            [9.266645, 45.465553],\n            [9.271142, 45.465553],\n            [9.271142, 45.461057],\n            [9.266645, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.465553],\n            [9.266645, 45.47005],\n            [9.271142, 45.47005],\n            [9.271142, 45.465553],\n            [9.266645, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.47005],\n            [9.266645, 45.474547],\n            [9.271142, 45.474547],\n            [9.271142, 45.47005],\n            [9.266645, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.474547],\n            [9.266645, 45.479043],\n            [9.271142, 45.479043],\n            [9.271142, 45.474547],\n            [9.266645, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.479043],\n            [9.266645, 45.48354],\n            [9.271142, 45.48354],\n            [9.271142, 45.479043],\n            [9.266645, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.48354],\n            [9.266645, 45.488036],\n            [9.271142, 45.488036],\n            [9.271142, 45.48354],\n            [9.266645, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.488036],\n            [9.266645, 45.492533],\n            [9.271142, 45.492533],\n            [9.271142, 45.488036],\n            [9.266645, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.492533],\n            [9.266645, 45.49703],\n            [9.271142, 45.49703],\n            [9.271142, 45.492533],\n            [9.266645, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.49703],\n            [9.266645, 45.501526],\n            [9.271142, 45.501526],\n            [9.271142, 45.49703],\n            [9.266645, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.501526],\n            [9.266645, 45.506023],\n            [9.271142, 45.506023],\n            [9.271142, 45.501526],\n            [9.266645, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.506023],\n            [9.266645, 45.510519],\n            [9.271142, 45.510519],\n            [9.271142, 45.506023],\n            [9.266645, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.510519],\n            [9.266645, 45.515016],\n            [9.271142, 45.515016],\n            [9.271142, 45.510519],\n            [9.266645, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.515016],\n            [9.266645, 45.519513],\n            [9.271142, 45.519513],\n            [9.271142, 45.515016],\n            [9.266645, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.519513],\n            [9.266645, 45.524009],\n            [9.271142, 45.524009],\n            [9.271142, 45.519513],\n            [9.266645, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.524009],\n            [9.266645, 45.528506],\n            [9.271142, 45.528506],\n            [9.271142, 45.524009],\n            [9.266645, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.528506],\n            [9.266645, 45.533002],\n            [9.271142, 45.533002],\n            [9.271142, 45.528506],\n            [9.266645, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.533002],\n            [9.266645, 45.537499],\n            [9.271142, 45.537499],\n            [9.271142, 45.533002],\n            [9.266645, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.537499],\n            [9.266645, 45.541996],\n            [9.271142, 45.541996],\n            [9.271142, 45.537499],\n            [9.266645, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.541996],\n            [9.266645, 45.546492],\n            [9.271142, 45.546492],\n            [9.271142, 45.541996],\n            [9.266645, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.546492],\n            [9.266645, 45.550989],\n            [9.271142, 45.550989],\n            [9.271142, 45.546492],\n            [9.266645, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.550989],\n            [9.266645, 45.555485],\n            [9.271142, 45.555485],\n            [9.271142, 45.550989],\n            [9.266645, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.555485],\n            [9.266645, 45.559982],\n            [9.271142, 45.559982],\n            [9.271142, 45.555485],\n            [9.266645, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.559982],\n            [9.266645, 45.564479],\n            [9.271142, 45.564479],\n            [9.271142, 45.559982],\n            [9.266645, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.564479],\n            [9.266645, 45.568975],\n            [9.271142, 45.568975],\n            [9.271142, 45.564479],\n            [9.266645, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.568975],\n            [9.266645, 45.573472],\n            [9.271142, 45.573472],\n            [9.271142, 45.568975],\n            [9.266645, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.573472],\n            [9.266645, 45.577968],\n            [9.271142, 45.577968],\n            [9.271142, 45.573472],\n            [9.266645, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.577968],\n            [9.266645, 45.582465],\n            [9.271142, 45.582465],\n            [9.271142, 45.577968],\n            [9.266645, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.582465],\n            [9.266645, 45.586962],\n            [9.271142, 45.586962],\n            [9.271142, 45.582465],\n            [9.266645, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.586962],\n            [9.266645, 45.591458],\n            [9.271142, 45.591458],\n            [9.271142, 45.586962],\n            [9.266645, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.591458],\n            [9.266645, 45.595955],\n            [9.271142, 45.595955],\n            [9.271142, 45.591458],\n            [9.266645, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.595955],\n            [9.266645, 45.600451],\n            [9.271142, 45.600451],\n            [9.271142, 45.595955],\n            [9.266645, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.600451],\n            [9.266645, 45.604948],\n            [9.271142, 45.604948],\n            [9.271142, 45.600451],\n            [9.266645, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.604948],\n            [9.266645, 45.609445],\n            [9.271142, 45.609445],\n            [9.271142, 45.604948],\n            [9.266645, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.609445],\n            [9.266645, 45.613941],\n            [9.271142, 45.613941],\n            [9.271142, 45.609445],\n            [9.266645, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.613941],\n            [9.266645, 45.618438],\n            [9.271142, 45.618438],\n            [9.271142, 45.613941],\n            [9.266645, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.618438],\n            [9.266645, 45.622934],\n            [9.271142, 45.622934],\n            [9.271142, 45.618438],\n            [9.266645, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.622934],\n            [9.266645, 45.627431],\n            [9.271142, 45.627431],\n            [9.271142, 45.622934],\n            [9.266645, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.627431],\n            [9.266645, 45.631928],\n            [9.271142, 45.631928],\n            [9.271142, 45.627431],\n            [9.266645, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.266645, 45.631928],\n            [9.266645, 45.636424],\n            [9.271142, 45.636424],\n            [9.271142, 45.631928],\n            [9.266645, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.339648],\n            [9.271142, 45.344145],\n            [9.275638, 45.344145],\n            [9.275638, 45.339648],\n            [9.271142, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.344145],\n            [9.271142, 45.348642],\n            [9.275638, 45.348642],\n            [9.275638, 45.344145],\n            [9.271142, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.348642],\n            [9.271142, 45.353138],\n            [9.275638, 45.353138],\n            [9.275638, 45.348642],\n            [9.271142, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.353138],\n            [9.271142, 45.357635],\n            [9.275638, 45.357635],\n            [9.275638, 45.353138],\n            [9.271142, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.357635],\n            [9.271142, 45.362131],\n            [9.275638, 45.362131],\n            [9.275638, 45.357635],\n            [9.271142, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.362131],\n            [9.271142, 45.366628],\n            [9.275638, 45.366628],\n            [9.275638, 45.362131],\n            [9.271142, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.366628],\n            [9.271142, 45.371125],\n            [9.275638, 45.371125],\n            [9.275638, 45.366628],\n            [9.271142, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.371125],\n            [9.271142, 45.375621],\n            [9.275638, 45.375621],\n            [9.275638, 45.371125],\n            [9.271142, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.375621],\n            [9.271142, 45.380118],\n            [9.275638, 45.380118],\n            [9.275638, 45.375621],\n            [9.271142, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.380118],\n            [9.271142, 45.384614],\n            [9.275638, 45.384614],\n            [9.275638, 45.380118],\n            [9.271142, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.384614],\n            [9.271142, 45.389111],\n            [9.275638, 45.389111],\n            [9.275638, 45.384614],\n            [9.271142, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.389111],\n            [9.271142, 45.393608],\n            [9.275638, 45.393608],\n            [9.275638, 45.389111],\n            [9.271142, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.393608],\n            [9.271142, 45.398104],\n            [9.275638, 45.398104],\n            [9.275638, 45.393608],\n            [9.271142, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.398104],\n            [9.271142, 45.402601],\n            [9.275638, 45.402601],\n            [9.275638, 45.398104],\n            [9.271142, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.402601],\n            [9.271142, 45.407097],\n            [9.275638, 45.407097],\n            [9.275638, 45.402601],\n            [9.271142, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.407097],\n            [9.271142, 45.411594],\n            [9.275638, 45.411594],\n            [9.275638, 45.407097],\n            [9.271142, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.411594],\n            [9.271142, 45.416091],\n            [9.275638, 45.416091],\n            [9.275638, 45.411594],\n            [9.271142, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.416091],\n            [9.271142, 45.420587],\n            [9.275638, 45.420587],\n            [9.275638, 45.416091],\n            [9.271142, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.420587],\n            [9.271142, 45.425084],\n            [9.275638, 45.425084],\n            [9.275638, 45.420587],\n            [9.271142, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.425084],\n            [9.271142, 45.42958],\n            [9.275638, 45.42958],\n            [9.275638, 45.425084],\n            [9.271142, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.42958],\n            [9.271142, 45.434077],\n            [9.275638, 45.434077],\n            [9.275638, 45.42958],\n            [9.271142, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.434077],\n            [9.271142, 45.438574],\n            [9.275638, 45.438574],\n            [9.275638, 45.434077],\n            [9.271142, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.438574],\n            [9.271142, 45.44307],\n            [9.275638, 45.44307],\n            [9.275638, 45.438574],\n            [9.271142, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.44307],\n            [9.271142, 45.447567],\n            [9.275638, 45.447567],\n            [9.275638, 45.44307],\n            [9.271142, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.447567],\n            [9.271142, 45.452063],\n            [9.275638, 45.452063],\n            [9.275638, 45.447567],\n            [9.271142, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.452063],\n            [9.271142, 45.45656],\n            [9.275638, 45.45656],\n            [9.275638, 45.452063],\n            [9.271142, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.45656],\n            [9.271142, 45.461057],\n            [9.275638, 45.461057],\n            [9.275638, 45.45656],\n            [9.271142, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.461057],\n            [9.271142, 45.465553],\n            [9.275638, 45.465553],\n            [9.275638, 45.461057],\n            [9.271142, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.465553],\n            [9.271142, 45.47005],\n            [9.275638, 45.47005],\n            [9.275638, 45.465553],\n            [9.271142, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.47005],\n            [9.271142, 45.474547],\n            [9.275638, 45.474547],\n            [9.275638, 45.47005],\n            [9.271142, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.474547],\n            [9.271142, 45.479043],\n            [9.275638, 45.479043],\n            [9.275638, 45.474547],\n            [9.271142, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.479043],\n            [9.271142, 45.48354],\n            [9.275638, 45.48354],\n            [9.275638, 45.479043],\n            [9.271142, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.48354],\n            [9.271142, 45.488036],\n            [9.275638, 45.488036],\n            [9.275638, 45.48354],\n            [9.271142, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.488036],\n            [9.271142, 45.492533],\n            [9.275638, 45.492533],\n            [9.275638, 45.488036],\n            [9.271142, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.492533],\n            [9.271142, 45.49703],\n            [9.275638, 45.49703],\n            [9.275638, 45.492533],\n            [9.271142, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.49703],\n            [9.271142, 45.501526],\n            [9.275638, 45.501526],\n            [9.275638, 45.49703],\n            [9.271142, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.501526],\n            [9.271142, 45.506023],\n            [9.275638, 45.506023],\n            [9.275638, 45.501526],\n            [9.271142, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.506023],\n            [9.271142, 45.510519],\n            [9.275638, 45.510519],\n            [9.275638, 45.506023],\n            [9.271142, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.510519],\n            [9.271142, 45.515016],\n            [9.275638, 45.515016],\n            [9.275638, 45.510519],\n            [9.271142, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.515016],\n            [9.271142, 45.519513],\n            [9.275638, 45.519513],\n            [9.275638, 45.515016],\n            [9.271142, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.519513],\n            [9.271142, 45.524009],\n            [9.275638, 45.524009],\n            [9.275638, 45.519513],\n            [9.271142, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.524009],\n            [9.271142, 45.528506],\n            [9.275638, 45.528506],\n            [9.275638, 45.524009],\n            [9.271142, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.528506],\n            [9.271142, 45.533002],\n            [9.275638, 45.533002],\n            [9.275638, 45.528506],\n            [9.271142, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.533002],\n            [9.271142, 45.537499],\n            [9.275638, 45.537499],\n            [9.275638, 45.533002],\n            [9.271142, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.537499],\n            [9.271142, 45.541996],\n            [9.275638, 45.541996],\n            [9.275638, 45.537499],\n            [9.271142, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.541996],\n            [9.271142, 45.546492],\n            [9.275638, 45.546492],\n            [9.275638, 45.541996],\n            [9.271142, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.546492],\n            [9.271142, 45.550989],\n            [9.275638, 45.550989],\n            [9.275638, 45.546492],\n            [9.271142, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.550989],\n            [9.271142, 45.555485],\n            [9.275638, 45.555485],\n            [9.275638, 45.550989],\n            [9.271142, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.555485],\n            [9.271142, 45.559982],\n            [9.275638, 45.559982],\n            [9.275638, 45.555485],\n            [9.271142, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.559982],\n            [9.271142, 45.564479],\n            [9.275638, 45.564479],\n            [9.275638, 45.559982],\n            [9.271142, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.564479],\n            [9.271142, 45.568975],\n            [9.275638, 45.568975],\n            [9.275638, 45.564479],\n            [9.271142, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.568975],\n            [9.271142, 45.573472],\n            [9.275638, 45.573472],\n            [9.275638, 45.568975],\n            [9.271142, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.573472],\n            [9.271142, 45.577968],\n            [9.275638, 45.577968],\n            [9.275638, 45.573472],\n            [9.271142, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.577968],\n            [9.271142, 45.582465],\n            [9.275638, 45.582465],\n            [9.275638, 45.577968],\n            [9.271142, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.582465],\n            [9.271142, 45.586962],\n            [9.275638, 45.586962],\n            [9.275638, 45.582465],\n            [9.271142, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.586962],\n            [9.271142, 45.591458],\n            [9.275638, 45.591458],\n            [9.275638, 45.586962],\n            [9.271142, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.591458],\n            [9.271142, 45.595955],\n            [9.275638, 45.595955],\n            [9.275638, 45.591458],\n            [9.271142, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.595955],\n            [9.271142, 45.600451],\n            [9.275638, 45.600451],\n            [9.275638, 45.595955],\n            [9.271142, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.600451],\n            [9.271142, 45.604948],\n            [9.275638, 45.604948],\n            [9.275638, 45.600451],\n            [9.271142, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.604948],\n            [9.271142, 45.609445],\n            [9.275638, 45.609445],\n            [9.275638, 45.604948],\n            [9.271142, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.609445],\n            [9.271142, 45.613941],\n            [9.275638, 45.613941],\n            [9.275638, 45.609445],\n            [9.271142, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.613941],\n            [9.271142, 45.618438],\n            [9.275638, 45.618438],\n            [9.275638, 45.613941],\n            [9.271142, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.618438],\n            [9.271142, 45.622934],\n            [9.275638, 45.622934],\n            [9.275638, 45.618438],\n            [9.271142, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.622934],\n            [9.271142, 45.627431],\n            [9.275638, 45.627431],\n            [9.275638, 45.622934],\n            [9.271142, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.627431],\n            [9.271142, 45.631928],\n            [9.275638, 45.631928],\n            [9.275638, 45.627431],\n            [9.271142, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.271142, 45.631928],\n            [9.271142, 45.636424],\n            [9.275638, 45.636424],\n            [9.275638, 45.631928],\n            [9.271142, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.339648],\n            [9.275638, 45.344145],\n            [9.280135, 45.344145],\n            [9.280135, 45.339648],\n            [9.275638, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.344145],\n            [9.275638, 45.348642],\n            [9.280135, 45.348642],\n            [9.280135, 45.344145],\n            [9.275638, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.348642],\n            [9.275638, 45.353138],\n            [9.280135, 45.353138],\n            [9.280135, 45.348642],\n            [9.275638, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.353138],\n            [9.275638, 45.357635],\n            [9.280135, 45.357635],\n            [9.280135, 45.353138],\n            [9.275638, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.357635],\n            [9.275638, 45.362131],\n            [9.280135, 45.362131],\n            [9.280135, 45.357635],\n            [9.275638, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.362131],\n            [9.275638, 45.366628],\n            [9.280135, 45.366628],\n            [9.280135, 45.362131],\n            [9.275638, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.366628],\n            [9.275638, 45.371125],\n            [9.280135, 45.371125],\n            [9.280135, 45.366628],\n            [9.275638, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.371125],\n            [9.275638, 45.375621],\n            [9.280135, 45.375621],\n            [9.280135, 45.371125],\n            [9.275638, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.375621],\n            [9.275638, 45.380118],\n            [9.280135, 45.380118],\n            [9.280135, 45.375621],\n            [9.275638, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.380118],\n            [9.275638, 45.384614],\n            [9.280135, 45.384614],\n            [9.280135, 45.380118],\n            [9.275638, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.384614],\n            [9.275638, 45.389111],\n            [9.280135, 45.389111],\n            [9.280135, 45.384614],\n            [9.275638, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.389111],\n            [9.275638, 45.393608],\n            [9.280135, 45.393608],\n            [9.280135, 45.389111],\n            [9.275638, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.393608],\n            [9.275638, 45.398104],\n            [9.280135, 45.398104],\n            [9.280135, 45.393608],\n            [9.275638, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.398104],\n            [9.275638, 45.402601],\n            [9.280135, 45.402601],\n            [9.280135, 45.398104],\n            [9.275638, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.402601],\n            [9.275638, 45.407097],\n            [9.280135, 45.407097],\n            [9.280135, 45.402601],\n            [9.275638, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.407097],\n            [9.275638, 45.411594],\n            [9.280135, 45.411594],\n            [9.280135, 45.407097],\n            [9.275638, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.411594],\n            [9.275638, 45.416091],\n            [9.280135, 45.416091],\n            [9.280135, 45.411594],\n            [9.275638, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.416091],\n            [9.275638, 45.420587],\n            [9.280135, 45.420587],\n            [9.280135, 45.416091],\n            [9.275638, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.420587],\n            [9.275638, 45.425084],\n            [9.280135, 45.425084],\n            [9.280135, 45.420587],\n            [9.275638, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.425084],\n            [9.275638, 45.42958],\n            [9.280135, 45.42958],\n            [9.280135, 45.425084],\n            [9.275638, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.42958],\n            [9.275638, 45.434077],\n            [9.280135, 45.434077],\n            [9.280135, 45.42958],\n            [9.275638, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.434077],\n            [9.275638, 45.438574],\n            [9.280135, 45.438574],\n            [9.280135, 45.434077],\n            [9.275638, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.438574],\n            [9.275638, 45.44307],\n            [9.280135, 45.44307],\n            [9.280135, 45.438574],\n            [9.275638, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.44307],\n            [9.275638, 45.447567],\n            [9.280135, 45.447567],\n            [9.280135, 45.44307],\n            [9.275638, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.447567],\n            [9.275638, 45.452063],\n            [9.280135, 45.452063],\n            [9.280135, 45.447567],\n            [9.275638, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.452063],\n            [9.275638, 45.45656],\n            [9.280135, 45.45656],\n            [9.280135, 45.452063],\n            [9.275638, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.45656],\n            [9.275638, 45.461057],\n            [9.280135, 45.461057],\n            [9.280135, 45.45656],\n            [9.275638, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.461057],\n            [9.275638, 45.465553],\n            [9.280135, 45.465553],\n            [9.280135, 45.461057],\n            [9.275638, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.465553],\n            [9.275638, 45.47005],\n            [9.280135, 45.47005],\n            [9.280135, 45.465553],\n            [9.275638, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.47005],\n            [9.275638, 45.474547],\n            [9.280135, 45.474547],\n            [9.280135, 45.47005],\n            [9.275638, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.474547],\n            [9.275638, 45.479043],\n            [9.280135, 45.479043],\n            [9.280135, 45.474547],\n            [9.275638, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.479043],\n            [9.275638, 45.48354],\n            [9.280135, 45.48354],\n            [9.280135, 45.479043],\n            [9.275638, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.48354],\n            [9.275638, 45.488036],\n            [9.280135, 45.488036],\n            [9.280135, 45.48354],\n            [9.275638, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.488036],\n            [9.275638, 45.492533],\n            [9.280135, 45.492533],\n            [9.280135, 45.488036],\n            [9.275638, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.492533],\n            [9.275638, 45.49703],\n            [9.280135, 45.49703],\n            [9.280135, 45.492533],\n            [9.275638, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.49703],\n            [9.275638, 45.501526],\n            [9.280135, 45.501526],\n            [9.280135, 45.49703],\n            [9.275638, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.501526],\n            [9.275638, 45.506023],\n            [9.280135, 45.506023],\n            [9.280135, 45.501526],\n            [9.275638, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.506023],\n            [9.275638, 45.510519],\n            [9.280135, 45.510519],\n            [9.280135, 45.506023],\n            [9.275638, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.510519],\n            [9.275638, 45.515016],\n            [9.280135, 45.515016],\n            [9.280135, 45.510519],\n            [9.275638, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.515016],\n            [9.275638, 45.519513],\n            [9.280135, 45.519513],\n            [9.280135, 45.515016],\n            [9.275638, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.519513],\n            [9.275638, 45.524009],\n            [9.280135, 45.524009],\n            [9.280135, 45.519513],\n            [9.275638, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.524009],\n            [9.275638, 45.528506],\n            [9.280135, 45.528506],\n            [9.280135, 45.524009],\n            [9.275638, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.528506],\n            [9.275638, 45.533002],\n            [9.280135, 45.533002],\n            [9.280135, 45.528506],\n            [9.275638, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.533002],\n            [9.275638, 45.537499],\n            [9.280135, 45.537499],\n            [9.280135, 45.533002],\n            [9.275638, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.537499],\n            [9.275638, 45.541996],\n            [9.280135, 45.541996],\n            [9.280135, 45.537499],\n            [9.275638, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.541996],\n            [9.275638, 45.546492],\n            [9.280135, 45.546492],\n            [9.280135, 45.541996],\n            [9.275638, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.546492],\n            [9.275638, 45.550989],\n            [9.280135, 45.550989],\n            [9.280135, 45.546492],\n            [9.275638, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.550989],\n            [9.275638, 45.555485],\n            [9.280135, 45.555485],\n            [9.280135, 45.550989],\n            [9.275638, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.555485],\n            [9.275638, 45.559982],\n            [9.280135, 45.559982],\n            [9.280135, 45.555485],\n            [9.275638, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.559982],\n            [9.275638, 45.564479],\n            [9.280135, 45.564479],\n            [9.280135, 45.559982],\n            [9.275638, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.564479],\n            [9.275638, 45.568975],\n            [9.280135, 45.568975],\n            [9.280135, 45.564479],\n            [9.275638, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.568975],\n            [9.275638, 45.573472],\n            [9.280135, 45.573472],\n            [9.280135, 45.568975],\n            [9.275638, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.573472],\n            [9.275638, 45.577968],\n            [9.280135, 45.577968],\n            [9.280135, 45.573472],\n            [9.275638, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.577968],\n            [9.275638, 45.582465],\n            [9.280135, 45.582465],\n            [9.280135, 45.577968],\n            [9.275638, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.582465],\n            [9.275638, 45.586962],\n            [9.280135, 45.586962],\n            [9.280135, 45.582465],\n            [9.275638, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.586962],\n            [9.275638, 45.591458],\n            [9.280135, 45.591458],\n            [9.280135, 45.586962],\n            [9.275638, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.591458],\n            [9.275638, 45.595955],\n            [9.280135, 45.595955],\n            [9.280135, 45.591458],\n            [9.275638, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.595955],\n            [9.275638, 45.600451],\n            [9.280135, 45.600451],\n            [9.280135, 45.595955],\n            [9.275638, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.600451],\n            [9.275638, 45.604948],\n            [9.280135, 45.604948],\n            [9.280135, 45.600451],\n            [9.275638, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.604948],\n            [9.275638, 45.609445],\n            [9.280135, 45.609445],\n            [9.280135, 45.604948],\n            [9.275638, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.609445],\n            [9.275638, 45.613941],\n            [9.280135, 45.613941],\n            [9.280135, 45.609445],\n            [9.275638, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.613941],\n            [9.275638, 45.618438],\n            [9.280135, 45.618438],\n            [9.280135, 45.613941],\n            [9.275638, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.618438],\n            [9.275638, 45.622934],\n            [9.280135, 45.622934],\n            [9.280135, 45.618438],\n            [9.275638, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.622934],\n            [9.275638, 45.627431],\n            [9.280135, 45.627431],\n            [9.280135, 45.622934],\n            [9.275638, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.627431],\n            [9.275638, 45.631928],\n            [9.280135, 45.631928],\n            [9.280135, 45.627431],\n            [9.275638, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.275638, 45.631928],\n            [9.275638, 45.636424],\n            [9.280135, 45.636424],\n            [9.280135, 45.631928],\n            [9.275638, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.339648],\n            [9.280135, 45.344145],\n            [9.284631, 45.344145],\n            [9.284631, 45.339648],\n            [9.280135, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.344145],\n            [9.280135, 45.348642],\n            [9.284631, 45.348642],\n            [9.284631, 45.344145],\n            [9.280135, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.348642],\n            [9.280135, 45.353138],\n            [9.284631, 45.353138],\n            [9.284631, 45.348642],\n            [9.280135, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.353138],\n            [9.280135, 45.357635],\n            [9.284631, 45.357635],\n            [9.284631, 45.353138],\n            [9.280135, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.357635],\n            [9.280135, 45.362131],\n            [9.284631, 45.362131],\n            [9.284631, 45.357635],\n            [9.280135, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.362131],\n            [9.280135, 45.366628],\n            [9.284631, 45.366628],\n            [9.284631, 45.362131],\n            [9.280135, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.366628],\n            [9.280135, 45.371125],\n            [9.284631, 45.371125],\n            [9.284631, 45.366628],\n            [9.280135, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.371125],\n            [9.280135, 45.375621],\n            [9.284631, 45.375621],\n            [9.284631, 45.371125],\n            [9.280135, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.375621],\n            [9.280135, 45.380118],\n            [9.284631, 45.380118],\n            [9.284631, 45.375621],\n            [9.280135, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.380118],\n            [9.280135, 45.384614],\n            [9.284631, 45.384614],\n            [9.284631, 45.380118],\n            [9.280135, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.384614],\n            [9.280135, 45.389111],\n            [9.284631, 45.389111],\n            [9.284631, 45.384614],\n            [9.280135, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.389111],\n            [9.280135, 45.393608],\n            [9.284631, 45.393608],\n            [9.284631, 45.389111],\n            [9.280135, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.393608],\n            [9.280135, 45.398104],\n            [9.284631, 45.398104],\n            [9.284631, 45.393608],\n            [9.280135, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.398104],\n            [9.280135, 45.402601],\n            [9.284631, 45.402601],\n            [9.284631, 45.398104],\n            [9.280135, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.402601],\n            [9.280135, 45.407097],\n            [9.284631, 45.407097],\n            [9.284631, 45.402601],\n            [9.280135, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.407097],\n            [9.280135, 45.411594],\n            [9.284631, 45.411594],\n            [9.284631, 45.407097],\n            [9.280135, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.411594],\n            [9.280135, 45.416091],\n            [9.284631, 45.416091],\n            [9.284631, 45.411594],\n            [9.280135, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.416091],\n            [9.280135, 45.420587],\n            [9.284631, 45.420587],\n            [9.284631, 45.416091],\n            [9.280135, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.420587],\n            [9.280135, 45.425084],\n            [9.284631, 45.425084],\n            [9.284631, 45.420587],\n            [9.280135, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.425084],\n            [9.280135, 45.42958],\n            [9.284631, 45.42958],\n            [9.284631, 45.425084],\n            [9.280135, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.42958],\n            [9.280135, 45.434077],\n            [9.284631, 45.434077],\n            [9.284631, 45.42958],\n            [9.280135, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.434077],\n            [9.280135, 45.438574],\n            [9.284631, 45.438574],\n            [9.284631, 45.434077],\n            [9.280135, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.438574],\n            [9.280135, 45.44307],\n            [9.284631, 45.44307],\n            [9.284631, 45.438574],\n            [9.280135, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.44307],\n            [9.280135, 45.447567],\n            [9.284631, 45.447567],\n            [9.284631, 45.44307],\n            [9.280135, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.447567],\n            [9.280135, 45.452063],\n            [9.284631, 45.452063],\n            [9.284631, 45.447567],\n            [9.280135, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.452063],\n            [9.280135, 45.45656],\n            [9.284631, 45.45656],\n            [9.284631, 45.452063],\n            [9.280135, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.45656],\n            [9.280135, 45.461057],\n            [9.284631, 45.461057],\n            [9.284631, 45.45656],\n            [9.280135, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.461057],\n            [9.280135, 45.465553],\n            [9.284631, 45.465553],\n            [9.284631, 45.461057],\n            [9.280135, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.465553],\n            [9.280135, 45.47005],\n            [9.284631, 45.47005],\n            [9.284631, 45.465553],\n            [9.280135, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.47005],\n            [9.280135, 45.474547],\n            [9.284631, 45.474547],\n            [9.284631, 45.47005],\n            [9.280135, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.474547],\n            [9.280135, 45.479043],\n            [9.284631, 45.479043],\n            [9.284631, 45.474547],\n            [9.280135, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.479043],\n            [9.280135, 45.48354],\n            [9.284631, 45.48354],\n            [9.284631, 45.479043],\n            [9.280135, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.48354],\n            [9.280135, 45.488036],\n            [9.284631, 45.488036],\n            [9.284631, 45.48354],\n            [9.280135, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.488036],\n            [9.280135, 45.492533],\n            [9.284631, 45.492533],\n            [9.284631, 45.488036],\n            [9.280135, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.492533],\n            [9.280135, 45.49703],\n            [9.284631, 45.49703],\n            [9.284631, 45.492533],\n            [9.280135, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.49703],\n            [9.280135, 45.501526],\n            [9.284631, 45.501526],\n            [9.284631, 45.49703],\n            [9.280135, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.501526],\n            [9.280135, 45.506023],\n            [9.284631, 45.506023],\n            [9.284631, 45.501526],\n            [9.280135, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.506023],\n            [9.280135, 45.510519],\n            [9.284631, 45.510519],\n            [9.284631, 45.506023],\n            [9.280135, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.510519],\n            [9.280135, 45.515016],\n            [9.284631, 45.515016],\n            [9.284631, 45.510519],\n            [9.280135, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.515016],\n            [9.280135, 45.519513],\n            [9.284631, 45.519513],\n            [9.284631, 45.515016],\n            [9.280135, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.519513],\n            [9.280135, 45.524009],\n            [9.284631, 45.524009],\n            [9.284631, 45.519513],\n            [9.280135, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.524009],\n            [9.280135, 45.528506],\n            [9.284631, 45.528506],\n            [9.284631, 45.524009],\n            [9.280135, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.528506],\n            [9.280135, 45.533002],\n            [9.284631, 45.533002],\n            [9.284631, 45.528506],\n            [9.280135, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.533002],\n            [9.280135, 45.537499],\n            [9.284631, 45.537499],\n            [9.284631, 45.533002],\n            [9.280135, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.537499],\n            [9.280135, 45.541996],\n            [9.284631, 45.541996],\n            [9.284631, 45.537499],\n            [9.280135, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.541996],\n            [9.280135, 45.546492],\n            [9.284631, 45.546492],\n            [9.284631, 45.541996],\n            [9.280135, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.546492],\n            [9.280135, 45.550989],\n            [9.284631, 45.550989],\n            [9.284631, 45.546492],\n            [9.280135, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.550989],\n            [9.280135, 45.555485],\n            [9.284631, 45.555485],\n            [9.284631, 45.550989],\n            [9.280135, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.555485],\n            [9.280135, 45.559982],\n            [9.284631, 45.559982],\n            [9.284631, 45.555485],\n            [9.280135, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.559982],\n            [9.280135, 45.564479],\n            [9.284631, 45.564479],\n            [9.284631, 45.559982],\n            [9.280135, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.564479],\n            [9.280135, 45.568975],\n            [9.284631, 45.568975],\n            [9.284631, 45.564479],\n            [9.280135, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.568975],\n            [9.280135, 45.573472],\n            [9.284631, 45.573472],\n            [9.284631, 45.568975],\n            [9.280135, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.573472],\n            [9.280135, 45.577968],\n            [9.284631, 45.577968],\n            [9.284631, 45.573472],\n            [9.280135, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.577968],\n            [9.280135, 45.582465],\n            [9.284631, 45.582465],\n            [9.284631, 45.577968],\n            [9.280135, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.582465],\n            [9.280135, 45.586962],\n            [9.284631, 45.586962],\n            [9.284631, 45.582465],\n            [9.280135, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.586962],\n            [9.280135, 45.591458],\n            [9.284631, 45.591458],\n            [9.284631, 45.586962],\n            [9.280135, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.591458],\n            [9.280135, 45.595955],\n            [9.284631, 45.595955],\n            [9.284631, 45.591458],\n            [9.280135, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.595955],\n            [9.280135, 45.600451],\n            [9.284631, 45.600451],\n            [9.284631, 45.595955],\n            [9.280135, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.600451],\n            [9.280135, 45.604948],\n            [9.284631, 45.604948],\n            [9.284631, 45.600451],\n            [9.280135, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.604948],\n            [9.280135, 45.609445],\n            [9.284631, 45.609445],\n            [9.284631, 45.604948],\n            [9.280135, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.609445],\n            [9.280135, 45.613941],\n            [9.284631, 45.613941],\n            [9.284631, 45.609445],\n            [9.280135, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.613941],\n            [9.280135, 45.618438],\n            [9.284631, 45.618438],\n            [9.284631, 45.613941],\n            [9.280135, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.618438],\n            [9.280135, 45.622934],\n            [9.284631, 45.622934],\n            [9.284631, 45.618438],\n            [9.280135, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.622934],\n            [9.280135, 45.627431],\n            [9.284631, 45.627431],\n            [9.284631, 45.622934],\n            [9.280135, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.627431],\n            [9.280135, 45.631928],\n            [9.284631, 45.631928],\n            [9.284631, 45.627431],\n            [9.280135, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.280135, 45.631928],\n            [9.280135, 45.636424],\n            [9.284631, 45.636424],\n            [9.284631, 45.631928],\n            [9.280135, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.339648],\n            [9.284631, 45.344145],\n            [9.289128, 45.344145],\n            [9.289128, 45.339648],\n            [9.284631, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.344145],\n            [9.284631, 45.348642],\n            [9.289128, 45.348642],\n            [9.289128, 45.344145],\n            [9.284631, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.348642],\n            [9.284631, 45.353138],\n            [9.289128, 45.353138],\n            [9.289128, 45.348642],\n            [9.284631, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.353138],\n            [9.284631, 45.357635],\n            [9.289128, 45.357635],\n            [9.289128, 45.353138],\n            [9.284631, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.357635],\n            [9.284631, 45.362131],\n            [9.289128, 45.362131],\n            [9.289128, 45.357635],\n            [9.284631, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.362131],\n            [9.284631, 45.366628],\n            [9.289128, 45.366628],\n            [9.289128, 45.362131],\n            [9.284631, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.366628],\n            [9.284631, 45.371125],\n            [9.289128, 45.371125],\n            [9.289128, 45.366628],\n            [9.284631, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.371125],\n            [9.284631, 45.375621],\n            [9.289128, 45.375621],\n            [9.289128, 45.371125],\n            [9.284631, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.375621],\n            [9.284631, 45.380118],\n            [9.289128, 45.380118],\n            [9.289128, 45.375621],\n            [9.284631, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.380118],\n            [9.284631, 45.384614],\n            [9.289128, 45.384614],\n            [9.289128, 45.380118],\n            [9.284631, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.384614],\n            [9.284631, 45.389111],\n            [9.289128, 45.389111],\n            [9.289128, 45.384614],\n            [9.284631, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.389111],\n            [9.284631, 45.393608],\n            [9.289128, 45.393608],\n            [9.289128, 45.389111],\n            [9.284631, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.393608],\n            [9.284631, 45.398104],\n            [9.289128, 45.398104],\n            [9.289128, 45.393608],\n            [9.284631, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.398104],\n            [9.284631, 45.402601],\n            [9.289128, 45.402601],\n            [9.289128, 45.398104],\n            [9.284631, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.402601],\n            [9.284631, 45.407097],\n            [9.289128, 45.407097],\n            [9.289128, 45.402601],\n            [9.284631, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.407097],\n            [9.284631, 45.411594],\n            [9.289128, 45.411594],\n            [9.289128, 45.407097],\n            [9.284631, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.411594],\n            [9.284631, 45.416091],\n            [9.289128, 45.416091],\n            [9.289128, 45.411594],\n            [9.284631, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.416091],\n            [9.284631, 45.420587],\n            [9.289128, 45.420587],\n            [9.289128, 45.416091],\n            [9.284631, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.420587],\n            [9.284631, 45.425084],\n            [9.289128, 45.425084],\n            [9.289128, 45.420587],\n            [9.284631, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.425084],\n            [9.284631, 45.42958],\n            [9.289128, 45.42958],\n            [9.289128, 45.425084],\n            [9.284631, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.42958],\n            [9.284631, 45.434077],\n            [9.289128, 45.434077],\n            [9.289128, 45.42958],\n            [9.284631, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.434077],\n            [9.284631, 45.438574],\n            [9.289128, 45.438574],\n            [9.289128, 45.434077],\n            [9.284631, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.438574],\n            [9.284631, 45.44307],\n            [9.289128, 45.44307],\n            [9.289128, 45.438574],\n            [9.284631, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.44307],\n            [9.284631, 45.447567],\n            [9.289128, 45.447567],\n            [9.289128, 45.44307],\n            [9.284631, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.447567],\n            [9.284631, 45.452063],\n            [9.289128, 45.452063],\n            [9.289128, 45.447567],\n            [9.284631, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.452063],\n            [9.284631, 45.45656],\n            [9.289128, 45.45656],\n            [9.289128, 45.452063],\n            [9.284631, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.45656],\n            [9.284631, 45.461057],\n            [9.289128, 45.461057],\n            [9.289128, 45.45656],\n            [9.284631, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.461057],\n            [9.284631, 45.465553],\n            [9.289128, 45.465553],\n            [9.289128, 45.461057],\n            [9.284631, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.465553],\n            [9.284631, 45.47005],\n            [9.289128, 45.47005],\n            [9.289128, 45.465553],\n            [9.284631, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.47005],\n            [9.284631, 45.474547],\n            [9.289128, 45.474547],\n            [9.289128, 45.47005],\n            [9.284631, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.474547],\n            [9.284631, 45.479043],\n            [9.289128, 45.479043],\n            [9.289128, 45.474547],\n            [9.284631, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.479043],\n            [9.284631, 45.48354],\n            [9.289128, 45.48354],\n            [9.289128, 45.479043],\n            [9.284631, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.48354],\n            [9.284631, 45.488036],\n            [9.289128, 45.488036],\n            [9.289128, 45.48354],\n            [9.284631, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.488036],\n            [9.284631, 45.492533],\n            [9.289128, 45.492533],\n            [9.289128, 45.488036],\n            [9.284631, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.492533],\n            [9.284631, 45.49703],\n            [9.289128, 45.49703],\n            [9.289128, 45.492533],\n            [9.284631, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.49703],\n            [9.284631, 45.501526],\n            [9.289128, 45.501526],\n            [9.289128, 45.49703],\n            [9.284631, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.501526],\n            [9.284631, 45.506023],\n            [9.289128, 45.506023],\n            [9.289128, 45.501526],\n            [9.284631, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.506023],\n            [9.284631, 45.510519],\n            [9.289128, 45.510519],\n            [9.289128, 45.506023],\n            [9.284631, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.510519],\n            [9.284631, 45.515016],\n            [9.289128, 45.515016],\n            [9.289128, 45.510519],\n            [9.284631, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.515016],\n            [9.284631, 45.519513],\n            [9.289128, 45.519513],\n            [9.289128, 45.515016],\n            [9.284631, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.519513],\n            [9.284631, 45.524009],\n            [9.289128, 45.524009],\n            [9.289128, 45.519513],\n            [9.284631, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.524009],\n            [9.284631, 45.528506],\n            [9.289128, 45.528506],\n            [9.289128, 45.524009],\n            [9.284631, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.528506],\n            [9.284631, 45.533002],\n            [9.289128, 45.533002],\n            [9.289128, 45.528506],\n            [9.284631, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.533002],\n            [9.284631, 45.537499],\n            [9.289128, 45.537499],\n            [9.289128, 45.533002],\n            [9.284631, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.537499],\n            [9.284631, 45.541996],\n            [9.289128, 45.541996],\n            [9.289128, 45.537499],\n            [9.284631, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.541996],\n            [9.284631, 45.546492],\n            [9.289128, 45.546492],\n            [9.289128, 45.541996],\n            [9.284631, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.546492],\n            [9.284631, 45.550989],\n            [9.289128, 45.550989],\n            [9.289128, 45.546492],\n            [9.284631, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.550989],\n            [9.284631, 45.555485],\n            [9.289128, 45.555485],\n            [9.289128, 45.550989],\n            [9.284631, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.555485],\n            [9.284631, 45.559982],\n            [9.289128, 45.559982],\n            [9.289128, 45.555485],\n            [9.284631, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.559982],\n            [9.284631, 45.564479],\n            [9.289128, 45.564479],\n            [9.289128, 45.559982],\n            [9.284631, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.564479],\n            [9.284631, 45.568975],\n            [9.289128, 45.568975],\n            [9.289128, 45.564479],\n            [9.284631, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.568975],\n            [9.284631, 45.573472],\n            [9.289128, 45.573472],\n            [9.289128, 45.568975],\n            [9.284631, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.573472],\n            [9.284631, 45.577968],\n            [9.289128, 45.577968],\n            [9.289128, 45.573472],\n            [9.284631, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.577968],\n            [9.284631, 45.582465],\n            [9.289128, 45.582465],\n            [9.289128, 45.577968],\n            [9.284631, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.582465],\n            [9.284631, 45.586962],\n            [9.289128, 45.586962],\n            [9.289128, 45.582465],\n            [9.284631, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.586962],\n            [9.284631, 45.591458],\n            [9.289128, 45.591458],\n            [9.289128, 45.586962],\n            [9.284631, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.591458],\n            [9.284631, 45.595955],\n            [9.289128, 45.595955],\n            [9.289128, 45.591458],\n            [9.284631, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.595955],\n            [9.284631, 45.600451],\n            [9.289128, 45.600451],\n            [9.289128, 45.595955],\n            [9.284631, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.600451],\n            [9.284631, 45.604948],\n            [9.289128, 45.604948],\n            [9.289128, 45.600451],\n            [9.284631, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.604948],\n            [9.284631, 45.609445],\n            [9.289128, 45.609445],\n            [9.289128, 45.604948],\n            [9.284631, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.609445],\n            [9.284631, 45.613941],\n            [9.289128, 45.613941],\n            [9.289128, 45.609445],\n            [9.284631, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.613941],\n            [9.284631, 45.618438],\n            [9.289128, 45.618438],\n            [9.289128, 45.613941],\n            [9.284631, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.618438],\n            [9.284631, 45.622934],\n            [9.289128, 45.622934],\n            [9.289128, 45.618438],\n            [9.284631, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.622934],\n            [9.284631, 45.627431],\n            [9.289128, 45.627431],\n            [9.289128, 45.622934],\n            [9.284631, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.627431],\n            [9.284631, 45.631928],\n            [9.289128, 45.631928],\n            [9.289128, 45.627431],\n            [9.284631, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.284631, 45.631928],\n            [9.284631, 45.636424],\n            [9.289128, 45.636424],\n            [9.289128, 45.631928],\n            [9.284631, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.339648],\n            [9.289128, 45.344145],\n            [9.293625, 45.344145],\n            [9.293625, 45.339648],\n            [9.289128, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.344145],\n            [9.289128, 45.348642],\n            [9.293625, 45.348642],\n            [9.293625, 45.344145],\n            [9.289128, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.348642],\n            [9.289128, 45.353138],\n            [9.293625, 45.353138],\n            [9.293625, 45.348642],\n            [9.289128, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.353138],\n            [9.289128, 45.357635],\n            [9.293625, 45.357635],\n            [9.293625, 45.353138],\n            [9.289128, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.357635],\n            [9.289128, 45.362131],\n            [9.293625, 45.362131],\n            [9.293625, 45.357635],\n            [9.289128, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.362131],\n            [9.289128, 45.366628],\n            [9.293625, 45.366628],\n            [9.293625, 45.362131],\n            [9.289128, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.366628],\n            [9.289128, 45.371125],\n            [9.293625, 45.371125],\n            [9.293625, 45.366628],\n            [9.289128, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.371125],\n            [9.289128, 45.375621],\n            [9.293625, 45.375621],\n            [9.293625, 45.371125],\n            [9.289128, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.375621],\n            [9.289128, 45.380118],\n            [9.293625, 45.380118],\n            [9.293625, 45.375621],\n            [9.289128, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.380118],\n            [9.289128, 45.384614],\n            [9.293625, 45.384614],\n            [9.293625, 45.380118],\n            [9.289128, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.384614],\n            [9.289128, 45.389111],\n            [9.293625, 45.389111],\n            [9.293625, 45.384614],\n            [9.289128, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.389111],\n            [9.289128, 45.393608],\n            [9.293625, 45.393608],\n            [9.293625, 45.389111],\n            [9.289128, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.393608],\n            [9.289128, 45.398104],\n            [9.293625, 45.398104],\n            [9.293625, 45.393608],\n            [9.289128, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.398104],\n            [9.289128, 45.402601],\n            [9.293625, 45.402601],\n            [9.293625, 45.398104],\n            [9.289128, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.402601],\n            [9.289128, 45.407097],\n            [9.293625, 45.407097],\n            [9.293625, 45.402601],\n            [9.289128, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.407097],\n            [9.289128, 45.411594],\n            [9.293625, 45.411594],\n            [9.293625, 45.407097],\n            [9.289128, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.411594],\n            [9.289128, 45.416091],\n            [9.293625, 45.416091],\n            [9.293625, 45.411594],\n            [9.289128, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.416091],\n            [9.289128, 45.420587],\n            [9.293625, 45.420587],\n            [9.293625, 45.416091],\n            [9.289128, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.420587],\n            [9.289128, 45.425084],\n            [9.293625, 45.425084],\n            [9.293625, 45.420587],\n            [9.289128, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.425084],\n            [9.289128, 45.42958],\n            [9.293625, 45.42958],\n            [9.293625, 45.425084],\n            [9.289128, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.42958],\n            [9.289128, 45.434077],\n            [9.293625, 45.434077],\n            [9.293625, 45.42958],\n            [9.289128, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.434077],\n            [9.289128, 45.438574],\n            [9.293625, 45.438574],\n            [9.293625, 45.434077],\n            [9.289128, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.438574],\n            [9.289128, 45.44307],\n            [9.293625, 45.44307],\n            [9.293625, 45.438574],\n            [9.289128, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.44307],\n            [9.289128, 45.447567],\n            [9.293625, 45.447567],\n            [9.293625, 45.44307],\n            [9.289128, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.447567],\n            [9.289128, 45.452063],\n            [9.293625, 45.452063],\n            [9.293625, 45.447567],\n            [9.289128, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.452063],\n            [9.289128, 45.45656],\n            [9.293625, 45.45656],\n            [9.293625, 45.452063],\n            [9.289128, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.45656],\n            [9.289128, 45.461057],\n            [9.293625, 45.461057],\n            [9.293625, 45.45656],\n            [9.289128, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.461057],\n            [9.289128, 45.465553],\n            [9.293625, 45.465553],\n            [9.293625, 45.461057],\n            [9.289128, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.465553],\n            [9.289128, 45.47005],\n            [9.293625, 45.47005],\n            [9.293625, 45.465553],\n            [9.289128, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.47005],\n            [9.289128, 45.474547],\n            [9.293625, 45.474547],\n            [9.293625, 45.47005],\n            [9.289128, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.474547],\n            [9.289128, 45.479043],\n            [9.293625, 45.479043],\n            [9.293625, 45.474547],\n            [9.289128, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.479043],\n            [9.289128, 45.48354],\n            [9.293625, 45.48354],\n            [9.293625, 45.479043],\n            [9.289128, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.48354],\n            [9.289128, 45.488036],\n            [9.293625, 45.488036],\n            [9.293625, 45.48354],\n            [9.289128, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.488036],\n            [9.289128, 45.492533],\n            [9.293625, 45.492533],\n            [9.293625, 45.488036],\n            [9.289128, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.492533],\n            [9.289128, 45.49703],\n            [9.293625, 45.49703],\n            [9.293625, 45.492533],\n            [9.289128, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.49703],\n            [9.289128, 45.501526],\n            [9.293625, 45.501526],\n            [9.293625, 45.49703],\n            [9.289128, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.501526],\n            [9.289128, 45.506023],\n            [9.293625, 45.506023],\n            [9.293625, 45.501526],\n            [9.289128, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.506023],\n            [9.289128, 45.510519],\n            [9.293625, 45.510519],\n            [9.293625, 45.506023],\n            [9.289128, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.510519],\n            [9.289128, 45.515016],\n            [9.293625, 45.515016],\n            [9.293625, 45.510519],\n            [9.289128, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.515016],\n            [9.289128, 45.519513],\n            [9.293625, 45.519513],\n            [9.293625, 45.515016],\n            [9.289128, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.519513],\n            [9.289128, 45.524009],\n            [9.293625, 45.524009],\n            [9.293625, 45.519513],\n            [9.289128, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.524009],\n            [9.289128, 45.528506],\n            [9.293625, 45.528506],\n            [9.293625, 45.524009],\n            [9.289128, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.528506],\n            [9.289128, 45.533002],\n            [9.293625, 45.533002],\n            [9.293625, 45.528506],\n            [9.289128, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.533002],\n            [9.289128, 45.537499],\n            [9.293625, 45.537499],\n            [9.293625, 45.533002],\n            [9.289128, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.537499],\n            [9.289128, 45.541996],\n            [9.293625, 45.541996],\n            [9.293625, 45.537499],\n            [9.289128, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.541996],\n            [9.289128, 45.546492],\n            [9.293625, 45.546492],\n            [9.293625, 45.541996],\n            [9.289128, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.546492],\n            [9.289128, 45.550989],\n            [9.293625, 45.550989],\n            [9.293625, 45.546492],\n            [9.289128, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.550989],\n            [9.289128, 45.555485],\n            [9.293625, 45.555485],\n            [9.293625, 45.550989],\n            [9.289128, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.555485],\n            [9.289128, 45.559982],\n            [9.293625, 45.559982],\n            [9.293625, 45.555485],\n            [9.289128, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.559982],\n            [9.289128, 45.564479],\n            [9.293625, 45.564479],\n            [9.293625, 45.559982],\n            [9.289128, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.564479],\n            [9.289128, 45.568975],\n            [9.293625, 45.568975],\n            [9.293625, 45.564479],\n            [9.289128, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.568975],\n            [9.289128, 45.573472],\n            [9.293625, 45.573472],\n            [9.293625, 45.568975],\n            [9.289128, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.573472],\n            [9.289128, 45.577968],\n            [9.293625, 45.577968],\n            [9.293625, 45.573472],\n            [9.289128, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.577968],\n            [9.289128, 45.582465],\n            [9.293625, 45.582465],\n            [9.293625, 45.577968],\n            [9.289128, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.582465],\n            [9.289128, 45.586962],\n            [9.293625, 45.586962],\n            [9.293625, 45.582465],\n            [9.289128, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.586962],\n            [9.289128, 45.591458],\n            [9.293625, 45.591458],\n            [9.293625, 45.586962],\n            [9.289128, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.591458],\n            [9.289128, 45.595955],\n            [9.293625, 45.595955],\n            [9.293625, 45.591458],\n            [9.289128, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.595955],\n            [9.289128, 45.600451],\n            [9.293625, 45.600451],\n            [9.293625, 45.595955],\n            [9.289128, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.600451],\n            [9.289128, 45.604948],\n            [9.293625, 45.604948],\n            [9.293625, 45.600451],\n            [9.289128, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.604948],\n            [9.289128, 45.609445],\n            [9.293625, 45.609445],\n            [9.293625, 45.604948],\n            [9.289128, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.609445],\n            [9.289128, 45.613941],\n            [9.293625, 45.613941],\n            [9.293625, 45.609445],\n            [9.289128, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.613941],\n            [9.289128, 45.618438],\n            [9.293625, 45.618438],\n            [9.293625, 45.613941],\n            [9.289128, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.618438],\n            [9.289128, 45.622934],\n            [9.293625, 45.622934],\n            [9.293625, 45.618438],\n            [9.289128, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.622934],\n            [9.289128, 45.627431],\n            [9.293625, 45.627431],\n            [9.293625, 45.622934],\n            [9.289128, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.627431],\n            [9.289128, 45.631928],\n            [9.293625, 45.631928],\n            [9.293625, 45.627431],\n            [9.289128, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.289128, 45.631928],\n            [9.289128, 45.636424],\n            [9.293625, 45.636424],\n            [9.293625, 45.631928],\n            [9.289128, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.339648],\n            [9.293625, 45.344145],\n            [9.298121, 45.344145],\n            [9.298121, 45.339648],\n            [9.293625, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.344145],\n            [9.293625, 45.348642],\n            [9.298121, 45.348642],\n            [9.298121, 45.344145],\n            [9.293625, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.348642],\n            [9.293625, 45.353138],\n            [9.298121, 45.353138],\n            [9.298121, 45.348642],\n            [9.293625, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.353138],\n            [9.293625, 45.357635],\n            [9.298121, 45.357635],\n            [9.298121, 45.353138],\n            [9.293625, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.357635],\n            [9.293625, 45.362131],\n            [9.298121, 45.362131],\n            [9.298121, 45.357635],\n            [9.293625, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.362131],\n            [9.293625, 45.366628],\n            [9.298121, 45.366628],\n            [9.298121, 45.362131],\n            [9.293625, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.366628],\n            [9.293625, 45.371125],\n            [9.298121, 45.371125],\n            [9.298121, 45.366628],\n            [9.293625, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.371125],\n            [9.293625, 45.375621],\n            [9.298121, 45.375621],\n            [9.298121, 45.371125],\n            [9.293625, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.375621],\n            [9.293625, 45.380118],\n            [9.298121, 45.380118],\n            [9.298121, 45.375621],\n            [9.293625, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.380118],\n            [9.293625, 45.384614],\n            [9.298121, 45.384614],\n            [9.298121, 45.380118],\n            [9.293625, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.384614],\n            [9.293625, 45.389111],\n            [9.298121, 45.389111],\n            [9.298121, 45.384614],\n            [9.293625, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.389111],\n            [9.293625, 45.393608],\n            [9.298121, 45.393608],\n            [9.298121, 45.389111],\n            [9.293625, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.393608],\n            [9.293625, 45.398104],\n            [9.298121, 45.398104],\n            [9.298121, 45.393608],\n            [9.293625, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.398104],\n            [9.293625, 45.402601],\n            [9.298121, 45.402601],\n            [9.298121, 45.398104],\n            [9.293625, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.402601],\n            [9.293625, 45.407097],\n            [9.298121, 45.407097],\n            [9.298121, 45.402601],\n            [9.293625, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.407097],\n            [9.293625, 45.411594],\n            [9.298121, 45.411594],\n            [9.298121, 45.407097],\n            [9.293625, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.411594],\n            [9.293625, 45.416091],\n            [9.298121, 45.416091],\n            [9.298121, 45.411594],\n            [9.293625, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.416091],\n            [9.293625, 45.420587],\n            [9.298121, 45.420587],\n            [9.298121, 45.416091],\n            [9.293625, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.420587],\n            [9.293625, 45.425084],\n            [9.298121, 45.425084],\n            [9.298121, 45.420587],\n            [9.293625, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.425084],\n            [9.293625, 45.42958],\n            [9.298121, 45.42958],\n            [9.298121, 45.425084],\n            [9.293625, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.42958],\n            [9.293625, 45.434077],\n            [9.298121, 45.434077],\n            [9.298121, 45.42958],\n            [9.293625, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.434077],\n            [9.293625, 45.438574],\n            [9.298121, 45.438574],\n            [9.298121, 45.434077],\n            [9.293625, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.438574],\n            [9.293625, 45.44307],\n            [9.298121, 45.44307],\n            [9.298121, 45.438574],\n            [9.293625, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.44307],\n            [9.293625, 45.447567],\n            [9.298121, 45.447567],\n            [9.298121, 45.44307],\n            [9.293625, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.447567],\n            [9.293625, 45.452063],\n            [9.298121, 45.452063],\n            [9.298121, 45.447567],\n            [9.293625, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.452063],\n            [9.293625, 45.45656],\n            [9.298121, 45.45656],\n            [9.298121, 45.452063],\n            [9.293625, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.45656],\n            [9.293625, 45.461057],\n            [9.298121, 45.461057],\n            [9.298121, 45.45656],\n            [9.293625, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.461057],\n            [9.293625, 45.465553],\n            [9.298121, 45.465553],\n            [9.298121, 45.461057],\n            [9.293625, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.465553],\n            [9.293625, 45.47005],\n            [9.298121, 45.47005],\n            [9.298121, 45.465553],\n            [9.293625, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.47005],\n            [9.293625, 45.474547],\n            [9.298121, 45.474547],\n            [9.298121, 45.47005],\n            [9.293625, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.474547],\n            [9.293625, 45.479043],\n            [9.298121, 45.479043],\n            [9.298121, 45.474547],\n            [9.293625, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.479043],\n            [9.293625, 45.48354],\n            [9.298121, 45.48354],\n            [9.298121, 45.479043],\n            [9.293625, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.48354],\n            [9.293625, 45.488036],\n            [9.298121, 45.488036],\n            [9.298121, 45.48354],\n            [9.293625, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.488036],\n            [9.293625, 45.492533],\n            [9.298121, 45.492533],\n            [9.298121, 45.488036],\n            [9.293625, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.492533],\n            [9.293625, 45.49703],\n            [9.298121, 45.49703],\n            [9.298121, 45.492533],\n            [9.293625, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.49703],\n            [9.293625, 45.501526],\n            [9.298121, 45.501526],\n            [9.298121, 45.49703],\n            [9.293625, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.501526],\n            [9.293625, 45.506023],\n            [9.298121, 45.506023],\n            [9.298121, 45.501526],\n            [9.293625, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.506023],\n            [9.293625, 45.510519],\n            [9.298121, 45.510519],\n            [9.298121, 45.506023],\n            [9.293625, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.510519],\n            [9.293625, 45.515016],\n            [9.298121, 45.515016],\n            [9.298121, 45.510519],\n            [9.293625, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.515016],\n            [9.293625, 45.519513],\n            [9.298121, 45.519513],\n            [9.298121, 45.515016],\n            [9.293625, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.519513],\n            [9.293625, 45.524009],\n            [9.298121, 45.524009],\n            [9.298121, 45.519513],\n            [9.293625, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.524009],\n            [9.293625, 45.528506],\n            [9.298121, 45.528506],\n            [9.298121, 45.524009],\n            [9.293625, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.528506],\n            [9.293625, 45.533002],\n            [9.298121, 45.533002],\n            [9.298121, 45.528506],\n            [9.293625, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.533002],\n            [9.293625, 45.537499],\n            [9.298121, 45.537499],\n            [9.298121, 45.533002],\n            [9.293625, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.537499],\n            [9.293625, 45.541996],\n            [9.298121, 45.541996],\n            [9.298121, 45.537499],\n            [9.293625, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.541996],\n            [9.293625, 45.546492],\n            [9.298121, 45.546492],\n            [9.298121, 45.541996],\n            [9.293625, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.546492],\n            [9.293625, 45.550989],\n            [9.298121, 45.550989],\n            [9.298121, 45.546492],\n            [9.293625, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.550989],\n            [9.293625, 45.555485],\n            [9.298121, 45.555485],\n            [9.298121, 45.550989],\n            [9.293625, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.555485],\n            [9.293625, 45.559982],\n            [9.298121, 45.559982],\n            [9.298121, 45.555485],\n            [9.293625, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.559982],\n            [9.293625, 45.564479],\n            [9.298121, 45.564479],\n            [9.298121, 45.559982],\n            [9.293625, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.564479],\n            [9.293625, 45.568975],\n            [9.298121, 45.568975],\n            [9.298121, 45.564479],\n            [9.293625, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.568975],\n            [9.293625, 45.573472],\n            [9.298121, 45.573472],\n            [9.298121, 45.568975],\n            [9.293625, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.573472],\n            [9.293625, 45.577968],\n            [9.298121, 45.577968],\n            [9.298121, 45.573472],\n            [9.293625, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.577968],\n            [9.293625, 45.582465],\n            [9.298121, 45.582465],\n            [9.298121, 45.577968],\n            [9.293625, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.582465],\n            [9.293625, 45.586962],\n            [9.298121, 45.586962],\n            [9.298121, 45.582465],\n            [9.293625, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.586962],\n            [9.293625, 45.591458],\n            [9.298121, 45.591458],\n            [9.298121, 45.586962],\n            [9.293625, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.591458],\n            [9.293625, 45.595955],\n            [9.298121, 45.595955],\n            [9.298121, 45.591458],\n            [9.293625, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.595955],\n            [9.293625, 45.600451],\n            [9.298121, 45.600451],\n            [9.298121, 45.595955],\n            [9.293625, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.600451],\n            [9.293625, 45.604948],\n            [9.298121, 45.604948],\n            [9.298121, 45.600451],\n            [9.293625, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.604948],\n            [9.293625, 45.609445],\n            [9.298121, 45.609445],\n            [9.298121, 45.604948],\n            [9.293625, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.609445],\n            [9.293625, 45.613941],\n            [9.298121, 45.613941],\n            [9.298121, 45.609445],\n            [9.293625, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.613941],\n            [9.293625, 45.618438],\n            [9.298121, 45.618438],\n            [9.298121, 45.613941],\n            [9.293625, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.618438],\n            [9.293625, 45.622934],\n            [9.298121, 45.622934],\n            [9.298121, 45.618438],\n            [9.293625, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.622934],\n            [9.293625, 45.627431],\n            [9.298121, 45.627431],\n            [9.298121, 45.622934],\n            [9.293625, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.627431],\n            [9.293625, 45.631928],\n            [9.298121, 45.631928],\n            [9.298121, 45.627431],\n            [9.293625, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.293625, 45.631928],\n            [9.293625, 45.636424],\n            [9.298121, 45.636424],\n            [9.298121, 45.631928],\n            [9.293625, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.339648],\n            [9.298121, 45.344145],\n            [9.302618, 45.344145],\n            [9.302618, 45.339648],\n            [9.298121, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.344145],\n            [9.298121, 45.348642],\n            [9.302618, 45.348642],\n            [9.302618, 45.344145],\n            [9.298121, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.348642],\n            [9.298121, 45.353138],\n            [9.302618, 45.353138],\n            [9.302618, 45.348642],\n            [9.298121, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.353138],\n            [9.298121, 45.357635],\n            [9.302618, 45.357635],\n            [9.302618, 45.353138],\n            [9.298121, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.357635],\n            [9.298121, 45.362131],\n            [9.302618, 45.362131],\n            [9.302618, 45.357635],\n            [9.298121, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.362131],\n            [9.298121, 45.366628],\n            [9.302618, 45.366628],\n            [9.302618, 45.362131],\n            [9.298121, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.366628],\n            [9.298121, 45.371125],\n            [9.302618, 45.371125],\n            [9.302618, 45.366628],\n            [9.298121, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.371125],\n            [9.298121, 45.375621],\n            [9.302618, 45.375621],\n            [9.302618, 45.371125],\n            [9.298121, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.375621],\n            [9.298121, 45.380118],\n            [9.302618, 45.380118],\n            [9.302618, 45.375621],\n            [9.298121, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.380118],\n            [9.298121, 45.384614],\n            [9.302618, 45.384614],\n            [9.302618, 45.380118],\n            [9.298121, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.384614],\n            [9.298121, 45.389111],\n            [9.302618, 45.389111],\n            [9.302618, 45.384614],\n            [9.298121, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.389111],\n            [9.298121, 45.393608],\n            [9.302618, 45.393608],\n            [9.302618, 45.389111],\n            [9.298121, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.393608],\n            [9.298121, 45.398104],\n            [9.302618, 45.398104],\n            [9.302618, 45.393608],\n            [9.298121, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.398104],\n            [9.298121, 45.402601],\n            [9.302618, 45.402601],\n            [9.302618, 45.398104],\n            [9.298121, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.402601],\n            [9.298121, 45.407097],\n            [9.302618, 45.407097],\n            [9.302618, 45.402601],\n            [9.298121, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.407097],\n            [9.298121, 45.411594],\n            [9.302618, 45.411594],\n            [9.302618, 45.407097],\n            [9.298121, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.411594],\n            [9.298121, 45.416091],\n            [9.302618, 45.416091],\n            [9.302618, 45.411594],\n            [9.298121, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.416091],\n            [9.298121, 45.420587],\n            [9.302618, 45.420587],\n            [9.302618, 45.416091],\n            [9.298121, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.420587],\n            [9.298121, 45.425084],\n            [9.302618, 45.425084],\n            [9.302618, 45.420587],\n            [9.298121, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.425084],\n            [9.298121, 45.42958],\n            [9.302618, 45.42958],\n            [9.302618, 45.425084],\n            [9.298121, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.42958],\n            [9.298121, 45.434077],\n            [9.302618, 45.434077],\n            [9.302618, 45.42958],\n            [9.298121, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.434077],\n            [9.298121, 45.438574],\n            [9.302618, 45.438574],\n            [9.302618, 45.434077],\n            [9.298121, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.438574],\n            [9.298121, 45.44307],\n            [9.302618, 45.44307],\n            [9.302618, 45.438574],\n            [9.298121, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.44307],\n            [9.298121, 45.447567],\n            [9.302618, 45.447567],\n            [9.302618, 45.44307],\n            [9.298121, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.447567],\n            [9.298121, 45.452063],\n            [9.302618, 45.452063],\n            [9.302618, 45.447567],\n            [9.298121, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.452063],\n            [9.298121, 45.45656],\n            [9.302618, 45.45656],\n            [9.302618, 45.452063],\n            [9.298121, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.45656],\n            [9.298121, 45.461057],\n            [9.302618, 45.461057],\n            [9.302618, 45.45656],\n            [9.298121, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.461057],\n            [9.298121, 45.465553],\n            [9.302618, 45.465553],\n            [9.302618, 45.461057],\n            [9.298121, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.465553],\n            [9.298121, 45.47005],\n            [9.302618, 45.47005],\n            [9.302618, 45.465553],\n            [9.298121, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.47005],\n            [9.298121, 45.474547],\n            [9.302618, 45.474547],\n            [9.302618, 45.47005],\n            [9.298121, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.474547],\n            [9.298121, 45.479043],\n            [9.302618, 45.479043],\n            [9.302618, 45.474547],\n            [9.298121, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.479043],\n            [9.298121, 45.48354],\n            [9.302618, 45.48354],\n            [9.302618, 45.479043],\n            [9.298121, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.48354],\n            [9.298121, 45.488036],\n            [9.302618, 45.488036],\n            [9.302618, 45.48354],\n            [9.298121, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.488036],\n            [9.298121, 45.492533],\n            [9.302618, 45.492533],\n            [9.302618, 45.488036],\n            [9.298121, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.492533],\n            [9.298121, 45.49703],\n            [9.302618, 45.49703],\n            [9.302618, 45.492533],\n            [9.298121, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.49703],\n            [9.298121, 45.501526],\n            [9.302618, 45.501526],\n            [9.302618, 45.49703],\n            [9.298121, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.501526],\n            [9.298121, 45.506023],\n            [9.302618, 45.506023],\n            [9.302618, 45.501526],\n            [9.298121, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.506023],\n            [9.298121, 45.510519],\n            [9.302618, 45.510519],\n            [9.302618, 45.506023],\n            [9.298121, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.510519],\n            [9.298121, 45.515016],\n            [9.302618, 45.515016],\n            [9.302618, 45.510519],\n            [9.298121, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.515016],\n            [9.298121, 45.519513],\n            [9.302618, 45.519513],\n            [9.302618, 45.515016],\n            [9.298121, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.519513],\n            [9.298121, 45.524009],\n            [9.302618, 45.524009],\n            [9.302618, 45.519513],\n            [9.298121, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.524009],\n            [9.298121, 45.528506],\n            [9.302618, 45.528506],\n            [9.302618, 45.524009],\n            [9.298121, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.528506],\n            [9.298121, 45.533002],\n            [9.302618, 45.533002],\n            [9.302618, 45.528506],\n            [9.298121, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.533002],\n            [9.298121, 45.537499],\n            [9.302618, 45.537499],\n            [9.302618, 45.533002],\n            [9.298121, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.537499],\n            [9.298121, 45.541996],\n            [9.302618, 45.541996],\n            [9.302618, 45.537499],\n            [9.298121, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.541996],\n            [9.298121, 45.546492],\n            [9.302618, 45.546492],\n            [9.302618, 45.541996],\n            [9.298121, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.546492],\n            [9.298121, 45.550989],\n            [9.302618, 45.550989],\n            [9.302618, 45.546492],\n            [9.298121, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.550989],\n            [9.298121, 45.555485],\n            [9.302618, 45.555485],\n            [9.302618, 45.550989],\n            [9.298121, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.555485],\n            [9.298121, 45.559982],\n            [9.302618, 45.559982],\n            [9.302618, 45.555485],\n            [9.298121, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.559982],\n            [9.298121, 45.564479],\n            [9.302618, 45.564479],\n            [9.302618, 45.559982],\n            [9.298121, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.564479],\n            [9.298121, 45.568975],\n            [9.302618, 45.568975],\n            [9.302618, 45.564479],\n            [9.298121, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.568975],\n            [9.298121, 45.573472],\n            [9.302618, 45.573472],\n            [9.302618, 45.568975],\n            [9.298121, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.573472],\n            [9.298121, 45.577968],\n            [9.302618, 45.577968],\n            [9.302618, 45.573472],\n            [9.298121, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.577968],\n            [9.298121, 45.582465],\n            [9.302618, 45.582465],\n            [9.302618, 45.577968],\n            [9.298121, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.582465],\n            [9.298121, 45.586962],\n            [9.302618, 45.586962],\n            [9.302618, 45.582465],\n            [9.298121, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.586962],\n            [9.298121, 45.591458],\n            [9.302618, 45.591458],\n            [9.302618, 45.586962],\n            [9.298121, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.591458],\n            [9.298121, 45.595955],\n            [9.302618, 45.595955],\n            [9.302618, 45.591458],\n            [9.298121, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.595955],\n            [9.298121, 45.600451],\n            [9.302618, 45.600451],\n            [9.302618, 45.595955],\n            [9.298121, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.600451],\n            [9.298121, 45.604948],\n            [9.302618, 45.604948],\n            [9.302618, 45.600451],\n            [9.298121, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.604948],\n            [9.298121, 45.609445],\n            [9.302618, 45.609445],\n            [9.302618, 45.604948],\n            [9.298121, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.609445],\n            [9.298121, 45.613941],\n            [9.302618, 45.613941],\n            [9.302618, 45.609445],\n            [9.298121, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.613941],\n            [9.298121, 45.618438],\n            [9.302618, 45.618438],\n            [9.302618, 45.613941],\n            [9.298121, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.618438],\n            [9.298121, 45.622934],\n            [9.302618, 45.622934],\n            [9.302618, 45.618438],\n            [9.298121, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.622934],\n            [9.298121, 45.627431],\n            [9.302618, 45.627431],\n            [9.302618, 45.622934],\n            [9.298121, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.627431],\n            [9.298121, 45.631928],\n            [9.302618, 45.631928],\n            [9.302618, 45.627431],\n            [9.298121, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.298121, 45.631928],\n            [9.298121, 45.636424],\n            [9.302618, 45.636424],\n            [9.302618, 45.631928],\n            [9.298121, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.339648],\n            [9.302618, 45.344145],\n            [9.307114, 45.344145],\n            [9.307114, 45.339648],\n            [9.302618, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.344145],\n            [9.302618, 45.348642],\n            [9.307114, 45.348642],\n            [9.307114, 45.344145],\n            [9.302618, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.348642],\n            [9.302618, 45.353138],\n            [9.307114, 45.353138],\n            [9.307114, 45.348642],\n            [9.302618, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.353138],\n            [9.302618, 45.357635],\n            [9.307114, 45.357635],\n            [9.307114, 45.353138],\n            [9.302618, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.357635],\n            [9.302618, 45.362131],\n            [9.307114, 45.362131],\n            [9.307114, 45.357635],\n            [9.302618, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.362131],\n            [9.302618, 45.366628],\n            [9.307114, 45.366628],\n            [9.307114, 45.362131],\n            [9.302618, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.366628],\n            [9.302618, 45.371125],\n            [9.307114, 45.371125],\n            [9.307114, 45.366628],\n            [9.302618, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.371125],\n            [9.302618, 45.375621],\n            [9.307114, 45.375621],\n            [9.307114, 45.371125],\n            [9.302618, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.375621],\n            [9.302618, 45.380118],\n            [9.307114, 45.380118],\n            [9.307114, 45.375621],\n            [9.302618, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.380118],\n            [9.302618, 45.384614],\n            [9.307114, 45.384614],\n            [9.307114, 45.380118],\n            [9.302618, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.384614],\n            [9.302618, 45.389111],\n            [9.307114, 45.389111],\n            [9.307114, 45.384614],\n            [9.302618, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.389111],\n            [9.302618, 45.393608],\n            [9.307114, 45.393608],\n            [9.307114, 45.389111],\n            [9.302618, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.393608],\n            [9.302618, 45.398104],\n            [9.307114, 45.398104],\n            [9.307114, 45.393608],\n            [9.302618, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.398104],\n            [9.302618, 45.402601],\n            [9.307114, 45.402601],\n            [9.307114, 45.398104],\n            [9.302618, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.402601],\n            [9.302618, 45.407097],\n            [9.307114, 45.407097],\n            [9.307114, 45.402601],\n            [9.302618, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.407097],\n            [9.302618, 45.411594],\n            [9.307114, 45.411594],\n            [9.307114, 45.407097],\n            [9.302618, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.411594],\n            [9.302618, 45.416091],\n            [9.307114, 45.416091],\n            [9.307114, 45.411594],\n            [9.302618, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.416091],\n            [9.302618, 45.420587],\n            [9.307114, 45.420587],\n            [9.307114, 45.416091],\n            [9.302618, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.420587],\n            [9.302618, 45.425084],\n            [9.307114, 45.425084],\n            [9.307114, 45.420587],\n            [9.302618, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.425084],\n            [9.302618, 45.42958],\n            [9.307114, 45.42958],\n            [9.307114, 45.425084],\n            [9.302618, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.42958],\n            [9.302618, 45.434077],\n            [9.307114, 45.434077],\n            [9.307114, 45.42958],\n            [9.302618, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.434077],\n            [9.302618, 45.438574],\n            [9.307114, 45.438574],\n            [9.307114, 45.434077],\n            [9.302618, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.438574],\n            [9.302618, 45.44307],\n            [9.307114, 45.44307],\n            [9.307114, 45.438574],\n            [9.302618, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.44307],\n            [9.302618, 45.447567],\n            [9.307114, 45.447567],\n            [9.307114, 45.44307],\n            [9.302618, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.447567],\n            [9.302618, 45.452063],\n            [9.307114, 45.452063],\n            [9.307114, 45.447567],\n            [9.302618, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.452063],\n            [9.302618, 45.45656],\n            [9.307114, 45.45656],\n            [9.307114, 45.452063],\n            [9.302618, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.45656],\n            [9.302618, 45.461057],\n            [9.307114, 45.461057],\n            [9.307114, 45.45656],\n            [9.302618, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.461057],\n            [9.302618, 45.465553],\n            [9.307114, 45.465553],\n            [9.307114, 45.461057],\n            [9.302618, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.465553],\n            [9.302618, 45.47005],\n            [9.307114, 45.47005],\n            [9.307114, 45.465553],\n            [9.302618, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.47005],\n            [9.302618, 45.474547],\n            [9.307114, 45.474547],\n            [9.307114, 45.47005],\n            [9.302618, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.474547],\n            [9.302618, 45.479043],\n            [9.307114, 45.479043],\n            [9.307114, 45.474547],\n            [9.302618, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.479043],\n            [9.302618, 45.48354],\n            [9.307114, 45.48354],\n            [9.307114, 45.479043],\n            [9.302618, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.48354],\n            [9.302618, 45.488036],\n            [9.307114, 45.488036],\n            [9.307114, 45.48354],\n            [9.302618, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.488036],\n            [9.302618, 45.492533],\n            [9.307114, 45.492533],\n            [9.307114, 45.488036],\n            [9.302618, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.492533],\n            [9.302618, 45.49703],\n            [9.307114, 45.49703],\n            [9.307114, 45.492533],\n            [9.302618, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.49703],\n            [9.302618, 45.501526],\n            [9.307114, 45.501526],\n            [9.307114, 45.49703],\n            [9.302618, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.501526],\n            [9.302618, 45.506023],\n            [9.307114, 45.506023],\n            [9.307114, 45.501526],\n            [9.302618, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.506023],\n            [9.302618, 45.510519],\n            [9.307114, 45.510519],\n            [9.307114, 45.506023],\n            [9.302618, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.510519],\n            [9.302618, 45.515016],\n            [9.307114, 45.515016],\n            [9.307114, 45.510519],\n            [9.302618, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.515016],\n            [9.302618, 45.519513],\n            [9.307114, 45.519513],\n            [9.307114, 45.515016],\n            [9.302618, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.519513],\n            [9.302618, 45.524009],\n            [9.307114, 45.524009],\n            [9.307114, 45.519513],\n            [9.302618, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.524009],\n            [9.302618, 45.528506],\n            [9.307114, 45.528506],\n            [9.307114, 45.524009],\n            [9.302618, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.528506],\n            [9.302618, 45.533002],\n            [9.307114, 45.533002],\n            [9.307114, 45.528506],\n            [9.302618, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.533002],\n            [9.302618, 45.537499],\n            [9.307114, 45.537499],\n            [9.307114, 45.533002],\n            [9.302618, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.537499],\n            [9.302618, 45.541996],\n            [9.307114, 45.541996],\n            [9.307114, 45.537499],\n            [9.302618, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.541996],\n            [9.302618, 45.546492],\n            [9.307114, 45.546492],\n            [9.307114, 45.541996],\n            [9.302618, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.546492],\n            [9.302618, 45.550989],\n            [9.307114, 45.550989],\n            [9.307114, 45.546492],\n            [9.302618, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.550989],\n            [9.302618, 45.555485],\n            [9.307114, 45.555485],\n            [9.307114, 45.550989],\n            [9.302618, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.555485],\n            [9.302618, 45.559982],\n            [9.307114, 45.559982],\n            [9.307114, 45.555485],\n            [9.302618, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.559982],\n            [9.302618, 45.564479],\n            [9.307114, 45.564479],\n            [9.307114, 45.559982],\n            [9.302618, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.564479],\n            [9.302618, 45.568975],\n            [9.307114, 45.568975],\n            [9.307114, 45.564479],\n            [9.302618, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.568975],\n            [9.302618, 45.573472],\n            [9.307114, 45.573472],\n            [9.307114, 45.568975],\n            [9.302618, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.573472],\n            [9.302618, 45.577968],\n            [9.307114, 45.577968],\n            [9.307114, 45.573472],\n            [9.302618, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.577968],\n            [9.302618, 45.582465],\n            [9.307114, 45.582465],\n            [9.307114, 45.577968],\n            [9.302618, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.582465],\n            [9.302618, 45.586962],\n            [9.307114, 45.586962],\n            [9.307114, 45.582465],\n            [9.302618, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.586962],\n            [9.302618, 45.591458],\n            [9.307114, 45.591458],\n            [9.307114, 45.586962],\n            [9.302618, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.591458],\n            [9.302618, 45.595955],\n            [9.307114, 45.595955],\n            [9.307114, 45.591458],\n            [9.302618, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.595955],\n            [9.302618, 45.600451],\n            [9.307114, 45.600451],\n            [9.307114, 45.595955],\n            [9.302618, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.600451],\n            [9.302618, 45.604948],\n            [9.307114, 45.604948],\n            [9.307114, 45.600451],\n            [9.302618, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.604948],\n            [9.302618, 45.609445],\n            [9.307114, 45.609445],\n            [9.307114, 45.604948],\n            [9.302618, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.609445],\n            [9.302618, 45.613941],\n            [9.307114, 45.613941],\n            [9.307114, 45.609445],\n            [9.302618, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.613941],\n            [9.302618, 45.618438],\n            [9.307114, 45.618438],\n            [9.307114, 45.613941],\n            [9.302618, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.618438],\n            [9.302618, 45.622934],\n            [9.307114, 45.622934],\n            [9.307114, 45.618438],\n            [9.302618, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.622934],\n            [9.302618, 45.627431],\n            [9.307114, 45.627431],\n            [9.307114, 45.622934],\n            [9.302618, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.627431],\n            [9.302618, 45.631928],\n            [9.307114, 45.631928],\n            [9.307114, 45.627431],\n            [9.302618, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.302618, 45.631928],\n            [9.302618, 45.636424],\n            [9.307114, 45.636424],\n            [9.307114, 45.631928],\n            [9.302618, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.339648],\n            [9.307114, 45.344145],\n            [9.311611, 45.344145],\n            [9.311611, 45.339648],\n            [9.307114, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.344145],\n            [9.307114, 45.348642],\n            [9.311611, 45.348642],\n            [9.311611, 45.344145],\n            [9.307114, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.348642],\n            [9.307114, 45.353138],\n            [9.311611, 45.353138],\n            [9.311611, 45.348642],\n            [9.307114, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.353138],\n            [9.307114, 45.357635],\n            [9.311611, 45.357635],\n            [9.311611, 45.353138],\n            [9.307114, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.357635],\n            [9.307114, 45.362131],\n            [9.311611, 45.362131],\n            [9.311611, 45.357635],\n            [9.307114, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.362131],\n            [9.307114, 45.366628],\n            [9.311611, 45.366628],\n            [9.311611, 45.362131],\n            [9.307114, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.366628],\n            [9.307114, 45.371125],\n            [9.311611, 45.371125],\n            [9.311611, 45.366628],\n            [9.307114, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.371125],\n            [9.307114, 45.375621],\n            [9.311611, 45.375621],\n            [9.311611, 45.371125],\n            [9.307114, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.375621],\n            [9.307114, 45.380118],\n            [9.311611, 45.380118],\n            [9.311611, 45.375621],\n            [9.307114, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.380118],\n            [9.307114, 45.384614],\n            [9.311611, 45.384614],\n            [9.311611, 45.380118],\n            [9.307114, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.384614],\n            [9.307114, 45.389111],\n            [9.311611, 45.389111],\n            [9.311611, 45.384614],\n            [9.307114, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.389111],\n            [9.307114, 45.393608],\n            [9.311611, 45.393608],\n            [9.311611, 45.389111],\n            [9.307114, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.393608],\n            [9.307114, 45.398104],\n            [9.311611, 45.398104],\n            [9.311611, 45.393608],\n            [9.307114, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.398104],\n            [9.307114, 45.402601],\n            [9.311611, 45.402601],\n            [9.311611, 45.398104],\n            [9.307114, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.402601],\n            [9.307114, 45.407097],\n            [9.311611, 45.407097],\n            [9.311611, 45.402601],\n            [9.307114, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.407097],\n            [9.307114, 45.411594],\n            [9.311611, 45.411594],\n            [9.311611, 45.407097],\n            [9.307114, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.411594],\n            [9.307114, 45.416091],\n            [9.311611, 45.416091],\n            [9.311611, 45.411594],\n            [9.307114, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.416091],\n            [9.307114, 45.420587],\n            [9.311611, 45.420587],\n            [9.311611, 45.416091],\n            [9.307114, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.420587],\n            [9.307114, 45.425084],\n            [9.311611, 45.425084],\n            [9.311611, 45.420587],\n            [9.307114, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.425084],\n            [9.307114, 45.42958],\n            [9.311611, 45.42958],\n            [9.311611, 45.425084],\n            [9.307114, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.42958],\n            [9.307114, 45.434077],\n            [9.311611, 45.434077],\n            [9.311611, 45.42958],\n            [9.307114, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.434077],\n            [9.307114, 45.438574],\n            [9.311611, 45.438574],\n            [9.311611, 45.434077],\n            [9.307114, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.438574],\n            [9.307114, 45.44307],\n            [9.311611, 45.44307],\n            [9.311611, 45.438574],\n            [9.307114, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.44307],\n            [9.307114, 45.447567],\n            [9.311611, 45.447567],\n            [9.311611, 45.44307],\n            [9.307114, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.447567],\n            [9.307114, 45.452063],\n            [9.311611, 45.452063],\n            [9.311611, 45.447567],\n            [9.307114, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.452063],\n            [9.307114, 45.45656],\n            [9.311611, 45.45656],\n            [9.311611, 45.452063],\n            [9.307114, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.45656],\n            [9.307114, 45.461057],\n            [9.311611, 45.461057],\n            [9.311611, 45.45656],\n            [9.307114, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.461057],\n            [9.307114, 45.465553],\n            [9.311611, 45.465553],\n            [9.311611, 45.461057],\n            [9.307114, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.465553],\n            [9.307114, 45.47005],\n            [9.311611, 45.47005],\n            [9.311611, 45.465553],\n            [9.307114, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.47005],\n            [9.307114, 45.474547],\n            [9.311611, 45.474547],\n            [9.311611, 45.47005],\n            [9.307114, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.474547],\n            [9.307114, 45.479043],\n            [9.311611, 45.479043],\n            [9.311611, 45.474547],\n            [9.307114, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.479043],\n            [9.307114, 45.48354],\n            [9.311611, 45.48354],\n            [9.311611, 45.479043],\n            [9.307114, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.48354],\n            [9.307114, 45.488036],\n            [9.311611, 45.488036],\n            [9.311611, 45.48354],\n            [9.307114, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.488036],\n            [9.307114, 45.492533],\n            [9.311611, 45.492533],\n            [9.311611, 45.488036],\n            [9.307114, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.492533],\n            [9.307114, 45.49703],\n            [9.311611, 45.49703],\n            [9.311611, 45.492533],\n            [9.307114, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.49703],\n            [9.307114, 45.501526],\n            [9.311611, 45.501526],\n            [9.311611, 45.49703],\n            [9.307114, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.501526],\n            [9.307114, 45.506023],\n            [9.311611, 45.506023],\n            [9.311611, 45.501526],\n            [9.307114, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.506023],\n            [9.307114, 45.510519],\n            [9.311611, 45.510519],\n            [9.311611, 45.506023],\n            [9.307114, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.510519],\n            [9.307114, 45.515016],\n            [9.311611, 45.515016],\n            [9.311611, 45.510519],\n            [9.307114, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.515016],\n            [9.307114, 45.519513],\n            [9.311611, 45.519513],\n            [9.311611, 45.515016],\n            [9.307114, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.519513],\n            [9.307114, 45.524009],\n            [9.311611, 45.524009],\n            [9.311611, 45.519513],\n            [9.307114, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.524009],\n            [9.307114, 45.528506],\n            [9.311611, 45.528506],\n            [9.311611, 45.524009],\n            [9.307114, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.528506],\n            [9.307114, 45.533002],\n            [9.311611, 45.533002],\n            [9.311611, 45.528506],\n            [9.307114, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.533002],\n            [9.307114, 45.537499],\n            [9.311611, 45.537499],\n            [9.311611, 45.533002],\n            [9.307114, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.537499],\n            [9.307114, 45.541996],\n            [9.311611, 45.541996],\n            [9.311611, 45.537499],\n            [9.307114, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.541996],\n            [9.307114, 45.546492],\n            [9.311611, 45.546492],\n            [9.311611, 45.541996],\n            [9.307114, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.546492],\n            [9.307114, 45.550989],\n            [9.311611, 45.550989],\n            [9.311611, 45.546492],\n            [9.307114, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.550989],\n            [9.307114, 45.555485],\n            [9.311611, 45.555485],\n            [9.311611, 45.550989],\n            [9.307114, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.555485],\n            [9.307114, 45.559982],\n            [9.311611, 45.559982],\n            [9.311611, 45.555485],\n            [9.307114, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.559982],\n            [9.307114, 45.564479],\n            [9.311611, 45.564479],\n            [9.311611, 45.559982],\n            [9.307114, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.564479],\n            [9.307114, 45.568975],\n            [9.311611, 45.568975],\n            [9.311611, 45.564479],\n            [9.307114, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.568975],\n            [9.307114, 45.573472],\n            [9.311611, 45.573472],\n            [9.311611, 45.568975],\n            [9.307114, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.573472],\n            [9.307114, 45.577968],\n            [9.311611, 45.577968],\n            [9.311611, 45.573472],\n            [9.307114, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.577968],\n            [9.307114, 45.582465],\n            [9.311611, 45.582465],\n            [9.311611, 45.577968],\n            [9.307114, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.582465],\n            [9.307114, 45.586962],\n            [9.311611, 45.586962],\n            [9.311611, 45.582465],\n            [9.307114, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.586962],\n            [9.307114, 45.591458],\n            [9.311611, 45.591458],\n            [9.311611, 45.586962],\n            [9.307114, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.591458],\n            [9.307114, 45.595955],\n            [9.311611, 45.595955],\n            [9.311611, 45.591458],\n            [9.307114, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.595955],\n            [9.307114, 45.600451],\n            [9.311611, 45.600451],\n            [9.311611, 45.595955],\n            [9.307114, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.600451],\n            [9.307114, 45.604948],\n            [9.311611, 45.604948],\n            [9.311611, 45.600451],\n            [9.307114, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.604948],\n            [9.307114, 45.609445],\n            [9.311611, 45.609445],\n            [9.311611, 45.604948],\n            [9.307114, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.609445],\n            [9.307114, 45.613941],\n            [9.311611, 45.613941],\n            [9.311611, 45.609445],\n            [9.307114, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.613941],\n            [9.307114, 45.618438],\n            [9.311611, 45.618438],\n            [9.311611, 45.613941],\n            [9.307114, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.618438],\n            [9.307114, 45.622934],\n            [9.311611, 45.622934],\n            [9.311611, 45.618438],\n            [9.307114, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.622934],\n            [9.307114, 45.627431],\n            [9.311611, 45.627431],\n            [9.311611, 45.622934],\n            [9.307114, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.627431],\n            [9.307114, 45.631928],\n            [9.311611, 45.631928],\n            [9.311611, 45.627431],\n            [9.307114, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.307114, 45.631928],\n            [9.307114, 45.636424],\n            [9.311611, 45.636424],\n            [9.311611, 45.631928],\n            [9.307114, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.339648],\n            [9.311611, 45.344145],\n            [9.316108, 45.344145],\n            [9.316108, 45.339648],\n            [9.311611, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.344145],\n            [9.311611, 45.348642],\n            [9.316108, 45.348642],\n            [9.316108, 45.344145],\n            [9.311611, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.348642],\n            [9.311611, 45.353138],\n            [9.316108, 45.353138],\n            [9.316108, 45.348642],\n            [9.311611, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.353138],\n            [9.311611, 45.357635],\n            [9.316108, 45.357635],\n            [9.316108, 45.353138],\n            [9.311611, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.357635],\n            [9.311611, 45.362131],\n            [9.316108, 45.362131],\n            [9.316108, 45.357635],\n            [9.311611, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.362131],\n            [9.311611, 45.366628],\n            [9.316108, 45.366628],\n            [9.316108, 45.362131],\n            [9.311611, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.366628],\n            [9.311611, 45.371125],\n            [9.316108, 45.371125],\n            [9.316108, 45.366628],\n            [9.311611, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.371125],\n            [9.311611, 45.375621],\n            [9.316108, 45.375621],\n            [9.316108, 45.371125],\n            [9.311611, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.375621],\n            [9.311611, 45.380118],\n            [9.316108, 45.380118],\n            [9.316108, 45.375621],\n            [9.311611, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.380118],\n            [9.311611, 45.384614],\n            [9.316108, 45.384614],\n            [9.316108, 45.380118],\n            [9.311611, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.384614],\n            [9.311611, 45.389111],\n            [9.316108, 45.389111],\n            [9.316108, 45.384614],\n            [9.311611, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.389111],\n            [9.311611, 45.393608],\n            [9.316108, 45.393608],\n            [9.316108, 45.389111],\n            [9.311611, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.393608],\n            [9.311611, 45.398104],\n            [9.316108, 45.398104],\n            [9.316108, 45.393608],\n            [9.311611, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.398104],\n            [9.311611, 45.402601],\n            [9.316108, 45.402601],\n            [9.316108, 45.398104],\n            [9.311611, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.402601],\n            [9.311611, 45.407097],\n            [9.316108, 45.407097],\n            [9.316108, 45.402601],\n            [9.311611, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.407097],\n            [9.311611, 45.411594],\n            [9.316108, 45.411594],\n            [9.316108, 45.407097],\n            [9.311611, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.411594],\n            [9.311611, 45.416091],\n            [9.316108, 45.416091],\n            [9.316108, 45.411594],\n            [9.311611, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.416091],\n            [9.311611, 45.420587],\n            [9.316108, 45.420587],\n            [9.316108, 45.416091],\n            [9.311611, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.420587],\n            [9.311611, 45.425084],\n            [9.316108, 45.425084],\n            [9.316108, 45.420587],\n            [9.311611, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.425084],\n            [9.311611, 45.42958],\n            [9.316108, 45.42958],\n            [9.316108, 45.425084],\n            [9.311611, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.42958],\n            [9.311611, 45.434077],\n            [9.316108, 45.434077],\n            [9.316108, 45.42958],\n            [9.311611, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.434077],\n            [9.311611, 45.438574],\n            [9.316108, 45.438574],\n            [9.316108, 45.434077],\n            [9.311611, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.438574],\n            [9.311611, 45.44307],\n            [9.316108, 45.44307],\n            [9.316108, 45.438574],\n            [9.311611, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.44307],\n            [9.311611, 45.447567],\n            [9.316108, 45.447567],\n            [9.316108, 45.44307],\n            [9.311611, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.447567],\n            [9.311611, 45.452063],\n            [9.316108, 45.452063],\n            [9.316108, 45.447567],\n            [9.311611, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.452063],\n            [9.311611, 45.45656],\n            [9.316108, 45.45656],\n            [9.316108, 45.452063],\n            [9.311611, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.45656],\n            [9.311611, 45.461057],\n            [9.316108, 45.461057],\n            [9.316108, 45.45656],\n            [9.311611, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.461057],\n            [9.311611, 45.465553],\n            [9.316108, 45.465553],\n            [9.316108, 45.461057],\n            [9.311611, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.465553],\n            [9.311611, 45.47005],\n            [9.316108, 45.47005],\n            [9.316108, 45.465553],\n            [9.311611, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.47005],\n            [9.311611, 45.474547],\n            [9.316108, 45.474547],\n            [9.316108, 45.47005],\n            [9.311611, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.474547],\n            [9.311611, 45.479043],\n            [9.316108, 45.479043],\n            [9.316108, 45.474547],\n            [9.311611, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.479043],\n            [9.311611, 45.48354],\n            [9.316108, 45.48354],\n            [9.316108, 45.479043],\n            [9.311611, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.48354],\n            [9.311611, 45.488036],\n            [9.316108, 45.488036],\n            [9.316108, 45.48354],\n            [9.311611, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.488036],\n            [9.311611, 45.492533],\n            [9.316108, 45.492533],\n            [9.316108, 45.488036],\n            [9.311611, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.492533],\n            [9.311611, 45.49703],\n            [9.316108, 45.49703],\n            [9.316108, 45.492533],\n            [9.311611, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.49703],\n            [9.311611, 45.501526],\n            [9.316108, 45.501526],\n            [9.316108, 45.49703],\n            [9.311611, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.501526],\n            [9.311611, 45.506023],\n            [9.316108, 45.506023],\n            [9.316108, 45.501526],\n            [9.311611, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.506023],\n            [9.311611, 45.510519],\n            [9.316108, 45.510519],\n            [9.316108, 45.506023],\n            [9.311611, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.510519],\n            [9.311611, 45.515016],\n            [9.316108, 45.515016],\n            [9.316108, 45.510519],\n            [9.311611, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.515016],\n            [9.311611, 45.519513],\n            [9.316108, 45.519513],\n            [9.316108, 45.515016],\n            [9.311611, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.519513],\n            [9.311611, 45.524009],\n            [9.316108, 45.524009],\n            [9.316108, 45.519513],\n            [9.311611, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.524009],\n            [9.311611, 45.528506],\n            [9.316108, 45.528506],\n            [9.316108, 45.524009],\n            [9.311611, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.528506],\n            [9.311611, 45.533002],\n            [9.316108, 45.533002],\n            [9.316108, 45.528506],\n            [9.311611, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.533002],\n            [9.311611, 45.537499],\n            [9.316108, 45.537499],\n            [9.316108, 45.533002],\n            [9.311611, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.537499],\n            [9.311611, 45.541996],\n            [9.316108, 45.541996],\n            [9.316108, 45.537499],\n            [9.311611, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.541996],\n            [9.311611, 45.546492],\n            [9.316108, 45.546492],\n            [9.316108, 45.541996],\n            [9.311611, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.546492],\n            [9.311611, 45.550989],\n            [9.316108, 45.550989],\n            [9.316108, 45.546492],\n            [9.311611, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.550989],\n            [9.311611, 45.555485],\n            [9.316108, 45.555485],\n            [9.316108, 45.550989],\n            [9.311611, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.555485],\n            [9.311611, 45.559982],\n            [9.316108, 45.559982],\n            [9.316108, 45.555485],\n            [9.311611, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.559982],\n            [9.311611, 45.564479],\n            [9.316108, 45.564479],\n            [9.316108, 45.559982],\n            [9.311611, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.564479],\n            [9.311611, 45.568975],\n            [9.316108, 45.568975],\n            [9.316108, 45.564479],\n            [9.311611, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.568975],\n            [9.311611, 45.573472],\n            [9.316108, 45.573472],\n            [9.316108, 45.568975],\n            [9.311611, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.573472],\n            [9.311611, 45.577968],\n            [9.316108, 45.577968],\n            [9.316108, 45.573472],\n            [9.311611, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.577968],\n            [9.311611, 45.582465],\n            [9.316108, 45.582465],\n            [9.316108, 45.577968],\n            [9.311611, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.582465],\n            [9.311611, 45.586962],\n            [9.316108, 45.586962],\n            [9.316108, 45.582465],\n            [9.311611, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.586962],\n            [9.311611, 45.591458],\n            [9.316108, 45.591458],\n            [9.316108, 45.586962],\n            [9.311611, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.591458],\n            [9.311611, 45.595955],\n            [9.316108, 45.595955],\n            [9.316108, 45.591458],\n            [9.311611, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.595955],\n            [9.311611, 45.600451],\n            [9.316108, 45.600451],\n            [9.316108, 45.595955],\n            [9.311611, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.600451],\n            [9.311611, 45.604948],\n            [9.316108, 45.604948],\n            [9.316108, 45.600451],\n            [9.311611, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.604948],\n            [9.311611, 45.609445],\n            [9.316108, 45.609445],\n            [9.316108, 45.604948],\n            [9.311611, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.609445],\n            [9.311611, 45.613941],\n            [9.316108, 45.613941],\n            [9.316108, 45.609445],\n            [9.311611, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.613941],\n            [9.311611, 45.618438],\n            [9.316108, 45.618438],\n            [9.316108, 45.613941],\n            [9.311611, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.618438],\n            [9.311611, 45.622934],\n            [9.316108, 45.622934],\n            [9.316108, 45.618438],\n            [9.311611, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.622934],\n            [9.311611, 45.627431],\n            [9.316108, 45.627431],\n            [9.316108, 45.622934],\n            [9.311611, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.627431],\n            [9.311611, 45.631928],\n            [9.316108, 45.631928],\n            [9.316108, 45.627431],\n            [9.311611, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.311611, 45.631928],\n            [9.311611, 45.636424],\n            [9.316108, 45.636424],\n            [9.316108, 45.631928],\n            [9.311611, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.339648],\n            [9.316108, 45.344145],\n            [9.320604, 45.344145],\n            [9.320604, 45.339648],\n            [9.316108, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.344145],\n            [9.316108, 45.348642],\n            [9.320604, 45.348642],\n            [9.320604, 45.344145],\n            [9.316108, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.348642],\n            [9.316108, 45.353138],\n            [9.320604, 45.353138],\n            [9.320604, 45.348642],\n            [9.316108, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.353138],\n            [9.316108, 45.357635],\n            [9.320604, 45.357635],\n            [9.320604, 45.353138],\n            [9.316108, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.357635],\n            [9.316108, 45.362131],\n            [9.320604, 45.362131],\n            [9.320604, 45.357635],\n            [9.316108, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.362131],\n            [9.316108, 45.366628],\n            [9.320604, 45.366628],\n            [9.320604, 45.362131],\n            [9.316108, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.366628],\n            [9.316108, 45.371125],\n            [9.320604, 45.371125],\n            [9.320604, 45.366628],\n            [9.316108, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.371125],\n            [9.316108, 45.375621],\n            [9.320604, 45.375621],\n            [9.320604, 45.371125],\n            [9.316108, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.375621],\n            [9.316108, 45.380118],\n            [9.320604, 45.380118],\n            [9.320604, 45.375621],\n            [9.316108, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.380118],\n            [9.316108, 45.384614],\n            [9.320604, 45.384614],\n            [9.320604, 45.380118],\n            [9.316108, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.384614],\n            [9.316108, 45.389111],\n            [9.320604, 45.389111],\n            [9.320604, 45.384614],\n            [9.316108, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.389111],\n            [9.316108, 45.393608],\n            [9.320604, 45.393608],\n            [9.320604, 45.389111],\n            [9.316108, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.393608],\n            [9.316108, 45.398104],\n            [9.320604, 45.398104],\n            [9.320604, 45.393608],\n            [9.316108, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.398104],\n            [9.316108, 45.402601],\n            [9.320604, 45.402601],\n            [9.320604, 45.398104],\n            [9.316108, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.402601],\n            [9.316108, 45.407097],\n            [9.320604, 45.407097],\n            [9.320604, 45.402601],\n            [9.316108, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.407097],\n            [9.316108, 45.411594],\n            [9.320604, 45.411594],\n            [9.320604, 45.407097],\n            [9.316108, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.411594],\n            [9.316108, 45.416091],\n            [9.320604, 45.416091],\n            [9.320604, 45.411594],\n            [9.316108, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.416091],\n            [9.316108, 45.420587],\n            [9.320604, 45.420587],\n            [9.320604, 45.416091],\n            [9.316108, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.420587],\n            [9.316108, 45.425084],\n            [9.320604, 45.425084],\n            [9.320604, 45.420587],\n            [9.316108, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.425084],\n            [9.316108, 45.42958],\n            [9.320604, 45.42958],\n            [9.320604, 45.425084],\n            [9.316108, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.42958],\n            [9.316108, 45.434077],\n            [9.320604, 45.434077],\n            [9.320604, 45.42958],\n            [9.316108, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.434077],\n            [9.316108, 45.438574],\n            [9.320604, 45.438574],\n            [9.320604, 45.434077],\n            [9.316108, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.438574],\n            [9.316108, 45.44307],\n            [9.320604, 45.44307],\n            [9.320604, 45.438574],\n            [9.316108, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.44307],\n            [9.316108, 45.447567],\n            [9.320604, 45.447567],\n            [9.320604, 45.44307],\n            [9.316108, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.447567],\n            [9.316108, 45.452063],\n            [9.320604, 45.452063],\n            [9.320604, 45.447567],\n            [9.316108, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.452063],\n            [9.316108, 45.45656],\n            [9.320604, 45.45656],\n            [9.320604, 45.452063],\n            [9.316108, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.45656],\n            [9.316108, 45.461057],\n            [9.320604, 45.461057],\n            [9.320604, 45.45656],\n            [9.316108, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.461057],\n            [9.316108, 45.465553],\n            [9.320604, 45.465553],\n            [9.320604, 45.461057],\n            [9.316108, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.465553],\n            [9.316108, 45.47005],\n            [9.320604, 45.47005],\n            [9.320604, 45.465553],\n            [9.316108, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.47005],\n            [9.316108, 45.474547],\n            [9.320604, 45.474547],\n            [9.320604, 45.47005],\n            [9.316108, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.474547],\n            [9.316108, 45.479043],\n            [9.320604, 45.479043],\n            [9.320604, 45.474547],\n            [9.316108, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.479043],\n            [9.316108, 45.48354],\n            [9.320604, 45.48354],\n            [9.320604, 45.479043],\n            [9.316108, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.48354],\n            [9.316108, 45.488036],\n            [9.320604, 45.488036],\n            [9.320604, 45.48354],\n            [9.316108, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.488036],\n            [9.316108, 45.492533],\n            [9.320604, 45.492533],\n            [9.320604, 45.488036],\n            [9.316108, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.492533],\n            [9.316108, 45.49703],\n            [9.320604, 45.49703],\n            [9.320604, 45.492533],\n            [9.316108, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.49703],\n            [9.316108, 45.501526],\n            [9.320604, 45.501526],\n            [9.320604, 45.49703],\n            [9.316108, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.501526],\n            [9.316108, 45.506023],\n            [9.320604, 45.506023],\n            [9.320604, 45.501526],\n            [9.316108, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.506023],\n            [9.316108, 45.510519],\n            [9.320604, 45.510519],\n            [9.320604, 45.506023],\n            [9.316108, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.510519],\n            [9.316108, 45.515016],\n            [9.320604, 45.515016],\n            [9.320604, 45.510519],\n            [9.316108, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.515016],\n            [9.316108, 45.519513],\n            [9.320604, 45.519513],\n            [9.320604, 45.515016],\n            [9.316108, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.519513],\n            [9.316108, 45.524009],\n            [9.320604, 45.524009],\n            [9.320604, 45.519513],\n            [9.316108, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.524009],\n            [9.316108, 45.528506],\n            [9.320604, 45.528506],\n            [9.320604, 45.524009],\n            [9.316108, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.528506],\n            [9.316108, 45.533002],\n            [9.320604, 45.533002],\n            [9.320604, 45.528506],\n            [9.316108, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.533002],\n            [9.316108, 45.537499],\n            [9.320604, 45.537499],\n            [9.320604, 45.533002],\n            [9.316108, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.537499],\n            [9.316108, 45.541996],\n            [9.320604, 45.541996],\n            [9.320604, 45.537499],\n            [9.316108, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.541996],\n            [9.316108, 45.546492],\n            [9.320604, 45.546492],\n            [9.320604, 45.541996],\n            [9.316108, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.546492],\n            [9.316108, 45.550989],\n            [9.320604, 45.550989],\n            [9.320604, 45.546492],\n            [9.316108, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.550989],\n            [9.316108, 45.555485],\n            [9.320604, 45.555485],\n            [9.320604, 45.550989],\n            [9.316108, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.555485],\n            [9.316108, 45.559982],\n            [9.320604, 45.559982],\n            [9.320604, 45.555485],\n            [9.316108, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.559982],\n            [9.316108, 45.564479],\n            [9.320604, 45.564479],\n            [9.320604, 45.559982],\n            [9.316108, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.564479],\n            [9.316108, 45.568975],\n            [9.320604, 45.568975],\n            [9.320604, 45.564479],\n            [9.316108, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.568975],\n            [9.316108, 45.573472],\n            [9.320604, 45.573472],\n            [9.320604, 45.568975],\n            [9.316108, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.573472],\n            [9.316108, 45.577968],\n            [9.320604, 45.577968],\n            [9.320604, 45.573472],\n            [9.316108, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.577968],\n            [9.316108, 45.582465],\n            [9.320604, 45.582465],\n            [9.320604, 45.577968],\n            [9.316108, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.582465],\n            [9.316108, 45.586962],\n            [9.320604, 45.586962],\n            [9.320604, 45.582465],\n            [9.316108, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.586962],\n            [9.316108, 45.591458],\n            [9.320604, 45.591458],\n            [9.320604, 45.586962],\n            [9.316108, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.591458],\n            [9.316108, 45.595955],\n            [9.320604, 45.595955],\n            [9.320604, 45.591458],\n            [9.316108, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.595955],\n            [9.316108, 45.600451],\n            [9.320604, 45.600451],\n            [9.320604, 45.595955],\n            [9.316108, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.600451],\n            [9.316108, 45.604948],\n            [9.320604, 45.604948],\n            [9.320604, 45.600451],\n            [9.316108, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.604948],\n            [9.316108, 45.609445],\n            [9.320604, 45.609445],\n            [9.320604, 45.604948],\n            [9.316108, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.609445],\n            [9.316108, 45.613941],\n            [9.320604, 45.613941],\n            [9.320604, 45.609445],\n            [9.316108, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.613941],\n            [9.316108, 45.618438],\n            [9.320604, 45.618438],\n            [9.320604, 45.613941],\n            [9.316108, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.618438],\n            [9.316108, 45.622934],\n            [9.320604, 45.622934],\n            [9.320604, 45.618438],\n            [9.316108, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.622934],\n            [9.316108, 45.627431],\n            [9.320604, 45.627431],\n            [9.320604, 45.622934],\n            [9.316108, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.627431],\n            [9.316108, 45.631928],\n            [9.320604, 45.631928],\n            [9.320604, 45.627431],\n            [9.316108, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.316108, 45.631928],\n            [9.316108, 45.636424],\n            [9.320604, 45.636424],\n            [9.320604, 45.631928],\n            [9.316108, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.339648],\n            [9.320604, 45.344145],\n            [9.325101, 45.344145],\n            [9.325101, 45.339648],\n            [9.320604, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.344145],\n            [9.320604, 45.348642],\n            [9.325101, 45.348642],\n            [9.325101, 45.344145],\n            [9.320604, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.348642],\n            [9.320604, 45.353138],\n            [9.325101, 45.353138],\n            [9.325101, 45.348642],\n            [9.320604, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.353138],\n            [9.320604, 45.357635],\n            [9.325101, 45.357635],\n            [9.325101, 45.353138],\n            [9.320604, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.357635],\n            [9.320604, 45.362131],\n            [9.325101, 45.362131],\n            [9.325101, 45.357635],\n            [9.320604, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.362131],\n            [9.320604, 45.366628],\n            [9.325101, 45.366628],\n            [9.325101, 45.362131],\n            [9.320604, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.366628],\n            [9.320604, 45.371125],\n            [9.325101, 45.371125],\n            [9.325101, 45.366628],\n            [9.320604, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.371125],\n            [9.320604, 45.375621],\n            [9.325101, 45.375621],\n            [9.325101, 45.371125],\n            [9.320604, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.375621],\n            [9.320604, 45.380118],\n            [9.325101, 45.380118],\n            [9.325101, 45.375621],\n            [9.320604, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.380118],\n            [9.320604, 45.384614],\n            [9.325101, 45.384614],\n            [9.325101, 45.380118],\n            [9.320604, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.384614],\n            [9.320604, 45.389111],\n            [9.325101, 45.389111],\n            [9.325101, 45.384614],\n            [9.320604, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.389111],\n            [9.320604, 45.393608],\n            [9.325101, 45.393608],\n            [9.325101, 45.389111],\n            [9.320604, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.393608],\n            [9.320604, 45.398104],\n            [9.325101, 45.398104],\n            [9.325101, 45.393608],\n            [9.320604, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.398104],\n            [9.320604, 45.402601],\n            [9.325101, 45.402601],\n            [9.325101, 45.398104],\n            [9.320604, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.402601],\n            [9.320604, 45.407097],\n            [9.325101, 45.407097],\n            [9.325101, 45.402601],\n            [9.320604, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.407097],\n            [9.320604, 45.411594],\n            [9.325101, 45.411594],\n            [9.325101, 45.407097],\n            [9.320604, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.411594],\n            [9.320604, 45.416091],\n            [9.325101, 45.416091],\n            [9.325101, 45.411594],\n            [9.320604, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.416091],\n            [9.320604, 45.420587],\n            [9.325101, 45.420587],\n            [9.325101, 45.416091],\n            [9.320604, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.420587],\n            [9.320604, 45.425084],\n            [9.325101, 45.425084],\n            [9.325101, 45.420587],\n            [9.320604, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.425084],\n            [9.320604, 45.42958],\n            [9.325101, 45.42958],\n            [9.325101, 45.425084],\n            [9.320604, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.42958],\n            [9.320604, 45.434077],\n            [9.325101, 45.434077],\n            [9.325101, 45.42958],\n            [9.320604, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.434077],\n            [9.320604, 45.438574],\n            [9.325101, 45.438574],\n            [9.325101, 45.434077],\n            [9.320604, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.438574],\n            [9.320604, 45.44307],\n            [9.325101, 45.44307],\n            [9.325101, 45.438574],\n            [9.320604, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.44307],\n            [9.320604, 45.447567],\n            [9.325101, 45.447567],\n            [9.325101, 45.44307],\n            [9.320604, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.447567],\n            [9.320604, 45.452063],\n            [9.325101, 45.452063],\n            [9.325101, 45.447567],\n            [9.320604, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.452063],\n            [9.320604, 45.45656],\n            [9.325101, 45.45656],\n            [9.325101, 45.452063],\n            [9.320604, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.45656],\n            [9.320604, 45.461057],\n            [9.325101, 45.461057],\n            [9.325101, 45.45656],\n            [9.320604, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.461057],\n            [9.320604, 45.465553],\n            [9.325101, 45.465553],\n            [9.325101, 45.461057],\n            [9.320604, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.465553],\n            [9.320604, 45.47005],\n            [9.325101, 45.47005],\n            [9.325101, 45.465553],\n            [9.320604, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.47005],\n            [9.320604, 45.474547],\n            [9.325101, 45.474547],\n            [9.325101, 45.47005],\n            [9.320604, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.474547],\n            [9.320604, 45.479043],\n            [9.325101, 45.479043],\n            [9.325101, 45.474547],\n            [9.320604, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.479043],\n            [9.320604, 45.48354],\n            [9.325101, 45.48354],\n            [9.325101, 45.479043],\n            [9.320604, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.48354],\n            [9.320604, 45.488036],\n            [9.325101, 45.488036],\n            [9.325101, 45.48354],\n            [9.320604, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.488036],\n            [9.320604, 45.492533],\n            [9.325101, 45.492533],\n            [9.325101, 45.488036],\n            [9.320604, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.492533],\n            [9.320604, 45.49703],\n            [9.325101, 45.49703],\n            [9.325101, 45.492533],\n            [9.320604, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.49703],\n            [9.320604, 45.501526],\n            [9.325101, 45.501526],\n            [9.325101, 45.49703],\n            [9.320604, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.501526],\n            [9.320604, 45.506023],\n            [9.325101, 45.506023],\n            [9.325101, 45.501526],\n            [9.320604, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.506023],\n            [9.320604, 45.510519],\n            [9.325101, 45.510519],\n            [9.325101, 45.506023],\n            [9.320604, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.510519],\n            [9.320604, 45.515016],\n            [9.325101, 45.515016],\n            [9.325101, 45.510519],\n            [9.320604, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.515016],\n            [9.320604, 45.519513],\n            [9.325101, 45.519513],\n            [9.325101, 45.515016],\n            [9.320604, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.519513],\n            [9.320604, 45.524009],\n            [9.325101, 45.524009],\n            [9.325101, 45.519513],\n            [9.320604, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.524009],\n            [9.320604, 45.528506],\n            [9.325101, 45.528506],\n            [9.325101, 45.524009],\n            [9.320604, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.528506],\n            [9.320604, 45.533002],\n            [9.325101, 45.533002],\n            [9.325101, 45.528506],\n            [9.320604, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.533002],\n            [9.320604, 45.537499],\n            [9.325101, 45.537499],\n            [9.325101, 45.533002],\n            [9.320604, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.537499],\n            [9.320604, 45.541996],\n            [9.325101, 45.541996],\n            [9.325101, 45.537499],\n            [9.320604, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.541996],\n            [9.320604, 45.546492],\n            [9.325101, 45.546492],\n            [9.325101, 45.541996],\n            [9.320604, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.546492],\n            [9.320604, 45.550989],\n            [9.325101, 45.550989],\n            [9.325101, 45.546492],\n            [9.320604, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.550989],\n            [9.320604, 45.555485],\n            [9.325101, 45.555485],\n            [9.325101, 45.550989],\n            [9.320604, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.555485],\n            [9.320604, 45.559982],\n            [9.325101, 45.559982],\n            [9.325101, 45.555485],\n            [9.320604, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.559982],\n            [9.320604, 45.564479],\n            [9.325101, 45.564479],\n            [9.325101, 45.559982],\n            [9.320604, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.564479],\n            [9.320604, 45.568975],\n            [9.325101, 45.568975],\n            [9.325101, 45.564479],\n            [9.320604, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.568975],\n            [9.320604, 45.573472],\n            [9.325101, 45.573472],\n            [9.325101, 45.568975],\n            [9.320604, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.573472],\n            [9.320604, 45.577968],\n            [9.325101, 45.577968],\n            [9.325101, 45.573472],\n            [9.320604, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.577968],\n            [9.320604, 45.582465],\n            [9.325101, 45.582465],\n            [9.325101, 45.577968],\n            [9.320604, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.582465],\n            [9.320604, 45.586962],\n            [9.325101, 45.586962],\n            [9.325101, 45.582465],\n            [9.320604, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.586962],\n            [9.320604, 45.591458],\n            [9.325101, 45.591458],\n            [9.325101, 45.586962],\n            [9.320604, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.591458],\n            [9.320604, 45.595955],\n            [9.325101, 45.595955],\n            [9.325101, 45.591458],\n            [9.320604, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.595955],\n            [9.320604, 45.600451],\n            [9.325101, 45.600451],\n            [9.325101, 45.595955],\n            [9.320604, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.600451],\n            [9.320604, 45.604948],\n            [9.325101, 45.604948],\n            [9.325101, 45.600451],\n            [9.320604, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.604948],\n            [9.320604, 45.609445],\n            [9.325101, 45.609445],\n            [9.325101, 45.604948],\n            [9.320604, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.609445],\n            [9.320604, 45.613941],\n            [9.325101, 45.613941],\n            [9.325101, 45.609445],\n            [9.320604, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.613941],\n            [9.320604, 45.618438],\n            [9.325101, 45.618438],\n            [9.325101, 45.613941],\n            [9.320604, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.618438],\n            [9.320604, 45.622934],\n            [9.325101, 45.622934],\n            [9.325101, 45.618438],\n            [9.320604, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.622934],\n            [9.320604, 45.627431],\n            [9.325101, 45.627431],\n            [9.325101, 45.622934],\n            [9.320604, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.627431],\n            [9.320604, 45.631928],\n            [9.325101, 45.631928],\n            [9.325101, 45.627431],\n            [9.320604, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.320604, 45.631928],\n            [9.320604, 45.636424],\n            [9.325101, 45.636424],\n            [9.325101, 45.631928],\n            [9.320604, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.339648],\n            [9.325101, 45.344145],\n            [9.329597, 45.344145],\n            [9.329597, 45.339648],\n            [9.325101, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.344145],\n            [9.325101, 45.348642],\n            [9.329597, 45.348642],\n            [9.329597, 45.344145],\n            [9.325101, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.348642],\n            [9.325101, 45.353138],\n            [9.329597, 45.353138],\n            [9.329597, 45.348642],\n            [9.325101, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.353138],\n            [9.325101, 45.357635],\n            [9.329597, 45.357635],\n            [9.329597, 45.353138],\n            [9.325101, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.357635],\n            [9.325101, 45.362131],\n            [9.329597, 45.362131],\n            [9.329597, 45.357635],\n            [9.325101, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.362131],\n            [9.325101, 45.366628],\n            [9.329597, 45.366628],\n            [9.329597, 45.362131],\n            [9.325101, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.366628],\n            [9.325101, 45.371125],\n            [9.329597, 45.371125],\n            [9.329597, 45.366628],\n            [9.325101, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.371125],\n            [9.325101, 45.375621],\n            [9.329597, 45.375621],\n            [9.329597, 45.371125],\n            [9.325101, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.375621],\n            [9.325101, 45.380118],\n            [9.329597, 45.380118],\n            [9.329597, 45.375621],\n            [9.325101, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.380118],\n            [9.325101, 45.384614],\n            [9.329597, 45.384614],\n            [9.329597, 45.380118],\n            [9.325101, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.384614],\n            [9.325101, 45.389111],\n            [9.329597, 45.389111],\n            [9.329597, 45.384614],\n            [9.325101, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.389111],\n            [9.325101, 45.393608],\n            [9.329597, 45.393608],\n            [9.329597, 45.389111],\n            [9.325101, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.393608],\n            [9.325101, 45.398104],\n            [9.329597, 45.398104],\n            [9.329597, 45.393608],\n            [9.325101, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.398104],\n            [9.325101, 45.402601],\n            [9.329597, 45.402601],\n            [9.329597, 45.398104],\n            [9.325101, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.402601],\n            [9.325101, 45.407097],\n            [9.329597, 45.407097],\n            [9.329597, 45.402601],\n            [9.325101, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.407097],\n            [9.325101, 45.411594],\n            [9.329597, 45.411594],\n            [9.329597, 45.407097],\n            [9.325101, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.411594],\n            [9.325101, 45.416091],\n            [9.329597, 45.416091],\n            [9.329597, 45.411594],\n            [9.325101, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.416091],\n            [9.325101, 45.420587],\n            [9.329597, 45.420587],\n            [9.329597, 45.416091],\n            [9.325101, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.420587],\n            [9.325101, 45.425084],\n            [9.329597, 45.425084],\n            [9.329597, 45.420587],\n            [9.325101, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.425084],\n            [9.325101, 45.42958],\n            [9.329597, 45.42958],\n            [9.329597, 45.425084],\n            [9.325101, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.42958],\n            [9.325101, 45.434077],\n            [9.329597, 45.434077],\n            [9.329597, 45.42958],\n            [9.325101, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.434077],\n            [9.325101, 45.438574],\n            [9.329597, 45.438574],\n            [9.329597, 45.434077],\n            [9.325101, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.438574],\n            [9.325101, 45.44307],\n            [9.329597, 45.44307],\n            [9.329597, 45.438574],\n            [9.325101, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.44307],\n            [9.325101, 45.447567],\n            [9.329597, 45.447567],\n            [9.329597, 45.44307],\n            [9.325101, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.447567],\n            [9.325101, 45.452063],\n            [9.329597, 45.452063],\n            [9.329597, 45.447567],\n            [9.325101, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.452063],\n            [9.325101, 45.45656],\n            [9.329597, 45.45656],\n            [9.329597, 45.452063],\n            [9.325101, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.45656],\n            [9.325101, 45.461057],\n            [9.329597, 45.461057],\n            [9.329597, 45.45656],\n            [9.325101, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.461057],\n            [9.325101, 45.465553],\n            [9.329597, 45.465553],\n            [9.329597, 45.461057],\n            [9.325101, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.465553],\n            [9.325101, 45.47005],\n            [9.329597, 45.47005],\n            [9.329597, 45.465553],\n            [9.325101, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.47005],\n            [9.325101, 45.474547],\n            [9.329597, 45.474547],\n            [9.329597, 45.47005],\n            [9.325101, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.474547],\n            [9.325101, 45.479043],\n            [9.329597, 45.479043],\n            [9.329597, 45.474547],\n            [9.325101, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.479043],\n            [9.325101, 45.48354],\n            [9.329597, 45.48354],\n            [9.329597, 45.479043],\n            [9.325101, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.48354],\n            [9.325101, 45.488036],\n            [9.329597, 45.488036],\n            [9.329597, 45.48354],\n            [9.325101, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.488036],\n            [9.325101, 45.492533],\n            [9.329597, 45.492533],\n            [9.329597, 45.488036],\n            [9.325101, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.492533],\n            [9.325101, 45.49703],\n            [9.329597, 45.49703],\n            [9.329597, 45.492533],\n            [9.325101, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.49703],\n            [9.325101, 45.501526],\n            [9.329597, 45.501526],\n            [9.329597, 45.49703],\n            [9.325101, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.501526],\n            [9.325101, 45.506023],\n            [9.329597, 45.506023],\n            [9.329597, 45.501526],\n            [9.325101, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.506023],\n            [9.325101, 45.510519],\n            [9.329597, 45.510519],\n            [9.329597, 45.506023],\n            [9.325101, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.510519],\n            [9.325101, 45.515016],\n            [9.329597, 45.515016],\n            [9.329597, 45.510519],\n            [9.325101, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.515016],\n            [9.325101, 45.519513],\n            [9.329597, 45.519513],\n            [9.329597, 45.515016],\n            [9.325101, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.519513],\n            [9.325101, 45.524009],\n            [9.329597, 45.524009],\n            [9.329597, 45.519513],\n            [9.325101, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.524009],\n            [9.325101, 45.528506],\n            [9.329597, 45.528506],\n            [9.329597, 45.524009],\n            [9.325101, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.528506],\n            [9.325101, 45.533002],\n            [9.329597, 45.533002],\n            [9.329597, 45.528506],\n            [9.325101, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.533002],\n            [9.325101, 45.537499],\n            [9.329597, 45.537499],\n            [9.329597, 45.533002],\n            [9.325101, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.537499],\n            [9.325101, 45.541996],\n            [9.329597, 45.541996],\n            [9.329597, 45.537499],\n            [9.325101, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.541996],\n            [9.325101, 45.546492],\n            [9.329597, 45.546492],\n            [9.329597, 45.541996],\n            [9.325101, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.546492],\n            [9.325101, 45.550989],\n            [9.329597, 45.550989],\n            [9.329597, 45.546492],\n            [9.325101, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.550989],\n            [9.325101, 45.555485],\n            [9.329597, 45.555485],\n            [9.329597, 45.550989],\n            [9.325101, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.555485],\n            [9.325101, 45.559982],\n            [9.329597, 45.559982],\n            [9.329597, 45.555485],\n            [9.325101, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.559982],\n            [9.325101, 45.564479],\n            [9.329597, 45.564479],\n            [9.329597, 45.559982],\n            [9.325101, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.564479],\n            [9.325101, 45.568975],\n            [9.329597, 45.568975],\n            [9.329597, 45.564479],\n            [9.325101, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.568975],\n            [9.325101, 45.573472],\n            [9.329597, 45.573472],\n            [9.329597, 45.568975],\n            [9.325101, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.573472],\n            [9.325101, 45.577968],\n            [9.329597, 45.577968],\n            [9.329597, 45.573472],\n            [9.325101, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.577968],\n            [9.325101, 45.582465],\n            [9.329597, 45.582465],\n            [9.329597, 45.577968],\n            [9.325101, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.582465],\n            [9.325101, 45.586962],\n            [9.329597, 45.586962],\n            [9.329597, 45.582465],\n            [9.325101, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.586962],\n            [9.325101, 45.591458],\n            [9.329597, 45.591458],\n            [9.329597, 45.586962],\n            [9.325101, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.591458],\n            [9.325101, 45.595955],\n            [9.329597, 45.595955],\n            [9.329597, 45.591458],\n            [9.325101, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.595955],\n            [9.325101, 45.600451],\n            [9.329597, 45.600451],\n            [9.329597, 45.595955],\n            [9.325101, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.600451],\n            [9.325101, 45.604948],\n            [9.329597, 45.604948],\n            [9.329597, 45.600451],\n            [9.325101, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.604948],\n            [9.325101, 45.609445],\n            [9.329597, 45.609445],\n            [9.329597, 45.604948],\n            [9.325101, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.609445],\n            [9.325101, 45.613941],\n            [9.329597, 45.613941],\n            [9.329597, 45.609445],\n            [9.325101, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.613941],\n            [9.325101, 45.618438],\n            [9.329597, 45.618438],\n            [9.329597, 45.613941],\n            [9.325101, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.618438],\n            [9.325101, 45.622934],\n            [9.329597, 45.622934],\n            [9.329597, 45.618438],\n            [9.325101, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.622934],\n            [9.325101, 45.627431],\n            [9.329597, 45.627431],\n            [9.329597, 45.622934],\n            [9.325101, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.627431],\n            [9.325101, 45.631928],\n            [9.329597, 45.631928],\n            [9.329597, 45.627431],\n            [9.325101, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.325101, 45.631928],\n            [9.325101, 45.636424],\n            [9.329597, 45.636424],\n            [9.329597, 45.631928],\n            [9.325101, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.339648],\n            [9.329597, 45.344145],\n            [9.334094, 45.344145],\n            [9.334094, 45.339648],\n            [9.329597, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.344145],\n            [9.329597, 45.348642],\n            [9.334094, 45.348642],\n            [9.334094, 45.344145],\n            [9.329597, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.348642],\n            [9.329597, 45.353138],\n            [9.334094, 45.353138],\n            [9.334094, 45.348642],\n            [9.329597, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.353138],\n            [9.329597, 45.357635],\n            [9.334094, 45.357635],\n            [9.334094, 45.353138],\n            [9.329597, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.357635],\n            [9.329597, 45.362131],\n            [9.334094, 45.362131],\n            [9.334094, 45.357635],\n            [9.329597, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.362131],\n            [9.329597, 45.366628],\n            [9.334094, 45.366628],\n            [9.334094, 45.362131],\n            [9.329597, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.366628],\n            [9.329597, 45.371125],\n            [9.334094, 45.371125],\n            [9.334094, 45.366628],\n            [9.329597, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.371125],\n            [9.329597, 45.375621],\n            [9.334094, 45.375621],\n            [9.334094, 45.371125],\n            [9.329597, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.375621],\n            [9.329597, 45.380118],\n            [9.334094, 45.380118],\n            [9.334094, 45.375621],\n            [9.329597, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.380118],\n            [9.329597, 45.384614],\n            [9.334094, 45.384614],\n            [9.334094, 45.380118],\n            [9.329597, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.384614],\n            [9.329597, 45.389111],\n            [9.334094, 45.389111],\n            [9.334094, 45.384614],\n            [9.329597, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.389111],\n            [9.329597, 45.393608],\n            [9.334094, 45.393608],\n            [9.334094, 45.389111],\n            [9.329597, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.393608],\n            [9.329597, 45.398104],\n            [9.334094, 45.398104],\n            [9.334094, 45.393608],\n            [9.329597, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.398104],\n            [9.329597, 45.402601],\n            [9.334094, 45.402601],\n            [9.334094, 45.398104],\n            [9.329597, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.402601],\n            [9.329597, 45.407097],\n            [9.334094, 45.407097],\n            [9.334094, 45.402601],\n            [9.329597, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.407097],\n            [9.329597, 45.411594],\n            [9.334094, 45.411594],\n            [9.334094, 45.407097],\n            [9.329597, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.411594],\n            [9.329597, 45.416091],\n            [9.334094, 45.416091],\n            [9.334094, 45.411594],\n            [9.329597, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.416091],\n            [9.329597, 45.420587],\n            [9.334094, 45.420587],\n            [9.334094, 45.416091],\n            [9.329597, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.420587],\n            [9.329597, 45.425084],\n            [9.334094, 45.425084],\n            [9.334094, 45.420587],\n            [9.329597, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.425084],\n            [9.329597, 45.42958],\n            [9.334094, 45.42958],\n            [9.334094, 45.425084],\n            [9.329597, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.42958],\n            [9.329597, 45.434077],\n            [9.334094, 45.434077],\n            [9.334094, 45.42958],\n            [9.329597, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.434077],\n            [9.329597, 45.438574],\n            [9.334094, 45.438574],\n            [9.334094, 45.434077],\n            [9.329597, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.438574],\n            [9.329597, 45.44307],\n            [9.334094, 45.44307],\n            [9.334094, 45.438574],\n            [9.329597, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.44307],\n            [9.329597, 45.447567],\n            [9.334094, 45.447567],\n            [9.334094, 45.44307],\n            [9.329597, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.447567],\n            [9.329597, 45.452063],\n            [9.334094, 45.452063],\n            [9.334094, 45.447567],\n            [9.329597, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.452063],\n            [9.329597, 45.45656],\n            [9.334094, 45.45656],\n            [9.334094, 45.452063],\n            [9.329597, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.45656],\n            [9.329597, 45.461057],\n            [9.334094, 45.461057],\n            [9.334094, 45.45656],\n            [9.329597, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.461057],\n            [9.329597, 45.465553],\n            [9.334094, 45.465553],\n            [9.334094, 45.461057],\n            [9.329597, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.465553],\n            [9.329597, 45.47005],\n            [9.334094, 45.47005],\n            [9.334094, 45.465553],\n            [9.329597, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.47005],\n            [9.329597, 45.474547],\n            [9.334094, 45.474547],\n            [9.334094, 45.47005],\n            [9.329597, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.474547],\n            [9.329597, 45.479043],\n            [9.334094, 45.479043],\n            [9.334094, 45.474547],\n            [9.329597, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.479043],\n            [9.329597, 45.48354],\n            [9.334094, 45.48354],\n            [9.334094, 45.479043],\n            [9.329597, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.48354],\n            [9.329597, 45.488036],\n            [9.334094, 45.488036],\n            [9.334094, 45.48354],\n            [9.329597, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.488036],\n            [9.329597, 45.492533],\n            [9.334094, 45.492533],\n            [9.334094, 45.488036],\n            [9.329597, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.492533],\n            [9.329597, 45.49703],\n            [9.334094, 45.49703],\n            [9.334094, 45.492533],\n            [9.329597, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.49703],\n            [9.329597, 45.501526],\n            [9.334094, 45.501526],\n            [9.334094, 45.49703],\n            [9.329597, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.501526],\n            [9.329597, 45.506023],\n            [9.334094, 45.506023],\n            [9.334094, 45.501526],\n            [9.329597, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.506023],\n            [9.329597, 45.510519],\n            [9.334094, 45.510519],\n            [9.334094, 45.506023],\n            [9.329597, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.510519],\n            [9.329597, 45.515016],\n            [9.334094, 45.515016],\n            [9.334094, 45.510519],\n            [9.329597, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.515016],\n            [9.329597, 45.519513],\n            [9.334094, 45.519513],\n            [9.334094, 45.515016],\n            [9.329597, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.519513],\n            [9.329597, 45.524009],\n            [9.334094, 45.524009],\n            [9.334094, 45.519513],\n            [9.329597, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.524009],\n            [9.329597, 45.528506],\n            [9.334094, 45.528506],\n            [9.334094, 45.524009],\n            [9.329597, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.528506],\n            [9.329597, 45.533002],\n            [9.334094, 45.533002],\n            [9.334094, 45.528506],\n            [9.329597, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.533002],\n            [9.329597, 45.537499],\n            [9.334094, 45.537499],\n            [9.334094, 45.533002],\n            [9.329597, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.537499],\n            [9.329597, 45.541996],\n            [9.334094, 45.541996],\n            [9.334094, 45.537499],\n            [9.329597, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.541996],\n            [9.329597, 45.546492],\n            [9.334094, 45.546492],\n            [9.334094, 45.541996],\n            [9.329597, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.546492],\n            [9.329597, 45.550989],\n            [9.334094, 45.550989],\n            [9.334094, 45.546492],\n            [9.329597, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.550989],\n            [9.329597, 45.555485],\n            [9.334094, 45.555485],\n            [9.334094, 45.550989],\n            [9.329597, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.555485],\n            [9.329597, 45.559982],\n            [9.334094, 45.559982],\n            [9.334094, 45.555485],\n            [9.329597, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.559982],\n            [9.329597, 45.564479],\n            [9.334094, 45.564479],\n            [9.334094, 45.559982],\n            [9.329597, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.564479],\n            [9.329597, 45.568975],\n            [9.334094, 45.568975],\n            [9.334094, 45.564479],\n            [9.329597, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.568975],\n            [9.329597, 45.573472],\n            [9.334094, 45.573472],\n            [9.334094, 45.568975],\n            [9.329597, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.573472],\n            [9.329597, 45.577968],\n            [9.334094, 45.577968],\n            [9.334094, 45.573472],\n            [9.329597, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.577968],\n            [9.329597, 45.582465],\n            [9.334094, 45.582465],\n            [9.334094, 45.577968],\n            [9.329597, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.582465],\n            [9.329597, 45.586962],\n            [9.334094, 45.586962],\n            [9.334094, 45.582465],\n            [9.329597, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.586962],\n            [9.329597, 45.591458],\n            [9.334094, 45.591458],\n            [9.334094, 45.586962],\n            [9.329597, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.591458],\n            [9.329597, 45.595955],\n            [9.334094, 45.595955],\n            [9.334094, 45.591458],\n            [9.329597, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.595955],\n            [9.329597, 45.600451],\n            [9.334094, 45.600451],\n            [9.334094, 45.595955],\n            [9.329597, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.600451],\n            [9.329597, 45.604948],\n            [9.334094, 45.604948],\n            [9.334094, 45.600451],\n            [9.329597, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.604948],\n            [9.329597, 45.609445],\n            [9.334094, 45.609445],\n            [9.334094, 45.604948],\n            [9.329597, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.609445],\n            [9.329597, 45.613941],\n            [9.334094, 45.613941],\n            [9.334094, 45.609445],\n            [9.329597, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.613941],\n            [9.329597, 45.618438],\n            [9.334094, 45.618438],\n            [9.334094, 45.613941],\n            [9.329597, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.618438],\n            [9.329597, 45.622934],\n            [9.334094, 45.622934],\n            [9.334094, 45.618438],\n            [9.329597, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.622934],\n            [9.329597, 45.627431],\n            [9.334094, 45.627431],\n            [9.334094, 45.622934],\n            [9.329597, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.627431],\n            [9.329597, 45.631928],\n            [9.334094, 45.631928],\n            [9.334094, 45.627431],\n            [9.329597, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.329597, 45.631928],\n            [9.329597, 45.636424],\n            [9.334094, 45.636424],\n            [9.334094, 45.631928],\n            [9.329597, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.339648],\n            [9.334094, 45.344145],\n            [9.338591, 45.344145],\n            [9.338591, 45.339648],\n            [9.334094, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.344145],\n            [9.334094, 45.348642],\n            [9.338591, 45.348642],\n            [9.338591, 45.344145],\n            [9.334094, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.348642],\n            [9.334094, 45.353138],\n            [9.338591, 45.353138],\n            [9.338591, 45.348642],\n            [9.334094, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.353138],\n            [9.334094, 45.357635],\n            [9.338591, 45.357635],\n            [9.338591, 45.353138],\n            [9.334094, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.357635],\n            [9.334094, 45.362131],\n            [9.338591, 45.362131],\n            [9.338591, 45.357635],\n            [9.334094, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.362131],\n            [9.334094, 45.366628],\n            [9.338591, 45.366628],\n            [9.338591, 45.362131],\n            [9.334094, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.366628],\n            [9.334094, 45.371125],\n            [9.338591, 45.371125],\n            [9.338591, 45.366628],\n            [9.334094, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.371125],\n            [9.334094, 45.375621],\n            [9.338591, 45.375621],\n            [9.338591, 45.371125],\n            [9.334094, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.375621],\n            [9.334094, 45.380118],\n            [9.338591, 45.380118],\n            [9.338591, 45.375621],\n            [9.334094, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.380118],\n            [9.334094, 45.384614],\n            [9.338591, 45.384614],\n            [9.338591, 45.380118],\n            [9.334094, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.384614],\n            [9.334094, 45.389111],\n            [9.338591, 45.389111],\n            [9.338591, 45.384614],\n            [9.334094, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.389111],\n            [9.334094, 45.393608],\n            [9.338591, 45.393608],\n            [9.338591, 45.389111],\n            [9.334094, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.393608],\n            [9.334094, 45.398104],\n            [9.338591, 45.398104],\n            [9.338591, 45.393608],\n            [9.334094, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.398104],\n            [9.334094, 45.402601],\n            [9.338591, 45.402601],\n            [9.338591, 45.398104],\n            [9.334094, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.402601],\n            [9.334094, 45.407097],\n            [9.338591, 45.407097],\n            [9.338591, 45.402601],\n            [9.334094, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.407097],\n            [9.334094, 45.411594],\n            [9.338591, 45.411594],\n            [9.338591, 45.407097],\n            [9.334094, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.411594],\n            [9.334094, 45.416091],\n            [9.338591, 45.416091],\n            [9.338591, 45.411594],\n            [9.334094, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.416091],\n            [9.334094, 45.420587],\n            [9.338591, 45.420587],\n            [9.338591, 45.416091],\n            [9.334094, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.420587],\n            [9.334094, 45.425084],\n            [9.338591, 45.425084],\n            [9.338591, 45.420587],\n            [9.334094, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.425084],\n            [9.334094, 45.42958],\n            [9.338591, 45.42958],\n            [9.338591, 45.425084],\n            [9.334094, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.42958],\n            [9.334094, 45.434077],\n            [9.338591, 45.434077],\n            [9.338591, 45.42958],\n            [9.334094, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.434077],\n            [9.334094, 45.438574],\n            [9.338591, 45.438574],\n            [9.338591, 45.434077],\n            [9.334094, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.438574],\n            [9.334094, 45.44307],\n            [9.338591, 45.44307],\n            [9.338591, 45.438574],\n            [9.334094, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.44307],\n            [9.334094, 45.447567],\n            [9.338591, 45.447567],\n            [9.338591, 45.44307],\n            [9.334094, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.447567],\n            [9.334094, 45.452063],\n            [9.338591, 45.452063],\n            [9.338591, 45.447567],\n            [9.334094, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.452063],\n            [9.334094, 45.45656],\n            [9.338591, 45.45656],\n            [9.338591, 45.452063],\n            [9.334094, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.45656],\n            [9.334094, 45.461057],\n            [9.338591, 45.461057],\n            [9.338591, 45.45656],\n            [9.334094, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.461057],\n            [9.334094, 45.465553],\n            [9.338591, 45.465553],\n            [9.338591, 45.461057],\n            [9.334094, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.465553],\n            [9.334094, 45.47005],\n            [9.338591, 45.47005],\n            [9.338591, 45.465553],\n            [9.334094, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.47005],\n            [9.334094, 45.474547],\n            [9.338591, 45.474547],\n            [9.338591, 45.47005],\n            [9.334094, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.474547],\n            [9.334094, 45.479043],\n            [9.338591, 45.479043],\n            [9.338591, 45.474547],\n            [9.334094, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.479043],\n            [9.334094, 45.48354],\n            [9.338591, 45.48354],\n            [9.338591, 45.479043],\n            [9.334094, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.48354],\n            [9.334094, 45.488036],\n            [9.338591, 45.488036],\n            [9.338591, 45.48354],\n            [9.334094, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.488036],\n            [9.334094, 45.492533],\n            [9.338591, 45.492533],\n            [9.338591, 45.488036],\n            [9.334094, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.492533],\n            [9.334094, 45.49703],\n            [9.338591, 45.49703],\n            [9.338591, 45.492533],\n            [9.334094, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.49703],\n            [9.334094, 45.501526],\n            [9.338591, 45.501526],\n            [9.338591, 45.49703],\n            [9.334094, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.501526],\n            [9.334094, 45.506023],\n            [9.338591, 45.506023],\n            [9.338591, 45.501526],\n            [9.334094, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.506023],\n            [9.334094, 45.510519],\n            [9.338591, 45.510519],\n            [9.338591, 45.506023],\n            [9.334094, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.510519],\n            [9.334094, 45.515016],\n            [9.338591, 45.515016],\n            [9.338591, 45.510519],\n            [9.334094, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.515016],\n            [9.334094, 45.519513],\n            [9.338591, 45.519513],\n            [9.338591, 45.515016],\n            [9.334094, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.519513],\n            [9.334094, 45.524009],\n            [9.338591, 45.524009],\n            [9.338591, 45.519513],\n            [9.334094, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.524009],\n            [9.334094, 45.528506],\n            [9.338591, 45.528506],\n            [9.338591, 45.524009],\n            [9.334094, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.528506],\n            [9.334094, 45.533002],\n            [9.338591, 45.533002],\n            [9.338591, 45.528506],\n            [9.334094, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.533002],\n            [9.334094, 45.537499],\n            [9.338591, 45.537499],\n            [9.338591, 45.533002],\n            [9.334094, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.537499],\n            [9.334094, 45.541996],\n            [9.338591, 45.541996],\n            [9.338591, 45.537499],\n            [9.334094, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.541996],\n            [9.334094, 45.546492],\n            [9.338591, 45.546492],\n            [9.338591, 45.541996],\n            [9.334094, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.546492],\n            [9.334094, 45.550989],\n            [9.338591, 45.550989],\n            [9.338591, 45.546492],\n            [9.334094, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.550989],\n            [9.334094, 45.555485],\n            [9.338591, 45.555485],\n            [9.338591, 45.550989],\n            [9.334094, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.555485],\n            [9.334094, 45.559982],\n            [9.338591, 45.559982],\n            [9.338591, 45.555485],\n            [9.334094, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.559982],\n            [9.334094, 45.564479],\n            [9.338591, 45.564479],\n            [9.338591, 45.559982],\n            [9.334094, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.564479],\n            [9.334094, 45.568975],\n            [9.338591, 45.568975],\n            [9.338591, 45.564479],\n            [9.334094, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.568975],\n            [9.334094, 45.573472],\n            [9.338591, 45.573472],\n            [9.338591, 45.568975],\n            [9.334094, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.573472],\n            [9.334094, 45.577968],\n            [9.338591, 45.577968],\n            [9.338591, 45.573472],\n            [9.334094, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.577968],\n            [9.334094, 45.582465],\n            [9.338591, 45.582465],\n            [9.338591, 45.577968],\n            [9.334094, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.582465],\n            [9.334094, 45.586962],\n            [9.338591, 45.586962],\n            [9.338591, 45.582465],\n            [9.334094, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.586962],\n            [9.334094, 45.591458],\n            [9.338591, 45.591458],\n            [9.338591, 45.586962],\n            [9.334094, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.591458],\n            [9.334094, 45.595955],\n            [9.338591, 45.595955],\n            [9.338591, 45.591458],\n            [9.334094, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.595955],\n            [9.334094, 45.600451],\n            [9.338591, 45.600451],\n            [9.338591, 45.595955],\n            [9.334094, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.600451],\n            [9.334094, 45.604948],\n            [9.338591, 45.604948],\n            [9.338591, 45.600451],\n            [9.334094, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.604948],\n            [9.334094, 45.609445],\n            [9.338591, 45.609445],\n            [9.338591, 45.604948],\n            [9.334094, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.609445],\n            [9.334094, 45.613941],\n            [9.338591, 45.613941],\n            [9.338591, 45.609445],\n            [9.334094, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.613941],\n            [9.334094, 45.618438],\n            [9.338591, 45.618438],\n            [9.338591, 45.613941],\n            [9.334094, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.618438],\n            [9.334094, 45.622934],\n            [9.338591, 45.622934],\n            [9.338591, 45.618438],\n            [9.334094, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.622934],\n            [9.334094, 45.627431],\n            [9.338591, 45.627431],\n            [9.338591, 45.622934],\n            [9.334094, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.627431],\n            [9.334094, 45.631928],\n            [9.338591, 45.631928],\n            [9.338591, 45.627431],\n            [9.334094, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.334094, 45.631928],\n            [9.334094, 45.636424],\n            [9.338591, 45.636424],\n            [9.338591, 45.631928],\n            [9.334094, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.339648],\n            [9.338591, 45.344145],\n            [9.343087, 45.344145],\n            [9.343087, 45.339648],\n            [9.338591, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.344145],\n            [9.338591, 45.348642],\n            [9.343087, 45.348642],\n            [9.343087, 45.344145],\n            [9.338591, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.348642],\n            [9.338591, 45.353138],\n            [9.343087, 45.353138],\n            [9.343087, 45.348642],\n            [9.338591, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.353138],\n            [9.338591, 45.357635],\n            [9.343087, 45.357635],\n            [9.343087, 45.353138],\n            [9.338591, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.357635],\n            [9.338591, 45.362131],\n            [9.343087, 45.362131],\n            [9.343087, 45.357635],\n            [9.338591, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.362131],\n            [9.338591, 45.366628],\n            [9.343087, 45.366628],\n            [9.343087, 45.362131],\n            [9.338591, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.366628],\n            [9.338591, 45.371125],\n            [9.343087, 45.371125],\n            [9.343087, 45.366628],\n            [9.338591, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.371125],\n            [9.338591, 45.375621],\n            [9.343087, 45.375621],\n            [9.343087, 45.371125],\n            [9.338591, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.375621],\n            [9.338591, 45.380118],\n            [9.343087, 45.380118],\n            [9.343087, 45.375621],\n            [9.338591, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.380118],\n            [9.338591, 45.384614],\n            [9.343087, 45.384614],\n            [9.343087, 45.380118],\n            [9.338591, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.384614],\n            [9.338591, 45.389111],\n            [9.343087, 45.389111],\n            [9.343087, 45.384614],\n            [9.338591, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.389111],\n            [9.338591, 45.393608],\n            [9.343087, 45.393608],\n            [9.343087, 45.389111],\n            [9.338591, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.393608],\n            [9.338591, 45.398104],\n            [9.343087, 45.398104],\n            [9.343087, 45.393608],\n            [9.338591, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.398104],\n            [9.338591, 45.402601],\n            [9.343087, 45.402601],\n            [9.343087, 45.398104],\n            [9.338591, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.402601],\n            [9.338591, 45.407097],\n            [9.343087, 45.407097],\n            [9.343087, 45.402601],\n            [9.338591, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.407097],\n            [9.338591, 45.411594],\n            [9.343087, 45.411594],\n            [9.343087, 45.407097],\n            [9.338591, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.411594],\n            [9.338591, 45.416091],\n            [9.343087, 45.416091],\n            [9.343087, 45.411594],\n            [9.338591, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.416091],\n            [9.338591, 45.420587],\n            [9.343087, 45.420587],\n            [9.343087, 45.416091],\n            [9.338591, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.420587],\n            [9.338591, 45.425084],\n            [9.343087, 45.425084],\n            [9.343087, 45.420587],\n            [9.338591, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.425084],\n            [9.338591, 45.42958],\n            [9.343087, 45.42958],\n            [9.343087, 45.425084],\n            [9.338591, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.42958],\n            [9.338591, 45.434077],\n            [9.343087, 45.434077],\n            [9.343087, 45.42958],\n            [9.338591, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.434077],\n            [9.338591, 45.438574],\n            [9.343087, 45.438574],\n            [9.343087, 45.434077],\n            [9.338591, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.438574],\n            [9.338591, 45.44307],\n            [9.343087, 45.44307],\n            [9.343087, 45.438574],\n            [9.338591, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.44307],\n            [9.338591, 45.447567],\n            [9.343087, 45.447567],\n            [9.343087, 45.44307],\n            [9.338591, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.447567],\n            [9.338591, 45.452063],\n            [9.343087, 45.452063],\n            [9.343087, 45.447567],\n            [9.338591, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.452063],\n            [9.338591, 45.45656],\n            [9.343087, 45.45656],\n            [9.343087, 45.452063],\n            [9.338591, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.45656],\n            [9.338591, 45.461057],\n            [9.343087, 45.461057],\n            [9.343087, 45.45656],\n            [9.338591, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.461057],\n            [9.338591, 45.465553],\n            [9.343087, 45.465553],\n            [9.343087, 45.461057],\n            [9.338591, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.465553],\n            [9.338591, 45.47005],\n            [9.343087, 45.47005],\n            [9.343087, 45.465553],\n            [9.338591, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.47005],\n            [9.338591, 45.474547],\n            [9.343087, 45.474547],\n            [9.343087, 45.47005],\n            [9.338591, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.474547],\n            [9.338591, 45.479043],\n            [9.343087, 45.479043],\n            [9.343087, 45.474547],\n            [9.338591, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.479043],\n            [9.338591, 45.48354],\n            [9.343087, 45.48354],\n            [9.343087, 45.479043],\n            [9.338591, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.48354],\n            [9.338591, 45.488036],\n            [9.343087, 45.488036],\n            [9.343087, 45.48354],\n            [9.338591, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.488036],\n            [9.338591, 45.492533],\n            [9.343087, 45.492533],\n            [9.343087, 45.488036],\n            [9.338591, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.492533],\n            [9.338591, 45.49703],\n            [9.343087, 45.49703],\n            [9.343087, 45.492533],\n            [9.338591, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.49703],\n            [9.338591, 45.501526],\n            [9.343087, 45.501526],\n            [9.343087, 45.49703],\n            [9.338591, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.501526],\n            [9.338591, 45.506023],\n            [9.343087, 45.506023],\n            [9.343087, 45.501526],\n            [9.338591, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.506023],\n            [9.338591, 45.510519],\n            [9.343087, 45.510519],\n            [9.343087, 45.506023],\n            [9.338591, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.510519],\n            [9.338591, 45.515016],\n            [9.343087, 45.515016],\n            [9.343087, 45.510519],\n            [9.338591, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.515016],\n            [9.338591, 45.519513],\n            [9.343087, 45.519513],\n            [9.343087, 45.515016],\n            [9.338591, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.519513],\n            [9.338591, 45.524009],\n            [9.343087, 45.524009],\n            [9.343087, 45.519513],\n            [9.338591, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.524009],\n            [9.338591, 45.528506],\n            [9.343087, 45.528506],\n            [9.343087, 45.524009],\n            [9.338591, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.528506],\n            [9.338591, 45.533002],\n            [9.343087, 45.533002],\n            [9.343087, 45.528506],\n            [9.338591, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.533002],\n            [9.338591, 45.537499],\n            [9.343087, 45.537499],\n            [9.343087, 45.533002],\n            [9.338591, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.537499],\n            [9.338591, 45.541996],\n            [9.343087, 45.541996],\n            [9.343087, 45.537499],\n            [9.338591, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.541996],\n            [9.338591, 45.546492],\n            [9.343087, 45.546492],\n            [9.343087, 45.541996],\n            [9.338591, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.546492],\n            [9.338591, 45.550989],\n            [9.343087, 45.550989],\n            [9.343087, 45.546492],\n            [9.338591, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.550989],\n            [9.338591, 45.555485],\n            [9.343087, 45.555485],\n            [9.343087, 45.550989],\n            [9.338591, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.555485],\n            [9.338591, 45.559982],\n            [9.343087, 45.559982],\n            [9.343087, 45.555485],\n            [9.338591, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.559982],\n            [9.338591, 45.564479],\n            [9.343087, 45.564479],\n            [9.343087, 45.559982],\n            [9.338591, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.564479],\n            [9.338591, 45.568975],\n            [9.343087, 45.568975],\n            [9.343087, 45.564479],\n            [9.338591, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.568975],\n            [9.338591, 45.573472],\n            [9.343087, 45.573472],\n            [9.343087, 45.568975],\n            [9.338591, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.573472],\n            [9.338591, 45.577968],\n            [9.343087, 45.577968],\n            [9.343087, 45.573472],\n            [9.338591, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.577968],\n            [9.338591, 45.582465],\n            [9.343087, 45.582465],\n            [9.343087, 45.577968],\n            [9.338591, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.582465],\n            [9.338591, 45.586962],\n            [9.343087, 45.586962],\n            [9.343087, 45.582465],\n            [9.338591, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.586962],\n            [9.338591, 45.591458],\n            [9.343087, 45.591458],\n            [9.343087, 45.586962],\n            [9.338591, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.591458],\n            [9.338591, 45.595955],\n            [9.343087, 45.595955],\n            [9.343087, 45.591458],\n            [9.338591, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.595955],\n            [9.338591, 45.600451],\n            [9.343087, 45.600451],\n            [9.343087, 45.595955],\n            [9.338591, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.600451],\n            [9.338591, 45.604948],\n            [9.343087, 45.604948],\n            [9.343087, 45.600451],\n            [9.338591, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.604948],\n            [9.338591, 45.609445],\n            [9.343087, 45.609445],\n            [9.343087, 45.604948],\n            [9.338591, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.609445],\n            [9.338591, 45.613941],\n            [9.343087, 45.613941],\n            [9.343087, 45.609445],\n            [9.338591, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.613941],\n            [9.338591, 45.618438],\n            [9.343087, 45.618438],\n            [9.343087, 45.613941],\n            [9.338591, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.618438],\n            [9.338591, 45.622934],\n            [9.343087, 45.622934],\n            [9.343087, 45.618438],\n            [9.338591, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.622934],\n            [9.338591, 45.627431],\n            [9.343087, 45.627431],\n            [9.343087, 45.622934],\n            [9.338591, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.627431],\n            [9.338591, 45.631928],\n            [9.343087, 45.631928],\n            [9.343087, 45.627431],\n            [9.338591, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.338591, 45.631928],\n            [9.338591, 45.636424],\n            [9.343087, 45.636424],\n            [9.343087, 45.631928],\n            [9.338591, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.339648],\n            [9.343087, 45.344145],\n            [9.347584, 45.344145],\n            [9.347584, 45.339648],\n            [9.343087, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.344145],\n            [9.343087, 45.348642],\n            [9.347584, 45.348642],\n            [9.347584, 45.344145],\n            [9.343087, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.348642],\n            [9.343087, 45.353138],\n            [9.347584, 45.353138],\n            [9.347584, 45.348642],\n            [9.343087, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.353138],\n            [9.343087, 45.357635],\n            [9.347584, 45.357635],\n            [9.347584, 45.353138],\n            [9.343087, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.357635],\n            [9.343087, 45.362131],\n            [9.347584, 45.362131],\n            [9.347584, 45.357635],\n            [9.343087, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.362131],\n            [9.343087, 45.366628],\n            [9.347584, 45.366628],\n            [9.347584, 45.362131],\n            [9.343087, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.366628],\n            [9.343087, 45.371125],\n            [9.347584, 45.371125],\n            [9.347584, 45.366628],\n            [9.343087, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.371125],\n            [9.343087, 45.375621],\n            [9.347584, 45.375621],\n            [9.347584, 45.371125],\n            [9.343087, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.375621],\n            [9.343087, 45.380118],\n            [9.347584, 45.380118],\n            [9.347584, 45.375621],\n            [9.343087, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.380118],\n            [9.343087, 45.384614],\n            [9.347584, 45.384614],\n            [9.347584, 45.380118],\n            [9.343087, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.384614],\n            [9.343087, 45.389111],\n            [9.347584, 45.389111],\n            [9.347584, 45.384614],\n            [9.343087, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.389111],\n            [9.343087, 45.393608],\n            [9.347584, 45.393608],\n            [9.347584, 45.389111],\n            [9.343087, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.393608],\n            [9.343087, 45.398104],\n            [9.347584, 45.398104],\n            [9.347584, 45.393608],\n            [9.343087, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.398104],\n            [9.343087, 45.402601],\n            [9.347584, 45.402601],\n            [9.347584, 45.398104],\n            [9.343087, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.402601],\n            [9.343087, 45.407097],\n            [9.347584, 45.407097],\n            [9.347584, 45.402601],\n            [9.343087, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.407097],\n            [9.343087, 45.411594],\n            [9.347584, 45.411594],\n            [9.347584, 45.407097],\n            [9.343087, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.411594],\n            [9.343087, 45.416091],\n            [9.347584, 45.416091],\n            [9.347584, 45.411594],\n            [9.343087, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.416091],\n            [9.343087, 45.420587],\n            [9.347584, 45.420587],\n            [9.347584, 45.416091],\n            [9.343087, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.420587],\n            [9.343087, 45.425084],\n            [9.347584, 45.425084],\n            [9.347584, 45.420587],\n            [9.343087, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.425084],\n            [9.343087, 45.42958],\n            [9.347584, 45.42958],\n            [9.347584, 45.425084],\n            [9.343087, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.42958],\n            [9.343087, 45.434077],\n            [9.347584, 45.434077],\n            [9.347584, 45.42958],\n            [9.343087, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.434077],\n            [9.343087, 45.438574],\n            [9.347584, 45.438574],\n            [9.347584, 45.434077],\n            [9.343087, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.438574],\n            [9.343087, 45.44307],\n            [9.347584, 45.44307],\n            [9.347584, 45.438574],\n            [9.343087, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.44307],\n            [9.343087, 45.447567],\n            [9.347584, 45.447567],\n            [9.347584, 45.44307],\n            [9.343087, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.447567],\n            [9.343087, 45.452063],\n            [9.347584, 45.452063],\n            [9.347584, 45.447567],\n            [9.343087, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.452063],\n            [9.343087, 45.45656],\n            [9.347584, 45.45656],\n            [9.347584, 45.452063],\n            [9.343087, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.45656],\n            [9.343087, 45.461057],\n            [9.347584, 45.461057],\n            [9.347584, 45.45656],\n            [9.343087, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.461057],\n            [9.343087, 45.465553],\n            [9.347584, 45.465553],\n            [9.347584, 45.461057],\n            [9.343087, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.465553],\n            [9.343087, 45.47005],\n            [9.347584, 45.47005],\n            [9.347584, 45.465553],\n            [9.343087, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.47005],\n            [9.343087, 45.474547],\n            [9.347584, 45.474547],\n            [9.347584, 45.47005],\n            [9.343087, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.474547],\n            [9.343087, 45.479043],\n            [9.347584, 45.479043],\n            [9.347584, 45.474547],\n            [9.343087, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.479043],\n            [9.343087, 45.48354],\n            [9.347584, 45.48354],\n            [9.347584, 45.479043],\n            [9.343087, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.48354],\n            [9.343087, 45.488036],\n            [9.347584, 45.488036],\n            [9.347584, 45.48354],\n            [9.343087, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.488036],\n            [9.343087, 45.492533],\n            [9.347584, 45.492533],\n            [9.347584, 45.488036],\n            [9.343087, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.492533],\n            [9.343087, 45.49703],\n            [9.347584, 45.49703],\n            [9.347584, 45.492533],\n            [9.343087, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.49703],\n            [9.343087, 45.501526],\n            [9.347584, 45.501526],\n            [9.347584, 45.49703],\n            [9.343087, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.501526],\n            [9.343087, 45.506023],\n            [9.347584, 45.506023],\n            [9.347584, 45.501526],\n            [9.343087, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.506023],\n            [9.343087, 45.510519],\n            [9.347584, 45.510519],\n            [9.347584, 45.506023],\n            [9.343087, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.510519],\n            [9.343087, 45.515016],\n            [9.347584, 45.515016],\n            [9.347584, 45.510519],\n            [9.343087, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.515016],\n            [9.343087, 45.519513],\n            [9.347584, 45.519513],\n            [9.347584, 45.515016],\n            [9.343087, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.519513],\n            [9.343087, 45.524009],\n            [9.347584, 45.524009],\n            [9.347584, 45.519513],\n            [9.343087, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.524009],\n            [9.343087, 45.528506],\n            [9.347584, 45.528506],\n            [9.347584, 45.524009],\n            [9.343087, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.528506],\n            [9.343087, 45.533002],\n            [9.347584, 45.533002],\n            [9.347584, 45.528506],\n            [9.343087, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.533002],\n            [9.343087, 45.537499],\n            [9.347584, 45.537499],\n            [9.347584, 45.533002],\n            [9.343087, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.537499],\n            [9.343087, 45.541996],\n            [9.347584, 45.541996],\n            [9.347584, 45.537499],\n            [9.343087, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.541996],\n            [9.343087, 45.546492],\n            [9.347584, 45.546492],\n            [9.347584, 45.541996],\n            [9.343087, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.546492],\n            [9.343087, 45.550989],\n            [9.347584, 45.550989],\n            [9.347584, 45.546492],\n            [9.343087, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.550989],\n            [9.343087, 45.555485],\n            [9.347584, 45.555485],\n            [9.347584, 45.550989],\n            [9.343087, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.555485],\n            [9.343087, 45.559982],\n            [9.347584, 45.559982],\n            [9.347584, 45.555485],\n            [9.343087, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.559982],\n            [9.343087, 45.564479],\n            [9.347584, 45.564479],\n            [9.347584, 45.559982],\n            [9.343087, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.564479],\n            [9.343087, 45.568975],\n            [9.347584, 45.568975],\n            [9.347584, 45.564479],\n            [9.343087, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.568975],\n            [9.343087, 45.573472],\n            [9.347584, 45.573472],\n            [9.347584, 45.568975],\n            [9.343087, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.573472],\n            [9.343087, 45.577968],\n            [9.347584, 45.577968],\n            [9.347584, 45.573472],\n            [9.343087, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.577968],\n            [9.343087, 45.582465],\n            [9.347584, 45.582465],\n            [9.347584, 45.577968],\n            [9.343087, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.582465],\n            [9.343087, 45.586962],\n            [9.347584, 45.586962],\n            [9.347584, 45.582465],\n            [9.343087, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.586962],\n            [9.343087, 45.591458],\n            [9.347584, 45.591458],\n            [9.347584, 45.586962],\n            [9.343087, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.591458],\n            [9.343087, 45.595955],\n            [9.347584, 45.595955],\n            [9.347584, 45.591458],\n            [9.343087, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.595955],\n            [9.343087, 45.600451],\n            [9.347584, 45.600451],\n            [9.347584, 45.595955],\n            [9.343087, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.600451],\n            [9.343087, 45.604948],\n            [9.347584, 45.604948],\n            [9.347584, 45.600451],\n            [9.343087, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.604948],\n            [9.343087, 45.609445],\n            [9.347584, 45.609445],\n            [9.347584, 45.604948],\n            [9.343087, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.609445],\n            [9.343087, 45.613941],\n            [9.347584, 45.613941],\n            [9.347584, 45.609445],\n            [9.343087, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.613941],\n            [9.343087, 45.618438],\n            [9.347584, 45.618438],\n            [9.347584, 45.613941],\n            [9.343087, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.618438],\n            [9.343087, 45.622934],\n            [9.347584, 45.622934],\n            [9.347584, 45.618438],\n            [9.343087, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.622934],\n            [9.343087, 45.627431],\n            [9.347584, 45.627431],\n            [9.347584, 45.622934],\n            [9.343087, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.627431],\n            [9.343087, 45.631928],\n            [9.347584, 45.631928],\n            [9.347584, 45.627431],\n            [9.343087, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.343087, 45.631928],\n            [9.343087, 45.636424],\n            [9.347584, 45.636424],\n            [9.347584, 45.631928],\n            [9.343087, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.339648],\n            [9.347584, 45.344145],\n            [9.35208, 45.344145],\n            [9.35208, 45.339648],\n            [9.347584, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.344145],\n            [9.347584, 45.348642],\n            [9.35208, 45.348642],\n            [9.35208, 45.344145],\n            [9.347584, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.348642],\n            [9.347584, 45.353138],\n            [9.35208, 45.353138],\n            [9.35208, 45.348642],\n            [9.347584, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.353138],\n            [9.347584, 45.357635],\n            [9.35208, 45.357635],\n            [9.35208, 45.353138],\n            [9.347584, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.357635],\n            [9.347584, 45.362131],\n            [9.35208, 45.362131],\n            [9.35208, 45.357635],\n            [9.347584, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.362131],\n            [9.347584, 45.366628],\n            [9.35208, 45.366628],\n            [9.35208, 45.362131],\n            [9.347584, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.366628],\n            [9.347584, 45.371125],\n            [9.35208, 45.371125],\n            [9.35208, 45.366628],\n            [9.347584, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.371125],\n            [9.347584, 45.375621],\n            [9.35208, 45.375621],\n            [9.35208, 45.371125],\n            [9.347584, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.375621],\n            [9.347584, 45.380118],\n            [9.35208, 45.380118],\n            [9.35208, 45.375621],\n            [9.347584, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.380118],\n            [9.347584, 45.384614],\n            [9.35208, 45.384614],\n            [9.35208, 45.380118],\n            [9.347584, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.384614],\n            [9.347584, 45.389111],\n            [9.35208, 45.389111],\n            [9.35208, 45.384614],\n            [9.347584, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.389111],\n            [9.347584, 45.393608],\n            [9.35208, 45.393608],\n            [9.35208, 45.389111],\n            [9.347584, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.393608],\n            [9.347584, 45.398104],\n            [9.35208, 45.398104],\n            [9.35208, 45.393608],\n            [9.347584, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.398104],\n            [9.347584, 45.402601],\n            [9.35208, 45.402601],\n            [9.35208, 45.398104],\n            [9.347584, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.402601],\n            [9.347584, 45.407097],\n            [9.35208, 45.407097],\n            [9.35208, 45.402601],\n            [9.347584, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.407097],\n            [9.347584, 45.411594],\n            [9.35208, 45.411594],\n            [9.35208, 45.407097],\n            [9.347584, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.411594],\n            [9.347584, 45.416091],\n            [9.35208, 45.416091],\n            [9.35208, 45.411594],\n            [9.347584, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.416091],\n            [9.347584, 45.420587],\n            [9.35208, 45.420587],\n            [9.35208, 45.416091],\n            [9.347584, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.420587],\n            [9.347584, 45.425084],\n            [9.35208, 45.425084],\n            [9.35208, 45.420587],\n            [9.347584, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.425084],\n            [9.347584, 45.42958],\n            [9.35208, 45.42958],\n            [9.35208, 45.425084],\n            [9.347584, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.42958],\n            [9.347584, 45.434077],\n            [9.35208, 45.434077],\n            [9.35208, 45.42958],\n            [9.347584, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.434077],\n            [9.347584, 45.438574],\n            [9.35208, 45.438574],\n            [9.35208, 45.434077],\n            [9.347584, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.438574],\n            [9.347584, 45.44307],\n            [9.35208, 45.44307],\n            [9.35208, 45.438574],\n            [9.347584, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.44307],\n            [9.347584, 45.447567],\n            [9.35208, 45.447567],\n            [9.35208, 45.44307],\n            [9.347584, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.447567],\n            [9.347584, 45.452063],\n            [9.35208, 45.452063],\n            [9.35208, 45.447567],\n            [9.347584, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.452063],\n            [9.347584, 45.45656],\n            [9.35208, 45.45656],\n            [9.35208, 45.452063],\n            [9.347584, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.45656],\n            [9.347584, 45.461057],\n            [9.35208, 45.461057],\n            [9.35208, 45.45656],\n            [9.347584, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.461057],\n            [9.347584, 45.465553],\n            [9.35208, 45.465553],\n            [9.35208, 45.461057],\n            [9.347584, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.465553],\n            [9.347584, 45.47005],\n            [9.35208, 45.47005],\n            [9.35208, 45.465553],\n            [9.347584, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.47005],\n            [9.347584, 45.474547],\n            [9.35208, 45.474547],\n            [9.35208, 45.47005],\n            [9.347584, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.474547],\n            [9.347584, 45.479043],\n            [9.35208, 45.479043],\n            [9.35208, 45.474547],\n            [9.347584, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.479043],\n            [9.347584, 45.48354],\n            [9.35208, 45.48354],\n            [9.35208, 45.479043],\n            [9.347584, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.48354],\n            [9.347584, 45.488036],\n            [9.35208, 45.488036],\n            [9.35208, 45.48354],\n            [9.347584, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.488036],\n            [9.347584, 45.492533],\n            [9.35208, 45.492533],\n            [9.35208, 45.488036],\n            [9.347584, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.492533],\n            [9.347584, 45.49703],\n            [9.35208, 45.49703],\n            [9.35208, 45.492533],\n            [9.347584, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.49703],\n            [9.347584, 45.501526],\n            [9.35208, 45.501526],\n            [9.35208, 45.49703],\n            [9.347584, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.501526],\n            [9.347584, 45.506023],\n            [9.35208, 45.506023],\n            [9.35208, 45.501526],\n            [9.347584, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.506023],\n            [9.347584, 45.510519],\n            [9.35208, 45.510519],\n            [9.35208, 45.506023],\n            [9.347584, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.510519],\n            [9.347584, 45.515016],\n            [9.35208, 45.515016],\n            [9.35208, 45.510519],\n            [9.347584, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.515016],\n            [9.347584, 45.519513],\n            [9.35208, 45.519513],\n            [9.35208, 45.515016],\n            [9.347584, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.519513],\n            [9.347584, 45.524009],\n            [9.35208, 45.524009],\n            [9.35208, 45.519513],\n            [9.347584, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.524009],\n            [9.347584, 45.528506],\n            [9.35208, 45.528506],\n            [9.35208, 45.524009],\n            [9.347584, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.528506],\n            [9.347584, 45.533002],\n            [9.35208, 45.533002],\n            [9.35208, 45.528506],\n            [9.347584, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.533002],\n            [9.347584, 45.537499],\n            [9.35208, 45.537499],\n            [9.35208, 45.533002],\n            [9.347584, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.537499],\n            [9.347584, 45.541996],\n            [9.35208, 45.541996],\n            [9.35208, 45.537499],\n            [9.347584, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.541996],\n            [9.347584, 45.546492],\n            [9.35208, 45.546492],\n            [9.35208, 45.541996],\n            [9.347584, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.546492],\n            [9.347584, 45.550989],\n            [9.35208, 45.550989],\n            [9.35208, 45.546492],\n            [9.347584, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.550989],\n            [9.347584, 45.555485],\n            [9.35208, 45.555485],\n            [9.35208, 45.550989],\n            [9.347584, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.555485],\n            [9.347584, 45.559982],\n            [9.35208, 45.559982],\n            [9.35208, 45.555485],\n            [9.347584, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.559982],\n            [9.347584, 45.564479],\n            [9.35208, 45.564479],\n            [9.35208, 45.559982],\n            [9.347584, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.564479],\n            [9.347584, 45.568975],\n            [9.35208, 45.568975],\n            [9.35208, 45.564479],\n            [9.347584, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.568975],\n            [9.347584, 45.573472],\n            [9.35208, 45.573472],\n            [9.35208, 45.568975],\n            [9.347584, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.573472],\n            [9.347584, 45.577968],\n            [9.35208, 45.577968],\n            [9.35208, 45.573472],\n            [9.347584, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.577968],\n            [9.347584, 45.582465],\n            [9.35208, 45.582465],\n            [9.35208, 45.577968],\n            [9.347584, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.582465],\n            [9.347584, 45.586962],\n            [9.35208, 45.586962],\n            [9.35208, 45.582465],\n            [9.347584, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.586962],\n            [9.347584, 45.591458],\n            [9.35208, 45.591458],\n            [9.35208, 45.586962],\n            [9.347584, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.591458],\n            [9.347584, 45.595955],\n            [9.35208, 45.595955],\n            [9.35208, 45.591458],\n            [9.347584, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.595955],\n            [9.347584, 45.600451],\n            [9.35208, 45.600451],\n            [9.35208, 45.595955],\n            [9.347584, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.600451],\n            [9.347584, 45.604948],\n            [9.35208, 45.604948],\n            [9.35208, 45.600451],\n            [9.347584, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.604948],\n            [9.347584, 45.609445],\n            [9.35208, 45.609445],\n            [9.35208, 45.604948],\n            [9.347584, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.609445],\n            [9.347584, 45.613941],\n            [9.35208, 45.613941],\n            [9.35208, 45.609445],\n            [9.347584, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.613941],\n            [9.347584, 45.618438],\n            [9.35208, 45.618438],\n            [9.35208, 45.613941],\n            [9.347584, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.618438],\n            [9.347584, 45.622934],\n            [9.35208, 45.622934],\n            [9.35208, 45.618438],\n            [9.347584, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.622934],\n            [9.347584, 45.627431],\n            [9.35208, 45.627431],\n            [9.35208, 45.622934],\n            [9.347584, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.627431],\n            [9.347584, 45.631928],\n            [9.35208, 45.631928],\n            [9.35208, 45.627431],\n            [9.347584, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.347584, 45.631928],\n            [9.347584, 45.636424],\n            [9.35208, 45.636424],\n            [9.35208, 45.631928],\n            [9.347584, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.339648],\n            [9.35208, 45.344145],\n            [9.356577, 45.344145],\n            [9.356577, 45.339648],\n            [9.35208, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.344145],\n            [9.35208, 45.348642],\n            [9.356577, 45.348642],\n            [9.356577, 45.344145],\n            [9.35208, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.348642],\n            [9.35208, 45.353138],\n            [9.356577, 45.353138],\n            [9.356577, 45.348642],\n            [9.35208, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.353138],\n            [9.35208, 45.357635],\n            [9.356577, 45.357635],\n            [9.356577, 45.353138],\n            [9.35208, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.357635],\n            [9.35208, 45.362131],\n            [9.356577, 45.362131],\n            [9.356577, 45.357635],\n            [9.35208, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.362131],\n            [9.35208, 45.366628],\n            [9.356577, 45.366628],\n            [9.356577, 45.362131],\n            [9.35208, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.366628],\n            [9.35208, 45.371125],\n            [9.356577, 45.371125],\n            [9.356577, 45.366628],\n            [9.35208, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.371125],\n            [9.35208, 45.375621],\n            [9.356577, 45.375621],\n            [9.356577, 45.371125],\n            [9.35208, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.375621],\n            [9.35208, 45.380118],\n            [9.356577, 45.380118],\n            [9.356577, 45.375621],\n            [9.35208, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.380118],\n            [9.35208, 45.384614],\n            [9.356577, 45.384614],\n            [9.356577, 45.380118],\n            [9.35208, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.384614],\n            [9.35208, 45.389111],\n            [9.356577, 45.389111],\n            [9.356577, 45.384614],\n            [9.35208, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.389111],\n            [9.35208, 45.393608],\n            [9.356577, 45.393608],\n            [9.356577, 45.389111],\n            [9.35208, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.393608],\n            [9.35208, 45.398104],\n            [9.356577, 45.398104],\n            [9.356577, 45.393608],\n            [9.35208, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.398104],\n            [9.35208, 45.402601],\n            [9.356577, 45.402601],\n            [9.356577, 45.398104],\n            [9.35208, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.402601],\n            [9.35208, 45.407097],\n            [9.356577, 45.407097],\n            [9.356577, 45.402601],\n            [9.35208, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.407097],\n            [9.35208, 45.411594],\n            [9.356577, 45.411594],\n            [9.356577, 45.407097],\n            [9.35208, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.411594],\n            [9.35208, 45.416091],\n            [9.356577, 45.416091],\n            [9.356577, 45.411594],\n            [9.35208, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.416091],\n            [9.35208, 45.420587],\n            [9.356577, 45.420587],\n            [9.356577, 45.416091],\n            [9.35208, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.420587],\n            [9.35208, 45.425084],\n            [9.356577, 45.425084],\n            [9.356577, 45.420587],\n            [9.35208, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.425084],\n            [9.35208, 45.42958],\n            [9.356577, 45.42958],\n            [9.356577, 45.425084],\n            [9.35208, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.42958],\n            [9.35208, 45.434077],\n            [9.356577, 45.434077],\n            [9.356577, 45.42958],\n            [9.35208, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.434077],\n            [9.35208, 45.438574],\n            [9.356577, 45.438574],\n            [9.356577, 45.434077],\n            [9.35208, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.438574],\n            [9.35208, 45.44307],\n            [9.356577, 45.44307],\n            [9.356577, 45.438574],\n            [9.35208, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.44307],\n            [9.35208, 45.447567],\n            [9.356577, 45.447567],\n            [9.356577, 45.44307],\n            [9.35208, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.447567],\n            [9.35208, 45.452063],\n            [9.356577, 45.452063],\n            [9.356577, 45.447567],\n            [9.35208, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.452063],\n            [9.35208, 45.45656],\n            [9.356577, 45.45656],\n            [9.356577, 45.452063],\n            [9.35208, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.45656],\n            [9.35208, 45.461057],\n            [9.356577, 45.461057],\n            [9.356577, 45.45656],\n            [9.35208, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.461057],\n            [9.35208, 45.465553],\n            [9.356577, 45.465553],\n            [9.356577, 45.461057],\n            [9.35208, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.465553],\n            [9.35208, 45.47005],\n            [9.356577, 45.47005],\n            [9.356577, 45.465553],\n            [9.35208, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.47005],\n            [9.35208, 45.474547],\n            [9.356577, 45.474547],\n            [9.356577, 45.47005],\n            [9.35208, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.474547],\n            [9.35208, 45.479043],\n            [9.356577, 45.479043],\n            [9.356577, 45.474547],\n            [9.35208, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.479043],\n            [9.35208, 45.48354],\n            [9.356577, 45.48354],\n            [9.356577, 45.479043],\n            [9.35208, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.48354],\n            [9.35208, 45.488036],\n            [9.356577, 45.488036],\n            [9.356577, 45.48354],\n            [9.35208, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.488036],\n            [9.35208, 45.492533],\n            [9.356577, 45.492533],\n            [9.356577, 45.488036],\n            [9.35208, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.492533],\n            [9.35208, 45.49703],\n            [9.356577, 45.49703],\n            [9.356577, 45.492533],\n            [9.35208, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.49703],\n            [9.35208, 45.501526],\n            [9.356577, 45.501526],\n            [9.356577, 45.49703],\n            [9.35208, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.501526],\n            [9.35208, 45.506023],\n            [9.356577, 45.506023],\n            [9.356577, 45.501526],\n            [9.35208, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.506023],\n            [9.35208, 45.510519],\n            [9.356577, 45.510519],\n            [9.356577, 45.506023],\n            [9.35208, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.510519],\n            [9.35208, 45.515016],\n            [9.356577, 45.515016],\n            [9.356577, 45.510519],\n            [9.35208, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.515016],\n            [9.35208, 45.519513],\n            [9.356577, 45.519513],\n            [9.356577, 45.515016],\n            [9.35208, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.519513],\n            [9.35208, 45.524009],\n            [9.356577, 45.524009],\n            [9.356577, 45.519513],\n            [9.35208, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.524009],\n            [9.35208, 45.528506],\n            [9.356577, 45.528506],\n            [9.356577, 45.524009],\n            [9.35208, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.528506],\n            [9.35208, 45.533002],\n            [9.356577, 45.533002],\n            [9.356577, 45.528506],\n            [9.35208, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.533002],\n            [9.35208, 45.537499],\n            [9.356577, 45.537499],\n            [9.356577, 45.533002],\n            [9.35208, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.537499],\n            [9.35208, 45.541996],\n            [9.356577, 45.541996],\n            [9.356577, 45.537499],\n            [9.35208, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.541996],\n            [9.35208, 45.546492],\n            [9.356577, 45.546492],\n            [9.356577, 45.541996],\n            [9.35208, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.546492],\n            [9.35208, 45.550989],\n            [9.356577, 45.550989],\n            [9.356577, 45.546492],\n            [9.35208, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.550989],\n            [9.35208, 45.555485],\n            [9.356577, 45.555485],\n            [9.356577, 45.550989],\n            [9.35208, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.555485],\n            [9.35208, 45.559982],\n            [9.356577, 45.559982],\n            [9.356577, 45.555485],\n            [9.35208, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.559982],\n            [9.35208, 45.564479],\n            [9.356577, 45.564479],\n            [9.356577, 45.559982],\n            [9.35208, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.564479],\n            [9.35208, 45.568975],\n            [9.356577, 45.568975],\n            [9.356577, 45.564479],\n            [9.35208, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.568975],\n            [9.35208, 45.573472],\n            [9.356577, 45.573472],\n            [9.356577, 45.568975],\n            [9.35208, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.573472],\n            [9.35208, 45.577968],\n            [9.356577, 45.577968],\n            [9.356577, 45.573472],\n            [9.35208, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.577968],\n            [9.35208, 45.582465],\n            [9.356577, 45.582465],\n            [9.356577, 45.577968],\n            [9.35208, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.582465],\n            [9.35208, 45.586962],\n            [9.356577, 45.586962],\n            [9.356577, 45.582465],\n            [9.35208, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.586962],\n            [9.35208, 45.591458],\n            [9.356577, 45.591458],\n            [9.356577, 45.586962],\n            [9.35208, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.591458],\n            [9.35208, 45.595955],\n            [9.356577, 45.595955],\n            [9.356577, 45.591458],\n            [9.35208, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.595955],\n            [9.35208, 45.600451],\n            [9.356577, 45.600451],\n            [9.356577, 45.595955],\n            [9.35208, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.600451],\n            [9.35208, 45.604948],\n            [9.356577, 45.604948],\n            [9.356577, 45.600451],\n            [9.35208, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.604948],\n            [9.35208, 45.609445],\n            [9.356577, 45.609445],\n            [9.356577, 45.604948],\n            [9.35208, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.609445],\n            [9.35208, 45.613941],\n            [9.356577, 45.613941],\n            [9.356577, 45.609445],\n            [9.35208, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.613941],\n            [9.35208, 45.618438],\n            [9.356577, 45.618438],\n            [9.356577, 45.613941],\n            [9.35208, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.618438],\n            [9.35208, 45.622934],\n            [9.356577, 45.622934],\n            [9.356577, 45.618438],\n            [9.35208, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.622934],\n            [9.35208, 45.627431],\n            [9.356577, 45.627431],\n            [9.356577, 45.622934],\n            [9.35208, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.627431],\n            [9.35208, 45.631928],\n            [9.356577, 45.631928],\n            [9.356577, 45.627431],\n            [9.35208, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.35208, 45.631928],\n            [9.35208, 45.636424],\n            [9.356577, 45.636424],\n            [9.356577, 45.631928],\n            [9.35208, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.339648],\n            [9.356577, 45.344145],\n            [9.361074, 45.344145],\n            [9.361074, 45.339648],\n            [9.356577, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.344145],\n            [9.356577, 45.348642],\n            [9.361074, 45.348642],\n            [9.361074, 45.344145],\n            [9.356577, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.348642],\n            [9.356577, 45.353138],\n            [9.361074, 45.353138],\n            [9.361074, 45.348642],\n            [9.356577, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.353138],\n            [9.356577, 45.357635],\n            [9.361074, 45.357635],\n            [9.361074, 45.353138],\n            [9.356577, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.357635],\n            [9.356577, 45.362131],\n            [9.361074, 45.362131],\n            [9.361074, 45.357635],\n            [9.356577, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.362131],\n            [9.356577, 45.366628],\n            [9.361074, 45.366628],\n            [9.361074, 45.362131],\n            [9.356577, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.366628],\n            [9.356577, 45.371125],\n            [9.361074, 45.371125],\n            [9.361074, 45.366628],\n            [9.356577, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.371125],\n            [9.356577, 45.375621],\n            [9.361074, 45.375621],\n            [9.361074, 45.371125],\n            [9.356577, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.375621],\n            [9.356577, 45.380118],\n            [9.361074, 45.380118],\n            [9.361074, 45.375621],\n            [9.356577, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.380118],\n            [9.356577, 45.384614],\n            [9.361074, 45.384614],\n            [9.361074, 45.380118],\n            [9.356577, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.384614],\n            [9.356577, 45.389111],\n            [9.361074, 45.389111],\n            [9.361074, 45.384614],\n            [9.356577, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.389111],\n            [9.356577, 45.393608],\n            [9.361074, 45.393608],\n            [9.361074, 45.389111],\n            [9.356577, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.393608],\n            [9.356577, 45.398104],\n            [9.361074, 45.398104],\n            [9.361074, 45.393608],\n            [9.356577, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.398104],\n            [9.356577, 45.402601],\n            [9.361074, 45.402601],\n            [9.361074, 45.398104],\n            [9.356577, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.402601],\n            [9.356577, 45.407097],\n            [9.361074, 45.407097],\n            [9.361074, 45.402601],\n            [9.356577, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.407097],\n            [9.356577, 45.411594],\n            [9.361074, 45.411594],\n            [9.361074, 45.407097],\n            [9.356577, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.411594],\n            [9.356577, 45.416091],\n            [9.361074, 45.416091],\n            [9.361074, 45.411594],\n            [9.356577, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.416091],\n            [9.356577, 45.420587],\n            [9.361074, 45.420587],\n            [9.361074, 45.416091],\n            [9.356577, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.420587],\n            [9.356577, 45.425084],\n            [9.361074, 45.425084],\n            [9.361074, 45.420587],\n            [9.356577, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.425084],\n            [9.356577, 45.42958],\n            [9.361074, 45.42958],\n            [9.361074, 45.425084],\n            [9.356577, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.42958],\n            [9.356577, 45.434077],\n            [9.361074, 45.434077],\n            [9.361074, 45.42958],\n            [9.356577, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.434077],\n            [9.356577, 45.438574],\n            [9.361074, 45.438574],\n            [9.361074, 45.434077],\n            [9.356577, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.438574],\n            [9.356577, 45.44307],\n            [9.361074, 45.44307],\n            [9.361074, 45.438574],\n            [9.356577, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.44307],\n            [9.356577, 45.447567],\n            [9.361074, 45.447567],\n            [9.361074, 45.44307],\n            [9.356577, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.447567],\n            [9.356577, 45.452063],\n            [9.361074, 45.452063],\n            [9.361074, 45.447567],\n            [9.356577, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.452063],\n            [9.356577, 45.45656],\n            [9.361074, 45.45656],\n            [9.361074, 45.452063],\n            [9.356577, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.45656],\n            [9.356577, 45.461057],\n            [9.361074, 45.461057],\n            [9.361074, 45.45656],\n            [9.356577, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.461057],\n            [9.356577, 45.465553],\n            [9.361074, 45.465553],\n            [9.361074, 45.461057],\n            [9.356577, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.465553],\n            [9.356577, 45.47005],\n            [9.361074, 45.47005],\n            [9.361074, 45.465553],\n            [9.356577, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.47005],\n            [9.356577, 45.474547],\n            [9.361074, 45.474547],\n            [9.361074, 45.47005],\n            [9.356577, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.474547],\n            [9.356577, 45.479043],\n            [9.361074, 45.479043],\n            [9.361074, 45.474547],\n            [9.356577, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.479043],\n            [9.356577, 45.48354],\n            [9.361074, 45.48354],\n            [9.361074, 45.479043],\n            [9.356577, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.48354],\n            [9.356577, 45.488036],\n            [9.361074, 45.488036],\n            [9.361074, 45.48354],\n            [9.356577, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.488036],\n            [9.356577, 45.492533],\n            [9.361074, 45.492533],\n            [9.361074, 45.488036],\n            [9.356577, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.492533],\n            [9.356577, 45.49703],\n            [9.361074, 45.49703],\n            [9.361074, 45.492533],\n            [9.356577, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.49703],\n            [9.356577, 45.501526],\n            [9.361074, 45.501526],\n            [9.361074, 45.49703],\n            [9.356577, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.501526],\n            [9.356577, 45.506023],\n            [9.361074, 45.506023],\n            [9.361074, 45.501526],\n            [9.356577, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.506023],\n            [9.356577, 45.510519],\n            [9.361074, 45.510519],\n            [9.361074, 45.506023],\n            [9.356577, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.510519],\n            [9.356577, 45.515016],\n            [9.361074, 45.515016],\n            [9.361074, 45.510519],\n            [9.356577, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.515016],\n            [9.356577, 45.519513],\n            [9.361074, 45.519513],\n            [9.361074, 45.515016],\n            [9.356577, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.519513],\n            [9.356577, 45.524009],\n            [9.361074, 45.524009],\n            [9.361074, 45.519513],\n            [9.356577, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.524009],\n            [9.356577, 45.528506],\n            [9.361074, 45.528506],\n            [9.361074, 45.524009],\n            [9.356577, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.528506],\n            [9.356577, 45.533002],\n            [9.361074, 45.533002],\n            [9.361074, 45.528506],\n            [9.356577, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.533002],\n            [9.356577, 45.537499],\n            [9.361074, 45.537499],\n            [9.361074, 45.533002],\n            [9.356577, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.537499],\n            [9.356577, 45.541996],\n            [9.361074, 45.541996],\n            [9.361074, 45.537499],\n            [9.356577, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.541996],\n            [9.356577, 45.546492],\n            [9.361074, 45.546492],\n            [9.361074, 45.541996],\n            [9.356577, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.546492],\n            [9.356577, 45.550989],\n            [9.361074, 45.550989],\n            [9.361074, 45.546492],\n            [9.356577, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.550989],\n            [9.356577, 45.555485],\n            [9.361074, 45.555485],\n            [9.361074, 45.550989],\n            [9.356577, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.555485],\n            [9.356577, 45.559982],\n            [9.361074, 45.559982],\n            [9.361074, 45.555485],\n            [9.356577, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.559982],\n            [9.356577, 45.564479],\n            [9.361074, 45.564479],\n            [9.361074, 45.559982],\n            [9.356577, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.564479],\n            [9.356577, 45.568975],\n            [9.361074, 45.568975],\n            [9.361074, 45.564479],\n            [9.356577, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.568975],\n            [9.356577, 45.573472],\n            [9.361074, 45.573472],\n            [9.361074, 45.568975],\n            [9.356577, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.573472],\n            [9.356577, 45.577968],\n            [9.361074, 45.577968],\n            [9.361074, 45.573472],\n            [9.356577, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.577968],\n            [9.356577, 45.582465],\n            [9.361074, 45.582465],\n            [9.361074, 45.577968],\n            [9.356577, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.582465],\n            [9.356577, 45.586962],\n            [9.361074, 45.586962],\n            [9.361074, 45.582465],\n            [9.356577, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.586962],\n            [9.356577, 45.591458],\n            [9.361074, 45.591458],\n            [9.361074, 45.586962],\n            [9.356577, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.591458],\n            [9.356577, 45.595955],\n            [9.361074, 45.595955],\n            [9.361074, 45.591458],\n            [9.356577, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.595955],\n            [9.356577, 45.600451],\n            [9.361074, 45.600451],\n            [9.361074, 45.595955],\n            [9.356577, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.600451],\n            [9.356577, 45.604948],\n            [9.361074, 45.604948],\n            [9.361074, 45.600451],\n            [9.356577, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.604948],\n            [9.356577, 45.609445],\n            [9.361074, 45.609445],\n            [9.361074, 45.604948],\n            [9.356577, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.609445],\n            [9.356577, 45.613941],\n            [9.361074, 45.613941],\n            [9.361074, 45.609445],\n            [9.356577, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.613941],\n            [9.356577, 45.618438],\n            [9.361074, 45.618438],\n            [9.361074, 45.613941],\n            [9.356577, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.618438],\n            [9.356577, 45.622934],\n            [9.361074, 45.622934],\n            [9.361074, 45.618438],\n            [9.356577, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.622934],\n            [9.356577, 45.627431],\n            [9.361074, 45.627431],\n            [9.361074, 45.622934],\n            [9.356577, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.627431],\n            [9.356577, 45.631928],\n            [9.361074, 45.631928],\n            [9.361074, 45.627431],\n            [9.356577, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.356577, 45.631928],\n            [9.356577, 45.636424],\n            [9.361074, 45.636424],\n            [9.361074, 45.631928],\n            [9.356577, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.339648],\n            [9.361074, 45.344145],\n            [9.36557, 45.344145],\n            [9.36557, 45.339648],\n            [9.361074, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.344145],\n            [9.361074, 45.348642],\n            [9.36557, 45.348642],\n            [9.36557, 45.344145],\n            [9.361074, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.348642],\n            [9.361074, 45.353138],\n            [9.36557, 45.353138],\n            [9.36557, 45.348642],\n            [9.361074, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.353138],\n            [9.361074, 45.357635],\n            [9.36557, 45.357635],\n            [9.36557, 45.353138],\n            [9.361074, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.357635],\n            [9.361074, 45.362131],\n            [9.36557, 45.362131],\n            [9.36557, 45.357635],\n            [9.361074, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.362131],\n            [9.361074, 45.366628],\n            [9.36557, 45.366628],\n            [9.36557, 45.362131],\n            [9.361074, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.366628],\n            [9.361074, 45.371125],\n            [9.36557, 45.371125],\n            [9.36557, 45.366628],\n            [9.361074, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.371125],\n            [9.361074, 45.375621],\n            [9.36557, 45.375621],\n            [9.36557, 45.371125],\n            [9.361074, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.375621],\n            [9.361074, 45.380118],\n            [9.36557, 45.380118],\n            [9.36557, 45.375621],\n            [9.361074, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.380118],\n            [9.361074, 45.384614],\n            [9.36557, 45.384614],\n            [9.36557, 45.380118],\n            [9.361074, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.384614],\n            [9.361074, 45.389111],\n            [9.36557, 45.389111],\n            [9.36557, 45.384614],\n            [9.361074, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.389111],\n            [9.361074, 45.393608],\n            [9.36557, 45.393608],\n            [9.36557, 45.389111],\n            [9.361074, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.393608],\n            [9.361074, 45.398104],\n            [9.36557, 45.398104],\n            [9.36557, 45.393608],\n            [9.361074, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.398104],\n            [9.361074, 45.402601],\n            [9.36557, 45.402601],\n            [9.36557, 45.398104],\n            [9.361074, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.402601],\n            [9.361074, 45.407097],\n            [9.36557, 45.407097],\n            [9.36557, 45.402601],\n            [9.361074, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.407097],\n            [9.361074, 45.411594],\n            [9.36557, 45.411594],\n            [9.36557, 45.407097],\n            [9.361074, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.411594],\n            [9.361074, 45.416091],\n            [9.36557, 45.416091],\n            [9.36557, 45.411594],\n            [9.361074, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.416091],\n            [9.361074, 45.420587],\n            [9.36557, 45.420587],\n            [9.36557, 45.416091],\n            [9.361074, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.420587],\n            [9.361074, 45.425084],\n            [9.36557, 45.425084],\n            [9.36557, 45.420587],\n            [9.361074, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.425084],\n            [9.361074, 45.42958],\n            [9.36557, 45.42958],\n            [9.36557, 45.425084],\n            [9.361074, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.42958],\n            [9.361074, 45.434077],\n            [9.36557, 45.434077],\n            [9.36557, 45.42958],\n            [9.361074, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.434077],\n            [9.361074, 45.438574],\n            [9.36557, 45.438574],\n            [9.36557, 45.434077],\n            [9.361074, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.438574],\n            [9.361074, 45.44307],\n            [9.36557, 45.44307],\n            [9.36557, 45.438574],\n            [9.361074, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.44307],\n            [9.361074, 45.447567],\n            [9.36557, 45.447567],\n            [9.36557, 45.44307],\n            [9.361074, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.447567],\n            [9.361074, 45.452063],\n            [9.36557, 45.452063],\n            [9.36557, 45.447567],\n            [9.361074, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.452063],\n            [9.361074, 45.45656],\n            [9.36557, 45.45656],\n            [9.36557, 45.452063],\n            [9.361074, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.45656],\n            [9.361074, 45.461057],\n            [9.36557, 45.461057],\n            [9.36557, 45.45656],\n            [9.361074, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.461057],\n            [9.361074, 45.465553],\n            [9.36557, 45.465553],\n            [9.36557, 45.461057],\n            [9.361074, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.465553],\n            [9.361074, 45.47005],\n            [9.36557, 45.47005],\n            [9.36557, 45.465553],\n            [9.361074, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.47005],\n            [9.361074, 45.474547],\n            [9.36557, 45.474547],\n            [9.36557, 45.47005],\n            [9.361074, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.474547],\n            [9.361074, 45.479043],\n            [9.36557, 45.479043],\n            [9.36557, 45.474547],\n            [9.361074, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.479043],\n            [9.361074, 45.48354],\n            [9.36557, 45.48354],\n            [9.36557, 45.479043],\n            [9.361074, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.48354],\n            [9.361074, 45.488036],\n            [9.36557, 45.488036],\n            [9.36557, 45.48354],\n            [9.361074, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.488036],\n            [9.361074, 45.492533],\n            [9.36557, 45.492533],\n            [9.36557, 45.488036],\n            [9.361074, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.492533],\n            [9.361074, 45.49703],\n            [9.36557, 45.49703],\n            [9.36557, 45.492533],\n            [9.361074, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.49703],\n            [9.361074, 45.501526],\n            [9.36557, 45.501526],\n            [9.36557, 45.49703],\n            [9.361074, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.501526],\n            [9.361074, 45.506023],\n            [9.36557, 45.506023],\n            [9.36557, 45.501526],\n            [9.361074, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.506023],\n            [9.361074, 45.510519],\n            [9.36557, 45.510519],\n            [9.36557, 45.506023],\n            [9.361074, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.510519],\n            [9.361074, 45.515016],\n            [9.36557, 45.515016],\n            [9.36557, 45.510519],\n            [9.361074, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.515016],\n            [9.361074, 45.519513],\n            [9.36557, 45.519513],\n            [9.36557, 45.515016],\n            [9.361074, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.519513],\n            [9.361074, 45.524009],\n            [9.36557, 45.524009],\n            [9.36557, 45.519513],\n            [9.361074, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.524009],\n            [9.361074, 45.528506],\n            [9.36557, 45.528506],\n            [9.36557, 45.524009],\n            [9.361074, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.528506],\n            [9.361074, 45.533002],\n            [9.36557, 45.533002],\n            [9.36557, 45.528506],\n            [9.361074, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.533002],\n            [9.361074, 45.537499],\n            [9.36557, 45.537499],\n            [9.36557, 45.533002],\n            [9.361074, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.537499],\n            [9.361074, 45.541996],\n            [9.36557, 45.541996],\n            [9.36557, 45.537499],\n            [9.361074, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.541996],\n            [9.361074, 45.546492],\n            [9.36557, 45.546492],\n            [9.36557, 45.541996],\n            [9.361074, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.546492],\n            [9.361074, 45.550989],\n            [9.36557, 45.550989],\n            [9.36557, 45.546492],\n            [9.361074, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.550989],\n            [9.361074, 45.555485],\n            [9.36557, 45.555485],\n            [9.36557, 45.550989],\n            [9.361074, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.555485],\n            [9.361074, 45.559982],\n            [9.36557, 45.559982],\n            [9.36557, 45.555485],\n            [9.361074, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.559982],\n            [9.361074, 45.564479],\n            [9.36557, 45.564479],\n            [9.36557, 45.559982],\n            [9.361074, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.564479],\n            [9.361074, 45.568975],\n            [9.36557, 45.568975],\n            [9.36557, 45.564479],\n            [9.361074, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.568975],\n            [9.361074, 45.573472],\n            [9.36557, 45.573472],\n            [9.36557, 45.568975],\n            [9.361074, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.573472],\n            [9.361074, 45.577968],\n            [9.36557, 45.577968],\n            [9.36557, 45.573472],\n            [9.361074, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.577968],\n            [9.361074, 45.582465],\n            [9.36557, 45.582465],\n            [9.36557, 45.577968],\n            [9.361074, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.582465],\n            [9.361074, 45.586962],\n            [9.36557, 45.586962],\n            [9.36557, 45.582465],\n            [9.361074, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.586962],\n            [9.361074, 45.591458],\n            [9.36557, 45.591458],\n            [9.36557, 45.586962],\n            [9.361074, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.591458],\n            [9.361074, 45.595955],\n            [9.36557, 45.595955],\n            [9.36557, 45.591458],\n            [9.361074, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.595955],\n            [9.361074, 45.600451],\n            [9.36557, 45.600451],\n            [9.36557, 45.595955],\n            [9.361074, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.600451],\n            [9.361074, 45.604948],\n            [9.36557, 45.604948],\n            [9.36557, 45.600451],\n            [9.361074, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.604948],\n            [9.361074, 45.609445],\n            [9.36557, 45.609445],\n            [9.36557, 45.604948],\n            [9.361074, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.609445],\n            [9.361074, 45.613941],\n            [9.36557, 45.613941],\n            [9.36557, 45.609445],\n            [9.361074, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.613941],\n            [9.361074, 45.618438],\n            [9.36557, 45.618438],\n            [9.36557, 45.613941],\n            [9.361074, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.618438],\n            [9.361074, 45.622934],\n            [9.36557, 45.622934],\n            [9.36557, 45.618438],\n            [9.361074, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.622934],\n            [9.361074, 45.627431],\n            [9.36557, 45.627431],\n            [9.36557, 45.622934],\n            [9.361074, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#4daaff\",\n        \"fill\": \"#4daaff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.627431],\n            [9.361074, 45.631928],\n            [9.36557, 45.631928],\n            [9.36557, 45.627431],\n            [9.361074, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.361074, 45.631928],\n            [9.361074, 45.636424],\n            [9.36557, 45.636424],\n            [9.36557, 45.631928],\n            [9.361074, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.339648],\n            [9.36557, 45.344145],\n            [9.370067, 45.344145],\n            [9.370067, 45.339648],\n            [9.36557, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.344145],\n            [9.36557, 45.348642],\n            [9.370067, 45.348642],\n            [9.370067, 45.344145],\n            [9.36557, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.348642],\n            [9.36557, 45.353138],\n            [9.370067, 45.353138],\n            [9.370067, 45.348642],\n            [9.36557, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.353138],\n            [9.36557, 45.357635],\n            [9.370067, 45.357635],\n            [9.370067, 45.353138],\n            [9.36557, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.357635],\n            [9.36557, 45.362131],\n            [9.370067, 45.362131],\n            [9.370067, 45.357635],\n            [9.36557, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.362131],\n            [9.36557, 45.366628],\n            [9.370067, 45.366628],\n            [9.370067, 45.362131],\n            [9.36557, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.366628],\n            [9.36557, 45.371125],\n            [9.370067, 45.371125],\n            [9.370067, 45.366628],\n            [9.36557, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.371125],\n            [9.36557, 45.375621],\n            [9.370067, 45.375621],\n            [9.370067, 45.371125],\n            [9.36557, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.375621],\n            [9.36557, 45.380118],\n            [9.370067, 45.380118],\n            [9.370067, 45.375621],\n            [9.36557, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.380118],\n            [9.36557, 45.384614],\n            [9.370067, 45.384614],\n            [9.370067, 45.380118],\n            [9.36557, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.384614],\n            [9.36557, 45.389111],\n            [9.370067, 45.389111],\n            [9.370067, 45.384614],\n            [9.36557, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.389111],\n            [9.36557, 45.393608],\n            [9.370067, 45.393608],\n            [9.370067, 45.389111],\n            [9.36557, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.393608],\n            [9.36557, 45.398104],\n            [9.370067, 45.398104],\n            [9.370067, 45.393608],\n            [9.36557, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.398104],\n            [9.36557, 45.402601],\n            [9.370067, 45.402601],\n            [9.370067, 45.398104],\n            [9.36557, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.402601],\n            [9.36557, 45.407097],\n            [9.370067, 45.407097],\n            [9.370067, 45.402601],\n            [9.36557, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.407097],\n            [9.36557, 45.411594],\n            [9.370067, 45.411594],\n            [9.370067, 45.407097],\n            [9.36557, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.411594],\n            [9.36557, 45.416091],\n            [9.370067, 45.416091],\n            [9.370067, 45.411594],\n            [9.36557, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.416091],\n            [9.36557, 45.420587],\n            [9.370067, 45.420587],\n            [9.370067, 45.416091],\n            [9.36557, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.420587],\n            [9.36557, 45.425084],\n            [9.370067, 45.425084],\n            [9.370067, 45.420587],\n            [9.36557, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.425084],\n            [9.36557, 45.42958],\n            [9.370067, 45.42958],\n            [9.370067, 45.425084],\n            [9.36557, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.42958],\n            [9.36557, 45.434077],\n            [9.370067, 45.434077],\n            [9.370067, 45.42958],\n            [9.36557, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.434077],\n            [9.36557, 45.438574],\n            [9.370067, 45.438574],\n            [9.370067, 45.434077],\n            [9.36557, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.438574],\n            [9.36557, 45.44307],\n            [9.370067, 45.44307],\n            [9.370067, 45.438574],\n            [9.36557, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.44307],\n            [9.36557, 45.447567],\n            [9.370067, 45.447567],\n            [9.370067, 45.44307],\n            [9.36557, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.447567],\n            [9.36557, 45.452063],\n            [9.370067, 45.452063],\n            [9.370067, 45.447567],\n            [9.36557, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.452063],\n            [9.36557, 45.45656],\n            [9.370067, 45.45656],\n            [9.370067, 45.452063],\n            [9.36557, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.45656],\n            [9.36557, 45.461057],\n            [9.370067, 45.461057],\n            [9.370067, 45.45656],\n            [9.36557, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.461057],\n            [9.36557, 45.465553],\n            [9.370067, 45.465553],\n            [9.370067, 45.461057],\n            [9.36557, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.465553],\n            [9.36557, 45.47005],\n            [9.370067, 45.47005],\n            [9.370067, 45.465553],\n            [9.36557, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.47005],\n            [9.36557, 45.474547],\n            [9.370067, 45.474547],\n            [9.370067, 45.47005],\n            [9.36557, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.474547],\n            [9.36557, 45.479043],\n            [9.370067, 45.479043],\n            [9.370067, 45.474547],\n            [9.36557, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.479043],\n            [9.36557, 45.48354],\n            [9.370067, 45.48354],\n            [9.370067, 45.479043],\n            [9.36557, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.48354],\n            [9.36557, 45.488036],\n            [9.370067, 45.488036],\n            [9.370067, 45.48354],\n            [9.36557, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.488036],\n            [9.36557, 45.492533],\n            [9.370067, 45.492533],\n            [9.370067, 45.488036],\n            [9.36557, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.492533],\n            [9.36557, 45.49703],\n            [9.370067, 45.49703],\n            [9.370067, 45.492533],\n            [9.36557, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.49703],\n            [9.36557, 45.501526],\n            [9.370067, 45.501526],\n            [9.370067, 45.49703],\n            [9.36557, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.501526],\n            [9.36557, 45.506023],\n            [9.370067, 45.506023],\n            [9.370067, 45.501526],\n            [9.36557, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.506023],\n            [9.36557, 45.510519],\n            [9.370067, 45.510519],\n            [9.370067, 45.506023],\n            [9.36557, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.510519],\n            [9.36557, 45.515016],\n            [9.370067, 45.515016],\n            [9.370067, 45.510519],\n            [9.36557, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.515016],\n            [9.36557, 45.519513],\n            [9.370067, 45.519513],\n            [9.370067, 45.515016],\n            [9.36557, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.519513],\n            [9.36557, 45.524009],\n            [9.370067, 45.524009],\n            [9.370067, 45.519513],\n            [9.36557, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.524009],\n            [9.36557, 45.528506],\n            [9.370067, 45.528506],\n            [9.370067, 45.524009],\n            [9.36557, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.528506],\n            [9.36557, 45.533002],\n            [9.370067, 45.533002],\n            [9.370067, 45.528506],\n            [9.36557, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.533002],\n            [9.36557, 45.537499],\n            [9.370067, 45.537499],\n            [9.370067, 45.533002],\n            [9.36557, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.537499],\n            [9.36557, 45.541996],\n            [9.370067, 45.541996],\n            [9.370067, 45.537499],\n            [9.36557, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.541996],\n            [9.36557, 45.546492],\n            [9.370067, 45.546492],\n            [9.370067, 45.541996],\n            [9.36557, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.546492],\n            [9.36557, 45.550989],\n            [9.370067, 45.550989],\n            [9.370067, 45.546492],\n            [9.36557, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.550989],\n            [9.36557, 45.555485],\n            [9.370067, 45.555485],\n            [9.370067, 45.550989],\n            [9.36557, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.555485],\n            [9.36557, 45.559982],\n            [9.370067, 45.559982],\n            [9.370067, 45.555485],\n            [9.36557, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.559982],\n            [9.36557, 45.564479],\n            [9.370067, 45.564479],\n            [9.370067, 45.559982],\n            [9.36557, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.564479],\n            [9.36557, 45.568975],\n            [9.370067, 45.568975],\n            [9.370067, 45.564479],\n            [9.36557, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.568975],\n            [9.36557, 45.573472],\n            [9.370067, 45.573472],\n            [9.370067, 45.568975],\n            [9.36557, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.573472],\n            [9.36557, 45.577968],\n            [9.370067, 45.577968],\n            [9.370067, 45.573472],\n            [9.36557, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.577968],\n            [9.36557, 45.582465],\n            [9.370067, 45.582465],\n            [9.370067, 45.577968],\n            [9.36557, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.582465],\n            [9.36557, 45.586962],\n            [9.370067, 45.586962],\n            [9.370067, 45.582465],\n            [9.36557, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.586962],\n            [9.36557, 45.591458],\n            [9.370067, 45.591458],\n            [9.370067, 45.586962],\n            [9.36557, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.591458],\n            [9.36557, 45.595955],\n            [9.370067, 45.595955],\n            [9.370067, 45.591458],\n            [9.36557, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.595955],\n            [9.36557, 45.600451],\n            [9.370067, 45.600451],\n            [9.370067, 45.595955],\n            [9.36557, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.600451],\n            [9.36557, 45.604948],\n            [9.370067, 45.604948],\n            [9.370067, 45.600451],\n            [9.36557, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.604948],\n            [9.36557, 45.609445],\n            [9.370067, 45.609445],\n            [9.370067, 45.604948],\n            [9.36557, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.609445],\n            [9.36557, 45.613941],\n            [9.370067, 45.613941],\n            [9.370067, 45.609445],\n            [9.36557, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.613941],\n            [9.36557, 45.618438],\n            [9.370067, 45.618438],\n            [9.370067, 45.613941],\n            [9.36557, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.618438],\n            [9.36557, 45.622934],\n            [9.370067, 45.622934],\n            [9.370067, 45.618438],\n            [9.36557, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.622934],\n            [9.36557, 45.627431],\n            [9.370067, 45.627431],\n            [9.370067, 45.622934],\n            [9.36557, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.627431],\n            [9.36557, 45.631928],\n            [9.370067, 45.631928],\n            [9.370067, 45.627431],\n            [9.36557, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.36557, 45.631928],\n            [9.36557, 45.636424],\n            [9.370067, 45.636424],\n            [9.370067, 45.631928],\n            [9.36557, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.339648],\n            [9.370067, 45.344145],\n            [9.374563, 45.344145],\n            [9.374563, 45.339648],\n            [9.370067, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.344145],\n            [9.370067, 45.348642],\n            [9.374563, 45.348642],\n            [9.374563, 45.344145],\n            [9.370067, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.348642],\n            [9.370067, 45.353138],\n            [9.374563, 45.353138],\n            [9.374563, 45.348642],\n            [9.370067, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.353138],\n            [9.370067, 45.357635],\n            [9.374563, 45.357635],\n            [9.374563, 45.353138],\n            [9.370067, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.357635],\n            [9.370067, 45.362131],\n            [9.374563, 45.362131],\n            [9.374563, 45.357635],\n            [9.370067, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.362131],\n            [9.370067, 45.366628],\n            [9.374563, 45.366628],\n            [9.374563, 45.362131],\n            [9.370067, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.366628],\n            [9.370067, 45.371125],\n            [9.374563, 45.371125],\n            [9.374563, 45.366628],\n            [9.370067, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.371125],\n            [9.370067, 45.375621],\n            [9.374563, 45.375621],\n            [9.374563, 45.371125],\n            [9.370067, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.375621],\n            [9.370067, 45.380118],\n            [9.374563, 45.380118],\n            [9.374563, 45.375621],\n            [9.370067, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.380118],\n            [9.370067, 45.384614],\n            [9.374563, 45.384614],\n            [9.374563, 45.380118],\n            [9.370067, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.384614],\n            [9.370067, 45.389111],\n            [9.374563, 45.389111],\n            [9.374563, 45.384614],\n            [9.370067, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.389111],\n            [9.370067, 45.393608],\n            [9.374563, 45.393608],\n            [9.374563, 45.389111],\n            [9.370067, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.393608],\n            [9.370067, 45.398104],\n            [9.374563, 45.398104],\n            [9.374563, 45.393608],\n            [9.370067, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.398104],\n            [9.370067, 45.402601],\n            [9.374563, 45.402601],\n            [9.374563, 45.398104],\n            [9.370067, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.402601],\n            [9.370067, 45.407097],\n            [9.374563, 45.407097],\n            [9.374563, 45.402601],\n            [9.370067, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.407097],\n            [9.370067, 45.411594],\n            [9.374563, 45.411594],\n            [9.374563, 45.407097],\n            [9.370067, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.411594],\n            [9.370067, 45.416091],\n            [9.374563, 45.416091],\n            [9.374563, 45.411594],\n            [9.370067, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.416091],\n            [9.370067, 45.420587],\n            [9.374563, 45.420587],\n            [9.374563, 45.416091],\n            [9.370067, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.420587],\n            [9.370067, 45.425084],\n            [9.374563, 45.425084],\n            [9.374563, 45.420587],\n            [9.370067, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.425084],\n            [9.370067, 45.42958],\n            [9.374563, 45.42958],\n            [9.374563, 45.425084],\n            [9.370067, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.42958],\n            [9.370067, 45.434077],\n            [9.374563, 45.434077],\n            [9.374563, 45.42958],\n            [9.370067, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.434077],\n            [9.370067, 45.438574],\n            [9.374563, 45.438574],\n            [9.374563, 45.434077],\n            [9.370067, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.438574],\n            [9.370067, 45.44307],\n            [9.374563, 45.44307],\n            [9.374563, 45.438574],\n            [9.370067, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.44307],\n            [9.370067, 45.447567],\n            [9.374563, 45.447567],\n            [9.374563, 45.44307],\n            [9.370067, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.447567],\n            [9.370067, 45.452063],\n            [9.374563, 45.452063],\n            [9.374563, 45.447567],\n            [9.370067, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.452063],\n            [9.370067, 45.45656],\n            [9.374563, 45.45656],\n            [9.374563, 45.452063],\n            [9.370067, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.45656],\n            [9.370067, 45.461057],\n            [9.374563, 45.461057],\n            [9.374563, 45.45656],\n            [9.370067, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.461057],\n            [9.370067, 45.465553],\n            [9.374563, 45.465553],\n            [9.374563, 45.461057],\n            [9.370067, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.465553],\n            [9.370067, 45.47005],\n            [9.374563, 45.47005],\n            [9.374563, 45.465553],\n            [9.370067, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.47005],\n            [9.370067, 45.474547],\n            [9.374563, 45.474547],\n            [9.374563, 45.47005],\n            [9.370067, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.474547],\n            [9.370067, 45.479043],\n            [9.374563, 45.479043],\n            [9.374563, 45.474547],\n            [9.370067, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.479043],\n            [9.370067, 45.48354],\n            [9.374563, 45.48354],\n            [9.374563, 45.479043],\n            [9.370067, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.48354],\n            [9.370067, 45.488036],\n            [9.374563, 45.488036],\n            [9.374563, 45.48354],\n            [9.370067, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.488036],\n            [9.370067, 45.492533],\n            [9.374563, 45.492533],\n            [9.374563, 45.488036],\n            [9.370067, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.492533],\n            [9.370067, 45.49703],\n            [9.374563, 45.49703],\n            [9.374563, 45.492533],\n            [9.370067, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.49703],\n            [9.370067, 45.501526],\n            [9.374563, 45.501526],\n            [9.374563, 45.49703],\n            [9.370067, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.501526],\n            [9.370067, 45.506023],\n            [9.374563, 45.506023],\n            [9.374563, 45.501526],\n            [9.370067, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.506023],\n            [9.370067, 45.510519],\n            [9.374563, 45.510519],\n            [9.374563, 45.506023],\n            [9.370067, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.510519],\n            [9.370067, 45.515016],\n            [9.374563, 45.515016],\n            [9.374563, 45.510519],\n            [9.370067, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.515016],\n            [9.370067, 45.519513],\n            [9.374563, 45.519513],\n            [9.374563, 45.515016],\n            [9.370067, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.519513],\n            [9.370067, 45.524009],\n            [9.374563, 45.524009],\n            [9.374563, 45.519513],\n            [9.370067, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.524009],\n            [9.370067, 45.528506],\n            [9.374563, 45.528506],\n            [9.374563, 45.524009],\n            [9.370067, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.528506],\n            [9.370067, 45.533002],\n            [9.374563, 45.533002],\n            [9.374563, 45.528506],\n            [9.370067, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.533002],\n            [9.370067, 45.537499],\n            [9.374563, 45.537499],\n            [9.374563, 45.533002],\n            [9.370067, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.537499],\n            [9.370067, 45.541996],\n            [9.374563, 45.541996],\n            [9.374563, 45.537499],\n            [9.370067, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.541996],\n            [9.370067, 45.546492],\n            [9.374563, 45.546492],\n            [9.374563, 45.541996],\n            [9.370067, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.546492],\n            [9.370067, 45.550989],\n            [9.374563, 45.550989],\n            [9.374563, 45.546492],\n            [9.370067, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.550989],\n            [9.370067, 45.555485],\n            [9.374563, 45.555485],\n            [9.374563, 45.550989],\n            [9.370067, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.555485],\n            [9.370067, 45.559982],\n            [9.374563, 45.559982],\n            [9.374563, 45.555485],\n            [9.370067, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.559982],\n            [9.370067, 45.564479],\n            [9.374563, 45.564479],\n            [9.374563, 45.559982],\n            [9.370067, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.564479],\n            [9.370067, 45.568975],\n            [9.374563, 45.568975],\n            [9.374563, 45.564479],\n            [9.370067, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.568975],\n            [9.370067, 45.573472],\n            [9.374563, 45.573472],\n            [9.374563, 45.568975],\n            [9.370067, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.573472],\n            [9.370067, 45.577968],\n            [9.374563, 45.577968],\n            [9.374563, 45.573472],\n            [9.370067, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.577968],\n            [9.370067, 45.582465],\n            [9.374563, 45.582465],\n            [9.374563, 45.577968],\n            [9.370067, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.582465],\n            [9.370067, 45.586962],\n            [9.374563, 45.586962],\n            [9.374563, 45.582465],\n            [9.370067, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.586962],\n            [9.370067, 45.591458],\n            [9.374563, 45.591458],\n            [9.374563, 45.586962],\n            [9.370067, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.591458],\n            [9.370067, 45.595955],\n            [9.374563, 45.595955],\n            [9.374563, 45.591458],\n            [9.370067, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.595955],\n            [9.370067, 45.600451],\n            [9.374563, 45.600451],\n            [9.374563, 45.595955],\n            [9.370067, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.600451],\n            [9.370067, 45.604948],\n            [9.374563, 45.604948],\n            [9.374563, 45.600451],\n            [9.370067, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.604948],\n            [9.370067, 45.609445],\n            [9.374563, 45.609445],\n            [9.374563, 45.604948],\n            [9.370067, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.609445],\n            [9.370067, 45.613941],\n            [9.374563, 45.613941],\n            [9.374563, 45.609445],\n            [9.370067, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.613941],\n            [9.370067, 45.618438],\n            [9.374563, 45.618438],\n            [9.374563, 45.613941],\n            [9.370067, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.618438],\n            [9.370067, 45.622934],\n            [9.374563, 45.622934],\n            [9.374563, 45.618438],\n            [9.370067, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.622934],\n            [9.370067, 45.627431],\n            [9.374563, 45.627431],\n            [9.374563, 45.622934],\n            [9.370067, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.627431],\n            [9.370067, 45.631928],\n            [9.374563, 45.631928],\n            [9.374563, 45.627431],\n            [9.370067, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.370067, 45.631928],\n            [9.370067, 45.636424],\n            [9.374563, 45.636424],\n            [9.374563, 45.631928],\n            [9.370067, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.339648],\n            [9.374563, 45.344145],\n            [9.37906, 45.344145],\n            [9.37906, 45.339648],\n            [9.374563, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.344145],\n            [9.374563, 45.348642],\n            [9.37906, 45.348642],\n            [9.37906, 45.344145],\n            [9.374563, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.348642],\n            [9.374563, 45.353138],\n            [9.37906, 45.353138],\n            [9.37906, 45.348642],\n            [9.374563, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.353138],\n            [9.374563, 45.357635],\n            [9.37906, 45.357635],\n            [9.37906, 45.353138],\n            [9.374563, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.357635],\n            [9.374563, 45.362131],\n            [9.37906, 45.362131],\n            [9.37906, 45.357635],\n            [9.374563, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.362131],\n            [9.374563, 45.366628],\n            [9.37906, 45.366628],\n            [9.37906, 45.362131],\n            [9.374563, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.366628],\n            [9.374563, 45.371125],\n            [9.37906, 45.371125],\n            [9.37906, 45.366628],\n            [9.374563, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.371125],\n            [9.374563, 45.375621],\n            [9.37906, 45.375621],\n            [9.37906, 45.371125],\n            [9.374563, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.375621],\n            [9.374563, 45.380118],\n            [9.37906, 45.380118],\n            [9.37906, 45.375621],\n            [9.374563, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.380118],\n            [9.374563, 45.384614],\n            [9.37906, 45.384614],\n            [9.37906, 45.380118],\n            [9.374563, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.384614],\n            [9.374563, 45.389111],\n            [9.37906, 45.389111],\n            [9.37906, 45.384614],\n            [9.374563, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.389111],\n            [9.374563, 45.393608],\n            [9.37906, 45.393608],\n            [9.37906, 45.389111],\n            [9.374563, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.393608],\n            [9.374563, 45.398104],\n            [9.37906, 45.398104],\n            [9.37906, 45.393608],\n            [9.374563, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.398104],\n            [9.374563, 45.402601],\n            [9.37906, 45.402601],\n            [9.37906, 45.398104],\n            [9.374563, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.402601],\n            [9.374563, 45.407097],\n            [9.37906, 45.407097],\n            [9.37906, 45.402601],\n            [9.374563, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.407097],\n            [9.374563, 45.411594],\n            [9.37906, 45.411594],\n            [9.37906, 45.407097],\n            [9.374563, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.411594],\n            [9.374563, 45.416091],\n            [9.37906, 45.416091],\n            [9.37906, 45.411594],\n            [9.374563, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.416091],\n            [9.374563, 45.420587],\n            [9.37906, 45.420587],\n            [9.37906, 45.416091],\n            [9.374563, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.420587],\n            [9.374563, 45.425084],\n            [9.37906, 45.425084],\n            [9.37906, 45.420587],\n            [9.374563, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.425084],\n            [9.374563, 45.42958],\n            [9.37906, 45.42958],\n            [9.37906, 45.425084],\n            [9.374563, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.42958],\n            [9.374563, 45.434077],\n            [9.37906, 45.434077],\n            [9.37906, 45.42958],\n            [9.374563, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.434077],\n            [9.374563, 45.438574],\n            [9.37906, 45.438574],\n            [9.37906, 45.434077],\n            [9.374563, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.438574],\n            [9.374563, 45.44307],\n            [9.37906, 45.44307],\n            [9.37906, 45.438574],\n            [9.374563, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.44307],\n            [9.374563, 45.447567],\n            [9.37906, 45.447567],\n            [9.37906, 45.44307],\n            [9.374563, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.447567],\n            [9.374563, 45.452063],\n            [9.37906, 45.452063],\n            [9.37906, 45.447567],\n            [9.374563, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.452063],\n            [9.374563, 45.45656],\n            [9.37906, 45.45656],\n            [9.37906, 45.452063],\n            [9.374563, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.45656],\n            [9.374563, 45.461057],\n            [9.37906, 45.461057],\n            [9.37906, 45.45656],\n            [9.374563, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.461057],\n            [9.374563, 45.465553],\n            [9.37906, 45.465553],\n            [9.37906, 45.461057],\n            [9.374563, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.465553],\n            [9.374563, 45.47005],\n            [9.37906, 45.47005],\n            [9.37906, 45.465553],\n            [9.374563, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.47005],\n            [9.374563, 45.474547],\n            [9.37906, 45.474547],\n            [9.37906, 45.47005],\n            [9.374563, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.474547],\n            [9.374563, 45.479043],\n            [9.37906, 45.479043],\n            [9.37906, 45.474547],\n            [9.374563, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.479043],\n            [9.374563, 45.48354],\n            [9.37906, 45.48354],\n            [9.37906, 45.479043],\n            [9.374563, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.48354],\n            [9.374563, 45.488036],\n            [9.37906, 45.488036],\n            [9.37906, 45.48354],\n            [9.374563, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.488036],\n            [9.374563, 45.492533],\n            [9.37906, 45.492533],\n            [9.37906, 45.488036],\n            [9.374563, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.492533],\n            [9.374563, 45.49703],\n            [9.37906, 45.49703],\n            [9.37906, 45.492533],\n            [9.374563, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.49703],\n            [9.374563, 45.501526],\n            [9.37906, 45.501526],\n            [9.37906, 45.49703],\n            [9.374563, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.501526],\n            [9.374563, 45.506023],\n            [9.37906, 45.506023],\n            [9.37906, 45.501526],\n            [9.374563, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.506023],\n            [9.374563, 45.510519],\n            [9.37906, 45.510519],\n            [9.37906, 45.506023],\n            [9.374563, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.510519],\n            [9.374563, 45.515016],\n            [9.37906, 45.515016],\n            [9.37906, 45.510519],\n            [9.374563, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.515016],\n            [9.374563, 45.519513],\n            [9.37906, 45.519513],\n            [9.37906, 45.515016],\n            [9.374563, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.519513],\n            [9.374563, 45.524009],\n            [9.37906, 45.524009],\n            [9.37906, 45.519513],\n            [9.374563, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.524009],\n            [9.374563, 45.528506],\n            [9.37906, 45.528506],\n            [9.37906, 45.524009],\n            [9.374563, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.528506],\n            [9.374563, 45.533002],\n            [9.37906, 45.533002],\n            [9.37906, 45.528506],\n            [9.374563, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.533002],\n            [9.374563, 45.537499],\n            [9.37906, 45.537499],\n            [9.37906, 45.533002],\n            [9.374563, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.537499],\n            [9.374563, 45.541996],\n            [9.37906, 45.541996],\n            [9.37906, 45.537499],\n            [9.374563, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.541996],\n            [9.374563, 45.546492],\n            [9.37906, 45.546492],\n            [9.37906, 45.541996],\n            [9.374563, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.546492],\n            [9.374563, 45.550989],\n            [9.37906, 45.550989],\n            [9.37906, 45.546492],\n            [9.374563, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.550989],\n            [9.374563, 45.555485],\n            [9.37906, 45.555485],\n            [9.37906, 45.550989],\n            [9.374563, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.555485],\n            [9.374563, 45.559982],\n            [9.37906, 45.559982],\n            [9.37906, 45.555485],\n            [9.374563, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.559982],\n            [9.374563, 45.564479],\n            [9.37906, 45.564479],\n            [9.37906, 45.559982],\n            [9.374563, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.564479],\n            [9.374563, 45.568975],\n            [9.37906, 45.568975],\n            [9.37906, 45.564479],\n            [9.374563, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.568975],\n            [9.374563, 45.573472],\n            [9.37906, 45.573472],\n            [9.37906, 45.568975],\n            [9.374563, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.573472],\n            [9.374563, 45.577968],\n            [9.37906, 45.577968],\n            [9.37906, 45.573472],\n            [9.374563, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.577968],\n            [9.374563, 45.582465],\n            [9.37906, 45.582465],\n            [9.37906, 45.577968],\n            [9.374563, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.582465],\n            [9.374563, 45.586962],\n            [9.37906, 45.586962],\n            [9.37906, 45.582465],\n            [9.374563, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.586962],\n            [9.374563, 45.591458],\n            [9.37906, 45.591458],\n            [9.37906, 45.586962],\n            [9.374563, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.591458],\n            [9.374563, 45.595955],\n            [9.37906, 45.595955],\n            [9.37906, 45.591458],\n            [9.374563, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.595955],\n            [9.374563, 45.600451],\n            [9.37906, 45.600451],\n            [9.37906, 45.595955],\n            [9.374563, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.600451],\n            [9.374563, 45.604948],\n            [9.37906, 45.604948],\n            [9.37906, 45.600451],\n            [9.374563, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.604948],\n            [9.374563, 45.609445],\n            [9.37906, 45.609445],\n            [9.37906, 45.604948],\n            [9.374563, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.609445],\n            [9.374563, 45.613941],\n            [9.37906, 45.613941],\n            [9.37906, 45.609445],\n            [9.374563, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.613941],\n            [9.374563, 45.618438],\n            [9.37906, 45.618438],\n            [9.37906, 45.613941],\n            [9.374563, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.618438],\n            [9.374563, 45.622934],\n            [9.37906, 45.622934],\n            [9.37906, 45.618438],\n            [9.374563, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.622934],\n            [9.374563, 45.627431],\n            [9.37906, 45.627431],\n            [9.37906, 45.622934],\n            [9.374563, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.627431],\n            [9.374563, 45.631928],\n            [9.37906, 45.631928],\n            [9.37906, 45.627431],\n            [9.374563, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.374563, 45.631928],\n            [9.374563, 45.636424],\n            [9.37906, 45.636424],\n            [9.37906, 45.631928],\n            [9.374563, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.339648],\n            [9.37906, 45.344145],\n            [9.383557, 45.344145],\n            [9.383557, 45.339648],\n            [9.37906, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.344145],\n            [9.37906, 45.348642],\n            [9.383557, 45.348642],\n            [9.383557, 45.344145],\n            [9.37906, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.348642],\n            [9.37906, 45.353138],\n            [9.383557, 45.353138],\n            [9.383557, 45.348642],\n            [9.37906, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.353138],\n            [9.37906, 45.357635],\n            [9.383557, 45.357635],\n            [9.383557, 45.353138],\n            [9.37906, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.357635],\n            [9.37906, 45.362131],\n            [9.383557, 45.362131],\n            [9.383557, 45.357635],\n            [9.37906, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.362131],\n            [9.37906, 45.366628],\n            [9.383557, 45.366628],\n            [9.383557, 45.362131],\n            [9.37906, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.366628],\n            [9.37906, 45.371125],\n            [9.383557, 45.371125],\n            [9.383557, 45.366628],\n            [9.37906, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.371125],\n            [9.37906, 45.375621],\n            [9.383557, 45.375621],\n            [9.383557, 45.371125],\n            [9.37906, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.375621],\n            [9.37906, 45.380118],\n            [9.383557, 45.380118],\n            [9.383557, 45.375621],\n            [9.37906, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.380118],\n            [9.37906, 45.384614],\n            [9.383557, 45.384614],\n            [9.383557, 45.380118],\n            [9.37906, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.384614],\n            [9.37906, 45.389111],\n            [9.383557, 45.389111],\n            [9.383557, 45.384614],\n            [9.37906, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.389111],\n            [9.37906, 45.393608],\n            [9.383557, 45.393608],\n            [9.383557, 45.389111],\n            [9.37906, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.393608],\n            [9.37906, 45.398104],\n            [9.383557, 45.398104],\n            [9.383557, 45.393608],\n            [9.37906, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.398104],\n            [9.37906, 45.402601],\n            [9.383557, 45.402601],\n            [9.383557, 45.398104],\n            [9.37906, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.402601],\n            [9.37906, 45.407097],\n            [9.383557, 45.407097],\n            [9.383557, 45.402601],\n            [9.37906, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.407097],\n            [9.37906, 45.411594],\n            [9.383557, 45.411594],\n            [9.383557, 45.407097],\n            [9.37906, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.411594],\n            [9.37906, 45.416091],\n            [9.383557, 45.416091],\n            [9.383557, 45.411594],\n            [9.37906, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.416091],\n            [9.37906, 45.420587],\n            [9.383557, 45.420587],\n            [9.383557, 45.416091],\n            [9.37906, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.420587],\n            [9.37906, 45.425084],\n            [9.383557, 45.425084],\n            [9.383557, 45.420587],\n            [9.37906, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.425084],\n            [9.37906, 45.42958],\n            [9.383557, 45.42958],\n            [9.383557, 45.425084],\n            [9.37906, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.42958],\n            [9.37906, 45.434077],\n            [9.383557, 45.434077],\n            [9.383557, 45.42958],\n            [9.37906, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.434077],\n            [9.37906, 45.438574],\n            [9.383557, 45.438574],\n            [9.383557, 45.434077],\n            [9.37906, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.438574],\n            [9.37906, 45.44307],\n            [9.383557, 45.44307],\n            [9.383557, 45.438574],\n            [9.37906, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.44307],\n            [9.37906, 45.447567],\n            [9.383557, 45.447567],\n            [9.383557, 45.44307],\n            [9.37906, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.447567],\n            [9.37906, 45.452063],\n            [9.383557, 45.452063],\n            [9.383557, 45.447567],\n            [9.37906, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.452063],\n            [9.37906, 45.45656],\n            [9.383557, 45.45656],\n            [9.383557, 45.452063],\n            [9.37906, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.45656],\n            [9.37906, 45.461057],\n            [9.383557, 45.461057],\n            [9.383557, 45.45656],\n            [9.37906, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.461057],\n            [9.37906, 45.465553],\n            [9.383557, 45.465553],\n            [9.383557, 45.461057],\n            [9.37906, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.465553],\n            [9.37906, 45.47005],\n            [9.383557, 45.47005],\n            [9.383557, 45.465553],\n            [9.37906, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.47005],\n            [9.37906, 45.474547],\n            [9.383557, 45.474547],\n            [9.383557, 45.47005],\n            [9.37906, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.474547],\n            [9.37906, 45.479043],\n            [9.383557, 45.479043],\n            [9.383557, 45.474547],\n            [9.37906, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.479043],\n            [9.37906, 45.48354],\n            [9.383557, 45.48354],\n            [9.383557, 45.479043],\n            [9.37906, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.48354],\n            [9.37906, 45.488036],\n            [9.383557, 45.488036],\n            [9.383557, 45.48354],\n            [9.37906, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.488036],\n            [9.37906, 45.492533],\n            [9.383557, 45.492533],\n            [9.383557, 45.488036],\n            [9.37906, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.492533],\n            [9.37906, 45.49703],\n            [9.383557, 45.49703],\n            [9.383557, 45.492533],\n            [9.37906, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.49703],\n            [9.37906, 45.501526],\n            [9.383557, 45.501526],\n            [9.383557, 45.49703],\n            [9.37906, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.501526],\n            [9.37906, 45.506023],\n            [9.383557, 45.506023],\n            [9.383557, 45.501526],\n            [9.37906, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.506023],\n            [9.37906, 45.510519],\n            [9.383557, 45.510519],\n            [9.383557, 45.506023],\n            [9.37906, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.510519],\n            [9.37906, 45.515016],\n            [9.383557, 45.515016],\n            [9.383557, 45.510519],\n            [9.37906, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.515016],\n            [9.37906, 45.519513],\n            [9.383557, 45.519513],\n            [9.383557, 45.515016],\n            [9.37906, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.519513],\n            [9.37906, 45.524009],\n            [9.383557, 45.524009],\n            [9.383557, 45.519513],\n            [9.37906, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.524009],\n            [9.37906, 45.528506],\n            [9.383557, 45.528506],\n            [9.383557, 45.524009],\n            [9.37906, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.528506],\n            [9.37906, 45.533002],\n            [9.383557, 45.533002],\n            [9.383557, 45.528506],\n            [9.37906, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.533002],\n            [9.37906, 45.537499],\n            [9.383557, 45.537499],\n            [9.383557, 45.533002],\n            [9.37906, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.537499],\n            [9.37906, 45.541996],\n            [9.383557, 45.541996],\n            [9.383557, 45.537499],\n            [9.37906, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.541996],\n            [9.37906, 45.546492],\n            [9.383557, 45.546492],\n            [9.383557, 45.541996],\n            [9.37906, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.546492],\n            [9.37906, 45.550989],\n            [9.383557, 45.550989],\n            [9.383557, 45.546492],\n            [9.37906, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.550989],\n            [9.37906, 45.555485],\n            [9.383557, 45.555485],\n            [9.383557, 45.550989],\n            [9.37906, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.555485],\n            [9.37906, 45.559982],\n            [9.383557, 45.559982],\n            [9.383557, 45.555485],\n            [9.37906, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.559982],\n            [9.37906, 45.564479],\n            [9.383557, 45.564479],\n            [9.383557, 45.559982],\n            [9.37906, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.564479],\n            [9.37906, 45.568975],\n            [9.383557, 45.568975],\n            [9.383557, 45.564479],\n            [9.37906, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.568975],\n            [9.37906, 45.573472],\n            [9.383557, 45.573472],\n            [9.383557, 45.568975],\n            [9.37906, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.573472],\n            [9.37906, 45.577968],\n            [9.383557, 45.577968],\n            [9.383557, 45.573472],\n            [9.37906, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.577968],\n            [9.37906, 45.582465],\n            [9.383557, 45.582465],\n            [9.383557, 45.577968],\n            [9.37906, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.582465],\n            [9.37906, 45.586962],\n            [9.383557, 45.586962],\n            [9.383557, 45.582465],\n            [9.37906, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.586962],\n            [9.37906, 45.591458],\n            [9.383557, 45.591458],\n            [9.383557, 45.586962],\n            [9.37906, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.591458],\n            [9.37906, 45.595955],\n            [9.383557, 45.595955],\n            [9.383557, 45.591458],\n            [9.37906, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.595955],\n            [9.37906, 45.600451],\n            [9.383557, 45.600451],\n            [9.383557, 45.595955],\n            [9.37906, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.600451],\n            [9.37906, 45.604948],\n            [9.383557, 45.604948],\n            [9.383557, 45.600451],\n            [9.37906, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.604948],\n            [9.37906, 45.609445],\n            [9.383557, 45.609445],\n            [9.383557, 45.604948],\n            [9.37906, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.609445],\n            [9.37906, 45.613941],\n            [9.383557, 45.613941],\n            [9.383557, 45.609445],\n            [9.37906, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.613941],\n            [9.37906, 45.618438],\n            [9.383557, 45.618438],\n            [9.383557, 45.613941],\n            [9.37906, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.618438],\n            [9.37906, 45.622934],\n            [9.383557, 45.622934],\n            [9.383557, 45.618438],\n            [9.37906, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.622934],\n            [9.37906, 45.627431],\n            [9.383557, 45.627431],\n            [9.383557, 45.622934],\n            [9.37906, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.627431],\n            [9.37906, 45.631928],\n            [9.383557, 45.631928],\n            [9.383557, 45.627431],\n            [9.37906, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.37906, 45.631928],\n            [9.37906, 45.636424],\n            [9.383557, 45.636424],\n            [9.383557, 45.631928],\n            [9.37906, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.339648],\n            [9.383557, 45.344145],\n            [9.388053, 45.344145],\n            [9.388053, 45.339648],\n            [9.383557, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.344145],\n            [9.383557, 45.348642],\n            [9.388053, 45.348642],\n            [9.388053, 45.344145],\n            [9.383557, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.348642],\n            [9.383557, 45.353138],\n            [9.388053, 45.353138],\n            [9.388053, 45.348642],\n            [9.383557, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.353138],\n            [9.383557, 45.357635],\n            [9.388053, 45.357635],\n            [9.388053, 45.353138],\n            [9.383557, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.357635],\n            [9.383557, 45.362131],\n            [9.388053, 45.362131],\n            [9.388053, 45.357635],\n            [9.383557, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.362131],\n            [9.383557, 45.366628],\n            [9.388053, 45.366628],\n            [9.388053, 45.362131],\n            [9.383557, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.366628],\n            [9.383557, 45.371125],\n            [9.388053, 45.371125],\n            [9.388053, 45.366628],\n            [9.383557, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.371125],\n            [9.383557, 45.375621],\n            [9.388053, 45.375621],\n            [9.388053, 45.371125],\n            [9.383557, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.375621],\n            [9.383557, 45.380118],\n            [9.388053, 45.380118],\n            [9.388053, 45.375621],\n            [9.383557, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.380118],\n            [9.383557, 45.384614],\n            [9.388053, 45.384614],\n            [9.388053, 45.380118],\n            [9.383557, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.384614],\n            [9.383557, 45.389111],\n            [9.388053, 45.389111],\n            [9.388053, 45.384614],\n            [9.383557, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.389111],\n            [9.383557, 45.393608],\n            [9.388053, 45.393608],\n            [9.388053, 45.389111],\n            [9.383557, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.393608],\n            [9.383557, 45.398104],\n            [9.388053, 45.398104],\n            [9.388053, 45.393608],\n            [9.383557, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.398104],\n            [9.383557, 45.402601],\n            [9.388053, 45.402601],\n            [9.388053, 45.398104],\n            [9.383557, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.402601],\n            [9.383557, 45.407097],\n            [9.388053, 45.407097],\n            [9.388053, 45.402601],\n            [9.383557, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.407097],\n            [9.383557, 45.411594],\n            [9.388053, 45.411594],\n            [9.388053, 45.407097],\n            [9.383557, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.411594],\n            [9.383557, 45.416091],\n            [9.388053, 45.416091],\n            [9.388053, 45.411594],\n            [9.383557, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.416091],\n            [9.383557, 45.420587],\n            [9.388053, 45.420587],\n            [9.388053, 45.416091],\n            [9.383557, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.420587],\n            [9.383557, 45.425084],\n            [9.388053, 45.425084],\n            [9.388053, 45.420587],\n            [9.383557, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.425084],\n            [9.383557, 45.42958],\n            [9.388053, 45.42958],\n            [9.388053, 45.425084],\n            [9.383557, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.42958],\n            [9.383557, 45.434077],\n            [9.388053, 45.434077],\n            [9.388053, 45.42958],\n            [9.383557, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.434077],\n            [9.383557, 45.438574],\n            [9.388053, 45.438574],\n            [9.388053, 45.434077],\n            [9.383557, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.438574],\n            [9.383557, 45.44307],\n            [9.388053, 45.44307],\n            [9.388053, 45.438574],\n            [9.383557, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.44307],\n            [9.383557, 45.447567],\n            [9.388053, 45.447567],\n            [9.388053, 45.44307],\n            [9.383557, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.447567],\n            [9.383557, 45.452063],\n            [9.388053, 45.452063],\n            [9.388053, 45.447567],\n            [9.383557, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.452063],\n            [9.383557, 45.45656],\n            [9.388053, 45.45656],\n            [9.388053, 45.452063],\n            [9.383557, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.45656],\n            [9.383557, 45.461057],\n            [9.388053, 45.461057],\n            [9.388053, 45.45656],\n            [9.383557, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.461057],\n            [9.383557, 45.465553],\n            [9.388053, 45.465553],\n            [9.388053, 45.461057],\n            [9.383557, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.465553],\n            [9.383557, 45.47005],\n            [9.388053, 45.47005],\n            [9.388053, 45.465553],\n            [9.383557, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.47005],\n            [9.383557, 45.474547],\n            [9.388053, 45.474547],\n            [9.388053, 45.47005],\n            [9.383557, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.474547],\n            [9.383557, 45.479043],\n            [9.388053, 45.479043],\n            [9.388053, 45.474547],\n            [9.383557, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.479043],\n            [9.383557, 45.48354],\n            [9.388053, 45.48354],\n            [9.388053, 45.479043],\n            [9.383557, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.48354],\n            [9.383557, 45.488036],\n            [9.388053, 45.488036],\n            [9.388053, 45.48354],\n            [9.383557, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.488036],\n            [9.383557, 45.492533],\n            [9.388053, 45.492533],\n            [9.388053, 45.488036],\n            [9.383557, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.492533],\n            [9.383557, 45.49703],\n            [9.388053, 45.49703],\n            [9.388053, 45.492533],\n            [9.383557, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.49703],\n            [9.383557, 45.501526],\n            [9.388053, 45.501526],\n            [9.388053, 45.49703],\n            [9.383557, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.501526],\n            [9.383557, 45.506023],\n            [9.388053, 45.506023],\n            [9.388053, 45.501526],\n            [9.383557, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.506023],\n            [9.383557, 45.510519],\n            [9.388053, 45.510519],\n            [9.388053, 45.506023],\n            [9.383557, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.510519],\n            [9.383557, 45.515016],\n            [9.388053, 45.515016],\n            [9.388053, 45.510519],\n            [9.383557, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.515016],\n            [9.383557, 45.519513],\n            [9.388053, 45.519513],\n            [9.388053, 45.515016],\n            [9.383557, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.519513],\n            [9.383557, 45.524009],\n            [9.388053, 45.524009],\n            [9.388053, 45.519513],\n            [9.383557, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.524009],\n            [9.383557, 45.528506],\n            [9.388053, 45.528506],\n            [9.388053, 45.524009],\n            [9.383557, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.528506],\n            [9.383557, 45.533002],\n            [9.388053, 45.533002],\n            [9.388053, 45.528506],\n            [9.383557, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.533002],\n            [9.383557, 45.537499],\n            [9.388053, 45.537499],\n            [9.388053, 45.533002],\n            [9.383557, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.537499],\n            [9.383557, 45.541996],\n            [9.388053, 45.541996],\n            [9.388053, 45.537499],\n            [9.383557, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.541996],\n            [9.383557, 45.546492],\n            [9.388053, 45.546492],\n            [9.388053, 45.541996],\n            [9.383557, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.546492],\n            [9.383557, 45.550989],\n            [9.388053, 45.550989],\n            [9.388053, 45.546492],\n            [9.383557, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.550989],\n            [9.383557, 45.555485],\n            [9.388053, 45.555485],\n            [9.388053, 45.550989],\n            [9.383557, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.555485],\n            [9.383557, 45.559982],\n            [9.388053, 45.559982],\n            [9.388053, 45.555485],\n            [9.383557, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.559982],\n            [9.383557, 45.564479],\n            [9.388053, 45.564479],\n            [9.388053, 45.559982],\n            [9.383557, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.564479],\n            [9.383557, 45.568975],\n            [9.388053, 45.568975],\n            [9.388053, 45.564479],\n            [9.383557, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.568975],\n            [9.383557, 45.573472],\n            [9.388053, 45.573472],\n            [9.388053, 45.568975],\n            [9.383557, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.573472],\n            [9.383557, 45.577968],\n            [9.388053, 45.577968],\n            [9.388053, 45.573472],\n            [9.383557, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.577968],\n            [9.383557, 45.582465],\n            [9.388053, 45.582465],\n            [9.388053, 45.577968],\n            [9.383557, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.582465],\n            [9.383557, 45.586962],\n            [9.388053, 45.586962],\n            [9.388053, 45.582465],\n            [9.383557, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.586962],\n            [9.383557, 45.591458],\n            [9.388053, 45.591458],\n            [9.388053, 45.586962],\n            [9.383557, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.591458],\n            [9.383557, 45.595955],\n            [9.388053, 45.595955],\n            [9.388053, 45.591458],\n            [9.383557, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.595955],\n            [9.383557, 45.600451],\n            [9.388053, 45.600451],\n            [9.388053, 45.595955],\n            [9.383557, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.600451],\n            [9.383557, 45.604948],\n            [9.388053, 45.604948],\n            [9.388053, 45.600451],\n            [9.383557, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.604948],\n            [9.383557, 45.609445],\n            [9.388053, 45.609445],\n            [9.388053, 45.604948],\n            [9.383557, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.609445],\n            [9.383557, 45.613941],\n            [9.388053, 45.613941],\n            [9.388053, 45.609445],\n            [9.383557, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.613941],\n            [9.383557, 45.618438],\n            [9.388053, 45.618438],\n            [9.388053, 45.613941],\n            [9.383557, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.618438],\n            [9.383557, 45.622934],\n            [9.388053, 45.622934],\n            [9.388053, 45.618438],\n            [9.383557, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.622934],\n            [9.383557, 45.627431],\n            [9.388053, 45.627431],\n            [9.388053, 45.622934],\n            [9.383557, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.627431],\n            [9.383557, 45.631928],\n            [9.388053, 45.631928],\n            [9.388053, 45.627431],\n            [9.383557, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.383557, 45.631928],\n            [9.383557, 45.636424],\n            [9.388053, 45.636424],\n            [9.388053, 45.631928],\n            [9.383557, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.339648],\n            [9.388053, 45.344145],\n            [9.39255, 45.344145],\n            [9.39255, 45.339648],\n            [9.388053, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.344145],\n            [9.388053, 45.348642],\n            [9.39255, 45.348642],\n            [9.39255, 45.344145],\n            [9.388053, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.348642],\n            [9.388053, 45.353138],\n            [9.39255, 45.353138],\n            [9.39255, 45.348642],\n            [9.388053, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.353138],\n            [9.388053, 45.357635],\n            [9.39255, 45.357635],\n            [9.39255, 45.353138],\n            [9.388053, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.357635],\n            [9.388053, 45.362131],\n            [9.39255, 45.362131],\n            [9.39255, 45.357635],\n            [9.388053, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.362131],\n            [9.388053, 45.366628],\n            [9.39255, 45.366628],\n            [9.39255, 45.362131],\n            [9.388053, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.366628],\n            [9.388053, 45.371125],\n            [9.39255, 45.371125],\n            [9.39255, 45.366628],\n            [9.388053, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.371125],\n            [9.388053, 45.375621],\n            [9.39255, 45.375621],\n            [9.39255, 45.371125],\n            [9.388053, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.375621],\n            [9.388053, 45.380118],\n            [9.39255, 45.380118],\n            [9.39255, 45.375621],\n            [9.388053, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.380118],\n            [9.388053, 45.384614],\n            [9.39255, 45.384614],\n            [9.39255, 45.380118],\n            [9.388053, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.384614],\n            [9.388053, 45.389111],\n            [9.39255, 45.389111],\n            [9.39255, 45.384614],\n            [9.388053, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.389111],\n            [9.388053, 45.393608],\n            [9.39255, 45.393608],\n            [9.39255, 45.389111],\n            [9.388053, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.393608],\n            [9.388053, 45.398104],\n            [9.39255, 45.398104],\n            [9.39255, 45.393608],\n            [9.388053, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.398104],\n            [9.388053, 45.402601],\n            [9.39255, 45.402601],\n            [9.39255, 45.398104],\n            [9.388053, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.402601],\n            [9.388053, 45.407097],\n            [9.39255, 45.407097],\n            [9.39255, 45.402601],\n            [9.388053, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.407097],\n            [9.388053, 45.411594],\n            [9.39255, 45.411594],\n            [9.39255, 45.407097],\n            [9.388053, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.411594],\n            [9.388053, 45.416091],\n            [9.39255, 45.416091],\n            [9.39255, 45.411594],\n            [9.388053, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.416091],\n            [9.388053, 45.420587],\n            [9.39255, 45.420587],\n            [9.39255, 45.416091],\n            [9.388053, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.420587],\n            [9.388053, 45.425084],\n            [9.39255, 45.425084],\n            [9.39255, 45.420587],\n            [9.388053, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.425084],\n            [9.388053, 45.42958],\n            [9.39255, 45.42958],\n            [9.39255, 45.425084],\n            [9.388053, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.42958],\n            [9.388053, 45.434077],\n            [9.39255, 45.434077],\n            [9.39255, 45.42958],\n            [9.388053, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.434077],\n            [9.388053, 45.438574],\n            [9.39255, 45.438574],\n            [9.39255, 45.434077],\n            [9.388053, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.438574],\n            [9.388053, 45.44307],\n            [9.39255, 45.44307],\n            [9.39255, 45.438574],\n            [9.388053, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.44307],\n            [9.388053, 45.447567],\n            [9.39255, 45.447567],\n            [9.39255, 45.44307],\n            [9.388053, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.447567],\n            [9.388053, 45.452063],\n            [9.39255, 45.452063],\n            [9.39255, 45.447567],\n            [9.388053, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.452063],\n            [9.388053, 45.45656],\n            [9.39255, 45.45656],\n            [9.39255, 45.452063],\n            [9.388053, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.45656],\n            [9.388053, 45.461057],\n            [9.39255, 45.461057],\n            [9.39255, 45.45656],\n            [9.388053, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.461057],\n            [9.388053, 45.465553],\n            [9.39255, 45.465553],\n            [9.39255, 45.461057],\n            [9.388053, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.465553],\n            [9.388053, 45.47005],\n            [9.39255, 45.47005],\n            [9.39255, 45.465553],\n            [9.388053, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.47005],\n            [9.388053, 45.474547],\n            [9.39255, 45.474547],\n            [9.39255, 45.47005],\n            [9.388053, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.474547],\n            [9.388053, 45.479043],\n            [9.39255, 45.479043],\n            [9.39255, 45.474547],\n            [9.388053, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.479043],\n            [9.388053, 45.48354],\n            [9.39255, 45.48354],\n            [9.39255, 45.479043],\n            [9.388053, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.48354],\n            [9.388053, 45.488036],\n            [9.39255, 45.488036],\n            [9.39255, 45.48354],\n            [9.388053, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.488036],\n            [9.388053, 45.492533],\n            [9.39255, 45.492533],\n            [9.39255, 45.488036],\n            [9.388053, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.492533],\n            [9.388053, 45.49703],\n            [9.39255, 45.49703],\n            [9.39255, 45.492533],\n            [9.388053, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.49703],\n            [9.388053, 45.501526],\n            [9.39255, 45.501526],\n            [9.39255, 45.49703],\n            [9.388053, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.501526],\n            [9.388053, 45.506023],\n            [9.39255, 45.506023],\n            [9.39255, 45.501526],\n            [9.388053, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.506023],\n            [9.388053, 45.510519],\n            [9.39255, 45.510519],\n            [9.39255, 45.506023],\n            [9.388053, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.510519],\n            [9.388053, 45.515016],\n            [9.39255, 45.515016],\n            [9.39255, 45.510519],\n            [9.388053, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.515016],\n            [9.388053, 45.519513],\n            [9.39255, 45.519513],\n            [9.39255, 45.515016],\n            [9.388053, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.519513],\n            [9.388053, 45.524009],\n            [9.39255, 45.524009],\n            [9.39255, 45.519513],\n            [9.388053, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.524009],\n            [9.388053, 45.528506],\n            [9.39255, 45.528506],\n            [9.39255, 45.524009],\n            [9.388053, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.528506],\n            [9.388053, 45.533002],\n            [9.39255, 45.533002],\n            [9.39255, 45.528506],\n            [9.388053, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.533002],\n            [9.388053, 45.537499],\n            [9.39255, 45.537499],\n            [9.39255, 45.533002],\n            [9.388053, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.537499],\n            [9.388053, 45.541996],\n            [9.39255, 45.541996],\n            [9.39255, 45.537499],\n            [9.388053, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.541996],\n            [9.388053, 45.546492],\n            [9.39255, 45.546492],\n            [9.39255, 45.541996],\n            [9.388053, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.546492],\n            [9.388053, 45.550989],\n            [9.39255, 45.550989],\n            [9.39255, 45.546492],\n            [9.388053, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.550989],\n            [9.388053, 45.555485],\n            [9.39255, 45.555485],\n            [9.39255, 45.550989],\n            [9.388053, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.555485],\n            [9.388053, 45.559982],\n            [9.39255, 45.559982],\n            [9.39255, 45.555485],\n            [9.388053, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.559982],\n            [9.388053, 45.564479],\n            [9.39255, 45.564479],\n            [9.39255, 45.559982],\n            [9.388053, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.564479],\n            [9.388053, 45.568975],\n            [9.39255, 45.568975],\n            [9.39255, 45.564479],\n            [9.388053, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.568975],\n            [9.388053, 45.573472],\n            [9.39255, 45.573472],\n            [9.39255, 45.568975],\n            [9.388053, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.573472],\n            [9.388053, 45.577968],\n            [9.39255, 45.577968],\n            [9.39255, 45.573472],\n            [9.388053, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.577968],\n            [9.388053, 45.582465],\n            [9.39255, 45.582465],\n            [9.39255, 45.577968],\n            [9.388053, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.582465],\n            [9.388053, 45.586962],\n            [9.39255, 45.586962],\n            [9.39255, 45.582465],\n            [9.388053, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.586962],\n            [9.388053, 45.591458],\n            [9.39255, 45.591458],\n            [9.39255, 45.586962],\n            [9.388053, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.591458],\n            [9.388053, 45.595955],\n            [9.39255, 45.595955],\n            [9.39255, 45.591458],\n            [9.388053, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.595955],\n            [9.388053, 45.600451],\n            [9.39255, 45.600451],\n            [9.39255, 45.595955],\n            [9.388053, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.600451],\n            [9.388053, 45.604948],\n            [9.39255, 45.604948],\n            [9.39255, 45.600451],\n            [9.388053, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.604948],\n            [9.388053, 45.609445],\n            [9.39255, 45.609445],\n            [9.39255, 45.604948],\n            [9.388053, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.609445],\n            [9.388053, 45.613941],\n            [9.39255, 45.613941],\n            [9.39255, 45.609445],\n            [9.388053, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.613941],\n            [9.388053, 45.618438],\n            [9.39255, 45.618438],\n            [9.39255, 45.613941],\n            [9.388053, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.618438],\n            [9.388053, 45.622934],\n            [9.39255, 45.622934],\n            [9.39255, 45.618438],\n            [9.388053, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.622934],\n            [9.388053, 45.627431],\n            [9.39255, 45.627431],\n            [9.39255, 45.622934],\n            [9.388053, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.627431],\n            [9.388053, 45.631928],\n            [9.39255, 45.631928],\n            [9.39255, 45.627431],\n            [9.388053, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.388053, 45.631928],\n            [9.388053, 45.636424],\n            [9.39255, 45.636424],\n            [9.39255, 45.631928],\n            [9.388053, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.339648],\n            [9.39255, 45.344145],\n            [9.397046, 45.344145],\n            [9.397046, 45.339648],\n            [9.39255, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.344145],\n            [9.39255, 45.348642],\n            [9.397046, 45.348642],\n            [9.397046, 45.344145],\n            [9.39255, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.348642],\n            [9.39255, 45.353138],\n            [9.397046, 45.353138],\n            [9.397046, 45.348642],\n            [9.39255, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.353138],\n            [9.39255, 45.357635],\n            [9.397046, 45.357635],\n            [9.397046, 45.353138],\n            [9.39255, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.357635],\n            [9.39255, 45.362131],\n            [9.397046, 45.362131],\n            [9.397046, 45.357635],\n            [9.39255, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.362131],\n            [9.39255, 45.366628],\n            [9.397046, 45.366628],\n            [9.397046, 45.362131],\n            [9.39255, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.366628],\n            [9.39255, 45.371125],\n            [9.397046, 45.371125],\n            [9.397046, 45.366628],\n            [9.39255, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.371125],\n            [9.39255, 45.375621],\n            [9.397046, 45.375621],\n            [9.397046, 45.371125],\n            [9.39255, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.375621],\n            [9.39255, 45.380118],\n            [9.397046, 45.380118],\n            [9.397046, 45.375621],\n            [9.39255, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.380118],\n            [9.39255, 45.384614],\n            [9.397046, 45.384614],\n            [9.397046, 45.380118],\n            [9.39255, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.384614],\n            [9.39255, 45.389111],\n            [9.397046, 45.389111],\n            [9.397046, 45.384614],\n            [9.39255, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.389111],\n            [9.39255, 45.393608],\n            [9.397046, 45.393608],\n            [9.397046, 45.389111],\n            [9.39255, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.393608],\n            [9.39255, 45.398104],\n            [9.397046, 45.398104],\n            [9.397046, 45.393608],\n            [9.39255, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.398104],\n            [9.39255, 45.402601],\n            [9.397046, 45.402601],\n            [9.397046, 45.398104],\n            [9.39255, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.402601],\n            [9.39255, 45.407097],\n            [9.397046, 45.407097],\n            [9.397046, 45.402601],\n            [9.39255, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.407097],\n            [9.39255, 45.411594],\n            [9.397046, 45.411594],\n            [9.397046, 45.407097],\n            [9.39255, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.411594],\n            [9.39255, 45.416091],\n            [9.397046, 45.416091],\n            [9.397046, 45.411594],\n            [9.39255, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.416091],\n            [9.39255, 45.420587],\n            [9.397046, 45.420587],\n            [9.397046, 45.416091],\n            [9.39255, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.420587],\n            [9.39255, 45.425084],\n            [9.397046, 45.425084],\n            [9.397046, 45.420587],\n            [9.39255, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.425084],\n            [9.39255, 45.42958],\n            [9.397046, 45.42958],\n            [9.397046, 45.425084],\n            [9.39255, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.42958],\n            [9.39255, 45.434077],\n            [9.397046, 45.434077],\n            [9.397046, 45.42958],\n            [9.39255, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.434077],\n            [9.39255, 45.438574],\n            [9.397046, 45.438574],\n            [9.397046, 45.434077],\n            [9.39255, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.438574],\n            [9.39255, 45.44307],\n            [9.397046, 45.44307],\n            [9.397046, 45.438574],\n            [9.39255, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.44307],\n            [9.39255, 45.447567],\n            [9.397046, 45.447567],\n            [9.397046, 45.44307],\n            [9.39255, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.447567],\n            [9.39255, 45.452063],\n            [9.397046, 45.452063],\n            [9.397046, 45.447567],\n            [9.39255, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.452063],\n            [9.39255, 45.45656],\n            [9.397046, 45.45656],\n            [9.397046, 45.452063],\n            [9.39255, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.45656],\n            [9.39255, 45.461057],\n            [9.397046, 45.461057],\n            [9.397046, 45.45656],\n            [9.39255, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.461057],\n            [9.39255, 45.465553],\n            [9.397046, 45.465553],\n            [9.397046, 45.461057],\n            [9.39255, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.465553],\n            [9.39255, 45.47005],\n            [9.397046, 45.47005],\n            [9.397046, 45.465553],\n            [9.39255, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.47005],\n            [9.39255, 45.474547],\n            [9.397046, 45.474547],\n            [9.397046, 45.47005],\n            [9.39255, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.474547],\n            [9.39255, 45.479043],\n            [9.397046, 45.479043],\n            [9.397046, 45.474547],\n            [9.39255, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.479043],\n            [9.39255, 45.48354],\n            [9.397046, 45.48354],\n            [9.397046, 45.479043],\n            [9.39255, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.48354],\n            [9.39255, 45.488036],\n            [9.397046, 45.488036],\n            [9.397046, 45.48354],\n            [9.39255, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.488036],\n            [9.39255, 45.492533],\n            [9.397046, 45.492533],\n            [9.397046, 45.488036],\n            [9.39255, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.492533],\n            [9.39255, 45.49703],\n            [9.397046, 45.49703],\n            [9.397046, 45.492533],\n            [9.39255, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.49703],\n            [9.39255, 45.501526],\n            [9.397046, 45.501526],\n            [9.397046, 45.49703],\n            [9.39255, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.501526],\n            [9.39255, 45.506023],\n            [9.397046, 45.506023],\n            [9.397046, 45.501526],\n            [9.39255, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.506023],\n            [9.39255, 45.510519],\n            [9.397046, 45.510519],\n            [9.397046, 45.506023],\n            [9.39255, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.510519],\n            [9.39255, 45.515016],\n            [9.397046, 45.515016],\n            [9.397046, 45.510519],\n            [9.39255, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.515016],\n            [9.39255, 45.519513],\n            [9.397046, 45.519513],\n            [9.397046, 45.515016],\n            [9.39255, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.519513],\n            [9.39255, 45.524009],\n            [9.397046, 45.524009],\n            [9.397046, 45.519513],\n            [9.39255, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.524009],\n            [9.39255, 45.528506],\n            [9.397046, 45.528506],\n            [9.397046, 45.524009],\n            [9.39255, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.528506],\n            [9.39255, 45.533002],\n            [9.397046, 45.533002],\n            [9.397046, 45.528506],\n            [9.39255, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.533002],\n            [9.39255, 45.537499],\n            [9.397046, 45.537499],\n            [9.397046, 45.533002],\n            [9.39255, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.537499],\n            [9.39255, 45.541996],\n            [9.397046, 45.541996],\n            [9.397046, 45.537499],\n            [9.39255, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.541996],\n            [9.39255, 45.546492],\n            [9.397046, 45.546492],\n            [9.397046, 45.541996],\n            [9.39255, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.546492],\n            [9.39255, 45.550989],\n            [9.397046, 45.550989],\n            [9.397046, 45.546492],\n            [9.39255, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.550989],\n            [9.39255, 45.555485],\n            [9.397046, 45.555485],\n            [9.397046, 45.550989],\n            [9.39255, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.555485],\n            [9.39255, 45.559982],\n            [9.397046, 45.559982],\n            [9.397046, 45.555485],\n            [9.39255, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.559982],\n            [9.39255, 45.564479],\n            [9.397046, 45.564479],\n            [9.397046, 45.559982],\n            [9.39255, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.564479],\n            [9.39255, 45.568975],\n            [9.397046, 45.568975],\n            [9.397046, 45.564479],\n            [9.39255, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.568975],\n            [9.39255, 45.573472],\n            [9.397046, 45.573472],\n            [9.397046, 45.568975],\n            [9.39255, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.573472],\n            [9.39255, 45.577968],\n            [9.397046, 45.577968],\n            [9.397046, 45.573472],\n            [9.39255, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.577968],\n            [9.39255, 45.582465],\n            [9.397046, 45.582465],\n            [9.397046, 45.577968],\n            [9.39255, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.582465],\n            [9.39255, 45.586962],\n            [9.397046, 45.586962],\n            [9.397046, 45.582465],\n            [9.39255, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.586962],\n            [9.39255, 45.591458],\n            [9.397046, 45.591458],\n            [9.397046, 45.586962],\n            [9.39255, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.591458],\n            [9.39255, 45.595955],\n            [9.397046, 45.595955],\n            [9.397046, 45.591458],\n            [9.39255, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.595955],\n            [9.39255, 45.600451],\n            [9.397046, 45.600451],\n            [9.397046, 45.595955],\n            [9.39255, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.600451],\n            [9.39255, 45.604948],\n            [9.397046, 45.604948],\n            [9.397046, 45.600451],\n            [9.39255, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.604948],\n            [9.39255, 45.609445],\n            [9.397046, 45.609445],\n            [9.397046, 45.604948],\n            [9.39255, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.609445],\n            [9.39255, 45.613941],\n            [9.397046, 45.613941],\n            [9.397046, 45.609445],\n            [9.39255, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.613941],\n            [9.39255, 45.618438],\n            [9.397046, 45.618438],\n            [9.397046, 45.613941],\n            [9.39255, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.618438],\n            [9.39255, 45.622934],\n            [9.397046, 45.622934],\n            [9.397046, 45.618438],\n            [9.39255, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.622934],\n            [9.39255, 45.627431],\n            [9.397046, 45.627431],\n            [9.397046, 45.622934],\n            [9.39255, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.627431],\n            [9.39255, 45.631928],\n            [9.397046, 45.631928],\n            [9.397046, 45.627431],\n            [9.39255, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.39255, 45.631928],\n            [9.39255, 45.636424],\n            [9.397046, 45.636424],\n            [9.397046, 45.631928],\n            [9.39255, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.339648],\n            [9.397046, 45.344145],\n            [9.401543, 45.344145],\n            [9.401543, 45.339648],\n            [9.397046, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.344145],\n            [9.397046, 45.348642],\n            [9.401543, 45.348642],\n            [9.401543, 45.344145],\n            [9.397046, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.348642],\n            [9.397046, 45.353138],\n            [9.401543, 45.353138],\n            [9.401543, 45.348642],\n            [9.397046, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.353138],\n            [9.397046, 45.357635],\n            [9.401543, 45.357635],\n            [9.401543, 45.353138],\n            [9.397046, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.357635],\n            [9.397046, 45.362131],\n            [9.401543, 45.362131],\n            [9.401543, 45.357635],\n            [9.397046, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.362131],\n            [9.397046, 45.366628],\n            [9.401543, 45.366628],\n            [9.401543, 45.362131],\n            [9.397046, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.366628],\n            [9.397046, 45.371125],\n            [9.401543, 45.371125],\n            [9.401543, 45.366628],\n            [9.397046, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.371125],\n            [9.397046, 45.375621],\n            [9.401543, 45.375621],\n            [9.401543, 45.371125],\n            [9.397046, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.375621],\n            [9.397046, 45.380118],\n            [9.401543, 45.380118],\n            [9.401543, 45.375621],\n            [9.397046, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.380118],\n            [9.397046, 45.384614],\n            [9.401543, 45.384614],\n            [9.401543, 45.380118],\n            [9.397046, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.384614],\n            [9.397046, 45.389111],\n            [9.401543, 45.389111],\n            [9.401543, 45.384614],\n            [9.397046, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.389111],\n            [9.397046, 45.393608],\n            [9.401543, 45.393608],\n            [9.401543, 45.389111],\n            [9.397046, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.393608],\n            [9.397046, 45.398104],\n            [9.401543, 45.398104],\n            [9.401543, 45.393608],\n            [9.397046, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.398104],\n            [9.397046, 45.402601],\n            [9.401543, 45.402601],\n            [9.401543, 45.398104],\n            [9.397046, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.402601],\n            [9.397046, 45.407097],\n            [9.401543, 45.407097],\n            [9.401543, 45.402601],\n            [9.397046, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.407097],\n            [9.397046, 45.411594],\n            [9.401543, 45.411594],\n            [9.401543, 45.407097],\n            [9.397046, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.411594],\n            [9.397046, 45.416091],\n            [9.401543, 45.416091],\n            [9.401543, 45.411594],\n            [9.397046, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.416091],\n            [9.397046, 45.420587],\n            [9.401543, 45.420587],\n            [9.401543, 45.416091],\n            [9.397046, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.420587],\n            [9.397046, 45.425084],\n            [9.401543, 45.425084],\n            [9.401543, 45.420587],\n            [9.397046, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.425084],\n            [9.397046, 45.42958],\n            [9.401543, 45.42958],\n            [9.401543, 45.425084],\n            [9.397046, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.42958],\n            [9.397046, 45.434077],\n            [9.401543, 45.434077],\n            [9.401543, 45.42958],\n            [9.397046, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.434077],\n            [9.397046, 45.438574],\n            [9.401543, 45.438574],\n            [9.401543, 45.434077],\n            [9.397046, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.438574],\n            [9.397046, 45.44307],\n            [9.401543, 45.44307],\n            [9.401543, 45.438574],\n            [9.397046, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.44307],\n            [9.397046, 45.447567],\n            [9.401543, 45.447567],\n            [9.401543, 45.44307],\n            [9.397046, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.447567],\n            [9.397046, 45.452063],\n            [9.401543, 45.452063],\n            [9.401543, 45.447567],\n            [9.397046, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.452063],\n            [9.397046, 45.45656],\n            [9.401543, 45.45656],\n            [9.401543, 45.452063],\n            [9.397046, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.45656],\n            [9.397046, 45.461057],\n            [9.401543, 45.461057],\n            [9.401543, 45.45656],\n            [9.397046, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.461057],\n            [9.397046, 45.465553],\n            [9.401543, 45.465553],\n            [9.401543, 45.461057],\n            [9.397046, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.465553],\n            [9.397046, 45.47005],\n            [9.401543, 45.47005],\n            [9.401543, 45.465553],\n            [9.397046, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.47005],\n            [9.397046, 45.474547],\n            [9.401543, 45.474547],\n            [9.401543, 45.47005],\n            [9.397046, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.474547],\n            [9.397046, 45.479043],\n            [9.401543, 45.479043],\n            [9.401543, 45.474547],\n            [9.397046, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.479043],\n            [9.397046, 45.48354],\n            [9.401543, 45.48354],\n            [9.401543, 45.479043],\n            [9.397046, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.48354],\n            [9.397046, 45.488036],\n            [9.401543, 45.488036],\n            [9.401543, 45.48354],\n            [9.397046, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.488036],\n            [9.397046, 45.492533],\n            [9.401543, 45.492533],\n            [9.401543, 45.488036],\n            [9.397046, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.492533],\n            [9.397046, 45.49703],\n            [9.401543, 45.49703],\n            [9.401543, 45.492533],\n            [9.397046, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.49703],\n            [9.397046, 45.501526],\n            [9.401543, 45.501526],\n            [9.401543, 45.49703],\n            [9.397046, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.501526],\n            [9.397046, 45.506023],\n            [9.401543, 45.506023],\n            [9.401543, 45.501526],\n            [9.397046, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.506023],\n            [9.397046, 45.510519],\n            [9.401543, 45.510519],\n            [9.401543, 45.506023],\n            [9.397046, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.510519],\n            [9.397046, 45.515016],\n            [9.401543, 45.515016],\n            [9.401543, 45.510519],\n            [9.397046, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.515016],\n            [9.397046, 45.519513],\n            [9.401543, 45.519513],\n            [9.401543, 45.515016],\n            [9.397046, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.519513],\n            [9.397046, 45.524009],\n            [9.401543, 45.524009],\n            [9.401543, 45.519513],\n            [9.397046, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.524009],\n            [9.397046, 45.528506],\n            [9.401543, 45.528506],\n            [9.401543, 45.524009],\n            [9.397046, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.528506],\n            [9.397046, 45.533002],\n            [9.401543, 45.533002],\n            [9.401543, 45.528506],\n            [9.397046, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.533002],\n            [9.397046, 45.537499],\n            [9.401543, 45.537499],\n            [9.401543, 45.533002],\n            [9.397046, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.537499],\n            [9.397046, 45.541996],\n            [9.401543, 45.541996],\n            [9.401543, 45.537499],\n            [9.397046, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.541996],\n            [9.397046, 45.546492],\n            [9.401543, 45.546492],\n            [9.401543, 45.541996],\n            [9.397046, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.546492],\n            [9.397046, 45.550989],\n            [9.401543, 45.550989],\n            [9.401543, 45.546492],\n            [9.397046, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.550989],\n            [9.397046, 45.555485],\n            [9.401543, 45.555485],\n            [9.401543, 45.550989],\n            [9.397046, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.555485],\n            [9.397046, 45.559982],\n            [9.401543, 45.559982],\n            [9.401543, 45.555485],\n            [9.397046, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.559982],\n            [9.397046, 45.564479],\n            [9.401543, 45.564479],\n            [9.401543, 45.559982],\n            [9.397046, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.564479],\n            [9.397046, 45.568975],\n            [9.401543, 45.568975],\n            [9.401543, 45.564479],\n            [9.397046, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.568975],\n            [9.397046, 45.573472],\n            [9.401543, 45.573472],\n            [9.401543, 45.568975],\n            [9.397046, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.573472],\n            [9.397046, 45.577968],\n            [9.401543, 45.577968],\n            [9.401543, 45.573472],\n            [9.397046, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.577968],\n            [9.397046, 45.582465],\n            [9.401543, 45.582465],\n            [9.401543, 45.577968],\n            [9.397046, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.582465],\n            [9.397046, 45.586962],\n            [9.401543, 45.586962],\n            [9.401543, 45.582465],\n            [9.397046, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.586962],\n            [9.397046, 45.591458],\n            [9.401543, 45.591458],\n            [9.401543, 45.586962],\n            [9.397046, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.591458],\n            [9.397046, 45.595955],\n            [9.401543, 45.595955],\n            [9.401543, 45.591458],\n            [9.397046, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.595955],\n            [9.397046, 45.600451],\n            [9.401543, 45.600451],\n            [9.401543, 45.595955],\n            [9.397046, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.600451],\n            [9.397046, 45.604948],\n            [9.401543, 45.604948],\n            [9.401543, 45.600451],\n            [9.397046, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.604948],\n            [9.397046, 45.609445],\n            [9.401543, 45.609445],\n            [9.401543, 45.604948],\n            [9.397046, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.609445],\n            [9.397046, 45.613941],\n            [9.401543, 45.613941],\n            [9.401543, 45.609445],\n            [9.397046, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.613941],\n            [9.397046, 45.618438],\n            [9.401543, 45.618438],\n            [9.401543, 45.613941],\n            [9.397046, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.618438],\n            [9.397046, 45.622934],\n            [9.401543, 45.622934],\n            [9.401543, 45.618438],\n            [9.397046, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.622934],\n            [9.397046, 45.627431],\n            [9.401543, 45.627431],\n            [9.401543, 45.622934],\n            [9.397046, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.627431],\n            [9.397046, 45.631928],\n            [9.401543, 45.631928],\n            [9.401543, 45.627431],\n            [9.397046, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.397046, 45.631928],\n            [9.397046, 45.636424],\n            [9.401543, 45.636424],\n            [9.401543, 45.631928],\n            [9.397046, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.339648],\n            [9.401543, 45.344145],\n            [9.40604, 45.344145],\n            [9.40604, 45.339648],\n            [9.401543, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.344145],\n            [9.401543, 45.348642],\n            [9.40604, 45.348642],\n            [9.40604, 45.344145],\n            [9.401543, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.348642],\n            [9.401543, 45.353138],\n            [9.40604, 45.353138],\n            [9.40604, 45.348642],\n            [9.401543, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.353138],\n            [9.401543, 45.357635],\n            [9.40604, 45.357635],\n            [9.40604, 45.353138],\n            [9.401543, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.357635],\n            [9.401543, 45.362131],\n            [9.40604, 45.362131],\n            [9.40604, 45.357635],\n            [9.401543, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.362131],\n            [9.401543, 45.366628],\n            [9.40604, 45.366628],\n            [9.40604, 45.362131],\n            [9.401543, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.366628],\n            [9.401543, 45.371125],\n            [9.40604, 45.371125],\n            [9.40604, 45.366628],\n            [9.401543, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.371125],\n            [9.401543, 45.375621],\n            [9.40604, 45.375621],\n            [9.40604, 45.371125],\n            [9.401543, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.375621],\n            [9.401543, 45.380118],\n            [9.40604, 45.380118],\n            [9.40604, 45.375621],\n            [9.401543, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.380118],\n            [9.401543, 45.384614],\n            [9.40604, 45.384614],\n            [9.40604, 45.380118],\n            [9.401543, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.384614],\n            [9.401543, 45.389111],\n            [9.40604, 45.389111],\n            [9.40604, 45.384614],\n            [9.401543, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.389111],\n            [9.401543, 45.393608],\n            [9.40604, 45.393608],\n            [9.40604, 45.389111],\n            [9.401543, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.393608],\n            [9.401543, 45.398104],\n            [9.40604, 45.398104],\n            [9.40604, 45.393608],\n            [9.401543, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.398104],\n            [9.401543, 45.402601],\n            [9.40604, 45.402601],\n            [9.40604, 45.398104],\n            [9.401543, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.402601],\n            [9.401543, 45.407097],\n            [9.40604, 45.407097],\n            [9.40604, 45.402601],\n            [9.401543, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.407097],\n            [9.401543, 45.411594],\n            [9.40604, 45.411594],\n            [9.40604, 45.407097],\n            [9.401543, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.411594],\n            [9.401543, 45.416091],\n            [9.40604, 45.416091],\n            [9.40604, 45.411594],\n            [9.401543, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.416091],\n            [9.401543, 45.420587],\n            [9.40604, 45.420587],\n            [9.40604, 45.416091],\n            [9.401543, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.420587],\n            [9.401543, 45.425084],\n            [9.40604, 45.425084],\n            [9.40604, 45.420587],\n            [9.401543, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.425084],\n            [9.401543, 45.42958],\n            [9.40604, 45.42958],\n            [9.40604, 45.425084],\n            [9.401543, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.42958],\n            [9.401543, 45.434077],\n            [9.40604, 45.434077],\n            [9.40604, 45.42958],\n            [9.401543, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.434077],\n            [9.401543, 45.438574],\n            [9.40604, 45.438574],\n            [9.40604, 45.434077],\n            [9.401543, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.438574],\n            [9.401543, 45.44307],\n            [9.40604, 45.44307],\n            [9.40604, 45.438574],\n            [9.401543, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.44307],\n            [9.401543, 45.447567],\n            [9.40604, 45.447567],\n            [9.40604, 45.44307],\n            [9.401543, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.447567],\n            [9.401543, 45.452063],\n            [9.40604, 45.452063],\n            [9.40604, 45.447567],\n            [9.401543, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.452063],\n            [9.401543, 45.45656],\n            [9.40604, 45.45656],\n            [9.40604, 45.452063],\n            [9.401543, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.45656],\n            [9.401543, 45.461057],\n            [9.40604, 45.461057],\n            [9.40604, 45.45656],\n            [9.401543, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.461057],\n            [9.401543, 45.465553],\n            [9.40604, 45.465553],\n            [9.40604, 45.461057],\n            [9.401543, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.465553],\n            [9.401543, 45.47005],\n            [9.40604, 45.47005],\n            [9.40604, 45.465553],\n            [9.401543, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.47005],\n            [9.401543, 45.474547],\n            [9.40604, 45.474547],\n            [9.40604, 45.47005],\n            [9.401543, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.474547],\n            [9.401543, 45.479043],\n            [9.40604, 45.479043],\n            [9.40604, 45.474547],\n            [9.401543, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.479043],\n            [9.401543, 45.48354],\n            [9.40604, 45.48354],\n            [9.40604, 45.479043],\n            [9.401543, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.48354],\n            [9.401543, 45.488036],\n            [9.40604, 45.488036],\n            [9.40604, 45.48354],\n            [9.401543, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.488036],\n            [9.401543, 45.492533],\n            [9.40604, 45.492533],\n            [9.40604, 45.488036],\n            [9.401543, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.492533],\n            [9.401543, 45.49703],\n            [9.40604, 45.49703],\n            [9.40604, 45.492533],\n            [9.401543, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.49703],\n            [9.401543, 45.501526],\n            [9.40604, 45.501526],\n            [9.40604, 45.49703],\n            [9.401543, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.501526],\n            [9.401543, 45.506023],\n            [9.40604, 45.506023],\n            [9.40604, 45.501526],\n            [9.401543, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.506023],\n            [9.401543, 45.510519],\n            [9.40604, 45.510519],\n            [9.40604, 45.506023],\n            [9.401543, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.510519],\n            [9.401543, 45.515016],\n            [9.40604, 45.515016],\n            [9.40604, 45.510519],\n            [9.401543, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.515016],\n            [9.401543, 45.519513],\n            [9.40604, 45.519513],\n            [9.40604, 45.515016],\n            [9.401543, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.519513],\n            [9.401543, 45.524009],\n            [9.40604, 45.524009],\n            [9.40604, 45.519513],\n            [9.401543, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.524009],\n            [9.401543, 45.528506],\n            [9.40604, 45.528506],\n            [9.40604, 45.524009],\n            [9.401543, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.528506],\n            [9.401543, 45.533002],\n            [9.40604, 45.533002],\n            [9.40604, 45.528506],\n            [9.401543, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.533002],\n            [9.401543, 45.537499],\n            [9.40604, 45.537499],\n            [9.40604, 45.533002],\n            [9.401543, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.537499],\n            [9.401543, 45.541996],\n            [9.40604, 45.541996],\n            [9.40604, 45.537499],\n            [9.401543, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.541996],\n            [9.401543, 45.546492],\n            [9.40604, 45.546492],\n            [9.40604, 45.541996],\n            [9.401543, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.546492],\n            [9.401543, 45.550989],\n            [9.40604, 45.550989],\n            [9.40604, 45.546492],\n            [9.401543, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.550989],\n            [9.401543, 45.555485],\n            [9.40604, 45.555485],\n            [9.40604, 45.550989],\n            [9.401543, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.555485],\n            [9.401543, 45.559982],\n            [9.40604, 45.559982],\n            [9.40604, 45.555485],\n            [9.401543, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.559982],\n            [9.401543, 45.564479],\n            [9.40604, 45.564479],\n            [9.40604, 45.559982],\n            [9.401543, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.564479],\n            [9.401543, 45.568975],\n            [9.40604, 45.568975],\n            [9.40604, 45.564479],\n            [9.401543, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.568975],\n            [9.401543, 45.573472],\n            [9.40604, 45.573472],\n            [9.40604, 45.568975],\n            [9.401543, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.573472],\n            [9.401543, 45.577968],\n            [9.40604, 45.577968],\n            [9.40604, 45.573472],\n            [9.401543, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.577968],\n            [9.401543, 45.582465],\n            [9.40604, 45.582465],\n            [9.40604, 45.577968],\n            [9.401543, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.582465],\n            [9.401543, 45.586962],\n            [9.40604, 45.586962],\n            [9.40604, 45.582465],\n            [9.401543, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.586962],\n            [9.401543, 45.591458],\n            [9.40604, 45.591458],\n            [9.40604, 45.586962],\n            [9.401543, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.591458],\n            [9.401543, 45.595955],\n            [9.40604, 45.595955],\n            [9.40604, 45.591458],\n            [9.401543, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.595955],\n            [9.401543, 45.600451],\n            [9.40604, 45.600451],\n            [9.40604, 45.595955],\n            [9.401543, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.600451],\n            [9.401543, 45.604948],\n            [9.40604, 45.604948],\n            [9.40604, 45.600451],\n            [9.401543, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.604948],\n            [9.401543, 45.609445],\n            [9.40604, 45.609445],\n            [9.40604, 45.604948],\n            [9.401543, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.609445],\n            [9.401543, 45.613941],\n            [9.40604, 45.613941],\n            [9.40604, 45.609445],\n            [9.401543, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.613941],\n            [9.401543, 45.618438],\n            [9.40604, 45.618438],\n            [9.40604, 45.613941],\n            [9.401543, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.618438],\n            [9.401543, 45.622934],\n            [9.40604, 45.622934],\n            [9.40604, 45.618438],\n            [9.401543, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.622934],\n            [9.401543, 45.627431],\n            [9.40604, 45.627431],\n            [9.40604, 45.622934],\n            [9.401543, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.627431],\n            [9.401543, 45.631928],\n            [9.40604, 45.631928],\n            [9.40604, 45.627431],\n            [9.401543, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401543, 45.631928],\n            [9.401543, 45.636424],\n            [9.40604, 45.636424],\n            [9.40604, 45.631928],\n            [9.401543, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.339648],\n            [9.40604, 45.344145],\n            [9.410536, 45.344145],\n            [9.410536, 45.339648],\n            [9.40604, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.344145],\n            [9.40604, 45.348642],\n            [9.410536, 45.348642],\n            [9.410536, 45.344145],\n            [9.40604, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.348642],\n            [9.40604, 45.353138],\n            [9.410536, 45.353138],\n            [9.410536, 45.348642],\n            [9.40604, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.353138],\n            [9.40604, 45.357635],\n            [9.410536, 45.357635],\n            [9.410536, 45.353138],\n            [9.40604, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.357635],\n            [9.40604, 45.362131],\n            [9.410536, 45.362131],\n            [9.410536, 45.357635],\n            [9.40604, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.362131],\n            [9.40604, 45.366628],\n            [9.410536, 45.366628],\n            [9.410536, 45.362131],\n            [9.40604, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.366628],\n            [9.40604, 45.371125],\n            [9.410536, 45.371125],\n            [9.410536, 45.366628],\n            [9.40604, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.371125],\n            [9.40604, 45.375621],\n            [9.410536, 45.375621],\n            [9.410536, 45.371125],\n            [9.40604, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.375621],\n            [9.40604, 45.380118],\n            [9.410536, 45.380118],\n            [9.410536, 45.375621],\n            [9.40604, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.380118],\n            [9.40604, 45.384614],\n            [9.410536, 45.384614],\n            [9.410536, 45.380118],\n            [9.40604, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.384614],\n            [9.40604, 45.389111],\n            [9.410536, 45.389111],\n            [9.410536, 45.384614],\n            [9.40604, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.389111],\n            [9.40604, 45.393608],\n            [9.410536, 45.393608],\n            [9.410536, 45.389111],\n            [9.40604, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.393608],\n            [9.40604, 45.398104],\n            [9.410536, 45.398104],\n            [9.410536, 45.393608],\n            [9.40604, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.398104],\n            [9.40604, 45.402601],\n            [9.410536, 45.402601],\n            [9.410536, 45.398104],\n            [9.40604, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.402601],\n            [9.40604, 45.407097],\n            [9.410536, 45.407097],\n            [9.410536, 45.402601],\n            [9.40604, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.407097],\n            [9.40604, 45.411594],\n            [9.410536, 45.411594],\n            [9.410536, 45.407097],\n            [9.40604, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.411594],\n            [9.40604, 45.416091],\n            [9.410536, 45.416091],\n            [9.410536, 45.411594],\n            [9.40604, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.416091],\n            [9.40604, 45.420587],\n            [9.410536, 45.420587],\n            [9.410536, 45.416091],\n            [9.40604, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.420587],\n            [9.40604, 45.425084],\n            [9.410536, 45.425084],\n            [9.410536, 45.420587],\n            [9.40604, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.425084],\n            [9.40604, 45.42958],\n            [9.410536, 45.42958],\n            [9.410536, 45.425084],\n            [9.40604, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.42958],\n            [9.40604, 45.434077],\n            [9.410536, 45.434077],\n            [9.410536, 45.42958],\n            [9.40604, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.434077],\n            [9.40604, 45.438574],\n            [9.410536, 45.438574],\n            [9.410536, 45.434077],\n            [9.40604, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.438574],\n            [9.40604, 45.44307],\n            [9.410536, 45.44307],\n            [9.410536, 45.438574],\n            [9.40604, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.44307],\n            [9.40604, 45.447567],\n            [9.410536, 45.447567],\n            [9.410536, 45.44307],\n            [9.40604, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.447567],\n            [9.40604, 45.452063],\n            [9.410536, 45.452063],\n            [9.410536, 45.447567],\n            [9.40604, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.452063],\n            [9.40604, 45.45656],\n            [9.410536, 45.45656],\n            [9.410536, 45.452063],\n            [9.40604, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.45656],\n            [9.40604, 45.461057],\n            [9.410536, 45.461057],\n            [9.410536, 45.45656],\n            [9.40604, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.461057],\n            [9.40604, 45.465553],\n            [9.410536, 45.465553],\n            [9.410536, 45.461057],\n            [9.40604, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.465553],\n            [9.40604, 45.47005],\n            [9.410536, 45.47005],\n            [9.410536, 45.465553],\n            [9.40604, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.47005],\n            [9.40604, 45.474547],\n            [9.410536, 45.474547],\n            [9.410536, 45.47005],\n            [9.40604, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.474547],\n            [9.40604, 45.479043],\n            [9.410536, 45.479043],\n            [9.410536, 45.474547],\n            [9.40604, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.479043],\n            [9.40604, 45.48354],\n            [9.410536, 45.48354],\n            [9.410536, 45.479043],\n            [9.40604, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.48354],\n            [9.40604, 45.488036],\n            [9.410536, 45.488036],\n            [9.410536, 45.48354],\n            [9.40604, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.488036],\n            [9.40604, 45.492533],\n            [9.410536, 45.492533],\n            [9.410536, 45.488036],\n            [9.40604, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.492533],\n            [9.40604, 45.49703],\n            [9.410536, 45.49703],\n            [9.410536, 45.492533],\n            [9.40604, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.49703],\n            [9.40604, 45.501526],\n            [9.410536, 45.501526],\n            [9.410536, 45.49703],\n            [9.40604, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.501526],\n            [9.40604, 45.506023],\n            [9.410536, 45.506023],\n            [9.410536, 45.501526],\n            [9.40604, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.506023],\n            [9.40604, 45.510519],\n            [9.410536, 45.510519],\n            [9.410536, 45.506023],\n            [9.40604, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.510519],\n            [9.40604, 45.515016],\n            [9.410536, 45.515016],\n            [9.410536, 45.510519],\n            [9.40604, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.515016],\n            [9.40604, 45.519513],\n            [9.410536, 45.519513],\n            [9.410536, 45.515016],\n            [9.40604, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.519513],\n            [9.40604, 45.524009],\n            [9.410536, 45.524009],\n            [9.410536, 45.519513],\n            [9.40604, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.524009],\n            [9.40604, 45.528506],\n            [9.410536, 45.528506],\n            [9.410536, 45.524009],\n            [9.40604, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.528506],\n            [9.40604, 45.533002],\n            [9.410536, 45.533002],\n            [9.410536, 45.528506],\n            [9.40604, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.533002],\n            [9.40604, 45.537499],\n            [9.410536, 45.537499],\n            [9.410536, 45.533002],\n            [9.40604, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.537499],\n            [9.40604, 45.541996],\n            [9.410536, 45.541996],\n            [9.410536, 45.537499],\n            [9.40604, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.541996],\n            [9.40604, 45.546492],\n            [9.410536, 45.546492],\n            [9.410536, 45.541996],\n            [9.40604, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.546492],\n            [9.40604, 45.550989],\n            [9.410536, 45.550989],\n            [9.410536, 45.546492],\n            [9.40604, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.550989],\n            [9.40604, 45.555485],\n            [9.410536, 45.555485],\n            [9.410536, 45.550989],\n            [9.40604, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.555485],\n            [9.40604, 45.559982],\n            [9.410536, 45.559982],\n            [9.410536, 45.555485],\n            [9.40604, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.559982],\n            [9.40604, 45.564479],\n            [9.410536, 45.564479],\n            [9.410536, 45.559982],\n            [9.40604, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.564479],\n            [9.40604, 45.568975],\n            [9.410536, 45.568975],\n            [9.410536, 45.564479],\n            [9.40604, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.568975],\n            [9.40604, 45.573472],\n            [9.410536, 45.573472],\n            [9.410536, 45.568975],\n            [9.40604, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.573472],\n            [9.40604, 45.577968],\n            [9.410536, 45.577968],\n            [9.410536, 45.573472],\n            [9.40604, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.577968],\n            [9.40604, 45.582465],\n            [9.410536, 45.582465],\n            [9.410536, 45.577968],\n            [9.40604, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.582465],\n            [9.40604, 45.586962],\n            [9.410536, 45.586962],\n            [9.410536, 45.582465],\n            [9.40604, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.586962],\n            [9.40604, 45.591458],\n            [9.410536, 45.591458],\n            [9.410536, 45.586962],\n            [9.40604, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.591458],\n            [9.40604, 45.595955],\n            [9.410536, 45.595955],\n            [9.410536, 45.591458],\n            [9.40604, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.595955],\n            [9.40604, 45.600451],\n            [9.410536, 45.600451],\n            [9.410536, 45.595955],\n            [9.40604, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.600451],\n            [9.40604, 45.604948],\n            [9.410536, 45.604948],\n            [9.410536, 45.600451],\n            [9.40604, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.604948],\n            [9.40604, 45.609445],\n            [9.410536, 45.609445],\n            [9.410536, 45.604948],\n            [9.40604, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.609445],\n            [9.40604, 45.613941],\n            [9.410536, 45.613941],\n            [9.410536, 45.609445],\n            [9.40604, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.613941],\n            [9.40604, 45.618438],\n            [9.410536, 45.618438],\n            [9.410536, 45.613941],\n            [9.40604, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.618438],\n            [9.40604, 45.622934],\n            [9.410536, 45.622934],\n            [9.410536, 45.618438],\n            [9.40604, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.622934],\n            [9.40604, 45.627431],\n            [9.410536, 45.627431],\n            [9.410536, 45.622934],\n            [9.40604, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.627431],\n            [9.40604, 45.631928],\n            [9.410536, 45.631928],\n            [9.410536, 45.627431],\n            [9.40604, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.40604, 45.631928],\n            [9.40604, 45.636424],\n            [9.410536, 45.636424],\n            [9.410536, 45.631928],\n            [9.40604, 45.631928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.339648],\n            [9.410536, 45.344145],\n            [9.415033, 45.344145],\n            [9.415033, 45.339648],\n            [9.410536, 45.339648]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.344145],\n            [9.410536, 45.348642],\n            [9.415033, 45.348642],\n            [9.415033, 45.344145],\n            [9.410536, 45.344145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.348642],\n            [9.410536, 45.353138],\n            [9.415033, 45.353138],\n            [9.415033, 45.348642],\n            [9.410536, 45.348642]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.353138],\n            [9.410536, 45.357635],\n            [9.415033, 45.357635],\n            [9.415033, 45.353138],\n            [9.410536, 45.353138]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.357635],\n            [9.410536, 45.362131],\n            [9.415033, 45.362131],\n            [9.415033, 45.357635],\n            [9.410536, 45.357635]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.362131],\n            [9.410536, 45.366628],\n            [9.415033, 45.366628],\n            [9.415033, 45.362131],\n            [9.410536, 45.362131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.366628],\n            [9.410536, 45.371125],\n            [9.415033, 45.371125],\n            [9.415033, 45.366628],\n            [9.410536, 45.366628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.371125],\n            [9.410536, 45.375621],\n            [9.415033, 45.375621],\n            [9.415033, 45.371125],\n            [9.410536, 45.371125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.375621],\n            [9.410536, 45.380118],\n            [9.415033, 45.380118],\n            [9.415033, 45.375621],\n            [9.410536, 45.375621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.380118],\n            [9.410536, 45.384614],\n            [9.415033, 45.384614],\n            [9.415033, 45.380118],\n            [9.410536, 45.380118]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.384614],\n            [9.410536, 45.389111],\n            [9.415033, 45.389111],\n            [9.415033, 45.384614],\n            [9.410536, 45.384614]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.389111],\n            [9.410536, 45.393608],\n            [9.415033, 45.393608],\n            [9.415033, 45.389111],\n            [9.410536, 45.389111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.393608],\n            [9.410536, 45.398104],\n            [9.415033, 45.398104],\n            [9.415033, 45.393608],\n            [9.410536, 45.393608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.398104],\n            [9.410536, 45.402601],\n            [9.415033, 45.402601],\n            [9.415033, 45.398104],\n            [9.410536, 45.398104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.402601],\n            [9.410536, 45.407097],\n            [9.415033, 45.407097],\n            [9.415033, 45.402601],\n            [9.410536, 45.402601]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.407097],\n            [9.410536, 45.411594],\n            [9.415033, 45.411594],\n            [9.415033, 45.407097],\n            [9.410536, 45.407097]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.411594],\n            [9.410536, 45.416091],\n            [9.415033, 45.416091],\n            [9.415033, 45.411594],\n            [9.410536, 45.411594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.416091],\n            [9.410536, 45.420587],\n            [9.415033, 45.420587],\n            [9.415033, 45.416091],\n            [9.410536, 45.416091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.420587],\n            [9.410536, 45.425084],\n            [9.415033, 45.425084],\n            [9.415033, 45.420587],\n            [9.410536, 45.420587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.425084],\n            [9.410536, 45.42958],\n            [9.415033, 45.42958],\n            [9.415033, 45.425084],\n            [9.410536, 45.425084]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.42958],\n            [9.410536, 45.434077],\n            [9.415033, 45.434077],\n            [9.415033, 45.42958],\n            [9.410536, 45.42958]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.434077],\n            [9.410536, 45.438574],\n            [9.415033, 45.438574],\n            [9.415033, 45.434077],\n            [9.410536, 45.434077]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.438574],\n            [9.410536, 45.44307],\n            [9.415033, 45.44307],\n            [9.415033, 45.438574],\n            [9.410536, 45.438574]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.44307],\n            [9.410536, 45.447567],\n            [9.415033, 45.447567],\n            [9.415033, 45.44307],\n            [9.410536, 45.44307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.447567],\n            [9.410536, 45.452063],\n            [9.415033, 45.452063],\n            [9.415033, 45.447567],\n            [9.410536, 45.447567]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.452063],\n            [9.410536, 45.45656],\n            [9.415033, 45.45656],\n            [9.415033, 45.452063],\n            [9.410536, 45.452063]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.45656],\n            [9.410536, 45.461057],\n            [9.415033, 45.461057],\n            [9.415033, 45.45656],\n            [9.410536, 45.45656]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.461057],\n            [9.410536, 45.465553],\n            [9.415033, 45.465553],\n            [9.415033, 45.461057],\n            [9.410536, 45.461057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.465553],\n            [9.410536, 45.47005],\n            [9.415033, 45.47005],\n            [9.415033, 45.465553],\n            [9.410536, 45.465553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.47005],\n            [9.410536, 45.474547],\n            [9.415033, 45.474547],\n            [9.415033, 45.47005],\n            [9.410536, 45.47005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.474547],\n            [9.410536, 45.479043],\n            [9.415033, 45.479043],\n            [9.415033, 45.474547],\n            [9.410536, 45.474547]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.479043],\n            [9.410536, 45.48354],\n            [9.415033, 45.48354],\n            [9.415033, 45.479043],\n            [9.410536, 45.479043]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.48354],\n            [9.410536, 45.488036],\n            [9.415033, 45.488036],\n            [9.415033, 45.48354],\n            [9.410536, 45.48354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.488036],\n            [9.410536, 45.492533],\n            [9.415033, 45.492533],\n            [9.415033, 45.488036],\n            [9.410536, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.492533],\n            [9.410536, 45.49703],\n            [9.415033, 45.49703],\n            [9.415033, 45.492533],\n            [9.410536, 45.492533]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.49703],\n            [9.410536, 45.501526],\n            [9.415033, 45.501526],\n            [9.415033, 45.49703],\n            [9.410536, 45.49703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.501526],\n            [9.410536, 45.506023],\n            [9.415033, 45.506023],\n            [9.415033, 45.501526],\n            [9.410536, 45.501526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.506023],\n            [9.410536, 45.510519],\n            [9.415033, 45.510519],\n            [9.415033, 45.506023],\n            [9.410536, 45.506023]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.510519],\n            [9.410536, 45.515016],\n            [9.415033, 45.515016],\n            [9.415033, 45.510519],\n            [9.410536, 45.510519]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.515016],\n            [9.410536, 45.519513],\n            [9.415033, 45.519513],\n            [9.415033, 45.515016],\n            [9.410536, 45.515016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.519513],\n            [9.410536, 45.524009],\n            [9.415033, 45.524009],\n            [9.415033, 45.519513],\n            [9.410536, 45.519513]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.524009],\n            [9.410536, 45.528506],\n            [9.415033, 45.528506],\n            [9.415033, 45.524009],\n            [9.410536, 45.524009]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.528506],\n            [9.410536, 45.533002],\n            [9.415033, 45.533002],\n            [9.415033, 45.528506],\n            [9.410536, 45.528506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.533002],\n            [9.410536, 45.537499],\n            [9.415033, 45.537499],\n            [9.415033, 45.533002],\n            [9.410536, 45.533002]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.537499],\n            [9.410536, 45.541996],\n            [9.415033, 45.541996],\n            [9.415033, 45.537499],\n            [9.410536, 45.537499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.541996],\n            [9.410536, 45.546492],\n            [9.415033, 45.546492],\n            [9.415033, 45.541996],\n            [9.410536, 45.541996]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#61b3ff\",\n        \"fill\": \"#61b3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.546492],\n            [9.410536, 45.550989],\n            [9.415033, 45.550989],\n            [9.415033, 45.546492],\n            [9.410536, 45.546492]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.550989],\n            [9.410536, 45.555485],\n            [9.415033, 45.555485],\n            [9.415033, 45.550989],\n            [9.410536, 45.550989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.555485],\n            [9.410536, 45.559982],\n            [9.415033, 45.559982],\n            [9.415033, 45.555485],\n            [9.410536, 45.555485]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.559982],\n            [9.410536, 45.564479],\n            [9.415033, 45.564479],\n            [9.415033, 45.559982],\n            [9.410536, 45.559982]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.564479],\n            [9.410536, 45.568975],\n            [9.415033, 45.568975],\n            [9.415033, 45.564479],\n            [9.410536, 45.564479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.568975],\n            [9.410536, 45.573472],\n            [9.415033, 45.573472],\n            [9.415033, 45.568975],\n            [9.410536, 45.568975]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.573472],\n            [9.410536, 45.577968],\n            [9.415033, 45.577968],\n            [9.415033, 45.573472],\n            [9.410536, 45.573472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.577968],\n            [9.410536, 45.582465],\n            [9.415033, 45.582465],\n            [9.415033, 45.577968],\n            [9.410536, 45.577968]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.582465],\n            [9.410536, 45.586962],\n            [9.415033, 45.586962],\n            [9.415033, 45.582465],\n            [9.410536, 45.582465]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.586962],\n            [9.410536, 45.591458],\n            [9.415033, 45.591458],\n            [9.415033, 45.586962],\n            [9.410536, 45.586962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.591458],\n            [9.410536, 45.595955],\n            [9.415033, 45.595955],\n            [9.415033, 45.591458],\n            [9.410536, 45.591458]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.595955],\n            [9.410536, 45.600451],\n            [9.415033, 45.600451],\n            [9.415033, 45.595955],\n            [9.410536, 45.595955]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.600451],\n            [9.410536, 45.604948],\n            [9.415033, 45.604948],\n            [9.415033, 45.600451],\n            [9.410536, 45.600451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.604948],\n            [9.410536, 45.609445],\n            [9.415033, 45.609445],\n            [9.415033, 45.604948],\n            [9.410536, 45.604948]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.609445],\n            [9.410536, 45.613941],\n            [9.415033, 45.613941],\n            [9.415033, 45.609445],\n            [9.410536, 45.609445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.613941],\n            [9.410536, 45.618438],\n            [9.415033, 45.618438],\n            [9.415033, 45.613941],\n            [9.410536, 45.613941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.618438],\n            [9.410536, 45.622934],\n            [9.415033, 45.622934],\n            [9.415033, 45.618438],\n            [9.410536, 45.618438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.622934],\n            [9.410536, 45.627431],\n            [9.415033, 45.627431],\n            [9.415033, 45.622934],\n            [9.410536, 45.622934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.627431],\n            [9.410536, 45.631928],\n            [9.415033, 45.631928],\n            [9.415033, 45.627431],\n            [9.410536, 45.627431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.410536, 45.631928],\n            [9.410536, 45.636424],\n            [9.415033, 45.636424],\n            [9.415033, 45.631928],\n            [9.410536, 45.631928]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/out/data-500m.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 16,\n        \"stroke\": \"#e5f3ff\",\n        \"fill\": \"#e5f3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.440822],\n            [9.11772, 45.445319],\n            [9.122216, 45.445319],\n            [9.122216, 45.440822],\n            [9.11772, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.445319],\n            [9.11772, 45.449815],\n            [9.122216, 45.449815],\n            [9.122216, 45.445319],\n            [9.11772, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.449815],\n            [9.11772, 45.454312],\n            [9.122216, 45.454312],\n            [9.122216, 45.449815],\n            [9.11772, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.454312],\n            [9.11772, 45.458808],\n            [9.122216, 45.458808],\n            [9.122216, 45.454312],\n            [9.11772, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.458808],\n            [9.11772, 45.463305],\n            [9.122216, 45.463305],\n            [9.122216, 45.458808],\n            [9.11772, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.463305],\n            [9.11772, 45.467802],\n            [9.122216, 45.467802],\n            [9.122216, 45.463305],\n            [9.11772, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.467802],\n            [9.11772, 45.472298],\n            [9.122216, 45.472298],\n            [9.122216, 45.467802],\n            [9.11772, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.472298],\n            [9.11772, 45.476795],\n            [9.122216, 45.476795],\n            [9.122216, 45.472298],\n            [9.11772, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.476795],\n            [9.11772, 45.481291],\n            [9.122216, 45.481291],\n            [9.122216, 45.476795],\n            [9.11772, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.481291],\n            [9.11772, 45.485788],\n            [9.122216, 45.485788],\n            [9.122216, 45.481291],\n            [9.11772, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.485788],\n            [9.11772, 45.490285],\n            [9.122216, 45.490285],\n            [9.122216, 45.485788],\n            [9.11772, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.490285],\n            [9.11772, 45.494781],\n            [9.122216, 45.494781],\n            [9.122216, 45.490285],\n            [9.11772, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.494781],\n            [9.11772, 45.499278],\n            [9.122216, 45.499278],\n            [9.122216, 45.494781],\n            [9.11772, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.499278],\n            [9.11772, 45.503774],\n            [9.122216, 45.503774],\n            [9.122216, 45.499278],\n            [9.11772, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.503774],\n            [9.11772, 45.508271],\n            [9.122216, 45.508271],\n            [9.122216, 45.503774],\n            [9.11772, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.508271],\n            [9.11772, 45.512768],\n            [9.122216, 45.512768],\n            [9.122216, 45.508271],\n            [9.11772, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.512768],\n            [9.11772, 45.517264],\n            [9.122216, 45.517264],\n            [9.122216, 45.512768],\n            [9.11772, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.517264],\n            [9.11772, 45.521761],\n            [9.122216, 45.521761],\n            [9.122216, 45.517264],\n            [9.11772, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#52acff\",\n        \"fill\": \"#52acff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.521761],\n            [9.11772, 45.526257],\n            [9.122216, 45.526257],\n            [9.122216, 45.521761],\n            [9.11772, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#52acff\",\n        \"fill\": \"#52acff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.526257],\n            [9.11772, 45.530754],\n            [9.122216, 45.530754],\n            [9.122216, 45.526257],\n            [9.11772, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.11772, 45.530754],\n            [9.11772, 45.535251],\n            [9.122216, 45.535251],\n            [9.122216, 45.530754],\n            [9.11772, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.440822],\n            [9.122216, 45.445319],\n            [9.126713, 45.445319],\n            [9.126713, 45.440822],\n            [9.122216, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.445319],\n            [9.122216, 45.449815],\n            [9.126713, 45.449815],\n            [9.126713, 45.445319],\n            [9.122216, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.449815],\n            [9.122216, 45.454312],\n            [9.126713, 45.454312],\n            [9.126713, 45.449815],\n            [9.122216, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.454312],\n            [9.122216, 45.458808],\n            [9.126713, 45.458808],\n            [9.126713, 45.454312],\n            [9.122216, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.458808],\n            [9.122216, 45.463305],\n            [9.126713, 45.463305],\n            [9.126713, 45.458808],\n            [9.122216, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.463305],\n            [9.122216, 45.467802],\n            [9.126713, 45.467802],\n            [9.126713, 45.463305],\n            [9.122216, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.467802],\n            [9.122216, 45.472298],\n            [9.126713, 45.472298],\n            [9.126713, 45.467802],\n            [9.122216, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.472298],\n            [9.122216, 45.476795],\n            [9.126713, 45.476795],\n            [9.126713, 45.472298],\n            [9.122216, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.476795],\n            [9.122216, 45.481291],\n            [9.126713, 45.481291],\n            [9.126713, 45.476795],\n            [9.122216, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.481291],\n            [9.122216, 45.485788],\n            [9.126713, 45.485788],\n            [9.126713, 45.481291],\n            [9.122216, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.485788],\n            [9.122216, 45.490285],\n            [9.126713, 45.490285],\n            [9.126713, 45.485788],\n            [9.122216, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.490285],\n            [9.122216, 45.494781],\n            [9.126713, 45.494781],\n            [9.126713, 45.490285],\n            [9.122216, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.494781],\n            [9.122216, 45.499278],\n            [9.126713, 45.499278],\n            [9.126713, 45.494781],\n            [9.122216, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.499278],\n            [9.122216, 45.503774],\n            [9.126713, 45.503774],\n            [9.126713, 45.499278],\n            [9.122216, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.503774],\n            [9.122216, 45.508271],\n            [9.126713, 45.508271],\n            [9.126713, 45.503774],\n            [9.122216, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.508271],\n            [9.122216, 45.512768],\n            [9.126713, 45.512768],\n            [9.126713, 45.508271],\n            [9.122216, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.512768],\n            [9.122216, 45.517264],\n            [9.126713, 45.517264],\n            [9.126713, 45.512768],\n            [9.122216, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.517264],\n            [9.122216, 45.521761],\n            [9.126713, 45.521761],\n            [9.126713, 45.517264],\n            [9.122216, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#52acff\",\n        \"fill\": \"#52acff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.521761],\n            [9.122216, 45.526257],\n            [9.126713, 45.526257],\n            [9.126713, 45.521761],\n            [9.122216, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#52acff\",\n        \"fill\": \"#52acff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.526257],\n            [9.122216, 45.530754],\n            [9.126713, 45.530754],\n            [9.126713, 45.526257],\n            [9.122216, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.122216, 45.530754],\n            [9.122216, 45.535251],\n            [9.126713, 45.535251],\n            [9.126713, 45.530754],\n            [9.122216, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.440822],\n            [9.126713, 45.445319],\n            [9.13121, 45.445319],\n            [9.13121, 45.440822],\n            [9.126713, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.445319],\n            [9.126713, 45.449815],\n            [9.13121, 45.449815],\n            [9.13121, 45.445319],\n            [9.126713, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.449815],\n            [9.126713, 45.454312],\n            [9.13121, 45.454312],\n            [9.13121, 45.449815],\n            [9.126713, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.454312],\n            [9.126713, 45.458808],\n            [9.13121, 45.458808],\n            [9.13121, 45.454312],\n            [9.126713, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.458808],\n            [9.126713, 45.463305],\n            [9.13121, 45.463305],\n            [9.13121, 45.458808],\n            [9.126713, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.463305],\n            [9.126713, 45.467802],\n            [9.13121, 45.467802],\n            [9.13121, 45.463305],\n            [9.126713, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.467802],\n            [9.126713, 45.472298],\n            [9.13121, 45.472298],\n            [9.13121, 45.467802],\n            [9.126713, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.472298],\n            [9.126713, 45.476795],\n            [9.13121, 45.476795],\n            [9.13121, 45.472298],\n            [9.126713, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.476795],\n            [9.126713, 45.481291],\n            [9.13121, 45.481291],\n            [9.13121, 45.476795],\n            [9.126713, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.481291],\n            [9.126713, 45.485788],\n            [9.13121, 45.485788],\n            [9.13121, 45.481291],\n            [9.126713, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.485788],\n            [9.126713, 45.490285],\n            [9.13121, 45.490285],\n            [9.13121, 45.485788],\n            [9.126713, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.490285],\n            [9.126713, 45.494781],\n            [9.13121, 45.494781],\n            [9.13121, 45.490285],\n            [9.126713, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.494781],\n            [9.126713, 45.499278],\n            [9.13121, 45.499278],\n            [9.13121, 45.494781],\n            [9.126713, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.499278],\n            [9.126713, 45.503774],\n            [9.13121, 45.503774],\n            [9.13121, 45.499278],\n            [9.126713, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.503774],\n            [9.126713, 45.508271],\n            [9.13121, 45.508271],\n            [9.13121, 45.503774],\n            [9.126713, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.508271],\n            [9.126713, 45.512768],\n            [9.13121, 45.512768],\n            [9.13121, 45.508271],\n            [9.126713, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.512768],\n            [9.126713, 45.517264],\n            [9.13121, 45.517264],\n            [9.13121, 45.512768],\n            [9.126713, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.517264],\n            [9.126713, 45.521761],\n            [9.13121, 45.521761],\n            [9.13121, 45.517264],\n            [9.126713, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#52acff\",\n        \"fill\": \"#52acff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.521761],\n            [9.126713, 45.526257],\n            [9.13121, 45.526257],\n            [9.13121, 45.521761],\n            [9.126713, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.526257],\n            [9.126713, 45.530754],\n            [9.13121, 45.530754],\n            [9.13121, 45.526257],\n            [9.126713, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.126713, 45.530754],\n            [9.126713, 45.535251],\n            [9.13121, 45.535251],\n            [9.13121, 45.530754],\n            [9.126713, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.440822],\n            [9.13121, 45.445319],\n            [9.135706, 45.445319],\n            [9.135706, 45.440822],\n            [9.13121, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.445319],\n            [9.13121, 45.449815],\n            [9.135706, 45.449815],\n            [9.135706, 45.445319],\n            [9.13121, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.449815],\n            [9.13121, 45.454312],\n            [9.135706, 45.454312],\n            [9.135706, 45.449815],\n            [9.13121, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.454312],\n            [9.13121, 45.458808],\n            [9.135706, 45.458808],\n            [9.135706, 45.454312],\n            [9.13121, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.458808],\n            [9.13121, 45.463305],\n            [9.135706, 45.463305],\n            [9.135706, 45.458808],\n            [9.13121, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.463305],\n            [9.13121, 45.467802],\n            [9.135706, 45.467802],\n            [9.135706, 45.463305],\n            [9.13121, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.467802],\n            [9.13121, 45.472298],\n            [9.135706, 45.472298],\n            [9.135706, 45.467802],\n            [9.13121, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.472298],\n            [9.13121, 45.476795],\n            [9.135706, 45.476795],\n            [9.135706, 45.472298],\n            [9.13121, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.476795],\n            [9.13121, 45.481291],\n            [9.135706, 45.481291],\n            [9.135706, 45.476795],\n            [9.13121, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.481291],\n            [9.13121, 45.485788],\n            [9.135706, 45.485788],\n            [9.135706, 45.481291],\n            [9.13121, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.485788],\n            [9.13121, 45.490285],\n            [9.135706, 45.490285],\n            [9.135706, 45.485788],\n            [9.13121, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.490285],\n            [9.13121, 45.494781],\n            [9.135706, 45.494781],\n            [9.135706, 45.490285],\n            [9.13121, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.494781],\n            [9.13121, 45.499278],\n            [9.135706, 45.499278],\n            [9.135706, 45.494781],\n            [9.13121, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.499278],\n            [9.13121, 45.503774],\n            [9.135706, 45.503774],\n            [9.135706, 45.499278],\n            [9.13121, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.503774],\n            [9.13121, 45.508271],\n            [9.135706, 45.508271],\n            [9.135706, 45.503774],\n            [9.13121, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.508271],\n            [9.13121, 45.512768],\n            [9.135706, 45.512768],\n            [9.135706, 45.508271],\n            [9.13121, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.512768],\n            [9.13121, 45.517264],\n            [9.135706, 45.517264],\n            [9.135706, 45.512768],\n            [9.13121, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#52acff\",\n        \"fill\": \"#52acff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.517264],\n            [9.13121, 45.521761],\n            [9.135706, 45.521761],\n            [9.135706, 45.517264],\n            [9.13121, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#52acff\",\n        \"fill\": \"#52acff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.521761],\n            [9.13121, 45.526257],\n            [9.135706, 45.526257],\n            [9.135706, 45.521761],\n            [9.13121, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.526257],\n            [9.13121, 45.530754],\n            [9.135706, 45.530754],\n            [9.135706, 45.526257],\n            [9.13121, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.13121, 45.530754],\n            [9.13121, 45.535251],\n            [9.135706, 45.535251],\n            [9.135706, 45.530754],\n            [9.13121, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.440822],\n            [9.135706, 45.445319],\n            [9.140203, 45.445319],\n            [9.140203, 45.440822],\n            [9.135706, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.445319],\n            [9.135706, 45.449815],\n            [9.140203, 45.449815],\n            [9.140203, 45.445319],\n            [9.135706, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.449815],\n            [9.135706, 45.454312],\n            [9.140203, 45.454312],\n            [9.140203, 45.449815],\n            [9.135706, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.454312],\n            [9.135706, 45.458808],\n            [9.140203, 45.458808],\n            [9.140203, 45.454312],\n            [9.135706, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.458808],\n            [9.135706, 45.463305],\n            [9.140203, 45.463305],\n            [9.140203, 45.458808],\n            [9.135706, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.463305],\n            [9.135706, 45.467802],\n            [9.140203, 45.467802],\n            [9.140203, 45.463305],\n            [9.135706, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.467802],\n            [9.135706, 45.472298],\n            [9.140203, 45.472298],\n            [9.140203, 45.467802],\n            [9.135706, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.472298],\n            [9.135706, 45.476795],\n            [9.140203, 45.476795],\n            [9.140203, 45.472298],\n            [9.135706, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.476795],\n            [9.135706, 45.481291],\n            [9.140203, 45.481291],\n            [9.140203, 45.476795],\n            [9.135706, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.481291],\n            [9.135706, 45.485788],\n            [9.140203, 45.485788],\n            [9.140203, 45.481291],\n            [9.135706, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.485788],\n            [9.135706, 45.490285],\n            [9.140203, 45.490285],\n            [9.140203, 45.485788],\n            [9.135706, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.490285],\n            [9.135706, 45.494781],\n            [9.140203, 45.494781],\n            [9.140203, 45.490285],\n            [9.135706, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.494781],\n            [9.135706, 45.499278],\n            [9.140203, 45.499278],\n            [9.140203, 45.494781],\n            [9.135706, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.499278],\n            [9.135706, 45.503774],\n            [9.140203, 45.503774],\n            [9.140203, 45.499278],\n            [9.135706, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.503774],\n            [9.135706, 45.508271],\n            [9.140203, 45.508271],\n            [9.140203, 45.503774],\n            [9.135706, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.508271],\n            [9.135706, 45.512768],\n            [9.140203, 45.512768],\n            [9.140203, 45.508271],\n            [9.135706, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.512768],\n            [9.135706, 45.517264],\n            [9.140203, 45.517264],\n            [9.140203, 45.512768],\n            [9.135706, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#52acff\",\n        \"fill\": \"#52acff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.517264],\n            [9.135706, 45.521761],\n            [9.140203, 45.521761],\n            [9.140203, 45.517264],\n            [9.135706, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.521761],\n            [9.135706, 45.526257],\n            [9.140203, 45.526257],\n            [9.140203, 45.521761],\n            [9.135706, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.526257],\n            [9.135706, 45.530754],\n            [9.140203, 45.530754],\n            [9.140203, 45.526257],\n            [9.135706, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.135706, 45.530754],\n            [9.135706, 45.535251],\n            [9.140203, 45.535251],\n            [9.140203, 45.530754],\n            [9.135706, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.440822],\n            [9.140203, 45.445319],\n            [9.144699, 45.445319],\n            [9.144699, 45.440822],\n            [9.140203, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.445319],\n            [9.140203, 45.449815],\n            [9.144699, 45.449815],\n            [9.144699, 45.445319],\n            [9.140203, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.449815],\n            [9.140203, 45.454312],\n            [9.144699, 45.454312],\n            [9.144699, 45.449815],\n            [9.140203, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.454312],\n            [9.140203, 45.458808],\n            [9.144699, 45.458808],\n            [9.144699, 45.454312],\n            [9.140203, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.458808],\n            [9.140203, 45.463305],\n            [9.144699, 45.463305],\n            [9.144699, 45.458808],\n            [9.140203, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.463305],\n            [9.140203, 45.467802],\n            [9.144699, 45.467802],\n            [9.144699, 45.463305],\n            [9.140203, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.467802],\n            [9.140203, 45.472298],\n            [9.144699, 45.472298],\n            [9.144699, 45.467802],\n            [9.140203, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.472298],\n            [9.140203, 45.476795],\n            [9.144699, 45.476795],\n            [9.144699, 45.472298],\n            [9.140203, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.476795],\n            [9.140203, 45.481291],\n            [9.144699, 45.481291],\n            [9.144699, 45.476795],\n            [9.140203, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.481291],\n            [9.140203, 45.485788],\n            [9.144699, 45.485788],\n            [9.144699, 45.481291],\n            [9.140203, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.485788],\n            [9.140203, 45.490285],\n            [9.144699, 45.490285],\n            [9.144699, 45.485788],\n            [9.140203, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.490285],\n            [9.140203, 45.494781],\n            [9.144699, 45.494781],\n            [9.144699, 45.490285],\n            [9.140203, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.494781],\n            [9.140203, 45.499278],\n            [9.144699, 45.499278],\n            [9.144699, 45.494781],\n            [9.140203, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.499278],\n            [9.140203, 45.503774],\n            [9.144699, 45.503774],\n            [9.144699, 45.499278],\n            [9.140203, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.503774],\n            [9.140203, 45.508271],\n            [9.144699, 45.508271],\n            [9.144699, 45.503774],\n            [9.140203, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.508271],\n            [9.140203, 45.512768],\n            [9.144699, 45.512768],\n            [9.144699, 45.508271],\n            [9.140203, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.512768],\n            [9.140203, 45.517264],\n            [9.144699, 45.517264],\n            [9.144699, 45.512768],\n            [9.140203, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#52acff\",\n        \"fill\": \"#52acff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.517264],\n            [9.140203, 45.521761],\n            [9.144699, 45.521761],\n            [9.144699, 45.517264],\n            [9.140203, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.521761],\n            [9.140203, 45.526257],\n            [9.144699, 45.526257],\n            [9.144699, 45.521761],\n            [9.140203, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.526257],\n            [9.140203, 45.530754],\n            [9.144699, 45.530754],\n            [9.144699, 45.526257],\n            [9.140203, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140203, 45.530754],\n            [9.140203, 45.535251],\n            [9.144699, 45.535251],\n            [9.144699, 45.530754],\n            [9.140203, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.440822],\n            [9.144699, 45.445319],\n            [9.149196, 45.445319],\n            [9.149196, 45.440822],\n            [9.144699, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.445319],\n            [9.144699, 45.449815],\n            [9.149196, 45.449815],\n            [9.149196, 45.445319],\n            [9.144699, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.449815],\n            [9.144699, 45.454312],\n            [9.149196, 45.454312],\n            [9.149196, 45.449815],\n            [9.144699, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.454312],\n            [9.144699, 45.458808],\n            [9.149196, 45.458808],\n            [9.149196, 45.454312],\n            [9.144699, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.458808],\n            [9.144699, 45.463305],\n            [9.149196, 45.463305],\n            [9.149196, 45.458808],\n            [9.144699, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.463305],\n            [9.144699, 45.467802],\n            [9.149196, 45.467802],\n            [9.149196, 45.463305],\n            [9.144699, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.467802],\n            [9.144699, 45.472298],\n            [9.149196, 45.472298],\n            [9.149196, 45.467802],\n            [9.144699, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.472298],\n            [9.144699, 45.476795],\n            [9.149196, 45.476795],\n            [9.149196, 45.472298],\n            [9.144699, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.476795],\n            [9.144699, 45.481291],\n            [9.149196, 45.481291],\n            [9.149196, 45.476795],\n            [9.144699, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.481291],\n            [9.144699, 45.485788],\n            [9.149196, 45.485788],\n            [9.149196, 45.481291],\n            [9.144699, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.485788],\n            [9.144699, 45.490285],\n            [9.149196, 45.490285],\n            [9.149196, 45.485788],\n            [9.144699, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.490285],\n            [9.144699, 45.494781],\n            [9.149196, 45.494781],\n            [9.149196, 45.490285],\n            [9.144699, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.494781],\n            [9.144699, 45.499278],\n            [9.149196, 45.499278],\n            [9.149196, 45.494781],\n            [9.144699, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.499278],\n            [9.144699, 45.503774],\n            [9.149196, 45.503774],\n            [9.149196, 45.499278],\n            [9.144699, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.503774],\n            [9.144699, 45.508271],\n            [9.149196, 45.508271],\n            [9.149196, 45.503774],\n            [9.144699, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.508271],\n            [9.144699, 45.512768],\n            [9.149196, 45.512768],\n            [9.149196, 45.508271],\n            [9.144699, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.512768],\n            [9.144699, 45.517264],\n            [9.149196, 45.517264],\n            [9.149196, 45.512768],\n            [9.144699, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.517264],\n            [9.144699, 45.521761],\n            [9.149196, 45.521761],\n            [9.149196, 45.517264],\n            [9.144699, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.521761],\n            [9.144699, 45.526257],\n            [9.149196, 45.526257],\n            [9.149196, 45.521761],\n            [9.144699, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.526257],\n            [9.144699, 45.530754],\n            [9.149196, 45.530754],\n            [9.149196, 45.526257],\n            [9.144699, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.144699, 45.530754],\n            [9.144699, 45.535251],\n            [9.149196, 45.535251],\n            [9.149196, 45.530754],\n            [9.144699, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.440822],\n            [9.149196, 45.445319],\n            [9.153693, 45.445319],\n            [9.153693, 45.440822],\n            [9.149196, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.445319],\n            [9.149196, 45.449815],\n            [9.153693, 45.449815],\n            [9.153693, 45.445319],\n            [9.149196, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.449815],\n            [9.149196, 45.454312],\n            [9.153693, 45.454312],\n            [9.153693, 45.449815],\n            [9.149196, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.454312],\n            [9.149196, 45.458808],\n            [9.153693, 45.458808],\n            [9.153693, 45.454312],\n            [9.149196, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.458808],\n            [9.149196, 45.463305],\n            [9.153693, 45.463305],\n            [9.153693, 45.458808],\n            [9.149196, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.463305],\n            [9.149196, 45.467802],\n            [9.153693, 45.467802],\n            [9.153693, 45.463305],\n            [9.149196, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 16,\n        \"stroke\": \"#e5f3ff\",\n        \"fill\": \"#e5f3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.467802],\n            [9.149196, 45.472298],\n            [9.153693, 45.472298],\n            [9.153693, 45.467802],\n            [9.149196, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 16,\n        \"stroke\": \"#e5f3ff\",\n        \"fill\": \"#e5f3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.472298],\n            [9.149196, 45.476795],\n            [9.153693, 45.476795],\n            [9.153693, 45.472298],\n            [9.149196, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.476795],\n            [9.149196, 45.481291],\n            [9.153693, 45.481291],\n            [9.153693, 45.476795],\n            [9.149196, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.481291],\n            [9.149196, 45.485788],\n            [9.153693, 45.485788],\n            [9.153693, 45.481291],\n            [9.149196, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.485788],\n            [9.149196, 45.490285],\n            [9.153693, 45.490285],\n            [9.153693, 45.485788],\n            [9.149196, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.490285],\n            [9.149196, 45.494781],\n            [9.153693, 45.494781],\n            [9.153693, 45.490285],\n            [9.149196, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.494781],\n            [9.149196, 45.499278],\n            [9.153693, 45.499278],\n            [9.153693, 45.494781],\n            [9.149196, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.499278],\n            [9.149196, 45.503774],\n            [9.153693, 45.503774],\n            [9.153693, 45.499278],\n            [9.149196, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.503774],\n            [9.149196, 45.508271],\n            [9.153693, 45.508271],\n            [9.153693, 45.503774],\n            [9.149196, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.508271],\n            [9.149196, 45.512768],\n            [9.153693, 45.512768],\n            [9.153693, 45.508271],\n            [9.149196, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#52acff\",\n        \"fill\": \"#52acff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.512768],\n            [9.149196, 45.517264],\n            [9.153693, 45.517264],\n            [9.153693, 45.512768],\n            [9.149196, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.517264],\n            [9.149196, 45.521761],\n            [9.153693, 45.521761],\n            [9.153693, 45.517264],\n            [9.149196, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.521761],\n            [9.149196, 45.526257],\n            [9.153693, 45.526257],\n            [9.153693, 45.521761],\n            [9.149196, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.526257],\n            [9.149196, 45.530754],\n            [9.153693, 45.530754],\n            [9.153693, 45.526257],\n            [9.149196, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.149196, 45.530754],\n            [9.149196, 45.535251],\n            [9.153693, 45.535251],\n            [9.153693, 45.530754],\n            [9.149196, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.440822],\n            [9.153693, 45.445319],\n            [9.158189, 45.445319],\n            [9.158189, 45.440822],\n            [9.153693, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.445319],\n            [9.153693, 45.449815],\n            [9.158189, 45.449815],\n            [9.158189, 45.445319],\n            [9.153693, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.449815],\n            [9.153693, 45.454312],\n            [9.158189, 45.454312],\n            [9.158189, 45.449815],\n            [9.153693, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.454312],\n            [9.153693, 45.458808],\n            [9.158189, 45.458808],\n            [9.158189, 45.454312],\n            [9.153693, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.458808],\n            [9.153693, 45.463305],\n            [9.158189, 45.463305],\n            [9.158189, 45.458808],\n            [9.153693, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.463305],\n            [9.153693, 45.467802],\n            [9.158189, 45.467802],\n            [9.158189, 45.463305],\n            [9.153693, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 14,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.467802],\n            [9.153693, 45.472298],\n            [9.158189, 45.472298],\n            [9.158189, 45.467802],\n            [9.153693, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 15,\n        \"stroke\": \"#f0f8ff\",\n        \"fill\": \"#f0f8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.472298],\n            [9.153693, 45.476795],\n            [9.158189, 45.476795],\n            [9.158189, 45.472298],\n            [9.153693, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.476795],\n            [9.153693, 45.481291],\n            [9.158189, 45.481291],\n            [9.158189, 45.476795],\n            [9.153693, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.481291],\n            [9.153693, 45.485788],\n            [9.158189, 45.485788],\n            [9.158189, 45.481291],\n            [9.153693, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.485788],\n            [9.153693, 45.490285],\n            [9.158189, 45.490285],\n            [9.158189, 45.485788],\n            [9.153693, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.490285],\n            [9.153693, 45.494781],\n            [9.158189, 45.494781],\n            [9.158189, 45.490285],\n            [9.153693, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.494781],\n            [9.153693, 45.499278],\n            [9.158189, 45.499278],\n            [9.158189, 45.494781],\n            [9.153693, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.499278],\n            [9.153693, 45.503774],\n            [9.158189, 45.503774],\n            [9.158189, 45.499278],\n            [9.153693, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.503774],\n            [9.153693, 45.508271],\n            [9.158189, 45.508271],\n            [9.158189, 45.503774],\n            [9.153693, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.508271],\n            [9.153693, 45.512768],\n            [9.158189, 45.512768],\n            [9.158189, 45.508271],\n            [9.153693, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#52acff\",\n        \"fill\": \"#52acff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.512768],\n            [9.153693, 45.517264],\n            [9.158189, 45.517264],\n            [9.158189, 45.512768],\n            [9.153693, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.517264],\n            [9.153693, 45.521761],\n            [9.158189, 45.521761],\n            [9.158189, 45.517264],\n            [9.153693, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.521761],\n            [9.153693, 45.526257],\n            [9.158189, 45.526257],\n            [9.158189, 45.521761],\n            [9.153693, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.526257],\n            [9.153693, 45.530754],\n            [9.158189, 45.530754],\n            [9.158189, 45.526257],\n            [9.153693, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.153693, 45.530754],\n            [9.153693, 45.535251],\n            [9.158189, 45.535251],\n            [9.158189, 45.530754],\n            [9.153693, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.440822],\n            [9.158189, 45.445319],\n            [9.162686, 45.445319],\n            [9.162686, 45.440822],\n            [9.158189, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.445319],\n            [9.158189, 45.449815],\n            [9.162686, 45.449815],\n            [9.162686, 45.445319],\n            [9.158189, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.449815],\n            [9.158189, 45.454312],\n            [9.162686, 45.454312],\n            [9.162686, 45.449815],\n            [9.158189, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.454312],\n            [9.158189, 45.458808],\n            [9.162686, 45.458808],\n            [9.162686, 45.454312],\n            [9.158189, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.458808],\n            [9.158189, 45.463305],\n            [9.162686, 45.463305],\n            [9.162686, 45.458808],\n            [9.158189, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 17,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.463305],\n            [9.158189, 45.467802],\n            [9.162686, 45.467802],\n            [9.162686, 45.463305],\n            [9.158189, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 16,\n        \"stroke\": \"#e5f3ff\",\n        \"fill\": \"#e5f3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.467802],\n            [9.158189, 45.472298],\n            [9.162686, 45.472298],\n            [9.162686, 45.467802],\n            [9.158189, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 16,\n        \"stroke\": \"#e5f3ff\",\n        \"fill\": \"#e5f3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.472298],\n            [9.158189, 45.476795],\n            [9.162686, 45.476795],\n            [9.162686, 45.472298],\n            [9.158189, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.476795],\n            [9.158189, 45.481291],\n            [9.162686, 45.481291],\n            [9.162686, 45.476795],\n            [9.158189, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.481291],\n            [9.158189, 45.485788],\n            [9.162686, 45.485788],\n            [9.162686, 45.481291],\n            [9.158189, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.485788],\n            [9.158189, 45.490285],\n            [9.162686, 45.490285],\n            [9.162686, 45.485788],\n            [9.158189, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.490285],\n            [9.158189, 45.494781],\n            [9.162686, 45.494781],\n            [9.162686, 45.490285],\n            [9.158189, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.494781],\n            [9.158189, 45.499278],\n            [9.162686, 45.499278],\n            [9.162686, 45.494781],\n            [9.158189, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.499278],\n            [9.158189, 45.503774],\n            [9.162686, 45.503774],\n            [9.162686, 45.499278],\n            [9.158189, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.503774],\n            [9.158189, 45.508271],\n            [9.162686, 45.508271],\n            [9.162686, 45.503774],\n            [9.158189, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.508271],\n            [9.158189, 45.512768],\n            [9.162686, 45.512768],\n            [9.162686, 45.508271],\n            [9.158189, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#52acff\",\n        \"fill\": \"#52acff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.512768],\n            [9.158189, 45.517264],\n            [9.162686, 45.517264],\n            [9.162686, 45.512768],\n            [9.158189, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.517264],\n            [9.158189, 45.521761],\n            [9.162686, 45.521761],\n            [9.162686, 45.517264],\n            [9.158189, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.521761],\n            [9.158189, 45.526257],\n            [9.162686, 45.526257],\n            [9.162686, 45.521761],\n            [9.158189, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.526257],\n            [9.158189, 45.530754],\n            [9.162686, 45.530754],\n            [9.162686, 45.526257],\n            [9.158189, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.158189, 45.530754],\n            [9.158189, 45.535251],\n            [9.162686, 45.535251],\n            [9.162686, 45.530754],\n            [9.158189, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.440822],\n            [9.162686, 45.445319],\n            [9.167182, 45.445319],\n            [9.167182, 45.440822],\n            [9.162686, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.445319],\n            [9.162686, 45.449815],\n            [9.167182, 45.449815],\n            [9.167182, 45.445319],\n            [9.162686, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.449815],\n            [9.162686, 45.454312],\n            [9.167182, 45.454312],\n            [9.167182, 45.449815],\n            [9.162686, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.454312],\n            [9.162686, 45.458808],\n            [9.167182, 45.458808],\n            [9.167182, 45.454312],\n            [9.162686, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.458808],\n            [9.162686, 45.463305],\n            [9.167182, 45.463305],\n            [9.167182, 45.458808],\n            [9.162686, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.463305],\n            [9.162686, 45.467802],\n            [9.167182, 45.467802],\n            [9.167182, 45.463305],\n            [9.162686, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.467802],\n            [9.162686, 45.472298],\n            [9.167182, 45.472298],\n            [9.167182, 45.467802],\n            [9.162686, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.472298],\n            [9.162686, 45.476795],\n            [9.167182, 45.476795],\n            [9.167182, 45.472298],\n            [9.162686, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.476795],\n            [9.162686, 45.481291],\n            [9.167182, 45.481291],\n            [9.167182, 45.476795],\n            [9.162686, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.481291],\n            [9.162686, 45.485788],\n            [9.167182, 45.485788],\n            [9.167182, 45.481291],\n            [9.162686, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.485788],\n            [9.162686, 45.490285],\n            [9.167182, 45.490285],\n            [9.167182, 45.485788],\n            [9.162686, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.490285],\n            [9.162686, 45.494781],\n            [9.167182, 45.494781],\n            [9.167182, 45.490285],\n            [9.162686, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.494781],\n            [9.162686, 45.499278],\n            [9.167182, 45.499278],\n            [9.167182, 45.494781],\n            [9.162686, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.499278],\n            [9.162686, 45.503774],\n            [9.167182, 45.503774],\n            [9.167182, 45.499278],\n            [9.162686, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.503774],\n            [9.162686, 45.508271],\n            [9.167182, 45.508271],\n            [9.167182, 45.503774],\n            [9.162686, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.508271],\n            [9.162686, 45.512768],\n            [9.167182, 45.512768],\n            [9.167182, 45.508271],\n            [9.162686, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#52acff\",\n        \"fill\": \"#52acff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.512768],\n            [9.162686, 45.517264],\n            [9.167182, 45.517264],\n            [9.167182, 45.512768],\n            [9.162686, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.517264],\n            [9.162686, 45.521761],\n            [9.167182, 45.521761],\n            [9.167182, 45.517264],\n            [9.162686, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.521761],\n            [9.162686, 45.526257],\n            [9.167182, 45.526257],\n            [9.167182, 45.521761],\n            [9.162686, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.526257],\n            [9.162686, 45.530754],\n            [9.167182, 45.530754],\n            [9.167182, 45.526257],\n            [9.162686, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.162686, 45.530754],\n            [9.162686, 45.535251],\n            [9.167182, 45.535251],\n            [9.167182, 45.530754],\n            [9.162686, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.440822],\n            [9.167182, 45.445319],\n            [9.171679, 45.445319],\n            [9.171679, 45.440822],\n            [9.167182, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.445319],\n            [9.167182, 45.449815],\n            [9.171679, 45.449815],\n            [9.171679, 45.445319],\n            [9.167182, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.449815],\n            [9.167182, 45.454312],\n            [9.171679, 45.454312],\n            [9.171679, 45.449815],\n            [9.167182, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.454312],\n            [9.167182, 45.458808],\n            [9.171679, 45.458808],\n            [9.171679, 45.454312],\n            [9.167182, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.458808],\n            [9.167182, 45.463305],\n            [9.171679, 45.463305],\n            [9.171679, 45.458808],\n            [9.167182, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.463305],\n            [9.167182, 45.467802],\n            [9.171679, 45.467802],\n            [9.171679, 45.463305],\n            [9.167182, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.467802],\n            [9.167182, 45.472298],\n            [9.171679, 45.472298],\n            [9.171679, 45.467802],\n            [9.167182, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.472298],\n            [9.167182, 45.476795],\n            [9.171679, 45.476795],\n            [9.171679, 45.472298],\n            [9.167182, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.476795],\n            [9.167182, 45.481291],\n            [9.171679, 45.481291],\n            [9.171679, 45.476795],\n            [9.167182, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.481291],\n            [9.167182, 45.485788],\n            [9.171679, 45.485788],\n            [9.171679, 45.481291],\n            [9.167182, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.485788],\n            [9.167182, 45.490285],\n            [9.171679, 45.490285],\n            [9.171679, 45.485788],\n            [9.167182, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.490285],\n            [9.167182, 45.494781],\n            [9.171679, 45.494781],\n            [9.171679, 45.490285],\n            [9.167182, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.494781],\n            [9.167182, 45.499278],\n            [9.171679, 45.499278],\n            [9.171679, 45.494781],\n            [9.167182, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.499278],\n            [9.167182, 45.503774],\n            [9.171679, 45.503774],\n            [9.171679, 45.499278],\n            [9.167182, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.503774],\n            [9.167182, 45.508271],\n            [9.171679, 45.508271],\n            [9.171679, 45.503774],\n            [9.167182, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.508271],\n            [9.167182, 45.512768],\n            [9.171679, 45.512768],\n            [9.171679, 45.508271],\n            [9.167182, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.512768],\n            [9.167182, 45.517264],\n            [9.171679, 45.517264],\n            [9.171679, 45.512768],\n            [9.167182, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.517264],\n            [9.167182, 45.521761],\n            [9.171679, 45.521761],\n            [9.171679, 45.517264],\n            [9.167182, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.521761],\n            [9.167182, 45.526257],\n            [9.171679, 45.526257],\n            [9.171679, 45.521761],\n            [9.167182, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.526257],\n            [9.167182, 45.530754],\n            [9.171679, 45.530754],\n            [9.171679, 45.526257],\n            [9.167182, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.167182, 45.530754],\n            [9.167182, 45.535251],\n            [9.171679, 45.535251],\n            [9.171679, 45.530754],\n            [9.167182, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.440822],\n            [9.171679, 45.445319],\n            [9.176176, 45.445319],\n            [9.176176, 45.440822],\n            [9.171679, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.445319],\n            [9.171679, 45.449815],\n            [9.176176, 45.449815],\n            [9.176176, 45.445319],\n            [9.171679, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.449815],\n            [9.171679, 45.454312],\n            [9.176176, 45.454312],\n            [9.176176, 45.449815],\n            [9.171679, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.454312],\n            [9.171679, 45.458808],\n            [9.176176, 45.458808],\n            [9.176176, 45.454312],\n            [9.171679, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.458808],\n            [9.171679, 45.463305],\n            [9.176176, 45.463305],\n            [9.176176, 45.458808],\n            [9.171679, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.463305],\n            [9.171679, 45.467802],\n            [9.176176, 45.467802],\n            [9.176176, 45.463305],\n            [9.171679, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.467802],\n            [9.171679, 45.472298],\n            [9.176176, 45.472298],\n            [9.176176, 45.467802],\n            [9.171679, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.472298],\n            [9.171679, 45.476795],\n            [9.176176, 45.476795],\n            [9.176176, 45.472298],\n            [9.171679, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.476795],\n            [9.171679, 45.481291],\n            [9.176176, 45.481291],\n            [9.176176, 45.476795],\n            [9.171679, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.481291],\n            [9.171679, 45.485788],\n            [9.176176, 45.485788],\n            [9.176176, 45.481291],\n            [9.171679, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.485788],\n            [9.171679, 45.490285],\n            [9.176176, 45.490285],\n            [9.176176, 45.485788],\n            [9.171679, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.490285],\n            [9.171679, 45.494781],\n            [9.176176, 45.494781],\n            [9.176176, 45.490285],\n            [9.171679, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.494781],\n            [9.171679, 45.499278],\n            [9.176176, 45.499278],\n            [9.176176, 45.494781],\n            [9.171679, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.499278],\n            [9.171679, 45.503774],\n            [9.176176, 45.503774],\n            [9.176176, 45.499278],\n            [9.171679, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.503774],\n            [9.171679, 45.508271],\n            [9.176176, 45.508271],\n            [9.176176, 45.503774],\n            [9.171679, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.508271],\n            [9.171679, 45.512768],\n            [9.176176, 45.512768],\n            [9.176176, 45.508271],\n            [9.171679, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.512768],\n            [9.171679, 45.517264],\n            [9.176176, 45.517264],\n            [9.176176, 45.512768],\n            [9.171679, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.517264],\n            [9.171679, 45.521761],\n            [9.176176, 45.521761],\n            [9.176176, 45.517264],\n            [9.171679, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.521761],\n            [9.171679, 45.526257],\n            [9.176176, 45.526257],\n            [9.176176, 45.521761],\n            [9.171679, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.526257],\n            [9.171679, 45.530754],\n            [9.176176, 45.530754],\n            [9.176176, 45.526257],\n            [9.171679, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#0068c7\",\n        \"fill\": \"#0068c7\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.171679, 45.530754],\n            [9.171679, 45.535251],\n            [9.176176, 45.535251],\n            [9.176176, 45.530754],\n            [9.171679, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.440822],\n            [9.176176, 45.445319],\n            [9.180672, 45.445319],\n            [9.180672, 45.440822],\n            [9.176176, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.445319],\n            [9.176176, 45.449815],\n            [9.180672, 45.449815],\n            [9.180672, 45.445319],\n            [9.176176, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.449815],\n            [9.176176, 45.454312],\n            [9.180672, 45.454312],\n            [9.180672, 45.449815],\n            [9.176176, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.454312],\n            [9.176176, 45.458808],\n            [9.180672, 45.458808],\n            [9.180672, 45.454312],\n            [9.176176, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.458808],\n            [9.176176, 45.463305],\n            [9.180672, 45.463305],\n            [9.180672, 45.458808],\n            [9.176176, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.463305],\n            [9.176176, 45.467802],\n            [9.180672, 45.467802],\n            [9.180672, 45.463305],\n            [9.176176, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.467802],\n            [9.176176, 45.472298],\n            [9.180672, 45.472298],\n            [9.180672, 45.467802],\n            [9.176176, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.472298],\n            [9.176176, 45.476795],\n            [9.180672, 45.476795],\n            [9.180672, 45.472298],\n            [9.176176, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.476795],\n            [9.176176, 45.481291],\n            [9.180672, 45.481291],\n            [9.180672, 45.476795],\n            [9.176176, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.481291],\n            [9.176176, 45.485788],\n            [9.180672, 45.485788],\n            [9.180672, 45.481291],\n            [9.176176, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.485788],\n            [9.176176, 45.490285],\n            [9.180672, 45.490285],\n            [9.180672, 45.485788],\n            [9.176176, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.490285],\n            [9.176176, 45.494781],\n            [9.180672, 45.494781],\n            [9.180672, 45.490285],\n            [9.176176, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.494781],\n            [9.176176, 45.499278],\n            [9.180672, 45.499278],\n            [9.180672, 45.494781],\n            [9.176176, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.499278],\n            [9.176176, 45.503774],\n            [9.180672, 45.503774],\n            [9.180672, 45.499278],\n            [9.176176, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.503774],\n            [9.176176, 45.508271],\n            [9.180672, 45.508271],\n            [9.180672, 45.503774],\n            [9.176176, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.508271],\n            [9.176176, 45.512768],\n            [9.180672, 45.512768],\n            [9.180672, 45.508271],\n            [9.176176, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.512768],\n            [9.176176, 45.517264],\n            [9.180672, 45.517264],\n            [9.180672, 45.512768],\n            [9.176176, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.517264],\n            [9.176176, 45.521761],\n            [9.180672, 45.521761],\n            [9.180672, 45.517264],\n            [9.176176, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.521761],\n            [9.176176, 45.526257],\n            [9.180672, 45.526257],\n            [9.180672, 45.521761],\n            [9.176176, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#0068c7\",\n        \"fill\": \"#0068c7\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.526257],\n            [9.176176, 45.530754],\n            [9.180672, 45.530754],\n            [9.180672, 45.526257],\n            [9.176176, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 39,\n        \"stroke\": \"#005aad\",\n        \"fill\": \"#005aad\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.176176, 45.530754],\n            [9.176176, 45.535251],\n            [9.180672, 45.535251],\n            [9.180672, 45.530754],\n            [9.176176, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.440822],\n            [9.180672, 45.445319],\n            [9.185169, 45.445319],\n            [9.185169, 45.440822],\n            [9.180672, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.445319],\n            [9.180672, 45.449815],\n            [9.185169, 45.449815],\n            [9.185169, 45.445319],\n            [9.180672, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.449815],\n            [9.180672, 45.454312],\n            [9.185169, 45.454312],\n            [9.185169, 45.449815],\n            [9.180672, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.454312],\n            [9.180672, 45.458808],\n            [9.185169, 45.458808],\n            [9.185169, 45.454312],\n            [9.180672, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.458808],\n            [9.180672, 45.463305],\n            [9.185169, 45.463305],\n            [9.185169, 45.458808],\n            [9.180672, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.463305],\n            [9.180672, 45.467802],\n            [9.185169, 45.467802],\n            [9.185169, 45.463305],\n            [9.180672, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.467802],\n            [9.180672, 45.472298],\n            [9.185169, 45.472298],\n            [9.185169, 45.467802],\n            [9.180672, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.472298],\n            [9.180672, 45.476795],\n            [9.185169, 45.476795],\n            [9.185169, 45.472298],\n            [9.180672, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.476795],\n            [9.180672, 45.481291],\n            [9.185169, 45.481291],\n            [9.185169, 45.476795],\n            [9.180672, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.481291],\n            [9.180672, 45.485788],\n            [9.185169, 45.485788],\n            [9.185169, 45.481291],\n            [9.180672, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.485788],\n            [9.180672, 45.490285],\n            [9.185169, 45.490285],\n            [9.185169, 45.485788],\n            [9.180672, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.490285],\n            [9.180672, 45.494781],\n            [9.185169, 45.494781],\n            [9.185169, 45.490285],\n            [9.180672, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.494781],\n            [9.180672, 45.499278],\n            [9.185169, 45.499278],\n            [9.185169, 45.494781],\n            [9.180672, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.499278],\n            [9.180672, 45.503774],\n            [9.185169, 45.503774],\n            [9.185169, 45.499278],\n            [9.180672, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.503774],\n            [9.180672, 45.508271],\n            [9.185169, 45.508271],\n            [9.185169, 45.503774],\n            [9.180672, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#52acff\",\n        \"fill\": \"#52acff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.508271],\n            [9.180672, 45.512768],\n            [9.185169, 45.512768],\n            [9.185169, 45.508271],\n            [9.180672, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.512768],\n            [9.180672, 45.517264],\n            [9.185169, 45.517264],\n            [9.185169, 45.512768],\n            [9.180672, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.517264],\n            [9.180672, 45.521761],\n            [9.185169, 45.521761],\n            [9.185169, 45.517264],\n            [9.180672, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.521761],\n            [9.180672, 45.526257],\n            [9.185169, 45.526257],\n            [9.185169, 45.521761],\n            [9.180672, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 39,\n        \"stroke\": \"#005aad\",\n        \"fill\": \"#005aad\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.526257],\n            [9.180672, 45.530754],\n            [9.185169, 45.530754],\n            [9.185169, 45.526257],\n            [9.180672, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 42,\n        \"stroke\": \"#004585\",\n        \"fill\": \"#004585\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.180672, 45.530754],\n            [9.180672, 45.535251],\n            [9.185169, 45.535251],\n            [9.185169, 45.530754],\n            [9.180672, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.440822],\n            [9.185169, 45.445319],\n            [9.189665, 45.445319],\n            [9.189665, 45.440822],\n            [9.185169, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.445319],\n            [9.185169, 45.449815],\n            [9.189665, 45.449815],\n            [9.189665, 45.445319],\n            [9.185169, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.449815],\n            [9.185169, 45.454312],\n            [9.189665, 45.454312],\n            [9.189665, 45.449815],\n            [9.185169, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.454312],\n            [9.185169, 45.458808],\n            [9.189665, 45.458808],\n            [9.189665, 45.454312],\n            [9.185169, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.458808],\n            [9.185169, 45.463305],\n            [9.189665, 45.463305],\n            [9.189665, 45.458808],\n            [9.185169, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.463305],\n            [9.185169, 45.467802],\n            [9.189665, 45.467802],\n            [9.189665, 45.463305],\n            [9.185169, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.467802],\n            [9.185169, 45.472298],\n            [9.189665, 45.472298],\n            [9.189665, 45.467802],\n            [9.185169, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.472298],\n            [9.185169, 45.476795],\n            [9.189665, 45.476795],\n            [9.189665, 45.472298],\n            [9.185169, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.476795],\n            [9.185169, 45.481291],\n            [9.189665, 45.481291],\n            [9.189665, 45.476795],\n            [9.185169, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.481291],\n            [9.185169, 45.485788],\n            [9.189665, 45.485788],\n            [9.189665, 45.481291],\n            [9.185169, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.485788],\n            [9.185169, 45.490285],\n            [9.189665, 45.490285],\n            [9.189665, 45.485788],\n            [9.185169, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.490285],\n            [9.185169, 45.494781],\n            [9.189665, 45.494781],\n            [9.189665, 45.490285],\n            [9.185169, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.494781],\n            [9.185169, 45.499278],\n            [9.189665, 45.499278],\n            [9.189665, 45.494781],\n            [9.185169, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.499278],\n            [9.185169, 45.503774],\n            [9.189665, 45.503774],\n            [9.189665, 45.499278],\n            [9.185169, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.503774],\n            [9.185169, 45.508271],\n            [9.189665, 45.508271],\n            [9.189665, 45.503774],\n            [9.185169, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#52acff\",\n        \"fill\": \"#52acff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.508271],\n            [9.185169, 45.512768],\n            [9.189665, 45.512768],\n            [9.189665, 45.508271],\n            [9.185169, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.512768],\n            [9.185169, 45.517264],\n            [9.189665, 45.517264],\n            [9.189665, 45.512768],\n            [9.185169, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.517264],\n            [9.185169, 45.521761],\n            [9.189665, 45.521761],\n            [9.189665, 45.517264],\n            [9.185169, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.521761],\n            [9.185169, 45.526257],\n            [9.189665, 45.526257],\n            [9.189665, 45.521761],\n            [9.185169, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 40,\n        \"stroke\": \"#0055a3\",\n        \"fill\": \"#0055a3\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.526257],\n            [9.185169, 45.530754],\n            [9.189665, 45.530754],\n            [9.189665, 45.526257],\n            [9.185169, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 46,\n        \"stroke\": \"#002b52\",\n        \"fill\": \"#002b52\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.185169, 45.530754],\n            [9.185169, 45.535251],\n            [9.189665, 45.535251],\n            [9.189665, 45.530754],\n            [9.185169, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.440822],\n            [9.189665, 45.445319],\n            [9.194162, 45.445319],\n            [9.194162, 45.440822],\n            [9.189665, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.445319],\n            [9.189665, 45.449815],\n            [9.194162, 45.449815],\n            [9.194162, 45.445319],\n            [9.189665, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.449815],\n            [9.189665, 45.454312],\n            [9.194162, 45.454312],\n            [9.194162, 45.449815],\n            [9.189665, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.454312],\n            [9.189665, 45.458808],\n            [9.194162, 45.458808],\n            [9.194162, 45.454312],\n            [9.189665, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.458808],\n            [9.189665, 45.463305],\n            [9.194162, 45.463305],\n            [9.194162, 45.458808],\n            [9.189665, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.463305],\n            [9.189665, 45.467802],\n            [9.194162, 45.467802],\n            [9.194162, 45.463305],\n            [9.189665, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.467802],\n            [9.189665, 45.472298],\n            [9.194162, 45.472298],\n            [9.194162, 45.467802],\n            [9.189665, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.472298],\n            [9.189665, 45.476795],\n            [9.194162, 45.476795],\n            [9.194162, 45.472298],\n            [9.189665, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.476795],\n            [9.189665, 45.481291],\n            [9.194162, 45.481291],\n            [9.194162, 45.476795],\n            [9.189665, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.481291],\n            [9.189665, 45.485788],\n            [9.194162, 45.485788],\n            [9.194162, 45.481291],\n            [9.189665, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.485788],\n            [9.189665, 45.490285],\n            [9.194162, 45.490285],\n            [9.194162, 45.485788],\n            [9.189665, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.490285],\n            [9.189665, 45.494781],\n            [9.194162, 45.494781],\n            [9.194162, 45.490285],\n            [9.189665, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.494781],\n            [9.189665, 45.499278],\n            [9.194162, 45.499278],\n            [9.194162, 45.494781],\n            [9.189665, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.499278],\n            [9.189665, 45.503774],\n            [9.194162, 45.503774],\n            [9.194162, 45.499278],\n            [9.189665, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.503774],\n            [9.189665, 45.508271],\n            [9.194162, 45.508271],\n            [9.194162, 45.503774],\n            [9.189665, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.508271],\n            [9.189665, 45.512768],\n            [9.194162, 45.512768],\n            [9.194162, 45.508271],\n            [9.189665, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.512768],\n            [9.189665, 45.517264],\n            [9.194162, 45.517264],\n            [9.194162, 45.512768],\n            [9.189665, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.517264],\n            [9.189665, 45.521761],\n            [9.194162, 45.521761],\n            [9.194162, 45.517264],\n            [9.189665, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#0068c7\",\n        \"fill\": \"#0068c7\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.521761],\n            [9.189665, 45.526257],\n            [9.194162, 45.526257],\n            [9.194162, 45.521761],\n            [9.189665, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 42,\n        \"stroke\": \"#004585\",\n        \"fill\": \"#004585\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.526257],\n            [9.189665, 45.530754],\n            [9.194162, 45.530754],\n            [9.194162, 45.526257],\n            [9.189665, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 50,\n        \"stroke\": \"#000d1a\",\n        \"fill\": \"#000d1a\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.189665, 45.530754],\n            [9.189665, 45.535251],\n            [9.194162, 45.535251],\n            [9.194162, 45.530754],\n            [9.189665, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.440822],\n            [9.194162, 45.445319],\n            [9.198659, 45.445319],\n            [9.198659, 45.440822],\n            [9.194162, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.445319],\n            [9.194162, 45.449815],\n            [9.198659, 45.449815],\n            [9.198659, 45.445319],\n            [9.194162, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.449815],\n            [9.194162, 45.454312],\n            [9.198659, 45.454312],\n            [9.198659, 45.449815],\n            [9.194162, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.454312],\n            [9.194162, 45.458808],\n            [9.198659, 45.458808],\n            [9.198659, 45.454312],\n            [9.194162, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.458808],\n            [9.194162, 45.463305],\n            [9.198659, 45.463305],\n            [9.198659, 45.458808],\n            [9.194162, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.463305],\n            [9.194162, 45.467802],\n            [9.198659, 45.467802],\n            [9.198659, 45.463305],\n            [9.194162, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.467802],\n            [9.194162, 45.472298],\n            [9.198659, 45.472298],\n            [9.198659, 45.467802],\n            [9.194162, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.472298],\n            [9.194162, 45.476795],\n            [9.198659, 45.476795],\n            [9.198659, 45.472298],\n            [9.194162, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.476795],\n            [9.194162, 45.481291],\n            [9.198659, 45.481291],\n            [9.198659, 45.476795],\n            [9.194162, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.481291],\n            [9.194162, 45.485788],\n            [9.198659, 45.485788],\n            [9.198659, 45.481291],\n            [9.194162, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.485788],\n            [9.194162, 45.490285],\n            [9.198659, 45.490285],\n            [9.198659, 45.485788],\n            [9.194162, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.490285],\n            [9.194162, 45.494781],\n            [9.198659, 45.494781],\n            [9.198659, 45.490285],\n            [9.194162, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.494781],\n            [9.194162, 45.499278],\n            [9.198659, 45.499278],\n            [9.198659, 45.494781],\n            [9.194162, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.499278],\n            [9.194162, 45.503774],\n            [9.198659, 45.503774],\n            [9.198659, 45.499278],\n            [9.194162, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.503774],\n            [9.194162, 45.508271],\n            [9.198659, 45.508271],\n            [9.198659, 45.503774],\n            [9.194162, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.508271],\n            [9.194162, 45.512768],\n            [9.198659, 45.512768],\n            [9.198659, 45.508271],\n            [9.194162, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.512768],\n            [9.194162, 45.517264],\n            [9.198659, 45.517264],\n            [9.198659, 45.512768],\n            [9.194162, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.517264],\n            [9.194162, 45.521761],\n            [9.198659, 45.521761],\n            [9.198659, 45.517264],\n            [9.194162, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#0068c7\",\n        \"fill\": \"#0068c7\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.521761],\n            [9.194162, 45.526257],\n            [9.198659, 45.526257],\n            [9.198659, 45.521761],\n            [9.194162, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 42,\n        \"stroke\": \"#004585\",\n        \"fill\": \"#004585\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.526257],\n            [9.194162, 45.530754],\n            [9.198659, 45.530754],\n            [9.198659, 45.526257],\n            [9.194162, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 52,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.194162, 45.530754],\n            [9.194162, 45.535251],\n            [9.198659, 45.535251],\n            [9.198659, 45.530754],\n            [9.194162, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.440822],\n            [9.198659, 45.445319],\n            [9.203155, 45.445319],\n            [9.203155, 45.440822],\n            [9.198659, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.445319],\n            [9.198659, 45.449815],\n            [9.203155, 45.449815],\n            [9.203155, 45.445319],\n            [9.198659, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.449815],\n            [9.198659, 45.454312],\n            [9.203155, 45.454312],\n            [9.203155, 45.449815],\n            [9.198659, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.454312],\n            [9.198659, 45.458808],\n            [9.203155, 45.458808],\n            [9.203155, 45.454312],\n            [9.198659, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.458808],\n            [9.198659, 45.463305],\n            [9.203155, 45.463305],\n            [9.203155, 45.458808],\n            [9.198659, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.463305],\n            [9.198659, 45.467802],\n            [9.203155, 45.467802],\n            [9.203155, 45.463305],\n            [9.198659, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.467802],\n            [9.198659, 45.472298],\n            [9.203155, 45.472298],\n            [9.203155, 45.467802],\n            [9.198659, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.472298],\n            [9.198659, 45.476795],\n            [9.203155, 45.476795],\n            [9.203155, 45.472298],\n            [9.198659, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.476795],\n            [9.198659, 45.481291],\n            [9.203155, 45.481291],\n            [9.203155, 45.476795],\n            [9.198659, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.481291],\n            [9.198659, 45.485788],\n            [9.203155, 45.485788],\n            [9.203155, 45.481291],\n            [9.198659, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.485788],\n            [9.198659, 45.490285],\n            [9.203155, 45.490285],\n            [9.203155, 45.485788],\n            [9.198659, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.490285],\n            [9.198659, 45.494781],\n            [9.203155, 45.494781],\n            [9.203155, 45.490285],\n            [9.198659, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.494781],\n            [9.198659, 45.499278],\n            [9.203155, 45.499278],\n            [9.203155, 45.494781],\n            [9.198659, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.499278],\n            [9.198659, 45.503774],\n            [9.203155, 45.503774],\n            [9.203155, 45.499278],\n            [9.198659, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.503774],\n            [9.198659, 45.508271],\n            [9.203155, 45.508271],\n            [9.203155, 45.503774],\n            [9.198659, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.508271],\n            [9.198659, 45.512768],\n            [9.203155, 45.512768],\n            [9.203155, 45.508271],\n            [9.198659, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.512768],\n            [9.198659, 45.517264],\n            [9.203155, 45.517264],\n            [9.203155, 45.512768],\n            [9.198659, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.517264],\n            [9.198659, 45.521761],\n            [9.203155, 45.521761],\n            [9.203155, 45.517264],\n            [9.198659, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#0068c7\",\n        \"fill\": \"#0068c7\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.521761],\n            [9.198659, 45.526257],\n            [9.203155, 45.526257],\n            [9.203155, 45.521761],\n            [9.198659, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 42,\n        \"stroke\": \"#004585\",\n        \"fill\": \"#004585\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.526257],\n            [9.198659, 45.530754],\n            [9.203155, 45.530754],\n            [9.203155, 45.526257],\n            [9.198659, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 48,\n        \"stroke\": \"#001d38\",\n        \"fill\": \"#001d38\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.198659, 45.530754],\n            [9.198659, 45.535251],\n            [9.203155, 45.535251],\n            [9.203155, 45.530754],\n            [9.198659, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.440822],\n            [9.203155, 45.445319],\n            [9.207652, 45.445319],\n            [9.207652, 45.440822],\n            [9.203155, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.445319],\n            [9.203155, 45.449815],\n            [9.207652, 45.449815],\n            [9.207652, 45.445319],\n            [9.203155, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.449815],\n            [9.203155, 45.454312],\n            [9.207652, 45.454312],\n            [9.207652, 45.449815],\n            [9.203155, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.454312],\n            [9.203155, 45.458808],\n            [9.207652, 45.458808],\n            [9.207652, 45.454312],\n            [9.203155, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.458808],\n            [9.203155, 45.463305],\n            [9.207652, 45.463305],\n            [9.207652, 45.458808],\n            [9.203155, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.463305],\n            [9.203155, 45.467802],\n            [9.207652, 45.467802],\n            [9.207652, 45.463305],\n            [9.203155, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.467802],\n            [9.203155, 45.472298],\n            [9.207652, 45.472298],\n            [9.207652, 45.467802],\n            [9.203155, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.472298],\n            [9.203155, 45.476795],\n            [9.207652, 45.476795],\n            [9.207652, 45.472298],\n            [9.203155, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.476795],\n            [9.203155, 45.481291],\n            [9.207652, 45.481291],\n            [9.207652, 45.476795],\n            [9.203155, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.481291],\n            [9.203155, 45.485788],\n            [9.207652, 45.485788],\n            [9.207652, 45.481291],\n            [9.203155, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.485788],\n            [9.203155, 45.490285],\n            [9.207652, 45.490285],\n            [9.207652, 45.485788],\n            [9.203155, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.490285],\n            [9.203155, 45.494781],\n            [9.207652, 45.494781],\n            [9.207652, 45.490285],\n            [9.203155, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.494781],\n            [9.203155, 45.499278],\n            [9.207652, 45.499278],\n            [9.207652, 45.494781],\n            [9.203155, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.499278],\n            [9.203155, 45.503774],\n            [9.207652, 45.503774],\n            [9.207652, 45.499278],\n            [9.203155, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.503774],\n            [9.203155, 45.508271],\n            [9.207652, 45.508271],\n            [9.207652, 45.503774],\n            [9.203155, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.508271],\n            [9.203155, 45.512768],\n            [9.207652, 45.512768],\n            [9.207652, 45.508271],\n            [9.203155, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.512768],\n            [9.203155, 45.517264],\n            [9.207652, 45.517264],\n            [9.207652, 45.512768],\n            [9.203155, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.517264],\n            [9.203155, 45.521761],\n            [9.207652, 45.521761],\n            [9.207652, 45.517264],\n            [9.203155, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.521761],\n            [9.203155, 45.526257],\n            [9.207652, 45.526257],\n            [9.207652, 45.521761],\n            [9.203155, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 40,\n        \"stroke\": \"#0055a3\",\n        \"fill\": \"#0055a3\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.526257],\n            [9.203155, 45.530754],\n            [9.207652, 45.530754],\n            [9.207652, 45.526257],\n            [9.203155, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 44,\n        \"stroke\": \"#00386b\",\n        \"fill\": \"#00386b\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.203155, 45.530754],\n            [9.203155, 45.535251],\n            [9.207652, 45.535251],\n            [9.207652, 45.530754],\n            [9.203155, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.440822],\n            [9.207652, 45.445319],\n            [9.212148, 45.445319],\n            [9.212148, 45.440822],\n            [9.207652, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.445319],\n            [9.207652, 45.449815],\n            [9.212148, 45.449815],\n            [9.212148, 45.445319],\n            [9.207652, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.449815],\n            [9.207652, 45.454312],\n            [9.212148, 45.454312],\n            [9.212148, 45.449815],\n            [9.207652, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.454312],\n            [9.207652, 45.458808],\n            [9.212148, 45.458808],\n            [9.212148, 45.454312],\n            [9.207652, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.458808],\n            [9.207652, 45.463305],\n            [9.212148, 45.463305],\n            [9.212148, 45.458808],\n            [9.207652, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.463305],\n            [9.207652, 45.467802],\n            [9.212148, 45.467802],\n            [9.212148, 45.463305],\n            [9.207652, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.467802],\n            [9.207652, 45.472298],\n            [9.212148, 45.472298],\n            [9.212148, 45.467802],\n            [9.207652, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.472298],\n            [9.207652, 45.476795],\n            [9.212148, 45.476795],\n            [9.212148, 45.472298],\n            [9.207652, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.476795],\n            [9.207652, 45.481291],\n            [9.212148, 45.481291],\n            [9.212148, 45.476795],\n            [9.207652, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.481291],\n            [9.207652, 45.485788],\n            [9.212148, 45.485788],\n            [9.212148, 45.481291],\n            [9.207652, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.485788],\n            [9.207652, 45.490285],\n            [9.212148, 45.490285],\n            [9.212148, 45.485788],\n            [9.207652, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.490285],\n            [9.207652, 45.494781],\n            [9.212148, 45.494781],\n            [9.212148, 45.490285],\n            [9.207652, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.494781],\n            [9.207652, 45.499278],\n            [9.212148, 45.499278],\n            [9.212148, 45.494781],\n            [9.207652, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.499278],\n            [9.207652, 45.503774],\n            [9.212148, 45.503774],\n            [9.212148, 45.499278],\n            [9.207652, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.503774],\n            [9.207652, 45.508271],\n            [9.212148, 45.508271],\n            [9.212148, 45.503774],\n            [9.207652, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.508271],\n            [9.207652, 45.512768],\n            [9.212148, 45.512768],\n            [9.212148, 45.508271],\n            [9.207652, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.512768],\n            [9.207652, 45.517264],\n            [9.212148, 45.517264],\n            [9.212148, 45.512768],\n            [9.207652, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.517264],\n            [9.207652, 45.521761],\n            [9.212148, 45.521761],\n            [9.212148, 45.517264],\n            [9.207652, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.521761],\n            [9.207652, 45.526257],\n            [9.212148, 45.526257],\n            [9.212148, 45.521761],\n            [9.207652, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 38,\n        \"stroke\": \"#0062bd\",\n        \"fill\": \"#0062bd\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.526257],\n            [9.207652, 45.530754],\n            [9.212148, 45.530754],\n            [9.212148, 45.526257],\n            [9.207652, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 41,\n        \"stroke\": \"#004d94\",\n        \"fill\": \"#004d94\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207652, 45.530754],\n            [9.207652, 45.535251],\n            [9.212148, 45.535251],\n            [9.212148, 45.530754],\n            [9.207652, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.440822],\n            [9.212148, 45.445319],\n            [9.216645, 45.445319],\n            [9.216645, 45.440822],\n            [9.212148, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.445319],\n            [9.212148, 45.449815],\n            [9.216645, 45.449815],\n            [9.216645, 45.445319],\n            [9.212148, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.449815],\n            [9.212148, 45.454312],\n            [9.216645, 45.454312],\n            [9.216645, 45.449815],\n            [9.212148, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.454312],\n            [9.212148, 45.458808],\n            [9.216645, 45.458808],\n            [9.216645, 45.454312],\n            [9.212148, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.458808],\n            [9.212148, 45.463305],\n            [9.216645, 45.463305],\n            [9.216645, 45.458808],\n            [9.212148, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.463305],\n            [9.212148, 45.467802],\n            [9.216645, 45.467802],\n            [9.216645, 45.463305],\n            [9.212148, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.467802],\n            [9.212148, 45.472298],\n            [9.216645, 45.472298],\n            [9.216645, 45.467802],\n            [9.212148, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.472298],\n            [9.212148, 45.476795],\n            [9.216645, 45.476795],\n            [9.216645, 45.472298],\n            [9.212148, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.476795],\n            [9.212148, 45.481291],\n            [9.216645, 45.481291],\n            [9.216645, 45.476795],\n            [9.212148, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.481291],\n            [9.212148, 45.485788],\n            [9.216645, 45.485788],\n            [9.216645, 45.481291],\n            [9.212148, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.485788],\n            [9.212148, 45.490285],\n            [9.216645, 45.490285],\n            [9.216645, 45.485788],\n            [9.212148, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.490285],\n            [9.212148, 45.494781],\n            [9.216645, 45.494781],\n            [9.216645, 45.490285],\n            [9.212148, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.494781],\n            [9.212148, 45.499278],\n            [9.216645, 45.499278],\n            [9.216645, 45.494781],\n            [9.212148, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.499278],\n            [9.212148, 45.503774],\n            [9.216645, 45.503774],\n            [9.216645, 45.499278],\n            [9.212148, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.503774],\n            [9.212148, 45.508271],\n            [9.216645, 45.508271],\n            [9.216645, 45.503774],\n            [9.212148, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.508271],\n            [9.212148, 45.512768],\n            [9.216645, 45.512768],\n            [9.216645, 45.508271],\n            [9.212148, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.512768],\n            [9.212148, 45.517264],\n            [9.216645, 45.517264],\n            [9.216645, 45.512768],\n            [9.212148, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.517264],\n            [9.212148, 45.521761],\n            [9.216645, 45.521761],\n            [9.216645, 45.517264],\n            [9.212148, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.521761],\n            [9.212148, 45.526257],\n            [9.216645, 45.526257],\n            [9.216645, 45.521761],\n            [9.212148, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.526257],\n            [9.212148, 45.530754],\n            [9.216645, 45.530754],\n            [9.216645, 45.526257],\n            [9.212148, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 38,\n        \"stroke\": \"#0062bd\",\n        \"fill\": \"#0062bd\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.212148, 45.530754],\n            [9.212148, 45.535251],\n            [9.216645, 45.535251],\n            [9.216645, 45.530754],\n            [9.212148, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.440822],\n            [9.216645, 45.445319],\n            [9.221142, 45.445319],\n            [9.221142, 45.440822],\n            [9.216645, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.445319],\n            [9.216645, 45.449815],\n            [9.221142, 45.449815],\n            [9.221142, 45.445319],\n            [9.216645, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.449815],\n            [9.216645, 45.454312],\n            [9.221142, 45.454312],\n            [9.221142, 45.449815],\n            [9.216645, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.454312],\n            [9.216645, 45.458808],\n            [9.221142, 45.458808],\n            [9.221142, 45.454312],\n            [9.216645, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.458808],\n            [9.216645, 45.463305],\n            [9.221142, 45.463305],\n            [9.221142, 45.458808],\n            [9.216645, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.463305],\n            [9.216645, 45.467802],\n            [9.221142, 45.467802],\n            [9.221142, 45.463305],\n            [9.216645, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.467802],\n            [9.216645, 45.472298],\n            [9.221142, 45.472298],\n            [9.221142, 45.467802],\n            [9.216645, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.472298],\n            [9.216645, 45.476795],\n            [9.221142, 45.476795],\n            [9.221142, 45.472298],\n            [9.216645, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.476795],\n            [9.216645, 45.481291],\n            [9.221142, 45.481291],\n            [9.221142, 45.476795],\n            [9.216645, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.481291],\n            [9.216645, 45.485788],\n            [9.221142, 45.485788],\n            [9.221142, 45.481291],\n            [9.216645, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.485788],\n            [9.216645, 45.490285],\n            [9.221142, 45.490285],\n            [9.221142, 45.485788],\n            [9.216645, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.490285],\n            [9.216645, 45.494781],\n            [9.221142, 45.494781],\n            [9.221142, 45.490285],\n            [9.216645, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.494781],\n            [9.216645, 45.499278],\n            [9.221142, 45.499278],\n            [9.221142, 45.494781],\n            [9.216645, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.499278],\n            [9.216645, 45.503774],\n            [9.221142, 45.503774],\n            [9.221142, 45.499278],\n            [9.216645, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#5cb1ff\",\n        \"fill\": \"#5cb1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.503774],\n            [9.216645, 45.508271],\n            [9.221142, 45.508271],\n            [9.221142, 45.503774],\n            [9.216645, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#52acff\",\n        \"fill\": \"#52acff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.508271],\n            [9.216645, 45.512768],\n            [9.221142, 45.512768],\n            [9.221142, 45.508271],\n            [9.216645, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.512768],\n            [9.216645, 45.517264],\n            [9.221142, 45.517264],\n            [9.221142, 45.512768],\n            [9.216645, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.517264],\n            [9.216645, 45.521761],\n            [9.221142, 45.521761],\n            [9.221142, 45.517264],\n            [9.216645, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.521761],\n            [9.216645, 45.526257],\n            [9.221142, 45.526257],\n            [9.221142, 45.521761],\n            [9.216645, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.526257],\n            [9.216645, 45.530754],\n            [9.221142, 45.530754],\n            [9.221142, 45.526257],\n            [9.216645, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 37,\n        \"stroke\": \"#0068c7\",\n        \"fill\": \"#0068c7\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.216645, 45.530754],\n            [9.216645, 45.535251],\n            [9.221142, 45.535251],\n            [9.221142, 45.530754],\n            [9.216645, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.440822],\n            [9.221142, 45.445319],\n            [9.225638, 45.445319],\n            [9.225638, 45.440822],\n            [9.221142, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.445319],\n            [9.221142, 45.449815],\n            [9.225638, 45.449815],\n            [9.225638, 45.445319],\n            [9.221142, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.449815],\n            [9.221142, 45.454312],\n            [9.225638, 45.454312],\n            [9.225638, 45.449815],\n            [9.221142, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.454312],\n            [9.221142, 45.458808],\n            [9.225638, 45.458808],\n            [9.225638, 45.454312],\n            [9.221142, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.458808],\n            [9.221142, 45.463305],\n            [9.225638, 45.463305],\n            [9.225638, 45.458808],\n            [9.221142, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.463305],\n            [9.221142, 45.467802],\n            [9.225638, 45.467802],\n            [9.225638, 45.463305],\n            [9.221142, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.467802],\n            [9.221142, 45.472298],\n            [9.225638, 45.472298],\n            [9.225638, 45.467802],\n            [9.221142, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.472298],\n            [9.221142, 45.476795],\n            [9.225638, 45.476795],\n            [9.225638, 45.472298],\n            [9.221142, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.476795],\n            [9.221142, 45.481291],\n            [9.225638, 45.481291],\n            [9.225638, 45.476795],\n            [9.221142, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.481291],\n            [9.221142, 45.485788],\n            [9.225638, 45.485788],\n            [9.225638, 45.481291],\n            [9.221142, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.485788],\n            [9.221142, 45.490285],\n            [9.225638, 45.490285],\n            [9.225638, 45.485788],\n            [9.221142, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.490285],\n            [9.221142, 45.494781],\n            [9.225638, 45.494781],\n            [9.225638, 45.490285],\n            [9.221142, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.494781],\n            [9.221142, 45.499278],\n            [9.225638, 45.499278],\n            [9.225638, 45.494781],\n            [9.221142, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#7ac0ff\",\n        \"fill\": \"#7ac0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.499278],\n            [9.221142, 45.503774],\n            [9.225638, 45.503774],\n            [9.225638, 45.499278],\n            [9.221142, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.503774],\n            [9.221142, 45.508271],\n            [9.225638, 45.508271],\n            [9.225638, 45.503774],\n            [9.221142, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#52acff\",\n        \"fill\": \"#52acff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.508271],\n            [9.221142, 45.512768],\n            [9.225638, 45.512768],\n            [9.225638, 45.508271],\n            [9.221142, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 29,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.512768],\n            [9.221142, 45.517264],\n            [9.225638, 45.517264],\n            [9.225638, 45.512768],\n            [9.221142, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.517264],\n            [9.221142, 45.521761],\n            [9.225638, 45.521761],\n            [9.225638, 45.517264],\n            [9.221142, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#0f8cff\",\n        \"fill\": \"#0f8cff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.521761],\n            [9.221142, 45.526257],\n            [9.225638, 45.526257],\n            [9.225638, 45.521761],\n            [9.221142, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.526257],\n            [9.221142, 45.530754],\n            [9.225638, 45.530754],\n            [9.225638, 45.526257],\n            [9.221142, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 35,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.221142, 45.530754],\n            [9.221142, 45.535251],\n            [9.225638, 45.535251],\n            [9.225638, 45.530754],\n            [9.221142, 45.530754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.440822],\n            [9.225638, 45.445319],\n            [9.230135, 45.445319],\n            [9.230135, 45.440822],\n            [9.225638, 45.440822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.445319],\n            [9.225638, 45.449815],\n            [9.230135, 45.449815],\n            [9.230135, 45.445319],\n            [9.225638, 45.445319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.449815],\n            [9.225638, 45.454312],\n            [9.230135, 45.454312],\n            [9.230135, 45.449815],\n            [9.225638, 45.449815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.454312],\n            [9.225638, 45.458808],\n            [9.230135, 45.458808],\n            [9.230135, 45.454312],\n            [9.225638, 45.454312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.458808],\n            [9.225638, 45.463305],\n            [9.230135, 45.463305],\n            [9.230135, 45.458808],\n            [9.225638, 45.458808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.463305],\n            [9.225638, 45.467802],\n            [9.230135, 45.467802],\n            [9.230135, 45.463305],\n            [9.225638, 45.463305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.467802],\n            [9.225638, 45.472298],\n            [9.230135, 45.472298],\n            [9.230135, 45.467802],\n            [9.225638, 45.467802]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#94ccff\",\n        \"fill\": \"#94ccff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.472298],\n            [9.225638, 45.476795],\n            [9.230135, 45.476795],\n            [9.230135, 45.472298],\n            [9.225638, 45.472298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.476795],\n            [9.225638, 45.481291],\n            [9.230135, 45.481291],\n            [9.230135, 45.476795],\n            [9.225638, 45.476795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.481291],\n            [9.225638, 45.485788],\n            [9.230135, 45.485788],\n            [9.230135, 45.481291],\n            [9.225638, 45.481291]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 19,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.485788],\n            [9.225638, 45.490285],\n            [9.230135, 45.490285],\n            [9.230135, 45.485788],\n            [9.225638, 45.485788]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#c7e4ff\",\n        \"fill\": \"#c7e4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.490285],\n            [9.225638, 45.494781],\n            [9.230135, 45.494781],\n            [9.230135, 45.490285],\n            [9.225638, 45.490285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 21,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.494781],\n            [9.225638, 45.499278],\n            [9.230135, 45.499278],\n            [9.230135, 45.494781],\n            [9.225638, 45.494781]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 23,\n        \"stroke\": \"#85c4ff\",\n        \"fill\": \"#85c4ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.499278],\n            [9.225638, 45.503774],\n            [9.230135, 45.503774],\n            [9.230135, 45.499278],\n            [9.225638, 45.499278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 25,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.503774],\n            [9.225638, 45.508271],\n            [9.230135, 45.508271],\n            [9.230135, 45.503774],\n            [9.225638, 45.503774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 27,\n        \"stroke\": \"#52acff\",\n        \"fill\": \"#52acff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.508271],\n            [9.225638, 45.512768],\n            [9.230135, 45.512768],\n            [9.230135, 45.508271],\n            [9.225638, 45.508271]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 28,\n        \"stroke\": \"#42a5ff\",\n        \"fill\": \"#42a5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.512768],\n            [9.225638, 45.517264],\n            [9.230135, 45.517264],\n            [9.230135, 45.512768],\n            [9.225638, 45.512768]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 30,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.517264],\n            [9.225638, 45.521761],\n            [9.230135, 45.521761],\n            [9.230135, 45.517264],\n            [9.225638, 45.517264]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.521761],\n            [9.225638, 45.526257],\n            [9.230135, 45.526257],\n            [9.230135, 45.521761],\n            [9.225638, 45.521761]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 33,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.526257],\n            [9.225638, 45.530754],\n            [9.230135, 45.530754],\n            [9.230135, 45.526257],\n            [9.225638, 45.526257]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 34,\n        \"stroke\": \"#007df0\",\n        \"fill\": \"#007df0\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.225638, 45.530754],\n            [9.225638, 45.535251],\n            [9.230135, 45.535251],\n            [9.230135, 45.530754],\n            [9.225638, 45.530754]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/out/data-weight-2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 8,\n        \"stroke\": \"#ebf5ff\",\n        \"fill\": \"#ebf5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.123271, 45.444617],\n            [9.123271, 45.45909],\n            [9.137744, 45.45909],\n            [9.137744, 45.444617],\n            [9.123271, 45.444617]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 8,\n        \"stroke\": \"#ebf5ff\",\n        \"fill\": \"#ebf5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.123271, 45.45909],\n            [9.123271, 45.473563],\n            [9.137744, 45.473563],\n            [9.137744, 45.45909],\n            [9.123271, 45.45909]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 10,\n        \"stroke\": \"#dbeeff\",\n        \"fill\": \"#dbeeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.123271, 45.473563],\n            [9.123271, 45.488036],\n            [9.137744, 45.488036],\n            [9.137744, 45.473563],\n            [9.123271, 45.473563]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 15,\n        \"stroke\": \"#b8ddff\",\n        \"fill\": \"#b8ddff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.123271, 45.488036],\n            [9.123271, 45.502509],\n            [9.137744, 45.502509],\n            [9.137744, 45.488036],\n            [9.123271, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.123271, 45.502509],\n            [9.123271, 45.516983],\n            [9.137744, 45.516983],\n            [9.137744, 45.502509],\n            [9.123271, 45.502509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 32,\n        \"stroke\": \"#38a0ff\",\n        \"fill\": \"#38a0ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.123271, 45.516983],\n            [9.123271, 45.531456],\n            [9.137744, 45.531456],\n            [9.137744, 45.516983],\n            [9.123271, 45.516983]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 8,\n        \"stroke\": \"#ebf5ff\",\n        \"fill\": \"#ebf5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.137744, 45.444617],\n            [9.137744, 45.45909],\n            [9.152218, 45.45909],\n            [9.152218, 45.444617],\n            [9.137744, 45.444617]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 6,\n        \"stroke\": \"#fafdff\",\n        \"fill\": \"#fafdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.137744, 45.45909],\n            [9.137744, 45.473563],\n            [9.152218, 45.473563],\n            [9.152218, 45.45909],\n            [9.137744, 45.45909]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 7,\n        \"stroke\": \"#f0f8ff\",\n        \"fill\": \"#f0f8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.137744, 45.473563],\n            [9.137744, 45.488036],\n            [9.152218, 45.488036],\n            [9.152218, 45.473563],\n            [9.137744, 45.473563]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 14,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.137744, 45.488036],\n            [9.137744, 45.502509],\n            [9.152218, 45.502509],\n            [9.152218, 45.488036],\n            [9.137744, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 22,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.137744, 45.502509],\n            [9.137744, 45.516983],\n            [9.152218, 45.516983],\n            [9.152218, 45.502509],\n            [9.137744, 45.502509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 36,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.137744, 45.516983],\n            [9.137744, 45.531456],\n            [9.152218, 45.531456],\n            [9.152218, 45.516983],\n            [9.137744, 45.516983]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 8,\n        \"stroke\": \"#ebf5ff\",\n        \"fill\": \"#ebf5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.152218, 45.444617],\n            [9.152218, 45.45909],\n            [9.166691, 45.45909],\n            [9.166691, 45.444617],\n            [9.152218, 45.444617]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 5,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.152218, 45.45909],\n            [9.152218, 45.473563],\n            [9.166691, 45.473563],\n            [9.166691, 45.45909],\n            [9.152218, 45.45909]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 7,\n        \"stroke\": \"#f0f8ff\",\n        \"fill\": \"#f0f8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.152218, 45.473563],\n            [9.152218, 45.488036],\n            [9.166691, 45.488036],\n            [9.166691, 45.473563],\n            [9.152218, 45.473563]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 12,\n        \"stroke\": \"#cce7ff\",\n        \"fill\": \"#cce7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.152218, 45.488036],\n            [9.152218, 45.502509],\n            [9.166691, 45.502509],\n            [9.166691, 45.488036],\n            [9.152218, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 20,\n        \"stroke\": \"#8fc9ff\",\n        \"fill\": \"#8fc9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.152218, 45.502509],\n            [9.152218, 45.516983],\n            [9.166691, 45.516983],\n            [9.166691, 45.502509],\n            [9.152218, 45.502509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 42,\n        \"stroke\": \"#007aeb\",\n        \"fill\": \"#007aeb\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.152218, 45.516983],\n            [9.152218, 45.531456],\n            [9.166691, 45.531456],\n            [9.166691, 45.516983],\n            [9.152218, 45.516983]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 10,\n        \"stroke\": \"#dbeeff\",\n        \"fill\": \"#dbeeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.166691, 45.444617],\n            [9.166691, 45.45909],\n            [9.181164, 45.45909],\n            [9.181164, 45.444617],\n            [9.166691, 45.444617]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 8,\n        \"stroke\": \"#ebf5ff\",\n        \"fill\": \"#ebf5ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.166691, 45.45909],\n            [9.166691, 45.473563],\n            [9.181164, 45.473563],\n            [9.181164, 45.45909],\n            [9.166691, 45.45909]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 10,\n        \"stroke\": \"#dbeeff\",\n        \"fill\": \"#dbeeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.166691, 45.473563],\n            [9.166691, 45.488036],\n            [9.181164, 45.488036],\n            [9.181164, 45.473563],\n            [9.166691, 45.473563]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 11,\n        \"stroke\": \"#d1e9ff\",\n        \"fill\": \"#d1e9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.166691, 45.488036],\n            [9.166691, 45.502509],\n            [9.181164, 45.502509],\n            [9.181164, 45.488036],\n            [9.166691, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 18,\n        \"stroke\": \"#9ed1ff\",\n        \"fill\": \"#9ed1ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.166691, 45.502509],\n            [9.166691, 45.516983],\n            [9.181164, 45.516983],\n            [9.181164, 45.502509],\n            [9.166691, 45.502509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 55,\n        \"stroke\": \"#004a8f\",\n        \"fill\": \"#004a8f\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.166691, 45.516983],\n            [9.166691, 45.531456],\n            [9.181164, 45.531456],\n            [9.181164, 45.516983],\n            [9.166691, 45.516983]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 11,\n        \"stroke\": \"#d1e9ff\",\n        \"fill\": \"#d1e9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.181164, 45.444617],\n            [9.181164, 45.45909],\n            [9.195637, 45.45909],\n            [9.195637, 45.444617],\n            [9.181164, 45.444617]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 11,\n        \"stroke\": \"#d1e9ff\",\n        \"fill\": \"#d1e9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.181164, 45.45909],\n            [9.181164, 45.473563],\n            [9.195637, 45.473563],\n            [9.195637, 45.45909],\n            [9.181164, 45.45909]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 12,\n        \"stroke\": \"#cce7ff\",\n        \"fill\": \"#cce7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.181164, 45.473563],\n            [9.181164, 45.488036],\n            [9.195637, 45.488036],\n            [9.195637, 45.473563],\n            [9.181164, 45.473563]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 13,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.181164, 45.488036],\n            [9.181164, 45.502509],\n            [9.195637, 45.502509],\n            [9.195637, 45.488036],\n            [9.181164, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 24,\n        \"stroke\": \"#70bbff\",\n        \"fill\": \"#70bbff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.181164, 45.502509],\n            [9.181164, 45.516983],\n            [9.195637, 45.516983],\n            [9.195637, 45.502509],\n            [9.181164, 45.502509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 72,\n        \"stroke\": \"#00080f\",\n        \"fill\": \"#00080f\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.181164, 45.516983],\n            [9.181164, 45.531456],\n            [9.195637, 45.531456],\n            [9.195637, 45.516983],\n            [9.181164, 45.516983]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 13,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.195637, 45.444617],\n            [9.195637, 45.45909],\n            [9.21011, 45.45909],\n            [9.21011, 45.444617],\n            [9.195637, 45.444617]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 13,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.195637, 45.45909],\n            [9.195637, 45.473563],\n            [9.21011, 45.473563],\n            [9.21011, 45.45909],\n            [9.195637, 45.45909]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 13,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.195637, 45.473563],\n            [9.195637, 45.488036],\n            [9.21011, 45.488036],\n            [9.21011, 45.473563],\n            [9.195637, 45.473563]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 16,\n        \"stroke\": \"#add8ff\",\n        \"fill\": \"#add8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.195637, 45.488036],\n            [9.195637, 45.502509],\n            [9.21011, 45.502509],\n            [9.21011, 45.488036],\n            [9.195637, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 31,\n        \"stroke\": \"#3da2ff\",\n        \"fill\": \"#3da2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.195637, 45.502509],\n            [9.195637, 45.516983],\n            [9.21011, 45.516983],\n            [9.21011, 45.502509],\n            [9.195637, 45.502509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 74,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.195637, 45.516983],\n            [9.195637, 45.531456],\n            [9.21011, 45.531456],\n            [9.21011, 45.516983],\n            [9.195637, 45.516983]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 14,\n        \"stroke\": \"#bddfff\",\n        \"fill\": \"#bddfff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.21011, 45.444617],\n            [9.21011, 45.45909],\n            [9.224583, 45.45909],\n            [9.224583, 45.444617],\n            [9.21011, 45.444617]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 13,\n        \"stroke\": \"#c2e2ff\",\n        \"fill\": \"#c2e2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.21011, 45.45909],\n            [9.21011, 45.473563],\n            [9.224583, 45.473563],\n            [9.224583, 45.45909],\n            [9.21011, 45.45909]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 11,\n        \"stroke\": \"#d1e9ff\",\n        \"fill\": \"#d1e9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.21011, 45.473563],\n            [9.21011, 45.488036],\n            [9.224583, 45.488036],\n            [9.224583, 45.473563],\n            [9.21011, 45.473563]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 11,\n        \"stroke\": \"#d1e9ff\",\n        \"fill\": \"#d1e9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.21011, 45.488036],\n            [9.21011, 45.502509],\n            [9.224583, 45.502509],\n            [9.224583, 45.488036],\n            [9.21011, 45.488036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 26,\n        \"stroke\": \"#66b6ff\",\n        \"fill\": \"#66b6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.21011, 45.502509],\n            [9.21011, 45.516983],\n            [9.224583, 45.516983],\n            [9.224583, 45.502509],\n            [9.21011, 45.502509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"value\": 60,\n        \"stroke\": \"#003566\",\n        \"fill\": \"#003566\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.21011, 45.516983],\n            [9.21011, 45.531456],\n            [9.224583, 45.531456],\n            [9.224583, 45.516983],\n            [9.21011, 45.516983]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/out/hex-zValue-bbox.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.332553, 53.373153],\n            [-6.338615, 53.366886],\n            [-6.350739, 53.366886],\n            [-6.3568, 53.373153],\n            [-6.350739, 53.37942],\n            [-6.338615, 53.37942],\n            [-6.332553, 53.373153]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d1e9ff\",\n        \"fill\": \"#d1e9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.332553, 53.360619],\n            [-6.338615, 53.354352],\n            [-6.350739, 53.354352],\n            [-6.3568, 53.360619],\n            [-6.350739, 53.366886],\n            [-6.338615, 53.366886],\n            [-6.332553, 53.360619]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d1e9ff\",\n        \"fill\": \"#d1e9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.332553, 53.348085],\n            [-6.338615, 53.341818],\n            [-6.350739, 53.341818],\n            [-6.3568, 53.348085],\n            [-6.350739, 53.354352],\n            [-6.338615, 53.354352],\n            [-6.332553, 53.348085]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.332553, 53.335551],\n            [-6.338615, 53.329284],\n            [-6.350739, 53.329284],\n            [-6.3568, 53.335551],\n            [-6.350739, 53.341818],\n            [-6.338615, 53.341818],\n            [-6.332553, 53.335551]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#47a7ff\",\n        \"fill\": \"#47a7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.332553, 53.323016],\n            [-6.338615, 53.316749],\n            [-6.350739, 53.316749],\n            [-6.3568, 53.323016],\n            [-6.350739, 53.329284],\n            [-6.338615, 53.329284],\n            [-6.332553, 53.323016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.314368, 53.37942],\n            [-6.32043, 53.373153],\n            [-6.332553, 53.373153],\n            [-6.338615, 53.37942],\n            [-6.332553, 53.385687],\n            [-6.32043, 53.385687],\n            [-6.314368, 53.37942]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d1e9ff\",\n        \"fill\": \"#d1e9ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.314368, 53.366886],\n            [-6.32043, 53.360619],\n            [-6.332553, 53.360619],\n            [-6.338615, 53.366886],\n            [-6.332553, 53.373153],\n            [-6.32043, 53.373153],\n            [-6.314368, 53.366886]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.314368, 53.354352],\n            [-6.32043, 53.348085],\n            [-6.332553, 53.348085],\n            [-6.338615, 53.354352],\n            [-6.332553, 53.360619],\n            [-6.32043, 53.360619],\n            [-6.314368, 53.354352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a3d3ff\",\n        \"fill\": \"#a3d3ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.314368, 53.341818],\n            [-6.32043, 53.335551],\n            [-6.332553, 53.335551],\n            [-6.338615, 53.341818],\n            [-6.332553, 53.348085],\n            [-6.32043, 53.348085],\n            [-6.314368, 53.341818]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#47a7ff\",\n        \"fill\": \"#47a7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.314368, 53.329284],\n            [-6.32043, 53.323016],\n            [-6.332553, 53.323016],\n            [-6.338615, 53.329284],\n            [-6.332553, 53.335551],\n            [-6.32043, 53.335551],\n            [-6.314368, 53.329284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#47a7ff\",\n        \"fill\": \"#47a7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.296183, 53.373153],\n            [-6.302245, 53.366886],\n            [-6.314368, 53.366886],\n            [-6.32043, 53.373153],\n            [-6.314368, 53.37942],\n            [-6.302245, 53.37942],\n            [-6.296183, 53.373153]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.296183, 53.360619],\n            [-6.302245, 53.354352],\n            [-6.314368, 53.354352],\n            [-6.32043, 53.360619],\n            [-6.314368, 53.366886],\n            [-6.302245, 53.366886],\n            [-6.296183, 53.360619]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#75bdff\",\n        \"fill\": \"#75bdff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.296183, 53.348085],\n            [-6.302245, 53.341818],\n            [-6.314368, 53.341818],\n            [-6.32043, 53.348085],\n            [-6.314368, 53.354352],\n            [-6.302245, 53.354352],\n            [-6.296183, 53.348085]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.296183, 53.335551],\n            [-6.302245, 53.329284],\n            [-6.314368, 53.329284],\n            [-6.32043, 53.335551],\n            [-6.314368, 53.341818],\n            [-6.302245, 53.341818],\n            [-6.296183, 53.335551]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.296183, 53.323016],\n            [-6.302245, 53.316749],\n            [-6.314368, 53.316749],\n            [-6.32043, 53.323016],\n            [-6.314368, 53.329284],\n            [-6.302245, 53.329284],\n            [-6.296183, 53.323016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.277998, 53.37942],\n            [-6.28406, 53.373153],\n            [-6.296183, 53.373153],\n            [-6.302245, 53.37942],\n            [-6.296183, 53.385687],\n            [-6.28406, 53.385687],\n            [-6.277998, 53.37942]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.277998, 53.366886],\n            [-6.28406, 53.360619],\n            [-6.296183, 53.360619],\n            [-6.302245, 53.366886],\n            [-6.296183, 53.373153],\n            [-6.28406, 53.373153],\n            [-6.277998, 53.366886]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.277998, 53.354352],\n            [-6.28406, 53.348085],\n            [-6.296183, 53.348085],\n            [-6.302245, 53.354352],\n            [-6.296183, 53.360619],\n            [-6.28406, 53.360619],\n            [-6.277998, 53.354352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.277998, 53.341818],\n            [-6.28406, 53.335551],\n            [-6.296183, 53.335551],\n            [-6.302245, 53.341818],\n            [-6.296183, 53.348085],\n            [-6.28406, 53.348085],\n            [-6.277998, 53.341818]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0060b8\",\n        \"fill\": \"#0060b8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.277998, 53.329284],\n            [-6.28406, 53.323016],\n            [-6.296183, 53.323016],\n            [-6.302245, 53.329284],\n            [-6.296183, 53.335551],\n            [-6.28406, 53.335551],\n            [-6.277998, 53.329284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#1a91ff\",\n        \"fill\": \"#1a91ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.259813, 53.373153],\n            [-6.265874, 53.366886],\n            [-6.277998, 53.366886],\n            [-6.28406, 53.373153],\n            [-6.277998, 53.37942],\n            [-6.265874, 53.37942],\n            [-6.259813, 53.373153]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0060b8\",\n        \"fill\": \"#0060b8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.259813, 53.360619],\n            [-6.265874, 53.354352],\n            [-6.277998, 53.354352],\n            [-6.28406, 53.360619],\n            [-6.277998, 53.366886],\n            [-6.265874, 53.366886],\n            [-6.259813, 53.360619]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0060b8\",\n        \"fill\": \"#0060b8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.259813, 53.348085],\n            [-6.265874, 53.341818],\n            [-6.277998, 53.341818],\n            [-6.28406, 53.348085],\n            [-6.277998, 53.354352],\n            [-6.265874, 53.354352],\n            [-6.259813, 53.348085]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#00488a\",\n        \"fill\": \"#00488a\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.259813, 53.335551],\n            [-6.265874, 53.329284],\n            [-6.277998, 53.329284],\n            [-6.28406, 53.335551],\n            [-6.277998, 53.341818],\n            [-6.265874, 53.341818],\n            [-6.259813, 53.335551]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#00182e\",\n        \"fill\": \"#00182e\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.259813, 53.323016],\n            [-6.265874, 53.316749],\n            [-6.277998, 53.316749],\n            [-6.28406, 53.323016],\n            [-6.277998, 53.329284],\n            [-6.265874, 53.329284],\n            [-6.259813, 53.323016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#47a7ff\",\n        \"fill\": \"#47a7ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.241628, 53.37942],\n            [-6.247689, 53.373153],\n            [-6.259813, 53.373153],\n            [-6.265874, 53.37942],\n            [-6.259813, 53.385687],\n            [-6.247689, 53.385687],\n            [-6.241628, 53.37942]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#00305c\",\n        \"fill\": \"#00305c\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.241628, 53.366886],\n            [-6.247689, 53.360619],\n            [-6.259813, 53.360619],\n            [-6.265874, 53.366886],\n            [-6.259813, 53.373153],\n            [-6.247689, 53.373153],\n            [-6.241628, 53.366886]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#00488a\",\n        \"fill\": \"#00488a\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.241628, 53.354352],\n            [-6.247689, 53.348085],\n            [-6.259813, 53.348085],\n            [-6.265874, 53.354352],\n            [-6.259813, 53.360619],\n            [-6.247689, 53.360619],\n            [-6.241628, 53.354352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#00488a\",\n        \"fill\": \"#00488a\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.241628, 53.341818],\n            [-6.247689, 53.335551],\n            [-6.259813, 53.335551],\n            [-6.265874, 53.341818],\n            [-6.259813, 53.348085],\n            [-6.247689, 53.348085],\n            [-6.241628, 53.341818]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.241628, 53.329284],\n            [-6.247689, 53.323016],\n            [-6.259813, 53.323016],\n            [-6.265874, 53.329284],\n            [-6.259813, 53.335551],\n            [-6.247689, 53.335551],\n            [-6.241628, 53.329284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0060b8\",\n        \"fill\": \"#0060b8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.223442, 53.373153],\n            [-6.229504, 53.366886],\n            [-6.241628, 53.366886],\n            [-6.247689, 53.373153],\n            [-6.241628, 53.37942],\n            [-6.229504, 53.37942],\n            [-6.223442, 53.373153]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#00488a\",\n        \"fill\": \"#00488a\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.223442, 53.360619],\n            [-6.229504, 53.354352],\n            [-6.241628, 53.354352],\n            [-6.247689, 53.360619],\n            [-6.241628, 53.366886],\n            [-6.229504, 53.366886],\n            [-6.223442, 53.360619]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#00488a\",\n        \"fill\": \"#00488a\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.223442, 53.348085],\n            [-6.229504, 53.341818],\n            [-6.241628, 53.341818],\n            [-6.247689, 53.348085],\n            [-6.241628, 53.354352],\n            [-6.229504, 53.354352],\n            [-6.223442, 53.348085]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#00305c\",\n        \"fill\": \"#00305c\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.223442, 53.335551],\n            [-6.229504, 53.329284],\n            [-6.241628, 53.329284],\n            [-6.247689, 53.335551],\n            [-6.241628, 53.341818],\n            [-6.229504, 53.341818],\n            [-6.223442, 53.335551]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.223442, 53.323016],\n            [-6.229504, 53.316749],\n            [-6.241628, 53.316749],\n            [-6.247689, 53.323016],\n            [-6.241628, 53.329284],\n            [-6.229504, 53.329284],\n            [-6.223442, 53.323016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0078e6\",\n        \"fill\": \"#0078e6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.205257, 53.37942],\n            [-6.211319, 53.373153],\n            [-6.223442, 53.373153],\n            [-6.229504, 53.37942],\n            [-6.223442, 53.385687],\n            [-6.211319, 53.385687],\n            [-6.205257, 53.37942]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0060b8\",\n        \"fill\": \"#0060b8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.205257, 53.366886],\n            [-6.211319, 53.360619],\n            [-6.223442, 53.360619],\n            [-6.229504, 53.366886],\n            [-6.223442, 53.373153],\n            [-6.211319, 53.373153],\n            [-6.205257, 53.366886]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#00488a\",\n        \"fill\": \"#00488a\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.205257, 53.354352],\n            [-6.211319, 53.348085],\n            [-6.223442, 53.348085],\n            [-6.229504, 53.354352],\n            [-6.223442, 53.360619],\n            [-6.211319, 53.360619],\n            [-6.205257, 53.354352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#00488a\",\n        \"fill\": \"#00488a\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.205257, 53.341818],\n            [-6.211319, 53.335551],\n            [-6.223442, 53.335551],\n            [-6.229504, 53.341818],\n            [-6.223442, 53.348085],\n            [-6.211319, 53.348085],\n            [-6.205257, 53.341818]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#00305c\",\n        \"fill\": \"#00305c\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.205257, 53.329284],\n            [-6.211319, 53.323016],\n            [-6.223442, 53.323016],\n            [-6.229504, 53.329284],\n            [-6.223442, 53.335551],\n            [-6.211319, 53.335551],\n            [-6.205257, 53.329284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0060b8\",\n        \"fill\": \"#0060b8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.187072, 53.373153],\n            [-6.193134, 53.366886],\n            [-6.205257, 53.366886],\n            [-6.211319, 53.373153],\n            [-6.205257, 53.37942],\n            [-6.193134, 53.37942],\n            [-6.187072, 53.373153]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0060b8\",\n        \"fill\": \"#0060b8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.187072, 53.360619],\n            [-6.193134, 53.354352],\n            [-6.205257, 53.354352],\n            [-6.211319, 53.360619],\n            [-6.205257, 53.366886],\n            [-6.193134, 53.366886],\n            [-6.187072, 53.360619]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#00488a\",\n        \"fill\": \"#00488a\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.187072, 53.348085],\n            [-6.193134, 53.341818],\n            [-6.205257, 53.341818],\n            [-6.211319, 53.348085],\n            [-6.205257, 53.354352],\n            [-6.193134, 53.354352],\n            [-6.187072, 53.348085]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#00488a\",\n        \"fill\": \"#00488a\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.187072, 53.335551],\n            [-6.193134, 53.329284],\n            [-6.205257, 53.329284],\n            [-6.211319, 53.335551],\n            [-6.205257, 53.341818],\n            [-6.193134, 53.341818],\n            [-6.187072, 53.335551]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#00305c\",\n        \"fill\": \"#00305c\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.187072, 53.323016],\n            [-6.193134, 53.316749],\n            [-6.205257, 53.316749],\n            [-6.211319, 53.323016],\n            [-6.205257, 53.329284],\n            [-6.193134, 53.329284],\n            [-6.187072, 53.323016]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/out/hex-zValue.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.303797, 53.331534],\n            [-6.309858, 53.337801],\n            [-6.321982, 53.337801],\n            [-6.328043, 53.331534],\n            [-6.321982, 53.325267],\n            [-6.309858, 53.325267],\n            [-6.303797, 53.331534]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.303797, 53.344068],\n            [-6.309858, 53.350335],\n            [-6.321982, 53.350335],\n            [-6.328043, 53.344068],\n            [-6.321982, 53.337801],\n            [-6.309858, 53.337801],\n            [-6.303797, 53.344068]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.303797, 53.356603],\n            [-6.309858, 53.36287],\n            [-6.321982, 53.36287],\n            [-6.328043, 53.356603],\n            [-6.321982, 53.350335],\n            [-6.309858, 53.350335],\n            [-6.303797, 53.356603]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#6bb8ff\",\n        \"fill\": \"#6bb8ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.303797, 53.369137],\n            [-6.309858, 53.375404],\n            [-6.321982, 53.375404],\n            [-6.328043, 53.369137],\n            [-6.321982, 53.36287],\n            [-6.309858, 53.36287],\n            [-6.303797, 53.369137]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#004d94\",\n        \"fill\": \"#004d94\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.285612, 53.337801],\n            [-6.291674, 53.344068],\n            [-6.303797, 53.344068],\n            [-6.309858, 53.337801],\n            [-6.303797, 53.331534],\n            [-6.291674, 53.331534],\n            [-6.285612, 53.337801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.285612, 53.350335],\n            [-6.291674, 53.356603],\n            [-6.303797, 53.356603],\n            [-6.309858, 53.350335],\n            [-6.303797, 53.344068],\n            [-6.291674, 53.344068],\n            [-6.285612, 53.350335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#0072db\",\n        \"fill\": \"#0072db\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.285612, 53.36287],\n            [-6.291674, 53.369137],\n            [-6.303797, 53.369137],\n            [-6.309858, 53.36287],\n            [-6.303797, 53.356603],\n            [-6.291674, 53.356603],\n            [-6.285612, 53.36287]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.267427, 53.331534],\n            [-6.273489, 53.337801],\n            [-6.285612, 53.337801],\n            [-6.291674, 53.331534],\n            [-6.285612, 53.325267],\n            [-6.273489, 53.325267],\n            [-6.267427, 53.331534]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#002547\",\n        \"fill\": \"#002547\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.267427, 53.344068],\n            [-6.273489, 53.350335],\n            [-6.285612, 53.350335],\n            [-6.291674, 53.344068],\n            [-6.285612, 53.337801],\n            [-6.273489, 53.337801],\n            [-6.267427, 53.344068]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#002547\",\n        \"fill\": \"#002547\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.267427, 53.356603],\n            [-6.273489, 53.36287],\n            [-6.285612, 53.36287],\n            [-6.291674, 53.356603],\n            [-6.285612, 53.350335],\n            [-6.273489, 53.350335],\n            [-6.267427, 53.356603]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#004d94\",\n        \"fill\": \"#004d94\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.267427, 53.369137],\n            [-6.273489, 53.375404],\n            [-6.285612, 53.375404],\n            [-6.291674, 53.369137],\n            [-6.285612, 53.36287],\n            [-6.273489, 53.36287],\n            [-6.267427, 53.369137]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.249243, 53.337801],\n            [-6.255304, 53.344068],\n            [-6.267427, 53.344068],\n            [-6.273489, 53.337801],\n            [-6.267427, 53.331534],\n            [-6.255304, 53.331534],\n            [-6.249243, 53.337801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#002547\",\n        \"fill\": \"#002547\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.249243, 53.350335],\n            [-6.255304, 53.356603],\n            [-6.267427, 53.356603],\n            [-6.273489, 53.350335],\n            [-6.267427, 53.344068],\n            [-6.255304, 53.344068],\n            [-6.249243, 53.350335]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.249243, 53.36287],\n            [-6.255304, 53.369137],\n            [-6.267427, 53.369137],\n            [-6.273489, 53.36287],\n            [-6.267427, 53.356603],\n            [-6.255304, 53.356603],\n            [-6.249243, 53.36287]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/out/points-random.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 102,\n        \"marker-color\": \"#0082fa\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.121323]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 99,\n        \"marker-color\": \"#0a8aff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.166289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 95,\n        \"marker-color\": \"#1a91ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.211255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 91,\n        \"marker-color\": \"#2e9bff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.256221]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 92,\n        \"marker-color\": \"#2999ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.301187]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 97,\n        \"marker-color\": \"#148fff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.346153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 103,\n        \"marker-color\": \"#0080f5\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.391119]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 108,\n        \"marker-color\": \"#0075e0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.436085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 112,\n        \"marker-color\": \"#006acc\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.481051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 115,\n        \"marker-color\": \"#0065c2\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.526017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 118,\n        \"marker-color\": \"#005db3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.570983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 120,\n        \"marker-color\": \"#0058a8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.615949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 121,\n        \"marker-color\": \"#0055a3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.660915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 121,\n        \"marker-color\": \"#0055a3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.705881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 119,\n        \"marker-color\": \"#005aad\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.750847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 118,\n        \"marker-color\": \"#005db3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.795813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 117,\n        \"marker-color\": \"#0060b8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.840779]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 118,\n        \"marker-color\": \"#005db3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.885745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 122,\n        \"marker-color\": \"#0055a3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.930711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 129,\n        \"marker-color\": \"#004280\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.920682, 39.975677]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 102,\n        \"marker-color\": \"#0082fa\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.121323]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 99,\n        \"marker-color\": \"#0a8aff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.166289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 93,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.211255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 81,\n        \"marker-color\": \"#5cb1ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.256221]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 77,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.301187]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 94,\n        \"marker-color\": \"#1f94ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.346153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 103,\n        \"marker-color\": \"#0080f5\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.391119]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 109,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.436085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 113,\n        \"marker-color\": \"#0068c7\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.481051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 117,\n        \"marker-color\": \"#0060b8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.526017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 121,\n        \"marker-color\": \"#0055a3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.570983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 125,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.615949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 127,\n        \"marker-color\": \"#00488a\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.660915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 125,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.705881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 121,\n        \"marker-color\": \"#0055a3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.750847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 118,\n        \"marker-color\": \"#005db3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.795813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 117,\n        \"marker-color\": \"#0060b8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.840779]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 117,\n        \"marker-color\": \"#0060b8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.885745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 122,\n        \"marker-color\": \"#0055a3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.930711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 137,\n        \"marker-color\": \"#00305c\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.862731, 39.975677]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 103,\n        \"marker-color\": \"#0080f5\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.121323]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 100,\n        \"marker-color\": \"#0587ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.166289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 94,\n        \"marker-color\": \"#1f94ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.211255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 82,\n        \"marker-color\": \"#57aeff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.256221]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 78,\n        \"marker-color\": \"#66b6ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.301187]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 96,\n        \"marker-color\": \"#148fff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.346153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 106,\n        \"marker-color\": \"#007aeb\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.391119]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 111,\n        \"marker-color\": \"#006dd1\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.436085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 116,\n        \"marker-color\": \"#0062bd\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.481051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 120,\n        \"marker-color\": \"#0058a8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.526017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 124,\n        \"marker-color\": \"#005099\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.570983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 132,\n        \"marker-color\": \"#003d75\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.615949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 142,\n        \"marker-color\": \"#002547\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.660915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 131,\n        \"marker-color\": \"#00407a\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.705881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 123,\n        \"marker-color\": \"#00529e\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.750847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 118,\n        \"marker-color\": \"#005db3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.795813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 115,\n        \"marker-color\": \"#0065c2\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.840779]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 114,\n        \"marker-color\": \"#0068c7\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.885745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 115,\n        \"marker-color\": \"#0065c2\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.930711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 117,\n        \"marker-color\": \"#0060b8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.80478, 39.975677]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 105,\n        \"marker-color\": \"#007aeb\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.121323]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 102,\n        \"marker-color\": \"#0082fa\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.166289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 99,\n        \"marker-color\": \"#0a8aff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.211255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 96,\n        \"marker-color\": \"#148fff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.256221]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 97,\n        \"marker-color\": \"#148fff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.301187]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 104,\n        \"marker-color\": \"#007df0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.346153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 110,\n        \"marker-color\": \"#0070d6\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.391119]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 115,\n        \"marker-color\": \"#0065c2\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.436085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 119,\n        \"marker-color\": \"#005aad\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.481051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 122,\n        \"marker-color\": \"#0055a3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.526017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 126,\n        \"marker-color\": \"#004a8f\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.570983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 134,\n        \"marker-color\": \"#00386b\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.615949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 148,\n        \"marker-color\": \"#00182e\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.660915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 132,\n        \"marker-color\": \"#003d75\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.705881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 123,\n        \"marker-color\": \"#00529e\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.750847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 117,\n        \"marker-color\": \"#0060b8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.795813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 113,\n        \"marker-color\": \"#0068c7\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.840779]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 110,\n        \"marker-color\": \"#0070d6\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.885745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 108,\n        \"marker-color\": \"#0075e0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.930711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 106,\n        \"marker-color\": \"#007aeb\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.746829, 39.975677]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 108,\n        \"marker-color\": \"#0075e0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.121323]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 105,\n        \"marker-color\": \"#007aeb\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.166289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 102,\n        \"marker-color\": \"#0082fa\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.211255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 102,\n        \"marker-color\": \"#0082fa\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.256221]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 106,\n        \"marker-color\": \"#007aeb\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.301187]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 112,\n        \"marker-color\": \"#006acc\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.346153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 117,\n        \"marker-color\": \"#0060b8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.391119]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 120,\n        \"marker-color\": \"#0058a8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.436085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 122,\n        \"marker-color\": \"#0055a3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.481051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 124,\n        \"marker-color\": \"#005099\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.526017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 127,\n        \"marker-color\": \"#00488a\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.570983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 129,\n        \"marker-color\": \"#004280\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.615949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 130,\n        \"marker-color\": \"#004280\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.660915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 126,\n        \"marker-color\": \"#004a8f\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.705881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 120,\n        \"marker-color\": \"#0058a8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.750847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 115,\n        \"marker-color\": \"#0065c2\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.795813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 110,\n        \"marker-color\": \"#0070d6\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.840779]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 105,\n        \"marker-color\": \"#007aeb\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.885745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 100,\n        \"marker-color\": \"#0587ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.930711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 95,\n        \"marker-color\": \"#1a91ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.688878, 39.975677]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 111,\n        \"marker-color\": \"#006dd1\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.121323]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 106,\n        \"marker-color\": \"#007aeb\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.166289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 99,\n        \"marker-color\": \"#0a8aff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.211255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 99,\n        \"marker-color\": \"#0a8aff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.256221]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 111,\n        \"marker-color\": \"#006dd1\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.301187]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 123,\n        \"marker-color\": \"#00529e\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.346153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 126,\n        \"marker-color\": \"#004a8f\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.391119]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 125,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.436085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 126,\n        \"marker-color\": \"#004a8f\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.481051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 128,\n        \"marker-color\": \"#004585\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.526017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 129,\n        \"marker-color\": \"#004280\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.570983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 128,\n        \"marker-color\": \"#004585\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.615949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 126,\n        \"marker-color\": \"#004a8f\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.660915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 123,\n        \"marker-color\": \"#00529e\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.705881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 118,\n        \"marker-color\": \"#005db3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.750847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 113,\n        \"marker-color\": \"#0068c7\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.795813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 107,\n        \"marker-color\": \"#0078e6\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.840779]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 101,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.885745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 92,\n        \"marker-color\": \"#2999ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.930711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 77,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.630927, 39.975677]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 121,\n        \"marker-color\": \"#0055a3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.121323]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 110,\n        \"marker-color\": \"#0070d6\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.166289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 88,\n        \"marker-color\": \"#38a0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.211255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 77,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.256221]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 113,\n        \"marker-color\": \"#0068c7\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.301187]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 150,\n        \"marker-color\": \"#001324\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.346153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 139,\n        \"marker-color\": \"#002d57\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.391119]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 129,\n        \"marker-color\": \"#004280\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.436085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 129,\n        \"marker-color\": \"#004280\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.481051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 133,\n        \"marker-color\": \"#003b70\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.526017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 134,\n        \"marker-color\": \"#00386b\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.570983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 130,\n        \"marker-color\": \"#004280\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.615949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 125,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.660915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 121,\n        \"marker-color\": \"#0055a3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.705881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 116,\n        \"marker-color\": \"#0062bd\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.750847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 111,\n        \"marker-color\": \"#006dd1\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.795813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 105,\n        \"marker-color\": \"#007aeb\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.840779]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 98,\n        \"marker-color\": \"#0f8cff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.885745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 88,\n        \"marker-color\": \"#38a0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.930711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 74,\n        \"marker-color\": \"#7ac0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.572976, 39.975677]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 131,\n        \"marker-color\": \"#00407a\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.121323]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 115,\n        \"marker-color\": \"#0065c2\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.166289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 99,\n        \"marker-color\": \"#0a8aff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.211255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 96,\n        \"marker-color\": \"#148fff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.256221]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 114,\n        \"marker-color\": \"#0068c7\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.301187]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 133,\n        \"marker-color\": \"#003b70\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.346153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 133,\n        \"marker-color\": \"#003b70\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.391119]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 129,\n        \"marker-color\": \"#004280\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.436085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 132,\n        \"marker-color\": \"#003d75\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.481051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 138,\n        \"marker-color\": \"#00305c\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.526017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 139,\n        \"marker-color\": \"#002d57\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.570983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 132,\n        \"marker-color\": \"#003d75\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.615949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 126,\n        \"marker-color\": \"#004a8f\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.660915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 120,\n        \"marker-color\": \"#0058a8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.705881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 114,\n        \"marker-color\": \"#0068c7\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.750847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 109,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.795813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 103,\n        \"marker-color\": \"#0080f5\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.840779]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 96,\n        \"marker-color\": \"#148fff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.885745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 89,\n        \"marker-color\": \"#38a0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.930711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 83,\n        \"marker-color\": \"#52acff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.515025, 39.975677]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 131,\n        \"marker-color\": \"#00407a\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.121323]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 117,\n        \"marker-color\": \"#0060b8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.166289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 110,\n        \"marker-color\": \"#0070d6\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.211255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 109,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.256221]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 115,\n        \"marker-color\": \"#0065c2\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.301187]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 122,\n        \"marker-color\": \"#0055a3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.346153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 124,\n        \"marker-color\": \"#005099\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.391119]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 126,\n        \"marker-color\": \"#004a8f\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.436085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 133,\n        \"marker-color\": \"#003b70\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.481051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 154,\n        \"marker-color\": \"#000b14\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.526017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 158,\n        \"marker-color\": \"#000000\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.570983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 135,\n        \"marker-color\": \"#003566\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.615949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 126,\n        \"marker-color\": \"#004a8f\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.660915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 119,\n        \"marker-color\": \"#005aad\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.705881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 113,\n        \"marker-color\": \"#0068c7\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.750847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 107,\n        \"marker-color\": \"#0078e6\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.795813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 101,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.840779]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 93,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.885745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 85,\n        \"marker-color\": \"#47a7ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.930711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 79,\n        \"marker-color\": \"#61b3ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.457075, 39.975677]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 121,\n        \"marker-color\": \"#0055a3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.121323]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 115,\n        \"marker-color\": \"#0065c2\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.166289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 112,\n        \"marker-color\": \"#006acc\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.211255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 113,\n        \"marker-color\": \"#0068c7\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.256221]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 116,\n        \"marker-color\": \"#0062bd\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.301187]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 119,\n        \"marker-color\": \"#005aad\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.346153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 119,\n        \"marker-color\": \"#005aad\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.391119]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 119,\n        \"marker-color\": \"#005aad\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.436085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 127,\n        \"marker-color\": \"#00488a\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.481051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 143,\n        \"marker-color\": \"#002342\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.526017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 147,\n        \"marker-color\": \"#001b33\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.570983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 133,\n        \"marker-color\": \"#003b70\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.615949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 124,\n        \"marker-color\": \"#005099\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.660915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 117,\n        \"marker-color\": \"#0060b8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.705881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 111,\n        \"marker-color\": \"#006dd1\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.750847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 105,\n        \"marker-color\": \"#007aeb\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.795813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 98,\n        \"marker-color\": \"#0f8cff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.840779]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 90,\n        \"marker-color\": \"#339dff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.885745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 78,\n        \"marker-color\": \"#66b6ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.930711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 61,\n        \"marker-color\": \"#b3daff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.399124, 39.975677]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 108,\n        \"marker-color\": \"#0075e0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.121323]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 109,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.166289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 111,\n        \"marker-color\": \"#006dd1\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.211255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 115,\n        \"marker-color\": \"#0065c2\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.256221]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 119,\n        \"marker-color\": \"#005aad\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.301187]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 120,\n        \"marker-color\": \"#0058a8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.346153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 115,\n        \"marker-color\": \"#0065c2\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.391119]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 95,\n        \"marker-color\": \"#1a91ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.436085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 117,\n        \"marker-color\": \"#0060b8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.481051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 127,\n        \"marker-color\": \"#00488a\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.526017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 130,\n        \"marker-color\": \"#004280\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.570983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 126,\n        \"marker-color\": \"#004a8f\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.615949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 120,\n        \"marker-color\": \"#0058a8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.660915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 115,\n        \"marker-color\": \"#0065c2\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.705881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 109,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.750847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 103,\n        \"marker-color\": \"#0080f5\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.795813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 97,\n        \"marker-color\": \"#148fff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.840779]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 88,\n        \"marker-color\": \"#38a0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.885745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 75,\n        \"marker-color\": \"#75bdff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.930711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 44,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.341173, 39.975677]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 96,\n        \"marker-color\": \"#148fff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.121323]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 101,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.166289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 109,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.211255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 117,\n        \"marker-color\": \"#0060b8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.256221]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 125,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.301187]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 127,\n        \"marker-color\": \"#00488a\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.346153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 119,\n        \"marker-color\": \"#005aad\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.391119]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 112,\n        \"marker-color\": \"#006acc\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.436085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 116,\n        \"marker-color\": \"#0062bd\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.481051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 121,\n        \"marker-color\": \"#0055a3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.526017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 122,\n        \"marker-color\": \"#0055a3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.570983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 120,\n        \"marker-color\": \"#0058a8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.615949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 117,\n        \"marker-color\": \"#0060b8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.660915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 112,\n        \"marker-color\": \"#006acc\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.705881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 107,\n        \"marker-color\": \"#0078e6\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.750847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 102,\n        \"marker-color\": \"#0082fa\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.795813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 96,\n        \"marker-color\": \"#148fff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.840779]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 89,\n        \"marker-color\": \"#38a0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.885745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 80,\n        \"marker-color\": \"#5cb1ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.930711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 72,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.283222, 39.975677]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 71,\n        \"marker-color\": \"#85c4ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.121323]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 92,\n        \"marker-color\": \"#2999ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.166289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 106,\n        \"marker-color\": \"#007aeb\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.211255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 118,\n        \"marker-color\": \"#005db3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.256221]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 138,\n        \"marker-color\": \"#00305c\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.301187]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 151,\n        \"marker-color\": \"#00101f\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.346153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 125,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.391119]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 119,\n        \"marker-color\": \"#005aad\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.436085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 117,\n        \"marker-color\": \"#0060b8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.481051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 118,\n        \"marker-color\": \"#005db3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.526017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 118,\n        \"marker-color\": \"#005db3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.570983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 116,\n        \"marker-color\": \"#0062bd\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.615949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 114,\n        \"marker-color\": \"#0068c7\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.660915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 110,\n        \"marker-color\": \"#0070d6\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.705881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 105,\n        \"marker-color\": \"#007aeb\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.750847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 100,\n        \"marker-color\": \"#0587ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.795813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 95,\n        \"marker-color\": \"#1a91ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.840779]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 89,\n        \"marker-color\": \"#38a0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.885745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 84,\n        \"marker-color\": \"#4daaff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.930711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 81,\n        \"marker-color\": \"#5cb1ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.225271, 39.975677]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 85,\n        \"marker-color\": \"#47a7ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.121323]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 95,\n        \"marker-color\": \"#1a91ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.166289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 106,\n        \"marker-color\": \"#007aeb\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.211255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 116,\n        \"marker-color\": \"#0062bd\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.256221]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 128,\n        \"marker-color\": \"#004585\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.301187]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 132,\n        \"marker-color\": \"#003d75\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.346153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 124,\n        \"marker-color\": \"#005099\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.391119]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 119,\n        \"marker-color\": \"#005aad\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.436085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 117,\n        \"marker-color\": \"#0060b8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.481051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 116,\n        \"marker-color\": \"#0062bd\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.526017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 115,\n        \"marker-color\": \"#0065c2\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.570983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 114,\n        \"marker-color\": \"#0068c7\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.615949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 111,\n        \"marker-color\": \"#006dd1\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.660915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 108,\n        \"marker-color\": \"#0075e0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.705881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 103,\n        \"marker-color\": \"#0080f5\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.750847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 98,\n        \"marker-color\": \"#0f8cff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.795813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 92,\n        \"marker-color\": \"#2999ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.840779]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 87,\n        \"marker-color\": \"#3da2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.885745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 83,\n        \"marker-color\": \"#52acff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.930711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 82,\n        \"marker-color\": \"#57aeff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.16732, 39.975677]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 97,\n        \"marker-color\": \"#148fff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.121323]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 101,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.166289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 107,\n        \"marker-color\": \"#0078e6\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.211255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 114,\n        \"marker-color\": \"#0068c7\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.256221]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 119,\n        \"marker-color\": \"#005aad\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.301187]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 122,\n        \"marker-color\": \"#0055a3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.346153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 120,\n        \"marker-color\": \"#0058a8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.391119]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 118,\n        \"marker-color\": \"#005db3\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.436085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 116,\n        \"marker-color\": \"#0062bd\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.481051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 115,\n        \"marker-color\": \"#0065c2\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.526017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 114,\n        \"marker-color\": \"#0068c7\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.570983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 112,\n        \"marker-color\": \"#006acc\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.615949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 109,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.660915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 106,\n        \"marker-color\": \"#007aeb\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.705881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 102,\n        \"marker-color\": \"#0082fa\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.750847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 96,\n        \"marker-color\": \"#148fff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.795813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 89,\n        \"marker-color\": \"#38a0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.840779]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 80,\n        \"marker-color\": \"#5cb1ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.885745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 75,\n        \"marker-color\": \"#75bdff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.930711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 80,\n        \"marker-color\": \"#5cb1ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.109369, 39.975677]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 102,\n        \"marker-color\": \"#0082fa\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.121323]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 104,\n        \"marker-color\": \"#007df0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.166289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 108,\n        \"marker-color\": \"#0075e0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.211255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 112,\n        \"marker-color\": \"#006acc\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.256221]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 115,\n        \"marker-color\": \"#0065c2\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.301187]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 117,\n        \"marker-color\": \"#0060b8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.346153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 117,\n        \"marker-color\": \"#0060b8\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.391119]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 116,\n        \"marker-color\": \"#0062bd\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.436085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 115,\n        \"marker-color\": \"#0065c2\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.481051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 113,\n        \"marker-color\": \"#0068c7\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.526017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 112,\n        \"marker-color\": \"#006acc\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.570983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 110,\n        \"marker-color\": \"#0070d6\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.615949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 108,\n        \"marker-color\": \"#0075e0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.660915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 105,\n        \"marker-color\": \"#007aeb\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.705881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 101,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.750847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 95,\n        \"marker-color\": \"#1a91ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.795813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 87,\n        \"marker-color\": \"#3da2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.840779]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 72,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.885745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 54,\n        \"marker-color\": \"#d1e9ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.930711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 77,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.051418, 39.975677]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/out/points1-weight-3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 9,\n        \"marker-color\": \"#002547\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 9,\n        \"marker-color\": \"#002547\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 10,\n        \"marker-color\": \"#000000\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 10,\n        \"marker-color\": \"#000000\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 10,\n        \"marker-color\": \"#000000\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 9,\n        \"marker-color\": \"#002547\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 10,\n        \"marker-color\": \"#000000\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 10,\n        \"marker-color\": \"#000000\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 10,\n        \"marker-color\": \"#000000\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 9,\n        \"marker-color\": \"#002547\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 10,\n        \"marker-color\": \"#000000\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 10,\n        \"marker-color\": \"#000000\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 9,\n        \"marker-color\": \"#002547\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 9,\n        \"marker-color\": \"#002547\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 9,\n        \"marker-color\": \"#002547\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004d94\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0072db\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 3,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 4,\n        \"marker-color\": \"#b8ddff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#6bb8ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#2496ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.671233]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/out/points1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004280\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 9,\n        \"marker-color\": \"#000000\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.584192, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004280\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 8,\n        \"marker-color\": \"#004280\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.569716, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.555241, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.540765, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.52629, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.511815, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.497339, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.482864, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.468388, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.453913, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 7,\n        \"marker-color\": \"#0085ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.439438, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.424962, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.410487, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.396012, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.381536, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.367061, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.352585, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.33811, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.323635, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.309159, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.294684, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.280208, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.265733, -0.671233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -1.004115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 5,\n        \"marker-color\": \"#ffffff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.989642]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.975169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.960696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.946223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.93175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.917276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.902803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.88833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.873857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.859384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.844911]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.830437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.815964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.801491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.787018]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.772545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.758072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.743599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.729125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.714652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.700179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.685706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"pressure\": 6,\n        \"marker-color\": \"#80c2ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-89.251258, -0.671233]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test/out/triangle-zValue.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.3198],\n            [-6.328812, 53.322498],\n            [-6.324295, 53.3198],\n            [-6.328812, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.322498],\n            [-6.324295, 53.322498],\n            [-6.324295, 53.3198],\n            [-6.328812, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.322498],\n            [-6.324295, 53.325196],\n            [-6.324295, 53.322498],\n            [-6.328812, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.322498],\n            [-6.328812, 53.325196],\n            [-6.324295, 53.325196],\n            [-6.328812, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.325196],\n            [-6.328812, 53.327894],\n            [-6.324295, 53.325196],\n            [-6.328812, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.327894],\n            [-6.324295, 53.327894],\n            [-6.324295, 53.325196],\n            [-6.328812, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.327894],\n            [-6.324295, 53.330592],\n            [-6.324295, 53.327894],\n            [-6.328812, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.327894],\n            [-6.328812, 53.330592],\n            [-6.324295, 53.330592],\n            [-6.328812, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.330592],\n            [-6.328812, 53.33329],\n            [-6.324295, 53.330592],\n            [-6.328812, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.33329],\n            [-6.324295, 53.33329],\n            [-6.324295, 53.330592],\n            [-6.328812, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.33329],\n            [-6.324295, 53.335988],\n            [-6.324295, 53.33329],\n            [-6.328812, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.33329],\n            [-6.328812, 53.335988],\n            [-6.324295, 53.335988],\n            [-6.328812, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.335988],\n            [-6.328812, 53.338686],\n            [-6.324295, 53.335988],\n            [-6.328812, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.338686],\n            [-6.324295, 53.338686],\n            [-6.324295, 53.335988],\n            [-6.328812, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.338686],\n            [-6.324295, 53.341384],\n            [-6.324295, 53.338686],\n            [-6.328812, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.338686],\n            [-6.328812, 53.341384],\n            [-6.324295, 53.341384],\n            [-6.328812, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.341384],\n            [-6.328812, 53.344082],\n            [-6.324295, 53.341384],\n            [-6.328812, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.344082],\n            [-6.324295, 53.344082],\n            [-6.324295, 53.341384],\n            [-6.328812, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.344082],\n            [-6.324295, 53.34678],\n            [-6.324295, 53.344082],\n            [-6.328812, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.344082],\n            [-6.328812, 53.34678],\n            [-6.324295, 53.34678],\n            [-6.328812, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.34678],\n            [-6.328812, 53.349478],\n            [-6.324295, 53.34678],\n            [-6.328812, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.349478],\n            [-6.324295, 53.349478],\n            [-6.324295, 53.34678],\n            [-6.328812, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.349478],\n            [-6.324295, 53.352175],\n            [-6.324295, 53.349478],\n            [-6.328812, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.349478],\n            [-6.328812, 53.352175],\n            [-6.324295, 53.352175],\n            [-6.328812, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.352175],\n            [-6.328812, 53.354873],\n            [-6.324295, 53.352175],\n            [-6.328812, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.354873],\n            [-6.324295, 53.354873],\n            [-6.324295, 53.352175],\n            [-6.328812, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.354873],\n            [-6.324295, 53.357571],\n            [-6.324295, 53.354873],\n            [-6.328812, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.354873],\n            [-6.328812, 53.357571],\n            [-6.324295, 53.357571],\n            [-6.328812, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.357571],\n            [-6.328812, 53.360269],\n            [-6.324295, 53.357571],\n            [-6.328812, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.360269],\n            [-6.324295, 53.360269],\n            [-6.324295, 53.357571],\n            [-6.328812, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.360269],\n            [-6.324295, 53.362967],\n            [-6.324295, 53.360269],\n            [-6.328812, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.360269],\n            [-6.328812, 53.362967],\n            [-6.324295, 53.362967],\n            [-6.328812, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.362967],\n            [-6.328812, 53.365665],\n            [-6.324295, 53.362967],\n            [-6.328812, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.365665],\n            [-6.324295, 53.365665],\n            [-6.324295, 53.362967],\n            [-6.328812, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.365665],\n            [-6.324295, 53.368363],\n            [-6.324295, 53.365665],\n            [-6.328812, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.365665],\n            [-6.328812, 53.368363],\n            [-6.324295, 53.368363],\n            [-6.328812, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.368363],\n            [-6.328812, 53.371061],\n            [-6.324295, 53.368363],\n            [-6.328812, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.371061],\n            [-6.324295, 53.371061],\n            [-6.324295, 53.368363],\n            [-6.328812, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.371061],\n            [-6.324295, 53.373759],\n            [-6.324295, 53.371061],\n            [-6.328812, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.371061],\n            [-6.328812, 53.373759],\n            [-6.324295, 53.373759],\n            [-6.328812, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.373759],\n            [-6.328812, 53.376457],\n            [-6.324295, 53.373759],\n            [-6.328812, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.376457],\n            [-6.324295, 53.376457],\n            [-6.324295, 53.373759],\n            [-6.328812, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.376457],\n            [-6.324295, 53.379155],\n            [-6.324295, 53.376457],\n            [-6.328812, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.376457],\n            [-6.328812, 53.379155],\n            [-6.324295, 53.379155],\n            [-6.328812, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.379155],\n            [-6.328812, 53.381853],\n            [-6.324295, 53.379155],\n            [-6.328812, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.328812, 53.381853],\n            [-6.324295, 53.381853],\n            [-6.324295, 53.379155],\n            [-6.328812, 53.381853]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.3198],\n            [-6.324295, 53.322498],\n            [-6.319779, 53.322498],\n            [-6.324295, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.3198],\n            [-6.319779, 53.322498],\n            [-6.319779, 53.3198],\n            [-6.324295, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.322498],\n            [-6.324295, 53.325196],\n            [-6.319779, 53.322498],\n            [-6.324295, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.325196],\n            [-6.319779, 53.325196],\n            [-6.319779, 53.322498],\n            [-6.324295, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.325196],\n            [-6.324295, 53.327894],\n            [-6.319779, 53.327894],\n            [-6.324295, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.325196],\n            [-6.319779, 53.327894],\n            [-6.319779, 53.325196],\n            [-6.324295, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.327894],\n            [-6.324295, 53.330592],\n            [-6.319779, 53.327894],\n            [-6.324295, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.330592],\n            [-6.319779, 53.330592],\n            [-6.319779, 53.327894],\n            [-6.324295, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.330592],\n            [-6.324295, 53.33329],\n            [-6.319779, 53.33329],\n            [-6.324295, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.330592],\n            [-6.319779, 53.33329],\n            [-6.319779, 53.330592],\n            [-6.324295, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.33329],\n            [-6.324295, 53.335988],\n            [-6.319779, 53.33329],\n            [-6.324295, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.335988],\n            [-6.319779, 53.335988],\n            [-6.319779, 53.33329],\n            [-6.324295, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.335988],\n            [-6.324295, 53.338686],\n            [-6.319779, 53.338686],\n            [-6.324295, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.335988],\n            [-6.319779, 53.338686],\n            [-6.319779, 53.335988],\n            [-6.324295, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.338686],\n            [-6.324295, 53.341384],\n            [-6.319779, 53.338686],\n            [-6.324295, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.341384],\n            [-6.319779, 53.341384],\n            [-6.319779, 53.338686],\n            [-6.324295, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.341384],\n            [-6.324295, 53.344082],\n            [-6.319779, 53.344082],\n            [-6.324295, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.341384],\n            [-6.319779, 53.344082],\n            [-6.319779, 53.341384],\n            [-6.324295, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.344082],\n            [-6.324295, 53.34678],\n            [-6.319779, 53.344082],\n            [-6.324295, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.34678],\n            [-6.319779, 53.34678],\n            [-6.319779, 53.344082],\n            [-6.324295, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.34678],\n            [-6.324295, 53.349478],\n            [-6.319779, 53.349478],\n            [-6.324295, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.34678],\n            [-6.319779, 53.349478],\n            [-6.319779, 53.34678],\n            [-6.324295, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.349478],\n            [-6.324295, 53.352175],\n            [-6.319779, 53.349478],\n            [-6.324295, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.352175],\n            [-6.319779, 53.352175],\n            [-6.319779, 53.349478],\n            [-6.324295, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.352175],\n            [-6.324295, 53.354873],\n            [-6.319779, 53.354873],\n            [-6.324295, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.352175],\n            [-6.319779, 53.354873],\n            [-6.319779, 53.352175],\n            [-6.324295, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.354873],\n            [-6.324295, 53.357571],\n            [-6.319779, 53.354873],\n            [-6.324295, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.357571],\n            [-6.319779, 53.357571],\n            [-6.319779, 53.354873],\n            [-6.324295, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.357571],\n            [-6.324295, 53.360269],\n            [-6.319779, 53.360269],\n            [-6.324295, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.357571],\n            [-6.319779, 53.360269],\n            [-6.319779, 53.357571],\n            [-6.324295, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.360269],\n            [-6.324295, 53.362967],\n            [-6.319779, 53.360269],\n            [-6.324295, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.362967],\n            [-6.319779, 53.362967],\n            [-6.319779, 53.360269],\n            [-6.324295, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.362967],\n            [-6.324295, 53.365665],\n            [-6.319779, 53.365665],\n            [-6.324295, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.362967],\n            [-6.319779, 53.365665],\n            [-6.319779, 53.362967],\n            [-6.324295, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.365665],\n            [-6.324295, 53.368363],\n            [-6.319779, 53.365665],\n            [-6.324295, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.368363],\n            [-6.319779, 53.368363],\n            [-6.319779, 53.365665],\n            [-6.324295, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.368363],\n            [-6.324295, 53.371061],\n            [-6.319779, 53.371061],\n            [-6.324295, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.368363],\n            [-6.319779, 53.371061],\n            [-6.319779, 53.368363],\n            [-6.324295, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.371061],\n            [-6.324295, 53.373759],\n            [-6.319779, 53.371061],\n            [-6.324295, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.373759],\n            [-6.319779, 53.373759],\n            [-6.319779, 53.371061],\n            [-6.324295, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.373759],\n            [-6.324295, 53.376457],\n            [-6.319779, 53.376457],\n            [-6.324295, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.373759],\n            [-6.319779, 53.376457],\n            [-6.319779, 53.373759],\n            [-6.324295, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.376457],\n            [-6.324295, 53.379155],\n            [-6.319779, 53.376457],\n            [-6.324295, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.379155],\n            [-6.319779, 53.379155],\n            [-6.319779, 53.376457],\n            [-6.324295, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.379155],\n            [-6.324295, 53.381853],\n            [-6.319779, 53.381853],\n            [-6.324295, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.324295, 53.379155],\n            [-6.319779, 53.381853],\n            [-6.319779, 53.379155],\n            [-6.324295, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.3198],\n            [-6.319779, 53.322498],\n            [-6.315262, 53.3198],\n            [-6.319779, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.322498],\n            [-6.315262, 53.322498],\n            [-6.315262, 53.3198],\n            [-6.319779, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.322498],\n            [-6.315262, 53.325196],\n            [-6.315262, 53.322498],\n            [-6.319779, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.322498],\n            [-6.319779, 53.325196],\n            [-6.315262, 53.325196],\n            [-6.319779, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.325196],\n            [-6.319779, 53.327894],\n            [-6.315262, 53.325196],\n            [-6.319779, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.327894],\n            [-6.315262, 53.327894],\n            [-6.315262, 53.325196],\n            [-6.319779, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.327894],\n            [-6.315262, 53.330592],\n            [-6.315262, 53.327894],\n            [-6.319779, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.327894],\n            [-6.319779, 53.330592],\n            [-6.315262, 53.330592],\n            [-6.319779, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.330592],\n            [-6.319779, 53.33329],\n            [-6.315262, 53.330592],\n            [-6.319779, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.33329],\n            [-6.315262, 53.33329],\n            [-6.315262, 53.330592],\n            [-6.319779, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.33329],\n            [-6.315262, 53.335988],\n            [-6.315262, 53.33329],\n            [-6.319779, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.33329],\n            [-6.319779, 53.335988],\n            [-6.315262, 53.335988],\n            [-6.319779, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.335988],\n            [-6.319779, 53.338686],\n            [-6.315262, 53.335988],\n            [-6.319779, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.338686],\n            [-6.315262, 53.338686],\n            [-6.315262, 53.335988],\n            [-6.319779, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.338686],\n            [-6.315262, 53.341384],\n            [-6.315262, 53.338686],\n            [-6.319779, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.338686],\n            [-6.319779, 53.341384],\n            [-6.315262, 53.341384],\n            [-6.319779, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.341384],\n            [-6.319779, 53.344082],\n            [-6.315262, 53.341384],\n            [-6.319779, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.344082],\n            [-6.315262, 53.344082],\n            [-6.315262, 53.341384],\n            [-6.319779, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.344082],\n            [-6.315262, 53.34678],\n            [-6.315262, 53.344082],\n            [-6.319779, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.344082],\n            [-6.319779, 53.34678],\n            [-6.315262, 53.34678],\n            [-6.319779, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.34678],\n            [-6.319779, 53.349478],\n            [-6.315262, 53.34678],\n            [-6.319779, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.349478],\n            [-6.315262, 53.349478],\n            [-6.315262, 53.34678],\n            [-6.319779, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.349478],\n            [-6.315262, 53.352175],\n            [-6.315262, 53.349478],\n            [-6.319779, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.349478],\n            [-6.319779, 53.352175],\n            [-6.315262, 53.352175],\n            [-6.319779, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.352175],\n            [-6.319779, 53.354873],\n            [-6.315262, 53.352175],\n            [-6.319779, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.354873],\n            [-6.315262, 53.354873],\n            [-6.315262, 53.352175],\n            [-6.319779, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.354873],\n            [-6.315262, 53.357571],\n            [-6.315262, 53.354873],\n            [-6.319779, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.354873],\n            [-6.319779, 53.357571],\n            [-6.315262, 53.357571],\n            [-6.319779, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.357571],\n            [-6.319779, 53.360269],\n            [-6.315262, 53.357571],\n            [-6.319779, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.360269],\n            [-6.315262, 53.360269],\n            [-6.315262, 53.357571],\n            [-6.319779, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.360269],\n            [-6.315262, 53.362967],\n            [-6.315262, 53.360269],\n            [-6.319779, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.360269],\n            [-6.319779, 53.362967],\n            [-6.315262, 53.362967],\n            [-6.319779, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.362967],\n            [-6.319779, 53.365665],\n            [-6.315262, 53.362967],\n            [-6.319779, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.365665],\n            [-6.315262, 53.365665],\n            [-6.315262, 53.362967],\n            [-6.319779, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.365665],\n            [-6.315262, 53.368363],\n            [-6.315262, 53.365665],\n            [-6.319779, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.365665],\n            [-6.319779, 53.368363],\n            [-6.315262, 53.368363],\n            [-6.319779, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.368363],\n            [-6.319779, 53.371061],\n            [-6.315262, 53.368363],\n            [-6.319779, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.371061],\n            [-6.315262, 53.371061],\n            [-6.315262, 53.368363],\n            [-6.319779, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.371061],\n            [-6.315262, 53.373759],\n            [-6.315262, 53.371061],\n            [-6.319779, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.371061],\n            [-6.319779, 53.373759],\n            [-6.315262, 53.373759],\n            [-6.319779, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.373759],\n            [-6.319779, 53.376457],\n            [-6.315262, 53.373759],\n            [-6.319779, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.376457],\n            [-6.315262, 53.376457],\n            [-6.315262, 53.373759],\n            [-6.319779, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.376457],\n            [-6.315262, 53.379155],\n            [-6.315262, 53.376457],\n            [-6.319779, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.376457],\n            [-6.319779, 53.379155],\n            [-6.315262, 53.379155],\n            [-6.319779, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.379155],\n            [-6.319779, 53.381853],\n            [-6.315262, 53.379155],\n            [-6.319779, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.319779, 53.381853],\n            [-6.315262, 53.381853],\n            [-6.315262, 53.379155],\n            [-6.319779, 53.381853]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.3198],\n            [-6.315262, 53.322498],\n            [-6.310745, 53.322498],\n            [-6.315262, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.3198],\n            [-6.310745, 53.322498],\n            [-6.310745, 53.3198],\n            [-6.315262, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.322498],\n            [-6.315262, 53.325196],\n            [-6.310745, 53.322498],\n            [-6.315262, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.325196],\n            [-6.310745, 53.325196],\n            [-6.310745, 53.322498],\n            [-6.315262, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.325196],\n            [-6.315262, 53.327894],\n            [-6.310745, 53.327894],\n            [-6.315262, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.325196],\n            [-6.310745, 53.327894],\n            [-6.310745, 53.325196],\n            [-6.315262, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.327894],\n            [-6.315262, 53.330592],\n            [-6.310745, 53.327894],\n            [-6.315262, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.330592],\n            [-6.310745, 53.330592],\n            [-6.310745, 53.327894],\n            [-6.315262, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.330592],\n            [-6.315262, 53.33329],\n            [-6.310745, 53.33329],\n            [-6.315262, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.330592],\n            [-6.310745, 53.33329],\n            [-6.310745, 53.330592],\n            [-6.315262, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.33329],\n            [-6.315262, 53.335988],\n            [-6.310745, 53.33329],\n            [-6.315262, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.335988],\n            [-6.310745, 53.335988],\n            [-6.310745, 53.33329],\n            [-6.315262, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.335988],\n            [-6.315262, 53.338686],\n            [-6.310745, 53.338686],\n            [-6.315262, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.335988],\n            [-6.310745, 53.338686],\n            [-6.310745, 53.335988],\n            [-6.315262, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.338686],\n            [-6.315262, 53.341384],\n            [-6.310745, 53.338686],\n            [-6.315262, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.341384],\n            [-6.310745, 53.341384],\n            [-6.310745, 53.338686],\n            [-6.315262, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.341384],\n            [-6.315262, 53.344082],\n            [-6.310745, 53.344082],\n            [-6.315262, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.341384],\n            [-6.310745, 53.344082],\n            [-6.310745, 53.341384],\n            [-6.315262, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.344082],\n            [-6.315262, 53.34678],\n            [-6.310745, 53.344082],\n            [-6.315262, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.34678],\n            [-6.310745, 53.34678],\n            [-6.310745, 53.344082],\n            [-6.315262, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.34678],\n            [-6.315262, 53.349478],\n            [-6.310745, 53.349478],\n            [-6.315262, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.34678],\n            [-6.310745, 53.349478],\n            [-6.310745, 53.34678],\n            [-6.315262, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.349478],\n            [-6.315262, 53.352175],\n            [-6.310745, 53.349478],\n            [-6.315262, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.352175],\n            [-6.310745, 53.352175],\n            [-6.310745, 53.349478],\n            [-6.315262, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.352175],\n            [-6.315262, 53.354873],\n            [-6.310745, 53.354873],\n            [-6.315262, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.352175],\n            [-6.310745, 53.354873],\n            [-6.310745, 53.352175],\n            [-6.315262, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.354873],\n            [-6.315262, 53.357571],\n            [-6.310745, 53.354873],\n            [-6.315262, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.357571],\n            [-6.310745, 53.357571],\n            [-6.310745, 53.354873],\n            [-6.315262, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.357571],\n            [-6.315262, 53.360269],\n            [-6.310745, 53.360269],\n            [-6.315262, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.357571],\n            [-6.310745, 53.360269],\n            [-6.310745, 53.357571],\n            [-6.315262, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.360269],\n            [-6.315262, 53.362967],\n            [-6.310745, 53.360269],\n            [-6.315262, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.362967],\n            [-6.310745, 53.362967],\n            [-6.310745, 53.360269],\n            [-6.315262, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.362967],\n            [-6.315262, 53.365665],\n            [-6.310745, 53.365665],\n            [-6.315262, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 2,\n        \"stroke\": \"#ffffff\",\n        \"fill\": \"#ffffff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.362967],\n            [-6.310745, 53.365665],\n            [-6.310745, 53.362967],\n            [-6.315262, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.365665],\n            [-6.315262, 53.368363],\n            [-6.310745, 53.365665],\n            [-6.315262, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.368363],\n            [-6.310745, 53.368363],\n            [-6.310745, 53.365665],\n            [-6.315262, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.368363],\n            [-6.315262, 53.371061],\n            [-6.310745, 53.371061],\n            [-6.315262, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.368363],\n            [-6.310745, 53.371061],\n            [-6.310745, 53.368363],\n            [-6.315262, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.371061],\n            [-6.315262, 53.373759],\n            [-6.310745, 53.371061],\n            [-6.315262, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.373759],\n            [-6.310745, 53.373759],\n            [-6.310745, 53.371061],\n            [-6.315262, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.373759],\n            [-6.315262, 53.376457],\n            [-6.310745, 53.376457],\n            [-6.315262, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.373759],\n            [-6.310745, 53.376457],\n            [-6.310745, 53.373759],\n            [-6.315262, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.376457],\n            [-6.315262, 53.379155],\n            [-6.310745, 53.376457],\n            [-6.315262, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.379155],\n            [-6.310745, 53.379155],\n            [-6.310745, 53.376457],\n            [-6.315262, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.379155],\n            [-6.315262, 53.381853],\n            [-6.310745, 53.381853],\n            [-6.315262, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.315262, 53.379155],\n            [-6.310745, 53.381853],\n            [-6.310745, 53.379155],\n            [-6.315262, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.3198],\n            [-6.310745, 53.322498],\n            [-6.306229, 53.3198],\n            [-6.310745, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.322498],\n            [-6.306229, 53.322498],\n            [-6.306229, 53.3198],\n            [-6.310745, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.322498],\n            [-6.306229, 53.325196],\n            [-6.306229, 53.322498],\n            [-6.310745, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.322498],\n            [-6.310745, 53.325196],\n            [-6.306229, 53.325196],\n            [-6.310745, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.325196],\n            [-6.310745, 53.327894],\n            [-6.306229, 53.325196],\n            [-6.310745, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.327894],\n            [-6.306229, 53.327894],\n            [-6.306229, 53.325196],\n            [-6.310745, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.327894],\n            [-6.306229, 53.330592],\n            [-6.306229, 53.327894],\n            [-6.310745, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.327894],\n            [-6.310745, 53.330592],\n            [-6.306229, 53.330592],\n            [-6.310745, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.330592],\n            [-6.310745, 53.33329],\n            [-6.306229, 53.330592],\n            [-6.310745, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.33329],\n            [-6.306229, 53.33329],\n            [-6.306229, 53.330592],\n            [-6.310745, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.33329],\n            [-6.306229, 53.335988],\n            [-6.306229, 53.33329],\n            [-6.310745, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.33329],\n            [-6.310745, 53.335988],\n            [-6.306229, 53.335988],\n            [-6.310745, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.335988],\n            [-6.310745, 53.338686],\n            [-6.306229, 53.335988],\n            [-6.310745, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.338686],\n            [-6.306229, 53.338686],\n            [-6.306229, 53.335988],\n            [-6.310745, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.338686],\n            [-6.306229, 53.341384],\n            [-6.306229, 53.338686],\n            [-6.310745, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.338686],\n            [-6.310745, 53.341384],\n            [-6.306229, 53.341384],\n            [-6.310745, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.341384],\n            [-6.310745, 53.344082],\n            [-6.306229, 53.341384],\n            [-6.310745, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.344082],\n            [-6.306229, 53.344082],\n            [-6.306229, 53.341384],\n            [-6.310745, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.344082],\n            [-6.306229, 53.34678],\n            [-6.306229, 53.344082],\n            [-6.310745, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.344082],\n            [-6.310745, 53.34678],\n            [-6.306229, 53.34678],\n            [-6.310745, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.34678],\n            [-6.310745, 53.349478],\n            [-6.306229, 53.34678],\n            [-6.310745, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.349478],\n            [-6.306229, 53.349478],\n            [-6.306229, 53.34678],\n            [-6.310745, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.349478],\n            [-6.306229, 53.352175],\n            [-6.306229, 53.349478],\n            [-6.310745, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.349478],\n            [-6.310745, 53.352175],\n            [-6.306229, 53.352175],\n            [-6.310745, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.352175],\n            [-6.310745, 53.354873],\n            [-6.306229, 53.352175],\n            [-6.310745, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.354873],\n            [-6.306229, 53.354873],\n            [-6.306229, 53.352175],\n            [-6.310745, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.354873],\n            [-6.306229, 53.357571],\n            [-6.306229, 53.354873],\n            [-6.310745, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.354873],\n            [-6.310745, 53.357571],\n            [-6.306229, 53.357571],\n            [-6.310745, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.357571],\n            [-6.310745, 53.360269],\n            [-6.306229, 53.357571],\n            [-6.310745, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.360269],\n            [-6.306229, 53.360269],\n            [-6.306229, 53.357571],\n            [-6.310745, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.360269],\n            [-6.306229, 53.362967],\n            [-6.306229, 53.360269],\n            [-6.310745, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.360269],\n            [-6.310745, 53.362967],\n            [-6.306229, 53.362967],\n            [-6.310745, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.362967],\n            [-6.310745, 53.365665],\n            [-6.306229, 53.362967],\n            [-6.310745, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.365665],\n            [-6.306229, 53.365665],\n            [-6.306229, 53.362967],\n            [-6.310745, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.365665],\n            [-6.306229, 53.368363],\n            [-6.306229, 53.365665],\n            [-6.310745, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.365665],\n            [-6.310745, 53.368363],\n            [-6.306229, 53.368363],\n            [-6.310745, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 3,\n        \"stroke\": \"#d6ebff\",\n        \"fill\": \"#d6ebff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.368363],\n            [-6.310745, 53.371061],\n            [-6.306229, 53.368363],\n            [-6.310745, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.371061],\n            [-6.306229, 53.371061],\n            [-6.306229, 53.368363],\n            [-6.310745, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.371061],\n            [-6.306229, 53.373759],\n            [-6.306229, 53.371061],\n            [-6.310745, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.371061],\n            [-6.310745, 53.373759],\n            [-6.306229, 53.373759],\n            [-6.310745, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.373759],\n            [-6.310745, 53.376457],\n            [-6.306229, 53.373759],\n            [-6.310745, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.376457],\n            [-6.306229, 53.376457],\n            [-6.306229, 53.373759],\n            [-6.310745, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.376457],\n            [-6.306229, 53.379155],\n            [-6.306229, 53.376457],\n            [-6.310745, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.376457],\n            [-6.310745, 53.379155],\n            [-6.306229, 53.379155],\n            [-6.310745, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.379155],\n            [-6.310745, 53.381853],\n            [-6.306229, 53.379155],\n            [-6.310745, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.310745, 53.381853],\n            [-6.306229, 53.381853],\n            [-6.306229, 53.379155],\n            [-6.310745, 53.381853]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.3198],\n            [-6.306229, 53.322498],\n            [-6.301712, 53.322498],\n            [-6.306229, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.3198],\n            [-6.301712, 53.322498],\n            [-6.301712, 53.3198],\n            [-6.306229, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.322498],\n            [-6.306229, 53.325196],\n            [-6.301712, 53.322498],\n            [-6.306229, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.325196],\n            [-6.301712, 53.325196],\n            [-6.301712, 53.322498],\n            [-6.306229, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.325196],\n            [-6.306229, 53.327894],\n            [-6.301712, 53.327894],\n            [-6.306229, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.325196],\n            [-6.301712, 53.327894],\n            [-6.301712, 53.325196],\n            [-6.306229, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.327894],\n            [-6.306229, 53.330592],\n            [-6.301712, 53.327894],\n            [-6.306229, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.330592],\n            [-6.301712, 53.330592],\n            [-6.301712, 53.327894],\n            [-6.306229, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.330592],\n            [-6.306229, 53.33329],\n            [-6.301712, 53.33329],\n            [-6.306229, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.330592],\n            [-6.301712, 53.33329],\n            [-6.301712, 53.330592],\n            [-6.306229, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.33329],\n            [-6.306229, 53.335988],\n            [-6.301712, 53.33329],\n            [-6.306229, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.335988],\n            [-6.301712, 53.335988],\n            [-6.301712, 53.33329],\n            [-6.306229, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.335988],\n            [-6.306229, 53.338686],\n            [-6.301712, 53.338686],\n            [-6.306229, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.335988],\n            [-6.301712, 53.338686],\n            [-6.301712, 53.335988],\n            [-6.306229, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.338686],\n            [-6.306229, 53.341384],\n            [-6.301712, 53.338686],\n            [-6.306229, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.341384],\n            [-6.301712, 53.341384],\n            [-6.301712, 53.338686],\n            [-6.306229, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.341384],\n            [-6.306229, 53.344082],\n            [-6.301712, 53.344082],\n            [-6.306229, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.341384],\n            [-6.301712, 53.344082],\n            [-6.301712, 53.341384],\n            [-6.306229, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.344082],\n            [-6.306229, 53.34678],\n            [-6.301712, 53.344082],\n            [-6.306229, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.34678],\n            [-6.301712, 53.34678],\n            [-6.301712, 53.344082],\n            [-6.306229, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.34678],\n            [-6.306229, 53.349478],\n            [-6.301712, 53.349478],\n            [-6.306229, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.34678],\n            [-6.301712, 53.349478],\n            [-6.301712, 53.34678],\n            [-6.306229, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.349478],\n            [-6.306229, 53.352175],\n            [-6.301712, 53.349478],\n            [-6.306229, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.352175],\n            [-6.301712, 53.352175],\n            [-6.301712, 53.349478],\n            [-6.306229, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.352175],\n            [-6.306229, 53.354873],\n            [-6.301712, 53.354873],\n            [-6.306229, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.352175],\n            [-6.301712, 53.354873],\n            [-6.301712, 53.352175],\n            [-6.306229, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.354873],\n            [-6.306229, 53.357571],\n            [-6.301712, 53.354873],\n            [-6.306229, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.357571],\n            [-6.301712, 53.357571],\n            [-6.301712, 53.354873],\n            [-6.306229, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.357571],\n            [-6.306229, 53.360269],\n            [-6.301712, 53.360269],\n            [-6.306229, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.357571],\n            [-6.301712, 53.360269],\n            [-6.301712, 53.357571],\n            [-6.306229, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.360269],\n            [-6.306229, 53.362967],\n            [-6.301712, 53.360269],\n            [-6.306229, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.362967],\n            [-6.301712, 53.362967],\n            [-6.301712, 53.360269],\n            [-6.306229, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.362967],\n            [-6.306229, 53.365665],\n            [-6.301712, 53.365665],\n            [-6.306229, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.362967],\n            [-6.301712, 53.365665],\n            [-6.301712, 53.362967],\n            [-6.306229, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 4,\n        \"stroke\": \"#a8d6ff\",\n        \"fill\": \"#a8d6ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.365665],\n            [-6.306229, 53.368363],\n            [-6.301712, 53.365665],\n            [-6.306229, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.368363],\n            [-6.301712, 53.368363],\n            [-6.301712, 53.365665],\n            [-6.306229, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.368363],\n            [-6.306229, 53.371061],\n            [-6.301712, 53.371061],\n            [-6.306229, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.368363],\n            [-6.301712, 53.371061],\n            [-6.301712, 53.368363],\n            [-6.306229, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.371061],\n            [-6.306229, 53.373759],\n            [-6.301712, 53.371061],\n            [-6.306229, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.373759],\n            [-6.301712, 53.373759],\n            [-6.301712, 53.371061],\n            [-6.306229, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.373759],\n            [-6.306229, 53.376457],\n            [-6.301712, 53.376457],\n            [-6.306229, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.373759],\n            [-6.301712, 53.376457],\n            [-6.301712, 53.373759],\n            [-6.306229, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.376457],\n            [-6.306229, 53.379155],\n            [-6.301712, 53.376457],\n            [-6.306229, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.379155],\n            [-6.301712, 53.379155],\n            [-6.301712, 53.376457],\n            [-6.306229, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.379155],\n            [-6.306229, 53.381853],\n            [-6.301712, 53.381853],\n            [-6.306229, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.306229, 53.379155],\n            [-6.301712, 53.381853],\n            [-6.301712, 53.379155],\n            [-6.306229, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.3198],\n            [-6.301712, 53.322498],\n            [-6.297196, 53.3198],\n            [-6.301712, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.322498],\n            [-6.297196, 53.322498],\n            [-6.297196, 53.3198],\n            [-6.301712, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.322498],\n            [-6.297196, 53.325196],\n            [-6.297196, 53.322498],\n            [-6.301712, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.322498],\n            [-6.301712, 53.325196],\n            [-6.297196, 53.325196],\n            [-6.301712, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.325196],\n            [-6.301712, 53.327894],\n            [-6.297196, 53.325196],\n            [-6.301712, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.327894],\n            [-6.297196, 53.327894],\n            [-6.297196, 53.325196],\n            [-6.301712, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.327894],\n            [-6.297196, 53.330592],\n            [-6.297196, 53.327894],\n            [-6.301712, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.327894],\n            [-6.301712, 53.330592],\n            [-6.297196, 53.330592],\n            [-6.301712, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.330592],\n            [-6.301712, 53.33329],\n            [-6.297196, 53.330592],\n            [-6.301712, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.33329],\n            [-6.297196, 53.33329],\n            [-6.297196, 53.330592],\n            [-6.301712, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.33329],\n            [-6.297196, 53.335988],\n            [-6.297196, 53.33329],\n            [-6.301712, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.33329],\n            [-6.301712, 53.335988],\n            [-6.297196, 53.335988],\n            [-6.301712, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.335988],\n            [-6.301712, 53.338686],\n            [-6.297196, 53.335988],\n            [-6.301712, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.338686],\n            [-6.297196, 53.338686],\n            [-6.297196, 53.335988],\n            [-6.301712, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.338686],\n            [-6.297196, 53.341384],\n            [-6.297196, 53.338686],\n            [-6.301712, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.338686],\n            [-6.301712, 53.341384],\n            [-6.297196, 53.341384],\n            [-6.301712, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.341384],\n            [-6.301712, 53.344082],\n            [-6.297196, 53.341384],\n            [-6.301712, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.344082],\n            [-6.297196, 53.344082],\n            [-6.297196, 53.341384],\n            [-6.301712, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.344082],\n            [-6.297196, 53.34678],\n            [-6.297196, 53.344082],\n            [-6.301712, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.344082],\n            [-6.301712, 53.34678],\n            [-6.297196, 53.34678],\n            [-6.301712, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.34678],\n            [-6.301712, 53.349478],\n            [-6.297196, 53.34678],\n            [-6.301712, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.349478],\n            [-6.297196, 53.349478],\n            [-6.297196, 53.34678],\n            [-6.301712, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.349478],\n            [-6.297196, 53.352175],\n            [-6.297196, 53.349478],\n            [-6.301712, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.349478],\n            [-6.301712, 53.352175],\n            [-6.297196, 53.352175],\n            [-6.301712, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.352175],\n            [-6.301712, 53.354873],\n            [-6.297196, 53.352175],\n            [-6.301712, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.354873],\n            [-6.297196, 53.354873],\n            [-6.297196, 53.352175],\n            [-6.301712, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.354873],\n            [-6.297196, 53.357571],\n            [-6.297196, 53.354873],\n            [-6.301712, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.354873],\n            [-6.301712, 53.357571],\n            [-6.297196, 53.357571],\n            [-6.301712, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.357571],\n            [-6.301712, 53.360269],\n            [-6.297196, 53.357571],\n            [-6.301712, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.360269],\n            [-6.297196, 53.360269],\n            [-6.297196, 53.357571],\n            [-6.301712, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.360269],\n            [-6.297196, 53.362967],\n            [-6.297196, 53.360269],\n            [-6.301712, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.360269],\n            [-6.301712, 53.362967],\n            [-6.297196, 53.362967],\n            [-6.301712, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.362967],\n            [-6.301712, 53.365665],\n            [-6.297196, 53.362967],\n            [-6.301712, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.365665],\n            [-6.297196, 53.365665],\n            [-6.297196, 53.362967],\n            [-6.301712, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.365665],\n            [-6.297196, 53.368363],\n            [-6.297196, 53.365665],\n            [-6.301712, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.365665],\n            [-6.301712, 53.368363],\n            [-6.297196, 53.368363],\n            [-6.301712, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.368363],\n            [-6.301712, 53.371061],\n            [-6.297196, 53.368363],\n            [-6.301712, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.371061],\n            [-6.297196, 53.371061],\n            [-6.297196, 53.368363],\n            [-6.301712, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.371061],\n            [-6.297196, 53.373759],\n            [-6.297196, 53.371061],\n            [-6.301712, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.371061],\n            [-6.301712, 53.373759],\n            [-6.297196, 53.373759],\n            [-6.301712, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.373759],\n            [-6.301712, 53.376457],\n            [-6.297196, 53.373759],\n            [-6.301712, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.376457],\n            [-6.297196, 53.376457],\n            [-6.297196, 53.373759],\n            [-6.301712, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.376457],\n            [-6.297196, 53.379155],\n            [-6.297196, 53.376457],\n            [-6.301712, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.376457],\n            [-6.301712, 53.379155],\n            [-6.297196, 53.379155],\n            [-6.301712, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.379155],\n            [-6.301712, 53.381853],\n            [-6.297196, 53.379155],\n            [-6.301712, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.301712, 53.381853],\n            [-6.297196, 53.381853],\n            [-6.297196, 53.379155],\n            [-6.301712, 53.381853]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.3198],\n            [-6.297196, 53.322498],\n            [-6.292679, 53.322498],\n            [-6.297196, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.3198],\n            [-6.292679, 53.322498],\n            [-6.292679, 53.3198],\n            [-6.297196, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.322498],\n            [-6.297196, 53.325196],\n            [-6.292679, 53.322498],\n            [-6.297196, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.325196],\n            [-6.292679, 53.325196],\n            [-6.292679, 53.322498],\n            [-6.297196, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.325196],\n            [-6.297196, 53.327894],\n            [-6.292679, 53.327894],\n            [-6.297196, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.325196],\n            [-6.292679, 53.327894],\n            [-6.292679, 53.325196],\n            [-6.297196, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.327894],\n            [-6.297196, 53.330592],\n            [-6.292679, 53.327894],\n            [-6.297196, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.330592],\n            [-6.292679, 53.330592],\n            [-6.292679, 53.327894],\n            [-6.297196, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.330592],\n            [-6.297196, 53.33329],\n            [-6.292679, 53.33329],\n            [-6.297196, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.330592],\n            [-6.292679, 53.33329],\n            [-6.292679, 53.330592],\n            [-6.297196, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.33329],\n            [-6.297196, 53.335988],\n            [-6.292679, 53.33329],\n            [-6.297196, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.335988],\n            [-6.292679, 53.335988],\n            [-6.292679, 53.33329],\n            [-6.297196, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.335988],\n            [-6.297196, 53.338686],\n            [-6.292679, 53.338686],\n            [-6.297196, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.335988],\n            [-6.292679, 53.338686],\n            [-6.292679, 53.335988],\n            [-6.297196, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.338686],\n            [-6.297196, 53.341384],\n            [-6.292679, 53.338686],\n            [-6.297196, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.341384],\n            [-6.292679, 53.341384],\n            [-6.292679, 53.338686],\n            [-6.297196, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.341384],\n            [-6.297196, 53.344082],\n            [-6.292679, 53.344082],\n            [-6.297196, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.341384],\n            [-6.292679, 53.344082],\n            [-6.292679, 53.341384],\n            [-6.297196, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.344082],\n            [-6.297196, 53.34678],\n            [-6.292679, 53.344082],\n            [-6.297196, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.34678],\n            [-6.292679, 53.34678],\n            [-6.292679, 53.344082],\n            [-6.297196, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.34678],\n            [-6.297196, 53.349478],\n            [-6.292679, 53.349478],\n            [-6.297196, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.34678],\n            [-6.292679, 53.349478],\n            [-6.292679, 53.34678],\n            [-6.297196, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.349478],\n            [-6.297196, 53.352175],\n            [-6.292679, 53.349478],\n            [-6.297196, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.352175],\n            [-6.292679, 53.352175],\n            [-6.292679, 53.349478],\n            [-6.297196, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.352175],\n            [-6.297196, 53.354873],\n            [-6.292679, 53.354873],\n            [-6.297196, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.352175],\n            [-6.292679, 53.354873],\n            [-6.292679, 53.352175],\n            [-6.297196, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.354873],\n            [-6.297196, 53.357571],\n            [-6.292679, 53.354873],\n            [-6.297196, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.357571],\n            [-6.292679, 53.357571],\n            [-6.292679, 53.354873],\n            [-6.297196, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.357571],\n            [-6.297196, 53.360269],\n            [-6.292679, 53.360269],\n            [-6.297196, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.357571],\n            [-6.292679, 53.360269],\n            [-6.292679, 53.357571],\n            [-6.297196, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.360269],\n            [-6.297196, 53.362967],\n            [-6.292679, 53.360269],\n            [-6.297196, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.362967],\n            [-6.292679, 53.362967],\n            [-6.292679, 53.360269],\n            [-6.297196, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.362967],\n            [-6.297196, 53.365665],\n            [-6.292679, 53.365665],\n            [-6.297196, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.362967],\n            [-6.292679, 53.365665],\n            [-6.292679, 53.362967],\n            [-6.297196, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.365665],\n            [-6.297196, 53.368363],\n            [-6.292679, 53.365665],\n            [-6.297196, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.368363],\n            [-6.292679, 53.368363],\n            [-6.292679, 53.365665],\n            [-6.297196, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.368363],\n            [-6.297196, 53.371061],\n            [-6.292679, 53.371061],\n            [-6.297196, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.368363],\n            [-6.292679, 53.371061],\n            [-6.292679, 53.368363],\n            [-6.297196, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.371061],\n            [-6.297196, 53.373759],\n            [-6.292679, 53.371061],\n            [-6.297196, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.373759],\n            [-6.292679, 53.373759],\n            [-6.292679, 53.371061],\n            [-6.297196, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.373759],\n            [-6.297196, 53.376457],\n            [-6.292679, 53.376457],\n            [-6.297196, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.373759],\n            [-6.292679, 53.376457],\n            [-6.292679, 53.373759],\n            [-6.297196, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.376457],\n            [-6.297196, 53.379155],\n            [-6.292679, 53.376457],\n            [-6.297196, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.379155],\n            [-6.292679, 53.379155],\n            [-6.292679, 53.376457],\n            [-6.297196, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.379155],\n            [-6.297196, 53.381853],\n            [-6.292679, 53.381853],\n            [-6.297196, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.297196, 53.379155],\n            [-6.292679, 53.381853],\n            [-6.292679, 53.379155],\n            [-6.297196, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.3198],\n            [-6.292679, 53.322498],\n            [-6.288163, 53.3198],\n            [-6.292679, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.322498],\n            [-6.288163, 53.322498],\n            [-6.288163, 53.3198],\n            [-6.292679, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.322498],\n            [-6.288163, 53.325196],\n            [-6.288163, 53.322498],\n            [-6.292679, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.322498],\n            [-6.292679, 53.325196],\n            [-6.288163, 53.325196],\n            [-6.292679, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.325196],\n            [-6.292679, 53.327894],\n            [-6.288163, 53.325196],\n            [-6.292679, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.327894],\n            [-6.288163, 53.327894],\n            [-6.288163, 53.325196],\n            [-6.292679, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.327894],\n            [-6.288163, 53.330592],\n            [-6.288163, 53.327894],\n            [-6.292679, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.327894],\n            [-6.292679, 53.330592],\n            [-6.288163, 53.330592],\n            [-6.292679, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.330592],\n            [-6.292679, 53.33329],\n            [-6.288163, 53.330592],\n            [-6.292679, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.33329],\n            [-6.288163, 53.33329],\n            [-6.288163, 53.330592],\n            [-6.292679, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.33329],\n            [-6.288163, 53.335988],\n            [-6.288163, 53.33329],\n            [-6.292679, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.33329],\n            [-6.292679, 53.335988],\n            [-6.288163, 53.335988],\n            [-6.292679, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.335988],\n            [-6.292679, 53.338686],\n            [-6.288163, 53.335988],\n            [-6.292679, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.338686],\n            [-6.288163, 53.338686],\n            [-6.288163, 53.335988],\n            [-6.292679, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.338686],\n            [-6.288163, 53.341384],\n            [-6.288163, 53.338686],\n            [-6.292679, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.338686],\n            [-6.292679, 53.341384],\n            [-6.288163, 53.341384],\n            [-6.292679, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.341384],\n            [-6.292679, 53.344082],\n            [-6.288163, 53.341384],\n            [-6.292679, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.344082],\n            [-6.288163, 53.344082],\n            [-6.288163, 53.341384],\n            [-6.292679, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.344082],\n            [-6.288163, 53.34678],\n            [-6.288163, 53.344082],\n            [-6.292679, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.344082],\n            [-6.292679, 53.34678],\n            [-6.288163, 53.34678],\n            [-6.292679, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.34678],\n            [-6.292679, 53.349478],\n            [-6.288163, 53.34678],\n            [-6.292679, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.349478],\n            [-6.288163, 53.349478],\n            [-6.288163, 53.34678],\n            [-6.292679, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.349478],\n            [-6.288163, 53.352175],\n            [-6.288163, 53.349478],\n            [-6.292679, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.349478],\n            [-6.292679, 53.352175],\n            [-6.288163, 53.352175],\n            [-6.292679, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.352175],\n            [-6.292679, 53.354873],\n            [-6.288163, 53.352175],\n            [-6.292679, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.354873],\n            [-6.288163, 53.354873],\n            [-6.288163, 53.352175],\n            [-6.292679, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.354873],\n            [-6.288163, 53.357571],\n            [-6.288163, 53.354873],\n            [-6.292679, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.354873],\n            [-6.292679, 53.357571],\n            [-6.288163, 53.357571],\n            [-6.292679, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.357571],\n            [-6.292679, 53.360269],\n            [-6.288163, 53.357571],\n            [-6.292679, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.360269],\n            [-6.288163, 53.360269],\n            [-6.288163, 53.357571],\n            [-6.292679, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.360269],\n            [-6.288163, 53.362967],\n            [-6.288163, 53.360269],\n            [-6.292679, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.360269],\n            [-6.292679, 53.362967],\n            [-6.288163, 53.362967],\n            [-6.292679, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.362967],\n            [-6.292679, 53.365665],\n            [-6.288163, 53.362967],\n            [-6.292679, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.365665],\n            [-6.288163, 53.365665],\n            [-6.288163, 53.362967],\n            [-6.292679, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.365665],\n            [-6.288163, 53.368363],\n            [-6.288163, 53.365665],\n            [-6.292679, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.365665],\n            [-6.292679, 53.368363],\n            [-6.288163, 53.368363],\n            [-6.292679, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.368363],\n            [-6.292679, 53.371061],\n            [-6.288163, 53.368363],\n            [-6.292679, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.371061],\n            [-6.288163, 53.371061],\n            [-6.288163, 53.368363],\n            [-6.292679, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.371061],\n            [-6.288163, 53.373759],\n            [-6.288163, 53.371061],\n            [-6.292679, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.371061],\n            [-6.292679, 53.373759],\n            [-6.288163, 53.373759],\n            [-6.292679, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.373759],\n            [-6.292679, 53.376457],\n            [-6.288163, 53.373759],\n            [-6.292679, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.376457],\n            [-6.288163, 53.376457],\n            [-6.288163, 53.373759],\n            [-6.292679, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.376457],\n            [-6.288163, 53.379155],\n            [-6.288163, 53.376457],\n            [-6.292679, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.376457],\n            [-6.292679, 53.379155],\n            [-6.288163, 53.379155],\n            [-6.292679, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.379155],\n            [-6.292679, 53.381853],\n            [-6.288163, 53.379155],\n            [-6.292679, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.292679, 53.381853],\n            [-6.288163, 53.381853],\n            [-6.288163, 53.379155],\n            [-6.292679, 53.381853]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.3198],\n            [-6.288163, 53.322498],\n            [-6.283646, 53.322498],\n            [-6.288163, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.3198],\n            [-6.283646, 53.322498],\n            [-6.283646, 53.3198],\n            [-6.288163, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.322498],\n            [-6.288163, 53.325196],\n            [-6.283646, 53.322498],\n            [-6.288163, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.325196],\n            [-6.283646, 53.325196],\n            [-6.283646, 53.322498],\n            [-6.288163, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.325196],\n            [-6.288163, 53.327894],\n            [-6.283646, 53.327894],\n            [-6.288163, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.325196],\n            [-6.283646, 53.327894],\n            [-6.283646, 53.325196],\n            [-6.288163, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.327894],\n            [-6.288163, 53.330592],\n            [-6.283646, 53.327894],\n            [-6.288163, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.330592],\n            [-6.283646, 53.330592],\n            [-6.283646, 53.327894],\n            [-6.288163, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.330592],\n            [-6.288163, 53.33329],\n            [-6.283646, 53.33329],\n            [-6.288163, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.330592],\n            [-6.283646, 53.33329],\n            [-6.283646, 53.330592],\n            [-6.288163, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.33329],\n            [-6.288163, 53.335988],\n            [-6.283646, 53.33329],\n            [-6.288163, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.335988],\n            [-6.283646, 53.335988],\n            [-6.283646, 53.33329],\n            [-6.288163, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.335988],\n            [-6.288163, 53.338686],\n            [-6.283646, 53.338686],\n            [-6.288163, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.335988],\n            [-6.283646, 53.338686],\n            [-6.283646, 53.335988],\n            [-6.288163, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.338686],\n            [-6.288163, 53.341384],\n            [-6.283646, 53.338686],\n            [-6.288163, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.341384],\n            [-6.283646, 53.341384],\n            [-6.283646, 53.338686],\n            [-6.288163, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.341384],\n            [-6.288163, 53.344082],\n            [-6.283646, 53.344082],\n            [-6.288163, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.341384],\n            [-6.283646, 53.344082],\n            [-6.283646, 53.341384],\n            [-6.288163, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.344082],\n            [-6.288163, 53.34678],\n            [-6.283646, 53.344082],\n            [-6.288163, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.34678],\n            [-6.283646, 53.34678],\n            [-6.283646, 53.344082],\n            [-6.288163, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.34678],\n            [-6.288163, 53.349478],\n            [-6.283646, 53.349478],\n            [-6.288163, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.34678],\n            [-6.283646, 53.349478],\n            [-6.283646, 53.34678],\n            [-6.288163, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.349478],\n            [-6.288163, 53.352175],\n            [-6.283646, 53.349478],\n            [-6.288163, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.352175],\n            [-6.283646, 53.352175],\n            [-6.283646, 53.349478],\n            [-6.288163, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.352175],\n            [-6.288163, 53.354873],\n            [-6.283646, 53.354873],\n            [-6.288163, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.352175],\n            [-6.283646, 53.354873],\n            [-6.283646, 53.352175],\n            [-6.288163, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.354873],\n            [-6.288163, 53.357571],\n            [-6.283646, 53.354873],\n            [-6.288163, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.357571],\n            [-6.283646, 53.357571],\n            [-6.283646, 53.354873],\n            [-6.288163, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.357571],\n            [-6.288163, 53.360269],\n            [-6.283646, 53.360269],\n            [-6.288163, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.357571],\n            [-6.283646, 53.360269],\n            [-6.283646, 53.357571],\n            [-6.288163, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.360269],\n            [-6.288163, 53.362967],\n            [-6.283646, 53.360269],\n            [-6.288163, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.362967],\n            [-6.283646, 53.362967],\n            [-6.283646, 53.360269],\n            [-6.288163, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.362967],\n            [-6.288163, 53.365665],\n            [-6.283646, 53.365665],\n            [-6.288163, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.362967],\n            [-6.283646, 53.365665],\n            [-6.283646, 53.362967],\n            [-6.288163, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.365665],\n            [-6.288163, 53.368363],\n            [-6.283646, 53.365665],\n            [-6.288163, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.368363],\n            [-6.283646, 53.368363],\n            [-6.283646, 53.365665],\n            [-6.288163, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.368363],\n            [-6.288163, 53.371061],\n            [-6.283646, 53.371061],\n            [-6.288163, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.368363],\n            [-6.283646, 53.371061],\n            [-6.283646, 53.368363],\n            [-6.288163, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.371061],\n            [-6.288163, 53.373759],\n            [-6.283646, 53.371061],\n            [-6.288163, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.373759],\n            [-6.283646, 53.373759],\n            [-6.283646, 53.371061],\n            [-6.288163, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.373759],\n            [-6.288163, 53.376457],\n            [-6.283646, 53.376457],\n            [-6.288163, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.373759],\n            [-6.283646, 53.376457],\n            [-6.283646, 53.373759],\n            [-6.288163, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.376457],\n            [-6.288163, 53.379155],\n            [-6.283646, 53.376457],\n            [-6.288163, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.379155],\n            [-6.283646, 53.379155],\n            [-6.283646, 53.376457],\n            [-6.288163, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.379155],\n            [-6.288163, 53.381853],\n            [-6.283646, 53.381853],\n            [-6.288163, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.288163, 53.379155],\n            [-6.283646, 53.381853],\n            [-6.283646, 53.379155],\n            [-6.288163, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.3198],\n            [-6.283646, 53.322498],\n            [-6.279129, 53.3198],\n            [-6.283646, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.322498],\n            [-6.279129, 53.322498],\n            [-6.279129, 53.3198],\n            [-6.283646, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.322498],\n            [-6.279129, 53.325196],\n            [-6.279129, 53.322498],\n            [-6.283646, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.322498],\n            [-6.283646, 53.325196],\n            [-6.279129, 53.325196],\n            [-6.283646, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.325196],\n            [-6.283646, 53.327894],\n            [-6.279129, 53.325196],\n            [-6.283646, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.327894],\n            [-6.279129, 53.327894],\n            [-6.279129, 53.325196],\n            [-6.283646, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.327894],\n            [-6.279129, 53.330592],\n            [-6.279129, 53.327894],\n            [-6.283646, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.327894],\n            [-6.283646, 53.330592],\n            [-6.279129, 53.330592],\n            [-6.283646, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.330592],\n            [-6.283646, 53.33329],\n            [-6.279129, 53.330592],\n            [-6.283646, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.33329],\n            [-6.279129, 53.33329],\n            [-6.279129, 53.330592],\n            [-6.283646, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.33329],\n            [-6.279129, 53.335988],\n            [-6.279129, 53.33329],\n            [-6.283646, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.33329],\n            [-6.283646, 53.335988],\n            [-6.279129, 53.335988],\n            [-6.283646, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.335988],\n            [-6.283646, 53.338686],\n            [-6.279129, 53.335988],\n            [-6.283646, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.338686],\n            [-6.279129, 53.338686],\n            [-6.279129, 53.335988],\n            [-6.283646, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.338686],\n            [-6.279129, 53.341384],\n            [-6.279129, 53.338686],\n            [-6.283646, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.338686],\n            [-6.283646, 53.341384],\n            [-6.279129, 53.341384],\n            [-6.283646, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.341384],\n            [-6.283646, 53.344082],\n            [-6.279129, 53.341384],\n            [-6.283646, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.344082],\n            [-6.279129, 53.344082],\n            [-6.279129, 53.341384],\n            [-6.283646, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.344082],\n            [-6.279129, 53.34678],\n            [-6.279129, 53.344082],\n            [-6.283646, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.344082],\n            [-6.283646, 53.34678],\n            [-6.279129, 53.34678],\n            [-6.283646, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.34678],\n            [-6.283646, 53.349478],\n            [-6.279129, 53.34678],\n            [-6.283646, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.349478],\n            [-6.279129, 53.349478],\n            [-6.279129, 53.34678],\n            [-6.283646, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.349478],\n            [-6.279129, 53.352175],\n            [-6.279129, 53.349478],\n            [-6.283646, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.349478],\n            [-6.283646, 53.352175],\n            [-6.279129, 53.352175],\n            [-6.283646, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.352175],\n            [-6.283646, 53.354873],\n            [-6.279129, 53.352175],\n            [-6.283646, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.354873],\n            [-6.279129, 53.354873],\n            [-6.279129, 53.352175],\n            [-6.283646, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.354873],\n            [-6.279129, 53.357571],\n            [-6.279129, 53.354873],\n            [-6.283646, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.354873],\n            [-6.283646, 53.357571],\n            [-6.279129, 53.357571],\n            [-6.283646, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.357571],\n            [-6.283646, 53.360269],\n            [-6.279129, 53.357571],\n            [-6.283646, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.360269],\n            [-6.279129, 53.360269],\n            [-6.279129, 53.357571],\n            [-6.283646, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.360269],\n            [-6.279129, 53.362967],\n            [-6.279129, 53.360269],\n            [-6.283646, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.360269],\n            [-6.283646, 53.362967],\n            [-6.279129, 53.362967],\n            [-6.283646, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.362967],\n            [-6.283646, 53.365665],\n            [-6.279129, 53.362967],\n            [-6.283646, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.365665],\n            [-6.279129, 53.365665],\n            [-6.279129, 53.362967],\n            [-6.283646, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.365665],\n            [-6.279129, 53.368363],\n            [-6.279129, 53.365665],\n            [-6.283646, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.365665],\n            [-6.283646, 53.368363],\n            [-6.279129, 53.368363],\n            [-6.283646, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.368363],\n            [-6.283646, 53.371061],\n            [-6.279129, 53.368363],\n            [-6.283646, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.371061],\n            [-6.279129, 53.371061],\n            [-6.279129, 53.368363],\n            [-6.283646, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.371061],\n            [-6.279129, 53.373759],\n            [-6.279129, 53.371061],\n            [-6.283646, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.371061],\n            [-6.283646, 53.373759],\n            [-6.279129, 53.373759],\n            [-6.283646, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.373759],\n            [-6.283646, 53.376457],\n            [-6.279129, 53.373759],\n            [-6.283646, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.376457],\n            [-6.279129, 53.376457],\n            [-6.279129, 53.373759],\n            [-6.283646, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.376457],\n            [-6.279129, 53.379155],\n            [-6.279129, 53.376457],\n            [-6.283646, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.376457],\n            [-6.283646, 53.379155],\n            [-6.279129, 53.379155],\n            [-6.283646, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.379155],\n            [-6.283646, 53.381853],\n            [-6.279129, 53.379155],\n            [-6.283646, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.283646, 53.381853],\n            [-6.279129, 53.381853],\n            [-6.279129, 53.379155],\n            [-6.283646, 53.381853]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.3198],\n            [-6.279129, 53.322498],\n            [-6.274613, 53.322498],\n            [-6.279129, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.3198],\n            [-6.274613, 53.322498],\n            [-6.274613, 53.3198],\n            [-6.279129, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.322498],\n            [-6.279129, 53.325196],\n            [-6.274613, 53.322498],\n            [-6.279129, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.325196],\n            [-6.274613, 53.325196],\n            [-6.274613, 53.322498],\n            [-6.279129, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.325196],\n            [-6.279129, 53.327894],\n            [-6.274613, 53.327894],\n            [-6.279129, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.325196],\n            [-6.274613, 53.327894],\n            [-6.274613, 53.325196],\n            [-6.279129, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.327894],\n            [-6.279129, 53.330592],\n            [-6.274613, 53.327894],\n            [-6.279129, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.330592],\n            [-6.274613, 53.330592],\n            [-6.274613, 53.327894],\n            [-6.279129, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.330592],\n            [-6.279129, 53.33329],\n            [-6.274613, 53.33329],\n            [-6.279129, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.330592],\n            [-6.274613, 53.33329],\n            [-6.274613, 53.330592],\n            [-6.279129, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.33329],\n            [-6.279129, 53.335988],\n            [-6.274613, 53.33329],\n            [-6.279129, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.335988],\n            [-6.274613, 53.335988],\n            [-6.274613, 53.33329],\n            [-6.279129, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.335988],\n            [-6.279129, 53.338686],\n            [-6.274613, 53.338686],\n            [-6.279129, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.335988],\n            [-6.274613, 53.338686],\n            [-6.274613, 53.335988],\n            [-6.279129, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.338686],\n            [-6.279129, 53.341384],\n            [-6.274613, 53.338686],\n            [-6.279129, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.341384],\n            [-6.274613, 53.341384],\n            [-6.274613, 53.338686],\n            [-6.279129, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.341384],\n            [-6.279129, 53.344082],\n            [-6.274613, 53.344082],\n            [-6.279129, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.341384],\n            [-6.274613, 53.344082],\n            [-6.274613, 53.341384],\n            [-6.279129, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.344082],\n            [-6.279129, 53.34678],\n            [-6.274613, 53.344082],\n            [-6.279129, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.34678],\n            [-6.274613, 53.34678],\n            [-6.274613, 53.344082],\n            [-6.279129, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.34678],\n            [-6.279129, 53.349478],\n            [-6.274613, 53.349478],\n            [-6.279129, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.34678],\n            [-6.274613, 53.349478],\n            [-6.274613, 53.34678],\n            [-6.279129, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.349478],\n            [-6.279129, 53.352175],\n            [-6.274613, 53.349478],\n            [-6.279129, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.352175],\n            [-6.274613, 53.352175],\n            [-6.274613, 53.349478],\n            [-6.279129, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.352175],\n            [-6.279129, 53.354873],\n            [-6.274613, 53.354873],\n            [-6.279129, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.352175],\n            [-6.274613, 53.354873],\n            [-6.274613, 53.352175],\n            [-6.279129, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.354873],\n            [-6.279129, 53.357571],\n            [-6.274613, 53.354873],\n            [-6.279129, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.357571],\n            [-6.274613, 53.357571],\n            [-6.274613, 53.354873],\n            [-6.279129, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.357571],\n            [-6.279129, 53.360269],\n            [-6.274613, 53.360269],\n            [-6.279129, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.357571],\n            [-6.274613, 53.360269],\n            [-6.274613, 53.357571],\n            [-6.279129, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.360269],\n            [-6.279129, 53.362967],\n            [-6.274613, 53.360269],\n            [-6.279129, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.362967],\n            [-6.274613, 53.362967],\n            [-6.274613, 53.360269],\n            [-6.279129, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.362967],\n            [-6.279129, 53.365665],\n            [-6.274613, 53.365665],\n            [-6.279129, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.362967],\n            [-6.274613, 53.365665],\n            [-6.274613, 53.362967],\n            [-6.279129, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.365665],\n            [-6.279129, 53.368363],\n            [-6.274613, 53.365665],\n            [-6.279129, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.368363],\n            [-6.274613, 53.368363],\n            [-6.274613, 53.365665],\n            [-6.279129, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.368363],\n            [-6.279129, 53.371061],\n            [-6.274613, 53.371061],\n            [-6.279129, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.368363],\n            [-6.274613, 53.371061],\n            [-6.274613, 53.368363],\n            [-6.279129, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.371061],\n            [-6.279129, 53.373759],\n            [-6.274613, 53.371061],\n            [-6.279129, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.373759],\n            [-6.274613, 53.373759],\n            [-6.274613, 53.371061],\n            [-6.279129, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.373759],\n            [-6.279129, 53.376457],\n            [-6.274613, 53.376457],\n            [-6.279129, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.373759],\n            [-6.274613, 53.376457],\n            [-6.274613, 53.373759],\n            [-6.279129, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.376457],\n            [-6.279129, 53.379155],\n            [-6.274613, 53.376457],\n            [-6.279129, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.379155],\n            [-6.274613, 53.379155],\n            [-6.274613, 53.376457],\n            [-6.279129, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.379155],\n            [-6.279129, 53.381853],\n            [-6.274613, 53.381853],\n            [-6.279129, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.279129, 53.379155],\n            [-6.274613, 53.381853],\n            [-6.274613, 53.379155],\n            [-6.279129, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.3198],\n            [-6.274613, 53.322498],\n            [-6.270096, 53.3198],\n            [-6.274613, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.322498],\n            [-6.270096, 53.322498],\n            [-6.270096, 53.3198],\n            [-6.274613, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.322498],\n            [-6.270096, 53.325196],\n            [-6.270096, 53.322498],\n            [-6.274613, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.322498],\n            [-6.274613, 53.325196],\n            [-6.270096, 53.325196],\n            [-6.274613, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.325196],\n            [-6.274613, 53.327894],\n            [-6.270096, 53.325196],\n            [-6.274613, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.327894],\n            [-6.270096, 53.327894],\n            [-6.270096, 53.325196],\n            [-6.274613, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.327894],\n            [-6.270096, 53.330592],\n            [-6.270096, 53.327894],\n            [-6.274613, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.327894],\n            [-6.274613, 53.330592],\n            [-6.270096, 53.330592],\n            [-6.274613, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.330592],\n            [-6.274613, 53.33329],\n            [-6.270096, 53.330592],\n            [-6.274613, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.33329],\n            [-6.270096, 53.33329],\n            [-6.270096, 53.330592],\n            [-6.274613, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.33329],\n            [-6.270096, 53.335988],\n            [-6.270096, 53.33329],\n            [-6.274613, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.33329],\n            [-6.274613, 53.335988],\n            [-6.270096, 53.335988],\n            [-6.274613, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.335988],\n            [-6.274613, 53.338686],\n            [-6.270096, 53.335988],\n            [-6.274613, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.338686],\n            [-6.270096, 53.338686],\n            [-6.270096, 53.335988],\n            [-6.274613, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.338686],\n            [-6.270096, 53.341384],\n            [-6.270096, 53.338686],\n            [-6.274613, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.338686],\n            [-6.274613, 53.341384],\n            [-6.270096, 53.341384],\n            [-6.274613, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.341384],\n            [-6.274613, 53.344082],\n            [-6.270096, 53.341384],\n            [-6.274613, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.344082],\n            [-6.270096, 53.344082],\n            [-6.270096, 53.341384],\n            [-6.274613, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.344082],\n            [-6.270096, 53.34678],\n            [-6.270096, 53.344082],\n            [-6.274613, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.344082],\n            [-6.274613, 53.34678],\n            [-6.270096, 53.34678],\n            [-6.274613, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.34678],\n            [-6.274613, 53.349478],\n            [-6.270096, 53.34678],\n            [-6.274613, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.349478],\n            [-6.270096, 53.349478],\n            [-6.270096, 53.34678],\n            [-6.274613, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.349478],\n            [-6.270096, 53.352175],\n            [-6.270096, 53.349478],\n            [-6.274613, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.349478],\n            [-6.274613, 53.352175],\n            [-6.270096, 53.352175],\n            [-6.274613, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.352175],\n            [-6.274613, 53.354873],\n            [-6.270096, 53.352175],\n            [-6.274613, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.354873],\n            [-6.270096, 53.354873],\n            [-6.270096, 53.352175],\n            [-6.274613, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.354873],\n            [-6.270096, 53.357571],\n            [-6.270096, 53.354873],\n            [-6.274613, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.354873],\n            [-6.274613, 53.357571],\n            [-6.270096, 53.357571],\n            [-6.274613, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.357571],\n            [-6.274613, 53.360269],\n            [-6.270096, 53.357571],\n            [-6.274613, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.360269],\n            [-6.270096, 53.360269],\n            [-6.270096, 53.357571],\n            [-6.274613, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.360269],\n            [-6.270096, 53.362967],\n            [-6.270096, 53.360269],\n            [-6.274613, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.360269],\n            [-6.274613, 53.362967],\n            [-6.270096, 53.362967],\n            [-6.274613, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.362967],\n            [-6.274613, 53.365665],\n            [-6.270096, 53.362967],\n            [-6.274613, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.365665],\n            [-6.270096, 53.365665],\n            [-6.270096, 53.362967],\n            [-6.274613, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.365665],\n            [-6.270096, 53.368363],\n            [-6.270096, 53.365665],\n            [-6.274613, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.365665],\n            [-6.274613, 53.368363],\n            [-6.270096, 53.368363],\n            [-6.274613, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.368363],\n            [-6.274613, 53.371061],\n            [-6.270096, 53.368363],\n            [-6.274613, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.371061],\n            [-6.270096, 53.371061],\n            [-6.270096, 53.368363],\n            [-6.274613, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.371061],\n            [-6.270096, 53.373759],\n            [-6.270096, 53.371061],\n            [-6.274613, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.371061],\n            [-6.274613, 53.373759],\n            [-6.270096, 53.373759],\n            [-6.274613, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.373759],\n            [-6.274613, 53.376457],\n            [-6.270096, 53.373759],\n            [-6.274613, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.376457],\n            [-6.270096, 53.376457],\n            [-6.270096, 53.373759],\n            [-6.274613, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.376457],\n            [-6.270096, 53.379155],\n            [-6.270096, 53.376457],\n            [-6.274613, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.376457],\n            [-6.274613, 53.379155],\n            [-6.270096, 53.379155],\n            [-6.274613, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.379155],\n            [-6.274613, 53.381853],\n            [-6.270096, 53.379155],\n            [-6.274613, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.274613, 53.381853],\n            [-6.270096, 53.381853],\n            [-6.270096, 53.379155],\n            [-6.274613, 53.381853]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.3198],\n            [-6.270096, 53.322498],\n            [-6.26558, 53.322498],\n            [-6.270096, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.3198],\n            [-6.26558, 53.322498],\n            [-6.26558, 53.3198],\n            [-6.270096, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.322498],\n            [-6.270096, 53.325196],\n            [-6.26558, 53.322498],\n            [-6.270096, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.325196],\n            [-6.26558, 53.325196],\n            [-6.26558, 53.322498],\n            [-6.270096, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.325196],\n            [-6.270096, 53.327894],\n            [-6.26558, 53.327894],\n            [-6.270096, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.325196],\n            [-6.26558, 53.327894],\n            [-6.26558, 53.325196],\n            [-6.270096, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.327894],\n            [-6.270096, 53.330592],\n            [-6.26558, 53.327894],\n            [-6.270096, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.330592],\n            [-6.26558, 53.330592],\n            [-6.26558, 53.327894],\n            [-6.270096, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.330592],\n            [-6.270096, 53.33329],\n            [-6.26558, 53.33329],\n            [-6.270096, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.330592],\n            [-6.26558, 53.33329],\n            [-6.26558, 53.330592],\n            [-6.270096, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.33329],\n            [-6.270096, 53.335988],\n            [-6.26558, 53.33329],\n            [-6.270096, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.335988],\n            [-6.26558, 53.335988],\n            [-6.26558, 53.33329],\n            [-6.270096, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.335988],\n            [-6.270096, 53.338686],\n            [-6.26558, 53.338686],\n            [-6.270096, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.335988],\n            [-6.26558, 53.338686],\n            [-6.26558, 53.335988],\n            [-6.270096, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.338686],\n            [-6.270096, 53.341384],\n            [-6.26558, 53.338686],\n            [-6.270096, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.341384],\n            [-6.26558, 53.341384],\n            [-6.26558, 53.338686],\n            [-6.270096, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.341384],\n            [-6.270096, 53.344082],\n            [-6.26558, 53.344082],\n            [-6.270096, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.341384],\n            [-6.26558, 53.344082],\n            [-6.26558, 53.341384],\n            [-6.270096, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.344082],\n            [-6.270096, 53.34678],\n            [-6.26558, 53.344082],\n            [-6.270096, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.34678],\n            [-6.26558, 53.34678],\n            [-6.26558, 53.344082],\n            [-6.270096, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.34678],\n            [-6.270096, 53.349478],\n            [-6.26558, 53.349478],\n            [-6.270096, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.34678],\n            [-6.26558, 53.349478],\n            [-6.26558, 53.34678],\n            [-6.270096, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.349478],\n            [-6.270096, 53.352175],\n            [-6.26558, 53.349478],\n            [-6.270096, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.352175],\n            [-6.26558, 53.352175],\n            [-6.26558, 53.349478],\n            [-6.270096, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.352175],\n            [-6.270096, 53.354873],\n            [-6.26558, 53.354873],\n            [-6.270096, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.352175],\n            [-6.26558, 53.354873],\n            [-6.26558, 53.352175],\n            [-6.270096, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.354873],\n            [-6.270096, 53.357571],\n            [-6.26558, 53.354873],\n            [-6.270096, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.357571],\n            [-6.26558, 53.357571],\n            [-6.26558, 53.354873],\n            [-6.270096, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.357571],\n            [-6.270096, 53.360269],\n            [-6.26558, 53.360269],\n            [-6.270096, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.357571],\n            [-6.26558, 53.360269],\n            [-6.26558, 53.357571],\n            [-6.270096, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.360269],\n            [-6.270096, 53.362967],\n            [-6.26558, 53.360269],\n            [-6.270096, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.362967],\n            [-6.26558, 53.362967],\n            [-6.26558, 53.360269],\n            [-6.270096, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.362967],\n            [-6.270096, 53.365665],\n            [-6.26558, 53.365665],\n            [-6.270096, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.362967],\n            [-6.26558, 53.365665],\n            [-6.26558, 53.362967],\n            [-6.270096, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.365665],\n            [-6.270096, 53.368363],\n            [-6.26558, 53.365665],\n            [-6.270096, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.368363],\n            [-6.26558, 53.368363],\n            [-6.26558, 53.365665],\n            [-6.270096, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.368363],\n            [-6.270096, 53.371061],\n            [-6.26558, 53.371061],\n            [-6.270096, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.368363],\n            [-6.26558, 53.371061],\n            [-6.26558, 53.368363],\n            [-6.270096, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.371061],\n            [-6.270096, 53.373759],\n            [-6.26558, 53.371061],\n            [-6.270096, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.373759],\n            [-6.26558, 53.373759],\n            [-6.26558, 53.371061],\n            [-6.270096, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.373759],\n            [-6.270096, 53.376457],\n            [-6.26558, 53.376457],\n            [-6.270096, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.373759],\n            [-6.26558, 53.376457],\n            [-6.26558, 53.373759],\n            [-6.270096, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.376457],\n            [-6.270096, 53.379155],\n            [-6.26558, 53.376457],\n            [-6.270096, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.379155],\n            [-6.26558, 53.379155],\n            [-6.26558, 53.376457],\n            [-6.270096, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.379155],\n            [-6.270096, 53.381853],\n            [-6.26558, 53.381853],\n            [-6.270096, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.270096, 53.379155],\n            [-6.26558, 53.381853],\n            [-6.26558, 53.379155],\n            [-6.270096, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.3198],\n            [-6.26558, 53.322498],\n            [-6.261063, 53.3198],\n            [-6.26558, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.322498],\n            [-6.261063, 53.322498],\n            [-6.261063, 53.3198],\n            [-6.26558, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.322498],\n            [-6.261063, 53.325196],\n            [-6.261063, 53.322498],\n            [-6.26558, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.322498],\n            [-6.26558, 53.325196],\n            [-6.261063, 53.325196],\n            [-6.26558, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.325196],\n            [-6.26558, 53.327894],\n            [-6.261063, 53.325196],\n            [-6.26558, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.327894],\n            [-6.261063, 53.327894],\n            [-6.261063, 53.325196],\n            [-6.26558, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.327894],\n            [-6.261063, 53.330592],\n            [-6.261063, 53.327894],\n            [-6.26558, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.327894],\n            [-6.26558, 53.330592],\n            [-6.261063, 53.330592],\n            [-6.26558, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.330592],\n            [-6.26558, 53.33329],\n            [-6.261063, 53.330592],\n            [-6.26558, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.33329],\n            [-6.261063, 53.33329],\n            [-6.261063, 53.330592],\n            [-6.26558, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.33329],\n            [-6.261063, 53.335988],\n            [-6.261063, 53.33329],\n            [-6.26558, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.33329],\n            [-6.26558, 53.335988],\n            [-6.261063, 53.335988],\n            [-6.26558, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.335988],\n            [-6.26558, 53.338686],\n            [-6.261063, 53.335988],\n            [-6.26558, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.338686],\n            [-6.261063, 53.338686],\n            [-6.261063, 53.335988],\n            [-6.26558, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.338686],\n            [-6.261063, 53.341384],\n            [-6.261063, 53.338686],\n            [-6.26558, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.338686],\n            [-6.26558, 53.341384],\n            [-6.261063, 53.341384],\n            [-6.26558, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.341384],\n            [-6.26558, 53.344082],\n            [-6.261063, 53.341384],\n            [-6.26558, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.344082],\n            [-6.261063, 53.344082],\n            [-6.261063, 53.341384],\n            [-6.26558, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.344082],\n            [-6.261063, 53.34678],\n            [-6.261063, 53.344082],\n            [-6.26558, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.344082],\n            [-6.26558, 53.34678],\n            [-6.261063, 53.34678],\n            [-6.26558, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.34678],\n            [-6.26558, 53.349478],\n            [-6.261063, 53.34678],\n            [-6.26558, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.349478],\n            [-6.261063, 53.349478],\n            [-6.261063, 53.34678],\n            [-6.26558, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.349478],\n            [-6.261063, 53.352175],\n            [-6.261063, 53.349478],\n            [-6.26558, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.349478],\n            [-6.26558, 53.352175],\n            [-6.261063, 53.352175],\n            [-6.26558, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.352175],\n            [-6.26558, 53.354873],\n            [-6.261063, 53.352175],\n            [-6.26558, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.354873],\n            [-6.261063, 53.354873],\n            [-6.261063, 53.352175],\n            [-6.26558, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.354873],\n            [-6.261063, 53.357571],\n            [-6.261063, 53.354873],\n            [-6.26558, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.354873],\n            [-6.26558, 53.357571],\n            [-6.261063, 53.357571],\n            [-6.26558, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.357571],\n            [-6.26558, 53.360269],\n            [-6.261063, 53.357571],\n            [-6.26558, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.360269],\n            [-6.261063, 53.360269],\n            [-6.261063, 53.357571],\n            [-6.26558, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.360269],\n            [-6.261063, 53.362967],\n            [-6.261063, 53.360269],\n            [-6.26558, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.360269],\n            [-6.26558, 53.362967],\n            [-6.261063, 53.362967],\n            [-6.26558, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.362967],\n            [-6.26558, 53.365665],\n            [-6.261063, 53.362967],\n            [-6.26558, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.365665],\n            [-6.261063, 53.365665],\n            [-6.261063, 53.362967],\n            [-6.26558, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.365665],\n            [-6.261063, 53.368363],\n            [-6.261063, 53.365665],\n            [-6.26558, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.365665],\n            [-6.26558, 53.368363],\n            [-6.261063, 53.368363],\n            [-6.26558, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.368363],\n            [-6.26558, 53.371061],\n            [-6.261063, 53.368363],\n            [-6.26558, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.371061],\n            [-6.261063, 53.371061],\n            [-6.261063, 53.368363],\n            [-6.26558, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.371061],\n            [-6.261063, 53.373759],\n            [-6.261063, 53.371061],\n            [-6.26558, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.371061],\n            [-6.26558, 53.373759],\n            [-6.261063, 53.373759],\n            [-6.26558, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.373759],\n            [-6.26558, 53.376457],\n            [-6.261063, 53.373759],\n            [-6.26558, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.376457],\n            [-6.261063, 53.376457],\n            [-6.261063, 53.373759],\n            [-6.26558, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.376457],\n            [-6.261063, 53.379155],\n            [-6.261063, 53.376457],\n            [-6.26558, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.376457],\n            [-6.26558, 53.379155],\n            [-6.261063, 53.379155],\n            [-6.26558, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.379155],\n            [-6.26558, 53.381853],\n            [-6.261063, 53.379155],\n            [-6.26558, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.26558, 53.381853],\n            [-6.261063, 53.381853],\n            [-6.261063, 53.379155],\n            [-6.26558, 53.381853]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.3198],\n            [-6.261063, 53.322498],\n            [-6.256547, 53.322498],\n            [-6.261063, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.3198],\n            [-6.256547, 53.322498],\n            [-6.256547, 53.3198],\n            [-6.261063, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.322498],\n            [-6.261063, 53.325196],\n            [-6.256547, 53.322498],\n            [-6.261063, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.325196],\n            [-6.256547, 53.325196],\n            [-6.256547, 53.322498],\n            [-6.261063, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.325196],\n            [-6.261063, 53.327894],\n            [-6.256547, 53.327894],\n            [-6.261063, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.325196],\n            [-6.256547, 53.327894],\n            [-6.256547, 53.325196],\n            [-6.261063, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.327894],\n            [-6.261063, 53.330592],\n            [-6.256547, 53.327894],\n            [-6.261063, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.330592],\n            [-6.256547, 53.330592],\n            [-6.256547, 53.327894],\n            [-6.261063, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.330592],\n            [-6.261063, 53.33329],\n            [-6.256547, 53.33329],\n            [-6.261063, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.330592],\n            [-6.256547, 53.33329],\n            [-6.256547, 53.330592],\n            [-6.261063, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.33329],\n            [-6.261063, 53.335988],\n            [-6.256547, 53.33329],\n            [-6.261063, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.335988],\n            [-6.256547, 53.335988],\n            [-6.256547, 53.33329],\n            [-6.261063, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.335988],\n            [-6.261063, 53.338686],\n            [-6.256547, 53.338686],\n            [-6.261063, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.335988],\n            [-6.256547, 53.338686],\n            [-6.256547, 53.335988],\n            [-6.261063, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.338686],\n            [-6.261063, 53.341384],\n            [-6.256547, 53.338686],\n            [-6.261063, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.341384],\n            [-6.256547, 53.341384],\n            [-6.256547, 53.338686],\n            [-6.261063, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.341384],\n            [-6.261063, 53.344082],\n            [-6.256547, 53.344082],\n            [-6.261063, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.341384],\n            [-6.256547, 53.344082],\n            [-6.256547, 53.341384],\n            [-6.261063, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.344082],\n            [-6.261063, 53.34678],\n            [-6.256547, 53.344082],\n            [-6.261063, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.34678],\n            [-6.256547, 53.34678],\n            [-6.256547, 53.344082],\n            [-6.261063, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.34678],\n            [-6.261063, 53.349478],\n            [-6.256547, 53.349478],\n            [-6.261063, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.34678],\n            [-6.256547, 53.349478],\n            [-6.256547, 53.34678],\n            [-6.261063, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.349478],\n            [-6.261063, 53.352175],\n            [-6.256547, 53.349478],\n            [-6.261063, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.352175],\n            [-6.256547, 53.352175],\n            [-6.256547, 53.349478],\n            [-6.261063, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.352175],\n            [-6.261063, 53.354873],\n            [-6.256547, 53.354873],\n            [-6.261063, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.352175],\n            [-6.256547, 53.354873],\n            [-6.256547, 53.352175],\n            [-6.261063, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.354873],\n            [-6.261063, 53.357571],\n            [-6.256547, 53.354873],\n            [-6.261063, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.357571],\n            [-6.256547, 53.357571],\n            [-6.256547, 53.354873],\n            [-6.261063, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.357571],\n            [-6.261063, 53.360269],\n            [-6.256547, 53.360269],\n            [-6.261063, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.357571],\n            [-6.256547, 53.360269],\n            [-6.256547, 53.357571],\n            [-6.261063, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.360269],\n            [-6.261063, 53.362967],\n            [-6.256547, 53.360269],\n            [-6.261063, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.362967],\n            [-6.256547, 53.362967],\n            [-6.256547, 53.360269],\n            [-6.261063, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.362967],\n            [-6.261063, 53.365665],\n            [-6.256547, 53.365665],\n            [-6.261063, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.362967],\n            [-6.256547, 53.365665],\n            [-6.256547, 53.362967],\n            [-6.261063, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.365665],\n            [-6.261063, 53.368363],\n            [-6.256547, 53.365665],\n            [-6.261063, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.368363],\n            [-6.256547, 53.368363],\n            [-6.256547, 53.365665],\n            [-6.261063, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.368363],\n            [-6.261063, 53.371061],\n            [-6.256547, 53.371061],\n            [-6.261063, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.368363],\n            [-6.256547, 53.371061],\n            [-6.256547, 53.368363],\n            [-6.261063, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.371061],\n            [-6.261063, 53.373759],\n            [-6.256547, 53.371061],\n            [-6.261063, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.373759],\n            [-6.256547, 53.373759],\n            [-6.256547, 53.371061],\n            [-6.261063, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.373759],\n            [-6.261063, 53.376457],\n            [-6.256547, 53.376457],\n            [-6.261063, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.373759],\n            [-6.256547, 53.376457],\n            [-6.256547, 53.373759],\n            [-6.261063, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.376457],\n            [-6.261063, 53.379155],\n            [-6.256547, 53.376457],\n            [-6.261063, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.379155],\n            [-6.256547, 53.379155],\n            [-6.256547, 53.376457],\n            [-6.261063, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.379155],\n            [-6.261063, 53.381853],\n            [-6.256547, 53.381853],\n            [-6.261063, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.261063, 53.379155],\n            [-6.256547, 53.381853],\n            [-6.256547, 53.379155],\n            [-6.261063, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.3198],\n            [-6.256547, 53.322498],\n            [-6.25203, 53.3198],\n            [-6.256547, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.322498],\n            [-6.25203, 53.322498],\n            [-6.25203, 53.3198],\n            [-6.256547, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.322498],\n            [-6.25203, 53.325196],\n            [-6.25203, 53.322498],\n            [-6.256547, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.322498],\n            [-6.256547, 53.325196],\n            [-6.25203, 53.325196],\n            [-6.256547, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.325196],\n            [-6.256547, 53.327894],\n            [-6.25203, 53.325196],\n            [-6.256547, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.327894],\n            [-6.25203, 53.327894],\n            [-6.25203, 53.325196],\n            [-6.256547, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.327894],\n            [-6.25203, 53.330592],\n            [-6.25203, 53.327894],\n            [-6.256547, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.327894],\n            [-6.256547, 53.330592],\n            [-6.25203, 53.330592],\n            [-6.256547, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.330592],\n            [-6.256547, 53.33329],\n            [-6.25203, 53.330592],\n            [-6.256547, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.33329],\n            [-6.25203, 53.33329],\n            [-6.25203, 53.330592],\n            [-6.256547, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.33329],\n            [-6.25203, 53.335988],\n            [-6.25203, 53.33329],\n            [-6.256547, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.33329],\n            [-6.256547, 53.335988],\n            [-6.25203, 53.335988],\n            [-6.256547, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.335988],\n            [-6.256547, 53.338686],\n            [-6.25203, 53.335988],\n            [-6.256547, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.338686],\n            [-6.25203, 53.338686],\n            [-6.25203, 53.335988],\n            [-6.256547, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.338686],\n            [-6.25203, 53.341384],\n            [-6.25203, 53.338686],\n            [-6.256547, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.338686],\n            [-6.256547, 53.341384],\n            [-6.25203, 53.341384],\n            [-6.256547, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.341384],\n            [-6.256547, 53.344082],\n            [-6.25203, 53.341384],\n            [-6.256547, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.344082],\n            [-6.25203, 53.344082],\n            [-6.25203, 53.341384],\n            [-6.256547, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.344082],\n            [-6.25203, 53.34678],\n            [-6.25203, 53.344082],\n            [-6.256547, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.344082],\n            [-6.256547, 53.34678],\n            [-6.25203, 53.34678],\n            [-6.256547, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.34678],\n            [-6.256547, 53.349478],\n            [-6.25203, 53.34678],\n            [-6.256547, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.349478],\n            [-6.25203, 53.349478],\n            [-6.25203, 53.34678],\n            [-6.256547, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.349478],\n            [-6.25203, 53.352175],\n            [-6.25203, 53.349478],\n            [-6.256547, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.349478],\n            [-6.256547, 53.352175],\n            [-6.25203, 53.352175],\n            [-6.256547, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.352175],\n            [-6.256547, 53.354873],\n            [-6.25203, 53.352175],\n            [-6.256547, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.354873],\n            [-6.25203, 53.354873],\n            [-6.25203, 53.352175],\n            [-6.256547, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.354873],\n            [-6.25203, 53.357571],\n            [-6.25203, 53.354873],\n            [-6.256547, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.354873],\n            [-6.256547, 53.357571],\n            [-6.25203, 53.357571],\n            [-6.256547, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.357571],\n            [-6.256547, 53.360269],\n            [-6.25203, 53.357571],\n            [-6.256547, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.360269],\n            [-6.25203, 53.360269],\n            [-6.25203, 53.357571],\n            [-6.256547, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.360269],\n            [-6.25203, 53.362967],\n            [-6.25203, 53.360269],\n            [-6.256547, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.360269],\n            [-6.256547, 53.362967],\n            [-6.25203, 53.362967],\n            [-6.256547, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.362967],\n            [-6.256547, 53.365665],\n            [-6.25203, 53.362967],\n            [-6.256547, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.365665],\n            [-6.25203, 53.365665],\n            [-6.25203, 53.362967],\n            [-6.256547, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.365665],\n            [-6.25203, 53.368363],\n            [-6.25203, 53.365665],\n            [-6.256547, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.365665],\n            [-6.256547, 53.368363],\n            [-6.25203, 53.368363],\n            [-6.256547, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.368363],\n            [-6.256547, 53.371061],\n            [-6.25203, 53.368363],\n            [-6.256547, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.371061],\n            [-6.25203, 53.371061],\n            [-6.25203, 53.368363],\n            [-6.256547, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.371061],\n            [-6.25203, 53.373759],\n            [-6.25203, 53.371061],\n            [-6.256547, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.371061],\n            [-6.256547, 53.373759],\n            [-6.25203, 53.373759],\n            [-6.256547, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.373759],\n            [-6.256547, 53.376457],\n            [-6.25203, 53.373759],\n            [-6.256547, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.376457],\n            [-6.25203, 53.376457],\n            [-6.25203, 53.373759],\n            [-6.256547, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.376457],\n            [-6.25203, 53.379155],\n            [-6.25203, 53.376457],\n            [-6.256547, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.376457],\n            [-6.256547, 53.379155],\n            [-6.25203, 53.379155],\n            [-6.256547, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.379155],\n            [-6.256547, 53.381853],\n            [-6.25203, 53.379155],\n            [-6.256547, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.256547, 53.381853],\n            [-6.25203, 53.381853],\n            [-6.25203, 53.379155],\n            [-6.256547, 53.381853]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.3198],\n            [-6.25203, 53.322498],\n            [-6.247513, 53.322498],\n            [-6.25203, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.3198],\n            [-6.247513, 53.322498],\n            [-6.247513, 53.3198],\n            [-6.25203, 53.3198]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.322498],\n            [-6.25203, 53.325196],\n            [-6.247513, 53.322498],\n            [-6.25203, 53.322498]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.325196],\n            [-6.247513, 53.325196],\n            [-6.247513, 53.322498],\n            [-6.25203, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.325196],\n            [-6.25203, 53.327894],\n            [-6.247513, 53.327894],\n            [-6.25203, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.325196],\n            [-6.247513, 53.327894],\n            [-6.247513, 53.325196],\n            [-6.25203, 53.325196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.327894],\n            [-6.25203, 53.330592],\n            [-6.247513, 53.327894],\n            [-6.25203, 53.327894]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.330592],\n            [-6.247513, 53.330592],\n            [-6.247513, 53.327894],\n            [-6.25203, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.330592],\n            [-6.25203, 53.33329],\n            [-6.247513, 53.33329],\n            [-6.25203, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 14,\n        \"stroke\": \"#000000\",\n        \"fill\": \"#000000\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.330592],\n            [-6.247513, 53.33329],\n            [-6.247513, 53.330592],\n            [-6.25203, 53.330592]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.33329],\n            [-6.25203, 53.335988],\n            [-6.247513, 53.33329],\n            [-6.25203, 53.33329]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 13,\n        \"stroke\": \"#001529\",\n        \"fill\": \"#001529\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.335988],\n            [-6.247513, 53.335988],\n            [-6.247513, 53.33329],\n            [-6.25203, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.335988],\n            [-6.25203, 53.338686],\n            [-6.247513, 53.338686],\n            [-6.25203, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 12,\n        \"stroke\": \"#002d57\",\n        \"fill\": \"#002d57\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.335988],\n            [-6.247513, 53.338686],\n            [-6.247513, 53.335988],\n            [-6.25203, 53.335988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.338686],\n            [-6.25203, 53.341384],\n            [-6.247513, 53.338686],\n            [-6.25203, 53.338686]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.341384],\n            [-6.247513, 53.341384],\n            [-6.247513, 53.338686],\n            [-6.25203, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.341384],\n            [-6.25203, 53.344082],\n            [-6.247513, 53.344082],\n            [-6.25203, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.341384],\n            [-6.247513, 53.344082],\n            [-6.247513, 53.341384],\n            [-6.25203, 53.341384]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.344082],\n            [-6.25203, 53.34678],\n            [-6.247513, 53.344082],\n            [-6.25203, 53.344082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.34678],\n            [-6.247513, 53.34678],\n            [-6.247513, 53.344082],\n            [-6.25203, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 9,\n        \"stroke\": \"#0070d6\",\n        \"fill\": \"#0070d6\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.34678],\n            [-6.25203, 53.349478],\n            [-6.247513, 53.349478],\n            [-6.25203, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.34678],\n            [-6.247513, 53.349478],\n            [-6.247513, 53.34678],\n            [-6.25203, 53.34678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.349478],\n            [-6.25203, 53.352175],\n            [-6.247513, 53.349478],\n            [-6.25203, 53.349478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.352175],\n            [-6.247513, 53.352175],\n            [-6.247513, 53.349478],\n            [-6.25203, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.352175],\n            [-6.25203, 53.354873],\n            [-6.247513, 53.354873],\n            [-6.25203, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.352175],\n            [-6.247513, 53.354873],\n            [-6.247513, 53.352175],\n            [-6.25203, 53.352175]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.354873],\n            [-6.25203, 53.357571],\n            [-6.247513, 53.354873],\n            [-6.25203, 53.354873]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.357571],\n            [-6.247513, 53.357571],\n            [-6.247513, 53.354873],\n            [-6.25203, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.357571],\n            [-6.25203, 53.360269],\n            [-6.247513, 53.360269],\n            [-6.25203, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.357571],\n            [-6.247513, 53.360269],\n            [-6.247513, 53.357571],\n            [-6.25203, 53.357571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.360269],\n            [-6.25203, 53.362967],\n            [-6.247513, 53.360269],\n            [-6.25203, 53.360269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.362967],\n            [-6.247513, 53.362967],\n            [-6.247513, 53.360269],\n            [-6.25203, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.362967],\n            [-6.25203, 53.365665],\n            [-6.247513, 53.365665],\n            [-6.25203, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.362967],\n            [-6.247513, 53.365665],\n            [-6.247513, 53.362967],\n            [-6.25203, 53.362967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.365665],\n            [-6.25203, 53.368363],\n            [-6.247513, 53.365665],\n            [-6.25203, 53.365665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.368363],\n            [-6.247513, 53.368363],\n            [-6.247513, 53.365665],\n            [-6.25203, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.368363],\n            [-6.25203, 53.371061],\n            [-6.247513, 53.371061],\n            [-6.25203, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 11,\n        \"stroke\": \"#004280\",\n        \"fill\": \"#004280\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.368363],\n            [-6.247513, 53.371061],\n            [-6.247513, 53.368363],\n            [-6.25203, 53.368363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.371061],\n            [-6.25203, 53.373759],\n            [-6.247513, 53.371061],\n            [-6.25203, 53.371061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 10,\n        \"stroke\": \"#0058a8\",\n        \"fill\": \"#0058a8\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.373759],\n            [-6.247513, 53.373759],\n            [-6.247513, 53.371061],\n            [-6.25203, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 7,\n        \"stroke\": \"#2999ff\",\n        \"fill\": \"#2999ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.373759],\n            [-6.25203, 53.376457],\n            [-6.247513, 53.376457],\n            [-6.25203, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 8,\n        \"stroke\": \"#0085ff\",\n        \"fill\": \"#0085ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.373759],\n            [-6.247513, 53.376457],\n            [-6.247513, 53.373759],\n            [-6.25203, 53.373759]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.376457],\n            [-6.25203, 53.379155],\n            [-6.247513, 53.376457],\n            [-6.25203, 53.376457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 6,\n        \"stroke\": \"#57aeff\",\n        \"fill\": \"#57aeff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.379155],\n            [-6.247513, 53.379155],\n            [-6.247513, 53.376457],\n            [-6.25203, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.379155],\n            [-6.25203, 53.381853],\n            [-6.247513, 53.381853],\n            [-6.25203, 53.379155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"elevation\": 5,\n        \"stroke\": \"#80c2ff\",\n        \"fill\": \"#80c2ff\",\n        \"fill-opacity\": 0.85\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.25203, 53.379155],\n            [-6.247513, 53.381853],\n            [-6.247513, 53.379155],\n            [-6.25203, 53.379155]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-interpolate/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { truncate } from \"@turf/truncate\";\nimport chromatism from \"chromatism\";\nimport { round, featureCollection, point } from \"@turf/helpers\";\nimport { featureEach, propEach } from \"@turf/meta\";\nimport { interpolate } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nvar fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n// fixtures = fixtures.filter(fixture => fixture.name === 'points-random')\n\ntest(\"turf-interpolate\", (t) => {\n  for (const { filename, name, geojson } of fixtures) {\n    const options = geojson.properties;\n    const cellSize = options.cellSize;\n    const property = options.property || \"elevation\";\n\n    // Truncate coordinates & elevation (property) to 6 precision\n    let result = truncate(interpolate(geojson, cellSize, options));\n    propEach(result, (properties) => {\n      properties[property] = round(properties[property]);\n    });\n    result = colorize(result, property, name);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, result);\n    t.deepEquals(result, loadJsonFileSync(directories.out + filename), name);\n  }\n  t.end();\n});\n\ntest(\"turf-interpolate -- throws errors\", (t) => {\n  const cellSize = 1;\n  const weight = 0.5;\n  const units = \"miles\";\n  const gridType = \"point\";\n  const points = featureCollection([\n    point([1, 2], { elevation: 200 }),\n    point([2, 1], { elevation: 300 }),\n    point([1.5, 1.5], { elevation: 400 }),\n  ]);\n\n  t.assert(\n    interpolate(points, cellSize, {\n      gridType: gridType,\n      units: units,\n      weight: weight,\n    }).features.length\n  );\n  t.throws(\n    () => interpolate(points, undefined),\n    /cellSize is required/,\n    \"cellSize is required\"\n  );\n  t.throws(\n    () => interpolate(undefined, cellSize),\n    /points is required/,\n    \"points is required\"\n  );\n  t.throws(\n    () => interpolate(points, cellSize, { gridType: \"foo\" }),\n    /invalid gridType/,\n    \"invalid gridType\"\n  );\n  t.throws(\n    () => interpolate(points, cellSize, { units: \"foo\" }),\n    \"invalid units\"\n  );\n  t.throws(\n    () => interpolate(points, cellSize, { weight: \"foo\" }),\n    /weight must be a number/,\n    \"weight must be a number\"\n  );\n  t.throws(\n    () => interpolate(points, cellSize, { property: \"foo\" }),\n    /zValue is missing/,\n    \"zValue is missing\"\n  );\n  t.end();\n});\n\ntest(\"turf-interpolate -- zValue from 3rd coordinate\", (t) => {\n  const cellSize = 1;\n  const points = featureCollection([\n    point([1, 2, 200]),\n    point([2, 1, 300]),\n    point([1.5, 1.5, 400]),\n  ]);\n  t.assert(\n    interpolate(points, cellSize).features.length,\n    \"zValue from 3rd coordinate\"\n  );\n  t.end();\n});\n\n// style result\nfunction colorize(grid, property, name) {\n  property = property || \"elevation\";\n  let max = -Infinity;\n  let min = Infinity;\n  propEach(grid, (properties) => {\n    const value = properties[property];\n    if (value > max) max = value;\n    if (value < min) min = value;\n  });\n  const delta = max - min;\n  if (delta === 0) throw new Error(name + \" delta is invalid\");\n\n  featureEach(grid, (feature) => {\n    const value = feature.properties[property];\n    const percent = round(((value - min - delta / 2) / delta) * 100);\n    // darker corresponds to higher values\n    const color = chromatism.brightness(-percent, \"#0086FF\").hex;\n    if (feature.geometry.type === \"Point\")\n      feature.properties[\"marker-color\"] = color;\n    else {\n      feature.properties[\"stroke\"] = color;\n      feature.properties[\"fill\"] = color;\n      feature.properties[\"fill-opacity\"] = 0.85;\n    }\n  });\n\n  return grid;\n}\n"
  },
  {
    "path": "packages/turf-interpolate/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-interpolate/types.ts",
    "content": "import { point, featureCollection } from \"@turf/helpers\";\nimport { interpolate } from \"./index.js\";\n\nconst cellSize = 1;\nconst property = \"pressure\";\nconst gridType = \"square\";\nconst weight = 0.5;\nconst units = \"miles\";\nconst points = featureCollection([\n  point([1, 2]),\n  point([12, 13]),\n  point([23, 22]),\n]);\n\nconst grid = interpolate(points, cellSize, {\n  gridType,\n  property,\n  units,\n  weight,\n});\ngrid.features[0].properties?.pressure;\n\n// Optional properties\ninterpolate(points, cellSize, { gridType, property, units });\ninterpolate(points, cellSize, { gridType, property });\ninterpolate(points, cellSize, { gridType });\ninterpolate(points, cellSize, { gridType: \"point\" });\n"
  },
  {
    "path": "packages/turf-intersect/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-intersect/README.md",
    "content": "# @turf/intersect\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## intersect\n\nTakes [polygon][1] or [multi-polygon][2] geometries and\nfinds their polygonal intersection. If they don't intersect, returns null.\n\n### Parameters\n\n*   `features` **[FeatureCollection][3]<([Polygon][1] | [MultiPolygon][2])>** the features to intersect\n*   `options` **[Object][4]** Optional Parameters (optional, default `{}`)\n\n    *   `options.properties` **[Object][4]** Translate GeoJSON Properties to Feature (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar poly1 = turf.polygon([[\n  [-122.801742, 45.48565],\n  [-122.801742, 45.60491],\n  [-122.584762, 45.60491],\n  [-122.584762, 45.48565],\n  [-122.801742, 45.48565]\n]]);\n\nvar poly2 = turf.polygon([[\n  [-122.520217, 45.535693],\n  [-122.64038, 45.553967],\n  [-122.720031, 45.526554],\n  [-122.669906, 45.507309],\n  [-122.723464, 45.446643],\n  [-122.532577, 45.408574],\n  [-122.487258, 45.477466],\n  [-122.520217, 45.535693]\n]]);\n\nvar intersection = turf.intersect(turf.featureCollection([poly1, poly2]));\n\n//addToMap\nvar addToMap = [poly1, poly2, intersection];\n```\n\nReturns **([Feature][5] | null)** returns a feature representing the area they share (either a [Polygon][1] or\n[MultiPolygon][2]). If they do not share any area, returns `null`.\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/intersect\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-intersect/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { intersect } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n// Fixtures\nconst armenia = loadJsonFileSync(\n  path.join(__dirname, \"test\", \"in\", \"armenia.geojson\")\n);\nconst simple = loadJsonFileSync(\n  path.join(__dirname, \"test\", \"in\", \"Intersect1.geojson\")\n);\n\n/**\n * Benchmark Results\n *\n * turf-intersect#simple x 81,192 ops/sec ±1.94% (90 runs sampled)\n * turf-intersect#armenia x 45,824 ops/sec ±2.42% (88 runs sampled)\n */\nnew Benchmark.Suite(\"turf-intersect\")\n  .add(\"turf-intersect#simple\", () => intersect(simple))\n  .add(\"turf-intersect#armenia\", () => intersect(armenia))\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-intersect/index.ts",
    "content": "import {\n  Feature,\n  GeoJsonProperties,\n  MultiPolygon,\n  Polygon,\n  FeatureCollection,\n} from \"geojson\";\nimport { multiPolygon, polygon } from \"@turf/helpers\";\nimport { geomEach } from \"@turf/meta\";\nimport * as polyclip from \"polyclip-ts\";\n\n/**\n * Takes {@link Polygon|polygon} or {@link MultiPolygon|multi-polygon} geometries and\n * finds their polygonal intersection. If they don't intersect, returns null.\n *\n * @function\n * @param {FeatureCollection<Polygon | MultiPolygon>} features the features to intersect\n * @param {Object} [options={}] Optional Parameters\n * @param {Object} [options.properties={}] Translate GeoJSON Properties to Feature\n * @returns {Feature|null} returns a feature representing the area they share (either a {@link Polygon} or\n * {@link MultiPolygon}). If they do not share any area, returns `null`.\n * @example\n * var poly1 = turf.polygon([[\n *   [-122.801742, 45.48565],\n *   [-122.801742, 45.60491],\n *   [-122.584762, 45.60491],\n *   [-122.584762, 45.48565],\n *   [-122.801742, 45.48565]\n * ]]);\n *\n * var poly2 = turf.polygon([[\n *   [-122.520217, 45.535693],\n *   [-122.64038, 45.553967],\n *   [-122.720031, 45.526554],\n *   [-122.669906, 45.507309],\n *   [-122.723464, 45.446643],\n *   [-122.532577, 45.408574],\n *   [-122.487258, 45.477466],\n *   [-122.520217, 45.535693]\n * ]]);\n *\n * var intersection = turf.intersect(turf.featureCollection([poly1, poly2]));\n *\n * //addToMap\n * var addToMap = [poly1, poly2, intersection];\n */\nfunction intersect<P extends GeoJsonProperties = GeoJsonProperties>(\n  features: FeatureCollection<Polygon | MultiPolygon>,\n  options: {\n    properties?: P;\n  } = {}\n): Feature<Polygon | MultiPolygon, P> | null {\n  const geoms: polyclip.Geom[] = [];\n\n  geomEach(features, (geom) => {\n    geoms.push(geom.coordinates as polyclip.Geom);\n  });\n\n  if (geoms.length < 2) {\n    throw new Error(\"Must specify at least 2 geometries\");\n  }\n  const intersection = polyclip.intersection(geoms[0], ...geoms.slice(1));\n  if (intersection.length === 0) return null;\n  if (intersection.length === 1)\n    return polygon(intersection[0], options.properties);\n  return multiPolygon(intersection, options.properties);\n}\n\nexport { intersect };\nexport default intersect;\n"
  },
  {
    "path": "packages/turf-intersect/package.json",
    "content": "{\n  \"name\": \"@turf/intersect\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Finds the shared area between two polygons.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gis\",\n    \"intersect\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"polyclip-ts\": \"^0.16.8\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/Intersect1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.88571166992188, 32.887659962078956],\n            [-80.09788513183594, 32.927436533285565],\n            [-80.15350341796875, 32.82825010814964],\n            [-80.00312805175781, 32.69428812316933],\n            [-79.89395141601562, 32.75551989829049],\n            [-79.88571166992188, 32.887659962078956]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.92141723632812, 32.953944317478246],\n            [-79.97428894042969, 32.83690450361482],\n            [-79.97360229492188, 32.76071688548088],\n            [-79.93034362792969, 32.76475877693074],\n            [-79.93789672851562, 32.74108223150125],\n            [-79.80537414550781, 32.7231762754146],\n            [-79.81773376464844, 32.923402043498875],\n            [-79.92141723632812, 32.953944317478246]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/Intersect2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.92141723632812, 32.953944317478246],\n            [-80.068359375, 32.88189375925038],\n            [-80.01686096191406, 32.87266705436184],\n            [-79.97360229492188, 32.76071688548088],\n            [-79.93034362792969, 32.76475877693074],\n            [-79.93789672851562, 32.74108223150125],\n            [-79.80537414550781, 32.7231762754146],\n            [-79.81773376464844, 32.923402043498875],\n            [-79.92141723632812, 32.953944317478246]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.10543823242188, 32.94760622243483],\n            [-80.14389038085938, 32.8149783969858],\n            [-80.07453918457031, 32.85536439443039],\n            [-79.99351501464844, 32.84440429734253],\n            [-79.98184204101562, 32.90495631913751],\n            [-80.10543823242188, 32.94760622243483]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/armenia.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"id\": \"ARM\",\n      \"properties\": {\n        \"name\": \"Armenia\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [43.582746, 41.092143],\n            [44.97248, 41.248129],\n            [45.179496, 40.985354],\n            [45.560351, 40.81229],\n            [45.359175, 40.561504],\n            [45.891907, 40.218476],\n            [45.610012, 39.899994],\n            [46.034534, 39.628021],\n            [46.483499, 39.464155],\n            [46.50572, 38.770605],\n            [46.143623, 38.741201],\n            [45.735379, 39.319719],\n            [45.739978, 39.473999],\n            [45.298145, 39.471751],\n            [45.001987, 39.740004],\n            [44.79399, 39.713003],\n            [44.400009, 40.005],\n            [43.656436, 40.253564],\n            [43.752658, 40.740201],\n            [43.582746, 41.092143]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [45.1318359375, 40.1452892956766],\n            [45.1318359375, 43.197167282501276],\n            [53.3935546875, 43.197167282501276],\n            [53.3935546875, 40.1452892956766],\n            [45.1318359375, 40.1452892956766]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/infinite-loop-2705.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"source\": \"https://github.com/Turfjs/turf/issues/2705#issue-2491630158\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126.55856392608325, 34.46272192666609],\n            [126.55889007353417, 34.46273185169668],\n            [126.55893420916493, 34.46182149433875],\n            [126.55860547472139, 34.46181162317049],\n            [126.55856392608325, 34.46272192666609],\n            [126.55856392608325, 34.46272192666609]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [\n              [126.558597, 34.461803],\n              [126.558614, 34.46182],\n              [126.558657, 34.461791],\n              [126.55864, 34.461774],\n              [126.558597, 34.461803]\n            ]\n          ],\n          [\n            [\n              [126.558599, 34.461789],\n              [126.558602, 34.461822],\n              [126.558657, 34.461819],\n              [126.558654, 34.461786],\n              [126.558599, 34.461789]\n            ]\n          ],\n\n          [\n            [\n              [126.558584, 34.461796],\n              [126.558607, 34.461816],\n              [126.558647, 34.461784],\n              [126.558624, 34.461764],\n              [126.558584, 34.461796]\n            ]\n          ],\n          [\n            [\n              [126.558599, 34.461811],\n              [126.558626, 34.461818],\n              [126.558642, 34.461775],\n              [126.558615, 34.461768],\n              [126.558599, 34.461811]\n            ]\n          ],\n          [\n            [\n              [126.558597, 34.461808],\n              [126.558621, 34.461819],\n              [126.55865, 34.46178],\n              [126.558626, 34.461769],\n              [126.558597, 34.461808]\n            ]\n          ],\n          [\n            [\n              [126.558595, 34.461801],\n              [126.558612, 34.461818],\n              [126.558655, 34.461789],\n              [126.558638, 34.461772],\n              [126.558595, 34.461801]\n            ]\n          ],\n          [\n            [\n              [126.558596, 34.461802],\n              [126.558613, 34.461819],\n              [126.558656, 34.46179],\n              [126.558639, 34.461773],\n              [126.558596, 34.461802]\n            ]\n          ],\n          [\n            [\n              [126.558601, 34.4618],\n              [126.558601, 34.461843],\n              [126.558656, 34.461843],\n              [126.558656, 34.4618],\n              [126.558601, 34.4618]\n            ]\n          ],\n          [\n            [\n              [126.558601, 34.461821],\n              [126.558599, 34.461866],\n              [126.558655, 34.461868],\n              [126.558657, 34.461823],\n              [126.558601, 34.461821]\n            ]\n          ],\n          [\n            [\n              [126.558601, 34.461845],\n              [126.558597, 34.46189],\n              [126.558652, 34.461893],\n              [126.558656, 34.461848],\n              [126.558601, 34.461845]\n            ]\n          ],\n          [\n            [\n              [126.558598, 34.461871],\n              [126.558596, 34.46192],\n              [126.558652, 34.461921],\n              [126.558654, 34.461872],\n              [126.558598, 34.461871]\n            ]\n          ],\n          [\n            [\n              [126.558597, 34.461899],\n              [126.558594, 34.461951],\n              [126.55865, 34.461953],\n              [126.558653, 34.461901],\n              [126.558597, 34.461899]\n            ]\n          ],\n          [\n            [\n              [126.558595, 34.46193],\n              [126.558592, 34.461982],\n              [126.558648, 34.461984],\n              [126.558651, 34.461932],\n              [126.558595, 34.46193]\n            ]\n          ],\n          [\n            [\n              [126.558593, 34.461961],\n              [126.55859, 34.46201],\n              [126.558646, 34.462013],\n              [126.558649, 34.461964],\n              [126.558593, 34.461961]\n            ]\n          ],\n          [\n            [\n              [126.558591, 34.46199],\n              [126.558588, 34.462037],\n              [126.558644, 34.46204],\n              [126.558647, 34.461993],\n              [126.558591, 34.46199]\n            ]\n          ],\n          [\n            [\n              [126.558589, 34.462017],\n              [126.558586, 34.462065],\n              [126.558642, 34.462068],\n              [126.558645, 34.46202],\n              [126.558589, 34.462017]\n            ]\n          ],\n          [\n            [\n              [126.558587, 34.462045],\n              [126.558584, 34.462093],\n              [126.55864, 34.462096],\n              [126.558643, 34.462048],\n              [126.558587, 34.462045]\n            ]\n          ],\n          [\n            [\n              [126.558585, 34.462074],\n              [126.558583, 34.462123],\n              [126.558639, 34.462124],\n              [126.558641, 34.462075],\n              [126.558585, 34.462074]\n            ]\n          ],\n          [\n            [\n              [126.558584, 34.462103],\n              [126.558582, 34.462156],\n              [126.558638, 34.462157],\n              [126.55864, 34.462104],\n              [126.558584, 34.462103]\n            ]\n          ],\n          [\n            [\n              [126.558583, 34.462135],\n              [126.55858, 34.462188],\n              [126.558636, 34.46219],\n              [126.558639, 34.462137],\n              [126.558583, 34.462135]\n            ]\n          ],\n          [\n            [\n              [126.558581, 34.462168],\n              [126.558579, 34.462221],\n              [126.558635, 34.462222],\n              [126.558637, 34.462169],\n              [126.558581, 34.462168]\n            ]\n          ],\n          [\n            [\n              [126.55858, 34.4622],\n              [126.558577, 34.462252],\n              [126.558633, 34.462254],\n              [126.558636, 34.462202],\n              [126.55858, 34.4622]\n            ]\n          ],\n          [\n            [\n              [126.558578, 34.462231],\n              [126.558575, 34.462283],\n              [126.558631, 34.462285],\n              [126.558634, 34.462233],\n              [126.558578, 34.462231]\n            ]\n          ],\n          [\n            [\n              [126.558576, 34.462262],\n              [126.558573, 34.462315],\n              [126.558629, 34.462317],\n              [126.558632, 34.462264],\n              [126.558576, 34.462262]\n            ]\n          ],\n          [\n            [\n              [126.558574, 34.462295],\n              [126.558572, 34.46235],\n              [126.558628, 34.462351],\n              [126.55863, 34.462296],\n              [126.558574, 34.462295]\n            ]\n          ],\n          [\n            [\n              [126.558573, 34.46233],\n              [126.558573, 34.462387],\n              [126.558628, 34.462387],\n              [126.558628, 34.46233],\n              [126.558573, 34.46233]\n            ]\n          ],\n          [\n            [\n              [126.558573, 34.462366],\n              [126.558571, 34.462418],\n              [126.558627, 34.462419],\n              [126.558629, 34.462367],\n              [126.558573, 34.462366]\n            ]\n          ],\n          [\n            [\n              [126.558572, 34.462398],\n              [126.55857, 34.462448],\n              [126.558626, 34.462449],\n              [126.558628, 34.462399],\n              [126.558572, 34.462398]\n            ]\n          ],\n          [\n            [\n              [126.558571, 34.462427],\n              [126.558568, 34.462479],\n              [126.558624, 34.462481],\n              [126.558627, 34.462429],\n              [126.558571, 34.462427]\n            ]\n          ],\n          [\n            [\n              [126.558569, 34.462458],\n              [126.558566, 34.462511],\n              [126.558622, 34.462513],\n              [126.558625, 34.46246],\n              [126.558569, 34.462458]\n            ]\n          ],\n          [\n            [\n              [126.558567, 34.46249],\n              [126.558564, 34.462542],\n              [126.55862, 34.462544],\n              [126.558623, 34.462492],\n              [126.558567, 34.46249]\n            ]\n          ],\n          [\n            [\n              [126.558565, 34.462521],\n              [126.558562, 34.462573],\n              [126.558618, 34.462575],\n              [126.558621, 34.462523],\n              [126.558565, 34.462521]\n            ]\n          ],\n          [\n            [\n              [126.558563, 34.462552],\n              [126.55856, 34.462604],\n              [126.558616, 34.462606],\n              [126.558619, 34.462554],\n              [126.558563, 34.462552]\n            ]\n          ],\n          [\n            [\n              [126.558561, 34.462584],\n              [126.558559, 34.462633],\n              [126.558615, 34.462634],\n              [126.558617, 34.462585],\n              [126.558561, 34.462584]\n            ]\n          ],\n          [\n            [\n              [126.55856, 34.462612],\n              [126.558557, 34.462659],\n              [126.558613, 34.462662],\n              [126.558616, 34.462615],\n              [126.55856, 34.462612]\n            ]\n          ],\n          [\n            [\n              [126.558558, 34.46264],\n              [126.558556, 34.462687],\n              [126.558612, 34.462688],\n              [126.558614, 34.462641],\n              [126.558558, 34.46264]\n            ]\n          ],\n          [\n            [\n              [126.558557, 34.462666],\n              [126.558555, 34.462709],\n              [126.558611, 34.462711],\n              [126.558613, 34.462668],\n              [126.558557, 34.462666]\n            ]\n          ],\n          [\n            [\n              [126.558557, 34.462687],\n              [126.558554, 34.462718],\n              [126.558609, 34.462722],\n              [126.558612, 34.462691],\n              [126.558557, 34.462687]\n            ]\n          ],\n          [\n            [\n              [126.558556, 34.462697],\n              [126.558552, 34.462724],\n              [126.558608, 34.462729],\n              [126.558612, 34.462702],\n              [126.558556, 34.462697]\n            ]\n          ],\n          [\n            [\n              [126.558554, 34.462706],\n              [126.558554, 34.462732],\n              [126.558609, 34.462732],\n              [126.558609, 34.462706],\n              [126.558554, 34.462706]\n            ]\n          ],\n          [\n            [\n              [126.558594, 34.462699],\n              [126.558568, 34.462699],\n              [126.558568, 34.462744],\n              [126.558594, 34.462744],\n              [126.558594, 34.462699]\n            ]\n          ],\n          [\n            [\n              [126.558608, 34.462732],\n              [126.558608, 34.462709],\n              [126.558553, 34.462709],\n              [126.558553, 34.462732],\n              [126.558608, 34.462732]\n            ]\n          ],\n          [\n            [\n              [126.558608, 34.46273],\n              [126.558608, 34.462708],\n              [126.558553, 34.462708],\n              [126.558553, 34.46273],\n              [126.558608, 34.46273]\n            ]\n          ],\n          [\n            [\n              [126.558553, 34.462708],\n              [126.558553, 34.462729],\n              [126.558608, 34.462729],\n              [126.558608, 34.462708],\n              [126.558553, 34.462708]\n            ]\n          ],\n          [\n            [\n              [126.558553, 34.462708],\n              [126.558553, 34.462729],\n              [126.558608, 34.462729],\n              [126.558608, 34.462708],\n              [126.558553, 34.462708]\n            ]\n          ],\n          [\n            [\n              [126.558608, 34.462729],\n              [126.558608, 34.462707],\n              [126.558553, 34.462707],\n              [126.558553, 34.462729],\n              [126.558608, 34.462729]\n            ]\n          ],\n          [\n            [\n              [126.558553, 34.462707],\n              [126.558553, 34.462728],\n              [126.558608, 34.462728],\n              [126.558608, 34.462707],\n              [126.558553, 34.462707]\n            ]\n          ],\n          [\n            [\n              [126.558553, 34.462707],\n              [126.558553, 34.462728],\n              [126.558608, 34.462728],\n              [126.558608, 34.462707],\n              [126.558553, 34.462707]\n            ]\n          ],\n          [\n            [\n              [126.558568, 34.46274],\n              [126.558594, 34.46274],\n              [126.558594, 34.462695],\n              [126.558568, 34.462695],\n              [126.558568, 34.46274]\n            ]\n          ],\n          [\n            [\n              [126.558554, 34.462707],\n              [126.558554, 34.462728],\n              [126.558609, 34.462728],\n              [126.558609, 34.462707],\n              [126.558554, 34.462707]\n            ]\n          ],\n          [\n            [\n              [126.558554, 34.462707],\n              [126.558554, 34.462728],\n              [126.558609, 34.462728],\n              [126.558609, 34.462707],\n              [126.558554, 34.462707]\n            ]\n          ],\n          [\n            [\n              [126.558554, 34.462707],\n              [126.558554, 34.462728],\n              [126.558609, 34.462728],\n              [126.558609, 34.462707],\n              [126.558554, 34.462707]\n            ]\n          ],\n          [\n            [\n              [126.558594, 34.462695],\n              [126.558568, 34.462695],\n              [126.558568, 34.46274],\n              [126.558594, 34.46274],\n              [126.558594, 34.462695]\n            ]\n          ],\n          [\n            [\n              [126.558553, 34.462707],\n              [126.558553, 34.462729],\n              [126.558608, 34.462729],\n              [126.558608, 34.462707],\n              [126.558553, 34.462707]\n            ]\n          ],\n          [\n            [\n              [126.558553, 34.462708],\n              [126.558553, 34.462729],\n              [126.558608, 34.462729],\n              [126.558608, 34.462708],\n              [126.558553, 34.462708]\n            ]\n          ],\n          [\n            [\n              [126.558593, 34.462696],\n              [126.558567, 34.462696],\n              [126.558567, 34.462741],\n              [126.558593, 34.462741],\n              [126.558593, 34.462696]\n            ]\n          ],\n          [\n            [\n              [126.558567, 34.462741],\n              [126.558596, 34.462741],\n              [126.558596, 34.462696],\n              [126.558567, 34.462696],\n              [126.558567, 34.462741]\n            ]\n          ],\n          [\n            [\n              [126.558573, 34.462742],\n              [126.558613, 34.46274],\n              [126.558609, 34.462694],\n              [126.558569, 34.462696],\n              [126.558573, 34.462742]\n            ]\n          ],\n          [\n            [\n              [126.558586, 34.46274],\n              [126.558628, 34.46274],\n              [126.558628, 34.462695],\n              [126.558586, 34.462695],\n              [126.558586, 34.46274]\n            ]\n          ],\n          [\n            [\n              [126.558634, 34.462738],\n              [126.558652, 34.462711],\n              [126.558603, 34.462688],\n              [126.558585, 34.462715],\n              [126.558634, 34.462738]\n            ]\n          ],\n          [\n            [\n              [126.558651, 34.462716],\n              [126.558645, 34.462675],\n              [126.558589, 34.46268],\n              [126.558595, 34.462721],\n              [126.558651, 34.462716]\n            ]\n          ],\n          [\n            [\n              [126.558646, 34.462698],\n              [126.558648, 34.462645],\n              [126.558592, 34.462644],\n              [126.55859, 34.462697],\n              [126.558646, 34.462698]\n            ]\n          ],\n          [\n            [\n              [126.558647, 34.462666],\n              [126.55865, 34.462611],\n              [126.558594, 34.462609],\n              [126.558591, 34.462664],\n              [126.558647, 34.462666]\n            ]\n          ],\n          [\n            [\n              [126.558649, 34.462632],\n              [126.558652, 34.462579],\n              [126.558596, 34.462577],\n              [126.558593, 34.46263],\n              [126.558649, 34.462632]\n            ]\n          ],\n          [\n            [\n              [126.558651, 34.462599],\n              [126.558653, 34.462549],\n              [126.558597, 34.462548],\n              [126.558595, 34.462598],\n              [126.558651, 34.462599]\n            ]\n          ],\n          [\n            [\n              [126.558652, 34.46257],\n              [126.558655, 34.462517],\n              [126.558599, 34.462515],\n              [126.558596, 34.462568],\n              [126.558652, 34.46257]\n            ]\n          ],\n          [\n            [\n              [126.558654, 34.462538],\n              [126.558657, 34.462485],\n              [126.558601, 34.462483],\n              [126.558598, 34.462536],\n              [126.558654, 34.462538]\n            ]\n          ],\n          [\n            [\n              [126.558656, 34.462505],\n              [126.558658, 34.462453],\n              [126.558602, 34.462452],\n              [126.5586, 34.462504],\n              [126.558656, 34.462505]\n            ]\n          ],\n          [\n            [\n              [126.558657, 34.462474],\n              [126.55866, 34.46242],\n              [126.558604, 34.462418],\n              [126.558601, 34.462472],\n              [126.558657, 34.462474]\n            ]\n          ],\n          [\n            [\n              [126.558659, 34.462441],\n              [126.558662, 34.462388],\n              [126.558606, 34.462386],\n              [126.558603, 34.462439],\n              [126.558659, 34.462441]\n            ]\n          ],\n          [\n            [\n              [126.558661, 34.462408],\n              [126.558663, 34.462355],\n              [126.558607, 34.462354],\n              [126.558605, 34.462407],\n              [126.558661, 34.462408]\n            ]\n          ],\n          [\n            [\n              [126.558662, 34.462376],\n              [126.558665, 34.462323],\n              [126.558609, 34.462321],\n              [126.558606, 34.462374],\n              [126.558662, 34.462376]\n            ]\n          ],\n          [\n            [\n              [126.558664, 34.462343],\n              [126.558666, 34.462291],\n              [126.55861, 34.46229],\n              [126.558608, 34.462342],\n              [126.558664, 34.462343]\n            ]\n          ],\n          [\n            [\n              [126.558665, 34.462312],\n              [126.558668, 34.462259],\n              [126.558612, 34.462257],\n              [126.558609, 34.46231],\n              [126.558665, 34.462312]\n            ]\n          ],\n          [\n            [\n              [126.558667, 34.462279],\n              [126.558669, 34.462226],\n              [126.558613, 34.462225],\n              [126.558611, 34.462278],\n              [126.558667, 34.462279]\n            ]\n          ],\n          [\n            [\n              [126.558668, 34.462247],\n              [126.558671, 34.462193],\n              [126.558615, 34.462191],\n              [126.558612, 34.462245],\n              [126.558668, 34.462247]\n            ]\n          ],\n          [\n            [\n              [126.55867, 34.462213],\n              [126.558672, 34.462161],\n              [126.558616, 34.46216],\n              [126.558614, 34.462212],\n              [126.55867, 34.462213]\n            ]\n          ],\n          [\n            [\n              [126.558671, 34.462182],\n              [126.558674, 34.462129],\n              [126.558618, 34.462127],\n              [126.558615, 34.46218],\n              [126.558671, 34.462182]\n            ]\n          ],\n          [\n            [\n              [126.558673, 34.46215],\n              [126.558676, 34.462096],\n              [126.55862, 34.462094],\n              [126.558617, 34.462148],\n              [126.558673, 34.46215]\n            ]\n          ],\n          [\n            [\n              [126.558675, 34.462116],\n              [126.558677, 34.462064],\n              [126.558621, 34.462063],\n              [126.558619, 34.462115],\n              [126.558675, 34.462116]\n            ]\n          ],\n          [\n            [\n              [126.558676, 34.462085],\n              [126.558679, 34.462032],\n              [126.558623, 34.46203],\n              [126.55862, 34.462083],\n              [126.558676, 34.462085]\n            ]\n          ],\n          [\n            [\n              [126.558678, 34.462052],\n              [126.55868, 34.462],\n              [126.558624, 34.461999],\n              [126.558622, 34.462051],\n              [126.558678, 34.462052]\n            ]\n          ],\n          [\n            [\n              [126.558679, 34.46202],\n              [126.558681, 34.461967],\n              [126.558625, 34.461966],\n              [126.558623, 34.462019],\n              [126.558679, 34.46202]\n            ]\n          ],\n          [\n            [\n              [126.55868, 34.461988],\n              [126.558683, 34.461935],\n              [126.558627, 34.461933],\n              [126.558624, 34.461986],\n              [126.55868, 34.461988]\n            ]\n          ],\n          [\n            [\n              [126.558682, 34.461955],\n              [126.558684, 34.461902],\n              [126.558628, 34.461901],\n              [126.558626, 34.461954],\n              [126.558682, 34.461955]\n            ]\n          ],\n          [\n            [\n              [126.558683, 34.461923],\n              [126.558686, 34.46187],\n              [126.55863, 34.461868],\n              [126.558627, 34.461921],\n              [126.558683, 34.461923]\n            ]\n          ],\n          [\n            [\n              [126.558685, 34.461891],\n              [126.558688, 34.461837],\n              [126.558632, 34.461835],\n              [126.558629, 34.461889],\n              [126.558685, 34.461891]\n            ]\n          ],\n          [\n            [\n              [126.558687, 34.461857],\n              [126.558689, 34.461808],\n              [126.558633, 34.461807],\n              [126.558631, 34.461856],\n              [126.558687, 34.461857]\n            ]\n          ],\n          [\n            [\n              [126.558688, 34.461829],\n              [126.55869, 34.461792],\n              [126.558634, 34.46179],\n              [126.558632, 34.461827],\n              [126.558688, 34.461829]\n            ]\n          ],\n          [\n            [\n              [126.558667, 34.461826],\n              [126.558695, 34.461811],\n              [126.558663, 34.461773],\n              [126.558635, 34.461788],\n              [126.558667, 34.461826]\n            ]\n          ],\n          [\n            [\n              [126.558653, 34.461819],\n              [126.558698, 34.461824],\n              [126.558704, 34.461778],\n              [126.558659, 34.461773],\n              [126.558653, 34.461819]\n            ]\n          ],\n          [\n            [\n              [126.558666, 34.461816],\n              [126.558703, 34.46183],\n              [126.558725, 34.461788],\n              [126.558688, 34.461774],\n              [126.558666, 34.461816]\n            ]\n          ],\n          [\n            [\n              [126.558677, 34.461791],\n              [126.55867, 34.461826],\n              [126.558725, 34.461833],\n              [126.558732, 34.461798],\n              [126.558677, 34.461791]\n            ]\n          ],\n          [\n            [\n              [126.558673, 34.461807],\n              [126.558668, 34.461854],\n              [126.558723, 34.461858],\n              [126.558728, 34.461811],\n              [126.558673, 34.461807]\n            ]\n          ],\n          [\n            [\n              [126.558669, 34.461834],\n              [126.558666, 34.461889],\n              [126.558722, 34.461891],\n              [126.558725, 34.461836],\n              [126.558669, 34.461834]\n            ]\n          ],\n          [\n            [\n              [126.558667, 34.461869],\n              [126.558665, 34.461922],\n              [126.558721, 34.461923],\n              [126.558723, 34.46187],\n              [126.558667, 34.461869]\n            ]\n          ],\n          [\n            [\n              [126.558666, 34.461902],\n              [126.558666, 34.461954],\n              [126.558721, 34.461954],\n              [126.558721, 34.461902],\n              [126.558666, 34.461902]\n            ]\n          ],\n          [\n            [\n              [126.558666, 34.461932],\n              [126.558663, 34.461984],\n              [126.558719, 34.461986],\n              [126.558722, 34.461934],\n              [126.558666, 34.461932]\n            ]\n          ],\n          [\n            [\n              [126.558664, 34.461963],\n              [126.558661, 34.462016],\n              [126.558717, 34.462018],\n              [126.55872, 34.461965],\n              [126.558664, 34.461963]\n            ]\n          ],\n          [\n            [\n              [126.558662, 34.461996],\n              [126.55866, 34.462048],\n              [126.558716, 34.462049],\n              [126.558718, 34.461997],\n              [126.558662, 34.461996]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/issue-1004.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-114.757217, 32.618318],\n            [-114.757217, 32.619977],\n            [-114.757213, 32.619977],\n            [-114.757213, 32.618318],\n            [-114.757217, 32.618318]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-114.755129, 32.618401],\n            [-114.755129, 32.618401],\n            [-114.755129, 32.618402],\n            [-114.75513, 32.618402],\n            [-114.75513, 32.618401],\n            [-114.755131, 32.618395],\n            [-114.755135, 32.618385],\n            [-114.755142, 32.618374],\n            [-114.75515, 32.618363],\n            [-114.75516, 32.618353],\n            [-114.755171, 32.618345],\n            [-114.755183, 32.618339],\n            [-114.755195, 32.618334],\n            [-114.755207, 32.618332],\n            [-114.755218, 32.618331],\n            [-114.755228, 32.618331],\n            [-114.75701, 32.618318],\n            [-114.757014, 32.618319],\n            [-114.757018, 32.618321],\n            [-114.757028, 32.618325],\n            [-114.757041, 32.61833],\n            [-114.757053, 32.618337],\n            [-114.757066, 32.618344],\n            [-114.757078, 32.618352],\n            [-114.757088, 32.618362],\n            [-114.757098, 32.618371],\n            [-114.757107, 32.618382],\n            [-114.757116, 32.618393],\n            [-114.757124, 32.618404],\n            [-114.757132, 32.618414],\n            [-114.757138, 32.618426],\n            [-114.757142, 32.618438],\n            [-114.757146, 32.61845],\n            [-114.757151, 32.618463],\n            [-114.757154, 32.618476],\n            [-114.757157, 32.618489],\n            [-114.75716, 32.618502],\n            [-114.757163, 32.618515],\n            [-114.757165, 32.618527],\n            [-114.757168, 32.618538],\n            [-114.75717, 32.618547],\n            [-114.757171, 32.618552],\n            [-114.757219, 32.619925],\n            [-114.757215, 32.619925],\n            [-114.757211, 32.619927],\n            [-114.757202, 32.619933],\n            [-114.757192, 32.61994],\n            [-114.757182, 32.619947],\n            [-114.75717, 32.619953],\n            [-114.757157, 32.619958],\n            [-114.757143, 32.619964],\n            [-114.75713, 32.619968],\n            [-114.757117, 32.619972],\n            [-114.757105, 32.619974],\n            [-114.757095, 32.619976],\n            [-114.757088, 32.619977],\n            [-114.755325, 32.619959],\n            [-114.755324, 32.619958],\n            [-114.755319, 32.619956],\n            [-114.755307, 32.619954],\n            [-114.755294, 32.619952],\n            [-114.755281, 32.61995],\n            [-114.755269, 32.619946],\n            [-114.755257, 32.61994],\n            [-114.755245, 32.619934],\n            [-114.755233, 32.619927],\n            [-114.755224, 32.619919],\n            [-114.755216, 32.619911],\n            [-114.755209, 32.619902],\n            [-114.755202, 32.619891],\n            [-114.755198, 32.619881],\n            [-114.755195, 32.61987],\n            [-114.755191, 32.61986],\n            [-114.755189, 32.619849],\n            [-114.755187, 32.619838],\n            [-114.755185, 32.619826],\n            [-114.755183, 32.619814],\n            [-114.755182, 32.619801],\n            [-114.75518, 32.619789],\n            [-114.755178, 32.619777],\n            [-114.755177, 32.619764],\n            [-114.755177, 32.619752],\n            [-114.755176, 32.61974],\n            [-114.755175, 32.619729],\n            [-114.755173, 32.619718],\n            [-114.755172, 32.61971],\n            [-114.755171, 32.619705],\n            [-114.755129, 32.618401]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/issue-1394.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.42358091, 41.76872876],\n            [-85.42358054, 41.76871738],\n            [-85.42343269, 41.76871941],\n            [-85.42342892, 41.7687873],\n            [-85.42343247, 41.76882923],\n            [-85.42343403, 41.76885906],\n            [-85.42343247, 41.76893021],\n            [-85.4234327, 41.76893113],\n            [-85.42343245, 41.768932],\n            [-85.42343245, 41.76896821],\n            [-85.42357911, 41.76896572],\n            [-85.42357911, 41.76895253],\n            [-85.42357911, 41.768932],\n            [-85.42358073, 41.76885781],\n            [-85.42357713, 41.76878899],\n            [-85.42358091, 41.76872876]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.42775567, 41.76834521],\n            [-85.42261052, 41.76843269],\n            [-85.42260803, 41.76844995],\n            [-85.4226073, 41.76845496],\n            [-85.42260484, 41.76848048],\n            [-85.42260083, 41.76852204],\n            [-85.42260191, 41.76856362],\n            [-85.42260586, 41.7685989],\n            [-85.42263068, 41.76862319],\n            [-85.42334654, 41.76860736],\n            [-85.42335464, 41.76862399],\n            [-85.4233818, 41.76867993],\n            [-85.42338342, 41.76869724],\n            [-85.42338701, 41.76872004],\n            [-85.42339693, 41.76871991],\n            [-85.42343269, 41.76871941],\n            [-85.42358054, 41.76871738],\n            [-85.42358091, 41.76872876],\n            [-85.42357713, 41.768789],\n            [-85.42358073, 41.76885781],\n            [-85.42357911, 41.768932],\n            [-85.42357911, 41.76895253],\n            [-85.42357911, 41.76896572],\n            [-85.42595679, 41.76892533],\n            [-85.42595476, 41.76888531],\n            [-85.42599703, 41.7688939],\n            [-85.42599798, 41.76892451],\n            [-85.426518, 41.76891567],\n            [-85.42776659, 41.76889445],\n            [-85.42781994, 41.76889354],\n            [-85.42781971, 41.76888565],\n            [-85.42781923, 41.76886922],\n            [-85.42780934, 41.76879664],\n            [-85.42782049, 41.76870985],\n            [-85.42782211, 41.76864827],\n            [-85.42782265, 41.76858656],\n            [-85.42782337, 41.76852915],\n            [-85.42782301, 41.76847763],\n            [-85.42782337, 41.7684563],\n            [-85.42775364, 41.76845772],\n            [-85.42775456, 41.76840654],\n            [-85.42775499, 41.76838269],\n            [-85.42775536, 41.76836222],\n            [-85.42775567, 41.76834521]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/issue-412.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [11.076136797048882, 9.856269774244707],\n            [11.262359619140625, 9.85386305739084],\n            [11.083831787109375, 9.85386305739084],\n            [11.076136797048882, 9.856269774244707]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [11.62078857421875, 10.306812602471467],\n            [11.162109375, 9.848450887107404],\n            [11.072845458984375, 9.85656910923582],\n            [11.62078857421875, 10.306812602471467]\n          ]\n        ]\n      },\n      \"properties\": {}\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/issue-702.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-74.79611411690712, 7.765254307777397],\n              [-74.79562863707542, 7.764475626432059],\n              [-74.79497820138931, 7.763392645711534],\n              [-74.79475021362305, 7.762971411965751],\n              [-74.79475021362305, 7.759810152181373],\n              [-74.79756385087967, 7.759810152181373],\n              [-74.7976054251194, 7.75992841747734],\n              [-74.79764297604561, 7.760640666196679],\n              [-74.79771003127098, 7.761103095689322],\n              [-74.79768589138985, 7.761723654007994],\n              [-74.7976054251194, 7.762247207851331],\n              [-74.79763090610504, 7.762539547277072],\n              [-74.79781463742256, 7.762691032172228],\n              [-74.79823172092438, 7.76314814415656],\n              [-74.79852139949799, 7.763707574135239],\n              [-74.798883497715, 7.7647427169537195],\n              [-74.79926839470863, 7.765593153304707],\n              [-74.79629516601562, 7.765593153304707],\n              [-74.79611411690712, 7.765254307777397]\n            ]\n          ],\n          [\n            [\n              [-74.79480117559433, 7.763330191523508],\n              [-74.79475021362305, 7.763336835586514],\n              [-74.79475021362305, 7.76296875433826],\n              [-74.79497820138931, 7.763392645711534],\n              [-74.79480117559433, 7.763330191523508]\n            ]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"vt_layer\": \"water\"\n      },\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.79376316070557, 7.766060892564003],\n            [-74.79382753372192, 7.765593153304712],\n            [-74.79288339614868, 7.765699457727546],\n            [-74.79376316070557, 7.766060892564003]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/issue-820.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [43.741513133300735, 56.20222135938059],\n            [43.74237144018551, 56.18856400988486],\n            [43.77756202246089, 56.187608768581725],\n            [43.77927863623042, 56.19639609165836],\n            [43.763142466796836, 56.20212587032091],\n            [43.741513133300735, 56.20222135938059]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [43.970066430113974, 56.332893840607994],\n            [43.970066430115764, 56.33289386305967],\n            [43.96907396330773, 56.33216050512385],\n            [43.96712784882449, 56.3329676824026],\n            [43.9675997442062, 56.33331243182769],\n            [43.96955706305079, 56.33351088302814],\n            [43.96958194836136, 56.33343379993835],\n            [43.969613521760365, 56.3333626110674],\n            [43.96964739754773, 56.3333044427381],\n            [43.96968537953426, 56.3332457040905],\n            [43.96973157401614, 56.333186395086614],\n            [43.969791873109784, 56.333117882577056],\n            [43.96983217547703, 56.3330786121781],\n            [43.969883502771644, 56.3330312788475],\n            [43.969928670817815, 56.332993640236595],\n            [43.96997589197615, 56.33295771241299],\n            [43.97002822123187, 56.332919492368774],\n            [43.970066430113974, 56.332893840607994]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.8618364334106445, 45.784404601286774],\n            [4.86544132232666, 45.78434474634739],\n            [4.88217830657959, 45.78745711798122],\n            [4.886684417724609, 45.78691845071048],\n            [4.888958930969238, 45.78494329284938],\n            [4.876770973205566, 45.782100139729486],\n            [4.874668121337891, 45.77934663219167],\n            [4.865655899047851, 45.77904732970034],\n            [4.859733581542969, 45.77976565298041],\n            [4.860033988952637, 45.78213006841216],\n            [4.8618364334106445, 45.784404601286774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.86544132232666, 45.78434474634739],\n            [4.88217830657959, 45.78745711798122],\n            [4.8838090896606445, 45.79044961914028],\n            [4.880805015563965, 45.79257419743464],\n            [4.875955581665039, 45.78808555655138],\n            [4.869647026062012, 45.78742719215828],\n            [4.863724708557129, 45.78575132043314],\n            [4.86544132232666, 45.78434474634739]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/missing-islands-2084.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"source\": \"https://github.com/Turfjs/turf/issues/2084#issue-902802697\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-113.34221616566167, 42.72749839683379],\n              [-113.34422051782082, 42.73763022099034],\n              [-113.34602091263709, 42.74776204514689],\n              [-113.34757744700497, 42.757893869303444],\n              [-113.3488503613965, 42.76802569346],\n              [-113.34980157164547, 42.77815751761655],\n              [-113.35039554793526, 42.7882893417731],\n              [-113.35059966094683, 42.79842116592965],\n              [-113.35038417274245, 42.808552990086206],\n              [-113.34972205522699, 42.81868481424276],\n              [-113.34858878297648, 42.82881663839931],\n              [-113.34696218983753, 42.83894846255586],\n              [-113.34482242003024, 42.849080286712415],\n              [-113.34215195882072, 42.85921211086897],\n              [-113.34044031184473, 42.86465881869336],\n              [-113.33898416124809, 42.86934393502552],\n              [-113.33531965368003, 42.87947575918207],\n              [-113.33108617159658, 42.88960758333862],\n              [-113.32673518382107, 42.898789248162814],\n              [-113.3262829516782, 42.899739407495176],\n              [-113.32098672364542, 42.90987123165173],\n              [-113.3150884351566, 42.92000305580828],\n              [-113.31303005579741, 42.92327111364501],\n              [-113.30863574143333, 42.93013487996483],\n              [-113.30158921186182, 42.940266704121385],\n              [-113.29932492777375, 42.94331966864196],\n              [-113.2939470361242, 42.95039852827794],\n              [-113.28568446305374, 42.96053035243449],\n              [-113.2856197997501, 42.96060615112174],\n              [-113.27678134164277, 42.97066217659104],\n              [-113.27191467172644, 42.975901947203184],\n              [-113.26721213122191, 42.98079400074759],\n              [-113.25820954370278, 42.98973136711528],\n              [-113.25695955601647, 42.990925824904146],\n              [-113.2459708068134, 43.0010576490607],\n              [-113.24450441567912, 43.00236543461658],\n              [-113.23420136880357, 43.01118947321725],\n              [-113.23079928765546, 43.01401499667304],\n              [-113.22161634733155, 43.0213212973738],\n              [-113.2170941596318, 43.024827831713246],\n              [-113.20815748364195, 43.031453121530355],\n              [-113.20338903160814, 43.03491311968221],\n              [-113.19375623656546, 43.04158494568691],\n              [-113.18968390358448, 43.04435566353103],\n              [-113.1783342782194, 43.05171676984346],\n              [-113.17597877556082, 43.053222183583124],\n              [-113.16227364753716, 43.061567567742706],\n              [-113.16178958326367, 43.06184859400001],\n              [-113.1485685195135, 43.06944604592946],\n              [-113.14392413254552, 43.07198041815656],\n              [-113.13486339148984, 43.076884407340415],\n              [-113.12468416975315, 43.082112242313116],\n              [-113.12115826346619, 43.08391142248678],\n              [-113.10745313544253, 43.09056277462457],\n              [-113.10380603742766, 43.09224406646967],\n              [-113.09374800741887, 43.09686281149846],\n              [-113.08105914975012, 43.10237589062622],\n              [-113.08004287939521, 43.10281622348303],\n              [-113.06633775137155, 43.10846572553491],\n              [-113.05595768410025, 43.11250771478277],\n              [-113.05263262334789, 43.113801082737744],\n              [-113.03892749532423, 43.118855422709984],\n              [-113.02804848052969, 43.122639538939325],\n              [-113.02522236730057, 43.12362274332118],\n              [-113.01151723927691, 43.12813254323416],\n              [-112.99781211125325, 43.13237082919632],\n              [-112.99643810996427, 43.13277136309588],\n              [-112.9841069832296, 43.13637133029275],\n              [-112.97040185520594, 43.14011929880119],\n              [-112.95951272776081, 43.14290318725243],\n              [-112.95669672718228, 43.143624800019055],\n              [-112.94299159915862, 43.14690580593801],\n              [-112.92928647113496, 43.14994912088687],\n              [-112.9155813431113, 43.15275933061889],\n              [-112.91412135627137, 43.15303501140898],\n              [-112.90187621508764, 43.155355936337436],\n              [-112.88817108706398, 43.15772600974665],\n              [-112.87446595904032, 43.159869752055975],\n              [-112.86076083101666, 43.16178851984129],\n              [-112.84961701899758, 43.163166835565534],\n              [-112.847055702993, 43.16348555383334],\n              [-112.83335057496934, 43.16496812718983],\n              [-112.81964544694569, 43.16622502310549],\n              [-112.80594031892203, 43.16725534374592],\n              [-112.79223519089837, 43.16805768197573],\n              [-112.77853006287471, 43.16863013432147],\n              [-112.76482493485105, 43.168970295209846],\n              [-112.75111980682739, 43.16907523431523],\n              [-112.73741467880373, 43.16894146058576],\n              [-112.72370955078007, 43.168564877890496],\n              [-112.71000442275641, 43.16794073807304],\n              [-112.69629929473275, 43.16706359742245],\n              [-112.6825941667091, 43.16592728218677],\n              [-112.66888903868544, 43.16452486784609],\n              [-112.6577671349259, 43.163166835565534],\n              [-112.65518391066178, 43.16285208349927],\n              [-112.64147878263812, 43.1609141978228],\n              [-112.62777365461446, 43.15868678748944],\n              [-112.6140685265908, 43.156159354568175],\n              [-112.60036339856714, 43.15332070171928],\n              [-112.59910834242524, 43.15303501140898],\n              [-112.58665827054348, 43.15018402604024],\n              [-112.57295314251982, 43.1467132676845],\n              [-112.55928779379896, 43.14290318725243],\n              [-112.55924801449616, 43.14289197878029],\n              [-112.5455428864725, 43.1387315884445],\n              [-112.53183775844884, 43.13418665328615],\n              [-112.53183775844884, 43.14290318725243],\n              [-112.53183775844884, 43.15303501140898],\n              [-112.53183775844884, 43.163166835565534],\n              [-112.53183775844884, 43.173298659722086],\n              [-112.53183775844884, 43.18343048387864],\n              [-112.53183775844884, 43.19356230803519],\n              [-112.53183775844884, 43.20369413219174],\n              [-112.53183775844884, 43.213825956348295],\n              [-112.53183775844884, 43.22395778050485],\n              [-112.53183775844884, 43.2340896046614],\n              [-112.53183775844884, 43.24422142881795],\n              [-112.53183775844884, 43.254353252974504],\n              [-112.53183775844884, 43.264485077131056],\n              [-112.53183775844884, 43.27461690128761],\n              [-112.53183775844884, 43.28474872544416],\n              [-112.53183775844884, 43.29488054960071],\n              [-112.53183775844884, 43.305012373757265],\n              [-112.53183775844884, 43.31514419791382],\n              [-112.53183775844884, 43.32527602207037],\n              [-112.53183775844884, 43.33540784622692],\n              [-112.53183775844884, 43.345539670383474],\n              [-112.53183775844884, 43.355671494540026],\n              [-112.53183775844884, 43.36580331869658],\n              [-112.53183775844884, 43.37593514285313],\n              [-112.53183775844884, 43.38606696700968],\n              [-112.53183775844884, 43.396198791166235],\n              [-112.53183775844884, 43.40633061532279],\n              [-112.53183775844884, 43.41646243947934],\n              [-112.53183775844884, 43.42659426363589],\n              [-112.53183775844884, 43.436726087792444],\n              [-112.53183775844884, 43.446857911948996],\n              [-112.53183775844884, 43.45698973610555],\n              [-112.53183775844884, 43.4671215602621],\n              [-112.53183775844884, 43.47725338441865],\n              [-112.53183775844884, 43.487385208575205],\n              [-112.53183775844884, 43.49751703273176],\n              [-112.53183775844884, 43.50764885688831],\n              [-112.53183775844884, 43.51778068104486],\n              [-112.53183775844884, 43.527912505201414],\n              [-112.53183775844884, 43.538044329357966],\n              [-112.53183775844884, 43.54817615351452],\n              [-112.53183775844884, 43.55830797767107],\n              [-112.53183775844884, 43.56843980182762],\n              [-112.53183775844884, 43.578571625984175],\n              [-112.53183775844884, 43.58870345014073],\n              [-112.53183775844884, 43.59883527429728],\n              [-112.53183775844884, 43.60896709845383],\n              [-112.53183775844884, 43.619098922610384],\n              [-112.53183775844884, 43.629230746766936],\n              [-112.53183775844884, 43.63936257092349],\n              [-112.53183775844884, 43.64949439508004],\n              [-112.53183775844884, 43.65962621923659],\n              [-112.53183775844884, 43.669758043393145],\n              [-112.53183775844884, 43.6798898675497],\n              [-112.53183775844884, 43.69002169170625],\n              [-112.53183775844884, 43.7001535158628],\n              [-112.53183775844884, 43.710285340019354],\n              [-112.53183775844884, 43.720417164175906],\n              [-112.53183775844884, 43.73054898833246],\n              [-112.53183775844884, 43.74068081248901],\n              [-112.53183775844884, 43.75081263664556],\n              [-112.53183775844884, 43.760944460802115],\n              [-112.53183775844884, 43.77107628495867],\n              [-112.53183775844884, 43.78120810911522],\n              [-112.53183775844884, 43.79133993327177],\n              [-112.53183775844884, 43.801471757428324],\n              [-112.53183775844884, 43.811603581584876],\n              [-112.53183775844884, 43.82173540574143],\n              [-112.53183775844884, 43.83186722989798],\n              [-112.53183775844884, 43.84199905405453],\n              [-112.53183775844884, 43.852130878211085],\n              [-112.53183775844884, 43.86226270236764],\n              [-112.53183775844884, 43.87239452652419],\n              [-112.53183775844884, 43.88252635068074],\n              [-112.53183775844884, 43.892658174837294],\n              [-112.53183775844884, 43.902789998993846],\n              [-112.53183775844884, 43.9129218231504],\n              [-112.53183775844884, 43.92305364730695],\n              [-112.53183775844884, 43.9331854714635],\n              [-112.53183775844884, 43.943317295620055],\n              [-112.53183775844884, 43.95344911977661],\n              [-112.53183775844884, 43.96358094393316],\n              [-112.53183775844884, 43.97371276808971],\n              [-112.53183775844884, 43.983844592246264],\n              [-112.53183775844884, 43.993976416402816],\n              [-112.53183775844884, 44.00410824055937],\n              [-112.53183775844884, 44.01424006471592],\n              [-112.53183775844884, 44.02437188887247],\n              [-112.53183775844884, 44.034503713029025],\n              [-112.53183775844884, 44.04463553718558],\n              [-112.53183775844884, 44.05476736134213],\n              [-112.53183775844884, 44.06489918549868],\n              [-112.53183775844884, 44.075031009655234],\n              [-112.53183775844884, 44.085162833811786],\n              [-112.53183775844884, 44.09529465796834],\n              [-112.53183775844884, 44.10542648212489],\n              [-112.53183775844884, 44.11555830628144],\n              [-112.53183775844884, 44.125690130437995],\n              [-112.53183775844884, 44.13582195459455],\n              [-112.53183775844884, 44.1459537787511],\n              [-112.53183775844884, 44.15608560290765],\n              [-112.53183775844884, 44.166217427064204],\n              [-112.53183775844884, 44.176349251220756],\n              [-112.53183775844884, 44.18648107537731],\n              [-112.53183775844884, 44.19661289953386],\n              [-112.53183775844884, 44.20674472369041],\n              [-112.53183775844884, 44.216876547846965],\n              [-112.53183775844884, 44.22700837200352],\n              [-112.53183775844884, 44.23714019616007],\n              [-112.53183775844884, 44.24727202031662],\n              [-112.53183775844884, 44.257403844473174],\n              [-112.53183775844884, 44.267535668629726],\n              [-112.53183775844884, 44.27766749278628],\n              [-112.53183775844884, 44.28779931694283],\n              [-112.53183775844884, 44.29793114109938],\n              [-112.53183775844884, 44.308062965255935],\n              [-112.53183775844884, 44.31819478941249],\n              [-112.53183775844884, 44.32832661356904],\n              [-112.53183775844884, 44.33845843772559],\n              [-112.53183775844884, 44.348590261882144],\n              [-112.53183775844884, 44.358722086038696],\n              [-112.53183775844884, 44.36885391019525],\n              [-112.53183775844884, 44.3789857343518],\n              [-112.53183775844884, 44.38911755850835],\n              [-112.53183775844884, 44.399249382664905],\n              [-112.53183775844884, 44.40938120682146],\n              [-112.53183775844884, 44.41951303097801],\n              [-112.53183775844884, 44.42964485513456],\n              [-112.53183775844884, 44.439776679291114],\n              [-112.53183775844884, 44.449908503447666],\n              [-112.53183775844884, 44.46004032760422],\n              [-112.53183775844884, 44.47017215176077],\n              [-112.53183775844884, 44.48030397591732],\n              [-112.53183775844884, 44.490435800073875],\n              [-112.53183775844884, 44.50056762423043],\n              [-112.53183775844884, 44.51069944838698],\n              [-112.53183775844884, 44.52083127254353],\n              [-112.53183775844884, 44.530963096700084],\n              [-112.53183775844884, 44.54109492085664],\n              [-112.53183775844884, 44.55122674501319],\n              [-112.53183775844884, 44.56135856916974],\n              [-112.53183775844884, 44.57149039332629],\n              [-112.53183775844884, 44.581622217482845],\n              [-112.53183775844884, 44.5917540416394],\n              [-112.53183775844884, 44.60188586579595],\n              [-112.53183775844884, 44.6120176899525],\n              [-112.53183775844884, 44.622149514109054],\n              [-112.53183775844884, 44.63228133826561],\n              [-112.53183775844884, 44.64241316242216],\n              [-112.53183775844884, 44.65254498657871],\n              [-112.53183775844884, 44.66267681073526],\n              [-112.53183775844884, 44.672808634891815],\n              [-112.53183775844884, 44.68294045904837],\n              [-112.53183775844884, 44.69307228320492],\n              [-112.53183775844884, 44.70320410736147],\n              [-112.53183775844884, 44.713335931518024],\n              [-112.53183775844884, 44.72346775567458],\n              [-112.53183775844884, 44.73359957983113],\n              [-112.53183775844884, 44.74373140398768],\n              [-112.53183775844884, 44.75386322814423],\n              [-112.53183775844884, 44.763995052300785],\n              [-112.53183775844884, 44.77412687645734],\n              [-112.53183775844884, 44.78425870061389],\n              [-112.53183775844884, 44.79439052477044],\n              [-112.53183775844884, 44.804522348926994],\n              [-112.53183775844884, 44.81465417308355],\n              [-112.53183775844884, 44.8247859972401],\n              [-112.53183775844884, 44.83491782139665],\n              [-112.53183775844884, 44.8450496455532],\n              [-112.53183775844884, 44.855181469709756],\n              [-112.53183775844884, 44.86531329386631],\n              [-112.53183775844884, 44.87544511802286],\n              [-112.53183775844884, 44.88557694217941],\n              [-112.53183775844884, 44.895708766335964],\n              [-112.53183775844884, 44.90584059049252],\n              [-112.53183775844884, 44.91597241464907],\n              [-112.53183775844884, 44.92610423880562],\n              [-112.53183775844884, 44.93623606296217],\n              [-112.53183775844884, 44.946367887118726],\n              [-112.53183775844884, 44.95649971127528],\n              [-112.53183775844884, 44.96663153543183],\n              [-112.53183775844884, 44.97676335958838],\n              [-112.53183775844884, 44.986895183744934],\n              [-112.53183775844884, 44.99702700790149],\n              [-112.53183775844884, 45.00715883205804],\n              [-112.53183775844884, 45.01729065621459],\n              [-112.53183775844884, 45.02742248037114],\n              [-112.53183775844884, 45.037554304527696],\n              [-112.53183775844884, 45.04768612868425],\n              [-112.53183775844884, 45.0578179528408],\n              [-112.53183775844884, 45.06794977699735],\n              [-112.53183775844884, 45.078081601153905],\n              [-112.53183775844884, 45.08821342531046],\n              [-112.53183775844884, 45.09834524946701],\n              [-112.53183775844884, 45.10847707362356],\n              [-112.53183775844884, 45.11860889778011],\n              [-112.53183775844884, 45.128740721936666],\n              [-112.53183775844884, 45.13887254609322],\n              [-112.53183775844884, 45.14900437024977],\n              [-112.53183775844884, 45.15913619440632],\n              [-112.53183775844884, 45.169268018562875],\n              [-112.53183775844884, 45.17939984271943],\n              [-112.53183775844884, 45.18953166687598],\n              [-112.53183775844884, 45.19966349103253],\n              [-112.53183775844884, 45.20979531518908],\n              [-112.53183775844884, 45.219927139345636],\n              [-112.53183775844884, 45.23005896350219],\n              [-112.53183775844884, 45.24019078765874],\n              [-112.53183775844884, 45.25032261181529],\n              [-112.53183775844884, 45.260454435971845],\n              [-112.53183775844884, 45.2705862601284],\n              [-112.53183775844884, 45.28071808428495],\n              [-112.53183775844884, 45.2908499084415],\n              [-112.53183775844884, 45.30098173259805],\n              [-112.53183775844884, 45.311113556754606],\n              [-112.53183775844884, 45.32124538091116],\n              [-112.53183775844884, 45.33137720506771],\n              [-112.53183775844884, 45.34150902922426],\n              [-112.53183775844884, 45.351640853380815],\n              [-112.53183775844884, 45.36177267753737],\n              [-112.53183775844884, 45.37190450169392],\n              [-112.53183775844884, 45.38203632585047],\n              [-112.53183775844884, 45.39216815000702],\n              [-112.53183775844884, 45.402299974163576],\n              [-112.53183775844884, 45.41243179832013],\n              [-112.53183775844884, 45.42256362247668],\n              [-112.53183775844884, 45.43269544663323],\n              [-112.53183775844884, 45.442827270789785],\n              [-112.53183775844884, 45.45295909494634],\n              [-112.53183775844884, 45.46309091910289],\n              [-112.53183775844884, 45.47322274325944],\n              [-112.53183775844884, 45.483354567415994],\n              [-112.53183775844884, 45.493486391572546],\n              [-112.53183775844884, 45.5036182157291],\n              [-112.53183775844884, 45.51375003988565],\n              [-112.53183775844884, 45.5238818640422],\n              [-112.53183775844884, 45.534013688198755],\n              [-112.53183775844884, 45.54414551235531],\n              [-112.53183775844884, 45.55427733651186],\n              [-112.53183775844884, 45.56440916066841],\n              [-112.53183775844884, 45.574540984824964],\n              [-112.53183775844884, 45.584672808981516],\n              [-112.53183775844884, 45.59480463313807],\n              [-112.53183775844884, 45.60493645729462],\n              [-112.53183775844884, 45.61506828145117],\n              [-112.53183775844884, 45.625200105607725],\n              [-112.53183775844884, 45.63533192976428],\n              [-112.53183775844884, 45.64546375392083],\n              [-112.53183775844884, 45.65559557807738],\n              [-112.53183775844884, 45.665727402233934],\n              [-112.53183775844884, 45.675859226390486],\n              [-112.53183775844884, 45.68599105054704],\n              [-112.53183775844884, 45.69612287470359],\n              [-112.53183775844884, 45.70625469886014],\n              [-112.53183775844884, 45.716386523016695],\n              [-112.53183775844884, 45.72651834717325],\n              [-112.53183775844884, 45.7366501713298],\n              [-112.53183775844884, 45.74678199548635],\n              [-112.53183775844884, 45.756913819642904],\n              [-112.53183775844884, 45.767045643799456],\n              [-112.53183775844884, 45.77717746795601],\n              [-112.53183775844884, 45.78730929211256],\n              [-112.53183775844884, 45.79744111626911],\n              [-112.53183775844884, 45.807572940425665],\n              [-112.53183775844884, 45.81770476458222],\n              [-112.53183775844884, 45.82783658873877],\n              [-112.53183775844884, 45.83796841289532],\n              [-112.53183775844884, 45.848100237051874],\n              [-112.53183775844884, 45.858232061208426],\n              [-112.53183775844884, 45.86836388536498],\n              [-112.53183775844884, 45.87849570952153],\n              [-112.53183775844884, 45.88862753367808],\n              [-112.53183775844884, 45.898759357834635],\n              [-112.53183775844884, 45.90889118199119],\n              [-112.53183775844884, 45.91902300614774],\n              [-112.53183775844884, 45.92915483030429],\n              [-112.53183775844884, 45.939286654460844],\n              [-112.53183775844884, 45.949418478617396],\n              [-112.53183775844884, 45.95955030277395],\n              [-112.53183775844884, 45.9696821269305],\n              [-112.53183775844884, 45.97981395108705],\n              [-112.53183775844884, 45.989945775243605],\n              [-112.53183775844884, 46.00007759940016],\n              [-112.53183775844884, 46.01020942355671],\n              [-112.53183775844884, 46.02034124771326],\n              [-112.53183775844884, 46.030473071869814],\n              [-112.53183775844884, 46.040604896026366],\n              [-112.53183775844884, 46.05073672018292],\n              [-112.53183775844884, 46.06086854433947],\n              [-112.53183775844884, 46.07100036849602],\n              [-112.53183775844884, 46.081132192652575],\n              [-112.53183775844884, 46.09126401680913],\n              [-112.53183775844884, 46.10139584096568],\n              [-112.53183775844884, 46.11152766512223],\n              [-112.53183775844884, 46.121659489278784],\n              [-112.53183775844884, 46.131791313435336],\n              [-112.53183775844884, 46.14192313759189],\n              [-112.53183775844884, 46.15205496174844],\n              [-112.53183775844884, 46.16218678590499],\n              [-112.53183775844884, 46.172318610061545],\n              [-112.53183775844884, 46.1824504342181],\n              [-112.53183775844884, 46.19258225837465],\n              [-112.53183775844884, 46.2027140825312],\n              [-112.53183775844884, 46.212845906687754],\n              [-112.53183775844884, 46.222977730844306],\n              [-112.53183775844884, 46.23310955500086],\n              [-112.53183775844884, 46.24324137915741],\n              [-112.53183775844884, 46.25337320331396],\n              [-112.53183775844884, 46.263505027470515],\n              [-112.53183775844884, 46.27363685162707],\n              [-112.53183775844884, 46.28376867578362],\n              [-112.53183775844884, 46.29390049994017],\n              [-112.53183775844884, 46.304032324096724],\n              [-112.53183775844884, 46.314164148253276],\n              [-112.53183775844884, 46.32429597240983],\n              [-112.53183775844884, 46.33442779656638],\n              [-112.53183775844884, 46.34455962072293],\n              [-112.53183775844884, 46.354691444879485],\n              [-112.53183775844884, 46.36482326903604],\n              [-112.53183775844884, 46.37495509319259],\n              [-112.53183775844884, 46.38508691734914],\n              [-112.53183775844884, 46.395218741505694],\n              [-112.53183775844884, 46.405350565662246],\n              [-112.53183775844884, 46.4154823898188],\n              [-112.53183775844884, 46.42561421397535],\n              [-112.53183775844884, 46.4357460381319],\n              [-112.53183775844884, 46.445877862288455],\n              [-112.53183775844884, 46.45600968644501],\n              [-112.53183775844884, 46.46614151060156],\n              [-112.53183775844884, 46.47627333475811],\n              [-112.53183775844884, 46.486405158914664],\n              [-112.53183775844884, 46.496536983071216],\n              [-112.53183775844884, 46.50666880722777],\n              [-112.53183775844884, 46.51680063138432],\n              [-112.53183775844884, 46.52693245554087],\n              [-112.53183775844884, 46.537064279697425],\n              [-112.53183775844884, 46.54719610385398],\n              [-112.53183775844884, 46.55732792801053],\n              [-112.53183775844884, 46.56745975216708],\n              [-112.53183775844884, 46.577591576323634],\n              [-112.53183775844884, 46.587723400480186],\n              [-112.53183775844884, 46.59785522463674],\n              [-112.53183775844884, 46.60798704879329],\n              [-112.53183775844884, 46.61811887294984],\n              [-112.53183775844884, 46.628250697106395],\n              [-112.53183775844884, 46.63838252126295],\n              [-112.53183775844884, 46.6485143454195],\n              [-112.53183775844884, 46.65864616957605],\n              [-112.53183775844884, 46.668777993732604],\n              [-112.53183775844884, 46.678909817889156],\n              [-112.53183775844884, 46.68904164204571],\n              [-112.53183775844884, 46.69917346620226],\n              [-112.53183775844884, 46.70930529035881],\n              [-112.53183775844884, 46.719437114515365],\n              [-112.53183775844884, 46.72956893867192],\n              [-112.53183775844884, 46.73970076282847],\n              [-112.53183775844884, 46.74983258698502],\n              [-112.53183775844884, 46.759964411141574],\n              [-112.53183775844884, 46.770096235298126],\n              [-112.53183775844884, 46.78022805945468],\n              [-112.53183775844884, 46.79035988361123],\n              [-112.53183775844884, 46.80049170776778],\n              [-112.53183775844884, 46.810623531924335],\n              [-112.53183775844884, 46.82075535608089],\n              [-112.53183775844884, 46.83088718023744],\n              [-112.53183775844884, 46.84101900439399],\n              [-112.53183775844884, 46.851150828550544],\n              [-112.53183775844884, 46.8612826527071],\n              [-112.53183775844884, 46.87141447686365],\n              [-112.53183775844884, 46.8815463010202],\n              [-112.53183775844884, 46.89167812517675],\n              [-112.53183775844884, 46.901809949333305],\n              [-112.53183775844884, 46.91194177348986],\n              [-112.53183775844884, 46.92207359764641],\n              [-112.53183775844884, 46.93220542180296],\n              [-112.53183775844884, 46.942337245959514],\n              [-112.53183775844884, 46.95246907011607],\n              [-112.53183775844884, 46.96260089427262],\n              [-112.53183775844884, 46.97273271842917],\n              [-112.53183775844884, 46.98286454258572],\n              [-112.53183775844884, 46.992996366742275],\n              [-112.53183775844884, 47.00312819089883],\n              [-112.53183775844884, 47.01326001505538],\n              [-112.53183775844884, 47.02339183921193],\n              [-112.53183775844884, 47.033523663368484],\n              [-112.53183775844884, 47.04365548752504],\n              [-112.53183775844884, 47.05378731168159],\n              [-112.53183775844884, 47.06391913583814],\n              [-112.53183775844884, 47.07405095999469],\n              [-112.53183775844884, 47.084182784151245],\n              [-112.53183775844884, 47.0943146083078],\n              [-112.53183775844884, 47.10444643246435],\n              [-112.53183775844884, 47.1145782566209],\n              [-112.53183775844884, 47.124710080777454],\n              [-112.53183775844884, 47.13484190493401],\n              [-112.53183775844884, 47.14497372909056],\n              [-112.53183775844884, 47.15510555324711],\n              [-112.53183775844884, 47.16523737740366],\n              [-112.53183775844884, 47.175369201560216],\n              [-112.53183775844884, 47.18550102571677],\n              [-112.53183775844884, 47.19563284987332],\n              [-112.53183775844884, 47.20576467402987],\n              [-112.53183775844884, 47.215896498186424],\n              [-112.53183775844884, 47.22602832234298],\n              [-112.53183775844884, 47.23616014649953],\n              [-112.53183775844884, 47.24629197065608],\n              [-112.53183775844884, 47.25642379481263],\n              [-112.53183775844884, 47.266555618969186],\n              [-112.53183775844884, 47.27668744312574],\n              [-112.53183775844884, 47.28681926728229],\n              [-112.53183775844884, 47.29695109143884],\n              [-112.53183775844884, 47.307082915595394],\n              [-112.5455428864725, 47.307082915595394],\n              [-112.55924801449616, 47.307082915595394],\n              [-112.57295314251982, 47.307082915595394],\n              [-112.58665827054348, 47.307082915595394],\n              [-112.60036339856714, 47.307082915595394],\n              [-112.6140685265908, 47.307082915595394],\n              [-112.62777365461446, 47.307082915595394],\n              [-112.64147878263812, 47.307082915595394],\n              [-112.65518391066178, 47.307082915595394],\n              [-112.66888903868544, 47.307082915595394],\n              [-112.6825941667091, 47.307082915595394],\n              [-112.69629929473275, 47.307082915595394],\n              [-112.71000442275641, 47.307082915595394],\n              [-112.72370955078007, 47.307082915595394],\n              [-112.73741467880373, 47.307082915595394],\n              [-112.75111980682739, 47.307082915595394],\n              [-112.76482493485105, 47.307082915595394],\n              [-112.77853006287471, 47.307082915595394],\n              [-112.79223519089837, 47.307082915595394],\n              [-112.80594031892203, 47.307082915595394],\n              [-112.81964544694569, 47.307082915595394],\n              [-112.83335057496934, 47.307082915595394],\n              [-112.847055702993, 47.307082915595394],\n              [-112.86076083101666, 47.307082915595394],\n              [-112.87446595904032, 47.307082915595394],\n              [-112.88817108706398, 47.307082915595394],\n              [-112.90187621508764, 47.307082915595394],\n              [-112.9155813431113, 47.307082915595394],\n              [-112.92928647113496, 47.307082915595394],\n              [-112.94299159915862, 47.307082915595394],\n              [-112.95669672718228, 47.307082915595394],\n              [-112.97040185520594, 47.307082915595394],\n              [-112.9841069832296, 47.307082915595394],\n              [-112.99781211125325, 47.307082915595394],\n              [-113.01151723927691, 47.307082915595394],\n              [-113.02522236730057, 47.307082915595394],\n              [-113.03892749532423, 47.307082915595394],\n              [-113.05263262334789, 47.307082915595394],\n              [-113.06633775137155, 47.307082915595394],\n              [-113.08004287939521, 47.307082915595394],\n              [-113.09374800741887, 47.307082915595394],\n              [-113.10745313544253, 47.307082915595394],\n              [-113.12115826346619, 47.307082915595394],\n              [-113.13486339148984, 47.307082915595394],\n              [-113.1485685195135, 47.307082915595394],\n              [-113.16227364753716, 47.307082915595394],\n              [-113.17597877556082, 47.307082915595394],\n              [-113.18968390358448, 47.307082915595394],\n              [-113.20338903160814, 47.307082915595394],\n              [-113.2170941596318, 47.307082915595394],\n              [-113.23079928765546, 47.307082915595394],\n              [-113.24450441567912, 47.307082915595394],\n              [-113.25820954370278, 47.307082915595394],\n              [-113.27191467172644, 47.307082915595394],\n              [-113.2856197997501, 47.307082915595394],\n              [-113.29932492777375, 47.307082915595394],\n              [-113.31303005579741, 47.307082915595394],\n              [-113.32673518382107, 47.307082915595394],\n              [-113.34044031184473, 47.307082915595394],\n              [-113.35414543986839, 47.307082915595394],\n              [-113.36785056789205, 47.307082915595394],\n              [-113.38155569591571, 47.307082915595394],\n              [-113.39526082393937, 47.307082915595394],\n              [-113.40896595196303, 47.307082915595394],\n              [-113.42267107998669, 47.307082915595394],\n              [-113.43637620801034, 47.307082915595394],\n              [-113.450081336034, 47.307082915595394],\n              [-113.46378646405766, 47.307082915595394],\n              [-113.47749159208132, 47.307082915595394],\n              [-113.49119672010498, 47.307082915595394],\n              [-113.50490184812864, 47.307082915595394],\n              [-113.5186069761523, 47.307082915595394],\n              [-113.53231210417596, 47.307082915595394],\n              [-113.54601723219962, 47.307082915595394],\n              [-113.55972236022328, 47.307082915595394],\n              [-113.57342748824694, 47.307082915595394],\n              [-113.5871326162706, 47.307082915595394],\n              [-113.60083774429425, 47.307082915595394],\n              [-113.61454287231791, 47.307082915595394],\n              [-113.62824800034157, 47.307082915595394],\n              [-113.64195312836523, 47.307082915595394],\n              [-113.65565825638889, 47.307082915595394],\n              [-113.66936338441255, 47.307082915595394],\n              [-113.68306851243621, 47.307082915595394],\n              [-113.69677364045987, 47.307082915595394],\n              [-113.71047876848353, 47.307082915595394],\n              [-113.72418389650718, 47.307082915595394],\n              [-113.73788902453084, 47.307082915595394],\n              [-113.7515941525545, 47.307082915595394],\n              [-113.76529928057816, 47.307082915595394],\n              [-113.77900440860182, 47.307082915595394],\n              [-113.79270953662548, 47.307082915595394],\n              [-113.80641466464914, 47.307082915595394],\n              [-113.8201197926728, 47.307082915595394],\n              [-113.83382492069646, 47.307082915595394],\n              [-113.84753004872012, 47.307082915595394],\n              [-113.86123517674378, 47.307082915595394],\n              [-113.87494030476743, 47.307082915595394],\n              [-113.8886454327911, 47.307082915595394],\n              [-113.90235056081475, 47.307082915595394],\n              [-113.91605568883841, 47.307082915595394],\n              [-113.92976081686207, 47.307082915595394],\n              [-113.94346594488573, 47.307082915595394],\n              [-113.95717107290939, 47.307082915595394],\n              [-113.97087620093305, 47.307082915595394],\n              [-113.98458132895671, 47.307082915595394],\n              [-113.99828645698037, 47.307082915595394],\n              [-114.01199158500403, 47.307082915595394],\n              [-114.02569671302768, 47.307082915595394],\n              [-114.03940184105134, 47.307082915595394],\n              [-114.053106969075, 47.307082915595394],\n              [-114.06681209709866, 47.307082915595394],\n              [-114.08051722512232, 47.307082915595394],\n              [-114.09422235314598, 47.307082915595394],\n              [-114.10792748116964, 47.307082915595394],\n              [-114.1216326091933, 47.307082915595394],\n              [-114.13533773721696, 47.307082915595394],\n              [-114.14904286524062, 47.307082915595394],\n              [-114.16274799326428, 47.307082915595394],\n              [-114.17645312128793, 47.307082915595394],\n              [-114.1901582493116, 47.307082915595394],\n              [-114.20386337733525, 47.307082915595394],\n              [-114.21756850535891, 47.307082915595394],\n              [-114.23127363338257, 47.307082915595394],\n              [-114.24497876140623, 47.307082915595394],\n              [-114.25868388942989, 47.307082915595394],\n              [-114.27238901745355, 47.307082915595394],\n              [-114.28609414547721, 47.307082915595394],\n              [-114.29979927350087, 47.307082915595394],\n              [-114.31350440152453, 47.307082915595394],\n              [-114.32720952954818, 47.307082915595394],\n              [-114.34091465757184, 47.307082915595394],\n              [-114.3546197855955, 47.307082915595394],\n              [-114.36832491361916, 47.307082915595394],\n              [-114.38203004164282, 47.307082915595394],\n              [-114.39573516966648, 47.307082915595394],\n              [-114.40944029769014, 47.307082915595394],\n              [-114.4231454257138, 47.307082915595394],\n              [-114.43685055373746, 47.307082915595394],\n              [-114.45055568176112, 47.307082915595394],\n              [-114.46426080978478, 47.307082915595394],\n              [-114.47796593780843, 47.307082915595394],\n              [-114.4916710658321, 47.307082915595394],\n              [-114.50537619385575, 47.307082915595394],\n              [-114.51908132187941, 47.307082915595394],\n              [-114.53278644990307, 47.307082915595394],\n              [-114.54649157792673, 47.307082915595394],\n              [-114.56019670595039, 47.307082915595394],\n              [-114.57390183397405, 47.307082915595394],\n              [-114.58760696199771, 47.307082915595394],\n              [-114.60131209002137, 47.307082915595394],\n              [-114.61501721804503, 47.307082915595394],\n              [-114.62872234606868, 47.307082915595394],\n              [-114.64242747409234, 47.307082915595394],\n              [-114.656132602116, 47.307082915595394],\n              [-114.66983773013966, 47.307082915595394],\n              [-114.68354285816332, 47.307082915595394],\n              [-114.69724798618698, 47.307082915595394],\n              [-114.71095311421064, 47.307082915595394],\n              [-114.7246582422343, 47.307082915595394],\n              [-114.73836337025796, 47.307082915595394],\n              [-114.75206849828162, 47.307082915595394],\n              [-114.76577362630528, 47.307082915595394],\n              [-114.77947875432893, 47.307082915595394],\n              [-114.7931838823526, 47.307082915595394],\n              [-114.80688901037625, 47.307082915595394],\n              [-114.82059413839991, 47.307082915595394],\n              [-114.83429926642357, 47.307082915595394],\n              [-114.84800439444723, 47.307082915595394],\n              [-114.86170952247089, 47.307082915595394],\n              [-114.87541465049455, 47.307082915595394],\n              [-114.88911977851821, 47.307082915595394],\n              [-114.90282490654187, 47.307082915595394],\n              [-114.91653003456553, 47.307082915595394],\n              [-114.93023516258918, 47.307082915595394],\n              [-114.94394029061284, 47.307082915595394],\n              [-114.9576454186365, 47.307082915595394],\n              [-114.97135054666016, 47.307082915595394],\n              [-114.98505567468382, 47.307082915595394],\n              [-114.99876080270748, 47.307082915595394],\n              [-115.01246593073114, 47.307082915595394],\n              [-115.0261710587548, 47.307082915595394],\n              [-115.03987618677846, 47.307082915595394],\n              [-115.05358131480212, 47.307082915595394],\n              [-115.06728644282578, 47.307082915595394],\n              [-115.08099157084943, 47.307082915595394],\n              [-115.0946966988731, 47.307082915595394],\n              [-115.10840182689675, 47.307082915595394],\n              [-115.12210695492041, 47.307082915595394],\n              [-115.13581208294407, 47.307082915595394],\n              [-115.14951721096773, 47.307082915595394],\n              [-115.16322233899139, 47.307082915595394],\n              [-115.17692746701505, 47.307082915595394],\n              [-115.19063259503871, 47.307082915595394],\n              [-115.20433772306237, 47.307082915595394],\n              [-115.21804285108603, 47.307082915595394],\n              [-115.23174797910968, 47.307082915595394],\n              [-115.24545310713334, 47.307082915595394],\n              [-115.259158235157, 47.307082915595394],\n              [-115.27286336318066, 47.307082915595394],\n              [-115.28656849120432, 47.307082915595394],\n              [-115.30027361922798, 47.307082915595394],\n              [-115.31397874725164, 47.307082915595394],\n              [-115.3276838752753, 47.307082915595394],\n              [-115.34138900329896, 47.307082915595394],\n              [-115.35509413132262, 47.307082915595394],\n              [-115.36879925934628, 47.307082915595394],\n              [-115.38250438736993, 47.307082915595394],\n              [-115.3962095153936, 47.307082915595394],\n              [-115.40991464341725, 47.307082915595394],\n              [-115.42361977144091, 47.307082915595394],\n              [-115.43732489946457, 47.307082915595394],\n              [-115.45103002748823, 47.307082915595394],\n              [-115.46473515551189, 47.307082915595394],\n              [-115.47844028353555, 47.307082915595394],\n              [-115.4921454115592, 47.307082915595394],\n              [-115.50585053958287, 47.307082915595394],\n              [-115.51955566760653, 47.307082915595394],\n              [-115.53326079563018, 47.307082915595394],\n              [-115.54696592365384, 47.307082915595394],\n              [-115.5606710516775, 47.307082915595394],\n              [-115.57437617970116, 47.307082915595394],\n              [-115.58808130772482, 47.307082915595394],\n              [-115.60178643574848, 47.307082915595394],\n              [-115.61549156377214, 47.307082915595394],\n              [-115.6291966917958, 47.307082915595394],\n              [-115.64290181981946, 47.307082915595394],\n              [-115.65660694784312, 47.307082915595394],\n              [-115.67031207586678, 47.307082915595394],\n              [-115.68401720389043, 47.307082915595394],\n              [-115.6977223319141, 47.307082915595394],\n              [-115.71142745993775, 47.307082915595394],\n              [-115.72513258796141, 47.307082915595394],\n              [-115.73883771598507, 47.307082915595394],\n              [-115.75254284400873, 47.307082915595394],\n              [-115.76624797203239, 47.307082915595394],\n              [-115.77995310005605, 47.307082915595394],\n              [-115.7936582280797, 47.307082915595394],\n              [-115.80736335610337, 47.307082915595394],\n              [-115.82106848412703, 47.307082915595394],\n              [-115.83477361215068, 47.307082915595394],\n              [-115.84847874017434, 47.307082915595394],\n              [-115.862183868198, 47.307082915595394],\n              [-115.87588899622166, 47.307082915595394],\n              [-115.88959412424532, 47.307082915595394],\n              [-115.90329925226898, 47.307082915595394],\n              [-115.91700438029264, 47.307082915595394],\n              [-115.9307095083163, 47.307082915595394],\n              [-115.94441463633996, 47.307082915595394],\n              [-115.95811976436362, 47.307082915595394],\n              [-115.97182489238727, 47.307082915595394],\n              [-115.98553002041093, 47.307082915595394],\n              [-115.9992351484346, 47.307082915595394],\n              [-116.01294027645825, 47.307082915595394],\n              [-116.02664540448191, 47.307082915595394],\n              [-116.04035053250557, 47.307082915595394],\n              [-116.05405566052923, 47.307082915595394],\n              [-116.06776078855289, 47.307082915595394],\n              [-116.08146591657655, 47.307082915595394],\n              [-116.0951710446002, 47.307082915595394],\n              [-116.10887617262387, 47.307082915595394],\n              [-116.12258130064752, 47.307082915595394],\n              [-116.13628642867118, 47.307082915595394],\n              [-116.14999155669484, 47.307082915595394],\n              [-116.1636966847185, 47.307082915595394],\n              [-116.17740181274216, 47.307082915595394],\n              [-116.19110694076582, 47.307082915595394],\n              [-116.20481206878948, 47.307082915595394],\n              [-116.21851719681314, 47.307082915595394],\n              [-116.2322223248368, 47.307082915595394],\n              [-116.24592745286046, 47.307082915595394],\n              [-116.25963258088412, 47.307082915595394],\n              [-116.27333770890777, 47.307082915595394],\n              [-116.28704283693143, 47.307082915595394],\n              [-116.3007479649551, 47.307082915595394],\n              [-116.31445309297875, 47.307082915595394],\n              [-116.32815822100241, 47.307082915595394],\n              [-116.34186334902607, 47.307082915595394],\n              [-116.35556847704973, 47.307082915595394],\n              [-116.36927360507339, 47.307082915595394],\n              [-116.38297873309705, 47.307082915595394],\n              [-116.3966838611207, 47.307082915595394],\n              [-116.41038898914437, 47.307082915595394],\n              [-116.42409411716802, 47.307082915595394],\n              [-116.43779924519168, 47.307082915595394],\n              [-116.45150437321534, 47.307082915595394],\n              [-116.465209501239, 47.307082915595394],\n              [-116.47891462926266, 47.307082915595394],\n              [-116.49261975728632, 47.307082915595394],\n              [-116.50632488530998, 47.307082915595394],\n              [-116.52003001333364, 47.307082915595394],\n              [-116.5337351413573, 47.307082915595394],\n              [-116.54744026938096, 47.307082915595394],\n              [-116.56114539740462, 47.307082915595394],\n              [-116.57485052542827, 47.307082915595394],\n              [-116.58855565345193, 47.307082915595394],\n              [-116.6022607814756, 47.307082915595394],\n              [-116.61596590949925, 47.307082915595394],\n              [-116.62967103752291, 47.307082915595394],\n              [-116.64337616554657, 47.307082915595394],\n              [-116.65708129357023, 47.307082915595394],\n              [-116.67078642159389, 47.307082915595394],\n              [-116.68449154961755, 47.307082915595394],\n              [-116.6981966776412, 47.307082915595394],\n              [-116.71190180566487, 47.307082915595394],\n              [-116.72560693368852, 47.307082915595394],\n              [-116.73931206171218, 47.307082915595394],\n              [-116.75301718973584, 47.307082915595394],\n              [-116.7667223177595, 47.307082915595394],\n              [-116.78042744578316, 47.307082915595394],\n              [-116.79413257380682, 47.307082915595394],\n              [-116.80783770183048, 47.307082915595394],\n              [-116.82154282985414, 47.307082915595394],\n              [-116.8352479578778, 47.307082915595394],\n              [-116.84895308590146, 47.307082915595394],\n              [-116.86265821392512, 47.307082915595394],\n              [-116.87636334194877, 47.307082915595394],\n              [-116.89006846997243, 47.307082915595394],\n              [-116.90377359799609, 47.307082915595394],\n              [-116.91747872601975, 47.307082915595394],\n              [-116.93118385404341, 47.307082915595394],\n              [-116.94488898206707, 47.307082915595394],\n              [-116.95859411009073, 47.307082915595394],\n              [-116.97229923811439, 47.307082915595394],\n              [-116.98600436613805, 47.307082915595394],\n              [-116.9997094941617, 47.307082915595394],\n              [-117.01341462218537, 47.307082915595394],\n              [-117.02711975020902, 47.307082915595394],\n              [-117.04082487823268, 47.307082915595394],\n              [-117.05453000625634, 47.307082915595394],\n              [-117.06823513428, 47.307082915595394],\n              [-117.08194026230366, 47.307082915595394],\n              [-117.09564539032732, 47.307082915595394],\n              [-117.10935051835098, 47.307082915595394],\n              [-117.12305564637464, 47.307082915595394],\n              [-117.1367607743983, 47.307082915595394],\n              [-117.15046590242196, 47.307082915595394],\n              [-117.16417103044562, 47.307082915595394],\n              [-117.17787615846927, 47.307082915595394],\n              [-117.19158128649293, 47.307082915595394],\n              [-117.20528641451659, 47.307082915595394],\n              [-117.21899154254025, 47.307082915595394],\n              [-117.23269667056391, 47.307082915595394],\n              [-117.24640179858757, 47.307082915595394],\n              [-117.26010692661123, 47.307082915595394],\n              [-117.27381205463489, 47.307082915595394],\n              [-117.28751718265855, 47.307082915595394],\n              [-117.3012223106822, 47.307082915595394],\n              [-117.31492743870587, 47.307082915595394],\n              [-117.32863256672952, 47.307082915595394],\n              [-117.34233769475318, 47.307082915595394],\n              [-117.35604282277684, 47.307082915595394],\n              [-117.3697479508005, 47.307082915595394],\n              [-117.38345307882416, 47.307082915595394],\n              [-117.39715820684782, 47.307082915595394],\n              [-117.41086333487148, 47.307082915595394],\n              [-117.42456846289514, 47.307082915595394],\n              [-117.4382735909188, 47.307082915595394],\n              [-117.45197871894246, 47.307082915595394],\n              [-117.46568384696612, 47.307082915595394],\n              [-117.47938897498977, 47.307082915595394],\n              [-117.49309410301343, 47.307082915595394],\n              [-117.50679923103709, 47.307082915595394],\n              [-117.52050435906075, 47.307082915595394],\n              [-117.53420948708441, 47.307082915595394],\n              [-117.54791461510807, 47.307082915595394],\n              [-117.56161974313173, 47.307082915595394],\n              [-117.57532487115539, 47.307082915595394],\n              [-117.58902999917905, 47.307082915595394],\n              [-117.6027351272027, 47.307082915595394],\n              [-117.61644025522637, 47.307082915595394],\n              [-117.63014538325002, 47.307082915595394],\n              [-117.64385051127368, 47.307082915595394],\n              [-117.65755563929734, 47.307082915595394],\n              [-117.671260767321, 47.307082915595394],\n              [-117.68496589534466, 47.307082915595394],\n              [-117.69867102336832, 47.307082915595394],\n              [-117.71237615139198, 47.307082915595394],\n              [-117.72608127941564, 47.307082915595394],\n              [-117.7397864074393, 47.307082915595394],\n              [-117.75349153546296, 47.307082915595394],\n              [-117.76719666348662, 47.307082915595394],\n              [-117.78090179151027, 47.307082915595394],\n              [-117.79460691953393, 47.307082915595394],\n              [-117.80831204755759, 47.307082915595394],\n              [-117.82201717558125, 47.307082915595394],\n              [-117.83572230360491, 47.307082915595394],\n              [-117.84942743162857, 47.307082915595394],\n              [-117.86313255965223, 47.307082915595394],\n              [-117.87683768767589, 47.307082915595394],\n              [-117.89054281569955, 47.307082915595394],\n              [-117.9042479437232, 47.307082915595394],\n              [-117.91795307174687, 47.307082915595394],\n              [-117.93165819977052, 47.307082915595394],\n              [-117.94536332779418, 47.307082915595394],\n              [-117.95906845581784, 47.307082915595394],\n              [-117.9727735838415, 47.307082915595394],\n              [-117.98647871186516, 47.307082915595394],\n              [-118.00018383988882, 47.307082915595394],\n              [-118.01388896791248, 47.307082915595394],\n              [-118.02759409593614, 47.307082915595394],\n              [-118.0412992239598, 47.307082915595394],\n              [-118.05500435198346, 47.307082915595394],\n              [-118.06870948000712, 47.307082915595394],\n              [-118.08241460803077, 47.307082915595394],\n              [-118.09611973605443, 47.307082915595394],\n              [-118.10982486407809, 47.307082915595394],\n              [-118.12352999210175, 47.307082915595394],\n              [-118.13723512012541, 47.307082915595394],\n              [-118.15094024814907, 47.307082915595394],\n              [-118.16464537617273, 47.307082915595394],\n              [-118.17835050419639, 47.307082915595394],\n              [-118.19205563222005, 47.307082915595394],\n              [-118.2057607602437, 47.307082915595394],\n              [-118.21946588826737, 47.307082915595394],\n              [-118.23317101629102, 47.307082915595394],\n              [-118.24687614431468, 47.307082915595394],\n              [-118.26058127233834, 47.307082915595394],\n              [-118.274286400362, 47.307082915595394],\n              [-118.28799152838566, 47.307082915595394],\n              [-118.30169665640932, 47.307082915595394],\n              [-118.31540178443298, 47.307082915595394],\n              [-118.32910691245664, 47.307082915595394],\n              [-118.3428120404803, 47.307082915595394],\n              [-118.35651716850396, 47.307082915595394],\n              [-118.37022229652761, 47.307082915595394],\n              [-118.38392742455127, 47.307082915595394],\n              [-118.39763255257493, 47.307082915595394],\n              [-118.41133768059859, 47.307082915595394],\n              [-118.42504280862225, 47.307082915595394],\n              [-118.43874793664591, 47.307082915595394],\n              [-118.45245306466957, 47.307082915595394],\n              [-118.46615819269323, 47.307082915595394],\n              [-118.47986332071689, 47.307082915595394],\n              [-118.49356844874055, 47.307082915595394],\n              [-118.5072735767642, 47.307082915595394],\n              [-118.52097870478786, 47.307082915595394],\n              [-118.53468383281152, 47.307082915595394],\n              [-118.54838896083518, 47.307082915595394],\n              [-118.56209408885884, 47.307082915595394],\n              [-118.5757992168825, 47.307082915595394],\n              [-118.58950434490616, 47.307082915595394],\n              [-118.60320947292982, 47.307082915595394],\n              [-118.61691460095348, 47.307082915595394],\n              [-118.63061972897714, 47.307082915595394],\n              [-118.6443248570008, 47.307082915595394],\n              [-118.65802998502446, 47.307082915595394],\n              [-118.67173511304811, 47.307082915595394],\n              [-118.68544024107177, 47.307082915595394],\n              [-118.69914536909543, 47.307082915595394],\n              [-118.71285049711909, 47.307082915595394],\n              [-118.72655562514275, 47.307082915595394],\n              [-118.74026075316641, 47.307082915595394],\n              [-118.75396588119007, 47.307082915595394],\n              [-118.76767100921373, 47.307082915595394],\n              [-118.78137613723739, 47.307082915595394],\n              [-118.79508126526105, 47.307082915595394],\n              [-118.8087863932847, 47.307082915595394],\n              [-118.82249152130836, 47.307082915595394],\n              [-118.83619664933202, 47.307082915595394],\n              [-118.84990177735568, 47.307082915595394],\n              [-118.86360690537934, 47.307082915595394],\n              [-118.877312033403, 47.307082915595394],\n              [-118.89101716142666, 47.307082915595394],\n              [-118.90472228945032, 47.307082915595394],\n              [-118.91842741747398, 47.307082915595394],\n              [-118.93213254549764, 47.307082915595394],\n              [-118.9458376735213, 47.307082915595394],\n              [-118.95954280154496, 47.307082915595394],\n              [-118.97324792956861, 47.307082915595394],\n              [-118.98695305759227, 47.307082915595394],\n              [-119.00065818561593, 47.307082915595394],\n              [-119.01436331363959, 47.307082915595394],\n              [-119.02806844166325, 47.307082915595394],\n              [-119.04177356968691, 47.307082915595394],\n              [-119.05547869771057, 47.307082915595394],\n              [-119.06918382573423, 47.307082915595394],\n              [-119.08288895375789, 47.307082915595394],\n              [-119.09659408178155, 47.307082915595394],\n              [-119.1102992098052, 47.307082915595394],\n              [-119.12400433782886, 47.307082915595394],\n              [-119.13770946585252, 47.307082915595394],\n              [-119.15141459387618, 47.307082915595394],\n              [-119.16511972189984, 47.307082915595394],\n              [-119.1788248499235, 47.307082915595394],\n              [-119.19252997794716, 47.307082915595394],\n              [-119.20623510597082, 47.307082915595394],\n              [-119.21994023399448, 47.307082915595394],\n              [-119.23364536201814, 47.307082915595394],\n              [-119.2473504900418, 47.307082915595394],\n              [-119.26105561806546, 47.307082915595394],\n              [-119.27476074608911, 47.307082915595394],\n              [-119.28846587411277, 47.307082915595394],\n              [-119.30217100213643, 47.307082915595394],\n              [-119.31587613016009, 47.307082915595394],\n              [-119.32958125818375, 47.307082915595394],\n              [-119.34328638620741, 47.307082915595394],\n              [-119.35699151423107, 47.307082915595394],\n              [-119.37069664225473, 47.307082915595394],\n              [-119.38440177027839, 47.307082915595394],\n              [-119.39810689830205, 47.307082915595394],\n              [-119.4118120263257, 47.307082915595394],\n              [-119.42551715434936, 47.307082915595394],\n              [-119.43922228237302, 47.307082915595394],\n              [-119.45292741039668, 47.307082915595394],\n              [-119.46663253842034, 47.307082915595394],\n              [-119.480337666444, 47.307082915595394],\n              [-119.49404279446766, 47.307082915595394],\n              [-119.50774792249132, 47.307082915595394],\n              [-119.52145305051498, 47.307082915595394],\n              [-119.53515817853864, 47.307082915595394],\n              [-119.5488633065623, 47.307082915595394],\n              [-119.56256843458596, 47.307082915595394],\n              [-119.57627356260961, 47.307082915595394],\n              [-119.58997869063327, 47.307082915595394],\n              [-119.60368381865693, 47.307082915595394],\n              [-119.61738894668059, 47.307082915595394],\n              [-119.63109407470425, 47.307082915595394],\n              [-119.64479920272791, 47.307082915595394],\n              [-119.65850433075157, 47.307082915595394],\n              [-119.67220945877523, 47.307082915595394],\n              [-119.68591458679889, 47.307082915595394],\n              [-119.69961971482255, 47.307082915595394],\n              [-119.7133248428462, 47.307082915595394],\n              [-119.72702997086986, 47.307082915595394],\n              [-119.74073509889352, 47.307082915595394],\n              [-119.75444022691718, 47.307082915595394],\n              [-119.76814535494084, 47.307082915595394],\n              [-119.7818504829645, 47.307082915595394],\n              [-119.79555561098816, 47.307082915595394],\n              [-119.80926073901182, 47.307082915595394],\n              [-119.82296586703548, 47.307082915595394],\n              [-119.83667099505914, 47.307082915595394],\n              [-119.8503761230828, 47.307082915595394],\n              [-119.86408125110646, 47.307082915595394],\n              [-119.87778637913011, 47.307082915595394],\n              [-119.89149150715377, 47.307082915595394],\n              [-119.90519663517743, 47.307082915595394],\n              [-119.91890176320109, 47.307082915595394],\n              [-119.93260689122475, 47.307082915595394],\n              [-119.94631201924841, 47.307082915595394],\n              [-119.96001714727207, 47.307082915595394],\n              [-119.97372227529573, 47.307082915595394],\n              [-119.98742740331939, 47.307082915595394],\n              [-120.00113253134305, 47.307082915595394],\n              [-120.0148376593667, 47.307082915595394],\n              [-120.02854278739036, 47.307082915595394],\n              [-120.04224791541402, 47.307082915595394],\n              [-120.05595304343768, 47.307082915595394],\n              [-120.05595304343768, 47.29695109143884],\n              [-120.05595304343768, 47.28681926728229],\n              [-120.05595304343768, 47.27668744312574],\n              [-120.05595304343768, 47.266555618969186],\n              [-120.05595304343768, 47.25642379481263],\n              [-120.05595304343768, 47.24629197065608],\n              [-120.05595304343768, 47.23616014649953],\n              [-120.05595304343768, 47.22602832234298],\n              [-120.05595304343768, 47.215896498186424],\n              [-120.05595304343768, 47.20576467402987],\n              [-120.05595304343768, 47.19563284987332],\n              [-120.05595304343768, 47.18550102571677],\n              [-120.05595304343768, 47.175369201560216],\n              [-120.05595304343768, 47.16523737740366],\n              [-120.05595304343768, 47.15510555324711],\n              [-120.05595304343768, 47.14497372909056],\n              [-120.05595304343768, 47.13484190493401],\n              [-120.05595304343768, 47.124710080777454],\n              [-120.05595304343768, 47.1145782566209],\n              [-120.05595304343768, 47.10444643246435],\n              [-120.05595304343768, 47.0943146083078],\n              [-120.05595304343768, 47.084182784151245],\n              [-120.05595304343768, 47.07405095999469],\n              [-120.05595304343768, 47.06391913583814],\n              [-120.05595304343768, 47.05378731168159],\n              [-120.05595304343768, 47.04365548752504],\n              [-120.05595304343768, 47.033523663368484],\n              [-120.05595304343768, 47.02339183921193],\n              [-120.05595304343768, 47.01326001505538],\n              [-120.05595304343768, 47.00312819089883],\n              [-120.05595304343768, 46.992996366742275],\n              [-120.05595304343768, 46.98286454258572],\n              [-120.05595304343768, 46.97273271842917],\n              [-120.05595304343768, 46.96260089427262],\n              [-120.05595304343768, 46.95246907011607],\n              [-120.05595304343768, 46.942337245959514],\n              [-120.05595304343768, 46.93220542180296],\n              [-120.05595304343768, 46.92207359764641],\n              [-120.05595304343768, 46.91194177348986],\n              [-120.05595304343768, 46.901809949333305],\n              [-120.05595304343768, 46.89167812517675],\n              [-120.05595304343768, 46.8815463010202],\n              [-120.05595304343768, 46.87141447686365],\n              [-120.05595304343768, 46.8612826527071],\n              [-120.05595304343768, 46.851150828550544],\n              [-120.05595304343768, 46.84101900439399],\n              [-120.05595304343768, 46.83088718023744],\n              [-120.05595304343768, 46.82075535608089],\n              [-120.05595304343768, 46.810623531924335],\n              [-120.05595304343768, 46.80049170776778],\n              [-120.05595304343768, 46.79035988361123],\n              [-120.05595304343768, 46.78022805945468],\n              [-120.05595304343768, 46.770096235298126],\n              [-120.05595304343768, 46.759964411141574],\n              [-120.05595304343768, 46.74983258698502],\n              [-120.05595304343768, 46.73970076282847],\n              [-120.05595304343768, 46.72956893867192],\n              [-120.05595304343768, 46.719437114515365],\n              [-120.05595304343768, 46.70930529035881],\n              [-120.05595304343768, 46.69917346620226],\n              [-120.05595304343768, 46.68904164204571],\n              [-120.05595304343768, 46.678909817889156],\n              [-120.05595304343768, 46.668777993732604],\n              [-120.05595304343768, 46.65864616957605],\n              [-120.05595304343768, 46.6485143454195],\n              [-120.05595304343768, 46.63838252126295],\n              [-120.05595304343768, 46.628250697106395],\n              [-120.05595304343768, 46.61811887294984],\n              [-120.05595304343768, 46.60798704879329],\n              [-120.05595304343768, 46.59785522463674],\n              [-120.05595304343768, 46.587723400480186],\n              [-120.05595304343768, 46.577591576323634],\n              [-120.05595304343768, 46.56745975216708],\n              [-120.05595304343768, 46.55732792801053],\n              [-120.05595304343768, 46.54719610385398],\n              [-120.05595304343768, 46.537064279697425],\n              [-120.05595304343768, 46.52693245554087],\n              [-120.05595304343768, 46.51680063138432],\n              [-120.05595304343768, 46.50666880722777],\n              [-120.05595304343768, 46.496536983071216],\n              [-120.05595304343768, 46.486405158914664],\n              [-120.05595304343768, 46.47627333475811],\n              [-120.05595304343768, 46.46614151060156],\n              [-120.05595304343768, 46.45600968644501],\n              [-120.05595304343768, 46.445877862288455],\n              [-120.05595304343768, 46.4357460381319],\n              [-120.05595304343768, 46.42561421397535],\n              [-120.05595304343768, 46.4154823898188],\n              [-120.05595304343768, 46.405350565662246],\n              [-120.05595304343768, 46.395218741505694],\n              [-120.05595304343768, 46.38508691734914],\n              [-120.05595304343768, 46.37495509319259],\n              [-120.05595304343768, 46.36482326903604],\n              [-120.05595304343768, 46.354691444879485],\n              [-120.05595304343768, 46.34455962072293],\n              [-120.05595304343768, 46.33442779656638],\n              [-120.05595304343768, 46.32429597240983],\n              [-120.05595304343768, 46.314164148253276],\n              [-120.05595304343768, 46.304032324096724],\n              [-120.05595304343768, 46.29390049994017],\n              [-120.05595304343768, 46.28376867578362],\n              [-120.05595304343768, 46.27363685162707],\n              [-120.05595304343768, 46.263505027470515],\n              [-120.05595304343768, 46.25337320331396],\n              [-120.05595304343768, 46.24324137915741],\n              [-120.05595304343768, 46.23310955500086],\n              [-120.05595304343768, 46.222977730844306],\n              [-120.05595304343768, 46.212845906687754],\n              [-120.05595304343768, 46.2027140825312],\n              [-120.05595304343768, 46.19258225837465],\n              [-120.05595304343768, 46.1824504342181],\n              [-120.05595304343768, 46.172318610061545],\n              [-120.05595304343768, 46.16218678590499],\n              [-120.05595304343768, 46.15205496174844],\n              [-120.05595304343768, 46.14192313759189],\n              [-120.05595304343768, 46.131791313435336],\n              [-120.05595304343768, 46.121659489278784],\n              [-120.05595304343768, 46.11152766512223],\n              [-120.05595304343768, 46.10139584096568],\n              [-120.05595304343768, 46.09126401680913],\n              [-120.05595304343768, 46.081132192652575],\n              [-120.05595304343768, 46.07100036849602],\n              [-120.05595304343768, 46.06086854433947],\n              [-120.05595304343768, 46.05073672018292],\n              [-120.05595304343768, 46.040604896026366],\n              [-120.05595304343768, 46.030473071869814],\n              [-120.05595304343768, 46.02034124771326],\n              [-120.05595304343768, 46.01020942355671],\n              [-120.05595304343768, 46.00007759940016],\n              [-120.05595304343768, 45.989945775243605],\n              [-120.05595304343768, 45.97981395108705],\n              [-120.05595304343768, 45.9696821269305],\n              [-120.05595304343768, 45.95955030277395],\n              [-120.05595304343768, 45.949418478617396],\n              [-120.05595304343768, 45.939286654460844],\n              [-120.05595304343768, 45.92915483030429],\n              [-120.05595304343768, 45.91902300614774],\n              [-120.05595304343768, 45.90889118199119],\n              [-120.05595304343768, 45.898759357834635],\n              [-120.05595304343768, 45.88862753367808],\n              [-120.05595304343768, 45.87849570952153],\n              [-120.05595304343768, 45.86836388536498],\n              [-120.05595304343768, 45.858232061208426],\n              [-120.05595304343768, 45.848100237051874],\n              [-120.05595304343768, 45.83796841289532],\n              [-120.05595304343768, 45.82783658873877],\n              [-120.05595304343768, 45.81770476458222],\n              [-120.05595304343768, 45.807572940425665],\n              [-120.05595304343768, 45.79744111626911],\n              [-120.05595304343768, 45.78730929211256],\n              [-120.05595304343768, 45.77717746795601],\n              [-120.05595304343768, 45.767045643799456],\n              [-120.05595304343768, 45.756913819642904],\n              [-120.05595304343768, 45.74678199548635],\n              [-120.05595304343768, 45.7366501713298],\n              [-120.05595304343768, 45.72651834717325],\n              [-120.05595304343768, 45.716386523016695],\n              [-120.05595304343768, 45.70625469886014],\n              [-120.05595304343768, 45.69612287470359],\n              [-120.05595304343768, 45.68599105054704],\n              [-120.05595304343768, 45.675859226390486],\n              [-120.05595304343768, 45.665727402233934],\n              [-120.05595304343768, 45.65559557807738],\n              [-120.05595304343768, 45.64546375392083],\n              [-120.05595304343768, 45.63533192976428],\n              [-120.05595304343768, 45.625200105607725],\n              [-120.05595304343768, 45.61506828145117],\n              [-120.05595304343768, 45.60493645729462],\n              [-120.05595304343768, 45.59480463313807],\n              [-120.05595304343768, 45.584672808981516],\n              [-120.05595304343768, 45.574540984824964],\n              [-120.05595304343768, 45.56440916066841],\n              [-120.05595304343768, 45.55427733651186],\n              [-120.05595304343768, 45.54414551235531],\n              [-120.05595304343768, 45.534013688198755],\n              [-120.05595304343768, 45.5238818640422],\n              [-120.05595304343768, 45.51375003988565],\n              [-120.05595304343768, 45.5036182157291],\n              [-120.05595304343768, 45.493486391572546],\n              [-120.05595304343768, 45.483354567415994],\n              [-120.05595304343768, 45.47322274325944],\n              [-120.05595304343768, 45.46309091910289],\n              [-120.05595304343768, 45.45295909494634],\n              [-120.05595304343768, 45.442827270789785],\n              [-120.05595304343768, 45.43269544663323],\n              [-120.05595304343768, 45.42256362247668],\n              [-120.05595304343768, 45.41243179832013],\n              [-120.05595304343768, 45.402299974163576],\n              [-120.05595304343768, 45.39216815000702],\n              [-120.05595304343768, 45.38203632585047],\n              [-120.05595304343768, 45.37190450169392],\n              [-120.05595304343768, 45.36177267753737],\n              [-120.05595304343768, 45.351640853380815],\n              [-120.05595304343768, 45.34150902922426],\n              [-120.05595304343768, 45.33137720506771],\n              [-120.05595304343768, 45.32124538091116],\n              [-120.05595304343768, 45.311113556754606],\n              [-120.05595304343768, 45.30098173259805],\n              [-120.05595304343768, 45.2908499084415],\n              [-120.05595304343768, 45.28071808428495],\n              [-120.05595304343768, 45.2705862601284],\n              [-120.05595304343768, 45.260454435971845],\n              [-120.05595304343768, 45.25032261181529],\n              [-120.05595304343768, 45.24019078765874],\n              [-120.05595304343768, 45.23005896350219],\n              [-120.05595304343768, 45.219927139345636],\n              [-120.05595304343768, 45.20979531518908],\n              [-120.05595304343768, 45.19966349103253],\n              [-120.05595304343768, 45.18953166687598],\n              [-120.05595304343768, 45.17939984271943],\n              [-120.05595304343768, 45.169268018562875],\n              [-120.05595304343768, 45.15913619440632],\n              [-120.05595304343768, 45.14900437024977],\n              [-120.05595304343768, 45.13887254609322],\n              [-120.05595304343768, 45.128740721936666],\n              [-120.05595304343768, 45.11860889778011],\n              [-120.05595304343768, 45.10847707362356],\n              [-120.05595304343768, 45.09834524946701],\n              [-120.05595304343768, 45.08821342531046],\n              [-120.05595304343768, 45.078081601153905],\n              [-120.05595304343768, 45.06794977699735],\n              [-120.05595304343768, 45.0578179528408],\n              [-120.05595304343768, 45.04768612868425],\n              [-120.05595304343768, 45.037554304527696],\n              [-120.05595304343768, 45.02742248037114],\n              [-120.05595304343768, 45.01729065621459],\n              [-120.05595304343768, 45.00715883205804],\n              [-120.05595304343768, 44.99702700790149],\n              [-120.05595304343768, 44.986895183744934],\n              [-120.05595304343768, 44.97676335958838],\n              [-120.05595304343768, 44.96663153543183],\n              [-120.05595304343768, 44.95649971127528],\n              [-120.05595304343768, 44.946367887118726],\n              [-120.05595304343768, 44.93623606296217],\n              [-120.05595304343768, 44.92610423880562],\n              [-120.05595304343768, 44.91597241464907],\n              [-120.05595304343768, 44.90584059049252],\n              [-120.05595304343768, 44.895708766335964],\n              [-120.05595304343768, 44.88557694217941],\n              [-120.05595304343768, 44.87544511802286],\n              [-120.05595304343768, 44.86531329386631],\n              [-120.05595304343768, 44.855181469709756],\n              [-120.05595304343768, 44.8450496455532],\n              [-120.05595304343768, 44.83491782139665],\n              [-120.05595304343768, 44.8247859972401],\n              [-120.05595304343768, 44.81465417308355],\n              [-120.05595304343768, 44.804522348926994],\n              [-120.05595304343768, 44.79439052477044],\n              [-120.05595304343768, 44.78425870061389],\n              [-120.05595304343768, 44.77412687645734],\n              [-120.05595304343768, 44.763995052300785],\n              [-120.05595304343768, 44.75386322814423],\n              [-120.05595304343768, 44.74373140398768],\n              [-120.05595304343768, 44.73359957983113],\n              [-120.05595304343768, 44.72346775567458],\n              [-120.05595304343768, 44.713335931518024],\n              [-120.05595304343768, 44.70320410736147],\n              [-120.05595304343768, 44.69307228320492],\n              [-120.05595304343768, 44.68294045904837],\n              [-120.05595304343768, 44.672808634891815],\n              [-120.05595304343768, 44.66267681073526],\n              [-120.05595304343768, 44.65254498657871],\n              [-120.05595304343768, 44.64241316242216],\n              [-120.05595304343768, 44.63228133826561],\n              [-120.05595304343768, 44.622149514109054],\n              [-120.05595304343768, 44.6120176899525],\n              [-120.05595304343768, 44.60188586579595],\n              [-120.05595304343768, 44.5917540416394],\n              [-120.05595304343768, 44.581622217482845],\n              [-120.05595304343768, 44.57149039332629],\n              [-120.05595304343768, 44.56135856916974],\n              [-120.05595304343768, 44.55122674501319],\n              [-120.05595304343768, 44.54109492085664],\n              [-120.05595304343768, 44.530963096700084],\n              [-120.05595304343768, 44.52083127254353],\n              [-120.05595304343768, 44.51069944838698],\n              [-120.05595304343768, 44.50056762423043],\n              [-120.05595304343768, 44.490435800073875],\n              [-120.05595304343768, 44.48030397591732],\n              [-120.05595304343768, 44.47017215176077],\n              [-120.05595304343768, 44.46004032760422],\n              [-120.05595304343768, 44.449908503447666],\n              [-120.05595304343768, 44.439776679291114],\n              [-120.05595304343768, 44.42964485513456],\n              [-120.05595304343768, 44.41951303097801],\n              [-120.05595304343768, 44.40938120682146],\n              [-120.05595304343768, 44.399249382664905],\n              [-120.05595304343768, 44.38911755850835],\n              [-120.05595304343768, 44.3789857343518],\n              [-120.05595304343768, 44.36885391019525],\n              [-120.05595304343768, 44.358722086038696],\n              [-120.05595304343768, 44.348590261882144],\n              [-120.05595304343768, 44.33845843772559],\n              [-120.05595304343768, 44.32832661356904],\n              [-120.05595304343768, 44.31819478941249],\n              [-120.05595304343768, 44.308062965255935],\n              [-120.05595304343768, 44.29793114109938],\n              [-120.05595304343768, 44.28779931694283],\n              [-120.05595304343768, 44.27766749278628],\n              [-120.05595304343768, 44.267535668629726],\n              [-120.05595304343768, 44.257403844473174],\n              [-120.05595304343768, 44.24727202031662],\n              [-120.05595304343768, 44.23714019616007],\n              [-120.05595304343768, 44.22700837200352],\n              [-120.05595304343768, 44.216876547846965],\n              [-120.05595304343768, 44.20674472369041],\n              [-120.05595304343768, 44.19661289953386],\n              [-120.05595304343768, 44.18648107537731],\n              [-120.05595304343768, 44.176349251220756],\n              [-120.05595304343768, 44.166217427064204],\n              [-120.05595304343768, 44.15608560290765],\n              [-120.05595304343768, 44.1459537787511],\n              [-120.05595304343768, 44.13582195459455],\n              [-120.05595304343768, 44.125690130437995],\n              [-120.05595304343768, 44.11555830628144],\n              [-120.05595304343768, 44.10542648212489],\n              [-120.05595304343768, 44.09529465796834],\n              [-120.05595304343768, 44.085162833811786],\n              [-120.05595304343768, 44.075031009655234],\n              [-120.05595304343768, 44.06489918549868],\n              [-120.05595304343768, 44.05476736134213],\n              [-120.05595304343768, 44.04463553718558],\n              [-120.05595304343768, 44.034503713029025],\n              [-120.05595304343768, 44.02437188887247],\n              [-120.05595304343768, 44.01424006471592],\n              [-120.05595304343768, 44.00410824055937],\n              [-120.05595304343768, 43.993976416402816],\n              [-120.05595304343768, 43.983844592246264],\n              [-120.05595304343768, 43.97371276808971],\n              [-120.05595304343768, 43.96358094393316],\n              [-120.05595304343768, 43.95344911977661],\n              [-120.05595304343768, 43.943317295620055],\n              [-120.05595304343768, 43.9331854714635],\n              [-120.05595304343768, 43.92305364730695],\n              [-120.05595304343768, 43.9129218231504],\n              [-120.05595304343768, 43.902789998993846],\n              [-120.05595304343768, 43.892658174837294],\n              [-120.05595304343768, 43.88252635068074],\n              [-120.05595304343768, 43.87239452652419],\n              [-120.05595304343768, 43.86226270236764],\n              [-120.05595304343768, 43.852130878211085],\n              [-120.05595304343768, 43.84199905405453],\n              [-120.05595304343768, 43.83186722989798],\n              [-120.05595304343768, 43.82173540574143],\n              [-120.05595304343768, 43.811603581584876],\n              [-120.05595304343768, 43.801471757428324],\n              [-120.05595304343768, 43.79133993327177],\n              [-120.05595304343768, 43.78120810911522],\n              [-120.05595304343768, 43.77107628495867],\n              [-120.05595304343768, 43.760944460802115],\n              [-120.05595304343768, 43.75081263664556],\n              [-120.05595304343768, 43.74068081248901],\n              [-120.05595304343768, 43.73054898833246],\n              [-120.05595304343768, 43.720417164175906],\n              [-120.05595304343768, 43.710285340019354],\n              [-120.05595304343768, 43.7001535158628],\n              [-120.05595304343768, 43.69002169170625],\n              [-120.05595304343768, 43.6798898675497],\n              [-120.05595304343768, 43.669758043393145],\n              [-120.05595304343768, 43.65962621923659],\n              [-120.05595304343768, 43.64949439508004],\n              [-120.05595304343768, 43.63936257092349],\n              [-120.05595304343768, 43.629230746766936],\n              [-120.05595304343768, 43.619098922610384],\n              [-120.05595304343768, 43.60896709845383],\n              [-120.05595304343768, 43.59883527429728],\n              [-120.05595304343768, 43.58870345014073],\n              [-120.05595304343768, 43.578571625984175],\n              [-120.05595304343768, 43.56843980182762],\n              [-120.05595304343768, 43.55830797767107],\n              [-120.05595304343768, 43.54817615351452],\n              [-120.05595304343768, 43.538044329357966],\n              [-120.05595304343768, 43.527912505201414],\n              [-120.05595304343768, 43.51778068104486],\n              [-120.05595304343768, 43.50764885688831],\n              [-120.05595304343768, 43.49751703273176],\n              [-120.05595304343768, 43.487385208575205],\n              [-120.05595304343768, 43.47725338441865],\n              [-120.05595304343768, 43.4671215602621],\n              [-120.05595304343768, 43.45698973610555],\n              [-120.05595304343768, 43.446857911948996],\n              [-120.05595304343768, 43.436726087792444],\n              [-120.05595304343768, 43.42659426363589],\n              [-120.05595304343768, 43.41646243947934],\n              [-120.05595304343768, 43.40633061532279],\n              [-120.05595304343768, 43.396198791166235],\n              [-120.05595304343768, 43.38606696700968],\n              [-120.05595304343768, 43.37593514285313],\n              [-120.05595304343768, 43.36580331869658],\n              [-120.05595304343768, 43.355671494540026],\n              [-120.05595304343768, 43.345539670383474],\n              [-120.05595304343768, 43.33540784622692],\n              [-120.05595304343768, 43.32527602207037],\n              [-120.05595304343768, 43.31514419791382],\n              [-120.05595304343768, 43.305012373757265],\n              [-120.05595304343768, 43.29488054960071],\n              [-120.05595304343768, 43.28474872544416],\n              [-120.05595304343768, 43.27461690128761],\n              [-120.05595304343768, 43.264485077131056],\n              [-120.05595304343768, 43.254353252974504],\n              [-120.05595304343768, 43.24422142881795],\n              [-120.05595304343768, 43.2340896046614],\n              [-120.05595304343768, 43.22395778050485],\n              [-120.05595304343768, 43.213825956348295],\n              [-120.05595304343768, 43.20369413219174],\n              [-120.05595304343768, 43.19356230803519],\n              [-120.05595304343768, 43.18343048387864],\n              [-120.05595304343768, 43.173298659722086],\n              [-120.05595304343768, 43.163166835565534],\n              [-120.05595304343768, 43.15303501140898],\n              [-120.05595304343768, 43.14290318725243],\n              [-120.05595304343768, 43.13277136309588],\n              [-120.05595304343768, 43.122639538939325],\n              [-120.05595304343768, 43.11250771478277],\n              [-120.05595304343768, 43.10237589062622],\n              [-120.05595304343768, 43.09224406646967],\n              [-120.05595304343768, 43.082112242313116],\n              [-120.05595304343768, 43.07198041815656],\n              [-120.05595304343768, 43.06184859400001],\n              [-120.05595304343768, 43.05171676984346],\n              [-120.05595304343768, 43.04158494568691],\n              [-120.05595304343768, 43.031453121530355],\n              [-120.05595304343768, 43.0213212973738],\n              [-120.05595304343768, 43.01118947321725],\n              [-120.05595304343768, 43.0010576490607],\n              [-120.05595304343768, 42.990925824904146],\n              [-120.05595304343768, 42.98079400074759],\n              [-120.05595304343768, 42.97066217659104],\n              [-120.05595304343768, 42.96053035243449],\n              [-120.05595304343768, 42.95039852827794],\n              [-120.05595304343768, 42.940266704121385],\n              [-120.05595304343768, 42.93013487996483],\n              [-120.05595304343768, 42.92000305580828],\n              [-120.05595304343768, 42.90987123165173],\n              [-120.05595304343768, 42.899739407495176],\n              [-120.05595304343768, 42.88960758333862],\n              [-120.05595304343768, 42.87947575918207],\n              [-120.05595304343768, 42.86934393502552],\n              [-120.05595304343768, 42.85921211086897],\n              [-120.05595304343768, 42.849080286712415],\n              [-120.05595304343768, 42.83894846255586],\n              [-120.05595304343768, 42.82881663839931],\n              [-120.05595304343768, 42.81868481424276],\n              [-120.05595304343768, 42.808552990086206],\n              [-120.05595304343768, 42.79842116592965],\n              [-120.05595304343768, 42.7882893417731],\n              [-120.05595304343768, 42.77815751761655],\n              [-120.05595304343768, 42.76802569346],\n              [-120.05595304343768, 42.757893869303444],\n              [-120.05595304343768, 42.74776204514689],\n              [-120.05595304343768, 42.73763022099034],\n              [-120.05595304343768, 42.72749839683379],\n              [-120.05595304343768, 42.717366572677236],\n              [-120.05595304343768, 42.70723474852068],\n              [-120.05595304343768, 42.69710292436413],\n              [-120.05595304343768, 42.68697110020758],\n              [-120.05595304343768, 42.67683927605103],\n              [-120.05595304343768, 42.666707451894474],\n              [-120.05595304343768, 42.65657562773792],\n              [-120.05595304343768, 42.64644380358137],\n              [-120.05595304343768, 42.63631197942482],\n              [-120.05595304343768, 42.626180155268266],\n              [-120.05595304343768, 42.61604833111171],\n              [-120.05595304343768, 42.60591650695516],\n              [-120.05595304343768, 42.59578468279861],\n              [-120.05595304343768, 42.58565285864206],\n              [-120.05595304343768, 42.575521034485504],\n              [-120.05595304343768, 42.56538921032895],\n              [-120.05595304343768, 42.5552573861724],\n              [-120.05595304343768, 42.54512556201585],\n              [-120.05595304343768, 42.534993737859295],\n              [-120.05595304343768, 42.52486191370274],\n              [-120.05595304343768, 42.51473008954619],\n              [-120.05595304343768, 42.50459826538964],\n              [-120.05595304343768, 42.49446644123309],\n              [-120.05595304343768, 42.484334617076534],\n              [-120.05595304343768, 42.47420279291998],\n              [-120.05595304343768, 42.46407096876343],\n              [-120.05595304343768, 42.45393914460688],\n              [-120.05595304343768, 42.443807320450325],\n              [-120.05595304343768, 42.43367549629377],\n              [-120.05595304343768, 42.42354367213722],\n              [-120.05595304343768, 42.41341184798067],\n              [-120.05595304343768, 42.40328002382412],\n              [-120.05595304343768, 42.393148199667564],\n              [-120.05595304343768, 42.38301637551101],\n              [-120.05595304343768, 42.37288455135446],\n              [-120.05595304343768, 42.36275272719791],\n              [-120.05595304343768, 42.352620903041355],\n              [-120.05595304343768, 42.3424890788848],\n              [-120.05595304343768, 42.33235725472825],\n              [-120.05595304343768, 42.3222254305717],\n              [-120.05595304343768, 42.31209360641515],\n              [-120.04224791541402, 42.31209360641515],\n              [-120.02854278739036, 42.31209360641515],\n              [-120.0148376593667, 42.31209360641515],\n              [-120.00113253134305, 42.31209360641515],\n              [-119.98742740331939, 42.31209360641515],\n              [-119.97372227529573, 42.31209360641515],\n              [-119.96001714727207, 42.31209360641515],\n              [-119.94631201924841, 42.31209360641515],\n              [-119.93260689122475, 42.31209360641515],\n              [-119.91890176320109, 42.31209360641515],\n              [-119.90519663517743, 42.31209360641515],\n              [-119.89149150715377, 42.31209360641515],\n              [-119.87778637913011, 42.31209360641515],\n              [-119.86408125110646, 42.31209360641515],\n              [-119.8503761230828, 42.31209360641515],\n              [-119.83667099505914, 42.31209360641515],\n              [-119.82296586703548, 42.31209360641515],\n              [-119.80926073901182, 42.31209360641515],\n              [-119.79555561098816, 42.31209360641515],\n              [-119.7818504829645, 42.31209360641515],\n              [-119.76814535494084, 42.31209360641515],\n              [-119.75444022691718, 42.31209360641515],\n              [-119.74073509889352, 42.31209360641515],\n              [-119.72702997086986, 42.31209360641515],\n              [-119.7133248428462, 42.31209360641515],\n              [-119.69961971482255, 42.31209360641515],\n              [-119.68591458679889, 42.31209360641515],\n              [-119.67220945877523, 42.31209360641515],\n              [-119.65850433075157, 42.31209360641515],\n              [-119.64479920272791, 42.31209360641515],\n              [-119.63109407470425, 42.31209360641515],\n              [-119.61738894668059, 42.31209360641515],\n              [-119.60368381865693, 42.31209360641515],\n              [-119.58997869063327, 42.31209360641515],\n              [-119.57627356260961, 42.31209360641515],\n              [-119.56256843458596, 42.31209360641515],\n              [-119.5488633065623, 42.31209360641515],\n              [-119.53515817853864, 42.31209360641515],\n              [-119.52145305051498, 42.31209360641515],\n              [-119.50774792249132, 42.31209360641515],\n              [-119.49404279446766, 42.31209360641515],\n              [-119.480337666444, 42.31209360641515],\n              [-119.46663253842034, 42.31209360641515],\n              [-119.45292741039668, 42.31209360641515],\n              [-119.43922228237302, 42.31209360641515],\n              [-119.42551715434936, 42.31209360641515],\n              [-119.4118120263257, 42.31209360641515],\n              [-119.39810689830205, 42.31209360641515],\n              [-119.38440177027839, 42.31209360641515],\n              [-119.37069664225473, 42.31209360641515],\n              [-119.35699151423107, 42.31209360641515],\n              [-119.34328638620741, 42.31209360641515],\n              [-119.32958125818375, 42.31209360641515],\n              [-119.31587613016009, 42.31209360641515],\n              [-119.30217100213643, 42.31209360641515],\n              [-119.28846587411277, 42.31209360641515],\n              [-119.27476074608911, 42.31209360641515],\n              [-119.26105561806546, 42.31209360641515],\n              [-119.2473504900418, 42.31209360641515],\n              [-119.23364536201814, 42.31209360641515],\n              [-119.21994023399448, 42.31209360641515],\n              [-119.20623510597082, 42.31209360641515],\n              [-119.19252997794716, 42.31209360641515],\n              [-119.1788248499235, 42.31209360641515],\n              [-119.16511972189984, 42.31209360641515],\n              [-119.15141459387618, 42.31209360641515],\n              [-119.13770946585252, 42.31209360641515],\n              [-119.12400433782886, 42.31209360641515],\n              [-119.1102992098052, 42.31209360641515],\n              [-119.09659408178155, 42.31209360641515],\n              [-119.08288895375789, 42.31209360641515],\n              [-119.06918382573423, 42.31209360641515],\n              [-119.05547869771057, 42.31209360641515],\n              [-119.04177356968691, 42.31209360641515],\n              [-119.02806844166325, 42.31209360641515],\n              [-119.01436331363959, 42.31209360641515],\n              [-119.00065818561593, 42.31209360641515],\n              [-118.98695305759227, 42.31209360641515],\n              [-118.97324792956861, 42.31209360641515],\n              [-118.95954280154496, 42.31209360641515],\n              [-118.9458376735213, 42.31209360641515],\n              [-118.93213254549764, 42.31209360641515],\n              [-118.91842741747398, 42.31209360641515],\n              [-118.90472228945032, 42.31209360641515],\n              [-118.89101716142666, 42.31209360641515],\n              [-118.877312033403, 42.31209360641515],\n              [-118.86360690537934, 42.31209360641515],\n              [-118.84990177735568, 42.31209360641515],\n              [-118.83619664933202, 42.31209360641515],\n              [-118.82249152130836, 42.31209360641515],\n              [-118.8087863932847, 42.31209360641515],\n              [-118.79508126526105, 42.31209360641515],\n              [-118.78137613723739, 42.31209360641515],\n              [-118.76767100921373, 42.31209360641515],\n              [-118.75396588119007, 42.31209360641515],\n              [-118.74026075316641, 42.31209360641515],\n              [-118.72655562514275, 42.31209360641515],\n              [-118.71285049711909, 42.31209360641515],\n              [-118.69914536909543, 42.31209360641515],\n              [-118.68544024107177, 42.31209360641515],\n              [-118.67173511304811, 42.31209360641515],\n              [-118.65802998502446, 42.31209360641515],\n              [-118.6443248570008, 42.31209360641515],\n              [-118.63061972897714, 42.31209360641515],\n              [-118.61691460095348, 42.31209360641515],\n              [-118.60320947292982, 42.31209360641515],\n              [-118.58950434490616, 42.31209360641515],\n              [-118.5757992168825, 42.31209360641515],\n              [-118.56209408885884, 42.31209360641515],\n              [-118.54838896083518, 42.31209360641515],\n              [-118.53468383281152, 42.31209360641515],\n              [-118.52097870478786, 42.31209360641515],\n              [-118.5072735767642, 42.31209360641515],\n              [-118.49356844874055, 42.31209360641515],\n              [-118.47986332071689, 42.31209360641515],\n              [-118.46615819269323, 42.31209360641515],\n              [-118.45245306466957, 42.31209360641515],\n              [-118.43874793664591, 42.31209360641515],\n              [-118.42504280862225, 42.31209360641515],\n              [-118.41133768059859, 42.31209360641515],\n              [-118.39763255257493, 42.31209360641515],\n              [-118.38392742455127, 42.31209360641515],\n              [-118.37022229652761, 42.31209360641515],\n              [-118.35651716850396, 42.31209360641515],\n              [-118.3428120404803, 42.31209360641515],\n              [-118.32910691245664, 42.31209360641515],\n              [-118.31540178443298, 42.31209360641515],\n              [-118.30169665640932, 42.31209360641515],\n              [-118.28799152838566, 42.31209360641515],\n              [-118.274286400362, 42.31209360641515],\n              [-118.26058127233834, 42.31209360641515],\n              [-118.24687614431468, 42.31209360641515],\n              [-118.23317101629102, 42.31209360641515],\n              [-118.21946588826737, 42.31209360641515],\n              [-118.2057607602437, 42.31209360641515],\n              [-118.19205563222005, 42.31209360641515],\n              [-118.17835050419639, 42.31209360641515],\n              [-118.16464537617273, 42.31209360641515],\n              [-118.15094024814907, 42.31209360641515],\n              [-118.13723512012541, 42.31209360641515],\n              [-118.12352999210175, 42.31209360641515],\n              [-118.10982486407809, 42.31209360641515],\n              [-118.09611973605443, 42.31209360641515],\n              [-118.08241460803077, 42.31209360641515],\n              [-118.06870948000712, 42.31209360641515],\n              [-118.05500435198346, 42.31209360641515],\n              [-118.0412992239598, 42.31209360641515],\n              [-118.02759409593614, 42.31209360641515],\n              [-118.01388896791248, 42.31209360641515],\n              [-118.00018383988882, 42.31209360641515],\n              [-117.98647871186516, 42.31209360641515],\n              [-117.9727735838415, 42.31209360641515],\n              [-117.95906845581784, 42.31209360641515],\n              [-117.94536332779418, 42.31209360641515],\n              [-117.93165819977052, 42.31209360641515],\n              [-117.91795307174687, 42.31209360641515],\n              [-117.9042479437232, 42.31209360641515],\n              [-117.89054281569955, 42.31209360641515],\n              [-117.87683768767589, 42.31209360641515],\n              [-117.86313255965223, 42.31209360641515],\n              [-117.84942743162857, 42.31209360641515],\n              [-117.83572230360491, 42.31209360641515],\n              [-117.82201717558125, 42.31209360641515],\n              [-117.80831204755759, 42.31209360641515],\n              [-117.79460691953393, 42.31209360641515],\n              [-117.78090179151027, 42.31209360641515],\n              [-117.76719666348662, 42.31209360641515],\n              [-117.75349153546296, 42.31209360641515],\n              [-117.7397864074393, 42.31209360641515],\n              [-117.72608127941564, 42.31209360641515],\n              [-117.71237615139198, 42.31209360641515],\n              [-117.69867102336832, 42.31209360641515],\n              [-117.68496589534466, 42.31209360641515],\n              [-117.671260767321, 42.31209360641515],\n              [-117.65755563929734, 42.31209360641515],\n              [-117.64385051127368, 42.31209360641515],\n              [-117.63014538325002, 42.31209360641515],\n              [-117.61644025522637, 42.31209360641515],\n              [-117.6027351272027, 42.31209360641515],\n              [-117.58902999917905, 42.31209360641515],\n              [-117.57532487115539, 42.31209360641515],\n              [-117.56161974313173, 42.31209360641515],\n              [-117.54791461510807, 42.31209360641515],\n              [-117.53420948708441, 42.31209360641515],\n              [-117.52050435906075, 42.31209360641515],\n              [-117.50679923103709, 42.31209360641515],\n              [-117.49309410301343, 42.31209360641515],\n              [-117.47938897498977, 42.31209360641515],\n              [-117.46568384696612, 42.31209360641515],\n              [-117.45197871894246, 42.31209360641515],\n              [-117.4382735909188, 42.31209360641515],\n              [-117.42456846289514, 42.31209360641515],\n              [-117.41086333487148, 42.31209360641515],\n              [-117.39715820684782, 42.31209360641515],\n              [-117.38345307882416, 42.31209360641515],\n              [-117.3697479508005, 42.31209360641515],\n              [-117.35604282277684, 42.31209360641515],\n              [-117.34233769475318, 42.31209360641515],\n              [-117.32863256672952, 42.31209360641515],\n              [-117.31492743870587, 42.31209360641515],\n              [-117.3012223106822, 42.31209360641515],\n              [-117.28751718265855, 42.31209360641515],\n              [-117.27381205463489, 42.31209360641515],\n              [-117.26010692661123, 42.31209360641515],\n              [-117.24640179858757, 42.31209360641515],\n              [-117.23269667056391, 42.31209360641515],\n              [-117.21899154254025, 42.31209360641515],\n              [-117.20528641451659, 42.31209360641515],\n              [-117.19158128649293, 42.31209360641515],\n              [-117.17787615846927, 42.31209360641515],\n              [-117.16417103044562, 42.31209360641515],\n              [-117.15046590242196, 42.31209360641515],\n              [-117.1367607743983, 42.31209360641515],\n              [-117.12305564637464, 42.31209360641515],\n              [-117.10935051835098, 42.31209360641515],\n              [-117.09564539032732, 42.31209360641515],\n              [-117.08194026230366, 42.31209360641515],\n              [-117.06823513428, 42.31209360641515],\n              [-117.05453000625634, 42.31209360641515],\n              [-117.04082487823268, 42.31209360641515],\n              [-117.02711975020902, 42.31209360641515],\n              [-117.01341462218537, 42.31209360641515],\n              [-116.9997094941617, 42.31209360641515],\n              [-116.98600436613805, 42.31209360641515],\n              [-116.97229923811439, 42.31209360641515],\n              [-116.95859411009073, 42.31209360641515],\n              [-116.94488898206707, 42.31209360641515],\n              [-116.93118385404341, 42.31209360641515],\n              [-116.91747872601975, 42.31209360641515],\n              [-116.90377359799609, 42.31209360641515],\n              [-116.89006846997243, 42.31209360641515],\n              [-116.87636334194877, 42.31209360641515],\n              [-116.86265821392512, 42.31209360641515],\n              [-116.84895308590146, 42.31209360641515],\n              [-116.8352479578778, 42.31209360641515],\n              [-116.82154282985414, 42.31209360641515],\n              [-116.80783770183048, 42.31209360641515],\n              [-116.79413257380682, 42.31209360641515],\n              [-116.78042744578316, 42.31209360641515],\n              [-116.7667223177595, 42.31209360641515],\n              [-116.75301718973584, 42.31209360641515],\n              [-116.73931206171218, 42.31209360641515],\n              [-116.72560693368852, 42.31209360641515],\n              [-116.71190180566487, 42.31209360641515],\n              [-116.6981966776412, 42.31209360641515],\n              [-116.68449154961755, 42.31209360641515],\n              [-116.67078642159389, 42.31209360641515],\n              [-116.65708129357023, 42.31209360641515],\n              [-116.64337616554657, 42.31209360641515],\n              [-116.62967103752291, 42.31209360641515],\n              [-116.61596590949925, 42.31209360641515],\n              [-116.6022607814756, 42.31209360641515],\n              [-116.58855565345193, 42.31209360641515],\n              [-116.57485052542827, 42.31209360641515],\n              [-116.56114539740462, 42.31209360641515],\n              [-116.54744026938096, 42.31209360641515],\n              [-116.5337351413573, 42.31209360641515],\n              [-116.52003001333364, 42.31209360641515],\n              [-116.50632488530998, 42.31209360641515],\n              [-116.49261975728632, 42.31209360641515],\n              [-116.47891462926266, 42.31209360641515],\n              [-116.465209501239, 42.31209360641515],\n              [-116.45150437321534, 42.31209360641515],\n              [-116.43779924519168, 42.31209360641515],\n              [-116.42409411716802, 42.31209360641515],\n              [-116.41038898914437, 42.31209360641515],\n              [-116.3966838611207, 42.31209360641515],\n              [-116.38297873309705, 42.31209360641515],\n              [-116.36927360507339, 42.31209360641515],\n              [-116.35556847704973, 42.31209360641515],\n              [-116.34186334902607, 42.31209360641515],\n              [-116.32815822100241, 42.31209360641515],\n              [-116.31445309297875, 42.31209360641515],\n              [-116.3007479649551, 42.31209360641515],\n              [-116.28704283693143, 42.31209360641515],\n              [-116.27333770890777, 42.31209360641515],\n              [-116.25963258088412, 42.31209360641515],\n              [-116.24592745286046, 42.31209360641515],\n              [-116.2322223248368, 42.31209360641515],\n              [-116.21851719681314, 42.31209360641515],\n              [-116.20481206878948, 42.31209360641515],\n              [-116.19110694076582, 42.31209360641515],\n              [-116.17740181274216, 42.31209360641515],\n              [-116.1636966847185, 42.31209360641515],\n              [-116.14999155669484, 42.31209360641515],\n              [-116.13628642867118, 42.31209360641515],\n              [-116.12258130064752, 42.31209360641515],\n              [-116.10887617262387, 42.31209360641515],\n              [-116.0951710446002, 42.31209360641515],\n              [-116.08146591657655, 42.31209360641515],\n              [-116.06776078855289, 42.31209360641515],\n              [-116.05405566052923, 42.31209360641515],\n              [-116.04035053250557, 42.31209360641515],\n              [-116.02664540448191, 42.31209360641515],\n              [-116.01294027645825, 42.31209360641515],\n              [-115.9992351484346, 42.31209360641515],\n              [-115.98553002041093, 42.31209360641515],\n              [-115.97182489238727, 42.31209360641515],\n              [-115.95811976436362, 42.31209360641515],\n              [-115.94441463633996, 42.31209360641515],\n              [-115.9307095083163, 42.31209360641515],\n              [-115.91700438029264, 42.31209360641515],\n              [-115.90329925226898, 42.31209360641515],\n              [-115.88959412424532, 42.31209360641515],\n              [-115.87588899622166, 42.31209360641515],\n              [-115.862183868198, 42.31209360641515],\n              [-115.84847874017434, 42.31209360641515],\n              [-115.83477361215068, 42.31209360641515],\n              [-115.82106848412703, 42.31209360641515],\n              [-115.80736335610337, 42.31209360641515],\n              [-115.7936582280797, 42.31209360641515],\n              [-115.77995310005605, 42.31209360641515],\n              [-115.76624797203239, 42.31209360641515],\n              [-115.75254284400873, 42.31209360641515],\n              [-115.73883771598507, 42.31209360641515],\n              [-115.72513258796141, 42.31209360641515],\n              [-115.71142745993775, 42.31209360641515],\n              [-115.6977223319141, 42.31209360641515],\n              [-115.68401720389043, 42.31209360641515],\n              [-115.67031207586678, 42.31209360641515],\n              [-115.65660694784312, 42.31209360641515],\n              [-115.64290181981946, 42.31209360641515],\n              [-115.6291966917958, 42.31209360641515],\n              [-115.61549156377214, 42.31209360641515],\n              [-115.60178643574848, 42.31209360641515],\n              [-115.58808130772482, 42.31209360641515],\n              [-115.57437617970116, 42.31209360641515],\n              [-115.5606710516775, 42.31209360641515],\n              [-115.54696592365384, 42.31209360641515],\n              [-115.53326079563018, 42.31209360641515],\n              [-115.51955566760653, 42.31209360641515],\n              [-115.50585053958287, 42.31209360641515],\n              [-115.4921454115592, 42.31209360641515],\n              [-115.47844028353555, 42.31209360641515],\n              [-115.46473515551189, 42.31209360641515],\n              [-115.45103002748823, 42.31209360641515],\n              [-115.43732489946457, 42.31209360641515],\n              [-115.42361977144091, 42.31209360641515],\n              [-115.40991464341725, 42.31209360641515],\n              [-115.3962095153936, 42.31209360641515],\n              [-115.38250438736993, 42.31209360641515],\n              [-115.36879925934628, 42.31209360641515],\n              [-115.35509413132262, 42.31209360641515],\n              [-115.34138900329896, 42.31209360641515],\n              [-115.3276838752753, 42.31209360641515],\n              [-115.31397874725164, 42.31209360641515],\n              [-115.30027361922798, 42.31209360641515],\n              [-115.28656849120432, 42.31209360641515],\n              [-115.27286336318066, 42.31209360641515],\n              [-115.259158235157, 42.31209360641515],\n              [-115.24545310713334, 42.31209360641515],\n              [-115.23174797910968, 42.31209360641515],\n              [-115.21804285108603, 42.31209360641515],\n              [-115.20433772306237, 42.31209360641515],\n              [-115.19063259503871, 42.31209360641515],\n              [-115.17692746701505, 42.31209360641515],\n              [-115.16322233899139, 42.31209360641515],\n              [-115.14951721096773, 42.31209360641515],\n              [-115.13581208294407, 42.31209360641515],\n              [-115.12210695492041, 42.31209360641515],\n              [-115.10840182689675, 42.31209360641515],\n              [-115.0946966988731, 42.31209360641515],\n              [-115.08099157084943, 42.31209360641515],\n              [-115.06728644282578, 42.31209360641515],\n              [-115.05358131480212, 42.31209360641515],\n              [-115.03987618677846, 42.31209360641515],\n              [-115.0261710587548, 42.31209360641515],\n              [-115.01246593073114, 42.31209360641515],\n              [-114.99876080270748, 42.31209360641515],\n              [-114.98505567468382, 42.31209360641515],\n              [-114.97135054666016, 42.31209360641515],\n              [-114.9576454186365, 42.31209360641515],\n              [-114.94394029061284, 42.31209360641515],\n              [-114.93023516258918, 42.31209360641515],\n              [-114.91653003456553, 42.31209360641515],\n              [-114.90282490654187, 42.31209360641515],\n              [-114.88911977851821, 42.31209360641515],\n              [-114.87541465049455, 42.31209360641515],\n              [-114.86170952247089, 42.31209360641515],\n              [-114.84800439444723, 42.31209360641515],\n              [-114.83429926642357, 42.31209360641515],\n              [-114.82059413839991, 42.31209360641515],\n              [-114.80688901037625, 42.31209360641515],\n              [-114.7931838823526, 42.31209360641515],\n              [-114.77947875432893, 42.31209360641515],\n              [-114.76577362630528, 42.31209360641515],\n              [-114.75206849828162, 42.31209360641515],\n              [-114.73836337025796, 42.31209360641515],\n              [-114.7246582422343, 42.31209360641515],\n              [-114.71095311421064, 42.31209360641515],\n              [-114.69724798618698, 42.31209360641515],\n              [-114.68354285816332, 42.31209360641515],\n              [-114.66983773013966, 42.31209360641515],\n              [-114.656132602116, 42.31209360641515],\n              [-114.64242747409234, 42.31209360641515],\n              [-114.62872234606868, 42.31209360641515],\n              [-114.61501721804503, 42.31209360641515],\n              [-114.60131209002137, 42.31209360641515],\n              [-114.58760696199771, 42.31209360641515],\n              [-114.57390183397405, 42.31209360641515],\n              [-114.56019670595039, 42.31209360641515],\n              [-114.54649157792673, 42.31209360641515],\n              [-114.53278644990307, 42.31209360641515],\n              [-114.51908132187941, 42.31209360641515],\n              [-114.50537619385575, 42.31209360641515],\n              [-114.4916710658321, 42.31209360641515],\n              [-114.47796593780843, 42.31209360641515],\n              [-114.46426080978478, 42.31209360641515],\n              [-114.45055568176112, 42.31209360641515],\n              [-114.43685055373746, 42.31209360641515],\n              [-114.4231454257138, 42.31209360641515],\n              [-114.40944029769014, 42.31209360641515],\n              [-114.39573516966648, 42.31209360641515],\n              [-114.38203004164282, 42.31209360641515],\n              [-114.36832491361916, 42.31209360641515],\n              [-114.3546197855955, 42.31209360641515],\n              [-114.34091465757184, 42.31209360641515],\n              [-114.32720952954818, 42.31209360641515],\n              [-114.31350440152453, 42.31209360641515],\n              [-114.29979927350087, 42.31209360641515],\n              [-114.28609414547721, 42.31209360641515],\n              [-114.27238901745355, 42.31209360641515],\n              [-114.25868388942989, 42.31209360641515],\n              [-114.24497876140623, 42.31209360641515],\n              [-114.23127363338257, 42.31209360641515],\n              [-114.21756850535891, 42.31209360641515],\n              [-114.20386337733525, 42.31209360641515],\n              [-114.1901582493116, 42.31209360641515],\n              [-114.17645312128793, 42.31209360641515],\n              [-114.16274799326428, 42.31209360641515],\n              [-114.14904286524062, 42.31209360641515],\n              [-114.13533773721696, 42.31209360641515],\n              [-114.1216326091933, 42.31209360641515],\n              [-114.10792748116964, 42.31209360641515],\n              [-114.09422235314598, 42.31209360641515],\n              [-114.08051722512232, 42.31209360641515],\n              [-114.06681209709866, 42.31209360641515],\n              [-114.053106969075, 42.31209360641515],\n              [-114.03940184105134, 42.31209360641515],\n              [-114.02569671302768, 42.31209360641515],\n              [-114.01199158500403, 42.31209360641515],\n              [-113.99828645698037, 42.31209360641515],\n              [-113.98458132895671, 42.31209360641515],\n              [-113.97087620093305, 42.31209360641515],\n              [-113.95717107290939, 42.31209360641515],\n              [-113.94346594488573, 42.31209360641515],\n              [-113.92976081686207, 42.31209360641515],\n              [-113.91605568883841, 42.31209360641515],\n              [-113.90235056081475, 42.31209360641515],\n              [-113.8886454327911, 42.31209360641515],\n              [-113.87494030476743, 42.31209360641515],\n              [-113.86123517674378, 42.31209360641515],\n              [-113.84753004872012, 42.31209360641515],\n              [-113.83382492069646, 42.31209360641515],\n              [-113.8201197926728, 42.31209360641515],\n              [-113.80641466464914, 42.31209360641515],\n              [-113.79270953662548, 42.31209360641515],\n              [-113.77900440860182, 42.31209360641515],\n              [-113.76529928057816, 42.31209360641515],\n              [-113.7515941525545, 42.31209360641515],\n              [-113.73788902453084, 42.31209360641515],\n              [-113.72418389650718, 42.31209360641515],\n              [-113.71047876848353, 42.31209360641515],\n              [-113.69677364045987, 42.31209360641515],\n              [-113.68306851243621, 42.31209360641515],\n              [-113.66936338441255, 42.31209360641515],\n              [-113.65565825638889, 42.31209360641515],\n              [-113.64195312836523, 42.31209360641515],\n              [-113.62824800034157, 42.31209360641515],\n              [-113.61454287231791, 42.31209360641515],\n              [-113.60083774429425, 42.31209360641515],\n              [-113.5871326162706, 42.31209360641515],\n              [-113.57342748824694, 42.31209360641515],\n              [-113.55972236022328, 42.31209360641515],\n              [-113.54601723219962, 42.31209360641515],\n              [-113.53231210417596, 42.31209360641515],\n              [-113.5186069761523, 42.31209360641515],\n              [-113.50490184812864, 42.31209360641515],\n              [-113.49119672010498, 42.31209360641515],\n              [-113.47749159208132, 42.31209360641515],\n              [-113.46378646405766, 42.31209360641515],\n              [-113.450081336034, 42.31209360641515],\n              [-113.43637620801034, 42.31209360641515],\n              [-113.42267107998669, 42.31209360641515],\n              [-113.40896595196303, 42.31209360641515],\n              [-113.39526082393937, 42.31209360641515],\n              [-113.38155569591571, 42.31209360641515],\n              [-113.36785056789205, 42.31209360641515],\n              [-113.35414543986839, 42.31209360641515],\n              [-113.34044031184473, 42.31209360641515],\n              [-113.32673518382107, 42.31209360641515],\n              [-113.31303005579741, 42.31209360641515],\n              [-113.29932492777375, 42.31209360641515],\n              [-113.2856197997501, 42.31209360641515],\n              [-113.27191467172644, 42.31209360641515],\n              [-113.25820954370278, 42.31209360641515],\n              [-113.24450441567912, 42.31209360641515],\n              [-113.23079928765546, 42.31209360641515],\n              [-113.2170941596318, 42.31209360641515],\n              [-113.20338903160814, 42.31209360641515],\n              [-113.18968390358448, 42.31209360641515],\n              [-113.17597877556082, 42.31209360641515],\n              [-113.16227364753716, 42.31209360641515],\n              [-113.1485685195135, 42.31209360641515],\n              [-113.13486339148984, 42.31209360641515],\n              [-113.12115826346619, 42.31209360641515],\n              [-113.10745313544253, 42.31209360641515],\n              [-113.09374800741887, 42.31209360641515],\n              [-113.08004287939521, 42.31209360641515],\n              [-113.06633775137155, 42.31209360641515],\n              [-113.05263262334789, 42.31209360641515],\n              [-113.03892749532423, 42.31209360641515],\n              [-113.02522236730057, 42.31209360641515],\n              [-113.01151723927691, 42.31209360641515],\n              [-112.99781211125325, 42.31209360641515],\n              [-112.9841069832296, 42.31209360641515],\n              [-112.97040185520594, 42.31209360641515],\n              [-112.95669672718228, 42.31209360641515],\n              [-112.94299159915862, 42.31209360641515],\n              [-112.92928647113496, 42.31209360641515],\n              [-112.9155813431113, 42.31209360641515],\n              [-112.90187621508764, 42.31209360641515],\n              [-112.88817108706398, 42.31209360641515],\n              [-112.87446595904032, 42.31209360641515],\n              [-112.86076083101666, 42.31209360641515],\n              [-112.847055702993, 42.31209360641515],\n              [-112.83335057496934, 42.31209360641515],\n              [-112.81964544694569, 42.31209360641515],\n              [-112.80594031892203, 42.31209360641515],\n              [-112.79223519089837, 42.31209360641515],\n              [-112.77853006287471, 42.31209360641515],\n              [-112.76482493485105, 42.31209360641515],\n              [-112.75111980682739, 42.31209360641515],\n              [-112.73741467880373, 42.31209360641515],\n              [-112.72370955078007, 42.31209360641515],\n              [-112.71000442275641, 42.31209360641515],\n              [-112.69629929473275, 42.31209360641515],\n              [-112.6825941667091, 42.31209360641515],\n              [-112.66888903868544, 42.31209360641515],\n              [-112.65518391066178, 42.31209360641515],\n              [-112.64147878263812, 42.31209360641515],\n              [-112.62777365461446, 42.31209360641515],\n              [-112.6140685265908, 42.31209360641515],\n              [-112.60036339856714, 42.31209360641515],\n              [-112.58665827054348, 42.31209360641515],\n              [-112.57295314251982, 42.31209360641515],\n              [-112.55924801449616, 42.31209360641515],\n              [-112.5455428864725, 42.31209360641515],\n              [-112.53183775844884, 42.31209360641515],\n              [-112.53183775844884, 42.3222254305717],\n              [-112.53183775844884, 42.33235725472825],\n              [-112.53183775844884, 42.3424890788848],\n              [-112.53183775844884, 42.352620903041355],\n              [-112.53183775844884, 42.36275272719791],\n              [-112.53183775844884, 42.37288455135446],\n              [-112.53183775844884, 42.38301637551101],\n              [-112.53183775844884, 42.393148199667564],\n              [-112.53183775844884, 42.40328002382412],\n              [-112.53183775844884, 42.41341184798067],\n              [-112.53183775844884, 42.42354367213722],\n              [-112.53183775844884, 42.43367549629377],\n              [-112.53183775844884, 42.443807320450325],\n              [-112.53183775844884, 42.45393914460688],\n              [-112.53183775844884, 42.46407096876343],\n              [-112.53183775844884, 42.46407164219668],\n              [-112.53183911551118, 42.46407096876343],\n              [-112.5455428864725, 42.45743333572362],\n              [-112.55312167444629, 42.45393914460688],\n              [-112.55924801449616, 42.45117703853316],\n              [-112.57295314251982, 42.445290681953146],\n              [-112.5765741917885, 42.443807320450325],\n              [-112.58665827054348, 42.43975762756627],\n              [-112.60036339856714, 42.43456757919092],\n              [-112.60284171575255, 42.43367549629377],\n              [-112.6140685265908, 42.429703090576425],\n              [-112.62777365461446, 42.42516143306544],\n              [-112.63296220683394, 42.42354367213722],\n              [-112.64147878263812, 42.420925705714495],\n              [-112.65518391066178, 42.41699171763953],\n              [-112.66868966335001, 42.41341184798067],\n              [-112.66888903868544, 42.413359579272814],\n              [-112.6825941667091, 42.40999978161306],\n              [-112.69629929473275, 42.40692869672025],\n              [-112.71000442275641, 42.404141139114465],\n              [-112.71466087745031, 42.40328002382412],\n              [-112.72370955078007, 42.40161552944166],\n              [-112.73741467880373, 42.39935515688168],\n              [-112.75111980682739, 42.39736404150381],\n              [-112.76482493485105, 42.39563839831063],\n              [-112.77853006287471, 42.394174774448686],\n              [-112.79018923159455, 42.393148199667564],\n              [-112.79223519089837, 42.39296754268192],\n              [-112.80594031892203, 42.392004773785864],\n              [-112.81964544694569, 42.39129871687154],\n              [-112.83335057496934, 42.390848229447535],\n              [-112.847055702993, 42.39065276972591],\n              [-112.86076083101666, 42.390712459367926],\n              [-112.87446595904032, 42.391028148787946],\n              [-112.88817108706398, 42.3916014833951],\n              [-112.90187621508764, 42.39243496879562],\n              [-112.91078471940487, 42.393148199667564],\n              [-112.9155813431113, 42.39352445180484],\n              [-112.92928647113496, 42.39486173077692],\n              [-112.94299159915862, 42.39646570490142],\n              [-112.95669672718228, 42.39834271780587],\n              [-112.97040185520594, 42.40050031481582],\n              [-112.9841069832296, 42.40294725788474],\n              [-112.98578094867543, 42.40328002382412],\n              [-112.99781211125325, 42.405641171334985],\n              [-113.01151723927691, 42.408631301283194],\n              [-113.02522236730057, 42.41193766819636],\n              [-113.03082749368544, 42.41341184798067],\n              [-113.03892749532423, 42.41552719701788],\n              [-113.05263262334789, 42.419423990430566],\n              [-113.06591380602471, 42.42354367213722],\n              [-113.06633775137155, 42.42367488460027],\n              [-113.08004287939521, 42.42820675777086],\n              [-113.09374800741887, 42.43313068203823],\n              [-113.09518114992184, 42.43367549629377],\n              [-113.10745313544253, 42.43837267064318],\n              [-113.12061010626375, 42.443807320450325],\n              [-113.12115826346619, 42.444036180006684],\n              [-113.13486339148984, 42.45005492201062],\n              [-113.1431560158819, 42.45393914460688],\n              [-113.1485685195135, 42.45652328786444],\n              [-113.16227364753716, 42.463454446114014],\n              [-113.16344621444057, 42.46407096876343],\n              [-113.17597877556082, 42.4708561252114],\n              [-113.18186163163321, 42.47420279291998],\n              [-113.18968390358448, 42.47881558226231],\n              [-113.19863837212992, 42.484334617076534],\n              [-113.20338903160814, 42.48739311673383],\n              [-113.2139593063209, 42.49446644123309],\n              [-113.2170941596318, 42.49667721225926],\n              [-113.22796257789527, 42.50459826538964],\n              [-113.23079928765546, 42.50680001519599],\n              [-113.24074383573588, 42.51473008954619],\n              [-113.24450441567912, 42.51796420866447],\n              [-113.25235741545494, 42.52486191370274],\n              [-113.25820954370278, 42.5304925471981],\n              [-113.26281688855782, 42.534993737859295],\n              [-113.27191467172644, 42.544925828146944],\n              [-113.27209585749144, 42.54512556201585],\n              [-113.28053600515295, 42.5552573861724],\n              [-113.2856197997501, 42.56227938728684],\n              [-113.28785031857281, 42.56538921032895],\n              [-113.29434799153012, 42.575521034485504],\n              [-113.29932492777375, 42.58459354095839],\n              [-113.29989970297527, 42.58565285864206],\n              [-113.30492501327458, 42.59578468279861],\n              [-113.30923443565125, 42.60591650695516],\n              [-113.31299728606055, 42.61604833111171],\n              [-113.31303005579741, 42.61614083942071],\n              [-113.3165197583472, 42.626180155268266],\n              [-113.31968810471639, 42.63631197942482],\n              [-113.32260162781385, 42.64644380358137],\n              [-113.32533490392764, 42.65657562773792],\n              [-113.32673518382107, 42.66189507181254],\n              [-113.32798400159312, 42.666707451894474],\n              [-113.33057669493186, 42.67683927605103],\n              [-113.33308057692112, 42.68697110020758],\n              [-113.33550244342702, 42.69710292436413],\n              [-113.33783500198346, 42.70723474852068],\n              [-113.34005978243773, 42.717366572677236],\n              [-113.34044031184473, 42.719183825671614],\n              [-113.34221616566167, 42.72749839683379]\n            ],\n            [\n              [-119.53522312522625, 43.47725338441865],\n              [-119.53527587190514, 43.487385208575205],\n              [-119.53518892600178, 43.49751703273176],\n              [-119.53515817853864, 43.49888888883545],\n              [-119.53496420490033, 43.50764885688831],\n              [-119.53460212367186, 43.51778068104486],\n              [-119.53410299203496, 43.527912505201414],\n              [-119.5334672590258, 43.538044329357966],\n              [-119.53269531058862, 43.54817615351452],\n              [-119.53178746974663, 43.55830797767107],\n              [-119.53074399674249, 43.56843980182762],\n              [-119.52956508914849, 43.578571625984175],\n              [-119.52825088194665, 43.58870345014073],\n              [-119.52680144757832, 43.59883527429728],\n              [-119.52521679596376, 43.60896709845383],\n              [-119.52349687449114, 43.619098922610384],\n              [-119.52164156797518, 43.629230746766936],\n              [-119.52145305051498, 43.630186540012105],\n              [-119.51966389473192, 43.63936257092349],\n              [-119.5175529816661, 43.64949439508004],\n              [-119.51530717164947, 43.65962621923659],\n              [-119.51292611557565, 43.669758043393145],\n              [-119.5104094011423, 43.6798898675497],\n              [-119.5077565526503, 43.69002169170625],\n              [-119.50774792249132, 43.69005292638875],\n              [-119.50498812472966, 43.7001535158628],\n              [-119.50208377800193, 43.710285340019354],\n              [-119.49904279731109, 43.720417164175906],\n              [-119.49586446823395, 43.73054898833246],\n              [-119.49404279446766, 43.73610629193532],\n              [-119.49255958489952, 43.74068081248901],\n              [-119.489131114097, 43.75081263664556],\n              [-119.48556413590482, 43.760944460802115],\n              [-119.48185769267499, 43.77107628495867],\n              [-119.480337666444, 43.77507295301579],\n              [-119.47802911546422, 43.78120810911522],\n              [-119.47407230901544, 43.79133993327177],\n              [-119.46997420361348, 43.801471757428324],\n              [-119.46663253842034, 43.80945161106528],\n              [-119.4657407716129, 43.811603581584876],\n              [-119.46139158566177, 43.82173540574143],\n              [-119.45689876043161, 43.83186722989798],\n              [-119.45292741039668, 43.84054030875756],\n              [-119.45226628657676, 43.84199905405453],\n              [-119.4475207622884, 43.852130878211085],\n              [-119.44262874172233, 43.86226270236764],\n              [-119.43922228237302, 43.869106390183966],\n              [-119.43760197251893, 43.87239452652419],\n              [-119.43245470790536, 43.88252635068074],\n              [-119.42715756301475, 43.892658174837294],\n              [-119.42551715434936, 43.895705152227166],\n              [-119.4217401240507, 43.902789998993846],\n              [-119.41618423893024, 43.9129218231504],\n              [-119.4118120263257, 43.92067785354356],\n              [-119.41048561841093, 43.92305364730695],\n              [-119.40466889469127, 43.9331854714635],\n              [-119.39869599685838, 43.943317295620055],\n              [-119.39810689830205, 43.94428988191518],\n              [-119.39261102739388, 43.95344911977661],\n              [-119.38637217791653, 43.96358094393316],\n              [-119.38440177027839, 43.96669858528968],\n              [-119.38000938457846, 43.97371276808971],\n              [-119.37350141808736, 43.983844592246264],\n              [-119.37069664225473, 43.98810233270555],\n              [-119.36686194131117, 43.993976416402816],\n              [-119.36008125988508, 44.00410824055937],\n              [-119.35699151423107, 44.00861290499456],\n              [-119.35316587796402, 44.01424006471592],\n              [-119.34610844424958, 44.02437188887247],\n              [-119.34328638620741, 44.02832721358141],\n              [-119.33891755897073, 44.034503713029025],\n              [-119.33157889018663, 44.04463553718558],\n              [-119.32958125818375, 44.04732954626016],\n              [-119.324112512867, 44.05476736134213],\n              [-119.31648767585682, 44.06489918549868],\n              [-119.31587613016009, 44.06569341587006],\n              [-119.30874541395536, 44.075031009655234],\n              [-119.30217100213643, 44.08344575660615],\n              [-119.30084033127949, 44.085162833811786],\n              [-119.29281006596838, 44.09529465796834],\n              [-119.28846587411277, 44.1006546374866],\n              [-119.28462887592275, 44.10542648212489],\n              [-119.27629938813661, 44.11555830628144],\n              [-119.27476074608911, 44.11738970007563],\n              [-119.26784063942232, 44.125690130437995],\n              [-119.26105561806546, 44.13365253466446],\n              [-119.25922093206131, 44.13582195459455],\n              [-119.25046719829564, 44.1459537787511],\n              [-119.2473504900418, 44.149485306444454],\n              [-119.24156807473707, 44.15608560290765],\n              [-119.23364536201814, 44.16493825446374],\n              [-119.23250878122329, 44.166217427064204],\n              [-119.22331808669384, 44.176349251220756],\n              [-119.21994023399448, 44.17999656646849],\n              [-119.21397647126733, 44.18648107537731],\n              [-119.20623510597082, 44.194725523040255],\n              [-119.20447494581221, 44.19661289953386],\n              [-119.19483300268115, 44.20674472369041],\n              [-119.19252997794716, 44.20911672667772],\n              [-119.18504515157048, 44.216876547846965],\n              [-119.1788248499235, 44.22319649352894],\n              [-119.17509708124172, 44.22700837200352],\n              [-119.16511972189984, 44.23700846605382],\n              [-119.16498911230377, 44.23714019616007],\n              [-119.15474849987095, 44.24727202031662],\n              [-119.15141459387618, 44.250506513187936],\n              [-119.14434782534858, 44.257403844473174],\n              [-119.13770946585252, 44.263758179855195],\n              [-119.13378612206769, 44.267535668629726],\n              [-119.12400433782886, 44.27677381073029],\n              [-119.12306342268919, 44.27766749278628],\n              [-119.1121947004809, 44.28779931694283],\n              [-119.1102992098052, 44.2895336269875],\n              [-119.10117073680263, 44.29793114109938],\n              [-119.09659408178155, 44.3020633115478],\n              [-119.08998375360866, 44.308062965255935],\n              [-119.08288895375789, 44.31438410949521],\n              [-119.07863346295375, 44.31819478941249],\n              [-119.06918382573423, 44.326502793927574],\n              [-119.06711949006026, 44.32832661356904],\n              [-119.05547869771057, 44.33842590076518],\n              [-119.05544137033063, 44.33845843772559],\n              [-119.04361242991207, 44.348590261882144],\n              [-119.04177356968691, 44.35013762298242],\n              [-119.0316168544961, 44.358722086038696],\n              [-119.02806844166325, 44.36166902965539],\n              [-119.01945362310568, 44.36885391019525],\n              [-119.01436331363959, 44.37302623168594],\n              [-119.00712190300273, 44.3789857343518],\n              [-119.00065818561593, 44.38421466849969],\n              [-118.99462075986841, 44.38911755850835],\n              [-118.98695305759227, 44.3952395798582],\n              [-118.98194915508422, 44.399249382664905],\n              [-118.97324792956861, 44.40610601089834],\n              [-118.96910594308135, 44.40938120682146],\n              [-118.95954280154496, 44.41681881701954],\n              [-118.95608986877426, 44.41951303097801],\n              [-118.9458376735213, 44.42738266862898],\n              [-118.94289956509664, 44.42964485513456],\n              [-118.93213254549764, 44.43780205575446],\n              [-118.92953355065859, 44.439776679291114],\n              [-118.91842741747398, 44.448081292534],\n              [-118.91599022754531, 44.449908503447666],\n              [-118.90472228945032, 44.45822452159103],\n              [-118.90226787927934, 44.46004032760422],\n              [-118.89101716142666, 44.46823571830338],\n              [-118.88836466896943, 44.47017215176077],\n              [-118.877312033403, 44.47811869497392],\n              [-118.87427863767067, 44.48030397591732],\n              [-118.86360690537934, 44.48787710491022],\n              [-118.86000770298196, 44.490435800073875],\n              [-118.84990177735568, 44.497514446420126],\n              [-118.84554965790822, 44.50056762423043],\n              [-118.83619664933202, 44.507034066729844],\n              [-118.83090217001636, 44.51069944838698],\n              [-118.82249152130836, 44.516439165830334],\n              [-118.81606278091493, 44.52083127254353],\n              [-118.8087863932847, 44.52573280025778],\n              [-118.80102890608927, 44.530963096700084],\n              [-118.79508126526105, 44.53491788681305],\n              [-118.78579783512467, 44.54109492085664],\n              [-118.78137613723739, 44.54399720622494],\n              [-118.77036673235146, 44.55122674501319],\n              [-118.76767100921373, 44.55297340676115],\n              [-118.75473263794703, 44.56135856916974],\n              [-118.75396588119007, 44.5618490077908],\n              [-118.74026075316641, 44.57061895042585],\n              [-118.73889901630956, 44.57149039332629],\n              [-118.72655562514275, 44.57928847936053],\n              [-118.72286015459702, 44.581622217482845],\n              [-118.71285049711909, 44.5878641855958],\n              [-118.70660881755296, 44.5917540416394],\n              [-118.69914536909543, 44.59634818714131],\n              [-118.69014144630539, 44.60188586579595],\n              [-118.68544024107177, 44.6047424861173],\n              [-118.67345436569579, 44.6120176899525],\n              [-118.67173511304811, 44.6130489721921],\n              [-118.65802998502446, 44.62126295324659],\n              [-118.65654932179385, 44.622149514109054],\n              [-118.6443248570008, 44.62938507368238],\n              [-118.63942318835787, 44.63228133826561],\n              [-118.63061972897714, 44.63742480597723],\n              [-118.62206509445303, 44.64241316242216],\n              [-118.61691460095348, 44.64538368156165],\n              [-118.60447079598387, 44.65254498657871],\n              [-118.60320947292982, 44.65326313239204],\n              [-118.58950434490616, 44.66105426507512],\n              [-118.58664381264305, 44.66267681073526],\n              [-118.5757992168825, 44.66876446265948],\n              [-118.56857447786805, 44.672808634891815],\n              [-118.56209408885884, 44.67639965206256],\n              [-118.5502544061973, 44.68294045904837],\n              [-118.54838896083518, 44.68396094209895],\n              [-118.53468383281152, 44.6914402864317],\n              [-118.53168453260004, 44.69307228320492],\n              [-118.52097870478786, 44.69884259228015],\n              [-118.51285659278152, 44.70320410736147],\n              [-118.5072735767642, 44.70617469290364],\n              [-118.49376161598568, 44.713335931518024],\n              [-118.49356844874055, 44.71343740058236],\n              [-118.47986332071689, 44.720617705792606],\n              [-118.47439989296295, 44.72346775567458],\n              [-118.46615819269323, 44.727730502411276],\n              [-118.4547587606244, 44.73359957983113],\n              [-118.45245306466957, 44.73477691865394],\n              [-118.43874793664591, 44.741748925810406],\n              [-118.43483369976283, 44.74373140398768],\n              [-118.42504280862225, 44.74865130891299],\n              [-118.41461652823713, 44.75386322814423],\n              [-118.41133768059859, 44.75548986785718],\n              [-118.39763255257493, 44.7622583080683],\n              [-118.39409885427513, 44.763995052300785],\n              [-118.38392742455127, 44.76895817965763],\n              [-118.37327252126346, 44.77412687645734],\n              [-118.37022229652761, 44.77559634400252],\n              [-118.35651716850396, 44.782165979306335],\n              [-118.35212710571183, 44.78425870061389],\n              [-118.3428120404803, 44.788670264134716],\n              [-118.33065521196222, 44.79439052477044],\n              [-118.32910691245664, 44.79511453809175],\n              [-118.31540178443298, 44.80149009475102],\n              [-118.3088406171582, 44.804522348926994],\n              [-118.30169665640932, 44.80780475657093],\n              [-118.28799152838566, 44.81405914341526],\n              [-118.28668003695641, 44.81465417308355],\n              [-118.274286400362, 44.82024680663477],\n              [-118.26415153380121, 44.8247859972401],\n              [-118.26058127233834, 44.82637686937674],\n              [-118.24687614431468, 44.8324437561753],\n              [-118.24124666255014, 44.83491782139665],\n              [-118.23317101629102, 44.83845024508791],\n              [-118.21946588826737, 44.84439856668841],\n              [-118.21795544428633, 44.8450496455532],\n              [-118.2057607602437, 44.85028362561339],\n              [-118.19425210939916, 44.855181469709756],\n              [-118.19205563222005, 44.856112511919164],\n              [-118.17835050419639, 44.86187967461937],\n              [-118.17012096788832, 44.86531329386631],\n              [-118.16464537617273, 44.867589706213366],\n              [-118.15094024814907, 44.873240906942954],\n              [-118.14554922782553, 44.87544511802286],\n              [-118.13723512012541, 44.878833739152526],\n              [-118.12352999210175, 44.884369671517184],\n              [-118.12051554964923, 44.88557694217941],\n              [-118.10982486407809, 44.88984677801794],\n              [-118.09611973605443, 44.895268134998595],\n              [-118.09499603312604, 44.895708766335964],\n              [-118.08241460803077, 44.90063080405596],\n              [-118.06896206199097, 44.90584059049252],\n              [-118.06870948000712, 44.90593820961515],\n              [-118.05500435198346, 44.911187597781854],\n              [-118.04238070147603, 44.91597241464907],\n              [-118.0412992239598, 44.916381672667704],\n              [-118.02759409593614, 44.92151872531974],\n              [-118.01522819230225, 44.92610423880562],\n              [-118.01388896791248, 44.92660025596393],\n              [-118.00018383988882, 44.93162552588539],\n              [-117.9874696070826, 44.93623606296217],\n              [-117.98647871186516, 44.93659511015849],\n              [-117.9727735838415, 44.94150910049133],\n              [-117.95906845581784, 44.94636714749949],\n              [-117.95906634588934, 44.946367887118726],\n              [-117.94536332779418, 44.95117030192608],\n              [-117.93165819977052, 44.95591728289386],\n              [-117.92995683037704, 44.95649971127528],\n              [-117.91795307174687, 44.960609726030555],\n              [-117.9042479437232, 44.96524602093315],\n              [-117.90010174357431, 44.96663153543183],\n              [-117.89054281569955, 44.969827704267665],\n              [-117.87683768767589, 44.974353610480804],\n              [-117.86944706165156, 44.97676335958838],\n              [-117.86313255965223, 44.97882429755421],\n              [-117.84942743162857, 44.98324002245635],\n              [-117.83793335183925, 44.986895183744934],\n              [-117.83572230360491, 44.9875992912996],\n              [-117.82201717558125, 44.99190494565757],\n              [-117.80831204755759, 44.99615320497414],\n              [-117.80545266197653, 44.99702700790149],\n              [-117.79460691953393, 45.00034778371416],\n              [-117.78090179151027, 45.004485725555476],\n              [-117.77191962018243, 45.00715883205804],\n              [-117.76719666348662, 45.00856765306026],\n              [-117.75349153546296, 45.012595152436255],\n              [-117.7397864074393, 45.016564463843885],\n              [-117.73723885246761, 45.01729065621459],\n              [-117.72608127941564, 45.02048019745524],\n              [-117.71237615139198, 45.024338516813536],\n              [-117.70124901580346, 45.02742248037114],\n              [-117.69867102336832, 45.02813928050392],\n              [-117.68496589534466, 45.03188620981457],\n              [-117.671260767321, 45.035574052281504],\n              [-117.6637748150333, 45.037554304527696],\n              [-117.65755563929734, 45.03920554599275],\n              [-117.64385051127368, 45.04278108421308],\n              [-117.63014538325002, 45.04629690241664],\n              [-117.62462868056808, 45.04768612868425],\n              [-117.61644025522637, 45.049756773353],\n              [-117.6027351272027, 45.05315914408133],\n              [-117.58902999917905, 45.05650110252246],\n              [-117.5835213837988, 45.0578179528408],\n              [-117.57532487115539, 45.059786453318196],\n              [-117.56161974313173, 45.06301357367986],\n              [-117.54791461510807, 45.06617951470225],\n              [-117.54008983932746, 45.06794977699735],\n              [-117.53420948708441, 45.06928691090573],\n              [-117.52050435906075, 45.07233636029011],\n              [-117.50679923103709, 45.07532377379034],\n              [-117.4938754456039, 45.078081601153905],\n              [-117.49309410301343, 45.07824925380816],\n              [-117.47938897498977, 45.08111824615909],\n              [-117.46568384696612, 45.083924242965104],\n              [-117.45197871894246, 45.08666694348814],\n              [-117.44405523426772, 45.08821342531046],\n              [-117.4382735909188, 45.089348688747386],\n              [-117.42456846289514, 45.09196997738588],\n              [-117.41086333487148, 45.09452686330759],\n              [-117.39715820684782, 45.09701900734041],\n              [-117.3896551540311, 45.09834524946701],\n              [-117.38345307882416, 45.09944869381233],\n              [-117.3697479508005, 45.101815918542286],\n              [-117.35604282277684, 45.10411712339747],\n              [-117.34233769475318, 45.10635191950743],\n              [-117.32890213278088, 45.10847707362356],\n              [-117.32863256672952, 45.108520010113445],\n              [-117.31492743870587, 45.11062583076819],\n              [-117.3012223106822, 45.112663770552665],\n              [-117.28751718265855, 45.11463338021681],\n              [-117.27381205463489, 45.11653419560026],\n              [-117.26010692661123, 45.11836573665801],\n              [-117.25820687292227, 45.11860889778011],\n              [-117.24640179858757, 45.12013113474514],\n              [-117.23269667056391, 45.12182658253298],\n              [-117.21899154254025, 45.1234509558296],\n              [-117.20528641451659, 45.125003697866866],\n              [-117.19158128649293, 45.126484231918035],\n              [-117.17787615846927, 45.12789196035031],\n              [-117.16913987085125, 45.128740721936666],\n              [-117.16417103044562, 45.129227385182354],\n              [-117.15046590242196, 45.130490475618096],\n              [-117.1367607743983, 45.13167857922774],\n              [-117.12305564637464, 45.132791006350494],\n              [-117.10935051835098, 45.13382704252023],\n              [-117.09564539032732, 45.134785947540124],\n              [-117.08194026230366, 45.13566695455786],\n              [-117.06823513428, 45.136469269140804],\n              [-117.05453000625634, 45.137192068349904],\n              [-117.04082487823268, 45.13783449981143],\n              [-117.02711975020902, 45.13839568078512],\n              [-117.01347574865356, 45.13887254609322],\n              [-117.01341462218537, 45.13887470148902],\n              [-116.9997094941617, 45.13927137338273],\n              [-116.98600436613805, 45.13958375920678],\n              [-116.97229923811439, 45.13981085416664],\n              [-116.95859411009073, 45.139951619049384],\n              [-116.94488898206707, 45.140004979225544],\n              [-116.93118385404341, 45.13996982363306],\n              [-116.91747872601975, 45.13984500374081],\n              [-116.90377359799609, 45.13962933248896],\n              [-116.89006846997243, 45.139321583203426],\n              [-116.87636334194877, 45.138920488481446],\n              [-116.87502849095142, 45.13887254609322],\n              [-116.86265821392512, 45.138425375706696],\n              [-116.84895308590146, 45.13783440216784],\n              [-116.8352479578778, 45.13714608463027],\n              [-116.82154282985414, 45.13635896445483],\n              [-116.80783770183048, 45.135471535475574],\n              [-116.79413257380682, 45.13448224263877],\n              [-116.78042744578316, 45.13338948058678],\n              [-116.7667223177595, 45.1321915921827],\n              [-116.75301718973584, 45.1308868669715],\n              [-116.73931206171218, 45.12947353957347],\n              [-116.7326905012636, 45.128740721936666],\n              [-116.72560693368852, 45.12795033739053],\n              [-116.71190180566487, 45.126315260470406],\n              [-116.6981966776412, 45.124565788464125],\n              [-116.68449154961755, 45.122699894128985],\n              [-116.67078642159389, 45.1207154852483],\n              [-116.65708129357023, 45.11861040248578],\n              [-116.65707194945391, 45.11860889778011],\n              [-116.64337616554657, 45.11638276179393],\n              [-116.62967103752291, 45.11402961847223],\n              [-116.61596590949925, 45.11154856749304],\n              [-116.6022607814756, 45.10893712628213],\n              [-116.59994431217079, 45.10847707362356],\n              [-116.58855565345193, 45.1061920968559],\n              [-116.57485052542827, 45.10331092320687],\n              [-116.56114539740462, 45.10029093053864],\n              [-116.55267804773226, 45.09834524946701],\n              [-116.54744026938096, 45.09712845895412],\n              [-116.5337351413573, 45.093819633454764],\n              [-116.52003001333364, 45.090362491154835],\n              [-116.5118331596086, 45.08821342531046],\n              [-116.50632488530998, 45.08675229483565],\n              [-116.49261975728632, 45.082984433283606],\n              [-116.47891462926266, 45.0790575356376],\n              [-116.47561656559502, 45.078081601153905],\n              [-116.465209501239, 45.074963443406084],\n              [-116.45150437321534, 45.07070073283112],\n              [-116.44296485623288, 45.06794977699735],\n              [-116.43779924519168, 45.06626380489296],\n              [-116.42409411716802, 45.061645831704176],\n              [-116.41313575715013, 45.0578179528408],\n              [-116.41038898914437, 45.05684522420283],\n              [-116.3966838611207, 45.051850440119196],\n              [-116.38565233088144, 45.04768612868425],\n              [-116.38297873309705, 45.046662249762505],\n              [-116.36927360507339, 45.04126675062442],\n              [-116.36014703780042, 45.037554304527696],\n              [-116.35556847704973, 45.035663595028986],\n              [-116.34186334902607, 45.02984082097118],\n              [-116.33633261484766, 45.02742248037114],\n              [-116.32815822100241, 45.02379134554449],\n              [-116.31445309297875, 45.01751172977042],\n              [-116.31398176656731, 45.01729065621459],\n              [-116.3007479649551, 45.01098002497467],\n              [-116.29296810141213, 45.00715883205804],\n              [-116.28704283693143, 45.00419845671397],\n              [-116.27333770890777, 44.997155489019676],\n              [-116.2730931962162, 44.99702700790149],\n              [-116.25963258088412, 44.9898265579862],\n              [-116.25429749022308, 44.986895183744934],\n              [-116.24592745286046, 44.982210593539314],\n              [-116.23644255829159, 44.97676335958838],\n              [-116.2322223248368, 44.974292990870666],\n              [-116.219455003637, 44.96663153543183],\n              [-116.21851719681314, 44.96605757302125],\n              [-116.20481206878948, 44.957480399235344],\n              [-116.20327998674985, 44.95649971127528],\n              [-116.19110694076582, 44.94854531805554],\n              [-116.18784935887278, 44.946367887118726],\n              [-116.17740181274216, 44.93923402113604],\n              [-116.17310624152519, 44.93623606296217],\n              [-116.1636966847185, 44.929522539738194],\n              [-116.15900567194109, 44.92610423880562],\n              [-116.14999155669484, 44.91938419687349],\n              [-116.14550733366653, 44.91597241464907],\n              [-116.13628642867118, 44.908789248676136],\n              [-116.13257500563876, 44.90584059049252],\n              [-116.12258130064752, 44.89770446616954],\n              [-116.12017608774555, 44.895708766335964],\n              [-116.10887617262387, 44.8860926454916],\n              [-116.1082811907893, 44.88557694217941],\n              [-116.096870340719, 44.87544511802286],\n              [-116.0951710446002, 44.87389644429947],\n              [-116.08591579991321, 44.86531329386631],\n              [-116.08146591657655, 44.86107033179053],\n              [-116.07539301789012, 44.855181469709756],\n              [-116.06776078855289, 44.84756417521137],\n              [-116.06528201843281, 44.8450496455532],\n              [-116.0555691584222, 44.83491782139665],\n              [-116.05405566052923, 44.833295187269336],\n              [-116.04624057423965, 44.8247859972401],\n              [-116.04035053250557, 44.81816529828701],\n              [-116.03727324743569, 44.81465417308355],\n              [-116.02865828550122, 44.804522348926994],\n              [-116.02664540448191, 44.80208367703279],\n              [-116.02038499436205, 44.79439052477044],\n              [-116.01294027645825, 44.78491217960418],\n              [-116.01243400286214, 44.78425870061389],\n              [-116.00480536145584, 44.77412687645734],\n              [-115.9992351484346, 44.76644831967116],\n              [-115.99747853264512, 44.763995052300785],\n              [-115.99045174208288, 44.75386322814423],\n              [-115.98553002041093, 44.746490802911495],\n              [-115.98371053231995, 44.74373140398768],\n              [-115.97725196837406, 44.73359957983113],\n              [-115.97182489238727, 44.72472780663699],\n              [-115.97106308089873, 44.72346775567458],\n              [-115.96514301227276, 44.713335931518024],\n              [-115.95947909675003, 44.70320410736147],\n              [-115.95811976436362, 44.70067873527145],\n              [-115.95406988319175, 44.69307228320492],\n              [-115.9489070078848, 44.68294045904837],\n              [-115.94441463633996, 44.67370199979234],\n              [-115.94398468932006, 44.672808634891815],\n              [-115.93930092367657, 44.66267681073526],\n              [-115.93484798439171, 44.65254498657871],\n              [-115.9307095083163, 44.642625186222624],\n              [-115.93062189776137, 44.64241316242216],\n              [-115.92662046645242, 44.63228133826561],\n              [-115.92283798129853, 44.622149514109054],\n              [-115.9192710665568, 44.6120176899525],\n              [-115.91700438029264, 44.605190428379764],\n              [-115.91591675100707, 44.60188586579595],\n              [-115.9127720699649, 44.5917540416394],\n              [-115.90983367950042, 44.581622217482845],\n              [-115.90709895366801, 44.57149039332629],\n              [-115.90456543243857, 44.56135856916974],\n              [-115.90329925226898, 44.55588301684123],\n              [-115.90223077091403, 44.55122674501319],\n              [-115.90009276374924, 44.54109492085664],\n              [-115.89814949224146, 44.530963096700084],\n              [-115.89639916660856, 44.52083127254353],\n              [-115.89484015089113, 44.51069944838698],\n              [-115.89347096187497, 44.50056762423043],\n              [-115.89229026824437, 44.490435800073875],\n              [-115.8912968899631, 44.48030397591732],\n              [-115.89048979788178, 44.47017215176077],\n              [-115.88986811357108, 44.46004032760422],\n              [-115.88959412424532, 44.453702743607835],\n              [-115.88943106793218, 44.449908503447666],\n              [-115.88917810505647, 44.439776679291114],\n              [-115.88910886956693, 44.42964485513456],\n              [-115.88922308496639, 44.41951303097801],\n              [-115.88952062477793, 44.40938120682146],\n              [-115.88959412424532, 44.407839824282036],\n              [-115.89000143269878, 44.399249382664905],\n              [-115.89066573775125, 44.38911755850835],\n              [-115.89151390485509, 44.3789857343518],\n              [-115.89254644283244, 44.36885391019525],\n              [-115.89376402255951, 44.358722086038696],\n              [-115.8951674795149, 44.348590261882144],\n              [-115.89675781661097, 44.33845843772559],\n              [-115.89853620731343, 44.32832661356904],\n              [-115.90050399905368, 44.31819478941249],\n              [-115.9026627169365, 44.308062965255935],\n              [-115.90329925226898, 44.30532781099556],\n              [-115.90501462510052, 44.29793114109938],\n              [-115.9075615870306, 44.28779931694283],\n              [-115.91030558358918, 44.27766749278628],\n              [-115.91324896895644, 44.267535668629726],\n              [-115.91639430533479, 44.257403844473174],\n              [-115.91700438029264, 44.25556307030699],\n              [-115.91974674662015, 44.24727202031662],\n              [-115.92330818254538, 44.23714019616007],\n              [-115.92708147278653, 44.22700837200352],\n              [-115.9307095083163, 44.21779457875339],\n              [-115.93107069434937, 44.216876547846965],\n              [-115.9352849795743, 44.20674472369041],\n              [-115.93972399028763, 44.19661289953386],\n              [-115.94439226208016, 44.18648107537731],\n              [-115.94441463633996, 44.18643489197152],\n              [-115.94930496749943, 44.176349251220756],\n              [-115.95445893041924, 44.166217427064204],\n              [-115.95811976436362, 44.15935132048128],\n              [-115.95986450340772, 44.15608560290765],\n              [-115.96553489001376, 44.1459537787511],\n              [-115.97146745809512, 44.13582195459455],\n              [-115.97182489238727, 44.13523790643134],\n              [-115.97769027098873, 44.125690130437995],\n              [-115.98419475308657, 44.11555830628144],\n              [-115.98553002041093, 44.113565344290414],\n              [-115.99101205351171, 44.10542648212489],\n              [-115.99813729059161, 44.09529465796834],\n              [-115.9992351484346, 44.093796894571206],\n              [-116.00560858535518, 44.085162833811786],\n              [-116.01294027645825, 44.07564486736619],\n              [-116.0134171005015, 44.075031009655234],\n              [-116.02161563975707, 44.06489918549868],\n              [-116.02664540448191, 44.05893743389195],\n              [-116.03020069406773, 44.05476736134213],\n              [-116.03920463722625, 44.04463553718558],\n              [-116.04035053250557, 44.0433962835041],\n              [-116.04868019669146, 44.034503713029025],\n              [-116.05405566052923, 44.02899728549648],\n              [-116.05863860274303, 44.02437188887247],\n              [-116.06776078855289, 44.0155384454548],\n              [-116.06912457867014, 44.01424006471592],\n              [-116.08020844423957, 44.00410824055937],\n              [-116.08146591657655, 44.00300373536224],\n              [-116.09195557915815, 43.993976416402816],\n              [-116.0951710446002, 43.99131981241916],\n              [-116.1044313086278, 43.983844592246264],\n              [-116.10887617262387, 43.980400024230704],\n              [-116.1177358625356, 43.97371276808971],\n              [-116.12258130064752, 43.9702017174448],\n              [-116.13199581346377, 43.96358094393316],\n              [-116.13628642867118, 43.96068417107967],\n              [-116.14737312554762, 43.95344911977661],\n              [-116.14999155669484, 43.951808583488585],\n              [-116.1636966847185, 43.94354436690504],\n              [-116.16408841831257, 43.943317295620055],\n              [-116.17740181274216, 43.93591157698978],\n              [-116.1825431806892, 43.9331854714635],\n              [-116.19110694076582, 43.92882725584015],\n              [-116.20309265191676, 43.92305364730695],\n              [-116.20481206878948, 43.92225852070758],\n              [-116.21851719681314, 43.916260953821556],\n              [-116.2266840646963, 43.9129218231504],\n              [-116.2322223248368, 43.91074803512479],\n              [-116.24592745286046, 43.9057448043566],\n              [-116.25473788968444, 43.902789998993846],\n              [-116.25963258088412, 43.90121358545072],\n              [-116.27333770890777, 43.897183802866856],\n              [-116.28704283693143, 43.89358984275807],\n              [-116.29105520142556, 43.892658174837294],\n              [-116.3007479649551, 43.89049410927973],\n              [-116.31445309297875, 43.88786429946432],\n              [-116.32815822100241, 43.88569176533463],\n              [-116.34186334902607, 43.88399385921864],\n              [-116.35556847704973, 43.88279261710494],\n              [-116.36091945960607, 43.88252635068074],\n              [-116.36927360507339, 43.882123688002466],\n              [-116.38297873309705, 43.882008886473336],\n              [-116.3966838611207, 43.88249189554871],\n              [-116.397093117926, 43.88252635068074],\n              [-116.41038898914437, 43.88364838585067],\n              [-116.42409411716802, 43.88554749859815],\n              [-116.43779924519168, 43.88828763516563],\n              [-116.45150437321534, 43.89199814686204],\n              [-116.45336155552828, 43.892658174837294],\n              [-116.465209501239, 43.896744749712475],\n              [-116.47891462926266, 43.90266284596636],\n              [-116.47915045378984, 43.902789998993846],\n              [-116.49261975728632, 43.90953390747364],\n              [-116.49829609112655, 43.9129218231504],\n              [-116.50632488530998, 43.9172343420311],\n              [-116.51578579759678, 43.92305364730695],\n              [-116.52003001333364, 43.92534786121884],\n              [-116.53331078794808, 43.9331854714635],\n              [-116.5337351413573, 43.93340334670575],\n              [-116.54744026938096, 43.94095194974572],\n              [-116.55169098424216, 43.943317295620055],\n              [-116.56114539740462, 43.94786832754544],\n              [-116.57362876300121, 43.95344911977661],\n              [-116.57485052542827, 43.953938561721735],\n              [-116.58855565345193, 43.95921654258521],\n              [-116.6022607814756, 43.96345425328445],\n              [-116.6027373192208, 43.96358094393316],\n              [-116.61596590949925, 43.967042096052545],\n              [-116.62967103752291, 43.96964302910831],\n              [-116.64337616554657, 43.97127041464911],\n              [-116.65708129357023, 43.97195467856259],\n              [-116.67078642159389, 43.971684259095454],\n              [-116.68449154961755, 43.97033480242812],\n              [-116.6981966776412, 43.96752845402574],\n              [-116.70884015306149, 43.96358094393316],\n              [-116.71190180566487, 43.96270266909236],\n              [-116.72560693368852, 43.956296587564665],\n              [-116.72945621668786, 43.95344911977661],\n              [-116.73931206171218, 43.94711766510548],\n              [-116.74330643184807, 43.943317295620055],\n              [-116.75301718973584, 43.934217300088235],\n              [-116.75383941138541, 43.9331854714635],\n              [-116.76202345714805, 43.92305364730695],\n              [-116.7667223177595, 43.91570300336632],\n              [-116.76828949327478, 43.9129218231504],\n              [-116.77309970061351, 43.902789998993846],\n              [-116.77640861933088, 43.892658174837294],\n              [-116.77860113853555, 43.88252635068074],\n              [-116.78030264591261, 43.87239452652419],\n              [-116.78042744578316, 43.87176035436495],\n              [-116.7828086687086, 43.86226270236764],\n              [-116.78808118468342, 43.852130878211085],\n              [-116.79413257380682, 43.84656030138522],\n              [-116.79942898584538, 43.84199905405453],\n              [-116.80783770183048, 43.83721150889017],\n              [-116.81659069498339, 43.83186722989798],\n              [-116.82154282985414, 43.82937627582854],\n              [-116.8352479578778, 43.82264648517068],\n              [-116.8376913396375, 43.82173540574143],\n              [-116.84895308590146, 43.818397597308554],\n              [-116.86265821392512, 43.816731453222836],\n              [-116.87636334194877, 43.81604309616671],\n              [-116.89006846997243, 43.81509412154722],\n              [-116.90377359799609, 43.81380901427909],\n              [-116.91747872601975, 43.81435248119724],\n              [-116.93118385404341, 43.81721572135458],\n              [-116.94488898206707, 43.81701513111838],\n              [-116.95473275434757, 43.811603581584876],\n              [-116.95859411009073, 43.80702717384809],\n              [-116.96093635692603, 43.801471757428324],\n              [-116.95859411009073, 43.79419325528071],\n              [-116.95617587302401, 43.79133993327177],\n              [-116.94738022079105, 43.78120810911522],\n              [-116.94752837491072, 43.77107628495867],\n              [-116.95859411009073, 43.76209456172517],\n              [-116.97229923811439, 43.761171329630955],\n              [-116.97861308097863, 43.760944460802115],\n              [-116.98600436613805, 43.760796032384334],\n              [-116.9997094941617, 43.758631870059745],\n              [-117.01341462218537, 43.75342066559516],\n              [-117.01829176255394, 43.75081263664556],\n              [-117.02711975020902, 43.744592849418666],\n              [-117.03215838994667, 43.74068081248901],\n              [-117.03925501437648, 43.73054898833246],\n              [-117.04082487823268, 43.72412649467213],\n              [-117.04240740975897, 43.720417164175906],\n              [-117.04286763512744, 43.710285340019354],\n              [-117.04232182546934, 43.7001535158628],\n              [-117.04249076568155, 43.69002169170625],\n              [-117.04357750480814, 43.6798898675497],\n              [-117.0448805035839, 43.669758043393145],\n              [-117.04588518086292, 43.65962621923659],\n              [-117.04648922987535, 43.64949439508004],\n              [-117.04682062891749, 43.63936257092349],\n              [-117.04707186578445, 43.629230746766936],\n              [-117.04740087742876, 43.619098922610384],\n              [-117.04788993182156, 43.60896709845383],\n              [-117.0485529892255, 43.59883527429728],\n              [-117.0493657900345, 43.58870345014073],\n              [-117.0502933624564, 43.578571625984175],\n              [-117.05130534520568, 43.56843980182762],\n              [-117.05238115035499, 43.55830797767107],\n              [-117.05350972617794, 43.54817615351452],\n              [-117.05453000625634, 43.5393234555306],\n              [-117.05469290239087, 43.538044329357966],\n              [-117.05596075736011, 43.527912505201414],\n              [-117.05727779302964, 43.51778068104486],\n              [-117.0586484282306, 43.50764885688831],\n              [-117.06007663190239, 43.49751703273176],\n              [-117.061565102078, 43.487385208575205],\n              [-117.06311493249912, 43.47725338441865],\n              [-117.06472563589723, 43.4671215602621],\n              [-117.066395387978, 43.45698973610555],\n              [-117.06812137610152, 43.446857911948996],\n              [-117.06823513428, 43.44618229818058],\n              [-117.06994277627457, 43.436726087792444],\n              [-117.07181550214565, 43.42659426363589],\n              [-117.07373321102685, 43.41646243947934],\n              [-117.07569271244445, 43.40633061532279],\n              [-117.0776912175578, 43.396198791166235],\n              [-117.0797265407075, 43.38606696700968],\n              [-117.08179726913679, 43.37593514285313],\n              [-117.08194026230366, 43.375222370366664],\n              [-117.0839514557976, 43.36580331869658],\n              [-117.08614357091992, 43.355671494540026],\n              [-117.08837157605382, 43.345539670383474],\n              [-117.09063813584308, 43.33540784622692],\n              [-117.0929470429448, 43.32527602207037],\n              [-117.09530321700063, 43.31514419791382],\n              [-117.09564539032732, 43.31366101045751],\n              [-117.0977606687251, 43.305012373757265],\n              [-117.10028501392063, 43.29488054960071],\n              [-117.10287610419536, 43.28474872544416],\n              [-117.1055428207135, 43.27461690128761],\n              [-117.10829481852848, 43.264485077131056],\n              [-117.10935051835098, 43.260648796519305],\n              [-117.11118073531826, 43.254353252974504],\n              [-117.11419475761697, 43.24422142881795],\n              [-117.11732486927582, 43.2340896046614],\n              [-117.12058259162409, 43.22395778050485],\n              [-117.12305564637464, 43.2165181800549],\n              [-117.12399808257216, 43.213825956348295],\n              [-117.12761417847567, 43.20369413219174],\n              [-117.1313911008469, 43.19356230803519],\n              [-117.13533996598937, 43.18343048387864],\n              [-117.1367607743983, 43.17987831386483],\n              [-117.13952263275793, 43.173298659722086],\n              [-117.14392443814711, 43.163166835565534],\n              [-117.14852709562997, 43.15303501140898],\n              [-117.15046590242196, 43.1488857338372],\n              [-117.153392312048, 43.14290318725243],\n              [-117.15851054405104, 43.13277136309588],\n              [-117.16385162482771, 43.122639538939325],\n              [-117.16417103044562, 43.12204447762189],\n              [-117.1695170466046, 43.11250771478277],\n              [-117.17542088544785, 43.10237589062622],\n              [-117.17787615846927, 43.09826635609869],\n              [-117.18162890949742, 43.09224406646967],\n              [-117.18812129296077, 43.082112242313116],\n              [-117.19158128649293, 43.07684834230919],\n              [-117.19491442981726, 43.07198041815656],\n              [-117.2020130715288, 43.06184859400001],\n              [-117.20528641451659, 43.057276371875105],\n              [-117.20942778249758, 43.05171676984346],\n              [-117.21714258522896, 43.04158494568691],\n              [-117.21899154254025, 43.0391929359156],\n              [-117.22520963301017, 43.031453121530355],\n              [-117.23269667056391, 43.02233354918676],\n              [-117.23356021502522, 43.0213212973738],\n              [-117.24228830039098, 43.01118947321725],\n              [-117.24640179858757, 43.006488605751855],\n              [-117.2513351463513, 43.0010576490607],\n              [-117.26010692661123, 42.99153885682313],\n              [-117.2606932416233, 42.990925824904146],\n              [-117.27044429719717, 42.98079400074759],\n              [-117.27381205463489, 42.97733051714292],\n              [-117.28053564874087, 42.97066217659104],\n              [-117.28751718265855, 42.963799638701914],\n              [-117.29096540839207, 42.96053035243449],\n              [-117.3012223106822, 42.95087258440075],\n              [-117.30174418623707, 42.95039852827794],\n              [-117.31292801749318, 42.940266704121385],\n              [-117.31492743870587, 42.93846290778147],\n              [-117.32448877425581, 42.93013487996483],\n              [-117.32863256672952, 42.92653726020552],\n              [-117.33642665339512, 42.92000305580828],\n              [-117.34233769475318, 42.915056553636255],\n              [-117.34875365848399, 42.90987123165173],\n              [-117.35604282277684, 42.90398348108665],\n              [-117.36148236968613, 42.899739407495176],\n              [-117.3697479508005, 42.89328661016985],\n              [-117.37462594751604, 42.88960758333862],\n              [-117.38345307882416, 42.88293930117762],\n              [-117.38819813785837, 42.87947575918207],\n              [-117.39715820684782, 42.87291885399914],\n              [-117.40221327826457, 42.86934393502552],\n              [-117.41086333487148, 42.86320582946999],\n              [-117.41668630553659, 42.85921211086897],\n              [-117.42456846289514, 42.85378350503521],\n              [-117.4316327646041, 42.849080286712415],\n              [-117.4382735909188, 42.84463743481339],\n              [-117.44706881870003, 42.83894846255586],\n              [-117.45197871894246, 42.83575509152314],\n              [-117.46301126083945, 42.82881663839931],\n              [-117.46568384696612, 42.82712557312227],\n              [-117.47938897498977, 42.81873867150017],\n              [-117.47947989217249, 42.81868481424276],\n              [-117.49309410301343, 42.81056244770717],\n              [-117.49657729633859, 42.808552990086206],\n              [-117.50679923103709, 42.80261114802561],\n              [-117.51425255360736, 42.79842116592965],\n              [-117.52050435906075, 42.79487848221542],\n              [-117.5325260589415, 42.7882893417731],\n              [-117.53420948708441, 42.787358909658906],\n              [-117.54791461510807, 42.780023949334606],\n              [-117.55151877393767, 42.77815751761655],\n              [-117.56161974313173, 42.77287901903836],\n              [-117.57122148980318, 42.76802569346],\n              [-117.57532487115539, 42.76593208159497],\n              [-117.58902999917905, 42.759164012680486],\n              [-117.59168711789108, 42.757893869303444],\n              [-117.6027351272027, 42.75255996799345],\n              [-117.61300926033157, 42.74776204514689],\n              [-117.61644025522637, 42.74614342736707],\n              [-117.63014538325002, 42.739884551913164],\n              [-117.63524700767529, 42.73763022099034],\n              [-117.64385051127368, 42.73378777346649],\n              [-117.65755563929734, 42.727866749893344],\n              [-117.65843662817352, 42.72749839683379],\n              [-117.671260767321, 42.72207679955082],\n              [-117.68278082468875, 42.717366572677236],\n              [-117.68496589534466, 42.716463091303],\n              [-117.69867102336832, 42.7109801615489],\n              [-117.70835188313191, 42.70723474852068],\n              [-117.71237615139198, 42.7056597239258],\n              [-117.72608127941564, 42.70047234740328],\n              [-117.73528880118842, 42.69710292436413],\n              [-117.7397864074393, 42.695437448990106],\n              [-117.75349153546296, 42.6905319258448],\n              [-117.7637846679723, 42.68697110020758],\n              [-117.76719666348662, 42.68577637433943],\n              [-117.78090179151027, 42.68114092980942],\n              [-117.7940645265208, 42.67683927605103],\n              [-117.79460691953393, 42.676659820108995],\n              [-117.80831204755759, 42.67228434766091],\n              [-117.82201717558125, 42.668058936379204],\n              [-117.82656303411453, 42.666707451894474],\n              [-117.83572230360491, 42.663949701290356],\n              [-117.84942743162857, 42.659970109746745],\n              [-117.86154975260888, 42.65657562773792],\n              [-117.86313255965223, 42.65612669464755],\n              [-117.87683768767589, 42.652386220165425],\n              [-117.89054281569955, 42.648782248790546],\n              [-117.89978537201618, 42.64644380358137],\n              [-117.9042479437232, 42.6452998987452],\n              [-117.91795307174687, 42.641925506157435],\n              [-117.93165819977052, 42.63868100817676],\n              [-117.9420818814959, 42.63631197942482],\n              [-117.94536332779418, 42.63555624807906],\n              [-117.95906845581784, 42.632534019421534],\n              [-117.9727735838415, 42.62963631951217],\n              [-117.98647871186516, 42.62686100981407],\n              [-117.99000327032275, 42.626180155268266],\n              [-118.00018383988882, 42.62418685525218],\n              [-118.01388896791248, 42.621626228099224],\n              [-118.02759409593614, 42.619184065939464],\n              [-118.0412992239598, 42.616858728543505],\n              [-118.04633858567209, 42.61604833111171],\n              [-118.05500435198346, 42.61463562721356],\n              [-118.06870948000712, 42.61252029727512],\n              [-118.08241460803077, 42.61051906344229],\n              [-118.09611973605443, 42.60863070746023],\n              [-118.10982486407809, 42.60685411713704],\n              [-118.11755560719513, 42.60591650695516],\n              [-118.12352999210175, 42.60518185482583],\n              [-118.13723512012541, 42.60361237299303],\n              [-118.15094024814907, 42.60215319002267],\n              [-118.16464537617273, 42.60080354180319],\n              [-118.17835050419639, 42.59956275352748],\n              [-118.19205563222005, 42.598430236767115],\n              [-118.2057607602437, 42.59740548671553],\n              [-118.21946588826737, 42.59648807959199],\n              [-118.23137064711096, 42.59578468279861],\n              [-118.23317101629102, 42.59567681456734],\n              [-118.24687614431468, 42.59496759453482],\n              [-118.26058127233834, 42.59436588860731],\n              [-118.274286400362, 42.59387153911447],\n              [-118.28799152838566, 42.59348445902941],\n              [-118.30169665640932, 42.59320463016978],\n              [-118.31540178443298, 42.59303210151503],\n              [-118.32910691245664, 42.59296698763523],\n              [-118.3428120404803, 42.59300946722652],\n              [-118.35651716850396, 42.59315978174918],\n              [-118.37022229652761, 42.593418234164034],\n              [-118.38392742455127, 42.59378518776361],\n              [-118.39763255257493, 42.594261065094386],\n              [-118.41133768059859, 42.59484634696686],\n              [-118.42504280862225, 42.59554157155033],\n              [-118.42919957496076, 42.59578468279861],\n              [-118.43874793664591, 42.59634376705483],\n              [-118.45245306466957, 42.597255062036005],\n              [-118.46615819269323, 42.598277759998],\n              [-118.47986332071689, 42.599412651983954],\n              [-118.49356844874055, 42.60066058296807],\n              [-118.5072735767642, 42.602022451430145],\n              [-118.52097870478786, 42.603499208998606],\n              [-118.53468383281152, 42.605091860160215],\n              [-118.54132318699415, 42.60591650695516],\n              [-118.54838896083518, 42.60679665506058],\n              [-118.56209408885884, 42.608614679483466],\n              [-118.5757992168825, 42.61055169414935],\n              [-118.58950434490616, 42.61260894462834],\n              [-118.60320947292982, 42.61478772900211],\n              [-118.61074566459891, 42.61604833111171],\n              [-118.61691460095348, 42.617084366351285],\n              [-118.63061972897714, 42.6194989708487],\n              [-118.6443248570008, 42.62203925963116],\n              [-118.65802998502446, 42.62470677519263],\n              [-118.66528278771487, 42.626180155268266],\n              [-118.67173511304811, 42.6274973826514],\n              [-118.68544024107177, 42.63041197515419],\n              [-118.69914536909543, 42.63345883502402],\n              [-118.71145034533193, 42.63631197942482],\n              [-118.71285049711909, 42.63663846956731],\n              [-118.72655562514275, 42.63994266598625],\n              [-118.74026075316641, 42.64338489674345],\n              [-118.75198046127015, 42.64644380358137],\n              [-118.75396588119007, 42.64696532277326],\n              [-118.76767100921373, 42.65067704226005],\n              [-118.78137613723739, 42.65453332750518],\n              [-118.78840323743948, 42.65657562773792],\n              [-118.79508126526105, 42.65853031463699],\n              [-118.8087863932847, 42.6626702508283],\n              [-118.82168632396923, 42.666707451894474],\n              [-118.82249152130836, 42.66696138689212],\n              [-118.83619664933202, 42.67139571772068],\n              [-118.84990177735568, 42.67598753585409],\n              [-118.8523800566024, 42.67683927605103],\n              [-118.86360690537934, 42.68073028634373],\n              [-118.877312033403, 42.68563448113778],\n              [-118.88095407773822, 42.68697110020758],\n              [-118.89101716142666, 42.690697483265645],\n              [-118.90472228945032, 42.695927748674286],\n              [-118.90772926044478, 42.69710292436413],\n              [-118.91842741747398, 42.7013240257064],\n              [-118.93213254549764, 42.70689544014809],\n              [-118.93294978594608, 42.70723474852068],\n              [-118.9458376735213, 42.71264007833316],\n              [-118.95678863427348, 42.717366572677236],\n              [-118.95954280154496, 42.71856787328802],\n              [-118.97324792956861, 42.72467954951627],\n              [-118.9794154828415, 42.72749839683379],\n              [-118.98695305759227, 42.73098196490109],\n              [-119.00065818561593, 42.73748043286199],\n              [-119.000968194181, 42.73763022099034],\n              [-119.01436331363959, 42.744178816937264],\n              [-119.02151602370368, 42.74776204514689],\n              [-119.02806844166325, 42.751084756977754],\n              [-119.04118402520612, 42.757893869303444],\n              [-119.04177356968691, 42.758203824959175],\n              [-119.05547869771057, 42.765543187998645],\n              [-119.06001511914981, 42.76802569346],\n              [-119.06918382573423, 42.77311012839473],\n              [-119.07809314263982, 42.77815751761655],\n              [-119.08288895375789, 42.7809120240718],\n              [-119.09547132958693, 42.7882893417731],\n              [-119.09659408178155, 42.78895704714389],\n              [-119.1102992098052, 42.79725579108641],\n              [-119.11218869181036, 42.79842116592965],\n              [-119.12400433782886, 42.805817908226125],\n              [-119.12829205665238, 42.808552990086206],\n              [-119.13770946585252, 42.814653301994895],\n              [-119.1438213656983, 42.81868481424276],\n              [-119.15141459387618, 42.82377362606514],\n              [-119.15880908839286, 42.82881663839931],\n              [-119.16511972189984, 42.8331916561194],\n              [-119.17328466306513, 42.83894846255586],\n              [-119.1788248499235, 42.84292139607459],\n              [-119.18727481077843, 42.849080286712415],\n              [-119.19252997794716, 42.85297819753159],\n              [-119.20080381057899, 42.85921211086897],\n              [-119.20623510597082, 42.86337889438582],\n              [-119.21389374155139, 42.86934393502552],\n              [-119.21994023399448, 42.87414195486536],\n              [-119.22656469623796, 42.87947575918207],\n              [-119.23364536201814, 42.88528765365992],\n              [-119.23883496927584, 42.88960758333862],\n              [-119.2473504900418, 42.896838267279335],\n              [-119.25072122452221, 42.899739407495176],\n              [-119.26105561806546, 42.90881829635395],\n              [-119.2622386434519, 42.90987123165173],\n              [-119.27340163210302, 42.92000305580828],\n              [-119.27476074608911, 42.92126182446822],\n              [-119.28422386556008, 42.93013487996483],\n              [-119.28846587411277, 42.934202030252514],\n              [-119.29471676738937, 42.940266704121385],\n              [-119.30217100213643, 42.947667250334085],\n              [-119.30489091639501, 42.95039852827794],\n              [-119.31475730622093, 42.96053035243449],\n              [-119.31587613016009, 42.961703574037195],\n              [-119.32432811172488, 42.97066217659104],\n              [-119.32958125818375, 42.97637155559158],\n              [-119.33360856362387, 42.98079400074759],\n              [-119.34260708877463, 42.990925824904146],\n              [-119.34328638620741, 42.99170713244528],\n              [-119.35133769843335, 43.0010576490607],\n              [-119.35699151423107, 43.00780600238873],\n              [-119.35980000958259, 43.01118947321725],\n              [-119.3680054092408, 43.0213212973738],\n              [-119.37069664225473, 43.02472903834112],\n              [-119.37596097670362, 43.031453121530355],\n              [-119.3836669923806, 43.04158494568691],\n              [-119.38440177027839, 43.042573817347105],\n              [-119.39114052281188, 43.05171676984346],\n              [-119.39810689830205, 43.06147386133526],\n              [-119.39837238616946, 43.06184859400001],\n              [-119.40538463929673, 43.07198041815656],\n              [-119.4118120263257, 43.08158246374917],\n              [-119.41216410644435, 43.082112242313116],\n              [-119.41873411901808, 43.09224406646967],\n              [-119.42507981901723, 43.10237589062622],\n              [-119.42551715434936, 43.103092622501414],\n              [-119.43122503188476, 43.11250771478277],\n              [-119.43715616103307, 43.122639538939325],\n              [-119.43922228237302, 43.12627710084131],\n              [-119.4428891416153, 43.13277136309588],\n              [-119.44842202726764, 43.14290318725243],\n              [-119.45292741039668, 43.15145666261113],\n              [-119.45375427139936, 43.15303501140898],\n              [-119.45890359502673, 43.163166835565534],\n              [-119.46385613026379, 43.173298659722086],\n              [-119.46663253842034, 43.17918742685612],\n              [-119.46862354439425, 43.18343048387864],\n              [-119.47321213707949, 43.19356230803519],\n              [-119.47761343573286, 43.20369413219174],\n              [-119.480337666444, 43.21021951529918],\n              [-119.48183713908212, 43.213825956348295],\n              [-119.48589130852599, 43.22395778050485],\n              [-119.48976654621744, 43.2340896046614],\n              [-119.49346547528329, 43.24422142881795],\n              [-119.49404279446766, 43.24586944252415],\n              [-119.49700505648764, 43.254353252974504],\n              [-119.500375802238, 43.264485077131056],\n              [-119.50357726372658, 43.27461690128761],\n              [-119.5066116891846, 43.28474872544416],\n              [-119.50774792249132, 43.28874188694903],\n              [-119.50949032400999, 43.29488054960071],\n              [-119.51221161163524, 43.305012373757265],\n              [-119.51477166597245, 43.31514419791382],\n              [-119.51717238884888, 43.32527602207037],\n              [-119.51941560687256, 43.33540784622692],\n              [-119.52145305051498, 43.34529518166363],\n              [-119.5215033541714, 43.345539670383474],\n              [-119.52344777797352, 43.355671494540026],\n              [-119.52523912503283, 43.36580331869658],\n              [-119.52687890299968, 43.37593514285313],\n              [-119.52836854930182, 43.38606696700968],\n              [-119.52970943185383, 43.396198791166235],\n              [-119.53090284972824, 43.40633061532279],\n              [-119.53195003378866, 43.41646243947934],\n              [-119.53285214728653, 43.42659426363589],\n              [-119.53361028642136, 43.436726087792444],\n              [-119.53422548086604, 43.446857911948996],\n              [-119.5346986942573, 43.45698973610555],\n              [-119.53503082465221, 43.4671215602621],\n              [-119.53515817853864, 43.47383306724233],\n              [-119.53522312522625, 43.47725338441865]\n            ],\n            [\n              [-114.0136927073745, 42.54512556201585],\n              [-114.01414284136537, 42.5552573861724],\n              [-114.01288251260199, 42.56538921032895],\n              [-114.01199158500403, 42.56832486014446],\n              [-114.00984284361346, 42.575521034485504],\n              [-114.00469398783419, 42.58565285864206],\n              [-113.99828645698037, 42.59453871842251],\n              [-113.99717267819241, 42.59578468279861],\n              [-113.98658048640402, 42.60591650695516],\n              [-113.98458132895671, 42.60772974231212],\n              [-113.97238581012545, 42.61604833111171],\n              [-113.97087620093305, 42.61715550539719],\n              [-113.95717107290939, 42.62496835091605],\n              [-113.95453105234772, 42.626180155268266],\n              [-113.94346594488573, 42.63241347550435],\n              [-113.93611428483877, 42.63631197942482],\n              [-113.92976081686207, 42.64033376912334],\n              [-113.92025294166112, 42.64644380358137],\n              [-113.91605568883841, 42.64940515813895],\n              [-113.90592934448148, 42.65657562773792],\n              [-113.90235056081475, 42.65913746869773],\n              [-113.89121753898787, 42.666707451894474],\n              [-113.8886454327911, 42.66840961538033],\n              [-113.87494030476743, 42.67649029671274],\n              [-113.87424677356063, 42.67683927605103],\n              [-113.86123517674378, 42.68327874891987],\n              [-113.85173706906531, 42.68697110020758],\n              [-113.84753004872012, 42.688646906897716],\n              [-113.83382492069646, 42.692824685533246],\n              [-113.8201197926728, 42.695698963530006],\n              [-113.80867765727439, 42.69710292436413],\n              [-113.80641466464914, 42.697411991475825],\n              [-113.79270953662548, 42.69801685518446],\n              [-113.77900440860182, 42.697331846567685],\n              [-113.77743213882752, 42.69710292436413],\n              [-113.76529928057816, 42.69537093453644],\n              [-113.7515941525545, 42.69183887629663],\n              [-113.73942929514874, 42.68697110020758],\n              [-113.73788902453084, 42.68634347686286],\n              [-113.72418389650718, 42.67885748014091],\n              [-113.72132231874359, 42.67683927605103],\n              [-113.71047876848353, 42.66931667582945],\n              [-113.70730737454447, 42.666707451894474],\n              [-113.69677364045987, 42.65894511027814],\n              [-113.69373114701662, 42.65657562773792],\n              [-113.68306851243621, 42.65007196732361],\n              [-113.67587924645505, 42.64644380358137],\n              [-113.66936338441255, 42.644095270934905],\n              [-113.65565825638889, 42.641034226722084],\n              [-113.64195312836523, 42.639588098461886],\n              [-113.62824800034157, 42.63846774218043],\n              [-113.61454287231791, 42.63670254312647],\n              [-113.613242923384, 42.63631197942482],\n              [-113.60083774429425, 42.63343095210009],\n              [-113.5871326162706, 42.62930601104247],\n              [-113.5767144452266, 42.626180155268266],\n              [-113.57342748824694, 42.623720350898886],\n              [-113.55972236022328, 42.61685377992577],\n              [-113.55744839754301, 42.61604833111171],\n              [-113.54601723219962, 42.60733883315857],\n              [-113.54317166969987, 42.60591650695516],\n              [-113.53232590671482, 42.59578468279861],\n              [-113.53231210417596, 42.595762725751904],\n              [-113.52256912269297, 42.58565285864206],\n              [-113.5186069761523, 42.579421667941304],\n              [-113.51508574339283, 42.575521034485504],\n              [-113.5090444694288, 42.56538921032895],\n              [-113.50490184812864, 42.55544806402605],\n              [-113.50479908494258, 42.5552573861724],\n              [-113.50157689072657, 42.54512556201585],\n              [-113.50001803789074, 42.534993737859295],\n              [-113.49997132183358, 42.52486191370274],\n              [-113.50138460443267, 42.51473008954619],\n              [-113.50426325412636, 42.50459826538964],\n              [-113.50490184812864, 42.503075853927605],\n              [-113.50828191712884, 42.49446644123309],\n              [-113.51372480344818, 42.484334617076534],\n              [-113.5186069761523, 42.47726335778495],\n              [-113.52062998239097, 42.47420279291998],\n              [-113.52885492697327, 42.46407096876343],\n              [-113.53231210417596, 42.460524689920994],\n              [-113.53862821390881, 42.45393914460688],\n              [-113.54601723219962, 42.447450398708774],\n              [-113.55018764825267, 42.443807320450325],\n              [-113.55972236022328, 42.436632179851365],\n              [-113.56376876347474, 42.43367549629377],\n              [-113.57342748824694, 42.42746399570343],\n              [-113.57987373411532, 42.42354367213722],\n              [-113.5871326162706, 42.41957722546278],\n              [-113.59940673363384, 42.41341184798067],\n              [-113.60083774429425, 42.41275336223344],\n              [-113.61454287231791, 42.40685837876366],\n              [-113.62398841416338, 42.40328002382412],\n              [-113.62824800034157, 42.40176513719972],\n              [-113.64195312836523, 42.39738516255913],\n              [-113.65565825638889, 42.39368744996993],\n              [-113.65795857554376, 42.393148199667564],\n              [-113.66936338441255, 42.390565816377894],\n              [-113.68306851243621, 42.3880211677949],\n              [-113.69677364045987, 42.3860330723039],\n              [-113.71047876848353, 42.38457663061803],\n              [-113.72418389650718, 42.38363489334134],\n              [-113.73788902453084, 42.38319936400248],\n              [-113.7515941525545, 42.38327024390179],\n              [-113.76529928057816, 42.383857551332085],\n              [-113.77900440860182, 42.38498391290792],\n              [-113.79270953662548, 42.38668876054653],\n              [-113.80641466464914, 42.38903235265606],\n              [-113.8201197926728, 42.392097069110214],\n              [-113.8238860075606, 42.393148199667564],\n              [-113.83382492069646, 42.395791950384414],\n              [-113.84753004872012, 42.40031081120322],\n              [-113.85505282995018, 42.40328002382412],\n              [-113.86123517674378, 42.40570206019717],\n              [-113.87494030476743, 42.412050150366746],\n              [-113.87758835825726, 42.41341184798067],\n              [-113.8886454327911, 42.41937388821177],\n              [-113.89571517401735, 42.42354367213722],\n              [-113.90235056081475, 42.427791330064714],\n              [-113.91126665251342, 42.43367549629377],\n              [-113.91605568883841, 42.43719438946594],\n              [-113.92538373197601, 42.443807320450325],\n              [-113.92976081686207, 42.44727310076698],\n              [-113.93899767995846, 42.45393914460688],\n              [-113.94346594488573, 42.45744897203959],\n              [-113.95285283058338, 42.46407096876343],\n              [-113.95717107290939, 42.46725228662868],\n              [-113.96693731122342, 42.47420279291998],\n              [-113.97087620093305, 42.4770659332263],\n              [-113.97971235962038, 42.484334617076534],\n              [-113.98458132895671, 42.488599427672874],\n              [-113.9897501635004, 42.49446644123309],\n              [-113.99729936373706, 42.50459826538964],\n              [-113.99828645698037, 42.505843139263554],\n              [-114.00361912743209, 42.51473008954619],\n              [-114.00834151234791, 42.52486191370274],\n              [-114.01164032150294, 42.534993737859295],\n              [-114.01199158500403, 42.536610524953375],\n              [-114.0136927073745, 42.54512556201585]\n            ],\n            [\n              [-114.95892991047133, 42.575521034485504],\n              [-114.96312156614681, 42.58565285864206],\n              [-114.96619793402144, 42.59578468279861],\n              [-114.96825748779179, 42.60591650695516],\n              [-114.96937345527397, 42.61604833111171],\n              [-114.96959165280397, 42.626180155268266],\n              [-114.96892762417441, 42.63631197942482],\n              [-114.96736306619606, 42.64644380358137],\n              [-114.96484155039411, 42.65657562773792],\n              [-114.96126357542884, 42.666707451894474],\n              [-114.9576454186365, 42.674426216185296],\n              [-114.95659689617929, 42.67683927605103],\n              [-114.95099123661362, 42.68697110020758],\n              [-114.94394029061284, 42.69689777364858],\n              [-114.94379993768524, 42.69710292436413],\n              [-114.93539813961338, 42.70723474852068],\n              [-114.93023516258918, 42.71229865878816],\n              [-114.92495367539026, 42.717366572677236],\n              [-114.91653003456553, 42.7240856559338],\n              [-114.91193400590328, 42.72749839683379],\n              [-114.90282490654187, 42.73328825603011],\n              [-114.89494050419277, 42.73763022099034],\n              [-114.88911977851821, 42.74047341797946],\n              [-114.87541465049455, 42.74595022785014],\n              [-114.86947943083139, 42.74776204514689],\n              [-114.86170952247089, 42.74998451215532],\n              [-114.84800439444723, 42.75271205365038],\n              [-114.83429926642357, 42.7541481501015],\n              [-114.82059413839991, 42.75440511352331],\n              [-114.80688901037625, 42.75354095000205],\n              [-114.7931838823526, 42.75152573083763],\n              [-114.77947875432893, 42.748184685199995],\n              [-114.77836558083723, 42.74776204514689],\n              [-114.76577362630528, 42.744251991835796],\n              [-114.75206849828162, 42.738832409877325],\n              [-114.74991880517621, 42.73763022099034],\n              [-114.73836337025796, 42.73293217679827],\n              [-114.72862610585078, 42.72749839683379],\n              [-114.7246582422343, 42.725865865817795],\n              [-114.71095311421064, 42.718539968911976],\n              [-114.70905204359273, 42.717366572677236],\n              [-114.69724798618698, 42.7115037017722],\n              [-114.68881789181685, 42.70723474852068],\n              [-114.68354285816332, 42.70477043143549],\n              [-114.66983773013966, 42.69914080872036],\n              [-114.66371414154956, 42.69710292436413],\n              [-114.656132602116, 42.69446899621769],\n              [-114.64242747409234, 42.69031255299942],\n              [-114.63170501191782, 42.68697110020758],\n              [-114.62872234606868, 42.68584866318543],\n              [-114.61501721804503, 42.680062264742475],\n              [-114.60862743277612, 42.67683927605103],\n              [-114.60131209002137, 42.67074517381703],\n              [-114.59679976890996, 42.666707451894474],\n              [-114.59171301113408, 42.65657562773792],\n              [-114.59107859457953, 42.64644380358137],\n              [-114.5930528553438, 42.63631197942482],\n              [-114.59678904335306, 42.626180155268266],\n              [-114.60131209002137, 42.6177011642807],\n              [-114.60191539904376, 42.61604833111171],\n              [-114.60569153118014, 42.60591650695516],\n              [-114.61086150030454, 42.59578468279861],\n              [-114.61501721804503, 42.5885511393762],\n              [-114.61638004209006, 42.58565285864206],\n              [-114.62121355044695, 42.575521034485504],\n              [-114.62661951455411, 42.56538921032895],\n              [-114.62872234606868, 42.56132663841244],\n              [-114.63248982859353, 42.5552573861724],\n              [-114.63923246959904, 42.54512556201585],\n              [-114.64242747409234, 42.54054922697579],\n              [-114.64736385416268, 42.534993737859295],\n              [-114.656132602116, 42.52575738825287],\n              [-114.65724078488465, 42.52486191370274],\n              [-114.66968832090062, 42.51473008954619],\n              [-114.66983773013966, 42.51460794022433],\n              [-114.68354285816332, 42.50579800146197],\n              [-114.68602605645292, 42.50459826538964],\n              [-114.69724798618698, 42.498788743913614],\n              [-114.70849281460583, 42.49446644123309],\n              [-114.71095311421064, 42.49343880398266],\n              [-114.7246582422343, 42.489015217896245],\n              [-114.73836337025796, 42.48581854371609],\n              [-114.74747452643666, 42.484334617076534],\n              [-114.75206849828162, 42.48349088319917],\n              [-114.76577362630528, 42.4819090204155],\n              [-114.77947875432893, 42.48118603768064],\n              [-114.7931838823526, 42.48127423832086],\n              [-114.80688901037625, 42.48216757820466],\n              [-114.82059413839991, 42.48389415729276],\n              [-114.82300131200333, 42.484334617076534],\n              [-114.83429926642357, 42.48632070860434],\n              [-114.84800439444723, 42.48963825083719],\n              [-114.86170952247089, 42.49401573617105],\n              [-114.86289749452499, 42.49446644123309],\n              [-114.87541465049455, 42.49926976902602],\n              [-114.88662141983485, 42.50459826538964],\n              [-114.88911977851821, 42.505830137181306],\n              [-114.90282490654187, 42.51374490262121],\n              [-114.90432625725151, 42.51473008954619],\n              [-114.91653003456553, 42.523389099371556],\n              [-114.91838275301959, 42.52486191370274],\n              [-114.92985258637569, 42.534993737859295],\n              [-114.93023516258918, 42.535372047858374],\n              [-114.93940269770437, 42.54512556201585],\n              [-114.94394029061284, 42.550854879854214],\n              [-114.94726572190643, 42.5552573861724],\n              [-114.95374922331133, 42.56538921032895],\n              [-114.9576454186365, 42.57298775561533],\n              [-114.95892991047133, 42.575521034485504]\n            ],\n            [\n              [-117.08194026230366, 43.97695961990943],\n              [-117.0871867997788, 43.983844592246264],\n              [-117.09140657165014, 43.993976416402816],\n              [-117.09305544013806, 44.00410824055937],\n              [-117.0925306554588, 44.01424006471592],\n              [-117.0898251840492, 44.02437188887247],\n              [-117.08476607716904, 44.034503713029025],\n              [-117.08194026230366, 44.03872550281173],\n              [-117.07704415113658, 44.04463553718558],\n              [-117.06823513428, 44.053217345059345],\n              [-117.06609045999559, 44.05476736134213],\n              [-117.05453000625634, 44.06283176368848],\n              [-117.0502968990489, 44.06489918549868],\n              [-117.04082487823268, 44.06990654413104],\n              [-117.02711975020902, 44.07495179921449],\n              [-117.02681615899769, 44.075031009655234],\n              [-117.01341462218537, 44.07932757913934],\n              [-116.9997094941617, 44.082717913594486],\n              [-116.98870105381074, 44.085162833811786],\n              [-116.98600436613805, 44.08592696434802],\n              [-116.97229923811439, 44.090035718714695],\n              [-116.9591695104854, 44.09529465796834],\n              [-116.95859411009073, 44.09555631766747],\n              [-116.94488898206707, 44.10305525729536],\n              [-116.94111191478292, 44.10542648212489],\n              [-116.93118385404341, 44.1112903950014],\n              [-116.92375336536193, 44.11555830628144],\n              [-116.91747872601975, 44.118938152538654],\n              [-116.90377359799609, 44.12528552570216],\n              [-116.90270893590379, 44.125690130437995],\n              [-116.89006846997243, 44.13055455451456],\n              [-116.87636334194877, 44.134326272509185],\n              [-116.86814718536947, 44.13582195459455],\n              [-116.86265821392512, 44.13694580286492],\n              [-116.84895308590146, 44.138530762781755],\n              [-116.8352479578778, 44.13891491693971],\n              [-116.82154282985414, 44.1381078142],\n              [-116.80783770183048, 44.136020121267485],\n              [-116.80699361531758, 44.13582195459455],\n              [-116.79413257380682, 44.132884992904515],\n              [-116.78042744578316, 44.128080775437645],\n              [-116.77517765533536, 44.125690130437995],\n              [-116.7667223177595, 44.1214530149147],\n              [-116.75738211822676, 44.11555830628144],\n              [-116.75301718973584, 44.112216710100995],\n              [-116.74510788110518, 44.10542648212489],\n              [-116.73931206171218, 44.09866490701836],\n              [-116.736450205376, 44.09529465796834],\n              [-116.73024714728184, 44.085162833811786],\n              [-116.72656824542902, 44.075031009655234],\n              [-116.72560693368852, 44.06945751760869],\n              [-116.72464029623706, 44.06489918549868],\n              [-116.72458113386767, 44.05476736134213],\n              [-116.72560693368852, 44.049790492273104],\n              [-116.7264640863704, 44.04463553718558],\n              [-116.73014761008557, 44.034503713029025],\n              [-116.7369850904954, 44.02437188887247],\n              [-116.73931206171218, 44.02201312615051],\n              [-116.74709185356144, 44.01424006471592],\n              [-116.75301718973584, 44.01025680846988],\n              [-116.7639631955127, 44.00410824055937],\n              [-116.7667223177595, 44.002919998703085],\n              [-116.78042744578316, 43.99778495087122],\n              [-116.79413257380682, 43.994427906778284],\n              [-116.79653091978622, 43.993976416402816],\n              [-116.80783770183048, 43.991938201159535],\n              [-116.82154282985414, 43.990458994630465],\n              [-116.8352479578778, 43.98990002309571],\n              [-116.84895308590146, 43.9901369642241],\n              [-116.86265821392512, 43.99099644920258],\n              [-116.87636334194877, 43.99206802380406],\n              [-116.89006846997243, 43.99239078479071],\n              [-116.90377359799609, 43.9901975562597],\n              [-116.91648421132619, 43.983844592246264],\n              [-116.91747872601975, 43.98340976881947],\n              [-116.93118385404341, 43.97456930091547],\n              [-116.9322945754438, 43.97371276808971],\n              [-116.94488898206707, 43.96727860552231],\n              [-116.95565917737206, 43.96358094393316],\n              [-116.95859411009073, 43.96277193331079],\n              [-116.97229923811439, 43.962281897000295],\n              [-116.97417943931502, 43.96358094393316],\n              [-116.98600436613805, 43.96681444309526],\n              [-116.9997094941617, 43.97353572546294],\n              [-117.00184867082109, 43.97371276808971],\n              [-117.01341462218537, 43.97427402380936],\n              [-117.01474573085193, 43.97371276808971],\n              [-117.02711975020902, 43.96545518846686],\n              [-117.03374878949032, 43.96358094393316],\n              [-117.04082487823268, 43.957503867402764],\n              [-117.05453000625634, 43.95847539819558],\n              [-117.06640009531058, 43.96358094393316],\n              [-117.06823513428, 43.964617644994874],\n              [-117.07958508176003, 43.97371276808971],\n              [-117.08194026230366, 43.97695961990943]\n            ],\n            [\n              [-119.33100137484142, 46.587723400480186],\n              [-119.3314320724573, 46.59785522463674],\n              [-119.32967658096172, 46.60798704879329],\n              [-119.32958125818375, 46.60826808666631],\n              [-119.32613473410858, 46.61811887294984],\n              [-119.32110339445556, 46.628250697106395],\n              [-119.31625597928932, 46.63838252126295],\n              [-119.31587613016009, 46.64043489025695],\n              [-119.31423065261606, 46.6485143454195],\n              [-119.31587613016009, 46.65540181869136],\n              [-119.31649865666293, 46.65864616957605],\n              [-119.3203284463831, 46.668777993732604],\n              [-119.32329498326204, 46.678909817889156],\n              [-119.32417640005305, 46.68904164204571],\n              [-119.32245621428957, 46.69917346620226],\n              [-119.31748399828871, 46.70930529035881],\n              [-119.31587613016009, 46.711144875536164],\n              [-119.30830516863735, 46.719437114515365],\n              [-119.30217100213643, 46.7236822612812],\n              [-119.29109128190083, 46.72956893867192],\n              [-119.28846587411277, 46.73062091649028],\n              [-119.27476074608911, 46.734245385116246],\n              [-119.26105561806546, 46.73559439321092],\n              [-119.2473504900418, 46.7348323576108],\n              [-119.23364536201814, 46.73190273670894],\n              [-119.22736879170162, 46.72956893867192],\n              [-119.21994023399448, 46.726168265581364],\n              [-119.20951149615868, 46.719437114515365],\n              [-119.20623510597082, 46.71622277418532],\n              [-119.1999196369508, 46.70930529035881],\n              [-119.19479600085229, 46.69917346620226],\n              [-119.19286133643467, 46.68904164204571],\n              [-119.19339970464999, 46.678909817889156],\n              [-119.1956716370133, 46.668777993732604],\n              [-119.19782728983432, 46.65864616957605],\n              [-119.1960751724472, 46.6485143454195],\n              [-119.19252997794716, 46.64387141250943],\n              [-119.18883548248691, 46.63838252126295],\n              [-119.17981301866008, 46.628250697106395],\n              [-119.1788248499235, 46.62707909157698],\n              [-119.17205439585766, 46.61811887294984],\n              [-119.16639050041661, 46.60798704879329],\n              [-119.16511972189984, 46.604419776033566],\n              [-119.16254996376178, 46.59785522463674],\n              [-119.16021094961239, 46.587723400480186],\n              [-119.15864277453703, 46.577591576323634],\n              [-119.15602773475017, 46.56745975216708],\n              [-119.15141459387618, 46.5608226553629],\n              [-119.14863953145567, 46.55732792801053],\n              [-119.13770946585252, 46.549510131062895],\n              [-119.13488827047573, 46.54719610385398],\n              [-119.12400433782886, 46.539679523242874],\n              [-119.12107262487656, 46.537064279697425],\n              [-119.1108612778305, 46.52693245554087],\n              [-119.1102992098052, 46.5261943770833],\n              [-119.10432255082237, 46.51680063138432],\n              [-119.10100117668479, 46.50666880722777],\n              [-119.1006299372161, 46.496536983071216],\n              [-119.1030917856313, 46.486405158914664],\n              [-119.1083560062849, 46.47627333475811],\n              [-119.1102992098052, 46.4735133512026],\n              [-119.11589716100421, 46.46614151060156],\n              [-119.12281627441956, 46.45600968644501],\n              [-119.12400433782886, 46.45239843682699],\n              [-119.1258900474509, 46.445877862288455],\n              [-119.12674105787187, 46.4357460381319],\n              [-119.1291789463678, 46.42561421397535],\n              [-119.13534466310182, 46.4154823898188],\n              [-119.13770946585252, 46.41358461401899],\n              [-119.14884236537834, 46.405350565662246],\n              [-119.15141459387618, 46.40420818080315],\n              [-119.16511972189984, 46.40026711119237],\n              [-119.1788248499235, 46.398945927953015],\n              [-119.19252997794716, 46.40045144356604],\n              [-119.20623510597082, 46.40463617402765],\n              [-119.2080189304618, 46.405350565662246],\n              [-119.21994023399448, 46.41428743586814],\n              [-119.22154668218575, 46.4154823898188],\n              [-119.22852300284677, 46.42561421397535],\n              [-119.23200530972086, 46.4357460381319],\n              [-119.23364536201814, 46.44273116668036],\n              [-119.2346274895638, 46.445877862288455],\n              [-119.23863171410474, 46.45600968644501],\n              [-119.24452349342492, 46.46614151060156],\n              [-119.2473504900418, 46.47091524077303],\n              [-119.250572867558, 46.47627333475811],\n              [-119.25549365988188, 46.486405158914664],\n              [-119.25896783962699, 46.496536983071216],\n              [-119.26105561806546, 46.50448046906965],\n              [-119.26178452703049, 46.50666880722777],\n              [-119.26577438509503, 46.51680063138432],\n              [-119.27410694090361, 46.52693245554087],\n              [-119.27476074608911, 46.527375037344925],\n              [-119.28846587411277, 46.53692861489282],\n              [-119.28864204091862, 46.537064279697425],\n              [-119.30217100213643, 46.54614910580203],\n              [-119.30344318144641, 46.54719610385398],\n              [-119.31495377554619, 46.55732792801053],\n              [-119.31587613016009, 46.558334720813406],\n              [-119.32312746314817, 46.56745975216708],\n              [-119.32829797784068, 46.577591576323634],\n              [-119.32958125818375, 46.58246159489228],\n              [-119.33100137484142, 46.587723400480186]\n            ],\n            [\n              [-115.69865031345786, 42.97066217659104],\n              [-115.70474827227991, 42.98079400074759],\n              [-115.70540226524878, 42.990925824904146],\n              [-115.70191280606109, 43.0010576490607],\n              [-115.6977223319141, 43.00696374573378],\n              [-115.69399068953697, 43.01118947321725],\n              [-115.68401720389043, 43.01908501288857],\n              [-115.6798573937691, 43.0213212973738],\n              [-115.67031207586678, 43.02600366102439],\n              [-115.65660694784312, 43.03022810398834],\n              [-115.64959727712036, 43.031453121530355],\n              [-115.64290181981946, 43.03272048239445],\n              [-115.6291966917958, 43.033920197949264],\n              [-115.61549156377214, 43.034145277158935],\n              [-115.60178643574848, 43.0338004417489],\n              [-115.58808130772482, 43.03324145832469],\n              [-115.57437617970116, 43.03262551123242],\n              [-115.5606710516775, 43.03183012367171],\n              [-115.55669486822805, 43.031453121530355],\n              [-115.54696592365384, 43.030597366837036],\n              [-115.53326079563018, 43.028636620442875],\n              [-115.51955566760653, 43.02559215503927],\n              [-115.50654790049012, 43.0213212973738],\n              [-115.50585053958287, 43.021095338591216],\n              [-115.4921454115592, 43.0149216827745],\n              [-115.48591377549826, 43.01118947321725],\n              [-115.47844028353555, 43.00612631440157],\n              [-115.47235524701279, 43.0010576490607],\n              [-115.46473515551189, 42.99299107391171],\n              [-115.46298844702513, 42.990925824904146],\n              [-115.45656422104831, 42.98079400074759],\n              [-115.45267969526918, 42.97066217659104],\n              [-115.45103002748823, 42.96086284404678],\n              [-115.45097008867873, 42.96053035243449],\n              [-115.45103002748823, 42.95867756992416],\n              [-115.45127037302942, 42.95039852827794],\n              [-115.45362606157595, 42.940266704121385],\n              [-115.4583909128919, 42.93013487996483],\n              [-115.46473515551189, 42.92172836937011],\n              [-115.4661474359369, 42.92000305580828],\n              [-115.47781609135279, 42.90987123165173],\n              [-115.47844028353555, 42.90943626614758],\n              [-115.4921454115592, 42.901829056051454],\n              [-115.49789081741898, 42.899739407495176],\n              [-115.50585053958287, 42.89706128833523],\n              [-115.51955566760653, 42.89459925731166],\n              [-115.53326079563018, 42.89431452727093],\n              [-115.54696592365384, 42.896333782717974],\n              [-115.55636195658423, 42.899739407495176],\n              [-115.5606710516775, 42.90115499123748],\n              [-115.57437617970116, 42.909697535821365],\n              [-115.5745519838756, 42.90987123165173],\n              [-115.5849701312228, 42.92000305580828],\n              [-115.58808130772482, 42.92319024533971],\n              [-115.59349173316076, 42.93013487996483],\n              [-115.60178643574848, 42.93939809277968],\n              [-115.60273431456746, 42.940266704121385],\n              [-115.61549156377214, 42.94698765340934],\n              [-115.6291966917958, 42.94871263723435],\n              [-115.64290181981946, 42.949806690961815],\n              [-115.6465950527906, 42.95039852827794],\n              [-115.65660694784312, 42.952173329729355],\n              [-115.67031207586678, 42.95572040903331],\n              [-115.68401720389043, 42.96028043406244],\n              [-115.68481812446879, 42.96053035243449],\n              [-115.6977223319141, 42.97004672920412],\n              [-115.69865031345786, 42.97066217659104]\n            ],\n            [\n              [-119.71822955946546, 46.87141447686365],\n              [-119.72351430001441, 46.8815463010202],\n              [-119.72605621668352, 46.89167812517675],\n              [-119.72617412117303, 46.901809949333305],\n              [-119.72375210989777, 46.91194177348986],\n              [-119.71812284000296, 46.92207359764641],\n              [-119.7133248428462, 46.92724477116954],\n              [-119.70872192318495, 46.93220542180296],\n              [-119.69961971482255, 46.9388321416381],\n              [-119.69424802347838, 46.942337245959514],\n              [-119.68591458679889, 46.94657781398509],\n              [-119.67220945877523, 46.952069592643966],\n              [-119.67097265226806, 46.95246907011607],\n              [-119.65850433075157, 46.95620709543105],\n              [-119.64479920272791, 46.95896750465276],\n              [-119.63109407470425, 46.96049783614691],\n              [-119.61738894668059, 46.96097723757672],\n              [-119.60368381865693, 46.96055041540475],\n              [-119.58997869063327, 46.95930452890363],\n              [-119.57627356260961, 46.957260881807116],\n              [-119.56256843458596, 46.954366130998956],\n              [-119.55536675209842, 46.95246907011607],\n              [-119.5488633065623, 46.95072251879603],\n              [-119.53515817853864, 46.9458442483375],\n              [-119.52760558392423, 46.942337245959514],\n              [-119.52145305051498, 46.93854805078301],\n              [-119.5130677760962, 46.93220542180296],\n              [-119.50774792249132, 46.92543509435213],\n              [-119.50526971275583, 46.92207359764641],\n              [-119.50104804687581, 46.91194177348986],\n              [-119.49954893452399, 46.901809949333305],\n              [-119.4998758674195, 46.89167812517675],\n              [-119.50171128715753, 46.8815463010202],\n              [-119.50506682395539, 46.87141447686365],\n              [-119.50774792249132, 46.86581669622562],\n              [-119.50990004399938, 46.8612826527071],\n              [-119.51665657134839, 46.851150828550544],\n              [-119.52145305051498, 46.84569325617478],\n              [-119.5263268963511, 46.84101900439399],\n              [-119.53515817853864, 46.834079094428255],\n              [-119.54061919428865, 46.83088718023744],\n              [-119.5488633065623, 46.826415381724466],\n              [-119.56256843458596, 46.82151013849836],\n              [-119.56595636993794, 46.82075535608089],\n              [-119.57627356260961, 46.81828080702192],\n              [-119.58997869063327, 46.81669140719908],\n              [-119.60368381865693, 46.81656774415909],\n              [-119.61738894668059, 46.817772777312285],\n              [-119.63109407470425, 46.820295277105835],\n              [-119.63278510242804, 46.82075535608089],\n              [-119.64479920272791, 46.823715283681],\n              [-119.65850433075157, 46.82849691971518],\n              [-119.66404267363659, 46.83088718023744],\n              [-119.67220945877523, 46.83454009057191],\n              [-119.68410751654086, 46.84101900439399],\n              [-119.68591458679889, 46.84215126919949],\n              [-119.69887038737299, 46.851150828550544],\n              [-119.69961971482255, 46.851821437231585],\n              [-119.71011159946012, 46.8612826527071],\n              [-119.7133248428462, 46.86548221747415],\n              [-119.71822955946546, 46.87141447686365]\n            ],\n            [\n              [-119.20651736417547, 46.28376867578362],\n              [-119.21494713592436, 46.29390049994017],\n              [-119.21888663694281, 46.304032324096724],\n              [-119.21966909031468, 46.314164148253276],\n              [-119.21771753844922, 46.32429597240983],\n              [-119.21257290160132, 46.33442779656638],\n              [-119.20623510597082, 46.341006665186995],\n              [-119.20343484319048, 46.34455962072293],\n              [-119.19252997794716, 46.35256539443583],\n              [-119.18996157202653, 46.354691444879485],\n              [-119.1788248499235, 46.36069222562544],\n              [-119.17121051179605, 46.36482326903604],\n              [-119.16511972189984, 46.367343526134064],\n              [-119.15141459387618, 46.37299573730383],\n              [-119.14627909632901, 46.37495509319259],\n              [-119.13770946585252, 46.37823839381351],\n              [-119.12400433782886, 46.382820262579116],\n              [-119.11516864224036, 46.38508691734914],\n              [-119.1102992098052, 46.38676579856239],\n              [-119.09659408178155, 46.390124313251945],\n              [-119.08288895375789, 46.39210449088688],\n              [-119.06918382573423, 46.392763035806],\n              [-119.05547869771057, 46.391946928641666],\n              [-119.04177356968691, 46.38921586735886],\n              [-119.0308031562245, 46.38508691734914],\n              [-119.02806844166325, 46.383874762419254],\n              [-119.01460463648716, 46.37495509319259],\n              [-119.01436331363959, 46.37472563294426],\n              [-119.00536888235322, 46.36482326903604],\n              [-119.00065818561593, 46.35517337273151],\n              [-119.00042007678496, 46.354691444879485],\n              [-118.9978072227763, 46.34455962072293],\n              [-118.99787951386132, 46.33442779656638],\n              [-119.00065818561593, 46.32488324580569],\n              [-119.00079725743431, 46.32429597240983],\n              [-119.0062084650114, 46.314164148253276],\n              [-119.01436331363959, 46.306173735920936],\n              [-119.01645441621537, 46.304032324096724],\n              [-119.02806844166325, 46.29649223683097],\n              [-119.03232909510696, 46.29390049994017],\n              [-119.04177356968691, 46.28950633138651],\n              [-119.05547869771057, 46.283952565499575],\n              [-119.05597347553488, 46.28376867578362],\n              [-119.06918382573423, 46.278835825872264],\n              [-119.08288895375789, 46.274597022038144],\n              [-119.08678835125683, 46.27363685162707],\n              [-119.09659408178155, 46.27053787443255],\n              [-119.1102992098052, 46.26724351465015],\n              [-119.12400433782886, 46.264975614526236],\n              [-119.13770946585252, 46.26373205572955],\n              [-119.15141459387618, 46.26361972271951],\n              [-119.16511972189984, 46.264911717811465],\n              [-119.1788248499235, 46.26809071092943],\n              [-119.19203654356116, 46.27363685162707],\n              [-119.19252997794716, 46.27389466480953],\n              [-119.20623510597082, 46.28352794366084],\n              [-119.20651736417547, 46.28376867578362]\n            ],\n            [\n              [-114.6754071585276, 42.73763022099034],\n              [-114.68084402142158, 42.74776204514689],\n              [-114.68032206747762, 42.757893869303444],\n              [-114.67456536819188, 42.76802569346],\n              [-114.66983773013966, 42.77386022002639],\n              [-114.66391192473634, 42.77815751761655],\n              [-114.656132602116, 42.78538671861156],\n              [-114.65270476544629, 42.7882893417731],\n              [-114.64242747409234, 42.79736221119483],\n              [-114.64106091255924, 42.79842116592965],\n              [-114.62872234606868, 42.80627410070958],\n              [-114.62294571467423, 42.808552990086206],\n              [-114.61501721804503, 42.8117838697774],\n              [-114.60131209002137, 42.814910837870194],\n              [-114.58760696199771, 42.81671987760703],\n              [-114.57850331086479, 42.81868481424276],\n              [-114.57390183397405, 42.820472178355146],\n              [-114.56605361458872, 42.82881663839931],\n              [-114.56019670595039, 42.83552906750955],\n              [-114.55803136239163, 42.83894846255586],\n              [-114.54804236187591, 42.849080286712415],\n              [-114.54649157792673, 42.85025229089967],\n              [-114.53278644990307, 42.85883559248218],\n              [-114.5318849099357, 42.85921211086897],\n              [-114.51908132187941, 42.86392297248886],\n              [-114.50537619385575, 42.8663218589844],\n              [-114.4916710658321, 42.86642859320919],\n              [-114.47796593780843, 42.864218284260396],\n              [-114.46442019552057, 42.85921211086897],\n              [-114.46426080978478, 42.859146361180066],\n              [-114.45055568176112, 42.84984444906864],\n              [-114.44973965279343, 42.849080286712415],\n              [-114.44197657322543, 42.83894846255586],\n              [-114.43832514256425, 42.82881663839931],\n              [-114.43804174125408, 42.81868481424276],\n              [-114.44101201214045, 42.808552990086206],\n              [-114.44791224277154, 42.79842116592965],\n              [-114.45055568176112, 42.795995007235376],\n              [-114.4608014508113, 42.7882893417731],\n              [-114.46426080978478, 42.78637484155087],\n              [-114.47796593780843, 42.78113268918405],\n              [-114.4916710658321, 42.77852182856578],\n              [-114.49975298115022, 42.77815751761655],\n              [-114.50537619385575, 42.777868945465585],\n              [-114.51159047292698, 42.77815751761655],\n              [-114.51908132187941, 42.77855510082506],\n              [-114.53278644990307, 42.77903557690195],\n              [-114.53565286534872, 42.77815751761655],\n              [-114.54649157792673, 42.77277909598936],\n              [-114.54936787591355, 42.76802569346],\n              [-114.55855547734683, 42.757893869303444],\n              [-114.56019670595039, 42.75675398353134],\n              [-114.5731399674765, 42.74776204514689],\n              [-114.57390183397405, 42.74740786620646],\n              [-114.58760696199771, 42.74243857964177],\n              [-114.60131209002137, 42.73923061183476],\n              [-114.60662081515453, 42.73763022099034],\n              [-114.61501721804503, 42.735405929991565],\n              [-114.62872234606868, 42.72966513166126],\n              [-114.63557710506491, 42.72749839683379],\n              [-114.64242747409234, 42.72636779658008],\n              [-114.656132602116, 42.7269878289298],\n              [-114.65779568572779, 42.72749839683379],\n              [-114.66983773013966, 42.73322293826863],\n              [-114.6754071585276, 42.73763022099034]\n            ],\n            [\n              [-119.52198673797385, 45.88862753367808],\n              [-119.52796984239684, 45.898759357834635],\n              [-119.53102582531943, 45.90889118199119],\n              [-119.53151051653774, 45.91902300614774],\n              [-119.52968085657031, 45.92915483030429],\n              [-119.52555967526774, 45.939286654460844],\n              [-119.52145305051498, 45.9454736056492],\n              [-119.5192791277206, 45.949418478617396],\n              [-119.51129274133892, 45.95955030277395],\n              [-119.50774792249132, 45.963360039773384],\n              [-119.50095160579707, 45.9696821269305],\n              [-119.49404279446766, 45.975849781436374],\n              [-119.48749217147954, 45.97981395108705],\n              [-119.480337666444, 45.984725534738374],\n              [-119.466766533474, 45.989945775243605],\n              [-119.46663253842034, 45.99001189193104],\n              [-119.45292741039668, 45.99314138636447],\n              [-119.43922228237302, 45.993225432278315],\n              [-119.42551715434936, 45.99038851250378],\n              [-119.42438986623073, 45.989945775243605],\n              [-119.4118120263257, 45.985200929066266],\n              [-119.40275582038421, 45.97981395108705],\n              [-119.39810689830205, 45.97674941936297],\n              [-119.38916830345248, 45.9696821269305],\n              [-119.38440177027839, 45.9649276747882],\n              [-119.37896913304607, 45.95955030277395],\n              [-119.37151004440781, 45.949418478617396],\n              [-119.37069664225473, 45.94776271014299],\n              [-119.36565781884259, 45.939286654460844],\n              [-119.36210491648102, 45.92915483030429],\n              [-119.3606386515469, 45.91902300614774],\n              [-119.36118856576408, 45.90889118199119],\n              [-119.36399222422867, 45.898759357834635],\n              [-119.3695660585756, 45.88862753367808],\n              [-119.37069664225473, 45.8871360043552],\n              [-119.37832117196137, 45.87849570952153],\n              [-119.38440177027839, 45.87340364075518],\n              [-119.39234022729359, 45.86836388536498],\n              [-119.39810689830205, 45.86516439860227],\n              [-119.4118120263257, 45.85992096988507],\n              [-119.41926157537277, 45.858232061208426],\n              [-119.42551715434936, 45.856759454495084],\n              [-119.43922228237302, 45.85525071992399],\n              [-119.45292741039668, 45.85542407983477],\n              [-119.46663253842034, 45.85729931403405],\n              [-119.47005099098823, 45.858232061208426],\n              [-119.480337666444, 45.86066701141747],\n              [-119.49404279446766, 45.86621000386913],\n              [-119.49766367823727, 45.86836388536498],\n              [-119.50774792249132, 45.87446084132791],\n              [-119.51243535425193, 45.87849570952153],\n              [-119.52145305051498, 45.88791027876347],\n              [-119.52198673797385, 45.88862753367808]\n            ],\n            [\n              [-114.19234259669732, 42.47420279291998],\n              [-114.19094967444937, 42.484334617076534],\n              [-114.1901582493116, 42.48560782976055],\n              [-114.18388661003908, 42.49446644123309],\n              [-114.17645312128793, 42.50266108788966],\n              [-114.17470398938855, 42.50459826538964],\n              [-114.16700594827194, 42.51473008954619],\n              [-114.16274799326428, 42.51821672246781],\n              [-114.1519341581101, 42.52486191370274],\n              [-114.14904286524062, 42.52621034442768],\n              [-114.13533773721696, 42.52798461072985],\n              [-114.1216326091933, 42.52602981276713],\n              [-114.11746828752177, 42.52486191370274],\n              [-114.10792748116964, 42.519180466806425],\n              [-114.1001695683569, 42.51473008954619],\n              [-114.09422235314598, 42.5080621276399],\n              [-114.08886253220062, 42.50459826538964],\n              [-114.08051722512232, 42.498332883087365],\n              [-114.07129396803965, 42.49446644123309],\n              [-114.06681209709866, 42.49278791833002],\n              [-114.053106969075, 42.488261734625496],\n              [-114.0425321922702, 42.484334617076534],\n              [-114.03940184105134, 42.48291906671911],\n              [-114.02569671302768, 42.475712702616065],\n              [-114.02290642193726, 42.47420279291998],\n              [-114.01292381681989, 42.46407096876343],\n              [-114.01199158500403, 42.46189984052614],\n              [-114.00773470873581, 42.45393914460688],\n              [-114.00684735279653, 42.443807320450325],\n              [-114.00924416056624, 42.43367549629377],\n              [-114.01199158500403, 42.428997012630724],\n              [-114.01430930388207, 42.42354367213722],\n              [-114.02270130676342, 42.41341184798067],\n              [-114.02569671302768, 42.411085436591236],\n              [-114.03632130252937, 42.40328002382412],\n              [-114.03940184105134, 42.40166217193376],\n              [-114.053106969075, 42.395892909691796],\n              [-114.06467932406446, 42.393148199667564],\n              [-114.06681209709866, 42.39269085928237],\n              [-114.08051722512232, 42.39149625228385],\n              [-114.09422235314598, 42.39240109007032],\n              [-114.09743329162798, 42.393148199667564],\n              [-114.10792748116964, 42.395322217762704],\n              [-114.1216326091933, 42.400871744915825],\n              [-114.12556532543834, 42.40328002382412],\n              [-114.13533773721696, 42.41006652894923],\n              [-114.13906207916656, 42.41341184798067],\n              [-114.14809697459667, 42.42354367213722],\n              [-114.14904286524062, 42.42488348890542],\n              [-114.15601779300825, 42.43367549629377],\n              [-114.16274799326428, 42.43996725377015],\n              [-114.16681684015722, 42.443807320450325],\n              [-114.17645312128793, 42.45007252063551],\n              [-114.18020679623451, 42.45393914460688],\n              [-114.18898546757872, 42.46407096876343],\n              [-114.1901582493116, 42.46674381055032],\n              [-114.19234259669732, 42.47420279291998]\n            ],\n            [\n              [-118.82320378890073, 46.212845906687754],\n              [-118.82951521411147, 46.222977730844306],\n              [-118.8325791685314, 46.23310955500086],\n              [-118.83294148364119, 46.24324137915741],\n              [-118.83072022960346, 46.25337320331396],\n              [-118.8255196702342, 46.263505027470515],\n              [-118.82249152130836, 46.26766771077412],\n              [-118.8160945065367, 46.27363685162707],\n              [-118.8087863932847, 46.27900381616626],\n              [-118.79508126526105, 46.28179819698006],\n              [-118.78137613723739, 46.28125752012723],\n              [-118.76767100921373, 46.279167488938576],\n              [-118.75396588119007, 46.27583084443901],\n              [-118.74776487444937, 46.27363685162707],\n              [-118.74026075316641, 46.27125601090615],\n              [-118.72655562514275, 46.26561871463291],\n              [-118.72158083280944, 46.263505027470515],\n              [-118.71285049711909, 46.25777827821854],\n              [-118.70542211633946, 46.25337320331396],\n              [-118.69914536909543, 46.24628114217386],\n              [-118.69578849893895, 46.24324137915741],\n              [-118.69088717430486, 46.23310955500086],\n              [-118.69024887347939, 46.222977730844306],\n              [-118.69366443069215, 46.212845906687754],\n              [-118.69914536909543, 46.20563859527237],\n              [-118.70193880367417, 46.2027140825312],\n              [-118.71285049711909, 46.19499794462908],\n              [-118.71804500005098, 46.19258225837465],\n              [-118.72655562514275, 46.18914550458026],\n              [-118.74026075316641, 46.185956409232375],\n              [-118.75396588119007, 46.184808560913346],\n              [-118.76767100921373, 46.185431903987215],\n              [-118.78137613723739, 46.18788313079603],\n              [-118.79508126526105, 46.19251853598447],\n              [-118.79521519549566, 46.19258225837465],\n              [-118.8087863932847, 46.199812603114914],\n              [-118.81277371140655, 46.2027140825312],\n              [-118.82249152130836, 46.2120406758941],\n              [-118.82320378890073, 46.212845906687754]\n            ],\n            [\n              [-118.86919057387004, 46.33442779656638],\n              [-118.87194738110858, 46.34455962072293],\n              [-118.8718259954862, 46.354691444879485],\n              [-118.86877728037545, 46.36482326903604],\n              [-118.86360690537934, 46.3733431432168],\n              [-118.86237539848379, 46.37495509319259],\n              [-118.85095584140262, 46.38508691734914],\n              [-118.84990177735568, 46.38585173483328],\n              [-118.83619664933202, 46.39265588481236],\n              [-118.82666529678893, 46.395218741505694],\n              [-118.82249152130836, 46.39636513292292],\n              [-118.8087863932847, 46.39775079398662],\n              [-118.79508126526105, 46.39683631083105],\n              [-118.78835160297373, 46.395218741505694],\n              [-118.78137613723739, 46.39341046581431],\n              [-118.76767100921373, 46.38625338069236],\n              [-118.76617422919874, 46.38508691734914],\n              [-118.75748085555205, 46.37495509319259],\n              [-118.75432058454523, 46.36482326903604],\n              [-118.75507902796296, 46.354691444879485],\n              [-118.75898681061643, 46.34455962072293],\n              [-118.76563622290442, 46.33442779656638],\n              [-118.76767100921373, 46.331957803687565],\n              [-118.77511481820301, 46.32429597240983],\n              [-118.78137613723739, 46.31784783873638],\n              [-118.78727286656975, 46.314164148253276],\n              [-118.79508126526105, 46.307496725030504],\n              [-118.80498100872835, 46.304032324096724],\n              [-118.8087863932847, 46.30132239520588],\n              [-118.82249152130836, 46.3005089197161],\n              [-118.83314660295486, 46.304032324096724],\n              [-118.83619664933202, 46.30464240067634],\n              [-118.84990177735568, 46.31157627205566],\n              [-118.85288079118818, 46.314164148253276],\n              [-118.86337950795387, 46.32429597240983],\n              [-118.86360690537934, 46.32460199456934],\n              [-118.86919057387004, 46.33442779656638]\n            ],\n            [\n              [-119.80952690107762, 45.898759357834635],\n              [-119.80976026823446, 45.90889118199119],\n              [-119.80926073901182, 45.9122474294388],\n              [-119.80768221957025, 45.91902300614774],\n              [-119.80239387819864, 45.92915483030429],\n              [-119.79555561098816, 45.93696498523033],\n              [-119.79158652524883, 45.939286654460844],\n              [-119.7818504829645, 45.94458124452079],\n              [-119.76814535494084, 45.9476527483273],\n              [-119.75444022691718, 45.947909037899535],\n              [-119.74073509889352, 45.94567132002085],\n              [-119.72702997086986, 45.94039975228642],\n              [-119.72513333577305, 45.939286654460844],\n              [-119.7133248428462, 45.930825735526504],\n              [-119.71162974213242, 45.92915483030429],\n              [-119.70409100060746, 45.91902300614774],\n              [-119.70006888464559, 45.90889118199119],\n              [-119.69961971482255, 45.9052957711407],\n              [-119.69883331038196, 45.898759357834635],\n              [-119.69961971482255, 45.893041686437996],\n              [-119.70024134455187, 45.88862753367808],\n              [-119.70459818423357, 45.87849570952153],\n              [-119.7125663226626, 45.86836388536498],\n              [-119.7133248428462, 45.86764590172117],\n              [-119.72702997086986, 45.8583195813722],\n              [-119.72724437867065, 45.858232061208426],\n              [-119.74073509889352, 45.85337418140954],\n              [-119.75444022691718, 45.851589482020906],\n              [-119.76814535494084, 45.852681334421106],\n              [-119.7818504829645, 45.85739785426186],\n              [-119.7830338171326, 45.858232061208426],\n              [-119.79555561098816, 45.86740565582375],\n              [-119.79625101157922, 45.86836388536498],\n              [-119.80281915314738, 45.87849570952153],\n              [-119.80716978081553, 45.88862753367808],\n              [-119.80926073901182, 45.8973569128517],\n              [-119.80952690107762, 45.898759357834635]\n            ],\n            [\n              [-119.81388898284207, 47.13484190493401],\n              [-119.8204603422537, 47.14497372909056],\n              [-119.8197791084352, 47.15510555324711],\n              [-119.81580152113581, 47.16523737740366],\n              [-119.80962562669899, 47.175369201560216],\n              [-119.80926073901182, 47.17592820013667],\n              [-119.80510033559575, 47.18550102571677],\n              [-119.80106790917985, 47.19563284987332],\n              [-119.79694327798596, 47.20576467402987],\n              [-119.79555561098816, 47.20934463177412],\n              [-119.79069854177708, 47.215896498186424],\n              [-119.7818504829645, 47.224707374878506],\n              [-119.7781477285629, 47.22602832234298],\n              [-119.76814535494084, 47.23015682072424],\n              [-119.75444022691718, 47.230814680632975],\n              [-119.74073509889352, 47.227483312841144],\n              [-119.73807602443807, 47.22602832234298],\n              [-119.72702997086986, 47.21972824253055],\n              [-119.72333242077134, 47.215896498186424],\n              [-119.71635995934915, 47.20576467402987],\n              [-119.7133248428462, 47.19613891187583],\n              [-119.71319490958037, 47.19563284987332],\n              [-119.71229585558463, 47.18550102571677],\n              [-119.71331527315763, 47.175369201560216],\n              [-119.7133248428462, 47.17533526722638],\n              [-119.71567497816068, 47.16523737740366],\n              [-119.72051634809847, 47.15510555324711],\n              [-119.72702997086986, 47.14768561270635],\n              [-119.73000020938497, 47.14497372909056],\n              [-119.74073509889352, 47.137803596393624],\n              [-119.74765910400892, 47.13484190493401],\n              [-119.75444022691718, 47.13188599984463],\n              [-119.76814535494084, 47.12824938957753],\n              [-119.7818504829645, 47.12677246415643],\n              [-119.79555561098816, 47.127528806146074],\n              [-119.80926073901182, 47.13191014424262],\n              [-119.81388898284207, 47.13484190493401]\n            ],\n            [\n              [-115.28960913767195, 42.92000305580828],\n              [-115.29654150395145, 42.93013487996483],\n              [-115.2993854971193, 42.940266704121385],\n              [-115.29903006968024, 42.95039852827794],\n              [-115.29532390044983, 42.96053035243449],\n              [-115.286931023576, 42.97066217659104],\n              [-115.28656849120432, 42.97094983585128],\n              [-115.27286336318066, 42.979780628657686],\n              [-115.27040030822411, 42.98079400074759],\n              [-115.259158235157, 42.98433081069949],\n              [-115.24545310713334, 42.9858775385351],\n              [-115.23174797910968, 42.98470354337131],\n              [-115.21957527360846, 42.98079400074759],\n              [-115.21804285108603, 42.98035862961229],\n              [-115.20433772306237, 42.97172859902917],\n              [-115.20342399212261, 42.97066217659104],\n              [-115.1958691652098, 42.96053035243449],\n              [-115.19106745361485, 42.95039852827794],\n              [-115.19063259503871, 42.94684191335961],\n              [-115.1900890051021, 42.940266704121385],\n              [-115.19063259503871, 42.9367344718118],\n              [-115.19235234188196, 42.93013487996483],\n              [-115.19846228596387, 42.92000305580828],\n              [-115.20433772306237, 42.91331044760238],\n              [-115.21016932331915, 42.90987123165173],\n              [-115.21804285108603, 42.9053665770045],\n              [-115.23174797910968, 42.90180443122036],\n              [-115.24545310713334, 42.90112925572532],\n              [-115.259158235157, 42.903067891760706],\n              [-115.27286336318066, 42.90794184645064],\n              [-115.27655914081821, 42.90987123165173],\n              [-115.28656849120432, 42.91728607794983],\n              [-115.28960913767195, 42.92000305580828]\n            ],\n            [\n              [-119.79770707100339, 46.69917346620226],\n              [-119.8042468392743, 46.70930529035881],\n              [-119.80773835713786, 46.719437114515365],\n              [-119.80844945794264, 46.72956893867192],\n              [-119.80609790621041, 46.73970076282847],\n              [-119.79967413960044, 46.74983258698502],\n              [-119.79555561098816, 46.75370840012432],\n              [-119.78393779165764, 46.759964411141574],\n              [-119.7818504829645, 46.76084828109439],\n              [-119.76814535494084, 46.76360597598368],\n              [-119.75444022691718, 46.76358819519753],\n              [-119.74073509889352, 46.7611483253934],\n              [-119.73726329385084, 46.759964411141574],\n              [-119.72702997086986, 46.75571873559882],\n              [-119.71747284710708, 46.74983258698502],\n              [-119.7133248428462, 46.74602690619728],\n              [-119.7075121156021, 46.73970076282847],\n              [-119.70253183029958, 46.72956893867192],\n              [-119.7013782140353, 46.719437114515365],\n              [-119.70393272671971, 46.70930529035881],\n              [-119.7107869195035, 46.69917346620226],\n              [-119.7133248428462, 46.696742697764634],\n              [-119.72480912432832, 46.68904164204571],\n              [-119.72702997086986, 46.687859932772284],\n              [-119.74073509889352, 46.68339922121535],\n              [-119.75444022691718, 46.68191114168961],\n              [-119.76814535494084, 46.68306568321488],\n              [-119.7818504829645, 46.687427146369316],\n              [-119.784464438647, 46.68904164204571],\n              [-119.79555561098816, 46.696647398873466],\n              [-119.79770707100339, 46.69917346620226]\n            ],\n            [\n              [-116.1525245166627, 42.96053035243449],\n              [-116.15653832208801, 42.97066217659104],\n              [-116.15672857570067, 42.98079400074759],\n              [-116.15324761164116, 42.990925824904146],\n              [-116.14999155669484, 42.995409302514226],\n              [-116.14527525320372, 43.0010576490607],\n              [-116.13628642867118, 43.0076001844766],\n              [-116.12864424240999, 43.01118947321725],\n              [-116.12258130064752, 43.013433109016894],\n              [-116.10887617262387, 43.01567446630763],\n              [-116.0951710446002, 43.01482077197076],\n              [-116.08452716222556, 43.01118947321725],\n              [-116.08146591657655, 43.01024374740555],\n              [-116.06962666779528, 43.0010576490607],\n              [-116.06776078855289, 42.999277076961995],\n              [-116.0635884724299, 42.990925824904146],\n              [-116.06179589674483, 42.98079400074759],\n              [-116.06327360349424, 42.97066217659104],\n              [-116.06753791040222, 42.96053035243449],\n              [-116.06776078855289, 42.96012671269586],\n              [-116.07824500290663, 42.95039852827794],\n              [-116.08146591657655, 42.947330756823604],\n              [-116.0951710446002, 42.941587100465185],\n              [-116.10501229036306, 42.940266704121385],\n              [-116.10887617262387, 42.93956798503197],\n              [-116.11672884985596, 42.940266704121385],\n              [-116.12258130064752, 42.94085020318215],\n              [-116.13628642867118, 42.94585515117262],\n              [-116.14336752636886, 42.95039852827794],\n              [-116.14999155669484, 42.95735004486889],\n              [-116.1525245166627, 42.96053035243449]\n            ],\n            [\n              [-119.37426807234291, 46.93220542180296],\n              [-119.3758994825046, 46.942337245959514],\n              [-119.37182637507536, 46.95246907011607],\n              [-119.37069664225473, 46.95386184880706],\n              [-119.36080754365874, 46.96260089427262],\n              [-119.35699151423107, 46.96502241049267],\n              [-119.34328638620741, 46.97020540699658],\n              [-119.32958125818375, 46.972195680580654],\n              [-119.31587613016009, 46.972057442745104],\n              [-119.30217100213643, 46.96975436163782],\n              [-119.28846587411277, 46.96432803075368],\n              [-119.28550461047222, 46.96260089427262],\n              [-119.27476074608911, 46.95392607436571],\n              [-119.27330737918909, 46.95246907011607],\n              [-119.2673248901495, 46.942337245959514],\n              [-119.26633493107667, 46.93220542180296],\n              [-119.27014240491097, 46.92207359764641],\n              [-119.27476074608911, 46.91771585944957],\n              [-119.28066941553358, 46.91194177348986],\n              [-119.28846587411277, 46.90835545424265],\n              [-119.30217100213643, 46.904467780586536],\n              [-119.31587613016009, 46.903521093047964],\n              [-119.32958125818375, 46.90498765988595],\n              [-119.34328638620741, 46.90868747747235],\n              [-119.35158845010052, 46.91194177348986],\n              [-119.35699151423107, 46.91555837506191],\n              [-119.36700285268249, 46.92207359764641],\n              [-119.37069664225473, 46.92822647750051],\n              [-119.37426807234291, 46.93220542180296]\n            ],\n            [\n              [-114.25252686644069, 42.54512556201585],\n              [-114.25466607903736, 42.5552573861724],\n              [-114.25368149531975, 42.56538921032895],\n              [-114.24934617198836, 42.575521034485504],\n              [-114.24497876140623, 42.58107112908261],\n              [-114.24045423558599, 42.58565285864206],\n              [-114.23127363338257, 42.59206069515737],\n              [-114.22000801598543, 42.59578468279861],\n              [-114.21756850535891, 42.59662133587991],\n              [-114.20386337733525, 42.59802219174787],\n              [-114.19024492932499, 42.59578468279861],\n              [-114.1901582493116, 42.59577421229065],\n              [-114.17645312128793, 42.590286049427114],\n              [-114.17082398436708, 42.58565285864206],\n              [-114.16301500767422, 42.575521034485504],\n              [-114.16274799326428, 42.574617434056165],\n              [-114.16038922181114, 42.56538921032895],\n              [-114.16267046757666, 42.5552573861724],\n              [-114.16274799326428, 42.555167316967044],\n              [-114.16850660562372, 42.54512556201585],\n              [-114.17645312128793, 42.53852437122962],\n              [-114.1813590476809, 42.534993737859295],\n              [-114.1901582493116, 42.529874839483455],\n              [-114.20386337733525, 42.52601517699979],\n              [-114.21756850535891, 42.525210558942646],\n              [-114.23127363338257, 42.52748559713975],\n              [-114.24456862951384, 42.534993737859295],\n              [-114.24497876140623, 42.53550753730769],\n              [-114.25252686644069, 42.54512556201585]\n            ],\n            [\n              [-119.0694098540011, 46.2027140825312],\n              [-119.07442853976066, 46.212845906687754],\n              [-119.07483721697521, 46.222977730844306],\n              [-119.07072333818563, 46.23310955500086],\n              [-119.06918382573423, 46.23470981282989],\n              [-119.06010762052745, 46.24324137915741],\n              [-119.05547869771057, 46.24582061441459],\n              [-119.04177356968691, 46.251287560093914],\n              [-119.0309274481411, 46.25337320331396],\n              [-119.02806844166325, 46.25379069717523],\n              [-119.01436331363959, 46.25354154857322],\n              [-119.01325065725123, 46.25337320331396],\n              [-119.00065818561593, 46.25028802645847],\n              [-118.98695305759227, 46.24410778251529],\n              [-118.9853538129152, 46.24324137915741],\n              [-118.97537615289072, 46.23310955500086],\n              [-118.97324792956861, 46.22725797318208],\n              [-118.97141153588778, 46.222977730844306],\n              [-118.97214466033554, 46.212845906687754],\n              [-118.97324792956861, 46.210659069781485],\n              [-118.9776031370853, 46.2027140825312],\n              [-118.98695305759227, 46.1945556542409],\n              [-118.99023931102542, 46.19258225837465],\n              [-119.00065818561593, 46.18790925710291],\n              [-119.01436331363959, 46.18486380880579],\n              [-119.02806844166325, 46.18442041248771],\n              [-119.04177356968691, 46.186446217660034],\n              [-119.05547869771057, 46.19160571310298],\n              [-119.0570259373315, 46.19258225837465],\n              [-119.06918382573423, 46.20243744558507],\n              [-119.0694098540011, 46.2027140825312]\n            ],\n            [\n              [-116.91979099857913, 43.629230746766936],\n              [-116.92011287463305, 43.63936257092349],\n              [-116.91747872601975, 43.64250943466732],\n              [-116.9073866519389, 43.64949439508004],\n              [-116.90377359799609, 43.65094704354287],\n              [-116.89006846997243, 43.65070806930271],\n              [-116.88663535666916, 43.64949439508004],\n              [-116.87636334194877, 43.64234851622635],\n              [-116.87236121191417, 43.63936257092349],\n              [-116.86474375027372, 43.629230746766936],\n              [-116.86265821392512, 43.62831003419995],\n              [-116.84895308590146, 43.62801392124203],\n              [-116.8352479578778, 43.62586590205887],\n              [-116.82154282985414, 43.623205695492835],\n              [-116.81189458215535, 43.629230746766936],\n              [-116.80783770183048, 43.630645286715804],\n              [-116.79413257380682, 43.63495342241168],\n              [-116.78042744578316, 43.634165839286034],\n              [-116.77112921482245, 43.629230746766936],\n              [-116.7667223177595, 43.62295852717475],\n              [-116.76512213059915, 43.619098922610384],\n              [-116.7667223177595, 43.61578988817778],\n              [-116.76990342896437, 43.60896709845383],\n              [-116.78042744578316, 43.60054363050152],\n              [-116.7884685896865, 43.59883527429728],\n              [-116.79413257380682, 43.59716826177433],\n              [-116.80783770183048, 43.59849777264979],\n              [-116.82154282985414, 43.595355206763635],\n              [-116.83165022227885, 43.58870345014073],\n              [-116.8352479578778, 43.58727318786356],\n              [-116.84895308590146, 43.58475252547099],\n              [-116.86265821392512, 43.58718230467157],\n              [-116.86567770529047, 43.58870345014073],\n              [-116.87636334194877, 43.597446283416986],\n              [-116.87773425682845, 43.59883527429728],\n              [-116.88271658602797, 43.60896709845383],\n              [-116.89006846997243, 43.614359105069276],\n              [-116.90377359799609, 43.61703437030588],\n              [-116.90734739827474, 43.619098922610384],\n              [-116.91747872601975, 43.62605712514941],\n              [-116.91979099857913, 43.629230746766936]\n            ],\n            [\n              [-119.63749948223938, 45.97981395108705],\n              [-119.6401640321529, 45.989945775243605],\n              [-119.63849887655938, 46.00007759940016],\n              [-119.63200960728108, 46.01020942355671],\n              [-119.63109407470425, 46.011047319981536],\n              [-119.61843596242562, 46.02034124771326],\n              [-119.61738894668059, 46.02087182101205],\n              [-119.60368381865693, 46.025647559408654],\n              [-119.58997869063327, 46.027424900179284],\n              [-119.57627356260961, 46.02657443634523],\n              [-119.56256843458596, 46.022749487043896],\n              [-119.55837670665511, 46.02034124771326],\n              [-119.5488633065623, 46.014214928377775],\n              [-119.54543468277234, 46.01020942355671],\n              [-119.54022722486098, 46.00007759940016],\n              [-119.53966647347282, 45.989945775243605],\n              [-119.54361867458162, 45.97981395108705],\n              [-119.5488633065623, 45.97314266418874],\n              [-119.55298039187768, 45.9696821269305],\n              [-119.56256843458596, 45.963725146034385],\n              [-119.57457886021948, 45.95955030277395],\n              [-119.57627356260961, 45.9589631390652],\n              [-119.58997869063327, 45.95750821611395],\n              [-119.60368381865693, 45.95861260316237],\n              [-119.60774169684235, 45.95955030277395],\n              [-119.61738894668059, 45.96294142489826],\n              [-119.62900655081093, 45.9696821269305],\n              [-119.63109407470425, 45.97209123937002],\n              [-119.63749948223938, 45.97981395108705]\n            ],\n            [\n              [-115.98848877152722, 42.87947575918207],\n              [-115.99476189033571, 42.88960758333862],\n              [-115.99596118763158, 42.899739407495176],\n              [-115.99280449700314, 42.90987123165173],\n              [-115.98553002041093, 42.91865302337168],\n              [-115.98447647685184, 42.92000305580828],\n              [-115.97182489238727, 42.92789235428828],\n              [-115.96637349634861, 42.93013487996483],\n              [-115.95811976436362, 42.93287179084623],\n              [-115.94441463633996, 42.9344746000338],\n              [-115.9307095083163, 42.93321612889193],\n              [-115.92036495471454, 42.93013487996483],\n              [-115.91700438029264, 42.928182754800446],\n              [-115.90611306021752, 42.92000305580828],\n              [-115.90329925226898, 42.914649513192614],\n              [-115.90050207619001, 42.90987123165173],\n              [-115.89958356751085, 42.899739407495176],\n              [-115.90293937704317, 42.88960758333862],\n              [-115.90329925226898, 42.88907510721651],\n              [-115.91100051388324, 42.87947575918207],\n              [-115.91700438029264, 42.87484963909873],\n              [-115.92840609750611, 42.86934393502552],\n              [-115.9307095083163, 42.86839353142684],\n              [-115.94441463633996, 42.86549332607854],\n              [-115.95811976436362, 42.865573882894374],\n              [-115.97182489238727, 42.86886468176215],\n              [-115.97278867872441, 42.86934393502552],\n              [-115.98553002041093, 42.876493408727875],\n              [-115.98848877152722, 42.87947575918207]\n            ],\n            [\n              [-114.39745481344721, 42.47420279291998],\n              [-114.40352343050343, 42.484334617076534],\n              [-114.40551489661038, 42.49446644123309],\n              [-114.40197833162159, 42.50459826538964],\n              [-114.39573516966648, 42.509572837743846],\n              [-114.38981755691887, 42.51473008954619],\n              [-114.38203004164282, 42.51757144231718],\n              [-114.36832491361916, 42.52043946363399],\n              [-114.3546197855955, 42.520308104596616],\n              [-114.34091465757184, 42.51708693217103],\n              [-114.3346344728282, 42.51473008954619],\n              [-114.32720952954818, 42.50942067408749],\n              [-114.32078568752375, 42.50459826538964],\n              [-114.31724979957939, 42.49446644123309],\n              [-114.31946616555317, 42.484334617076534],\n              [-114.3270628142764, 42.47420279291998],\n              [-114.32720952954818, 42.47404772736523],\n              [-114.34091465757184, 42.4653861627277],\n              [-114.34705265574587, 42.46407096876343],\n              [-114.3546197855955, 42.46192967923083],\n              [-114.36832491361916, 42.461905759247756],\n              [-114.38103836878504, 42.46407096876343],\n              [-114.38203004164282, 42.464616013975544],\n              [-114.39573516966648, 42.4724137271096],\n              [-114.39745481344721, 42.47420279291998]\n            ],\n            [\n              [-119.71480986821824, 47.06391913583814],\n              [-119.71810774335665, 47.07405095999469],\n              [-119.71527832754181, 47.084182784151245],\n              [-119.7133248428462, 47.08633029847885],\n              [-119.70431706072739, 47.0943146083078],\n              [-119.69961971482255, 47.09671807106793],\n              [-119.68591458679889, 47.10050581583324],\n              [-119.67220945877523, 47.100774096810824],\n              [-119.65850433075157, 47.097493924939954],\n              [-119.652059742916, 47.0943146083078],\n              [-119.64479920272791, 47.08740772987774],\n              [-119.64216933471022, 47.084182784151245],\n              [-119.64058970122774, 47.07405095999469],\n              [-119.64479920272791, 47.064870721556055],\n              [-119.645337448137, 47.06391913583814],\n              [-119.65850433075157, 47.054150416215634],\n              [-119.65950158689054, 47.05378731168159],\n              [-119.67220945877523, 47.050121228266384],\n              [-119.68591458679889, 47.049675571398325],\n              [-119.69961971482255, 47.05274421996783],\n              [-119.70182428439684, 47.05378731168159],\n              [-119.7133248428462, 47.06222545595011],\n              [-119.71480986821824, 47.06391913583814]\n            ],\n            [\n              [-116.70435596655818, 43.42659426363589],\n              [-116.70518131108057, 43.436726087792444],\n              [-116.70020432284993, 43.446857911948996],\n              [-116.6981966776412, 43.44881723932635],\n              [-116.68587320376314, 43.45698973610555],\n              [-116.68449154961755, 43.45765609363487],\n              [-116.67078642159389, 43.46061834642083],\n              [-116.65708129357023, 43.459538298314584],\n              [-116.65047807177724, 43.45698973610555],\n              [-116.64337616554657, 43.45290312446669],\n              [-116.63780742604493, 43.446857911948996],\n              [-116.63588882081916, 43.436726087792444],\n              [-116.64086308109592, 43.42659426363589],\n              [-116.64337616554657, 43.42448408910138],\n              [-116.65400020631242, 43.41646243947934],\n              [-116.65708129357023, 43.4144569508934],\n              [-116.67078642159389, 43.41040137030042],\n              [-116.68449154961755, 43.41107730755123],\n              [-116.69630058642706, 43.41646243947934],\n              [-116.6981966776412, 43.41813859648113],\n              [-116.70435596655818, 43.42659426363589]\n            ],\n            [\n              [-119.39813626530923, 46.87141447686365],\n              [-119.39810689830205, 46.87150916720026],\n              [-119.39491283910625, 46.8815463010202],\n              [-119.38440177027839, 46.88863913605449],\n              [-119.37378169502863, 46.89167812517675],\n              [-119.37069664225473, 46.89206443339062],\n              [-119.36712308989274, 46.89167812517675],\n              [-119.35699151423107, 46.88994523726026],\n              [-119.34328638620741, 46.88274902369716],\n              [-119.34145086205854, 46.8815463010202],\n              [-119.3370696256059, 46.87141447686365],\n              [-119.34060727241972, 46.8612826527071],\n              [-119.34328638620741, 46.85846969942566],\n              [-119.35699151423107, 46.851825871997484],\n              [-119.367269713474, 46.851150828550544],\n              [-119.37069664225473, 46.850918240983546],\n              [-119.37165143769445, 46.851150828550544],\n              [-119.38440177027839, 46.85471856778873],\n              [-119.39320805511109, 46.8612826527071],\n              [-119.39810689830205, 46.871331715844306],\n              [-119.39813626530923, 46.87141447686365]\n            ],\n            [\n              [-117.04082487823268, 43.87016729713071],\n              [-117.04596213286045, 43.87239452652419],\n              [-117.05357610415177, 43.88252635068074],\n              [-117.05049536930119, 43.892658174837294],\n              [-117.04082487823268, 43.90018262651614],\n              [-117.02711975020902, 43.901499117695664],\n              [-117.01341462218537, 43.895703390937186],\n              [-117.01056858687421, 43.892658174837294],\n              [-117.00772110014772, 43.88252635068074],\n              [-117.01341462218537, 43.87591532043887],\n              [-117.01642617479828, 43.87239452652419],\n              [-117.02711975020902, 43.86901154136752],\n              [-117.04082487823268, 43.87016729713071]\n            ],\n            [\n              [-119.15208878699812, 47.15510555324711],\n              [-119.15141459387618, 47.156256444823576],\n              [-119.14275108776408, 47.16523737740366],\n              [-119.13770946585252, 47.16778736988145],\n              [-119.12400433782886, 47.169188605555675],\n              [-119.113974248409, 47.16523737740366],\n              [-119.1102992098052, 47.16342940824575],\n              [-119.10571069330565, 47.15510555324711],\n              [-119.10893159728488, 47.14497372909056],\n              [-119.1102992098052, 47.144082287594415],\n              [-119.12400433782886, 47.13760582477401],\n              [-119.13770946585252, 47.1379189753955],\n              [-119.15008794800421, 47.14497372909056],\n              [-119.15141459387618, 47.152043944840976],\n              [-119.15208878699812, 47.15510555324711]\n            ],\n            [\n              [-114.54924106784439, 42.59578468279861],\n              [-114.54649157792673, 42.602871327588375],\n              [-114.53905386720075, 42.60591650695516],\n              [-114.53278644990307, 42.60813127713039],\n              [-114.52681977190755, 42.60591650695516],\n              [-114.51988324649038, 42.59578468279861],\n              [-114.52961584539119, 42.58565285864206],\n              [-114.53278644990307, 42.5843921218424],\n              [-114.53765489110998, 42.58565285864206],\n              [-114.54649157792673, 42.588015489009045],\n              [-114.54924106784439, 42.59578468279861]\n            ],\n            [\n              [-117.01565680044743, 43.73054898833246],\n              [-117.01341462218537, 43.73303148147697],\n              [-117.0020559164116, 43.74068081248901],\n              [-116.9997094941617, 43.741886484381425],\n              [-116.98600436613805, 43.742819203501895],\n              [-116.98258119065355, 43.74068081248901],\n              [-116.98600436613805, 43.7318253418769],\n              [-116.98766106698761, 43.73054898833246],\n              [-116.9997094941617, 43.723943070939185],\n              [-117.01341462218537, 43.72518343823455],\n              [-117.01565680044743, 43.73054898833246]\n            ],\n            [\n              [-117.03206776048202, 43.983844592246264],\n              [-117.02711975020902, 43.991385491861095],\n              [-117.02033710584654, 43.993976416402816],\n              [-117.01341462218537, 43.99625727851077],\n              [-116.9997094941617, 43.99634083435541],\n              [-116.99679720215113, 43.993976416402816],\n              [-116.99656424100576, 43.983844592246264],\n              [-116.9997094941617, 43.98304879284017],\n              [-117.01341462218537, 43.98302262883379],\n              [-117.02711975020902, 43.9814286632918],\n              [-117.03206776048202, 43.983844592246264]\n            ],\n            [\n              [-117.10935051835098, 43.76434731869599],\n              [-117.11046016516616, 43.77107628495867],\n              [-117.10935051835098, 43.77251286353452],\n              [-117.10221391453635, 43.77107628495867],\n              [-117.09564539032732, 43.767867135681634],\n              [-117.08895199149971, 43.760944460802115],\n              [-117.09119260837323, 43.75081263664556],\n              [-117.09564539032732, 43.74525859685289],\n              [-117.10721084426426, 43.75081263664556],\n              [-117.1065683900647, 43.760944460802115],\n              [-117.10935051835098, 43.76434731869599]\n            ],\n            [\n              [-116.90822682398728, 43.77107628495867],\n              [-116.906411839171, 43.78120810911522],\n              [-116.90377359799609, 43.783026837576344],\n              [-116.89006846997243, 43.78256783244028],\n              [-116.8877959202694, 43.78120810911522],\n              [-116.88595667328309, 43.77107628495867],\n              [-116.89006846997243, 43.76787491342765],\n              [-116.90377359799609, 43.76725003619739],\n              [-116.90822682398728, 43.77107628495867]\n            ],\n            [\n              [-116.97335427285603, 43.669758043393145],\n              [-116.98029832251707, 43.6798898675497],\n              [-116.97229923811439, 43.68508361784762],\n              [-116.95859411009073, 43.68306522449329],\n              [-116.95331414658749, 43.6798898675497],\n              [-116.95859411009073, 43.67080460892149],\n              [-116.96468029283194, 43.669758043393145],\n              [-116.97229923811439, 43.6690999757447],\n              [-116.97335427285603, 43.669758043393145]\n            ],\n            [\n              [-117.12305564637464, 43.80774120479451],\n              [-117.126170744168, 43.811603581584876],\n              [-117.12305564637464, 43.8135207914779],\n              [-117.10998861854797, 43.811603581584876],\n              [-117.12305564637464, 43.80774120479451]\n            ],\n            [\n              [-117.03613675631539, 43.88252635068074],\n              [-117.02711975020902, 43.88426978654155],\n              [-117.02540538487578, 43.88252635068074],\n              [-117.02711975020902, 43.88057682883853],\n              [-117.03613675631539, 43.88252635068074]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0000ff\",\n        \"stroke-width\": 3,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#0000ff\",\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.18831927404979, 44.030028579646306],\n            [-117.17430259047141, 44.0503397169731],\n            [-117.1555607706998, 44.06856989129167],\n            [-117.13267142393586, 44.084159415030065],\n            [-117.10633998313425, 44.0966300798537],\n            [-116.93475998313426, 44.16312134330424],\n            [-116.90390792911025, 44.17252064368216],\n            [-116.87115874581731, 44.17764492399985],\n            [-116.83765236160744, 44.178316943325235],\n            [-116.80455506136143, 44.17451346096602],\n            [-116.77301889063061, 44.16636602460454],\n            [-116.74414155541912, 44.15415650782037],\n            [-116.718928213408, 44.13830753625746],\n            [-116.69825648658713, 44.119368102880635],\n            [-116.54778348658715, 43.95101745855099],\n            [-116.53323653904495, 43.93109389154936],\n            [-116.52370589955504, 43.90964883730375],\n            [-116.50492289955501, 43.849864536541844],\n            [-116.50148753791605, 43.83490799564131],\n            [-116.43944453791603, 43.41135161417976],\n            [-116.43927575177105, 43.385031874270105],\n            [-116.4463765506012, 43.35921139047269],\n            [-116.46045828155836, 43.33494109005902],\n            [-116.48094851161846, 43.313210010145426],\n            [-116.50701429741726, 43.29490470126345],\n            [-116.53759604502879, 43.28077267891232],\n            [-116.57145058326049, 43.27139149081336],\n            [-116.60720169950345, 43.26714474510305],\n            [-116.64339608381675, 43.268206153413395],\n            [-116.6785624070769, 43.274532295880086],\n            [-116.71127113162042, 43.28586443008807],\n            [-116.7401926230323, 43.301739263359636],\n            [-116.90191262303232, 43.410652293483516],\n            [-116.91245563737971, 43.41836257414538],\n            [-117.2289646373797, 43.66942845917556],\n            [-117.23934111816067, 43.67842459985051],\n            [-117.25943411816067, 43.697529650437545],\n            [-117.27980251604193, 43.722111404969176],\n            [-117.29221784328412, 43.74931172932149],\n            [-117.29607572181801, 43.777803874226485],\n            [-117.29549672181803, 43.80978996732102],\n            [-117.29218178569649, 43.83293911240257],\n            [-117.28318327404982, 43.85527900760285],\n            [-117.18831927404979, 44.030028579646306]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/multilinestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.8618364334106445, 45.784404601286774],\n            [4.86544132232666, 45.78434474634739],\n            [4.88217830657959, 45.78745711798122],\n            [4.886684417724609, 45.78691845071048],\n            [4.888958930969238, 45.78494329284938],\n            [4.876770973205566, 45.782100139729486],\n            [4.874668121337891, 45.77934663219167],\n            [4.865655899047851, 45.77904732970034],\n            [4.859733581542969, 45.77976565298041],\n            [4.860033988952637, 45.78213006841216],\n            [4.8618364334106445, 45.784404601286774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.86544132232666, 45.78434474634739],\n            [4.88217830657959, 45.78745711798122],\n            [4.8838090896606445, 45.79044961914028],\n            [4.880805015563965, 45.79257419743464],\n            [4.875955581665039, 45.78808555655138],\n            [4.869647026062012, 45.78742719215828],\n            [4.863724708557129, 45.78575132043314],\n            [4.860978126525879, 45.78572139369446],\n            [4.860033988952637, 45.78213006841216],\n            [4.8618364334106445, 45.784404601286774],\n            [4.8618364334106445, 45.78503307427041],\n            [4.86544132232666, 45.78434474634739]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/multipoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.845099449157715, 45.77793989651294],\n            [4.849648475646973, 45.78245928286134],\n            [4.855012893676758, 45.78446445616189],\n            [4.859991073608398, 45.784614093068555],\n            [4.858188629150391, 45.77288134093866],\n            [4.854154586791992, 45.77249220227275],\n            [4.845099449157715, 45.77793989651294]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.845099449157715, 45.77793989651294],\n            [4.840679168701172, 45.771743851052996],\n            [4.848017692565918, 45.767133786097716],\n            [4.854154586791992, 45.77249220227275],\n            [4.846601486206055, 45.771983324535846],\n            [4.845099449157715, 45.77793989651294]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/multipolygon-input.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [2.3273849487304688, 48.87148983809234],\n              [2.3160552978515625, 48.87307055723444],\n              [2.3150253295898438, 48.85183958955198],\n              [2.3493576049804688, 48.845965604118284],\n              [2.3500442504882812, 48.85613168160397],\n              [2.3500442504882812, 48.8615527456014],\n              [2.3273849487304688, 48.87148983809234]\n            ]\n          ],\n          [\n            [\n              [2.3363113403320312, 48.87690923865779],\n              [2.3514175415039062, 48.86516646209463],\n              [2.3596572875976562, 48.873522182101965],\n              [2.3476409912109375, 48.878489786571116],\n              [2.3363113403320312, 48.87690923865779]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [2.3256683349609375, 48.87690923865779],\n              [2.3239517211914062, 48.86787657822752],\n              [2.3521041870117188, 48.85432452980058],\n              [2.357940673828125, 48.8615527456014],\n              [2.3411178588867188, 48.882102279983364],\n              [2.3256683349609375, 48.87690923865779]\n            ]\n          ],\n          [\n            [\n              [2.362060546875, 48.85229140604385],\n              [2.3733901977539062, 48.8473212003792],\n              [2.3733901977539062, 48.854776323867306],\n              [2.362060546875, 48.85229140604385]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/no-overlap.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [92.6806640625, 53.4357192066942],\n            [92.6806640625, 53.51418452077113],\n            [93.0322265625, 53.51418452077113],\n            [93.0322265625, 53.4357192066942],\n            [92.6806640625, 53.4357192066942]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [93.47854614257812, 53.628353173374194],\n            [93.47854614257812, 53.74140157486066],\n            [93.680419921875, 53.74140157486066],\n            [93.680419921875, 53.628353173374194],\n            [93.47854614257812, 53.628353173374194]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/output-multipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [129.0234375, -27.371767300523032],\n            [138.33984375, -27.371767300523032],\n            [138.33984375, -22.43134015636061],\n            [129.0234375, -22.43134015636061],\n            [129.0234375, -27.371767300523032]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [124.23339843749999, -34.921971036163754],\n            [143.4375, -34.95799531086791],\n            [143.26171875, -13.154376055418515],\n            [124.23339843749999, -12.768946439455943],\n            [124.23339843749999, -34.921971036163754]\n          ],\n          [\n            [130.2978515625, -29.95493454965612],\n            [130.2978515625, -18.020527657852327],\n            [137.2412109375, -18.020527657852327],\n            [137.2412109375, -29.95493454965612],\n            [130.2978515625, -29.95493454965612]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.845099449157715, 45.77793989651294],\n            [4.849648475646973, 45.78245928286134],\n            [4.855012893676758, 45.78446445616189],\n            [4.859991073608398, 45.784614093068555],\n            [4.858188629150391, 45.77288134093866],\n            [4.854154586791992, 45.77249220227275],\n            [4.845099449157715, 45.77793989651294]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.859991073608398, 45.784614093068555],\n            [4.86569881439209, 45.78611044004426],\n            [4.87518310546875, 45.787906003397154],\n            [4.880547523498535, 45.79251435126729],\n            [4.883980751037598, 45.7903598464431],\n            [4.8827362060546875, 45.787906003397154],\n            [4.864926338195801, 45.78464402040167],\n            [4.859991073608398, 45.784614093068555]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/skip-issue-1132-line.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.13018281184321, 42.728620766896256],\n            [-76.13060123644954, 42.728597123463544],\n            [-76.13064415179377, 42.72858136117006],\n            [-76.13070852481015, 42.728565598872564],\n            [-76.13075144015438, 42.728565598872564],\n            [-76.1307728978265, 42.72855771772231],\n            [-76.13080508433468, 42.72854983657106],\n            [-76.13083727084286, 42.72854983657106],\n            [-76.1309016438592, 42.72854983657106],\n            [-76.13093383036738, 42.72854195541882],\n            [-76.13094455920346, 42.72854195541882],\n            [-76.13096601687558, 42.72853407426555],\n            [-76.1309874745477, 42.72853407426555],\n            [-76.13105184756404, 42.72853407426555],\n            [-76.13168484889155, 42.728376450990226],\n            [-76.13169557772763, 42.728376450990226],\n            [-76.13169557772763, 42.728376450990226],\n            [-76.13170630656367, 42.72836068864066],\n            [-76.13171703539975, 42.728352807464404],\n            [-76.13173849307186, 42.728329163929544],\n            [-76.13173849307186, 42.728329163929544],\n            [-76.13174922190792, 42.72831340156796],\n            [-76.13200671397334, 42.72798239104955],\n            [-76.13204962931759, 42.727903578761016],\n            [-76.13204962931759, 42.727887816291286],\n            [-76.13216764651425, 42.72746222809471],\n            [-76.13216764651425, 42.727430702926966],\n            [-76.13218910418637, 42.72737553384482],\n            [-76.13218910418637, 42.727344008633],\n            [-76.13218910418637, 42.7273282460211],\n            [-76.1322320195306, 42.72697358619405],\n            [-76.1322320195306, 42.726910535345894],\n            [-76.1322320195306, 42.72688689126127],\n            [-76.1322320195306, 42.72688689126127],\n            [-76.13222129069455, 42.726642568526074],\n            [-76.13222129069455, 42.726642568526074],\n            [-76.13219983302243, 42.72652434750228],\n            [-76.13218910418637, 42.726516466092676],\n            [-76.13218910418637, 42.726484940444266],\n            [-76.1321783753503, 42.72647705902966],\n            [-76.1321783753503, 42.72647705902966],\n            [-76.1321783753503, 42.72646129619747],\n            [-76.13204962931759, 42.72615392016877],\n            [-76.13203890048152, 42.7261460387121],\n            [-76.13203890048152, 42.72613027579578],\n            [-76.13202817164547, 42.7261223943361],\n            [-76.1320174428094, 42.726114512875455],\n            [-76.13178140841609, 42.72585442411173],\n            [-76.13178140841609, 42.72585442411173],\n            [-76.13173849307186, 42.7258307796246],\n            [-76.13172776423579, 42.725822898126864],\n            [-76.13125569544917, 42.72568891251251],\n            [-76.13125569544917, 42.72568891251251],\n            [-76.13120205126889, 42.72568891251251],\n            [-76.13120205126889, 42.72568891251251],\n            [-76.13118059359677, 42.72568891251251],\n            [-76.13086945735103, 42.7257283200762],\n            [-76.13086945735103, 42.7257283200762],\n            [-76.13084799967892, 42.72573620158593],\n            [-76.13067633830195, 42.72581501662816],\n            [-76.13066560946591, 42.725822898126864],\n            [-76.13066560946591, 42.725822898126864],\n            [-76.13018281184321, 42.728620766896256]\n          ]\n        ]\n      },\n      \"properties\": null\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-76.13127651893724, 42.726809124054114],\n          [-76.13147387880517, 42.726826941348634]\n        ]\n      },\n      \"properties\": null\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/skip-issue-1132-point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.13018281184321, 42.728620766896256],\n            [-76.13060123644954, 42.728597123463544],\n            [-76.13064415179377, 42.72858136117006],\n            [-76.13070852481015, 42.728565598872564],\n            [-76.13075144015438, 42.728565598872564],\n            [-76.1307728978265, 42.72855771772231],\n            [-76.13080508433468, 42.72854983657106],\n            [-76.13083727084286, 42.72854983657106],\n            [-76.1309016438592, 42.72854983657106],\n            [-76.13093383036738, 42.72854195541882],\n            [-76.13094455920346, 42.72854195541882],\n            [-76.13096601687558, 42.72853407426555],\n            [-76.1309874745477, 42.72853407426555],\n            [-76.13105184756404, 42.72853407426555],\n            [-76.13168484889155, 42.728376450990226],\n            [-76.13169557772763, 42.728376450990226],\n            [-76.13169557772763, 42.728376450990226],\n            [-76.13170630656367, 42.72836068864066],\n            [-76.13171703539975, 42.728352807464404],\n            [-76.13173849307186, 42.728329163929544],\n            [-76.13173849307186, 42.728329163929544],\n            [-76.13174922190792, 42.72831340156796],\n            [-76.13200671397334, 42.72798239104955],\n            [-76.13204962931759, 42.727903578761016],\n            [-76.13204962931759, 42.727887816291286],\n            [-76.13216764651425, 42.72746222809471],\n            [-76.13216764651425, 42.727430702926966],\n            [-76.13218910418637, 42.72737553384482],\n            [-76.13218910418637, 42.727344008633],\n            [-76.13218910418637, 42.7273282460211],\n            [-76.1322320195306, 42.72697358619405],\n            [-76.1322320195306, 42.726910535345894],\n            [-76.1322320195306, 42.72688689126127],\n            [-76.1322320195306, 42.72688689126127],\n            [-76.13222129069455, 42.726642568526074],\n            [-76.13222129069455, 42.726642568526074],\n            [-76.13219983302243, 42.72652434750228],\n            [-76.13218910418637, 42.726516466092676],\n            [-76.13218910418637, 42.726484940444266],\n            [-76.1321783753503, 42.72647705902966],\n            [-76.1321783753503, 42.72647705902966],\n            [-76.1321783753503, 42.72646129619747],\n            [-76.13204962931759, 42.72615392016877],\n            [-76.13203890048152, 42.7261460387121],\n            [-76.13203890048152, 42.72613027579578],\n            [-76.13202817164547, 42.7261223943361],\n            [-76.1320174428094, 42.726114512875455],\n            [-76.13178140841609, 42.72585442411173],\n            [-76.13178140841609, 42.72585442411173],\n            [-76.13173849307186, 42.7258307796246],\n            [-76.13172776423579, 42.725822898126864],\n            [-76.13125569544917, 42.72568891251251],\n            [-76.13125569544917, 42.72568891251251],\n            [-76.13120205126889, 42.72568891251251],\n            [-76.13120205126889, 42.72568891251251],\n            [-76.13118059359677, 42.72568891251251],\n            [-76.13086945735103, 42.7257283200762],\n            [-76.13086945735103, 42.7257283200762],\n            [-76.13084799967892, 42.72573620158593],\n            [-76.13067633830195, 42.72581501662816],\n            [-76.13066560946591, 42.725822898126864],\n            [-76.13066560946591, 42.725822898126864],\n            [-76.13018281184321, 42.728620766896256]\n          ]\n        ]\n      },\n      \"properties\": null\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.13147387880517, 42.726826941348634]\n      },\n      \"properties\": null\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/unable-to-complete-output-ring-2048-1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"source\": \"https://github.com/Turfjs/turf/issues/2048#issue-819829932\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-3.83455192598234, 40.409050315155],\n            [-3.8345491088924044, 40.409032816373895],\n            [-3.8345418625081247, 40.40901607230197],\n            [-3.8345304653068033, 40.40900072640372],\n            [-3.8345153552783007, 40.40898736841227],\n            [-3.834497113093057, 40.408976511666445],\n            [-3.8344764397871756, 40.408968573383575],\n            [-3.8344541298221237, 40.40896385862635],\n            [-3.8344310405543442, 40.40896254857957],\n            [-3.8344080592879837, 40.40896469358739],\n            [-3.83438606917682, 40.408970211218694],\n            [-3.8343659152856744, 40.4089788894348],\n            [-3.834348372115476, 40.40899039473786],\n            [-3.834177858760829, 40.409126560378894],\n            [-3.83375168422429, 40.409032801990904],\n            [-3.8337284856464264, 40.40902956463916],\n            [-3.833704904835557, 40.4090299015569],\n            [-3.8336818820896954, 40.40903379930932],\n            [-3.8336603354539585, 40.409041102471356],\n            [-3.83364112411339, 40.409051519825255],\n            [-3.8336250141327364, 40.409064635972896],\n            [-3.833612647909254, 40.4090799278999],\n            [-3.8336044119232677, 40.40909284706399],\n            [-3.8335729899859303, 40.40911989936291],\n            [-3.83354357775375, 40.40912687044306],\n            [-3.8335137989493044, 40.40912125718645],\n            [-3.833480309818796, 40.40909557565847],\n            [-3.833396901450346, 40.40898192854682],\n            [-3.8333837868735388, 40.408967551586315],\n            [-3.833367263037019, 40.408955381441274],\n            [-3.8333479559674717, 40.40894587919202],\n            [-3.8333265971366535, 40.40893940484228],\n            [-3.8330251177882237, 40.40887304968846],\n            [-3.8328484611333167, 40.40876426559626],\n            [-3.832734951264248, 40.40843336454013],\n            [-3.832726932462509, 40.40841682588908],\n            [-3.832714830355114, 40.40840179621679],\n            [-3.8326991100208536, 40.40838885310396],\n            [-3.8326803755836294, 40.408378493945825],\n            [-3.8326593469962735, 40.40837111683777],\n            [-3.832636832373328, 40.408367005276865],\n            [-3.832613696936004, 40.40836631726752],\n            [-3.8325908297626894, 40.40836907924944],\n            [-3.832569109622699, 40.40837518508161],\n            [-3.8325493712061665, 40.40838440012121],\n            [-3.832532373047783, 40.40839637024059],\n            [-3.8325187683769677, 40.40841063543614],\n            [-3.832509080014675, 40.40842664750565],\n            [-3.832503680281511, 40.40844379111528],\n            [-3.8325027766893167, 40.40846140744634],\n            [-3.832506403966127, 40.408478819513206],\n            [-3.832629725743574, 40.40883832755169],\n            [-3.832630673594837, 40.408840282474216],\n            [-3.8326312267798404, 40.40884232335561],\n            [-3.832634676039257, 40.40884853742842],\n            [-3.8326377445716466, 40.40885486620945],\n            [-3.8326391750873223, 40.40885664276608],\n            [-3.8326402405435473, 40.40885856225713],\n            [-3.8326452156545074, 40.40886414454316],\n            [-3.8326498467432972, 40.40886989588979],\n            [-3.832651704949721, 40.4088714258083],\n            [-3.832653241732515, 40.40887315014393],\n            [-3.8326595515049795, 40.40887788611862],\n            [-3.8326655671804466, 40.40888283900928],\n            [-3.832667781667827, 40.40888406349555],\n            [-3.832669730719638, 40.40888552641043],\n            [-3.832895130800659, 40.40902432655466],\n            [-3.8329147852579775, 40.40903413960093],\n            [-3.8329366023975, 40.409040795056804],\n            [-3.8332143756147303, 40.40910193263683],\n            [-3.8332819982841775, 40.4091940714427],\n            [-3.8333012883881694, 40.409213565255875],\n            [-3.83336948838725, 40.40926586530512],\n            [-3.8333859436734707, 40.40927637405202],\n            [-3.8334046261255996, 40.409284440127564],\n            [-3.8334249180008944, 40.40928979682342],\n            [-3.83351881811523, 40.40930749684639],\n            [-3.8335399766319913, 40.40930996368926],\n            [-3.8335613724013182, 40.40930948223858],\n            [-3.8335823026760876, 40.40930606830765],\n            [-3.833674702782557, 40.40928416827969],\n            [-3.833694495571647, 40.40927792779691],\n            [-3.8337124823739304, 40.40926906767858],\n            [-3.833728071449941, 40.40925787940999],\n            [-3.8337678988659136, 40.40922359047],\n            [-3.8341811162739527, 40.40931449813965],\n            [-3.83418743179838, 40.40931538856986],\n            [-3.8341936207298533, 40.40931669648408],\n            [-3.834198787843836, 40.40931698966665],\n            [-3.834203882679486, 40.40931770799109],\n            [-3.8342103049943153, 40.40931764315093],\n            [-3.8342167101145117, 40.40931800657809],\n            [-3.834221853061412, 40.409317526560784],\n            [-3.834227034046546, 40.40931747425317],\n            [-3.8342333163447924, 40.40931645663443],\n            [-3.8342396915076176, 40.40931586160816],\n            [-3.834244612646042, 40.40931462683783],\n            [-3.834249680677578, 40.40931380590834],\n            [-3.8342555815332413, 40.409311874617664],\n            [-3.834261681743722, 40.40931034400458],\n            [-3.834266191956608, 40.40930840193288],\n            [-3.834270952272051, 40.40930684392955],\n            [-3.834276244917819, 40.40930407318568],\n            [-3.834281835747566, 40.40930166580659],\n            [-3.8342857617095607, 40.40929909106643],\n            [-3.834290031372107, 40.40929685586274],\n            [-3.834294512414421, 40.409293352144026],\n            [-3.834299379010279, 40.409290160513585],\n            [-3.83451932993786, 40.40911451550404],\n            [-3.834533588198565, 40.40910062523229],\n            [-3.8345440136045337, 40.40908488381169],\n            [-3.834550205515344, 40.40906789617728],\n            [-3.83455192598234, 40.409050315155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-3.83455192598234, 40.409050315155],\n            [-3.8345491088924044, 40.409032816373895],\n            [-3.8345418625081247, 40.40901607230197],\n            [-3.8345304653068033, 40.40900072640372],\n            [-3.8345153552783007, 40.40898736841227],\n            [-3.834497113093057, 40.408976511666445],\n            [-3.8344764397871756, 40.408968573383575],\n            [-3.8344541298221237, 40.40896385862635],\n            [-3.8344310405543442, 40.40896254857957],\n            [-3.8344080592879837, 40.40896469358739],\n            [-3.83438606917682, 40.408970211218694],\n            [-3.8343659152856744, 40.4089788894348],\n            [-3.834348372115476, 40.40899039473786],\n            [-3.8341860126530114, 40.40912004898301],\n            [-3.8336592689516156, 40.40894040968877],\n            [-3.8336560611269483, 40.408853862971455],\n            [-3.8336531483024934, 40.40883639291525],\n            [-3.8336458201698336, 40.40881969002402],\n            [-3.833634357725855, 40.40880439476212],\n            [-3.8336192004948124, 40.40879109361868],\n            [-3.8336009296747, 40.40878029661897],\n            [-3.8335802458513806, 40.40877241776803],\n            [-3.8335579421350627, 40.40876775917592],\n            [-3.833534873749143, 40.408766499473685],\n            [-3.8335119252374934, 40.40876868696387],\n            [-3.8329991583627283, 40.40885706407902],\n            [-3.8328484611367055, 40.40876426560614],\n            [-3.832734951264248, 40.40843336454013],\n            [-3.832726932462509, 40.40841682588908],\n            [-3.832714830355114, 40.40840179621679],\n            [-3.8326991100208536, 40.40838885310396],\n            [-3.8326803755836294, 40.408378493945825],\n            [-3.8326593469962735, 40.40837111683777],\n            [-3.832636832373328, 40.408367005276865],\n            [-3.832613696936004, 40.40836631726752],\n            [-3.8325908297626894, 40.40836907924944],\n            [-3.832569109622699, 40.40837518508161],\n            [-3.8325493712061665, 40.40838440012121],\n            [-3.832532373047783, 40.40839637024059],\n            [-3.8325187683769677, 40.40841063543614],\n            [-3.832509080014675, 40.40842664750565],\n            [-3.832503680281511, 40.40844379111528],\n            [-3.8325027766893167, 40.40846140744634],\n            [-3.832506403966127, 40.408478819513206],\n            [-3.832629725743574, 40.40883832755169],\n            [-3.832630673594837, 40.408840282474216],\n            [-3.8326312267798404, 40.40884232335561],\n            [-3.832634676039257, 40.40884853742842],\n            [-3.8326377445716466, 40.40885486620945],\n            [-3.8326391750873223, 40.40885664276608],\n            [-3.8326402405435473, 40.40885856225713],\n            [-3.8326452156545074, 40.40886414454316],\n            [-3.8326498467432972, 40.40886989588979],\n            [-3.832651704949721, 40.4088714258083],\n            [-3.832653241732515, 40.40887315014393],\n            [-3.8326595515049795, 40.40887788611862],\n            [-3.8326655671804466, 40.40888283900928],\n            [-3.832667781667827, 40.40888406349555],\n            [-3.832669730719638, 40.40888552641043],\n            [-3.832895130800659, 40.40902432655466],\n            [-3.832912826549752, 40.40903334387367],\n            [-3.832932361033984, 40.40903979538643],\n            [-3.8329530993491185, 40.40904347140754],\n            [-3.8329743674638825, 40.40904425245991],\n            [-3.832995474127387, 40.409042113158],\n            [-3.8334239904054592, 40.4089682573086],\n            [-3.8334252386134966, 40.40900193691386],\n            [-3.833427914072361, 40.40901859790407],\n            [-3.833434609021053, 40.40903459013415],\n            [-3.8334450902424826, 40.4090493565116],\n            [-3.833458992623358, 40.409062382646496],\n            [-3.833475831872736, 40.409073214770295],\n            [-3.8334950213922845, 40.40908147554315],\n            [-3.8341656220460503, 40.40931017582205],\n            [-3.8341685519810556, 40.4093109223674],\n            [-3.8341713106692126, 40.409311981672516],\n            [-3.834179509631203, 40.40931371436887],\n            [-3.834187578725782, 40.40931577036844],\n            [-3.8341906436391717, 40.40931606733198],\n            [-3.8341936207298533, 40.40931669648408],\n            [-3.8342021060938283, 40.40931717794449],\n            [-3.8342105469212235, 40.409317995787504],\n            [-3.834213629029606, 40.40931783175702],\n            [-3.8342167101145117, 40.40931800657809],\n            [-3.8342251557914957, 40.40931721830024],\n            [-3.834233643974112, 40.4093167665573],\n            [-3.8342366248332436, 40.40931614783642],\n            [-3.8342396915076176, 40.40931586160816],\n            [-3.8342477729339226, 40.40931383388519],\n            [-3.834255982274187, 40.40931212991664],\n            [-3.834258747330996, 40.40931108028254],\n            [-3.834261681743722, 40.40931034400458],\n            [-3.8342690883535533, 40.409307154761045],\n            [-3.8342767033700853, 40.40930426404971],\n            [-3.834279146364692, 40.40930282383937],\n            [-3.834281835747566, 40.40930166580659],\n            [-3.8342882829085267, 40.4092974376036],\n            [-3.8342950109596026, 40.40929347123841],\n            [-3.834297038009003, 40.409291695798444],\n            [-3.834299379010279, 40.409290160513585],\n            [-3.83451932993786, 40.40911451550404],\n            [-3.834533588198565, 40.40910062523229],\n            [-3.8345440136045337, 40.40908488381169],\n            [-3.834550205515344, 40.40906789617728],\n            [-3.83455192598234, 40.409050315155]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/in/unable-to-complete-output-ring-2048-2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"source\": \"https://github.com/Turfjs/turf/issues/2048#issuecomment-805719137\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [973.2050807568878, 709.8076211353313],\n            [923.2050807568877, 623.2050807568874],\n            [923.2050807568877, 623.2050807568874],\n            [973.2050807568877, 536.6025403784436],\n            [973.2050807568877, 536.6025403784436],\n            [1073.2050807568876, 536.6025403784436],\n            [1073.2050807568876, 536.6025403784436],\n            [1123.2050807568878, 623.2050807568874],\n            [1123.2050807568878, 623.2050807568874],\n            [1073.2050807568878, 709.8076211353313],\n            [1073.2050807568878, 709.8076211353313],\n            [973.2050807568878, 709.8076211353313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1009.8076211353315, 573.2050807568876],\n            [923.2050807568877, 623.2050807568876],\n            [923.2050807568877, 623.2050807568876],\n            [873.2050807568877, 536.6025403784438],\n            [873.2050807568877, 536.6025403784438],\n            [959.8076211353315, 486.60254037844373],\n            [959.8076211353315, 486.60254037844373],\n            [1009.8076211353315, 573.2050807568876]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/Intersect1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.88571166992188, 32.887659962078956],\n            [-80.09788513183594, 32.927436533285565],\n            [-80.15350341796875, 32.82825010814964],\n            [-80.00312805175781, 32.69428812316933],\n            [-79.89395141601562, 32.75551989829049],\n            [-79.88571166992188, 32.887659962078956]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.92141723632812, 32.953944317478246],\n            [-79.97428894042969, 32.83690450361482],\n            [-79.97360229492188, 32.76071688548088],\n            [-79.93034362792969, 32.76475877693074],\n            [-79.93789672851562, 32.74108223150125],\n            [-79.80537414550781, 32.7231762754146],\n            [-79.81773376464844, 32.923402043498875],\n            [-79.92141723632812, 32.953944317478246]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1,\n        \"fill\": \"#0F0\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.97428894042969, 32.83690450361482],\n            [-79.97360229492188, 32.76071688548088],\n            [-79.93034362792969, 32.76475877693074],\n            [-79.93789672851562, 32.74108223150125],\n            [-79.92322780260464, 32.73910022106017],\n            [-79.89395141601562, 32.75551989829049],\n            [-79.88571166992188, 32.887659962078956],\n            [-79.94623496447946, 32.89900638172028],\n            [-79.97428894042969, 32.83690450361482]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/Intersect2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.92141723632812, 32.953944317478246],\n            [-80.068359375, 32.88189375925038],\n            [-80.01686096191406, 32.87266705436184],\n            [-79.97360229492188, 32.76071688548088],\n            [-79.93034362792969, 32.76475877693074],\n            [-79.93789672851562, 32.74108223150125],\n            [-79.80537414550781, 32.7231762754146],\n            [-79.81773376464844, 32.923402043498875],\n            [-79.92141723632812, 32.953944317478246]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.10543823242188, 32.94760622243483],\n            [-80.14389038085938, 32.8149783969858],\n            [-80.07453918457031, 32.85536439443039],\n            [-79.99351501464844, 32.84440429734253],\n            [-79.98184204101562, 32.90495631913751],\n            [-80.10543823242188, 32.94760622243483]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1,\n        \"fill\": \"#0F0\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.068359375, 32.88189375925038],\n            [-80.01686096191406, 32.87266705436184],\n            [-80.0066252126598, 32.84617770697059],\n            [-79.99351501464844, 32.84440429734253],\n            [-79.98184204101562, 32.90495631913751],\n            [-80.00501604057509, 32.91295307720083],\n            [-80.068359375, 32.88189375925038]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/armenia.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"id\": \"ARM\",\n      \"properties\": {\n        \"name\": \"Armenia\",\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [43.582746, 41.092143],\n            [44.97248, 41.248129],\n            [45.179496, 40.985354],\n            [45.560351, 40.81229],\n            [45.359175, 40.561504],\n            [45.891907, 40.218476],\n            [45.610012, 39.899994],\n            [46.034534, 39.628021],\n            [46.483499, 39.464155],\n            [46.50572, 38.770605],\n            [46.143623, 38.741201],\n            [45.735379, 39.319719],\n            [45.739978, 39.473999],\n            [45.298145, 39.471751],\n            [45.001987, 39.740004],\n            [44.79399, 39.713003],\n            [44.400009, 40.005],\n            [43.656436, 40.253564],\n            [43.752658, 40.740201],\n            [43.582746, 41.092143]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [45.1318359375, 40.1452892956766],\n            [45.1318359375, 43.197167282501276],\n            [53.3935546875, 43.197167282501276],\n            [53.3935546875, 40.1452892956766],\n            [45.1318359375, 40.1452892956766]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1,\n        \"fill\": \"#0F0\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [45.1318359375, 40.1452892956766],\n            [45.82712793551521, 40.1452892956766],\n            [45.891907, 40.218476],\n            [45.359175, 40.561504],\n            [45.560351, 40.81229],\n            [45.179496, 40.985354],\n            [45.1318359375, 41.04585112545618],\n            [45.1318359375, 40.1452892956766]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/issue-1004.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-114.757217, 32.618318],\n            [-114.757217, 32.619977],\n            [-114.757213, 32.619977],\n            [-114.757213, 32.618318],\n            [-114.757217, 32.618318]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-114.755129, 32.618401],\n            [-114.755129, 32.618401],\n            [-114.755129, 32.618402],\n            [-114.75513, 32.618402],\n            [-114.75513, 32.618401],\n            [-114.755131, 32.618395],\n            [-114.755135, 32.618385],\n            [-114.755142, 32.618374],\n            [-114.75515, 32.618363],\n            [-114.75516, 32.618353],\n            [-114.755171, 32.618345],\n            [-114.755183, 32.618339],\n            [-114.755195, 32.618334],\n            [-114.755207, 32.618332],\n            [-114.755218, 32.618331],\n            [-114.755228, 32.618331],\n            [-114.75701, 32.618318],\n            [-114.757014, 32.618319],\n            [-114.757018, 32.618321],\n            [-114.757028, 32.618325],\n            [-114.757041, 32.61833],\n            [-114.757053, 32.618337],\n            [-114.757066, 32.618344],\n            [-114.757078, 32.618352],\n            [-114.757088, 32.618362],\n            [-114.757098, 32.618371],\n            [-114.757107, 32.618382],\n            [-114.757116, 32.618393],\n            [-114.757124, 32.618404],\n            [-114.757132, 32.618414],\n            [-114.757138, 32.618426],\n            [-114.757142, 32.618438],\n            [-114.757146, 32.61845],\n            [-114.757151, 32.618463],\n            [-114.757154, 32.618476],\n            [-114.757157, 32.618489],\n            [-114.75716, 32.618502],\n            [-114.757163, 32.618515],\n            [-114.757165, 32.618527],\n            [-114.757168, 32.618538],\n            [-114.75717, 32.618547],\n            [-114.757171, 32.618552],\n            [-114.757219, 32.619925],\n            [-114.757215, 32.619925],\n            [-114.757211, 32.619927],\n            [-114.757202, 32.619933],\n            [-114.757192, 32.61994],\n            [-114.757182, 32.619947],\n            [-114.75717, 32.619953],\n            [-114.757157, 32.619958],\n            [-114.757143, 32.619964],\n            [-114.75713, 32.619968],\n            [-114.757117, 32.619972],\n            [-114.757105, 32.619974],\n            [-114.757095, 32.619976],\n            [-114.757088, 32.619977],\n            [-114.755325, 32.619959],\n            [-114.755324, 32.619958],\n            [-114.755319, 32.619956],\n            [-114.755307, 32.619954],\n            [-114.755294, 32.619952],\n            [-114.755281, 32.61995],\n            [-114.755269, 32.619946],\n            [-114.755257, 32.61994],\n            [-114.755245, 32.619934],\n            [-114.755233, 32.619927],\n            [-114.755224, 32.619919],\n            [-114.755216, 32.619911],\n            [-114.755209, 32.619902],\n            [-114.755202, 32.619891],\n            [-114.755198, 32.619881],\n            [-114.755195, 32.61987],\n            [-114.755191, 32.61986],\n            [-114.755189, 32.619849],\n            [-114.755187, 32.619838],\n            [-114.755185, 32.619826],\n            [-114.755183, 32.619814],\n            [-114.755182, 32.619801],\n            [-114.75518, 32.619789],\n            [-114.755178, 32.619777],\n            [-114.755177, 32.619764],\n            [-114.755177, 32.619752],\n            [-114.755176, 32.61974],\n            [-114.755175, 32.619729],\n            [-114.755173, 32.619718],\n            [-114.755172, 32.61971],\n            [-114.755171, 32.619705],\n            [-114.755129, 32.618401]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1,\n        \"fill\": \"#0F0\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-114.757217, 32.619867791666664],\n            [-114.757213, 32.619753375],\n            [-114.757213, 32.619926],\n            [-114.757215, 32.619925],\n            [-114.757217, 32.619925],\n            [-114.757217, 32.619867791666664]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/issue-1132-line.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.13018281184321, 42.728620766896256],\n            [-76.13060123644954, 42.728597123463544],\n            [-76.13064415179377, 42.72858136117006],\n            [-76.13070852481015, 42.728565598872564],\n            [-76.13075144015438, 42.728565598872564],\n            [-76.1307728978265, 42.72855771772231],\n            [-76.13080508433468, 42.72854983657106],\n            [-76.13083727084286, 42.72854983657106],\n            [-76.1309016438592, 42.72854983657106],\n            [-76.13093383036738, 42.72854195541882],\n            [-76.13094455920346, 42.72854195541882],\n            [-76.13096601687558, 42.72853407426555],\n            [-76.1309874745477, 42.72853407426555],\n            [-76.13105184756404, 42.72853407426555],\n            [-76.13168484889155, 42.728376450990226],\n            [-76.13169557772763, 42.728376450990226],\n            [-76.13169557772763, 42.728376450990226],\n            [-76.13170630656367, 42.72836068864066],\n            [-76.13171703539975, 42.728352807464404],\n            [-76.13173849307186, 42.728329163929544],\n            [-76.13173849307186, 42.728329163929544],\n            [-76.13174922190792, 42.72831340156796],\n            [-76.13200671397334, 42.72798239104955],\n            [-76.13204962931759, 42.727903578761016],\n            [-76.13204962931759, 42.727887816291286],\n            [-76.13216764651425, 42.72746222809471],\n            [-76.13216764651425, 42.727430702926966],\n            [-76.13218910418637, 42.72737553384482],\n            [-76.13218910418637, 42.727344008633],\n            [-76.13218910418637, 42.7273282460211],\n            [-76.1322320195306, 42.72697358619405],\n            [-76.1322320195306, 42.726910535345894],\n            [-76.1322320195306, 42.72688689126127],\n            [-76.1322320195306, 42.72688689126127],\n            [-76.13222129069455, 42.726642568526074],\n            [-76.13222129069455, 42.726642568526074],\n            [-76.13219983302243, 42.72652434750228],\n            [-76.13218910418637, 42.726516466092676],\n            [-76.13218910418637, 42.726484940444266],\n            [-76.1321783753503, 42.72647705902966],\n            [-76.1321783753503, 42.72647705902966],\n            [-76.1321783753503, 42.72646129619747],\n            [-76.13204962931759, 42.72615392016877],\n            [-76.13203890048152, 42.7261460387121],\n            [-76.13203890048152, 42.72613027579578],\n            [-76.13202817164547, 42.7261223943361],\n            [-76.1320174428094, 42.726114512875455],\n            [-76.13178140841609, 42.72585442411173],\n            [-76.13178140841609, 42.72585442411173],\n            [-76.13173849307186, 42.7258307796246],\n            [-76.13172776423579, 42.725822898126864],\n            [-76.13125569544917, 42.72568891251251],\n            [-76.13125569544917, 42.72568891251251],\n            [-76.13120205126889, 42.72568891251251],\n            [-76.13120205126889, 42.72568891251251],\n            [-76.13118059359677, 42.72568891251251],\n            [-76.13086945735103, 42.7257283200762],\n            [-76.13086945735103, 42.7257283200762],\n            [-76.13084799967892, 42.72573620158593],\n            [-76.13067633830195, 42.72581501662816],\n            [-76.13066560946591, 42.725822898126864],\n            [-76.13066560946591, 42.725822898126864],\n            [-76.13018281184321, 42.728620766896256]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#F00\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-76.13127651893724, 42.726809124054114],\n          [-76.13147387880517, 42.726826941348634]\n        ]\n      },\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#00F\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/issue-1394.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.42358091, 41.76872876],\n            [-85.42358054, 41.76871738],\n            [-85.42343269, 41.76871941],\n            [-85.42342892, 41.7687873],\n            [-85.42343247, 41.76882923],\n            [-85.42343403, 41.76885906],\n            [-85.42343247, 41.76893021],\n            [-85.4234327, 41.76893113],\n            [-85.42343245, 41.768932],\n            [-85.42343245, 41.76896821],\n            [-85.42357911, 41.76896572],\n            [-85.42357911, 41.76895253],\n            [-85.42357911, 41.768932],\n            [-85.42358073, 41.76885781],\n            [-85.42357713, 41.76878899],\n            [-85.42358091, 41.76872876]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#F00\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.42775567, 41.76834521],\n            [-85.42261052, 41.76843269],\n            [-85.42260803, 41.76844995],\n            [-85.4226073, 41.76845496],\n            [-85.42260484, 41.76848048],\n            [-85.42260083, 41.76852204],\n            [-85.42260191, 41.76856362],\n            [-85.42260586, 41.7685989],\n            [-85.42263068, 41.76862319],\n            [-85.42334654, 41.76860736],\n            [-85.42335464, 41.76862399],\n            [-85.4233818, 41.76867993],\n            [-85.42338342, 41.76869724],\n            [-85.42338701, 41.76872004],\n            [-85.42339693, 41.76871991],\n            [-85.42343269, 41.76871941],\n            [-85.42358054, 41.76871738],\n            [-85.42358091, 41.76872876],\n            [-85.42357713, 41.768789],\n            [-85.42358073, 41.76885781],\n            [-85.42357911, 41.768932],\n            [-85.42357911, 41.76895253],\n            [-85.42357911, 41.76896572],\n            [-85.42595679, 41.76892533],\n            [-85.42595476, 41.76888531],\n            [-85.42599703, 41.7688939],\n            [-85.42599798, 41.76892451],\n            [-85.426518, 41.76891567],\n            [-85.42776659, 41.76889445],\n            [-85.42781994, 41.76889354],\n            [-85.42781971, 41.76888565],\n            [-85.42781923, 41.76886922],\n            [-85.42780934, 41.76879664],\n            [-85.42782049, 41.76870985],\n            [-85.42782211, 41.76864827],\n            [-85.42782265, 41.76858656],\n            [-85.42782337, 41.76852915],\n            [-85.42782301, 41.76847763],\n            [-85.42782337, 41.7684563],\n            [-85.42775364, 41.76845772],\n            [-85.42775456, 41.76840654],\n            [-85.42775499, 41.76838269],\n            [-85.42775536, 41.76836222],\n            [-85.42775567, 41.76834521]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#00F\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1,\n        \"fill\": \"#0F0\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-85.42358073, 41.76885781],\n            [-85.42357713028528, 41.76878899545362],\n            [-85.42357713, 41.768789],\n            [-85.42358073, 41.76885781]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/issue-412.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [11.076136797048882, 9.856269774244707],\n            [11.262359619140625, 9.85386305739084],\n            [11.083831787109375, 9.85386305739084],\n            [11.076136797048882, 9.856269774244707]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#F00\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [11.62078857421875, 10.306812602471467],\n            [11.162109375, 9.848450887107404],\n            [11.072845458984375, 9.85656910923582],\n            [11.62078857421875, 10.306812602471467]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#00F\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1,\n        \"fill\": \"#0F0\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [11.076136797048882, 9.856269774244707],\n            [11.076136797048889, 9.856269774244705],\n            [11.102599853580049, 9.85386305739084],\n            [11.167525294018608, 9.85386305739084],\n            [11.168736108831801, 9.855073034114678],\n            [11.076136797048882, 9.856269774244707]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/issue-702.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-74.79611411690712, 7.765254307777397],\n              [-74.79562863707542, 7.764475626432059],\n              [-74.79497820138931, 7.763392645711534],\n              [-74.79475021362305, 7.762971411965751],\n              [-74.79475021362305, 7.759810152181373],\n              [-74.79756385087967, 7.759810152181373],\n              [-74.7976054251194, 7.75992841747734],\n              [-74.79764297604561, 7.760640666196679],\n              [-74.79771003127098, 7.761103095689322],\n              [-74.79768589138985, 7.761723654007994],\n              [-74.7976054251194, 7.762247207851331],\n              [-74.79763090610504, 7.762539547277072],\n              [-74.79781463742256, 7.762691032172228],\n              [-74.79823172092438, 7.76314814415656],\n              [-74.79852139949799, 7.763707574135239],\n              [-74.798883497715, 7.7647427169537195],\n              [-74.79926839470863, 7.765593153304707],\n              [-74.79629516601562, 7.765593153304707],\n              [-74.79611411690712, 7.765254307777397]\n            ]\n          ],\n          [\n            [\n              [-74.79480117559433, 7.763330191523508],\n              [-74.79475021362305, 7.763336835586514],\n              [-74.79475021362305, 7.76296875433826],\n              [-74.79497820138931, 7.763392645711534],\n              [-74.79480117559433, 7.763330191523508]\n            ]\n          ]\n        ]\n      },\n      \"properties\": {\n        \"vt_layer\": \"water\",\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#F00\"\n      },\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.79376316070557, 7.766060892564003],\n            [-74.79382753372192, 7.765593153304712],\n            [-74.79288339614868, 7.765699457727546],\n            [-74.79376316070557, 7.766060892564003]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/issue-820.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [43.741513133300735, 56.20222135938059],\n            [43.74237144018551, 56.18856400988486],\n            [43.77756202246089, 56.187608768581725],\n            [43.77927863623042, 56.19639609165836],\n            [43.763142466796836, 56.20212587032091],\n            [43.741513133300735, 56.20222135938059]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [43.970066430113974, 56.332893840607994],\n            [43.970066430115764, 56.33289386305967],\n            [43.96907396330773, 56.33216050512385],\n            [43.96712784882449, 56.3329676824026],\n            [43.9675997442062, 56.33331243182769],\n            [43.96955706305079, 56.33351088302814],\n            [43.96958194836136, 56.33343379993835],\n            [43.969613521760365, 56.3333626110674],\n            [43.96964739754773, 56.3333044427381],\n            [43.96968537953426, 56.3332457040905],\n            [43.96973157401614, 56.333186395086614],\n            [43.969791873109784, 56.333117882577056],\n            [43.96983217547703, 56.3330786121781],\n            [43.969883502771644, 56.3330312788475],\n            [43.969928670817815, 56.332993640236595],\n            [43.96997589197615, 56.33295771241299],\n            [43.97002822123187, 56.332919492368774],\n            [43.970066430113974, 56.332893840607994]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/jsts/Intersect1.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-79.94623485028362, 32.89900648336843],\n        [-79.885712, 32.88766],\n        [-79.893951, 32.75552],\n        [-79.92322798892725, 32.739099979427955],\n        [-79.937897, 32.741082],\n        [-79.930344, 32.764759],\n        [-79.973602, 32.760717],\n        [-79.974289, 32.836905],\n        [-79.94623485028362, 32.89900648336843]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/jsts/Intersect2.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-80.00662505026214, 32.84617737765197],\n        [-80.016861, 32.872667],\n        [-80.068359, 32.881894],\n        [-80.0050161842375, 32.91295285230695],\n        [-79.981842, 32.904956],\n        [-79.993515, 32.844404],\n        [-80.00662505026214, 32.84617737765197]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/jsts/armenia.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [43.582746, 41.092143],\n        [44.97248, 41.248129],\n        [45.179496, 40.985354],\n        [45.560351, 40.81229],\n        [45.359175, 40.561504],\n        [45.891907, 40.218476],\n        [45.610012, 39.899994],\n        [46.034534, 39.628021],\n        [46.483499, 39.464155],\n        [46.50572, 38.770605],\n        [46.143623, 38.741201],\n        [45.735379, 39.319719],\n        [45.739978, 39.473999],\n        [45.298145, 39.471751],\n        [45.001987, 39.740004],\n        [44.79399, 39.713003],\n        [44.400009, 40.005],\n        [43.656436, 40.253564],\n        [43.752658, 40.740201],\n        [43.582746, 41.092143]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/jsts/issue-1004.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": null\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/jsts/issue-1132-line.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-76.131277, 42.726809],\n      [-76.131474, 42.726827]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/jsts/issue-1132-point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-76.131474, 42.726827]\n  }\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/jsts/issue-412.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [11.076137, 9.85627],\n        [11.16873572210611, 9.855073127840765],\n        [11.16752475470916, 9.853863],\n        [11.102599666666666, 9.853863],\n        [11.076138743097555, 9.856269454758179],\n        [11.076137, 9.85627]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/jsts/issue-820.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": null\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/jsts/linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [4.865441, 45.784345],\n      [4.882178, 45.787457]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/jsts/multilinestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [4.865441, 45.784345],\n        [4.882178, 45.787457]\n      ],\n      [\n        [4.860034, 45.78213],\n        [4.861836, 45.784405]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/jsts/multipoint.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPoint\",\n    \"coordinates\": [\n      [4.845099, 45.77794],\n      [4.854155, 45.772492]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/jsts/no-overlap.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": null\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/jsts/point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [4.859991, 45.784614]\n  }\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.8618364334106445, 45.784404601286774],\n            [4.86544132232666, 45.78434474634739],\n            [4.88217830657959, 45.78745711798122],\n            [4.886684417724609, 45.78691845071048],\n            [4.888958930969238, 45.78494329284938],\n            [4.876770973205566, 45.782100139729486],\n            [4.874668121337891, 45.77934663219167],\n            [4.865655899047851, 45.77904732970034],\n            [4.859733581542969, 45.77976565298041],\n            [4.860033988952637, 45.78213006841216],\n            [4.8618364334106445, 45.784404601286774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.86544132232666, 45.78434474634739],\n            [4.88217830657959, 45.78745711798122],\n            [4.8838090896606445, 45.79044961914028],\n            [4.880805015563965, 45.79257419743464],\n            [4.875955581665039, 45.78808555655138],\n            [4.869647026062012, 45.78742719215828],\n            [4.863724708557129, 45.78575132043314],\n            [4.86544132232666, 45.78434474634739]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/multilinestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.8618364334106445, 45.784404601286774],\n            [4.86544132232666, 45.78434474634739],\n            [4.88217830657959, 45.78745711798122],\n            [4.886684417724609, 45.78691845071048],\n            [4.888958930969238, 45.78494329284938],\n            [4.876770973205566, 45.782100139729486],\n            [4.874668121337891, 45.77934663219167],\n            [4.865655899047851, 45.77904732970034],\n            [4.859733581542969, 45.77976565298041],\n            [4.860033988952637, 45.78213006841216],\n            [4.8618364334106445, 45.784404601286774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.86544132232666, 45.78434474634739],\n            [4.88217830657959, 45.78745711798122],\n            [4.8838090896606445, 45.79044961914028],\n            [4.880805015563965, 45.79257419743464],\n            [4.875955581665039, 45.78808555655138],\n            [4.869647026062012, 45.78742719215828],\n            [4.863724708557129, 45.78575132043314],\n            [4.860978126525879, 45.78572139369446],\n            [4.860033988952637, 45.78213006841216],\n            [4.8618364334106445, 45.784404601286774],\n            [4.8618364334106445, 45.78503307427041],\n            [4.86544132232666, 45.78434474634739]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/multipoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.845099449157715, 45.77793989651294],\n            [4.849648475646973, 45.78245928286134],\n            [4.855012893676758, 45.78446445616189],\n            [4.859991073608398, 45.784614093068555],\n            [4.858188629150391, 45.77288134093866],\n            [4.854154586791992, 45.77249220227275],\n            [4.845099449157715, 45.77793989651294]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.845099449157715, 45.77793989651294],\n            [4.840679168701172, 45.771743851052996],\n            [4.848017692565918, 45.767133786097716],\n            [4.854154586791992, 45.77249220227275],\n            [4.846601486206055, 45.771983324535846],\n            [4.845099449157715, 45.77793989651294]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/multipolygon-input.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [2.3273849487304688, 48.87148983809234],\n              [2.3160552978515625, 48.87307055723444],\n              [2.3150253295898438, 48.85183958955198],\n              [2.3493576049804688, 48.845965604118284],\n              [2.3500442504882812, 48.85613168160397],\n              [2.3500442504882812, 48.8615527456014],\n              [2.3273849487304688, 48.87148983809234]\n            ]\n          ],\n          [\n            [\n              [2.3363113403320312, 48.87690923865779],\n              [2.3514175415039062, 48.86516646209463],\n              [2.3596572875976562, 48.873522182101965],\n              [2.3476409912109375, 48.878489786571116],\n              [2.3363113403320312, 48.87690923865779]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [2.3256683349609375, 48.87690923865779],\n              [2.3239517211914062, 48.86787657822752],\n              [2.3521041870117188, 48.85432452980058],\n              [2.357940673828125, 48.8615527456014],\n              [2.3411178588867188, 48.882102279983364],\n              [2.3256683349609375, 48.87690923865779]\n            ]\n          ],\n          [\n            [\n              [2.362060546875, 48.85229140604385],\n              [2.3733901977539062, 48.8473212003792],\n              [2.3733901977539062, 48.854776323867306],\n              [2.362060546875, 48.85229140604385]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1,\n        \"fill\": \"#0F0\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [2.3239517211914062, 48.86787657822752],\n              [2.3499909013050764, 48.85534182435727],\n              [2.3500442504882812, 48.85613168160397],\n              [2.3500442504882812, 48.8615527456014],\n              [2.3273849487304688, 48.87148983809234],\n              [2.324709348008303, 48.87186313938144],\n              [2.3239517211914062, 48.86787657822752]\n            ]\n          ],\n          [\n            [\n              [2.3363113403320312, 48.87690923865779],\n              [2.3514175415039062, 48.86516646209463],\n              [2.353365325175928, 48.86714166070064],\n              [2.3444407066054644, 48.87804332946407],\n              [2.3363113403320312, 48.87690923865779]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/no-overlap.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [92.6806640625, 53.4357192066942],\n            [92.6806640625, 53.51418452077113],\n            [93.0322265625, 53.51418452077113],\n            [93.0322265625, 53.4357192066942],\n            [92.6806640625, 53.4357192066942]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [93.47854614257812, 53.628353173374194],\n            [93.47854614257812, 53.74140157486066],\n            [93.680419921875, 53.74140157486066],\n            [93.680419921875, 53.628353173374194],\n            [93.47854614257812, 53.628353173374194]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/output-multipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [129.0234375, -27.371767300523032],\n            [138.33984375, -27.371767300523032],\n            [138.33984375, -22.43134015636061],\n            [129.0234375, -22.43134015636061],\n            [129.0234375, -27.371767300523032]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [124.23339843749999, -34.921971036163754],\n            [143.4375, -34.95799531086791],\n            [143.26171875, -13.154376055418515],\n            [124.23339843749999, -12.768946439455943],\n            [124.23339843749999, -34.921971036163754]\n          ],\n          [\n            [130.2978515625, -29.95493454965612],\n            [130.2978515625, -18.020527657852327],\n            [137.2412109375, -18.020527657852327],\n            [137.2412109375, -29.95493454965612],\n            [130.2978515625, -29.95493454965612]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 1,\n        \"fill\": \"#0F0\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [129.0234375, -27.371767300523032],\n              [130.2978515625, -27.371767300523032],\n              [130.2978515625, -22.43134015636061],\n              [129.0234375, -22.43134015636061],\n              [129.0234375, -27.371767300523032]\n            ]\n          ],\n          [\n            [\n              [137.2412109375, -27.371767300523032],\n              [138.33984375, -27.371767300523032],\n              [138.33984375, -22.43134015636061],\n              [137.2412109375, -22.43134015636061],\n              [137.2412109375, -27.371767300523032]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test/out/point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.845099449157715, 45.77793989651294],\n            [4.849648475646973, 45.78245928286134],\n            [4.855012893676758, 45.78446445616189],\n            [4.859991073608398, 45.784614093068555],\n            [4.858188629150391, 45.77288134093866],\n            [4.854154586791992, 45.77249220227275],\n            [4.845099449157715, 45.77793989651294]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"fill\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.859991073608398, 45.784614093068555],\n            [4.86569881439209, 45.78611044004426],\n            [4.87518310546875, 45.787906003397154],\n            [4.880547523498535, 45.79251435126729],\n            [4.883980751037598, 45.7903598464431],\n            [4.8827362060546875, 45.787906003397154],\n            [4.864926338195801, 45.78464402040167],\n            [4.859991073608398, 45.784614093068555]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-intersect/test.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { featureCollection, polygon } from \"@turf/helpers\";\nimport { intersect } from \"./index.js\";\nimport { FeatureCollection, MultiPolygon, Polygon } from \"geojson\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename) as FeatureCollection<\n      Polygon | MultiPolygon\n    >,\n  };\n});\n\ntest(\"intersect\", (t) => {\n  for (const { name, geojson, filename } of fixtures) {\n    if (name.includes(\"skip\")) {\n      t.skip(name);\n      continue;\n    }\n\n    // Only test the input fixture this way if there is a corresponding output\n    // fixture to compare.\n    if (fs.existsSync(path.join(directories.out, filename))) {\n      const [polygon1, polygon2] = geojson.features;\n\n      // Red Polygon1\n      polygon1.properties = Object.assign(polygon1.properties || {}, {\n        \"fill-opacity\": 0.5,\n        fill: \"#F00\",\n      });\n      // Blue Polygon2\n      polygon2.properties = Object.assign(polygon2.properties || {}, {\n        \"fill-opacity\": 0.5,\n        fill: \"#00F\",\n      });\n\n      const fc = featureCollection([polygon1, polygon2]);\n      const result = intersect(fc);\n      if (result) {\n        // Green Polygon\n        result.properties = { \"fill-opacity\": 1, fill: \"#0F0\" };\n        fc.features.push(result);\n      }\n\n      if (process.env.REGEN)\n        writeJsonFileSync(directories.out + filename, result);\n      t.deepEqual(fc, loadJsonFileSync(directories.out + filename), name);\n    }\n  }\n\n  t.end();\n});\n\ntest(\"intersect - unable to complete output ring - issue 2048\", (t) => {\n  // Test examples copied from https://github.com/Turfjs/turf/issues/2048\n  let polys: FeatureCollection<Polygon>;\n\n  polys = loadJsonFileSync(\n    directories.in + \"unable-to-complete-output-ring-2048-1.geojson\"\n  ) as FeatureCollection<Polygon>;\n\n  // This used to fail with \"Unable to complete output ring ...\"\n  t.doesNotThrow(() => intersect(polys), \"does not throw ex 1\");\n\n  polys = loadJsonFileSync(\n    directories.in + \"unable-to-complete-output-ring-2048-2.geojson\"\n  ) as FeatureCollection<Polygon>;\n\n  // This used to fail with \"Unable to complete output ring ...\"\n  t.doesNotThrow(() => intersect(polys), \"does not throw ex 2\");\n\n  t.end();\n});\n\ntest(\"intersect - infinite loop - issue 2705\", (t) => {\n  // Test examples copied from https://github.com/Turfjs/turf/issues/2705\n  let polys: FeatureCollection<Polygon>;\n\n  polys = loadJsonFileSync(\n    directories.in + \"infinite-loop-2705.geojson\"\n  ) as FeatureCollection<Polygon>;\n\n  // This used to get stuck in an infinite loop\n  intersect(polys);\n\n  t.ok(true, \"should not get stuck in an infinite loop\");\n\n  t.end();\n});\n\ntest.skip(\"intersect - infinite loop - issue 2601\", (t) => {\n  // Not actually going to commit the fixture file for this test as it's 76MB!\n  // Tested locally though and it produces an identical result with no\n  // workarounds: https://github.com/Turfjs/turf/issues/2601#issuecomment-2558307811\n\n  // Test examples copied from https://github.com/Turfjs/turf/issues/2601\n  let polys: FeatureCollection<Polygon>;\n\n  polys = loadJsonFileSync(\n    directories.in + \"infinite-loop-2601.geojson\"\n  ) as FeatureCollection<Polygon>;\n\n  // This used to get stuck in an infinite loop\n  intersect(polys);\n\n  t.ok(true, \"should not get stuck in an infinite loop\");\n\n  t.end();\n});\n\ntest.skip(\"intersect - missing islands - issue 2084\", (t) => {\n  // Unfortunately still broken, even with upgrade to polyclip-ts. Committing\n  // now so we can enable when a fix is available.\n\n  // Test example copied from https://github.com/Turfjs/turf/issues/2084\n  let polys: FeatureCollection<Polygon>;\n\n  polys = loadJsonFileSync(\n    directories.in + \"missing-islands-2084.geojson\"\n  ) as FeatureCollection<Polygon>;\n\n  // \"Islands\" in the multipolygon aren't being included in the result.\n  // TODO establish geojson file of expected output. For now clearly visually\n  // not the same as https://github.com/Turfjs/turf/issues/2084#issuecomment-849975182\n  const result = intersect(polys);\n  t.ok(true, \"islands included in intersection result\");\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-intersect/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-intersect/types.ts",
    "content": "import { featureCollection, polygon } from \"@turf/helpers\";\nimport { intersect } from \"./index.js\";\n\nconst poly1 = polygon([\n  [\n    [0, 0],\n    [1, 1],\n    [3, 0],\n    [0, 0],\n  ],\n]);\nconst poly2 = polygon([\n  [\n    [10, 10],\n    [21, 21],\n    [0, 4],\n    [10, 10],\n  ],\n]);\n\nconst match = intersect(featureCollection([poly1, poly2]));\n\nif (match === null) console.log(\"foo\");\n\nconst foo = intersect(featureCollection([poly1, poly2])) || \"bar\";\n"
  },
  {
    "path": "packages/turf-invariant/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-invariant/README.md",
    "content": "# @turf/invariant\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## getCoord\n\nUnwrap a coordinate from a Point Feature, Geometry or a single coordinate.\n\n### Parameters\n\n*   `coord` **([Array][1]<[number][2]> | [Geometry][3]<[Point][4]> | [Feature][5]<[Point][4]>)** GeoJSON Point or an Array of numbers\n\n### Examples\n\n```javascript\nvar pt = turf.point([10, 10]);\n\nvar coord = turf.getCoord(pt);\n//= [10, 10]\n```\n\nReturns **[Array][1]<[number][2]>** coordinates\n\n## getCoords\n\nUnwrap coordinates from a Feature, Geometry Object or an Array\n\n### Parameters\n\n*   `coords` **([Array][1]\\<any> | [Geometry][3] | [Feature][5])** Feature, Geometry Object or an Array\n\n### Examples\n\n```javascript\nvar poly = turf.polygon([[[119.32, -8.7], [119.55, -8.69], [119.51, -8.54], [119.32, -8.7]]]);\n\nvar coords = turf.getCoords(poly);\n//= [[[119.32, -8.7], [119.55, -8.69], [119.51, -8.54], [119.32, -8.7]]]\n```\n\nReturns **[Array][1]\\<any>** coordinates\n\n## containsNumber\n\nChecks if coordinates contains a number\n\n### Parameters\n\n*   `coordinates` **[Array][1]\\<any>** GeoJSON Coordinates\n\nReturns **[boolean][6]** true if Array contains a number\n\n## geojsonType\n\nEnforce expectations about types of GeoJSON objects for Turf.\n\n### Parameters\n\n*   `value` **[GeoJSON][7]** any GeoJSON object\n*   `type` **[string][8]** expected GeoJSON type\n*   `name` **[string][8]** name of calling function\n\n<!---->\n\n*   Throws **[Error][9]** if value is not the expected type.\n\nReturns **void**&#x20;\n\n## featureOf\n\nEnforce expectations about types of [Feature][5] inputs for Turf.\nInternally this uses [geojsonType][10] to judge geometry types.\n\n### Parameters\n\n*   `feature` **[Feature][5]** a feature with an expected geometry type\n*   `type` **[string][8]** expected GeoJSON type\n*   `name` **[string][8]** name of calling function\n\n<!---->\n\n*   Throws **[Error][9]** error if value is not the expected type.\n\nReturns **void**&#x20;\n\n## collectionOf\n\nEnforce expectations about types of [FeatureCollection][11] inputs for Turf.\nInternally this uses [geojsonType][10] to judge geometry types.\n\n### Parameters\n\n*   `featureCollection` **[FeatureCollection][11]** a FeatureCollection for which features will be judged\n*   `type` **[string][8]** expected GeoJSON type\n*   `name` **[string][8]** name of calling function\n\n<!---->\n\n*   Throws **[Error][9]** if value is not the expected type.\n\n## getGeom\n\nGet Geometry from Feature or Geometry Object\n\n### Parameters\n\n*   `geojson` **([Feature][5] | [Geometry][3])** GeoJSON Feature or Geometry Object\n\n### Examples\n\n```javascript\nvar point = {\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [110, 40]\n  }\n}\nvar geom = turf.getGeom(point)\n//={\"type\": \"Point\", \"coordinates\": [110, 40]}\n```\n\n*   Throws **[Error][9]** if geojson is not a Feature or Geometry Object\n\nReturns **([Geometry][3] | null)** GeoJSON Geometry Object\n\n## getType\n\nGet GeoJSON object's type, Geometry type is prioritize.\n\n### Parameters\n\n*   `geojson` **[GeoJSON][7]** GeoJSON object\n*   `_name` **[string][8]?**&#x20;\n*   `name` **[string][8]** name of the variable to display in error message (unused) (optional, default `\"geojson\"`)\n\n### Examples\n\n```javascript\nvar point = {\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [110, 40]\n  }\n}\nvar geom = turf.getType(point)\n//=\"Point\"\n```\n\nReturns **[string][8]** GeoJSON type\n\n[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3\n\n[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n[9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error\n\n[10]: #geojsontype\n\n[11]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/invariant\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-invariant/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport * as helpers from \"@turf/helpers\";\nimport * as invariant from \"./index.js\";\n\nconst pt = helpers.point([-75, 40]);\nconst line = helpers.lineString([\n  [-75, 40],\n  [-70, 50],\n]);\nconst poly = helpers.polygon([\n  [\n    [-75, 40],\n    [-80, 50],\n    [-70, 50],\n    [-75, 40],\n  ],\n]);\nconst fc = helpers.points([\n  [-75, 40],\n  [20, 50],\n]);\n\nconst suite = new Benchmark.Suite(\"turf-invariant\");\n\n/**\n * Benchmark Results\n *\n * getCoord -- pt x 60,659,161 ops/sec ±1.34% (89 runs sampled)\n * getCoords -- line x 63,252,327 ops/sec ±1.19% (81 runs sampled)\n * getCoords -- poly x 62,053,169 ops/sec ±1.49% (85 runs sampled)\n * collectionOf -- fc x 24,204,462 ops/sec ±2.00% (81 runs sampled)\n * getType -- pt x 59,544,117 ops/sec ±1.14% (87 runs sampled)\n */\nsuite\n  .add(\"getCoord -- pt\", () => invariant.getCoord(pt))\n  .add(\"getCoords -- line\", () => invariant.getCoords(line))\n  .add(\"getCoords -- poly\", () => invariant.getCoords(poly))\n  .add(\"collectionOf -- fc\", () => invariant.collectionOf(fc, \"Point\", \"bench\"))\n  .add(\"getType -- pt\", () => invariant.getType(pt))\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-invariant/index.ts",
    "content": "import {\n  Feature,\n  FeatureCollection,\n  Geometry,\n  LineString,\n  MultiPoint,\n  MultiLineString,\n  MultiPolygon,\n  Point,\n  Polygon,\n} from \"geojson\";\nimport { isNumber } from \"@turf/helpers\";\n\n/**\n * Unwrap a coordinate from a Point Feature, Geometry or a single coordinate.\n *\n * @function\n * @param {Array<number>|Geometry<Point>|Feature<Point>} coord GeoJSON Point or an Array of numbers\n * @returns {Array<number>} coordinates\n * @example\n * var pt = turf.point([10, 10]);\n *\n * var coord = turf.getCoord(pt);\n * //= [10, 10]\n */\nfunction getCoord(coord: Feature<Point> | Point | number[]): number[] {\n  if (!coord) {\n    throw new Error(\"coord is required\");\n  }\n\n  if (!Array.isArray(coord)) {\n    if (\n      coord.type === \"Feature\" &&\n      coord.geometry !== null &&\n      coord.geometry.type === \"Point\"\n    ) {\n      return [...coord.geometry.coordinates];\n    }\n    if (coord.type === \"Point\") {\n      return [...coord.coordinates];\n    }\n  }\n  if (\n    Array.isArray(coord) &&\n    coord.length >= 2 &&\n    !Array.isArray(coord[0]) &&\n    !Array.isArray(coord[1])\n  ) {\n    return [...coord];\n  }\n\n  throw new Error(\"coord must be GeoJSON Point or an Array of numbers\");\n}\n\n/**\n * Unwrap coordinates from a Feature, Geometry Object or an Array\n *\n * @function\n * @param {Array<any>|Geometry|Feature} coords Feature, Geometry Object or an Array\n * @returns {Array<any>} coordinates\n * @example\n * var poly = turf.polygon([[[119.32, -8.7], [119.55, -8.69], [119.51, -8.54], [119.32, -8.7]]]);\n *\n * var coords = turf.getCoords(poly);\n * //= [[[119.32, -8.7], [119.55, -8.69], [119.51, -8.54], [119.32, -8.7]]]\n */\nfunction getCoords<\n  G extends\n    | Point\n    | LineString\n    | Polygon\n    | MultiPoint\n    | MultiLineString\n    | MultiPolygon,\n>(coords: any[] | Feature<G> | G): any[] {\n  if (Array.isArray(coords)) {\n    return coords;\n  }\n\n  // Feature\n  if (coords.type === \"Feature\") {\n    if (coords.geometry !== null) {\n      return coords.geometry.coordinates;\n    }\n  } else {\n    // Geometry\n    if (coords.coordinates) {\n      return coords.coordinates;\n    }\n  }\n\n  throw new Error(\n    \"coords must be GeoJSON Feature, Geometry Object or an Array\"\n  );\n}\n\n/**\n * Checks if coordinates contains a number\n *\n * @function\n * @param {Array<any>} coordinates GeoJSON Coordinates\n * @returns {boolean} true if Array contains a number\n */\nfunction containsNumber(coordinates: any[]): boolean {\n  if (\n    coordinates.length > 1 &&\n    isNumber(coordinates[0]) &&\n    isNumber(coordinates[1])\n  ) {\n    return true;\n  }\n\n  if (Array.isArray(coordinates[0]) && coordinates[0].length) {\n    return containsNumber(coordinates[0]);\n  }\n  throw new Error(\"coordinates must only contain numbers\");\n}\n\n/**\n * Enforce expectations about types of GeoJSON objects for Turf.\n *\n * @function\n * @param {GeoJSON} value any GeoJSON object\n * @param {string} type expected GeoJSON type\n * @param {string} name name of calling function\n * @throws {Error} if value is not the expected type.\n */\nfunction geojsonType(value: any, type: string, name: string): void {\n  if (!type || !name) {\n    throw new Error(\"type and name required\");\n  }\n\n  if (!value || value.type !== type) {\n    throw new Error(\n      \"Invalid input to \" +\n        name +\n        \": must be a \" +\n        type +\n        \", given \" +\n        value.type\n    );\n  }\n}\n\n/**\n * Enforce expectations about types of {@link Feature} inputs for Turf.\n * Internally this uses {@link geojsonType} to judge geometry types.\n *\n * @function\n * @param {Feature} feature a feature with an expected geometry type\n * @param {string} type expected GeoJSON type\n * @param {string} name name of calling function\n * @throws {Error} error if value is not the expected type.\n */\nfunction featureOf(feature: Feature<any>, type: string, name: string): void {\n  if (!feature) {\n    throw new Error(\"No feature passed\");\n  }\n  if (!name) {\n    throw new Error(\".featureOf() requires a name\");\n  }\n  if (!feature || feature.type !== \"Feature\" || !feature.geometry) {\n    throw new Error(\n      \"Invalid input to \" + name + \", Feature with geometry required\"\n    );\n  }\n  if (!feature.geometry || feature.geometry.type !== type) {\n    throw new Error(\n      \"Invalid input to \" +\n        name +\n        \": must be a \" +\n        type +\n        \", given \" +\n        feature.geometry.type\n    );\n  }\n}\n\n/**\n * Enforce expectations about types of {@link FeatureCollection} inputs for Turf.\n * Internally this uses {@link geojsonType} to judge geometry types.\n *\n * @function\n * @param {FeatureCollection} featureCollection a FeatureCollection for which features will be judged\n * @param {string} type expected GeoJSON type\n * @param {string} name name of calling function\n * @throws {Error} if value is not the expected type.\n */\nfunction collectionOf(\n  featureCollection: FeatureCollection<any>,\n  type: string,\n  name: string\n) {\n  if (!featureCollection) {\n    throw new Error(\"No featureCollection passed\");\n  }\n  if (!name) {\n    throw new Error(\".collectionOf() requires a name\");\n  }\n  if (!featureCollection || featureCollection.type !== \"FeatureCollection\") {\n    throw new Error(\n      \"Invalid input to \" + name + \", FeatureCollection required\"\n    );\n  }\n  for (const feature of featureCollection.features) {\n    if (!feature || feature.type !== \"Feature\" || !feature.geometry) {\n      throw new Error(\n        \"Invalid input to \" + name + \", Feature with geometry required\"\n      );\n    }\n    if (!feature.geometry || feature.geometry.type !== type) {\n      throw new Error(\n        \"Invalid input to \" +\n          name +\n          \": must be a \" +\n          type +\n          \", given \" +\n          feature.geometry.type\n      );\n    }\n  }\n}\n\n/**\n * Get Geometry from Feature or Geometry Object\n *\n * @param {Feature|Geometry} geojson GeoJSON Feature or Geometry Object\n * @returns {Geometry|null} GeoJSON Geometry Object\n * @throws {Error} if geojson is not a Feature or Geometry Object\n * @example\n * var point = {\n *   \"type\": \"Feature\",\n *   \"properties\": {},\n *   \"geometry\": {\n *     \"type\": \"Point\",\n *     \"coordinates\": [110, 40]\n *   }\n * }\n * var geom = turf.getGeom(point)\n * //={\"type\": \"Point\", \"coordinates\": [110, 40]}\n */\nfunction getGeom<G extends Geometry>(geojson: Feature<G> | G): G {\n  if (geojson.type === \"Feature\") {\n    return geojson.geometry;\n  }\n  return geojson;\n}\n\n/**\n * Get GeoJSON object's type, Geometry type is prioritize.\n *\n * @param {GeoJSON} geojson GeoJSON object\n * @param {string} [name=\"geojson\"] name of the variable to display in error message (unused)\n * @returns {string} GeoJSON type\n * @example\n * var point = {\n *   \"type\": \"Feature\",\n *   \"properties\": {},\n *   \"geometry\": {\n *     \"type\": \"Point\",\n *     \"coordinates\": [110, 40]\n *   }\n * }\n * var geom = turf.getType(point)\n * //=\"Point\"\n */\nfunction getType(\n  geojson: Feature<any> | FeatureCollection<any> | Geometry,\n  _name?: string\n): string {\n  if (geojson.type === \"FeatureCollection\") {\n    return \"FeatureCollection\";\n  }\n  if (geojson.type === \"GeometryCollection\") {\n    return \"GeometryCollection\";\n  }\n  if (geojson.type === \"Feature\" && geojson.geometry !== null) {\n    return geojson.geometry.type;\n  }\n  return geojson.type;\n}\n\nexport {\n  getCoord,\n  getCoords,\n  containsNumber,\n  geojsonType,\n  featureOf,\n  collectionOf,\n  getGeom,\n  getType,\n};\n// No default export!\n"
  },
  {
    "path": "packages/turf-invariant/package.json",
    "content": "{\n  \"name\": \"@turf/invariant\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Lightweight utility for input validation and data extraction in Turf.js. Ensures GeoJSON inputs are in the correct format and extracts specific components like coordinates or geometries.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Tom MacWright <@tmcw>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"invariant\",\n    \"expectations\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-invariant/test.ts",
    "content": "import test from \"tape\";\nimport {\n  point,\n  lineString,\n  polygon,\n  featureCollection,\n  geometryCollection,\n} from \"@turf/helpers\";\nimport * as invariant from \"./index.js\";\n\ntest(\"invariant -- containsNumber\", (t) => {\n  t.equals(invariant.containsNumber([1, 1]), true);\n  t.equals(\n    invariant.containsNumber([\n      [1, 1],\n      [1, 1],\n    ]),\n    true\n  );\n  t.equals(\n    invariant.containsNumber([\n      [\n        [1, 1],\n        [1, 1],\n      ],\n      [1, 1],\n    ]),\n    true\n  );\n\n  //# Ensure recursive call handles Max callstack exceeded\n  t.throws(\n    () => {\n      invariant.containsNumber([\"foo\", 1]);\n    },\n    /coordinates must only contain numbers/,\n    \"Must only contain numbers\"\n  );\n  t.end();\n});\n\ntest(\"invariant -- geojsonType\", (t) => {\n  t.throws(\n    () => {\n      invariant.geojsonType();\n    },\n    /type and name required/,\n    \".geojsonType() name requirement\"\n  );\n\n  t.throws(\n    () => {\n      invariant.geojsonType({}, undefined, \"myfn\");\n    },\n    /type and name required/,\n    \"invalid types\"\n  );\n\n  t.throws(\n    () => {\n      invariant.geojsonType(\n        {\n          type: \"Point\",\n          coordinates: [0, 0],\n        },\n        \"Polygon\",\n        \"myfn\"\n      );\n    },\n    /Invalid input to myfn: must be a Polygon, given Point/,\n    \"invalid geometry type\"\n  );\n\n  t.doesNotThrow(() => {\n    invariant.geojsonType(\n      {\n        type: \"Point\",\n        coordinates: [0, 0],\n      },\n      \"Point\",\n      \"myfn\"\n    );\n  }, \"valid geometry\");\n\n  t.end();\n});\n\ntest(\"invariant -- featureOf\", (t) => {\n  t.throws(\n    () => {\n      invariant.featureOf(\n        {\n          type: \"Feature\",\n          geometry: {\n            type: \"Point\",\n            coordinates: [0, 0],\n          },\n          properties: {},\n        },\n        \"Polygon\"\n      );\n    },\n    /requires a name/,\n    \"requires a name\"\n  );\n\n  t.throws(\n    () => {\n      invariant.featureOf({}, \"Polygon\", \"foo\");\n    },\n    /Feature with geometry required/,\n    \"requires a feature\"\n  );\n\n  t.throws(\n    () => {\n      invariant.featureOf(\n        {\n          type: \"Feature\",\n          geometry: {\n            type: \"Point\",\n            coordinates: [0, 0],\n          },\n          properties: {},\n        },\n        \"Polygon\",\n        \"myfn\"\n      );\n    },\n    /Invalid input to myfn: must be a Polygon, given Point/,\n    \"invalid geometry type\"\n  );\n\n  t.doesNotThrow(() => {\n    invariant.featureOf(\n      {\n        type: \"Feature\",\n        geometry: {\n          type: \"Point\",\n          coordinates: [0, 0],\n        },\n        properties: {},\n      },\n      \"Point\",\n      \"myfn\"\n    );\n  }, \"valid geometry type\");\n\n  t.end();\n});\n\ntest(\"invariant -- collectionOf\", (t) => {\n  t.throws(\n    () => {\n      invariant.collectionOf(\n        {\n          type: \"FeatureCollection\",\n          features: [\n            {\n              type: \"Feature\",\n              geometry: {\n                type: \"Point\",\n                coordinates: [0, 0],\n              },\n              properties: {},\n            },\n          ],\n        },\n        \"Polygon\",\n        \"myfn\"\n      );\n    },\n    /Invalid input to myfn: must be a Polygon, given Point/,\n    \"invalid geometry type\"\n  );\n\n  t.throws(\n    () => {\n      invariant.collectionOf({}, \"Polygon\");\n    },\n    /requires a name/,\n    \"requires a name\"\n  );\n\n  t.throws(\n    () => {\n      invariant.collectionOf({}, \"Polygon\", \"foo\");\n    },\n    /FeatureCollection required/,\n    \"requires a featurecollection\"\n  );\n\n  t.doesNotThrow(() => {\n    invariant.collectionOf(\n      {\n        type: \"FeatureCollection\",\n        features: [\n          {\n            type: \"Feature\",\n            geometry: {\n              type: \"Point\",\n              coordinates: [0, 0],\n            },\n            properties: {},\n          },\n        ],\n      },\n      \"Point\",\n      \"myfn\"\n    );\n  }, \"valid geometry type\");\n\n  t.end();\n});\n\ntest(\"invariant -- getCoord\", (t) => {\n  t.throws(() =>\n    invariant.getCoord(\n      lineString([\n        [1, 2],\n        [3, 4],\n      ])\n    )\n  );\n  t.throws(() =>\n    invariant.getCoord(\n      polygon([\n        [\n          [-75, 40],\n          [-80, 50],\n          [-70, 50],\n          [-75, 40],\n        ],\n      ])\n    )\n  );\n\n  t.deepEqual(\n    invariant.getCoord({\n      type: \"Point\",\n      coordinates: [1, 2],\n    }),\n    [1, 2]\n  );\n\n  t.deepEqual(invariant.getCoord(point([1, 2])), [1, 2]);\n  t.end();\n});\n\ntest(\"invariant -- getCoord\", (t) => {\n  t.throws(() =>\n    invariant.getCoord({\n      type: \"LineString\",\n      coordinates: [\n        [1, 2],\n        [3, 4],\n      ],\n    })\n  );\n\n  t.throws(() => invariant.getCoord(false), \"false should throw Error\");\n  t.throws(() => invariant.getCoord(null), \"null should throw Error\");\n  t.throws(\n    () =>\n      invariant.getCoord(\n        lineString([\n          [1, 2],\n          [3, 4],\n        ])\n      ),\n    \"LineString is not a Point\"\n  );\n  t.throws(\n    () => invariant.getCoord([10]),\n    \"Single number Array should throw Error\"\n  );\n  // t.throws(() => invariant.getCoord(['A', 'B']), 'Array of String should throw Error');\n  // t.throws(() => invariant.getCoord([1, 'foo']), 'Mixed Array should throw Error');\n\n  t.deepEqual(\n    invariant.getCoord({\n      type: \"Point\",\n      coordinates: [1, 2],\n    }),\n    [1, 2]\n  );\n\n  t.deepEqual(invariant.getCoord(point([1, 2])), [1, 2]);\n  t.deepEqual(invariant.getCoord([1, 2]), [1, 2]);\n  t.end();\n});\n\ntest(\"invariant -- getCoords\", (t) => {\n  t.throws(() =>\n    invariant.getCoords({\n      type: \"LineString\",\n      coordinates: null,\n    })\n  );\n\n  t.throws(() => invariant.getCoords(false));\n  t.throws(() => invariant.getCoords(null));\n  t.throws(() =>\n    invariant.containsNumber(invariant.getCoords([\"A\", \"B\", \"C\"]))\n  );\n  t.throws(() =>\n    invariant.containsNumber(invariant.getCoords([1, \"foo\", \"bar\"]))\n  );\n\n  t.deepEqual(\n    invariant.getCoords({\n      type: \"LineString\",\n      coordinates: [\n        [1, 2],\n        [3, 4],\n      ],\n    }),\n    [\n      [1, 2],\n      [3, 4],\n    ]\n  );\n\n  t.deepEqual(invariant.getCoords(point([1, 2])), [1, 2]);\n  t.deepEqual(\n    invariant.getCoords(\n      lineString([\n        [1, 2],\n        [3, 4],\n      ])\n    ),\n    [\n      [1, 2],\n      [3, 4],\n    ]\n  );\n  t.deepEqual(invariant.getCoords([1, 2]), [1, 2]);\n  t.end();\n});\n\ntest(\"invariant -- getGeom\", (t) => {\n  const pt = point([1, 1]);\n  const line = lineString([\n    [0, 1],\n    [1, 1],\n  ]);\n  const geomCollection = geometryCollection([pt.geometry, line.geometry]);\n\n  t.deepEqual(invariant.getGeom(pt), pt.geometry, \"Point\");\n  t.deepEqual(invariant.getGeom(line.geometry), line.geometry, \"LineString\");\n  t.deepEqual(\n    invariant.getGeom(geomCollection),\n    geomCollection.geometry,\n    \"GeometryCollection\"\n  );\n  t.deepEqual(\n    invariant.getGeom(geomCollection.geometry),\n    geomCollection.geometry,\n    \"GeometryCollection\"\n  );\n  t.end();\n});\n\ntest(\"invariant -- getType\", (t) => {\n  const pt = point([1, 1]);\n  const line = lineString([\n    [0, 1],\n    [1, 1],\n  ]);\n  const collection = featureCollection([pt, line]);\n  const geomCollection = geometryCollection([pt.geometry, line.geometry]);\n\n  t.deepEqual(invariant.getType(pt), \"Point\");\n  t.deepEqual(invariant.getType(line.geometry), \"LineString\");\n  t.deepEqual(invariant.getType(geomCollection), \"GeometryCollection\");\n  t.deepEqual(invariant.getType(collection), \"FeatureCollection\");\n  // t.throws(() => invariant.getType(null), /geojson is required/, 'geojson is required');\n  t.end();\n});\n\n// https://github.com/Turfjs/turf/issues/853\ntest(\"null geometries\", (t) => {\n  const nullFeature = {\n    type: \"Feature\",\n    properties: {},\n    geometry: null,\n  };\n  // t.throws(() => invariant.getGeom(null), /geojson is required/, 'getGeom => geojson is required');\n  t.throws(\n    () => invariant.getCoords(nullFeature),\n    /coords must be GeoJSON Feature, Geometry Object or an Array/,\n    \"getCoords => coords must be GeoJSON Feature, Geometry Object or an Array\"\n  );\n  t.throws(\n    () => invariant.getCoord(nullFeature),\n    /coord must be GeoJSON Point or an Array of numbers/,\n    \"getCoord => coord must be GeoJSON Point or an Array of numbers\"\n  );\n\n  // t.equal(invariant.getGeom(nullFeature), null, 'getGeom => null');\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-invariant/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-invariant/types.ts",
    "content": "import * as helpers from \"@turf/helpers\";\nimport {\n  GeometryCollection,\n  LineString,\n  Point,\n  Polygon,\n  Position,\n} from \"geojson\";\nimport * as invariant from \"./index.js\";\n\n/**\n * Fixtures\n */\nconst pt = helpers.point([0, 0]);\nconst line = helpers.lineString([\n  [0, 0],\n  [1, 1],\n]);\nconst poly = helpers.polygon([\n  [\n    [0, 0],\n    [1, 1],\n    [2, 2],\n    [0, 0],\n  ],\n]);\nconst gc = helpers.geometryCollection([\n  pt.geometry,\n  line.geometry,\n  poly.geometry,\n]);\nconst fc = helpers.featureCollection<Point | LineString | Polygon>([\n  pt,\n  line,\n  poly,\n]);\n\n/**\n * invariant.getGeom\n */\n// invariant.getGeom(fc); // Argument of type 'FeatureCollection<any>' is not assignable to parameter of type\nconst gcGeom: GeometryCollection = invariant.getGeom(gc);\nconst pointGeom: Point = invariant.getGeom(pt);\nconst lineGeom: LineString = invariant.getGeom(line);\nconst polyGeom: Polygon = invariant.getGeom(poly);\n\n/**\n * invariant.getType\n */\nconst type = invariant.getType(pt);\n\n/**\n * getCoord\n */\ninvariant.getCoord(pt);\ninvariant.getCoord(pt.geometry);\ninvariant.getCoord(pt.geometry.coordinates);\nlet coordZ = [10, 30, 2000];\ncoordZ = invariant.getCoord(coordZ);\n\n/**\n * getCoords\n */\ninvariant.getCoords(pt.geometry)[0].toFixed();\ninvariant.getCoords(pt.geometry.coordinates)[0].toFixed();\ninvariant.getCoords(pt)[0].toFixed();\ninvariant.getCoords(line.geometry)[0][0].toFixed();\ninvariant.getCoords(line.geometry.coordinates)[0][0].toFixed();\ninvariant.getCoords(line)[0][0].toFixed();\ninvariant.getCoords(poly)[0][0][0].toFixed();\ninvariant.getCoords(poly.geometry)[0][0][0].toFixed();\ninvariant.getCoords(poly.geometry.coordinates)[0][0][0].toFixed();\nconst lineCoords: Position[] = [\n  [10, 30],\n  [40, 40],\n];\ninvariant.getCoords(lineCoords)[0][0].toFixed();\n"
  },
  {
    "path": "packages/turf-isobands/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-isobands/README.md",
    "content": "# @turf/isobands\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## isobands\n\nTakes a square or rectangular grid [FeatureCollection][1] of [Point][2] features with z-values and an array of\nvalue breaks and generates filled contour isobands.\n\n### Parameters\n\n*   `pointGrid` **[FeatureCollection][1]<[Point][2]>** input points - must be square or rectangular and already gridded. That is, to have consistent x and y dimensions and be at least 2x2 in size.\n*   `breaks` **[Array][3]<[number][4]>** where to draw contours\n*   `options` **[Object][5]** options on output (optional, default `{}`)\n\n    *   `options.zProperty` **[string][6]** the property name in `points` from which z-values will be pulled (optional, default `'elevation'`)\n    *   `options.commonProperties` **[Object][5]** GeoJSON properties passed to ALL isobands (optional, default `{}`)\n    *   `options.breaksProperties` **[Array][3]<[Object][5]>** GeoJSON properties passed, in order, to the correspondent isoband (order defined by breaks) (optional, default `[]`)\n\nReturns **[FeatureCollection][1]<[MultiPolygon][7]>** a FeatureCollection of [MultiPolygon][7] features representing isobands\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/isobands\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-isobands/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { matrixToGrid } from \"./lib/matrix-to-grid.js\";\nimport { isobands } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n// Define Fixtures\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    jsondata: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * bigMatrix x 73.43 ops/sec ±2.12% (62 runs sampled)\n * matrix1 x 5,205 ops/sec ±3.13% (78 runs sampled)\n * matrix2 x 2,333 ops/sec ±9.38% (71 runs sampled)\n * pointGrid x 3,201 ops/sec ±1.81% (78 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-isobands\");\nfor (const { name, jsondata, filename } of fixtures) {\n  let breaks, points, zProperty, isobandProperties, commonProperties;\n  // allow geojson featureCollection...\n  if (filename.includes(\"geojson\")) {\n    breaks = jsondata.properties.breaks;\n    zProperty = jsondata.properties.zProperty;\n    commonProperties = jsondata.properties.commonProperties;\n    isobandProperties = jsondata.properties.isobandProperties;\n    points = jsondata;\n  } else {\n    // ...or matrix input\n    const matrix = jsondata.matrix;\n    const cellSize = jsondata.cellSize;\n    const origin = jsondata.origin;\n    breaks = jsondata.breaks;\n    zProperty = jsondata.zProperty;\n    points = matrixToGrid(matrix, origin, cellSize, {\n      zProperty,\n      units: jsondata.units,\n    });\n    commonProperties = jsondata.commonProperties;\n    isobandProperties = jsondata.isobandProperties;\n  }\n\n  isobands(points, breaks, {\n    zProperty,\n    commonProperties,\n    isobandProperties,\n  });\n\n  // isobands(geojson, 'elevation', [5, 45, 55, 65, 85,  95, 105, 120, 180]);\n  suite.add(name, () =>\n    isobands(points, breaks, {\n      zProperty,\n      commonProperties,\n      isobandProperties,\n    })\n  );\n}\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-isobands/index.ts",
    "content": "import { bbox } from \"@turf/bbox\";\nimport { area } from \"@turf/area\";\nimport { booleanPointInPolygon } from \"@turf/boolean-point-in-polygon\";\nimport { explode } from \"@turf/explode\";\nimport { collectionOf } from \"@turf/invariant\";\nimport {\n  polygon,\n  multiPolygon,\n  featureCollection,\n  isObject,\n} from \"@turf/helpers\";\n\nimport {\n  FeatureCollection,\n  Point,\n  GeoJsonProperties,\n  MultiPolygon,\n  Position,\n  Polygon,\n  Feature,\n} from \"geojson\";\nimport { gridToMatrix } from \"./lib/grid-to-matrix.js\";\n\ntype GroupRingProps = { [prop: string]: string };\ntype GroupedRings =\n  | {\n      groupedRings: Position[][][];\n    }\n  | GroupRingProps;\n\n/**\n * Takes a square or rectangular grid {@link FeatureCollection} of {@link Point} features with z-values and an array of\n * value breaks and generates filled contour isobands.\n *\n * @function\n * @param {FeatureCollection<Point>} pointGrid input points - must be square or rectangular and already gridded. That is, to have consistent x and y dimensions and be at least 2x2 in size.\n * @param {Array<number>} breaks where to draw contours\n * @param {Object} [options={}] options on output\n * @param {string} [options.zProperty='elevation'] the property name in `points` from which z-values will be pulled\n * @param {Object} [options.commonProperties={}] GeoJSON properties passed to ALL isobands\n * @param {Array<Object>} [options.breaksProperties=[]] GeoJSON properties passed, in order, to the correspondent isoband (order defined by breaks)\n * @returns {FeatureCollection<MultiPolygon>} a FeatureCollection of {@link MultiPolygon} features representing isobands\n */\nfunction isobands(\n  pointGrid: FeatureCollection<Point>,\n  breaks: number[],\n  options?: {\n    zProperty?: string;\n    commonProperties?: GeoJsonProperties;\n    breaksProperties?: GeoJsonProperties[];\n  }\n): FeatureCollection<MultiPolygon> {\n  // Optional parameters\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  const zProperty = options.zProperty || \"elevation\";\n  const commonProperties = options.commonProperties || {};\n  const breaksProperties = options.breaksProperties || [];\n\n  // Validation\n  collectionOf(pointGrid, \"Point\", \"Input must contain Points\");\n  if (!breaks) throw new Error(\"breaks is required\");\n  if (!Array.isArray(breaks)) throw new Error(\"breaks is not an Array\");\n  if (!isObject(commonProperties))\n    throw new Error(\"commonProperties is not an Object\");\n  if (!Array.isArray(breaksProperties))\n    throw new Error(\"breaksProperties is not an Array\");\n\n  // Isoband methods\n  const matrix = gridToMatrix(pointGrid, { zProperty: zProperty, flip: true });\n\n  // A quick note on what 'top' and 'bottom' mean in coordinate system of `matrix`:\n  // Remember that the southern hemisphere is represented by negative numbers,\n  // so a matrix Y of 0 is actually the *bottom*, and a Y of dy - 1 is the *top*.\n\n  // check that the resulting matrix has consistent x and y dimensions and\n  // has at least a 2x2 size so that we can actually build grid squares\n  const dx = matrix[0].length;\n  if (matrix.length < 2 || dx < 2) {\n    throw new Error(\"Matrix of points must be at least 2x2\");\n  }\n  for (let i = 1; i < matrix.length; i++) {\n    if (matrix[i].length !== dx) {\n      throw new Error(\"Matrix of points is not uniform in the x dimension\");\n    }\n  }\n\n  let contours = createContourLines(matrix, breaks, zProperty);\n  contours = rescaleContours(contours, matrix, pointGrid);\n\n  const multipolygons = contours.map((contour, index) => {\n    if (breaksProperties[index] && !isObject(breaksProperties[index])) {\n      throw new Error(\"Each mappedProperty is required to be an Object\");\n    }\n    // collect all properties\n    const contourProperties = {\n      ...commonProperties,\n      ...breaksProperties[index],\n    };\n\n    contourProperties[zProperty] = (contour as GroupRingProps)[zProperty];\n\n    const multiP = multiPolygon(\n      contour.groupedRings as Position[][][],\n      contourProperties\n    );\n    return multiP;\n  });\n\n  return featureCollection(multipolygons);\n}\n\n/**\n * Creates the contours lines (featuresCollection of polygon features) from the 2D data grid\n *\n * Marchingsquares process the grid data as a 3D representation of a function on a 2D plane, therefore it\n * assumes the points (x-y coordinates) are one 'unit' distance. The result of the IsoBands function needs to be\n * rescaled, with turfjs, to the original area and proportions on the map\n *\n * @private\n * @param {Array<Array<number>>} matrix Grid Data\n * @param {Array<number>} breaks Breaks\n * @param {string} [property='elevation'] Property\n * @returns {Array<any>} contours\n */\nfunction createContourLines(\n  matrix: number[][],\n  breaks: number[],\n  property: string\n): GroupedRings[] {\n  const contours: GroupedRings[] = [];\n\n  let prevSegments: Position[][];\n  for (let i = 1; i < breaks.length; i++) {\n    // the first time through this loop, we need to create the segments for the first break\n    if (i === 1) {\n      prevSegments = getSegments(matrix, +breaks[0]);\n    }\n\n    const upperBand = +breaks[i]; // make sure the breaks value is a number\n    const lowerBand = +breaks[i - 1];\n    const segments = getSegments(matrix, upperBand);\n\n    // We will use breaks[i]'s rings to help close breaks[i-1]'s rings.\n    // breaks[i]'s rings are clockwise from the point of view of breaks[i - 1] and must be reversed for proper counterclockwise ordering.\n    // At the same time, we clone each Position, so that we don't use the same Position Array instance in different output geometries.\n    const reverseSegments = segments.map((segment) =>\n      // note that we (in-place) reverse the array result of .map and not the original segment itself.\n      segment.map((pos) => [pos[0], pos[1]]).reverse()\n    );\n\n    // use the segments from breaks[i-1] and breaks[i] to create rings, which will\n    // then be combined into polygons in the next steps.\n    const rings = assembleRings(prevSegments!.concat(reverseSegments), matrix);\n\n    // as per GeoJson rules for creating a Polygon, make sure the first element\n    // in the array of LinearRings represents the exterior ring (i.e. biggest area),\n    // and any subsequent elements represent interior rings (i.e. smaller area);\n    // this avoids rendering issues of the MultiPolygons on the map\n    const orderedRings = orderByArea(rings);\n    const polygons = groupNestedRings(orderedRings);\n\n    // If we got no polygons, we can infer that the values are either all above, below, or between the thresholds.\n    // If everything is between, we need a polygon that covers the entire grid\n    // see https://github.com/Turfjs/turf/issues/1797, https://github.com/Turfjs/turf/issues/2956\n    if (\n      polygons.length === 0 &&\n      matrix[0][0] < upperBand &&\n      matrix[0][0] >= lowerBand\n    ) {\n      const dx = matrix[0].length;\n      const dy = matrix.length;\n      polygons.push([\n        [\n          [0, 0],\n          [dx - 1, 0],\n          [dx - 1, dy - 1],\n          [0, dy - 1],\n          [0, 0],\n        ],\n      ]);\n    }\n\n    // this can add an entry where groupedRings is exactly an empty array\n    contours.push({\n      groupedRings: polygons,\n      [property]: lowerBand + \"-\" + upperBand,\n    });\n\n    prevSegments = segments;\n  }\n\n  return contours;\n}\n\n/**\n * Run marching squares across the matrix and calculate the implied counterclockwise ordered line segments from each cell.\n * @see https://en.wikipedia.org/wiki/Marching_squares for an visualization of the different cases\n * @private\n */\nfunction getSegments(\n  matrix: ReadonlyArray<ReadonlyArray<number>>,\n  threshold: number\n): [Position, Position][] {\n  const segments: [Position, Position][] = [];\n\n  const dx = matrix[0].length;\n  const dy = matrix.length;\n\n  for (let y = 0; y < dy - 1; y++) {\n    for (let x = 0; x < dx - 1; x++) {\n      const tr = matrix[y + 1][x + 1];\n      const br = matrix[y][x + 1];\n      const bl = matrix[y][x];\n      const tl = matrix[y + 1][x];\n\n      let grid =\n        (tl >= threshold ? 8 : 0) |\n        (tr >= threshold ? 4 : 0) |\n        (br >= threshold ? 2 : 0) |\n        (bl >= threshold ? 1 : 0);\n\n      switch (grid) {\n        case 0:\n          continue;\n        case 1:\n          segments.push([\n            [x + frac(bl, br), y],\n            [x, y + frac(bl, tl)],\n          ]);\n          break;\n        case 2:\n          segments.push([\n            [x + 1, y + frac(br, tr)],\n            [x + frac(bl, br), y],\n          ]);\n          break;\n        case 3:\n          segments.push([\n            [x + 1, y + frac(br, tr)],\n            [x, y + frac(bl, tl)],\n          ]);\n          break;\n        case 4:\n          segments.push([\n            [x + frac(tl, tr), y + 1],\n            [x + 1, y + frac(br, tr)],\n          ]);\n          break;\n        case 5: {\n          // use the average of the 4 corners to differentiate the saddle case and correctly honor the counter-clockwise winding\n          const avg = (tl + tr + br + bl) / 4;\n          const above = avg >= threshold;\n\n          if (above) {\n            segments.push(\n              [\n                [x + frac(tl, tr), y + 1],\n                [x, y + frac(bl, tl)],\n              ],\n              [\n                [x + frac(bl, br), y],\n                [x + 1, y + frac(br, tr)],\n              ]\n            );\n          } else {\n            segments.push(\n              [\n                [x + frac(tl, tr), y + 1],\n                [x + 1, y + frac(br, tr)],\n              ],\n              [\n                [x + frac(bl, br), y],\n                [x, y + frac(bl, tl)],\n              ]\n            );\n          }\n          break;\n        }\n        case 6:\n          segments.push([\n            [x + frac(tl, tr), y + 1],\n            [x + frac(bl, br), y],\n          ]);\n          break;\n        case 7:\n          segments.push([\n            [x + frac(tl, tr), y + 1],\n            [x, y + frac(bl, tl)],\n          ]);\n          break;\n        case 8:\n          segments.push([\n            [x, y + frac(bl, tl)],\n            [x + frac(tl, tr), y + 1],\n          ]);\n          break;\n        case 9:\n          segments.push([\n            [x + frac(bl, br), y],\n            [x + frac(tl, tr), y + 1],\n          ]);\n          break;\n        case 10: {\n          const avg = (tl + tr + br + bl) / 4;\n          const above = avg >= threshold;\n\n          if (above) {\n            segments.push(\n              [\n                [x, y + frac(bl, tl)],\n                [x + frac(bl, br), y],\n              ],\n              [\n                [x + 1, y + frac(br, tr)],\n                [x + frac(tl, tr), y + 1],\n              ]\n            );\n          } else {\n            segments.push(\n              [\n                [x, y + frac(bl, tl)],\n                [x + frac(tl, tr), y + 1],\n              ],\n              [\n                [x + 1, y + frac(br, tr)],\n                [x + frac(bl, br), y],\n              ]\n            );\n          }\n          break;\n        }\n        case 11:\n          segments.push([\n            [x + 1, y + frac(br, tr)],\n            [x + frac(tl, tr), y + 1],\n          ]);\n          break;\n        case 12:\n          segments.push([\n            [x, y + frac(bl, tl)],\n            [x + 1, y + frac(br, tr)],\n          ]);\n          break;\n        case 13:\n          segments.push([\n            [x + frac(bl, br), y],\n            [x + 1, y + frac(br, tr)],\n          ]);\n          break;\n        case 14:\n          segments.push([\n            [x, y + frac(bl, tl)],\n            [x + frac(bl, br), y],\n          ]);\n          break;\n        case 15:\n          // all above\n          continue;\n      }\n    }\n  }\n\n  return segments;\n\n  // get the linear interpolation fraction of how far z is between z0 and z1\n  // See https://github.com/fschutt/marching-squares/blob/master/src/lib.rs\n  function frac(z0: number, z1: number): number {\n    if (z0 === z1) {\n      return 0.5;\n    }\n\n    let t = (threshold - z0) / (z1 - z0);\n    return t > 1 ? 1 : t < 0 ? 0 : t;\n  }\n}\n\n/**\n * Create a list of closed rings from the combined segments from breaks[i] and breaks[i-1].\n * @private\n */\nfunction assembleRings(\n  segments: Position[][],\n  matrix: number[][]\n): Position[][] {\n  const dy = matrix.length;\n  const dx = matrix[0].length;\n\n  const contours: Position[][] = [];\n  const result: Position[][] = [];\n\n  // Assemble contiguous line segments into contours. These are at least LineStrings,\n  // but for features that do not touch the edge of the matrix, they will actually wind up\n  // being an entirely closed LinearRing.\n  while (segments.length > 0) {\n    const contour: Position[] = [...segments.shift()!];\n    contours.push(contour);\n\n    let found: boolean;\n    do {\n      found = false;\n      for (let i = 0; i < segments.length; i++) {\n        const segment = segments[i];\n        // add the segment's end point to the end of the contour\n        if (\n          segment[0][0] === contour[contour.length - 1][0] &&\n          segment[0][1] === contour[contour.length - 1][1]\n        ) {\n          found = true;\n          contour.push(segment[1]);\n          segments.splice(i, 1);\n          break;\n        }\n        // add the segment's start point to the start of the contour\n        if (\n          segment[1][0] === contour[0][0] &&\n          segment[1][1] === contour[0][1]\n        ) {\n          found = true;\n          contour.unshift(segment[0]);\n          segments.splice(i, 1);\n          break;\n        }\n\n        // note that because the segments are all guaranteed to be counterclockwise,\n        // we do not join segment start to end of the contour or segment end to the start of contour\n      }\n\n      // if we reach here with found === false, that means that no remaining segments can be\n      // added to our contour. We begin again creating the next indepdenent contour.\n    } while (found);\n  }\n\n  // Now we loop again, taking the contours and ensuring that all of them are closed rings.\n  // Using segments from two different breaks[], and enforcing closed polygons are the\n  // two the major difference between the implementation of @turf/isolines and @turf/isobands.\n  while (contours.length > 0) {\n    const contour = contours[0];\n\n    // if a contour is closed, store it in the results and move to the next contour\n    if (\n      contour[0][0] === contour[contour.length - 1][0] &&\n      contour[0][1] === contour[contour.length - 1][1]\n    ) {\n      result.push(contour);\n      contours.shift();\n      continue;\n    }\n\n    // A contour that is not already closed is guaranteed to touch the bounding box of the matrix.\n    // We know that the polygon is ordered counter-clockwise, so we just need to follow\n    // the bounding box in a counterclockwise direction, looking for a contour to append.\n    // We may need to insert new positions along the corners, but we will eventually close the ring.\n\n    const end = contour[contour.length - 1];\n\n    let match: number;\n    let corner: Position;\n    if (end[0] === 0 && end[1] !== 0) {\n      // left side\n      match = getAdjacentContour(\n        contours,\n        (contour) => contour[0][0] === 0 && contour[0][1] < end[1], // left side, below end\n        (a, b) => b[0][1] - a[0][1] // prefer positions to the top\n      );\n      corner = [0, 0]; // bottom left corner\n    } else if (end[1] === 0 && end[0] !== dx - 1) {\n      // bottom side\n      match = getAdjacentContour(\n        contours,\n        (contour) => contour[0][1] === 0 && contour[0][0] > end[0], // bottom side, right of end\n        (a, b) => a[0][0] - b[0][0] // prefer positions to the left\n      );\n      corner = [dx - 1, 0]; // bottom right corner\n    } else if (end[0] === dx - 1 && end[1] !== dy - 1) {\n      // right side\n      match = getAdjacentContour(\n        contours,\n        (contour) => contour[0][0] === dx - 1 && contour[0][1] > end[1], // right side, above end\n        (a, b) => a[0][1] - b[0][1] // prefer positions to the bottom\n      );\n      corner = [dx - 1, dy - 1]; // top right corner\n    } else if (end[1] === dy - 1 && end[0] !== 0) {\n      // top side\n      match = getAdjacentContour(\n        contours,\n        (contour) => contour[0][1] === dy - 1 && contour[0][0] < end[0], // top side, left of end\n        (a, b) => b[0][0] - a[0][0] // prefer positions to the right\n      );\n      corner = [0, dy - 1]; // top left corner\n    } else {\n      throw new Error(\"Contour not closed but is not along an edge\");\n    }\n\n    if (match === -1) {\n      // we did not match a contour on this side, so we add a point in the corner to\n      // continue creating our linestring in counterclockwise order. The next\n      // run of the loop will continue trying to assemble the current contour on the next side.\n      contour.push(corner);\n    } else if (match === 0) {\n      // We looped back to a contour, and it was ourself. That means that we finished closing the ring.\n      // Add the contour to the result and remove it from the contours list to start working\n      // on the next contour.\n      contour.push([contour[0][0], contour[0][1]]);\n      result.push(contour);\n      contours.shift();\n    } else {\n      // We matched a contour, but it is not the one we're currently closing.\n      // That means that we get to add its points to our own, and remove that contour entirely.\n      // On the next loop, we'll continue trying to close the same contour, but this time from\n      // the final Position in contour will be the end of contours[match].\n      const matchedContour = contours[match];\n      contours.splice(match, 1);\n      for (const p of matchedContour) {\n        contour.push(p);\n      }\n    }\n  }\n\n  // If we get *just* a corner we close it immediately with itself, which results in\n  // a 2 point 'ring', which has zero area. We omit these before returning.\n  for (let i = 0; i < result.length; i++) {\n    if (result[i].length < 4) {\n      result.splice(i, 1);\n      i--;\n    }\n  }\n\n  return result;\n}\n\n/**\n * Transform isobands of 2D grid to polygons for the map\n *\n * @private\n * @param {Array<any>} contours Contours\n * @param {Array<Array<number>>} matrix Grid Data\n * @param {Object} points Points by Latitude\n * @returns {Array<any>} contours\n */\nfunction rescaleContours(\n  contours: GroupedRings[],\n  matrix: number[][],\n  points: FeatureCollection<Point>\n): GroupedRings[] {\n  // get dimensions (on the map) of the original grid\n  const gridBbox = bbox(points); // [ minX, minY, maxX, maxY ]\n  const originalWidth = gridBbox[2] - gridBbox[0];\n  const originalHeigth = gridBbox[3] - gridBbox[1];\n\n  // get origin, which is the first point of the last row on the rectangular data on the map\n  const x0 = gridBbox[0];\n  const y0 = gridBbox[1];\n  // get number of cells per side\n  const matrixWidth = matrix[0].length - 1;\n  const matrixHeight = matrix.length - 1;\n  // calculate the scaling factor between matrix and rectangular grid on the map\n  const scaleX = originalWidth / matrixWidth;\n  const scaleY = originalHeigth / matrixHeight;\n\n  // resize and shift each point/line of the isobands\n  return contours.map(function (contour) {\n    contour.groupedRings = (contour.groupedRings as Position[][][]).map(\n      function (lineRingSet) {\n        return lineRingSet.map(function (lineRing) {\n          return lineRing.map((point: Position) => [\n            point[0] * scaleX + x0,\n            point[1] * scaleY + y0,\n          ]);\n        });\n      }\n    );\n\n    return contour;\n  });\n}\n\n/*  utility functions */\n\n/**\n * Returns an array of coordinates (of LinearRings) in descending order by area\n *\n * @private\n * @param {Array<LineString>} ringsCoords array of closed LineString\n * @returns {Array} array of the input LineString ordered by area\n */\nfunction orderByArea(ringsCoords: Position[][]): Position[][] {\n  const ringsWithArea = ringsCoords.map(function (coords) {\n    // associate each lineRing with its area\n    return { ring: coords, area: area(polygon([coords])) };\n  });\n  ringsWithArea.sort(function (a, b) {\n    // bigger --> smaller\n    return b.area - a.area;\n  });\n  // create a new array of linearRings coordinates ordered by their area\n  return ringsWithArea.map(function (x) {\n    return x.ring;\n  });\n}\n\n/**\n * Returns an array of arrays of coordinates, each representing\n * a set of (coordinates of) nested LinearRings,\n * i.e. the first ring contains all the others\n *\n * @private\n * @param {Array} orderedLinearRings array of coordinates (of LinearRings) in descending order by area\n * @returns {Array<Array>} Array of coordinates of nested LinearRings\n */\nfunction groupNestedRings(orderedLinearRings: Position[][]): Position[][][] {\n  // create a list of the (coordinates of) LinearRings\n  const lrList = orderedLinearRings.map((lr) => {\n    return { lrCoordinates: lr, grouped: false };\n  });\n  const groupedLinearRingsCoords: Position[][][] = [];\n\n  while (!allGrouped(lrList)) {\n    for (let i = 0; i < lrList.length; i++) {\n      if (!lrList[i].grouped) {\n        // create new group starting with the larger not already grouped ring\n        const group: Position[][] = [];\n        group.push(lrList[i].lrCoordinates);\n        lrList[i].grouped = true;\n        const outerMostPoly = polygon([lrList[i].lrCoordinates]);\n        // group all the rings contained by the outermost ring\n        OUTER: for (let j = i + 1; j < lrList.length; j++) {\n          if (!lrList[j].grouped) {\n            const lrPoly = polygon([lrList[j].lrCoordinates]);\n            if (isInside(lrPoly, outerMostPoly)) {\n              // we cannot group any linear rings that are contained in hole rings for this group\n              for (let k = 1; k < group.length; k++) {\n                if (isInside(lrPoly, polygon([group[k]]))) {\n                  continue OUTER;\n                }\n              }\n              group.push(lrList[j].lrCoordinates);\n              lrList[j].grouped = true;\n            }\n          }\n        }\n        // insert the new group\n        groupedLinearRingsCoords.push(group);\n      }\n    }\n  }\n  return groupedLinearRingsCoords;\n}\n\n/**\n * @private\n * @param {Polygon} testPolygon polygon of interest\n * @param {Polygon} targetPolygon polygon you want to compare with\n * @returns {boolean} true if test-Polygon is inside target-Polygon\n */\nfunction isInside(\n  testPolygon: Feature<Polygon>,\n  targetPolygon: Feature<Polygon>\n): boolean {\n  const points = explode(testPolygon);\n  for (let i = 0; i < points.features.length; i++) {\n    if (!booleanPointInPolygon(points.features[i], targetPolygon)) {\n      return false;\n    }\n  }\n  return true;\n}\n\n/**\n * @private\n * @param {Array<Object>} list list of objects which might contain the 'group' attribute\n * @returns {boolean} true if all the objects in the list are marked as grouped\n */\nfunction allGrouped(\n  list: { grouped: boolean; lrCoordinates: Position[] }[]\n): boolean {\n  for (let i = 0; i < list.length; i++) {\n    if (list[i].grouped === false) {\n      return false;\n    }\n  }\n  return true;\n}\n\n/**\n * Utility function to help close contours into rings\n *\n * @private\n * @param contours The list of contours\n * @param test Return true if a contour is a candidate for being joined\n * @param sort Compare two candidates, returning a positive number will swap the best match from a to b\n * @returns An index of the contour to join, or -1 if no contour was found\n */\nfunction getAdjacentContour(\n  contours: Position[][],\n  test: (contour: Position[]) => boolean,\n  sort: (a: Position[], b: Position[]) => number\n): number {\n  let match = -1;\n  for (let j = 0; j < contours.length; j++) {\n    if (test(contours[j])) {\n      if (match === -1 || sort(contours[match], contours[j]) > 0) {\n        match = j;\n      }\n    }\n  }\n\n  return match;\n}\n\nexport { isobands };\nexport default isobands;\n"
  },
  {
    "path": "packages/turf-isobands/lib/grid-to-matrix.ts",
    "content": "import { getCoords, collectionOf } from \"@turf/invariant\";\nimport { featureEach } from \"@turf/meta\";\nimport { isObject } from \"@turf/helpers\";\nimport { Feature, FeatureCollection, Point } from \"geojson\";\n\n/**\n * Takes a {@link Point} grid and returns a correspondent matrix {Array<Array<number>>}\n * of the 'property' values\n *\n * @name gridToMatrix\n * @param {FeatureCollection<Point>} grid of points\n * @param {Object} [options={}] Optional parameters\n * @param {string} [options.zProperty='elevation'] the property name in `points` from which z-values will be pulled\n * @param {boolean} [options.flip=false] returns the matrix upside-down\n * @param {boolean} [options.flags=false] flags, adding a `matrixPosition` array field ([row, column]) to its properties,\n * the grid points with coordinates on the matrix\n * @returns {Array<Array<number>>} matrix of property values\n * @example\n *   var extent = [-70.823364, -33.553984, -70.473175, -33.302986];\n *   var cellSize = 3;\n *   var grid = turf.pointGrid(extent, cellSize);\n *   // add a random property to each point between 0 and 60\n *   for (var i = 0; i < grid.features.length; i++) {\n *     grid.features[i].properties.elevation = (Math.random() * 60);\n *   }\n *   gridToMatrix(grid);\n *   //= [\n *     [ 1, 13, 10,  9, 10, 13, 18],\n *     [34,  8,  5,  4,  5,  8, 13],\n *     [10,  5,  2,  1,  2,  5,  4],\n *     [ 0,  4, 56, 19,  1,  4,  9],\n *     [10,  5,  2,  1,  2,  5, 10],\n *     [57,  8,  5,  4,  5,  0, 57],\n *     [ 3, 13, 10,  9,  5, 13, 18],\n *     [18, 13, 10,  9, 78, 13, 18]\n *   ]\n */\nexport function gridToMatrix(\n  grid: FeatureCollection<Point>,\n  options: { zProperty?: string; flip?: boolean; flags?: boolean } = {}\n): any {\n  // Optional parameters\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  const { zProperty = \"elevation\", flip = false, flags = false } = options;\n\n  // validation\n  collectionOf(grid, \"Point\", \"input must contain Points\");\n\n  var pointsMatrix = sortPointsByLatLng(grid, flip);\n\n  var matrix = [];\n  // create property matrix from sorted points\n  // looping order matters here\n  for (var r = 0; r < pointsMatrix.length; r++) {\n    var pointRow = pointsMatrix[r];\n    var row = [];\n    for (var c = 0; c < pointRow.length; c++) {\n      var point = pointRow[c];\n      if (point.properties == null) {\n        point.properties = {};\n      }\n      // Check if zProperty exist\n      if (point.properties[zProperty]) row.push(point.properties[zProperty]);\n      else row.push(0);\n      // add flags\n      if (flags === true) point.properties.matrixPosition = [r, c];\n    }\n    matrix.push(row);\n  }\n\n  return matrix;\n}\n\n/**\n * Sorts points by latitude and longitude, creating a 2-dimensional array of points\n *\n * @private\n * @param {FeatureCollection<Point>} points GeoJSON Point features\n * @param {boolean} [flip=false] returns the matrix upside-down\n * @returns {Array<Array<Point>>} points ordered by latitude and longitude\n */\nfunction sortPointsByLatLng(points: FeatureCollection<Point>, flip: boolean) {\n  var pointsByLatitude: Record<number | string, Feature<Point>[]> = {};\n\n  // divide points by rows with the same latitude\n  featureEach(points, (point) => {\n    var lat = getCoords(point)[1] as number;\n    if (!pointsByLatitude[lat]) pointsByLatitude[lat] = [];\n    pointsByLatitude[lat].push(point);\n  });\n\n  // sort points (with the same latitude) by longitude\n  const pointMatrix: Feature<Point>[][] = [];\n  for (const row of Object.values(pointsByLatitude)) {\n    pointMatrix.push(row.sort((a, b) => getCoords(a)[0] - getCoords(b)[0]));\n  }\n\n  // sort rows (of points with the same latitude) by latitude\n  pointMatrix.sort(\n    flip\n      ? (a, b) => getCoords(a[0])[1] - getCoords(b[0])[1]\n      : (a, b) => getCoords(b[0])[1] - getCoords(a[0])[1]\n  );\n\n  return pointMatrix;\n}\n"
  },
  {
    "path": "packages/turf-isobands/lib/matrix-to-grid.ts",
    "content": "import { isObject, featureCollection, point, Units } from \"@turf/helpers\";\nimport { rhumbDestination } from \"@turf/rhumb-destination\";\nimport { Feature, Point } from \"geojson\";\n\n/**\n * Takes a {@link Point} grid and returns a correspondent matrix {Array<Array<number>>}\n * of the 'property' values\n *\n * @name matrixToGrid\n * @param {Array<Array<number>>} matrix of numbers\n * @param {Point|Array<number>} origin position of the first bottom-left (South-West) point of the grid\n * @param {number} cellSize the distance across each cell\n * @param {Object} [options={}] optional parameters\n * @param {string} [options.zProperty='elevation'] the grid points property name associated with the matrix value\n * @param {Object} [options.properties={}] GeoJSON properties passed to all the points\n * @param {Units} [options.units='kilometers'] used in calculating cellSize. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.\n * @returns {FeatureCollection<Point>} grid of points\n *\n * @example\n *    var matrixToGrid = require('matrix-to-grid');\n *    var matrix = [\n *      [ 1, 13, 20,  9, 10, 13, 18],\n *      [34,  8,  0,  4,  5,  8, 13],\n *      [10,  5,  2,  1,  2,  5, 24],\n *      [ 0,  4, 56, 19,  0,  4,  9],\n *      [10,  5,  2, 12,  2,  5, 10],\n *      [57,  8,  5,  4,  5,  0, 57],\n *      [ 3, 13,  0,  9,  5, 13, 35],\n *      [18, 13, 10,  9, 78, 13, 18]\n *    ];\n *    var origin = [-70.823364, -33.553984]\n *    matrixToGrid(matrix, origin, 10);\n *    //= pointGrid\n */\nexport function matrixToGrid(\n  matrix: number[][],\n  origin: Feature<Point> | number[],\n  cellSize: number,\n  options: {\n    zProperty?: string;\n    properties?: Record<any, any>;\n    units?: Units;\n  } = {}\n) {\n  // Optional parameters\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  var zProperty = options.zProperty || \"elevation\";\n  var properties = options.properties;\n  var units = options.units;\n\n  // validation\n  if (!matrix || !Array.isArray(matrix)) throw new Error(\"matrix is required\");\n  if (!origin) throw new Error(\"origin is required\");\n  if (Array.isArray(origin)) {\n    origin = point(origin); // Convert coordinates array to point\n  }\n  // all matrix array have to be of the same size\n  var matrixCols = matrix[0].length;\n  var matrixRows = matrix.length;\n  for (var row = 1; row < matrixRows; row++) {\n    if (matrix[row].length !== matrixCols)\n      throw new Error(\"matrix requires all rows of equal size\");\n  }\n\n  var points = [];\n  for (var r = 0; r < matrixRows; r++) {\n    // create first point in the row\n    var first = rhumbDestination(origin, cellSize * r, 0, { units: units });\n    if (first.properties == null) {\n      first.properties = {};\n    }\n    first.properties[zProperty] = matrix[matrixRows - 1 - r][0];\n    for (var prop in properties) {\n      first.properties[prop] = properties[prop];\n    }\n    points.push(first);\n    for (var c = 1; c < matrixCols; c++) {\n      // create the other points in the same row\n      var pt = rhumbDestination(first, cellSize * c, 90, { units: units });\n      if (pt.properties == null) {\n        pt.properties = {};\n      }\n      for (var prop2 in properties) {\n        pt.properties[prop2] = properties[prop2];\n      }\n      // add matrix property\n      var val = matrix[matrixRows - 1 - r][c];\n      pt.properties[zProperty] = val;\n      points.push(pt);\n    }\n  }\n  var grid = featureCollection(points);\n  return grid;\n}\n"
  },
  {
    "path": "packages/turf-isobands/package.json",
    "content": "{\n  \"name\": \"@turf/isobands\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a grid of values (GeoJSON format) and a set of threshold ranges. It outputs polygons that group areas within those ranges, effectively creating filled contour isobands.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Stefano Borghi <@stebogit>\",\n    \"Matt Fedderly <@mfedderly>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"contours\",\n    \"isobands\",\n    \"elevation\",\n    \"topography\",\n    \"filled\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/envelope\": \"workspace:*\",\n    \"@turf/point-grid\": \"workspace:*\",\n    \"@turf/random\": \"workspace:*\",\n    \"@turf/rhumb-destination\": \"workspace:*\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/area\": \"workspace:*\",\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/boolean-point-in-polygon\": \"workspace:*\",\n    \"@turf/explode\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-isobands/test/in/1084.json",
    "content": "{\n  \"features\": [\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 15,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 15,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 15,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 14,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 13,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 12,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3280098622587595, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 17,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 17,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 16,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 15,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 15,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 16,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 12,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 12,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 13,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 12,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.32228331608052, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 18,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 18,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 17,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 16,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 15,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 15,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 14,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 13,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 14,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3165567699022807, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 18,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 18,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 19,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 15,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 15,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 16,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 14,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 14,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3108302237240412, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.3051036775458018, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2993771313675624, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 12,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 12,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.293650585189323, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 14,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 3,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 3,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 12,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 14,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2879240390110835, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 15,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 2,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 3,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 3,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 3,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 15,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2821974928328441, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 16,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 3,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 2,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 2,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 2,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 2,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 3,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 3,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2764709466546047, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 18,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 3,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 2,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 1,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 0,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 1,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 2,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 3,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2707444004763653, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 3,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 3,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 2,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 1,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 1,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 1,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 2,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2650178542981259, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 3,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 2,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 2,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 3,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 2,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 3,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2592913081198864, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 3,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 3,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.253564761941647, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2478382157634076, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 4,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2421116695851682, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 12,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2363851234069287, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 12,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 12,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10000,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 20,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2306585772286893, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 20,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 20,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.22493203105045, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 16,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 7,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 5,\n        \"marker-color\": \"#10800f\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 12,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.2192054848722105, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 16,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.82822842202459],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.83184557982213],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.83546273761967],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.839079895417214],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.842697053214756],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.8463142110123],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.84993136880984],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.85354852660738],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.857165684404926],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 8,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.86078284220247],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.86440000000001],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.86801715779755],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 6,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.871634315595095],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.87525147339264],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.87886863119018],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 9,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.88248578898772],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.886102946785265],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 10,\n        \"marker-color\": \"#635ac0\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.88972010458281],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.89333726238035],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 11,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.89695442017789],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 12,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    },\n    {\n      \"geometry\": {\n        \"coordinates\": [-1.213478938693971, 50.900571577975434],\n        \"type\": \"Point\"\n      },\n      \"properties\": {\n        \"eta\": 12,\n        \"marker-color\": \"#ff0000\"\n      },\n      \"type\": \"Feature\"\n    }\n  ],\n  \"properties\": {\n    \"zProperty\": \"eta\",\n    \"breaks\": [0, 5, 10]\n  },\n  \"type\": \"FeatureCollection\"\n}\n"
  },
  {
    "path": "packages/turf-isobands/test/in/2956.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 37.858395003645576\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70575726459368, 28.063414143459312]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 38.005515531743654\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70575726459368, 28.063423136662948]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 36.84489152337762\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70575726459368, 28.063432129866584]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 35.395453979498335\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70575726459368, 28.06344112307022]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 34.07449741902819\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70575726459368, 28.063450116273856]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 32.958310880754894\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70575726459368, 28.063459109477492]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 32.15014388289838\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70575726459368, 28.063468102681128]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.825761037619472\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70575726459368, 28.063477095884764]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.812452608298262\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70575726459368, 28.0634860890884]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.767429208320458\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70575726459368, 28.063495082292036]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.604967876968036\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70575726459368, 28.063504075495672]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.37423778197694\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70575726459368, 28.063513068699308]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.19659311838165\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70575726459368, 28.063522061902944]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.188958733351168\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70575726459368, 28.06353105510658]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 38.51077132555259\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70576745603036, 28.063414143459312]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 39.39763880592179\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70576745603036, 28.063423136662948]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 37.2423247681859\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70576745603036, 28.063432129866584]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 35.45550445064012\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70576745603036, 28.06344112307022]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 33.930177337153346\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70576745603036, 28.063450116273856]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 32.579584391755496\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70576745603036, 28.063459109477492]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.38744902528939\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70576745603036, 28.063468102681128]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.12963475577516\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70576745603036, 28.063477095884764]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.53058455054993\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70576745603036, 28.0634860890884]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.604664751494997\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70576745603036, 28.063495082292036]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.416285948997317\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70576745603036, 28.063504075495672]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.05589092319081\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70576745603036, 28.063513068699308]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 30.719659535516517\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70576745603036, 28.063522061902944]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 30.790463080555575\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70576745603036, 28.06353105510658]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 37.70518715223118\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70577764746704, 28.063414143459312]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 37.79001647255467\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70577764746704, 28.063423136662948]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 36.66652828700078\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70577764746704, 28.063432129866584]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 35.201739408861634\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70577764746704, 28.06344112307022]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 33.801584088885484\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70577764746704, 28.063450116273856]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 32.504872255879775\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70577764746704, 28.063459109477492]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.315116946844036\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70577764746704, 28.063468102681128]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.066795164769196\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70577764746704, 28.063477095884764]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.496365961292856\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70577764746704, 28.0634860890884]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.560432236745154\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70577764746704, 28.063495082292036]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.332080357493645\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70577764746704, 28.063504075495672]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 30.85639676766893\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70577764746704, 28.063513068699308]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 30.130736992788563\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70577764746704, 28.063522061902944]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 30.48089842932968\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70577764746704, 28.06353105510658]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 36.700054580535884\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70578783890372, 28.063414143459312]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 36.53880190230577\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70578783890372, 28.063423136662948]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 35.84008661540203\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70578783890372, 28.063432129866584]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 34.82169255602666\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70578783890372, 28.06344112307022]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 33.744163050858106\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70578783890372, 28.063450116273856]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 32.75499936415751\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70578783890372, 28.063459109477492]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 32.006236685187694\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70578783890372, 28.063468102681128]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.71351244090173\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70578783890372, 28.063477095884764]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.712469554550218\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70578783890372, 28.0634860890884]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.642130822480073\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70578783890372, 28.063495082292036]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.401981364817154\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70578783890372, 28.063504075495672]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 31.01317363585256\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70578783890372, 28.063513068699308]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 30.64800526338338\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70578783890372, 28.063522061902944]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": 30.73652060070006\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [35.70578783890372, 28.06353105510658]\n      }\n    }\n  ],\n  \"properties\": {\n    \"zProperty\": \"FIELD_ID\",\n    \"breaks\": [29, 30, 39.5, 40],\n    \"description\": \"3 candidate bands, the first and last band should be empty, the middle band should hit the special case of containing the entire area\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-isobands/test/in/bigMatrix.json",
    "content": "{\n  \"origin\": [6.5, 46],\n  \"cellSize\": 10,\n  \"breaks\": [0, 0.24, 0.5, 1.5, 2.5, 100],\n  \"zProperty\": \"pressure\",\n  \"commonProperties\": {\n    \"stroke-width\": 4,\n    \"fill-opacity\": 0.4\n  },\n  \"breaksProperties\": [\n    {\n      \"stroke\": \"grey\",\n      \"fill\": \"grey\"\n    },\n    {\n      \"stroke\": \"blue\",\n      \"fill\": \"blue\"\n    },\n    {\n      \"stroke\": \"green\",\n      \"fill\": \"green\"\n    },\n    {\n      \"stroke\": \"yellow\",\n      \"fill\": \"yellow\"\n    },\n    {\n      \"stroke\": \"red\",\n      \"fill\": \"red\"\n    }\n  ],\n  \"matrix\": [\n    [\n      0.754816323768, 0.0192104697805, 0.0755640895933, 0.162215587333, 0.267950411633,\n      0.380900771041, 0.491544382473, 0.593906626031, 0.685266592708, 0.765202340943,\n      0.834615850466, 0.895008654071, 0.948034954329, 0.995264760092, 1.03807922487,\n      1.07763915535, 1.1148893148, 1.15057748954, 1.18527770736, 1.21941299466,\n      1.25327620796, 1.28704892645, 1.32081889084, 1.35459648117, 1.38833052607,\n      1.42192349543, 1.45524594313, 1.4881499762, 1.52048153551, 1.55209136178,\n      1.58284465416, 1.61262956931, 1.64136481734, 1.66900665389, 1.69555551758,\n      1.72106240417, 1.74563480623, 1.76944170768, 1.79271677157, 1.815758593,\n      1.83892683251, 1.86263330886, 1.88732776844, 1.91347899987, 1.94155302698,\n      1.97199098527, 2.00518965296, 2.04148728682, 2.08115644818, 2.12440417382,\n      2.17137854124, 2.22217975027, 2.27687346733, 2.33550432796, 2.39810799098,\n      2.46472076518, 2.53538640645, 2.61016010681, 2.68910994092, 2.77231611964,\n      2.85986836779, 2.95186163737, 3.04839022734, 3.14954023961, 3.2553801885,\n      3.36594952824, 3.48124489906, 3.60120404326, 3.72568762201, 3.85445956725,\n      3.98716710137, 4.12332208928, 4.26228586482, 4.40325998761, 4.54528542294,\n      4.68725230409, 4.82792168542, 4.96595955259, 5.09998193596, 5.22860847339,\n      5.35052044051, 5.46451836937, 5.56957411184, 5.66487266244, 5.74984018447,\n      5.82415629486, 5.88775047397, 5.94078416729, 5.98362147499, 6.01679211687,\n      6.04095057545, 6.05683502667, 6.06522901002, 6.06692794183, 6.06271169478,\n      6.05332367777\n    ],\n    [\n      0.0190236070377, 0.0385999271506, 0.0947957400738, 0.180524048614, 0.284354871517,\n      0.39438504785, 0.501273442842, 0.599359856829, 0.686256401169, 0.761815524864,\n      0.827128435869, 0.883807556173, 0.933559660473, 0.977969770145, 1.01841280298,\n      1.05603292629, 1.09175397163, 1.12630111673, 1.16022445572, 1.19392090141,\n      1.22765378699, 1.26157074476, 1.2957206964, 1.33007057339, 1.364522001,\n      1.39892781263, 1.43310801472, 1.46686473476, 1.49999574718, 1.53230634678,\n      1.56361957456, 1.59378504098, 1.62268678373, 1.65025069457, 1.67645201114,\n      1.70132316613, 1.72496190488, 1.74753904943, 1.7693046771, 1.79059094408,\n      1.81180952501, 1.83344188445, 1.85602149532, 1.88010863445, 1.90626020702,\n      1.93499863326, 1.96678456493, 2.00199770408, 2.04092833787, 2.08377990849,\n      2.13068076686, 2.18170184982, 2.23687663917, 2.29622026442, 2.35974561448,\n      2.4274754117, 2.49945008841, 2.57573187067, 2.6564057268, 2.74157785488,\n      2.83137224858, 2.92592566526, 3.0253810736, 3.1298794166, 3.2395493235,\n      3.35449427841, 3.47477674743, 3.60039892071, 3.73128007393, 3.86723110113,\n      4.00792748809, 4.15288280778, 4.30142560185, 4.45268310435, 4.60557548418,\n      4.75882397008, 4.91097527253, 5.06044313902, 5.20556581785, 5.34467595263,\n      5.47617737915, 5.59862186856, 5.71077839461, 5.81168815837, 5.90070030622,\n      5.97748571974, 6.04202897785, 6.09460109447, 6.13571750575, 6.16608678652,\n      6.18655568627, 6.19805544231, 6.20155320662, 6.19801109809, 6.18835410471,\n      6.17344697778\n    ],\n    [\n      0.0740492769371, 0.093829427076, 0.14735600539, 0.227811443267, 0.32446389556,\n      0.426278918138, 0.524706373396, 0.614664625462, 0.694112379507, 0.763061806146,\n      0.82263908342, 0.874420721412, 0.920044959285, 0.961019544951, 0.998646535999,\n      1.03400747738, 1.06797487086, 1.10123197939, 1.13429296376, 1.1675208765,\n      1.2011437201, 1.23526973067, 1.26990302393, 1.30496024613, 1.3402882535,\n      1.37568232319, 1.41090409367, 1.44569837545, 1.4798081343, 1.5129872635,\n      1.54501115006, 1.57568542778, 1.60485362843, 1.63240463143, 1.6582808148,\n      1.68248757152, 1.70510433536, 1.72629645476, 1.7463262401, 1.76556048576,\n      1.78447107479, 1.80362534186, 1.82366407028, 1.84526740536, 1.86911212982,\n      1.89582668208, 1.92595179694, 1.95991388127, 1.99801528304, 2.04044152356,\n      2.08728185593, 2.13855738396, 2.1942507913, 2.25433303816, 2.31878433954,\n      2.38760858032, 2.46084162166, 2.53855462467, 2.62085368555, 2.70787692614,\n      2.79978987086, 2.89677956499, 2.99904749995, 3.10680103837, 3.22024270479,\n      3.33955646982, 3.46489006787, 3.59633251962, 3.73388644168, 3.87743544859,\n      4.02670796628, 4.18123999189, 4.3403405859, 4.5030649331, 4.66820037683,\n      4.83427063856, 4.9995622783, 5.16217528189, 5.32009665708, 5.47129250424,\n      5.61381082343, 5.74588501518, 5.86602720876, 5.97310149718, 6.06636976417,\n      6.14550655243, 6.21058357753, 6.26202821892, 6.30056296543, 6.32713402293,\n      6.34283712723, 6.34884735303, 6.34635782586, 6.33653019051, 6.32045782881,\n      6.29914136679\n    ],\n    [\n      0.157034978462, 0.17658032134, 0.22517427108, 0.296713566809, 0.381907932596,\n      0.471303323761, 0.557602347409, 0.636484575319, 0.706242706617, 0.766940910261,\n      0.819607348834, 0.865660049868, 0.906569598921, 0.94369246162, 0.978206056181,\n      1.01109554936, 1.04316205088, 1.07503646033, 1.10719248999, 1.13995761741,\n      1.17352317516, 1.20795543948, 1.24320917345, 1.27914418601, 1.31554451703,\n      1.35213913284, 1.38862265798, 1.42467468981, 1.45997657344, 1.49422504368,\n      1.52714275156, 1.55848628769, 1.58805281336, 1.61568674362, 1.64128802301,\n      1.66482330389, 1.68634068452, 1.70598751476, 1.72402916098, 1.74086476564,\n      1.75703446036, 1.77321198941, 1.79017812237, 1.80877400608, 1.8298391731,\n      1.85414451071, 1.88233363434, 1.91488493308, 1.95210109621, 1.99412537408,\n      2.04097732202, 2.09259763188, 2.14889225697, 2.20976911286, 2.27516436332,\n      2.34505830981, 2.41948265417, 2.4985215146, 2.58230844199, 2.6710211947,\n      2.7648754362, 2.86411793201, 2.96901926519, 3.07986556009, 3.19694821238,\n      3.3205502181, 3.45092746024, 3.58828336202, 3.73273576252, 3.88427579133,\n      4.04271991984, 4.20765815352, 4.37840328595, 4.55394792754, 4.7329372169,\n      4.91366525692, 5.0941019971, 5.27195433642, 5.44476082914, 5.61001415125,\n      5.76530041222, 5.90844062421, 6.03761817431, 6.15147751541, 6.24918334707,\n      6.33043545858, 6.39544085449, 6.44485040587, 6.4796710187, 6.50116571521,\n      6.51075323742, 6.5099164165, 6.50012541687, 6.48277880907, 6.45916277822,\n      6.43042688849\n    ],\n    [\n      0.255539967582, 0.274105267923, 0.316142519243, 0.37652813048, 0.447790344706,\n      0.522401720013, 0.594540601807, 0.660734463541, 0.719597973044, 0.771184232905,\n      0.81634481069, 0.856264948132, 0.892186153575, 0.925267613017, 0.956531235552,\n      0.986848370649, 1.01694214946, 1.0473921757, 1.0786369509, 1.11097447506,\n      1.1445637063, 1.17942978874, 1.21547494117, 1.25249536236, 1.29020304219,\n      1.32825035918, 1.36625495163, 1.40382253727, 1.44056597093, 1.47611968144,\n      1.51014954935, 1.54235915468, 1.57249406068, 1.60034634509, 1.62576186709,\n      1.64865263751, 1.66901595208, 1.68696043682, 1.70273671035, 1.71676715126,\n      1.72966597268, 1.74223883604, 1.75545241148, 1.77037001303, 1.78805932439,\n      1.80948915725, 1.83543897712, 1.8664432107, 1.90278185216, 1.94451434684,\n      1.99154200092, 2.04367980399, 2.10072152925, 2.16248887872, 2.22886236619,\n      2.29979627736, 2.37532202978, 2.45554432532, 2.54063362358, 2.63081737419,\n      2.72637146094, 2.82761249247, 2.93489085883, 3.04858378088, 3.16908688369,\n      3.29680217167, 3.43211979799, 3.57539088492, 3.72688906127, 3.88675949882,\n      4.0549561148, 4.23117017895, 4.41475656177, 4.60466682759, 4.79940066983,\n      4.99698804347, 5.19501304043, 5.39068663082, 5.58096897108, 5.76273391892,\n      5.93296025754, 6.0889278582, 6.22839437016, 6.34973001552, 6.45199448581,\n      6.53494936058, 6.59900965298, 6.64514668694, 6.67475981172, 6.68953583034,\n      6.69131292358, 6.68196150139, 6.66328923844, 6.63697275763, 6.60451474656,\n      6.56722297228\n    ],\n    [\n      0.356595980746, 0.373250225721, 0.407870901979, 0.456380389165, 0.513129362205,\n      0.572497876591, 0.630126416182, 0.683384527264, 0.731201872661, 0.77360647909,\n      0.811252273638, 0.845067066976, 0.876039513977, 0.905112797542, 0.933142751588,\n      0.960885914704, 0.988995407408, 1.01801396216, 1.04836199261, 1.08032380146,\n      1.11403707659, 1.14949033478, 1.18653088455, 1.22488324232, 1.26417564807,\n      1.30397093367, 1.34379764677, 1.38317786018, 1.42164918526, 1.45877983592,\n      1.49417691891, 1.52748932496, 1.55840761583, 1.58666413066, 1.6120371199,\n      1.63436290022, 1.65355949033, 1.66966346133, 1.68287831636, 1.69362743015,\n      1.70259814703, 1.71075826192, 1.71932550808, 1.72967870743, 1.74321683291,\n      1.76119419184, 1.78457519647, 1.81395002548, 1.84953139295, 1.89122338459,\n      1.9387315827, 1.99167867928, 2.04969929224, 2.11250275563, 2.17990507835,\n      2.25183770558, 2.32834195952, 2.40955645941, 2.49570247922, 2.58707018102,\n      2.68400724157, 2.78691041866, 2.89621981735, 3.01241479734, 3.13600952146,\n      3.26754512992, 3.40757461808, 3.5566359859, 3.71520944848, 3.88365574908,\n      4.06213506682, 4.25050962725, 4.44823761648, 4.65427078667, 4.86697230959,\n      5.08407376457, 5.30268930745, 5.51940003923, 5.73041223207, 5.93178053132,\n      6.11967402461, 6.29065246494, 6.44191512006, 6.57148759078, 6.6783222797,\n      6.76230354021, 6.82416493125, 6.86533934692, 6.88777023642, 6.8937128895,\n      6.88555002063, 6.86563801002, 6.83619168557, 6.7992083594, 6.75642691151,\n      6.70931512351\n    ],\n    [\n      0.449936181049, 0.463751877347, 0.490741367556, 0.527796135674, 0.570852467511,\n      0.615941322666, 0.659989091157, 0.70112933377, 0.738594371018, 0.772401395023,\n      0.803022375779, 0.831135227847, 0.857475874242, 0.882769839313, 0.907709886876,\n      0.932949858718, 0.959095050922, 0.986680922234, 1.01614159504, 1.04777570866,\n      1.0817190819, 1.11793184984, 1.15620367431, 1.1961760554, 1.23737717384,\n      1.27926284486, 1.3212570846, 1.36278700383, 1.40330862187, 1.44232220683,\n      1.47937758131, 1.51407137951, 1.54603954211, 1.5749494892, 1.60049746343,\n      1.62241735389, 1.64050744538, 1.65468012112, 1.66503536402, 1.67195084807,\n      1.67616957488, 1.67885331198, 1.68156351441, 1.68614059594, 1.69448329786,\n      1.70827518672, 1.72874103521, 1.75651458327, 1.7916547097, 1.83378515095,\n      1.88229159969, 1.93650806584, 1.99585119825, 2.05989332217, 2.1283858822,\n      2.20125180287, 2.27856298338, 2.3605137227, 2.44739597783, 2.53957918278,\n      2.63749568849, 2.74163204725, 2.85252572954, 2.97076601209, 3.0969965492,\n      3.23191559251, 3.37626822674, 3.53082378709, 3.69633137264, 3.8734475946,\n      4.06263374963, 4.26402454545, 4.47727706315, 4.7014161604, 4.93469980904,\n      5.17453304288, 5.41745987812, 5.65925657399, 5.89513606258, 6.12005372915,\n      6.32908293554, 6.51781045593, 6.68269308109, 6.8213207171, 6.93254825244,\n      7.01648399375, 7.07434941943, 7.10824602454, 7.12087532057, 7.11525679987,\n      7.09447866827, 7.06150203909, 7.01902553045, 6.96940673673, 6.91463087409,\n      6.85631458234\n    ],\n    [\n      0.529333176276, 0.539533681044, 0.559091988372, 0.585724792152, 0.616631682569,\n      0.649152934089, 0.681257573747, 0.711726174088, 0.740068875987, 0.766310206274,\n      0.790765009828, 0.813875870608, 0.836128936884, 0.858031104983, 0.880117505257,\n      0.902958947093, 0.927148914462, 0.953263713228, 0.981802594559, 1.01312319252,\n      1.04738944341, 1.08454483166, 1.12431594375, 1.16624326707, 1.20973055029,\n      1.25410185187, 1.2986561937, 1.34271231556, 1.38563919818, 1.42687097662,\n      1.46590724542, 1.50230156652, 1.53564245308, 1.56553253133, 1.5915732424,\n      1.61336436073, 1.63052929442, 1.64277727933, 1.65000980263, 1.65246776142,\n      1.6508957007, 1.64667217308, 1.64183229748, 1.63891206114, 1.64059562363,\n      1.64924222232, 1.66645672845, 1.69287408334, 1.72822887128, 1.77164277506,\n      1.82198276261, 1.87815928742, 1.93930554193, 2.00484481547, 2.07448389782,\n      2.14817120363, 2.2260458627, 2.30839110539, 2.39559681031, 2.48813210144,\n      2.58652770329, 2.69136770495, 2.80329030323, 2.9229963795, 3.0512632003,\n      3.18895820861, 3.33704516736, 3.49657250068, 3.66863244931, 3.85428051837,\n      4.05440827967, 4.26956909133, 4.49976553507, 4.74421879982, 5.00115257448,\n      5.26763455505, 5.53952318663, 5.81156117343, 6.077637996, 6.33121268897,\n      6.56585178198, 6.77580548543, 6.95652843243, 7.10505681124, 7.22018198483,\n      7.30240410538, 7.35369455012, 7.37712968104, 7.37647217381, 7.35576965261,\n      7.31901999177, 7.26992753385, 7.21175245059, 7.14724077233, 7.0786157998,\n      7.00761089131\n    ],\n    [\n      0.592269610438, 0.598285011829, 0.610803101305, 0.628212377784, 0.648673111774,\n      0.670516066207, 0.692519187426, 0.713990477114, 0.734685663434, 0.754646032321,\n      0.774042687401, 0.793081184085, 0.811980586141, 0.831008579849, 0.85053585689,\n      0.871070551259, 0.893245482376, 0.917751871274, 0.945234859361, 0.976180362592,\n      1.01082471349, 1.04910893406, 1.09068396253, 1.13495876991, 1.18117478771,\n      1.22848832576, 1.27604576059, 1.32304147959, 1.36875376179, 1.41255789688,\n      1.45391866271, 1.49236607067, 1.52745958302, 1.55874746038, 1.58573016155,\n      1.60784023018, 1.62445567891, 1.63496800233, 1.63892580372, 1.63626387955,\n      1.62759714812, 1.61450524401, 1.59967071709, 1.58670682605, 1.57958670088,\n      1.58178826916, 1.59549352099, 1.62122131307, 1.65803888687, 1.70416706224,\n      1.75763960688, 1.81676789297, 1.88034866398, 1.94768026494, 2.01848341882,\n      2.09279747653, 2.17088753798, 2.25317309703, 2.3401773028, 2.43249304099,\n      2.53076306184, 2.63567321285, 2.74795887945, 2.86842434548, 2.99797280252,\n      3.13764129975, 3.2886305001, 3.45231463971, 3.63021401722, 3.82391223149,\n      4.03490429773, 4.26436995952, 4.51287886287, 4.78005080037, 5.0642143933,\n      5.36212800719, 5.66883992665, 5.97776130608, 6.2809985657, 6.56994274784,\n      6.83605202046, 7.07170715235, 7.27098770075, 7.43022336042, 7.54822279542,\n      7.62615788281, 7.66715947393, 7.67573570533, 7.65714093231, 7.61680428849,\n      7.55988611442, 7.49098608811, 7.41399233514, 7.33204156654, 7.24755497775,\n      7.16231835297\n    ],\n    [\n      0.638839378139, 0.640286548119, 0.646182840122, 0.655455261978, 0.666987338569,\n      0.679854547074, 0.693463644757, 0.707558545629, 0.722116588106, 0.737198925984,\n      0.752826180429, 0.768930943744, 0.785403200854, 0.802205452744, 0.819504538294,\n      0.837758110962, 0.857709642033, 0.880281112852, 0.90639290469, 0.936767889968,\n      0.971779051589, 1.01137833469, 1.05511255002, 1.10220605365, 1.15167816811,\n      1.20246481651, 1.25352249222, 1.30390263451, 1.35279251566, 1.39952399627,\n      1.44355432105, 1.48442430021, 1.52169970687, 1.55490259965, 1.58344176694,\n      1.60655682116, 1.62329946137, 1.63258731782, 1.63337604588, 1.62499247399,\n      1.60763530717, 1.58295694094, 1.55449037601, 1.52755397001, 1.50833362158,\n      1.50226587969, 1.51244671176, 1.53897388219, 1.57953869864, 1.6307378713,\n      1.68929275262, 1.75272396997, 1.81950162493, 1.88890336985, 1.96078863387,\n      2.03539776446, 2.11320716089, 2.19483451955, 2.28097896646, 2.37238389531,\n      2.46981652762, 2.57406338711, 2.68594360685, 2.80634202734, 2.93626151532,\n      3.07688899021, 3.22966266716, 3.39632017693, 3.57890082798, 3.77967318104,\n      4.00096309106, 4.24486724187, 4.51285233028, 4.80526199251, 5.1207850292,\n      5.45597698721, 5.8049594749, 6.1594274253, 6.50905840996, 6.84233963482,\n      7.14772395075, 7.41492534322, 7.63610194981, 7.80668024009, 7.92565607553,\n      7.99534347955, 8.0206807829, 8.00829521403, 7.96554446384, 7.89970572773,\n      7.81740185786, 7.72427633432, 7.62487641671, 7.52268216241, 7.42022073443,\n      7.31921913868\n    ],\n    [\n      0.670619780898, 0.667246283019, 0.666866435338, 0.668840732047, 0.672609594761,\n      0.677830655523, 0.684430839522, 0.692549735602, 0.702393647769, 0.714056911148,\n      0.727386452935, 0.741958257104, 0.757196700246, 0.77260914063, 0.788052578074,\n      0.8039231011, 0.821177598491, 0.841159156637, 0.865279730545, 0.894674281757,\n      0.929944052385, 0.971054898171, 1.01738740714, 1.06788827587, 1.12126065841,\n      1.17614432166, 1.23125726156, 1.28548795652, 1.33793850055, 1.38792439532,\n      1.43493857881, 1.47858684675, 1.51850049914, 1.5542312582, 1.58513510573,\n      1.61025812118, 1.62825158121, 1.6373677101, 1.63561943671, 1.62121324296,\n      1.59334614254, 1.55332828553, 1.50568374495, 1.45845516833, 1.42180283272,\n      1.40481040999, 1.41208730868, 1.44252245908, 1.4909279619, 1.55097337017,\n      1.61740333183, 1.68684181112, 1.75761502731, 1.82923535587, 1.90192394609,\n      1.97628527666, 2.05311736047, 2.13330872121, 2.21778143901, 2.30745710814,\n      2.40323761611, 2.5060023455, 2.61662790586, 2.73603678176, 2.86527806224,\n      3.0056367226, 3.15875746442, 3.32675580739, 3.51227671071, 3.71845521927,\n      3.94873793111, 4.20653608171, 4.49469666192, 4.81480162136, 5.16635056746,\n      5.54595408705, 5.94673879872, 6.35819618703, 6.76666034148, 7.15647318328,\n      7.51171817155, 7.81822246392, 8.06540406213, 8.24753572274, 8.36413892828,\n      8.41946959496, 8.42131227293, 8.37945519029, 8.30422521712, 8.20534786428,\n      8.09123744974, 7.96868763077, 7.84285821399, 7.7174388442, 7.59489162903,\n      7.47670861233\n    ],\n    [\n      0.689844001429, 0.681469237036, 0.675033941998, 0.670250471822, 0.667006981505,\n      0.665453234195, 0.666001912099, 0.669218879009, 0.675610310221, 0.685361108706,\n      0.698124634476, 0.712980211442, 0.728633145724, 0.74383503197, 0.757893889652,\n      0.771075784116, 0.784706224437, 0.800882869213, 0.821891570421, 0.849570449559,\n      0.88487297669, 0.927744598317, 0.977267829384, 1.03194972797, 1.09003251474,\n      1.14975514849, 1.20953796234, 1.26808891179, 1.3244415665, 1.37793826445,\n      1.42817095278, 1.47488902349, 1.51787909076, 1.55681760264, 1.59109570349,\n      1.6196206236, 1.64061520094, 1.65147556471, 1.64881429756, 1.62890716658,\n      1.58882838025, 1.52846457461, 1.45308353462, 1.37500624234, 1.31183783655,\n      1.2799234645, 1.28649344376, 1.32715373843, 1.390581662, 1.46526549808,\n      1.54327110388, 1.62059010963, 1.69596098116, 1.7696249915, 1.84250446606,\n      1.91577469588, 1.9906761414, 2.06844070703, 2.15025910033, 2.23725801233,\n      2.33048195717, 2.43088845693, 2.53937050254, 2.65681989889, 2.7842411319,\n      2.92291744476, 3.07461640215, 3.24180023677, 3.42778241369, 3.63675904156,\n      3.87365097514, 4.143710567, 4.45185696271, 4.80171232165, 5.19436559275,\n      5.62702490554, 6.09188716501, 6.57564435845, 7.05998364026, 7.52322988394,\n      7.94298096737, 8.2992650359, 8.57750069488, 8.77049439556, 8.87895149092,\n      8.91044906357, 8.87730673187, 8.79406327315, 8.67522782842, 8.53371011766,\n      8.38001797091, 8.22208255874, 8.0654801109, 7.91383551742, 7.7692608383,\n      7.63275253031\n    ],\n    [\n      0.698911239617, 0.685384628493, 0.672972021101, 0.661666749167, 0.651729129582,\n      0.643761220664, 0.638694110257, 0.637640356994, 0.641588292352, 0.650979138858,\n      0.665308010839, 0.682966768732, 0.701510665566, 0.7183632843, 0.731769250012,\n      0.741649420542, 0.749939845058, 0.760121267024, 0.776073362026, 0.800833414471,\n      0.835847524032, 0.880896453506, 0.934490713253, 0.994422410906, 1.05826074572,\n      1.12371060034, 1.18883220762, 1.25214647772, 1.31265328792, 1.36978640507,\n      1.42332353198, 1.47326319821, 1.51967176019, 1.56249457189, 1.60131750087,\n      1.63506265726, 1.66161469025, 1.67741952384, 1.677205365, 1.6541769028,\n      1.60131504478, 1.51459875352, 1.39846099366, 1.27142763925, 1.1654925024,\n      1.11249536491, 1.1243776056, 1.18784013498, 1.27837785628, 1.37586280781,\n      1.46964555021, 1.55633160273, 1.63626592677, 1.71119408393, 1.7831573269,\n      1.85410482228, 1.92581735181, 1.9999248604, 2.07792472289, 2.16117504764,\n      2.25087137995, 2.34803007635, 2.45350472268, 2.56805890753, 2.69251402908,\n      2.82798426672, 2.97619450848, 3.13984196014, 3.32291474994, 3.53085208281,\n      3.77045026951, 4.04946307235, 4.37583848263, 4.75647016571, 5.19536744557,\n      5.69140816429, 6.23622975572, 6.81303869558, 7.39701066488, 7.95759490264,\n      8.46255770541, 8.88305369761, 9.19850452889, 9.39987243797, 9.49031746107,\n      9.48315816331, 9.39803688037, 9.25667726007, 9.0794329878, 8.883215973,\n      8.68076978594, 8.48088779986, 8.2891026614, 8.10848602653, 7.94036222891,\n      7.78487128366\n    ],\n    [\n      0.700152686016, 0.681339281849, 0.662898066351, 0.645025587969, 0.628281036992,\n      0.613693261602, 0.602787673223, 0.597445686136, 0.599500090778, 0.610042854547,\n      0.628624444016, 0.652760729171, 0.678178464589, 0.699919845819, 0.714064735137,\n      0.719573280007, 0.719361635616, 0.719582445355, 0.727165907757, 0.747196978031,\n      0.781664159849, 0.829741253192, 0.888816222724, 0.955524465576, 1.02648142634,\n      1.09871371331, 1.16987500327, 1.23831883833, 1.30307461545, 1.36375901097,\n      1.42044693481, 1.47351666488, 1.52347087271, 1.57071930219, 1.61529089307,\n      1.65642544945, 1.69198611505, 1.71765979286, 1.72603411267, 1.70596677888,\n      1.64332636248, 1.52516254512, 1.34989160018, 1.14292554791, 0.964176721708,\n      0.880648423374, 0.912794123925, 1.02291700282, 1.15892361449, 1.28867238892,\n      1.40139218835, 1.49740358224, 1.5805793841, 1.65507068769, 1.72437908089,\n      1.79132827242, 1.85826367786, 1.92723045085, 2.00006085107, 2.07837591029,\n      2.16353848035, 2.25660566517, 2.35832449389, 2.46920372927, 2.58968882004,\n      2.72046945922, 2.86294128431, 3.01979195783, 3.19558265126, 3.39712109067,\n      3.63347906622, 3.91565677764, 4.25587447155, 4.66615669472, 5.15571041933,\n      5.72714091334, 6.37252610543, 7.07087562963, 7.78818583781, 8.48063182583,\n      9.10077236047, 9.60580988309, 9.96587822771, 10.1696575989, 10.2252243429,\n      10.1559735707, 9.99354452277, 9.77056988094, 9.51542450939, 9.24973082609,\n      8.98816738032, 8.739599256, 8.5086221633, 8.29696438046, 8.10454107572,\n      7.93017294773\n    ],\n    [\n      0.695754212266, 0.671553467369, 0.646952537722, 0.622247700904, 0.598187426976,\n      0.57615865488, 0.55833809906, 0.547674312981, 0.547462375096, 0.560278482436,\n      0.586392426482, 0.622436890339, 0.661361523535, 0.693997416727, 0.711913219471,\n      0.711333693667, 0.696617365711, 0.679505933407, 0.673167254017, 0.686100087133,\n      0.720354305175, 0.773304622423, 0.840185968339, 0.915856121088, 0.995681226747,\n      1.07590682256, 1.15378441418, 1.22756689984, 1.29641643792, 1.36025554314,\n      1.41959038417, 1.47532611995, 1.52857670728, 1.58044831529, 1.63174564079,\n      1.68251015751, 1.73124696771, 1.77365002291, 1.8006744449, 1.79615555945,\n      1.73528944997, 1.58775847091, 1.33317390341, 0.997341853556, 0.691277043579,\n      0.563883348028, 0.649436542372, 0.845125267733, 1.0475223145, 1.21522380795,\n      1.34561147195, 1.44770631695, 1.53084936498, 1.60208075244, 1.6663370217,\n      1.72718445007, 1.78743568138, 1.84952237722, 1.9156403132, 1.98772651386,\n      2.06734948901, 2.15559898563, 2.25304286067, 2.35978650021, 2.47565728226,\n      2.60056453987, 2.73511977715, 2.88154620311, 3.04469403136, 3.23275076058,\n      3.45736258676, 3.73341667065, 4.07881669205, 4.51347389716, 5.05575493424,\n      5.71590076871, 6.48862187905, 7.34810040513, 8.24735797175, 9.12255958181,\n      9.90233767548, 10.5213098322, 10.934634651, 11.1282178605, 11.119877897,\n      10.9510394315, 10.6732981136, 10.3358341432, 9.97762693991, 9.62510251632,\n      9.29357008943, 8.99024488653, 8.71723444383, 8.47375467446, 8.25750889258,\n      8.06546345994\n    ],\n    [\n      0.687755099654, 0.658154310766, 0.627279037648, 0.59538476881, 0.563226022091,\n      0.532355229411, 0.505506571509, 0.486932677907, 0.482266266506, 0.497149812219,\n      0.534234504109, 0.58987872672, 0.653194191266, 0.708060801177, 0.736828419531,\n      0.727764939194, 0.686588042906, 0.637974759568, 0.608823100754, 0.612646624152,\n      0.649035770523, 0.71071262648, 0.78912884817, 0.876753231503, 0.967567701703,\n      1.05706915423, 1.14220315205, 1.22125445139, 1.29367069862, 1.35983700561,\n      1.42084142572, 1.4782633395, 1.53399294548, 1.59006016258, 1.64841319034,\n      1.71052661332, 1.77661085157, 1.84401180747, 1.9041594862, 1.93743129131,\n      1.90652799943, 1.75350374126, 1.41611376775, 0.895429562691, 0.380112003129,\n      0.194657570252, 0.385961296704, 0.703413347947, 0.975870286532, 1.17216342583,\n      1.31001376955, 1.41043726699, 1.48816314699, 1.55234367169, 1.60866702713,\n      1.6609954152, 1.71238115146, 1.76558771517, 1.82323585894, 1.88768663559,\n      1.96079716697, 2.04369885844, 2.1367043133, 2.23936042301, 2.35061840006,\n      2.46917223985, 2.59418338622, 2.72662655495, 2.8710627079, 3.03692031721,\n      3.23847458346, 3.49450842012, 3.82962119794, 4.27562521291, 4.86724190003,\n      5.62978278539, 6.56475849427, 7.64095640556, 8.79313552117, 9.92746689059,\n      10.9345668125, 11.7113356156, 12.1875063334, 12.3455988224, 12.2228290226,\n      11.8936497826, 11.4433473199, 10.9459394518, 10.4533637215, 9.99515741463,\n      9.58391472328, 9.22192248498, 8.90635309374, 8.63235926498, 8.39453324608,\n      8.18746635305\n    ],\n    [\n      0.678064464792, 0.643219976134, 0.60611778945, 0.566807087546, 0.525783511101,\n      0.484378761144, 0.445439894228, 0.414341613181, 0.399880357563, 0.413355794684,\n      0.463418800796, 0.548118166652, 0.651799820684, 0.748660575119, 0.804542752594,\n      0.785206057338, 0.693103676139, 0.585753460633, 0.52188254088, 0.518731007303,\n      0.564685305795, 0.64226661358, 0.737590390637, 0.840830972883, 0.944919876514,\n      1.04485018435, 1.13745702067, 1.22125624444, 1.29618693858, 1.36328805238,\n      1.42438819089, 1.48186618216, 1.5385016096, 1.59739994772, 1.66194267578,\n      1.73565495148, 1.82174876966, 1.92177837074, 2.03215598009, 2.13617574806,\n      2.18898962599, 2.09947814926, 1.73702377388, 1.03603103383, 0.265130419595,\n      0.00874508689224, 0.299546829172, 0.692155799556, 0.983682291916, 1.17368856937,\n      1.29869048366, 1.38608886771, 1.45188727307, 1.50494219719, 1.55037182948,\n      1.59164475119, 1.63175654896, 1.67377868311, 1.72091373382, 1.776169943,\n      1.84185424122, 1.91915879256, 2.00803732127, 2.10733042726, 2.21492681416,\n      2.32790849986, 2.44312434379, 2.55900253841, 2.67873033053, 2.81276686675,\n      2.97778619728, 3.19455042506, 3.49308097976, 3.9229474104, 4.54938453179,\n      5.42696444208, 6.57044421032, 7.94182737232, 9.45076340326, 10.9600627909,\n      12.3001795833, 13.3028660075, 13.8517223231, 13.9247189883, 13.598367536,\n      13.0093094922, 12.3003718711, 11.5817568151, 10.9184714018, 10.3372141752,\n      9.84070438454, 9.42065610513, 9.06585636888, 8.76566714982, 8.5108166551,\n      8.29318241315\n    ],\n    [\n      0.668456079739, 0.628780577359, 0.585832736487, 0.539315632501, 0.489187274298,\n      0.436024397464, 0.381875893301, 0.332101069688, 0.298446670055, 0.301043058102,\n      0.361355905111, 0.482976584929, 0.642987693573, 0.805043490729, 0.915898213884,\n      0.890594999167, 0.70399047038, 0.493994421664, 0.389663327378, 0.39580898875,\n      0.467865031049, 0.571883627875, 0.690182713637, 0.81261259525, 0.931951241729,\n      1.04300949715, 1.14271852284, 1.23006681438, 1.30574721053, 1.37168216163,\n      1.43060040379, 1.48576018874, 1.54084568001, 1.60002726622, 1.66816480958,\n      1.75112038939, 1.85607904996, 1.99149505696, 2.16531127078, 2.37722886327,\n      2.5947622781, 2.70288002878, 2.47372921988, 1.73831484727, 0.819372521696,\n      0.430897543652, 0.597763517866, 0.875214892753, 1.08243851494, 1.21747679211,\n      1.30717688937, 1.37087482738, 1.41927290444, 1.45792439301, 1.4899405052,\n      1.51770264091, 1.54389454397, 1.57198114775, 1.60609683778, 1.65034446046,\n      1.70777836139, 1.77963479269, 1.86526884942, 1.96264100161, 2.06862961011,\n      2.17868564903, 2.28653145284, 2.38600746434, 2.47679398959, 2.57036612838,\n      2.68595924574, 2.83962058699, 3.05762042537, 3.41652854313, 4.04327367061,\n      5.0480676634, 6.46386310102, 8.2398641878, 10.2541385524, 12.3132518691,\n      14.1552013291, 15.4951533942, 16.1259871652, 16.0175252341, 15.3282012224,\n      14.3152675927, 13.2200658025, 12.2018449802, 11.3313850997, 10.6176005924,\n      10.0396730175, 9.56999925712, 9.18489817688, 8.86668377132, 8.60210193748,\n      8.38040772351\n    ],\n    [\n      0.660521915487, 0.6167400358, 0.568796669543, 0.516016336732, 0.457692052611,\n      0.393256967111, 0.322955419763, 0.250045236578, 0.186643268878, 0.163151957394,\n      0.223754876832, 0.38181347839, 0.595298909187, 0.813267556083, 0.976135135066,\n      0.949038034921, 0.645500501257, 0.314864418919, 0.196954319745, 0.251670129049,\n      0.371576492732, 0.510261014803, 0.655112591222, 0.798890159434, 0.934576244217,\n      1.05664553005, 1.16217732296, 1.25090837022, 1.32463118437, 1.38643703451,\n      1.4401136635, 1.4898156608, 1.54001428951, 1.59570378179, 1.6628691105,\n      1.7492899544, 1.86586278745, 2.02872997136, 2.26225880055, 2.60016620724,\n      3.06690702942, 3.57279661698, 3.70032096387, 3.01029671017, 1.9630129893,\n      1.31790574298, 1.1441359835, 1.16597304881, 1.22479059408, 1.27833513091,\n      1.32186637431, 1.35726931783, 1.38606664396, 1.40880850817, 1.42575401146,\n      1.43774201184, 1.44699840181, 1.45762789006, 1.47537644726, 1.50632942421,\n      1.55485968385, 1.62207405515, 1.70602677007, 1.80338538881, 1.91052918773,\n      2.02236333309, 2.12961487059, 2.21886941222, 2.2817772315, 2.3308254988,\n      2.39132102077, 2.45803717717, 2.52135206532, 2.7035091766, 3.26861623428,\n      4.42422070147, 6.20502861652, 8.52838183922, 11.2448536673, 14.1082132308,\n      16.7250114934, 18.5955157351, 19.3186143607, 18.8429677237, 17.5042694638,\n      15.7998324569, 14.1363267941, 12.728408525, 11.6267281419, 10.7906240026,\n      10.1522699308, 9.65301233706, 9.25351427213, 8.92966015623, 8.66549127522,\n      8.44840763074\n    ],\n    [\n      0.655589256377, 0.608720050378, 0.557109539362, 0.499837691511, 0.435728200297,\n      0.363287402255, 0.280936734843, 0.188738249805, 0.0956885432131, 0.0389802441299,\n      0.0903381230992, 0.269552752598, 0.496737595929, 0.702830136198, 0.831571750615,\n      0.77328131832, 0.462807344156, 0.117947037733, 0.0239336677667, 0.144502508391,\n      0.307393236111, 0.473812900672, 0.643080617423, 0.808469548555, 0.960601571985,\n      1.09247815363, 1.20125311127, 1.28784304012, 1.35565857788, 1.40933746512,\n      1.45388564322, 1.49429569468, 1.53556594285, 1.58303774417, 1.64304399344,\n      1.72400394323, 1.83836792417, 2.00641288965, 2.26431700292, 2.68170107304,\n      3.38908556339, 4.49288198875, 5.24813583604, 4.27593060595, 2.84525264426,\n      1.96949428388, 1.55948202068, 1.39394924855, 1.33576970111, 1.32194165385,\n      1.32620954794, 1.33696018656, 1.34803531722, 1.35548167565, 1.35672751793,\n      1.35087091878, 1.33954677415, 1.32784007052, 1.32428087409, 1.33872281987,\n      1.37809698882, 1.44282517973, 1.52767232331, 1.62668524445, 1.73684505663,\n      1.85580588144, 1.97439843773, 2.07060132431, 2.11956689692, 2.13078422758,\n      2.14793161893, 2.11483951315, 1.90146472088, 1.72475264195, 2.16085384514,\n      3.54008980116, 5.80974284547, 8.82552876892, 12.4551392366, 16.4557513502,\n      20.2797624713, 23.0326397843, 23.8725850638, 22.6808081135, 20.1896249192,\n      17.3775529192, 14.9095525349, 13.0320599347, 11.7125352948, 10.8023154838,\n      10.150850544, 9.65628233554, 9.2650549589, 8.9514830255, 8.70038151748,\n      8.49872886038\n    ],\n    [\n      0.654632008943, 0.605880352187, 0.552236889513, 0.492799244673, 0.426412196872,\n      0.351578135362, 0.266559875453, 0.170719552936, 0.0714092288762, 0.00592789962876,\n      0.0513639513333, 0.212917791639, 0.394490493447, 0.540284224469, 0.607908479757,\n      0.542173989943, 0.339946647814, 0.120877953118, 0.051180460362, 0.148867152887,\n      0.297268425337, 0.473018813495, 0.664082475409, 0.851951596086, 1.02026835551,\n      1.15937987422, 1.26690873671, 1.34588126562, 1.4021758222, 1.44248507483,\n      1.47317569903, 1.49992399383, 1.52786442197, 1.56204822119, 1.60813742248,\n      1.67341470557, 1.76842304461, 1.91007316597, 2.12862724465, 2.48662546973,\n      3.13889395012, 4.46374656109, 5.8669748553, 4.35302774017, 2.84693092282,\n      2.07080027099, 1.67050079003, 1.46772264488, 1.36952561532, 1.32556615141,\n      1.30883905997, 1.3042864353, 1.3025716342, 1.29710960741, 1.28303744539,\n      1.25751226619, 1.22112075929, 1.18000947237, 1.14721367932, 1.13995971334,\n      1.1708091477, 1.23829313678, 1.32871321263, 1.4296623672, 1.5403278129,\n      1.66759929938, 1.810643645, 1.94375851289, 2.01739212955, 2.01900698087,\n      2.02154897653, 1.90067567314, 1.28837085045, 0.583546345076, 0.913645034754,\n      2.63542665335, 5.45742751134, 9.19394284198, 13.8407396186, 19.2997697396,\n      24.9301371464, 29.1819644492, 30.2246363218, 27.7208281913, 23.2829969618,\n      18.8088211093, 15.2969414628, 12.9308622201, 11.4822924075, 10.6052739814,\n      10.019919709, 9.57607104301, 9.21887348, 8.93287910674, 8.7093410427, 8.53616257786\n    ],\n    [\n      0.658220210397, 0.608806897529, 0.554763933182, 0.495453324849, 0.430212743483,\n      0.358482437517, 0.28027900491, 0.197879629324, 0.121306944839, 0.0802929736971,\n      0.116344588776, 0.21087484374, 0.313255205446, 0.406690864883, 0.454125780433,\n      0.414014230131, 0.293763575099, 0.166721649725, 0.111304106601, 0.162461714131,\n      0.30537866778, 0.505146522006, 0.728327695579, 0.943710179834, 1.12785614966,\n      1.26933921558, 1.36804345722, 1.43100079802, 1.46789883607, 1.48810330335,\n      1.49938581137, 1.50779559124, 1.51808789724, 1.53434249673, 1.56061038634,\n      1.60154478726, 1.66299001843, 1.752340338, 1.87775279349, 2.04236116589,\n      2.2178270203, 2.25003357333, 2.02379830113, 2.18393929652, 2.01723532144,\n      1.7387335724, 1.53005227066, 1.39964199327, 1.325143699, 1.28603026256,\n      1.26724338695, 1.25789079875, 1.24947136013, 1.23463027327, 1.20672374217,\n      1.16045255494, 1.09408036403, 1.01375102352, 0.93864870186, 0.900180498921,\n      0.924579538259, 1.00678540929, 1.11212571941, 1.21245900912, 1.31165335806,\n      1.43613619739, 1.60531318891, 1.80135494045, 1.95415009684, 1.99970692296,\n      1.99927883563, 1.83806072244, 1.05221534351, 0.102679277712, 0.42747893776,\n      2.36420317714, 5.49238073777, 9.68258350697, 15.140111391, 22.0684564989,\n      29.9548966954, 36.4637375282, 37.9198879166, 33.3933537985, 26.1755332916,\n      19.6186815944, 14.9884647425, 12.2493241387, 10.8661460758, 10.1940285515,\n      9.77416354598, 9.42449647961, 9.1215442946, 8.87868312416, 8.69881049581,\n      8.57001339857\n    ],\n    [\n      0.666539116827, 0.617539578616, 0.564440240984, 0.506957374084, 0.44504087569,\n      0.379194392431, 0.311182790022, 0.245500775943, 0.191654342597, 0.163452763616,\n      0.163176580458, 0.174824193115, 0.215098914736, 0.29594015882, 0.362531188622,\n      0.355959203537, 0.264265868051, 0.115744438953, 0.00756039497288, 0.0984085787236,\n      0.317787787206, 0.582220788094, 0.856988481506, 1.10700338111, 1.30435418696,\n      1.43860145461, 1.51564123841, 1.54979228983, 1.55641521074, 1.54808168393,\n      1.53369785296, 1.51908255478, 1.50794059049, 1.50273706313, 1.5052996928,\n      1.51705459562, 1.53864563143, 1.56809845249, 1.59486064219, 1.58130585171,\n      1.40738880806, 0.775889496913, 0.00504509227403, 0.74179796658, 1.19709108317,\n      1.27943396673, 1.27429957311, 1.2506312055, 1.22876197011, 1.21423487995,\n      1.20601598067, 1.20003985816, 1.19057351177, 1.17057361167, 1.13186999275,\n      1.06593398064, 0.966483624965, 0.836221121773, 0.699495466266, 0.611876303157,\n      0.63268387939, 0.753449623921, 0.890895244996, 0.982761988549, 1.0439310728,\n      1.13702371094, 1.31226442305, 1.56340984405, 1.8126854983, 1.95129200984,\n      1.984605201, 1.89594912703, 1.4631394669, 0.955048589513, 1.35043039224,\n      3.09544640949, 6.03022261361, 10.1532446891, 15.8071156431, 23.459590495,\n      32.9048169018, 41.4006273353, 43.3651218828, 36.9788998583, 27.3716706268,\n      19.2273010776, 13.8566554928, 11.0235539179, 9.95774435474, 9.66458137661,\n      9.47466326926, 9.22866966664, 8.98369336277, 8.79660581323, 8.67989054353,\n      8.61613068393\n    ],\n    [\n      0.679473998887, 0.631731533558, 0.580502829241, 0.525774509112, 0.467865511093,\n      0.407703105564, 0.347218303809, 0.289596043054, 0.238074466914, 0.190262529651,\n      0.132598532381, 0.0738056655197, 0.0875377885818, 0.195541649809, 0.307435076281,\n      0.344304848811, 0.286915791069, 0.159963106038, 0.0699557210265, 0.166919991938,\n      0.426449367744, 0.755482128082, 1.09101620513, 1.37820861596, 1.57927158985,\n      1.68762835428, 1.72166136502, 1.70807678459, 1.66999516162, 1.62310837758,\n      1.57646484568, 1.53454970178, 1.49912726454, 1.47045423407, 1.4478771203,\n      1.42984721928, 1.41320228567, 1.3911556662, 1.34868603089, 1.25355749938,\n      1.04832741346, 0.70112899241, 0.44320072123, 0.498963432398, 0.677269271375,\n      0.884860024108, 1.01717446932, 1.08248509384, 1.11192218268, 1.12565487236,\n      1.13264314758, 1.13460238304, 1.1285845804, 1.10816496789, 1.06389114615,\n      0.983736480034, 0.855056896738, 0.672081386142, 0.457229397445, 0.29557029864,\n      0.312230552689, 0.504516532892, 0.693664948317, 0.758182212528, 0.738140275974,\n      0.761464261419, 0.919048525617, 1.1941583814, 1.51779736262, 1.78535232986,\n      1.95523759421, 2.04912562599, 2.0486029494, 2.11161779135, 2.69975115697,\n      4.17953444976, 6.65653018507, 10.2617116918, 15.3350004509, 22.3136518742,\n      31.0338239459, 38.9677602053, 40.791488538, 34.64669658, 25.4136632005,\n      17.5722136283, 12.4005633332, 9.8243921558, 9.17772126112, 9.2444003789,\n      9.20797577463, 9.01063712115, 8.81080428924, 8.69532171182, 8.67018412494,\n      8.70055154359\n    ],\n    [\n      0.696723036728, 0.650853524776, 0.602069456371, 0.550473537064, 0.496424583459,\n      0.440614331826, 0.383971722723, 0.326920693064, 0.267057122692, 0.195462265265,\n      0.101869464236, 0.0137990121553, 0.0205283219995, 0.146032627894, 0.290779483655,\n      0.370772355802, 0.369679047706, 0.318733743227, 0.300756452817, 0.418245941652,\n      0.696577472392, 1.08032770829, 1.48062636794, 1.80227174504, 1.98644891028,\n      2.03623806354, 1.99441396403, 1.90736520761, 1.8072805637, 1.71129767603,\n      1.62639684662, 1.55398163807, 1.4927686402, 1.44026259667, 1.3932967378,\n      1.3479459957, 1.29893063156, 1.23851935199, 1.15507271121, 1.03231815347,\n      0.853395731739, 0.613274931878, 0.302077479717, 0.0591023740476, 0.298433320667,\n      0.616787890771, 0.821292492958, 0.935814917153, 0.998066449843, 1.03293386545,\n      1.05362103227, 1.06493694968, 1.06567272347, 1.04991382827, 1.00752749413,\n      0.924241370742, 0.782562909344, 0.568061730087, 0.294496356532, 0.0637429430724,\n      0.0722411383513, 0.335438906692, 0.561429623656, 0.56572325062, 0.416978320875,\n      0.343452095201, 0.499503608801, 0.764786353325, 1.12917894931, 1.53275653129,\n      1.88145071215, 2.1756282765, 2.46278163076, 2.86136279968, 3.59308105566,\n      4.88275425748, 6.88757070252, 9.7677424276, 13.7513805101, 19.0231216395,\n      25.217924822, 30.4550072161, 31.5368914431, 27.4909983817, 21.1468509196,\n      15.4193528892, 11.4535442033, 9.45348029543, 9.02088704235, 9.09149912981,\n      8.97972106395, 8.74921824079, 8.5937575767, 8.5846905947, 8.69800915489,\n      8.86590707316\n    ],\n    [\n      0.717893234182, 0.674345622223, 0.628381493793, 0.58010851434, 0.529752269969,\n      0.477573076811, 0.42353735559, 0.366488237468, 0.302794684979, 0.226378487214,\n      0.137492597568, 0.0669040448854, 0.0776368495599, 0.18643974372, 0.326456042688,\n      0.431814808414, 0.487360758414, 0.520205520801, 0.590271088192, 0.770813703206,\n      1.10465778996, 1.56683995482, 2.05079928146, 2.40590133449, 2.54190409471,\n      2.48637829219, 2.3269526167, 2.13812497454, 1.95982501827, 1.80654614528,\n      1.67977535395, 1.57572061618, 1.48897539616, 1.413910762, 1.34495645878,\n      1.27635599509, 1.20170537647, 1.11358749564, 1.00391312491, 0.866002434055,\n      0.698208248006, 0.500171314641, 0.254956171117, 0.0864219550076, 0.257366651695,\n      0.516252615806, 0.705679516793, 0.825112022175, 0.897353248071, 0.942196848734,\n      0.972148572119, 0.992473783187, 1.00239853878, 0.996255468662, 0.964123579329,\n      0.892080908139, 0.763200363553, 0.563632358039, 0.306695297707, 0.0899772609116,\n      0.0993721651335, 0.340804467534, 0.521289784924, 0.451420608519, 0.189278688141,\n      0.0257930581651, 0.214024564016, 0.362164635581, 0.744514901425, 1.27068596091,\n      1.76716954634, 2.20937183574, 2.65078809543, 3.18322638212, 3.93113571883,\n      5.02663157466, 6.58932830523, 8.73419411882, 11.5614031307, 15.0501807163,\n      18.7863257109, 21.6551548477, 22.2222048862, 20.1517803702, 16.6921287661,\n      13.3302066534, 10.8748161984, 9.55921681703, 9.12036818687, 8.91782707498,\n      8.62579611409, 8.37133894737, 8.31158112709, 8.47936766287, 8.80914024763,\n      9.18212443458\n    ],\n    [\n      0.742554852239, 0.701674813442, 0.658833961268, 0.614117824265, 0.567634659065,\n      0.519394682978, 0.469042811238, 0.415458218301, 0.356659923923, 0.291654054426,\n      0.227111141453, 0.186948318985, 0.205491938382, 0.291101590232, 0.410314700654,\n      0.524683238188, 0.623639353491, 0.727879939167, 0.883048961643, 1.14847712108,\n      1.57207908035, 2.14337852715, 2.73517189995, 3.12707004058, 3.18708460566,\n      2.98601516121, 2.67832171302, 2.37159352976, 2.10905069305, 1.8975894771,\n      1.73021973884, 1.59659408997, 1.48675267426, 1.39198669408, 1.30464072864,\n      1.21758375941, 1.12367211171, 1.01549414966, 0.88593295569, 0.730677763235,\n      0.55501621018, 0.387664573949, 0.283259157959, 0.26857995098, 0.356890592981,\n      0.506096272181, 0.643260602336, 0.742115648283, 0.807585181916, 0.85267811795,\n      0.887527757064, 0.916263390561, 0.937390912338, 0.945078347798, 0.930241750291,\n      0.881474719721, 0.787057373241, 0.641652459343, 0.464958794981, 0.330876965037,\n      0.342822210753, 0.480257805071, 0.562378786209, 0.464960127931, 0.235897059212,\n      0.107562213121, 0.0924941492279, 0.0614861758669, 0.50808885705, 1.10866268227,\n      1.67353422578, 2.17795114678, 2.66421301626, 3.19765981884, 3.85570013504,\n      4.72185846408, 5.87846399978, 7.39311661213, 9.2853673639, 11.4585110753,\n      13.5987478346, 15.1398889411, 15.5115997492, 14.6225907119, 12.9827215058,\n      11.2688726273, 9.93339714591, 9.11718073254, 8.66791719749, 8.31187120908,\n      7.97783764821, 7.8088221508, 7.94138150133, 8.39820249445, 9.07409666803,\n      9.76491586624\n    ],\n    [\n      0.770258279095, 0.732322632727, 0.69288190883, 0.652030102331, 0.609862529692,\n      0.566401926658, 0.521500563816, 0.474845480372, 0.426471985386, 0.378560779305,\n      0.338891487568, 0.323150343137, 0.348805497155, 0.420196855578, 0.523257499456,\n      0.640491256324, 0.768613194187, 0.925096506091, 1.14708869341, 1.48552055493,\n      1.98706883982, 2.64539114221, 3.3197823668, 3.73797467341, 3.7291141125,\n      3.39970845507, 2.96445045591, 2.55909153317, 2.22772470015, 1.96946166932,\n      1.7696692558, 1.61247788866, 1.48430019589, 1.37412134035, 1.27285544062,\n      1.17253983673, 1.06560871902, 0.944355569766, 0.800746624542, 0.627121775869,\n      0.42041613021, 0.203260527059, 0.0894800982378, 0.191870064085, 0.352703557909,\n      0.489196889711, 0.595358466346, 0.669122535208, 0.71921341778, 0.758518454595,\n      0.795886662223, 0.833462613528, 0.867921055355, 0.892616005604, 0.899264591854,\n      0.879403714611, 0.826821501825, 0.742982951797, 0.646821976227, 0.580865783862,\n      0.585304362755, 0.637958548577, 0.654297067001, 0.576258199003, 0.437058619332,\n      0.32922871664, 0.211194243795, 0.213175332753, 0.588128922639, 1.12283492368,\n      1.64855468883, 2.12448117219, 2.56571733301, 3.00785363896, 3.50114419695,\n      4.11286167624, 4.91639093061, 5.95685140709, 7.21361105313, 8.57981090602,\n      9.85222614352, 10.7560774434, 11.0639129741, 10.7571377135, 10.0507120508,\n      9.24175159857, 8.54715910933, 8.03556345158, 7.64657563845, 7.30208353996,\n      7.04188464423, 7.02893834304, 7.4394538845, 8.34259230569, 9.59401998744,\n      10.8121192419\n    ],\n    [\n      0.800533165012, 0.765752994796, 0.729943639856, 0.693250763768, 0.655850002978,\n      0.617937705115, 0.579765805351, 0.541836078532, 0.505468050625, 0.473933401036,\n      0.453809809297, 0.454905688528, 0.486598383229, 0.552032943014, 0.646803588962,\n      0.765493635944, 0.910618825078, 1.0979687182, 1.35756460166, 1.72987431455,\n      2.25040235202, 2.90602650389, 3.56181782125, 3.95999564185, 3.92961537634,\n      3.56789512222, 3.09333440512, 2.65107768632, 2.28970103569, 2.00833205615,\n      1.79076158622, 1.61947408672, 1.47962262964, 1.35936609983, 1.24917755035,\n      1.14099033021, 1.02741214143, 0.901025038125, 0.753741919671, 0.576499117816,\n      0.362288536177, 0.130757059544, 0.00802466047829, 0.130221716785, 0.326783749635,\n      0.464496231059, 0.545781299789, 0.590863554219, 0.620326399507, 0.651293645649,\n      0.691832439109, 0.740692023838, 0.791272241949, 0.835310514058, 0.864877005554,\n      0.873685256519, 0.858906928156, 0.824139743761, 0.782550716035, 0.754914340641,\n      0.754927251187, 0.769702929143, 0.764644581115, 0.716734104299, 0.639564688788,\n      0.566743345021, 0.521821608777, 0.591204200406, 0.861106729015, 1.25796607296,\n      1.67542592, 2.05939840319, 2.39253969213, 2.67845474119, 2.9514342466,\n      3.29470310277, 3.81390179972, 4.55009874229, 5.43958378917, 6.36902928815,\n      7.2148912252, 7.8391756433, 8.12938936071, 8.07579118195, 7.78363380127,\n      7.40252491645, 7.04212118139, 6.72876515772, 6.42824084161, 6.12328600216,\n      5.89692855544, 5.97220286582, 6.67066909329, 8.23438897047, 10.5034152378,\n      12.6788524059\n    ],\n    [\n      0.832888424982, 0.801396506338, 0.769363949357, 0.737014620059, 0.704645386509,\n      0.672661191366, 0.64166854258, 0.612692305491, 0.587585068893, 0.569595684171,\n      0.563755231299, 0.576362192244, 0.613109493175, 0.676913536684, 0.767870741319,\n      0.886417056048, 1.0378338629, 1.23548885127, 1.5013828761, 1.86223397073,\n      2.33566293083, 2.89734330361, 3.43565983084, 3.76151816489, 3.7470993838,\n      3.45054609159, 3.03542076468, 2.62874903887, 2.28376440461, 2.00762785212,\n      1.78961910169, 1.61523814172, 1.47121214757, 1.34659168446, 1.23250530897,\n      1.12157468328, 1.00732587771, 0.883704203109, 0.744837202919, 0.585800628684,\n      0.407876255609, 0.238596064275, 0.160260969238, 0.231479288585, 0.360189042274,\n      0.450032141987, 0.488004921583, 0.495089002348, 0.49945219939, 0.522957653884,\n      0.571214928862, 0.636373998579, 0.706668155376, 0.771747264254, 0.823821369577,\n      0.858000161822, 0.873065067719, 0.872472841167, 0.86447884242, 0.859307663425,\n      0.862429249977, 0.868687989049, 0.865662416985, 0.845923433765, 0.816472624125,\n      0.796544135116, 0.814324885146, 0.91203314502, 1.11605228011, 1.39789594487,\n      1.70032120145, 1.97096128781, 2.16597896041, 2.25422981037, 2.25645512821,\n      2.31113078379, 2.62592641147, 3.2364815104, 3.96512694867, 4.67651806805,\n      5.33946838317, 5.88847133085, 6.20982394659, 6.25672073489, 6.09553322425,\n      5.85837911667, 5.65386170742, 5.48342534635, 5.26691530814, 4.94987951229,\n      4.59673346577, 4.50270999416, 5.31834768525, 7.794156846, 11.9349357376,\n      15.9744991244\n    ],\n    [\n      0.866821540191, 0.838660691386, 0.810436313549, 0.782453145215, 0.755122835805,\n      0.729016546673, 0.704963495111, 0.684219779248, 0.668709305561, 0.661262577297,\n      0.665653060522, 0.686174903109, 0.726756979791, 0.790192574521, 0.878394095082,\n      0.993991703768, 1.14250842358, 1.33382394902, 1.58167350068, 1.89944744828,\n      2.28918967794, 2.72136803847, 3.11494685275, 3.3529605184, 3.35760903342,\n      3.15524119733, 2.8439424448, 2.51541603936, 2.21936854645, 1.97086118384,\n      1.76727490972, 1.59974559735, 1.45851035982, 1.33481279791, 1.22130193064,\n      1.11189845371, 1.0015637788, 0.886207458991, 0.763036198716, 0.632100207704,\n      0.500730043932, 0.391620401658, 0.341642253424, 0.362718717798, 0.409566950322,\n      0.430565690029, 0.412501527588, 0.37385153195, 0.350073070536, 0.370999119157,\n      0.435933040331, 0.524142588024, 0.617315643803, 0.703899386722, 0.776699551094,\n      0.831860857521, 0.86895592647, 0.891003008317, 0.903633235698, 0.912944781795,\n      0.922521948377, 0.931728891606, 0.937565864997, 0.9394117924, 0.942936624894,\n      0.960630714608, 1.01031857268, 1.11098339126, 1.27046188588, 1.47386300349,\n      1.68584396022, 1.85615738796, 1.9188734894, 1.80122154987, 1.49249434205,\n      1.21667038125, 1.41301783919, 2.09139133925, 2.77619121165, 3.33032243536,\n      3.93853468471, 4.59234773069, 5.05475135586, 5.16015514394, 4.93440304638,\n      4.59935811995, 4.42081557172, 4.38861746443, 4.27681249948, 3.91413061141,\n      3.26691287856, 2.5642172996, 2.98722548063, 6.48484626507, 13.6637110402,\n      21.0671714216\n    ],\n    [\n      0.901836133002, 0.876957442913, 0.852453832451, 0.82869573132, 0.806177165552,\n      0.785567290566, 0.767789798429, 0.754133249408, 0.746374752816, 0.746860338536,\n      0.758447497435, 0.784237779918, 0.827171464641, 0.889768345672, 0.974353017371,\n      1.08382159038, 1.222546266, 1.39669425444, 1.61308497452, 1.87549873208,\n      2.1773288747, 2.49135748197, 2.7639551842, 2.928531062, 2.94220511086, 2.8153743221,\n      2.60044931676, 2.35528868945, 2.11891674357, 1.90893908347, 1.72880800081,\n      1.57509612984, 1.44197664513, 1.32339238258, 1.21391841573, 1.10903468419,\n      1.00522453306, 0.900163521337, 0.793251948165, 0.686800973036, 0.587920851148,\n      0.509296077895, 0.463008797479, 0.445124081002, 0.430261839724, 0.39169809429,\n      0.321725445075, 0.236527719396, 0.181575118762, 0.2082782033, 0.301155966712,\n      0.416080549757, 0.531321355173, 0.637064037965, 0.727172113902, 0.798355421555,\n      0.850506070602, 0.886438354382, 0.910821411117, 0.928552320523, 0.943193271452,\n      0.956386887796, 0.968845223804, 0.982431798612, 1.00195631237, 1.03558549515,\n      1.09364342086, 1.18545549241, 1.31389373828, 1.46939833056, 1.62511147628,\n      1.73115385884, 1.70691281632, 1.44368764198, 0.880106947873, 0.289753884421,\n      0.433173060306, 1.28992687874, 1.85345855941, 2.10720940519, 2.72723883336,\n      3.74516596589, 4.59635878414, 4.85169516088, 4.32031336003, 3.46187622539,\n      3.19958458221, 3.41718380024, 3.49967796728, 3.14879383521, 2.29303186038,\n      0.895319983662, 0.466636358838, 4.54249454618, 13.7692322189, 24.1692319262\n    ],\n    [\n      0.937462419935, 0.915734393579, 0.894760466548, 0.874953144804, 0.856849460825,\n      0.841152720598, 0.828787696786, 0.820964518101, 0.819233900687, 0.82550050959,\n      0.841955856511, 0.870919771425, 0.914648814003, 0.975240589846, 1.05474983646,\n      1.15548707803, 1.28025518325, 1.43210589013, 1.61311462535, 1.8217066009,\n      2.0484861816, 2.2719790305, 2.45839827391, 2.57068847394, 2.58581432037,\n      2.50767909548, 2.36331607254, 2.18679096724, 2.00533039831, 1.83468635671,\n      1.68101844765, 1.54459126506, 1.42281282289, 1.31211337048, 1.20894061199,\n      1.11025385848, 1.01381004664, 0.918439431279, 0.824432587463, 0.734022305024,\n      0.651541830128, 0.582041797016, 0.526976524573, 0.478923746217, 0.422529985059,\n      0.344356606072, 0.242061234326, 0.125628235508, 0.0380151783344, 0.0785724577277,\n      0.199341047663, 0.330515597567, 0.45918097916, 0.577998742373, 0.680235444551,\n      0.761868993581, 0.82247301048, 0.864785571132, 0.893460837497, 0.913520292117,\n      0.929039779975, 0.942603770045, 0.955819040797, 0.970623347009, 0.990618914018,\n      1.02171058716, 1.0717171648, 1.14857791323, 1.25644985165, 1.38955243915,\n      1.52480109913, 1.61415630421, 1.57769618686, 1.30855905973, 0.746503931514,\n      0.153086147863, 0.278429412282, 1.02232361357, 1.12134050924, 0.795745024652,\n      1.47835370355, 3.1917477593, 4.8203588717, 5.66030477513, 4.47731021581,\n      1.92355987776, 1.75283107274, 2.56385212303, 2.94583015262, 2.68820722075,\n      1.94731921544, 1.02257593697, 0.928063139629, 3.70594366495, 10.4013108669,\n      18.5914121236\n    ],\n    [\n      0.973275264755, 0.954500509824, 0.936787466515, 0.920566194305, 0.90638142754,\n      0.894922466634, 0.887057440071, 0.883865924639, 0.886657654551, 0.896960151747,\n      0.916461380871, 0.946911695566, 0.990019070115, 1.04739083654, 1.12055213213,\n      1.21099431737, 1.32010442364, 1.44875036196, 1.59629197342, 1.75891616011,\n      1.92758590728, 2.08667581669, 2.21522902421, 2.29239764706, 2.3056278009,\n      2.25636019862, 2.15867738082, 2.03220597888, 1.89477496426, 1.75863763319,\n      1.63023401693, 1.51168746649, 1.40254663387, 1.30113518121, 1.2054274007,\n      1.11357597306, 1.02424206444, 0.936833810332, 0.851681086494, 0.77004143667,\n      0.693627574667, 0.623230109083, 0.556537004642, 0.486843405708, 0.405387438118,\n      0.307502260728, 0.198270910735, 0.092790192447, 0.0174955356068, 0.0534579889319,\n      0.155247703327, 0.277717920157, 0.407558093382, 0.531966683406, 0.640343856637,\n      0.726430948919, 0.788838239584, 0.830252012842, 0.855946045538, 0.871974655885,\n      0.883364709262, 0.892908506714, 0.901310825, 0.90876378255, 0.916997992737,\n      0.93089612861, 0.959501981352, 1.01542368076, 1.10960232857, 1.24104750287,\n      1.38789844391, 1.50444387169, 1.52336503409, 1.37242172942, 1.04302952843,\n      0.740269374562, 0.835306421843, 1.11475543125, 0.732426800817, 0.020337946505,\n      0.731009790089, 2.91194804358, 5.14524838038, 6.82488425059, 5.30223953475,\n      0.230113869868, 0.76231670118, 2.10137117012, 2.63732439389, 2.43288239632,\n      1.73853950259, 0.739802602449, 0.436127325818, 2.63764227364, 6.57337318182,\n      11.1379030547\n    ],\n    [\n      1.00890673675, 0.99284178546, 0.978071692064, 0.965022948872, 0.954221075227,\n      0.946309828515, 0.94206991221, 0.942432183875, 0.948477730687, 0.961416447236,\n      0.982539654965, 1.01315197651, 1.05449897982, 1.10770936747, 1.17375230511,\n      1.25337096721, 1.34690858092, 1.45392091126, 1.5725006673, 1.69836097126,\n      1.82397141907, 1.93837658704, 2.02850298502, 2.082289521, 2.09265865825,\n      2.0601145144, 1.99221370791, 1.90032660381, 1.79582725175, 1.68757740703,\n      1.58115769719, 1.47928335138, 1.38266928709, 1.29087674379, 1.20296460686,\n      1.1179353081, 1.03502121489, 0.953848188833, 0.874466531286, 0.797171563958,\n      0.721988941345, 0.647798484327, 0.571489886947, 0.488180199215, 0.393577236463,\n      0.28813525012, 0.180300754315, 0.0849883659292, 0.0218094620587, 0.0513592771986,\n      0.137209569252, 0.249313618252, 0.376123259471, 0.501215470103, 0.610331253191,\n      0.694833912276, 0.752175952552, 0.785057454256, 0.800026807595, 0.805412415635,\n      0.808289252973, 0.811430349895, 0.812772647877, 0.808503873375, 0.797209765876,\n      0.782667375111, 0.77668970729, 0.801865847489, 0.883989293576, 1.02949187843,\n      1.21266951124, 1.38521500741, 1.49119855119, 1.48772987257, 1.38743134693,\n      1.30051945319, 1.34133050172, 1.35974737132, 1.03972880097, 0.685889879341,\n      1.30877502793, 2.95213172678, 4.63425781195, 5.56845125184, 4.36632821794,\n      1.79126969572, 1.57687356896, 2.26393385822, 2.56603487324, 2.33334288139,\n      1.70724322149, 0.831784885284, 0.606393586167, 2.03319036891, 4.17954068628,\n      6.68801023317\n    ],\n    [\n      1.04405236764, 1.03042707945, 1.01825883904, 1.00795453802, 1.00000237363,\n      0.994982629573, 0.993575712258, 0.996563836576, 1.00482183908, 1.0192930521,\n      1.0409488645, 1.07073513187, 1.10951221388, 1.15799338241, 1.21667506869,\n      1.28573386459, 1.36484905255, 1.45291103428, 1.54761204902, 1.64499887412,\n      1.73919350562, 1.82260459478, 1.88693009271, 1.92494015399, 1.93246952892,\n      1.90965042643, 1.86067915346, 1.79226518026, 1.71163366669, 1.62497153644,\n      1.5366984283, 1.44944471693, 1.3644175124, 1.28187666702, 1.20156408445,\n      1.1230284174, 1.04583641864, 0.969670661202, 0.894298256268, 0.81937860659,\n      0.744098529849, 0.666738105433, 0.584505691365, 0.494199329001, 0.394090326092,\n      0.286551213319, 0.179573806381, 0.0849619522687, 0.0224734454332, 0.04728424715,\n      0.125548604237, 0.23608274266, 0.362564013168, 0.486232020217, 0.591511890924,\n      0.66851911782, 0.713697734533, 0.729689818855, 0.724980251978, 0.712307271039,\n      0.703611194425, 0.702243833114, 0.700208004491, 0.685863872426, 0.653372453212,\n      0.604779182141, 0.552303249687, 0.5314887276, 0.598187557013, 0.770641998275,\n      1.00672881822, 1.2469664618, 1.44068893196, 1.55847297949, 1.6085898393,\n      1.63878769015, 1.68373571181, 1.69383948498, 1.61699137411, 1.6432019118,\n      2.13333273415, 3.06262563625, 3.95276993857, 4.29721634735, 3.77910260212,\n      2.88819553744, 2.54344210197, 2.62520501161, 2.62230769353, 2.33809768954,\n      1.82995610923, 1.27074380566, 0.908434274534, 1.40207058369, 2.73482074092,\n      4.33466694634\n    ],\n    [\n      1.07847182618, 1.0670062123, 1.05709649519, 1.04911910544, 1.04351434022,\n      1.04079098718, 1.04152741339, 1.04636666305, 1.05600289459, 1.07115707709,\n      1.09254141423, 1.12081390993, 1.15652533234, 1.20005869261, 1.25155550746,\n      1.31081574813, 1.37715517635, 1.44921255011, 1.52472684978, 1.60035239463,\n      1.67163502542, 1.73330002723, 1.77994696159, 1.80707269837, 1.81210830026,\n      1.79502908299, 1.75823867116, 1.70578686706, 1.64229629757, 1.57202603346,\n      1.4983177389, 1.42343807902, 1.34869363681, 1.27467090638, 1.20149239259,\n      1.12902828752, 1.05703612128, 0.985214799976, 0.913162876454, 0.840239280986,\n      0.765359635578, 0.686840922313, 0.602515945522, 0.510385496003, 0.409903482183,\n      0.30351989369, 0.197621587752, 0.101899689059, 0.0242786468896, 0.0230628942058,\n      0.11770360745, 0.239295064383, 0.367854441012, 0.48751666843, 0.584266108064,\n      0.648042896773, 0.674075258321, 0.664132399105, 0.628611469828, 0.58778635414,\n      0.565046442694, 0.567409385751, 0.574073319487, 0.55767487367, 0.509263596413,\n      0.432615103192, 0.33288018603, 0.248801648066, 0.296731718403, 0.5100945802,\n      0.802788299157, 1.10432737401, 1.36936922813, 1.57437791181, 1.72109433357,\n      1.831018753, 1.92300551184, 1.99748368012, 2.07185994598, 2.23698447869,\n      2.59909324732, 3.11466740204, 3.57025227742, 3.74144982507, 3.55948924006,\n      3.21719537753, 2.98111665111, 2.86531794269, 2.70387593638, 2.38182287494,\n      1.88174425569, 1.16239529163, 0.13950215189, 0.852185865847, 2.06425553809,\n      3.15758970912\n    ],\n    [\n      1.11198541535, 1.10240294985, 1.09442154024, 1.0883807858, 1.08466829283,\n      1.08372005498, 1.08601724139, 1.09207775519, 1.10244095826, 1.11764441641,\n      1.13819235299, 1.16451631256, 1.19692862516, 1.23556800154, 1.2803341663,\n      1.33080648157, 1.38614310841, 1.44496589393, 1.50525375876, 1.56429131904,\n      1.61873961295, 1.6648933536, 1.69914379888, 1.71857558472, 1.72152657908,\n      1.70790238514, 1.67911271931, 1.63765681715, 1.58652865576, 1.52865300104,\n      1.46649762468, 1.40190111006, 1.33607510467, 1.26970831588, 1.20310496602,\n      1.13631054699, 1.06919697554, 1.00149258508, 0.932752817234, 0.862282888275,\n      0.78905290314, 0.711690307134, 0.628674211592, 0.538839362666, 0.442157886862,\n      0.34048068857, 0.23755526903, 0.13780760891, 0.0548627300115, 0.0544653115377,\n      0.148962806091, 0.272053408774, 0.395706772764, 0.505392490593, 0.588327842513,\n      0.633948083113, 0.635298476159, 0.591282118875, 0.511997314951, 0.427375384712,\n      0.384922701496, 0.406713820246, 0.444753622988, 0.437277353719, 0.380177435937,\n      0.296736345001, 0.182858856289, 0.0456869117992, 0.0831737026007, 0.33299785938,\n      0.654335397939, 0.989779020113, 1.29908840836, 1.55999891309, 1.76943217297,\n      1.93823661685, 2.08118906655, 2.21230907528, 2.35459999622, 2.54734398054,\n      2.81735073693, 3.13018305375, 3.39033887831, 3.50467810628, 3.45273186996,\n      3.3043812176, 3.14726978969, 2.99401923325, 2.78788449462, 2.4738648171,\n      2.0365107587, 1.51477442841, 1.2473772067, 1.95731784581, 2.03861421272,\n      2.71208787084\n    ],\n    [\n      1.14446789327, 1.1365052057, 1.13014523512, 1.12568792959, 1.12346755387,\n      1.12385031051, 1.12722865312, 1.13401121084, 1.14460734691, 1.15940569534,\n      1.17874648542, 1.2028878549, 1.23196638351, 1.26595162447, 1.30459381775,\n      1.34736425026, 1.39339037484, 1.44139408962, 1.48965140193, 1.53600224002,\n      1.57794410236, 1.61283387617, 1.63819231467, 1.65205966228, 1.65330896068,\n      1.64181471201, 1.61841536643, 1.58468331257, 1.5425844672, 1.49413469454,\n      1.44113680387, 1.38503331355, 1.3268657375, 1.26730662052, 1.20672571789,\n      1.14525843909, 1.0828551215, 1.01930013207, 0.954200671438, 0.886959337126,\n      0.816764100547, 0.742650912448, 0.663703562277, 0.579428448916, 0.490260696117,\n      0.39805814716, 0.306560127618, 0.223169436605, 0.166770342299, 0.170206123463,\n      0.238698457524, 0.340082972623, 0.445984155418, 0.538278050493, 0.602904815923,\n      0.627825762032, 0.603111795165, 0.522845349921, 0.392373545089, 0.247230811957,\n      0.171448843312, 0.229578332208, 0.327884916614, 0.333763504352, 0.260413512398,\n      0.191613043396, 0.114787257425, 0.0406938016429, 0.0899945642968, 0.294627663623,\n      0.595481511183, 0.929740245108, 1.25338056619, 1.54187069446, 1.78777972245,\n      1.99575227441, 2.17653878454, 2.34356653574, 2.51320973719, 2.70226566201,\n      2.91530788094, 3.1304159236, 3.30341862664, 3.39398623989, 3.39247749185,\n      3.32276749043, 3.21498241907, 3.07470936266, 2.88216203241, 2.61816155622,\n      2.29345336556, 1.98631440178, 1.87991900064, 1.98954269336, 2.17408729678,\n      2.69678647041\n    ],\n    [\n      1.17584090895, 1.169254216, 1.16423817289, 1.16105287516, 1.15998137112,\n      1.1613256255, 1.16539959913, 1.17251874266, 1.18298531768, 1.19706919136,\n      1.21498404845, 1.23685922632, 1.26270751218, 1.29238927888, 1.32557355428,\n      1.36169755951, 1.39992853655, 1.43913559193, 1.47788416344, 1.51446951262,\n      1.54700494703, 1.5735717042, 1.5924194035, 1.60218292583, 1.60206388401,\n      1.59192460326, 1.57226495016, 1.54408948209, 1.50870638384, 1.46751450098,\n      1.42182661332, 1.37275454828, 1.32115780842, 1.26764112512, 1.21258003312,\n      1.15615484573, 1.09837884794, 1.03911387136, 0.97807516802, 0.914838055046,\n      0.848870683724, 0.779627022981, 0.706734370621, 0.63029288561, 0.551276671926,\n      0.472036139544, 0.397081313176, 0.334701475827, 0.298870742203, 0.304682267797,\n      0.353524849707, 0.429355782099, 0.511529593456, 0.582375198617, 0.627136593541,\n      0.632741042804, 0.587312116462, 0.481416129653, 0.315261963983, 0.122949664215,\n      0.0131443108096, 0.100652688914, 0.254901615756, 0.26074078953, 0.139030694249,\n      0.0647751017678, 0.0902983952297, 0.0209215889103, 0.131706399707, 0.339979614593,\n      0.615743461036, 0.928926390167, 1.24400532591, 1.53723036502, 1.79827671003,\n      2.02715550715, 2.23010692764, 2.41635563294, 2.59585009453, 2.77596331336,\n      2.95598503709, 3.12312156598, 3.2560136643, 3.33579544629, 3.35643638508,\n      3.32522525093, 3.2525988205, 3.14131640858, 2.98633729862, 2.7864016878,\n      2.56029849916, 2.35985259191, 2.25629755636, 2.28626802629, 2.48347833568,\n      2.88416837961\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-isobands/test/in/matrix1.json",
    "content": "{\n  \"matrix\": [\n    [1, 1, 1, 1, 1, 1, 1],\n    [1, 5, 5, 5, 5, 5, 1],\n    [1, 5, 15, 15, 15, 5, 1],\n    [1, 5, 10, 10, 10, 5, 1],\n    [1, 5, 5, 5, 5, 5, 1],\n    [1, 1, 1, 1, 1, 1, 1]\n  ],\n  \"origin\": [10.8, 44.1],\n  \"cellSize\": 20,\n  \"breaks\": [2, 4, 8, 12],\n  \"zProperty\": \"temperature\"\n}\n"
  },
  {
    "path": "packages/turf-isobands/test/in/matrix2.json",
    "content": "{\n  \"matrix\": [\n    [18, 13, 10, 9, 10, 13, 18],\n    [13, 8, 5, 4, 5, 8, 13],\n    [10, 5, 2, 1, 2, 5, 10],\n    [10, 5, 2, 1, 2, 5, 10],\n    [9, 4, 1, 12, 1, 4, 9],\n    [10, 5, 2, 1, 2, 5, 10],\n    [10, 5, 2, 1, 2, 5, 10],\n    [13, 8, 5, 4, 5, 8, 13],\n    [18, 13, 10, 9, 10, 13, 18]\n  ],\n  \"origin\": [10.85, 44],\n  \"cellSize\": 20,\n  \"breaks\": [0, 4.5, 9, 13.5, 18],\n  \"commonProperties\": {\n    \"stroke-width\": 3,\n    \"stroke\": \"darkred\",\n    \"fill\": \"darkred\"\n  },\n  \"breaksProperties\": [\n    {\n      \"fill-opacity\": 0.4\n    },\n    {\n      \"fill-opacity\": 0.5\n    },\n    {\n      \"fill-opacity\": 0.7\n    },\n    {\n      \"fill-opacity\": 0.8\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-isobands/test/in/pointGrid.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"breaks\": [0, 20, 40, 80, 160],\n    \"breaksProperties\": [\n      {\n        \"fill-opacity\": 0.5\n      },\n      {\n        \"fill-opacity\": 0.6\n      },\n      {\n        \"fill-opacity\": 0.7\n      },\n      {\n        \"fill-opacity\": 0.8\n      }\n    ],\n    \"zProperty\": \"people\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 4 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.823364, -33.553984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 42 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.823364, -33.50903203113676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 65 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.823364, -33.464080062273524]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 6 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.823364, -33.419128093410286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 56 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.823364, -33.37417612454705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 155 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.823364, -33.32922415568381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 15 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.76942368848808, -33.553984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.76942368848808, -33.50903203113676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 34 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.76942368848808, -33.464080062273524]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 3 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.76942368848808, -33.419128093410286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 3 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.76942368848808, -33.37417612454705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 36 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.76942368848808, -33.32922415568381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 67 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.71548337697615, -33.553984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 7 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.71548337697615, -33.50903203113676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 17 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.71548337697615, -33.464080062273524]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 27 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.71548337697615, -33.419128093410286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 37 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.71548337697615, -33.37417612454705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 78 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.71548337697615, -33.32922415568381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 10 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.66154306546423, -33.553984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.66154306546423, -33.50903203113676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 53 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.66154306546423, -33.464080062273524]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 53 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.66154306546423, -33.419128093410286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 84 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.66154306546423, -33.37417612454705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 43 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.66154306546423, -33.32922415568381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 43 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.6076027539523, -33.553984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 18 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.6076027539523, -33.50903203113676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 16 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.6076027539523, -33.464080062273524]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 94 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.6076027539523, -33.419128093410286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 94 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.6076027539523, -33.37417612454705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 4 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.6076027539523, -33.32922415568381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 57 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.55366244244038, -33.553984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 5 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.55366244244038, -33.50903203113676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 5 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.55366244244038, -33.464080062273524]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 65 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.55366244244038, -33.419128093410286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 90 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.55366244244038, -33.37417612454705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 9 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.55366244244038, -33.32922415568381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 33 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.49972213092846, -33.553984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 78 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.49972213092846, -33.50903203113676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 36 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.49972213092846, -33.464080062273524]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 3 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.49972213092846, -33.419128093410286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 1 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.49972213092846, -33.37417612454705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"people\": 7 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.49972213092846, -33.32922415568381]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-isobands/test/out/1084.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"eta\": \"0-5\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-1.265018, 50.886103],\n              [-1.270744, 50.882486],\n              [-1.270744, 50.882486],\n              [-1.276471, 50.878869],\n              [-1.276471, 50.878869],\n              [-1.276471, 50.878869],\n              [-1.282197, 50.880677],\n              [-1.287924, 50.880074],\n              [-1.293651, 50.878869],\n              [-1.293651, 50.875251],\n              [-1.290787, 50.871634],\n              [-1.289833, 50.868017],\n              [-1.293651, 50.865606],\n              [-1.299377, 50.8644],\n              [-1.299377, 50.860783],\n              [-1.293651, 50.857166],\n              [-1.293651, 50.857166],\n              [-1.296514, 50.853549],\n              [-1.293651, 50.85174],\n              [-1.287924, 50.853549],\n              [-1.287924, 50.849931],\n              [-1.282197, 50.849027],\n              [-1.276471, 50.849931],\n              [-1.270744, 50.846314],\n              [-1.265018, 50.846314],\n              [-1.259291, 50.846314],\n              [-1.253565, 50.846314],\n              [-1.247838, 50.846314],\n              [-1.242112, 50.849931],\n              [-1.245929, 50.853549],\n              [-1.242112, 50.85596],\n              [-1.240203, 50.857166],\n              [-1.242112, 50.858974],\n              [-1.247838, 50.858371],\n              [-1.251656, 50.860783],\n              [-1.247838, 50.863194],\n              [-1.244975, 50.8644],\n              [-1.244975, 50.868017],\n              [-1.247838, 50.871634],\n              [-1.247838, 50.871634],\n              [-1.247838, 50.875251],\n              [-1.247838, 50.875251],\n              [-1.242112, 50.878869],\n              [-1.247838, 50.882486],\n              [-1.253565, 50.880677],\n              [-1.256428, 50.878869],\n              [-1.259291, 50.875251],\n              [-1.259291, 50.875251],\n              [-1.259291, 50.875251],\n              [-1.262155, 50.878869],\n              [-1.259291, 50.882486],\n              [-1.265018, 50.886103]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"eta\": \"5-10\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-1.32801, 50.886103],\n              [-1.322283, 50.886103],\n              [-1.322283, 50.882486],\n              [-1.316557, 50.878869],\n              [-1.31083, 50.875251],\n              [-1.307967, 50.871634],\n              [-1.307013, 50.868017],\n              [-1.306535, 50.8644],\n              [-1.307967, 50.860783],\n              [-1.307649, 50.857166],\n              [-1.306866, 50.853549],\n              [-1.306665, 50.849931],\n              [-1.306665, 50.846314],\n              [-1.31083, 50.843684],\n              [-1.312392, 50.842697],\n              [-1.310832, 50.83908],\n              [-1.31083, 50.839079],\n              [-1.305105, 50.835463],\n              [-1.305104, 50.835462],\n              [-1.299378, 50.831846],\n              [-1.299377, 50.831845],\n              [-1.293651, 50.831846],\n              [-1.293651, 50.831846],\n              [-1.290787, 50.835463],\n              [-1.287924, 50.837271],\n              [-1.285061, 50.835463],\n              [-1.282197, 50.833654],\n              [-1.279334, 50.831846],\n              [-1.276471, 50.830037],\n              [-1.270744, 50.831846],\n              [-1.270744, 50.831846],\n              [-1.265018, 50.831846],\n              [-1.259291, 50.828228],\n              [-1.259291, 50.828228],\n              [-1.236385, 50.828228],\n              [-1.236385, 50.828228],\n              [-1.230659, 50.831846],\n              [-1.230659, 50.831846],\n              [-1.224932, 50.831846],\n              [-1.219205, 50.828228],\n              [-1.213479, 50.831846],\n              [-1.213479, 50.835463],\n              [-1.213479, 50.835463],\n              [-1.213479, 50.8644],\n              [-1.219205, 50.8644],\n              [-1.219205, 50.8644],\n              [-1.219205, 50.8644],\n              [-1.213479, 50.8644],\n              [-1.213479, 50.882486],\n              [-1.213479, 50.882486],\n              [-1.219205, 50.886103],\n              [-1.224932, 50.882486],\n              [-1.224932, 50.882486],\n              [-1.224932, 50.882486],\n              [-1.230659, 50.882486],\n              [-1.236382, 50.886103],\n              [-1.236382, 50.88972],\n              [-1.236385, 50.889722],\n              [-1.242109, 50.893337],\n              [-1.242112, 50.896231],\n              [-1.244021, 50.896954],\n              [-1.244021, 50.900572],\n              [-1.271381, 50.900572],\n              [-1.276471, 50.897356],\n              [-1.277425, 50.896954],\n              [-1.282197, 50.894371],\n              [-1.285061, 50.893337],\n              [-1.287924, 50.891529],\n              [-1.293651, 50.891529],\n              [-1.296514, 50.893337],\n              [-1.299377, 50.896954],\n              [-1.299377, 50.896954],\n              [-1.301286, 50.900572],\n              [-1.32801, 50.900572],\n              [-1.32801, 50.900572],\n              [-1.32801, 50.894543],\n              [-1.326101, 50.893337],\n              [-1.32801, 50.891529],\n              [-1.32801, 50.886103]\n            ],\n            [\n              [-1.259291, 50.882486],\n              [-1.262155, 50.878869],\n              [-1.259291, 50.875251],\n              [-1.259291, 50.875251],\n              [-1.259291, 50.875251],\n              [-1.256428, 50.878869],\n              [-1.253565, 50.880677],\n              [-1.247838, 50.882486],\n              [-1.242112, 50.878869],\n              [-1.247838, 50.875251],\n              [-1.247838, 50.875251],\n              [-1.247838, 50.871634],\n              [-1.247838, 50.871634],\n              [-1.244975, 50.868017],\n              [-1.244975, 50.8644],\n              [-1.247838, 50.863194],\n              [-1.251656, 50.860783],\n              [-1.247838, 50.858371],\n              [-1.242112, 50.858974],\n              [-1.240203, 50.857166],\n              [-1.242112, 50.85596],\n              [-1.245929, 50.853549],\n              [-1.242112, 50.849931],\n              [-1.247838, 50.846314],\n              [-1.253565, 50.846314],\n              [-1.259291, 50.846314],\n              [-1.265018, 50.846314],\n              [-1.270744, 50.846314],\n              [-1.276471, 50.849931],\n              [-1.282197, 50.849027],\n              [-1.287924, 50.849931],\n              [-1.287924, 50.853549],\n              [-1.293651, 50.85174],\n              [-1.296514, 50.853549],\n              [-1.293651, 50.857166],\n              [-1.293651, 50.857166],\n              [-1.299377, 50.860783],\n              [-1.299377, 50.8644],\n              [-1.293651, 50.865606],\n              [-1.289833, 50.868017],\n              [-1.290787, 50.871634],\n              [-1.293651, 50.875251],\n              [-1.293651, 50.878869],\n              [-1.287924, 50.880074],\n              [-1.282197, 50.880677],\n              [-1.276471, 50.878869],\n              [-1.276471, 50.878869],\n              [-1.276471, 50.878869],\n              [-1.270744, 50.882486],\n              [-1.270744, 50.882486],\n              [-1.265018, 50.886103],\n              [-1.259291, 50.882486]\n            ],\n            [\n              [-1.230659, 50.83908],\n              [-1.230659, 50.83908],\n              [-1.234476, 50.835463],\n              [-1.236385, 50.833654],\n              [-1.242112, 50.835463],\n              [-1.242112, 50.835463],\n              [-1.242112, 50.835463],\n              [-1.236385, 50.83908],\n              [-1.236385, 50.83908],\n              [-1.230659, 50.83908],\n              [-1.230659, 50.83908]\n            ],\n            [\n              [-1.229022, 50.868017],\n              [-1.230659, 50.86657],\n              [-1.236385, 50.866984],\n              [-1.238294, 50.868017],\n              [-1.236385, 50.869464],\n              [-1.230659, 50.869826],\n              [-1.229022, 50.868017]\n            ],\n            [\n              [-1.286779, 50.842697],\n              [-1.287924, 50.840888],\n              [-1.290787, 50.842697],\n              [-1.287924, 50.846314],\n              [-1.286779, 50.842697]\n            ],\n            [\n              [-1.253565, 50.831846],\n              [-1.253565, 50.831846],\n              [-1.253565, 50.831846],\n              [-1.253565, 50.831846],\n              [-1.253565, 50.831846]\n            ],\n            [\n              [-1.224932, 50.860783],\n              [-1.224932, 50.860783],\n              [-1.224932, 50.860783],\n              [-1.224932, 50.860783],\n              [-1.224932, 50.860783]\n            ],\n            [\n              [-1.305104, 50.878869],\n              [-1.305104, 50.878869],\n              [-1.305104, 50.878869],\n              [-1.305104, 50.882486],\n              [-1.305104, 50.878869]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"description\": \"Debug line for testing\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-1.3280098622587595, 50.82822842202459],\n          [-1.213478938693971, 50.82822842202459],\n          [-1.213478938693971, 50.900571577975434],\n          [-1.3280098622587595, 50.900571577975434],\n          [-1.3280098622587595, 50.82822842202459]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-isobands/test/out/2956.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": \"29-30\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": []\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": \"30-39.5\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [35.705757, 28.063414],\n              [35.705788, 28.063414],\n              [35.705788, 28.063531],\n              [35.705757, 28.063531],\n              [35.705757, 28.063414]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"FIELD_ID\": \"39.5-40\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": []\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"description\": \"Debug line for testing\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [35.70575726459368, 28.063414143459312],\n          [35.70578783890372, 28.063414143459312],\n          [35.70578783890372, 28.06353105510658],\n          [35.70575726459368, 28.06353105510658],\n          [35.70575726459368, 28.063414143459312]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-isobands/test/out/bigMatrix.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 4,\n        \"fill-opacity\": 0.4,\n        \"stroke\": \"grey\",\n        \"fill\": \"grey\",\n        \"pressure\": \"0-0.24\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [7.884954, 47.89919],\n              [7.746458, 47.938693],\n              [7.607963, 47.931492],\n              [7.49141, 47.888573],\n              [7.469468, 47.873837],\n              [7.392465, 47.798641],\n              [7.369353, 47.708709],\n              [7.398672, 47.618777],\n              [7.469468, 47.539233],\n              [7.483616, 47.528845],\n              [7.602787, 47.438913],\n              [7.607963, 47.432938],\n              [7.660303, 47.348981],\n              [7.721771, 47.259049],\n              [7.746458, 47.240282],\n              [7.857297, 47.169116],\n              [7.884954, 47.158747],\n              [8.023449, 47.134087],\n              [8.161944, 47.147462],\n              [8.21777, 47.169116],\n              [8.30044, 47.213026],\n              [8.353418, 47.259049],\n              [8.390349, 47.348981],\n              [8.355468, 47.438913],\n              [8.30044, 47.478736],\n              [8.204604, 47.528845],\n              [8.161944, 47.551659],\n              [8.062848, 47.618777],\n              [8.044106, 47.708709],\n              [8.023449, 47.751713],\n              [8.000611, 47.798641],\n              [7.899188, 47.888573],\n              [7.884954, 47.89919]\n            ]\n          ],\n          [\n            [\n              [13.286273, 46.736988],\n              [13.147778, 46.750639],\n              [13.009282, 46.72173],\n              [13.003638, 46.719456],\n              [12.873239, 46.629524],\n              [12.870787, 46.625291],\n              [12.817878, 46.539592],\n              [12.794113, 46.44966],\n              [12.792558, 46.359728],\n              [12.815364, 46.269796],\n              [12.867497, 46.179864],\n              [12.870787, 46.176678],\n              [12.98133, 46.089932],\n              [13.009282, 46.076361],\n              [13.147778, 46.040078],\n              [13.286273, 46.043257],\n              [13.424768, 46.088913],\n              [13.426546, 46.089932],\n              [13.527199, 46.179864],\n              [13.563264, 46.267861],\n              [13.564023, 46.269796],\n              [13.567553, 46.359728],\n              [13.563264, 46.386354],\n              [13.551757, 46.44966],\n              [13.52061, 46.539592],\n              [13.467696, 46.629524],\n              [13.424768, 46.665438],\n              [13.333575, 46.719456],\n              [13.286273, 46.736988]\n            ]\n          ],\n          [\n            [\n              [8.992917, 47.908661],\n              [8.942356, 47.888573],\n              [8.854421, 47.854382],\n              [8.805405, 47.798641],\n              [8.779112, 47.708709],\n              [8.774536, 47.618777],\n              [8.738554, 47.528845],\n              [8.767107, 47.438913],\n              [8.854421, 47.393577],\n              [8.992917, 47.372654],\n              [9.131412, 47.412762],\n              [9.17041, 47.438913],\n              [9.220799, 47.528845],\n              [9.206551, 47.618777],\n              [9.216462, 47.708709],\n              [9.212607, 47.798641],\n              [9.131412, 47.87878],\n              [9.101873, 47.888573],\n              [8.992917, 47.908661]\n            ]\n          ],\n          [\n            [\n              [15.989697, 46],\n              [16.019208, 46.089932],\n              [16.004625, 46.179864],\n              [15.917685, 46.245906],\n              [15.77919, 46.265899],\n              [15.640694, 46.214118],\n              [15.5712, 46.179864],\n              [15.502199, 46.131327],\n              [15.404796, 46.089932],\n              [15.363703, 46.074808],\n              [15.248809, 46],\n              [15.989697, 46]\n            ]\n          ],\n          [\n            [\n              [6.5, 49.161809],\n              [6.638495, 49.179071],\n              [6.776991, 49.222896],\n              [6.805692, 49.237553],\n              [6.915486, 49.311577],\n              [6.932951, 49.327485],\n              [6.994818, 49.417417],\n              [7.017371, 49.507349],\n              [6.596926, 49.507349],\n              [6.5, 49.444426],\n              [6.5, 49.161809]\n            ]\n          ],\n          [\n            [\n              [12.455301, 47.13561],\n              [12.316805, 47.14904],\n              [12.17831, 47.097102],\n              [12.154879, 47.079184],\n              [12.112964, 46.989252],\n              [12.177161, 46.89932],\n              [12.17831, 46.898495],\n              [12.316805, 46.859784],\n              [12.455301, 46.893482],\n              [12.464469, 46.89932],\n              [12.532649, 46.989252],\n              [12.496746, 47.079184],\n              [12.455301, 47.13561]\n            ]\n          ],\n          [\n            [\n              [15.640694, 47.267231],\n              [15.502199, 47.319692],\n              [15.363703, 47.279081],\n              [15.336906, 47.259049],\n              [15.361223, 47.169116],\n              [15.363703, 47.167282],\n              [15.502199, 47.115385],\n              [15.606895, 47.079184],\n              [15.640694, 47.070845],\n              [15.77919, 47.072803],\n              [15.789098, 47.079184],\n              [15.834548, 47.169116],\n              [15.77919, 47.222509],\n              [15.664979, 47.259049],\n              [15.640694, 47.267231]\n            ]\n          ],\n          [\n            [\n              [14.809722, 47.411845],\n              [14.671227, 47.417355],\n              [14.565439, 47.348981],\n              [14.575353, 47.259049],\n              [14.671227, 47.203042],\n              [14.809722, 47.2071],\n              [14.890392, 47.259049],\n              [14.897997, 47.348981],\n              [14.809722, 47.411845]\n            ]\n          ],\n          [\n            [\n              [15.073333, 46],\n              [14.9629, 46.089932],\n              [14.948217, 46.095223],\n              [14.809722, 46.118811],\n              [14.684441, 46.089932],\n              [14.671227, 46.0847],\n              [14.586932, 46],\n              [15.073333, 46]\n            ]\n          ],\n          [\n            [\n              [12.455301, 47.385966],\n              [12.352189, 47.348981],\n              [12.329096, 47.259049],\n              [12.455301, 47.183226],\n              [12.579726, 47.259049],\n              [12.559982, 47.348981],\n              [12.455301, 47.385966]\n            ]\n          ],\n          [\n            [\n              [12.732292, 48.169413],\n              [12.69843, 48.158369],\n              [12.607371, 48.068437],\n              [12.732292, 48.019172],\n              [12.842427, 48.068437],\n              [12.765117, 48.158369],\n              [12.732292, 48.169413]\n            ]\n          ],\n          [\n            [\n              [16.887153, 46.686717],\n              [16.866868, 46.629524],\n              [16.887153, 46.616213],\n              [16.983186, 46.629524],\n              [16.887153, 46.686717]\n            ]\n          ],\n          [\n            [\n              [12.316805, 47.539311],\n              [12.274592, 47.528845],\n              [12.316805, 47.48062],\n              [12.360972, 47.528845],\n              [12.316805, 47.539311]\n            ]\n          ],\n          [\n            [\n              [17.441134, 46.565069],\n              [17.398412, 46.539592],\n              [17.441134, 46.509911],\n              [17.483942, 46.539592],\n              [17.441134, 46.565069]\n            ]\n          ],\n          [\n            [\n              [16.610162, 47.644458],\n              [16.590133, 47.618777],\n              [16.610162, 47.604288],\n              [16.668716, 47.618777],\n              [16.610162, 47.644458]\n            ]\n          ],\n          [\n            [\n              [19.241574, 46.28155],\n              [19.227967, 46.269796],\n              [19.241574, 46.261638],\n              [19.261103, 46.269796],\n              [19.241574, 46.28155]\n            ]\n          ],\n          [\n            [\n              [18.272106, 46.540117],\n              [18.271836, 46.539592],\n              [18.272106, 46.539023],\n              [18.274679, 46.539592],\n              [18.272106, 46.540117]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 4,\n        \"fill-opacity\": 0.4,\n        \"stroke\": \"blue\",\n        \"fill\": \"blue\",\n        \"pressure\": \"0.24-0.5\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [7.746458, 48.162429],\n              [7.607963, 48.182831],\n              [7.469468, 48.177716],\n              [7.372032, 48.158369],\n              [7.330972, 48.150124],\n              [7.192477, 48.097719],\n              [7.140225, 48.068437],\n              [7.053981, 48.005076],\n              [7.024108, 47.978505],\n              [6.953518, 47.888573],\n              [6.915486, 47.799543],\n              [6.915094, 47.798641],\n              [6.898708, 47.708709],\n              [6.904869, 47.618777],\n              [6.915486, 47.583233],\n              [6.931048, 47.528845],\n              [6.977129, 47.438913],\n              [7.04482, 47.348981],\n              [7.053981, 47.339333],\n              [7.132951, 47.259049],\n              [7.192477, 47.210822],\n              [7.245823, 47.169116],\n              [7.330972, 47.116044],\n              [7.394797, 47.079184],\n              [7.469468, 47.045416],\n              [7.607963, 46.995477],\n              [7.631978, 46.989252],\n              [7.746458, 46.964747],\n              [7.884954, 46.95147],\n              [8.023449, 46.955862],\n              [8.161944, 46.979726],\n              [8.19031, 46.989252],\n              [8.30044, 47.024747],\n              [8.407681, 47.079184],\n              [8.438935, 47.097703],\n              [8.54754, 47.169116],\n              [8.577431, 47.193019],\n              [8.715926, 47.250708],\n              [8.769221, 47.259049],\n              [8.854421, 47.268068],\n              [8.992917, 47.287089],\n              [9.131412, 47.328127],\n              [9.172092, 47.348981],\n              [9.269907, 47.414426],\n              [9.300866, 47.438913],\n              [9.36534, 47.528845],\n              [9.404835, 47.618777],\n              [9.408403, 47.633183],\n              [9.42796, 47.708709],\n              [9.429829, 47.798641],\n              [9.408403, 47.863255],\n              [9.398156, 47.888573],\n              [9.312693, 47.978505],\n              [9.269907, 48.008354],\n              [9.131412, 48.054733],\n              [8.992917, 48.053553],\n              [8.854421, 47.984391],\n              [8.85046, 47.978505],\n              [8.776872, 47.888573],\n              [8.715926, 47.816949],\n              [8.699335, 47.798641],\n              [8.606313, 47.708709],\n              [8.577431, 47.679114],\n              [8.438935, 47.645604],\n              [8.30044, 47.68159],\n              [8.262172, 47.708709],\n              [8.164137, 47.798641],\n              [8.161944, 47.801618],\n              [8.100121, 47.888573],\n              [8.038183, 47.978505],\n              [8.023449, 48.002007],\n              [7.944769, 48.068437],\n              [7.884954, 48.114893],\n              [7.757103, 48.158369],\n              [7.746458, 48.162429]\n            ],\n            [\n              [7.899188, 47.888573],\n              [8.000611, 47.798641],\n              [8.023449, 47.751713],\n              [8.044106, 47.708709],\n              [8.062848, 47.618777],\n              [8.161944, 47.551659],\n              [8.204604, 47.528845],\n              [8.30044, 47.478736],\n              [8.355468, 47.438913],\n              [8.390349, 47.348981],\n              [8.353418, 47.259049],\n              [8.30044, 47.213026],\n              [8.21777, 47.169116],\n              [8.161944, 47.147462],\n              [8.023449, 47.134087],\n              [7.884954, 47.158747],\n              [7.857297, 47.169116],\n              [7.746458, 47.240282],\n              [7.721771, 47.259049],\n              [7.660303, 47.348981],\n              [7.607963, 47.432938],\n              [7.602787, 47.438913],\n              [7.483616, 47.528845],\n              [7.469468, 47.539233],\n              [7.398672, 47.618777],\n              [7.369353, 47.708709],\n              [7.392465, 47.798641],\n              [7.469468, 47.873837],\n              [7.49141, 47.888573],\n              [7.607963, 47.931492],\n              [7.746458, 47.938693],\n              [7.884954, 47.89919],\n              [7.899188, 47.888573]\n            ],\n            [\n              [9.101873, 47.888573],\n              [9.131412, 47.87878],\n              [9.212607, 47.798641],\n              [9.216462, 47.708709],\n              [9.206551, 47.618777],\n              [9.220799, 47.528845],\n              [9.17041, 47.438913],\n              [9.131412, 47.412762],\n              [8.992917, 47.372654],\n              [8.854421, 47.393577],\n              [8.767107, 47.438913],\n              [8.738554, 47.528845],\n              [8.774536, 47.618777],\n              [8.779112, 47.708709],\n              [8.805405, 47.798641],\n              [8.854421, 47.854382],\n              [8.942356, 47.888573],\n              [8.992917, 47.908661],\n              [9.101873, 47.888573]\n            ]\n          ],\n          [\n            [\n              [13.682327, 46],\n              [13.701759, 46.015819],\n              [13.782815, 46.089932],\n              [13.833446, 46.179864],\n              [13.840254, 46.206993],\n              [13.858124, 46.269796],\n              [13.858366, 46.359728],\n              [13.840254, 46.442365],\n              [13.838909, 46.44966],\n              [13.804668, 46.539592],\n              [13.749338, 46.629524],\n              [13.701759, 46.68041],\n              [13.664117, 46.719456],\n              [13.563264, 46.789296],\n              [13.525358, 46.809388],\n              [13.424768, 46.851978],\n              [13.286273, 46.885734],\n              [13.151005, 46.89932],\n              [13.147778, 46.899728],\n              [13.009282, 46.903932],\n              [12.870787, 46.917991],\n              [12.792784, 46.989252],\n              [12.746385, 47.079184],\n              [12.732292, 47.136674],\n              [12.726633, 47.169116],\n              [12.723597, 47.259049],\n              [12.681485, 47.348981],\n              [12.593796, 47.396831],\n              [12.456106, 47.438913],\n              [12.455301, 47.439296],\n              [12.409847, 47.528845],\n              [12.316805, 47.550894],\n              [12.227878, 47.528845],\n              [12.286307, 47.438913],\n              [12.228722, 47.348981],\n              [12.178407, 47.259049],\n              [12.17831, 47.258912],\n              [12.085344, 47.169116],\n              [12.039815, 47.132358],\n              [11.986492, 47.079184],\n              [11.950779, 46.989252],\n              [11.968106, 46.89932],\n              [12.039815, 46.810095],\n              [12.040741, 46.809388],\n              [12.17831, 46.726561],\n              [12.206125, 46.719456],\n              [12.316805, 46.66745],\n              [12.394556, 46.629524],\n              [12.429156, 46.539592],\n              [12.435651, 46.44966],\n              [12.446405, 46.359728],\n              [12.455301, 46.327499],\n              [12.469615, 46.269796],\n              [12.510938, 46.179864],\n              [12.578669, 46.089932],\n              [12.593796, 46.075577],\n              [12.683417, 46],\n              [13.682327, 46]\n            ],\n            [\n              [13.333575, 46.719456],\n              [13.424768, 46.665438],\n              [13.467696, 46.629524],\n              [13.52061, 46.539592],\n              [13.551757, 46.44966],\n              [13.563264, 46.386354],\n              [13.567553, 46.359728],\n              [13.564023, 46.269796],\n              [13.563264, 46.267861],\n              [13.527199, 46.179864],\n              [13.426546, 46.089932],\n              [13.424768, 46.088913],\n              [13.286273, 46.043257],\n              [13.147778, 46.040078],\n              [13.009282, 46.076361],\n              [12.98133, 46.089932],\n              [12.870787, 46.176678],\n              [12.867497, 46.179864],\n              [12.815364, 46.269796],\n              [12.792558, 46.359728],\n              [12.794113, 46.44966],\n              [12.817878, 46.539592],\n              [12.870787, 46.625291],\n              [12.873239, 46.629524],\n              [13.003638, 46.719456],\n              [13.009282, 46.72173],\n              [13.147778, 46.750639],\n              [13.286273, 46.736988],\n              [13.333575, 46.719456]\n            ],\n            [\n              [12.496746, 47.079184],\n              [12.532649, 46.989252],\n              [12.464469, 46.89932],\n              [12.455301, 46.893482],\n              [12.316805, 46.859784],\n              [12.17831, 46.898495],\n              [12.177161, 46.89932],\n              [12.112964, 46.989252],\n              [12.154879, 47.079184],\n              [12.17831, 47.097102],\n              [12.316805, 47.14904],\n              [12.455301, 47.13561],\n              [12.496746, 47.079184]\n            ],\n            [\n              [12.559982, 47.348981],\n              [12.579726, 47.259049],\n              [12.455301, 47.183226],\n              [12.329096, 47.259049],\n              [12.352189, 47.348981],\n              [12.455301, 47.385966],\n              [12.559982, 47.348981]\n            ],\n            [\n              [12.360972, 47.528845],\n              [12.316805, 47.48062],\n              [12.274592, 47.528845],\n              [12.316805, 47.539311],\n              [12.360972, 47.528845]\n            ]\n          ],\n          [\n            [\n              [14.586932, 46],\n              [14.671227, 46.0847],\n              [14.684441, 46.089932],\n              [14.809722, 46.118811],\n              [14.948217, 46.095223],\n              [14.9629, 46.089932],\n              [15.073333, 46],\n              [15.248809, 46],\n              [15.363703, 46.074808],\n              [15.404796, 46.089932],\n              [15.502199, 46.131327],\n              [15.5712, 46.179864],\n              [15.640694, 46.214118],\n              [15.77919, 46.265899],\n              [15.917685, 46.245906],\n              [16.004625, 46.179864],\n              [16.019208, 46.089932],\n              [15.989697, 46],\n              [16.136546, 46],\n              [16.150722, 46.089932],\n              [16.128158, 46.179864],\n              [16.05618, 46.26467],\n              [16.049628, 46.269796],\n              [15.917685, 46.330436],\n              [15.77919, 46.349711],\n              [15.640694, 46.338291],\n              [15.502199, 46.304995],\n              [15.380442, 46.269796],\n              [15.363703, 46.263342],\n              [15.225208, 46.226715],\n              [15.086713, 46.218284],\n              [14.948217, 46.232071],\n              [14.809722, 46.23732],\n              [14.671227, 46.22058],\n              [14.552367, 46.179864],\n              [14.532731, 46.170845],\n              [14.418486, 46.089932],\n              [14.394236, 46.040341],\n              [14.369931, 46],\n              [14.586932, 46]\n            ]\n          ],\n          [\n            [\n              [15.640694, 47.349087],\n              [15.502199, 47.382661],\n              [15.363703, 47.372228],\n              [15.286403, 47.348981],\n              [15.225208, 47.29727],\n              [15.128914, 47.259049],\n              [15.175394, 47.169116],\n              [15.225208, 47.140803],\n              [15.301081, 47.079184],\n              [15.363703, 47.051232],\n              [15.502199, 47.014524],\n              [15.640694, 46.99557],\n              [15.77919, 47.01095],\n              [15.885133, 47.079184],\n              [15.915177, 47.169116],\n              [15.829116, 47.259049],\n              [15.77919, 47.289836],\n              [15.640953, 47.348981],\n              [15.640694, 47.349087]\n            ],\n            [\n              [15.664979, 47.259049],\n              [15.77919, 47.222509],\n              [15.834548, 47.169116],\n              [15.789098, 47.079184],\n              [15.77919, 47.072803],\n              [15.640694, 47.070845],\n              [15.606895, 47.079184],\n              [15.502199, 47.115385],\n              [15.363703, 47.167282],\n              [15.361223, 47.169116],\n              [15.336906, 47.259049],\n              [15.363703, 47.279081],\n              [15.502199, 47.319692],\n              [15.640694, 47.267231],\n              [15.664979, 47.259049]\n            ]\n          ],\n          [\n            [\n              [7.017371, 49.507349],\n              [6.994818, 49.417417],\n              [6.932951, 49.327485],\n              [6.915486, 49.311577],\n              [6.805692, 49.237553],\n              [6.776991, 49.222896],\n              [6.638495, 49.179071],\n              [6.5, 49.161809],\n              [6.5, 48.911051],\n              [6.638495, 48.924741],\n              [6.776991, 48.955575],\n              [6.811596, 48.967757],\n              [6.915486, 49.00276],\n              [7.021939, 49.057689],\n              [7.053981, 49.07576],\n              [7.150894, 49.147621],\n              [7.192477, 49.187048],\n              [7.23853, 49.237553],\n              [7.296208, 49.327485],\n              [7.329322, 49.417417],\n              [7.330972, 49.429189],\n              [7.342413, 49.507349],\n              [7.017371, 49.507349]\n            ]\n          ],\n          [\n            [\n              [14.809722, 47.491608],\n              [14.671227, 47.497036],\n              [14.532731, 47.45479],\n              [14.505161, 47.438913],\n              [14.428693, 47.348981],\n              [14.428535, 47.259049],\n              [14.505265, 47.169116],\n              [14.532731, 47.151788],\n              [14.671227, 47.108275],\n              [14.809722, 47.110822],\n              [14.948217, 47.157858],\n              [14.981512, 47.169116],\n              [15.070376, 47.259049],\n              [15.049066, 47.348981],\n              [14.948217, 47.43651],\n              [14.944964, 47.438913],\n              [14.809722, 47.491608]\n            ],\n            [\n              [14.897997, 47.348981],\n              [14.890392, 47.259049],\n              [14.809722, 47.2071],\n              [14.671227, 47.203042],\n              [14.575353, 47.259049],\n              [14.565439, 47.348981],\n              [14.671227, 47.417355],\n              [14.809722, 47.411845],\n              [14.897997, 47.348981]\n            ]\n          ],\n          [\n            [\n              [12.870787, 48.197294],\n              [12.732292, 48.232741],\n              [12.593796, 48.193019],\n              [12.561575, 48.158369],\n              [12.551601, 48.068437],\n              [12.593796, 48.030327],\n              [12.707656, 47.978505],\n              [12.732292, 47.971499],\n              [12.789645, 47.978505],\n              [12.870787, 48.007987],\n              [12.941498, 48.068437],\n              [12.920539, 48.158369],\n              [12.870787, 48.197294]\n            ],\n            [\n              [12.765117, 48.158369],\n              [12.842427, 48.068437],\n              [12.732292, 48.019172],\n              [12.607371, 48.068437],\n              [12.69843, 48.158369],\n              [12.732292, 48.169413],\n              [12.765117, 48.158369]\n            ]\n          ],\n          [\n            [\n              [17.025648, 46.72559],\n              [16.887153, 46.739855],\n              [16.837829, 46.719456],\n              [16.806188, 46.629524],\n              [16.887153, 46.576391],\n              [17.025648, 46.593742],\n              [17.066899, 46.629524],\n              [17.036451, 46.719456],\n              [17.025648, 46.72559]\n            ],\n            [\n              [16.983186, 46.629524],\n              [16.887153, 46.616213],\n              [16.866868, 46.629524],\n              [16.887153, 46.686717],\n              [16.983186, 46.629524]\n            ]\n          ],\n          [\n            [\n              [16.748657, 47.632192],\n              [16.610162, 47.693084],\n              [16.55221, 47.618777],\n              [16.610162, 47.576856],\n              [16.748657, 47.61171],\n              [16.753843, 47.618777],\n              [16.748657, 47.632192]\n            ],\n            [\n              [16.668716, 47.618777],\n              [16.610162, 47.604288],\n              [16.590133, 47.618777],\n              [16.610162, 47.644458],\n              [16.668716, 47.618777]\n            ]\n          ],\n          [\n            [\n              [17.441134, 46.595224],\n              [17.347844, 46.539592],\n              [17.441134, 46.474778],\n              [17.53461, 46.539592],\n              [17.441134, 46.595224]\n            ],\n            [\n              [17.483942, 46.539592],\n              [17.441134, 46.509911],\n              [17.398412, 46.539592],\n              [17.441134, 46.565069],\n              [17.483942, 46.539592]\n            ]\n          ],\n          [\n            [\n              [19.241574, 46.311959],\n              [19.192764, 46.269796],\n              [19.241574, 46.240533],\n              [19.311629, 46.269796],\n              [19.241574, 46.311959]\n            ],\n            [\n              [19.261103, 46.269796],\n              [19.241574, 46.261638],\n              [19.227967, 46.269796],\n              [19.241574, 46.28155],\n              [19.261103, 46.269796]\n            ]\n          ],\n          [\n            [\n              [6.5, 49.444426],\n              [6.596926, 49.507349],\n              [6.547975, 49.507349],\n              [6.5, 49.476205],\n              [6.5, 49.444426]\n            ]\n          ],\n          [\n            [\n              [18.272106, 46.553925],\n              [18.264737, 46.539592],\n              [18.272106, 46.524045],\n              [18.342339, 46.539592],\n              [18.272106, 46.553925]\n            ],\n            [\n              [18.274679, 46.539592],\n              [18.272106, 46.539023],\n              [18.271836, 46.539592],\n              [18.272106, 46.540117],\n              [18.274679, 46.539592]\n            ]\n          ],\n          [\n            [\n              [19.241574, 46.551269],\n              [19.212444, 46.539592],\n              [19.241574, 46.505856],\n              [19.245592, 46.539592],\n              [19.241574, 46.551269]\n            ]\n          ],\n          [\n            [\n              [19.241574, 46.720647],\n              [19.230795, 46.719456],\n              [19.241574, 46.712954],\n              [19.242707, 46.719456],\n              [19.241574, 46.720647]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 4,\n        \"fill-opacity\": 0.4,\n        \"stroke\": \"green\",\n        \"fill\": \"green\",\n        \"pressure\": \"0.5-1.5\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [7.342413, 49.507349],\n              [7.330972, 49.429189],\n              [7.329322, 49.417417],\n              [7.296208, 49.327485],\n              [7.23853, 49.237553],\n              [7.192477, 49.187048],\n              [7.150894, 49.147621],\n              [7.053981, 49.07576],\n              [7.021939, 49.057689],\n              [6.915486, 49.00276],\n              [6.811596, 48.967757],\n              [6.776991, 48.955575],\n              [6.638495, 48.924741],\n              [6.5, 48.911051],\n              [6.5, 46],\n              [9.076637, 46],\n              [9.023838, 46.089932],\n              [8.992917, 46.149581],\n              [8.980847, 46.179864],\n              [8.947567, 46.269796],\n              [8.923286, 46.359728],\n              [8.908239, 46.44966],\n              [8.902529, 46.539592],\n              [8.906369, 46.629524],\n              [8.920539, 46.719456],\n              [8.947278, 46.809388],\n              [8.992196, 46.89932],\n              [8.992917, 46.900185],\n              [9.045901, 46.989252],\n              [9.131412, 47.073855],\n              [9.13541, 47.079184],\n              [9.246341, 47.169116],\n              [9.269907, 47.182985],\n              [9.388374, 47.259049],\n              [9.408403, 47.271404],\n              [9.546898, 47.345925],\n              [9.55524, 47.348981],\n              [9.685393, 47.413084],\n              [9.769285, 47.438913],\n              [9.823889, 47.464844],\n              [9.962384, 47.506672],\n              [10.072761, 47.528845],\n              [10.10088, 47.538375],\n              [10.239375, 47.56654],\n              [10.37787, 47.586162],\n              [10.516366, 47.600939],\n              [10.654861, 47.617167],\n              [10.664976, 47.618777],\n              [10.793356, 47.70784],\n              [10.793733, 47.708709],\n              [10.812499, 47.798641],\n              [10.821454, 47.888573],\n              [10.829158, 47.978505],\n              [10.837701, 48.068437],\n              [10.847375, 48.158369],\n              [10.857529, 48.248301],\n              [10.86678, 48.338233],\n              [10.873146, 48.428165],\n              [10.874253, 48.518097],\n              [10.867657, 48.608029],\n              [10.851227, 48.697961],\n              [10.823483, 48.787893],\n              [10.793356, 48.856992],\n              [10.784598, 48.877825],\n              [10.737184, 48.967757],\n              [10.67907, 49.057689],\n              [10.654861, 49.090475],\n              [10.613554, 49.147621],\n              [10.540663, 49.237553],\n              [10.516366, 49.265234],\n              [10.462155, 49.327485],\n              [10.377889, 49.417417],\n              [10.37787, 49.417436],\n              [10.290136, 49.507349],\n              [7.342413, 49.507349]\n            ],\n            [\n              [7.757103, 48.158369],\n              [7.884954, 48.114893],\n              [7.944769, 48.068437],\n              [8.023449, 48.002007],\n              [8.038183, 47.978505],\n              [8.100121, 47.888573],\n              [8.161944, 47.801618],\n              [8.164137, 47.798641],\n              [8.262172, 47.708709],\n              [8.30044, 47.68159],\n              [8.438935, 47.645604],\n              [8.577431, 47.679114],\n              [8.606313, 47.708709],\n              [8.699335, 47.798641],\n              [8.715926, 47.816949],\n              [8.776872, 47.888573],\n              [8.85046, 47.978505],\n              [8.854421, 47.984391],\n              [8.992917, 48.053553],\n              [9.131412, 48.054733],\n              [9.269907, 48.008354],\n              [9.312693, 47.978505],\n              [9.398156, 47.888573],\n              [9.408403, 47.863255],\n              [9.429829, 47.798641],\n              [9.42796, 47.708709],\n              [9.408403, 47.633183],\n              [9.404835, 47.618777],\n              [9.36534, 47.528845],\n              [9.300866, 47.438913],\n              [9.269907, 47.414426],\n              [9.172092, 47.348981],\n              [9.131412, 47.328127],\n              [8.992917, 47.287089],\n              [8.854421, 47.268068],\n              [8.769221, 47.259049],\n              [8.715926, 47.250708],\n              [8.577431, 47.193019],\n              [8.54754, 47.169116],\n              [8.438935, 47.097703],\n              [8.407681, 47.079184],\n              [8.30044, 47.024747],\n              [8.19031, 46.989252],\n              [8.161944, 46.979726],\n              [8.023449, 46.955862],\n              [7.884954, 46.95147],\n              [7.746458, 46.964747],\n              [7.631978, 46.989252],\n              [7.607963, 46.995477],\n              [7.469468, 47.045416],\n              [7.394797, 47.079184],\n              [7.330972, 47.116044],\n              [7.245823, 47.169116],\n              [7.192477, 47.210822],\n              [7.132951, 47.259049],\n              [7.053981, 47.339333],\n              [7.04482, 47.348981],\n              [6.977129, 47.438913],\n              [6.931048, 47.528845],\n              [6.915486, 47.583233],\n              [6.904869, 47.618777],\n              [6.898708, 47.708709],\n              [6.915094, 47.798641],\n              [6.915486, 47.799543],\n              [6.953518, 47.888573],\n              [7.024108, 47.978505],\n              [7.053981, 48.005076],\n              [7.140225, 48.068437],\n              [7.192477, 48.097719],\n              [7.330972, 48.150124],\n              [7.372032, 48.158369],\n              [7.469468, 48.177716],\n              [7.607963, 48.182831],\n              [7.746458, 48.162429],\n              [7.757103, 48.158369]\n            ]\n          ],\n          [\n            [\n              [12.683417, 46],\n              [12.593796, 46.075577],\n              [12.578669, 46.089932],\n              [12.510938, 46.179864],\n              [12.469615, 46.269796],\n              [12.455301, 46.327499],\n              [12.446405, 46.359728],\n              [12.435651, 46.44966],\n              [12.429156, 46.539592],\n              [12.394556, 46.629524],\n              [12.316805, 46.66745],\n              [12.206125, 46.719456],\n              [12.17831, 46.726561],\n              [12.040741, 46.809388],\n              [12.039815, 46.810095],\n              [11.968106, 46.89932],\n              [11.950779, 46.989252],\n              [11.986492, 47.079184],\n              [12.039815, 47.132358],\n              [12.085344, 47.169116],\n              [12.17831, 47.258912],\n              [12.178407, 47.259049],\n              [12.228722, 47.348981],\n              [12.286307, 47.438913],\n              [12.227878, 47.528845],\n              [12.316805, 47.550894],\n              [12.409847, 47.528845],\n              [12.455301, 47.439296],\n              [12.456106, 47.438913],\n              [12.593796, 47.396831],\n              [12.681485, 47.348981],\n              [12.723597, 47.259049],\n              [12.726633, 47.169116],\n              [12.732292, 47.136674],\n              [12.746385, 47.079184],\n              [12.792784, 46.989252],\n              [12.870787, 46.917991],\n              [13.009282, 46.903932],\n              [13.147778, 46.899728],\n              [13.151005, 46.89932],\n              [13.286273, 46.885734],\n              [13.424768, 46.851978],\n              [13.525358, 46.809388],\n              [13.563264, 46.789296],\n              [13.664117, 46.719456],\n              [13.701759, 46.68041],\n              [13.749338, 46.629524],\n              [13.804668, 46.539592],\n              [13.838909, 46.44966],\n              [13.840254, 46.442365],\n              [13.858366, 46.359728],\n              [13.858124, 46.269796],\n              [13.840254, 46.206993],\n              [13.833446, 46.179864],\n              [13.782815, 46.089932],\n              [13.701759, 46.015819],\n              [13.682327, 46],\n              [14.369931, 46],\n              [14.394236, 46.040341],\n              [14.418486, 46.089932],\n              [14.532731, 46.170845],\n              [14.552367, 46.179864],\n              [14.671227, 46.22058],\n              [14.809722, 46.23732],\n              [14.948217, 46.232071],\n              [15.086713, 46.218284],\n              [15.225208, 46.226715],\n              [15.363703, 46.263342],\n              [15.380442, 46.269796],\n              [15.502199, 46.304995],\n              [15.640694, 46.338291],\n              [15.77919, 46.349711],\n              [15.917685, 46.330436],\n              [16.049628, 46.269796],\n              [16.05618, 46.26467],\n              [16.128158, 46.179864],\n              [16.150722, 46.089932],\n              [16.136546, 46],\n              [16.592577, 46],\n              [16.590061, 46.089932],\n              [16.578313, 46.179864],\n              [16.559915, 46.269796],\n              [16.541407, 46.359728],\n              [16.610162, 46.434062],\n              [16.748657, 46.403885],\n              [16.887153, 46.396626],\n              [17.025648, 46.407986],\n              [17.164143, 46.411907],\n              [17.302639, 46.377954],\n              [17.441134, 46.373181],\n              [17.579629, 46.428804],\n              [17.595745, 46.44966],\n              [17.628462, 46.539592],\n              [17.581379, 46.629524],\n              [17.579629, 46.631083],\n              [17.441134, 46.677818],\n              [17.302639, 46.676038],\n              [17.215772, 46.719456],\n              [17.164143, 46.743029],\n              [17.043406, 46.809388],\n              [17.025648, 46.815838],\n              [16.887153, 46.83267],\n              [16.748657, 46.810272],\n              [16.74529, 46.809388],\n              [16.610162, 46.733621],\n              [16.580533, 46.719456],\n              [16.511648, 46.629524],\n              [16.493105, 46.539592],\n              [16.471666, 46.474268],\n              [16.333171, 46.53624],\n              [16.32789, 46.539592],\n              [16.194676, 46.613232],\n              [16.169279, 46.629524],\n              [16.083398, 46.719456],\n              [16.073257, 46.809388],\n              [16.102939, 46.89932],\n              [16.136477, 46.989252],\n              [16.155541, 47.079184],\n              [16.152129, 47.169116],\n              [16.120148, 47.259049],\n              [16.05618, 47.33774],\n              [16.044939, 47.348981],\n              [15.917685, 47.434794],\n              [15.910069, 47.438913],\n              [15.77919, 47.513401],\n              [15.744222, 47.528845],\n              [15.640694, 47.586458],\n              [15.55448, 47.618777],\n              [15.502199, 47.64359],\n              [15.363703, 47.692849],\n              [15.313234, 47.708709],\n              [15.225208, 47.740815],\n              [15.086713, 47.786132],\n              [15.041543, 47.798641],\n              [14.948217, 47.827326],\n              [14.809722, 47.860662],\n              [14.671227, 47.885177],\n              [14.642906, 47.888573],\n              [14.532731, 47.905513],\n              [14.394236, 47.921896],\n              [14.255741, 47.937765],\n              [14.117245, 47.958595],\n              [14.028933, 47.978505],\n              [13.97875, 47.993475],\n              [13.840254, 48.058984],\n              [13.827353, 48.068437],\n              [13.727302, 48.158369],\n              [13.701759, 48.183307],\n              [13.650372, 48.248301],\n              [13.567587, 48.338233],\n              [13.563264, 48.342195],\n              [13.473265, 48.428165],\n              [13.424768, 48.465242],\n              [13.347942, 48.518097],\n              [13.286273, 48.554543],\n              [13.168702, 48.608029],\n              [13.147778, 48.617236],\n              [13.009282, 48.661622],\n              [12.870787, 48.686808],\n              [12.732292, 48.69587],\n              [12.593796, 48.6893],\n              [12.455301, 48.6621],\n              [12.333473, 48.608029],\n              [12.316805, 48.598311],\n              [12.230607, 48.518097],\n              [12.195719, 48.428165],\n              [12.198193, 48.338233],\n              [12.226051, 48.248301],\n              [12.282371, 48.158369],\n              [12.316805, 48.134861],\n              [12.363634, 48.068437],\n              [12.455301, 48.009023],\n              [12.491218, 47.978505],\n              [12.593796, 47.924983],\n              [12.693198, 47.888573],\n              [12.732292, 47.86344],\n              [12.870787, 47.81152],\n              [12.920553, 47.798641],\n              [12.987237, 47.708709],\n              [12.902702, 47.618777],\n              [12.870787, 47.608209],\n              [12.732292, 47.572032],\n              [12.593796, 47.56206],\n              [12.455301, 47.576126],\n              [12.316805, 47.595442],\n              [12.17831, 47.57302],\n              [12.039815, 47.539121],\n              [11.966066, 47.528845],\n              [11.901319, 47.506535],\n              [11.762824, 47.49419],\n              [11.624329, 47.494233],\n              [11.485833, 47.501139],\n              [11.347338, 47.511257],\n              [11.208842, 47.520545],\n              [11.070347, 47.52122],\n              [10.931852, 47.447818],\n              [10.92844, 47.438913],\n              [10.915491, 47.348981],\n              [10.91425, 47.259049],\n              [10.915149, 47.169116],\n              [10.914888, 47.079184],\n              [10.911672, 46.989252],\n              [10.904169, 46.89932],\n              [10.891167, 46.809388],\n              [10.871485, 46.719456],\n              [10.844069, 46.629524],\n              [10.808187, 46.539592],\n              [10.793356, 46.507156],\n              [10.765193, 46.44966],\n              [10.713111, 46.359728],\n              [10.654861, 46.273738],\n              [10.6517, 46.269796],\n              [10.580211, 46.179864],\n              [10.516366, 46.105213],\n              [10.499599, 46.089932],\n              [10.407143, 46],\n              [12.683417, 46]\n            ],\n            [\n              [15.640953, 47.348981],\n              [15.77919, 47.289836],\n              [15.829116, 47.259049],\n              [15.915177, 47.169116],\n              [15.885133, 47.079184],\n              [15.77919, 47.01095],\n              [15.640694, 46.99557],\n              [15.502199, 47.014524],\n              [15.363703, 47.051232],\n              [15.301081, 47.079184],\n              [15.225208, 47.140803],\n              [15.175394, 47.169116],\n              [15.128914, 47.259049],\n              [15.225208, 47.29727],\n              [15.286403, 47.348981],\n              [15.363703, 47.372228],\n              [15.502199, 47.382661],\n              [15.640694, 47.349087],\n              [15.640953, 47.348981]\n            ],\n            [\n              [14.944964, 47.438913],\n              [14.948217, 47.43651],\n              [15.049066, 47.348981],\n              [15.070376, 47.259049],\n              [14.981512, 47.169116],\n              [14.948217, 47.157858],\n              [14.809722, 47.110822],\n              [14.671227, 47.108275],\n              [14.532731, 47.151788],\n              [14.505265, 47.169116],\n              [14.428535, 47.259049],\n              [14.428693, 47.348981],\n              [14.505161, 47.438913],\n              [14.532731, 47.45479],\n              [14.671227, 47.497036],\n              [14.809722, 47.491608],\n              [14.944964, 47.438913]\n            ],\n            [\n              [12.920539, 48.158369],\n              [12.941498, 48.068437],\n              [12.870787, 48.007987],\n              [12.789645, 47.978505],\n              [12.732292, 47.971499],\n              [12.707656, 47.978505],\n              [12.593796, 48.030327],\n              [12.551601, 48.068437],\n              [12.561575, 48.158369],\n              [12.593796, 48.193019],\n              [12.732292, 48.232741],\n              [12.870787, 48.197294],\n              [12.920539, 48.158369]\n            ],\n            [\n              [17.036451, 46.719456],\n              [17.066899, 46.629524],\n              [17.025648, 46.593742],\n              [16.887153, 46.576391],\n              [16.806188, 46.629524],\n              [16.837829, 46.719456],\n              [16.887153, 46.739855],\n              [17.025648, 46.72559],\n              [17.036451, 46.719456]\n            ],\n            [\n              [17.53461, 46.539592],\n              [17.441134, 46.474778],\n              [17.347844, 46.539592],\n              [17.441134, 46.595224],\n              [17.53461, 46.539592]\n            ]\n          ],\n          [\n            [\n              [19.241574, 46.756326],\n              [19.103078, 46.752041],\n              [19.043162, 46.719456],\n              [19.031576, 46.629524],\n              [18.997661, 46.539592],\n              [18.997368, 46.44966],\n              [19.0463, 46.359728],\n              [19.03808, 46.269796],\n              [19.103078, 46.183635],\n              [19.110731, 46.179864],\n              [19.241574, 46.143947],\n              [19.290855, 46.179864],\n              [19.380069, 46.217079],\n              [19.454091, 46.269796],\n              [19.390246, 46.359728],\n              [19.380069, 46.373683],\n              [19.328314, 46.44966],\n              [19.308501, 46.539592],\n              [19.270089, 46.629524],\n              [19.276687, 46.719456],\n              [19.241574, 46.756326]\n            ],\n            [\n              [19.311629, 46.269796],\n              [19.241574, 46.240533],\n              [19.192764, 46.269796],\n              [19.241574, 46.311959],\n              [19.311629, 46.269796]\n            ],\n            [\n              [19.245592, 46.539592],\n              [19.241574, 46.505856],\n              [19.212444, 46.539592],\n              [19.241574, 46.551269],\n              [19.245592, 46.539592]\n            ],\n            [\n              [19.242707, 46.719456],\n              [19.241574, 46.712954],\n              [19.230795, 46.719456],\n              [19.241574, 46.720647],\n              [19.242707, 46.719456]\n            ]\n          ],\n          [\n            [\n              [16.748657, 47.750989],\n              [16.610162, 47.780929],\n              [16.471666, 47.739752],\n              [16.423799, 47.708709],\n              [16.39275, 47.618777],\n              [16.459871, 47.528845],\n              [16.471666, 47.523183],\n              [16.610162, 47.486471],\n              [16.748657, 47.518876],\n              [16.760528, 47.528845],\n              [16.825353, 47.618777],\n              [16.795822, 47.708709],\n              [16.748657, 47.750989]\n            ],\n            [\n              [16.753843, 47.618777],\n              [16.748657, 47.61171],\n              [16.610162, 47.576856],\n              [16.55221, 47.618777],\n              [16.610162, 47.693084],\n              [16.748657, 47.632192],\n              [16.753843, 47.618777]\n            ]\n          ],\n          [\n            [\n              [18.410602, 46.606569],\n              [18.272106, 46.607031],\n              [18.237432, 46.539592],\n              [18.272106, 46.466439],\n              [18.410602, 46.458147],\n              [18.486898, 46.539592],\n              [18.410602, 46.606569]\n            ],\n            [\n              [18.342339, 46.539592],\n              [18.272106, 46.524045],\n              [18.264737, 46.539592],\n              [18.272106, 46.553925],\n              [18.342339, 46.539592]\n            ]\n          ],\n          [\n            [\n              [6.5, 49.476205],\n              [6.547975, 49.507349],\n              [6.5, 49.507349],\n              [6.5, 49.476205]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 4,\n        \"fill-opacity\": 0.4,\n        \"stroke\": \"yellow\",\n        \"fill\": \"yellow\",\n        \"pressure\": \"1.5-2.5\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [10.290136, 49.507349],\n              [10.37787, 49.417436],\n              [10.377889, 49.417417],\n              [10.462155, 49.327485],\n              [10.516366, 49.265234],\n              [10.540663, 49.237553],\n              [10.613554, 49.147621],\n              [10.654861, 49.090475],\n              [10.67907, 49.057689],\n              [10.737184, 48.967757],\n              [10.784598, 48.877825],\n              [10.793356, 48.856992],\n              [10.823483, 48.787893],\n              [10.851227, 48.697961],\n              [10.867657, 48.608029],\n              [10.874253, 48.518097],\n              [10.873146, 48.428165],\n              [10.86678, 48.338233],\n              [10.857529, 48.248301],\n              [10.847375, 48.158369],\n              [10.837701, 48.068437],\n              [10.829158, 47.978505],\n              [10.821454, 47.888573],\n              [10.812499, 47.798641],\n              [10.793733, 47.708709],\n              [10.793356, 47.70784],\n              [10.664976, 47.618777],\n              [10.654861, 47.617167],\n              [10.516366, 47.600939],\n              [10.37787, 47.586162],\n              [10.239375, 47.56654],\n              [10.10088, 47.538375],\n              [10.072761, 47.528845],\n              [9.962384, 47.506672],\n              [9.823889, 47.464844],\n              [9.769285, 47.438913],\n              [9.685393, 47.413084],\n              [9.55524, 47.348981],\n              [9.546898, 47.345925],\n              [9.408403, 47.271404],\n              [9.388374, 47.259049],\n              [9.269907, 47.182985],\n              [9.246341, 47.169116],\n              [9.13541, 47.079184],\n              [9.131412, 47.073855],\n              [9.045901, 46.989252],\n              [8.992917, 46.900185],\n              [8.992196, 46.89932],\n              [8.947278, 46.809388],\n              [8.920539, 46.719456],\n              [8.906369, 46.629524],\n              [8.902529, 46.539592],\n              [8.908239, 46.44966],\n              [8.923286, 46.359728],\n              [8.947567, 46.269796],\n              [8.980847, 46.179864],\n              [8.992917, 46.149581],\n              [9.023838, 46.089932],\n              [9.076637, 46],\n              [10.407143, 46],\n              [10.499599, 46.089932],\n              [10.516366, 46.105213],\n              [10.580211, 46.179864],\n              [10.6517, 46.269796],\n              [10.654861, 46.273738],\n              [10.713111, 46.359728],\n              [10.765193, 46.44966],\n              [10.793356, 46.507156],\n              [10.808187, 46.539592],\n              [10.844069, 46.629524],\n              [10.871485, 46.719456],\n              [10.891167, 46.809388],\n              [10.904169, 46.89932],\n              [10.911672, 46.989252],\n              [10.914888, 47.079184],\n              [10.915149, 47.169116],\n              [10.91425, 47.259049],\n              [10.915491, 47.348981],\n              [10.92844, 47.438913],\n              [10.931852, 47.447818],\n              [11.070347, 47.52122],\n              [11.208842, 47.520545],\n              [11.347338, 47.511257],\n              [11.485833, 47.501139],\n              [11.624329, 47.494233],\n              [11.762824, 47.49419],\n              [11.901319, 47.506535],\n              [11.966066, 47.528845],\n              [12.039815, 47.539121],\n              [12.17831, 47.57302],\n              [12.316805, 47.595442],\n              [12.455301, 47.576126],\n              [12.593796, 47.56206],\n              [12.732292, 47.572032],\n              [12.870787, 47.608209],\n              [12.902702, 47.618777],\n              [12.987237, 47.708709],\n              [12.920553, 47.798641],\n              [12.870787, 47.81152],\n              [12.732292, 47.86344],\n              [12.693198, 47.888573],\n              [12.593796, 47.924983],\n              [12.491218, 47.978505],\n              [12.455301, 48.009023],\n              [12.363634, 48.068437],\n              [12.316805, 48.134861],\n              [12.282371, 48.158369],\n              [12.226051, 48.248301],\n              [12.198193, 48.338233],\n              [12.195719, 48.428165],\n              [12.230607, 48.518097],\n              [12.316805, 48.598311],\n              [12.333473, 48.608029],\n              [12.455301, 48.6621],\n              [12.593796, 48.6893],\n              [12.732292, 48.69587],\n              [12.870787, 48.686808],\n              [13.009282, 48.661622],\n              [13.147778, 48.617236],\n              [13.168702, 48.608029],\n              [13.286273, 48.554543],\n              [13.347942, 48.518097],\n              [13.424768, 48.465242],\n              [13.473265, 48.428165],\n              [13.563264, 48.342195],\n              [13.567587, 48.338233],\n              [13.650372, 48.248301],\n              [13.701759, 48.183307],\n              [13.727302, 48.158369],\n              [13.827353, 48.068437],\n              [13.840254, 48.058984],\n              [13.97875, 47.993475],\n              [14.028933, 47.978505],\n              [14.117245, 47.958595],\n              [14.255741, 47.937765],\n              [14.394236, 47.921896],\n              [14.532731, 47.905513],\n              [14.642906, 47.888573],\n              [14.671227, 47.885177],\n              [14.809722, 47.860662],\n              [14.948217, 47.827326],\n              [15.041543, 47.798641],\n              [15.086713, 47.786132],\n              [15.225208, 47.740815],\n              [15.313234, 47.708709],\n              [15.363703, 47.692849],\n              [15.502199, 47.64359],\n              [15.55448, 47.618777],\n              [15.640694, 47.586458],\n              [15.744222, 47.528845],\n              [15.77919, 47.513401],\n              [15.910069, 47.438913],\n              [15.917685, 47.434794],\n              [16.044939, 47.348981],\n              [16.05618, 47.33774],\n              [16.120148, 47.259049],\n              [16.152129, 47.169116],\n              [16.155541, 47.079184],\n              [16.136477, 46.989252],\n              [16.102939, 46.89932],\n              [16.073257, 46.809388],\n              [16.083398, 46.719456],\n              [16.169279, 46.629524],\n              [16.194676, 46.613232],\n              [16.32789, 46.539592],\n              [16.333171, 46.53624],\n              [16.471666, 46.474268],\n              [16.493105, 46.539592],\n              [16.511648, 46.629524],\n              [16.580533, 46.719456],\n              [16.610162, 46.733621],\n              [16.74529, 46.809388],\n              [16.748657, 46.810272],\n              [16.887153, 46.83267],\n              [17.025648, 46.815838],\n              [17.043406, 46.809388],\n              [17.164143, 46.743029],\n              [17.215772, 46.719456],\n              [17.302639, 46.676038],\n              [17.441134, 46.677818],\n              [17.579629, 46.631083],\n              [17.581379, 46.629524],\n              [17.628462, 46.539592],\n              [17.595745, 46.44966],\n              [17.579629, 46.428804],\n              [17.441134, 46.373181],\n              [17.302639, 46.377954],\n              [17.164143, 46.411907],\n              [17.025648, 46.407986],\n              [16.887153, 46.396626],\n              [16.748657, 46.403885],\n              [16.610162, 46.434062],\n              [16.541407, 46.359728],\n              [16.559915, 46.269796],\n              [16.578313, 46.179864],\n              [16.590061, 46.089932],\n              [16.592577, 46],\n              [17.228682, 46],\n              [17.291854, 46.089932],\n              [17.302639, 46.097422],\n              [17.407115, 46.179864],\n              [17.441134, 46.193583],\n              [17.541729, 46.269796],\n              [17.579629, 46.28893],\n              [17.634275, 46.359728],\n              [17.680021, 46.44966],\n              [17.691965, 46.539592],\n              [17.66221, 46.629524],\n              [17.579629, 46.703093],\n              [17.528871, 46.719456],\n              [17.441134, 46.748337],\n              [17.302639, 46.78247],\n              [17.246781, 46.809388],\n              [17.164143, 46.841479],\n              [17.025648, 46.889983],\n              [16.970246, 46.89932],\n              [16.887153, 46.916589],\n              [16.748657, 46.930836],\n              [16.610162, 46.951422],\n              [16.523719, 46.989252],\n              [16.471666, 47.045057],\n              [16.451039, 47.079184],\n              [16.424896, 47.169116],\n              [16.424356, 47.259049],\n              [16.471666, 47.331177],\n              [16.484599, 47.348981],\n              [16.610162, 47.392326],\n              [16.701619, 47.438913],\n              [16.748657, 47.452226],\n              [16.839894, 47.528845],\n              [16.887153, 47.602076],\n              [16.893165, 47.618777],\n              [16.887153, 47.663804],\n              [16.876259, 47.708709],\n              [16.782712, 47.798641],\n              [16.748657, 47.826174],\n              [16.610162, 47.869874],\n              [16.471666, 47.885475],\n              [16.424961, 47.888573],\n              [16.333171, 47.898463],\n              [16.194676, 47.921745],\n              [16.05618, 47.952087],\n              [15.952032, 47.978505],\n              [15.917685, 47.98884],\n              [15.77919, 48.037764],\n              [15.708671, 48.068437],\n              [15.640694, 48.102297],\n              [15.536352, 48.158369],\n              [15.502199, 48.179469],\n              [15.390694, 48.248301],\n              [15.363703, 48.267499],\n              [15.260608, 48.338233],\n              [15.225208, 48.366249],\n              [15.142925, 48.428165],\n              [15.086713, 48.476862],\n              [15.03645, 48.518097],\n              [14.948217, 48.600843],\n              [14.940128, 48.608029],\n              [14.849822, 48.697961],\n              [14.809722, 48.742499],\n              [14.766367, 48.787893],\n              [14.687931, 48.877825],\n              [14.671227, 48.898571],\n              [14.611763, 48.967757],\n              [14.539245, 49.057689],\n              [14.532731, 49.066291],\n              [14.466594, 49.147621],\n              [14.39668, 49.237553],\n              [14.394236, 49.240875],\n              [14.325526, 49.327485],\n              [14.256739, 49.417417],\n              [14.255741, 49.418794],\n              [14.186388, 49.507349],\n              [10.290136, 49.507349]\n            ],\n            [\n              [9.928408, 47.259049],\n              [9.962384, 47.256597],\n              [10.10088, 47.214757],\n              [10.181396, 47.169116],\n              [10.239375, 47.107527],\n              [10.264072, 47.079184],\n              [10.297274, 46.989252],\n              [10.291062, 46.89932],\n              [10.246587, 46.809388],\n              [10.239375, 46.80073],\n              [10.157625, 46.719456],\n              [10.10088, 46.681361],\n              [9.969751, 46.629524],\n              [9.962384, 46.626776],\n              [9.823889, 46.60198],\n              [9.685393, 46.606681],\n              [9.598208, 46.629524],\n              [9.546898, 46.641769],\n              [9.412794, 46.719456],\n              [9.408403, 46.722835],\n              [9.337463, 46.809388],\n              [9.310428, 46.89932],\n              [9.322633, 46.989252],\n              [9.377816, 47.079184],\n              [9.408403, 47.10523],\n              [9.491862, 47.169116],\n              [9.546898, 47.20002],\n              [9.685393, 47.247314],\n              [9.781217, 47.259049],\n              [9.823889, 47.265833],\n              [9.928408, 47.259049]\n            ],\n            [\n              [12.300928, 47.978505],\n              [12.316805, 47.976579],\n              [12.455301, 47.924652],\n              [12.522784, 47.888573],\n              [12.593796, 47.833834],\n              [12.648396, 47.798641],\n              [12.655704, 47.708709],\n              [12.593796, 47.671104],\n              [12.455301, 47.631881],\n              [12.316805, 47.62992],\n              [12.17831, 47.628932],\n              [12.039815, 47.646328],\n              [11.904159, 47.708709],\n              [11.901319, 47.714874],\n              [11.841028, 47.798641],\n              [11.860265, 47.888573],\n              [11.901319, 47.928979],\n              [11.979483, 47.978505],\n              [12.039815, 47.999507],\n              [12.17831, 48.008742],\n              [12.300928, 47.978505]\n            ],\n            [\n              [16.795822, 47.708709],\n              [16.825353, 47.618777],\n              [16.760528, 47.528845],\n              [16.748657, 47.518876],\n              [16.610162, 47.486471],\n              [16.471666, 47.523183],\n              [16.459871, 47.528845],\n              [16.39275, 47.618777],\n              [16.423799, 47.708709],\n              [16.471666, 47.739752],\n              [16.610162, 47.780929],\n              [16.748657, 47.750989],\n              [16.795822, 47.708709]\n            ]\n          ],\n          [\n            [\n              [19.524275, 46],\n              [19.604919, 46.089932],\n              [19.613445, 46.179864],\n              [19.573761, 46.269796],\n              [19.518564, 46.328235],\n              [19.494163, 46.359728],\n              [19.41019, 46.44966],\n              [19.380069, 46.519113],\n              [19.37141, 46.539592],\n              [19.319945, 46.629524],\n              [19.310666, 46.719456],\n              [19.241574, 46.792005],\n              [19.103078, 46.805928],\n              [18.964583, 46.738569],\n              [18.931088, 46.719456],\n              [18.86127, 46.629524],\n              [18.826088, 46.563233],\n              [18.78062, 46.539592],\n              [18.726895, 46.44966],\n              [18.747193, 46.359728],\n              [18.775267, 46.269796],\n              [18.814561, 46.179864],\n              [18.826088, 46.163575],\n              [18.876486, 46.089932],\n              [18.964583, 46.020322],\n              [19.006245, 46],\n              [19.524275, 46]\n            ],\n            [\n              [19.276687, 46.719456],\n              [19.270089, 46.629524],\n              [19.308501, 46.539592],\n              [19.328314, 46.44966],\n              [19.380069, 46.373683],\n              [19.390246, 46.359728],\n              [19.454091, 46.269796],\n              [19.380069, 46.217079],\n              [19.290855, 46.179864],\n              [19.241574, 46.143947],\n              [19.110731, 46.179864],\n              [19.103078, 46.183635],\n              [19.03808, 46.269796],\n              [19.0463, 46.359728],\n              [18.997368, 46.44966],\n              [18.997661, 46.539592],\n              [19.031576, 46.629524],\n              [19.043162, 46.719456],\n              [19.103078, 46.752041],\n              [19.241574, 46.756326],\n              [19.276687, 46.719456]\n            ]\n          ],\n          [\n            [\n              [18.410602, 46.675969],\n              [18.272106, 46.663224],\n              [18.240845, 46.629524],\n              [18.210127, 46.539592],\n              [18.233988, 46.44966],\n              [18.272106, 46.391555],\n              [18.410602, 46.36377],\n              [18.549097, 46.390896],\n              [18.657319, 46.44966],\n              [18.652106, 46.539592],\n              [18.549097, 46.617108],\n              [18.538193, 46.629524],\n              [18.410602, 46.675969]\n            ],\n            [\n              [18.486898, 46.539592],\n              [18.410602, 46.458147],\n              [18.272106, 46.466439],\n              [18.237432, 46.539592],\n              [18.272106, 46.607031],\n              [18.410602, 46.606569],\n              [18.486898, 46.539592]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 4,\n        \"fill-opacity\": 0.4,\n        \"stroke\": \"red\",\n        \"fill\": \"red\",\n        \"pressure\": \"2.5-100\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [14.186388, 49.507349],\n              [14.255741, 49.418794],\n              [14.256739, 49.417417],\n              [14.325526, 49.327485],\n              [14.394236, 49.240875],\n              [14.39668, 49.237553],\n              [14.466594, 49.147621],\n              [14.532731, 49.066291],\n              [14.539245, 49.057689],\n              [14.611763, 48.967757],\n              [14.671227, 48.898571],\n              [14.687931, 48.877825],\n              [14.766367, 48.787893],\n              [14.809722, 48.742499],\n              [14.849822, 48.697961],\n              [14.940128, 48.608029],\n              [14.948217, 48.600843],\n              [15.03645, 48.518097],\n              [15.086713, 48.476862],\n              [15.142925, 48.428165],\n              [15.225208, 48.366249],\n              [15.260608, 48.338233],\n              [15.363703, 48.267499],\n              [15.390694, 48.248301],\n              [15.502199, 48.179469],\n              [15.536352, 48.158369],\n              [15.640694, 48.102297],\n              [15.708671, 48.068437],\n              [15.77919, 48.037764],\n              [15.917685, 47.98884],\n              [15.952032, 47.978505],\n              [16.05618, 47.952087],\n              [16.194676, 47.921745],\n              [16.333171, 47.898463],\n              [16.424961, 47.888573],\n              [16.471666, 47.885475],\n              [16.610162, 47.869874],\n              [16.748657, 47.826174],\n              [16.782712, 47.798641],\n              [16.876259, 47.708709],\n              [16.887153, 47.663804],\n              [16.893165, 47.618777],\n              [16.887153, 47.602076],\n              [16.839894, 47.528845],\n              [16.748657, 47.452226],\n              [16.701619, 47.438913],\n              [16.610162, 47.392326],\n              [16.484599, 47.348981],\n              [16.471666, 47.331177],\n              [16.424356, 47.259049],\n              [16.424896, 47.169116],\n              [16.451039, 47.079184],\n              [16.471666, 47.045057],\n              [16.523719, 46.989252],\n              [16.610162, 46.951422],\n              [16.748657, 46.930836],\n              [16.887153, 46.916589],\n              [16.970246, 46.89932],\n              [17.025648, 46.889983],\n              [17.164143, 46.841479],\n              [17.246781, 46.809388],\n              [17.302639, 46.78247],\n              [17.441134, 46.748337],\n              [17.528871, 46.719456],\n              [17.579629, 46.703093],\n              [17.66221, 46.629524],\n              [17.691965, 46.539592],\n              [17.680021, 46.44966],\n              [17.634275, 46.359728],\n              [17.579629, 46.28893],\n              [17.541729, 46.269796],\n              [17.441134, 46.193583],\n              [17.407115, 46.179864],\n              [17.302639, 46.097422],\n              [17.291854, 46.089932],\n              [17.228682, 46],\n              [19.006245, 46],\n              [18.964583, 46.020322],\n              [18.876486, 46.089932],\n              [18.826088, 46.163575],\n              [18.814561, 46.179864],\n              [18.775267, 46.269796],\n              [18.747193, 46.359728],\n              [18.726895, 46.44966],\n              [18.78062, 46.539592],\n              [18.826088, 46.563233],\n              [18.86127, 46.629524],\n              [18.931088, 46.719456],\n              [18.964583, 46.738569],\n              [19.103078, 46.805928],\n              [19.241574, 46.792005],\n              [19.310666, 46.719456],\n              [19.319945, 46.629524],\n              [19.37141, 46.539592],\n              [19.380069, 46.519113],\n              [19.41019, 46.44966],\n              [19.494163, 46.359728],\n              [19.518564, 46.328235],\n              [19.573761, 46.269796],\n              [19.613445, 46.179864],\n              [19.604919, 46.089932],\n              [19.524275, 46],\n              [19.65706, 46],\n              [19.65706, 49.507349],\n              [14.186388, 49.507349]\n            ],\n            [\n              [18.538193, 46.629524],\n              [18.549097, 46.617108],\n              [18.652106, 46.539592],\n              [18.657319, 46.44966],\n              [18.549097, 46.390896],\n              [18.410602, 46.36377],\n              [18.272106, 46.391555],\n              [18.233988, 46.44966],\n              [18.210127, 46.539592],\n              [18.240845, 46.629524],\n              [18.272106, 46.663224],\n              [18.410602, 46.675969],\n              [18.538193, 46.629524]\n            ]\n          ],\n          [\n            [\n              [9.823889, 47.265833],\n              [9.781217, 47.259049],\n              [9.685393, 47.247314],\n              [9.546898, 47.20002],\n              [9.491862, 47.169116],\n              [9.408403, 47.10523],\n              [9.377816, 47.079184],\n              [9.322633, 46.989252],\n              [9.310428, 46.89932],\n              [9.337463, 46.809388],\n              [9.408403, 46.722835],\n              [9.412794, 46.719456],\n              [9.546898, 46.641769],\n              [9.598208, 46.629524],\n              [9.685393, 46.606681],\n              [9.823889, 46.60198],\n              [9.962384, 46.626776],\n              [9.969751, 46.629524],\n              [10.10088, 46.681361],\n              [10.157625, 46.719456],\n              [10.239375, 46.80073],\n              [10.246587, 46.809388],\n              [10.291062, 46.89932],\n              [10.297274, 46.989252],\n              [10.264072, 47.079184],\n              [10.239375, 47.107527],\n              [10.181396, 47.169116],\n              [10.10088, 47.214757],\n              [9.962384, 47.256597],\n              [9.928408, 47.259049],\n              [9.823889, 47.265833]\n            ]\n          ],\n          [\n            [\n              [12.17831, 48.008742],\n              [12.039815, 47.999507],\n              [11.979483, 47.978505],\n              [11.901319, 47.928979],\n              [11.860265, 47.888573],\n              [11.841028, 47.798641],\n              [11.901319, 47.714874],\n              [11.904159, 47.708709],\n              [12.039815, 47.646328],\n              [12.17831, 47.628932],\n              [12.316805, 47.62992],\n              [12.455301, 47.631881],\n              [12.593796, 47.671104],\n              [12.655704, 47.708709],\n              [12.648396, 47.798641],\n              [12.593796, 47.833834],\n              [12.522784, 47.888573],\n              [12.455301, 47.924652],\n              [12.316805, 47.976579],\n              [12.300928, 47.978505],\n              [12.17831, 48.008742]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"description\": \"Debug line for testing\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [6.5, 46],\n          [19.657059855532452, 46],\n          [19.657059855532452, 49.50734941852569],\n          [6.5, 49.50734941852569],\n          [6.5, 46]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-isobands/test/out/matrix1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"temperature\": \"2-4\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [12.071816, 44.954354],\n              [11.817453, 44.954354],\n              [11.56309, 44.954354],\n              [11.308726, 44.954354],\n              [11.054363, 44.954354],\n              [10.863591, 44.819456],\n              [10.863591, 44.639592],\n              [10.863591, 44.459728],\n              [10.863591, 44.279864],\n              [11.054363, 44.144966],\n              [11.308726, 44.144966],\n              [11.56309, 44.144966],\n              [11.817453, 44.144966],\n              [12.071816, 44.144966],\n              [12.262588, 44.279864],\n              [12.262588, 44.459728],\n              [12.262588, 44.639592],\n              [12.262588, 44.819456],\n              [12.071816, 44.954354]\n            ],\n            [\n              [12.135407, 44.819456],\n              [12.135407, 44.639592],\n              [12.135407, 44.459728],\n              [12.135407, 44.279864],\n              [12.071816, 44.234898],\n              [11.817453, 44.234898],\n              [11.56309, 44.234898],\n              [11.308726, 44.234898],\n              [11.054363, 44.234898],\n              [10.990772, 44.279864],\n              [10.990772, 44.459728],\n              [10.990772, 44.639592],\n              [10.990772, 44.819456],\n              [11.054363, 44.864422],\n              [11.308726, 44.864422],\n              [11.56309, 44.864422],\n              [11.817453, 44.864422],\n              [12.071816, 44.864422],\n              [12.135407, 44.819456]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"temperature\": \"4-8\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [12.071816, 44.864422],\n              [11.817453, 44.864422],\n              [11.56309, 44.864422],\n              [11.308726, 44.864422],\n              [11.054363, 44.864422],\n              [10.990772, 44.819456],\n              [10.990772, 44.639592],\n              [10.990772, 44.459728],\n              [10.990772, 44.279864],\n              [11.054363, 44.234898],\n              [11.308726, 44.234898],\n              [11.56309, 44.234898],\n              [11.817453, 44.234898],\n              [12.071816, 44.234898],\n              [12.135407, 44.279864],\n              [12.135407, 44.459728],\n              [12.135407, 44.639592],\n              [12.135407, 44.819456],\n              [12.071816, 44.864422]\n            ],\n            [\n              [11.995507, 44.639592],\n              [11.919198, 44.459728],\n              [11.817453, 44.387783],\n              [11.56309, 44.387783],\n              [11.308726, 44.387783],\n              [11.206981, 44.459728],\n              [11.130672, 44.639592],\n              [11.308726, 44.765497],\n              [11.56309, 44.765497],\n              [11.817453, 44.765497],\n              [11.995507, 44.639592]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"temperature\": \"8-12\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [11.817453, 44.765497],\n              [11.56309, 44.765497],\n              [11.308726, 44.765497],\n              [11.130672, 44.639592],\n              [11.206981, 44.459728],\n              [11.308726, 44.387783],\n              [11.56309, 44.387783],\n              [11.817453, 44.387783],\n              [11.919198, 44.459728],\n              [11.995507, 44.639592],\n              [11.817453, 44.765497]\n            ],\n            [\n              [11.893762, 44.639592],\n              [11.817453, 44.531674],\n              [11.56309, 44.531674],\n              [11.308726, 44.531674],\n              [11.232417, 44.639592],\n              [11.308726, 44.693551],\n              [11.56309, 44.693551],\n              [11.817453, 44.693551],\n              [11.893762, 44.639592]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"description\": \"Debug line for testing\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [10.799999999999955, 44.1],\n          [12.326179163093911, 44.1],\n          [12.326179163093911, 44.99932036372454],\n          [10.799999999999955, 44.99932036372454],\n          [10.799999999999955, 44.1]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-isobands/test/out/matrix2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 3,\n        \"stroke\": \"darkred\",\n        \"fill\": \"darkred\",\n        \"fill-opacity\": 0.4,\n        \"elevation\": \"0-4.5\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [11.619012, 45.277035],\n              [11.490843, 45.259049],\n              [11.362675, 45.229071],\n              [11.14906, 45.079184],\n              [11.14906, 44.89932],\n              [11.106337, 44.809388],\n              [11.080704, 44.719456],\n              [11.106337, 44.629524],\n              [11.14906, 44.539592],\n              [11.14906, 44.359728],\n              [11.362675, 44.209841],\n              [11.490843, 44.179864],\n              [11.619012, 44.161878],\n              [11.747181, 44.179864],\n              [11.87535, 44.209841],\n              [12.088964, 44.359728],\n              [12.088964, 44.539592],\n              [12.131687, 44.629524],\n              [12.157321, 44.719456],\n              [12.131687, 44.809388],\n              [12.088964, 44.89932],\n              [12.088964, 45.079184],\n              [11.87535, 45.229071],\n              [11.747181, 45.259049],\n              [11.619012, 45.277035]\n            ],\n            [\n              [11.793788, 44.719456],\n              [11.619012, 44.596822],\n              [11.444237, 44.719456],\n              [11.619012, 44.842091],\n              [11.793788, 44.719456]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 3,\n        \"stroke\": \"darkred\",\n        \"fill\": \"darkred\",\n        \"fill-opacity\": 0.5,\n        \"elevation\": \"4.5-9\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [12.131687, 45.295021],\n              [11.87535, 45.40294],\n              [11.619012, 45.438913],\n              [11.362675, 45.40294],\n              [11.106337, 45.295021],\n              [11.05507, 45.259049],\n              [10.901267, 45.079184],\n              [10.901267, 44.89932],\n              [10.85, 44.719456],\n              [10.901267, 44.539592],\n              [10.901267, 44.359728],\n              [11.05507, 44.179864],\n              [11.106337, 44.143891],\n              [11.362675, 44.035973],\n              [11.619012, 44],\n              [11.87535, 44.035973],\n              [12.131687, 44.143891],\n              [12.182954, 44.179864],\n              [12.336757, 44.359728],\n              [12.336757, 44.539592],\n              [12.388024, 44.719456],\n              [12.336757, 44.89932],\n              [12.336757, 45.079184],\n              [12.182954, 45.259049],\n              [12.131687, 45.295021]\n            ],\n            [\n              [11.747181, 45.259049],\n              [11.87535, 45.229071],\n              [12.088964, 45.079184],\n              [12.088964, 44.89932],\n              [12.131687, 44.809388],\n              [12.157321, 44.719456],\n              [12.131687, 44.629524],\n              [12.088964, 44.539592],\n              [12.088964, 44.359728],\n              [11.87535, 44.209841],\n              [11.747181, 44.179864],\n              [11.619012, 44.161878],\n              [11.490843, 44.179864],\n              [11.362675, 44.209841],\n              [11.14906, 44.359728],\n              [11.14906, 44.539592],\n              [11.106337, 44.629524],\n              [11.080704, 44.719456],\n              [11.106337, 44.809388],\n              [11.14906, 44.89932],\n              [11.14906, 45.079184],\n              [11.362675, 45.229071],\n              [11.490843, 45.259049],\n              [11.619012, 45.277035],\n              [11.747181, 45.259049]\n            ]\n          ],\n          [\n            [\n              [11.619012, 44.842091],\n              [11.444237, 44.719456],\n              [11.619012, 44.596822],\n              [11.793788, 44.719456],\n              [11.619012, 44.842091]\n            ],\n            [\n              [11.688922, 44.719456],\n              [11.619012, 44.670402],\n              [11.549102, 44.719456],\n              [11.619012, 44.76851],\n              [11.688922, 44.719456]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 3,\n        \"stroke\": \"darkred\",\n        \"fill\": \"darkred\",\n        \"fill-opacity\": 0.7,\n        \"elevation\": \"9-13.5\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [10.85, 44.161878],\n              [11.080704, 44],\n              [12.157321, 44],\n              [12.388024, 44.161878],\n              [12.388024, 45.277035],\n              [12.157321, 45.438913],\n              [11.080704, 45.438913],\n              [10.85, 45.277035],\n              [10.85, 44.161878]\n            ],\n            [\n              [12.182954, 45.259049],\n              [12.336757, 45.079184],\n              [12.336757, 44.89932],\n              [12.388024, 44.719456],\n              [12.336757, 44.539592],\n              [12.336757, 44.359728],\n              [12.182954, 44.179864],\n              [12.131687, 44.143891],\n              [11.87535, 44.035973],\n              [11.619012, 44],\n              [11.362675, 44.035973],\n              [11.106337, 44.143891],\n              [11.05507, 44.179864],\n              [10.901267, 44.359728],\n              [10.901267, 44.539592],\n              [10.85, 44.719456],\n              [10.901267, 44.89932],\n              [10.901267, 45.079184],\n              [11.05507, 45.259049],\n              [11.106337, 45.295021],\n              [11.362675, 45.40294],\n              [11.619012, 45.438913],\n              [11.87535, 45.40294],\n              [12.131687, 45.295021],\n              [12.182954, 45.259049]\n            ]\n          ],\n          [\n            [\n              [11.619012, 44.76851],\n              [11.549102, 44.719456],\n              [11.619012, 44.670402],\n              [11.688922, 44.719456],\n              [11.619012, 44.76851]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 3,\n        \"stroke\": \"darkred\",\n        \"fill\": \"darkred\",\n        \"fill-opacity\": 0.8,\n        \"elevation\": \"13.5-18\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [12.388024, 44.161878],\n              [12.157321, 44],\n              [12.388024, 44],\n              [12.388024, 44],\n              [12.388024, 44.161878]\n            ]\n          ],\n          [\n            [\n              [11.080704, 44],\n              [10.85, 44.161878],\n              [10.85, 44],\n              [10.85, 44],\n              [11.080704, 44]\n            ]\n          ],\n          [\n            [\n              [12.157321, 45.438913],\n              [12.388024, 45.277035],\n              [12.388024, 45.438913],\n              [12.388024, 45.438913],\n              [12.157321, 45.438913]\n            ]\n          ],\n          [\n            [\n              [10.85, 45.277035],\n              [11.080704, 45.438913],\n              [10.85, 45.438913],\n              [10.85, 45.438913],\n              [10.85, 45.277035]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"description\": \"Debug line for testing\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [10.850000000000023, 43.99999999999999],\n          [12.388024266955085, 43.99999999999999],\n          [12.388024266955085, 45.43891258195926],\n          [10.850000000000023, 45.43891258195926],\n          [10.850000000000023, 43.99999999999999]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-isobands/test/out/pointGrid.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"people\": \"0-20\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-70.645198, -33.553984],\n              [-70.607603, -33.512628],\n              [-70.553662, -33.521999],\n              [-70.542579, -33.509032],\n              [-70.527562, -33.46408],\n              [-70.553662, -33.452842],\n              [-70.607603, -33.461775],\n              [-70.613434, -33.46408],\n              [-70.661543, -33.492069],\n              [-70.710988, -33.46408],\n              [-70.715483, -33.450594],\n              [-70.725002, -33.46408],\n              [-70.769424, -33.48259],\n              [-70.79511, -33.509032],\n              [-70.823364, -33.535057],\n              [-70.823364, -33.553984],\n              [-70.764237, -33.553984],\n              [-70.715483, -33.518772],\n              [-70.671006, -33.553984],\n              [-70.645198, -33.553984]\n            ]\n          ],\n          [\n            [\n              [-70.823364, -33.429795],\n              [-70.769424, -33.443779],\n              [-70.731216, -33.419128],\n              [-70.742454, -33.374176],\n              [-70.769424, -33.351019],\n              [-70.786725, -33.374176],\n              [-70.823364, -33.406542],\n              [-70.823364, -33.429795]\n            ]\n          ],\n          [\n            [\n              [-70.629732, -33.329224],\n              [-70.607603, -33.337216],\n              [-70.553662, -33.335329],\n              [-70.511237, -33.374176],\n              [-70.514512, -33.419128],\n              [-70.499722, -33.442285],\n              [-70.499722, -33.329224],\n              [-70.629732, -33.329224]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.6,\n        \"people\": \"20-40\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-70.823364, -33.535057],\n              [-70.79511, -33.509032],\n              [-70.769424, -33.48259],\n              [-70.725002, -33.46408],\n              [-70.715483, -33.450594],\n              [-70.710988, -33.46408],\n              [-70.661543, -33.492069],\n              [-70.613434, -33.46408],\n              [-70.607603, -33.461775],\n              [-70.553662, -33.452842],\n              [-70.527562, -33.46408],\n              [-70.542579, -33.509032],\n              [-70.553662, -33.521999],\n              [-70.607603, -33.512628],\n              [-70.645198, -33.553984],\n              [-70.612506, -33.553984],\n              [-70.607603, -33.54859],\n              [-70.553662, -33.539288],\n              [-70.527801, -33.509032],\n              [-70.499722, -33.468361],\n              [-70.499722, -33.442285],\n              [-70.514512, -33.419128],\n              [-70.511237, -33.374176],\n              [-70.553662, -33.335329],\n              [-70.607603, -33.337216],\n              [-70.629732, -33.329224],\n              [-70.657394, -33.329224],\n              [-70.607603, -33.347205],\n              [-70.553662, -33.346428],\n              [-70.523359, -33.374176],\n              [-70.531912, -33.419128],\n              [-70.553662, -33.437858],\n              [-70.607603, -33.450249],\n              [-70.642591, -33.46408],\n              [-70.661543, -33.475106],\n              [-70.681022, -33.46408],\n              [-70.688513, -33.419128],\n              [-70.71204, -33.374176],\n              [-70.715483, -33.370887],\n              [-70.764287, -33.329224],\n              [-70.771237, -33.329224],\n              [-70.80708, -33.374176],\n              [-70.823364, -33.388561],\n              [-70.823364, -33.406542],\n              [-70.786725, -33.374176],\n              [-70.769424, -33.351019],\n              [-70.742454, -33.374176],\n              [-70.731216, -33.419128],\n              [-70.769424, -33.443779],\n              [-70.823364, -33.429795],\n              [-70.823364, -33.445033],\n              [-70.779864, -33.46408],\n              [-70.820795, -33.509032],\n              [-70.823364, -33.511398],\n              [-70.823364, -33.535057]\n            ]\n          ],\n          [\n            [\n              [-70.671006, -33.553984],\n              [-70.715483, -33.518772],\n              [-70.764237, -33.553984],\n              [-70.743491, -33.553984],\n              [-70.715483, -33.533756],\n              [-70.689933, -33.553984],\n              [-70.671006, -33.553984]\n            ]\n          ],\n          [\n            [\n              [-70.499722, -33.546991],\n              [-70.515455, -33.553984],\n              [-70.499722, -33.553984],\n              [-70.499722, -33.546991]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.7,\n        \"people\": \"40-80\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-70.764287, -33.329224],\n              [-70.715483, -33.370887],\n              [-70.71204, -33.374176],\n              [-70.688513, -33.419128],\n              [-70.681022, -33.46408],\n              [-70.661543, -33.475106],\n              [-70.642591, -33.46408],\n              [-70.607603, -33.450249],\n              [-70.553662, -33.437858],\n              [-70.531912, -33.419128],\n              [-70.523359, -33.374176],\n              [-70.553662, -33.346428],\n              [-70.607603, -33.347205],\n              [-70.657394, -33.329224],\n              [-70.764287, -33.329224]\n            ],\n            [\n              [-70.547602, -33.374176],\n              [-70.553662, -33.392157],\n              [-70.581563, -33.419128],\n              [-70.607603, -33.427196],\n              [-70.626021, -33.419128],\n              [-70.661543, -33.379976],\n              [-70.666134, -33.374176],\n              [-70.661543, -33.369791],\n              [-70.607603, -33.367184],\n              [-70.553662, -33.368626],\n              [-70.547602, -33.374176]\n            ]\n          ],\n          [\n            [\n              [-70.499722, -33.468361],\n              [-70.527801, -33.509032],\n              [-70.553662, -33.539288],\n              [-70.607603, -33.54859],\n              [-70.612506, -33.553984],\n              [-70.515455, -33.553984],\n              [-70.499722, -33.546991],\n              [-70.499722, -33.468361]\n            ]\n          ],\n          [\n            [\n              [-70.823364, -33.511398],\n              [-70.820795, -33.509032],\n              [-70.779864, -33.46408],\n              [-70.823364, -33.445033],\n              [-70.823364, -33.511398]\n            ]\n          ],\n          [\n            [\n              [-70.823364, -33.388561],\n              [-70.80708, -33.374176],\n              [-70.771237, -33.329224],\n              [-70.789368, -33.329224],\n              [-70.823364, -33.363279],\n              [-70.823364, -33.388561]\n            ]\n          ],\n          [\n            [\n              [-70.689933, -33.553984],\n              [-70.715483, -33.533756],\n              [-70.743491, -33.553984],\n              [-70.689933, -33.553984]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.8,\n        \"people\": \"80-160\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-70.553662, -33.368626],\n              [-70.607603, -33.367184],\n              [-70.661543, -33.369791],\n              [-70.666134, -33.374176],\n              [-70.661543, -33.379976],\n              [-70.626021, -33.419128],\n              [-70.607603, -33.427196],\n              [-70.581563, -33.419128],\n              [-70.553662, -33.392157],\n              [-70.547602, -33.374176],\n              [-70.553662, -33.368626]\n            ]\n          ],\n          [\n            [\n              [-70.823364, -33.363279],\n              [-70.789368, -33.329224],\n              [-70.823364, -33.329224],\n              [-70.823364, -33.363279]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"description\": \"Debug line for testing\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-70.823364, -33.553984],\n          [-70.49972213092846, -33.553984],\n          [-70.49972213092846, -33.32922415568381],\n          [-70.823364, -33.32922415568381],\n          [-70.823364, -33.553984]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-isobands/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { envelope } from \"@turf/envelope\";\nimport { pointGrid } from \"@turf/point-grid\";\nimport { truncate } from \"@turf/truncate\";\nimport { getCoords } from \"@turf/invariant\";\nimport { lineString } from \"@turf/helpers\";\nimport { randomPolygon } from \"@turf/random\";\nimport { matrixToGrid } from \"./lib/matrix-to-grid.js\";\nimport { isobands } from \"./index.js\";\nimport { FeatureCollection, Point } from \"geojson\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    json: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"isobands\", (t) => {\n  fixtures.forEach(({ name, json }) => {\n    const options = json.properties || json;\n    const { breaks, matrix, origin, cellSize } = options;\n\n    // allow GeoJSON featureCollection or matrix\n    let points = json.properties\n      ? json\n      : matrixToGrid(matrix, origin, cellSize, options);\n\n    // Results\n    const results = truncate(isobands(points, breaks, options));\n\n    // Add line around point data\n    results.features.push(\n      lineString(getCoords(envelope(points))[0], {\n        description: \"Debug line for testing\",\n        stroke: \"#F00\",\n        \"stroke-width\": 1,\n      })\n    );\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + name + \".geojson\", results);\n    t.deepEqual(\n      results,\n      loadJsonFileSync(directories.out + name + \".geojson\"),\n      name\n    );\n  });\n\n  t.end();\n});\n\ntest(\"isobands - flat data, from issue #1797\", (t) => {\n  const points = pointGrid(\n    [-70.823364, -33.553984, -70.473175, -33.302986],\n    5,\n    {\n      properties: { elevation: 1 },\n    }\n  );\n\n  const lines = isobands(points, [0, 2]);\n  t.assert(lines.features[0].geometry.coordinates[0][0].length > 4);\n  t.end();\n});\n\ntest(\"isobands -- throws\", (t) => {\n  const points = pointGrid([-70.823364, -33.553984, -70.473175, -33.302986], 5);\n\n  t.throws(() => isobands(randomPolygon(), [1, 2, 3]), \"invalid points\");\n  t.throws(() => isobands(points, \"\"), \"invalid breaks\");\n  t.throws(\n    () =>\n      isobands(points, [1, 2, 3], {\n        zProperty: \"temp\",\n        breaksProperties: \"hello\",\n      }),\n    \"invalid options\"\n  );\n\n  t.end();\n});\n\ntest(\"isobands -- checks for usable grid\", (t) => {\n  const input: FeatureCollection<Point> = {\n    type: \"FeatureCollection\",\n    features: [\n      {\n        type: \"Feature\",\n        properties: { z: 0 },\n        geometry: {\n          type: \"Point\",\n          coordinates: [0, 0],\n        },\n      },\n      {\n        type: \"Feature\",\n        properties: { z: 0 },\n        geometry: {\n          type: \"Point\",\n          coordinates: [0, 1],\n        },\n      },\n      {\n        type: \"Feature\",\n        properties: { z: 0 },\n        geometry: {\n          type: \"Point\",\n          coordinates: [1, 1],\n        },\n      },\n      {\n        type: \"Feature\",\n        properties: { z: 0 },\n        geometry: {\n          type: \"Point\",\n          coordinates: [1e-10, 1], // almost the same lng as the first feature, but different enough to break everything\n        },\n      },\n    ],\n  };\n  t.throws(() => {\n    isobands(input, [0, 1], { zProperty: \"z\" });\n  });\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-isobands/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-isolines/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-isolines/README.md",
    "content": "# @turf/isolines\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## isolines\n\nTakes a grid [FeatureCollection][1] of [Point][2] features with z-values and an array of\nvalue breaks and generates [isolines][3].\n\n### Parameters\n\n*   `pointGrid` **[FeatureCollection][1]<[Point][2]>** input points - must be square or rectangular and already gridded. That is, to have consistent x and y dimensions and be at least 2x2 in size.\n*   `breaks` **[Array][4]<[number][5]>** values of `zProperty` where to draw isolines\n*   `options` **[Object][6]** Optional parameters (optional, default `{}`)\n\n    *   `options.zProperty` **[string][7]** the property name in `points` from which z-values will be pulled (optional, default `'elevation'`)\n    *   `options.commonProperties` **[Object][6]** GeoJSON properties passed to ALL isolines (optional, default `{}`)\n    *   `options.breaksProperties` **[Array][4]<[Object][6]>** GeoJSON properties passed, in order, to the correspondent isoline;\n        the breaks array will define the order in which the isolines are created (optional, default `[]`)\n\n### Examples\n\n```javascript\n// create a grid of points with random z-values in their properties\nvar extent = [0, 30, 20, 50];\nvar cellWidth = 100;\nvar pointGrid = turf.pointGrid(extent, cellWidth, {units: 'miles'});\n\nfor (var i = 0; i < pointGrid.features.length; i++) {\n    pointGrid.features[i].properties.temperature = Math.random() * 10;\n}\nvar breaks = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];\n\nvar lines = turf.isolines(pointGrid, breaks, {zProperty: 'temperature'});\n\n//addToMap\nvar addToMap = [lines];\n```\n\nReturns **[FeatureCollection][1]<[MultiLineString][8]>** a FeatureCollection of [MultiLineString][8] features representing isolines\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[3]: https://en.wikipedia.org/wiki/Contour_line\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n[8]: https://tools.ietf.org/html/rfc7946#section-3.1.5\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/isolines\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-isolines/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { matrixToGrid } from \"./lib/matrix-to-grid.js\";\nimport { isolines } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n// Define Fixtures\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    jsondata: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * bigMatrix x 168 ops/sec ±2.79% (72 runs sampled)\n * matrix1 x 17,145 ops/sec ±4.73% (68 runs sampled)\n * matrix2 x 11,004 ops/sec ±2.56% (79 runs sampled)\n * pointGrid x 12,109 ops/sec ±2.01% (77 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-isolines\");\nfor (const { name, jsondata, filename } of fixtures) {\n  const {\n    breaks,\n    zProperty,\n    propertiesPerIsoline,\n    propertiesToAllIsolines,\n    matrix,\n    cellSize,\n    units,\n    origin,\n  } = jsondata.properties || jsondata;\n\n  // allow GeoJSON FeatureCollection or Matrix\n  let points;\n  if (filename.includes(\"geojson\")) points = jsondata;\n  else points = matrixToGrid(matrix, origin, cellSize, { zProperty, units });\n\n  suite.add(name, () =>\n    isolines(points, breaks, {\n      zProperty,\n      propertiesToAllIsolines,\n      propertiesPerIsoline,\n    })\n  );\n}\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-isolines/index.ts",
    "content": "import { bbox } from \"@turf/bbox\";\nimport { coordEach } from \"@turf/meta\";\nimport { collectionOf } from \"@turf/invariant\";\nimport { multiLineString, featureCollection, isObject } from \"@turf/helpers\";\nimport { gridToMatrix } from \"./lib/grid-to-matrix.js\";\nimport {\n  FeatureCollection,\n  Point,\n  MultiLineString,\n  Feature,\n  GeoJsonProperties,\n  Position,\n} from \"geojson\";\n\n/**\n * Takes a grid {@link FeatureCollection} of {@link Point} features with z-values and an array of\n * value breaks and generates [isolines](https://en.wikipedia.org/wiki/Contour_line).\n *\n * @function\n * @param {FeatureCollection<Point>} pointGrid input points - must be square or rectangular and already gridded. That is, to have consistent x and y dimensions and be at least 2x2 in size.\n * @param {Array<number>} breaks values of `zProperty` where to draw isolines\n * @param {Object} [options={}] Optional parameters\n * @param {string} [options.zProperty='elevation'] the property name in `points` from which z-values will be pulled\n * @param {Object} [options.commonProperties={}] GeoJSON properties passed to ALL isolines\n * @param {Array<Object>} [options.breaksProperties=[]] GeoJSON properties passed, in order, to the correspondent isoline;\n * the breaks array will define the order in which the isolines are created\n * @returns {FeatureCollection<MultiLineString>} a FeatureCollection of {@link MultiLineString} features representing isolines\n * @example\n * // create a grid of points with random z-values in their properties\n * var extent = [0, 30, 20, 50];\n * var cellWidth = 100;\n * var pointGrid = turf.pointGrid(extent, cellWidth, {units: 'miles'});\n *\n * for (var i = 0; i < pointGrid.features.length; i++) {\n *     pointGrid.features[i].properties.temperature = Math.random() * 10;\n * }\n * var breaks = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];\n *\n * var lines = turf.isolines(pointGrid, breaks, {zProperty: 'temperature'});\n *\n * //addToMap\n * var addToMap = [lines];\n */\nfunction isolines(\n  pointGrid: FeatureCollection<Point>,\n  breaks: number[],\n  options?: {\n    zProperty?: string;\n    commonProperties?: GeoJsonProperties;\n    breaksProperties?: GeoJsonProperties[];\n  }\n) {\n  // Optional parameters\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  const zProperty = options.zProperty || \"elevation\";\n  const commonProperties = options.commonProperties || {};\n  const breaksProperties = options.breaksProperties || [];\n\n  // Input validation\n  collectionOf(pointGrid, \"Point\", \"Input must contain Points\");\n  if (!breaks) throw new Error(\"breaks is required\");\n  if (!Array.isArray(breaks)) throw new Error(\"breaks must be an Array\");\n  if (!isObject(commonProperties))\n    throw new Error(\"commonProperties must be an Object\");\n  if (!Array.isArray(breaksProperties))\n    throw new Error(\"breaksProperties must be an Array\");\n\n  // Isoline methods\n  const matrix = gridToMatrix(pointGrid, { zProperty: zProperty, flip: true });\n\n  // A quick note on what 'top' and 'bottom' mean in coordinate system of `matrix`:\n  // Remember that the southern hemisphere is represented by negative numbers,\n  // so a matrix Y of 0 is actually the *bottom*, and a Y of dy - 1 is the *top*.\n\n  // check that the resulting matrix has consistent x and y dimensions and\n  // has at least a 2x2 size so that we can actually build grid squares\n  const dx = matrix[0].length;\n  if (matrix.length < 2 || dx < 2) {\n    throw new Error(\"Matrix of points must be at least 2x2\");\n  }\n  for (let i = 1; i < matrix.length; i++) {\n    if (matrix[i].length !== dx) {\n      throw new Error(\"Matrix of points is not uniform in the x dimension\");\n    }\n  }\n\n  const createdIsoLines = createIsoLines(\n    matrix,\n    breaks,\n    zProperty,\n    commonProperties,\n    breaksProperties\n  );\n  const scaledIsolines = rescaleIsolines(createdIsoLines, matrix, pointGrid);\n\n  return featureCollection(scaledIsolines);\n}\n\n/**\n * Creates the isolines lines (featuresCollection of MultiLineString features) from the 2D data grid\n *\n * Marchingsquares process the grid data as a 3D representation of a function on a 2D plane, therefore it\n * assumes the points (x-y coordinates) are one 'unit' distance. The result of the isolines function needs to be\n * rescaled, with turfjs, to the original area and proportions on the map\n *\n * @private\n * @param {Array<Array<number>>} matrix Grid Data\n * @param {Array<number>} breaks BreakProps\n * @param {string} zProperty name of the z-values property\n * @param {Object} [commonProperties={}] GeoJSON properties passed to ALL isolines\n * @param {Object} [breaksProperties=[]] GeoJSON properties passed to the correspondent isoline\n * @returns {Array<MultiLineString>} isolines\n */\nfunction createIsoLines(\n  matrix: number[][],\n  breaks: number[],\n  zProperty: string,\n  commonProperties: GeoJsonProperties,\n  breaksProperties: GeoJsonProperties[]\n): Feature<MultiLineString>[] {\n  const results = [];\n  for (let i = 0; i < breaks.length; i++) {\n    const threshold = +breaks[i]; // make sure it's a number\n\n    const properties = { ...commonProperties, ...breaksProperties[i] };\n    properties[zProperty] = threshold;\n    const isoline = multiLineString(isoContours(matrix, threshold), properties);\n\n    results.push(isoline);\n  }\n  return results;\n}\n\nfunction isoContours(\n  matrix: ReadonlyArray<ReadonlyArray<number>>,\n  threshold: number\n): Position[][] {\n  // see https://en.wikipedia.org/wiki/Marching_squares\n  const segments: [Position, Position][] = [];\n\n  const dy = matrix.length;\n  const dx = matrix[0].length;\n\n  for (let y = 0; y < dy - 1; y++) {\n    for (let x = 0; x < dx - 1; x++) {\n      const tr = matrix[y + 1][x + 1];\n      const br = matrix[y][x + 1];\n      const bl = matrix[y][x];\n      const tl = matrix[y + 1][x];\n\n      let grid =\n        (tl >= threshold ? 8 : 0) |\n        (tr >= threshold ? 4 : 0) |\n        (br >= threshold ? 2 : 0) |\n        (bl >= threshold ? 1 : 0);\n\n      switch (grid) {\n        case 0:\n          continue;\n        case 1:\n          segments.push([\n            [x + frac(bl, br), y],\n            [x, y + frac(bl, tl)],\n          ]);\n          break;\n        case 2:\n          segments.push([\n            [x + 1, y + frac(br, tr)],\n            [x + frac(bl, br), y],\n          ]);\n          break;\n        case 3:\n          segments.push([\n            [x + 1, y + frac(br, tr)],\n            [x, y + frac(bl, tl)],\n          ]);\n          break;\n        case 4:\n          segments.push([\n            [x + frac(tl, tr), y + 1],\n            [x + 1, y + frac(br, tr)],\n          ]);\n          break;\n        case 5: {\n          // use the average of the 4 corners to differentiate the saddle case and correctly honor the counter-clockwise winding\n          const avg = (tl + tr + br + bl) / 4;\n          const above = avg >= threshold;\n\n          if (above) {\n            segments.push(\n              [\n                [x + frac(tl, tr), y + 1],\n                [x, y + frac(bl, tl)],\n              ],\n              [\n                [x + frac(bl, br), y],\n                [x + 1, y + frac(br, tr)],\n              ]\n            );\n          } else {\n            segments.push(\n              [\n                [x + frac(tl, tr), y + 1],\n                [x + 1, y + frac(br, tr)],\n              ],\n              [\n                [x + frac(bl, br), y],\n                [x, y + frac(bl, tl)],\n              ]\n            );\n          }\n          break;\n        }\n        case 6:\n          segments.push([\n            [x + frac(tl, tr), y + 1],\n            [x + frac(bl, br), y],\n          ]);\n          break;\n        case 7:\n          segments.push([\n            [x + frac(tl, tr), y + 1],\n            [x, y + frac(bl, tl)],\n          ]);\n          break;\n        case 8:\n          segments.push([\n            [x, y + frac(bl, tl)],\n            [x + frac(tl, tr), y + 1],\n          ]);\n          break;\n        case 9:\n          segments.push([\n            [x + frac(bl, br), y],\n            [x + frac(tl, tr), y + 1],\n          ]);\n          break;\n        case 10: {\n          const avg = (tl + tr + br + bl) / 4;\n          const above = avg >= threshold;\n\n          if (above) {\n            segments.push(\n              [\n                [x, y + frac(bl, tl)],\n                [x + frac(bl, br), y],\n              ],\n              [\n                [x + 1, y + frac(br, tr)],\n                [x + frac(tl, tr), y + 1],\n              ]\n            );\n          } else {\n            segments.push(\n              [\n                [x, y + frac(bl, tl)],\n                [x + frac(tl, tr), y + 1],\n              ],\n              [\n                [x + 1, y + frac(br, tr)],\n                [x + frac(bl, br), y],\n              ]\n            );\n          }\n          break;\n        }\n        case 11:\n          segments.push([\n            [x + 1, y + frac(br, tr)],\n            [x + frac(tl, tr), y + 1],\n          ]);\n          break;\n        case 12:\n          segments.push([\n            [x, y + frac(bl, tl)],\n            [x + 1, y + frac(br, tr)],\n          ]);\n          break;\n        case 13:\n          segments.push([\n            [x + frac(bl, br), y],\n            [x + 1, y + frac(br, tr)],\n          ]);\n          break;\n        case 14:\n          segments.push([\n            [x, y + frac(bl, tl)],\n            [x + frac(bl, br), y],\n          ]);\n          break;\n        case 15:\n          // all above\n          continue;\n      }\n    }\n  }\n\n  const contours: Position[][] = [];\n\n  while (segments.length > 0) {\n    const contour: Position[] = [...segments.shift()!];\n    contours.push(contour);\n\n    let found: boolean;\n    do {\n      found = false;\n      for (let i = 0; i < segments.length; i++) {\n        const segment = segments[i];\n        // add the segment's end point to the end of the contour\n        if (\n          segment[0][0] === contour[contour.length - 1][0] &&\n          segment[0][1] === contour[contour.length - 1][1]\n        ) {\n          found = true;\n          contour.push(segment[1]);\n          segments.splice(i, 1);\n          break;\n        }\n        // add the segment's start point to the start of the contour\n        if (\n          segment[1][0] === contour[0][0] &&\n          segment[1][1] === contour[0][1]\n        ) {\n          found = true;\n          contour.unshift(segment[0]);\n          segments.splice(i, 1);\n          break;\n        }\n      }\n    } while (found);\n  }\n\n  return contours;\n\n  // get the linear interpolation fraction of how far z is between z0 and z1\n  // See https://github.com/fschutt/marching-squares/blob/master/src/lib.rs\n  function frac(z0: number, z1: number): number {\n    if (z0 === z1) {\n      return 0.5;\n    }\n\n    let t = (threshold - z0) / (z1 - z0);\n    return t > 1 ? 1 : t < 0 ? 0 : t;\n  }\n}\n\n/**\n * Translates and scales isolines\n *\n * @private\n * @param {Array<MultiLineString>} createdIsoLines to be rescaled\n * @param {Array<Array<number>>} matrix Grid Data\n * @param {Object} points Points by Latitude\n * @returns {Array<MultiLineString>} isolines\n */\nfunction rescaleIsolines(\n  createdIsoLines: Feature<MultiLineString>[],\n  matrix: number[][],\n  points: FeatureCollection<Point>\n) {\n  // get dimensions (on the map) of the original grid\n  const gridBbox = bbox(points); // [ minX, minY, maxX, maxY ]\n  const originalWidth = gridBbox[2] - gridBbox[0];\n  const originalHeigth = gridBbox[3] - gridBbox[1];\n\n  // get origin, which is the first point of the last row on the rectangular data on the map\n  const x0 = gridBbox[0];\n  const y0 = gridBbox[1];\n\n  // get number of cells per side\n  const matrixWidth = matrix[0].length - 1;\n  const matrixHeight = matrix.length - 1;\n\n  // calculate the scaling factor between matrix and rectangular grid on the map\n  const scaleX = originalWidth / matrixWidth;\n  const scaleY = originalHeigth / matrixHeight;\n\n  const resize = (point: number[]) => {\n    point[0] = point[0] * scaleX + x0;\n    point[1] = point[1] * scaleY + y0;\n  };\n\n  // resize and shift each point/line of the createdIsoLines\n  createdIsoLines.forEach((isoline) => {\n    coordEach(isoline, resize);\n  });\n  return createdIsoLines;\n}\n\nexport { isolines };\nexport default isolines;\n"
  },
  {
    "path": "packages/turf-isolines/lib/grid-to-matrix.ts",
    "content": "import { getCoords, collectionOf } from \"@turf/invariant\";\nimport { featureEach } from \"@turf/meta\";\nimport { isObject } from \"@turf/helpers\";\nimport { Feature, FeatureCollection, Point } from \"geojson\";\n\n/**\n * Takes a {@link Point} grid and returns a correspondent matrix {Array<Array<number>>}\n * of the 'property' values\n *\n * @name gridToMatrix\n * @param {FeatureCollection<Point>} grid of points\n * @param {Object} [options={}] Optional parameters\n * @param {string} [options.zProperty='elevation'] the property name in `points` from which z-values will be pulled\n * @param {boolean} [options.flip=false] returns the matrix upside-down\n * @param {boolean} [options.flags=false] flags, adding a `matrixPosition` array field ([row, column]) to its properties,\n * the grid points with coordinates on the matrix\n * @returns {Array<Array<number>>} matrix of property values\n * @example\n *   var extent = [-70.823364, -33.553984, -70.473175, -33.302986];\n *   var cellSize = 3;\n *   var grid = turf.pointGrid(extent, cellSize);\n *   // add a random property to each point between 0 and 60\n *   for (var i = 0; i < grid.features.length; i++) {\n *     grid.features[i].properties.elevation = (Math.random() * 60);\n *   }\n *   gridToMatrix(grid);\n *   //= [\n *     [ 1, 13, 10,  9, 10, 13, 18],\n *     [34,  8,  5,  4,  5,  8, 13],\n *     [10,  5,  2,  1,  2,  5,  4],\n *     [ 0,  4, 56, 19,  1,  4,  9],\n *     [10,  5,  2,  1,  2,  5, 10],\n *     [57,  8,  5,  4,  5,  0, 57],\n *     [ 3, 13, 10,  9,  5, 13, 18],\n *     [18, 13, 10,  9, 78, 13, 18]\n *   ]\n */\nexport function gridToMatrix(\n  grid: FeatureCollection<Point>,\n  options: { zProperty?: string; flip?: boolean; flags?: boolean } = {}\n): any {\n  // Optional parameters\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  const { zProperty = \"elevation\", flip = false, flags = false } = options;\n\n  // validation\n  collectionOf(grid, \"Point\", \"input must contain Points\");\n\n  var pointsMatrix = sortPointsByLatLng(grid, flip);\n\n  var matrix = [];\n  // create property matrix from sorted points\n  // looping order matters here\n  for (var r = 0; r < pointsMatrix.length; r++) {\n    var pointRow = pointsMatrix[r];\n    var row = [];\n    for (var c = 0; c < pointRow.length; c++) {\n      var point = pointRow[c];\n      if (point.properties == null) {\n        point.properties = {};\n      }\n      // Check if zProperty exist\n      if (point.properties[zProperty]) row.push(point.properties[zProperty]);\n      else row.push(0);\n      // add flags\n      if (flags === true) point.properties.matrixPosition = [r, c];\n    }\n    matrix.push(row);\n  }\n\n  return matrix;\n}\n\n/**\n * Sorts points by latitude and longitude, creating a 2-dimensional array of points\n *\n * @private\n * @param {FeatureCollection<Point>} points GeoJSON Point features\n * @param {boolean} [flip=false] returns the matrix upside-down\n * @returns {Array<Array<Point>>} points ordered by latitude and longitude\n */\nfunction sortPointsByLatLng(points: FeatureCollection<Point>, flip: boolean) {\n  var pointsByLatitude: Record<number | string, Feature<Point>[]> = {};\n\n  // divide points by rows with the same latitude\n  featureEach(points, (point) => {\n    var lat = getCoords(point)[1] as number;\n    if (!pointsByLatitude[lat]) pointsByLatitude[lat] = [];\n    pointsByLatitude[lat].push(point);\n  });\n\n  // sort points (with the same latitude) by longitude\n  const pointMatrix: Feature<Point>[][] = [];\n  for (const row of Object.values(pointsByLatitude)) {\n    pointMatrix.push(row.sort((a, b) => getCoords(a)[0] - getCoords(b)[0]));\n  }\n\n  // sort rows (of points with the same latitude) by latitude\n  pointMatrix.sort(\n    flip\n      ? (a, b) => getCoords(a[0])[1] - getCoords(b[0])[1]\n      : (a, b) => getCoords(b[0])[1] - getCoords(a[0])[1]\n  );\n\n  return pointMatrix;\n}\n"
  },
  {
    "path": "packages/turf-isolines/lib/matrix-to-grid.ts",
    "content": "import { isObject, featureCollection, point, Units } from \"@turf/helpers\";\nimport { rhumbDestination } from \"@turf/rhumb-destination\";\nimport { Feature, Point } from \"geojson\";\n\n/**\n * Takes a {@link Point} grid and returns a correspondent matrix {Array<Array<number>>}\n * of the 'property' values\n *\n * @name matrixToGrid\n * @param {Array<Array<number>>} matrix of numbers\n * @param {Point|Array<number>} origin position of the first bottom-left (South-West) point of the grid\n * @param {number} cellSize the distance across each cell\n * @param {Object} [options={}] optional parameters\n * @param {string} [options.zProperty='elevation'] the grid points property name associated with the matrix value\n * @param {Object} [options.properties={}] GeoJSON properties passed to all the points\n * @param {Units} [options.units='kilometers'] used in calculating cellSize. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.\n * @returns {FeatureCollection<Point>} grid of points\n *\n * @example\n *    var matrixToGrid = require('matrix-to-grid');\n *    var matrix = [\n *      [ 1, 13, 20,  9, 10, 13, 18],\n *      [34,  8,  0,  4,  5,  8, 13],\n *      [10,  5,  2,  1,  2,  5, 24],\n *      [ 0,  4, 56, 19,  0,  4,  9],\n *      [10,  5,  2, 12,  2,  5, 10],\n *      [57,  8,  5,  4,  5,  0, 57],\n *      [ 3, 13,  0,  9,  5, 13, 35],\n *      [18, 13, 10,  9, 78, 13, 18]\n *    ];\n *    var origin = [-70.823364, -33.553984]\n *    matrixToGrid(matrix, origin, 10);\n *    //= pointGrid\n */\nexport function matrixToGrid(\n  matrix: number[][],\n  origin: Feature<Point> | number[],\n  cellSize: number,\n  options: {\n    zProperty?: string;\n    properties?: Record<any, any>;\n    units?: Units;\n  } = {}\n) {\n  // Optional parameters\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  var zProperty = options.zProperty || \"elevation\";\n  var properties = options.properties;\n  var units = options.units;\n\n  // validation\n  if (!matrix || !Array.isArray(matrix)) throw new Error(\"matrix is required\");\n  if (!origin) throw new Error(\"origin is required\");\n  if (Array.isArray(origin)) {\n    origin = point(origin); // Convert coordinates array to point\n  }\n  // all matrix array have to be of the same size\n  var matrixCols = matrix[0].length;\n  var matrixRows = matrix.length;\n  for (var row = 1; row < matrixRows; row++) {\n    if (matrix[row].length !== matrixCols)\n      throw new Error(\"matrix requires all rows of equal size\");\n  }\n\n  var points = [];\n  for (var r = 0; r < matrixRows; r++) {\n    // create first point in the row\n    var first = rhumbDestination(origin, cellSize * r, 0, { units: units });\n    if (first.properties == null) {\n      first.properties = {};\n    }\n    first.properties[zProperty] = matrix[matrixRows - 1 - r][0];\n    for (var prop in properties) {\n      first.properties[prop] = properties[prop];\n    }\n    points.push(first);\n    for (var c = 1; c < matrixCols; c++) {\n      // create the other points in the same row\n      var pt = rhumbDestination(first, cellSize * c, 90, { units: units });\n      if (pt.properties == null) {\n        pt.properties = {};\n      }\n      for (var prop2 in properties) {\n        pt.properties[prop2] = properties[prop2];\n      }\n      // add matrix property\n      var val = matrix[matrixRows - 1 - r][c];\n      pt.properties[zProperty] = val;\n      points.push(pt);\n    }\n  }\n  var grid = featureCollection(points);\n  return grid;\n}\n"
  },
  {
    "path": "packages/turf-isolines/package.json",
    "content": "{\n  \"name\": \"@turf/isolines\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Generate contour lines from a grid of data.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Stefano Borghi <@stebogit>\",\n    \"Matt Fedderly <@mfedderly>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"isolines\",\n    \"contours\",\n    \"elevation\",\n    \"topography\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/envelope\": \"workspace:*\",\n    \"@turf/point-grid\": \"workspace:*\",\n    \"@turf/random\": \"workspace:*\",\n    \"@turf/rhumb-destination\": \"workspace:*\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-isolines/test/in/bigMatrix.json",
    "content": "{\n  \"origin\": [6.5, 46],\n  \"cellSize\": 10,\n  \"breaks\": [0.24, 0.5, 1.5, 2.5, 100],\n  \"zProperty\": \"pressure\",\n  \"commonProperties\": {\n    \"stroke-width\": 4,\n    \"fill-opacity\": 0.4\n  },\n  \"breaksProperties\": [\n    {\n      \"stroke\": \"grey\",\n      \"fill\": \"grey\"\n    },\n    {\n      \"stroke\": \"blue\",\n      \"fill\": \"blue\"\n    },\n    {\n      \"stroke\": \"green\",\n      \"fill\": \"green\"\n    },\n    {\n      \"stroke\": \"yellow\",\n      \"fill\": \"yellow\"\n    },\n    {\n      \"stroke\": \"red\",\n      \"fill\": \"red\"\n    }\n  ],\n  \"matrix\": [\n    [\n      0.754816323768, 0.0192104697805, 0.0755640895933, 0.162215587333, 0.267950411633,\n      0.380900771041, 0.491544382473, 0.593906626031, 0.685266592708, 0.765202340943,\n      0.834615850466, 0.895008654071, 0.948034954329, 0.995264760092, 1.03807922487,\n      1.07763915535, 1.1148893148, 1.15057748954, 1.18527770736, 1.21941299466,\n      1.25327620796, 1.28704892645, 1.32081889084, 1.35459648117, 1.38833052607,\n      1.42192349543, 1.45524594313, 1.4881499762, 1.52048153551, 1.55209136178,\n      1.58284465416, 1.61262956931, 1.64136481734, 1.66900665389, 1.69555551758,\n      1.72106240417, 1.74563480623, 1.76944170768, 1.79271677157, 1.815758593,\n      1.83892683251, 1.86263330886, 1.88732776844, 1.91347899987, 1.94155302698,\n      1.97199098527, 2.00518965296, 2.04148728682, 2.08115644818, 2.12440417382,\n      2.17137854124, 2.22217975027, 2.27687346733, 2.33550432796, 2.39810799098,\n      2.46472076518, 2.53538640645, 2.61016010681, 2.68910994092, 2.77231611964,\n      2.85986836779, 2.95186163737, 3.04839022734, 3.14954023961, 3.2553801885,\n      3.36594952824, 3.48124489906, 3.60120404326, 3.72568762201, 3.85445956725,\n      3.98716710137, 4.12332208928, 4.26228586482, 4.40325998761, 4.54528542294,\n      4.68725230409, 4.82792168542, 4.96595955259, 5.09998193596, 5.22860847339,\n      5.35052044051, 5.46451836937, 5.56957411184, 5.66487266244, 5.74984018447,\n      5.82415629486, 5.88775047397, 5.94078416729, 5.98362147499, 6.01679211687,\n      6.04095057545, 6.05683502667, 6.06522901002, 6.06692794183, 6.06271169478,\n      6.05332367777\n    ],\n    [\n      0.0190236070377, 0.0385999271506, 0.0947957400738, 0.180524048614, 0.284354871517,\n      0.39438504785, 0.501273442842, 0.599359856829, 0.686256401169, 0.761815524864,\n      0.827128435869, 0.883807556173, 0.933559660473, 0.977969770145, 1.01841280298,\n      1.05603292629, 1.09175397163, 1.12630111673, 1.16022445572, 1.19392090141,\n      1.22765378699, 1.26157074476, 1.2957206964, 1.33007057339, 1.364522001,\n      1.39892781263, 1.43310801472, 1.46686473476, 1.49999574718, 1.53230634678,\n      1.56361957456, 1.59378504098, 1.62268678373, 1.65025069457, 1.67645201114,\n      1.70132316613, 1.72496190488, 1.74753904943, 1.7693046771, 1.79059094408,\n      1.81180952501, 1.83344188445, 1.85602149532, 1.88010863445, 1.90626020702,\n      1.93499863326, 1.96678456493, 2.00199770408, 2.04092833787, 2.08377990849,\n      2.13068076686, 2.18170184982, 2.23687663917, 2.29622026442, 2.35974561448,\n      2.4274754117, 2.49945008841, 2.57573187067, 2.6564057268, 2.74157785488,\n      2.83137224858, 2.92592566526, 3.0253810736, 3.1298794166, 3.2395493235,\n      3.35449427841, 3.47477674743, 3.60039892071, 3.73128007393, 3.86723110113,\n      4.00792748809, 4.15288280778, 4.30142560185, 4.45268310435, 4.60557548418,\n      4.75882397008, 4.91097527253, 5.06044313902, 5.20556581785, 5.34467595263,\n      5.47617737915, 5.59862186856, 5.71077839461, 5.81168815837, 5.90070030622,\n      5.97748571974, 6.04202897785, 6.09460109447, 6.13571750575, 6.16608678652,\n      6.18655568627, 6.19805544231, 6.20155320662, 6.19801109809, 6.18835410471,\n      6.17344697778\n    ],\n    [\n      0.0740492769371, 0.093829427076, 0.14735600539, 0.227811443267, 0.32446389556,\n      0.426278918138, 0.524706373396, 0.614664625462, 0.694112379507, 0.763061806146,\n      0.82263908342, 0.874420721412, 0.920044959285, 0.961019544951, 0.998646535999,\n      1.03400747738, 1.06797487086, 1.10123197939, 1.13429296376, 1.1675208765,\n      1.2011437201, 1.23526973067, 1.26990302393, 1.30496024613, 1.3402882535,\n      1.37568232319, 1.41090409367, 1.44569837545, 1.4798081343, 1.5129872635,\n      1.54501115006, 1.57568542778, 1.60485362843, 1.63240463143, 1.6582808148,\n      1.68248757152, 1.70510433536, 1.72629645476, 1.7463262401, 1.76556048576,\n      1.78447107479, 1.80362534186, 1.82366407028, 1.84526740536, 1.86911212982,\n      1.89582668208, 1.92595179694, 1.95991388127, 1.99801528304, 2.04044152356,\n      2.08728185593, 2.13855738396, 2.1942507913, 2.25433303816, 2.31878433954,\n      2.38760858032, 2.46084162166, 2.53855462467, 2.62085368555, 2.70787692614,\n      2.79978987086, 2.89677956499, 2.99904749995, 3.10680103837, 3.22024270479,\n      3.33955646982, 3.46489006787, 3.59633251962, 3.73388644168, 3.87743544859,\n      4.02670796628, 4.18123999189, 4.3403405859, 4.5030649331, 4.66820037683,\n      4.83427063856, 4.9995622783, 5.16217528189, 5.32009665708, 5.47129250424,\n      5.61381082343, 5.74588501518, 5.86602720876, 5.97310149718, 6.06636976417,\n      6.14550655243, 6.21058357753, 6.26202821892, 6.30056296543, 6.32713402293,\n      6.34283712723, 6.34884735303, 6.34635782586, 6.33653019051, 6.32045782881,\n      6.29914136679\n    ],\n    [\n      0.157034978462, 0.17658032134, 0.22517427108, 0.296713566809, 0.381907932596,\n      0.471303323761, 0.557602347409, 0.636484575319, 0.706242706617, 0.766940910261,\n      0.819607348834, 0.865660049868, 0.906569598921, 0.94369246162, 0.978206056181,\n      1.01109554936, 1.04316205088, 1.07503646033, 1.10719248999, 1.13995761741,\n      1.17352317516, 1.20795543948, 1.24320917345, 1.27914418601, 1.31554451703,\n      1.35213913284, 1.38862265798, 1.42467468981, 1.45997657344, 1.49422504368,\n      1.52714275156, 1.55848628769, 1.58805281336, 1.61568674362, 1.64128802301,\n      1.66482330389, 1.68634068452, 1.70598751476, 1.72402916098, 1.74086476564,\n      1.75703446036, 1.77321198941, 1.79017812237, 1.80877400608, 1.8298391731,\n      1.85414451071, 1.88233363434, 1.91488493308, 1.95210109621, 1.99412537408,\n      2.04097732202, 2.09259763188, 2.14889225697, 2.20976911286, 2.27516436332,\n      2.34505830981, 2.41948265417, 2.4985215146, 2.58230844199, 2.6710211947,\n      2.7648754362, 2.86411793201, 2.96901926519, 3.07986556009, 3.19694821238,\n      3.3205502181, 3.45092746024, 3.58828336202, 3.73273576252, 3.88427579133,\n      4.04271991984, 4.20765815352, 4.37840328595, 4.55394792754, 4.7329372169,\n      4.91366525692, 5.0941019971, 5.27195433642, 5.44476082914, 5.61001415125,\n      5.76530041222, 5.90844062421, 6.03761817431, 6.15147751541, 6.24918334707,\n      6.33043545858, 6.39544085449, 6.44485040587, 6.4796710187, 6.50116571521,\n      6.51075323742, 6.5099164165, 6.50012541687, 6.48277880907, 6.45916277822,\n      6.43042688849\n    ],\n    [\n      0.255539967582, 0.274105267923, 0.316142519243, 0.37652813048, 0.447790344706,\n      0.522401720013, 0.594540601807, 0.660734463541, 0.719597973044, 0.771184232905,\n      0.81634481069, 0.856264948132, 0.892186153575, 0.925267613017, 0.956531235552,\n      0.986848370649, 1.01694214946, 1.0473921757, 1.0786369509, 1.11097447506,\n      1.1445637063, 1.17942978874, 1.21547494117, 1.25249536236, 1.29020304219,\n      1.32825035918, 1.36625495163, 1.40382253727, 1.44056597093, 1.47611968144,\n      1.51014954935, 1.54235915468, 1.57249406068, 1.60034634509, 1.62576186709,\n      1.64865263751, 1.66901595208, 1.68696043682, 1.70273671035, 1.71676715126,\n      1.72966597268, 1.74223883604, 1.75545241148, 1.77037001303, 1.78805932439,\n      1.80948915725, 1.83543897712, 1.8664432107, 1.90278185216, 1.94451434684,\n      1.99154200092, 2.04367980399, 2.10072152925, 2.16248887872, 2.22886236619,\n      2.29979627736, 2.37532202978, 2.45554432532, 2.54063362358, 2.63081737419,\n      2.72637146094, 2.82761249247, 2.93489085883, 3.04858378088, 3.16908688369,\n      3.29680217167, 3.43211979799, 3.57539088492, 3.72688906127, 3.88675949882,\n      4.0549561148, 4.23117017895, 4.41475656177, 4.60466682759, 4.79940066983,\n      4.99698804347, 5.19501304043, 5.39068663082, 5.58096897108, 5.76273391892,\n      5.93296025754, 6.0889278582, 6.22839437016, 6.34973001552, 6.45199448581,\n      6.53494936058, 6.59900965298, 6.64514668694, 6.67475981172, 6.68953583034,\n      6.69131292358, 6.68196150139, 6.66328923844, 6.63697275763, 6.60451474656,\n      6.56722297228\n    ],\n    [\n      0.356595980746, 0.373250225721, 0.407870901979, 0.456380389165, 0.513129362205,\n      0.572497876591, 0.630126416182, 0.683384527264, 0.731201872661, 0.77360647909,\n      0.811252273638, 0.845067066976, 0.876039513977, 0.905112797542, 0.933142751588,\n      0.960885914704, 0.988995407408, 1.01801396216, 1.04836199261, 1.08032380146,\n      1.11403707659, 1.14949033478, 1.18653088455, 1.22488324232, 1.26417564807,\n      1.30397093367, 1.34379764677, 1.38317786018, 1.42164918526, 1.45877983592,\n      1.49417691891, 1.52748932496, 1.55840761583, 1.58666413066, 1.6120371199,\n      1.63436290022, 1.65355949033, 1.66966346133, 1.68287831636, 1.69362743015,\n      1.70259814703, 1.71075826192, 1.71932550808, 1.72967870743, 1.74321683291,\n      1.76119419184, 1.78457519647, 1.81395002548, 1.84953139295, 1.89122338459,\n      1.9387315827, 1.99167867928, 2.04969929224, 2.11250275563, 2.17990507835,\n      2.25183770558, 2.32834195952, 2.40955645941, 2.49570247922, 2.58707018102,\n      2.68400724157, 2.78691041866, 2.89621981735, 3.01241479734, 3.13600952146,\n      3.26754512992, 3.40757461808, 3.5566359859, 3.71520944848, 3.88365574908,\n      4.06213506682, 4.25050962725, 4.44823761648, 4.65427078667, 4.86697230959,\n      5.08407376457, 5.30268930745, 5.51940003923, 5.73041223207, 5.93178053132,\n      6.11967402461, 6.29065246494, 6.44191512006, 6.57148759078, 6.6783222797,\n      6.76230354021, 6.82416493125, 6.86533934692, 6.88777023642, 6.8937128895,\n      6.88555002063, 6.86563801002, 6.83619168557, 6.7992083594, 6.75642691151,\n      6.70931512351\n    ],\n    [\n      0.449936181049, 0.463751877347, 0.490741367556, 0.527796135674, 0.570852467511,\n      0.615941322666, 0.659989091157, 0.70112933377, 0.738594371018, 0.772401395023,\n      0.803022375779, 0.831135227847, 0.857475874242, 0.882769839313, 0.907709886876,\n      0.932949858718, 0.959095050922, 0.986680922234, 1.01614159504, 1.04777570866,\n      1.0817190819, 1.11793184984, 1.15620367431, 1.1961760554, 1.23737717384,\n      1.27926284486, 1.3212570846, 1.36278700383, 1.40330862187, 1.44232220683,\n      1.47937758131, 1.51407137951, 1.54603954211, 1.5749494892, 1.60049746343,\n      1.62241735389, 1.64050744538, 1.65468012112, 1.66503536402, 1.67195084807,\n      1.67616957488, 1.67885331198, 1.68156351441, 1.68614059594, 1.69448329786,\n      1.70827518672, 1.72874103521, 1.75651458327, 1.7916547097, 1.83378515095,\n      1.88229159969, 1.93650806584, 1.99585119825, 2.05989332217, 2.1283858822,\n      2.20125180287, 2.27856298338, 2.3605137227, 2.44739597783, 2.53957918278,\n      2.63749568849, 2.74163204725, 2.85252572954, 2.97076601209, 3.0969965492,\n      3.23191559251, 3.37626822674, 3.53082378709, 3.69633137264, 3.8734475946,\n      4.06263374963, 4.26402454545, 4.47727706315, 4.7014161604, 4.93469980904,\n      5.17453304288, 5.41745987812, 5.65925657399, 5.89513606258, 6.12005372915,\n      6.32908293554, 6.51781045593, 6.68269308109, 6.8213207171, 6.93254825244,\n      7.01648399375, 7.07434941943, 7.10824602454, 7.12087532057, 7.11525679987,\n      7.09447866827, 7.06150203909, 7.01902553045, 6.96940673673, 6.91463087409,\n      6.85631458234\n    ],\n    [\n      0.529333176276, 0.539533681044, 0.559091988372, 0.585724792152, 0.616631682569,\n      0.649152934089, 0.681257573747, 0.711726174088, 0.740068875987, 0.766310206274,\n      0.790765009828, 0.813875870608, 0.836128936884, 0.858031104983, 0.880117505257,\n      0.902958947093, 0.927148914462, 0.953263713228, 0.981802594559, 1.01312319252,\n      1.04738944341, 1.08454483166, 1.12431594375, 1.16624326707, 1.20973055029,\n      1.25410185187, 1.2986561937, 1.34271231556, 1.38563919818, 1.42687097662,\n      1.46590724542, 1.50230156652, 1.53564245308, 1.56553253133, 1.5915732424,\n      1.61336436073, 1.63052929442, 1.64277727933, 1.65000980263, 1.65246776142,\n      1.6508957007, 1.64667217308, 1.64183229748, 1.63891206114, 1.64059562363,\n      1.64924222232, 1.66645672845, 1.69287408334, 1.72822887128, 1.77164277506,\n      1.82198276261, 1.87815928742, 1.93930554193, 2.00484481547, 2.07448389782,\n      2.14817120363, 2.2260458627, 2.30839110539, 2.39559681031, 2.48813210144,\n      2.58652770329, 2.69136770495, 2.80329030323, 2.9229963795, 3.0512632003,\n      3.18895820861, 3.33704516736, 3.49657250068, 3.66863244931, 3.85428051837,\n      4.05440827967, 4.26956909133, 4.49976553507, 4.74421879982, 5.00115257448,\n      5.26763455505, 5.53952318663, 5.81156117343, 6.077637996, 6.33121268897,\n      6.56585178198, 6.77580548543, 6.95652843243, 7.10505681124, 7.22018198483,\n      7.30240410538, 7.35369455012, 7.37712968104, 7.37647217381, 7.35576965261,\n      7.31901999177, 7.26992753385, 7.21175245059, 7.14724077233, 7.0786157998,\n      7.00761089131\n    ],\n    [\n      0.592269610438, 0.598285011829, 0.610803101305, 0.628212377784, 0.648673111774,\n      0.670516066207, 0.692519187426, 0.713990477114, 0.734685663434, 0.754646032321,\n      0.774042687401, 0.793081184085, 0.811980586141, 0.831008579849, 0.85053585689,\n      0.871070551259, 0.893245482376, 0.917751871274, 0.945234859361, 0.976180362592,\n      1.01082471349, 1.04910893406, 1.09068396253, 1.13495876991, 1.18117478771,\n      1.22848832576, 1.27604576059, 1.32304147959, 1.36875376179, 1.41255789688,\n      1.45391866271, 1.49236607067, 1.52745958302, 1.55874746038, 1.58573016155,\n      1.60784023018, 1.62445567891, 1.63496800233, 1.63892580372, 1.63626387955,\n      1.62759714812, 1.61450524401, 1.59967071709, 1.58670682605, 1.57958670088,\n      1.58178826916, 1.59549352099, 1.62122131307, 1.65803888687, 1.70416706224,\n      1.75763960688, 1.81676789297, 1.88034866398, 1.94768026494, 2.01848341882,\n      2.09279747653, 2.17088753798, 2.25317309703, 2.3401773028, 2.43249304099,\n      2.53076306184, 2.63567321285, 2.74795887945, 2.86842434548, 2.99797280252,\n      3.13764129975, 3.2886305001, 3.45231463971, 3.63021401722, 3.82391223149,\n      4.03490429773, 4.26436995952, 4.51287886287, 4.78005080037, 5.0642143933,\n      5.36212800719, 5.66883992665, 5.97776130608, 6.2809985657, 6.56994274784,\n      6.83605202046, 7.07170715235, 7.27098770075, 7.43022336042, 7.54822279542,\n      7.62615788281, 7.66715947393, 7.67573570533, 7.65714093231, 7.61680428849,\n      7.55988611442, 7.49098608811, 7.41399233514, 7.33204156654, 7.24755497775,\n      7.16231835297\n    ],\n    [\n      0.638839378139, 0.640286548119, 0.646182840122, 0.655455261978, 0.666987338569,\n      0.679854547074, 0.693463644757, 0.707558545629, 0.722116588106, 0.737198925984,\n      0.752826180429, 0.768930943744, 0.785403200854, 0.802205452744, 0.819504538294,\n      0.837758110962, 0.857709642033, 0.880281112852, 0.90639290469, 0.936767889968,\n      0.971779051589, 1.01137833469, 1.05511255002, 1.10220605365, 1.15167816811,\n      1.20246481651, 1.25352249222, 1.30390263451, 1.35279251566, 1.39952399627,\n      1.44355432105, 1.48442430021, 1.52169970687, 1.55490259965, 1.58344176694,\n      1.60655682116, 1.62329946137, 1.63258731782, 1.63337604588, 1.62499247399,\n      1.60763530717, 1.58295694094, 1.55449037601, 1.52755397001, 1.50833362158,\n      1.50226587969, 1.51244671176, 1.53897388219, 1.57953869864, 1.6307378713,\n      1.68929275262, 1.75272396997, 1.81950162493, 1.88890336985, 1.96078863387,\n      2.03539776446, 2.11320716089, 2.19483451955, 2.28097896646, 2.37238389531,\n      2.46981652762, 2.57406338711, 2.68594360685, 2.80634202734, 2.93626151532,\n      3.07688899021, 3.22966266716, 3.39632017693, 3.57890082798, 3.77967318104,\n      4.00096309106, 4.24486724187, 4.51285233028, 4.80526199251, 5.1207850292,\n      5.45597698721, 5.8049594749, 6.1594274253, 6.50905840996, 6.84233963482,\n      7.14772395075, 7.41492534322, 7.63610194981, 7.80668024009, 7.92565607553,\n      7.99534347955, 8.0206807829, 8.00829521403, 7.96554446384, 7.89970572773,\n      7.81740185786, 7.72427633432, 7.62487641671, 7.52268216241, 7.42022073443,\n      7.31921913868\n    ],\n    [\n      0.670619780898, 0.667246283019, 0.666866435338, 0.668840732047, 0.672609594761,\n      0.677830655523, 0.684430839522, 0.692549735602, 0.702393647769, 0.714056911148,\n      0.727386452935, 0.741958257104, 0.757196700246, 0.77260914063, 0.788052578074,\n      0.8039231011, 0.821177598491, 0.841159156637, 0.865279730545, 0.894674281757,\n      0.929944052385, 0.971054898171, 1.01738740714, 1.06788827587, 1.12126065841,\n      1.17614432166, 1.23125726156, 1.28548795652, 1.33793850055, 1.38792439532,\n      1.43493857881, 1.47858684675, 1.51850049914, 1.5542312582, 1.58513510573,\n      1.61025812118, 1.62825158121, 1.6373677101, 1.63561943671, 1.62121324296,\n      1.59334614254, 1.55332828553, 1.50568374495, 1.45845516833, 1.42180283272,\n      1.40481040999, 1.41208730868, 1.44252245908, 1.4909279619, 1.55097337017,\n      1.61740333183, 1.68684181112, 1.75761502731, 1.82923535587, 1.90192394609,\n      1.97628527666, 2.05311736047, 2.13330872121, 2.21778143901, 2.30745710814,\n      2.40323761611, 2.5060023455, 2.61662790586, 2.73603678176, 2.86527806224,\n      3.0056367226, 3.15875746442, 3.32675580739, 3.51227671071, 3.71845521927,\n      3.94873793111, 4.20653608171, 4.49469666192, 4.81480162136, 5.16635056746,\n      5.54595408705, 5.94673879872, 6.35819618703, 6.76666034148, 7.15647318328,\n      7.51171817155, 7.81822246392, 8.06540406213, 8.24753572274, 8.36413892828,\n      8.41946959496, 8.42131227293, 8.37945519029, 8.30422521712, 8.20534786428,\n      8.09123744974, 7.96868763077, 7.84285821399, 7.7174388442, 7.59489162903,\n      7.47670861233\n    ],\n    [\n      0.689844001429, 0.681469237036, 0.675033941998, 0.670250471822, 0.667006981505,\n      0.665453234195, 0.666001912099, 0.669218879009, 0.675610310221, 0.685361108706,\n      0.698124634476, 0.712980211442, 0.728633145724, 0.74383503197, 0.757893889652,\n      0.771075784116, 0.784706224437, 0.800882869213, 0.821891570421, 0.849570449559,\n      0.88487297669, 0.927744598317, 0.977267829384, 1.03194972797, 1.09003251474,\n      1.14975514849, 1.20953796234, 1.26808891179, 1.3244415665, 1.37793826445,\n      1.42817095278, 1.47488902349, 1.51787909076, 1.55681760264, 1.59109570349,\n      1.6196206236, 1.64061520094, 1.65147556471, 1.64881429756, 1.62890716658,\n      1.58882838025, 1.52846457461, 1.45308353462, 1.37500624234, 1.31183783655,\n      1.2799234645, 1.28649344376, 1.32715373843, 1.390581662, 1.46526549808,\n      1.54327110388, 1.62059010963, 1.69596098116, 1.7696249915, 1.84250446606,\n      1.91577469588, 1.9906761414, 2.06844070703, 2.15025910033, 2.23725801233,\n      2.33048195717, 2.43088845693, 2.53937050254, 2.65681989889, 2.7842411319,\n      2.92291744476, 3.07461640215, 3.24180023677, 3.42778241369, 3.63675904156,\n      3.87365097514, 4.143710567, 4.45185696271, 4.80171232165, 5.19436559275,\n      5.62702490554, 6.09188716501, 6.57564435845, 7.05998364026, 7.52322988394,\n      7.94298096737, 8.2992650359, 8.57750069488, 8.77049439556, 8.87895149092,\n      8.91044906357, 8.87730673187, 8.79406327315, 8.67522782842, 8.53371011766,\n      8.38001797091, 8.22208255874, 8.0654801109, 7.91383551742, 7.7692608383,\n      7.63275253031\n    ],\n    [\n      0.698911239617, 0.685384628493, 0.672972021101, 0.661666749167, 0.651729129582,\n      0.643761220664, 0.638694110257, 0.637640356994, 0.641588292352, 0.650979138858,\n      0.665308010839, 0.682966768732, 0.701510665566, 0.7183632843, 0.731769250012,\n      0.741649420542, 0.749939845058, 0.760121267024, 0.776073362026, 0.800833414471,\n      0.835847524032, 0.880896453506, 0.934490713253, 0.994422410906, 1.05826074572,\n      1.12371060034, 1.18883220762, 1.25214647772, 1.31265328792, 1.36978640507,\n      1.42332353198, 1.47326319821, 1.51967176019, 1.56249457189, 1.60131750087,\n      1.63506265726, 1.66161469025, 1.67741952384, 1.677205365, 1.6541769028,\n      1.60131504478, 1.51459875352, 1.39846099366, 1.27142763925, 1.1654925024,\n      1.11249536491, 1.1243776056, 1.18784013498, 1.27837785628, 1.37586280781,\n      1.46964555021, 1.55633160273, 1.63626592677, 1.71119408393, 1.7831573269,\n      1.85410482228, 1.92581735181, 1.9999248604, 2.07792472289, 2.16117504764,\n      2.25087137995, 2.34803007635, 2.45350472268, 2.56805890753, 2.69251402908,\n      2.82798426672, 2.97619450848, 3.13984196014, 3.32291474994, 3.53085208281,\n      3.77045026951, 4.04946307235, 4.37583848263, 4.75647016571, 5.19536744557,\n      5.69140816429, 6.23622975572, 6.81303869558, 7.39701066488, 7.95759490264,\n      8.46255770541, 8.88305369761, 9.19850452889, 9.39987243797, 9.49031746107,\n      9.48315816331, 9.39803688037, 9.25667726007, 9.0794329878, 8.883215973,\n      8.68076978594, 8.48088779986, 8.2891026614, 8.10848602653, 7.94036222891,\n      7.78487128366\n    ],\n    [\n      0.700152686016, 0.681339281849, 0.662898066351, 0.645025587969, 0.628281036992,\n      0.613693261602, 0.602787673223, 0.597445686136, 0.599500090778, 0.610042854547,\n      0.628624444016, 0.652760729171, 0.678178464589, 0.699919845819, 0.714064735137,\n      0.719573280007, 0.719361635616, 0.719582445355, 0.727165907757, 0.747196978031,\n      0.781664159849, 0.829741253192, 0.888816222724, 0.955524465576, 1.02648142634,\n      1.09871371331, 1.16987500327, 1.23831883833, 1.30307461545, 1.36375901097,\n      1.42044693481, 1.47351666488, 1.52347087271, 1.57071930219, 1.61529089307,\n      1.65642544945, 1.69198611505, 1.71765979286, 1.72603411267, 1.70596677888,\n      1.64332636248, 1.52516254512, 1.34989160018, 1.14292554791, 0.964176721708,\n      0.880648423374, 0.912794123925, 1.02291700282, 1.15892361449, 1.28867238892,\n      1.40139218835, 1.49740358224, 1.5805793841, 1.65507068769, 1.72437908089,\n      1.79132827242, 1.85826367786, 1.92723045085, 2.00006085107, 2.07837591029,\n      2.16353848035, 2.25660566517, 2.35832449389, 2.46920372927, 2.58968882004,\n      2.72046945922, 2.86294128431, 3.01979195783, 3.19558265126, 3.39712109067,\n      3.63347906622, 3.91565677764, 4.25587447155, 4.66615669472, 5.15571041933,\n      5.72714091334, 6.37252610543, 7.07087562963, 7.78818583781, 8.48063182583,\n      9.10077236047, 9.60580988309, 9.96587822771, 10.1696575989, 10.2252243429,\n      10.1559735707, 9.99354452277, 9.77056988094, 9.51542450939, 9.24973082609,\n      8.98816738032, 8.739599256, 8.5086221633, 8.29696438046, 8.10454107572,\n      7.93017294773\n    ],\n    [\n      0.695754212266, 0.671553467369, 0.646952537722, 0.622247700904, 0.598187426976,\n      0.57615865488, 0.55833809906, 0.547674312981, 0.547462375096, 0.560278482436,\n      0.586392426482, 0.622436890339, 0.661361523535, 0.693997416727, 0.711913219471,\n      0.711333693667, 0.696617365711, 0.679505933407, 0.673167254017, 0.686100087133,\n      0.720354305175, 0.773304622423, 0.840185968339, 0.915856121088, 0.995681226747,\n      1.07590682256, 1.15378441418, 1.22756689984, 1.29641643792, 1.36025554314,\n      1.41959038417, 1.47532611995, 1.52857670728, 1.58044831529, 1.63174564079,\n      1.68251015751, 1.73124696771, 1.77365002291, 1.8006744449, 1.79615555945,\n      1.73528944997, 1.58775847091, 1.33317390341, 0.997341853556, 0.691277043579,\n      0.563883348028, 0.649436542372, 0.845125267733, 1.0475223145, 1.21522380795,\n      1.34561147195, 1.44770631695, 1.53084936498, 1.60208075244, 1.6663370217,\n      1.72718445007, 1.78743568138, 1.84952237722, 1.9156403132, 1.98772651386,\n      2.06734948901, 2.15559898563, 2.25304286067, 2.35978650021, 2.47565728226,\n      2.60056453987, 2.73511977715, 2.88154620311, 3.04469403136, 3.23275076058,\n      3.45736258676, 3.73341667065, 4.07881669205, 4.51347389716, 5.05575493424,\n      5.71590076871, 6.48862187905, 7.34810040513, 8.24735797175, 9.12255958181,\n      9.90233767548, 10.5213098322, 10.934634651, 11.1282178605, 11.119877897,\n      10.9510394315, 10.6732981136, 10.3358341432, 9.97762693991, 9.62510251632,\n      9.29357008943, 8.99024488653, 8.71723444383, 8.47375467446, 8.25750889258,\n      8.06546345994\n    ],\n    [\n      0.687755099654, 0.658154310766, 0.627279037648, 0.59538476881, 0.563226022091,\n      0.532355229411, 0.505506571509, 0.486932677907, 0.482266266506, 0.497149812219,\n      0.534234504109, 0.58987872672, 0.653194191266, 0.708060801177, 0.736828419531,\n      0.727764939194, 0.686588042906, 0.637974759568, 0.608823100754, 0.612646624152,\n      0.649035770523, 0.71071262648, 0.78912884817, 0.876753231503, 0.967567701703,\n      1.05706915423, 1.14220315205, 1.22125445139, 1.29367069862, 1.35983700561,\n      1.42084142572, 1.4782633395, 1.53399294548, 1.59006016258, 1.64841319034,\n      1.71052661332, 1.77661085157, 1.84401180747, 1.9041594862, 1.93743129131,\n      1.90652799943, 1.75350374126, 1.41611376775, 0.895429562691, 0.380112003129,\n      0.194657570252, 0.385961296704, 0.703413347947, 0.975870286532, 1.17216342583,\n      1.31001376955, 1.41043726699, 1.48816314699, 1.55234367169, 1.60866702713,\n      1.6609954152, 1.71238115146, 1.76558771517, 1.82323585894, 1.88768663559,\n      1.96079716697, 2.04369885844, 2.1367043133, 2.23936042301, 2.35061840006,\n      2.46917223985, 2.59418338622, 2.72662655495, 2.8710627079, 3.03692031721,\n      3.23847458346, 3.49450842012, 3.82962119794, 4.27562521291, 4.86724190003,\n      5.62978278539, 6.56475849427, 7.64095640556, 8.79313552117, 9.92746689059,\n      10.9345668125, 11.7113356156, 12.1875063334, 12.3455988224, 12.2228290226,\n      11.8936497826, 11.4433473199, 10.9459394518, 10.4533637215, 9.99515741463,\n      9.58391472328, 9.22192248498, 8.90635309374, 8.63235926498, 8.39453324608,\n      8.18746635305\n    ],\n    [\n      0.678064464792, 0.643219976134, 0.60611778945, 0.566807087546, 0.525783511101,\n      0.484378761144, 0.445439894228, 0.414341613181, 0.399880357563, 0.413355794684,\n      0.463418800796, 0.548118166652, 0.651799820684, 0.748660575119, 0.804542752594,\n      0.785206057338, 0.693103676139, 0.585753460633, 0.52188254088, 0.518731007303,\n      0.564685305795, 0.64226661358, 0.737590390637, 0.840830972883, 0.944919876514,\n      1.04485018435, 1.13745702067, 1.22125624444, 1.29618693858, 1.36328805238,\n      1.42438819089, 1.48186618216, 1.5385016096, 1.59739994772, 1.66194267578,\n      1.73565495148, 1.82174876966, 1.92177837074, 2.03215598009, 2.13617574806,\n      2.18898962599, 2.09947814926, 1.73702377388, 1.03603103383, 0.265130419595,\n      0.00874508689224, 0.299546829172, 0.692155799556, 0.983682291916, 1.17368856937,\n      1.29869048366, 1.38608886771, 1.45188727307, 1.50494219719, 1.55037182948,\n      1.59164475119, 1.63175654896, 1.67377868311, 1.72091373382, 1.776169943,\n      1.84185424122, 1.91915879256, 2.00803732127, 2.10733042726, 2.21492681416,\n      2.32790849986, 2.44312434379, 2.55900253841, 2.67873033053, 2.81276686675,\n      2.97778619728, 3.19455042506, 3.49308097976, 3.9229474104, 4.54938453179,\n      5.42696444208, 6.57044421032, 7.94182737232, 9.45076340326, 10.9600627909,\n      12.3001795833, 13.3028660075, 13.8517223231, 13.9247189883, 13.598367536,\n      13.0093094922, 12.3003718711, 11.5817568151, 10.9184714018, 10.3372141752,\n      9.84070438454, 9.42065610513, 9.06585636888, 8.76566714982, 8.5108166551,\n      8.29318241315\n    ],\n    [\n      0.668456079739, 0.628780577359, 0.585832736487, 0.539315632501, 0.489187274298,\n      0.436024397464, 0.381875893301, 0.332101069688, 0.298446670055, 0.301043058102,\n      0.361355905111, 0.482976584929, 0.642987693573, 0.805043490729, 0.915898213884,\n      0.890594999167, 0.70399047038, 0.493994421664, 0.389663327378, 0.39580898875,\n      0.467865031049, 0.571883627875, 0.690182713637, 0.81261259525, 0.931951241729,\n      1.04300949715, 1.14271852284, 1.23006681438, 1.30574721053, 1.37168216163,\n      1.43060040379, 1.48576018874, 1.54084568001, 1.60002726622, 1.66816480958,\n      1.75112038939, 1.85607904996, 1.99149505696, 2.16531127078, 2.37722886327,\n      2.5947622781, 2.70288002878, 2.47372921988, 1.73831484727, 0.819372521696,\n      0.430897543652, 0.597763517866, 0.875214892753, 1.08243851494, 1.21747679211,\n      1.30717688937, 1.37087482738, 1.41927290444, 1.45792439301, 1.4899405052,\n      1.51770264091, 1.54389454397, 1.57198114775, 1.60609683778, 1.65034446046,\n      1.70777836139, 1.77963479269, 1.86526884942, 1.96264100161, 2.06862961011,\n      2.17868564903, 2.28653145284, 2.38600746434, 2.47679398959, 2.57036612838,\n      2.68595924574, 2.83962058699, 3.05762042537, 3.41652854313, 4.04327367061,\n      5.0480676634, 6.46386310102, 8.2398641878, 10.2541385524, 12.3132518691,\n      14.1552013291, 15.4951533942, 16.1259871652, 16.0175252341, 15.3282012224,\n      14.3152675927, 13.2200658025, 12.2018449802, 11.3313850997, 10.6176005924,\n      10.0396730175, 9.56999925712, 9.18489817688, 8.86668377132, 8.60210193748,\n      8.38040772351\n    ],\n    [\n      0.660521915487, 0.6167400358, 0.568796669543, 0.516016336732, 0.457692052611,\n      0.393256967111, 0.322955419763, 0.250045236578, 0.186643268878, 0.163151957394,\n      0.223754876832, 0.38181347839, 0.595298909187, 0.813267556083, 0.976135135066,\n      0.949038034921, 0.645500501257, 0.314864418919, 0.196954319745, 0.251670129049,\n      0.371576492732, 0.510261014803, 0.655112591222, 0.798890159434, 0.934576244217,\n      1.05664553005, 1.16217732296, 1.25090837022, 1.32463118437, 1.38643703451,\n      1.4401136635, 1.4898156608, 1.54001428951, 1.59570378179, 1.6628691105,\n      1.7492899544, 1.86586278745, 2.02872997136, 2.26225880055, 2.60016620724,\n      3.06690702942, 3.57279661698, 3.70032096387, 3.01029671017, 1.9630129893,\n      1.31790574298, 1.1441359835, 1.16597304881, 1.22479059408, 1.27833513091,\n      1.32186637431, 1.35726931783, 1.38606664396, 1.40880850817, 1.42575401146,\n      1.43774201184, 1.44699840181, 1.45762789006, 1.47537644726, 1.50632942421,\n      1.55485968385, 1.62207405515, 1.70602677007, 1.80338538881, 1.91052918773,\n      2.02236333309, 2.12961487059, 2.21886941222, 2.2817772315, 2.3308254988,\n      2.39132102077, 2.45803717717, 2.52135206532, 2.7035091766, 3.26861623428,\n      4.42422070147, 6.20502861652, 8.52838183922, 11.2448536673, 14.1082132308,\n      16.7250114934, 18.5955157351, 19.3186143607, 18.8429677237, 17.5042694638,\n      15.7998324569, 14.1363267941, 12.728408525, 11.6267281419, 10.7906240026,\n      10.1522699308, 9.65301233706, 9.25351427213, 8.92966015623, 8.66549127522,\n      8.44840763074\n    ],\n    [\n      0.655589256377, 0.608720050378, 0.557109539362, 0.499837691511, 0.435728200297,\n      0.363287402255, 0.280936734843, 0.188738249805, 0.0956885432131, 0.0389802441299,\n      0.0903381230992, 0.269552752598, 0.496737595929, 0.702830136198, 0.831571750615,\n      0.77328131832, 0.462807344156, 0.117947037733, 0.0239336677667, 0.144502508391,\n      0.307393236111, 0.473812900672, 0.643080617423, 0.808469548555, 0.960601571985,\n      1.09247815363, 1.20125311127, 1.28784304012, 1.35565857788, 1.40933746512,\n      1.45388564322, 1.49429569468, 1.53556594285, 1.58303774417, 1.64304399344,\n      1.72400394323, 1.83836792417, 2.00641288965, 2.26431700292, 2.68170107304,\n      3.38908556339, 4.49288198875, 5.24813583604, 4.27593060595, 2.84525264426,\n      1.96949428388, 1.55948202068, 1.39394924855, 1.33576970111, 1.32194165385,\n      1.32620954794, 1.33696018656, 1.34803531722, 1.35548167565, 1.35672751793,\n      1.35087091878, 1.33954677415, 1.32784007052, 1.32428087409, 1.33872281987,\n      1.37809698882, 1.44282517973, 1.52767232331, 1.62668524445, 1.73684505663,\n      1.85580588144, 1.97439843773, 2.07060132431, 2.11956689692, 2.13078422758,\n      2.14793161893, 2.11483951315, 1.90146472088, 1.72475264195, 2.16085384514,\n      3.54008980116, 5.80974284547, 8.82552876892, 12.4551392366, 16.4557513502,\n      20.2797624713, 23.0326397843, 23.8725850638, 22.6808081135, 20.1896249192,\n      17.3775529192, 14.9095525349, 13.0320599347, 11.7125352948, 10.8023154838,\n      10.150850544, 9.65628233554, 9.2650549589, 8.9514830255, 8.70038151748,\n      8.49872886038\n    ],\n    [\n      0.654632008943, 0.605880352187, 0.552236889513, 0.492799244673, 0.426412196872,\n      0.351578135362, 0.266559875453, 0.170719552936, 0.0714092288762, 0.00592789962876,\n      0.0513639513333, 0.212917791639, 0.394490493447, 0.540284224469, 0.607908479757,\n      0.542173989943, 0.339946647814, 0.120877953118, 0.051180460362, 0.148867152887,\n      0.297268425337, 0.473018813495, 0.664082475409, 0.851951596086, 1.02026835551,\n      1.15937987422, 1.26690873671, 1.34588126562, 1.4021758222, 1.44248507483,\n      1.47317569903, 1.49992399383, 1.52786442197, 1.56204822119, 1.60813742248,\n      1.67341470557, 1.76842304461, 1.91007316597, 2.12862724465, 2.48662546973,\n      3.13889395012, 4.46374656109, 5.8669748553, 4.35302774017, 2.84693092282,\n      2.07080027099, 1.67050079003, 1.46772264488, 1.36952561532, 1.32556615141,\n      1.30883905997, 1.3042864353, 1.3025716342, 1.29710960741, 1.28303744539,\n      1.25751226619, 1.22112075929, 1.18000947237, 1.14721367932, 1.13995971334,\n      1.1708091477, 1.23829313678, 1.32871321263, 1.4296623672, 1.5403278129,\n      1.66759929938, 1.810643645, 1.94375851289, 2.01739212955, 2.01900698087,\n      2.02154897653, 1.90067567314, 1.28837085045, 0.583546345076, 0.913645034754,\n      2.63542665335, 5.45742751134, 9.19394284198, 13.8407396186, 19.2997697396,\n      24.9301371464, 29.1819644492, 30.2246363218, 27.7208281913, 23.2829969618,\n      18.8088211093, 15.2969414628, 12.9308622201, 11.4822924075, 10.6052739814,\n      10.019919709, 9.57607104301, 9.21887348, 8.93287910674, 8.7093410427, 8.53616257786\n    ],\n    [\n      0.658220210397, 0.608806897529, 0.554763933182, 0.495453324849, 0.430212743483,\n      0.358482437517, 0.28027900491, 0.197879629324, 0.121306944839, 0.0802929736971,\n      0.116344588776, 0.21087484374, 0.313255205446, 0.406690864883, 0.454125780433,\n      0.414014230131, 0.293763575099, 0.166721649725, 0.111304106601, 0.162461714131,\n      0.30537866778, 0.505146522006, 0.728327695579, 0.943710179834, 1.12785614966,\n      1.26933921558, 1.36804345722, 1.43100079802, 1.46789883607, 1.48810330335,\n      1.49938581137, 1.50779559124, 1.51808789724, 1.53434249673, 1.56061038634,\n      1.60154478726, 1.66299001843, 1.752340338, 1.87775279349, 2.04236116589,\n      2.2178270203, 2.25003357333, 2.02379830113, 2.18393929652, 2.01723532144,\n      1.7387335724, 1.53005227066, 1.39964199327, 1.325143699, 1.28603026256,\n      1.26724338695, 1.25789079875, 1.24947136013, 1.23463027327, 1.20672374217,\n      1.16045255494, 1.09408036403, 1.01375102352, 0.93864870186, 0.900180498921,\n      0.924579538259, 1.00678540929, 1.11212571941, 1.21245900912, 1.31165335806,\n      1.43613619739, 1.60531318891, 1.80135494045, 1.95415009684, 1.99970692296,\n      1.99927883563, 1.83806072244, 1.05221534351, 0.102679277712, 0.42747893776,\n      2.36420317714, 5.49238073777, 9.68258350697, 15.140111391, 22.0684564989,\n      29.9548966954, 36.4637375282, 37.9198879166, 33.3933537985, 26.1755332916,\n      19.6186815944, 14.9884647425, 12.2493241387, 10.8661460758, 10.1940285515,\n      9.77416354598, 9.42449647961, 9.1215442946, 8.87868312416, 8.69881049581,\n      8.57001339857\n    ],\n    [\n      0.666539116827, 0.617539578616, 0.564440240984, 0.506957374084, 0.44504087569,\n      0.379194392431, 0.311182790022, 0.245500775943, 0.191654342597, 0.163452763616,\n      0.163176580458, 0.174824193115, 0.215098914736, 0.29594015882, 0.362531188622,\n      0.355959203537, 0.264265868051, 0.115744438953, 0.00756039497288, 0.0984085787236,\n      0.317787787206, 0.582220788094, 0.856988481506, 1.10700338111, 1.30435418696,\n      1.43860145461, 1.51564123841, 1.54979228983, 1.55641521074, 1.54808168393,\n      1.53369785296, 1.51908255478, 1.50794059049, 1.50273706313, 1.5052996928,\n      1.51705459562, 1.53864563143, 1.56809845249, 1.59486064219, 1.58130585171,\n      1.40738880806, 0.775889496913, 0.00504509227403, 0.74179796658, 1.19709108317,\n      1.27943396673, 1.27429957311, 1.2506312055, 1.22876197011, 1.21423487995,\n      1.20601598067, 1.20003985816, 1.19057351177, 1.17057361167, 1.13186999275,\n      1.06593398064, 0.966483624965, 0.836221121773, 0.699495466266, 0.611876303157,\n      0.63268387939, 0.753449623921, 0.890895244996, 0.982761988549, 1.0439310728,\n      1.13702371094, 1.31226442305, 1.56340984405, 1.8126854983, 1.95129200984,\n      1.984605201, 1.89594912703, 1.4631394669, 0.955048589513, 1.35043039224,\n      3.09544640949, 6.03022261361, 10.1532446891, 15.8071156431, 23.459590495,\n      32.9048169018, 41.4006273353, 43.3651218828, 36.9788998583, 27.3716706268,\n      19.2273010776, 13.8566554928, 11.0235539179, 9.95774435474, 9.66458137661,\n      9.47466326926, 9.22866966664, 8.98369336277, 8.79660581323, 8.67989054353,\n      8.61613068393\n    ],\n    [\n      0.679473998887, 0.631731533558, 0.580502829241, 0.525774509112, 0.467865511093,\n      0.407703105564, 0.347218303809, 0.289596043054, 0.238074466914, 0.190262529651,\n      0.132598532381, 0.0738056655197, 0.0875377885818, 0.195541649809, 0.307435076281,\n      0.344304848811, 0.286915791069, 0.159963106038, 0.0699557210265, 0.166919991938,\n      0.426449367744, 0.755482128082, 1.09101620513, 1.37820861596, 1.57927158985,\n      1.68762835428, 1.72166136502, 1.70807678459, 1.66999516162, 1.62310837758,\n      1.57646484568, 1.53454970178, 1.49912726454, 1.47045423407, 1.4478771203,\n      1.42984721928, 1.41320228567, 1.3911556662, 1.34868603089, 1.25355749938,\n      1.04832741346, 0.70112899241, 0.44320072123, 0.498963432398, 0.677269271375,\n      0.884860024108, 1.01717446932, 1.08248509384, 1.11192218268, 1.12565487236,\n      1.13264314758, 1.13460238304, 1.1285845804, 1.10816496789, 1.06389114615,\n      0.983736480034, 0.855056896738, 0.672081386142, 0.457229397445, 0.29557029864,\n      0.312230552689, 0.504516532892, 0.693664948317, 0.758182212528, 0.738140275974,\n      0.761464261419, 0.919048525617, 1.1941583814, 1.51779736262, 1.78535232986,\n      1.95523759421, 2.04912562599, 2.0486029494, 2.11161779135, 2.69975115697,\n      4.17953444976, 6.65653018507, 10.2617116918, 15.3350004509, 22.3136518742,\n      31.0338239459, 38.9677602053, 40.791488538, 34.64669658, 25.4136632005,\n      17.5722136283, 12.4005633332, 9.8243921558, 9.17772126112, 9.2444003789,\n      9.20797577463, 9.01063712115, 8.81080428924, 8.69532171182, 8.67018412494,\n      8.70055154359\n    ],\n    [\n      0.696723036728, 0.650853524776, 0.602069456371, 0.550473537064, 0.496424583459,\n      0.440614331826, 0.383971722723, 0.326920693064, 0.267057122692, 0.195462265265,\n      0.101869464236, 0.0137990121553, 0.0205283219995, 0.146032627894, 0.290779483655,\n      0.370772355802, 0.369679047706, 0.318733743227, 0.300756452817, 0.418245941652,\n      0.696577472392, 1.08032770829, 1.48062636794, 1.80227174504, 1.98644891028,\n      2.03623806354, 1.99441396403, 1.90736520761, 1.8072805637, 1.71129767603,\n      1.62639684662, 1.55398163807, 1.4927686402, 1.44026259667, 1.3932967378,\n      1.3479459957, 1.29893063156, 1.23851935199, 1.15507271121, 1.03231815347,\n      0.853395731739, 0.613274931878, 0.302077479717, 0.0591023740476, 0.298433320667,\n      0.616787890771, 0.821292492958, 0.935814917153, 0.998066449843, 1.03293386545,\n      1.05362103227, 1.06493694968, 1.06567272347, 1.04991382827, 1.00752749413,\n      0.924241370742, 0.782562909344, 0.568061730087, 0.294496356532, 0.0637429430724,\n      0.0722411383513, 0.335438906692, 0.561429623656, 0.56572325062, 0.416978320875,\n      0.343452095201, 0.499503608801, 0.764786353325, 1.12917894931, 1.53275653129,\n      1.88145071215, 2.1756282765, 2.46278163076, 2.86136279968, 3.59308105566,\n      4.88275425748, 6.88757070252, 9.7677424276, 13.7513805101, 19.0231216395,\n      25.217924822, 30.4550072161, 31.5368914431, 27.4909983817, 21.1468509196,\n      15.4193528892, 11.4535442033, 9.45348029543, 9.02088704235, 9.09149912981,\n      8.97972106395, 8.74921824079, 8.5937575767, 8.5846905947, 8.69800915489,\n      8.86590707316\n    ],\n    [\n      0.717893234182, 0.674345622223, 0.628381493793, 0.58010851434, 0.529752269969,\n      0.477573076811, 0.42353735559, 0.366488237468, 0.302794684979, 0.226378487214,\n      0.137492597568, 0.0669040448854, 0.0776368495599, 0.18643974372, 0.326456042688,\n      0.431814808414, 0.487360758414, 0.520205520801, 0.590271088192, 0.770813703206,\n      1.10465778996, 1.56683995482, 2.05079928146, 2.40590133449, 2.54190409471,\n      2.48637829219, 2.3269526167, 2.13812497454, 1.95982501827, 1.80654614528,\n      1.67977535395, 1.57572061618, 1.48897539616, 1.413910762, 1.34495645878,\n      1.27635599509, 1.20170537647, 1.11358749564, 1.00391312491, 0.866002434055,\n      0.698208248006, 0.500171314641, 0.254956171117, 0.0864219550076, 0.257366651695,\n      0.516252615806, 0.705679516793, 0.825112022175, 0.897353248071, 0.942196848734,\n      0.972148572119, 0.992473783187, 1.00239853878, 0.996255468662, 0.964123579329,\n      0.892080908139, 0.763200363553, 0.563632358039, 0.306695297707, 0.0899772609116,\n      0.0993721651335, 0.340804467534, 0.521289784924, 0.451420608519, 0.189278688141,\n      0.0257930581651, 0.214024564016, 0.362164635581, 0.744514901425, 1.27068596091,\n      1.76716954634, 2.20937183574, 2.65078809543, 3.18322638212, 3.93113571883,\n      5.02663157466, 6.58932830523, 8.73419411882, 11.5614031307, 15.0501807163,\n      18.7863257109, 21.6551548477, 22.2222048862, 20.1517803702, 16.6921287661,\n      13.3302066534, 10.8748161984, 9.55921681703, 9.12036818687, 8.91782707498,\n      8.62579611409, 8.37133894737, 8.31158112709, 8.47936766287, 8.80914024763,\n      9.18212443458\n    ],\n    [\n      0.742554852239, 0.701674813442, 0.658833961268, 0.614117824265, 0.567634659065,\n      0.519394682978, 0.469042811238, 0.415458218301, 0.356659923923, 0.291654054426,\n      0.227111141453, 0.186948318985, 0.205491938382, 0.291101590232, 0.410314700654,\n      0.524683238188, 0.623639353491, 0.727879939167, 0.883048961643, 1.14847712108,\n      1.57207908035, 2.14337852715, 2.73517189995, 3.12707004058, 3.18708460566,\n      2.98601516121, 2.67832171302, 2.37159352976, 2.10905069305, 1.8975894771,\n      1.73021973884, 1.59659408997, 1.48675267426, 1.39198669408, 1.30464072864,\n      1.21758375941, 1.12367211171, 1.01549414966, 0.88593295569, 0.730677763235,\n      0.55501621018, 0.387664573949, 0.283259157959, 0.26857995098, 0.356890592981,\n      0.506096272181, 0.643260602336, 0.742115648283, 0.807585181916, 0.85267811795,\n      0.887527757064, 0.916263390561, 0.937390912338, 0.945078347798, 0.930241750291,\n      0.881474719721, 0.787057373241, 0.641652459343, 0.464958794981, 0.330876965037,\n      0.342822210753, 0.480257805071, 0.562378786209, 0.464960127931, 0.235897059212,\n      0.107562213121, 0.0924941492279, 0.0614861758669, 0.50808885705, 1.10866268227,\n      1.67353422578, 2.17795114678, 2.66421301626, 3.19765981884, 3.85570013504,\n      4.72185846408, 5.87846399978, 7.39311661213, 9.2853673639, 11.4585110753,\n      13.5987478346, 15.1398889411, 15.5115997492, 14.6225907119, 12.9827215058,\n      11.2688726273, 9.93339714591, 9.11718073254, 8.66791719749, 8.31187120908,\n      7.97783764821, 7.8088221508, 7.94138150133, 8.39820249445, 9.07409666803,\n      9.76491586624\n    ],\n    [\n      0.770258279095, 0.732322632727, 0.69288190883, 0.652030102331, 0.609862529692,\n      0.566401926658, 0.521500563816, 0.474845480372, 0.426471985386, 0.378560779305,\n      0.338891487568, 0.323150343137, 0.348805497155, 0.420196855578, 0.523257499456,\n      0.640491256324, 0.768613194187, 0.925096506091, 1.14708869341, 1.48552055493,\n      1.98706883982, 2.64539114221, 3.3197823668, 3.73797467341, 3.7291141125,\n      3.39970845507, 2.96445045591, 2.55909153317, 2.22772470015, 1.96946166932,\n      1.7696692558, 1.61247788866, 1.48430019589, 1.37412134035, 1.27285544062,\n      1.17253983673, 1.06560871902, 0.944355569766, 0.800746624542, 0.627121775869,\n      0.42041613021, 0.203260527059, 0.0894800982378, 0.191870064085, 0.352703557909,\n      0.489196889711, 0.595358466346, 0.669122535208, 0.71921341778, 0.758518454595,\n      0.795886662223, 0.833462613528, 0.867921055355, 0.892616005604, 0.899264591854,\n      0.879403714611, 0.826821501825, 0.742982951797, 0.646821976227, 0.580865783862,\n      0.585304362755, 0.637958548577, 0.654297067001, 0.576258199003, 0.437058619332,\n      0.32922871664, 0.211194243795, 0.213175332753, 0.588128922639, 1.12283492368,\n      1.64855468883, 2.12448117219, 2.56571733301, 3.00785363896, 3.50114419695,\n      4.11286167624, 4.91639093061, 5.95685140709, 7.21361105313, 8.57981090602,\n      9.85222614352, 10.7560774434, 11.0639129741, 10.7571377135, 10.0507120508,\n      9.24175159857, 8.54715910933, 8.03556345158, 7.64657563845, 7.30208353996,\n      7.04188464423, 7.02893834304, 7.4394538845, 8.34259230569, 9.59401998744,\n      10.8121192419\n    ],\n    [\n      0.800533165012, 0.765752994796, 0.729943639856, 0.693250763768, 0.655850002978,\n      0.617937705115, 0.579765805351, 0.541836078532, 0.505468050625, 0.473933401036,\n      0.453809809297, 0.454905688528, 0.486598383229, 0.552032943014, 0.646803588962,\n      0.765493635944, 0.910618825078, 1.0979687182, 1.35756460166, 1.72987431455,\n      2.25040235202, 2.90602650389, 3.56181782125, 3.95999564185, 3.92961537634,\n      3.56789512222, 3.09333440512, 2.65107768632, 2.28970103569, 2.00833205615,\n      1.79076158622, 1.61947408672, 1.47962262964, 1.35936609983, 1.24917755035,\n      1.14099033021, 1.02741214143, 0.901025038125, 0.753741919671, 0.576499117816,\n      0.362288536177, 0.130757059544, 0.00802466047829, 0.130221716785, 0.326783749635,\n      0.464496231059, 0.545781299789, 0.590863554219, 0.620326399507, 0.651293645649,\n      0.691832439109, 0.740692023838, 0.791272241949, 0.835310514058, 0.864877005554,\n      0.873685256519, 0.858906928156, 0.824139743761, 0.782550716035, 0.754914340641,\n      0.754927251187, 0.769702929143, 0.764644581115, 0.716734104299, 0.639564688788,\n      0.566743345021, 0.521821608777, 0.591204200406, 0.861106729015, 1.25796607296,\n      1.67542592, 2.05939840319, 2.39253969213, 2.67845474119, 2.9514342466,\n      3.29470310277, 3.81390179972, 4.55009874229, 5.43958378917, 6.36902928815,\n      7.2148912252, 7.8391756433, 8.12938936071, 8.07579118195, 7.78363380127,\n      7.40252491645, 7.04212118139, 6.72876515772, 6.42824084161, 6.12328600216,\n      5.89692855544, 5.97220286582, 6.67066909329, 8.23438897047, 10.5034152378,\n      12.6788524059\n    ],\n    [\n      0.832888424982, 0.801396506338, 0.769363949357, 0.737014620059, 0.704645386509,\n      0.672661191366, 0.64166854258, 0.612692305491, 0.587585068893, 0.569595684171,\n      0.563755231299, 0.576362192244, 0.613109493175, 0.676913536684, 0.767870741319,\n      0.886417056048, 1.0378338629, 1.23548885127, 1.5013828761, 1.86223397073,\n      2.33566293083, 2.89734330361, 3.43565983084, 3.76151816489, 3.7470993838,\n      3.45054609159, 3.03542076468, 2.62874903887, 2.28376440461, 2.00762785212,\n      1.78961910169, 1.61523814172, 1.47121214757, 1.34659168446, 1.23250530897,\n      1.12157468328, 1.00732587771, 0.883704203109, 0.744837202919, 0.585800628684,\n      0.407876255609, 0.238596064275, 0.160260969238, 0.231479288585, 0.360189042274,\n      0.450032141987, 0.488004921583, 0.495089002348, 0.49945219939, 0.522957653884,\n      0.571214928862, 0.636373998579, 0.706668155376, 0.771747264254, 0.823821369577,\n      0.858000161822, 0.873065067719, 0.872472841167, 0.86447884242, 0.859307663425,\n      0.862429249977, 0.868687989049, 0.865662416985, 0.845923433765, 0.816472624125,\n      0.796544135116, 0.814324885146, 0.91203314502, 1.11605228011, 1.39789594487,\n      1.70032120145, 1.97096128781, 2.16597896041, 2.25422981037, 2.25645512821,\n      2.31113078379, 2.62592641147, 3.2364815104, 3.96512694867, 4.67651806805,\n      5.33946838317, 5.88847133085, 6.20982394659, 6.25672073489, 6.09553322425,\n      5.85837911667, 5.65386170742, 5.48342534635, 5.26691530814, 4.94987951229,\n      4.59673346577, 4.50270999416, 5.31834768525, 7.794156846, 11.9349357376,\n      15.9744991244\n    ],\n    [\n      0.866821540191, 0.838660691386, 0.810436313549, 0.782453145215, 0.755122835805,\n      0.729016546673, 0.704963495111, 0.684219779248, 0.668709305561, 0.661262577297,\n      0.665653060522, 0.686174903109, 0.726756979791, 0.790192574521, 0.878394095082,\n      0.993991703768, 1.14250842358, 1.33382394902, 1.58167350068, 1.89944744828,\n      2.28918967794, 2.72136803847, 3.11494685275, 3.3529605184, 3.35760903342,\n      3.15524119733, 2.8439424448, 2.51541603936, 2.21936854645, 1.97086118384,\n      1.76727490972, 1.59974559735, 1.45851035982, 1.33481279791, 1.22130193064,\n      1.11189845371, 1.0015637788, 0.886207458991, 0.763036198716, 0.632100207704,\n      0.500730043932, 0.391620401658, 0.341642253424, 0.362718717798, 0.409566950322,\n      0.430565690029, 0.412501527588, 0.37385153195, 0.350073070536, 0.370999119157,\n      0.435933040331, 0.524142588024, 0.617315643803, 0.703899386722, 0.776699551094,\n      0.831860857521, 0.86895592647, 0.891003008317, 0.903633235698, 0.912944781795,\n      0.922521948377, 0.931728891606, 0.937565864997, 0.9394117924, 0.942936624894,\n      0.960630714608, 1.01031857268, 1.11098339126, 1.27046188588, 1.47386300349,\n      1.68584396022, 1.85615738796, 1.9188734894, 1.80122154987, 1.49249434205,\n      1.21667038125, 1.41301783919, 2.09139133925, 2.77619121165, 3.33032243536,\n      3.93853468471, 4.59234773069, 5.05475135586, 5.16015514394, 4.93440304638,\n      4.59935811995, 4.42081557172, 4.38861746443, 4.27681249948, 3.91413061141,\n      3.26691287856, 2.5642172996, 2.98722548063, 6.48484626507, 13.6637110402,\n      21.0671714216\n    ],\n    [\n      0.901836133002, 0.876957442913, 0.852453832451, 0.82869573132, 0.806177165552,\n      0.785567290566, 0.767789798429, 0.754133249408, 0.746374752816, 0.746860338536,\n      0.758447497435, 0.784237779918, 0.827171464641, 0.889768345672, 0.974353017371,\n      1.08382159038, 1.222546266, 1.39669425444, 1.61308497452, 1.87549873208,\n      2.1773288747, 2.49135748197, 2.7639551842, 2.928531062, 2.94220511086, 2.8153743221,\n      2.60044931676, 2.35528868945, 2.11891674357, 1.90893908347, 1.72880800081,\n      1.57509612984, 1.44197664513, 1.32339238258, 1.21391841573, 1.10903468419,\n      1.00522453306, 0.900163521337, 0.793251948165, 0.686800973036, 0.587920851148,\n      0.509296077895, 0.463008797479, 0.445124081002, 0.430261839724, 0.39169809429,\n      0.321725445075, 0.236527719396, 0.181575118762, 0.2082782033, 0.301155966712,\n      0.416080549757, 0.531321355173, 0.637064037965, 0.727172113902, 0.798355421555,\n      0.850506070602, 0.886438354382, 0.910821411117, 0.928552320523, 0.943193271452,\n      0.956386887796, 0.968845223804, 0.982431798612, 1.00195631237, 1.03558549515,\n      1.09364342086, 1.18545549241, 1.31389373828, 1.46939833056, 1.62511147628,\n      1.73115385884, 1.70691281632, 1.44368764198, 0.880106947873, 0.289753884421,\n      0.433173060306, 1.28992687874, 1.85345855941, 2.10720940519, 2.72723883336,\n      3.74516596589, 4.59635878414, 4.85169516088, 4.32031336003, 3.46187622539,\n      3.19958458221, 3.41718380024, 3.49967796728, 3.14879383521, 2.29303186038,\n      0.895319983662, 0.466636358838, 4.54249454618, 13.7692322189, 24.1692319262\n    ],\n    [\n      0.937462419935, 0.915734393579, 0.894760466548, 0.874953144804, 0.856849460825,\n      0.841152720598, 0.828787696786, 0.820964518101, 0.819233900687, 0.82550050959,\n      0.841955856511, 0.870919771425, 0.914648814003, 0.975240589846, 1.05474983646,\n      1.15548707803, 1.28025518325, 1.43210589013, 1.61311462535, 1.8217066009,\n      2.0484861816, 2.2719790305, 2.45839827391, 2.57068847394, 2.58581432037,\n      2.50767909548, 2.36331607254, 2.18679096724, 2.00533039831, 1.83468635671,\n      1.68101844765, 1.54459126506, 1.42281282289, 1.31211337048, 1.20894061199,\n      1.11025385848, 1.01381004664, 0.918439431279, 0.824432587463, 0.734022305024,\n      0.651541830128, 0.582041797016, 0.526976524573, 0.478923746217, 0.422529985059,\n      0.344356606072, 0.242061234326, 0.125628235508, 0.0380151783344, 0.0785724577277,\n      0.199341047663, 0.330515597567, 0.45918097916, 0.577998742373, 0.680235444551,\n      0.761868993581, 0.82247301048, 0.864785571132, 0.893460837497, 0.913520292117,\n      0.929039779975, 0.942603770045, 0.955819040797, 0.970623347009, 0.990618914018,\n      1.02171058716, 1.0717171648, 1.14857791323, 1.25644985165, 1.38955243915,\n      1.52480109913, 1.61415630421, 1.57769618686, 1.30855905973, 0.746503931514,\n      0.153086147863, 0.278429412282, 1.02232361357, 1.12134050924, 0.795745024652,\n      1.47835370355, 3.1917477593, 4.8203588717, 5.66030477513, 4.47731021581,\n      1.92355987776, 1.75283107274, 2.56385212303, 2.94583015262, 2.68820722075,\n      1.94731921544, 1.02257593697, 0.928063139629, 3.70594366495, 10.4013108669,\n      18.5914121236\n    ],\n    [\n      0.973275264755, 0.954500509824, 0.936787466515, 0.920566194305, 0.90638142754,\n      0.894922466634, 0.887057440071, 0.883865924639, 0.886657654551, 0.896960151747,\n      0.916461380871, 0.946911695566, 0.990019070115, 1.04739083654, 1.12055213213,\n      1.21099431737, 1.32010442364, 1.44875036196, 1.59629197342, 1.75891616011,\n      1.92758590728, 2.08667581669, 2.21522902421, 2.29239764706, 2.3056278009,\n      2.25636019862, 2.15867738082, 2.03220597888, 1.89477496426, 1.75863763319,\n      1.63023401693, 1.51168746649, 1.40254663387, 1.30113518121, 1.2054274007,\n      1.11357597306, 1.02424206444, 0.936833810332, 0.851681086494, 0.77004143667,\n      0.693627574667, 0.623230109083, 0.556537004642, 0.486843405708, 0.405387438118,\n      0.307502260728, 0.198270910735, 0.092790192447, 0.0174955356068, 0.0534579889319,\n      0.155247703327, 0.277717920157, 0.407558093382, 0.531966683406, 0.640343856637,\n      0.726430948919, 0.788838239584, 0.830252012842, 0.855946045538, 0.871974655885,\n      0.883364709262, 0.892908506714, 0.901310825, 0.90876378255, 0.916997992737,\n      0.93089612861, 0.959501981352, 1.01542368076, 1.10960232857, 1.24104750287,\n      1.38789844391, 1.50444387169, 1.52336503409, 1.37242172942, 1.04302952843,\n      0.740269374562, 0.835306421843, 1.11475543125, 0.732426800817, 0.020337946505,\n      0.731009790089, 2.91194804358, 5.14524838038, 6.82488425059, 5.30223953475,\n      0.230113869868, 0.76231670118, 2.10137117012, 2.63732439389, 2.43288239632,\n      1.73853950259, 0.739802602449, 0.436127325818, 2.63764227364, 6.57337318182,\n      11.1379030547\n    ],\n    [\n      1.00890673675, 0.99284178546, 0.978071692064, 0.965022948872, 0.954221075227,\n      0.946309828515, 0.94206991221, 0.942432183875, 0.948477730687, 0.961416447236,\n      0.982539654965, 1.01315197651, 1.05449897982, 1.10770936747, 1.17375230511,\n      1.25337096721, 1.34690858092, 1.45392091126, 1.5725006673, 1.69836097126,\n      1.82397141907, 1.93837658704, 2.02850298502, 2.082289521, 2.09265865825,\n      2.0601145144, 1.99221370791, 1.90032660381, 1.79582725175, 1.68757740703,\n      1.58115769719, 1.47928335138, 1.38266928709, 1.29087674379, 1.20296460686,\n      1.1179353081, 1.03502121489, 0.953848188833, 0.874466531286, 0.797171563958,\n      0.721988941345, 0.647798484327, 0.571489886947, 0.488180199215, 0.393577236463,\n      0.28813525012, 0.180300754315, 0.0849883659292, 0.0218094620587, 0.0513592771986,\n      0.137209569252, 0.249313618252, 0.376123259471, 0.501215470103, 0.610331253191,\n      0.694833912276, 0.752175952552, 0.785057454256, 0.800026807595, 0.805412415635,\n      0.808289252973, 0.811430349895, 0.812772647877, 0.808503873375, 0.797209765876,\n      0.782667375111, 0.77668970729, 0.801865847489, 0.883989293576, 1.02949187843,\n      1.21266951124, 1.38521500741, 1.49119855119, 1.48772987257, 1.38743134693,\n      1.30051945319, 1.34133050172, 1.35974737132, 1.03972880097, 0.685889879341,\n      1.30877502793, 2.95213172678, 4.63425781195, 5.56845125184, 4.36632821794,\n      1.79126969572, 1.57687356896, 2.26393385822, 2.56603487324, 2.33334288139,\n      1.70724322149, 0.831784885284, 0.606393586167, 2.03319036891, 4.17954068628,\n      6.68801023317\n    ],\n    [\n      1.04405236764, 1.03042707945, 1.01825883904, 1.00795453802, 1.00000237363,\n      0.994982629573, 0.993575712258, 0.996563836576, 1.00482183908, 1.0192930521,\n      1.0409488645, 1.07073513187, 1.10951221388, 1.15799338241, 1.21667506869,\n      1.28573386459, 1.36484905255, 1.45291103428, 1.54761204902, 1.64499887412,\n      1.73919350562, 1.82260459478, 1.88693009271, 1.92494015399, 1.93246952892,\n      1.90965042643, 1.86067915346, 1.79226518026, 1.71163366669, 1.62497153644,\n      1.5366984283, 1.44944471693, 1.3644175124, 1.28187666702, 1.20156408445,\n      1.1230284174, 1.04583641864, 0.969670661202, 0.894298256268, 0.81937860659,\n      0.744098529849, 0.666738105433, 0.584505691365, 0.494199329001, 0.394090326092,\n      0.286551213319, 0.179573806381, 0.0849619522687, 0.0224734454332, 0.04728424715,\n      0.125548604237, 0.23608274266, 0.362564013168, 0.486232020217, 0.591511890924,\n      0.66851911782, 0.713697734533, 0.729689818855, 0.724980251978, 0.712307271039,\n      0.703611194425, 0.702243833114, 0.700208004491, 0.685863872426, 0.653372453212,\n      0.604779182141, 0.552303249687, 0.5314887276, 0.598187557013, 0.770641998275,\n      1.00672881822, 1.2469664618, 1.44068893196, 1.55847297949, 1.6085898393,\n      1.63878769015, 1.68373571181, 1.69383948498, 1.61699137411, 1.6432019118,\n      2.13333273415, 3.06262563625, 3.95276993857, 4.29721634735, 3.77910260212,\n      2.88819553744, 2.54344210197, 2.62520501161, 2.62230769353, 2.33809768954,\n      1.82995610923, 1.27074380566, 0.908434274534, 1.40207058369, 2.73482074092,\n      4.33466694634\n    ],\n    [\n      1.07847182618, 1.0670062123, 1.05709649519, 1.04911910544, 1.04351434022,\n      1.04079098718, 1.04152741339, 1.04636666305, 1.05600289459, 1.07115707709,\n      1.09254141423, 1.12081390993, 1.15652533234, 1.20005869261, 1.25155550746,\n      1.31081574813, 1.37715517635, 1.44921255011, 1.52472684978, 1.60035239463,\n      1.67163502542, 1.73330002723, 1.77994696159, 1.80707269837, 1.81210830026,\n      1.79502908299, 1.75823867116, 1.70578686706, 1.64229629757, 1.57202603346,\n      1.4983177389, 1.42343807902, 1.34869363681, 1.27467090638, 1.20149239259,\n      1.12902828752, 1.05703612128, 0.985214799976, 0.913162876454, 0.840239280986,\n      0.765359635578, 0.686840922313, 0.602515945522, 0.510385496003, 0.409903482183,\n      0.30351989369, 0.197621587752, 0.101899689059, 0.0242786468896, 0.0230628942058,\n      0.11770360745, 0.239295064383, 0.367854441012, 0.48751666843, 0.584266108064,\n      0.648042896773, 0.674075258321, 0.664132399105, 0.628611469828, 0.58778635414,\n      0.565046442694, 0.567409385751, 0.574073319487, 0.55767487367, 0.509263596413,\n      0.432615103192, 0.33288018603, 0.248801648066, 0.296731718403, 0.5100945802,\n      0.802788299157, 1.10432737401, 1.36936922813, 1.57437791181, 1.72109433357,\n      1.831018753, 1.92300551184, 1.99748368012, 2.07185994598, 2.23698447869,\n      2.59909324732, 3.11466740204, 3.57025227742, 3.74144982507, 3.55948924006,\n      3.21719537753, 2.98111665111, 2.86531794269, 2.70387593638, 2.38182287494,\n      1.88174425569, 1.16239529163, 0.13950215189, 0.852185865847, 2.06425553809,\n      3.15758970912\n    ],\n    [\n      1.11198541535, 1.10240294985, 1.09442154024, 1.0883807858, 1.08466829283,\n      1.08372005498, 1.08601724139, 1.09207775519, 1.10244095826, 1.11764441641,\n      1.13819235299, 1.16451631256, 1.19692862516, 1.23556800154, 1.2803341663,\n      1.33080648157, 1.38614310841, 1.44496589393, 1.50525375876, 1.56429131904,\n      1.61873961295, 1.6648933536, 1.69914379888, 1.71857558472, 1.72152657908,\n      1.70790238514, 1.67911271931, 1.63765681715, 1.58652865576, 1.52865300104,\n      1.46649762468, 1.40190111006, 1.33607510467, 1.26970831588, 1.20310496602,\n      1.13631054699, 1.06919697554, 1.00149258508, 0.932752817234, 0.862282888275,\n      0.78905290314, 0.711690307134, 0.628674211592, 0.538839362666, 0.442157886862,\n      0.34048068857, 0.23755526903, 0.13780760891, 0.0548627300115, 0.0544653115377,\n      0.148962806091, 0.272053408774, 0.395706772764, 0.505392490593, 0.588327842513,\n      0.633948083113, 0.635298476159, 0.591282118875, 0.511997314951, 0.427375384712,\n      0.384922701496, 0.406713820246, 0.444753622988, 0.437277353719, 0.380177435937,\n      0.296736345001, 0.182858856289, 0.0456869117992, 0.0831737026007, 0.33299785938,\n      0.654335397939, 0.989779020113, 1.29908840836, 1.55999891309, 1.76943217297,\n      1.93823661685, 2.08118906655, 2.21230907528, 2.35459999622, 2.54734398054,\n      2.81735073693, 3.13018305375, 3.39033887831, 3.50467810628, 3.45273186996,\n      3.3043812176, 3.14726978969, 2.99401923325, 2.78788449462, 2.4738648171,\n      2.0365107587, 1.51477442841, 1.2473772067, 1.95731784581, 2.03861421272,\n      2.71208787084\n    ],\n    [\n      1.14446789327, 1.1365052057, 1.13014523512, 1.12568792959, 1.12346755387,\n      1.12385031051, 1.12722865312, 1.13401121084, 1.14460734691, 1.15940569534,\n      1.17874648542, 1.2028878549, 1.23196638351, 1.26595162447, 1.30459381775,\n      1.34736425026, 1.39339037484, 1.44139408962, 1.48965140193, 1.53600224002,\n      1.57794410236, 1.61283387617, 1.63819231467, 1.65205966228, 1.65330896068,\n      1.64181471201, 1.61841536643, 1.58468331257, 1.5425844672, 1.49413469454,\n      1.44113680387, 1.38503331355, 1.3268657375, 1.26730662052, 1.20672571789,\n      1.14525843909, 1.0828551215, 1.01930013207, 0.954200671438, 0.886959337126,\n      0.816764100547, 0.742650912448, 0.663703562277, 0.579428448916, 0.490260696117,\n      0.39805814716, 0.306560127618, 0.223169436605, 0.166770342299, 0.170206123463,\n      0.238698457524, 0.340082972623, 0.445984155418, 0.538278050493, 0.602904815923,\n      0.627825762032, 0.603111795165, 0.522845349921, 0.392373545089, 0.247230811957,\n      0.171448843312, 0.229578332208, 0.327884916614, 0.333763504352, 0.260413512398,\n      0.191613043396, 0.114787257425, 0.0406938016429, 0.0899945642968, 0.294627663623,\n      0.595481511183, 0.929740245108, 1.25338056619, 1.54187069446, 1.78777972245,\n      1.99575227441, 2.17653878454, 2.34356653574, 2.51320973719, 2.70226566201,\n      2.91530788094, 3.1304159236, 3.30341862664, 3.39398623989, 3.39247749185,\n      3.32276749043, 3.21498241907, 3.07470936266, 2.88216203241, 2.61816155622,\n      2.29345336556, 1.98631440178, 1.87991900064, 1.98954269336, 2.17408729678,\n      2.69678647041\n    ],\n    [\n      1.17584090895, 1.169254216, 1.16423817289, 1.16105287516, 1.15998137112,\n      1.1613256255, 1.16539959913, 1.17251874266, 1.18298531768, 1.19706919136,\n      1.21498404845, 1.23685922632, 1.26270751218, 1.29238927888, 1.32557355428,\n      1.36169755951, 1.39992853655, 1.43913559193, 1.47788416344, 1.51446951262,\n      1.54700494703, 1.5735717042, 1.5924194035, 1.60218292583, 1.60206388401,\n      1.59192460326, 1.57226495016, 1.54408948209, 1.50870638384, 1.46751450098,\n      1.42182661332, 1.37275454828, 1.32115780842, 1.26764112512, 1.21258003312,\n      1.15615484573, 1.09837884794, 1.03911387136, 0.97807516802, 0.914838055046,\n      0.848870683724, 0.779627022981, 0.706734370621, 0.63029288561, 0.551276671926,\n      0.472036139544, 0.397081313176, 0.334701475827, 0.298870742203, 0.304682267797,\n      0.353524849707, 0.429355782099, 0.511529593456, 0.582375198617, 0.627136593541,\n      0.632741042804, 0.587312116462, 0.481416129653, 0.315261963983, 0.122949664215,\n      0.0131443108096, 0.100652688914, 0.254901615756, 0.26074078953, 0.139030694249,\n      0.0647751017678, 0.0902983952297, 0.0209215889103, 0.131706399707, 0.339979614593,\n      0.615743461036, 0.928926390167, 1.24400532591, 1.53723036502, 1.79827671003,\n      2.02715550715, 2.23010692764, 2.41635563294, 2.59585009453, 2.77596331336,\n      2.95598503709, 3.12312156598, 3.2560136643, 3.33579544629, 3.35643638508,\n      3.32522525093, 3.2525988205, 3.14131640858, 2.98633729862, 2.7864016878,\n      2.56029849916, 2.35985259191, 2.25629755636, 2.28626802629, 2.48347833568,\n      2.88416837961\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-isolines/test/in/matrix1.json",
    "content": "{\n  \"matrix\": [\n    [1, 1, 1, 1, 1, 1, 1],\n    [1, 5, 5, 5, 5, 5, 1],\n    [1, 5, 15, 15, 15, 5, 1],\n    [1, 5, 10, 10, 10, 5, 1],\n    [1, 5, 5, 5, 5, 5, 1],\n    [1, 1, 1, 1, 1, 1, 1]\n  ],\n  \"origin\": [10.8, 44.1],\n  \"cellSize\": 20,\n  \"breaks\": [2, 4, 8, 12],\n  \"zProperty\": \"temperature\"\n}\n"
  },
  {
    "path": "packages/turf-isolines/test/in/matrix2.json",
    "content": "{\n  \"matrix\": [\n    [18, 13, 10, 9, 10, 13, 18],\n    [13, 8, 5, 4, 5, 8, 13],\n    [10, 5, 2, 1, 2, 5, 10],\n    [10, 5, 2, 1, 2, 5, 10],\n    [9, 4, 1, 12, 1, 4, 9],\n    [10, 5, 2, 1, 2, 5, 10],\n    [10, 5, 2, 1, 2, 5, 10],\n    [13, 8, 5, 4, 5, 8, 13],\n    [18, 13, 10, 9, 10, 13, 18]\n  ],\n  \"origin\": [10.85, 44],\n  \"cellSize\": 20,\n  \"breaks\": [4.5, 9, 13.5, 18],\n  \"commonProperties\": {\n    \"stroke-width\": 3,\n    \"stroke\": \"darkred\",\n    \"fill\": \"darkred\"\n  },\n  \"breaksProperties\": [\n    {\n      \"fill-opacity\": 0.4\n    },\n    {\n      \"fill-opacity\": 0.5\n    },\n    {\n      \"fill-opacity\": 0.7\n    },\n    {\n      \"fill-opacity\": 0.8\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-isolines/test/in/pointGrid.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"breaks\": [20, 40, 80, 160],\n    \"breaksProperties\": [\n      {\n        \"fill-opacity\": 0.5\n      },\n      {\n        \"fill-opacity\": 0.6\n      },\n      {\n        \"fill-opacity\": 0.7\n      },\n      {\n        \"fill-opacity\": 0.8\n      }\n    ],\n    \"zProperty\": \"population\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 4 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.823364, -33.553984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 42 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.823364, -33.50903203113676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 65 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.823364, -33.464080062273524]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 6 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.823364, -33.419128093410286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 56 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.823364, -33.37417612454705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 155 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.823364, -33.32922415568381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 15 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.76942368848808, -33.553984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.76942368848808, -33.50903203113676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 34 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.76942368848808, -33.464080062273524]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 3 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.76942368848808, -33.419128093410286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 3 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.76942368848808, -33.37417612454705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 36 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.76942368848808, -33.32922415568381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 67 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.71548337697615, -33.553984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 7 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.71548337697615, -33.50903203113676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 17 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.71548337697615, -33.464080062273524]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 27 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.71548337697615, -33.419128093410286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 37 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.71548337697615, -33.37417612454705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 78 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.71548337697615, -33.32922415568381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 10 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.66154306546423, -33.553984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.66154306546423, -33.50903203113676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 53 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.66154306546423, -33.464080062273524]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 53 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.66154306546423, -33.419128093410286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 84 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.66154306546423, -33.37417612454705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 43 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.66154306546423, -33.32922415568381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 43 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.6076027539523, -33.553984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 18 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.6076027539523, -33.50903203113676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 16 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.6076027539523, -33.464080062273524]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 94 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.6076027539523, -33.419128093410286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 94 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.6076027539523, -33.37417612454705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 4 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.6076027539523, -33.32922415568381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 57 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.55366244244038, -33.553984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 5 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.55366244244038, -33.50903203113676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 5 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.55366244244038, -33.464080062273524]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 65 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.55366244244038, -33.419128093410286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 90 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.55366244244038, -33.37417612454705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 9 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.55366244244038, -33.32922415568381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 33 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.49972213092846, -33.553984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 78 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.49972213092846, -33.50903203113676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 36 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.49972213092846, -33.464080062273524]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 3 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.49972213092846, -33.419128093410286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 1 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.49972213092846, -33.37417612454705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"population\": 7 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.49972213092846, -33.32922415568381]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-isolines/test/out/bigMatrix.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 4,\n        \"fill-opacity\": 0.4,\n        \"stroke\": \"grey\",\n        \"fill\": \"grey\",\n        \"pressure\": 0.24\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [13.333575, 46.719456],\n            [13.424768, 46.665438],\n            [13.467696, 46.629524],\n            [13.52061, 46.539592],\n            [13.551757, 46.44966],\n            [13.563264, 46.386354],\n            [13.567553, 46.359728],\n            [13.564023, 46.269796],\n            [13.563264, 46.267861],\n            [13.527199, 46.179864],\n            [13.426546, 46.089932],\n            [13.424768, 46.088913],\n            [13.286273, 46.043257],\n            [13.147778, 46.040078],\n            [13.009282, 46.076361],\n            [12.98133, 46.089932],\n            [12.870787, 46.176678],\n            [12.867497, 46.179864],\n            [12.815364, 46.269796],\n            [12.792558, 46.359728],\n            [12.794113, 46.44966],\n            [12.817878, 46.539592],\n            [12.870787, 46.625291],\n            [12.873239, 46.629524],\n            [13.003638, 46.719456],\n            [13.009282, 46.72173],\n            [13.147778, 46.750639],\n            [13.286273, 46.736988],\n            [13.333575, 46.719456]\n          ],\n          [\n            [14.586932, 46],\n            [14.671227, 46.0847],\n            [14.684441, 46.089932],\n            [14.809722, 46.118811],\n            [14.948217, 46.095223],\n            [14.9629, 46.089932],\n            [15.073333, 46]\n          ],\n          [\n            [15.248809, 46],\n            [15.363703, 46.074808],\n            [15.404796, 46.089932],\n            [15.502199, 46.131327],\n            [15.5712, 46.179864],\n            [15.640694, 46.214118],\n            [15.77919, 46.265899],\n            [15.917685, 46.245906],\n            [16.004625, 46.179864],\n            [16.019208, 46.089932],\n            [15.989697, 46]\n          ],\n          [\n            [19.261103, 46.269796],\n            [19.241574, 46.261638],\n            [19.227967, 46.269796],\n            [19.241574, 46.28155],\n            [19.261103, 46.269796]\n          ],\n          [\n            [17.483942, 46.539592],\n            [17.441134, 46.509911],\n            [17.398412, 46.539592],\n            [17.441134, 46.565069],\n            [17.483942, 46.539592]\n          ],\n          [\n            [18.274679, 46.539592],\n            [18.272106, 46.539023],\n            [18.271836, 46.539592],\n            [18.272106, 46.540117],\n            [18.274679, 46.539592]\n          ],\n          [\n            [16.983186, 46.629524],\n            [16.887153, 46.616213],\n            [16.866868, 46.629524],\n            [16.887153, 46.686717],\n            [16.983186, 46.629524]\n          ],\n          [\n            [12.496746, 47.079184],\n            [12.532649, 46.989252],\n            [12.464469, 46.89932],\n            [12.455301, 46.893482],\n            [12.316805, 46.859784],\n            [12.17831, 46.898495],\n            [12.177161, 46.89932],\n            [12.112964, 46.989252],\n            [12.154879, 47.079184],\n            [12.17831, 47.097102],\n            [12.316805, 47.14904],\n            [12.455301, 47.13561],\n            [12.496746, 47.079184]\n          ],\n          [\n            [15.664979, 47.259049],\n            [15.77919, 47.222509],\n            [15.834548, 47.169116],\n            [15.789098, 47.079184],\n            [15.77919, 47.072803],\n            [15.640694, 47.070845],\n            [15.606895, 47.079184],\n            [15.502199, 47.115385],\n            [15.363703, 47.167282],\n            [15.361223, 47.169116],\n            [15.336906, 47.259049],\n            [15.363703, 47.279081],\n            [15.502199, 47.319692],\n            [15.640694, 47.267231],\n            [15.664979, 47.259049]\n          ],\n          [\n            [7.899188, 47.888573],\n            [8.000611, 47.798641],\n            [8.023449, 47.751713],\n            [8.044106, 47.708709],\n            [8.062848, 47.618777],\n            [8.161944, 47.551659],\n            [8.204604, 47.528845],\n            [8.30044, 47.478736],\n            [8.355468, 47.438913],\n            [8.390349, 47.348981],\n            [8.353418, 47.259049],\n            [8.30044, 47.213026],\n            [8.21777, 47.169116],\n            [8.161944, 47.147462],\n            [8.023449, 47.134087],\n            [7.884954, 47.158747],\n            [7.857297, 47.169116],\n            [7.746458, 47.240282],\n            [7.721771, 47.259049],\n            [7.660303, 47.348981],\n            [7.607963, 47.432938],\n            [7.602787, 47.438913],\n            [7.483616, 47.528845],\n            [7.469468, 47.539233],\n            [7.398672, 47.618777],\n            [7.369353, 47.708709],\n            [7.392465, 47.798641],\n            [7.469468, 47.873837],\n            [7.49141, 47.888573],\n            [7.607963, 47.931492],\n            [7.746458, 47.938693],\n            [7.884954, 47.89919],\n            [7.899188, 47.888573]\n          ],\n          [\n            [12.559982, 47.348981],\n            [12.579726, 47.259049],\n            [12.455301, 47.183226],\n            [12.329096, 47.259049],\n            [12.352189, 47.348981],\n            [12.455301, 47.385966],\n            [12.559982, 47.348981]\n          ],\n          [\n            [14.897997, 47.348981],\n            [14.890392, 47.259049],\n            [14.809722, 47.2071],\n            [14.671227, 47.203042],\n            [14.575353, 47.259049],\n            [14.565439, 47.348981],\n            [14.671227, 47.417355],\n            [14.809722, 47.411845],\n            [14.897997, 47.348981]\n          ],\n          [\n            [9.101873, 47.888573],\n            [9.131412, 47.87878],\n            [9.212607, 47.798641],\n            [9.216462, 47.708709],\n            [9.206551, 47.618777],\n            [9.220799, 47.528845],\n            [9.17041, 47.438913],\n            [9.131412, 47.412762],\n            [8.992917, 47.372654],\n            [8.854421, 47.393577],\n            [8.767107, 47.438913],\n            [8.738554, 47.528845],\n            [8.774536, 47.618777],\n            [8.779112, 47.708709],\n            [8.805405, 47.798641],\n            [8.854421, 47.854382],\n            [8.942356, 47.888573],\n            [8.992917, 47.908661],\n            [9.101873, 47.888573]\n          ],\n          [\n            [12.360972, 47.528845],\n            [12.316805, 47.48062],\n            [12.274592, 47.528845],\n            [12.316805, 47.539311],\n            [12.360972, 47.528845]\n          ],\n          [\n            [16.668716, 47.618777],\n            [16.610162, 47.604288],\n            [16.590133, 47.618777],\n            [16.610162, 47.644458],\n            [16.668716, 47.618777]\n          ],\n          [\n            [12.765117, 48.158369],\n            [12.842427, 48.068437],\n            [12.732292, 48.019172],\n            [12.607371, 48.068437],\n            [12.69843, 48.158369],\n            [12.732292, 48.169413],\n            [12.765117, 48.158369]\n          ],\n          [\n            [7.017371, 49.507349],\n            [6.994818, 49.417417],\n            [6.932951, 49.327485],\n            [6.915486, 49.311577],\n            [6.805692, 49.237553],\n            [6.776991, 49.222896],\n            [6.638495, 49.179071],\n            [6.5, 49.161809]\n          ],\n          [\n            [6.5, 49.444426],\n            [6.596926, 49.507349]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 4,\n        \"fill-opacity\": 0.4,\n        \"stroke\": \"blue\",\n        \"fill\": \"blue\",\n        \"pressure\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [12.683417, 46],\n            [12.593796, 46.075577],\n            [12.578669, 46.089932],\n            [12.510938, 46.179864],\n            [12.469615, 46.269796],\n            [12.455301, 46.327499],\n            [12.446405, 46.359728],\n            [12.435651, 46.44966],\n            [12.429156, 46.539592],\n            [12.394556, 46.629524],\n            [12.316805, 46.66745],\n            [12.206125, 46.719456],\n            [12.17831, 46.726561],\n            [12.040741, 46.809388],\n            [12.039815, 46.810095],\n            [11.968106, 46.89932],\n            [11.950779, 46.989252],\n            [11.986492, 47.079184],\n            [12.039815, 47.132358],\n            [12.085344, 47.169116],\n            [12.17831, 47.258912],\n            [12.178407, 47.259049],\n            [12.228722, 47.348981],\n            [12.286307, 47.438913],\n            [12.227878, 47.528845],\n            [12.316805, 47.550894],\n            [12.409847, 47.528845],\n            [12.455301, 47.439296],\n            [12.456106, 47.438913],\n            [12.593796, 47.396831],\n            [12.681485, 47.348981],\n            [12.723597, 47.259049],\n            [12.726633, 47.169116],\n            [12.732292, 47.136674],\n            [12.746385, 47.079184],\n            [12.792784, 46.989252],\n            [12.870787, 46.917991],\n            [13.009282, 46.903932],\n            [13.147778, 46.899728],\n            [13.151005, 46.89932],\n            [13.286273, 46.885734],\n            [13.424768, 46.851978],\n            [13.525358, 46.809388],\n            [13.563264, 46.789296],\n            [13.664117, 46.719456],\n            [13.701759, 46.68041],\n            [13.749338, 46.629524],\n            [13.804668, 46.539592],\n            [13.838909, 46.44966],\n            [13.840254, 46.442365],\n            [13.858366, 46.359728],\n            [13.858124, 46.269796],\n            [13.840254, 46.206993],\n            [13.833446, 46.179864],\n            [13.782815, 46.089932],\n            [13.701759, 46.015819],\n            [13.682327, 46]\n          ],\n          [\n            [14.369931, 46],\n            [14.394236, 46.040341],\n            [14.418486, 46.089932],\n            [14.532731, 46.170845],\n            [14.552367, 46.179864],\n            [14.671227, 46.22058],\n            [14.809722, 46.23732],\n            [14.948217, 46.232071],\n            [15.086713, 46.218284],\n            [15.225208, 46.226715],\n            [15.363703, 46.263342],\n            [15.380442, 46.269796],\n            [15.502199, 46.304995],\n            [15.640694, 46.338291],\n            [15.77919, 46.349711],\n            [15.917685, 46.330436],\n            [16.049628, 46.269796],\n            [16.05618, 46.26467],\n            [16.128158, 46.179864],\n            [16.150722, 46.089932],\n            [16.136546, 46]\n          ],\n          [\n            [19.311629, 46.269796],\n            [19.241574, 46.240533],\n            [19.192764, 46.269796],\n            [19.241574, 46.311959],\n            [19.311629, 46.269796]\n          ],\n          [\n            [17.53461, 46.539592],\n            [17.441134, 46.474778],\n            [17.347844, 46.539592],\n            [17.441134, 46.595224],\n            [17.53461, 46.539592]\n          ],\n          [\n            [18.342339, 46.539592],\n            [18.272106, 46.524045],\n            [18.264737, 46.539592],\n            [18.272106, 46.553925],\n            [18.342339, 46.539592]\n          ],\n          [\n            [19.245592, 46.539592],\n            [19.241574, 46.505856],\n            [19.212444, 46.539592],\n            [19.241574, 46.551269],\n            [19.245592, 46.539592]\n          ],\n          [\n            [17.036451, 46.719456],\n            [17.066899, 46.629524],\n            [17.025648, 46.593742],\n            [16.887153, 46.576391],\n            [16.806188, 46.629524],\n            [16.837829, 46.719456],\n            [16.887153, 46.739855],\n            [17.025648, 46.72559],\n            [17.036451, 46.719456]\n          ],\n          [\n            [19.242707, 46.719456],\n            [19.241574, 46.712954],\n            [19.230795, 46.719456],\n            [19.241574, 46.720647],\n            [19.242707, 46.719456]\n          ],\n          [\n            [7.757103, 48.158369],\n            [7.884954, 48.114893],\n            [7.944769, 48.068437],\n            [8.023449, 48.002007],\n            [8.038183, 47.978505],\n            [8.100121, 47.888573],\n            [8.161944, 47.801618],\n            [8.164137, 47.798641],\n            [8.262172, 47.708709],\n            [8.30044, 47.68159],\n            [8.438935, 47.645604],\n            [8.577431, 47.679114],\n            [8.606313, 47.708709],\n            [8.699335, 47.798641],\n            [8.715926, 47.816949],\n            [8.776872, 47.888573],\n            [8.85046, 47.978505],\n            [8.854421, 47.984391],\n            [8.992917, 48.053553],\n            [9.131412, 48.054733],\n            [9.269907, 48.008354],\n            [9.312693, 47.978505],\n            [9.398156, 47.888573],\n            [9.408403, 47.863255],\n            [9.429829, 47.798641],\n            [9.42796, 47.708709],\n            [9.408403, 47.633183],\n            [9.404835, 47.618777],\n            [9.36534, 47.528845],\n            [9.300866, 47.438913],\n            [9.269907, 47.414426],\n            [9.172092, 47.348981],\n            [9.131412, 47.328127],\n            [8.992917, 47.287089],\n            [8.854421, 47.268068],\n            [8.769221, 47.259049],\n            [8.715926, 47.250708],\n            [8.577431, 47.193019],\n            [8.54754, 47.169116],\n            [8.438935, 47.097703],\n            [8.407681, 47.079184],\n            [8.30044, 47.024747],\n            [8.19031, 46.989252],\n            [8.161944, 46.979726],\n            [8.023449, 46.955862],\n            [7.884954, 46.95147],\n            [7.746458, 46.964747],\n            [7.631978, 46.989252],\n            [7.607963, 46.995477],\n            [7.469468, 47.045416],\n            [7.394797, 47.079184],\n            [7.330972, 47.116044],\n            [7.245823, 47.169116],\n            [7.192477, 47.210822],\n            [7.132951, 47.259049],\n            [7.053981, 47.339333],\n            [7.04482, 47.348981],\n            [6.977129, 47.438913],\n            [6.931048, 47.528845],\n            [6.915486, 47.583233],\n            [6.904869, 47.618777],\n            [6.898708, 47.708709],\n            [6.915094, 47.798641],\n            [6.915486, 47.799543],\n            [6.953518, 47.888573],\n            [7.024108, 47.978505],\n            [7.053981, 48.005076],\n            [7.140225, 48.068437],\n            [7.192477, 48.097719],\n            [7.330972, 48.150124],\n            [7.372032, 48.158369],\n            [7.469468, 48.177716],\n            [7.607963, 48.182831],\n            [7.746458, 48.162429],\n            [7.757103, 48.158369]\n          ],\n          [\n            [15.640953, 47.348981],\n            [15.77919, 47.289836],\n            [15.829116, 47.259049],\n            [15.915177, 47.169116],\n            [15.885133, 47.079184],\n            [15.77919, 47.01095],\n            [15.640694, 46.99557],\n            [15.502199, 47.014524],\n            [15.363703, 47.051232],\n            [15.301081, 47.079184],\n            [15.225208, 47.140803],\n            [15.175394, 47.169116],\n            [15.128914, 47.259049],\n            [15.225208, 47.29727],\n            [15.286403, 47.348981],\n            [15.363703, 47.372228],\n            [15.502199, 47.382661],\n            [15.640694, 47.349087],\n            [15.640953, 47.348981]\n          ],\n          [\n            [14.944964, 47.438913],\n            [14.948217, 47.43651],\n            [15.049066, 47.348981],\n            [15.070376, 47.259049],\n            [14.981512, 47.169116],\n            [14.948217, 47.157858],\n            [14.809722, 47.110822],\n            [14.671227, 47.108275],\n            [14.532731, 47.151788],\n            [14.505265, 47.169116],\n            [14.428535, 47.259049],\n            [14.428693, 47.348981],\n            [14.505161, 47.438913],\n            [14.532731, 47.45479],\n            [14.671227, 47.497036],\n            [14.809722, 47.491608],\n            [14.944964, 47.438913]\n          ],\n          [\n            [16.753843, 47.618777],\n            [16.748657, 47.61171],\n            [16.610162, 47.576856],\n            [16.55221, 47.618777],\n            [16.610162, 47.693084],\n            [16.748657, 47.632192],\n            [16.753843, 47.618777]\n          ],\n          [\n            [12.920539, 48.158369],\n            [12.941498, 48.068437],\n            [12.870787, 48.007987],\n            [12.789645, 47.978505],\n            [12.732292, 47.971499],\n            [12.707656, 47.978505],\n            [12.593796, 48.030327],\n            [12.551601, 48.068437],\n            [12.561575, 48.158369],\n            [12.593796, 48.193019],\n            [12.732292, 48.232741],\n            [12.870787, 48.197294],\n            [12.920539, 48.158369]\n          ],\n          [\n            [7.342413, 49.507349],\n            [7.330972, 49.429189],\n            [7.329322, 49.417417],\n            [7.296208, 49.327485],\n            [7.23853, 49.237553],\n            [7.192477, 49.187048],\n            [7.150894, 49.147621],\n            [7.053981, 49.07576],\n            [7.021939, 49.057689],\n            [6.915486, 49.00276],\n            [6.811596, 48.967757],\n            [6.776991, 48.955575],\n            [6.638495, 48.924741],\n            [6.5, 48.911051]\n          ],\n          [\n            [6.5, 49.476205],\n            [6.547975, 49.507349]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 4,\n        \"fill-opacity\": 0.4,\n        \"stroke\": \"green\",\n        \"fill\": \"green\",\n        \"pressure\": 1.5\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [10.290136, 49.507349],\n            [10.37787, 49.417436],\n            [10.377889, 49.417417],\n            [10.462155, 49.327485],\n            [10.516366, 49.265234],\n            [10.540663, 49.237553],\n            [10.613554, 49.147621],\n            [10.654861, 49.090475],\n            [10.67907, 49.057689],\n            [10.737184, 48.967757],\n            [10.784598, 48.877825],\n            [10.793356, 48.856992],\n            [10.823483, 48.787893],\n            [10.851227, 48.697961],\n            [10.867657, 48.608029],\n            [10.874253, 48.518097],\n            [10.873146, 48.428165],\n            [10.86678, 48.338233],\n            [10.857529, 48.248301],\n            [10.847375, 48.158369],\n            [10.837701, 48.068437],\n            [10.829158, 47.978505],\n            [10.821454, 47.888573],\n            [10.812499, 47.798641],\n            [10.793733, 47.708709],\n            [10.793356, 47.70784],\n            [10.664976, 47.618777],\n            [10.654861, 47.617167],\n            [10.516366, 47.600939],\n            [10.37787, 47.586162],\n            [10.239375, 47.56654],\n            [10.10088, 47.538375],\n            [10.072761, 47.528845],\n            [9.962384, 47.506672],\n            [9.823889, 47.464844],\n            [9.769285, 47.438913],\n            [9.685393, 47.413084],\n            [9.55524, 47.348981],\n            [9.546898, 47.345925],\n            [9.408403, 47.271404],\n            [9.388374, 47.259049],\n            [9.269907, 47.182985],\n            [9.246341, 47.169116],\n            [9.13541, 47.079184],\n            [9.131412, 47.073855],\n            [9.045901, 46.989252],\n            [8.992917, 46.900185],\n            [8.992196, 46.89932],\n            [8.947278, 46.809388],\n            [8.920539, 46.719456],\n            [8.906369, 46.629524],\n            [8.902529, 46.539592],\n            [8.908239, 46.44966],\n            [8.923286, 46.359728],\n            [8.947567, 46.269796],\n            [8.980847, 46.179864],\n            [8.992917, 46.149581],\n            [9.023838, 46.089932],\n            [9.076637, 46]\n          ],\n          [\n            [10.407143, 46],\n            [10.499599, 46.089932],\n            [10.516366, 46.105213],\n            [10.580211, 46.179864],\n            [10.6517, 46.269796],\n            [10.654861, 46.273738],\n            [10.713111, 46.359728],\n            [10.765193, 46.44966],\n            [10.793356, 46.507156],\n            [10.808187, 46.539592],\n            [10.844069, 46.629524],\n            [10.871485, 46.719456],\n            [10.891167, 46.809388],\n            [10.904169, 46.89932],\n            [10.911672, 46.989252],\n            [10.914888, 47.079184],\n            [10.915149, 47.169116],\n            [10.91425, 47.259049],\n            [10.915491, 47.348981],\n            [10.92844, 47.438913],\n            [10.931852, 47.447818],\n            [11.070347, 47.52122],\n            [11.208842, 47.520545],\n            [11.347338, 47.511257],\n            [11.485833, 47.501139],\n            [11.624329, 47.494233],\n            [11.762824, 47.49419],\n            [11.901319, 47.506535],\n            [11.966066, 47.528845],\n            [12.039815, 47.539121],\n            [12.17831, 47.57302],\n            [12.316805, 47.595442],\n            [12.455301, 47.576126],\n            [12.593796, 47.56206],\n            [12.732292, 47.572032],\n            [12.870787, 47.608209],\n            [12.902702, 47.618777],\n            [12.987237, 47.708709],\n            [12.920553, 47.798641],\n            [12.870787, 47.81152],\n            [12.732292, 47.86344],\n            [12.693198, 47.888573],\n            [12.593796, 47.924983],\n            [12.491218, 47.978505],\n            [12.455301, 48.009023],\n            [12.363634, 48.068437],\n            [12.316805, 48.134861],\n            [12.282371, 48.158369],\n            [12.226051, 48.248301],\n            [12.198193, 48.338233],\n            [12.195719, 48.428165],\n            [12.230607, 48.518097],\n            [12.316805, 48.598311],\n            [12.333473, 48.608029],\n            [12.455301, 48.6621],\n            [12.593796, 48.6893],\n            [12.732292, 48.69587],\n            [12.870787, 48.686808],\n            [13.009282, 48.661622],\n            [13.147778, 48.617236],\n            [13.168702, 48.608029],\n            [13.286273, 48.554543],\n            [13.347942, 48.518097],\n            [13.424768, 48.465242],\n            [13.473265, 48.428165],\n            [13.563264, 48.342195],\n            [13.567587, 48.338233],\n            [13.650372, 48.248301],\n            [13.701759, 48.183307],\n            [13.727302, 48.158369],\n            [13.827353, 48.068437],\n            [13.840254, 48.058984],\n            [13.97875, 47.993475],\n            [14.028933, 47.978505],\n            [14.117245, 47.958595],\n            [14.255741, 47.937765],\n            [14.394236, 47.921896],\n            [14.532731, 47.905513],\n            [14.642906, 47.888573],\n            [14.671227, 47.885177],\n            [14.809722, 47.860662],\n            [14.948217, 47.827326],\n            [15.041543, 47.798641],\n            [15.086713, 47.786132],\n            [15.225208, 47.740815],\n            [15.313234, 47.708709],\n            [15.363703, 47.692849],\n            [15.502199, 47.64359],\n            [15.55448, 47.618777],\n            [15.640694, 47.586458],\n            [15.744222, 47.528845],\n            [15.77919, 47.513401],\n            [15.910069, 47.438913],\n            [15.917685, 47.434794],\n            [16.044939, 47.348981],\n            [16.05618, 47.33774],\n            [16.120148, 47.259049],\n            [16.152129, 47.169116],\n            [16.155541, 47.079184],\n            [16.136477, 46.989252],\n            [16.102939, 46.89932],\n            [16.073257, 46.809388],\n            [16.083398, 46.719456],\n            [16.169279, 46.629524],\n            [16.194676, 46.613232],\n            [16.32789, 46.539592],\n            [16.333171, 46.53624],\n            [16.471666, 46.474268],\n            [16.493105, 46.539592],\n            [16.511648, 46.629524],\n            [16.580533, 46.719456],\n            [16.610162, 46.733621],\n            [16.74529, 46.809388],\n            [16.748657, 46.810272],\n            [16.887153, 46.83267],\n            [17.025648, 46.815838],\n            [17.043406, 46.809388],\n            [17.164143, 46.743029],\n            [17.215772, 46.719456],\n            [17.302639, 46.676038],\n            [17.441134, 46.677818],\n            [17.579629, 46.631083],\n            [17.581379, 46.629524],\n            [17.628462, 46.539592],\n            [17.595745, 46.44966],\n            [17.579629, 46.428804],\n            [17.441134, 46.373181],\n            [17.302639, 46.377954],\n            [17.164143, 46.411907],\n            [17.025648, 46.407986],\n            [16.887153, 46.396626],\n            [16.748657, 46.403885],\n            [16.610162, 46.434062],\n            [16.541407, 46.359728],\n            [16.559915, 46.269796],\n            [16.578313, 46.179864],\n            [16.590061, 46.089932],\n            [16.592577, 46]\n          ],\n          [\n            [19.276687, 46.719456],\n            [19.270089, 46.629524],\n            [19.308501, 46.539592],\n            [19.328314, 46.44966],\n            [19.380069, 46.373683],\n            [19.390246, 46.359728],\n            [19.454091, 46.269796],\n            [19.380069, 46.217079],\n            [19.290855, 46.179864],\n            [19.241574, 46.143947],\n            [19.110731, 46.179864],\n            [19.103078, 46.183635],\n            [19.03808, 46.269796],\n            [19.0463, 46.359728],\n            [18.997368, 46.44966],\n            [18.997661, 46.539592],\n            [19.031576, 46.629524],\n            [19.043162, 46.719456],\n            [19.103078, 46.752041],\n            [19.241574, 46.756326],\n            [19.276687, 46.719456]\n          ],\n          [\n            [18.486898, 46.539592],\n            [18.410602, 46.458147],\n            [18.272106, 46.466439],\n            [18.237432, 46.539592],\n            [18.272106, 46.607031],\n            [18.410602, 46.606569],\n            [18.486898, 46.539592]\n          ],\n          [\n            [16.795822, 47.708709],\n            [16.825353, 47.618777],\n            [16.760528, 47.528845],\n            [16.748657, 47.518876],\n            [16.610162, 47.486471],\n            [16.471666, 47.523183],\n            [16.459871, 47.528845],\n            [16.39275, 47.618777],\n            [16.423799, 47.708709],\n            [16.471666, 47.739752],\n            [16.610162, 47.780929],\n            [16.748657, 47.750989],\n            [16.795822, 47.708709]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 4,\n        \"fill-opacity\": 0.4,\n        \"stroke\": \"yellow\",\n        \"fill\": \"yellow\",\n        \"pressure\": 2.5\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [14.186388, 49.507349],\n            [14.255741, 49.418794],\n            [14.256739, 49.417417],\n            [14.325526, 49.327485],\n            [14.394236, 49.240875],\n            [14.39668, 49.237553],\n            [14.466594, 49.147621],\n            [14.532731, 49.066291],\n            [14.539245, 49.057689],\n            [14.611763, 48.967757],\n            [14.671227, 48.898571],\n            [14.687931, 48.877825],\n            [14.766367, 48.787893],\n            [14.809722, 48.742499],\n            [14.849822, 48.697961],\n            [14.940128, 48.608029],\n            [14.948217, 48.600843],\n            [15.03645, 48.518097],\n            [15.086713, 48.476862],\n            [15.142925, 48.428165],\n            [15.225208, 48.366249],\n            [15.260608, 48.338233],\n            [15.363703, 48.267499],\n            [15.390694, 48.248301],\n            [15.502199, 48.179469],\n            [15.536352, 48.158369],\n            [15.640694, 48.102297],\n            [15.708671, 48.068437],\n            [15.77919, 48.037764],\n            [15.917685, 47.98884],\n            [15.952032, 47.978505],\n            [16.05618, 47.952087],\n            [16.194676, 47.921745],\n            [16.333171, 47.898463],\n            [16.424961, 47.888573],\n            [16.471666, 47.885475],\n            [16.610162, 47.869874],\n            [16.748657, 47.826174],\n            [16.782712, 47.798641],\n            [16.876259, 47.708709],\n            [16.887153, 47.663804],\n            [16.893165, 47.618777],\n            [16.887153, 47.602076],\n            [16.839894, 47.528845],\n            [16.748657, 47.452226],\n            [16.701619, 47.438913],\n            [16.610162, 47.392326],\n            [16.484599, 47.348981],\n            [16.471666, 47.331177],\n            [16.424356, 47.259049],\n            [16.424896, 47.169116],\n            [16.451039, 47.079184],\n            [16.471666, 47.045057],\n            [16.523719, 46.989252],\n            [16.610162, 46.951422],\n            [16.748657, 46.930836],\n            [16.887153, 46.916589],\n            [16.970246, 46.89932],\n            [17.025648, 46.889983],\n            [17.164143, 46.841479],\n            [17.246781, 46.809388],\n            [17.302639, 46.78247],\n            [17.441134, 46.748337],\n            [17.528871, 46.719456],\n            [17.579629, 46.703093],\n            [17.66221, 46.629524],\n            [17.691965, 46.539592],\n            [17.680021, 46.44966],\n            [17.634275, 46.359728],\n            [17.579629, 46.28893],\n            [17.541729, 46.269796],\n            [17.441134, 46.193583],\n            [17.407115, 46.179864],\n            [17.302639, 46.097422],\n            [17.291854, 46.089932],\n            [17.228682, 46]\n          ],\n          [\n            [19.006245, 46],\n            [18.964583, 46.020322],\n            [18.876486, 46.089932],\n            [18.826088, 46.163575],\n            [18.814561, 46.179864],\n            [18.775267, 46.269796],\n            [18.747193, 46.359728],\n            [18.726895, 46.44966],\n            [18.78062, 46.539592],\n            [18.826088, 46.563233],\n            [18.86127, 46.629524],\n            [18.931088, 46.719456],\n            [18.964583, 46.738569],\n            [19.103078, 46.805928],\n            [19.241574, 46.792005],\n            [19.310666, 46.719456],\n            [19.319945, 46.629524],\n            [19.37141, 46.539592],\n            [19.380069, 46.519113],\n            [19.41019, 46.44966],\n            [19.494163, 46.359728],\n            [19.518564, 46.328235],\n            [19.573761, 46.269796],\n            [19.613445, 46.179864],\n            [19.604919, 46.089932],\n            [19.524275, 46]\n          ],\n          [\n            [18.538193, 46.629524],\n            [18.549097, 46.617108],\n            [18.652106, 46.539592],\n            [18.657319, 46.44966],\n            [18.549097, 46.390896],\n            [18.410602, 46.36377],\n            [18.272106, 46.391555],\n            [18.233988, 46.44966],\n            [18.210127, 46.539592],\n            [18.240845, 46.629524],\n            [18.272106, 46.663224],\n            [18.410602, 46.675969],\n            [18.538193, 46.629524]\n          ],\n          [\n            [9.823889, 47.265833],\n            [9.781217, 47.259049],\n            [9.685393, 47.247314],\n            [9.546898, 47.20002],\n            [9.491862, 47.169116],\n            [9.408403, 47.10523],\n            [9.377816, 47.079184],\n            [9.322633, 46.989252],\n            [9.310428, 46.89932],\n            [9.337463, 46.809388],\n            [9.408403, 46.722835],\n            [9.412794, 46.719456],\n            [9.546898, 46.641769],\n            [9.598208, 46.629524],\n            [9.685393, 46.606681],\n            [9.823889, 46.60198],\n            [9.962384, 46.626776],\n            [9.969751, 46.629524],\n            [10.10088, 46.681361],\n            [10.157625, 46.719456],\n            [10.239375, 46.80073],\n            [10.246587, 46.809388],\n            [10.291062, 46.89932],\n            [10.297274, 46.989252],\n            [10.264072, 47.079184],\n            [10.239375, 47.107527],\n            [10.181396, 47.169116],\n            [10.10088, 47.214757],\n            [9.962384, 47.256597],\n            [9.928408, 47.259049],\n            [9.823889, 47.265833]\n          ],\n          [\n            [12.17831, 48.008742],\n            [12.039815, 47.999507],\n            [11.979483, 47.978505],\n            [11.901319, 47.928979],\n            [11.860265, 47.888573],\n            [11.841028, 47.798641],\n            [11.901319, 47.714874],\n            [11.904159, 47.708709],\n            [12.039815, 47.646328],\n            [12.17831, 47.628932],\n            [12.316805, 47.62992],\n            [12.455301, 47.631881],\n            [12.593796, 47.671104],\n            [12.655704, 47.708709],\n            [12.648396, 47.798641],\n            [12.593796, 47.833834],\n            [12.522784, 47.888573],\n            [12.455301, 47.924652],\n            [12.316805, 47.976579],\n            [12.300928, 47.978505],\n            [12.17831, 48.008742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 4,\n        \"fill-opacity\": 0.4,\n        \"stroke\": \"red\",\n        \"fill\": \"red\",\n        \"pressure\": 100\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": []\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"description\": \"Debug line for testing\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [6.5, 46],\n          [19.657059855532452, 46],\n          [19.657059855532452, 49.50734941852569],\n          [6.5, 49.50734941852569],\n          [6.5, 46]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-isolines/test/out/matrix1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"temperature\": 2\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [12.071816, 44.954354],\n            [11.817453, 44.954354],\n            [11.56309, 44.954354],\n            [11.308726, 44.954354],\n            [11.054363, 44.954354],\n            [10.863591, 44.819456],\n            [10.863591, 44.639592],\n            [10.863591, 44.459728],\n            [10.863591, 44.279864],\n            [11.054363, 44.144966],\n            [11.308726, 44.144966],\n            [11.56309, 44.144966],\n            [11.817453, 44.144966],\n            [12.071816, 44.144966],\n            [12.262588, 44.279864],\n            [12.262588, 44.459728],\n            [12.262588, 44.639592],\n            [12.262588, 44.819456],\n            [12.071816, 44.954354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"temperature\": 4\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [12.071816, 44.864422],\n            [11.817453, 44.864422],\n            [11.56309, 44.864422],\n            [11.308726, 44.864422],\n            [11.054363, 44.864422],\n            [10.990772, 44.819456],\n            [10.990772, 44.639592],\n            [10.990772, 44.459728],\n            [10.990772, 44.279864],\n            [11.054363, 44.234898],\n            [11.308726, 44.234898],\n            [11.56309, 44.234898],\n            [11.817453, 44.234898],\n            [12.071816, 44.234898],\n            [12.135407, 44.279864],\n            [12.135407, 44.459728],\n            [12.135407, 44.639592],\n            [12.135407, 44.819456],\n            [12.071816, 44.864422]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"temperature\": 8\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [11.817453, 44.765497],\n            [11.56309, 44.765497],\n            [11.308726, 44.765497],\n            [11.130672, 44.639592],\n            [11.206981, 44.459728],\n            [11.308726, 44.387783],\n            [11.56309, 44.387783],\n            [11.817453, 44.387783],\n            [11.919198, 44.459728],\n            [11.995507, 44.639592],\n            [11.817453, 44.765497]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"temperature\": 12\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [11.817453, 44.693551],\n            [11.56309, 44.693551],\n            [11.308726, 44.693551],\n            [11.232417, 44.639592],\n            [11.308726, 44.531674],\n            [11.56309, 44.531674],\n            [11.817453, 44.531674],\n            [11.893762, 44.639592],\n            [11.817453, 44.693551]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"description\": \"Debug line for testing\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [10.799999999999955, 44.1],\n          [12.326179163093911, 44.1],\n          [12.326179163093911, 44.99932036372454],\n          [10.799999999999955, 44.99932036372454],\n          [10.799999999999955, 44.1]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-isolines/test/out/matrix2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 3,\n        \"stroke\": \"darkred\",\n        \"fill\": \"darkred\",\n        \"fill-opacity\": 0.4,\n        \"elevation\": 4.5\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [11.747181, 45.259049],\n            [11.87535, 45.229071],\n            [12.088964, 45.079184],\n            [12.088964, 44.89932],\n            [12.131687, 44.809388],\n            [12.157321, 44.719456],\n            [12.131687, 44.629524],\n            [12.088964, 44.539592],\n            [12.088964, 44.359728],\n            [11.87535, 44.209841],\n            [11.747181, 44.179864],\n            [11.619012, 44.161878],\n            [11.490843, 44.179864],\n            [11.362675, 44.209841],\n            [11.14906, 44.359728],\n            [11.14906, 44.539592],\n            [11.106337, 44.629524],\n            [11.080704, 44.719456],\n            [11.106337, 44.809388],\n            [11.14906, 44.89932],\n            [11.14906, 45.079184],\n            [11.362675, 45.229071],\n            [11.490843, 45.259049],\n            [11.619012, 45.277035],\n            [11.747181, 45.259049]\n          ],\n          [\n            [11.619012, 44.842091],\n            [11.444237, 44.719456],\n            [11.619012, 44.596822],\n            [11.793788, 44.719456],\n            [11.619012, 44.842091]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 3,\n        \"stroke\": \"darkred\",\n        \"fill\": \"darkred\",\n        \"fill-opacity\": 0.5,\n        \"elevation\": 9\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [12.182954, 45.259049],\n            [12.336757, 45.079184],\n            [12.336757, 44.89932],\n            [12.388024, 44.719456],\n            [12.336757, 44.539592],\n            [12.336757, 44.359728],\n            [12.182954, 44.179864],\n            [12.131687, 44.143891],\n            [11.87535, 44.035973],\n            [11.619012, 44],\n            [11.362675, 44.035973],\n            [11.106337, 44.143891],\n            [11.05507, 44.179864],\n            [10.901267, 44.359728],\n            [10.901267, 44.539592],\n            [10.85, 44.719456],\n            [10.901267, 44.89932],\n            [10.901267, 45.079184],\n            [11.05507, 45.259049],\n            [11.106337, 45.295021],\n            [11.362675, 45.40294],\n            [11.619012, 45.438913],\n            [11.87535, 45.40294],\n            [12.131687, 45.295021],\n            [12.182954, 45.259049]\n          ],\n          [\n            [11.619012, 44.76851],\n            [11.549102, 44.719456],\n            [11.619012, 44.670402],\n            [11.688922, 44.719456],\n            [11.619012, 44.76851]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 3,\n        \"stroke\": \"darkred\",\n        \"fill\": \"darkred\",\n        \"fill-opacity\": 0.7,\n        \"elevation\": 13.5\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [11.080704, 44],\n            [10.85, 44.161878]\n          ],\n          [\n            [12.388024, 44.161878],\n            [12.157321, 44]\n          ],\n          [\n            [10.85, 45.277035],\n            [11.080704, 45.438913]\n          ],\n          [\n            [12.157321, 45.438913],\n            [12.388024, 45.277035]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 3,\n        \"stroke\": \"darkred\",\n        \"fill\": \"darkred\",\n        \"fill-opacity\": 0.8,\n        \"elevation\": 18\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [10.85, 44],\n            [10.85, 44]\n          ],\n          [\n            [12.388024, 44],\n            [12.388024, 44]\n          ],\n          [\n            [10.85, 45.438913],\n            [10.85, 45.438913]\n          ],\n          [\n            [12.388024, 45.438913],\n            [12.388024, 45.438913]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"description\": \"Debug line for testing\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [10.850000000000023, 43.99999999999999],\n          [12.388024266955085, 43.99999999999999],\n          [12.388024266955085, 45.43891258195926],\n          [10.850000000000023, 45.43891258195926],\n          [10.850000000000023, 43.99999999999999]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-isolines/test/out/pointGrid.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.5,\n        \"population\": 20\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-70.823364, -33.535057],\n            [-70.79511, -33.509032],\n            [-70.769424, -33.48259],\n            [-70.725002, -33.46408],\n            [-70.715483, -33.450594],\n            [-70.710988, -33.46408],\n            [-70.661543, -33.492069],\n            [-70.613434, -33.46408],\n            [-70.607603, -33.461775],\n            [-70.553662, -33.452842],\n            [-70.527562, -33.46408],\n            [-70.542579, -33.509032],\n            [-70.553662, -33.521999],\n            [-70.607603, -33.512628],\n            [-70.645198, -33.553984]\n          ],\n          [\n            [-70.671006, -33.553984],\n            [-70.715483, -33.518772],\n            [-70.764237, -33.553984]\n          ],\n          [\n            [-70.823364, -33.406542],\n            [-70.786725, -33.374176],\n            [-70.769424, -33.351019],\n            [-70.742454, -33.374176],\n            [-70.731216, -33.419128],\n            [-70.769424, -33.443779],\n            [-70.823364, -33.429795]\n          ],\n          [\n            [-70.499722, -33.442285],\n            [-70.514512, -33.419128],\n            [-70.511237, -33.374176],\n            [-70.553662, -33.335329],\n            [-70.607603, -33.337216],\n            [-70.629732, -33.329224]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.6,\n        \"population\": 40\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-70.823364, -33.511398],\n            [-70.820795, -33.509032],\n            [-70.779864, -33.46408],\n            [-70.823364, -33.445033]\n          ],\n          [\n            [-70.689933, -33.553984],\n            [-70.715483, -33.533756],\n            [-70.743491, -33.553984]\n          ],\n          [\n            [-70.499722, -33.468361],\n            [-70.527801, -33.509032],\n            [-70.553662, -33.539288],\n            [-70.607603, -33.54859],\n            [-70.612506, -33.553984]\n          ],\n          [\n            [-70.515455, -33.553984],\n            [-70.499722, -33.546991]\n          ],\n          [\n            [-70.764287, -33.329224],\n            [-70.715483, -33.370887],\n            [-70.71204, -33.374176],\n            [-70.688513, -33.419128],\n            [-70.681022, -33.46408],\n            [-70.661543, -33.475106],\n            [-70.642591, -33.46408],\n            [-70.607603, -33.450249],\n            [-70.553662, -33.437858],\n            [-70.531912, -33.419128],\n            [-70.523359, -33.374176],\n            [-70.553662, -33.346428],\n            [-70.607603, -33.347205],\n            [-70.657394, -33.329224]\n          ],\n          [\n            [-70.823364, -33.388561],\n            [-70.80708, -33.374176],\n            [-70.771237, -33.329224]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.7,\n        \"population\": 80\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-70.553662, -33.368626],\n            [-70.607603, -33.367184],\n            [-70.661543, -33.369791],\n            [-70.666134, -33.374176],\n            [-70.661543, -33.379976],\n            [-70.626021, -33.419128],\n            [-70.607603, -33.427196],\n            [-70.581563, -33.419128],\n            [-70.553662, -33.392157],\n            [-70.547602, -33.374176],\n            [-70.553662, -33.368626]\n          ],\n          [\n            [-70.823364, -33.363279],\n            [-70.789368, -33.329224]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0.8,\n        \"population\": 160\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": []\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"description\": \"Debug line for testing\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-70.823364, -33.553984],\n          [-70.49972213092846, -33.553984],\n          [-70.49972213092846, -33.32922415568381],\n          [-70.823364, -33.32922415568381],\n          [-70.823364, -33.553984]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-isolines/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { envelope } from \"@turf/envelope\";\nimport { truncate } from \"@turf/truncate\";\nimport { pointGrid } from \"@turf/point-grid\";\nimport { getCoords } from \"@turf/invariant\";\nimport { randomPolygon } from \"@turf/random\";\nimport { lineString } from \"@turf/helpers\";\nimport { matrixToGrid } from \"./lib/matrix-to-grid.js\";\nimport { isolines } from \"./index.js\";\nimport { FeatureCollection, Point } from \"geojson\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    json: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"isolines\", (t) => {\n  fixtures.forEach(({ name, json }) => {\n    const options = json.properties || json;\n    const { breaks, matrix, cellSize, origin } = options;\n\n    // allow GeoJSON featureCollection or matrix\n    let points = json.properties\n      ? json\n      : matrixToGrid(matrix, origin, cellSize, options);\n\n    // Results\n    const results = truncate(isolines(points, breaks, options));\n\n    // Add red line around point data\n    results.features.push(\n      lineString(getCoords(envelope(points))[0], {\n        description: \"Debug line for testing\",\n        stroke: \"#F00\",\n        \"stroke-width\": 1,\n      })\n    );\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + name + \".geojson\", results);\n    t.deepEqual(\n      results,\n      loadJsonFileSync(directories.out + name + \".geojson\"),\n      name\n    );\n  });\n\n  t.end();\n});\n\ntest(\"isolines - skipping first break, from issue #2129\", (t) => {\n  const points = pointGrid([0, 10, 20, 30], 100);\n  for (var i = 0; i < points.features.length; i++) {\n    points.features[i].properties.temperature = Math.random() * 12;\n  }\n\n  const breaks = [5, 10];\n\n  const lines = isolines(points, breaks, {\n    zProperty: \"temperature\",\n    breaksProperties: [\n      { name: \"break5\", stroke: \"#F00\" },\n      { name: \"break10\", stroke: \"#0F0\" },\n    ],\n  });\n\n  lines.features.push(\n    lineString(getCoords(envelope(points))[0], {\n      description: \"Debug line for testing\",\n      stroke: \"#F00\",\n      \"stroke-width\": 1,\n    })\n  );\n\n  // Make sure an isoline is created for each break, and that its\n  // geometry isn't empty.\n  t.equal(lines.features[0].properties.name, \"break5\");\n  t.assert(lines.features[0].geometry.coordinates[0].length > 1);\n  t.equal(lines.features[1].properties.name, \"break10\");\n  t.assert(lines.features[1].geometry.coordinates[0].length > 1);\n  t.end();\n});\n\ntest(\"isolines -- throws\", (t) => {\n  const points = pointGrid([-70.823364, -33.553984, -70.473175, -33.302986], 5);\n\n  t.throws(() => isolines(randomPolygon()), \"invalid points\");\n  t.throws(() => isolines(points), /breaks is required/);\n  t.throws(() => isolines(points, \"string\"), /breaks must be an Array/);\n  t.throws(\n    () => isolines(points, [1, 2, 3], { commonProperties: \"foo\" }),\n    /commonProperties must be an Object/\n  );\n  t.throws(\n    () => isolines(points, [1, 2, 3], { breaksProperties: \"foo\" }),\n    /breaksProperties must be an Array/\n  );\n\n  // Updated tests since Turf 5.0\n  t.assert(\n    isolines(points, [1, 2, 3], { zProperty: 5 }),\n    \"zProperty can be a string\"\n  );\n  t.end();\n});\n\ntest(\"isolines -- handling properties\", (t) => {\n  const points = pointGrid([-70.823364, -33.553984, -70.473175, -33.302986], 5);\n  const commonProperties = { name: \"unknown\", source: \"foobar\" };\n  const breaksProperties = [\n    { name: \"break1\" },\n    { name: \"break2\" },\n    { name: \"break3\" },\n  ];\n\n  const lines = isolines(points, [1, 2, 3], {\n    zProperty: \"z\",\n    commonProperties: commonProperties,\n    breaksProperties: breaksProperties,\n  });\n  t.equal(lines.features[0].properties.name, \"break1\");\n  t.equal(lines.features[0].properties.source, \"foobar\");\n  t.end();\n});\n\ntest(\"isolines -- checks for usable grid\", (t) => {\n  const input: FeatureCollection<Point> = {\n    type: \"FeatureCollection\",\n    features: [\n      {\n        type: \"Feature\",\n        properties: { z: 0 },\n        geometry: {\n          type: \"Point\",\n          coordinates: [0, 0],\n        },\n      },\n      {\n        type: \"Feature\",\n        properties: { z: 0 },\n        geometry: {\n          type: \"Point\",\n          coordinates: [0, 1],\n        },\n      },\n      {\n        type: \"Feature\",\n        properties: { z: 0 },\n        geometry: {\n          type: \"Point\",\n          coordinates: [1, 1],\n        },\n      },\n      {\n        type: \"Feature\",\n        properties: { z: 0 },\n        geometry: {\n          type: \"Point\",\n          coordinates: [1e-10, 1],\n        },\n      },\n    ],\n  };\n  t.throws(() => {\n    isolines(input, [0, 1], { zProperty: \"z\" });\n  });\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-isolines/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-isolines/types.ts",
    "content": "import { randomPoint } from \"@turf/random\";\nimport { isolines } from \"./index.js\";\n\nconst points = randomPoint(100, {\n  bbox: [0, 30, 20, 50],\n});\nfor (let i = 0; i < points.features.length; i++) {\n  points.features[i].properties.z = Math.random() * 10;\n}\nconst breaks = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];\nconst lines = isolines(points, breaks, { zProperty: \"temperature\" });\nconst properties = { apply: \"all\" };\n\n// Properties option\nisolines(points, breaks, {\n  zProperty: \"temperature\",\n  commonProperties: properties,\n});\nisolines(points, breaks, {\n  zProperty: \"temperature\",\n  commonProperties: properties,\n  breaksProperties: [{ name: \"break1\" }, { name: \"break2\" }],\n});\n"
  },
  {
    "path": "packages/turf-kinks/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-kinks/README.md",
    "content": "# @turf/kinks\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## kinks\n\nTakes a [linestring][1], [multi-linestring][2],\n[multi-polygon][3] or [polygon][4] and\nreturns [points][5] at all self-intersections.\n\n### Parameters\n\n*   `featureIn` **[Feature][6]<([LineString][1] | [MultiLineString][2] | [MultiPolygon][3] | [Polygon][4])>** input feature\n\n### Examples\n\n```javascript\nvar poly = turf.polygon([[\n  [-12.034835, 8.901183],\n  [-12.060413, 8.899826],\n  [-12.03638, 8.873199],\n  [-12.059383, 8.871418],\n  [-12.034835, 8.901183]\n]]);\n\nvar kinks = turf.kinks(poly);\n\n//addToMap\nvar addToMap = [poly, kinks]\n```\n\nReturns **[FeatureCollection][7]<[Point][5]>** self-intersections\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.5\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/kinks\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-kinks/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { kinks } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst suite = new Benchmark.Suite(\"turf-kinks\");\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => {\n    kinks(geojson);\n  });\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-kinks/index.ts",
    "content": "import {\n  Feature,\n  FeatureCollection,\n  LineString,\n  MultiLineString,\n  MultiPolygon,\n  Point,\n  Polygon,\n} from \"geojson\";\nimport { point } from \"@turf/helpers\";\n\n/**\n * Takes a {@link LineString|linestring}, {@link MultiLineString|multi-linestring},\n * {@link MultiPolygon|multi-polygon} or {@link Polygon|polygon} and\n * returns {@link Point|points} at all self-intersections.\n *\n * @function\n * @param {Feature<LineString|MultiLineString|MultiPolygon|Polygon>} featureIn input feature\n * @returns {FeatureCollection<Point>} self-intersections\n * @example\n * var poly = turf.polygon([[\n *   [-12.034835, 8.901183],\n *   [-12.060413, 8.899826],\n *   [-12.03638, 8.873199],\n *   [-12.059383, 8.871418],\n *   [-12.034835, 8.901183]\n * ]]);\n *\n * var kinks = turf.kinks(poly);\n *\n * //addToMap\n * var addToMap = [poly, kinks]\n */\nfunction kinks<T extends LineString | MultiLineString | Polygon | MultiPolygon>(\n  featureIn: Feature<T> | T\n): FeatureCollection<Point> {\n  let coordinates: any;\n  let feature: any;\n  const results: FeatureCollection<Point> = {\n    type: \"FeatureCollection\",\n    features: [],\n  };\n  if (featureIn.type === \"Feature\") {\n    feature = featureIn.geometry;\n  } else {\n    feature = featureIn;\n  }\n  if (feature.type === \"LineString\") {\n    coordinates = [feature.coordinates];\n  } else if (feature.type === \"MultiLineString\") {\n    coordinates = feature.coordinates;\n  } else if (feature.type === \"MultiPolygon\") {\n    coordinates = [].concat(...feature.coordinates);\n  } else if (feature.type === \"Polygon\") {\n    coordinates = feature.coordinates;\n  } else {\n    throw new Error(\n      \"Input must be a LineString, MultiLineString, \" +\n        \"Polygon, or MultiPolygon Feature or Geometry\"\n    );\n  }\n  coordinates.forEach((line1: any) => {\n    coordinates.forEach((line2: any) => {\n      for (let i = 0; i < line1.length - 1; i++) {\n        // start iteration at i, intersections for k < i have already\n        // been checked in previous outer loop iterations\n        for (let k = i; k < line2.length - 1; k++) {\n          if (line1 === line2) {\n            // segments are adjacent and always share a vertex, not a kink\n            if (Math.abs(i - k) === 1) {\n              continue;\n            }\n            // first and last segment in a closed lineString or ring always share a vertex, not a kink\n            if (\n              // segments are first and last segment of lineString\n              i === 0 &&\n              k === line1.length - 2 &&\n              // lineString is closed\n              line1[i][0] === line1[line1.length - 1][0] &&\n              line1[i][1] === line1[line1.length - 1][1]\n            ) {\n              continue;\n            }\n          }\n\n          const intersection: any = lineIntersects(\n            line1[i][0],\n            line1[i][1],\n            line1[i + 1][0],\n            line1[i + 1][1],\n            line2[k][0],\n            line2[k][1],\n            line2[k + 1][0],\n            line2[k + 1][1]\n          );\n          if (intersection) {\n            results.features.push(point([intersection[0], intersection[1]]));\n          }\n        }\n      }\n    });\n  });\n  return results;\n}\n\n// modified from http://jsfiddle.net/justin_c_rounds/Gd2S2/light/\nfunction lineIntersects(\n  line1StartX: any,\n  line1StartY: any,\n  line1EndX: any,\n  line1EndY: any,\n  line2StartX: any,\n  line2StartY: any,\n  line2EndX: any,\n  line2EndY: any\n) {\n  // if the lines intersect, the result contains the x and y of the\n  // intersection (treating the lines as infinite) and booleans for whether\n  // line segment 1 or line segment 2 contain the point\n  let denominator;\n  let a;\n  let b;\n  let numerator1;\n  let numerator2;\n  const result = {\n    x: null,\n    y: null,\n    onLine1: false,\n    onLine2: false,\n  };\n  denominator =\n    (line2EndY - line2StartY) * (line1EndX - line1StartX) -\n    (line2EndX - line2StartX) * (line1EndY - line1StartY);\n  if (denominator === 0) {\n    if (result.x !== null && result.y !== null) {\n      return result;\n    } else {\n      return false;\n    }\n  }\n  a = line1StartY - line2StartY;\n  b = line1StartX - line2StartX;\n  numerator1 = (line2EndX - line2StartX) * a - (line2EndY - line2StartY) * b;\n  numerator2 = (line1EndX - line1StartX) * a - (line1EndY - line1StartY) * b;\n  a = numerator1 / denominator;\n  b = numerator2 / denominator;\n\n  // if we cast these lines infinitely in both directions, they intersect here:\n  result.x = line1StartX + a * (line1EndX - line1StartX);\n  result.y = line1StartY + a * (line1EndY - line1StartY);\n\n  // if line1 is a segment and line2 is infinite, they intersect if:\n  if (a >= 0 && a <= 1) {\n    result.onLine1 = true;\n  }\n  // if line2 is a segment and line1 is infinite, they intersect if:\n  if (b >= 0 && b <= 1) {\n    result.onLine2 = true;\n  }\n  // if line1 and line2 are segments, they intersect if both of the above are true\n  if (result.onLine1 && result.onLine2) {\n    return [result.x, result.y];\n  } else {\n    return false;\n  }\n}\n\nexport { kinks };\nexport default kinks;\n"
  },
  {
    "path": "packages/turf-kinks/lib/sweepline-intersections-export.ts",
    "content": "// Get around problems with moduleResolution node16 and some older libraries.\n// Manifests as \"This expression is not callable ... has no call signatures\"\n// https://stackoverflow.com/a/74709714\n\nimport lib from \"sweepline-intersections\";\n\nexport const sweeplineIntersections = lib as unknown as typeof lib.default;\n"
  },
  {
    "path": "packages/turf-kinks/package.json",
    "content": "{\n  \"name\": \"@turf/kinks\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a GeoJSON feature and returns points at all self-intersections.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"kinks\",\n    \"self-intersection\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-kinks/test/in/hourglass.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-50, 5],\n        [-40, -10],\n        [-50, -10],\n        [-40, 5],\n        [-50, 5]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-kinks/test/in/issue-2627.geojson",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [11.032103, 53.905391],\n      [11.032478, 53.90552],\n      [11.032784, 53.905631],\n      [11.033154, 53.905675],\n      [11.03376, 53.905665],\n      [11.034415, 53.90571],\n      [11.034833, 53.905631],\n      [11.035396, 53.905492],\n      [11.036094, 53.905583],\n      [11.03662, 53.90565],\n      [11.036958, 53.905574],\n      [11.037118, 53.905526],\n      [11.037194, 53.905991],\n      [11.037741, 53.90898],\n      [11.038202, 53.911439],\n      [11.038519, 53.913243],\n      [11.038932, 53.915534],\n      [11.039125, 53.91658],\n      [11.039436, 53.918137],\n      [11.038175, 53.91785],\n      [11.038368, 53.917654],\n      [11.037183, 53.917379],\n      [11.036979, 53.91743],\n      [11.036662, 53.917695],\n      [11.036341, 53.918071],\n      [11.035691, 53.917913],\n      [11.035332, 53.917869],\n      [11.032505, 53.917787],\n      [11.032022, 53.917749],\n      [11.032135, 53.918662],\n      [11.031582, 53.918731],\n      [11.031067, 53.918848],\n      [11.030268, 53.91912],\n      [11.028396, 53.919793],\n      [11.02639, 53.920548],\n      [11.02573, 53.920772],\n      [11.025456, 53.920823],\n      [11.023611, 53.909521],\n      [11.024276, 53.909518],\n      [11.025022, 53.909521],\n      [11.025783, 53.909511],\n      [11.028165, 53.909508],\n      [11.028664, 53.909527],\n      [11.028868, 53.909464],\n      [11.02904, 53.908601],\n      [11.029201, 53.907208],\n      [11.02934, 53.90625],\n      [11.029839, 53.906275],\n      [11.030123, 53.90625],\n      [11.030461, 53.906149],\n      [11.031008, 53.905963],\n      [11.031298, 53.905852],\n      [11.03162, 53.905523],\n      [11.031824, 53.9054],\n      [11.032103, 53.905391]\n    ],\n    [\n      [11.03228, 53.90643],\n      [11.032054, 53.906446],\n      [11.031904, 53.906478],\n      [11.031711, 53.906655],\n      [11.031588, 53.906762],\n      [11.031765, 53.906775],\n      [11.031985, 53.906699],\n      [11.032124, 53.906645],\n      [11.032301, 53.906629],\n      [11.032435, 53.906509],\n      [11.03228, 53.90643]\n    ],\n    [\n      [11.031631, 53.908491],\n      [11.031411, 53.908497],\n      [11.03126, 53.908671],\n      [11.031368, 53.908845],\n      [11.0317, 53.908901],\n      [11.031931, 53.908816],\n      [11.032012, 53.908699],\n      [11.031926, 53.908544],\n      [11.031631, 53.908491]\n    ],\n    [\n      [11.033261, 53.909436],\n      [11.033288, 53.909543],\n      [11.033422, 53.909502],\n      [11.033369, 53.909439],\n      [11.033261, 53.909436]\n    ],\n    [\n      [11.031277, 53.911227],\n      [11.031159, 53.911265],\n      [11.031089, 53.911325],\n      [11.031153, 53.911455],\n      [11.031368, 53.911439],\n      [11.031421, 53.91129],\n      [11.031277, 53.911227]\n    ],\n    [\n      [11.029549, 53.911297],\n      [11.029567, 53.911309],\n      [11.02956, 53.911306],\n      [11.029458, 53.911433],\n      [11.029608, 53.911493],\n      [11.02971, 53.911404],\n      [11.029567, 53.911309],\n      [11.029576, 53.911313],\n      [11.029549, 53.911297]\n    ],\n    [\n      [11.02764, 53.911442],\n      [11.027521, 53.911534],\n      [11.027709, 53.911597],\n      [11.027849, 53.911496],\n      [11.02764, 53.911442]\n    ],\n    [\n      [11.034109, 53.912001],\n      [11.033986, 53.912039],\n      [11.034066, 53.912166],\n      [11.034168, 53.912197],\n      [11.034281, 53.912159],\n      [11.034302, 53.912077],\n      [11.034109, 53.912001]\n    ],\n    [\n      [11.029367, 53.913382],\n      [11.029276, 53.913404],\n      [11.029147, 53.91355],\n      [11.029142, 53.91367],\n      [11.02927, 53.913746],\n      [11.029453, 53.913746],\n      [11.029501, 53.91348],\n      [11.029378, 53.913388],\n      [11.029383, 53.913407],\n      [11.029367, 53.913382]\n    ],\n    [\n      [11.035895, 53.913486],\n      [11.035783, 53.913496],\n      [11.03581, 53.913584],\n      [11.036029, 53.913641],\n      [11.036137, 53.913572],\n      [11.035895, 53.913486]\n    ],\n    [\n      [11.032178, 53.913496],\n      [11.03199, 53.913534],\n      [11.031813, 53.913692],\n      [11.031491, 53.913869],\n      [11.031083, 53.913957],\n      [11.03066, 53.914071],\n      [11.030349, 53.914169],\n      [11.029941, 53.914358],\n      [11.029807, 53.914498],\n      [11.029801, 53.914769],\n      [11.029925, 53.914959],\n      [11.030257, 53.915038],\n      [11.030654, 53.915013],\n      [11.031024, 53.91494],\n      [11.031464, 53.914791],\n      [11.031738, 53.914592],\n      [11.032199, 53.914093],\n      [11.032344, 53.913657],\n      [11.032178, 53.913496]\n    ],\n    [\n      [11.034232, 53.91621],\n      [11.034109, 53.916333],\n      [11.034189, 53.916463],\n      [11.034324, 53.916418],\n      [11.034318, 53.916292],\n      [11.034232, 53.91621]\n    ],\n    [\n      [11.028745, 53.916801],\n      [11.028584, 53.916918],\n      [11.028707, 53.917022],\n      [11.028863, 53.917117],\n      [11.0289, 53.917009],\n      [11.028954, 53.916873],\n      [11.028745, 53.916801]\n    ],\n    [\n      [11.035874, 53.917521],\n      [11.035761, 53.917578],\n      [11.036094, 53.917704],\n      [11.036185, 53.917625],\n      [11.035879, 53.917527],\n      [11.035874, 53.917521]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-kinks/test/in/multi-linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [-49.43847656249999, -8.798225459016345],\n        [-39.7705078125, -8.798225459016345],\n        [-39.7705078125, 0.4833927027896987],\n        [-49.43847656249999, 0.4833927027896987],\n        [-49.43847656249999, -8.798225459016345]\n      ],\n      [\n        [-45, -13.795406203132826],\n        [-35.2001953125, -13.795406203132826],\n        [-35.2001953125, -4.083452772038619],\n        [-45, -4.083452772038619],\n        [-45, -13.795406203132826]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-kinks/test/in/multi-polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [-49.43847656249999, -8.798225459016345],\n          [-39.7705078125, -8.798225459016345],\n          [-39.7705078125, 0.4833927027896987],\n          [-49.43847656249999, 0.4833927027896987],\n          [-49.43847656249999, -8.798225459016345]\n        ]\n      ],\n      [\n        [\n          [-45, -13.795406203132826],\n          [-35.2001953125, -13.795406203132826],\n          [-35.2001953125, -4.083452772038619],\n          [-45, -4.083452772038619],\n          [-45, -13.795406203132826]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-kinks/test/in/open-hourglass.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-46.4501953125, -8.298470297067356],\n      [-40.84716796875, -3.754634090910913],\n      [-40.84716796875, -8.581021215641842],\n      [-46.53808593749999, -3.90809888189411]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-kinks/test/in/switzerlandKinked.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"ADMIN\": \"Switzerland\",\n    \"expectedIntersections\": 2\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [8.61743737800009, 47.75731862400008],\n        [8.607618856000101, 47.76225372300013],\n        [8.604104858000142, 47.774397685000025],\n        [8.603174682000088, 47.78731679300003],\n        [8.601624390000069, 47.7946031700001],\n        [8.58312422700007, 47.800235901000036],\n        [8.558216187000085, 47.80116607700009],\n        [8.542299846000077, 47.79501658100011],\n        [8.55160160300008, 47.779255270000135],\n        [8.536512085000084, 47.77408762600004],\n        [8.482665242000053, 47.76685292600007],\n        [8.471503133000112, 47.76705963200004],\n        [8.463648315000086, 47.763907370000084],\n        [8.450109090000097, 47.750471497000035],\n        [8.445458211000044, 47.743185120000135],\n        [8.437913452000089, 47.723186341000115],\n        [8.427268107000117, 47.716468404000096],\n        [8.401946655000131, 47.707089132000135],\n        [8.392128133000142, 47.69951853500007],\n        [8.39099125100006, 47.69212880500007],\n        [8.395228719000102, 47.68481659000008],\n        [8.397709188000078, 47.676289979000074],\n        [8.39130131000013, 47.66546376500011],\n        [8.40701094500011, 47.66156219500007],\n        [8.411971883000149, 47.66104543000003],\n        [8.43760339400012, 47.64784210200014],\n        [8.458273966000121, 47.63988393200009],\n        [8.476050659000066, 47.640400696000114],\n        [8.490830119000066, 47.64556833900011],\n        [8.504679402000136, 47.65226043700005],\n        [8.519665568000107, 47.65735056600002],\n        [8.568241414000113, 47.66293162100004],\n        [8.582194051000101, 47.6613296510001],\n        [8.593588683000092, 47.658168560000036],\n        [8.598213745000066, 47.656885478000106],\n        [8.607308797000115, 47.65629119900004],\n        [8.601624390000069, 47.6325975550001],\n        [8.595113159000107, 47.634819641],\n        [8.594493042000039, 47.64096913700007],\n        [8.593562866000099, 47.642571106000105],\n        [8.589222046000117, 47.64246775400008],\n        [8.583951050000081, 47.64112416600011],\n        [8.580333699000107, 47.63900543200003],\n        [8.578059936000074, 47.63347605400014],\n        [8.579713583000114, 47.62892852900009],\n        [8.582090698000087, 47.625026957000046],\n        [8.582504110000087, 47.62159047500009],\n        [8.581263875000047, 47.614769186000046],\n        [8.581780639000101, 47.60766367700012],\n        [8.580643758000093, 47.600170594000076],\n        [8.576305366000042, 47.595023058000066],\n        [8.574132527000103, 47.59244496700009],\n        [8.560696655000072, 47.58939605700007],\n        [8.551719149000036, 47.59686332900009],\n        [8.54963789900006, 47.59859446200005],\n        [8.53775231900002, 47.61213368800014],\n        [8.522352742000038, 47.621900534000076],\n        [8.492380411000084, 47.619833476000025],\n        [8.46178796400008, 47.606139221],\n        [8.450109090000097, 47.58903432300005],\n        [8.448868856000075, 47.58428009100007],\n        [8.421100326000044, 47.581111870000115],\n        [8.41806970200011, 47.5807660940001],\n        [8.354094279000037, 47.58102447500008],\n        [8.316163777000014, 47.587845764000036],\n        [8.306345255000053, 47.592186585000036],\n        [8.299317260000038, 47.60182423900005],\n        [8.293942912000091, 47.61146189400006],\n        [8.288568562000108, 47.615802715000115],\n        [8.276993042000072, 47.61662953700005],\n        [8.251051473000132, 47.6220038860001],\n        [8.232964721000116, 47.6219522100001],\n        [8.17901452600006, 47.615802715000115],\n        [8.173846883000067, 47.613528951000035],\n        [8.168885946000103, 47.608645528000096],\n        [8.162064656000041, 47.60376210500007],\n        [8.14377119900007, 47.60006724100006],\n        [8.122067098000088, 47.592134908000105],\n        [8.113902221000075, 47.587845764000036],\n        [8.105427286000065, 47.58125701900005],\n        [8.10139652500007, 47.57619272900007],\n        [8.09695235100014, 47.57185190900009],\n        [8.08723718200011, 47.567381897000075],\n        [8.042278686000088, 47.56056060800012],\n        [7.91215743000015, 47.56056060800012],\n        [7.909470256000105, 47.56479807600007],\n        [7.907506551000097, 47.574177348000035],\n        [7.904302613000112, 47.58355662100007],\n        [7.898204794000066, 47.587845764000036],\n        [7.83371260600012, 47.590481263000044],\n        [7.819656616000117, 47.59533884700008],\n        [7.801466512000076, 47.57608937600014],\n        [7.78555017100004, 47.563196106000134],\n        [7.766739949000055, 47.55596140600008],\n        [7.727320447000125, 47.550422624000106],\n        [7.683437540000114, 47.5442566940001],\n        [7.661423380000116, 47.54624623600003],\n        [7.64690103500007, 47.55144523600006],\n        [7.609746948000094, 47.56474639900006],\n        [7.612337281000094, 47.56473104100013],\n        [7.635895223000091, 47.5645913700001],\n        [7.646540568000091, 47.5715418500001],\n        [7.65966638200004, 47.59657908200012],\n        [7.637032104000099, 47.594977112000066],\n        [7.586028488000125, 47.58461854400011],\n        [7.585482836000097, 47.584479135],\n        [7.550319051000116, 47.57549509700007],\n        [7.52634118600011, 47.56645172100011],\n        [7.520866596000104, 47.563416048000136],\n        [7.482726278000058, 47.54226715100006],\n        [7.485103394000106, 47.54159535700006],\n        [7.501743205000139, 47.532965394000115],\n        [7.505153850000056, 47.53301707000014],\n        [7.505463908000138, 47.52301768100003],\n        [7.501123087000082, 47.51730743400006],\n        [7.493061564000072, 47.51549875900008],\n        [7.482726278000058, 47.51699737600009],\n        [7.476938517000093, 47.51487864300012],\n        [7.475594930000028, 47.511726379000066],\n        [7.477765340000104, 47.50769561800007],\n        [7.484896688000049, 47.50090016700011],\n        [7.485776134000076, 47.49876751100004],\n        [7.485930217000146, 47.498393860000135],\n        [7.485826864000103, 47.49578420000012],\n        [7.484483276000049, 47.49294199700006],\n        [7.482726278000058, 47.491262512000105],\n        [7.467430053000101, 47.48190907800006],\n        [7.454510946000113, 47.483200989000096],\n        [7.445995797000137, 47.48688412900012],\n        [7.44148848500015, 47.48883372000003],\n        [7.425985555000068, 47.49250274700003],\n        [7.414306681000085, 47.490177307000096],\n        [7.414410034000099, 47.484027812000136],\n        [7.419474325000095, 47.477852478000045],\n        [7.422781616000094, 47.475423686000084],\n        [7.427639200000101, 47.47074696900012],\n        [7.429292847000056, 47.4651142380001],\n        [7.426088908000082, 47.45576080300006],\n        [7.420563120000111, 47.450857028000115],\n        [7.406348511000118, 47.438242493000075],\n        [7.388218887000107, 47.43328886000012],\n        [7.37854659000007, 47.430646058000036],\n        [7.336930048000085, 47.43185368000013],\n        [7.309093465000103, 47.43266143800008],\n        [7.28263513200011, 47.42888905900014],\n        [7.244807984000119, 47.41772694900001],\n        [7.2380900470001, 47.41679677300007],\n        [7.230338583000105, 47.41901886100007],\n        [7.226307820000102, 47.422636211000054],\n        [7.223517293000043, 47.426227723000125],\n        [7.219383179000118, 47.42847564700014],\n        [7.190030965000034, 47.43472849600005],\n        [7.168326863000061, 47.44356516500005],\n        [7.1626424560001, 47.45989491800006],\n        [7.180832560000056, 47.48826528000009],\n        [7.15365075700015, 47.48640492800007],\n        [7.142169389000088, 47.487650968000054],\n        [7.140318237000116, 47.487851868000064],\n        [7.127295776000096, 47.49294199700006],\n        [7.103731323000091, 47.49627512600006],\n        [7.053915242000073, 47.49038401300007],\n        [7.027973674000094, 47.49294199700006],\n        [7.018878621000056, 47.49767039000005],\n        [7.009783569000149, 47.49924652200008],\n        [7.000791870000114, 47.49767039000005],\n        [6.991903524000094, 47.49294199700006],\n        [6.973300008000138, 47.489092103000104],\n        [6.975780477000114, 47.47795583100009],\n        [6.986115763000043, 47.46413238500011],\n        [6.990973348000068, 47.45222096800009],\n        [6.983428589000113, 47.44379770900011],\n        [6.968545777000145, 47.43519358300006],\n        [6.952319376000048, 47.428837383000115],\n        [6.926067749000112, 47.42485829700004],\n        [6.924517456000103, 47.40599640000002],\n        [6.898782593000107, 47.39571279000003],\n        [6.884003133000078, 47.382586976000056],\n        [6.871600789000127, 47.3669548550001],\n        [6.866639852000077, 47.354164937000036],\n        [6.985598999000104, 47.362123108000105],\n        [7.003995809000088, 47.36814341300004],\n        [7.018878621000056, 47.3599010210001],\n        [7.033864787000113, 47.350650940000094],\n        [7.044303426000056, 47.340496521000034],\n        [7.036551961000043, 47.32951527900005],\n        [7.027146850000094, 47.32543284100004],\n        [7.016914917000094, 47.3235208130001],\n        [7.00647627800015, 47.319360860000074],\n        [6.991903524000094, 47.30595082700006],\n        [6.986529174000054, 47.30450388700007],\n        [6.97743412300008, 47.303728739000036],\n        [6.958623901000067, 47.29055125000005],\n        [6.952216024000023, 47.27003570500008],\n        [6.956246785000104, 47.24523101800014],\n        [6.88834395300006, 47.211305441000036],\n        [6.859301798000075, 47.1909190880001],\n        [6.840284871000108, 47.169525045000086],\n        [6.838076256000079, 47.16813159700007],\n        [6.774759155000112, 47.128183899000135],\n        [6.744786824000073, 47.121052551000105],\n        [6.746027059000113, 47.10394765300006],\n        [6.731661011000085, 47.098883363000084],\n        [6.727940307000097, 47.097126363000115],\n        [6.724219604000069, 47.09077016200007],\n        [6.699104858000055, 47.08462066700011],\n        [6.689699747000105, 47.07829030400009],\n        [6.676263875000132, 47.06239980100008],\n        [6.688252807000112, 47.04384796100004],\n        [6.665411824000103, 47.0212911990001],\n        [6.598697550000082, 46.986538798000055],\n        [6.491107218000138, 46.96338775700008],\n        [6.442634725000062, 46.944164124000054],\n        [6.427751913000122, 46.909075827],\n        [6.431886027000132, 46.900032451000044],\n        [6.445218546000064, 46.882617493000026],\n        [6.448422486000141, 46.871558737000015],\n        [6.4467688390001, 46.85770945300007],\n        [6.443117662000049, 46.8514551210001],\n        [6.441187785000068, 46.84814931300005],\n        [6.434263143000095, 46.83954518700011],\n        [6.418553507000127, 46.80701487200008],\n        [6.417106568000122, 46.802157288000075],\n        [6.419897095000096, 46.796524557000026],\n        [6.425168090000113, 46.79161529600009],\n        [6.432609497000044, 46.78598256500007],\n        [6.433022908000055, 46.76911021000009],\n        [6.429198853000116, 46.760816142000124],\n        [6.417933390000144, 46.75110097300009],\n        [6.407391398000101, 46.745700786000015],\n        [6.374215128000088, 46.73360850100005],\n        [6.347860148000109, 46.71317047200009],\n        [6.337938273000106, 46.70740855000011],\n        [6.266314738000062, 46.68035593700006],\n        [6.131852661000039, 46.59560658800004],\n        [6.118416789000065, 46.58346262600014],\n        [6.12151737500011, 46.57028513700007],\n        [6.145701945000099, 46.5516299440001],\n        [6.110355265000095, 46.52083079000002],\n        [6.075525349000117, 46.479592998000015],\n        [6.064156535000052, 46.47111806300012],\n        [6.060229126000081, 46.46502024400007],\n        [6.060229126000081, 46.45990427700008],\n        [6.062399536000072, 46.45520172200008],\n        [6.064776652000091, 46.451067607000056],\n        [6.065500122000088, 46.447992859000124],\n        [6.065500122000088, 46.44037058600006],\n        [6.06756717900015, 46.433600973000125],\n        [6.065706827000071, 46.42701222800014],\n        [6.054234660000134, 46.41941579200008],\n        [6.059019361000082, 46.4173832110001],\n        [6.108184855000104, 46.39649729400014],\n        [6.12286096200009, 46.38554189100006],\n        [6.135056600000098, 46.37040069600005],\n        [6.136400187000078, 46.359341940000036],\n        [6.118607037000089, 46.3317710850001],\n        [6.104050740000076, 46.30921580000012],\n        [6.100743448000088, 46.30141265900011],\n        [6.093612101000133, 46.27309397400012],\n        [6.093095337000108, 46.26229360000008],\n        [6.094025513000133, 46.253043518000055],\n        [6.089684692000077, 46.24637725900004],\n        [6.067670532000079, 46.24162302700006],\n        [6.061882772000104, 46.24115793900003],\n        [6.055888305000082, 46.241674704000076],\n        [6.048033488000044, 46.243431702000066],\n        [6.04617313600005, 46.24353505500008],\n        [6.044519491000102, 46.243431702000066],\n        [6.042865844000062, 46.243069967000054],\n        [5.982921183000144, 46.22270945200012],\n        [5.958529907000127, 46.2119607540001],\n        [5.954809204000128, 46.199920146000125],\n        [5.965247843000071, 46.186225891000106],\n        [5.982921183000144, 46.170826314000124],\n        [5.979820597000128, 46.16224802700009],\n        [5.972172485000044, 46.152171122000055],\n        [5.958839966000113, 46.13046702100007],\n        [5.982921183000144, 46.140440572000074],\n        [6.028293090000091, 46.14793365500009],\n        [6.073871704000084, 46.14917389000004],\n        [6.107874796000118, 46.13863189700007],\n        [6.140327596000134, 46.150207418000036],\n        [6.191383911000088, 46.1917035940001],\n        [6.255359335000094, 46.22110748400007],\n        [6.281197550000115, 46.24007273400014],\n        [6.276029907000094, 46.263120423],\n        [6.269001912000078, 46.265239156000064],\n        [6.252258748000145, 46.259916484000115],\n        [6.241820109000116, 46.263688864000045],\n        [6.237582642000064, 46.2679263310001],\n        [6.227970825000057, 46.28446278900009],\n        [6.227454060000099, 46.2884935510001],\n        [6.21825565600011, 46.30549509700012],\n        [6.214121541000083, 46.31546864900011],\n        [6.219495890000133, 46.32911122700003],\n        [6.240579874000076, 46.34895497700012],\n        [6.269105265000121, 46.3750257370001],\n        [6.301558065000052, 46.394481914000096],\n        [6.332357218000112, 46.40138071700008],\n        [6.365223430000128, 46.40244008400006],\n        [6.397676229000069, 46.4081761680001],\n        [6.482942342000115, 46.44858713800008],\n        [6.547021118000117, 46.457372132000074],\n        [6.613683716000139, 46.45589935400008],\n        [6.762666870000118, 46.42926015200004],\n        [6.77771555400011, 46.42410649300004],\n        [6.777756388000114, 46.42409250900005],\n        [6.787058146000049, 46.41417063500003],\n        [6.78810673300012, 46.40500797800007],\n        [6.789228556000126, 46.395205383000075],\n        [6.782097209000114, 46.37846222000013],\n        [6.755742228000145, 46.357068177000116],\n        [6.750367879000095, 46.34551849400009],\n        [6.769488159000076, 46.32267751100008],\n        [6.804938192000094, 46.2966067510001],\n        [6.827675822000089, 46.26947662400002],\n        [6.792225789000071, 46.22167592400004],\n        [6.774862508000126, 46.185864156],\n        [6.765664103000034, 46.1516026810001],\n        [6.774345743000083, 46.134807841000054],\n        [6.853927449000111, 46.12261220300013],\n        [6.869223673000079, 46.112328593000115],\n        [6.868190144000096, 46.10468048200005],\n        [6.861162150000098, 46.09703236900006],\n        [6.853100627000089, 46.09021108100012],\n        [6.848553100000061, 46.08504343700011],\n        [6.851343628000109, 46.086025290000094],\n        [6.853100627000089, 46.07610341400007],\n        [6.853410685000085, 46.065664775000045],\n        [6.851963745000091, 46.06468292200009],\n        [6.852377156000102, 46.056931458000065],\n        [6.850310099000126, 46.05274566700004],\n        [6.850930216000108, 46.04964508100011],\n        [6.859715210000104, 46.04499420200003],\n        [6.869223673000079, 46.044064026000086],\n        [6.876871786000066, 46.04809478800007],\n        [6.884003133000078, 46.053210755000066],\n        [6.892374715000074, 46.055587871000114],\n        [6.91511234500004, 46.048611553000114],\n        [6.982808471000055, 45.995384827000066],\n        [6.987666056000052, 45.99311106400003],\n        [6.991283406000122, 45.98246571900006],\n        [7.002755575000066, 45.961691793000085],\n        [7.009783569000149, 45.943398336000115],\n        [7.015157918000114, 45.93332143100008],\n        [7.022082560000115, 45.925259909],\n        [7.066937703000093, 45.89022328800007],\n        [7.090192097000113, 45.88050811800014],\n        [7.120887899000138, 45.876115621000054],\n        [7.153547404000022, 45.876529033000054],\n        [7.183726440000044, 45.88045644200011],\n        [7.245428100000083, 45.898129782000126],\n        [7.273540079000043, 45.91027374300003],\n        [7.286665893000105, 45.913426005000076],\n        [7.361803426000108, 45.90784495100007],\n        [7.393842814000038, 45.91569976800011],\n        [7.452960652000087, 45.94587880500009],\n        [7.482726278000058, 45.95487050400004],\n        [7.503706909000073, 45.956730855000046],\n        [7.514662312000041, 45.966704407000066],\n        [7.524377482000091, 45.97807322300005],\n        [7.541120646000138, 45.98411936500008],\n        [7.643026571000121, 45.96634267200005],\n        [7.6587362060001, 45.96003814700006],\n        [7.673722371000054, 45.950322978000116],\n        [7.692532593000067, 45.93120269800002],\n        [7.693979533000061, 45.92867055300013],\n        [7.706278523, 45.92572499700012],\n        [7.714650105000089, 45.92712026],\n        [7.72219486500012, 45.92960072800008],\n        [7.732013387000109, 45.930375875000095],\n        [7.780072469000061, 45.91812856100006],\n        [7.807564331000037, 45.91849029600007],\n        [7.825444376000093, 45.91466623900004],\n        [7.831232137000143, 45.91445953400006],\n        [7.843737833000148, 45.91921376600007],\n        [7.846114949000111, 45.92257273300007],\n        [7.845288127000089, 45.927792053000076],\n        [7.848388712000116, 45.93807566300009],\n        [7.84962011600004, 45.939712062000126],\n        [7.870201292731366, 45.94036963077022],\n        [7.872917431422025, 45.95938260160503],\n        [7.8837819861848, 45.97386867462197],\n        [7.898204794000066, 45.9819489540001],\n        [7.969104858000037, 45.99311106400003],\n        [7.978716674000026, 45.995178121000095],\n        [7.985848022000084, 45.99931223600004],\n        [7.998353719000079, 46.01062937500009],\n        [7.999077189000076, 46.012799784000094],\n        [8.008792358000107, 46.02768259700014],\n        [8.010652710000102, 46.02969797800009],\n        [8.015923706000137, 46.058171692000116],\n        [8.016027059000066, 46.06938547800007],\n        [8.018197469000143, 46.080857646000084],\n        [8.025328817000087, 46.09114125600007],\n        [8.035354044000115, 46.096515605000036],\n        [8.056024617000048, 46.098065898000044],\n        [8.066876668000077, 46.10059804300005],\n        [8.110594930000076, 46.12695302300011],\n        [8.132299032000077, 46.1593541470001],\n        [8.129508504000114, 46.19604441300007],\n        [8.099949585000076, 46.23562856100003],\n        [8.076591837000109, 46.24973622600007],\n        [8.073077840000082, 46.253611959000125],\n        [8.07731530700002, 46.26203521800011],\n        [8.087340535000038, 46.27180206300005],\n        [8.106874227000048, 46.28554799500009],\n        [8.128474975000131, 46.29247263600007],\n        [8.171883178000115, 46.299190573],\n        [8.192553752000038, 46.30916412400012],\n        [8.241749715000111, 46.35412262000003],\n        [8.270068400000099, 46.364044495000115],\n        [8.28154056800011, 46.37011647500006],\n        [8.291462443000114, 46.37835886600001],\n        [8.297456909000033, 46.387505596000096],\n        [8.297043497000118, 46.397634176000054],\n        [8.290428914000131, 46.40112233500008],\n        [8.286604859000079, 46.40535980300004],\n        [8.294976441000074, 46.418046366000084],\n        [8.316267130000142, 46.43365264900004],\n        [8.343448934000037, 46.44388458300011],\n        [8.385906925000114, 46.4502060180001],\n        [8.399156128000072, 46.452178650000064],\n        [8.427888224000071, 46.448690491000036],\n        [8.441634155000116, 46.434944560000076],\n        [8.445768270000116, 46.412361959000066],\n        [8.446285034000084, 46.382182923000045],\n        [8.442874389000053, 46.353373312000116],\n        [8.426647990000049, 46.30156768800006],\n        [8.423237345000103, 46.275832825000066],\n        [8.427164754000074, 46.25144154900002],\n        [8.43812015800006, 46.23537017800007],\n        [8.456516968000045, 46.2248281870001],\n        [8.482665242000053, 46.217541809000124],\n        [8.510260457000072, 46.20787831700008],\n        [8.538682495000074, 46.18762115500007],\n        [8.601831095000136, 46.122818909000074],\n        [8.611546264000083, 46.11935658800013],\n        [8.630873250000121, 46.11470570900008],\n        [8.67748539200008, 46.09579213500004],\n        [8.695055379000081, 46.095172018000056],\n        [8.702186727000111, 46.097962545000115],\n        [8.717689656000118, 46.10752268500002],\n        [8.723890828000094, 46.109538066000084],\n        [8.728983368000115, 46.10823310300009],\n        [8.732159057000047, 46.10741933200009],\n        [8.739497111000048, 46.098065898000044],\n        [8.747145223000103, 46.09444854800006],\n        [8.763164917000068, 46.09289825500005],\n        [8.793860717000115, 46.093415019000076],\n        [8.8089502360001, 46.08974599300009],\n        [8.834375041000015, 46.06638824500004],\n        [8.819595581000101, 46.04292714500008],\n        [8.790966838000116, 46.018690898000074],\n        [8.773396850000069, 45.99057891900014],\n        [8.769572794000112, 45.98577301000006],\n        [8.767919149000079, 45.983085836000015],\n        [8.785075724000109, 45.982310690000105],\n        [8.800371948000077, 45.97853831000009],\n        [8.857732788000078, 45.95709259100005],\n        [8.86445072400008, 45.95342356400005],\n        [8.870961954000052, 45.947067363000116],\n        [8.88078047600004, 45.93109934500009],\n        [8.89814375800006, 45.909550273000036],\n        [8.906515340000112, 45.896476135000086],\n        [8.91209639400003, 45.883401998000124],\n        [8.9137500410001, 45.866090393000036],\n        [8.909719279000086, 45.853688050000045],\n        [8.903724812000064, 45.84180247000012],\n        [8.900004109000065, 45.826402893000136],\n        [8.93958825700011, 45.83482615200003],\n        [8.972351115, 45.82464589500006],\n        [9.002426798000073, 45.820718486],\n        [9.034362834000149, 45.84810699500014],\n        [9.05927087400002, 45.88195505800013],\n        [9.063094930000148, 45.89895660400006],\n        [9.051726115000065, 45.91554473900007],\n        [9.042321004000115, 45.919730530000095],\n        [9.0205135490001, 45.92277944000003],\n        [9.010798380000068, 45.92665517200007],\n        [9.001703329000094, 45.93606028300013],\n        [8.993435099000124, 45.95425038700009],\n        [8.982686401000109, 45.96184682200004],\n        [8.980515991000118, 45.964378968000034],\n        [8.979792521000121, 45.96691111300004],\n        [8.980515991000118, 45.969494934000124],\n        [8.982686401000109, 45.9719754030001],\n        [9.015552612000135, 45.99311106400003],\n        [8.997775919000105, 46.02794097900011],\n        [9.002116740000105, 46.039309795000094],\n        [9.027748250000059, 46.05310740200014],\n        [9.049659057000014, 46.05791331000006],\n        [9.059167521000091, 46.061789043],\n        [9.067125692000076, 46.07114247700014],\n        [9.07032963100005, 46.083441467000085],\n        [9.068159220000041, 46.1059723920001],\n        [9.072086629000097, 46.1188915000001],\n        [9.090586792000124, 46.13816680900004],\n        [9.163243856000065, 46.17227325500002],\n        [9.16378802500006, 46.17298926700002],\n        [9.171098673000103, 46.182608541000036],\n        [9.17574955200007, 46.194132385000046],\n        [9.181330607000092, 46.20405426000005],\n        [9.192182658000121, 46.20963531500007],\n        [9.2041715900001, 46.21356272400004],\n        [9.215747111000042, 46.221055807000084],\n        [9.224842163000119, 46.23118438700004],\n        [9.239724975000058, 46.266996155000044],\n        [9.2689738360001, 46.30937083000006],\n        [9.275175008000076, 46.33138499000006],\n        [9.273831420000107, 46.344252421000135],\n        [9.260395548000076, 46.379728292000095],\n        [9.260292195000147, 46.39401682600007],\n        [9.262876017000053, 46.40662587500009],\n        [9.26091231300012, 46.41665110300002],\n        [9.247579794000103, 46.423033142000065],\n        [9.237967977000068, 46.436546530000015],\n        [9.245822794000105, 46.461041158000086],\n        [9.263186076000125, 46.48512237600002],\n        [9.282306355000117, 46.497369691000046],\n        [9.330985555000069, 46.501503805000084],\n        [9.350829305000047, 46.49786061600008],\n        [9.35155277500013, 46.48548411100012],\n        [9.377080933000087, 46.468689270000056],\n        [9.384625691000025, 46.46641550800004],\n        [9.395477742000082, 46.46941274000005],\n        [9.400335327000107, 46.475407207000075],\n        [9.403849324000134, 46.482512716000116],\n        [9.41067061400011, 46.488894756000036],\n        [9.426793660000072, 46.497111308000086],\n        [9.434648478000014, 46.49832570400011],\n        [9.437852417000101, 46.49204701800011],\n        [9.443846883000106, 46.396135559000044],\n        [9.442399943000112, 46.38089101200009],\n        [9.444363648000149, 46.37528411900007],\n        [9.451598348000118, 46.37037485800005],\n        [9.47371586100013, 46.361874085000125],\n        [9.482604207000065, 46.35680979400007],\n        [9.502551310000058, 46.32073964500006],\n        [9.51526371300011, 46.30859568300005],\n        [9.536451050000068, 46.29862213200005],\n        [9.559705444000087, 46.29273101800004],\n        [9.674323771000047, 46.2918008420001],\n        [9.693133992000043, 46.297071839000125],\n        [9.708430217000114, 46.31174794600011],\n        [9.708843628000125, 46.31962860100006],\n        [9.707293335000088, 46.33097157900005],\n        [9.709257039000136, 46.34239207000013],\n        [9.72010909000008, 46.350892843000054],\n        [9.730857788000094, 46.35071197500011],\n        [9.755249064000026, 46.340531718000136],\n        [9.768064819000102, 46.338619690000115],\n        [9.78883874500005, 46.34329640800007],\n        [9.855397990000142, 46.3669642130001],\n        [9.899012899000098, 46.37215769500003],\n        [9.918443237000076, 46.37115000400004],\n        [9.939010457000052, 46.36745514000006],\n        [9.96402185100007, 46.356086325000064],\n        [9.970636434000141, 46.33980824900004],\n        [9.971049846000057, 46.32001617500006],\n        [9.977561076000114, 46.29810536700009],\n        [9.99223718200011, 46.284359436000074],\n        [10.031717977000142, 46.26007151300007],\n        [10.041846557000099, 46.243069967000054],\n        [10.04267338000011, 46.220487366000015],\n        [10.075746297000109, 46.2200222780001],\n        [10.11791426600007, 46.231132711000015],\n        [10.145819539000058, 46.24332834900011],\n        [10.15894535300012, 46.26244862900012],\n        [10.14612959800013, 46.28027699800006],\n        [10.104891805000136, 46.30937083000006],\n        [10.095796753000059, 46.32053293900009],\n        [10.091765991000074, 46.3289561980001],\n        [10.092386108000113, 46.33810292600006],\n        [10.097450398000092, 46.35164215100005],\n        [10.104995158000065, 46.3613573210001],\n        [10.125975789000051, 46.374379782000034],\n        [10.133210490000124, 46.381097717000046],\n        [10.14075524900008, 46.40290517200009],\n        [10.133417195000078, 46.41401560500009],\n        [10.11615726700009, 46.418821514000115],\n        [10.071405477000042, 46.424815980000034],\n        [10.04205326300007, 46.43272247400009],\n        [10.026343627000074, 46.446261699000075],\n        [10.04401696800008, 46.46698394800009],\n        [10.035335327000041, 46.4710663860001],\n        [10.03047774300012, 46.476673279000124],\n        [10.028100627000072, 46.48393381800008],\n        [10.026860392000117, 46.493183900000105],\n        [10.031201212000099, 46.503829245000105],\n        [10.03140791900006, 46.52579172800006],\n        [10.032751506000125, 46.532974752000115],\n        [10.041329793000074, 46.541863098000135],\n        [10.062930542000117, 46.55674591100009],\n        [10.07119877100007, 46.56439402300006],\n        [10.083497762000121, 46.5970018510001],\n        [10.087838582000103, 46.60439158200012],\n        [10.097450398000092, 46.6080347700001],\n        [10.192121623000048, 46.62681915400012],\n        [10.21785648600013, 46.626974182000055],\n        [10.233772827000053, 46.61798248400004],\n        [10.235736531000072, 46.606691183000066],\n        [10.230258830000082, 46.58614980100006],\n        [10.234703003000106, 46.57529775000012],\n        [10.27594079500011, 46.56553090500006],\n        [10.283795614000041, 46.56072499600006],\n        [10.28906660900006, 46.55568654400008],\n        [10.295371135000096, 46.55108734100014],\n        [10.306636597000136, 46.54749582900007],\n        [10.319452351000024, 46.546048889000076],\n        [10.354282267000087, 46.5483226530001],\n        [10.425905803000148, 46.53532603000005],\n        [10.443992554000147, 46.5377289840001],\n        [10.45183267900012, 46.546701572000075],\n        [10.457945190000146, 46.553697001000046],\n        [10.465903361000102, 46.57847585100009],\n        [10.466626831000013, 46.604288229000105],\n        [10.459082072000058, 46.62356353800004],\n        [10.438204793000097, 46.635655823000036],\n        [10.395623413000123, 46.63880808500008],\n        [10.377536662000097, 46.653277486],\n        [10.36916508000013, 46.6723977660001],\n        [10.373919312000112, 46.681906230000095],\n        [10.384771363000084, 46.68901173900011],\n        [10.394383179000073, 46.70081980400002],\n        [10.396553588000074, 46.715004984000075],\n        [10.395623413000123, 46.72639963900008],\n        [10.399654175000109, 46.73554636700007],\n        [10.41660404400011, 46.743013611000094],\n        [10.42869633, 46.75564849900013],\n        [10.426215861000031, 46.76942026800006],\n        [10.419084513000087, 46.7839671830001],\n        [10.417224162000082, 46.798849997000076],\n        [10.439031616000108, 46.81688507100006],\n        [10.444922730000116, 46.823241272000075],\n        [10.4485400800001, 46.832232971000025],\n        [10.453811076000136, 46.86442738900007],\n        [10.451433960000088, 46.88576975600009],\n        [10.46383630300005, 46.919747009000105],\n        [10.458461955000104, 46.9366193650001],\n        [10.449573608000094, 46.943905742000084],\n        [10.41557051600006, 46.96240590500011],\n        [10.39469323700007, 46.98540191600006],\n        [10.384357950000066, 46.992998352000114],\n        [10.384357950000066, 46.99315338200006],\n        [10.384254598000041, 46.99315338200006],\n        [10.37898360200009, 46.99550465900009],\n        [10.373402547000097, 46.99625396700009],\n        [10.367924846000108, 46.99550465900009],\n        [10.338882691000094, 46.984110006000094],\n        [10.313664592000066, 46.9643179330001],\n        [10.296197957000118, 46.94137359700008],\n        [10.295681193000064, 46.92269256600011],\n        [10.27077315200009, 46.9218915810001],\n        [10.251342814000111, 46.92537974000004],\n        [10.235116415000107, 46.92331268400008],\n        [10.219923543000078, 46.90576853500011],\n        [10.215169311000096, 46.89310780900007],\n        [10.214342488000057, 46.88468455000009],\n        [10.21165531400004, 46.87703643800009],\n        [10.201423381000069, 46.86683034300003],\n        [10.157808471000095, 46.85161163400011],\n        [10.131970255000084, 46.84657318200004],\n        [10.125187508000124, 46.84675122900012],\n        [10.111299683000084, 46.84711578400007],\n        [10.068098185000025, 46.85662424800006],\n        [10.045567260000098, 46.865564271000096],\n        [10.006913289000096, 46.890756531000136],\n        [9.899943075000039, 46.91439849900007],\n        [9.875138387000106, 46.92742096000009],\n        [9.86242598400014, 46.93977162700014],\n        [9.860772339000107, 46.9491508990001],\n        [9.86397627800008, 46.95992543600002],\n        [9.86645674600004, 46.9833865360001],\n        [9.870590861000068, 46.99294667600009],\n        [9.870590861000068, 46.998837790000096],\n        [9.866766805000026, 47.00193837500004],\n        [9.860565633000135, 47.00160247800005],\n        [9.856328165000093, 47.004082947000114],\n        [9.857981812000048, 47.015477600000025],\n        [9.669052775000097, 47.05619862900008],\n        [9.65230961100005, 47.05792979000006],\n        [9.599909709000116, 47.053485616000046],\n        [9.581202840000032, 47.05687042300008],\n        [9.560635620000141, 47.052400412000054],\n        [9.499554077000141, 47.05935089100004],\n        [9.477023153000118, 47.063898417000075],\n        [9.475886271000121, 47.07322601400011],\n        [9.487565145000104, 47.08394887400004],\n        [9.50286136800014, 47.09469757200014],\n        [9.512369832000047, 47.108030091000074],\n        [9.511853068000107, 47.12937245700007],\n        [9.503481486000112, 47.145392151000124],\n        [9.492629435000083, 47.159809876000054],\n        [9.484981323000085, 47.17634633400013],\n        [9.487358439000047, 47.210013529000065],\n        [9.504618368000138, 47.243732402000035],\n        [9.52115482500011, 47.262801005000114],\n        [9.553297567000072, 47.2998530080001],\n        [9.587404012000121, 47.327809957000085],\n        [9.591228068000078, 47.33468292300006],\n        [9.59639571100007, 47.35230458600003],\n        [9.601046590000124, 47.36127044700007],\n        [9.639803914000055, 47.394524231000105],\n        [9.649519084000104, 47.40971710300005],\n        [9.650345907000116, 47.45209177700005],\n        [9.621717163000142, 47.46919667600011],\n        [9.584510132000048, 47.48072052100014],\n        [9.554951212000105, 47.51089955700013],\n        [9.553058591000081, 47.51689133800011],\n        [9.547481674000068, 47.53454710200006],\n        [9.273211304000142, 47.65009002700006],\n        [9.234350627000083, 47.65616200800011],\n        [9.197616577148438, 47.66030040335958],\n        [9.183397664000069, 47.670424704000084],\n        [9.177017211914062, 47.68503683547121],\n        [9.149208068847656, 47.68734805244341],\n        [9.22645568847656, 47.65475043477393],\n        [8.981756225000055, 47.66215647400011],\n        [8.945376017000086, 47.65430165600009],\n        [8.906205281000041, 47.65179534900011],\n        [8.881710652000095, 47.65613617000008],\n        [8.8526684980001, 47.67078643800008],\n        [8.851935119000075, 47.67128172300011],\n        [8.837785685000142, 47.680837504000095],\n        [8.837682333000117, 47.687787985000085],\n        [8.856079142000112, 47.690681864000084],\n        [8.830240926000101, 47.707192485000064],\n        [8.797581420000114, 47.720034079000044],\n        [8.77070967600011, 47.720860901000066],\n        [8.761717977000075, 47.70124969500006],\n        [8.769882853000098, 47.69507436100008],\n        [8.71706954000004, 47.69455759700011],\n        [8.715105835000116, 47.701068827000086],\n        [8.712625366000054, 47.708691101000085],\n        [8.70466719500007, 47.71533152300009],\n        [8.700429728000131, 47.723496399000084],\n        [8.70373702000012, 47.73003346800007],\n        [8.71706954000004, 47.743546855000034],\n        [8.719756714000084, 47.74731923400006],\n        [8.71314213000008, 47.757421977],\n        [8.703323608000119, 47.758713887000056],\n        [8.692264852000108, 47.75716359500004],\n        [8.681929565000104, 47.75873972600007],\n        [8.674488159000077, 47.766697897000114],\n        [8.66663334200004, 47.778273417000065],\n        [8.657021525000118, 47.78811777800004],\n        [8.644102417000113, 47.79101165800003],\n        [8.635007365000149, 47.78460378000008],\n        [8.629839721000053, 47.762796326000085],\n        [8.61743737800009, 47.75731862400008]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-kinks/test/in/triple.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-50, 5],\n        [-40, 5],\n        [-50, 0],\n        [-40, -5],\n        [-50, -10],\n        [-40, -10],\n        [-50, -5],\n        [-40, 0],\n        [-50, 5]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-kinks/test/out/hourglass.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-45, -2.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, 5],\n            [-40, -10],\n            [-50, -10],\n            [-40, 5],\n            [-50, 5]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-kinks/test/out/issue-2627.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.029567, 53.911309]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.029567, 53.911309]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.029567, 53.911309]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-kinks/test/out/multi-linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-45, -8.798225459016345]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-39.7705078125, -4.08345277203862]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-49.43847656249999, -8.798225459016345],\n            [-39.7705078125, -8.798225459016345],\n            [-39.7705078125, 0.4833927027896987],\n            [-49.43847656249999, 0.4833927027896987],\n            [-49.43847656249999, -8.798225459016345]\n          ],\n          [\n            [-45, -13.795406203132826],\n            [-35.2001953125, -13.795406203132826],\n            [-35.2001953125, -4.083452772038619],\n            [-45, -4.083452772038619],\n            [-45, -13.795406203132826]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-kinks/test/out/multi-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-45, -8.798225459016345]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-39.7705078125, -4.08345277203862]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-49.43847656249999, -8.798225459016345],\n              [-39.7705078125, -8.798225459016345],\n              [-39.7705078125, 0.4833927027896987],\n              [-49.43847656249999, 0.4833927027896987],\n              [-49.43847656249999, -8.798225459016345]\n            ]\n          ],\n          [\n            [\n              [-45, -13.795406203132826],\n              [-35.2001953125, -13.795406203132826],\n              [-35.2001953125, -4.083452772038619],\n              [-45, -4.083452772038619],\n              [-45, -13.795406203132826]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-kinks/test/out/open-hourglass.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-43.80436774036952, -6.152807536577017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-46.4501953125, -8.298470297067356],\n          [-40.84716796875, -3.754634090910913],\n          [-40.84716796875, -8.581021215641842],\n          [-46.53808593749999, -3.90809888189411]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-kinks/test/out/switzerlandKinked.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.219017027587402, 47.657889465138915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.182061729855718, 47.67348418083509]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"ADMIN\": \"Switzerland\",\n        \"expectedIntersections\": 2\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.61743737800009, 47.75731862400008],\n            [8.607618856000101, 47.76225372300013],\n            [8.604104858000142, 47.774397685000025],\n            [8.603174682000088, 47.78731679300003],\n            [8.601624390000069, 47.7946031700001],\n            [8.58312422700007, 47.800235901000036],\n            [8.558216187000085, 47.80116607700009],\n            [8.542299846000077, 47.79501658100011],\n            [8.55160160300008, 47.779255270000135],\n            [8.536512085000084, 47.77408762600004],\n            [8.482665242000053, 47.76685292600007],\n            [8.471503133000112, 47.76705963200004],\n            [8.463648315000086, 47.763907370000084],\n            [8.450109090000097, 47.750471497000035],\n            [8.445458211000044, 47.743185120000135],\n            [8.437913452000089, 47.723186341000115],\n            [8.427268107000117, 47.716468404000096],\n            [8.401946655000131, 47.707089132000135],\n            [8.392128133000142, 47.69951853500007],\n            [8.39099125100006, 47.69212880500007],\n            [8.395228719000102, 47.68481659000008],\n            [8.397709188000078, 47.676289979000074],\n            [8.39130131000013, 47.66546376500011],\n            [8.40701094500011, 47.66156219500007],\n            [8.411971883000149, 47.66104543000003],\n            [8.43760339400012, 47.64784210200014],\n            [8.458273966000121, 47.63988393200009],\n            [8.476050659000066, 47.640400696000114],\n            [8.490830119000066, 47.64556833900011],\n            [8.504679402000136, 47.65226043700005],\n            [8.519665568000107, 47.65735056600002],\n            [8.568241414000113, 47.66293162100004],\n            [8.582194051000101, 47.6613296510001],\n            [8.593588683000092, 47.658168560000036],\n            [8.598213745000066, 47.656885478000106],\n            [8.607308797000115, 47.65629119900004],\n            [8.601624390000069, 47.6325975550001],\n            [8.595113159000107, 47.634819641],\n            [8.594493042000039, 47.64096913700007],\n            [8.593562866000099, 47.642571106000105],\n            [8.589222046000117, 47.64246775400008],\n            [8.583951050000081, 47.64112416600011],\n            [8.580333699000107, 47.63900543200003],\n            [8.578059936000074, 47.63347605400014],\n            [8.579713583000114, 47.62892852900009],\n            [8.582090698000087, 47.625026957000046],\n            [8.582504110000087, 47.62159047500009],\n            [8.581263875000047, 47.614769186000046],\n            [8.581780639000101, 47.60766367700012],\n            [8.580643758000093, 47.600170594000076],\n            [8.576305366000042, 47.595023058000066],\n            [8.574132527000103, 47.59244496700009],\n            [8.560696655000072, 47.58939605700007],\n            [8.551719149000036, 47.59686332900009],\n            [8.54963789900006, 47.59859446200005],\n            [8.53775231900002, 47.61213368800014],\n            [8.522352742000038, 47.621900534000076],\n            [8.492380411000084, 47.619833476000025],\n            [8.46178796400008, 47.606139221],\n            [8.450109090000097, 47.58903432300005],\n            [8.448868856000075, 47.58428009100007],\n            [8.421100326000044, 47.581111870000115],\n            [8.41806970200011, 47.5807660940001],\n            [8.354094279000037, 47.58102447500008],\n            [8.316163777000014, 47.587845764000036],\n            [8.306345255000053, 47.592186585000036],\n            [8.299317260000038, 47.60182423900005],\n            [8.293942912000091, 47.61146189400006],\n            [8.288568562000108, 47.615802715000115],\n            [8.276993042000072, 47.61662953700005],\n            [8.251051473000132, 47.6220038860001],\n            [8.232964721000116, 47.6219522100001],\n            [8.17901452600006, 47.615802715000115],\n            [8.173846883000067, 47.613528951000035],\n            [8.168885946000103, 47.608645528000096],\n            [8.162064656000041, 47.60376210500007],\n            [8.14377119900007, 47.60006724100006],\n            [8.122067098000088, 47.592134908000105],\n            [8.113902221000075, 47.587845764000036],\n            [8.105427286000065, 47.58125701900005],\n            [8.10139652500007, 47.57619272900007],\n            [8.09695235100014, 47.57185190900009],\n            [8.08723718200011, 47.567381897000075],\n            [8.042278686000088, 47.56056060800012],\n            [7.91215743000015, 47.56056060800012],\n            [7.909470256000105, 47.56479807600007],\n            [7.907506551000097, 47.574177348000035],\n            [7.904302613000112, 47.58355662100007],\n            [7.898204794000066, 47.587845764000036],\n            [7.83371260600012, 47.590481263000044],\n            [7.819656616000117, 47.59533884700008],\n            [7.801466512000076, 47.57608937600014],\n            [7.78555017100004, 47.563196106000134],\n            [7.766739949000055, 47.55596140600008],\n            [7.727320447000125, 47.550422624000106],\n            [7.683437540000114, 47.5442566940001],\n            [7.661423380000116, 47.54624623600003],\n            [7.64690103500007, 47.55144523600006],\n            [7.609746948000094, 47.56474639900006],\n            [7.612337281000094, 47.56473104100013],\n            [7.635895223000091, 47.5645913700001],\n            [7.646540568000091, 47.5715418500001],\n            [7.65966638200004, 47.59657908200012],\n            [7.637032104000099, 47.594977112000066],\n            [7.586028488000125, 47.58461854400011],\n            [7.585482836000097, 47.584479135],\n            [7.550319051000116, 47.57549509700007],\n            [7.52634118600011, 47.56645172100011],\n            [7.520866596000104, 47.563416048000136],\n            [7.482726278000058, 47.54226715100006],\n            [7.485103394000106, 47.54159535700006],\n            [7.501743205000139, 47.532965394000115],\n            [7.505153850000056, 47.53301707000014],\n            [7.505463908000138, 47.52301768100003],\n            [7.501123087000082, 47.51730743400006],\n            [7.493061564000072, 47.51549875900008],\n            [7.482726278000058, 47.51699737600009],\n            [7.476938517000093, 47.51487864300012],\n            [7.475594930000028, 47.511726379000066],\n            [7.477765340000104, 47.50769561800007],\n            [7.484896688000049, 47.50090016700011],\n            [7.485776134000076, 47.49876751100004],\n            [7.485930217000146, 47.498393860000135],\n            [7.485826864000103, 47.49578420000012],\n            [7.484483276000049, 47.49294199700006],\n            [7.482726278000058, 47.491262512000105],\n            [7.467430053000101, 47.48190907800006],\n            [7.454510946000113, 47.483200989000096],\n            [7.445995797000137, 47.48688412900012],\n            [7.44148848500015, 47.48883372000003],\n            [7.425985555000068, 47.49250274700003],\n            [7.414306681000085, 47.490177307000096],\n            [7.414410034000099, 47.484027812000136],\n            [7.419474325000095, 47.477852478000045],\n            [7.422781616000094, 47.475423686000084],\n            [7.427639200000101, 47.47074696900012],\n            [7.429292847000056, 47.4651142380001],\n            [7.426088908000082, 47.45576080300006],\n            [7.420563120000111, 47.450857028000115],\n            [7.406348511000118, 47.438242493000075],\n            [7.388218887000107, 47.43328886000012],\n            [7.37854659000007, 47.430646058000036],\n            [7.336930048000085, 47.43185368000013],\n            [7.309093465000103, 47.43266143800008],\n            [7.28263513200011, 47.42888905900014],\n            [7.244807984000119, 47.41772694900001],\n            [7.2380900470001, 47.41679677300007],\n            [7.230338583000105, 47.41901886100007],\n            [7.226307820000102, 47.422636211000054],\n            [7.223517293000043, 47.426227723000125],\n            [7.219383179000118, 47.42847564700014],\n            [7.190030965000034, 47.43472849600005],\n            [7.168326863000061, 47.44356516500005],\n            [7.1626424560001, 47.45989491800006],\n            [7.180832560000056, 47.48826528000009],\n            [7.15365075700015, 47.48640492800007],\n            [7.142169389000088, 47.487650968000054],\n            [7.140318237000116, 47.487851868000064],\n            [7.127295776000096, 47.49294199700006],\n            [7.103731323000091, 47.49627512600006],\n            [7.053915242000073, 47.49038401300007],\n            [7.027973674000094, 47.49294199700006],\n            [7.018878621000056, 47.49767039000005],\n            [7.009783569000149, 47.49924652200008],\n            [7.000791870000114, 47.49767039000005],\n            [6.991903524000094, 47.49294199700006],\n            [6.973300008000138, 47.489092103000104],\n            [6.975780477000114, 47.47795583100009],\n            [6.986115763000043, 47.46413238500011],\n            [6.990973348000068, 47.45222096800009],\n            [6.983428589000113, 47.44379770900011],\n            [6.968545777000145, 47.43519358300006],\n            [6.952319376000048, 47.428837383000115],\n            [6.926067749000112, 47.42485829700004],\n            [6.924517456000103, 47.40599640000002],\n            [6.898782593000107, 47.39571279000003],\n            [6.884003133000078, 47.382586976000056],\n            [6.871600789000127, 47.3669548550001],\n            [6.866639852000077, 47.354164937000036],\n            [6.985598999000104, 47.362123108000105],\n            [7.003995809000088, 47.36814341300004],\n            [7.018878621000056, 47.3599010210001],\n            [7.033864787000113, 47.350650940000094],\n            [7.044303426000056, 47.340496521000034],\n            [7.036551961000043, 47.32951527900005],\n            [7.027146850000094, 47.32543284100004],\n            [7.016914917000094, 47.3235208130001],\n            [7.00647627800015, 47.319360860000074],\n            [6.991903524000094, 47.30595082700006],\n            [6.986529174000054, 47.30450388700007],\n            [6.97743412300008, 47.303728739000036],\n            [6.958623901000067, 47.29055125000005],\n            [6.952216024000023, 47.27003570500008],\n            [6.956246785000104, 47.24523101800014],\n            [6.88834395300006, 47.211305441000036],\n            [6.859301798000075, 47.1909190880001],\n            [6.840284871000108, 47.169525045000086],\n            [6.838076256000079, 47.16813159700007],\n            [6.774759155000112, 47.128183899000135],\n            [6.744786824000073, 47.121052551000105],\n            [6.746027059000113, 47.10394765300006],\n            [6.731661011000085, 47.098883363000084],\n            [6.727940307000097, 47.097126363000115],\n            [6.724219604000069, 47.09077016200007],\n            [6.699104858000055, 47.08462066700011],\n            [6.689699747000105, 47.07829030400009],\n            [6.676263875000132, 47.06239980100008],\n            [6.688252807000112, 47.04384796100004],\n            [6.665411824000103, 47.0212911990001],\n            [6.598697550000082, 46.986538798000055],\n            [6.491107218000138, 46.96338775700008],\n            [6.442634725000062, 46.944164124000054],\n            [6.427751913000122, 46.909075827],\n            [6.431886027000132, 46.900032451000044],\n            [6.445218546000064, 46.882617493000026],\n            [6.448422486000141, 46.871558737000015],\n            [6.4467688390001, 46.85770945300007],\n            [6.443117662000049, 46.8514551210001],\n            [6.441187785000068, 46.84814931300005],\n            [6.434263143000095, 46.83954518700011],\n            [6.418553507000127, 46.80701487200008],\n            [6.417106568000122, 46.802157288000075],\n            [6.419897095000096, 46.796524557000026],\n            [6.425168090000113, 46.79161529600009],\n            [6.432609497000044, 46.78598256500007],\n            [6.433022908000055, 46.76911021000009],\n            [6.429198853000116, 46.760816142000124],\n            [6.417933390000144, 46.75110097300009],\n            [6.407391398000101, 46.745700786000015],\n            [6.374215128000088, 46.73360850100005],\n            [6.347860148000109, 46.71317047200009],\n            [6.337938273000106, 46.70740855000011],\n            [6.266314738000062, 46.68035593700006],\n            [6.131852661000039, 46.59560658800004],\n            [6.118416789000065, 46.58346262600014],\n            [6.12151737500011, 46.57028513700007],\n            [6.145701945000099, 46.5516299440001],\n            [6.110355265000095, 46.52083079000002],\n            [6.075525349000117, 46.479592998000015],\n            [6.064156535000052, 46.47111806300012],\n            [6.060229126000081, 46.46502024400007],\n            [6.060229126000081, 46.45990427700008],\n            [6.062399536000072, 46.45520172200008],\n            [6.064776652000091, 46.451067607000056],\n            [6.065500122000088, 46.447992859000124],\n            [6.065500122000088, 46.44037058600006],\n            [6.06756717900015, 46.433600973000125],\n            [6.065706827000071, 46.42701222800014],\n            [6.054234660000134, 46.41941579200008],\n            [6.059019361000082, 46.4173832110001],\n            [6.108184855000104, 46.39649729400014],\n            [6.12286096200009, 46.38554189100006],\n            [6.135056600000098, 46.37040069600005],\n            [6.136400187000078, 46.359341940000036],\n            [6.118607037000089, 46.3317710850001],\n            [6.104050740000076, 46.30921580000012],\n            [6.100743448000088, 46.30141265900011],\n            [6.093612101000133, 46.27309397400012],\n            [6.093095337000108, 46.26229360000008],\n            [6.094025513000133, 46.253043518000055],\n            [6.089684692000077, 46.24637725900004],\n            [6.067670532000079, 46.24162302700006],\n            [6.061882772000104, 46.24115793900003],\n            [6.055888305000082, 46.241674704000076],\n            [6.048033488000044, 46.243431702000066],\n            [6.04617313600005, 46.24353505500008],\n            [6.044519491000102, 46.243431702000066],\n            [6.042865844000062, 46.243069967000054],\n            [5.982921183000144, 46.22270945200012],\n            [5.958529907000127, 46.2119607540001],\n            [5.954809204000128, 46.199920146000125],\n            [5.965247843000071, 46.186225891000106],\n            [5.982921183000144, 46.170826314000124],\n            [5.979820597000128, 46.16224802700009],\n            [5.972172485000044, 46.152171122000055],\n            [5.958839966000113, 46.13046702100007],\n            [5.982921183000144, 46.140440572000074],\n            [6.028293090000091, 46.14793365500009],\n            [6.073871704000084, 46.14917389000004],\n            [6.107874796000118, 46.13863189700007],\n            [6.140327596000134, 46.150207418000036],\n            [6.191383911000088, 46.1917035940001],\n            [6.255359335000094, 46.22110748400007],\n            [6.281197550000115, 46.24007273400014],\n            [6.276029907000094, 46.263120423],\n            [6.269001912000078, 46.265239156000064],\n            [6.252258748000145, 46.259916484000115],\n            [6.241820109000116, 46.263688864000045],\n            [6.237582642000064, 46.2679263310001],\n            [6.227970825000057, 46.28446278900009],\n            [6.227454060000099, 46.2884935510001],\n            [6.21825565600011, 46.30549509700012],\n            [6.214121541000083, 46.31546864900011],\n            [6.219495890000133, 46.32911122700003],\n            [6.240579874000076, 46.34895497700012],\n            [6.269105265000121, 46.3750257370001],\n            [6.301558065000052, 46.394481914000096],\n            [6.332357218000112, 46.40138071700008],\n            [6.365223430000128, 46.40244008400006],\n            [6.397676229000069, 46.4081761680001],\n            [6.482942342000115, 46.44858713800008],\n            [6.547021118000117, 46.457372132000074],\n            [6.613683716000139, 46.45589935400008],\n            [6.762666870000118, 46.42926015200004],\n            [6.77771555400011, 46.42410649300004],\n            [6.777756388000114, 46.42409250900005],\n            [6.787058146000049, 46.41417063500003],\n            [6.78810673300012, 46.40500797800007],\n            [6.789228556000126, 46.395205383000075],\n            [6.782097209000114, 46.37846222000013],\n            [6.755742228000145, 46.357068177000116],\n            [6.750367879000095, 46.34551849400009],\n            [6.769488159000076, 46.32267751100008],\n            [6.804938192000094, 46.2966067510001],\n            [6.827675822000089, 46.26947662400002],\n            [6.792225789000071, 46.22167592400004],\n            [6.774862508000126, 46.185864156],\n            [6.765664103000034, 46.1516026810001],\n            [6.774345743000083, 46.134807841000054],\n            [6.853927449000111, 46.12261220300013],\n            [6.869223673000079, 46.112328593000115],\n            [6.868190144000096, 46.10468048200005],\n            [6.861162150000098, 46.09703236900006],\n            [6.853100627000089, 46.09021108100012],\n            [6.848553100000061, 46.08504343700011],\n            [6.851343628000109, 46.086025290000094],\n            [6.853100627000089, 46.07610341400007],\n            [6.853410685000085, 46.065664775000045],\n            [6.851963745000091, 46.06468292200009],\n            [6.852377156000102, 46.056931458000065],\n            [6.850310099000126, 46.05274566700004],\n            [6.850930216000108, 46.04964508100011],\n            [6.859715210000104, 46.04499420200003],\n            [6.869223673000079, 46.044064026000086],\n            [6.876871786000066, 46.04809478800007],\n            [6.884003133000078, 46.053210755000066],\n            [6.892374715000074, 46.055587871000114],\n            [6.91511234500004, 46.048611553000114],\n            [6.982808471000055, 45.995384827000066],\n            [6.987666056000052, 45.99311106400003],\n            [6.991283406000122, 45.98246571900006],\n            [7.002755575000066, 45.961691793000085],\n            [7.009783569000149, 45.943398336000115],\n            [7.015157918000114, 45.93332143100008],\n            [7.022082560000115, 45.925259909],\n            [7.066937703000093, 45.89022328800007],\n            [7.090192097000113, 45.88050811800014],\n            [7.120887899000138, 45.876115621000054],\n            [7.153547404000022, 45.876529033000054],\n            [7.183726440000044, 45.88045644200011],\n            [7.245428100000083, 45.898129782000126],\n            [7.273540079000043, 45.91027374300003],\n            [7.286665893000105, 45.913426005000076],\n            [7.361803426000108, 45.90784495100007],\n            [7.393842814000038, 45.91569976800011],\n            [7.452960652000087, 45.94587880500009],\n            [7.482726278000058, 45.95487050400004],\n            [7.503706909000073, 45.956730855000046],\n            [7.514662312000041, 45.966704407000066],\n            [7.524377482000091, 45.97807322300005],\n            [7.541120646000138, 45.98411936500008],\n            [7.643026571000121, 45.96634267200005],\n            [7.6587362060001, 45.96003814700006],\n            [7.673722371000054, 45.950322978000116],\n            [7.692532593000067, 45.93120269800002],\n            [7.693979533000061, 45.92867055300013],\n            [7.706278523, 45.92572499700012],\n            [7.714650105000089, 45.92712026],\n            [7.72219486500012, 45.92960072800008],\n            [7.732013387000109, 45.930375875000095],\n            [7.780072469000061, 45.91812856100006],\n            [7.807564331000037, 45.91849029600007],\n            [7.825444376000093, 45.91466623900004],\n            [7.831232137000143, 45.91445953400006],\n            [7.843737833000148, 45.91921376600007],\n            [7.846114949000111, 45.92257273300007],\n            [7.845288127000089, 45.927792053000076],\n            [7.848388712000116, 45.93807566300009],\n            [7.84962011600004, 45.939712062000126],\n            [7.870201292731366, 45.94036963077022],\n            [7.872917431422025, 45.95938260160503],\n            [7.8837819861848, 45.97386867462197],\n            [7.898204794000066, 45.9819489540001],\n            [7.969104858000037, 45.99311106400003],\n            [7.978716674000026, 45.995178121000095],\n            [7.985848022000084, 45.99931223600004],\n            [7.998353719000079, 46.01062937500009],\n            [7.999077189000076, 46.012799784000094],\n            [8.008792358000107, 46.02768259700014],\n            [8.010652710000102, 46.02969797800009],\n            [8.015923706000137, 46.058171692000116],\n            [8.016027059000066, 46.06938547800007],\n            [8.018197469000143, 46.080857646000084],\n            [8.025328817000087, 46.09114125600007],\n            [8.035354044000115, 46.096515605000036],\n            [8.056024617000048, 46.098065898000044],\n            [8.066876668000077, 46.10059804300005],\n            [8.110594930000076, 46.12695302300011],\n            [8.132299032000077, 46.1593541470001],\n            [8.129508504000114, 46.19604441300007],\n            [8.099949585000076, 46.23562856100003],\n            [8.076591837000109, 46.24973622600007],\n            [8.073077840000082, 46.253611959000125],\n            [8.07731530700002, 46.26203521800011],\n            [8.087340535000038, 46.27180206300005],\n            [8.106874227000048, 46.28554799500009],\n            [8.128474975000131, 46.29247263600007],\n            [8.171883178000115, 46.299190573],\n            [8.192553752000038, 46.30916412400012],\n            [8.241749715000111, 46.35412262000003],\n            [8.270068400000099, 46.364044495000115],\n            [8.28154056800011, 46.37011647500006],\n            [8.291462443000114, 46.37835886600001],\n            [8.297456909000033, 46.387505596000096],\n            [8.297043497000118, 46.397634176000054],\n            [8.290428914000131, 46.40112233500008],\n            [8.286604859000079, 46.40535980300004],\n            [8.294976441000074, 46.418046366000084],\n            [8.316267130000142, 46.43365264900004],\n            [8.343448934000037, 46.44388458300011],\n            [8.385906925000114, 46.4502060180001],\n            [8.399156128000072, 46.452178650000064],\n            [8.427888224000071, 46.448690491000036],\n            [8.441634155000116, 46.434944560000076],\n            [8.445768270000116, 46.412361959000066],\n            [8.446285034000084, 46.382182923000045],\n            [8.442874389000053, 46.353373312000116],\n            [8.426647990000049, 46.30156768800006],\n            [8.423237345000103, 46.275832825000066],\n            [8.427164754000074, 46.25144154900002],\n            [8.43812015800006, 46.23537017800007],\n            [8.456516968000045, 46.2248281870001],\n            [8.482665242000053, 46.217541809000124],\n            [8.510260457000072, 46.20787831700008],\n            [8.538682495000074, 46.18762115500007],\n            [8.601831095000136, 46.122818909000074],\n            [8.611546264000083, 46.11935658800013],\n            [8.630873250000121, 46.11470570900008],\n            [8.67748539200008, 46.09579213500004],\n            [8.695055379000081, 46.095172018000056],\n            [8.702186727000111, 46.097962545000115],\n            [8.717689656000118, 46.10752268500002],\n            [8.723890828000094, 46.109538066000084],\n            [8.728983368000115, 46.10823310300009],\n            [8.732159057000047, 46.10741933200009],\n            [8.739497111000048, 46.098065898000044],\n            [8.747145223000103, 46.09444854800006],\n            [8.763164917000068, 46.09289825500005],\n            [8.793860717000115, 46.093415019000076],\n            [8.8089502360001, 46.08974599300009],\n            [8.834375041000015, 46.06638824500004],\n            [8.819595581000101, 46.04292714500008],\n            [8.790966838000116, 46.018690898000074],\n            [8.773396850000069, 45.99057891900014],\n            [8.769572794000112, 45.98577301000006],\n            [8.767919149000079, 45.983085836000015],\n            [8.785075724000109, 45.982310690000105],\n            [8.800371948000077, 45.97853831000009],\n            [8.857732788000078, 45.95709259100005],\n            [8.86445072400008, 45.95342356400005],\n            [8.870961954000052, 45.947067363000116],\n            [8.88078047600004, 45.93109934500009],\n            [8.89814375800006, 45.909550273000036],\n            [8.906515340000112, 45.896476135000086],\n            [8.91209639400003, 45.883401998000124],\n            [8.9137500410001, 45.866090393000036],\n            [8.909719279000086, 45.853688050000045],\n            [8.903724812000064, 45.84180247000012],\n            [8.900004109000065, 45.826402893000136],\n            [8.93958825700011, 45.83482615200003],\n            [8.972351115, 45.82464589500006],\n            [9.002426798000073, 45.820718486],\n            [9.034362834000149, 45.84810699500014],\n            [9.05927087400002, 45.88195505800013],\n            [9.063094930000148, 45.89895660400006],\n            [9.051726115000065, 45.91554473900007],\n            [9.042321004000115, 45.919730530000095],\n            [9.0205135490001, 45.92277944000003],\n            [9.010798380000068, 45.92665517200007],\n            [9.001703329000094, 45.93606028300013],\n            [8.993435099000124, 45.95425038700009],\n            [8.982686401000109, 45.96184682200004],\n            [8.980515991000118, 45.964378968000034],\n            [8.979792521000121, 45.96691111300004],\n            [8.980515991000118, 45.969494934000124],\n            [8.982686401000109, 45.9719754030001],\n            [9.015552612000135, 45.99311106400003],\n            [8.997775919000105, 46.02794097900011],\n            [9.002116740000105, 46.039309795000094],\n            [9.027748250000059, 46.05310740200014],\n            [9.049659057000014, 46.05791331000006],\n            [9.059167521000091, 46.061789043],\n            [9.067125692000076, 46.07114247700014],\n            [9.07032963100005, 46.083441467000085],\n            [9.068159220000041, 46.1059723920001],\n            [9.072086629000097, 46.1188915000001],\n            [9.090586792000124, 46.13816680900004],\n            [9.163243856000065, 46.17227325500002],\n            [9.16378802500006, 46.17298926700002],\n            [9.171098673000103, 46.182608541000036],\n            [9.17574955200007, 46.194132385000046],\n            [9.181330607000092, 46.20405426000005],\n            [9.192182658000121, 46.20963531500007],\n            [9.2041715900001, 46.21356272400004],\n            [9.215747111000042, 46.221055807000084],\n            [9.224842163000119, 46.23118438700004],\n            [9.239724975000058, 46.266996155000044],\n            [9.2689738360001, 46.30937083000006],\n            [9.275175008000076, 46.33138499000006],\n            [9.273831420000107, 46.344252421000135],\n            [9.260395548000076, 46.379728292000095],\n            [9.260292195000147, 46.39401682600007],\n            [9.262876017000053, 46.40662587500009],\n            [9.26091231300012, 46.41665110300002],\n            [9.247579794000103, 46.423033142000065],\n            [9.237967977000068, 46.436546530000015],\n            [9.245822794000105, 46.461041158000086],\n            [9.263186076000125, 46.48512237600002],\n            [9.282306355000117, 46.497369691000046],\n            [9.330985555000069, 46.501503805000084],\n            [9.350829305000047, 46.49786061600008],\n            [9.35155277500013, 46.48548411100012],\n            [9.377080933000087, 46.468689270000056],\n            [9.384625691000025, 46.46641550800004],\n            [9.395477742000082, 46.46941274000005],\n            [9.400335327000107, 46.475407207000075],\n            [9.403849324000134, 46.482512716000116],\n            [9.41067061400011, 46.488894756000036],\n            [9.426793660000072, 46.497111308000086],\n            [9.434648478000014, 46.49832570400011],\n            [9.437852417000101, 46.49204701800011],\n            [9.443846883000106, 46.396135559000044],\n            [9.442399943000112, 46.38089101200009],\n            [9.444363648000149, 46.37528411900007],\n            [9.451598348000118, 46.37037485800005],\n            [9.47371586100013, 46.361874085000125],\n            [9.482604207000065, 46.35680979400007],\n            [9.502551310000058, 46.32073964500006],\n            [9.51526371300011, 46.30859568300005],\n            [9.536451050000068, 46.29862213200005],\n            [9.559705444000087, 46.29273101800004],\n            [9.674323771000047, 46.2918008420001],\n            [9.693133992000043, 46.297071839000125],\n            [9.708430217000114, 46.31174794600011],\n            [9.708843628000125, 46.31962860100006],\n            [9.707293335000088, 46.33097157900005],\n            [9.709257039000136, 46.34239207000013],\n            [9.72010909000008, 46.350892843000054],\n            [9.730857788000094, 46.35071197500011],\n            [9.755249064000026, 46.340531718000136],\n            [9.768064819000102, 46.338619690000115],\n            [9.78883874500005, 46.34329640800007],\n            [9.855397990000142, 46.3669642130001],\n            [9.899012899000098, 46.37215769500003],\n            [9.918443237000076, 46.37115000400004],\n            [9.939010457000052, 46.36745514000006],\n            [9.96402185100007, 46.356086325000064],\n            [9.970636434000141, 46.33980824900004],\n            [9.971049846000057, 46.32001617500006],\n            [9.977561076000114, 46.29810536700009],\n            [9.99223718200011, 46.284359436000074],\n            [10.031717977000142, 46.26007151300007],\n            [10.041846557000099, 46.243069967000054],\n            [10.04267338000011, 46.220487366000015],\n            [10.075746297000109, 46.2200222780001],\n            [10.11791426600007, 46.231132711000015],\n            [10.145819539000058, 46.24332834900011],\n            [10.15894535300012, 46.26244862900012],\n            [10.14612959800013, 46.28027699800006],\n            [10.104891805000136, 46.30937083000006],\n            [10.095796753000059, 46.32053293900009],\n            [10.091765991000074, 46.3289561980001],\n            [10.092386108000113, 46.33810292600006],\n            [10.097450398000092, 46.35164215100005],\n            [10.104995158000065, 46.3613573210001],\n            [10.125975789000051, 46.374379782000034],\n            [10.133210490000124, 46.381097717000046],\n            [10.14075524900008, 46.40290517200009],\n            [10.133417195000078, 46.41401560500009],\n            [10.11615726700009, 46.418821514000115],\n            [10.071405477000042, 46.424815980000034],\n            [10.04205326300007, 46.43272247400009],\n            [10.026343627000074, 46.446261699000075],\n            [10.04401696800008, 46.46698394800009],\n            [10.035335327000041, 46.4710663860001],\n            [10.03047774300012, 46.476673279000124],\n            [10.028100627000072, 46.48393381800008],\n            [10.026860392000117, 46.493183900000105],\n            [10.031201212000099, 46.503829245000105],\n            [10.03140791900006, 46.52579172800006],\n            [10.032751506000125, 46.532974752000115],\n            [10.041329793000074, 46.541863098000135],\n            [10.062930542000117, 46.55674591100009],\n            [10.07119877100007, 46.56439402300006],\n            [10.083497762000121, 46.5970018510001],\n            [10.087838582000103, 46.60439158200012],\n            [10.097450398000092, 46.6080347700001],\n            [10.192121623000048, 46.62681915400012],\n            [10.21785648600013, 46.626974182000055],\n            [10.233772827000053, 46.61798248400004],\n            [10.235736531000072, 46.606691183000066],\n            [10.230258830000082, 46.58614980100006],\n            [10.234703003000106, 46.57529775000012],\n            [10.27594079500011, 46.56553090500006],\n            [10.283795614000041, 46.56072499600006],\n            [10.28906660900006, 46.55568654400008],\n            [10.295371135000096, 46.55108734100014],\n            [10.306636597000136, 46.54749582900007],\n            [10.319452351000024, 46.546048889000076],\n            [10.354282267000087, 46.5483226530001],\n            [10.425905803000148, 46.53532603000005],\n            [10.443992554000147, 46.5377289840001],\n            [10.45183267900012, 46.546701572000075],\n            [10.457945190000146, 46.553697001000046],\n            [10.465903361000102, 46.57847585100009],\n            [10.466626831000013, 46.604288229000105],\n            [10.459082072000058, 46.62356353800004],\n            [10.438204793000097, 46.635655823000036],\n            [10.395623413000123, 46.63880808500008],\n            [10.377536662000097, 46.653277486],\n            [10.36916508000013, 46.6723977660001],\n            [10.373919312000112, 46.681906230000095],\n            [10.384771363000084, 46.68901173900011],\n            [10.394383179000073, 46.70081980400002],\n            [10.396553588000074, 46.715004984000075],\n            [10.395623413000123, 46.72639963900008],\n            [10.399654175000109, 46.73554636700007],\n            [10.41660404400011, 46.743013611000094],\n            [10.42869633, 46.75564849900013],\n            [10.426215861000031, 46.76942026800006],\n            [10.419084513000087, 46.7839671830001],\n            [10.417224162000082, 46.798849997000076],\n            [10.439031616000108, 46.81688507100006],\n            [10.444922730000116, 46.823241272000075],\n            [10.4485400800001, 46.832232971000025],\n            [10.453811076000136, 46.86442738900007],\n            [10.451433960000088, 46.88576975600009],\n            [10.46383630300005, 46.919747009000105],\n            [10.458461955000104, 46.9366193650001],\n            [10.449573608000094, 46.943905742000084],\n            [10.41557051600006, 46.96240590500011],\n            [10.39469323700007, 46.98540191600006],\n            [10.384357950000066, 46.992998352000114],\n            [10.384357950000066, 46.99315338200006],\n            [10.384254598000041, 46.99315338200006],\n            [10.37898360200009, 46.99550465900009],\n            [10.373402547000097, 46.99625396700009],\n            [10.367924846000108, 46.99550465900009],\n            [10.338882691000094, 46.984110006000094],\n            [10.313664592000066, 46.9643179330001],\n            [10.296197957000118, 46.94137359700008],\n            [10.295681193000064, 46.92269256600011],\n            [10.27077315200009, 46.9218915810001],\n            [10.251342814000111, 46.92537974000004],\n            [10.235116415000107, 46.92331268400008],\n            [10.219923543000078, 46.90576853500011],\n            [10.215169311000096, 46.89310780900007],\n            [10.214342488000057, 46.88468455000009],\n            [10.21165531400004, 46.87703643800009],\n            [10.201423381000069, 46.86683034300003],\n            [10.157808471000095, 46.85161163400011],\n            [10.131970255000084, 46.84657318200004],\n            [10.125187508000124, 46.84675122900012],\n            [10.111299683000084, 46.84711578400007],\n            [10.068098185000025, 46.85662424800006],\n            [10.045567260000098, 46.865564271000096],\n            [10.006913289000096, 46.890756531000136],\n            [9.899943075000039, 46.91439849900007],\n            [9.875138387000106, 46.92742096000009],\n            [9.86242598400014, 46.93977162700014],\n            [9.860772339000107, 46.9491508990001],\n            [9.86397627800008, 46.95992543600002],\n            [9.86645674600004, 46.9833865360001],\n            [9.870590861000068, 46.99294667600009],\n            [9.870590861000068, 46.998837790000096],\n            [9.866766805000026, 47.00193837500004],\n            [9.860565633000135, 47.00160247800005],\n            [9.856328165000093, 47.004082947000114],\n            [9.857981812000048, 47.015477600000025],\n            [9.669052775000097, 47.05619862900008],\n            [9.65230961100005, 47.05792979000006],\n            [9.599909709000116, 47.053485616000046],\n            [9.581202840000032, 47.05687042300008],\n            [9.560635620000141, 47.052400412000054],\n            [9.499554077000141, 47.05935089100004],\n            [9.477023153000118, 47.063898417000075],\n            [9.475886271000121, 47.07322601400011],\n            [9.487565145000104, 47.08394887400004],\n            [9.50286136800014, 47.09469757200014],\n            [9.512369832000047, 47.108030091000074],\n            [9.511853068000107, 47.12937245700007],\n            [9.503481486000112, 47.145392151000124],\n            [9.492629435000083, 47.159809876000054],\n            [9.484981323000085, 47.17634633400013],\n            [9.487358439000047, 47.210013529000065],\n            [9.504618368000138, 47.243732402000035],\n            [9.52115482500011, 47.262801005000114],\n            [9.553297567000072, 47.2998530080001],\n            [9.587404012000121, 47.327809957000085],\n            [9.591228068000078, 47.33468292300006],\n            [9.59639571100007, 47.35230458600003],\n            [9.601046590000124, 47.36127044700007],\n            [9.639803914000055, 47.394524231000105],\n            [9.649519084000104, 47.40971710300005],\n            [9.650345907000116, 47.45209177700005],\n            [9.621717163000142, 47.46919667600011],\n            [9.584510132000048, 47.48072052100014],\n            [9.554951212000105, 47.51089955700013],\n            [9.553058591000081, 47.51689133800011],\n            [9.547481674000068, 47.53454710200006],\n            [9.273211304000142, 47.65009002700006],\n            [9.234350627000083, 47.65616200800011],\n            [9.197616577148438, 47.66030040335958],\n            [9.183397664000069, 47.670424704000084],\n            [9.177017211914062, 47.68503683547121],\n            [9.149208068847656, 47.68734805244341],\n            [9.22645568847656, 47.65475043477393],\n            [8.981756225000055, 47.66215647400011],\n            [8.945376017000086, 47.65430165600009],\n            [8.906205281000041, 47.65179534900011],\n            [8.881710652000095, 47.65613617000008],\n            [8.8526684980001, 47.67078643800008],\n            [8.851935119000075, 47.67128172300011],\n            [8.837785685000142, 47.680837504000095],\n            [8.837682333000117, 47.687787985000085],\n            [8.856079142000112, 47.690681864000084],\n            [8.830240926000101, 47.707192485000064],\n            [8.797581420000114, 47.720034079000044],\n            [8.77070967600011, 47.720860901000066],\n            [8.761717977000075, 47.70124969500006],\n            [8.769882853000098, 47.69507436100008],\n            [8.71706954000004, 47.69455759700011],\n            [8.715105835000116, 47.701068827000086],\n            [8.712625366000054, 47.708691101000085],\n            [8.70466719500007, 47.71533152300009],\n            [8.700429728000131, 47.723496399000084],\n            [8.70373702000012, 47.73003346800007],\n            [8.71706954000004, 47.743546855000034],\n            [8.719756714000084, 47.74731923400006],\n            [8.71314213000008, 47.757421977],\n            [8.703323608000119, 47.758713887000056],\n            [8.692264852000108, 47.75716359500004],\n            [8.681929565000104, 47.75873972600007],\n            [8.674488159000077, 47.766697897000114],\n            [8.66663334200004, 47.778273417000065],\n            [8.657021525000118, 47.78811777800004],\n            [8.644102417000113, 47.79101165800003],\n            [8.635007365000149, 47.78460378000008],\n            [8.629839721000053, 47.762796326000085],\n            [8.61743737800009, 47.75731862400008]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-kinks/test/out/triple.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-45, 2.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-45, -2.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-45, -7.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, 5],\n            [-40, 5],\n            [-50, 0],\n            [-40, -5],\n            [-50, -10],\n            [-40, -10],\n            [-50, -5],\n            [-40, 0],\n            [-50, 5]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-kinks/test.ts",
    "content": "import test from \"tape\";\nimport fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { featureEach } from \"@turf/meta\";\nimport { kinks } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-kinks\", (t) => {\n  for (const { name, filename, geojson } of fixtures) {\n    const results = kinks(geojson);\n    featureEach(geojson, (feature) => results.features.push(feature));\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEqual(results, loadJsonFileSync(directories.out + filename), name);\n  }\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-kinks/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-kinks/types.ts",
    "content": "import { polygon } from \"@turf/helpers\";\nimport { kinks } from \"./index.js\";\n\nconst hourglass = polygon([\n  [\n    [-50, 5],\n    [-40, -10],\n    [-50, -10],\n    [-40, 5],\n    [-50, 5],\n  ],\n]);\nkinks(hourglass);\n"
  },
  {
    "path": "packages/turf-length/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-length/README.md",
    "content": "# @turf/length\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## length\n\nTakes a [GeoJSON][1] and measures its length in the specified units, [(Multi)Point][2]'s distance are ignored.\n\n### Parameters\n\n*   `geojson` **[Feature][3]<([LineString][4] | [MultiLineString][5])>** GeoJSON to measure\n*   `options` **[Object][6]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** Supports all valid Turf [Units][7]. (optional, default `kilometers`)\n\n### Examples\n\n```javascript\nvar line = turf.lineString([[115, -32], [131, -22], [143, -25], [150, -34]]);\nvar length = turf.length(line, {units: 'miles'});\n\n//addToMap\nvar addToMap = [line];\nline.properties.distance = length;\n```\n\nReturns **[number][8]** length of GeoJSON\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.1.5\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[7]: https://turfjs.org/docs/api/types/Units\n\n[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/length\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-length/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { length } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n// Define fixtures\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benmark Results\n *\n * feature-collection x 240,519 ops/sec ±2.55% (83 runs sampled)\n * multi-linestring x 352,542 ops/sec ±8.44% (76 runs sampled)\n * multi-polygon x 308,500 ops/sec ±3.92% (83 runs sampled)\n * polygon x 534,768 ops/sec ±1.29% (84 runs sampled)\n * route1 x 1,280 ops/sec ±1.23% (89 runs sampled)\n * route2 x 1,452 ops/sec ±1.57% (87 runs sampled)\n */\n\n// Define benchmark\nconst suite = new Benchmark.Suite(\"turf-line-distance\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => length(geojson));\n}\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-length/index.ts",
    "content": "import { Feature, FeatureCollection, GeometryCollection } from \"geojson\";\nimport { distance } from \"@turf/distance\";\nimport { Units } from \"@turf/helpers\";\nimport { segmentReduce } from \"@turf/meta\";\n\n/**\n * Takes a {@link GeoJSON} and measures its length in the specified units, {@link (Multi)Point}'s distance are ignored.\n *\n * @function\n * @param {Feature<LineString|MultiLineString>} geojson GeoJSON to measure\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units=kilometers] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.\n * @returns {number} length of GeoJSON\n * @example\n * var line = turf.lineString([[115, -32], [131, -22], [143, -25], [150, -34]]);\n * var length = turf.length(line, {units: 'miles'});\n *\n * //addToMap\n * var addToMap = [line];\n * line.properties.distance = length;\n */\nfunction length(\n  geojson: Feature<any> | FeatureCollection<any> | GeometryCollection,\n  options: {\n    units?: Units;\n  } = {}\n): number {\n  // Calculate distance from 2-vertex line segments\n  return segmentReduce(\n    geojson,\n    (previousValue, segment) => {\n      const coords = segment!.geometry.coordinates;\n      return previousValue! + distance(coords[0], coords[1], options);\n    },\n    0\n  );\n}\n\nexport { length };\nexport default length;\n"
  },
  {
    "path": "packages/turf-length/package.json",
    "content": "{\n  \"name\": \"@turf/length\",\n  \"version\": \"7.3.4\",\n  \"description\": \" Calculates the length of a line, perfect for paths or routes.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Denis Carriere <@DenisCarriere>\",\n    \"Tom MacWright <@tmcw>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"linestring\",\n    \"length\",\n    \"distance\",\n    \"units\",\n    \"gis\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-length/test/in/feature-collection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-77.031669, 38.878605],\n            [-77.029609, 38.881946],\n            [-77.020339, 38.884084],\n            [-77.025661, 38.885821],\n            [-77.021884, 38.889563],\n            [-77.019824, 38.892368]\n          ],\n          [\n            [-77.041669, 38.885821],\n            [-77.039609, 38.881946],\n            [-77.030339, 38.884084],\n            [-77.035661, 38.878605]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-77.031669, 38.878605],\n            [-77.029609, 38.881946],\n            [-77.020339, 38.884084],\n            [-77.025661, 38.885821],\n            [-77.021884, 38.889563],\n            [-77.019824, 38.892368],\n            [-77.04, 38.88],\n            [-77.031669, 38.878605]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-length/test/in/multi-linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [-77.031669, 38.878605],\n        [-77.029609, 38.881946],\n        [-77.020339, 38.884084],\n        [-77.025661, 38.885821],\n        [-77.021884, 38.889563],\n        [-77.019824, 38.892368]\n      ],\n      [\n        [-77.041669, 38.885821],\n        [-77.039609, 38.881946],\n        [-77.030339, 38.884084],\n        [-77.035661, 38.878605]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-length/test/in/multi-polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [-77.031669, 38.878605],\n          [-77.029609, 38.881946],\n          [-77.020339, 38.884084],\n          [-77.025661, 38.885821],\n          [-77.021884, 38.889563],\n          [-77.019824, 38.892368],\n          [-77.04, 38.88],\n          [-77.031669, 38.878605]\n        ]\n      ],\n      [\n        [\n          [-77.041669, 38.885821],\n          [-77.039609, 38.881946],\n          [-77.035661, 38.878605],\n          [-77.030339, 38.884084],\n          [-77.041669, 38.885821]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-length/test/in/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-77.031669, 38.878605],\n        [-77.029609, 38.881946],\n        [-77.020339, 38.884084],\n        [-77.025661, 38.885821],\n        [-77.021884, 38.889563],\n        [-77.019824, 38.892368],\n        [-77.04, 38.88],\n        [-77.031669, 38.878605]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-length/test/in/route1.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"name\": null,\n    \"cmt\": null,\n    \"desc\": null,\n    \"src\": null,\n    \"link1_href\": null,\n    \"link1_text\": null,\n    \"link1_type\": null,\n    \"link2_href\": null,\n    \"link2_text\": null,\n    \"link2_type\": null,\n    \"number\": null,\n    \"type\": null\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-79.254923, 36.98394],\n      [-79.254923, 36.983939],\n      [-79.255326, 36.9838],\n      [-79.255401, 36.983774],\n      [-79.25576, 36.983664],\n      [-79.256795, 36.984137],\n      [-79.257537, 36.984478],\n      [-79.258539, 36.984925],\n      [-79.259498, 36.985353],\n      [-79.260286, 36.985712],\n      [-79.261405, 36.986222],\n      [-79.262933, 36.986928],\n      [-79.263237, 36.987071],\n      [-79.263755, 36.987296],\n      [-79.264086, 36.987423],\n      [-79.264167, 36.987446],\n      [-79.264338, 36.987486],\n      [-79.264414, 36.987501],\n      [-79.264618, 36.987531],\n      [-79.2648, 36.987542],\n      [-79.264982, 36.987537],\n      [-79.265163, 36.987517],\n      [-79.26703, 36.987355],\n      [-79.267952, 36.98726],\n      [-79.268404, 36.987226],\n      [-79.268771, 36.987197],\n      [-79.26955, 36.987117],\n      [-79.271398, 36.986946],\n      [-79.271488, 36.986941],\n      [-79.271698, 36.986925],\n      [-79.271936, 36.986898],\n      [-79.272231, 36.986852],\n      [-79.272474, 36.986785],\n      [-79.272711, 36.986705],\n      [-79.272895, 36.986632],\n      [-79.273059, 36.986552],\n      [-79.273646, 36.986245],\n      [-79.274224, 36.985925],\n      [-79.274887, 36.985592],\n      [-79.275308, 36.985365],\n      [-79.275672, 36.98517],\n      [-79.276249, 36.984876],\n      [-79.277101, 36.984433],\n      [-79.277425, 36.984259],\n      [-79.277918, 36.983982],\n      [-79.27799, 36.98395],\n      [-79.278179, 36.98385],\n      [-79.278261, 36.9838],\n      [-79.278335, 36.983745],\n      [-79.278421, 36.983666],\n      [-79.27844, 36.983647],\n      [-79.278502, 36.983577],\n      [-79.278548, 36.983511],\n      [-79.278614, 36.983381],\n      [-79.278654, 36.983273],\n      [-79.278711, 36.983011],\n      [-79.278763, 36.98269],\n      [-79.278806, 36.982485],\n      [-79.278866, 36.982282],\n      [-79.278952, 36.982101],\n      [-79.279023, 36.981984],\n      [-79.280178, 36.980418],\n      [-79.280259, 36.980319],\n      [-79.280355, 36.980229],\n      [-79.280419, 36.98018],\n      [-79.280578, 36.980082],\n      [-79.280666, 36.980038],\n      [-79.280783, 36.979994],\n      [-79.280908, 36.979963],\n      [-79.281301, 36.979913],\n      [-79.281646, 36.979874],\n      [-79.282145, 36.979835],\n      [-79.282797, 36.97977],\n      [-79.283144, 36.979743],\n      [-79.283618, 36.97972],\n      [-79.28399, 36.979706],\n      [-79.284447, 36.979695],\n      [-79.284904, 36.979697],\n      [-79.286913, 36.979638],\n      [-79.287201, 36.979628],\n      [-79.287954, 36.979612],\n      [-79.288037, 36.979611],\n      [-79.288397, 36.97962],\n      [-79.288697, 36.979643],\n      [-79.289908, 36.979722],\n      [-79.289994, 36.979724],\n      [-79.290136, 36.979716],\n      [-79.290248, 36.979699],\n      [-79.290503, 36.979632],\n      [-79.291043, 36.979454],\n      [-79.291563, 36.979269],\n      [-79.292467, 36.97896],\n      [-79.292759, 36.978877],\n      [-79.292963, 36.978832],\n      [-79.293286, 36.978778],\n      [-79.293549, 36.978746],\n      [-79.293649, 36.978738],\n      [-79.293755, 36.978729],\n      [-79.293858, 36.978731],\n      [-79.294028, 36.978747],\n      [-79.294162, 36.978771],\n      [-79.294243, 36.9788],\n      [-79.294439, 36.978883],\n      [-79.294626, 36.978979],\n      [-79.294782, 36.979072],\n      [-79.294921, 36.979174],\n      [-79.295023, 36.979263],\n      [-79.295281, 36.979534],\n      [-79.295458, 36.979739],\n      [-79.296347, 36.980843],\n      [-79.296549, 36.981064],\n      [-79.296594, 36.981095],\n      [-79.296695, 36.981144],\n      [-79.296788, 36.98117],\n      [-79.296916, 36.981184],\n      [-79.297032, 36.981182],\n      [-79.297147, 36.981165],\n      [-79.297933, 36.980962],\n      [-79.298145, 36.980893],\n      [-79.298401, 36.98079],\n      [-79.298602, 36.980696],\n      [-79.298795, 36.980593],\n      [-79.299134, 36.980402],\n      [-79.299407, 36.980244],\n      [-79.299963, 36.9799],\n      [-79.301767, 36.97881],\n      [-79.301976, 36.978691],\n      [-79.3021, 36.978619],\n      [-79.302508, 36.978369],\n      [-79.302614, 36.978309],\n      [-79.3028, 36.97822],\n      [-79.302995, 36.978145],\n      [-79.303113, 36.978114],\n      [-79.303153, 36.978249],\n      [-79.303232, 36.978565],\n      [-79.303319, 36.978989],\n      [-79.303326, 36.979184],\n      [-79.303313, 36.979346],\n      [-79.30324, 36.979748],\n      [-79.303136, 36.980362],\n      [-79.303088, 36.980609],\n      [-79.302996, 36.981143],\n      [-79.302982, 36.981226],\n      [-79.302977, 36.981321],\n      [-79.302986, 36.98144],\n      [-79.303013, 36.981556],\n      [-79.303057, 36.98167],\n      [-79.303191, 36.9819],\n      [-79.303336, 36.982126],\n      [-79.303702, 36.982652],\n      [-79.304322, 36.983486],\n      [-79.304588, 36.98382],\n      [-79.304756, 36.984051],\n      [-79.304903, 36.984229],\n      [-79.305059, 36.984403],\n      [-79.305145, 36.984487],\n      [-79.305336, 36.984648],\n      [-79.305612, 36.98486],\n      [-79.30569, 36.984915],\n      [-79.305765, 36.984974],\n      [-79.305944, 36.98513],\n      [-79.306108, 36.985295],\n      [-79.306259, 36.985469],\n      [-79.306333, 36.98557],\n      [-79.306437, 36.985737],\n      [-79.306524, 36.985911],\n      [-79.306595, 36.98609],\n      [-79.306677, 36.986365],\n      [-79.306734, 36.98662],\n      [-79.306773, 36.986878],\n      [-79.306759, 36.986998],\n      [-79.306724, 36.987146],\n      [-79.306621, 36.987426],\n      [-79.306591, 36.987545],\n      [-79.306555, 36.987745],\n      [-79.306536, 36.987984],\n      [-79.30653, 36.988172],\n      [-79.306539, 36.988321],\n      [-79.30655, 36.988398],\n      [-79.306566, 36.988507],\n      [-79.306673, 36.988967],\n      [-79.306789, 36.989416],\n      [-79.30681, 36.989518],\n      [-79.306831, 36.98969],\n      [-79.306833, 36.989828],\n      [-79.306822, 36.989888],\n      [-79.306771, 36.990067],\n      [-79.306696, 36.99024],\n      [-79.306569, 36.990463],\n      [-79.306374, 36.99078],\n      [-79.30633, 36.990863],\n      [-79.306292, 36.990972],\n      [-79.306271, 36.991084],\n      [-79.306268, 36.991229],\n      [-79.306282, 36.991421],\n      [-79.306323, 36.991648],\n      [-79.30657, 36.992516],\n      [-79.306601, 36.992703],\n      [-79.306614, 36.992892],\n      [-79.306598, 36.993111],\n      [-79.306569, 36.993287],\n      [-79.306553, 36.993345],\n      [-79.306526, 36.993432],\n      [-79.306466, 36.993574],\n      [-79.306313, 36.993848],\n      [-79.305971, 36.994382],\n      [-79.305826, 36.994647],\n      [-79.305382, 36.995598],\n      [-79.305197, 36.995963],\n      [-79.305065, 36.996284],\n      [-79.304983, 36.996521],\n      [-79.304954, 36.99668],\n      [-79.30495, 36.996815],\n      [-79.304959, 36.996932],\n      [-79.304988, 36.997077],\n      [-79.305024, 36.99719],\n      [-79.305111, 36.99739],\n      [-79.305197, 36.997567],\n      [-79.30532, 36.997782],\n      [-79.305429, 36.997949],\n      [-79.305577, 36.998153],\n      [-79.306017, 36.99873],\n      [-79.306204, 36.998965],\n      [-79.306407, 36.999192],\n      [-79.306624, 36.999411],\n      [-79.30672, 36.999489],\n      [-79.306828, 36.999557],\n      [-79.306922, 36.999602],\n      [-79.307072, 36.999656],\n      [-79.307354, 36.999723],\n      [-79.307628, 36.999778],\n      [-79.308892, 36.999988],\n      [-79.309029, 37.00002],\n      [-79.309135, 37.000056],\n      [-79.30926, 37.000112],\n      [-79.309374, 37.00018],\n      [-79.309478, 37.000259],\n      [-79.30959, 37.000372],\n      [-79.309743, 37.000552],\n      [-79.31029, 37.001344],\n      [-79.31037, 37.001451],\n      [-79.310486, 37.001568],\n      [-79.310598, 37.001654],\n      [-79.310697, 37.001714],\n      [-79.310838, 37.001785],\n      [-79.310991, 37.001844],\n      [-79.31115, 37.001891],\n      [-79.311632, 37.001979],\n      [-79.312359, 37.002135],\n      [-79.312455, 37.002156],\n      [-79.312915, 37.002271],\n      [-79.313026, 37.002296],\n      [-79.313639, 37.002422],\n      [-79.314311, 37.002515],\n      [-79.314769, 37.002553],\n      [-79.315227, 37.002582],\n      [-79.315352, 37.002604],\n      [-79.315472, 37.002641],\n      [-79.315543, 37.002685],\n      [-79.315621, 37.00275],\n      [-79.315685, 37.002824],\n      [-79.315725, 37.002889],\n      [-79.315888, 37.002832],\n      [-79.316221, 37.002733],\n      [-79.316448, 37.002678],\n      [-79.31752, 37.002455],\n      [-79.318524, 37.002275],\n      [-79.319059, 37.002211],\n      [-79.319268, 37.002199],\n      [-79.319435, 37.0022],\n      [-79.319651, 37.002214],\n      [-79.319786, 37.002226],\n      [-79.320258, 37.002279],\n      [-79.320522, 37.002298],\n      [-79.320786, 37.002302],\n      [-79.320953, 37.002288],\n      [-79.321116, 37.002258],\n      [-79.321274, 37.002213],\n      [-79.321381, 37.00217],\n      [-79.321762, 37.002001],\n      [-79.322382, 37.001698],\n      [-79.322844, 37.001466],\n      [-79.323023, 37.001376],\n      [-79.323292, 37.001249],\n      [-79.32357, 37.001134],\n      [-79.323943, 37.001003],\n      [-79.324098, 37.000958],\n      [-79.324162, 37.000945],\n      [-79.32513, 37.000843],\n      [-79.325325, 37.000814],\n      [-79.325517, 37.000777],\n      [-79.325753, 37.000719],\n      [-79.327186, 37.000266],\n      [-79.327482, 37.000173],\n      [-79.327802, 37.00008],\n      [-79.328598, 36.999838],\n      [-79.329158, 36.999654],\n      [-79.329204, 36.999715],\n      [-79.329343, 36.999894],\n      [-79.32942, 36.999975],\n      [-79.329588, 37.000125],\n      [-79.329742, 37.000239],\n      [-79.329777, 37.000256],\n      [-79.329869, 37.000291],\n      [-79.329988, 37.000315],\n      [-79.330091, 37.000318],\n      [-79.33027, 37.000316],\n      [-79.330449, 37.000298],\n      [-79.331035, 37.000223],\n      [-79.331427, 37.000184],\n      [-79.331855, 37.000129],\n      [-79.333009, 37.000023],\n      [-79.334568, 36.999869],\n      [-79.335002, 36.999826],\n      [-79.33552, 36.999806],\n      [-79.33606, 36.999814],\n      [-79.336208, 36.999833],\n      [-79.336352, 36.999866],\n      [-79.33649, 36.999913],\n      [-79.336644, 36.999986],\n      [-79.336856, 37.000123],\n      [-79.336962, 37.000203],\n      [-79.337096, 37.000316],\n      [-79.337325, 37.000539],\n      [-79.337519, 37.000761],\n      [-79.338522, 37.001965],\n      [-79.339126, 37.002688],\n      [-79.339574, 37.003185],\n      [-79.340385, 37.004106],\n      [-79.340479, 37.004212],\n      [-79.340603, 37.004341],\n      [-79.340773, 37.00449],\n      [-79.340929, 37.004602],\n      [-79.341131, 37.004723],\n      [-79.341632, 37.004968],\n      [-79.341875, 37.005087],\n      [-79.342172, 37.005233],\n      [-79.342594, 37.00542],\n      [-79.343189, 37.005708],\n      [-79.343817, 37.006011],\n      [-79.344455, 37.006335],\n      [-79.344712, 37.00647],\n      [-79.345697, 37.006916],\n      [-79.345837, 37.006985],\n      [-79.346006, 37.00708],\n      [-79.346221, 37.007218],\n      [-79.347403, 37.008016],\n      [-79.347493, 37.008071],\n      [-79.347634, 37.008171],\n      [-79.347763, 37.008281],\n      [-79.347971, 37.008497],\n      [-79.348051, 37.008623],\n      [-79.348135, 37.008786],\n      [-79.348201, 37.008954],\n      [-79.34825, 37.009126],\n      [-79.348316, 37.00954],\n      [-79.348397, 37.010196],\n      [-79.34854, 37.01111],\n      [-79.348616, 37.011496],\n      [-79.348778, 37.012266],\n      [-79.349159, 37.013946],\n      [-79.349315, 37.014628],\n      [-79.349636, 37.015919],\n      [-79.349688, 37.016183],\n      [-79.349795, 37.016628],\n      [-79.349854, 37.016827],\n      [-79.349915, 37.01701],\n      [-79.350064, 37.017337],\n      [-79.350135, 37.017464],\n      [-79.350159, 37.017499],\n      [-79.350325, 37.017735],\n      [-79.35042, 37.017865],\n      [-79.350584, 37.018129],\n      [-79.35072, 37.01842],\n      [-79.350808, 37.018683],\n      [-79.35089, 37.018981],\n      [-79.350968, 37.019317],\n      [-79.35119, 37.020219],\n      [-79.351251, 37.020445],\n      [-79.351346, 37.020719],\n      [-79.351414, 37.020888],\n      [-79.351505, 37.021079],\n      [-79.351682, 37.021459],\n      [-79.351825, 37.02176],\n      [-79.352185, 37.022473],\n      [-79.352628, 37.023433],\n      [-79.352751, 37.023743],\n      [-79.35282, 37.023863],\n      [-79.352895, 37.023965],\n      [-79.353012, 37.024078],\n      [-79.353078, 37.024127],\n      [-79.353186, 37.024186],\n      [-79.353325, 37.024244],\n      [-79.353398, 37.024265],\n      [-79.353421, 37.02427],\n      [-79.353621, 37.024315],\n      [-79.353675, 37.024321],\n      [-79.35392, 37.024336],\n      [-79.354286, 37.024379],\n      [-79.354423, 37.024385],\n      [-79.354844, 37.024375],\n      [-79.355058, 37.024359],\n      [-79.355214, 37.024339],\n      [-79.355354, 37.024308],\n      [-79.355614, 37.024238],\n      [-79.355718, 37.024209],\n      [-79.355965, 37.024125],\n      [-79.356147, 37.024057],\n      [-79.356485, 37.02394],\n      [-79.356546, 37.023919],\n      [-79.356797, 37.023824],\n      [-79.356964, 37.023769],\n      [-79.357077, 37.023757],\n      [-79.357196, 37.023767],\n      [-79.357262, 37.023786],\n      [-79.357309, 37.023811],\n      [-79.35735, 37.023849],\n      [-79.357388, 37.023905],\n      [-79.357541, 37.024317],\n      [-79.357583, 37.024391],\n      [-79.357634, 37.024438],\n      [-79.357685, 37.024467],\n      [-79.357747, 37.024487],\n      [-79.35783, 37.024497],\n      [-79.357899, 37.024495],\n      [-79.35801, 37.02448],\n      [-79.358102, 37.02446],\n      [-79.358409, 37.025941],\n      [-79.358471, 37.026316],\n      [-79.358502, 37.026637],\n      [-79.358517, 37.026844],\n      [-79.358519, 37.027185],\n      [-79.358497, 37.027679],\n      [-79.358457, 37.028033],\n      [-79.358398, 37.028378],\n      [-79.358301, 37.028779],\n      [-79.358082, 37.029574],\n      [-79.357957, 37.030026],\n      [-79.357813, 37.030609],\n      [-79.357745, 37.03095],\n      [-79.357685, 37.031344],\n      [-79.357656, 37.031612],\n      [-79.357621, 37.032199],\n      [-79.357619, 37.032445],\n      [-79.357631, 37.032766],\n      [-79.357637, 37.032893],\n      [-79.357666, 37.033258],\n      [-79.357711, 37.033639],\n      [-79.357789, 37.034066],\n      [-79.357875, 37.034441],\n      [-79.357922, 37.034622],\n      [-79.358521, 37.036938],\n      [-79.358613, 37.037315],\n      [-79.358687, 37.037658],\n      [-79.358786, 37.038217],\n      [-79.358856, 37.038791],\n      [-79.358911, 37.039356],\n      [-79.358965, 37.0401],\n      [-79.359051, 37.041306],\n      [-79.359073, 37.041825],\n      [-79.359059, 37.042471],\n      [-79.359012, 37.042954],\n      [-79.35899, 37.04313],\n      [-79.358922, 37.043537],\n      [-79.358829, 37.043973],\n      [-79.358773, 37.044171],\n      [-79.358704, 37.044417],\n      [-79.358541, 37.044914],\n      [-79.358352, 37.045429],\n      [-79.357856, 37.04678],\n      [-79.357794, 37.046961],\n      [-79.357564, 37.047556],\n      [-79.357409, 37.047915],\n      [-79.357338, 37.048062],\n      [-79.357278, 37.048184],\n      [-79.356942, 37.048801],\n      [-79.356841, 37.048967],\n      [-79.356589, 37.049349],\n      [-79.356363, 37.049677],\n      [-79.354212, 37.052783],\n      [-79.353972, 37.053148],\n      [-79.353865, 37.053295],\n      [-79.353452, 37.053889],\n      [-79.352197, 37.055711],\n      [-79.352126, 37.055808],\n      [-79.351983, 37.056023],\n      [-79.351596, 37.056539],\n      [-79.351413, 37.056761],\n      [-79.35122, 37.056979],\n      [-79.351018, 37.057191],\n      [-79.35075, 37.057445],\n      [-79.350603, 37.057584],\n      [-79.35029, 37.057856],\n      [-79.348032, 37.059645],\n      [-79.346954, 37.060488],\n      [-79.345892, 37.06133],\n      [-79.345295, 37.061797],\n      [-79.344778, 37.062208],\n      [-79.344716, 37.062258],\n      [-79.343942, 37.062866],\n      [-79.343259, 37.06342],\n      [-79.342925, 37.063722],\n      [-79.342732, 37.063907],\n      [-79.342302, 37.064351],\n      [-79.342055, 37.06463],\n      [-79.341843, 37.064885],\n      [-79.341424, 37.065452],\n      [-79.341048, 37.066036],\n      [-79.340718, 37.066647],\n      [-79.340066, 37.068047],\n      [-79.338982, 37.070343],\n      [-79.336951, 37.074656],\n      [-79.336672, 37.075265],\n      [-79.335622, 37.077497],\n      [-79.335265, 37.078252],\n      [-79.33489, 37.079062],\n      [-79.334833, 37.079182],\n      [-79.334222, 37.080477],\n      [-79.333262, 37.082521],\n      [-79.333001, 37.083079],\n      [-79.332628, 37.084028],\n      [-79.332548, 37.084278],\n      [-79.332388, 37.08478],\n      [-79.332201, 37.085539],\n      [-79.33204, 37.086421],\n      [-79.33196, 37.086978],\n      [-79.331907, 37.087757],\n      [-79.331871, 37.088536],\n      [-79.33185, 37.089317],\n      [-79.331805, 37.090324],\n      [-79.331772, 37.091338],\n      [-79.331768, 37.092235],\n      [-79.33183, 37.093576],\n      [-79.331943, 37.095022],\n      [-79.332045, 37.096198],\n      [-79.332341, 37.099713],\n      [-79.332397, 37.100421],\n      [-79.332436, 37.101086],\n      [-79.332443, 37.1013],\n      [-79.332438, 37.10199],\n      [-79.332418, 37.102426],\n      [-79.332391, 37.102795],\n      [-79.332337, 37.103324],\n      [-79.332244, 37.103966],\n      [-79.332205, 37.104185],\n      [-79.332175, 37.104355],\n      [-79.332056, 37.104907],\n      [-79.332041, 37.104978],\n      [-79.331903, 37.105494],\n      [-79.331733, 37.106053],\n      [-79.331559, 37.106562],\n      [-79.33131, 37.107195],\n      [-79.331178, 37.107501],\n      [-79.330959, 37.107973],\n      [-79.330748, 37.108399],\n      [-79.330489, 37.108876],\n      [-79.330365, 37.109093],\n      [-79.330155, 37.10944],\n      [-79.329757, 37.110058],\n      [-79.328813, 37.111446],\n      [-79.328701, 37.111611],\n      [-79.327118, 37.113932],\n      [-79.327107, 37.113947],\n      [-79.326498, 37.114802],\n      [-79.326178, 37.115223],\n      [-79.326128, 37.115289],\n      [-79.32568, 37.115855],\n      [-79.325061, 37.116595],\n      [-79.324816, 37.116878],\n      [-79.324497, 37.117235],\n      [-79.324161, 37.117601],\n      [-79.323816, 37.117964],\n      [-79.323589, 37.118194],\n      [-79.323104, 37.118678],\n      [-79.322015, 37.119732],\n      [-79.320826, 37.12089],\n      [-79.320279, 37.121415],\n      [-79.31993, 37.121729],\n      [-79.319276, 37.122271],\n      [-79.318828, 37.122609],\n      [-79.318377, 37.122925],\n      [-79.317535, 37.123462],\n      [-79.316595, 37.123987],\n      [-79.315586, 37.124473],\n      [-79.314958, 37.124742],\n      [-79.311931, 37.125973],\n      [-79.303986, 37.129196],\n      [-79.303177, 37.129555],\n      [-79.302367, 37.129915],\n      [-79.30095, 37.130617],\n      [-79.298871, 37.131691],\n      [-79.298008, 37.132146],\n      [-79.293574, 37.134491],\n      [-79.293108, 37.134749],\n      [-79.292712, 37.134937],\n      [-79.292278, 37.135125],\n      [-79.291836, 37.1353],\n      [-79.291351, 37.135473],\n      [-79.290905, 37.135615],\n      [-79.290365, 37.135772],\n      [-79.289641, 37.135941],\n      [-79.289078, 37.136055],\n      [-79.288222, 37.136184],\n      [-79.287781, 37.136228],\n      [-79.287205, 37.136269],\n      [-79.281895, 37.136526],\n      [-79.280512, 37.136607],\n      [-79.279731, 37.13667],\n      [-79.278968, 37.136747],\n      [-79.277922, 37.136872],\n      [-79.276244, 37.13712],\n      [-79.273494, 37.137624],\n      [-79.272005, 37.137904],\n      [-79.271794, 37.137944],\n      [-79.266159, 37.138985],\n      [-79.265643, 37.139056],\n      [-79.265084, 37.139119],\n      [-79.264404, 37.139177],\n      [-79.263826, 37.139213],\n      [-79.263263, 37.139234],\n      [-79.262666, 37.139241],\n      [-79.262103, 37.139234],\n      [-79.26149, 37.139213],\n      [-79.260895, 37.13918],\n      [-79.260488, 37.139149],\n      [-79.257811, 37.138859],\n      [-79.253283, 37.138354],\n      [-79.251817, 37.138189],\n      [-79.251311, 37.138138],\n      [-79.25082, 37.138104],\n      [-79.250344, 37.138087],\n      [-79.249949, 37.138091],\n      [-79.249141, 37.138125],\n      [-79.248701, 37.138169],\n      [-79.248255, 37.138232],\n      [-79.247815, 37.138303],\n      [-79.247404, 37.138388],\n      [-79.246983, 37.138492],\n      [-79.24619, 37.138741],\n      [-79.246034, 37.138799],\n      [-79.245567, 37.138991],\n      [-79.243639, 37.139795],\n      [-79.242121, 37.140435],\n      [-79.241618, 37.140648],\n      [-79.241125, 37.14089],\n      [-79.240755, 37.141103],\n      [-79.240471, 37.141293],\n      [-79.240237, 37.141475],\n      [-79.240023, 37.141661],\n      [-79.239659, 37.142024],\n      [-79.238717, 37.143115],\n      [-79.238653, 37.143189],\n      [-79.238443, 37.143404],\n      [-79.23822, 37.14361],\n      [-79.237972, 37.143817],\n      [-79.237711, 37.144013],\n      [-79.237424, 37.144206],\n      [-79.237139, 37.144378],\n      [-79.236846, 37.144536],\n      [-79.23672, 37.144599],\n      [-79.235366, 37.145185],\n      [-79.235031, 37.145327],\n      [-79.233118, 37.146139],\n      [-79.232943, 37.146214],\n      [-79.23213, 37.146559],\n      [-79.23159, 37.146789],\n      [-79.231268, 37.146943],\n      [-79.230971, 37.147103],\n      [-79.230723, 37.147248],\n      [-79.230589, 37.147333],\n      [-79.230303, 37.147527],\n      [-79.230067, 37.147704],\n      [-79.229831, 37.147902],\n      [-79.229608, 37.148108],\n      [-79.229398, 37.148324],\n      [-79.229192, 37.148559],\n      [-79.229002, 37.148802],\n      [-79.228823, 37.149065],\n      [-79.228683, 37.149299],\n      [-79.228557, 37.149537],\n      [-79.228436, 37.149807],\n      [-79.228332, 37.15008],\n      [-79.22824, 37.150371],\n      [-79.228165, 37.150679],\n      [-79.228144, 37.150787],\n      [-79.22795, 37.1522],\n      [-79.227939, 37.152282],\n      [-79.227922, 37.152405],\n      [-79.227831, 37.1531],\n      [-79.227768, 37.153577],\n      [-79.22775, 37.153704],\n      [-79.227707, 37.153951],\n      [-79.227614, 37.154338],\n      [-79.227519, 37.154642],\n      [-79.227394, 37.154981],\n      [-79.227259, 37.155289],\n      [-79.227113, 37.155579],\n      [-79.227008, 37.155764],\n      [-79.226979, 37.155814],\n      [-79.226931, 37.155892],\n      [-79.22673, 37.156196],\n      [-79.226531, 37.156466],\n      [-79.226359, 37.156679],\n      [-79.226091, 37.156981],\n      [-79.225836, 37.157239],\n      [-79.225577, 37.157477],\n      [-79.225307, 37.157704],\n      [-79.225033, 37.15791],\n      [-79.224838, 37.158043],\n      [-79.223223, 37.159106],\n      [-79.222625, 37.159494],\n      [-79.222577, 37.159525],\n      [-79.222526, 37.159559],\n      [-79.222269, 37.159725],\n      [-79.221758, 37.160065],\n      [-79.219427, 37.161585],\n      [-79.218294, 37.162324],\n      [-79.218211, 37.162378],\n      [-79.216923, 37.163217],\n      [-79.216426, 37.163539],\n      [-79.215909, 37.16389],\n      [-79.215531, 37.164171],\n      [-79.215221, 37.164425],\n      [-79.214936, 37.164678],\n      [-79.214674, 37.164929],\n      [-79.214292, 37.165324],\n      [-79.214244, 37.165374],\n      [-79.213081, 37.166582],\n      [-79.212642, 37.167038],\n      [-79.212368, 37.167324],\n      [-79.212048, 37.167658],\n      [-79.211768, 37.16795],\n      [-79.211486, 37.168245],\n      [-79.211416, 37.168318],\n      [-79.211008, 37.168744],\n      [-79.210963, 37.168791],\n      [-79.210689, 37.16908],\n      [-79.210304, 37.16953],\n      [-79.2101, 37.169782],\n      [-79.209923, 37.170006],\n      [-79.209526, 37.170538],\n      [-79.209343, 37.170798],\n      [-79.207037, 37.174039],\n      [-79.206764, 37.174435],\n      [-79.206634, 37.174641],\n      [-79.206469, 37.174929],\n      [-79.206273, 37.17532],\n      [-79.20615, 37.175603],\n      [-79.206073, 37.175802],\n      [-79.206026, 37.175929],\n      [-79.205916, 37.176273],\n      [-79.205845, 37.176539],\n      [-79.205757, 37.176917],\n      [-79.205696, 37.177164],\n      [-79.205658, 37.177349],\n      [-79.205603, 37.177589],\n      [-79.205562, 37.177759],\n      [-79.205539, 37.177863],\n      [-79.205487, 37.178091],\n      [-79.205427, 37.178344],\n      [-79.205364, 37.178607],\n      [-79.205297, 37.178889],\n      [-79.205253, 37.179068],\n      [-79.20519, 37.179332],\n      [-79.205122, 37.179618],\n      [-79.205055, 37.179895],\n      [-79.204997, 37.180138],\n      [-79.204614, 37.181773],\n      [-79.204588, 37.181883],\n      [-79.204488, 37.182314],\n      [-79.204319, 37.183043],\n      [-79.204265, 37.183268],\n      [-79.204123, 37.18388],\n      [-79.203924, 37.184747],\n      [-79.203855, 37.185167],\n      [-79.203781, 37.185725],\n      [-79.203767, 37.185869],\n      [-79.203714, 37.186727],\n      [-79.203688, 37.188358],\n      [-79.203665, 37.189574],\n      [-79.203624, 37.192626],\n      [-79.203627, 37.192665],\n      [-79.203588, 37.193792],\n      [-79.203572, 37.194229],\n      [-79.203568, 37.194309],\n      [-79.203559, 37.194539],\n      [-79.203553, 37.194676],\n      [-79.203543, 37.194919],\n      [-79.203531, 37.195199],\n      [-79.203502, 37.195859],\n      [-79.203483, 37.196276],\n      [-79.203468, 37.196579],\n      [-79.203458, 37.196792],\n      [-79.203433, 37.197322],\n      [-79.203422, 37.197563],\n      [-79.20341, 37.197824],\n      [-79.203397, 37.198095],\n      [-79.20339, 37.198254],\n      [-79.203379, 37.19847],\n      [-79.203358, 37.198936],\n      [-79.20334, 37.19935],\n      [-79.203304, 37.200071],\n      [-79.203262, 37.200536],\n      [-79.203244, 37.200686],\n      [-79.203162, 37.201241],\n      [-79.203073, 37.201722],\n      [-79.20306, 37.201793],\n      [-79.203026, 37.201977],\n      [-79.202836, 37.203003],\n      [-79.202752, 37.203459],\n      [-79.202563, 37.204478],\n      [-79.202452, 37.205079],\n      [-79.202395, 37.205385],\n      [-79.201856, 37.208299],\n      [-79.201805, 37.208574],\n      [-79.201702, 37.209126],\n      [-79.201673, 37.209268],\n      [-79.201619, 37.209479],\n      [-79.201573, 37.209638],\n      [-79.201505, 37.209836],\n      [-79.201407, 37.210085],\n      [-79.201284, 37.210341],\n      [-79.201114, 37.21064],\n      [-79.201026, 37.210776],\n      [-79.200882, 37.21098],\n      [-79.200649, 37.211282],\n      [-79.200396, 37.211554],\n      [-79.199727, 37.212167],\n      [-79.199637, 37.212249],\n      [-79.199553, 37.212325],\n      [-79.199391, 37.212473],\n      [-79.199159, 37.212684],\n      [-79.19865, 37.213144],\n      [-79.197756, 37.213946],\n      [-79.197588, 37.214097],\n      [-79.197252, 37.214415],\n      [-79.196922, 37.214731],\n      [-79.196487, 37.215166],\n      [-79.196055, 37.215596],\n      [-79.195714, 37.216042],\n      [-79.195395, 37.216449],\n      [-79.194175, 37.218086],\n      [-79.193942, 37.2184],\n      [-79.193714, 37.218705],\n      [-79.193339, 37.219208],\n      [-79.193103, 37.219523],\n      [-79.192804, 37.219924],\n      [-79.192465, 37.220384],\n      [-79.191972, 37.221056],\n      [-79.191665, 37.221486],\n      [-79.191271, 37.222039],\n      [-79.191066, 37.222328],\n      [-79.190837, 37.222648],\n      [-79.190786, 37.222724],\n      [-79.190591, 37.223024],\n      [-79.190561, 37.223069],\n      [-79.190114, 37.223762],\n      [-79.189976, 37.223994],\n      [-79.189786, 37.224314],\n      [-79.189538, 37.224731],\n      [-79.189441, 37.224896],\n      [-79.189231, 37.225287],\n      [-79.188873, 37.225949],\n      [-79.188647, 37.226369],\n      [-79.188578, 37.226497],\n      [-79.188422, 37.22682],\n      [-79.187747, 37.228226],\n      [-79.187638, 37.228454],\n      [-79.186752, 37.230317],\n      [-79.186236, 37.23142],\n      [-79.186183, 37.231531],\n      [-79.186143, 37.231633],\n      [-79.186012, 37.231905],\n      [-79.185971, 37.232009],\n      [-79.185901, 37.232204],\n      [-79.185821, 37.232467],\n      [-79.185783, 37.232629],\n      [-79.185746, 37.232787],\n      [-79.185712, 37.232989],\n      [-79.185564, 37.234115],\n      [-79.18554, 37.234342],\n      [-79.185535, 37.234388],\n      [-79.185527, 37.234464],\n      [-79.185489, 37.234824],\n      [-79.185459, 37.235133],\n      [-79.185442, 37.235447],\n      [-79.185444, 37.235802],\n      [-79.185467, 37.236157],\n      [-79.185494, 37.236478],\n      [-79.185509, 37.236629],\n      [-79.185568, 37.237037],\n      [-79.185613, 37.237268],\n      [-79.185642, 37.237403],\n      [-79.185719, 37.237706],\n      [-79.185791, 37.237965],\n      [-79.185811, 37.238037],\n      [-79.185899, 37.238345],\n      [-79.185952, 37.238527],\n      [-79.18597, 37.23859],\n      [-79.186042, 37.238834],\n      [-79.186525, 37.240494],\n      [-79.186638, 37.240882],\n      [-79.186786, 37.241392],\n      [-79.186995, 37.242108],\n      [-79.187061, 37.242336],\n      [-79.187075, 37.242384],\n      [-79.187298, 37.243149],\n      [-79.187378, 37.243422],\n      [-79.187527, 37.243936],\n      [-79.187774, 37.244774],\n      [-79.187853, 37.245008],\n      [-79.187949, 37.245331],\n      [-79.187975, 37.245426],\n      [-79.18809, 37.245933],\n      [-79.188158, 37.246339],\n      [-79.188193, 37.246639],\n      [-79.188214, 37.246935],\n      [-79.188219, 37.247189],\n      [-79.188219, 37.247284],\n      [-79.188204, 37.247624],\n      [-79.188173, 37.24795],\n      [-79.188121, 37.248287],\n      [-79.188078, 37.248502],\n      [-79.188012, 37.248777],\n      [-79.187964, 37.248948],\n      [-79.18752, 37.250322],\n      [-79.187502, 37.250377],\n      [-79.187461, 37.250489],\n      [-79.187101, 37.251604],\n      [-79.186977, 37.251986],\n      [-79.186803, 37.252487],\n      [-79.186647, 37.252862],\n      [-79.186473, 37.253233],\n      [-79.1864, 37.253375],\n      [-79.186369, 37.253435],\n      [-79.186196, 37.253727],\n      [-79.186096, 37.253883],\n      [-79.185846, 37.254253],\n      [-79.185619, 37.254587],\n      [-79.184816, 37.255765],\n      [-79.184332, 37.256471],\n      [-79.184251, 37.256583],\n      [-79.183919, 37.257073],\n      [-79.183282, 37.258009],\n      [-79.183273, 37.258023],\n      [-79.182658, 37.258928],\n      [-79.182428, 37.259266],\n      [-79.182236, 37.259548],\n      [-79.182189, 37.259617],\n      [-79.181677, 37.260371],\n      [-79.180889, 37.261527],\n      [-79.180329, 37.262346],\n      [-79.179966, 37.262877],\n      [-79.178561, 37.264935],\n      [-79.177834, 37.265998],\n      [-79.17762, 37.266312],\n      [-79.177577, 37.266375],\n      [-79.177344, 37.266717],\n      [-79.177268, 37.266828],\n      [-79.175738, 37.269066],\n      [-79.175293, 37.269718],\n      [-79.175059, 37.270062],\n      [-79.175024, 37.270113],\n      [-79.174746, 37.27052],\n      [-79.174499, 37.270885],\n      [-79.174225, 37.271286],\n      [-79.17318, 37.27282],\n      [-79.172596, 37.273676],\n      [-79.172062, 37.274457],\n      [-79.17205, 37.274476],\n      [-79.171892, 37.274707],\n      [-79.171746, 37.274919],\n      [-79.170612, 37.276581],\n      [-79.170091, 37.277344],\n      [-79.170074, 37.277368],\n      [-79.169014, 37.27887],\n      [-79.168768, 37.279279],\n      [-79.168446, 37.279751],\n      [-79.168095, 37.28026],\n      [-79.167791, 37.280704],\n      [-79.167004, 37.281854],\n      [-79.166839, 37.282126],\n      [-79.166686, 37.282417],\n      [-79.166553, 37.282715],\n      [-79.166455, 37.282978],\n      [-79.166365, 37.283271],\n      [-79.166331, 37.283406],\n      [-79.166277, 37.283662],\n      [-79.166236, 37.283934],\n      [-79.166211, 37.284233],\n      [-79.166208, 37.284331],\n      [-79.16621, 37.284606],\n      [-79.166232, 37.284894],\n      [-79.166273, 37.28518],\n      [-79.166341, 37.285491],\n      [-79.166394, 37.28568],\n      [-79.166419, 37.28576],\n      [-79.16653, 37.286061],\n      [-79.16656, 37.286133],\n      [-79.166601, 37.286228],\n      [-79.167073, 37.287187],\n      [-79.167342, 37.287727],\n      [-79.167647, 37.288335],\n      [-79.167961, 37.288961],\n      [-79.168213, 37.289466],\n      [-79.168669, 37.290363],\n      [-79.169252, 37.291516],\n      [-79.169707, 37.292425],\n      [-79.170019, 37.293049],\n      [-79.170164, 37.293337],\n      [-79.170762, 37.294525],\n      [-79.171017, 37.295032],\n      [-79.171197, 37.29539],\n      [-79.171228, 37.295451],\n      [-79.171707, 37.296402],\n      [-79.171854, 37.296694],\n      [-79.172057, 37.297099],\n      [-79.172329, 37.297639],\n      [-79.172756, 37.298485],\n      [-79.172921, 37.29877],\n      [-79.173118, 37.299071],\n      [-79.173326, 37.299351],\n      [-79.1734, 37.299443],\n      [-79.173711, 37.299824],\n      [-79.174643, 37.300928],\n      [-79.177789, 37.304649],\n      [-79.17841, 37.305383],\n      [-79.179563, 37.306751],\n      [-79.18128, 37.308787],\n      [-79.181492, 37.309036],\n      [-79.181949, 37.309573],\n      [-79.182599, 37.310336],\n      [-79.183198, 37.311046],\n      [-79.183775, 37.311729],\n      [-79.183964, 37.311947],\n      [-79.18428, 37.312314],\n      [-79.18536, 37.313557],\n      [-79.18553, 37.313753],\n      [-79.18588, 37.314159],\n      [-79.186286, 37.314624],\n      [-79.186592, 37.314975],\n      [-79.186893, 37.31532],\n      [-79.187155, 37.315623],\n      [-79.187287, 37.315796],\n      [-79.187433, 37.315958],\n      [-79.187603, 37.316193],\n      [-79.187705, 37.316348],\n      [-79.187781, 37.316469],\n      [-79.187895, 37.316666],\n      [-79.188063, 37.316995],\n      [-79.188211, 37.31734],\n      [-79.188267, 37.317488],\n      [-79.188574, 37.31828],\n      [-79.18873, 37.318682],\n      [-79.188773, 37.318793],\n      [-79.188818, 37.318907],\n      [-79.188983, 37.319332],\n      [-79.189167, 37.319817],\n      [-79.18919, 37.319881],\n      [-79.189276, 37.320122],\n      [-79.189293, 37.320183],\n      [-79.189372, 37.320484],\n      [-79.189407, 37.320635],\n      [-79.189445, 37.320825],\n      [-79.189477, 37.321015],\n      [-79.189492, 37.321115],\n      [-79.189533, 37.321458],\n      [-79.189536, 37.321492],\n      [-79.189586, 37.322119],\n      [-79.189602, 37.322319],\n      [-79.189637, 37.32275],\n      [-79.189647, 37.322876],\n      [-79.189704, 37.323523],\n      [-79.189737, 37.323892],\n      [-79.189747, 37.323997],\n      [-79.189761, 37.324147],\n      [-79.189781, 37.324375],\n      [-79.189798, 37.324545],\n      [-79.189823, 37.324722],\n      [-79.189861, 37.324935],\n      [-79.189896, 37.325095],\n      [-79.189922, 37.3252],\n      [-79.190034, 37.325593],\n      [-79.190115, 37.325884],\n      [-79.190279, 37.326471],\n      [-79.190558, 37.327468],\n      [-79.190626, 37.327737],\n      [-79.190656, 37.327855],\n      [-79.190719, 37.328102],\n      [-79.190893, 37.328783],\n      [-79.19093, 37.328914],\n      [-79.19114, 37.329665],\n      [-79.191197, 37.329849],\n      [-79.191289, 37.330174],\n      [-79.191411, 37.330604],\n      [-79.191427, 37.330662],\n      [-79.191549, 37.331144],\n      [-79.191612, 37.331407],\n      [-79.191674, 37.33166],\n      [-79.191713, 37.331945],\n      [-79.191731, 37.332216],\n      [-79.191727, 37.3324],\n      [-79.191718, 37.332618],\n      [-79.191688, 37.333114],\n      [-79.191671, 37.333265],\n      [-79.191652, 37.333506],\n      [-79.191625, 37.33369],\n      [-79.191591, 37.333978],\n      [-79.191586, 37.334109],\n      [-79.191605, 37.334336],\n      [-79.19161, 37.334672],\n      [-79.191612, 37.334771],\n      [-79.191619, 37.335165],\n      [-79.191615, 37.335425],\n      [-79.191612, 37.335464],\n      [-79.191591, 37.335798],\n      [-79.191573, 37.33597],\n      [-79.19153, 37.336198],\n      [-79.191511, 37.3363],\n      [-79.191476, 37.336481],\n      [-79.191396, 37.336901],\n      [-79.191254, 37.33724],\n      [-79.191108, 37.337564],\n      [-79.190891, 37.337852],\n      [-79.190707, 37.338004],\n      [-79.190446, 37.338136],\n      [-79.190159, 37.338232],\n      [-79.189809, 37.338303],\n      [-79.189504, 37.338343],\n      [-79.189039, 37.338414],\n      [-79.188663, 37.33847],\n      [-79.188351, 37.338526],\n      [-79.18802, 37.338571],\n      [-79.18767, 37.338617],\n      [-79.187276, 37.338677],\n      [-79.18683, 37.338758],\n      [-79.186448, 37.338854],\n      [-79.186232, 37.338986],\n      [-79.186034, 37.339158],\n      [-79.185913, 37.339381],\n      [-79.185862, 37.339654],\n      [-79.185792, 37.339958],\n      [-79.185735, 37.340246],\n      [-79.185608, 37.340565],\n      [-79.185474, 37.340849],\n      [-79.185264, 37.341152],\n      [-79.185009, 37.341421],\n      [-79.184748, 37.341658],\n      [-79.184399, 37.341989],\n      [-79.184093, 37.342254],\n      [-79.183658, 37.342682],\n      [-79.18294, 37.343536],\n      [-79.182113, 37.344505],\n      [-79.181077, 37.345699],\n      [-79.180004, 37.346871],\n      [-79.178729, 37.348196],\n      [-79.177389, 37.349407],\n      [-79.177129, 37.349621],\n      [-79.176626, 37.350036],\n      [-79.173129, 37.353092],\n      [-79.169752, 37.356318],\n      [-79.169186, 37.356859],\n      [-79.166439, 37.359647],\n      [-79.165165, 37.360856],\n      [-79.164528, 37.361444],\n      [-79.163946, 37.361878],\n      [-79.162943, 37.362614],\n      [-79.161891, 37.363349],\n      [-79.159885, 37.364693],\n      [-79.158866, 37.365389],\n      [-79.157915, 37.36609],\n      [-79.156262, 37.367299],\n      [-79.153378, 37.36939],\n      [-79.1513, 37.370777],\n      [-79.148798, 37.372337],\n      [-79.146813, 37.373529],\n      [-79.146135, 37.37394],\n      [-79.145298, 37.374385],\n      [-79.144399, 37.374808],\n      [-79.143032, 37.375351],\n      [-79.142887, 37.375396],\n      [-79.141407, 37.375861],\n      [-79.13952, 37.376309],\n      [-79.137442, 37.376753],\n      [-79.136385, 37.376976],\n      [-79.135221, 37.37722],\n      [-79.134065, 37.377456],\n      [-79.132756, 37.377733],\n      [-79.131505, 37.377997],\n      [-79.130701, 37.378165],\n      [-79.129655, 37.378385],\n      [-79.128812, 37.378561],\n      [-79.127809, 37.378776],\n      [-79.127166, 37.378891],\n      [-79.124907, 37.379433],\n      [-79.122351, 37.380007],\n      [-79.119924, 37.380555],\n      [-79.118369, 37.380958],\n      [-79.116892, 37.381492],\n      [-79.11429, 37.382508],\n      [-79.111589, 37.383564],\n      [-79.110432, 37.384015],\n      [-79.108723, 37.384663],\n      [-79.107004, 37.385341],\n      [-79.10533, 37.38597],\n      [-79.10529, 37.385969],\n      [-79.104874, 37.386095],\n      [-79.104406, 37.386191],\n      [-79.103958, 37.38624],\n      [-79.103328, 37.386271],\n      [-79.101681, 37.386155],\n      [-79.101144, 37.386117],\n      [-79.100418, 37.386038],\n      [-79.097991, 37.385843],\n      [-79.09636, 37.385744],\n      [-79.095982, 37.385658],\n      [-79.095845, 37.385614],\n      [-79.09571, 37.385555],\n      [-79.095567, 37.38548],\n      [-79.095427, 37.38539],\n      [-79.095308, 37.385296],\n      [-79.09517, 37.385161],\n      [-79.09509, 37.385054],\n      [-79.094998, 37.384905],\n      [-79.094916, 37.384737],\n      [-79.094844, 37.384528],\n      [-79.094656, 37.383845],\n      [-79.094531, 37.38345],\n      [-79.094325, 37.383054],\n      [-79.094038, 37.38276],\n      [-79.093621, 37.382467],\n      [-79.093187, 37.382294],\n      [-79.092689, 37.382201],\n      [-79.092284, 37.382201],\n      [-79.091903, 37.382257],\n      [-79.091551, 37.382364],\n      [-79.091187, 37.382541],\n      [-79.090959, 37.382723],\n      [-79.090789, 37.382882],\n      [-79.090589, 37.383115],\n      [-79.090443, 37.383376],\n      [-79.090284, 37.383744],\n      [-79.090225, 37.384],\n      [-79.090179, 37.384541],\n      [-79.090062, 37.385779],\n      [-79.089925, 37.386644],\n      [-79.089849, 37.387226],\n      [-79.089779, 37.387541],\n      [-79.089689, 37.387836],\n      [-79.0895, 37.38838],\n      [-79.089436, 37.388633],\n      [-79.089405, 37.388841],\n      [-79.089289, 37.389685],\n      [-79.089161, 37.39093],\n      [-79.089008, 37.392008],\n      [-79.08881, 37.394069],\n      [-79.088768, 37.394579],\n      [-79.088645, 37.395885],\n      [-79.088477, 37.397207],\n      [-79.087956, 37.401181],\n      [-79.087825, 37.401823],\n      [-79.087665, 37.402308],\n      [-79.087554, 37.402629],\n      [-79.08736, 37.403142],\n      [-79.087142, 37.403562],\n      [-79.086923, 37.403937],\n      [-79.086762, 37.404195],\n      [-79.086439, 37.404708],\n      [-79.086251, 37.405002],\n      [-79.085982, 37.405393],\n      [-79.085647, 37.405896],\n      [-79.085037, 37.406824],\n      [-79.084691, 37.407346],\n      [-79.084239, 37.407998],\n      [-79.084081, 37.408208],\n      [-79.083969, 37.408376],\n      [-79.083852, 37.408534],\n      [-79.083752, 37.408705],\n      [-79.083641, 37.408893],\n      [-79.08253, 37.41059],\n      [-79.082107, 37.41155],\n      [-79.081937, 37.412163],\n      [-79.081833, 37.412538],\n      [-79.081757, 37.413176],\n      [-79.08171, 37.413903],\n      [-79.081751, 37.414774],\n      [-79.081781, 37.415758],\n      [-79.081777, 37.417393],\n      [-79.081646, 37.41901],\n      [-79.081485, 37.420256],\n      [-79.081292, 37.421219],\n      [-79.081057, 37.422257],\n      [-79.080513, 37.424117],\n      [-79.07951, 37.427155],\n      [-79.078061, 37.431195],\n      [-79.077269, 37.433524],\n      [-79.076993, 37.434391],\n      [-79.076647, 37.435495],\n      [-79.076395, 37.436608],\n      [-79.076304, 37.437254],\n      [-79.076229, 37.438019],\n      [-79.076213, 37.439312],\n      [-79.076213, 37.439413],\n      [-79.076155, 37.442774],\n      [-79.07614, 37.443179],\n      [-79.076116, 37.443841],\n      [-79.076046, 37.446058],\n      [-79.075976, 37.449173],\n      [-79.076002, 37.451689],\n      [-79.076065, 37.4523],\n      [-79.076262, 37.453],\n      [-79.076579, 37.453683],\n      [-79.076982, 37.454312],\n      [-79.077536, 37.45501],\n      [-79.079739, 37.457229],\n      [-79.080689, 37.458217],\n      [-79.081531, 37.459252],\n      [-79.082085, 37.460038],\n      [-79.082441, 37.460738],\n      [-79.082708, 37.461304],\n      [-79.082968, 37.461981],\n      [-79.083137, 37.462694],\n      [-79.083265, 37.463513],\n      [-79.083293, 37.464338],\n      [-79.083287, 37.464745],\n      [-79.083277, 37.465166],\n      [-79.083236, 37.465743],\n      [-79.083136, 37.466259],\n      [-79.082678, 37.468029],\n      [-79.082438, 37.469156],\n      [-79.08215, 37.470371],\n      [-79.081963, 37.471033],\n      [-79.081827, 37.471415],\n      [-79.081408, 37.472342],\n      [-79.081005, 37.47309],\n      [-79.080296, 37.474045],\n      [-79.079641, 37.474751],\n      [-79.078249, 37.476094],\n      [-79.077451, 37.477058],\n      [-79.076776, 37.477863],\n      [-79.076213, 37.478711],\n      [-79.075638, 37.479763],\n      [-79.075274, 37.480624],\n      [-79.074869, 37.481821],\n      [-79.074675, 37.482594],\n      [-79.074634, 37.482892],\n      [-79.074593, 37.483204],\n      [-79.07457, 37.483627],\n      [-79.074448, 37.484732],\n      [-79.074331, 37.485753],\n      [-79.074167, 37.486518],\n      [-79.073888, 37.487326],\n      [-79.073467, 37.488074],\n      [-79.07305, 37.488846],\n      [-79.072616, 37.489619],\n      [-79.072018, 37.490699],\n      [-79.07163, 37.49136],\n      [-79.070791, 37.492896],\n      [-79.070146, 37.494186],\n      [-79.06953, 37.495438],\n      [-79.068703, 37.497026],\n      [-79.067817, 37.498799],\n      [-79.067177, 37.500098],\n      [-79.066497, 37.501471],\n      [-79.066168, 37.502341],\n      [-79.065974, 37.503063],\n      [-79.065895, 37.503746],\n      [-79.065857, 37.504329],\n      [-79.065851, 37.505804],\n      [-79.065851, 37.506847],\n      [-79.065828, 37.508187],\n      [-79.065831, 37.509824],\n      [-79.0658, 37.510657],\n      [-79.065769, 37.511273],\n      [-79.065628, 37.51191],\n      [-79.065455, 37.512506],\n      [-79.065165, 37.513111],\n      [-79.064807, 37.513823],\n      [-79.064426, 37.514512],\n      [-79.063986, 37.515424],\n      [-79.063804, 37.515903],\n      [-79.063545, 37.516788],\n      [-79.063328, 37.51796],\n      [-79.063264, 37.519296],\n      [-79.063311, 37.520208],\n      [-79.063487, 37.521209],\n      [-79.063645, 37.522214],\n      [-79.063845, 37.523275],\n      [-79.06425, 37.525364],\n      [-79.064871, 37.528602],\n      [-79.065376, 37.531264],\n      [-79.066057, 37.534819],\n      [-79.066725, 37.538252],\n      [-79.0674, 37.541904],\n      [-79.06794, 37.544546],\n      [-79.068021, 37.545221],\n      [-79.068093, 37.545891],\n      [-79.068075, 37.546616],\n      [-79.067977, 37.547323],\n      [-79.067805, 37.547989],\n      [-79.06729, 37.549617],\n      [-79.066508, 37.552189],\n      [-79.066203, 37.55312],\n      [-79.065916, 37.554199],\n      [-79.06571, 37.554864],\n      [-79.065358, 37.555901],\n      [-79.06462, 37.558162],\n      [-79.064236, 37.559374],\n      [-79.064086, 37.559848],\n      [-79.063835, 37.560896],\n      [-79.063609, 37.561383],\n      [-79.063256, 37.561986],\n      [-79.062896, 37.562503],\n      [-79.062134, 37.563345],\n      [-79.061625, 37.563753],\n      [-79.06094, 37.564213],\n      [-79.058641, 37.565583],\n      [-79.05758, 37.566208],\n      [-79.056639, 37.566768],\n      [-79.055935, 37.567192],\n      [-79.055742, 37.567302],\n      [-79.055553, 37.567416],\n      [-79.055246, 37.567615],\n      [-79.054927, 37.567838],\n      [-79.054748, 37.567977],\n      [-79.054525, 37.568169],\n      [-79.05429, 37.568391],\n      [-79.054239, 37.568442],\n      [-79.054034, 37.568657],\n      [-79.053873, 37.56885],\n      [-79.053657, 37.569143],\n      [-79.053524, 37.569347],\n      [-79.053368, 37.569618],\n      [-79.053228, 37.569894],\n      [-79.053172, 37.570026],\n      [-79.053043, 37.570358],\n      [-79.05286, 37.57095],\n      [-79.052677, 37.571527],\n      [-79.052485, 37.572133],\n      [-79.052132, 37.573261],\n      [-79.051632, 37.57486],\n      [-79.051348, 37.57574],\n      [-79.051123, 37.576286],\n      [-79.051087, 37.576361],\n      [-79.050788, 37.576916],\n      [-79.050662, 37.577116],\n      [-79.050472, 37.577395],\n      [-79.050278, 37.577652],\n      [-79.050057, 37.577924],\n      [-79.049759, 37.578262],\n      [-79.049412, 37.578608],\n      [-79.049047, 37.578931],\n      [-79.047001, 37.580602],\n      [-79.046515, 37.580994],\n      [-79.046166, 37.58126],\n      [-79.045909, 37.581455],\n      [-79.04561, 37.58167],\n      [-79.045264, 37.581887],\n      [-79.044961, 37.582077],\n      [-79.044149, 37.582573],\n      [-79.04353, 37.582927],\n      [-79.04291, 37.58327],\n      [-79.042129, 37.58371],\n      [-79.041873, 37.583864],\n      [-79.041806, 37.58391],\n      [-79.041621, 37.584017],\n      [-79.041414, 37.584155],\n      [-79.041178, 37.58431],\n      [-79.040635, 37.584689],\n      [-79.039894, 37.585255],\n      [-79.039608, 37.585491],\n      [-79.03912, 37.585904],\n      [-79.038845, 37.586155],\n      [-79.038474, 37.586513],\n      [-79.03781, 37.587198],\n      [-79.037358, 37.587719],\n      [-79.037086, 37.588056],\n      [-79.036877, 37.588331],\n      [-79.036498, 37.588836],\n      [-79.036258, 37.589205],\n      [-79.035926, 37.589739],\n      [-79.034645, 37.591992],\n      [-79.034482, 37.592286],\n      [-79.034097, 37.592957],\n      [-79.033913, 37.593255],\n      [-79.033669, 37.593669],\n      [-79.033006, 37.594819],\n      [-79.032654, 37.595452],\n      [-79.032044, 37.596522],\n      [-79.031678, 37.597159],\n      [-79.031353, 37.597735],\n      [-79.03004, 37.600074],\n      [-79.029644, 37.600763],\n      [-79.028963, 37.601951],\n      [-79.028685, 37.602397],\n      [-79.02851, 37.602662],\n      [-79.028221, 37.603043],\n      [-79.027978, 37.603341],\n      [-79.027692, 37.60368],\n      [-79.027548, 37.60383],\n      [-79.027306, 37.604072],\n      [-79.027105, 37.604269],\n      [-79.02697, 37.604392],\n      [-79.026652, 37.60468],\n      [-79.026083, 37.605207],\n      [-79.026036, 37.60525],\n      [-79.025989, 37.605294],\n      [-79.025872, 37.605402],\n      [-79.02555, 37.605685],\n      [-79.025303, 37.605893],\n      [-79.025239, 37.605951],\n      [-79.025075, 37.606102],\n      [-79.024795, 37.606358],\n      [-79.024408, 37.606702],\n      [-79.024072, 37.607013],\n      [-79.024053, 37.607031],\n      [-79.023787, 37.607264],\n      [-79.023498, 37.607516],\n      [-79.023027, 37.607911],\n      [-79.022811, 37.60807],\n      [-79.022583, 37.608218],\n      [-79.022393, 37.608329],\n      [-79.022103, 37.608478],\n      [-79.021864, 37.608585],\n      [-79.021424, 37.608752],\n      [-79.020855, 37.608965],\n      [-79.020271, 37.609195],\n      [-79.020171, 37.609236],\n      [-79.019921, 37.609348],\n      [-79.019569, 37.609526],\n      [-79.019341, 37.609661],\n      [-79.019134, 37.609801],\n      [-79.018938, 37.609951],\n      [-79.018736, 37.61013],\n      [-79.018557, 37.610318],\n      [-79.018408, 37.6105],\n      [-79.018273, 37.610689],\n      [-79.018177, 37.610845],\n      [-79.018077, 37.611005],\n      [-79.017942, 37.61127],\n      [-79.01775, 37.611733],\n      [-79.017583, 37.612195],\n      [-79.017453, 37.612536],\n      [-79.01736, 37.612779],\n      [-79.017077, 37.613518],\n      [-79.016316, 37.615651],\n      [-79.016211, 37.615921],\n      [-79.015957, 37.616661],\n      [-79.015442, 37.618041],\n      [-79.015171, 37.618767],\n      [-79.015044, 37.619085],\n      [-79.014896, 37.619401],\n      [-79.014725, 37.619699],\n      [-79.014609, 37.619891],\n      [-79.014507, 37.620046],\n      [-79.014326, 37.620291],\n      [-79.014076, 37.620611],\n      [-79.013882, 37.620808],\n      [-79.013583, 37.621079],\n      [-79.012998, 37.621504],\n      [-79.01238, 37.621893],\n      [-79.010646, 37.622959],\n      [-79.01003, 37.623323],\n      [-79.009112, 37.623886],\n      [-79.007841, 37.62468],\n      [-79.007669, 37.624786],\n      [-79.00613, 37.625753],\n      [-79.00574, 37.625992],\n      [-79.004933, 37.626484],\n      [-79.004251, 37.626912],\n      [-79.004139, 37.626981],\n      [-79.003154, 37.627592],\n      [-79.001641, 37.628516],\n      [-79.001111, 37.628835],\n      [-79.00072, 37.62907],\n      [-79.000623, 37.62914],\n      [-79.000217, 37.629394],\n      [-78.998912, 37.630202],\n      [-78.998196, 37.630645],\n      [-78.997598, 37.631025],\n      [-78.997526, 37.631071],\n      [-78.997241, 37.631274],\n      [-78.996875, 37.631534],\n      [-78.996217, 37.63205],\n      [-78.995656, 37.632525],\n      [-78.995017, 37.633129],\n      [-78.994464, 37.633668],\n      [-78.993794, 37.634338],\n      [-78.992582, 37.635539],\n      [-78.99241, 37.635715],\n      [-78.992112, 37.636],\n      [-78.991971, 37.636127],\n      [-78.991598, 37.636454],\n      [-78.991319, 37.636676],\n      [-78.991111, 37.636827],\n      [-78.990724, 37.637089],\n      [-78.990344, 37.637324],\n      [-78.989967, 37.637537],\n      [-78.989578, 37.637737],\n      [-78.988855, 37.638052],\n      [-78.98807, 37.638382],\n      [-78.986736, 37.63892],\n      [-78.986454, 37.639034],\n      [-78.985803, 37.639316],\n      [-78.984897, 37.639687],\n      [-78.98388, 37.640096],\n      [-78.983117, 37.640414],\n      [-78.982726, 37.640573],\n      [-78.981774, 37.640959],\n      [-78.979687, 37.64182],\n      [-78.978231, 37.642417],\n      [-78.977005, 37.64291],\n      [-78.97646, 37.643116],\n      [-78.975777, 37.643333],\n      [-78.975711, 37.643354],\n      [-78.97542, 37.643425],\n      [-78.974834, 37.643551],\n      [-78.974604, 37.64359],\n      [-78.974067, 37.643681],\n      [-78.973393, 37.643752],\n      [-78.972559, 37.643813],\n      [-78.972242, 37.643839],\n      [-78.970006, 37.64399],\n      [-78.96903, 37.64406],\n      [-78.968589, 37.644095],\n      [-78.968224, 37.644136],\n      [-78.967889, 37.644182],\n      [-78.967664, 37.644226],\n      [-78.967387, 37.644293],\n      [-78.967224, 37.644341],\n      [-78.966957, 37.64443],\n      [-78.966688, 37.644536],\n      [-78.966474, 37.644631],\n      [-78.966164, 37.644789],\n      [-78.965983, 37.644902],\n      [-78.965692, 37.645098],\n      [-78.965428, 37.645294],\n      [-78.965238, 37.645456],\n      [-78.965063, 37.645628],\n      [-78.964898, 37.645816],\n      [-78.964762, 37.645992],\n      [-78.964605, 37.646219],\n      [-78.964465, 37.646453],\n      [-78.964354, 37.646672],\n      [-78.96426, 37.646896],\n      [-78.964184, 37.647124],\n      [-78.964105, 37.647472],\n      [-78.964045, 37.647822],\n      [-78.963795, 37.650137],\n      [-78.963771, 37.650446],\n      [-78.963726, 37.650831],\n      [-78.963699, 37.651104],\n      [-78.963637, 37.651545],\n      [-78.963559, 37.651968],\n      [-78.963475, 37.652244],\n      [-78.963403, 37.652439],\n      [-78.963343, 37.65259],\n      [-78.963259, 37.652771],\n      [-78.963211, 37.652855],\n      [-78.963159, 37.652948],\n      [-78.963044, 37.653119],\n      [-78.962876, 37.65334],\n      [-78.962692, 37.653554],\n      [-78.961989, 37.654258],\n      [-78.961507, 37.654728],\n      [-78.961039, 37.655181],\n      [-78.960337, 37.655875],\n      [-78.96023, 37.655972],\n      [-78.960126, 37.656071],\n      [-78.959777, 37.656385],\n      [-78.959596, 37.656559],\n      [-78.959428, 37.656733],\n      [-78.95894, 37.657212],\n      [-78.958347, 37.65781],\n      [-78.957955, 37.658265],\n      [-78.957902, 37.65834],\n      [-78.957703, 37.658582],\n      [-78.956957, 37.659613],\n      [-78.956, 37.660952],\n      [-78.95555, 37.661601],\n      [-78.95521, 37.662149],\n      [-78.955078, 37.662367],\n      [-78.954742, 37.662988],\n      [-78.954584, 37.663297],\n      [-78.954305, 37.663917],\n      [-78.954148, 37.6643],\n      [-78.953981, 37.664751],\n      [-78.953842, 37.665162],\n      [-78.953791, 37.665348],\n      [-78.953693, 37.665702],\n      [-78.953658, 37.665836],\n      [-78.953519, 37.666441],\n      [-78.953449, 37.666806],\n      [-78.953407, 37.667104],\n      [-78.953324, 37.667763],\n      [-78.953292, 37.668183],\n      [-78.953221, 37.669156],\n      [-78.953153, 37.670098],\n      [-78.953142, 37.670264],\n      [-78.953141, 37.6704],\n      [-78.953072, 37.671177],\n      [-78.95304, 37.671615],\n      [-78.952995, 37.672174],\n      [-78.952947, 37.672942],\n      [-78.95292, 37.673225],\n      [-78.952878, 37.673819],\n      [-78.952829, 37.674339],\n      [-78.952797, 37.674686],\n      [-78.952784, 37.674804],\n      [-78.952747, 37.675024],\n      [-78.952692, 37.675301],\n      [-78.952624, 37.675578],\n      [-78.952561, 37.675784],\n      [-78.952486, 37.675985],\n      [-78.952442, 37.676122],\n      [-78.952386, 37.676257],\n      [-78.95232, 37.676433],\n      [-78.952115, 37.676852],\n      [-78.952045, 37.676981],\n      [-78.951895, 37.677259],\n      [-78.951765, 37.677478],\n      [-78.951015, 37.678688],\n      [-78.950642, 37.679294],\n      [-78.950106, 37.680167],\n      [-78.949932, 37.680439],\n      [-78.949555, 37.681057],\n      [-78.948514, 37.682749],\n      [-78.948346, 37.683014],\n      [-78.94819, 37.68327],\n      [-78.947933, 37.683687],\n      [-78.947735, 37.683997],\n      [-78.946949, 37.685284],\n      [-78.946763, 37.685577],\n      [-78.946171, 37.686544],\n      [-78.946077, 37.686718],\n      [-78.945972, 37.686928],\n      [-78.945848, 37.687201],\n      [-78.945794, 37.687349],\n      [-78.945689, 37.687661],\n      [-78.945632, 37.687901],\n      [-78.945568, 37.688266],\n      [-78.945541, 37.688542],\n      [-78.945537, 37.688659],\n      [-78.945545, 37.689126],\n      [-78.945579, 37.689434],\n      [-78.945664, 37.689907],\n      [-78.945683, 37.68999],\n      [-78.945776, 37.690456],\n      [-78.945835, 37.69071],\n      [-78.945961, 37.691323],\n      [-78.946182, 37.69241],\n      [-78.946237, 37.692788],\n      [-78.946274, 37.693085],\n      [-78.946296, 37.693491],\n      [-78.946303, 37.694022],\n      [-78.946301, 37.694057],\n      [-78.946287, 37.694387],\n      [-78.946261, 37.694709],\n      [-78.946249, 37.694805],\n      [-78.946182, 37.695293],\n      [-78.946055, 37.695876],\n      [-78.945864, 37.696567],\n      [-78.945405, 37.698162],\n      [-78.945298, 37.698548],\n      [-78.944826, 37.700186],\n      [-78.944719, 37.700501],\n      [-78.94458, 37.700835],\n      [-78.944457, 37.701074],\n      [-78.944324, 37.701307],\n      [-78.944135, 37.701595],\n      [-78.944026, 37.701738],\n      [-78.943778, 37.70202],\n      [-78.943504, 37.702305],\n      [-78.943214, 37.702564],\n      [-78.94302, 37.702719],\n      [-78.942935, 37.702779],\n      [-78.942809, 37.702868],\n      [-78.942485, 37.703077],\n      [-78.942218, 37.703232],\n      [-78.9405, 37.704132],\n      [-78.940455, 37.704155],\n      [-78.940006, 37.704381],\n      [-78.938227, 37.705302],\n      [-78.93698, 37.705948],\n      [-78.93647, 37.706225],\n      [-78.93488, 37.707122],\n      [-78.934646, 37.707256],\n      [-78.93388, 37.707679],\n      [-78.933448, 37.707924],\n      [-78.932774, 37.708305],\n      [-78.931107, 37.709235],\n      [-78.929365, 37.710215],\n      [-78.928987, 37.710423],\n      [-78.928188, 37.710873],\n      [-78.927848, 37.711058],\n      [-78.927739, 37.711117],\n      [-78.927286, 37.71134],\n      [-78.927035, 37.711449],\n      [-78.926705, 37.711572],\n      [-78.926357, 37.711684],\n      [-78.926015, 37.711773],\n      [-78.925764, 37.711831],\n      [-78.925742, 37.711836],\n      [-78.925395, 37.711899],\n      [-78.925098, 37.711943],\n      [-78.92463, 37.712006],\n      [-78.924358, 37.71204],\n      [-78.9241, 37.712072],\n      [-78.923317, 37.712168],\n      [-78.922673, 37.712257],\n      [-78.921644, 37.712386],\n      [-78.920771, 37.712503],\n      [-78.91879, 37.712755],\n      [-78.917763, 37.712894],\n      [-78.916758, 37.713029],\n      [-78.916316, 37.713107],\n      [-78.915891, 37.713204],\n      [-78.915614, 37.71328],\n      [-78.915324, 37.713372],\n      [-78.915274, 37.713388],\n      [-78.914912, 37.71352],\n      [-78.91455, 37.71367],\n      [-78.914179, 37.713842],\n      [-78.913675, 37.714085],\n      [-78.912967, 37.714415],\n      [-78.910226, 37.715714],\n      [-78.90939, 37.716116],\n      [-78.908844, 37.716378],\n      [-78.908565, 37.716525],\n      [-78.908344, 37.716654],\n      [-78.908223, 37.716733],\n      [-78.907898, 37.716972],\n      [-78.907709, 37.71712],\n      [-78.907284, 37.717479],\n      [-78.905705, 37.718784],\n      [-78.905314, 37.719084],\n      [-78.90491, 37.719372],\n      [-78.904525, 37.719604],\n      [-78.904033, 37.719882],\n      [-78.903337, 37.720265],\n      [-78.902528, 37.720722],\n      [-78.902455, 37.720766],\n      [-78.902055, 37.720998],\n      [-78.901704, 37.721237],\n      [-78.901372, 37.721492],\n      [-78.901207, 37.721632],\n      [-78.901102, 37.721732],\n      [-78.90093, 37.721897],\n      [-78.900791, 37.722043],\n      [-78.900736, 37.722103],\n      [-78.900601, 37.722261],\n      [-78.900394, 37.722523],\n      [-78.900222, 37.722764],\n      [-78.900079, 37.722992],\n      [-78.900004, 37.723131],\n      [-78.899716, 37.723665],\n      [-78.899467, 37.724145],\n      [-78.899406, 37.724274],\n      [-78.89922, 37.72461],\n      [-78.899008, 37.725016],\n      [-78.898838, 37.725322],\n      [-78.898749, 37.725462],\n      [-78.898619, 37.725684],\n      [-78.898501, 37.725886],\n      [-78.898424, 37.726009],\n      [-78.898396, 37.726054],\n      [-78.89823, 37.726333],\n      [-78.897785, 37.72702],\n      [-78.897326, 37.727687],\n      [-78.897029, 37.728104],\n      [-78.896755, 37.72847],\n      [-78.896087, 37.729327],\n      [-78.895376, 37.730223],\n      [-78.89492, 37.73078],\n      [-78.894224, 37.731648],\n      [-78.893951, 37.731982],\n      [-78.893208, 37.732922],\n      [-78.893101, 37.733073],\n      [-78.892951, 37.733284],\n      [-78.892829, 37.733486],\n      [-78.892725, 37.733694],\n      [-78.892653, 37.733852],\n      [-78.892395, 37.734583],\n      [-78.892264, 37.735006],\n      [-78.891874, 37.73617],\n      [-78.891809, 37.736394],\n      [-78.891615, 37.736972],\n      [-78.891508, 37.737307],\n      [-78.891316, 37.737819],\n      [-78.891154, 37.738191],\n      [-78.891075, 37.738356],\n      [-78.891011, 37.738485],\n      [-78.890701, 37.739024],\n      [-78.890539, 37.739262],\n      [-78.890353, 37.739521],\n      [-78.890119, 37.739847],\n      [-78.889796, 37.740253],\n      [-78.889491, 37.740645],\n      [-78.889217, 37.740996],\n      [-78.888944, 37.74133],\n      [-78.888623, 37.741743],\n      [-78.888513, 37.741886],\n      [-78.888267, 37.742188],\n      [-78.887876, 37.742653],\n      [-78.887675, 37.74287],\n      [-78.887504, 37.743037],\n      [-78.887277, 37.743237],\n      [-78.887216, 37.743287],\n      [-78.887135, 37.743353],\n      [-78.886534, 37.743824],\n      [-78.886162, 37.744125],\n      [-78.8861, 37.744182],\n      [-78.885899, 37.744355],\n      [-78.885622, 37.744575],\n      [-78.885356, 37.74478],\n      [-78.884605, 37.745388],\n      [-78.884042, 37.74585],\n      [-78.882882, 37.746752],\n      [-78.882051, 37.747417],\n      [-78.880834, 37.748391],\n      [-78.88003, 37.749038],\n      [-78.879751, 37.749271],\n      [-78.879568, 37.74942],\n      [-78.879376, 37.749569],\n      [-78.878419, 37.750353],\n      [-78.877854, 37.750804],\n      [-78.877584, 37.751037],\n      [-78.877286, 37.751315],\n      [-78.877004, 37.751598],\n      [-78.876844, 37.751774],\n      [-78.876626, 37.752042],\n      [-78.876378, 37.752385],\n      [-78.876192, 37.752665],\n      [-78.876061, 37.752882],\n      [-78.875814, 37.753345],\n      [-78.875209, 37.754691],\n      [-78.874619, 37.756931],\n      [-78.874501, 37.757307],\n      [-78.874339, 37.757855],\n      [-78.873994, 37.758979],\n      [-78.873789, 37.759637],\n      [-78.873696, 37.75991],\n      [-78.873541, 37.760318],\n      [-78.873332, 37.760834],\n      [-78.873094, 37.761337],\n      [-78.872847, 37.761808],\n      [-78.872451, 37.762468],\n      [-78.872257, 37.76277],\n      [-78.871993, 37.763172],\n      [-78.871574, 37.763799],\n      [-78.871327, 37.764167],\n      [-78.871012, 37.764642],\n      [-78.870469, 37.765468],\n      [-78.870316, 37.765702],\n      [-78.870042, 37.766126],\n      [-78.869873, 37.766412],\n      [-78.869781, 37.766589],\n      [-78.869687, 37.766814],\n      [-78.869585, 37.76708],\n      [-78.869516, 37.767314],\n      [-78.869424, 37.767698],\n      [-78.869391, 37.767942],\n      [-78.86938, 37.768238],\n      [-78.869389, 37.768459],\n      [-78.869415, 37.768673],\n      [-78.869485, 37.768991],\n      [-78.869567, 37.769255],\n      [-78.86966, 37.769515],\n      [-78.869743, 37.769714],\n      [-78.869793, 37.769822],\n      [-78.870127, 37.770634],\n      [-78.870244, 37.770938],\n      [-78.870299, 37.771157],\n      [-78.870337, 37.771378],\n      [-78.870379, 37.771605],\n      [-78.870392, 37.771879],\n      [-78.870378, 37.772127],\n      [-78.870337, 37.772397],\n      [-78.870272, 37.77267],\n      [-78.870248, 37.772764],\n      [-78.87004, 37.773562],\n      [-78.869728, 37.774718],\n      [-78.869574, 37.775264],\n      [-78.869411, 37.775864],\n      [-78.869234, 37.776522],\n      [-78.869061, 37.777151],\n      [-78.868889, 37.777735],\n      [-78.868643, 37.778648],\n      [-78.868399, 37.779571],\n      [-78.868224, 37.780198],\n      [-78.868067, 37.780782],\n      [-78.867497, 37.782893],\n      [-78.867434, 37.783141],\n      [-78.867364, 37.783414],\n      [-78.867185, 37.784047],\n      [-78.867156, 37.784152],\n      [-78.867042, 37.784562],\n      [-78.866921, 37.785054],\n      [-78.866779, 37.785508],\n      [-78.866518, 37.786333],\n      [-78.866458, 37.786501],\n      [-78.866348, 37.786832],\n      [-78.866066, 37.787709],\n      [-78.865703, 37.788816],\n      [-78.865457, 37.789659],\n      [-78.865164, 37.790592],\n      [-78.864927, 37.791345],\n      [-78.864619, 37.792175],\n      [-78.864507, 37.792484],\n      [-78.864363, 37.792792],\n      [-78.864228, 37.793041],\n      [-78.864067, 37.7933],\n      [-78.863882, 37.793548],\n      [-78.863684, 37.793797],\n      [-78.863319, 37.794211],\n      [-78.863117, 37.794344],\n      [-78.86295, 37.794541],\n      [-78.862701, 37.794857],\n      [-78.86248, 37.795184],\n      [-78.862275, 37.795518],\n      [-78.862199, 37.795651],\n      [-78.862007, 37.796159],\n      [-78.861989, 37.79622],\n      [-78.861909, 37.796548],\n      [-78.861883, 37.796687],\n      [-78.861846, 37.796942],\n      [-78.861828, 37.797235],\n      [-78.861827, 37.797529],\n      [-78.861837, 37.797754],\n      [-78.861844, 37.797901],\n      [-78.861878, 37.798631],\n      [-78.861919, 37.799738],\n      [-78.861971, 37.800826],\n      [-78.862007, 37.801869],\n      [-78.862081, 37.803303],\n      [-78.862104, 37.80423],\n      [-78.86209, 37.804437],\n      [-78.862063, 37.804642],\n      [-78.862038, 37.804754],\n      [-78.862023, 37.804816],\n      [-78.861947, 37.805046],\n      [-78.861861, 37.805246],\n      [-78.861771, 37.805437],\n      [-78.86165, 37.805634],\n      [-78.861512, 37.805817],\n      [-78.861343, 37.806004],\n      [-78.860353, 37.806994],\n      [-78.859848, 37.807481],\n      [-78.858512, 37.808821],\n      [-78.858367, 37.808958],\n      [-78.858079, 37.809211],\n      [-78.857729, 37.809505],\n      [-78.857293, 37.80986],\n      [-78.856987, 37.81009],\n      [-78.856658, 37.810338],\n      [-78.855693, 37.81105],\n      [-78.85561, 37.811115],\n      [-78.855262, 37.811371],\n      [-78.854965, 37.811605],\n      [-78.853694, 37.812587],\n      [-78.853389, 37.812818],\n      [-78.852362, 37.813637],\n      [-78.851981, 37.813912],\n      [-78.851517, 37.814266],\n      [-78.851057, 37.81462],\n      [-78.85085, 37.814768],\n      [-78.850729, 37.814859],\n      [-78.850652, 37.81492],\n      [-78.850085, 37.815369],\n      [-78.848637, 37.81648],\n      [-78.846503, 37.818117],\n      [-78.846263, 37.818303],\n      [-78.845641, 37.818784],\n      [-78.845198, 37.81912],\n      [-78.844287, 37.819835],\n      [-78.843809, 37.820229],\n      [-78.841255, 37.822413],\n      [-78.840635, 37.822925],\n      [-78.840114, 37.823377],\n      [-78.839772, 37.823685],\n      [-78.839408, 37.824047],\n      [-78.839049, 37.824425],\n      [-78.838766, 37.824737],\n      [-78.838386, 37.825182],\n      [-78.838147, 37.825481],\n      [-78.837849, 37.82588],\n      [-78.837407, 37.826506],\n      [-78.837204, 37.826823],\n      [-78.837053, 37.827081],\n      [-78.836731, 37.827595],\n      [-78.836452, 37.828104],\n      [-78.836275, 37.828399],\n      [-78.836111, 37.828667],\n      [-78.835849, 37.82912],\n      [-78.835504, 37.829691],\n      [-78.835352, 37.829945],\n      [-78.83498, 37.830568],\n      [-78.834935, 37.830642],\n      [-78.834826, 37.830821],\n      [-78.834646, 37.831137],\n      [-78.834377, 37.831577],\n      [-78.833853, 37.832462],\n      [-78.833724, 37.832692],\n      [-78.833217, 37.833546],\n      [-78.831919, 37.835713],\n      [-78.831568, 37.836263],\n      [-78.831293, 37.836637],\n      [-78.831013, 37.836981],\n      [-78.83077, 37.837252],\n      [-78.829687, 37.838434],\n      [-78.829526, 37.8386],\n      [-78.829353, 37.838766],\n      [-78.828845, 37.839208],\n      [-78.828553, 37.839442],\n      [-78.828248, 37.839665],\n      [-78.827736, 37.840071],\n      [-78.82744, 37.840316],\n      [-78.827359, 37.840393],\n      [-78.827219, 37.840526],\n      [-78.827033, 37.840723],\n      [-78.82681, 37.840985],\n      [-78.826636, 37.841213],\n      [-78.826324, 37.841668],\n      [-78.825848, 37.842321],\n      [-78.825635, 37.842569],\n      [-78.825481, 37.842727],\n      [-78.825276, 37.842917],\n      [-78.825211, 37.842971],\n      [-78.825103, 37.843062],\n      [-78.824902, 37.843225],\n      [-78.824735, 37.84334],\n      [-78.824467, 37.843502],\n      [-78.824206, 37.843652],\n      [-78.82312, 37.844198],\n      [-78.822611, 37.844456],\n      [-78.821878, 37.84482],\n      [-78.820981, 37.845244],\n      [-78.82067, 37.845389],\n      [-78.820264, 37.845536],\n      [-78.820038, 37.845598],\n      [-78.819873, 37.845635],\n      [-78.81967, 37.845683],\n      [-78.819501, 37.845707],\n      [-78.819221, 37.845735],\n      [-78.818871, 37.845752],\n      [-78.818684, 37.845746],\n      [-78.818377, 37.845729],\n      [-78.818065, 37.845689],\n      [-78.817748, 37.845635],\n      [-78.817461, 37.845563],\n      [-78.817089, 37.845456],\n      [-78.81664, 37.845308],\n      [-78.816094, 37.845137],\n      [-78.815801, 37.845042],\n      [-78.815106, 37.844835],\n      [-78.814203, 37.844545],\n      [-78.813661, 37.844372],\n      [-78.813194, 37.844227],\n      [-78.812793, 37.844119],\n      [-78.812466, 37.844059],\n      [-78.812161, 37.844015],\n      [-78.811899, 37.843994],\n      [-78.811692, 37.843985],\n      [-78.81145, 37.844002],\n      [-78.811288, 37.844022],\n      [-78.810966, 37.84409],\n      [-78.810704, 37.844162],\n      [-78.810498, 37.844229],\n      [-78.810246, 37.844336],\n      [-78.80993, 37.84449],\n      [-78.809727, 37.844605],\n      [-78.809573, 37.844705],\n      [-78.809276, 37.84492],\n      [-78.809029, 37.845076],\n      [-78.808807, 37.845199],\n      [-78.808527, 37.845332],\n      [-78.808311, 37.845419],\n      [-78.808089, 37.845498],\n      [-78.807811, 37.845579],\n      [-78.807589, 37.845643],\n      [-78.807297, 37.845708],\n      [-78.807, 37.845759],\n      [-78.806691, 37.845797],\n      [-78.806302, 37.845837],\n      [-78.805184, 37.845933],\n      [-78.80503, 37.845945],\n      [-78.804012, 37.846026],\n      [-78.800837, 37.846324],\n      [-78.800537, 37.846339],\n      [-78.800237, 37.846355],\n      [-78.800014, 37.846352],\n      [-78.79976, 37.846345],\n      [-78.799425, 37.846321],\n      [-78.799048, 37.846276],\n      [-78.79881, 37.846227],\n      [-78.798587, 37.846183],\n      [-78.798334, 37.846121],\n      [-78.798127, 37.846044],\n      [-78.797833, 37.845932],\n      [-78.797473, 37.845765],\n      [-78.797183, 37.845617],\n      [-78.796923, 37.845465],\n      [-78.796357, 37.845082],\n      [-78.795818, 37.844712],\n      [-78.795607, 37.84458],\n      [-78.795352, 37.844427],\n      [-78.795147, 37.84431],\n      [-78.794915, 37.844201],\n      [-78.794645, 37.844085],\n      [-78.794419, 37.843996],\n      [-78.794095, 37.843903],\n      [-78.793805, 37.843828],\n      [-78.793467, 37.843774],\n      [-78.793125, 37.84374],\n      [-78.792933, 37.843732],\n      [-78.792722, 37.843723],\n      [-78.792238, 37.84372],\n      [-78.791688, 37.843732],\n      [-78.791137, 37.843731],\n      [-78.790713, 37.843712],\n      [-78.790444, 37.843693],\n      [-78.79016, 37.843657],\n      [-78.78988, 37.843607],\n      [-78.789604, 37.843542],\n      [-78.789363, 37.843478],\n      [-78.789067, 37.843389],\n      [-78.788706, 37.843253],\n      [-78.78839, 37.843125],\n      [-78.788101, 37.843016],\n      [-78.78765, 37.842857],\n      [-78.787324, 37.842748],\n      [-78.787056, 37.84268],\n      [-78.786677, 37.842606],\n      [-78.786459, 37.842568],\n      [-78.786292, 37.842537],\n      [-78.785994, 37.842501],\n      [-78.785649, 37.842467],\n      [-78.785267, 37.842457],\n      [-78.784945, 37.842456],\n      [-78.784589, 37.842468],\n      [-78.782212, 37.842633],\n      [-78.780497, 37.842776],\n      [-78.779987, 37.842814],\n      [-78.778924, 37.842896],\n      [-78.77812, 37.842986],\n      [-78.777773, 37.843042],\n      [-78.777066, 37.843144],\n      [-78.776444, 37.84325],\n      [-78.775647, 37.843402],\n      [-78.774632, 37.843601],\n      [-78.773646, 37.843786],\n      [-78.773282, 37.843855],\n      [-78.772981, 37.843912],\n      [-78.772128, 37.844091],\n      [-78.771161, 37.844316],\n      [-78.770651, 37.844441],\n      [-78.769991, 37.844616],\n      [-78.768859, 37.844941],\n      [-78.768162, 37.845142],\n      [-78.767015, 37.845472],\n      [-78.76637, 37.845658],\n      [-78.765119, 37.846012],\n      [-78.761663, 37.84701],\n      [-78.760903, 37.847224],\n      [-78.760298, 37.847402],\n      [-78.75996, 37.847506],\n      [-78.7597, 37.847596],\n      [-78.759532, 37.84765],\n      [-78.759113, 37.847806],\n      [-78.758783, 37.847948],\n      [-78.758412, 37.84812],\n      [-78.758057, 37.848288],\n      [-78.757154, 37.848747],\n      [-78.756986, 37.848829],\n      [-78.756546, 37.849062],\n      [-78.756115, 37.849306],\n      [-78.755862, 37.849458],\n      [-78.755244, 37.849843],\n      [-78.754769, 37.85013],\n      [-78.754377, 37.85038],\n      [-78.753945, 37.850672],\n      [-78.753673, 37.850873],\n      [-78.753364, 37.851127],\n      [-78.753217, 37.851259],\n      [-78.752739, 37.851715],\n      [-78.752046, 37.852374],\n      [-78.75166, 37.852719],\n      [-78.751401, 37.852929],\n      [-78.751134, 37.853132],\n      [-78.750789, 37.853376],\n      [-78.750504, 37.853564],\n      [-78.750081, 37.853824],\n      [-78.74973, 37.854021],\n      [-78.749369, 37.854207],\n      [-78.748998, 37.85438],\n      [-78.748624, 37.854531],\n      [-78.748053, 37.854743],\n      [-78.747045, 37.85508],\n      [-78.746537, 37.855262],\n      [-78.746473, 37.855285],\n      [-78.745985, 37.855474],\n      [-78.7456, 37.855635],\n      [-78.744986, 37.855911],\n      [-78.744673, 37.856064],\n      [-78.744246, 37.856299],\n      [-78.743761, 37.856591],\n      [-78.743416, 37.856817],\n      [-78.742954, 37.857145],\n      [-78.742639, 37.857387],\n      [-78.742337, 37.85764],\n      [-78.742294, 37.85768],\n      [-78.741896, 37.858045],\n      [-78.741503, 37.85843],\n      [-78.741291, 37.858648],\n      [-78.741254, 37.858686],\n      [-78.740963, 37.859027],\n      [-78.740705, 37.859351],\n      [-78.740668, 37.859398],\n      [-78.740453, 37.85968],\n      [-78.739901, 37.860385],\n      [-78.739675, 37.860647],\n      [-78.739434, 37.860902],\n      [-78.739176, 37.861151],\n      [-78.73895, 37.861357],\n      [-78.738655, 37.861604],\n      [-78.738411, 37.861795],\n      [-78.738094, 37.862025],\n      [-78.737733, 37.862262],\n      [-78.737429, 37.862445],\n      [-78.73708, 37.862638],\n      [-78.73657, 37.862893],\n      [-78.736186, 37.863088],\n      [-78.735435, 37.86348],\n      [-78.734529, 37.863942],\n      [-78.733874, 37.864271],\n      [-78.733562, 37.864427],\n      [-78.733042, 37.864704],\n      [-78.732039, 37.865214],\n      [-78.731948, 37.865258],\n      [-78.731785, 37.865335],\n      [-78.731411, 37.86553],\n      [-78.730148, 37.866169],\n      [-78.729986, 37.866254],\n      [-78.729722, 37.866391],\n      [-78.728688, 37.866913],\n      [-78.727888, 37.86733],\n      [-78.727529, 37.86751],\n      [-78.726765, 37.867904],\n      [-78.726166, 37.868202],\n      [-78.725869, 37.868361],\n      [-78.725428, 37.868579],\n      [-78.725084, 37.868757],\n      [-78.724518, 37.869049],\n      [-78.723898, 37.869354],\n      [-78.722779, 37.869945],\n      [-78.721592, 37.870542],\n      [-78.720481, 37.87111],\n      [-78.719958, 37.871373],\n      [-78.719701, 37.871497],\n      [-78.719365, 37.871672],\n      [-78.718719, 37.872028],\n      [-78.71847, 37.872183],\n      [-78.718164, 37.872388],\n      [-78.717945, 37.872553],\n      [-78.717592, 37.872851],\n      [-78.717285, 37.873139],\n      [-78.717049, 37.873363],\n      [-78.716739, 37.873728],\n      [-78.716536, 37.874002],\n      [-78.716395, 37.874221],\n      [-78.716144, 37.874657],\n      [-78.71604, 37.87487],\n      [-78.715888, 37.875212],\n      [-78.715814, 37.875401],\n      [-78.715694, 37.87571],\n      [-78.715495, 37.876238],\n      [-78.715377, 37.876548],\n      [-78.715275, 37.876817],\n      [-78.71521, 37.877013],\n      [-78.715136, 37.877211],\n      [-78.715081, 37.877371],\n      [-78.714995, 37.877587],\n      [-78.71492, 37.877787],\n      [-78.7148, 37.878131],\n      [-78.714687, 37.878428],\n      [-78.714533, 37.878796],\n      [-78.714454, 37.879009],\n      [-78.714417, 37.879116],\n      [-78.714256, 37.879549],\n      [-78.714141, 37.879854],\n      [-78.713896, 37.880594],\n      [-78.713756, 37.881038],\n      [-78.713682, 37.88126],\n      [-78.713617, 37.881457],\n      [-78.713533, 37.881697],\n      [-78.713446, 37.881943],\n      [-78.713394, 37.882108],\n      [-78.713314, 37.882336],\n      [-78.713184, 37.882655],\n      [-78.713006, 37.883053],\n      [-78.712892, 37.883274],\n      [-78.712733, 37.88355],\n      [-78.712558, 37.88384],\n      [-78.712369, 37.884119],\n      [-78.712275, 37.884257],\n      [-78.712136, 37.884449],\n      [-78.711974, 37.884667],\n      [-78.711814, 37.884876],\n      [-78.711641, 37.885085],\n      [-78.711418, 37.885345],\n      [-78.711139, 37.885644],\n      [-78.710798, 37.88599],\n      [-78.710465, 37.886309],\n      [-78.710195, 37.886555],\n      [-78.709928, 37.886781],\n      [-78.709577, 37.88706],\n      [-78.709406, 37.887199],\n      [-78.709211, 37.887345],\n      [-78.708778, 37.887648],\n      [-78.707968, 37.888179],\n      [-78.707642, 37.888399],\n      [-78.707473, 37.88851],\n      [-78.707244, 37.888663],\n      [-78.706965, 37.888843],\n      [-78.706601, 37.889083],\n      [-78.706088, 37.889425],\n      [-78.705712, 37.889669],\n      [-78.705189, 37.890019],\n      [-78.704893, 37.890211],\n      [-78.703445, 37.891162],\n      [-78.703041, 37.891429],\n      [-78.702721, 37.891638],\n      [-78.702327, 37.891905],\n      [-78.70184, 37.892223],\n      [-78.701163, 37.892662],\n      [-78.700778, 37.892933],\n      [-78.70071, 37.892981],\n      [-78.700622, 37.893046],\n      [-78.700337, 37.893272],\n      [-78.69999, 37.89357],\n      [-78.699755, 37.8938],\n      [-78.699482, 37.894099],\n      [-78.699289, 37.894329],\n      [-78.698787, 37.894984],\n      [-78.698558, 37.895284],\n      [-78.69837, 37.895519],\n      [-78.698116, 37.895851],\n      [-78.697966, 37.896055],\n      [-78.697696, 37.896407],\n      [-78.697057, 37.897242],\n      [-78.696439, 37.898041],\n      [-78.695681, 37.899035],\n      [-78.695049, 37.899863],\n      [-78.694658, 37.900403],\n      [-78.694519, 37.900599],\n      [-78.694429, 37.900733],\n      [-78.693954, 37.901464],\n      [-78.693721, 37.901862],\n      [-78.693473, 37.902275],\n      [-78.693102, 37.902981],\n      [-78.692879, 37.903439],\n      [-78.692797, 37.903623],\n      [-78.692129, 37.905105],\n      [-78.691808, 37.905817],\n      [-78.691268, 37.906984],\n      [-78.690987, 37.907549],\n      [-78.690814, 37.907874],\n      [-78.690688, 37.908089],\n      [-78.690521, 37.908372],\n      [-78.690275, 37.908767],\n      [-78.689663, 37.909657],\n      [-78.689078, 37.910492],\n      [-78.685485, 37.915666],\n      [-78.684467, 37.917131],\n      [-78.682047, 37.920608],\n      [-78.681785, 37.92095],\n      [-78.681517, 37.921272],\n      [-78.681241, 37.921578],\n      [-78.68101, 37.921818],\n      [-78.680605, 37.922194],\n      [-78.68013, 37.922617],\n      [-78.679566, 37.923137],\n      [-78.679307, 37.923403],\n      [-78.678986, 37.92374],\n      [-78.678605, 37.924203],\n      [-78.678345, 37.924561],\n      [-78.678124, 37.924891],\n      [-78.677903, 37.925227],\n      [-78.677688, 37.925589],\n      [-78.677544, 37.925878],\n      [-78.67731, 37.926442],\n      [-78.676551, 37.928284],\n      [-78.676404, 37.928595],\n      [-78.676242, 37.928949],\n      [-78.676148, 37.929122],\n      [-78.675977, 37.929377],\n      [-78.675612, 37.929807],\n      [-78.675385, 37.930086],\n      [-78.675213, 37.930312],\n      [-78.675004, 37.930559],\n      [-78.674617, 37.931044],\n      [-78.67407, 37.931702],\n      [-78.673673, 37.932201],\n      [-78.673281, 37.9327],\n      [-78.672994, 37.933082],\n      [-78.672166, 37.934227],\n      [-78.671112, 37.935771],\n      [-78.670762, 37.936281],\n      [-78.670385, 37.936817],\n      [-78.669877, 37.937599],\n      [-78.668999, 37.93886],\n      [-78.667671, 37.940789],\n      [-78.666721, 37.942158],\n      [-78.666126, 37.943118],\n      [-78.665597, 37.944014],\n      [-78.665125, 37.944827],\n      [-78.664642, 37.945633],\n      [-78.664087, 37.946602],\n      [-78.663665, 37.947366],\n      [-78.663523, 37.947648],\n      [-78.663363, 37.948007],\n      [-78.66312, 37.948581],\n      [-78.662992, 37.948919],\n      [-78.662788, 37.949511],\n      [-78.662392, 37.950794],\n      [-78.662127, 37.951686],\n      [-78.661907, 37.952368],\n      [-78.6618, 37.952667],\n      [-78.661673, 37.952964],\n      [-78.661549, 37.953229],\n      [-78.661377, 37.953546],\n      [-78.661172, 37.953875],\n      [-78.660975, 37.954168],\n      [-78.660712, 37.954527],\n      [-78.660589, 37.954686],\n      [-78.660525, 37.954768],\n      [-78.660204, 37.955161],\n      [-78.659899, 37.955515],\n      [-78.65946, 37.956045],\n      [-78.659107, 37.956472],\n      [-78.658939, 37.95668],\n      [-78.658404, 37.957325],\n      [-78.658185, 37.957583],\n      [-78.657413, 37.958505],\n      [-78.65713, 37.958855],\n      [-78.65677, 37.959264],\n      [-78.656612, 37.959431],\n      [-78.656439, 37.95959],\n      [-78.656251, 37.959739],\n      [-78.656068, 37.959867],\n      [-78.655989, 37.959917],\n      [-78.655752, 37.960052],\n      [-78.655575, 37.96015],\n      [-78.655228, 37.960289],\n      [-78.654931, 37.960405],\n      [-78.653275, 37.960978],\n      [-78.652399, 37.961277],\n      [-78.651659, 37.961545],\n      [-78.651372, 37.96167],\n      [-78.651131, 37.961788],\n      [-78.650953, 37.961888],\n      [-78.65077, 37.962003],\n      [-78.650655, 37.962074],\n      [-78.650545, 37.96215],\n      [-78.650369, 37.962277],\n      [-78.650124, 37.962492],\n      [-78.649827, 37.962781],\n      [-78.649528, 37.963082],\n      [-78.649157, 37.963468],\n      [-78.648771, 37.96385],\n      [-78.648569, 37.964042],\n      [-78.648236, 37.964318],\n      [-78.647928, 37.964546],\n      [-78.647355, 37.964951],\n      [-78.646421, 37.965624],\n      [-78.646034, 37.965897],\n      [-78.645591, 37.966218],\n      [-78.645351, 37.966376],\n      [-78.645051, 37.966569],\n      [-78.644735, 37.966754],\n      [-78.644581, 37.96684],\n      [-78.6444, 37.966936],\n      [-78.643915, 37.967163],\n      [-78.643555, 37.967319],\n      [-78.643147, 37.967465],\n      [-78.642853, 37.967561],\n      [-78.642519, 37.96766],\n      [-78.642395, 37.967695],\n      [-78.642095, 37.967768],\n      [-78.641871, 37.967823],\n      [-78.641449, 37.967916],\n      [-78.640993, 37.967991],\n      [-78.640408, 37.968066],\n      [-78.639997, 37.968103],\n      [-78.639496, 37.96813],\n      [-78.638995, 37.968136],\n      [-78.638434, 37.968125],\n      [-78.637944, 37.9681],\n      [-78.63612, 37.967958],\n      [-78.635136, 37.967873],\n      [-78.633802, 37.96777],\n      [-78.632073, 37.967631],\n      [-78.631801, 37.967611],\n      [-78.630935, 37.967546],\n      [-78.630424, 37.967503],\n      [-78.629697, 37.967442],\n      [-78.628686, 37.967361],\n      [-78.626167, 37.967159],\n      [-78.623282, 37.966927],\n      [-78.622258, 37.96685],\n      [-78.621932, 37.966824],\n      [-78.620819, 37.966736],\n      [-78.620381, 37.966716],\n      [-78.620004, 37.966712],\n      [-78.619679, 37.966717],\n      [-78.61937, 37.966745],\n      [-78.619064, 37.966787],\n      [-78.618761, 37.966844],\n      [-78.618523, 37.9669],\n      [-78.618222, 37.966977],\n      [-78.617837, 37.967103],\n      [-78.617525, 37.967224],\n      [-78.617264, 37.967333],\n      [-78.616866, 37.967526],\n      [-78.61666, 37.96764],\n      [-78.616487, 37.967735],\n      [-78.616266, 37.967872],\n      [-78.615844, 37.968137],\n      [-78.615555, 37.968338],\n      [-78.615229, 37.968577],\n      [-78.614931, 37.968831],\n      [-78.614607, 37.969142],\n      [-78.614381, 37.96937],\n      [-78.614151, 37.969646],\n      [-78.613964, 37.96988],\n      [-78.613494, 37.970554],\n      [-78.61301, 37.971246],\n      [-78.612831, 37.971512],\n      [-78.612279, 37.972333],\n      [-78.611229, 37.97389],\n      [-78.610819, 37.974494],\n      [-78.610719, 37.974624],\n      [-78.610499, 37.974897],\n      [-78.610319, 37.975118],\n      [-78.610116, 37.975331],\n      [-78.609966, 37.975469],\n      [-78.609796, 37.975624],\n      [-78.609591, 37.975796],\n      [-78.609317, 37.976004],\n      [-78.609071, 37.976176],\n      [-78.608849, 37.976327],\n      [-78.608744, 37.97639],\n      [-78.608365, 37.976619],\n      [-78.608101, 37.976752],\n      [-78.607845, 37.976869],\n      [-78.607584, 37.976978],\n      [-78.60725, 37.977103],\n      [-78.606977, 37.977192],\n      [-78.606625, 37.977297],\n      [-78.606266, 37.977388],\n      [-78.606123, 37.977418],\n      [-78.605902, 37.977465],\n      [-78.605646, 37.97752],\n      [-78.605621, 37.977522],\n      [-78.605549, 37.977538],\n      [-78.60423, 37.977756],\n      [-78.602588, 37.978034],\n      [-78.602162, 37.978122],\n      [-78.601825, 37.978203],\n      [-78.601492, 37.978293],\n      [-78.601094, 37.978414],\n      [-78.60071, 37.978547],\n      [-78.600334, 37.978694],\n      [-78.599967, 37.978854],\n      [-78.599486, 37.979083],\n      [-78.599163, 37.979252],\n      [-78.598789, 37.97947],\n      [-78.598549, 37.979624],\n      [-78.597946, 37.980033],\n      [-78.596889, 37.98075],\n      [-78.595137, 37.981939],\n      [-78.593704, 37.982911],\n      [-78.592376, 37.98382],\n      [-78.590854, 37.984906],\n      [-78.590225, 37.985373],\n      [-78.588999, 37.98631],\n      [-78.588012, 37.9871],\n      [-78.587089, 37.987859],\n      [-78.586722, 37.988171],\n      [-78.586183, 37.988631],\n      [-78.585023, 37.989655],\n      [-78.583908, 37.990662],\n      [-78.583686, 37.990885],\n      [-78.583478, 37.991116],\n      [-78.583203, 37.991447],\n      [-78.583057, 37.991641],\n      [-78.582889, 37.99189],\n      [-78.582734, 37.992152],\n      [-78.582584, 37.992445],\n      [-78.582451, 37.992743],\n      [-78.582318, 37.993104],\n      [-78.582229, 37.993396],\n      [-78.582158, 37.993692],\n      [-78.582061, 37.994255],\n      [-78.581989, 37.994788],\n      [-78.581919, 37.9952],\n      [-78.581831, 37.99573],\n      [-78.581596, 37.997239],\n      [-78.581525, 37.997665],\n      [-78.58147, 37.998088],\n      [-78.581083, 38.000517],\n      [-78.580993, 38.001016],\n      [-78.580912, 38.001332],\n      [-78.580857, 38.001514],\n      [-78.580851, 38.001532],\n      [-78.580827, 38.001607],\n      [-78.580788, 38.001711],\n      [-78.580764, 38.001783],\n      [-78.580638, 38.002087],\n      [-78.580501, 38.002397],\n      [-78.580338, 38.002682],\n      [-78.580176, 38.002939],\n      [-78.580026, 38.003155],\n      [-78.57984, 38.003394],\n      [-78.579631, 38.003641],\n      [-78.579528, 38.003748],\n      [-78.579258, 38.004014],\n      [-78.578985, 38.00426],\n      [-78.578784, 38.004426],\n      [-78.578575, 38.004584],\n      [-78.578379, 38.004723],\n      [-78.578122, 38.004899],\n      [-78.577709, 38.005151],\n      [-78.577431, 38.005306],\n      [-78.577141, 38.005444],\n      [-78.576923, 38.005542],\n      [-78.576628, 38.005666],\n      [-78.576327, 38.005766],\n      [-78.576154, 38.005828],\n      [-78.575371, 38.006031],\n      [-78.574274, 38.006313],\n      [-78.573929, 38.006397],\n      [-78.573678, 38.006459],\n      [-78.5731, 38.006602],\n      [-78.572544, 38.006742],\n      [-78.570845, 38.007165],\n      [-78.570536, 38.007245],\n      [-78.570147, 38.007346],\n      [-78.569511, 38.007502],\n      [-78.568866, 38.007677],\n      [-78.568449, 38.007795],\n      [-78.568216, 38.007865],\n      [-78.567861, 38.007984],\n      [-78.567483, 38.008116],\n      [-78.567008, 38.00831],\n      [-78.566642, 38.008471],\n      [-78.566222, 38.008672],\n      [-78.565813, 38.008887],\n      [-78.565381, 38.009126],\n      [-78.564818, 38.009422],\n      [-78.564544, 38.009563],\n      [-78.564196, 38.009735],\n      [-78.564075, 38.009787],\n      [-78.56369, 38.009944],\n      [-78.56326, 38.010103],\n      [-78.562849, 38.010238],\n      [-78.562529, 38.010332],\n      [-78.562124, 38.010438],\n      [-78.561805, 38.010515],\n      [-78.561564, 38.010564],\n      [-78.56093, 38.010675],\n      [-78.560028, 38.010845],\n      [-78.558824, 38.011064],\n      [-78.558024, 38.011219],\n      [-78.557648, 38.011286],\n      [-78.557386, 38.011333],\n      [-78.557058, 38.011387],\n      [-78.555118, 38.011755],\n      [-78.554112, 38.011931],\n      [-78.552878, 38.012156],\n      [-78.552449, 38.01225],\n      [-78.552186, 38.012316],\n      [-78.551829, 38.012417],\n      [-78.551365, 38.012562],\n      [-78.55109, 38.012655],\n      [-78.550658, 38.012829],\n      [-78.550236, 38.013017],\n      [-78.549599, 38.013364],\n      [-78.549376, 38.013492],\n      [-78.549058, 38.013698],\n      [-78.548469, 38.01411],\n      [-78.547659, 38.014674],\n      [-78.547468, 38.014808],\n      [-78.54736, 38.014884],\n      [-78.547042, 38.015096],\n      [-78.546611, 38.015362],\n      [-78.546269, 38.015559],\n      [-78.54592, 38.01574],\n      [-78.545223, 38.016069],\n      [-78.544841, 38.016247],\n      [-78.543906, 38.016682],\n      [-78.543654, 38.016806],\n      [-78.54333, 38.016982],\n      [-78.542733, 38.017318],\n      [-78.542466, 38.017467],\n      [-78.539711, 38.018979],\n      [-78.536725, 38.020664],\n      [-78.535885, 38.021132],\n      [-78.535518, 38.021335],\n      [-78.534742, 38.021766],\n      [-78.534188, 38.022073],\n      [-78.532955, 38.02276],\n      [-78.532173, 38.023196],\n      [-78.531193, 38.023747],\n      [-78.531125, 38.023792],\n      [-78.53075, 38.024045],\n      [-78.530445, 38.024274],\n      [-78.530203, 38.024476],\n      [-78.530016, 38.024649],\n      [-78.529931, 38.024733],\n      [-78.52985, 38.024806],\n      [-78.529798, 38.024854],\n      [-78.529758, 38.024894],\n      [-78.529598, 38.025065],\n      [-78.529327, 38.025386],\n      [-78.52916, 38.025608],\n      [-78.528945, 38.025933],\n      [-78.5288, 38.026176],\n      [-78.528672, 38.026426],\n      [-78.52861, 38.026566],\n      [-78.528405, 38.027066],\n      [-78.52833, 38.027311],\n      [-78.528283, 38.02751],\n      [-78.528235, 38.027689],\n      [-78.528151, 38.028145],\n      [-78.527582, 38.03105],\n      [-78.527126, 38.033402],\n      [-78.52703, 38.033972],\n      [-78.526914, 38.034782],\n      [-78.526868, 38.035166],\n      [-78.52679, 38.036035],\n      [-78.526753, 38.036647],\n      [-78.526715, 38.03781],\n      [-78.526642, 38.040878],\n      [-78.526607, 38.042081],\n      [-78.526584, 38.042473],\n      [-78.526544, 38.042863],\n      [-78.52645, 38.043462],\n      [-78.526353, 38.043907],\n      [-78.526306, 38.044099],\n      [-78.526225, 38.044382],\n      [-78.526103, 38.044762],\n      [-78.525978, 38.045116],\n      [-78.52595, 38.045183],\n      [-78.525619, 38.045973],\n      [-78.525226, 38.046882],\n      [-78.524837, 38.047794],\n      [-78.524807, 38.047861],\n      [-78.524712, 38.048073],\n      [-78.523664, 38.050524],\n      [-78.523608, 38.050633],\n      [-78.523449, 38.050945],\n      [-78.523194, 38.051371],\n      [-78.522992, 38.051667],\n      [-78.522896, 38.051793],\n      [-78.522708, 38.052033],\n      [-78.522379, 38.052403],\n      [-78.522049, 38.052728],\n      [-78.521736, 38.053004],\n      [-78.521375, 38.053289],\n      [-78.521061, 38.053512],\n      [-78.520792, 38.053687],\n      [-78.520433, 38.053898],\n      [-78.5202, 38.054028],\n      [-78.519924, 38.054166],\n      [-78.519561, 38.054329],\n      [-78.519179, 38.054486],\n      [-78.518827, 38.054612],\n      [-78.518437, 38.054736],\n      [-78.518106, 38.054829],\n      [-78.517883, 38.054877],\n      [-78.517638, 38.05494],\n      [-78.517298, 38.055006],\n      [-78.51674, 38.055093],\n      [-78.515503, 38.055228],\n      [-78.513125, 38.055506],\n      [-78.51298, 38.05552],\n      [-78.511721, 38.055664],\n      [-78.510089, 38.05585],\n      [-78.509444, 38.055931],\n      [-78.508892, 38.056018],\n      [-78.508324, 38.056121],\n      [-78.50762, 38.056269],\n      [-78.507101, 38.056364],\n      [-78.5063, 38.056529],\n      [-78.504207, 38.056975],\n      [-78.503544, 38.057129],\n      [-78.50332, 38.057173],\n      [-78.50218, 38.05739],\n      [-78.501769, 38.057476],\n      [-78.501588, 38.057518],\n      [-78.501288, 38.05758],\n      [-78.500918, 38.057644],\n      [-78.50053, 38.057699],\n      [-78.50025, 38.057721],\n      [-78.49999, 38.057731],\n      [-78.4996, 38.057738],\n      [-78.499258, 38.057729],\n      [-78.499228, 38.057727],\n      [-78.498789, 38.057695],\n      [-78.498509, 38.057667],\n      [-78.498249, 38.05764],\n      [-78.497868, 38.057604],\n      [-78.497658, 38.057584],\n      [-78.497235, 38.057537],\n      [-78.496848, 38.057489],\n      [-78.495893, 38.057371],\n      [-78.494978, 38.057279],\n      [-78.49472, 38.057173],\n      [-78.494659, 38.057142],\n      [-78.494592, 38.057093],\n      [-78.494549, 38.057047],\n      [-78.494516, 38.056995],\n      [-78.494502, 38.05695],\n      [-78.494493, 38.056874],\n      [-78.494502, 38.056798],\n      [-78.494522, 38.056739],\n      [-78.494562, 38.056669],\n      [-78.494623, 38.05661],\n      [-78.494697, 38.056562],\n      [-78.494781, 38.056525],\n      [-78.494872, 38.056502],\n      [-78.49496, 38.056493],\n      [-78.495044, 38.0565],\n      [-78.495109, 38.056516],\n      [-78.495169, 38.056541],\n      [-78.495238, 38.056584],\n      [-78.49528, 38.056617],\n      [-78.495339, 38.05668],\n      [-78.495381, 38.056751],\n      [-78.495402, 38.056811],\n      [-78.495415, 38.056894],\n      [-78.495413, 38.056998],\n      [-78.495388, 38.057116],\n      [-78.49528, 38.057239],\n      [-78.495007, 38.057577],\n      [-78.494845, 38.057747],\n      [-78.494782, 38.057825],\n      [-78.494593, 38.05807],\n      [-78.494413, 38.058298],\n      [-78.494268, 38.05847],\n      [-78.494235, 38.058509],\n      [-78.494159, 38.058601],\n      [-78.493967, 38.058833],\n      [-78.493505, 38.059401],\n      [-78.493364, 38.059586],\n      [-78.492889, 38.060182],\n      [-78.492564, 38.060616],\n      [-78.492196, 38.061101],\n      [-78.491916, 38.061468],\n      [-78.491724, 38.061722],\n      [-78.491723, 38.061722],\n      [-78.491578, 38.061897],\n      [-78.491244, 38.062293],\n      [-78.490863, 38.062734],\n      [-78.490477, 38.063153],\n      [-78.490269, 38.06338],\n      [-78.489937, 38.063742],\n      [-78.48969, 38.064008],\n      [-78.489478, 38.064259],\n      [-78.489344, 38.064409],\n      [-78.489289, 38.06447],\n      [-78.489212, 38.064554],\n      [-78.488761, 38.065053],\n      [-78.48815, 38.065739],\n      [-78.488116, 38.065779],\n      [-78.487867, 38.06605],\n      [-78.48713, 38.06686],\n      [-78.486995, 38.067008],\n      [-78.486825, 38.067194],\n      [-78.486343, 38.067727],\n      [-78.486218, 38.067866],\n      [-78.486208, 38.067877],\n      [-78.486134, 38.067959],\n      [-78.48576, 38.068363],\n      [-78.485475, 38.06867],\n      [-78.485154, 38.069027],\n      [-78.484295, 38.070023],\n      [-78.484063, 38.070271],\n      [-78.483776, 38.070614],\n      [-78.483281, 38.071164],\n      [-78.482433, 38.07211],\n      [-78.480968, 38.073741],\n      [-78.480778, 38.073943],\n      [-78.480706, 38.07403],\n      [-78.480376, 38.074401],\n      [-78.479882, 38.074956],\n      [-78.479801, 38.075034],\n      [-78.479272, 38.075634],\n      [-78.478606, 38.076375],\n      [-78.478527, 38.076469],\n      [-78.478367, 38.076647],\n      [-78.477091, 38.078062],\n      [-78.476397, 38.078846],\n      [-78.475743, 38.079571],\n      [-78.474543, 38.08091],\n      [-78.474163, 38.081335],\n      [-78.473969, 38.081577],\n      [-78.473788, 38.081788],\n      [-78.473613, 38.082014],\n      [-78.47347, 38.082218],\n      [-78.472971, 38.083082],\n      [-78.472639, 38.083666],\n      [-78.472264, 38.084319],\n      [-78.471709, 38.085285],\n      [-78.471146, 38.086271],\n      [-78.47079, 38.086895],\n      [-78.470583, 38.087258],\n      [-78.47026, 38.087825],\n      [-78.469568, 38.089039],\n      [-78.468607, 38.090712],\n      [-78.468501, 38.090897],\n      [-78.468139, 38.091557],\n      [-78.468043, 38.091733],\n      [-78.467922, 38.09192],\n      [-78.467732, 38.092218],\n      [-78.46735, 38.0929],\n      [-78.466766, 38.093924],\n      [-78.466497, 38.09437],\n      [-78.466369, 38.094558],\n      [-78.46599, 38.095057],\n      [-78.465526, 38.09564],\n      [-78.465381, 38.095816],\n      [-78.464933, 38.096381],\n      [-78.464463, 38.096962],\n      [-78.464049, 38.097474],\n      [-78.463974, 38.097573],\n      [-78.463441, 38.098232],\n      [-78.46294, 38.098874],\n      [-78.462231, 38.099765],\n      [-78.461478, 38.100721],\n      [-78.460943, 38.101395],\n      [-78.460544, 38.101882],\n      [-78.460009, 38.102564],\n      [-78.459568, 38.103126],\n      [-78.459337, 38.103403],\n      [-78.458603, 38.10429],\n      [-78.457804, 38.105297],\n      [-78.45751, 38.105695],\n      [-78.4569, 38.106619],\n      [-78.456598, 38.107068],\n      [-78.45544, 38.108845],\n      [-78.454988, 38.109578],\n      [-78.454476, 38.110311],\n      [-78.454296, 38.110569],\n      [-78.454206, 38.110708],\n      [-78.454093, 38.110899],\n      [-78.453942, 38.111128],\n      [-78.453769, 38.111409],\n      [-78.453294, 38.112125],\n      [-78.453172, 38.112318],\n      [-78.452856, 38.112817],\n      [-78.452688, 38.11307],\n      [-78.452602, 38.113223],\n      [-78.451975, 38.114186],\n      [-78.451686, 38.11461],\n      [-78.45106, 38.115568],\n      [-78.450908, 38.115798],\n      [-78.450496, 38.11642],\n      [-78.450419, 38.116537],\n      [-78.45032, 38.116697],\n      [-78.450137, 38.116993],\n      [-78.449702, 38.117634],\n      [-78.449172, 38.118448],\n      [-78.448773, 38.119065],\n      [-78.448006, 38.120242],\n      [-78.447677, 38.120726],\n      [-78.447299, 38.121219],\n      [-78.44692, 38.121631],\n      [-78.446411, 38.122124],\n      [-78.4458, 38.12267],\n      [-78.444661, 38.123687],\n      [-78.442392, 38.125724],\n      [-78.441529, 38.126494],\n      [-78.440922, 38.127044],\n      [-78.440006, 38.127866],\n      [-78.439371, 38.128436],\n      [-78.437997, 38.129669],\n      [-78.437902, 38.129754],\n      [-78.437019, 38.130549],\n      [-78.436453, 38.131059],\n      [-78.436187, 38.131299],\n      [-78.435995, 38.13147],\n      [-78.435251, 38.132172],\n      [-78.435106, 38.132303],\n      [-78.434673, 38.132753],\n      [-78.434293, 38.13317],\n      [-78.433695, 38.133887],\n      [-78.433416, 38.134269],\n      [-78.433195, 38.134572],\n      [-78.432173, 38.13616],\n      [-78.430917, 38.138131],\n      [-78.430468, 38.138847],\n      [-78.429836, 38.139833],\n      [-78.429464, 38.140424],\n      [-78.428859, 38.141359],\n      [-78.428348, 38.142178],\n      [-78.428275, 38.142291],\n      [-78.427887, 38.14289],\n      [-78.427641, 38.143278],\n      [-78.427277, 38.143851],\n      [-78.427263, 38.143873],\n      [-78.425718, 38.146293],\n      [-78.4249, 38.147586],\n      [-78.423982, 38.149017],\n      [-78.423879, 38.149181],\n      [-78.4234, 38.149936],\n      [-78.422346, 38.1516],\n      [-78.42208, 38.151996],\n      [-78.421684, 38.152621],\n      [-78.421337, 38.15319],\n      [-78.420383, 38.154692],\n      [-78.419605, 38.155908],\n      [-78.417659, 38.158962],\n      [-78.415009, 38.163121],\n      [-78.414626, 38.163716],\n      [-78.414541, 38.163851],\n      [-78.414293, 38.164245],\n      [-78.412771, 38.16663],\n      [-78.41231, 38.167345],\n      [-78.411781, 38.168185],\n      [-78.410521, 38.170164],\n      [-78.410064, 38.170881],\n      [-78.408661, 38.173081],\n      [-78.408289, 38.173661],\n      [-78.406754, 38.176057],\n      [-78.405791, 38.177582],\n      [-78.405633, 38.177824],\n      [-78.404819, 38.179105],\n      [-78.40451, 38.179581],\n      [-78.403702, 38.180857],\n      [-78.403534, 38.181116],\n      [-78.40229, 38.183084],\n      [-78.402, 38.183534],\n      [-78.401567, 38.184219],\n      [-78.401491, 38.184329],\n      [-78.400918, 38.18523],\n      [-78.400512, 38.185861],\n      [-78.399321, 38.187671],\n      [-78.399195, 38.187856],\n      [-78.399077, 38.188041],\n      [-78.398689, 38.188617],\n      [-78.398558, 38.18882],\n      [-78.397589, 38.190295],\n      [-78.3974, 38.190566],\n      [-78.397207, 38.19086],\n      [-78.396877, 38.191349],\n      [-78.396731, 38.191574],\n      [-78.396016, 38.192652],\n      [-78.395969, 38.192724],\n      [-78.395198, 38.193895],\n      [-78.395145, 38.193978],\n      [-78.395092, 38.194057],\n      [-78.395078, 38.194078],\n      [-78.394787, 38.194511],\n      [-78.394461, 38.19501],\n      [-78.394425, 38.195065],\n      [-78.393867, 38.195904],\n      [-78.393697, 38.196162],\n      [-78.392569, 38.197862],\n      [-78.392356, 38.198186],\n      [-78.391791, 38.199049],\n      [-78.3916, 38.199341],\n      [-78.391424, 38.19959],\n      [-78.391056, 38.200141],\n      [-78.390364, 38.201178],\n      [-78.388697, 38.203713],\n      [-78.387884, 38.204937],\n      [-78.387682, 38.20524],\n      [-78.387424, 38.205639],\n      [-78.386997, 38.206278],\n      [-78.386781, 38.206604],\n      [-78.386138, 38.207581],\n      [-78.385992, 38.207804],\n      [-78.385531, 38.2085],\n      [-78.38498, 38.209334],\n      [-78.384853, 38.209537],\n      [-78.383889, 38.210987],\n      [-78.383519, 38.211533],\n      [-78.383408, 38.211705],\n      [-78.383194, 38.212041],\n      [-78.382209, 38.213531],\n      [-78.381949, 38.213932],\n      [-78.381401, 38.214759],\n      [-78.380953, 38.215433],\n      [-78.380697, 38.215818],\n      [-78.380472, 38.216158],\n      [-78.379118, 38.218196],\n      [-78.378999, 38.218384],\n      [-78.37862, 38.21895],\n      [-78.377882, 38.220071],\n      [-78.377739, 38.220289],\n      [-78.377587, 38.220523],\n      [-78.376908, 38.221535],\n      [-78.376698, 38.221851],\n      [-78.376516, 38.222128],\n      [-78.375966, 38.222959],\n      [-78.375503, 38.223658],\n      [-78.374143, 38.225716],\n      [-78.373741, 38.226317],\n      [-78.372465, 38.228246],\n      [-78.371604, 38.229546],\n      [-78.371224, 38.230126],\n      [-78.37075, 38.230832],\n      [-78.370117, 38.231792],\n      [-78.369796, 38.23229],\n      [-78.369344, 38.233031],\n      [-78.369247, 38.233202],\n      [-78.369201, 38.233285],\n      [-78.369089, 38.233499],\n      [-78.368757, 38.234191],\n      [-78.368537, 38.23469],\n      [-78.368285, 38.235273],\n      [-78.367348, 38.237406],\n      [-78.367125, 38.237924],\n      [-78.366876, 38.23848],\n      [-78.366632, 38.239054],\n      [-78.366538, 38.239263],\n      [-78.366315, 38.239761],\n      [-78.365981, 38.240523],\n      [-78.365112, 38.242495],\n      [-78.364536, 38.243815],\n      [-78.364277, 38.244425],\n      [-78.363872, 38.245322],\n      [-78.363644, 38.245831],\n      [-78.363475, 38.246227],\n      [-78.363324, 38.246579],\n      [-78.363065, 38.24716],\n      [-78.362399, 38.248697],\n      [-78.362213, 38.249115],\n      [-78.36185, 38.249928],\n      [-78.360994, 38.251906],\n      [-78.360894, 38.252122],\n      [-78.360732, 38.252472],\n      [-78.359818, 38.254556],\n      [-78.359604, 38.255032],\n      [-78.358451, 38.257672],\n      [-78.35837, 38.257854],\n      [-78.357235, 38.260418],\n      [-78.35697, 38.261034],\n      [-78.356749, 38.261526],\n      [-78.356328, 38.262487],\n      [-78.3557, 38.26392],\n      [-78.355441, 38.264489],\n      [-78.354985, 38.265534],\n      [-78.354199, 38.267311],\n      [-78.354014, 38.267697],\n      [-78.353899, 38.267927],\n      [-78.353632, 38.268419],\n      [-78.353386, 38.268835],\n      [-78.353012, 38.269405],\n      [-78.352727, 38.269807],\n      [-78.352433, 38.270193],\n      [-78.351176, 38.271816],\n      [-78.35069, 38.272444],\n      [-78.350332, 38.272914],\n      [-78.349867, 38.273496],\n      [-78.349659, 38.273731],\n      [-78.349448, 38.273949],\n      [-78.349246, 38.274133],\n      [-78.348925, 38.274393],\n      [-78.348653, 38.274592],\n      [-78.348309, 38.274816],\n      [-78.346752, 38.275754],\n      [-78.345609, 38.276449],\n      [-78.34394, 38.277447],\n      [-78.343411, 38.277789],\n      [-78.343205, 38.277938],\n      [-78.342906, 38.278167],\n      [-78.342692, 38.278348],\n      [-78.342621, 38.27841],\n      [-78.342399, 38.278622],\n      [-78.342335, 38.278686],\n      [-78.342171, 38.278857],\n      [-78.341631, 38.279482],\n      [-78.341204, 38.280003],\n      [-78.341139, 38.280089],\n      [-78.341053, 38.280202],\n      [-78.340551, 38.280804],\n      [-78.34033, 38.281097],\n      [-78.339739, 38.281771],\n      [-78.337121, 38.284947],\n      [-78.335554, 38.286807],\n      [-78.334912, 38.287652],\n      [-78.334363, 38.288479],\n      [-78.333901, 38.289321],\n      [-78.332891, 38.291302],\n      [-78.33264, 38.291856],\n      [-78.332046, 38.29316],\n      [-78.331547, 38.294091],\n      [-78.33002, 38.297253],\n      [-78.328705, 38.299896],\n      [-78.328454, 38.300437],\n      [-78.327604, 38.302025],\n      [-78.326529, 38.303681],\n      [-78.325643, 38.304891],\n      [-78.325058, 38.305662],\n      [-78.32399, 38.30691],\n      [-78.3236, 38.307359],\n      [-78.323233, 38.30771],\n      [-78.322626, 38.308335],\n      [-78.320591, 38.310229],\n      [-78.317859, 38.312439],\n      [-78.317136, 38.313055],\n      [-78.314274, 38.315396],\n      [-78.313204, 38.316275],\n      [-78.313084, 38.316374],\n      [-78.312238, 38.317069],\n      [-78.31127, 38.317874],\n      [-78.310555, 38.318624],\n      [-78.308339, 38.321068],\n      [-78.307189, 38.322326],\n      [-78.306432, 38.323147],\n      [-78.305157, 38.324565],\n      [-78.299683, 38.33067],\n      [-78.296227, 38.334366],\n      [-78.294775, 38.336025],\n      [-78.294422, 38.336434],\n      [-78.293518, 38.337393],\n      [-78.292283, 38.338774],\n      [-78.290905, 38.340301],\n      [-78.289054, 38.34231],\n      [-78.287698, 38.343781],\n      [-78.286127, 38.345511],\n      [-78.284805, 38.346961],\n      [-78.284197, 38.347653],\n      [-78.281261, 38.350904],\n      [-78.27928, 38.353063],\n      [-78.277989, 38.354462],\n      [-78.276967, 38.355626],\n      [-78.275482, 38.357205],\n      [-78.275108, 38.357686],\n      [-78.273995, 38.359116],\n      [-78.272612, 38.361053],\n      [-78.269402, 38.365549],\n      [-78.268281, 38.367067],\n      [-78.26707, 38.368543],\n      [-78.266209, 38.369424],\n      [-78.26463, 38.370803],\n      [-78.263855, 38.371431],\n      [-78.262777, 38.372178],\n      [-78.262167, 38.372601],\n      [-78.258589, 38.375046],\n      [-78.253931, 38.378242],\n      [-78.253419, 38.378585],\n      [-78.252722, 38.379065],\n      [-78.251038, 38.380279],\n      [-78.249725, 38.3814],\n      [-78.248824, 38.38242],\n      [-78.247019, 38.384778],\n      [-78.243045, 38.39007],\n      [-78.242379, 38.390835],\n      [-78.241798, 38.391304],\n      [-78.241358, 38.391649],\n      [-78.240659, 38.392107],\n      [-78.239791, 38.392562],\n      [-78.236781, 38.394134],\n      [-78.234618, 38.395478],\n      [-78.233524, 38.396238],\n      [-78.231366, 38.397688],\n      [-78.230593, 38.398159],\n      [-78.229713, 38.398631],\n      [-78.22927, 38.398846],\n      [-78.227176, 38.399941],\n      [-78.224001, 38.401573],\n      [-78.221687, 38.402762],\n      [-78.220927, 38.403115],\n      [-78.219583, 38.403494],\n      [-78.217956, 38.403869],\n      [-78.216834, 38.404329],\n      [-78.216198, 38.404653],\n      [-78.215673, 38.404943],\n      [-78.2147, 38.405692],\n      [-78.214341, 38.406017],\n      [-78.211846, 38.409013],\n      [-78.211205, 38.409859],\n      [-78.208931, 38.412831],\n      [-78.207891, 38.413946],\n      [-78.207388, 38.414459],\n      [-78.206848, 38.414885],\n      [-78.20502, 38.416246],\n      [-78.204339, 38.416746],\n      [-78.203587, 38.417231],\n      [-78.201789, 38.418025],\n      [-78.199931, 38.418788],\n      [-78.198775, 38.419213],\n      [-78.197516, 38.419599],\n      [-78.196891, 38.419728],\n      [-78.193593, 38.420311],\n      [-78.192656, 38.420508],\n      [-78.191772, 38.420736],\n      [-78.190615, 38.421137],\n      [-78.189756, 38.421485],\n      [-78.189131, 38.421795],\n      [-78.188009, 38.422501],\n      [-78.186635, 38.423265],\n      [-78.185396, 38.423841],\n      [-78.184545, 38.424162],\n      [-78.179643, 38.425692],\n      [-78.176595, 38.426575],\n      [-78.175037, 38.427149],\n      [-78.174014, 38.427529],\n      [-78.171007, 38.428688],\n      [-78.169272, 38.429381],\n      [-78.165511, 38.430827],\n      [-78.164119, 38.431371],\n      [-78.162591, 38.431967],\n      [-78.161653, 38.432308],\n      [-78.160661, 38.43271],\n      [-78.160269, 38.432865],\n      [-78.159874, 38.433009],\n      [-78.157491, 38.433942],\n      [-78.157022, 38.434133],\n      [-78.156281, 38.434403],\n      [-78.154122, 38.435214],\n      [-78.152887, 38.435503],\n      [-78.151935, 38.435645],\n      [-78.151237, 38.435723],\n      [-78.149391, 38.435895],\n      [-78.145341, 38.436294],\n      [-78.143178, 38.436516],\n      [-78.141588, 38.436723],\n      [-78.140742, 38.436927],\n      [-78.139967, 38.43716],\n      [-78.139029, 38.437478],\n      [-78.138213, 38.437833],\n      [-78.13673, 38.438732],\n      [-78.135769, 38.439493],\n      [-78.133667, 38.441543],\n      [-78.13309, 38.442092],\n      [-78.132637, 38.442565],\n      [-78.131362, 38.443807],\n      [-78.131197, 38.443972],\n      [-78.13069, 38.444456],\n      [-78.13004, 38.445093],\n      [-78.129654, 38.445515],\n      [-78.129431, 38.445788],\n      [-78.129306, 38.445939],\n      [-78.129135, 38.446147],\n      [-78.126535, 38.449414],\n      [-78.12559, 38.450596],\n      [-78.124937, 38.451403],\n      [-78.12463, 38.451786],\n      [-78.122999, 38.453819],\n      [-78.12268, 38.454222],\n      [-78.122212, 38.454799],\n      [-78.122012, 38.455018],\n      [-78.121815, 38.455209],\n      [-78.121657, 38.455346],\n      [-78.121484, 38.455481],\n      [-78.121283, 38.455622],\n      [-78.121072, 38.455755],\n      [-78.120838, 38.455889],\n      [-78.120605, 38.456007],\n      [-78.120411, 38.456093],\n      [-78.120081, 38.45622],\n      [-78.11988, 38.456286],\n      [-78.119617, 38.456362],\n      [-78.119481, 38.456395],\n      [-78.119029, 38.456484],\n      [-78.118859, 38.456513],\n      [-78.118556, 38.456543],\n      [-78.118252, 38.456558],\n      [-78.117886, 38.45656],\n      [-78.117582, 38.456545],\n      [-78.117215, 38.456509],\n      [-78.11691, 38.456463],\n      [-78.116669, 38.456417],\n      [-78.116299, 38.456332],\n      [-78.114395, 38.455867],\n      [-78.113075, 38.455549],\n      [-78.112183, 38.455337],\n      [-78.111983, 38.455288],\n      [-78.110622, 38.454956],\n      [-78.109647, 38.454713],\n      [-78.109318, 38.454619],\n      [-78.108646, 38.454427],\n      [-78.108148, 38.454266],\n      [-78.107826, 38.454152],\n      [-78.107433, 38.454006],\n      [-78.106215, 38.453523],\n      [-78.103244, 38.452284],\n      [-78.103113, 38.45223],\n      [-78.101465, 38.451517],\n      [-78.100793, 38.451267],\n      [-78.099999, 38.450965],\n      [-78.099633, 38.450843],\n      [-78.099366, 38.450762],\n      [-78.098981, 38.450649],\n      [-78.098604, 38.450547],\n      [-78.098262, 38.45046],\n      [-78.09792, 38.450384],\n      [-78.096808, 38.450181],\n      [-78.096151, 38.450083],\n      [-78.095446, 38.449969],\n      [-78.093727, 38.449707],\n      [-78.092677, 38.449547],\n      [-78.092158, 38.449481],\n      [-78.091766, 38.449445],\n      [-78.091635, 38.449437],\n      [-78.091391, 38.44943],\n      [-78.09088, 38.449437],\n      [-78.090541, 38.449459],\n      [-78.090154, 38.449505],\n      [-78.090027, 38.449526],\n      [-78.089761, 38.44957],\n      [-78.089091, 38.449707],\n      [-78.08849, 38.449845],\n      [-78.087312, 38.450134],\n      [-78.086546, 38.450314],\n      [-78.086092, 38.450427],\n      [-78.085716, 38.450516],\n      [-78.085217, 38.45064],\n      [-78.083614, 38.45102],\n      [-78.082588, 38.451268],\n      [-78.081682, 38.451496],\n      [-78.080934, 38.451707],\n      [-78.080808, 38.451743],\n      [-78.080252, 38.451928],\n      [-78.080061, 38.451995],\n      [-78.079356, 38.452244],\n      [-78.079056, 38.452366],\n      [-78.077758, 38.452899],\n      [-78.07693, 38.453218],\n      [-78.07648, 38.453363],\n      [-78.075972, 38.453504],\n      [-78.075519, 38.453613],\n      [-78.075245, 38.453672],\n      [-78.074633, 38.453773],\n      [-78.073634, 38.453917],\n      [-78.073086, 38.453985],\n      [-78.071708, 38.454165],\n      [-78.070367, 38.45434],\n      [-78.069606, 38.454439],\n      [-78.065196, 38.455001],\n      [-78.0636, 38.455212],\n      [-78.062967, 38.455296],\n      [-78.062279, 38.455383],\n      [-78.061807, 38.45545],\n      [-78.061375, 38.455516],\n      [-78.060496, 38.455651],\n      [-78.059099, 38.455874],\n      [-78.058415, 38.455997],\n      [-78.057861, 38.456107],\n      [-78.057398, 38.456211],\n      [-78.057094, 38.456284],\n      [-78.055369, 38.456762],\n      [-78.054558, 38.456978],\n      [-78.05416, 38.457057],\n      [-78.053923, 38.4571],\n      [-78.053692, 38.457137],\n      [-78.053464, 38.457172],\n      [-78.052965, 38.457229],\n      [-78.052547, 38.457266],\n      [-78.05168, 38.457327],\n      [-78.051381, 38.457343],\n      [-78.051209, 38.457356],\n      [-78.050231, 38.457415],\n      [-78.049522, 38.45745],\n      [-78.049115, 38.457457],\n      [-78.048707, 38.45745],\n      [-78.048107, 38.457414],\n      [-78.046583, 38.457296],\n      [-78.045473, 38.457209],\n      [-78.043615, 38.457066],\n      [-78.04299, 38.457014],\n      [-78.041948, 38.456934],\n      [-78.041564, 38.4569],\n      [-78.040447, 38.456809],\n      [-78.039807, 38.456752],\n      [-78.039565, 38.456722],\n      [-78.038614, 38.456586],\n      [-78.037992, 38.45648],\n      [-78.036619, 38.456229],\n      [-78.036312, 38.456174],\n      [-78.035316, 38.455996],\n      [-78.033993, 38.455756],\n      [-78.033455, 38.455659],\n      [-78.032995, 38.455576],\n      [-78.032344, 38.455462],\n      [-78.032225, 38.455441],\n      [-78.032071, 38.455411],\n      [-78.031918, 38.455381],\n      [-78.030629, 38.455156],\n      [-78.030487, 38.455136],\n      [-78.02993, 38.455035],\n      [-78.029397, 38.454939],\n      [-78.027154, 38.454551],\n      [-78.026507, 38.454439],\n      [-78.026143, 38.454368],\n      [-78.025005, 38.454171],\n      [-78.024336, 38.45404],\n      [-78.023622, 38.453878],\n      [-78.02312, 38.453727],\n      [-78.02273, 38.453603],\n      [-78.022384, 38.453473],\n      [-78.021945, 38.453293],\n      [-78.021688, 38.453179],\n      [-78.02141, 38.45304],\n      [-78.020949, 38.452794],\n      [-78.020606, 38.452593],\n      [-78.018376, 38.451156],\n      [-78.015052, 38.449001],\n      [-78.013038, 38.447702],\n      [-78.012718, 38.447476],\n      [-78.012365, 38.447314],\n      [-78.011913, 38.44707],\n      [-78.011467, 38.446849],\n      [-78.011017, 38.446646],\n      [-78.010785, 38.446548],\n      [-78.01041, 38.446389],\n      [-78.009947, 38.446212],\n      [-78.009475, 38.446047],\n      [-78.009032, 38.44592],\n      [-78.008198, 38.445668],\n      [-78.007806, 38.445574],\n      [-78.007536, 38.445509],\n      [-78.00704, 38.445404],\n      [-78.006541, 38.445314],\n      [-78.006039, 38.445234],\n      [-78.005535, 38.445168],\n      [-78.004882, 38.445103],\n      [-78.00427, 38.44506],\n      [-78.003857, 38.445042],\n      [-78.003259, 38.445032],\n      [-77.996098, 38.445039],\n      [-77.995524, 38.445052],\n      [-77.995083, 38.445072],\n      [-77.9946, 38.445108],\n      [-77.994291, 38.44514],\n      [-77.994119, 38.445159],\n      [-77.993562, 38.445235],\n      [-77.993077, 38.445314],\n      [-77.992738, 38.44538],\n      [-77.992304, 38.445476],\n      [-77.991774, 38.445609],\n      [-77.991277, 38.445754],\n      [-77.990885, 38.44588],\n      [-77.990401, 38.446049],\n      [-77.989902, 38.446248],\n      [-77.98951, 38.446417],\n      [-77.989127, 38.446595],\n      [-77.988671, 38.446826],\n      [-77.988226, 38.44707],\n      [-77.988015, 38.447193],\n      [-77.987964, 38.447222],\n      [-77.986229, 38.448266],\n      [-77.982377, 38.450578],\n      [-77.980067, 38.451965],\n      [-77.978396, 38.452971],\n      [-77.976723, 38.453978],\n      [-77.971729, 38.456974],\n      [-77.970854, 38.457513],\n      [-77.970447, 38.457776],\n      [-77.969812, 38.458205],\n      [-77.969672, 38.458304],\n      [-77.969294, 38.458571],\n      [-77.968878, 38.458872],\n      [-77.968162, 38.459423],\n      [-77.967696, 38.459799],\n      [-77.967125, 38.46028],\n      [-77.966325, 38.460982],\n      [-77.965258, 38.461918],\n      [-77.964866, 38.462267],\n      [-77.960196, 38.466376],\n      [-77.955939, 38.470123],\n      [-77.954947, 38.470996],\n      [-77.954533, 38.471358],\n      [-77.953922, 38.471893],\n      [-77.953458, 38.472304],\n      [-77.953176, 38.472548],\n      [-77.952583, 38.473072],\n      [-77.951119, 38.474355],\n      [-77.950943, 38.474509],\n      [-77.949669, 38.47563],\n      [-77.948949, 38.476265],\n      [-77.948002, 38.477098],\n      [-77.940672, 38.483548],\n      [-77.940481, 38.483731],\n      [-77.940188, 38.484012],\n      [-77.939893, 38.484318],\n      [-77.939484, 38.484776],\n      [-77.93926, 38.485054],\n      [-77.939039, 38.48534],\n      [-77.938835, 38.485618],\n      [-77.938574, 38.486003],\n      [-77.938385, 38.4863],\n      [-77.938154, 38.486695],\n      [-77.936929, 38.489071],\n      [-77.936476, 38.48995],\n      [-77.936307, 38.490277],\n      [-77.936213, 38.490449],\n      [-77.936032, 38.490779],\n      [-77.935797, 38.491168],\n      [-77.935515, 38.491593],\n      [-77.935238, 38.491981],\n      [-77.934904, 38.492412],\n      [-77.934836, 38.492493],\n      [-77.93462, 38.492753],\n      [-77.934238, 38.493183],\n      [-77.933985, 38.493449],\n      [-77.933681, 38.493753],\n      [-77.933395, 38.494018],\n      [-77.933018, 38.494354],\n      [-77.932749, 38.494585],\n      [-77.932252, 38.494973],\n      [-77.93171, 38.495374],\n      [-77.931341, 38.495628],\n      [-77.930966, 38.495866],\n      [-77.930194, 38.496327],\n      [-77.929795, 38.496546],\n      [-77.929468, 38.496713],\n      [-77.928898, 38.496989],\n      [-77.928401, 38.497211],\n      [-77.927814, 38.497454],\n      [-77.927352, 38.49763],\n      [-77.926883, 38.497792],\n      [-77.92627, 38.497988],\n      [-77.925745, 38.498139],\n      [-77.925688, 38.498154],\n      [-77.925207, 38.498279],\n      [-77.924635, 38.498412],\n      [-77.924059, 38.498531],\n      [-77.923478, 38.498637],\n      [-77.923244, 38.498675],\n      [-77.9209, 38.499106],\n      [-77.920407, 38.499196],\n      [-77.916265, 38.499951],\n      [-77.914897, 38.500194],\n      [-77.913262, 38.500498],\n      [-77.912906, 38.500563],\n      [-77.911059, 38.5009],\n      [-77.910401, 38.501012],\n      [-77.909308, 38.501222],\n      [-77.90816, 38.501425],\n      [-77.906956, 38.501647],\n      [-77.902649, 38.502433],\n      [-77.901836, 38.502578],\n      [-77.901383, 38.502661],\n      [-77.899056, 38.503088],\n      [-77.897887, 38.503302],\n      [-77.896932, 38.503454],\n      [-77.896481, 38.503514],\n      [-77.896026, 38.50356],\n      [-77.89557, 38.503592],\n      [-77.895091, 38.503613],\n      [-77.894605, 38.503621],\n      [-77.894338, 38.503619],\n      [-77.894023, 38.503612],\n      [-77.893539, 38.503589],\n      [-77.893152, 38.50356],\n      [-77.891645, 38.503392],\n      [-77.891145, 38.503351],\n      [-77.890705, 38.503331],\n      [-77.890264, 38.503325],\n      [-77.89, 38.503328],\n      [-77.889421, 38.503346],\n      [-77.888918, 38.503375],\n      [-77.888578, 38.503406],\n      [-77.888318, 38.503429],\n      [-77.887823, 38.50349],\n      [-77.887334, 38.503566],\n      [-77.886849, 38.503655],\n      [-77.886369, 38.503759],\n      [-77.885701, 38.503929],\n      [-77.88504, 38.504114],\n      [-77.883872, 38.504451],\n      [-77.882026, 38.504972],\n      [-77.880726, 38.50535],\n      [-77.879756, 38.505628],\n      [-77.879416, 38.505726],\n      [-77.878734, 38.505916],\n      [-77.87665, 38.506514],\n      [-77.873295, 38.507467],\n      [-77.870872, 38.508164],\n      [-77.867574, 38.509112],\n      [-77.86643, 38.509426],\n      [-77.865139, 38.509804],\n      [-77.864878, 38.509875],\n      [-77.864614, 38.509946],\n      [-77.864004, 38.510124],\n      [-77.863963, 38.510136],\n      [-77.863243, 38.510359],\n      [-77.862776, 38.510515],\n      [-77.862313, 38.51068],\n      [-77.86153, 38.510992],\n      [-77.86091, 38.511252],\n      [-77.860341, 38.511504],\n      [-77.860101, 38.511597],\n      [-77.859873, 38.511706],\n      [-77.859049, 38.512033],\n      [-77.858596, 38.512199],\n      [-77.85801, 38.512393],\n      [-77.85641, 38.512859],\n      [-77.85546, 38.513131],\n      [-77.853636, 38.513652],\n      [-77.852939, 38.513842],\n      [-77.85189, 38.514117],\n      [-77.851773, 38.514147],\n      [-77.851155, 38.514282],\n      [-77.850783, 38.514355],\n      [-77.850158, 38.514468],\n      [-77.849529, 38.514566],\n      [-77.848611, 38.514673],\n      [-77.847601, 38.514814],\n      [-77.847219, 38.514874],\n      [-77.846744, 38.514961],\n      [-77.846275, 38.515063],\n      [-77.845622, 38.515227],\n      [-77.843493, 38.515828],\n      [-77.840926, 38.516554],\n      [-77.838953, 38.517123],\n      [-77.838611, 38.51724],\n      [-77.838276, 38.51737],\n      [-77.838087, 38.517452],\n      [-77.837878, 38.517559],\n      [-77.837641, 38.517698],\n      [-77.837371, 38.517879],\n      [-77.837159, 38.518042],\n      [-77.836631, 38.518508],\n      [-77.833939, 38.52107],\n      [-77.833536, 38.521444],\n      [-77.832859, 38.52207],\n      [-77.832618, 38.52227],\n      [-77.832363, 38.52246],\n      [-77.832151, 38.522605],\n      [-77.831761, 38.52284],\n      [-77.831645, 38.522905],\n      [-77.831341, 38.523059],\n      [-77.831027, 38.523201],\n      [-77.830705, 38.52333],\n      [-77.830375, 38.523446],\n      [-77.82725, 38.524408],\n      [-77.825282, 38.525005],\n      [-77.824825, 38.525153],\n      [-77.824766, 38.525172],\n      [-77.82414, 38.525403],\n      [-77.823904, 38.525501],\n      [-77.823444, 38.525707],\n      [-77.823161, 38.525842],\n      [-77.822816, 38.526023],\n      [-77.822483, 38.526216],\n      [-77.82216, 38.526429],\n      [-77.821905, 38.526618],\n      [-77.821824, 38.526681],\n      [-77.821661, 38.526816],\n      [-77.82143, 38.527024],\n      [-77.821026, 38.527454],\n      [-77.820758, 38.527783],\n      [-77.820516, 38.528112],\n      [-77.820197, 38.52856],\n      [-77.819895, 38.529029],\n      [-77.81945, 38.529798],\n      [-77.818541, 38.531386],\n      [-77.817476, 38.533249],\n      [-77.817174, 38.533749],\n      [-77.815779, 38.536111],\n      [-77.812836, 38.541042],\n      [-77.812145, 38.542152],\n      [-77.811443, 38.543345],\n      [-77.81107, 38.543916],\n      [-77.809169, 38.54677],\n      [-77.807061, 38.549912],\n      [-77.805801, 38.55177],\n      [-77.803189, 38.555743],\n      [-77.802664, 38.55653],\n      [-77.802442, 38.556869],\n      [-77.802253, 38.557175],\n      [-77.802079, 38.557492],\n      [-77.801838, 38.557971],\n      [-77.801782, 38.55809],\n      [-77.801657, 38.55838],\n      [-77.801522, 38.558722],\n      [-77.801429, 38.558994],\n      [-77.801302, 38.559432],\n      [-77.801209, 38.559822],\n      [-77.801144, 38.560169],\n      [-77.801065, 38.560727],\n      [-77.801025, 38.56131],\n      [-77.801027, 38.561813],\n      [-77.801049, 38.562487],\n      [-77.801069, 38.562893],\n      [-77.801213, 38.565749],\n      [-77.801305, 38.567636],\n      [-77.80137, 38.568961],\n      [-77.801541, 38.572402],\n      [-77.801599, 38.573623],\n      [-77.801669, 38.575224],\n      [-77.801707, 38.575829],\n      [-77.801772, 38.577117],\n      [-77.801874, 38.579138],\n      [-77.801902, 38.579759],\n      [-77.801914, 38.579914],\n      [-77.801945, 38.580642],\n      [-77.801977, 38.581198],\n      [-77.802036, 38.582417],\n      [-77.802118, 38.584113],\n      [-77.802126, 38.584391],\n      [-77.802131, 38.584986],\n      [-77.802118, 38.585525],\n      [-77.802088, 38.586052],\n      [-77.802017, 38.586791],\n      [-77.801743, 38.589112],\n      [-77.801725, 38.589268],\n      [-77.801437, 38.591698],\n      [-77.801342, 38.5925],\n      [-77.801281, 38.593006],\n      [-77.800994, 38.595455],\n      [-77.800644, 38.598437],\n      [-77.800492, 38.599704],\n      [-77.800457, 38.599972],\n      [-77.800268, 38.601612],\n      [-77.800209, 38.602305],\n      [-77.80017, 38.602992],\n      [-77.800152, 38.603904],\n      [-77.800152, 38.604035],\n      [-77.800152, 38.604483],\n      [-77.800172, 38.60559],\n      [-77.800187, 38.606551],\n      [-77.800205, 38.607644],\n      [-77.80022, 38.608813],\n      [-77.800237, 38.609384],\n      [-77.800232, 38.610093],\n      [-77.800248, 38.611162],\n      [-77.80027, 38.611781],\n      [-77.800276, 38.611972],\n      [-77.800298, 38.612639],\n      [-77.800312, 38.613039],\n      [-77.800332, 38.613399],\n      [-77.800397, 38.614527],\n      [-77.800421, 38.615203],\n      [-77.800432, 38.61575],\n      [-77.800444, 38.616559],\n      [-77.800478, 38.618723],\n      [-77.8005, 38.619601],\n      [-77.800525, 38.620811],\n      [-77.800527, 38.620908],\n      [-77.800548, 38.62192],\n      [-77.80058, 38.623403],\n      [-77.800594, 38.624213],\n      [-77.800603, 38.625413],\n      [-77.80062, 38.627386],\n      [-77.800629, 38.627856],\n      [-77.800651, 38.62934],\n      [-77.800658, 38.629863],\n      [-77.800688, 38.631295],\n      [-77.800701, 38.63219],\n      [-77.800708, 38.632656],\n      [-77.800729, 38.632937],\n      [-77.800749, 38.6331],\n      [-77.800764, 38.633194],\n      [-77.800824, 38.633493],\n      [-77.8009, 38.63375],\n      [-77.801033, 38.634132],\n      [-77.801091, 38.634277],\n      [-77.801339, 38.634852],\n      [-77.801526, 38.635289],\n      [-77.801703, 38.635692],\n      [-77.801752, 38.635808],\n      [-77.801965, 38.636295],\n      [-77.802897, 38.638462],\n      [-77.802996, 38.638693],\n      [-77.803206, 38.639174],\n      [-77.803351, 38.639505],\n      [-77.803635, 38.640158],\n      [-77.803774, 38.640485],\n      [-77.80405, 38.641121],\n      [-77.804137, 38.641325],\n      [-77.804199, 38.641471],\n      [-77.804367, 38.641868],\n      [-77.804398, 38.641941],\n      [-77.804535, 38.642359],\n      [-77.804602, 38.642621],\n      [-77.804642, 38.642832],\n      [-77.804669, 38.643038],\n      [-77.804677, 38.643118],\n      [-77.804687, 38.643291],\n      [-77.804696, 38.643722],\n      [-77.804696, 38.644409],\n      [-77.804677, 38.644766],\n      [-77.804636, 38.645023],\n      [-77.804576, 38.645279],\n      [-77.804498, 38.645531],\n      [-77.804445, 38.645671],\n      [-77.804179, 38.646296],\n      [-77.803976, 38.646795],\n      [-77.803645, 38.647584],\n      [-77.803607, 38.647672],\n      [-77.803037, 38.649027],\n      [-77.802582, 38.650099],\n      [-77.802488, 38.65032],\n      [-77.80226, 38.650816],\n      [-77.802226, 38.650891],\n      [-77.801705, 38.651973],\n      [-77.801524, 38.652348],\n      [-77.800517, 38.654435],\n      [-77.800311, 38.654856],\n      [-77.800109, 38.655223],\n      [-77.799504, 38.656216],\n      [-77.799258, 38.656629],\n      [-77.799064, 38.656995],\n      [-77.798952, 38.657238],\n      [-77.798593, 38.658126],\n      [-77.798524, 38.658287],\n      [-77.798395, 38.658591],\n      [-77.798266, 38.658901],\n      [-77.798049, 38.659428],\n      [-77.797829, 38.659963],\n      [-77.79736, 38.661105],\n      [-77.797075, 38.661795],\n      [-77.796724, 38.662641],\n      [-77.79625, 38.663783],\n      [-77.796094, 38.664161],\n      [-77.795637, 38.665271],\n      [-77.79528, 38.666132],\n      [-77.795248, 38.66621],\n      [-77.794069, 38.669063],\n      [-77.793674, 38.670024],\n      [-77.793379, 38.670723],\n      [-77.793244, 38.671036],\n      [-77.793103, 38.671307],\n      [-77.792943, 38.671571],\n      [-77.792813, 38.671755],\n      [-77.792641, 38.671968],\n      [-77.792454, 38.672174],\n      [-77.792251, 38.672371],\n      [-77.791496, 38.673047],\n      [-77.791134, 38.673372],\n      [-77.790643, 38.673809],\n      [-77.789269, 38.675032],\n      [-77.788765, 38.675507],\n      [-77.788692, 38.675576],\n      [-77.788181, 38.676104],\n      [-77.787807, 38.676549],\n      [-77.787668, 38.676743],\n      [-77.787501, 38.677031],\n      [-77.78738, 38.677265],\n      [-77.78733, 38.677383],\n      [-77.787232, 38.677659],\n      [-77.787165, 38.677911],\n      [-77.787115, 38.678177],\n      [-77.787085, 38.678445],\n      [-77.787079, 38.678552],\n      [-77.787095, 38.67913],\n      [-77.787153, 38.679798],\n      [-77.787259, 38.680924],\n      [-77.787331, 38.681886],\n      [-77.787363, 38.682419],\n      [-77.787413, 38.683635],\n      [-77.787401, 38.684203],\n      [-77.787392, 38.684611],\n      [-77.78735, 38.685019],\n      [-77.787315, 38.685264],\n      [-77.787231, 38.685728],\n      [-77.787136, 38.686251],\n      [-77.787114, 38.686332],\n      [-77.78692, 38.686986],\n      [-77.786696, 38.687619],\n      [-77.786501, 38.688074],\n      [-77.786277, 38.68855],\n      [-77.786098, 38.688888],\n      [-77.785944, 38.689154],\n      [-77.785576, 38.689748],\n      [-77.784818, 38.690938],\n      [-77.784516, 38.691425],\n      [-77.784271, 38.691807],\n      [-77.783827, 38.692506],\n      [-77.783401, 38.6932],\n      [-77.783246, 38.693444],\n      [-77.782384, 38.694802],\n      [-77.782205, 38.695084],\n      [-77.781593, 38.696059],\n      [-77.781243, 38.69667],\n      [-77.78108, 38.696994],\n      [-77.780923, 38.697347],\n      [-77.780812, 38.697637],\n      [-77.780687, 38.698004],\n      [-77.780614, 38.698231],\n      [-77.780587, 38.698314],\n      [-77.780392, 38.699181],\n      [-77.780333, 38.699659],\n      [-77.780298, 38.700094],\n      [-77.780287, 38.700389],\n      [-77.780289, 38.700757],\n      [-77.780315, 38.701452],\n      [-77.780365, 38.702797],\n      [-77.780397, 38.703509],\n      [-77.780462, 38.705131],\n      [-77.780535, 38.706895],\n      [-77.780587, 38.708144],\n      [-77.780612, 38.708911],\n      [-77.780675, 38.710324],\n      [-77.780782, 38.713019],\n      [-77.780806, 38.713639],\n      [-77.780906, 38.716128],\n      [-77.780923, 38.716557],\n      [-77.780985, 38.71812],\n      [-77.781094, 38.720811],\n      [-77.781111, 38.721348],\n      [-77.78117, 38.722771],\n      [-77.781205, 38.723428],\n      [-77.781207, 38.723933],\n      [-77.781141, 38.724638],\n      [-77.781062, 38.725028],\n      [-77.780986, 38.725313],\n      [-77.780873, 38.725651],\n      [-77.780799, 38.725838],\n      [-77.780763, 38.72593],\n      [-77.780608, 38.726258],\n      [-77.780457, 38.726537],\n      [-77.78029, 38.726814],\n      [-77.780067, 38.727137],\n      [-77.779841, 38.727426],\n      [-77.779593, 38.727712],\n      [-77.779535, 38.727773],\n      [-77.779432, 38.727882],\n      [-77.779137, 38.728163],\n      [-77.778889, 38.728379],\n      [-77.778564, 38.728638],\n      [-77.777988, 38.729064],\n      [-77.777903, 38.729128],\n      [-77.777813, 38.729195],\n      [-77.777751, 38.72924],\n      [-77.777544, 38.729395],\n      [-77.776507, 38.73018],\n      [-77.77534, 38.731069],\n      [-77.775049, 38.73127],\n      [-77.774364, 38.73177],\n      [-77.774051, 38.732009],\n      [-77.773303, 38.732554],\n      [-77.772496, 38.733155],\n      [-77.772444, 38.733192],\n      [-77.771424, 38.733941],\n      [-77.770375, 38.73472],\n      [-77.769774, 38.735166],\n      [-77.766501, 38.737595],\n      [-77.766092, 38.7379],\n      [-77.766013, 38.737957],\n      [-77.764613, 38.738973],\n      [-77.763699, 38.739647],\n      [-77.760294, 38.742188],\n      [-77.759475, 38.742805],\n      [-77.758292, 38.743704],\n      [-77.757242, 38.744507],\n      [-77.756734, 38.744888],\n      [-77.75607, 38.745394],\n      [-77.755332, 38.74595],\n      [-77.753869, 38.747051],\n      [-77.753512, 38.747317],\n      [-77.752239, 38.748266],\n      [-77.751486, 38.748835],\n      [-77.749304, 38.750477],\n      [-77.747696, 38.751677],\n      [-77.747175, 38.752069],\n      [-77.746636, 38.752468],\n      [-77.746089, 38.752858],\n      [-77.745719, 38.753113],\n      [-77.745109, 38.753534],\n      [-77.744529, 38.753946],\n      [-77.744441, 38.754016],\n      [-77.743143, 38.755039],\n      [-77.742369, 38.755648],\n      [-77.741019, 38.756723],\n      [-77.740302, 38.757289],\n      [-77.74012, 38.757439],\n      [-77.739869, 38.757633],\n      [-77.739452, 38.757933],\n      [-77.738896, 38.758325],\n      [-77.738458, 38.758616],\n      [-77.737994, 38.758912],\n      [-77.737675, 38.759109],\n      [-77.736928, 38.759546],\n      [-77.736529, 38.759764],\n      [-77.73598, 38.760062],\n      [-77.735512, 38.760302],\n      [-77.734641, 38.760749],\n      [-77.731871, 38.762168],\n      [-77.730354, 38.762946],\n      [-77.726563, 38.764904],\n      [-77.726297, 38.765042],\n      [-77.725494, 38.765462],\n      [-77.724993, 38.765717],\n      [-77.724283, 38.76606],\n      [-77.724155, 38.766114],\n      [-77.723683, 38.766274],\n      [-77.723631, 38.766287],\n      [-77.723461, 38.76633],\n      [-77.723208, 38.766384],\n      [-77.722948, 38.766425],\n      [-77.722732, 38.766449],\n      [-77.722439, 38.766466],\n      [-77.722204, 38.76647],\n      [-77.721761, 38.76645],\n      [-77.721338, 38.766416],\n      [-77.720827, 38.766373],\n      [-77.71958, 38.766268],\n      [-77.718945, 38.766226],\n      [-77.71829, 38.766214],\n      [-77.717886, 38.766231],\n      [-77.717644, 38.766248],\n      [-77.717238, 38.766296],\n      [-77.716986, 38.766333],\n      [-77.716478, 38.766426],\n      [-77.715933, 38.766539],\n      [-77.71313, 38.767126],\n      [-77.71253, 38.76725],\n      [-77.711446, 38.767475],\n      [-77.711213, 38.767521],\n      [-77.709832, 38.76781],\n      [-77.709246, 38.767933],\n      [-77.708584, 38.768078],\n      [-77.708134, 38.768177],\n      [-77.707984, 38.768211],\n      [-77.707651, 38.768287],\n      [-77.707208, 38.768389],\n      [-77.707037, 38.768429],\n      [-77.706966, 38.768445],\n      [-77.706604, 38.768529],\n      [-77.705724, 38.768733],\n      [-77.704884, 38.768928],\n      [-77.704008, 38.769125],\n      [-77.703413, 38.769266],\n      [-77.703044, 38.769359],\n      [-77.702667, 38.769454],\n      [-77.702289, 38.769565],\n      [-77.701922, 38.769687],\n      [-77.701705, 38.769766],\n      [-77.701294, 38.769925],\n      [-77.700381, 38.770277],\n      [-77.698624, 38.770957],\n      [-77.69792, 38.771222],\n      [-77.696779, 38.771656],\n      [-77.696286, 38.771839],\n      [-77.694688, 38.772451],\n      [-77.693388, 38.772942],\n      [-77.69338, 38.772945],\n      [-77.69299, 38.773092],\n      [-77.691828, 38.773541],\n      [-77.689985, 38.774273],\n      [-77.689184, 38.774593],\n      [-77.687947, 38.775099],\n      [-77.68652, 38.775696],\n      [-77.686093, 38.775875],\n      [-77.685013, 38.776323],\n      [-77.684548, 38.776508],\n      [-77.683617, 38.77688],\n      [-77.682281, 38.77742],\n      [-77.681906, 38.77757],\n      [-77.680152, 38.778273],\n      [-77.680071, 38.778309],\n      [-77.679964, 38.778348],\n      [-77.67944, 38.778559],\n      [-77.679135, 38.778682],\n      [-77.679008, 38.778733],\n      [-77.678765, 38.778831],\n      [-77.678322, 38.779011],\n      [-77.677302, 38.779417],\n      [-77.677036, 38.779514],\n      [-77.676871, 38.779569],\n      [-77.676375, 38.779711],\n      [-77.675903, 38.779834],\n      [-77.675739, 38.779874],\n      [-77.675282, 38.779966],\n      [-77.675165, 38.77999],\n      [-77.673681, 38.780291],\n      [-77.67245, 38.780538],\n      [-77.671784, 38.780666],\n      [-77.671623, 38.780699],\n      [-77.671392, 38.780752],\n      [-77.670977, 38.780857],\n      [-77.67067, 38.780949],\n      [-77.669909, 38.781181],\n      [-77.669755, 38.781229],\n      [-77.668691, 38.781557],\n      [-77.668105, 38.781729],\n      [-77.66717, 38.781984],\n      [-77.665556, 38.7824],\n      [-77.665397, 38.782443],\n      [-77.66509, 38.782528],\n      [-77.663117, 38.783041],\n      [-77.662729, 38.783142],\n      [-77.658982, 38.784122],\n      [-77.658234, 38.784318],\n      [-77.657487, 38.784515],\n      [-77.656903, 38.784668],\n      [-77.656444, 38.784785],\n      [-77.655772, 38.784954],\n      [-77.655488, 38.785028],\n      [-77.654149, 38.78538],\n      [-77.653073, 38.785665],\n      [-77.652817, 38.785732],\n      [-77.652723, 38.785757],\n      [-77.652335, 38.78586],\n      [-77.650432, 38.786358],\n      [-77.650292, 38.786394],\n      [-77.648546, 38.786845],\n      [-77.648132, 38.786953],\n      [-77.6471, 38.787217],\n      [-77.646912, 38.787266],\n      [-77.646792, 38.787296],\n      [-77.646475, 38.787378],\n      [-77.643862, 38.788066],\n      [-77.643514, 38.788151],\n      [-77.642956, 38.788288],\n      [-77.641845, 38.788545],\n      [-77.641256, 38.788678],\n      [-77.640668, 38.788812],\n      [-77.637878, 38.789456],\n      [-77.637724, 38.789491],\n      [-77.635026, 38.790112],\n      [-77.633026, 38.790572],\n      [-77.631672, 38.790883],\n      [-77.630391, 38.791179],\n      [-77.630168, 38.791231],\n      [-77.629412, 38.791414],\n      [-77.629006, 38.791523],\n      [-77.628982, 38.791529],\n      [-77.628275, 38.791722],\n      [-77.626219, 38.792284],\n      [-77.625465, 38.792483],\n      [-77.624741, 38.792675],\n      [-77.624567, 38.792721],\n      [-77.624468, 38.792748],\n      [-77.624067, 38.792856],\n      [-77.622821, 38.793191],\n      [-77.622323, 38.793326],\n      [-77.622182, 38.793359],\n      [-77.62157, 38.793529],\n      [-77.621412, 38.793572],\n      [-77.620477, 38.793825],\n      [-77.620443, 38.793835],\n      [-77.619193, 38.794171],\n      [-77.619018, 38.794213],\n      [-77.617763, 38.794556],\n      [-77.617092, 38.79473],\n      [-77.616747, 38.794832],\n      [-77.614017, 38.7956],\n      [-77.613309, 38.7958],\n      [-77.613097, 38.795859],\n      [-77.611965, 38.796178],\n      [-77.611011, 38.796432],\n      [-77.609519, 38.79683],\n      [-77.609066, 38.796955],\n      [-77.60887, 38.79701],\n      [-77.608124, 38.797223],\n      [-77.607861, 38.79729],\n      [-77.60659, 38.797608],\n      [-77.604759, 38.798106],\n      [-77.603341, 38.798433],\n      [-77.602615, 38.798623],\n      [-77.60217, 38.798681],\n      [-77.60178, 38.798726],\n      [-77.60159, 38.798739],\n      [-77.601338, 38.79876],\n      [-77.601043, 38.798748],\n      [-77.600761, 38.798726],\n      [-77.600475, 38.798685],\n      [-77.600088, 38.798626],\n      [-77.598701, 38.798329],\n      [-77.598447, 38.798288],\n      [-77.598168, 38.798263],\n      [-77.597945, 38.798266],\n      [-77.597733, 38.798267],\n      [-77.597515, 38.798295],\n      [-77.597295, 38.798329],\n      [-77.59709, 38.79838],\n      [-77.596838, 38.798472],\n      [-77.596056, 38.79873],\n      [-77.595792, 38.798802],\n      [-77.595557, 38.798839],\n      [-77.595321, 38.798872],\n      [-77.595123, 38.798893],\n      [-77.594903, 38.798906],\n      [-77.594606, 38.798902],\n      [-77.592349, 38.798571],\n      [-77.589853, 38.798246],\n      [-77.587564, 38.797961],\n      [-77.584659, 38.797708],\n      [-77.583518, 38.797592],\n      [-77.582596, 38.797507],\n      [-77.581727, 38.797465],\n      [-77.580645, 38.797422],\n      [-77.579853, 38.797408],\n      [-77.579381, 38.797391],\n      [-77.579328, 38.797391],\n      [-77.578346, 38.797391],\n      [-77.576989, 38.797404],\n      [-77.576007, 38.797446],\n      [-77.575373, 38.797504],\n      [-77.571144, 38.797797],\n      [-77.569287, 38.79792],\n      [-77.56555, 38.798187],\n      [-77.561659, 38.798447],\n      [-77.555891, 38.7988],\n      [-77.553755, 38.798951],\n      [-77.550887, 38.799152],\n      [-77.550295, 38.799193],\n      [-77.548407, 38.799331],\n      [-77.54595, 38.799494],\n      [-77.541063, 38.799812],\n      [-77.539341, 38.799946],\n      [-77.536546, 38.800151],\n      [-77.532281, 38.800448],\n      [-77.529135, 38.800667],\n      [-77.525861, 38.800895],\n      [-77.523173, 38.801079],\n      [-77.520134, 38.801324],\n      [-77.519426, 38.801374],\n      [-77.518588, 38.801436],\n      [-77.514662, 38.801698],\n      [-77.51275, 38.801833],\n      [-77.512257, 38.801883],\n      [-77.51176, 38.801949],\n      [-77.511242, 38.802033],\n      [-77.510728, 38.802133],\n      [-77.510237, 38.802245],\n      [-77.509757, 38.802371],\n      [-77.509283, 38.802511],\n      [-77.508762, 38.802686],\n      [-77.508249, 38.802874],\n      [-77.503238, 38.804849],\n      [-77.501867, 38.805383],\n      [-77.49854, 38.806696],\n      [-77.492854, 38.808929],\n      [-77.492586, 38.809039],\n      [-77.491408, 38.809499],\n      [-77.490728, 38.809768],\n      [-77.490387, 38.809903],\n      [-77.489846, 38.810125],\n      [-77.48976, 38.810159],\n      [-77.489588, 38.810228],\n      [-77.488128, 38.810814],\n      [-77.487975, 38.810876],\n      [-77.487938, 38.810891],\n      [-77.487614, 38.811027],\n      [-77.486889, 38.811312],\n      [-77.485515, 38.811841],\n      [-77.481021, 38.813606],\n      [-77.480031, 38.813987],\n      [-77.479528, 38.81418],\n      [-77.478278, 38.814671],\n      [-77.477784, 38.814859],\n      [-77.476696, 38.815283],\n      [-77.476308, 38.815444],\n      [-77.470849, 38.817587],\n      [-77.469997, 38.817934],\n      [-77.469107, 38.818314],\n      [-77.468263, 38.818692],\n      [-77.467788, 38.818912],\n      [-77.466824, 38.819384],\n      [-77.466481, 38.819559],\n      [-77.465978, 38.819814],\n      [-77.465888, 38.819862],\n      [-77.465082, 38.820299],\n      [-77.464689, 38.820516],\n      [-77.463916, 38.820976],\n      [-77.463568, 38.821184],\n      [-77.462817, 38.82165],\n      [-77.462169, 38.822067],\n      [-77.461524, 38.822499],\n      [-77.460742, 38.823046],\n      [-77.459971, 38.823615],\n      [-77.459453, 38.824009],\n      [-77.458829, 38.824505],\n      [-77.458041, 38.825157],\n      [-77.457989, 38.825199],\n      [-77.457719, 38.825436],\n      [-77.457456, 38.825667],\n      [-77.457174, 38.825914],\n      [-77.456485, 38.82655],\n      [-77.455925, 38.827089],\n      [-77.455609, 38.827408],\n      [-77.455354, 38.827664],\n      [-77.455286, 38.827736],\n      [-77.454763, 38.828288],\n      [-77.453687, 38.829492],\n      [-77.45117, 38.83231],\n      [-77.450091, 38.833546],\n      [-77.449603, 38.834072],\n      [-77.4484, 38.835411],\n      [-77.448317, 38.835496],\n      [-77.447073, 38.836883],\n      [-77.446568, 38.837456],\n      [-77.444983, 38.839239],\n      [-77.444962, 38.839261],\n      [-77.44448, 38.839771],\n      [-77.443925, 38.840374],\n      [-77.443121, 38.841151],\n      [-77.442523, 38.841683],\n      [-77.442048, 38.842083],\n      [-77.441563, 38.842472],\n      [-77.44121, 38.842729],\n      [-77.440835, 38.842989],\n      [-77.440353, 38.843301],\n      [-77.439357, 38.843895],\n      [-77.438808, 38.844189],\n      [-77.438412, 38.844388],\n      [-77.438154, 38.844513],\n      [-77.437585, 38.844773],\n      [-77.43695, 38.845042],\n      [-77.436125, 38.845358],\n      [-77.435386, 38.845611],\n      [-77.434841, 38.845778],\n      [-77.434461, 38.845886],\n      [-77.434065, 38.845989],\n      [-77.433588, 38.846102],\n      [-77.432595, 38.846311],\n      [-77.431976, 38.846424],\n      [-77.431894, 38.846439],\n      [-77.43166, 38.846482],\n      [-77.43013, 38.84677],\n      [-77.428638, 38.847052],\n      [-77.427672, 38.847201],\n      [-77.426895, 38.847336],\n      [-77.426613, 38.847387],\n      [-77.423954, 38.847868],\n      [-77.42318, 38.84802],\n      [-77.422578, 38.848129],\n      [-77.421734, 38.848284],\n      [-77.419777, 38.84865],\n      [-77.418032, 38.848977],\n      [-77.416532, 38.849246],\n      [-77.415198, 38.849482],\n      [-77.414151, 38.849672],\n      [-77.413692, 38.849756],\n      [-77.413004, 38.849886],\n      [-77.41025, 38.850388],\n      [-77.408348, 38.850725],\n      [-77.406003, 38.851167],\n      [-77.404553, 38.851419],\n      [-77.403103, 38.851676],\n      [-77.402433, 38.851803],\n      [-77.401513, 38.851954],\n      [-77.399882, 38.852249],\n      [-77.399048, 38.852319],\n      [-77.398718, 38.852375],\n      [-77.397996, 38.852492],\n      [-77.397318, 38.852624],\n      [-77.396752, 38.852714],\n      [-77.396348, 38.852749],\n      [-77.395658, 38.852767],\n      [-77.395009, 38.8528],\n      [-77.394695, 38.852837],\n      [-77.39433, 38.852891],\n      [-77.393802, 38.852984],\n      [-77.393126, 38.853114],\n      [-77.392725, 38.85318],\n      [-77.392095, 38.853297],\n      [-77.391904, 38.853339],\n      [-77.391134, 38.853478],\n      [-77.389836, 38.853723],\n      [-77.389215, 38.853845],\n      [-77.38892, 38.853895],\n      [-77.388716, 38.853941],\n      [-77.388024, 38.854062],\n      [-77.387165, 38.854196],\n      [-77.386771, 38.854162],\n      [-77.386529, 38.854111],\n      [-77.386343, 38.854055],\n      [-77.386187, 38.853987],\n      [-77.386127, 38.853954],\n      [-77.386079, 38.85392],\n      [-77.385986, 38.853839],\n      [-77.385938, 38.853785],\n      [-77.385904, 38.853738],\n      [-77.385849, 38.853638],\n      [-77.385829, 38.853585],\n      [-77.385812, 38.853521],\n      [-77.3858, 38.853402],\n      [-77.385805, 38.853336],\n      [-77.385817, 38.853271],\n      [-77.38586, 38.853155],\n      [-77.385888, 38.853105],\n      [-77.385929, 38.853047],\n      [-77.38601, 38.852959],\n      [-77.386068, 38.85291],\n      [-77.386119, 38.852873],\n      [-77.386233, 38.85281],\n      [-77.386292, 38.852784],\n      [-77.386367, 38.852757],\n      [-77.386444, 38.852736],\n      [-77.386551, 38.852715],\n      [-77.386695, 38.852705],\n      [-77.38684, 38.852711],\n      [-77.386899, 38.85272],\n      [-77.386985, 38.852739],\n      [-77.387131, 38.852784],\n      [-77.387234, 38.852827],\n      [-77.387327, 38.852872],\n      [-77.387501, 38.852977],\n      [-77.387596, 38.853046],\n      [-77.387689, 38.853125],\n      [-77.387869, 38.853301],\n      [-77.388005, 38.8535],\n      [-77.388211, 38.853861],\n      [-77.388248, 38.853958],\n      [-77.38834, 38.854202],\n      [-77.388434, 38.854509],\n      [-77.388512, 38.85483],\n      [-77.388556, 38.855045],\n      [-77.388563, 38.855077],\n      [-77.388615, 38.855398],\n      [-77.38864, 38.855726],\n      [-77.388657, 38.85606],\n      [-77.388632, 38.856494],\n      [-77.388606, 38.856728],\n      [-77.388546, 38.857062],\n      [-77.388494, 38.857283],\n      [-77.388383, 38.85759],\n      [-77.388245, 38.857898],\n      [-77.387962, 38.858392],\n      [-77.387722, 38.858713],\n      [-77.387587, 38.858842],\n      [-77.387448, 38.858992],\n      [-77.38738, 38.859049],\n      [-77.387049, 38.859315],\n      [-77.387001, 38.859355],\n      [-77.386572, 38.859616],\n      [-77.386057, 38.859876],\n      [-77.385696, 38.860037],\n      [-77.385104, 38.860297],\n      [-77.384246, 38.860678],\n      [-77.383311, 38.861091],\n      [-77.382484, 38.861549],\n      [-77.381927, 38.861964],\n      [-77.381649, 38.862271],\n      [-77.381472, 38.862656],\n      [-77.38114, 38.86254],\n      [-77.380676, 38.862336],\n      [-77.380373, 38.862167],\n      [-77.380144, 38.862016],\n      [-77.379932, 38.861857],\n      [-77.379724, 38.861669],\n      [-77.379541, 38.861495],\n      [-77.379299, 38.861256],\n      [-77.379174, 38.86114],\n      [-77.378963, 38.86097],\n      [-77.378779, 38.860822],\n      [-77.378622, 38.860715],\n      [-77.378375, 38.860584],\n      [-77.37825, 38.860526],\n      [-77.377901, 38.860354],\n      [-77.377674, 38.860258],\n      [-77.377503, 38.860194],\n      [-77.376982, 38.860031],\n      [-77.376724, 38.859968],\n      [-77.376465, 38.859908],\n      [-77.376139, 38.859843],\n      [-77.375957, 38.859809],\n      [-77.375449, 38.859704],\n      [-77.37477, 38.859591],\n      [-77.373992, 38.859482],\n      [-77.373385, 38.859411],\n      [-77.373319, 38.859405],\n      [-77.371684, 38.859251],\n      [-77.371331, 38.859226],\n      [-77.37112, 38.859211],\n      [-77.371099, 38.85942],\n      [-77.371098, 38.859619],\n      [-77.371033, 38.860102],\n      [-77.370993, 38.860407],\n      [-77.370953, 38.86073],\n      [-77.370894, 38.86095],\n      [-77.370816, 38.861165],\n      [-77.370757, 38.861296],\n      [-77.370665, 38.861443],\n      [-77.370575, 38.861587],\n      [-77.370384, 38.861875],\n      [-77.370116, 38.862301],\n      [-77.369869, 38.862675],\n      [-77.369695, 38.862937],\n      [-77.369553, 38.863149],\n      [-77.369282, 38.863562],\n      [-77.369075, 38.863878],\n      [-77.369003, 38.863978],\n      [-77.368943, 38.864053],\n      [-77.368872, 38.864143],\n      [-77.368754, 38.864281],\n      [-77.368648, 38.864383],\n      [-77.368548, 38.86448],\n      [-77.368413, 38.864611],\n      [-77.368244, 38.864751],\n      [-77.368139, 38.86483],\n      [-77.368096, 38.864859],\n      [-77.367962, 38.864949],\n      [-77.367753, 38.865087],\n      [-77.36752, 38.865221],\n      [-77.36716, 38.865425],\n      [-77.366916, 38.865565],\n      [-77.366749, 38.865664],\n      [-77.366693, 38.865696],\n      [-77.366603, 38.865757],\n      [-77.36621, 38.865941],\n      [-77.365964, 38.866096],\n      [-77.365677, 38.866275],\n      [-77.365412, 38.86648],\n      [-77.365205, 38.866666],\n      [-77.365092, 38.866802],\n      [-77.364926, 38.867027],\n      [-77.364819, 38.867215],\n      [-77.364795, 38.867271],\n      [-77.364687, 38.867526],\n      [-77.364631, 38.867731],\n      [-77.364602, 38.867885],\n      [-77.364585, 38.868103],\n      [-77.364599, 38.86833],\n      [-77.364602, 38.868416],\n      [-77.364653, 38.868646],\n      [-77.364749, 38.868903],\n      [-77.364915, 38.869232],\n      [-77.365031, 38.869489],\n      [-77.36519, 38.869811],\n      [-77.365353, 38.870145],\n      [-77.365541, 38.870577],\n      [-77.365608, 38.870714],\n      [-77.36564, 38.87078],\n      [-77.365767, 38.871048],\n      [-77.365858, 38.871232],\n      [-77.365914, 38.871335],\n      [-77.366032, 38.871546],\n      [-77.366196, 38.871805],\n      [-77.366355, 38.872046],\n      [-77.366507, 38.872259],\n      [-77.366678, 38.872501],\n      [-77.366856, 38.872754],\n      [-77.366963, 38.872925],\n      [-77.367022, 38.873039],\n      [-77.367081, 38.873163],\n      [-77.367145, 38.873344],\n      [-77.367182, 38.87346],\n      [-77.367204, 38.873534],\n      [-77.367233, 38.873695],\n      [-77.36726, 38.873889],\n      [-77.367273, 38.874003],\n      [-77.367165, 38.874012],\n      [-77.366994, 38.874012],\n      [-77.366779, 38.873999],\n      [-77.366666, 38.873986],\n      [-77.366501, 38.873968],\n      [-77.366313, 38.873934],\n      [-77.366155, 38.873897],\n      [-77.365932, 38.873832],\n      [-77.36562, 38.873728],\n      [-77.365375, 38.873647],\n      [-77.36552, 38.873752],\n      [-77.365645, 38.873824],\n      [-77.365759, 38.873875]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-length/test/in/route2.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"name\": null,\n    \"cmt\": null,\n    \"desc\": null,\n    \"src\": null,\n    \"link1_href\": null,\n    \"link1_text\": null,\n    \"link1_type\": null,\n    \"link2_href\": null,\n    \"link2_text\": null,\n    \"link2_type\": null,\n    \"number\": null,\n    \"type\": null\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-113.928988, 50.814121],\n      [-113.928993, 50.813067],\n      [-113.928994, 50.811043],\n      [-113.928995, 50.807418],\n      [-113.929029, 50.804989],\n      [-113.951995, 50.804953],\n      [-113.956813, 50.804931],\n      [-113.957629, 50.804917],\n      [-113.958021, 50.804876],\n      [-113.958575, 50.804779],\n      [-113.959011, 50.804687],\n      [-113.959367, 50.804572],\n      [-113.959858, 50.804414],\n      [-113.960433, 50.804102],\n      [-113.960932, 50.803769],\n      [-113.961563, 50.803306],\n      [-113.961754, 50.803166],\n      [-113.962486, 50.802753],\n      [-113.9641, 50.801549],\n      [-113.966048, 50.800154],\n      [-113.967597, 50.799082],\n      [-113.968657, 50.798289],\n      [-113.969382, 50.79779],\n      [-113.969303, 50.797653],\n      [-113.968833, 50.797177],\n      [-113.968399, 50.796832],\n      [-113.96652, 50.796071],\n      [-113.965325, 50.795579],\n      [-113.964608, 50.795229],\n      [-113.963373, 50.794321],\n      [-113.962094, 50.793355],\n      [-113.956995, 50.789049],\n      [-113.951125, 50.784098],\n      [-113.948573, 50.78194],\n      [-113.941011, 50.775626],\n      [-113.933724, 50.769538],\n      [-113.914584, 50.753577],\n      [-113.906521, 50.746803],\n      [-113.896774, 50.738614],\n      [-113.886275, 50.729779],\n      [-113.88594, 50.729474],\n      [-113.885307, 50.728898],\n      [-113.884903, 50.728477],\n      [-113.884523, 50.728028],\n      [-113.884201, 50.727599],\n      [-113.883986, 50.727298],\n      [-113.883696, 50.726863],\n      [-113.883482, 50.72648],\n      [-113.883314, 50.726156],\n      [-113.883153, 50.725767],\n      [-113.883094, 50.725646],\n      [-113.883031, 50.725465],\n      [-113.882906, 50.725155],\n      [-113.882792, 50.724718],\n      [-113.882641, 50.7241],\n      [-113.882584, 50.723735],\n      [-113.88255, 50.723367],\n      [-113.882523, 50.72258],\n      [-113.882495, 50.717709],\n      [-113.882486, 50.713302],\n      [-113.882476, 50.712125],\n      [-113.882468, 50.702531],\n      [-113.882456, 50.699815],\n      [-113.882434, 50.698229],\n      [-113.882445, 50.693791],\n      [-113.882419, 50.692602],\n      [-113.882412, 50.692077],\n      [-113.882405, 50.691705],\n      [-113.882365, 50.691331],\n      [-113.882289, 50.690878],\n      [-113.882163, 50.690282],\n      [-113.882074, 50.689985],\n      [-113.881908, 50.689517],\n      [-113.881705, 50.689095],\n      [-113.881622, 50.688959],\n      [-113.881501, 50.688721],\n      [-113.881281, 50.688347],\n      [-113.88097, 50.687826],\n      [-113.880715, 50.687491],\n      [-113.880385, 50.687085],\n      [-113.878859, 50.685206],\n      [-113.877456, 50.68348],\n      [-113.875929, 50.68157],\n      [-113.873357, 50.67843],\n      [-113.871364, 50.675999],\n      [-113.869142, 50.673289],\n      [-113.868358, 50.672328],\n      [-113.868037, 50.671943],\n      [-113.867467, 50.671232],\n      [-113.866987, 50.670734],\n      [-113.866668, 50.670424],\n      [-113.866296, 50.670141],\n      [-113.865816, 50.669814],\n      [-113.865451, 50.6696],\n      [-113.8651, 50.669419],\n      [-113.864667, 50.669203],\n      [-113.864079, 50.668945],\n      [-113.863436, 50.668716],\n      [-113.862804, 50.66849],\n      [-113.861739, 50.668114],\n      [-113.853421, 50.665144],\n      [-113.842891, 50.661554],\n      [-113.842171, 50.661197],\n      [-113.841049, 50.660571],\n      [-113.840156, 50.659997],\n      [-113.839716, 50.65961],\n      [-113.839157, 50.659132],\n      [-113.838847, 50.658805],\n      [-113.838358, 50.658284],\n      [-113.837938, 50.657723],\n      [-113.837609, 50.657111],\n      [-113.837268, 50.656259],\n      [-113.83703, 50.655665],\n      [-113.836937, 50.654919],\n      [-113.836909, 50.654144],\n      [-113.836859, 50.650724],\n      [-113.836826, 50.647581],\n      [-113.836828, 50.646677],\n      [-113.836945, 50.631237],\n      [-113.836945, 50.630338],\n      [-113.83681, 50.620833],\n      [-113.836809, 50.615002],\n      [-113.836748, 50.614363],\n      [-113.836695, 50.613902],\n      [-113.836544, 50.613327],\n      [-113.836395, 50.612865],\n      [-113.836165, 50.612347],\n      [-113.835974, 50.611908],\n      [-113.835688, 50.611368],\n      [-113.834199, 50.609116],\n      [-113.831975, 50.605815],\n      [-113.830597, 50.603738],\n      [-113.830194, 50.603006],\n      [-113.829862, 50.60236],\n      [-113.829623, 50.601865],\n      [-113.829361, 50.601178],\n      [-113.829199, 50.600699],\n      [-113.829001, 50.600003],\n      [-113.828688, 50.598264],\n      [-113.828653, 50.597525],\n      [-113.828653, 50.596741],\n      [-113.828659, 50.589493],\n      [-113.828615, 50.584393],\n      [-113.82855, 50.57625],\n      [-113.82857, 50.572186],\n      [-113.82858, 50.57189],\n      [-113.828436, 50.567929],\n      [-113.828262, 50.565198],\n      [-113.82828, 50.550181],\n      [-113.82829, 50.541809],\n      [-113.828291, 50.541417],\n      [-113.828359, 50.484565],\n      [-113.828388, 50.473188],\n      [-113.82839, 50.426319],\n      [-113.828391, 50.410937],\n      [-113.828495, 50.409031],\n      [-113.828495, 50.408255],\n      [-113.828326, 50.404708],\n      [-113.827868, 50.402523],\n      [-113.827189, 50.400367],\n      [-113.82573, 50.397464],\n      [-113.824909, 50.396393],\n      [-113.823811, 50.394869],\n      [-113.82128, 50.391895],\n      [-113.801481, 50.376398],\n      [-113.797907, 50.371872],\n      [-113.796297, 50.369858],\n      [-113.795351, 50.368139],\n      [-113.790726, 50.359724],\n      [-113.789384, 50.358382],\n      [-113.78784, 50.357509],\n      [-113.782077, 50.355219],\n      [-113.781868, 50.355163],\n      [-113.780696, 50.354643],\n      [-113.779832, 50.354058],\n      [-113.779376, 50.353709],\n      [-113.779034, 50.353447],\n      [-113.777779, 50.352208],\n      [-113.776476, 50.350971],\n      [-113.775669, 50.350156],\n      [-113.774903, 50.349363],\n      [-113.774528, 50.349008],\n      [-113.774139, 50.348641],\n      [-113.773752, 50.348267],\n      [-113.773367, 50.347894],\n      [-113.772991, 50.347521],\n      [-113.77261, 50.347144],\n      [-113.77224, 50.346771],\n      [-113.771866, 50.346393],\n      [-113.771491, 50.346021],\n      [-113.771101, 50.345634],\n      [-113.770724, 50.345257],\n      [-113.770334, 50.344868],\n      [-113.769256, 50.343852],\n      [-113.767134, 50.341669],\n      [-113.764647, 50.339182],\n      [-113.764438, 50.338973],\n      [-113.761597, 50.336333],\n      [-113.758593, 50.33458],\n      [-113.755546, 50.333429],\n      [-113.751856, 50.33269],\n      [-113.745118, 50.331594],\n      [-113.742286, 50.330717],\n      [-113.739453, 50.329347],\n      [-113.731213, 50.32247],\n      [-113.723532, 50.315976],\n      [-113.722158, 50.313619],\n      [-113.718768, 50.300682],\n      [-113.714948, 50.295611],\n      [-113.70452, 50.282916],\n      [-113.688985, 50.273536],\n      [-113.671647, 50.26314],\n      [-113.665976, 50.259608],\n      [-113.661862, 50.256884],\n      [-113.66006, 50.254964],\n      [-113.659379, 50.253877],\n      [-113.658858, 50.252741],\n      [-113.658676, 50.251733],\n      [-113.656669, 50.241627],\n      [-113.656154, 50.237592],\n      [-113.655983, 50.234435],\n      [-113.656026, 50.226446],\n      [-113.656001, 50.222848],\n      [-113.655983, 50.212634],\n      [-113.655983, 50.198956],\n      [-113.656026, 50.187774],\n      [-113.655725, 50.180189],\n      [-113.654781, 50.177056],\n      [-113.650834, 50.16488],\n      [-113.648988, 50.159931],\n      [-113.648171, 50.158673],\n      [-113.647041, 50.157055],\n      [-113.642675, 50.151639],\n      [-113.639814, 50.147556],\n      [-113.634175, 50.135735],\n      [-113.632251, 50.131741],\n      [-113.620363, 50.106626],\n      [-113.619376, 50.104527],\n      [-113.61384, 50.092744],\n      [-113.608561, 50.081675],\n      [-113.606581, 50.077494],\n      [-113.603669, 50.071347],\n      [-113.596202, 50.055589],\n      [-113.589593, 50.041645],\n      [-113.585973, 50.034075],\n      [-113.583284, 50.028469],\n      [-113.578879, 50.019214],\n      [-113.577072, 50.015416],\n      [-113.576933, 50.015123],\n      [-113.575461, 50.01195],\n      [-113.56968, 49.999485],\n      [-113.565276, 49.990109],\n      [-113.562856, 49.984972],\n      [-113.558388, 49.975529],\n      [-113.556763, 49.972084],\n      [-113.551497, 49.960982],\n      [-113.550282, 49.958226],\n      [-113.543115, 49.943177],\n      [-113.537579, 49.93141],\n      [-113.531657, 49.91895],\n      [-113.528868, 49.913112],\n      [-113.52852, 49.912237],\n      [-113.528209, 49.911247],\n      [-113.528013, 49.910313],\n      [-113.527878, 49.909552],\n      [-113.527877, 49.908805],\n      [-113.528009, 49.904496],\n      [-113.527999, 49.902765],\n      [-113.527923, 49.890232],\n      [-113.527923, 49.878148],\n      [-113.527237, 49.875493],\n      [-113.526537, 49.873052],\n      [-113.52449, 49.865701],\n      [-113.524447, 49.856267],\n      [-113.52449, 49.841269],\n      [-113.524447, 49.826764],\n      [-113.52437, 49.815239],\n      [-113.524361, 49.813862],\n      [-113.524357, 49.801088],\n      [-113.524347, 49.798401],\n      [-113.524359, 49.795748],\n      [-113.524362, 49.795059],\n      [-113.524404, 49.785441],\n      [-113.524345, 49.778892],\n      [-113.524361, 49.771945],\n      [-113.523632, 49.77031],\n      [-113.522087, 49.769007],\n      [-113.520199, 49.768287],\n      [-113.514319, 49.76643],\n      [-113.510629, 49.764933],\n      [-113.50771, 49.763048],\n      [-113.494964, 49.752901],\n      [-113.479476, 49.742059],\n      [-113.460012, 49.728293],\n      [-113.455597, 49.725235],\n      [-113.454572, 49.72442],\n      [-113.45366, 49.723598],\n      [-113.452976, 49.722915],\n      [-113.45129, 49.720944],\n      [-113.450256, 49.719782],\n      [-113.447746, 49.716986],\n      [-113.447289, 49.716417],\n      [-113.443365, 49.71203],\n      [-113.443141, 49.711789],\n      [-113.442819, 49.711601],\n      [-113.442606, 49.711479],\n      [-113.44236, 49.711374],\n      [-113.442103, 49.711279],\n      [-113.441837, 49.711197],\n      [-113.441458, 49.711124],\n      [-113.441117, 49.711086],\n      [-113.440779, 49.711071],\n      [-113.440369, 49.71109],\n      [-113.439978, 49.71114],\n      [-113.439697, 49.711196],\n      [-113.439397, 49.711273],\n      [-113.439102, 49.71139],\n      [-113.438862, 49.711498],\n      [-113.438591, 49.711635],\n      [-113.438391, 49.711766],\n      [-113.438075, 49.712061],\n      [-113.437745, 49.712489],\n      [-113.43745, 49.712915],\n      [-113.43721, 49.713212],\n      [-113.436932, 49.713495],\n      [-113.436629, 49.713751],\n      [-113.436287, 49.713988],\n      [-113.435908, 49.714204],\n      [-113.435538, 49.714393],\n      [-113.431814, 49.715951],\n      [-113.423934, 49.718913],\n      [-113.423148, 49.719208],\n      [-113.419515, 49.720574],\n      [-113.418553, 49.720884],\n      [-113.417353, 49.721191],\n      [-113.416622, 49.721378],\n      [-113.415189, 49.721933],\n      [-113.414887, 49.722092],\n      [-113.414553, 49.722328],\n      [-113.414204, 49.722586],\n      [-113.413109, 49.723458],\n      [-113.412313, 49.724209],\n      [-113.412068, 49.724385],\n      [-113.411871, 49.724508],\n      [-113.41169, 49.724585],\n      [-113.411456, 49.724665],\n      [-113.411213, 49.724721],\n      [-113.410939, 49.724758],\n      [-113.410649, 49.724769],\n      [-113.408706, 49.724761],\n      [-113.405913, 49.724764],\n      [-113.403119, 49.724754],\n      [-113.400316, 49.724758],\n      [-113.397541, 49.724759],\n      [-113.396042, 49.724769],\n      [-113.395455, 49.724758],\n      [-113.395172, 49.724734],\n      [-113.394938, 49.724709],\n      [-113.394729, 49.724678],\n      [-113.394467, 49.724619],\n      [-113.394209, 49.724544],\n      [-113.393974, 49.724469],\n      [-113.393696, 49.724366],\n      [-113.393468, 49.724249],\n      [-113.393241, 49.72412],\n      [-113.393012, 49.723965],\n      [-113.39289, 49.723864],\n      [-113.391771, 49.722807],\n      [-113.391196, 49.722209],\n      [-113.390266, 49.721242],\n      [-113.389586, 49.720567],\n      [-113.388246, 49.71917],\n      [-113.387068, 49.717968],\n      [-113.386688, 49.717602],\n      [-113.386617, 49.717518],\n      [-113.386398, 49.717254],\n      [-113.386209, 49.717057],\n      [-113.385914, 49.716751],\n      [-113.385697, 49.71658],\n      [-113.385459, 49.716404],\n      [-113.385223, 49.716267],\n      [-113.384941, 49.716121],\n      [-113.384654, 49.716013],\n      [-113.384337, 49.715925],\n      [-113.383953, 49.715848],\n      [-113.383617, 49.715803],\n      [-113.383303, 49.715777],\n      [-113.382948, 49.715769],\n      [-113.382593, 49.71579],\n      [-113.382269, 49.715822],\n      [-113.381923, 49.715886],\n      [-113.381566, 49.715981],\n      [-113.381244, 49.716092],\n      [-113.380957, 49.716219],\n      [-113.380551, 49.716436],\n      [-113.380035, 49.71673],\n      [-113.379484, 49.717081],\n      [-113.378419, 49.71777],\n      [-113.377851, 49.718172],\n      [-113.376955, 49.718849],\n      [-113.376472, 49.719244],\n      [-113.375953, 49.719695],\n      [-113.375418, 49.720164],\n      [-113.374752, 49.720812],\n      [-113.373389, 49.722261],\n      [-113.372553, 49.723172],\n      [-113.371753, 49.724069],\n      [-113.371091, 49.724816],\n      [-113.370703, 49.725251],\n      [-113.370292, 49.725659],\n      [-113.36989, 49.726068],\n      [-113.369354, 49.726543],\n      [-113.368728, 49.727064],\n      [-113.368135, 49.727526],\n      [-113.367567, 49.727939],\n      [-113.366419, 49.728699],\n      [-113.366091, 49.728877],\n      [-113.365827, 49.729022],\n      [-113.365501, 49.729201],\n      [-113.362951, 49.730439],\n      [-113.358468, 49.732139],\n      [-113.3397, 49.739588],\n      [-113.335475, 49.741364],\n      [-113.327488, 49.744425],\n      [-113.318052, 49.748192],\n      [-113.313869, 49.749882],\n      [-113.31224, 49.750619],\n      [-113.310651, 49.75165],\n      [-113.307682, 49.753879],\n      [-113.302921, 49.757409],\n      [-113.297078, 49.761832],\n      [-113.293465, 49.764507],\n      [-113.274088, 49.778989],\n      [-113.273227, 49.779697],\n      [-113.272213, 49.780484],\n      [-113.270309, 49.781807],\n      [-113.269287, 49.782542],\n      [-113.268506, 49.783052],\n      [-113.267549, 49.783577],\n      [-113.266355, 49.784155],\n      [-113.264867, 49.784696],\n      [-113.26421, 49.78488],\n      [-113.263279, 49.785126],\n      [-113.262406, 49.785321],\n      [-113.261535, 49.785468],\n      [-113.260247, 49.785632],\n      [-113.2584, 49.785752],\n      [-113.253189, 49.785761],\n      [-113.2503, 49.785759],\n      [-113.246741, 49.785753],\n      [-113.243803, 49.785748],\n      [-113.24168, 49.785746],\n      [-113.239441, 49.785743],\n      [-113.235416, 49.785738],\n      [-113.232546, 49.785734],\n      [-113.230542, 49.78573],\n      [-113.207916, 49.785665],\n      [-113.188962, 49.785585],\n      [-113.187421, 49.785394],\n      [-113.185955, 49.785084],\n      [-113.182069, 49.784248],\n      [-113.178433, 49.783545],\n      [-113.175537, 49.783555],\n      [-113.172403, 49.784002],\n      [-113.169876, 49.784514],\n      [-113.165425, 49.785057],\n      [-113.162661, 49.785308],\n      [-113.158491, 49.785468],\n      [-113.154009, 49.785249],\n      [-113.150706, 49.7849],\n      [-113.138727, 49.78387],\n      [-113.137918, 49.7838],\n      [-113.132484, 49.783537],\n      [-113.127139, 49.783666],\n      [-113.121522, 49.784134],\n      [-113.116401, 49.784873],\n      [-113.108878, 49.786479],\n      [-113.10643, 49.787036],\n      [-113.100519, 49.78837],\n      [-113.099817, 49.78851],\n      [-113.099069, 49.788664],\n      [-113.098414, 49.788796],\n      [-113.097678, 49.788933],\n      [-113.096947, 49.789058],\n      [-113.096124, 49.78919],\n      [-113.095087, 49.789365],\n      [-113.093946, 49.789519],\n      [-113.092851, 49.789655],\n      [-113.091995, 49.789773],\n      [-113.091108, 49.78988],\n      [-113.090105, 49.789981],\n      [-113.089148, 49.790064],\n      [-113.088464, 49.790125],\n      [-113.087728, 49.790181],\n      [-113.08695, 49.790229],\n      [-113.08621, 49.790281],\n      [-113.085391, 49.790327],\n      [-113.084622, 49.790364],\n      [-113.083774, 49.790396],\n      [-113.082731, 49.790426],\n      [-113.081849, 49.790441],\n      [-113.080915, 49.790449],\n      [-113.080041, 49.790455],\n      [-113.079132, 49.790458],\n      [-113.078156, 49.790437],\n      [-113.077306, 49.790416],\n      [-113.076308, 49.790386],\n      [-113.075035, 49.79033],\n      [-113.073984, 49.790268],\n      [-113.073014, 49.790204],\n      [-113.072411, 49.790162],\n      [-113.071942, 49.790123],\n      [-113.069874, 49.789921],\n      [-113.06869, 49.789793],\n      [-113.067583, 49.789667],\n      [-113.066892, 49.789578],\n      [-113.066126, 49.789472],\n      [-113.064972, 49.789301],\n      [-113.04876, 49.786854],\n      [-113.048, 49.78674],\n      [-113.047462, 49.78667],\n      [-113.046933, 49.786601],\n      [-113.046365, 49.786543],\n      [-113.041994, 49.786136],\n      [-113.038418, 49.786047],\n      [-113.028911, 49.786062],\n      [-113.013026, 49.786042],\n      [-113.003977, 49.786038],\n      [-113.002681, 49.785962],\n      [-113.001644, 49.785864],\n      [-113.00048, 49.785713],\n      [-112.999756, 49.785611],\n      [-112.9987, 49.785408],\n      [-112.997454, 49.785132],\n      [-112.995534, 49.784581],\n      [-112.99125, 49.783007],\n      [-112.98295, 49.779625],\n      [-112.980557, 49.778522],\n      [-112.979018, 49.777554],\n      [-112.976341, 49.775651],\n      [-112.973797, 49.773044],\n      [-112.965769, 49.764644],\n      [-112.960895, 49.75933],\n      [-112.960092, 49.758465],\n      [-112.959726, 49.75808],\n      [-112.959447, 49.757828],\n      [-112.959069, 49.757507],\n      [-112.958709, 49.757166],\n      [-112.958281, 49.756793],\n      [-112.95762, 49.756294],\n      [-112.956931, 49.755799],\n      [-112.956159, 49.755282],\n      [-112.955682, 49.754998],\n      [-112.955151, 49.754703],\n      [-112.952858, 49.753509],\n      [-112.949354, 49.752075],\n      [-112.94544, 49.749962],\n      [-112.938188, 49.743931],\n      [-112.931304, 49.738228],\n      [-112.926731, 49.73422],\n      [-112.925384, 49.732989],\n      [-112.924479, 49.731925],\n      [-112.923468, 49.730575],\n      [-112.922298, 49.729055],\n      [-112.921036, 49.7277],\n      [-112.918917, 49.725859],\n      [-112.918155, 49.725203],\n      [-112.916619, 49.723846],\n      [-112.915487, 49.723018],\n      [-112.915163, 49.72283],\n      [-112.914796, 49.722631],\n      [-112.914432, 49.722464],\n      [-112.914031, 49.722286],\n      [-112.913669, 49.722145],\n      [-112.913246, 49.722004],\n      [-112.912907, 49.721891],\n      [-112.912605, 49.721797],\n      [-112.912248, 49.721697],\n      [-112.911203, 49.721427],\n      [-112.910101, 49.721135],\n      [-112.906937, 49.720299],\n      [-112.903215, 49.719342],\n      [-112.900165, 49.718558],\n      [-112.897476, 49.717852],\n      [-112.895936, 49.717459],\n      [-112.895282, 49.717281],\n      [-112.894243, 49.71701],\n      [-112.893141, 49.716728],\n      [-112.892426, 49.716529],\n      [-112.89165, 49.716338],\n      [-112.891198, 49.71622],\n      [-112.890633, 49.716083],\n      [-112.889897, 49.715934],\n      [-112.889174, 49.715796],\n      [-112.888532, 49.715689],\n      [-112.887541, 49.715558],\n      [-112.88613, 49.71536],\n      [-112.885501, 49.715271],\n      [-112.884833, 49.715175],\n      [-112.884308, 49.715088],\n      [-112.883816, 49.71495],\n      [-112.883277, 49.714832],\n      [-112.882696, 49.714691],\n      [-112.88207, 49.714542],\n      [-112.881531, 49.714385],\n      [-112.881025, 49.714222],\n      [-112.880522, 49.714039],\n      [-112.879986, 49.713834],\n      [-112.879529, 49.71365],\n      [-112.87903, 49.713431],\n      [-112.878502, 49.713173],\n      [-112.877609, 49.712649],\n      [-112.875259, 49.711284],\n      [-112.873228, 49.710141],\n      [-112.872763, 49.709872],\n      [-112.87224, 49.709593],\n      [-112.871848, 49.709384],\n      [-112.871432, 49.709188],\n      [-112.871061, 49.709022],\n      [-112.870716, 49.708873],\n      [-112.870311, 49.708723],\n      [-112.869954, 49.708592],\n      [-112.869443, 49.708436],\n      [-112.868983, 49.708311],\n      [-112.868462, 49.708183],\n      [-112.86782, 49.708055],\n      [-112.867368, 49.707982],\n      [-112.866939, 49.707916],\n      [-112.86545, 49.707716],\n      [-112.861762, 49.707191],\n      [-112.86017, 49.706981],\n      [-112.85809, 49.706677],\n      [-112.85777, 49.706622],\n      [-112.857467, 49.706553],\n      [-112.857076, 49.706452],\n      [-112.856698, 49.706338],\n      [-112.854212, 49.705528],\n      [-112.85381, 49.705386],\n      [-112.853466, 49.70523],\n      [-112.853137, 49.705049],\n      [-112.852839, 49.704853],\n      [-112.851852, 49.704221],\n      [-112.851516, 49.704031],\n      [-112.851207, 49.703872],\n      [-112.850867, 49.70373],\n      [-112.850433, 49.703565],\n      [-112.84992, 49.703388],\n      [-112.847903, 49.702792],\n      [-112.845724, 49.702167],\n      [-112.844077, 49.701628],\n      [-112.8432, 49.701369],\n      [-112.842649, 49.701218],\n      [-112.842201, 49.701114],\n      [-112.841728, 49.701025],\n      [-112.840794, 49.700856],\n      [-112.838125, 49.700426],\n      [-112.834609, 49.699873],\n      [-112.832064, 49.699465],\n      [-112.828981, 49.698964],\n      [-112.828552, 49.698904],\n      [-112.827826, 49.698813],\n      [-112.827096, 49.698728],\n      [-112.826436, 49.698665],\n      [-112.825387, 49.6986],\n      [-112.824515, 49.698555],\n      [-112.823879, 49.698527],\n      [-112.822719, 49.698465],\n      [-112.820041, 49.698338],\n      [-112.818601, 49.69826],\n      [-112.817659, 49.698214],\n      [-112.817451, 49.698208],\n      [-112.816791, 49.698174],\n      [-112.81589, 49.698112],\n      [-112.814861, 49.698029],\n      [-112.814224, 49.697963],\n      [-112.813253, 49.697849],\n      [-112.813147, 49.697836],\n      [-112.811952, 49.697672],\n      [-112.811842, 49.697656],\n      [-112.811502, 49.697615],\n      [-112.811227, 49.697581],\n      [-112.810773, 49.697561],\n      [-112.810352, 49.69755],\n      [-112.810002, 49.697537],\n      [-112.809403, 49.697532],\n      [-112.806575, 49.697613],\n      [-112.805437, 49.69765],\n      [-112.804522, 49.697685],\n      [-112.80393, 49.697707],\n      [-112.80238, 49.69777],\n      [-112.802025, 49.697788],\n      [-112.801625, 49.697812],\n      [-112.800653, 49.697888],\n      [-112.799723, 49.697967],\n      [-112.79867, 49.698052],\n      [-112.798046, 49.698084],\n      [-112.797631, 49.698102],\n      [-112.797077, 49.698117],\n      [-112.796376, 49.698135],\n      [-112.79554, 49.698135],\n      [-112.794414, 49.698135],\n      [-112.793544, 49.698131],\n      [-112.788404, 49.698111],\n      [-112.787759, 49.698108],\n      [-112.787623, 49.698109],\n      [-112.786794, 49.698114],\n      [-112.785574, 49.698121],\n      [-112.784545, 49.69817],\n      [-112.784282, 49.698206],\n      [-112.783264, 49.698348],\n      [-112.782977, 49.69837],\n      [-112.782674, 49.69837],\n      [-112.782377, 49.69836],\n      [-112.781976, 49.698324],\n      [-112.781573, 49.698283],\n      [-112.780374, 49.698174],\n      [-112.779856, 49.698084],\n      [-112.77969, 49.698039],\n      [-112.779534, 49.697963],\n      [-112.779416, 49.697879],\n      [-112.779336, 49.697779],\n      [-112.779293, 49.697678],\n      [-112.779266, 49.697588],\n      [-112.779277, 49.697432],\n      [-112.779309, 49.697054],\n      [-112.779557, 49.695985],\n      [-112.779657, 49.695544],\n      [-112.779736, 49.695225],\n      [-112.779761, 49.695101],\n      [-112.779809, 49.694922],\n      [-112.779952, 49.69441],\n      [-112.780019, 49.694125],\n      [-112.780058, 49.69387],\n      [-112.780085, 49.693604],\n      [-112.78011, 49.693292],\n      [-112.780165, 49.692652],\n      [-112.780169, 49.692372],\n      [-112.780165, 49.692154],\n      [-112.780164, 49.692098],\n      [-112.780144, 49.691862],\n      [-112.780143, 49.691843],\n      [-112.780133, 49.69176],\n      [-112.780037, 49.691006],\n      [-112.779822, 49.689657],\n      [-112.77979, 49.689308],\n      [-112.779748, 49.688889],\n      [-112.779749, 49.688478],\n      [-112.779739, 49.688031],\n      [-112.779748, 49.687622],\n      [-112.779769, 49.687159],\n      [-112.779816, 49.686494],\n      [-112.779896, 49.685531],\n      [-112.779868, 49.68512],\n      [-112.779875, 49.684881],\n      [-112.779863, 49.684535],\n      [-112.77986, 49.684358],\n      [-112.779847, 49.684121],\n      [-112.779816, 49.683702],\n      [-112.779801, 49.683613],\n      [-112.779746, 49.683344],\n      [-112.779688, 49.682957],\n      [-112.779596, 49.68252],\n      [-112.779542, 49.68228],\n      [-112.7794, 49.681732],\n      [-112.779248, 49.681225],\n      [-112.779016, 49.680478],\n      [-112.778857, 49.679737],\n      [-112.778724, 49.678803],\n      [-112.778685, 49.678481],\n      [-112.77867, 49.678161],\n      [-112.778679, 49.677477],\n      [-112.778716, 49.676815],\n      [-112.77879, 49.676373],\n      [-112.778793, 49.676281],\n      [-112.778809, 49.67613],\n      [-112.778826, 49.675962],\n      [-112.779009, 49.67502],\n      [-112.779283, 49.674077],\n      [-112.779324, 49.67372],\n      [-112.779398, 49.673084],\n      [-112.779441, 49.672708],\n      [-112.779445, 49.672624],\n      [-112.779457, 49.6724],\n      [-112.779474, 49.670433],\n      [-112.779525, 49.669583],\n      [-112.779531, 49.668796],\n      [-112.779522, 49.66867],\n      [-112.779234, 49.66867],\n      [-112.778749, 49.66867],\n      [-112.773523, 49.668658],\n      [-112.769369, 49.668649],\n      [-112.763756, 49.668637],\n      [-112.7565, 49.668622],\n      [-112.75294, 49.668604],\n      [-112.752507, 49.668609],\n      [-112.751647, 49.668588],\n      [-112.750485, 49.668477],\n      [-112.748828, 49.668137],\n      [-112.747424, 49.667643],\n      [-112.746405, 49.667117],\n      [-112.745658, 49.666544],\n      [-112.743059, 49.663524],\n      [-112.742076, 49.662492],\n      [-112.741004, 49.661674],\n      [-112.73773, 49.659519],\n      [-112.735465, 49.657989],\n      [-112.733655, 49.656859],\n      [-112.718533, 49.646941],\n      [-112.708401, 49.640314],\n      [-112.699223, 49.634317],\n      [-112.697367, 49.633097],\n      [-112.696977, 49.632838],\n      [-112.688059, 49.626979],\n      [-112.68302, 49.623675],\n      [-112.676625, 49.619483],\n      [-112.667074, 49.613228],\n      [-112.658988, 49.607908],\n      [-112.655248, 49.605484],\n      [-112.650972, 49.603234],\n      [-112.646487, 49.600778],\n      [-112.644902, 49.599632],\n      [-112.643248, 49.598383],\n      [-112.641103, 49.596798],\n      [-112.639355, 49.595616],\n      [-112.637, 49.594133],\n      [-112.627891, 49.588425],\n      [-112.602707, 49.572537],\n      [-112.600552, 49.571077],\n      [-112.598617, 49.5692],\n      [-112.59449, 49.564228],\n      [-112.593913, 49.5636],\n      [-112.593075, 49.562994],\n      [-112.592311, 49.562392],\n      [-112.591327, 49.561818],\n      [-112.589132, 49.56091],\n      [-112.585717, 49.559813],\n      [-112.580643, 49.558189],\n      [-112.579135, 49.557557],\n      [-112.577853, 49.55687],\n      [-112.576584, 49.555934],\n      [-112.573576, 49.55323],\n      [-112.570447, 49.550424],\n      [-112.569232, 49.549564],\n      [-112.567477, 49.548436],\n      [-112.556735, 49.541871],\n      [-112.550446, 49.538028],\n      [-112.546175, 49.535345],\n      [-112.543195, 49.53355],\n      [-112.541943, 49.532867],\n      [-112.522018, 49.522571],\n      [-112.51966, 49.521328],\n      [-112.515058, 49.518953],\n      [-112.512595, 49.517628],\n      [-112.51096, 49.516524],\n      [-112.50948, 49.515214],\n      [-112.508358, 49.513958],\n      [-112.507396, 49.512646],\n      [-112.504667, 49.506398],\n      [-112.503772, 49.504449],\n      [-112.502829, 49.502755],\n      [-112.502134, 49.501789],\n      [-112.500323, 49.499793],\n      [-112.498242, 49.497945],\n      [-112.491937, 49.492826],\n      [-112.472122, 49.477074],\n      [-112.46972, 49.475443],\n      [-112.458697, 49.468584],\n      [-112.452076, 49.464789],\n      [-112.441426, 49.458313],\n      [-112.440081, 49.457555],\n      [-112.439154, 49.45711],\n      [-112.437692, 49.456507],\n      [-112.428185, 49.452715],\n      [-112.42567, 49.451509],\n      [-112.421872, 49.448943],\n      [-112.416852, 49.445256],\n      [-112.415374, 49.444112],\n      [-112.413757, 49.443067],\n      [-112.41199, 49.442277],\n      [-112.408866, 49.441094],\n      [-112.403355, 49.439005],\n      [-112.400426, 49.437907],\n      [-112.395624, 49.436024],\n      [-112.393366, 49.43506],\n      [-112.391141, 49.43401],\n      [-112.389667, 49.433278],\n      [-112.387242, 49.431857],\n      [-112.380495, 49.427283],\n      [-112.377371, 49.425166],\n      [-112.370769, 49.420228],\n      [-112.369213, 49.419103],\n      [-112.368029, 49.418322],\n      [-112.366868, 49.417688],\n      [-112.365853, 49.417109],\n      [-112.364196, 49.416279],\n      [-112.358645, 49.413606],\n      [-112.345069, 49.40697],\n      [-112.313601, 49.391666],\n      [-112.293379, 49.381796],\n      [-112.280866, 49.375648],\n      [-112.275641, 49.37312],\n      [-112.27415, 49.372357],\n      [-112.272971, 49.371647],\n      [-112.272087, 49.371077],\n      [-112.271197, 49.370405],\n      [-112.270258, 49.369532],\n      [-112.269242, 49.36847],\n      [-112.263635, 49.361606],\n      [-112.261762, 49.359287],\n      [-112.252776, 49.348158],\n      [-112.236226, 49.327356],\n      [-112.231602, 49.321856],\n      [-112.231504, 49.32174],\n      [-112.22954, 49.319363],\n      [-112.227247, 49.316403],\n      [-112.224225, 49.312727],\n      [-112.22224, 49.310555],\n      [-112.216986, 49.304836],\n      [-112.215307, 49.3031],\n      [-112.213887, 49.301877],\n      [-112.213028, 49.301145],\n      [-112.204369, 49.294474],\n      [-112.201434, 49.291851],\n      [-112.200807, 49.291228],\n      [-112.200423, 49.290767],\n      [-112.200161, 49.290419],\n      [-112.199859, 49.289985],\n      [-112.199566, 49.2895],\n      [-112.199306, 49.289012],\n      [-112.199053, 49.288493],\n      [-112.198839, 49.287999],\n      [-112.198721, 49.287648],\n      [-112.198561, 49.28716],\n      [-112.198436, 49.286692],\n      [-112.198364, 49.286224],\n      [-112.198303, 49.285775],\n      [-112.198271, 49.285347],\n      [-112.198256, 49.282987],\n      [-112.198269, 49.279832],\n      [-112.197949, 49.277457],\n      [-112.196565, 49.273803],\n      [-112.189342, 49.264663],\n      [-112.187679, 49.262625],\n      [-112.187029, 49.261975],\n      [-112.185766, 49.260758],\n      [-112.185003, 49.259994],\n      [-112.184046, 49.259256],\n      [-112.182999, 49.258515],\n      [-112.181937, 49.257797],\n      [-112.180185, 49.2566],\n      [-112.179314, 49.25606],\n      [-112.178353, 49.255415],\n      [-112.177525, 49.254853],\n      [-112.176769, 49.254313],\n      [-112.176125, 49.253788],\n      [-112.174746, 49.252496],\n      [-112.173897, 49.251682],\n      [-112.173107, 49.250905],\n      [-112.153316, 49.231556],\n      [-112.145266, 49.223554],\n      [-112.137196, 49.215571],\n      [-112.13617, 49.214714],\n      [-112.134956, 49.213742],\n      [-112.134168, 49.213187],\n      [-112.132859, 49.212334],\n      [-112.13166, 49.211607],\n      [-112.12957, 49.210494],\n      [-112.126976, 49.209298],\n      [-112.123065, 49.207555],\n      [-112.121541, 49.206848],\n      [-112.120052, 49.206151],\n      [-112.118948, 49.205619],\n      [-112.117869, 49.205062],\n      [-112.11706, 49.204623],\n      [-112.115236, 49.203546],\n      [-112.112919, 49.201989],\n      [-112.111625, 49.201012],\n      [-112.109029, 49.198836],\n      [-112.106118, 49.195686],\n      [-112.105716, 49.195156],\n      [-112.10511, 49.194341],\n      [-112.102212, 49.189769],\n      [-112.099016, 49.184803],\n      [-112.097293, 49.182034],\n      [-112.09607, 49.179971],\n      [-112.093881, 49.176527],\n      [-112.093098, 49.175222],\n      [-112.092754, 49.174577],\n      [-112.092518, 49.174107],\n      [-112.092368, 49.173658],\n      [-112.092271, 49.173279],\n      [-112.092175, 49.172816],\n      [-112.092083, 49.172436],\n      [-112.092105, 49.171924],\n      [-112.092116, 49.171461],\n      [-112.092153, 49.170923],\n      [-112.092303, 49.169933],\n      [-112.092797, 49.166924],\n      [-112.093183, 49.164483],\n      [-112.093425, 49.163015],\n      [-112.094079, 49.159023],\n      [-112.094508, 49.156383],\n      [-112.094555, 49.155953],\n      [-112.094556, 49.155221],\n      [-112.094514, 49.154793],\n      [-112.094503, 49.154492],\n      [-112.094385, 49.153874],\n      [-112.094213, 49.153187],\n      [-112.094063, 49.152773],\n      [-112.093902, 49.152351],\n      [-112.093602, 49.151853],\n      [-112.093237, 49.151257],\n      [-112.092797, 49.15078],\n      [-112.092443, 49.150366],\n      [-112.09211, 49.150043],\n      [-112.09144, 49.149473],\n      [-112.090329, 49.148576],\n      [-112.087872, 49.146674],\n      [-112.085019, 49.144442],\n      [-112.08445, 49.144014],\n      [-112.083795, 49.143488],\n      [-112.083195, 49.142934],\n      [-112.082218, 49.142021],\n      [-112.081255, 49.140863],\n      [-112.080652, 49.140161],\n      [-112.079815, 49.139052],\n      [-112.079375, 49.138315],\n      [-112.078935, 49.137592],\n      [-112.078367, 49.136469],\n      [-112.077562, 49.134475],\n      [-112.07679, 49.132524],\n      [-112.076328, 49.131429],\n      [-112.07591, 49.130565],\n      [-112.075325, 49.129377],\n      [-112.074891, 49.128684],\n      [-112.074472, 49.128059],\n      [-112.073582, 49.12674],\n      [-112.072631, 49.125499],\n      [-112.071973, 49.124711],\n      [-112.071054, 49.123645],\n      [-112.069784, 49.122387],\n      [-112.068512, 49.121237],\n      [-112.066629, 49.119662],\n      [-112.062677, 49.116351],\n      [-112.055397, 49.110231],\n      [-112.054528, 49.109557],\n      [-112.053423, 49.108763],\n      [-112.052461, 49.108147],\n      [-112.045612, 49.103924],\n      [-112.04278, 49.102161],\n      [-112.042125, 49.101683],\n      [-112.041514, 49.101163],\n      [-112.040923, 49.100503],\n      [-112.040258, 49.099716],\n      [-112.039046, 49.09777],\n      [-112.036761, 49.094883],\n      [-112.034383, 49.091688],\n      [-112.032973, 49.089733],\n      [-112.032072, 49.088525],\n      [-112.031257, 49.087397],\n      [-112.027952, 49.082826],\n      [-112.025918, 49.080115],\n      [-112.023929, 49.077471],\n      [-112.021412, 49.07398],\n      [-112.01924, 49.070443],\n      [-112.016505, 49.066092],\n      [-112.014616, 49.062914],\n      [-112.010898, 49.056849],\n      [-112.010336, 49.056053],\n      [-112.009981, 49.05549],\n      [-112.009595, 49.055054],\n      [-112.008383, 49.053913],\n      [-112.004081, 49.049886],\n      [-112.003484, 49.049323],\n      [-112.002241, 49.048061],\n      [-112.000186, 49.046131],\n      [-111.998352, 49.044419],\n      [-111.997649, 49.043715],\n      [-111.997014, 49.042914],\n      [-111.996531, 49.042236],\n      [-111.996215, 49.041782],\n      [-111.995927, 49.041307],\n      [-111.995594, 49.040698],\n      [-111.995321, 49.040118],\n      [-111.994693, 49.038673],\n      [-111.994001, 49.037108],\n      [-111.992996, 49.034801],\n      [-111.992369, 49.033409],\n      [-111.99149, 49.031403],\n      [-111.99082, 49.029866],\n      [-111.990004, 49.02802],\n      [-111.98936, 49.026568],\n      [-111.988769, 49.025185],\n      [-111.988218, 49.023936],\n      [-111.987589, 49.022536],\n      [-111.987371, 49.021885],\n      [-111.987235, 49.021333],\n      [-111.987097, 49.020858],\n      [-111.986995, 49.020386],\n      [-111.98692, 49.019658],\n      [-111.986872, 49.018979],\n      [-111.986866, 49.017199],\n      [-111.986872, 49.015542],\n      [-111.98686, 49.013841],\n      [-111.986847, 49.01231],\n      [-111.98685, 49.011137],\n      [-111.986861, 49.010352],\n      [-111.986797, 49.009758],\n      [-111.986645, 49.009206],\n      [-111.986377, 49.008696],\n      [-111.986147, 49.008354],\n      [-111.985836, 49.007998],\n      [-111.985337, 49.007558],\n      [-111.984989, 49.007266],\n      [-111.984301, 49.006795],\n      [-111.983474, 49.00638],\n      [-111.982516, 49.005993],\n      [-111.981765, 49.005715],\n      [-111.980942, 49.005514],\n      [-111.980129, 49.005334],\n      [-111.979328, 49.005194],\n      [-111.978062, 49.005092],\n      [-111.976985, 49.005074],\n      [-111.974918, 49.005173],\n      [-111.973139, 49.005292],\n      [-111.97154, 49.00538],\n      [-111.969019, 49.005514],\n      [-111.967562, 49.005617],\n      [-111.966045, 49.005705],\n      [-111.96469, 49.005725],\n      [-111.963991, 49.005648],\n      [-111.96346, 49.005567],\n      [-111.96295, 49.005448],\n      [-111.962485, 49.005296],\n      [-111.962163, 49.005187],\n      [-111.961761, 49.005004],\n      [-111.961293, 49.004765],\n      [-111.960951, 49.004554],\n      [-111.960789, 49.004426],\n      [-111.960561, 49.004236],\n      [-111.960215, 49.003866],\n      [-111.959973, 49.003571],\n      [-111.959774, 49.003265],\n      [-111.959681, 49.003043],\n      [-111.959581, 49.002794],\n      [-111.95951, 49.002452],\n      [-111.959584, 49.002087],\n      [-111.959768, 49.001731],\n      [-111.96008, 49.00139],\n      [-111.960323, 49.001097],\n      [-111.960993, 49.000276],\n      [-111.961147, 48.999913],\n      [-111.961177, 48.999675],\n      [-111.961154, 48.999405],\n      [-111.96075, 48.998378],\n      [-111.960537, 48.997835],\n      [-111.960261, 48.997296],\n      [-111.959961, 48.996969],\n      [-111.959772, 48.996485],\n      [-111.959789, 48.99582],\n      [-111.959918, 48.995443],\n      [-111.960048, 48.994907],\n      [-111.960094, 48.994603],\n      [-111.960084, 48.994414],\n      [-111.960109, 48.993824],\n      [-111.959994, 48.990856],\n      [-111.95827, 48.98094],\n      [-111.958253, 48.980705],\n      [-111.958185, 48.980405],\n      [-111.958073, 48.980015],\n      [-111.957973, 48.979662],\n      [-111.957788, 48.979177],\n      [-111.957579, 48.978688],\n      [-111.957393, 48.978342],\n      [-111.957182, 48.977986],\n      [-111.956929, 48.977617],\n      [-111.956287, 48.976872],\n      [-111.955429, 48.975932],\n      [-111.940434, 48.960617],\n      [-111.939756, 48.959862],\n      [-111.939258, 48.959163],\n      [-111.938864, 48.958475],\n      [-111.938589, 48.957934],\n      [-111.935242, 48.950139],\n      [-111.933705, 48.946469],\n      [-111.930948, 48.939956],\n      [-111.927211, 48.931012],\n      [-111.924522, 48.924688],\n      [-111.916608, 48.906188],\n      [-111.9112, 48.893335],\n      [-111.910969, 48.892844],\n      [-111.910694, 48.892325],\n      [-111.910265, 48.891676],\n      [-111.909921, 48.891247],\n      [-111.909492, 48.890711],\n      [-111.909046, 48.890237],\n      [-111.908119, 48.889328],\n      [-111.907385, 48.88863],\n      [-111.906844, 48.888116],\n      [-111.903694, 48.88508],\n      [-111.903291, 48.88469],\n      [-111.901737, 48.883161],\n      [-111.878176, 48.860393],\n      [-111.867242, 48.849753],\n      [-111.866486, 48.849013],\n      [-111.865877, 48.848301],\n      [-111.86531, 48.847533],\n      [-111.864675, 48.846613],\n      [-111.86392, 48.845195],\n      [-111.863594, 48.84437],\n      [-111.863233, 48.843167],\n      [-111.863139, 48.842738],\n      [-111.863019, 48.842026],\n      [-111.86295, 48.841071],\n      [-111.862942, 48.830326],\n      [-111.862942, 48.823285],\n      [-111.86289, 48.769261],\n      [-111.862864, 48.764515],\n      [-111.862813, 48.763474],\n      [-111.862718, 48.761743],\n      [-111.861611, 48.743809],\n      [-111.861439, 48.740289],\n      [-111.861439, 48.739949],\n      [-111.861594, 48.737176],\n      [-111.862178, 48.726719],\n      [-111.862229, 48.723792],\n      [-111.862083, 48.656639],\n      [-111.8621, 48.64979],\n      [-111.861997, 48.598701],\n      [-111.86198, 48.592185],\n      [-111.86198, 48.57272],\n      [-111.861912, 48.57163],\n      [-111.861817, 48.570494],\n      [-111.861697, 48.569205],\n      [-111.860581, 48.557657],\n      [-111.860077, 48.552231],\n      [-111.859663, 48.54801],\n      [-111.859594, 48.546805],\n      [-111.859611, 48.545322],\n      [-111.859792, 48.535383],\n      [-111.8598, 48.533888],\n      [-111.859886, 48.533121],\n      [-111.860015, 48.532581],\n      [-111.860246, 48.531939],\n      [-111.860598, 48.531387],\n      [-111.860942, 48.530899],\n      [-111.861688, 48.530109],\n      [-111.866109, 48.525755],\n      [-111.875953, 48.516192],\n      [-111.876929, 48.515247],\n      [-111.877241, 48.514954],\n      [-111.879228, 48.513021],\n      [-111.879759, 48.512467],\n      [-111.88006, 48.512124],\n      [-111.880267, 48.511881],\n      [-111.88042, 48.511679],\n      [-111.880571, 48.511473],\n      [-111.88094, 48.510956],\n      [-111.881292, 48.510376],\n      [-111.881653, 48.509733],\n      [-111.881996, 48.50904],\n      [-111.882305, 48.508346],\n      [-111.882562, 48.507572],\n      [-111.882777, 48.506828],\n      [-111.882931, 48.506134],\n      [-111.883026, 48.505588],\n      [-111.883441, 48.502992],\n      [-111.883604, 48.499975],\n      [-111.883614, 48.499767],\n      [-111.883635, 48.496433],\n      [-111.883673, 48.495815],\n      [-111.883734, 48.49503],\n      [-111.883798, 48.494396],\n      [-111.883866, 48.493802],\n      [-111.883999, 48.493],\n      [-111.884209, 48.492103],\n      [-111.884377, 48.49147],\n      [-111.884557, 48.490837],\n      [-111.885112, 48.489088],\n      [-111.885489, 48.48824],\n      [-111.886605, 48.485897],\n      [-111.88682, 48.485299],\n      [-111.887034, 48.484679],\n      [-111.887197, 48.484099],\n      [-111.887389, 48.483433],\n      [-111.88747, 48.482928],\n      [-111.887522, 48.482349],\n      [-111.887575, 48.481425],\n      [-111.887554, 48.480643],\n      [-111.887506, 48.480113],\n      [-111.887418, 48.479516],\n      [-111.887265, 48.478742],\n      [-111.887056, 48.477974],\n      [-111.886845, 48.47746],\n      [-111.886472, 48.476607],\n      [-111.885635, 48.474831],\n      [-111.885441, 48.474274],\n      [-111.885165, 48.473591],\n      [-111.884897, 48.472862],\n      [-111.884674, 48.47215],\n      [-111.884502, 48.471564],\n      [-111.884279, 48.470409],\n      [-111.884082, 48.46926],\n      [-111.883953, 48.468281],\n      [-111.883906, 48.467423],\n      [-111.883878, 48.46663],\n      [-111.883976, 48.454446],\n      [-111.884028, 48.447094],\n      [-111.884036, 48.443164],\n      [-111.884023, 48.441546],\n      [-111.884017, 48.440681],\n      [-111.884026, 48.43968],\n      [-111.884018, 48.438945],\n      [-111.88402, 48.438457],\n      [-111.884058, 48.438059],\n      [-111.884092, 48.43776],\n      [-111.884134, 48.437455],\n      [-111.884195, 48.437091],\n      [-111.884275, 48.436739],\n      [-111.884339, 48.436455],\n      [-111.884422, 48.436153],\n      [-111.884528, 48.435768],\n      [-111.884674, 48.435354],\n      [-111.884745, 48.435206],\n      [-111.884871, 48.43486],\n      [-111.885003, 48.434574],\n      [-111.885207, 48.434157],\n      [-111.885417, 48.433746],\n      [-111.885596, 48.433441],\n      [-111.88582, 48.433061],\n      [-111.886029, 48.43273],\n      [-111.886203, 48.432492],\n      [-111.886412, 48.432197],\n      [-111.886586, 48.431954],\n      [-111.886816, 48.431663],\n      [-111.887079, 48.431357],\n      [-111.887401, 48.430981],\n      [-111.887774, 48.430593],\n      [-111.888127, 48.430257],\n      [-111.888437, 48.429955],\n      [-111.889099, 48.429374],\n      [-111.889756, 48.428824],\n      [-111.890912, 48.427857],\n      [-111.892165, 48.426838],\n      [-111.905659, 48.415636],\n      [-111.90626, 48.415157],\n      [-111.906861, 48.41457],\n      [-111.907333, 48.414081],\n      [-111.907814, 48.413528],\n      [-111.908406, 48.412776],\n      [-111.909015, 48.411824],\n      [-111.909633, 48.410907],\n      [-111.920752, 48.392582],\n      [-111.927417, 48.381543],\n      [-111.93346, 48.371538],\n      [-111.933846, 48.37086],\n      [-111.934235, 48.370068],\n      [-111.934546, 48.369396],\n      [-111.934939, 48.368399],\n      [-111.935227, 48.367613],\n      [-111.935586, 48.366493],\n      [-111.935831, 48.365544],\n      [-111.936026, 48.364601],\n      [-111.936138, 48.363831],\n      [-111.936258, 48.362885],\n      [-111.936438, 48.360792],\n      [-111.936415, 48.329088],\n      [-111.936407, 48.310354],\n      [-111.936413, 48.303031],\n      [-111.936412, 48.300795],\n      [-111.936402, 48.300483],\n      [-111.936381, 48.271331],\n      [-111.936384, 48.26711],\n      [-111.936382, 48.259592],\n      [-111.936296, 48.241832],\n      [-111.936359, 48.224045],\n      [-111.936352, 48.223792],\n      [-111.936325, 48.223208],\n      [-111.936251, 48.222646],\n      [-111.936138, 48.222131],\n      [-111.936009, 48.221594],\n      [-111.935863, 48.221148],\n      [-111.935674, 48.220724],\n      [-111.935554, 48.220438],\n      [-111.935323, 48.219975],\n      [-111.934809, 48.219106],\n      [-111.93372, 48.217503],\n      [-111.933233, 48.216812],\n      [-111.932738, 48.21609],\n      [-111.932429, 48.215627],\n      [-111.931294, 48.214006],\n      [-111.927397, 48.208419],\n      [-111.925603, 48.205843],\n      [-111.925208, 48.205217],\n      [-111.92491, 48.204712],\n      [-111.924771, 48.204436],\n      [-111.924661, 48.204188],\n      [-111.924567, 48.203923],\n      [-111.924475, 48.203592],\n      [-111.924434, 48.203298],\n      [-111.924418, 48.202753],\n      [-111.924413, 48.20226],\n      [-111.924452, 48.201981],\n      [-111.924528, 48.20166],\n      [-111.924607, 48.201399],\n      [-111.924686, 48.201185],\n      [-111.924808, 48.200887],\n      [-111.92494, 48.200634],\n      [-111.925143, 48.200322],\n      [-111.925478, 48.199721],\n      [-111.929307, 48.193399],\n      [-111.931749, 48.18936],\n      [-111.932143, 48.188696],\n      [-111.932455, 48.188174],\n      [-111.933068, 48.187161],\n      [-111.933601, 48.186274],\n      [-111.933896, 48.185797],\n      [-111.934176, 48.185351],\n      [-111.934674, 48.184441],\n      [-111.934869, 48.184038],\n      [-111.935015, 48.183702],\n      [-111.935133, 48.183407],\n      [-111.935235, 48.183131],\n      [-111.935317, 48.182855],\n      [-111.935435, 48.182454],\n      [-111.935517, 48.18214],\n      [-111.935563, 48.181903],\n      [-111.935605, 48.181629],\n      [-111.935654, 48.181347],\n      [-111.935672, 48.181134],\n      [-111.935695, 48.180837],\n      [-111.93571, 48.180431],\n      [-111.935711, 48.179913],\n      [-111.935689, 48.179699],\n      [-111.935666, 48.179392],\n      [-111.935641, 48.179193],\n      [-111.935605, 48.178954],\n      [-111.935551, 48.17862],\n      [-111.935494, 48.178341],\n      [-111.935425, 48.178065],\n      [-111.935362, 48.177851],\n      [-111.935271, 48.177512],\n      [-111.935083, 48.177015],\n      [-111.93498, 48.176751],\n      [-111.934859, 48.176484],\n      [-111.934688, 48.176141],\n      [-111.934489, 48.175789],\n      [-111.934239, 48.175377],\n      [-111.933859, 48.174812],\n      [-111.933189, 48.173765],\n      [-111.928027, 48.165762],\n      [-111.927735, 48.165321],\n      [-111.92603, 48.162726],\n      [-111.925093, 48.161247],\n      [-111.924008, 48.159611],\n      [-111.922175, 48.156783],\n      [-111.920615, 48.154387],\n      [-111.919007, 48.151911],\n      [-111.91822, 48.150663],\n      [-111.916601, 48.148144],\n      [-111.915551, 48.146568],\n      [-111.914312, 48.144665],\n      [-111.913624, 48.143606],\n      [-111.912311, 48.141567],\n      [-111.911974, 48.141065],\n      [-111.911504, 48.140381],\n      [-111.910989, 48.139656],\n      [-111.91031, 48.138734],\n      [-111.909273, 48.1374],\n      [-111.907928, 48.135653],\n      [-111.906666, 48.13405],\n      [-111.905997, 48.133172],\n      [-111.904722, 48.131516],\n      [-111.901655, 48.127581],\n      [-111.900048, 48.125516],\n      [-111.898729, 48.123822],\n      [-111.894029, 48.117798],\n      [-111.893315, 48.116857],\n      [-111.892001, 48.115177],\n      [-111.889638, 48.112132],\n      [-111.887413, 48.109275],\n      [-111.884717, 48.105808],\n      [-111.876044, 48.094626],\n      [-111.87031, 48.087229],\n      [-111.862959, 48.077764],\n      [-111.861332, 48.075665],\n      [-111.858755, 48.072362],\n      [-111.857125, 48.070241],\n      [-111.854834, 48.06729],\n      [-111.850948, 48.062304],\n      [-111.85011, 48.061229],\n      [-111.849084, 48.059917],\n      [-111.845348, 48.055071],\n      [-111.836461, 48.043589],\n      [-111.832454, 48.038401],\n      [-111.828116, 48.032803],\n      [-111.825147, 48.028974],\n      [-111.816587, 48.017942],\n      [-111.816087, 48.017289],\n      [-111.815305, 48.016376],\n      [-111.814473, 48.015423],\n      [-111.813623, 48.014499],\n      [-111.812937, 48.013816],\n      [-111.811984, 48.012851],\n      [-111.810868, 48.011863],\n      [-111.809752, 48.010882],\n      [-111.808825, 48.010101],\n      [-111.807598, 48.009153],\n      [-111.806388, 48.008229],\n      [-111.805238, 48.007408],\n      [-111.784158, 47.992286],\n      [-111.782561, 47.991143],\n      [-111.767146, 47.980084],\n      [-111.766219, 47.979354],\n      [-111.765283, 47.978504],\n      [-111.764288, 47.977544],\n      [-111.763404, 47.976585],\n      [-111.762691, 47.975723],\n      [-111.762193, 47.97501],\n      [-111.761653, 47.974154],\n      [-111.761121, 47.973252],\n      [-111.753336, 47.959718],\n      [-111.749036, 47.952205],\n      [-111.736505, 47.930384],\n      [-111.736106, 47.92965],\n      [-111.735644, 47.928853],\n      [-111.735343, 47.928305],\n      [-111.733592, 47.925244],\n      [-111.733306, 47.924769],\n      [-111.732599, 47.923554],\n      [-111.732395, 47.923205],\n      [-111.731718, 47.922093],\n      [-111.731538, 47.921738],\n      [-111.73117, 47.921043],\n      [-111.726112, 47.912262],\n      [-111.71442, 47.89173],\n      [-111.713776, 47.890608],\n      [-111.713253, 47.889578],\n      [-111.712927, 47.888864],\n      [-111.71254, 47.888058],\n      [-111.712146, 47.88689],\n      [-111.711811, 47.885744],\n      [-111.711519, 47.884564],\n      [-111.711253, 47.883125],\n      [-111.711124, 47.881922],\n      [-111.71103, 47.880834],\n      [-111.71103, 47.879792],\n      [-111.711129, 47.869762],\n      [-111.711004, 47.867783],\n      [-111.710901, 47.866758],\n      [-111.710781, 47.865716],\n      [-111.710618, 47.864547],\n      [-111.710438, 47.863447],\n      [-111.710283, 47.862537],\n      [-111.709991, 47.861213],\n      [-111.709756, 47.860259],\n      [-111.709335, 47.858847],\n      [-111.708841, 47.857285],\n      [-111.70727, 47.852822],\n      [-111.706867, 47.851704],\n      [-111.706498, 47.850875],\n      [-111.706077, 47.850017],\n      [-111.705434, 47.848819],\n      [-111.705305, 47.848582],\n      [-111.704816, 47.847747],\n      [-111.704215, 47.846849],\n      [-111.703623, 47.846054],\n      [-111.702678, 47.844833],\n      [-111.701983, 47.843986],\n      [-111.700902, 47.842828],\n      [-111.699923, 47.841889],\n      [-111.698979, 47.841013],\n      [-111.698052, 47.84023],\n      [-111.696893, 47.839291],\n      [-111.668363, 47.817267],\n      [-111.667479, 47.816472],\n      [-111.667042, 47.815942],\n      [-111.666647, 47.815434],\n      [-111.666226, 47.81476],\n      [-111.665943, 47.814143],\n      [-111.66578, 47.813619],\n      [-111.665625, 47.812887],\n      [-111.6656, 47.812391],\n      [-111.665591, 47.811797],\n      [-111.666429, 47.79584],\n      [-111.666535, 47.793822],\n      [-111.666492, 47.791308],\n      [-111.666439, 47.750802],\n      [-111.666442, 47.741317],\n      [-111.666445, 47.740989],\n      [-111.666406, 47.723306],\n      [-111.666381, 47.72244],\n      [-111.666295, 47.721684],\n      [-111.666158, 47.720881],\n      [-111.665986, 47.72024],\n      [-111.665746, 47.719547],\n      [-111.665419, 47.71871],\n      [-111.665042, 47.717925],\n      [-111.664647, 47.717243],\n      [-111.664132, 47.716493],\n      [-111.663789, 47.716008],\n      [-111.663359, 47.715528],\n      [-111.662432, 47.714581],\n      [-111.658081, 47.710071],\n      [-111.647285, 47.699031],\n      [-111.646085, 47.697836],\n      [-111.632275, 47.683698],\n      [-111.631949, 47.683351],\n      [-111.606663, 47.657441],\n      [-111.60117, 47.651798],\n      [-111.590415, 47.64073],\n      [-111.589918, 47.640187],\n      [-111.589463, 47.639655],\n      [-111.589068, 47.639157],\n      [-111.588707, 47.638689],\n      [-111.588287, 47.638139],\n      [-111.587849, 47.637538],\n      [-111.587549, 47.637104],\n      [-111.587231, 47.636624],\n      [-111.58627, 47.63501],\n      [-111.585369, 47.633136],\n      [-111.570511, 47.6019],\n      [-111.569945, 47.600818],\n      [-111.56955, 47.600169],\n      [-111.569224, 47.599643],\n      [-111.568846, 47.599047],\n      [-111.568546, 47.598607],\n      [-111.568168, 47.598051],\n      [-111.567747, 47.597472],\n      [-111.567335, 47.596928],\n      [-111.566915, 47.59643],\n      [-111.566537, 47.595991],\n      [-111.552899, 47.581183],\n      [-111.552633, 47.580911],\n      [-111.537629, 47.564691],\n      [-111.536514, 47.563515],\n      [-111.535904, 47.562901],\n      [-111.535175, 47.56227],\n      [-111.534437, 47.561691],\n      [-111.533656, 47.561129],\n      [-111.532711, 47.560504],\n      [-111.531647, 47.559884],\n      [-111.53048, 47.559311],\n      [-111.529184, 47.558737],\n      [-111.528008, 47.558285],\n      [-111.526806, 47.557897],\n      [-111.525424, 47.557503],\n      [-111.524008, 47.557162],\n      [-111.522824, 47.556953],\n      [-111.521734, 47.556779],\n      [-111.509679, 47.554952],\n      [-111.484251, 47.551039],\n      [-111.477299, 47.54995],\n      [-111.455614, 47.546631],\n      [-111.452477, 47.546143],\n      [-111.452005, 47.546074],\n      [-111.448496, 47.545531],\n      [-111.445301, 47.545037],\n      [-111.443894, 47.544799],\n      [-111.442357, 47.544492],\n      [-111.440907, 47.544162],\n      [-111.439173, 47.543716],\n      [-111.437894, 47.543368],\n      [-111.436512, 47.542957],\n      [-111.435045, 47.54247],\n      [-111.385349, 47.526175],\n      [-111.384241, 47.525793],\n      [-111.383478, 47.52541],\n      [-111.382928, 47.525097],\n      [-111.382499, 47.524784],\n      [-111.382036, 47.524384],\n      [-111.381709, 47.524025],\n      [-111.381452, 47.523741],\n      [-111.380053, 47.521909],\n      [-111.379298, 47.520959],\n      [-111.379152, 47.520779],\n      [-111.378714, 47.520286],\n      [-111.378268, 47.519857],\n      [-111.377555, 47.519394],\n      [-111.376774, 47.518994],\n      [-111.376096, 47.518733],\n      [-111.375409, 47.51853],\n      [-111.374294, 47.518234],\n      [-111.351059, 47.512362],\n      [-111.350081, 47.512055],\n      [-111.348914, 47.511632],\n      [-111.348184, 47.511255],\n      [-111.347446, 47.510878],\n      [-111.346914, 47.510553],\n      [-111.346356, 47.510147],\n      [-111.345832, 47.509759],\n      [-111.345309, 47.509295],\n      [-111.344914, 47.508884],\n      [-111.344605, 47.508542],\n      [-111.344193, 47.50802],\n      [-111.34391, 47.507591],\n      [-111.343618, 47.507133],\n      [-111.343352, 47.506535],\n      [-111.343137, 47.505921],\n      [-111.343, 47.505254],\n      [-111.342914, 47.504779],\n      [-111.342871, 47.504205],\n      [-111.342884, 47.503714],\n      [-111.343017, 47.501337],\n      [-111.343037, 47.500922],\n      [-111.343074, 47.500247],\n      [-111.343153, 47.498866],\n      [-111.343699, 47.489338],\n      [-111.343837, 47.488347],\n      [-111.344051, 47.487517],\n      [-111.344326, 47.486746],\n      [-111.344695, 47.485795],\n      [-111.345184, 47.484855],\n      [-111.345493, 47.484356],\n      [-111.346068, 47.483527],\n      [-111.34715, 47.48221],\n      [-111.347948, 47.481392],\n      [-111.348765, 47.480715],\n      [-111.349751, 47.479978],\n      [-111.350866, 47.47913],\n      [-111.356582, 47.475347],\n      [-111.365214, 47.469592],\n      [-111.367419, 47.46813],\n      [-111.367934, 47.467829],\n      [-111.368578, 47.467492],\n      [-111.36923, 47.467144],\n      [-111.369994, 47.466807],\n      [-111.370973, 47.466407],\n      [-111.371926, 47.466042],\n      [-111.372818, 47.465746],\n      [-111.373522, 47.465525],\n      [-111.374509, 47.465258],\n      [-111.429286, 47.452445],\n      [-111.429621, 47.452364],\n      [-111.473508, 47.442064],\n      [-111.50183, 47.435384],\n      [-111.502749, 47.435175],\n      [-111.503701, 47.434961],\n      [-111.504362, 47.434792],\n      [-111.505221, 47.434543],\n      [-111.506045, 47.434299],\n      [-111.506663, 47.434095],\n      [-111.507143, 47.433927],\n      [-111.507907, 47.433648],\n      [-111.508654, 47.433312],\n      [-111.509255, 47.433045],\n      [-111.509933, 47.432725],\n      [-111.510534, 47.432412],\n      [-111.51122, 47.432029],\n      [-111.51183, 47.431674],\n      [-111.512954, 47.430931],\n      [-111.513546, 47.43049],\n      [-111.524011, 47.422011],\n      [-111.569141, 47.385345],\n      [-111.6142, 47.348685],\n      [-111.614466, 47.34847],\n      [-111.634341, 47.332266],\n      [-111.69101, 47.285965],\n      [-111.692683, 47.284596],\n      [-111.694151, 47.283461],\n      [-111.694838, 47.282943],\n      [-111.696432, 47.281863],\n      [-111.698123, 47.280815],\n      [-111.699024, 47.280297],\n      [-111.699436, 47.280064],\n      [-111.703522, 47.277671],\n      [-111.704183, 47.27728],\n      [-111.704689, 47.276966],\n      [-111.70511, 47.276686],\n      [-111.705436, 47.276442],\n      [-111.705788, 47.276139],\n      [-111.706182, 47.275766],\n      [-111.706612, 47.275289],\n      [-111.706989, 47.274806],\n      [-111.707367, 47.274264],\n      [-111.707573, 47.273856],\n      [-111.707813, 47.273379],\n      [-111.707933, 47.273047],\n      [-111.708045, 47.272651],\n      [-111.708122, 47.272307],\n      [-111.708199, 47.271911],\n      [-111.708234, 47.271544],\n      [-111.708234, 47.271212],\n      [-111.708157, 47.264538],\n      [-111.708114, 47.262342],\n      [-111.708122, 47.261794],\n      [-111.708157, 47.261369],\n      [-111.708234, 47.260851],\n      [-111.708268, 47.260653],\n      [-111.708337, 47.260257],\n      [-111.708508, 47.259511],\n      [-111.708637, 47.258923],\n      [-111.708783, 47.258241],\n      [-111.70898, 47.257536],\n      [-111.709152, 47.256942],\n      [-111.709298, 47.256383],\n      [-111.710079, 47.25333],\n      [-111.710328, 47.252363],\n      [-111.710474, 47.251833],\n      [-111.710637, 47.251332],\n      [-111.710834, 47.250889],\n      [-111.71104, 47.250545],\n      [-111.711367, 47.250085],\n      [-111.711658, 47.249753],\n      [-111.711942, 47.249444],\n      [-111.712345, 47.249089],\n      [-111.712766, 47.248751],\n      [-111.71316, 47.248494],\n      [-111.713624, 47.248221],\n      [-111.714147, 47.247958],\n      [-111.714834, 47.247655],\n      [-111.729726, 47.241112],\n      [-111.73291, 47.239807],\n      [-111.75169, 47.232534],\n      [-111.754093, 47.231624],\n      [-111.75635, 47.230861],\n      [-111.75676, 47.230739],\n      [-111.765002, 47.228413],\n      [-111.765835, 47.228157],\n      [-111.766633, 47.227877],\n      [-111.767345, 47.227597],\n      [-111.768092, 47.227306],\n      [-111.768719, 47.227026],\n      [-111.769474, 47.226676],\n      [-111.770058, 47.226361],\n      [-111.770727, 47.225988],\n      [-111.771448, 47.225534],\n      [-111.772118, 47.225096],\n      [-111.772693, 47.224688],\n      [-111.773405, 47.22417],\n      [-111.773714, 47.223936],\n      [-111.774169, 47.223575],\n      [-111.774641, 47.223103],\n      [-111.775104, 47.222619],\n      [-111.775499, 47.222211],\n      [-111.775885, 47.221774],\n      [-111.776306, 47.221255],\n      [-111.776658, 47.220777],\n      [-111.77695, 47.220369],\n      [-111.777422, 47.219611],\n      [-111.777722, 47.219057],\n      [-111.778014, 47.218422],\n      [-111.778289, 47.217746],\n      [-111.778503, 47.217104],\n      [-111.778675, 47.216428],\n      [-111.778881, 47.215694],\n      [-111.779061, 47.214988],\n      [-111.780057, 47.210796],\n      [-111.780203, 47.210213],\n      [-111.780323, 47.209758],\n      [-111.780435, 47.209397],\n      [-111.780641, 47.208808],\n      [-111.780907, 47.208201],\n      [-111.78113, 47.207729],\n      [-111.781301, 47.207438],\n      [-111.781499, 47.207129],\n      [-111.78228, 47.205916],\n      [-111.783293, 47.204645],\n      [-111.783936, 47.203974],\n      [-111.784735, 47.203146],\n      [-111.785593, 47.202225],\n      [-111.786314, 47.201466],\n      [-111.786872, 47.200883],\n      [-111.787902, 47.199845],\n      [-111.788254, 47.199507],\n      [-111.788674, 47.19914],\n      [-111.789086, 47.19879],\n      [-111.789584, 47.198387],\n      [-111.790168, 47.197921],\n      [-111.790605, 47.197618],\n      [-111.791249, 47.197227],\n      [-111.791824, 47.196877],\n      [-111.792545, 47.196474],\n      [-111.793198, 47.196136],\n      [-111.79397, 47.195769],\n      [-111.794805, 47.195425],\n      [-111.801248, 47.192835],\n      [-111.801575, 47.192701],\n      [-111.802656, 47.192287],\n      [-111.803514, 47.191937],\n      [-111.804167, 47.191628],\n      [-111.804665, 47.191394],\n      [-111.8053, 47.191045],\n      [-111.805723, 47.190797],\n      [-111.805997, 47.190634],\n      [-111.806478, 47.190323],\n      [-111.806732, 47.190144],\n      [-111.80699, 47.189955],\n      [-111.807242, 47.189755],\n      [-111.807499, 47.189537],\n      [-111.807978, 47.189108],\n      [-111.808309, 47.188784],\n      [-111.808738, 47.188316],\n      [-111.809145, 47.187831],\n      [-111.809375, 47.187515],\n      [-111.809578, 47.187207],\n      [-111.809725, 47.186968],\n      [-111.809941, 47.18658],\n      [-111.810196, 47.186052],\n      [-111.810485, 47.185392],\n      [-111.810582, 47.185034],\n      [-111.810757, 47.184458],\n      [-111.81087, 47.184068],\n      [-111.811288, 47.182591],\n      [-111.811466, 47.182023],\n      [-111.811592, 47.181562],\n      [-111.811725, 47.181068],\n      [-111.811881, 47.18053],\n      [-111.812016, 47.179972],\n      [-111.812133, 47.179486],\n      [-111.812304, 47.178698],\n      [-111.812475, 47.177933],\n      [-111.812795, 47.176671],\n      [-111.813022, 47.175805],\n      [-111.813143, 47.175313],\n      [-111.813289, 47.174743],\n      [-111.813451, 47.174086],\n      [-111.813587, 47.173603],\n      [-111.813709, 47.173199],\n      [-111.813868, 47.172742],\n      [-111.814052, 47.172177],\n      [-111.81431, 47.171374],\n      [-111.814446, 47.170953],\n      [-111.814555, 47.170592],\n      [-111.814621, 47.170315],\n      [-111.814724, 47.169845],\n      [-111.814867, 47.169286],\n      [-111.814924, 47.169023],\n      [-111.815005, 47.168585],\n      [-111.81512, 47.168075],\n      [-111.815267, 47.167513],\n      [-111.81537, 47.167124],\n      [-111.815534, 47.166596],\n      [-111.815743, 47.165879],\n      [-111.815883, 47.165407],\n      [-111.816017, 47.16497],\n      [-111.816151, 47.164499],\n      [-111.816299, 47.164102],\n      [-111.816455, 47.163605],\n      [-111.816606, 47.163233],\n      [-111.81675, 47.162929],\n      [-111.8169, 47.16265],\n      [-111.817163, 47.162234],\n      [-111.817461, 47.161792],\n      [-111.817707, 47.161428],\n      [-111.817918, 47.161172],\n      [-111.818109, 47.160939],\n      [-111.81826, 47.160773],\n      [-111.818436, 47.160598],\n      [-111.818713, 47.160322],\n      [-111.819137, 47.159916],\n      [-111.819338, 47.159742],\n      [-111.819615, 47.159506],\n      [-111.819811, 47.159353],\n      [-111.820101, 47.159137],\n      [-111.820886, 47.158653],\n      [-111.821347, 47.158391],\n      [-111.821709, 47.158179],\n      [-111.82215, 47.157949],\n      [-111.822792, 47.157656],\n      [-111.823291, 47.157407],\n      [-111.823951, 47.157074],\n      [-111.824604, 47.156773],\n      [-111.824926, 47.156618],\n      [-111.826016, 47.156075],\n      [-111.826777, 47.155704],\n      [-111.827118, 47.155527],\n      [-111.827632, 47.155278],\n      [-111.828833, 47.154684],\n      [-111.830331, 47.153967],\n      [-111.83092, 47.153679],\n      [-111.831417, 47.153485],\n      [-111.831694, 47.153394],\n      [-111.831937, 47.15332],\n      [-111.832157, 47.153261],\n      [-111.832517, 47.15318],\n      [-111.832892, 47.153117],\n      [-111.833253, 47.153076],\n      [-111.833573, 47.153049],\n      [-111.833993, 47.153025],\n      [-111.834559, 47.153049],\n      [-111.835126, 47.153113],\n      [-111.835701, 47.1532],\n      [-111.83595, 47.153259],\n      [-111.841856, 47.154858],\n      [-111.842362, 47.155002],\n      [-111.842712, 47.155094],\n      [-111.843019, 47.155158],\n      [-111.843672, 47.155257],\n      [-111.8438, 47.155267],\n      [-111.844087, 47.155287],\n      [-111.844399, 47.155286],\n      [-111.844699, 47.15528],\n      [-111.845058, 47.15526],\n      [-111.845509, 47.155193],\n      [-111.845869, 47.155122],\n      [-111.846291, 47.155019],\n      [-111.846644, 47.154905],\n      [-111.846928, 47.154785],\n      [-111.847126, 47.154685],\n      [-111.847479, 47.154504],\n      [-111.847736, 47.154346],\n      [-111.847908, 47.15421],\n      [-111.848115, 47.154036],\n      [-111.848251, 47.153894],\n      [-111.848342, 47.153792],\n      [-111.84847, 47.153647],\n      [-111.848543, 47.153546],\n      [-111.848649, 47.153419],\n      [-111.848764, 47.153232],\n      [-111.848861, 47.153032],\n      [-111.848947, 47.152823],\n      [-111.848973, 47.152708],\n      [-111.849021, 47.152541],\n      [-111.849042, 47.152364],\n      [-111.849077, 47.152131],\n      [-111.849103, 47.151825],\n      [-111.849333, 47.149062],\n      [-111.849393, 47.148406],\n      [-111.8494, 47.148192],\n      [-111.849408, 47.147987],\n      [-111.8494, 47.147824],\n      [-111.84939, 47.147698],\n      [-111.849374, 47.147556],\n      [-111.849347, 47.147435],\n      [-111.849331, 47.147351],\n      [-111.849245, 47.146966],\n      [-111.849142, 47.146674],\n      [-111.849059, 47.146434],\n      [-111.848943, 47.146212],\n      [-111.84886, 47.146053],\n      [-111.848767, 47.145896],\n      [-111.848673, 47.145762],\n      [-111.848566, 47.14562],\n      [-111.847025, 47.143717],\n      [-111.846887, 47.143525],\n      [-111.846766, 47.143353],\n      [-111.846661, 47.14319],\n      [-111.846521, 47.142953],\n      [-111.846415, 47.142749],\n      [-111.846343, 47.142591],\n      [-111.846269, 47.14237],\n      [-111.846241, 47.142263],\n      [-111.846223, 47.14217],\n      [-111.846209, 47.142062],\n      [-111.84619, 47.141876],\n      [-111.846192, 47.141745],\n      [-111.846217, 47.141528],\n      [-111.846242, 47.141353],\n      [-111.84627, 47.141184],\n      [-111.846324, 47.141016],\n      [-111.846398, 47.140797],\n      [-111.846525, 47.140531],\n      [-111.846604, 47.14041],\n      [-111.846676, 47.14029],\n      [-111.846846, 47.140059],\n      [-111.847142, 47.139751],\n      [-111.847281, 47.13963],\n      [-111.84746, 47.139479],\n      [-111.847678, 47.139323],\n      [-111.84791, 47.139171],\n      [-111.848186, 47.139013],\n      [-111.848438, 47.138891],\n      [-111.848706, 47.138772],\n      [-111.848984, 47.138674],\n      [-111.849267, 47.138581],\n      [-111.849592, 47.138477],\n      [-111.849947, 47.138393],\n      [-111.850257, 47.138331],\n      [-111.850556, 47.138292],\n      [-111.850908, 47.138241],\n      [-111.851241, 47.13822],\n      [-111.85164, 47.138209],\n      [-111.851974, 47.13821],\n      [-111.852237, 47.138223],\n      [-111.852532, 47.138247],\n      [-111.852795, 47.138276],\n      [-111.853123, 47.13833],\n      [-111.853394, 47.138374],\n      [-111.853787, 47.138457],\n      [-111.854766, 47.138667],\n      [-111.855826, 47.138884],\n      [-111.856179, 47.13897],\n      [-111.856565, 47.139029],\n      [-111.856792, 47.139068],\n      [-111.857173, 47.13911],\n      [-111.857431, 47.139137],\n      [-111.857676, 47.139157],\n      [-111.858048, 47.139176],\n      [-111.858338, 47.139177],\n      [-111.858762, 47.139167],\n      [-111.859155, 47.139148],\n      [-111.85955, 47.139117],\n      [-111.859805, 47.139089],\n      [-111.860245, 47.139022],\n      [-111.860491, 47.13898],\n      [-111.860683, 47.138944],\n      [-111.860973, 47.138885],\n      [-111.861214, 47.138829],\n      [-111.861479, 47.138758],\n      [-111.861743, 47.138677],\n      [-111.862069, 47.138562],\n      [-111.862344, 47.138449],\n      [-111.862687, 47.138297],\n      [-111.862931, 47.138175],\n      [-111.863114, 47.138087],\n      [-111.863314, 47.137975],\n      [-111.863599, 47.137807],\n      [-111.863972, 47.13756],\n      [-111.864261, 47.137341],\n      [-111.864442, 47.137202],\n      [-111.864674, 47.137005],\n      [-111.864969, 47.136736],\n      [-111.865258, 47.13642],\n      [-111.867853, 47.13324],\n      [-111.868102, 47.13296],\n      [-111.868445, 47.132657],\n      [-111.868909, 47.132347],\n      [-111.869372, 47.132096],\n      [-111.869776, 47.131938],\n      [-111.870291, 47.131792],\n      [-111.870754, 47.131687],\n      [-111.871286, 47.131623],\n      [-111.87181, 47.131605],\n      [-111.872359, 47.131617],\n      [-111.873389, 47.131705],\n      [-111.875681, 47.131897],\n      [-111.885054, 47.132785],\n      [-111.886566, 47.132886],\n      [-111.888607, 47.1331],\n      [-111.888985, 47.133135],\n      [-111.889766, 47.133217],\n      [-111.890444, 47.133281],\n      [-111.891225, 47.133322],\n      [-111.891886, 47.133334],\n      [-111.892598, 47.133334],\n      [-111.893242, 47.133316],\n      [-111.8938, 47.133305],\n      [-111.894512, 47.133246],\n      [-111.89513, 47.133194],\n      [-111.89563, 47.133132],\n      [-111.896274, 47.133044],\n      [-111.89678, 47.132974],\n      [-111.898531, 47.132636],\n      [-111.899656, 47.132344],\n      [-111.900711, 47.132022],\n      [-111.901398, 47.131783],\n      [-111.902445, 47.131403],\n      [-111.904162, 47.130755],\n      [-111.909034, 47.128927],\n      [-111.913729, 47.127181],\n      [-111.917251, 47.125878],\n      [-111.92071, 47.1247],\n      [-111.921698, 47.124251],\n      [-111.922387, 47.123838],\n      [-111.922806, 47.123526],\n      [-111.924809, 47.121884],\n      [-111.925527, 47.121467],\n      [-111.926631, 47.121045],\n      [-111.927545, 47.120838],\n      [-111.928844, 47.120679],\n      [-111.939954, 47.119561],\n      [-111.940893, 47.119375],\n      [-111.941491, 47.119193],\n      [-111.94258, 47.118694],\n      [-111.94328, 47.118205],\n      [-111.943682, 47.117842],\n      [-111.944167, 47.117216],\n      [-111.94437, 47.116782],\n      [-111.94452, 47.116283],\n      [-111.944594, 47.115646],\n      [-111.944471, 47.113184],\n      [-111.944519, 47.112085],\n      [-111.944699, 47.111164],\n      [-111.9451, 47.109855],\n      [-111.94519, 47.109613],\n      [-111.946818, 47.104798],\n      [-111.947185, 47.103915],\n      [-111.94757, 47.103215],\n      [-111.948705, 47.101708],\n      [-111.95025, 47.099859],\n      [-111.951568, 47.098237],\n      [-111.952318, 47.097326],\n      [-111.952866, 47.096646],\n      [-111.954165, 47.094457],\n      [-111.954536, 47.093996],\n      [-111.955001, 47.093573],\n      [-111.95538, 47.093283],\n      [-111.95597, 47.092921],\n      [-111.958022, 47.092174],\n      [-111.958929, 47.091665],\n      [-111.959563, 47.091145],\n      [-111.959918, 47.090782],\n      [-111.960199, 47.090406],\n      [-111.960514, 47.089782],\n      [-111.960679, 47.089121],\n      [-111.961076, 47.083974],\n      [-111.961218, 47.083113],\n      [-111.961515, 47.082259],\n      [-111.962027, 47.081188],\n      [-111.962536, 47.080367],\n      [-111.963148, 47.079581],\n      [-111.964601, 47.078023],\n      [-111.966718, 47.075826],\n      [-111.967024, 47.075517],\n      [-111.969094, 47.073375],\n      [-111.970437, 47.07194],\n      [-111.972154, 47.070032],\n      [-111.973432, 47.068542],\n      [-111.974103, 47.067809],\n      [-111.974604, 47.067107],\n      [-111.976616, 47.064731],\n      [-111.98105, 47.059331],\n      [-111.981811, 47.058552],\n      [-111.982905, 47.057585],\n      [-111.983864, 47.057007],\n      [-111.985011, 47.056354],\n      [-111.986314, 47.055712],\n      [-111.986853, 47.055504],\n      [-111.987827, 47.055224],\n      [-111.990272, 47.054577],\n      [-111.991627, 47.053954],\n      [-111.992491, 47.053494],\n      [-111.993301, 47.052977],\n      [-111.994268, 47.05221],\n      [-111.994901, 47.051592],\n      [-112.00108, 47.045261],\n      [-112.002131, 47.044014],\n      [-112.002341, 47.043639],\n      [-112.002459, 47.043291],\n      [-112.00254, 47.04249],\n      [-112.002551, 47.041633],\n      [-112.002802, 47.040468],\n      [-112.003031, 47.039996],\n      [-112.003311, 47.039629],\n      [-112.00408, 47.038901],\n      [-112.004669, 47.038537],\n      [-112.005381, 47.038191],\n      [-112.006132, 47.03787],\n      [-112.007591, 47.037508],\n      [-112.008057, 47.037437],\n      [-112.009475, 47.037313],\n      [-112.012696, 47.037258],\n      [-112.01489, 47.037245],\n      [-112.016275, 47.037163],\n      [-112.0192, 47.037033],\n      [-112.020595, 47.036893],\n      [-112.021841, 47.036661],\n      [-112.023428, 47.036288],\n      [-112.024543, 47.035923],\n      [-112.025634, 47.03549],\n      [-112.026621, 47.035004],\n      [-112.027875, 47.034259],\n      [-112.04368, 47.024236],\n      [-112.044909, 47.023441],\n      [-112.04544, 47.023036],\n      [-112.04608, 47.022418],\n      [-112.046528, 47.021863],\n      [-112.046751, 47.021531],\n      [-112.046895, 47.021189],\n      [-112.048457, 47.017223],\n      [-112.049379, 47.014861],\n      [-112.04961, 47.014335],\n      [-112.049878, 47.013819],\n      [-112.050194, 47.013314],\n      [-112.050556, 47.012813],\n      [-112.050955, 47.01233],\n      [-112.051351, 47.011873],\n      [-112.051809, 47.011423],\n      [-112.052303, 47.010991],\n      [-112.05283, 47.010576],\n      [-112.053387, 47.010182],\n      [-112.053972, 47.009806],\n      [-112.056998, 47.008006],\n      [-112.058515, 47.007109],\n      [-112.060333, 47.006031],\n      [-112.061846, 47.00513],\n      [-112.062472, 47.004869],\n      [-112.062889, 47.004741],\n      [-112.063358, 47.004645],\n      [-112.063683, 47.004606],\n      [-112.064074, 47.004561],\n      [-112.064445, 47.004519],\n      [-112.06488, 47.004576],\n      [-112.06527, 47.004629],\n      [-112.065565, 47.004697],\n      [-112.065974, 47.004792],\n      [-112.066808, 47.004991],\n      [-112.06824, 47.005361],\n      [-112.0686, 47.005467],\n      [-112.069096, 47.005596],\n      [-112.069473, 47.005688],\n      [-112.069732, 47.005745],\n      [-112.070266, 47.005855],\n      [-112.070699, 47.005951],\n      [-112.071253, 47.006048],\n      [-112.071642, 47.006114],\n      [-112.071928, 47.006158],\n      [-112.072302, 47.006209],\n      [-112.072735, 47.006263],\n      [-112.072984, 47.006287],\n      [-112.073367, 47.006318],\n      [-112.073792, 47.006352],\n      [-112.074219, 47.006372],\n      [-112.074542, 47.006382],\n      [-112.074829, 47.00639],\n      [-112.075178, 47.006392],\n      [-112.075603, 47.006393],\n      [-112.076788, 47.006332],\n      [-112.077271, 47.006281],\n      [-112.077628, 47.006225],\n      [-112.078026, 47.006153],\n      [-112.078436, 47.006074],\n      [-112.078755, 47.005996],\n      [-112.079201, 47.005866],\n      [-112.079533, 47.005747],\n      [-112.079812, 47.00563],\n      [-112.080082, 47.005495],\n      [-112.080379, 47.005332],\n      [-112.080635, 47.005164],\n      [-112.080953, 47.004927],\n      [-112.081049, 47.004826],\n      [-112.081198, 47.004689],\n      [-112.081316, 47.004562],\n      [-112.081449, 47.004379],\n      [-112.081568, 47.004191],\n      [-112.081674, 47.003987],\n      [-112.08174, 47.003858],\n      [-112.081806, 47.003692],\n      [-112.081884, 47.003438],\n      [-112.08191, 47.003275],\n      [-112.081934, 47.003066],\n      [-112.08193, 47.002831],\n      [-112.081896, 47.002597],\n      [-112.081853, 47.002371],\n      [-112.081798, 47.002194],\n      [-112.081607, 47.00176],\n      [-112.081184, 47.001198],\n      [-112.079559, 46.99968],\n      [-112.078016, 46.99838],\n      [-112.07758, 46.997912],\n      [-112.077288, 46.997532],\n      [-112.076986, 46.99693],\n      [-112.076889, 46.996514],\n      [-112.076886, 46.996116],\n      [-112.076984, 46.995478],\n      [-112.07795, 46.992584],\n      [-112.078047, 46.991994],\n      [-112.078024, 46.991594],\n      [-112.077935, 46.9912],\n      [-112.077672, 46.990627],\n      [-112.076129, 46.988425],\n      [-112.075762, 46.987771],\n      [-112.075646, 46.98742],\n      [-112.075619, 46.987055],\n      [-112.075663, 46.986679],\n      [-112.075796, 46.986299],\n      [-112.076008, 46.985921],\n      [-112.076502, 46.98539],\n      [-112.077181, 46.984932],\n      [-112.081242, 46.982494],\n      [-112.081853, 46.981972],\n      [-112.082104, 46.981646],\n      [-112.082346, 46.981245],\n      [-112.082526, 46.98074],\n      [-112.082567, 46.980266],\n      [-112.082681, 46.977427],\n      [-112.082826, 46.974499],\n      [-112.083032, 46.973709],\n      [-112.083438, 46.973098],\n      [-112.083941, 46.972667],\n      [-112.084536, 46.97225],\n      [-112.093815, 46.965771],\n      [-112.094034, 46.965596],\n      [-112.094318, 46.965306],\n      [-112.094501, 46.965085],\n      [-112.094642, 46.964864],\n      [-112.094785, 46.964575],\n      [-112.094868, 46.964338],\n      [-112.094926, 46.964081],\n      [-112.094952, 46.963813],\n      [-112.094963, 46.963562],\n      [-112.094964, 46.963005],\n      [-112.094945, 46.962147],\n      [-112.095064, 46.961322],\n      [-112.095315, 46.960775],\n      [-112.095663, 46.960328],\n      [-112.098599, 46.957746],\n      [-112.098975, 46.957432],\n      [-112.099726, 46.956946],\n      [-112.100314, 46.956644],\n      [-112.101038, 46.956326],\n      [-112.103946, 46.955297],\n      [-112.107802, 46.953955],\n      [-112.108475, 46.953671],\n      [-112.108901, 46.953445],\n      [-112.109465, 46.953038],\n      [-112.109979, 46.952469],\n      [-112.110197, 46.952042],\n      [-112.111502, 46.949682],\n      [-112.112324, 46.948952],\n      [-112.113184, 46.948533],\n      [-112.114208, 46.948308],\n      [-112.116111, 46.948021],\n      [-112.117289, 46.947669],\n      [-112.118334, 46.94705],\n      [-112.119549, 46.946068],\n      [-112.122402, 46.943642],\n      [-112.123133, 46.943013],\n      [-112.123553, 46.942583],\n      [-112.12389, 46.942171],\n      [-112.124619, 46.941266],\n      [-112.125571, 46.939982],\n      [-112.126015, 46.939377],\n      [-112.1265, 46.938749],\n      [-112.126751, 46.938397],\n      [-112.126995, 46.938014],\n      [-112.127231, 46.93766],\n      [-112.127472, 46.93708],\n      [-112.127553, 46.936521],\n      [-112.127485, 46.935878],\n      [-112.126037, 46.931011],\n      [-112.125843, 46.930596],\n      [-112.125614, 46.930288],\n      [-112.125356, 46.930017],\n      [-112.125, 46.92973],\n      [-112.122981, 46.928549],\n      [-112.122668, 46.928293],\n      [-112.122315, 46.927871],\n      [-112.122099, 46.927296],\n      [-112.122093, 46.926792],\n      [-112.122341, 46.926128],\n      [-112.12333, 46.924835],\n      [-112.123628, 46.924404],\n      [-112.123835, 46.923877],\n      [-112.123883, 46.923325],\n      [-112.123775, 46.9228],\n      [-112.123494, 46.922251],\n      [-112.123242, 46.921939],\n      [-112.123161, 46.921857],\n      [-112.12174, 46.920823],\n      [-112.121416, 46.920602],\n      [-112.120977, 46.920179],\n      [-112.120697, 46.919775],\n      [-112.120503, 46.919327],\n      [-112.120322, 46.918471],\n      [-112.119667, 46.915666],\n      [-112.11939, 46.915074],\n      [-112.119062, 46.914644],\n      [-112.118506, 46.91421],\n      [-112.116708, 46.913328],\n      [-112.116193, 46.912968],\n      [-112.115472, 46.912187],\n      [-112.115356, 46.911933],\n      [-112.115279, 46.911728],\n      [-112.115241, 46.911454],\n      [-112.11523, 46.911175],\n      [-112.115266, 46.910915],\n      [-112.115368, 46.910602],\n      [-112.115446, 46.910438],\n      [-112.115662, 46.910084],\n      [-112.11604, 46.909673],\n      [-112.119395, 46.907257],\n      [-112.119896, 46.906695],\n      [-112.120633, 46.90538],\n      [-112.120979, 46.904986],\n      [-112.122506, 46.903673],\n      [-112.12294, 46.903177],\n      [-112.123172, 46.902727],\n      [-112.123344, 46.902186],\n      [-112.12337, 46.901665],\n      [-112.12326, 46.90114],\n      [-112.123004, 46.900542],\n      [-112.122296, 46.899463],\n      [-112.118791, 46.893932],\n      [-112.118077, 46.892887],\n      [-112.117488, 46.892253],\n      [-112.11672, 46.891638],\n      [-112.11608, 46.891253],\n      [-112.114112, 46.89021],\n      [-112.110716, 46.888379],\n      [-112.110338, 46.888159],\n      [-112.106096, 46.885885],\n      [-112.101398, 46.88336],\n      [-112.094609, 46.879651],\n      [-112.0931, 46.878959],\n      [-112.091311, 46.878288],\n      [-112.089958, 46.877867],\n      [-112.088521, 46.877511],\n      [-112.069016, 46.872724],\n      [-112.049279, 46.867857],\n      [-112.047103, 46.867189],\n      [-112.044993, 46.866382],\n      [-112.043719, 46.865827],\n      [-112.042541, 46.865241],\n      [-112.040586, 46.864168],\n      [-112.039263, 46.863298],\n      [-112.037988, 46.862365],\n      [-112.036738, 46.86133],\n      [-112.014076, 46.842104],\n      [-112.012788, 46.840941],\n      [-112.011749, 46.839918],\n      [-112.010445, 46.83844],\n      [-112.009025, 46.83667],\n      [-112.007922, 46.83499],\n      [-112.007123, 46.833605],\n      [-112.006361, 46.832073],\n      [-112.005882, 46.830963],\n      [-112.003109, 46.824179],\n      [-112.002795, 46.823308],\n      [-112.001559, 46.820272],\n      [-112.001405, 46.819943],\n      [-112.001005, 46.818846],\n      [-112.000667, 46.817632],\n      [-112.000578, 46.816809],\n      [-112.000493, 46.815794],\n      [-112.000516, 46.814928],\n      [-112.000693, 46.813761],\n      [-112.001162, 46.812127],\n      [-112.001628, 46.811112],\n      [-112.002462, 46.809713],\n      [-112.003317, 46.808598],\n      [-112.004049, 46.80782],\n      [-112.005118, 46.806834],\n      [-112.006592, 46.805739],\n      [-112.028016, 46.792156],\n      [-112.029741, 46.790912],\n      [-112.030745, 46.79008],\n      [-112.031484, 46.78938],\n      [-112.032257, 46.788498],\n      [-112.033266, 46.787176],\n      [-112.033873, 46.786179],\n      [-112.034356, 46.785153],\n      [-112.03474, 46.784222],\n      [-112.035041, 46.783106],\n      [-112.035281, 46.78179],\n      [-112.035332, 46.780429],\n      [-112.035162, 46.778932],\n      [-112.034994, 46.7781],\n      [-112.034623, 46.77676],\n      [-112.031439, 46.767593],\n      [-112.030872, 46.766116],\n      [-112.03058, 46.765566],\n      [-112.0298, 46.76452],\n      [-112.029051, 46.763776],\n      [-112.027625, 46.762715],\n      [-112.021142, 46.759474],\n      [-112.019784, 46.758674],\n      [-112.018427, 46.757701],\n      [-112.017026, 46.756401],\n      [-112.01646, 46.75581],\n      [-112.015787, 46.754949],\n      [-112.015034, 46.753726],\n      [-112.014675, 46.752957],\n      [-112.014369, 46.752178],\n      [-112.014113, 46.751252],\n      [-112.013978, 46.7503],\n      [-112.013965, 46.748917],\n      [-112.01407, 46.747974],\n      [-112.014425, 46.74657],\n      [-112.017111, 46.737855],\n      [-112.017375, 46.736784],\n      [-112.017607, 46.735355],\n      [-112.017673, 46.734409],\n      [-112.017685, 46.733581],\n      [-112.017588, 46.732104],\n      [-112.017413, 46.730961],\n      [-112.016851, 46.728893],\n      [-112.016052, 46.726997],\n      [-112.015229, 46.725474],\n      [-112.014031, 46.723297],\n      [-112.013406, 46.721963],\n      [-112.012932, 46.720654],\n      [-112.012536, 46.719097],\n      [-112.012339, 46.717599],\n      [-112.012283, 46.716345],\n      [-112.012185, 46.707222],\n      [-112.012075, 46.70024],\n      [-112.011602, 46.660701],\n      [-112.011601, 46.660313],\n      [-112.011436, 46.648193],\n      [-112.011441, 46.648028],\n      [-112.011427, 46.646569],\n      [-112.011246, 46.631754],\n      [-112.011146, 46.621062],\n      [-112.011132, 46.619553],\n      [-112.01109, 46.616805],\n      [-112.011059, 46.614798],\n      [-112.011048, 46.61406],\n      [-112.011037, 46.613709],\n      [-112.010993, 46.613319],\n      [-112.010941, 46.613077],\n      [-112.010877, 46.612674],\n      [-112.010838, 46.612474],\n      [-112.010746, 46.61207],\n      [-112.01064, 46.611666],\n      [-112.010587, 46.611464],\n      [-112.010508, 46.611263],\n      [-112.010314, 46.610728],\n      [-112.010256, 46.610545],\n      [-112.010198, 46.610369],\n      [-112.009915, 46.609824],\n      [-112.009739, 46.609444],\n      [-112.009564, 46.609128],\n      [-112.009295, 46.608718],\n      [-112.006524, 46.603944],\n      [-112.003906, 46.599455],\n      [-112.002681, 46.597363],\n      [-112.001205, 46.594784],\n      [-112.0, 46.592799],\n      [-111.999632, 46.592286],\n      [-111.999301, 46.591861],\n      [-111.998522, 46.590983],\n      [-111.99828, 46.590699],\n      [-111.997972, 46.590398],\n      [-111.996867, 46.589396],\n      [-111.996488, 46.589096],\n      [-111.995735, 46.58854],\n      [-111.988743, 46.583855],\n      [-111.983795, 46.580551],\n      [-111.98049, 46.578347],\n      [-111.978312, 46.576892],\n      [-111.976196, 46.575478],\n      [-111.970612, 46.571744],\n      [-111.969019, 46.570651],\n      [-111.966637, 46.569071],\n      [-111.957631, 46.563066],\n      [-111.956867, 46.562459],\n      [-111.956078, 46.56178],\n      [-111.955528, 46.561278],\n      [-111.95503, 46.560765],\n      [-111.954464, 46.560133],\n      [-111.953992, 46.559508],\n      [-111.953623, 46.558994],\n      [-111.953365, 46.558587],\n      [-111.953022, 46.558003],\n      [-111.95261, 46.557224],\n      [-111.951443, 46.55468],\n      [-111.946695, 46.544203],\n      [-111.946304, 46.54331],\n      [-111.945744, 46.542172],\n      [-111.945185, 46.540831],\n      [-111.944611, 46.539567],\n      [-111.943999, 46.538252],\n      [-111.943392, 46.536869],\n      [-111.941186, 46.532081],\n      [-111.940903, 46.53142],\n      [-111.940559, 46.530629],\n      [-111.940379, 46.530109],\n      [-111.940293, 46.529684],\n      [-111.940268, 46.529241],\n      [-111.940319, 46.528857],\n      [-111.940422, 46.528432],\n      [-111.940568, 46.528025],\n      [-111.94074, 46.527676],\n      [-111.940971, 46.527322],\n      [-111.941246, 46.527003],\n      [-111.941667, 46.526619],\n      [-111.943134, 46.525497],\n      [-111.943589, 46.525125],\n      [-111.94401, 46.524718],\n      [-111.944344, 46.524346],\n      [-111.944662, 46.523974],\n      [-111.944902, 46.523625],\n      [-111.945151, 46.52323],\n      [-111.9454, 46.522775],\n      [-111.945606, 46.522326],\n      [-111.945744, 46.521966],\n      [-111.945855, 46.521511],\n      [-111.947984, 46.511742],\n      [-111.948095, 46.51137],\n      [-111.948361, 46.510661],\n      [-111.949408, 46.508074],\n      [-111.952344, 46.500837],\n      [-111.952541, 46.500393],\n      [-111.952825, 46.499944],\n      [-111.953168, 46.49946],\n      [-111.953494, 46.499105],\n      [-111.953932, 46.498775],\n      [-111.954764, 46.49819],\n      [-111.958575, 46.495909],\n      [-111.959245, 46.495501],\n      [-111.960052, 46.495017],\n      [-111.961021, 46.494414],\n      [-111.961871, 46.493912],\n      [-111.962729, 46.493415],\n      [-111.963579, 46.492825],\n      [-111.964025, 46.4925],\n      [-111.964661, 46.492015],\n      [-111.965124, 46.491625],\n      [-111.965656, 46.491123],\n      [-111.966369, 46.49042],\n      [-111.96709, 46.489651],\n      [-111.976325, 46.479522],\n      [-111.976891, 46.478848],\n      [-111.977312, 46.47834],\n      [-111.977733, 46.477808],\n      [-111.977973, 46.477465],\n      [-111.978127, 46.477211],\n      [-111.978282, 46.476974],\n      [-111.97884, 46.475928],\n      [-111.979217, 46.475042],\n      [-111.980033, 46.473044],\n      [-111.980271, 46.472374],\n      [-111.980435, 46.471976],\n      [-111.980677, 46.471349],\n      [-111.980952, 46.470648],\n      [-111.981239, 46.4699],\n      [-111.981493, 46.46921],\n      [-111.981736, 46.468592],\n      [-111.981874, 46.468256],\n      [-111.982316, 46.467018],\n      [-111.982732, 46.465939],\n      [-111.982851, 46.465572],\n      [-111.983251, 46.464294],\n      [-111.983315, 46.464025],\n      [-111.983475, 46.463313],\n      [-111.983818, 46.462054],\n      [-111.98424, 46.460487],\n      [-111.985346, 46.456259],\n      [-111.985844, 46.45432],\n      [-111.986814, 46.450701],\n      [-111.986994, 46.449938],\n      [-111.987251, 46.449004],\n      [-111.987543, 46.4483],\n      [-111.987809, 46.447709],\n      [-111.988255, 46.446833],\n      [-111.990024, 46.443882],\n      [-111.990719, 46.44254],\n      [-111.99283, 46.438169],\n      [-111.995886, 46.431816],\n      [-111.996143, 46.431165],\n      [-111.996341, 46.430644],\n      [-111.996598, 46.42984],\n      [-111.996753, 46.429213],\n      [-111.99689, 46.428609],\n      [-111.997405, 46.425385],\n      [-111.997642, 46.424314],\n      [-111.997932, 46.423545],\n      [-111.998107, 46.423114],\n      [-111.99835, 46.422586],\n      [-111.998575, 46.422164],\n      [-111.998884, 46.421653],\n      [-111.999228, 46.421145],\n      [-111.999447, 46.420848],\n      [-111.999923, 46.420267],\n      [-112.000156, 46.42],\n      [-112.000433, 46.41971],\n      [-112.00089, 46.419258],\n      [-112.001482, 46.418746],\n      [-112.002113, 46.418226],\n      [-112.00272, 46.417745],\n      [-112.002961, 46.417554],\n      [-112.003548, 46.417078],\n      [-112.004211, 46.41654],\n      [-112.004746, 46.416099],\n      [-112.005461, 46.41553],\n      [-112.005985, 46.415112],\n      [-112.006394, 46.414775],\n      [-112.006854, 46.414405],\n      [-112.007245, 46.4141],\n      [-112.00765, 46.413758],\n      [-112.00797, 46.413501],\n      [-112.008169, 46.413338],\n      [-112.008593, 46.412997],\n      [-112.009014, 46.412645],\n      [-112.009385, 46.412341],\n      [-112.009697, 46.412025],\n      [-112.010255, 46.411528],\n      [-112.010946, 46.410853],\n      [-112.011431, 46.410352],\n      [-112.011895, 46.409867],\n      [-112.012165, 46.409569],\n      [-112.012675, 46.408992],\n      [-112.013067, 46.408517],\n      [-112.013404, 46.408107],\n      [-112.013911, 46.407447],\n      [-112.014218, 46.407046],\n      [-112.014492, 46.406653],\n      [-112.015033, 46.405845],\n      [-112.01524, 46.405542],\n      [-112.015368, 46.405329],\n      [-112.015741, 46.40471],\n      [-112.015972, 46.404308],\n      [-112.016318, 46.403688],\n      [-112.016624, 46.403056],\n      [-112.01703, 46.402204],\n      [-112.017522, 46.401159],\n      [-112.017917, 46.400311],\n      [-112.019197, 46.397512],\n      [-112.019961, 46.395938],\n      [-112.020503, 46.394858],\n      [-112.020846, 46.394173],\n      [-112.021172, 46.393579],\n      [-112.021321, 46.393351],\n      [-112.021496, 46.393063],\n      [-112.021714, 46.392713],\n      [-112.021925, 46.392391],\n      [-112.022307, 46.391799],\n      [-112.022576, 46.391431],\n      [-112.02269, 46.391255],\n      [-112.022776, 46.391138],\n      [-112.023072, 46.390745],\n      [-112.023396, 46.390333],\n      [-112.023636, 46.390016],\n      [-112.02407, 46.389472],\n      [-112.02447, 46.388962],\n      [-112.025293, 46.387893],\n      [-112.025518, 46.387587],\n      [-112.025835, 46.387153],\n      [-112.02604, 46.386874],\n      [-112.026296, 46.386489],\n      [-112.026502, 46.386192],\n      [-112.026698, 46.385898],\n      [-112.027204, 46.385069],\n      [-112.027659, 46.384252],\n      [-112.027743, 46.384088],\n      [-112.0278, 46.383963],\n      [-112.02782, 46.383925],\n      [-112.027998, 46.383561],\n      [-112.028106, 46.383379],\n      [-112.028359, 46.382926],\n      [-112.028737, 46.382022],\n      [-112.029617, 46.379591],\n      [-112.030115, 46.378271],\n      [-112.030424, 46.377365],\n      [-112.030767, 46.376572],\n      [-112.031059, 46.375944],\n      [-112.033059, 46.372077],\n      [-112.033626, 46.37091],\n      [-112.033917, 46.370342],\n      [-112.034252, 46.369714],\n      [-112.034492, 46.369293],\n      [-112.03481, 46.368766],\n      [-112.035136, 46.368298],\n      [-112.035445, 46.367848],\n      [-112.03584, 46.367386],\n      [-112.036295, 46.366877],\n      [-112.036879, 46.366249],\n      [-112.043015, 46.359532],\n      [-112.043436, 46.359053],\n      [-112.043754, 46.358638],\n      [-112.044011, 46.358283],\n      [-112.044234, 46.357927],\n      [-112.044475, 46.357501],\n      [-112.044698, 46.357062],\n      [-112.044852, 46.356719],\n      [-112.044972, 46.356357],\n      [-112.045093, 46.355972],\n      [-112.045204, 46.355534],\n      [-112.045281, 46.355173],\n      [-112.04535, 46.354693],\n      [-112.045384, 46.354284],\n      [-112.045376, 46.353828],\n      [-112.045359, 46.353206],\n      [-112.045058, 46.350658],\n      [-112.045032, 46.350072],\n      [-112.045075, 46.349545],\n      [-112.045178, 46.349154],\n      [-112.045317, 46.348787],\n      [-112.045481, 46.348449],\n      [-112.045687, 46.348135],\n      [-112.04591, 46.347851],\n      [-112.046202, 46.347519],\n      [-112.048562, 46.345392],\n      [-112.048862, 46.34509],\n      [-112.049146, 46.34477],\n      [-112.04936, 46.344467],\n      [-112.04954, 46.344153],\n      [-112.049738, 46.343721],\n      [-112.049849, 46.343241],\n      [-112.049884, 46.343028],\n      [-112.049892, 46.342755],\n      [-112.049884, 46.3424],\n      [-112.049806, 46.341931],\n      [-112.049396, 46.34035],\n      [-112.049218, 46.339673],\n      [-112.049159, 46.33933],\n      [-112.049143, 46.339002],\n      [-112.049168, 46.338597],\n      [-112.049229, 46.338284],\n      [-112.049292, 46.338051],\n      [-112.049341, 46.337839],\n      [-112.049439, 46.337616],\n      [-112.049559, 46.337404],\n      [-112.0497, 46.337162],\n      [-112.049936, 46.33687],\n      [-112.05015, 46.336595],\n      [-112.054836, 46.331763],\n      [-112.055497, 46.33117],\n      [-112.055875, 46.33085],\n      [-112.056372, 46.33053],\n      [-112.05687, 46.330263],\n      [-112.057445, 46.330044],\n      [-112.058132, 46.329789],\n      [-112.060261, 46.329273],\n      [-112.060879, 46.329137],\n      [-112.061445, 46.328959],\n      [-112.061994, 46.328752],\n      [-112.062561, 46.32845],\n      [-112.06317, 46.3281],\n      [-112.063625, 46.327786],\n      [-112.064054, 46.327371],\n      [-112.064466, 46.326891],\n      [-112.06523, 46.325741],\n      [-112.065677, 46.325125],\n      [-112.066028, 46.324674],\n      [-112.06638, 46.324318],\n      [-112.066904, 46.323868],\n      [-112.067505, 46.323501],\n      [-112.06826, 46.323109],\n      [-112.069642, 46.322445],\n      [-112.070509, 46.322007],\n      [-112.071195, 46.321663],\n      [-112.071728, 46.321378],\n      [-112.07238, 46.320958],\n      [-112.073067, 46.320519],\n      [-112.073762, 46.320045],\n      [-112.074277, 46.319582],\n      [-112.074732, 46.319138],\n      [-112.075169, 46.318705],\n      [-112.075599, 46.318189],\n      [-112.076053, 46.317626],\n      [-112.076371, 46.317182],\n      [-112.076732, 46.316589],\n      [-112.077058, 46.315949],\n      [-112.077616, 46.31452],\n      [-112.077985, 46.313459],\n      [-112.078268, 46.312795],\n      [-112.078491, 46.31232],\n      [-112.0788, 46.311751],\n      [-112.079212, 46.31117],\n      [-112.079718, 46.310435],\n      [-112.0808, 46.308627],\n      [-112.081126, 46.30801],\n      [-112.081375, 46.307316],\n      [-112.081512, 46.306724],\n      [-112.081607, 46.306131],\n      [-112.081735, 46.304998],\n      [-112.081856, 46.304358],\n      [-112.082079, 46.303688],\n      [-112.082319, 46.303172],\n      [-112.082594, 46.302692],\n      [-112.082946, 46.302205],\n      [-112.083306, 46.301814],\n      [-112.083804, 46.301334],\n      [-112.08447, 46.300831],\n      [-112.085263, 46.300355],\n      [-112.086027, 46.299964],\n      [-112.089752, 46.298446],\n      [-112.090979, 46.297859],\n      [-112.091958, 46.297337],\n      [-112.092799, 46.296756],\n      [-112.093486, 46.296287],\n      [-112.094104, 46.295694],\n      [-112.09473, 46.295036],\n      [-112.095159, 46.294538],\n      [-112.09558, 46.293992],\n      [-112.09594, 46.293381],\n      [-112.096445, 46.292397],\n      [-112.096685, 46.291614],\n      [-112.09702, 46.290422],\n      [-112.097449, 46.288406],\n      [-112.097724, 46.287409],\n      [-112.098136, 46.286312],\n      [-112.099116, 46.284397],\n      [-112.099274, 46.284063],\n      [-112.10053, 46.281349],\n      [-112.101118, 46.280084],\n      [-112.102891, 46.276318],\n      [-112.104027, 46.273935],\n      [-112.104859, 46.272141],\n      [-112.105342, 46.271125],\n      [-112.106274, 46.269146],\n      [-112.107087, 46.267404],\n      [-112.111234, 46.258546],\n      [-112.112659, 46.255466],\n      [-112.114521, 46.251525],\n      [-112.114976, 46.250676],\n      [-112.115508, 46.249899],\n      [-112.115937, 46.249329],\n      [-112.116633, 46.248581],\n      [-112.117748, 46.247554],\n      [-112.11925, 46.246504],\n      [-112.12022, 46.245934],\n      [-112.120967, 46.245566],\n      [-112.121954, 46.245133],\n      [-112.124992, 46.244052],\n      [-112.13288, 46.241298],\n      [-112.133387, 46.24112],\n      [-112.138622, 46.239291],\n      [-112.145034, 46.237065],\n      [-112.146141, 46.236745],\n      [-112.147008, 46.236519],\n      [-112.147806, 46.236394],\n      [-112.148459, 46.236305],\n      [-112.149265, 46.236246],\n      [-112.150089, 46.236222],\n      [-112.151042, 46.236246],\n      [-112.151883, 46.236317],\n      [-112.152699, 46.236436],\n      [-112.153471, 46.236584],\n      [-112.154474, 46.236837],\n      [-112.15899, 46.238152],\n      [-112.160595, 46.238543],\n      [-112.162483, 46.238947],\n      [-112.163367, 46.23922],\n      [-112.164054, 46.239529],\n      [-112.164698, 46.239897],\n      [-112.165273, 46.24033],\n      [-112.166844, 46.241642],\n      [-112.167307, 46.241963],\n      [-112.1685, 46.242669],\n      [-112.169144, 46.243085],\n      [-112.169659, 46.24356],\n      [-112.170912, 46.244966],\n      [-112.171367, 46.245364],\n      [-112.172131, 46.245898],\n      [-112.173204, 46.246522],\n      [-112.174276, 46.247169],\n      [-112.174817, 46.24762],\n      [-112.175298, 46.24816],\n      [-112.175555, 46.248587],\n      [-112.17577, 46.248973],\n      [-112.175924, 46.249424],\n      [-112.176336, 46.250552],\n      [-112.176517, 46.25092],\n      [-112.17674, 46.251276],\n      [-112.176997, 46.251626],\n      [-112.177418, 46.252083],\n      [-112.177787, 46.252344],\n      [-112.178165, 46.252617],\n      [-112.180775, 46.254129],\n      [-112.181007, 46.254269],\n      [-112.183097, 46.255454],\n      [-112.183493, 46.255702],\n      [-112.184164, 46.256171],\n      [-112.184905, 46.256737],\n      [-112.185365, 46.257141],\n      [-112.185885, 46.257562],\n      [-112.186185, 46.2578],\n      [-112.186531, 46.258043],\n      [-112.186972, 46.258275],\n      [-112.187322, 46.258422],\n      [-112.187774, 46.258598],\n      [-112.188155, 46.258726],\n      [-112.188842, 46.25893],\n      [-112.190061, 46.259233],\n      [-112.194417, 46.260296],\n      [-112.194914, 46.260425],\n      [-112.197467, 46.261049],\n      [-112.198131, 46.261215],\n      [-112.198816, 46.261348],\n      [-112.200563, 46.261639],\n      [-112.2012, 46.261735],\n      [-112.201697, 46.261796],\n      [-112.202216, 46.261831],\n      [-112.202661, 46.261847],\n      [-112.203293, 46.261844],\n      [-112.203843, 46.26181],\n      [-112.204643, 46.261713],\n      [-112.205502, 46.261541],\n      [-112.206283, 46.261328],\n      [-112.207158, 46.260978],\n      [-112.20773, 46.260725],\n      [-112.208199, 46.260464],\n      [-112.209872, 46.259361],\n      [-112.210845, 46.258723],\n      [-112.211437, 46.258407],\n      [-112.21171, 46.258294],\n      [-112.211974, 46.258207],\n      [-112.212216, 46.258142],\n      [-112.212463, 46.258092],\n      [-112.212751, 46.258048],\n      [-112.213051, 46.258024],\n      [-112.213334, 46.258019],\n      [-112.213692, 46.258035],\n      [-112.213988, 46.258065],\n      [-112.214247, 46.258108],\n      [-112.214549, 46.258186],\n      [-112.21472, 46.258241],\n      [-112.214928, 46.258313],\n      [-112.21526, 46.258456],\n      [-112.215539, 46.258605],\n      [-112.215859, 46.258826],\n      [-112.216123, 46.259059],\n      [-112.216344, 46.259307],\n      [-112.216538, 46.259564],\n      [-112.217304, 46.260578],\n      [-112.217586, 46.260888],\n      [-112.217887, 46.26118],\n      [-112.218436, 46.261654],\n      [-112.219097, 46.262058],\n      [-112.219818, 46.262508],\n      [-112.220179, 46.262823],\n      [-112.220462, 46.263203],\n      [-112.220625, 46.263654],\n      [-112.220625, 46.264105],\n      [-112.220513, 46.26455],\n      [-112.220273, 46.264918],\n      [-112.21993, 46.265238],\n      [-112.219466, 46.265558],\n      [-112.218514, 46.266039],\n      [-112.218288, 46.266167],\n      [-112.218079, 46.266291],\n      [-112.217885, 46.266411],\n      [-112.217737, 46.266539],\n      [-112.217605, 46.266696],\n      [-112.217501, 46.266818],\n      [-112.217396, 46.266989],\n      [-112.21734, 46.267123],\n      [-112.217303, 46.267314],\n      [-112.217283, 46.267445],\n      [-112.217325, 46.267714],\n      [-112.217476, 46.26824],\n      [-112.217544, 46.268438],\n      [-112.217592, 46.268538],\n      [-112.217628, 46.268615],\n      [-112.217724, 46.268751],\n      [-112.217818, 46.268858],\n      [-112.217936, 46.268959],\n      [-112.21813, 46.269104],\n      [-112.218353, 46.26922],\n      [-112.218727, 46.26937],\n      [-112.219166, 46.269489],\n      [-112.219721, 46.269609],\n      [-112.220202, 46.269698],\n      [-112.220646, 46.269797],\n      [-112.220996, 46.2699],\n      [-112.22144, 46.27005],\n      [-112.222711, 46.270631],\n      [-112.223277, 46.270851],\n      [-112.22399, 46.271017],\n      [-112.224668, 46.271076],\n      [-112.225371, 46.270993],\n      [-112.227174, 46.270608],\n      [-112.227989, 46.270507],\n      [-112.22883, 46.270519],\n      [-112.229611, 46.270726],\n      [-112.232341, 46.271693],\n      [-112.232993, 46.27186],\n      [-112.233723, 46.271966],\n      [-112.234744, 46.271978],\n      [-112.239606, 46.271805],\n      [-112.242182, 46.271693],\n      [-112.246347, 46.271502],\n      [-112.246967, 46.271459],\n      [-112.247491, 46.271415],\n      [-112.247911, 46.271379],\n      [-112.248545, 46.271312],\n      [-112.249143, 46.271217],\n      [-112.250763, 46.270938],\n      [-112.251919, 46.270715],\n      [-112.254271, 46.270264],\n      [-112.255138, 46.270086],\n      [-112.255979, 46.269973],\n      [-112.256923, 46.269854],\n      [-112.257798, 46.269753],\n      [-112.258871, 46.269706],\n      [-112.259953, 46.269694],\n      [-112.260408, 46.269688],\n      [-112.260811, 46.269688],\n      [-112.265927, 46.269838],\n      [-112.266364, 46.269845],\n      [-112.268516, 46.269903],\n      [-112.26928, 46.269923],\n      [-112.269822, 46.269932],\n      [-112.270297, 46.269936],\n      [-112.270632, 46.269932],\n      [-112.271986, 46.269899],\n      [-112.272496, 46.269882],\n      [-112.272871, 46.269875],\n      [-112.273201, 46.26988],\n      [-112.273496, 46.269893],\n      [-112.273848, 46.269921],\n      [-112.274451, 46.269986],\n      [-112.275304, 46.270084],\n      [-112.275736, 46.270129],\n      [-112.276214, 46.270171],\n      [-112.276581, 46.270192],\n      [-112.276954, 46.270201],\n      [-112.277383, 46.270195],\n      [-112.277783, 46.270179],\n      [-112.278217, 46.270151],\n      [-112.278636, 46.270112],\n      [-112.27903, 46.270058],\n      [-112.279521, 46.269977],\n      [-112.280084, 46.269869],\n      [-112.280575, 46.269771],\n      [-112.281036, 46.269673],\n      [-112.281492, 46.269558],\n      [-112.281919, 46.269443],\n      [-112.282407, 46.269304],\n      [-112.28289, 46.269153],\n      [-112.283292, 46.269013],\n      [-112.283616, 46.26889],\n      [-112.283914, 46.268764],\n      [-112.284169, 46.268638],\n      [-112.284394, 46.268516],\n      [-112.284601, 46.268394],\n      [-112.284775, 46.268275],\n      [-112.284955, 46.268131],\n      [-112.285087, 46.268013],\n      [-112.285191, 46.267897],\n      [-112.285277, 46.267793],\n      [-112.285357, 46.267683],\n      [-112.28543, 46.267542],\n      [-112.285505, 46.267379],\n      [-112.285561, 46.267208],\n      [-112.285596, 46.267049],\n      [-112.28561, 46.266897],\n      [-112.285612, 46.266763],\n      [-112.285599, 46.266613],\n      [-112.285569, 46.266448],\n      [-112.285505, 46.266261],\n      [-112.28543, 46.266096],\n      [-112.285194, 46.265664],\n      [-112.285025, 46.265406],\n      [-112.284866, 46.265152],\n      [-112.284775, 46.264974],\n      [-112.284703, 46.264813],\n      [-112.284646, 46.264655],\n      [-112.284614, 46.264507],\n      [-112.284598, 46.264379],\n      [-112.284598, 46.26421],\n      [-112.284617, 46.264062],\n      [-112.284665, 46.263899],\n      [-112.284727, 46.263728],\n      [-112.284759, 46.263669],\n      [-112.284821, 46.263548],\n      [-112.284909, 46.263418],\n      [-112.284995, 46.263313],\n      [-112.285121, 46.263177],\n      [-112.285277, 46.263038],\n      [-112.285408, 46.262932],\n      [-112.285591, 46.262814],\n      [-112.285765, 46.262716],\n      [-112.285998, 46.262614],\n      [-112.286237, 46.262523],\n      [-112.286454, 46.262454],\n      [-112.286722, 46.262397],\n      [-112.286953, 46.262358],\n      [-112.287205, 46.262334],\n      [-112.287431, 46.262324],\n      [-112.287599, 46.262324],\n      [-112.287755, 46.262332],\n      [-112.287908, 46.262343],\n      [-112.28809, 46.262371],\n      [-112.288289, 46.262408],\n      [-112.288533, 46.262469],\n      [-112.28878, 46.262545],\n      [-112.289056, 46.262641],\n      [-112.28941, 46.262779],\n      [-112.292288, 46.263915],\n      [-112.295423, 46.265141],\n      [-112.295772, 46.265276],\n      [-112.296799, 46.265681],\n      [-112.297288, 46.265857],\n      [-112.29766, 46.26597],\n      [-112.297998, 46.266064],\n      [-112.298326, 46.266135],\n      [-112.298693, 46.266202],\n      [-112.29902, 46.266252],\n      [-112.299407, 46.266294],\n      [-112.299973, 46.26635],\n      [-112.301962, 46.266518],\n      [-112.303677, 46.266665],\n      [-112.30416, 46.266715],\n      [-112.304799, 46.266799],\n      [-112.305829, 46.266965],\n      [-112.307302, 46.26725],\n      [-112.307798, 46.267339],\n      [-112.308222, 46.267413],\n      [-112.308627, 46.267476],\n      [-112.308997, 46.267518],\n      [-112.309343, 46.267554],\n      [-112.309617, 46.267578],\n      [-112.309941, 46.267591],\n      [-112.310258, 46.267602],\n      [-112.310641, 46.267611],\n      [-112.310985, 46.267613],\n      [-112.311296, 46.267607],\n      [-112.311658, 46.267591],\n      [-112.312055, 46.267565],\n      [-112.312425, 46.267535],\n      [-112.312795, 46.267492],\n      [-112.313219, 46.267435],\n      [-112.313683, 46.267359],\n      [-112.31408, 46.267281],\n      [-112.314484, 46.267191],\n      [-112.314867, 46.26709],\n      [-112.315256, 46.26698],\n      [-112.315717, 46.266837],\n      [-112.316613, 46.266561],\n      [-112.317018, 46.266437],\n      [-112.317471, 46.266313],\n      [-112.317997, 46.266179],\n      [-112.318925, 46.265949],\n      [-112.320151, 46.265632],\n      [-112.321393, 46.265313],\n      [-112.325427, 46.26428],\n      [-112.326138, 46.264095],\n      [-112.326859, 46.263917],\n      [-112.327936, 46.263635],\n      [-112.330428, 46.263002],\n      [-112.333211, 46.262287],\n      [-112.334007, 46.262079],\n      [-112.335292, 46.261753],\n      [-112.335686, 46.261652],\n      [-112.336028, 46.261559],\n      [-112.33637, 46.261454],\n      [-112.33667, 46.261355],\n      [-112.336988, 46.261243],\n      [-112.337325, 46.261115],\n      [-112.33768, 46.260971],\n      [-112.338038, 46.260813],\n      [-112.338363, 46.260662],\n      [-112.338625, 46.26053],\n      [-112.338933, 46.260366],\n      [-112.340256, 46.259429],\n      [-112.341003, 46.258829],\n      [-112.341337, 46.25845],\n      [-112.341646, 46.258088],\n      [-112.342041, 46.257506],\n      [-112.342264, 46.257085],\n      [-112.342513, 46.256616],\n      [-112.342736, 46.256052],\n      [-112.343048, 46.25519],\n      [-112.343088, 46.254628],\n      [-112.343114, 46.25404],\n      [-112.342997, 46.253333],\n      [-112.342814, 46.252527],\n      [-112.342556, 46.25188],\n      [-112.341586, 46.249939],\n      [-112.341209, 46.248971],\n      [-112.340942, 46.248152],\n      [-112.340797, 46.247393],\n      [-112.340711, 46.246752],\n      [-112.340698, 46.245956],\n      [-112.340797, 46.24509],\n      [-112.340934, 46.2443],\n      [-112.341088, 46.243617],\n      [-112.341363, 46.242745],\n      [-112.343732, 46.236132],\n      [-112.343955, 46.235443],\n      [-112.344213, 46.23479],\n      [-112.34459, 46.234178],\n      [-112.345088, 46.233513],\n      [-112.346384, 46.231827],\n      [-112.346848, 46.231067],\n      [-112.347062, 46.230402],\n      [-112.347208, 46.229666],\n      [-112.34738, 46.228247],\n      [-112.347457, 46.227659],\n      [-112.347706, 46.22662],\n      [-112.348072, 46.225486],\n      [-112.348787, 46.223592],\n      [-112.349165, 46.22241],\n      [-112.349268, 46.221798],\n      [-112.349251, 46.221163],\n      [-112.348908, 46.218621],\n      [-112.348822, 46.218081],\n      [-112.348822, 46.217392],\n      [-112.348959, 46.216762],\n      [-112.34944, 46.215301],\n      [-112.349521, 46.214586],\n      [-112.349491, 46.214013],\n      [-112.349328, 46.213591],\n      [-112.349028, 46.213021],\n      [-112.348633, 46.212492],\n      [-112.348169, 46.211999],\n      [-112.34762, 46.211619],\n      [-112.346856, 46.211156],\n      [-112.345869, 46.21058],\n      [-112.3452, 46.210051],\n      [-112.344728, 46.209576],\n      [-112.343234, 46.207925],\n      [-112.342659, 46.207307],\n      [-112.341921, 46.206677],\n      [-112.340814, 46.205816],\n      [-112.34041, 46.205465],\n      [-112.340067, 46.205085],\n      [-112.339802, 46.204693],\n      [-112.339704, 46.204467],\n      [-112.339636, 46.204269],\n      [-112.339591, 46.204027],\n      [-112.339612, 46.20382],\n      [-112.339732, 46.203256],\n      [-112.340033, 46.20262],\n      [-112.340582, 46.201913],\n      [-112.341621, 46.200885],\n      [-112.342062, 46.200298],\n      [-112.342242, 46.199944],\n      [-112.342396, 46.199584],\n      [-112.342597, 46.199091],\n      [-112.342775, 46.198631],\n      [-112.343062, 46.198034],\n      [-112.343303, 46.197541],\n      [-112.343792, 46.196904],\n      [-112.344693, 46.196127],\n      [-112.345387, 46.19542],\n      [-112.345729, 46.194938],\n      [-112.345917, 46.194643],\n      [-112.346069, 46.194349],\n      [-112.346166, 46.194045],\n      [-112.346238, 46.193697],\n      [-112.34623, 46.193103],\n      [-112.345941, 46.190673],\n      [-112.345878, 46.189902],\n      [-112.345728, 46.189213],\n      [-112.345709, 46.188344],\n      [-112.345571, 46.187533],\n      [-112.345558, 46.186912],\n      [-112.345564, 46.185992],\n      [-112.345749, 46.183453],\n      [-112.346234, 46.177623],\n      [-112.346347, 46.176821],\n      [-112.346473, 46.176275],\n      [-112.34671, 46.175728],\n      [-112.347062, 46.17511],\n      [-112.347483, 46.174486],\n      [-112.34822, 46.173702],\n      [-112.349208, 46.17291],\n      [-112.3521, 46.171121],\n      [-112.352701, 46.170843],\n      [-112.353354, 46.170627],\n      [-112.354238, 46.170443],\n      [-112.355396, 46.170378],\n      [-112.356246, 46.170461],\n      [-112.358186, 46.170764],\n      [-112.359293, 46.170788],\n      [-112.360246, 46.170669],\n      [-112.361216, 46.170425],\n      [-112.362177, 46.170093],\n      [-112.362941, 46.16973],\n      [-112.363559, 46.169296],\n      [-112.364125, 46.168743],\n      [-112.364529, 46.168119],\n      [-112.365267, 46.167103],\n      [-112.365816, 46.166663],\n      [-112.3664, 46.166336],\n      [-112.367129, 46.166098],\n      [-112.367868, 46.165967],\n      [-112.368692, 46.165944],\n      [-112.371773, 46.166039],\n      [-112.372811, 46.166015],\n      [-112.37367, 46.165902],\n      [-112.374588, 46.165706],\n      [-112.375592, 46.165379],\n      [-112.376571, 46.164951],\n      [-112.377318, 46.164529],\n      [-112.378076, 46.163952],\n      [-112.378262, 46.163762],\n      [-112.378614, 46.163364],\n      [-112.378914, 46.162965],\n      [-112.379469, 46.162169],\n      [-112.382055, 46.158245],\n      [-112.384021, 46.155308],\n      [-112.385566, 46.152959],\n      [-112.387334, 46.150272],\n      [-112.388458, 46.14862],\n      [-112.389451, 46.147108],\n      [-112.391789, 46.143594],\n      [-112.398669, 46.133222],\n      [-112.400972, 46.129712],\n      [-112.4066, 46.121302],\n      [-112.407393, 46.120004],\n      [-112.408182, 46.118582],\n      [-112.408541, 46.117899],\n      [-112.409937, 46.114817],\n      [-112.411055, 46.112333],\n      [-112.412388, 46.109365],\n      [-112.413655, 46.106653],\n      [-112.414778, 46.10418],\n      [-112.415206, 46.103314],\n      [-112.415668, 46.102487],\n      [-112.415895, 46.102106],\n      [-112.416464, 46.101176],\n      [-112.417083, 46.100254],\n      [-112.418499, 46.098356],\n      [-112.418915, 46.09769],\n      [-112.419526, 46.096677],\n      [-112.420233, 46.095398],\n      [-112.422479, 46.091058],\n      [-112.424336, 46.087469],\n      [-112.429652, 46.0772],\n      [-112.429822, 46.076884],\n      [-112.431392, 46.07384],\n      [-112.436257, 46.064391],\n      [-112.436937, 46.063074],\n      [-112.438079, 46.061044],\n      [-112.438376, 46.060532],\n      [-112.438666, 46.060066],\n      [-112.43881, 46.05984],\n      [-112.439098, 46.05943],\n      [-112.43934, 46.059064],\n      [-112.439532, 46.058774],\n      [-112.440107, 46.058002],\n      [-112.44038, 46.05765],\n      [-112.441731, 46.056019],\n      [-112.443485, 46.053949],\n      [-112.447802, 46.048851],\n      [-112.45155, 46.044489],\n      [-112.452423, 46.043435],\n      [-112.452928, 46.042858],\n      [-112.453336, 46.042363],\n      [-112.453672, 46.041989],\n      [-112.454055, 46.041551],\n      [-112.454342, 46.04125],\n      [-112.454665, 46.040886],\n      [-112.456067, 46.039558],\n      [-112.457335, 46.038587],\n      [-112.457987, 46.038059],\n      [-112.458512, 46.037625],\n      [-112.458842, 46.037329],\n      [-112.459071, 46.03709],\n      [-112.459314, 46.036842],\n      [-112.459518, 46.03659],\n      [-112.459678, 46.03639],\n      [-112.4598, 46.036215],\n      [-112.459891, 46.036045],\n      [-112.460007, 46.03582],\n      [-112.460114, 46.03551],\n      [-112.460172, 46.035281],\n      [-112.460249, 46.034999],\n      [-112.460282, 46.034713],\n      [-112.460289, 46.034622],\n      [-112.460306, 46.034393],\n      [-112.46034, 46.034001],\n      [-112.460377, 46.033494],\n      [-112.460788, 46.024225],\n      [-112.460858, 46.022999],\n      [-112.461034, 46.021707],\n      [-112.461139, 46.019417],\n      [-112.461174, 46.018182],\n      [-112.461374, 46.013939],\n      [-112.461433, 46.012326],\n      [-112.461598, 46.009767],\n      [-112.46173, 46.007706],\n      [-112.461826, 46.006592],\n      [-112.461968, 46.00602],\n      [-112.462225, 46.00538],\n      [-112.462565, 46.004722],\n      [-112.463191, 46.004036],\n      [-112.464072, 46.003225],\n      [-112.465792, 46.001872],\n      [-112.466856, 46.001037],\n      [-112.469268, 45.999189],\n      [-112.469946, 45.998682],\n      [-112.470667, 45.998003],\n      [-112.47113, 45.997502],\n      [-112.47156, 45.996917],\n      [-112.471963, 45.99622],\n      [-112.473459, 45.993424],\n      [-112.474051, 45.992464],\n      [-112.474317, 45.992004],\n      [-112.475276, 45.990233],\n      [-112.475566, 45.989642],\n      [-112.476695, 45.987673],\n      [-112.477014, 45.987068],\n      [-112.477395, 45.986399],\n      [-112.477976, 45.985327],\n      [-112.478243, 45.984818],\n      [-112.478421, 45.98455],\n      [-112.478851, 45.983744],\n      [-112.479177, 45.983218],\n      [-112.479374, 45.982981],\n      [-112.479538, 45.982795],\n      [-112.47971, 45.982636],\n      [-112.479894, 45.982492],\n      [-112.480132, 45.982326],\n      [-112.48042, 45.982142],\n      [-112.480713, 45.981993],\n      [-112.481018, 45.981862],\n      [-112.481235, 45.981784],\n      [-112.481491, 45.981708],\n      [-112.481819, 45.981612],\n      [-112.482235, 45.981526],\n      [-112.482576, 45.981485],\n      [-112.482792, 45.981468],\n      [-112.483106, 45.981448],\n      [-112.484674, 45.981411],\n      [-112.485533, 45.981393],\n      [-112.486142, 45.981346],\n      [-112.486888, 45.981343],\n      [-112.488415, 45.981329],\n      [-112.48942, 45.981323],\n      [-112.489915, 45.981311],\n      [-112.490321, 45.981291],\n      [-112.491262, 45.981187],\n      [-112.492077, 45.981092],\n      [-112.492755, 45.980966],\n      [-112.49327, 45.980829],\n      [-112.494197, 45.980567],\n      [-112.495345, 45.9802],\n      [-112.496229, 45.979974],\n      [-112.496927, 45.979831],\n      [-112.497708, 45.979756],\n      [-112.4986, 45.979744],\n      [-112.499484, 45.979774],\n      [-112.500257, 45.979863],\n      [-112.501047, 45.980042],\n      [-112.501432, 45.980146],\n      [-112.501772, 45.980251],\n      [-112.502162, 45.980391],\n      [-112.502441, 45.980505],\n      [-112.502715, 45.980622],\n      [-112.503036, 45.980793],\n      [-112.503323, 45.980946],\n      [-112.503646, 45.981153],\n      [-112.503934, 45.981351],\n      [-112.504203, 45.981566],\n      [-112.504427, 45.981757],\n      [-112.504926, 45.982217],\n      [-112.505529, 45.982793],\n      [-112.505933, 45.983132],\n      [-112.506153, 45.983296],\n      [-112.506336, 45.983431],\n      [-112.506571, 45.983586],\n      [-112.506888, 45.983789],\n      [-112.507196, 45.983956],\n      [-112.507471, 45.984097],\n      [-112.507799, 45.984272],\n      [-112.508512, 45.98456],\n      [-112.508794, 45.984651],\n      [-112.50906, 45.984738],\n      [-112.509415, 45.984842],\n      [-112.509964, 45.984998],\n      [-112.512836, 45.985714],\n      [-112.514063, 45.986044],\n      [-112.515749, 45.986501],\n      [-112.516874, 45.986847],\n      [-112.529602, 45.991803],\n      [-112.530598, 45.992131],\n      [-112.531516, 45.992333],\n      [-112.5324, 45.992476],\n      [-112.533044, 45.992536],\n      [-112.533894, 45.992542],\n      [-112.538675, 45.992548],\n      [-112.539481, 45.992542],\n      [-112.544571, 45.992548],\n      [-112.54755, 45.9925],\n      [-112.549472, 45.992518],\n      [-112.552176, 45.992548],\n      [-112.553189, 45.992614],\n      [-112.554167, 45.992739],\n      [-112.555008, 45.992942],\n      [-112.559798, 45.994337],\n      [-112.560613, 45.994587],\n      [-112.561471, 45.994951],\n      [-112.562235, 45.995404],\n      [-112.562816, 45.995834],\n      [-112.563071, 45.996064],\n      [-112.563323, 45.996326],\n      [-112.563586, 45.996638],\n      [-112.563846, 45.996975],\n      [-112.564136, 45.997384],\n      [-112.564414, 45.997764],\n      [-112.565162, 45.998934],\n      [-112.565743, 45.999683],\n      [-112.566655, 46.000955],\n      [-112.567437, 46.001903],\n      [-112.56802, 46.002517],\n      [-112.568741, 46.003096],\n      [-112.569419, 46.003525],\n      [-112.570063, 46.003859],\n      [-112.570964, 46.004318],\n      [-112.571822, 46.004693],\n      [-112.572895, 46.005009],\n      [-112.573848, 46.00523],\n      [-112.574775, 46.005379],\n      [-112.575728, 46.005463],\n      [-112.577187, 46.005504],\n      [-112.577788, 46.005522],\n      [-112.582056, 46.005676],\n      [-112.594885, 46.006166],\n      [-112.604584, 46.006524],\n      [-112.605451, 46.006619],\n      [-112.607283, 46.006843],\n      [-112.610896, 46.007381],\n      [-112.611152, 46.005948],\n      [-112.61121, 46.005792],\n      [-112.611238, 46.005609],\n      [-112.608284, 46.004266],\n      [-112.607739, 46.003921],\n      [-112.607191, 46.003516],\n      [-112.606953, 46.003377],\n      [-112.606693, 46.003274],\n      [-112.606342, 46.003193],\n      [-112.606239, 46.00317],\n      [-112.604638, 46.002827],\n      [-112.603223, 46.002511],\n      [-112.603052, 46.002473],\n      [-112.60203, 46.002278],\n      [-112.601516, 46.002219],\n      [-112.601276, 46.00221],\n      [-112.600883, 46.002212],\n      [-112.600496, 46.00223],\n      [-112.600404, 46.002208],\n      [-112.60036, 46.002173],\n      [-112.600327, 46.002117],\n      [-112.600314, 46.002059],\n      [-112.600333, 46.001927],\n      [-112.600381, 46.001853],\n      [-112.60049, 46.001777],\n      [-112.600599, 46.001745],\n      [-112.600713, 46.001737],\n      [-112.600862, 46.001739],\n      [-112.601544, 46.001798],\n      [-112.601657, 46.001792],\n      [-112.601804, 46.001767],\n      [-112.601918, 46.001724],\n      [-112.602008, 46.001673],\n      [-112.602239, 46.001528],\n      [-112.602389, 46.001412],\n      [-112.602658, 46.001185],\n      [-112.60307, 46.000822],\n      [-112.603218, 46.000656],\n      [-112.603405, 46.000474],\n      [-112.60366, 46.000513],\n      [-112.603842, 46.000532],\n      [-112.604078, 46.000549],\n      [-112.604254, 46.000547],\n      [-112.605018, 46.00043],\n      [-112.605491, 46.000395],\n      [-112.605766, 46.000402],\n      [-112.606076, 46.000466],\n      [-112.606209, 46.00049],\n      [-112.606364, 46.000494],\n      [-112.606548, 46.000466],\n      [-112.607005, 46.000359],\n      [-112.607412, 46.000312],\n      [-112.611416, 46.000299],\n      [-112.611653, 46.000242],\n      [-112.611812, 46.000145],\n      [-112.611932, 45.999965],\n      [-112.611906, 45.993731],\n      [-112.611956, 45.990322],\n      [-112.611963, 45.987384],\n      [-112.611945, 45.986839],\n      [-112.611983, 45.986517],\n      [-112.612211, 45.985826],\n      [-112.612974, 45.983191],\n      [-112.613351, 45.982047],\n      [-112.613508, 45.981723],\n      [-112.613655, 45.98152],\n      [-112.613973, 45.981284],\n      [-112.61573, 45.980235],\n      [-112.61642, 45.979923],\n      [-112.617405, 45.979519],\n      [-112.618068, 45.979213],\n      [-112.618669, 45.978865],\n      [-112.620246, 45.977619],\n      [-112.620586, 45.977289],\n      [-112.621106, 45.976592],\n      [-112.622154, 45.975079],\n      [-112.622235, 45.974699],\n      [-112.622281, 45.973317],\n      [-112.622078, 45.970234],\n      [-112.619831, 45.970225],\n      [-112.614288, 45.970203]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-length/test/out/feature-collection.json",
    "content": "33796\n"
  },
  {
    "path": "packages/turf-length/test/out/multi-linestring.json",
    "content": "15433\n"
  },
  {
    "path": "packages/turf-length/test/out/multi-polygon.json",
    "content": "27335\n"
  },
  {
    "path": "packages/turf-length/test/out/polygon.json",
    "content": "18364\n"
  },
  {
    "path": "packages/turf-length/test/out/route1.json",
    "content": "1068692\n"
  },
  {
    "path": "packages/turf-length/test/out/route2.json",
    "content": "2432897\n"
  },
  {
    "path": "packages/turf-length/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { length } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-length\", (t) => {\n  for (const { name, geojson } of fixtures) {\n    const results = Math.round(length(geojson, { units: \"feet\" }));\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + name + \".json\", results);\n    t.equal(results, loadJsonFileSync(directories.out + name + \".json\"), name);\n  }\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-length/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-line-arc/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-line-arc/README.md",
    "content": "# @turf/line-arc\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## lineArc\n\nCreates a circular arc, of a circle of the given radius and center point, between bearing1 and bearing2;\n0 bearing is North of center point, positive clockwise.\n\n### Parameters\n\n*   `center` **[Coord][1]** center point\n*   `radius` **[number][2]** radius of the circle\n*   `bearing1` **[number][2]** angle, in decimal degrees, of the first radius of the arc\n*   `bearing2` **[number][2]** angle, in decimal degrees, of the second radius of the arc\n*   `options` **[Object][3]** Optional parameters (optional, default `{}`)\n\n    *   `options.steps` **[number][2]** number of steps (straight segments) that will constitute the arc (optional, default `64`)\n    *   `options.units` **Units** Supports all valid Turf [Units][4]. (optional, default `'kilometers'`)\n\n### Examples\n\n```javascript\nvar center = turf.point([-75, 40]);\nvar radius = 5;\nvar bearing1 = 25;\nvar bearing2 = 47;\n\nvar arc = turf.lineArc(center, radius, bearing1, bearing2);\n\n//addToMap\nvar addToMap = [center, arc]\n```\n\nReturns **[Feature][5]<[LineString][6]>** line arc\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[4]: https://turfjs.org/docs/api/types/Units\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/line-arc\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-line-arc/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { lineArc } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * line-arc-full-360 x 38,879 ops/sec ±5.53% (78 runs sampled)\n * line-arc-greater-360 x 435,501 ops/sec ±13.18% (66 runs sampled)\n * line-arc1 x 249,765 ops/sec ±6.43% (69 runs sampled)\n * line-arc2 x 92,964 ops/sec ±6.81% (72 runs sampled)\n * line-arc3 x 47,342 ops/sec ±4.41% (74 runs sampled)\n * line-arc4 x 267,112 ops/sec ±5.95% (71 runs sampled)\n * line-arc5 x 35,259 ops/sec ±4.43% (69 runs sampled)\n * line-arc6 x 38,674 ops/sec ±4.86% (75 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-line-arc\");\nfor (const { name, geojson } of fixtures) {\n  const { radius, bearing1, bearing2, steps, units } = geojson.properties;\n  suite.add(name, () =>\n    lineArc(geojson, radius, bearing1, bearing2, steps, units)\n  );\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-line-arc/index.ts",
    "content": "import { Feature, LineString } from \"geojson\";\nimport { circle } from \"@turf/circle\";\nimport { destination } from \"@turf/destination\";\nimport { Coord, lineString, Units } from \"@turf/helpers\";\n\n/**\n * Creates a circular arc, of a circle of the given radius and center point, between bearing1 and bearing2;\n * 0 bearing is North of center point, positive clockwise.\n *\n * @function\n * @param {Coord} center center point\n * @param {number} radius radius of the circle\n * @param {number} bearing1 angle, in decimal degrees, of the first radius of the arc\n * @param {number} bearing2 angle, in decimal degrees, of the second radius of the arc\n * @param {Object} [options={}] Optional parameters\n * @param {number} [options.steps=64] number of steps (straight segments) that will constitute the arc\n * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.\n * @returns {Feature<LineString>} line arc\n * @example\n * var center = turf.point([-75, 40]);\n * var radius = 5;\n * var bearing1 = 25;\n * var bearing2 = 47;\n *\n * var arc = turf.lineArc(center, radius, bearing1, bearing2);\n *\n * //addToMap\n * var addToMap = [center, arc]\n */\nfunction lineArc(\n  center: Coord,\n  radius: number,\n  bearing1: number,\n  bearing2: number,\n  options: {\n    steps?: number;\n    units?: Units;\n  } = {}\n): Feature<LineString> {\n  // default params\n  const steps = options.steps || 64;\n\n  const angle1 = convertAngleTo360(bearing1);\n  const angle2 = convertAngleTo360(bearing2);\n  const properties =\n    !Array.isArray(center) && center.type === \"Feature\"\n      ? center.properties\n      : {};\n\n  // handle angle parameters\n  if (angle1 === angle2) {\n    return lineString(\n      circle(center, radius, options).geometry.coordinates[0],\n      properties\n    );\n  }\n  const arcStartDegree = angle1;\n  const arcEndDegree = angle1 < angle2 ? angle2 : angle2 + 360;\n\n  let alpha = arcStartDegree;\n  const coordinates = [];\n  let i = 0;\n  // How many degrees we'll swing around between each step.\n  const arcStep = (arcEndDegree - arcStartDegree) / steps;\n  // Add coords to the list, increasing the angle from our start bearing\n  // (alpha) by arcStep degrees until we reach the end bearing.\n  while (alpha <= arcEndDegree) {\n    coordinates.push(\n      destination(center, radius, alpha, options).geometry.coordinates\n    );\n    i++;\n    alpha = arcStartDegree + i * arcStep;\n  }\n  return lineString(coordinates, properties);\n}\n\n/**\n * Takes any angle in  degrees\n * and returns a valid angle between 0-360 degrees\n *\n * @private\n * @param {number} alpha angle between -180-180 degrees\n * @returns {number} angle between 0-360 degrees\n */\nfunction convertAngleTo360(alpha: number) {\n  let beta = alpha % 360;\n  if (beta < 0) {\n    beta += 360;\n  }\n  return beta;\n}\n\nexport { lineArc };\nexport default lineArc;\n"
  },
  {
    "path": "packages/turf-line-arc/package.json",
    "content": "{\n  \"name\": \"@turf/line-arc\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Creates a circular arc, of a circle of the given radius and center point, between two bearings.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gif\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/circle\": \"workspace:*\",\n    \"@turf/destination\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/in/line-arc-full-360.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 5,\n    \"bearing1\": 180,\n    \"bearing2\": -180\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/in/line-arc-greater-360.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 5,\n    \"bearing1\": 0,\n    \"bearing2\": 380\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/in/line-arc-one-step.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"steps\": 1,\n    \"radius\": 500,\n    \"bearing1\": 60,\n    \"bearing2\": 65\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/in/line-arc-zero-steps.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"steps\": 0,\n    \"radius\": 500,\n    \"bearing1\": 60,\n    \"bearing2\": 65\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/in/line-arc1.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 5,\n    \"bearing1\": 20,\n    \"bearing2\": 60\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/in/line-arc2.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 5,\n    \"bearing1\": 90,\n    \"bearing2\": -135\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/in/line-arc3.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 5,\n    \"bearing1\": 45,\n    \"bearing2\": -45\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/in/line-arc4.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 5,\n    \"bearing1\": -50,\n    \"bearing2\": -15\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/in/line-arc5.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 5,\n    \"bearing1\": -15,\n    \"bearing2\": -50\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/in/line-arc6.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 5,\n    \"bearing1\": 60,\n    \"bearing2\": 20\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/in/line-arc7.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 500,\n    \"bearing1\": 60,\n    \"bearing2\": 65\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/out/line-arc-full-360.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": 180,\n        \"bearing2\": -180\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": 180,\n        \"bearing2\": -180\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [11.343, 44.539966],\n          [11.336816, 44.539749],\n          [11.330693, 44.539101],\n          [11.324687, 44.538028],\n          [11.318859, 44.536541],\n          [11.313264, 44.534653],\n          [11.307955, 44.532383],\n          [11.302985, 44.529752],\n          [11.298401, 44.526787],\n          [11.294247, 44.523516],\n          [11.290563, 44.51997],\n          [11.287385, 44.516183],\n          [11.284743, 44.512193],\n          [11.282663, 44.508037],\n          [11.281164, 44.503756],\n          [11.28026, 44.49939],\n          [11.279962, 44.494983],\n          [11.28027, 44.490575],\n          [11.281182, 44.486211],\n          [11.28269, 44.481931],\n          [11.284777, 44.477777],\n          [11.287425, 44.47379],\n          [11.290608, 44.470006],\n          [11.294294, 44.466464],\n          [11.298449, 44.463196],\n          [11.303033, 44.460234],\n          [11.308, 44.457607],\n          [11.313304, 44.45534],\n          [11.318893, 44.453454],\n          [11.324714, 44.451969],\n          [11.330711, 44.450897],\n          [11.336826, 44.45025],\n          [11.343, 44.450034],\n          [11.349174, 44.45025],\n          [11.355289, 44.450897],\n          [11.361286, 44.451969],\n          [11.367107, 44.453454],\n          [11.372696, 44.45534],\n          [11.378, 44.457607],\n          [11.382967, 44.460234],\n          [11.387551, 44.463196],\n          [11.391706, 44.466464],\n          [11.395392, 44.470006],\n          [11.398575, 44.47379],\n          [11.401223, 44.477777],\n          [11.40331, 44.481931],\n          [11.404818, 44.486211],\n          [11.40573, 44.490575],\n          [11.406038, 44.494983],\n          [11.40574, 44.49939],\n          [11.404836, 44.503756],\n          [11.403337, 44.508037],\n          [11.401257, 44.512193],\n          [11.398615, 44.516183],\n          [11.395437, 44.51997],\n          [11.391753, 44.523516],\n          [11.387599, 44.526787],\n          [11.383015, 44.529752],\n          [11.378045, 44.532383],\n          [11.372736, 44.534653],\n          [11.367141, 44.536541],\n          [11.361313, 44.538028],\n          [11.355307, 44.539101],\n          [11.349184, 44.539749],\n          [11.343, 44.539966]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/out/line-arc-greater-360.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": 0,\n        \"bearing2\": 380\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": 0,\n        \"bearing2\": 380\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [11.343, 44.539966],\n          [11.343344, 44.539965],\n          [11.343688, 44.539963],\n          [11.344032, 44.53996],\n          [11.344376, 44.539955],\n          [11.34472, 44.539949],\n          [11.345064, 44.539942],\n          [11.345408, 44.539933],\n          [11.345752, 44.539923],\n          [11.346096, 44.539912],\n          [11.346439, 44.539899],\n          [11.346783, 44.539885],\n          [11.347126, 44.53987],\n          [11.347469, 44.539853],\n          [11.347813, 44.539835],\n          [11.348156, 44.539816],\n          [11.348498, 44.539795],\n          [11.348841, 44.539773],\n          [11.349184, 44.539749],\n          [11.349526, 44.539725],\n          [11.349868, 44.539699],\n          [11.35021, 44.539671],\n          [11.350552, 44.539642],\n          [11.350893, 44.539612],\n          [11.351234, 44.539581],\n          [11.351575, 44.539548],\n          [11.351916, 44.539514],\n          [11.352257, 44.539479],\n          [11.352597, 44.539442],\n          [11.352937, 44.539404],\n          [11.353276, 44.539365],\n          [11.353616, 44.539324],\n          [11.353955, 44.539282],\n          [11.354294, 44.539239],\n          [11.354632, 44.539194],\n          [11.35497, 44.539149],\n          [11.355307, 44.539101],\n          [11.355645, 44.539053],\n          [11.355982, 44.539003],\n          [11.356318, 44.538952],\n          [11.356654, 44.538899],\n          [11.35699, 44.538846],\n          [11.357325, 44.53879],\n          [11.35766, 44.538734],\n          [11.357995, 44.538676],\n          [11.358329, 44.538617],\n          [11.358662, 44.538557],\n          [11.358995, 44.538496],\n          [11.359328, 44.538433],\n          [11.35966, 44.538369],\n          [11.359991, 44.538303],\n          [11.360322, 44.538236],\n          [11.360653, 44.538168],\n          [11.360983, 44.538099],\n          [11.361313, 44.538028],\n          [11.361642, 44.537956],\n          [11.36197, 44.537883],\n          [11.362298, 44.537809],\n          [11.362625, 44.537733],\n          [11.362952, 44.537656],\n          [11.363278, 44.537578],\n          [11.363603, 44.537498],\n          [11.363928, 44.537418],\n          [11.364252, 44.537336],\n          [11.364576, 44.537252]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/out/line-arc-one-step.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"steps\": 1,\n        \"radius\": 500,\n        \"bearing1\": 60,\n        \"bearing2\": 65\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"steps\": 1,\n        \"radius\": 500,\n        \"bearing1\": 60,\n        \"bearing2\": 65\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [17.014763, 46.606416],\n          [17.240322, 46.246701]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/out/line-arc-zero-steps.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"steps\": 0,\n        \"radius\": 500,\n        \"bearing1\": 60,\n        \"bearing2\": 65\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"steps\": 0,\n        \"radius\": 500,\n        \"bearing1\": 60,\n        \"bearing2\": 65\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [17.014763, 46.606416],\n          [17.018658, 46.600907],\n          [17.022542, 46.595393],\n          [17.026413, 46.589876],\n          [17.030274, 46.584356],\n          [17.034122, 46.578831],\n          [17.037959, 46.573303],\n          [17.041784, 46.567771],\n          [17.045597, 46.562236],\n          [17.049399, 46.556697],\n          [17.053189, 46.551154],\n          [17.056967, 46.545607],\n          [17.060733, 46.540057],\n          [17.064488, 46.534503],\n          [17.068231, 46.528946],\n          [17.071962, 46.523385],\n          [17.075682, 46.51782],\n          [17.079389, 46.512252],\n          [17.083085, 46.50668],\n          [17.086769, 46.501105],\n          [17.090442, 46.495526],\n          [17.094102, 46.489943],\n          [17.097751, 46.484357],\n          [17.101388, 46.478768],\n          [17.105013, 46.473174],\n          [17.108627, 46.467578],\n          [17.112228, 46.461978],\n          [17.115818, 46.456374],\n          [17.119396, 46.450767],\n          [17.122963, 46.445157],\n          [17.126517, 46.439543],\n          [17.13006, 46.433925],\n          [17.133591, 46.428305],\n          [17.13711, 46.42268],\n          [17.140617, 46.417053],\n          [17.144112, 46.411422],\n          [17.147596, 46.405787],\n          [17.151068, 46.40015],\n          [17.154528, 46.394508],\n          [17.157976, 46.388864],\n          [17.161412, 46.383216],\n          [17.164836, 46.377565],\n          [17.168249, 46.371911],\n          [17.171649, 46.366253],\n          [17.175038, 46.360592],\n          [17.178415, 46.354928],\n          [17.18178, 46.34926],\n          [17.185134, 46.34359],\n          [17.188475, 46.337916],\n          [17.191805, 46.332238],\n          [17.195122, 46.326558],\n          [17.198428, 46.320874],\n          [17.201722, 46.315187],\n          [17.205004, 46.309497],\n          [17.208274, 46.303804],\n          [17.211533, 46.298108],\n          [17.214779, 46.292408],\n          [17.218013, 46.286706],\n          [17.221236, 46.281],\n          [17.224447, 46.275291],\n          [17.227646, 46.269579],\n          [17.230832, 46.263864],\n          [17.234007, 46.258146],\n          [17.237171, 46.252425],\n          [17.240322, 46.246701]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/out/line-arc1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": 20,\n        \"bearing2\": 60\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": 20,\n        \"bearing2\": 60\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [11.364576, 44.537252],\n          [11.365221, 44.537082],\n          [11.365864, 44.536906],\n          [11.366504, 44.536726],\n          [11.367141, 44.536541],\n          [11.367775, 44.53635],\n          [11.368406, 44.536155],\n          [11.369035, 44.535955],\n          [11.36966, 44.53575],\n          [11.370282, 44.53554],\n          [11.3709, 44.535325],\n          [11.371516, 44.535106],\n          [11.372128, 44.534882],\n          [11.372736, 44.534653],\n          [11.373341, 44.534419],\n          [11.373943, 44.53418],\n          [11.37454, 44.533937],\n          [11.375134, 44.53369],\n          [11.375724, 44.533437],\n          [11.37631, 44.53318],\n          [11.376893, 44.532919],\n          [11.377471, 44.532653],\n          [11.378045, 44.532383],\n          [11.378615, 44.532108],\n          [11.37918, 44.531828],\n          [11.379741, 44.531545],\n          [11.380298, 44.531257],\n          [11.380851, 44.530964],\n          [11.381399, 44.530668],\n          [11.381942, 44.530367],\n          [11.382481, 44.530062],\n          [11.383015, 44.529752],\n          [11.383544, 44.529439],\n          [11.384069, 44.529121],\n          [11.384588, 44.5288],\n          [11.385103, 44.528474],\n          [11.385612, 44.528145],\n          [11.386117, 44.527811],\n          [11.386616, 44.527474],\n          [11.38711, 44.527132],\n          [11.387599, 44.526787],\n          [11.388083, 44.526438],\n          [11.388561, 44.526086],\n          [11.389034, 44.525729],\n          [11.389501, 44.525369],\n          [11.389963, 44.525006],\n          [11.390419, 44.524638],\n          [11.390869, 44.524268],\n          [11.391314, 44.523893],\n          [11.391753, 44.523516],\n          [11.392186, 44.523135],\n          [11.392614, 44.52275],\n          [11.393035, 44.522363],\n          [11.393451, 44.521972],\n          [11.39386, 44.521578],\n          [11.394264, 44.52118],\n          [11.394661, 44.52078],\n          [11.395052, 44.520376],\n          [11.395437, 44.51997],\n          [11.395816, 44.51956],\n          [11.396188, 44.519148],\n          [11.396554, 44.518733],\n          [11.396914, 44.518314],\n          [11.397267, 44.517894],\n          [11.397614, 44.51747]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/out/line-arc2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": 90,\n        \"bearing2\": -135\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": 90,\n        \"bearing2\": -135\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [11.406038, 44.494983],\n          [11.405994, 44.493328],\n          [11.405864, 44.491675],\n          [11.405649, 44.490027],\n          [11.405349, 44.488385],\n          [11.404965, 44.486753],\n          [11.404496, 44.485131],\n          [11.403945, 44.483524],\n          [11.40331, 44.481931],\n          [11.402595, 44.480357],\n          [11.401798, 44.478802],\n          [11.400922, 44.477269],\n          [11.399967, 44.47576],\n          [11.398936, 44.474278],\n          [11.397828, 44.472823],\n          [11.396646, 44.471399],\n          [11.395392, 44.470006],\n          [11.394067, 44.468648],\n          [11.392673, 44.467325],\n          [11.391211, 44.466039],\n          [11.389684, 44.464793],\n          [11.388094, 44.463588],\n          [11.386443, 44.462425],\n          [11.384734, 44.461307],\n          [11.382967, 44.460234],\n          [11.381147, 44.459208],\n          [11.379275, 44.458231],\n          [11.377354, 44.457303],\n          [11.375387, 44.456427],\n          [11.373376, 44.455603],\n          [11.371323, 44.454832],\n          [11.369233, 44.454115],\n          [11.367107, 44.453454],\n          [11.364948, 44.452849],\n          [11.36276, 44.452302],\n          [11.360544, 44.451812],\n          [11.358306, 44.451381],\n          [11.356046, 44.451008],\n          [11.353769, 44.450695],\n          [11.351477, 44.450443],\n          [11.349174, 44.45025],\n          [11.346863, 44.450119],\n          [11.344546, 44.450048],\n          [11.342227, 44.450037],\n          [11.339909, 44.450088],\n          [11.337596, 44.4502],\n          [11.335289, 44.450372],\n          [11.332993, 44.450605],\n          [11.330711, 44.450897],\n          [11.328445, 44.45125],\n          [11.326199, 44.451662],\n          [11.323976, 44.452132],\n          [11.321778, 44.452661],\n          [11.31961, 44.453246],\n          [11.317472, 44.453889],\n          [11.315369, 44.454587],\n          [11.313304, 44.45534],\n          [11.311279, 44.456146],\n          [11.309297, 44.457005],\n          [11.30736, 44.457916],\n          [11.305471, 44.458877],\n          [11.303634, 44.459887],\n          [11.301849, 44.460944],\n          [11.30012, 44.462047],\n          [11.298449, 44.463196]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/out/line-arc3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": 45,\n        \"bearing2\": -45\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": 45,\n        \"bearing2\": -45\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [11.387599, 44.526787],\n          [11.390757, 44.524361],\n          [11.393656, 44.521775],\n          [11.39628, 44.519044],\n          [11.398615, 44.516183],\n          [11.400648, 44.513208],\n          [11.402369, 44.510133],\n          [11.403767, 44.506977],\n          [11.404836, 44.503756],\n          [11.40557, 44.500487],\n          [11.405965, 44.497189],\n          [11.406018, 44.493879],\n          [11.40573, 44.490575],\n          [11.405102, 44.487296],\n          [11.404138, 44.484058],\n          [11.402842, 44.480879],\n          [11.401223, 44.477777],\n          [11.399288, 44.474769],\n          [11.397048, 44.47187],\n          [11.394516, 44.469097],\n          [11.391706, 44.466464],\n          [11.388631, 44.463985],\n          [11.38531, 44.461675],\n          [11.38176, 44.459545],\n          [11.378, 44.457607],\n          [11.374051, 44.455871],\n          [11.369934, 44.454348],\n          [11.365671, 44.453045],\n          [11.361286, 44.451969],\n          [11.356801, 44.451126],\n          [11.352243, 44.45052],\n          [11.347634, 44.450156],\n          [11.343, 44.450034],\n          [11.338366, 44.450156],\n          [11.333757, 44.45052],\n          [11.329199, 44.451126],\n          [11.324714, 44.451969],\n          [11.320329, 44.453045],\n          [11.316066, 44.454348],\n          [11.311949, 44.455871],\n          [11.308, 44.457607],\n          [11.30424, 44.459545],\n          [11.30069, 44.461675],\n          [11.297369, 44.463985],\n          [11.294294, 44.466464],\n          [11.291484, 44.469097],\n          [11.288952, 44.47187],\n          [11.286712, 44.474769],\n          [11.284777, 44.477777],\n          [11.283158, 44.480879],\n          [11.281862, 44.484058],\n          [11.280898, 44.487296],\n          [11.28027, 44.490575],\n          [11.279982, 44.493879],\n          [11.280035, 44.497189],\n          [11.28043, 44.500487],\n          [11.281164, 44.503756],\n          [11.282233, 44.506977],\n          [11.283631, 44.510133],\n          [11.285352, 44.513208],\n          [11.287385, 44.516183],\n          [11.28972, 44.519044],\n          [11.292344, 44.521775],\n          [11.295243, 44.524361],\n          [11.298401, 44.526787]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/out/line-arc4.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": -50,\n        \"bearing2\": -15\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": -50,\n        \"bearing2\": -15\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [11.294686, 44.523893],\n          [11.295075, 44.524221],\n          [11.295468, 44.524546],\n          [11.295866, 44.524868],\n          [11.296267, 44.525188],\n          [11.296674, 44.525505],\n          [11.297084, 44.525819],\n          [11.297499, 44.52613],\n          [11.297917, 44.526438],\n          [11.29834, 44.526744],\n          [11.298767, 44.527046],\n          [11.299198, 44.527346],\n          [11.299633, 44.527643],\n          [11.300072, 44.527937],\n          [11.300515, 44.528227],\n          [11.300961, 44.528515],\n          [11.301412, 44.5288],\n          [11.301866, 44.529081],\n          [11.302324, 44.52936],\n          [11.302786, 44.529635],\n          [11.303251, 44.529907],\n          [11.303721, 44.530176],\n          [11.304193, 44.530442],\n          [11.304669, 44.530705],\n          [11.305149, 44.530964],\n          [11.305632, 44.53122],\n          [11.306119, 44.531473],\n          [11.306609, 44.531722],\n          [11.307102, 44.531969],\n          [11.307599, 44.532211],\n          [11.308098, 44.532451],\n          [11.308601, 44.532686],\n          [11.309107, 44.532919],\n          [11.309617, 44.533148],\n          [11.310129, 44.533374],\n          [11.310644, 44.533596],\n          [11.311162, 44.533814],\n          [11.311683, 44.534029],\n          [11.312207, 44.534241],\n          [11.312734, 44.534448],\n          [11.313264, 44.534653],\n          [11.313796, 44.534853],\n          [11.314331, 44.53505],\n          [11.314868, 44.535244],\n          [11.315408, 44.535433],\n          [11.315951, 44.535619],\n          [11.316496, 44.535802],\n          [11.317044, 44.53598],\n          [11.317594, 44.536155],\n          [11.318146, 44.536326],\n          [11.3187, 44.536494],\n          [11.319257, 44.536657],\n          [11.319816, 44.536817],\n          [11.320377, 44.536973],\n          [11.32094, 44.537125],\n          [11.321505, 44.537273],\n          [11.322072, 44.537418],\n          [11.322641, 44.537558],\n          [11.323212, 44.537695],\n          [11.323784, 44.537828],\n          [11.324358, 44.537956],\n          [11.324934, 44.538081],\n          [11.325512, 44.538202],\n          [11.326091, 44.53832],\n          [11.326672, 44.538433]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/out/line-arc5.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": -15,\n        \"bearing2\": -50\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": -15,\n        \"bearing2\": -50\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [11.326672, 44.538433],\n          [11.33213, 44.539293],\n          [11.337673, 44.539805],\n          [11.343258, 44.539966],\n          [11.348841, 44.539773],\n          [11.354378, 44.539228],\n          [11.359826, 44.538336],\n          [11.365141, 44.537103],\n          [11.370282, 44.53554],\n          [11.375208, 44.533658],\n          [11.379881, 44.531473],\n          [11.384264, 44.529001],\n          [11.388323, 44.526262],\n          [11.392025, 44.523278],\n          [11.395341, 44.520072],\n          [11.398247, 44.516669],\n          [11.400718, 44.513095],\n          [11.402735, 44.50938],\n          [11.404284, 44.505552],\n          [11.405351, 44.501642],\n          [11.405928, 44.497679],\n          [11.406011, 44.493695],\n          [11.4056, 44.489722],\n          [11.404697, 44.48579],\n          [11.40331, 44.481931],\n          [11.401451, 44.478175],\n          [11.399132, 44.47455],\n          [11.396374, 44.471086],\n          [11.393197, 44.46781],\n          [11.389626, 44.464748],\n          [11.385691, 44.461923],\n          [11.38142, 44.459357],\n          [11.376848, 44.457071],\n          [11.372012, 44.455083],\n          [11.366948, 44.453408],\n          [11.361696, 44.452059],\n          [11.356298, 44.451047],\n          [11.350796, 44.450379],\n          [11.345233, 44.450062],\n          [11.339652, 44.450097],\n          [11.334097, 44.450485],\n          [11.328613, 44.451222],\n          [11.32324, 44.452302],\n          [11.318023, 44.453717],\n          [11.313001, 44.455456],\n          [11.308215, 44.457505],\n          [11.303701, 44.459848],\n          [11.299495, 44.462468],\n          [11.295629, 44.465342],\n          [11.292135, 44.468449],\n          [11.28904, 44.471765],\n          [11.286368, 44.475263],\n          [11.28414, 44.478916],\n          [11.282374, 44.482696],\n          [11.281083, 44.486572],\n          [11.280278, 44.490514],\n          [11.279966, 44.494492],\n          [11.280148, 44.498474],\n          [11.280824, 44.502429],\n          [11.281988, 44.506325],\n          [11.283631, 44.510133],\n          [11.285741, 44.513822],\n          [11.2883, 44.517364],\n          [11.29129, 44.52073],\n          [11.294686, 44.523893]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/out/line-arc6.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": 60,\n        \"bearing2\": 20\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": 60,\n        \"bearing2\": 20\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [11.397614, 44.51747],\n          [11.400151, 44.513989],\n          [11.402252, 44.510364],\n          [11.403903, 44.506622],\n          [11.405089, 44.502791],\n          [11.405803, 44.498902],\n          [11.406038, 44.494983],\n          [11.405794, 44.491064],\n          [11.405072, 44.487175],\n          [11.403878, 44.483346],\n          [11.402221, 44.479605],\n          [11.400114, 44.475982],\n          [11.397572, 44.472504],\n          [11.394615, 44.469197],\n          [11.391266, 44.466086],\n          [11.387551, 44.463196],\n          [11.383496, 44.460547],\n          [11.379135, 44.45816],\n          [11.374498, 44.456054],\n          [11.369623, 44.454244],\n          [11.364545, 44.452744],\n          [11.359303, 44.451565],\n          [11.353938, 44.450717],\n          [11.34849, 44.450205],\n          [11.343, 44.450034],\n          [11.33751, 44.450205],\n          [11.332062, 44.450717],\n          [11.326697, 44.451565],\n          [11.321455, 44.452744],\n          [11.316377, 44.454244],\n          [11.311502, 44.456054],\n          [11.306865, 44.45816],\n          [11.302504, 44.460547],\n          [11.298449, 44.463196],\n          [11.294734, 44.466086],\n          [11.291385, 44.469197],\n          [11.288428, 44.472504],\n          [11.285886, 44.475982],\n          [11.283779, 44.479605],\n          [11.282122, 44.483346],\n          [11.280928, 44.487175],\n          [11.280206, 44.491064],\n          [11.279962, 44.494983],\n          [11.280197, 44.498902],\n          [11.280911, 44.502791],\n          [11.282097, 44.506622],\n          [11.283748, 44.510364],\n          [11.285849, 44.513989],\n          [11.288386, 44.51747],\n          [11.291339, 44.52078],\n          [11.294686, 44.523893],\n          [11.298401, 44.526787],\n          [11.302456, 44.529439],\n          [11.30682, 44.531828],\n          [11.31146, 44.533937],\n          [11.31634, 44.53575],\n          [11.321424, 44.537252],\n          [11.326672, 44.538433],\n          [11.332045, 44.539282],\n          [11.337502, 44.539795],\n          [11.343, 44.539966],\n          [11.348498, 44.539795],\n          [11.353955, 44.539282],\n          [11.359328, 44.538433],\n          [11.364576, 44.537252]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test/out/line-arc7.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 500,\n        \"bearing1\": 60,\n        \"bearing2\": 65\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 500,\n        \"bearing1\": 60,\n        \"bearing2\": 65\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [17.014763, 46.606416],\n          [17.018658, 46.600907],\n          [17.022542, 46.595393],\n          [17.026413, 46.589876],\n          [17.030274, 46.584356],\n          [17.034122, 46.578831],\n          [17.037959, 46.573303],\n          [17.041784, 46.567771],\n          [17.045597, 46.562236],\n          [17.049399, 46.556697],\n          [17.053189, 46.551154],\n          [17.056967, 46.545607],\n          [17.060733, 46.540057],\n          [17.064488, 46.534503],\n          [17.068231, 46.528946],\n          [17.071962, 46.523385],\n          [17.075682, 46.51782],\n          [17.079389, 46.512252],\n          [17.083085, 46.50668],\n          [17.086769, 46.501105],\n          [17.090442, 46.495526],\n          [17.094102, 46.489943],\n          [17.097751, 46.484357],\n          [17.101388, 46.478768],\n          [17.105013, 46.473174],\n          [17.108627, 46.467578],\n          [17.112228, 46.461978],\n          [17.115818, 46.456374],\n          [17.119396, 46.450767],\n          [17.122963, 46.445157],\n          [17.126517, 46.439543],\n          [17.13006, 46.433925],\n          [17.133591, 46.428305],\n          [17.13711, 46.42268],\n          [17.140617, 46.417053],\n          [17.144112, 46.411422],\n          [17.147596, 46.405787],\n          [17.151068, 46.40015],\n          [17.154528, 46.394508],\n          [17.157976, 46.388864],\n          [17.161412, 46.383216],\n          [17.164836, 46.377565],\n          [17.168249, 46.371911],\n          [17.171649, 46.366253],\n          [17.175038, 46.360592],\n          [17.178415, 46.354928],\n          [17.18178, 46.34926],\n          [17.185134, 46.34359],\n          [17.188475, 46.337916],\n          [17.191805, 46.332238],\n          [17.195122, 46.326558],\n          [17.198428, 46.320874],\n          [17.201722, 46.315187],\n          [17.205004, 46.309497],\n          [17.208274, 46.303804],\n          [17.211533, 46.298108],\n          [17.214779, 46.292408],\n          [17.218013, 46.286706],\n          [17.221236, 46.281],\n          [17.224447, 46.275291],\n          [17.227646, 46.269579],\n          [17.230832, 46.263864],\n          [17.234007, 46.258146],\n          [17.237171, 46.252425],\n          [17.240322, 46.246701]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-arc/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { truncate } from \"@turf/truncate\";\nimport { featureCollection, point } from \"@turf/helpers\";\nimport { lineArc } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-line-arc\", (t) => {\n  for (const { filename, name, geojson } of fixtures) {\n    const { radius, bearing1, bearing2, steps, units } = geojson.properties;\n    const arc = truncate(\n      lineArc(geojson, radius, bearing1, bearing2, { steps, units })\n    );\n    const results = featureCollection([geojson, arc]);\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEquals(results, loadJsonFileSync(directories.out + filename), name);\n    // Check the resulting arc geometry has the expected number of points.\n    // undefined or 0 steps should default to 64 + 1 points, 1 to 1 + 1,\n    // 2 to 2 + 1, ...\n    const expectedPoints = geojson.properties?.steps\n      ? geojson.properties?.steps + 1\n      : 64 + 1;\n    t.equals(\n      arc.geometry.coordinates.length,\n      expectedPoints,\n      `${name} number of points in arc`\n    );\n  }\n  t.end();\n});\n\ntest(\"turf-line-arc #2524\", (t) => {\n  // Just test to make sure we're getting the correct number of points in the\n  // resultant arc i.e. steps + 1\n  const options = { steps: 10, units: \"kilometers\" };\n\n  const center = point([115.959444, -31.945]);\n  const startAngle = 223;\n  const endAngle = 277;\n  const radius = 130;\n  const arc = lineArc(center, radius, startAngle, endAngle, options);\n\n  t.equals(arc.geometry.coordinates.length, 10 + 1, \"Number of points in arc\");\n  t.end();\n});\n\ntest(\"turf-line-arc #2446\", (t) => {\n  // Test to make sure we're not getting an error, as described in\n  // https://github.com/Turfjs/turf/issues/2446\n  const options = { steps: 15, units: \"kilometers\" };\n\n  const center = point([115.959444, -31.945]);\n  const startAngle = 253;\n  const endAngle = 277;\n  const radius = 119.7195;\n\n  t.doesNotThrow(() =>\n    lineArc(center, radius * 1.852, startAngle, endAngle, options)\n  );\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-line-arc/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-line-arc/types.ts",
    "content": "import { point } from \"@turf/helpers\";\nimport { lineArc } from \"./index.js\";\n\nconst center = point([-75.343, 39.984]);\nconst bearing1 = 10;\nconst bearing2 = -30;\nconst radius = 5;\nconst steps = 10;\nconst units = \"miles\";\n\nlineArc(center, radius, bearing1, bearing2);\nlineArc(center, radius, bearing1, bearing2, { steps });\nlineArc(center, radius, bearing1, bearing2, { steps, units });\n"
  },
  {
    "path": "packages/turf-line-chunk/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-line-chunk/README.md",
    "content": "# @turf/line-chunk\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## lineChunk\n\nDivides a [LineString][1] into chunks of a specified length.\nIf the line is shorter than the segment length then the original line is returned.\n\n### Parameters\n\n*   `geojson` **([FeatureCollection][2] | [Geometry][3] | [Feature][4]<([LineString][1] | [MultiLineString][5])>)** the lines to split\n*   `segmentLength` **[number][6]** how long to make each segment\n*   `options` **[Object][7]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** Supports all valid Turf [Units][8] (optional, default `'kilometers'`)\n    *   `options.reverse` **[boolean][9]** reverses coordinates to start the first chunked segment at the end (optional, default `false`)\n\n### Examples\n\n```javascript\nvar line = turf.lineString([[-95, 40], [-93, 45], [-85, 50]]);\n\nvar chunk = turf.lineChunk(line, 15, {units: 'miles'});\n\n//addToMap\nvar addToMap = [chunk];\n```\n\nReturns **[FeatureCollection][2]<[LineString][1]>** collection of line segments\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.1.5\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[8]: https://turfjs.org/docs/api/types/Units\n\n[9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/line-chunk\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-line-chunk/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { lineChunk } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return { filename, geojson: loadJsonFileSync(directories.in + filename) };\n});\n\n/**\n * Benchmark Results\n *\n * FeatureCollection.geojson x 54,653 ops/sec ±1.91% (88 runs sampled)\n * GeometryCollection.geojson x 53,065 ops/sec ±2.88% (83 runs sampled)\n * LineString.geojson x 113,926 ops/sec ±1.05% (90 runs sampled)\n * MultiLineString.geojson x 123,430 ops/sec ±1.57% (89 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-line-chunk\");\nfixtures.forEach(({ filename, geojson }) => {\n  suite.add(filename, () => lineChunk(geojson, 5, \"miles\"));\n});\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-line-chunk/index.ts",
    "content": "import { length } from \"@turf/length\";\nimport { lineSliceAlong } from \"@turf/line-slice-along\";\nimport { flattenEach } from \"@turf/meta\";\nimport { featureCollection, isObject, Units } from \"@turf/helpers\";\nimport {\n  Feature,\n  FeatureCollection,\n  GeometryCollection,\n  LineString,\n  MultiLineString,\n} from \"geojson\";\n\n/**\n * Divides a {@link LineString} into chunks of a specified length.\n * If the line is shorter than the segment length then the original line is returned.\n *\n * @function\n * @param {FeatureCollection|Geometry|Feature<LineString|MultiLineString>} geojson the lines to split\n * @param {number} segmentLength how long to make each segment\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}\n * @param {boolean} [options.reverse=false] reverses coordinates to start the first chunked segment at the end\n * @returns {FeatureCollection<LineString>} collection of line segments\n * @example\n * var line = turf.lineString([[-95, 40], [-93, 45], [-85, 50]]);\n *\n * var chunk = turf.lineChunk(line, 15, {units: 'miles'});\n *\n * //addToMap\n * var addToMap = [chunk];\n */\nfunction lineChunk<T extends LineString | MultiLineString>(\n  geojson:\n    | Feature<T>\n    | FeatureCollection<T>\n    | T\n    | GeometryCollection\n    | Feature<GeometryCollection>,\n  segmentLength: number,\n  options: {\n    units?: Units;\n    reverse?: boolean;\n  } = {}\n): FeatureCollection<LineString> {\n  // Optional parameters\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  const { units = \"kilometers\", reverse = false } = options;\n\n  // Validation\n  if (!geojson) throw new Error(\"geojson is required\");\n  if (segmentLength <= 0) {\n    throw new Error(\"segmentLength must be greater than 0\");\n  }\n\n  // Container\n  const results: Feature<LineString>[] = [];\n\n  // Flatten each feature to simple LineString\n  flattenEach(geojson, (feature: Feature<T>) => {\n    // reverses coordinates to start the first chunked segment at the end\n    if (reverse) {\n      feature.geometry.coordinates = feature.geometry.coordinates.reverse();\n    }\n\n    sliceLineSegments(\n      feature as Feature<LineString>,\n      segmentLength,\n      units,\n      (segment) => {\n        results.push(segment);\n      }\n    );\n  });\n  return featureCollection(results);\n}\n\n/**\n * Slice Line Segments\n *\n * @private\n * @param {Feature<LineString>} line GeoJSON LineString\n * @param {number} segmentLength how long to make each segment\n * @param {Units}[units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}\n * @param {Function} callback iterate over sliced line segments\n * @returns {void}\n */\nfunction sliceLineSegments(\n  line: Feature<LineString>,\n  segmentLength: number,\n  units: Units,\n  callback: (feature: Feature<LineString>) => void\n): void {\n  var lineLength = length(line, { units: units });\n\n  // If the line is shorter than the segment length then the orginal line is returned.\n  if (lineLength <= segmentLength) {\n    return callback(line);\n  }\n\n  var numberOfSegments = lineLength / segmentLength;\n\n  // If numberOfSegments is integer, no need to plus 1\n  if (!Number.isInteger(numberOfSegments)) {\n    numberOfSegments = Math.floor(numberOfSegments) + 1;\n  }\n\n  for (var i = 0; i < numberOfSegments; i++) {\n    var outline = lineSliceAlong(\n      line,\n      segmentLength * i,\n      segmentLength * (i + 1),\n      { units: units }\n    );\n    callback(outline);\n  }\n}\n\nexport { lineChunk };\nexport default lineChunk;\n"
  },
  {
    "path": "packages/turf-line-chunk/package.json",
    "content": "{\n  \"name\": \"@turf/line-chunk\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Divides a LineString into chunks of a specified length.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Tim Channell <@tcql>\",\n    \"Rowan Winsemius <@rowanwins>\",\n    \"Denis Carriere <@DenisCarriere>\",\n    \"Daniel Pulido <@dpmcmlxxvi>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gis\",\n    \"geojson\",\n    \"linestring\",\n    \"line segment\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/length\": \"workspace:*\",\n    \"@turf/line-slice-along\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/test/in/FeatureCollection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.28524780273438, 40.250184183819854],\n          [-85.98587036132812, 40.17887331434696],\n          [-85.97213745117188, 40.08857859823707],\n          [-85.77987670898438, 40.15578608609647]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.29348754882811, 40.17362690655496],\n          [-86.23580932617188, 39.891826241725596],\n          [-85.93643188476562, 39.95606977009003]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/test/in/GeometryCollection.geojson",
    "content": "{\n  \"type\": \"GeometryCollection\",\n  \"geometries\": [\n    {\n      \"type\": \"LineString\",\n      \"coordinates\": [\n        [-86.28524780273438, 40.250184183819854],\n        [-85.98587036132812, 40.17887331434696],\n        [-85.97213745117188, 40.08857859823707],\n        [-85.77987670898438, 40.15578608609647]\n      ]\n    },\n    {\n      \"type\": \"LineString\",\n      \"coordinates\": [\n        [-86.29348754882811, 40.17362690655496],\n        [-86.23580932617188, 39.891826241725596],\n        [-85.93643188476562, 39.95606977009003]\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/test/in/LineString.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-86.28524780273438, 40.250184183819854],\n      [-85.98587036132812, 40.17887331434696],\n      [-85.97213745117188, 40.08857859823707],\n      [-85.77987670898438, 40.15578608609647]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/test/in/MultiLineString.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [-86.28524780273438, 40.250184183819854],\n        [-85.98587036132812, 40.17887331434696]\n      ],\n      [\n        [-85.97213745117188, 40.08857859823707],\n        [-85.77987670898438, 40.15578608609647]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/test/out/FeatureCollection.longer.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.285248, 40.250184],\n          [-85.98587, 40.178873],\n          [-85.972137, 40.088579],\n          [-85.779877, 40.155786]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.293488, 40.173627],\n          [-86.235809, 39.891826],\n          [-85.936432, 39.95607]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/test/out/FeatureCollection.reverse.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.779877, 40.155786],\n          [-85.865993, 40.125739]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.865993, 40.125739],\n          [-85.952033, 40.095627]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.952033, 40.095627],\n          [-85.972137, 40.088579],\n          [-85.98051, 40.143655]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.98051, 40.143655],\n          [-85.98587, 40.178873],\n          [-86.031972, 40.189915]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.031972, 40.189915],\n          [-86.122401, 40.211509]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.122401, 40.211509],\n          [-86.212888, 40.233033]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.212888, 40.233033],\n          [-86.285248, 40.250184]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.936432, 39.95607],\n          [-86.027363, 39.936651]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.027363, 39.936651],\n          [-86.118242, 39.917161]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.118242, 39.917161],\n          [-86.209069, 39.897601]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.209069, 39.897601],\n          [-86.235809, 39.891826],\n          [-86.246098, 39.942266]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.246098, 39.942266],\n          [-86.260707, 40.01376]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.260707, 40.01376],\n          [-86.275347, 40.085253]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.275347, 40.085253],\n          [-86.290018, 40.156744]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.290018, 40.156744],\n          [-86.293488, 40.173627]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/test/out/FeatureCollection.shorter.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.285248, 40.250184],\n          [-86.194715, 40.228717]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.194715, 40.228717],\n          [-86.10424, 40.207179]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.10424, 40.207179],\n          [-86.013822, 40.18557]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.013822, 40.18557],\n          [-85.98587, 40.178873],\n          [-85.978314, 40.129223]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.978314, 40.129223],\n          [-85.972137, 40.088579],\n          [-85.934764, 40.101678]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.934764, 40.101678],\n          [-85.848709, 40.131777]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.848709, 40.131777],\n          [-85.779877, 40.155786]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.293488, 40.173627],\n          [-86.278809, 40.102136]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.278809, 40.102136],\n          [-86.264162, 40.030644]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.264162, 40.030644],\n          [-86.249545, 39.95915]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.249545, 39.95915],\n          [-86.235809, 39.891826],\n          [-86.230511, 39.892971]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.230511, 39.892971],\n          [-86.139696, 39.912548]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.139696, 39.912548],\n          [-86.048829, 39.932055]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.048829, 39.932055],\n          [-85.957911, 39.95149]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.957911, 39.95149],\n          [-85.936432, 39.95607]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/test/out/GeometryCollection.longer.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.285248, 40.250184],\n          [-85.98587, 40.178873],\n          [-85.972137, 40.088579],\n          [-85.779877, 40.155786]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.293488, 40.173627],\n          [-86.235809, 39.891826],\n          [-85.936432, 39.95607]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/test/out/GeometryCollection.reverse.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.779877, 40.155786],\n          [-85.865993, 40.125739]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.865993, 40.125739],\n          [-85.952033, 40.095627]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.952033, 40.095627],\n          [-85.972137, 40.088579],\n          [-85.98051, 40.143655]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.98051, 40.143655],\n          [-85.98587, 40.178873],\n          [-86.031972, 40.189915]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.031972, 40.189915],\n          [-86.122401, 40.211509]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.122401, 40.211509],\n          [-86.212888, 40.233033]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.212888, 40.233033],\n          [-86.285248, 40.250184]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.936432, 39.95607],\n          [-86.027363, 39.936651]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.027363, 39.936651],\n          [-86.118242, 39.917161]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.118242, 39.917161],\n          [-86.209069, 39.897601]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.209069, 39.897601],\n          [-86.235809, 39.891826],\n          [-86.246098, 39.942266]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.246098, 39.942266],\n          [-86.260707, 40.01376]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.260707, 40.01376],\n          [-86.275347, 40.085253]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.275347, 40.085253],\n          [-86.290018, 40.156744]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.290018, 40.156744],\n          [-86.293488, 40.173627]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/test/out/GeometryCollection.shorter.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.285248, 40.250184],\n          [-86.194715, 40.228717]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.194715, 40.228717],\n          [-86.10424, 40.207179]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.10424, 40.207179],\n          [-86.013822, 40.18557]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.013822, 40.18557],\n          [-85.98587, 40.178873],\n          [-85.978314, 40.129223]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.978314, 40.129223],\n          [-85.972137, 40.088579],\n          [-85.934764, 40.101678]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.934764, 40.101678],\n          [-85.848709, 40.131777]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.848709, 40.131777],\n          [-85.779877, 40.155786]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.293488, 40.173627],\n          [-86.278809, 40.102136]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.278809, 40.102136],\n          [-86.264162, 40.030644]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.264162, 40.030644],\n          [-86.249545, 39.95915]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.249545, 39.95915],\n          [-86.235809, 39.891826],\n          [-86.230511, 39.892971]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.230511, 39.892971],\n          [-86.139696, 39.912548]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.139696, 39.912548],\n          [-86.048829, 39.932055]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.048829, 39.932055],\n          [-85.957911, 39.95149]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.957911, 39.95149],\n          [-85.936432, 39.95607]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/test/out/LineString.longer.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.285248, 40.250184],\n          [-85.98587, 40.178873],\n          [-85.972137, 40.088579],\n          [-85.779877, 40.155786]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/test/out/LineString.reverse.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.779877, 40.155786],\n          [-85.865993, 40.125739]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.865993, 40.125739],\n          [-85.952033, 40.095627]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.952033, 40.095627],\n          [-85.972137, 40.088579],\n          [-85.98051, 40.143655]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.98051, 40.143655],\n          [-85.98587, 40.178873],\n          [-86.031972, 40.189915]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.031972, 40.189915],\n          [-86.122401, 40.211509]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.122401, 40.211509],\n          [-86.212888, 40.233033]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.212888, 40.233033],\n          [-86.285248, 40.250184]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/test/out/LineString.shorter.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.285248, 40.250184],\n          [-86.194715, 40.228717]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.194715, 40.228717],\n          [-86.10424, 40.207179]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.10424, 40.207179],\n          [-86.013822, 40.18557]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.013822, 40.18557],\n          [-85.98587, 40.178873],\n          [-85.978314, 40.129223]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.978314, 40.129223],\n          [-85.972137, 40.088579],\n          [-85.934764, 40.101678]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.934764, 40.101678],\n          [-85.848709, 40.131777]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.848709, 40.131777],\n          [-85.779877, 40.155786]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/test/out/MultiLineString.longer.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.285248, 40.250184],\n          [-85.98587, 40.178873]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.972137, 40.088579],\n          [-85.779877, 40.155786]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/test/out/MultiLineString.reverse.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.98587, 40.178873],\n          [-86.07627, 40.200503]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.07627, 40.200503],\n          [-86.166728, 40.222063]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.166728, 40.222063],\n          [-86.257243, 40.243552]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.257243, 40.243552],\n          [-86.285248, 40.250184]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.779877, 40.155786],\n          [-85.865993, 40.125739]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.865993, 40.125739],\n          [-85.952033, 40.095627]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.952033, 40.095627],\n          [-85.972137, 40.088579]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/test/out/MultiLineString.shorter.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.285248, 40.250184],\n          [-86.194715, 40.228717]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.194715, 40.228717],\n          [-86.10424, 40.207179]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.10424, 40.207179],\n          [-86.013822, 40.18557]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-86.013822, 40.18557],\n          [-85.98587, 40.178873]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.972137, 40.088579],\n          [-85.886115, 40.118705]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.886115, 40.118705],\n          [-85.800016, 40.148767]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-85.800016, 40.148767],\n          [-85.779877, 40.155786]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { truncate } from \"@turf/truncate\";\nimport { featureEach } from \"@turf/meta\";\nimport {\n  lineString,\n  featureCollection,\n  point,\n  geometryCollection,\n} from \"@turf/helpers\";\nimport { lineChunk } from \"./index.js\";\nimport { Feature } from \"geojson\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    geojson: loadJsonFileSync(directories.in + filename) as any,\n  };\n});\n\ntest(\"turf-line-chunk: shorter\", (t) => {\n  for (let { filename, geojson } of fixtures) {\n    const chunked = colorize(\n      truncate(lineChunk(geojson, 5, { units: \"miles\" }))\n    );\n    filename = filename.replace(\".geojson\", \".shorter.geojson\");\n    if (process.env.REGEN) {\n      writeJsonFileSync(directories.out + filename, chunked);\n    }\n\n    const expected = loadJsonFileSync(directories.out + filename);\n    t.deepEquals(chunked, expected, path.parse(filename).name);\n  }\n  t.end();\n});\n\ntest(\"turf-line-chunk: longer\", (t) => {\n  for (let { filename, geojson } of fixtures) {\n    const chunked = colorize(\n      truncate(lineChunk(geojson, 50, { units: \"miles\" }))\n    );\n    filename = filename.replace(\".geojson\", \".longer.geojson\");\n    if (process.env.REGEN) {\n      writeJsonFileSync(directories.out + filename, chunked);\n    }\n\n    const expected = loadJsonFileSync(directories.out + filename);\n    t.deepEquals(chunked, expected, path.parse(filename).name);\n  }\n  t.end();\n});\n\ntest(\"turf-line-chunk: reverse\", (t) => {\n  for (let { filename, geojson } of fixtures) {\n    const chunked = colorize(\n      truncate(lineChunk(geojson, 5, { units: \"miles\", reverse: true }))\n    );\n    filename = filename.replace(\".geojson\", \".reverse.geojson\");\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, chunked);\n\n    const expected = loadJsonFileSync(directories.out + filename);\n    t.deepEquals(chunked, expected, path.parse(filename).name);\n  }\n  t.end();\n});\n\ntest(\"turf-line-chunk: Support Geometry Objects\", (t) => {\n  const line = lineString([\n    [11, 0],\n    [22, 4],\n    [31, 0],\n    [31, 11],\n    [21, 15],\n    [11, 11],\n    [11, 0],\n  ]);\n  t.assert(lineChunk(line.geometry, 10), \"support geometry objects\");\n  t.end();\n});\n\ntest(\"turf-line-chunk: Prevent input mutation\", (t) => {\n  const line = lineString([\n    [11, 0],\n    [22, 4],\n    [31, 0],\n    [31, 11],\n    [21, 15],\n    [11, 11],\n    [11, 0],\n  ]);\n  const before = JSON.parse(JSON.stringify(line));\n  lineChunk(line, 10);\n  t.deepEqual(line, before, \"input should not mutate\");\n  t.end();\n});\n\n/**\n * Colorize FeatureCollection\n *\n * @param {FeatureCollection|Feature<any>} geojson Feature or FeatureCollection\n * @returns {FeatureCollection<any>} colorized FeatureCollection\n */\nfunction colorize(geojson: any) {\n  const results: Feature[] = [];\n  featureEach(geojson, (feature, index) => {\n    const r = index % 2 === 0 ? \"F\" : \"0\";\n    const g = index % 2 === 0 ? \"0\" : \"0\";\n    const b = index % 2 === 0 ? \"0\" : \"F\";\n    feature.properties = Object.assign(\n      {\n        stroke: \"#\" + r + g + b,\n        \"stroke-width\": 10,\n      },\n      feature.properties\n    );\n    results.push(feature);\n  });\n  return featureCollection(results);\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-line-chunk/types.ts",
    "content": "import {\n  lineString,\n  geometryCollection,\n  featureCollection,\n} from \"@turf/helpers\";\nimport { lineChunk } from \"./index.js\";\n\nconst line = lineString([\n  [0, 0],\n  [1, 1],\n  [2, 2],\n]);\nconst collection = featureCollection([line]);\nconst geomCollection = geometryCollection([line.geometry]);\n\nlineChunk(line, 2);\nlineChunk(line, 2, { units: \"kilometers\" });\nlineChunk(line.geometry, 2);\nlineChunk(collection, 2);\nlineChunk(geomCollection, 2);\n"
  },
  {
    "path": "packages/turf-line-intersect/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-line-intersect/README.md",
    "content": "# @turf/line-intersect\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## lineIntersect\n\nTakes any LineString or Polygon GeoJSON and returns the intersecting point(s).\n\n### Parameters\n\n*   `line1` **[GeoJSON][1]** any LineString or Polygon\n*   `line2` **[GeoJSON][1]** any LineString or Polygon\n*   `options` **[Object][2]** Optional parameters (optional, default `{}`)\n\n    *   `options.removeDuplicates` **[boolean][3]** remove duplicate intersections (optional, default `true`)\n    *   `options.ignoreSelfIntersections` **[boolean][3]** ignores self-intersections on input features (optional, default `true`)\n\n### Examples\n\n```javascript\nvar line1 = turf.lineString([[126, -11], [129, -21]]);\nvar line2 = turf.lineString([[123, -18], [131, -14]]);\nvar intersects = turf.lineIntersect(line1, line2);\n\n//addToMap\nvar addToMap = [line1, line2, intersects]\n```\n\nReturns **[FeatureCollection][4]<[Point][5]>** point(s) that intersect both\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/line-intersect\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-line-intersect/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { lineIntersect } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * 2-vertex-segment x 1,467,485 ops/sec ±1.74% (89 runs sampled)\n * double-intersect x 307,665 ops/sec ±1.70% (91 runs sampled)\n * multi-linestring x 81,337 ops/sec ±0.67% (94 runs sampled)\n * polygons-with-holes x 27,711 ops/sec ±0.70% (92 runs sampled)\n * same-coordinates x 521,277 ops/sec ±0.75% (92 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-line-intersect\");\nfor (const { name, geojson } of fixtures) {\n  const [line1, line2] = geojson.features;\n  suite.add(name, () => lineIntersect(line1, line2));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-line-intersect/index.ts",
    "content": "import { feature, featureCollection, point } from \"@turf/helpers\";\nimport {\n  Feature,\n  FeatureCollection,\n  LineString,\n  MultiLineString,\n  MultiPolygon,\n  Point,\n  Polygon,\n} from \"geojson\";\nimport type { Intersection } from \"sweepline-intersections\";\nimport { sweeplineIntersections as findIntersections } from \"./lib/sweepline-intersections-export.js\";\n\n/**\n * Takes any LineString or Polygon GeoJSON and returns the intersecting point(s).\n *\n * @function\n * @param {GeoJSON} line1 any LineString or Polygon\n * @param {GeoJSON} line2 any LineString or Polygon\n * @param {Object} [options={}] Optional parameters\n * @param {boolean} [options.removeDuplicates=true] remove duplicate intersections\n * @param {boolean} [options.ignoreSelfIntersections=true] ignores self-intersections on input features\n * @returns {FeatureCollection<Point>} point(s) that intersect both\n * @example\n * var line1 = turf.lineString([[126, -11], [129, -21]]);\n * var line2 = turf.lineString([[123, -18], [131, -14]]);\n * var intersects = turf.lineIntersect(line1, line2);\n *\n * //addToMap\n * var addToMap = [line1, line2, intersects]\n */\nfunction lineIntersect<\n  G1 extends LineString | MultiLineString | Polygon | MultiPolygon,\n  G2 extends LineString | MultiLineString | Polygon | MultiPolygon,\n>(\n  line1: FeatureCollection<G1> | Feature<G1> | G1,\n  line2: FeatureCollection<G2> | Feature<G2> | G2,\n  options: {\n    removeDuplicates?: boolean;\n    ignoreSelfIntersections?: boolean;\n  } = {}\n): FeatureCollection<Point> {\n  const { removeDuplicates = true, ignoreSelfIntersections = true } = options;\n  let features: Feature<G1 | G2>[] = [];\n  if (line1.type === \"FeatureCollection\")\n    features = features.concat(line1.features);\n  else if (line1.type === \"Feature\") features.push(line1);\n  else if (\n    line1.type === \"LineString\" ||\n    line1.type === \"Polygon\" ||\n    line1.type === \"MultiLineString\" ||\n    line1.type === \"MultiPolygon\"\n  ) {\n    features.push(feature(line1));\n  }\n\n  if (line2.type === \"FeatureCollection\")\n    features = features.concat(line2.features);\n  else if (line2.type === \"Feature\") features.push(line2);\n  else if (\n    line2.type === \"LineString\" ||\n    line2.type === \"Polygon\" ||\n    line2.type === \"MultiLineString\" ||\n    line2.type === \"MultiPolygon\"\n  ) {\n    features.push(feature(line2));\n  }\n\n  const intersections = findIntersections(\n    featureCollection(features),\n    ignoreSelfIntersections\n  );\n\n  let results: Intersection[] = [];\n  if (removeDuplicates) {\n    const unique: Record<string, boolean> = {};\n    intersections.forEach((intersection) => {\n      const key = intersection.join(\",\");\n      if (!unique[key]) {\n        unique[key] = true;\n        results.push(intersection);\n      }\n    });\n  } else {\n    results = intersections;\n  }\n  return featureCollection(results.map((r) => point(r)));\n}\n\nexport { lineIntersect };\nexport default lineIntersect;\n"
  },
  {
    "path": "packages/turf-line-intersect/lib/sweepline-intersections-export.ts",
    "content": "// Get around problems with moduleResolution node16 and some older libraries.\n// Manifests as \"This expression is not callable ... has no call signatures\"\n// https://stackoverflow.com/a/74709714\n\nimport lib from \"sweepline-intersections\";\n\nexport const sweeplineIntersections = lib as unknown as typeof lib.default;\n"
  },
  {
    "path": "packages/turf-line-intersect/package.json",
    "content": "{\n  \"name\": \"@turf/line-intersect\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes any LineString or Polygon GeoJSON and returns the intersecting point(s).\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Denis Carriere <@DenisCarriere>\",\n    \"Daniel Pulido <@dpmcmlxxvi>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"gis\",\n    \"line\",\n    \"intersect\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"sweepline-intersections\": \"^1.5.0\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test/in/2-vertex-segment.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [124.584961, -12.768946],\n          [126.738281, -17.224758]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [123.354492, -15.961329],\n          [127.22168, -14.008696]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test/in/double-intersect.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [142.03125, -11.695273],\n          [138.691406, -16.804541],\n          [136.40625, -14.604847],\n          [135.966797, -12.039321],\n          [131.308594, -11.436955],\n          [128.232422, -15.36895],\n          [125.947266, -13.581921],\n          [121.816406, -18.729502],\n          [117.421875, -20.632784],\n          [113.378906, -23.402765],\n          [114.169922, -26.667096]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [117.861328, -15.029686],\n          [122.124023, -24.886436],\n          [132.583008, -22.309426],\n          [132.890625, -7.754537]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test/in/multi-linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [142.03125, -11.695273],\n            [138.691406, -16.804541],\n            [136.40625, -14.604847],\n            [135.966797, -12.039321],\n            [131.308594, -11.436955],\n            [128.232422, -15.36895],\n            [125.947266, -13.581921],\n            [121.816406, -18.729502],\n            [117.421875, -20.632784],\n            [113.378906, -23.402765],\n            [114.169922, -26.667096]\n          ],\n          [\n            [117.290039, -27.994401],\n            [118.87207, -25.165173],\n            [121.508789, -24.407138],\n            [122.783203, -19.228177],\n            [125.683594, -18.771115],\n            [130.78125, -21.534847],\n            [133.417969, -17.602139],\n            [137.768555, -19.55979],\n            [139.658203, -18.39623]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [117.861328, -15.029686],\n            [122.124023, -24.886436],\n            [132.583008, -22.309426],\n            [132.890625, -7.754537]\n          ],\n          [\n            [115.751953, -17.014768],\n            [118.652344, -26.037042],\n            [118.344727, -28.343065],\n            [125.068359, -28.652031],\n            [125.771484, -26.627818],\n            [131.572266, -26.509905],\n            [136.40625, -24.886436],\n            [136.186523, -22.105999],\n            [134.956055, -20.591652],\n            [135.439453, -16.214675],\n            [136.713867, -15.114553],\n            [134.912109, -11.738302],\n            [135, -10.141932]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test/in/polygons-with-holes.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127.397461, -14.221789],\n            [119.399414, -18.729502],\n            [114.741211, -21.289374],\n            [113.554688, -24.487149],\n            [114.213867, -28.304381],\n            [116.235352, -30.977609],\n            [115.532227, -33.468108],\n            [116.191406, -34.633208],\n            [120.629883, -33.541395],\n            [124.541016, -33.247876],\n            [128.62793, -32.10119],\n            [129.726563, -31.765537],\n            [129.726563, -28.806174],\n            [128.276367, -28.497661],\n            [125.727539, -28.459033],\n            [122.695313, -30.372875],\n            [120.410156, -30.562261],\n            [118.476562, -28.998532],\n            [118.608398, -27.527758],\n            [123.925781, -27.019984],\n            [126.5625, -26.549223],\n            [130.166016, -25.76032],\n            [130.166016, -23.644524],\n            [127.617187, -22.917923],\n            [123.837891, -24.567108],\n            [119.267578, -24.567108],\n            [118.564453, -23.281719],\n            [119.838867, -21.330315],\n            [123.706055, -21.493964],\n            [127.089844, -21.0845],\n            [128.232422, -19.103648],\n            [127.749023, -17.895114],\n            [130.297852, -17.182779],\n            [129.858398, -15.538376],\n            [129.023438, -14.179186],\n            [127.397461, -14.221789]\n          ],\n          [\n            [122.958984, -19.890723],\n            [125.068359, -19.890723],\n            [125.068359, -18.187607],\n            [122.958984, -18.187607],\n            [122.958984, -19.890723]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120.849609, -14.85985],\n            [117.070313, -15.496032],\n            [117.026367, -17.769612],\n            [119.663086, -20.468189],\n            [121.157227, -23.039298],\n            [120.058594, -24.647017],\n            [118.344727, -26.076521],\n            [120.410156, -28.343065],\n            [120.146484, -30.939924],\n            [118.256836, -33.027088],\n            [123.925781, -34.885931],\n            [126.123047, -33.687782],\n            [125.947266, -31.840233],\n            [124.057617, -28.536275],\n            [122.080078, -26.273714],\n            [123.442383, -23.885838],\n            [125.200195, -22.796439],\n            [124.277344, -19.47695],\n            [120.849609, -14.85985]\n          ],\n          [\n            [121.157227, -27.371767],\n            [121.157227, -29.42046],\n            [121.025391, -31.952162],\n            [120.893555, -33.027088],\n            [123.662109, -33.870416],\n            [124.584961, -33.431441],\n            [124.541016, -31.128199],\n            [122.827148, -29.382175],\n            [122.124023, -27.916767],\n            [121.157227, -27.371767]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test/in/same-coordinates.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [120, -20],\n          [122.5, -16],\n          [125, -15],\n          [127.5, -16],\n          [130, -20]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [120, -20],\n          [122.5, -24],\n          [125, -25],\n          [127.5, -24],\n          [130, -20]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test/in/self-intersecting-line.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [0, 2],\n          [2, 1],\n          [-1, 1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [3, 3],\n          [4, 4],\n          [5, 5]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test/in/self-intersecting-multiline.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [1, 2],\n            [0, 4]\n          ],\n          [\n            [1, 0],\n            [0, 2],\n            [1, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [3, 3],\n          [4, 4],\n          [5, 5]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test/in/self-intersecting-multipoly.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ed333b\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"coordinates\": [\n          [\n            [\n              [2.8208987964653716, 5.206515064293427],\n              [2.8208987964653716, -4.530167455797994],\n              [6.383916833323553, -4.530167455797994],\n              [6.383916833323553, 5.206515064293427],\n              [2.8208987964653716, 5.206515064293427]\n            ]\n          ],\n          [\n            [\n              [-0.33343506038161763, 3.67541603033537],\n              [-0.33343506038161763, 2.1793088174136273],\n              [8.775841349855597, 2.1793088174136273],\n              [8.775841349855597, 3.67541603033537],\n              [-0.33343506038161763, 3.67541603033537]\n            ]\n          ]\n        ],\n        \"type\": \"MultiPolygon\"\n      },\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"coordinates\": [\n          [\n            [-7.951422534380413, 5.231149187754099],\n            [-7.951422534380413, -4.552832252613101],\n            [-5.701165954657256, -4.552832252613101],\n            [-5.701165954657256, 5.231149187754099],\n            [-7.951422534380413, 5.231149187754099]\n          ]\n        ],\n        \"type\": \"Polygon\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test/in/self-intersecting-poly.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"coordinates\": [\n          [\n            [-0.8680870854922205, 3.0368343508535673],\n            [-1.321147431010786, 5.333329344976903],\n            [1.0099462525165848, 5.611566335081363],\n            [0.47439299724965167, -1.9282285399474688],\n            [3.2162894164922875, -1.8166964568157766],\n            [2.707220996335252, 7.192842763774053],\n            [-3.8645185945755713, 6.519248925309753],\n            [-3.8571038955967083, 0.3483632770754781],\n            [-0.5093053180867742, 0.39824548653076874],\n            [4.4119165583018685, 0.21046777461485533],\n            [3.9804563423212755, 3.7937082620644844],\n            [-0.8680870854922205, 3.0368343508535673]\n          ]\n        ],\n        \"type\": \"Polygon\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"coordinates\": [\n          [\n            [-7.4564971746842446, 6.278543929857676],\n            [-13.631981273628753, 6.323585458965155],\n            [-12.43687692686214, -2.589094309688946],\n            [-6.376915352576532, -3.0767722870515115],\n            [-7.4564971746842446, 6.278543929857676]\n          ]\n        ],\n        \"type\": \"Polygon\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test/out/2-vertex-segment.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [125.583754, -14.835723]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [124.584961, -12.768946],\n          [126.738281, -17.224758]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [123.354492, -15.961329],\n          [127.22168, -14.008696]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test/out/double-intersect.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [119.832884, -19.58857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [132.808697, -11.630938]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [142.03125, -11.695273],\n          [138.691406, -16.804541],\n          [136.40625, -14.604847],\n          [135.966797, -12.039321],\n          [131.308594, -11.436955],\n          [128.232422, -15.36895],\n          [125.947266, -13.581921],\n          [121.816406, -18.729502],\n          [117.421875, -20.632784],\n          [113.378906, -23.402765],\n          [114.169922, -26.667096]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [117.861328, -15.029686],\n          [122.124023, -24.886436],\n          [132.583008, -22.309426],\n          [132.890625, -7.754537]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test/out/multi-linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [117.006519, -20.917359]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [118.554586, -25.732946]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [119.832884, -19.58857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [121.656735, -23.805914]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [132.658557, -18.734814]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [132.808697, -11.630938]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [135.006479, -11.91514]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [135.197772, -18.403004]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [136.389417, -14.506578]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [136.479474, -14.675333]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [142.03125, -11.695273],\n            [138.691406, -16.804541],\n            [136.40625, -14.604847],\n            [135.966797, -12.039321],\n            [131.308594, -11.436955],\n            [128.232422, -15.36895],\n            [125.947266, -13.581921],\n            [121.816406, -18.729502],\n            [117.421875, -20.632784],\n            [113.378906, -23.402765],\n            [114.169922, -26.667096]\n          ],\n          [\n            [117.290039, -27.994401],\n            [118.87207, -25.165173],\n            [121.508789, -24.407138],\n            [122.783203, -19.228177],\n            [125.683594, -18.771115],\n            [130.78125, -21.534847],\n            [133.417969, -17.602139],\n            [137.768555, -19.55979],\n            [139.658203, -18.39623]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [117.861328, -15.029686],\n            [122.124023, -24.886436],\n            [132.583008, -22.309426],\n            [132.890625, -7.754537]\n          ],\n          [\n            [115.751953, -17.014768],\n            [118.652344, -26.037042],\n            [118.344727, -28.343065],\n            [125.068359, -28.652031],\n            [125.771484, -26.627818],\n            [131.572266, -26.509905],\n            [136.40625, -24.886436],\n            [136.186523, -22.105999],\n            [134.956055, -20.591652],\n            [135.439453, -16.214675],\n            [136.713867, -15.114553],\n            [134.912109, -11.738302],\n            [135, -10.141932]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test/out/polygons-with-holes.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [118.465639, -19.242649]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [120.170188, -33.654475]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [119.582432, -27.434744]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [120.17229, -21.344425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [120.1132, -24.567108]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [120.201928, -30.393864]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [122.447193, -17.011768]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [122.196098, -33.423855]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [121.100749, -30.505027]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [122.824274, -27.12517]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [123.053712, -24.567108]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [123.377165, -29.942512]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [123.320136, -18.187607]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [124.468085, -29.253959]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [124.392377, -19.890723]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [124.80125, -21.361437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [124.581243, -33.236589]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [126.041148, -32.826977]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127.397461, -14.221789],\n            [119.399414, -18.729502],\n            [114.741211, -21.289374],\n            [113.554688, -24.487149],\n            [114.213867, -28.304381],\n            [116.235352, -30.977609],\n            [115.532227, -33.468108],\n            [116.191406, -34.633208],\n            [120.629883, -33.541395],\n            [124.541016, -33.247876],\n            [128.62793, -32.10119],\n            [129.726563, -31.765537],\n            [129.726563, -28.806174],\n            [128.276367, -28.497661],\n            [125.727539, -28.459033],\n            [122.695313, -30.372875],\n            [120.410156, -30.562261],\n            [118.476562, -28.998532],\n            [118.608398, -27.527758],\n            [123.925781, -27.019984],\n            [126.5625, -26.549223],\n            [130.166016, -25.76032],\n            [130.166016, -23.644524],\n            [127.617187, -22.917923],\n            [123.837891, -24.567108],\n            [119.267578, -24.567108],\n            [118.564453, -23.281719],\n            [119.838867, -21.330315],\n            [123.706055, -21.493964],\n            [127.089844, -21.0845],\n            [128.232422, -19.103648],\n            [127.749023, -17.895114],\n            [130.297852, -17.182779],\n            [129.858398, -15.538376],\n            [129.023438, -14.179186],\n            [127.397461, -14.221789]\n          ],\n          [\n            [122.958984, -19.890723],\n            [125.068359, -19.890723],\n            [125.068359, -18.187607],\n            [122.958984, -18.187607],\n            [122.958984, -19.890723]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120.849609, -14.85985],\n            [117.070313, -15.496032],\n            [117.026367, -17.769612],\n            [119.663086, -20.468189],\n            [121.157227, -23.039298],\n            [120.058594, -24.647017],\n            [118.344727, -26.076521],\n            [120.410156, -28.343065],\n            [120.146484, -30.939924],\n            [118.256836, -33.027088],\n            [123.925781, -34.885931],\n            [126.123047, -33.687782],\n            [125.947266, -31.840233],\n            [124.057617, -28.536275],\n            [122.080078, -26.273714],\n            [123.442383, -23.885838],\n            [125.200195, -22.796439],\n            [124.277344, -19.47695],\n            [120.849609, -14.85985]\n          ],\n          [\n            [121.157227, -27.371767],\n            [121.157227, -29.42046],\n            [121.025391, -31.952162],\n            [120.893555, -33.027088],\n            [123.662109, -33.870416],\n            [124.584961, -33.431441],\n            [124.541016, -31.128199],\n            [122.827148, -29.382175],\n            [122.124023, -27.916767],\n            [121.157227, -27.371767]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test/out/same-coordinates.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [120, -20]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [130, -20]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [120, -20],\n          [122.5, -16],\n          [125, -15],\n          [127.5, -16],\n          [130, -20]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [120, -20],\n          [122.5, -24],\n          [125, -25],\n          [127.5, -24],\n          [130, -20]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test/out/self-intersecting-line.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [0, 2],\n          [2, 1],\n          [-1, 1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [3, 3],\n          [4, 4],\n          [5, 5]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test/out/self-intersecting-multiline.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [1, 2],\n            [0, 4]\n          ],\n          [\n            [1, 0],\n            [0, 2],\n            [1, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [3, 3],\n          [4, 4],\n          [5, 5]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test/out/self-intersecting-multipoly.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#ed333b\",\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"coordinates\": [\n          [\n            [\n              [2.8208987964653716, 5.206515064293427],\n              [2.8208987964653716, -4.530167455797994],\n              [6.383916833323553, -4.530167455797994],\n              [6.383916833323553, 5.206515064293427],\n              [2.8208987964653716, 5.206515064293427]\n            ]\n          ],\n          [\n            [\n              [-0.33343506038161763, 3.67541603033537],\n              [-0.33343506038161763, 2.1793088174136273],\n              [8.775841349855597, 2.1793088174136273],\n              [8.775841349855597, 3.67541603033537],\n              [-0.33343506038161763, 3.67541603033537]\n            ]\n          ]\n        ],\n        \"type\": \"MultiPolygon\"\n      },\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"coordinates\": [\n          [\n            [-7.951422534380413, 5.231149187754099],\n            [-7.951422534380413, -4.552832252613101],\n            [-5.701165954657256, -4.552832252613101],\n            [-5.701165954657256, 5.231149187754099],\n            [-7.951422534380413, 5.231149187754099]\n          ]\n        ],\n        \"type\": \"Polygon\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test/out/self-intersecting-poly.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"coordinates\": [\n          [\n            [-0.8680870854922205, 3.0368343508535673],\n            [-1.321147431010786, 5.333329344976903],\n            [1.0099462525165848, 5.611566335081363],\n            [0.47439299724965167, -1.9282285399474688],\n            [3.2162894164922875, -1.8166964568157766],\n            [2.707220996335252, 7.192842763774053],\n            [-3.8645185945755713, 6.519248925309753],\n            [-3.8571038955967083, 0.3483632770754781],\n            [-0.5093053180867742, 0.39824548653076874],\n            [4.4119165583018685, 0.21046777461485533],\n            [3.9804563423212755, 3.7937082620644844],\n            [-0.8680870854922205, 3.0368343508535673]\n          ]\n        ],\n        \"type\": \"Polygon\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"coordinates\": [\n          [\n            [-7.4564971746842446, 6.278543929857676],\n            [-13.631981273628753, 6.323585458965155],\n            [-12.43687692686214, -2.589094309688946],\n            [-6.376915352576532, -3.0767722870515115],\n            [-7.4564971746842446, 6.278543929857676]\n          ]\n        ],\n        \"type\": \"Polygon\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-intersect/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { truncate } from \"@turf/truncate\";\nimport { featureCollection, lineString, polygon } from \"@turf/helpers\";\nimport { lineIntersect } from \"./index.js\";\nimport { Feature, LineString, Point } from \"geojson\";\n\nconst directories = {\n  in: path.join(\"test\", \"in\") + path.sep,\n  out: path.join(\"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(\n      directories.in + filename\n    ) as GeoJSON.FeatureCollection<LineString>,\n  };\n});\n\ntest(\"turf-line-intersect\", (t) => {\n  for (const { filename, name, geojson } of fixtures) {\n    const [line1, line2] = geojson.features;\n    const results: GeoJSON.FeatureCollection<LineString | Point> = truncate(\n      lineIntersect(line1, line2)\n    );\n    results.features.push(line1);\n    results.features.push(line2);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEquals(results, loadJsonFileSync(directories.out + filename), name);\n  }\n  t.end();\n});\n\ntest(\"turf-line-intersect - prevent input mutation\", (t) => {\n  const line1 = lineString([\n    [7, 50],\n    [8, 50],\n    [9, 50],\n  ]);\n  const line2 = lineString([\n    [8, 49],\n    [8, 50],\n    [8, 51],\n  ]);\n  const before1 = JSON.parse(JSON.stringify(line1));\n  const before2 = JSON.parse(JSON.stringify(line2));\n\n  lineIntersect(line1, line2);\n  t.deepEqual(line1, before1, \"line1 input should not be mutated\");\n  t.deepEqual(line2, before2, \"line2 input should not be mutated\");\n  t.end();\n});\n\ntest(\"turf-line-intersect - Geometry Objects\", (t) => {\n  const line1 = lineString([\n    [7, 50],\n    [9, 50],\n  ]);\n  const line2 = lineString([\n    [8, 49],\n    [8, 51],\n  ]);\n  t.ok(\n    lineIntersect(line1.geometry, line2.geometry).features.length,\n    \"support Geometry Objects\"\n  );\n  t.ok(\n    lineIntersect(featureCollection([line1]), featureCollection([line2]))\n      .features.length,\n    \"support Feature Collection\"\n  );\n  // t.ok(\n  //   lineIntersect(\n  //     geometryCollection([line1.geometry]),\n  //     geometryCollection([line2.geometry])\n  //   ).features.length,\n  //   \"support Geometry Collection\"\n  // );\n  t.end();\n});\n\ntest(\"turf-line-intersect - same point #688\", (t) => {\n  const line1 = lineString([\n    [7, 50],\n    [8, 50],\n    [9, 50],\n  ]);\n  const line2 = lineString([\n    [8, 49],\n    [8, 50],\n    [8, 51],\n  ]);\n\n  const results = lineIntersect(line1, line2);\n  t.equal(results.features.length, 1, \"should return single point\");\n\n  const results2 = lineIntersect(line1, line2, {\n    removeDuplicates: false,\n  });\n  t.equal(results2.features.length, 3, \"should return three points\");\n\n  t.end();\n});\n\ntest(\"turf-line-intersect - polygon support #586\", (t) => {\n  const poly1 = polygon([\n    [\n      [7, 50],\n      [8, 50],\n      [9, 50],\n      [7, 50],\n    ],\n  ]);\n  const poly2 = polygon([\n    [\n      [8, 49],\n      [8, 50],\n      [8, 51],\n      [8, 49],\n    ],\n  ]);\n\n  const results = lineIntersect(poly1, poly2);\n  t.equal(results.features.length, 1, \"should return single point\");\n  t.end();\n});\n\n/**\n * ensures that the self intersection param behaves as expected -\n * since it cannot be verified in the fixture format.\n */\ntest(\"turf-line-intersect - self intersection behavior\", (t) => {\n  const line1: Feature<LineString> = {\n    type: \"Feature\",\n    properties: {},\n    geometry: {\n      type: \"LineString\",\n      coordinates: [\n        [0, 0],\n        [0, 2],\n        [2, 1],\n        [-1, 1],\n      ],\n    },\n  };\n  const line2: Feature<LineString> = {\n    type: \"Feature\",\n    properties: {},\n    geometry: {\n      type: \"LineString\",\n      coordinates: [\n        [3, 3],\n        [4, 4],\n        [5, 5],\n      ],\n    },\n  };\n\n  const ignored = lineIntersect(line1, line2);\n  t.equal(\n    ignored.features.length,\n    0,\n    \"self intersections should be ignored by default\"\n  );\n\n  const included = lineIntersect(line1, line2, {\n    ignoreSelfIntersections: false,\n  });\n  t.equal(\n    included.features.length,\n    1,\n    \"self intersections should be included when ignoreSelfIntersections set to false\"\n  );\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-line-intersect/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-line-offset/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-line-offset/README.md",
    "content": "# @turf/line-offset\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## lineOffset\n\nTakes a [line][1] and returns a [line][1] at offset by the specified distance.\n\n### Parameters\n\n*   `geojson` **([Geometry][2] | [Feature][3]<([LineString][1] | [MultiLineString][4])>)** input GeoJSON\n*   `distance` **[number][5]** distance to offset the line (can be of negative value)\n*   `options` **[Object][6]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** Supports all valid Turf [Units][7]. (optional, default `'kilometers'`)\n\n### Examples\n\n```javascript\nvar line = turf.lineString([[-83, 30], [-84, 36], [-78, 41]], { \"stroke\": \"#F00\" });\n\nvar offsetLine = turf.lineOffset(line, 2, {units: 'miles'});\n\n//addToMap\nvar addToMap = [offsetLine, line]\noffsetLine.properties.stroke = \"#00F\"\n```\n\nReturns **[Feature][3]<([LineString][1] | [MultiLineString][4])>** Line offset from the input line\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.5\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[7]: https://turfjs.org/docs/api/types/Units\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/line-offset\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-line-offset/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { lineOffset } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nlet fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n// fixtures = fixtures.filter(fixture => fixture.name === 'polygon');\n\n/**\n * Benchmark Results\n *\n * line-horizontal x 1,816,451 ops/sec ±15.31% (62 runs sampled)\n * linestring-long x 144,640 ops/sec ±3.35% (82 runs sampled)\n * linestring-singleSegmentOnly x 2,649,959 ops/sec ±1.54% (76 runs sampled)\n * linestring-straight x 1,857,452 ops/sec ±5.83% (77 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-line-offset\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => lineOffset(geojson, 100, \"meters\"));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-line-offset/index.ts",
    "content": "import { flattenEach } from \"@turf/meta\";\nimport { getCoords, getType } from \"@turf/invariant\";\nimport {\n  isObject,\n  lineString,\n  multiLineString,\n  lengthToDegrees,\n  Units,\n} from \"@turf/helpers\";\nimport { intersection } from \"./lib/intersection.js\";\nimport { Feature, LineString, MultiLineString, Position } from \"geojson\";\n\n/**\n * Takes a {@link LineString|line} and returns a {@link LineString|line} at offset by the specified distance.\n *\n * @function\n * @param {Geometry|Feature<LineString|MultiLineString>} geojson input GeoJSON\n * @param {number} distance distance to offset the line (can be of negative value)\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.\n * @returns {Feature<LineString|MultiLineString>} Line offset from the input line\n * @example\n * var line = turf.lineString([[-83, 30], [-84, 36], [-78, 41]], { \"stroke\": \"#F00\" });\n *\n * var offsetLine = turf.lineOffset(line, 2, {units: 'miles'});\n *\n * //addToMap\n * var addToMap = [offsetLine, line]\n * offsetLine.properties.stroke = \"#00F\"\n */\nfunction lineOffset<T extends LineString | MultiLineString>(\n  geojson: Feature<T> | T,\n  distance: number,\n  options: { units?: Units } = {}\n): Feature<T> {\n  // Optional parameters\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  const { units = \"kilometers\" } = options;\n\n  // Valdiation\n  if (!geojson) throw new Error(\"geojson is required\");\n  if (distance === undefined || distance === null || isNaN(distance))\n    throw new Error(\"distance is required\");\n\n  var type = getType(geojson);\n  var properties = geojson.type === \"Feature\" ? geojson.properties : {};\n\n  switch (type) {\n    case \"LineString\":\n      return lineOffsetFeature(geojson, distance, units) as Feature<T>;\n    case \"MultiLineString\":\n      var coords: Position[][] = [];\n      flattenEach(geojson, function (feature) {\n        coords.push(\n          lineOffsetFeature(feature, distance, units).geometry.coordinates\n        );\n      });\n      return multiLineString(coords, properties) as Feature<T>;\n    default:\n      throw new Error(\"geometry \" + type + \" is not supported\");\n  }\n}\n\n/**\n * Line Offset\n *\n * @private\n * @param {Geometry|Feature<LineString>} line input line\n * @param {number} distance distance to offset the line (can be of negative value)\n * @param {string} [units=kilometers] units\n * @returns {Feature<LineString>} Line offset from the input line\n */\nfunction lineOffsetFeature(\n  line: Feature<LineString | MultiLineString> | LineString | MultiLineString,\n  distance: number,\n  units: Units\n) {\n  var segments: [[number, number], [number, number]][] = [];\n  var offsetDegrees = lengthToDegrees(distance, units);\n  var coords = getCoords(line);\n  var finalCoords: [number, number][] = [];\n  coords.forEach(function (currentCoords, index) {\n    if (index !== coords.length - 1) {\n      var segment = processSegment(\n        currentCoords,\n        coords[index + 1],\n        offsetDegrees\n      );\n      segments.push(segment);\n      if (index > 0) {\n        var seg2Coords = segments[index - 1];\n        var intersects = intersection(segment, seg2Coords);\n\n        // Handling for line segments that aren't straight\n        if (intersects !== false) {\n          seg2Coords[1] = intersects;\n          segment[0] = intersects;\n        }\n\n        finalCoords.push(seg2Coords[0]);\n        if (index === coords.length - 2) {\n          finalCoords.push(segment[0]);\n          finalCoords.push(segment[1]);\n        }\n      }\n      // Handling for lines that only have 1 segment\n      if (coords.length === 2) {\n        finalCoords.push(segment[0]);\n        finalCoords.push(segment[1]);\n      }\n    }\n  });\n  return lineString(\n    finalCoords,\n    line.type === \"Feature\" ? line.properties : {}\n  );\n}\n\n/**\n * Process Segment\n * Inspiration taken from http://stackoverflow.com/questions/2825412/draw-a-parallel-line\n *\n * @private\n * @param {Array<number>} point1 Point coordinates\n * @param {Array<number>} point2 Point coordinates\n * @param {number} offset Offset\n * @returns {Array<Array<number>>} offset points\n */\nfunction processSegment(\n  point1: [number, number],\n  point2: [number, number],\n  offset: number\n): [[number, number], [number, number]] {\n  var L = Math.sqrt(\n    (point1[0] - point2[0]) * (point1[0] - point2[0]) +\n      (point1[1] - point2[1]) * (point1[1] - point2[1])\n  );\n\n  var out1x = point1[0] + (offset * (point2[1] - point1[1])) / L;\n  var out2x = point2[0] + (offset * (point2[1] - point1[1])) / L;\n  var out1y = point1[1] + (offset * (point1[0] - point2[0])) / L;\n  var out2y = point2[1] + (offset * (point1[0] - point2[0])) / L;\n  return [\n    [out1x, out1y],\n    [out2x, out2y],\n  ];\n}\n\nexport { lineOffset };\nexport default lineOffset;\n"
  },
  {
    "path": "packages/turf-line-offset/lib/intersection.ts",
    "content": "/**\n * https://github.com/rook2pawn/node-intersection\n *\n * Author @rook2pawn\n */\n\n/**\n * AB\n *\n * @private\n * @param {Array<Array<number>>} segment - 2 vertex line segment\n * @returns {Array<number>} coordinates [x, y]\n */\nfunction ab(segment: [number, number][]): [number, number] {\n  var start = segment[0];\n  var end = segment[1];\n  return [end[0] - start[0], end[1] - start[1]];\n}\n\n/**\n * Cross Product\n *\n * @private\n * @param {Array<number>} v1 coordinates [x, y]\n * @param {Array<number>} v2 coordinates [x, y]\n * @returns {Array<number>} Cross Product\n */\nfunction crossProduct(v1: [number, number], v2: [number, number]) {\n  return v1[0] * v2[1] - v2[0] * v1[1];\n}\n\n/**\n * Add\n *\n * @private\n * @param {Array<number>} v1 coordinates [x, y]\n * @param {Array<number>} v2 coordinates [x, y]\n * @returns {Array<number>} Add\n */\nfunction add(v1: [number, number], v2: [number, number]): [number, number] {\n  return [v1[0] + v2[0], v1[1] + v2[1]];\n}\n\n/**\n * Sub\n *\n * @private\n * @param {Array<number>} v1 coordinates [x, y]\n * @param {Array<number>} v2 coordinates [x, y]\n * @returns {Array<number>} Sub\n */\nfunction sub(v1: [number, number], v2: [number, number]): [number, number] {\n  return [v1[0] - v2[0], v1[1] - v2[1]];\n}\n\n/**\n * scalarMult\n *\n * @private\n * @param {number} s scalar\n * @param {Array<number>} v coordinates [x, y]\n * @returns {Array<number>} scalarMult\n */\nfunction scalarMult(s: number, v: [number, number]): [number, number] {\n  return [s * v[0], s * v[1]];\n}\n\n/**\n * Intersect Segments\n *\n * @private\n * @param {Array<number>} a coordinates [x, y]\n * @param {Array<number>} b coordinates [x, y]\n * @returns {Array<number>} intersection\n */\nfunction intersectSegments(\n  a: [number, number][],\n  b: [number, number][]\n): [number, number] {\n  var p = a[0];\n  var r = ab(a);\n  var q = b[0];\n  var s = ab(b);\n\n  var cross = crossProduct(r, s);\n  var qmp = sub(q, p);\n  var numerator = crossProduct(qmp, s);\n  var t = numerator / cross;\n  var intersection = add(p, scalarMult(t, r));\n  return intersection;\n}\n\n/**\n * Is Parallel\n *\n * @private\n * @param {Array<number>} a coordinates [x, y]\n * @param {Array<number>} b coordinates [x, y]\n * @returns {boolean} true if a and b are parallel (or co-linear)\n */\nfunction isParallel(a: [number, number][], b: [number, number][]): boolean {\n  var r = ab(a);\n  var s = ab(b);\n  return crossProduct(r, s) === 0;\n}\n\n/**\n * Intersection\n *\n * @private\n * @param {Array<number>} a coordinates [x, y]\n * @param {Array<number>} b coordinates [x, y]\n * @returns {Array<number>|boolean} true if a and b are parallel (or co-linear)\n */\nexport function intersection(\n  a: [number, number][],\n  b: [number, number][]\n): [number, number] | false {\n  if (isParallel(a, b)) return false;\n  return intersectSegments(a, b);\n}\n"
  },
  {
    "path": "packages/turf-line-offset/package.json",
    "content": "{\n  \"name\": \"@turf/line-offset\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a line and returns a line at offset by the specified distance.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"David Wee <@rook2pawn>\",\n    \"Rowan Winsemius <@rowanwins>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"line\",\n    \"linestring\",\n    \"turf\",\n    \"offset\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tstyche\"\n  },\n  \"devDependencies\": {\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tstyche\": \"^6.2.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-offset/test/in/line-concave.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke-width\": 5,\n    \"stroke\": \"red\",\n    \"distance\": 150,\n    \"units\": \"miles\"\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [0.9667968749999999, 21.69826549685252],\n      [-2.5927734375, 24.44714958973082],\n      [0.3955078125, 29.726222319395504],\n      [7.207031249999999, 29.916852233070173],\n      [11.337890625, 23.079731762449878],\n      [3.2080078125, 21.04349121680354]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-offset/test/in/line-horizontal.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F00\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [10, 0],\n      [20, 0]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-offset/test/in/linestring-long.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F00\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-24.2578125, 41.244772343082076],\n      [-6.328125, 45.336701909968134],\n      [0.703125, 49.83798245308484],\n      [2.8125, 44.33956524809713],\n      [-6.328125, 39.095962936305476],\n      [-5.44921875, 36.4566360115962],\n      [-0.17578125, 37.3002752813443],\n      [1.58203125, 39.36827914916014],\n      [3.33984375, 40.58058466412761],\n      [6.15234375, 41.244772343082076],\n      [7.3828125, 39.50404070558415],\n      [4.5703125, 37.020098201368114],\n      [3.69140625, 35.31736632923788],\n      [4.921875, 31.653381399664],\n      [8.61328125, 32.54681317351514],\n      [10.72265625, 34.016241889667015],\n      [10.546875, 36.03133177633187],\n      [10.37109375, 38.272688535980976],\n      [10.01953125, 39.232253141714885],\n      [9.4921875, 40.58058466412761],\n      [9.31640625, 41.902277040963696],\n      [11.42578125, 44.08758502824516],\n      [13.53515625, 43.96119063892024],\n      [14.765625, 42.8115217450979],\n      [15.8203125, 37.71859032558816],\n      [15.644531250000002, 36.1733569352216],\n      [14.94140625, 34.59704151614417],\n      [13.359375, 31.952162238024975],\n      [11.77734375, 22.755920681486405],\n      [15.8203125, 29.22889003019423],\n      [16.875, 31.50362930577303],\n      [17.2265625, 33.43144133557529],\n      [17.402343749999996, 35.02999636902566],\n      [19.51171875, 41.244772343082076],\n      [21.4453125, 41.11246878918088],\n      [20.7421875, 38.8225909761771],\n      [21.09375, 36.1733569352216],\n      [21.26953125, 34.016241889667015],\n      [21.26953125, 31.353636941500987],\n      [26.015625, 33.284619968887675]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-offset/test/in/linestring-same-start-end.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F00\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [122.431640625, -19.559790136497398],\n      [122.51953124999999, -26.902476886279807],\n      [134.82421875, -27.215556209029675],\n      [139.306640625, -22.998851594142913],\n      [133.9453125, -14.434680215297268],\n      [122.431640625, -19.559790136497398]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-offset/test/in/linestring-single-segment-only.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F00\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [1, 1],\n      [1, 10]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-offset/test/in/linestring-straight.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F00\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [1, -10],\n      [1, 1],\n      [1, 10]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-offset/test/in/multi-linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F00\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [10, 10],\n        [2, 2],\n        [0, 0]\n      ],\n      [\n        [25, 5],\n        [20, 10],\n        [15, 5]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-offset/test/in/northern-line.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F00\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-93.66943359374999, 75.2782047773442],\n      [-94.15283203125, 75.52189820596192],\n      [-94.68017578125, 75.60133818586581],\n      [-95.64697265625, 75.55208098028335],\n      [-95.8447265625, 75.37837872661018],\n      [-96.339111328125, 75.10975495781904],\n      [-96.251220703125, 74.89940428652537],\n      [-95.20751953125, 74.73829331009176],\n      [-94.50439453125, 74.63965846462719],\n      [-93.878173828125, 74.65129477919845],\n      [-93.526611328125, 74.73250841433554],\n      [-93.50463867187499, 75.09845822124332]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-offset/test/out/line-concave.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 5,\n        \"stroke\": \"#00F\",\n        \"distance\": 150,\n        \"units\": \"miles\"\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [2.2937, 23.4165],\n          [0.2235, 25.0153],\n          [1.6811, 27.5904],\n          [6.0031, 27.7113],\n          [7.9604, 24.4718],\n          [2.6806, 23.1494]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke-width\": 5,\n        \"stroke\": \"red\",\n        \"distance\": 150,\n        \"units\": \"miles\"\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0.9667968749999999, 21.69826549685252],\n          [-2.5927734375, 24.44714958973082],\n          [0.3955078125, 29.726222319395504],\n          [7.207031249999999, 29.916852233070173],\n          [11.337890625, 23.079731762449878],\n          [3.2080078125, 21.04349121680354]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-offset/test/out/line-horizontal.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [10, -0.4497],\n          [20, -0.4497]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [10, 0],\n          [20, 0]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-offset/test/out/linestring-long.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-24.1578, 40.8064],\n          [-6.1517, 44.9157],\n          [0.4809, 49.1618],\n          [2.2548, 44.538],\n          [-6.871, 39.3029],\n          [-5.7552, 35.9523],\n          [0.0593, 36.8825],\n          [1.8862, 39.0318],\n          [3.5255, 40.1624],\n          [5.9603, 40.7374],\n          [6.7827, 39.574],\n          [4.2094, 37.3013],\n          [3.2046, 35.3546],\n          [4.6269, 31.1193],\n          [8.8011, 32.1296],\n          [11.1932, 33.796],\n          [10.995, 36.0684],\n          [10.8145, 38.3694],\n          [10.4401, 39.3915],\n          [9.9308, 40.6937],\n          [9.7908, 41.7463],\n          [11.6055, 43.6263],\n          [13.3465, 43.522],\n          [14.3543, 42.5805],\n          [15.3654, 37.6979],\n          [15.2056, 36.2931],\n          [14.5417, 34.8048],\n          [12.9304, 32.111],\n          [10.9461, 20.5763],\n          [16.2165, 29.0144],\n          [17.3071, 31.3665],\n          [17.6718, 33.3664],\n          [17.8439, 34.932],\n          [19.8263, 40.7725],\n          [20.8491, 40.7026],\n          [20.2835, 38.8607],\n          [20.6465, 36.1255],\n          [20.8199, 33.998],\n          [20.8199, 30.6852],\n          [26.1851, 32.8681]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-24.2578125, 41.244772343082076],\n          [-6.328125, 45.336701909968134],\n          [0.703125, 49.83798245308484],\n          [2.8125, 44.33956524809713],\n          [-6.328125, 39.095962936305476],\n          [-5.44921875, 36.4566360115962],\n          [-0.17578125, 37.3002752813443],\n          [1.58203125, 39.36827914916014],\n          [3.33984375, 40.58058466412761],\n          [6.15234375, 41.244772343082076],\n          [7.3828125, 39.50404070558415],\n          [4.5703125, 37.020098201368114],\n          [3.69140625, 35.31736632923788],\n          [4.921875, 31.653381399664],\n          [8.61328125, 32.54681317351514],\n          [10.72265625, 34.016241889667015],\n          [10.546875, 36.03133177633187],\n          [10.37109375, 38.272688535980976],\n          [10.01953125, 39.232253141714885],\n          [9.4921875, 40.58058466412761],\n          [9.31640625, 41.902277040963696],\n          [11.42578125, 44.08758502824516],\n          [13.53515625, 43.96119063892024],\n          [14.765625, 42.8115217450979],\n          [15.8203125, 37.71859032558816],\n          [15.644531250000002, 36.1733569352216],\n          [14.94140625, 34.59704151614417],\n          [13.359375, 31.952162238024975],\n          [11.77734375, 22.755920681486405],\n          [15.8203125, 29.22889003019423],\n          [16.875, 31.50362930577303],\n          [17.2265625, 33.43144133557529],\n          [17.402343749999996, 35.02999636902566],\n          [19.51171875, 41.244772343082076],\n          [21.4453125, 41.11246878918088],\n          [20.7421875, 38.8225909761771],\n          [21.09375, 36.1733569352216],\n          [21.26953125, 34.016241889667015],\n          [21.26953125, 31.353636941500987],\n          [26.015625, 33.284619968887675]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-offset/test/out/linestring-same-start-end.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [121.982, -19.5652],\n          [122.0751, -27.341],\n          [134.9976, -27.6698],\n          [139.8838, -23.0733],\n          [134.1192, -13.8651],\n          [122.2488, -19.149]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [122.431640625, -19.559790136497398],\n          [122.51953124999999, -26.902476886279807],\n          [134.82421875, -27.215556209029675],\n          [139.306640625, -22.998851594142913],\n          [133.9453125, -14.434680215297268],\n          [122.431640625, -19.559790136497398]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-offset/test/out/linestring-single-segment-only.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1.4497, 1],\n          [1.4497, 10]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, 10]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-offset/test/out/linestring-straight.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1.4497, -10],\n          [1.4497, 1],\n          [1.4497, 10]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, -10],\n          [1, 1],\n          [1, 10]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-offset/test/out/multi-linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [9.682, 10.318],\n            [1.682, 2.318],\n            [-0.318, 0.318]\n          ],\n          [\n            [25.318, 5.318],\n            [20, 10.6359],\n            [14.682, 5.318]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [10, 10],\n            [2, 2],\n            [0, 0]\n          ],\n          [\n            [25, 5],\n            [20, 10],\n            [15, 5]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-offset/test/out/northern-line.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-93.467, 75.6797],\n          [-94.0147, 75.9558],\n          [-94.6579, 76.0527],\n          [-95.8261, 75.9932],\n          [-96.1036, 75.7494],\n          [-96.9105, 75.311],\n          [-96.5689, 74.4935],\n          [-95.2731, 74.2934],\n          [-94.5316, 74.1894],\n          [-93.8228, 74.2026],\n          [-93.0979, 74.37],\n          [-93.0558, 75.0715]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-93.66943359374999, 75.2782047773442],\n          [-94.15283203125, 75.52189820596192],\n          [-94.68017578125, 75.60133818586581],\n          [-95.64697265625, 75.55208098028335],\n          [-95.8447265625, 75.37837872661018],\n          [-96.339111328125, 75.10975495781904],\n          [-96.251220703125, 74.89940428652537],\n          [-95.20751953125, 74.73829331009176],\n          [-94.50439453125, 74.63965846462719],\n          [-93.878173828125, 74.65129477919845],\n          [-93.526611328125, 74.73250841433554],\n          [-93.50463867187499, 75.09845822124332]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-offset/test/types.tst.ts",
    "content": "import { lineOffset } from \"../index.js\";\nimport { lineString, multiLineString } from \"@turf/helpers\";\nimport type { Feature, LineString, MultiLineString } from \"geojson\";\n\nimport { expect } from \"tstyche\";\n\nconst line = lineString([\n  [0, 0],\n  [10, 10],\n]);\nconst multiLine = multiLineString([\n  [\n    [0, 0],\n    [10, 10],\n  ],\n  [\n    [5, 5],\n    [15, 15],\n  ],\n]);\n\n/**\n * If the syntax below starts generating errors it's possible you've narrowed\n * the input arguments which is likely to be a breaking change.\n */\nexpect(lineOffset).type.toBeCallableWith(line, 50);\nexpect(lineOffset).type.toBeCallableWith(line.geometry, 50);\nexpect(lineOffset).type.toBeCallableWith(multiLine, 50);\nexpect(lineOffset).type.toBeCallableWith(multiLine.geometry, 50);\nexpect(lineOffset).type.toBeCallableWith(line, 50, { units: \"miles\" });\n\n/**\n * If the sytax in this section starts generating errors, it's possible you've\n * broadened the return type which is likely to be a breaking change.\n */\nexpect(lineOffset(line, 50)).type.toBe<Feature<LineString>>();\nexpect(lineOffset(multiLine, 50)).type.toBe<Feature<MultiLineString>>();\n"
  },
  {
    "path": "packages/turf-line-offset/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { truncate } from \"@turf/truncate\";\nimport { featureCollection, lineString } from \"@turf/helpers\";\nimport { lineOffset } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nlet fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n// fixtures = fixtures.filter(fixture => fixture.name === 'polygon');\n\ntest(\"turf-line-offset\", (t) => {\n  fixtures.forEach((fixture) => {\n    const name = fixture.name;\n    const geojson = fixture.geojson as any;\n    const properties = geojson.properties || {};\n    const distance = properties.distance || 50;\n    const units = properties.units;\n\n    const output = truncate(lineOffset(geojson, distance, { units: units }), {\n      precision: 4,\n    });\n    output.properties!.stroke = \"#00F\";\n    const results = featureCollection([output, geojson]);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + name + \".geojson\", results);\n    t.deepEqual(\n      results,\n      loadJsonFileSync(directories.out + name + \".geojson\"),\n      name\n    );\n  });\n  t.end();\n});\n\ntest(\"turf-line-offset - Throws Errors\", (t) => {\n  const line = lineString([\n    [10, 10],\n    [0, 0],\n  ]);\n  t.throws(() => (lineOffset as any)(), /geojson is required/);\n  t.throws(() => (lineOffset as any)(line), /distance is required/);\n  t.end();\n});\n\ntest(\"turf-line-offset - Support Geometry Objects\", (t) => {\n  const line = lineString([\n    [10, 10],\n    [0, 0],\n  ]);\n  t.ok(lineOffset(line.geometry, 10), \"Geometry Object\");\n  t.end();\n});\n\ntest(\"turf-line-offset - Prevent Input Mutation\", (t) => {\n  const line = lineString([\n    [10, 10],\n    [0, 0],\n  ]);\n  const before = JSON.parse(JSON.stringify(line));\n  lineOffset(line.geometry, 10);\n\n  t.deepEqual(line, before, \"input does not mutate\");\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-line-offset/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-line-overlap/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-line-overlap/README.md",
    "content": "# @turf/line-overlap\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## lineOverlap\n\nTakes any LineString or Polygon and returns the overlapping lines between both features.\n\n### Parameters\n\n*   `line1` **([Geometry][1] | [Feature][2]<([LineString][3] | [MultiLineString][4] | [Polygon][5] | [MultiPolygon][6])>)** any LineString or Polygon\n*   `line2` **([Geometry][1] | [Feature][2]<([LineString][3] | [MultiLineString][4] | [Polygon][5] | [MultiPolygon][6])>)** any LineString or Polygon\n*   `options` **[Object][7]** Optional parameters (optional, default `{}`)\n\n    *   `options.tolerance` **[number][8]** Tolerance distance to match overlapping line segments (in kilometers) (optional, default `0`)\n\n### Examples\n\n```javascript\nvar line1 = turf.lineString([[115, -35], [125, -30], [135, -30], [145, -35]]);\nvar line2 = turf.lineString([[115, -25], [125, -30], [135, -30], [145, -25]]);\n\nvar overlapping = turf.lineOverlap(line1, line2);\n\n//addToMap\nvar addToMap = [line1, line2, overlapping]\n```\n\nReturns **[FeatureCollection][9]<[LineString][3]>** lines(s) that are overlapping between both features\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.5\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[9]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/line-overlap\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-line-overlap/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { lineOverlap } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * polygons x 3,567 ops/sec ±1.61% (85 runs sampled)\n * simple1 x 9,013 ops/sec ±1.15% (86 runs sampled)\n * simple2 x 10,278 ops/sec ±1.52% (86 runs sampled)\n * simple3 x 13,124 ops/sec ±1.37% (85 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-line-overlap\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => lineOverlap(geojson.features[0], geojson.features[1]));\n}\n\nsuite\n  .on(\"cycle\", (e) => {\n    console.log(String(e.target));\n  })\n  .run();\n"
  },
  {
    "path": "packages/turf-line-overlap/index.ts",
    "content": "import { geojsonRbush as rbush } from \"@turf/geojson-rbush\";\nimport { lineSegment } from \"@turf/line-segment\";\nimport { nearestPointOnLine } from \"@turf/nearest-point-on-line\";\nimport { booleanPointOnLine } from \"@turf/boolean-point-on-line\";\nimport { getCoords } from \"@turf/invariant\";\nimport { featureEach, segmentEach } from \"@turf/meta\";\nimport {\n  FeatureCollection,\n  Feature,\n  LineString,\n  MultiLineString,\n  Polygon,\n  MultiPolygon,\n  GeoJsonProperties,\n} from \"geojson\";\nimport { featureCollection, isObject } from \"@turf/helpers\";\nimport equal from \"fast-deep-equal\";\n\n/**\n * Takes any LineString or Polygon and returns the overlapping lines between both features.\n *\n * @function\n * @param {Geometry|Feature<LineString|MultiLineString|Polygon|MultiPolygon>} line1 any LineString or Polygon\n * @param {Geometry|Feature<LineString|MultiLineString|Polygon|MultiPolygon>} line2 any LineString or Polygon\n * @param {Object} [options={}] Optional parameters\n * @param {number} [options.tolerance=0] Tolerance distance to match overlapping line segments (in kilometers)\n * @returns {FeatureCollection<LineString>} lines(s) that are overlapping between both features\n * @example\n * var line1 = turf.lineString([[115, -35], [125, -30], [135, -30], [145, -35]]);\n * var line2 = turf.lineString([[115, -25], [125, -30], [135, -30], [145, -25]]);\n *\n * var overlapping = turf.lineOverlap(line1, line2);\n *\n * //addToMap\n * var addToMap = [line1, line2, overlapping]\n */\nfunction lineOverlap<\n  G1 extends LineString | MultiLineString | Polygon | MultiPolygon,\n  G2 extends LineString | MultiLineString | Polygon | MultiPolygon,\n>(\n  line1: Feature<G1> | G1,\n  line2: Feature<G2> | G2,\n  options: { tolerance?: number } = {}\n): FeatureCollection<LineString> {\n  // Optional parameters\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  var tolerance = options.tolerance || 0;\n\n  // Containers\n  var features: Feature<LineString, GeoJsonProperties>[] = [];\n\n  // Create Spatial Index\n  var tree = rbush<LineString>();\n\n  // To-Do -- HACK way to support typescript\n  const line: any = lineSegment(line1);\n  tree.load(line);\n  var overlapSegment: Feature<LineString> | undefined;\n  let additionalSegments: Feature<LineString>[] = [];\n\n  // Line Intersection\n\n  // Iterate over line segments\n  segmentEach(line2, function (segment) {\n    var doesOverlaps = false;\n\n    if (!segment) {\n      return;\n    }\n\n    // Iterate over each segments which falls within the same bounds\n    featureEach(tree.search(segment), function (match) {\n      if (doesOverlaps === false) {\n        var coordsSegment = getCoords(segment).sort();\n        var coordsMatch: any = getCoords(match).sort();\n\n        // Segment overlaps feature\n        if (equal(coordsSegment, coordsMatch)) {\n          doesOverlaps = true;\n          // Overlaps already exists - only append last coordinate of segment\n          if (overlapSegment) {\n            overlapSegment =\n              concatSegment(overlapSegment, segment) || overlapSegment;\n          } else overlapSegment = segment;\n          // Match segments which don't share nodes (Issue #901)\n        } else if (\n          tolerance === 0\n            ? booleanPointOnLine(coordsSegment[0], match) &&\n              booleanPointOnLine(coordsSegment[1], match)\n            : nearestPointOnLine(match, coordsSegment[0]).properties\n                .pointDistance! <= tolerance &&\n              nearestPointOnLine(match, coordsSegment[1]).properties\n                .pointDistance! <= tolerance\n        ) {\n          doesOverlaps = true;\n          if (overlapSegment) {\n            overlapSegment =\n              concatSegment(overlapSegment, segment) || overlapSegment;\n          } else overlapSegment = segment;\n        } else if (\n          tolerance === 0\n            ? booleanPointOnLine(coordsMatch[0], segment) &&\n              booleanPointOnLine(coordsMatch[1], segment)\n            : nearestPointOnLine(segment, coordsMatch[0]).properties\n                .pointDistance! <= tolerance &&\n              nearestPointOnLine(segment, coordsMatch[1]).properties\n                .pointDistance! <= tolerance\n        ) {\n          // Do not define (doesOverlap = true) since more matches can occur within the same segment\n          // doesOverlaps = true;\n          if (overlapSegment) {\n            const combinedSegment = concatSegment(overlapSegment, match);\n            if (combinedSegment) {\n              overlapSegment = combinedSegment;\n            } else {\n              additionalSegments.push(match);\n            }\n          } else overlapSegment = match;\n        }\n      }\n    });\n\n    // Segment doesn't overlap - add overlaps to results & reset\n    if (doesOverlaps === false && overlapSegment) {\n      features.push(overlapSegment);\n      if (additionalSegments.length) {\n        features = features.concat(additionalSegments);\n        additionalSegments = [];\n      }\n      overlapSegment = undefined;\n    }\n  });\n  // Add last segment if exists\n  if (overlapSegment) features.push(overlapSegment);\n\n  return featureCollection(features);\n}\n\n/**\n * Concat Segment\n *\n * @private\n * @param {Feature<LineString>} line LineString\n * @param {Feature<LineString>} segment 2-vertex LineString\n * @returns {Feature<LineString>} concat linestring\n */\nfunction concatSegment(\n  line: Feature<LineString>,\n  segment: Feature<LineString>\n) {\n  var coords = getCoords(segment);\n  var lineCoords = getCoords(line);\n  var start = lineCoords[0];\n  var end = lineCoords[lineCoords.length - 1];\n  var geom = line.geometry.coordinates;\n\n  if (equal(coords[0], start)) geom.unshift(coords[1]);\n  else if (equal(coords[0], end)) geom.push(coords[1]);\n  else if (equal(coords[1], start)) geom.unshift(coords[0]);\n  else if (equal(coords[1], end)) geom.push(coords[0]);\n  else return; // If the overlap leaves the segment unchanged, return undefined so that this can be identified.\n\n  // Otherwise return the mutated line.\n  return line;\n}\n\nexport { lineOverlap };\nexport default lineOverlap;\n"
  },
  {
    "path": "packages/turf-line-overlap/package.json",
    "content": "{\n  \"name\": \"@turf/line-overlap\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes any LineString or Polygon and returns the overlapping lines between both features.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"gis\",\n    \"line\",\n    \"overlap\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/boolean-point-on-line\": \"workspace:*\",\n    \"@turf/geojson-rbush\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/line-segment\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@turf/nearest-point-on-line\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"fast-deep-equal\": \"^3.1.3\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-overlap/test/in/boolean-line-overlap.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-22.564544677734375, 46.25917013377904],\n          [-22.559051513671875, 46.32369743336783],\n          [-22.446441650390625, 46.352141192009334],\n          [-22.361297607421875, 46.32891323009468],\n          [-22.361297607421875, 46.30472670751783]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-22.570724487304688, 46.36398839132818],\n          [-22.444381713867188, 46.357354276167015],\n          [-22.391510009765625, 46.3291502999477],\n          [-22.29263305664062, 46.382464893261165]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-overlap/test/in/issue-#901-simplified.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [2, 2],\n          [4, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [6, 6]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-overlap/test/in/issue-#901.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"tolerance\": 0.05\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1,\n        \"fill-opacity\": 0.1,\n        \"description\": \"output of an intersect call with a longer pipe and the other feature in this file\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-113.33847575084239, 53.52244416392682],\n            [-113.33847394, 53.52299533509864],\n            [-113.338470971, 53.52389165109878],\n            [-113.338468309, 53.52469456909876],\n            [-113.338467951, 53.5248023990988],\n            [-113.338462214, 53.52653346709882],\n            [-113.3384620759999, 53.52657586409872],\n            [-113.3384619429999, 53.52661770709869],\n            [-113.3384532659999, 53.52935323209886],\n            [-113.338452983, 53.52944258409877],\n            [-113.338452982, 53.52944333909876],\n            [-113.3384522719999, 53.52962258909884],\n            [-113.338449392, 53.53035074809878],\n            [-113.33704111881613, 53.53215959791441],\n            [-113.33698987543352, 53.53214475018778],\n            [-113.33690471442213, 53.53212132654082],\n            [-113.3382987129999, 53.53033083009888],\n            [-113.3383022259999, 53.52944312809881],\n            [-113.3383113299999, 53.52657569409888],\n            [-113.3383232079999, 53.52299515809875],\n            [-113.33832502043951, 53.52244398828247],\n            [-113.3384152645109, 53.52244409344282],\n            [-113.33847575084239, 53.52244416392682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"stroke-width\": 3,\n        \"stroke-opacity\": 1,\n        \"fill-opacity\": 0.1,\n        \"description\": \"shape which was intersected with a longer pipe to produce the pipe shown\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-113.34145274487872, 53.53230853007057],\n            [-113.33797676517321, 53.53243070065233],\n            [-113.33698987543352, 53.53214475018778],\n            [-113.33287043896553, 53.53101169382826],\n            [-113.33387712516304, 53.522438805202505],\n            [-113.3384152645109, 53.52244409344282],\n            [-113.3429534044069, 53.522449381683145],\n            [-113.34145274487872, 53.53230853007057],\n            [-113.34145274487872, 53.53230853007057],\n            [-113.34145274487872, 53.53230853007057]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-overlap/test/in/polygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120.14179343574, -17.48153498141],\n            [120.1456007834, -30.96997373479],\n            [130.34864729879, -30.96772909058],\n            [131.64065935144, -29.20137372199],\n            [129.5926694017, -28.04905296815],\n            [130.34739288016, -26.68605235913],\n            [125.76890918238, -26.68710193815],\n            [125.76762773192, -22.1408865296],\n            [130.52038135971, -22.13975701932],\n            [131.37809653737, -20.30857774535],\n            [129.67954157692, -18.92360398694],\n            [130.51910988115, -17.47899540098],\n            [120.14179343574, -17.48153498141]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"stroke-width\": 3,\n        \"stroke-opacity\": 1,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [139.69468150776, -17.47674988707],\n            [130.51910988115, -17.47899540098],\n            [129.67954157692, -18.92360398694],\n            [131.37809653737, -20.30857774535],\n            [130.52038135971, -22.13975701932],\n            [135.29428724786, -22.138622473],\n            [135.29556869831, -26.68491802042],\n            [130.34739288016, -26.68605235913],\n            [129.5926694017, -28.04905296815],\n            [131.64065935144, -29.20137372199],\n            [130.34864729879, -30.96772909058],\n            [139.69848885541, -30.96567210295],\n            [139.69468150776, -17.47674988707]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-overlap/test/in/simple1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [115, -35],\n          [125, -30],\n          [135, -30],\n          [145, -35]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [115, -25],\n          [125, -30],\n          [135, -30],\n          [145, -35],\n          [145, -25]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-overlap/test/in/simple2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [115, -35],\n          [125, -30],\n          [135, -30],\n          [145, -35]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [115, -25],\n          [125, -30],\n          [135, -30],\n          [145, -35]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-overlap/test/in/simple3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff0000\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [125, -30],\n          [135, -30],\n          [145, -35]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [125, -30],\n          [135, -30],\n          [145, -35],\n          [145, -25]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-overlap/test/out/boolean-line-overlap.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-22.564544677734375, 46.25917013377904],\n          [-22.559051513671875, 46.32369743336783],\n          [-22.446441650390625, 46.352141192009334],\n          [-22.361297607421875, 46.32891323009468],\n          [-22.361297607421875, 46.30472670751783]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-22.570724487304688, 46.36398839132818],\n          [-22.444381713867188, 46.357354276167015],\n          [-22.391510009765625, 46.3291502999477],\n          [-22.29263305664062, 46.382464893261165]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-overlap/test/out/issue-#901-simplified.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"stroke-width\": 25\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [2, 2],\n          [4, 4]\n        ]\n      },\n      \"bbox\": [2, 2, 4, 4],\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [2, 2],\n          [4, 4]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [6, 6]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-overlap/test/out/issue-#901.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"stroke-width\": 25\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-113.33698987543352, 53.53214475018778],\n          [-113.33690471442213, 53.53212132654082],\n          [-113.33698987543352, 53.53214475018778],\n          [-113.33704111881613, 53.53215959791441]\n        ]\n      },\n      \"bbox\": [\n        -113.33704111881613, 53.53214475018778, -113.33698987543352, 53.53215959791441\n      ],\n      \"id\": 13\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"stroke-width\": 25\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-113.33698987543352, 53.53214475018778],\n          [-113.33690471442213, 53.53212132654082],\n          [-113.33698987543352, 53.53214475018778],\n          [-113.33704111881613, 53.53215959791441]\n        ]\n      },\n      \"bbox\": [\n        -113.33704111881613, 53.53214475018778, -113.33698987543352, 53.53215959791441\n      ],\n      \"id\": 13\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"stroke-width\": 25\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-113.33832502043951, 53.52244398828247],\n          [-113.3384152645109, 53.52244409344282],\n          [-113.33847575084239, 53.52244416392682],\n          [-113.3384152645109, 53.52244409344282]\n        ]\n      },\n      \"bbox\": [\n        -113.3384152645109, 53.52244398828247, -113.33832502043951, 53.52244409344282\n      ],\n      \"id\": 20\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"stroke-width\": 25\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-113.33832502043951, 53.52244398828247],\n          [-113.3384152645109, 53.52244409344282],\n          [-113.33847575084239, 53.52244416392682],\n          [-113.3384152645109, 53.52244409344282]\n        ]\n      },\n      \"bbox\": [\n        -113.3384152645109, 53.52244398828247, -113.33832502043951, 53.52244409344282\n      ],\n      \"id\": 20\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1,\n        \"fill-opacity\": 0.1,\n        \"description\": \"output of an intersect call with a longer pipe and the other feature in this file\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-113.33847575084239, 53.52244416392682],\n            [-113.33847394, 53.52299533509864],\n            [-113.338470971, 53.52389165109878],\n            [-113.338468309, 53.52469456909876],\n            [-113.338467951, 53.5248023990988],\n            [-113.338462214, 53.52653346709882],\n            [-113.3384620759999, 53.52657586409872],\n            [-113.3384619429999, 53.52661770709869],\n            [-113.3384532659999, 53.52935323209886],\n            [-113.338452983, 53.52944258409877],\n            [-113.338452982, 53.52944333909876],\n            [-113.3384522719999, 53.52962258909884],\n            [-113.338449392, 53.53035074809878],\n            [-113.33704111881613, 53.53215959791441],\n            [-113.33698987543352, 53.53214475018778],\n            [-113.33690471442213, 53.53212132654082],\n            [-113.3382987129999, 53.53033083009888],\n            [-113.3383022259999, 53.52944312809881],\n            [-113.3383113299999, 53.52657569409888],\n            [-113.3383232079999, 53.52299515809875],\n            [-113.33832502043951, 53.52244398828247],\n            [-113.3384152645109, 53.52244409344282],\n            [-113.33847575084239, 53.52244416392682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"stroke-width\": 3,\n        \"stroke-opacity\": 1,\n        \"fill-opacity\": 0.1,\n        \"description\": \"shape which was intersected with a longer pipe to produce the pipe shown\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-113.34145274487872, 53.53230853007057],\n            [-113.33797676517321, 53.53243070065233],\n            [-113.33698987543352, 53.53214475018778],\n            [-113.33287043896553, 53.53101169382826],\n            [-113.33387712516304, 53.522438805202505],\n            [-113.3384152645109, 53.52244409344282],\n            [-113.3429534044069, 53.522449381683145],\n            [-113.34145274487872, 53.53230853007057],\n            [-113.34145274487872, 53.53230853007057],\n            [-113.34145274487872, 53.53230853007057]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-overlap/test/out/polygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"stroke-width\": 25\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [130.52038135971, -22.13975701932],\n          [131.37809653737, -20.30857774535],\n          [129.67954157692, -18.92360398694],\n          [130.51910988115, -17.47899540098]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"stroke-width\": 25\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [130.34864729879, -30.96772909058],\n          [131.64065935144, -29.20137372199],\n          [129.5926694017, -28.04905296815],\n          [130.34739288016, -26.68605235913]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120.14179343574, -17.48153498141],\n            [120.1456007834, -30.96997373479],\n            [130.34864729879, -30.96772909058],\n            [131.64065935144, -29.20137372199],\n            [129.5926694017, -28.04905296815],\n            [130.34739288016, -26.68605235913],\n            [125.76890918238, -26.68710193815],\n            [125.76762773192, -22.1408865296],\n            [130.52038135971, -22.13975701932],\n            [131.37809653737, -20.30857774535],\n            [129.67954157692, -18.92360398694],\n            [130.51910988115, -17.47899540098],\n            [120.14179343574, -17.48153498141]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"stroke-width\": 3,\n        \"stroke-opacity\": 1,\n        \"fill-opacity\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [139.69468150776, -17.47674988707],\n            [130.51910988115, -17.47899540098],\n            [129.67954157692, -18.92360398694],\n            [131.37809653737, -20.30857774535],\n            [130.52038135971, -22.13975701932],\n            [135.29428724786, -22.138622473],\n            [135.29556869831, -26.68491802042],\n            [130.34739288016, -26.68605235913],\n            [129.5926694017, -28.04905296815],\n            [131.64065935144, -29.20137372199],\n            [130.34864729879, -30.96772909058],\n            [139.69848885541, -30.96567210295],\n            [139.69468150776, -17.47674988707]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-overlap/test/out/simple1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"stroke-width\": 25\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [125, -30],\n          [135, -30],\n          [145, -35]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [115, -35],\n          [125, -30],\n          [135, -30],\n          [145, -35]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [115, -25],\n          [125, -30],\n          [135, -30],\n          [145, -35],\n          [145, -25]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-overlap/test/out/simple2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"stroke-width\": 25\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [125, -30],\n          [135, -30],\n          [145, -35]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [115, -35],\n          [125, -30],\n          [135, -30],\n          [145, -35]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [115, -25],\n          [125, -30],\n          [135, -30],\n          [145, -35]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-overlap/test/out/simple3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"stroke-width\": 25\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [125, -30],\n          [135, -30],\n          [145, -35]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff0000\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [125, -30],\n          [135, -30],\n          [145, -35]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [125, -30],\n          [135, -30],\n          [145, -35],\n          [145, -25]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-overlap/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { featureEach } from \"@turf/meta\";\nimport { featureCollection, lineString } from \"@turf/helpers\";\nimport { lineOverlap } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nlet fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n// fixtures = fixtures.filter(({name}) => name.includes('#901'));\n\ntest(\"turf-line-overlap\", (t) => {\n  for (const { filename, name, geojson } of fixtures) {\n    const [source, target] = geojson.features;\n    const shared = colorize(\n      lineOverlap(source, target, geojson.properties),\n      \"#0F0\"\n    );\n    const results = featureCollection(shared.features.concat([source, target]));\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEquals(results, loadJsonFileSync(directories.out + filename), name);\n  }\n  t.end();\n});\n\ntest(\"turf-line-overlap - Geometry Object\", (t) => {\n  const line1 = lineString([\n    [115, -35],\n    [125, -30],\n    [135, -30],\n    [145, -35],\n  ]);\n  const line2 = lineString([\n    [135, -30],\n    [145, -35],\n  ]);\n\n  t.true(\n    lineOverlap(line1.geometry, line2.geometry).features.length > 0,\n    \"support geometry object\"\n  );\n  t.end();\n});\n\ntest(\"turf-line-overlap - multiple segments on same line\", (t) => {\n  const line1 = lineString([\n    [0, 1],\n    [1, 1],\n    [1, 0],\n    [2, 0],\n    [2, 1],\n    [3, 1],\n    [3, 0],\n    [4, 0],\n    [4, 1],\n    [4, 0],\n  ]);\n  const line2 = lineString([\n    [0, 0],\n    [6, 0],\n  ]);\n\n  t.true(\n    lineOverlap(line1.geometry, line2.geometry).features.length === 2,\n    \"multiple segments on same line\"\n  );\n  t.true(\n    lineOverlap(line2.geometry, line1.geometry).features.length === 2,\n    \"multiple segments on same line - swapped order\"\n  );\n  t.end();\n});\n\nfunction colorize(features, color = \"#F00\", width = 25) {\n  const results = [];\n  featureEach(features, (feature) => {\n    feature.properties = {\n      stroke: color,\n      fill: color,\n      \"stroke-width\": width,\n    };\n    results.push(feature);\n  });\n  if (features.type === \"Feature\") return results[0];\n  return featureCollection(results);\n}\n"
  },
  {
    "path": "packages/turf-line-overlap/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-line-overlap/types.ts",
    "content": "import {\n  lineString,\n  multiLineString,\n  polygon,\n  multiPolygon,\n} from \"@turf/helpers\";\nimport { lineOverlap } from \"./index.js\";\n\nconst line = lineString([\n  [0, 0],\n  [10, 10],\n]);\nconst multiLine = multiLineString([\n  [\n    [0, 0],\n    [10, 10],\n  ],\n  [\n    [30, 30],\n    [50, 50],\n  ],\n]);\nconst poly = polygon([\n  [\n    [0, 0],\n    [10, 10],\n    [15, 15],\n    [0, 0],\n  ],\n]);\nconst multiPoly = multiPolygon([\n  [\n    [\n      [0, 0],\n      [10, 10],\n      [15, 15],\n      [0, 0],\n    ],\n  ],\n  [\n    [\n      [5, 5],\n      [30, 30],\n      [45, 45],\n      [5, 5],\n    ],\n  ],\n]);\n\nlineOverlap(line, poly);\nlineOverlap(line, line);\nlineOverlap(multiPoly, line);\nlineOverlap(multiPoly, multiLine);\nlineOverlap(multiPoly, multiLine, { tolerance: 5 });\n"
  },
  {
    "path": "packages/turf-line-segment/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-line-segment/README.md",
    "content": "# @turf/line-segment\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## lineSegment\n\nCreates a [FeatureCollection][1] of 2-vertex [LineString][2] segments from a\n[(Multi)LineString][2] or [(Multi)Polygon][3].\n\n### Parameters\n\n*   `geojson` **[GeoJSON][4]** GeoJSON Polygon or LineString\n\n### Examples\n\n```javascript\nvar polygon = turf.polygon([[[-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5]]]);\nvar segments = turf.lineSegment(polygon);\n\n//addToMap\nvar addToMap = [polygon, segments]\n```\n\nReturns **[FeatureCollection][1]<[LineString][2]>** 2-vertex line segments\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/line-segment\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-line-segment/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { lineSegment } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n// Fixtures\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * 2-vertex-segment x 1,172,641 ops/sec ±1.89% (80 runs sampled)\n * feature-collection x 270,916 ops/sec ±1.49% (89 runs sampled)\n * linestring x 938,353 ops/sec ±1.21% (88 runs sampled)\n * multi-linestring x 451,359 ops/sec ±1.14% (89 runs sampled)\n * multi-polygon x 447,952 ops/sec ±1.37% (92 runs sampled)\n * polygon-with-holes x 390,985 ops/sec ±1.19% (86 runs sampled)\n * polygon x 873,856 ops/sec ±1.28% (88 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-line-segment\");\nfixtures.forEach(({ name, geojson }) =>\n  suite.add(name, () => lineSegment(geojson))\n);\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-line-segment/index.ts",
    "content": "import {\n  BBox,\n  Feature,\n  FeatureCollection,\n  LineString,\n  MultiLineString,\n  MultiPolygon,\n  Polygon,\n} from \"geojson\";\nimport { featureCollection, lineString } from \"@turf/helpers\";\nimport { getCoords } from \"@turf/invariant\";\nimport { flattenEach } from \"@turf/meta\";\n\n/**\n * Creates a {@link FeatureCollection} of 2-vertex {@link LineString} segments from a\n * {@link LineString|(Multi)LineString} or {@link Polygon|(Multi)Polygon}.\n *\n * @function\n * @param {GeoJSON} geojson GeoJSON Polygon or LineString\n * @returns {FeatureCollection<LineString>} 2-vertex line segments\n * @example\n * var polygon = turf.polygon([[[-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5]]]);\n * var segments = turf.lineSegment(polygon);\n *\n * //addToMap\n * var addToMap = [polygon, segments]\n */\nfunction lineSegment<\n  G extends LineString | MultiLineString | Polygon | MultiPolygon,\n>(\n  geojson: Feature<G> | FeatureCollection<G> | G\n): FeatureCollection<LineString> {\n  if (!geojson) {\n    throw new Error(\"geojson is required\");\n  }\n\n  const results: Array<Feature<LineString>> = [];\n  flattenEach(geojson, (feature: Feature<any>) => {\n    lineSegmentFeature(feature, results);\n  });\n  return featureCollection(results);\n}\n\n/**\n * Line Segment\n *\n * @private\n * @param {Feature<LineString|Polygon>} geojson Line or polygon feature\n * @param {Array} results push to results\n * @returns {void}\n */\nfunction lineSegmentFeature(\n  geojson: Feature<LineString | Polygon>,\n  results: Array<Feature<LineString>>\n) {\n  let coords: number[][][] = [];\n  const geometry = geojson.geometry;\n  if (geometry !== null) {\n    switch (geometry.type) {\n      case \"Polygon\":\n        coords = getCoords(geometry);\n        break;\n      case \"LineString\":\n        coords = [getCoords(geometry)];\n    }\n    coords.forEach((coord) => {\n      const segments = createSegments(coord, geojson.properties);\n      segments.forEach((segment) => {\n        segment.id = results.length;\n        results.push(segment);\n      });\n    });\n  }\n}\n\n/**\n * Create Segments from LineString coordinates\n *\n * @private\n * @param {Array<Array<number>>} coords LineString coordinates\n * @param {*} properties GeoJSON properties\n * @returns {Array<Feature<LineString>>} line segments\n */\nfunction createSegments(coords: number[][], properties: any) {\n  const segments: Array<Feature<LineString>> = [];\n  coords.reduce((previousCoords, currentCoords) => {\n    const segment = lineString([previousCoords, currentCoords], properties);\n    segment.bbox = bbox(previousCoords, currentCoords);\n    segments.push(segment);\n    return currentCoords;\n  });\n  return segments;\n}\n\n/**\n * Create BBox between two coordinates (faster than @turf/bbox)\n *\n * @private\n * @param {Array<number>} coords1 Point coordinate\n * @param {Array<number>} coords2 Point coordinate\n * @returns {BBox} [west, south, east, north]\n */\nfunction bbox(coords1: number[], coords2: number[]): BBox {\n  const x1 = coords1[0];\n  const y1 = coords1[1];\n  const x2 = coords2[0];\n  const y2 = coords2[1];\n  const west = x1 < x2 ? x1 : x2;\n  const south = y1 < y2 ? y1 : y2;\n  const east = x1 > x2 ? x1 : x2;\n  const north = y1 > y2 ? y1 : y2;\n  return [west, south, east, north];\n}\n\nexport { lineSegment };\nexport default lineSegment;\n"
  },
  {
    "path": "packages/turf-line-segment/package.json",
    "content": "{\n  \"name\": \"@turf/line-segment\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Creates line segments from a GeoJSON feature.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"line\",\n    \"segment\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-segment/test/in/2-vertex-segment.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [130.60546875, -20.3034175184893],\n      [134.12109375, -24.926294766395582]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-segment/test/in/feature-collection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-77.031669, 38.878605],\n            [-77.029609, 38.881946],\n            [-77.020339, 38.884084],\n            [-77.025661, 38.885821],\n            [-77.021884, 38.889563],\n            [-77.019824, 38.892368]\n          ],\n          [\n            [-77.041669, 38.885821],\n            [-77.039609, 38.881946],\n            [-77.030339, 38.884084],\n            [-77.035661, 38.878605]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-77.0361328125, 38.8840513003232],\n            [-77.02806472778319, 38.88602223128263],\n            [-77.02536106109619, 38.888761400455074],\n            [-77.02557563781738, 38.89266954433839],\n            [-77.03368663787842, 38.88882820813984],\n            [-77.03630447387695, 38.88769246895389],\n            [-77.0361328125, 38.8840513003232]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02810764312744, 38.883049111069546]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-segment/test/in/geometry-collection.geojson",
    "content": "{\n  \"type\": \"GeometryCollection\",\n  \"geometries\": [\n    {\n      \"type\": \"MultiLineString\",\n      \"coordinates\": [\n        [\n          [-77.031669, 38.878605],\n          [-77.029609, 38.881946],\n          [-77.020339, 38.884084],\n          [-77.025661, 38.885821],\n          [-77.021884, 38.889563],\n          [-77.019824, 38.892368]\n        ],\n        [\n          [-77.041669, 38.885821],\n          [-77.039609, 38.881946],\n          [-77.030339, 38.884084],\n          [-77.035661, 38.878605]\n        ]\n      ]\n    },\n    {\n      \"type\": \"Polygon\",\n      \"coordinates\": [\n        [\n          [-77.0361328125, 38.8840513003232],\n          [-77.02806472778319, 38.88602223128263],\n          [-77.02536106109619, 38.888761400455074],\n          [-77.02557563781738, 38.89266954433839],\n          [-77.03368663787842, 38.88882820813984],\n          [-77.03630447387695, 38.88769246895389],\n          [-77.0361328125, 38.8840513003232]\n        ]\n      ]\n    },\n    {\n      \"type\": \"Point\",\n      \"coordinates\": [-77.02810764312744, 38.883049111069546]\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-segment/test/in/linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-51.1083984375, -2.943040910055132],\n      [-47.6806640625, -0.8788717828324148],\n      [-43.0224609375, -1.9771465537125645],\n      [-41.0888671875, -4.784468966579362]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-segment/test/in/multi-linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [-77.031669, 38.878605],\n        [-77.029609, 38.881946],\n        [-77.020339, 38.884084],\n        [-77.025661, 38.885821],\n        [-77.021884, 38.889563],\n        [-77.019824, 38.892368]\n      ],\n      [\n        [-77.041669, 38.885821],\n        [-77.039609, 38.881946],\n        [-77.030339, 38.884084],\n        [-77.035661, 38.878605]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-segment/test/in/multi-polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": { \"foo\": \"bar\" },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [-49.43847656249999, -8.798225459016345],\n          [-39.7705078125, -8.798225459016345],\n          [-39.7705078125, 0.4833927027896987],\n          [-49.43847656249999, 0.4833927027896987],\n          [-49.43847656249999, -8.798225459016345]\n        ]\n      ],\n      [\n        [\n          [-45, -13.795406203132826],\n          [-35.2001953125, -13.795406203132826],\n          [-35.2001953125, -4.083452772038619],\n          [-45, -4.083452772038619],\n          [-45, -13.795406203132826]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-segment/test/in/polygon-with-holes.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [111.4453125, -37.37015718405751],\n            [153.6328125, -37.37015718405751],\n            [153.6328125, -13.581920900545844],\n            [111.4453125, -13.581920900545844],\n            [111.4453125, -37.37015718405751]\n          ],\n          [\n            [121.81640624999999, -31.05293398570514],\n            [121.81640624999999, -21.453068633086772],\n            [145.1953125, -21.453068633086772],\n            [145.1953125, -31.05293398570514],\n            [121.81640624999999, -31.05293398570514]\n          ],\n          [\n            [114.873046875, -20.13847031245114],\n            [120.05859375, -20.13847031245114],\n            [120.05859375, -15.623036831528252],\n            [114.873046875, -15.623036831528252],\n            [114.873046875, -20.13847031245114]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-segment/test/in/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": { \"foo\": \"bar\" },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-50, 5],\n        [-40, -10],\n        [-50, -10],\n        [-40, 5],\n        [-50, 5]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-segment/test/out/2-vertex-segment.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [130.60546875, -20.3034175184893],\n          [134.12109375, -24.926294766395582]\n        ]\n      },\n      \"bbox\": [130.60546875, -24.926294766395582, 134.12109375, -20.3034175184893],\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#000\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [130.60546875, -20.3034175184893],\n          [134.12109375, -24.926294766395582]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-segment/test/out/feature-collection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.031669, 38.878605],\n          [-77.029609, 38.881946]\n        ]\n      },\n      \"bbox\": [-77.031669, 38.878605, -77.029609, 38.881946],\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.029609, 38.881946],\n          [-77.020339, 38.884084]\n        ]\n      },\n      \"bbox\": [-77.029609, 38.881946, -77.020339, 38.884084],\n      \"id\": 1\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.020339, 38.884084],\n          [-77.025661, 38.885821]\n        ]\n      },\n      \"bbox\": [-77.025661, 38.884084, -77.020339, 38.885821],\n      \"id\": 2\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.025661, 38.885821],\n          [-77.021884, 38.889563]\n        ]\n      },\n      \"bbox\": [-77.025661, 38.885821, -77.021884, 38.889563],\n      \"id\": 3\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.021884, 38.889563],\n          [-77.019824, 38.892368]\n        ]\n      },\n      \"bbox\": [-77.021884, 38.889563, -77.019824, 38.892368],\n      \"id\": 4\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.041669, 38.885821],\n          [-77.039609, 38.881946]\n        ]\n      },\n      \"bbox\": [-77.041669, 38.881946, -77.039609, 38.885821],\n      \"id\": 5\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.039609, 38.881946],\n          [-77.030339, 38.884084]\n        ]\n      },\n      \"bbox\": [-77.039609, 38.881946, -77.030339, 38.884084],\n      \"id\": 6\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.030339, 38.884084],\n          [-77.035661, 38.878605]\n        ]\n      },\n      \"bbox\": [-77.035661, 38.878605, -77.030339, 38.884084],\n      \"id\": 7\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.0361328125, 38.8840513003232],\n          [-77.02806472778319, 38.88602223128263]\n        ]\n      },\n      \"bbox\": [-77.0361328125, 38.8840513003232, -77.02806472778319, 38.88602223128263],\n      \"id\": 8\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.02806472778319, 38.88602223128263],\n          [-77.02536106109619, 38.888761400455074]\n        ]\n      },\n      \"bbox\": [\n        -77.02806472778319, 38.88602223128263, -77.02536106109619, 38.888761400455074\n      ],\n      \"id\": 9\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.02536106109619, 38.888761400455074],\n          [-77.02557563781738, 38.89266954433839]\n        ]\n      },\n      \"bbox\": [\n        -77.02557563781738, 38.888761400455074, -77.02536106109619, 38.89266954433839\n      ],\n      \"id\": 10\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.02557563781738, 38.89266954433839],\n          [-77.03368663787842, 38.88882820813984]\n        ]\n      },\n      \"bbox\": [\n        -77.03368663787842, 38.88882820813984, -77.02557563781738, 38.89266954433839\n      ],\n      \"id\": 11\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.03368663787842, 38.88882820813984],\n          [-77.03630447387695, 38.88769246895389]\n        ]\n      },\n      \"bbox\": [\n        -77.03630447387695, 38.88769246895389, -77.03368663787842, 38.88882820813984\n      ],\n      \"id\": 12\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.03630447387695, 38.88769246895389],\n          [-77.0361328125, 38.8840513003232]\n        ]\n      },\n      \"bbox\": [-77.03630447387695, 38.8840513003232, -77.0361328125, 38.88769246895389],\n      \"id\": 13\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#000\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-77.031669, 38.878605],\n            [-77.029609, 38.881946],\n            [-77.020339, 38.884084],\n            [-77.025661, 38.885821],\n            [-77.021884, 38.889563],\n            [-77.019824, 38.892368]\n          ],\n          [\n            [-77.041669, 38.885821],\n            [-77.039609, 38.881946],\n            [-77.030339, 38.884084],\n            [-77.035661, 38.878605]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#000\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-77.0361328125, 38.8840513003232],\n            [-77.02806472778319, 38.88602223128263],\n            [-77.02536106109619, 38.888761400455074],\n            [-77.02557563781738, 38.89266954433839],\n            [-77.03368663787842, 38.88882820813984],\n            [-77.03630447387695, 38.88769246895389],\n            [-77.0361328125, 38.8840513003232]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#000\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.02810764312744, 38.883049111069546]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-segment/test/out/geometry-collection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.031669, 38.878605],\n          [-77.029609, 38.881946]\n        ]\n      },\n      \"bbox\": [-77.031669, 38.878605, -77.029609, 38.881946],\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.029609, 38.881946],\n          [-77.020339, 38.884084]\n        ]\n      },\n      \"bbox\": [-77.029609, 38.881946, -77.020339, 38.884084],\n      \"id\": 1\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.020339, 38.884084],\n          [-77.025661, 38.885821]\n        ]\n      },\n      \"bbox\": [-77.025661, 38.884084, -77.020339, 38.885821],\n      \"id\": 2\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.025661, 38.885821],\n          [-77.021884, 38.889563]\n        ]\n      },\n      \"bbox\": [-77.025661, 38.885821, -77.021884, 38.889563],\n      \"id\": 3\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.021884, 38.889563],\n          [-77.019824, 38.892368]\n        ]\n      },\n      \"bbox\": [-77.021884, 38.889563, -77.019824, 38.892368],\n      \"id\": 4\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.041669, 38.885821],\n          [-77.039609, 38.881946]\n        ]\n      },\n      \"bbox\": [-77.041669, 38.881946, -77.039609, 38.885821],\n      \"id\": 5\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.039609, 38.881946],\n          [-77.030339, 38.884084]\n        ]\n      },\n      \"bbox\": [-77.039609, 38.881946, -77.030339, 38.884084],\n      \"id\": 6\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.030339, 38.884084],\n          [-77.035661, 38.878605]\n        ]\n      },\n      \"bbox\": [-77.035661, 38.878605, -77.030339, 38.884084],\n      \"id\": 7\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.0361328125, 38.8840513003232],\n          [-77.02806472778319, 38.88602223128263]\n        ]\n      },\n      \"bbox\": [-77.0361328125, 38.8840513003232, -77.02806472778319, 38.88602223128263],\n      \"id\": 8\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.02806472778319, 38.88602223128263],\n          [-77.02536106109619, 38.888761400455074]\n        ]\n      },\n      \"bbox\": [\n        -77.02806472778319, 38.88602223128263, -77.02536106109619, 38.888761400455074\n      ],\n      \"id\": 9\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.02536106109619, 38.888761400455074],\n          [-77.02557563781738, 38.89266954433839]\n        ]\n      },\n      \"bbox\": [\n        -77.02557563781738, 38.888761400455074, -77.02536106109619, 38.89266954433839\n      ],\n      \"id\": 10\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.02557563781738, 38.89266954433839],\n          [-77.03368663787842, 38.88882820813984]\n        ]\n      },\n      \"bbox\": [\n        -77.03368663787842, 38.88882820813984, -77.02557563781738, 38.89266954433839\n      ],\n      \"id\": 11\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.03368663787842, 38.88882820813984],\n          [-77.03630447387695, 38.88769246895389]\n        ]\n      },\n      \"bbox\": [\n        -77.03630447387695, 38.88769246895389, -77.03368663787842, 38.88882820813984\n      ],\n      \"id\": 12\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.03630447387695, 38.88769246895389],\n          [-77.0361328125, 38.8840513003232]\n        ]\n      },\n      \"bbox\": [-77.03630447387695, 38.8840513003232, -77.0361328125, 38.88769246895389],\n      \"id\": 13\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-segment/test/out/linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-51.1083984375, -2.943040910055132],\n          [-47.6806640625, -0.8788717828324148]\n        ]\n      },\n      \"bbox\": [-51.1083984375, -2.943040910055132, -47.6806640625, -0.8788717828324148],\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-47.6806640625, -0.8788717828324148],\n          [-43.0224609375, -1.9771465537125645]\n        ]\n      },\n      \"bbox\": [-47.6806640625, -1.9771465537125645, -43.0224609375, -0.8788717828324148],\n      \"id\": 1\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-43.0224609375, -1.9771465537125645],\n          [-41.0888671875, -4.784468966579362]\n        ]\n      },\n      \"bbox\": [-43.0224609375, -4.784468966579362, -41.0888671875, -1.9771465537125645],\n      \"id\": 2\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#000\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-51.1083984375, -2.943040910055132],\n          [-47.6806640625, -0.8788717828324148],\n          [-43.0224609375, -1.9771465537125645],\n          [-41.0888671875, -4.784468966579362]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-segment/test/out/multi-linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.031669, 38.878605],\n          [-77.029609, 38.881946]\n        ]\n      },\n      \"bbox\": [-77.031669, 38.878605, -77.029609, 38.881946],\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.029609, 38.881946],\n          [-77.020339, 38.884084]\n        ]\n      },\n      \"bbox\": [-77.029609, 38.881946, -77.020339, 38.884084],\n      \"id\": 1\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.020339, 38.884084],\n          [-77.025661, 38.885821]\n        ]\n      },\n      \"bbox\": [-77.025661, 38.884084, -77.020339, 38.885821],\n      \"id\": 2\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.025661, 38.885821],\n          [-77.021884, 38.889563]\n        ]\n      },\n      \"bbox\": [-77.025661, 38.885821, -77.021884, 38.889563],\n      \"id\": 3\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.021884, 38.889563],\n          [-77.019824, 38.892368]\n        ]\n      },\n      \"bbox\": [-77.021884, 38.889563, -77.019824, 38.892368],\n      \"id\": 4\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.041669, 38.885821],\n          [-77.039609, 38.881946]\n        ]\n      },\n      \"bbox\": [-77.041669, 38.881946, -77.039609, 38.885821],\n      \"id\": 5\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.039609, 38.881946],\n          [-77.030339, 38.884084]\n        ]\n      },\n      \"bbox\": [-77.039609, 38.881946, -77.030339, 38.884084],\n      \"id\": 6\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-77.030339, 38.884084],\n          [-77.035661, 38.878605]\n        ]\n      },\n      \"bbox\": [-77.035661, 38.878605, -77.030339, 38.884084],\n      \"id\": 7\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#000\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-77.031669, 38.878605],\n            [-77.029609, 38.881946],\n            [-77.020339, 38.884084],\n            [-77.025661, 38.885821],\n            [-77.021884, 38.889563],\n            [-77.019824, 38.892368]\n          ],\n          [\n            [-77.041669, 38.885821],\n            [-77.039609, 38.881946],\n            [-77.030339, 38.884084],\n            [-77.035661, 38.878605]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-segment/test/out/multi-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10,\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-49.43847656249999, -8.798225459016345],\n          [-39.7705078125, -8.798225459016345]\n        ]\n      },\n      \"bbox\": [\n        -49.43847656249999, -8.798225459016345, -39.7705078125, -8.798225459016345\n      ],\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10,\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-39.7705078125, -8.798225459016345],\n          [-39.7705078125, 0.4833927027896987]\n        ]\n      },\n      \"bbox\": [-39.7705078125, -8.798225459016345, -39.7705078125, 0.4833927027896987],\n      \"id\": 1\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10,\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-39.7705078125, 0.4833927027896987],\n          [-49.43847656249999, 0.4833927027896987]\n        ]\n      },\n      \"bbox\": [\n        -49.43847656249999, 0.4833927027896987, -39.7705078125, 0.4833927027896987\n      ],\n      \"id\": 2\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10,\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-49.43847656249999, 0.4833927027896987],\n          [-49.43847656249999, -8.798225459016345]\n        ]\n      },\n      \"bbox\": [\n        -49.43847656249999, -8.798225459016345, -49.43847656249999, 0.4833927027896987\n      ],\n      \"id\": 3\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10,\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-45, -13.795406203132826],\n          [-35.2001953125, -13.795406203132826]\n        ]\n      },\n      \"bbox\": [-45, -13.795406203132826, -35.2001953125, -13.795406203132826],\n      \"id\": 4\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10,\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-35.2001953125, -13.795406203132826],\n          [-35.2001953125, -4.083452772038619]\n        ]\n      },\n      \"bbox\": [-35.2001953125, -13.795406203132826, -35.2001953125, -4.083452772038619],\n      \"id\": 5\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10,\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-35.2001953125, -4.083452772038619],\n          [-45, -4.083452772038619]\n        ]\n      },\n      \"bbox\": [-45, -4.083452772038619, -35.2001953125, -4.083452772038619],\n      \"id\": 6\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10,\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-45, -4.083452772038619],\n          [-45, -13.795406203132826]\n        ]\n      },\n      \"bbox\": [-45, -13.795406203132826, -45, -4.083452772038619],\n      \"id\": 7\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#000\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-49.43847656249999, -8.798225459016345],\n              [-39.7705078125, -8.798225459016345],\n              [-39.7705078125, 0.4833927027896987],\n              [-49.43847656249999, 0.4833927027896987],\n              [-49.43847656249999, -8.798225459016345]\n            ]\n          ],\n          [\n            [\n              [-45, -13.795406203132826],\n              [-35.2001953125, -13.795406203132826],\n              [-35.2001953125, -4.083452772038619],\n              [-45, -4.083452772038619],\n              [-45, -13.795406203132826]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-segment/test/out/polygon-with-holes.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [111.4453125, -37.37015718405751],\n          [153.6328125, -37.37015718405751]\n        ]\n      },\n      \"bbox\": [111.4453125, -37.37015718405751, 153.6328125, -37.37015718405751],\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [153.6328125, -37.37015718405751],\n          [153.6328125, -13.581920900545844]\n        ]\n      },\n      \"bbox\": [153.6328125, -37.37015718405751, 153.6328125, -13.581920900545844],\n      \"id\": 1\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [153.6328125, -13.581920900545844],\n          [111.4453125, -13.581920900545844]\n        ]\n      },\n      \"bbox\": [111.4453125, -13.581920900545844, 153.6328125, -13.581920900545844],\n      \"id\": 2\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [111.4453125, -13.581920900545844],\n          [111.4453125, -37.37015718405751]\n        ]\n      },\n      \"bbox\": [111.4453125, -37.37015718405751, 111.4453125, -13.581920900545844],\n      \"id\": 3\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [121.81640624999999, -31.05293398570514],\n          [121.81640624999999, -21.453068633086772]\n        ]\n      },\n      \"bbox\": [\n        121.81640624999999, -31.05293398570514, 121.81640624999999, -21.453068633086772\n      ],\n      \"id\": 4\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [121.81640624999999, -21.453068633086772],\n          [145.1953125, -21.453068633086772]\n        ]\n      },\n      \"bbox\": [121.81640624999999, -21.453068633086772, 145.1953125, -21.453068633086772],\n      \"id\": 5\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [145.1953125, -21.453068633086772],\n          [145.1953125, -31.05293398570514]\n        ]\n      },\n      \"bbox\": [145.1953125, -31.05293398570514, 145.1953125, -21.453068633086772],\n      \"id\": 6\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [145.1953125, -31.05293398570514],\n          [121.81640624999999, -31.05293398570514]\n        ]\n      },\n      \"bbox\": [121.81640624999999, -31.05293398570514, 145.1953125, -31.05293398570514],\n      \"id\": 7\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [114.873046875, -20.13847031245114],\n          [120.05859375, -20.13847031245114]\n        ]\n      },\n      \"bbox\": [114.873046875, -20.13847031245114, 120.05859375, -20.13847031245114],\n      \"id\": 8\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [120.05859375, -20.13847031245114],\n          [120.05859375, -15.623036831528252]\n        ]\n      },\n      \"bbox\": [120.05859375, -20.13847031245114, 120.05859375, -15.623036831528252],\n      \"id\": 9\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [120.05859375, -15.623036831528252],\n          [114.873046875, -15.623036831528252]\n        ]\n      },\n      \"bbox\": [114.873046875, -15.623036831528252, 120.05859375, -15.623036831528252],\n      \"id\": 10\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [114.873046875, -15.623036831528252],\n          [114.873046875, -20.13847031245114]\n        ]\n      },\n      \"bbox\": [114.873046875, -20.13847031245114, 114.873046875, -15.623036831528252],\n      \"id\": 11\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#000\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [111.4453125, -37.37015718405751],\n            [153.6328125, -37.37015718405751],\n            [153.6328125, -13.581920900545844],\n            [111.4453125, -13.581920900545844],\n            [111.4453125, -37.37015718405751]\n          ],\n          [\n            [121.81640624999999, -31.05293398570514],\n            [121.81640624999999, -21.453068633086772],\n            [145.1953125, -21.453068633086772],\n            [145.1953125, -31.05293398570514],\n            [121.81640624999999, -31.05293398570514]\n          ],\n          [\n            [114.873046875, -20.13847031245114],\n            [120.05859375, -20.13847031245114],\n            [120.05859375, -15.623036831528252],\n            [114.873046875, -15.623036831528252],\n            [114.873046875, -20.13847031245114]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-segment/test/out/polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10,\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-50, 5],\n          [-40, -10]\n        ]\n      },\n      \"bbox\": [-50, -10, -40, 5],\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10,\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-40, -10],\n          [-50, -10]\n        ]\n      },\n      \"bbox\": [-50, -10, -40, -10],\n      \"id\": 1\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10,\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-50, -10],\n          [-40, 5]\n        ]\n      },\n      \"bbox\": [-50, -10, -40, 5],\n      \"id\": 2\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10,\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-40, 5],\n          [-50, 5]\n        ]\n      },\n      \"bbox\": [-50, 5, -40, 5],\n      \"id\": 3\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#000\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, 5],\n            [-40, -10],\n            [-50, -10],\n            [-40, 5],\n            [-50, 5]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-segment/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { featureEach } from \"@turf/meta\";\nimport { featureCollection, lineString } from \"@turf/helpers\";\nimport { lineSegment } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-line-segment\", (t) => {\n  for (const { name, filename, geojson } of fixtures) {\n    const results = colorSegments(lineSegment(geojson));\n    featureEach(geojson, (feature) => {\n      feature.properties = {\n        stroke: \"#000\",\n        \"stroke-width\": 3,\n      };\n      results.features.push(feature);\n    });\n\n    // Save output\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEqual(results, loadJsonFileSync(directories.out + filename), name);\n  }\n  t.end();\n});\n\ntest(\"turf-line-segment - Geometry Object\", (t) => {\n  const line = lineString([\n    [115, -35],\n    [125, -30],\n    [135, -30],\n    [145, -35],\n  ]);\n  t.true(lineSegment(line.geometry).features.length > 0, \"geometry object\");\n  t.end();\n});\n\n// Preview 2-vertex LineStrings with colors\nfunction colorSegments(segments) {\n  const results = featureCollection([]);\n  featureEach(segments, (feature, index) => {\n    const r = index % 2 === 0 ? \"F\" : \"0\";\n    const g = index % 2 === 0 ? \"0\" : \"0\";\n    const b = index % 2 === 0 ? \"0\" : \"F\";\n    feature.properties = Object.assign(\n      {\n        stroke: \"#\" + r + g + b,\n        \"stroke-width\": 10,\n      },\n      feature.properties\n    );\n    results.features.push(feature);\n  });\n  return results;\n}\n"
  },
  {
    "path": "packages/turf-line-segment/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-line-slice/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-line-slice/README.md",
    "content": "# @turf/line-slice\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## lineSlice\n\nTakes a [line][1], a start [Point][2], and a stop point\nand returns a subsection of the line in-between those points.\nThe start & stop points don't need to fall exactly on the line.\n\nThis can be useful for extracting only the part of a route between waypoints.\n\n### Parameters\n\n*   `startPt` **[Coord][3]** starting point\n*   `stopPt` **[Coord][3]** stopping point\n*   `line` **([Feature][4]<[LineString][1]> | [LineString][1])** line to slice\n\n### Examples\n\n```javascript\nvar line = turf.lineString([\n    [-77.031669, 38.878605],\n    [-77.029609, 38.881946],\n    [-77.020339, 38.884084],\n    [-77.025661, 38.885821],\n    [-77.021884, 38.889563],\n    [-77.019824, 38.892368]\n]);\nvar start = turf.point([-77.029609, 38.881946]);\nvar stop = turf.point([-77.021884, 38.889563]);\n\nvar sliced = turf.lineSlice(start, stop, line);\n\n//addToMap\nvar addToMap = [start, stop, line]\n```\n\nReturns **[Feature][4]<[LineString][1]>** sliced line\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/line-slice\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-line-slice/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport Benchmark from \"benchmark\";\nimport { point } from \"@turf/helpers\";\nimport { lineSlice } from \"./index.js\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { Feature, FeatureCollection, LineString } from \"geojson\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst route1: FeatureCollection = loadJsonFileSync(\n  path.join(__dirname, \"test\", \"in\", \"route1.geojson\")\n);\nconst route2: FeatureCollection = loadJsonFileSync(\n  path.join(__dirname, \"test\", \"in\", \"route2.geojson\")\n);\nconst line1: FeatureCollection = loadJsonFileSync(\n  path.join(__dirname, \"test\", \"in\", \"line1.geojson\")\n);\n\nconst start1 = point([-97.79617309570313, 22.254624939561698]);\nconst stop1 = point([-97.72750854492188, 22.057641623615734]);\nconst start2 = point([-79.0850830078125, 37.60117623656667]);\nconst stop2 = point([-77.7667236328125, 38.65119833229951]);\nconst start3 = point([-112.60660171508789, 45.96021963947196]);\nconst stop3 = point([-111.97265625, 48.84302835299516]);\n\nconst suite = new Benchmark.Suite(\"turf-line-slice\");\nsuite\n  .add(\"turf-line-slice#simple\", function () {\n    lineSlice(start1, stop1, line1.features[0] as Feature<LineString>);\n  })\n  .add(\"turf-line-slice#route1\", function () {\n    lineSlice(start2, stop2, route1.features[0] as Feature<LineString>);\n  })\n  .add(\"turf-line-slice#route2\", function () {\n    lineSlice(start3, stop3, route2.features[0] as Feature<LineString>);\n  })\n  .on(\"cycle\", function (event: any) {\n    console.log(String(event.target));\n  })\n  .run();\n"
  },
  {
    "path": "packages/turf-line-slice/index.ts",
    "content": "import { getCoords, getType } from \"@turf/invariant\";\nimport { Coord, lineString as linestring } from \"@turf/helpers\";\nimport { nearestPointOnLine } from \"@turf/nearest-point-on-line\";\nimport type { Feature, LineString, Point } from \"geojson\";\n\n/**\n * Takes a {@link LineString|line}, a start {@link Point}, and a stop point\n * and returns a subsection of the line in-between those points.\n * The start & stop points don't need to fall exactly on the line.\n *\n * This can be useful for extracting only the part of a route between waypoints.\n *\n * @function\n * @param {Coord} startPt starting point\n * @param {Coord} stopPt stopping point\n * @param {Feature<LineString>|LineString} line line to slice\n * @returns {Feature<LineString>} sliced line\n * @example\n * var line = turf.lineString([\n *     [-77.031669, 38.878605],\n *     [-77.029609, 38.881946],\n *     [-77.020339, 38.884084],\n *     [-77.025661, 38.885821],\n *     [-77.021884, 38.889563],\n *     [-77.019824, 38.892368]\n * ]);\n * var start = turf.point([-77.029609, 38.881946]);\n * var stop = turf.point([-77.021884, 38.889563]);\n *\n * var sliced = turf.lineSlice(start, stop, line);\n *\n * //addToMap\n * var addToMap = [start, stop, line]\n */\nfunction lineSlice(\n  startPt: Coord,\n  stopPt: Coord,\n  line: Feature<LineString> | LineString\n): Feature<LineString> {\n  // Validation\n  const coords = getCoords(line);\n  if (getType(line) !== \"LineString\")\n    throw new Error(\"line must be a LineString\");\n\n  const startVertex = nearestPointOnLine(line, startPt);\n  const stopVertex = nearestPointOnLine(line, stopPt);\n\n  // Workaround until we can fix backwards incompatible nearestPointOnLine bug\n  // #3016\n  fixSegmentIndexBounds(line, startVertex);\n  fixSegmentIndexBounds(line, stopVertex);\n\n  const ends =\n    startVertex.properties.segmentIndex <= stopVertex.properties.segmentIndex\n      ? [startVertex, stopVertex]\n      : [stopVertex, startVertex];\n  const clipCoords = [ends[0].geometry.coordinates];\n  for (\n    let i = ends[0].properties.segmentIndex + 1;\n    i < ends[1].properties.segmentIndex + 1;\n    i++\n  ) {\n    clipCoords.push(coords[i]);\n  }\n  clipCoords.push(ends[1].geometry.coordinates);\n  return linestring(clipCoords, line.type === \"Feature\" ? line.properties : {});\n}\n\nfunction fixSegmentIndexBounds(\n  line: Feature<LineString> | LineString,\n  vertex: Feature<Point, { segmentIndex: number }>\n) {\n  // There is a bug in nearestPointOnLine where the returned segmentIndex can\n  // refer to a non-existent segment (overflows). Until we can fix that bug\n  // (see https://github.com/Turfjs/turf/issues/3016) we adjust the\n  // segmentIndex here to make sure it's in range.\n\n  let geometry: LineString = line.type === \"Feature\" ? line.geometry : line;\n\n  if (vertex.properties.segmentIndex >= geometry.coordinates.length - 1) {\n    // segmentIndex refers to a non-existent segment beyond the end of the\n    // lineString. Override it.\n    vertex.properties.segmentIndex = geometry.coordinates.length - 2;\n  }\n}\n\nexport { lineSlice };\nexport default lineSlice;\n"
  },
  {
    "path": "packages/turf-line-slice/package.json",
    "content": "{\n  \"name\": \"@turf/line-slice\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Useful for extracting only the part of a route between waypoints.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"linestring\",\n    \"geojson\",\n    \"linear\",\n    \"reference\",\n    \"line\",\n    \"distance\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/nearest-point-on-line\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-slice/test/in/avoid-duplicated-end-points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [3, 0],\n          [2, -1],\n          [2, 2]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 2]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-slice/test/in/line1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-97.88131713867188, 22.466878364528448],\n          [-97.82089233398438, 22.175960091218524],\n          [-97.6190185546875, 21.8704201873689]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-97.796173, 22.254624]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-97.727508, 22.057641]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-slice/test/in/line2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [1, 1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0.1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9, 0.8]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-slice/test/in/route1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-79.254923, 36.98394],\n          [-79.254923, 36.983939],\n          [-79.255326, 36.9838],\n          [-79.255401, 36.983774],\n          [-79.25576, 36.983664],\n          [-79.256795, 36.984137],\n          [-79.257537, 36.984478],\n          [-79.258539, 36.984925],\n          [-79.259498, 36.985353],\n          [-79.260286, 36.985712],\n          [-79.261405, 36.986222],\n          [-79.262933, 36.986928],\n          [-79.263237, 36.987071],\n          [-79.263755, 36.987296],\n          [-79.264086, 36.987423],\n          [-79.264167, 36.987446],\n          [-79.264338, 36.987486],\n          [-79.264414, 36.987501],\n          [-79.264618, 36.987531],\n          [-79.2648, 36.987542],\n          [-79.264982, 36.987537],\n          [-79.265163, 36.987517],\n          [-79.26703, 36.987355],\n          [-79.267952, 36.98726],\n          [-79.268404, 36.987226],\n          [-79.268771, 36.987197],\n          [-79.26955, 36.987117],\n          [-79.271398, 36.986946],\n          [-79.271488, 36.986941],\n          [-79.271698, 36.986925],\n          [-79.271936, 36.986898],\n          [-79.272231, 36.986852],\n          [-79.272474, 36.986785],\n          [-79.272711, 36.986705],\n          [-79.272895, 36.986632],\n          [-79.273059, 36.986552],\n          [-79.273646, 36.986245],\n          [-79.274224, 36.985925],\n          [-79.274887, 36.985592],\n          [-79.275308, 36.985365],\n          [-79.275672, 36.98517],\n          [-79.276249, 36.984876],\n          [-79.277101, 36.984433],\n          [-79.277425, 36.984259],\n          [-79.277918, 36.983982],\n          [-79.27799, 36.98395],\n          [-79.278179, 36.98385],\n          [-79.278261, 36.9838],\n          [-79.278335, 36.983745],\n          [-79.278421, 36.983666],\n          [-79.27844, 36.983647],\n          [-79.278502, 36.983577],\n          [-79.278548, 36.983511],\n          [-79.278614, 36.983381],\n          [-79.278654, 36.983273],\n          [-79.278711, 36.983011],\n          [-79.278763, 36.98269],\n          [-79.278806, 36.982485],\n          [-79.278866, 36.982282],\n          [-79.278952, 36.982101],\n          [-79.279023, 36.981984],\n          [-79.280178, 36.980418],\n          [-79.280259, 36.980319],\n          [-79.280355, 36.980229],\n          [-79.280419, 36.98018],\n          [-79.280578, 36.980082],\n          [-79.280666, 36.980038],\n          [-79.280783, 36.979994],\n          [-79.280908, 36.979963],\n          [-79.281301, 36.979913],\n          [-79.281646, 36.979874],\n          [-79.282145, 36.979835],\n          [-79.282797, 36.97977],\n          [-79.283144, 36.979743],\n          [-79.283618, 36.97972],\n          [-79.28399, 36.979706],\n          [-79.284447, 36.979695],\n          [-79.284904, 36.979697],\n          [-79.286913, 36.979638],\n          [-79.287201, 36.979628],\n          [-79.287954, 36.979612],\n          [-79.288037, 36.979611],\n          [-79.288397, 36.97962],\n          [-79.288697, 36.979643],\n          [-79.289908, 36.979722],\n          [-79.289994, 36.979724],\n          [-79.290136, 36.979716],\n          [-79.290248, 36.979699],\n          [-79.290503, 36.979632],\n          [-79.291043, 36.979454],\n          [-79.291563, 36.979269],\n          [-79.292467, 36.97896],\n          [-79.292759, 36.978877],\n          [-79.292963, 36.978832],\n          [-79.293286, 36.978778],\n          [-79.293549, 36.978746],\n          [-79.293649, 36.978738],\n          [-79.293755, 36.978729],\n          [-79.293858, 36.978731],\n          [-79.294028, 36.978747],\n          [-79.294162, 36.978771],\n          [-79.294243, 36.9788],\n          [-79.294439, 36.978883],\n          [-79.294626, 36.978979],\n          [-79.294782, 36.979072],\n          [-79.294921, 36.979174],\n          [-79.295023, 36.979263],\n          [-79.295281, 36.979534],\n          [-79.295458, 36.979739],\n          [-79.296347, 36.980843],\n          [-79.296549, 36.981064],\n          [-79.296594, 36.981095],\n          [-79.296695, 36.981144],\n          [-79.296788, 36.98117],\n          [-79.296916, 36.981184],\n          [-79.297032, 36.981182],\n          [-79.297147, 36.981165],\n          [-79.297933, 36.980962],\n          [-79.298145, 36.980893],\n          [-79.298401, 36.98079],\n          [-79.298602, 36.980696],\n          [-79.298795, 36.980593],\n          [-79.299134, 36.980402],\n          [-79.299407, 36.980244],\n          [-79.299963, 36.9799],\n          [-79.301767, 36.97881],\n          [-79.301976, 36.978691],\n          [-79.3021, 36.978619],\n          [-79.302508, 36.978369],\n          [-79.302614, 36.978309],\n          [-79.3028, 36.97822],\n          [-79.302995, 36.978145],\n          [-79.303113, 36.978114],\n          [-79.303153, 36.978249],\n          [-79.303232, 36.978565],\n          [-79.303319, 36.978989],\n          [-79.303326, 36.979184],\n          [-79.303313, 36.979346],\n          [-79.30324, 36.979748],\n          [-79.303136, 36.980362],\n          [-79.303088, 36.980609],\n          [-79.302996, 36.981143],\n          [-79.302982, 36.981226],\n          [-79.302977, 36.981321],\n          [-79.302986, 36.98144],\n          [-79.303013, 36.981556],\n          [-79.303057, 36.98167],\n          [-79.303191, 36.9819],\n          [-79.303336, 36.982126],\n          [-79.303702, 36.982652],\n          [-79.304322, 36.983486],\n          [-79.304588, 36.98382],\n          [-79.304756, 36.984051],\n          [-79.304903, 36.984229],\n          [-79.305059, 36.984403],\n          [-79.305145, 36.984487],\n          [-79.305336, 36.984648],\n          [-79.305612, 36.98486],\n          [-79.30569, 36.984915],\n          [-79.305765, 36.984974],\n          [-79.305944, 36.98513],\n          [-79.306108, 36.985295],\n          [-79.306259, 36.985469],\n          [-79.306333, 36.98557],\n          [-79.306437, 36.985737],\n          [-79.306524, 36.985911],\n          [-79.306595, 36.98609],\n          [-79.306677, 36.986365],\n          [-79.306734, 36.98662],\n          [-79.306773, 36.986878],\n          [-79.306759, 36.986998],\n          [-79.306724, 36.987146],\n          [-79.306621, 36.987426],\n          [-79.306591, 36.987545],\n          [-79.306555, 36.987745],\n          [-79.306536, 36.987984],\n          [-79.30653, 36.988172],\n          [-79.306539, 36.988321],\n          [-79.30655, 36.988398],\n          [-79.306566, 36.988507],\n          [-79.306673, 36.988967],\n          [-79.306789, 36.989416],\n          [-79.30681, 36.989518],\n          [-79.306831, 36.98969],\n          [-79.306833, 36.989828],\n          [-79.306822, 36.989888],\n          [-79.306771, 36.990067],\n          [-79.306696, 36.99024],\n          [-79.306569, 36.990463],\n          [-79.306374, 36.99078],\n          [-79.30633, 36.990863],\n          [-79.306292, 36.990972],\n          [-79.306271, 36.991084],\n          [-79.306268, 36.991229],\n          [-79.306282, 36.991421],\n          [-79.306323, 36.991648],\n          [-79.30657, 36.992516],\n          [-79.306601, 36.992703],\n          [-79.306614, 36.992892],\n          [-79.306598, 36.993111],\n          [-79.306569, 36.993287],\n          [-79.306553, 36.993345],\n          [-79.306526, 36.993432],\n          [-79.306466, 36.993574],\n          [-79.306313, 36.993848],\n          [-79.305971, 36.994382],\n          [-79.305826, 36.994647],\n          [-79.305382, 36.995598],\n          [-79.305197, 36.995963],\n          [-79.305065, 36.996284],\n          [-79.304983, 36.996521],\n          [-79.304954, 36.99668],\n          [-79.30495, 36.996815],\n          [-79.304959, 36.996932],\n          [-79.304988, 36.997077],\n          [-79.305024, 36.99719],\n          [-79.305111, 36.99739],\n          [-79.305197, 36.997567],\n          [-79.30532, 36.997782],\n          [-79.305429, 36.997949],\n          [-79.305577, 36.998153],\n          [-79.306017, 36.99873],\n          [-79.306204, 36.998965],\n          [-79.306407, 36.999192],\n          [-79.306624, 36.999411],\n          [-79.30672, 36.999489],\n          [-79.306828, 36.999557],\n          [-79.306922, 36.999602],\n          [-79.307072, 36.999656],\n          [-79.307354, 36.999723],\n          [-79.307628, 36.999778],\n          [-79.308892, 36.999988],\n          [-79.309029, 37.00002],\n          [-79.309135, 37.000056],\n          [-79.30926, 37.000112],\n          [-79.309374, 37.00018],\n          [-79.309478, 37.000259],\n          [-79.30959, 37.000372],\n          [-79.309743, 37.000552],\n          [-79.31029, 37.001344],\n          [-79.31037, 37.001451],\n          [-79.310486, 37.001568],\n          [-79.310598, 37.001654],\n          [-79.310697, 37.001714],\n          [-79.310838, 37.001785],\n          [-79.310991, 37.001844],\n          [-79.31115, 37.001891],\n          [-79.311632, 37.001979],\n          [-79.312359, 37.002135],\n          [-79.312455, 37.002156],\n          [-79.312915, 37.002271],\n          [-79.313026, 37.002296],\n          [-79.313639, 37.002422],\n          [-79.314311, 37.002515],\n          [-79.314769, 37.002553],\n          [-79.315227, 37.002582],\n          [-79.315352, 37.002604],\n          [-79.315472, 37.002641],\n          [-79.315543, 37.002685],\n          [-79.315621, 37.00275],\n          [-79.315685, 37.002824],\n          [-79.315725, 37.002889],\n          [-79.315888, 37.002832],\n          [-79.316221, 37.002733],\n          [-79.316448, 37.002678],\n          [-79.31752, 37.002455],\n          [-79.318524, 37.002275],\n          [-79.319059, 37.002211],\n          [-79.319268, 37.002199],\n          [-79.319435, 37.0022],\n          [-79.319651, 37.002214],\n          [-79.319786, 37.002226],\n          [-79.320258, 37.002279],\n          [-79.320522, 37.002298],\n          [-79.320786, 37.002302],\n          [-79.320953, 37.002288],\n          [-79.321116, 37.002258],\n          [-79.321274, 37.002213],\n          [-79.321381, 37.00217],\n          [-79.321762, 37.002001],\n          [-79.322382, 37.001698],\n          [-79.322844, 37.001466],\n          [-79.323023, 37.001376],\n          [-79.323292, 37.001249],\n          [-79.32357, 37.001134],\n          [-79.323943, 37.001003],\n          [-79.324098, 37.000958],\n          [-79.324162, 37.000945],\n          [-79.32513, 37.000843],\n          [-79.325325, 37.000814],\n          [-79.325517, 37.000777],\n          [-79.325753, 37.000719],\n          [-79.327186, 37.000266],\n          [-79.327482, 37.000173],\n          [-79.327802, 37.00008],\n          [-79.328598, 36.999838],\n          [-79.329158, 36.999654],\n          [-79.329204, 36.999715],\n          [-79.329343, 36.999894],\n          [-79.32942, 36.999975],\n          [-79.329588, 37.000125],\n          [-79.329742, 37.000239],\n          [-79.329777, 37.000256],\n          [-79.329869, 37.000291],\n          [-79.329988, 37.000315],\n          [-79.330091, 37.000318],\n          [-79.33027, 37.000316],\n          [-79.330449, 37.000298],\n          [-79.331035, 37.000223],\n          [-79.331427, 37.000184],\n          [-79.331855, 37.000129],\n          [-79.333009, 37.000023],\n          [-79.334568, 36.999869],\n          [-79.335002, 36.999826],\n          [-79.33552, 36.999806],\n          [-79.33606, 36.999814],\n          [-79.336208, 36.999833],\n          [-79.336352, 36.999866],\n          [-79.33649, 36.999913],\n          [-79.336644, 36.999986],\n          [-79.336856, 37.000123],\n          [-79.336962, 37.000203],\n          [-79.337096, 37.000316],\n          [-79.337325, 37.000539],\n          [-79.337519, 37.000761],\n          [-79.338522, 37.001965],\n          [-79.339126, 37.002688],\n          [-79.339574, 37.003185],\n          [-79.340385, 37.004106],\n          [-79.340479, 37.004212],\n          [-79.340603, 37.004341],\n          [-79.340773, 37.00449],\n          [-79.340929, 37.004602],\n          [-79.341131, 37.004723],\n          [-79.341632, 37.004968],\n          [-79.341875, 37.005087],\n          [-79.342172, 37.005233],\n          [-79.342594, 37.00542],\n          [-79.343189, 37.005708],\n          [-79.343817, 37.006011],\n          [-79.344455, 37.006335],\n          [-79.344712, 37.00647],\n          [-79.345697, 37.006916],\n          [-79.345837, 37.006985],\n          [-79.346006, 37.00708],\n          [-79.346221, 37.007218],\n          [-79.347403, 37.008016],\n          [-79.347493, 37.008071],\n          [-79.347634, 37.008171],\n          [-79.347763, 37.008281],\n          [-79.347971, 37.008497],\n          [-79.348051, 37.008623],\n          [-79.348135, 37.008786],\n          [-79.348201, 37.008954],\n          [-79.34825, 37.009126],\n          [-79.348316, 37.00954],\n          [-79.348397, 37.010196],\n          [-79.34854, 37.01111],\n          [-79.348616, 37.011496],\n          [-79.348778, 37.012266],\n          [-79.349159, 37.013946],\n          [-79.349315, 37.014628],\n          [-79.349636, 37.015919],\n          [-79.349688, 37.016183],\n          [-79.349795, 37.016628],\n          [-79.349854, 37.016827],\n          [-79.349915, 37.01701],\n          [-79.350064, 37.017337],\n          [-79.350135, 37.017464],\n          [-79.350159, 37.017499],\n          [-79.350325, 37.017735],\n          [-79.35042, 37.017865],\n          [-79.350584, 37.018129],\n          [-79.35072, 37.01842],\n          [-79.350808, 37.018683],\n          [-79.35089, 37.018981],\n          [-79.350968, 37.019317],\n          [-79.35119, 37.020219],\n          [-79.351251, 37.020445],\n          [-79.351346, 37.020719],\n          [-79.351414, 37.020888],\n          [-79.351505, 37.021079],\n          [-79.351682, 37.021459],\n          [-79.351825, 37.02176],\n          [-79.352185, 37.022473],\n          [-79.352628, 37.023433],\n          [-79.352751, 37.023743],\n          [-79.35282, 37.023863],\n          [-79.352895, 37.023965],\n          [-79.353012, 37.024078],\n          [-79.353078, 37.024127],\n          [-79.353186, 37.024186],\n          [-79.353325, 37.024244],\n          [-79.353398, 37.024265],\n          [-79.353421, 37.02427],\n          [-79.353621, 37.024315],\n          [-79.353675, 37.024321],\n          [-79.35392, 37.024336],\n          [-79.354286, 37.024379],\n          [-79.354423, 37.024385],\n          [-79.354844, 37.024375],\n          [-79.355058, 37.024359],\n          [-79.355214, 37.024339],\n          [-79.355354, 37.024308],\n          [-79.355614, 37.024238],\n          [-79.355718, 37.024209],\n          [-79.355965, 37.024125],\n          [-79.356147, 37.024057],\n          [-79.356485, 37.02394],\n          [-79.356546, 37.023919],\n          [-79.356797, 37.023824],\n          [-79.356964, 37.023769],\n          [-79.357077, 37.023757],\n          [-79.357196, 37.023767],\n          [-79.357262, 37.023786],\n          [-79.357309, 37.023811],\n          [-79.35735, 37.023849],\n          [-79.357388, 37.023905],\n          [-79.357541, 37.024317],\n          [-79.357583, 37.024391],\n          [-79.357634, 37.024438],\n          [-79.357685, 37.024467],\n          [-79.357747, 37.024487],\n          [-79.35783, 37.024497],\n          [-79.357899, 37.024495],\n          [-79.35801, 37.02448],\n          [-79.358102, 37.02446],\n          [-79.358409, 37.025941],\n          [-79.358471, 37.026316],\n          [-79.358502, 37.026637],\n          [-79.358517, 37.026844],\n          [-79.358519, 37.027185],\n          [-79.358497, 37.027679],\n          [-79.358457, 37.028033],\n          [-79.358398, 37.028378],\n          [-79.358301, 37.028779],\n          [-79.358082, 37.029574],\n          [-79.357957, 37.030026],\n          [-79.357813, 37.030609],\n          [-79.357745, 37.03095],\n          [-79.357685, 37.031344],\n          [-79.357656, 37.031612],\n          [-79.357621, 37.032199],\n          [-79.357619, 37.032445],\n          [-79.357631, 37.032766],\n          [-79.357637, 37.032893],\n          [-79.357666, 37.033258],\n          [-79.357711, 37.033639],\n          [-79.357789, 37.034066],\n          [-79.357875, 37.034441],\n          [-79.357922, 37.034622],\n          [-79.358521, 37.036938],\n          [-79.358613, 37.037315],\n          [-79.358687, 37.037658],\n          [-79.358786, 37.038217],\n          [-79.358856, 37.038791],\n          [-79.358911, 37.039356],\n          [-79.358965, 37.0401],\n          [-79.359051, 37.041306],\n          [-79.359073, 37.041825],\n          [-79.359059, 37.042471],\n          [-79.359012, 37.042954],\n          [-79.35899, 37.04313],\n          [-79.358922, 37.043537],\n          [-79.358829, 37.043973],\n          [-79.358773, 37.044171],\n          [-79.358704, 37.044417],\n          [-79.358541, 37.044914],\n          [-79.358352, 37.045429],\n          [-79.357856, 37.04678],\n          [-79.357794, 37.046961],\n          [-79.357564, 37.047556],\n          [-79.357409, 37.047915],\n          [-79.357338, 37.048062],\n          [-79.357278, 37.048184],\n          [-79.356942, 37.048801],\n          [-79.356841, 37.048967],\n          [-79.356589, 37.049349],\n          [-79.356363, 37.049677],\n          [-79.354212, 37.052783],\n          [-79.353972, 37.053148],\n          [-79.353865, 37.053295],\n          [-79.353452, 37.053889],\n          [-79.352197, 37.055711],\n          [-79.352126, 37.055808],\n          [-79.351983, 37.056023],\n          [-79.351596, 37.056539],\n          [-79.351413, 37.056761],\n          [-79.35122, 37.056979],\n          [-79.351018, 37.057191],\n          [-79.35075, 37.057445],\n          [-79.350603, 37.057584],\n          [-79.35029, 37.057856],\n          [-79.348032, 37.059645],\n          [-79.346954, 37.060488],\n          [-79.345892, 37.06133],\n          [-79.345295, 37.061797],\n          [-79.344778, 37.062208],\n          [-79.344716, 37.062258],\n          [-79.343942, 37.062866],\n          [-79.343259, 37.06342],\n          [-79.342925, 37.063722],\n          [-79.342732, 37.063907],\n          [-79.342302, 37.064351],\n          [-79.342055, 37.06463],\n          [-79.341843, 37.064885],\n          [-79.341424, 37.065452],\n          [-79.341048, 37.066036],\n          [-79.340718, 37.066647],\n          [-79.340066, 37.068047],\n          [-79.338982, 37.070343],\n          [-79.336951, 37.074656],\n          [-79.336672, 37.075265],\n          [-79.335622, 37.077497],\n          [-79.335265, 37.078252],\n          [-79.33489, 37.079062],\n          [-79.334833, 37.079182],\n          [-79.334222, 37.080477],\n          [-79.333262, 37.082521],\n          [-79.333001, 37.083079],\n          [-79.332628, 37.084028],\n          [-79.332548, 37.084278],\n          [-79.332388, 37.08478],\n          [-79.332201, 37.085539],\n          [-79.33204, 37.086421],\n          [-79.33196, 37.086978],\n          [-79.331907, 37.087757],\n          [-79.331871, 37.088536],\n          [-79.33185, 37.089317],\n          [-79.331805, 37.090324],\n          [-79.331772, 37.091338],\n          [-79.331768, 37.092235],\n          [-79.33183, 37.093576],\n          [-79.331943, 37.095022],\n          [-79.332045, 37.096198],\n          [-79.332341, 37.099713],\n          [-79.332397, 37.100421],\n          [-79.332436, 37.101086],\n          [-79.332443, 37.1013],\n          [-79.332438, 37.10199],\n          [-79.332418, 37.102426],\n          [-79.332391, 37.102795],\n          [-79.332337, 37.103324],\n          [-79.332244, 37.103966],\n          [-79.332205, 37.104185],\n          [-79.332175, 37.104355],\n          [-79.332056, 37.104907],\n          [-79.332041, 37.104978],\n          [-79.331903, 37.105494],\n          [-79.331733, 37.106053],\n          [-79.331559, 37.106562],\n          [-79.33131, 37.107195],\n          [-79.331178, 37.107501],\n          [-79.330959, 37.107973],\n          [-79.330748, 37.108399],\n          [-79.330489, 37.108876],\n          [-79.330365, 37.109093],\n          [-79.330155, 37.10944],\n          [-79.329757, 37.110058],\n          [-79.328813, 37.111446],\n          [-79.328701, 37.111611],\n          [-79.327118, 37.113932],\n          [-79.327107, 37.113947],\n          [-79.326498, 37.114802],\n          [-79.326178, 37.115223],\n          [-79.326128, 37.115289],\n          [-79.32568, 37.115855],\n          [-79.325061, 37.116595],\n          [-79.324816, 37.116878],\n          [-79.324497, 37.117235],\n          [-79.324161, 37.117601],\n          [-79.323816, 37.117964],\n          [-79.323589, 37.118194],\n          [-79.323104, 37.118678],\n          [-79.322015, 37.119732],\n          [-79.320826, 37.12089],\n          [-79.320279, 37.121415],\n          [-79.31993, 37.121729],\n          [-79.319276, 37.122271],\n          [-79.318828, 37.122609],\n          [-79.318377, 37.122925],\n          [-79.317535, 37.123462],\n          [-79.316595, 37.123987],\n          [-79.315586, 37.124473],\n          [-79.314958, 37.124742],\n          [-79.311931, 37.125973],\n          [-79.303986, 37.129196],\n          [-79.303177, 37.129555],\n          [-79.302367, 37.129915],\n          [-79.30095, 37.130617],\n          [-79.298871, 37.131691],\n          [-79.298008, 37.132146],\n          [-79.293574, 37.134491],\n          [-79.293108, 37.134749],\n          [-79.292712, 37.134937],\n          [-79.292278, 37.135125],\n          [-79.291836, 37.1353],\n          [-79.291351, 37.135473],\n          [-79.290905, 37.135615],\n          [-79.290365, 37.135772],\n          [-79.289641, 37.135941],\n          [-79.289078, 37.136055],\n          [-79.288222, 37.136184],\n          [-79.287781, 37.136228],\n          [-79.287205, 37.136269],\n          [-79.281895, 37.136526],\n          [-79.280512, 37.136607],\n          [-79.279731, 37.13667],\n          [-79.278968, 37.136747],\n          [-79.277922, 37.136872],\n          [-79.276244, 37.13712],\n          [-79.273494, 37.137624],\n          [-79.272005, 37.137904],\n          [-79.271794, 37.137944],\n          [-79.266159, 37.138985],\n          [-79.265643, 37.139056],\n          [-79.265084, 37.139119],\n          [-79.264404, 37.139177],\n          [-79.263826, 37.139213],\n          [-79.263263, 37.139234],\n          [-79.262666, 37.139241],\n          [-79.262103, 37.139234],\n          [-79.26149, 37.139213],\n          [-79.260895, 37.13918],\n          [-79.260488, 37.139149],\n          [-79.257811, 37.138859],\n          [-79.253283, 37.138354],\n          [-79.251817, 37.138189],\n          [-79.251311, 37.138138],\n          [-79.25082, 37.138104],\n          [-79.250344, 37.138087],\n          [-79.249949, 37.138091],\n          [-79.249141, 37.138125],\n          [-79.248701, 37.138169],\n          [-79.248255, 37.138232],\n          [-79.247815, 37.138303],\n          [-79.247404, 37.138388],\n          [-79.246983, 37.138492],\n          [-79.24619, 37.138741],\n          [-79.246034, 37.138799],\n          [-79.245567, 37.138991],\n          [-79.243639, 37.139795],\n          [-79.242121, 37.140435],\n          [-79.241618, 37.140648],\n          [-79.241125, 37.14089],\n          [-79.240755, 37.141103],\n          [-79.240471, 37.141293],\n          [-79.240237, 37.141475],\n          [-79.240023, 37.141661],\n          [-79.239659, 37.142024],\n          [-79.238717, 37.143115],\n          [-79.238653, 37.143189],\n          [-79.238443, 37.143404],\n          [-79.23822, 37.14361],\n          [-79.237972, 37.143817],\n          [-79.237711, 37.144013],\n          [-79.237424, 37.144206],\n          [-79.237139, 37.144378],\n          [-79.236846, 37.144536],\n          [-79.23672, 37.144599],\n          [-79.235366, 37.145185],\n          [-79.235031, 37.145327],\n          [-79.233118, 37.146139],\n          [-79.232943, 37.146214],\n          [-79.23213, 37.146559],\n          [-79.23159, 37.146789],\n          [-79.231268, 37.146943],\n          [-79.230971, 37.147103],\n          [-79.230723, 37.147248],\n          [-79.230589, 37.147333],\n          [-79.230303, 37.147527],\n          [-79.230067, 37.147704],\n          [-79.229831, 37.147902],\n          [-79.229608, 37.148108],\n          [-79.229398, 37.148324],\n          [-79.229192, 37.148559],\n          [-79.229002, 37.148802],\n          [-79.228823, 37.149065],\n          [-79.228683, 37.149299],\n          [-79.228557, 37.149537],\n          [-79.228436, 37.149807],\n          [-79.228332, 37.15008],\n          [-79.22824, 37.150371],\n          [-79.228165, 37.150679],\n          [-79.228144, 37.150787],\n          [-79.22795, 37.1522],\n          [-79.227939, 37.152282],\n          [-79.227922, 37.152405],\n          [-79.227831, 37.1531],\n          [-79.227768, 37.153577],\n          [-79.22775, 37.153704],\n          [-79.227707, 37.153951],\n          [-79.227614, 37.154338],\n          [-79.227519, 37.154642],\n          [-79.227394, 37.154981],\n          [-79.227259, 37.155289],\n          [-79.227113, 37.155579],\n          [-79.227008, 37.155764],\n          [-79.226979, 37.155814],\n          [-79.226931, 37.155892],\n          [-79.22673, 37.156196],\n          [-79.226531, 37.156466],\n          [-79.226359, 37.156679],\n          [-79.226091, 37.156981],\n          [-79.225836, 37.157239],\n          [-79.225577, 37.157477],\n          [-79.225307, 37.157704],\n          [-79.225033, 37.15791],\n          [-79.224838, 37.158043],\n          [-79.223223, 37.159106],\n          [-79.222625, 37.159494],\n          [-79.222577, 37.159525],\n          [-79.222526, 37.159559],\n          [-79.222269, 37.159725],\n          [-79.221758, 37.160065],\n          [-79.219427, 37.161585],\n          [-79.218294, 37.162324],\n          [-79.218211, 37.162378],\n          [-79.216923, 37.163217],\n          [-79.216426, 37.163539],\n          [-79.215909, 37.16389],\n          [-79.215531, 37.164171],\n          [-79.215221, 37.164425],\n          [-79.214936, 37.164678],\n          [-79.214674, 37.164929],\n          [-79.214292, 37.165324],\n          [-79.214244, 37.165374],\n          [-79.213081, 37.166582],\n          [-79.212642, 37.167038],\n          [-79.212368, 37.167324],\n          [-79.212048, 37.167658],\n          [-79.211768, 37.16795],\n          [-79.211486, 37.168245],\n          [-79.211416, 37.168318],\n          [-79.211008, 37.168744],\n          [-79.210963, 37.168791],\n          [-79.210689, 37.16908],\n          [-79.210304, 37.16953],\n          [-79.2101, 37.169782],\n          [-79.209923, 37.170006],\n          [-79.209526, 37.170538],\n          [-79.209343, 37.170798],\n          [-79.207037, 37.174039],\n          [-79.206764, 37.174435],\n          [-79.206634, 37.174641],\n          [-79.206469, 37.174929],\n          [-79.206273, 37.17532],\n          [-79.20615, 37.175603],\n          [-79.206073, 37.175802],\n          [-79.206026, 37.175929],\n          [-79.205916, 37.176273],\n          [-79.205845, 37.176539],\n          [-79.205757, 37.176917],\n          [-79.205696, 37.177164],\n          [-79.205658, 37.177349],\n          [-79.205603, 37.177589],\n          [-79.205562, 37.177759],\n          [-79.205539, 37.177863],\n          [-79.205487, 37.178091],\n          [-79.205427, 37.178344],\n          [-79.205364, 37.178607],\n          [-79.205297, 37.178889],\n          [-79.205253, 37.179068],\n          [-79.20519, 37.179332],\n          [-79.205122, 37.179618],\n          [-79.205055, 37.179895],\n          [-79.204997, 37.180138],\n          [-79.204614, 37.181773],\n          [-79.204588, 37.181883],\n          [-79.204488, 37.182314],\n          [-79.204319, 37.183043],\n          [-79.204265, 37.183268],\n          [-79.204123, 37.18388],\n          [-79.203924, 37.184747],\n          [-79.203855, 37.185167],\n          [-79.203781, 37.185725],\n          [-79.203767, 37.185869],\n          [-79.203714, 37.186727],\n          [-79.203688, 37.188358],\n          [-79.203665, 37.189574],\n          [-79.203624, 37.192626],\n          [-79.203627, 37.192665],\n          [-79.203588, 37.193792],\n          [-79.203572, 37.194229],\n          [-79.203568, 37.194309],\n          [-79.203559, 37.194539],\n          [-79.203553, 37.194676],\n          [-79.203543, 37.194919],\n          [-79.203531, 37.195199],\n          [-79.203502, 37.195859],\n          [-79.203483, 37.196276],\n          [-79.203468, 37.196579],\n          [-79.203458, 37.196792],\n          [-79.203433, 37.197322],\n          [-79.203422, 37.197563],\n          [-79.20341, 37.197824],\n          [-79.203397, 37.198095],\n          [-79.20339, 37.198254],\n          [-79.203379, 37.19847],\n          [-79.203358, 37.198936],\n          [-79.20334, 37.19935],\n          [-79.203304, 37.200071],\n          [-79.203262, 37.200536],\n          [-79.203244, 37.200686],\n          [-79.203162, 37.201241],\n          [-79.203073, 37.201722],\n          [-79.20306, 37.201793],\n          [-79.203026, 37.201977],\n          [-79.202836, 37.203003],\n          [-79.202752, 37.203459],\n          [-79.202563, 37.204478],\n          [-79.202452, 37.205079],\n          [-79.202395, 37.205385],\n          [-79.201856, 37.208299],\n          [-79.201805, 37.208574],\n          [-79.201702, 37.209126],\n          [-79.201673, 37.209268],\n          [-79.201619, 37.209479],\n          [-79.201573, 37.209638],\n          [-79.201505, 37.209836],\n          [-79.201407, 37.210085],\n          [-79.201284, 37.210341],\n          [-79.201114, 37.21064],\n          [-79.201026, 37.210776],\n          [-79.200882, 37.21098],\n          [-79.200649, 37.211282],\n          [-79.200396, 37.211554],\n          [-79.199727, 37.212167],\n          [-79.199637, 37.212249],\n          [-79.199553, 37.212325],\n          [-79.199391, 37.212473],\n          [-79.199159, 37.212684],\n          [-79.19865, 37.213144],\n          [-79.197756, 37.213946],\n          [-79.197588, 37.214097],\n          [-79.197252, 37.214415],\n          [-79.196922, 37.214731],\n          [-79.196487, 37.215166],\n          [-79.196055, 37.215596],\n          [-79.195714, 37.216042],\n          [-79.195395, 37.216449],\n          [-79.194175, 37.218086],\n          [-79.193942, 37.2184],\n          [-79.193714, 37.218705],\n          [-79.193339, 37.219208],\n          [-79.193103, 37.219523],\n          [-79.192804, 37.219924],\n          [-79.192465, 37.220384],\n          [-79.191972, 37.221056],\n          [-79.191665, 37.221486],\n          [-79.191271, 37.222039],\n          [-79.191066, 37.222328],\n          [-79.190837, 37.222648],\n          [-79.190786, 37.222724],\n          [-79.190591, 37.223024],\n          [-79.190561, 37.223069],\n          [-79.190114, 37.223762],\n          [-79.189976, 37.223994],\n          [-79.189786, 37.224314],\n          [-79.189538, 37.224731],\n          [-79.189441, 37.224896],\n          [-79.189231, 37.225287],\n          [-79.188873, 37.225949],\n          [-79.188647, 37.226369],\n          [-79.188578, 37.226497],\n          [-79.188422, 37.22682],\n          [-79.187747, 37.228226],\n          [-79.187638, 37.228454],\n          [-79.186752, 37.230317],\n          [-79.186236, 37.23142],\n          [-79.186183, 37.231531],\n          [-79.186143, 37.231633],\n          [-79.186012, 37.231905],\n          [-79.185971, 37.232009],\n          [-79.185901, 37.232204],\n          [-79.185821, 37.232467],\n          [-79.185783, 37.232629],\n          [-79.185746, 37.232787],\n          [-79.185712, 37.232989],\n          [-79.185564, 37.234115],\n          [-79.18554, 37.234342],\n          [-79.185535, 37.234388],\n          [-79.185527, 37.234464],\n          [-79.185489, 37.234824],\n          [-79.185459, 37.235133],\n          [-79.185442, 37.235447],\n          [-79.185444, 37.235802],\n          [-79.185467, 37.236157],\n          [-79.185494, 37.236478],\n          [-79.185509, 37.236629],\n          [-79.185568, 37.237037],\n          [-79.185613, 37.237268],\n          [-79.185642, 37.237403],\n          [-79.185719, 37.237706],\n          [-79.185791, 37.237965],\n          [-79.185811, 37.238037],\n          [-79.185899, 37.238345],\n          [-79.185952, 37.238527],\n          [-79.18597, 37.23859],\n          [-79.186042, 37.238834],\n          [-79.186525, 37.240494],\n          [-79.186638, 37.240882],\n          [-79.186786, 37.241392],\n          [-79.186995, 37.242108],\n          [-79.187061, 37.242336],\n          [-79.187075, 37.242384],\n          [-79.187298, 37.243149],\n          [-79.187378, 37.243422],\n          [-79.187527, 37.243936],\n          [-79.187774, 37.244774],\n          [-79.187853, 37.245008],\n          [-79.187949, 37.245331],\n          [-79.187975, 37.245426],\n          [-79.18809, 37.245933],\n          [-79.188158, 37.246339],\n          [-79.188193, 37.246639],\n          [-79.188214, 37.246935],\n          [-79.188219, 37.247189],\n          [-79.188219, 37.247284],\n          [-79.188204, 37.247624],\n          [-79.188173, 37.24795],\n          [-79.188121, 37.248287],\n          [-79.188078, 37.248502],\n          [-79.188012, 37.248777],\n          [-79.187964, 37.248948],\n          [-79.18752, 37.250322],\n          [-79.187502, 37.250377],\n          [-79.187461, 37.250489],\n          [-79.187101, 37.251604],\n          [-79.186977, 37.251986],\n          [-79.186803, 37.252487],\n          [-79.186647, 37.252862],\n          [-79.186473, 37.253233],\n          [-79.1864, 37.253375],\n          [-79.186369, 37.253435],\n          [-79.186196, 37.253727],\n          [-79.186096, 37.253883],\n          [-79.185846, 37.254253],\n          [-79.185619, 37.254587],\n          [-79.184816, 37.255765],\n          [-79.184332, 37.256471],\n          [-79.184251, 37.256583],\n          [-79.183919, 37.257073],\n          [-79.183282, 37.258009],\n          [-79.183273, 37.258023],\n          [-79.182658, 37.258928],\n          [-79.182428, 37.259266],\n          [-79.182236, 37.259548],\n          [-79.182189, 37.259617],\n          [-79.181677, 37.260371],\n          [-79.180889, 37.261527],\n          [-79.180329, 37.262346],\n          [-79.179966, 37.262877],\n          [-79.178561, 37.264935],\n          [-79.177834, 37.265998],\n          [-79.17762, 37.266312],\n          [-79.177577, 37.266375],\n          [-79.177344, 37.266717],\n          [-79.177268, 37.266828],\n          [-79.175738, 37.269066],\n          [-79.175293, 37.269718],\n          [-79.175059, 37.270062],\n          [-79.175024, 37.270113],\n          [-79.174746, 37.27052],\n          [-79.174499, 37.270885],\n          [-79.174225, 37.271286],\n          [-79.17318, 37.27282],\n          [-79.172596, 37.273676],\n          [-79.172062, 37.274457],\n          [-79.17205, 37.274476],\n          [-79.171892, 37.274707],\n          [-79.171746, 37.274919],\n          [-79.170612, 37.276581],\n          [-79.170091, 37.277344],\n          [-79.170074, 37.277368],\n          [-79.169014, 37.27887],\n          [-79.168768, 37.279279],\n          [-79.168446, 37.279751],\n          [-79.168095, 37.28026],\n          [-79.167791, 37.280704],\n          [-79.167004, 37.281854],\n          [-79.166839, 37.282126],\n          [-79.166686, 37.282417],\n          [-79.166553, 37.282715],\n          [-79.166455, 37.282978],\n          [-79.166365, 37.283271],\n          [-79.166331, 37.283406],\n          [-79.166277, 37.283662],\n          [-79.166236, 37.283934],\n          [-79.166211, 37.284233],\n          [-79.166208, 37.284331],\n          [-79.16621, 37.284606],\n          [-79.166232, 37.284894],\n          [-79.166273, 37.28518],\n          [-79.166341, 37.285491],\n          [-79.166394, 37.28568],\n          [-79.166419, 37.28576],\n          [-79.16653, 37.286061],\n          [-79.16656, 37.286133],\n          [-79.166601, 37.286228],\n          [-79.167073, 37.287187],\n          [-79.167342, 37.287727],\n          [-79.167647, 37.288335],\n          [-79.167961, 37.288961],\n          [-79.168213, 37.289466],\n          [-79.168669, 37.290363],\n          [-79.169252, 37.291516],\n          [-79.169707, 37.292425],\n          [-79.170019, 37.293049],\n          [-79.170164, 37.293337],\n          [-79.170762, 37.294525],\n          [-79.171017, 37.295032],\n          [-79.171197, 37.29539],\n          [-79.171228, 37.295451],\n          [-79.171707, 37.296402],\n          [-79.171854, 37.296694],\n          [-79.172057, 37.297099],\n          [-79.172329, 37.297639],\n          [-79.172756, 37.298485],\n          [-79.172921, 37.29877],\n          [-79.173118, 37.299071],\n          [-79.173326, 37.299351],\n          [-79.1734, 37.299443],\n          [-79.173711, 37.299824],\n          [-79.174643, 37.300928],\n          [-79.177789, 37.304649],\n          [-79.17841, 37.305383],\n          [-79.179563, 37.306751],\n          [-79.18128, 37.308787],\n          [-79.181492, 37.309036],\n          [-79.181949, 37.309573],\n          [-79.182599, 37.310336],\n          [-79.183198, 37.311046],\n          [-79.183775, 37.311729],\n          [-79.183964, 37.311947],\n          [-79.18428, 37.312314],\n          [-79.18536, 37.313557],\n          [-79.18553, 37.313753],\n          [-79.18588, 37.314159],\n          [-79.186286, 37.314624],\n          [-79.186592, 37.314975],\n          [-79.186893, 37.31532],\n          [-79.187155, 37.315623],\n          [-79.187287, 37.315796],\n          [-79.187433, 37.315958],\n          [-79.187603, 37.316193],\n          [-79.187705, 37.316348],\n          [-79.187781, 37.316469],\n          [-79.187895, 37.316666],\n          [-79.188063, 37.316995],\n          [-79.188211, 37.31734],\n          [-79.188267, 37.317488],\n          [-79.188574, 37.31828],\n          [-79.18873, 37.318682],\n          [-79.188773, 37.318793],\n          [-79.188818, 37.318907],\n          [-79.188983, 37.319332],\n          [-79.189167, 37.319817],\n          [-79.18919, 37.319881],\n          [-79.189276, 37.320122],\n          [-79.189293, 37.320183],\n          [-79.189372, 37.320484],\n          [-79.189407, 37.320635],\n          [-79.189445, 37.320825],\n          [-79.189477, 37.321015],\n          [-79.189492, 37.321115],\n          [-79.189533, 37.321458],\n          [-79.189536, 37.321492],\n          [-79.189586, 37.322119],\n          [-79.189602, 37.322319],\n          [-79.189637, 37.32275],\n          [-79.189647, 37.322876],\n          [-79.189704, 37.323523],\n          [-79.189737, 37.323892],\n          [-79.189747, 37.323997],\n          [-79.189761, 37.324147],\n          [-79.189781, 37.324375],\n          [-79.189798, 37.324545],\n          [-79.189823, 37.324722],\n          [-79.189861, 37.324935],\n          [-79.189896, 37.325095],\n          [-79.189922, 37.3252],\n          [-79.190034, 37.325593],\n          [-79.190115, 37.325884],\n          [-79.190279, 37.326471],\n          [-79.190558, 37.327468],\n          [-79.190626, 37.327737],\n          [-79.190656, 37.327855],\n          [-79.190719, 37.328102],\n          [-79.190893, 37.328783],\n          [-79.19093, 37.328914],\n          [-79.19114, 37.329665],\n          [-79.191197, 37.329849],\n          [-79.191289, 37.330174],\n          [-79.191411, 37.330604],\n          [-79.191427, 37.330662],\n          [-79.191549, 37.331144],\n          [-79.191612, 37.331407],\n          [-79.191674, 37.33166],\n          [-79.191713, 37.331945],\n          [-79.191731, 37.332216],\n          [-79.191727, 37.3324],\n          [-79.191718, 37.332618],\n          [-79.191688, 37.333114],\n          [-79.191671, 37.333265],\n          [-79.191652, 37.333506],\n          [-79.191625, 37.33369],\n          [-79.191591, 37.333978],\n          [-79.191586, 37.334109],\n          [-79.191605, 37.334336],\n          [-79.19161, 37.334672],\n          [-79.191612, 37.334771],\n          [-79.191619, 37.335165],\n          [-79.191615, 37.335425],\n          [-79.191612, 37.335464],\n          [-79.191591, 37.335798],\n          [-79.191573, 37.33597],\n          [-79.19153, 37.336198],\n          [-79.191511, 37.3363],\n          [-79.191476, 37.336481],\n          [-79.191396, 37.336901],\n          [-79.191254, 37.33724],\n          [-79.191108, 37.337564],\n          [-79.190891, 37.337852],\n          [-79.190707, 37.338004],\n          [-79.190446, 37.338136],\n          [-79.190159, 37.338232],\n          [-79.189809, 37.338303],\n          [-79.189504, 37.338343],\n          [-79.189039, 37.338414],\n          [-79.188663, 37.33847],\n          [-79.188351, 37.338526],\n          [-79.18802, 37.338571],\n          [-79.18767, 37.338617],\n          [-79.187276, 37.338677],\n          [-79.18683, 37.338758],\n          [-79.186448, 37.338854],\n          [-79.186232, 37.338986],\n          [-79.186034, 37.339158],\n          [-79.185913, 37.339381],\n          [-79.185862, 37.339654],\n          [-79.185792, 37.339958],\n          [-79.185735, 37.340246],\n          [-79.185608, 37.340565],\n          [-79.185474, 37.340849],\n          [-79.185264, 37.341152],\n          [-79.185009, 37.341421],\n          [-79.184748, 37.341658],\n          [-79.184399, 37.341989],\n          [-79.184093, 37.342254],\n          [-79.183658, 37.342682],\n          [-79.18294, 37.343536],\n          [-79.182113, 37.344505],\n          [-79.181077, 37.345699],\n          [-79.180004, 37.346871],\n          [-79.178729, 37.348196],\n          [-79.177389, 37.349407],\n          [-79.177129, 37.349621],\n          [-79.176626, 37.350036],\n          [-79.173129, 37.353092],\n          [-79.169752, 37.356318],\n          [-79.169186, 37.356859],\n          [-79.166439, 37.359647],\n          [-79.165165, 37.360856],\n          [-79.164528, 37.361444],\n          [-79.163946, 37.361878],\n          [-79.162943, 37.362614],\n          [-79.161891, 37.363349],\n          [-79.159885, 37.364693],\n          [-79.158866, 37.365389],\n          [-79.157915, 37.36609],\n          [-79.156262, 37.367299],\n          [-79.153378, 37.36939],\n          [-79.1513, 37.370777],\n          [-79.148798, 37.372337],\n          [-79.146813, 37.373529],\n          [-79.146135, 37.37394],\n          [-79.145298, 37.374385],\n          [-79.144399, 37.374808],\n          [-79.143032, 37.375351],\n          [-79.142887, 37.375396],\n          [-79.141407, 37.375861],\n          [-79.13952, 37.376309],\n          [-79.137442, 37.376753],\n          [-79.136385, 37.376976],\n          [-79.135221, 37.37722],\n          [-79.134065, 37.377456],\n          [-79.132756, 37.377733],\n          [-79.131505, 37.377997],\n          [-79.130701, 37.378165],\n          [-79.129655, 37.378385],\n          [-79.128812, 37.378561],\n          [-79.127809, 37.378776],\n          [-79.127166, 37.378891],\n          [-79.124907, 37.379433],\n          [-79.122351, 37.380007],\n          [-79.119924, 37.380555],\n          [-79.118369, 37.380958],\n          [-79.116892, 37.381492],\n          [-79.11429, 37.382508],\n          [-79.111589, 37.383564],\n          [-79.110432, 37.384015],\n          [-79.108723, 37.384663],\n          [-79.107004, 37.385341],\n          [-79.10533, 37.38597],\n          [-79.10529, 37.385969],\n          [-79.104874, 37.386095],\n          [-79.104406, 37.386191],\n          [-79.103958, 37.38624],\n          [-79.103328, 37.386271],\n          [-79.101681, 37.386155],\n          [-79.101144, 37.386117],\n          [-79.100418, 37.386038],\n          [-79.097991, 37.385843],\n          [-79.09636, 37.385744],\n          [-79.095982, 37.385658],\n          [-79.095845, 37.385614],\n          [-79.09571, 37.385555],\n          [-79.095567, 37.38548],\n          [-79.095427, 37.38539],\n          [-79.095308, 37.385296],\n          [-79.09517, 37.385161],\n          [-79.09509, 37.385054],\n          [-79.094998, 37.384905],\n          [-79.094916, 37.384737],\n          [-79.094844, 37.384528],\n          [-79.094656, 37.383845],\n          [-79.094531, 37.38345],\n          [-79.094325, 37.383054],\n          [-79.094038, 37.38276],\n          [-79.093621, 37.382467],\n          [-79.093187, 37.382294],\n          [-79.092689, 37.382201],\n          [-79.092284, 37.382201],\n          [-79.091903, 37.382257],\n          [-79.091551, 37.382364],\n          [-79.091187, 37.382541],\n          [-79.090959, 37.382723],\n          [-79.090789, 37.382882],\n          [-79.090589, 37.383115],\n          [-79.090443, 37.383376],\n          [-79.090284, 37.383744],\n          [-79.090225, 37.384],\n          [-79.090179, 37.384541],\n          [-79.090062, 37.385779],\n          [-79.089925, 37.386644],\n          [-79.089849, 37.387226],\n          [-79.089779, 37.387541],\n          [-79.089689, 37.387836],\n          [-79.0895, 37.38838],\n          [-79.089436, 37.388633],\n          [-79.089405, 37.388841],\n          [-79.089289, 37.389685],\n          [-79.089161, 37.39093],\n          [-79.089008, 37.392008],\n          [-79.08881, 37.394069],\n          [-79.088768, 37.394579],\n          [-79.088645, 37.395885],\n          [-79.088477, 37.397207],\n          [-79.087956, 37.401181],\n          [-79.087825, 37.401823],\n          [-79.087665, 37.402308],\n          [-79.087554, 37.402629],\n          [-79.08736, 37.403142],\n          [-79.087142, 37.403562],\n          [-79.086923, 37.403937],\n          [-79.086762, 37.404195],\n          [-79.086439, 37.404708],\n          [-79.086251, 37.405002],\n          [-79.085982, 37.405393],\n          [-79.085647, 37.405896],\n          [-79.085037, 37.406824],\n          [-79.084691, 37.407346],\n          [-79.084239, 37.407998],\n          [-79.084081, 37.408208],\n          [-79.083969, 37.408376],\n          [-79.083852, 37.408534],\n          [-79.083752, 37.408705],\n          [-79.083641, 37.408893],\n          [-79.08253, 37.41059],\n          [-79.082107, 37.41155],\n          [-79.081937, 37.412163],\n          [-79.081833, 37.412538],\n          [-79.081757, 37.413176],\n          [-79.08171, 37.413903],\n          [-79.081751, 37.414774],\n          [-79.081781, 37.415758],\n          [-79.081777, 37.417393],\n          [-79.081646, 37.41901],\n          [-79.081485, 37.420256],\n          [-79.081292, 37.421219],\n          [-79.081057, 37.422257],\n          [-79.080513, 37.424117],\n          [-79.07951, 37.427155],\n          [-79.078061, 37.431195],\n          [-79.077269, 37.433524],\n          [-79.076993, 37.434391],\n          [-79.076647, 37.435495],\n          [-79.076395, 37.436608],\n          [-79.076304, 37.437254],\n          [-79.076229, 37.438019],\n          [-79.076213, 37.439312],\n          [-79.076213, 37.439413],\n          [-79.076155, 37.442774],\n          [-79.07614, 37.443179],\n          [-79.076116, 37.443841],\n          [-79.076046, 37.446058],\n          [-79.075976, 37.449173],\n          [-79.076002, 37.451689],\n          [-79.076065, 37.4523],\n          [-79.076262, 37.453],\n          [-79.076579, 37.453683],\n          [-79.076982, 37.454312],\n          [-79.077536, 37.45501],\n          [-79.079739, 37.457229],\n          [-79.080689, 37.458217],\n          [-79.081531, 37.459252],\n          [-79.082085, 37.460038],\n          [-79.082441, 37.460738],\n          [-79.082708, 37.461304],\n          [-79.082968, 37.461981],\n          [-79.083137, 37.462694],\n          [-79.083265, 37.463513],\n          [-79.083293, 37.464338],\n          [-79.083287, 37.464745],\n          [-79.083277, 37.465166],\n          [-79.083236, 37.465743],\n          [-79.083136, 37.466259],\n          [-79.082678, 37.468029],\n          [-79.082438, 37.469156],\n          [-79.08215, 37.470371],\n          [-79.081963, 37.471033],\n          [-79.081827, 37.471415],\n          [-79.081408, 37.472342],\n          [-79.081005, 37.47309],\n          [-79.080296, 37.474045],\n          [-79.079641, 37.474751],\n          [-79.078249, 37.476094],\n          [-79.077451, 37.477058],\n          [-79.076776, 37.477863],\n          [-79.076213, 37.478711],\n          [-79.075638, 37.479763],\n          [-79.075274, 37.480624],\n          [-79.074869, 37.481821],\n          [-79.074675, 37.482594],\n          [-79.074634, 37.482892],\n          [-79.074593, 37.483204],\n          [-79.07457, 37.483627],\n          [-79.074448, 37.484732],\n          [-79.074331, 37.485753],\n          [-79.074167, 37.486518],\n          [-79.073888, 37.487326],\n          [-79.073467, 37.488074],\n          [-79.07305, 37.488846],\n          [-79.072616, 37.489619],\n          [-79.072018, 37.490699],\n          [-79.07163, 37.49136],\n          [-79.070791, 37.492896],\n          [-79.070146, 37.494186],\n          [-79.06953, 37.495438],\n          [-79.068703, 37.497026],\n          [-79.067817, 37.498799],\n          [-79.067177, 37.500098],\n          [-79.066497, 37.501471],\n          [-79.066168, 37.502341],\n          [-79.065974, 37.503063],\n          [-79.065895, 37.503746],\n          [-79.065857, 37.504329],\n          [-79.065851, 37.505804],\n          [-79.065851, 37.506847],\n          [-79.065828, 37.508187],\n          [-79.065831, 37.509824],\n          [-79.0658, 37.510657],\n          [-79.065769, 37.511273],\n          [-79.065628, 37.51191],\n          [-79.065455, 37.512506],\n          [-79.065165, 37.513111],\n          [-79.064807, 37.513823],\n          [-79.064426, 37.514512],\n          [-79.063986, 37.515424],\n          [-79.063804, 37.515903],\n          [-79.063545, 37.516788],\n          [-79.063328, 37.51796],\n          [-79.063264, 37.519296],\n          [-79.063311, 37.520208],\n          [-79.063487, 37.521209],\n          [-79.063645, 37.522214],\n          [-79.063845, 37.523275],\n          [-79.06425, 37.525364],\n          [-79.064871, 37.528602],\n          [-79.065376, 37.531264],\n          [-79.066057, 37.534819],\n          [-79.066725, 37.538252],\n          [-79.0674, 37.541904],\n          [-79.06794, 37.544546],\n          [-79.068021, 37.545221],\n          [-79.068093, 37.545891],\n          [-79.068075, 37.546616],\n          [-79.067977, 37.547323],\n          [-79.067805, 37.547989],\n          [-79.06729, 37.549617],\n          [-79.066508, 37.552189],\n          [-79.066203, 37.55312],\n          [-79.065916, 37.554199],\n          [-79.06571, 37.554864],\n          [-79.065358, 37.555901],\n          [-79.06462, 37.558162],\n          [-79.064236, 37.559374],\n          [-79.064086, 37.559848],\n          [-79.063835, 37.560896],\n          [-79.063609, 37.561383],\n          [-79.063256, 37.561986],\n          [-79.062896, 37.562503],\n          [-79.062134, 37.563345],\n          [-79.061625, 37.563753],\n          [-79.06094, 37.564213],\n          [-79.058641, 37.565583],\n          [-79.05758, 37.566208],\n          [-79.056639, 37.566768],\n          [-79.055935, 37.567192],\n          [-79.055742, 37.567302],\n          [-79.055553, 37.567416],\n          [-79.055246, 37.567615],\n          [-79.054927, 37.567838],\n          [-79.054748, 37.567977],\n          [-79.054525, 37.568169],\n          [-79.05429, 37.568391],\n          [-79.054239, 37.568442],\n          [-79.054034, 37.568657],\n          [-79.053873, 37.56885],\n          [-79.053657, 37.569143],\n          [-79.053524, 37.569347],\n          [-79.053368, 37.569618],\n          [-79.053228, 37.569894],\n          [-79.053172, 37.570026],\n          [-79.053043, 37.570358],\n          [-79.05286, 37.57095],\n          [-79.052677, 37.571527],\n          [-79.052485, 37.572133],\n          [-79.052132, 37.573261],\n          [-79.051632, 37.57486],\n          [-79.051348, 37.57574],\n          [-79.051123, 37.576286],\n          [-79.051087, 37.576361],\n          [-79.050788, 37.576916],\n          [-79.050662, 37.577116],\n          [-79.050472, 37.577395],\n          [-79.050278, 37.577652],\n          [-79.050057, 37.577924],\n          [-79.049759, 37.578262],\n          [-79.049412, 37.578608],\n          [-79.049047, 37.578931],\n          [-79.047001, 37.580602],\n          [-79.046515, 37.580994],\n          [-79.046166, 37.58126],\n          [-79.045909, 37.581455],\n          [-79.04561, 37.58167],\n          [-79.045264, 37.581887],\n          [-79.044961, 37.582077],\n          [-79.044149, 37.582573],\n          [-79.04353, 37.582927],\n          [-79.04291, 37.58327],\n          [-79.042129, 37.58371],\n          [-79.041873, 37.583864],\n          [-79.041806, 37.58391],\n          [-79.041621, 37.584017],\n          [-79.041414, 37.584155],\n          [-79.041178, 37.58431],\n          [-79.040635, 37.584689],\n          [-79.039894, 37.585255],\n          [-79.039608, 37.585491],\n          [-79.03912, 37.585904],\n          [-79.038845, 37.586155],\n          [-79.038474, 37.586513],\n          [-79.03781, 37.587198],\n          [-79.037358, 37.587719],\n          [-79.037086, 37.588056],\n          [-79.036877, 37.588331],\n          [-79.036498, 37.588836],\n          [-79.036258, 37.589205],\n          [-79.035926, 37.589739],\n          [-79.034645, 37.591992],\n          [-79.034482, 37.592286],\n          [-79.034097, 37.592957],\n          [-79.033913, 37.593255],\n          [-79.033669, 37.593669],\n          [-79.033006, 37.594819],\n          [-79.032654, 37.595452],\n          [-79.032044, 37.596522],\n          [-79.031678, 37.597159],\n          [-79.031353, 37.597735],\n          [-79.03004, 37.600074],\n          [-79.029644, 37.600763],\n          [-79.028963, 37.601951],\n          [-79.028685, 37.602397],\n          [-79.02851, 37.602662],\n          [-79.028221, 37.603043],\n          [-79.027978, 37.603341],\n          [-79.027692, 37.60368],\n          [-79.027548, 37.60383],\n          [-79.027306, 37.604072],\n          [-79.027105, 37.604269],\n          [-79.02697, 37.604392],\n          [-79.026652, 37.60468],\n          [-79.026083, 37.605207],\n          [-79.026036, 37.60525],\n          [-79.025989, 37.605294],\n          [-79.025872, 37.605402],\n          [-79.02555, 37.605685],\n          [-79.025303, 37.605893],\n          [-79.025239, 37.605951],\n          [-79.025075, 37.606102],\n          [-79.024795, 37.606358],\n          [-79.024408, 37.606702],\n          [-79.024072, 37.607013],\n          [-79.024053, 37.607031],\n          [-79.023787, 37.607264],\n          [-79.023498, 37.607516],\n          [-79.023027, 37.607911],\n          [-79.022811, 37.60807],\n          [-79.022583, 37.608218],\n          [-79.022393, 37.608329],\n          [-79.022103, 37.608478],\n          [-79.021864, 37.608585],\n          [-79.021424, 37.608752],\n          [-79.020855, 37.608965],\n          [-79.020271, 37.609195],\n          [-79.020171, 37.609236],\n          [-79.019921, 37.609348],\n          [-79.019569, 37.609526],\n          [-79.019341, 37.609661],\n          [-79.019134, 37.609801],\n          [-79.018938, 37.609951],\n          [-79.018736, 37.61013],\n          [-79.018557, 37.610318],\n          [-79.018408, 37.6105],\n          [-79.018273, 37.610689],\n          [-79.018177, 37.610845],\n          [-79.018077, 37.611005],\n          [-79.017942, 37.61127],\n          [-79.01775, 37.611733],\n          [-79.017583, 37.612195],\n          [-79.017453, 37.612536],\n          [-79.01736, 37.612779],\n          [-79.017077, 37.613518],\n          [-79.016316, 37.615651],\n          [-79.016211, 37.615921],\n          [-79.015957, 37.616661],\n          [-79.015442, 37.618041],\n          [-79.015171, 37.618767],\n          [-79.015044, 37.619085],\n          [-79.014896, 37.619401],\n          [-79.014725, 37.619699],\n          [-79.014609, 37.619891],\n          [-79.014507, 37.620046],\n          [-79.014326, 37.620291],\n          [-79.014076, 37.620611],\n          [-79.013882, 37.620808],\n          [-79.013583, 37.621079],\n          [-79.012998, 37.621504],\n          [-79.01238, 37.621893],\n          [-79.010646, 37.622959],\n          [-79.01003, 37.623323],\n          [-79.009112, 37.623886],\n          [-79.007841, 37.62468],\n          [-79.007669, 37.624786],\n          [-79.00613, 37.625753],\n          [-79.00574, 37.625992],\n          [-79.004933, 37.626484],\n          [-79.004251, 37.626912],\n          [-79.004139, 37.626981],\n          [-79.003154, 37.627592],\n          [-79.001641, 37.628516],\n          [-79.001111, 37.628835],\n          [-79.00072, 37.62907],\n          [-79.000623, 37.62914],\n          [-79.000217, 37.629394],\n          [-78.998912, 37.630202],\n          [-78.998196, 37.630645],\n          [-78.997598, 37.631025],\n          [-78.997526, 37.631071],\n          [-78.997241, 37.631274],\n          [-78.996875, 37.631534],\n          [-78.996217, 37.63205],\n          [-78.995656, 37.632525],\n          [-78.995017, 37.633129],\n          [-78.994464, 37.633668],\n          [-78.993794, 37.634338],\n          [-78.992582, 37.635539],\n          [-78.99241, 37.635715],\n          [-78.992112, 37.636],\n          [-78.991971, 37.636127],\n          [-78.991598, 37.636454],\n          [-78.991319, 37.636676],\n          [-78.991111, 37.636827],\n          [-78.990724, 37.637089],\n          [-78.990344, 37.637324],\n          [-78.989967, 37.637537],\n          [-78.989578, 37.637737],\n          [-78.988855, 37.638052],\n          [-78.98807, 37.638382],\n          [-78.986736, 37.63892],\n          [-78.986454, 37.639034],\n          [-78.985803, 37.639316],\n          [-78.984897, 37.639687],\n          [-78.98388, 37.640096],\n          [-78.983117, 37.640414],\n          [-78.982726, 37.640573],\n          [-78.981774, 37.640959],\n          [-78.979687, 37.64182],\n          [-78.978231, 37.642417],\n          [-78.977005, 37.64291],\n          [-78.97646, 37.643116],\n          [-78.975777, 37.643333],\n          [-78.975711, 37.643354],\n          [-78.97542, 37.643425],\n          [-78.974834, 37.643551],\n          [-78.974604, 37.64359],\n          [-78.974067, 37.643681],\n          [-78.973393, 37.643752],\n          [-78.972559, 37.643813],\n          [-78.972242, 37.643839],\n          [-78.970006, 37.64399],\n          [-78.96903, 37.64406],\n          [-78.968589, 37.644095],\n          [-78.968224, 37.644136],\n          [-78.967889, 37.644182],\n          [-78.967664, 37.644226],\n          [-78.967387, 37.644293],\n          [-78.967224, 37.644341],\n          [-78.966957, 37.64443],\n          [-78.966688, 37.644536],\n          [-78.966474, 37.644631],\n          [-78.966164, 37.644789],\n          [-78.965983, 37.644902],\n          [-78.965692, 37.645098],\n          [-78.965428, 37.645294],\n          [-78.965238, 37.645456],\n          [-78.965063, 37.645628],\n          [-78.964898, 37.645816],\n          [-78.964762, 37.645992],\n          [-78.964605, 37.646219],\n          [-78.964465, 37.646453],\n          [-78.964354, 37.646672],\n          [-78.96426, 37.646896],\n          [-78.964184, 37.647124],\n          [-78.964105, 37.647472],\n          [-78.964045, 37.647822],\n          [-78.963795, 37.650137],\n          [-78.963771, 37.650446],\n          [-78.963726, 37.650831],\n          [-78.963699, 37.651104],\n          [-78.963637, 37.651545],\n          [-78.963559, 37.651968],\n          [-78.963475, 37.652244],\n          [-78.963403, 37.652439],\n          [-78.963343, 37.65259],\n          [-78.963259, 37.652771],\n          [-78.963211, 37.652855],\n          [-78.963159, 37.652948],\n          [-78.963044, 37.653119],\n          [-78.962876, 37.65334],\n          [-78.962692, 37.653554],\n          [-78.961989, 37.654258],\n          [-78.961507, 37.654728],\n          [-78.961039, 37.655181],\n          [-78.960337, 37.655875],\n          [-78.96023, 37.655972],\n          [-78.960126, 37.656071],\n          [-78.959777, 37.656385],\n          [-78.959596, 37.656559],\n          [-78.959428, 37.656733],\n          [-78.95894, 37.657212],\n          [-78.958347, 37.65781],\n          [-78.957955, 37.658265],\n          [-78.957902, 37.65834],\n          [-78.957703, 37.658582],\n          [-78.956957, 37.659613],\n          [-78.956, 37.660952],\n          [-78.95555, 37.661601],\n          [-78.95521, 37.662149],\n          [-78.955078, 37.662367],\n          [-78.954742, 37.662988],\n          [-78.954584, 37.663297],\n          [-78.954305, 37.663917],\n          [-78.954148, 37.6643],\n          [-78.953981, 37.664751],\n          [-78.953842, 37.665162],\n          [-78.953791, 37.665348],\n          [-78.953693, 37.665702],\n          [-78.953658, 37.665836],\n          [-78.953519, 37.666441],\n          [-78.953449, 37.666806],\n          [-78.953407, 37.667104],\n          [-78.953324, 37.667763],\n          [-78.953292, 37.668183],\n          [-78.953221, 37.669156],\n          [-78.953153, 37.670098],\n          [-78.953142, 37.670264],\n          [-78.953141, 37.6704],\n          [-78.953072, 37.671177],\n          [-78.95304, 37.671615],\n          [-78.952995, 37.672174],\n          [-78.952947, 37.672942],\n          [-78.95292, 37.673225],\n          [-78.952878, 37.673819],\n          [-78.952829, 37.674339],\n          [-78.952797, 37.674686],\n          [-78.952784, 37.674804],\n          [-78.952747, 37.675024],\n          [-78.952692, 37.675301],\n          [-78.952624, 37.675578],\n          [-78.952561, 37.675784],\n          [-78.952486, 37.675985],\n          [-78.952442, 37.676122],\n          [-78.952386, 37.676257],\n          [-78.95232, 37.676433],\n          [-78.952115, 37.676852],\n          [-78.952045, 37.676981],\n          [-78.951895, 37.677259],\n          [-78.951765, 37.677478],\n          [-78.951015, 37.678688],\n          [-78.950642, 37.679294],\n          [-78.950106, 37.680167],\n          [-78.949932, 37.680439],\n          [-78.949555, 37.681057],\n          [-78.948514, 37.682749],\n          [-78.948346, 37.683014],\n          [-78.94819, 37.68327],\n          [-78.947933, 37.683687],\n          [-78.947735, 37.683997],\n          [-78.946949, 37.685284],\n          [-78.946763, 37.685577],\n          [-78.946171, 37.686544],\n          [-78.946077, 37.686718],\n          [-78.945972, 37.686928],\n          [-78.945848, 37.687201],\n          [-78.945794, 37.687349],\n          [-78.945689, 37.687661],\n          [-78.945632, 37.687901],\n          [-78.945568, 37.688266],\n          [-78.945541, 37.688542],\n          [-78.945537, 37.688659],\n          [-78.945545, 37.689126],\n          [-78.945579, 37.689434],\n          [-78.945664, 37.689907],\n          [-78.945683, 37.68999],\n          [-78.945776, 37.690456],\n          [-78.945835, 37.69071],\n          [-78.945961, 37.691323],\n          [-78.946182, 37.69241],\n          [-78.946237, 37.692788],\n          [-78.946274, 37.693085],\n          [-78.946296, 37.693491],\n          [-78.946303, 37.694022],\n          [-78.946301, 37.694057],\n          [-78.946287, 37.694387],\n          [-78.946261, 37.694709],\n          [-78.946249, 37.694805],\n          [-78.946182, 37.695293],\n          [-78.946055, 37.695876],\n          [-78.945864, 37.696567],\n          [-78.945405, 37.698162],\n          [-78.945298, 37.698548],\n          [-78.944826, 37.700186],\n          [-78.944719, 37.700501],\n          [-78.94458, 37.700835],\n          [-78.944457, 37.701074],\n          [-78.944324, 37.701307],\n          [-78.944135, 37.701595],\n          [-78.944026, 37.701738],\n          [-78.943778, 37.70202],\n          [-78.943504, 37.702305],\n          [-78.943214, 37.702564],\n          [-78.94302, 37.702719],\n          [-78.942935, 37.702779],\n          [-78.942809, 37.702868],\n          [-78.942485, 37.703077],\n          [-78.942218, 37.703232],\n          [-78.9405, 37.704132],\n          [-78.940455, 37.704155],\n          [-78.940006, 37.704381],\n          [-78.938227, 37.705302],\n          [-78.93698, 37.705948],\n          [-78.93647, 37.706225],\n          [-78.93488, 37.707122],\n          [-78.934646, 37.707256],\n          [-78.93388, 37.707679],\n          [-78.933448, 37.707924],\n          [-78.932774, 37.708305],\n          [-78.931107, 37.709235],\n          [-78.929365, 37.710215],\n          [-78.928987, 37.710423],\n          [-78.928188, 37.710873],\n          [-78.927848, 37.711058],\n          [-78.927739, 37.711117],\n          [-78.927286, 37.71134],\n          [-78.927035, 37.711449],\n          [-78.926705, 37.711572],\n          [-78.926357, 37.711684],\n          [-78.926015, 37.711773],\n          [-78.925764, 37.711831],\n          [-78.925742, 37.711836],\n          [-78.925395, 37.711899],\n          [-78.925098, 37.711943],\n          [-78.92463, 37.712006],\n          [-78.924358, 37.71204],\n          [-78.9241, 37.712072],\n          [-78.923317, 37.712168],\n          [-78.922673, 37.712257],\n          [-78.921644, 37.712386],\n          [-78.920771, 37.712503],\n          [-78.91879, 37.712755],\n          [-78.917763, 37.712894],\n          [-78.916758, 37.713029],\n          [-78.916316, 37.713107],\n          [-78.915891, 37.713204],\n          [-78.915614, 37.71328],\n          [-78.915324, 37.713372],\n          [-78.915274, 37.713388],\n          [-78.914912, 37.71352],\n          [-78.91455, 37.71367],\n          [-78.914179, 37.713842],\n          [-78.913675, 37.714085],\n          [-78.912967, 37.714415],\n          [-78.910226, 37.715714],\n          [-78.90939, 37.716116],\n          [-78.908844, 37.716378],\n          [-78.908565, 37.716525],\n          [-78.908344, 37.716654],\n          [-78.908223, 37.716733],\n          [-78.907898, 37.716972],\n          [-78.907709, 37.71712],\n          [-78.907284, 37.717479],\n          [-78.905705, 37.718784],\n          [-78.905314, 37.719084],\n          [-78.90491, 37.719372],\n          [-78.904525, 37.719604],\n          [-78.904033, 37.719882],\n          [-78.903337, 37.720265],\n          [-78.902528, 37.720722],\n          [-78.902455, 37.720766],\n          [-78.902055, 37.720998],\n          [-78.901704, 37.721237],\n          [-78.901372, 37.721492],\n          [-78.901207, 37.721632],\n          [-78.901102, 37.721732],\n          [-78.90093, 37.721897],\n          [-78.900791, 37.722043],\n          [-78.900736, 37.722103],\n          [-78.900601, 37.722261],\n          [-78.900394, 37.722523],\n          [-78.900222, 37.722764],\n          [-78.900079, 37.722992],\n          [-78.900004, 37.723131],\n          [-78.899716, 37.723665],\n          [-78.899467, 37.724145],\n          [-78.899406, 37.724274],\n          [-78.89922, 37.72461],\n          [-78.899008, 37.725016],\n          [-78.898838, 37.725322],\n          [-78.898749, 37.725462],\n          [-78.898619, 37.725684],\n          [-78.898501, 37.725886],\n          [-78.898424, 37.726009],\n          [-78.898396, 37.726054],\n          [-78.89823, 37.726333],\n          [-78.897785, 37.72702],\n          [-78.897326, 37.727687],\n          [-78.897029, 37.728104],\n          [-78.896755, 37.72847],\n          [-78.896087, 37.729327],\n          [-78.895376, 37.730223],\n          [-78.89492, 37.73078],\n          [-78.894224, 37.731648],\n          [-78.893951, 37.731982],\n          [-78.893208, 37.732922],\n          [-78.893101, 37.733073],\n          [-78.892951, 37.733284],\n          [-78.892829, 37.733486],\n          [-78.892725, 37.733694],\n          [-78.892653, 37.733852],\n          [-78.892395, 37.734583],\n          [-78.892264, 37.735006],\n          [-78.891874, 37.73617],\n          [-78.891809, 37.736394],\n          [-78.891615, 37.736972],\n          [-78.891508, 37.737307],\n          [-78.891316, 37.737819],\n          [-78.891154, 37.738191],\n          [-78.891075, 37.738356],\n          [-78.891011, 37.738485],\n          [-78.890701, 37.739024],\n          [-78.890539, 37.739262],\n          [-78.890353, 37.739521],\n          [-78.890119, 37.739847],\n          [-78.889796, 37.740253],\n          [-78.889491, 37.740645],\n          [-78.889217, 37.740996],\n          [-78.888944, 37.74133],\n          [-78.888623, 37.741743],\n          [-78.888513, 37.741886],\n          [-78.888267, 37.742188],\n          [-78.887876, 37.742653],\n          [-78.887675, 37.74287],\n          [-78.887504, 37.743037],\n          [-78.887277, 37.743237],\n          [-78.887216, 37.743287],\n          [-78.887135, 37.743353],\n          [-78.886534, 37.743824],\n          [-78.886162, 37.744125],\n          [-78.8861, 37.744182],\n          [-78.885899, 37.744355],\n          [-78.885622, 37.744575],\n          [-78.885356, 37.74478],\n          [-78.884605, 37.745388],\n          [-78.884042, 37.74585],\n          [-78.882882, 37.746752],\n          [-78.882051, 37.747417],\n          [-78.880834, 37.748391],\n          [-78.88003, 37.749038],\n          [-78.879751, 37.749271],\n          [-78.879568, 37.74942],\n          [-78.879376, 37.749569],\n          [-78.878419, 37.750353],\n          [-78.877854, 37.750804],\n          [-78.877584, 37.751037],\n          [-78.877286, 37.751315],\n          [-78.877004, 37.751598],\n          [-78.876844, 37.751774],\n          [-78.876626, 37.752042],\n          [-78.876378, 37.752385],\n          [-78.876192, 37.752665],\n          [-78.876061, 37.752882],\n          [-78.875814, 37.753345],\n          [-78.875209, 37.754691],\n          [-78.874619, 37.756931],\n          [-78.874501, 37.757307],\n          [-78.874339, 37.757855],\n          [-78.873994, 37.758979],\n          [-78.873789, 37.759637],\n          [-78.873696, 37.75991],\n          [-78.873541, 37.760318],\n          [-78.873332, 37.760834],\n          [-78.873094, 37.761337],\n          [-78.872847, 37.761808],\n          [-78.872451, 37.762468],\n          [-78.872257, 37.76277],\n          [-78.871993, 37.763172],\n          [-78.871574, 37.763799],\n          [-78.871327, 37.764167],\n          [-78.871012, 37.764642],\n          [-78.870469, 37.765468],\n          [-78.870316, 37.765702],\n          [-78.870042, 37.766126],\n          [-78.869873, 37.766412],\n          [-78.869781, 37.766589],\n          [-78.869687, 37.766814],\n          [-78.869585, 37.76708],\n          [-78.869516, 37.767314],\n          [-78.869424, 37.767698],\n          [-78.869391, 37.767942],\n          [-78.86938, 37.768238],\n          [-78.869389, 37.768459],\n          [-78.869415, 37.768673],\n          [-78.869485, 37.768991],\n          [-78.869567, 37.769255],\n          [-78.86966, 37.769515],\n          [-78.869743, 37.769714],\n          [-78.869793, 37.769822],\n          [-78.870127, 37.770634],\n          [-78.870244, 37.770938],\n          [-78.870299, 37.771157],\n          [-78.870337, 37.771378],\n          [-78.870379, 37.771605],\n          [-78.870392, 37.771879],\n          [-78.870378, 37.772127],\n          [-78.870337, 37.772397],\n          [-78.870272, 37.77267],\n          [-78.870248, 37.772764],\n          [-78.87004, 37.773562],\n          [-78.869728, 37.774718],\n          [-78.869574, 37.775264],\n          [-78.869411, 37.775864],\n          [-78.869234, 37.776522],\n          [-78.869061, 37.777151],\n          [-78.868889, 37.777735],\n          [-78.868643, 37.778648],\n          [-78.868399, 37.779571],\n          [-78.868224, 37.780198],\n          [-78.868067, 37.780782],\n          [-78.867497, 37.782893],\n          [-78.867434, 37.783141],\n          [-78.867364, 37.783414],\n          [-78.867185, 37.784047],\n          [-78.867156, 37.784152],\n          [-78.867042, 37.784562],\n          [-78.866921, 37.785054],\n          [-78.866779, 37.785508],\n          [-78.866518, 37.786333],\n          [-78.866458, 37.786501],\n          [-78.866348, 37.786832],\n          [-78.866066, 37.787709],\n          [-78.865703, 37.788816],\n          [-78.865457, 37.789659],\n          [-78.865164, 37.790592],\n          [-78.864927, 37.791345],\n          [-78.864619, 37.792175],\n          [-78.864507, 37.792484],\n          [-78.864363, 37.792792],\n          [-78.864228, 37.793041],\n          [-78.864067, 37.7933],\n          [-78.863882, 37.793548],\n          [-78.863684, 37.793797],\n          [-78.863319, 37.794211],\n          [-78.863117, 37.794344],\n          [-78.86295, 37.794541],\n          [-78.862701, 37.794857],\n          [-78.86248, 37.795184],\n          [-78.862275, 37.795518],\n          [-78.862199, 37.795651],\n          [-78.862007, 37.796159],\n          [-78.861989, 37.79622],\n          [-78.861909, 37.796548],\n          [-78.861883, 37.796687],\n          [-78.861846, 37.796942],\n          [-78.861828, 37.797235],\n          [-78.861827, 37.797529],\n          [-78.861837, 37.797754],\n          [-78.861844, 37.797901],\n          [-78.861878, 37.798631],\n          [-78.861919, 37.799738],\n          [-78.861971, 37.800826],\n          [-78.862007, 37.801869],\n          [-78.862081, 37.803303],\n          [-78.862104, 37.80423],\n          [-78.86209, 37.804437],\n          [-78.862063, 37.804642],\n          [-78.862038, 37.804754],\n          [-78.862023, 37.804816],\n          [-78.861947, 37.805046],\n          [-78.861861, 37.805246],\n          [-78.861771, 37.805437],\n          [-78.86165, 37.805634],\n          [-78.861512, 37.805817],\n          [-78.861343, 37.806004],\n          [-78.860353, 37.806994],\n          [-78.859848, 37.807481],\n          [-78.858512, 37.808821],\n          [-78.858367, 37.808958],\n          [-78.858079, 37.809211],\n          [-78.857729, 37.809505],\n          [-78.857293, 37.80986],\n          [-78.856987, 37.81009],\n          [-78.856658, 37.810338],\n          [-78.855693, 37.81105],\n          [-78.85561, 37.811115],\n          [-78.855262, 37.811371],\n          [-78.854965, 37.811605],\n          [-78.853694, 37.812587],\n          [-78.853389, 37.812818],\n          [-78.852362, 37.813637],\n          [-78.851981, 37.813912],\n          [-78.851517, 37.814266],\n          [-78.851057, 37.81462],\n          [-78.85085, 37.814768],\n          [-78.850729, 37.814859],\n          [-78.850652, 37.81492],\n          [-78.850085, 37.815369],\n          [-78.848637, 37.81648],\n          [-78.846503, 37.818117],\n          [-78.846263, 37.818303],\n          [-78.845641, 37.818784],\n          [-78.845198, 37.81912],\n          [-78.844287, 37.819835],\n          [-78.843809, 37.820229],\n          [-78.841255, 37.822413],\n          [-78.840635, 37.822925],\n          [-78.840114, 37.823377],\n          [-78.839772, 37.823685],\n          [-78.839408, 37.824047],\n          [-78.839049, 37.824425],\n          [-78.838766, 37.824737],\n          [-78.838386, 37.825182],\n          [-78.838147, 37.825481],\n          [-78.837849, 37.82588],\n          [-78.837407, 37.826506],\n          [-78.837204, 37.826823],\n          [-78.837053, 37.827081],\n          [-78.836731, 37.827595],\n          [-78.836452, 37.828104],\n          [-78.836275, 37.828399],\n          [-78.836111, 37.828667],\n          [-78.835849, 37.82912],\n          [-78.835504, 37.829691],\n          [-78.835352, 37.829945],\n          [-78.83498, 37.830568],\n          [-78.834935, 37.830642],\n          [-78.834826, 37.830821],\n          [-78.834646, 37.831137],\n          [-78.834377, 37.831577],\n          [-78.833853, 37.832462],\n          [-78.833724, 37.832692],\n          [-78.833217, 37.833546],\n          [-78.831919, 37.835713],\n          [-78.831568, 37.836263],\n          [-78.831293, 37.836637],\n          [-78.831013, 37.836981],\n          [-78.83077, 37.837252],\n          [-78.829687, 37.838434],\n          [-78.829526, 37.8386],\n          [-78.829353, 37.838766],\n          [-78.828845, 37.839208],\n          [-78.828553, 37.839442],\n          [-78.828248, 37.839665],\n          [-78.827736, 37.840071],\n          [-78.82744, 37.840316],\n          [-78.827359, 37.840393],\n          [-78.827219, 37.840526],\n          [-78.827033, 37.840723],\n          [-78.82681, 37.840985],\n          [-78.826636, 37.841213],\n          [-78.826324, 37.841668],\n          [-78.825848, 37.842321],\n          [-78.825635, 37.842569],\n          [-78.825481, 37.842727],\n          [-78.825276, 37.842917],\n          [-78.825211, 37.842971],\n          [-78.825103, 37.843062],\n          [-78.824902, 37.843225],\n          [-78.824735, 37.84334],\n          [-78.824467, 37.843502],\n          [-78.824206, 37.843652],\n          [-78.82312, 37.844198],\n          [-78.822611, 37.844456],\n          [-78.821878, 37.84482],\n          [-78.820981, 37.845244],\n          [-78.82067, 37.845389],\n          [-78.820264, 37.845536],\n          [-78.820038, 37.845598],\n          [-78.819873, 37.845635],\n          [-78.81967, 37.845683],\n          [-78.819501, 37.845707],\n          [-78.819221, 37.845735],\n          [-78.818871, 37.845752],\n          [-78.818684, 37.845746],\n          [-78.818377, 37.845729],\n          [-78.818065, 37.845689],\n          [-78.817748, 37.845635],\n          [-78.817461, 37.845563],\n          [-78.817089, 37.845456],\n          [-78.81664, 37.845308],\n          [-78.816094, 37.845137],\n          [-78.815801, 37.845042],\n          [-78.815106, 37.844835],\n          [-78.814203, 37.844545],\n          [-78.813661, 37.844372],\n          [-78.813194, 37.844227],\n          [-78.812793, 37.844119],\n          [-78.812466, 37.844059],\n          [-78.812161, 37.844015],\n          [-78.811899, 37.843994],\n          [-78.811692, 37.843985],\n          [-78.81145, 37.844002],\n          [-78.811288, 37.844022],\n          [-78.810966, 37.84409],\n          [-78.810704, 37.844162],\n          [-78.810498, 37.844229],\n          [-78.810246, 37.844336],\n          [-78.80993, 37.84449],\n          [-78.809727, 37.844605],\n          [-78.809573, 37.844705],\n          [-78.809276, 37.84492],\n          [-78.809029, 37.845076],\n          [-78.808807, 37.845199],\n          [-78.808527, 37.845332],\n          [-78.808311, 37.845419],\n          [-78.808089, 37.845498],\n          [-78.807811, 37.845579],\n          [-78.807589, 37.845643],\n          [-78.807297, 37.845708],\n          [-78.807, 37.845759],\n          [-78.806691, 37.845797],\n          [-78.806302, 37.845837],\n          [-78.805184, 37.845933],\n          [-78.80503, 37.845945],\n          [-78.804012, 37.846026],\n          [-78.800837, 37.846324],\n          [-78.800537, 37.846339],\n          [-78.800237, 37.846355],\n          [-78.800014, 37.846352],\n          [-78.79976, 37.846345],\n          [-78.799425, 37.846321],\n          [-78.799048, 37.846276],\n          [-78.79881, 37.846227],\n          [-78.798587, 37.846183],\n          [-78.798334, 37.846121],\n          [-78.798127, 37.846044],\n          [-78.797833, 37.845932],\n          [-78.797473, 37.845765],\n          [-78.797183, 37.845617],\n          [-78.796923, 37.845465],\n          [-78.796357, 37.845082],\n          [-78.795818, 37.844712],\n          [-78.795607, 37.84458],\n          [-78.795352, 37.844427],\n          [-78.795147, 37.84431],\n          [-78.794915, 37.844201],\n          [-78.794645, 37.844085],\n          [-78.794419, 37.843996],\n          [-78.794095, 37.843903],\n          [-78.793805, 37.843828],\n          [-78.793467, 37.843774],\n          [-78.793125, 37.84374],\n          [-78.792933, 37.843732],\n          [-78.792722, 37.843723],\n          [-78.792238, 37.84372],\n          [-78.791688, 37.843732],\n          [-78.791137, 37.843731],\n          [-78.790713, 37.843712],\n          [-78.790444, 37.843693],\n          [-78.79016, 37.843657],\n          [-78.78988, 37.843607],\n          [-78.789604, 37.843542],\n          [-78.789363, 37.843478],\n          [-78.789067, 37.843389],\n          [-78.788706, 37.843253],\n          [-78.78839, 37.843125],\n          [-78.788101, 37.843016],\n          [-78.78765, 37.842857],\n          [-78.787324, 37.842748],\n          [-78.787056, 37.84268],\n          [-78.786677, 37.842606],\n          [-78.786459, 37.842568],\n          [-78.786292, 37.842537],\n          [-78.785994, 37.842501],\n          [-78.785649, 37.842467],\n          [-78.785267, 37.842457],\n          [-78.784945, 37.842456],\n          [-78.784589, 37.842468],\n          [-78.782212, 37.842633],\n          [-78.780497, 37.842776],\n          [-78.779987, 37.842814],\n          [-78.778924, 37.842896],\n          [-78.77812, 37.842986],\n          [-78.777773, 37.843042],\n          [-78.777066, 37.843144],\n          [-78.776444, 37.84325],\n          [-78.775647, 37.843402],\n          [-78.774632, 37.843601],\n          [-78.773646, 37.843786],\n          [-78.773282, 37.843855],\n          [-78.772981, 37.843912],\n          [-78.772128, 37.844091],\n          [-78.771161, 37.844316],\n          [-78.770651, 37.844441],\n          [-78.769991, 37.844616],\n          [-78.768859, 37.844941],\n          [-78.768162, 37.845142],\n          [-78.767015, 37.845472],\n          [-78.76637, 37.845658],\n          [-78.765119, 37.846012],\n          [-78.761663, 37.84701],\n          [-78.760903, 37.847224],\n          [-78.760298, 37.847402],\n          [-78.75996, 37.847506],\n          [-78.7597, 37.847596],\n          [-78.759532, 37.84765],\n          [-78.759113, 37.847806],\n          [-78.758783, 37.847948],\n          [-78.758412, 37.84812],\n          [-78.758057, 37.848288],\n          [-78.757154, 37.848747],\n          [-78.756986, 37.848829],\n          [-78.756546, 37.849062],\n          [-78.756115, 37.849306],\n          [-78.755862, 37.849458],\n          [-78.755244, 37.849843],\n          [-78.754769, 37.85013],\n          [-78.754377, 37.85038],\n          [-78.753945, 37.850672],\n          [-78.753673, 37.850873],\n          [-78.753364, 37.851127],\n          [-78.753217, 37.851259],\n          [-78.752739, 37.851715],\n          [-78.752046, 37.852374],\n          [-78.75166, 37.852719],\n          [-78.751401, 37.852929],\n          [-78.751134, 37.853132],\n          [-78.750789, 37.853376],\n          [-78.750504, 37.853564],\n          [-78.750081, 37.853824],\n          [-78.74973, 37.854021],\n          [-78.749369, 37.854207],\n          [-78.748998, 37.85438],\n          [-78.748624, 37.854531],\n          [-78.748053, 37.854743],\n          [-78.747045, 37.85508],\n          [-78.746537, 37.855262],\n          [-78.746473, 37.855285],\n          [-78.745985, 37.855474],\n          [-78.7456, 37.855635],\n          [-78.744986, 37.855911],\n          [-78.744673, 37.856064],\n          [-78.744246, 37.856299],\n          [-78.743761, 37.856591],\n          [-78.743416, 37.856817],\n          [-78.742954, 37.857145],\n          [-78.742639, 37.857387],\n          [-78.742337, 37.85764],\n          [-78.742294, 37.85768],\n          [-78.741896, 37.858045],\n          [-78.741503, 37.85843],\n          [-78.741291, 37.858648],\n          [-78.741254, 37.858686],\n          [-78.740963, 37.859027],\n          [-78.740705, 37.859351],\n          [-78.740668, 37.859398],\n          [-78.740453, 37.85968],\n          [-78.739901, 37.860385],\n          [-78.739675, 37.860647],\n          [-78.739434, 37.860902],\n          [-78.739176, 37.861151],\n          [-78.73895, 37.861357],\n          [-78.738655, 37.861604],\n          [-78.738411, 37.861795],\n          [-78.738094, 37.862025],\n          [-78.737733, 37.862262],\n          [-78.737429, 37.862445],\n          [-78.73708, 37.862638],\n          [-78.73657, 37.862893],\n          [-78.736186, 37.863088],\n          [-78.735435, 37.86348],\n          [-78.734529, 37.863942],\n          [-78.733874, 37.864271],\n          [-78.733562, 37.864427],\n          [-78.733042, 37.864704],\n          [-78.732039, 37.865214],\n          [-78.731948, 37.865258],\n          [-78.731785, 37.865335],\n          [-78.731411, 37.86553],\n          [-78.730148, 37.866169],\n          [-78.729986, 37.866254],\n          [-78.729722, 37.866391],\n          [-78.728688, 37.866913],\n          [-78.727888, 37.86733],\n          [-78.727529, 37.86751],\n          [-78.726765, 37.867904],\n          [-78.726166, 37.868202],\n          [-78.725869, 37.868361],\n          [-78.725428, 37.868579],\n          [-78.725084, 37.868757],\n          [-78.724518, 37.869049],\n          [-78.723898, 37.869354],\n          [-78.722779, 37.869945],\n          [-78.721592, 37.870542],\n          [-78.720481, 37.87111],\n          [-78.719958, 37.871373],\n          [-78.719701, 37.871497],\n          [-78.719365, 37.871672],\n          [-78.718719, 37.872028],\n          [-78.71847, 37.872183],\n          [-78.718164, 37.872388],\n          [-78.717945, 37.872553],\n          [-78.717592, 37.872851],\n          [-78.717285, 37.873139],\n          [-78.717049, 37.873363],\n          [-78.716739, 37.873728],\n          [-78.716536, 37.874002],\n          [-78.716395, 37.874221],\n          [-78.716144, 37.874657],\n          [-78.71604, 37.87487],\n          [-78.715888, 37.875212],\n          [-78.715814, 37.875401],\n          [-78.715694, 37.87571],\n          [-78.715495, 37.876238],\n          [-78.715377, 37.876548],\n          [-78.715275, 37.876817],\n          [-78.71521, 37.877013],\n          [-78.715136, 37.877211],\n          [-78.715081, 37.877371],\n          [-78.714995, 37.877587],\n          [-78.71492, 37.877787],\n          [-78.7148, 37.878131],\n          [-78.714687, 37.878428],\n          [-78.714533, 37.878796],\n          [-78.714454, 37.879009],\n          [-78.714417, 37.879116],\n          [-78.714256, 37.879549],\n          [-78.714141, 37.879854],\n          [-78.713896, 37.880594],\n          [-78.713756, 37.881038],\n          [-78.713682, 37.88126],\n          [-78.713617, 37.881457],\n          [-78.713533, 37.881697],\n          [-78.713446, 37.881943],\n          [-78.713394, 37.882108],\n          [-78.713314, 37.882336],\n          [-78.713184, 37.882655],\n          [-78.713006, 37.883053],\n          [-78.712892, 37.883274],\n          [-78.712733, 37.88355],\n          [-78.712558, 37.88384],\n          [-78.712369, 37.884119],\n          [-78.712275, 37.884257],\n          [-78.712136, 37.884449],\n          [-78.711974, 37.884667],\n          [-78.711814, 37.884876],\n          [-78.711641, 37.885085],\n          [-78.711418, 37.885345],\n          [-78.711139, 37.885644],\n          [-78.710798, 37.88599],\n          [-78.710465, 37.886309],\n          [-78.710195, 37.886555],\n          [-78.709928, 37.886781],\n          [-78.709577, 37.88706],\n          [-78.709406, 37.887199],\n          [-78.709211, 37.887345],\n          [-78.708778, 37.887648],\n          [-78.707968, 37.888179],\n          [-78.707642, 37.888399],\n          [-78.707473, 37.88851],\n          [-78.707244, 37.888663],\n          [-78.706965, 37.888843],\n          [-78.706601, 37.889083],\n          [-78.706088, 37.889425],\n          [-78.705712, 37.889669],\n          [-78.705189, 37.890019],\n          [-78.704893, 37.890211],\n          [-78.703445, 37.891162],\n          [-78.703041, 37.891429],\n          [-78.702721, 37.891638],\n          [-78.702327, 37.891905],\n          [-78.70184, 37.892223],\n          [-78.701163, 37.892662],\n          [-78.700778, 37.892933],\n          [-78.70071, 37.892981],\n          [-78.700622, 37.893046],\n          [-78.700337, 37.893272],\n          [-78.69999, 37.89357],\n          [-78.699755, 37.8938],\n          [-78.699482, 37.894099],\n          [-78.699289, 37.894329],\n          [-78.698787, 37.894984],\n          [-78.698558, 37.895284],\n          [-78.69837, 37.895519],\n          [-78.698116, 37.895851],\n          [-78.697966, 37.896055],\n          [-78.697696, 37.896407],\n          [-78.697057, 37.897242],\n          [-78.696439, 37.898041],\n          [-78.695681, 37.899035],\n          [-78.695049, 37.899863],\n          [-78.694658, 37.900403],\n          [-78.694519, 37.900599],\n          [-78.694429, 37.900733],\n          [-78.693954, 37.901464],\n          [-78.693721, 37.901862],\n          [-78.693473, 37.902275],\n          [-78.693102, 37.902981],\n          [-78.692879, 37.903439],\n          [-78.692797, 37.903623],\n          [-78.692129, 37.905105],\n          [-78.691808, 37.905817],\n          [-78.691268, 37.906984],\n          [-78.690987, 37.907549],\n          [-78.690814, 37.907874],\n          [-78.690688, 37.908089],\n          [-78.690521, 37.908372],\n          [-78.690275, 37.908767],\n          [-78.689663, 37.909657],\n          [-78.689078, 37.910492],\n          [-78.685485, 37.915666],\n          [-78.684467, 37.917131],\n          [-78.682047, 37.920608],\n          [-78.681785, 37.92095],\n          [-78.681517, 37.921272],\n          [-78.681241, 37.921578],\n          [-78.68101, 37.921818],\n          [-78.680605, 37.922194],\n          [-78.68013, 37.922617],\n          [-78.679566, 37.923137],\n          [-78.679307, 37.923403],\n          [-78.678986, 37.92374],\n          [-78.678605, 37.924203],\n          [-78.678345, 37.924561],\n          [-78.678124, 37.924891],\n          [-78.677903, 37.925227],\n          [-78.677688, 37.925589],\n          [-78.677544, 37.925878],\n          [-78.67731, 37.926442],\n          [-78.676551, 37.928284],\n          [-78.676404, 37.928595],\n          [-78.676242, 37.928949],\n          [-78.676148, 37.929122],\n          [-78.675977, 37.929377],\n          [-78.675612, 37.929807],\n          [-78.675385, 37.930086],\n          [-78.675213, 37.930312],\n          [-78.675004, 37.930559],\n          [-78.674617, 37.931044],\n          [-78.67407, 37.931702],\n          [-78.673673, 37.932201],\n          [-78.673281, 37.9327],\n          [-78.672994, 37.933082],\n          [-78.672166, 37.934227],\n          [-78.671112, 37.935771],\n          [-78.670762, 37.936281],\n          [-78.670385, 37.936817],\n          [-78.669877, 37.937599],\n          [-78.668999, 37.93886],\n          [-78.667671, 37.940789],\n          [-78.666721, 37.942158],\n          [-78.666126, 37.943118],\n          [-78.665597, 37.944014],\n          [-78.665125, 37.944827],\n          [-78.664642, 37.945633],\n          [-78.664087, 37.946602],\n          [-78.663665, 37.947366],\n          [-78.663523, 37.947648],\n          [-78.663363, 37.948007],\n          [-78.66312, 37.948581],\n          [-78.662992, 37.948919],\n          [-78.662788, 37.949511],\n          [-78.662392, 37.950794],\n          [-78.662127, 37.951686],\n          [-78.661907, 37.952368],\n          [-78.6618, 37.952667],\n          [-78.661673, 37.952964],\n          [-78.661549, 37.953229],\n          [-78.661377, 37.953546],\n          [-78.661172, 37.953875],\n          [-78.660975, 37.954168],\n          [-78.660712, 37.954527],\n          [-78.660589, 37.954686],\n          [-78.660525, 37.954768],\n          [-78.660204, 37.955161],\n          [-78.659899, 37.955515],\n          [-78.65946, 37.956045],\n          [-78.659107, 37.956472],\n          [-78.658939, 37.95668],\n          [-78.658404, 37.957325],\n          [-78.658185, 37.957583],\n          [-78.657413, 37.958505],\n          [-78.65713, 37.958855],\n          [-78.65677, 37.959264],\n          [-78.656612, 37.959431],\n          [-78.656439, 37.95959],\n          [-78.656251, 37.959739],\n          [-78.656068, 37.959867],\n          [-78.655989, 37.959917],\n          [-78.655752, 37.960052],\n          [-78.655575, 37.96015],\n          [-78.655228, 37.960289],\n          [-78.654931, 37.960405],\n          [-78.653275, 37.960978],\n          [-78.652399, 37.961277],\n          [-78.651659, 37.961545],\n          [-78.651372, 37.96167],\n          [-78.651131, 37.961788],\n          [-78.650953, 37.961888],\n          [-78.65077, 37.962003],\n          [-78.650655, 37.962074],\n          [-78.650545, 37.96215],\n          [-78.650369, 37.962277],\n          [-78.650124, 37.962492],\n          [-78.649827, 37.962781],\n          [-78.649528, 37.963082],\n          [-78.649157, 37.963468],\n          [-78.648771, 37.96385],\n          [-78.648569, 37.964042],\n          [-78.648236, 37.964318],\n          [-78.647928, 37.964546],\n          [-78.647355, 37.964951],\n          [-78.646421, 37.965624],\n          [-78.646034, 37.965897],\n          [-78.645591, 37.966218],\n          [-78.645351, 37.966376],\n          [-78.645051, 37.966569],\n          [-78.644735, 37.966754],\n          [-78.644581, 37.96684],\n          [-78.6444, 37.966936],\n          [-78.643915, 37.967163],\n          [-78.643555, 37.967319],\n          [-78.643147, 37.967465],\n          [-78.642853, 37.967561],\n          [-78.642519, 37.96766],\n          [-78.642395, 37.967695],\n          [-78.642095, 37.967768],\n          [-78.641871, 37.967823],\n          [-78.641449, 37.967916],\n          [-78.640993, 37.967991],\n          [-78.640408, 37.968066],\n          [-78.639997, 37.968103],\n          [-78.639496, 37.96813],\n          [-78.638995, 37.968136],\n          [-78.638434, 37.968125],\n          [-78.637944, 37.9681],\n          [-78.63612, 37.967958],\n          [-78.635136, 37.967873],\n          [-78.633802, 37.96777],\n          [-78.632073, 37.967631],\n          [-78.631801, 37.967611],\n          [-78.630935, 37.967546],\n          [-78.630424, 37.967503],\n          [-78.629697, 37.967442],\n          [-78.628686, 37.967361],\n          [-78.626167, 37.967159],\n          [-78.623282, 37.966927],\n          [-78.622258, 37.96685],\n          [-78.621932, 37.966824],\n          [-78.620819, 37.966736],\n          [-78.620381, 37.966716],\n          [-78.620004, 37.966712],\n          [-78.619679, 37.966717],\n          [-78.61937, 37.966745],\n          [-78.619064, 37.966787],\n          [-78.618761, 37.966844],\n          [-78.618523, 37.9669],\n          [-78.618222, 37.966977],\n          [-78.617837, 37.967103],\n          [-78.617525, 37.967224],\n          [-78.617264, 37.967333],\n          [-78.616866, 37.967526],\n          [-78.61666, 37.96764],\n          [-78.616487, 37.967735],\n          [-78.616266, 37.967872],\n          [-78.615844, 37.968137],\n          [-78.615555, 37.968338],\n          [-78.615229, 37.968577],\n          [-78.614931, 37.968831],\n          [-78.614607, 37.969142],\n          [-78.614381, 37.96937],\n          [-78.614151, 37.969646],\n          [-78.613964, 37.96988],\n          [-78.613494, 37.970554],\n          [-78.61301, 37.971246],\n          [-78.612831, 37.971512],\n          [-78.612279, 37.972333],\n          [-78.611229, 37.97389],\n          [-78.610819, 37.974494],\n          [-78.610719, 37.974624],\n          [-78.610499, 37.974897],\n          [-78.610319, 37.975118],\n          [-78.610116, 37.975331],\n          [-78.609966, 37.975469],\n          [-78.609796, 37.975624],\n          [-78.609591, 37.975796],\n          [-78.609317, 37.976004],\n          [-78.609071, 37.976176],\n          [-78.608849, 37.976327],\n          [-78.608744, 37.97639],\n          [-78.608365, 37.976619],\n          [-78.608101, 37.976752],\n          [-78.607845, 37.976869],\n          [-78.607584, 37.976978],\n          [-78.60725, 37.977103],\n          [-78.606977, 37.977192],\n          [-78.606625, 37.977297],\n          [-78.606266, 37.977388],\n          [-78.606123, 37.977418],\n          [-78.605902, 37.977465],\n          [-78.605646, 37.97752],\n          [-78.605621, 37.977522],\n          [-78.605549, 37.977538],\n          [-78.60423, 37.977756],\n          [-78.602588, 37.978034],\n          [-78.602162, 37.978122],\n          [-78.601825, 37.978203],\n          [-78.601492, 37.978293],\n          [-78.601094, 37.978414],\n          [-78.60071, 37.978547],\n          [-78.600334, 37.978694],\n          [-78.599967, 37.978854],\n          [-78.599486, 37.979083],\n          [-78.599163, 37.979252],\n          [-78.598789, 37.97947],\n          [-78.598549, 37.979624],\n          [-78.597946, 37.980033],\n          [-78.596889, 37.98075],\n          [-78.595137, 37.981939],\n          [-78.593704, 37.982911],\n          [-78.592376, 37.98382],\n          [-78.590854, 37.984906],\n          [-78.590225, 37.985373],\n          [-78.588999, 37.98631],\n          [-78.588012, 37.9871],\n          [-78.587089, 37.987859],\n          [-78.586722, 37.988171],\n          [-78.586183, 37.988631],\n          [-78.585023, 37.989655],\n          [-78.583908, 37.990662],\n          [-78.583686, 37.990885],\n          [-78.583478, 37.991116],\n          [-78.583203, 37.991447],\n          [-78.583057, 37.991641],\n          [-78.582889, 37.99189],\n          [-78.582734, 37.992152],\n          [-78.582584, 37.992445],\n          [-78.582451, 37.992743],\n          [-78.582318, 37.993104],\n          [-78.582229, 37.993396],\n          [-78.582158, 37.993692],\n          [-78.582061, 37.994255],\n          [-78.581989, 37.994788],\n          [-78.581919, 37.9952],\n          [-78.581831, 37.99573],\n          [-78.581596, 37.997239],\n          [-78.581525, 37.997665],\n          [-78.58147, 37.998088],\n          [-78.581083, 38.000517],\n          [-78.580993, 38.001016],\n          [-78.580912, 38.001332],\n          [-78.580857, 38.001514],\n          [-78.580851, 38.001532],\n          [-78.580827, 38.001607],\n          [-78.580788, 38.001711],\n          [-78.580764, 38.001783],\n          [-78.580638, 38.002087],\n          [-78.580501, 38.002397],\n          [-78.580338, 38.002682],\n          [-78.580176, 38.002939],\n          [-78.580026, 38.003155],\n          [-78.57984, 38.003394],\n          [-78.579631, 38.003641],\n          [-78.579528, 38.003748],\n          [-78.579258, 38.004014],\n          [-78.578985, 38.00426],\n          [-78.578784, 38.004426],\n          [-78.578575, 38.004584],\n          [-78.578379, 38.004723],\n          [-78.578122, 38.004899],\n          [-78.577709, 38.005151],\n          [-78.577431, 38.005306],\n          [-78.577141, 38.005444],\n          [-78.576923, 38.005542],\n          [-78.576628, 38.005666],\n          [-78.576327, 38.005766],\n          [-78.576154, 38.005828],\n          [-78.575371, 38.006031],\n          [-78.574274, 38.006313],\n          [-78.573929, 38.006397],\n          [-78.573678, 38.006459],\n          [-78.5731, 38.006602],\n          [-78.572544, 38.006742],\n          [-78.570845, 38.007165],\n          [-78.570536, 38.007245],\n          [-78.570147, 38.007346],\n          [-78.569511, 38.007502],\n          [-78.568866, 38.007677],\n          [-78.568449, 38.007795],\n          [-78.568216, 38.007865],\n          [-78.567861, 38.007984],\n          [-78.567483, 38.008116],\n          [-78.567008, 38.00831],\n          [-78.566642, 38.008471],\n          [-78.566222, 38.008672],\n          [-78.565813, 38.008887],\n          [-78.565381, 38.009126],\n          [-78.564818, 38.009422],\n          [-78.564544, 38.009563],\n          [-78.564196, 38.009735],\n          [-78.564075, 38.009787],\n          [-78.56369, 38.009944],\n          [-78.56326, 38.010103],\n          [-78.562849, 38.010238],\n          [-78.562529, 38.010332],\n          [-78.562124, 38.010438],\n          [-78.561805, 38.010515],\n          [-78.561564, 38.010564],\n          [-78.56093, 38.010675],\n          [-78.560028, 38.010845],\n          [-78.558824, 38.011064],\n          [-78.558024, 38.011219],\n          [-78.557648, 38.011286],\n          [-78.557386, 38.011333],\n          [-78.557058, 38.011387],\n          [-78.555118, 38.011755],\n          [-78.554112, 38.011931],\n          [-78.552878, 38.012156],\n          [-78.552449, 38.01225],\n          [-78.552186, 38.012316],\n          [-78.551829, 38.012417],\n          [-78.551365, 38.012562],\n          [-78.55109, 38.012655],\n          [-78.550658, 38.012829],\n          [-78.550236, 38.013017],\n          [-78.549599, 38.013364],\n          [-78.549376, 38.013492],\n          [-78.549058, 38.013698],\n          [-78.548469, 38.01411],\n          [-78.547659, 38.014674],\n          [-78.547468, 38.014808],\n          [-78.54736, 38.014884],\n          [-78.547042, 38.015096],\n          [-78.546611, 38.015362],\n          [-78.546269, 38.015559],\n          [-78.54592, 38.01574],\n          [-78.545223, 38.016069],\n          [-78.544841, 38.016247],\n          [-78.543906, 38.016682],\n          [-78.543654, 38.016806],\n          [-78.54333, 38.016982],\n          [-78.542733, 38.017318],\n          [-78.542466, 38.017467],\n          [-78.539711, 38.018979],\n          [-78.536725, 38.020664],\n          [-78.535885, 38.021132],\n          [-78.535518, 38.021335],\n          [-78.534742, 38.021766],\n          [-78.534188, 38.022073],\n          [-78.532955, 38.02276],\n          [-78.532173, 38.023196],\n          [-78.531193, 38.023747],\n          [-78.531125, 38.023792],\n          [-78.53075, 38.024045],\n          [-78.530445, 38.024274],\n          [-78.530203, 38.024476],\n          [-78.530016, 38.024649],\n          [-78.529931, 38.024733],\n          [-78.52985, 38.024806],\n          [-78.529798, 38.024854],\n          [-78.529758, 38.024894],\n          [-78.529598, 38.025065],\n          [-78.529327, 38.025386],\n          [-78.52916, 38.025608],\n          [-78.528945, 38.025933],\n          [-78.5288, 38.026176],\n          [-78.528672, 38.026426],\n          [-78.52861, 38.026566],\n          [-78.528405, 38.027066],\n          [-78.52833, 38.027311],\n          [-78.528283, 38.02751],\n          [-78.528235, 38.027689],\n          [-78.528151, 38.028145],\n          [-78.527582, 38.03105],\n          [-78.527126, 38.033402],\n          [-78.52703, 38.033972],\n          [-78.526914, 38.034782],\n          [-78.526868, 38.035166],\n          [-78.52679, 38.036035],\n          [-78.526753, 38.036647],\n          [-78.526715, 38.03781],\n          [-78.526642, 38.040878],\n          [-78.526607, 38.042081],\n          [-78.526584, 38.042473],\n          [-78.526544, 38.042863],\n          [-78.52645, 38.043462],\n          [-78.526353, 38.043907],\n          [-78.526306, 38.044099],\n          [-78.526225, 38.044382],\n          [-78.526103, 38.044762],\n          [-78.525978, 38.045116],\n          [-78.52595, 38.045183],\n          [-78.525619, 38.045973],\n          [-78.525226, 38.046882],\n          [-78.524837, 38.047794],\n          [-78.524807, 38.047861],\n          [-78.524712, 38.048073],\n          [-78.523664, 38.050524],\n          [-78.523608, 38.050633],\n          [-78.523449, 38.050945],\n          [-78.523194, 38.051371],\n          [-78.522992, 38.051667],\n          [-78.522896, 38.051793],\n          [-78.522708, 38.052033],\n          [-78.522379, 38.052403],\n          [-78.522049, 38.052728],\n          [-78.521736, 38.053004],\n          [-78.521375, 38.053289],\n          [-78.521061, 38.053512],\n          [-78.520792, 38.053687],\n          [-78.520433, 38.053898],\n          [-78.5202, 38.054028],\n          [-78.519924, 38.054166],\n          [-78.519561, 38.054329],\n          [-78.519179, 38.054486],\n          [-78.518827, 38.054612],\n          [-78.518437, 38.054736],\n          [-78.518106, 38.054829],\n          [-78.517883, 38.054877],\n          [-78.517638, 38.05494],\n          [-78.517298, 38.055006],\n          [-78.51674, 38.055093],\n          [-78.515503, 38.055228],\n          [-78.513125, 38.055506],\n          [-78.51298, 38.05552],\n          [-78.511721, 38.055664],\n          [-78.510089, 38.05585],\n          [-78.509444, 38.055931],\n          [-78.508892, 38.056018],\n          [-78.508324, 38.056121],\n          [-78.50762, 38.056269],\n          [-78.507101, 38.056364],\n          [-78.5063, 38.056529],\n          [-78.504207, 38.056975],\n          [-78.503544, 38.057129],\n          [-78.50332, 38.057173],\n          [-78.50218, 38.05739],\n          [-78.501769, 38.057476],\n          [-78.501588, 38.057518],\n          [-78.501288, 38.05758],\n          [-78.500918, 38.057644],\n          [-78.50053, 38.057699],\n          [-78.50025, 38.057721],\n          [-78.49999, 38.057731],\n          [-78.4996, 38.057738],\n          [-78.499258, 38.057729],\n          [-78.499228, 38.057727],\n          [-78.498789, 38.057695],\n          [-78.498509, 38.057667],\n          [-78.498249, 38.05764],\n          [-78.497868, 38.057604],\n          [-78.497658, 38.057584],\n          [-78.497235, 38.057537],\n          [-78.496848, 38.057489],\n          [-78.495893, 38.057371],\n          [-78.494978, 38.057279],\n          [-78.49472, 38.057173],\n          [-78.494659, 38.057142],\n          [-78.494592, 38.057093],\n          [-78.494549, 38.057047],\n          [-78.494516, 38.056995],\n          [-78.494502, 38.05695],\n          [-78.494493, 38.056874],\n          [-78.494502, 38.056798],\n          [-78.494522, 38.056739],\n          [-78.494562, 38.056669],\n          [-78.494623, 38.05661],\n          [-78.494697, 38.056562],\n          [-78.494781, 38.056525],\n          [-78.494872, 38.056502],\n          [-78.49496, 38.056493],\n          [-78.495044, 38.0565],\n          [-78.495109, 38.056516],\n          [-78.495169, 38.056541],\n          [-78.495238, 38.056584],\n          [-78.49528, 38.056617],\n          [-78.495339, 38.05668],\n          [-78.495381, 38.056751],\n          [-78.495402, 38.056811],\n          [-78.495415, 38.056894],\n          [-78.495413, 38.056998],\n          [-78.495388, 38.057116],\n          [-78.49528, 38.057239],\n          [-78.495007, 38.057577],\n          [-78.494845, 38.057747],\n          [-78.494782, 38.057825],\n          [-78.494593, 38.05807],\n          [-78.494413, 38.058298],\n          [-78.494268, 38.05847],\n          [-78.494235, 38.058509],\n          [-78.494159, 38.058601],\n          [-78.493967, 38.058833],\n          [-78.493505, 38.059401],\n          [-78.493364, 38.059586],\n          [-78.492889, 38.060182],\n          [-78.492564, 38.060616],\n          [-78.492196, 38.061101],\n          [-78.491916, 38.061468],\n          [-78.491724, 38.061722],\n          [-78.491723, 38.061722],\n          [-78.491578, 38.061897],\n          [-78.491244, 38.062293],\n          [-78.490863, 38.062734],\n          [-78.490477, 38.063153],\n          [-78.490269, 38.06338],\n          [-78.489937, 38.063742],\n          [-78.48969, 38.064008],\n          [-78.489478, 38.064259],\n          [-78.489344, 38.064409],\n          [-78.489289, 38.06447],\n          [-78.489212, 38.064554],\n          [-78.488761, 38.065053],\n          [-78.48815, 38.065739],\n          [-78.488116, 38.065779],\n          [-78.487867, 38.06605],\n          [-78.48713, 38.06686],\n          [-78.486995, 38.067008],\n          [-78.486825, 38.067194],\n          [-78.486343, 38.067727],\n          [-78.486218, 38.067866],\n          [-78.486208, 38.067877],\n          [-78.486134, 38.067959],\n          [-78.48576, 38.068363],\n          [-78.485475, 38.06867],\n          [-78.485154, 38.069027],\n          [-78.484295, 38.070023],\n          [-78.484063, 38.070271],\n          [-78.483776, 38.070614],\n          [-78.483281, 38.071164],\n          [-78.482433, 38.07211],\n          [-78.480968, 38.073741],\n          [-78.480778, 38.073943],\n          [-78.480706, 38.07403],\n          [-78.480376, 38.074401],\n          [-78.479882, 38.074956],\n          [-78.479801, 38.075034],\n          [-78.479272, 38.075634],\n          [-78.478606, 38.076375],\n          [-78.478527, 38.076469],\n          [-78.478367, 38.076647],\n          [-78.477091, 38.078062],\n          [-78.476397, 38.078846],\n          [-78.475743, 38.079571],\n          [-78.474543, 38.08091],\n          [-78.474163, 38.081335],\n          [-78.473969, 38.081577],\n          [-78.473788, 38.081788],\n          [-78.473613, 38.082014],\n          [-78.47347, 38.082218],\n          [-78.472971, 38.083082],\n          [-78.472639, 38.083666],\n          [-78.472264, 38.084319],\n          [-78.471709, 38.085285],\n          [-78.471146, 38.086271],\n          [-78.47079, 38.086895],\n          [-78.470583, 38.087258],\n          [-78.47026, 38.087825],\n          [-78.469568, 38.089039],\n          [-78.468607, 38.090712],\n          [-78.468501, 38.090897],\n          [-78.468139, 38.091557],\n          [-78.468043, 38.091733],\n          [-78.467922, 38.09192],\n          [-78.467732, 38.092218],\n          [-78.46735, 38.0929],\n          [-78.466766, 38.093924],\n          [-78.466497, 38.09437],\n          [-78.466369, 38.094558],\n          [-78.46599, 38.095057],\n          [-78.465526, 38.09564],\n          [-78.465381, 38.095816],\n          [-78.464933, 38.096381],\n          [-78.464463, 38.096962],\n          [-78.464049, 38.097474],\n          [-78.463974, 38.097573],\n          [-78.463441, 38.098232],\n          [-78.46294, 38.098874],\n          [-78.462231, 38.099765],\n          [-78.461478, 38.100721],\n          [-78.460943, 38.101395],\n          [-78.460544, 38.101882],\n          [-78.460009, 38.102564],\n          [-78.459568, 38.103126],\n          [-78.459337, 38.103403],\n          [-78.458603, 38.10429],\n          [-78.457804, 38.105297],\n          [-78.45751, 38.105695],\n          [-78.4569, 38.106619],\n          [-78.456598, 38.107068],\n          [-78.45544, 38.108845],\n          [-78.454988, 38.109578],\n          [-78.454476, 38.110311],\n          [-78.454296, 38.110569],\n          [-78.454206, 38.110708],\n          [-78.454093, 38.110899],\n          [-78.453942, 38.111128],\n          [-78.453769, 38.111409],\n          [-78.453294, 38.112125],\n          [-78.453172, 38.112318],\n          [-78.452856, 38.112817],\n          [-78.452688, 38.11307],\n          [-78.452602, 38.113223],\n          [-78.451975, 38.114186],\n          [-78.451686, 38.11461],\n          [-78.45106, 38.115568],\n          [-78.450908, 38.115798],\n          [-78.450496, 38.11642],\n          [-78.450419, 38.116537],\n          [-78.45032, 38.116697],\n          [-78.450137, 38.116993],\n          [-78.449702, 38.117634],\n          [-78.449172, 38.118448],\n          [-78.448773, 38.119065],\n          [-78.448006, 38.120242],\n          [-78.447677, 38.120726],\n          [-78.447299, 38.121219],\n          [-78.44692, 38.121631],\n          [-78.446411, 38.122124],\n          [-78.4458, 38.12267],\n          [-78.444661, 38.123687],\n          [-78.442392, 38.125724],\n          [-78.441529, 38.126494],\n          [-78.440922, 38.127044],\n          [-78.440006, 38.127866],\n          [-78.439371, 38.128436],\n          [-78.437997, 38.129669],\n          [-78.437902, 38.129754],\n          [-78.437019, 38.130549],\n          [-78.436453, 38.131059],\n          [-78.436187, 38.131299],\n          [-78.435995, 38.13147],\n          [-78.435251, 38.132172],\n          [-78.435106, 38.132303],\n          [-78.434673, 38.132753],\n          [-78.434293, 38.13317],\n          [-78.433695, 38.133887],\n          [-78.433416, 38.134269],\n          [-78.433195, 38.134572],\n          [-78.432173, 38.13616],\n          [-78.430917, 38.138131],\n          [-78.430468, 38.138847],\n          [-78.429836, 38.139833],\n          [-78.429464, 38.140424],\n          [-78.428859, 38.141359],\n          [-78.428348, 38.142178],\n          [-78.428275, 38.142291],\n          [-78.427887, 38.14289],\n          [-78.427641, 38.143278],\n          [-78.427277, 38.143851],\n          [-78.427263, 38.143873],\n          [-78.425718, 38.146293],\n          [-78.4249, 38.147586],\n          [-78.423982, 38.149017],\n          [-78.423879, 38.149181],\n          [-78.4234, 38.149936],\n          [-78.422346, 38.1516],\n          [-78.42208, 38.151996],\n          [-78.421684, 38.152621],\n          [-78.421337, 38.15319],\n          [-78.420383, 38.154692],\n          [-78.419605, 38.155908],\n          [-78.417659, 38.158962],\n          [-78.415009, 38.163121],\n          [-78.414626, 38.163716],\n          [-78.414541, 38.163851],\n          [-78.414293, 38.164245],\n          [-78.412771, 38.16663],\n          [-78.41231, 38.167345],\n          [-78.411781, 38.168185],\n          [-78.410521, 38.170164],\n          [-78.410064, 38.170881],\n          [-78.408661, 38.173081],\n          [-78.408289, 38.173661],\n          [-78.406754, 38.176057],\n          [-78.405791, 38.177582],\n          [-78.405633, 38.177824],\n          [-78.404819, 38.179105],\n          [-78.40451, 38.179581],\n          [-78.403702, 38.180857],\n          [-78.403534, 38.181116],\n          [-78.40229, 38.183084],\n          [-78.402, 38.183534],\n          [-78.401567, 38.184219],\n          [-78.401491, 38.184329],\n          [-78.400918, 38.18523],\n          [-78.400512, 38.185861],\n          [-78.399321, 38.187671],\n          [-78.399195, 38.187856],\n          [-78.399077, 38.188041],\n          [-78.398689, 38.188617],\n          [-78.398558, 38.18882],\n          [-78.397589, 38.190295],\n          [-78.3974, 38.190566],\n          [-78.397207, 38.19086],\n          [-78.396877, 38.191349],\n          [-78.396731, 38.191574],\n          [-78.396016, 38.192652],\n          [-78.395969, 38.192724],\n          [-78.395198, 38.193895],\n          [-78.395145, 38.193978],\n          [-78.395092, 38.194057],\n          [-78.395078, 38.194078],\n          [-78.394787, 38.194511],\n          [-78.394461, 38.19501],\n          [-78.394425, 38.195065],\n          [-78.393867, 38.195904],\n          [-78.393697, 38.196162],\n          [-78.392569, 38.197862],\n          [-78.392356, 38.198186],\n          [-78.391791, 38.199049],\n          [-78.3916, 38.199341],\n          [-78.391424, 38.19959],\n          [-78.391056, 38.200141],\n          [-78.390364, 38.201178],\n          [-78.388697, 38.203713],\n          [-78.387884, 38.204937],\n          [-78.387682, 38.20524],\n          [-78.387424, 38.205639],\n          [-78.386997, 38.206278],\n          [-78.386781, 38.206604],\n          [-78.386138, 38.207581],\n          [-78.385992, 38.207804],\n          [-78.385531, 38.2085],\n          [-78.38498, 38.209334],\n          [-78.384853, 38.209537],\n          [-78.383889, 38.210987],\n          [-78.383519, 38.211533],\n          [-78.383408, 38.211705],\n          [-78.383194, 38.212041],\n          [-78.382209, 38.213531],\n          [-78.381949, 38.213932],\n          [-78.381401, 38.214759],\n          [-78.380953, 38.215433],\n          [-78.380697, 38.215818],\n          [-78.380472, 38.216158],\n          [-78.379118, 38.218196],\n          [-78.378999, 38.218384],\n          [-78.37862, 38.21895],\n          [-78.377882, 38.220071],\n          [-78.377739, 38.220289],\n          [-78.377587, 38.220523],\n          [-78.376908, 38.221535],\n          [-78.376698, 38.221851],\n          [-78.376516, 38.222128],\n          [-78.375966, 38.222959],\n          [-78.375503, 38.223658],\n          [-78.374143, 38.225716],\n          [-78.373741, 38.226317],\n          [-78.372465, 38.228246],\n          [-78.371604, 38.229546],\n          [-78.371224, 38.230126],\n          [-78.37075, 38.230832],\n          [-78.370117, 38.231792],\n          [-78.369796, 38.23229],\n          [-78.369344, 38.233031],\n          [-78.369247, 38.233202],\n          [-78.369201, 38.233285],\n          [-78.369089, 38.233499],\n          [-78.368757, 38.234191],\n          [-78.368537, 38.23469],\n          [-78.368285, 38.235273],\n          [-78.367348, 38.237406],\n          [-78.367125, 38.237924],\n          [-78.366876, 38.23848],\n          [-78.366632, 38.239054],\n          [-78.366538, 38.239263],\n          [-78.366315, 38.239761],\n          [-78.365981, 38.240523],\n          [-78.365112, 38.242495],\n          [-78.364536, 38.243815],\n          [-78.364277, 38.244425],\n          [-78.363872, 38.245322],\n          [-78.363644, 38.245831],\n          [-78.363475, 38.246227],\n          [-78.363324, 38.246579],\n          [-78.363065, 38.24716],\n          [-78.362399, 38.248697],\n          [-78.362213, 38.249115],\n          [-78.36185, 38.249928],\n          [-78.360994, 38.251906],\n          [-78.360894, 38.252122],\n          [-78.360732, 38.252472],\n          [-78.359818, 38.254556],\n          [-78.359604, 38.255032],\n          [-78.358451, 38.257672],\n          [-78.35837, 38.257854],\n          [-78.357235, 38.260418],\n          [-78.35697, 38.261034],\n          [-78.356749, 38.261526],\n          [-78.356328, 38.262487],\n          [-78.3557, 38.26392],\n          [-78.355441, 38.264489],\n          [-78.354985, 38.265534],\n          [-78.354199, 38.267311],\n          [-78.354014, 38.267697],\n          [-78.353899, 38.267927],\n          [-78.353632, 38.268419],\n          [-78.353386, 38.268835],\n          [-78.353012, 38.269405],\n          [-78.352727, 38.269807],\n          [-78.352433, 38.270193],\n          [-78.351176, 38.271816],\n          [-78.35069, 38.272444],\n          [-78.350332, 38.272914],\n          [-78.349867, 38.273496],\n          [-78.349659, 38.273731],\n          [-78.349448, 38.273949],\n          [-78.349246, 38.274133],\n          [-78.348925, 38.274393],\n          [-78.348653, 38.274592],\n          [-78.348309, 38.274816],\n          [-78.346752, 38.275754],\n          [-78.345609, 38.276449],\n          [-78.34394, 38.277447],\n          [-78.343411, 38.277789],\n          [-78.343205, 38.277938],\n          [-78.342906, 38.278167],\n          [-78.342692, 38.278348],\n          [-78.342621, 38.27841],\n          [-78.342399, 38.278622],\n          [-78.342335, 38.278686],\n          [-78.342171, 38.278857],\n          [-78.341631, 38.279482],\n          [-78.341204, 38.280003],\n          [-78.341139, 38.280089],\n          [-78.341053, 38.280202],\n          [-78.340551, 38.280804],\n          [-78.34033, 38.281097],\n          [-78.339739, 38.281771],\n          [-78.337121, 38.284947],\n          [-78.335554, 38.286807],\n          [-78.334912, 38.287652],\n          [-78.334363, 38.288479],\n          [-78.333901, 38.289321],\n          [-78.332891, 38.291302],\n          [-78.33264, 38.291856],\n          [-78.332046, 38.29316],\n          [-78.331547, 38.294091],\n          [-78.33002, 38.297253],\n          [-78.328705, 38.299896],\n          [-78.328454, 38.300437],\n          [-78.327604, 38.302025],\n          [-78.326529, 38.303681],\n          [-78.325643, 38.304891],\n          [-78.325058, 38.305662],\n          [-78.32399, 38.30691],\n          [-78.3236, 38.307359],\n          [-78.323233, 38.30771],\n          [-78.322626, 38.308335],\n          [-78.320591, 38.310229],\n          [-78.317859, 38.312439],\n          [-78.317136, 38.313055],\n          [-78.314274, 38.315396],\n          [-78.313204, 38.316275],\n          [-78.313084, 38.316374],\n          [-78.312238, 38.317069],\n          [-78.31127, 38.317874],\n          [-78.310555, 38.318624],\n          [-78.308339, 38.321068],\n          [-78.307189, 38.322326],\n          [-78.306432, 38.323147],\n          [-78.305157, 38.324565],\n          [-78.299683, 38.33067],\n          [-78.296227, 38.334366],\n          [-78.294775, 38.336025],\n          [-78.294422, 38.336434],\n          [-78.293518, 38.337393],\n          [-78.292283, 38.338774],\n          [-78.290905, 38.340301],\n          [-78.289054, 38.34231],\n          [-78.287698, 38.343781],\n          [-78.286127, 38.345511],\n          [-78.284805, 38.346961],\n          [-78.284197, 38.347653],\n          [-78.281261, 38.350904],\n          [-78.27928, 38.353063],\n          [-78.277989, 38.354462],\n          [-78.276967, 38.355626],\n          [-78.275482, 38.357205],\n          [-78.275108, 38.357686],\n          [-78.273995, 38.359116],\n          [-78.272612, 38.361053],\n          [-78.269402, 38.365549],\n          [-78.268281, 38.367067],\n          [-78.26707, 38.368543],\n          [-78.266209, 38.369424],\n          [-78.26463, 38.370803],\n          [-78.263855, 38.371431],\n          [-78.262777, 38.372178],\n          [-78.262167, 38.372601],\n          [-78.258589, 38.375046],\n          [-78.253931, 38.378242],\n          [-78.253419, 38.378585],\n          [-78.252722, 38.379065],\n          [-78.251038, 38.380279],\n          [-78.249725, 38.3814],\n          [-78.248824, 38.38242],\n          [-78.247019, 38.384778],\n          [-78.243045, 38.39007],\n          [-78.242379, 38.390835],\n          [-78.241798, 38.391304],\n          [-78.241358, 38.391649],\n          [-78.240659, 38.392107],\n          [-78.239791, 38.392562],\n          [-78.236781, 38.394134],\n          [-78.234618, 38.395478],\n          [-78.233524, 38.396238],\n          [-78.231366, 38.397688],\n          [-78.230593, 38.398159],\n          [-78.229713, 38.398631],\n          [-78.22927, 38.398846],\n          [-78.227176, 38.399941],\n          [-78.224001, 38.401573],\n          [-78.221687, 38.402762],\n          [-78.220927, 38.403115],\n          [-78.219583, 38.403494],\n          [-78.217956, 38.403869],\n          [-78.216834, 38.404329],\n          [-78.216198, 38.404653],\n          [-78.215673, 38.404943],\n          [-78.2147, 38.405692],\n          [-78.214341, 38.406017],\n          [-78.211846, 38.409013],\n          [-78.211205, 38.409859],\n          [-78.208931, 38.412831],\n          [-78.207891, 38.413946],\n          [-78.207388, 38.414459],\n          [-78.206848, 38.414885],\n          [-78.20502, 38.416246],\n          [-78.204339, 38.416746],\n          [-78.203587, 38.417231],\n          [-78.201789, 38.418025],\n          [-78.199931, 38.418788],\n          [-78.198775, 38.419213],\n          [-78.197516, 38.419599],\n          [-78.196891, 38.419728],\n          [-78.193593, 38.420311],\n          [-78.192656, 38.420508],\n          [-78.191772, 38.420736],\n          [-78.190615, 38.421137],\n          [-78.189756, 38.421485],\n          [-78.189131, 38.421795],\n          [-78.188009, 38.422501],\n          [-78.186635, 38.423265],\n          [-78.185396, 38.423841],\n          [-78.184545, 38.424162],\n          [-78.179643, 38.425692],\n          [-78.176595, 38.426575],\n          [-78.175037, 38.427149],\n          [-78.174014, 38.427529],\n          [-78.171007, 38.428688],\n          [-78.169272, 38.429381],\n          [-78.165511, 38.430827],\n          [-78.164119, 38.431371],\n          [-78.162591, 38.431967],\n          [-78.161653, 38.432308],\n          [-78.160661, 38.43271],\n          [-78.160269, 38.432865],\n          [-78.159874, 38.433009],\n          [-78.157491, 38.433942],\n          [-78.157022, 38.434133],\n          [-78.156281, 38.434403],\n          [-78.154122, 38.435214],\n          [-78.152887, 38.435503],\n          [-78.151935, 38.435645],\n          [-78.151237, 38.435723],\n          [-78.149391, 38.435895],\n          [-78.145341, 38.436294],\n          [-78.143178, 38.436516],\n          [-78.141588, 38.436723],\n          [-78.140742, 38.436927],\n          [-78.139967, 38.43716],\n          [-78.139029, 38.437478],\n          [-78.138213, 38.437833],\n          [-78.13673, 38.438732],\n          [-78.135769, 38.439493],\n          [-78.133667, 38.441543],\n          [-78.13309, 38.442092],\n          [-78.132637, 38.442565],\n          [-78.131362, 38.443807],\n          [-78.131197, 38.443972],\n          [-78.13069, 38.444456],\n          [-78.13004, 38.445093],\n          [-78.129654, 38.445515],\n          [-78.129431, 38.445788],\n          [-78.129306, 38.445939],\n          [-78.129135, 38.446147],\n          [-78.126535, 38.449414],\n          [-78.12559, 38.450596],\n          [-78.124937, 38.451403],\n          [-78.12463, 38.451786],\n          [-78.122999, 38.453819],\n          [-78.12268, 38.454222],\n          [-78.122212, 38.454799],\n          [-78.122012, 38.455018],\n          [-78.121815, 38.455209],\n          [-78.121657, 38.455346],\n          [-78.121484, 38.455481],\n          [-78.121283, 38.455622],\n          [-78.121072, 38.455755],\n          [-78.120838, 38.455889],\n          [-78.120605, 38.456007],\n          [-78.120411, 38.456093],\n          [-78.120081, 38.45622],\n          [-78.11988, 38.456286],\n          [-78.119617, 38.456362],\n          [-78.119481, 38.456395],\n          [-78.119029, 38.456484],\n          [-78.118859, 38.456513],\n          [-78.118556, 38.456543],\n          [-78.118252, 38.456558],\n          [-78.117886, 38.45656],\n          [-78.117582, 38.456545],\n          [-78.117215, 38.456509],\n          [-78.11691, 38.456463],\n          [-78.116669, 38.456417],\n          [-78.116299, 38.456332],\n          [-78.114395, 38.455867],\n          [-78.113075, 38.455549],\n          [-78.112183, 38.455337],\n          [-78.111983, 38.455288],\n          [-78.110622, 38.454956],\n          [-78.109647, 38.454713],\n          [-78.109318, 38.454619],\n          [-78.108646, 38.454427],\n          [-78.108148, 38.454266],\n          [-78.107826, 38.454152],\n          [-78.107433, 38.454006],\n          [-78.106215, 38.453523],\n          [-78.103244, 38.452284],\n          [-78.103113, 38.45223],\n          [-78.101465, 38.451517],\n          [-78.100793, 38.451267],\n          [-78.099999, 38.450965],\n          [-78.099633, 38.450843],\n          [-78.099366, 38.450762],\n          [-78.098981, 38.450649],\n          [-78.098604, 38.450547],\n          [-78.098262, 38.45046],\n          [-78.09792, 38.450384],\n          [-78.096808, 38.450181],\n          [-78.096151, 38.450083],\n          [-78.095446, 38.449969],\n          [-78.093727, 38.449707],\n          [-78.092677, 38.449547],\n          [-78.092158, 38.449481],\n          [-78.091766, 38.449445],\n          [-78.091635, 38.449437],\n          [-78.091391, 38.44943],\n          [-78.09088, 38.449437],\n          [-78.090541, 38.449459],\n          [-78.090154, 38.449505],\n          [-78.090027, 38.449526],\n          [-78.089761, 38.44957],\n          [-78.089091, 38.449707],\n          [-78.08849, 38.449845],\n          [-78.087312, 38.450134],\n          [-78.086546, 38.450314],\n          [-78.086092, 38.450427],\n          [-78.085716, 38.450516],\n          [-78.085217, 38.45064],\n          [-78.083614, 38.45102],\n          [-78.082588, 38.451268],\n          [-78.081682, 38.451496],\n          [-78.080934, 38.451707],\n          [-78.080808, 38.451743],\n          [-78.080252, 38.451928],\n          [-78.080061, 38.451995],\n          [-78.079356, 38.452244],\n          [-78.079056, 38.452366],\n          [-78.077758, 38.452899],\n          [-78.07693, 38.453218],\n          [-78.07648, 38.453363],\n          [-78.075972, 38.453504],\n          [-78.075519, 38.453613],\n          [-78.075245, 38.453672],\n          [-78.074633, 38.453773],\n          [-78.073634, 38.453917],\n          [-78.073086, 38.453985],\n          [-78.071708, 38.454165],\n          [-78.070367, 38.45434],\n          [-78.069606, 38.454439],\n          [-78.065196, 38.455001],\n          [-78.0636, 38.455212],\n          [-78.062967, 38.455296],\n          [-78.062279, 38.455383],\n          [-78.061807, 38.45545],\n          [-78.061375, 38.455516],\n          [-78.060496, 38.455651],\n          [-78.059099, 38.455874],\n          [-78.058415, 38.455997],\n          [-78.057861, 38.456107],\n          [-78.057398, 38.456211],\n          [-78.057094, 38.456284],\n          [-78.055369, 38.456762],\n          [-78.054558, 38.456978],\n          [-78.05416, 38.457057],\n          [-78.053923, 38.4571],\n          [-78.053692, 38.457137],\n          [-78.053464, 38.457172],\n          [-78.052965, 38.457229],\n          [-78.052547, 38.457266],\n          [-78.05168, 38.457327],\n          [-78.051381, 38.457343],\n          [-78.051209, 38.457356],\n          [-78.050231, 38.457415],\n          [-78.049522, 38.45745],\n          [-78.049115, 38.457457],\n          [-78.048707, 38.45745],\n          [-78.048107, 38.457414],\n          [-78.046583, 38.457296],\n          [-78.045473, 38.457209],\n          [-78.043615, 38.457066],\n          [-78.04299, 38.457014],\n          [-78.041948, 38.456934],\n          [-78.041564, 38.4569],\n          [-78.040447, 38.456809],\n          [-78.039807, 38.456752],\n          [-78.039565, 38.456722],\n          [-78.038614, 38.456586],\n          [-78.037992, 38.45648],\n          [-78.036619, 38.456229],\n          [-78.036312, 38.456174],\n          [-78.035316, 38.455996],\n          [-78.033993, 38.455756],\n          [-78.033455, 38.455659],\n          [-78.032995, 38.455576],\n          [-78.032344, 38.455462],\n          [-78.032225, 38.455441],\n          [-78.032071, 38.455411],\n          [-78.031918, 38.455381],\n          [-78.030629, 38.455156],\n          [-78.030487, 38.455136],\n          [-78.02993, 38.455035],\n          [-78.029397, 38.454939],\n          [-78.027154, 38.454551],\n          [-78.026507, 38.454439],\n          [-78.026143, 38.454368],\n          [-78.025005, 38.454171],\n          [-78.024336, 38.45404],\n          [-78.023622, 38.453878],\n          [-78.02312, 38.453727],\n          [-78.02273, 38.453603],\n          [-78.022384, 38.453473],\n          [-78.021945, 38.453293],\n          [-78.021688, 38.453179],\n          [-78.02141, 38.45304],\n          [-78.020949, 38.452794],\n          [-78.020606, 38.452593],\n          [-78.018376, 38.451156],\n          [-78.015052, 38.449001],\n          [-78.013038, 38.447702],\n          [-78.012718, 38.447476],\n          [-78.012365, 38.447314],\n          [-78.011913, 38.44707],\n          [-78.011467, 38.446849],\n          [-78.011017, 38.446646],\n          [-78.010785, 38.446548],\n          [-78.01041, 38.446389],\n          [-78.009947, 38.446212],\n          [-78.009475, 38.446047],\n          [-78.009032, 38.44592],\n          [-78.008198, 38.445668],\n          [-78.007806, 38.445574],\n          [-78.007536, 38.445509],\n          [-78.00704, 38.445404],\n          [-78.006541, 38.445314],\n          [-78.006039, 38.445234],\n          [-78.005535, 38.445168],\n          [-78.004882, 38.445103],\n          [-78.00427, 38.44506],\n          [-78.003857, 38.445042],\n          [-78.003259, 38.445032],\n          [-77.996098, 38.445039],\n          [-77.995524, 38.445052],\n          [-77.995083, 38.445072],\n          [-77.9946, 38.445108],\n          [-77.994291, 38.44514],\n          [-77.994119, 38.445159],\n          [-77.993562, 38.445235],\n          [-77.993077, 38.445314],\n          [-77.992738, 38.44538],\n          [-77.992304, 38.445476],\n          [-77.991774, 38.445609],\n          [-77.991277, 38.445754],\n          [-77.990885, 38.44588],\n          [-77.990401, 38.446049],\n          [-77.989902, 38.446248],\n          [-77.98951, 38.446417],\n          [-77.989127, 38.446595],\n          [-77.988671, 38.446826],\n          [-77.988226, 38.44707],\n          [-77.988015, 38.447193],\n          [-77.987964, 38.447222],\n          [-77.986229, 38.448266],\n          [-77.982377, 38.450578],\n          [-77.980067, 38.451965],\n          [-77.978396, 38.452971],\n          [-77.976723, 38.453978],\n          [-77.971729, 38.456974],\n          [-77.970854, 38.457513],\n          [-77.970447, 38.457776],\n          [-77.969812, 38.458205],\n          [-77.969672, 38.458304],\n          [-77.969294, 38.458571],\n          [-77.968878, 38.458872],\n          [-77.968162, 38.459423],\n          [-77.967696, 38.459799],\n          [-77.967125, 38.46028],\n          [-77.966325, 38.460982],\n          [-77.965258, 38.461918],\n          [-77.964866, 38.462267],\n          [-77.960196, 38.466376],\n          [-77.955939, 38.470123],\n          [-77.954947, 38.470996],\n          [-77.954533, 38.471358],\n          [-77.953922, 38.471893],\n          [-77.953458, 38.472304],\n          [-77.953176, 38.472548],\n          [-77.952583, 38.473072],\n          [-77.951119, 38.474355],\n          [-77.950943, 38.474509],\n          [-77.949669, 38.47563],\n          [-77.948949, 38.476265],\n          [-77.948002, 38.477098],\n          [-77.940672, 38.483548],\n          [-77.940481, 38.483731],\n          [-77.940188, 38.484012],\n          [-77.939893, 38.484318],\n          [-77.939484, 38.484776],\n          [-77.93926, 38.485054],\n          [-77.939039, 38.48534],\n          [-77.938835, 38.485618],\n          [-77.938574, 38.486003],\n          [-77.938385, 38.4863],\n          [-77.938154, 38.486695],\n          [-77.936929, 38.489071],\n          [-77.936476, 38.48995],\n          [-77.936307, 38.490277],\n          [-77.936213, 38.490449],\n          [-77.936032, 38.490779],\n          [-77.935797, 38.491168],\n          [-77.935515, 38.491593],\n          [-77.935238, 38.491981],\n          [-77.934904, 38.492412],\n          [-77.934836, 38.492493],\n          [-77.93462, 38.492753],\n          [-77.934238, 38.493183],\n          [-77.933985, 38.493449],\n          [-77.933681, 38.493753],\n          [-77.933395, 38.494018],\n          [-77.933018, 38.494354],\n          [-77.932749, 38.494585],\n          [-77.932252, 38.494973],\n          [-77.93171, 38.495374],\n          [-77.931341, 38.495628],\n          [-77.930966, 38.495866],\n          [-77.930194, 38.496327],\n          [-77.929795, 38.496546],\n          [-77.929468, 38.496713],\n          [-77.928898, 38.496989],\n          [-77.928401, 38.497211],\n          [-77.927814, 38.497454],\n          [-77.927352, 38.49763],\n          [-77.926883, 38.497792],\n          [-77.92627, 38.497988],\n          [-77.925745, 38.498139],\n          [-77.925688, 38.498154],\n          [-77.925207, 38.498279],\n          [-77.924635, 38.498412],\n          [-77.924059, 38.498531],\n          [-77.923478, 38.498637],\n          [-77.923244, 38.498675],\n          [-77.9209, 38.499106],\n          [-77.920407, 38.499196],\n          [-77.916265, 38.499951],\n          [-77.914897, 38.500194],\n          [-77.913262, 38.500498],\n          [-77.912906, 38.500563],\n          [-77.911059, 38.5009],\n          [-77.910401, 38.501012],\n          [-77.909308, 38.501222],\n          [-77.90816, 38.501425],\n          [-77.906956, 38.501647],\n          [-77.902649, 38.502433],\n          [-77.901836, 38.502578],\n          [-77.901383, 38.502661],\n          [-77.899056, 38.503088],\n          [-77.897887, 38.503302],\n          [-77.896932, 38.503454],\n          [-77.896481, 38.503514],\n          [-77.896026, 38.50356],\n          [-77.89557, 38.503592],\n          [-77.895091, 38.503613],\n          [-77.894605, 38.503621],\n          [-77.894338, 38.503619],\n          [-77.894023, 38.503612],\n          [-77.893539, 38.503589],\n          [-77.893152, 38.50356],\n          [-77.891645, 38.503392],\n          [-77.891145, 38.503351],\n          [-77.890705, 38.503331],\n          [-77.890264, 38.503325],\n          [-77.89, 38.503328],\n          [-77.889421, 38.503346],\n          [-77.888918, 38.503375],\n          [-77.888578, 38.503406],\n          [-77.888318, 38.503429],\n          [-77.887823, 38.50349],\n          [-77.887334, 38.503566],\n          [-77.886849, 38.503655],\n          [-77.886369, 38.503759],\n          [-77.885701, 38.503929],\n          [-77.88504, 38.504114],\n          [-77.883872, 38.504451],\n          [-77.882026, 38.504972],\n          [-77.880726, 38.50535],\n          [-77.879756, 38.505628],\n          [-77.879416, 38.505726],\n          [-77.878734, 38.505916],\n          [-77.87665, 38.506514],\n          [-77.873295, 38.507467],\n          [-77.870872, 38.508164],\n          [-77.867574, 38.509112],\n          [-77.86643, 38.509426],\n          [-77.865139, 38.509804],\n          [-77.864878, 38.509875],\n          [-77.864614, 38.509946],\n          [-77.864004, 38.510124],\n          [-77.863963, 38.510136],\n          [-77.863243, 38.510359],\n          [-77.862776, 38.510515],\n          [-77.862313, 38.51068],\n          [-77.86153, 38.510992],\n          [-77.86091, 38.511252],\n          [-77.860341, 38.511504],\n          [-77.860101, 38.511597],\n          [-77.859873, 38.511706],\n          [-77.859049, 38.512033],\n          [-77.858596, 38.512199],\n          [-77.85801, 38.512393],\n          [-77.85641, 38.512859],\n          [-77.85546, 38.513131],\n          [-77.853636, 38.513652],\n          [-77.852939, 38.513842],\n          [-77.85189, 38.514117],\n          [-77.851773, 38.514147],\n          [-77.851155, 38.514282],\n          [-77.850783, 38.514355],\n          [-77.850158, 38.514468],\n          [-77.849529, 38.514566],\n          [-77.848611, 38.514673],\n          [-77.847601, 38.514814],\n          [-77.847219, 38.514874],\n          [-77.846744, 38.514961],\n          [-77.846275, 38.515063],\n          [-77.845622, 38.515227],\n          [-77.843493, 38.515828],\n          [-77.840926, 38.516554],\n          [-77.838953, 38.517123],\n          [-77.838611, 38.51724],\n          [-77.838276, 38.51737],\n          [-77.838087, 38.517452],\n          [-77.837878, 38.517559],\n          [-77.837641, 38.517698],\n          [-77.837371, 38.517879],\n          [-77.837159, 38.518042],\n          [-77.836631, 38.518508],\n          [-77.833939, 38.52107],\n          [-77.833536, 38.521444],\n          [-77.832859, 38.52207],\n          [-77.832618, 38.52227],\n          [-77.832363, 38.52246],\n          [-77.832151, 38.522605],\n          [-77.831761, 38.52284],\n          [-77.831645, 38.522905],\n          [-77.831341, 38.523059],\n          [-77.831027, 38.523201],\n          [-77.830705, 38.52333],\n          [-77.830375, 38.523446],\n          [-77.82725, 38.524408],\n          [-77.825282, 38.525005],\n          [-77.824825, 38.525153],\n          [-77.824766, 38.525172],\n          [-77.82414, 38.525403],\n          [-77.823904, 38.525501],\n          [-77.823444, 38.525707],\n          [-77.823161, 38.525842],\n          [-77.822816, 38.526023],\n          [-77.822483, 38.526216],\n          [-77.82216, 38.526429],\n          [-77.821905, 38.526618],\n          [-77.821824, 38.526681],\n          [-77.821661, 38.526816],\n          [-77.82143, 38.527024],\n          [-77.821026, 38.527454],\n          [-77.820758, 38.527783],\n          [-77.820516, 38.528112],\n          [-77.820197, 38.52856],\n          [-77.819895, 38.529029],\n          [-77.81945, 38.529798],\n          [-77.818541, 38.531386],\n          [-77.817476, 38.533249],\n          [-77.817174, 38.533749],\n          [-77.815779, 38.536111],\n          [-77.812836, 38.541042],\n          [-77.812145, 38.542152],\n          [-77.811443, 38.543345],\n          [-77.81107, 38.543916],\n          [-77.809169, 38.54677],\n          [-77.807061, 38.549912],\n          [-77.805801, 38.55177],\n          [-77.803189, 38.555743],\n          [-77.802664, 38.55653],\n          [-77.802442, 38.556869],\n          [-77.802253, 38.557175],\n          [-77.802079, 38.557492],\n          [-77.801838, 38.557971],\n          [-77.801782, 38.55809],\n          [-77.801657, 38.55838],\n          [-77.801522, 38.558722],\n          [-77.801429, 38.558994],\n          [-77.801302, 38.559432],\n          [-77.801209, 38.559822],\n          [-77.801144, 38.560169],\n          [-77.801065, 38.560727],\n          [-77.801025, 38.56131],\n          [-77.801027, 38.561813],\n          [-77.801049, 38.562487],\n          [-77.801069, 38.562893],\n          [-77.801213, 38.565749],\n          [-77.801305, 38.567636],\n          [-77.80137, 38.568961],\n          [-77.801541, 38.572402],\n          [-77.801599, 38.573623],\n          [-77.801669, 38.575224],\n          [-77.801707, 38.575829],\n          [-77.801772, 38.577117],\n          [-77.801874, 38.579138],\n          [-77.801902, 38.579759],\n          [-77.801914, 38.579914],\n          [-77.801945, 38.580642],\n          [-77.801977, 38.581198],\n          [-77.802036, 38.582417],\n          [-77.802118, 38.584113],\n          [-77.802126, 38.584391],\n          [-77.802131, 38.584986],\n          [-77.802118, 38.585525],\n          [-77.802088, 38.586052],\n          [-77.802017, 38.586791],\n          [-77.801743, 38.589112],\n          [-77.801725, 38.589268],\n          [-77.801437, 38.591698],\n          [-77.801342, 38.5925],\n          [-77.801281, 38.593006],\n          [-77.800994, 38.595455],\n          [-77.800644, 38.598437],\n          [-77.800492, 38.599704],\n          [-77.800457, 38.599972],\n          [-77.800268, 38.601612],\n          [-77.800209, 38.602305],\n          [-77.80017, 38.602992],\n          [-77.800152, 38.603904],\n          [-77.800152, 38.604035],\n          [-77.800152, 38.604483],\n          [-77.800172, 38.60559],\n          [-77.800187, 38.606551],\n          [-77.800205, 38.607644],\n          [-77.80022, 38.608813],\n          [-77.800237, 38.609384],\n          [-77.800232, 38.610093],\n          [-77.800248, 38.611162],\n          [-77.80027, 38.611781],\n          [-77.800276, 38.611972],\n          [-77.800298, 38.612639],\n          [-77.800312, 38.613039],\n          [-77.800332, 38.613399],\n          [-77.800397, 38.614527],\n          [-77.800421, 38.615203],\n          [-77.800432, 38.61575],\n          [-77.800444, 38.616559],\n          [-77.800478, 38.618723],\n          [-77.8005, 38.619601],\n          [-77.800525, 38.620811],\n          [-77.800527, 38.620908],\n          [-77.800548, 38.62192],\n          [-77.80058, 38.623403],\n          [-77.800594, 38.624213],\n          [-77.800603, 38.625413],\n          [-77.80062, 38.627386],\n          [-77.800629, 38.627856],\n          [-77.800651, 38.62934],\n          [-77.800658, 38.629863],\n          [-77.800688, 38.631295],\n          [-77.800701, 38.63219],\n          [-77.800708, 38.632656],\n          [-77.800729, 38.632937],\n          [-77.800749, 38.6331],\n          [-77.800764, 38.633194],\n          [-77.800824, 38.633493],\n          [-77.8009, 38.63375],\n          [-77.801033, 38.634132],\n          [-77.801091, 38.634277],\n          [-77.801339, 38.634852],\n          [-77.801526, 38.635289],\n          [-77.801703, 38.635692],\n          [-77.801752, 38.635808],\n          [-77.801965, 38.636295],\n          [-77.802897, 38.638462],\n          [-77.802996, 38.638693],\n          [-77.803206, 38.639174],\n          [-77.803351, 38.639505],\n          [-77.803635, 38.640158],\n          [-77.803774, 38.640485],\n          [-77.80405, 38.641121],\n          [-77.804137, 38.641325],\n          [-77.804199, 38.641471],\n          [-77.804367, 38.641868],\n          [-77.804398, 38.641941],\n          [-77.804535, 38.642359],\n          [-77.804602, 38.642621],\n          [-77.804642, 38.642832],\n          [-77.804669, 38.643038],\n          [-77.804677, 38.643118],\n          [-77.804687, 38.643291],\n          [-77.804696, 38.643722],\n          [-77.804696, 38.644409],\n          [-77.804677, 38.644766],\n          [-77.804636, 38.645023],\n          [-77.804576, 38.645279],\n          [-77.804498, 38.645531],\n          [-77.804445, 38.645671],\n          [-77.804179, 38.646296],\n          [-77.803976, 38.646795],\n          [-77.803645, 38.647584],\n          [-77.803607, 38.647672],\n          [-77.803037, 38.649027],\n          [-77.802582, 38.650099],\n          [-77.802488, 38.65032],\n          [-77.80226, 38.650816],\n          [-77.802226, 38.650891],\n          [-77.801705, 38.651973],\n          [-77.801524, 38.652348],\n          [-77.800517, 38.654435],\n          [-77.800311, 38.654856],\n          [-77.800109, 38.655223],\n          [-77.799504, 38.656216],\n          [-77.799258, 38.656629],\n          [-77.799064, 38.656995],\n          [-77.798952, 38.657238],\n          [-77.798593, 38.658126],\n          [-77.798524, 38.658287],\n          [-77.798395, 38.658591],\n          [-77.798266, 38.658901],\n          [-77.798049, 38.659428],\n          [-77.797829, 38.659963],\n          [-77.79736, 38.661105],\n          [-77.797075, 38.661795],\n          [-77.796724, 38.662641],\n          [-77.79625, 38.663783],\n          [-77.796094, 38.664161],\n          [-77.795637, 38.665271],\n          [-77.79528, 38.666132],\n          [-77.795248, 38.66621],\n          [-77.794069, 38.669063],\n          [-77.793674, 38.670024],\n          [-77.793379, 38.670723],\n          [-77.793244, 38.671036],\n          [-77.793103, 38.671307],\n          [-77.792943, 38.671571],\n          [-77.792813, 38.671755],\n          [-77.792641, 38.671968],\n          [-77.792454, 38.672174],\n          [-77.792251, 38.672371],\n          [-77.791496, 38.673047],\n          [-77.791134, 38.673372],\n          [-77.790643, 38.673809],\n          [-77.789269, 38.675032],\n          [-77.788765, 38.675507],\n          [-77.788692, 38.675576],\n          [-77.788181, 38.676104],\n          [-77.787807, 38.676549],\n          [-77.787668, 38.676743],\n          [-77.787501, 38.677031],\n          [-77.78738, 38.677265],\n          [-77.78733, 38.677383],\n          [-77.787232, 38.677659],\n          [-77.787165, 38.677911],\n          [-77.787115, 38.678177],\n          [-77.787085, 38.678445],\n          [-77.787079, 38.678552],\n          [-77.787095, 38.67913],\n          [-77.787153, 38.679798],\n          [-77.787259, 38.680924],\n          [-77.787331, 38.681886],\n          [-77.787363, 38.682419],\n          [-77.787413, 38.683635],\n          [-77.787401, 38.684203],\n          [-77.787392, 38.684611],\n          [-77.78735, 38.685019],\n          [-77.787315, 38.685264],\n          [-77.787231, 38.685728],\n          [-77.787136, 38.686251],\n          [-77.787114, 38.686332],\n          [-77.78692, 38.686986],\n          [-77.786696, 38.687619],\n          [-77.786501, 38.688074],\n          [-77.786277, 38.68855],\n          [-77.786098, 38.688888],\n          [-77.785944, 38.689154],\n          [-77.785576, 38.689748],\n          [-77.784818, 38.690938],\n          [-77.784516, 38.691425],\n          [-77.784271, 38.691807],\n          [-77.783827, 38.692506],\n          [-77.783401, 38.6932],\n          [-77.783246, 38.693444],\n          [-77.782384, 38.694802],\n          [-77.782205, 38.695084],\n          [-77.781593, 38.696059],\n          [-77.781243, 38.69667],\n          [-77.78108, 38.696994],\n          [-77.780923, 38.697347],\n          [-77.780812, 38.697637],\n          [-77.780687, 38.698004],\n          [-77.780614, 38.698231],\n          [-77.780587, 38.698314],\n          [-77.780392, 38.699181],\n          [-77.780333, 38.699659],\n          [-77.780298, 38.700094],\n          [-77.780287, 38.700389],\n          [-77.780289, 38.700757],\n          [-77.780315, 38.701452],\n          [-77.780365, 38.702797],\n          [-77.780397, 38.703509],\n          [-77.780462, 38.705131],\n          [-77.780535, 38.706895],\n          [-77.780587, 38.708144],\n          [-77.780612, 38.708911],\n          [-77.780675, 38.710324],\n          [-77.780782, 38.713019],\n          [-77.780806, 38.713639],\n          [-77.780906, 38.716128],\n          [-77.780923, 38.716557],\n          [-77.780985, 38.71812],\n          [-77.781094, 38.720811],\n          [-77.781111, 38.721348],\n          [-77.78117, 38.722771],\n          [-77.781205, 38.723428],\n          [-77.781207, 38.723933],\n          [-77.781141, 38.724638],\n          [-77.781062, 38.725028],\n          [-77.780986, 38.725313],\n          [-77.780873, 38.725651],\n          [-77.780799, 38.725838],\n          [-77.780763, 38.72593],\n          [-77.780608, 38.726258],\n          [-77.780457, 38.726537],\n          [-77.78029, 38.726814],\n          [-77.780067, 38.727137],\n          [-77.779841, 38.727426],\n          [-77.779593, 38.727712],\n          [-77.779535, 38.727773],\n          [-77.779432, 38.727882],\n          [-77.779137, 38.728163],\n          [-77.778889, 38.728379],\n          [-77.778564, 38.728638],\n          [-77.777988, 38.729064],\n          [-77.777903, 38.729128],\n          [-77.777813, 38.729195],\n          [-77.777751, 38.72924],\n          [-77.777544, 38.729395],\n          [-77.776507, 38.73018],\n          [-77.77534, 38.731069],\n          [-77.775049, 38.73127],\n          [-77.774364, 38.73177],\n          [-77.774051, 38.732009],\n          [-77.773303, 38.732554],\n          [-77.772496, 38.733155],\n          [-77.772444, 38.733192],\n          [-77.771424, 38.733941],\n          [-77.770375, 38.73472],\n          [-77.769774, 38.735166],\n          [-77.766501, 38.737595],\n          [-77.766092, 38.7379],\n          [-77.766013, 38.737957],\n          [-77.764613, 38.738973],\n          [-77.763699, 38.739647],\n          [-77.760294, 38.742188],\n          [-77.759475, 38.742805],\n          [-77.758292, 38.743704],\n          [-77.757242, 38.744507],\n          [-77.756734, 38.744888],\n          [-77.75607, 38.745394],\n          [-77.755332, 38.74595],\n          [-77.753869, 38.747051],\n          [-77.753512, 38.747317],\n          [-77.752239, 38.748266],\n          [-77.751486, 38.748835],\n          [-77.749304, 38.750477],\n          [-77.747696, 38.751677],\n          [-77.747175, 38.752069],\n          [-77.746636, 38.752468],\n          [-77.746089, 38.752858],\n          [-77.745719, 38.753113],\n          [-77.745109, 38.753534],\n          [-77.744529, 38.753946],\n          [-77.744441, 38.754016],\n          [-77.743143, 38.755039],\n          [-77.742369, 38.755648],\n          [-77.741019, 38.756723],\n          [-77.740302, 38.757289],\n          [-77.74012, 38.757439],\n          [-77.739869, 38.757633],\n          [-77.739452, 38.757933],\n          [-77.738896, 38.758325],\n          [-77.738458, 38.758616],\n          [-77.737994, 38.758912],\n          [-77.737675, 38.759109],\n          [-77.736928, 38.759546],\n          [-77.736529, 38.759764],\n          [-77.73598, 38.760062],\n          [-77.735512, 38.760302],\n          [-77.734641, 38.760749],\n          [-77.731871, 38.762168],\n          [-77.730354, 38.762946],\n          [-77.726563, 38.764904],\n          [-77.726297, 38.765042],\n          [-77.725494, 38.765462],\n          [-77.724993, 38.765717],\n          [-77.724283, 38.76606],\n          [-77.724155, 38.766114],\n          [-77.723683, 38.766274],\n          [-77.723631, 38.766287],\n          [-77.723461, 38.76633],\n          [-77.723208, 38.766384],\n          [-77.722948, 38.766425],\n          [-77.722732, 38.766449],\n          [-77.722439, 38.766466],\n          [-77.722204, 38.76647],\n          [-77.721761, 38.76645],\n          [-77.721338, 38.766416],\n          [-77.720827, 38.766373],\n          [-77.71958, 38.766268],\n          [-77.718945, 38.766226],\n          [-77.71829, 38.766214],\n          [-77.717886, 38.766231],\n          [-77.717644, 38.766248],\n          [-77.717238, 38.766296],\n          [-77.716986, 38.766333],\n          [-77.716478, 38.766426],\n          [-77.715933, 38.766539],\n          [-77.71313, 38.767126],\n          [-77.71253, 38.76725],\n          [-77.711446, 38.767475],\n          [-77.711213, 38.767521],\n          [-77.709832, 38.76781],\n          [-77.709246, 38.767933],\n          [-77.708584, 38.768078],\n          [-77.708134, 38.768177],\n          [-77.707984, 38.768211],\n          [-77.707651, 38.768287],\n          [-77.707208, 38.768389],\n          [-77.707037, 38.768429],\n          [-77.706966, 38.768445],\n          [-77.706604, 38.768529],\n          [-77.705724, 38.768733],\n          [-77.704884, 38.768928],\n          [-77.704008, 38.769125],\n          [-77.703413, 38.769266],\n          [-77.703044, 38.769359],\n          [-77.702667, 38.769454],\n          [-77.702289, 38.769565],\n          [-77.701922, 38.769687],\n          [-77.701705, 38.769766],\n          [-77.701294, 38.769925],\n          [-77.700381, 38.770277],\n          [-77.698624, 38.770957],\n          [-77.69792, 38.771222],\n          [-77.696779, 38.771656],\n          [-77.696286, 38.771839],\n          [-77.694688, 38.772451],\n          [-77.693388, 38.772942],\n          [-77.69338, 38.772945],\n          [-77.69299, 38.773092],\n          [-77.691828, 38.773541],\n          [-77.689985, 38.774273],\n          [-77.689184, 38.774593],\n          [-77.687947, 38.775099],\n          [-77.68652, 38.775696],\n          [-77.686093, 38.775875],\n          [-77.685013, 38.776323],\n          [-77.684548, 38.776508],\n          [-77.683617, 38.77688],\n          [-77.682281, 38.77742],\n          [-77.681906, 38.77757],\n          [-77.680152, 38.778273],\n          [-77.680071, 38.778309],\n          [-77.679964, 38.778348],\n          [-77.67944, 38.778559],\n          [-77.679135, 38.778682],\n          [-77.679008, 38.778733],\n          [-77.678765, 38.778831],\n          [-77.678322, 38.779011],\n          [-77.677302, 38.779417],\n          [-77.677036, 38.779514],\n          [-77.676871, 38.779569],\n          [-77.676375, 38.779711],\n          [-77.675903, 38.779834],\n          [-77.675739, 38.779874],\n          [-77.675282, 38.779966],\n          [-77.675165, 38.77999],\n          [-77.673681, 38.780291],\n          [-77.67245, 38.780538],\n          [-77.671784, 38.780666],\n          [-77.671623, 38.780699],\n          [-77.671392, 38.780752],\n          [-77.670977, 38.780857],\n          [-77.67067, 38.780949],\n          [-77.669909, 38.781181],\n          [-77.669755, 38.781229],\n          [-77.668691, 38.781557],\n          [-77.668105, 38.781729],\n          [-77.66717, 38.781984],\n          [-77.665556, 38.7824],\n          [-77.665397, 38.782443],\n          [-77.66509, 38.782528],\n          [-77.663117, 38.783041],\n          [-77.662729, 38.783142],\n          [-77.658982, 38.784122],\n          [-77.658234, 38.784318],\n          [-77.657487, 38.784515],\n          [-77.656903, 38.784668],\n          [-77.656444, 38.784785],\n          [-77.655772, 38.784954],\n          [-77.655488, 38.785028],\n          [-77.654149, 38.78538],\n          [-77.653073, 38.785665],\n          [-77.652817, 38.785732],\n          [-77.652723, 38.785757],\n          [-77.652335, 38.78586],\n          [-77.650432, 38.786358],\n          [-77.650292, 38.786394],\n          [-77.648546, 38.786845],\n          [-77.648132, 38.786953],\n          [-77.6471, 38.787217],\n          [-77.646912, 38.787266],\n          [-77.646792, 38.787296],\n          [-77.646475, 38.787378],\n          [-77.643862, 38.788066],\n          [-77.643514, 38.788151],\n          [-77.642956, 38.788288],\n          [-77.641845, 38.788545],\n          [-77.641256, 38.788678],\n          [-77.640668, 38.788812],\n          [-77.637878, 38.789456],\n          [-77.637724, 38.789491],\n          [-77.635026, 38.790112],\n          [-77.633026, 38.790572],\n          [-77.631672, 38.790883],\n          [-77.630391, 38.791179],\n          [-77.630168, 38.791231],\n          [-77.629412, 38.791414],\n          [-77.629006, 38.791523],\n          [-77.628982, 38.791529],\n          [-77.628275, 38.791722],\n          [-77.626219, 38.792284],\n          [-77.625465, 38.792483],\n          [-77.624741, 38.792675],\n          [-77.624567, 38.792721],\n          [-77.624468, 38.792748],\n          [-77.624067, 38.792856],\n          [-77.622821, 38.793191],\n          [-77.622323, 38.793326],\n          [-77.622182, 38.793359],\n          [-77.62157, 38.793529],\n          [-77.621412, 38.793572],\n          [-77.620477, 38.793825],\n          [-77.620443, 38.793835],\n          [-77.619193, 38.794171],\n          [-77.619018, 38.794213],\n          [-77.617763, 38.794556],\n          [-77.617092, 38.79473],\n          [-77.616747, 38.794832],\n          [-77.614017, 38.7956],\n          [-77.613309, 38.7958],\n          [-77.613097, 38.795859],\n          [-77.611965, 38.796178],\n          [-77.611011, 38.796432],\n          [-77.609519, 38.79683],\n          [-77.609066, 38.796955],\n          [-77.60887, 38.79701],\n          [-77.608124, 38.797223],\n          [-77.607861, 38.79729],\n          [-77.60659, 38.797608],\n          [-77.604759, 38.798106],\n          [-77.603341, 38.798433],\n          [-77.602615, 38.798623],\n          [-77.60217, 38.798681],\n          [-77.60178, 38.798726],\n          [-77.60159, 38.798739],\n          [-77.601338, 38.79876],\n          [-77.601043, 38.798748],\n          [-77.600761, 38.798726],\n          [-77.600475, 38.798685],\n          [-77.600088, 38.798626],\n          [-77.598701, 38.798329],\n          [-77.598447, 38.798288],\n          [-77.598168, 38.798263],\n          [-77.597945, 38.798266],\n          [-77.597733, 38.798267],\n          [-77.597515, 38.798295],\n          [-77.597295, 38.798329],\n          [-77.59709, 38.79838],\n          [-77.596838, 38.798472],\n          [-77.596056, 38.79873],\n          [-77.595792, 38.798802],\n          [-77.595557, 38.798839],\n          [-77.595321, 38.798872],\n          [-77.595123, 38.798893],\n          [-77.594903, 38.798906],\n          [-77.594606, 38.798902],\n          [-77.592349, 38.798571],\n          [-77.589853, 38.798246],\n          [-77.587564, 38.797961],\n          [-77.584659, 38.797708],\n          [-77.583518, 38.797592],\n          [-77.582596, 38.797507],\n          [-77.581727, 38.797465],\n          [-77.580645, 38.797422],\n          [-77.579853, 38.797408],\n          [-77.579381, 38.797391],\n          [-77.579328, 38.797391],\n          [-77.578346, 38.797391],\n          [-77.576989, 38.797404],\n          [-77.576007, 38.797446],\n          [-77.575373, 38.797504],\n          [-77.571144, 38.797797],\n          [-77.569287, 38.79792],\n          [-77.56555, 38.798187],\n          [-77.561659, 38.798447],\n          [-77.555891, 38.7988],\n          [-77.553755, 38.798951],\n          [-77.550887, 38.799152],\n          [-77.550295, 38.799193],\n          [-77.548407, 38.799331],\n          [-77.54595, 38.799494],\n          [-77.541063, 38.799812],\n          [-77.539341, 38.799946],\n          [-77.536546, 38.800151],\n          [-77.532281, 38.800448],\n          [-77.529135, 38.800667],\n          [-77.525861, 38.800895],\n          [-77.523173, 38.801079],\n          [-77.520134, 38.801324],\n          [-77.519426, 38.801374],\n          [-77.518588, 38.801436],\n          [-77.514662, 38.801698],\n          [-77.51275, 38.801833],\n          [-77.512257, 38.801883],\n          [-77.51176, 38.801949],\n          [-77.511242, 38.802033],\n          [-77.510728, 38.802133],\n          [-77.510237, 38.802245],\n          [-77.509757, 38.802371],\n          [-77.509283, 38.802511],\n          [-77.508762, 38.802686],\n          [-77.508249, 38.802874],\n          [-77.503238, 38.804849],\n          [-77.501867, 38.805383],\n          [-77.49854, 38.806696],\n          [-77.492854, 38.808929],\n          [-77.492586, 38.809039],\n          [-77.491408, 38.809499],\n          [-77.490728, 38.809768],\n          [-77.490387, 38.809903],\n          [-77.489846, 38.810125],\n          [-77.48976, 38.810159],\n          [-77.489588, 38.810228],\n          [-77.488128, 38.810814],\n          [-77.487975, 38.810876],\n          [-77.487938, 38.810891],\n          [-77.487614, 38.811027],\n          [-77.486889, 38.811312],\n          [-77.485515, 38.811841],\n          [-77.481021, 38.813606],\n          [-77.480031, 38.813987],\n          [-77.479528, 38.81418],\n          [-77.478278, 38.814671],\n          [-77.477784, 38.814859],\n          [-77.476696, 38.815283],\n          [-77.476308, 38.815444],\n          [-77.470849, 38.817587],\n          [-77.469997, 38.817934],\n          [-77.469107, 38.818314],\n          [-77.468263, 38.818692],\n          [-77.467788, 38.818912],\n          [-77.466824, 38.819384],\n          [-77.466481, 38.819559],\n          [-77.465978, 38.819814],\n          [-77.465888, 38.819862],\n          [-77.465082, 38.820299],\n          [-77.464689, 38.820516],\n          [-77.463916, 38.820976],\n          [-77.463568, 38.821184],\n          [-77.462817, 38.82165],\n          [-77.462169, 38.822067],\n          [-77.461524, 38.822499],\n          [-77.460742, 38.823046],\n          [-77.459971, 38.823615],\n          [-77.459453, 38.824009],\n          [-77.458829, 38.824505],\n          [-77.458041, 38.825157],\n          [-77.457989, 38.825199],\n          [-77.457719, 38.825436],\n          [-77.457456, 38.825667],\n          [-77.457174, 38.825914],\n          [-77.456485, 38.82655],\n          [-77.455925, 38.827089],\n          [-77.455609, 38.827408],\n          [-77.455354, 38.827664],\n          [-77.455286, 38.827736],\n          [-77.454763, 38.828288],\n          [-77.453687, 38.829492],\n          [-77.45117, 38.83231],\n          [-77.450091, 38.833546],\n          [-77.449603, 38.834072],\n          [-77.4484, 38.835411],\n          [-77.448317, 38.835496],\n          [-77.447073, 38.836883],\n          [-77.446568, 38.837456],\n          [-77.444983, 38.839239],\n          [-77.444962, 38.839261],\n          [-77.44448, 38.839771],\n          [-77.443925, 38.840374],\n          [-77.443121, 38.841151],\n          [-77.442523, 38.841683],\n          [-77.442048, 38.842083],\n          [-77.441563, 38.842472],\n          [-77.44121, 38.842729],\n          [-77.440835, 38.842989],\n          [-77.440353, 38.843301],\n          [-77.439357, 38.843895],\n          [-77.438808, 38.844189],\n          [-77.438412, 38.844388],\n          [-77.438154, 38.844513],\n          [-77.437585, 38.844773],\n          [-77.43695, 38.845042],\n          [-77.436125, 38.845358],\n          [-77.435386, 38.845611],\n          [-77.434841, 38.845778],\n          [-77.434461, 38.845886],\n          [-77.434065, 38.845989],\n          [-77.433588, 38.846102],\n          [-77.432595, 38.846311],\n          [-77.431976, 38.846424],\n          [-77.431894, 38.846439],\n          [-77.43166, 38.846482],\n          [-77.43013, 38.84677],\n          [-77.428638, 38.847052],\n          [-77.427672, 38.847201],\n          [-77.426895, 38.847336],\n          [-77.426613, 38.847387],\n          [-77.423954, 38.847868],\n          [-77.42318, 38.84802],\n          [-77.422578, 38.848129],\n          [-77.421734, 38.848284],\n          [-77.419777, 38.84865],\n          [-77.418032, 38.848977],\n          [-77.416532, 38.849246],\n          [-77.415198, 38.849482],\n          [-77.414151, 38.849672],\n          [-77.413692, 38.849756],\n          [-77.413004, 38.849886],\n          [-77.41025, 38.850388],\n          [-77.408348, 38.850725],\n          [-77.406003, 38.851167],\n          [-77.404553, 38.851419],\n          [-77.403103, 38.851676],\n          [-77.402433, 38.851803],\n          [-77.401513, 38.851954],\n          [-77.399882, 38.852249],\n          [-77.399048, 38.852319],\n          [-77.398718, 38.852375],\n          [-77.397996, 38.852492],\n          [-77.397318, 38.852624],\n          [-77.396752, 38.852714],\n          [-77.396348, 38.852749],\n          [-77.395658, 38.852767],\n          [-77.395009, 38.8528],\n          [-77.394695, 38.852837],\n          [-77.39433, 38.852891],\n          [-77.393802, 38.852984],\n          [-77.393126, 38.853114],\n          [-77.392725, 38.85318],\n          [-77.392095, 38.853297],\n          [-77.391904, 38.853339],\n          [-77.391134, 38.853478],\n          [-77.389836, 38.853723],\n          [-77.389215, 38.853845],\n          [-77.38892, 38.853895],\n          [-77.388716, 38.853941],\n          [-77.388024, 38.854062],\n          [-77.387165, 38.854196],\n          [-77.386771, 38.854162],\n          [-77.386529, 38.854111],\n          [-77.386343, 38.854055],\n          [-77.386187, 38.853987],\n          [-77.386127, 38.853954],\n          [-77.386079, 38.85392],\n          [-77.385986, 38.853839],\n          [-77.385938, 38.853785],\n          [-77.385904, 38.853738],\n          [-77.385849, 38.853638],\n          [-77.385829, 38.853585],\n          [-77.385812, 38.853521],\n          [-77.3858, 38.853402],\n          [-77.385805, 38.853336],\n          [-77.385817, 38.853271],\n          [-77.38586, 38.853155],\n          [-77.385888, 38.853105],\n          [-77.385929, 38.853047],\n          [-77.38601, 38.852959],\n          [-77.386068, 38.85291],\n          [-77.386119, 38.852873],\n          [-77.386233, 38.85281],\n          [-77.386292, 38.852784],\n          [-77.386367, 38.852757],\n          [-77.386444, 38.852736],\n          [-77.386551, 38.852715],\n          [-77.386695, 38.852705],\n          [-77.38684, 38.852711],\n          [-77.386899, 38.85272],\n          [-77.386985, 38.852739],\n          [-77.387131, 38.852784],\n          [-77.387234, 38.852827],\n          [-77.387327, 38.852872],\n          [-77.387501, 38.852977],\n          [-77.387596, 38.853046],\n          [-77.387689, 38.853125],\n          [-77.387869, 38.853301],\n          [-77.388005, 38.8535],\n          [-77.388211, 38.853861],\n          [-77.388248, 38.853958],\n          [-77.38834, 38.854202],\n          [-77.388434, 38.854509],\n          [-77.388512, 38.85483],\n          [-77.388556, 38.855045],\n          [-77.388563, 38.855077],\n          [-77.388615, 38.855398],\n          [-77.38864, 38.855726],\n          [-77.388657, 38.85606],\n          [-77.388632, 38.856494],\n          [-77.388606, 38.856728],\n          [-77.388546, 38.857062],\n          [-77.388494, 38.857283],\n          [-77.388383, 38.85759],\n          [-77.388245, 38.857898],\n          [-77.387962, 38.858392],\n          [-77.387722, 38.858713],\n          [-77.387587, 38.858842],\n          [-77.387448, 38.858992],\n          [-77.38738, 38.859049],\n          [-77.387049, 38.859315],\n          [-77.387001, 38.859355],\n          [-77.386572, 38.859616],\n          [-77.386057, 38.859876],\n          [-77.385696, 38.860037],\n          [-77.385104, 38.860297],\n          [-77.384246, 38.860678],\n          [-77.383311, 38.861091],\n          [-77.382484, 38.861549],\n          [-77.381927, 38.861964],\n          [-77.381649, 38.862271],\n          [-77.381472, 38.862656],\n          [-77.38114, 38.86254],\n          [-77.380676, 38.862336],\n          [-77.380373, 38.862167],\n          [-77.380144, 38.862016],\n          [-77.379932, 38.861857],\n          [-77.379724, 38.861669],\n          [-77.379541, 38.861495],\n          [-77.379299, 38.861256],\n          [-77.379174, 38.86114],\n          [-77.378963, 38.86097],\n          [-77.378779, 38.860822],\n          [-77.378622, 38.860715],\n          [-77.378375, 38.860584],\n          [-77.37825, 38.860526],\n          [-77.377901, 38.860354],\n          [-77.377674, 38.860258],\n          [-77.377503, 38.860194],\n          [-77.376982, 38.860031],\n          [-77.376724, 38.859968],\n          [-77.376465, 38.859908],\n          [-77.376139, 38.859843],\n          [-77.375957, 38.859809],\n          [-77.375449, 38.859704],\n          [-77.37477, 38.859591],\n          [-77.373992, 38.859482],\n          [-77.373385, 38.859411],\n          [-77.373319, 38.859405],\n          [-77.371684, 38.859251],\n          [-77.371331, 38.859226],\n          [-77.37112, 38.859211],\n          [-77.371099, 38.85942],\n          [-77.371098, 38.859619],\n          [-77.371033, 38.860102],\n          [-77.370993, 38.860407],\n          [-77.370953, 38.86073],\n          [-77.370894, 38.86095],\n          [-77.370816, 38.861165],\n          [-77.370757, 38.861296],\n          [-77.370665, 38.861443],\n          [-77.370575, 38.861587],\n          [-77.370384, 38.861875],\n          [-77.370116, 38.862301],\n          [-77.369869, 38.862675],\n          [-77.369695, 38.862937],\n          [-77.369553, 38.863149],\n          [-77.369282, 38.863562],\n          [-77.369075, 38.863878],\n          [-77.369003, 38.863978],\n          [-77.368943, 38.864053],\n          [-77.368872, 38.864143],\n          [-77.368754, 38.864281],\n          [-77.368648, 38.864383],\n          [-77.368548, 38.86448],\n          [-77.368413, 38.864611],\n          [-77.368244, 38.864751],\n          [-77.368139, 38.86483],\n          [-77.368096, 38.864859],\n          [-77.367962, 38.864949],\n          [-77.367753, 38.865087],\n          [-77.36752, 38.865221],\n          [-77.36716, 38.865425],\n          [-77.366916, 38.865565],\n          [-77.366749, 38.865664],\n          [-77.366693, 38.865696],\n          [-77.366603, 38.865757],\n          [-77.36621, 38.865941],\n          [-77.365964, 38.866096],\n          [-77.365677, 38.866275],\n          [-77.365412, 38.86648],\n          [-77.365205, 38.866666],\n          [-77.365092, 38.866802],\n          [-77.364926, 38.867027],\n          [-77.364819, 38.867215],\n          [-77.364795, 38.867271],\n          [-77.364687, 38.867526],\n          [-77.364631, 38.867731],\n          [-77.364602, 38.867885],\n          [-77.364585, 38.868103],\n          [-77.364599, 38.86833],\n          [-77.364602, 38.868416],\n          [-77.364653, 38.868646],\n          [-77.364749, 38.868903],\n          [-77.364915, 38.869232],\n          [-77.365031, 38.869489],\n          [-77.36519, 38.869811],\n          [-77.365353, 38.870145],\n          [-77.365541, 38.870577],\n          [-77.365608, 38.870714],\n          [-77.36564, 38.87078],\n          [-77.365767, 38.871048],\n          [-77.365858, 38.871232],\n          [-77.365914, 38.871335],\n          [-77.366032, 38.871546],\n          [-77.366196, 38.871805],\n          [-77.366355, 38.872046],\n          [-77.366507, 38.872259],\n          [-77.366678, 38.872501],\n          [-77.366856, 38.872754],\n          [-77.366963, 38.872925],\n          [-77.367022, 38.873039],\n          [-77.367081, 38.873163],\n          [-77.367145, 38.873344],\n          [-77.367182, 38.87346],\n          [-77.367204, 38.873534],\n          [-77.367233, 38.873695],\n          [-77.36726, 38.873889],\n          [-77.367273, 38.874003],\n          [-77.367165, 38.874012],\n          [-77.366994, 38.874012],\n          [-77.366779, 38.873999],\n          [-77.366666, 38.873986],\n          [-77.366501, 38.873968],\n          [-77.366313, 38.873934],\n          [-77.366155, 38.873897],\n          [-77.365932, 38.873832],\n          [-77.36562, 38.873728],\n          [-77.365375, 38.873647],\n          [-77.36552, 38.873752],\n          [-77.365645, 38.873824],\n          [-77.365759, 38.873875]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-97.796173, 22.254624]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-97.727508, 22.057641]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.085083, 37.601176]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.766723, 38.651198]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-slice/test/in/route2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-113.928988, 50.814121],\n          [-113.928993, 50.813067],\n          [-113.928994, 50.811043],\n          [-113.928995, 50.807418],\n          [-113.929029, 50.804989],\n          [-113.951995, 50.804953],\n          [-113.956813, 50.804931],\n          [-113.957629, 50.804917],\n          [-113.958021, 50.804876],\n          [-113.958575, 50.804779],\n          [-113.959011, 50.804687],\n          [-113.959367, 50.804572],\n          [-113.959858, 50.804414],\n          [-113.960433, 50.804102],\n          [-113.960932, 50.803769],\n          [-113.961563, 50.803306],\n          [-113.961754, 50.803166],\n          [-113.962486, 50.802753],\n          [-113.9641, 50.801549],\n          [-113.966048, 50.800154],\n          [-113.967597, 50.799082],\n          [-113.968657, 50.798289],\n          [-113.969382, 50.79779],\n          [-113.969303, 50.797653],\n          [-113.968833, 50.797177],\n          [-113.968399, 50.796832],\n          [-113.96652, 50.796071],\n          [-113.965325, 50.795579],\n          [-113.964608, 50.795229],\n          [-113.963373, 50.794321],\n          [-113.962094, 50.793355],\n          [-113.956995, 50.789049],\n          [-113.951125, 50.784098],\n          [-113.948573, 50.78194],\n          [-113.941011, 50.775626],\n          [-113.933724, 50.769538],\n          [-113.914584, 50.753577],\n          [-113.906521, 50.746803],\n          [-113.896774, 50.738614],\n          [-113.886275, 50.729779],\n          [-113.88594, 50.729474],\n          [-113.885307, 50.728898],\n          [-113.884903, 50.728477],\n          [-113.884523, 50.728028],\n          [-113.884201, 50.727599],\n          [-113.883986, 50.727298],\n          [-113.883696, 50.726863],\n          [-113.883482, 50.72648],\n          [-113.883314, 50.726156],\n          [-113.883153, 50.725767],\n          [-113.883094, 50.725646],\n          [-113.883031, 50.725465],\n          [-113.882906, 50.725155],\n          [-113.882792, 50.724718],\n          [-113.882641, 50.7241],\n          [-113.882584, 50.723735],\n          [-113.88255, 50.723367],\n          [-113.882523, 50.72258],\n          [-113.882495, 50.717709],\n          [-113.882486, 50.713302],\n          [-113.882476, 50.712125],\n          [-113.882468, 50.702531],\n          [-113.882456, 50.699815],\n          [-113.882434, 50.698229],\n          [-113.882445, 50.693791],\n          [-113.882419, 50.692602],\n          [-113.882412, 50.692077],\n          [-113.882405, 50.691705],\n          [-113.882365, 50.691331],\n          [-113.882289, 50.690878],\n          [-113.882163, 50.690282],\n          [-113.882074, 50.689985],\n          [-113.881908, 50.689517],\n          [-113.881705, 50.689095],\n          [-113.881622, 50.688959],\n          [-113.881501, 50.688721],\n          [-113.881281, 50.688347],\n          [-113.88097, 50.687826],\n          [-113.880715, 50.687491],\n          [-113.880385, 50.687085],\n          [-113.878859, 50.685206],\n          [-113.877456, 50.68348],\n          [-113.875929, 50.68157],\n          [-113.873357, 50.67843],\n          [-113.871364, 50.675999],\n          [-113.869142, 50.673289],\n          [-113.868358, 50.672328],\n          [-113.868037, 50.671943],\n          [-113.867467, 50.671232],\n          [-113.866987, 50.670734],\n          [-113.866668, 50.670424],\n          [-113.866296, 50.670141],\n          [-113.865816, 50.669814],\n          [-113.865451, 50.6696],\n          [-113.8651, 50.669419],\n          [-113.864667, 50.669203],\n          [-113.864079, 50.668945],\n          [-113.863436, 50.668716],\n          [-113.862804, 50.66849],\n          [-113.861739, 50.668114],\n          [-113.853421, 50.665144],\n          [-113.842891, 50.661554],\n          [-113.842171, 50.661197],\n          [-113.841049, 50.660571],\n          [-113.840156, 50.659997],\n          [-113.839716, 50.65961],\n          [-113.839157, 50.659132],\n          [-113.838847, 50.658805],\n          [-113.838358, 50.658284],\n          [-113.837938, 50.657723],\n          [-113.837609, 50.657111],\n          [-113.837268, 50.656259],\n          [-113.83703, 50.655665],\n          [-113.836937, 50.654919],\n          [-113.836909, 50.654144],\n          [-113.836859, 50.650724],\n          [-113.836826, 50.647581],\n          [-113.836828, 50.646677],\n          [-113.836945, 50.631237],\n          [-113.836945, 50.630338],\n          [-113.83681, 50.620833],\n          [-113.836809, 50.615002],\n          [-113.836748, 50.614363],\n          [-113.836695, 50.613902],\n          [-113.836544, 50.613327],\n          [-113.836395, 50.612865],\n          [-113.836165, 50.612347],\n          [-113.835974, 50.611908],\n          [-113.835688, 50.611368],\n          [-113.834199, 50.609116],\n          [-113.831975, 50.605815],\n          [-113.830597, 50.603738],\n          [-113.830194, 50.603006],\n          [-113.829862, 50.60236],\n          [-113.829623, 50.601865],\n          [-113.829361, 50.601178],\n          [-113.829199, 50.600699],\n          [-113.829001, 50.600003],\n          [-113.828688, 50.598264],\n          [-113.828653, 50.597525],\n          [-113.828653, 50.596741],\n          [-113.828659, 50.589493],\n          [-113.828615, 50.584393],\n          [-113.82855, 50.57625],\n          [-113.82857, 50.572186],\n          [-113.82858, 50.57189],\n          [-113.828436, 50.567929],\n          [-113.828262, 50.565198],\n          [-113.82828, 50.550181],\n          [-113.82829, 50.541809],\n          [-113.828291, 50.541417],\n          [-113.828359, 50.484565],\n          [-113.828388, 50.473188],\n          [-113.82839, 50.426319],\n          [-113.828391, 50.410937],\n          [-113.828495, 50.409031],\n          [-113.828495, 50.408255],\n          [-113.828326, 50.404708],\n          [-113.827868, 50.402523],\n          [-113.827189, 50.400367],\n          [-113.82573, 50.397464],\n          [-113.824909, 50.396393],\n          [-113.823811, 50.394869],\n          [-113.82128, 50.391895],\n          [-113.801481, 50.376398],\n          [-113.797907, 50.371872],\n          [-113.796297, 50.369858],\n          [-113.795351, 50.368139],\n          [-113.790726, 50.359724],\n          [-113.789384, 50.358382],\n          [-113.78784, 50.357509],\n          [-113.782077, 50.355219],\n          [-113.781868, 50.355163],\n          [-113.780696, 50.354643],\n          [-113.779832, 50.354058],\n          [-113.779376, 50.353709],\n          [-113.779034, 50.353447],\n          [-113.777779, 50.352208],\n          [-113.776476, 50.350971],\n          [-113.775669, 50.350156],\n          [-113.774903, 50.349363],\n          [-113.774528, 50.349008],\n          [-113.774139, 50.348641],\n          [-113.773752, 50.348267],\n          [-113.773367, 50.347894],\n          [-113.772991, 50.347521],\n          [-113.77261, 50.347144],\n          [-113.77224, 50.346771],\n          [-113.771866, 50.346393],\n          [-113.771491, 50.346021],\n          [-113.771101, 50.345634],\n          [-113.770724, 50.345257],\n          [-113.770334, 50.344868],\n          [-113.769256, 50.343852],\n          [-113.767134, 50.341669],\n          [-113.764647, 50.339182],\n          [-113.764438, 50.338973],\n          [-113.761597, 50.336333],\n          [-113.758593, 50.33458],\n          [-113.755546, 50.333429],\n          [-113.751856, 50.33269],\n          [-113.745118, 50.331594],\n          [-113.742286, 50.330717],\n          [-113.739453, 50.329347],\n          [-113.731213, 50.32247],\n          [-113.723532, 50.315976],\n          [-113.722158, 50.313619],\n          [-113.718768, 50.300682],\n          [-113.714948, 50.295611],\n          [-113.70452, 50.282916],\n          [-113.688985, 50.273536],\n          [-113.671647, 50.26314],\n          [-113.665976, 50.259608],\n          [-113.661862, 50.256884],\n          [-113.66006, 50.254964],\n          [-113.659379, 50.253877],\n          [-113.658858, 50.252741],\n          [-113.658676, 50.251733],\n          [-113.656669, 50.241627],\n          [-113.656154, 50.237592],\n          [-113.655983, 50.234435],\n          [-113.656026, 50.226446],\n          [-113.656001, 50.222848],\n          [-113.655983, 50.212634],\n          [-113.655983, 50.198956],\n          [-113.656026, 50.187774],\n          [-113.655725, 50.180189],\n          [-113.654781, 50.177056],\n          [-113.650834, 50.16488],\n          [-113.648988, 50.159931],\n          [-113.648171, 50.158673],\n          [-113.647041, 50.157055],\n          [-113.642675, 50.151639],\n          [-113.639814, 50.147556],\n          [-113.634175, 50.135735],\n          [-113.632251, 50.131741],\n          [-113.620363, 50.106626],\n          [-113.619376, 50.104527],\n          [-113.61384, 50.092744],\n          [-113.608561, 50.081675],\n          [-113.606581, 50.077494],\n          [-113.603669, 50.071347],\n          [-113.596202, 50.055589],\n          [-113.589593, 50.041645],\n          [-113.585973, 50.034075],\n          [-113.583284, 50.028469],\n          [-113.578879, 50.019214],\n          [-113.577072, 50.015416],\n          [-113.576933, 50.015123],\n          [-113.575461, 50.01195],\n          [-113.56968, 49.999485],\n          [-113.565276, 49.990109],\n          [-113.562856, 49.984972],\n          [-113.558388, 49.975529],\n          [-113.556763, 49.972084],\n          [-113.551497, 49.960982],\n          [-113.550282, 49.958226],\n          [-113.543115, 49.943177],\n          [-113.537579, 49.93141],\n          [-113.531657, 49.91895],\n          [-113.528868, 49.913112],\n          [-113.52852, 49.912237],\n          [-113.528209, 49.911247],\n          [-113.528013, 49.910313],\n          [-113.527878, 49.909552],\n          [-113.527877, 49.908805],\n          [-113.528009, 49.904496],\n          [-113.527999, 49.902765],\n          [-113.527923, 49.890232],\n          [-113.527923, 49.878148],\n          [-113.527237, 49.875493],\n          [-113.526537, 49.873052],\n          [-113.52449, 49.865701],\n          [-113.524447, 49.856267],\n          [-113.52449, 49.841269],\n          [-113.524447, 49.826764],\n          [-113.52437, 49.815239],\n          [-113.524361, 49.813862],\n          [-113.524357, 49.801088],\n          [-113.524347, 49.798401],\n          [-113.524359, 49.795748],\n          [-113.524362, 49.795059],\n          [-113.524404, 49.785441],\n          [-113.524345, 49.778892],\n          [-113.524361, 49.771945],\n          [-113.523632, 49.77031],\n          [-113.522087, 49.769007],\n          [-113.520199, 49.768287],\n          [-113.514319, 49.76643],\n          [-113.510629, 49.764933],\n          [-113.50771, 49.763048],\n          [-113.494964, 49.752901],\n          [-113.479476, 49.742059],\n          [-113.460012, 49.728293],\n          [-113.455597, 49.725235],\n          [-113.454572, 49.72442],\n          [-113.45366, 49.723598],\n          [-113.452976, 49.722915],\n          [-113.45129, 49.720944],\n          [-113.450256, 49.719782],\n          [-113.447746, 49.716986],\n          [-113.447289, 49.716417],\n          [-113.443365, 49.71203],\n          [-113.443141, 49.711789],\n          [-113.442819, 49.711601],\n          [-113.442606, 49.711479],\n          [-113.44236, 49.711374],\n          [-113.442103, 49.711279],\n          [-113.441837, 49.711197],\n          [-113.441458, 49.711124],\n          [-113.441117, 49.711086],\n          [-113.440779, 49.711071],\n          [-113.440369, 49.71109],\n          [-113.439978, 49.71114],\n          [-113.439697, 49.711196],\n          [-113.439397, 49.711273],\n          [-113.439102, 49.71139],\n          [-113.438862, 49.711498],\n          [-113.438591, 49.711635],\n          [-113.438391, 49.711766],\n          [-113.438075, 49.712061],\n          [-113.437745, 49.712489],\n          [-113.43745, 49.712915],\n          [-113.43721, 49.713212],\n          [-113.436932, 49.713495],\n          [-113.436629, 49.713751],\n          [-113.436287, 49.713988],\n          [-113.435908, 49.714204],\n          [-113.435538, 49.714393],\n          [-113.431814, 49.715951],\n          [-113.423934, 49.718913],\n          [-113.423148, 49.719208],\n          [-113.419515, 49.720574],\n          [-113.418553, 49.720884],\n          [-113.417353, 49.721191],\n          [-113.416622, 49.721378],\n          [-113.415189, 49.721933],\n          [-113.414887, 49.722092],\n          [-113.414553, 49.722328],\n          [-113.414204, 49.722586],\n          [-113.413109, 49.723458],\n          [-113.412313, 49.724209],\n          [-113.412068, 49.724385],\n          [-113.411871, 49.724508],\n          [-113.41169, 49.724585],\n          [-113.411456, 49.724665],\n          [-113.411213, 49.724721],\n          [-113.410939, 49.724758],\n          [-113.410649, 49.724769],\n          [-113.408706, 49.724761],\n          [-113.405913, 49.724764],\n          [-113.403119, 49.724754],\n          [-113.400316, 49.724758],\n          [-113.397541, 49.724759],\n          [-113.396042, 49.724769],\n          [-113.395455, 49.724758],\n          [-113.395172, 49.724734],\n          [-113.394938, 49.724709],\n          [-113.394729, 49.724678],\n          [-113.394467, 49.724619],\n          [-113.394209, 49.724544],\n          [-113.393974, 49.724469],\n          [-113.393696, 49.724366],\n          [-113.393468, 49.724249],\n          [-113.393241, 49.72412],\n          [-113.393012, 49.723965],\n          [-113.39289, 49.723864],\n          [-113.391771, 49.722807],\n          [-113.391196, 49.722209],\n          [-113.390266, 49.721242],\n          [-113.389586, 49.720567],\n          [-113.388246, 49.71917],\n          [-113.387068, 49.717968],\n          [-113.386688, 49.717602],\n          [-113.386617, 49.717518],\n          [-113.386398, 49.717254],\n          [-113.386209, 49.717057],\n          [-113.385914, 49.716751],\n          [-113.385697, 49.71658],\n          [-113.385459, 49.716404],\n          [-113.385223, 49.716267],\n          [-113.384941, 49.716121],\n          [-113.384654, 49.716013],\n          [-113.384337, 49.715925],\n          [-113.383953, 49.715848],\n          [-113.383617, 49.715803],\n          [-113.383303, 49.715777],\n          [-113.382948, 49.715769],\n          [-113.382593, 49.71579],\n          [-113.382269, 49.715822],\n          [-113.381923, 49.715886],\n          [-113.381566, 49.715981],\n          [-113.381244, 49.716092],\n          [-113.380957, 49.716219],\n          [-113.380551, 49.716436],\n          [-113.380035, 49.71673],\n          [-113.379484, 49.717081],\n          [-113.378419, 49.71777],\n          [-113.377851, 49.718172],\n          [-113.376955, 49.718849],\n          [-113.376472, 49.719244],\n          [-113.375953, 49.719695],\n          [-113.375418, 49.720164],\n          [-113.374752, 49.720812],\n          [-113.373389, 49.722261],\n          [-113.372553, 49.723172],\n          [-113.371753, 49.724069],\n          [-113.371091, 49.724816],\n          [-113.370703, 49.725251],\n          [-113.370292, 49.725659],\n          [-113.36989, 49.726068],\n          [-113.369354, 49.726543],\n          [-113.368728, 49.727064],\n          [-113.368135, 49.727526],\n          [-113.367567, 49.727939],\n          [-113.366419, 49.728699],\n          [-113.366091, 49.728877],\n          [-113.365827, 49.729022],\n          [-113.365501, 49.729201],\n          [-113.362951, 49.730439],\n          [-113.358468, 49.732139],\n          [-113.3397, 49.739588],\n          [-113.335475, 49.741364],\n          [-113.327488, 49.744425],\n          [-113.318052, 49.748192],\n          [-113.313869, 49.749882],\n          [-113.31224, 49.750619],\n          [-113.310651, 49.75165],\n          [-113.307682, 49.753879],\n          [-113.302921, 49.757409],\n          [-113.297078, 49.761832],\n          [-113.293465, 49.764507],\n          [-113.274088, 49.778989],\n          [-113.273227, 49.779697],\n          [-113.272213, 49.780484],\n          [-113.270309, 49.781807],\n          [-113.269287, 49.782542],\n          [-113.268506, 49.783052],\n          [-113.267549, 49.783577],\n          [-113.266355, 49.784155],\n          [-113.264867, 49.784696],\n          [-113.26421, 49.78488],\n          [-113.263279, 49.785126],\n          [-113.262406, 49.785321],\n          [-113.261535, 49.785468],\n          [-113.260247, 49.785632],\n          [-113.2584, 49.785752],\n          [-113.253189, 49.785761],\n          [-113.2503, 49.785759],\n          [-113.246741, 49.785753],\n          [-113.243803, 49.785748],\n          [-113.24168, 49.785746],\n          [-113.239441, 49.785743],\n          [-113.235416, 49.785738],\n          [-113.232546, 49.785734],\n          [-113.230542, 49.78573],\n          [-113.207916, 49.785665],\n          [-113.188962, 49.785585],\n          [-113.187421, 49.785394],\n          [-113.185955, 49.785084],\n          [-113.182069, 49.784248],\n          [-113.178433, 49.783545],\n          [-113.175537, 49.783555],\n          [-113.172403, 49.784002],\n          [-113.169876, 49.784514],\n          [-113.165425, 49.785057],\n          [-113.162661, 49.785308],\n          [-113.158491, 49.785468],\n          [-113.154009, 49.785249],\n          [-113.150706, 49.7849],\n          [-113.138727, 49.78387],\n          [-113.137918, 49.7838],\n          [-113.132484, 49.783537],\n          [-113.127139, 49.783666],\n          [-113.121522, 49.784134],\n          [-113.116401, 49.784873],\n          [-113.108878, 49.786479],\n          [-113.10643, 49.787036],\n          [-113.100519, 49.78837],\n          [-113.099817, 49.78851],\n          [-113.099069, 49.788664],\n          [-113.098414, 49.788796],\n          [-113.097678, 49.788933],\n          [-113.096947, 49.789058],\n          [-113.096124, 49.78919],\n          [-113.095087, 49.789365],\n          [-113.093946, 49.789519],\n          [-113.092851, 49.789655],\n          [-113.091995, 49.789773],\n          [-113.091108, 49.78988],\n          [-113.090105, 49.789981],\n          [-113.089148, 49.790064],\n          [-113.088464, 49.790125],\n          [-113.087728, 49.790181],\n          [-113.08695, 49.790229],\n          [-113.08621, 49.790281],\n          [-113.085391, 49.790327],\n          [-113.084622, 49.790364],\n          [-113.083774, 49.790396],\n          [-113.082731, 49.790426],\n          [-113.081849, 49.790441],\n          [-113.080915, 49.790449],\n          [-113.080041, 49.790455],\n          [-113.079132, 49.790458],\n          [-113.078156, 49.790437],\n          [-113.077306, 49.790416],\n          [-113.076308, 49.790386],\n          [-113.075035, 49.79033],\n          [-113.073984, 49.790268],\n          [-113.073014, 49.790204],\n          [-113.072411, 49.790162],\n          [-113.071942, 49.790123],\n          [-113.069874, 49.789921],\n          [-113.06869, 49.789793],\n          [-113.067583, 49.789667],\n          [-113.066892, 49.789578],\n          [-113.066126, 49.789472],\n          [-113.064972, 49.789301],\n          [-113.04876, 49.786854],\n          [-113.048, 49.78674],\n          [-113.047462, 49.78667],\n          [-113.046933, 49.786601],\n          [-113.046365, 49.786543],\n          [-113.041994, 49.786136],\n          [-113.038418, 49.786047],\n          [-113.028911, 49.786062],\n          [-113.013026, 49.786042],\n          [-113.003977, 49.786038],\n          [-113.002681, 49.785962],\n          [-113.001644, 49.785864],\n          [-113.00048, 49.785713],\n          [-112.999756, 49.785611],\n          [-112.9987, 49.785408],\n          [-112.997454, 49.785132],\n          [-112.995534, 49.784581],\n          [-112.99125, 49.783007],\n          [-112.98295, 49.779625],\n          [-112.980557, 49.778522],\n          [-112.979018, 49.777554],\n          [-112.976341, 49.775651],\n          [-112.973797, 49.773044],\n          [-112.965769, 49.764644],\n          [-112.960895, 49.75933],\n          [-112.960092, 49.758465],\n          [-112.959726, 49.75808],\n          [-112.959447, 49.757828],\n          [-112.959069, 49.757507],\n          [-112.958709, 49.757166],\n          [-112.958281, 49.756793],\n          [-112.95762, 49.756294],\n          [-112.956931, 49.755799],\n          [-112.956159, 49.755282],\n          [-112.955682, 49.754998],\n          [-112.955151, 49.754703],\n          [-112.952858, 49.753509],\n          [-112.949354, 49.752075],\n          [-112.94544, 49.749962],\n          [-112.938188, 49.743931],\n          [-112.931304, 49.738228],\n          [-112.926731, 49.73422],\n          [-112.925384, 49.732989],\n          [-112.924479, 49.731925],\n          [-112.923468, 49.730575],\n          [-112.922298, 49.729055],\n          [-112.921036, 49.7277],\n          [-112.918917, 49.725859],\n          [-112.918155, 49.725203],\n          [-112.916619, 49.723846],\n          [-112.915487, 49.723018],\n          [-112.915163, 49.72283],\n          [-112.914796, 49.722631],\n          [-112.914432, 49.722464],\n          [-112.914031, 49.722286],\n          [-112.913669, 49.722145],\n          [-112.913246, 49.722004],\n          [-112.912907, 49.721891],\n          [-112.912605, 49.721797],\n          [-112.912248, 49.721697],\n          [-112.911203, 49.721427],\n          [-112.910101, 49.721135],\n          [-112.906937, 49.720299],\n          [-112.903215, 49.719342],\n          [-112.900165, 49.718558],\n          [-112.897476, 49.717852],\n          [-112.895936, 49.717459],\n          [-112.895282, 49.717281],\n          [-112.894243, 49.71701],\n          [-112.893141, 49.716728],\n          [-112.892426, 49.716529],\n          [-112.89165, 49.716338],\n          [-112.891198, 49.71622],\n          [-112.890633, 49.716083],\n          [-112.889897, 49.715934],\n          [-112.889174, 49.715796],\n          [-112.888532, 49.715689],\n          [-112.887541, 49.715558],\n          [-112.88613, 49.71536],\n          [-112.885501, 49.715271],\n          [-112.884833, 49.715175],\n          [-112.884308, 49.715088],\n          [-112.883816, 49.71495],\n          [-112.883277, 49.714832],\n          [-112.882696, 49.714691],\n          [-112.88207, 49.714542],\n          [-112.881531, 49.714385],\n          [-112.881025, 49.714222],\n          [-112.880522, 49.714039],\n          [-112.879986, 49.713834],\n          [-112.879529, 49.71365],\n          [-112.87903, 49.713431],\n          [-112.878502, 49.713173],\n          [-112.877609, 49.712649],\n          [-112.875259, 49.711284],\n          [-112.873228, 49.710141],\n          [-112.872763, 49.709872],\n          [-112.87224, 49.709593],\n          [-112.871848, 49.709384],\n          [-112.871432, 49.709188],\n          [-112.871061, 49.709022],\n          [-112.870716, 49.708873],\n          [-112.870311, 49.708723],\n          [-112.869954, 49.708592],\n          [-112.869443, 49.708436],\n          [-112.868983, 49.708311],\n          [-112.868462, 49.708183],\n          [-112.86782, 49.708055],\n          [-112.867368, 49.707982],\n          [-112.866939, 49.707916],\n          [-112.86545, 49.707716],\n          [-112.861762, 49.707191],\n          [-112.86017, 49.706981],\n          [-112.85809, 49.706677],\n          [-112.85777, 49.706622],\n          [-112.857467, 49.706553],\n          [-112.857076, 49.706452],\n          [-112.856698, 49.706338],\n          [-112.854212, 49.705528],\n          [-112.85381, 49.705386],\n          [-112.853466, 49.70523],\n          [-112.853137, 49.705049],\n          [-112.852839, 49.704853],\n          [-112.851852, 49.704221],\n          [-112.851516, 49.704031],\n          [-112.851207, 49.703872],\n          [-112.850867, 49.70373],\n          [-112.850433, 49.703565],\n          [-112.84992, 49.703388],\n          [-112.847903, 49.702792],\n          [-112.845724, 49.702167],\n          [-112.844077, 49.701628],\n          [-112.8432, 49.701369],\n          [-112.842649, 49.701218],\n          [-112.842201, 49.701114],\n          [-112.841728, 49.701025],\n          [-112.840794, 49.700856],\n          [-112.838125, 49.700426],\n          [-112.834609, 49.699873],\n          [-112.832064, 49.699465],\n          [-112.828981, 49.698964],\n          [-112.828552, 49.698904],\n          [-112.827826, 49.698813],\n          [-112.827096, 49.698728],\n          [-112.826436, 49.698665],\n          [-112.825387, 49.6986],\n          [-112.824515, 49.698555],\n          [-112.823879, 49.698527],\n          [-112.822719, 49.698465],\n          [-112.820041, 49.698338],\n          [-112.818601, 49.69826],\n          [-112.817659, 49.698214],\n          [-112.817451, 49.698208],\n          [-112.816791, 49.698174],\n          [-112.81589, 49.698112],\n          [-112.814861, 49.698029],\n          [-112.814224, 49.697963],\n          [-112.813253, 49.697849],\n          [-112.813147, 49.697836],\n          [-112.811952, 49.697672],\n          [-112.811842, 49.697656],\n          [-112.811502, 49.697615],\n          [-112.811227, 49.697581],\n          [-112.810773, 49.697561],\n          [-112.810352, 49.69755],\n          [-112.810002, 49.697537],\n          [-112.809403, 49.697532],\n          [-112.806575, 49.697613],\n          [-112.805437, 49.69765],\n          [-112.804522, 49.697685],\n          [-112.80393, 49.697707],\n          [-112.80238, 49.69777],\n          [-112.802025, 49.697788],\n          [-112.801625, 49.697812],\n          [-112.800653, 49.697888],\n          [-112.799723, 49.697967],\n          [-112.79867, 49.698052],\n          [-112.798046, 49.698084],\n          [-112.797631, 49.698102],\n          [-112.797077, 49.698117],\n          [-112.796376, 49.698135],\n          [-112.79554, 49.698135],\n          [-112.794414, 49.698135],\n          [-112.793544, 49.698131],\n          [-112.788404, 49.698111],\n          [-112.787759, 49.698108],\n          [-112.787623, 49.698109],\n          [-112.786794, 49.698114],\n          [-112.785574, 49.698121],\n          [-112.784545, 49.69817],\n          [-112.784282, 49.698206],\n          [-112.783264, 49.698348],\n          [-112.782977, 49.69837],\n          [-112.782674, 49.69837],\n          [-112.782377, 49.69836],\n          [-112.781976, 49.698324],\n          [-112.781573, 49.698283],\n          [-112.780374, 49.698174],\n          [-112.779856, 49.698084],\n          [-112.77969, 49.698039],\n          [-112.779534, 49.697963],\n          [-112.779416, 49.697879],\n          [-112.779336, 49.697779],\n          [-112.779293, 49.697678],\n          [-112.779266, 49.697588],\n          [-112.779277, 49.697432],\n          [-112.779309, 49.697054],\n          [-112.779557, 49.695985],\n          [-112.779657, 49.695544],\n          [-112.779736, 49.695225],\n          [-112.779761, 49.695101],\n          [-112.779809, 49.694922],\n          [-112.779952, 49.69441],\n          [-112.780019, 49.694125],\n          [-112.780058, 49.69387],\n          [-112.780085, 49.693604],\n          [-112.78011, 49.693292],\n          [-112.780165, 49.692652],\n          [-112.780169, 49.692372],\n          [-112.780165, 49.692154],\n          [-112.780164, 49.692098],\n          [-112.780144, 49.691862],\n          [-112.780143, 49.691843],\n          [-112.780133, 49.69176],\n          [-112.780037, 49.691006],\n          [-112.779822, 49.689657],\n          [-112.77979, 49.689308],\n          [-112.779748, 49.688889],\n          [-112.779749, 49.688478],\n          [-112.779739, 49.688031],\n          [-112.779748, 49.687622],\n          [-112.779769, 49.687159],\n          [-112.779816, 49.686494],\n          [-112.779896, 49.685531],\n          [-112.779868, 49.68512],\n          [-112.779875, 49.684881],\n          [-112.779863, 49.684535],\n          [-112.77986, 49.684358],\n          [-112.779847, 49.684121],\n          [-112.779816, 49.683702],\n          [-112.779801, 49.683613],\n          [-112.779746, 49.683344],\n          [-112.779688, 49.682957],\n          [-112.779596, 49.68252],\n          [-112.779542, 49.68228],\n          [-112.7794, 49.681732],\n          [-112.779248, 49.681225],\n          [-112.779016, 49.680478],\n          [-112.778857, 49.679737],\n          [-112.778724, 49.678803],\n          [-112.778685, 49.678481],\n          [-112.77867, 49.678161],\n          [-112.778679, 49.677477],\n          [-112.778716, 49.676815],\n          [-112.77879, 49.676373],\n          [-112.778793, 49.676281],\n          [-112.778809, 49.67613],\n          [-112.778826, 49.675962],\n          [-112.779009, 49.67502],\n          [-112.779283, 49.674077],\n          [-112.779324, 49.67372],\n          [-112.779398, 49.673084],\n          [-112.779441, 49.672708],\n          [-112.779445, 49.672624],\n          [-112.779457, 49.6724],\n          [-112.779474, 49.670433],\n          [-112.779525, 49.669583],\n          [-112.779531, 49.668796],\n          [-112.779522, 49.66867],\n          [-112.779234, 49.66867],\n          [-112.778749, 49.66867],\n          [-112.773523, 49.668658],\n          [-112.769369, 49.668649],\n          [-112.763756, 49.668637],\n          [-112.7565, 49.668622],\n          [-112.75294, 49.668604],\n          [-112.752507, 49.668609],\n          [-112.751647, 49.668588],\n          [-112.750485, 49.668477],\n          [-112.748828, 49.668137],\n          [-112.747424, 49.667643],\n          [-112.746405, 49.667117],\n          [-112.745658, 49.666544],\n          [-112.743059, 49.663524],\n          [-112.742076, 49.662492],\n          [-112.741004, 49.661674],\n          [-112.73773, 49.659519],\n          [-112.735465, 49.657989],\n          [-112.733655, 49.656859],\n          [-112.718533, 49.646941],\n          [-112.708401, 49.640314],\n          [-112.699223, 49.634317],\n          [-112.697367, 49.633097],\n          [-112.696977, 49.632838],\n          [-112.688059, 49.626979],\n          [-112.68302, 49.623675],\n          [-112.676625, 49.619483],\n          [-112.667074, 49.613228],\n          [-112.658988, 49.607908],\n          [-112.655248, 49.605484],\n          [-112.650972, 49.603234],\n          [-112.646487, 49.600778],\n          [-112.644902, 49.599632],\n          [-112.643248, 49.598383],\n          [-112.641103, 49.596798],\n          [-112.639355, 49.595616],\n          [-112.637, 49.594133],\n          [-112.627891, 49.588425],\n          [-112.602707, 49.572537],\n          [-112.600552, 49.571077],\n          [-112.598617, 49.5692],\n          [-112.59449, 49.564228],\n          [-112.593913, 49.5636],\n          [-112.593075, 49.562994],\n          [-112.592311, 49.562392],\n          [-112.591327, 49.561818],\n          [-112.589132, 49.56091],\n          [-112.585717, 49.559813],\n          [-112.580643, 49.558189],\n          [-112.579135, 49.557557],\n          [-112.577853, 49.55687],\n          [-112.576584, 49.555934],\n          [-112.573576, 49.55323],\n          [-112.570447, 49.550424],\n          [-112.569232, 49.549564],\n          [-112.567477, 49.548436],\n          [-112.556735, 49.541871],\n          [-112.550446, 49.538028],\n          [-112.546175, 49.535345],\n          [-112.543195, 49.53355],\n          [-112.541943, 49.532867],\n          [-112.522018, 49.522571],\n          [-112.51966, 49.521328],\n          [-112.515058, 49.518953],\n          [-112.512595, 49.517628],\n          [-112.51096, 49.516524],\n          [-112.50948, 49.515214],\n          [-112.508358, 49.513958],\n          [-112.507396, 49.512646],\n          [-112.504667, 49.506398],\n          [-112.503772, 49.504449],\n          [-112.502829, 49.502755],\n          [-112.502134, 49.501789],\n          [-112.500323, 49.499793],\n          [-112.498242, 49.497945],\n          [-112.491937, 49.492826],\n          [-112.472122, 49.477074],\n          [-112.46972, 49.475443],\n          [-112.458697, 49.468584],\n          [-112.452076, 49.464789],\n          [-112.441426, 49.458313],\n          [-112.440081, 49.457555],\n          [-112.439154, 49.45711],\n          [-112.437692, 49.456507],\n          [-112.428185, 49.452715],\n          [-112.42567, 49.451509],\n          [-112.421872, 49.448943],\n          [-112.416852, 49.445256],\n          [-112.415374, 49.444112],\n          [-112.413757, 49.443067],\n          [-112.41199, 49.442277],\n          [-112.408866, 49.441094],\n          [-112.403355, 49.439005],\n          [-112.400426, 49.437907],\n          [-112.395624, 49.436024],\n          [-112.393366, 49.43506],\n          [-112.391141, 49.43401],\n          [-112.389667, 49.433278],\n          [-112.387242, 49.431857],\n          [-112.380495, 49.427283],\n          [-112.377371, 49.425166],\n          [-112.370769, 49.420228],\n          [-112.369213, 49.419103],\n          [-112.368029, 49.418322],\n          [-112.366868, 49.417688],\n          [-112.365853, 49.417109],\n          [-112.364196, 49.416279],\n          [-112.358645, 49.413606],\n          [-112.345069, 49.40697],\n          [-112.313601, 49.391666],\n          [-112.293379, 49.381796],\n          [-112.280866, 49.375648],\n          [-112.275641, 49.37312],\n          [-112.27415, 49.372357],\n          [-112.272971, 49.371647],\n          [-112.272087, 49.371077],\n          [-112.271197, 49.370405],\n          [-112.270258, 49.369532],\n          [-112.269242, 49.36847],\n          [-112.263635, 49.361606],\n          [-112.261762, 49.359287],\n          [-112.252776, 49.348158],\n          [-112.236226, 49.327356],\n          [-112.231602, 49.321856],\n          [-112.231504, 49.32174],\n          [-112.22954, 49.319363],\n          [-112.227247, 49.316403],\n          [-112.224225, 49.312727],\n          [-112.22224, 49.310555],\n          [-112.216986, 49.304836],\n          [-112.215307, 49.3031],\n          [-112.213887, 49.301877],\n          [-112.213028, 49.301145],\n          [-112.204369, 49.294474],\n          [-112.201434, 49.291851],\n          [-112.200807, 49.291228],\n          [-112.200423, 49.290767],\n          [-112.200161, 49.290419],\n          [-112.199859, 49.289985],\n          [-112.199566, 49.2895],\n          [-112.199306, 49.289012],\n          [-112.199053, 49.288493],\n          [-112.198839, 49.287999],\n          [-112.198721, 49.287648],\n          [-112.198561, 49.28716],\n          [-112.198436, 49.286692],\n          [-112.198364, 49.286224],\n          [-112.198303, 49.285775],\n          [-112.198271, 49.285347],\n          [-112.198256, 49.282987],\n          [-112.198269, 49.279832],\n          [-112.197949, 49.277457],\n          [-112.196565, 49.273803],\n          [-112.189342, 49.264663],\n          [-112.187679, 49.262625],\n          [-112.187029, 49.261975],\n          [-112.185766, 49.260758],\n          [-112.185003, 49.259994],\n          [-112.184046, 49.259256],\n          [-112.182999, 49.258515],\n          [-112.181937, 49.257797],\n          [-112.180185, 49.2566],\n          [-112.179314, 49.25606],\n          [-112.178353, 49.255415],\n          [-112.177525, 49.254853],\n          [-112.176769, 49.254313],\n          [-112.176125, 49.253788],\n          [-112.174746, 49.252496],\n          [-112.173897, 49.251682],\n          [-112.173107, 49.250905],\n          [-112.153316, 49.231556],\n          [-112.145266, 49.223554],\n          [-112.137196, 49.215571],\n          [-112.13617, 49.214714],\n          [-112.134956, 49.213742],\n          [-112.134168, 49.213187],\n          [-112.132859, 49.212334],\n          [-112.13166, 49.211607],\n          [-112.12957, 49.210494],\n          [-112.126976, 49.209298],\n          [-112.123065, 49.207555],\n          [-112.121541, 49.206848],\n          [-112.120052, 49.206151],\n          [-112.118948, 49.205619],\n          [-112.117869, 49.205062],\n          [-112.11706, 49.204623],\n          [-112.115236, 49.203546],\n          [-112.112919, 49.201989],\n          [-112.111625, 49.201012],\n          [-112.109029, 49.198836],\n          [-112.106118, 49.195686],\n          [-112.105716, 49.195156],\n          [-112.10511, 49.194341],\n          [-112.102212, 49.189769],\n          [-112.099016, 49.184803],\n          [-112.097293, 49.182034],\n          [-112.09607, 49.179971],\n          [-112.093881, 49.176527],\n          [-112.093098, 49.175222],\n          [-112.092754, 49.174577],\n          [-112.092518, 49.174107],\n          [-112.092368, 49.173658],\n          [-112.092271, 49.173279],\n          [-112.092175, 49.172816],\n          [-112.092083, 49.172436],\n          [-112.092105, 49.171924],\n          [-112.092116, 49.171461],\n          [-112.092153, 49.170923],\n          [-112.092303, 49.169933],\n          [-112.092797, 49.166924],\n          [-112.093183, 49.164483],\n          [-112.093425, 49.163015],\n          [-112.094079, 49.159023],\n          [-112.094508, 49.156383],\n          [-112.094555, 49.155953],\n          [-112.094556, 49.155221],\n          [-112.094514, 49.154793],\n          [-112.094503, 49.154492],\n          [-112.094385, 49.153874],\n          [-112.094213, 49.153187],\n          [-112.094063, 49.152773],\n          [-112.093902, 49.152351],\n          [-112.093602, 49.151853],\n          [-112.093237, 49.151257],\n          [-112.092797, 49.15078],\n          [-112.092443, 49.150366],\n          [-112.09211, 49.150043],\n          [-112.09144, 49.149473],\n          [-112.090329, 49.148576],\n          [-112.087872, 49.146674],\n          [-112.085019, 49.144442],\n          [-112.08445, 49.144014],\n          [-112.083795, 49.143488],\n          [-112.083195, 49.142934],\n          [-112.082218, 49.142021],\n          [-112.081255, 49.140863],\n          [-112.080652, 49.140161],\n          [-112.079815, 49.139052],\n          [-112.079375, 49.138315],\n          [-112.078935, 49.137592],\n          [-112.078367, 49.136469],\n          [-112.077562, 49.134475],\n          [-112.07679, 49.132524],\n          [-112.076328, 49.131429],\n          [-112.07591, 49.130565],\n          [-112.075325, 49.129377],\n          [-112.074891, 49.128684],\n          [-112.074472, 49.128059],\n          [-112.073582, 49.12674],\n          [-112.072631, 49.125499],\n          [-112.071973, 49.124711],\n          [-112.071054, 49.123645],\n          [-112.069784, 49.122387],\n          [-112.068512, 49.121237],\n          [-112.066629, 49.119662],\n          [-112.062677, 49.116351],\n          [-112.055397, 49.110231],\n          [-112.054528, 49.109557],\n          [-112.053423, 49.108763],\n          [-112.052461, 49.108147],\n          [-112.045612, 49.103924],\n          [-112.04278, 49.102161],\n          [-112.042125, 49.101683],\n          [-112.041514, 49.101163],\n          [-112.040923, 49.100503],\n          [-112.040258, 49.099716],\n          [-112.039046, 49.09777],\n          [-112.036761, 49.094883],\n          [-112.034383, 49.091688],\n          [-112.032973, 49.089733],\n          [-112.032072, 49.088525],\n          [-112.031257, 49.087397],\n          [-112.027952, 49.082826],\n          [-112.025918, 49.080115],\n          [-112.023929, 49.077471],\n          [-112.021412, 49.07398],\n          [-112.01924, 49.070443],\n          [-112.016505, 49.066092],\n          [-112.014616, 49.062914],\n          [-112.010898, 49.056849],\n          [-112.010336, 49.056053],\n          [-112.009981, 49.05549],\n          [-112.009595, 49.055054],\n          [-112.008383, 49.053913],\n          [-112.004081, 49.049886],\n          [-112.003484, 49.049323],\n          [-112.002241, 49.048061],\n          [-112.000186, 49.046131],\n          [-111.998352, 49.044419],\n          [-111.997649, 49.043715],\n          [-111.997014, 49.042914],\n          [-111.996531, 49.042236],\n          [-111.996215, 49.041782],\n          [-111.995927, 49.041307],\n          [-111.995594, 49.040698],\n          [-111.995321, 49.040118],\n          [-111.994693, 49.038673],\n          [-111.994001, 49.037108],\n          [-111.992996, 49.034801],\n          [-111.992369, 49.033409],\n          [-111.99149, 49.031403],\n          [-111.99082, 49.029866],\n          [-111.990004, 49.02802],\n          [-111.98936, 49.026568],\n          [-111.988769, 49.025185],\n          [-111.988218, 49.023936],\n          [-111.987589, 49.022536],\n          [-111.987371, 49.021885],\n          [-111.987235, 49.021333],\n          [-111.987097, 49.020858],\n          [-111.986995, 49.020386],\n          [-111.98692, 49.019658],\n          [-111.986872, 49.018979],\n          [-111.986866, 49.017199],\n          [-111.986872, 49.015542],\n          [-111.98686, 49.013841],\n          [-111.986847, 49.01231],\n          [-111.98685, 49.011137],\n          [-111.986861, 49.010352],\n          [-111.986797, 49.009758],\n          [-111.986645, 49.009206],\n          [-111.986377, 49.008696],\n          [-111.986147, 49.008354],\n          [-111.985836, 49.007998],\n          [-111.985337, 49.007558],\n          [-111.984989, 49.007266],\n          [-111.984301, 49.006795],\n          [-111.983474, 49.00638],\n          [-111.982516, 49.005993],\n          [-111.981765, 49.005715],\n          [-111.980942, 49.005514],\n          [-111.980129, 49.005334],\n          [-111.979328, 49.005194],\n          [-111.978062, 49.005092],\n          [-111.976985, 49.005074],\n          [-111.974918, 49.005173],\n          [-111.973139, 49.005292],\n          [-111.97154, 49.00538],\n          [-111.969019, 49.005514],\n          [-111.967562, 49.005617],\n          [-111.966045, 49.005705],\n          [-111.96469, 49.005725],\n          [-111.963991, 49.005648],\n          [-111.96346, 49.005567],\n          [-111.96295, 49.005448],\n          [-111.962485, 49.005296],\n          [-111.962163, 49.005187],\n          [-111.961761, 49.005004],\n          [-111.961293, 49.004765],\n          [-111.960951, 49.004554],\n          [-111.960789, 49.004426],\n          [-111.960561, 49.004236],\n          [-111.960215, 49.003866],\n          [-111.959973, 49.003571],\n          [-111.959774, 49.003265],\n          [-111.959681, 49.003043],\n          [-111.959581, 49.002794],\n          [-111.95951, 49.002452],\n          [-111.959584, 49.002087],\n          [-111.959768, 49.001731],\n          [-111.96008, 49.00139],\n          [-111.960323, 49.001097],\n          [-111.960993, 49.000276],\n          [-111.961147, 48.999913],\n          [-111.961177, 48.999675],\n          [-111.961154, 48.999405],\n          [-111.96075, 48.998378],\n          [-111.960537, 48.997835],\n          [-111.960261, 48.997296],\n          [-111.959961, 48.996969],\n          [-111.959772, 48.996485],\n          [-111.959789, 48.99582],\n          [-111.959918, 48.995443],\n          [-111.960048, 48.994907],\n          [-111.960094, 48.994603],\n          [-111.960084, 48.994414],\n          [-111.960109, 48.993824],\n          [-111.959994, 48.990856],\n          [-111.95827, 48.98094],\n          [-111.958253, 48.980705],\n          [-111.958185, 48.980405],\n          [-111.958073, 48.980015],\n          [-111.957973, 48.979662],\n          [-111.957788, 48.979177],\n          [-111.957579, 48.978688],\n          [-111.957393, 48.978342],\n          [-111.957182, 48.977986],\n          [-111.956929, 48.977617],\n          [-111.956287, 48.976872],\n          [-111.955429, 48.975932],\n          [-111.940434, 48.960617],\n          [-111.939756, 48.959862],\n          [-111.939258, 48.959163],\n          [-111.938864, 48.958475],\n          [-111.938589, 48.957934],\n          [-111.935242, 48.950139],\n          [-111.933705, 48.946469],\n          [-111.930948, 48.939956],\n          [-111.927211, 48.931012],\n          [-111.924522, 48.924688],\n          [-111.916608, 48.906188],\n          [-111.9112, 48.893335],\n          [-111.910969, 48.892844],\n          [-111.910694, 48.892325],\n          [-111.910265, 48.891676],\n          [-111.909921, 48.891247],\n          [-111.909492, 48.890711],\n          [-111.909046, 48.890237],\n          [-111.908119, 48.889328],\n          [-111.907385, 48.88863],\n          [-111.906844, 48.888116],\n          [-111.903694, 48.88508],\n          [-111.903291, 48.88469],\n          [-111.901737, 48.883161],\n          [-111.878176, 48.860393],\n          [-111.867242, 48.849753],\n          [-111.866486, 48.849013],\n          [-111.865877, 48.848301],\n          [-111.86531, 48.847533],\n          [-111.864675, 48.846613],\n          [-111.86392, 48.845195],\n          [-111.863594, 48.84437],\n          [-111.863233, 48.843167],\n          [-111.863139, 48.842738],\n          [-111.863019, 48.842026],\n          [-111.86295, 48.841071],\n          [-111.862942, 48.830326],\n          [-111.862942, 48.823285],\n          [-111.86289, 48.769261],\n          [-111.862864, 48.764515],\n          [-111.862813, 48.763474],\n          [-111.862718, 48.761743],\n          [-111.861611, 48.743809],\n          [-111.861439, 48.740289],\n          [-111.861439, 48.739949],\n          [-111.861594, 48.737176],\n          [-111.862178, 48.726719],\n          [-111.862229, 48.723792],\n          [-111.862083, 48.656639],\n          [-111.8621, 48.64979],\n          [-111.861997, 48.598701],\n          [-111.86198, 48.592185],\n          [-111.86198, 48.57272],\n          [-111.861912, 48.57163],\n          [-111.861817, 48.570494],\n          [-111.861697, 48.569205],\n          [-111.860581, 48.557657],\n          [-111.860077, 48.552231],\n          [-111.859663, 48.54801],\n          [-111.859594, 48.546805],\n          [-111.859611, 48.545322],\n          [-111.859792, 48.535383],\n          [-111.8598, 48.533888],\n          [-111.859886, 48.533121],\n          [-111.860015, 48.532581],\n          [-111.860246, 48.531939],\n          [-111.860598, 48.531387],\n          [-111.860942, 48.530899],\n          [-111.861688, 48.530109],\n          [-111.866109, 48.525755],\n          [-111.875953, 48.516192],\n          [-111.876929, 48.515247],\n          [-111.877241, 48.514954],\n          [-111.879228, 48.513021],\n          [-111.879759, 48.512467],\n          [-111.88006, 48.512124],\n          [-111.880267, 48.511881],\n          [-111.88042, 48.511679],\n          [-111.880571, 48.511473],\n          [-111.88094, 48.510956],\n          [-111.881292, 48.510376],\n          [-111.881653, 48.509733],\n          [-111.881996, 48.50904],\n          [-111.882305, 48.508346],\n          [-111.882562, 48.507572],\n          [-111.882777, 48.506828],\n          [-111.882931, 48.506134],\n          [-111.883026, 48.505588],\n          [-111.883441, 48.502992],\n          [-111.883604, 48.499975],\n          [-111.883614, 48.499767],\n          [-111.883635, 48.496433],\n          [-111.883673, 48.495815],\n          [-111.883734, 48.49503],\n          [-111.883798, 48.494396],\n          [-111.883866, 48.493802],\n          [-111.883999, 48.493],\n          [-111.884209, 48.492103],\n          [-111.884377, 48.49147],\n          [-111.884557, 48.490837],\n          [-111.885112, 48.489088],\n          [-111.885489, 48.48824],\n          [-111.886605, 48.485897],\n          [-111.88682, 48.485299],\n          [-111.887034, 48.484679],\n          [-111.887197, 48.484099],\n          [-111.887389, 48.483433],\n          [-111.88747, 48.482928],\n          [-111.887522, 48.482349],\n          [-111.887575, 48.481425],\n          [-111.887554, 48.480643],\n          [-111.887506, 48.480113],\n          [-111.887418, 48.479516],\n          [-111.887265, 48.478742],\n          [-111.887056, 48.477974],\n          [-111.886845, 48.47746],\n          [-111.886472, 48.476607],\n          [-111.885635, 48.474831],\n          [-111.885441, 48.474274],\n          [-111.885165, 48.473591],\n          [-111.884897, 48.472862],\n          [-111.884674, 48.47215],\n          [-111.884502, 48.471564],\n          [-111.884279, 48.470409],\n          [-111.884082, 48.46926],\n          [-111.883953, 48.468281],\n          [-111.883906, 48.467423],\n          [-111.883878, 48.46663],\n          [-111.883976, 48.454446],\n          [-111.884028, 48.447094],\n          [-111.884036, 48.443164],\n          [-111.884023, 48.441546],\n          [-111.884017, 48.440681],\n          [-111.884026, 48.43968],\n          [-111.884018, 48.438945],\n          [-111.88402, 48.438457],\n          [-111.884058, 48.438059],\n          [-111.884092, 48.43776],\n          [-111.884134, 48.437455],\n          [-111.884195, 48.437091],\n          [-111.884275, 48.436739],\n          [-111.884339, 48.436455],\n          [-111.884422, 48.436153],\n          [-111.884528, 48.435768],\n          [-111.884674, 48.435354],\n          [-111.884745, 48.435206],\n          [-111.884871, 48.43486],\n          [-111.885003, 48.434574],\n          [-111.885207, 48.434157],\n          [-111.885417, 48.433746],\n          [-111.885596, 48.433441],\n          [-111.88582, 48.433061],\n          [-111.886029, 48.43273],\n          [-111.886203, 48.432492],\n          [-111.886412, 48.432197],\n          [-111.886586, 48.431954],\n          [-111.886816, 48.431663],\n          [-111.887079, 48.431357],\n          [-111.887401, 48.430981],\n          [-111.887774, 48.430593],\n          [-111.888127, 48.430257],\n          [-111.888437, 48.429955],\n          [-111.889099, 48.429374],\n          [-111.889756, 48.428824],\n          [-111.890912, 48.427857],\n          [-111.892165, 48.426838],\n          [-111.905659, 48.415636],\n          [-111.90626, 48.415157],\n          [-111.906861, 48.41457],\n          [-111.907333, 48.414081],\n          [-111.907814, 48.413528],\n          [-111.908406, 48.412776],\n          [-111.909015, 48.411824],\n          [-111.909633, 48.410907],\n          [-111.920752, 48.392582],\n          [-111.927417, 48.381543],\n          [-111.93346, 48.371538],\n          [-111.933846, 48.37086],\n          [-111.934235, 48.370068],\n          [-111.934546, 48.369396],\n          [-111.934939, 48.368399],\n          [-111.935227, 48.367613],\n          [-111.935586, 48.366493],\n          [-111.935831, 48.365544],\n          [-111.936026, 48.364601],\n          [-111.936138, 48.363831],\n          [-111.936258, 48.362885],\n          [-111.936438, 48.360792],\n          [-111.936415, 48.329088],\n          [-111.936407, 48.310354],\n          [-111.936413, 48.303031],\n          [-111.936412, 48.300795],\n          [-111.936402, 48.300483],\n          [-111.936381, 48.271331],\n          [-111.936384, 48.26711],\n          [-111.936382, 48.259592],\n          [-111.936296, 48.241832],\n          [-111.936359, 48.224045],\n          [-111.936352, 48.223792],\n          [-111.936325, 48.223208],\n          [-111.936251, 48.222646],\n          [-111.936138, 48.222131],\n          [-111.936009, 48.221594],\n          [-111.935863, 48.221148],\n          [-111.935674, 48.220724],\n          [-111.935554, 48.220438],\n          [-111.935323, 48.219975],\n          [-111.934809, 48.219106],\n          [-111.93372, 48.217503],\n          [-111.933233, 48.216812],\n          [-111.932738, 48.21609],\n          [-111.932429, 48.215627],\n          [-111.931294, 48.214006],\n          [-111.927397, 48.208419],\n          [-111.925603, 48.205843],\n          [-111.925208, 48.205217],\n          [-111.92491, 48.204712],\n          [-111.924771, 48.204436],\n          [-111.924661, 48.204188],\n          [-111.924567, 48.203923],\n          [-111.924475, 48.203592],\n          [-111.924434, 48.203298],\n          [-111.924418, 48.202753],\n          [-111.924413, 48.20226],\n          [-111.924452, 48.201981],\n          [-111.924528, 48.20166],\n          [-111.924607, 48.201399],\n          [-111.924686, 48.201185],\n          [-111.924808, 48.200887],\n          [-111.92494, 48.200634],\n          [-111.925143, 48.200322],\n          [-111.925478, 48.199721],\n          [-111.929307, 48.193399],\n          [-111.931749, 48.18936],\n          [-111.932143, 48.188696],\n          [-111.932455, 48.188174],\n          [-111.933068, 48.187161],\n          [-111.933601, 48.186274],\n          [-111.933896, 48.185797],\n          [-111.934176, 48.185351],\n          [-111.934674, 48.184441],\n          [-111.934869, 48.184038],\n          [-111.935015, 48.183702],\n          [-111.935133, 48.183407],\n          [-111.935235, 48.183131],\n          [-111.935317, 48.182855],\n          [-111.935435, 48.182454],\n          [-111.935517, 48.18214],\n          [-111.935563, 48.181903],\n          [-111.935605, 48.181629],\n          [-111.935654, 48.181347],\n          [-111.935672, 48.181134],\n          [-111.935695, 48.180837],\n          [-111.93571, 48.180431],\n          [-111.935711, 48.179913],\n          [-111.935689, 48.179699],\n          [-111.935666, 48.179392],\n          [-111.935641, 48.179193],\n          [-111.935605, 48.178954],\n          [-111.935551, 48.17862],\n          [-111.935494, 48.178341],\n          [-111.935425, 48.178065],\n          [-111.935362, 48.177851],\n          [-111.935271, 48.177512],\n          [-111.935083, 48.177015],\n          [-111.93498, 48.176751],\n          [-111.934859, 48.176484],\n          [-111.934688, 48.176141],\n          [-111.934489, 48.175789],\n          [-111.934239, 48.175377],\n          [-111.933859, 48.174812],\n          [-111.933189, 48.173765],\n          [-111.928027, 48.165762],\n          [-111.927735, 48.165321],\n          [-111.92603, 48.162726],\n          [-111.925093, 48.161247],\n          [-111.924008, 48.159611],\n          [-111.922175, 48.156783],\n          [-111.920615, 48.154387],\n          [-111.919007, 48.151911],\n          [-111.91822, 48.150663],\n          [-111.916601, 48.148144],\n          [-111.915551, 48.146568],\n          [-111.914312, 48.144665],\n          [-111.913624, 48.143606],\n          [-111.912311, 48.141567],\n          [-111.911974, 48.141065],\n          [-111.911504, 48.140381],\n          [-111.910989, 48.139656],\n          [-111.91031, 48.138734],\n          [-111.909273, 48.1374],\n          [-111.907928, 48.135653],\n          [-111.906666, 48.13405],\n          [-111.905997, 48.133172],\n          [-111.904722, 48.131516],\n          [-111.901655, 48.127581],\n          [-111.900048, 48.125516],\n          [-111.898729, 48.123822],\n          [-111.894029, 48.117798],\n          [-111.893315, 48.116857],\n          [-111.892001, 48.115177],\n          [-111.889638, 48.112132],\n          [-111.887413, 48.109275],\n          [-111.884717, 48.105808],\n          [-111.876044, 48.094626],\n          [-111.87031, 48.087229],\n          [-111.862959, 48.077764],\n          [-111.861332, 48.075665],\n          [-111.858755, 48.072362],\n          [-111.857125, 48.070241],\n          [-111.854834, 48.06729],\n          [-111.850948, 48.062304],\n          [-111.85011, 48.061229],\n          [-111.849084, 48.059917],\n          [-111.845348, 48.055071],\n          [-111.836461, 48.043589],\n          [-111.832454, 48.038401],\n          [-111.828116, 48.032803],\n          [-111.825147, 48.028974],\n          [-111.816587, 48.017942],\n          [-111.816087, 48.017289],\n          [-111.815305, 48.016376],\n          [-111.814473, 48.015423],\n          [-111.813623, 48.014499],\n          [-111.812937, 48.013816],\n          [-111.811984, 48.012851],\n          [-111.810868, 48.011863],\n          [-111.809752, 48.010882],\n          [-111.808825, 48.010101],\n          [-111.807598, 48.009153],\n          [-111.806388, 48.008229],\n          [-111.805238, 48.007408],\n          [-111.784158, 47.992286],\n          [-111.782561, 47.991143],\n          [-111.767146, 47.980084],\n          [-111.766219, 47.979354],\n          [-111.765283, 47.978504],\n          [-111.764288, 47.977544],\n          [-111.763404, 47.976585],\n          [-111.762691, 47.975723],\n          [-111.762193, 47.97501],\n          [-111.761653, 47.974154],\n          [-111.761121, 47.973252],\n          [-111.753336, 47.959718],\n          [-111.749036, 47.952205],\n          [-111.736505, 47.930384],\n          [-111.736106, 47.92965],\n          [-111.735644, 47.928853],\n          [-111.735343, 47.928305],\n          [-111.733592, 47.925244],\n          [-111.733306, 47.924769],\n          [-111.732599, 47.923554],\n          [-111.732395, 47.923205],\n          [-111.731718, 47.922093],\n          [-111.731538, 47.921738],\n          [-111.73117, 47.921043],\n          [-111.726112, 47.912262],\n          [-111.71442, 47.89173],\n          [-111.713776, 47.890608],\n          [-111.713253, 47.889578],\n          [-111.712927, 47.888864],\n          [-111.71254, 47.888058],\n          [-111.712146, 47.88689],\n          [-111.711811, 47.885744],\n          [-111.711519, 47.884564],\n          [-111.711253, 47.883125],\n          [-111.711124, 47.881922],\n          [-111.71103, 47.880834],\n          [-111.71103, 47.879792],\n          [-111.711129, 47.869762],\n          [-111.711004, 47.867783],\n          [-111.710901, 47.866758],\n          [-111.710781, 47.865716],\n          [-111.710618, 47.864547],\n          [-111.710438, 47.863447],\n          [-111.710283, 47.862537],\n          [-111.709991, 47.861213],\n          [-111.709756, 47.860259],\n          [-111.709335, 47.858847],\n          [-111.708841, 47.857285],\n          [-111.70727, 47.852822],\n          [-111.706867, 47.851704],\n          [-111.706498, 47.850875],\n          [-111.706077, 47.850017],\n          [-111.705434, 47.848819],\n          [-111.705305, 47.848582],\n          [-111.704816, 47.847747],\n          [-111.704215, 47.846849],\n          [-111.703623, 47.846054],\n          [-111.702678, 47.844833],\n          [-111.701983, 47.843986],\n          [-111.700902, 47.842828],\n          [-111.699923, 47.841889],\n          [-111.698979, 47.841013],\n          [-111.698052, 47.84023],\n          [-111.696893, 47.839291],\n          [-111.668363, 47.817267],\n          [-111.667479, 47.816472],\n          [-111.667042, 47.815942],\n          [-111.666647, 47.815434],\n          [-111.666226, 47.81476],\n          [-111.665943, 47.814143],\n          [-111.66578, 47.813619],\n          [-111.665625, 47.812887],\n          [-111.6656, 47.812391],\n          [-111.665591, 47.811797],\n          [-111.666429, 47.79584],\n          [-111.666535, 47.793822],\n          [-111.666492, 47.791308],\n          [-111.666439, 47.750802],\n          [-111.666442, 47.741317],\n          [-111.666445, 47.740989],\n          [-111.666406, 47.723306],\n          [-111.666381, 47.72244],\n          [-111.666295, 47.721684],\n          [-111.666158, 47.720881],\n          [-111.665986, 47.72024],\n          [-111.665746, 47.719547],\n          [-111.665419, 47.71871],\n          [-111.665042, 47.717925],\n          [-111.664647, 47.717243],\n          [-111.664132, 47.716493],\n          [-111.663789, 47.716008],\n          [-111.663359, 47.715528],\n          [-111.662432, 47.714581],\n          [-111.658081, 47.710071],\n          [-111.647285, 47.699031],\n          [-111.646085, 47.697836],\n          [-111.632275, 47.683698],\n          [-111.631949, 47.683351],\n          [-111.606663, 47.657441],\n          [-111.60117, 47.651798],\n          [-111.590415, 47.64073],\n          [-111.589918, 47.640187],\n          [-111.589463, 47.639655],\n          [-111.589068, 47.639157],\n          [-111.588707, 47.638689],\n          [-111.588287, 47.638139],\n          [-111.587849, 47.637538],\n          [-111.587549, 47.637104],\n          [-111.587231, 47.636624],\n          [-111.58627, 47.63501],\n          [-111.585369, 47.633136],\n          [-111.570511, 47.6019],\n          [-111.569945, 47.600818],\n          [-111.56955, 47.600169],\n          [-111.569224, 47.599643],\n          [-111.568846, 47.599047],\n          [-111.568546, 47.598607],\n          [-111.568168, 47.598051],\n          [-111.567747, 47.597472],\n          [-111.567335, 47.596928],\n          [-111.566915, 47.59643],\n          [-111.566537, 47.595991],\n          [-111.552899, 47.581183],\n          [-111.552633, 47.580911],\n          [-111.537629, 47.564691],\n          [-111.536514, 47.563515],\n          [-111.535904, 47.562901],\n          [-111.535175, 47.56227],\n          [-111.534437, 47.561691],\n          [-111.533656, 47.561129],\n          [-111.532711, 47.560504],\n          [-111.531647, 47.559884],\n          [-111.53048, 47.559311],\n          [-111.529184, 47.558737],\n          [-111.528008, 47.558285],\n          [-111.526806, 47.557897],\n          [-111.525424, 47.557503],\n          [-111.524008, 47.557162],\n          [-111.522824, 47.556953],\n          [-111.521734, 47.556779],\n          [-111.509679, 47.554952],\n          [-111.484251, 47.551039],\n          [-111.477299, 47.54995],\n          [-111.455614, 47.546631],\n          [-111.452477, 47.546143],\n          [-111.452005, 47.546074],\n          [-111.448496, 47.545531],\n          [-111.445301, 47.545037],\n          [-111.443894, 47.544799],\n          [-111.442357, 47.544492],\n          [-111.440907, 47.544162],\n          [-111.439173, 47.543716],\n          [-111.437894, 47.543368],\n          [-111.436512, 47.542957],\n          [-111.435045, 47.54247],\n          [-111.385349, 47.526175],\n          [-111.384241, 47.525793],\n          [-111.383478, 47.52541],\n          [-111.382928, 47.525097],\n          [-111.382499, 47.524784],\n          [-111.382036, 47.524384],\n          [-111.381709, 47.524025],\n          [-111.381452, 47.523741],\n          [-111.380053, 47.521909],\n          [-111.379298, 47.520959],\n          [-111.379152, 47.520779],\n          [-111.378714, 47.520286],\n          [-111.378268, 47.519857],\n          [-111.377555, 47.519394],\n          [-111.376774, 47.518994],\n          [-111.376096, 47.518733],\n          [-111.375409, 47.51853],\n          [-111.374294, 47.518234],\n          [-111.351059, 47.512362],\n          [-111.350081, 47.512055],\n          [-111.348914, 47.511632],\n          [-111.348184, 47.511255],\n          [-111.347446, 47.510878],\n          [-111.346914, 47.510553],\n          [-111.346356, 47.510147],\n          [-111.345832, 47.509759],\n          [-111.345309, 47.509295],\n          [-111.344914, 47.508884],\n          [-111.344605, 47.508542],\n          [-111.344193, 47.50802],\n          [-111.34391, 47.507591],\n          [-111.343618, 47.507133],\n          [-111.343352, 47.506535],\n          [-111.343137, 47.505921],\n          [-111.343, 47.505254],\n          [-111.342914, 47.504779],\n          [-111.342871, 47.504205],\n          [-111.342884, 47.503714],\n          [-111.343017, 47.501337],\n          [-111.343037, 47.500922],\n          [-111.343074, 47.500247],\n          [-111.343153, 47.498866],\n          [-111.343699, 47.489338],\n          [-111.343837, 47.488347],\n          [-111.344051, 47.487517],\n          [-111.344326, 47.486746],\n          [-111.344695, 47.485795],\n          [-111.345184, 47.484855],\n          [-111.345493, 47.484356],\n          [-111.346068, 47.483527],\n          [-111.34715, 47.48221],\n          [-111.347948, 47.481392],\n          [-111.348765, 47.480715],\n          [-111.349751, 47.479978],\n          [-111.350866, 47.47913],\n          [-111.356582, 47.475347],\n          [-111.365214, 47.469592],\n          [-111.367419, 47.46813],\n          [-111.367934, 47.467829],\n          [-111.368578, 47.467492],\n          [-111.36923, 47.467144],\n          [-111.369994, 47.466807],\n          [-111.370973, 47.466407],\n          [-111.371926, 47.466042],\n          [-111.372818, 47.465746],\n          [-111.373522, 47.465525],\n          [-111.374509, 47.465258],\n          [-111.429286, 47.452445],\n          [-111.429621, 47.452364],\n          [-111.473508, 47.442064],\n          [-111.50183, 47.435384],\n          [-111.502749, 47.435175],\n          [-111.503701, 47.434961],\n          [-111.504362, 47.434792],\n          [-111.505221, 47.434543],\n          [-111.506045, 47.434299],\n          [-111.506663, 47.434095],\n          [-111.507143, 47.433927],\n          [-111.507907, 47.433648],\n          [-111.508654, 47.433312],\n          [-111.509255, 47.433045],\n          [-111.509933, 47.432725],\n          [-111.510534, 47.432412],\n          [-111.51122, 47.432029],\n          [-111.51183, 47.431674],\n          [-111.512954, 47.430931],\n          [-111.513546, 47.43049],\n          [-111.524011, 47.422011],\n          [-111.569141, 47.385345],\n          [-111.6142, 47.348685],\n          [-111.614466, 47.34847],\n          [-111.634341, 47.332266],\n          [-111.69101, 47.285965],\n          [-111.692683, 47.284596],\n          [-111.694151, 47.283461],\n          [-111.694838, 47.282943],\n          [-111.696432, 47.281863],\n          [-111.698123, 47.280815],\n          [-111.699024, 47.280297],\n          [-111.699436, 47.280064],\n          [-111.703522, 47.277671],\n          [-111.704183, 47.27728],\n          [-111.704689, 47.276966],\n          [-111.70511, 47.276686],\n          [-111.705436, 47.276442],\n          [-111.705788, 47.276139],\n          [-111.706182, 47.275766],\n          [-111.706612, 47.275289],\n          [-111.706989, 47.274806],\n          [-111.707367, 47.274264],\n          [-111.707573, 47.273856],\n          [-111.707813, 47.273379],\n          [-111.707933, 47.273047],\n          [-111.708045, 47.272651],\n          [-111.708122, 47.272307],\n          [-111.708199, 47.271911],\n          [-111.708234, 47.271544],\n          [-111.708234, 47.271212],\n          [-111.708157, 47.264538],\n          [-111.708114, 47.262342],\n          [-111.708122, 47.261794],\n          [-111.708157, 47.261369],\n          [-111.708234, 47.260851],\n          [-111.708268, 47.260653],\n          [-111.708337, 47.260257],\n          [-111.708508, 47.259511],\n          [-111.708637, 47.258923],\n          [-111.708783, 47.258241],\n          [-111.70898, 47.257536],\n          [-111.709152, 47.256942],\n          [-111.709298, 47.256383],\n          [-111.710079, 47.25333],\n          [-111.710328, 47.252363],\n          [-111.710474, 47.251833],\n          [-111.710637, 47.251332],\n          [-111.710834, 47.250889],\n          [-111.71104, 47.250545],\n          [-111.711367, 47.250085],\n          [-111.711658, 47.249753],\n          [-111.711942, 47.249444],\n          [-111.712345, 47.249089],\n          [-111.712766, 47.248751],\n          [-111.71316, 47.248494],\n          [-111.713624, 47.248221],\n          [-111.714147, 47.247958],\n          [-111.714834, 47.247655],\n          [-111.729726, 47.241112],\n          [-111.73291, 47.239807],\n          [-111.75169, 47.232534],\n          [-111.754093, 47.231624],\n          [-111.75635, 47.230861],\n          [-111.75676, 47.230739],\n          [-111.765002, 47.228413],\n          [-111.765835, 47.228157],\n          [-111.766633, 47.227877],\n          [-111.767345, 47.227597],\n          [-111.768092, 47.227306],\n          [-111.768719, 47.227026],\n          [-111.769474, 47.226676],\n          [-111.770058, 47.226361],\n          [-111.770727, 47.225988],\n          [-111.771448, 47.225534],\n          [-111.772118, 47.225096],\n          [-111.772693, 47.224688],\n          [-111.773405, 47.22417],\n          [-111.773714, 47.223936],\n          [-111.774169, 47.223575],\n          [-111.774641, 47.223103],\n          [-111.775104, 47.222619],\n          [-111.775499, 47.222211],\n          [-111.775885, 47.221774],\n          [-111.776306, 47.221255],\n          [-111.776658, 47.220777],\n          [-111.77695, 47.220369],\n          [-111.777422, 47.219611],\n          [-111.777722, 47.219057],\n          [-111.778014, 47.218422],\n          [-111.778289, 47.217746],\n          [-111.778503, 47.217104],\n          [-111.778675, 47.216428],\n          [-111.778881, 47.215694],\n          [-111.779061, 47.214988],\n          [-111.780057, 47.210796],\n          [-111.780203, 47.210213],\n          [-111.780323, 47.209758],\n          [-111.780435, 47.209397],\n          [-111.780641, 47.208808],\n          [-111.780907, 47.208201],\n          [-111.78113, 47.207729],\n          [-111.781301, 47.207438],\n          [-111.781499, 47.207129],\n          [-111.78228, 47.205916],\n          [-111.783293, 47.204645],\n          [-111.783936, 47.203974],\n          [-111.784735, 47.203146],\n          [-111.785593, 47.202225],\n          [-111.786314, 47.201466],\n          [-111.786872, 47.200883],\n          [-111.787902, 47.199845],\n          [-111.788254, 47.199507],\n          [-111.788674, 47.19914],\n          [-111.789086, 47.19879],\n          [-111.789584, 47.198387],\n          [-111.790168, 47.197921],\n          [-111.790605, 47.197618],\n          [-111.791249, 47.197227],\n          [-111.791824, 47.196877],\n          [-111.792545, 47.196474],\n          [-111.793198, 47.196136],\n          [-111.79397, 47.195769],\n          [-111.794805, 47.195425],\n          [-111.801248, 47.192835],\n          [-111.801575, 47.192701],\n          [-111.802656, 47.192287],\n          [-111.803514, 47.191937],\n          [-111.804167, 47.191628],\n          [-111.804665, 47.191394],\n          [-111.8053, 47.191045],\n          [-111.805723, 47.190797],\n          [-111.805997, 47.190634],\n          [-111.806478, 47.190323],\n          [-111.806732, 47.190144],\n          [-111.80699, 47.189955],\n          [-111.807242, 47.189755],\n          [-111.807499, 47.189537],\n          [-111.807978, 47.189108],\n          [-111.808309, 47.188784],\n          [-111.808738, 47.188316],\n          [-111.809145, 47.187831],\n          [-111.809375, 47.187515],\n          [-111.809578, 47.187207],\n          [-111.809725, 47.186968],\n          [-111.809941, 47.18658],\n          [-111.810196, 47.186052],\n          [-111.810485, 47.185392],\n          [-111.810582, 47.185034],\n          [-111.810757, 47.184458],\n          [-111.81087, 47.184068],\n          [-111.811288, 47.182591],\n          [-111.811466, 47.182023],\n          [-111.811592, 47.181562],\n          [-111.811725, 47.181068],\n          [-111.811881, 47.18053],\n          [-111.812016, 47.179972],\n          [-111.812133, 47.179486],\n          [-111.812304, 47.178698],\n          [-111.812475, 47.177933],\n          [-111.812795, 47.176671],\n          [-111.813022, 47.175805],\n          [-111.813143, 47.175313],\n          [-111.813289, 47.174743],\n          [-111.813451, 47.174086],\n          [-111.813587, 47.173603],\n          [-111.813709, 47.173199],\n          [-111.813868, 47.172742],\n          [-111.814052, 47.172177],\n          [-111.81431, 47.171374],\n          [-111.814446, 47.170953],\n          [-111.814555, 47.170592],\n          [-111.814621, 47.170315],\n          [-111.814724, 47.169845],\n          [-111.814867, 47.169286],\n          [-111.814924, 47.169023],\n          [-111.815005, 47.168585],\n          [-111.81512, 47.168075],\n          [-111.815267, 47.167513],\n          [-111.81537, 47.167124],\n          [-111.815534, 47.166596],\n          [-111.815743, 47.165879],\n          [-111.815883, 47.165407],\n          [-111.816017, 47.16497],\n          [-111.816151, 47.164499],\n          [-111.816299, 47.164102],\n          [-111.816455, 47.163605],\n          [-111.816606, 47.163233],\n          [-111.81675, 47.162929],\n          [-111.8169, 47.16265],\n          [-111.817163, 47.162234],\n          [-111.817461, 47.161792],\n          [-111.817707, 47.161428],\n          [-111.817918, 47.161172],\n          [-111.818109, 47.160939],\n          [-111.81826, 47.160773],\n          [-111.818436, 47.160598],\n          [-111.818713, 47.160322],\n          [-111.819137, 47.159916],\n          [-111.819338, 47.159742],\n          [-111.819615, 47.159506],\n          [-111.819811, 47.159353],\n          [-111.820101, 47.159137],\n          [-111.820886, 47.158653],\n          [-111.821347, 47.158391],\n          [-111.821709, 47.158179],\n          [-111.82215, 47.157949],\n          [-111.822792, 47.157656],\n          [-111.823291, 47.157407],\n          [-111.823951, 47.157074],\n          [-111.824604, 47.156773],\n          [-111.824926, 47.156618],\n          [-111.826016, 47.156075],\n          [-111.826777, 47.155704],\n          [-111.827118, 47.155527],\n          [-111.827632, 47.155278],\n          [-111.828833, 47.154684],\n          [-111.830331, 47.153967],\n          [-111.83092, 47.153679],\n          [-111.831417, 47.153485],\n          [-111.831694, 47.153394],\n          [-111.831937, 47.15332],\n          [-111.832157, 47.153261],\n          [-111.832517, 47.15318],\n          [-111.832892, 47.153117],\n          [-111.833253, 47.153076],\n          [-111.833573, 47.153049],\n          [-111.833993, 47.153025],\n          [-111.834559, 47.153049],\n          [-111.835126, 47.153113],\n          [-111.835701, 47.1532],\n          [-111.83595, 47.153259],\n          [-111.841856, 47.154858],\n          [-111.842362, 47.155002],\n          [-111.842712, 47.155094],\n          [-111.843019, 47.155158],\n          [-111.843672, 47.155257],\n          [-111.8438, 47.155267],\n          [-111.844087, 47.155287],\n          [-111.844399, 47.155286],\n          [-111.844699, 47.15528],\n          [-111.845058, 47.15526],\n          [-111.845509, 47.155193],\n          [-111.845869, 47.155122],\n          [-111.846291, 47.155019],\n          [-111.846644, 47.154905],\n          [-111.846928, 47.154785],\n          [-111.847126, 47.154685],\n          [-111.847479, 47.154504],\n          [-111.847736, 47.154346],\n          [-111.847908, 47.15421],\n          [-111.848115, 47.154036],\n          [-111.848251, 47.153894],\n          [-111.848342, 47.153792],\n          [-111.84847, 47.153647],\n          [-111.848543, 47.153546],\n          [-111.848649, 47.153419],\n          [-111.848764, 47.153232],\n          [-111.848861, 47.153032],\n          [-111.848947, 47.152823],\n          [-111.848973, 47.152708],\n          [-111.849021, 47.152541],\n          [-111.849042, 47.152364],\n          [-111.849077, 47.152131],\n          [-111.849103, 47.151825],\n          [-111.849333, 47.149062],\n          [-111.849393, 47.148406],\n          [-111.8494, 47.148192],\n          [-111.849408, 47.147987],\n          [-111.8494, 47.147824],\n          [-111.84939, 47.147698],\n          [-111.849374, 47.147556],\n          [-111.849347, 47.147435],\n          [-111.849331, 47.147351],\n          [-111.849245, 47.146966],\n          [-111.849142, 47.146674],\n          [-111.849059, 47.146434],\n          [-111.848943, 47.146212],\n          [-111.84886, 47.146053],\n          [-111.848767, 47.145896],\n          [-111.848673, 47.145762],\n          [-111.848566, 47.14562],\n          [-111.847025, 47.143717],\n          [-111.846887, 47.143525],\n          [-111.846766, 47.143353],\n          [-111.846661, 47.14319],\n          [-111.846521, 47.142953],\n          [-111.846415, 47.142749],\n          [-111.846343, 47.142591],\n          [-111.846269, 47.14237],\n          [-111.846241, 47.142263],\n          [-111.846223, 47.14217],\n          [-111.846209, 47.142062],\n          [-111.84619, 47.141876],\n          [-111.846192, 47.141745],\n          [-111.846217, 47.141528],\n          [-111.846242, 47.141353],\n          [-111.84627, 47.141184],\n          [-111.846324, 47.141016],\n          [-111.846398, 47.140797],\n          [-111.846525, 47.140531],\n          [-111.846604, 47.14041],\n          [-111.846676, 47.14029],\n          [-111.846846, 47.140059],\n          [-111.847142, 47.139751],\n          [-111.847281, 47.13963],\n          [-111.84746, 47.139479],\n          [-111.847678, 47.139323],\n          [-111.84791, 47.139171],\n          [-111.848186, 47.139013],\n          [-111.848438, 47.138891],\n          [-111.848706, 47.138772],\n          [-111.848984, 47.138674],\n          [-111.849267, 47.138581],\n          [-111.849592, 47.138477],\n          [-111.849947, 47.138393],\n          [-111.850257, 47.138331],\n          [-111.850556, 47.138292],\n          [-111.850908, 47.138241],\n          [-111.851241, 47.13822],\n          [-111.85164, 47.138209],\n          [-111.851974, 47.13821],\n          [-111.852237, 47.138223],\n          [-111.852532, 47.138247],\n          [-111.852795, 47.138276],\n          [-111.853123, 47.13833],\n          [-111.853394, 47.138374],\n          [-111.853787, 47.138457],\n          [-111.854766, 47.138667],\n          [-111.855826, 47.138884],\n          [-111.856179, 47.13897],\n          [-111.856565, 47.139029],\n          [-111.856792, 47.139068],\n          [-111.857173, 47.13911],\n          [-111.857431, 47.139137],\n          [-111.857676, 47.139157],\n          [-111.858048, 47.139176],\n          [-111.858338, 47.139177],\n          [-111.858762, 47.139167],\n          [-111.859155, 47.139148],\n          [-111.85955, 47.139117],\n          [-111.859805, 47.139089],\n          [-111.860245, 47.139022],\n          [-111.860491, 47.13898],\n          [-111.860683, 47.138944],\n          [-111.860973, 47.138885],\n          [-111.861214, 47.138829],\n          [-111.861479, 47.138758],\n          [-111.861743, 47.138677],\n          [-111.862069, 47.138562],\n          [-111.862344, 47.138449],\n          [-111.862687, 47.138297],\n          [-111.862931, 47.138175],\n          [-111.863114, 47.138087],\n          [-111.863314, 47.137975],\n          [-111.863599, 47.137807],\n          [-111.863972, 47.13756],\n          [-111.864261, 47.137341],\n          [-111.864442, 47.137202],\n          [-111.864674, 47.137005],\n          [-111.864969, 47.136736],\n          [-111.865258, 47.13642],\n          [-111.867853, 47.13324],\n          [-111.868102, 47.13296],\n          [-111.868445, 47.132657],\n          [-111.868909, 47.132347],\n          [-111.869372, 47.132096],\n          [-111.869776, 47.131938],\n          [-111.870291, 47.131792],\n          [-111.870754, 47.131687],\n          [-111.871286, 47.131623],\n          [-111.87181, 47.131605],\n          [-111.872359, 47.131617],\n          [-111.873389, 47.131705],\n          [-111.875681, 47.131897],\n          [-111.885054, 47.132785],\n          [-111.886566, 47.132886],\n          [-111.888607, 47.1331],\n          [-111.888985, 47.133135],\n          [-111.889766, 47.133217],\n          [-111.890444, 47.133281],\n          [-111.891225, 47.133322],\n          [-111.891886, 47.133334],\n          [-111.892598, 47.133334],\n          [-111.893242, 47.133316],\n          [-111.8938, 47.133305],\n          [-111.894512, 47.133246],\n          [-111.89513, 47.133194],\n          [-111.89563, 47.133132],\n          [-111.896274, 47.133044],\n          [-111.89678, 47.132974],\n          [-111.898531, 47.132636],\n          [-111.899656, 47.132344],\n          [-111.900711, 47.132022],\n          [-111.901398, 47.131783],\n          [-111.902445, 47.131403],\n          [-111.904162, 47.130755],\n          [-111.909034, 47.128927],\n          [-111.913729, 47.127181],\n          [-111.917251, 47.125878],\n          [-111.92071, 47.1247],\n          [-111.921698, 47.124251],\n          [-111.922387, 47.123838],\n          [-111.922806, 47.123526],\n          [-111.924809, 47.121884],\n          [-111.925527, 47.121467],\n          [-111.926631, 47.121045],\n          [-111.927545, 47.120838],\n          [-111.928844, 47.120679],\n          [-111.939954, 47.119561],\n          [-111.940893, 47.119375],\n          [-111.941491, 47.119193],\n          [-111.94258, 47.118694],\n          [-111.94328, 47.118205],\n          [-111.943682, 47.117842],\n          [-111.944167, 47.117216],\n          [-111.94437, 47.116782],\n          [-111.94452, 47.116283],\n          [-111.944594, 47.115646],\n          [-111.944471, 47.113184],\n          [-111.944519, 47.112085],\n          [-111.944699, 47.111164],\n          [-111.9451, 47.109855],\n          [-111.94519, 47.109613],\n          [-111.946818, 47.104798],\n          [-111.947185, 47.103915],\n          [-111.94757, 47.103215],\n          [-111.948705, 47.101708],\n          [-111.95025, 47.099859],\n          [-111.951568, 47.098237],\n          [-111.952318, 47.097326],\n          [-111.952866, 47.096646],\n          [-111.954165, 47.094457],\n          [-111.954536, 47.093996],\n          [-111.955001, 47.093573],\n          [-111.95538, 47.093283],\n          [-111.95597, 47.092921],\n          [-111.958022, 47.092174],\n          [-111.958929, 47.091665],\n          [-111.959563, 47.091145],\n          [-111.959918, 47.090782],\n          [-111.960199, 47.090406],\n          [-111.960514, 47.089782],\n          [-111.960679, 47.089121],\n          [-111.961076, 47.083974],\n          [-111.961218, 47.083113],\n          [-111.961515, 47.082259],\n          [-111.962027, 47.081188],\n          [-111.962536, 47.080367],\n          [-111.963148, 47.079581],\n          [-111.964601, 47.078023],\n          [-111.966718, 47.075826],\n          [-111.967024, 47.075517],\n          [-111.969094, 47.073375],\n          [-111.970437, 47.07194],\n          [-111.972154, 47.070032],\n          [-111.973432, 47.068542],\n          [-111.974103, 47.067809],\n          [-111.974604, 47.067107],\n          [-111.976616, 47.064731],\n          [-111.98105, 47.059331],\n          [-111.981811, 47.058552],\n          [-111.982905, 47.057585],\n          [-111.983864, 47.057007],\n          [-111.985011, 47.056354],\n          [-111.986314, 47.055712],\n          [-111.986853, 47.055504],\n          [-111.987827, 47.055224],\n          [-111.990272, 47.054577],\n          [-111.991627, 47.053954],\n          [-111.992491, 47.053494],\n          [-111.993301, 47.052977],\n          [-111.994268, 47.05221],\n          [-111.994901, 47.051592],\n          [-112.00108, 47.045261],\n          [-112.002131, 47.044014],\n          [-112.002341, 47.043639],\n          [-112.002459, 47.043291],\n          [-112.00254, 47.04249],\n          [-112.002551, 47.041633],\n          [-112.002802, 47.040468],\n          [-112.003031, 47.039996],\n          [-112.003311, 47.039629],\n          [-112.00408, 47.038901],\n          [-112.004669, 47.038537],\n          [-112.005381, 47.038191],\n          [-112.006132, 47.03787],\n          [-112.007591, 47.037508],\n          [-112.008057, 47.037437],\n          [-112.009475, 47.037313],\n          [-112.012696, 47.037258],\n          [-112.01489, 47.037245],\n          [-112.016275, 47.037163],\n          [-112.0192, 47.037033],\n          [-112.020595, 47.036893],\n          [-112.021841, 47.036661],\n          [-112.023428, 47.036288],\n          [-112.024543, 47.035923],\n          [-112.025634, 47.03549],\n          [-112.026621, 47.035004],\n          [-112.027875, 47.034259],\n          [-112.04368, 47.024236],\n          [-112.044909, 47.023441],\n          [-112.04544, 47.023036],\n          [-112.04608, 47.022418],\n          [-112.046528, 47.021863],\n          [-112.046751, 47.021531],\n          [-112.046895, 47.021189],\n          [-112.048457, 47.017223],\n          [-112.049379, 47.014861],\n          [-112.04961, 47.014335],\n          [-112.049878, 47.013819],\n          [-112.050194, 47.013314],\n          [-112.050556, 47.012813],\n          [-112.050955, 47.01233],\n          [-112.051351, 47.011873],\n          [-112.051809, 47.011423],\n          [-112.052303, 47.010991],\n          [-112.05283, 47.010576],\n          [-112.053387, 47.010182],\n          [-112.053972, 47.009806],\n          [-112.056998, 47.008006],\n          [-112.058515, 47.007109],\n          [-112.060333, 47.006031],\n          [-112.061846, 47.00513],\n          [-112.062472, 47.004869],\n          [-112.062889, 47.004741],\n          [-112.063358, 47.004645],\n          [-112.063683, 47.004606],\n          [-112.064074, 47.004561],\n          [-112.064445, 47.004519],\n          [-112.06488, 47.004576],\n          [-112.06527, 47.004629],\n          [-112.065565, 47.004697],\n          [-112.065974, 47.004792],\n          [-112.066808, 47.004991],\n          [-112.06824, 47.005361],\n          [-112.0686, 47.005467],\n          [-112.069096, 47.005596],\n          [-112.069473, 47.005688],\n          [-112.069732, 47.005745],\n          [-112.070266, 47.005855],\n          [-112.070699, 47.005951],\n          [-112.071253, 47.006048],\n          [-112.071642, 47.006114],\n          [-112.071928, 47.006158],\n          [-112.072302, 47.006209],\n          [-112.072735, 47.006263],\n          [-112.072984, 47.006287],\n          [-112.073367, 47.006318],\n          [-112.073792, 47.006352],\n          [-112.074219, 47.006372],\n          [-112.074542, 47.006382],\n          [-112.074829, 47.00639],\n          [-112.075178, 47.006392],\n          [-112.075603, 47.006393],\n          [-112.076788, 47.006332],\n          [-112.077271, 47.006281],\n          [-112.077628, 47.006225],\n          [-112.078026, 47.006153],\n          [-112.078436, 47.006074],\n          [-112.078755, 47.005996],\n          [-112.079201, 47.005866],\n          [-112.079533, 47.005747],\n          [-112.079812, 47.00563],\n          [-112.080082, 47.005495],\n          [-112.080379, 47.005332],\n          [-112.080635, 47.005164],\n          [-112.080953, 47.004927],\n          [-112.081049, 47.004826],\n          [-112.081198, 47.004689],\n          [-112.081316, 47.004562],\n          [-112.081449, 47.004379],\n          [-112.081568, 47.004191],\n          [-112.081674, 47.003987],\n          [-112.08174, 47.003858],\n          [-112.081806, 47.003692],\n          [-112.081884, 47.003438],\n          [-112.08191, 47.003275],\n          [-112.081934, 47.003066],\n          [-112.08193, 47.002831],\n          [-112.081896, 47.002597],\n          [-112.081853, 47.002371],\n          [-112.081798, 47.002194],\n          [-112.081607, 47.00176],\n          [-112.081184, 47.001198],\n          [-112.079559, 46.99968],\n          [-112.078016, 46.99838],\n          [-112.07758, 46.997912],\n          [-112.077288, 46.997532],\n          [-112.076986, 46.99693],\n          [-112.076889, 46.996514],\n          [-112.076886, 46.996116],\n          [-112.076984, 46.995478],\n          [-112.07795, 46.992584],\n          [-112.078047, 46.991994],\n          [-112.078024, 46.991594],\n          [-112.077935, 46.9912],\n          [-112.077672, 46.990627],\n          [-112.076129, 46.988425],\n          [-112.075762, 46.987771],\n          [-112.075646, 46.98742],\n          [-112.075619, 46.987055],\n          [-112.075663, 46.986679],\n          [-112.075796, 46.986299],\n          [-112.076008, 46.985921],\n          [-112.076502, 46.98539],\n          [-112.077181, 46.984932],\n          [-112.081242, 46.982494],\n          [-112.081853, 46.981972],\n          [-112.082104, 46.981646],\n          [-112.082346, 46.981245],\n          [-112.082526, 46.98074],\n          [-112.082567, 46.980266],\n          [-112.082681, 46.977427],\n          [-112.082826, 46.974499],\n          [-112.083032, 46.973709],\n          [-112.083438, 46.973098],\n          [-112.083941, 46.972667],\n          [-112.084536, 46.97225],\n          [-112.093815, 46.965771],\n          [-112.094034, 46.965596],\n          [-112.094318, 46.965306],\n          [-112.094501, 46.965085],\n          [-112.094642, 46.964864],\n          [-112.094785, 46.964575],\n          [-112.094868, 46.964338],\n          [-112.094926, 46.964081],\n          [-112.094952, 46.963813],\n          [-112.094963, 46.963562],\n          [-112.094964, 46.963005],\n          [-112.094945, 46.962147],\n          [-112.095064, 46.961322],\n          [-112.095315, 46.960775],\n          [-112.095663, 46.960328],\n          [-112.098599, 46.957746],\n          [-112.098975, 46.957432],\n          [-112.099726, 46.956946],\n          [-112.100314, 46.956644],\n          [-112.101038, 46.956326],\n          [-112.103946, 46.955297],\n          [-112.107802, 46.953955],\n          [-112.108475, 46.953671],\n          [-112.108901, 46.953445],\n          [-112.109465, 46.953038],\n          [-112.109979, 46.952469],\n          [-112.110197, 46.952042],\n          [-112.111502, 46.949682],\n          [-112.112324, 46.948952],\n          [-112.113184, 46.948533],\n          [-112.114208, 46.948308],\n          [-112.116111, 46.948021],\n          [-112.117289, 46.947669],\n          [-112.118334, 46.94705],\n          [-112.119549, 46.946068],\n          [-112.122402, 46.943642],\n          [-112.123133, 46.943013],\n          [-112.123553, 46.942583],\n          [-112.12389, 46.942171],\n          [-112.124619, 46.941266],\n          [-112.125571, 46.939982],\n          [-112.126015, 46.939377],\n          [-112.1265, 46.938749],\n          [-112.126751, 46.938397],\n          [-112.126995, 46.938014],\n          [-112.127231, 46.93766],\n          [-112.127472, 46.93708],\n          [-112.127553, 46.936521],\n          [-112.127485, 46.935878],\n          [-112.126037, 46.931011],\n          [-112.125843, 46.930596],\n          [-112.125614, 46.930288],\n          [-112.125356, 46.930017],\n          [-112.125, 46.92973],\n          [-112.122981, 46.928549],\n          [-112.122668, 46.928293],\n          [-112.122315, 46.927871],\n          [-112.122099, 46.927296],\n          [-112.122093, 46.926792],\n          [-112.122341, 46.926128],\n          [-112.12333, 46.924835],\n          [-112.123628, 46.924404],\n          [-112.123835, 46.923877],\n          [-112.123883, 46.923325],\n          [-112.123775, 46.9228],\n          [-112.123494, 46.922251],\n          [-112.123242, 46.921939],\n          [-112.123161, 46.921857],\n          [-112.12174, 46.920823],\n          [-112.121416, 46.920602],\n          [-112.120977, 46.920179],\n          [-112.120697, 46.919775],\n          [-112.120503, 46.919327],\n          [-112.120322, 46.918471],\n          [-112.119667, 46.915666],\n          [-112.11939, 46.915074],\n          [-112.119062, 46.914644],\n          [-112.118506, 46.91421],\n          [-112.116708, 46.913328],\n          [-112.116193, 46.912968],\n          [-112.115472, 46.912187],\n          [-112.115356, 46.911933],\n          [-112.115279, 46.911728],\n          [-112.115241, 46.911454],\n          [-112.11523, 46.911175],\n          [-112.115266, 46.910915],\n          [-112.115368, 46.910602],\n          [-112.115446, 46.910438],\n          [-112.115662, 46.910084],\n          [-112.11604, 46.909673],\n          [-112.119395, 46.907257],\n          [-112.119896, 46.906695],\n          [-112.120633, 46.90538],\n          [-112.120979, 46.904986],\n          [-112.122506, 46.903673],\n          [-112.12294, 46.903177],\n          [-112.123172, 46.902727],\n          [-112.123344, 46.902186],\n          [-112.12337, 46.901665],\n          [-112.12326, 46.90114],\n          [-112.123004, 46.900542],\n          [-112.122296, 46.899463],\n          [-112.118791, 46.893932],\n          [-112.118077, 46.892887],\n          [-112.117488, 46.892253],\n          [-112.11672, 46.891638],\n          [-112.11608, 46.891253],\n          [-112.114112, 46.89021],\n          [-112.110716, 46.888379],\n          [-112.110338, 46.888159],\n          [-112.106096, 46.885885],\n          [-112.101398, 46.88336],\n          [-112.094609, 46.879651],\n          [-112.0931, 46.878959],\n          [-112.091311, 46.878288],\n          [-112.089958, 46.877867],\n          [-112.088521, 46.877511],\n          [-112.069016, 46.872724],\n          [-112.049279, 46.867857],\n          [-112.047103, 46.867189],\n          [-112.044993, 46.866382],\n          [-112.043719, 46.865827],\n          [-112.042541, 46.865241],\n          [-112.040586, 46.864168],\n          [-112.039263, 46.863298],\n          [-112.037988, 46.862365],\n          [-112.036738, 46.86133],\n          [-112.014076, 46.842104],\n          [-112.012788, 46.840941],\n          [-112.011749, 46.839918],\n          [-112.010445, 46.83844],\n          [-112.009025, 46.83667],\n          [-112.007922, 46.83499],\n          [-112.007123, 46.833605],\n          [-112.006361, 46.832073],\n          [-112.005882, 46.830963],\n          [-112.003109, 46.824179],\n          [-112.002795, 46.823308],\n          [-112.001559, 46.820272],\n          [-112.001405, 46.819943],\n          [-112.001005, 46.818846],\n          [-112.000667, 46.817632],\n          [-112.000578, 46.816809],\n          [-112.000493, 46.815794],\n          [-112.000516, 46.814928],\n          [-112.000693, 46.813761],\n          [-112.001162, 46.812127],\n          [-112.001628, 46.811112],\n          [-112.002462, 46.809713],\n          [-112.003317, 46.808598],\n          [-112.004049, 46.80782],\n          [-112.005118, 46.806834],\n          [-112.006592, 46.805739],\n          [-112.028016, 46.792156],\n          [-112.029741, 46.790912],\n          [-112.030745, 46.79008],\n          [-112.031484, 46.78938],\n          [-112.032257, 46.788498],\n          [-112.033266, 46.787176],\n          [-112.033873, 46.786179],\n          [-112.034356, 46.785153],\n          [-112.03474, 46.784222],\n          [-112.035041, 46.783106],\n          [-112.035281, 46.78179],\n          [-112.035332, 46.780429],\n          [-112.035162, 46.778932],\n          [-112.034994, 46.7781],\n          [-112.034623, 46.77676],\n          [-112.031439, 46.767593],\n          [-112.030872, 46.766116],\n          [-112.03058, 46.765566],\n          [-112.0298, 46.76452],\n          [-112.029051, 46.763776],\n          [-112.027625, 46.762715],\n          [-112.021142, 46.759474],\n          [-112.019784, 46.758674],\n          [-112.018427, 46.757701],\n          [-112.017026, 46.756401],\n          [-112.01646, 46.75581],\n          [-112.015787, 46.754949],\n          [-112.015034, 46.753726],\n          [-112.014675, 46.752957],\n          [-112.014369, 46.752178],\n          [-112.014113, 46.751252],\n          [-112.013978, 46.7503],\n          [-112.013965, 46.748917],\n          [-112.01407, 46.747974],\n          [-112.014425, 46.74657],\n          [-112.017111, 46.737855],\n          [-112.017375, 46.736784],\n          [-112.017607, 46.735355],\n          [-112.017673, 46.734409],\n          [-112.017685, 46.733581],\n          [-112.017588, 46.732104],\n          [-112.017413, 46.730961],\n          [-112.016851, 46.728893],\n          [-112.016052, 46.726997],\n          [-112.015229, 46.725474],\n          [-112.014031, 46.723297],\n          [-112.013406, 46.721963],\n          [-112.012932, 46.720654],\n          [-112.012536, 46.719097],\n          [-112.012339, 46.717599],\n          [-112.012283, 46.716345],\n          [-112.012185, 46.707222],\n          [-112.012075, 46.70024],\n          [-112.011602, 46.660701],\n          [-112.011601, 46.660313],\n          [-112.011436, 46.648193],\n          [-112.011441, 46.648028],\n          [-112.011427, 46.646569],\n          [-112.011246, 46.631754],\n          [-112.011146, 46.621062],\n          [-112.011132, 46.619553],\n          [-112.01109, 46.616805],\n          [-112.011059, 46.614798],\n          [-112.011048, 46.61406],\n          [-112.011037, 46.613709],\n          [-112.010993, 46.613319],\n          [-112.010941, 46.613077],\n          [-112.010877, 46.612674],\n          [-112.010838, 46.612474],\n          [-112.010746, 46.61207],\n          [-112.01064, 46.611666],\n          [-112.010587, 46.611464],\n          [-112.010508, 46.611263],\n          [-112.010314, 46.610728],\n          [-112.010256, 46.610545],\n          [-112.010198, 46.610369],\n          [-112.009915, 46.609824],\n          [-112.009739, 46.609444],\n          [-112.009564, 46.609128],\n          [-112.009295, 46.608718],\n          [-112.006524, 46.603944],\n          [-112.003906, 46.599455],\n          [-112.002681, 46.597363],\n          [-112.001205, 46.594784],\n          [-112, 46.592799],\n          [-111.999632, 46.592286],\n          [-111.999301, 46.591861],\n          [-111.998522, 46.590983],\n          [-111.99828, 46.590699],\n          [-111.997972, 46.590398],\n          [-111.996867, 46.589396],\n          [-111.996488, 46.589096],\n          [-111.995735, 46.58854],\n          [-111.988743, 46.583855],\n          [-111.983795, 46.580551],\n          [-111.98049, 46.578347],\n          [-111.978312, 46.576892],\n          [-111.976196, 46.575478],\n          [-111.970612, 46.571744],\n          [-111.969019, 46.570651],\n          [-111.966637, 46.569071],\n          [-111.957631, 46.563066],\n          [-111.956867, 46.562459],\n          [-111.956078, 46.56178],\n          [-111.955528, 46.561278],\n          [-111.95503, 46.560765],\n          [-111.954464, 46.560133],\n          [-111.953992, 46.559508],\n          [-111.953623, 46.558994],\n          [-111.953365, 46.558587],\n          [-111.953022, 46.558003],\n          [-111.95261, 46.557224],\n          [-111.951443, 46.55468],\n          [-111.946695, 46.544203],\n          [-111.946304, 46.54331],\n          [-111.945744, 46.542172],\n          [-111.945185, 46.540831],\n          [-111.944611, 46.539567],\n          [-111.943999, 46.538252],\n          [-111.943392, 46.536869],\n          [-111.941186, 46.532081],\n          [-111.940903, 46.53142],\n          [-111.940559, 46.530629],\n          [-111.940379, 46.530109],\n          [-111.940293, 46.529684],\n          [-111.940268, 46.529241],\n          [-111.940319, 46.528857],\n          [-111.940422, 46.528432],\n          [-111.940568, 46.528025],\n          [-111.94074, 46.527676],\n          [-111.940971, 46.527322],\n          [-111.941246, 46.527003],\n          [-111.941667, 46.526619],\n          [-111.943134, 46.525497],\n          [-111.943589, 46.525125],\n          [-111.94401, 46.524718],\n          [-111.944344, 46.524346],\n          [-111.944662, 46.523974],\n          [-111.944902, 46.523625],\n          [-111.945151, 46.52323],\n          [-111.9454, 46.522775],\n          [-111.945606, 46.522326],\n          [-111.945744, 46.521966],\n          [-111.945855, 46.521511],\n          [-111.947984, 46.511742],\n          [-111.948095, 46.51137],\n          [-111.948361, 46.510661],\n          [-111.949408, 46.508074],\n          [-111.952344, 46.500837],\n          [-111.952541, 46.500393],\n          [-111.952825, 46.499944],\n          [-111.953168, 46.49946],\n          [-111.953494, 46.499105],\n          [-111.953932, 46.498775],\n          [-111.954764, 46.49819],\n          [-111.958575, 46.495909],\n          [-111.959245, 46.495501],\n          [-111.960052, 46.495017],\n          [-111.961021, 46.494414],\n          [-111.961871, 46.493912],\n          [-111.962729, 46.493415],\n          [-111.963579, 46.492825],\n          [-111.964025, 46.4925],\n          [-111.964661, 46.492015],\n          [-111.965124, 46.491625],\n          [-111.965656, 46.491123],\n          [-111.966369, 46.49042],\n          [-111.96709, 46.489651],\n          [-111.976325, 46.479522],\n          [-111.976891, 46.478848],\n          [-111.977312, 46.47834],\n          [-111.977733, 46.477808],\n          [-111.977973, 46.477465],\n          [-111.978127, 46.477211],\n          [-111.978282, 46.476974],\n          [-111.97884, 46.475928],\n          [-111.979217, 46.475042],\n          [-111.980033, 46.473044],\n          [-111.980271, 46.472374],\n          [-111.980435, 46.471976],\n          [-111.980677, 46.471349],\n          [-111.980952, 46.470648],\n          [-111.981239, 46.4699],\n          [-111.981493, 46.46921],\n          [-111.981736, 46.468592],\n          [-111.981874, 46.468256],\n          [-111.982316, 46.467018],\n          [-111.982732, 46.465939],\n          [-111.982851, 46.465572],\n          [-111.983251, 46.464294],\n          [-111.983315, 46.464025],\n          [-111.983475, 46.463313],\n          [-111.983818, 46.462054],\n          [-111.98424, 46.460487],\n          [-111.985346, 46.456259],\n          [-111.985844, 46.45432],\n          [-111.986814, 46.450701],\n          [-111.986994, 46.449938],\n          [-111.987251, 46.449004],\n          [-111.987543, 46.4483],\n          [-111.987809, 46.447709],\n          [-111.988255, 46.446833],\n          [-111.990024, 46.443882],\n          [-111.990719, 46.44254],\n          [-111.99283, 46.438169],\n          [-111.995886, 46.431816],\n          [-111.996143, 46.431165],\n          [-111.996341, 46.430644],\n          [-111.996598, 46.42984],\n          [-111.996753, 46.429213],\n          [-111.99689, 46.428609],\n          [-111.997405, 46.425385],\n          [-111.997642, 46.424314],\n          [-111.997932, 46.423545],\n          [-111.998107, 46.423114],\n          [-111.99835, 46.422586],\n          [-111.998575, 46.422164],\n          [-111.998884, 46.421653],\n          [-111.999228, 46.421145],\n          [-111.999447, 46.420848],\n          [-111.999923, 46.420267],\n          [-112.000156, 46.42],\n          [-112.000433, 46.41971],\n          [-112.00089, 46.419258],\n          [-112.001482, 46.418746],\n          [-112.002113, 46.418226],\n          [-112.00272, 46.417745],\n          [-112.002961, 46.417554],\n          [-112.003548, 46.417078],\n          [-112.004211, 46.41654],\n          [-112.004746, 46.416099],\n          [-112.005461, 46.41553],\n          [-112.005985, 46.415112],\n          [-112.006394, 46.414775],\n          [-112.006854, 46.414405],\n          [-112.007245, 46.4141],\n          [-112.00765, 46.413758],\n          [-112.00797, 46.413501],\n          [-112.008169, 46.413338],\n          [-112.008593, 46.412997],\n          [-112.009014, 46.412645],\n          [-112.009385, 46.412341],\n          [-112.009697, 46.412025],\n          [-112.010255, 46.411528],\n          [-112.010946, 46.410853],\n          [-112.011431, 46.410352],\n          [-112.011895, 46.409867],\n          [-112.012165, 46.409569],\n          [-112.012675, 46.408992],\n          [-112.013067, 46.408517],\n          [-112.013404, 46.408107],\n          [-112.013911, 46.407447],\n          [-112.014218, 46.407046],\n          [-112.014492, 46.406653],\n          [-112.015033, 46.405845],\n          [-112.01524, 46.405542],\n          [-112.015368, 46.405329],\n          [-112.015741, 46.40471],\n          [-112.015972, 46.404308],\n          [-112.016318, 46.403688],\n          [-112.016624, 46.403056],\n          [-112.01703, 46.402204],\n          [-112.017522, 46.401159],\n          [-112.017917, 46.400311],\n          [-112.019197, 46.397512],\n          [-112.019961, 46.395938],\n          [-112.020503, 46.394858],\n          [-112.020846, 46.394173],\n          [-112.021172, 46.393579],\n          [-112.021321, 46.393351],\n          [-112.021496, 46.393063],\n          [-112.021714, 46.392713],\n          [-112.021925, 46.392391],\n          [-112.022307, 46.391799],\n          [-112.022576, 46.391431],\n          [-112.02269, 46.391255],\n          [-112.022776, 46.391138],\n          [-112.023072, 46.390745],\n          [-112.023396, 46.390333],\n          [-112.023636, 46.390016],\n          [-112.02407, 46.389472],\n          [-112.02447, 46.388962],\n          [-112.025293, 46.387893],\n          [-112.025518, 46.387587],\n          [-112.025835, 46.387153],\n          [-112.02604, 46.386874],\n          [-112.026296, 46.386489],\n          [-112.026502, 46.386192],\n          [-112.026698, 46.385898],\n          [-112.027204, 46.385069],\n          [-112.027659, 46.384252],\n          [-112.027743, 46.384088],\n          [-112.0278, 46.383963],\n          [-112.02782, 46.383925],\n          [-112.027998, 46.383561],\n          [-112.028106, 46.383379],\n          [-112.028359, 46.382926],\n          [-112.028737, 46.382022],\n          [-112.029617, 46.379591],\n          [-112.030115, 46.378271],\n          [-112.030424, 46.377365],\n          [-112.030767, 46.376572],\n          [-112.031059, 46.375944],\n          [-112.033059, 46.372077],\n          [-112.033626, 46.37091],\n          [-112.033917, 46.370342],\n          [-112.034252, 46.369714],\n          [-112.034492, 46.369293],\n          [-112.03481, 46.368766],\n          [-112.035136, 46.368298],\n          [-112.035445, 46.367848],\n          [-112.03584, 46.367386],\n          [-112.036295, 46.366877],\n          [-112.036879, 46.366249],\n          [-112.043015, 46.359532],\n          [-112.043436, 46.359053],\n          [-112.043754, 46.358638],\n          [-112.044011, 46.358283],\n          [-112.044234, 46.357927],\n          [-112.044475, 46.357501],\n          [-112.044698, 46.357062],\n          [-112.044852, 46.356719],\n          [-112.044972, 46.356357],\n          [-112.045093, 46.355972],\n          [-112.045204, 46.355534],\n          [-112.045281, 46.355173],\n          [-112.04535, 46.354693],\n          [-112.045384, 46.354284],\n          [-112.045376, 46.353828],\n          [-112.045359, 46.353206],\n          [-112.045058, 46.350658],\n          [-112.045032, 46.350072],\n          [-112.045075, 46.349545],\n          [-112.045178, 46.349154],\n          [-112.045317, 46.348787],\n          [-112.045481, 46.348449],\n          [-112.045687, 46.348135],\n          [-112.04591, 46.347851],\n          [-112.046202, 46.347519],\n          [-112.048562, 46.345392],\n          [-112.048862, 46.34509],\n          [-112.049146, 46.34477],\n          [-112.04936, 46.344467],\n          [-112.04954, 46.344153],\n          [-112.049738, 46.343721],\n          [-112.049849, 46.343241],\n          [-112.049884, 46.343028],\n          [-112.049892, 46.342755],\n          [-112.049884, 46.3424],\n          [-112.049806, 46.341931],\n          [-112.049396, 46.34035],\n          [-112.049218, 46.339673],\n          [-112.049159, 46.33933],\n          [-112.049143, 46.339002],\n          [-112.049168, 46.338597],\n          [-112.049229, 46.338284],\n          [-112.049292, 46.338051],\n          [-112.049341, 46.337839],\n          [-112.049439, 46.337616],\n          [-112.049559, 46.337404],\n          [-112.0497, 46.337162],\n          [-112.049936, 46.33687],\n          [-112.05015, 46.336595],\n          [-112.054836, 46.331763],\n          [-112.055497, 46.33117],\n          [-112.055875, 46.33085],\n          [-112.056372, 46.33053],\n          [-112.05687, 46.330263],\n          [-112.057445, 46.330044],\n          [-112.058132, 46.329789],\n          [-112.060261, 46.329273],\n          [-112.060879, 46.329137],\n          [-112.061445, 46.328959],\n          [-112.061994, 46.328752],\n          [-112.062561, 46.32845],\n          [-112.06317, 46.3281],\n          [-112.063625, 46.327786],\n          [-112.064054, 46.327371],\n          [-112.064466, 46.326891],\n          [-112.06523, 46.325741],\n          [-112.065677, 46.325125],\n          [-112.066028, 46.324674],\n          [-112.06638, 46.324318],\n          [-112.066904, 46.323868],\n          [-112.067505, 46.323501],\n          [-112.06826, 46.323109],\n          [-112.069642, 46.322445],\n          [-112.070509, 46.322007],\n          [-112.071195, 46.321663],\n          [-112.071728, 46.321378],\n          [-112.07238, 46.320958],\n          [-112.073067, 46.320519],\n          [-112.073762, 46.320045],\n          [-112.074277, 46.319582],\n          [-112.074732, 46.319138],\n          [-112.075169, 46.318705],\n          [-112.075599, 46.318189],\n          [-112.076053, 46.317626],\n          [-112.076371, 46.317182],\n          [-112.076732, 46.316589],\n          [-112.077058, 46.315949],\n          [-112.077616, 46.31452],\n          [-112.077985, 46.313459],\n          [-112.078268, 46.312795],\n          [-112.078491, 46.31232],\n          [-112.0788, 46.311751],\n          [-112.079212, 46.31117],\n          [-112.079718, 46.310435],\n          [-112.0808, 46.308627],\n          [-112.081126, 46.30801],\n          [-112.081375, 46.307316],\n          [-112.081512, 46.306724],\n          [-112.081607, 46.306131],\n          [-112.081735, 46.304998],\n          [-112.081856, 46.304358],\n          [-112.082079, 46.303688],\n          [-112.082319, 46.303172],\n          [-112.082594, 46.302692],\n          [-112.082946, 46.302205],\n          [-112.083306, 46.301814],\n          [-112.083804, 46.301334],\n          [-112.08447, 46.300831],\n          [-112.085263, 46.300355],\n          [-112.086027, 46.299964],\n          [-112.089752, 46.298446],\n          [-112.090979, 46.297859],\n          [-112.091958, 46.297337],\n          [-112.092799, 46.296756],\n          [-112.093486, 46.296287],\n          [-112.094104, 46.295694],\n          [-112.09473, 46.295036],\n          [-112.095159, 46.294538],\n          [-112.09558, 46.293992],\n          [-112.09594, 46.293381],\n          [-112.096445, 46.292397],\n          [-112.096685, 46.291614],\n          [-112.09702, 46.290422],\n          [-112.097449, 46.288406],\n          [-112.097724, 46.287409],\n          [-112.098136, 46.286312],\n          [-112.099116, 46.284397],\n          [-112.099274, 46.284063],\n          [-112.10053, 46.281349],\n          [-112.101118, 46.280084],\n          [-112.102891, 46.276318],\n          [-112.104027, 46.273935],\n          [-112.104859, 46.272141],\n          [-112.105342, 46.271125],\n          [-112.106274, 46.269146],\n          [-112.107087, 46.267404],\n          [-112.111234, 46.258546],\n          [-112.112659, 46.255466],\n          [-112.114521, 46.251525],\n          [-112.114976, 46.250676],\n          [-112.115508, 46.249899],\n          [-112.115937, 46.249329],\n          [-112.116633, 46.248581],\n          [-112.117748, 46.247554],\n          [-112.11925, 46.246504],\n          [-112.12022, 46.245934],\n          [-112.120967, 46.245566],\n          [-112.121954, 46.245133],\n          [-112.124992, 46.244052],\n          [-112.13288, 46.241298],\n          [-112.133387, 46.24112],\n          [-112.138622, 46.239291],\n          [-112.145034, 46.237065],\n          [-112.146141, 46.236745],\n          [-112.147008, 46.236519],\n          [-112.147806, 46.236394],\n          [-112.148459, 46.236305],\n          [-112.149265, 46.236246],\n          [-112.150089, 46.236222],\n          [-112.151042, 46.236246],\n          [-112.151883, 46.236317],\n          [-112.152699, 46.236436],\n          [-112.153471, 46.236584],\n          [-112.154474, 46.236837],\n          [-112.15899, 46.238152],\n          [-112.160595, 46.238543],\n          [-112.162483, 46.238947],\n          [-112.163367, 46.23922],\n          [-112.164054, 46.239529],\n          [-112.164698, 46.239897],\n          [-112.165273, 46.24033],\n          [-112.166844, 46.241642],\n          [-112.167307, 46.241963],\n          [-112.1685, 46.242669],\n          [-112.169144, 46.243085],\n          [-112.169659, 46.24356],\n          [-112.170912, 46.244966],\n          [-112.171367, 46.245364],\n          [-112.172131, 46.245898],\n          [-112.173204, 46.246522],\n          [-112.174276, 46.247169],\n          [-112.174817, 46.24762],\n          [-112.175298, 46.24816],\n          [-112.175555, 46.248587],\n          [-112.17577, 46.248973],\n          [-112.175924, 46.249424],\n          [-112.176336, 46.250552],\n          [-112.176517, 46.25092],\n          [-112.17674, 46.251276],\n          [-112.176997, 46.251626],\n          [-112.177418, 46.252083],\n          [-112.177787, 46.252344],\n          [-112.178165, 46.252617],\n          [-112.180775, 46.254129],\n          [-112.181007, 46.254269],\n          [-112.183097, 46.255454],\n          [-112.183493, 46.255702],\n          [-112.184164, 46.256171],\n          [-112.184905, 46.256737],\n          [-112.185365, 46.257141],\n          [-112.185885, 46.257562],\n          [-112.186185, 46.2578],\n          [-112.186531, 46.258043],\n          [-112.186972, 46.258275],\n          [-112.187322, 46.258422],\n          [-112.187774, 46.258598],\n          [-112.188155, 46.258726],\n          [-112.188842, 46.25893],\n          [-112.190061, 46.259233],\n          [-112.194417, 46.260296],\n          [-112.194914, 46.260425],\n          [-112.197467, 46.261049],\n          [-112.198131, 46.261215],\n          [-112.198816, 46.261348],\n          [-112.200563, 46.261639],\n          [-112.2012, 46.261735],\n          [-112.201697, 46.261796],\n          [-112.202216, 46.261831],\n          [-112.202661, 46.261847],\n          [-112.203293, 46.261844],\n          [-112.203843, 46.26181],\n          [-112.204643, 46.261713],\n          [-112.205502, 46.261541],\n          [-112.206283, 46.261328],\n          [-112.207158, 46.260978],\n          [-112.20773, 46.260725],\n          [-112.208199, 46.260464],\n          [-112.209872, 46.259361],\n          [-112.210845, 46.258723],\n          [-112.211437, 46.258407],\n          [-112.21171, 46.258294],\n          [-112.211974, 46.258207],\n          [-112.212216, 46.258142],\n          [-112.212463, 46.258092],\n          [-112.212751, 46.258048],\n          [-112.213051, 46.258024],\n          [-112.213334, 46.258019],\n          [-112.213692, 46.258035],\n          [-112.213988, 46.258065],\n          [-112.214247, 46.258108],\n          [-112.214549, 46.258186],\n          [-112.21472, 46.258241],\n          [-112.214928, 46.258313],\n          [-112.21526, 46.258456],\n          [-112.215539, 46.258605],\n          [-112.215859, 46.258826],\n          [-112.216123, 46.259059],\n          [-112.216344, 46.259307],\n          [-112.216538, 46.259564],\n          [-112.217304, 46.260578],\n          [-112.217586, 46.260888],\n          [-112.217887, 46.26118],\n          [-112.218436, 46.261654],\n          [-112.219097, 46.262058],\n          [-112.219818, 46.262508],\n          [-112.220179, 46.262823],\n          [-112.220462, 46.263203],\n          [-112.220625, 46.263654],\n          [-112.220625, 46.264105],\n          [-112.220513, 46.26455],\n          [-112.220273, 46.264918],\n          [-112.21993, 46.265238],\n          [-112.219466, 46.265558],\n          [-112.218514, 46.266039],\n          [-112.218288, 46.266167],\n          [-112.218079, 46.266291],\n          [-112.217885, 46.266411],\n          [-112.217737, 46.266539],\n          [-112.217605, 46.266696],\n          [-112.217501, 46.266818],\n          [-112.217396, 46.266989],\n          [-112.21734, 46.267123],\n          [-112.217303, 46.267314],\n          [-112.217283, 46.267445],\n          [-112.217325, 46.267714],\n          [-112.217476, 46.26824],\n          [-112.217544, 46.268438],\n          [-112.217592, 46.268538],\n          [-112.217628, 46.268615],\n          [-112.217724, 46.268751],\n          [-112.217818, 46.268858],\n          [-112.217936, 46.268959],\n          [-112.21813, 46.269104],\n          [-112.218353, 46.26922],\n          [-112.218727, 46.26937],\n          [-112.219166, 46.269489],\n          [-112.219721, 46.269609],\n          [-112.220202, 46.269698],\n          [-112.220646, 46.269797],\n          [-112.220996, 46.2699],\n          [-112.22144, 46.27005],\n          [-112.222711, 46.270631],\n          [-112.223277, 46.270851],\n          [-112.22399, 46.271017],\n          [-112.224668, 46.271076],\n          [-112.225371, 46.270993],\n          [-112.227174, 46.270608],\n          [-112.227989, 46.270507],\n          [-112.22883, 46.270519],\n          [-112.229611, 46.270726],\n          [-112.232341, 46.271693],\n          [-112.232993, 46.27186],\n          [-112.233723, 46.271966],\n          [-112.234744, 46.271978],\n          [-112.239606, 46.271805],\n          [-112.242182, 46.271693],\n          [-112.246347, 46.271502],\n          [-112.246967, 46.271459],\n          [-112.247491, 46.271415],\n          [-112.247911, 46.271379],\n          [-112.248545, 46.271312],\n          [-112.249143, 46.271217],\n          [-112.250763, 46.270938],\n          [-112.251919, 46.270715],\n          [-112.254271, 46.270264],\n          [-112.255138, 46.270086],\n          [-112.255979, 46.269973],\n          [-112.256923, 46.269854],\n          [-112.257798, 46.269753],\n          [-112.258871, 46.269706],\n          [-112.259953, 46.269694],\n          [-112.260408, 46.269688],\n          [-112.260811, 46.269688],\n          [-112.265927, 46.269838],\n          [-112.266364, 46.269845],\n          [-112.268516, 46.269903],\n          [-112.26928, 46.269923],\n          [-112.269822, 46.269932],\n          [-112.270297, 46.269936],\n          [-112.270632, 46.269932],\n          [-112.271986, 46.269899],\n          [-112.272496, 46.269882],\n          [-112.272871, 46.269875],\n          [-112.273201, 46.26988],\n          [-112.273496, 46.269893],\n          [-112.273848, 46.269921],\n          [-112.274451, 46.269986],\n          [-112.275304, 46.270084],\n          [-112.275736, 46.270129],\n          [-112.276214, 46.270171],\n          [-112.276581, 46.270192],\n          [-112.276954, 46.270201],\n          [-112.277383, 46.270195],\n          [-112.277783, 46.270179],\n          [-112.278217, 46.270151],\n          [-112.278636, 46.270112],\n          [-112.27903, 46.270058],\n          [-112.279521, 46.269977],\n          [-112.280084, 46.269869],\n          [-112.280575, 46.269771],\n          [-112.281036, 46.269673],\n          [-112.281492, 46.269558],\n          [-112.281919, 46.269443],\n          [-112.282407, 46.269304],\n          [-112.28289, 46.269153],\n          [-112.283292, 46.269013],\n          [-112.283616, 46.26889],\n          [-112.283914, 46.268764],\n          [-112.284169, 46.268638],\n          [-112.284394, 46.268516],\n          [-112.284601, 46.268394],\n          [-112.284775, 46.268275],\n          [-112.284955, 46.268131],\n          [-112.285087, 46.268013],\n          [-112.285191, 46.267897],\n          [-112.285277, 46.267793],\n          [-112.285357, 46.267683],\n          [-112.28543, 46.267542],\n          [-112.285505, 46.267379],\n          [-112.285561, 46.267208],\n          [-112.285596, 46.267049],\n          [-112.28561, 46.266897],\n          [-112.285612, 46.266763],\n          [-112.285599, 46.266613],\n          [-112.285569, 46.266448],\n          [-112.285505, 46.266261],\n          [-112.28543, 46.266096],\n          [-112.285194, 46.265664],\n          [-112.285025, 46.265406],\n          [-112.284866, 46.265152],\n          [-112.284775, 46.264974],\n          [-112.284703, 46.264813],\n          [-112.284646, 46.264655],\n          [-112.284614, 46.264507],\n          [-112.284598, 46.264379],\n          [-112.284598, 46.26421],\n          [-112.284617, 46.264062],\n          [-112.284665, 46.263899],\n          [-112.284727, 46.263728],\n          [-112.284759, 46.263669],\n          [-112.284821, 46.263548],\n          [-112.284909, 46.263418],\n          [-112.284995, 46.263313],\n          [-112.285121, 46.263177],\n          [-112.285277, 46.263038],\n          [-112.285408, 46.262932],\n          [-112.285591, 46.262814],\n          [-112.285765, 46.262716],\n          [-112.285998, 46.262614],\n          [-112.286237, 46.262523],\n          [-112.286454, 46.262454],\n          [-112.286722, 46.262397],\n          [-112.286953, 46.262358],\n          [-112.287205, 46.262334],\n          [-112.287431, 46.262324],\n          [-112.287599, 46.262324],\n          [-112.287755, 46.262332],\n          [-112.287908, 46.262343],\n          [-112.28809, 46.262371],\n          [-112.288289, 46.262408],\n          [-112.288533, 46.262469],\n          [-112.28878, 46.262545],\n          [-112.289056, 46.262641],\n          [-112.28941, 46.262779],\n          [-112.292288, 46.263915],\n          [-112.295423, 46.265141],\n          [-112.295772, 46.265276],\n          [-112.296799, 46.265681],\n          [-112.297288, 46.265857],\n          [-112.29766, 46.26597],\n          [-112.297998, 46.266064],\n          [-112.298326, 46.266135],\n          [-112.298693, 46.266202],\n          [-112.29902, 46.266252],\n          [-112.299407, 46.266294],\n          [-112.299973, 46.26635],\n          [-112.301962, 46.266518],\n          [-112.303677, 46.266665],\n          [-112.30416, 46.266715],\n          [-112.304799, 46.266799],\n          [-112.305829, 46.266965],\n          [-112.307302, 46.26725],\n          [-112.307798, 46.267339],\n          [-112.308222, 46.267413],\n          [-112.308627, 46.267476],\n          [-112.308997, 46.267518],\n          [-112.309343, 46.267554],\n          [-112.309617, 46.267578],\n          [-112.309941, 46.267591],\n          [-112.310258, 46.267602],\n          [-112.310641, 46.267611],\n          [-112.310985, 46.267613],\n          [-112.311296, 46.267607],\n          [-112.311658, 46.267591],\n          [-112.312055, 46.267565],\n          [-112.312425, 46.267535],\n          [-112.312795, 46.267492],\n          [-112.313219, 46.267435],\n          [-112.313683, 46.267359],\n          [-112.31408, 46.267281],\n          [-112.314484, 46.267191],\n          [-112.314867, 46.26709],\n          [-112.315256, 46.26698],\n          [-112.315717, 46.266837],\n          [-112.316613, 46.266561],\n          [-112.317018, 46.266437],\n          [-112.317471, 46.266313],\n          [-112.317997, 46.266179],\n          [-112.318925, 46.265949],\n          [-112.320151, 46.265632],\n          [-112.321393, 46.265313],\n          [-112.325427, 46.26428],\n          [-112.326138, 46.264095],\n          [-112.326859, 46.263917],\n          [-112.327936, 46.263635],\n          [-112.330428, 46.263002],\n          [-112.333211, 46.262287],\n          [-112.334007, 46.262079],\n          [-112.335292, 46.261753],\n          [-112.335686, 46.261652],\n          [-112.336028, 46.261559],\n          [-112.33637, 46.261454],\n          [-112.33667, 46.261355],\n          [-112.336988, 46.261243],\n          [-112.337325, 46.261115],\n          [-112.33768, 46.260971],\n          [-112.338038, 46.260813],\n          [-112.338363, 46.260662],\n          [-112.338625, 46.26053],\n          [-112.338933, 46.260366],\n          [-112.340256, 46.259429],\n          [-112.341003, 46.258829],\n          [-112.341337, 46.25845],\n          [-112.341646, 46.258088],\n          [-112.342041, 46.257506],\n          [-112.342264, 46.257085],\n          [-112.342513, 46.256616],\n          [-112.342736, 46.256052],\n          [-112.343048, 46.25519],\n          [-112.343088, 46.254628],\n          [-112.343114, 46.25404],\n          [-112.342997, 46.253333],\n          [-112.342814, 46.252527],\n          [-112.342556, 46.25188],\n          [-112.341586, 46.249939],\n          [-112.341209, 46.248971],\n          [-112.340942, 46.248152],\n          [-112.340797, 46.247393],\n          [-112.340711, 46.246752],\n          [-112.340698, 46.245956],\n          [-112.340797, 46.24509],\n          [-112.340934, 46.2443],\n          [-112.341088, 46.243617],\n          [-112.341363, 46.242745],\n          [-112.343732, 46.236132],\n          [-112.343955, 46.235443],\n          [-112.344213, 46.23479],\n          [-112.34459, 46.234178],\n          [-112.345088, 46.233513],\n          [-112.346384, 46.231827],\n          [-112.346848, 46.231067],\n          [-112.347062, 46.230402],\n          [-112.347208, 46.229666],\n          [-112.34738, 46.228247],\n          [-112.347457, 46.227659],\n          [-112.347706, 46.22662],\n          [-112.348072, 46.225486],\n          [-112.348787, 46.223592],\n          [-112.349165, 46.22241],\n          [-112.349268, 46.221798],\n          [-112.349251, 46.221163],\n          [-112.348908, 46.218621],\n          [-112.348822, 46.218081],\n          [-112.348822, 46.217392],\n          [-112.348959, 46.216762],\n          [-112.34944, 46.215301],\n          [-112.349521, 46.214586],\n          [-112.349491, 46.214013],\n          [-112.349328, 46.213591],\n          [-112.349028, 46.213021],\n          [-112.348633, 46.212492],\n          [-112.348169, 46.211999],\n          [-112.34762, 46.211619],\n          [-112.346856, 46.211156],\n          [-112.345869, 46.21058],\n          [-112.3452, 46.210051],\n          [-112.344728, 46.209576],\n          [-112.343234, 46.207925],\n          [-112.342659, 46.207307],\n          [-112.341921, 46.206677],\n          [-112.340814, 46.205816],\n          [-112.34041, 46.205465],\n          [-112.340067, 46.205085],\n          [-112.339802, 46.204693],\n          [-112.339704, 46.204467],\n          [-112.339636, 46.204269],\n          [-112.339591, 46.204027],\n          [-112.339612, 46.20382],\n          [-112.339732, 46.203256],\n          [-112.340033, 46.20262],\n          [-112.340582, 46.201913],\n          [-112.341621, 46.200885],\n          [-112.342062, 46.200298],\n          [-112.342242, 46.199944],\n          [-112.342396, 46.199584],\n          [-112.342597, 46.199091],\n          [-112.342775, 46.198631],\n          [-112.343062, 46.198034],\n          [-112.343303, 46.197541],\n          [-112.343792, 46.196904],\n          [-112.344693, 46.196127],\n          [-112.345387, 46.19542],\n          [-112.345729, 46.194938],\n          [-112.345917, 46.194643],\n          [-112.346069, 46.194349],\n          [-112.346166, 46.194045],\n          [-112.346238, 46.193697],\n          [-112.34623, 46.193103],\n          [-112.345941, 46.190673],\n          [-112.345878, 46.189902],\n          [-112.345728, 46.189213],\n          [-112.345709, 46.188344],\n          [-112.345571, 46.187533],\n          [-112.345558, 46.186912],\n          [-112.345564, 46.185992],\n          [-112.345749, 46.183453],\n          [-112.346234, 46.177623],\n          [-112.346347, 46.176821],\n          [-112.346473, 46.176275],\n          [-112.34671, 46.175728],\n          [-112.347062, 46.17511],\n          [-112.347483, 46.174486],\n          [-112.34822, 46.173702],\n          [-112.349208, 46.17291],\n          [-112.3521, 46.171121],\n          [-112.352701, 46.170843],\n          [-112.353354, 46.170627],\n          [-112.354238, 46.170443],\n          [-112.355396, 46.170378],\n          [-112.356246, 46.170461],\n          [-112.358186, 46.170764],\n          [-112.359293, 46.170788],\n          [-112.360246, 46.170669],\n          [-112.361216, 46.170425],\n          [-112.362177, 46.170093],\n          [-112.362941, 46.16973],\n          [-112.363559, 46.169296],\n          [-112.364125, 46.168743],\n          [-112.364529, 46.168119],\n          [-112.365267, 46.167103],\n          [-112.365816, 46.166663],\n          [-112.3664, 46.166336],\n          [-112.367129, 46.166098],\n          [-112.367868, 46.165967],\n          [-112.368692, 46.165944],\n          [-112.371773, 46.166039],\n          [-112.372811, 46.166015],\n          [-112.37367, 46.165902],\n          [-112.374588, 46.165706],\n          [-112.375592, 46.165379],\n          [-112.376571, 46.164951],\n          [-112.377318, 46.164529],\n          [-112.378076, 46.163952],\n          [-112.378262, 46.163762],\n          [-112.378614, 46.163364],\n          [-112.378914, 46.162965],\n          [-112.379469, 46.162169],\n          [-112.382055, 46.158245],\n          [-112.384021, 46.155308],\n          [-112.385566, 46.152959],\n          [-112.387334, 46.150272],\n          [-112.388458, 46.14862],\n          [-112.389451, 46.147108],\n          [-112.391789, 46.143594],\n          [-112.398669, 46.133222],\n          [-112.400972, 46.129712],\n          [-112.4066, 46.121302],\n          [-112.407393, 46.120004],\n          [-112.408182, 46.118582],\n          [-112.408541, 46.117899],\n          [-112.409937, 46.114817],\n          [-112.411055, 46.112333],\n          [-112.412388, 46.109365],\n          [-112.413655, 46.106653],\n          [-112.414778, 46.10418],\n          [-112.415206, 46.103314],\n          [-112.415668, 46.102487],\n          [-112.415895, 46.102106],\n          [-112.416464, 46.101176],\n          [-112.417083, 46.100254],\n          [-112.418499, 46.098356],\n          [-112.418915, 46.09769],\n          [-112.419526, 46.096677],\n          [-112.420233, 46.095398],\n          [-112.422479, 46.091058],\n          [-112.424336, 46.087469],\n          [-112.429652, 46.0772],\n          [-112.429822, 46.076884],\n          [-112.431392, 46.07384],\n          [-112.436257, 46.064391],\n          [-112.436937, 46.063074],\n          [-112.438079, 46.061044],\n          [-112.438376, 46.060532],\n          [-112.438666, 46.060066],\n          [-112.43881, 46.05984],\n          [-112.439098, 46.05943],\n          [-112.43934, 46.059064],\n          [-112.439532, 46.058774],\n          [-112.440107, 46.058002],\n          [-112.44038, 46.05765],\n          [-112.441731, 46.056019],\n          [-112.443485, 46.053949],\n          [-112.447802, 46.048851],\n          [-112.45155, 46.044489],\n          [-112.452423, 46.043435],\n          [-112.452928, 46.042858],\n          [-112.453336, 46.042363],\n          [-112.453672, 46.041989],\n          [-112.454055, 46.041551],\n          [-112.454342, 46.04125],\n          [-112.454665, 46.040886],\n          [-112.456067, 46.039558],\n          [-112.457335, 46.038587],\n          [-112.457987, 46.038059],\n          [-112.458512, 46.037625],\n          [-112.458842, 46.037329],\n          [-112.459071, 46.03709],\n          [-112.459314, 46.036842],\n          [-112.459518, 46.03659],\n          [-112.459678, 46.03639],\n          [-112.4598, 46.036215],\n          [-112.459891, 46.036045],\n          [-112.460007, 46.03582],\n          [-112.460114, 46.03551],\n          [-112.460172, 46.035281],\n          [-112.460249, 46.034999],\n          [-112.460282, 46.034713],\n          [-112.460289, 46.034622],\n          [-112.460306, 46.034393],\n          [-112.46034, 46.034001],\n          [-112.460377, 46.033494],\n          [-112.460788, 46.024225],\n          [-112.460858, 46.022999],\n          [-112.461034, 46.021707],\n          [-112.461139, 46.019417],\n          [-112.461174, 46.018182],\n          [-112.461374, 46.013939],\n          [-112.461433, 46.012326],\n          [-112.461598, 46.009767],\n          [-112.46173, 46.007706],\n          [-112.461826, 46.006592],\n          [-112.461968, 46.00602],\n          [-112.462225, 46.00538],\n          [-112.462565, 46.004722],\n          [-112.463191, 46.004036],\n          [-112.464072, 46.003225],\n          [-112.465792, 46.001872],\n          [-112.466856, 46.001037],\n          [-112.469268, 45.999189],\n          [-112.469946, 45.998682],\n          [-112.470667, 45.998003],\n          [-112.47113, 45.997502],\n          [-112.47156, 45.996917],\n          [-112.471963, 45.99622],\n          [-112.473459, 45.993424],\n          [-112.474051, 45.992464],\n          [-112.474317, 45.992004],\n          [-112.475276, 45.990233],\n          [-112.475566, 45.989642],\n          [-112.476695, 45.987673],\n          [-112.477014, 45.987068],\n          [-112.477395, 45.986399],\n          [-112.477976, 45.985327],\n          [-112.478243, 45.984818],\n          [-112.478421, 45.98455],\n          [-112.478851, 45.983744],\n          [-112.479177, 45.983218],\n          [-112.479374, 45.982981],\n          [-112.479538, 45.982795],\n          [-112.47971, 45.982636],\n          [-112.479894, 45.982492],\n          [-112.480132, 45.982326],\n          [-112.48042, 45.982142],\n          [-112.480713, 45.981993],\n          [-112.481018, 45.981862],\n          [-112.481235, 45.981784],\n          [-112.481491, 45.981708],\n          [-112.481819, 45.981612],\n          [-112.482235, 45.981526],\n          [-112.482576, 45.981485],\n          [-112.482792, 45.981468],\n          [-112.483106, 45.981448],\n          [-112.484674, 45.981411],\n          [-112.485533, 45.981393],\n          [-112.486142, 45.981346],\n          [-112.486888, 45.981343],\n          [-112.488415, 45.981329],\n          [-112.48942, 45.981323],\n          [-112.489915, 45.981311],\n          [-112.490321, 45.981291],\n          [-112.491262, 45.981187],\n          [-112.492077, 45.981092],\n          [-112.492755, 45.980966],\n          [-112.49327, 45.980829],\n          [-112.494197, 45.980567],\n          [-112.495345, 45.9802],\n          [-112.496229, 45.979974],\n          [-112.496927, 45.979831],\n          [-112.497708, 45.979756],\n          [-112.4986, 45.979744],\n          [-112.499484, 45.979774],\n          [-112.500257, 45.979863],\n          [-112.501047, 45.980042],\n          [-112.501432, 45.980146],\n          [-112.501772, 45.980251],\n          [-112.502162, 45.980391],\n          [-112.502441, 45.980505],\n          [-112.502715, 45.980622],\n          [-112.503036, 45.980793],\n          [-112.503323, 45.980946],\n          [-112.503646, 45.981153],\n          [-112.503934, 45.981351],\n          [-112.504203, 45.981566],\n          [-112.504427, 45.981757],\n          [-112.504926, 45.982217],\n          [-112.505529, 45.982793],\n          [-112.505933, 45.983132],\n          [-112.506153, 45.983296],\n          [-112.506336, 45.983431],\n          [-112.506571, 45.983586],\n          [-112.506888, 45.983789],\n          [-112.507196, 45.983956],\n          [-112.507471, 45.984097],\n          [-112.507799, 45.984272],\n          [-112.508512, 45.98456],\n          [-112.508794, 45.984651],\n          [-112.50906, 45.984738],\n          [-112.509415, 45.984842],\n          [-112.509964, 45.984998],\n          [-112.512836, 45.985714],\n          [-112.514063, 45.986044],\n          [-112.515749, 45.986501],\n          [-112.516874, 45.986847],\n          [-112.529602, 45.991803],\n          [-112.530598, 45.992131],\n          [-112.531516, 45.992333],\n          [-112.5324, 45.992476],\n          [-112.533044, 45.992536],\n          [-112.533894, 45.992542],\n          [-112.538675, 45.992548],\n          [-112.539481, 45.992542],\n          [-112.544571, 45.992548],\n          [-112.54755, 45.9925],\n          [-112.549472, 45.992518],\n          [-112.552176, 45.992548],\n          [-112.553189, 45.992614],\n          [-112.554167, 45.992739],\n          [-112.555008, 45.992942],\n          [-112.559798, 45.994337],\n          [-112.560613, 45.994587],\n          [-112.561471, 45.994951],\n          [-112.562235, 45.995404],\n          [-112.562816, 45.995834],\n          [-112.563071, 45.996064],\n          [-112.563323, 45.996326],\n          [-112.563586, 45.996638],\n          [-112.563846, 45.996975],\n          [-112.564136, 45.997384],\n          [-112.564414, 45.997764],\n          [-112.565162, 45.998934],\n          [-112.565743, 45.999683],\n          [-112.566655, 46.000955],\n          [-112.567437, 46.001903],\n          [-112.56802, 46.002517],\n          [-112.568741, 46.003096],\n          [-112.569419, 46.003525],\n          [-112.570063, 46.003859],\n          [-112.570964, 46.004318],\n          [-112.571822, 46.004693],\n          [-112.572895, 46.005009],\n          [-112.573848, 46.00523],\n          [-112.574775, 46.005379],\n          [-112.575728, 46.005463],\n          [-112.577187, 46.005504],\n          [-112.577788, 46.005522],\n          [-112.582056, 46.005676],\n          [-112.594885, 46.006166],\n          [-112.604584, 46.006524],\n          [-112.605451, 46.006619],\n          [-112.607283, 46.006843],\n          [-112.610896, 46.007381],\n          [-112.611152, 46.005948],\n          [-112.61121, 46.005792],\n          [-112.611238, 46.005609],\n          [-112.608284, 46.004266],\n          [-112.607739, 46.003921],\n          [-112.607191, 46.003516],\n          [-112.606953, 46.003377],\n          [-112.606693, 46.003274],\n          [-112.606342, 46.003193],\n          [-112.606239, 46.00317],\n          [-112.604638, 46.002827],\n          [-112.603223, 46.002511],\n          [-112.603052, 46.002473],\n          [-112.60203, 46.002278],\n          [-112.601516, 46.002219],\n          [-112.601276, 46.00221],\n          [-112.600883, 46.002212],\n          [-112.600496, 46.00223],\n          [-112.600404, 46.002208],\n          [-112.60036, 46.002173],\n          [-112.600327, 46.002117],\n          [-112.600314, 46.002059],\n          [-112.600333, 46.001927],\n          [-112.600381, 46.001853],\n          [-112.60049, 46.001777],\n          [-112.600599, 46.001745],\n          [-112.600713, 46.001737],\n          [-112.600862, 46.001739],\n          [-112.601544, 46.001798],\n          [-112.601657, 46.001792],\n          [-112.601804, 46.001767],\n          [-112.601918, 46.001724],\n          [-112.602008, 46.001673],\n          [-112.602239, 46.001528],\n          [-112.602389, 46.001412],\n          [-112.602658, 46.001185],\n          [-112.60307, 46.000822],\n          [-112.603218, 46.000656],\n          [-112.603405, 46.000474],\n          [-112.60366, 46.000513],\n          [-112.603842, 46.000532],\n          [-112.604078, 46.000549],\n          [-112.604254, 46.000547],\n          [-112.605018, 46.00043],\n          [-112.605491, 46.000395],\n          [-112.605766, 46.000402],\n          [-112.606076, 46.000466],\n          [-112.606209, 46.00049],\n          [-112.606364, 46.000494],\n          [-112.606548, 46.000466],\n          [-112.607005, 46.000359],\n          [-112.607412, 46.000312],\n          [-112.611416, 46.000299],\n          [-112.611653, 46.000242],\n          [-112.611812, 46.000145],\n          [-112.611932, 45.999965],\n          [-112.611906, 45.993731],\n          [-112.611956, 45.990322],\n          [-112.611963, 45.987384],\n          [-112.611945, 45.986839],\n          [-112.611983, 45.986517],\n          [-112.612211, 45.985826],\n          [-112.612974, 45.983191],\n          [-112.613351, 45.982047],\n          [-112.613508, 45.981723],\n          [-112.613655, 45.98152],\n          [-112.613973, 45.981284],\n          [-112.61573, 45.980235],\n          [-112.61642, 45.979923],\n          [-112.617405, 45.979519],\n          [-112.618068, 45.979213],\n          [-112.618669, 45.978865],\n          [-112.620246, 45.977619],\n          [-112.620586, 45.977289],\n          [-112.621106, 45.976592],\n          [-112.622154, 45.975079],\n          [-112.622235, 45.974699],\n          [-112.622281, 45.973317],\n          [-112.622078, 45.970234],\n          [-112.619831, 45.970225],\n          [-112.614288, 45.970203]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-112.606601, 45.960219]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-111.972656, 48.843028]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-slice/test/in/vertical.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-121.254478, 38.705824],\n          [-121.254494, 38.709767]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-121.254478, 38.705824]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-121.254478, 38.706343]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-slice/test/out/avoid-duplicated-end-points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [3, 0],\n          [2, -1],\n          [2, 2]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 2]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#f0f\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [2, 0],\n          [2, 2]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-slice/test/out/line1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-97.88131713867188, 22.466878364528448],\n          [-97.82089233398438, 22.175960091218524],\n          [-97.6190185546875, 21.8704201873689]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-97.796173, 22.254624]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-97.727508, 22.057641]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#f0f\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-97.835747, 22.247595],\n          [-97.820892, 22.17596],\n          [-97.738477, 22.051413]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-slice/test/out/line2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [1, 1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0.1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9, 0.8]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#f0f\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0.05, 0.050008],\n          [0.849981, 0.850017]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-slice/test/out/route1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-79.254923, 36.98394],\n          [-79.254923, 36.983939],\n          [-79.255326, 36.9838],\n          [-79.255401, 36.983774],\n          [-79.25576, 36.983664],\n          [-79.256795, 36.984137],\n          [-79.257537, 36.984478],\n          [-79.258539, 36.984925],\n          [-79.259498, 36.985353],\n          [-79.260286, 36.985712],\n          [-79.261405, 36.986222],\n          [-79.262933, 36.986928],\n          [-79.263237, 36.987071],\n          [-79.263755, 36.987296],\n          [-79.264086, 36.987423],\n          [-79.264167, 36.987446],\n          [-79.264338, 36.987486],\n          [-79.264414, 36.987501],\n          [-79.264618, 36.987531],\n          [-79.2648, 36.987542],\n          [-79.264982, 36.987537],\n          [-79.265163, 36.987517],\n          [-79.26703, 36.987355],\n          [-79.267952, 36.98726],\n          [-79.268404, 36.987226],\n          [-79.268771, 36.987197],\n          [-79.26955, 36.987117],\n          [-79.271398, 36.986946],\n          [-79.271488, 36.986941],\n          [-79.271698, 36.986925],\n          [-79.271936, 36.986898],\n          [-79.272231, 36.986852],\n          [-79.272474, 36.986785],\n          [-79.272711, 36.986705],\n          [-79.272895, 36.986632],\n          [-79.273059, 36.986552],\n          [-79.273646, 36.986245],\n          [-79.274224, 36.985925],\n          [-79.274887, 36.985592],\n          [-79.275308, 36.985365],\n          [-79.275672, 36.98517],\n          [-79.276249, 36.984876],\n          [-79.277101, 36.984433],\n          [-79.277425, 36.984259],\n          [-79.277918, 36.983982],\n          [-79.27799, 36.98395],\n          [-79.278179, 36.98385],\n          [-79.278261, 36.9838],\n          [-79.278335, 36.983745],\n          [-79.278421, 36.983666],\n          [-79.27844, 36.983647],\n          [-79.278502, 36.983577],\n          [-79.278548, 36.983511],\n          [-79.278614, 36.983381],\n          [-79.278654, 36.983273],\n          [-79.278711, 36.983011],\n          [-79.278763, 36.98269],\n          [-79.278806, 36.982485],\n          [-79.278866, 36.982282],\n          [-79.278952, 36.982101],\n          [-79.279023, 36.981984],\n          [-79.280178, 36.980418],\n          [-79.280259, 36.980319],\n          [-79.280355, 36.980229],\n          [-79.280419, 36.98018],\n          [-79.280578, 36.980082],\n          [-79.280666, 36.980038],\n          [-79.280783, 36.979994],\n          [-79.280908, 36.979963],\n          [-79.281301, 36.979913],\n          [-79.281646, 36.979874],\n          [-79.282145, 36.979835],\n          [-79.282797, 36.97977],\n          [-79.283144, 36.979743],\n          [-79.283618, 36.97972],\n          [-79.28399, 36.979706],\n          [-79.284447, 36.979695],\n          [-79.284904, 36.979697],\n          [-79.286913, 36.979638],\n          [-79.287201, 36.979628],\n          [-79.287954, 36.979612],\n          [-79.288037, 36.979611],\n          [-79.288397, 36.97962],\n          [-79.288697, 36.979643],\n          [-79.289908, 36.979722],\n          [-79.289994, 36.979724],\n          [-79.290136, 36.979716],\n          [-79.290248, 36.979699],\n          [-79.290503, 36.979632],\n          [-79.291043, 36.979454],\n          [-79.291563, 36.979269],\n          [-79.292467, 36.97896],\n          [-79.292759, 36.978877],\n          [-79.292963, 36.978832],\n          [-79.293286, 36.978778],\n          [-79.293549, 36.978746],\n          [-79.293649, 36.978738],\n          [-79.293755, 36.978729],\n          [-79.293858, 36.978731],\n          [-79.294028, 36.978747],\n          [-79.294162, 36.978771],\n          [-79.294243, 36.9788],\n          [-79.294439, 36.978883],\n          [-79.294626, 36.978979],\n          [-79.294782, 36.979072],\n          [-79.294921, 36.979174],\n          [-79.295023, 36.979263],\n          [-79.295281, 36.979534],\n          [-79.295458, 36.979739],\n          [-79.296347, 36.980843],\n          [-79.296549, 36.981064],\n          [-79.296594, 36.981095],\n          [-79.296695, 36.981144],\n          [-79.296788, 36.98117],\n          [-79.296916, 36.981184],\n          [-79.297032, 36.981182],\n          [-79.297147, 36.981165],\n          [-79.297933, 36.980962],\n          [-79.298145, 36.980893],\n          [-79.298401, 36.98079],\n          [-79.298602, 36.980696],\n          [-79.298795, 36.980593],\n          [-79.299134, 36.980402],\n          [-79.299407, 36.980244],\n          [-79.299963, 36.9799],\n          [-79.301767, 36.97881],\n          [-79.301976, 36.978691],\n          [-79.3021, 36.978619],\n          [-79.302508, 36.978369],\n          [-79.302614, 36.978309],\n          [-79.3028, 36.97822],\n          [-79.302995, 36.978145],\n          [-79.303113, 36.978114],\n          [-79.303153, 36.978249],\n          [-79.303232, 36.978565],\n          [-79.303319, 36.978989],\n          [-79.303326, 36.979184],\n          [-79.303313, 36.979346],\n          [-79.30324, 36.979748],\n          [-79.303136, 36.980362],\n          [-79.303088, 36.980609],\n          [-79.302996, 36.981143],\n          [-79.302982, 36.981226],\n          [-79.302977, 36.981321],\n          [-79.302986, 36.98144],\n          [-79.303013, 36.981556],\n          [-79.303057, 36.98167],\n          [-79.303191, 36.9819],\n          [-79.303336, 36.982126],\n          [-79.303702, 36.982652],\n          [-79.304322, 36.983486],\n          [-79.304588, 36.98382],\n          [-79.304756, 36.984051],\n          [-79.304903, 36.984229],\n          [-79.305059, 36.984403],\n          [-79.305145, 36.984487],\n          [-79.305336, 36.984648],\n          [-79.305612, 36.98486],\n          [-79.30569, 36.984915],\n          [-79.305765, 36.984974],\n          [-79.305944, 36.98513],\n          [-79.306108, 36.985295],\n          [-79.306259, 36.985469],\n          [-79.306333, 36.98557],\n          [-79.306437, 36.985737],\n          [-79.306524, 36.985911],\n          [-79.306595, 36.98609],\n          [-79.306677, 36.986365],\n          [-79.306734, 36.98662],\n          [-79.306773, 36.986878],\n          [-79.306759, 36.986998],\n          [-79.306724, 36.987146],\n          [-79.306621, 36.987426],\n          [-79.306591, 36.987545],\n          [-79.306555, 36.987745],\n          [-79.306536, 36.987984],\n          [-79.30653, 36.988172],\n          [-79.306539, 36.988321],\n          [-79.30655, 36.988398],\n          [-79.306566, 36.988507],\n          [-79.306673, 36.988967],\n          [-79.306789, 36.989416],\n          [-79.30681, 36.989518],\n          [-79.306831, 36.98969],\n          [-79.306833, 36.989828],\n          [-79.306822, 36.989888],\n          [-79.306771, 36.990067],\n          [-79.306696, 36.99024],\n          [-79.306569, 36.990463],\n          [-79.306374, 36.99078],\n          [-79.30633, 36.990863],\n          [-79.306292, 36.990972],\n          [-79.306271, 36.991084],\n          [-79.306268, 36.991229],\n          [-79.306282, 36.991421],\n          [-79.306323, 36.991648],\n          [-79.30657, 36.992516],\n          [-79.306601, 36.992703],\n          [-79.306614, 36.992892],\n          [-79.306598, 36.993111],\n          [-79.306569, 36.993287],\n          [-79.306553, 36.993345],\n          [-79.306526, 36.993432],\n          [-79.306466, 36.993574],\n          [-79.306313, 36.993848],\n          [-79.305971, 36.994382],\n          [-79.305826, 36.994647],\n          [-79.305382, 36.995598],\n          [-79.305197, 36.995963],\n          [-79.305065, 36.996284],\n          [-79.304983, 36.996521],\n          [-79.304954, 36.99668],\n          [-79.30495, 36.996815],\n          [-79.304959, 36.996932],\n          [-79.304988, 36.997077],\n          [-79.305024, 36.99719],\n          [-79.305111, 36.99739],\n          [-79.305197, 36.997567],\n          [-79.30532, 36.997782],\n          [-79.305429, 36.997949],\n          [-79.305577, 36.998153],\n          [-79.306017, 36.99873],\n          [-79.306204, 36.998965],\n          [-79.306407, 36.999192],\n          [-79.306624, 36.999411],\n          [-79.30672, 36.999489],\n          [-79.306828, 36.999557],\n          [-79.306922, 36.999602],\n          [-79.307072, 36.999656],\n          [-79.307354, 36.999723],\n          [-79.307628, 36.999778],\n          [-79.308892, 36.999988],\n          [-79.309029, 37.00002],\n          [-79.309135, 37.000056],\n          [-79.30926, 37.000112],\n          [-79.309374, 37.00018],\n          [-79.309478, 37.000259],\n          [-79.30959, 37.000372],\n          [-79.309743, 37.000552],\n          [-79.31029, 37.001344],\n          [-79.31037, 37.001451],\n          [-79.310486, 37.001568],\n          [-79.310598, 37.001654],\n          [-79.310697, 37.001714],\n          [-79.310838, 37.001785],\n          [-79.310991, 37.001844],\n          [-79.31115, 37.001891],\n          [-79.311632, 37.001979],\n          [-79.312359, 37.002135],\n          [-79.312455, 37.002156],\n          [-79.312915, 37.002271],\n          [-79.313026, 37.002296],\n          [-79.313639, 37.002422],\n          [-79.314311, 37.002515],\n          [-79.314769, 37.002553],\n          [-79.315227, 37.002582],\n          [-79.315352, 37.002604],\n          [-79.315472, 37.002641],\n          [-79.315543, 37.002685],\n          [-79.315621, 37.00275],\n          [-79.315685, 37.002824],\n          [-79.315725, 37.002889],\n          [-79.315888, 37.002832],\n          [-79.316221, 37.002733],\n          [-79.316448, 37.002678],\n          [-79.31752, 37.002455],\n          [-79.318524, 37.002275],\n          [-79.319059, 37.002211],\n          [-79.319268, 37.002199],\n          [-79.319435, 37.0022],\n          [-79.319651, 37.002214],\n          [-79.319786, 37.002226],\n          [-79.320258, 37.002279],\n          [-79.320522, 37.002298],\n          [-79.320786, 37.002302],\n          [-79.320953, 37.002288],\n          [-79.321116, 37.002258],\n          [-79.321274, 37.002213],\n          [-79.321381, 37.00217],\n          [-79.321762, 37.002001],\n          [-79.322382, 37.001698],\n          [-79.322844, 37.001466],\n          [-79.323023, 37.001376],\n          [-79.323292, 37.001249],\n          [-79.32357, 37.001134],\n          [-79.323943, 37.001003],\n          [-79.324098, 37.000958],\n          [-79.324162, 37.000945],\n          [-79.32513, 37.000843],\n          [-79.325325, 37.000814],\n          [-79.325517, 37.000777],\n          [-79.325753, 37.000719],\n          [-79.327186, 37.000266],\n          [-79.327482, 37.000173],\n          [-79.327802, 37.00008],\n          [-79.328598, 36.999838],\n          [-79.329158, 36.999654],\n          [-79.329204, 36.999715],\n          [-79.329343, 36.999894],\n          [-79.32942, 36.999975],\n          [-79.329588, 37.000125],\n          [-79.329742, 37.000239],\n          [-79.329777, 37.000256],\n          [-79.329869, 37.000291],\n          [-79.329988, 37.000315],\n          [-79.330091, 37.000318],\n          [-79.33027, 37.000316],\n          [-79.330449, 37.000298],\n          [-79.331035, 37.000223],\n          [-79.331427, 37.000184],\n          [-79.331855, 37.000129],\n          [-79.333009, 37.000023],\n          [-79.334568, 36.999869],\n          [-79.335002, 36.999826],\n          [-79.33552, 36.999806],\n          [-79.33606, 36.999814],\n          [-79.336208, 36.999833],\n          [-79.336352, 36.999866],\n          [-79.33649, 36.999913],\n          [-79.336644, 36.999986],\n          [-79.336856, 37.000123],\n          [-79.336962, 37.000203],\n          [-79.337096, 37.000316],\n          [-79.337325, 37.000539],\n          [-79.337519, 37.000761],\n          [-79.338522, 37.001965],\n          [-79.339126, 37.002688],\n          [-79.339574, 37.003185],\n          [-79.340385, 37.004106],\n          [-79.340479, 37.004212],\n          [-79.340603, 37.004341],\n          [-79.340773, 37.00449],\n          [-79.340929, 37.004602],\n          [-79.341131, 37.004723],\n          [-79.341632, 37.004968],\n          [-79.341875, 37.005087],\n          [-79.342172, 37.005233],\n          [-79.342594, 37.00542],\n          [-79.343189, 37.005708],\n          [-79.343817, 37.006011],\n          [-79.344455, 37.006335],\n          [-79.344712, 37.00647],\n          [-79.345697, 37.006916],\n          [-79.345837, 37.006985],\n          [-79.346006, 37.00708],\n          [-79.346221, 37.007218],\n          [-79.347403, 37.008016],\n          [-79.347493, 37.008071],\n          [-79.347634, 37.008171],\n          [-79.347763, 37.008281],\n          [-79.347971, 37.008497],\n          [-79.348051, 37.008623],\n          [-79.348135, 37.008786],\n          [-79.348201, 37.008954],\n          [-79.34825, 37.009126],\n          [-79.348316, 37.00954],\n          [-79.348397, 37.010196],\n          [-79.34854, 37.01111],\n          [-79.348616, 37.011496],\n          [-79.348778, 37.012266],\n          [-79.349159, 37.013946],\n          [-79.349315, 37.014628],\n          [-79.349636, 37.015919],\n          [-79.349688, 37.016183],\n          [-79.349795, 37.016628],\n          [-79.349854, 37.016827],\n          [-79.349915, 37.01701],\n          [-79.350064, 37.017337],\n          [-79.350135, 37.017464],\n          [-79.350159, 37.017499],\n          [-79.350325, 37.017735],\n          [-79.35042, 37.017865],\n          [-79.350584, 37.018129],\n          [-79.35072, 37.01842],\n          [-79.350808, 37.018683],\n          [-79.35089, 37.018981],\n          [-79.350968, 37.019317],\n          [-79.35119, 37.020219],\n          [-79.351251, 37.020445],\n          [-79.351346, 37.020719],\n          [-79.351414, 37.020888],\n          [-79.351505, 37.021079],\n          [-79.351682, 37.021459],\n          [-79.351825, 37.02176],\n          [-79.352185, 37.022473],\n          [-79.352628, 37.023433],\n          [-79.352751, 37.023743],\n          [-79.35282, 37.023863],\n          [-79.352895, 37.023965],\n          [-79.353012, 37.024078],\n          [-79.353078, 37.024127],\n          [-79.353186, 37.024186],\n          [-79.353325, 37.024244],\n          [-79.353398, 37.024265],\n          [-79.353421, 37.02427],\n          [-79.353621, 37.024315],\n          [-79.353675, 37.024321],\n          [-79.35392, 37.024336],\n          [-79.354286, 37.024379],\n          [-79.354423, 37.024385],\n          [-79.354844, 37.024375],\n          [-79.355058, 37.024359],\n          [-79.355214, 37.024339],\n          [-79.355354, 37.024308],\n          [-79.355614, 37.024238],\n          [-79.355718, 37.024209],\n          [-79.355965, 37.024125],\n          [-79.356147, 37.024057],\n          [-79.356485, 37.02394],\n          [-79.356546, 37.023919],\n          [-79.356797, 37.023824],\n          [-79.356964, 37.023769],\n          [-79.357077, 37.023757],\n          [-79.357196, 37.023767],\n          [-79.357262, 37.023786],\n          [-79.357309, 37.023811],\n          [-79.35735, 37.023849],\n          [-79.357388, 37.023905],\n          [-79.357541, 37.024317],\n          [-79.357583, 37.024391],\n          [-79.357634, 37.024438],\n          [-79.357685, 37.024467],\n          [-79.357747, 37.024487],\n          [-79.35783, 37.024497],\n          [-79.357899, 37.024495],\n          [-79.35801, 37.02448],\n          [-79.358102, 37.02446],\n          [-79.358409, 37.025941],\n          [-79.358471, 37.026316],\n          [-79.358502, 37.026637],\n          [-79.358517, 37.026844],\n          [-79.358519, 37.027185],\n          [-79.358497, 37.027679],\n          [-79.358457, 37.028033],\n          [-79.358398, 37.028378],\n          [-79.358301, 37.028779],\n          [-79.358082, 37.029574],\n          [-79.357957, 37.030026],\n          [-79.357813, 37.030609],\n          [-79.357745, 37.03095],\n          [-79.357685, 37.031344],\n          [-79.357656, 37.031612],\n          [-79.357621, 37.032199],\n          [-79.357619, 37.032445],\n          [-79.357631, 37.032766],\n          [-79.357637, 37.032893],\n          [-79.357666, 37.033258],\n          [-79.357711, 37.033639],\n          [-79.357789, 37.034066],\n          [-79.357875, 37.034441],\n          [-79.357922, 37.034622],\n          [-79.358521, 37.036938],\n          [-79.358613, 37.037315],\n          [-79.358687, 37.037658],\n          [-79.358786, 37.038217],\n          [-79.358856, 37.038791],\n          [-79.358911, 37.039356],\n          [-79.358965, 37.0401],\n          [-79.359051, 37.041306],\n          [-79.359073, 37.041825],\n          [-79.359059, 37.042471],\n          [-79.359012, 37.042954],\n          [-79.35899, 37.04313],\n          [-79.358922, 37.043537],\n          [-79.358829, 37.043973],\n          [-79.358773, 37.044171],\n          [-79.358704, 37.044417],\n          [-79.358541, 37.044914],\n          [-79.358352, 37.045429],\n          [-79.357856, 37.04678],\n          [-79.357794, 37.046961],\n          [-79.357564, 37.047556],\n          [-79.357409, 37.047915],\n          [-79.357338, 37.048062],\n          [-79.357278, 37.048184],\n          [-79.356942, 37.048801],\n          [-79.356841, 37.048967],\n          [-79.356589, 37.049349],\n          [-79.356363, 37.049677],\n          [-79.354212, 37.052783],\n          [-79.353972, 37.053148],\n          [-79.353865, 37.053295],\n          [-79.353452, 37.053889],\n          [-79.352197, 37.055711],\n          [-79.352126, 37.055808],\n          [-79.351983, 37.056023],\n          [-79.351596, 37.056539],\n          [-79.351413, 37.056761],\n          [-79.35122, 37.056979],\n          [-79.351018, 37.057191],\n          [-79.35075, 37.057445],\n          [-79.350603, 37.057584],\n          [-79.35029, 37.057856],\n          [-79.348032, 37.059645],\n          [-79.346954, 37.060488],\n          [-79.345892, 37.06133],\n          [-79.345295, 37.061797],\n          [-79.344778, 37.062208],\n          [-79.344716, 37.062258],\n          [-79.343942, 37.062866],\n          [-79.343259, 37.06342],\n          [-79.342925, 37.063722],\n          [-79.342732, 37.063907],\n          [-79.342302, 37.064351],\n          [-79.342055, 37.06463],\n          [-79.341843, 37.064885],\n          [-79.341424, 37.065452],\n          [-79.341048, 37.066036],\n          [-79.340718, 37.066647],\n          [-79.340066, 37.068047],\n          [-79.338982, 37.070343],\n          [-79.336951, 37.074656],\n          [-79.336672, 37.075265],\n          [-79.335622, 37.077497],\n          [-79.335265, 37.078252],\n          [-79.33489, 37.079062],\n          [-79.334833, 37.079182],\n          [-79.334222, 37.080477],\n          [-79.333262, 37.082521],\n          [-79.333001, 37.083079],\n          [-79.332628, 37.084028],\n          [-79.332548, 37.084278],\n          [-79.332388, 37.08478],\n          [-79.332201, 37.085539],\n          [-79.33204, 37.086421],\n          [-79.33196, 37.086978],\n          [-79.331907, 37.087757],\n          [-79.331871, 37.088536],\n          [-79.33185, 37.089317],\n          [-79.331805, 37.090324],\n          [-79.331772, 37.091338],\n          [-79.331768, 37.092235],\n          [-79.33183, 37.093576],\n          [-79.331943, 37.095022],\n          [-79.332045, 37.096198],\n          [-79.332341, 37.099713],\n          [-79.332397, 37.100421],\n          [-79.332436, 37.101086],\n          [-79.332443, 37.1013],\n          [-79.332438, 37.10199],\n          [-79.332418, 37.102426],\n          [-79.332391, 37.102795],\n          [-79.332337, 37.103324],\n          [-79.332244, 37.103966],\n          [-79.332205, 37.104185],\n          [-79.332175, 37.104355],\n          [-79.332056, 37.104907],\n          [-79.332041, 37.104978],\n          [-79.331903, 37.105494],\n          [-79.331733, 37.106053],\n          [-79.331559, 37.106562],\n          [-79.33131, 37.107195],\n          [-79.331178, 37.107501],\n          [-79.330959, 37.107973],\n          [-79.330748, 37.108399],\n          [-79.330489, 37.108876],\n          [-79.330365, 37.109093],\n          [-79.330155, 37.10944],\n          [-79.329757, 37.110058],\n          [-79.328813, 37.111446],\n          [-79.328701, 37.111611],\n          [-79.327118, 37.113932],\n          [-79.327107, 37.113947],\n          [-79.326498, 37.114802],\n          [-79.326178, 37.115223],\n          [-79.326128, 37.115289],\n          [-79.32568, 37.115855],\n          [-79.325061, 37.116595],\n          [-79.324816, 37.116878],\n          [-79.324497, 37.117235],\n          [-79.324161, 37.117601],\n          [-79.323816, 37.117964],\n          [-79.323589, 37.118194],\n          [-79.323104, 37.118678],\n          [-79.322015, 37.119732],\n          [-79.320826, 37.12089],\n          [-79.320279, 37.121415],\n          [-79.31993, 37.121729],\n          [-79.319276, 37.122271],\n          [-79.318828, 37.122609],\n          [-79.318377, 37.122925],\n          [-79.317535, 37.123462],\n          [-79.316595, 37.123987],\n          [-79.315586, 37.124473],\n          [-79.314958, 37.124742],\n          [-79.311931, 37.125973],\n          [-79.303986, 37.129196],\n          [-79.303177, 37.129555],\n          [-79.302367, 37.129915],\n          [-79.30095, 37.130617],\n          [-79.298871, 37.131691],\n          [-79.298008, 37.132146],\n          [-79.293574, 37.134491],\n          [-79.293108, 37.134749],\n          [-79.292712, 37.134937],\n          [-79.292278, 37.135125],\n          [-79.291836, 37.1353],\n          [-79.291351, 37.135473],\n          [-79.290905, 37.135615],\n          [-79.290365, 37.135772],\n          [-79.289641, 37.135941],\n          [-79.289078, 37.136055],\n          [-79.288222, 37.136184],\n          [-79.287781, 37.136228],\n          [-79.287205, 37.136269],\n          [-79.281895, 37.136526],\n          [-79.280512, 37.136607],\n          [-79.279731, 37.13667],\n          [-79.278968, 37.136747],\n          [-79.277922, 37.136872],\n          [-79.276244, 37.13712],\n          [-79.273494, 37.137624],\n          [-79.272005, 37.137904],\n          [-79.271794, 37.137944],\n          [-79.266159, 37.138985],\n          [-79.265643, 37.139056],\n          [-79.265084, 37.139119],\n          [-79.264404, 37.139177],\n          [-79.263826, 37.139213],\n          [-79.263263, 37.139234],\n          [-79.262666, 37.139241],\n          [-79.262103, 37.139234],\n          [-79.26149, 37.139213],\n          [-79.260895, 37.13918],\n          [-79.260488, 37.139149],\n          [-79.257811, 37.138859],\n          [-79.253283, 37.138354],\n          [-79.251817, 37.138189],\n          [-79.251311, 37.138138],\n          [-79.25082, 37.138104],\n          [-79.250344, 37.138087],\n          [-79.249949, 37.138091],\n          [-79.249141, 37.138125],\n          [-79.248701, 37.138169],\n          [-79.248255, 37.138232],\n          [-79.247815, 37.138303],\n          [-79.247404, 37.138388],\n          [-79.246983, 37.138492],\n          [-79.24619, 37.138741],\n          [-79.246034, 37.138799],\n          [-79.245567, 37.138991],\n          [-79.243639, 37.139795],\n          [-79.242121, 37.140435],\n          [-79.241618, 37.140648],\n          [-79.241125, 37.14089],\n          [-79.240755, 37.141103],\n          [-79.240471, 37.141293],\n          [-79.240237, 37.141475],\n          [-79.240023, 37.141661],\n          [-79.239659, 37.142024],\n          [-79.238717, 37.143115],\n          [-79.238653, 37.143189],\n          [-79.238443, 37.143404],\n          [-79.23822, 37.14361],\n          [-79.237972, 37.143817],\n          [-79.237711, 37.144013],\n          [-79.237424, 37.144206],\n          [-79.237139, 37.144378],\n          [-79.236846, 37.144536],\n          [-79.23672, 37.144599],\n          [-79.235366, 37.145185],\n          [-79.235031, 37.145327],\n          [-79.233118, 37.146139],\n          [-79.232943, 37.146214],\n          [-79.23213, 37.146559],\n          [-79.23159, 37.146789],\n          [-79.231268, 37.146943],\n          [-79.230971, 37.147103],\n          [-79.230723, 37.147248],\n          [-79.230589, 37.147333],\n          [-79.230303, 37.147527],\n          [-79.230067, 37.147704],\n          [-79.229831, 37.147902],\n          [-79.229608, 37.148108],\n          [-79.229398, 37.148324],\n          [-79.229192, 37.148559],\n          [-79.229002, 37.148802],\n          [-79.228823, 37.149065],\n          [-79.228683, 37.149299],\n          [-79.228557, 37.149537],\n          [-79.228436, 37.149807],\n          [-79.228332, 37.15008],\n          [-79.22824, 37.150371],\n          [-79.228165, 37.150679],\n          [-79.228144, 37.150787],\n          [-79.22795, 37.1522],\n          [-79.227939, 37.152282],\n          [-79.227922, 37.152405],\n          [-79.227831, 37.1531],\n          [-79.227768, 37.153577],\n          [-79.22775, 37.153704],\n          [-79.227707, 37.153951],\n          [-79.227614, 37.154338],\n          [-79.227519, 37.154642],\n          [-79.227394, 37.154981],\n          [-79.227259, 37.155289],\n          [-79.227113, 37.155579],\n          [-79.227008, 37.155764],\n          [-79.226979, 37.155814],\n          [-79.226931, 37.155892],\n          [-79.22673, 37.156196],\n          [-79.226531, 37.156466],\n          [-79.226359, 37.156679],\n          [-79.226091, 37.156981],\n          [-79.225836, 37.157239],\n          [-79.225577, 37.157477],\n          [-79.225307, 37.157704],\n          [-79.225033, 37.15791],\n          [-79.224838, 37.158043],\n          [-79.223223, 37.159106],\n          [-79.222625, 37.159494],\n          [-79.222577, 37.159525],\n          [-79.222526, 37.159559],\n          [-79.222269, 37.159725],\n          [-79.221758, 37.160065],\n          [-79.219427, 37.161585],\n          [-79.218294, 37.162324],\n          [-79.218211, 37.162378],\n          [-79.216923, 37.163217],\n          [-79.216426, 37.163539],\n          [-79.215909, 37.16389],\n          [-79.215531, 37.164171],\n          [-79.215221, 37.164425],\n          [-79.214936, 37.164678],\n          [-79.214674, 37.164929],\n          [-79.214292, 37.165324],\n          [-79.214244, 37.165374],\n          [-79.213081, 37.166582],\n          [-79.212642, 37.167038],\n          [-79.212368, 37.167324],\n          [-79.212048, 37.167658],\n          [-79.211768, 37.16795],\n          [-79.211486, 37.168245],\n          [-79.211416, 37.168318],\n          [-79.211008, 37.168744],\n          [-79.210963, 37.168791],\n          [-79.210689, 37.16908],\n          [-79.210304, 37.16953],\n          [-79.2101, 37.169782],\n          [-79.209923, 37.170006],\n          [-79.209526, 37.170538],\n          [-79.209343, 37.170798],\n          [-79.207037, 37.174039],\n          [-79.206764, 37.174435],\n          [-79.206634, 37.174641],\n          [-79.206469, 37.174929],\n          [-79.206273, 37.17532],\n          [-79.20615, 37.175603],\n          [-79.206073, 37.175802],\n          [-79.206026, 37.175929],\n          [-79.205916, 37.176273],\n          [-79.205845, 37.176539],\n          [-79.205757, 37.176917],\n          [-79.205696, 37.177164],\n          [-79.205658, 37.177349],\n          [-79.205603, 37.177589],\n          [-79.205562, 37.177759],\n          [-79.205539, 37.177863],\n          [-79.205487, 37.178091],\n          [-79.205427, 37.178344],\n          [-79.205364, 37.178607],\n          [-79.205297, 37.178889],\n          [-79.205253, 37.179068],\n          [-79.20519, 37.179332],\n          [-79.205122, 37.179618],\n          [-79.205055, 37.179895],\n          [-79.204997, 37.180138],\n          [-79.204614, 37.181773],\n          [-79.204588, 37.181883],\n          [-79.204488, 37.182314],\n          [-79.204319, 37.183043],\n          [-79.204265, 37.183268],\n          [-79.204123, 37.18388],\n          [-79.203924, 37.184747],\n          [-79.203855, 37.185167],\n          [-79.203781, 37.185725],\n          [-79.203767, 37.185869],\n          [-79.203714, 37.186727],\n          [-79.203688, 37.188358],\n          [-79.203665, 37.189574],\n          [-79.203624, 37.192626],\n          [-79.203627, 37.192665],\n          [-79.203588, 37.193792],\n          [-79.203572, 37.194229],\n          [-79.203568, 37.194309],\n          [-79.203559, 37.194539],\n          [-79.203553, 37.194676],\n          [-79.203543, 37.194919],\n          [-79.203531, 37.195199],\n          [-79.203502, 37.195859],\n          [-79.203483, 37.196276],\n          [-79.203468, 37.196579],\n          [-79.203458, 37.196792],\n          [-79.203433, 37.197322],\n          [-79.203422, 37.197563],\n          [-79.20341, 37.197824],\n          [-79.203397, 37.198095],\n          [-79.20339, 37.198254],\n          [-79.203379, 37.19847],\n          [-79.203358, 37.198936],\n          [-79.20334, 37.19935],\n          [-79.203304, 37.200071],\n          [-79.203262, 37.200536],\n          [-79.203244, 37.200686],\n          [-79.203162, 37.201241],\n          [-79.203073, 37.201722],\n          [-79.20306, 37.201793],\n          [-79.203026, 37.201977],\n          [-79.202836, 37.203003],\n          [-79.202752, 37.203459],\n          [-79.202563, 37.204478],\n          [-79.202452, 37.205079],\n          [-79.202395, 37.205385],\n          [-79.201856, 37.208299],\n          [-79.201805, 37.208574],\n          [-79.201702, 37.209126],\n          [-79.201673, 37.209268],\n          [-79.201619, 37.209479],\n          [-79.201573, 37.209638],\n          [-79.201505, 37.209836],\n          [-79.201407, 37.210085],\n          [-79.201284, 37.210341],\n          [-79.201114, 37.21064],\n          [-79.201026, 37.210776],\n          [-79.200882, 37.21098],\n          [-79.200649, 37.211282],\n          [-79.200396, 37.211554],\n          [-79.199727, 37.212167],\n          [-79.199637, 37.212249],\n          [-79.199553, 37.212325],\n          [-79.199391, 37.212473],\n          [-79.199159, 37.212684],\n          [-79.19865, 37.213144],\n          [-79.197756, 37.213946],\n          [-79.197588, 37.214097],\n          [-79.197252, 37.214415],\n          [-79.196922, 37.214731],\n          [-79.196487, 37.215166],\n          [-79.196055, 37.215596],\n          [-79.195714, 37.216042],\n          [-79.195395, 37.216449],\n          [-79.194175, 37.218086],\n          [-79.193942, 37.2184],\n          [-79.193714, 37.218705],\n          [-79.193339, 37.219208],\n          [-79.193103, 37.219523],\n          [-79.192804, 37.219924],\n          [-79.192465, 37.220384],\n          [-79.191972, 37.221056],\n          [-79.191665, 37.221486],\n          [-79.191271, 37.222039],\n          [-79.191066, 37.222328],\n          [-79.190837, 37.222648],\n          [-79.190786, 37.222724],\n          [-79.190591, 37.223024],\n          [-79.190561, 37.223069],\n          [-79.190114, 37.223762],\n          [-79.189976, 37.223994],\n          [-79.189786, 37.224314],\n          [-79.189538, 37.224731],\n          [-79.189441, 37.224896],\n          [-79.189231, 37.225287],\n          [-79.188873, 37.225949],\n          [-79.188647, 37.226369],\n          [-79.188578, 37.226497],\n          [-79.188422, 37.22682],\n          [-79.187747, 37.228226],\n          [-79.187638, 37.228454],\n          [-79.186752, 37.230317],\n          [-79.186236, 37.23142],\n          [-79.186183, 37.231531],\n          [-79.186143, 37.231633],\n          [-79.186012, 37.231905],\n          [-79.185971, 37.232009],\n          [-79.185901, 37.232204],\n          [-79.185821, 37.232467],\n          [-79.185783, 37.232629],\n          [-79.185746, 37.232787],\n          [-79.185712, 37.232989],\n          [-79.185564, 37.234115],\n          [-79.18554, 37.234342],\n          [-79.185535, 37.234388],\n          [-79.185527, 37.234464],\n          [-79.185489, 37.234824],\n          [-79.185459, 37.235133],\n          [-79.185442, 37.235447],\n          [-79.185444, 37.235802],\n          [-79.185467, 37.236157],\n          [-79.185494, 37.236478],\n          [-79.185509, 37.236629],\n          [-79.185568, 37.237037],\n          [-79.185613, 37.237268],\n          [-79.185642, 37.237403],\n          [-79.185719, 37.237706],\n          [-79.185791, 37.237965],\n          [-79.185811, 37.238037],\n          [-79.185899, 37.238345],\n          [-79.185952, 37.238527],\n          [-79.18597, 37.23859],\n          [-79.186042, 37.238834],\n          [-79.186525, 37.240494],\n          [-79.186638, 37.240882],\n          [-79.186786, 37.241392],\n          [-79.186995, 37.242108],\n          [-79.187061, 37.242336],\n          [-79.187075, 37.242384],\n          [-79.187298, 37.243149],\n          [-79.187378, 37.243422],\n          [-79.187527, 37.243936],\n          [-79.187774, 37.244774],\n          [-79.187853, 37.245008],\n          [-79.187949, 37.245331],\n          [-79.187975, 37.245426],\n          [-79.18809, 37.245933],\n          [-79.188158, 37.246339],\n          [-79.188193, 37.246639],\n          [-79.188214, 37.246935],\n          [-79.188219, 37.247189],\n          [-79.188219, 37.247284],\n          [-79.188204, 37.247624],\n          [-79.188173, 37.24795],\n          [-79.188121, 37.248287],\n          [-79.188078, 37.248502],\n          [-79.188012, 37.248777],\n          [-79.187964, 37.248948],\n          [-79.18752, 37.250322],\n          [-79.187502, 37.250377],\n          [-79.187461, 37.250489],\n          [-79.187101, 37.251604],\n          [-79.186977, 37.251986],\n          [-79.186803, 37.252487],\n          [-79.186647, 37.252862],\n          [-79.186473, 37.253233],\n          [-79.1864, 37.253375],\n          [-79.186369, 37.253435],\n          [-79.186196, 37.253727],\n          [-79.186096, 37.253883],\n          [-79.185846, 37.254253],\n          [-79.185619, 37.254587],\n          [-79.184816, 37.255765],\n          [-79.184332, 37.256471],\n          [-79.184251, 37.256583],\n          [-79.183919, 37.257073],\n          [-79.183282, 37.258009],\n          [-79.183273, 37.258023],\n          [-79.182658, 37.258928],\n          [-79.182428, 37.259266],\n          [-79.182236, 37.259548],\n          [-79.182189, 37.259617],\n          [-79.181677, 37.260371],\n          [-79.180889, 37.261527],\n          [-79.180329, 37.262346],\n          [-79.179966, 37.262877],\n          [-79.178561, 37.264935],\n          [-79.177834, 37.265998],\n          [-79.17762, 37.266312],\n          [-79.177577, 37.266375],\n          [-79.177344, 37.266717],\n          [-79.177268, 37.266828],\n          [-79.175738, 37.269066],\n          [-79.175293, 37.269718],\n          [-79.175059, 37.270062],\n          [-79.175024, 37.270113],\n          [-79.174746, 37.27052],\n          [-79.174499, 37.270885],\n          [-79.174225, 37.271286],\n          [-79.17318, 37.27282],\n          [-79.172596, 37.273676],\n          [-79.172062, 37.274457],\n          [-79.17205, 37.274476],\n          [-79.171892, 37.274707],\n          [-79.171746, 37.274919],\n          [-79.170612, 37.276581],\n          [-79.170091, 37.277344],\n          [-79.170074, 37.277368],\n          [-79.169014, 37.27887],\n          [-79.168768, 37.279279],\n          [-79.168446, 37.279751],\n          [-79.168095, 37.28026],\n          [-79.167791, 37.280704],\n          [-79.167004, 37.281854],\n          [-79.166839, 37.282126],\n          [-79.166686, 37.282417],\n          [-79.166553, 37.282715],\n          [-79.166455, 37.282978],\n          [-79.166365, 37.283271],\n          [-79.166331, 37.283406],\n          [-79.166277, 37.283662],\n          [-79.166236, 37.283934],\n          [-79.166211, 37.284233],\n          [-79.166208, 37.284331],\n          [-79.16621, 37.284606],\n          [-79.166232, 37.284894],\n          [-79.166273, 37.28518],\n          [-79.166341, 37.285491],\n          [-79.166394, 37.28568],\n          [-79.166419, 37.28576],\n          [-79.16653, 37.286061],\n          [-79.16656, 37.286133],\n          [-79.166601, 37.286228],\n          [-79.167073, 37.287187],\n          [-79.167342, 37.287727],\n          [-79.167647, 37.288335],\n          [-79.167961, 37.288961],\n          [-79.168213, 37.289466],\n          [-79.168669, 37.290363],\n          [-79.169252, 37.291516],\n          [-79.169707, 37.292425],\n          [-79.170019, 37.293049],\n          [-79.170164, 37.293337],\n          [-79.170762, 37.294525],\n          [-79.171017, 37.295032],\n          [-79.171197, 37.29539],\n          [-79.171228, 37.295451],\n          [-79.171707, 37.296402],\n          [-79.171854, 37.296694],\n          [-79.172057, 37.297099],\n          [-79.172329, 37.297639],\n          [-79.172756, 37.298485],\n          [-79.172921, 37.29877],\n          [-79.173118, 37.299071],\n          [-79.173326, 37.299351],\n          [-79.1734, 37.299443],\n          [-79.173711, 37.299824],\n          [-79.174643, 37.300928],\n          [-79.177789, 37.304649],\n          [-79.17841, 37.305383],\n          [-79.179563, 37.306751],\n          [-79.18128, 37.308787],\n          [-79.181492, 37.309036],\n          [-79.181949, 37.309573],\n          [-79.182599, 37.310336],\n          [-79.183198, 37.311046],\n          [-79.183775, 37.311729],\n          [-79.183964, 37.311947],\n          [-79.18428, 37.312314],\n          [-79.18536, 37.313557],\n          [-79.18553, 37.313753],\n          [-79.18588, 37.314159],\n          [-79.186286, 37.314624],\n          [-79.186592, 37.314975],\n          [-79.186893, 37.31532],\n          [-79.187155, 37.315623],\n          [-79.187287, 37.315796],\n          [-79.187433, 37.315958],\n          [-79.187603, 37.316193],\n          [-79.187705, 37.316348],\n          [-79.187781, 37.316469],\n          [-79.187895, 37.316666],\n          [-79.188063, 37.316995],\n          [-79.188211, 37.31734],\n          [-79.188267, 37.317488],\n          [-79.188574, 37.31828],\n          [-79.18873, 37.318682],\n          [-79.188773, 37.318793],\n          [-79.188818, 37.318907],\n          [-79.188983, 37.319332],\n          [-79.189167, 37.319817],\n          [-79.18919, 37.319881],\n          [-79.189276, 37.320122],\n          [-79.189293, 37.320183],\n          [-79.189372, 37.320484],\n          [-79.189407, 37.320635],\n          [-79.189445, 37.320825],\n          [-79.189477, 37.321015],\n          [-79.189492, 37.321115],\n          [-79.189533, 37.321458],\n          [-79.189536, 37.321492],\n          [-79.189586, 37.322119],\n          [-79.189602, 37.322319],\n          [-79.189637, 37.32275],\n          [-79.189647, 37.322876],\n          [-79.189704, 37.323523],\n          [-79.189737, 37.323892],\n          [-79.189747, 37.323997],\n          [-79.189761, 37.324147],\n          [-79.189781, 37.324375],\n          [-79.189798, 37.324545],\n          [-79.189823, 37.324722],\n          [-79.189861, 37.324935],\n          [-79.189896, 37.325095],\n          [-79.189922, 37.3252],\n          [-79.190034, 37.325593],\n          [-79.190115, 37.325884],\n          [-79.190279, 37.326471],\n          [-79.190558, 37.327468],\n          [-79.190626, 37.327737],\n          [-79.190656, 37.327855],\n          [-79.190719, 37.328102],\n          [-79.190893, 37.328783],\n          [-79.19093, 37.328914],\n          [-79.19114, 37.329665],\n          [-79.191197, 37.329849],\n          [-79.191289, 37.330174],\n          [-79.191411, 37.330604],\n          [-79.191427, 37.330662],\n          [-79.191549, 37.331144],\n          [-79.191612, 37.331407],\n          [-79.191674, 37.33166],\n          [-79.191713, 37.331945],\n          [-79.191731, 37.332216],\n          [-79.191727, 37.3324],\n          [-79.191718, 37.332618],\n          [-79.191688, 37.333114],\n          [-79.191671, 37.333265],\n          [-79.191652, 37.333506],\n          [-79.191625, 37.33369],\n          [-79.191591, 37.333978],\n          [-79.191586, 37.334109],\n          [-79.191605, 37.334336],\n          [-79.19161, 37.334672],\n          [-79.191612, 37.334771],\n          [-79.191619, 37.335165],\n          [-79.191615, 37.335425],\n          [-79.191612, 37.335464],\n          [-79.191591, 37.335798],\n          [-79.191573, 37.33597],\n          [-79.19153, 37.336198],\n          [-79.191511, 37.3363],\n          [-79.191476, 37.336481],\n          [-79.191396, 37.336901],\n          [-79.191254, 37.33724],\n          [-79.191108, 37.337564],\n          [-79.190891, 37.337852],\n          [-79.190707, 37.338004],\n          [-79.190446, 37.338136],\n          [-79.190159, 37.338232],\n          [-79.189809, 37.338303],\n          [-79.189504, 37.338343],\n          [-79.189039, 37.338414],\n          [-79.188663, 37.33847],\n          [-79.188351, 37.338526],\n          [-79.18802, 37.338571],\n          [-79.18767, 37.338617],\n          [-79.187276, 37.338677],\n          [-79.18683, 37.338758],\n          [-79.186448, 37.338854],\n          [-79.186232, 37.338986],\n          [-79.186034, 37.339158],\n          [-79.185913, 37.339381],\n          [-79.185862, 37.339654],\n          [-79.185792, 37.339958],\n          [-79.185735, 37.340246],\n          [-79.185608, 37.340565],\n          [-79.185474, 37.340849],\n          [-79.185264, 37.341152],\n          [-79.185009, 37.341421],\n          [-79.184748, 37.341658],\n          [-79.184399, 37.341989],\n          [-79.184093, 37.342254],\n          [-79.183658, 37.342682],\n          [-79.18294, 37.343536],\n          [-79.182113, 37.344505],\n          [-79.181077, 37.345699],\n          [-79.180004, 37.346871],\n          [-79.178729, 37.348196],\n          [-79.177389, 37.349407],\n          [-79.177129, 37.349621],\n          [-79.176626, 37.350036],\n          [-79.173129, 37.353092],\n          [-79.169752, 37.356318],\n          [-79.169186, 37.356859],\n          [-79.166439, 37.359647],\n          [-79.165165, 37.360856],\n          [-79.164528, 37.361444],\n          [-79.163946, 37.361878],\n          [-79.162943, 37.362614],\n          [-79.161891, 37.363349],\n          [-79.159885, 37.364693],\n          [-79.158866, 37.365389],\n          [-79.157915, 37.36609],\n          [-79.156262, 37.367299],\n          [-79.153378, 37.36939],\n          [-79.1513, 37.370777],\n          [-79.148798, 37.372337],\n          [-79.146813, 37.373529],\n          [-79.146135, 37.37394],\n          [-79.145298, 37.374385],\n          [-79.144399, 37.374808],\n          [-79.143032, 37.375351],\n          [-79.142887, 37.375396],\n          [-79.141407, 37.375861],\n          [-79.13952, 37.376309],\n          [-79.137442, 37.376753],\n          [-79.136385, 37.376976],\n          [-79.135221, 37.37722],\n          [-79.134065, 37.377456],\n          [-79.132756, 37.377733],\n          [-79.131505, 37.377997],\n          [-79.130701, 37.378165],\n          [-79.129655, 37.378385],\n          [-79.128812, 37.378561],\n          [-79.127809, 37.378776],\n          [-79.127166, 37.378891],\n          [-79.124907, 37.379433],\n          [-79.122351, 37.380007],\n          [-79.119924, 37.380555],\n          [-79.118369, 37.380958],\n          [-79.116892, 37.381492],\n          [-79.11429, 37.382508],\n          [-79.111589, 37.383564],\n          [-79.110432, 37.384015],\n          [-79.108723, 37.384663],\n          [-79.107004, 37.385341],\n          [-79.10533, 37.38597],\n          [-79.10529, 37.385969],\n          [-79.104874, 37.386095],\n          [-79.104406, 37.386191],\n          [-79.103958, 37.38624],\n          [-79.103328, 37.386271],\n          [-79.101681, 37.386155],\n          [-79.101144, 37.386117],\n          [-79.100418, 37.386038],\n          [-79.097991, 37.385843],\n          [-79.09636, 37.385744],\n          [-79.095982, 37.385658],\n          [-79.095845, 37.385614],\n          [-79.09571, 37.385555],\n          [-79.095567, 37.38548],\n          [-79.095427, 37.38539],\n          [-79.095308, 37.385296],\n          [-79.09517, 37.385161],\n          [-79.09509, 37.385054],\n          [-79.094998, 37.384905],\n          [-79.094916, 37.384737],\n          [-79.094844, 37.384528],\n          [-79.094656, 37.383845],\n          [-79.094531, 37.38345],\n          [-79.094325, 37.383054],\n          [-79.094038, 37.38276],\n          [-79.093621, 37.382467],\n          [-79.093187, 37.382294],\n          [-79.092689, 37.382201],\n          [-79.092284, 37.382201],\n          [-79.091903, 37.382257],\n          [-79.091551, 37.382364],\n          [-79.091187, 37.382541],\n          [-79.090959, 37.382723],\n          [-79.090789, 37.382882],\n          [-79.090589, 37.383115],\n          [-79.090443, 37.383376],\n          [-79.090284, 37.383744],\n          [-79.090225, 37.384],\n          [-79.090179, 37.384541],\n          [-79.090062, 37.385779],\n          [-79.089925, 37.386644],\n          [-79.089849, 37.387226],\n          [-79.089779, 37.387541],\n          [-79.089689, 37.387836],\n          [-79.0895, 37.38838],\n          [-79.089436, 37.388633],\n          [-79.089405, 37.388841],\n          [-79.089289, 37.389685],\n          [-79.089161, 37.39093],\n          [-79.089008, 37.392008],\n          [-79.08881, 37.394069],\n          [-79.088768, 37.394579],\n          [-79.088645, 37.395885],\n          [-79.088477, 37.397207],\n          [-79.087956, 37.401181],\n          [-79.087825, 37.401823],\n          [-79.087665, 37.402308],\n          [-79.087554, 37.402629],\n          [-79.08736, 37.403142],\n          [-79.087142, 37.403562],\n          [-79.086923, 37.403937],\n          [-79.086762, 37.404195],\n          [-79.086439, 37.404708],\n          [-79.086251, 37.405002],\n          [-79.085982, 37.405393],\n          [-79.085647, 37.405896],\n          [-79.085037, 37.406824],\n          [-79.084691, 37.407346],\n          [-79.084239, 37.407998],\n          [-79.084081, 37.408208],\n          [-79.083969, 37.408376],\n          [-79.083852, 37.408534],\n          [-79.083752, 37.408705],\n          [-79.083641, 37.408893],\n          [-79.08253, 37.41059],\n          [-79.082107, 37.41155],\n          [-79.081937, 37.412163],\n          [-79.081833, 37.412538],\n          [-79.081757, 37.413176],\n          [-79.08171, 37.413903],\n          [-79.081751, 37.414774],\n          [-79.081781, 37.415758],\n          [-79.081777, 37.417393],\n          [-79.081646, 37.41901],\n          [-79.081485, 37.420256],\n          [-79.081292, 37.421219],\n          [-79.081057, 37.422257],\n          [-79.080513, 37.424117],\n          [-79.07951, 37.427155],\n          [-79.078061, 37.431195],\n          [-79.077269, 37.433524],\n          [-79.076993, 37.434391],\n          [-79.076647, 37.435495],\n          [-79.076395, 37.436608],\n          [-79.076304, 37.437254],\n          [-79.076229, 37.438019],\n          [-79.076213, 37.439312],\n          [-79.076213, 37.439413],\n          [-79.076155, 37.442774],\n          [-79.07614, 37.443179],\n          [-79.076116, 37.443841],\n          [-79.076046, 37.446058],\n          [-79.075976, 37.449173],\n          [-79.076002, 37.451689],\n          [-79.076065, 37.4523],\n          [-79.076262, 37.453],\n          [-79.076579, 37.453683],\n          [-79.076982, 37.454312],\n          [-79.077536, 37.45501],\n          [-79.079739, 37.457229],\n          [-79.080689, 37.458217],\n          [-79.081531, 37.459252],\n          [-79.082085, 37.460038],\n          [-79.082441, 37.460738],\n          [-79.082708, 37.461304],\n          [-79.082968, 37.461981],\n          [-79.083137, 37.462694],\n          [-79.083265, 37.463513],\n          [-79.083293, 37.464338],\n          [-79.083287, 37.464745],\n          [-79.083277, 37.465166],\n          [-79.083236, 37.465743],\n          [-79.083136, 37.466259],\n          [-79.082678, 37.468029],\n          [-79.082438, 37.469156],\n          [-79.08215, 37.470371],\n          [-79.081963, 37.471033],\n          [-79.081827, 37.471415],\n          [-79.081408, 37.472342],\n          [-79.081005, 37.47309],\n          [-79.080296, 37.474045],\n          [-79.079641, 37.474751],\n          [-79.078249, 37.476094],\n          [-79.077451, 37.477058],\n          [-79.076776, 37.477863],\n          [-79.076213, 37.478711],\n          [-79.075638, 37.479763],\n          [-79.075274, 37.480624],\n          [-79.074869, 37.481821],\n          [-79.074675, 37.482594],\n          [-79.074634, 37.482892],\n          [-79.074593, 37.483204],\n          [-79.07457, 37.483627],\n          [-79.074448, 37.484732],\n          [-79.074331, 37.485753],\n          [-79.074167, 37.486518],\n          [-79.073888, 37.487326],\n          [-79.073467, 37.488074],\n          [-79.07305, 37.488846],\n          [-79.072616, 37.489619],\n          [-79.072018, 37.490699],\n          [-79.07163, 37.49136],\n          [-79.070791, 37.492896],\n          [-79.070146, 37.494186],\n          [-79.06953, 37.495438],\n          [-79.068703, 37.497026],\n          [-79.067817, 37.498799],\n          [-79.067177, 37.500098],\n          [-79.066497, 37.501471],\n          [-79.066168, 37.502341],\n          [-79.065974, 37.503063],\n          [-79.065895, 37.503746],\n          [-79.065857, 37.504329],\n          [-79.065851, 37.505804],\n          [-79.065851, 37.506847],\n          [-79.065828, 37.508187],\n          [-79.065831, 37.509824],\n          [-79.0658, 37.510657],\n          [-79.065769, 37.511273],\n          [-79.065628, 37.51191],\n          [-79.065455, 37.512506],\n          [-79.065165, 37.513111],\n          [-79.064807, 37.513823],\n          [-79.064426, 37.514512],\n          [-79.063986, 37.515424],\n          [-79.063804, 37.515903],\n          [-79.063545, 37.516788],\n          [-79.063328, 37.51796],\n          [-79.063264, 37.519296],\n          [-79.063311, 37.520208],\n          [-79.063487, 37.521209],\n          [-79.063645, 37.522214],\n          [-79.063845, 37.523275],\n          [-79.06425, 37.525364],\n          [-79.064871, 37.528602],\n          [-79.065376, 37.531264],\n          [-79.066057, 37.534819],\n          [-79.066725, 37.538252],\n          [-79.0674, 37.541904],\n          [-79.06794, 37.544546],\n          [-79.068021, 37.545221],\n          [-79.068093, 37.545891],\n          [-79.068075, 37.546616],\n          [-79.067977, 37.547323],\n          [-79.067805, 37.547989],\n          [-79.06729, 37.549617],\n          [-79.066508, 37.552189],\n          [-79.066203, 37.55312],\n          [-79.065916, 37.554199],\n          [-79.06571, 37.554864],\n          [-79.065358, 37.555901],\n          [-79.06462, 37.558162],\n          [-79.064236, 37.559374],\n          [-79.064086, 37.559848],\n          [-79.063835, 37.560896],\n          [-79.063609, 37.561383],\n          [-79.063256, 37.561986],\n          [-79.062896, 37.562503],\n          [-79.062134, 37.563345],\n          [-79.061625, 37.563753],\n          [-79.06094, 37.564213],\n          [-79.058641, 37.565583],\n          [-79.05758, 37.566208],\n          [-79.056639, 37.566768],\n          [-79.055935, 37.567192],\n          [-79.055742, 37.567302],\n          [-79.055553, 37.567416],\n          [-79.055246, 37.567615],\n          [-79.054927, 37.567838],\n          [-79.054748, 37.567977],\n          [-79.054525, 37.568169],\n          [-79.05429, 37.568391],\n          [-79.054239, 37.568442],\n          [-79.054034, 37.568657],\n          [-79.053873, 37.56885],\n          [-79.053657, 37.569143],\n          [-79.053524, 37.569347],\n          [-79.053368, 37.569618],\n          [-79.053228, 37.569894],\n          [-79.053172, 37.570026],\n          [-79.053043, 37.570358],\n          [-79.05286, 37.57095],\n          [-79.052677, 37.571527],\n          [-79.052485, 37.572133],\n          [-79.052132, 37.573261],\n          [-79.051632, 37.57486],\n          [-79.051348, 37.57574],\n          [-79.051123, 37.576286],\n          [-79.051087, 37.576361],\n          [-79.050788, 37.576916],\n          [-79.050662, 37.577116],\n          [-79.050472, 37.577395],\n          [-79.050278, 37.577652],\n          [-79.050057, 37.577924],\n          [-79.049759, 37.578262],\n          [-79.049412, 37.578608],\n          [-79.049047, 37.578931],\n          [-79.047001, 37.580602],\n          [-79.046515, 37.580994],\n          [-79.046166, 37.58126],\n          [-79.045909, 37.581455],\n          [-79.04561, 37.58167],\n          [-79.045264, 37.581887],\n          [-79.044961, 37.582077],\n          [-79.044149, 37.582573],\n          [-79.04353, 37.582927],\n          [-79.04291, 37.58327],\n          [-79.042129, 37.58371],\n          [-79.041873, 37.583864],\n          [-79.041806, 37.58391],\n          [-79.041621, 37.584017],\n          [-79.041414, 37.584155],\n          [-79.041178, 37.58431],\n          [-79.040635, 37.584689],\n          [-79.039894, 37.585255],\n          [-79.039608, 37.585491],\n          [-79.03912, 37.585904],\n          [-79.038845, 37.586155],\n          [-79.038474, 37.586513],\n          [-79.03781, 37.587198],\n          [-79.037358, 37.587719],\n          [-79.037086, 37.588056],\n          [-79.036877, 37.588331],\n          [-79.036498, 37.588836],\n          [-79.036258, 37.589205],\n          [-79.035926, 37.589739],\n          [-79.034645, 37.591992],\n          [-79.034482, 37.592286],\n          [-79.034097, 37.592957],\n          [-79.033913, 37.593255],\n          [-79.033669, 37.593669],\n          [-79.033006, 37.594819],\n          [-79.032654, 37.595452],\n          [-79.032044, 37.596522],\n          [-79.031678, 37.597159],\n          [-79.031353, 37.597735],\n          [-79.03004, 37.600074],\n          [-79.029644, 37.600763],\n          [-79.028963, 37.601951],\n          [-79.028685, 37.602397],\n          [-79.02851, 37.602662],\n          [-79.028221, 37.603043],\n          [-79.027978, 37.603341],\n          [-79.027692, 37.60368],\n          [-79.027548, 37.60383],\n          [-79.027306, 37.604072],\n          [-79.027105, 37.604269],\n          [-79.02697, 37.604392],\n          [-79.026652, 37.60468],\n          [-79.026083, 37.605207],\n          [-79.026036, 37.60525],\n          [-79.025989, 37.605294],\n          [-79.025872, 37.605402],\n          [-79.02555, 37.605685],\n          [-79.025303, 37.605893],\n          [-79.025239, 37.605951],\n          [-79.025075, 37.606102],\n          [-79.024795, 37.606358],\n          [-79.024408, 37.606702],\n          [-79.024072, 37.607013],\n          [-79.024053, 37.607031],\n          [-79.023787, 37.607264],\n          [-79.023498, 37.607516],\n          [-79.023027, 37.607911],\n          [-79.022811, 37.60807],\n          [-79.022583, 37.608218],\n          [-79.022393, 37.608329],\n          [-79.022103, 37.608478],\n          [-79.021864, 37.608585],\n          [-79.021424, 37.608752],\n          [-79.020855, 37.608965],\n          [-79.020271, 37.609195],\n          [-79.020171, 37.609236],\n          [-79.019921, 37.609348],\n          [-79.019569, 37.609526],\n          [-79.019341, 37.609661],\n          [-79.019134, 37.609801],\n          [-79.018938, 37.609951],\n          [-79.018736, 37.61013],\n          [-79.018557, 37.610318],\n          [-79.018408, 37.6105],\n          [-79.018273, 37.610689],\n          [-79.018177, 37.610845],\n          [-79.018077, 37.611005],\n          [-79.017942, 37.61127],\n          [-79.01775, 37.611733],\n          [-79.017583, 37.612195],\n          [-79.017453, 37.612536],\n          [-79.01736, 37.612779],\n          [-79.017077, 37.613518],\n          [-79.016316, 37.615651],\n          [-79.016211, 37.615921],\n          [-79.015957, 37.616661],\n          [-79.015442, 37.618041],\n          [-79.015171, 37.618767],\n          [-79.015044, 37.619085],\n          [-79.014896, 37.619401],\n          [-79.014725, 37.619699],\n          [-79.014609, 37.619891],\n          [-79.014507, 37.620046],\n          [-79.014326, 37.620291],\n          [-79.014076, 37.620611],\n          [-79.013882, 37.620808],\n          [-79.013583, 37.621079],\n          [-79.012998, 37.621504],\n          [-79.01238, 37.621893],\n          [-79.010646, 37.622959],\n          [-79.01003, 37.623323],\n          [-79.009112, 37.623886],\n          [-79.007841, 37.62468],\n          [-79.007669, 37.624786],\n          [-79.00613, 37.625753],\n          [-79.00574, 37.625992],\n          [-79.004933, 37.626484],\n          [-79.004251, 37.626912],\n          [-79.004139, 37.626981],\n          [-79.003154, 37.627592],\n          [-79.001641, 37.628516],\n          [-79.001111, 37.628835],\n          [-79.00072, 37.62907],\n          [-79.000623, 37.62914],\n          [-79.000217, 37.629394],\n          [-78.998912, 37.630202],\n          [-78.998196, 37.630645],\n          [-78.997598, 37.631025],\n          [-78.997526, 37.631071],\n          [-78.997241, 37.631274],\n          [-78.996875, 37.631534],\n          [-78.996217, 37.63205],\n          [-78.995656, 37.632525],\n          [-78.995017, 37.633129],\n          [-78.994464, 37.633668],\n          [-78.993794, 37.634338],\n          [-78.992582, 37.635539],\n          [-78.99241, 37.635715],\n          [-78.992112, 37.636],\n          [-78.991971, 37.636127],\n          [-78.991598, 37.636454],\n          [-78.991319, 37.636676],\n          [-78.991111, 37.636827],\n          [-78.990724, 37.637089],\n          [-78.990344, 37.637324],\n          [-78.989967, 37.637537],\n          [-78.989578, 37.637737],\n          [-78.988855, 37.638052],\n          [-78.98807, 37.638382],\n          [-78.986736, 37.63892],\n          [-78.986454, 37.639034],\n          [-78.985803, 37.639316],\n          [-78.984897, 37.639687],\n          [-78.98388, 37.640096],\n          [-78.983117, 37.640414],\n          [-78.982726, 37.640573],\n          [-78.981774, 37.640959],\n          [-78.979687, 37.64182],\n          [-78.978231, 37.642417],\n          [-78.977005, 37.64291],\n          [-78.97646, 37.643116],\n          [-78.975777, 37.643333],\n          [-78.975711, 37.643354],\n          [-78.97542, 37.643425],\n          [-78.974834, 37.643551],\n          [-78.974604, 37.64359],\n          [-78.974067, 37.643681],\n          [-78.973393, 37.643752],\n          [-78.972559, 37.643813],\n          [-78.972242, 37.643839],\n          [-78.970006, 37.64399],\n          [-78.96903, 37.64406],\n          [-78.968589, 37.644095],\n          [-78.968224, 37.644136],\n          [-78.967889, 37.644182],\n          [-78.967664, 37.644226],\n          [-78.967387, 37.644293],\n          [-78.967224, 37.644341],\n          [-78.966957, 37.64443],\n          [-78.966688, 37.644536],\n          [-78.966474, 37.644631],\n          [-78.966164, 37.644789],\n          [-78.965983, 37.644902],\n          [-78.965692, 37.645098],\n          [-78.965428, 37.645294],\n          [-78.965238, 37.645456],\n          [-78.965063, 37.645628],\n          [-78.964898, 37.645816],\n          [-78.964762, 37.645992],\n          [-78.964605, 37.646219],\n          [-78.964465, 37.646453],\n          [-78.964354, 37.646672],\n          [-78.96426, 37.646896],\n          [-78.964184, 37.647124],\n          [-78.964105, 37.647472],\n          [-78.964045, 37.647822],\n          [-78.963795, 37.650137],\n          [-78.963771, 37.650446],\n          [-78.963726, 37.650831],\n          [-78.963699, 37.651104],\n          [-78.963637, 37.651545],\n          [-78.963559, 37.651968],\n          [-78.963475, 37.652244],\n          [-78.963403, 37.652439],\n          [-78.963343, 37.65259],\n          [-78.963259, 37.652771],\n          [-78.963211, 37.652855],\n          [-78.963159, 37.652948],\n          [-78.963044, 37.653119],\n          [-78.962876, 37.65334],\n          [-78.962692, 37.653554],\n          [-78.961989, 37.654258],\n          [-78.961507, 37.654728],\n          [-78.961039, 37.655181],\n          [-78.960337, 37.655875],\n          [-78.96023, 37.655972],\n          [-78.960126, 37.656071],\n          [-78.959777, 37.656385],\n          [-78.959596, 37.656559],\n          [-78.959428, 37.656733],\n          [-78.95894, 37.657212],\n          [-78.958347, 37.65781],\n          [-78.957955, 37.658265],\n          [-78.957902, 37.65834],\n          [-78.957703, 37.658582],\n          [-78.956957, 37.659613],\n          [-78.956, 37.660952],\n          [-78.95555, 37.661601],\n          [-78.95521, 37.662149],\n          [-78.955078, 37.662367],\n          [-78.954742, 37.662988],\n          [-78.954584, 37.663297],\n          [-78.954305, 37.663917],\n          [-78.954148, 37.6643],\n          [-78.953981, 37.664751],\n          [-78.953842, 37.665162],\n          [-78.953791, 37.665348],\n          [-78.953693, 37.665702],\n          [-78.953658, 37.665836],\n          [-78.953519, 37.666441],\n          [-78.953449, 37.666806],\n          [-78.953407, 37.667104],\n          [-78.953324, 37.667763],\n          [-78.953292, 37.668183],\n          [-78.953221, 37.669156],\n          [-78.953153, 37.670098],\n          [-78.953142, 37.670264],\n          [-78.953141, 37.6704],\n          [-78.953072, 37.671177],\n          [-78.95304, 37.671615],\n          [-78.952995, 37.672174],\n          [-78.952947, 37.672942],\n          [-78.95292, 37.673225],\n          [-78.952878, 37.673819],\n          [-78.952829, 37.674339],\n          [-78.952797, 37.674686],\n          [-78.952784, 37.674804],\n          [-78.952747, 37.675024],\n          [-78.952692, 37.675301],\n          [-78.952624, 37.675578],\n          [-78.952561, 37.675784],\n          [-78.952486, 37.675985],\n          [-78.952442, 37.676122],\n          [-78.952386, 37.676257],\n          [-78.95232, 37.676433],\n          [-78.952115, 37.676852],\n          [-78.952045, 37.676981],\n          [-78.951895, 37.677259],\n          [-78.951765, 37.677478],\n          [-78.951015, 37.678688],\n          [-78.950642, 37.679294],\n          [-78.950106, 37.680167],\n          [-78.949932, 37.680439],\n          [-78.949555, 37.681057],\n          [-78.948514, 37.682749],\n          [-78.948346, 37.683014],\n          [-78.94819, 37.68327],\n          [-78.947933, 37.683687],\n          [-78.947735, 37.683997],\n          [-78.946949, 37.685284],\n          [-78.946763, 37.685577],\n          [-78.946171, 37.686544],\n          [-78.946077, 37.686718],\n          [-78.945972, 37.686928],\n          [-78.945848, 37.687201],\n          [-78.945794, 37.687349],\n          [-78.945689, 37.687661],\n          [-78.945632, 37.687901],\n          [-78.945568, 37.688266],\n          [-78.945541, 37.688542],\n          [-78.945537, 37.688659],\n          [-78.945545, 37.689126],\n          [-78.945579, 37.689434],\n          [-78.945664, 37.689907],\n          [-78.945683, 37.68999],\n          [-78.945776, 37.690456],\n          [-78.945835, 37.69071],\n          [-78.945961, 37.691323],\n          [-78.946182, 37.69241],\n          [-78.946237, 37.692788],\n          [-78.946274, 37.693085],\n          [-78.946296, 37.693491],\n          [-78.946303, 37.694022],\n          [-78.946301, 37.694057],\n          [-78.946287, 37.694387],\n          [-78.946261, 37.694709],\n          [-78.946249, 37.694805],\n          [-78.946182, 37.695293],\n          [-78.946055, 37.695876],\n          [-78.945864, 37.696567],\n          [-78.945405, 37.698162],\n          [-78.945298, 37.698548],\n          [-78.944826, 37.700186],\n          [-78.944719, 37.700501],\n          [-78.94458, 37.700835],\n          [-78.944457, 37.701074],\n          [-78.944324, 37.701307],\n          [-78.944135, 37.701595],\n          [-78.944026, 37.701738],\n          [-78.943778, 37.70202],\n          [-78.943504, 37.702305],\n          [-78.943214, 37.702564],\n          [-78.94302, 37.702719],\n          [-78.942935, 37.702779],\n          [-78.942809, 37.702868],\n          [-78.942485, 37.703077],\n          [-78.942218, 37.703232],\n          [-78.9405, 37.704132],\n          [-78.940455, 37.704155],\n          [-78.940006, 37.704381],\n          [-78.938227, 37.705302],\n          [-78.93698, 37.705948],\n          [-78.93647, 37.706225],\n          [-78.93488, 37.707122],\n          [-78.934646, 37.707256],\n          [-78.93388, 37.707679],\n          [-78.933448, 37.707924],\n          [-78.932774, 37.708305],\n          [-78.931107, 37.709235],\n          [-78.929365, 37.710215],\n          [-78.928987, 37.710423],\n          [-78.928188, 37.710873],\n          [-78.927848, 37.711058],\n          [-78.927739, 37.711117],\n          [-78.927286, 37.71134],\n          [-78.927035, 37.711449],\n          [-78.926705, 37.711572],\n          [-78.926357, 37.711684],\n          [-78.926015, 37.711773],\n          [-78.925764, 37.711831],\n          [-78.925742, 37.711836],\n          [-78.925395, 37.711899],\n          [-78.925098, 37.711943],\n          [-78.92463, 37.712006],\n          [-78.924358, 37.71204],\n          [-78.9241, 37.712072],\n          [-78.923317, 37.712168],\n          [-78.922673, 37.712257],\n          [-78.921644, 37.712386],\n          [-78.920771, 37.712503],\n          [-78.91879, 37.712755],\n          [-78.917763, 37.712894],\n          [-78.916758, 37.713029],\n          [-78.916316, 37.713107],\n          [-78.915891, 37.713204],\n          [-78.915614, 37.71328],\n          [-78.915324, 37.713372],\n          [-78.915274, 37.713388],\n          [-78.914912, 37.71352],\n          [-78.91455, 37.71367],\n          [-78.914179, 37.713842],\n          [-78.913675, 37.714085],\n          [-78.912967, 37.714415],\n          [-78.910226, 37.715714],\n          [-78.90939, 37.716116],\n          [-78.908844, 37.716378],\n          [-78.908565, 37.716525],\n          [-78.908344, 37.716654],\n          [-78.908223, 37.716733],\n          [-78.907898, 37.716972],\n          [-78.907709, 37.71712],\n          [-78.907284, 37.717479],\n          [-78.905705, 37.718784],\n          [-78.905314, 37.719084],\n          [-78.90491, 37.719372],\n          [-78.904525, 37.719604],\n          [-78.904033, 37.719882],\n          [-78.903337, 37.720265],\n          [-78.902528, 37.720722],\n          [-78.902455, 37.720766],\n          [-78.902055, 37.720998],\n          [-78.901704, 37.721237],\n          [-78.901372, 37.721492],\n          [-78.901207, 37.721632],\n          [-78.901102, 37.721732],\n          [-78.90093, 37.721897],\n          [-78.900791, 37.722043],\n          [-78.900736, 37.722103],\n          [-78.900601, 37.722261],\n          [-78.900394, 37.722523],\n          [-78.900222, 37.722764],\n          [-78.900079, 37.722992],\n          [-78.900004, 37.723131],\n          [-78.899716, 37.723665],\n          [-78.899467, 37.724145],\n          [-78.899406, 37.724274],\n          [-78.89922, 37.72461],\n          [-78.899008, 37.725016],\n          [-78.898838, 37.725322],\n          [-78.898749, 37.725462],\n          [-78.898619, 37.725684],\n          [-78.898501, 37.725886],\n          [-78.898424, 37.726009],\n          [-78.898396, 37.726054],\n          [-78.89823, 37.726333],\n          [-78.897785, 37.72702],\n          [-78.897326, 37.727687],\n          [-78.897029, 37.728104],\n          [-78.896755, 37.72847],\n          [-78.896087, 37.729327],\n          [-78.895376, 37.730223],\n          [-78.89492, 37.73078],\n          [-78.894224, 37.731648],\n          [-78.893951, 37.731982],\n          [-78.893208, 37.732922],\n          [-78.893101, 37.733073],\n          [-78.892951, 37.733284],\n          [-78.892829, 37.733486],\n          [-78.892725, 37.733694],\n          [-78.892653, 37.733852],\n          [-78.892395, 37.734583],\n          [-78.892264, 37.735006],\n          [-78.891874, 37.73617],\n          [-78.891809, 37.736394],\n          [-78.891615, 37.736972],\n          [-78.891508, 37.737307],\n          [-78.891316, 37.737819],\n          [-78.891154, 37.738191],\n          [-78.891075, 37.738356],\n          [-78.891011, 37.738485],\n          [-78.890701, 37.739024],\n          [-78.890539, 37.739262],\n          [-78.890353, 37.739521],\n          [-78.890119, 37.739847],\n          [-78.889796, 37.740253],\n          [-78.889491, 37.740645],\n          [-78.889217, 37.740996],\n          [-78.888944, 37.74133],\n          [-78.888623, 37.741743],\n          [-78.888513, 37.741886],\n          [-78.888267, 37.742188],\n          [-78.887876, 37.742653],\n          [-78.887675, 37.74287],\n          [-78.887504, 37.743037],\n          [-78.887277, 37.743237],\n          [-78.887216, 37.743287],\n          [-78.887135, 37.743353],\n          [-78.886534, 37.743824],\n          [-78.886162, 37.744125],\n          [-78.8861, 37.744182],\n          [-78.885899, 37.744355],\n          [-78.885622, 37.744575],\n          [-78.885356, 37.74478],\n          [-78.884605, 37.745388],\n          [-78.884042, 37.74585],\n          [-78.882882, 37.746752],\n          [-78.882051, 37.747417],\n          [-78.880834, 37.748391],\n          [-78.88003, 37.749038],\n          [-78.879751, 37.749271],\n          [-78.879568, 37.74942],\n          [-78.879376, 37.749569],\n          [-78.878419, 37.750353],\n          [-78.877854, 37.750804],\n          [-78.877584, 37.751037],\n          [-78.877286, 37.751315],\n          [-78.877004, 37.751598],\n          [-78.876844, 37.751774],\n          [-78.876626, 37.752042],\n          [-78.876378, 37.752385],\n          [-78.876192, 37.752665],\n          [-78.876061, 37.752882],\n          [-78.875814, 37.753345],\n          [-78.875209, 37.754691],\n          [-78.874619, 37.756931],\n          [-78.874501, 37.757307],\n          [-78.874339, 37.757855],\n          [-78.873994, 37.758979],\n          [-78.873789, 37.759637],\n          [-78.873696, 37.75991],\n          [-78.873541, 37.760318],\n          [-78.873332, 37.760834],\n          [-78.873094, 37.761337],\n          [-78.872847, 37.761808],\n          [-78.872451, 37.762468],\n          [-78.872257, 37.76277],\n          [-78.871993, 37.763172],\n          [-78.871574, 37.763799],\n          [-78.871327, 37.764167],\n          [-78.871012, 37.764642],\n          [-78.870469, 37.765468],\n          [-78.870316, 37.765702],\n          [-78.870042, 37.766126],\n          [-78.869873, 37.766412],\n          [-78.869781, 37.766589],\n          [-78.869687, 37.766814],\n          [-78.869585, 37.76708],\n          [-78.869516, 37.767314],\n          [-78.869424, 37.767698],\n          [-78.869391, 37.767942],\n          [-78.86938, 37.768238],\n          [-78.869389, 37.768459],\n          [-78.869415, 37.768673],\n          [-78.869485, 37.768991],\n          [-78.869567, 37.769255],\n          [-78.86966, 37.769515],\n          [-78.869743, 37.769714],\n          [-78.869793, 37.769822],\n          [-78.870127, 37.770634],\n          [-78.870244, 37.770938],\n          [-78.870299, 37.771157],\n          [-78.870337, 37.771378],\n          [-78.870379, 37.771605],\n          [-78.870392, 37.771879],\n          [-78.870378, 37.772127],\n          [-78.870337, 37.772397],\n          [-78.870272, 37.77267],\n          [-78.870248, 37.772764],\n          [-78.87004, 37.773562],\n          [-78.869728, 37.774718],\n          [-78.869574, 37.775264],\n          [-78.869411, 37.775864],\n          [-78.869234, 37.776522],\n          [-78.869061, 37.777151],\n          [-78.868889, 37.777735],\n          [-78.868643, 37.778648],\n          [-78.868399, 37.779571],\n          [-78.868224, 37.780198],\n          [-78.868067, 37.780782],\n          [-78.867497, 37.782893],\n          [-78.867434, 37.783141],\n          [-78.867364, 37.783414],\n          [-78.867185, 37.784047],\n          [-78.867156, 37.784152],\n          [-78.867042, 37.784562],\n          [-78.866921, 37.785054],\n          [-78.866779, 37.785508],\n          [-78.866518, 37.786333],\n          [-78.866458, 37.786501],\n          [-78.866348, 37.786832],\n          [-78.866066, 37.787709],\n          [-78.865703, 37.788816],\n          [-78.865457, 37.789659],\n          [-78.865164, 37.790592],\n          [-78.864927, 37.791345],\n          [-78.864619, 37.792175],\n          [-78.864507, 37.792484],\n          [-78.864363, 37.792792],\n          [-78.864228, 37.793041],\n          [-78.864067, 37.7933],\n          [-78.863882, 37.793548],\n          [-78.863684, 37.793797],\n          [-78.863319, 37.794211],\n          [-78.863117, 37.794344],\n          [-78.86295, 37.794541],\n          [-78.862701, 37.794857],\n          [-78.86248, 37.795184],\n          [-78.862275, 37.795518],\n          [-78.862199, 37.795651],\n          [-78.862007, 37.796159],\n          [-78.861989, 37.79622],\n          [-78.861909, 37.796548],\n          [-78.861883, 37.796687],\n          [-78.861846, 37.796942],\n          [-78.861828, 37.797235],\n          [-78.861827, 37.797529],\n          [-78.861837, 37.797754],\n          [-78.861844, 37.797901],\n          [-78.861878, 37.798631],\n          [-78.861919, 37.799738],\n          [-78.861971, 37.800826],\n          [-78.862007, 37.801869],\n          [-78.862081, 37.803303],\n          [-78.862104, 37.80423],\n          [-78.86209, 37.804437],\n          [-78.862063, 37.804642],\n          [-78.862038, 37.804754],\n          [-78.862023, 37.804816],\n          [-78.861947, 37.805046],\n          [-78.861861, 37.805246],\n          [-78.861771, 37.805437],\n          [-78.86165, 37.805634],\n          [-78.861512, 37.805817],\n          [-78.861343, 37.806004],\n          [-78.860353, 37.806994],\n          [-78.859848, 37.807481],\n          [-78.858512, 37.808821],\n          [-78.858367, 37.808958],\n          [-78.858079, 37.809211],\n          [-78.857729, 37.809505],\n          [-78.857293, 37.80986],\n          [-78.856987, 37.81009],\n          [-78.856658, 37.810338],\n          [-78.855693, 37.81105],\n          [-78.85561, 37.811115],\n          [-78.855262, 37.811371],\n          [-78.854965, 37.811605],\n          [-78.853694, 37.812587],\n          [-78.853389, 37.812818],\n          [-78.852362, 37.813637],\n          [-78.851981, 37.813912],\n          [-78.851517, 37.814266],\n          [-78.851057, 37.81462],\n          [-78.85085, 37.814768],\n          [-78.850729, 37.814859],\n          [-78.850652, 37.81492],\n          [-78.850085, 37.815369],\n          [-78.848637, 37.81648],\n          [-78.846503, 37.818117],\n          [-78.846263, 37.818303],\n          [-78.845641, 37.818784],\n          [-78.845198, 37.81912],\n          [-78.844287, 37.819835],\n          [-78.843809, 37.820229],\n          [-78.841255, 37.822413],\n          [-78.840635, 37.822925],\n          [-78.840114, 37.823377],\n          [-78.839772, 37.823685],\n          [-78.839408, 37.824047],\n          [-78.839049, 37.824425],\n          [-78.838766, 37.824737],\n          [-78.838386, 37.825182],\n          [-78.838147, 37.825481],\n          [-78.837849, 37.82588],\n          [-78.837407, 37.826506],\n          [-78.837204, 37.826823],\n          [-78.837053, 37.827081],\n          [-78.836731, 37.827595],\n          [-78.836452, 37.828104],\n          [-78.836275, 37.828399],\n          [-78.836111, 37.828667],\n          [-78.835849, 37.82912],\n          [-78.835504, 37.829691],\n          [-78.835352, 37.829945],\n          [-78.83498, 37.830568],\n          [-78.834935, 37.830642],\n          [-78.834826, 37.830821],\n          [-78.834646, 37.831137],\n          [-78.834377, 37.831577],\n          [-78.833853, 37.832462],\n          [-78.833724, 37.832692],\n          [-78.833217, 37.833546],\n          [-78.831919, 37.835713],\n          [-78.831568, 37.836263],\n          [-78.831293, 37.836637],\n          [-78.831013, 37.836981],\n          [-78.83077, 37.837252],\n          [-78.829687, 37.838434],\n          [-78.829526, 37.8386],\n          [-78.829353, 37.838766],\n          [-78.828845, 37.839208],\n          [-78.828553, 37.839442],\n          [-78.828248, 37.839665],\n          [-78.827736, 37.840071],\n          [-78.82744, 37.840316],\n          [-78.827359, 37.840393],\n          [-78.827219, 37.840526],\n          [-78.827033, 37.840723],\n          [-78.82681, 37.840985],\n          [-78.826636, 37.841213],\n          [-78.826324, 37.841668],\n          [-78.825848, 37.842321],\n          [-78.825635, 37.842569],\n          [-78.825481, 37.842727],\n          [-78.825276, 37.842917],\n          [-78.825211, 37.842971],\n          [-78.825103, 37.843062],\n          [-78.824902, 37.843225],\n          [-78.824735, 37.84334],\n          [-78.824467, 37.843502],\n          [-78.824206, 37.843652],\n          [-78.82312, 37.844198],\n          [-78.822611, 37.844456],\n          [-78.821878, 37.84482],\n          [-78.820981, 37.845244],\n          [-78.82067, 37.845389],\n          [-78.820264, 37.845536],\n          [-78.820038, 37.845598],\n          [-78.819873, 37.845635],\n          [-78.81967, 37.845683],\n          [-78.819501, 37.845707],\n          [-78.819221, 37.845735],\n          [-78.818871, 37.845752],\n          [-78.818684, 37.845746],\n          [-78.818377, 37.845729],\n          [-78.818065, 37.845689],\n          [-78.817748, 37.845635],\n          [-78.817461, 37.845563],\n          [-78.817089, 37.845456],\n          [-78.81664, 37.845308],\n          [-78.816094, 37.845137],\n          [-78.815801, 37.845042],\n          [-78.815106, 37.844835],\n          [-78.814203, 37.844545],\n          [-78.813661, 37.844372],\n          [-78.813194, 37.844227],\n          [-78.812793, 37.844119],\n          [-78.812466, 37.844059],\n          [-78.812161, 37.844015],\n          [-78.811899, 37.843994],\n          [-78.811692, 37.843985],\n          [-78.81145, 37.844002],\n          [-78.811288, 37.844022],\n          [-78.810966, 37.84409],\n          [-78.810704, 37.844162],\n          [-78.810498, 37.844229],\n          [-78.810246, 37.844336],\n          [-78.80993, 37.84449],\n          [-78.809727, 37.844605],\n          [-78.809573, 37.844705],\n          [-78.809276, 37.84492],\n          [-78.809029, 37.845076],\n          [-78.808807, 37.845199],\n          [-78.808527, 37.845332],\n          [-78.808311, 37.845419],\n          [-78.808089, 37.845498],\n          [-78.807811, 37.845579],\n          [-78.807589, 37.845643],\n          [-78.807297, 37.845708],\n          [-78.807, 37.845759],\n          [-78.806691, 37.845797],\n          [-78.806302, 37.845837],\n          [-78.805184, 37.845933],\n          [-78.80503, 37.845945],\n          [-78.804012, 37.846026],\n          [-78.800837, 37.846324],\n          [-78.800537, 37.846339],\n          [-78.800237, 37.846355],\n          [-78.800014, 37.846352],\n          [-78.79976, 37.846345],\n          [-78.799425, 37.846321],\n          [-78.799048, 37.846276],\n          [-78.79881, 37.846227],\n          [-78.798587, 37.846183],\n          [-78.798334, 37.846121],\n          [-78.798127, 37.846044],\n          [-78.797833, 37.845932],\n          [-78.797473, 37.845765],\n          [-78.797183, 37.845617],\n          [-78.796923, 37.845465],\n          [-78.796357, 37.845082],\n          [-78.795818, 37.844712],\n          [-78.795607, 37.84458],\n          [-78.795352, 37.844427],\n          [-78.795147, 37.84431],\n          [-78.794915, 37.844201],\n          [-78.794645, 37.844085],\n          [-78.794419, 37.843996],\n          [-78.794095, 37.843903],\n          [-78.793805, 37.843828],\n          [-78.793467, 37.843774],\n          [-78.793125, 37.84374],\n          [-78.792933, 37.843732],\n          [-78.792722, 37.843723],\n          [-78.792238, 37.84372],\n          [-78.791688, 37.843732],\n          [-78.791137, 37.843731],\n          [-78.790713, 37.843712],\n          [-78.790444, 37.843693],\n          [-78.79016, 37.843657],\n          [-78.78988, 37.843607],\n          [-78.789604, 37.843542],\n          [-78.789363, 37.843478],\n          [-78.789067, 37.843389],\n          [-78.788706, 37.843253],\n          [-78.78839, 37.843125],\n          [-78.788101, 37.843016],\n          [-78.78765, 37.842857],\n          [-78.787324, 37.842748],\n          [-78.787056, 37.84268],\n          [-78.786677, 37.842606],\n          [-78.786459, 37.842568],\n          [-78.786292, 37.842537],\n          [-78.785994, 37.842501],\n          [-78.785649, 37.842467],\n          [-78.785267, 37.842457],\n          [-78.784945, 37.842456],\n          [-78.784589, 37.842468],\n          [-78.782212, 37.842633],\n          [-78.780497, 37.842776],\n          [-78.779987, 37.842814],\n          [-78.778924, 37.842896],\n          [-78.77812, 37.842986],\n          [-78.777773, 37.843042],\n          [-78.777066, 37.843144],\n          [-78.776444, 37.84325],\n          [-78.775647, 37.843402],\n          [-78.774632, 37.843601],\n          [-78.773646, 37.843786],\n          [-78.773282, 37.843855],\n          [-78.772981, 37.843912],\n          [-78.772128, 37.844091],\n          [-78.771161, 37.844316],\n          [-78.770651, 37.844441],\n          [-78.769991, 37.844616],\n          [-78.768859, 37.844941],\n          [-78.768162, 37.845142],\n          [-78.767015, 37.845472],\n          [-78.76637, 37.845658],\n          [-78.765119, 37.846012],\n          [-78.761663, 37.84701],\n          [-78.760903, 37.847224],\n          [-78.760298, 37.847402],\n          [-78.75996, 37.847506],\n          [-78.7597, 37.847596],\n          [-78.759532, 37.84765],\n          [-78.759113, 37.847806],\n          [-78.758783, 37.847948],\n          [-78.758412, 37.84812],\n          [-78.758057, 37.848288],\n          [-78.757154, 37.848747],\n          [-78.756986, 37.848829],\n          [-78.756546, 37.849062],\n          [-78.756115, 37.849306],\n          [-78.755862, 37.849458],\n          [-78.755244, 37.849843],\n          [-78.754769, 37.85013],\n          [-78.754377, 37.85038],\n          [-78.753945, 37.850672],\n          [-78.753673, 37.850873],\n          [-78.753364, 37.851127],\n          [-78.753217, 37.851259],\n          [-78.752739, 37.851715],\n          [-78.752046, 37.852374],\n          [-78.75166, 37.852719],\n          [-78.751401, 37.852929],\n          [-78.751134, 37.853132],\n          [-78.750789, 37.853376],\n          [-78.750504, 37.853564],\n          [-78.750081, 37.853824],\n          [-78.74973, 37.854021],\n          [-78.749369, 37.854207],\n          [-78.748998, 37.85438],\n          [-78.748624, 37.854531],\n          [-78.748053, 37.854743],\n          [-78.747045, 37.85508],\n          [-78.746537, 37.855262],\n          [-78.746473, 37.855285],\n          [-78.745985, 37.855474],\n          [-78.7456, 37.855635],\n          [-78.744986, 37.855911],\n          [-78.744673, 37.856064],\n          [-78.744246, 37.856299],\n          [-78.743761, 37.856591],\n          [-78.743416, 37.856817],\n          [-78.742954, 37.857145],\n          [-78.742639, 37.857387],\n          [-78.742337, 37.85764],\n          [-78.742294, 37.85768],\n          [-78.741896, 37.858045],\n          [-78.741503, 37.85843],\n          [-78.741291, 37.858648],\n          [-78.741254, 37.858686],\n          [-78.740963, 37.859027],\n          [-78.740705, 37.859351],\n          [-78.740668, 37.859398],\n          [-78.740453, 37.85968],\n          [-78.739901, 37.860385],\n          [-78.739675, 37.860647],\n          [-78.739434, 37.860902],\n          [-78.739176, 37.861151],\n          [-78.73895, 37.861357],\n          [-78.738655, 37.861604],\n          [-78.738411, 37.861795],\n          [-78.738094, 37.862025],\n          [-78.737733, 37.862262],\n          [-78.737429, 37.862445],\n          [-78.73708, 37.862638],\n          [-78.73657, 37.862893],\n          [-78.736186, 37.863088],\n          [-78.735435, 37.86348],\n          [-78.734529, 37.863942],\n          [-78.733874, 37.864271],\n          [-78.733562, 37.864427],\n          [-78.733042, 37.864704],\n          [-78.732039, 37.865214],\n          [-78.731948, 37.865258],\n          [-78.731785, 37.865335],\n          [-78.731411, 37.86553],\n          [-78.730148, 37.866169],\n          [-78.729986, 37.866254],\n          [-78.729722, 37.866391],\n          [-78.728688, 37.866913],\n          [-78.727888, 37.86733],\n          [-78.727529, 37.86751],\n          [-78.726765, 37.867904],\n          [-78.726166, 37.868202],\n          [-78.725869, 37.868361],\n          [-78.725428, 37.868579],\n          [-78.725084, 37.868757],\n          [-78.724518, 37.869049],\n          [-78.723898, 37.869354],\n          [-78.722779, 37.869945],\n          [-78.721592, 37.870542],\n          [-78.720481, 37.87111],\n          [-78.719958, 37.871373],\n          [-78.719701, 37.871497],\n          [-78.719365, 37.871672],\n          [-78.718719, 37.872028],\n          [-78.71847, 37.872183],\n          [-78.718164, 37.872388],\n          [-78.717945, 37.872553],\n          [-78.717592, 37.872851],\n          [-78.717285, 37.873139],\n          [-78.717049, 37.873363],\n          [-78.716739, 37.873728],\n          [-78.716536, 37.874002],\n          [-78.716395, 37.874221],\n          [-78.716144, 37.874657],\n          [-78.71604, 37.87487],\n          [-78.715888, 37.875212],\n          [-78.715814, 37.875401],\n          [-78.715694, 37.87571],\n          [-78.715495, 37.876238],\n          [-78.715377, 37.876548],\n          [-78.715275, 37.876817],\n          [-78.71521, 37.877013],\n          [-78.715136, 37.877211],\n          [-78.715081, 37.877371],\n          [-78.714995, 37.877587],\n          [-78.71492, 37.877787],\n          [-78.7148, 37.878131],\n          [-78.714687, 37.878428],\n          [-78.714533, 37.878796],\n          [-78.714454, 37.879009],\n          [-78.714417, 37.879116],\n          [-78.714256, 37.879549],\n          [-78.714141, 37.879854],\n          [-78.713896, 37.880594],\n          [-78.713756, 37.881038],\n          [-78.713682, 37.88126],\n          [-78.713617, 37.881457],\n          [-78.713533, 37.881697],\n          [-78.713446, 37.881943],\n          [-78.713394, 37.882108],\n          [-78.713314, 37.882336],\n          [-78.713184, 37.882655],\n          [-78.713006, 37.883053],\n          [-78.712892, 37.883274],\n          [-78.712733, 37.88355],\n          [-78.712558, 37.88384],\n          [-78.712369, 37.884119],\n          [-78.712275, 37.884257],\n          [-78.712136, 37.884449],\n          [-78.711974, 37.884667],\n          [-78.711814, 37.884876],\n          [-78.711641, 37.885085],\n          [-78.711418, 37.885345],\n          [-78.711139, 37.885644],\n          [-78.710798, 37.88599],\n          [-78.710465, 37.886309],\n          [-78.710195, 37.886555],\n          [-78.709928, 37.886781],\n          [-78.709577, 37.88706],\n          [-78.709406, 37.887199],\n          [-78.709211, 37.887345],\n          [-78.708778, 37.887648],\n          [-78.707968, 37.888179],\n          [-78.707642, 37.888399],\n          [-78.707473, 37.88851],\n          [-78.707244, 37.888663],\n          [-78.706965, 37.888843],\n          [-78.706601, 37.889083],\n          [-78.706088, 37.889425],\n          [-78.705712, 37.889669],\n          [-78.705189, 37.890019],\n          [-78.704893, 37.890211],\n          [-78.703445, 37.891162],\n          [-78.703041, 37.891429],\n          [-78.702721, 37.891638],\n          [-78.702327, 37.891905],\n          [-78.70184, 37.892223],\n          [-78.701163, 37.892662],\n          [-78.700778, 37.892933],\n          [-78.70071, 37.892981],\n          [-78.700622, 37.893046],\n          [-78.700337, 37.893272],\n          [-78.69999, 37.89357],\n          [-78.699755, 37.8938],\n          [-78.699482, 37.894099],\n          [-78.699289, 37.894329],\n          [-78.698787, 37.894984],\n          [-78.698558, 37.895284],\n          [-78.69837, 37.895519],\n          [-78.698116, 37.895851],\n          [-78.697966, 37.896055],\n          [-78.697696, 37.896407],\n          [-78.697057, 37.897242],\n          [-78.696439, 37.898041],\n          [-78.695681, 37.899035],\n          [-78.695049, 37.899863],\n          [-78.694658, 37.900403],\n          [-78.694519, 37.900599],\n          [-78.694429, 37.900733],\n          [-78.693954, 37.901464],\n          [-78.693721, 37.901862],\n          [-78.693473, 37.902275],\n          [-78.693102, 37.902981],\n          [-78.692879, 37.903439],\n          [-78.692797, 37.903623],\n          [-78.692129, 37.905105],\n          [-78.691808, 37.905817],\n          [-78.691268, 37.906984],\n          [-78.690987, 37.907549],\n          [-78.690814, 37.907874],\n          [-78.690688, 37.908089],\n          [-78.690521, 37.908372],\n          [-78.690275, 37.908767],\n          [-78.689663, 37.909657],\n          [-78.689078, 37.910492],\n          [-78.685485, 37.915666],\n          [-78.684467, 37.917131],\n          [-78.682047, 37.920608],\n          [-78.681785, 37.92095],\n          [-78.681517, 37.921272],\n          [-78.681241, 37.921578],\n          [-78.68101, 37.921818],\n          [-78.680605, 37.922194],\n          [-78.68013, 37.922617],\n          [-78.679566, 37.923137],\n          [-78.679307, 37.923403],\n          [-78.678986, 37.92374],\n          [-78.678605, 37.924203],\n          [-78.678345, 37.924561],\n          [-78.678124, 37.924891],\n          [-78.677903, 37.925227],\n          [-78.677688, 37.925589],\n          [-78.677544, 37.925878],\n          [-78.67731, 37.926442],\n          [-78.676551, 37.928284],\n          [-78.676404, 37.928595],\n          [-78.676242, 37.928949],\n          [-78.676148, 37.929122],\n          [-78.675977, 37.929377],\n          [-78.675612, 37.929807],\n          [-78.675385, 37.930086],\n          [-78.675213, 37.930312],\n          [-78.675004, 37.930559],\n          [-78.674617, 37.931044],\n          [-78.67407, 37.931702],\n          [-78.673673, 37.932201],\n          [-78.673281, 37.9327],\n          [-78.672994, 37.933082],\n          [-78.672166, 37.934227],\n          [-78.671112, 37.935771],\n          [-78.670762, 37.936281],\n          [-78.670385, 37.936817],\n          [-78.669877, 37.937599],\n          [-78.668999, 37.93886],\n          [-78.667671, 37.940789],\n          [-78.666721, 37.942158],\n          [-78.666126, 37.943118],\n          [-78.665597, 37.944014],\n          [-78.665125, 37.944827],\n          [-78.664642, 37.945633],\n          [-78.664087, 37.946602],\n          [-78.663665, 37.947366],\n          [-78.663523, 37.947648],\n          [-78.663363, 37.948007],\n          [-78.66312, 37.948581],\n          [-78.662992, 37.948919],\n          [-78.662788, 37.949511],\n          [-78.662392, 37.950794],\n          [-78.662127, 37.951686],\n          [-78.661907, 37.952368],\n          [-78.6618, 37.952667],\n          [-78.661673, 37.952964],\n          [-78.661549, 37.953229],\n          [-78.661377, 37.953546],\n          [-78.661172, 37.953875],\n          [-78.660975, 37.954168],\n          [-78.660712, 37.954527],\n          [-78.660589, 37.954686],\n          [-78.660525, 37.954768],\n          [-78.660204, 37.955161],\n          [-78.659899, 37.955515],\n          [-78.65946, 37.956045],\n          [-78.659107, 37.956472],\n          [-78.658939, 37.95668],\n          [-78.658404, 37.957325],\n          [-78.658185, 37.957583],\n          [-78.657413, 37.958505],\n          [-78.65713, 37.958855],\n          [-78.65677, 37.959264],\n          [-78.656612, 37.959431],\n          [-78.656439, 37.95959],\n          [-78.656251, 37.959739],\n          [-78.656068, 37.959867],\n          [-78.655989, 37.959917],\n          [-78.655752, 37.960052],\n          [-78.655575, 37.96015],\n          [-78.655228, 37.960289],\n          [-78.654931, 37.960405],\n          [-78.653275, 37.960978],\n          [-78.652399, 37.961277],\n          [-78.651659, 37.961545],\n          [-78.651372, 37.96167],\n          [-78.651131, 37.961788],\n          [-78.650953, 37.961888],\n          [-78.65077, 37.962003],\n          [-78.650655, 37.962074],\n          [-78.650545, 37.96215],\n          [-78.650369, 37.962277],\n          [-78.650124, 37.962492],\n          [-78.649827, 37.962781],\n          [-78.649528, 37.963082],\n          [-78.649157, 37.963468],\n          [-78.648771, 37.96385],\n          [-78.648569, 37.964042],\n          [-78.648236, 37.964318],\n          [-78.647928, 37.964546],\n          [-78.647355, 37.964951],\n          [-78.646421, 37.965624],\n          [-78.646034, 37.965897],\n          [-78.645591, 37.966218],\n          [-78.645351, 37.966376],\n          [-78.645051, 37.966569],\n          [-78.644735, 37.966754],\n          [-78.644581, 37.96684],\n          [-78.6444, 37.966936],\n          [-78.643915, 37.967163],\n          [-78.643555, 37.967319],\n          [-78.643147, 37.967465],\n          [-78.642853, 37.967561],\n          [-78.642519, 37.96766],\n          [-78.642395, 37.967695],\n          [-78.642095, 37.967768],\n          [-78.641871, 37.967823],\n          [-78.641449, 37.967916],\n          [-78.640993, 37.967991],\n          [-78.640408, 37.968066],\n          [-78.639997, 37.968103],\n          [-78.639496, 37.96813],\n          [-78.638995, 37.968136],\n          [-78.638434, 37.968125],\n          [-78.637944, 37.9681],\n          [-78.63612, 37.967958],\n          [-78.635136, 37.967873],\n          [-78.633802, 37.96777],\n          [-78.632073, 37.967631],\n          [-78.631801, 37.967611],\n          [-78.630935, 37.967546],\n          [-78.630424, 37.967503],\n          [-78.629697, 37.967442],\n          [-78.628686, 37.967361],\n          [-78.626167, 37.967159],\n          [-78.623282, 37.966927],\n          [-78.622258, 37.96685],\n          [-78.621932, 37.966824],\n          [-78.620819, 37.966736],\n          [-78.620381, 37.966716],\n          [-78.620004, 37.966712],\n          [-78.619679, 37.966717],\n          [-78.61937, 37.966745],\n          [-78.619064, 37.966787],\n          [-78.618761, 37.966844],\n          [-78.618523, 37.9669],\n          [-78.618222, 37.966977],\n          [-78.617837, 37.967103],\n          [-78.617525, 37.967224],\n          [-78.617264, 37.967333],\n          [-78.616866, 37.967526],\n          [-78.61666, 37.96764],\n          [-78.616487, 37.967735],\n          [-78.616266, 37.967872],\n          [-78.615844, 37.968137],\n          [-78.615555, 37.968338],\n          [-78.615229, 37.968577],\n          [-78.614931, 37.968831],\n          [-78.614607, 37.969142],\n          [-78.614381, 37.96937],\n          [-78.614151, 37.969646],\n          [-78.613964, 37.96988],\n          [-78.613494, 37.970554],\n          [-78.61301, 37.971246],\n          [-78.612831, 37.971512],\n          [-78.612279, 37.972333],\n          [-78.611229, 37.97389],\n          [-78.610819, 37.974494],\n          [-78.610719, 37.974624],\n          [-78.610499, 37.974897],\n          [-78.610319, 37.975118],\n          [-78.610116, 37.975331],\n          [-78.609966, 37.975469],\n          [-78.609796, 37.975624],\n          [-78.609591, 37.975796],\n          [-78.609317, 37.976004],\n          [-78.609071, 37.976176],\n          [-78.608849, 37.976327],\n          [-78.608744, 37.97639],\n          [-78.608365, 37.976619],\n          [-78.608101, 37.976752],\n          [-78.607845, 37.976869],\n          [-78.607584, 37.976978],\n          [-78.60725, 37.977103],\n          [-78.606977, 37.977192],\n          [-78.606625, 37.977297],\n          [-78.606266, 37.977388],\n          [-78.606123, 37.977418],\n          [-78.605902, 37.977465],\n          [-78.605646, 37.97752],\n          [-78.605621, 37.977522],\n          [-78.605549, 37.977538],\n          [-78.60423, 37.977756],\n          [-78.602588, 37.978034],\n          [-78.602162, 37.978122],\n          [-78.601825, 37.978203],\n          [-78.601492, 37.978293],\n          [-78.601094, 37.978414],\n          [-78.60071, 37.978547],\n          [-78.600334, 37.978694],\n          [-78.599967, 37.978854],\n          [-78.599486, 37.979083],\n          [-78.599163, 37.979252],\n          [-78.598789, 37.97947],\n          [-78.598549, 37.979624],\n          [-78.597946, 37.980033],\n          [-78.596889, 37.98075],\n          [-78.595137, 37.981939],\n          [-78.593704, 37.982911],\n          [-78.592376, 37.98382],\n          [-78.590854, 37.984906],\n          [-78.590225, 37.985373],\n          [-78.588999, 37.98631],\n          [-78.588012, 37.9871],\n          [-78.587089, 37.987859],\n          [-78.586722, 37.988171],\n          [-78.586183, 37.988631],\n          [-78.585023, 37.989655],\n          [-78.583908, 37.990662],\n          [-78.583686, 37.990885],\n          [-78.583478, 37.991116],\n          [-78.583203, 37.991447],\n          [-78.583057, 37.991641],\n          [-78.582889, 37.99189],\n          [-78.582734, 37.992152],\n          [-78.582584, 37.992445],\n          [-78.582451, 37.992743],\n          [-78.582318, 37.993104],\n          [-78.582229, 37.993396],\n          [-78.582158, 37.993692],\n          [-78.582061, 37.994255],\n          [-78.581989, 37.994788],\n          [-78.581919, 37.9952],\n          [-78.581831, 37.99573],\n          [-78.581596, 37.997239],\n          [-78.581525, 37.997665],\n          [-78.58147, 37.998088],\n          [-78.581083, 38.000517],\n          [-78.580993, 38.001016],\n          [-78.580912, 38.001332],\n          [-78.580857, 38.001514],\n          [-78.580851, 38.001532],\n          [-78.580827, 38.001607],\n          [-78.580788, 38.001711],\n          [-78.580764, 38.001783],\n          [-78.580638, 38.002087],\n          [-78.580501, 38.002397],\n          [-78.580338, 38.002682],\n          [-78.580176, 38.002939],\n          [-78.580026, 38.003155],\n          [-78.57984, 38.003394],\n          [-78.579631, 38.003641],\n          [-78.579528, 38.003748],\n          [-78.579258, 38.004014],\n          [-78.578985, 38.00426],\n          [-78.578784, 38.004426],\n          [-78.578575, 38.004584],\n          [-78.578379, 38.004723],\n          [-78.578122, 38.004899],\n          [-78.577709, 38.005151],\n          [-78.577431, 38.005306],\n          [-78.577141, 38.005444],\n          [-78.576923, 38.005542],\n          [-78.576628, 38.005666],\n          [-78.576327, 38.005766],\n          [-78.576154, 38.005828],\n          [-78.575371, 38.006031],\n          [-78.574274, 38.006313],\n          [-78.573929, 38.006397],\n          [-78.573678, 38.006459],\n          [-78.5731, 38.006602],\n          [-78.572544, 38.006742],\n          [-78.570845, 38.007165],\n          [-78.570536, 38.007245],\n          [-78.570147, 38.007346],\n          [-78.569511, 38.007502],\n          [-78.568866, 38.007677],\n          [-78.568449, 38.007795],\n          [-78.568216, 38.007865],\n          [-78.567861, 38.007984],\n          [-78.567483, 38.008116],\n          [-78.567008, 38.00831],\n          [-78.566642, 38.008471],\n          [-78.566222, 38.008672],\n          [-78.565813, 38.008887],\n          [-78.565381, 38.009126],\n          [-78.564818, 38.009422],\n          [-78.564544, 38.009563],\n          [-78.564196, 38.009735],\n          [-78.564075, 38.009787],\n          [-78.56369, 38.009944],\n          [-78.56326, 38.010103],\n          [-78.562849, 38.010238],\n          [-78.562529, 38.010332],\n          [-78.562124, 38.010438],\n          [-78.561805, 38.010515],\n          [-78.561564, 38.010564],\n          [-78.56093, 38.010675],\n          [-78.560028, 38.010845],\n          [-78.558824, 38.011064],\n          [-78.558024, 38.011219],\n          [-78.557648, 38.011286],\n          [-78.557386, 38.011333],\n          [-78.557058, 38.011387],\n          [-78.555118, 38.011755],\n          [-78.554112, 38.011931],\n          [-78.552878, 38.012156],\n          [-78.552449, 38.01225],\n          [-78.552186, 38.012316],\n          [-78.551829, 38.012417],\n          [-78.551365, 38.012562],\n          [-78.55109, 38.012655],\n          [-78.550658, 38.012829],\n          [-78.550236, 38.013017],\n          [-78.549599, 38.013364],\n          [-78.549376, 38.013492],\n          [-78.549058, 38.013698],\n          [-78.548469, 38.01411],\n          [-78.547659, 38.014674],\n          [-78.547468, 38.014808],\n          [-78.54736, 38.014884],\n          [-78.547042, 38.015096],\n          [-78.546611, 38.015362],\n          [-78.546269, 38.015559],\n          [-78.54592, 38.01574],\n          [-78.545223, 38.016069],\n          [-78.544841, 38.016247],\n          [-78.543906, 38.016682],\n          [-78.543654, 38.016806],\n          [-78.54333, 38.016982],\n          [-78.542733, 38.017318],\n          [-78.542466, 38.017467],\n          [-78.539711, 38.018979],\n          [-78.536725, 38.020664],\n          [-78.535885, 38.021132],\n          [-78.535518, 38.021335],\n          [-78.534742, 38.021766],\n          [-78.534188, 38.022073],\n          [-78.532955, 38.02276],\n          [-78.532173, 38.023196],\n          [-78.531193, 38.023747],\n          [-78.531125, 38.023792],\n          [-78.53075, 38.024045],\n          [-78.530445, 38.024274],\n          [-78.530203, 38.024476],\n          [-78.530016, 38.024649],\n          [-78.529931, 38.024733],\n          [-78.52985, 38.024806],\n          [-78.529798, 38.024854],\n          [-78.529758, 38.024894],\n          [-78.529598, 38.025065],\n          [-78.529327, 38.025386],\n          [-78.52916, 38.025608],\n          [-78.528945, 38.025933],\n          [-78.5288, 38.026176],\n          [-78.528672, 38.026426],\n          [-78.52861, 38.026566],\n          [-78.528405, 38.027066],\n          [-78.52833, 38.027311],\n          [-78.528283, 38.02751],\n          [-78.528235, 38.027689],\n          [-78.528151, 38.028145],\n          [-78.527582, 38.03105],\n          [-78.527126, 38.033402],\n          [-78.52703, 38.033972],\n          [-78.526914, 38.034782],\n          [-78.526868, 38.035166],\n          [-78.52679, 38.036035],\n          [-78.526753, 38.036647],\n          [-78.526715, 38.03781],\n          [-78.526642, 38.040878],\n          [-78.526607, 38.042081],\n          [-78.526584, 38.042473],\n          [-78.526544, 38.042863],\n          [-78.52645, 38.043462],\n          [-78.526353, 38.043907],\n          [-78.526306, 38.044099],\n          [-78.526225, 38.044382],\n          [-78.526103, 38.044762],\n          [-78.525978, 38.045116],\n          [-78.52595, 38.045183],\n          [-78.525619, 38.045973],\n          [-78.525226, 38.046882],\n          [-78.524837, 38.047794],\n          [-78.524807, 38.047861],\n          [-78.524712, 38.048073],\n          [-78.523664, 38.050524],\n          [-78.523608, 38.050633],\n          [-78.523449, 38.050945],\n          [-78.523194, 38.051371],\n          [-78.522992, 38.051667],\n          [-78.522896, 38.051793],\n          [-78.522708, 38.052033],\n          [-78.522379, 38.052403],\n          [-78.522049, 38.052728],\n          [-78.521736, 38.053004],\n          [-78.521375, 38.053289],\n          [-78.521061, 38.053512],\n          [-78.520792, 38.053687],\n          [-78.520433, 38.053898],\n          [-78.5202, 38.054028],\n          [-78.519924, 38.054166],\n          [-78.519561, 38.054329],\n          [-78.519179, 38.054486],\n          [-78.518827, 38.054612],\n          [-78.518437, 38.054736],\n          [-78.518106, 38.054829],\n          [-78.517883, 38.054877],\n          [-78.517638, 38.05494],\n          [-78.517298, 38.055006],\n          [-78.51674, 38.055093],\n          [-78.515503, 38.055228],\n          [-78.513125, 38.055506],\n          [-78.51298, 38.05552],\n          [-78.511721, 38.055664],\n          [-78.510089, 38.05585],\n          [-78.509444, 38.055931],\n          [-78.508892, 38.056018],\n          [-78.508324, 38.056121],\n          [-78.50762, 38.056269],\n          [-78.507101, 38.056364],\n          [-78.5063, 38.056529],\n          [-78.504207, 38.056975],\n          [-78.503544, 38.057129],\n          [-78.50332, 38.057173],\n          [-78.50218, 38.05739],\n          [-78.501769, 38.057476],\n          [-78.501588, 38.057518],\n          [-78.501288, 38.05758],\n          [-78.500918, 38.057644],\n          [-78.50053, 38.057699],\n          [-78.50025, 38.057721],\n          [-78.49999, 38.057731],\n          [-78.4996, 38.057738],\n          [-78.499258, 38.057729],\n          [-78.499228, 38.057727],\n          [-78.498789, 38.057695],\n          [-78.498509, 38.057667],\n          [-78.498249, 38.05764],\n          [-78.497868, 38.057604],\n          [-78.497658, 38.057584],\n          [-78.497235, 38.057537],\n          [-78.496848, 38.057489],\n          [-78.495893, 38.057371],\n          [-78.494978, 38.057279],\n          [-78.49472, 38.057173],\n          [-78.494659, 38.057142],\n          [-78.494592, 38.057093],\n          [-78.494549, 38.057047],\n          [-78.494516, 38.056995],\n          [-78.494502, 38.05695],\n          [-78.494493, 38.056874],\n          [-78.494502, 38.056798],\n          [-78.494522, 38.056739],\n          [-78.494562, 38.056669],\n          [-78.494623, 38.05661],\n          [-78.494697, 38.056562],\n          [-78.494781, 38.056525],\n          [-78.494872, 38.056502],\n          [-78.49496, 38.056493],\n          [-78.495044, 38.0565],\n          [-78.495109, 38.056516],\n          [-78.495169, 38.056541],\n          [-78.495238, 38.056584],\n          [-78.49528, 38.056617],\n          [-78.495339, 38.05668],\n          [-78.495381, 38.056751],\n          [-78.495402, 38.056811],\n          [-78.495415, 38.056894],\n          [-78.495413, 38.056998],\n          [-78.495388, 38.057116],\n          [-78.49528, 38.057239],\n          [-78.495007, 38.057577],\n          [-78.494845, 38.057747],\n          [-78.494782, 38.057825],\n          [-78.494593, 38.05807],\n          [-78.494413, 38.058298],\n          [-78.494268, 38.05847],\n          [-78.494235, 38.058509],\n          [-78.494159, 38.058601],\n          [-78.493967, 38.058833],\n          [-78.493505, 38.059401],\n          [-78.493364, 38.059586],\n          [-78.492889, 38.060182],\n          [-78.492564, 38.060616],\n          [-78.492196, 38.061101],\n          [-78.491916, 38.061468],\n          [-78.491724, 38.061722],\n          [-78.491723, 38.061722],\n          [-78.491578, 38.061897],\n          [-78.491244, 38.062293],\n          [-78.490863, 38.062734],\n          [-78.490477, 38.063153],\n          [-78.490269, 38.06338],\n          [-78.489937, 38.063742],\n          [-78.48969, 38.064008],\n          [-78.489478, 38.064259],\n          [-78.489344, 38.064409],\n          [-78.489289, 38.06447],\n          [-78.489212, 38.064554],\n          [-78.488761, 38.065053],\n          [-78.48815, 38.065739],\n          [-78.488116, 38.065779],\n          [-78.487867, 38.06605],\n          [-78.48713, 38.06686],\n          [-78.486995, 38.067008],\n          [-78.486825, 38.067194],\n          [-78.486343, 38.067727],\n          [-78.486218, 38.067866],\n          [-78.486208, 38.067877],\n          [-78.486134, 38.067959],\n          [-78.48576, 38.068363],\n          [-78.485475, 38.06867],\n          [-78.485154, 38.069027],\n          [-78.484295, 38.070023],\n          [-78.484063, 38.070271],\n          [-78.483776, 38.070614],\n          [-78.483281, 38.071164],\n          [-78.482433, 38.07211],\n          [-78.480968, 38.073741],\n          [-78.480778, 38.073943],\n          [-78.480706, 38.07403],\n          [-78.480376, 38.074401],\n          [-78.479882, 38.074956],\n          [-78.479801, 38.075034],\n          [-78.479272, 38.075634],\n          [-78.478606, 38.076375],\n          [-78.478527, 38.076469],\n          [-78.478367, 38.076647],\n          [-78.477091, 38.078062],\n          [-78.476397, 38.078846],\n          [-78.475743, 38.079571],\n          [-78.474543, 38.08091],\n          [-78.474163, 38.081335],\n          [-78.473969, 38.081577],\n          [-78.473788, 38.081788],\n          [-78.473613, 38.082014],\n          [-78.47347, 38.082218],\n          [-78.472971, 38.083082],\n          [-78.472639, 38.083666],\n          [-78.472264, 38.084319],\n          [-78.471709, 38.085285],\n          [-78.471146, 38.086271],\n          [-78.47079, 38.086895],\n          [-78.470583, 38.087258],\n          [-78.47026, 38.087825],\n          [-78.469568, 38.089039],\n          [-78.468607, 38.090712],\n          [-78.468501, 38.090897],\n          [-78.468139, 38.091557],\n          [-78.468043, 38.091733],\n          [-78.467922, 38.09192],\n          [-78.467732, 38.092218],\n          [-78.46735, 38.0929],\n          [-78.466766, 38.093924],\n          [-78.466497, 38.09437],\n          [-78.466369, 38.094558],\n          [-78.46599, 38.095057],\n          [-78.465526, 38.09564],\n          [-78.465381, 38.095816],\n          [-78.464933, 38.096381],\n          [-78.464463, 38.096962],\n          [-78.464049, 38.097474],\n          [-78.463974, 38.097573],\n          [-78.463441, 38.098232],\n          [-78.46294, 38.098874],\n          [-78.462231, 38.099765],\n          [-78.461478, 38.100721],\n          [-78.460943, 38.101395],\n          [-78.460544, 38.101882],\n          [-78.460009, 38.102564],\n          [-78.459568, 38.103126],\n          [-78.459337, 38.103403],\n          [-78.458603, 38.10429],\n          [-78.457804, 38.105297],\n          [-78.45751, 38.105695],\n          [-78.4569, 38.106619],\n          [-78.456598, 38.107068],\n          [-78.45544, 38.108845],\n          [-78.454988, 38.109578],\n          [-78.454476, 38.110311],\n          [-78.454296, 38.110569],\n          [-78.454206, 38.110708],\n          [-78.454093, 38.110899],\n          [-78.453942, 38.111128],\n          [-78.453769, 38.111409],\n          [-78.453294, 38.112125],\n          [-78.453172, 38.112318],\n          [-78.452856, 38.112817],\n          [-78.452688, 38.11307],\n          [-78.452602, 38.113223],\n          [-78.451975, 38.114186],\n          [-78.451686, 38.11461],\n          [-78.45106, 38.115568],\n          [-78.450908, 38.115798],\n          [-78.450496, 38.11642],\n          [-78.450419, 38.116537],\n          [-78.45032, 38.116697],\n          [-78.450137, 38.116993],\n          [-78.449702, 38.117634],\n          [-78.449172, 38.118448],\n          [-78.448773, 38.119065],\n          [-78.448006, 38.120242],\n          [-78.447677, 38.120726],\n          [-78.447299, 38.121219],\n          [-78.44692, 38.121631],\n          [-78.446411, 38.122124],\n          [-78.4458, 38.12267],\n          [-78.444661, 38.123687],\n          [-78.442392, 38.125724],\n          [-78.441529, 38.126494],\n          [-78.440922, 38.127044],\n          [-78.440006, 38.127866],\n          [-78.439371, 38.128436],\n          [-78.437997, 38.129669],\n          [-78.437902, 38.129754],\n          [-78.437019, 38.130549],\n          [-78.436453, 38.131059],\n          [-78.436187, 38.131299],\n          [-78.435995, 38.13147],\n          [-78.435251, 38.132172],\n          [-78.435106, 38.132303],\n          [-78.434673, 38.132753],\n          [-78.434293, 38.13317],\n          [-78.433695, 38.133887],\n          [-78.433416, 38.134269],\n          [-78.433195, 38.134572],\n          [-78.432173, 38.13616],\n          [-78.430917, 38.138131],\n          [-78.430468, 38.138847],\n          [-78.429836, 38.139833],\n          [-78.429464, 38.140424],\n          [-78.428859, 38.141359],\n          [-78.428348, 38.142178],\n          [-78.428275, 38.142291],\n          [-78.427887, 38.14289],\n          [-78.427641, 38.143278],\n          [-78.427277, 38.143851],\n          [-78.427263, 38.143873],\n          [-78.425718, 38.146293],\n          [-78.4249, 38.147586],\n          [-78.423982, 38.149017],\n          [-78.423879, 38.149181],\n          [-78.4234, 38.149936],\n          [-78.422346, 38.1516],\n          [-78.42208, 38.151996],\n          [-78.421684, 38.152621],\n          [-78.421337, 38.15319],\n          [-78.420383, 38.154692],\n          [-78.419605, 38.155908],\n          [-78.417659, 38.158962],\n          [-78.415009, 38.163121],\n          [-78.414626, 38.163716],\n          [-78.414541, 38.163851],\n          [-78.414293, 38.164245],\n          [-78.412771, 38.16663],\n          [-78.41231, 38.167345],\n          [-78.411781, 38.168185],\n          [-78.410521, 38.170164],\n          [-78.410064, 38.170881],\n          [-78.408661, 38.173081],\n          [-78.408289, 38.173661],\n          [-78.406754, 38.176057],\n          [-78.405791, 38.177582],\n          [-78.405633, 38.177824],\n          [-78.404819, 38.179105],\n          [-78.40451, 38.179581],\n          [-78.403702, 38.180857],\n          [-78.403534, 38.181116],\n          [-78.40229, 38.183084],\n          [-78.402, 38.183534],\n          [-78.401567, 38.184219],\n          [-78.401491, 38.184329],\n          [-78.400918, 38.18523],\n          [-78.400512, 38.185861],\n          [-78.399321, 38.187671],\n          [-78.399195, 38.187856],\n          [-78.399077, 38.188041],\n          [-78.398689, 38.188617],\n          [-78.398558, 38.18882],\n          [-78.397589, 38.190295],\n          [-78.3974, 38.190566],\n          [-78.397207, 38.19086],\n          [-78.396877, 38.191349],\n          [-78.396731, 38.191574],\n          [-78.396016, 38.192652],\n          [-78.395969, 38.192724],\n          [-78.395198, 38.193895],\n          [-78.395145, 38.193978],\n          [-78.395092, 38.194057],\n          [-78.395078, 38.194078],\n          [-78.394787, 38.194511],\n          [-78.394461, 38.19501],\n          [-78.394425, 38.195065],\n          [-78.393867, 38.195904],\n          [-78.393697, 38.196162],\n          [-78.392569, 38.197862],\n          [-78.392356, 38.198186],\n          [-78.391791, 38.199049],\n          [-78.3916, 38.199341],\n          [-78.391424, 38.19959],\n          [-78.391056, 38.200141],\n          [-78.390364, 38.201178],\n          [-78.388697, 38.203713],\n          [-78.387884, 38.204937],\n          [-78.387682, 38.20524],\n          [-78.387424, 38.205639],\n          [-78.386997, 38.206278],\n          [-78.386781, 38.206604],\n          [-78.386138, 38.207581],\n          [-78.385992, 38.207804],\n          [-78.385531, 38.2085],\n          [-78.38498, 38.209334],\n          [-78.384853, 38.209537],\n          [-78.383889, 38.210987],\n          [-78.383519, 38.211533],\n          [-78.383408, 38.211705],\n          [-78.383194, 38.212041],\n          [-78.382209, 38.213531],\n          [-78.381949, 38.213932],\n          [-78.381401, 38.214759],\n          [-78.380953, 38.215433],\n          [-78.380697, 38.215818],\n          [-78.380472, 38.216158],\n          [-78.379118, 38.218196],\n          [-78.378999, 38.218384],\n          [-78.37862, 38.21895],\n          [-78.377882, 38.220071],\n          [-78.377739, 38.220289],\n          [-78.377587, 38.220523],\n          [-78.376908, 38.221535],\n          [-78.376698, 38.221851],\n          [-78.376516, 38.222128],\n          [-78.375966, 38.222959],\n          [-78.375503, 38.223658],\n          [-78.374143, 38.225716],\n          [-78.373741, 38.226317],\n          [-78.372465, 38.228246],\n          [-78.371604, 38.229546],\n          [-78.371224, 38.230126],\n          [-78.37075, 38.230832],\n          [-78.370117, 38.231792],\n          [-78.369796, 38.23229],\n          [-78.369344, 38.233031],\n          [-78.369247, 38.233202],\n          [-78.369201, 38.233285],\n          [-78.369089, 38.233499],\n          [-78.368757, 38.234191],\n          [-78.368537, 38.23469],\n          [-78.368285, 38.235273],\n          [-78.367348, 38.237406],\n          [-78.367125, 38.237924],\n          [-78.366876, 38.23848],\n          [-78.366632, 38.239054],\n          [-78.366538, 38.239263],\n          [-78.366315, 38.239761],\n          [-78.365981, 38.240523],\n          [-78.365112, 38.242495],\n          [-78.364536, 38.243815],\n          [-78.364277, 38.244425],\n          [-78.363872, 38.245322],\n          [-78.363644, 38.245831],\n          [-78.363475, 38.246227],\n          [-78.363324, 38.246579],\n          [-78.363065, 38.24716],\n          [-78.362399, 38.248697],\n          [-78.362213, 38.249115],\n          [-78.36185, 38.249928],\n          [-78.360994, 38.251906],\n          [-78.360894, 38.252122],\n          [-78.360732, 38.252472],\n          [-78.359818, 38.254556],\n          [-78.359604, 38.255032],\n          [-78.358451, 38.257672],\n          [-78.35837, 38.257854],\n          [-78.357235, 38.260418],\n          [-78.35697, 38.261034],\n          [-78.356749, 38.261526],\n          [-78.356328, 38.262487],\n          [-78.3557, 38.26392],\n          [-78.355441, 38.264489],\n          [-78.354985, 38.265534],\n          [-78.354199, 38.267311],\n          [-78.354014, 38.267697],\n          [-78.353899, 38.267927],\n          [-78.353632, 38.268419],\n          [-78.353386, 38.268835],\n          [-78.353012, 38.269405],\n          [-78.352727, 38.269807],\n          [-78.352433, 38.270193],\n          [-78.351176, 38.271816],\n          [-78.35069, 38.272444],\n          [-78.350332, 38.272914],\n          [-78.349867, 38.273496],\n          [-78.349659, 38.273731],\n          [-78.349448, 38.273949],\n          [-78.349246, 38.274133],\n          [-78.348925, 38.274393],\n          [-78.348653, 38.274592],\n          [-78.348309, 38.274816],\n          [-78.346752, 38.275754],\n          [-78.345609, 38.276449],\n          [-78.34394, 38.277447],\n          [-78.343411, 38.277789],\n          [-78.343205, 38.277938],\n          [-78.342906, 38.278167],\n          [-78.342692, 38.278348],\n          [-78.342621, 38.27841],\n          [-78.342399, 38.278622],\n          [-78.342335, 38.278686],\n          [-78.342171, 38.278857],\n          [-78.341631, 38.279482],\n          [-78.341204, 38.280003],\n          [-78.341139, 38.280089],\n          [-78.341053, 38.280202],\n          [-78.340551, 38.280804],\n          [-78.34033, 38.281097],\n          [-78.339739, 38.281771],\n          [-78.337121, 38.284947],\n          [-78.335554, 38.286807],\n          [-78.334912, 38.287652],\n          [-78.334363, 38.288479],\n          [-78.333901, 38.289321],\n          [-78.332891, 38.291302],\n          [-78.33264, 38.291856],\n          [-78.332046, 38.29316],\n          [-78.331547, 38.294091],\n          [-78.33002, 38.297253],\n          [-78.328705, 38.299896],\n          [-78.328454, 38.300437],\n          [-78.327604, 38.302025],\n          [-78.326529, 38.303681],\n          [-78.325643, 38.304891],\n          [-78.325058, 38.305662],\n          [-78.32399, 38.30691],\n          [-78.3236, 38.307359],\n          [-78.323233, 38.30771],\n          [-78.322626, 38.308335],\n          [-78.320591, 38.310229],\n          [-78.317859, 38.312439],\n          [-78.317136, 38.313055],\n          [-78.314274, 38.315396],\n          [-78.313204, 38.316275],\n          [-78.313084, 38.316374],\n          [-78.312238, 38.317069],\n          [-78.31127, 38.317874],\n          [-78.310555, 38.318624],\n          [-78.308339, 38.321068],\n          [-78.307189, 38.322326],\n          [-78.306432, 38.323147],\n          [-78.305157, 38.324565],\n          [-78.299683, 38.33067],\n          [-78.296227, 38.334366],\n          [-78.294775, 38.336025],\n          [-78.294422, 38.336434],\n          [-78.293518, 38.337393],\n          [-78.292283, 38.338774],\n          [-78.290905, 38.340301],\n          [-78.289054, 38.34231],\n          [-78.287698, 38.343781],\n          [-78.286127, 38.345511],\n          [-78.284805, 38.346961],\n          [-78.284197, 38.347653],\n          [-78.281261, 38.350904],\n          [-78.27928, 38.353063],\n          [-78.277989, 38.354462],\n          [-78.276967, 38.355626],\n          [-78.275482, 38.357205],\n          [-78.275108, 38.357686],\n          [-78.273995, 38.359116],\n          [-78.272612, 38.361053],\n          [-78.269402, 38.365549],\n          [-78.268281, 38.367067],\n          [-78.26707, 38.368543],\n          [-78.266209, 38.369424],\n          [-78.26463, 38.370803],\n          [-78.263855, 38.371431],\n          [-78.262777, 38.372178],\n          [-78.262167, 38.372601],\n          [-78.258589, 38.375046],\n          [-78.253931, 38.378242],\n          [-78.253419, 38.378585],\n          [-78.252722, 38.379065],\n          [-78.251038, 38.380279],\n          [-78.249725, 38.3814],\n          [-78.248824, 38.38242],\n          [-78.247019, 38.384778],\n          [-78.243045, 38.39007],\n          [-78.242379, 38.390835],\n          [-78.241798, 38.391304],\n          [-78.241358, 38.391649],\n          [-78.240659, 38.392107],\n          [-78.239791, 38.392562],\n          [-78.236781, 38.394134],\n          [-78.234618, 38.395478],\n          [-78.233524, 38.396238],\n          [-78.231366, 38.397688],\n          [-78.230593, 38.398159],\n          [-78.229713, 38.398631],\n          [-78.22927, 38.398846],\n          [-78.227176, 38.399941],\n          [-78.224001, 38.401573],\n          [-78.221687, 38.402762],\n          [-78.220927, 38.403115],\n          [-78.219583, 38.403494],\n          [-78.217956, 38.403869],\n          [-78.216834, 38.404329],\n          [-78.216198, 38.404653],\n          [-78.215673, 38.404943],\n          [-78.2147, 38.405692],\n          [-78.214341, 38.406017],\n          [-78.211846, 38.409013],\n          [-78.211205, 38.409859],\n          [-78.208931, 38.412831],\n          [-78.207891, 38.413946],\n          [-78.207388, 38.414459],\n          [-78.206848, 38.414885],\n          [-78.20502, 38.416246],\n          [-78.204339, 38.416746],\n          [-78.203587, 38.417231],\n          [-78.201789, 38.418025],\n          [-78.199931, 38.418788],\n          [-78.198775, 38.419213],\n          [-78.197516, 38.419599],\n          [-78.196891, 38.419728],\n          [-78.193593, 38.420311],\n          [-78.192656, 38.420508],\n          [-78.191772, 38.420736],\n          [-78.190615, 38.421137],\n          [-78.189756, 38.421485],\n          [-78.189131, 38.421795],\n          [-78.188009, 38.422501],\n          [-78.186635, 38.423265],\n          [-78.185396, 38.423841],\n          [-78.184545, 38.424162],\n          [-78.179643, 38.425692],\n          [-78.176595, 38.426575],\n          [-78.175037, 38.427149],\n          [-78.174014, 38.427529],\n          [-78.171007, 38.428688],\n          [-78.169272, 38.429381],\n          [-78.165511, 38.430827],\n          [-78.164119, 38.431371],\n          [-78.162591, 38.431967],\n          [-78.161653, 38.432308],\n          [-78.160661, 38.43271],\n          [-78.160269, 38.432865],\n          [-78.159874, 38.433009],\n          [-78.157491, 38.433942],\n          [-78.157022, 38.434133],\n          [-78.156281, 38.434403],\n          [-78.154122, 38.435214],\n          [-78.152887, 38.435503],\n          [-78.151935, 38.435645],\n          [-78.151237, 38.435723],\n          [-78.149391, 38.435895],\n          [-78.145341, 38.436294],\n          [-78.143178, 38.436516],\n          [-78.141588, 38.436723],\n          [-78.140742, 38.436927],\n          [-78.139967, 38.43716],\n          [-78.139029, 38.437478],\n          [-78.138213, 38.437833],\n          [-78.13673, 38.438732],\n          [-78.135769, 38.439493],\n          [-78.133667, 38.441543],\n          [-78.13309, 38.442092],\n          [-78.132637, 38.442565],\n          [-78.131362, 38.443807],\n          [-78.131197, 38.443972],\n          [-78.13069, 38.444456],\n          [-78.13004, 38.445093],\n          [-78.129654, 38.445515],\n          [-78.129431, 38.445788],\n          [-78.129306, 38.445939],\n          [-78.129135, 38.446147],\n          [-78.126535, 38.449414],\n          [-78.12559, 38.450596],\n          [-78.124937, 38.451403],\n          [-78.12463, 38.451786],\n          [-78.122999, 38.453819],\n          [-78.12268, 38.454222],\n          [-78.122212, 38.454799],\n          [-78.122012, 38.455018],\n          [-78.121815, 38.455209],\n          [-78.121657, 38.455346],\n          [-78.121484, 38.455481],\n          [-78.121283, 38.455622],\n          [-78.121072, 38.455755],\n          [-78.120838, 38.455889],\n          [-78.120605, 38.456007],\n          [-78.120411, 38.456093],\n          [-78.120081, 38.45622],\n          [-78.11988, 38.456286],\n          [-78.119617, 38.456362],\n          [-78.119481, 38.456395],\n          [-78.119029, 38.456484],\n          [-78.118859, 38.456513],\n          [-78.118556, 38.456543],\n          [-78.118252, 38.456558],\n          [-78.117886, 38.45656],\n          [-78.117582, 38.456545],\n          [-78.117215, 38.456509],\n          [-78.11691, 38.456463],\n          [-78.116669, 38.456417],\n          [-78.116299, 38.456332],\n          [-78.114395, 38.455867],\n          [-78.113075, 38.455549],\n          [-78.112183, 38.455337],\n          [-78.111983, 38.455288],\n          [-78.110622, 38.454956],\n          [-78.109647, 38.454713],\n          [-78.109318, 38.454619],\n          [-78.108646, 38.454427],\n          [-78.108148, 38.454266],\n          [-78.107826, 38.454152],\n          [-78.107433, 38.454006],\n          [-78.106215, 38.453523],\n          [-78.103244, 38.452284],\n          [-78.103113, 38.45223],\n          [-78.101465, 38.451517],\n          [-78.100793, 38.451267],\n          [-78.099999, 38.450965],\n          [-78.099633, 38.450843],\n          [-78.099366, 38.450762],\n          [-78.098981, 38.450649],\n          [-78.098604, 38.450547],\n          [-78.098262, 38.45046],\n          [-78.09792, 38.450384],\n          [-78.096808, 38.450181],\n          [-78.096151, 38.450083],\n          [-78.095446, 38.449969],\n          [-78.093727, 38.449707],\n          [-78.092677, 38.449547],\n          [-78.092158, 38.449481],\n          [-78.091766, 38.449445],\n          [-78.091635, 38.449437],\n          [-78.091391, 38.44943],\n          [-78.09088, 38.449437],\n          [-78.090541, 38.449459],\n          [-78.090154, 38.449505],\n          [-78.090027, 38.449526],\n          [-78.089761, 38.44957],\n          [-78.089091, 38.449707],\n          [-78.08849, 38.449845],\n          [-78.087312, 38.450134],\n          [-78.086546, 38.450314],\n          [-78.086092, 38.450427],\n          [-78.085716, 38.450516],\n          [-78.085217, 38.45064],\n          [-78.083614, 38.45102],\n          [-78.082588, 38.451268],\n          [-78.081682, 38.451496],\n          [-78.080934, 38.451707],\n          [-78.080808, 38.451743],\n          [-78.080252, 38.451928],\n          [-78.080061, 38.451995],\n          [-78.079356, 38.452244],\n          [-78.079056, 38.452366],\n          [-78.077758, 38.452899],\n          [-78.07693, 38.453218],\n          [-78.07648, 38.453363],\n          [-78.075972, 38.453504],\n          [-78.075519, 38.453613],\n          [-78.075245, 38.453672],\n          [-78.074633, 38.453773],\n          [-78.073634, 38.453917],\n          [-78.073086, 38.453985],\n          [-78.071708, 38.454165],\n          [-78.070367, 38.45434],\n          [-78.069606, 38.454439],\n          [-78.065196, 38.455001],\n          [-78.0636, 38.455212],\n          [-78.062967, 38.455296],\n          [-78.062279, 38.455383],\n          [-78.061807, 38.45545],\n          [-78.061375, 38.455516],\n          [-78.060496, 38.455651],\n          [-78.059099, 38.455874],\n          [-78.058415, 38.455997],\n          [-78.057861, 38.456107],\n          [-78.057398, 38.456211],\n          [-78.057094, 38.456284],\n          [-78.055369, 38.456762],\n          [-78.054558, 38.456978],\n          [-78.05416, 38.457057],\n          [-78.053923, 38.4571],\n          [-78.053692, 38.457137],\n          [-78.053464, 38.457172],\n          [-78.052965, 38.457229],\n          [-78.052547, 38.457266],\n          [-78.05168, 38.457327],\n          [-78.051381, 38.457343],\n          [-78.051209, 38.457356],\n          [-78.050231, 38.457415],\n          [-78.049522, 38.45745],\n          [-78.049115, 38.457457],\n          [-78.048707, 38.45745],\n          [-78.048107, 38.457414],\n          [-78.046583, 38.457296],\n          [-78.045473, 38.457209],\n          [-78.043615, 38.457066],\n          [-78.04299, 38.457014],\n          [-78.041948, 38.456934],\n          [-78.041564, 38.4569],\n          [-78.040447, 38.456809],\n          [-78.039807, 38.456752],\n          [-78.039565, 38.456722],\n          [-78.038614, 38.456586],\n          [-78.037992, 38.45648],\n          [-78.036619, 38.456229],\n          [-78.036312, 38.456174],\n          [-78.035316, 38.455996],\n          [-78.033993, 38.455756],\n          [-78.033455, 38.455659],\n          [-78.032995, 38.455576],\n          [-78.032344, 38.455462],\n          [-78.032225, 38.455441],\n          [-78.032071, 38.455411],\n          [-78.031918, 38.455381],\n          [-78.030629, 38.455156],\n          [-78.030487, 38.455136],\n          [-78.02993, 38.455035],\n          [-78.029397, 38.454939],\n          [-78.027154, 38.454551],\n          [-78.026507, 38.454439],\n          [-78.026143, 38.454368],\n          [-78.025005, 38.454171],\n          [-78.024336, 38.45404],\n          [-78.023622, 38.453878],\n          [-78.02312, 38.453727],\n          [-78.02273, 38.453603],\n          [-78.022384, 38.453473],\n          [-78.021945, 38.453293],\n          [-78.021688, 38.453179],\n          [-78.02141, 38.45304],\n          [-78.020949, 38.452794],\n          [-78.020606, 38.452593],\n          [-78.018376, 38.451156],\n          [-78.015052, 38.449001],\n          [-78.013038, 38.447702],\n          [-78.012718, 38.447476],\n          [-78.012365, 38.447314],\n          [-78.011913, 38.44707],\n          [-78.011467, 38.446849],\n          [-78.011017, 38.446646],\n          [-78.010785, 38.446548],\n          [-78.01041, 38.446389],\n          [-78.009947, 38.446212],\n          [-78.009475, 38.446047],\n          [-78.009032, 38.44592],\n          [-78.008198, 38.445668],\n          [-78.007806, 38.445574],\n          [-78.007536, 38.445509],\n          [-78.00704, 38.445404],\n          [-78.006541, 38.445314],\n          [-78.006039, 38.445234],\n          [-78.005535, 38.445168],\n          [-78.004882, 38.445103],\n          [-78.00427, 38.44506],\n          [-78.003857, 38.445042],\n          [-78.003259, 38.445032],\n          [-77.996098, 38.445039],\n          [-77.995524, 38.445052],\n          [-77.995083, 38.445072],\n          [-77.9946, 38.445108],\n          [-77.994291, 38.44514],\n          [-77.994119, 38.445159],\n          [-77.993562, 38.445235],\n          [-77.993077, 38.445314],\n          [-77.992738, 38.44538],\n          [-77.992304, 38.445476],\n          [-77.991774, 38.445609],\n          [-77.991277, 38.445754],\n          [-77.990885, 38.44588],\n          [-77.990401, 38.446049],\n          [-77.989902, 38.446248],\n          [-77.98951, 38.446417],\n          [-77.989127, 38.446595],\n          [-77.988671, 38.446826],\n          [-77.988226, 38.44707],\n          [-77.988015, 38.447193],\n          [-77.987964, 38.447222],\n          [-77.986229, 38.448266],\n          [-77.982377, 38.450578],\n          [-77.980067, 38.451965],\n          [-77.978396, 38.452971],\n          [-77.976723, 38.453978],\n          [-77.971729, 38.456974],\n          [-77.970854, 38.457513],\n          [-77.970447, 38.457776],\n          [-77.969812, 38.458205],\n          [-77.969672, 38.458304],\n          [-77.969294, 38.458571],\n          [-77.968878, 38.458872],\n          [-77.968162, 38.459423],\n          [-77.967696, 38.459799],\n          [-77.967125, 38.46028],\n          [-77.966325, 38.460982],\n          [-77.965258, 38.461918],\n          [-77.964866, 38.462267],\n          [-77.960196, 38.466376],\n          [-77.955939, 38.470123],\n          [-77.954947, 38.470996],\n          [-77.954533, 38.471358],\n          [-77.953922, 38.471893],\n          [-77.953458, 38.472304],\n          [-77.953176, 38.472548],\n          [-77.952583, 38.473072],\n          [-77.951119, 38.474355],\n          [-77.950943, 38.474509],\n          [-77.949669, 38.47563],\n          [-77.948949, 38.476265],\n          [-77.948002, 38.477098],\n          [-77.940672, 38.483548],\n          [-77.940481, 38.483731],\n          [-77.940188, 38.484012],\n          [-77.939893, 38.484318],\n          [-77.939484, 38.484776],\n          [-77.93926, 38.485054],\n          [-77.939039, 38.48534],\n          [-77.938835, 38.485618],\n          [-77.938574, 38.486003],\n          [-77.938385, 38.4863],\n          [-77.938154, 38.486695],\n          [-77.936929, 38.489071],\n          [-77.936476, 38.48995],\n          [-77.936307, 38.490277],\n          [-77.936213, 38.490449],\n          [-77.936032, 38.490779],\n          [-77.935797, 38.491168],\n          [-77.935515, 38.491593],\n          [-77.935238, 38.491981],\n          [-77.934904, 38.492412],\n          [-77.934836, 38.492493],\n          [-77.93462, 38.492753],\n          [-77.934238, 38.493183],\n          [-77.933985, 38.493449],\n          [-77.933681, 38.493753],\n          [-77.933395, 38.494018],\n          [-77.933018, 38.494354],\n          [-77.932749, 38.494585],\n          [-77.932252, 38.494973],\n          [-77.93171, 38.495374],\n          [-77.931341, 38.495628],\n          [-77.930966, 38.495866],\n          [-77.930194, 38.496327],\n          [-77.929795, 38.496546],\n          [-77.929468, 38.496713],\n          [-77.928898, 38.496989],\n          [-77.928401, 38.497211],\n          [-77.927814, 38.497454],\n          [-77.927352, 38.49763],\n          [-77.926883, 38.497792],\n          [-77.92627, 38.497988],\n          [-77.925745, 38.498139],\n          [-77.925688, 38.498154],\n          [-77.925207, 38.498279],\n          [-77.924635, 38.498412],\n          [-77.924059, 38.498531],\n          [-77.923478, 38.498637],\n          [-77.923244, 38.498675],\n          [-77.9209, 38.499106],\n          [-77.920407, 38.499196],\n          [-77.916265, 38.499951],\n          [-77.914897, 38.500194],\n          [-77.913262, 38.500498],\n          [-77.912906, 38.500563],\n          [-77.911059, 38.5009],\n          [-77.910401, 38.501012],\n          [-77.909308, 38.501222],\n          [-77.90816, 38.501425],\n          [-77.906956, 38.501647],\n          [-77.902649, 38.502433],\n          [-77.901836, 38.502578],\n          [-77.901383, 38.502661],\n          [-77.899056, 38.503088],\n          [-77.897887, 38.503302],\n          [-77.896932, 38.503454],\n          [-77.896481, 38.503514],\n          [-77.896026, 38.50356],\n          [-77.89557, 38.503592],\n          [-77.895091, 38.503613],\n          [-77.894605, 38.503621],\n          [-77.894338, 38.503619],\n          [-77.894023, 38.503612],\n          [-77.893539, 38.503589],\n          [-77.893152, 38.50356],\n          [-77.891645, 38.503392],\n          [-77.891145, 38.503351],\n          [-77.890705, 38.503331],\n          [-77.890264, 38.503325],\n          [-77.89, 38.503328],\n          [-77.889421, 38.503346],\n          [-77.888918, 38.503375],\n          [-77.888578, 38.503406],\n          [-77.888318, 38.503429],\n          [-77.887823, 38.50349],\n          [-77.887334, 38.503566],\n          [-77.886849, 38.503655],\n          [-77.886369, 38.503759],\n          [-77.885701, 38.503929],\n          [-77.88504, 38.504114],\n          [-77.883872, 38.504451],\n          [-77.882026, 38.504972],\n          [-77.880726, 38.50535],\n          [-77.879756, 38.505628],\n          [-77.879416, 38.505726],\n          [-77.878734, 38.505916],\n          [-77.87665, 38.506514],\n          [-77.873295, 38.507467],\n          [-77.870872, 38.508164],\n          [-77.867574, 38.509112],\n          [-77.86643, 38.509426],\n          [-77.865139, 38.509804],\n          [-77.864878, 38.509875],\n          [-77.864614, 38.509946],\n          [-77.864004, 38.510124],\n          [-77.863963, 38.510136],\n          [-77.863243, 38.510359],\n          [-77.862776, 38.510515],\n          [-77.862313, 38.51068],\n          [-77.86153, 38.510992],\n          [-77.86091, 38.511252],\n          [-77.860341, 38.511504],\n          [-77.860101, 38.511597],\n          [-77.859873, 38.511706],\n          [-77.859049, 38.512033],\n          [-77.858596, 38.512199],\n          [-77.85801, 38.512393],\n          [-77.85641, 38.512859],\n          [-77.85546, 38.513131],\n          [-77.853636, 38.513652],\n          [-77.852939, 38.513842],\n          [-77.85189, 38.514117],\n          [-77.851773, 38.514147],\n          [-77.851155, 38.514282],\n          [-77.850783, 38.514355],\n          [-77.850158, 38.514468],\n          [-77.849529, 38.514566],\n          [-77.848611, 38.514673],\n          [-77.847601, 38.514814],\n          [-77.847219, 38.514874],\n          [-77.846744, 38.514961],\n          [-77.846275, 38.515063],\n          [-77.845622, 38.515227],\n          [-77.843493, 38.515828],\n          [-77.840926, 38.516554],\n          [-77.838953, 38.517123],\n          [-77.838611, 38.51724],\n          [-77.838276, 38.51737],\n          [-77.838087, 38.517452],\n          [-77.837878, 38.517559],\n          [-77.837641, 38.517698],\n          [-77.837371, 38.517879],\n          [-77.837159, 38.518042],\n          [-77.836631, 38.518508],\n          [-77.833939, 38.52107],\n          [-77.833536, 38.521444],\n          [-77.832859, 38.52207],\n          [-77.832618, 38.52227],\n          [-77.832363, 38.52246],\n          [-77.832151, 38.522605],\n          [-77.831761, 38.52284],\n          [-77.831645, 38.522905],\n          [-77.831341, 38.523059],\n          [-77.831027, 38.523201],\n          [-77.830705, 38.52333],\n          [-77.830375, 38.523446],\n          [-77.82725, 38.524408],\n          [-77.825282, 38.525005],\n          [-77.824825, 38.525153],\n          [-77.824766, 38.525172],\n          [-77.82414, 38.525403],\n          [-77.823904, 38.525501],\n          [-77.823444, 38.525707],\n          [-77.823161, 38.525842],\n          [-77.822816, 38.526023],\n          [-77.822483, 38.526216],\n          [-77.82216, 38.526429],\n          [-77.821905, 38.526618],\n          [-77.821824, 38.526681],\n          [-77.821661, 38.526816],\n          [-77.82143, 38.527024],\n          [-77.821026, 38.527454],\n          [-77.820758, 38.527783],\n          [-77.820516, 38.528112],\n          [-77.820197, 38.52856],\n          [-77.819895, 38.529029],\n          [-77.81945, 38.529798],\n          [-77.818541, 38.531386],\n          [-77.817476, 38.533249],\n          [-77.817174, 38.533749],\n          [-77.815779, 38.536111],\n          [-77.812836, 38.541042],\n          [-77.812145, 38.542152],\n          [-77.811443, 38.543345],\n          [-77.81107, 38.543916],\n          [-77.809169, 38.54677],\n          [-77.807061, 38.549912],\n          [-77.805801, 38.55177],\n          [-77.803189, 38.555743],\n          [-77.802664, 38.55653],\n          [-77.802442, 38.556869],\n          [-77.802253, 38.557175],\n          [-77.802079, 38.557492],\n          [-77.801838, 38.557971],\n          [-77.801782, 38.55809],\n          [-77.801657, 38.55838],\n          [-77.801522, 38.558722],\n          [-77.801429, 38.558994],\n          [-77.801302, 38.559432],\n          [-77.801209, 38.559822],\n          [-77.801144, 38.560169],\n          [-77.801065, 38.560727],\n          [-77.801025, 38.56131],\n          [-77.801027, 38.561813],\n          [-77.801049, 38.562487],\n          [-77.801069, 38.562893],\n          [-77.801213, 38.565749],\n          [-77.801305, 38.567636],\n          [-77.80137, 38.568961],\n          [-77.801541, 38.572402],\n          [-77.801599, 38.573623],\n          [-77.801669, 38.575224],\n          [-77.801707, 38.575829],\n          [-77.801772, 38.577117],\n          [-77.801874, 38.579138],\n          [-77.801902, 38.579759],\n          [-77.801914, 38.579914],\n          [-77.801945, 38.580642],\n          [-77.801977, 38.581198],\n          [-77.802036, 38.582417],\n          [-77.802118, 38.584113],\n          [-77.802126, 38.584391],\n          [-77.802131, 38.584986],\n          [-77.802118, 38.585525],\n          [-77.802088, 38.586052],\n          [-77.802017, 38.586791],\n          [-77.801743, 38.589112],\n          [-77.801725, 38.589268],\n          [-77.801437, 38.591698],\n          [-77.801342, 38.5925],\n          [-77.801281, 38.593006],\n          [-77.800994, 38.595455],\n          [-77.800644, 38.598437],\n          [-77.800492, 38.599704],\n          [-77.800457, 38.599972],\n          [-77.800268, 38.601612],\n          [-77.800209, 38.602305],\n          [-77.80017, 38.602992],\n          [-77.800152, 38.603904],\n          [-77.800152, 38.604035],\n          [-77.800152, 38.604483],\n          [-77.800172, 38.60559],\n          [-77.800187, 38.606551],\n          [-77.800205, 38.607644],\n          [-77.80022, 38.608813],\n          [-77.800237, 38.609384],\n          [-77.800232, 38.610093],\n          [-77.800248, 38.611162],\n          [-77.80027, 38.611781],\n          [-77.800276, 38.611972],\n          [-77.800298, 38.612639],\n          [-77.800312, 38.613039],\n          [-77.800332, 38.613399],\n          [-77.800397, 38.614527],\n          [-77.800421, 38.615203],\n          [-77.800432, 38.61575],\n          [-77.800444, 38.616559],\n          [-77.800478, 38.618723],\n          [-77.8005, 38.619601],\n          [-77.800525, 38.620811],\n          [-77.800527, 38.620908],\n          [-77.800548, 38.62192],\n          [-77.80058, 38.623403],\n          [-77.800594, 38.624213],\n          [-77.800603, 38.625413],\n          [-77.80062, 38.627386],\n          [-77.800629, 38.627856],\n          [-77.800651, 38.62934],\n          [-77.800658, 38.629863],\n          [-77.800688, 38.631295],\n          [-77.800701, 38.63219],\n          [-77.800708, 38.632656],\n          [-77.800729, 38.632937],\n          [-77.800749, 38.6331],\n          [-77.800764, 38.633194],\n          [-77.800824, 38.633493],\n          [-77.8009, 38.63375],\n          [-77.801033, 38.634132],\n          [-77.801091, 38.634277],\n          [-77.801339, 38.634852],\n          [-77.801526, 38.635289],\n          [-77.801703, 38.635692],\n          [-77.801752, 38.635808],\n          [-77.801965, 38.636295],\n          [-77.802897, 38.638462],\n          [-77.802996, 38.638693],\n          [-77.803206, 38.639174],\n          [-77.803351, 38.639505],\n          [-77.803635, 38.640158],\n          [-77.803774, 38.640485],\n          [-77.80405, 38.641121],\n          [-77.804137, 38.641325],\n          [-77.804199, 38.641471],\n          [-77.804367, 38.641868],\n          [-77.804398, 38.641941],\n          [-77.804535, 38.642359],\n          [-77.804602, 38.642621],\n          [-77.804642, 38.642832],\n          [-77.804669, 38.643038],\n          [-77.804677, 38.643118],\n          [-77.804687, 38.643291],\n          [-77.804696, 38.643722],\n          [-77.804696, 38.644409],\n          [-77.804677, 38.644766],\n          [-77.804636, 38.645023],\n          [-77.804576, 38.645279],\n          [-77.804498, 38.645531],\n          [-77.804445, 38.645671],\n          [-77.804179, 38.646296],\n          [-77.803976, 38.646795],\n          [-77.803645, 38.647584],\n          [-77.803607, 38.647672],\n          [-77.803037, 38.649027],\n          [-77.802582, 38.650099],\n          [-77.802488, 38.65032],\n          [-77.80226, 38.650816],\n          [-77.802226, 38.650891],\n          [-77.801705, 38.651973],\n          [-77.801524, 38.652348],\n          [-77.800517, 38.654435],\n          [-77.800311, 38.654856],\n          [-77.800109, 38.655223],\n          [-77.799504, 38.656216],\n          [-77.799258, 38.656629],\n          [-77.799064, 38.656995],\n          [-77.798952, 38.657238],\n          [-77.798593, 38.658126],\n          [-77.798524, 38.658287],\n          [-77.798395, 38.658591],\n          [-77.798266, 38.658901],\n          [-77.798049, 38.659428],\n          [-77.797829, 38.659963],\n          [-77.79736, 38.661105],\n          [-77.797075, 38.661795],\n          [-77.796724, 38.662641],\n          [-77.79625, 38.663783],\n          [-77.796094, 38.664161],\n          [-77.795637, 38.665271],\n          [-77.79528, 38.666132],\n          [-77.795248, 38.66621],\n          [-77.794069, 38.669063],\n          [-77.793674, 38.670024],\n          [-77.793379, 38.670723],\n          [-77.793244, 38.671036],\n          [-77.793103, 38.671307],\n          [-77.792943, 38.671571],\n          [-77.792813, 38.671755],\n          [-77.792641, 38.671968],\n          [-77.792454, 38.672174],\n          [-77.792251, 38.672371],\n          [-77.791496, 38.673047],\n          [-77.791134, 38.673372],\n          [-77.790643, 38.673809],\n          [-77.789269, 38.675032],\n          [-77.788765, 38.675507],\n          [-77.788692, 38.675576],\n          [-77.788181, 38.676104],\n          [-77.787807, 38.676549],\n          [-77.787668, 38.676743],\n          [-77.787501, 38.677031],\n          [-77.78738, 38.677265],\n          [-77.78733, 38.677383],\n          [-77.787232, 38.677659],\n          [-77.787165, 38.677911],\n          [-77.787115, 38.678177],\n          [-77.787085, 38.678445],\n          [-77.787079, 38.678552],\n          [-77.787095, 38.67913],\n          [-77.787153, 38.679798],\n          [-77.787259, 38.680924],\n          [-77.787331, 38.681886],\n          [-77.787363, 38.682419],\n          [-77.787413, 38.683635],\n          [-77.787401, 38.684203],\n          [-77.787392, 38.684611],\n          [-77.78735, 38.685019],\n          [-77.787315, 38.685264],\n          [-77.787231, 38.685728],\n          [-77.787136, 38.686251],\n          [-77.787114, 38.686332],\n          [-77.78692, 38.686986],\n          [-77.786696, 38.687619],\n          [-77.786501, 38.688074],\n          [-77.786277, 38.68855],\n          [-77.786098, 38.688888],\n          [-77.785944, 38.689154],\n          [-77.785576, 38.689748],\n          [-77.784818, 38.690938],\n          [-77.784516, 38.691425],\n          [-77.784271, 38.691807],\n          [-77.783827, 38.692506],\n          [-77.783401, 38.6932],\n          [-77.783246, 38.693444],\n          [-77.782384, 38.694802],\n          [-77.782205, 38.695084],\n          [-77.781593, 38.696059],\n          [-77.781243, 38.69667],\n          [-77.78108, 38.696994],\n          [-77.780923, 38.697347],\n          [-77.780812, 38.697637],\n          [-77.780687, 38.698004],\n          [-77.780614, 38.698231],\n          [-77.780587, 38.698314],\n          [-77.780392, 38.699181],\n          [-77.780333, 38.699659],\n          [-77.780298, 38.700094],\n          [-77.780287, 38.700389],\n          [-77.780289, 38.700757],\n          [-77.780315, 38.701452],\n          [-77.780365, 38.702797],\n          [-77.780397, 38.703509],\n          [-77.780462, 38.705131],\n          [-77.780535, 38.706895],\n          [-77.780587, 38.708144],\n          [-77.780612, 38.708911],\n          [-77.780675, 38.710324],\n          [-77.780782, 38.713019],\n          [-77.780806, 38.713639],\n          [-77.780906, 38.716128],\n          [-77.780923, 38.716557],\n          [-77.780985, 38.71812],\n          [-77.781094, 38.720811],\n          [-77.781111, 38.721348],\n          [-77.78117, 38.722771],\n          [-77.781205, 38.723428],\n          [-77.781207, 38.723933],\n          [-77.781141, 38.724638],\n          [-77.781062, 38.725028],\n          [-77.780986, 38.725313],\n          [-77.780873, 38.725651],\n          [-77.780799, 38.725838],\n          [-77.780763, 38.72593],\n          [-77.780608, 38.726258],\n          [-77.780457, 38.726537],\n          [-77.78029, 38.726814],\n          [-77.780067, 38.727137],\n          [-77.779841, 38.727426],\n          [-77.779593, 38.727712],\n          [-77.779535, 38.727773],\n          [-77.779432, 38.727882],\n          [-77.779137, 38.728163],\n          [-77.778889, 38.728379],\n          [-77.778564, 38.728638],\n          [-77.777988, 38.729064],\n          [-77.777903, 38.729128],\n          [-77.777813, 38.729195],\n          [-77.777751, 38.72924],\n          [-77.777544, 38.729395],\n          [-77.776507, 38.73018],\n          [-77.77534, 38.731069],\n          [-77.775049, 38.73127],\n          [-77.774364, 38.73177],\n          [-77.774051, 38.732009],\n          [-77.773303, 38.732554],\n          [-77.772496, 38.733155],\n          [-77.772444, 38.733192],\n          [-77.771424, 38.733941],\n          [-77.770375, 38.73472],\n          [-77.769774, 38.735166],\n          [-77.766501, 38.737595],\n          [-77.766092, 38.7379],\n          [-77.766013, 38.737957],\n          [-77.764613, 38.738973],\n          [-77.763699, 38.739647],\n          [-77.760294, 38.742188],\n          [-77.759475, 38.742805],\n          [-77.758292, 38.743704],\n          [-77.757242, 38.744507],\n          [-77.756734, 38.744888],\n          [-77.75607, 38.745394],\n          [-77.755332, 38.74595],\n          [-77.753869, 38.747051],\n          [-77.753512, 38.747317],\n          [-77.752239, 38.748266],\n          [-77.751486, 38.748835],\n          [-77.749304, 38.750477],\n          [-77.747696, 38.751677],\n          [-77.747175, 38.752069],\n          [-77.746636, 38.752468],\n          [-77.746089, 38.752858],\n          [-77.745719, 38.753113],\n          [-77.745109, 38.753534],\n          [-77.744529, 38.753946],\n          [-77.744441, 38.754016],\n          [-77.743143, 38.755039],\n          [-77.742369, 38.755648],\n          [-77.741019, 38.756723],\n          [-77.740302, 38.757289],\n          [-77.74012, 38.757439],\n          [-77.739869, 38.757633],\n          [-77.739452, 38.757933],\n          [-77.738896, 38.758325],\n          [-77.738458, 38.758616],\n          [-77.737994, 38.758912],\n          [-77.737675, 38.759109],\n          [-77.736928, 38.759546],\n          [-77.736529, 38.759764],\n          [-77.73598, 38.760062],\n          [-77.735512, 38.760302],\n          [-77.734641, 38.760749],\n          [-77.731871, 38.762168],\n          [-77.730354, 38.762946],\n          [-77.726563, 38.764904],\n          [-77.726297, 38.765042],\n          [-77.725494, 38.765462],\n          [-77.724993, 38.765717],\n          [-77.724283, 38.76606],\n          [-77.724155, 38.766114],\n          [-77.723683, 38.766274],\n          [-77.723631, 38.766287],\n          [-77.723461, 38.76633],\n          [-77.723208, 38.766384],\n          [-77.722948, 38.766425],\n          [-77.722732, 38.766449],\n          [-77.722439, 38.766466],\n          [-77.722204, 38.76647],\n          [-77.721761, 38.76645],\n          [-77.721338, 38.766416],\n          [-77.720827, 38.766373],\n          [-77.71958, 38.766268],\n          [-77.718945, 38.766226],\n          [-77.71829, 38.766214],\n          [-77.717886, 38.766231],\n          [-77.717644, 38.766248],\n          [-77.717238, 38.766296],\n          [-77.716986, 38.766333],\n          [-77.716478, 38.766426],\n          [-77.715933, 38.766539],\n          [-77.71313, 38.767126],\n          [-77.71253, 38.76725],\n          [-77.711446, 38.767475],\n          [-77.711213, 38.767521],\n          [-77.709832, 38.76781],\n          [-77.709246, 38.767933],\n          [-77.708584, 38.768078],\n          [-77.708134, 38.768177],\n          [-77.707984, 38.768211],\n          [-77.707651, 38.768287],\n          [-77.707208, 38.768389],\n          [-77.707037, 38.768429],\n          [-77.706966, 38.768445],\n          [-77.706604, 38.768529],\n          [-77.705724, 38.768733],\n          [-77.704884, 38.768928],\n          [-77.704008, 38.769125],\n          [-77.703413, 38.769266],\n          [-77.703044, 38.769359],\n          [-77.702667, 38.769454],\n          [-77.702289, 38.769565],\n          [-77.701922, 38.769687],\n          [-77.701705, 38.769766],\n          [-77.701294, 38.769925],\n          [-77.700381, 38.770277],\n          [-77.698624, 38.770957],\n          [-77.69792, 38.771222],\n          [-77.696779, 38.771656],\n          [-77.696286, 38.771839],\n          [-77.694688, 38.772451],\n          [-77.693388, 38.772942],\n          [-77.69338, 38.772945],\n          [-77.69299, 38.773092],\n          [-77.691828, 38.773541],\n          [-77.689985, 38.774273],\n          [-77.689184, 38.774593],\n          [-77.687947, 38.775099],\n          [-77.68652, 38.775696],\n          [-77.686093, 38.775875],\n          [-77.685013, 38.776323],\n          [-77.684548, 38.776508],\n          [-77.683617, 38.77688],\n          [-77.682281, 38.77742],\n          [-77.681906, 38.77757],\n          [-77.680152, 38.778273],\n          [-77.680071, 38.778309],\n          [-77.679964, 38.778348],\n          [-77.67944, 38.778559],\n          [-77.679135, 38.778682],\n          [-77.679008, 38.778733],\n          [-77.678765, 38.778831],\n          [-77.678322, 38.779011],\n          [-77.677302, 38.779417],\n          [-77.677036, 38.779514],\n          [-77.676871, 38.779569],\n          [-77.676375, 38.779711],\n          [-77.675903, 38.779834],\n          [-77.675739, 38.779874],\n          [-77.675282, 38.779966],\n          [-77.675165, 38.77999],\n          [-77.673681, 38.780291],\n          [-77.67245, 38.780538],\n          [-77.671784, 38.780666],\n          [-77.671623, 38.780699],\n          [-77.671392, 38.780752],\n          [-77.670977, 38.780857],\n          [-77.67067, 38.780949],\n          [-77.669909, 38.781181],\n          [-77.669755, 38.781229],\n          [-77.668691, 38.781557],\n          [-77.668105, 38.781729],\n          [-77.66717, 38.781984],\n          [-77.665556, 38.7824],\n          [-77.665397, 38.782443],\n          [-77.66509, 38.782528],\n          [-77.663117, 38.783041],\n          [-77.662729, 38.783142],\n          [-77.658982, 38.784122],\n          [-77.658234, 38.784318],\n          [-77.657487, 38.784515],\n          [-77.656903, 38.784668],\n          [-77.656444, 38.784785],\n          [-77.655772, 38.784954],\n          [-77.655488, 38.785028],\n          [-77.654149, 38.78538],\n          [-77.653073, 38.785665],\n          [-77.652817, 38.785732],\n          [-77.652723, 38.785757],\n          [-77.652335, 38.78586],\n          [-77.650432, 38.786358],\n          [-77.650292, 38.786394],\n          [-77.648546, 38.786845],\n          [-77.648132, 38.786953],\n          [-77.6471, 38.787217],\n          [-77.646912, 38.787266],\n          [-77.646792, 38.787296],\n          [-77.646475, 38.787378],\n          [-77.643862, 38.788066],\n          [-77.643514, 38.788151],\n          [-77.642956, 38.788288],\n          [-77.641845, 38.788545],\n          [-77.641256, 38.788678],\n          [-77.640668, 38.788812],\n          [-77.637878, 38.789456],\n          [-77.637724, 38.789491],\n          [-77.635026, 38.790112],\n          [-77.633026, 38.790572],\n          [-77.631672, 38.790883],\n          [-77.630391, 38.791179],\n          [-77.630168, 38.791231],\n          [-77.629412, 38.791414],\n          [-77.629006, 38.791523],\n          [-77.628982, 38.791529],\n          [-77.628275, 38.791722],\n          [-77.626219, 38.792284],\n          [-77.625465, 38.792483],\n          [-77.624741, 38.792675],\n          [-77.624567, 38.792721],\n          [-77.624468, 38.792748],\n          [-77.624067, 38.792856],\n          [-77.622821, 38.793191],\n          [-77.622323, 38.793326],\n          [-77.622182, 38.793359],\n          [-77.62157, 38.793529],\n          [-77.621412, 38.793572],\n          [-77.620477, 38.793825],\n          [-77.620443, 38.793835],\n          [-77.619193, 38.794171],\n          [-77.619018, 38.794213],\n          [-77.617763, 38.794556],\n          [-77.617092, 38.79473],\n          [-77.616747, 38.794832],\n          [-77.614017, 38.7956],\n          [-77.613309, 38.7958],\n          [-77.613097, 38.795859],\n          [-77.611965, 38.796178],\n          [-77.611011, 38.796432],\n          [-77.609519, 38.79683],\n          [-77.609066, 38.796955],\n          [-77.60887, 38.79701],\n          [-77.608124, 38.797223],\n          [-77.607861, 38.79729],\n          [-77.60659, 38.797608],\n          [-77.604759, 38.798106],\n          [-77.603341, 38.798433],\n          [-77.602615, 38.798623],\n          [-77.60217, 38.798681],\n          [-77.60178, 38.798726],\n          [-77.60159, 38.798739],\n          [-77.601338, 38.79876],\n          [-77.601043, 38.798748],\n          [-77.600761, 38.798726],\n          [-77.600475, 38.798685],\n          [-77.600088, 38.798626],\n          [-77.598701, 38.798329],\n          [-77.598447, 38.798288],\n          [-77.598168, 38.798263],\n          [-77.597945, 38.798266],\n          [-77.597733, 38.798267],\n          [-77.597515, 38.798295],\n          [-77.597295, 38.798329],\n          [-77.59709, 38.79838],\n          [-77.596838, 38.798472],\n          [-77.596056, 38.79873],\n          [-77.595792, 38.798802],\n          [-77.595557, 38.798839],\n          [-77.595321, 38.798872],\n          [-77.595123, 38.798893],\n          [-77.594903, 38.798906],\n          [-77.594606, 38.798902],\n          [-77.592349, 38.798571],\n          [-77.589853, 38.798246],\n          [-77.587564, 38.797961],\n          [-77.584659, 38.797708],\n          [-77.583518, 38.797592],\n          [-77.582596, 38.797507],\n          [-77.581727, 38.797465],\n          [-77.580645, 38.797422],\n          [-77.579853, 38.797408],\n          [-77.579381, 38.797391],\n          [-77.579328, 38.797391],\n          [-77.578346, 38.797391],\n          [-77.576989, 38.797404],\n          [-77.576007, 38.797446],\n          [-77.575373, 38.797504],\n          [-77.571144, 38.797797],\n          [-77.569287, 38.79792],\n          [-77.56555, 38.798187],\n          [-77.561659, 38.798447],\n          [-77.555891, 38.7988],\n          [-77.553755, 38.798951],\n          [-77.550887, 38.799152],\n          [-77.550295, 38.799193],\n          [-77.548407, 38.799331],\n          [-77.54595, 38.799494],\n          [-77.541063, 38.799812],\n          [-77.539341, 38.799946],\n          [-77.536546, 38.800151],\n          [-77.532281, 38.800448],\n          [-77.529135, 38.800667],\n          [-77.525861, 38.800895],\n          [-77.523173, 38.801079],\n          [-77.520134, 38.801324],\n          [-77.519426, 38.801374],\n          [-77.518588, 38.801436],\n          [-77.514662, 38.801698],\n          [-77.51275, 38.801833],\n          [-77.512257, 38.801883],\n          [-77.51176, 38.801949],\n          [-77.511242, 38.802033],\n          [-77.510728, 38.802133],\n          [-77.510237, 38.802245],\n          [-77.509757, 38.802371],\n          [-77.509283, 38.802511],\n          [-77.508762, 38.802686],\n          [-77.508249, 38.802874],\n          [-77.503238, 38.804849],\n          [-77.501867, 38.805383],\n          [-77.49854, 38.806696],\n          [-77.492854, 38.808929],\n          [-77.492586, 38.809039],\n          [-77.491408, 38.809499],\n          [-77.490728, 38.809768],\n          [-77.490387, 38.809903],\n          [-77.489846, 38.810125],\n          [-77.48976, 38.810159],\n          [-77.489588, 38.810228],\n          [-77.488128, 38.810814],\n          [-77.487975, 38.810876],\n          [-77.487938, 38.810891],\n          [-77.487614, 38.811027],\n          [-77.486889, 38.811312],\n          [-77.485515, 38.811841],\n          [-77.481021, 38.813606],\n          [-77.480031, 38.813987],\n          [-77.479528, 38.81418],\n          [-77.478278, 38.814671],\n          [-77.477784, 38.814859],\n          [-77.476696, 38.815283],\n          [-77.476308, 38.815444],\n          [-77.470849, 38.817587],\n          [-77.469997, 38.817934],\n          [-77.469107, 38.818314],\n          [-77.468263, 38.818692],\n          [-77.467788, 38.818912],\n          [-77.466824, 38.819384],\n          [-77.466481, 38.819559],\n          [-77.465978, 38.819814],\n          [-77.465888, 38.819862],\n          [-77.465082, 38.820299],\n          [-77.464689, 38.820516],\n          [-77.463916, 38.820976],\n          [-77.463568, 38.821184],\n          [-77.462817, 38.82165],\n          [-77.462169, 38.822067],\n          [-77.461524, 38.822499],\n          [-77.460742, 38.823046],\n          [-77.459971, 38.823615],\n          [-77.459453, 38.824009],\n          [-77.458829, 38.824505],\n          [-77.458041, 38.825157],\n          [-77.457989, 38.825199],\n          [-77.457719, 38.825436],\n          [-77.457456, 38.825667],\n          [-77.457174, 38.825914],\n          [-77.456485, 38.82655],\n          [-77.455925, 38.827089],\n          [-77.455609, 38.827408],\n          [-77.455354, 38.827664],\n          [-77.455286, 38.827736],\n          [-77.454763, 38.828288],\n          [-77.453687, 38.829492],\n          [-77.45117, 38.83231],\n          [-77.450091, 38.833546],\n          [-77.449603, 38.834072],\n          [-77.4484, 38.835411],\n          [-77.448317, 38.835496],\n          [-77.447073, 38.836883],\n          [-77.446568, 38.837456],\n          [-77.444983, 38.839239],\n          [-77.444962, 38.839261],\n          [-77.44448, 38.839771],\n          [-77.443925, 38.840374],\n          [-77.443121, 38.841151],\n          [-77.442523, 38.841683],\n          [-77.442048, 38.842083],\n          [-77.441563, 38.842472],\n          [-77.44121, 38.842729],\n          [-77.440835, 38.842989],\n          [-77.440353, 38.843301],\n          [-77.439357, 38.843895],\n          [-77.438808, 38.844189],\n          [-77.438412, 38.844388],\n          [-77.438154, 38.844513],\n          [-77.437585, 38.844773],\n          [-77.43695, 38.845042],\n          [-77.436125, 38.845358],\n          [-77.435386, 38.845611],\n          [-77.434841, 38.845778],\n          [-77.434461, 38.845886],\n          [-77.434065, 38.845989],\n          [-77.433588, 38.846102],\n          [-77.432595, 38.846311],\n          [-77.431976, 38.846424],\n          [-77.431894, 38.846439],\n          [-77.43166, 38.846482],\n          [-77.43013, 38.84677],\n          [-77.428638, 38.847052],\n          [-77.427672, 38.847201],\n          [-77.426895, 38.847336],\n          [-77.426613, 38.847387],\n          [-77.423954, 38.847868],\n          [-77.42318, 38.84802],\n          [-77.422578, 38.848129],\n          [-77.421734, 38.848284],\n          [-77.419777, 38.84865],\n          [-77.418032, 38.848977],\n          [-77.416532, 38.849246],\n          [-77.415198, 38.849482],\n          [-77.414151, 38.849672],\n          [-77.413692, 38.849756],\n          [-77.413004, 38.849886],\n          [-77.41025, 38.850388],\n          [-77.408348, 38.850725],\n          [-77.406003, 38.851167],\n          [-77.404553, 38.851419],\n          [-77.403103, 38.851676],\n          [-77.402433, 38.851803],\n          [-77.401513, 38.851954],\n          [-77.399882, 38.852249],\n          [-77.399048, 38.852319],\n          [-77.398718, 38.852375],\n          [-77.397996, 38.852492],\n          [-77.397318, 38.852624],\n          [-77.396752, 38.852714],\n          [-77.396348, 38.852749],\n          [-77.395658, 38.852767],\n          [-77.395009, 38.8528],\n          [-77.394695, 38.852837],\n          [-77.39433, 38.852891],\n          [-77.393802, 38.852984],\n          [-77.393126, 38.853114],\n          [-77.392725, 38.85318],\n          [-77.392095, 38.853297],\n          [-77.391904, 38.853339],\n          [-77.391134, 38.853478],\n          [-77.389836, 38.853723],\n          [-77.389215, 38.853845],\n          [-77.38892, 38.853895],\n          [-77.388716, 38.853941],\n          [-77.388024, 38.854062],\n          [-77.387165, 38.854196],\n          [-77.386771, 38.854162],\n          [-77.386529, 38.854111],\n          [-77.386343, 38.854055],\n          [-77.386187, 38.853987],\n          [-77.386127, 38.853954],\n          [-77.386079, 38.85392],\n          [-77.385986, 38.853839],\n          [-77.385938, 38.853785],\n          [-77.385904, 38.853738],\n          [-77.385849, 38.853638],\n          [-77.385829, 38.853585],\n          [-77.385812, 38.853521],\n          [-77.3858, 38.853402],\n          [-77.385805, 38.853336],\n          [-77.385817, 38.853271],\n          [-77.38586, 38.853155],\n          [-77.385888, 38.853105],\n          [-77.385929, 38.853047],\n          [-77.38601, 38.852959],\n          [-77.386068, 38.85291],\n          [-77.386119, 38.852873],\n          [-77.386233, 38.85281],\n          [-77.386292, 38.852784],\n          [-77.386367, 38.852757],\n          [-77.386444, 38.852736],\n          [-77.386551, 38.852715],\n          [-77.386695, 38.852705],\n          [-77.38684, 38.852711],\n          [-77.386899, 38.85272],\n          [-77.386985, 38.852739],\n          [-77.387131, 38.852784],\n          [-77.387234, 38.852827],\n          [-77.387327, 38.852872],\n          [-77.387501, 38.852977],\n          [-77.387596, 38.853046],\n          [-77.387689, 38.853125],\n          [-77.387869, 38.853301],\n          [-77.388005, 38.8535],\n          [-77.388211, 38.853861],\n          [-77.388248, 38.853958],\n          [-77.38834, 38.854202],\n          [-77.388434, 38.854509],\n          [-77.388512, 38.85483],\n          [-77.388556, 38.855045],\n          [-77.388563, 38.855077],\n          [-77.388615, 38.855398],\n          [-77.38864, 38.855726],\n          [-77.388657, 38.85606],\n          [-77.388632, 38.856494],\n          [-77.388606, 38.856728],\n          [-77.388546, 38.857062],\n          [-77.388494, 38.857283],\n          [-77.388383, 38.85759],\n          [-77.388245, 38.857898],\n          [-77.387962, 38.858392],\n          [-77.387722, 38.858713],\n          [-77.387587, 38.858842],\n          [-77.387448, 38.858992],\n          [-77.38738, 38.859049],\n          [-77.387049, 38.859315],\n          [-77.387001, 38.859355],\n          [-77.386572, 38.859616],\n          [-77.386057, 38.859876],\n          [-77.385696, 38.860037],\n          [-77.385104, 38.860297],\n          [-77.384246, 38.860678],\n          [-77.383311, 38.861091],\n          [-77.382484, 38.861549],\n          [-77.381927, 38.861964],\n          [-77.381649, 38.862271],\n          [-77.381472, 38.862656],\n          [-77.38114, 38.86254],\n          [-77.380676, 38.862336],\n          [-77.380373, 38.862167],\n          [-77.380144, 38.862016],\n          [-77.379932, 38.861857],\n          [-77.379724, 38.861669],\n          [-77.379541, 38.861495],\n          [-77.379299, 38.861256],\n          [-77.379174, 38.86114],\n          [-77.378963, 38.86097],\n          [-77.378779, 38.860822],\n          [-77.378622, 38.860715],\n          [-77.378375, 38.860584],\n          [-77.37825, 38.860526],\n          [-77.377901, 38.860354],\n          [-77.377674, 38.860258],\n          [-77.377503, 38.860194],\n          [-77.376982, 38.860031],\n          [-77.376724, 38.859968],\n          [-77.376465, 38.859908],\n          [-77.376139, 38.859843],\n          [-77.375957, 38.859809],\n          [-77.375449, 38.859704],\n          [-77.37477, 38.859591],\n          [-77.373992, 38.859482],\n          [-77.373385, 38.859411],\n          [-77.373319, 38.859405],\n          [-77.371684, 38.859251],\n          [-77.371331, 38.859226],\n          [-77.37112, 38.859211],\n          [-77.371099, 38.85942],\n          [-77.371098, 38.859619],\n          [-77.371033, 38.860102],\n          [-77.370993, 38.860407],\n          [-77.370953, 38.86073],\n          [-77.370894, 38.86095],\n          [-77.370816, 38.861165],\n          [-77.370757, 38.861296],\n          [-77.370665, 38.861443],\n          [-77.370575, 38.861587],\n          [-77.370384, 38.861875],\n          [-77.370116, 38.862301],\n          [-77.369869, 38.862675],\n          [-77.369695, 38.862937],\n          [-77.369553, 38.863149],\n          [-77.369282, 38.863562],\n          [-77.369075, 38.863878],\n          [-77.369003, 38.863978],\n          [-77.368943, 38.864053],\n          [-77.368872, 38.864143],\n          [-77.368754, 38.864281],\n          [-77.368648, 38.864383],\n          [-77.368548, 38.86448],\n          [-77.368413, 38.864611],\n          [-77.368244, 38.864751],\n          [-77.368139, 38.86483],\n          [-77.368096, 38.864859],\n          [-77.367962, 38.864949],\n          [-77.367753, 38.865087],\n          [-77.36752, 38.865221],\n          [-77.36716, 38.865425],\n          [-77.366916, 38.865565],\n          [-77.366749, 38.865664],\n          [-77.366693, 38.865696],\n          [-77.366603, 38.865757],\n          [-77.36621, 38.865941],\n          [-77.365964, 38.866096],\n          [-77.365677, 38.866275],\n          [-77.365412, 38.86648],\n          [-77.365205, 38.866666],\n          [-77.365092, 38.866802],\n          [-77.364926, 38.867027],\n          [-77.364819, 38.867215],\n          [-77.364795, 38.867271],\n          [-77.364687, 38.867526],\n          [-77.364631, 38.867731],\n          [-77.364602, 38.867885],\n          [-77.364585, 38.868103],\n          [-77.364599, 38.86833],\n          [-77.364602, 38.868416],\n          [-77.364653, 38.868646],\n          [-77.364749, 38.868903],\n          [-77.364915, 38.869232],\n          [-77.365031, 38.869489],\n          [-77.36519, 38.869811],\n          [-77.365353, 38.870145],\n          [-77.365541, 38.870577],\n          [-77.365608, 38.870714],\n          [-77.36564, 38.87078],\n          [-77.365767, 38.871048],\n          [-77.365858, 38.871232],\n          [-77.365914, 38.871335],\n          [-77.366032, 38.871546],\n          [-77.366196, 38.871805],\n          [-77.366355, 38.872046],\n          [-77.366507, 38.872259],\n          [-77.366678, 38.872501],\n          [-77.366856, 38.872754],\n          [-77.366963, 38.872925],\n          [-77.367022, 38.873039],\n          [-77.367081, 38.873163],\n          [-77.367145, 38.873344],\n          [-77.367182, 38.87346],\n          [-77.367204, 38.873534],\n          [-77.367233, 38.873695],\n          [-77.36726, 38.873889],\n          [-77.367273, 38.874003],\n          [-77.367165, 38.874012],\n          [-77.366994, 38.874012],\n          [-77.366779, 38.873999],\n          [-77.366666, 38.873986],\n          [-77.366501, 38.873968],\n          [-77.366313, 38.873934],\n          [-77.366155, 38.873897],\n          [-77.365932, 38.873832],\n          [-77.36562, 38.873728],\n          [-77.365375, 38.873647],\n          [-77.36552, 38.873752],\n          [-77.365645, 38.873824],\n          [-77.365759, 38.873875]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-97.796173, 22.254624]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-97.727508, 22.057641]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.085083, 37.601176]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.766723, 38.651198]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#f0f\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-79.347763, 37.008281],\n          [-79.347763, 37.008281]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-slice/test/out/route2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-113.928988, 50.814121],\n          [-113.928993, 50.813067],\n          [-113.928994, 50.811043],\n          [-113.928995, 50.807418],\n          [-113.929029, 50.804989],\n          [-113.951995, 50.804953],\n          [-113.956813, 50.804931],\n          [-113.957629, 50.804917],\n          [-113.958021, 50.804876],\n          [-113.958575, 50.804779],\n          [-113.959011, 50.804687],\n          [-113.959367, 50.804572],\n          [-113.959858, 50.804414],\n          [-113.960433, 50.804102],\n          [-113.960932, 50.803769],\n          [-113.961563, 50.803306],\n          [-113.961754, 50.803166],\n          [-113.962486, 50.802753],\n          [-113.9641, 50.801549],\n          [-113.966048, 50.800154],\n          [-113.967597, 50.799082],\n          [-113.968657, 50.798289],\n          [-113.969382, 50.79779],\n          [-113.969303, 50.797653],\n          [-113.968833, 50.797177],\n          [-113.968399, 50.796832],\n          [-113.96652, 50.796071],\n          [-113.965325, 50.795579],\n          [-113.964608, 50.795229],\n          [-113.963373, 50.794321],\n          [-113.962094, 50.793355],\n          [-113.956995, 50.789049],\n          [-113.951125, 50.784098],\n          [-113.948573, 50.78194],\n          [-113.941011, 50.775626],\n          [-113.933724, 50.769538],\n          [-113.914584, 50.753577],\n          [-113.906521, 50.746803],\n          [-113.896774, 50.738614],\n          [-113.886275, 50.729779],\n          [-113.88594, 50.729474],\n          [-113.885307, 50.728898],\n          [-113.884903, 50.728477],\n          [-113.884523, 50.728028],\n          [-113.884201, 50.727599],\n          [-113.883986, 50.727298],\n          [-113.883696, 50.726863],\n          [-113.883482, 50.72648],\n          [-113.883314, 50.726156],\n          [-113.883153, 50.725767],\n          [-113.883094, 50.725646],\n          [-113.883031, 50.725465],\n          [-113.882906, 50.725155],\n          [-113.882792, 50.724718],\n          [-113.882641, 50.7241],\n          [-113.882584, 50.723735],\n          [-113.88255, 50.723367],\n          [-113.882523, 50.72258],\n          [-113.882495, 50.717709],\n          [-113.882486, 50.713302],\n          [-113.882476, 50.712125],\n          [-113.882468, 50.702531],\n          [-113.882456, 50.699815],\n          [-113.882434, 50.698229],\n          [-113.882445, 50.693791],\n          [-113.882419, 50.692602],\n          [-113.882412, 50.692077],\n          [-113.882405, 50.691705],\n          [-113.882365, 50.691331],\n          [-113.882289, 50.690878],\n          [-113.882163, 50.690282],\n          [-113.882074, 50.689985],\n          [-113.881908, 50.689517],\n          [-113.881705, 50.689095],\n          [-113.881622, 50.688959],\n          [-113.881501, 50.688721],\n          [-113.881281, 50.688347],\n          [-113.88097, 50.687826],\n          [-113.880715, 50.687491],\n          [-113.880385, 50.687085],\n          [-113.878859, 50.685206],\n          [-113.877456, 50.68348],\n          [-113.875929, 50.68157],\n          [-113.873357, 50.67843],\n          [-113.871364, 50.675999],\n          [-113.869142, 50.673289],\n          [-113.868358, 50.672328],\n          [-113.868037, 50.671943],\n          [-113.867467, 50.671232],\n          [-113.866987, 50.670734],\n          [-113.866668, 50.670424],\n          [-113.866296, 50.670141],\n          [-113.865816, 50.669814],\n          [-113.865451, 50.6696],\n          [-113.8651, 50.669419],\n          [-113.864667, 50.669203],\n          [-113.864079, 50.668945],\n          [-113.863436, 50.668716],\n          [-113.862804, 50.66849],\n          [-113.861739, 50.668114],\n          [-113.853421, 50.665144],\n          [-113.842891, 50.661554],\n          [-113.842171, 50.661197],\n          [-113.841049, 50.660571],\n          [-113.840156, 50.659997],\n          [-113.839716, 50.65961],\n          [-113.839157, 50.659132],\n          [-113.838847, 50.658805],\n          [-113.838358, 50.658284],\n          [-113.837938, 50.657723],\n          [-113.837609, 50.657111],\n          [-113.837268, 50.656259],\n          [-113.83703, 50.655665],\n          [-113.836937, 50.654919],\n          [-113.836909, 50.654144],\n          [-113.836859, 50.650724],\n          [-113.836826, 50.647581],\n          [-113.836828, 50.646677],\n          [-113.836945, 50.631237],\n          [-113.836945, 50.630338],\n          [-113.83681, 50.620833],\n          [-113.836809, 50.615002],\n          [-113.836748, 50.614363],\n          [-113.836695, 50.613902],\n          [-113.836544, 50.613327],\n          [-113.836395, 50.612865],\n          [-113.836165, 50.612347],\n          [-113.835974, 50.611908],\n          [-113.835688, 50.611368],\n          [-113.834199, 50.609116],\n          [-113.831975, 50.605815],\n          [-113.830597, 50.603738],\n          [-113.830194, 50.603006],\n          [-113.829862, 50.60236],\n          [-113.829623, 50.601865],\n          [-113.829361, 50.601178],\n          [-113.829199, 50.600699],\n          [-113.829001, 50.600003],\n          [-113.828688, 50.598264],\n          [-113.828653, 50.597525],\n          [-113.828653, 50.596741],\n          [-113.828659, 50.589493],\n          [-113.828615, 50.584393],\n          [-113.82855, 50.57625],\n          [-113.82857, 50.572186],\n          [-113.82858, 50.57189],\n          [-113.828436, 50.567929],\n          [-113.828262, 50.565198],\n          [-113.82828, 50.550181],\n          [-113.82829, 50.541809],\n          [-113.828291, 50.541417],\n          [-113.828359, 50.484565],\n          [-113.828388, 50.473188],\n          [-113.82839, 50.426319],\n          [-113.828391, 50.410937],\n          [-113.828495, 50.409031],\n          [-113.828495, 50.408255],\n          [-113.828326, 50.404708],\n          [-113.827868, 50.402523],\n          [-113.827189, 50.400367],\n          [-113.82573, 50.397464],\n          [-113.824909, 50.396393],\n          [-113.823811, 50.394869],\n          [-113.82128, 50.391895],\n          [-113.801481, 50.376398],\n          [-113.797907, 50.371872],\n          [-113.796297, 50.369858],\n          [-113.795351, 50.368139],\n          [-113.790726, 50.359724],\n          [-113.789384, 50.358382],\n          [-113.78784, 50.357509],\n          [-113.782077, 50.355219],\n          [-113.781868, 50.355163],\n          [-113.780696, 50.354643],\n          [-113.779832, 50.354058],\n          [-113.779376, 50.353709],\n          [-113.779034, 50.353447],\n          [-113.777779, 50.352208],\n          [-113.776476, 50.350971],\n          [-113.775669, 50.350156],\n          [-113.774903, 50.349363],\n          [-113.774528, 50.349008],\n          [-113.774139, 50.348641],\n          [-113.773752, 50.348267],\n          [-113.773367, 50.347894],\n          [-113.772991, 50.347521],\n          [-113.77261, 50.347144],\n          [-113.77224, 50.346771],\n          [-113.771866, 50.346393],\n          [-113.771491, 50.346021],\n          [-113.771101, 50.345634],\n          [-113.770724, 50.345257],\n          [-113.770334, 50.344868],\n          [-113.769256, 50.343852],\n          [-113.767134, 50.341669],\n          [-113.764647, 50.339182],\n          [-113.764438, 50.338973],\n          [-113.761597, 50.336333],\n          [-113.758593, 50.33458],\n          [-113.755546, 50.333429],\n          [-113.751856, 50.33269],\n          [-113.745118, 50.331594],\n          [-113.742286, 50.330717],\n          [-113.739453, 50.329347],\n          [-113.731213, 50.32247],\n          [-113.723532, 50.315976],\n          [-113.722158, 50.313619],\n          [-113.718768, 50.300682],\n          [-113.714948, 50.295611],\n          [-113.70452, 50.282916],\n          [-113.688985, 50.273536],\n          [-113.671647, 50.26314],\n          [-113.665976, 50.259608],\n          [-113.661862, 50.256884],\n          [-113.66006, 50.254964],\n          [-113.659379, 50.253877],\n          [-113.658858, 50.252741],\n          [-113.658676, 50.251733],\n          [-113.656669, 50.241627],\n          [-113.656154, 50.237592],\n          [-113.655983, 50.234435],\n          [-113.656026, 50.226446],\n          [-113.656001, 50.222848],\n          [-113.655983, 50.212634],\n          [-113.655983, 50.198956],\n          [-113.656026, 50.187774],\n          [-113.655725, 50.180189],\n          [-113.654781, 50.177056],\n          [-113.650834, 50.16488],\n          [-113.648988, 50.159931],\n          [-113.648171, 50.158673],\n          [-113.647041, 50.157055],\n          [-113.642675, 50.151639],\n          [-113.639814, 50.147556],\n          [-113.634175, 50.135735],\n          [-113.632251, 50.131741],\n          [-113.620363, 50.106626],\n          [-113.619376, 50.104527],\n          [-113.61384, 50.092744],\n          [-113.608561, 50.081675],\n          [-113.606581, 50.077494],\n          [-113.603669, 50.071347],\n          [-113.596202, 50.055589],\n          [-113.589593, 50.041645],\n          [-113.585973, 50.034075],\n          [-113.583284, 50.028469],\n          [-113.578879, 50.019214],\n          [-113.577072, 50.015416],\n          [-113.576933, 50.015123],\n          [-113.575461, 50.01195],\n          [-113.56968, 49.999485],\n          [-113.565276, 49.990109],\n          [-113.562856, 49.984972],\n          [-113.558388, 49.975529],\n          [-113.556763, 49.972084],\n          [-113.551497, 49.960982],\n          [-113.550282, 49.958226],\n          [-113.543115, 49.943177],\n          [-113.537579, 49.93141],\n          [-113.531657, 49.91895],\n          [-113.528868, 49.913112],\n          [-113.52852, 49.912237],\n          [-113.528209, 49.911247],\n          [-113.528013, 49.910313],\n          [-113.527878, 49.909552],\n          [-113.527877, 49.908805],\n          [-113.528009, 49.904496],\n          [-113.527999, 49.902765],\n          [-113.527923, 49.890232],\n          [-113.527923, 49.878148],\n          [-113.527237, 49.875493],\n          [-113.526537, 49.873052],\n          [-113.52449, 49.865701],\n          [-113.524447, 49.856267],\n          [-113.52449, 49.841269],\n          [-113.524447, 49.826764],\n          [-113.52437, 49.815239],\n          [-113.524361, 49.813862],\n          [-113.524357, 49.801088],\n          [-113.524347, 49.798401],\n          [-113.524359, 49.795748],\n          [-113.524362, 49.795059],\n          [-113.524404, 49.785441],\n          [-113.524345, 49.778892],\n          [-113.524361, 49.771945],\n          [-113.523632, 49.77031],\n          [-113.522087, 49.769007],\n          [-113.520199, 49.768287],\n          [-113.514319, 49.76643],\n          [-113.510629, 49.764933],\n          [-113.50771, 49.763048],\n          [-113.494964, 49.752901],\n          [-113.479476, 49.742059],\n          [-113.460012, 49.728293],\n          [-113.455597, 49.725235],\n          [-113.454572, 49.72442],\n          [-113.45366, 49.723598],\n          [-113.452976, 49.722915],\n          [-113.45129, 49.720944],\n          [-113.450256, 49.719782],\n          [-113.447746, 49.716986],\n          [-113.447289, 49.716417],\n          [-113.443365, 49.71203],\n          [-113.443141, 49.711789],\n          [-113.442819, 49.711601],\n          [-113.442606, 49.711479],\n          [-113.44236, 49.711374],\n          [-113.442103, 49.711279],\n          [-113.441837, 49.711197],\n          [-113.441458, 49.711124],\n          [-113.441117, 49.711086],\n          [-113.440779, 49.711071],\n          [-113.440369, 49.71109],\n          [-113.439978, 49.71114],\n          [-113.439697, 49.711196],\n          [-113.439397, 49.711273],\n          [-113.439102, 49.71139],\n          [-113.438862, 49.711498],\n          [-113.438591, 49.711635],\n          [-113.438391, 49.711766],\n          [-113.438075, 49.712061],\n          [-113.437745, 49.712489],\n          [-113.43745, 49.712915],\n          [-113.43721, 49.713212],\n          [-113.436932, 49.713495],\n          [-113.436629, 49.713751],\n          [-113.436287, 49.713988],\n          [-113.435908, 49.714204],\n          [-113.435538, 49.714393],\n          [-113.431814, 49.715951],\n          [-113.423934, 49.718913],\n          [-113.423148, 49.719208],\n          [-113.419515, 49.720574],\n          [-113.418553, 49.720884],\n          [-113.417353, 49.721191],\n          [-113.416622, 49.721378],\n          [-113.415189, 49.721933],\n          [-113.414887, 49.722092],\n          [-113.414553, 49.722328],\n          [-113.414204, 49.722586],\n          [-113.413109, 49.723458],\n          [-113.412313, 49.724209],\n          [-113.412068, 49.724385],\n          [-113.411871, 49.724508],\n          [-113.41169, 49.724585],\n          [-113.411456, 49.724665],\n          [-113.411213, 49.724721],\n          [-113.410939, 49.724758],\n          [-113.410649, 49.724769],\n          [-113.408706, 49.724761],\n          [-113.405913, 49.724764],\n          [-113.403119, 49.724754],\n          [-113.400316, 49.724758],\n          [-113.397541, 49.724759],\n          [-113.396042, 49.724769],\n          [-113.395455, 49.724758],\n          [-113.395172, 49.724734],\n          [-113.394938, 49.724709],\n          [-113.394729, 49.724678],\n          [-113.394467, 49.724619],\n          [-113.394209, 49.724544],\n          [-113.393974, 49.724469],\n          [-113.393696, 49.724366],\n          [-113.393468, 49.724249],\n          [-113.393241, 49.72412],\n          [-113.393012, 49.723965],\n          [-113.39289, 49.723864],\n          [-113.391771, 49.722807],\n          [-113.391196, 49.722209],\n          [-113.390266, 49.721242],\n          [-113.389586, 49.720567],\n          [-113.388246, 49.71917],\n          [-113.387068, 49.717968],\n          [-113.386688, 49.717602],\n          [-113.386617, 49.717518],\n          [-113.386398, 49.717254],\n          [-113.386209, 49.717057],\n          [-113.385914, 49.716751],\n          [-113.385697, 49.71658],\n          [-113.385459, 49.716404],\n          [-113.385223, 49.716267],\n          [-113.384941, 49.716121],\n          [-113.384654, 49.716013],\n          [-113.384337, 49.715925],\n          [-113.383953, 49.715848],\n          [-113.383617, 49.715803],\n          [-113.383303, 49.715777],\n          [-113.382948, 49.715769],\n          [-113.382593, 49.71579],\n          [-113.382269, 49.715822],\n          [-113.381923, 49.715886],\n          [-113.381566, 49.715981],\n          [-113.381244, 49.716092],\n          [-113.380957, 49.716219],\n          [-113.380551, 49.716436],\n          [-113.380035, 49.71673],\n          [-113.379484, 49.717081],\n          [-113.378419, 49.71777],\n          [-113.377851, 49.718172],\n          [-113.376955, 49.718849],\n          [-113.376472, 49.719244],\n          [-113.375953, 49.719695],\n          [-113.375418, 49.720164],\n          [-113.374752, 49.720812],\n          [-113.373389, 49.722261],\n          [-113.372553, 49.723172],\n          [-113.371753, 49.724069],\n          [-113.371091, 49.724816],\n          [-113.370703, 49.725251],\n          [-113.370292, 49.725659],\n          [-113.36989, 49.726068],\n          [-113.369354, 49.726543],\n          [-113.368728, 49.727064],\n          [-113.368135, 49.727526],\n          [-113.367567, 49.727939],\n          [-113.366419, 49.728699],\n          [-113.366091, 49.728877],\n          [-113.365827, 49.729022],\n          [-113.365501, 49.729201],\n          [-113.362951, 49.730439],\n          [-113.358468, 49.732139],\n          [-113.3397, 49.739588],\n          [-113.335475, 49.741364],\n          [-113.327488, 49.744425],\n          [-113.318052, 49.748192],\n          [-113.313869, 49.749882],\n          [-113.31224, 49.750619],\n          [-113.310651, 49.75165],\n          [-113.307682, 49.753879],\n          [-113.302921, 49.757409],\n          [-113.297078, 49.761832],\n          [-113.293465, 49.764507],\n          [-113.274088, 49.778989],\n          [-113.273227, 49.779697],\n          [-113.272213, 49.780484],\n          [-113.270309, 49.781807],\n          [-113.269287, 49.782542],\n          [-113.268506, 49.783052],\n          [-113.267549, 49.783577],\n          [-113.266355, 49.784155],\n          [-113.264867, 49.784696],\n          [-113.26421, 49.78488],\n          [-113.263279, 49.785126],\n          [-113.262406, 49.785321],\n          [-113.261535, 49.785468],\n          [-113.260247, 49.785632],\n          [-113.2584, 49.785752],\n          [-113.253189, 49.785761],\n          [-113.2503, 49.785759],\n          [-113.246741, 49.785753],\n          [-113.243803, 49.785748],\n          [-113.24168, 49.785746],\n          [-113.239441, 49.785743],\n          [-113.235416, 49.785738],\n          [-113.232546, 49.785734],\n          [-113.230542, 49.78573],\n          [-113.207916, 49.785665],\n          [-113.188962, 49.785585],\n          [-113.187421, 49.785394],\n          [-113.185955, 49.785084],\n          [-113.182069, 49.784248],\n          [-113.178433, 49.783545],\n          [-113.175537, 49.783555],\n          [-113.172403, 49.784002],\n          [-113.169876, 49.784514],\n          [-113.165425, 49.785057],\n          [-113.162661, 49.785308],\n          [-113.158491, 49.785468],\n          [-113.154009, 49.785249],\n          [-113.150706, 49.7849],\n          [-113.138727, 49.78387],\n          [-113.137918, 49.7838],\n          [-113.132484, 49.783537],\n          [-113.127139, 49.783666],\n          [-113.121522, 49.784134],\n          [-113.116401, 49.784873],\n          [-113.108878, 49.786479],\n          [-113.10643, 49.787036],\n          [-113.100519, 49.78837],\n          [-113.099817, 49.78851],\n          [-113.099069, 49.788664],\n          [-113.098414, 49.788796],\n          [-113.097678, 49.788933],\n          [-113.096947, 49.789058],\n          [-113.096124, 49.78919],\n          [-113.095087, 49.789365],\n          [-113.093946, 49.789519],\n          [-113.092851, 49.789655],\n          [-113.091995, 49.789773],\n          [-113.091108, 49.78988],\n          [-113.090105, 49.789981],\n          [-113.089148, 49.790064],\n          [-113.088464, 49.790125],\n          [-113.087728, 49.790181],\n          [-113.08695, 49.790229],\n          [-113.08621, 49.790281],\n          [-113.085391, 49.790327],\n          [-113.084622, 49.790364],\n          [-113.083774, 49.790396],\n          [-113.082731, 49.790426],\n          [-113.081849, 49.790441],\n          [-113.080915, 49.790449],\n          [-113.080041, 49.790455],\n          [-113.079132, 49.790458],\n          [-113.078156, 49.790437],\n          [-113.077306, 49.790416],\n          [-113.076308, 49.790386],\n          [-113.075035, 49.79033],\n          [-113.073984, 49.790268],\n          [-113.073014, 49.790204],\n          [-113.072411, 49.790162],\n          [-113.071942, 49.790123],\n          [-113.069874, 49.789921],\n          [-113.06869, 49.789793],\n          [-113.067583, 49.789667],\n          [-113.066892, 49.789578],\n          [-113.066126, 49.789472],\n          [-113.064972, 49.789301],\n          [-113.04876, 49.786854],\n          [-113.048, 49.78674],\n          [-113.047462, 49.78667],\n          [-113.046933, 49.786601],\n          [-113.046365, 49.786543],\n          [-113.041994, 49.786136],\n          [-113.038418, 49.786047],\n          [-113.028911, 49.786062],\n          [-113.013026, 49.786042],\n          [-113.003977, 49.786038],\n          [-113.002681, 49.785962],\n          [-113.001644, 49.785864],\n          [-113.00048, 49.785713],\n          [-112.999756, 49.785611],\n          [-112.9987, 49.785408],\n          [-112.997454, 49.785132],\n          [-112.995534, 49.784581],\n          [-112.99125, 49.783007],\n          [-112.98295, 49.779625],\n          [-112.980557, 49.778522],\n          [-112.979018, 49.777554],\n          [-112.976341, 49.775651],\n          [-112.973797, 49.773044],\n          [-112.965769, 49.764644],\n          [-112.960895, 49.75933],\n          [-112.960092, 49.758465],\n          [-112.959726, 49.75808],\n          [-112.959447, 49.757828],\n          [-112.959069, 49.757507],\n          [-112.958709, 49.757166],\n          [-112.958281, 49.756793],\n          [-112.95762, 49.756294],\n          [-112.956931, 49.755799],\n          [-112.956159, 49.755282],\n          [-112.955682, 49.754998],\n          [-112.955151, 49.754703],\n          [-112.952858, 49.753509],\n          [-112.949354, 49.752075],\n          [-112.94544, 49.749962],\n          [-112.938188, 49.743931],\n          [-112.931304, 49.738228],\n          [-112.926731, 49.73422],\n          [-112.925384, 49.732989],\n          [-112.924479, 49.731925],\n          [-112.923468, 49.730575],\n          [-112.922298, 49.729055],\n          [-112.921036, 49.7277],\n          [-112.918917, 49.725859],\n          [-112.918155, 49.725203],\n          [-112.916619, 49.723846],\n          [-112.915487, 49.723018],\n          [-112.915163, 49.72283],\n          [-112.914796, 49.722631],\n          [-112.914432, 49.722464],\n          [-112.914031, 49.722286],\n          [-112.913669, 49.722145],\n          [-112.913246, 49.722004],\n          [-112.912907, 49.721891],\n          [-112.912605, 49.721797],\n          [-112.912248, 49.721697],\n          [-112.911203, 49.721427],\n          [-112.910101, 49.721135],\n          [-112.906937, 49.720299],\n          [-112.903215, 49.719342],\n          [-112.900165, 49.718558],\n          [-112.897476, 49.717852],\n          [-112.895936, 49.717459],\n          [-112.895282, 49.717281],\n          [-112.894243, 49.71701],\n          [-112.893141, 49.716728],\n          [-112.892426, 49.716529],\n          [-112.89165, 49.716338],\n          [-112.891198, 49.71622],\n          [-112.890633, 49.716083],\n          [-112.889897, 49.715934],\n          [-112.889174, 49.715796],\n          [-112.888532, 49.715689],\n          [-112.887541, 49.715558],\n          [-112.88613, 49.71536],\n          [-112.885501, 49.715271],\n          [-112.884833, 49.715175],\n          [-112.884308, 49.715088],\n          [-112.883816, 49.71495],\n          [-112.883277, 49.714832],\n          [-112.882696, 49.714691],\n          [-112.88207, 49.714542],\n          [-112.881531, 49.714385],\n          [-112.881025, 49.714222],\n          [-112.880522, 49.714039],\n          [-112.879986, 49.713834],\n          [-112.879529, 49.71365],\n          [-112.87903, 49.713431],\n          [-112.878502, 49.713173],\n          [-112.877609, 49.712649],\n          [-112.875259, 49.711284],\n          [-112.873228, 49.710141],\n          [-112.872763, 49.709872],\n          [-112.87224, 49.709593],\n          [-112.871848, 49.709384],\n          [-112.871432, 49.709188],\n          [-112.871061, 49.709022],\n          [-112.870716, 49.708873],\n          [-112.870311, 49.708723],\n          [-112.869954, 49.708592],\n          [-112.869443, 49.708436],\n          [-112.868983, 49.708311],\n          [-112.868462, 49.708183],\n          [-112.86782, 49.708055],\n          [-112.867368, 49.707982],\n          [-112.866939, 49.707916],\n          [-112.86545, 49.707716],\n          [-112.861762, 49.707191],\n          [-112.86017, 49.706981],\n          [-112.85809, 49.706677],\n          [-112.85777, 49.706622],\n          [-112.857467, 49.706553],\n          [-112.857076, 49.706452],\n          [-112.856698, 49.706338],\n          [-112.854212, 49.705528],\n          [-112.85381, 49.705386],\n          [-112.853466, 49.70523],\n          [-112.853137, 49.705049],\n          [-112.852839, 49.704853],\n          [-112.851852, 49.704221],\n          [-112.851516, 49.704031],\n          [-112.851207, 49.703872],\n          [-112.850867, 49.70373],\n          [-112.850433, 49.703565],\n          [-112.84992, 49.703388],\n          [-112.847903, 49.702792],\n          [-112.845724, 49.702167],\n          [-112.844077, 49.701628],\n          [-112.8432, 49.701369],\n          [-112.842649, 49.701218],\n          [-112.842201, 49.701114],\n          [-112.841728, 49.701025],\n          [-112.840794, 49.700856],\n          [-112.838125, 49.700426],\n          [-112.834609, 49.699873],\n          [-112.832064, 49.699465],\n          [-112.828981, 49.698964],\n          [-112.828552, 49.698904],\n          [-112.827826, 49.698813],\n          [-112.827096, 49.698728],\n          [-112.826436, 49.698665],\n          [-112.825387, 49.6986],\n          [-112.824515, 49.698555],\n          [-112.823879, 49.698527],\n          [-112.822719, 49.698465],\n          [-112.820041, 49.698338],\n          [-112.818601, 49.69826],\n          [-112.817659, 49.698214],\n          [-112.817451, 49.698208],\n          [-112.816791, 49.698174],\n          [-112.81589, 49.698112],\n          [-112.814861, 49.698029],\n          [-112.814224, 49.697963],\n          [-112.813253, 49.697849],\n          [-112.813147, 49.697836],\n          [-112.811952, 49.697672],\n          [-112.811842, 49.697656],\n          [-112.811502, 49.697615],\n          [-112.811227, 49.697581],\n          [-112.810773, 49.697561],\n          [-112.810352, 49.69755],\n          [-112.810002, 49.697537],\n          [-112.809403, 49.697532],\n          [-112.806575, 49.697613],\n          [-112.805437, 49.69765],\n          [-112.804522, 49.697685],\n          [-112.80393, 49.697707],\n          [-112.80238, 49.69777],\n          [-112.802025, 49.697788],\n          [-112.801625, 49.697812],\n          [-112.800653, 49.697888],\n          [-112.799723, 49.697967],\n          [-112.79867, 49.698052],\n          [-112.798046, 49.698084],\n          [-112.797631, 49.698102],\n          [-112.797077, 49.698117],\n          [-112.796376, 49.698135],\n          [-112.79554, 49.698135],\n          [-112.794414, 49.698135],\n          [-112.793544, 49.698131],\n          [-112.788404, 49.698111],\n          [-112.787759, 49.698108],\n          [-112.787623, 49.698109],\n          [-112.786794, 49.698114],\n          [-112.785574, 49.698121],\n          [-112.784545, 49.69817],\n          [-112.784282, 49.698206],\n          [-112.783264, 49.698348],\n          [-112.782977, 49.69837],\n          [-112.782674, 49.69837],\n          [-112.782377, 49.69836],\n          [-112.781976, 49.698324],\n          [-112.781573, 49.698283],\n          [-112.780374, 49.698174],\n          [-112.779856, 49.698084],\n          [-112.77969, 49.698039],\n          [-112.779534, 49.697963],\n          [-112.779416, 49.697879],\n          [-112.779336, 49.697779],\n          [-112.779293, 49.697678],\n          [-112.779266, 49.697588],\n          [-112.779277, 49.697432],\n          [-112.779309, 49.697054],\n          [-112.779557, 49.695985],\n          [-112.779657, 49.695544],\n          [-112.779736, 49.695225],\n          [-112.779761, 49.695101],\n          [-112.779809, 49.694922],\n          [-112.779952, 49.69441],\n          [-112.780019, 49.694125],\n          [-112.780058, 49.69387],\n          [-112.780085, 49.693604],\n          [-112.78011, 49.693292],\n          [-112.780165, 49.692652],\n          [-112.780169, 49.692372],\n          [-112.780165, 49.692154],\n          [-112.780164, 49.692098],\n          [-112.780144, 49.691862],\n          [-112.780143, 49.691843],\n          [-112.780133, 49.69176],\n          [-112.780037, 49.691006],\n          [-112.779822, 49.689657],\n          [-112.77979, 49.689308],\n          [-112.779748, 49.688889],\n          [-112.779749, 49.688478],\n          [-112.779739, 49.688031],\n          [-112.779748, 49.687622],\n          [-112.779769, 49.687159],\n          [-112.779816, 49.686494],\n          [-112.779896, 49.685531],\n          [-112.779868, 49.68512],\n          [-112.779875, 49.684881],\n          [-112.779863, 49.684535],\n          [-112.77986, 49.684358],\n          [-112.779847, 49.684121],\n          [-112.779816, 49.683702],\n          [-112.779801, 49.683613],\n          [-112.779746, 49.683344],\n          [-112.779688, 49.682957],\n          [-112.779596, 49.68252],\n          [-112.779542, 49.68228],\n          [-112.7794, 49.681732],\n          [-112.779248, 49.681225],\n          [-112.779016, 49.680478],\n          [-112.778857, 49.679737],\n          [-112.778724, 49.678803],\n          [-112.778685, 49.678481],\n          [-112.77867, 49.678161],\n          [-112.778679, 49.677477],\n          [-112.778716, 49.676815],\n          [-112.77879, 49.676373],\n          [-112.778793, 49.676281],\n          [-112.778809, 49.67613],\n          [-112.778826, 49.675962],\n          [-112.779009, 49.67502],\n          [-112.779283, 49.674077],\n          [-112.779324, 49.67372],\n          [-112.779398, 49.673084],\n          [-112.779441, 49.672708],\n          [-112.779445, 49.672624],\n          [-112.779457, 49.6724],\n          [-112.779474, 49.670433],\n          [-112.779525, 49.669583],\n          [-112.779531, 49.668796],\n          [-112.779522, 49.66867],\n          [-112.779234, 49.66867],\n          [-112.778749, 49.66867],\n          [-112.773523, 49.668658],\n          [-112.769369, 49.668649],\n          [-112.763756, 49.668637],\n          [-112.7565, 49.668622],\n          [-112.75294, 49.668604],\n          [-112.752507, 49.668609],\n          [-112.751647, 49.668588],\n          [-112.750485, 49.668477],\n          [-112.748828, 49.668137],\n          [-112.747424, 49.667643],\n          [-112.746405, 49.667117],\n          [-112.745658, 49.666544],\n          [-112.743059, 49.663524],\n          [-112.742076, 49.662492],\n          [-112.741004, 49.661674],\n          [-112.73773, 49.659519],\n          [-112.735465, 49.657989],\n          [-112.733655, 49.656859],\n          [-112.718533, 49.646941],\n          [-112.708401, 49.640314],\n          [-112.699223, 49.634317],\n          [-112.697367, 49.633097],\n          [-112.696977, 49.632838],\n          [-112.688059, 49.626979],\n          [-112.68302, 49.623675],\n          [-112.676625, 49.619483],\n          [-112.667074, 49.613228],\n          [-112.658988, 49.607908],\n          [-112.655248, 49.605484],\n          [-112.650972, 49.603234],\n          [-112.646487, 49.600778],\n          [-112.644902, 49.599632],\n          [-112.643248, 49.598383],\n          [-112.641103, 49.596798],\n          [-112.639355, 49.595616],\n          [-112.637, 49.594133],\n          [-112.627891, 49.588425],\n          [-112.602707, 49.572537],\n          [-112.600552, 49.571077],\n          [-112.598617, 49.5692],\n          [-112.59449, 49.564228],\n          [-112.593913, 49.5636],\n          [-112.593075, 49.562994],\n          [-112.592311, 49.562392],\n          [-112.591327, 49.561818],\n          [-112.589132, 49.56091],\n          [-112.585717, 49.559813],\n          [-112.580643, 49.558189],\n          [-112.579135, 49.557557],\n          [-112.577853, 49.55687],\n          [-112.576584, 49.555934],\n          [-112.573576, 49.55323],\n          [-112.570447, 49.550424],\n          [-112.569232, 49.549564],\n          [-112.567477, 49.548436],\n          [-112.556735, 49.541871],\n          [-112.550446, 49.538028],\n          [-112.546175, 49.535345],\n          [-112.543195, 49.53355],\n          [-112.541943, 49.532867],\n          [-112.522018, 49.522571],\n          [-112.51966, 49.521328],\n          [-112.515058, 49.518953],\n          [-112.512595, 49.517628],\n          [-112.51096, 49.516524],\n          [-112.50948, 49.515214],\n          [-112.508358, 49.513958],\n          [-112.507396, 49.512646],\n          [-112.504667, 49.506398],\n          [-112.503772, 49.504449],\n          [-112.502829, 49.502755],\n          [-112.502134, 49.501789],\n          [-112.500323, 49.499793],\n          [-112.498242, 49.497945],\n          [-112.491937, 49.492826],\n          [-112.472122, 49.477074],\n          [-112.46972, 49.475443],\n          [-112.458697, 49.468584],\n          [-112.452076, 49.464789],\n          [-112.441426, 49.458313],\n          [-112.440081, 49.457555],\n          [-112.439154, 49.45711],\n          [-112.437692, 49.456507],\n          [-112.428185, 49.452715],\n          [-112.42567, 49.451509],\n          [-112.421872, 49.448943],\n          [-112.416852, 49.445256],\n          [-112.415374, 49.444112],\n          [-112.413757, 49.443067],\n          [-112.41199, 49.442277],\n          [-112.408866, 49.441094],\n          [-112.403355, 49.439005],\n          [-112.400426, 49.437907],\n          [-112.395624, 49.436024],\n          [-112.393366, 49.43506],\n          [-112.391141, 49.43401],\n          [-112.389667, 49.433278],\n          [-112.387242, 49.431857],\n          [-112.380495, 49.427283],\n          [-112.377371, 49.425166],\n          [-112.370769, 49.420228],\n          [-112.369213, 49.419103],\n          [-112.368029, 49.418322],\n          [-112.366868, 49.417688],\n          [-112.365853, 49.417109],\n          [-112.364196, 49.416279],\n          [-112.358645, 49.413606],\n          [-112.345069, 49.40697],\n          [-112.313601, 49.391666],\n          [-112.293379, 49.381796],\n          [-112.280866, 49.375648],\n          [-112.275641, 49.37312],\n          [-112.27415, 49.372357],\n          [-112.272971, 49.371647],\n          [-112.272087, 49.371077],\n          [-112.271197, 49.370405],\n          [-112.270258, 49.369532],\n          [-112.269242, 49.36847],\n          [-112.263635, 49.361606],\n          [-112.261762, 49.359287],\n          [-112.252776, 49.348158],\n          [-112.236226, 49.327356],\n          [-112.231602, 49.321856],\n          [-112.231504, 49.32174],\n          [-112.22954, 49.319363],\n          [-112.227247, 49.316403],\n          [-112.224225, 49.312727],\n          [-112.22224, 49.310555],\n          [-112.216986, 49.304836],\n          [-112.215307, 49.3031],\n          [-112.213887, 49.301877],\n          [-112.213028, 49.301145],\n          [-112.204369, 49.294474],\n          [-112.201434, 49.291851],\n          [-112.200807, 49.291228],\n          [-112.200423, 49.290767],\n          [-112.200161, 49.290419],\n          [-112.199859, 49.289985],\n          [-112.199566, 49.2895],\n          [-112.199306, 49.289012],\n          [-112.199053, 49.288493],\n          [-112.198839, 49.287999],\n          [-112.198721, 49.287648],\n          [-112.198561, 49.28716],\n          [-112.198436, 49.286692],\n          [-112.198364, 49.286224],\n          [-112.198303, 49.285775],\n          [-112.198271, 49.285347],\n          [-112.198256, 49.282987],\n          [-112.198269, 49.279832],\n          [-112.197949, 49.277457],\n          [-112.196565, 49.273803],\n          [-112.189342, 49.264663],\n          [-112.187679, 49.262625],\n          [-112.187029, 49.261975],\n          [-112.185766, 49.260758],\n          [-112.185003, 49.259994],\n          [-112.184046, 49.259256],\n          [-112.182999, 49.258515],\n          [-112.181937, 49.257797],\n          [-112.180185, 49.2566],\n          [-112.179314, 49.25606],\n          [-112.178353, 49.255415],\n          [-112.177525, 49.254853],\n          [-112.176769, 49.254313],\n          [-112.176125, 49.253788],\n          [-112.174746, 49.252496],\n          [-112.173897, 49.251682],\n          [-112.173107, 49.250905],\n          [-112.153316, 49.231556],\n          [-112.145266, 49.223554],\n          [-112.137196, 49.215571],\n          [-112.13617, 49.214714],\n          [-112.134956, 49.213742],\n          [-112.134168, 49.213187],\n          [-112.132859, 49.212334],\n          [-112.13166, 49.211607],\n          [-112.12957, 49.210494],\n          [-112.126976, 49.209298],\n          [-112.123065, 49.207555],\n          [-112.121541, 49.206848],\n          [-112.120052, 49.206151],\n          [-112.118948, 49.205619],\n          [-112.117869, 49.205062],\n          [-112.11706, 49.204623],\n          [-112.115236, 49.203546],\n          [-112.112919, 49.201989],\n          [-112.111625, 49.201012],\n          [-112.109029, 49.198836],\n          [-112.106118, 49.195686],\n          [-112.105716, 49.195156],\n          [-112.10511, 49.194341],\n          [-112.102212, 49.189769],\n          [-112.099016, 49.184803],\n          [-112.097293, 49.182034],\n          [-112.09607, 49.179971],\n          [-112.093881, 49.176527],\n          [-112.093098, 49.175222],\n          [-112.092754, 49.174577],\n          [-112.092518, 49.174107],\n          [-112.092368, 49.173658],\n          [-112.092271, 49.173279],\n          [-112.092175, 49.172816],\n          [-112.092083, 49.172436],\n          [-112.092105, 49.171924],\n          [-112.092116, 49.171461],\n          [-112.092153, 49.170923],\n          [-112.092303, 49.169933],\n          [-112.092797, 49.166924],\n          [-112.093183, 49.164483],\n          [-112.093425, 49.163015],\n          [-112.094079, 49.159023],\n          [-112.094508, 49.156383],\n          [-112.094555, 49.155953],\n          [-112.094556, 49.155221],\n          [-112.094514, 49.154793],\n          [-112.094503, 49.154492],\n          [-112.094385, 49.153874],\n          [-112.094213, 49.153187],\n          [-112.094063, 49.152773],\n          [-112.093902, 49.152351],\n          [-112.093602, 49.151853],\n          [-112.093237, 49.151257],\n          [-112.092797, 49.15078],\n          [-112.092443, 49.150366],\n          [-112.09211, 49.150043],\n          [-112.09144, 49.149473],\n          [-112.090329, 49.148576],\n          [-112.087872, 49.146674],\n          [-112.085019, 49.144442],\n          [-112.08445, 49.144014],\n          [-112.083795, 49.143488],\n          [-112.083195, 49.142934],\n          [-112.082218, 49.142021],\n          [-112.081255, 49.140863],\n          [-112.080652, 49.140161],\n          [-112.079815, 49.139052],\n          [-112.079375, 49.138315],\n          [-112.078935, 49.137592],\n          [-112.078367, 49.136469],\n          [-112.077562, 49.134475],\n          [-112.07679, 49.132524],\n          [-112.076328, 49.131429],\n          [-112.07591, 49.130565],\n          [-112.075325, 49.129377],\n          [-112.074891, 49.128684],\n          [-112.074472, 49.128059],\n          [-112.073582, 49.12674],\n          [-112.072631, 49.125499],\n          [-112.071973, 49.124711],\n          [-112.071054, 49.123645],\n          [-112.069784, 49.122387],\n          [-112.068512, 49.121237],\n          [-112.066629, 49.119662],\n          [-112.062677, 49.116351],\n          [-112.055397, 49.110231],\n          [-112.054528, 49.109557],\n          [-112.053423, 49.108763],\n          [-112.052461, 49.108147],\n          [-112.045612, 49.103924],\n          [-112.04278, 49.102161],\n          [-112.042125, 49.101683],\n          [-112.041514, 49.101163],\n          [-112.040923, 49.100503],\n          [-112.040258, 49.099716],\n          [-112.039046, 49.09777],\n          [-112.036761, 49.094883],\n          [-112.034383, 49.091688],\n          [-112.032973, 49.089733],\n          [-112.032072, 49.088525],\n          [-112.031257, 49.087397],\n          [-112.027952, 49.082826],\n          [-112.025918, 49.080115],\n          [-112.023929, 49.077471],\n          [-112.021412, 49.07398],\n          [-112.01924, 49.070443],\n          [-112.016505, 49.066092],\n          [-112.014616, 49.062914],\n          [-112.010898, 49.056849],\n          [-112.010336, 49.056053],\n          [-112.009981, 49.05549],\n          [-112.009595, 49.055054],\n          [-112.008383, 49.053913],\n          [-112.004081, 49.049886],\n          [-112.003484, 49.049323],\n          [-112.002241, 49.048061],\n          [-112.000186, 49.046131],\n          [-111.998352, 49.044419],\n          [-111.997649, 49.043715],\n          [-111.997014, 49.042914],\n          [-111.996531, 49.042236],\n          [-111.996215, 49.041782],\n          [-111.995927, 49.041307],\n          [-111.995594, 49.040698],\n          [-111.995321, 49.040118],\n          [-111.994693, 49.038673],\n          [-111.994001, 49.037108],\n          [-111.992996, 49.034801],\n          [-111.992369, 49.033409],\n          [-111.99149, 49.031403],\n          [-111.99082, 49.029866],\n          [-111.990004, 49.02802],\n          [-111.98936, 49.026568],\n          [-111.988769, 49.025185],\n          [-111.988218, 49.023936],\n          [-111.987589, 49.022536],\n          [-111.987371, 49.021885],\n          [-111.987235, 49.021333],\n          [-111.987097, 49.020858],\n          [-111.986995, 49.020386],\n          [-111.98692, 49.019658],\n          [-111.986872, 49.018979],\n          [-111.986866, 49.017199],\n          [-111.986872, 49.015542],\n          [-111.98686, 49.013841],\n          [-111.986847, 49.01231],\n          [-111.98685, 49.011137],\n          [-111.986861, 49.010352],\n          [-111.986797, 49.009758],\n          [-111.986645, 49.009206],\n          [-111.986377, 49.008696],\n          [-111.986147, 49.008354],\n          [-111.985836, 49.007998],\n          [-111.985337, 49.007558],\n          [-111.984989, 49.007266],\n          [-111.984301, 49.006795],\n          [-111.983474, 49.00638],\n          [-111.982516, 49.005993],\n          [-111.981765, 49.005715],\n          [-111.980942, 49.005514],\n          [-111.980129, 49.005334],\n          [-111.979328, 49.005194],\n          [-111.978062, 49.005092],\n          [-111.976985, 49.005074],\n          [-111.974918, 49.005173],\n          [-111.973139, 49.005292],\n          [-111.97154, 49.00538],\n          [-111.969019, 49.005514],\n          [-111.967562, 49.005617],\n          [-111.966045, 49.005705],\n          [-111.96469, 49.005725],\n          [-111.963991, 49.005648],\n          [-111.96346, 49.005567],\n          [-111.96295, 49.005448],\n          [-111.962485, 49.005296],\n          [-111.962163, 49.005187],\n          [-111.961761, 49.005004],\n          [-111.961293, 49.004765],\n          [-111.960951, 49.004554],\n          [-111.960789, 49.004426],\n          [-111.960561, 49.004236],\n          [-111.960215, 49.003866],\n          [-111.959973, 49.003571],\n          [-111.959774, 49.003265],\n          [-111.959681, 49.003043],\n          [-111.959581, 49.002794],\n          [-111.95951, 49.002452],\n          [-111.959584, 49.002087],\n          [-111.959768, 49.001731],\n          [-111.96008, 49.00139],\n          [-111.960323, 49.001097],\n          [-111.960993, 49.000276],\n          [-111.961147, 48.999913],\n          [-111.961177, 48.999675],\n          [-111.961154, 48.999405],\n          [-111.96075, 48.998378],\n          [-111.960537, 48.997835],\n          [-111.960261, 48.997296],\n          [-111.959961, 48.996969],\n          [-111.959772, 48.996485],\n          [-111.959789, 48.99582],\n          [-111.959918, 48.995443],\n          [-111.960048, 48.994907],\n          [-111.960094, 48.994603],\n          [-111.960084, 48.994414],\n          [-111.960109, 48.993824],\n          [-111.959994, 48.990856],\n          [-111.95827, 48.98094],\n          [-111.958253, 48.980705],\n          [-111.958185, 48.980405],\n          [-111.958073, 48.980015],\n          [-111.957973, 48.979662],\n          [-111.957788, 48.979177],\n          [-111.957579, 48.978688],\n          [-111.957393, 48.978342],\n          [-111.957182, 48.977986],\n          [-111.956929, 48.977617],\n          [-111.956287, 48.976872],\n          [-111.955429, 48.975932],\n          [-111.940434, 48.960617],\n          [-111.939756, 48.959862],\n          [-111.939258, 48.959163],\n          [-111.938864, 48.958475],\n          [-111.938589, 48.957934],\n          [-111.935242, 48.950139],\n          [-111.933705, 48.946469],\n          [-111.930948, 48.939956],\n          [-111.927211, 48.931012],\n          [-111.924522, 48.924688],\n          [-111.916608, 48.906188],\n          [-111.9112, 48.893335],\n          [-111.910969, 48.892844],\n          [-111.910694, 48.892325],\n          [-111.910265, 48.891676],\n          [-111.909921, 48.891247],\n          [-111.909492, 48.890711],\n          [-111.909046, 48.890237],\n          [-111.908119, 48.889328],\n          [-111.907385, 48.88863],\n          [-111.906844, 48.888116],\n          [-111.903694, 48.88508],\n          [-111.903291, 48.88469],\n          [-111.901737, 48.883161],\n          [-111.878176, 48.860393],\n          [-111.867242, 48.849753],\n          [-111.866486, 48.849013],\n          [-111.865877, 48.848301],\n          [-111.86531, 48.847533],\n          [-111.864675, 48.846613],\n          [-111.86392, 48.845195],\n          [-111.863594, 48.84437],\n          [-111.863233, 48.843167],\n          [-111.863139, 48.842738],\n          [-111.863019, 48.842026],\n          [-111.86295, 48.841071],\n          [-111.862942, 48.830326],\n          [-111.862942, 48.823285],\n          [-111.86289, 48.769261],\n          [-111.862864, 48.764515],\n          [-111.862813, 48.763474],\n          [-111.862718, 48.761743],\n          [-111.861611, 48.743809],\n          [-111.861439, 48.740289],\n          [-111.861439, 48.739949],\n          [-111.861594, 48.737176],\n          [-111.862178, 48.726719],\n          [-111.862229, 48.723792],\n          [-111.862083, 48.656639],\n          [-111.8621, 48.64979],\n          [-111.861997, 48.598701],\n          [-111.86198, 48.592185],\n          [-111.86198, 48.57272],\n          [-111.861912, 48.57163],\n          [-111.861817, 48.570494],\n          [-111.861697, 48.569205],\n          [-111.860581, 48.557657],\n          [-111.860077, 48.552231],\n          [-111.859663, 48.54801],\n          [-111.859594, 48.546805],\n          [-111.859611, 48.545322],\n          [-111.859792, 48.535383],\n          [-111.8598, 48.533888],\n          [-111.859886, 48.533121],\n          [-111.860015, 48.532581],\n          [-111.860246, 48.531939],\n          [-111.860598, 48.531387],\n          [-111.860942, 48.530899],\n          [-111.861688, 48.530109],\n          [-111.866109, 48.525755],\n          [-111.875953, 48.516192],\n          [-111.876929, 48.515247],\n          [-111.877241, 48.514954],\n          [-111.879228, 48.513021],\n          [-111.879759, 48.512467],\n          [-111.88006, 48.512124],\n          [-111.880267, 48.511881],\n          [-111.88042, 48.511679],\n          [-111.880571, 48.511473],\n          [-111.88094, 48.510956],\n          [-111.881292, 48.510376],\n          [-111.881653, 48.509733],\n          [-111.881996, 48.50904],\n          [-111.882305, 48.508346],\n          [-111.882562, 48.507572],\n          [-111.882777, 48.506828],\n          [-111.882931, 48.506134],\n          [-111.883026, 48.505588],\n          [-111.883441, 48.502992],\n          [-111.883604, 48.499975],\n          [-111.883614, 48.499767],\n          [-111.883635, 48.496433],\n          [-111.883673, 48.495815],\n          [-111.883734, 48.49503],\n          [-111.883798, 48.494396],\n          [-111.883866, 48.493802],\n          [-111.883999, 48.493],\n          [-111.884209, 48.492103],\n          [-111.884377, 48.49147],\n          [-111.884557, 48.490837],\n          [-111.885112, 48.489088],\n          [-111.885489, 48.48824],\n          [-111.886605, 48.485897],\n          [-111.88682, 48.485299],\n          [-111.887034, 48.484679],\n          [-111.887197, 48.484099],\n          [-111.887389, 48.483433],\n          [-111.88747, 48.482928],\n          [-111.887522, 48.482349],\n          [-111.887575, 48.481425],\n          [-111.887554, 48.480643],\n          [-111.887506, 48.480113],\n          [-111.887418, 48.479516],\n          [-111.887265, 48.478742],\n          [-111.887056, 48.477974],\n          [-111.886845, 48.47746],\n          [-111.886472, 48.476607],\n          [-111.885635, 48.474831],\n          [-111.885441, 48.474274],\n          [-111.885165, 48.473591],\n          [-111.884897, 48.472862],\n          [-111.884674, 48.47215],\n          [-111.884502, 48.471564],\n          [-111.884279, 48.470409],\n          [-111.884082, 48.46926],\n          [-111.883953, 48.468281],\n          [-111.883906, 48.467423],\n          [-111.883878, 48.46663],\n          [-111.883976, 48.454446],\n          [-111.884028, 48.447094],\n          [-111.884036, 48.443164],\n          [-111.884023, 48.441546],\n          [-111.884017, 48.440681],\n          [-111.884026, 48.43968],\n          [-111.884018, 48.438945],\n          [-111.88402, 48.438457],\n          [-111.884058, 48.438059],\n          [-111.884092, 48.43776],\n          [-111.884134, 48.437455],\n          [-111.884195, 48.437091],\n          [-111.884275, 48.436739],\n          [-111.884339, 48.436455],\n          [-111.884422, 48.436153],\n          [-111.884528, 48.435768],\n          [-111.884674, 48.435354],\n          [-111.884745, 48.435206],\n          [-111.884871, 48.43486],\n          [-111.885003, 48.434574],\n          [-111.885207, 48.434157],\n          [-111.885417, 48.433746],\n          [-111.885596, 48.433441],\n          [-111.88582, 48.433061],\n          [-111.886029, 48.43273],\n          [-111.886203, 48.432492],\n          [-111.886412, 48.432197],\n          [-111.886586, 48.431954],\n          [-111.886816, 48.431663],\n          [-111.887079, 48.431357],\n          [-111.887401, 48.430981],\n          [-111.887774, 48.430593],\n          [-111.888127, 48.430257],\n          [-111.888437, 48.429955],\n          [-111.889099, 48.429374],\n          [-111.889756, 48.428824],\n          [-111.890912, 48.427857],\n          [-111.892165, 48.426838],\n          [-111.905659, 48.415636],\n          [-111.90626, 48.415157],\n          [-111.906861, 48.41457],\n          [-111.907333, 48.414081],\n          [-111.907814, 48.413528],\n          [-111.908406, 48.412776],\n          [-111.909015, 48.411824],\n          [-111.909633, 48.410907],\n          [-111.920752, 48.392582],\n          [-111.927417, 48.381543],\n          [-111.93346, 48.371538],\n          [-111.933846, 48.37086],\n          [-111.934235, 48.370068],\n          [-111.934546, 48.369396],\n          [-111.934939, 48.368399],\n          [-111.935227, 48.367613],\n          [-111.935586, 48.366493],\n          [-111.935831, 48.365544],\n          [-111.936026, 48.364601],\n          [-111.936138, 48.363831],\n          [-111.936258, 48.362885],\n          [-111.936438, 48.360792],\n          [-111.936415, 48.329088],\n          [-111.936407, 48.310354],\n          [-111.936413, 48.303031],\n          [-111.936412, 48.300795],\n          [-111.936402, 48.300483],\n          [-111.936381, 48.271331],\n          [-111.936384, 48.26711],\n          [-111.936382, 48.259592],\n          [-111.936296, 48.241832],\n          [-111.936359, 48.224045],\n          [-111.936352, 48.223792],\n          [-111.936325, 48.223208],\n          [-111.936251, 48.222646],\n          [-111.936138, 48.222131],\n          [-111.936009, 48.221594],\n          [-111.935863, 48.221148],\n          [-111.935674, 48.220724],\n          [-111.935554, 48.220438],\n          [-111.935323, 48.219975],\n          [-111.934809, 48.219106],\n          [-111.93372, 48.217503],\n          [-111.933233, 48.216812],\n          [-111.932738, 48.21609],\n          [-111.932429, 48.215627],\n          [-111.931294, 48.214006],\n          [-111.927397, 48.208419],\n          [-111.925603, 48.205843],\n          [-111.925208, 48.205217],\n          [-111.92491, 48.204712],\n          [-111.924771, 48.204436],\n          [-111.924661, 48.204188],\n          [-111.924567, 48.203923],\n          [-111.924475, 48.203592],\n          [-111.924434, 48.203298],\n          [-111.924418, 48.202753],\n          [-111.924413, 48.20226],\n          [-111.924452, 48.201981],\n          [-111.924528, 48.20166],\n          [-111.924607, 48.201399],\n          [-111.924686, 48.201185],\n          [-111.924808, 48.200887],\n          [-111.92494, 48.200634],\n          [-111.925143, 48.200322],\n          [-111.925478, 48.199721],\n          [-111.929307, 48.193399],\n          [-111.931749, 48.18936],\n          [-111.932143, 48.188696],\n          [-111.932455, 48.188174],\n          [-111.933068, 48.187161],\n          [-111.933601, 48.186274],\n          [-111.933896, 48.185797],\n          [-111.934176, 48.185351],\n          [-111.934674, 48.184441],\n          [-111.934869, 48.184038],\n          [-111.935015, 48.183702],\n          [-111.935133, 48.183407],\n          [-111.935235, 48.183131],\n          [-111.935317, 48.182855],\n          [-111.935435, 48.182454],\n          [-111.935517, 48.18214],\n          [-111.935563, 48.181903],\n          [-111.935605, 48.181629],\n          [-111.935654, 48.181347],\n          [-111.935672, 48.181134],\n          [-111.935695, 48.180837],\n          [-111.93571, 48.180431],\n          [-111.935711, 48.179913],\n          [-111.935689, 48.179699],\n          [-111.935666, 48.179392],\n          [-111.935641, 48.179193],\n          [-111.935605, 48.178954],\n          [-111.935551, 48.17862],\n          [-111.935494, 48.178341],\n          [-111.935425, 48.178065],\n          [-111.935362, 48.177851],\n          [-111.935271, 48.177512],\n          [-111.935083, 48.177015],\n          [-111.93498, 48.176751],\n          [-111.934859, 48.176484],\n          [-111.934688, 48.176141],\n          [-111.934489, 48.175789],\n          [-111.934239, 48.175377],\n          [-111.933859, 48.174812],\n          [-111.933189, 48.173765],\n          [-111.928027, 48.165762],\n          [-111.927735, 48.165321],\n          [-111.92603, 48.162726],\n          [-111.925093, 48.161247],\n          [-111.924008, 48.159611],\n          [-111.922175, 48.156783],\n          [-111.920615, 48.154387],\n          [-111.919007, 48.151911],\n          [-111.91822, 48.150663],\n          [-111.916601, 48.148144],\n          [-111.915551, 48.146568],\n          [-111.914312, 48.144665],\n          [-111.913624, 48.143606],\n          [-111.912311, 48.141567],\n          [-111.911974, 48.141065],\n          [-111.911504, 48.140381],\n          [-111.910989, 48.139656],\n          [-111.91031, 48.138734],\n          [-111.909273, 48.1374],\n          [-111.907928, 48.135653],\n          [-111.906666, 48.13405],\n          [-111.905997, 48.133172],\n          [-111.904722, 48.131516],\n          [-111.901655, 48.127581],\n          [-111.900048, 48.125516],\n          [-111.898729, 48.123822],\n          [-111.894029, 48.117798],\n          [-111.893315, 48.116857],\n          [-111.892001, 48.115177],\n          [-111.889638, 48.112132],\n          [-111.887413, 48.109275],\n          [-111.884717, 48.105808],\n          [-111.876044, 48.094626],\n          [-111.87031, 48.087229],\n          [-111.862959, 48.077764],\n          [-111.861332, 48.075665],\n          [-111.858755, 48.072362],\n          [-111.857125, 48.070241],\n          [-111.854834, 48.06729],\n          [-111.850948, 48.062304],\n          [-111.85011, 48.061229],\n          [-111.849084, 48.059917],\n          [-111.845348, 48.055071],\n          [-111.836461, 48.043589],\n          [-111.832454, 48.038401],\n          [-111.828116, 48.032803],\n          [-111.825147, 48.028974],\n          [-111.816587, 48.017942],\n          [-111.816087, 48.017289],\n          [-111.815305, 48.016376],\n          [-111.814473, 48.015423],\n          [-111.813623, 48.014499],\n          [-111.812937, 48.013816],\n          [-111.811984, 48.012851],\n          [-111.810868, 48.011863],\n          [-111.809752, 48.010882],\n          [-111.808825, 48.010101],\n          [-111.807598, 48.009153],\n          [-111.806388, 48.008229],\n          [-111.805238, 48.007408],\n          [-111.784158, 47.992286],\n          [-111.782561, 47.991143],\n          [-111.767146, 47.980084],\n          [-111.766219, 47.979354],\n          [-111.765283, 47.978504],\n          [-111.764288, 47.977544],\n          [-111.763404, 47.976585],\n          [-111.762691, 47.975723],\n          [-111.762193, 47.97501],\n          [-111.761653, 47.974154],\n          [-111.761121, 47.973252],\n          [-111.753336, 47.959718],\n          [-111.749036, 47.952205],\n          [-111.736505, 47.930384],\n          [-111.736106, 47.92965],\n          [-111.735644, 47.928853],\n          [-111.735343, 47.928305],\n          [-111.733592, 47.925244],\n          [-111.733306, 47.924769],\n          [-111.732599, 47.923554],\n          [-111.732395, 47.923205],\n          [-111.731718, 47.922093],\n          [-111.731538, 47.921738],\n          [-111.73117, 47.921043],\n          [-111.726112, 47.912262],\n          [-111.71442, 47.89173],\n          [-111.713776, 47.890608],\n          [-111.713253, 47.889578],\n          [-111.712927, 47.888864],\n          [-111.71254, 47.888058],\n          [-111.712146, 47.88689],\n          [-111.711811, 47.885744],\n          [-111.711519, 47.884564],\n          [-111.711253, 47.883125],\n          [-111.711124, 47.881922],\n          [-111.71103, 47.880834],\n          [-111.71103, 47.879792],\n          [-111.711129, 47.869762],\n          [-111.711004, 47.867783],\n          [-111.710901, 47.866758],\n          [-111.710781, 47.865716],\n          [-111.710618, 47.864547],\n          [-111.710438, 47.863447],\n          [-111.710283, 47.862537],\n          [-111.709991, 47.861213],\n          [-111.709756, 47.860259],\n          [-111.709335, 47.858847],\n          [-111.708841, 47.857285],\n          [-111.70727, 47.852822],\n          [-111.706867, 47.851704],\n          [-111.706498, 47.850875],\n          [-111.706077, 47.850017],\n          [-111.705434, 47.848819],\n          [-111.705305, 47.848582],\n          [-111.704816, 47.847747],\n          [-111.704215, 47.846849],\n          [-111.703623, 47.846054],\n          [-111.702678, 47.844833],\n          [-111.701983, 47.843986],\n          [-111.700902, 47.842828],\n          [-111.699923, 47.841889],\n          [-111.698979, 47.841013],\n          [-111.698052, 47.84023],\n          [-111.696893, 47.839291],\n          [-111.668363, 47.817267],\n          [-111.667479, 47.816472],\n          [-111.667042, 47.815942],\n          [-111.666647, 47.815434],\n          [-111.666226, 47.81476],\n          [-111.665943, 47.814143],\n          [-111.66578, 47.813619],\n          [-111.665625, 47.812887],\n          [-111.6656, 47.812391],\n          [-111.665591, 47.811797],\n          [-111.666429, 47.79584],\n          [-111.666535, 47.793822],\n          [-111.666492, 47.791308],\n          [-111.666439, 47.750802],\n          [-111.666442, 47.741317],\n          [-111.666445, 47.740989],\n          [-111.666406, 47.723306],\n          [-111.666381, 47.72244],\n          [-111.666295, 47.721684],\n          [-111.666158, 47.720881],\n          [-111.665986, 47.72024],\n          [-111.665746, 47.719547],\n          [-111.665419, 47.71871],\n          [-111.665042, 47.717925],\n          [-111.664647, 47.717243],\n          [-111.664132, 47.716493],\n          [-111.663789, 47.716008],\n          [-111.663359, 47.715528],\n          [-111.662432, 47.714581],\n          [-111.658081, 47.710071],\n          [-111.647285, 47.699031],\n          [-111.646085, 47.697836],\n          [-111.632275, 47.683698],\n          [-111.631949, 47.683351],\n          [-111.606663, 47.657441],\n          [-111.60117, 47.651798],\n          [-111.590415, 47.64073],\n          [-111.589918, 47.640187],\n          [-111.589463, 47.639655],\n          [-111.589068, 47.639157],\n          [-111.588707, 47.638689],\n          [-111.588287, 47.638139],\n          [-111.587849, 47.637538],\n          [-111.587549, 47.637104],\n          [-111.587231, 47.636624],\n          [-111.58627, 47.63501],\n          [-111.585369, 47.633136],\n          [-111.570511, 47.6019],\n          [-111.569945, 47.600818],\n          [-111.56955, 47.600169],\n          [-111.569224, 47.599643],\n          [-111.568846, 47.599047],\n          [-111.568546, 47.598607],\n          [-111.568168, 47.598051],\n          [-111.567747, 47.597472],\n          [-111.567335, 47.596928],\n          [-111.566915, 47.59643],\n          [-111.566537, 47.595991],\n          [-111.552899, 47.581183],\n          [-111.552633, 47.580911],\n          [-111.537629, 47.564691],\n          [-111.536514, 47.563515],\n          [-111.535904, 47.562901],\n          [-111.535175, 47.56227],\n          [-111.534437, 47.561691],\n          [-111.533656, 47.561129],\n          [-111.532711, 47.560504],\n          [-111.531647, 47.559884],\n          [-111.53048, 47.559311],\n          [-111.529184, 47.558737],\n          [-111.528008, 47.558285],\n          [-111.526806, 47.557897],\n          [-111.525424, 47.557503],\n          [-111.524008, 47.557162],\n          [-111.522824, 47.556953],\n          [-111.521734, 47.556779],\n          [-111.509679, 47.554952],\n          [-111.484251, 47.551039],\n          [-111.477299, 47.54995],\n          [-111.455614, 47.546631],\n          [-111.452477, 47.546143],\n          [-111.452005, 47.546074],\n          [-111.448496, 47.545531],\n          [-111.445301, 47.545037],\n          [-111.443894, 47.544799],\n          [-111.442357, 47.544492],\n          [-111.440907, 47.544162],\n          [-111.439173, 47.543716],\n          [-111.437894, 47.543368],\n          [-111.436512, 47.542957],\n          [-111.435045, 47.54247],\n          [-111.385349, 47.526175],\n          [-111.384241, 47.525793],\n          [-111.383478, 47.52541],\n          [-111.382928, 47.525097],\n          [-111.382499, 47.524784],\n          [-111.382036, 47.524384],\n          [-111.381709, 47.524025],\n          [-111.381452, 47.523741],\n          [-111.380053, 47.521909],\n          [-111.379298, 47.520959],\n          [-111.379152, 47.520779],\n          [-111.378714, 47.520286],\n          [-111.378268, 47.519857],\n          [-111.377555, 47.519394],\n          [-111.376774, 47.518994],\n          [-111.376096, 47.518733],\n          [-111.375409, 47.51853],\n          [-111.374294, 47.518234],\n          [-111.351059, 47.512362],\n          [-111.350081, 47.512055],\n          [-111.348914, 47.511632],\n          [-111.348184, 47.511255],\n          [-111.347446, 47.510878],\n          [-111.346914, 47.510553],\n          [-111.346356, 47.510147],\n          [-111.345832, 47.509759],\n          [-111.345309, 47.509295],\n          [-111.344914, 47.508884],\n          [-111.344605, 47.508542],\n          [-111.344193, 47.50802],\n          [-111.34391, 47.507591],\n          [-111.343618, 47.507133],\n          [-111.343352, 47.506535],\n          [-111.343137, 47.505921],\n          [-111.343, 47.505254],\n          [-111.342914, 47.504779],\n          [-111.342871, 47.504205],\n          [-111.342884, 47.503714],\n          [-111.343017, 47.501337],\n          [-111.343037, 47.500922],\n          [-111.343074, 47.500247],\n          [-111.343153, 47.498866],\n          [-111.343699, 47.489338],\n          [-111.343837, 47.488347],\n          [-111.344051, 47.487517],\n          [-111.344326, 47.486746],\n          [-111.344695, 47.485795],\n          [-111.345184, 47.484855],\n          [-111.345493, 47.484356],\n          [-111.346068, 47.483527],\n          [-111.34715, 47.48221],\n          [-111.347948, 47.481392],\n          [-111.348765, 47.480715],\n          [-111.349751, 47.479978],\n          [-111.350866, 47.47913],\n          [-111.356582, 47.475347],\n          [-111.365214, 47.469592],\n          [-111.367419, 47.46813],\n          [-111.367934, 47.467829],\n          [-111.368578, 47.467492],\n          [-111.36923, 47.467144],\n          [-111.369994, 47.466807],\n          [-111.370973, 47.466407],\n          [-111.371926, 47.466042],\n          [-111.372818, 47.465746],\n          [-111.373522, 47.465525],\n          [-111.374509, 47.465258],\n          [-111.429286, 47.452445],\n          [-111.429621, 47.452364],\n          [-111.473508, 47.442064],\n          [-111.50183, 47.435384],\n          [-111.502749, 47.435175],\n          [-111.503701, 47.434961],\n          [-111.504362, 47.434792],\n          [-111.505221, 47.434543],\n          [-111.506045, 47.434299],\n          [-111.506663, 47.434095],\n          [-111.507143, 47.433927],\n          [-111.507907, 47.433648],\n          [-111.508654, 47.433312],\n          [-111.509255, 47.433045],\n          [-111.509933, 47.432725],\n          [-111.510534, 47.432412],\n          [-111.51122, 47.432029],\n          [-111.51183, 47.431674],\n          [-111.512954, 47.430931],\n          [-111.513546, 47.43049],\n          [-111.524011, 47.422011],\n          [-111.569141, 47.385345],\n          [-111.6142, 47.348685],\n          [-111.614466, 47.34847],\n          [-111.634341, 47.332266],\n          [-111.69101, 47.285965],\n          [-111.692683, 47.284596],\n          [-111.694151, 47.283461],\n          [-111.694838, 47.282943],\n          [-111.696432, 47.281863],\n          [-111.698123, 47.280815],\n          [-111.699024, 47.280297],\n          [-111.699436, 47.280064],\n          [-111.703522, 47.277671],\n          [-111.704183, 47.27728],\n          [-111.704689, 47.276966],\n          [-111.70511, 47.276686],\n          [-111.705436, 47.276442],\n          [-111.705788, 47.276139],\n          [-111.706182, 47.275766],\n          [-111.706612, 47.275289],\n          [-111.706989, 47.274806],\n          [-111.707367, 47.274264],\n          [-111.707573, 47.273856],\n          [-111.707813, 47.273379],\n          [-111.707933, 47.273047],\n          [-111.708045, 47.272651],\n          [-111.708122, 47.272307],\n          [-111.708199, 47.271911],\n          [-111.708234, 47.271544],\n          [-111.708234, 47.271212],\n          [-111.708157, 47.264538],\n          [-111.708114, 47.262342],\n          [-111.708122, 47.261794],\n          [-111.708157, 47.261369],\n          [-111.708234, 47.260851],\n          [-111.708268, 47.260653],\n          [-111.708337, 47.260257],\n          [-111.708508, 47.259511],\n          [-111.708637, 47.258923],\n          [-111.708783, 47.258241],\n          [-111.70898, 47.257536],\n          [-111.709152, 47.256942],\n          [-111.709298, 47.256383],\n          [-111.710079, 47.25333],\n          [-111.710328, 47.252363],\n          [-111.710474, 47.251833],\n          [-111.710637, 47.251332],\n          [-111.710834, 47.250889],\n          [-111.71104, 47.250545],\n          [-111.711367, 47.250085],\n          [-111.711658, 47.249753],\n          [-111.711942, 47.249444],\n          [-111.712345, 47.249089],\n          [-111.712766, 47.248751],\n          [-111.71316, 47.248494],\n          [-111.713624, 47.248221],\n          [-111.714147, 47.247958],\n          [-111.714834, 47.247655],\n          [-111.729726, 47.241112],\n          [-111.73291, 47.239807],\n          [-111.75169, 47.232534],\n          [-111.754093, 47.231624],\n          [-111.75635, 47.230861],\n          [-111.75676, 47.230739],\n          [-111.765002, 47.228413],\n          [-111.765835, 47.228157],\n          [-111.766633, 47.227877],\n          [-111.767345, 47.227597],\n          [-111.768092, 47.227306],\n          [-111.768719, 47.227026],\n          [-111.769474, 47.226676],\n          [-111.770058, 47.226361],\n          [-111.770727, 47.225988],\n          [-111.771448, 47.225534],\n          [-111.772118, 47.225096],\n          [-111.772693, 47.224688],\n          [-111.773405, 47.22417],\n          [-111.773714, 47.223936],\n          [-111.774169, 47.223575],\n          [-111.774641, 47.223103],\n          [-111.775104, 47.222619],\n          [-111.775499, 47.222211],\n          [-111.775885, 47.221774],\n          [-111.776306, 47.221255],\n          [-111.776658, 47.220777],\n          [-111.77695, 47.220369],\n          [-111.777422, 47.219611],\n          [-111.777722, 47.219057],\n          [-111.778014, 47.218422],\n          [-111.778289, 47.217746],\n          [-111.778503, 47.217104],\n          [-111.778675, 47.216428],\n          [-111.778881, 47.215694],\n          [-111.779061, 47.214988],\n          [-111.780057, 47.210796],\n          [-111.780203, 47.210213],\n          [-111.780323, 47.209758],\n          [-111.780435, 47.209397],\n          [-111.780641, 47.208808],\n          [-111.780907, 47.208201],\n          [-111.78113, 47.207729],\n          [-111.781301, 47.207438],\n          [-111.781499, 47.207129],\n          [-111.78228, 47.205916],\n          [-111.783293, 47.204645],\n          [-111.783936, 47.203974],\n          [-111.784735, 47.203146],\n          [-111.785593, 47.202225],\n          [-111.786314, 47.201466],\n          [-111.786872, 47.200883],\n          [-111.787902, 47.199845],\n          [-111.788254, 47.199507],\n          [-111.788674, 47.19914],\n          [-111.789086, 47.19879],\n          [-111.789584, 47.198387],\n          [-111.790168, 47.197921],\n          [-111.790605, 47.197618],\n          [-111.791249, 47.197227],\n          [-111.791824, 47.196877],\n          [-111.792545, 47.196474],\n          [-111.793198, 47.196136],\n          [-111.79397, 47.195769],\n          [-111.794805, 47.195425],\n          [-111.801248, 47.192835],\n          [-111.801575, 47.192701],\n          [-111.802656, 47.192287],\n          [-111.803514, 47.191937],\n          [-111.804167, 47.191628],\n          [-111.804665, 47.191394],\n          [-111.8053, 47.191045],\n          [-111.805723, 47.190797],\n          [-111.805997, 47.190634],\n          [-111.806478, 47.190323],\n          [-111.806732, 47.190144],\n          [-111.80699, 47.189955],\n          [-111.807242, 47.189755],\n          [-111.807499, 47.189537],\n          [-111.807978, 47.189108],\n          [-111.808309, 47.188784],\n          [-111.808738, 47.188316],\n          [-111.809145, 47.187831],\n          [-111.809375, 47.187515],\n          [-111.809578, 47.187207],\n          [-111.809725, 47.186968],\n          [-111.809941, 47.18658],\n          [-111.810196, 47.186052],\n          [-111.810485, 47.185392],\n          [-111.810582, 47.185034],\n          [-111.810757, 47.184458],\n          [-111.81087, 47.184068],\n          [-111.811288, 47.182591],\n          [-111.811466, 47.182023],\n          [-111.811592, 47.181562],\n          [-111.811725, 47.181068],\n          [-111.811881, 47.18053],\n          [-111.812016, 47.179972],\n          [-111.812133, 47.179486],\n          [-111.812304, 47.178698],\n          [-111.812475, 47.177933],\n          [-111.812795, 47.176671],\n          [-111.813022, 47.175805],\n          [-111.813143, 47.175313],\n          [-111.813289, 47.174743],\n          [-111.813451, 47.174086],\n          [-111.813587, 47.173603],\n          [-111.813709, 47.173199],\n          [-111.813868, 47.172742],\n          [-111.814052, 47.172177],\n          [-111.81431, 47.171374],\n          [-111.814446, 47.170953],\n          [-111.814555, 47.170592],\n          [-111.814621, 47.170315],\n          [-111.814724, 47.169845],\n          [-111.814867, 47.169286],\n          [-111.814924, 47.169023],\n          [-111.815005, 47.168585],\n          [-111.81512, 47.168075],\n          [-111.815267, 47.167513],\n          [-111.81537, 47.167124],\n          [-111.815534, 47.166596],\n          [-111.815743, 47.165879],\n          [-111.815883, 47.165407],\n          [-111.816017, 47.16497],\n          [-111.816151, 47.164499],\n          [-111.816299, 47.164102],\n          [-111.816455, 47.163605],\n          [-111.816606, 47.163233],\n          [-111.81675, 47.162929],\n          [-111.8169, 47.16265],\n          [-111.817163, 47.162234],\n          [-111.817461, 47.161792],\n          [-111.817707, 47.161428],\n          [-111.817918, 47.161172],\n          [-111.818109, 47.160939],\n          [-111.81826, 47.160773],\n          [-111.818436, 47.160598],\n          [-111.818713, 47.160322],\n          [-111.819137, 47.159916],\n          [-111.819338, 47.159742],\n          [-111.819615, 47.159506],\n          [-111.819811, 47.159353],\n          [-111.820101, 47.159137],\n          [-111.820886, 47.158653],\n          [-111.821347, 47.158391],\n          [-111.821709, 47.158179],\n          [-111.82215, 47.157949],\n          [-111.822792, 47.157656],\n          [-111.823291, 47.157407],\n          [-111.823951, 47.157074],\n          [-111.824604, 47.156773],\n          [-111.824926, 47.156618],\n          [-111.826016, 47.156075],\n          [-111.826777, 47.155704],\n          [-111.827118, 47.155527],\n          [-111.827632, 47.155278],\n          [-111.828833, 47.154684],\n          [-111.830331, 47.153967],\n          [-111.83092, 47.153679],\n          [-111.831417, 47.153485],\n          [-111.831694, 47.153394],\n          [-111.831937, 47.15332],\n          [-111.832157, 47.153261],\n          [-111.832517, 47.15318],\n          [-111.832892, 47.153117],\n          [-111.833253, 47.153076],\n          [-111.833573, 47.153049],\n          [-111.833993, 47.153025],\n          [-111.834559, 47.153049],\n          [-111.835126, 47.153113],\n          [-111.835701, 47.1532],\n          [-111.83595, 47.153259],\n          [-111.841856, 47.154858],\n          [-111.842362, 47.155002],\n          [-111.842712, 47.155094],\n          [-111.843019, 47.155158],\n          [-111.843672, 47.155257],\n          [-111.8438, 47.155267],\n          [-111.844087, 47.155287],\n          [-111.844399, 47.155286],\n          [-111.844699, 47.15528],\n          [-111.845058, 47.15526],\n          [-111.845509, 47.155193],\n          [-111.845869, 47.155122],\n          [-111.846291, 47.155019],\n          [-111.846644, 47.154905],\n          [-111.846928, 47.154785],\n          [-111.847126, 47.154685],\n          [-111.847479, 47.154504],\n          [-111.847736, 47.154346],\n          [-111.847908, 47.15421],\n          [-111.848115, 47.154036],\n          [-111.848251, 47.153894],\n          [-111.848342, 47.153792],\n          [-111.84847, 47.153647],\n          [-111.848543, 47.153546],\n          [-111.848649, 47.153419],\n          [-111.848764, 47.153232],\n          [-111.848861, 47.153032],\n          [-111.848947, 47.152823],\n          [-111.848973, 47.152708],\n          [-111.849021, 47.152541],\n          [-111.849042, 47.152364],\n          [-111.849077, 47.152131],\n          [-111.849103, 47.151825],\n          [-111.849333, 47.149062],\n          [-111.849393, 47.148406],\n          [-111.8494, 47.148192],\n          [-111.849408, 47.147987],\n          [-111.8494, 47.147824],\n          [-111.84939, 47.147698],\n          [-111.849374, 47.147556],\n          [-111.849347, 47.147435],\n          [-111.849331, 47.147351],\n          [-111.849245, 47.146966],\n          [-111.849142, 47.146674],\n          [-111.849059, 47.146434],\n          [-111.848943, 47.146212],\n          [-111.84886, 47.146053],\n          [-111.848767, 47.145896],\n          [-111.848673, 47.145762],\n          [-111.848566, 47.14562],\n          [-111.847025, 47.143717],\n          [-111.846887, 47.143525],\n          [-111.846766, 47.143353],\n          [-111.846661, 47.14319],\n          [-111.846521, 47.142953],\n          [-111.846415, 47.142749],\n          [-111.846343, 47.142591],\n          [-111.846269, 47.14237],\n          [-111.846241, 47.142263],\n          [-111.846223, 47.14217],\n          [-111.846209, 47.142062],\n          [-111.84619, 47.141876],\n          [-111.846192, 47.141745],\n          [-111.846217, 47.141528],\n          [-111.846242, 47.141353],\n          [-111.84627, 47.141184],\n          [-111.846324, 47.141016],\n          [-111.846398, 47.140797],\n          [-111.846525, 47.140531],\n          [-111.846604, 47.14041],\n          [-111.846676, 47.14029],\n          [-111.846846, 47.140059],\n          [-111.847142, 47.139751],\n          [-111.847281, 47.13963],\n          [-111.84746, 47.139479],\n          [-111.847678, 47.139323],\n          [-111.84791, 47.139171],\n          [-111.848186, 47.139013],\n          [-111.848438, 47.138891],\n          [-111.848706, 47.138772],\n          [-111.848984, 47.138674],\n          [-111.849267, 47.138581],\n          [-111.849592, 47.138477],\n          [-111.849947, 47.138393],\n          [-111.850257, 47.138331],\n          [-111.850556, 47.138292],\n          [-111.850908, 47.138241],\n          [-111.851241, 47.13822],\n          [-111.85164, 47.138209],\n          [-111.851974, 47.13821],\n          [-111.852237, 47.138223],\n          [-111.852532, 47.138247],\n          [-111.852795, 47.138276],\n          [-111.853123, 47.13833],\n          [-111.853394, 47.138374],\n          [-111.853787, 47.138457],\n          [-111.854766, 47.138667],\n          [-111.855826, 47.138884],\n          [-111.856179, 47.13897],\n          [-111.856565, 47.139029],\n          [-111.856792, 47.139068],\n          [-111.857173, 47.13911],\n          [-111.857431, 47.139137],\n          [-111.857676, 47.139157],\n          [-111.858048, 47.139176],\n          [-111.858338, 47.139177],\n          [-111.858762, 47.139167],\n          [-111.859155, 47.139148],\n          [-111.85955, 47.139117],\n          [-111.859805, 47.139089],\n          [-111.860245, 47.139022],\n          [-111.860491, 47.13898],\n          [-111.860683, 47.138944],\n          [-111.860973, 47.138885],\n          [-111.861214, 47.138829],\n          [-111.861479, 47.138758],\n          [-111.861743, 47.138677],\n          [-111.862069, 47.138562],\n          [-111.862344, 47.138449],\n          [-111.862687, 47.138297],\n          [-111.862931, 47.138175],\n          [-111.863114, 47.138087],\n          [-111.863314, 47.137975],\n          [-111.863599, 47.137807],\n          [-111.863972, 47.13756],\n          [-111.864261, 47.137341],\n          [-111.864442, 47.137202],\n          [-111.864674, 47.137005],\n          [-111.864969, 47.136736],\n          [-111.865258, 47.13642],\n          [-111.867853, 47.13324],\n          [-111.868102, 47.13296],\n          [-111.868445, 47.132657],\n          [-111.868909, 47.132347],\n          [-111.869372, 47.132096],\n          [-111.869776, 47.131938],\n          [-111.870291, 47.131792],\n          [-111.870754, 47.131687],\n          [-111.871286, 47.131623],\n          [-111.87181, 47.131605],\n          [-111.872359, 47.131617],\n          [-111.873389, 47.131705],\n          [-111.875681, 47.131897],\n          [-111.885054, 47.132785],\n          [-111.886566, 47.132886],\n          [-111.888607, 47.1331],\n          [-111.888985, 47.133135],\n          [-111.889766, 47.133217],\n          [-111.890444, 47.133281],\n          [-111.891225, 47.133322],\n          [-111.891886, 47.133334],\n          [-111.892598, 47.133334],\n          [-111.893242, 47.133316],\n          [-111.8938, 47.133305],\n          [-111.894512, 47.133246],\n          [-111.89513, 47.133194],\n          [-111.89563, 47.133132],\n          [-111.896274, 47.133044],\n          [-111.89678, 47.132974],\n          [-111.898531, 47.132636],\n          [-111.899656, 47.132344],\n          [-111.900711, 47.132022],\n          [-111.901398, 47.131783],\n          [-111.902445, 47.131403],\n          [-111.904162, 47.130755],\n          [-111.909034, 47.128927],\n          [-111.913729, 47.127181],\n          [-111.917251, 47.125878],\n          [-111.92071, 47.1247],\n          [-111.921698, 47.124251],\n          [-111.922387, 47.123838],\n          [-111.922806, 47.123526],\n          [-111.924809, 47.121884],\n          [-111.925527, 47.121467],\n          [-111.926631, 47.121045],\n          [-111.927545, 47.120838],\n          [-111.928844, 47.120679],\n          [-111.939954, 47.119561],\n          [-111.940893, 47.119375],\n          [-111.941491, 47.119193],\n          [-111.94258, 47.118694],\n          [-111.94328, 47.118205],\n          [-111.943682, 47.117842],\n          [-111.944167, 47.117216],\n          [-111.94437, 47.116782],\n          [-111.94452, 47.116283],\n          [-111.944594, 47.115646],\n          [-111.944471, 47.113184],\n          [-111.944519, 47.112085],\n          [-111.944699, 47.111164],\n          [-111.9451, 47.109855],\n          [-111.94519, 47.109613],\n          [-111.946818, 47.104798],\n          [-111.947185, 47.103915],\n          [-111.94757, 47.103215],\n          [-111.948705, 47.101708],\n          [-111.95025, 47.099859],\n          [-111.951568, 47.098237],\n          [-111.952318, 47.097326],\n          [-111.952866, 47.096646],\n          [-111.954165, 47.094457],\n          [-111.954536, 47.093996],\n          [-111.955001, 47.093573],\n          [-111.95538, 47.093283],\n          [-111.95597, 47.092921],\n          [-111.958022, 47.092174],\n          [-111.958929, 47.091665],\n          [-111.959563, 47.091145],\n          [-111.959918, 47.090782],\n          [-111.960199, 47.090406],\n          [-111.960514, 47.089782],\n          [-111.960679, 47.089121],\n          [-111.961076, 47.083974],\n          [-111.961218, 47.083113],\n          [-111.961515, 47.082259],\n          [-111.962027, 47.081188],\n          [-111.962536, 47.080367],\n          [-111.963148, 47.079581],\n          [-111.964601, 47.078023],\n          [-111.966718, 47.075826],\n          [-111.967024, 47.075517],\n          [-111.969094, 47.073375],\n          [-111.970437, 47.07194],\n          [-111.972154, 47.070032],\n          [-111.973432, 47.068542],\n          [-111.974103, 47.067809],\n          [-111.974604, 47.067107],\n          [-111.976616, 47.064731],\n          [-111.98105, 47.059331],\n          [-111.981811, 47.058552],\n          [-111.982905, 47.057585],\n          [-111.983864, 47.057007],\n          [-111.985011, 47.056354],\n          [-111.986314, 47.055712],\n          [-111.986853, 47.055504],\n          [-111.987827, 47.055224],\n          [-111.990272, 47.054577],\n          [-111.991627, 47.053954],\n          [-111.992491, 47.053494],\n          [-111.993301, 47.052977],\n          [-111.994268, 47.05221],\n          [-111.994901, 47.051592],\n          [-112.00108, 47.045261],\n          [-112.002131, 47.044014],\n          [-112.002341, 47.043639],\n          [-112.002459, 47.043291],\n          [-112.00254, 47.04249],\n          [-112.002551, 47.041633],\n          [-112.002802, 47.040468],\n          [-112.003031, 47.039996],\n          [-112.003311, 47.039629],\n          [-112.00408, 47.038901],\n          [-112.004669, 47.038537],\n          [-112.005381, 47.038191],\n          [-112.006132, 47.03787],\n          [-112.007591, 47.037508],\n          [-112.008057, 47.037437],\n          [-112.009475, 47.037313],\n          [-112.012696, 47.037258],\n          [-112.01489, 47.037245],\n          [-112.016275, 47.037163],\n          [-112.0192, 47.037033],\n          [-112.020595, 47.036893],\n          [-112.021841, 47.036661],\n          [-112.023428, 47.036288],\n          [-112.024543, 47.035923],\n          [-112.025634, 47.03549],\n          [-112.026621, 47.035004],\n          [-112.027875, 47.034259],\n          [-112.04368, 47.024236],\n          [-112.044909, 47.023441],\n          [-112.04544, 47.023036],\n          [-112.04608, 47.022418],\n          [-112.046528, 47.021863],\n          [-112.046751, 47.021531],\n          [-112.046895, 47.021189],\n          [-112.048457, 47.017223],\n          [-112.049379, 47.014861],\n          [-112.04961, 47.014335],\n          [-112.049878, 47.013819],\n          [-112.050194, 47.013314],\n          [-112.050556, 47.012813],\n          [-112.050955, 47.01233],\n          [-112.051351, 47.011873],\n          [-112.051809, 47.011423],\n          [-112.052303, 47.010991],\n          [-112.05283, 47.010576],\n          [-112.053387, 47.010182],\n          [-112.053972, 47.009806],\n          [-112.056998, 47.008006],\n          [-112.058515, 47.007109],\n          [-112.060333, 47.006031],\n          [-112.061846, 47.00513],\n          [-112.062472, 47.004869],\n          [-112.062889, 47.004741],\n          [-112.063358, 47.004645],\n          [-112.063683, 47.004606],\n          [-112.064074, 47.004561],\n          [-112.064445, 47.004519],\n          [-112.06488, 47.004576],\n          [-112.06527, 47.004629],\n          [-112.065565, 47.004697],\n          [-112.065974, 47.004792],\n          [-112.066808, 47.004991],\n          [-112.06824, 47.005361],\n          [-112.0686, 47.005467],\n          [-112.069096, 47.005596],\n          [-112.069473, 47.005688],\n          [-112.069732, 47.005745],\n          [-112.070266, 47.005855],\n          [-112.070699, 47.005951],\n          [-112.071253, 47.006048],\n          [-112.071642, 47.006114],\n          [-112.071928, 47.006158],\n          [-112.072302, 47.006209],\n          [-112.072735, 47.006263],\n          [-112.072984, 47.006287],\n          [-112.073367, 47.006318],\n          [-112.073792, 47.006352],\n          [-112.074219, 47.006372],\n          [-112.074542, 47.006382],\n          [-112.074829, 47.00639],\n          [-112.075178, 47.006392],\n          [-112.075603, 47.006393],\n          [-112.076788, 47.006332],\n          [-112.077271, 47.006281],\n          [-112.077628, 47.006225],\n          [-112.078026, 47.006153],\n          [-112.078436, 47.006074],\n          [-112.078755, 47.005996],\n          [-112.079201, 47.005866],\n          [-112.079533, 47.005747],\n          [-112.079812, 47.00563],\n          [-112.080082, 47.005495],\n          [-112.080379, 47.005332],\n          [-112.080635, 47.005164],\n          [-112.080953, 47.004927],\n          [-112.081049, 47.004826],\n          [-112.081198, 47.004689],\n          [-112.081316, 47.004562],\n          [-112.081449, 47.004379],\n          [-112.081568, 47.004191],\n          [-112.081674, 47.003987],\n          [-112.08174, 47.003858],\n          [-112.081806, 47.003692],\n          [-112.081884, 47.003438],\n          [-112.08191, 47.003275],\n          [-112.081934, 47.003066],\n          [-112.08193, 47.002831],\n          [-112.081896, 47.002597],\n          [-112.081853, 47.002371],\n          [-112.081798, 47.002194],\n          [-112.081607, 47.00176],\n          [-112.081184, 47.001198],\n          [-112.079559, 46.99968],\n          [-112.078016, 46.99838],\n          [-112.07758, 46.997912],\n          [-112.077288, 46.997532],\n          [-112.076986, 46.99693],\n          [-112.076889, 46.996514],\n          [-112.076886, 46.996116],\n          [-112.076984, 46.995478],\n          [-112.07795, 46.992584],\n          [-112.078047, 46.991994],\n          [-112.078024, 46.991594],\n          [-112.077935, 46.9912],\n          [-112.077672, 46.990627],\n          [-112.076129, 46.988425],\n          [-112.075762, 46.987771],\n          [-112.075646, 46.98742],\n          [-112.075619, 46.987055],\n          [-112.075663, 46.986679],\n          [-112.075796, 46.986299],\n          [-112.076008, 46.985921],\n          [-112.076502, 46.98539],\n          [-112.077181, 46.984932],\n          [-112.081242, 46.982494],\n          [-112.081853, 46.981972],\n          [-112.082104, 46.981646],\n          [-112.082346, 46.981245],\n          [-112.082526, 46.98074],\n          [-112.082567, 46.980266],\n          [-112.082681, 46.977427],\n          [-112.082826, 46.974499],\n          [-112.083032, 46.973709],\n          [-112.083438, 46.973098],\n          [-112.083941, 46.972667],\n          [-112.084536, 46.97225],\n          [-112.093815, 46.965771],\n          [-112.094034, 46.965596],\n          [-112.094318, 46.965306],\n          [-112.094501, 46.965085],\n          [-112.094642, 46.964864],\n          [-112.094785, 46.964575],\n          [-112.094868, 46.964338],\n          [-112.094926, 46.964081],\n          [-112.094952, 46.963813],\n          [-112.094963, 46.963562],\n          [-112.094964, 46.963005],\n          [-112.094945, 46.962147],\n          [-112.095064, 46.961322],\n          [-112.095315, 46.960775],\n          [-112.095663, 46.960328],\n          [-112.098599, 46.957746],\n          [-112.098975, 46.957432],\n          [-112.099726, 46.956946],\n          [-112.100314, 46.956644],\n          [-112.101038, 46.956326],\n          [-112.103946, 46.955297],\n          [-112.107802, 46.953955],\n          [-112.108475, 46.953671],\n          [-112.108901, 46.953445],\n          [-112.109465, 46.953038],\n          [-112.109979, 46.952469],\n          [-112.110197, 46.952042],\n          [-112.111502, 46.949682],\n          [-112.112324, 46.948952],\n          [-112.113184, 46.948533],\n          [-112.114208, 46.948308],\n          [-112.116111, 46.948021],\n          [-112.117289, 46.947669],\n          [-112.118334, 46.94705],\n          [-112.119549, 46.946068],\n          [-112.122402, 46.943642],\n          [-112.123133, 46.943013],\n          [-112.123553, 46.942583],\n          [-112.12389, 46.942171],\n          [-112.124619, 46.941266],\n          [-112.125571, 46.939982],\n          [-112.126015, 46.939377],\n          [-112.1265, 46.938749],\n          [-112.126751, 46.938397],\n          [-112.126995, 46.938014],\n          [-112.127231, 46.93766],\n          [-112.127472, 46.93708],\n          [-112.127553, 46.936521],\n          [-112.127485, 46.935878],\n          [-112.126037, 46.931011],\n          [-112.125843, 46.930596],\n          [-112.125614, 46.930288],\n          [-112.125356, 46.930017],\n          [-112.125, 46.92973],\n          [-112.122981, 46.928549],\n          [-112.122668, 46.928293],\n          [-112.122315, 46.927871],\n          [-112.122099, 46.927296],\n          [-112.122093, 46.926792],\n          [-112.122341, 46.926128],\n          [-112.12333, 46.924835],\n          [-112.123628, 46.924404],\n          [-112.123835, 46.923877],\n          [-112.123883, 46.923325],\n          [-112.123775, 46.9228],\n          [-112.123494, 46.922251],\n          [-112.123242, 46.921939],\n          [-112.123161, 46.921857],\n          [-112.12174, 46.920823],\n          [-112.121416, 46.920602],\n          [-112.120977, 46.920179],\n          [-112.120697, 46.919775],\n          [-112.120503, 46.919327],\n          [-112.120322, 46.918471],\n          [-112.119667, 46.915666],\n          [-112.11939, 46.915074],\n          [-112.119062, 46.914644],\n          [-112.118506, 46.91421],\n          [-112.116708, 46.913328],\n          [-112.116193, 46.912968],\n          [-112.115472, 46.912187],\n          [-112.115356, 46.911933],\n          [-112.115279, 46.911728],\n          [-112.115241, 46.911454],\n          [-112.11523, 46.911175],\n          [-112.115266, 46.910915],\n          [-112.115368, 46.910602],\n          [-112.115446, 46.910438],\n          [-112.115662, 46.910084],\n          [-112.11604, 46.909673],\n          [-112.119395, 46.907257],\n          [-112.119896, 46.906695],\n          [-112.120633, 46.90538],\n          [-112.120979, 46.904986],\n          [-112.122506, 46.903673],\n          [-112.12294, 46.903177],\n          [-112.123172, 46.902727],\n          [-112.123344, 46.902186],\n          [-112.12337, 46.901665],\n          [-112.12326, 46.90114],\n          [-112.123004, 46.900542],\n          [-112.122296, 46.899463],\n          [-112.118791, 46.893932],\n          [-112.118077, 46.892887],\n          [-112.117488, 46.892253],\n          [-112.11672, 46.891638],\n          [-112.11608, 46.891253],\n          [-112.114112, 46.89021],\n          [-112.110716, 46.888379],\n          [-112.110338, 46.888159],\n          [-112.106096, 46.885885],\n          [-112.101398, 46.88336],\n          [-112.094609, 46.879651],\n          [-112.0931, 46.878959],\n          [-112.091311, 46.878288],\n          [-112.089958, 46.877867],\n          [-112.088521, 46.877511],\n          [-112.069016, 46.872724],\n          [-112.049279, 46.867857],\n          [-112.047103, 46.867189],\n          [-112.044993, 46.866382],\n          [-112.043719, 46.865827],\n          [-112.042541, 46.865241],\n          [-112.040586, 46.864168],\n          [-112.039263, 46.863298],\n          [-112.037988, 46.862365],\n          [-112.036738, 46.86133],\n          [-112.014076, 46.842104],\n          [-112.012788, 46.840941],\n          [-112.011749, 46.839918],\n          [-112.010445, 46.83844],\n          [-112.009025, 46.83667],\n          [-112.007922, 46.83499],\n          [-112.007123, 46.833605],\n          [-112.006361, 46.832073],\n          [-112.005882, 46.830963],\n          [-112.003109, 46.824179],\n          [-112.002795, 46.823308],\n          [-112.001559, 46.820272],\n          [-112.001405, 46.819943],\n          [-112.001005, 46.818846],\n          [-112.000667, 46.817632],\n          [-112.000578, 46.816809],\n          [-112.000493, 46.815794],\n          [-112.000516, 46.814928],\n          [-112.000693, 46.813761],\n          [-112.001162, 46.812127],\n          [-112.001628, 46.811112],\n          [-112.002462, 46.809713],\n          [-112.003317, 46.808598],\n          [-112.004049, 46.80782],\n          [-112.005118, 46.806834],\n          [-112.006592, 46.805739],\n          [-112.028016, 46.792156],\n          [-112.029741, 46.790912],\n          [-112.030745, 46.79008],\n          [-112.031484, 46.78938],\n          [-112.032257, 46.788498],\n          [-112.033266, 46.787176],\n          [-112.033873, 46.786179],\n          [-112.034356, 46.785153],\n          [-112.03474, 46.784222],\n          [-112.035041, 46.783106],\n          [-112.035281, 46.78179],\n          [-112.035332, 46.780429],\n          [-112.035162, 46.778932],\n          [-112.034994, 46.7781],\n          [-112.034623, 46.77676],\n          [-112.031439, 46.767593],\n          [-112.030872, 46.766116],\n          [-112.03058, 46.765566],\n          [-112.0298, 46.76452],\n          [-112.029051, 46.763776],\n          [-112.027625, 46.762715],\n          [-112.021142, 46.759474],\n          [-112.019784, 46.758674],\n          [-112.018427, 46.757701],\n          [-112.017026, 46.756401],\n          [-112.01646, 46.75581],\n          [-112.015787, 46.754949],\n          [-112.015034, 46.753726],\n          [-112.014675, 46.752957],\n          [-112.014369, 46.752178],\n          [-112.014113, 46.751252],\n          [-112.013978, 46.7503],\n          [-112.013965, 46.748917],\n          [-112.01407, 46.747974],\n          [-112.014425, 46.74657],\n          [-112.017111, 46.737855],\n          [-112.017375, 46.736784],\n          [-112.017607, 46.735355],\n          [-112.017673, 46.734409],\n          [-112.017685, 46.733581],\n          [-112.017588, 46.732104],\n          [-112.017413, 46.730961],\n          [-112.016851, 46.728893],\n          [-112.016052, 46.726997],\n          [-112.015229, 46.725474],\n          [-112.014031, 46.723297],\n          [-112.013406, 46.721963],\n          [-112.012932, 46.720654],\n          [-112.012536, 46.719097],\n          [-112.012339, 46.717599],\n          [-112.012283, 46.716345],\n          [-112.012185, 46.707222],\n          [-112.012075, 46.70024],\n          [-112.011602, 46.660701],\n          [-112.011601, 46.660313],\n          [-112.011436, 46.648193],\n          [-112.011441, 46.648028],\n          [-112.011427, 46.646569],\n          [-112.011246, 46.631754],\n          [-112.011146, 46.621062],\n          [-112.011132, 46.619553],\n          [-112.01109, 46.616805],\n          [-112.011059, 46.614798],\n          [-112.011048, 46.61406],\n          [-112.011037, 46.613709],\n          [-112.010993, 46.613319],\n          [-112.010941, 46.613077],\n          [-112.010877, 46.612674],\n          [-112.010838, 46.612474],\n          [-112.010746, 46.61207],\n          [-112.01064, 46.611666],\n          [-112.010587, 46.611464],\n          [-112.010508, 46.611263],\n          [-112.010314, 46.610728],\n          [-112.010256, 46.610545],\n          [-112.010198, 46.610369],\n          [-112.009915, 46.609824],\n          [-112.009739, 46.609444],\n          [-112.009564, 46.609128],\n          [-112.009295, 46.608718],\n          [-112.006524, 46.603944],\n          [-112.003906, 46.599455],\n          [-112.002681, 46.597363],\n          [-112.001205, 46.594784],\n          [-112, 46.592799],\n          [-111.999632, 46.592286],\n          [-111.999301, 46.591861],\n          [-111.998522, 46.590983],\n          [-111.99828, 46.590699],\n          [-111.997972, 46.590398],\n          [-111.996867, 46.589396],\n          [-111.996488, 46.589096],\n          [-111.995735, 46.58854],\n          [-111.988743, 46.583855],\n          [-111.983795, 46.580551],\n          [-111.98049, 46.578347],\n          [-111.978312, 46.576892],\n          [-111.976196, 46.575478],\n          [-111.970612, 46.571744],\n          [-111.969019, 46.570651],\n          [-111.966637, 46.569071],\n          [-111.957631, 46.563066],\n          [-111.956867, 46.562459],\n          [-111.956078, 46.56178],\n          [-111.955528, 46.561278],\n          [-111.95503, 46.560765],\n          [-111.954464, 46.560133],\n          [-111.953992, 46.559508],\n          [-111.953623, 46.558994],\n          [-111.953365, 46.558587],\n          [-111.953022, 46.558003],\n          [-111.95261, 46.557224],\n          [-111.951443, 46.55468],\n          [-111.946695, 46.544203],\n          [-111.946304, 46.54331],\n          [-111.945744, 46.542172],\n          [-111.945185, 46.540831],\n          [-111.944611, 46.539567],\n          [-111.943999, 46.538252],\n          [-111.943392, 46.536869],\n          [-111.941186, 46.532081],\n          [-111.940903, 46.53142],\n          [-111.940559, 46.530629],\n          [-111.940379, 46.530109],\n          [-111.940293, 46.529684],\n          [-111.940268, 46.529241],\n          [-111.940319, 46.528857],\n          [-111.940422, 46.528432],\n          [-111.940568, 46.528025],\n          [-111.94074, 46.527676],\n          [-111.940971, 46.527322],\n          [-111.941246, 46.527003],\n          [-111.941667, 46.526619],\n          [-111.943134, 46.525497],\n          [-111.943589, 46.525125],\n          [-111.94401, 46.524718],\n          [-111.944344, 46.524346],\n          [-111.944662, 46.523974],\n          [-111.944902, 46.523625],\n          [-111.945151, 46.52323],\n          [-111.9454, 46.522775],\n          [-111.945606, 46.522326],\n          [-111.945744, 46.521966],\n          [-111.945855, 46.521511],\n          [-111.947984, 46.511742],\n          [-111.948095, 46.51137],\n          [-111.948361, 46.510661],\n          [-111.949408, 46.508074],\n          [-111.952344, 46.500837],\n          [-111.952541, 46.500393],\n          [-111.952825, 46.499944],\n          [-111.953168, 46.49946],\n          [-111.953494, 46.499105],\n          [-111.953932, 46.498775],\n          [-111.954764, 46.49819],\n          [-111.958575, 46.495909],\n          [-111.959245, 46.495501],\n          [-111.960052, 46.495017],\n          [-111.961021, 46.494414],\n          [-111.961871, 46.493912],\n          [-111.962729, 46.493415],\n          [-111.963579, 46.492825],\n          [-111.964025, 46.4925],\n          [-111.964661, 46.492015],\n          [-111.965124, 46.491625],\n          [-111.965656, 46.491123],\n          [-111.966369, 46.49042],\n          [-111.96709, 46.489651],\n          [-111.976325, 46.479522],\n          [-111.976891, 46.478848],\n          [-111.977312, 46.47834],\n          [-111.977733, 46.477808],\n          [-111.977973, 46.477465],\n          [-111.978127, 46.477211],\n          [-111.978282, 46.476974],\n          [-111.97884, 46.475928],\n          [-111.979217, 46.475042],\n          [-111.980033, 46.473044],\n          [-111.980271, 46.472374],\n          [-111.980435, 46.471976],\n          [-111.980677, 46.471349],\n          [-111.980952, 46.470648],\n          [-111.981239, 46.4699],\n          [-111.981493, 46.46921],\n          [-111.981736, 46.468592],\n          [-111.981874, 46.468256],\n          [-111.982316, 46.467018],\n          [-111.982732, 46.465939],\n          [-111.982851, 46.465572],\n          [-111.983251, 46.464294],\n          [-111.983315, 46.464025],\n          [-111.983475, 46.463313],\n          [-111.983818, 46.462054],\n          [-111.98424, 46.460487],\n          [-111.985346, 46.456259],\n          [-111.985844, 46.45432],\n          [-111.986814, 46.450701],\n          [-111.986994, 46.449938],\n          [-111.987251, 46.449004],\n          [-111.987543, 46.4483],\n          [-111.987809, 46.447709],\n          [-111.988255, 46.446833],\n          [-111.990024, 46.443882],\n          [-111.990719, 46.44254],\n          [-111.99283, 46.438169],\n          [-111.995886, 46.431816],\n          [-111.996143, 46.431165],\n          [-111.996341, 46.430644],\n          [-111.996598, 46.42984],\n          [-111.996753, 46.429213],\n          [-111.99689, 46.428609],\n          [-111.997405, 46.425385],\n          [-111.997642, 46.424314],\n          [-111.997932, 46.423545],\n          [-111.998107, 46.423114],\n          [-111.99835, 46.422586],\n          [-111.998575, 46.422164],\n          [-111.998884, 46.421653],\n          [-111.999228, 46.421145],\n          [-111.999447, 46.420848],\n          [-111.999923, 46.420267],\n          [-112.000156, 46.42],\n          [-112.000433, 46.41971],\n          [-112.00089, 46.419258],\n          [-112.001482, 46.418746],\n          [-112.002113, 46.418226],\n          [-112.00272, 46.417745],\n          [-112.002961, 46.417554],\n          [-112.003548, 46.417078],\n          [-112.004211, 46.41654],\n          [-112.004746, 46.416099],\n          [-112.005461, 46.41553],\n          [-112.005985, 46.415112],\n          [-112.006394, 46.414775],\n          [-112.006854, 46.414405],\n          [-112.007245, 46.4141],\n          [-112.00765, 46.413758],\n          [-112.00797, 46.413501],\n          [-112.008169, 46.413338],\n          [-112.008593, 46.412997],\n          [-112.009014, 46.412645],\n          [-112.009385, 46.412341],\n          [-112.009697, 46.412025],\n          [-112.010255, 46.411528],\n          [-112.010946, 46.410853],\n          [-112.011431, 46.410352],\n          [-112.011895, 46.409867],\n          [-112.012165, 46.409569],\n          [-112.012675, 46.408992],\n          [-112.013067, 46.408517],\n          [-112.013404, 46.408107],\n          [-112.013911, 46.407447],\n          [-112.014218, 46.407046],\n          [-112.014492, 46.406653],\n          [-112.015033, 46.405845],\n          [-112.01524, 46.405542],\n          [-112.015368, 46.405329],\n          [-112.015741, 46.40471],\n          [-112.015972, 46.404308],\n          [-112.016318, 46.403688],\n          [-112.016624, 46.403056],\n          [-112.01703, 46.402204],\n          [-112.017522, 46.401159],\n          [-112.017917, 46.400311],\n          [-112.019197, 46.397512],\n          [-112.019961, 46.395938],\n          [-112.020503, 46.394858],\n          [-112.020846, 46.394173],\n          [-112.021172, 46.393579],\n          [-112.021321, 46.393351],\n          [-112.021496, 46.393063],\n          [-112.021714, 46.392713],\n          [-112.021925, 46.392391],\n          [-112.022307, 46.391799],\n          [-112.022576, 46.391431],\n          [-112.02269, 46.391255],\n          [-112.022776, 46.391138],\n          [-112.023072, 46.390745],\n          [-112.023396, 46.390333],\n          [-112.023636, 46.390016],\n          [-112.02407, 46.389472],\n          [-112.02447, 46.388962],\n          [-112.025293, 46.387893],\n          [-112.025518, 46.387587],\n          [-112.025835, 46.387153],\n          [-112.02604, 46.386874],\n          [-112.026296, 46.386489],\n          [-112.026502, 46.386192],\n          [-112.026698, 46.385898],\n          [-112.027204, 46.385069],\n          [-112.027659, 46.384252],\n          [-112.027743, 46.384088],\n          [-112.0278, 46.383963],\n          [-112.02782, 46.383925],\n          [-112.027998, 46.383561],\n          [-112.028106, 46.383379],\n          [-112.028359, 46.382926],\n          [-112.028737, 46.382022],\n          [-112.029617, 46.379591],\n          [-112.030115, 46.378271],\n          [-112.030424, 46.377365],\n          [-112.030767, 46.376572],\n          [-112.031059, 46.375944],\n          [-112.033059, 46.372077],\n          [-112.033626, 46.37091],\n          [-112.033917, 46.370342],\n          [-112.034252, 46.369714],\n          [-112.034492, 46.369293],\n          [-112.03481, 46.368766],\n          [-112.035136, 46.368298],\n          [-112.035445, 46.367848],\n          [-112.03584, 46.367386],\n          [-112.036295, 46.366877],\n          [-112.036879, 46.366249],\n          [-112.043015, 46.359532],\n          [-112.043436, 46.359053],\n          [-112.043754, 46.358638],\n          [-112.044011, 46.358283],\n          [-112.044234, 46.357927],\n          [-112.044475, 46.357501],\n          [-112.044698, 46.357062],\n          [-112.044852, 46.356719],\n          [-112.044972, 46.356357],\n          [-112.045093, 46.355972],\n          [-112.045204, 46.355534],\n          [-112.045281, 46.355173],\n          [-112.04535, 46.354693],\n          [-112.045384, 46.354284],\n          [-112.045376, 46.353828],\n          [-112.045359, 46.353206],\n          [-112.045058, 46.350658],\n          [-112.045032, 46.350072],\n          [-112.045075, 46.349545],\n          [-112.045178, 46.349154],\n          [-112.045317, 46.348787],\n          [-112.045481, 46.348449],\n          [-112.045687, 46.348135],\n          [-112.04591, 46.347851],\n          [-112.046202, 46.347519],\n          [-112.048562, 46.345392],\n          [-112.048862, 46.34509],\n          [-112.049146, 46.34477],\n          [-112.04936, 46.344467],\n          [-112.04954, 46.344153],\n          [-112.049738, 46.343721],\n          [-112.049849, 46.343241],\n          [-112.049884, 46.343028],\n          [-112.049892, 46.342755],\n          [-112.049884, 46.3424],\n          [-112.049806, 46.341931],\n          [-112.049396, 46.34035],\n          [-112.049218, 46.339673],\n          [-112.049159, 46.33933],\n          [-112.049143, 46.339002],\n          [-112.049168, 46.338597],\n          [-112.049229, 46.338284],\n          [-112.049292, 46.338051],\n          [-112.049341, 46.337839],\n          [-112.049439, 46.337616],\n          [-112.049559, 46.337404],\n          [-112.0497, 46.337162],\n          [-112.049936, 46.33687],\n          [-112.05015, 46.336595],\n          [-112.054836, 46.331763],\n          [-112.055497, 46.33117],\n          [-112.055875, 46.33085],\n          [-112.056372, 46.33053],\n          [-112.05687, 46.330263],\n          [-112.057445, 46.330044],\n          [-112.058132, 46.329789],\n          [-112.060261, 46.329273],\n          [-112.060879, 46.329137],\n          [-112.061445, 46.328959],\n          [-112.061994, 46.328752],\n          [-112.062561, 46.32845],\n          [-112.06317, 46.3281],\n          [-112.063625, 46.327786],\n          [-112.064054, 46.327371],\n          [-112.064466, 46.326891],\n          [-112.06523, 46.325741],\n          [-112.065677, 46.325125],\n          [-112.066028, 46.324674],\n          [-112.06638, 46.324318],\n          [-112.066904, 46.323868],\n          [-112.067505, 46.323501],\n          [-112.06826, 46.323109],\n          [-112.069642, 46.322445],\n          [-112.070509, 46.322007],\n          [-112.071195, 46.321663],\n          [-112.071728, 46.321378],\n          [-112.07238, 46.320958],\n          [-112.073067, 46.320519],\n          [-112.073762, 46.320045],\n          [-112.074277, 46.319582],\n          [-112.074732, 46.319138],\n          [-112.075169, 46.318705],\n          [-112.075599, 46.318189],\n          [-112.076053, 46.317626],\n          [-112.076371, 46.317182],\n          [-112.076732, 46.316589],\n          [-112.077058, 46.315949],\n          [-112.077616, 46.31452],\n          [-112.077985, 46.313459],\n          [-112.078268, 46.312795],\n          [-112.078491, 46.31232],\n          [-112.0788, 46.311751],\n          [-112.079212, 46.31117],\n          [-112.079718, 46.310435],\n          [-112.0808, 46.308627],\n          [-112.081126, 46.30801],\n          [-112.081375, 46.307316],\n          [-112.081512, 46.306724],\n          [-112.081607, 46.306131],\n          [-112.081735, 46.304998],\n          [-112.081856, 46.304358],\n          [-112.082079, 46.303688],\n          [-112.082319, 46.303172],\n          [-112.082594, 46.302692],\n          [-112.082946, 46.302205],\n          [-112.083306, 46.301814],\n          [-112.083804, 46.301334],\n          [-112.08447, 46.300831],\n          [-112.085263, 46.300355],\n          [-112.086027, 46.299964],\n          [-112.089752, 46.298446],\n          [-112.090979, 46.297859],\n          [-112.091958, 46.297337],\n          [-112.092799, 46.296756],\n          [-112.093486, 46.296287],\n          [-112.094104, 46.295694],\n          [-112.09473, 46.295036],\n          [-112.095159, 46.294538],\n          [-112.09558, 46.293992],\n          [-112.09594, 46.293381],\n          [-112.096445, 46.292397],\n          [-112.096685, 46.291614],\n          [-112.09702, 46.290422],\n          [-112.097449, 46.288406],\n          [-112.097724, 46.287409],\n          [-112.098136, 46.286312],\n          [-112.099116, 46.284397],\n          [-112.099274, 46.284063],\n          [-112.10053, 46.281349],\n          [-112.101118, 46.280084],\n          [-112.102891, 46.276318],\n          [-112.104027, 46.273935],\n          [-112.104859, 46.272141],\n          [-112.105342, 46.271125],\n          [-112.106274, 46.269146],\n          [-112.107087, 46.267404],\n          [-112.111234, 46.258546],\n          [-112.112659, 46.255466],\n          [-112.114521, 46.251525],\n          [-112.114976, 46.250676],\n          [-112.115508, 46.249899],\n          [-112.115937, 46.249329],\n          [-112.116633, 46.248581],\n          [-112.117748, 46.247554],\n          [-112.11925, 46.246504],\n          [-112.12022, 46.245934],\n          [-112.120967, 46.245566],\n          [-112.121954, 46.245133],\n          [-112.124992, 46.244052],\n          [-112.13288, 46.241298],\n          [-112.133387, 46.24112],\n          [-112.138622, 46.239291],\n          [-112.145034, 46.237065],\n          [-112.146141, 46.236745],\n          [-112.147008, 46.236519],\n          [-112.147806, 46.236394],\n          [-112.148459, 46.236305],\n          [-112.149265, 46.236246],\n          [-112.150089, 46.236222],\n          [-112.151042, 46.236246],\n          [-112.151883, 46.236317],\n          [-112.152699, 46.236436],\n          [-112.153471, 46.236584],\n          [-112.154474, 46.236837],\n          [-112.15899, 46.238152],\n          [-112.160595, 46.238543],\n          [-112.162483, 46.238947],\n          [-112.163367, 46.23922],\n          [-112.164054, 46.239529],\n          [-112.164698, 46.239897],\n          [-112.165273, 46.24033],\n          [-112.166844, 46.241642],\n          [-112.167307, 46.241963],\n          [-112.1685, 46.242669],\n          [-112.169144, 46.243085],\n          [-112.169659, 46.24356],\n          [-112.170912, 46.244966],\n          [-112.171367, 46.245364],\n          [-112.172131, 46.245898],\n          [-112.173204, 46.246522],\n          [-112.174276, 46.247169],\n          [-112.174817, 46.24762],\n          [-112.175298, 46.24816],\n          [-112.175555, 46.248587],\n          [-112.17577, 46.248973],\n          [-112.175924, 46.249424],\n          [-112.176336, 46.250552],\n          [-112.176517, 46.25092],\n          [-112.17674, 46.251276],\n          [-112.176997, 46.251626],\n          [-112.177418, 46.252083],\n          [-112.177787, 46.252344],\n          [-112.178165, 46.252617],\n          [-112.180775, 46.254129],\n          [-112.181007, 46.254269],\n          [-112.183097, 46.255454],\n          [-112.183493, 46.255702],\n          [-112.184164, 46.256171],\n          [-112.184905, 46.256737],\n          [-112.185365, 46.257141],\n          [-112.185885, 46.257562],\n          [-112.186185, 46.2578],\n          [-112.186531, 46.258043],\n          [-112.186972, 46.258275],\n          [-112.187322, 46.258422],\n          [-112.187774, 46.258598],\n          [-112.188155, 46.258726],\n          [-112.188842, 46.25893],\n          [-112.190061, 46.259233],\n          [-112.194417, 46.260296],\n          [-112.194914, 46.260425],\n          [-112.197467, 46.261049],\n          [-112.198131, 46.261215],\n          [-112.198816, 46.261348],\n          [-112.200563, 46.261639],\n          [-112.2012, 46.261735],\n          [-112.201697, 46.261796],\n          [-112.202216, 46.261831],\n          [-112.202661, 46.261847],\n          [-112.203293, 46.261844],\n          [-112.203843, 46.26181],\n          [-112.204643, 46.261713],\n          [-112.205502, 46.261541],\n          [-112.206283, 46.261328],\n          [-112.207158, 46.260978],\n          [-112.20773, 46.260725],\n          [-112.208199, 46.260464],\n          [-112.209872, 46.259361],\n          [-112.210845, 46.258723],\n          [-112.211437, 46.258407],\n          [-112.21171, 46.258294],\n          [-112.211974, 46.258207],\n          [-112.212216, 46.258142],\n          [-112.212463, 46.258092],\n          [-112.212751, 46.258048],\n          [-112.213051, 46.258024],\n          [-112.213334, 46.258019],\n          [-112.213692, 46.258035],\n          [-112.213988, 46.258065],\n          [-112.214247, 46.258108],\n          [-112.214549, 46.258186],\n          [-112.21472, 46.258241],\n          [-112.214928, 46.258313],\n          [-112.21526, 46.258456],\n          [-112.215539, 46.258605],\n          [-112.215859, 46.258826],\n          [-112.216123, 46.259059],\n          [-112.216344, 46.259307],\n          [-112.216538, 46.259564],\n          [-112.217304, 46.260578],\n          [-112.217586, 46.260888],\n          [-112.217887, 46.26118],\n          [-112.218436, 46.261654],\n          [-112.219097, 46.262058],\n          [-112.219818, 46.262508],\n          [-112.220179, 46.262823],\n          [-112.220462, 46.263203],\n          [-112.220625, 46.263654],\n          [-112.220625, 46.264105],\n          [-112.220513, 46.26455],\n          [-112.220273, 46.264918],\n          [-112.21993, 46.265238],\n          [-112.219466, 46.265558],\n          [-112.218514, 46.266039],\n          [-112.218288, 46.266167],\n          [-112.218079, 46.266291],\n          [-112.217885, 46.266411],\n          [-112.217737, 46.266539],\n          [-112.217605, 46.266696],\n          [-112.217501, 46.266818],\n          [-112.217396, 46.266989],\n          [-112.21734, 46.267123],\n          [-112.217303, 46.267314],\n          [-112.217283, 46.267445],\n          [-112.217325, 46.267714],\n          [-112.217476, 46.26824],\n          [-112.217544, 46.268438],\n          [-112.217592, 46.268538],\n          [-112.217628, 46.268615],\n          [-112.217724, 46.268751],\n          [-112.217818, 46.268858],\n          [-112.217936, 46.268959],\n          [-112.21813, 46.269104],\n          [-112.218353, 46.26922],\n          [-112.218727, 46.26937],\n          [-112.219166, 46.269489],\n          [-112.219721, 46.269609],\n          [-112.220202, 46.269698],\n          [-112.220646, 46.269797],\n          [-112.220996, 46.2699],\n          [-112.22144, 46.27005],\n          [-112.222711, 46.270631],\n          [-112.223277, 46.270851],\n          [-112.22399, 46.271017],\n          [-112.224668, 46.271076],\n          [-112.225371, 46.270993],\n          [-112.227174, 46.270608],\n          [-112.227989, 46.270507],\n          [-112.22883, 46.270519],\n          [-112.229611, 46.270726],\n          [-112.232341, 46.271693],\n          [-112.232993, 46.27186],\n          [-112.233723, 46.271966],\n          [-112.234744, 46.271978],\n          [-112.239606, 46.271805],\n          [-112.242182, 46.271693],\n          [-112.246347, 46.271502],\n          [-112.246967, 46.271459],\n          [-112.247491, 46.271415],\n          [-112.247911, 46.271379],\n          [-112.248545, 46.271312],\n          [-112.249143, 46.271217],\n          [-112.250763, 46.270938],\n          [-112.251919, 46.270715],\n          [-112.254271, 46.270264],\n          [-112.255138, 46.270086],\n          [-112.255979, 46.269973],\n          [-112.256923, 46.269854],\n          [-112.257798, 46.269753],\n          [-112.258871, 46.269706],\n          [-112.259953, 46.269694],\n          [-112.260408, 46.269688],\n          [-112.260811, 46.269688],\n          [-112.265927, 46.269838],\n          [-112.266364, 46.269845],\n          [-112.268516, 46.269903],\n          [-112.26928, 46.269923],\n          [-112.269822, 46.269932],\n          [-112.270297, 46.269936],\n          [-112.270632, 46.269932],\n          [-112.271986, 46.269899],\n          [-112.272496, 46.269882],\n          [-112.272871, 46.269875],\n          [-112.273201, 46.26988],\n          [-112.273496, 46.269893],\n          [-112.273848, 46.269921],\n          [-112.274451, 46.269986],\n          [-112.275304, 46.270084],\n          [-112.275736, 46.270129],\n          [-112.276214, 46.270171],\n          [-112.276581, 46.270192],\n          [-112.276954, 46.270201],\n          [-112.277383, 46.270195],\n          [-112.277783, 46.270179],\n          [-112.278217, 46.270151],\n          [-112.278636, 46.270112],\n          [-112.27903, 46.270058],\n          [-112.279521, 46.269977],\n          [-112.280084, 46.269869],\n          [-112.280575, 46.269771],\n          [-112.281036, 46.269673],\n          [-112.281492, 46.269558],\n          [-112.281919, 46.269443],\n          [-112.282407, 46.269304],\n          [-112.28289, 46.269153],\n          [-112.283292, 46.269013],\n          [-112.283616, 46.26889],\n          [-112.283914, 46.268764],\n          [-112.284169, 46.268638],\n          [-112.284394, 46.268516],\n          [-112.284601, 46.268394],\n          [-112.284775, 46.268275],\n          [-112.284955, 46.268131],\n          [-112.285087, 46.268013],\n          [-112.285191, 46.267897],\n          [-112.285277, 46.267793],\n          [-112.285357, 46.267683],\n          [-112.28543, 46.267542],\n          [-112.285505, 46.267379],\n          [-112.285561, 46.267208],\n          [-112.285596, 46.267049],\n          [-112.28561, 46.266897],\n          [-112.285612, 46.266763],\n          [-112.285599, 46.266613],\n          [-112.285569, 46.266448],\n          [-112.285505, 46.266261],\n          [-112.28543, 46.266096],\n          [-112.285194, 46.265664],\n          [-112.285025, 46.265406],\n          [-112.284866, 46.265152],\n          [-112.284775, 46.264974],\n          [-112.284703, 46.264813],\n          [-112.284646, 46.264655],\n          [-112.284614, 46.264507],\n          [-112.284598, 46.264379],\n          [-112.284598, 46.26421],\n          [-112.284617, 46.264062],\n          [-112.284665, 46.263899],\n          [-112.284727, 46.263728],\n          [-112.284759, 46.263669],\n          [-112.284821, 46.263548],\n          [-112.284909, 46.263418],\n          [-112.284995, 46.263313],\n          [-112.285121, 46.263177],\n          [-112.285277, 46.263038],\n          [-112.285408, 46.262932],\n          [-112.285591, 46.262814],\n          [-112.285765, 46.262716],\n          [-112.285998, 46.262614],\n          [-112.286237, 46.262523],\n          [-112.286454, 46.262454],\n          [-112.286722, 46.262397],\n          [-112.286953, 46.262358],\n          [-112.287205, 46.262334],\n          [-112.287431, 46.262324],\n          [-112.287599, 46.262324],\n          [-112.287755, 46.262332],\n          [-112.287908, 46.262343],\n          [-112.28809, 46.262371],\n          [-112.288289, 46.262408],\n          [-112.288533, 46.262469],\n          [-112.28878, 46.262545],\n          [-112.289056, 46.262641],\n          [-112.28941, 46.262779],\n          [-112.292288, 46.263915],\n          [-112.295423, 46.265141],\n          [-112.295772, 46.265276],\n          [-112.296799, 46.265681],\n          [-112.297288, 46.265857],\n          [-112.29766, 46.26597],\n          [-112.297998, 46.266064],\n          [-112.298326, 46.266135],\n          [-112.298693, 46.266202],\n          [-112.29902, 46.266252],\n          [-112.299407, 46.266294],\n          [-112.299973, 46.26635],\n          [-112.301962, 46.266518],\n          [-112.303677, 46.266665],\n          [-112.30416, 46.266715],\n          [-112.304799, 46.266799],\n          [-112.305829, 46.266965],\n          [-112.307302, 46.26725],\n          [-112.307798, 46.267339],\n          [-112.308222, 46.267413],\n          [-112.308627, 46.267476],\n          [-112.308997, 46.267518],\n          [-112.309343, 46.267554],\n          [-112.309617, 46.267578],\n          [-112.309941, 46.267591],\n          [-112.310258, 46.267602],\n          [-112.310641, 46.267611],\n          [-112.310985, 46.267613],\n          [-112.311296, 46.267607],\n          [-112.311658, 46.267591],\n          [-112.312055, 46.267565],\n          [-112.312425, 46.267535],\n          [-112.312795, 46.267492],\n          [-112.313219, 46.267435],\n          [-112.313683, 46.267359],\n          [-112.31408, 46.267281],\n          [-112.314484, 46.267191],\n          [-112.314867, 46.26709],\n          [-112.315256, 46.26698],\n          [-112.315717, 46.266837],\n          [-112.316613, 46.266561],\n          [-112.317018, 46.266437],\n          [-112.317471, 46.266313],\n          [-112.317997, 46.266179],\n          [-112.318925, 46.265949],\n          [-112.320151, 46.265632],\n          [-112.321393, 46.265313],\n          [-112.325427, 46.26428],\n          [-112.326138, 46.264095],\n          [-112.326859, 46.263917],\n          [-112.327936, 46.263635],\n          [-112.330428, 46.263002],\n          [-112.333211, 46.262287],\n          [-112.334007, 46.262079],\n          [-112.335292, 46.261753],\n          [-112.335686, 46.261652],\n          [-112.336028, 46.261559],\n          [-112.33637, 46.261454],\n          [-112.33667, 46.261355],\n          [-112.336988, 46.261243],\n          [-112.337325, 46.261115],\n          [-112.33768, 46.260971],\n          [-112.338038, 46.260813],\n          [-112.338363, 46.260662],\n          [-112.338625, 46.26053],\n          [-112.338933, 46.260366],\n          [-112.340256, 46.259429],\n          [-112.341003, 46.258829],\n          [-112.341337, 46.25845],\n          [-112.341646, 46.258088],\n          [-112.342041, 46.257506],\n          [-112.342264, 46.257085],\n          [-112.342513, 46.256616],\n          [-112.342736, 46.256052],\n          [-112.343048, 46.25519],\n          [-112.343088, 46.254628],\n          [-112.343114, 46.25404],\n          [-112.342997, 46.253333],\n          [-112.342814, 46.252527],\n          [-112.342556, 46.25188],\n          [-112.341586, 46.249939],\n          [-112.341209, 46.248971],\n          [-112.340942, 46.248152],\n          [-112.340797, 46.247393],\n          [-112.340711, 46.246752],\n          [-112.340698, 46.245956],\n          [-112.340797, 46.24509],\n          [-112.340934, 46.2443],\n          [-112.341088, 46.243617],\n          [-112.341363, 46.242745],\n          [-112.343732, 46.236132],\n          [-112.343955, 46.235443],\n          [-112.344213, 46.23479],\n          [-112.34459, 46.234178],\n          [-112.345088, 46.233513],\n          [-112.346384, 46.231827],\n          [-112.346848, 46.231067],\n          [-112.347062, 46.230402],\n          [-112.347208, 46.229666],\n          [-112.34738, 46.228247],\n          [-112.347457, 46.227659],\n          [-112.347706, 46.22662],\n          [-112.348072, 46.225486],\n          [-112.348787, 46.223592],\n          [-112.349165, 46.22241],\n          [-112.349268, 46.221798],\n          [-112.349251, 46.221163],\n          [-112.348908, 46.218621],\n          [-112.348822, 46.218081],\n          [-112.348822, 46.217392],\n          [-112.348959, 46.216762],\n          [-112.34944, 46.215301],\n          [-112.349521, 46.214586],\n          [-112.349491, 46.214013],\n          [-112.349328, 46.213591],\n          [-112.349028, 46.213021],\n          [-112.348633, 46.212492],\n          [-112.348169, 46.211999],\n          [-112.34762, 46.211619],\n          [-112.346856, 46.211156],\n          [-112.345869, 46.21058],\n          [-112.3452, 46.210051],\n          [-112.344728, 46.209576],\n          [-112.343234, 46.207925],\n          [-112.342659, 46.207307],\n          [-112.341921, 46.206677],\n          [-112.340814, 46.205816],\n          [-112.34041, 46.205465],\n          [-112.340067, 46.205085],\n          [-112.339802, 46.204693],\n          [-112.339704, 46.204467],\n          [-112.339636, 46.204269],\n          [-112.339591, 46.204027],\n          [-112.339612, 46.20382],\n          [-112.339732, 46.203256],\n          [-112.340033, 46.20262],\n          [-112.340582, 46.201913],\n          [-112.341621, 46.200885],\n          [-112.342062, 46.200298],\n          [-112.342242, 46.199944],\n          [-112.342396, 46.199584],\n          [-112.342597, 46.199091],\n          [-112.342775, 46.198631],\n          [-112.343062, 46.198034],\n          [-112.343303, 46.197541],\n          [-112.343792, 46.196904],\n          [-112.344693, 46.196127],\n          [-112.345387, 46.19542],\n          [-112.345729, 46.194938],\n          [-112.345917, 46.194643],\n          [-112.346069, 46.194349],\n          [-112.346166, 46.194045],\n          [-112.346238, 46.193697],\n          [-112.34623, 46.193103],\n          [-112.345941, 46.190673],\n          [-112.345878, 46.189902],\n          [-112.345728, 46.189213],\n          [-112.345709, 46.188344],\n          [-112.345571, 46.187533],\n          [-112.345558, 46.186912],\n          [-112.345564, 46.185992],\n          [-112.345749, 46.183453],\n          [-112.346234, 46.177623],\n          [-112.346347, 46.176821],\n          [-112.346473, 46.176275],\n          [-112.34671, 46.175728],\n          [-112.347062, 46.17511],\n          [-112.347483, 46.174486],\n          [-112.34822, 46.173702],\n          [-112.349208, 46.17291],\n          [-112.3521, 46.171121],\n          [-112.352701, 46.170843],\n          [-112.353354, 46.170627],\n          [-112.354238, 46.170443],\n          [-112.355396, 46.170378],\n          [-112.356246, 46.170461],\n          [-112.358186, 46.170764],\n          [-112.359293, 46.170788],\n          [-112.360246, 46.170669],\n          [-112.361216, 46.170425],\n          [-112.362177, 46.170093],\n          [-112.362941, 46.16973],\n          [-112.363559, 46.169296],\n          [-112.364125, 46.168743],\n          [-112.364529, 46.168119],\n          [-112.365267, 46.167103],\n          [-112.365816, 46.166663],\n          [-112.3664, 46.166336],\n          [-112.367129, 46.166098],\n          [-112.367868, 46.165967],\n          [-112.368692, 46.165944],\n          [-112.371773, 46.166039],\n          [-112.372811, 46.166015],\n          [-112.37367, 46.165902],\n          [-112.374588, 46.165706],\n          [-112.375592, 46.165379],\n          [-112.376571, 46.164951],\n          [-112.377318, 46.164529],\n          [-112.378076, 46.163952],\n          [-112.378262, 46.163762],\n          [-112.378614, 46.163364],\n          [-112.378914, 46.162965],\n          [-112.379469, 46.162169],\n          [-112.382055, 46.158245],\n          [-112.384021, 46.155308],\n          [-112.385566, 46.152959],\n          [-112.387334, 46.150272],\n          [-112.388458, 46.14862],\n          [-112.389451, 46.147108],\n          [-112.391789, 46.143594],\n          [-112.398669, 46.133222],\n          [-112.400972, 46.129712],\n          [-112.4066, 46.121302],\n          [-112.407393, 46.120004],\n          [-112.408182, 46.118582],\n          [-112.408541, 46.117899],\n          [-112.409937, 46.114817],\n          [-112.411055, 46.112333],\n          [-112.412388, 46.109365],\n          [-112.413655, 46.106653],\n          [-112.414778, 46.10418],\n          [-112.415206, 46.103314],\n          [-112.415668, 46.102487],\n          [-112.415895, 46.102106],\n          [-112.416464, 46.101176],\n          [-112.417083, 46.100254],\n          [-112.418499, 46.098356],\n          [-112.418915, 46.09769],\n          [-112.419526, 46.096677],\n          [-112.420233, 46.095398],\n          [-112.422479, 46.091058],\n          [-112.424336, 46.087469],\n          [-112.429652, 46.0772],\n          [-112.429822, 46.076884],\n          [-112.431392, 46.07384],\n          [-112.436257, 46.064391],\n          [-112.436937, 46.063074],\n          [-112.438079, 46.061044],\n          [-112.438376, 46.060532],\n          [-112.438666, 46.060066],\n          [-112.43881, 46.05984],\n          [-112.439098, 46.05943],\n          [-112.43934, 46.059064],\n          [-112.439532, 46.058774],\n          [-112.440107, 46.058002],\n          [-112.44038, 46.05765],\n          [-112.441731, 46.056019],\n          [-112.443485, 46.053949],\n          [-112.447802, 46.048851],\n          [-112.45155, 46.044489],\n          [-112.452423, 46.043435],\n          [-112.452928, 46.042858],\n          [-112.453336, 46.042363],\n          [-112.453672, 46.041989],\n          [-112.454055, 46.041551],\n          [-112.454342, 46.04125],\n          [-112.454665, 46.040886],\n          [-112.456067, 46.039558],\n          [-112.457335, 46.038587],\n          [-112.457987, 46.038059],\n          [-112.458512, 46.037625],\n          [-112.458842, 46.037329],\n          [-112.459071, 46.03709],\n          [-112.459314, 46.036842],\n          [-112.459518, 46.03659],\n          [-112.459678, 46.03639],\n          [-112.4598, 46.036215],\n          [-112.459891, 46.036045],\n          [-112.460007, 46.03582],\n          [-112.460114, 46.03551],\n          [-112.460172, 46.035281],\n          [-112.460249, 46.034999],\n          [-112.460282, 46.034713],\n          [-112.460289, 46.034622],\n          [-112.460306, 46.034393],\n          [-112.46034, 46.034001],\n          [-112.460377, 46.033494],\n          [-112.460788, 46.024225],\n          [-112.460858, 46.022999],\n          [-112.461034, 46.021707],\n          [-112.461139, 46.019417],\n          [-112.461174, 46.018182],\n          [-112.461374, 46.013939],\n          [-112.461433, 46.012326],\n          [-112.461598, 46.009767],\n          [-112.46173, 46.007706],\n          [-112.461826, 46.006592],\n          [-112.461968, 46.00602],\n          [-112.462225, 46.00538],\n          [-112.462565, 46.004722],\n          [-112.463191, 46.004036],\n          [-112.464072, 46.003225],\n          [-112.465792, 46.001872],\n          [-112.466856, 46.001037],\n          [-112.469268, 45.999189],\n          [-112.469946, 45.998682],\n          [-112.470667, 45.998003],\n          [-112.47113, 45.997502],\n          [-112.47156, 45.996917],\n          [-112.471963, 45.99622],\n          [-112.473459, 45.993424],\n          [-112.474051, 45.992464],\n          [-112.474317, 45.992004],\n          [-112.475276, 45.990233],\n          [-112.475566, 45.989642],\n          [-112.476695, 45.987673],\n          [-112.477014, 45.987068],\n          [-112.477395, 45.986399],\n          [-112.477976, 45.985327],\n          [-112.478243, 45.984818],\n          [-112.478421, 45.98455],\n          [-112.478851, 45.983744],\n          [-112.479177, 45.983218],\n          [-112.479374, 45.982981],\n          [-112.479538, 45.982795],\n          [-112.47971, 45.982636],\n          [-112.479894, 45.982492],\n          [-112.480132, 45.982326],\n          [-112.48042, 45.982142],\n          [-112.480713, 45.981993],\n          [-112.481018, 45.981862],\n          [-112.481235, 45.981784],\n          [-112.481491, 45.981708],\n          [-112.481819, 45.981612],\n          [-112.482235, 45.981526],\n          [-112.482576, 45.981485],\n          [-112.482792, 45.981468],\n          [-112.483106, 45.981448],\n          [-112.484674, 45.981411],\n          [-112.485533, 45.981393],\n          [-112.486142, 45.981346],\n          [-112.486888, 45.981343],\n          [-112.488415, 45.981329],\n          [-112.48942, 45.981323],\n          [-112.489915, 45.981311],\n          [-112.490321, 45.981291],\n          [-112.491262, 45.981187],\n          [-112.492077, 45.981092],\n          [-112.492755, 45.980966],\n          [-112.49327, 45.980829],\n          [-112.494197, 45.980567],\n          [-112.495345, 45.9802],\n          [-112.496229, 45.979974],\n          [-112.496927, 45.979831],\n          [-112.497708, 45.979756],\n          [-112.4986, 45.979744],\n          [-112.499484, 45.979774],\n          [-112.500257, 45.979863],\n          [-112.501047, 45.980042],\n          [-112.501432, 45.980146],\n          [-112.501772, 45.980251],\n          [-112.502162, 45.980391],\n          [-112.502441, 45.980505],\n          [-112.502715, 45.980622],\n          [-112.503036, 45.980793],\n          [-112.503323, 45.980946],\n          [-112.503646, 45.981153],\n          [-112.503934, 45.981351],\n          [-112.504203, 45.981566],\n          [-112.504427, 45.981757],\n          [-112.504926, 45.982217],\n          [-112.505529, 45.982793],\n          [-112.505933, 45.983132],\n          [-112.506153, 45.983296],\n          [-112.506336, 45.983431],\n          [-112.506571, 45.983586],\n          [-112.506888, 45.983789],\n          [-112.507196, 45.983956],\n          [-112.507471, 45.984097],\n          [-112.507799, 45.984272],\n          [-112.508512, 45.98456],\n          [-112.508794, 45.984651],\n          [-112.50906, 45.984738],\n          [-112.509415, 45.984842],\n          [-112.509964, 45.984998],\n          [-112.512836, 45.985714],\n          [-112.514063, 45.986044],\n          [-112.515749, 45.986501],\n          [-112.516874, 45.986847],\n          [-112.529602, 45.991803],\n          [-112.530598, 45.992131],\n          [-112.531516, 45.992333],\n          [-112.5324, 45.992476],\n          [-112.533044, 45.992536],\n          [-112.533894, 45.992542],\n          [-112.538675, 45.992548],\n          [-112.539481, 45.992542],\n          [-112.544571, 45.992548],\n          [-112.54755, 45.9925],\n          [-112.549472, 45.992518],\n          [-112.552176, 45.992548],\n          [-112.553189, 45.992614],\n          [-112.554167, 45.992739],\n          [-112.555008, 45.992942],\n          [-112.559798, 45.994337],\n          [-112.560613, 45.994587],\n          [-112.561471, 45.994951],\n          [-112.562235, 45.995404],\n          [-112.562816, 45.995834],\n          [-112.563071, 45.996064],\n          [-112.563323, 45.996326],\n          [-112.563586, 45.996638],\n          [-112.563846, 45.996975],\n          [-112.564136, 45.997384],\n          [-112.564414, 45.997764],\n          [-112.565162, 45.998934],\n          [-112.565743, 45.999683],\n          [-112.566655, 46.000955],\n          [-112.567437, 46.001903],\n          [-112.56802, 46.002517],\n          [-112.568741, 46.003096],\n          [-112.569419, 46.003525],\n          [-112.570063, 46.003859],\n          [-112.570964, 46.004318],\n          [-112.571822, 46.004693],\n          [-112.572895, 46.005009],\n          [-112.573848, 46.00523],\n          [-112.574775, 46.005379],\n          [-112.575728, 46.005463],\n          [-112.577187, 46.005504],\n          [-112.577788, 46.005522],\n          [-112.582056, 46.005676],\n          [-112.594885, 46.006166],\n          [-112.604584, 46.006524],\n          [-112.605451, 46.006619],\n          [-112.607283, 46.006843],\n          [-112.610896, 46.007381],\n          [-112.611152, 46.005948],\n          [-112.61121, 46.005792],\n          [-112.611238, 46.005609],\n          [-112.608284, 46.004266],\n          [-112.607739, 46.003921],\n          [-112.607191, 46.003516],\n          [-112.606953, 46.003377],\n          [-112.606693, 46.003274],\n          [-112.606342, 46.003193],\n          [-112.606239, 46.00317],\n          [-112.604638, 46.002827],\n          [-112.603223, 46.002511],\n          [-112.603052, 46.002473],\n          [-112.60203, 46.002278],\n          [-112.601516, 46.002219],\n          [-112.601276, 46.00221],\n          [-112.600883, 46.002212],\n          [-112.600496, 46.00223],\n          [-112.600404, 46.002208],\n          [-112.60036, 46.002173],\n          [-112.600327, 46.002117],\n          [-112.600314, 46.002059],\n          [-112.600333, 46.001927],\n          [-112.600381, 46.001853],\n          [-112.60049, 46.001777],\n          [-112.600599, 46.001745],\n          [-112.600713, 46.001737],\n          [-112.600862, 46.001739],\n          [-112.601544, 46.001798],\n          [-112.601657, 46.001792],\n          [-112.601804, 46.001767],\n          [-112.601918, 46.001724],\n          [-112.602008, 46.001673],\n          [-112.602239, 46.001528],\n          [-112.602389, 46.001412],\n          [-112.602658, 46.001185],\n          [-112.60307, 46.000822],\n          [-112.603218, 46.000656],\n          [-112.603405, 46.000474],\n          [-112.60366, 46.000513],\n          [-112.603842, 46.000532],\n          [-112.604078, 46.000549],\n          [-112.604254, 46.000547],\n          [-112.605018, 46.00043],\n          [-112.605491, 46.000395],\n          [-112.605766, 46.000402],\n          [-112.606076, 46.000466],\n          [-112.606209, 46.00049],\n          [-112.606364, 46.000494],\n          [-112.606548, 46.000466],\n          [-112.607005, 46.000359],\n          [-112.607412, 46.000312],\n          [-112.611416, 46.000299],\n          [-112.611653, 46.000242],\n          [-112.611812, 46.000145],\n          [-112.611932, 45.999965],\n          [-112.611906, 45.993731],\n          [-112.611956, 45.990322],\n          [-112.611963, 45.987384],\n          [-112.611945, 45.986839],\n          [-112.611983, 45.986517],\n          [-112.612211, 45.985826],\n          [-112.612974, 45.983191],\n          [-112.613351, 45.982047],\n          [-112.613508, 45.981723],\n          [-112.613655, 45.98152],\n          [-112.613973, 45.981284],\n          [-112.61573, 45.980235],\n          [-112.61642, 45.979923],\n          [-112.617405, 45.979519],\n          [-112.618068, 45.979213],\n          [-112.618669, 45.978865],\n          [-112.620246, 45.977619],\n          [-112.620586, 45.977289],\n          [-112.621106, 45.976592],\n          [-112.622154, 45.975079],\n          [-112.622235, 45.974699],\n          [-112.622281, 45.973317],\n          [-112.622078, 45.970234],\n          [-112.619831, 45.970225],\n          [-112.614288, 45.970203]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-112.606601, 45.960219]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-111.972656, 48.843028]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#f0f\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-111.895843, 48.877468],\n          [-111.878176, 48.860393],\n          [-111.867242, 48.849753],\n          [-111.866486, 48.849013],\n          [-111.865877, 48.848301],\n          [-111.86531, 48.847533],\n          [-111.864675, 48.846613],\n          [-111.86392, 48.845195],\n          [-111.863594, 48.84437],\n          [-111.863233, 48.843167],\n          [-111.863139, 48.842738],\n          [-111.863019, 48.842026],\n          [-111.86295, 48.841071],\n          [-111.862942, 48.830326],\n          [-111.862942, 48.823285],\n          [-111.86289, 48.769261],\n          [-111.862864, 48.764515],\n          [-111.862813, 48.763474],\n          [-111.862718, 48.761743],\n          [-111.861611, 48.743809],\n          [-111.861439, 48.740289],\n          [-111.861439, 48.739949],\n          [-111.861594, 48.737176],\n          [-111.862178, 48.726719],\n          [-111.862229, 48.723792],\n          [-111.862083, 48.656639],\n          [-111.8621, 48.64979],\n          [-111.861997, 48.598701],\n          [-111.86198, 48.592185],\n          [-111.86198, 48.57272],\n          [-111.861912, 48.57163],\n          [-111.861817, 48.570494],\n          [-111.861697, 48.569205],\n          [-111.860581, 48.557657],\n          [-111.860077, 48.552231],\n          [-111.859663, 48.54801],\n          [-111.859594, 48.546805],\n          [-111.859611, 48.545322],\n          [-111.859792, 48.535383],\n          [-111.8598, 48.533888],\n          [-111.859886, 48.533121],\n          [-111.860015, 48.532581],\n          [-111.860246, 48.531939],\n          [-111.860598, 48.531387],\n          [-111.860942, 48.530899],\n          [-111.861688, 48.530109],\n          [-111.866109, 48.525755],\n          [-111.875953, 48.516192],\n          [-111.876929, 48.515247],\n          [-111.877241, 48.514954],\n          [-111.879228, 48.513021],\n          [-111.879759, 48.512467],\n          [-111.88006, 48.512124],\n          [-111.880267, 48.511881],\n          [-111.88042, 48.511679],\n          [-111.880571, 48.511473],\n          [-111.88094, 48.510956],\n          [-111.881292, 48.510376],\n          [-111.881653, 48.509733],\n          [-111.881996, 48.50904],\n          [-111.882305, 48.508346],\n          [-111.882562, 48.507572],\n          [-111.882777, 48.506828],\n          [-111.882931, 48.506134],\n          [-111.883026, 48.505588],\n          [-111.883441, 48.502992],\n          [-111.883604, 48.499975],\n          [-111.883614, 48.499767],\n          [-111.883635, 48.496433],\n          [-111.883673, 48.495815],\n          [-111.883734, 48.49503],\n          [-111.883798, 48.494396],\n          [-111.883866, 48.493802],\n          [-111.883999, 48.493],\n          [-111.884209, 48.492103],\n          [-111.884377, 48.49147],\n          [-111.884557, 48.490837],\n          [-111.885112, 48.489088],\n          [-111.885489, 48.48824],\n          [-111.886605, 48.485897],\n          [-111.88682, 48.485299],\n          [-111.887034, 48.484679],\n          [-111.887197, 48.484099],\n          [-111.887389, 48.483433],\n          [-111.88747, 48.482928],\n          [-111.887522, 48.482349],\n          [-111.887575, 48.481425],\n          [-111.887554, 48.480643],\n          [-111.887506, 48.480113],\n          [-111.887418, 48.479516],\n          [-111.887265, 48.478742],\n          [-111.887056, 48.477974],\n          [-111.886845, 48.47746],\n          [-111.886472, 48.476607],\n          [-111.885635, 48.474831],\n          [-111.885441, 48.474274],\n          [-111.885165, 48.473591],\n          [-111.884897, 48.472862],\n          [-111.884674, 48.47215],\n          [-111.884502, 48.471564],\n          [-111.884279, 48.470409],\n          [-111.884082, 48.46926],\n          [-111.883953, 48.468281],\n          [-111.883906, 48.467423],\n          [-111.883878, 48.46663],\n          [-111.883976, 48.454446],\n          [-111.884028, 48.447094],\n          [-111.884036, 48.443164],\n          [-111.884023, 48.441546],\n          [-111.884017, 48.440681],\n          [-111.884026, 48.43968],\n          [-111.884018, 48.438945],\n          [-111.88402, 48.438457],\n          [-111.884058, 48.438059],\n          [-111.884092, 48.43776],\n          [-111.884134, 48.437455],\n          [-111.884195, 48.437091],\n          [-111.884275, 48.436739],\n          [-111.884339, 48.436455],\n          [-111.884422, 48.436153],\n          [-111.884528, 48.435768],\n          [-111.884674, 48.435354],\n          [-111.884745, 48.435206],\n          [-111.884871, 48.43486],\n          [-111.885003, 48.434574],\n          [-111.885207, 48.434157],\n          [-111.885417, 48.433746],\n          [-111.885596, 48.433441],\n          [-111.88582, 48.433061],\n          [-111.886029, 48.43273],\n          [-111.886203, 48.432492],\n          [-111.886412, 48.432197],\n          [-111.886586, 48.431954],\n          [-111.886816, 48.431663],\n          [-111.887079, 48.431357],\n          [-111.887401, 48.430981],\n          [-111.887774, 48.430593],\n          [-111.888127, 48.430257],\n          [-111.888437, 48.429955],\n          [-111.889099, 48.429374],\n          [-111.889756, 48.428824],\n          [-111.890912, 48.427857],\n          [-111.892165, 48.426838],\n          [-111.905659, 48.415636],\n          [-111.90626, 48.415157],\n          [-111.906861, 48.41457],\n          [-111.907333, 48.414081],\n          [-111.907814, 48.413528],\n          [-111.908406, 48.412776],\n          [-111.909015, 48.411824],\n          [-111.909633, 48.410907],\n          [-111.920752, 48.392582],\n          [-111.927417, 48.381543],\n          [-111.93346, 48.371538],\n          [-111.933846, 48.37086],\n          [-111.934235, 48.370068],\n          [-111.934546, 48.369396],\n          [-111.934939, 48.368399],\n          [-111.935227, 48.367613],\n          [-111.935586, 48.366493],\n          [-111.935831, 48.365544],\n          [-111.936026, 48.364601],\n          [-111.936138, 48.363831],\n          [-111.936258, 48.362885],\n          [-111.936438, 48.360792],\n          [-111.936415, 48.329088],\n          [-111.936407, 48.310354],\n          [-111.936413, 48.303031],\n          [-111.936412, 48.300795],\n          [-111.936402, 48.300483],\n          [-111.936381, 48.271331],\n          [-111.936384, 48.26711],\n          [-111.936382, 48.259592],\n          [-111.936296, 48.241832],\n          [-111.936359, 48.224045],\n          [-111.936352, 48.223792],\n          [-111.936325, 48.223208],\n          [-111.936251, 48.222646],\n          [-111.936138, 48.222131],\n          [-111.936009, 48.221594],\n          [-111.935863, 48.221148],\n          [-111.935674, 48.220724],\n          [-111.935554, 48.220438],\n          [-111.935323, 48.219975],\n          [-111.934809, 48.219106],\n          [-111.93372, 48.217503],\n          [-111.933233, 48.216812],\n          [-111.932738, 48.21609],\n          [-111.932429, 48.215627],\n          [-111.931294, 48.214006],\n          [-111.927397, 48.208419],\n          [-111.925603, 48.205843],\n          [-111.925208, 48.205217],\n          [-111.92491, 48.204712],\n          [-111.924771, 48.204436],\n          [-111.924661, 48.204188],\n          [-111.924567, 48.203923],\n          [-111.924475, 48.203592],\n          [-111.924434, 48.203298],\n          [-111.924418, 48.202753],\n          [-111.924413, 48.20226],\n          [-111.924452, 48.201981],\n          [-111.924528, 48.20166],\n          [-111.924607, 48.201399],\n          [-111.924686, 48.201185],\n          [-111.924808, 48.200887],\n          [-111.92494, 48.200634],\n          [-111.925143, 48.200322],\n          [-111.925478, 48.199721],\n          [-111.929307, 48.193399],\n          [-111.931749, 48.18936],\n          [-111.932143, 48.188696],\n          [-111.932455, 48.188174],\n          [-111.933068, 48.187161],\n          [-111.933601, 48.186274],\n          [-111.933896, 48.185797],\n          [-111.934176, 48.185351],\n          [-111.934674, 48.184441],\n          [-111.934869, 48.184038],\n          [-111.935015, 48.183702],\n          [-111.935133, 48.183407],\n          [-111.935235, 48.183131],\n          [-111.935317, 48.182855],\n          [-111.935435, 48.182454],\n          [-111.935517, 48.18214],\n          [-111.935563, 48.181903],\n          [-111.935605, 48.181629],\n          [-111.935654, 48.181347],\n          [-111.935672, 48.181134],\n          [-111.935695, 48.180837],\n          [-111.93571, 48.180431],\n          [-111.935711, 48.179913],\n          [-111.935689, 48.179699],\n          [-111.935666, 48.179392],\n          [-111.935641, 48.179193],\n          [-111.935605, 48.178954],\n          [-111.935551, 48.17862],\n          [-111.935494, 48.178341],\n          [-111.935425, 48.178065],\n          [-111.935362, 48.177851],\n          [-111.935271, 48.177512],\n          [-111.935083, 48.177015],\n          [-111.93498, 48.176751],\n          [-111.934859, 48.176484],\n          [-111.934688, 48.176141],\n          [-111.934489, 48.175789],\n          [-111.934239, 48.175377],\n          [-111.933859, 48.174812],\n          [-111.933189, 48.173765],\n          [-111.928027, 48.165762],\n          [-111.927735, 48.165321],\n          [-111.92603, 48.162726],\n          [-111.925093, 48.161247],\n          [-111.924008, 48.159611],\n          [-111.922175, 48.156783],\n          [-111.920615, 48.154387],\n          [-111.919007, 48.151911],\n          [-111.91822, 48.150663],\n          [-111.916601, 48.148144],\n          [-111.915551, 48.146568],\n          [-111.914312, 48.144665],\n          [-111.913624, 48.143606],\n          [-111.912311, 48.141567],\n          [-111.911974, 48.141065],\n          [-111.911504, 48.140381],\n          [-111.910989, 48.139656],\n          [-111.91031, 48.138734],\n          [-111.909273, 48.1374],\n          [-111.907928, 48.135653],\n          [-111.906666, 48.13405],\n          [-111.905997, 48.133172],\n          [-111.904722, 48.131516],\n          [-111.901655, 48.127581],\n          [-111.900048, 48.125516],\n          [-111.898729, 48.123822],\n          [-111.894029, 48.117798],\n          [-111.893315, 48.116857],\n          [-111.892001, 48.115177],\n          [-111.889638, 48.112132],\n          [-111.887413, 48.109275],\n          [-111.884717, 48.105808],\n          [-111.876044, 48.094626],\n          [-111.87031, 48.087229],\n          [-111.862959, 48.077764],\n          [-111.861332, 48.075665],\n          [-111.858755, 48.072362],\n          [-111.857125, 48.070241],\n          [-111.854834, 48.06729],\n          [-111.850948, 48.062304],\n          [-111.85011, 48.061229],\n          [-111.849084, 48.059917],\n          [-111.845348, 48.055071],\n          [-111.836461, 48.043589],\n          [-111.832454, 48.038401],\n          [-111.828116, 48.032803],\n          [-111.825147, 48.028974],\n          [-111.816587, 48.017942],\n          [-111.816087, 48.017289],\n          [-111.815305, 48.016376],\n          [-111.814473, 48.015423],\n          [-111.813623, 48.014499],\n          [-111.812937, 48.013816],\n          [-111.811984, 48.012851],\n          [-111.810868, 48.011863],\n          [-111.809752, 48.010882],\n          [-111.808825, 48.010101],\n          [-111.807598, 48.009153],\n          [-111.806388, 48.008229],\n          [-111.805238, 48.007408],\n          [-111.784158, 47.992286],\n          [-111.782561, 47.991143],\n          [-111.767146, 47.980084],\n          [-111.766219, 47.979354],\n          [-111.765283, 47.978504],\n          [-111.764288, 47.977544],\n          [-111.763404, 47.976585],\n          [-111.762691, 47.975723],\n          [-111.762193, 47.97501],\n          [-111.761653, 47.974154],\n          [-111.761121, 47.973252],\n          [-111.753336, 47.959718],\n          [-111.749036, 47.952205],\n          [-111.736505, 47.930384],\n          [-111.736106, 47.92965],\n          [-111.735644, 47.928853],\n          [-111.735343, 47.928305],\n          [-111.733592, 47.925244],\n          [-111.733306, 47.924769],\n          [-111.732599, 47.923554],\n          [-111.732395, 47.923205],\n          [-111.731718, 47.922093],\n          [-111.731538, 47.921738],\n          [-111.73117, 47.921043],\n          [-111.726112, 47.912262],\n          [-111.71442, 47.89173],\n          [-111.713776, 47.890608],\n          [-111.713253, 47.889578],\n          [-111.712927, 47.888864],\n          [-111.71254, 47.888058],\n          [-111.712146, 47.88689],\n          [-111.711811, 47.885744],\n          [-111.711519, 47.884564],\n          [-111.711253, 47.883125],\n          [-111.711124, 47.881922],\n          [-111.71103, 47.880834],\n          [-111.71103, 47.879792],\n          [-111.711129, 47.869762],\n          [-111.711004, 47.867783],\n          [-111.710901, 47.866758],\n          [-111.710781, 47.865716],\n          [-111.710618, 47.864547],\n          [-111.710438, 47.863447],\n          [-111.710283, 47.862537],\n          [-111.709991, 47.861213],\n          [-111.709756, 47.860259],\n          [-111.709335, 47.858847],\n          [-111.708841, 47.857285],\n          [-111.70727, 47.852822],\n          [-111.706867, 47.851704],\n          [-111.706498, 47.850875],\n          [-111.706077, 47.850017],\n          [-111.705434, 47.848819],\n          [-111.705305, 47.848582],\n          [-111.704816, 47.847747],\n          [-111.704215, 47.846849],\n          [-111.703623, 47.846054],\n          [-111.702678, 47.844833],\n          [-111.701983, 47.843986],\n          [-111.700902, 47.842828],\n          [-111.699923, 47.841889],\n          [-111.698979, 47.841013],\n          [-111.698052, 47.84023],\n          [-111.696893, 47.839291],\n          [-111.668363, 47.817267],\n          [-111.667479, 47.816472],\n          [-111.667042, 47.815942],\n          [-111.666647, 47.815434],\n          [-111.666226, 47.81476],\n          [-111.665943, 47.814143],\n          [-111.66578, 47.813619],\n          [-111.665625, 47.812887],\n          [-111.6656, 47.812391],\n          [-111.665591, 47.811797],\n          [-111.666429, 47.79584],\n          [-111.666535, 47.793822],\n          [-111.666492, 47.791308],\n          [-111.666439, 47.750802],\n          [-111.666442, 47.741317],\n          [-111.666445, 47.740989],\n          [-111.666406, 47.723306],\n          [-111.666381, 47.72244],\n          [-111.666295, 47.721684],\n          [-111.666158, 47.720881],\n          [-111.665986, 47.72024],\n          [-111.665746, 47.719547],\n          [-111.665419, 47.71871],\n          [-111.665042, 47.717925],\n          [-111.664647, 47.717243],\n          [-111.664132, 47.716493],\n          [-111.663789, 47.716008],\n          [-111.663359, 47.715528],\n          [-111.662432, 47.714581],\n          [-111.658081, 47.710071],\n          [-111.647285, 47.699031],\n          [-111.646085, 47.697836],\n          [-111.632275, 47.683698],\n          [-111.631949, 47.683351],\n          [-111.606663, 47.657441],\n          [-111.60117, 47.651798],\n          [-111.590415, 47.64073],\n          [-111.589918, 47.640187],\n          [-111.589463, 47.639655],\n          [-111.589068, 47.639157],\n          [-111.588707, 47.638689],\n          [-111.588287, 47.638139],\n          [-111.587849, 47.637538],\n          [-111.587549, 47.637104],\n          [-111.587231, 47.636624],\n          [-111.58627, 47.63501],\n          [-111.585369, 47.633136],\n          [-111.570511, 47.6019],\n          [-111.569945, 47.600818],\n          [-111.56955, 47.600169],\n          [-111.569224, 47.599643],\n          [-111.568846, 47.599047],\n          [-111.568546, 47.598607],\n          [-111.568168, 47.598051],\n          [-111.567747, 47.597472],\n          [-111.567335, 47.596928],\n          [-111.566915, 47.59643],\n          [-111.566537, 47.595991],\n          [-111.552899, 47.581183],\n          [-111.552633, 47.580911],\n          [-111.537629, 47.564691],\n          [-111.536514, 47.563515],\n          [-111.535904, 47.562901],\n          [-111.535175, 47.56227],\n          [-111.534437, 47.561691],\n          [-111.533656, 47.561129],\n          [-111.532711, 47.560504],\n          [-111.531647, 47.559884],\n          [-111.53048, 47.559311],\n          [-111.529184, 47.558737],\n          [-111.528008, 47.558285],\n          [-111.526806, 47.557897],\n          [-111.525424, 47.557503],\n          [-111.524008, 47.557162],\n          [-111.522824, 47.556953],\n          [-111.521734, 47.556779],\n          [-111.509679, 47.554952],\n          [-111.484251, 47.551039],\n          [-111.477299, 47.54995],\n          [-111.455614, 47.546631],\n          [-111.452477, 47.546143],\n          [-111.452005, 47.546074],\n          [-111.448496, 47.545531],\n          [-111.445301, 47.545037],\n          [-111.443894, 47.544799],\n          [-111.442357, 47.544492],\n          [-111.440907, 47.544162],\n          [-111.439173, 47.543716],\n          [-111.437894, 47.543368],\n          [-111.436512, 47.542957],\n          [-111.435045, 47.54247],\n          [-111.385349, 47.526175],\n          [-111.384241, 47.525793],\n          [-111.383478, 47.52541],\n          [-111.382928, 47.525097],\n          [-111.382499, 47.524784],\n          [-111.382036, 47.524384],\n          [-111.381709, 47.524025],\n          [-111.381452, 47.523741],\n          [-111.380053, 47.521909],\n          [-111.379298, 47.520959],\n          [-111.379152, 47.520779],\n          [-111.378714, 47.520286],\n          [-111.378268, 47.519857],\n          [-111.377555, 47.519394],\n          [-111.376774, 47.518994],\n          [-111.376096, 47.518733],\n          [-111.375409, 47.51853],\n          [-111.374294, 47.518234],\n          [-111.351059, 47.512362],\n          [-111.350081, 47.512055],\n          [-111.348914, 47.511632],\n          [-111.348184, 47.511255],\n          [-111.347446, 47.510878],\n          [-111.346914, 47.510553],\n          [-111.346356, 47.510147],\n          [-111.345832, 47.509759],\n          [-111.345309, 47.509295],\n          [-111.344914, 47.508884],\n          [-111.344605, 47.508542],\n          [-111.344193, 47.50802],\n          [-111.34391, 47.507591],\n          [-111.343618, 47.507133],\n          [-111.343352, 47.506535],\n          [-111.343137, 47.505921],\n          [-111.343, 47.505254],\n          [-111.342914, 47.504779],\n          [-111.342871, 47.504205],\n          [-111.342884, 47.503714],\n          [-111.343017, 47.501337],\n          [-111.343037, 47.500922],\n          [-111.343074, 47.500247],\n          [-111.343153, 47.498866],\n          [-111.343699, 47.489338],\n          [-111.343837, 47.488347],\n          [-111.344051, 47.487517],\n          [-111.344326, 47.486746],\n          [-111.344695, 47.485795],\n          [-111.345184, 47.484855],\n          [-111.345493, 47.484356],\n          [-111.346068, 47.483527],\n          [-111.34715, 47.48221],\n          [-111.347948, 47.481392],\n          [-111.348765, 47.480715],\n          [-111.349751, 47.479978],\n          [-111.350866, 47.47913],\n          [-111.356582, 47.475347],\n          [-111.365214, 47.469592],\n          [-111.367419, 47.46813],\n          [-111.367934, 47.467829],\n          [-111.368578, 47.467492],\n          [-111.36923, 47.467144],\n          [-111.369994, 47.466807],\n          [-111.370973, 47.466407],\n          [-111.371926, 47.466042],\n          [-111.372818, 47.465746],\n          [-111.373522, 47.465525],\n          [-111.374509, 47.465258],\n          [-111.429286, 47.452445],\n          [-111.429621, 47.452364],\n          [-111.473508, 47.442064],\n          [-111.50183, 47.435384],\n          [-111.502749, 47.435175],\n          [-111.503701, 47.434961],\n          [-111.504362, 47.434792],\n          [-111.505221, 47.434543],\n          [-111.506045, 47.434299],\n          [-111.506663, 47.434095],\n          [-111.507143, 47.433927],\n          [-111.507907, 47.433648],\n          [-111.508654, 47.433312],\n          [-111.509255, 47.433045],\n          [-111.509933, 47.432725],\n          [-111.510534, 47.432412],\n          [-111.51122, 47.432029],\n          [-111.51183, 47.431674],\n          [-111.512954, 47.430931],\n          [-111.513546, 47.43049],\n          [-111.524011, 47.422011],\n          [-111.569141, 47.385345],\n          [-111.6142, 47.348685],\n          [-111.614466, 47.34847],\n          [-111.634341, 47.332266],\n          [-111.69101, 47.285965],\n          [-111.692683, 47.284596],\n          [-111.694151, 47.283461],\n          [-111.694838, 47.282943],\n          [-111.696432, 47.281863],\n          [-111.698123, 47.280815],\n          [-111.699024, 47.280297],\n          [-111.699436, 47.280064],\n          [-111.703522, 47.277671],\n          [-111.704183, 47.27728],\n          [-111.704689, 47.276966],\n          [-111.70511, 47.276686],\n          [-111.705436, 47.276442],\n          [-111.705788, 47.276139],\n          [-111.706182, 47.275766],\n          [-111.706612, 47.275289],\n          [-111.706989, 47.274806],\n          [-111.707367, 47.274264],\n          [-111.707573, 47.273856],\n          [-111.707813, 47.273379],\n          [-111.707933, 47.273047],\n          [-111.708045, 47.272651],\n          [-111.708122, 47.272307],\n          [-111.708199, 47.271911],\n          [-111.708234, 47.271544],\n          [-111.708234, 47.271212],\n          [-111.708157, 47.264538],\n          [-111.708114, 47.262342],\n          [-111.708122, 47.261794],\n          [-111.708157, 47.261369],\n          [-111.708234, 47.260851],\n          [-111.708268, 47.260653],\n          [-111.708337, 47.260257],\n          [-111.708508, 47.259511],\n          [-111.708637, 47.258923],\n          [-111.708783, 47.258241],\n          [-111.70898, 47.257536],\n          [-111.709152, 47.256942],\n          [-111.709298, 47.256383],\n          [-111.710079, 47.25333],\n          [-111.710328, 47.252363],\n          [-111.710474, 47.251833],\n          [-111.710637, 47.251332],\n          [-111.710834, 47.250889],\n          [-111.71104, 47.250545],\n          [-111.711367, 47.250085],\n          [-111.711658, 47.249753],\n          [-111.711942, 47.249444],\n          [-111.712345, 47.249089],\n          [-111.712766, 47.248751],\n          [-111.71316, 47.248494],\n          [-111.713624, 47.248221],\n          [-111.714147, 47.247958],\n          [-111.714834, 47.247655],\n          [-111.729726, 47.241112],\n          [-111.73291, 47.239807],\n          [-111.75169, 47.232534],\n          [-111.754093, 47.231624],\n          [-111.75635, 47.230861],\n          [-111.75676, 47.230739],\n          [-111.765002, 47.228413],\n          [-111.765835, 47.228157],\n          [-111.766633, 47.227877],\n          [-111.767345, 47.227597],\n          [-111.768092, 47.227306],\n          [-111.768719, 47.227026],\n          [-111.769474, 47.226676],\n          [-111.770058, 47.226361],\n          [-111.770727, 47.225988],\n          [-111.771448, 47.225534],\n          [-111.772118, 47.225096],\n          [-111.772693, 47.224688],\n          [-111.773405, 47.22417],\n          [-111.773714, 47.223936],\n          [-111.774169, 47.223575],\n          [-111.774641, 47.223103],\n          [-111.775104, 47.222619],\n          [-111.775499, 47.222211],\n          [-111.775885, 47.221774],\n          [-111.776306, 47.221255],\n          [-111.776658, 47.220777],\n          [-111.77695, 47.220369],\n          [-111.777422, 47.219611],\n          [-111.777722, 47.219057],\n          [-111.778014, 47.218422],\n          [-111.778289, 47.217746],\n          [-111.778503, 47.217104],\n          [-111.778675, 47.216428],\n          [-111.778881, 47.215694],\n          [-111.779061, 47.214988],\n          [-111.780057, 47.210796],\n          [-111.780203, 47.210213],\n          [-111.780323, 47.209758],\n          [-111.780435, 47.209397],\n          [-111.780641, 47.208808],\n          [-111.780907, 47.208201],\n          [-111.78113, 47.207729],\n          [-111.781301, 47.207438],\n          [-111.781499, 47.207129],\n          [-111.78228, 47.205916],\n          [-111.783293, 47.204645],\n          [-111.783936, 47.203974],\n          [-111.784735, 47.203146],\n          [-111.785593, 47.202225],\n          [-111.786314, 47.201466],\n          [-111.786872, 47.200883],\n          [-111.787902, 47.199845],\n          [-111.788254, 47.199507],\n          [-111.788674, 47.19914],\n          [-111.789086, 47.19879],\n          [-111.789584, 47.198387],\n          [-111.790168, 47.197921],\n          [-111.790605, 47.197618],\n          [-111.791249, 47.197227],\n          [-111.791824, 47.196877],\n          [-111.792545, 47.196474],\n          [-111.793198, 47.196136],\n          [-111.79397, 47.195769],\n          [-111.794805, 47.195425],\n          [-111.801248, 47.192835],\n          [-111.801575, 47.192701],\n          [-111.802656, 47.192287],\n          [-111.803514, 47.191937],\n          [-111.804167, 47.191628],\n          [-111.804665, 47.191394],\n          [-111.8053, 47.191045],\n          [-111.805723, 47.190797],\n          [-111.805997, 47.190634],\n          [-111.806478, 47.190323],\n          [-111.806732, 47.190144],\n          [-111.80699, 47.189955],\n          [-111.807242, 47.189755],\n          [-111.807499, 47.189537],\n          [-111.807978, 47.189108],\n          [-111.808309, 47.188784],\n          [-111.808738, 47.188316],\n          [-111.809145, 47.187831],\n          [-111.809375, 47.187515],\n          [-111.809578, 47.187207],\n          [-111.809725, 47.186968],\n          [-111.809941, 47.18658],\n          [-111.810196, 47.186052],\n          [-111.810485, 47.185392],\n          [-111.810582, 47.185034],\n          [-111.810757, 47.184458],\n          [-111.81087, 47.184068],\n          [-111.811288, 47.182591],\n          [-111.811466, 47.182023],\n          [-111.811592, 47.181562],\n          [-111.811725, 47.181068],\n          [-111.811881, 47.18053],\n          [-111.812016, 47.179972],\n          [-111.812133, 47.179486],\n          [-111.812304, 47.178698],\n          [-111.812475, 47.177933],\n          [-111.812795, 47.176671],\n          [-111.813022, 47.175805],\n          [-111.813143, 47.175313],\n          [-111.813289, 47.174743],\n          [-111.813451, 47.174086],\n          [-111.813587, 47.173603],\n          [-111.813709, 47.173199],\n          [-111.813868, 47.172742],\n          [-111.814052, 47.172177],\n          [-111.81431, 47.171374],\n          [-111.814446, 47.170953],\n          [-111.814555, 47.170592],\n          [-111.814621, 47.170315],\n          [-111.814724, 47.169845],\n          [-111.814867, 47.169286],\n          [-111.814924, 47.169023],\n          [-111.815005, 47.168585],\n          [-111.81512, 47.168075],\n          [-111.815267, 47.167513],\n          [-111.81537, 47.167124],\n          [-111.815534, 47.166596],\n          [-111.815743, 47.165879],\n          [-111.815883, 47.165407],\n          [-111.816017, 47.16497],\n          [-111.816151, 47.164499],\n          [-111.816299, 47.164102],\n          [-111.816455, 47.163605],\n          [-111.816606, 47.163233],\n          [-111.81675, 47.162929],\n          [-111.8169, 47.16265],\n          [-111.817163, 47.162234],\n          [-111.817461, 47.161792],\n          [-111.817707, 47.161428],\n          [-111.817918, 47.161172],\n          [-111.818109, 47.160939],\n          [-111.81826, 47.160773],\n          [-111.818436, 47.160598],\n          [-111.818713, 47.160322],\n          [-111.819137, 47.159916],\n          [-111.819338, 47.159742],\n          [-111.819615, 47.159506],\n          [-111.819811, 47.159353],\n          [-111.820101, 47.159137],\n          [-111.820886, 47.158653],\n          [-111.821347, 47.158391],\n          [-111.821709, 47.158179],\n          [-111.82215, 47.157949],\n          [-111.822792, 47.157656],\n          [-111.823291, 47.157407],\n          [-111.823951, 47.157074],\n          [-111.824604, 47.156773],\n          [-111.824926, 47.156618],\n          [-111.826016, 47.156075],\n          [-111.826777, 47.155704],\n          [-111.827118, 47.155527],\n          [-111.827632, 47.155278],\n          [-111.828833, 47.154684],\n          [-111.830331, 47.153967],\n          [-111.83092, 47.153679],\n          [-111.831417, 47.153485],\n          [-111.831694, 47.153394],\n          [-111.831937, 47.15332],\n          [-111.832157, 47.153261],\n          [-111.832517, 47.15318],\n          [-111.832892, 47.153117],\n          [-111.833253, 47.153076],\n          [-111.833573, 47.153049],\n          [-111.833993, 47.153025],\n          [-111.834559, 47.153049],\n          [-111.835126, 47.153113],\n          [-111.835701, 47.1532],\n          [-111.83595, 47.153259],\n          [-111.841856, 47.154858],\n          [-111.842362, 47.155002],\n          [-111.842712, 47.155094],\n          [-111.843019, 47.155158],\n          [-111.843672, 47.155257],\n          [-111.8438, 47.155267],\n          [-111.844087, 47.155287],\n          [-111.844399, 47.155286],\n          [-111.844699, 47.15528],\n          [-111.845058, 47.15526],\n          [-111.845509, 47.155193],\n          [-111.845869, 47.155122],\n          [-111.846291, 47.155019],\n          [-111.846644, 47.154905],\n          [-111.846928, 47.154785],\n          [-111.847126, 47.154685],\n          [-111.847479, 47.154504],\n          [-111.847736, 47.154346],\n          [-111.847908, 47.15421],\n          [-111.848115, 47.154036],\n          [-111.848251, 47.153894],\n          [-111.848342, 47.153792],\n          [-111.84847, 47.153647],\n          [-111.848543, 47.153546],\n          [-111.848649, 47.153419],\n          [-111.848764, 47.153232],\n          [-111.848861, 47.153032],\n          [-111.848947, 47.152823],\n          [-111.848973, 47.152708],\n          [-111.849021, 47.152541],\n          [-111.849042, 47.152364],\n          [-111.849077, 47.152131],\n          [-111.849103, 47.151825],\n          [-111.849333, 47.149062],\n          [-111.849393, 47.148406],\n          [-111.8494, 47.148192],\n          [-111.849408, 47.147987],\n          [-111.8494, 47.147824],\n          [-111.84939, 47.147698],\n          [-111.849374, 47.147556],\n          [-111.849347, 47.147435],\n          [-111.849331, 47.147351],\n          [-111.849245, 47.146966],\n          [-111.849142, 47.146674],\n          [-111.849059, 47.146434],\n          [-111.848943, 47.146212],\n          [-111.84886, 47.146053],\n          [-111.848767, 47.145896],\n          [-111.848673, 47.145762],\n          [-111.848566, 47.14562],\n          [-111.847025, 47.143717],\n          [-111.846887, 47.143525],\n          [-111.846766, 47.143353],\n          [-111.846661, 47.14319],\n          [-111.846521, 47.142953],\n          [-111.846415, 47.142749],\n          [-111.846343, 47.142591],\n          [-111.846269, 47.14237],\n          [-111.846241, 47.142263],\n          [-111.846223, 47.14217],\n          [-111.846209, 47.142062],\n          [-111.84619, 47.141876],\n          [-111.846192, 47.141745],\n          [-111.846217, 47.141528],\n          [-111.846242, 47.141353],\n          [-111.84627, 47.141184],\n          [-111.846324, 47.141016],\n          [-111.846398, 47.140797],\n          [-111.846525, 47.140531],\n          [-111.846604, 47.14041],\n          [-111.846676, 47.14029],\n          [-111.846846, 47.140059],\n          [-111.847142, 47.139751],\n          [-111.847281, 47.13963],\n          [-111.84746, 47.139479],\n          [-111.847678, 47.139323],\n          [-111.84791, 47.139171],\n          [-111.848186, 47.139013],\n          [-111.848438, 47.138891],\n          [-111.848706, 47.138772],\n          [-111.848984, 47.138674],\n          [-111.849267, 47.138581],\n          [-111.849592, 47.138477],\n          [-111.849947, 47.138393],\n          [-111.850257, 47.138331],\n          [-111.850556, 47.138292],\n          [-111.850908, 47.138241],\n          [-111.851241, 47.13822],\n          [-111.85164, 47.138209],\n          [-111.851974, 47.13821],\n          [-111.852237, 47.138223],\n          [-111.852532, 47.138247],\n          [-111.852795, 47.138276],\n          [-111.853123, 47.13833],\n          [-111.853394, 47.138374],\n          [-111.853787, 47.138457],\n          [-111.854766, 47.138667],\n          [-111.855826, 47.138884],\n          [-111.856179, 47.13897],\n          [-111.856565, 47.139029],\n          [-111.856792, 47.139068],\n          [-111.857173, 47.13911],\n          [-111.857431, 47.139137],\n          [-111.857676, 47.139157],\n          [-111.858048, 47.139176],\n          [-111.858338, 47.139177],\n          [-111.858762, 47.139167],\n          [-111.859155, 47.139148],\n          [-111.85955, 47.139117],\n          [-111.859805, 47.139089],\n          [-111.860245, 47.139022],\n          [-111.860491, 47.13898],\n          [-111.860683, 47.138944],\n          [-111.860973, 47.138885],\n          [-111.861214, 47.138829],\n          [-111.861479, 47.138758],\n          [-111.861743, 47.138677],\n          [-111.862069, 47.138562],\n          [-111.862344, 47.138449],\n          [-111.862687, 47.138297],\n          [-111.862931, 47.138175],\n          [-111.863114, 47.138087],\n          [-111.863314, 47.137975],\n          [-111.863599, 47.137807],\n          [-111.863972, 47.13756],\n          [-111.864261, 47.137341],\n          [-111.864442, 47.137202],\n          [-111.864674, 47.137005],\n          [-111.864969, 47.136736],\n          [-111.865258, 47.13642],\n          [-111.867853, 47.13324],\n          [-111.868102, 47.13296],\n          [-111.868445, 47.132657],\n          [-111.868909, 47.132347],\n          [-111.869372, 47.132096],\n          [-111.869776, 47.131938],\n          [-111.870291, 47.131792],\n          [-111.870754, 47.131687],\n          [-111.871286, 47.131623],\n          [-111.87181, 47.131605],\n          [-111.872359, 47.131617],\n          [-111.873389, 47.131705],\n          [-111.875681, 47.131897],\n          [-111.885054, 47.132785],\n          [-111.886566, 47.132886],\n          [-111.888607, 47.1331],\n          [-111.888985, 47.133135],\n          [-111.889766, 47.133217],\n          [-111.890444, 47.133281],\n          [-111.891225, 47.133322],\n          [-111.891886, 47.133334],\n          [-111.892598, 47.133334],\n          [-111.893242, 47.133316],\n          [-111.8938, 47.133305],\n          [-111.894512, 47.133246],\n          [-111.89513, 47.133194],\n          [-111.89563, 47.133132],\n          [-111.896274, 47.133044],\n          [-111.89678, 47.132974],\n          [-111.898531, 47.132636],\n          [-111.899656, 47.132344],\n          [-111.900711, 47.132022],\n          [-111.901398, 47.131783],\n          [-111.902445, 47.131403],\n          [-111.904162, 47.130755],\n          [-111.909034, 47.128927],\n          [-111.913729, 47.127181],\n          [-111.917251, 47.125878],\n          [-111.92071, 47.1247],\n          [-111.921698, 47.124251],\n          [-111.922387, 47.123838],\n          [-111.922806, 47.123526],\n          [-111.924809, 47.121884],\n          [-111.925527, 47.121467],\n          [-111.926631, 47.121045],\n          [-111.927545, 47.120838],\n          [-111.928844, 47.120679],\n          [-111.939954, 47.119561],\n          [-111.940893, 47.119375],\n          [-111.941491, 47.119193],\n          [-111.94258, 47.118694],\n          [-111.94328, 47.118205],\n          [-111.943682, 47.117842],\n          [-111.944167, 47.117216],\n          [-111.94437, 47.116782],\n          [-111.94452, 47.116283],\n          [-111.944594, 47.115646],\n          [-111.944471, 47.113184],\n          [-111.944519, 47.112085],\n          [-111.944699, 47.111164],\n          [-111.9451, 47.109855],\n          [-111.94519, 47.109613],\n          [-111.946818, 47.104798],\n          [-111.947185, 47.103915],\n          [-111.94757, 47.103215],\n          [-111.948705, 47.101708],\n          [-111.95025, 47.099859],\n          [-111.951568, 47.098237],\n          [-111.952318, 47.097326],\n          [-111.952866, 47.096646],\n          [-111.954165, 47.094457],\n          [-111.954536, 47.093996],\n          [-111.955001, 47.093573],\n          [-111.95538, 47.093283],\n          [-111.95597, 47.092921],\n          [-111.958022, 47.092174],\n          [-111.958929, 47.091665],\n          [-111.959563, 47.091145],\n          [-111.959918, 47.090782],\n          [-111.960199, 47.090406],\n          [-111.960514, 47.089782],\n          [-111.960679, 47.089121],\n          [-111.961076, 47.083974],\n          [-111.961218, 47.083113],\n          [-111.961515, 47.082259],\n          [-111.962027, 47.081188],\n          [-111.962536, 47.080367],\n          [-111.963148, 47.079581],\n          [-111.964601, 47.078023],\n          [-111.966718, 47.075826],\n          [-111.967024, 47.075517],\n          [-111.969094, 47.073375],\n          [-111.970437, 47.07194],\n          [-111.972154, 47.070032],\n          [-111.973432, 47.068542],\n          [-111.974103, 47.067809],\n          [-111.974604, 47.067107],\n          [-111.976616, 47.064731],\n          [-111.98105, 47.059331],\n          [-111.981811, 47.058552],\n          [-111.982905, 47.057585],\n          [-111.983864, 47.057007],\n          [-111.985011, 47.056354],\n          [-111.986314, 47.055712],\n          [-111.986853, 47.055504],\n          [-111.987827, 47.055224],\n          [-111.990272, 47.054577],\n          [-111.991627, 47.053954],\n          [-111.992491, 47.053494],\n          [-111.993301, 47.052977],\n          [-111.994268, 47.05221],\n          [-111.994901, 47.051592],\n          [-112.00108, 47.045261],\n          [-112.002131, 47.044014],\n          [-112.002341, 47.043639],\n          [-112.002459, 47.043291],\n          [-112.00254, 47.04249],\n          [-112.002551, 47.041633],\n          [-112.002802, 47.040468],\n          [-112.003031, 47.039996],\n          [-112.003311, 47.039629],\n          [-112.00408, 47.038901],\n          [-112.004669, 47.038537],\n          [-112.005381, 47.038191],\n          [-112.006132, 47.03787],\n          [-112.007591, 47.037508],\n          [-112.008057, 47.037437],\n          [-112.009475, 47.037313],\n          [-112.012696, 47.037258],\n          [-112.01489, 47.037245],\n          [-112.016275, 47.037163],\n          [-112.0192, 47.037033],\n          [-112.020595, 47.036893],\n          [-112.021841, 47.036661],\n          [-112.023428, 47.036288],\n          [-112.024543, 47.035923],\n          [-112.025634, 47.03549],\n          [-112.026621, 47.035004],\n          [-112.027875, 47.034259],\n          [-112.04368, 47.024236],\n          [-112.044909, 47.023441],\n          [-112.04544, 47.023036],\n          [-112.04608, 47.022418],\n          [-112.046528, 47.021863],\n          [-112.046751, 47.021531],\n          [-112.046895, 47.021189],\n          [-112.048457, 47.017223],\n          [-112.049379, 47.014861],\n          [-112.04961, 47.014335],\n          [-112.049878, 47.013819],\n          [-112.050194, 47.013314],\n          [-112.050556, 47.012813],\n          [-112.050955, 47.01233],\n          [-112.051351, 47.011873],\n          [-112.051809, 47.011423],\n          [-112.052303, 47.010991],\n          [-112.05283, 47.010576],\n          [-112.053387, 47.010182],\n          [-112.053972, 47.009806],\n          [-112.056998, 47.008006],\n          [-112.058515, 47.007109],\n          [-112.060333, 47.006031],\n          [-112.061846, 47.00513],\n          [-112.062472, 47.004869],\n          [-112.062889, 47.004741],\n          [-112.063358, 47.004645],\n          [-112.063683, 47.004606],\n          [-112.064074, 47.004561],\n          [-112.064445, 47.004519],\n          [-112.06488, 47.004576],\n          [-112.06527, 47.004629],\n          [-112.065565, 47.004697],\n          [-112.065974, 47.004792],\n          [-112.066808, 47.004991],\n          [-112.06824, 47.005361],\n          [-112.0686, 47.005467],\n          [-112.069096, 47.005596],\n          [-112.069473, 47.005688],\n          [-112.069732, 47.005745],\n          [-112.070266, 47.005855],\n          [-112.070699, 47.005951],\n          [-112.071253, 47.006048],\n          [-112.071642, 47.006114],\n          [-112.071928, 47.006158],\n          [-112.072302, 47.006209],\n          [-112.072735, 47.006263],\n          [-112.072984, 47.006287],\n          [-112.073367, 47.006318],\n          [-112.073792, 47.006352],\n          [-112.074219, 47.006372],\n          [-112.074542, 47.006382],\n          [-112.074829, 47.00639],\n          [-112.075178, 47.006392],\n          [-112.075603, 47.006393],\n          [-112.076788, 47.006332],\n          [-112.077271, 47.006281],\n          [-112.077628, 47.006225],\n          [-112.078026, 47.006153],\n          [-112.078436, 47.006074],\n          [-112.078755, 47.005996],\n          [-112.079201, 47.005866],\n          [-112.079533, 47.005747],\n          [-112.079812, 47.00563],\n          [-112.080082, 47.005495],\n          [-112.080379, 47.005332],\n          [-112.080635, 47.005164],\n          [-112.080953, 47.004927],\n          [-112.081049, 47.004826],\n          [-112.081198, 47.004689],\n          [-112.081316, 47.004562],\n          [-112.081449, 47.004379],\n          [-112.081568, 47.004191],\n          [-112.081674, 47.003987],\n          [-112.08174, 47.003858],\n          [-112.081806, 47.003692],\n          [-112.081884, 47.003438],\n          [-112.08191, 47.003275],\n          [-112.081934, 47.003066],\n          [-112.08193, 47.002831],\n          [-112.081896, 47.002597],\n          [-112.081853, 47.002371],\n          [-112.081798, 47.002194],\n          [-112.081607, 47.00176],\n          [-112.081184, 47.001198],\n          [-112.079559, 46.99968],\n          [-112.078016, 46.99838],\n          [-112.07758, 46.997912],\n          [-112.077288, 46.997532],\n          [-112.076986, 46.99693],\n          [-112.076889, 46.996514],\n          [-112.076886, 46.996116],\n          [-112.076984, 46.995478],\n          [-112.07795, 46.992584],\n          [-112.078047, 46.991994],\n          [-112.078024, 46.991594],\n          [-112.077935, 46.9912],\n          [-112.077672, 46.990627],\n          [-112.076129, 46.988425],\n          [-112.075762, 46.987771],\n          [-112.075646, 46.98742],\n          [-112.075619, 46.987055],\n          [-112.075663, 46.986679],\n          [-112.075796, 46.986299],\n          [-112.076008, 46.985921],\n          [-112.076502, 46.98539],\n          [-112.077181, 46.984932],\n          [-112.081242, 46.982494],\n          [-112.081853, 46.981972],\n          [-112.082104, 46.981646],\n          [-112.082346, 46.981245],\n          [-112.082526, 46.98074],\n          [-112.082567, 46.980266],\n          [-112.082681, 46.977427],\n          [-112.082826, 46.974499],\n          [-112.083032, 46.973709],\n          [-112.083438, 46.973098],\n          [-112.083941, 46.972667],\n          [-112.084536, 46.97225],\n          [-112.093815, 46.965771],\n          [-112.094034, 46.965596],\n          [-112.094318, 46.965306],\n          [-112.094501, 46.965085],\n          [-112.094642, 46.964864],\n          [-112.094785, 46.964575],\n          [-112.094868, 46.964338],\n          [-112.094926, 46.964081],\n          [-112.094952, 46.963813],\n          [-112.094963, 46.963562],\n          [-112.094964, 46.963005],\n          [-112.094945, 46.962147],\n          [-112.095064, 46.961322],\n          [-112.095315, 46.960775],\n          [-112.095663, 46.960328],\n          [-112.098599, 46.957746],\n          [-112.098975, 46.957432],\n          [-112.099726, 46.956946],\n          [-112.100314, 46.956644],\n          [-112.101038, 46.956326],\n          [-112.103946, 46.955297],\n          [-112.107802, 46.953955],\n          [-112.108475, 46.953671],\n          [-112.108901, 46.953445],\n          [-112.109465, 46.953038],\n          [-112.109979, 46.952469],\n          [-112.110197, 46.952042],\n          [-112.111502, 46.949682],\n          [-112.112324, 46.948952],\n          [-112.113184, 46.948533],\n          [-112.114208, 46.948308],\n          [-112.116111, 46.948021],\n          [-112.117289, 46.947669],\n          [-112.118334, 46.94705],\n          [-112.119549, 46.946068],\n          [-112.122402, 46.943642],\n          [-112.123133, 46.943013],\n          [-112.123553, 46.942583],\n          [-112.12389, 46.942171],\n          [-112.124619, 46.941266],\n          [-112.125571, 46.939982],\n          [-112.126015, 46.939377],\n          [-112.1265, 46.938749],\n          [-112.126751, 46.938397],\n          [-112.126995, 46.938014],\n          [-112.127231, 46.93766],\n          [-112.127472, 46.93708],\n          [-112.127553, 46.936521],\n          [-112.127485, 46.935878],\n          [-112.126037, 46.931011],\n          [-112.125843, 46.930596],\n          [-112.125614, 46.930288],\n          [-112.125356, 46.930017],\n          [-112.125, 46.92973],\n          [-112.122981, 46.928549],\n          [-112.122668, 46.928293],\n          [-112.122315, 46.927871],\n          [-112.122099, 46.927296],\n          [-112.122093, 46.926792],\n          [-112.122341, 46.926128],\n          [-112.12333, 46.924835],\n          [-112.123628, 46.924404],\n          [-112.123835, 46.923877],\n          [-112.123883, 46.923325],\n          [-112.123775, 46.9228],\n          [-112.123494, 46.922251],\n          [-112.123242, 46.921939],\n          [-112.123161, 46.921857],\n          [-112.12174, 46.920823],\n          [-112.121416, 46.920602],\n          [-112.120977, 46.920179],\n          [-112.120697, 46.919775],\n          [-112.120503, 46.919327],\n          [-112.120322, 46.918471],\n          [-112.119667, 46.915666],\n          [-112.11939, 46.915074],\n          [-112.119062, 46.914644],\n          [-112.118506, 46.91421],\n          [-112.116708, 46.913328],\n          [-112.116193, 46.912968],\n          [-112.115472, 46.912187],\n          [-112.115356, 46.911933],\n          [-112.115279, 46.911728],\n          [-112.115241, 46.911454],\n          [-112.11523, 46.911175],\n          [-112.115266, 46.910915],\n          [-112.115368, 46.910602],\n          [-112.115446, 46.910438],\n          [-112.115662, 46.910084],\n          [-112.11604, 46.909673],\n          [-112.119395, 46.907257],\n          [-112.119896, 46.906695],\n          [-112.120633, 46.90538],\n          [-112.120979, 46.904986],\n          [-112.122506, 46.903673],\n          [-112.12294, 46.903177],\n          [-112.123172, 46.902727],\n          [-112.123344, 46.902186],\n          [-112.12337, 46.901665],\n          [-112.12326, 46.90114],\n          [-112.123004, 46.900542],\n          [-112.122296, 46.899463],\n          [-112.118791, 46.893932],\n          [-112.118077, 46.892887],\n          [-112.117488, 46.892253],\n          [-112.11672, 46.891638],\n          [-112.11608, 46.891253],\n          [-112.114112, 46.89021],\n          [-112.110716, 46.888379],\n          [-112.110338, 46.888159],\n          [-112.106096, 46.885885],\n          [-112.101398, 46.88336],\n          [-112.094609, 46.879651],\n          [-112.0931, 46.878959],\n          [-112.091311, 46.878288],\n          [-112.089958, 46.877867],\n          [-112.088521, 46.877511],\n          [-112.069016, 46.872724],\n          [-112.049279, 46.867857],\n          [-112.047103, 46.867189],\n          [-112.044993, 46.866382],\n          [-112.043719, 46.865827],\n          [-112.042541, 46.865241],\n          [-112.040586, 46.864168],\n          [-112.039263, 46.863298],\n          [-112.037988, 46.862365],\n          [-112.036738, 46.86133],\n          [-112.014076, 46.842104],\n          [-112.012788, 46.840941],\n          [-112.011749, 46.839918],\n          [-112.010445, 46.83844],\n          [-112.009025, 46.83667],\n          [-112.007922, 46.83499],\n          [-112.007123, 46.833605],\n          [-112.006361, 46.832073],\n          [-112.005882, 46.830963],\n          [-112.003109, 46.824179],\n          [-112.002795, 46.823308],\n          [-112.001559, 46.820272],\n          [-112.001405, 46.819943],\n          [-112.001005, 46.818846],\n          [-112.000667, 46.817632],\n          [-112.000578, 46.816809],\n          [-112.000493, 46.815794],\n          [-112.000516, 46.814928],\n          [-112.000693, 46.813761],\n          [-112.001162, 46.812127],\n          [-112.001628, 46.811112],\n          [-112.002462, 46.809713],\n          [-112.003317, 46.808598],\n          [-112.004049, 46.80782],\n          [-112.005118, 46.806834],\n          [-112.006592, 46.805739],\n          [-112.028016, 46.792156],\n          [-112.029741, 46.790912],\n          [-112.030745, 46.79008],\n          [-112.031484, 46.78938],\n          [-112.032257, 46.788498],\n          [-112.033266, 46.787176],\n          [-112.033873, 46.786179],\n          [-112.034356, 46.785153],\n          [-112.03474, 46.784222],\n          [-112.035041, 46.783106],\n          [-112.035281, 46.78179],\n          [-112.035332, 46.780429],\n          [-112.035162, 46.778932],\n          [-112.034994, 46.7781],\n          [-112.034623, 46.77676],\n          [-112.031439, 46.767593],\n          [-112.030872, 46.766116],\n          [-112.03058, 46.765566],\n          [-112.0298, 46.76452],\n          [-112.029051, 46.763776],\n          [-112.027625, 46.762715],\n          [-112.021142, 46.759474],\n          [-112.019784, 46.758674],\n          [-112.018427, 46.757701],\n          [-112.017026, 46.756401],\n          [-112.01646, 46.75581],\n          [-112.015787, 46.754949],\n          [-112.015034, 46.753726],\n          [-112.014675, 46.752957],\n          [-112.014369, 46.752178],\n          [-112.014113, 46.751252],\n          [-112.013978, 46.7503],\n          [-112.013965, 46.748917],\n          [-112.01407, 46.747974],\n          [-112.014425, 46.74657],\n          [-112.017111, 46.737855],\n          [-112.017375, 46.736784],\n          [-112.017607, 46.735355],\n          [-112.017673, 46.734409],\n          [-112.017685, 46.733581],\n          [-112.017588, 46.732104],\n          [-112.017413, 46.730961],\n          [-112.016851, 46.728893],\n          [-112.016052, 46.726997],\n          [-112.015229, 46.725474],\n          [-112.014031, 46.723297],\n          [-112.013406, 46.721963],\n          [-112.012932, 46.720654],\n          [-112.012536, 46.719097],\n          [-112.012339, 46.717599],\n          [-112.012283, 46.716345],\n          [-112.012185, 46.707222],\n          [-112.012075, 46.70024],\n          [-112.011602, 46.660701],\n          [-112.011601, 46.660313],\n          [-112.011436, 46.648193],\n          [-112.011441, 46.648028],\n          [-112.011427, 46.646569],\n          [-112.011246, 46.631754],\n          [-112.011146, 46.621062],\n          [-112.011132, 46.619553],\n          [-112.01109, 46.616805],\n          [-112.011059, 46.614798],\n          [-112.011048, 46.61406],\n          [-112.011037, 46.613709],\n          [-112.010993, 46.613319],\n          [-112.010941, 46.613077],\n          [-112.010877, 46.612674],\n          [-112.010838, 46.612474],\n          [-112.010746, 46.61207],\n          [-112.01064, 46.611666],\n          [-112.010587, 46.611464],\n          [-112.010508, 46.611263],\n          [-112.010314, 46.610728],\n          [-112.010256, 46.610545],\n          [-112.010198, 46.610369],\n          [-112.009915, 46.609824],\n          [-112.009739, 46.609444],\n          [-112.009564, 46.609128],\n          [-112.009295, 46.608718],\n          [-112.006524, 46.603944],\n          [-112.003906, 46.599455],\n          [-112.002681, 46.597363],\n          [-112.001205, 46.594784],\n          [-112, 46.592799],\n          [-111.999632, 46.592286],\n          [-111.999301, 46.591861],\n          [-111.998522, 46.590983],\n          [-111.99828, 46.590699],\n          [-111.997972, 46.590398],\n          [-111.996867, 46.589396],\n          [-111.996488, 46.589096],\n          [-111.995735, 46.58854],\n          [-111.988743, 46.583855],\n          [-111.983795, 46.580551],\n          [-111.98049, 46.578347],\n          [-111.978312, 46.576892],\n          [-111.976196, 46.575478],\n          [-111.970612, 46.571744],\n          [-111.969019, 46.570651],\n          [-111.966637, 46.569071],\n          [-111.957631, 46.563066],\n          [-111.956867, 46.562459],\n          [-111.956078, 46.56178],\n          [-111.955528, 46.561278],\n          [-111.95503, 46.560765],\n          [-111.954464, 46.560133],\n          [-111.953992, 46.559508],\n          [-111.953623, 46.558994],\n          [-111.953365, 46.558587],\n          [-111.953022, 46.558003],\n          [-111.95261, 46.557224],\n          [-111.951443, 46.55468],\n          [-111.946695, 46.544203],\n          [-111.946304, 46.54331],\n          [-111.945744, 46.542172],\n          [-111.945185, 46.540831],\n          [-111.944611, 46.539567],\n          [-111.943999, 46.538252],\n          [-111.943392, 46.536869],\n          [-111.941186, 46.532081],\n          [-111.940903, 46.53142],\n          [-111.940559, 46.530629],\n          [-111.940379, 46.530109],\n          [-111.940293, 46.529684],\n          [-111.940268, 46.529241],\n          [-111.940319, 46.528857],\n          [-111.940422, 46.528432],\n          [-111.940568, 46.528025],\n          [-111.94074, 46.527676],\n          [-111.940971, 46.527322],\n          [-111.941246, 46.527003],\n          [-111.941667, 46.526619],\n          [-111.943134, 46.525497],\n          [-111.943589, 46.525125],\n          [-111.94401, 46.524718],\n          [-111.944344, 46.524346],\n          [-111.944662, 46.523974],\n          [-111.944902, 46.523625],\n          [-111.945151, 46.52323],\n          [-111.9454, 46.522775],\n          [-111.945606, 46.522326],\n          [-111.945744, 46.521966],\n          [-111.945855, 46.521511],\n          [-111.947984, 46.511742],\n          [-111.948095, 46.51137],\n          [-111.948361, 46.510661],\n          [-111.949408, 46.508074],\n          [-111.952344, 46.500837],\n          [-111.952541, 46.500393],\n          [-111.952825, 46.499944],\n          [-111.953168, 46.49946],\n          [-111.953494, 46.499105],\n          [-111.953932, 46.498775],\n          [-111.954764, 46.49819],\n          [-111.958575, 46.495909],\n          [-111.959245, 46.495501],\n          [-111.960052, 46.495017],\n          [-111.961021, 46.494414],\n          [-111.961871, 46.493912],\n          [-111.962729, 46.493415],\n          [-111.963579, 46.492825],\n          [-111.964025, 46.4925],\n          [-111.964661, 46.492015],\n          [-111.965124, 46.491625],\n          [-111.965656, 46.491123],\n          [-111.966369, 46.49042],\n          [-111.96709, 46.489651],\n          [-111.976325, 46.479522],\n          [-111.976891, 46.478848],\n          [-111.977312, 46.47834],\n          [-111.977733, 46.477808],\n          [-111.977973, 46.477465],\n          [-111.978127, 46.477211],\n          [-111.978282, 46.476974],\n          [-111.97884, 46.475928],\n          [-111.979217, 46.475042],\n          [-111.980033, 46.473044],\n          [-111.980271, 46.472374],\n          [-111.980435, 46.471976],\n          [-111.980677, 46.471349],\n          [-111.980952, 46.470648],\n          [-111.981239, 46.4699],\n          [-111.981493, 46.46921],\n          [-111.981736, 46.468592],\n          [-111.981874, 46.468256],\n          [-111.982316, 46.467018],\n          [-111.982732, 46.465939],\n          [-111.982851, 46.465572],\n          [-111.983251, 46.464294],\n          [-111.983315, 46.464025],\n          [-111.983475, 46.463313],\n          [-111.983818, 46.462054],\n          [-111.98424, 46.460487],\n          [-111.985346, 46.456259],\n          [-111.985844, 46.45432],\n          [-111.986814, 46.450701],\n          [-111.986994, 46.449938],\n          [-111.987251, 46.449004],\n          [-111.987543, 46.4483],\n          [-111.987809, 46.447709],\n          [-111.988255, 46.446833],\n          [-111.990024, 46.443882],\n          [-111.990719, 46.44254],\n          [-111.99283, 46.438169],\n          [-111.995886, 46.431816],\n          [-111.996143, 46.431165],\n          [-111.996341, 46.430644],\n          [-111.996598, 46.42984],\n          [-111.996753, 46.429213],\n          [-111.99689, 46.428609],\n          [-111.997405, 46.425385],\n          [-111.997642, 46.424314],\n          [-111.997932, 46.423545],\n          [-111.998107, 46.423114],\n          [-111.99835, 46.422586],\n          [-111.998575, 46.422164],\n          [-111.998884, 46.421653],\n          [-111.999228, 46.421145],\n          [-111.999447, 46.420848],\n          [-111.999923, 46.420267],\n          [-112.000156, 46.42],\n          [-112.000433, 46.41971],\n          [-112.00089, 46.419258],\n          [-112.001482, 46.418746],\n          [-112.002113, 46.418226],\n          [-112.00272, 46.417745],\n          [-112.002961, 46.417554],\n          [-112.003548, 46.417078],\n          [-112.004211, 46.41654],\n          [-112.004746, 46.416099],\n          [-112.005461, 46.41553],\n          [-112.005985, 46.415112],\n          [-112.006394, 46.414775],\n          [-112.006854, 46.414405],\n          [-112.007245, 46.4141],\n          [-112.00765, 46.413758],\n          [-112.00797, 46.413501],\n          [-112.008169, 46.413338],\n          [-112.008593, 46.412997],\n          [-112.009014, 46.412645],\n          [-112.009385, 46.412341],\n          [-112.009697, 46.412025],\n          [-112.010255, 46.411528],\n          [-112.010946, 46.410853],\n          [-112.011431, 46.410352],\n          [-112.011895, 46.409867],\n          [-112.012165, 46.409569],\n          [-112.012675, 46.408992],\n          [-112.013067, 46.408517],\n          [-112.013404, 46.408107],\n          [-112.013911, 46.407447],\n          [-112.014218, 46.407046],\n          [-112.014492, 46.406653],\n          [-112.015033, 46.405845],\n          [-112.01524, 46.405542],\n          [-112.015368, 46.405329],\n          [-112.015741, 46.40471],\n          [-112.015972, 46.404308],\n          [-112.016318, 46.403688],\n          [-112.016624, 46.403056],\n          [-112.01703, 46.402204],\n          [-112.017522, 46.401159],\n          [-112.017917, 46.400311],\n          [-112.019197, 46.397512],\n          [-112.019961, 46.395938],\n          [-112.020503, 46.394858],\n          [-112.020846, 46.394173],\n          [-112.021172, 46.393579],\n          [-112.021321, 46.393351],\n          [-112.021496, 46.393063],\n          [-112.021714, 46.392713],\n          [-112.021925, 46.392391],\n          [-112.022307, 46.391799],\n          [-112.022576, 46.391431],\n          [-112.02269, 46.391255],\n          [-112.022776, 46.391138],\n          [-112.023072, 46.390745],\n          [-112.023396, 46.390333],\n          [-112.023636, 46.390016],\n          [-112.02407, 46.389472],\n          [-112.02447, 46.388962],\n          [-112.025293, 46.387893],\n          [-112.025518, 46.387587],\n          [-112.025835, 46.387153],\n          [-112.02604, 46.386874],\n          [-112.026296, 46.386489],\n          [-112.026502, 46.386192],\n          [-112.026698, 46.385898],\n          [-112.027204, 46.385069],\n          [-112.027659, 46.384252],\n          [-112.027743, 46.384088],\n          [-112.0278, 46.383963],\n          [-112.02782, 46.383925],\n          [-112.027998, 46.383561],\n          [-112.028106, 46.383379],\n          [-112.028359, 46.382926],\n          [-112.028737, 46.382022],\n          [-112.029617, 46.379591],\n          [-112.030115, 46.378271],\n          [-112.030424, 46.377365],\n          [-112.030767, 46.376572],\n          [-112.031059, 46.375944],\n          [-112.033059, 46.372077],\n          [-112.033626, 46.37091],\n          [-112.033917, 46.370342],\n          [-112.034252, 46.369714],\n          [-112.034492, 46.369293],\n          [-112.03481, 46.368766],\n          [-112.035136, 46.368298],\n          [-112.035445, 46.367848],\n          [-112.03584, 46.367386],\n          [-112.036295, 46.366877],\n          [-112.036879, 46.366249],\n          [-112.043015, 46.359532],\n          [-112.043436, 46.359053],\n          [-112.043754, 46.358638],\n          [-112.044011, 46.358283],\n          [-112.044234, 46.357927],\n          [-112.044475, 46.357501],\n          [-112.044698, 46.357062],\n          [-112.044852, 46.356719],\n          [-112.044972, 46.356357],\n          [-112.045093, 46.355972],\n          [-112.045204, 46.355534],\n          [-112.045281, 46.355173],\n          [-112.04535, 46.354693],\n          [-112.045384, 46.354284],\n          [-112.045376, 46.353828],\n          [-112.045359, 46.353206],\n          [-112.045058, 46.350658],\n          [-112.045032, 46.350072],\n          [-112.045075, 46.349545],\n          [-112.045178, 46.349154],\n          [-112.045317, 46.348787],\n          [-112.045481, 46.348449],\n          [-112.045687, 46.348135],\n          [-112.04591, 46.347851],\n          [-112.046202, 46.347519],\n          [-112.048562, 46.345392],\n          [-112.048862, 46.34509],\n          [-112.049146, 46.34477],\n          [-112.04936, 46.344467],\n          [-112.04954, 46.344153],\n          [-112.049738, 46.343721],\n          [-112.049849, 46.343241],\n          [-112.049884, 46.343028],\n          [-112.049892, 46.342755],\n          [-112.049884, 46.3424],\n          [-112.049806, 46.341931],\n          [-112.049396, 46.34035],\n          [-112.049218, 46.339673],\n          [-112.049159, 46.33933],\n          [-112.049143, 46.339002],\n          [-112.049168, 46.338597],\n          [-112.049229, 46.338284],\n          [-112.049292, 46.338051],\n          [-112.049341, 46.337839],\n          [-112.049439, 46.337616],\n          [-112.049559, 46.337404],\n          [-112.0497, 46.337162],\n          [-112.049936, 46.33687],\n          [-112.05015, 46.336595],\n          [-112.054836, 46.331763],\n          [-112.055497, 46.33117],\n          [-112.055875, 46.33085],\n          [-112.056372, 46.33053],\n          [-112.05687, 46.330263],\n          [-112.057445, 46.330044],\n          [-112.058132, 46.329789],\n          [-112.060261, 46.329273],\n          [-112.060879, 46.329137],\n          [-112.061445, 46.328959],\n          [-112.061994, 46.328752],\n          [-112.062561, 46.32845],\n          [-112.06317, 46.3281],\n          [-112.063625, 46.327786],\n          [-112.064054, 46.327371],\n          [-112.064466, 46.326891],\n          [-112.06523, 46.325741],\n          [-112.065677, 46.325125],\n          [-112.066028, 46.324674],\n          [-112.06638, 46.324318],\n          [-112.066904, 46.323868],\n          [-112.067505, 46.323501],\n          [-112.06826, 46.323109],\n          [-112.069642, 46.322445],\n          [-112.070509, 46.322007],\n          [-112.071195, 46.321663],\n          [-112.071728, 46.321378],\n          [-112.07238, 46.320958],\n          [-112.073067, 46.320519],\n          [-112.073762, 46.320045],\n          [-112.074277, 46.319582],\n          [-112.074732, 46.319138],\n          [-112.075169, 46.318705],\n          [-112.075599, 46.318189],\n          [-112.076053, 46.317626],\n          [-112.076371, 46.317182],\n          [-112.076732, 46.316589],\n          [-112.077058, 46.315949],\n          [-112.077616, 46.31452],\n          [-112.077985, 46.313459],\n          [-112.078268, 46.312795],\n          [-112.078491, 46.31232],\n          [-112.0788, 46.311751],\n          [-112.079212, 46.31117],\n          [-112.079718, 46.310435],\n          [-112.0808, 46.308627],\n          [-112.081126, 46.30801],\n          [-112.081375, 46.307316],\n          [-112.081512, 46.306724],\n          [-112.081607, 46.306131],\n          [-112.081735, 46.304998],\n          [-112.081856, 46.304358],\n          [-112.082079, 46.303688],\n          [-112.082319, 46.303172],\n          [-112.082594, 46.302692],\n          [-112.082946, 46.302205],\n          [-112.083306, 46.301814],\n          [-112.083804, 46.301334],\n          [-112.08447, 46.300831],\n          [-112.085263, 46.300355],\n          [-112.086027, 46.299964],\n          [-112.089752, 46.298446],\n          [-112.090979, 46.297859],\n          [-112.091958, 46.297337],\n          [-112.092799, 46.296756],\n          [-112.093486, 46.296287],\n          [-112.094104, 46.295694],\n          [-112.09473, 46.295036],\n          [-112.095159, 46.294538],\n          [-112.09558, 46.293992],\n          [-112.09594, 46.293381],\n          [-112.096445, 46.292397],\n          [-112.096685, 46.291614],\n          [-112.09702, 46.290422],\n          [-112.097449, 46.288406],\n          [-112.097724, 46.287409],\n          [-112.098136, 46.286312],\n          [-112.099116, 46.284397],\n          [-112.099274, 46.284063],\n          [-112.10053, 46.281349],\n          [-112.101118, 46.280084],\n          [-112.102891, 46.276318],\n          [-112.104027, 46.273935],\n          [-112.104859, 46.272141],\n          [-112.105342, 46.271125],\n          [-112.106274, 46.269146],\n          [-112.107087, 46.267404],\n          [-112.111234, 46.258546],\n          [-112.112659, 46.255466],\n          [-112.114521, 46.251525],\n          [-112.114976, 46.250676],\n          [-112.115508, 46.249899],\n          [-112.115937, 46.249329],\n          [-112.116633, 46.248581],\n          [-112.117748, 46.247554],\n          [-112.11925, 46.246504],\n          [-112.12022, 46.245934],\n          [-112.120967, 46.245566],\n          [-112.121954, 46.245133],\n          [-112.124992, 46.244052],\n          [-112.13288, 46.241298],\n          [-112.133387, 46.24112],\n          [-112.138622, 46.239291],\n          [-112.145034, 46.237065],\n          [-112.146141, 46.236745],\n          [-112.147008, 46.236519],\n          [-112.147806, 46.236394],\n          [-112.148459, 46.236305],\n          [-112.149265, 46.236246],\n          [-112.150089, 46.236222],\n          [-112.151042, 46.236246],\n          [-112.151883, 46.236317],\n          [-112.152699, 46.236436],\n          [-112.153471, 46.236584],\n          [-112.154474, 46.236837],\n          [-112.15899, 46.238152],\n          [-112.160595, 46.238543],\n          [-112.162483, 46.238947],\n          [-112.163367, 46.23922],\n          [-112.164054, 46.239529],\n          [-112.164698, 46.239897],\n          [-112.165273, 46.24033],\n          [-112.166844, 46.241642],\n          [-112.167307, 46.241963],\n          [-112.1685, 46.242669],\n          [-112.169144, 46.243085],\n          [-112.169659, 46.24356],\n          [-112.170912, 46.244966],\n          [-112.171367, 46.245364],\n          [-112.172131, 46.245898],\n          [-112.173204, 46.246522],\n          [-112.174276, 46.247169],\n          [-112.174817, 46.24762],\n          [-112.175298, 46.24816],\n          [-112.175555, 46.248587],\n          [-112.17577, 46.248973],\n          [-112.175924, 46.249424],\n          [-112.176336, 46.250552],\n          [-112.176517, 46.25092],\n          [-112.17674, 46.251276],\n          [-112.176997, 46.251626],\n          [-112.177418, 46.252083],\n          [-112.177787, 46.252344],\n          [-112.178165, 46.252617],\n          [-112.180775, 46.254129],\n          [-112.181007, 46.254269],\n          [-112.183097, 46.255454],\n          [-112.183493, 46.255702],\n          [-112.184164, 46.256171],\n          [-112.184905, 46.256737],\n          [-112.185365, 46.257141],\n          [-112.185885, 46.257562],\n          [-112.186185, 46.2578],\n          [-112.186531, 46.258043],\n          [-112.186972, 46.258275],\n          [-112.187322, 46.258422],\n          [-112.187774, 46.258598],\n          [-112.188155, 46.258726],\n          [-112.188842, 46.25893],\n          [-112.190061, 46.259233],\n          [-112.194417, 46.260296],\n          [-112.194914, 46.260425],\n          [-112.197467, 46.261049],\n          [-112.198131, 46.261215],\n          [-112.198816, 46.261348],\n          [-112.200563, 46.261639],\n          [-112.2012, 46.261735],\n          [-112.201697, 46.261796],\n          [-112.202216, 46.261831],\n          [-112.202661, 46.261847],\n          [-112.203293, 46.261844],\n          [-112.203843, 46.26181],\n          [-112.204643, 46.261713],\n          [-112.205502, 46.261541],\n          [-112.206283, 46.261328],\n          [-112.207158, 46.260978],\n          [-112.20773, 46.260725],\n          [-112.208199, 46.260464],\n          [-112.209872, 46.259361],\n          [-112.210845, 46.258723],\n          [-112.211437, 46.258407],\n          [-112.21171, 46.258294],\n          [-112.211974, 46.258207],\n          [-112.212216, 46.258142],\n          [-112.212463, 46.258092],\n          [-112.212751, 46.258048],\n          [-112.213051, 46.258024],\n          [-112.213334, 46.258019],\n          [-112.213692, 46.258035],\n          [-112.213988, 46.258065],\n          [-112.214247, 46.258108],\n          [-112.214549, 46.258186],\n          [-112.21472, 46.258241],\n          [-112.214928, 46.258313],\n          [-112.21526, 46.258456],\n          [-112.215539, 46.258605],\n          [-112.215859, 46.258826],\n          [-112.216123, 46.259059],\n          [-112.216344, 46.259307],\n          [-112.216538, 46.259564],\n          [-112.217304, 46.260578],\n          [-112.217586, 46.260888],\n          [-112.217887, 46.26118],\n          [-112.218436, 46.261654],\n          [-112.219097, 46.262058],\n          [-112.219818, 46.262508],\n          [-112.220179, 46.262823],\n          [-112.220462, 46.263203],\n          [-112.220625, 46.263654],\n          [-112.220625, 46.264105],\n          [-112.220513, 46.26455],\n          [-112.220273, 46.264918],\n          [-112.21993, 46.265238],\n          [-112.219466, 46.265558],\n          [-112.218514, 46.266039],\n          [-112.218288, 46.266167],\n          [-112.218079, 46.266291],\n          [-112.217885, 46.266411],\n          [-112.217737, 46.266539],\n          [-112.217605, 46.266696],\n          [-112.217501, 46.266818],\n          [-112.217396, 46.266989],\n          [-112.21734, 46.267123],\n          [-112.217303, 46.267314],\n          [-112.217283, 46.267445],\n          [-112.217325, 46.267714],\n          [-112.217476, 46.26824],\n          [-112.217544, 46.268438],\n          [-112.217592, 46.268538],\n          [-112.217628, 46.268615],\n          [-112.217724, 46.268751],\n          [-112.217818, 46.268858],\n          [-112.217936, 46.268959],\n          [-112.21813, 46.269104],\n          [-112.218353, 46.26922],\n          [-112.218727, 46.26937],\n          [-112.219166, 46.269489],\n          [-112.219721, 46.269609],\n          [-112.220202, 46.269698],\n          [-112.220646, 46.269797],\n          [-112.220996, 46.2699],\n          [-112.22144, 46.27005],\n          [-112.222711, 46.270631],\n          [-112.223277, 46.270851],\n          [-112.22399, 46.271017],\n          [-112.224668, 46.271076],\n          [-112.225371, 46.270993],\n          [-112.227174, 46.270608],\n          [-112.227989, 46.270507],\n          [-112.22883, 46.270519],\n          [-112.229611, 46.270726],\n          [-112.232341, 46.271693],\n          [-112.232993, 46.27186],\n          [-112.233723, 46.271966],\n          [-112.234744, 46.271978],\n          [-112.239606, 46.271805],\n          [-112.242182, 46.271693],\n          [-112.246347, 46.271502],\n          [-112.246967, 46.271459],\n          [-112.247491, 46.271415],\n          [-112.247911, 46.271379],\n          [-112.248545, 46.271312],\n          [-112.249143, 46.271217],\n          [-112.250763, 46.270938],\n          [-112.251919, 46.270715],\n          [-112.254271, 46.270264],\n          [-112.255138, 46.270086],\n          [-112.255979, 46.269973],\n          [-112.256923, 46.269854],\n          [-112.257798, 46.269753],\n          [-112.258871, 46.269706],\n          [-112.259953, 46.269694],\n          [-112.260408, 46.269688],\n          [-112.260811, 46.269688],\n          [-112.265927, 46.269838],\n          [-112.266364, 46.269845],\n          [-112.268516, 46.269903],\n          [-112.26928, 46.269923],\n          [-112.269822, 46.269932],\n          [-112.270297, 46.269936],\n          [-112.270632, 46.269932],\n          [-112.271986, 46.269899],\n          [-112.272496, 46.269882],\n          [-112.272871, 46.269875],\n          [-112.273201, 46.26988],\n          [-112.273496, 46.269893],\n          [-112.273848, 46.269921],\n          [-112.274451, 46.269986],\n          [-112.275304, 46.270084],\n          [-112.275736, 46.270129],\n          [-112.276214, 46.270171],\n          [-112.276581, 46.270192],\n          [-112.276954, 46.270201],\n          [-112.277383, 46.270195],\n          [-112.277783, 46.270179],\n          [-112.278217, 46.270151],\n          [-112.278636, 46.270112],\n          [-112.27903, 46.270058],\n          [-112.279521, 46.269977],\n          [-112.280084, 46.269869],\n          [-112.280575, 46.269771],\n          [-112.281036, 46.269673],\n          [-112.281492, 46.269558],\n          [-112.281919, 46.269443],\n          [-112.282407, 46.269304],\n          [-112.28289, 46.269153],\n          [-112.283292, 46.269013],\n          [-112.283616, 46.26889],\n          [-112.283914, 46.268764],\n          [-112.284169, 46.268638],\n          [-112.284394, 46.268516],\n          [-112.284601, 46.268394],\n          [-112.284775, 46.268275],\n          [-112.284955, 46.268131],\n          [-112.285087, 46.268013],\n          [-112.285191, 46.267897],\n          [-112.285277, 46.267793],\n          [-112.285357, 46.267683],\n          [-112.28543, 46.267542],\n          [-112.285505, 46.267379],\n          [-112.285561, 46.267208],\n          [-112.285596, 46.267049],\n          [-112.28561, 46.266897],\n          [-112.285612, 46.266763],\n          [-112.285599, 46.266613],\n          [-112.285569, 46.266448],\n          [-112.285505, 46.266261],\n          [-112.28543, 46.266096],\n          [-112.285194, 46.265664],\n          [-112.285025, 46.265406],\n          [-112.284866, 46.265152],\n          [-112.284775, 46.264974],\n          [-112.284703, 46.264813],\n          [-112.284646, 46.264655],\n          [-112.284614, 46.264507],\n          [-112.284598, 46.264379],\n          [-112.284598, 46.26421],\n          [-112.284617, 46.264062],\n          [-112.284665, 46.263899],\n          [-112.284727, 46.263728],\n          [-112.284759, 46.263669],\n          [-112.284821, 46.263548],\n          [-112.284909, 46.263418],\n          [-112.284995, 46.263313],\n          [-112.285121, 46.263177],\n          [-112.285277, 46.263038],\n          [-112.285408, 46.262932],\n          [-112.285591, 46.262814],\n          [-112.285765, 46.262716],\n          [-112.285998, 46.262614],\n          [-112.286237, 46.262523],\n          [-112.286454, 46.262454],\n          [-112.286722, 46.262397],\n          [-112.286953, 46.262358],\n          [-112.287205, 46.262334],\n          [-112.287431, 46.262324],\n          [-112.287599, 46.262324],\n          [-112.287755, 46.262332],\n          [-112.287908, 46.262343],\n          [-112.28809, 46.262371],\n          [-112.288289, 46.262408],\n          [-112.288533, 46.262469],\n          [-112.28878, 46.262545],\n          [-112.289056, 46.262641],\n          [-112.28941, 46.262779],\n          [-112.292288, 46.263915],\n          [-112.295423, 46.265141],\n          [-112.295772, 46.265276],\n          [-112.296799, 46.265681],\n          [-112.297288, 46.265857],\n          [-112.29766, 46.26597],\n          [-112.297998, 46.266064],\n          [-112.298326, 46.266135],\n          [-112.298693, 46.266202],\n          [-112.29902, 46.266252],\n          [-112.299407, 46.266294],\n          [-112.299973, 46.26635],\n          [-112.301962, 46.266518],\n          [-112.303677, 46.266665],\n          [-112.30416, 46.266715],\n          [-112.304799, 46.266799],\n          [-112.305829, 46.266965],\n          [-112.307302, 46.26725],\n          [-112.307798, 46.267339],\n          [-112.308222, 46.267413],\n          [-112.308627, 46.267476],\n          [-112.308997, 46.267518],\n          [-112.309343, 46.267554],\n          [-112.309617, 46.267578],\n          [-112.309941, 46.267591],\n          [-112.310258, 46.267602],\n          [-112.310641, 46.267611],\n          [-112.310985, 46.267613],\n          [-112.311296, 46.267607],\n          [-112.311658, 46.267591],\n          [-112.312055, 46.267565],\n          [-112.312425, 46.267535],\n          [-112.312795, 46.267492],\n          [-112.313219, 46.267435],\n          [-112.313683, 46.267359],\n          [-112.31408, 46.267281],\n          [-112.314484, 46.267191],\n          [-112.314867, 46.26709],\n          [-112.315256, 46.26698],\n          [-112.315717, 46.266837],\n          [-112.316613, 46.266561],\n          [-112.317018, 46.266437],\n          [-112.317471, 46.266313],\n          [-112.317997, 46.266179],\n          [-112.318925, 46.265949],\n          [-112.320151, 46.265632],\n          [-112.321393, 46.265313],\n          [-112.325427, 46.26428],\n          [-112.326138, 46.264095],\n          [-112.326859, 46.263917],\n          [-112.327936, 46.263635],\n          [-112.330428, 46.263002],\n          [-112.333211, 46.262287],\n          [-112.334007, 46.262079],\n          [-112.335292, 46.261753],\n          [-112.335686, 46.261652],\n          [-112.336028, 46.261559],\n          [-112.33637, 46.261454],\n          [-112.33667, 46.261355],\n          [-112.336988, 46.261243],\n          [-112.337325, 46.261115],\n          [-112.33768, 46.260971],\n          [-112.338038, 46.260813],\n          [-112.338363, 46.260662],\n          [-112.338625, 46.26053],\n          [-112.338933, 46.260366],\n          [-112.340256, 46.259429],\n          [-112.341003, 46.258829],\n          [-112.341337, 46.25845],\n          [-112.341646, 46.258088],\n          [-112.342041, 46.257506],\n          [-112.342264, 46.257085],\n          [-112.342513, 46.256616],\n          [-112.342736, 46.256052],\n          [-112.343048, 46.25519],\n          [-112.343088, 46.254628],\n          [-112.343114, 46.25404],\n          [-112.342997, 46.253333],\n          [-112.342814, 46.252527],\n          [-112.342556, 46.25188],\n          [-112.341586, 46.249939],\n          [-112.341209, 46.248971],\n          [-112.340942, 46.248152],\n          [-112.340797, 46.247393],\n          [-112.340711, 46.246752],\n          [-112.340698, 46.245956],\n          [-112.340797, 46.24509],\n          [-112.340934, 46.2443],\n          [-112.341088, 46.243617],\n          [-112.341363, 46.242745],\n          [-112.343732, 46.236132],\n          [-112.343955, 46.235443],\n          [-112.344213, 46.23479],\n          [-112.34459, 46.234178],\n          [-112.345088, 46.233513],\n          [-112.346384, 46.231827],\n          [-112.346848, 46.231067],\n          [-112.347062, 46.230402],\n          [-112.347208, 46.229666],\n          [-112.34738, 46.228247],\n          [-112.347457, 46.227659],\n          [-112.347706, 46.22662],\n          [-112.348072, 46.225486],\n          [-112.348787, 46.223592],\n          [-112.349165, 46.22241],\n          [-112.349268, 46.221798],\n          [-112.349251, 46.221163],\n          [-112.348908, 46.218621],\n          [-112.348822, 46.218081],\n          [-112.348822, 46.217392],\n          [-112.348959, 46.216762],\n          [-112.34944, 46.215301],\n          [-112.349521, 46.214586],\n          [-112.349491, 46.214013],\n          [-112.349328, 46.213591],\n          [-112.349028, 46.213021],\n          [-112.348633, 46.212492],\n          [-112.348169, 46.211999],\n          [-112.34762, 46.211619],\n          [-112.346856, 46.211156],\n          [-112.345869, 46.21058],\n          [-112.3452, 46.210051],\n          [-112.344728, 46.209576],\n          [-112.343234, 46.207925],\n          [-112.342659, 46.207307],\n          [-112.341921, 46.206677],\n          [-112.340814, 46.205816],\n          [-112.34041, 46.205465],\n          [-112.340067, 46.205085],\n          [-112.339802, 46.204693],\n          [-112.339704, 46.204467],\n          [-112.339636, 46.204269],\n          [-112.339591, 46.204027],\n          [-112.339612, 46.20382],\n          [-112.339732, 46.203256],\n          [-112.340033, 46.20262],\n          [-112.340582, 46.201913],\n          [-112.341621, 46.200885],\n          [-112.342062, 46.200298],\n          [-112.342242, 46.199944],\n          [-112.342396, 46.199584],\n          [-112.342597, 46.199091],\n          [-112.342775, 46.198631],\n          [-112.343062, 46.198034],\n          [-112.343303, 46.197541],\n          [-112.343792, 46.196904],\n          [-112.344693, 46.196127],\n          [-112.345387, 46.19542],\n          [-112.345729, 46.194938],\n          [-112.345917, 46.194643],\n          [-112.346069, 46.194349],\n          [-112.346166, 46.194045],\n          [-112.346238, 46.193697],\n          [-112.34623, 46.193103],\n          [-112.345941, 46.190673],\n          [-112.345878, 46.189902],\n          [-112.345728, 46.189213],\n          [-112.345709, 46.188344],\n          [-112.345571, 46.187533],\n          [-112.345558, 46.186912],\n          [-112.345564, 46.185992],\n          [-112.345749, 46.183453],\n          [-112.346234, 46.177623],\n          [-112.346347, 46.176821],\n          [-112.346473, 46.176275],\n          [-112.34671, 46.175728],\n          [-112.347062, 46.17511],\n          [-112.347483, 46.174486],\n          [-112.34822, 46.173702],\n          [-112.349208, 46.17291],\n          [-112.3521, 46.171121],\n          [-112.352701, 46.170843],\n          [-112.353354, 46.170627],\n          [-112.354238, 46.170443],\n          [-112.355396, 46.170378],\n          [-112.356246, 46.170461],\n          [-112.358186, 46.170764],\n          [-112.359293, 46.170788],\n          [-112.360246, 46.170669],\n          [-112.361216, 46.170425],\n          [-112.362177, 46.170093],\n          [-112.362941, 46.16973],\n          [-112.363559, 46.169296],\n          [-112.364125, 46.168743],\n          [-112.364529, 46.168119],\n          [-112.365267, 46.167103],\n          [-112.365816, 46.166663],\n          [-112.3664, 46.166336],\n          [-112.367129, 46.166098],\n          [-112.367868, 46.165967],\n          [-112.368692, 46.165944],\n          [-112.371773, 46.166039],\n          [-112.372811, 46.166015],\n          [-112.37367, 46.165902],\n          [-112.374588, 46.165706],\n          [-112.375592, 46.165379],\n          [-112.376571, 46.164951],\n          [-112.377318, 46.164529],\n          [-112.378076, 46.163952],\n          [-112.378262, 46.163762],\n          [-112.378614, 46.163364],\n          [-112.378914, 46.162965],\n          [-112.379469, 46.162169],\n          [-112.382055, 46.158245],\n          [-112.384021, 46.155308],\n          [-112.385566, 46.152959],\n          [-112.387334, 46.150272],\n          [-112.388458, 46.14862],\n          [-112.389451, 46.147108],\n          [-112.391789, 46.143594],\n          [-112.398669, 46.133222],\n          [-112.400972, 46.129712],\n          [-112.4066, 46.121302],\n          [-112.407393, 46.120004],\n          [-112.408182, 46.118582],\n          [-112.408541, 46.117899],\n          [-112.409937, 46.114817],\n          [-112.411055, 46.112333],\n          [-112.412388, 46.109365],\n          [-112.413655, 46.106653],\n          [-112.414778, 46.10418],\n          [-112.415206, 46.103314],\n          [-112.415668, 46.102487],\n          [-112.415895, 46.102106],\n          [-112.416464, 46.101176],\n          [-112.417083, 46.100254],\n          [-112.418499, 46.098356],\n          [-112.418915, 46.09769],\n          [-112.419526, 46.096677],\n          [-112.420233, 46.095398],\n          [-112.422479, 46.091058],\n          [-112.424336, 46.087469],\n          [-112.429652, 46.0772],\n          [-112.429822, 46.076884],\n          [-112.431392, 46.07384],\n          [-112.436257, 46.064391],\n          [-112.436937, 46.063074],\n          [-112.438079, 46.061044],\n          [-112.438376, 46.060532],\n          [-112.438666, 46.060066],\n          [-112.43881, 46.05984],\n          [-112.439098, 46.05943],\n          [-112.43934, 46.059064],\n          [-112.439532, 46.058774],\n          [-112.440107, 46.058002],\n          [-112.44038, 46.05765],\n          [-112.441731, 46.056019],\n          [-112.443485, 46.053949],\n          [-112.447802, 46.048851],\n          [-112.45155, 46.044489],\n          [-112.452423, 46.043435],\n          [-112.452928, 46.042858],\n          [-112.453336, 46.042363],\n          [-112.453672, 46.041989],\n          [-112.454055, 46.041551],\n          [-112.454342, 46.04125],\n          [-112.454665, 46.040886],\n          [-112.456067, 46.039558],\n          [-112.457335, 46.038587],\n          [-112.457987, 46.038059],\n          [-112.458512, 46.037625],\n          [-112.458842, 46.037329],\n          [-112.459071, 46.03709],\n          [-112.459314, 46.036842],\n          [-112.459518, 46.03659],\n          [-112.459678, 46.03639],\n          [-112.4598, 46.036215],\n          [-112.459891, 46.036045],\n          [-112.460007, 46.03582],\n          [-112.460114, 46.03551],\n          [-112.460172, 46.035281],\n          [-112.460249, 46.034999],\n          [-112.460282, 46.034713],\n          [-112.460289, 46.034622],\n          [-112.460306, 46.034393],\n          [-112.46034, 46.034001],\n          [-112.460377, 46.033494],\n          [-112.460788, 46.024225],\n          [-112.460858, 46.022999],\n          [-112.461034, 46.021707],\n          [-112.461139, 46.019417],\n          [-112.461174, 46.018182],\n          [-112.461374, 46.013939],\n          [-112.461433, 46.012326],\n          [-112.461598, 46.009767],\n          [-112.46173, 46.007706],\n          [-112.461826, 46.006592],\n          [-112.461968, 46.00602],\n          [-112.462225, 46.00538],\n          [-112.462565, 46.004722],\n          [-112.463191, 46.004036],\n          [-112.464072, 46.003225],\n          [-112.465792, 46.001872],\n          [-112.466856, 46.001037],\n          [-112.469268, 45.999189],\n          [-112.469946, 45.998682],\n          [-112.470667, 45.998003],\n          [-112.47113, 45.997502],\n          [-112.47156, 45.996917],\n          [-112.471963, 45.99622],\n          [-112.473459, 45.993424],\n          [-112.474051, 45.992464],\n          [-112.474317, 45.992004],\n          [-112.475276, 45.990233],\n          [-112.475566, 45.989642],\n          [-112.476695, 45.987673],\n          [-112.477014, 45.987068],\n          [-112.477395, 45.986399],\n          [-112.477976, 45.985327],\n          [-112.478243, 45.984818],\n          [-112.478421, 45.98455],\n          [-112.478851, 45.983744],\n          [-112.479177, 45.983218],\n          [-112.479374, 45.982981],\n          [-112.479538, 45.982795],\n          [-112.47971, 45.982636],\n          [-112.479894, 45.982492],\n          [-112.480132, 45.982326],\n          [-112.48042, 45.982142],\n          [-112.480713, 45.981993],\n          [-112.481018, 45.981862],\n          [-112.481235, 45.981784],\n          [-112.481491, 45.981708],\n          [-112.481819, 45.981612],\n          [-112.482235, 45.981526],\n          [-112.482576, 45.981485],\n          [-112.482792, 45.981468],\n          [-112.483106, 45.981448],\n          [-112.484674, 45.981411],\n          [-112.485533, 45.981393],\n          [-112.486142, 45.981346],\n          [-112.486888, 45.981343],\n          [-112.488415, 45.981329],\n          [-112.48942, 45.981323],\n          [-112.489915, 45.981311],\n          [-112.490321, 45.981291],\n          [-112.491262, 45.981187],\n          [-112.492077, 45.981092],\n          [-112.492755, 45.980966],\n          [-112.49327, 45.980829],\n          [-112.494197, 45.980567],\n          [-112.495345, 45.9802],\n          [-112.496229, 45.979974],\n          [-112.496927, 45.979831],\n          [-112.497708, 45.979756],\n          [-112.4986, 45.979744],\n          [-112.499484, 45.979774],\n          [-112.500257, 45.979863],\n          [-112.501047, 45.980042],\n          [-112.501432, 45.980146],\n          [-112.501772, 45.980251],\n          [-112.502162, 45.980391],\n          [-112.502441, 45.980505],\n          [-112.502715, 45.980622],\n          [-112.503036, 45.980793],\n          [-112.503323, 45.980946],\n          [-112.503646, 45.981153],\n          [-112.503934, 45.981351],\n          [-112.504203, 45.981566],\n          [-112.504427, 45.981757],\n          [-112.504926, 45.982217],\n          [-112.505529, 45.982793],\n          [-112.505933, 45.983132],\n          [-112.506153, 45.983296],\n          [-112.506336, 45.983431],\n          [-112.506571, 45.983586],\n          [-112.506888, 45.983789],\n          [-112.507196, 45.983956],\n          [-112.507471, 45.984097],\n          [-112.507799, 45.984272],\n          [-112.508512, 45.98456],\n          [-112.508794, 45.984651],\n          [-112.50906, 45.984738],\n          [-112.509415, 45.984842],\n          [-112.509964, 45.984998],\n          [-112.512836, 45.985714],\n          [-112.514063, 45.986044],\n          [-112.515749, 45.986501],\n          [-112.516874, 45.986847],\n          [-112.529602, 45.991803],\n          [-112.530598, 45.992131],\n          [-112.531516, 45.992333],\n          [-112.5324, 45.992476],\n          [-112.533044, 45.992536],\n          [-112.533894, 45.992542],\n          [-112.538675, 45.992548],\n          [-112.539481, 45.992542],\n          [-112.544571, 45.992548],\n          [-112.54755, 45.9925],\n          [-112.549472, 45.992518],\n          [-112.552176, 45.992548],\n          [-112.553189, 45.992614],\n          [-112.554167, 45.992739],\n          [-112.555008, 45.992942],\n          [-112.559798, 45.994337],\n          [-112.560613, 45.994587],\n          [-112.561471, 45.994951],\n          [-112.562235, 45.995404],\n          [-112.562816, 45.995834],\n          [-112.563071, 45.996064],\n          [-112.563323, 45.996326],\n          [-112.563586, 45.996638],\n          [-112.563846, 45.996975],\n          [-112.564136, 45.997384],\n          [-112.564414, 45.997764],\n          [-112.565162, 45.998934],\n          [-112.565743, 45.999683],\n          [-112.566655, 46.000955],\n          [-112.567437, 46.001903],\n          [-112.56802, 46.002517],\n          [-112.568741, 46.003096],\n          [-112.569419, 46.003525],\n          [-112.570063, 46.003859],\n          [-112.570964, 46.004318],\n          [-112.571822, 46.004693],\n          [-112.572895, 46.005009],\n          [-112.573848, 46.00523],\n          [-112.574775, 46.005379],\n          [-112.575728, 46.005463],\n          [-112.577187, 46.005504],\n          [-112.577788, 46.005522],\n          [-112.582056, 46.005676],\n          [-112.594885, 46.006166],\n          [-112.604584, 46.006524],\n          [-112.605451, 46.006619],\n          [-112.607283, 46.006843],\n          [-112.610896, 46.007381],\n          [-112.611152, 46.005948],\n          [-112.61121, 46.005792],\n          [-112.611238, 46.005609],\n          [-112.608284, 46.004266],\n          [-112.607739, 46.003921],\n          [-112.607191, 46.003516],\n          [-112.606953, 46.003377],\n          [-112.606693, 46.003274],\n          [-112.606342, 46.003193],\n          [-112.606239, 46.00317],\n          [-112.604638, 46.002827],\n          [-112.603223, 46.002511],\n          [-112.603052, 46.002473],\n          [-112.60203, 46.002278],\n          [-112.601516, 46.002219],\n          [-112.601276, 46.00221],\n          [-112.600883, 46.002212],\n          [-112.600496, 46.00223],\n          [-112.600404, 46.002208],\n          [-112.60036, 46.002173],\n          [-112.600327, 46.002117],\n          [-112.600314, 46.002059],\n          [-112.600333, 46.001927],\n          [-112.600381, 46.001853],\n          [-112.60049, 46.001777],\n          [-112.600599, 46.001745],\n          [-112.600713, 46.001737],\n          [-112.600862, 46.001739],\n          [-112.601544, 46.001798],\n          [-112.601657, 46.001792],\n          [-112.601804, 46.001767],\n          [-112.601918, 46.001724],\n          [-112.602008, 46.001673],\n          [-112.602239, 46.001528],\n          [-112.602389, 46.001412],\n          [-112.602658, 46.001185],\n          [-112.60307, 46.000822],\n          [-112.603218, 46.000656],\n          [-112.603405, 46.000474],\n          [-112.60366, 46.000513],\n          [-112.603842, 46.000532],\n          [-112.604078, 46.000549],\n          [-112.604254, 46.000547],\n          [-112.605018, 46.00043],\n          [-112.605491, 46.000395],\n          [-112.605766, 46.000402],\n          [-112.606076, 46.000466],\n          [-112.606209, 46.00049],\n          [-112.606364, 46.000494],\n          [-112.606548, 46.000466],\n          [-112.607005, 46.000359],\n          [-112.607412, 46.000312],\n          [-112.611416, 46.000299],\n          [-112.611653, 46.000242],\n          [-112.611812, 46.000145],\n          [-112.611932, 45.999965],\n          [-112.611906, 45.993731],\n          [-112.611956, 45.990322],\n          [-112.611963, 45.987384],\n          [-112.611945, 45.986839],\n          [-112.611983, 45.986517],\n          [-112.612211, 45.985826],\n          [-112.612974, 45.983191],\n          [-112.613351, 45.982047],\n          [-112.613508, 45.981723],\n          [-112.613655, 45.98152],\n          [-112.613973, 45.981284],\n          [-112.61573, 45.980235],\n          [-112.61642, 45.979923],\n          [-112.617405, 45.979519],\n          [-112.618068, 45.979213],\n          [-112.618669, 45.978865],\n          [-112.620246, 45.977619],\n          [-112.620586, 45.977289],\n          [-112.621106, 45.976592],\n          [-112.622154, 45.975079],\n          [-112.622235, 45.974699],\n          [-112.622281, 45.973317],\n          [-112.622078, 45.970234],\n          [-112.619831, 45.970225],\n          [-112.614288, 45.970203]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-slice/test/out/vertical.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-121.254478, 38.705824],\n          [-121.254494, 38.709767]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-121.254478, 38.705824]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-121.254478, 38.706343]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#f0f\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-121.254478, 38.705824],\n          [-121.25448, 38.706343]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-slice/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { truncate } from \"@turf/truncate\";\nimport { featureCollection, point, lineString } from \"@turf/helpers\";\nimport { lineSlice } from \"./index.js\";\nimport { Feature, FeatureCollection, LineString, Point } from \"geojson\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename) as FeatureCollection,\n  };\n});\n\ntest(\"turf-line-slice\", (t) => {\n  for (const { filename, geojson, name } of fixtures) {\n    const [linestring, start, stop] = geojson.features as [\n      Feature<LineString>,\n      Feature<Point>,\n      Feature<Point>,\n    ];\n    const sliced = truncate(lineSlice(start, stop, linestring));\n    sliced.properties![\"stroke\"] = \"#f0f\";\n    sliced.properties![\"stroke-width\"] = 6;\n    const results = featureCollection(geojson.features);\n    results.features.push(sliced);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEquals(results, loadJsonFileSync(directories.out + filename), name);\n  }\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line -- issue 2023\", (t) => {\n  const ptStart = point([3.69140625, 51.72702815704774]);\n  const ptEnd = point([0.31936718356317106, 47.93913163509963]);\n  const line = lineString([\n    [3.69140625, 51.72702815704774],\n    [-5.3173828125, 41.60722821271717],\n  ]);\n\n  const slice = lineSlice(ptStart, ptEnd, line);\n\n  t.deepEqual(\n    truncate(slice, { precision: 8 }).geometry.coordinates,\n    [\n      [3.69140625, 51.72702816],\n      [-0.03079923, 48.08596086],\n    ],\n    \"slice should be [[3.69140625, 51.72702816], [-0.03079923, 48.08596086]]\"\n  );\n  t.end();\n});\n\ntest(\"issue 2946 - lineSlice didn't introduce duplicate points\", (t) => {\n  // Test case copied from https://github.com/Turfjs/turf/issues/2946\n  // Values rounded to lower precision for realism. Same behaviour as\n  // originally reported though.\n  const startPt = point([2, 0]);\n  const endPt = point([2, 2]);\n  const line = lineString([\n    [2.999848, 0.000152],\n    [2, -1],\n    [2, 2],\n  ]);\n\n  const r1 = lineSlice(startPt, endPt, line);\n  t.equal(\n    r1.geometry.coordinates.length,\n    2,\n    \"Two points only in the linestring\"\n  );\n\n  // This part of the issue report should have already been fixed by the\n  // recent PR #2940.\n  t.doesNotThrow(() => {\n    const r2 = lineSlice(startPt, endPt, r1);\n  }, \"Does not throw when called again on first result\");\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-line-slice/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-line-slice-along/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-line-slice-along/README.md",
    "content": "# @turf/line-slice-along\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## lineSliceAlong\n\nTakes a [line][1], a specified distance along the line to a start [Point][2],\nand a specified  distance along the line to a stop point\nand returns a subsection of the line in-between those points.\n\nThis can be useful for extracting only the part of a route between two distances.\n\n### Parameters\n\n*   `line` **([Feature][3]<[LineString][1]> | [LineString][1])** input line\n*   `startDist` **[number][4]** distance along the line to starting point\n*   `stopDist` **[number][4]** distance along the line to ending point\n*   `options` **[Object][5]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** Supports all valid Turf [Units][6] (optional, default `'kilometers'`)\n\n### Examples\n\n```javascript\nvar line = turf.lineString([[7, 45], [9, 45], [14, 40], [14, 41]]);\nvar start = 12.5;\nvar stop = 25;\nvar sliced = turf.lineSliceAlong(line, start, stop, {units: 'miles'});\n\n//addToMap\nvar addToMap = [line, start, stop, sliced]\n```\n\nReturns **[Feature][3]<[LineString][1]>** sliced line\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[6]: https://turfjs.org/docs/api/types/Units\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/line-slice-along\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-line-slice-along/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport Benchmark from \"benchmark\";\nimport { lineSliceAlong } from \"./index.js\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { Feature, LineString } from \"geojson\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nvar line1: Feature<LineString> = loadJsonFileSync(\n  path.join(__dirname, \"test\", \"fixtures\", \"line1.geojson\")\n);\nvar route1: Feature<LineString> = loadJsonFileSync(\n  path.join(__dirname, \"test\", \"fixtures\", \"route1.geojson\")\n);\nvar route2: Feature<LineString> = loadJsonFileSync(\n  path.join(__dirname, \"test\", \"fixtures\", \"route2.geojson\")\n);\n\nconst options = { units: \"miles\" } as const;\n\nvar suite = new Benchmark.Suite(\"turf-line-slice-along\");\nsuite\n  .add(\"turf-line-slice-along#line1 5-15 miles\", function () {\n    lineSliceAlong(line1, 5, 15, options);\n  })\n  .add(\"turf-line-slice-along#line1 50-250 miles\", function () {\n    lineSliceAlong(line1, 50, 250, options);\n  })\n  .add(\"turf-line-slice-along#line1 250-500 miles\", function () {\n    lineSliceAlong(line1, 250, 500, options);\n  })\n  .add(\"turf-line-slice-along#route1 5-15 miles\", function () {\n    lineSliceAlong(route1, 5, 15, options);\n  })\n  .add(\"turf-line-slice-along#route1 50-250 miles\", function () {\n    lineSliceAlong(route1, 50, 250, options);\n  })\n  .add(\"turf-line-slice-along#route1 250-500 miles\", function () {\n    lineSliceAlong(route1, 250, 500, options);\n  })\n  .add(\"turf-line-slice-along#route2 5-15 miles\", function () {\n    lineSliceAlong(route2, 5, 15, options);\n  })\n  .add(\"turf-line-slice-along#route2 15-25 miles\", function () {\n    lineSliceAlong(route2, 15, 25, options);\n  })\n  .add(\"turf-line-slice-along#route2 25-35 miles\", function () {\n    lineSliceAlong(route2, 25, 35, options);\n  })\n  .on(\"cycle\", function (event: any) {\n    console.log(String(event.target));\n  })\n  .run();\n"
  },
  {
    "path": "packages/turf-line-slice-along/index.ts",
    "content": "import { bearing } from \"@turf/bearing\";\nimport { distance } from \"@turf/distance\";\nimport { destination } from \"@turf/destination\";\nimport { lineString, isObject, Units } from \"@turf/helpers\";\nimport { Feature, LineString, Point, Position } from \"geojson\";\n\n/**\n * Takes a {@link LineString|line}, a specified distance along the line to a start {@link Point},\n * and a specified  distance along the line to a stop point\n * and returns a subsection of the line in-between those points.\n *\n * This can be useful for extracting only the part of a route between two distances.\n *\n * @function\n * @param {Feature<LineString>|LineString} line input line\n * @param {number} startDist distance along the line to starting point\n * @param {number} stopDist distance along the line to ending point\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}\n * @returns {Feature<LineString>} sliced line\n * @example\n * var line = turf.lineString([[7, 45], [9, 45], [14, 40], [14, 41]]);\n * var start = 12.5;\n * var stop = 25;\n * var sliced = turf.lineSliceAlong(line, start, stop, {units: 'miles'});\n *\n * //addToMap\n * var addToMap = [line, start, stop, sliced]\n */\nfunction lineSliceAlong(\n  line: Feature<LineString> | LineString,\n  startDist: number,\n  stopDist: number,\n  options: { units?: Units } = {}\n): Feature<LineString> {\n  // Optional parameters\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  const { units = \"kilometers\" } = options;\n\n  var coords: Position[];\n  var slice: Position[] = [];\n\n  // Validation\n  if (line.type === \"Feature\") coords = line.geometry.coordinates;\n  else if (line.type === \"LineString\") coords = line.coordinates;\n  else throw new Error(\"input must be a LineString Feature or Geometry\");\n  const origCoordsLength = coords.length;\n  let travelled = 0;\n  let overshot: number, direction: number, interpolated: Feature<Point>;\n  for (let i = 0; i < coords.length; i++) {\n    if (startDist >= travelled && i === coords.length - 1) break;\n    else if (travelled > startDist && slice.length === 0) {\n      let overshot = startDist - travelled;\n      if (!overshot) {\n        slice.push(coords[i]);\n        return lineString(slice);\n      }\n      direction = bearing(coords[i], coords[i - 1]) - 180;\n      interpolated = destination(coords[i], overshot, direction, { units });\n      slice.push(interpolated.geometry.coordinates);\n    }\n\n    if (travelled >= stopDist) {\n      overshot = stopDist - travelled;\n      if (!overshot) {\n        slice.push(coords[i]);\n        return lineString(slice);\n      }\n      direction = bearing(coords[i], coords[i - 1]) - 180;\n      interpolated = destination(coords[i], overshot, direction, { units });\n      slice.push(interpolated.geometry.coordinates);\n      return lineString(slice);\n    }\n\n    if (travelled >= startDist) {\n      slice.push(coords[i]);\n    }\n\n    if (i === coords.length - 1) {\n      return lineString(slice);\n    }\n\n    travelled += distance(coords[i], coords[i + 1], { units });\n  }\n\n  if (travelled < startDist && coords.length === origCoordsLength)\n    throw new Error(\"Start position is beyond line\");\n\n  var last = coords[coords.length - 1];\n  return lineString([last, last]);\n}\n\nexport { lineSliceAlong };\nexport default lineSliceAlong;\n"
  },
  {
    "path": "packages/turf-line-slice-along/package.json",
    "content": "{\n  \"name\": \"@turf/line-slice-along\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Useful for extracting only the part of a route between two distances.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"along\",\n    \"line-slice\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/along\": \"workspace:*\",\n    \"@turf/length\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/bearing\": \"workspace:*\",\n    \"@turf/destination\": \"workspace:*\",\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-slice-along/test/fixtures/line1.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [113.99414062499999, 22.350075806124867],\n      [116.76269531249999, 23.241346102386135],\n      [117.7734375, 24.367113562651276],\n      [118.828125, 25.20494115356912],\n      [119.794921875, 26.78484736105119],\n      [120.80566406250001, 28.110748760633534],\n      [121.59667968749999, 29.49698759653577],\n      [121.59667968749999, 31.12819929911196],\n      [120.84960937499999, 32.84267363195431],\n      [119.83886718750001, 34.125447565116126],\n      [118.69628906249999, 35.31736632923788],\n      [121.4208984375, 36.80928470205937],\n      [122.82714843749999, 37.37015718405753]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-slice-along/test/fixtures/route1.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-122.41349, 37.77561],\n      [-122.41323, 37.77582],\n      [-122.41217, 37.77665],\n      [-122.41187, 37.77642],\n      [-122.41162, 37.77621],\n      [-122.41108, 37.77579],\n      [-122.41062, 37.77542],\n      [-122.41008, 37.77499],\n      [-122.40953, 37.77455],\n      [-122.40909, 37.7742],\n      [-122.40854, 37.77376],\n      [-122.40845, 37.77369],\n      [-122.40777, 37.77315],\n      [-122.40725, 37.77273],\n      [-122.40697, 37.77254],\n      [-122.40667, 37.77278],\n      [-122.40664, 37.77311],\n      [-122.40664, 37.77337],\n      [-122.40663, 37.77356],\n      [-122.40661, 37.77372],\n      [-122.40657, 37.77389],\n      [-122.40652, 37.77407],\n      [-122.40644, 37.77424],\n      [-122.40636, 37.77441],\n      [-122.40624, 37.77459],\n      [-122.40613, 37.77476],\n      [-122.40601, 37.77492],\n      [-122.40588, 37.77507],\n      [-122.40575, 37.77522],\n      [-122.40561, 37.77536],\n      [-122.40544, 37.77552],\n      [-122.40525, 37.7757],\n      [-122.40508, 37.77585],\n      [-122.40491, 37.77599],\n      [-122.40474, 37.77611],\n      [-122.40434, 37.77638],\n      [-122.40411, 37.77653],\n      [-122.40391, 37.77665],\n      [-122.40367, 37.77678],\n      [-122.40161, 37.77784],\n      [-122.40138, 37.77796],\n      [-122.40115, 37.7781],\n      [-122.40092, 37.77825],\n      [-122.40066, 37.77842],\n      [-122.40042, 37.77859],\n      [-122.40016, 37.77879],\n      [-122.39993, 37.77899],\n      [-122.39967, 37.77921],\n      [-122.39933, 37.7795],\n      [-122.3981, 37.78054],\n      [-122.39665, 37.78178],\n      [-122.39593, 37.7824],\n      [-122.39545, 37.7828],\n      [-122.39497, 37.78321],\n      [-122.39418, 37.78383],\n      [-122.39349, 37.78437],\n      [-122.3933, 37.7845],\n      [-122.39283, 37.78481],\n      [-122.39214, 37.78517],\n      [-122.3915, 37.78549],\n      [-122.39094, 37.78592],\n      [-122.39037, 37.78641],\n      [-122.36744, 37.80781],\n      [-122.36721, 37.80812],\n      [-122.36675, 37.80856],\n      [-122.36504, 37.81018],\n      [-122.36436, 37.81078],\n      [-122.36343, 37.81159],\n      [-122.36294, 37.81206],\n      [-122.36238, 37.81256],\n      [-122.36173, 37.81305],\n      [-122.36122, 37.81341],\n      [-122.36085, 37.81366],\n      [-122.36057, 37.81385],\n      [-122.36028, 37.81402],\n      [-122.35481, 37.81714],\n      [-122.35456, 37.81728],\n      [-122.3543, 37.81742],\n      [-122.35405, 37.81755],\n      [-122.35379, 37.81767],\n      [-122.35354, 37.81778],\n      [-122.3533, 37.81788],\n      [-122.35304, 37.81799],\n      [-122.35276, 37.8181],\n      [-122.35251, 37.81819],\n      [-122.35226, 37.81828],\n      [-122.35199, 37.81836],\n      [-122.35169, 37.81844],\n      [-122.35138, 37.81853],\n      [-122.35106, 37.81861],\n      [-122.35071, 37.81868],\n      [-122.35036, 37.81874],\n      [-122.35002, 37.8188],\n      [-122.33359, 37.82117],\n      [-122.33288, 37.82127],\n      [-122.3322, 37.82136],\n      [-122.3314, 37.82145],\n      [-122.33075, 37.82153],\n      [-122.33005, 37.8216],\n      [-122.32773, 37.82183],\n      [-122.32492, 37.82206],\n      [-122.32351, 37.82218],\n      [-122.32304, 37.82223],\n      [-122.32222, 37.82234],\n      [-122.32056, 37.82263],\n      [-122.31861, 37.82297],\n      [-122.31593, 37.82344],\n      [-122.31434, 37.82372],\n      [-122.31366, 37.82384],\n      [-122.312, 37.82412],\n      [-122.31138, 37.82423],\n      [-122.31065, 37.82434],\n      [-122.30992, 37.82443],\n      [-122.3079, 37.82464],\n      [-122.30728, 37.8247],\n      [-122.30665, 37.82478],\n      [-122.30607, 37.82488],\n      [-122.30564, 37.82496],\n      [-122.3031, 37.8254],\n      [-122.30261, 37.82548],\n      [-122.30145, 37.82569],\n      [-122.30062, 37.82585],\n      [-122.29972, 37.82604],\n      [-122.29775, 37.82646],\n      [-122.29711, 37.82663],\n      [-122.29667, 37.82676],\n      [-122.29624, 37.82691],\n      [-122.29568, 37.82714],\n      [-122.29525, 37.82731],\n      [-122.29494, 37.82739],\n      [-122.29463, 37.82746],\n      [-122.29433, 37.8275],\n      [-122.29401, 37.82753],\n      [-122.2937, 37.82753],\n      [-122.29337, 37.82752],\n      [-122.29306, 37.82748],\n      [-122.29275, 37.82741],\n      [-122.29244, 37.82733],\n      [-122.29215, 37.82723],\n      [-122.29189, 37.82712],\n      [-122.29138, 37.82688],\n      [-122.2911, 37.82676],\n      [-122.29078, 37.82665],\n      [-122.29048, 37.82655],\n      [-122.29008, 37.82646],\n      [-122.28965, 37.82639],\n      [-122.28925, 37.82634],\n      [-122.2889, 37.82633],\n      [-122.2885, 37.82632],\n      [-122.28811, 37.82634],\n      [-122.28774, 37.82638],\n      [-122.28686, 37.8265],\n      [-122.28436, 37.82702],\n      [-122.2834, 37.82721],\n      [-122.2831, 37.82726],\n      [-122.28278, 37.82729],\n      [-122.28246, 37.82731],\n      [-122.28216, 37.82732],\n      [-122.28184, 37.82731],\n      [-122.28153, 37.82729],\n      [-122.28121, 37.82724],\n      [-122.28088, 37.82719],\n      [-122.27993, 37.82697],\n      [-122.27872, 37.82668],\n      [-122.2781, 37.82653],\n      [-122.27776, 37.82646],\n      [-122.27548, 37.82593],\n      [-122.27499, 37.82581],\n      [-122.27367, 37.82548],\n      [-122.27252, 37.82521],\n      [-122.27204, 37.8251],\n      [-122.27062, 37.82476],\n      [-122.26998, 37.82461],\n      [-122.26952, 37.8245],\n      [-122.26877, 37.82432],\n      [-122.26776, 37.82408],\n      [-122.26623, 37.82372],\n      [-122.26568, 37.82359],\n      [-122.26531, 37.82351],\n      [-122.26387, 37.8232],\n      [-122.26221, 37.82285],\n      [-122.26175, 37.82274],\n      [-122.26136, 37.82264],\n      [-122.26097, 37.82252],\n      [-122.26057, 37.82239],\n      [-122.26018, 37.82225],\n      [-122.25989, 37.82215],\n      [-122.2596, 37.82204],\n      [-122.2593, 37.82192],\n      [-122.25887, 37.82174],\n      [-122.25842, 37.82155],\n      [-122.25792, 37.82132],\n      [-122.25743, 37.82108],\n      [-122.25698, 37.82085],\n      [-122.25658, 37.82063],\n      [-122.25617, 37.8204],\n      [-122.25571, 37.82013],\n      [-122.25528, 37.81987],\n      [-122.25489, 37.81961],\n      [-122.25436, 37.81925],\n      [-122.25413, 37.81908],\n      [-122.25389, 37.8189],\n      [-122.25365, 37.81871],\n      [-122.25339, 37.8185],\n      [-122.25312, 37.81827],\n      [-122.25288, 37.81802],\n      [-122.25267, 37.81778],\n      [-122.25246, 37.81752],\n      [-122.25226, 37.81726],\n      [-122.25207, 37.81696],\n      [-122.2519, 37.81666],\n      [-122.25175, 37.81636],\n      [-122.25163, 37.81606],\n      [-122.25153, 37.81579],\n      [-122.25144, 37.8155],\n      [-122.25127, 37.81481],\n      [-122.25078, 37.81315],\n      [-122.25059, 37.81248],\n      [-122.25053, 37.81229],\n      [-122.25046, 37.81209],\n      [-122.25038, 37.81191],\n      [-122.25028, 37.81173],\n      [-122.25016, 37.81154],\n      [-122.25003, 37.81137],\n      [-122.24986, 37.81117],\n      [-122.24967, 37.81098],\n      [-122.2495, 37.81083],\n      [-122.24929, 37.81069],\n      [-122.24906, 37.81055],\n      [-122.24876, 37.81039],\n      [-122.24846, 37.81026],\n      [-122.24809, 37.81011],\n      [-122.24772, 37.80999],\n      [-122.24632, 37.8096],\n      [-122.24562, 37.8094],\n      [-122.24433, 37.80904],\n      [-122.24288, 37.80864],\n      [-122.24239, 37.80849],\n      [-122.24194, 37.80833],\n      [-122.24148, 37.80817],\n      [-122.24104, 37.808],\n      [-122.24063, 37.80783],\n      [-122.24023, 37.80765],\n      [-122.2385, 37.80685],\n      [-122.23617, 37.80577],\n      [-122.23577, 37.80557],\n      [-122.2354, 37.80538],\n      [-122.23499, 37.80516],\n      [-122.23459, 37.80493],\n      [-122.23418, 37.80469],\n      [-122.23379, 37.80444],\n      [-122.23349, 37.80421],\n      [-122.2332, 37.804],\n      [-122.23283, 37.80371],\n      [-122.23088, 37.80212],\n      [-122.23063, 37.80193],\n      [-122.2304, 37.80176],\n      [-122.23017, 37.80161],\n      [-122.22994, 37.80147],\n      [-122.22968, 37.80133],\n      [-122.22943, 37.8012],\n      [-122.22914, 37.80106],\n      [-122.22883, 37.80093],\n      [-122.22852, 37.80081],\n      [-122.22822, 37.80071],\n      [-122.22793, 37.80062],\n      [-122.2276, 37.80054],\n      [-122.22725, 37.80045],\n      [-122.22666, 37.80033],\n      [-122.22329, 37.79964],\n      [-122.22147, 37.79926],\n      [-122.22012, 37.79897],\n      [-122.21937, 37.79879],\n      [-122.21856, 37.7986],\n      [-122.2173, 37.79828],\n      [-122.21538, 37.7978],\n      [-122.21256, 37.79709],\n      [-122.21216, 37.79699],\n      [-122.21173, 37.79686],\n      [-122.21133, 37.79673],\n      [-122.21093, 37.79658],\n      [-122.21054, 37.79642],\n      [-122.21022, 37.79628],\n      [-122.20757, 37.79504],\n      [-122.2072, 37.79487],\n      [-122.20685, 37.79471],\n      [-122.20636, 37.79446],\n      [-122.20578, 37.79414],\n      [-122.20548, 37.79394],\n      [-122.20517, 37.79373],\n      [-122.20487, 37.79351],\n      [-122.20455, 37.79324],\n      [-122.20429, 37.79303],\n      [-122.20404, 37.79279],\n      [-122.20378, 37.79251],\n      [-122.2017, 37.79026],\n      [-122.20136, 37.78992],\n      [-122.20099, 37.78958],\n      [-122.20065, 37.78928],\n      [-122.20026, 37.78899],\n      [-122.19989, 37.78874],\n      [-122.19949, 37.78849],\n      [-122.19912, 37.78827],\n      [-122.19867, 37.78804],\n      [-122.19617, 37.7868],\n      [-122.19586, 37.78664],\n      [-122.19495, 37.78619],\n      [-122.19443, 37.78593],\n      [-122.19388, 37.78569],\n      [-122.19354, 37.78555],\n      [-122.19318, 37.78541],\n      [-122.19285, 37.78529],\n      [-122.19248, 37.78516],\n      [-122.19206, 37.78502],\n      [-122.19166, 37.7849],\n      [-122.19122, 37.78478],\n      [-122.19082, 37.78467],\n      [-122.19044, 37.78458],\n      [-122.1901, 37.78451],\n      [-122.18971, 37.78443],\n      [-122.18932, 37.78436],\n      [-122.18895, 37.7843],\n      [-122.1886, 37.78425],\n      [-122.18817, 37.7842],\n      [-122.18778, 37.78415],\n      [-122.18725, 37.78411],\n      [-122.18687, 37.78409],\n      [-122.18643, 37.78406],\n      [-122.18505, 37.78402],\n      [-122.1809, 37.78388],\n      [-122.18052, 37.78387],\n      [-122.17996, 37.78385],\n      [-122.17964, 37.78382],\n      [-122.17932, 37.78379],\n      [-122.179, 37.78373],\n      [-122.17866, 37.78366],\n      [-122.17832, 37.78357],\n      [-122.17801, 37.78346],\n      [-122.17771, 37.78334],\n      [-122.17742, 37.78321],\n      [-122.17717, 37.78308],\n      [-122.17689, 37.78292],\n      [-122.17529, 37.78189],\n      [-122.17482, 37.78159],\n      [-122.17437, 37.78132],\n      [-122.17398, 37.78109],\n      [-122.1737, 37.78094],\n      [-122.17342, 37.78078],\n      [-122.17283, 37.78047],\n      [-122.17081, 37.77943],\n      [-122.16901, 37.77849],\n      [-122.16857, 37.77826],\n      [-122.16811, 37.77804],\n      [-122.16764, 37.77783],\n      [-122.16438, 37.77635],\n      [-122.16404, 37.77619],\n      [-122.16359, 37.77598],\n      [-122.16313, 37.77575],\n      [-122.16259, 37.77549],\n      [-122.16176, 37.77507],\n      [-122.16016, 37.77425],\n      [-122.15929, 37.7738],\n      [-122.1589, 37.7736],\n      [-122.15856, 37.77339],\n      [-122.15818, 37.77316],\n      [-122.15783, 37.77293],\n      [-122.15747, 37.77268],\n      [-122.15714, 37.77243],\n      [-122.15682, 37.77217],\n      [-122.15652, 37.77191],\n      [-122.15622, 37.77163],\n      [-122.15594, 37.77136],\n      [-122.15566, 37.77106],\n      [-122.15541, 37.77078],\n      [-122.15519, 37.77051],\n      [-122.15496, 37.77022],\n      [-122.15476, 37.76994],\n      [-122.15458, 37.76969],\n      [-122.15442, 37.76943],\n      [-122.1541, 37.76891],\n      [-122.15378, 37.76838],\n      [-122.15351, 37.76793],\n      [-122.1528, 37.76677],\n      [-122.15263, 37.76649],\n      [-122.15243, 37.76619],\n      [-122.15222, 37.7659],\n      [-122.15199, 37.76562],\n      [-122.15179, 37.76537],\n      [-122.15111, 37.76456],\n      [-122.15087, 37.76427],\n      [-122.15068, 37.76402],\n      [-122.1505, 37.76378],\n      [-122.15031, 37.76352],\n      [-122.15013, 37.76326],\n      [-122.14908, 37.76167],\n      [-122.14892, 37.76142],\n      [-122.14878, 37.7612],\n      [-122.14863, 37.76092],\n      [-122.14848, 37.76063],\n      [-122.14835, 37.76035],\n      [-122.14825, 37.76012],\n      [-122.14816, 37.75987],\n      [-122.14808, 37.75961],\n      [-122.14802, 37.75936],\n      [-122.14798, 37.75909],\n      [-122.14796, 37.75883],\n      [-122.14797, 37.75853],\n      [-122.148, 37.75824],\n      [-122.14805, 37.75796],\n      [-122.14812, 37.75768],\n      [-122.14822, 37.75743],\n      [-122.14833, 37.75717],\n      [-122.14847, 37.75691],\n      [-122.14862, 37.75667],\n      [-122.14879, 37.75644],\n      [-122.14898, 37.75623],\n      [-122.14917, 37.75603],\n      [-122.14938, 37.75582],\n      [-122.15053, 37.75477],\n      [-122.15073, 37.75458],\n      [-122.15092, 37.75439],\n      [-122.15109, 37.75418],\n      [-122.15125, 37.75398],\n      [-122.15139, 37.75376],\n      [-122.15152, 37.75354],\n      [-122.15163, 37.75327],\n      [-122.15172, 37.75304],\n      [-122.15178, 37.75281],\n      [-122.15185, 37.75257],\n      [-122.15191, 37.75231],\n      [-122.15194, 37.75206],\n      [-122.15196, 37.75182],\n      [-122.15196, 37.75159],\n      [-122.15193, 37.75134],\n      [-122.15189, 37.75111],\n      [-122.15184, 37.75088],\n      [-122.15179, 37.75068],\n      [-122.15172, 37.75048],\n      [-122.15164, 37.75026],\n      [-122.15154, 37.75004],\n      [-122.14978, 37.74645],\n      [-122.14964, 37.74616],\n      [-122.14953, 37.74595],\n      [-122.1494, 37.74574],\n      [-122.14926, 37.74552],\n      [-122.1491, 37.7453],\n      [-122.1489, 37.74506],\n      [-122.14869, 37.74484],\n      [-122.14848, 37.74464],\n      [-122.14826, 37.74443],\n      [-122.14802, 37.74424],\n      [-122.14777, 37.74405],\n      [-122.1475, 37.74386],\n      [-122.14677, 37.74334],\n      [-122.14656, 37.74319],\n      [-122.1464, 37.74307],\n      [-122.14624, 37.74294],\n      [-122.1461, 37.74281],\n      [-122.14597, 37.74269],\n      [-122.14584, 37.74256],\n      [-122.14571, 37.74243],\n      [-122.14559, 37.74228],\n      [-122.14547, 37.74212],\n      [-122.14534, 37.74196],\n      [-122.14445, 37.74076],\n      [-122.14427, 37.74054],\n      [-122.14407, 37.74032],\n      [-122.14389, 37.74012],\n      [-122.1437, 37.73993],\n      [-122.14347, 37.73973],\n      [-122.14322, 37.73952],\n      [-122.14184, 37.73843],\n      [-122.14165, 37.73826],\n      [-122.14146, 37.73809],\n      [-122.14129, 37.7379],\n      [-122.14118, 37.73778],\n      [-122.14109, 37.73766],\n      [-122.14098, 37.73752],\n      [-122.14083, 37.73731],\n      [-122.14068, 37.73707],\n      [-122.14056, 37.73684],\n      [-122.14045, 37.73661],\n      [-122.14036, 37.73637],\n      [-122.14029, 37.73613],\n      [-122.14023, 37.7359],\n      [-122.13995, 37.73469],\n      [-122.13987, 37.73432],\n      [-122.13969, 37.73355],\n      [-122.13956, 37.73298],\n      [-122.13945, 37.73257],\n      [-122.13934, 37.73215],\n      [-122.13905, 37.73115],\n      [-122.13887, 37.73049],\n      [-122.1387, 37.72991],\n      [-122.1386, 37.72955],\n      [-122.13852, 37.72925],\n      [-122.13845, 37.72899],\n      [-122.13839, 37.72874],\n      [-122.13835, 37.72859],\n      [-122.13832, 37.72842],\n      [-122.13828, 37.72819],\n      [-122.13823, 37.72793],\n      [-122.13797, 37.72621],\n      [-122.13794, 37.72599],\n      [-122.1379, 37.72579],\n      [-122.13785, 37.72559],\n      [-122.13779, 37.72539],\n      [-122.13773, 37.7252],\n      [-122.13766, 37.72499],\n      [-122.13758, 37.72479],\n      [-122.13749, 37.72458],\n      [-122.13738, 37.72439],\n      [-122.13727, 37.72418],\n      [-122.13714, 37.72396],\n      [-122.13701, 37.72376],\n      [-122.13687, 37.72356],\n      [-122.13599, 37.72242],\n      [-122.13523, 37.72145],\n      [-122.135, 37.72114],\n      [-122.13479, 37.72085],\n      [-122.1346, 37.72058],\n      [-122.13441, 37.72031],\n      [-122.13425, 37.72004],\n      [-122.13409, 37.71979],\n      [-122.13394, 37.71954],\n      [-122.13378, 37.71929],\n      [-122.13364, 37.71905],\n      [-122.13349, 37.71878],\n      [-122.13326, 37.71833],\n      [-122.13299, 37.71779],\n      [-122.13267, 37.71708],\n      [-122.13201, 37.71563],\n      [-122.13188, 37.71537],\n      [-122.13173, 37.7151],\n      [-122.1316, 37.71487],\n      [-122.13145, 37.71464],\n      [-122.1313, 37.71442],\n      [-122.13111, 37.71416],\n      [-122.13091, 37.71391],\n      [-122.13072, 37.71369],\n      [-122.13049, 37.71344],\n      [-122.13026, 37.71321],\n      [-122.13, 37.71297],\n      [-122.12975, 37.71275],\n      [-122.12948, 37.71254],\n      [-122.12921, 37.71234],\n      [-122.12894, 37.71215],\n      [-122.12867, 37.71197],\n      [-122.12842, 37.71182],\n      [-122.12814, 37.71166],\n      [-122.12787, 37.71152],\n      [-122.12759, 37.71137],\n      [-122.12726, 37.71121],\n      [-122.12621, 37.71073],\n      [-122.12589, 37.71057],\n      [-122.12558, 37.71041],\n      [-122.1253, 37.71025],\n      [-122.12501, 37.71009],\n      [-122.12474, 37.70991],\n      [-122.12452, 37.70976],\n      [-122.1243, 37.7096],\n      [-122.12409, 37.70944],\n      [-122.12307, 37.70865],\n      [-122.12216, 37.70792],\n      [-122.1219, 37.70772],\n      [-122.12162, 37.7075],\n      [-122.12132, 37.7073],\n      [-122.12103, 37.70712],\n      [-122.12073, 37.70696],\n      [-122.12042, 37.70681],\n      [-122.11956, 37.70643],\n      [-122.11862, 37.70601],\n      [-122.11823, 37.70583],\n      [-122.11784, 37.70565],\n      [-122.1175, 37.70549],\n      [-122.11714, 37.70531],\n      [-122.11673, 37.70509],\n      [-122.11635, 37.70489],\n      [-122.11596, 37.70467],\n      [-122.11556, 37.70444],\n      [-122.11513, 37.70418],\n      [-122.11463, 37.70387],\n      [-122.11391, 37.70342],\n      [-122.11345, 37.70313],\n      [-122.11295, 37.70281],\n      [-122.11253, 37.70255],\n      [-122.10999, 37.70097],\n      [-122.10968, 37.70078],\n      [-122.10939, 37.70057],\n      [-122.10911, 37.70036],\n      [-122.10886, 37.70016],\n      [-122.10861, 37.69994],\n      [-122.10845, 37.69979],\n      [-122.1083, 37.69965],\n      [-122.10816, 37.69951],\n      [-122.10798, 37.69933],\n      [-122.10781, 37.69914],\n      [-122.10623, 37.6974],\n      [-122.10524, 37.69629],\n      [-122.10469, 37.69569],\n      [-122.10434, 37.69531],\n      [-122.10295, 37.69377],\n      [-122.10191, 37.69261],\n      [-122.1016, 37.69227],\n      [-122.10141, 37.69208],\n      [-122.10123, 37.6919],\n      [-122.10103, 37.69173],\n      [-122.10084, 37.69156],\n      [-122.10063, 37.69139],\n      [-122.10041, 37.69123],\n      [-122.10017, 37.69108],\n      [-122.09993, 37.69093],\n      [-122.09966, 37.69079],\n      [-122.09939, 37.69066],\n      [-122.09914, 37.69055],\n      [-122.09887, 37.69045],\n      [-122.09859, 37.69035],\n      [-122.0983, 37.69026],\n      [-122.09801, 37.69018],\n      [-122.09772, 37.69012],\n      [-122.09743, 37.69006],\n      [-122.09716, 37.69002],\n      [-122.0969, 37.68998],\n      [-122.09664, 37.68996],\n      [-122.09636, 37.68993],\n      [-122.09608, 37.68992],\n      [-122.09578, 37.68992],\n      [-122.0955, 37.68992],\n      [-122.09524, 37.68994],\n      [-122.09496, 37.68996],\n      [-122.0947, 37.68998],\n      [-122.09343, 37.69012],\n      [-122.09247, 37.69022],\n      [-122.09168, 37.6903],\n      [-122.09069, 37.69037],\n      [-122.08944, 37.69044],\n      [-122.08856, 37.69042],\n      [-122.08733, 37.69043],\n      [-122.08224, 37.69049],\n      [-122.0804, 37.69051],\n      [-122.07876, 37.69052],\n      [-122.07403, 37.69056],\n      [-122.07341, 37.69056],\n      [-122.07205, 37.6906],\n      [-122.06974, 37.69081],\n      [-122.06863, 37.69097],\n      [-122.06823, 37.69103],\n      [-122.06672, 37.69134],\n      [-122.06486, 37.69184],\n      [-122.06468, 37.69189],\n      [-122.06421, 37.69203],\n      [-122.06096, 37.69295],\n      [-122.06034, 37.69311],\n      [-122.0595, 37.69331],\n      [-122.05892, 37.69342],\n      [-122.05826, 37.6935],\n      [-122.05767, 37.69355],\n      [-122.05718, 37.69356],\n      [-122.05669, 37.69356],\n      [-122.05599, 37.69353],\n      [-122.05539, 37.69349],\n      [-122.0535, 37.69327],\n      [-122.05225, 37.69321],\n      [-122.05156, 37.69323],\n      [-122.05093, 37.69328],\n      [-122.05027, 37.69335],\n      [-122.04962, 37.69348],\n      [-122.04903, 37.69361],\n      [-122.04839, 37.69379],\n      [-122.04784, 37.69397],\n      [-122.04725, 37.69419],\n      [-122.04668, 37.69443],\n      [-122.04614, 37.69469],\n      [-122.04568, 37.69493],\n      [-122.0452, 37.69522],\n      [-122.04488, 37.69545],\n      [-122.04457, 37.69568],\n      [-122.04424, 37.69595],\n      [-122.04346, 37.69666],\n      [-122.04235, 37.6977],\n      [-122.04067, 37.69924],\n      [-122.04034, 37.69953],\n      [-122.03999, 37.6998],\n      [-122.03962, 37.70007],\n      [-122.03924, 37.7003],\n      [-122.03884, 37.70053],\n      [-122.03843, 37.70075],\n      [-122.03798, 37.70096],\n      [-122.03756, 37.70114],\n      [-122.03708, 37.70131],\n      [-122.03657, 37.70147],\n      [-122.03614, 37.70159],\n      [-122.0357, 37.70169],\n      [-122.03515, 37.70179],\n      [-122.03468, 37.70187],\n      [-122.0342, 37.70192],\n      [-122.03378, 37.70195],\n      [-122.03329, 37.70197],\n      [-122.03276, 37.70199],\n      [-122.03214, 37.70197],\n      [-122.03133, 37.7019],\n      [-122.0306, 37.70177],\n      [-122.03018, 37.70166],\n      [-122.02972, 37.70155],\n      [-122.02825, 37.70114],\n      [-122.02779, 37.70102],\n      [-122.02724, 37.7009],\n      [-122.02663, 37.70079],\n      [-122.02596, 37.70071],\n      [-122.0253, 37.70067],\n      [-122.02464, 37.70065],\n      [-122.02399, 37.70067],\n      [-122.02333, 37.70071],\n      [-122.02269, 37.7008],\n      [-122.02204, 37.70091],\n      [-122.02137, 37.70106],\n      [-122.0211, 37.70114],\n      [-122.02084, 37.70121],\n      [-122.0202, 37.70143],\n      [-122.01871, 37.70199],\n      [-122.0181, 37.7022],\n      [-122.01749, 37.70237],\n      [-122.01685, 37.70252],\n      [-122.01621, 37.70263],\n      [-122.01557, 37.70271],\n      [-122.01491, 37.70275],\n      [-122.00291, 37.70332],\n      [-122.00228, 37.70335],\n      [-122.00162, 37.70336],\n      [-122.00097, 37.70335],\n      [-122.00028, 37.70332],\n      [-121.99965, 37.70327],\n      [-121.99898, 37.70321],\n      [-121.99834, 37.70313],\n      [-121.99768, 37.70303],\n      [-121.99705, 37.70291],\n      [-121.99641, 37.70277],\n      [-121.99578, 37.70262],\n      [-121.99515, 37.70245],\n      [-121.99455, 37.70226],\n      [-121.99394, 37.70206],\n      [-121.99334, 37.70183],\n      [-121.99276, 37.7016],\n      [-121.99217, 37.70134],\n      [-121.99015, 37.70046],\n      [-121.98957, 37.70021],\n      [-121.98896, 37.7],\n      [-121.98835, 37.69982],\n      [-121.98772, 37.69966],\n      [-121.98707, 37.69954],\n      [-121.98642, 37.69944],\n      [-121.98397, 37.69918],\n      [-121.98332, 37.6991],\n      [-121.98267, 37.69901],\n      [-121.98203, 37.69891],\n      [-121.98136, 37.6988],\n      [-121.97974, 37.69852],\n      [-121.97925, 37.69844],\n      [-121.9747, 37.69765],\n      [-121.97347, 37.69744],\n      [-121.97216, 37.69727],\n      [-121.97083, 37.69714],\n      [-121.96958, 37.69707],\n      [-121.96829, 37.69704],\n      [-121.96703, 37.69706],\n      [-121.96571, 37.69712],\n      [-121.96439, 37.69724],\n      [-121.96302, 37.69742],\n      [-121.96165, 37.69765],\n      [-121.95922, 37.69807],\n      [-121.9586, 37.69816],\n      [-121.95794, 37.69822],\n      [-121.95732, 37.69825],\n      [-121.95664, 37.69825],\n      [-121.94579, 37.69817],\n      [-121.94217, 37.69811],\n      [-121.93963, 37.69814],\n      [-121.93682, 37.69811],\n      [-121.93629, 37.6981],\n      [-121.93578, 37.69811],\n      [-121.93526, 37.69814],\n      [-121.93475, 37.69818],\n      [-121.93425, 37.69824],\n      [-121.93378, 37.6983],\n      [-121.9333, 37.69838],\n      [-121.93281, 37.69848],\n      [-121.93237, 37.69858],\n      [-121.93187, 37.6987],\n      [-121.9312, 37.69887],\n      [-121.93098, 37.6989],\n      [-121.92842, 37.69949],\n      [-121.92654, 37.69992],\n      [-121.92512, 37.70025],\n      [-121.92424, 37.70046],\n      [-121.92326, 37.70068],\n      [-121.92244, 37.70087],\n      [-121.92051, 37.70129],\n      [-121.92012, 37.70137],\n      [-121.91971, 37.70146],\n      [-121.91933, 37.70152],\n      [-121.91898, 37.70158],\n      [-121.9176, 37.7017],\n      [-121.91737, 37.70171],\n      [-121.91651, 37.70174],\n      [-121.91185, 37.70168],\n      [-121.91161, 37.70163],\n      [-121.91047, 37.70159],\n      [-121.90728, 37.70156],\n      [-121.90656, 37.70155],\n      [-121.90403, 37.70149],\n      [-121.90014, 37.70147],\n      [-121.89813, 37.70147],\n      [-121.89754, 37.70146],\n      [-121.89304, 37.70141],\n      [-121.89094, 37.70143],\n      [-121.88845, 37.70138],\n      [-121.88778, 37.70136],\n      [-121.88659, 37.70135],\n      [-121.88311, 37.70134],\n      [-121.87927, 37.70136],\n      [-121.8789, 37.70137],\n      [-121.87699, 37.70136],\n      [-121.87107, 37.70135],\n      [-121.86904, 37.70132],\n      [-121.86672, 37.70129],\n      [-121.85395, 37.70114],\n      [-121.84905, 37.70111],\n      [-121.84759, 37.70111],\n      [-121.8436, 37.7011],\n      [-121.83673, 37.70104],\n      [-121.83297, 37.701],\n      [-121.82285, 37.70087],\n      [-121.82031, 37.70089],\n      [-121.81611, 37.70081],\n      [-121.80909, 37.70077],\n      [-121.80825, 37.70077],\n      [-121.80429, 37.70076],\n      [-121.80325, 37.70075],\n      [-121.80163, 37.70073],\n      [-121.7999, 37.7007],\n      [-121.79903, 37.70069],\n      [-121.79747, 37.7007],\n      [-121.79682, 37.70069],\n      [-121.79589, 37.70066],\n      [-121.79528, 37.70067],\n      [-121.79452, 37.70063],\n      [-121.79417, 37.70058],\n      [-121.79386, 37.70053],\n      [-121.79356, 37.70047],\n      [-121.79018, 37.69973],\n      [-121.78976, 37.69964],\n      [-121.78944, 37.69958],\n      [-121.7891, 37.69953],\n      [-121.78873, 37.69949],\n      [-121.7884, 37.69946],\n      [-121.78808, 37.69944],\n      [-121.78773, 37.69942],\n      [-121.7874, 37.69942],\n      [-121.78706, 37.69943],\n      [-121.78668, 37.69945],\n      [-121.7863, 37.69947],\n      [-121.78591, 37.6995],\n      [-121.78497, 37.69959],\n      [-121.78436, 37.69964],\n      [-121.78261, 37.69979],\n      [-121.77863, 37.70014],\n      [-121.77752, 37.70023],\n      [-121.77637, 37.70036],\n      [-121.77522, 37.70051],\n      [-121.77407, 37.70068],\n      [-121.77352, 37.70077],\n      [-121.7699, 37.70136],\n      [-121.76421, 37.70232],\n      [-121.7633, 37.70246],\n      [-121.76231, 37.70259],\n      [-121.76138, 37.70268],\n      [-121.76047, 37.70275],\n      [-121.75952, 37.70279],\n      [-121.75906, 37.7028],\n      [-121.75793, 37.7028],\n      [-121.75662, 37.70276],\n      [-121.75525, 37.70271],\n      [-121.7499, 37.70248],\n      [-121.74527, 37.70226],\n      [-121.74427, 37.70224],\n      [-121.74344, 37.70223],\n      [-121.74252, 37.70225],\n      [-121.74169, 37.7023],\n      [-121.74093, 37.70239],\n      [-121.7402, 37.7025],\n      [-121.73952, 37.70264],\n      [-121.7389, 37.70277],\n      [-121.73818, 37.70295],\n      [-121.73753, 37.70315],\n      [-121.73689, 37.70337],\n      [-121.73666, 37.70345],\n      [-121.73324, 37.70491],\n      [-121.72971, 37.7064],\n      [-121.72837, 37.70693],\n      [-121.72781, 37.70718],\n      [-121.72464, 37.70851],\n      [-121.72156, 37.70985],\n      [-121.71981, 37.71055],\n      [-121.719, 37.71089],\n      [-121.71599, 37.71218],\n      [-121.71448, 37.71283],\n      [-121.71167, 37.714],\n      [-121.70948, 37.71496],\n      [-121.70719, 37.71594],\n      [-121.70587, 37.71644],\n      [-121.70469, 37.71679],\n      [-121.7033, 37.71711],\n      [-121.70113, 37.71759],\n      [-121.70013, 37.7178],\n      [-121.69698, 37.71845],\n      [-121.69545, 37.71875],\n      [-121.6879, 37.72026],\n      [-121.68716, 37.72043],\n      [-121.68642, 37.72061],\n      [-121.68351, 37.72136],\n      [-121.6829, 37.72151],\n      [-121.68227, 37.72163],\n      [-121.6816, 37.72172],\n      [-121.68098, 37.72176],\n      [-121.68035, 37.72175],\n      [-121.67969, 37.7217],\n      [-121.67678, 37.72138],\n      [-121.67613, 37.7213],\n      [-121.67552, 37.72117],\n      [-121.67495, 37.721],\n      [-121.6744, 37.72079],\n      [-121.67383, 37.72051],\n      [-121.6733, 37.72019],\n      [-121.67232, 37.71953],\n      [-121.67178, 37.71918],\n      [-121.67123, 37.71888],\n      [-121.67064, 37.71861],\n      [-121.67004, 37.71839],\n      [-121.66938, 37.71819],\n      [-121.66875, 37.71804],\n      [-121.66807, 37.71793],\n      [-121.66745, 37.71787],\n      [-121.66678, 37.71784],\n      [-121.66605, 37.71786],\n      [-121.66537, 37.71793],\n      [-121.66471, 37.71804],\n      [-121.66405, 37.71819],\n      [-121.66338, 37.71838],\n      [-121.65867, 37.7197],\n      [-121.65679, 37.72026],\n      [-121.65344, 37.72135],\n      [-121.65051, 37.72229],\n      [-121.64289, 37.72477],\n      [-121.63713, 37.72666],\n      [-121.63544, 37.72745],\n      [-121.63419, 37.7285],\n      [-121.63354, 37.72933],\n      [-121.63286, 37.73023],\n      [-121.63208, 37.73107],\n      [-121.63117, 37.73178],\n      [-121.63046, 37.73226],\n      [-121.62916, 37.73295],\n      [-121.62871, 37.73315],\n      [-121.62806, 37.73341],\n      [-121.62739, 37.73353],\n      [-121.62633, 37.7337],\n      [-121.61917, 37.73415],\n      [-121.61243, 37.73464],\n      [-121.6104, 37.73492],\n      [-121.60809, 37.73542],\n      [-121.60614, 37.73594],\n      [-121.60224, 37.73701],\n      [-121.6011, 37.73734],\n      [-121.60009, 37.73757],\n      [-121.59781, 37.73802],\n      [-121.59115, 37.73926],\n      [-121.58606, 37.74022],\n      [-121.58557, 37.74031],\n      [-121.58192, 37.74092],\n      [-121.58124, 37.74104],\n      [-121.5803, 37.74118],\n      [-121.57847, 37.74137],\n      [-121.57699, 37.74151],\n      [-121.57549, 37.74165],\n      [-121.57404, 37.74174],\n      [-121.57354, 37.7417],\n      [-121.57252, 37.74172],\n      [-121.57214, 37.74174],\n      [-121.57058, 37.7418],\n      [-121.56971, 37.74184],\n      [-121.56865, 37.74181],\n      [-121.56758, 37.74173],\n      [-121.56489, 37.74135],\n      [-121.56302, 37.74109],\n      [-121.56221, 37.74095],\n      [-121.5614, 37.74078],\n      [-121.56073, 37.74056],\n      [-121.55986, 37.74024],\n      [-121.55903, 37.73988],\n      [-121.55826, 37.73941],\n      [-121.55758, 37.73898],\n      [-121.55709, 37.7386],\n      [-121.55634, 37.73797],\n      [-121.555, 37.73686],\n      [-121.55276, 37.73496],\n      [-121.55201, 37.73431],\n      [-121.55144, 37.73377],\n      [-121.55082, 37.73325],\n      [-121.54851, 37.73114],\n      [-121.54699, 37.72981],\n      [-121.54385, 37.72699],\n      [-121.54214, 37.72543],\n      [-121.54155, 37.72493],\n      [-121.54016, 37.72363],\n      [-121.53876, 37.72237],\n      [-121.53682, 37.72064],\n      [-121.53606, 37.72001],\n      [-121.53491, 37.71918],\n      [-121.5334, 37.71816],\n      [-121.53234, 37.71749],\n      [-121.53164, 37.71706],\n      [-121.53038, 37.71631],\n      [-121.52796, 37.71483],\n      [-121.5251, 37.71311],\n      [-121.52439, 37.71267],\n      [-121.52154, 37.71095],\n      [-121.51694, 37.70821],\n      [-121.51561, 37.70738],\n      [-121.51502, 37.70701],\n      [-121.51391, 37.70634],\n      [-121.51368, 37.7062],\n      [-121.51123, 37.70472],\n      [-121.5091, 37.70345],\n      [-121.50801, 37.70279],\n      [-121.50739, 37.70243],\n      [-121.50666, 37.70199],\n      [-121.50616, 37.70168],\n      [-121.50328, 37.69991],\n      [-121.50299, 37.69975],\n      [-121.49915, 37.69745],\n      [-121.49459, 37.69464],\n      [-121.49229, 37.69325],\n      [-121.48998, 37.69188],\n      [-121.48278, 37.68753],\n      [-121.48017, 37.68596],\n      [-121.47996, 37.68583],\n      [-121.47803, 37.68468],\n      [-121.4753, 37.68305],\n      [-121.47446, 37.68253],\n      [-121.47219, 37.68117],\n      [-121.46815, 37.67871],\n      [-121.4649, 37.67674],\n      [-121.46394, 37.67615],\n      [-121.46006, 37.67375],\n      [-121.45916, 37.67324],\n      [-121.45506, 37.67072],\n      [-121.45378, 37.66995],\n      [-121.45341, 37.66975],\n      [-121.45251, 37.66922],\n      [-121.45088, 37.66821],\n      [-121.44996, 37.66766],\n      [-121.44892, 37.667],\n      [-121.44598, 37.66521],\n      [-121.4401, 37.6617],\n      [-121.43935, 37.66122],\n      [-121.43852, 37.66073],\n      [-121.43596, 37.65917],\n      [-121.42303, 37.65133],\n      [-121.42122, 37.65022],\n      [-121.4198, 37.64937],\n      [-121.41444, 37.6461],\n      [-121.40338, 37.63941],\n      [-121.40296, 37.63915],\n      [-121.402, 37.63857],\n      [-121.39527, 37.63449],\n      [-121.39397, 37.63369],\n      [-121.39081, 37.63179],\n      [-121.38578, 37.62874],\n      [-121.38456, 37.628],\n      [-121.38393, 37.62765],\n      [-121.38154, 37.62618],\n      [-121.3795, 37.62496],\n      [-121.37853, 37.62435],\n      [-121.37613, 37.62291],\n      [-121.37414, 37.62168],\n      [-121.37356, 37.62131],\n      [-121.37263, 37.62068],\n      [-121.37197, 37.62021],\n      [-121.37053, 37.61918],\n      [-121.36953, 37.61839],\n      [-121.36507, 37.61495],\n      [-121.365, 37.61489],\n      [-121.3647, 37.61465],\n      [-121.36248, 37.61293],\n      [-121.36141, 37.61213],\n      [-121.35369, 37.60619],\n      [-121.35321, 37.60582],\n      [-121.34924, 37.60277],\n      [-121.3454, 37.59982],\n      [-121.34328, 37.59816],\n      [-121.3403, 37.59589],\n      [-121.33796, 37.59404],\n      [-121.33769, 37.59384],\n      [-121.33331, 37.59045],\n      [-121.33104, 37.58872],\n      [-121.32881, 37.58699],\n      [-121.32757, 37.58605],\n      [-121.32624, 37.58502],\n      [-121.32361, 37.58299],\n      [-121.31983, 37.58008],\n      [-121.31956, 37.57987],\n      [-121.30514, 37.56876],\n      [-121.30116, 37.56572],\n      [-121.30084, 37.56546],\n      [-121.29891, 37.56396],\n      [-121.29641, 37.56203],\n      [-121.29456, 37.56059],\n      [-121.29333, 37.55966],\n      [-121.28332, 37.55193],\n      [-121.27876, 37.54842],\n      [-121.27073, 37.54223],\n      [-121.26899, 37.54087],\n      [-121.2687, 37.54064],\n      [-121.26803, 37.54013],\n      [-121.26766, 37.53985],\n      [-121.26634, 37.53884],\n      [-121.26581, 37.53844],\n      [-121.26472, 37.53759],\n      [-121.26326, 37.53647],\n      [-121.2601, 37.53401],\n      [-121.25921, 37.5333],\n      [-121.25822, 37.53247],\n      [-121.25533, 37.53001],\n      [-121.25471, 37.52949],\n      [-121.25034, 37.52577],\n      [-121.2475, 37.52336],\n      [-121.2436, 37.52006],\n      [-121.23877, 37.51595],\n      [-121.23859, 37.5158],\n      [-121.23522, 37.51293],\n      [-121.23042, 37.50885],\n      [-121.22808, 37.50685],\n      [-121.22448, 37.50386],\n      [-121.22375, 37.5033],\n      [-121.22209, 37.50207],\n      [-121.21723, 37.49851],\n      [-121.21236, 37.49494],\n      [-121.21156, 37.49429],\n      [-121.21062, 37.49347],\n      [-121.20853, 37.49143],\n      [-121.20832, 37.49121],\n      [-121.20417, 37.4871],\n      [-121.19645, 37.47944],\n      [-121.19625, 37.47924],\n      [-121.19064, 37.47368],\n      [-121.18928, 37.47231],\n      [-121.18842, 37.47151],\n      [-121.1877, 37.47071],\n      [-121.18691, 37.46991],\n      [-121.1861, 37.46903],\n      [-121.18551, 37.46845],\n      [-121.18495, 37.46794],\n      [-121.18358, 37.46662],\n      [-121.18259, 37.46562],\n      [-121.18066, 37.46374],\n      [-121.18043, 37.46347],\n      [-121.17982, 37.46279],\n      [-121.17924, 37.46209],\n      [-121.17867, 37.46135],\n      [-121.17806, 37.46045],\n      [-121.17744, 37.45956],\n      [-121.17512, 37.4563],\n      [-121.1738, 37.45436],\n      [-121.17313, 37.45341],\n      [-121.17241, 37.45246],\n      [-121.17205, 37.45201],\n      [-121.17175, 37.45157],\n      [-121.17146, 37.45108],\n      [-121.17055, 37.44982],\n      [-121.16986, 37.44886],\n      [-121.16928, 37.44804],\n      [-121.16819, 37.4467],\n      [-121.16754, 37.44591],\n      [-121.16437, 37.44157],\n      [-121.16381, 37.44079],\n      [-121.16269, 37.43923],\n      [-121.16182, 37.43794],\n      [-121.16081, 37.43613],\n      [-121.15938, 37.43339],\n      [-121.15854, 37.43143],\n      [-121.15748, 37.42949],\n      [-121.1563, 37.42721],\n      [-121.15571, 37.42589],\n      [-121.15441, 37.42324],\n      [-121.15412, 37.42267],\n      [-121.15336, 37.42113],\n      [-121.15315, 37.42077],\n      [-121.15081, 37.41608],\n      [-121.15021, 37.41488],\n      [-121.1494, 37.41343],\n      [-121.14858, 37.41203],\n      [-121.14738, 37.41018],\n      [-121.14594, 37.40812],\n      [-121.14475, 37.40642],\n      [-121.14296, 37.40385],\n      [-121.14082, 37.40079],\n      [-121.13859, 37.39758],\n      [-121.13832, 37.39719],\n      [-121.13708, 37.39543],\n      [-121.13626, 37.39423],\n      [-121.13577, 37.39355],\n      [-121.13454, 37.39176],\n      [-121.13183, 37.38789],\n      [-121.13059, 37.38607],\n      [-121.13028, 37.38555],\n      [-121.12987, 37.38485],\n      [-121.12939, 37.38393],\n      [-121.12882, 37.3826],\n      [-121.12787, 37.3797],\n      [-121.12697, 37.37698],\n      [-121.12499, 37.37091],\n      [-121.12232, 37.3627],\n      [-121.11831, 37.35045],\n      [-121.11783, 37.34905],\n      [-121.11765, 37.34843],\n      [-121.11698, 37.34621],\n      [-121.11623, 37.34386],\n      [-121.11594, 37.3431],\n      [-121.11572, 37.34243],\n      [-121.11482, 37.33981],\n      [-121.1145, 37.33893],\n      [-121.11372, 37.33626],\n      [-121.11283, 37.3336],\n      [-121.11141, 37.32926],\n      [-121.11117, 37.32849],\n      [-121.11102, 37.32805],\n      [-121.10971, 37.32399],\n      [-121.10926, 37.32264],\n      [-121.10802, 37.31899],\n      [-121.10792, 37.31865],\n      [-121.10756, 37.31718],\n      [-121.10735, 37.31645],\n      [-121.10711, 37.31572],\n      [-121.10647, 37.31362],\n      [-121.10584, 37.31152],\n      [-121.10508, 37.30864],\n      [-121.104, 37.30441],\n      [-121.10391, 37.30407],\n      [-121.10382, 37.30379],\n      [-121.10314, 37.30064],\n      [-121.10287, 37.29974],\n      [-121.10227, 37.29768],\n      [-121.0985, 37.28281],\n      [-121.09845, 37.28258],\n      [-121.09569, 37.27185],\n      [-121.09449, 37.26702],\n      [-121.09411, 37.26577],\n      [-121.09285, 37.26087],\n      [-121.09211, 37.25785],\n      [-121.09075, 37.25265],\n      [-121.09033, 37.25098],\n      [-121.09008, 37.25],\n      [-121.08909, 37.24612],\n      [-121.08854, 37.24395],\n      [-121.08823, 37.24274],\n      [-121.08811, 37.24229],\n      [-121.08788, 37.24138],\n      [-121.08756, 37.24013],\n      [-121.08723, 37.23885],\n      [-121.08687, 37.23741],\n      [-121.08654, 37.23617],\n      [-121.08634, 37.23535],\n      [-121.08602, 37.23411],\n      [-121.0857, 37.23288],\n      [-121.08541, 37.23176],\n      [-121.08521, 37.23097],\n      [-121.08487, 37.22966],\n      [-121.08426, 37.2272],\n      [-121.08392, 37.22592],\n      [-121.0837, 37.22505],\n      [-121.08327, 37.22338],\n      [-121.08294, 37.2221],\n      [-121.08262, 37.22083],\n      [-121.08232, 37.21965],\n      [-121.08209, 37.21874],\n      [-121.08189, 37.21797],\n      [-121.08106, 37.21472],\n      [-121.08073, 37.21342],\n      [-121.08039, 37.21207],\n      [-121.08006, 37.21083],\n      [-121.07972, 37.20952],\n      [-121.0791, 37.20704],\n      [-121.07862, 37.20515],\n      [-121.07802, 37.20285],\n      [-121.07772, 37.20167],\n      [-121.07739, 37.20041],\n      [-121.07723, 37.19984],\n      [-121.07705, 37.19928],\n      [-121.07685, 37.19876],\n      [-121.07657, 37.19803],\n      [-121.076, 37.19681],\n      [-121.0753, 37.19555],\n      [-121.07445, 37.19421],\n      [-121.07362, 37.19294],\n      [-121.07195, 37.19039],\n      [-121.07111, 37.18912],\n      [-121.0699, 37.18726],\n      [-121.06907, 37.186],\n      [-121.06823, 37.18471],\n      [-121.06743, 37.18348],\n      [-121.06652, 37.18207],\n      [-121.06576, 37.18093],\n      [-121.06492, 37.17966],\n      [-121.06351, 37.17748],\n      [-121.06335, 37.17724],\n      [-121.06286, 37.17646],\n      [-121.06202, 37.17517],\n      [-121.06122, 37.17398],\n      [-121.06041, 37.17274],\n      [-121.05959, 37.17147],\n      [-121.05876, 37.17023],\n      [-121.05788, 37.16888],\n      [-121.05748, 37.16829],\n      [-121.05611, 37.16616],\n      [-121.05541, 37.16507],\n      [-121.05463, 37.16388],\n      [-121.05376, 37.1626],\n      [-121.05298, 37.16138],\n      [-121.05219, 37.16017],\n      [-121.05147, 37.15912],\n      [-121.05118, 37.15864],\n      [-121.05084, 37.15813],\n      [-121.04793, 37.15367],\n      [-121.04724, 37.1526],\n      [-121.04675, 37.15187],\n      [-121.04598, 37.15069],\n      [-121.04515, 37.14941],\n      [-121.04435, 37.1482],\n      [-121.04365, 37.14711],\n      [-121.04234, 37.14512],\n      [-121.04186, 37.14436],\n      [-121.0402, 37.14184],\n      [-121.03779, 37.13815],\n      [-121.03698, 37.13691],\n      [-121.03549, 37.13461],\n      [-121.03443, 37.133],\n      [-121.03293, 37.1307],\n      [-121.03235, 37.1298],\n      [-121.03221, 37.12959],\n      [-121.0321, 37.12942],\n      [-121.03159, 37.12865],\n      [-121.03101, 37.12776],\n      [-121.0305, 37.12699],\n      [-121.02956, 37.12554],\n      [-121.02904, 37.12476],\n      [-121.02869, 37.1242],\n      [-121.02843, 37.12378],\n      [-121.02761, 37.12255],\n      [-121.02586, 37.11991],\n      [-121.02344, 37.11615],\n      [-121.02269, 37.11501],\n      [-121.02172, 37.11357],\n      [-121.02066, 37.11206],\n      [-121.01963, 37.11076],\n      [-121.01879, 37.10971],\n      [-121.01805, 37.1088],\n      [-121.01782, 37.10854],\n      [-121.01563, 37.10581],\n      [-121.01502, 37.10506],\n      [-121.01466, 37.10464],\n      [-121.01431, 37.1042],\n      [-121.01213, 37.10155],\n      [-121.01179, 37.10113],\n      [-121.00716, 37.09546],\n      [-121.00671, 37.0949],\n      [-121.00613, 37.09421],\n      [-121.00541, 37.09336],\n      [-121.00479, 37.09265],\n      [-121.00372, 37.0915],\n      [-121.00263, 37.09036],\n      [-120.99893, 37.08655],\n      [-120.99319, 37.08062],\n      [-120.99293, 37.08034],\n      [-120.99257, 37.07996],\n      [-120.99202, 37.07938],\n      [-120.99037, 37.07767],\n      [-120.99017, 37.07748],\n      [-120.98512, 37.07226],\n      [-120.98096, 37.06797],\n      [-120.97984, 37.06682],\n      [-120.97295, 37.0597],\n      [-120.97065, 37.05731],\n      [-120.97047, 37.05709],\n      [-120.97037, 37.05699],\n      [-120.96977, 37.05639],\n      [-120.96817, 37.05476],\n      [-120.96624, 37.05278],\n      [-120.96064, 37.04696],\n      [-120.96035, 37.04668],\n      [-120.95816, 37.0444],\n      [-120.95254, 37.03858],\n      [-120.94742, 37.03336],\n      [-120.94288, 37.02866],\n      [-120.94263, 37.02839],\n      [-120.94223, 37.02799],\n      [-120.94065, 37.02636],\n      [-120.93988, 37.02557],\n      [-120.93911, 37.02481],\n      [-120.93799, 37.02359],\n      [-120.93766, 37.02324],\n      [-120.93664, 37.02219],\n      [-120.93588, 37.02142],\n      [-120.93548, 37.02101],\n      [-120.93513, 37.02064],\n      [-120.9332, 37.01864],\n      [-120.93237, 37.01777],\n      [-120.93051, 37.01587],\n      [-120.92896, 37.01425],\n      [-120.92875, 37.01404],\n      [-120.92666, 37.01187],\n      [-120.92566, 37.01083],\n      [-120.92415, 37.00927],\n      [-120.92317, 37.00823],\n      [-120.92266, 37.00772],\n      [-120.92202, 37.00708],\n      [-120.92102, 37.00606],\n      [-120.91943, 37.0044],\n      [-120.91887, 37.00381],\n      [-120.91729, 37.00219],\n      [-120.91658, 37.00144],\n      [-120.91568, 37.00041],\n      [-120.91425, 36.99876],\n      [-120.91303, 36.99743],\n      [-120.911, 36.99511],\n      [-120.91003, 36.99401],\n      [-120.90952, 36.99336],\n      [-120.9086, 36.99228],\n      [-120.90772, 36.9913],\n      [-120.90684, 36.99033],\n      [-120.9061, 36.98946],\n      [-120.90369, 36.98669],\n      [-120.90263, 36.98555],\n      [-120.9014, 36.98413],\n      [-120.90032, 36.9829],\n      [-120.89849, 36.98078],\n      [-120.89748, 36.97958],\n      [-120.89524, 36.97702],\n      [-120.89353, 36.9751],\n      [-120.89295, 36.97444],\n      [-120.89198, 36.97333],\n      [-120.89021, 36.97131],\n      [-120.88997, 36.97103],\n      [-120.88969, 36.97073],\n      [-120.88919, 36.97022],\n      [-120.88873, 36.96977],\n      [-120.8884, 36.96945],\n      [-120.888, 36.9691],\n      [-120.88754, 36.96867],\n      [-120.88724, 36.96842],\n      [-120.88675, 36.96802],\n      [-120.8862, 36.96756],\n      [-120.88511, 36.96667],\n      [-120.88267, 36.96468],\n      [-120.88085, 36.96319],\n      [-120.87963, 36.96219],\n      [-120.87909, 36.96175],\n      [-120.87843, 36.9612],\n      [-120.87384, 36.95746],\n      [-120.87348, 36.95716],\n      [-120.87305, 36.95682],\n      [-120.87239, 36.95623],\n      [-120.8697, 36.95407],\n      [-120.86857, 36.95314],\n      [-120.86715, 36.95198],\n      [-120.86642, 36.95138],\n      [-120.86556, 36.9507],\n      [-120.86486, 36.95012],\n      [-120.86438, 36.94972],\n      [-120.86374, 36.94922],\n      [-120.86324, 36.94878],\n      [-120.86258, 36.94825],\n      [-120.86228, 36.94801],\n      [-120.86089, 36.94688],\n      [-120.86016, 36.94628],\n      [-120.85996, 36.94612],\n      [-120.85976, 36.94596],\n      [-120.85955, 36.94578],\n      [-120.85913, 36.94544],\n      [-120.85892, 36.94527],\n      [-120.85867, 36.94506],\n      [-120.85817, 36.94466],\n      [-120.85791, 36.94444],\n      [-120.85748, 36.94409],\n      [-120.8572, 36.94386],\n      [-120.85692, 36.94364],\n      [-120.85669, 36.94345],\n      [-120.85654, 36.94332],\n      [-120.85637, 36.94319],\n      [-120.85596, 36.94286],\n      [-120.85487, 36.94194],\n      [-120.85433, 36.9415],\n      [-120.85203, 36.93959],\n      [-120.84962, 36.93763],\n      [-120.84782, 36.93615],\n      [-120.8474, 36.93586],\n      [-120.84678, 36.93535],\n      [-120.84621, 36.93488],\n      [-120.8455, 36.93429],\n      [-120.8447, 36.93362],\n      [-120.84431, 36.9333],\n      [-120.84361, 36.93272],\n      [-120.84208, 36.93147],\n      [-120.84189, 36.93131],\n      [-120.84147, 36.93092],\n      [-120.83943, 36.92911],\n      [-120.83859, 36.92833],\n      [-120.8375, 36.92726],\n      [-120.83743, 36.92719],\n      [-120.83642, 36.92622],\n      [-120.83557, 36.9254],\n      [-120.83344, 36.92326],\n      [-120.83255, 36.92242],\n      [-120.83205, 36.92192],\n      [-120.8306, 36.92047],\n      [-120.83019, 36.92008],\n      [-120.82904, 36.91892],\n      [-120.8283, 36.91823],\n      [-120.82798, 36.9179],\n      [-120.8275, 36.91745],\n      [-120.82721, 36.91719],\n      [-120.82692, 36.91696],\n      [-120.82681, 36.91685],\n      [-120.82661, 36.91666],\n      [-120.82632, 36.91637],\n      [-120.8254, 36.91555],\n      [-120.82437, 36.91462],\n      [-120.82406, 36.91435],\n      [-120.8225, 36.91296],\n      [-120.82207, 36.91259],\n      [-120.82172, 36.91227],\n      [-120.8213, 36.91192],\n      [-120.82097, 36.91161],\n      [-120.8206, 36.91127],\n      [-120.82035, 36.91102],\n      [-120.81999, 36.91069],\n      [-120.81947, 36.91017],\n      [-120.81908, 36.9098],\n      [-120.81858, 36.90927],\n      [-120.81832, 36.90901],\n      [-120.81769, 36.90832],\n      [-120.81704, 36.90757],\n      [-120.81615, 36.90652],\n      [-120.81532, 36.9056],\n      [-120.81166, 36.90141],\n      [-120.80618, 36.89511],\n      [-120.80431, 36.89298],\n      [-120.80288, 36.89131],\n      [-120.80267, 36.89108],\n      [-120.80234, 36.8907],\n      [-120.8003, 36.88817],\n      [-120.79876, 36.88605],\n      [-120.79722, 36.88376],\n      [-120.79578, 36.88167],\n      [-120.79406, 36.87919],\n      [-120.79228, 36.87664],\n      [-120.79074, 36.87436],\n      [-120.78925, 36.87219],\n      [-120.78781, 36.8701],\n      [-120.78556, 36.86687],\n      [-120.78427, 36.86497],\n      [-120.7829, 36.86296],\n      [-120.78126, 36.86058],\n      [-120.78073, 36.85982],\n      [-120.78051, 36.8595],\n      [-120.7795, 36.85807],\n      [-120.7782, 36.85616],\n      [-120.77733, 36.85495],\n      [-120.77697, 36.85441],\n      [-120.77645, 36.85365],\n      [-120.77303, 36.8487],\n      [-120.77251, 36.84795],\n      [-120.76374, 36.83521],\n      [-120.74303, 36.80509],\n      [-120.74273, 36.80466],\n      [-120.72679, 36.78147],\n      [-120.72324, 36.77627],\n      [-120.72167, 36.774],\n      [-120.71317, 36.76154],\n      [-120.70986, 36.75672],\n      [-120.68493, 36.72037],\n      [-120.68046, 36.71421],\n      [-120.67422, 36.70618],\n      [-120.67116, 36.70219],\n      [-120.67008, 36.7008],\n      [-120.66602, 36.69546],\n      [-120.66249, 36.69091],\n      [-120.66021, 36.6879],\n      [-120.65985, 36.68745],\n      [-120.65832, 36.68547],\n      [-120.65698, 36.68369],\n      [-120.65676, 36.68337],\n      [-120.65631, 36.68285],\n      [-120.65118, 36.67616],\n      [-120.65078, 36.67564],\n      [-120.65003, 36.67468],\n      [-120.64267, 36.66504],\n      [-120.64064, 36.66244],\n      [-120.63842, 36.65957],\n      [-120.63269, 36.65207],\n      [-120.63234, 36.65162],\n      [-120.62565, 36.6429],\n      [-120.62536, 36.64252],\n      [-120.62066, 36.63639],\n      [-120.62033, 36.63596],\n      [-120.61537, 36.62943],\n      [-120.61239, 36.62555],\n      [-120.61103, 36.62396],\n      [-120.60971, 36.62262],\n      [-120.6083, 36.62145],\n      [-120.60588, 36.61957],\n      [-120.6021, 36.61676],\n      [-120.59527, 36.61159],\n      [-120.58953, 36.60727],\n      [-120.58897, 36.60686],\n      [-120.58805, 36.60617],\n      [-120.58741, 36.6057],\n      [-120.58553, 36.60429],\n      [-120.58462, 36.60362],\n      [-120.58368, 36.60287],\n      [-120.5832, 36.6025],\n      [-120.58153, 36.60128],\n      [-120.5748, 36.59617],\n      [-120.54183, 36.57127],\n      [-120.53884, 36.56901],\n      [-120.53545, 36.56646],\n      [-120.51828, 36.55349],\n      [-120.51262, 36.54921],\n      [-120.50984, 36.5471],\n      [-120.50669, 36.54473],\n      [-120.5043, 36.54293],\n      [-120.50139, 36.54071],\n      [-120.49729, 36.53762],\n      [-120.49478, 36.53573],\n      [-120.49403, 36.53515],\n      [-120.49154, 36.53327],\n      [-120.49114, 36.53295],\n      [-120.48942, 36.53166],\n      [-120.48797, 36.53059],\n      [-120.48649, 36.52947],\n      [-120.48612, 36.52919],\n      [-120.4855, 36.52871],\n      [-120.48509, 36.5284],\n      [-120.48205, 36.52609],\n      [-120.47572, 36.5213],\n      [-120.47362, 36.51948],\n      [-120.47165, 36.51752],\n      [-120.46698, 36.51295],\n      [-120.4599, 36.50593],\n      [-120.45079, 36.49684],\n      [-120.45003, 36.49607],\n      [-120.44927, 36.49534],\n      [-120.44828, 36.49432],\n      [-120.44598, 36.49169],\n      [-120.44185, 36.48697],\n      [-120.43827, 36.48276],\n      [-120.43359, 36.47758],\n      [-120.43165, 36.47569],\n      [-120.43079, 36.4748],\n      [-120.42805, 36.47191],\n      [-120.42635, 36.47018],\n      [-120.41944, 36.4629],\n      [-120.41388, 36.45713],\n      [-120.41126, 36.45434],\n      [-120.41093, 36.454],\n      [-120.40788, 36.45072],\n      [-120.4026, 36.44488],\n      [-120.40046, 36.44251],\n      [-120.39655, 36.43814],\n      [-120.39568, 36.43716],\n      [-120.3953, 36.43675],\n      [-120.39377, 36.43507],\n      [-120.39262, 36.43381],\n      [-120.39186, 36.43291],\n      [-120.39157, 36.4326],\n      [-120.38993, 36.43073],\n      [-120.38544, 36.42569],\n      [-120.37927, 36.4188],\n      [-120.37897, 36.41842],\n      [-120.37765, 36.41703],\n      [-120.37445, 36.41343],\n      [-120.37064, 36.40915],\n      [-120.3672, 36.40529],\n      [-120.36145, 36.3989],\n      [-120.36114, 36.39854],\n      [-120.35705, 36.394],\n      [-120.35288, 36.38929],\n      [-120.34965, 36.38573],\n      [-120.34544, 36.381],\n      [-120.34087, 36.37589],\n      [-120.33639, 36.37089],\n      [-120.33377, 36.36796],\n      [-120.32968, 36.36339],\n      [-120.32564, 36.35887],\n      [-120.31991, 36.35244],\n      [-120.31956, 36.35206],\n      [-120.31699, 36.34918],\n      [-120.31344, 36.34518],\n      [-120.3109, 36.34236],\n      [-120.30764, 36.33869],\n      [-120.30456, 36.33525],\n      [-120.30025, 36.33042],\n      [-120.29536, 36.32475],\n      [-120.28988, 36.31816],\n      [-120.2858, 36.31333],\n      [-120.28288, 36.30989],\n      [-120.27967, 36.30641],\n      [-120.27633, 36.30264],\n      [-120.27276, 36.29874],\n      [-120.27129, 36.29705],\n      [-120.27086, 36.29653],\n      [-120.2702, 36.29558],\n      [-120.26893, 36.29353],\n      [-120.26759, 36.29147],\n      [-120.2673, 36.29102],\n      [-120.26423, 36.28615],\n      [-120.25735, 36.27529],\n      [-120.25612, 36.27327],\n      [-120.24643, 36.2579],\n      [-120.24319, 36.25276],\n      [-120.24188, 36.25069],\n      [-120.24099, 36.24927],\n      [-120.24026, 36.24814],\n      [-120.23476, 36.23939],\n      [-120.2298, 36.23156],\n      [-120.2295, 36.23105],\n      [-120.22041, 36.21657],\n      [-120.21612, 36.20973],\n      [-120.21146, 36.20234],\n      [-120.20707, 36.19539],\n      [-120.19842, 36.18165],\n      [-120.19814, 36.1812],\n      [-120.1972, 36.1797],\n      [-120.19644, 36.17869],\n      [-120.19571, 36.17776],\n      [-120.19485, 36.17681],\n      [-120.19433, 36.17624],\n      [-120.18584, 36.16698],\n      [-120.18527, 36.16635],\n      [-120.16213, 36.14107],\n      [-120.15745, 36.13593],\n      [-120.15711, 36.13556],\n      [-120.1346, 36.11096],\n      [-120.12485, 36.1003],\n      [-120.11877, 36.09362],\n      [-120.11845, 36.09328],\n      [-120.11832, 36.09314],\n      [-120.11287, 36.08715],\n      [-120.11194, 36.08612],\n      [-120.10633, 36.08003],\n      [-120.10518, 36.07896],\n      [-120.10453, 36.07841],\n      [-120.10392, 36.07794],\n      [-120.10322, 36.07742],\n      [-120.10252, 36.07694],\n      [-120.10192, 36.07655],\n      [-120.10078, 36.07586],\n      [-120.09905, 36.07483],\n      [-120.0984, 36.07441],\n      [-120.0954, 36.07261],\n      [-120.09261, 36.07094],\n      [-120.08976, 36.06921],\n      [-120.08674, 36.06742],\n      [-120.08371, 36.06557],\n      [-120.07771, 36.06196],\n      [-120.07325, 36.05927],\n      [-120.0708, 36.05778],\n      [-120.06761, 36.05587],\n      [-120.06401, 36.05371],\n      [-120.06104, 36.0519],\n      [-120.05837, 36.0503],\n      [-120.05666, 36.04927],\n      [-120.05404, 36.04769],\n      [-120.05258, 36.04682],\n      [-120.04582, 36.0431],\n      [-120.04166, 36.04079],\n      [-120.03827, 36.03891],\n      [-120.03453, 36.03686],\n      [-120.03118, 36.03504],\n      [-120.02769, 36.0331],\n      [-120.02502, 36.03164],\n      [-120.02304, 36.03047],\n      [-120.02138, 36.02945],\n      [-120.01969, 36.02837],\n      [-120.01862, 36.02769],\n      [-120.0175, 36.02692],\n      [-120.01583, 36.02588],\n      [-120.01421, 36.02483],\n      [-120.01318, 36.02415],\n      [-120.01116, 36.02286],\n      [-120.00992, 36.02205],\n      [-120.00816, 36.02094],\n      [-120.00395, 36.01821],\n      [-120.00009, 36.01572],\n      [-119.99922, 36.01515],\n      [-119.99767, 36.01416],\n      [-119.99617, 36.0132],\n      [-119.99411, 36.01191],\n      [-119.99218, 36.01062],\n      [-119.9893, 36.00879],\n      [-119.98863, 36.00839],\n      [-119.98811, 36.00803],\n      [-119.98772, 36.00776],\n      [-119.98724, 36.00742],\n      [-119.9868, 36.00707],\n      [-119.98624, 36.00662],\n      [-119.98572, 36.00618],\n      [-119.98542, 36.00589],\n      [-119.98496, 36.00547],\n      [-119.98453, 36.00506],\n      [-119.98399, 36.00455],\n      [-119.98352, 36.0041],\n      [-119.98313, 36.00371],\n      [-119.98286, 36.00346],\n      [-119.98264, 36.00324],\n      [-119.9821, 36.00271],\n      [-119.98172, 36.00232],\n      [-119.98152, 36.00211],\n      [-119.98078, 36.00143],\n      [-119.98024, 36.00089],\n      [-119.97971, 36.0004],\n      [-119.97844, 35.99914],\n      [-119.97639, 35.99708],\n      [-119.97539, 35.99613],\n      [-119.97458, 35.99535],\n      [-119.97382, 35.9946],\n      [-119.97334, 35.99412],\n      [-119.97275, 35.99358],\n      [-119.9724, 35.99325],\n      [-119.96679, 35.98774],\n      [-119.96316, 35.98421],\n      [-119.96076, 35.98187],\n      [-119.96011, 35.98124],\n      [-119.95783, 35.97904],\n      [-119.95681, 35.97797],\n      [-119.94846, 35.96985],\n      [-119.94666, 35.9681],\n      [-119.94592, 35.96739],\n      [-119.94454, 35.96604],\n      [-119.94275, 35.96427],\n      [-119.94181, 35.96336],\n      [-119.94127, 35.96283],\n      [-119.93535, 35.95713],\n      [-119.93017, 35.95201],\n      [-119.92864, 35.95053],\n      [-119.92566, 35.94767],\n      [-119.92255, 35.94457],\n      [-119.92052, 35.94259],\n      [-119.91941, 35.94152],\n      [-119.91828, 35.9404],\n      [-119.91655, 35.93873],\n      [-119.9155, 35.93771],\n      [-119.91516, 35.9374],\n      [-119.91453, 35.93685],\n      [-119.91387, 35.9362],\n      [-119.91243, 35.9347],\n      [-119.91087, 35.93325],\n      [-119.91037, 35.93275],\n      [-119.90985, 35.93219],\n      [-119.90898, 35.93132],\n      [-119.90544, 35.92787],\n      [-119.90192, 35.92443],\n      [-119.89657, 35.91919],\n      [-119.89414, 35.9168],\n      [-119.89162, 35.91436],\n      [-119.88977, 35.91253],\n      [-119.88756, 35.91036],\n      [-119.88565, 35.90848],\n      [-119.88375, 35.90667],\n      [-119.88298, 35.90592],\n      [-119.88214, 35.90509],\n      [-119.87987, 35.90287],\n      [-119.87857, 35.90163],\n      [-119.87684, 35.89994],\n      [-119.87565, 35.89878],\n      [-119.87433, 35.89746],\n      [-119.87268, 35.89586],\n      [-119.87165, 35.89485],\n      [-119.87072, 35.89396],\n      [-119.86951, 35.89276],\n      [-119.8688, 35.89208],\n      [-119.86691, 35.89022],\n      [-119.86583, 35.88914],\n      [-119.86339, 35.88665],\n      [-119.86136, 35.88447],\n      [-119.85757, 35.88047],\n      [-119.85564, 35.87843],\n      [-119.85308, 35.87577],\n      [-119.85118, 35.87378],\n      [-119.84943, 35.87191],\n      [-119.84898, 35.87146],\n      [-119.84514, 35.86743],\n      [-119.84246, 35.86453],\n      [-119.84159, 35.8636],\n      [-119.83733, 35.85912],\n      [-119.8338, 35.85536],\n      [-119.83001, 35.85134],\n      [-119.82596, 35.84647],\n      [-119.82326, 35.84316],\n      [-119.82144, 35.84098],\n      [-119.81969, 35.83877],\n      [-119.81442, 35.83227],\n      [-119.78278, 35.78987],\n      [-119.77537, 35.77997],\n      [-119.75825, 35.75702],\n      [-119.74235, 35.73574],\n      [-119.73702, 35.72866],\n      [-119.73027, 35.71949],\n      [-119.71769, 35.70258],\n      [-119.69062, 35.6663],\n      [-119.65687, 35.62089],\n      [-119.65121, 35.61329],\n      [-119.64662, 35.60706],\n      [-119.64579, 35.60601],\n      [-119.64516, 35.60528],\n      [-119.64453, 35.60461],\n      [-119.64379, 35.60381],\n      [-119.64304, 35.60305],\n      [-119.64027, 35.60017],\n      [-119.6387, 35.59856],\n      [-119.63396, 35.59362],\n      [-119.62672, 35.58603],\n      [-119.6138, 35.5725],\n      [-119.61075, 35.56948],\n      [-119.60724, 35.56625],\n      [-119.59628, 35.55629],\n      [-119.58664, 35.54743],\n      [-119.57178, 35.5337],\n      [-119.56671, 35.52914],\n      [-119.55891, 35.52187],\n      [-119.55165, 35.51525],\n      [-119.5441, 35.50829],\n      [-119.53946, 35.50406],\n      [-119.5377, 35.50243],\n      [-119.53414, 35.49915],\n      [-119.53279, 35.49791],\n      [-119.53036, 35.49568],\n      [-119.52924, 35.49477],\n      [-119.52876, 35.49439],\n      [-119.52819, 35.49395],\n      [-119.52687, 35.49296],\n      [-119.51708, 35.48588],\n      [-119.50384, 35.47627],\n      [-119.47787, 35.4574],\n      [-119.4756, 35.45581],\n      [-119.47053, 35.45207],\n      [-119.4643, 35.44757],\n      [-119.45779, 35.44282],\n      [-119.45624, 35.44168],\n      [-119.45276, 35.43915],\n      [-119.42732, 35.42065],\n      [-119.42179, 35.41663],\n      [-119.41986, 35.41521],\n      [-119.40235, 35.40237],\n      [-119.39948, 35.40023],\n      [-119.39893, 35.39983],\n      [-119.3978, 35.399],\n      [-119.39695, 35.39841],\n      [-119.39504, 35.39702],\n      [-119.38732, 35.39139],\n      [-119.38137, 35.38709],\n      [-119.37626, 35.38341],\n      [-119.37108, 35.37971],\n      [-119.36665, 35.37647],\n      [-119.36244, 35.37346],\n      [-119.35809, 35.3704],\n      [-119.35351, 35.36716],\n      [-119.34909, 35.36402],\n      [-119.34346, 35.36002],\n      [-119.34003, 35.35763],\n      [-119.33971, 35.35734],\n      [-119.33947, 35.35714],\n      [-119.3391, 35.35685],\n      [-119.33868, 35.35646],\n      [-119.33847, 35.35624],\n      [-119.33829, 35.35598],\n      [-119.33818, 35.35571],\n      [-119.33811, 35.35543],\n      [-119.3381, 35.355],\n      [-119.3381, 35.35494],\n      [-119.33751, 35.35495],\n      [-119.33667, 35.35495],\n      [-119.33541, 35.35495],\n      [-119.33463, 35.35494],\n      [-119.33381, 35.35488],\n      [-119.33305, 35.35486],\n      [-119.33222, 35.35484],\n      [-119.33058, 35.35485],\n      [-119.3236, 35.35481],\n      [-119.30562, 35.35469],\n      [-119.29678, 35.35464],\n      [-119.26946, 35.3545],\n      [-119.25213, 35.35437],\n      [-119.23705, 35.35432],\n      [-119.23434, 35.35431],\n      [-119.23212, 35.35431],\n      [-119.21655, 35.35434],\n      [-119.20764, 35.35436],\n      [-119.19875, 35.35441],\n      [-119.19595, 35.35443],\n      [-119.18988, 35.35445],\n      [-119.18748, 35.35443],\n      [-119.18426, 35.35444],\n      [-119.18098, 35.35441],\n      [-119.18024, 35.35441],\n      [-119.17922, 35.35441],\n      [-119.17824, 35.35449],\n      [-119.17701, 35.35466],\n      [-119.17583, 35.35497],\n      [-119.17501, 35.35529],\n      [-119.17448, 35.35549],\n      [-119.17032, 35.35778],\n      [-119.16879, 35.35845],\n      [-119.16728, 35.35888],\n      [-119.16562, 35.35921],\n      [-119.16441, 35.35937],\n      [-119.16298, 35.35946],\n      [-119.15483, 35.35945],\n      [-119.15348, 35.35953],\n      [-119.15226, 35.35966],\n      [-119.15082, 35.35992],\n      [-119.14553, 35.36096],\n      [-119.14248, 35.36163],\n      [-119.1413, 35.36181],\n      [-119.13973, 35.36187],\n      [-119.13819, 35.36185],\n      [-119.12644, 35.36186],\n      [-119.12329, 35.36185],\n      [-119.11929, 35.36185],\n      [-119.11481, 35.3618],\n      [-119.11303, 35.36179],\n      [-119.11066, 35.36178],\n      [-119.10857, 35.36185],\n      [-119.10171, 35.36186],\n      [-119.10033, 35.36188],\n      [-119.09934, 35.36195],\n      [-119.09824, 35.36215],\n      [-119.09741, 35.36239],\n      [-119.09673, 35.3627],\n      [-119.09595, 35.36311],\n      [-119.09524, 35.36356],\n      [-119.09467, 35.36391],\n      [-119.09401, 35.36439],\n      [-119.09354, 35.36477],\n      [-119.09331, 35.36488],\n      [-119.09312, 35.36494],\n      [-119.09287, 35.365],\n      [-119.09198, 35.36507],\n      [-119.09189, 35.36406],\n      [-119.09184, 35.36311],\n      [-119.09183, 35.363],\n      [-119.09183, 35.3629],\n      [-119.09183, 35.36267],\n      [-119.09186, 35.3624],\n      [-119.0919, 35.36204],\n      [-119.09194, 35.36189],\n      [-119.09211, 35.36125],\n      [-119.09222, 35.36079],\n      [-119.09227, 35.3605],\n      [-119.09231, 35.3602],\n      [-119.09233, 35.35992],\n      [-119.09234, 35.35957],\n      [-119.09233, 35.35895],\n      [-119.09233, 35.35794],\n      [-119.09238, 35.35445],\n      [-119.09237, 35.3543],\n      [-119.09218, 35.3543],\n      [-119.09207, 35.3543],\n      [-119.0899, 35.3543],\n      [-119.08738, 35.35429],\n      [-119.08652, 35.35429],\n      [-119.08293, 35.35428],\n      [-119.08275, 35.35428],\n      [-119.07877, 35.35426],\n      [-119.07827, 35.35426],\n      [-119.07779, 35.35427],\n      [-119.07576, 35.35425],\n      [-119.07565, 35.35425],\n      [-119.07469, 35.35425],\n      [-119.07443, 35.35424],\n      [-119.07365, 35.35423],\n      [-119.07344, 35.35423],\n      [-119.07212, 35.35423],\n      [-119.06942, 35.35421],\n      [-119.06927, 35.35421],\n      [-119.06714, 35.3542],\n      [-119.06405, 35.35419],\n      [-119.06397, 35.35419],\n      [-119.06308, 35.35419],\n      [-119.06242, 35.35417],\n      [-119.06138, 35.35416],\n      [-119.06126, 35.35416],\n      [-119.06107, 35.35416],\n      [-119.06094, 35.35416],\n      [-119.05767, 35.35416],\n      [-119.05752, 35.35415],\n      [-119.0547, 35.35415],\n      [-119.05461, 35.35415],\n      [-119.05452, 35.35415],\n      [-119.0524, 35.35413],\n      [-119.05229, 35.35413],\n      [-119.05219, 35.35413],\n      [-119.05151, 35.35413],\n      [-119.05122, 35.35412],\n      [-119.05096, 35.35413],\n      [-119.05049, 35.35414],\n      [-119.04997, 35.35412],\n      [-119.04954, 35.35412],\n      [-119.04895, 35.35412],\n      [-119.04802, 35.35412],\n      [-119.04787, 35.35411],\n      [-119.04771, 35.35411],\n      [-119.04672, 35.35411],\n      [-119.04507, 35.3541],\n      [-119.04358, 35.35409],\n      [-119.04341, 35.35409],\n      [-119.04347, 35.35399],\n      [-119.04346, 35.3528],\n      [-119.0434, 35.35269],\n      [-119.0425, 35.35268],\n      [-119.04208, 35.35266],\n      [-119.04145, 35.3526],\n      [-119.0412, 35.35258],\n      [-119.04091, 35.35256],\n      [-119.04006, 35.35256],\n      [-119.03849, 35.35255],\n      [-119.03513, 35.35253],\n      [-119.03425, 35.35251],\n      [-119.02978, 35.35247],\n      [-119.02755, 35.35246],\n      [-119.02696, 35.35246],\n      [-119.02561, 35.35245],\n      [-119.02527, 35.35245],\n      [-119.02246, 35.35243],\n      [-119.01526, 35.35238],\n      [-119.01216, 35.35236],\n      [-119.01161, 35.35235],\n      [-119.00747, 35.35233],\n      [-119.00214, 35.35227],\n      [-118.99958, 35.35227],\n      [-118.99444, 35.35226],\n      [-118.99393, 35.35226],\n      [-118.98952, 35.35227],\n      [-118.98889, 35.35228],\n      [-118.98563, 35.35227],\n      [-118.98497, 35.35227],\n      [-118.98097, 35.3523],\n      [-118.97952, 35.35229],\n      [-118.97867, 35.35229],\n      [-118.97675, 35.35228],\n      [-118.97659, 35.35228],\n      [-118.97615, 35.35229],\n      [-118.97556, 35.3523],\n      [-118.97454, 35.35233],\n      [-118.97402, 35.35236],\n      [-118.9737, 35.35238],\n      [-118.97307, 35.35242],\n      [-118.97216, 35.35249],\n      [-118.97113, 35.3526],\n      [-118.97061, 35.35265],\n      [-118.96975, 35.35272],\n      [-118.9689, 35.35278],\n      [-118.96785, 35.35285],\n      [-118.96722, 35.35287],\n      [-118.9665, 35.35287],\n      [-118.9653, 35.35289],\n      [-118.96428, 35.35285],\n      [-118.96316, 35.35279],\n      [-118.96229, 35.35274],\n      [-118.96211, 35.35273],\n      [-118.96125, 35.35268],\n      [-118.96023, 35.35262],\n      [-118.95931, 35.35257],\n      [-118.95789, 35.35247],\n      [-118.9565, 35.35237],\n      [-118.95606, 35.35234],\n      [-118.95563, 35.35232],\n      [-118.95534, 35.3523],\n      [-118.9541, 35.35223],\n      [-118.95254, 35.35215],\n      [-118.95143, 35.3521],\n      [-118.95013, 35.35208],\n      [-118.94952, 35.35208],\n      [-118.94829, 35.3521],\n      [-118.94289, 35.35211],\n      [-118.94138, 35.35212],\n      [-118.94051, 35.35213],\n      [-118.93618, 35.35213],\n      [-118.92736, 35.35219],\n      [-118.9235, 35.3522],\n      [-118.92299, 35.3522],\n      [-118.92001, 35.35223],\n      [-118.91708, 35.35223],\n      [-118.91606, 35.35221],\n      [-118.91504, 35.35218],\n      [-118.9144, 35.35215],\n      [-118.91392, 35.35211],\n      [-118.91308, 35.35206],\n      [-118.90853, 35.35173],\n      [-118.90536, 35.35153],\n      [-118.90028, 35.35118],\n      [-118.89977, 35.35113],\n      [-118.89926, 35.35106],\n      [-118.89875, 35.35099],\n      [-118.89825, 35.3509],\n      [-118.89775, 35.35079],\n      [-118.89726, 35.35068],\n      [-118.89677, 35.35055],\n      [-118.89623, 35.35039],\n      [-118.88327, 35.34658],\n      [-118.88199, 35.34618],\n      [-118.88133, 35.34599],\n      [-118.88067, 35.34582],\n      [-118.87999, 35.34567],\n      [-118.87914, 35.3455],\n      [-118.87407, 35.34471],\n      [-118.87294, 35.34453],\n      [-118.8698, 35.34402],\n      [-118.86406, 35.34311],\n      [-118.86322, 35.34296],\n      [-118.86255, 35.34283],\n      [-118.86188, 35.34268],\n      [-118.86066, 35.34238],\n      [-118.85657, 35.34139],\n      [-118.85225, 35.34035],\n      [-118.84698, 35.3391],\n      [-118.8436, 35.33827],\n      [-118.84282, 35.33808],\n      [-118.83751, 35.33682],\n      [-118.82492, 35.33377],\n      [-118.81121, 35.33044],\n      [-118.80805, 35.32969],\n      [-118.80711, 35.32947],\n      [-118.80686, 35.32941],\n      [-118.80653, 35.32932],\n      [-118.8062, 35.32924],\n      [-118.80587, 35.32914],\n      [-118.80554, 35.32904],\n      [-118.80522, 35.32894],\n      [-118.8049, 35.32883],\n      [-118.80458, 35.32872],\n      [-118.80396, 35.32849],\n      [-118.80331, 35.3282],\n      [-118.80303, 35.32807],\n      [-118.80273, 35.32792],\n      [-118.80244, 35.32777],\n      [-118.80215, 35.32762],\n      [-118.80186, 35.32746],\n      [-118.80157, 35.32729],\n      [-118.80129, 35.32712],\n      [-118.80102, 35.32695],\n      [-118.80075, 35.32677],\n      [-118.80048, 35.32659],\n      [-118.80022, 35.3264],\n      [-118.79996, 35.32621],\n      [-118.7997, 35.32602],\n      [-118.79945, 35.32581],\n      [-118.79921, 35.32561],\n      [-118.79854, 35.32503],\n      [-118.79111, 35.31864],\n      [-118.78638, 35.31449],\n      [-118.7855, 35.31376],\n      [-118.78235, 35.31101],\n      [-118.77969, 35.30873],\n      [-118.7791, 35.30822],\n      [-118.77074, 35.30097],\n      [-118.77056, 35.30082],\n      [-118.76959, 35.29997],\n      [-118.76924, 35.29973],\n      [-118.76863, 35.29929],\n      [-118.76798, 35.29887],\n      [-118.76731, 35.29846],\n      [-118.76663, 35.29808],\n      [-118.76608, 35.29779],\n      [-118.76521, 35.29736],\n      [-118.76353, 35.29666],\n      [-118.76347, 35.29664],\n      [-118.75774, 35.29439],\n      [-118.75713, 35.29415],\n      [-118.75681, 35.29403],\n      [-118.75484, 35.29326],\n      [-118.75299, 35.29252],\n      [-118.75239, 35.29227],\n      [-118.74907, 35.29097],\n      [-118.74754, 35.29035],\n      [-118.74697, 35.29012],\n      [-118.74205, 35.28813],\n      [-118.73447, 35.28511],\n      [-118.73409, 35.28493],\n      [-118.73364, 35.2847],\n      [-118.733, 35.28436],\n      [-118.73059, 35.28299],\n      [-118.7281, 35.28153],\n      [-118.72548, 35.28004],\n      [-118.72441, 35.27952],\n      [-118.72316, 35.27902],\n      [-118.72176, 35.27858],\n      [-118.72017, 35.27822],\n      [-118.71982, 35.27815],\n      [-118.7194, 35.27809],\n      [-118.7178, 35.27788],\n      [-118.71727, 35.27781],\n      [-118.71695, 35.27776],\n      [-118.71623, 35.27764],\n      [-118.71551, 35.27749],\n      [-118.71485, 35.27733],\n      [-118.71451, 35.27723],\n      [-118.71354, 35.27692],\n      [-118.71294, 35.2767],\n      [-118.71237, 35.27646],\n      [-118.71185, 35.27623],\n      [-118.71132, 35.27597],\n      [-118.71074, 35.27567],\n      [-118.70719, 35.27359],\n      [-118.70683, 35.27338],\n      [-118.70636, 35.2731],\n      [-118.7044, 35.27196],\n      [-118.70232, 35.27072],\n      [-118.70009, 35.26943],\n      [-118.69997, 35.26934],\n      [-118.69975, 35.26922],\n      [-118.69952, 35.26911],\n      [-118.69923, 35.26898],\n      [-118.69869, 35.26877],\n      [-118.6984, 35.26868],\n      [-118.69771, 35.26849],\n      [-118.69726, 35.26839],\n      [-118.69671, 35.2683],\n      [-118.69638, 35.26827],\n      [-118.696, 35.26824],\n      [-118.69547, 35.26821],\n      [-118.69517, 35.26822],\n      [-118.69463, 35.26824],\n      [-118.69411, 35.26828],\n      [-118.69383, 35.26832],\n      [-118.69312, 35.26844],\n      [-118.69282, 35.26852],\n      [-118.69248, 35.26861],\n      [-118.69201, 35.26876],\n      [-118.69139, 35.26898],\n      [-118.69038, 35.26932],\n      [-118.68978, 35.26951],\n      [-118.68935, 35.26962],\n      [-118.68874, 35.26976],\n      [-118.68847, 35.26981],\n      [-118.68748, 35.26995],\n      [-118.68679, 35.27001],\n      [-118.68577, 35.27006],\n      [-118.68542, 35.27005],\n      [-118.68441, 35.27002],\n      [-118.6828, 35.26992],\n      [-118.68206, 35.26988],\n      [-118.68158, 35.26986],\n      [-118.68127, 35.26985],\n      [-118.68017, 35.26979],\n      [-118.67924, 35.2697],\n      [-118.6788, 35.26964],\n      [-118.678, 35.2695],\n      [-118.67714, 35.2693],\n      [-118.6739, 35.26837],\n      [-118.67218, 35.26784],\n      [-118.66801, 35.2666],\n      [-118.66754, 35.26646],\n      [-118.66706, 35.26632],\n      [-118.66601, 35.266],\n      [-118.66213, 35.26488],\n      [-118.66116, 35.26462],\n      [-118.66021, 35.26441],\n      [-118.65952, 35.26429],\n      [-118.65834, 35.26416],\n      [-118.65792, 35.26413],\n      [-118.65565, 35.26403],\n      [-118.65517, 35.26402],\n      [-118.64781, 35.26375],\n      [-118.64632, 35.2637],\n      [-118.64574, 35.26365],\n      [-118.64546, 35.26361],\n      [-118.64491, 35.26352],\n      [-118.64396, 35.26328],\n      [-118.64237, 35.26291],\n      [-118.64191, 35.26281],\n      [-118.64122, 35.26272],\n      [-118.64073, 35.2627],\n      [-118.64034, 35.2627],\n      [-118.64004, 35.26271],\n      [-118.63973, 35.26272],\n      [-118.63945, 35.26274],\n      [-118.63927, 35.26275],\n      [-118.63909, 35.26277],\n      [-118.63892, 35.26279],\n      [-118.63854, 35.26285],\n      [-118.63545, 35.26351],\n      [-118.63509, 35.26356],\n      [-118.63475, 35.26359],\n      [-118.63378, 35.26364],\n      [-118.63322, 35.26365],\n      [-118.63049, 35.26369],\n      [-118.62989, 35.26371],\n      [-118.62851, 35.26374],\n      [-118.62807, 35.26373],\n      [-118.62784, 35.2637],\n      [-118.62756, 35.26366],\n      [-118.62741, 35.26362],\n      [-118.62729, 35.26359],\n      [-118.62637, 35.26334],\n      [-118.62499, 35.26292],\n      [-118.62467, 35.26283],\n      [-118.62416, 35.26271],\n      [-118.62355, 35.26259],\n      [-118.62251, 35.26241],\n      [-118.622, 35.26232],\n      [-118.6215, 35.2622],\n      [-118.62122, 35.26212],\n      [-118.62059, 35.26189],\n      [-118.62044, 35.26182],\n      [-118.62027, 35.26173],\n      [-118.61989, 35.26147],\n      [-118.61928, 35.26099],\n      [-118.61884, 35.26066],\n      [-118.61854, 35.26046],\n      [-118.61813, 35.26021],\n      [-118.61748, 35.25984],\n      [-118.61645, 35.2593],\n      [-118.61539, 35.25868],\n      [-118.6151, 35.2585],\n      [-118.6148, 35.25827],\n      [-118.61407, 35.25764],\n      [-118.61368, 35.25733],\n      [-118.61301, 35.25683],\n      [-118.61273, 35.25664],\n      [-118.61238, 35.25645],\n      [-118.61215, 35.25634],\n      [-118.61194, 35.25625],\n      [-118.61164, 35.25615],\n      [-118.61152, 35.25612],\n      [-118.61035, 35.25592],\n      [-118.60978, 35.25581],\n      [-118.60946, 35.25571],\n      [-118.6092, 35.25561],\n      [-118.60883, 35.25542],\n      [-118.60848, 35.25519],\n      [-118.60817, 35.25497],\n      [-118.60765, 35.25453],\n      [-118.60748, 35.2544],\n      [-118.60626, 35.25338],\n      [-118.60488, 35.25216],\n      [-118.60415, 35.25158],\n      [-118.60225, 35.25025],\n      [-118.60184, 35.24999],\n      [-118.6015, 35.24984],\n      [-118.60108, 35.24967],\n      [-118.6007, 35.24955],\n      [-118.59635, 35.24855],\n      [-118.59587, 35.2484],\n      [-118.59566, 35.24834],\n      [-118.59551, 35.24828],\n      [-118.59511, 35.24808],\n      [-118.59467, 35.24779],\n      [-118.5944, 35.24757],\n      [-118.59413, 35.24727],\n      [-118.59387, 35.24692],\n      [-118.59353, 35.24654],\n      [-118.59297, 35.24589],\n      [-118.59258, 35.2455],\n      [-118.59237, 35.24532],\n      [-118.59214, 35.24515],\n      [-118.59134, 35.24467],\n      [-118.59087, 35.2444],\n      [-118.59042, 35.24411],\n      [-118.59016, 35.24387],\n      [-118.58981, 35.24346],\n      [-118.58962, 35.24319],\n      [-118.58944, 35.24291],\n      [-118.58922, 35.24254],\n      [-118.58868, 35.24181],\n      [-118.58829, 35.24144],\n      [-118.58802, 35.24123],\n      [-118.58764, 35.24098],\n      [-118.58724, 35.24076],\n      [-118.58691, 35.24066],\n      [-118.58644, 35.24051],\n      [-118.58448, 35.24018],\n      [-118.58233, 35.23985],\n      [-118.58006, 35.23951],\n      [-118.57989, 35.23947],\n      [-118.57943, 35.23936],\n      [-118.57927, 35.23931],\n      [-118.57898, 35.2392],\n      [-118.57869, 35.23906],\n      [-118.57861, 35.23902],\n      [-118.57826, 35.23881],\n      [-118.57793, 35.23856],\n      [-118.57766, 35.23833],\n      [-118.57746, 35.2381],\n      [-118.57723, 35.23779],\n      [-118.57664, 35.23669],\n      [-118.57604, 35.23557],\n      [-118.57545, 35.23453],\n      [-118.57527, 35.23426],\n      [-118.57513, 35.23406],\n      [-118.57485, 35.23375],\n      [-118.57458, 35.2335],\n      [-118.57427, 35.23329],\n      [-118.5739, 35.23309],\n      [-118.57321, 35.23276],\n      [-118.57055, 35.23135],\n      [-118.57018, 35.23114],\n      [-118.56985, 35.23089],\n      [-118.56964, 35.23071],\n      [-118.56946, 35.23055],\n      [-118.56928, 35.23035],\n      [-118.5691, 35.2301],\n      [-118.56897, 35.22988],\n      [-118.56885, 35.22961],\n      [-118.56873, 35.22928],\n      [-118.56866, 35.22883],\n      [-118.56858, 35.22692],\n      [-118.56853, 35.22604],\n      [-118.56852, 35.22587],\n      [-118.56845, 35.22555],\n      [-118.56841, 35.22542],\n      [-118.56838, 35.22529],\n      [-118.56831, 35.2251],\n      [-118.56822, 35.22491],\n      [-118.56811, 35.22474],\n      [-118.56793, 35.22445],\n      [-118.56777, 35.22426],\n      [-118.56764, 35.22412],\n      [-118.5675, 35.22398],\n      [-118.56734, 35.22384],\n      [-118.56719, 35.22372],\n      [-118.56707, 35.22363],\n      [-118.56673, 35.22343],\n      [-118.56657, 35.22335],\n      [-118.56636, 35.22325],\n      [-118.56623, 35.2232],\n      [-118.56602, 35.22312],\n      [-118.56582, 35.22305],\n      [-118.56564, 35.22301],\n      [-118.56536, 35.22294],\n      [-118.56515, 35.2229],\n      [-118.56492, 35.22287],\n      [-118.5634, 35.22268],\n      [-118.56168, 35.22247],\n      [-118.56121, 35.22243],\n      [-118.56086, 35.22238],\n      [-118.56055, 35.22231],\n      [-118.56016, 35.22222],\n      [-118.55987, 35.22212],\n      [-118.55969, 35.22205],\n      [-118.55952, 35.22198],\n      [-118.55926, 35.22187],\n      [-118.55891, 35.2217],\n      [-118.55858, 35.2215],\n      [-118.55817, 35.2212],\n      [-118.55771, 35.22087],\n      [-118.55669, 35.22015],\n      [-118.55497, 35.21895],\n      [-118.55443, 35.21856],\n      [-118.55422, 35.21839],\n      [-118.55391, 35.21813],\n      [-118.55356, 35.21777],\n      [-118.5533, 35.21749],\n      [-118.55314, 35.21729],\n      [-118.55241, 35.21631],\n      [-118.55184, 35.21559],\n      [-118.55155, 35.21527],\n      [-118.55139, 35.21512],\n      [-118.55123, 35.215],\n      [-118.5509, 35.21478],\n      [-118.55031, 35.21445],\n      [-118.5489, 35.21373],\n      [-118.54617, 35.21233],\n      [-118.54393, 35.21123],\n      [-118.54125, 35.20985],\n      [-118.54021, 35.20935],\n      [-118.53954, 35.20909],\n      [-118.53733, 35.2083],\n      [-118.53711, 35.20822],\n      [-118.53644, 35.208],\n      [-118.53572, 35.20773],\n      [-118.53539, 35.20756],\n      [-118.53496, 35.20728],\n      [-118.53322, 35.20591],\n      [-118.53113, 35.20428],\n      [-118.53033, 35.20367],\n      [-118.53011, 35.20354],\n      [-118.52899, 35.20299],\n      [-118.52827, 35.20268],\n      [-118.52485, 35.20121],\n      [-118.52367, 35.20072],\n      [-118.52217, 35.20005],\n      [-118.51991, 35.19906],\n      [-118.51953, 35.19884],\n      [-118.51921, 35.19865],\n      [-118.51887, 35.19842],\n      [-118.51359, 35.1948],\n      [-118.51058, 35.19275],\n      [-118.50658, 35.19007],\n      [-118.50624, 35.18981],\n      [-118.50592, 35.18952],\n      [-118.50587, 35.18947],\n      [-118.50551, 35.1891],\n      [-118.50539, 35.18894],\n      [-118.50464, 35.1878],\n      [-118.50421, 35.18719],\n      [-118.504, 35.18695],\n      [-118.50359, 35.18652],\n      [-118.50316, 35.18613],\n      [-118.50269, 35.18576],\n      [-118.50166, 35.18507],\n      [-118.50108, 35.18471],\n      [-118.50047, 35.18433],\n      [-118.4994, 35.18379],\n      [-118.49675, 35.18254],\n      [-118.49608, 35.18225],\n      [-118.49582, 35.18214],\n      [-118.49556, 35.18207],\n      [-118.49508, 35.18195],\n      [-118.4948, 35.1819],\n      [-118.49446, 35.18186],\n      [-118.49299, 35.18171],\n      [-118.49111, 35.18148],\n      [-118.49049, 35.18141],\n      [-118.49006, 35.18134],\n      [-118.4898, 35.1813],\n      [-118.48948, 35.18122],\n      [-118.48922, 35.18114],\n      [-118.48897, 35.18105],\n      [-118.48854, 35.18083],\n      [-118.48832, 35.18069],\n      [-118.48811, 35.18053],\n      [-118.48689, 35.17966],\n      [-118.48655, 35.17944],\n      [-118.48625, 35.17929],\n      [-118.4858, 35.17908],\n      [-118.48394, 35.17837],\n      [-118.48301, 35.17796],\n      [-118.48266, 35.17778],\n      [-118.48238, 35.1776],\n      [-118.48209, 35.17739],\n      [-118.4818, 35.17716],\n      [-118.48159, 35.17697],\n      [-118.48121, 35.17656],\n      [-118.48106, 35.17639],\n      [-118.4808, 35.176],\n      [-118.48063, 35.17571],\n      [-118.47999, 35.17465],\n      [-118.47972, 35.17423],\n      [-118.47969, 35.1742],\n      [-118.47949, 35.17393],\n      [-118.47932, 35.17372],\n      [-118.47909, 35.17349],\n      [-118.47757, 35.17218],\n      [-118.47714, 35.17179],\n      [-118.47674, 35.17139],\n      [-118.47575, 35.17037],\n      [-118.47572, 35.17033],\n      [-118.47475, 35.16934],\n      [-118.47458, 35.16915],\n      [-118.47441, 35.16896],\n      [-118.47419, 35.16867],\n      [-118.47405, 35.16843],\n      [-118.47393, 35.16818],\n      [-118.47385, 35.16797],\n      [-118.47374, 35.1675],\n      [-118.4737, 35.16701],\n      [-118.47339, 35.16416],\n      [-118.47339, 35.16408],\n      [-118.47339, 35.1639],\n      [-118.47342, 35.16344],\n      [-118.47348, 35.16307],\n      [-118.47385, 35.16183],\n      [-118.47391, 35.16162],\n      [-118.474, 35.16116],\n      [-118.47402, 35.16093],\n      [-118.47403, 35.16065],\n      [-118.47396, 35.15788],\n      [-118.47395, 35.1571],\n      [-118.47394, 35.15693],\n      [-118.47388, 35.15661],\n      [-118.47379, 35.15628],\n      [-118.47367, 35.15598],\n      [-118.47356, 35.15576],\n      [-118.4706, 35.15146],\n      [-118.47053, 35.15136],\n      [-118.47012, 35.15077],\n      [-118.46989, 35.15035],\n      [-118.46971, 35.14994],\n      [-118.46962, 35.14965],\n      [-118.46957, 35.14946],\n      [-118.46949, 35.14905],\n      [-118.46948, 35.14899],\n      [-118.46947, 35.14887],\n      [-118.46946, 35.14872],\n      [-118.46946, 35.14838],\n      [-118.46946, 35.14831],\n      [-118.46948, 35.14818],\n      [-118.46953, 35.1478],\n      [-118.4697, 35.14695],\n      [-118.46978, 35.14659],\n      [-118.46987, 35.14619],\n      [-118.46993, 35.1459],\n      [-118.46996, 35.14565],\n      [-118.46998, 35.14523],\n      [-118.46995, 35.14484],\n      [-118.4699, 35.14452],\n      [-118.4698, 35.1441],\n      [-118.4697, 35.14384],\n      [-118.46961, 35.14362],\n      [-118.46944, 35.14329],\n      [-118.46927, 35.14297],\n      [-118.46902, 35.14265],\n      [-118.46884, 35.14245],\n      [-118.46842, 35.14201],\n      [-118.46814, 35.14178],\n      [-118.46781, 35.14154],\n      [-118.46754, 35.14136],\n      [-118.4673, 35.14123],\n      [-118.46702, 35.14109],\n      [-118.46662, 35.14091],\n      [-118.46626, 35.14078],\n      [-118.46582, 35.14065],\n      [-118.46533, 35.14055],\n      [-118.4644, 35.14039],\n      [-118.46348, 35.14023],\n      [-118.46132, 35.13987],\n      [-118.46058, 35.13976],\n      [-118.4599, 35.13969],\n      [-118.45923, 35.13965],\n      [-118.4581, 35.13964],\n      [-118.45558, 35.13964],\n      [-118.44595, 35.13963],\n      [-118.43658, 35.13962],\n      [-118.43606, 35.13961],\n      [-118.4354, 35.13955],\n      [-118.43485, 35.13947],\n      [-118.43424, 35.13934],\n      [-118.43357, 35.13916],\n      [-118.43318, 35.13902],\n      [-118.43241, 35.1387],\n      [-118.41476, 35.13103],\n      [-118.41446, 35.13089],\n      [-118.41419, 35.13075],\n      [-118.41381, 35.13052],\n      [-118.41339, 35.13022],\n      [-118.41308, 35.12996],\n      [-118.41282, 35.12972],\n      [-118.41249, 35.12936],\n      [-118.41222, 35.12901],\n      [-118.41204, 35.12873],\n      [-118.41188, 35.12846],\n      [-118.41172, 35.1281],\n      [-118.4116, 35.12782],\n      [-118.41127, 35.127],\n      [-118.41106, 35.12648],\n      [-118.41075, 35.1259],\n      [-118.41057, 35.12563],\n      [-118.41032, 35.12529],\n      [-118.41009, 35.12502],\n      [-118.40985, 35.12476],\n      [-118.40952, 35.12444],\n      [-118.40911, 35.1241],\n      [-118.40886, 35.12391],\n      [-118.40845, 35.12364],\n      [-118.40821, 35.1235],\n      [-118.40787, 35.12332],\n      [-118.40714, 35.12298],\n      [-118.40691, 35.12291],\n      [-118.40645, 35.12275],\n      [-118.40537, 35.12247],\n      [-118.40288, 35.1218],\n      [-118.37913, 35.1155],\n      [-118.37846, 35.11535],\n      [-118.37786, 35.11526],\n      [-118.37747, 35.11522],\n      [-118.37705, 35.11519],\n      [-118.37587, 35.11514],\n      [-118.37386, 35.11507],\n      [-118.37244, 35.11503],\n      [-118.37016, 35.11496],\n      [-118.36819, 35.1149],\n      [-118.36694, 35.11477],\n      [-118.3664, 35.11467],\n      [-118.36572, 35.1145],\n      [-118.36025, 35.11293],\n      [-118.35715, 35.11204],\n      [-118.35304, 35.11087],\n      [-118.35251, 35.11074],\n      [-118.35189, 35.11061],\n      [-118.35121, 35.11049],\n      [-118.35051, 35.11039],\n      [-118.34978, 35.11032],\n      [-118.34899, 35.11027],\n      [-118.34816, 35.11025],\n      [-118.32717, 35.11022],\n      [-118.32682, 35.11022],\n      [-118.32605, 35.11022],\n      [-118.32514, 35.11022],\n      [-118.32491, 35.11022],\n      [-118.32469, 35.11022],\n      [-118.32445, 35.11021],\n      [-118.32419, 35.11019],\n      [-118.324, 35.11017],\n      [-118.3238, 35.11015],\n      [-118.3236, 35.11013],\n      [-118.32341, 35.1101],\n      [-118.32321, 35.11006],\n      [-118.32299, 35.11001],\n      [-118.32281, 35.10997],\n      [-118.32263, 35.10993],\n      [-118.3224, 35.10986],\n      [-118.32196, 35.10974],\n      [-118.32158, 35.10959],\n      [-118.32118, 35.10942],\n      [-118.32086, 35.10927],\n      [-118.32053, 35.10909],\n      [-118.31995, 35.10871],\n      [-118.31806, 35.10743],\n      [-118.31773, 35.10721],\n      [-118.31603, 35.10605],\n      [-118.31595, 35.106],\n      [-118.31529, 35.10555],\n      [-118.31522, 35.1055],\n      [-118.31455, 35.10505],\n      [-118.31447, 35.10499],\n      [-118.3139, 35.1046],\n      [-118.31379, 35.10453],\n      [-118.31258, 35.10371],\n      [-118.31185, 35.10322],\n      [-118.3112, 35.10278],\n      [-118.3108, 35.1025],\n      [-118.31046, 35.10222],\n      [-118.31027, 35.10206],\n      [-118.31008, 35.10187],\n      [-118.3097, 35.10143],\n      [-118.30952, 35.10121],\n      [-118.30935, 35.10097],\n      [-118.30865, 35.09992],\n      [-118.3084, 35.09957],\n      [-118.3082, 35.09928],\n      [-118.30797, 35.099],\n      [-118.30778, 35.09879],\n      [-118.30753, 35.09856],\n      [-118.30718, 35.09828],\n      [-118.30674, 35.09799],\n      [-118.30649, 35.09784],\n      [-118.30621, 35.09769],\n      [-118.30595, 35.09757],\n      [-118.30563, 35.09745],\n      [-118.30533, 35.09734],\n      [-118.30503, 35.09726],\n      [-118.30472, 35.09718],\n      [-118.30439, 35.09712],\n      [-118.3041, 35.09707],\n      [-118.30378, 35.09704],\n      [-118.30332, 35.09701],\n      [-118.30298, 35.09701],\n      [-118.30244, 35.09705],\n      [-118.30197, 35.09711],\n      [-118.3017, 35.09717],\n      [-118.30138, 35.09724],\n      [-118.30031, 35.0975],\n      [-118.29825, 35.09801],\n      [-118.29662, 35.09841],\n      [-118.29575, 35.09863],\n      [-118.28984, 35.10008],\n      [-118.2876, 35.10063],\n      [-118.28666, 35.10086],\n      [-118.28576, 35.10106],\n      [-118.28458, 35.10133],\n      [-118.28381, 35.10151],\n      [-118.28235, 35.10187],\n      [-118.28136, 35.10213],\n      [-118.27714, 35.10316],\n      [-118.2733, 35.10409],\n      [-118.27208, 35.10435],\n      [-118.27135, 35.10447],\n      [-118.27092, 35.10455],\n      [-118.2705, 35.10461],\n      [-118.26892, 35.10481],\n      [-118.26828, 35.10487],\n      [-118.26704, 35.10497],\n      [-118.26587, 35.10502],\n      [-118.26447, 35.10503],\n      [-118.26374, 35.10502],\n      [-118.26238, 35.10497],\n      [-118.26086, 35.10488],\n      [-118.26012, 35.10485],\n      [-118.25936, 35.10482],\n      [-118.25855, 35.10483],\n      [-118.25766, 35.10487],\n      [-118.25681, 35.10494],\n      [-118.25624, 35.105],\n      [-118.25546, 35.10512],\n      [-118.25442, 35.10532],\n      [-118.2539, 35.10544],\n      [-118.25337, 35.10557],\n      [-118.25185, 35.106],\n      [-118.24996, 35.10654],\n      [-118.24934, 35.10673],\n      [-118.24884, 35.1069],\n      [-118.24835, 35.10709],\n      [-118.24772, 35.10735],\n      [-118.24645, 35.10794],\n      [-118.24423, 35.10896],\n      [-118.24091, 35.11049],\n      [-118.24008, 35.11087],\n      [-118.2388, 35.11146],\n      [-118.23727, 35.11216],\n      [-118.23659, 35.11247],\n      [-118.23536, 35.11304],\n      [-118.23393, 35.1137],\n      [-118.23058, 35.11525],\n      [-118.22712, 35.11684],\n      [-118.22668, 35.11704],\n      [-118.22625, 35.11722],\n      [-118.22579, 35.11739],\n      [-118.22542, 35.11751],\n      [-118.22507, 35.11762],\n      [-118.22473, 35.11771],\n      [-118.22418, 35.11784],\n      [-118.22371, 35.11793],\n      [-118.22329, 35.118],\n      [-118.22291, 35.11805],\n      [-118.22251, 35.11809],\n      [-118.2221, 35.11813],\n      [-118.22176, 35.11814],\n      [-118.22145, 35.11815],\n      [-118.22102, 35.11816],\n      [-118.22036, 35.11813],\n      [-118.21989, 35.11809],\n      [-118.2192, 35.11803],\n      [-118.21762, 35.11789],\n      [-118.21613, 35.11775],\n      [-118.21471, 35.11764],\n      [-118.21338, 35.11755],\n      [-118.21103, 35.11738],\n      [-118.2016, 35.11672],\n      [-118.20048, 35.11664],\n      [-118.19667, 35.11637],\n      [-118.19396, 35.11618],\n      [-118.19218, 35.11601],\n      [-118.19014, 35.11578],\n      [-118.1877, 35.11544],\n      [-118.18649, 35.11523],\n      [-118.18542, 35.11503],\n      [-118.18411, 35.11478],\n      [-118.18309, 35.11455],\n      [-118.17335, 35.11173],\n      [-118.17122, 35.11092],\n      [-118.17017, 35.1105],\n      [-118.16913, 35.11006],\n      [-118.16741, 35.10928],\n      [-118.15873, 35.10526],\n      [-118.15021, 35.10132],\n      [-118.14446, 35.09865],\n      [-118.13804, 35.09566],\n      [-118.13435, 35.09397],\n      [-118.13344, 35.09355],\n      [-118.13134, 35.09258],\n      [-118.12926, 35.09161],\n      [-118.12762, 35.09074],\n      [-118.12624, 35.08993],\n      [-118.12535, 35.08934],\n      [-118.12435, 35.08865],\n      [-118.12224, 35.08696],\n      [-118.12143, 35.08624],\n      [-118.12068, 35.08551],\n      [-118.12013, 35.08494],\n      [-118.11959, 35.08437],\n      [-118.11886, 35.0835],\n      [-118.11813, 35.08258],\n      [-118.11745, 35.08162],\n      [-118.11659, 35.0803],\n      [-118.11602, 35.0793],\n      [-118.11572, 35.07875],\n      [-118.11533, 35.07792],\n      [-118.11488, 35.07691],\n      [-118.11459, 35.07616],\n      [-118.11432, 35.07541],\n      [-118.11383, 35.07371],\n      [-118.11369, 35.07307],\n      [-118.11323, 35.07011],\n      [-118.11316, 35.06898],\n      [-118.11315, 35.06784],\n      [-118.11312, 35.06037],\n      [-118.11309, 35.05126],\n      [-118.11304, 35.05023],\n      [-118.11297, 35.04958],\n      [-118.11289, 35.04893],\n      [-118.11279, 35.04837],\n      [-118.11271, 35.04794],\n      [-118.11255, 35.04724],\n      [-118.11219, 35.04598],\n      [-118.11159, 35.04438],\n      [-118.11129, 35.04373],\n      [-118.11099, 35.0431],\n      [-118.11052, 35.04225],\n      [-118.11003, 35.04142],\n      [-118.10968, 35.04089],\n      [-118.10933, 35.04039],\n      [-118.10864, 35.03948],\n      [-118.10822, 35.03898],\n      [-118.10707, 35.03772],\n      [-118.1065, 35.03716],\n      [-118.1061, 35.03679],\n      [-118.10569, 35.03643],\n      [-118.10496, 35.03582],\n      [-118.1042, 35.03524],\n      [-118.10309, 35.03446],\n      [-118.1025, 35.03408],\n      [-118.10102, 35.03329],\n      [-118.09911, 35.03235],\n      [-118.09715, 35.03153],\n      [-118.09529, 35.03091],\n      [-118.09346, 35.03038],\n      [-118.09158, 35.03002],\n      [-118.0895, 35.02966],\n      [-118.08685, 35.02925],\n      [-118.08211, 35.02854],\n      [-118.07841, 35.02797],\n      [-118.07486, 35.02743],\n      [-118.06909, 35.02655],\n      [-118.06601, 35.02609],\n      [-118.06295, 35.02563],\n      [-118.06192, 35.02547],\n      [-118.06028, 35.02522],\n      [-118.05966, 35.02512],\n      [-118.05843, 35.02489],\n      [-118.05802, 35.0248],\n      [-118.0564, 35.02444],\n      [-118.05578, 35.02431],\n      [-118.05489, 35.02414],\n      [-118.05396, 35.02398],\n      [-118.05341, 35.0239],\n      [-118.05166, 35.02363],\n      [-118.04897, 35.02323],\n      [-118.04591, 35.02277],\n      [-118.04447, 35.02254],\n      [-118.04251, 35.02224],\n      [-118.03358, 35.02087],\n      [-118.0305, 35.02042],\n      [-118.0276, 35.01997],\n      [-118.02605, 35.01973],\n      [-118.02487, 35.01956],\n      [-118.02356, 35.01939],\n      [-118.0225, 35.0193],\n      [-118.01939, 35.01908],\n      [-118.0189, 35.01905],\n      [-118.01788, 35.01898],\n      [-118.01638, 35.01889],\n      [-118.01557, 35.01882],\n      [-118.01328, 35.01866],\n      [-118.0081, 35.0183],\n      [-118.0054, 35.01812],\n      [-118.00242, 35.01792],\n      [-118.00167, 35.01787],\n      [-118.00001, 35.01776],\n      [-117.99729, 35.01756],\n      [-117.99433, 35.01736],\n      [-117.99304, 35.01728],\n      [-117.99136, 35.01718],\n      [-117.99097, 35.01714],\n      [-117.98941, 35.01703],\n      [-117.98652, 35.0168],\n      [-117.98169, 35.01651],\n      [-117.97711, 35.01619],\n      [-117.97609, 35.01612],\n      [-117.97396, 35.01596],\n      [-117.97246, 35.01586],\n      [-117.97136, 35.01578],\n      [-117.97072, 35.01573],\n      [-117.96401, 35.01528],\n      [-117.95585, 35.01472],\n      [-117.95415, 35.0146],\n      [-117.95191, 35.01444],\n      [-117.94151, 35.01373],\n      [-117.93202, 35.01307],\n      [-117.92916, 35.01287],\n      [-117.92127, 35.01233],\n      [-117.91692, 35.01202],\n      [-117.9152, 35.01191],\n      [-117.91107, 35.01163],\n      [-117.9089, 35.01149],\n      [-117.90277, 35.01105],\n      [-117.89868, 35.01077],\n      [-117.89665, 35.01062],\n      [-117.89051, 35.0102],\n      [-117.88676, 35.00995],\n      [-117.88549, 35.00984],\n      [-117.88149, 35.00958],\n      [-117.88077, 35.00953],\n      [-117.87825, 35.00937],\n      [-117.87663, 35.00924],\n      [-117.86419, 35.00839],\n      [-117.8631, 35.00832],\n      [-117.85742, 35.00794],\n      [-117.85065, 35.00746],\n      [-117.84555, 35.0071],\n      [-117.84006, 35.00671],\n      [-117.83917, 35.00664],\n      [-117.83752, 35.00653],\n      [-117.8359, 35.00642],\n      [-117.83385, 35.00627],\n      [-117.83002, 35.006],\n      [-117.82005, 35.0053],\n      [-117.8169, 35.00507],\n      [-117.8105, 35.00463],\n      [-117.80859, 35.0045],\n      [-117.80411, 35.00421],\n      [-117.79767, 35.00375],\n      [-117.79385, 35.00349],\n      [-117.79129, 35.00329],\n      [-117.78824, 35.00308],\n      [-117.77992, 35.0025],\n      [-117.77795, 35.00238],\n      [-117.77622, 35.00239],\n      [-117.77503, 35.00247],\n      [-117.77435, 35.00252],\n      [-117.77353, 35.00262],\n      [-117.77038, 35.00298],\n      [-117.76795, 35.00324],\n      [-117.76247, 35.00392],\n      [-117.75751, 35.00448],\n      [-117.75413, 35.0049],\n      [-117.75174, 35.00518],\n      [-117.75027, 35.00537],\n      [-117.74621, 35.00583],\n      [-117.74396, 35.0061],\n      [-117.74182, 35.00636],\n      [-117.74041, 35.00654],\n      [-117.73973, 35.00662],\n      [-117.73949, 35.00664],\n      [-117.73875, 35.00668],\n      [-117.73864, 35.00669],\n      [-117.73785, 35.00671],\n      [-117.73463, 35.00668],\n      [-117.73283, 35.00667],\n      [-117.72312, 35.00664],\n      [-117.72201, 35.00665],\n      [-117.71897, 35.00665],\n      [-117.71418, 35.00664],\n      [-117.71164, 35.00661],\n      [-117.70861, 35.00661],\n      [-117.70393, 35.00661],\n      [-117.70369, 35.00661],\n      [-117.70304, 35.0066],\n      [-117.7029, 35.0066],\n      [-117.70236, 35.00659],\n      [-117.70021, 35.00658],\n      [-117.69743, 35.00658],\n      [-117.69463, 35.00657],\n      [-117.69398, 35.00656],\n      [-117.69128, 35.00658],\n      [-117.69041, 35.00656],\n      [-117.68718, 35.00656],\n      [-117.67934, 35.00653],\n      [-117.67346, 35.00652],\n      [-117.67278, 35.00651],\n      [-117.66854, 35.00648],\n      [-117.66761, 35.00648],\n      [-117.66744, 35.00649],\n      [-117.66614, 35.00654],\n      [-117.66531, 35.00663],\n      [-117.66492, 35.00668],\n      [-117.6641, 35.00681],\n      [-117.66327, 35.00698],\n      [-117.66258, 35.00714],\n      [-117.662, 35.0073],\n      [-117.66148, 35.00747],\n      [-117.66036, 35.00788],\n      [-117.65761, 35.00892],\n      [-117.65681, 35.00918],\n      [-117.65651, 35.0093],\n      [-117.65627, 35.00938],\n      [-117.65536, 35.0096],\n      [-117.6548, 35.00973],\n      [-117.65433, 35.00981],\n      [-117.65312, 35.00999],\n      [-117.65267, 35.01003],\n      [-117.65206, 35.01007],\n      [-117.6515, 35.01008],\n      [-117.6509, 35.01008],\n      [-117.65026, 35.01007],\n      [-117.64948, 35.01006],\n      [-117.64887, 35.01005],\n      [-117.64776, 35.01005],\n      [-117.64767, 35.01005],\n      [-117.64632, 35.01004],\n      [-117.6447, 35.01003],\n      [-117.64209, 35.01001],\n      [-117.63519, 35.01],\n      [-117.63253, 35.00999],\n      [-117.62768, 35.00998],\n      [-117.62738, 35.00998],\n      [-117.62696, 35.00997],\n      [-117.62639, 35.00994],\n      [-117.62575, 35.00988],\n      [-117.62499, 35.00979],\n      [-117.62434, 35.00965],\n      [-117.62351, 35.00941],\n      [-117.62278, 35.00912],\n      [-117.62198, 35.00875],\n      [-117.6211, 35.00824],\n      [-117.62033, 35.00771],\n      [-117.61968, 35.00712],\n      [-117.61919, 35.00662],\n      [-117.61866, 35.00596],\n      [-117.61841, 35.00556],\n      [-117.61798, 35.00485],\n      [-117.61766, 35.00411],\n      [-117.61731, 35.00319],\n      [-117.61699, 35.00243],\n      [-117.61668, 35.00188],\n      [-117.61631, 35.00131],\n      [-117.61599, 35.00089],\n      [-117.61556, 35.00042],\n      [-117.61508, 34.99997],\n      [-117.61467, 34.99963],\n      [-117.61394, 34.99912],\n      [-117.61309, 34.99861],\n      [-117.61276, 34.99846],\n      [-117.6126, 34.99839],\n      [-117.612, 34.99814],\n      [-117.61148, 34.99794],\n      [-117.61097, 34.99777],\n      [-117.61047, 34.99765],\n      [-117.60983, 34.99753],\n      [-117.60933, 34.99744],\n      [-117.60848, 34.99734],\n      [-117.60719, 34.99726],\n      [-117.60585, 34.99718],\n      [-117.59704, 34.99669],\n      [-117.59018, 34.99631],\n      [-117.5895, 34.99622],\n      [-117.58899, 34.9961],\n      [-117.58844, 34.9959],\n      [-117.5884, 34.99587],\n      [-117.58808, 34.9957],\n      [-117.58752, 34.99533],\n      [-117.5873, 34.99518],\n      [-117.5867, 34.99486],\n      [-117.58607, 34.99463],\n      [-117.58545, 34.9945],\n      [-117.58448, 34.99443],\n      [-117.58256, 34.99434],\n      [-117.58043, 34.99426],\n      [-117.57941, 34.99422],\n      [-117.57779, 34.99412],\n      [-117.5764, 34.99407],\n      [-117.57158, 34.99384],\n      [-117.56254, 34.9934],\n      [-117.56184, 34.99336],\n      [-117.55893, 34.99321],\n      [-117.5569, 34.99311],\n      [-117.55359, 34.99295],\n      [-117.55306, 34.99293],\n      [-117.54838, 34.99269],\n      [-117.54784, 34.99267],\n      [-117.54601, 34.99257],\n      [-117.54498, 34.99251],\n      [-117.54404, 34.99247],\n      [-117.5416, 34.99235],\n      [-117.53959, 34.9922],\n      [-117.53631, 34.99188],\n      [-117.53474, 34.99173],\n      [-117.52679, 34.99092],\n      [-117.52633, 34.99088],\n      [-117.5242, 34.99066],\n      [-117.52321, 34.9906],\n      [-117.52216, 34.99054],\n      [-117.51981, 34.9904],\n      [-117.51798, 34.99029],\n      [-117.51725, 34.99026],\n      [-117.51494, 34.99011],\n      [-117.51119, 34.98989],\n      [-117.5085, 34.98974],\n      [-117.50742, 34.98968],\n      [-117.50182, 34.98934],\n      [-117.49922, 34.98919],\n      [-117.49653, 34.98904],\n      [-117.4958, 34.98896],\n      [-117.4952, 34.98886],\n      [-117.49464, 34.98869],\n      [-117.49411, 34.98851],\n      [-117.48609, 34.98437],\n      [-117.47707, 34.97968],\n      [-117.46673, 34.97432],\n      [-117.45728, 34.96944],\n      [-117.45368, 34.96758],\n      [-117.44516, 34.96319],\n      [-117.44435, 34.96283],\n      [-117.44174, 34.96175],\n      [-117.44017, 34.96108],\n      [-117.43935, 34.96066],\n      [-117.43442, 34.95806],\n      [-117.43232, 34.95703],\n      [-117.42729, 34.95438],\n      [-117.42514, 34.95327],\n      [-117.42448, 34.95293],\n      [-117.42338, 34.95237],\n      [-117.42275, 34.95204],\n      [-117.42186, 34.9515],\n      [-117.42021, 34.95053],\n      [-117.4196, 34.95019],\n      [-117.41873, 34.94972],\n      [-117.4181, 34.94944],\n      [-117.41728, 34.9491],\n      [-117.41619, 34.94868],\n      [-117.4148, 34.94819],\n      [-117.40421, 34.94481],\n      [-117.40148, 34.94387],\n      [-117.39799, 34.94265],\n      [-117.39746, 34.94248],\n      [-117.38371, 34.93814],\n      [-117.37592, 34.93567],\n      [-117.37153, 34.93426],\n      [-117.37068, 34.93399],\n      [-117.36625, 34.9326],\n      [-117.36466, 34.93208],\n      [-117.36121, 34.93103],\n      [-117.35677, 34.92959],\n      [-117.35441, 34.92884],\n      [-117.34365, 34.92542],\n      [-117.34289, 34.92521],\n      [-117.34218, 34.92503],\n      [-117.34134, 34.92487],\n      [-117.34045, 34.92473],\n      [-117.33965, 34.92465],\n      [-117.33839, 34.92457],\n      [-117.32988, 34.92433],\n      [-117.3245, 34.92417],\n      [-117.31808, 34.92398],\n      [-117.31214, 34.92382],\n      [-117.30959, 34.92377],\n      [-117.30494, 34.9236],\n      [-117.30342, 34.92352],\n      [-117.30075, 34.92334],\n      [-117.29769, 34.92322],\n      [-117.2943, 34.92311],\n      [-117.29187, 34.92305],\n      [-117.28904, 34.92295],\n      [-117.28846, 34.92293],\n      [-117.27658, 34.92258],\n      [-117.26955, 34.92236],\n      [-117.26795, 34.9223],\n      [-117.26404, 34.92219],\n      [-117.26324, 34.92217],\n      [-117.26242, 34.92215],\n      [-117.26029, 34.92209],\n      [-117.25944, 34.92208],\n      [-117.25858, 34.92212],\n      [-117.25643, 34.92227],\n      [-117.25489, 34.9223],\n      [-117.25211, 34.92223],\n      [-117.25096, 34.92218],\n      [-117.25073, 34.92218],\n      [-117.25036, 34.92216],\n      [-117.24157, 34.92192],\n      [-117.23105, 34.92177],\n      [-117.22747, 34.92175],\n      [-117.22418, 34.92174],\n      [-117.2198, 34.92172],\n      [-117.21833, 34.92171],\n      [-117.21534, 34.92168],\n      [-117.21308, 34.92167],\n      [-117.21102, 34.92168],\n      [-117.20858, 34.92169],\n      [-117.20663, 34.9217],\n      [-117.20337, 34.92171],\n      [-117.19778, 34.92171],\n      [-117.19561, 34.92171],\n      [-117.19328, 34.92175],\n      [-117.18904, 34.92174],\n      [-117.18018, 34.9219],\n      [-117.17798, 34.92191],\n      [-117.17673, 34.92193],\n      [-117.17586, 34.92194],\n      [-117.1714, 34.922],\n      [-117.16262, 34.92203],\n      [-117.15821, 34.92203],\n      [-117.15377, 34.92203],\n      [-117.14488, 34.92206],\n      [-117.14292, 34.922],\n      [-117.14244, 34.92199],\n      [-117.14212, 34.92196],\n      [-117.1417, 34.92189],\n      [-117.14126, 34.92181],\n      [-117.13524, 34.92049],\n      [-117.12076, 34.91727],\n      [-117.1191, 34.9169],\n      [-117.11897, 34.91687],\n      [-117.11884, 34.91684],\n      [-117.11839, 34.91674],\n      [-117.11095, 34.91512],\n      [-117.10934, 34.91477],\n      [-117.10778, 34.91443],\n      [-117.10718, 34.91425],\n      [-117.10581, 34.91388],\n      [-117.10456, 34.91352],\n      [-117.10442, 34.91348],\n      [-117.1032, 34.91315],\n      [-117.10221, 34.91291],\n      [-117.1015, 34.91274],\n      [-117.10087, 34.91255],\n      [-117.10015, 34.91229],\n      [-117.09956, 34.91203],\n      [-117.09892, 34.9117],\n      [-117.09828, 34.91128],\n      [-117.09771, 34.91088],\n      [-117.09729, 34.91051],\n      [-117.09689, 34.91012],\n      [-117.0965, 34.90969],\n      [-117.09616, 34.90931],\n      [-117.09584, 34.90888],\n      [-117.09549, 34.90831],\n      [-117.09528, 34.90792],\n      [-117.09499, 34.90721],\n      [-117.09478, 34.90668],\n      [-117.0945, 34.90595],\n      [-117.09428, 34.90521],\n      [-117.09414, 34.90459],\n      [-117.09406, 34.90397],\n      [-117.09401, 34.90327],\n      [-117.09395, 34.90216],\n      [-117.09397, 34.89917],\n      [-117.09404, 34.8969],\n      [-117.09403, 34.89507],\n      [-117.09404, 34.89333],\n      [-117.09404, 34.89279],\n      [-117.09405, 34.89227],\n      [-117.09403, 34.89124],\n      [-117.09403, 34.89015],\n      [-117.094, 34.88963],\n      [-117.09391, 34.88912],\n      [-117.09374, 34.88851],\n      [-117.09349, 34.88789],\n      [-117.09322, 34.88742],\n      [-117.09297, 34.88698],\n      [-117.09259, 34.88639],\n      [-117.09189, 34.88551],\n      [-117.09145, 34.88496],\n      [-117.09071, 34.88424],\n      [-117.09006, 34.88364],\n      [-117.08951, 34.88311],\n      [-117.08829, 34.88194],\n      [-117.08731, 34.88101],\n      [-117.08624, 34.88002],\n      [-117.08551, 34.87926],\n      [-117.08425, 34.87806],\n      [-117.08295, 34.87677],\n      [-117.08222, 34.87608],\n      [-117.08125, 34.87513],\n      [-117.08048, 34.87434],\n      [-117.0792, 34.87311],\n      [-117.07845, 34.87241],\n      [-117.0775, 34.87153],\n      [-117.07686, 34.8709],\n      [-117.07629, 34.87043],\n      [-117.07598, 34.87022],\n      [-117.07551, 34.87001],\n      [-117.07508, 34.86987],\n      [-117.07468, 34.86979],\n      [-117.07421, 34.86975],\n      [-117.07369, 34.86973],\n      [-117.07326, 34.86977],\n      [-117.07272, 34.86988],\n      [-117.07222, 34.87007],\n      [-117.07178, 34.87028],\n      [-117.07135, 34.87057],\n      [-117.07092, 34.87096],\n      [-117.07066, 34.87131],\n      [-117.07041, 34.87177],\n      [-117.07027, 34.87223],\n      [-117.07021, 34.8727],\n      [-117.07027, 34.87325],\n      [-117.07038, 34.87417],\n      [-117.07041, 34.87482],\n      [-117.07031, 34.87535],\n      [-117.0701, 34.87582],\n      [-117.06978, 34.87628],\n      [-117.06935, 34.87678],\n      [-117.06885, 34.87726],\n      [-117.06825, 34.8778],\n      [-117.06758, 34.87846],\n      [-117.06375, 34.88175],\n      [-117.06284, 34.88251],\n      [-117.0624, 34.8828],\n      [-117.06185, 34.88311],\n      [-117.06118, 34.88342],\n      [-117.0605, 34.88369],\n      [-117.06005, 34.88384],\n      [-117.05959, 34.88398],\n      [-117.05906, 34.8841],\n      [-117.05851, 34.88421],\n      [-117.05673, 34.8845],\n      [-117.05597, 34.88462],\n      [-117.05385, 34.88492],\n      [-117.05005, 34.88533],\n      [-117.0478, 34.88557],\n      [-117.04733, 34.88562],\n      [-117.04666, 34.88569],\n      [-117.04523, 34.88584],\n      [-117.04292, 34.88596],\n      [-117.03559, 34.88597],\n      [-117.02945, 34.88592],\n      [-117.02231, 34.88584],\n      [-117.01758, 34.88581],\n      [-117.01316, 34.88581],\n      [-117.01183, 34.88578],\n      [-117.01057, 34.88583],\n      [-117.00962, 34.88594],\n      [-117.00782, 34.88623],\n      [-117.00663, 34.88642],\n      [-117.00535, 34.88656],\n      [-117.00401, 34.88664],\n      [-117.00212, 34.88664],\n      [-116.9987, 34.88662],\n      [-116.99816, 34.88661],\n      [-116.99667, 34.88658],\n      [-116.99558, 34.88652],\n      [-116.99392, 34.88636],\n      [-116.99369, 34.88633],\n      [-116.99285, 34.8862],\n      [-116.99206, 34.88606],\n      [-116.9885, 34.88521],\n      [-116.97586, 34.88196],\n      [-116.97392, 34.88144],\n      [-116.97333, 34.88125],\n      [-116.97246, 34.8809],\n      [-116.97184, 34.88062],\n      [-116.97133, 34.88036],\n      [-116.97058, 34.87992],\n      [-116.97007, 34.87958],\n      [-116.96873, 34.87857],\n      [-116.96825, 34.87822],\n      [-116.96645, 34.87686],\n      [-116.96486, 34.87563],\n      [-116.96172, 34.87323],\n      [-116.95805, 34.87042],\n      [-116.9554, 34.86887],\n      [-116.95476, 34.86858],\n      [-116.95414, 34.86832],\n      [-116.9537, 34.86816],\n      [-116.95274, 34.86785],\n      [-116.95166, 34.86755],\n      [-116.93667, 34.86445],\n      [-116.9355, 34.86421],\n      [-116.93246, 34.86358],\n      [-116.93205, 34.8635],\n      [-116.9075, 34.85835],\n      [-116.90208, 34.85731],\n      [-116.89555, 34.85595],\n      [-116.89504, 34.85584],\n      [-116.88426, 34.85362],\n      [-116.88204, 34.85316],\n      [-116.87795, 34.85231],\n      [-116.87415, 34.85152],\n      [-116.86562, 34.84977],\n      [-116.85603, 34.84778],\n      [-116.85505, 34.8476],\n      [-116.85097, 34.84706],\n      [-116.82199, 34.84336],\n      [-116.80884, 34.84172],\n      [-116.80694, 34.84148],\n      [-116.80674, 34.84145],\n      [-116.80369, 34.84106],\n      [-116.80313, 34.84099],\n      [-116.79874, 34.84043],\n      [-116.79728, 34.84025],\n      [-116.79562, 34.84004],\n      [-116.79038, 34.83936],\n      [-116.78618, 34.83884],\n      [-116.7821, 34.83831],\n      [-116.78023, 34.83808],\n      [-116.77984, 34.83803],\n      [-116.77473, 34.83737],\n      [-116.76165, 34.83571],\n      [-116.76144, 34.83568],\n      [-116.75887, 34.83538],\n      [-116.75468, 34.83502],\n      [-116.74788, 34.83443],\n      [-116.74745, 34.83439],\n      [-116.73897, 34.83368],\n      [-116.73848, 34.83364],\n      [-116.71823, 34.8319],\n      [-116.71782, 34.83184],\n      [-116.70796, 34.83101],\n      [-116.70191, 34.83048],\n      [-116.7016, 34.83045],\n      [-116.69884, 34.83021],\n      [-116.6945, 34.82983],\n      [-116.69372, 34.82976],\n      [-116.69091, 34.82952],\n      [-116.6896, 34.82941],\n      [-116.68824, 34.82926],\n      [-116.6739, 34.82747],\n      [-116.6724, 34.82728],\n      [-116.67143, 34.82712],\n      [-116.66723, 34.82638],\n      [-116.66539, 34.82605],\n      [-116.66333, 34.82568],\n      [-116.65916, 34.82494],\n      [-116.65506, 34.82421],\n      [-116.65092, 34.82347],\n      [-116.64679, 34.82273],\n      [-116.64264, 34.82199],\n      [-116.63849, 34.82125],\n      [-116.6344, 34.82051],\n      [-116.63029, 34.81978],\n      [-116.62621, 34.81905],\n      [-116.62214, 34.81832],\n      [-116.61805, 34.81759],\n      [-116.61629, 34.81727],\n      [-116.614, 34.81686],\n      [-116.6121, 34.81652],\n      [-116.61142, 34.8164],\n      [-116.60654, 34.81553],\n      [-116.60337, 34.81496],\n      [-116.52948, 34.8017],\n      [-116.5262, 34.80111],\n      [-116.52201, 34.80036],\n      [-116.51795, 34.79961],\n      [-116.51383, 34.79889],\n      [-116.51075, 34.79833],\n      [-116.50663, 34.79725],\n      [-116.50284, 34.79621],\n      [-116.49465, 34.79397],\n      [-116.48773, 34.79209],\n      [-116.48677, 34.79185],\n      [-116.48575, 34.79166],\n      [-116.4776, 34.7907],\n      [-116.47197, 34.79007],\n      [-116.47121, 34.78998],\n      [-116.45725, 34.78839],\n      [-116.45296, 34.78789],\n      [-116.45256, 34.78785],\n      [-116.45112, 34.78768],\n      [-116.44808, 34.78733],\n      [-116.44701, 34.78721],\n      [-116.44458, 34.78693],\n      [-116.43628, 34.78597],\n      [-116.428, 34.78501],\n      [-116.41997, 34.78409],\n      [-116.41895, 34.78397],\n      [-116.4176, 34.78374],\n      [-116.41618, 34.78345],\n      [-116.40794, 34.78157],\n      [-116.4061, 34.78114],\n      [-116.40388, 34.78064],\n      [-116.39582, 34.77879],\n      [-116.39169, 34.77785],\n      [-116.386, 34.77655],\n      [-116.38196, 34.77564],\n      [-116.37794, 34.77471],\n      [-116.37126, 34.77317],\n      [-116.37067, 34.77304],\n      [-116.3684, 34.77251],\n      [-116.36798, 34.7724],\n      [-116.36757, 34.77227],\n      [-116.36719, 34.77216],\n      [-116.36646, 34.77191],\n      [-116.36581, 34.77166],\n      [-116.36524, 34.77143],\n      [-116.36456, 34.77111],\n      [-116.36363, 34.77065],\n      [-116.36237, 34.76991],\n      [-116.36174, 34.76948],\n      [-116.361, 34.76894],\n      [-116.3594, 34.76775],\n      [-116.3554, 34.76477],\n      [-116.35186, 34.76214],\n      [-116.34788, 34.75916],\n      [-116.34704, 34.75856],\n      [-116.34677, 34.75835],\n      [-116.3441, 34.75634],\n      [-116.34018, 34.75344],\n      [-116.33805, 34.75193],\n      [-116.33656, 34.75102],\n      [-116.32911, 34.74717],\n      [-116.32196, 34.74346],\n      [-116.31513, 34.74005],\n      [-116.31364, 34.73941],\n      [-116.31236, 34.73891],\n      [-116.31136, 34.73856],\n      [-116.31046, 34.73828],\n      [-116.30893, 34.73784],\n      [-116.3078, 34.73756],\n      [-116.30533, 34.737],\n      [-116.30134, 34.73608],\n      [-116.2888, 34.73319],\n      [-116.2859, 34.73252],\n      [-116.2833, 34.73193],\n      [-116.27768, 34.73067],\n      [-116.27561, 34.73025],\n      [-116.2728, 34.72984],\n      [-116.24575, 34.72665],\n      [-116.2429, 34.72634],\n      [-116.2348, 34.72588],\n      [-116.23132, 34.72568],\n      [-116.2272, 34.72546],\n      [-116.21929, 34.72504],\n      [-116.21913, 34.72503],\n      [-116.21891, 34.72502],\n      [-116.20512, 34.72427],\n      [-116.20383, 34.7242],\n      [-116.20367, 34.7242],\n      [-116.20246, 34.72413],\n      [-116.19771, 34.72388],\n      [-116.19734, 34.72386],\n      [-116.19712, 34.72385],\n      [-116.19698, 34.72385],\n      [-116.19627, 34.72385],\n      [-116.19528, 34.72385],\n      [-116.18701, 34.72421],\n      [-116.18098, 34.7245],\n      [-116.17988, 34.72455],\n      [-116.17939, 34.72456],\n      [-116.17563, 34.72474],\n      [-116.16867, 34.72506],\n      [-116.16818, 34.72508],\n      [-116.16784, 34.72509],\n      [-116.16336, 34.7253],\n      [-116.16294, 34.72532],\n      [-116.15811, 34.72554],\n      [-116.14609, 34.72609],\n      [-116.14442, 34.72616],\n      [-116.14269, 34.72624],\n      [-116.14199, 34.72626],\n      [-116.14141, 34.72628],\n      [-116.14089, 34.72629],\n      [-116.09125, 34.72728],\n      [-116.09079, 34.72728],\n      [-116.08505, 34.7274],\n      [-116.08427, 34.7274],\n      [-116.08389, 34.72738],\n      [-116.08332, 34.72737],\n      [-116.0824, 34.7273],\n      [-116.08205, 34.72726],\n      [-116.08158, 34.7272],\n      [-116.08119, 34.72714],\n      [-116.08079, 34.72705],\n      [-116.07944, 34.72676],\n      [-116.07903, 34.72665],\n      [-116.07855, 34.72651],\n      [-116.07757, 34.72617],\n      [-116.07724, 34.72606],\n      [-116.07649, 34.72573],\n      [-116.07568, 34.72535],\n      [-116.07337, 34.72424],\n      [-116.07005, 34.72267],\n      [-116.06716, 34.72128],\n      [-116.06497, 34.72031],\n      [-116.06408, 34.71994],\n      [-116.06205, 34.71921],\n      [-116.05863, 34.71823],\n      [-116.05171, 34.71629],\n      [-116.04655, 34.71484],\n      [-116.04425, 34.71444],\n      [-116.04193, 34.71428],\n      [-116.03245, 34.71491],\n      [-116.03197, 34.71495],\n      [-116.03087, 34.71502],\n      [-116.02992, 34.71511],\n      [-116.02889, 34.71526],\n      [-116.02794, 34.71545],\n      [-116.02198, 34.71679],\n      [-116.01894, 34.71746],\n      [-116.01729, 34.71782],\n      [-116.01608, 34.71809],\n      [-116.01515, 34.7183],\n      [-116.01372, 34.71862],\n      [-116.01252, 34.71889],\n      [-116.01158, 34.71911],\n      [-116.01105, 34.71925],\n      [-116.01044, 34.71945],\n      [-116.00962, 34.71974],\n      [-116.00893, 34.72004],\n      [-116.00667, 34.721],\n      [-116.00562, 34.72144],\n      [-116.00462, 34.72178],\n      [-116.00395, 34.72196],\n      [-116.00315, 34.72214],\n      [-116.00239, 34.72227],\n      [-116.00143, 34.72238],\n      [-116.0006, 34.72243],\n      [-115.99956, 34.72243],\n      [-115.99857, 34.72237],\n      [-115.9976, 34.72224],\n      [-115.99717, 34.72216],\n      [-115.99641, 34.72201],\n      [-115.99541, 34.72174],\n      [-115.99411, 34.72132],\n      [-115.99325, 34.72107],\n      [-115.9924, 34.72087],\n      [-115.99178, 34.72074],\n      [-115.9911, 34.72062],\n      [-115.9908, 34.72056],\n      [-115.99004, 34.72045],\n      [-115.98899, 34.72034],\n      [-115.98808, 34.72029],\n      [-115.98711, 34.72026],\n      [-115.98606, 34.72027],\n      [-115.98246, 34.72041],\n      [-115.98093, 34.72047],\n      [-115.97959, 34.72051],\n      [-115.97843, 34.72057],\n      [-115.9774, 34.72066],\n      [-115.97708, 34.7207],\n      [-115.97585, 34.72084],\n      [-115.96786, 34.72196],\n      [-115.96453, 34.72244],\n      [-115.96261, 34.72272],\n      [-115.96096, 34.72295],\n      [-115.95993, 34.72308],\n      [-115.95923, 34.72317],\n      [-115.95842, 34.72326],\n      [-115.95751, 34.72335],\n      [-115.95642, 34.72343],\n      [-115.95506, 34.72351],\n      [-115.95392, 34.72354],\n      [-115.95157, 34.72361],\n      [-115.94759, 34.7237],\n      [-115.94333, 34.72381],\n      [-115.94033, 34.72388],\n      [-115.93741, 34.72396],\n      [-115.93533, 34.72401],\n      [-115.93265, 34.72407],\n      [-115.92989, 34.72413],\n      [-115.92782, 34.72418],\n      [-115.92683, 34.72421],\n      [-115.92574, 34.72427],\n      [-115.92417, 34.72443],\n      [-115.92292, 34.72463],\n      [-115.92183, 34.72482],\n      [-115.92091, 34.72501],\n      [-115.91961, 34.72535],\n      [-115.91762, 34.72596],\n      [-115.9152, 34.72678],\n      [-115.91291, 34.72756],\n      [-115.91141, 34.72805],\n      [-115.90973, 34.72854],\n      [-115.90853, 34.72882],\n      [-115.90708, 34.72913],\n      [-115.90454, 34.72966],\n      [-115.90239, 34.73014],\n      [-115.90057, 34.7306],\n      [-115.89914, 34.73099],\n      [-115.89756, 34.73146],\n      [-115.89624, 34.73189],\n      [-115.89562, 34.73209],\n      [-115.89439, 34.73249],\n      [-115.89226, 34.73321],\n      [-115.89123, 34.73351],\n      [-115.89026, 34.73376],\n      [-115.88936, 34.73395],\n      [-115.88857, 34.73409],\n      [-115.88761, 34.73424],\n      [-115.88669, 34.73436],\n      [-115.88578, 34.73444],\n      [-115.8847, 34.7345],\n      [-115.88373, 34.7345],\n      [-115.88298, 34.73449],\n      [-115.882, 34.73445],\n      [-115.88108, 34.73436],\n      [-115.88019, 34.73427],\n      [-115.8793, 34.73411],\n      [-115.8781, 34.73392],\n      [-115.8768, 34.73368],\n      [-115.87542, 34.73349],\n      [-115.87401, 34.73335],\n      [-115.87282, 34.73329],\n      [-115.87142, 34.73326],\n      [-115.86904, 34.73323],\n      [-115.86813, 34.7332],\n      [-115.867, 34.73313],\n      [-115.86589, 34.73303],\n      [-115.86503, 34.73292],\n      [-115.86392, 34.73276],\n      [-115.86089, 34.73229],\n      [-115.8584, 34.7319],\n      [-115.85429, 34.73126],\n      [-115.85022, 34.73062],\n      [-115.84627, 34.73],\n      [-115.84216, 34.72936],\n      [-115.83814, 34.72872],\n      [-115.83398, 34.72807],\n      [-115.83202, 34.72775],\n      [-115.82918, 34.72732],\n      [-115.82722, 34.72702],\n      [-115.82577, 34.72675],\n      [-115.8247, 34.72653],\n      [-115.82346, 34.72623],\n      [-115.82226, 34.7259],\n      [-115.82072, 34.72541],\n      [-115.81927, 34.72493],\n      [-115.81531, 34.72363],\n      [-115.81129, 34.72232],\n      [-115.81038, 34.72203],\n      [-115.80923, 34.72164],\n      [-115.80848, 34.72141],\n      [-115.80725, 34.72105],\n      [-115.80619, 34.72076],\n      [-115.80513, 34.72053],\n      [-115.80368, 34.72023],\n      [-115.80216, 34.71999],\n      [-115.80104, 34.71985],\n      [-115.79984, 34.71974],\n      [-115.79801, 34.71964],\n      [-115.79575, 34.71953],\n      [-115.79177, 34.71936],\n      [-115.79107, 34.71931],\n      [-115.79043, 34.71927],\n      [-115.78948, 34.71921],\n      [-115.7872, 34.71911],\n      [-115.78616, 34.71902],\n      [-115.78483, 34.71889],\n      [-115.78294, 34.71862],\n      [-115.78188, 34.71847],\n      [-115.77901, 34.71798],\n      [-115.77724, 34.71769],\n      [-115.77523, 34.71741],\n      [-115.7741, 34.71728],\n      [-115.77248, 34.71712],\n      [-115.77099, 34.717],\n      [-115.76983, 34.71693],\n      [-115.76844, 34.71686],\n      [-115.76707, 34.71682],\n      [-115.76289, 34.71674],\n      [-115.76106, 34.7167],\n      [-115.75881, 34.71666],\n      [-115.75466, 34.71658],\n      [-115.75266, 34.71654],\n      [-115.75058, 34.7165],\n      [-115.74649, 34.71643],\n      [-115.74466, 34.71639],\n      [-115.74278, 34.71634],\n      [-115.74244, 34.71634],\n      [-115.74085, 34.71634],\n      [-115.73943, 34.71637],\n      [-115.73696, 34.71648],\n      [-115.73482, 34.71662],\n      [-115.73075, 34.71692],\n      [-115.72661, 34.71722],\n      [-115.72546, 34.7173],\n      [-115.72517, 34.71733],\n      [-115.72429, 34.71739],\n      [-115.72049, 34.71765],\n      [-115.71724, 34.71788],\n      [-115.71305, 34.71818],\n      [-115.70895, 34.71848],\n      [-115.70794, 34.71855],\n      [-115.70752, 34.71858],\n      [-115.70081, 34.71907],\n      [-115.6991, 34.71918],\n      [-115.69781, 34.71926],\n      [-115.69268, 34.71965],\n      [-115.69201, 34.71969],\n      [-115.68938, 34.71989],\n      [-115.68731, 34.72003],\n      [-115.68561, 34.72015],\n      [-115.68443, 34.72025],\n      [-115.68174, 34.72046],\n      [-115.67863, 34.72071],\n      [-115.67818, 34.72074],\n      [-115.67093, 34.72136],\n      [-115.67055, 34.72139],\n      [-115.66685, 34.7217],\n      [-115.66521, 34.72184],\n      [-115.6624, 34.72224],\n      [-115.66045, 34.72264],\n      [-115.65802, 34.72312],\n      [-115.65688, 34.72336],\n      [-115.65601, 34.72351],\n      [-115.65477, 34.72364],\n      [-115.65361, 34.72372],\n      [-115.6446, 34.72339],\n      [-115.64158, 34.72328],\n      [-115.64086, 34.72326],\n      [-115.64007, 34.72325],\n      [-115.63934, 34.72326],\n      [-115.63868, 34.72328],\n      [-115.63829, 34.7233],\n      [-115.63767, 34.72334],\n      [-115.63595, 34.72347],\n      [-115.63211, 34.72399],\n      [-115.63051, 34.72422],\n      [-115.62409, 34.72513],\n      [-115.61886, 34.72585],\n      [-115.61621, 34.72621],\n      [-115.61051, 34.72701],\n      [-115.60194, 34.72821],\n      [-115.60165, 34.72825],\n      [-115.58936, 34.72997],\n      [-115.58413, 34.73067],\n      [-115.58182, 34.73099],\n      [-115.57968, 34.73116],\n      [-115.57661, 34.73129],\n      [-115.56417, 34.73186],\n      [-115.56203, 34.73214],\n      [-115.56078, 34.73237],\n      [-115.55899, 34.73272],\n      [-115.55819, 34.73291],\n      [-115.55691, 34.73328],\n      [-115.55617, 34.73352],\n      [-115.55543, 34.73378],\n      [-115.55399, 34.73431],\n      [-115.55267, 34.73482],\n      [-115.54913, 34.73616],\n      [-115.52818, 34.74407],\n      [-115.50239, 34.75385],\n      [-115.48644, 34.75985],\n      [-115.48297, 34.76125],\n      [-115.48074, 34.76236],\n      [-115.47919, 34.76327],\n      [-115.47268, 34.76726],\n      [-115.47216, 34.76755],\n      [-115.47075, 34.76841],\n      [-115.46674, 34.77084],\n      [-115.46552, 34.77144],\n      [-115.46434, 34.77198],\n      [-115.46322, 34.77244],\n      [-115.46038, 34.77345],\n      [-115.45794, 34.77431],\n      [-115.45515, 34.77523],\n      [-115.45447, 34.77547],\n      [-115.43171, 34.78324],\n      [-115.42369, 34.78599],\n      [-115.42318, 34.78617],\n      [-115.42161, 34.78684],\n      [-115.42082, 34.78721],\n      [-115.41874, 34.78826],\n      [-115.41244, 34.79214],\n      [-115.41197, 34.79237],\n      [-115.41089, 34.79285],\n      [-115.4093, 34.79339],\n      [-115.40706, 34.79392],\n      [-115.40305, 34.79472],\n      [-115.39972, 34.79539],\n      [-115.39925, 34.79549],\n      [-115.38745, 34.7979],\n      [-115.3857, 34.79832],\n      [-115.38345, 34.7989],\n      [-115.38143, 34.79952],\n      [-115.37895, 34.80037],\n      [-115.37647, 34.80121],\n      [-115.3749, 34.80175],\n      [-115.37439, 34.80192],\n      [-115.37352, 34.80219],\n      [-115.37249, 34.80246],\n      [-115.37157, 34.80269],\n      [-115.37088, 34.80284],\n      [-115.37021, 34.80296],\n      [-115.36931, 34.80311],\n      [-115.36828, 34.80324],\n      [-115.36632, 34.8034],\n      [-115.36602, 34.80339],\n      [-115.36546, 34.80341],\n      [-115.36115, 34.80343],\n      [-115.35754, 34.80343],\n      [-115.35701, 34.80343],\n      [-115.35546, 34.80345],\n      [-115.35462, 34.80344],\n      [-115.34975, 34.80336],\n      [-115.34615, 34.8032],\n      [-115.34557, 34.80315],\n      [-115.33475, 34.8021],\n      [-115.33081, 34.8017],\n      [-115.32858, 34.80145],\n      [-115.32794, 34.80139],\n      [-115.32666, 34.80125],\n      [-115.32468, 34.80105],\n      [-115.32311, 34.80089],\n      [-115.3208, 34.80078],\n      [-115.31993, 34.80076],\n      [-115.31895, 34.80074],\n      [-115.31785, 34.80077],\n      [-115.31708, 34.80079],\n      [-115.31465, 34.80096],\n      [-115.31403, 34.80099],\n      [-115.30754, 34.80156],\n      [-115.30665, 34.80164],\n      [-115.29263, 34.80284],\n      [-115.2917, 34.8029],\n      [-115.27913, 34.80398],\n      [-115.2778, 34.80408],\n      [-115.2771, 34.80413],\n      [-115.27591, 34.80424],\n      [-115.27219, 34.80457],\n      [-115.27013, 34.80475],\n      [-115.26845, 34.80488],\n      [-115.26175, 34.80545],\n      [-115.25752, 34.80579],\n      [-115.25658, 34.80588],\n      [-115.25557, 34.80596],\n      [-115.25501, 34.806],\n      [-115.25465, 34.80604],\n      [-115.24857, 34.80656],\n      [-115.24294, 34.80703],\n      [-115.24217, 34.8071],\n      [-115.24149, 34.80716],\n      [-115.23425, 34.80777],\n      [-115.2304, 34.80808],\n      [-115.22953, 34.80815],\n      [-115.22741, 34.80832],\n      [-115.22536, 34.8085],\n      [-115.22421, 34.80861],\n      [-115.2236, 34.80866],\n      [-115.22324, 34.80869],\n      [-115.21997, 34.80897],\n      [-115.21799, 34.80914],\n      [-115.21663, 34.80924],\n      [-115.21629, 34.80927],\n      [-115.21575, 34.80932],\n      [-115.21518, 34.80936],\n      [-115.21393, 34.80947],\n      [-115.21333, 34.80951],\n      [-115.21058, 34.80974],\n      [-115.2069, 34.81007],\n      [-115.1999, 34.81075],\n      [-115.19961, 34.81078],\n      [-115.19837, 34.81091],\n      [-115.1972, 34.81105],\n      [-115.19682, 34.81111],\n      [-115.19616, 34.81119],\n      [-115.19331, 34.81154],\n      [-115.1905, 34.81188],\n      [-115.19003, 34.81194],\n      [-115.18706, 34.81232],\n      [-115.18472, 34.81259],\n      [-115.18396, 34.81268],\n      [-115.18358, 34.81273],\n      [-115.17243, 34.81414],\n      [-115.15171, 34.81671],\n      [-115.14251, 34.81785],\n      [-115.13945, 34.81824],\n      [-115.13402, 34.8189],\n      [-115.12702, 34.81978],\n      [-115.09937, 34.8232],\n      [-115.08571, 34.82491],\n      [-115.07196, 34.82661],\n      [-115.06263, 34.82783],\n      [-115.05768, 34.82873],\n      [-115.05674, 34.82892],\n      [-115.05662, 34.82894],\n      [-115.05578, 34.82911],\n      [-115.05539, 34.8292],\n      [-115.05379, 34.82951],\n      [-115.05253, 34.82977],\n      [-115.05195, 34.82989],\n      [-115.0515, 34.82997],\n      [-115.05125, 34.83002],\n      [-115.05067, 34.83013],\n      [-115.05058, 34.83014],\n      [-115.04967, 34.83026],\n      [-115.04877, 34.83034],\n      [-115.04815, 34.83038],\n      [-115.04741, 34.83039],\n      [-115.0463, 34.83037],\n      [-115.046, 34.83035],\n      [-115.04542, 34.8303],\n      [-115.04493, 34.83026],\n      [-115.04408, 34.83019],\n      [-115.04045, 34.8299],\n      [-115.03781, 34.8297],\n      [-115.03443, 34.82942],\n      [-115.03275, 34.8293],\n      [-115.02988, 34.82913],\n      [-115.02853, 34.82917],\n      [-115.02793, 34.82924],\n      [-115.02738, 34.82929],\n      [-115.02674, 34.82938],\n      [-115.02592, 34.82952],\n      [-115.02521, 34.8297],\n      [-115.02449, 34.82988],\n      [-115.01795, 34.8317],\n      [-115.01435, 34.8327],\n      [-115.0124, 34.83325],\n      [-115.01089, 34.83367],\n      [-115.00409, 34.83558],\n      [-115.00065, 34.83654],\n      [-114.99742, 34.83743],\n      [-114.99259, 34.83878],\n      [-114.99203, 34.83893],\n      [-114.9917, 34.83902],\n      [-114.99067, 34.83932],\n      [-114.98633, 34.84053],\n      [-114.98299, 34.84144],\n      [-114.97958, 34.84242],\n      [-114.97796, 34.84286],\n      [-114.97761, 34.84296],\n      [-114.9754, 34.84357],\n      [-114.97478, 34.84375],\n      [-114.97123, 34.84475],\n      [-114.96983, 34.84512],\n      [-114.96634, 34.8461],\n      [-114.96617, 34.84614],\n      [-114.96517, 34.84642],\n      [-114.96203, 34.8473],\n      [-114.9611, 34.84757],\n      [-114.94056, 34.85327],\n      [-114.92549, 34.85747],\n      [-114.92381, 34.85779],\n      [-114.92279, 34.85791],\n      [-114.92176, 34.85799],\n      [-114.92095, 34.85801],\n      [-114.91969, 34.85797],\n      [-114.91824, 34.85784],\n      [-114.9163, 34.85763],\n      [-114.91078, 34.85705],\n      [-114.9089, 34.85685],\n      [-114.90668, 34.85661],\n      [-114.90551, 34.85648],\n      [-114.90318, 34.85624],\n      [-114.90269, 34.85618],\n      [-114.89781, 34.85567],\n      [-114.89677, 34.85556],\n      [-114.89487, 34.85536],\n      [-114.89166, 34.85501],\n      [-114.89096, 34.85495],\n      [-114.89033, 34.85493],\n      [-114.88977, 34.85492],\n      [-114.88926, 34.85493],\n      [-114.88875, 34.85496],\n      [-114.88785, 34.85504],\n      [-114.88724, 34.85513],\n      [-114.88649, 34.85527],\n      [-114.88413, 34.85584],\n      [-114.8765, 34.85771],\n      [-114.87536, 34.85798],\n      [-114.87438, 34.85817],\n      [-114.87371, 34.85826],\n      [-114.8731, 34.85832],\n      [-114.87235, 34.85836],\n      [-114.87043, 34.85835],\n      [-114.86966, 34.85836],\n      [-114.86911, 34.85839],\n      [-114.86835, 34.85846],\n      [-114.86735, 34.85863],\n      [-114.86394, 34.85922],\n      [-114.86196, 34.85958],\n      [-114.86149, 34.85966],\n      [-114.86092, 34.85976],\n      [-114.86045, 34.85987],\n      [-114.85963, 34.86007],\n      [-114.85886, 34.8603],\n      [-114.85822, 34.86051],\n      [-114.85744, 34.86081],\n      [-114.85664, 34.86117],\n      [-114.85538, 34.86177],\n      [-114.85433, 34.8623],\n      [-114.85324, 34.86283],\n      [-114.85014, 34.86437],\n      [-114.8482, 34.86531],\n      [-114.84716, 34.86578],\n      [-114.84621, 34.86615],\n      [-114.84557, 34.86636],\n      [-114.84492, 34.86655],\n      [-114.84425, 34.86673],\n      [-114.84351, 34.8669],\n      [-114.84275, 34.86702],\n      [-114.84158, 34.86719],\n      [-114.83997, 34.86731],\n      [-114.83948, 34.86734],\n      [-114.83705, 34.8675],\n      [-114.83611, 34.86757],\n      [-114.83505, 34.86767],\n      [-114.83416, 34.86781],\n      [-114.83316, 34.86801],\n      [-114.83253, 34.86816],\n      [-114.83151, 34.86845],\n      [-114.83047, 34.86879],\n      [-114.83014, 34.86889],\n      [-114.82871, 34.86935],\n      [-114.82696, 34.86989],\n      [-114.8253, 34.87041],\n      [-114.82466, 34.87061],\n      [-114.82411, 34.87079],\n      [-114.82228, 34.87136],\n      [-114.82045, 34.87194],\n      [-114.81871, 34.87248],\n      [-114.81701, 34.87302],\n      [-114.80789, 34.87587],\n      [-114.8071, 34.87612],\n      [-114.80477, 34.87685],\n      [-114.80434, 34.87698],\n      [-114.80328, 34.87732],\n      [-114.79788, 34.87901],\n      [-114.79543, 34.87978],\n      [-114.79248, 34.8807],\n      [-114.79046, 34.88134],\n      [-114.78949, 34.88161],\n      [-114.78858, 34.88183],\n      [-114.78779, 34.882],\n      [-114.78716, 34.88213],\n      [-114.78643, 34.88224],\n      [-114.78508, 34.88243],\n      [-114.7837, 34.88254],\n      [-114.78291, 34.88258],\n      [-114.78197, 34.88261],\n      [-114.78108, 34.8826],\n      [-114.78006, 34.88257],\n      [-114.77895, 34.8825],\n      [-114.77811, 34.88241],\n      [-114.77724, 34.8823],\n      [-114.77644, 34.88218],\n      [-114.7753, 34.88196],\n      [-114.77406, 34.88168],\n      [-114.77319, 34.88144],\n      [-114.76514, 34.87915],\n      [-114.76396, 34.87882],\n      [-114.76282, 34.87854],\n      [-114.76187, 34.87835],\n      [-114.76047, 34.87812],\n      [-114.75942, 34.87801],\n      [-114.75885, 34.87795],\n      [-114.75801, 34.87789],\n      [-114.75671, 34.87786],\n      [-114.75548, 34.87788],\n      [-114.75449, 34.87792],\n      [-114.75348, 34.87804],\n      [-114.75231, 34.87818],\n      [-114.75171, 34.87827],\n      [-114.75098, 34.87841],\n      [-114.7503, 34.87856],\n      [-114.74986, 34.87866],\n      [-114.74892, 34.87886],\n      [-114.74506, 34.87971],\n      [-114.73387, 34.88222],\n      [-114.73348, 34.8823],\n      [-114.73074, 34.88292],\n      [-114.72667, 34.88382],\n      [-114.71975, 34.8855],\n      [-114.71111, 34.88806],\n      [-114.70353, 34.89037],\n      [-114.70242, 34.89071],\n      [-114.70153, 34.89095],\n      [-114.70068, 34.89111],\n      [-114.70009, 34.89119],\n      [-114.69997, 34.8912],\n      [-114.69965, 34.89122],\n      [-114.69906, 34.89126],\n      [-114.69838, 34.89128],\n      [-114.69752, 34.89126],\n      [-114.69657, 34.89116],\n      [-114.69578, 34.89102],\n      [-114.69489, 34.89083],\n      [-114.69406, 34.89054],\n      [-114.68045, 34.88615],\n      [-114.67362, 34.88393],\n      [-114.67163, 34.88322],\n      [-114.66947, 34.88226],\n      [-114.66753, 34.8813],\n      [-114.66425, 34.87923],\n      [-114.66386, 34.87896],\n      [-114.66092, 34.87698],\n      [-114.66052, 34.87672],\n      [-114.65866, 34.87548],\n      [-114.65807, 34.87508],\n      [-114.65779, 34.87489],\n      [-114.6544, 34.87261],\n      [-114.65105, 34.87037],\n      [-114.6505, 34.87],\n      [-114.64044, 34.86322],\n      [-114.64005, 34.86295],\n      [-114.63904, 34.86228],\n      [-114.63866, 34.86202],\n      [-114.63071, 34.85668],\n      [-114.63001, 34.85621],\n      [-114.62801, 34.85489],\n      [-114.62732, 34.85441],\n      [-114.62672, 34.85401],\n      [-114.62458, 34.85257],\n      [-114.62184, 34.85083],\n      [-114.62127, 34.85046],\n      [-114.6202, 34.84977],\n      [-114.6198, 34.84953],\n      [-114.61835, 34.84864],\n      [-114.6177, 34.84824],\n      [-114.61651, 34.84752],\n      [-114.61625, 34.84735],\n      [-114.61602, 34.84722],\n      [-114.61554, 34.84686],\n      [-114.61514, 34.84652],\n      [-114.61451, 34.84581],\n      [-114.6141, 34.84519],\n      [-114.61374, 34.84441],\n      [-114.61295, 34.8427],\n      [-114.61257, 34.84188],\n      [-114.61243, 34.84156],\n      [-114.61151, 34.83956],\n      [-114.61134, 34.83921],\n      [-114.61093, 34.83831],\n      [-114.61048, 34.83734],\n      [-114.61025, 34.83694],\n      [-114.61, 34.83656],\n      [-114.60964, 34.83606],\n      [-114.60917, 34.83553],\n      [-114.60888, 34.83523],\n      [-114.60858, 34.83496],\n      [-114.6081, 34.83456],\n      [-114.60761, 34.83421],\n      [-114.60715, 34.83392],\n      [-114.60667, 34.83365],\n      [-114.606, 34.83331],\n      [-114.60452, 34.83261],\n      [-114.60384, 34.83228],\n      [-114.60344, 34.83205],\n      [-114.6033, 34.83198],\n      [-114.60295, 34.83175],\n      [-114.60252, 34.83144],\n      [-114.60206, 34.83107],\n      [-114.6018, 34.83084],\n      [-114.6015, 34.83055],\n      [-114.60116, 34.83018],\n      [-114.60102, 34.83002],\n      [-114.6007, 34.82962],\n      [-114.60037, 34.82915],\n      [-114.60004, 34.82871],\n      [-114.5998, 34.82837],\n      [-114.59957, 34.82804],\n      [-114.59949, 34.82792],\n      [-114.5994, 34.82779],\n      [-114.59922, 34.82754],\n      [-114.59877, 34.82692],\n      [-114.59824, 34.8262],\n      [-114.59784, 34.8256],\n      [-114.59755, 34.82514],\n      [-114.59723, 34.82454],\n      [-114.59707, 34.82422],\n      [-114.59683, 34.82356],\n      [-114.59662, 34.82294],\n      [-114.59614, 34.82148],\n      [-114.59592, 34.82075],\n      [-114.59563, 34.81972],\n      [-114.59432, 34.81553],\n      [-114.59419, 34.81512],\n      [-114.58881, 34.79812],\n      [-114.58863, 34.79755],\n      [-114.5874, 34.79369],\n      [-114.58661, 34.79112],\n      [-114.58645, 34.79065],\n      [-114.58318, 34.78034],\n      [-114.58158, 34.77519],\n      [-114.58143, 34.7747],\n      [-114.58023, 34.77123],\n      [-114.57973, 34.77014],\n      [-114.57943, 34.76953],\n      [-114.57906, 34.76883],\n      [-114.57861, 34.768],\n      [-114.57838, 34.76764],\n      [-114.57748, 34.76627],\n      [-114.57713, 34.76581],\n      [-114.57679, 34.76535],\n      [-114.57621, 34.76462],\n      [-114.57412, 34.76213],\n      [-114.57302, 34.76082],\n      [-114.57176, 34.75935],\n      [-114.56787, 34.75472],\n      [-114.56766, 34.75446],\n      [-114.56742, 34.75417],\n      [-114.56398, 34.75006],\n      [-114.56394, 34.75001],\n      [-114.56375, 34.74979],\n      [-114.56275, 34.74861],\n      [-114.55814, 34.74318],\n      [-114.55787, 34.74286],\n      [-114.55412, 34.7384],\n      [-114.5539, 34.73813],\n      [-114.5496, 34.73302],\n      [-114.54947, 34.73288],\n      [-114.54571, 34.72839],\n      [-114.54445, 34.72694],\n      [-114.54383, 34.72631],\n      [-114.54323, 34.72579],\n      [-114.54221, 34.72502],\n      [-114.54131, 34.72448],\n      [-114.54045, 34.72399],\n      [-114.53877, 34.72306],\n      [-114.53696, 34.72205],\n      [-114.53633, 34.72167],\n      [-114.53161, 34.71899],\n      [-114.53066, 34.71856],\n      [-114.52984, 34.71822],\n      [-114.52881, 34.71785],\n      [-114.5275, 34.71748],\n      [-114.52541, 34.71705],\n      [-114.5225, 34.71691],\n      [-114.51515, 34.71716],\n      [-114.50869, 34.71744],\n      [-114.50623, 34.71752],\n      [-114.50042, 34.71778],\n      [-114.49956, 34.71776],\n      [-114.49853, 34.71769],\n      [-114.49764, 34.71758],\n      [-114.49643, 34.71744],\n      [-114.49529, 34.7173],\n      [-114.49414, 34.71716],\n      [-114.49298, 34.71702],\n      [-114.4925, 34.71698],\n      [-114.49193, 34.71695],\n      [-114.49147, 34.71695],\n      [-114.49098, 34.71697],\n      [-114.4899, 34.71703],\n      [-114.48785, 34.71714],\n      [-114.48565, 34.71726],\n      [-114.48363, 34.71739],\n      [-114.4828, 34.71747],\n      [-114.48158, 34.71759],\n      [-114.48034, 34.71776],\n      [-114.47981, 34.71782],\n      [-114.47934, 34.71789],\n      [-114.47736, 34.71808],\n      [-114.47652, 34.71813],\n      [-114.4758, 34.71815],\n      [-114.47508, 34.71816],\n      [-114.4743, 34.71816],\n      [-114.47333, 34.71815],\n      [-114.47215, 34.71816],\n      [-114.47122, 34.71818],\n      [-114.47009, 34.71821],\n      [-114.46803, 34.71831],\n      [-114.46576, 34.71846],\n      [-114.46369, 34.71865],\n      [-114.46104, 34.71896],\n      [-114.45915, 34.71918],\n      [-114.45471, 34.7197],\n      [-114.44996, 34.72025],\n      [-114.44886, 34.72038],\n      [-114.4474, 34.72056],\n      [-114.44477, 34.72087],\n      [-114.44323, 34.72105],\n      [-114.44192, 34.7212],\n      [-114.44127, 34.72129],\n      [-114.44059, 34.72136],\n      [-114.4397, 34.72146],\n      [-114.43873, 34.72157],\n      [-114.43588, 34.72191],\n      [-114.43484, 34.72204],\n      [-114.43122, 34.72246],\n      [-114.42907, 34.72271],\n      [-114.42811, 34.72282],\n      [-114.42765, 34.72287],\n      [-114.4272, 34.72292],\n      [-114.42693, 34.72295],\n      [-114.426, 34.72308],\n      [-114.42405, 34.72329],\n      [-114.42203, 34.72354],\n      [-114.42099, 34.72367],\n      [-114.41944, 34.72385],\n      [-114.41852, 34.72395],\n      [-114.41702, 34.72413],\n      [-114.41651, 34.72419],\n      [-114.4157, 34.72428],\n      [-114.41498, 34.72437],\n      [-114.41434, 34.72444],\n      [-114.41327, 34.72457],\n      [-114.41217, 34.7247],\n      [-114.41085, 34.72486],\n      [-114.40923, 34.72504],\n      [-114.40636, 34.72538],\n      [-114.4042, 34.72563],\n      [-114.40155, 34.72594],\n      [-114.3988, 34.72624],\n      [-114.3968, 34.72641],\n      [-114.3951, 34.72651],\n      [-114.39465, 34.72653],\n      [-114.39461, 34.72653],\n      [-114.39147, 34.72665],\n      [-114.39141, 34.72666],\n      [-114.39047, 34.72669],\n      [-114.38802, 34.72678],\n      [-114.38686, 34.72683],\n      [-114.38588, 34.72686],\n      [-114.38582, 34.72686],\n      [-114.38329, 34.72696],\n      [-114.38075, 34.72706],\n      [-114.3807, 34.72706],\n      [-114.37907, 34.72712],\n      [-114.37901, 34.72712],\n      [-114.37723, 34.72719],\n      [-114.37719, 34.72719],\n      [-114.37553, 34.72725],\n      [-114.37546, 34.72725],\n      [-114.37335, 34.72733],\n      [-114.37328, 34.72733],\n      [-114.37151, 34.7274],\n      [-114.37144, 34.7274],\n      [-114.36971, 34.72747],\n      [-114.36963, 34.72747],\n      [-114.36767, 34.72755],\n      [-114.36271, 34.72773],\n      [-114.36238, 34.72775],\n      [-114.35811, 34.7279],\n      [-114.3557, 34.72799],\n      [-114.35554, 34.72799],\n      [-114.3527, 34.7281],\n      [-114.34799, 34.72828],\n      [-114.34776, 34.72829],\n      [-114.34768, 34.72829],\n      [-114.34347, 34.72845],\n      [-114.34333, 34.72845],\n      [-114.34016, 34.72856],\n      [-114.33992, 34.72857],\n      [-114.33513, 34.72875],\n      [-114.33505, 34.72876],\n      [-114.33234, 34.72885],\n      [-114.32963, 34.72895],\n      [-114.32958, 34.72896],\n      [-114.32733, 34.72904],\n      [-114.32522, 34.72912],\n      [-114.32515, 34.72912],\n      [-114.32421, 34.72916],\n      [-114.32311, 34.7292],\n      [-114.32205, 34.72923],\n      [-114.32097, 34.72927],\n      [-114.32069, 34.72928],\n      [-114.32042, 34.72929],\n      [-114.31987, 34.72932],\n      [-114.3186, 34.72937],\n      [-114.31683, 34.72943],\n      [-114.31342, 34.72954],\n      [-114.31316, 34.72955],\n      [-114.31246, 34.72957],\n      [-114.31025, 34.72963],\n      [-114.3099, 34.72964],\n      [-114.30145, 34.72989],\n      [-114.30113, 34.7299],\n      [-114.29896, 34.72995],\n      [-114.29452, 34.73008],\n      [-114.29399, 34.7301],\n      [-114.28856, 34.73025],\n      [-114.28801, 34.73027],\n      [-114.28524, 34.73035],\n      [-114.27897, 34.73056],\n      [-114.27595, 34.73078],\n      [-114.27396, 34.73096],\n      [-114.27151, 34.73126],\n      [-114.27058, 34.73139],\n      [-114.26772, 34.73186],\n      [-114.26361, 34.73269],\n      [-114.26334, 34.73275],\n      [-114.26268, 34.73291],\n      [-114.26171, 34.73315],\n      [-114.25954, 34.73371],\n      [-114.25773, 34.73423],\n      [-114.25531, 34.73502],\n      [-114.25316, 34.73578],\n      [-114.25243, 34.73604],\n      [-114.25211, 34.73615],\n      [-114.25066, 34.73672],\n      [-114.25011, 34.73693],\n      [-114.24845, 34.73761],\n      [-114.2464, 34.73859],\n      [-114.24408, 34.73969],\n      [-114.23072, 34.74667],\n      [-114.23032, 34.74688],\n      [-114.22951, 34.7473],\n      [-114.22491, 34.74972],\n      [-114.22268, 34.75088],\n      [-114.21984, 34.75247],\n      [-114.21655, 34.75447],\n      [-114.20722, 34.76111],\n      [-114.20634, 34.76175],\n      [-114.19367, 34.77083],\n      [-114.19345, 34.77099],\n      [-114.18445, 34.7774],\n      [-114.18416, 34.77761],\n      [-114.18161, 34.77947],\n      [-114.17509, 34.78413],\n      [-114.17159, 34.78662],\n      [-114.16823, 34.78903],\n      [-114.1641, 34.79198],\n      [-114.16277, 34.79296],\n      [-114.16213, 34.79347],\n      [-114.16196, 34.7936],\n      [-114.16174, 34.79378],\n      [-114.16145, 34.79402],\n      [-114.16081, 34.79457],\n      [-114.16029, 34.79499],\n      [-114.15916, 34.79601],\n      [-114.15803, 34.79708],\n      [-114.15637, 34.79873],\n      [-114.15598, 34.79916],\n      [-114.15541, 34.79985],\n      [-114.15435, 34.80103],\n      [-114.15248, 34.80352],\n      [-114.15106, 34.80564],\n      [-114.15082, 34.80602],\n      [-114.15009, 34.80724],\n      [-114.14869, 34.8099],\n      [-114.14816, 34.81101],\n      [-114.14767, 34.81213],\n      [-114.1469, 34.81415],\n      [-114.14654, 34.81517],\n      [-114.14622, 34.81619],\n      [-114.14609, 34.81667],\n      [-114.14578, 34.81783],\n      [-114.14537, 34.81945],\n      [-114.14527, 34.82],\n      [-114.14516, 34.82055],\n      [-114.14485, 34.82257],\n      [-114.14472, 34.82388],\n      [-114.14461, 34.82529],\n      [-114.14458, 34.82583],\n      [-114.14455, 34.82694],\n      [-114.14455, 34.82809],\n      [-114.14457, 34.82887],\n      [-114.14466, 34.83068],\n      [-114.14474, 34.83183],\n      [-114.14482, 34.83318],\n      [-114.14499, 34.83548],\n      [-114.14508, 34.83676],\n      [-114.14545, 34.84194],\n      [-114.14549, 34.84256],\n      [-114.14601, 34.85048],\n      [-114.14612, 34.85205],\n      [-114.14641, 34.85626],\n      [-114.14641, 34.85632],\n      [-114.14656, 34.85835],\n      [-114.14664, 34.85949],\n      [-114.1467, 34.86042],\n      [-114.14671, 34.86064],\n      [-114.14682, 34.86231],\n      [-114.14687, 34.86299],\n      [-114.14687, 34.86308],\n      [-114.14708, 34.86614],\n      [-114.14709, 34.8662],\n      [-114.14719, 34.86765],\n      [-114.14735, 34.87022],\n      [-114.14746, 34.87162],\n      [-114.14755, 34.87294],\n      [-114.14763, 34.87399],\n      [-114.14768, 34.87502],\n      [-114.14771, 34.87528],\n      [-114.14773, 34.87563],\n      [-114.14777, 34.87623],\n      [-114.14785, 34.87732],\n      [-114.14791, 34.87844],\n      [-114.14808, 34.88058],\n      [-114.14818, 34.88127],\n      [-114.14831, 34.88196],\n      [-114.14843, 34.88254],\n      [-114.14852, 34.88303],\n      [-114.14854, 34.88311],\n      [-114.14857, 34.88322],\n      [-114.14874, 34.88369],\n      [-114.14892, 34.8843],\n      [-114.14931, 34.88522],\n      [-114.14974, 34.88614],\n      [-114.15003, 34.88672],\n      [-114.15046, 34.88744],\n      [-114.15085, 34.88806],\n      [-114.15144, 34.88893],\n      [-114.15184, 34.88955],\n      [-114.15255, 34.89069],\n      [-114.1529, 34.89126],\n      [-114.15322, 34.89183],\n      [-114.15381, 34.89303],\n      [-114.15406, 34.89368],\n      [-114.15426, 34.89426],\n      [-114.15444, 34.89486],\n      [-114.15459, 34.89548],\n      [-114.15474, 34.8961],\n      [-114.15484, 34.89673],\n      [-114.15494, 34.89739],\n      [-114.155, 34.89836],\n      [-114.15501, 34.89923],\n      [-114.15495, 34.90029],\n      [-114.15485, 34.90107],\n      [-114.15472, 34.90175],\n      [-114.15464, 34.90223],\n      [-114.15323, 34.90989],\n      [-114.15274, 34.91254],\n      [-114.15249, 34.91386],\n      [-114.15236, 34.91451],\n      [-114.15224, 34.91515],\n      [-114.15157, 34.91878],\n      [-114.15149, 34.91917],\n      [-114.15123, 34.92049],\n      [-114.1482, 34.93676],\n      [-114.14817, 34.93695],\n      [-114.14656, 34.94556],\n      [-114.14656, 34.94559],\n      [-114.14508, 34.95348],\n      [-114.14507, 34.95351],\n      [-114.14324, 34.96338],\n      [-114.14315, 34.96387],\n      [-114.14199, 34.97006],\n      [-114.14198, 34.97011],\n      [-114.14122, 34.97418],\n      [-114.14121, 34.97424],\n      [-114.13976, 34.98203],\n      [-114.13974, 34.9821],\n      [-114.13816, 34.9906],\n      [-114.13815, 34.99066],\n      [-114.1364, 34.99998],\n      [-114.13601, 35.00209],\n      [-114.13593, 35.00251],\n      [-114.13391, 35.01336],\n      [-114.13246, 35.02111],\n      [-114.13192, 35.02401],\n      [-114.1319, 35.0241],\n      [-114.131, 35.02896],\n      [-114.1307, 35.03055],\n      [-114.13025, 35.03292],\n      [-114.12971, 35.0358],\n      [-114.1295, 35.03696],\n      [-114.12914, 35.03885],\n      [-114.12913, 35.03893],\n      [-114.12906, 35.03935],\n      [-114.12886, 35.04038],\n      [-114.12865, 35.04146],\n      [-114.12864, 35.04153],\n      [-114.128, 35.04492],\n      [-114.12754, 35.04741],\n      [-114.12692, 35.05064],\n      [-114.12673, 35.0517],\n      [-114.12647, 35.05307],\n      [-114.12644, 35.05322],\n      [-114.12595, 35.05592],\n      [-114.12479, 35.06213],\n      [-114.12389, 35.06691],\n      [-114.12388, 35.06695],\n      [-114.12354, 35.06874],\n      [-114.12308, 35.07124],\n      [-114.12304, 35.07141],\n      [-114.12248, 35.07444],\n      [-114.12246, 35.07453],\n      [-114.12195, 35.07724],\n      [-114.12149, 35.07969],\n      [-114.12107, 35.08193],\n      [-114.12099, 35.08236],\n      [-114.11981, 35.08875],\n      [-114.11979, 35.08884],\n      [-114.11912, 35.09242],\n      [-114.1183, 35.09679],\n      [-114.11753, 35.10084],\n      [-114.11687, 35.10442],\n      [-114.11662, 35.10545],\n      [-114.11661, 35.1055],\n      [-114.11627, 35.10694],\n      [-114.11535, 35.11037],\n      [-114.11532, 35.1105],\n      [-114.11509, 35.11121],\n      [-114.11486, 35.11199],\n      [-114.1148, 35.11218],\n      [-114.11465, 35.1127],\n      [-114.11422, 35.11403],\n      [-114.11357, 35.11601],\n      [-114.11355, 35.11608],\n      [-114.11348, 35.1163],\n      [-114.11261, 35.11861],\n      [-114.11185, 35.12038],\n      [-114.11147, 35.12123],\n      [-114.11109, 35.12204],\n      [-114.11057, 35.12309],\n      [-114.10998, 35.12421],\n      [-114.10947, 35.12513],\n      [-114.10902, 35.1259],\n      [-114.10796, 35.12768],\n      [-114.10785, 35.12784],\n      [-114.10766, 35.12811],\n      [-114.1071, 35.129],\n      [-114.1065, 35.12989],\n      [-114.10631, 35.13017],\n      [-114.10562, 35.13114],\n      [-114.10545, 35.13138],\n      [-114.10498, 35.13205],\n      [-114.1045, 35.13273],\n      [-114.10402, 35.13342],\n      [-114.10358, 35.13403],\n      [-114.10337, 35.13433],\n      [-114.10315, 35.13465],\n      [-114.10266, 35.13535],\n      [-114.10234, 35.13577],\n      [-114.10203, 35.13621],\n      [-114.10037, 35.13861],\n      [-114.10031, 35.13871],\n      [-114.09991, 35.13928],\n      [-114.09949, 35.13988],\n      [-114.09916, 35.14037],\n      [-114.09885, 35.14079],\n      [-114.09839, 35.14146],\n      [-114.09736, 35.14292],\n      [-114.09516, 35.14608],\n      [-114.09467, 35.14679],\n      [-114.09326, 35.14878],\n      [-114.09246, 35.14977],\n      [-114.09192, 35.1504],\n      [-114.09165, 35.15072],\n      [-114.09136, 35.15104],\n      [-114.09081, 35.15162],\n      [-114.09037, 35.15207],\n      [-114.08978, 35.15265],\n      [-114.08964, 35.15278],\n      [-114.08859, 35.15374],\n      [-114.08769, 35.15447],\n      [-114.08718, 35.15489],\n      [-114.08618, 35.15564],\n      [-114.08534, 35.15624],\n      [-114.08415, 35.15703],\n      [-114.08367, 35.15732],\n      [-114.08315, 35.15764],\n      [-114.08259, 35.15797],\n      [-114.08178, 35.15841],\n      [-114.08121, 35.15872],\n      [-114.08012, 35.15927],\n      [-114.0785, 35.16],\n      [-114.07693, 35.1607],\n      [-114.07608, 35.1612],\n      [-114.07544, 35.16169],\n      [-114.07503, 35.16209],\n      [-114.07458, 35.16263],\n      [-114.07416, 35.16337],\n      [-114.07391, 35.16415],\n      [-114.07379, 35.16479],\n      [-114.07377, 35.16538],\n      [-114.0738, 35.166],\n      [-114.07403, 35.16689],\n      [-114.0746, 35.16895],\n      [-114.07491, 35.17013],\n      [-114.07512, 35.17125],\n      [-114.07522, 35.1723],\n      [-114.07523, 35.17343],\n      [-114.07518, 35.1739],\n      [-114.07503, 35.17488],\n      [-114.07467, 35.17616],\n      [-114.07432, 35.17701],\n      [-114.07395, 35.17774],\n      [-114.07346, 35.17858],\n      [-114.07285, 35.17945],\n      [-114.0715, 35.18094],\n      [-114.07026, 35.18238],\n      [-114.06899, 35.184],\n      [-114.06836, 35.18501],\n      [-114.06816, 35.18538],\n      [-114.06774, 35.18627],\n      [-114.06744, 35.18697],\n      [-114.06729, 35.18773],\n      [-114.0672, 35.18824],\n      [-114.06702, 35.18934],\n      [-114.06698, 35.19064],\n      [-114.06695, 35.19109],\n      [-114.06692, 35.19234],\n      [-114.06683, 35.19525],\n      [-114.06675, 35.19751],\n      [-114.06668, 35.19809],\n      [-114.06653, 35.19869],\n      [-114.0663, 35.19942],\n      [-114.06603, 35.20001],\n      [-114.06569, 35.2006],\n      [-114.06509, 35.20143],\n      [-114.06429, 35.2023],\n      [-114.06356, 35.20312],\n      [-114.06311, 35.20361],\n      [-114.06103, 35.20593],\n      [-114.06002, 35.20706],\n      [-114.0596, 35.20751],\n      [-114.05838, 35.20875],\n      [-114.05768, 35.20937],\n      [-114.056, 35.21057],\n      [-114.05455, 35.21141],\n      [-114.05361, 35.21187],\n      [-114.05208, 35.21263],\n      [-114.05061, 35.21329],\n      [-114.04894, 35.21395],\n      [-114.04774, 35.21436],\n      [-114.04584, 35.21493],\n      [-114.04425, 35.21536],\n      [-114.04231, 35.21579],\n      [-114.04125, 35.21601],\n      [-114.03922, 35.21643],\n      [-114.03737, 35.21682],\n      [-114.03633, 35.21699],\n      [-114.03572, 35.21707],\n      [-114.03516, 35.21713],\n      [-114.03405, 35.21724],\n      [-114.03253, 35.2173],\n      [-114.031, 35.2173],\n      [-114.02941, 35.2172],\n      [-114.02741, 35.21705],\n      [-114.02625, 35.21697],\n      [-114.02499, 35.2169],\n      [-114.02458, 35.21688],\n      [-114.02322, 35.21685],\n      [-114.0222, 35.21685],\n      [-114.01924, 35.2169],\n      [-114.01568, 35.21696],\n      [-114.01124, 35.21703],\n      [-114.01055, 35.21704],\n      [-114.00766, 35.21711],\n      [-114.00648, 35.21714],\n      [-114.00404, 35.21718],\n      [-114.00093, 35.21723],\n      [-113.99861, 35.21718],\n      [-113.99851, 35.21717],\n      [-113.99676, 35.21706],\n      [-113.99507, 35.21687],\n      [-113.99306, 35.21657],\n      [-113.99146, 35.21627],\n      [-113.98877, 35.21564],\n      [-113.98587, 35.21496],\n      [-113.98321, 35.21428],\n      [-113.98008, 35.21354],\n      [-113.97729, 35.21286],\n      [-113.97428, 35.21211],\n      [-113.97026, 35.21112],\n      [-113.96109, 35.20892],\n      [-113.95596, 35.20766],\n      [-113.94191, 35.20423],\n      [-113.93065, 35.20148],\n      [-113.92456, 35.20001],\n      [-113.92277, 35.19957],\n      [-113.91988, 35.1989],\n      [-113.91872, 35.1987],\n      [-113.91731, 35.19843],\n      [-113.9161, 35.19827],\n      [-113.91443, 35.1981],\n      [-113.9138, 35.19805],\n      [-113.91232, 35.19797],\n      [-113.90884, 35.19778],\n      [-113.90441, 35.19756],\n      [-113.90162, 35.1974],\n      [-113.89925, 35.19728],\n      [-113.89798, 35.19722],\n      [-113.89756, 35.19719],\n      [-113.89569, 35.1971],\n      [-113.85364, 35.19487],\n      [-113.84855, 35.1946],\n      [-113.84766, 35.19455],\n      [-113.8421, 35.19431],\n      [-113.84023, 35.19418],\n      [-113.83738, 35.19405],\n      [-113.83525, 35.19391],\n      [-113.8342, 35.19381],\n      [-113.83214, 35.19355],\n      [-113.83133, 35.19344],\n      [-113.83017, 35.19323],\n      [-113.82852, 35.19292],\n      [-113.82715, 35.19251],\n      [-113.82559, 35.19207],\n      [-113.82439, 35.19168],\n      [-113.82266, 35.19105],\n      [-113.81876, 35.18934],\n      [-113.81647, 35.18833],\n      [-113.79919, 35.18059],\n      [-113.79532, 35.17885],\n      [-113.79088, 35.17685],\n      [-113.79059, 35.17672],\n      [-113.78775, 35.17546],\n      [-113.78591, 35.17463],\n      [-113.78541, 35.1744],\n      [-113.78514, 35.17428],\n      [-113.7848, 35.17413],\n      [-113.78424, 35.17389],\n      [-113.78384, 35.17372],\n      [-113.78358, 35.17362],\n      [-113.78334, 35.17352],\n      [-113.78298, 35.17338],\n      [-113.78228, 35.1731],\n      [-113.78194, 35.17299],\n      [-113.78064, 35.17253],\n      [-113.77961, 35.17222],\n      [-113.77922, 35.17209],\n      [-113.77883, 35.17199],\n      [-113.77835, 35.17186],\n      [-113.77799, 35.17175],\n      [-113.77758, 35.17165],\n      [-113.77724, 35.17157],\n      [-113.77687, 35.17149],\n      [-113.77623, 35.17135],\n      [-113.77569, 35.17123],\n      [-113.77528, 35.17116],\n      [-113.77481, 35.17106],\n      [-113.77398, 35.17092],\n      [-113.77333, 35.17082],\n      [-113.77069, 35.17041],\n      [-113.76551, 35.1696],\n      [-113.73561, 35.16493],\n      [-113.71215, 35.16129],\n      [-113.70813, 35.16065],\n      [-113.70525, 35.1602],\n      [-113.70101, 35.15955],\n      [-113.70009, 35.15941],\n      [-113.69945, 35.15932],\n      [-113.69888, 35.15925],\n      [-113.69764, 35.15916],\n      [-113.69694, 35.15912],\n      [-113.69661, 35.15911],\n      [-113.6962, 35.1591],\n      [-113.69573, 35.1591],\n      [-113.6953, 35.15911],\n      [-113.69501, 35.15911],\n      [-113.69451, 35.15913],\n      [-113.6941, 35.15915],\n      [-113.69358, 35.15917],\n      [-113.69305, 35.15921],\n      [-113.69243, 35.15928],\n      [-113.69138, 35.15939],\n      [-113.69062, 35.15947],\n      [-113.68976, 35.15956],\n      [-113.68588, 35.15995],\n      [-113.66992, 35.16166],\n      [-113.66903, 35.16176],\n      [-113.66692, 35.16198],\n      [-113.66575, 35.16208],\n      [-113.6645, 35.16215],\n      [-113.6631, 35.1622],\n      [-113.66188, 35.16218],\n      [-113.66037, 35.1621],\n      [-113.65877, 35.16197],\n      [-113.65742, 35.1618],\n      [-113.65607, 35.16157],\n      [-113.655, 35.16137],\n      [-113.65351, 35.16104],\n      [-113.65194, 35.16067],\n      [-113.65009, 35.16034],\n      [-113.64831, 35.16014],\n      [-113.6463, 35.16],\n      [-113.64393, 35.15999],\n      [-113.6376, 35.16002],\n      [-113.63647, 35.16002],\n      [-113.63593, 35.16002],\n      [-113.63552, 35.16003],\n      [-113.63151, 35.16005],\n      [-113.61887, 35.1601],\n      [-113.61584, 35.16011],\n      [-113.61305, 35.16014],\n      [-113.61082, 35.1602],\n      [-113.60855, 35.1603],\n      [-113.60652, 35.16043],\n      [-113.60496, 35.16054],\n      [-113.60106, 35.16085],\n      [-113.59704, 35.16117],\n      [-113.59172, 35.16159],\n      [-113.58629, 35.16202],\n      [-113.58443, 35.1621],\n      [-113.58337, 35.16211],\n      [-113.58229, 35.16209],\n      [-113.58071, 35.16205],\n      [-113.57881, 35.16192],\n      [-113.57753, 35.16179],\n      [-113.57666, 35.16168],\n      [-113.57523, 35.16147],\n      [-113.57372, 35.16121],\n      [-113.57258, 35.16098],\n      [-113.57139, 35.1607],\n      [-113.57092, 35.16059],\n      [-113.57021, 35.16041],\n      [-113.5672, 35.15957],\n      [-113.5668, 35.15944],\n      [-113.56557, 35.15913],\n      [-113.56436, 35.1589],\n      [-113.56271, 35.15866],\n      [-113.56188, 35.15861],\n      [-113.56084, 35.15855],\n      [-113.55975, 35.15857],\n      [-113.55868, 35.15862],\n      [-113.55768, 35.15871],\n      [-113.5567, 35.15885],\n      [-113.55534, 35.1591],\n      [-113.54863, 35.16047],\n      [-113.54767, 35.16066],\n      [-113.54641, 35.16092],\n      [-113.54517, 35.1611],\n      [-113.54428, 35.16119],\n      [-113.54331, 35.16125],\n      [-113.53878, 35.16128],\n      [-113.53774, 35.1613],\n      [-113.5372, 35.16134],\n      [-113.53667, 35.1614],\n      [-113.53575, 35.16157],\n      [-113.53512, 35.16174],\n      [-113.53461, 35.1619],\n      [-113.53399, 35.16213],\n      [-113.53338, 35.16242],\n      [-113.53288, 35.16268],\n      [-113.53239, 35.16297],\n      [-113.53137, 35.16373],\n      [-113.52736, 35.16706],\n      [-113.52588, 35.16831],\n      [-113.52485, 35.1691],\n      [-113.52431, 35.16947],\n      [-113.52389, 35.16972],\n      [-113.52348, 35.16993],\n      [-113.52246, 35.17033],\n      [-113.52177, 35.1705],\n      [-113.52111, 35.17064],\n      [-113.52039, 35.17071],\n      [-113.51953, 35.17073],\n      [-113.51875, 35.17069],\n      [-113.5159, 35.17049],\n      [-113.51489, 35.17044],\n      [-113.5139, 35.17047],\n      [-113.51294, 35.17056],\n      [-113.51212, 35.17068],\n      [-113.5112, 35.17087],\n      [-113.51044, 35.17108],\n      [-113.50977, 35.1713],\n      [-113.5083, 35.17178],\n      [-113.50778, 35.17193],\n      [-113.50714, 35.17207],\n      [-113.50654, 35.17221],\n      [-113.50585, 35.17233],\n      [-113.50454, 35.17258],\n      [-113.50333, 35.17284],\n      [-113.50253, 35.17309],\n      [-113.50178, 35.1734],\n      [-113.50103, 35.17372],\n      [-113.50008, 35.17413],\n      [-113.49965, 35.17429],\n      [-113.49908, 35.17446],\n      [-113.4982, 35.17465],\n      [-113.49715, 35.17482],\n      [-113.49568, 35.17509],\n      [-113.49445, 35.1754],\n      [-113.49348, 35.17568],\n      [-113.49208, 35.17616],\n      [-113.49127, 35.17646],\n      [-113.4905, 35.1767],\n      [-113.48962, 35.17693],\n      [-113.48867, 35.17712],\n      [-113.48777, 35.17726],\n      [-113.48669, 35.17736],\n      [-113.48566, 35.1774],\n      [-113.48446, 35.17738],\n      [-113.48324, 35.17727],\n      [-113.48198, 35.17708],\n      [-113.4801, 35.17669],\n      [-113.47917, 35.17656],\n      [-113.47828, 35.17654],\n      [-113.47752, 35.17661],\n      [-113.47671, 35.17676],\n      [-113.47599, 35.17698],\n      [-113.4753, 35.17729],\n      [-113.47465, 35.17764],\n      [-113.47398, 35.17804],\n      [-113.47307, 35.17863],\n      [-113.47204, 35.17923],\n      [-113.47133, 35.17962],\n      [-113.47066, 35.17993],\n      [-113.47008, 35.18015],\n      [-113.46894, 35.18052],\n      [-113.46809, 35.18074],\n      [-113.4664, 35.18104],\n      [-113.46439, 35.18109],\n      [-113.4629, 35.18099],\n      [-113.46127, 35.18086],\n      [-113.46041, 35.18086],\n      [-113.46009, 35.18087],\n      [-113.45975, 35.18088],\n      [-113.45932, 35.1809],\n      [-113.45902, 35.18093],\n      [-113.45876, 35.18095],\n      [-113.4585, 35.18097],\n      [-113.45817, 35.18101],\n      [-113.45787, 35.18106],\n      [-113.45748, 35.18112],\n      [-113.45724, 35.18116],\n      [-113.45703, 35.1812],\n      [-113.45649, 35.18131],\n      [-113.4561, 35.1814],\n      [-113.45578, 35.18148],\n      [-113.45529, 35.18162],\n      [-113.45474, 35.1818],\n      [-113.45397, 35.18203],\n      [-113.4528, 35.18258],\n      [-113.45187, 35.18308],\n      [-113.45071, 35.1838],\n      [-113.44881, 35.18536],\n      [-113.44644, 35.18729],\n      [-113.44588, 35.18772],\n      [-113.44532, 35.18811],\n      [-113.44477, 35.18845],\n      [-113.44432, 35.18871],\n      [-113.44363, 35.18905],\n      [-113.44307, 35.1893],\n      [-113.44212, 35.18964],\n      [-113.44114, 35.18995],\n      [-113.44068, 35.19007],\n      [-113.44009, 35.19019],\n      [-113.43916, 35.19032],\n      [-113.43843, 35.19042],\n      [-113.43606, 35.1904],\n      [-113.43455, 35.19023],\n      [-113.43362, 35.19014],\n      [-113.43263, 35.19004],\n      [-113.42973, 35.18976],\n      [-113.42771, 35.18959],\n      [-113.42627, 35.18947],\n      [-113.42496, 35.18932],\n      [-113.4244, 35.18925],\n      [-113.42271, 35.18898],\n      [-113.42154, 35.1887],\n      [-113.4202, 35.18836],\n      [-113.41757, 35.18767],\n      [-113.40607, 35.18561],\n      [-113.40294, 35.18503],\n      [-113.39481, 35.18362],\n      [-113.39341, 35.18347],\n      [-113.39229, 35.18339],\n      [-113.39121, 35.18336],\n      [-113.39003, 35.1834],\n      [-113.38892, 35.18348],\n      [-113.38691, 35.18376],\n      [-113.38496, 35.18424],\n      [-113.38342, 35.18472],\n      [-113.38227, 35.18518],\n      [-113.3814, 35.18559],\n      [-113.38034, 35.18616],\n      [-113.37595, 35.1885],\n      [-113.3746, 35.18909],\n      [-113.37384, 35.18937],\n      [-113.37235, 35.18985],\n      [-113.37169, 35.19003],\n      [-113.37091, 35.19019],\n      [-113.37019, 35.19034],\n      [-113.36957, 35.19044],\n      [-113.36924, 35.19049],\n      [-113.36845, 35.19059],\n      [-113.36745, 35.19065],\n      [-113.36617, 35.19068],\n      [-113.36531, 35.19069],\n      [-113.36166, 35.19072],\n      [-113.35938, 35.19074],\n      [-113.35226, 35.19081],\n      [-113.33737, 35.19092],\n      [-113.33571, 35.19091],\n      [-113.33378, 35.19081],\n      [-113.33208, 35.19061],\n      [-113.33047, 35.1904],\n      [-113.32678, 35.18967],\n      [-113.32366, 35.18906],\n      [-113.32241, 35.1889],\n      [-113.32068, 35.18884],\n      [-113.31964, 35.18889],\n      [-113.31833, 35.18902],\n      [-113.31759, 35.18918],\n      [-113.31699, 35.18931],\n      [-113.3164, 35.18946],\n      [-113.31481, 35.18995],\n      [-113.3137, 35.19041],\n      [-113.31258, 35.19094],\n      [-113.31145, 35.19162],\n      [-113.31053, 35.19232],\n      [-113.30967, 35.19302],\n      [-113.30882, 35.19389],\n      [-113.30763, 35.19528],\n      [-113.30292, 35.2007],\n      [-113.3012, 35.20247],\n      [-113.3008, 35.2028],\n      [-113.30037, 35.20318],\n      [-113.2989, 35.20424],\n      [-113.29754, 35.205],\n      [-113.29719, 35.20519],\n      [-113.29528, 35.20606],\n      [-113.29344, 35.20666],\n      [-113.29228, 35.20694],\n      [-113.29155, 35.2071],\n      [-113.29073, 35.20723],\n      [-113.2904, 35.20727],\n      [-113.28947, 35.20739],\n      [-113.28829, 35.20749],\n      [-113.28715, 35.20753],\n      [-113.27931, 35.20727],\n      [-113.27819, 35.20723],\n      [-113.27734, 35.20724],\n      [-113.27606, 35.20727],\n      [-113.27456, 35.20739],\n      [-113.27298, 35.2076],\n      [-113.27181, 35.20781],\n      [-113.27066, 35.20805],\n      [-113.26951, 35.20835],\n      [-113.26829, 35.20871],\n      [-113.26703, 35.20917],\n      [-113.26546, 35.20982],\n      [-113.26403, 35.21051],\n      [-113.26081, 35.21231],\n      [-113.25555, 35.2152],\n      [-113.24707, 35.21981],\n      [-113.2451, 35.22091],\n      [-113.24319, 35.2219],\n      [-113.24097, 35.22317],\n      [-113.23948, 35.22399],\n      [-113.2384, 35.22453],\n      [-113.23621, 35.22554],\n      [-113.23448, 35.22617],\n      [-113.23337, 35.22657],\n      [-113.21963, 35.23132],\n      [-113.21428, 35.23315],\n      [-113.21282, 35.2337],\n      [-113.21157, 35.23424],\n      [-113.20904, 35.23549],\n      [-113.20588, 35.23716],\n      [-113.19215, 35.24459],\n      [-113.18762, 35.24701],\n      [-113.18722, 35.24721],\n      [-113.18348, 35.24927],\n      [-113.18097, 35.25062],\n      [-113.17849, 35.25194],\n      [-113.17694, 35.25279],\n      [-113.17523, 35.25373],\n      [-113.17418, 35.25426],\n      [-113.17092, 35.25604],\n      [-113.16379, 35.25989],\n      [-113.16317, 35.26023],\n      [-113.13124, 35.27748],\n      [-113.13019, 35.27811],\n      [-113.12833, 35.27948],\n      [-113.12726, 35.28047],\n      [-113.12594, 35.28176],\n      [-113.12451, 35.28298],\n      [-113.12323, 35.28399],\n      [-113.12199, 35.28472],\n      [-113.12103, 35.28523],\n      [-113.12005, 35.28566],\n      [-113.11932, 35.28599],\n      [-113.11811, 35.28644],\n      [-113.11723, 35.28673],\n      [-113.11567, 35.28712],\n      [-113.11383, 35.28739],\n      [-113.11212, 35.28749],\n      [-113.1109, 35.28749],\n      [-113.10921, 35.28736],\n      [-113.10791, 35.28718],\n      [-113.10539, 35.28664],\n      [-113.1005, 35.28568],\n      [-113.09914, 35.28552],\n      [-113.09752, 35.28553],\n      [-113.09597, 35.28576],\n      [-113.09453, 35.28612],\n      [-113.0929, 35.28682],\n      [-113.09169, 35.28741],\n      [-113.09079, 35.28785],\n      [-113.08983, 35.28828],\n      [-113.08846, 35.28882],\n      [-113.08716, 35.28928],\n      [-113.08518, 35.28993],\n      [-113.08342, 35.29042],\n      [-113.08094, 35.29096],\n      [-113.08, 35.29112],\n      [-113.0793, 35.29123],\n      [-113.07796, 35.29142],\n      [-113.07545, 35.29167],\n      [-113.07365, 35.29176],\n      [-113.07211, 35.29178],\n      [-113.05478, 35.29198],\n      [-113.04321, 35.29212],\n      [-113.04103, 35.29215],\n      [-113.03689, 35.2922],\n      [-113.03611, 35.29224],\n      [-113.0354, 35.29231],\n      [-113.03465, 35.29243],\n      [-113.03376, 35.2926],\n      [-113.03246, 35.29298],\n      [-113.0316, 35.2933],\n      [-113.03099, 35.29355],\n      [-113.03014, 35.29401],\n      [-113.02932, 35.29448],\n      [-113.02843, 35.29511],\n      [-113.02733, 35.29594],\n      [-113.02476, 35.29784],\n      [-113.02306, 35.29902],\n      [-113.02131, 35.29996],\n      [-113.02005, 35.30052],\n      [-113.01897, 35.30092],\n      [-113.01797, 35.30122],\n      [-113.01708, 35.30144],\n      [-113.01565, 35.30174],\n      [-113.01379, 35.302],\n      [-113.01227, 35.30208],\n      [-113.00648, 35.30231],\n      [-113.00533, 35.30239],\n      [-113.00402, 35.30252],\n      [-113.0024, 35.30273],\n      [-113.00027, 35.3031],\n      [-112.99815, 35.30357],\n      [-112.99692, 35.30392],\n      [-112.99597, 35.30419],\n      [-112.98879, 35.30668],\n      [-112.98858, 35.30675],\n      [-112.9836, 35.30848],\n      [-112.97423, 35.31176],\n      [-112.97398, 35.31185],\n      [-112.96957, 35.31339],\n      [-112.96238, 35.31591],\n      [-112.95871, 35.31703],\n      [-112.95541, 35.31797],\n      [-112.95309, 35.31854],\n      [-112.94964, 35.3194],\n      [-112.94724, 35.31987],\n      [-112.94507, 35.32027],\n      [-112.94168, 35.32085],\n      [-112.93669, 35.32156],\n      [-112.93227, 35.32202],\n      [-112.92904, 35.32226],\n      [-112.92511, 35.32247],\n      [-112.92282, 35.32253],\n      [-112.91871, 35.32256],\n      [-112.91525, 35.32248],\n      [-112.91084, 35.32226],\n      [-112.90683, 35.32194],\n      [-112.90302, 35.32154],\n      [-112.89711, 35.32069],\n      [-112.89358, 35.32012],\n      [-112.88746, 35.319],\n      [-112.86827, 35.31531],\n      [-112.86675, 35.31492],\n      [-112.86531, 35.31449],\n      [-112.86427, 35.31413],\n      [-112.86257, 35.31352],\n      [-112.8613, 35.31299],\n      [-112.85948, 35.31213],\n      [-112.8585, 35.31167],\n      [-112.85722, 35.31097],\n      [-112.85605, 35.31031],\n      [-112.8557, 35.31011],\n      [-112.85196, 35.30793],\n      [-112.85162, 35.30773],\n      [-112.84879, 35.30615],\n      [-112.84841, 35.30593],\n      [-112.83502, 35.29824],\n      [-112.83354, 35.2974],\n      [-112.83324, 35.29723],\n      [-112.82791, 35.29426],\n      [-112.82665, 35.29361],\n      [-112.82443, 35.29255],\n      [-112.82296, 35.29188],\n      [-112.82139, 35.29122],\n      [-112.8199, 35.29061],\n      [-112.81841, 35.29005],\n      [-112.81749, 35.28972],\n      [-112.81709, 35.28957],\n      [-112.816, 35.2892],\n      [-112.81504, 35.28889],\n      [-112.8134, 35.28837],\n      [-112.81162, 35.28786],\n      [-112.8076, 35.28672],\n      [-112.80184, 35.28507],\n      [-112.79462, 35.28301],\n      [-112.79384, 35.28279],\n      [-112.78629, 35.28066],\n      [-112.76641, 35.275],\n      [-112.76315, 35.27407],\n      [-112.76151, 35.27367],\n      [-112.7597, 35.27328],\n      [-112.75781, 35.27298],\n      [-112.75657, 35.27282],\n      [-112.75542, 35.2727],\n      [-112.75324, 35.27255],\n      [-112.74996, 35.27249],\n      [-112.74153, 35.27235],\n      [-112.74003, 35.27232],\n      [-112.73893, 35.27228],\n      [-112.73765, 35.27214],\n      [-112.73703, 35.27206],\n      [-112.7363, 35.27193],\n      [-112.73555, 35.27179],\n      [-112.7349, 35.27162],\n      [-112.73444, 35.2715],\n      [-112.73356, 35.27125],\n      [-112.73249, 35.27087],\n      [-112.7313, 35.27038],\n      [-112.72984, 35.26965],\n      [-112.72913, 35.26923],\n      [-112.72715, 35.26784],\n      [-112.72635, 35.26715],\n      [-112.72367, 35.26473],\n      [-112.7222, 35.26352],\n      [-112.72027, 35.26208],\n      [-112.71763, 35.26045],\n      [-112.71613, 35.25964],\n      [-112.71398, 35.25861],\n      [-112.71202, 35.25779],\n      [-112.70953, 35.2569],\n      [-112.68898, 35.24937],\n      [-112.66767, 35.24155],\n      [-112.66462, 35.24056],\n      [-112.6612, 35.23955],\n      [-112.65982, 35.23918],\n      [-112.65638, 35.23832],\n      [-112.65372, 35.23774],\n      [-112.65128, 35.23727],\n      [-112.64807, 35.23673],\n      [-112.64492, 35.2363],\n      [-112.63736, 35.2354],\n      [-112.62721, 35.23425],\n      [-112.60998, 35.23227],\n      [-112.60969, 35.23223],\n      [-112.60783, 35.23202],\n      [-112.60336, 35.2315],\n      [-112.59653, 35.23071],\n      [-112.59333, 35.23034],\n      [-112.58977, 35.22992],\n      [-112.58807, 35.22971],\n      [-112.58679, 35.22952],\n      [-112.5856, 35.22932],\n      [-112.58315, 35.22888],\n      [-112.58088, 35.22842],\n      [-112.57333, 35.22693],\n      [-112.56723, 35.22572],\n      [-112.56625, 35.22553],\n      [-112.55146, 35.2226],\n      [-112.54342, 35.22103],\n      [-112.54231, 35.2209],\n      [-112.53972, 35.22085],\n      [-112.53918, 35.22085],\n      [-112.52757, 35.22084],\n      [-112.52267, 35.22082],\n      [-112.51205, 35.2208],\n      [-112.51045, 35.22079],\n      [-112.50836, 35.22075],\n      [-112.50788, 35.22073],\n      [-112.50522, 35.22066],\n      [-112.50372, 35.22062],\n      [-112.50088, 35.22052],\n      [-112.49928, 35.22042],\n      [-112.49801, 35.22029],\n      [-112.49734, 35.22021],\n      [-112.49666, 35.22012],\n      [-112.49581, 35.22],\n      [-112.4928, 35.21944],\n      [-112.49178, 35.21926],\n      [-112.49042, 35.21909],\n      [-112.48884, 35.21895],\n      [-112.4884, 35.21892],\n      [-112.48773, 35.21889],\n      [-112.48645, 35.21888],\n      [-112.48496, 35.2189],\n      [-112.48376, 35.21898],\n      [-112.4824, 35.2191],\n      [-112.48079, 35.21934],\n      [-112.48013, 35.21945],\n      [-112.47815, 35.21987],\n      [-112.47611, 35.22045],\n      [-112.47551, 35.22064],\n      [-112.47447, 35.22093],\n      [-112.47378, 35.22109],\n      [-112.47288, 35.22126],\n      [-112.47201, 35.22139],\n      [-112.47097, 35.22149],\n      [-112.46994, 35.22151],\n      [-112.46884, 35.22147],\n      [-112.46791, 35.2214],\n      [-112.46701, 35.22126],\n      [-112.46604, 35.22107],\n      [-112.46512, 35.2209],\n      [-112.46441, 35.22077],\n      [-112.46427, 35.22074],\n      [-112.46273, 35.22046],\n      [-112.46169, 35.2203],\n      [-112.46082, 35.22017],\n      [-112.45932, 35.22001],\n      [-112.45811, 35.21991],\n      [-112.45643, 35.21982],\n      [-112.4541, 35.21974],\n      [-112.45285, 35.21969],\n      [-112.45016, 35.21949],\n      [-112.44769, 35.21918],\n      [-112.44561, 35.21881],\n      [-112.44474, 35.2186],\n      [-112.44322, 35.21822],\n      [-112.44028, 35.21736],\n      [-112.43901, 35.21696],\n      [-112.43879, 35.21689],\n      [-112.43449, 35.21559],\n      [-112.43383, 35.21539],\n      [-112.4326, 35.21504],\n      [-112.4314, 35.21476],\n      [-112.42949, 35.21447],\n      [-112.42833, 35.21438],\n      [-112.42808, 35.21436],\n      [-112.42788, 35.21434],\n      [-112.42458, 35.2141],\n      [-112.42425, 35.21407],\n      [-112.41157, 35.21319],\n      [-112.41073, 35.21315],\n      [-112.40997, 35.21316],\n      [-112.40882, 35.21323],\n      [-112.40755, 35.2134],\n      [-112.40682, 35.21355],\n      [-112.40611, 35.21373],\n      [-112.40532, 35.21396],\n      [-112.40454, 35.21425],\n      [-112.40132, 35.21557],\n      [-112.40066, 35.21582],\n      [-112.39974, 35.2161],\n      [-112.39894, 35.21631],\n      [-112.39819, 35.21646],\n      [-112.39742, 35.21656],\n      [-112.39641, 35.21665],\n      [-112.39582, 35.21667],\n      [-112.39525, 35.21666],\n      [-112.39406, 35.21659],\n      [-112.39315, 35.21645],\n      [-112.39216, 35.21627],\n      [-112.3907, 35.21599],\n      [-112.38996, 35.21586],\n      [-112.38919, 35.21577],\n      [-112.38857, 35.21572],\n      [-112.38793, 35.21571],\n      [-112.38319, 35.21583],\n      [-112.38144, 35.21588],\n      [-112.37989, 35.21599],\n      [-112.37856, 35.21613],\n      [-112.37845, 35.21614],\n      [-112.37809, 35.21618],\n      [-112.37738, 35.21627],\n      [-112.37666, 35.21635],\n      [-112.37377, 35.2167],\n      [-112.37293, 35.2168],\n      [-112.3721, 35.21686],\n      [-112.37136, 35.21686],\n      [-112.37056, 35.21682],\n      [-112.36965, 35.21674],\n      [-112.36894, 35.21664],\n      [-112.36815, 35.21647],\n      [-112.36281, 35.21523],\n      [-112.36198, 35.21505],\n      [-112.36126, 35.21493],\n      [-112.36047, 35.21481],\n      [-112.35961, 35.21473],\n      [-112.35855, 35.21469],\n      [-112.35732, 35.21472],\n      [-112.35649, 35.21478],\n      [-112.35581, 35.21486],\n      [-112.35502, 35.21498],\n      [-112.35448, 35.21509],\n      [-112.35386, 35.21522],\n      [-112.35348, 35.21531],\n      [-112.35241, 35.21565],\n      [-112.34979, 35.21668],\n      [-112.34877, 35.21706],\n      [-112.34768, 35.21736],\n      [-112.3468, 35.21756],\n      [-112.34584, 35.21771],\n      [-112.3408, 35.21856],\n      [-112.33964, 35.21882],\n      [-112.33895, 35.21902],\n      [-112.33809, 35.21931],\n      [-112.3374, 35.21959],\n      [-112.3367, 35.21991],\n      [-112.33591, 35.22033],\n      [-112.33478, 35.22091],\n      [-112.33365, 35.2214],\n      [-112.33283, 35.22169],\n      [-112.33216, 35.22188],\n      [-112.33154, 35.22204],\n      [-112.33084, 35.22218],\n      [-112.32929, 35.22244],\n      [-112.32778, 35.22269],\n      [-112.32669, 35.22284],\n      [-112.32578, 35.22292],\n      [-112.32451, 35.22294],\n      [-112.32432, 35.22294],\n      [-112.3234, 35.22288],\n      [-112.32256, 35.22279],\n      [-112.32175, 35.22266],\n      [-112.31954, 35.22219],\n      [-112.31326, 35.22081],\n      [-112.31008, 35.22012],\n      [-112.30879, 35.21985],\n      [-112.3077, 35.21968],\n      [-112.30662, 35.21958],\n      [-112.30533, 35.21953],\n      [-112.30406, 35.21959],\n      [-112.3026, 35.21975],\n      [-112.30023, 35.22018],\n      [-112.29909, 35.2203],\n      [-112.29791, 35.22036],\n      [-112.29677, 35.22035],\n      [-112.29537, 35.22024],\n      [-112.29378, 35.21999],\n      [-112.29159, 35.2195],\n      [-112.29004, 35.21921],\n      [-112.28808, 35.21895],\n      [-112.28648, 35.21883],\n      [-112.2852, 35.21881],\n      [-112.28312, 35.21888],\n      [-112.28171, 35.21899],\n      [-112.28037, 35.21917],\n      [-112.27964, 35.2193],\n      [-112.27873, 35.21947],\n      [-112.27762, 35.21972],\n      [-112.27626, 35.2201],\n      [-112.27616, 35.22012],\n      [-112.27585, 35.22021],\n      [-112.27417, 35.2207],\n      [-112.27219, 35.22114],\n      [-112.2706, 35.22139],\n      [-112.2693, 35.22156],\n      [-112.26811, 35.22165],\n      [-112.2661, 35.22173],\n      [-112.25496, 35.22214],\n      [-112.2511, 35.22229],\n      [-112.24947, 35.22235],\n      [-112.24444, 35.22253],\n      [-112.24337, 35.2226],\n      [-112.2423, 35.22276],\n      [-112.24114, 35.22306],\n      [-112.24017, 35.22342],\n      [-112.23938, 35.22381],\n      [-112.23889, 35.22408],\n      [-112.23843, 35.22438],\n      [-112.23783, 35.22483],\n      [-112.23755, 35.22507],\n      [-112.23726, 35.22534],\n      [-112.23682, 35.22583],\n      [-112.23639, 35.22636],\n      [-112.23612, 35.22673],\n      [-112.23583, 35.22716],\n      [-112.23572, 35.22731],\n      [-112.23456, 35.22909],\n      [-112.23303, 35.23096],\n      [-112.23229, 35.23171],\n      [-112.23172, 35.23223],\n      [-112.23117, 35.23269],\n      [-112.23059, 35.23315],\n      [-112.22989, 35.23364],\n      [-112.22913, 35.23412],\n      [-112.22823, 35.23463],\n      [-112.2275, 35.23501],\n      [-112.227, 35.23526],\n      [-112.22604, 35.23567],\n      [-112.22472, 35.23621],\n      [-112.22206, 35.23736],\n      [-112.22118, 35.23785],\n      [-112.22043, 35.23833],\n      [-112.21984, 35.23879],\n      [-112.21939, 35.23916],\n      [-112.21908, 35.23941],\n      [-112.21869, 35.23977],\n      [-112.21799, 35.24056],\n      [-112.21595, 35.24335],\n      [-112.21547, 35.24399],\n      [-112.21516, 35.24438],\n      [-112.2147, 35.2449],\n      [-112.21413, 35.24549],\n      [-112.21328, 35.24628],\n      [-112.21278, 35.24669],\n      [-112.21182, 35.24748],\n      [-112.21094, 35.24814],\n      [-112.21034, 35.24863],\n      [-112.20984, 35.24898],\n      [-112.20922, 35.24951],\n      [-112.20863, 35.24999],\n      [-112.20791, 35.25054],\n      [-112.20673, 35.2515],\n      [-112.20585, 35.25213],\n      [-112.20454, 35.25305],\n      [-112.20361, 35.25359],\n      [-112.20246, 35.25422],\n      [-112.20204, 35.25442],\n      [-112.20152, 35.25467],\n      [-112.19983, 35.2555],\n      [-112.19845, 35.25617],\n      [-112.19664, 35.25708],\n      [-112.19432, 35.25823],\n      [-112.1929, 35.25893],\n      [-112.19247, 35.25914],\n      [-112.19193, 35.25941],\n      [-112.19031, 35.26021],\n      [-112.18902, 35.26086],\n      [-112.18766, 35.26154],\n      [-112.18652, 35.26209],\n      [-112.1861, 35.26228],\n      [-112.18534, 35.26257],\n      [-112.18453, 35.26289],\n      [-112.18354, 35.26317],\n      [-112.18284, 35.26336],\n      [-112.1816, 35.26359],\n      [-112.18085, 35.26367],\n      [-112.17994, 35.26375],\n      [-112.17901, 35.26378],\n      [-112.17682, 35.2638],\n      [-112.17588, 35.26382],\n      [-112.17419, 35.26384],\n      [-112.17311, 35.26386],\n      [-112.17275, 35.26387],\n      [-112.17223, 35.26387],\n      [-112.16815, 35.2639],\n      [-112.16675, 35.26393],\n      [-112.1656, 35.26394],\n      [-112.16455, 35.26395],\n      [-112.16367, 35.26391],\n      [-112.16298, 35.26386],\n      [-112.16259, 35.26382],\n      [-112.162, 35.26375],\n      [-112.16136, 35.26366],\n      [-112.16052, 35.2635],\n      [-112.1599, 35.26337],\n      [-112.15949, 35.26327],\n      [-112.15866, 35.26305],\n      [-112.1571, 35.26253],\n      [-112.15672, 35.26239],\n      [-112.15609, 35.26216],\n      [-112.15481, 35.26167],\n      [-112.15336, 35.26112],\n      [-112.15241, 35.26077],\n      [-112.15162, 35.26047],\n      [-112.15105, 35.26025],\n      [-112.14928, 35.25962],\n      [-112.14825, 35.25924],\n      [-112.14727, 35.25891],\n      [-112.14641, 35.25866],\n      [-112.14584, 35.25851],\n      [-112.14551, 35.25844],\n      [-112.14444, 35.25823],\n      [-112.14355, 35.25809],\n      [-112.1423, 35.25795],\n      [-112.14086, 35.25789],\n      [-112.1397, 35.25789],\n      [-112.13538, 35.25792],\n      [-112.12952, 35.25799],\n      [-112.12805, 35.25798],\n      [-112.12543, 35.258],\n      [-112.12262, 35.25805],\n      [-112.12077, 35.25808],\n      [-112.11704, 35.25811],\n      [-112.11494, 35.25812],\n      [-112.11149, 35.25818],\n      [-112.10649, 35.25822],\n      [-112.10122, 35.25828],\n      [-112.096, 35.25831],\n      [-112.09408, 35.25822],\n      [-112.08851, 35.25797],\n      [-112.08543, 35.25782],\n      [-112.08407, 35.25777],\n      [-112.08279, 35.25782],\n      [-112.08132, 35.25795],\n      [-112.08013, 35.25814],\n      [-112.07888, 35.25839],\n      [-112.07784, 35.25868],\n      [-112.07632, 35.25916],\n      [-112.07518, 35.25962],\n      [-112.07239, 35.26091],\n      [-112.07156, 35.26126],\n      [-112.07036, 35.2618],\n      [-112.06795, 35.26274],\n      [-112.0661, 35.26332],\n      [-112.06385, 35.26388],\n      [-112.06238, 35.26417],\n      [-112.06074, 35.26444],\n      [-112.05863, 35.26464],\n      [-112.05722, 35.26471],\n      [-112.05646, 35.26472],\n      [-112.05589, 35.26474],\n      [-112.05412, 35.2647],\n      [-112.05282, 35.26463],\n      [-112.05178, 35.26452],\n      [-112.05039, 35.26435],\n      [-112.04935, 35.26418],\n      [-112.04678, 35.26365],\n      [-112.04351, 35.26284],\n      [-112.04109, 35.26227],\n      [-112.03899, 35.26177],\n      [-112.03511, 35.26085],\n      [-112.03333, 35.26043],\n      [-112.03057, 35.25976],\n      [-112.02656, 35.25882],\n      [-112.0217, 35.25766],\n      [-112.01669, 35.25646],\n      [-112.01077, 35.25503],\n      [-112.00844, 35.25448],\n      [-112.00266, 35.25309],\n      [-112.00152, 35.25281],\n      [-112.00049, 35.25252],\n      [-111.99942, 35.25222],\n      [-111.99828, 35.25183],\n      [-111.99609, 35.25109],\n      [-111.99334, 35.25011],\n      [-111.99068, 35.24921],\n      [-111.98804, 35.24853],\n      [-111.98683, 35.24825],\n      [-111.98555, 35.248],\n      [-111.98304, 35.24763],\n      [-111.98106, 35.24744],\n      [-111.97937, 35.24733],\n      [-111.97779, 35.24731],\n      [-111.97634, 35.24732],\n      [-111.97457, 35.24738],\n      [-111.97227, 35.24759],\n      [-111.97025, 35.24787],\n      [-111.96845, 35.24817],\n      [-111.96452, 35.24909],\n      [-111.96166, 35.24977],\n      [-111.96007, 35.25016],\n      [-111.95839, 35.25059],\n      [-111.95682, 35.25095],\n      [-111.95344, 35.25178],\n      [-111.95033, 35.25253],\n      [-111.9483, 35.25309],\n      [-111.947, 35.25344],\n      [-111.94553, 35.25382],\n      [-111.94411, 35.25416],\n      [-111.9436, 35.25428],\n      [-111.94231, 35.25459],\n      [-111.94148, 35.25479],\n      [-111.94068, 35.25499],\n      [-111.93975, 35.25521],\n      [-111.93901, 35.25539],\n      [-111.93734, 35.2558],\n      [-111.93652, 35.256],\n      [-111.9357, 35.25619],\n      [-111.9344, 35.2565],\n      [-111.93326, 35.25671],\n      [-111.93204, 35.25686],\n      [-111.93127, 35.25691],\n      [-111.93029, 35.25696],\n      [-111.9291, 35.25695],\n      [-111.92786, 35.25687],\n      [-111.92675, 35.25675],\n      [-111.92563, 35.25654],\n      [-111.92452, 35.25629],\n      [-111.92306, 35.25592],\n      [-111.91158, 35.25305],\n      [-111.90886, 35.25262],\n      [-111.90698, 35.25245],\n      [-111.90438, 35.25235],\n      [-111.90267, 35.25221],\n      [-111.9011, 35.25195],\n      [-111.89987, 35.25166],\n      [-111.89872, 35.25132],\n      [-111.8973, 35.25083],\n      [-111.89645, 35.25048],\n      [-111.89542, 35.24998],\n      [-111.89358, 35.2491],\n      [-111.8923, 35.24849],\n      [-111.89152, 35.24818],\n      [-111.89046, 35.2478],\n      [-111.88922, 35.24745],\n      [-111.88819, 35.2472],\n      [-111.88697, 35.24698],\n      [-111.88595, 35.24685],\n      [-111.88481, 35.24676],\n      [-111.88367, 35.24672],\n      [-111.88287, 35.24673],\n      [-111.88196, 35.24676],\n      [-111.88115, 35.24682],\n      [-111.87987, 35.24699],\n      [-111.87614, 35.24767],\n      [-111.87466, 35.2479],\n      [-111.87274, 35.24814],\n      [-111.87015, 35.24839],\n      [-111.86822, 35.24852],\n      [-111.86675, 35.24856],\n      [-111.86487, 35.2486],\n      [-111.86278, 35.24857],\n      [-111.86082, 35.24848],\n      [-111.85925, 35.24838],\n      [-111.85808, 35.24827],\n      [-111.85582, 35.24801],\n      [-111.85382, 35.24772],\n      [-111.85187, 35.24739],\n      [-111.85001, 35.24701],\n      [-111.84805, 35.24655],\n      [-111.84609, 35.24603],\n      [-111.84407, 35.24542],\n      [-111.84222, 35.2448],\n      [-111.84037, 35.24412],\n      [-111.83848, 35.24335],\n      [-111.83633, 35.2424],\n      [-111.83468, 35.24161],\n      [-111.8323, 35.2405],\n      [-111.82821, 35.23857],\n      [-111.82763, 35.23829],\n      [-111.82022, 35.2348],\n      [-111.81925, 35.23433],\n      [-111.8187, 35.23406],\n      [-111.81795, 35.23371],\n      [-111.79922, 35.22487],\n      [-111.79752, 35.22401],\n      [-111.79608, 35.2232],\n      [-111.79526, 35.22272],\n      [-111.79375, 35.2218],\n      [-111.7926, 35.22103],\n      [-111.79113, 35.21997],\n      [-111.78943, 35.2186],\n      [-111.78833, 35.21773],\n      [-111.78759, 35.21721],\n      [-111.78688, 35.21674],\n      [-111.78599, 35.21622],\n      [-111.78499, 35.2157],\n      [-111.78389, 35.21521],\n      [-111.78298, 35.21486],\n      [-111.77981, 35.2138],\n      [-111.77915, 35.21359],\n      [-111.7776, 35.21308],\n      [-111.77639, 35.21266],\n      [-111.77574, 35.21238],\n      [-111.77511, 35.21203],\n      [-111.77419, 35.21138],\n      [-111.77364, 35.21092],\n      [-111.77312, 35.21037],\n      [-111.77265, 35.20977],\n      [-111.77207, 35.20882],\n      [-111.77153, 35.20797],\n      [-111.77106, 35.20719],\n      [-111.77045, 35.20636],\n      [-111.76969, 35.20555],\n      [-111.76906, 35.20498],\n      [-111.76831, 35.2044],\n      [-111.7675, 35.20389],\n      [-111.76649, 35.20336],\n      [-111.76572, 35.20305],\n      [-111.76427, 35.20253],\n      [-111.76211, 35.20186],\n      [-111.76104, 35.20149],\n      [-111.75463, 35.19947],\n      [-111.75294, 35.1991],\n      [-111.75173, 35.19891],\n      [-111.75069, 35.19882],\n      [-111.74916, 35.19866],\n      [-111.74709, 35.19846],\n      [-111.7456, 35.19823],\n      [-111.74456, 35.19802],\n      [-111.74337, 35.19769],\n      [-111.74203, 35.19718],\n      [-111.741, 35.19674],\n      [-111.73985, 35.19609],\n      [-111.73892, 35.19545],\n      [-111.73845, 35.19514],\n      [-111.73709, 35.19421],\n      [-111.73625, 35.19376],\n      [-111.73535, 35.19337],\n      [-111.73019, 35.19175],\n      [-111.72729, 35.19085],\n      [-111.72619, 35.19052],\n      [-111.72511, 35.19019],\n      [-111.72461, 35.19002],\n      [-111.72398, 35.18983],\n      [-111.71559, 35.1872],\n      [-111.7139, 35.1867],\n      [-111.71251, 35.18625],\n      [-111.71032, 35.18555],\n      [-111.70963, 35.18533],\n      [-111.70424, 35.18365],\n      [-111.70268, 35.18318],\n      [-111.70186, 35.18293],\n      [-111.69935, 35.18228],\n      [-111.69579, 35.18145],\n      [-111.69489, 35.18123],\n      [-111.69399, 35.18101],\n      [-111.68677, 35.1793],\n      [-111.68526, 35.17895],\n      [-111.68427, 35.17873],\n      [-111.6794, 35.17759],\n      [-111.67615, 35.17677],\n      [-111.67553, 35.17658],\n      [-111.67491, 35.17638],\n      [-111.67377, 35.17599],\n      [-111.67306, 35.17573],\n      [-111.67195, 35.1753],\n      [-111.67156, 35.17513],\n      [-111.67001, 35.17452],\n      [-111.66956, 35.17433],\n      [-111.66908, 35.17414],\n      [-111.66823, 35.17379],\n      [-111.66763, 35.17355],\n      [-111.66704, 35.17331],\n      [-111.66595, 35.17286],\n      [-111.66484, 35.17242],\n      [-111.66436, 35.17224],\n      [-111.66409, 35.17215],\n      [-111.66386, 35.17206],\n      [-111.66356, 35.17197],\n      [-111.66318, 35.17186],\n      [-111.66282, 35.17176],\n      [-111.66274, 35.17173],\n      [-111.662, 35.17154],\n      [-111.66125, 35.17138],\n      [-111.66089, 35.17129],\n      [-111.66045, 35.17123],\n      [-111.65988, 35.17114],\n      [-111.65956, 35.17109],\n      [-111.65903, 35.17104],\n      [-111.6586, 35.171],\n      [-111.6573, 35.17094],\n      [-111.65663, 35.17092],\n      [-111.6561, 35.17094],\n      [-111.65519, 35.17099],\n      [-111.65441, 35.17104],\n      [-111.65315, 35.17121],\n      [-111.65256, 35.17131],\n      [-111.65198, 35.17143],\n      [-111.65148, 35.17154],\n      [-111.65112, 35.17163],\n      [-111.65068, 35.17174],\n      [-111.65022, 35.17186],\n      [-111.64997, 35.17194],\n      [-111.6493, 35.17217],\n      [-111.6488, 35.17236],\n      [-111.64841, 35.17251],\n      [-111.64805, 35.17266],\n      [-111.64743, 35.17292],\n      [-111.647, 35.17313],\n      [-111.64629, 35.17349],\n      [-111.64579, 35.17377],\n      [-111.64538, 35.174],\n      [-111.64493, 35.17429],\n      [-111.6444, 35.17464],\n      [-111.64381, 35.17506],\n      [-111.64319, 35.17554],\n      [-111.64284, 35.17583],\n      [-111.64247, 35.17609],\n      [-111.64143, 35.17701],\n      [-111.64124, 35.17718],\n      [-111.64073, 35.17761],\n      [-111.64026, 35.178],\n      [-111.63979, 35.17839],\n      [-111.63942, 35.1787],\n      [-111.6389, 35.17913],\n      [-111.63814, 35.17978],\n      [-111.63758, 35.18026],\n      [-111.63694, 35.18082],\n      [-111.63624, 35.18143],\n      [-111.63553, 35.18203],\n      [-111.63506, 35.18244],\n      [-111.63439, 35.18301],\n      [-111.63378, 35.18353],\n      [-111.63328, 35.18393],\n      [-111.63241, 35.18468],\n      [-111.63197, 35.18505],\n      [-111.63136, 35.18553],\n      [-111.63068, 35.18603],\n      [-111.6302, 35.18637],\n      [-111.62959, 35.18679],\n      [-111.62919, 35.18705],\n      [-111.62862, 35.1874],\n      [-111.62804, 35.18774],\n      [-111.62767, 35.18795],\n      [-111.62728, 35.18818],\n      [-111.62663, 35.18855],\n      [-111.62596, 35.18891],\n      [-111.62531, 35.18927],\n      [-111.62494, 35.18948],\n      [-111.62428, 35.18987],\n      [-111.62377, 35.19015],\n      [-111.62332, 35.19042],\n      [-111.62273, 35.19078],\n      [-111.62232, 35.19103],\n      [-111.62169, 35.19143],\n      [-111.62139, 35.19163],\n      [-111.62056, 35.19219],\n      [-111.62004, 35.19259],\n      [-111.61953, 35.19297],\n      [-111.619, 35.19337],\n      [-111.61843, 35.1938],\n      [-111.6173, 35.19465],\n      [-111.6168, 35.19504],\n      [-111.61614, 35.19554],\n      [-111.61574, 35.19584],\n      [-111.61557, 35.19596],\n      [-111.61523, 35.19622],\n      [-111.61478, 35.19657],\n      [-111.61442, 35.19684],\n      [-111.61397, 35.19718],\n      [-111.61358, 35.19747],\n      [-111.61299, 35.19793],\n      [-111.61222, 35.19852],\n      [-111.61156, 35.19901],\n      [-111.61084, 35.19955],\n      [-111.61009, 35.20012],\n      [-111.60941, 35.20063],\n      [-111.60884, 35.20106],\n      [-111.60824, 35.20153],\n      [-111.60774, 35.2019],\n      [-111.60726, 35.20227],\n      [-111.60686, 35.20257],\n      [-111.60613, 35.20311],\n      [-111.60545, 35.20363],\n      [-111.60476, 35.20416],\n      [-111.60381, 35.20487],\n      [-111.60315, 35.20538],\n      [-111.60265, 35.20575],\n      [-111.60208, 35.20618],\n      [-111.6016, 35.20655],\n      [-111.60116, 35.20688],\n      [-111.60059, 35.20731],\n      [-111.60008, 35.2077],\n      [-111.5995, 35.20815],\n      [-111.59887, 35.2086],\n      [-111.5983, 35.20901],\n      [-111.59761, 35.20948],\n      [-111.59698, 35.20989],\n      [-111.59631, 35.21032],\n      [-111.59577, 35.21065],\n      [-111.59503, 35.21109],\n      [-111.59434, 35.21148],\n      [-111.59358, 35.21189],\n      [-111.59287, 35.21227],\n      [-111.59233, 35.21255],\n      [-111.59166, 35.21287],\n      [-111.59102, 35.21318],\n      [-111.59029, 35.21352],\n      [-111.58941, 35.2139],\n      [-111.58875, 35.21417],\n      [-111.58815, 35.21441],\n      [-111.58736, 35.21472],\n      [-111.58673, 35.21496],\n      [-111.58635, 35.21508],\n      [-111.58625, 35.21511],\n      [-111.58589, 35.21524],\n      [-111.58536, 35.21542],\n      [-111.58475, 35.21562],\n      [-111.58429, 35.21577],\n      [-111.58383, 35.21591],\n      [-111.58344, 35.21602],\n      [-111.58308, 35.21613],\n      [-111.58257, 35.21628],\n      [-111.58203, 35.21642],\n      [-111.58159, 35.21653],\n      [-111.58076, 35.21674],\n      [-111.58012, 35.21688],\n      [-111.57959, 35.217],\n      [-111.57893, 35.21715],\n      [-111.57853, 35.21722],\n      [-111.57759, 35.21739],\n      [-111.57687, 35.21751],\n      [-111.57579, 35.21767],\n      [-111.57488, 35.21781],\n      [-111.57445, 35.21787],\n      [-111.574, 35.21792],\n      [-111.57334, 35.21799],\n      [-111.57276, 35.21804],\n      [-111.57227, 35.21808],\n      [-111.57173, 35.21809],\n      [-111.56955, 35.21823],\n      [-111.56521, 35.21821],\n      [-111.56233, 35.21804],\n      [-111.5581, 35.21751],\n      [-111.55427, 35.21673],\n      [-111.55297, 35.21647],\n      [-111.54238, 35.21424],\n      [-111.53166, 35.21176],\n      [-111.52817, 35.21095],\n      [-111.52395, 35.20997],\n      [-111.52335, 35.20981],\n      [-111.52286, 35.20971],\n      [-111.52058, 35.20917],\n      [-111.51841, 35.20867],\n      [-111.517, 35.20833],\n      [-111.51334, 35.20748],\n      [-111.51244, 35.20729],\n      [-111.51129, 35.20707],\n      [-111.51066, 35.20696],\n      [-111.50996, 35.20686],\n      [-111.50956, 35.20681],\n      [-111.50891, 35.20671],\n      [-111.50826, 35.20665],\n      [-111.50759, 35.20658],\n      [-111.50637, 35.20646],\n      [-111.50472, 35.20631],\n      [-111.50318, 35.20616],\n      [-111.50262, 35.2061],\n      [-111.50223, 35.20605],\n      [-111.50189, 35.20602],\n      [-111.50155, 35.20597],\n      [-111.50069, 35.20586],\n      [-111.49907, 35.20557],\n      [-111.49821, 35.20542],\n      [-111.49721, 35.20522],\n      [-111.49512, 35.20481],\n      [-111.49306, 35.20443],\n      [-111.4912, 35.20407],\n      [-111.48826, 35.20351],\n      [-111.4854, 35.20297],\n      [-111.48369, 35.20263],\n      [-111.48106, 35.20213],\n      [-111.48012, 35.20195],\n      [-111.4791, 35.20179],\n      [-111.47866, 35.20174],\n      [-111.47808, 35.20167],\n      [-111.47706, 35.20158],\n      [-111.47591, 35.2015],\n      [-111.47485, 35.20149],\n      [-111.47409, 35.20149],\n      [-111.47308, 35.20153],\n      [-111.47136, 35.20167],\n      [-111.47061, 35.20177],\n      [-111.46996, 35.20185],\n      [-111.46856, 35.20201],\n      [-111.46787, 35.20207],\n      [-111.46741, 35.2021],\n      [-111.46523, 35.20222],\n      [-111.46327, 35.20223],\n      [-111.46, 35.20213],\n      [-111.45639, 35.20202],\n      [-111.44928, 35.20183],\n      [-111.44254, 35.20163],\n      [-111.43301, 35.20135],\n      [-111.42862, 35.20122],\n      [-111.42603, 35.20116],\n      [-111.42477, 35.20118],\n      [-111.42364, 35.20124],\n      [-111.42251, 35.20138],\n      [-111.4187, 35.20202],\n      [-111.41655, 35.20235],\n      [-111.41518, 35.20248],\n      [-111.41402, 35.20252],\n      [-111.41192, 35.20246],\n      [-111.41081, 35.20234],\n      [-111.40989, 35.2022],\n      [-111.40895, 35.20203],\n      [-111.4076, 35.2017],\n      [-111.40599, 35.2012],\n      [-111.40099, 35.19914],\n      [-111.40005, 35.19875],\n      [-111.39791, 35.19789],\n      [-111.3933, 35.196],\n      [-111.38235, 35.19151],\n      [-111.37686, 35.18929],\n      [-111.37135, 35.18712],\n      [-111.31893, 35.16642],\n      [-111.30109, 35.15939],\n      [-111.29824, 35.15827],\n      [-111.2967, 35.15785],\n      [-111.29515, 35.15757],\n      [-111.29348, 35.15749],\n      [-111.29186, 35.15755],\n      [-111.29013, 35.15781],\n      [-111.28848, 35.15828],\n      [-111.28643, 35.15904],\n      [-111.28538, 35.15944],\n      [-111.28497, 35.15961],\n      [-111.28432, 35.15987],\n      [-111.28068, 35.16125],\n      [-111.27899, 35.16161],\n      [-111.27867, 35.16167],\n      [-111.27836, 35.16172],\n      [-111.27799, 35.16176],\n      [-111.27776, 35.16179],\n      [-111.27687, 35.16184],\n      [-111.2761, 35.16186],\n      [-111.27546, 35.16185],\n      [-111.27466, 35.16179],\n      [-111.27371, 35.16166],\n      [-111.27313, 35.16155],\n      [-111.27223, 35.16132],\n      [-111.27082, 35.16086],\n      [-111.26598, 35.15907],\n      [-111.26536, 35.15885],\n      [-111.26463, 35.15857],\n      [-111.25503, 35.15505],\n      [-111.25024, 35.15329],\n      [-111.20576, 35.13698],\n      [-111.19669, 35.13365],\n      [-111.19397, 35.13265],\n      [-111.19014, 35.13124],\n      [-111.1899, 35.13115],\n      [-111.18813, 35.13053],\n      [-111.18653, 35.12994],\n      [-111.18392, 35.12896],\n      [-111.18357, 35.12885],\n      [-111.18162, 35.12813],\n      [-111.17878, 35.12707],\n      [-111.17603, 35.12607],\n      [-111.17268, 35.12485],\n      [-111.17202, 35.12461],\n      [-111.17151, 35.12443],\n      [-111.17087, 35.12421],\n      [-111.17022, 35.124],\n      [-111.16941, 35.12374],\n      [-111.16878, 35.12355],\n      [-111.16818, 35.12336],\n      [-111.16638, 35.12284],\n      [-111.16556, 35.12262],\n      [-111.16513, 35.12251],\n      [-111.16452, 35.12235],\n      [-111.16362, 35.12213],\n      [-111.16302, 35.12199],\n      [-111.16228, 35.12182],\n      [-111.16106, 35.12155],\n      [-111.16057, 35.12145],\n      [-111.16002, 35.12133],\n      [-111.15971, 35.12127],\n      [-111.15934, 35.1212],\n      [-111.1588, 35.1211],\n      [-111.15817, 35.12098],\n      [-111.15753, 35.12088],\n      [-111.15698, 35.12079],\n      [-111.15451, 35.12039],\n      [-111.14263, 35.11922],\n      [-111.12744, 35.11778],\n      [-111.11402, 35.11655],\n      [-111.11153, 35.11634],\n      [-111.11046, 35.11628],\n      [-111.10938, 35.11628],\n      [-111.10823, 35.11634],\n      [-111.1072, 35.11645],\n      [-111.10016, 35.11746],\n      [-111.09941, 35.11756],\n      [-111.09852, 35.11767],\n      [-111.09776, 35.11776],\n      [-111.09709, 35.11782],\n      [-111.09675, 35.11783],\n      [-111.09621, 35.11785],\n      [-111.09555, 35.11785],\n      [-111.09516, 35.11785],\n      [-111.09444, 35.11782],\n      [-111.09383, 35.11777],\n      [-111.09321, 35.11772],\n      [-111.09269, 35.11766],\n      [-111.09047, 35.11732],\n      [-111.09, 35.11724],\n      [-111.08937, 35.11715],\n      [-111.08682, 35.11677],\n      [-111.08544, 35.11655],\n      [-111.08473, 35.11643],\n      [-111.082, 35.11602],\n      [-111.07984, 35.11568],\n      [-111.07156, 35.11442],\n      [-111.06465, 35.11366],\n      [-111.03633, 35.11069],\n      [-111.03077, 35.11011],\n      [-111.02952, 35.10997],\n      [-111.02843, 35.10985],\n      [-111.02687, 35.10966],\n      [-111.02472, 35.10936],\n      [-111.02264, 35.10904],\n      [-111.02098, 35.10878],\n      [-111.02021, 35.10864],\n      [-111.0189, 35.10839],\n      [-111.01686, 35.10799],\n      [-111.01257, 35.10707],\n      [-111.00931, 35.10637],\n      [-111.00781, 35.10605],\n      [-110.99747, 35.10383],\n      [-110.99449, 35.10318],\n      [-110.99316, 35.10289],\n      [-110.98999, 35.10221],\n      [-110.98926, 35.10205],\n      [-110.98808, 35.1018],\n      [-110.98626, 35.10141],\n      [-110.98246, 35.10059],\n      [-110.98114, 35.10031],\n      [-110.98064, 35.10021],\n      [-110.9799, 35.10008],\n      [-110.97884, 35.0999],\n      [-110.97787, 35.09977],\n      [-110.97709, 35.09967],\n      [-110.97606, 35.09955],\n      [-110.97533, 35.09947],\n      [-110.97399, 35.09936],\n      [-110.97322, 35.0993],\n      [-110.97168, 35.09917],\n      [-110.96814, 35.09888],\n      [-110.96483, 35.09861],\n      [-110.96395, 35.09854],\n      [-110.96118, 35.09833],\n      [-110.95476, 35.09764],\n      [-110.94502, 35.09622],\n      [-110.93537, 35.09478],\n      [-110.93449, 35.09464],\n      [-110.93093, 35.09413],\n      [-110.93059, 35.09408],\n      [-110.92523, 35.0933],\n      [-110.92446, 35.09317],\n      [-110.92297, 35.09293],\n      [-110.92163, 35.0927],\n      [-110.92046, 35.09249],\n      [-110.91993, 35.09241],\n      [-110.91472, 35.0913],\n      [-110.90828, 35.08961],\n      [-110.90325, 35.08807],\n      [-110.89499, 35.08524],\n      [-110.88805, 35.08287],\n      [-110.88489, 35.0818],\n      [-110.8817, 35.08081],\n      [-110.86093, 35.07475],\n      [-110.85822, 35.07396],\n      [-110.85606, 35.07332],\n      [-110.85347, 35.07257],\n      [-110.85201, 35.07214],\n      [-110.85076, 35.07177],\n      [-110.84758, 35.07084],\n      [-110.84474, 35.07001],\n      [-110.84308, 35.06953],\n      [-110.84138, 35.06902],\n      [-110.84007, 35.06865],\n      [-110.83827, 35.06813],\n      [-110.83546, 35.0673],\n      [-110.83035, 35.06579],\n      [-110.83013, 35.06573],\n      [-110.82901, 35.0654],\n      [-110.82742, 35.06494],\n      [-110.8257, 35.06445],\n      [-110.82492, 35.06421],\n      [-110.82416, 35.06399],\n      [-110.82302, 35.06366],\n      [-110.81783, 35.06214],\n      [-110.8171, 35.06193],\n      [-110.81339, 35.06084],\n      [-110.81152, 35.06029],\n      [-110.81064, 35.06002],\n      [-110.80717, 35.05902],\n      [-110.80312, 35.05783],\n      [-110.79987, 35.05689],\n      [-110.79771, 35.05625],\n      [-110.79636, 35.05585],\n      [-110.79006, 35.05401],\n      [-110.77829, 35.05057],\n      [-110.76917, 35.04788],\n      [-110.75597, 35.04402],\n      [-110.75441, 35.04356],\n      [-110.75155, 35.04272],\n      [-110.75012, 35.0423],\n      [-110.74868, 35.0419],\n      [-110.74653, 35.04134],\n      [-110.74434, 35.04079],\n      [-110.74214, 35.0403],\n      [-110.74008, 35.03985],\n      [-110.73462, 35.0387],\n      [-110.73267, 35.03836],\n      [-110.73148, 35.03819],\n      [-110.73031, 35.03802],\n      [-110.72833, 35.03785],\n      [-110.72674, 35.03775],\n      [-110.72515, 35.03767],\n      [-110.72265, 35.03769],\n      [-110.72067, 35.03777],\n      [-110.71903, 35.0379],\n      [-110.71749, 35.03803],\n      [-110.71438, 35.03844],\n      [-110.71108, 35.03888],\n      [-110.70969, 35.03906],\n      [-110.70927, 35.0391],\n      [-110.70842, 35.03917],\n      [-110.70823, 35.03918],\n      [-110.70763, 35.03921],\n      [-110.70734, 35.03922],\n      [-110.70678, 35.03925],\n      [-110.70584, 35.03927],\n      [-110.70462, 35.03928],\n      [-110.70402, 35.03928],\n      [-110.70179, 35.03931],\n      [-110.69898, 35.03933],\n      [-110.69845, 35.03934],\n      [-110.69738, 35.03932],\n      [-110.69699, 35.03932],\n      [-110.69634, 35.03927],\n      [-110.69549, 35.03916],\n      [-110.69469, 35.03904],\n      [-110.69405, 35.03887],\n      [-110.69372, 35.03878],\n      [-110.69347, 35.03871],\n      [-110.69324, 35.03865],\n      [-110.69298, 35.03856],\n      [-110.69269, 35.03845],\n      [-110.69225, 35.03829],\n      [-110.6918, 35.03809],\n      [-110.69121, 35.03781],\n      [-110.69073, 35.03755],\n      [-110.69039, 35.03736],\n      [-110.69034, 35.03732],\n      [-110.68985, 35.037],\n      [-110.68959, 35.03682],\n      [-110.68938, 35.03668],\n      [-110.68921, 35.03655],\n      [-110.68894, 35.03635],\n      [-110.68862, 35.03607],\n      [-110.68828, 35.03577],\n      [-110.68805, 35.03554],\n      [-110.68784, 35.03532],\n      [-110.68762, 35.03506],\n      [-110.68736, 35.03477],\n      [-110.68705, 35.03438],\n      [-110.68665, 35.03378],\n      [-110.68648, 35.03349],\n      [-110.68629, 35.03315],\n      [-110.68611, 35.03284],\n      [-110.68583, 35.03223],\n      [-110.68523, 35.03106],\n      [-110.68505, 35.03067],\n      [-110.68479, 35.03018],\n      [-110.68452, 35.02963],\n      [-110.68421, 35.029],\n      [-110.68352, 35.02763],\n      [-110.68313, 35.02683],\n      [-110.68232, 35.0252],\n      [-110.68197, 35.02448],\n      [-110.6818, 35.02417],\n      [-110.68162, 35.02386],\n      [-110.68148, 35.02359],\n      [-110.68128, 35.0233],\n      [-110.68106, 35.02293],\n      [-110.68079, 35.02255],\n      [-110.68042, 35.02208],\n      [-110.67998, 35.0216],\n      [-110.67997, 35.02159],\n      [-110.67977, 35.02136],\n      [-110.67952, 35.02109],\n      [-110.67908, 35.02067],\n      [-110.67879, 35.0204],\n      [-110.67847, 35.02013],\n      [-110.67805, 35.0198],\n      [-110.67762, 35.01949],\n      [-110.6772, 35.01921],\n      [-110.67689, 35.01902],\n      [-110.67642, 35.01873],\n      [-110.67604, 35.01852],\n      [-110.67555, 35.01827],\n      [-110.67511, 35.01805],\n      [-110.67483, 35.01794],\n      [-110.67448, 35.01778],\n      [-110.67412, 35.01764],\n      [-110.67379, 35.01752],\n      [-110.67345, 35.0174],\n      [-110.67311, 35.01729],\n      [-110.6726, 35.01714],\n      [-110.67117, 35.01675],\n      [-110.67061, 35.01659],\n      [-110.66994, 35.01642],\n      [-110.66924, 35.01623],\n      [-110.66793, 35.01587],\n      [-110.66561, 35.01524],\n      [-110.66332, 35.01461],\n      [-110.66241, 35.01437],\n      [-110.66001, 35.01372],\n      [-110.65786, 35.01314],\n      [-110.65474, 35.01227],\n      [-110.65152, 35.01141],\n      [-110.64937, 35.01082],\n      [-110.6485, 35.01059],\n      [-110.64542, 35.00974],\n      [-110.64213, 35.00885],\n      [-110.63612, 35.00723],\n      [-110.6337, 35.00675],\n      [-110.63294, 35.00665],\n      [-110.63114, 35.00649],\n      [-110.62974, 35.00642],\n      [-110.62842, 35.00642],\n      [-110.62704, 35.00649],\n      [-110.62346, 35.00671],\n      [-110.6223, 35.00676],\n      [-110.62115, 35.00673],\n      [-110.62028, 35.00667],\n      [-110.61906, 35.00654],\n      [-110.61777, 35.00631],\n      [-110.61645, 35.006],\n      [-110.61485, 35.00549],\n      [-110.61072, 35.00411],\n      [-110.60949, 35.00368],\n      [-110.60726, 35.00291],\n      [-110.57987, 34.99356],\n      [-110.56589, 34.98875],\n      [-110.55241, 34.98418],\n      [-110.54465, 34.98153],\n      [-110.54314, 34.98101],\n      [-110.54166, 34.9805],\n      [-110.54049, 34.98012],\n      [-110.53942, 34.97975],\n      [-110.53843, 34.9794],\n      [-110.5377, 34.97915],\n      [-110.5371, 34.97895],\n      [-110.53636, 34.9787],\n      [-110.53537, 34.97837],\n      [-110.53416, 34.97796],\n      [-110.53349, 34.97773],\n      [-110.53242, 34.97736],\n      [-110.53127, 34.97697],\n      [-110.52991, 34.97655],\n      [-110.52897, 34.97626],\n      [-110.52792, 34.97596],\n      [-110.52709, 34.97574],\n      [-110.52589, 34.97542],\n      [-110.52551, 34.97533],\n      [-110.52349, 34.97484],\n      [-110.52184, 34.9745],\n      [-110.52098, 34.97434],\n      [-110.51737, 34.97371],\n      [-110.51641, 34.97356],\n      [-110.51561, 34.97345],\n      [-110.51498, 34.97338],\n      [-110.51497, 34.97338],\n      [-110.51428, 34.9733],\n      [-110.5134, 34.9732],\n      [-110.51237, 34.97309],\n      [-110.51156, 34.97301],\n      [-110.51096, 34.97297],\n      [-110.50979, 34.97287],\n      [-110.50931, 34.97285],\n      [-110.50819, 34.97279],\n      [-110.5066, 34.97271],\n      [-110.50393, 34.97259],\n      [-110.49993, 34.97242],\n      [-110.49774, 34.97231],\n      [-110.49632, 34.97225],\n      [-110.495, 34.9722],\n      [-110.49319, 34.97212],\n      [-110.49154, 34.97205],\n      [-110.48927, 34.97194],\n      [-110.4879, 34.97187],\n      [-110.48625, 34.9718],\n      [-110.48499, 34.97175],\n      [-110.48395, 34.9717],\n      [-110.48243, 34.97163],\n      [-110.47988, 34.97152],\n      [-110.47719, 34.97139],\n      [-110.47459, 34.97128],\n      [-110.47312, 34.97121],\n      [-110.47095, 34.97111],\n      [-110.47016, 34.97107],\n      [-110.46811, 34.97099],\n      [-110.46547, 34.97087],\n      [-110.46053, 34.97064],\n      [-110.45641, 34.97045],\n      [-110.45396, 34.97034],\n      [-110.44716, 34.97004],\n      [-110.44602, 34.96999],\n      [-110.44452, 34.96992],\n      [-110.44361, 34.96988],\n      [-110.44271, 34.96984],\n      [-110.44189, 34.9698],\n      [-110.43938, 34.96967],\n      [-110.43791, 34.96956],\n      [-110.43658, 34.96943],\n      [-110.43565, 34.96933],\n      [-110.43488, 34.96925],\n      [-110.43399, 34.96914],\n      [-110.43362, 34.96909],\n      [-110.43168, 34.96882],\n      [-110.43071, 34.96866],\n      [-110.42992, 34.96854],\n      [-110.42936, 34.96845],\n      [-110.4286, 34.96833],\n      [-110.42738, 34.96813],\n      [-110.42531, 34.96781],\n      [-110.42204, 34.96729],\n      [-110.41958, 34.96691],\n      [-110.41768, 34.9666],\n      [-110.41544, 34.96625],\n      [-110.4147, 34.96613],\n      [-110.41101, 34.96555],\n      [-110.4078, 34.96504],\n      [-110.40742, 34.96498],\n      [-110.40211, 34.96414],\n      [-110.40081, 34.96393],\n      [-110.39537, 34.96306],\n      [-110.39221, 34.96256],\n      [-110.39054, 34.96231],\n      [-110.38785, 34.96188],\n      [-110.3863, 34.96163],\n      [-110.37942, 34.96054],\n      [-110.37426, 34.95972],\n      [-110.37223, 34.9594],\n      [-110.36349, 34.95801],\n      [-110.3604, 34.95751],\n      [-110.35918, 34.95733],\n      [-110.35828, 34.95718],\n      [-110.35719, 34.95701],\n      [-110.35146, 34.9561],\n      [-110.35072, 34.95598],\n      [-110.34924, 34.95574],\n      [-110.34832, 34.95559],\n      [-110.34319, 34.95478],\n      [-110.34254, 34.95468],\n      [-110.342, 34.95459],\n      [-110.34143, 34.9545],\n      [-110.34101, 34.95445],\n      [-110.3406, 34.9544],\n      [-110.33992, 34.95434],\n      [-110.3395, 34.9543],\n      [-110.33859, 34.95427],\n      [-110.33795, 34.95426],\n      [-110.33285, 34.95426],\n      [-110.33141, 34.95426],\n      [-110.33012, 34.95427],\n      [-110.32847, 34.95426],\n      [-110.32767, 34.9543],\n      [-110.32688, 34.95435],\n      [-110.32591, 34.95445],\n      [-110.32542, 34.95453],\n      [-110.32394, 34.9548],\n      [-110.3226, 34.95505],\n      [-110.32167, 34.9552],\n      [-110.32102, 34.95526],\n      [-110.32021, 34.95529],\n      [-110.31965, 34.95527],\n      [-110.31872, 34.95519],\n      [-110.31768, 34.95502],\n      [-110.31653, 34.95475],\n      [-110.31577, 34.9545],\n      [-110.31335, 34.95352],\n      [-110.30882, 34.95164],\n      [-110.30565, 34.95028],\n      [-110.29602, 34.94632],\n      [-110.29529, 34.94601],\n      [-110.29157, 34.94448],\n      [-110.28841, 34.94318],\n      [-110.2869, 34.94254],\n      [-110.28485, 34.94169],\n      [-110.28265, 34.94077],\n      [-110.28182, 34.94037],\n      [-110.28109, 34.93995],\n      [-110.28024, 34.93936],\n      [-110.2796, 34.93885],\n      [-110.2792, 34.93849],\n      [-110.27774, 34.93696],\n      [-110.27591, 34.9347],\n      [-110.27487, 34.93348],\n      [-110.2739, 34.93234],\n      [-110.2734, 34.93182],\n      [-110.27281, 34.93129],\n      [-110.27218, 34.93079],\n      [-110.27131, 34.93017],\n      [-110.26966, 34.92902],\n      [-110.26679, 34.92702],\n      [-110.26355, 34.92478],\n      [-110.25874, 34.92142],\n      [-110.25692, 34.92014],\n      [-110.25592, 34.91944],\n      [-110.25445, 34.91842],\n      [-110.25294, 34.91744],\n      [-110.25117, 34.91632],\n      [-110.24934, 34.91528],\n      [-110.24826, 34.91469],\n      [-110.24715, 34.91411],\n      [-110.24541, 34.91327],\n      [-110.24464, 34.91291],\n      [-110.2437, 34.91252],\n      [-110.24295, 34.91223],\n      [-110.24221, 34.91194],\n      [-110.24065, 34.9114],\n      [-110.23964, 34.91109],\n      [-110.23875, 34.91083],\n      [-110.23794, 34.91062],\n      [-110.23708, 34.9104],\n      [-110.23615, 34.9102],\n      [-110.23537, 34.91004],\n      [-110.23434, 34.90986],\n      [-110.2334, 34.90971],\n      [-110.23134, 34.90945],\n      [-110.22832, 34.90909],\n      [-110.21844, 34.90792],\n      [-110.21718, 34.90776],\n      [-110.21464, 34.90745],\n      [-110.21262, 34.90724],\n      [-110.20693, 34.90656],\n      [-110.20119, 34.90588],\n      [-110.19914, 34.90564],\n      [-110.19371, 34.905],\n      [-110.1929, 34.90492],\n      [-110.19229, 34.90488],\n      [-110.19141, 34.90486],\n      [-110.19052, 34.90489],\n      [-110.18949, 34.90497],\n      [-110.18887, 34.90505],\n      [-110.18832, 34.90514],\n      [-110.18731, 34.90534],\n      [-110.18598, 34.9057],\n      [-110.18548, 34.90587],\n      [-110.18488, 34.90609],\n      [-110.18287, 34.9069],\n      [-110.1795, 34.90826],\n      [-110.17853, 34.90864],\n      [-110.17785, 34.9089],\n      [-110.17715, 34.90915],\n      [-110.17598, 34.90952],\n      [-110.17499, 34.90977],\n      [-110.17428, 34.90995],\n      [-110.17355, 34.91011],\n      [-110.17259, 34.91028],\n      [-110.1715, 34.91045],\n      [-110.17047, 34.91057],\n      [-110.16927, 34.91069],\n      [-110.16881, 34.91073],\n      [-110.16554, 34.91104],\n      [-110.16161, 34.91146],\n      [-110.15959, 34.91178],\n      [-110.15828, 34.91204],\n      [-110.15731, 34.91226],\n      [-110.15669, 34.91241],\n      [-110.15421, 34.91311],\n      [-110.15305, 34.91349],\n      [-110.15169, 34.91399],\n      [-110.15054, 34.91446],\n      [-110.14906, 34.91511],\n      [-110.14835, 34.91544],\n      [-110.14636, 34.91649],\n      [-110.14547, 34.91701],\n      [-110.14415, 34.91783],\n      [-110.14347, 34.91829],\n      [-110.14195, 34.91937],\n      [-110.14046, 34.92054],\n      [-110.13934, 34.92155],\n      [-110.13847, 34.92238],\n      [-110.13731, 34.92357],\n      [-110.13558, 34.92564],\n      [-110.13441, 34.92725],\n      [-110.13353, 34.92862],\n      [-110.13277, 34.92995],\n      [-110.1319, 34.93173],\n      [-110.13149, 34.93269],\n      [-110.13092, 34.93425],\n      [-110.13048, 34.93557],\n      [-110.13015, 34.93643],\n      [-110.12979, 34.93728],\n      [-110.1294, 34.93805],\n      [-110.12869, 34.93928],\n      [-110.12812, 34.94017],\n      [-110.12739, 34.94116],\n      [-110.12669, 34.942],\n      [-110.12567, 34.94308],\n      [-110.12471, 34.94399],\n      [-110.12385, 34.94474],\n      [-110.12225, 34.9461],\n      [-110.12141, 34.94684],\n      [-110.11719, 34.9505],\n      [-110.11515, 34.95227],\n      [-110.11353, 34.95367],\n      [-110.11118, 34.9557],\n      [-110.10762, 34.95879],\n      [-110.10365, 34.96226],\n      [-110.10284, 34.96295],\n      [-110.10019, 34.9652],\n      [-110.09883, 34.96627],\n      [-110.09721, 34.96747],\n      [-110.09581, 34.96841],\n      [-110.09405, 34.96952],\n      [-110.09143, 34.97101],\n      [-110.09002, 34.97174],\n      [-110.08691, 34.97318],\n      [-110.08653, 34.97333],\n      [-110.08457, 34.97412],\n      [-110.08183, 34.97508],\n      [-110.08067, 34.97543],\n      [-110.08001, 34.97563],\n      [-110.07899, 34.97594],\n      [-110.07776, 34.97625],\n      [-110.07579, 34.97672],\n      [-110.074, 34.97708],\n      [-110.06692, 34.97834],\n      [-110.06326, 34.979],\n      [-110.05988, 34.97959],\n      [-110.05748, 34.98002],\n      [-110.05253, 34.98088],\n      [-110.05158, 34.98106],\n      [-110.03977, 34.98317],\n      [-110.03245, 34.98443],\n      [-110.0247, 34.98581],\n      [-110.00232, 34.98977],\n      [-110.00011, 34.99016],\n      [-109.99821, 34.99045],\n      [-109.99715, 34.99059],\n      [-109.99686, 34.99062],\n      [-109.99528, 34.99079],\n      [-109.99333, 34.99095],\n      [-109.99099, 34.99106],\n      [-109.98921, 34.9911],\n      [-109.98664, 34.99108],\n      [-109.98357, 34.99093],\n      [-109.98301, 34.99091],\n      [-109.97886, 34.99071],\n      [-109.97694, 34.99061],\n      [-109.97472, 34.99055],\n      [-109.97254, 34.99054],\n      [-109.97033, 34.99057],\n      [-109.96798, 34.99068],\n      [-109.96651, 34.99077],\n      [-109.95626, 34.99174],\n      [-109.95003, 34.99234],\n      [-109.94862, 34.99248],\n      [-109.943, 34.99306],\n      [-109.94173, 34.99321],\n      [-109.93848, 34.99365],\n      [-109.93625, 34.99399],\n      [-109.93302, 34.99455],\n      [-109.929, 34.99528],\n      [-109.92303, 34.99635],\n      [-109.9154, 34.99772],\n      [-109.91267, 34.99821],\n      [-109.91251, 34.99824],\n      [-109.90907, 34.99884],\n      [-109.9072, 34.99917],\n      [-109.90466, 34.99963],\n      [-109.90142, 35.00021],\n      [-109.9007, 35.00035],\n      [-109.90056, 35.00037],\n      [-109.89746, 35.00093],\n      [-109.89415, 35.00157],\n      [-109.89122, 35.00218],\n      [-109.88785, 35.003],\n      [-109.88214, 35.00467],\n      [-109.88015, 35.00532],\n      [-109.87643, 35.00668],\n      [-109.8741, 35.00759],\n      [-109.87167, 35.00863],\n      [-109.86711, 35.01077],\n      [-109.86514, 35.01179],\n      [-109.86305, 35.01293],\n      [-109.86172, 35.0137],\n      [-109.85801, 35.0159],\n      [-109.85072, 35.02032],\n      [-109.84873, 35.02151],\n      [-109.84726, 35.02235],\n      [-109.84499, 35.02362],\n      [-109.84276, 35.02493],\n      [-109.82047, 35.0377],\n      [-109.80089, 35.04892],\n      [-109.78724, 35.05673],\n      [-109.78367, 35.05878],\n      [-109.78262, 35.05937],\n      [-109.78128, 35.06015],\n      [-109.77957, 35.0611],\n      [-109.77798, 35.06194],\n      [-109.77648, 35.06269],\n      [-109.77567, 35.06307],\n      [-109.77484, 35.06344],\n      [-109.77289, 35.06432],\n      [-109.77109, 35.06508],\n      [-109.76867, 35.06601],\n      [-109.76604, 35.06692],\n      [-109.76278, 35.06793],\n      [-109.75911, 35.06902],\n      [-109.7553, 35.07015],\n      [-109.75167, 35.07122],\n      [-109.74888, 35.07204],\n      [-109.74486, 35.07324],\n      [-109.74124, 35.0743],\n      [-109.73894, 35.07497],\n      [-109.73726, 35.07548],\n      [-109.73591, 35.07589],\n      [-109.73178, 35.0771],\n      [-109.72989, 35.07767],\n      [-109.72758, 35.07834],\n      [-109.72547, 35.07897],\n      [-109.72337, 35.07958],\n      [-109.71954, 35.08072],\n      [-109.71576, 35.08182],\n      [-109.71385, 35.08241],\n      [-109.71173, 35.08303],\n      [-109.7085, 35.08399],\n      [-109.70784, 35.08418],\n      [-109.70688, 35.08446],\n      [-109.70637, 35.08462],\n      [-109.70298, 35.08561],\n      [-109.68473, 35.09099],\n      [-109.6775, 35.0931],\n      [-109.67378, 35.09412],\n      [-109.67051, 35.09487],\n      [-109.66876, 35.09523],\n      [-109.6668, 35.09557],\n      [-109.65361, 35.0975],\n      [-109.64723, 35.09842],\n      [-109.64654, 35.09854],\n      [-109.64571, 35.09864],\n      [-109.64511, 35.09872],\n      [-109.64446, 35.09883],\n      [-109.64219, 35.09916],\n      [-109.64058, 35.0994],\n      [-109.63716, 35.09986],\n      [-109.63654, 35.09995],\n      [-109.63123, 35.10072],\n      [-109.62999, 35.10089],\n      [-109.62807, 35.10118],\n      [-109.62556, 35.10157],\n      [-109.6203, 35.10235],\n      [-109.61772, 35.10278],\n      [-109.61595, 35.10311],\n      [-109.61201, 35.104],\n      [-109.60803, 35.1051],\n      [-109.60468, 35.10619],\n      [-109.60132, 35.10735],\n      [-109.59678, 35.10892],\n      [-109.5923, 35.11047],\n      [-109.58946, 35.11144],\n      [-109.5889, 35.11164],\n      [-109.57586, 35.11616],\n      [-109.57122, 35.11776],\n      [-109.56798, 35.11887],\n      [-109.56406, 35.12023],\n      [-109.562, 35.12094],\n      [-109.55734, 35.12254],\n      [-109.55105, 35.12475],\n      [-109.54909, 35.12557],\n      [-109.54822, 35.12592],\n      [-109.54727, 35.12632],\n      [-109.54501, 35.12734],\n      [-109.54352, 35.12803],\n      [-109.54236, 35.12859],\n      [-109.54184, 35.12886],\n      [-109.54096, 35.1293],\n      [-109.53721, 35.13129],\n      [-109.53656, 35.13166],\n      [-109.53539, 35.13236],\n      [-109.5336, 35.13345],\n      [-109.53132, 35.1349],\n      [-109.52943, 35.13614],\n      [-109.52786, 35.13716],\n      [-109.52589, 35.13844],\n      [-109.5245, 35.13934],\n      [-109.52101, 35.14162],\n      [-109.51718, 35.14412],\n      [-109.51113, 35.14804],\n      [-109.50897, 35.14945],\n      [-109.50696, 35.15076],\n      [-109.5067, 35.15093],\n      [-109.50455, 35.15233],\n      [-109.50288, 35.15342],\n      [-109.50137, 35.1544],\n      [-109.49961, 35.15554],\n      [-109.49763, 35.15683],\n      [-109.49585, 35.15798],\n      [-109.49411, 35.15912],\n      [-109.49056, 35.16142],\n      [-109.48904, 35.16242],\n      [-109.48818, 35.16298],\n      [-109.48677, 35.1639],\n      [-109.48564, 35.16463],\n      [-109.48386, 35.16578],\n      [-109.48266, 35.16656],\n      [-109.48094, 35.16768],\n      [-109.479, 35.16893],\n      [-109.47666, 35.17046],\n      [-109.47498, 35.17155],\n      [-109.47311, 35.17277],\n      [-109.47115, 35.17404],\n      [-109.46933, 35.17523],\n      [-109.46436, 35.17845],\n      [-109.46264, 35.17953],\n      [-109.46092, 35.18055],\n      [-109.45922, 35.18151],\n      [-109.45827, 35.18202],\n      [-109.45735, 35.1825],\n      [-109.45536, 35.18348],\n      [-109.45356, 35.18431],\n      [-109.45162, 35.18515],\n      [-109.44971, 35.18592],\n      [-109.4477, 35.18667],\n      [-109.44544, 35.18746],\n      [-109.44352, 35.18806],\n      [-109.44178, 35.18859],\n      [-109.44087, 35.18886],\n      [-109.44005, 35.18909],\n      [-109.43897, 35.1894],\n      [-109.43804, 35.18965],\n      [-109.43629, 35.19011],\n      [-109.43557, 35.19028],\n      [-109.43494, 35.19045],\n      [-109.43301, 35.19091],\n      [-109.43103, 35.19135],\n      [-109.42682, 35.19224],\n      [-109.42562, 35.19249],\n      [-109.42143, 35.19338],\n      [-109.38373, 35.20131],\n      [-109.37898, 35.20231],\n      [-109.37498, 35.20315],\n      [-109.36787, 35.20464],\n      [-109.36261, 35.20575],\n      [-109.35939, 35.20642],\n      [-109.35429, 35.20755],\n      [-109.35308, 35.20788],\n      [-109.34936, 35.20892],\n      [-109.34629, 35.20993],\n      [-109.34385, 35.21078],\n      [-109.34308, 35.21108],\n      [-109.34013, 35.21229],\n      [-109.33805, 35.21321],\n      [-109.33689, 35.21376],\n      [-109.33528, 35.21455],\n      [-109.33385, 35.21529],\n      [-109.33213, 35.21618],\n      [-109.33063, 35.21702],\n      [-109.32902, 35.21799],\n      [-109.32794, 35.21866],\n      [-109.3277, 35.2188],\n      [-109.32491, 35.22066],\n      [-109.32201, 35.22276],\n      [-109.31952, 35.22474],\n      [-109.31885, 35.22527],\n      [-109.31835, 35.22566],\n      [-109.31225, 35.23045],\n      [-109.30682, 35.23469],\n      [-109.30541, 35.23583],\n      [-109.30487, 35.23627],\n      [-109.29878, 35.24105],\n      [-109.29853, 35.24124],\n      [-109.29169, 35.24659],\n      [-109.2914, 35.24682],\n      [-109.28929, 35.24846],\n      [-109.28731, 35.25006],\n      [-109.28064, 35.25587],\n      [-109.28011, 35.25638],\n      [-109.27888, 35.25742],\n      [-109.27813, 35.25804],\n      [-109.27705, 35.25898],\n      [-109.27355, 35.26203],\n      [-109.27103, 35.26417],\n      [-109.2597, 35.27414],\n      [-109.25871, 35.275],\n      [-109.25768, 35.27578],\n      [-109.25569, 35.27685],\n      [-109.25418, 35.27752],\n      [-109.25276, 35.278],\n      [-109.25065, 35.27851],\n      [-109.24612, 35.27975],\n      [-109.24347, 35.28046],\n      [-109.24, 35.28142],\n      [-109.23974, 35.2815],\n      [-109.23772, 35.282],\n      [-109.23595, 35.28233],\n      [-109.23499, 35.28244],\n      [-109.2341, 35.28256],\n      [-109.23305, 35.28264],\n      [-109.23123, 35.28271],\n      [-109.21628, 35.28271],\n      [-109.21562, 35.28271],\n      [-109.21323, 35.2827],\n      [-109.21231, 35.28268],\n      [-109.21176, 35.28266],\n      [-109.21084, 35.28263],\n      [-109.20978, 35.28259],\n      [-109.20893, 35.28255],\n      [-109.20801, 35.28251],\n      [-109.20725, 35.28245],\n      [-109.20642, 35.2824],\n      [-109.20475, 35.28227],\n      [-109.20027, 35.28183],\n      [-109.19643, 35.28142],\n      [-109.1943, 35.2812],\n      [-109.19133, 35.28092],\n      [-109.1865, 35.28039],\n      [-109.18299, 35.28006],\n      [-109.18217, 35.27999],\n      [-109.18127, 35.27992],\n      [-109.18046, 35.27991],\n      [-109.17967, 35.27996],\n      [-109.17873, 35.28005],\n      [-109.17788, 35.28019],\n      [-109.17717, 35.28034],\n      [-109.17642, 35.28055],\n      [-109.1757, 35.28079],\n      [-109.175, 35.28107],\n      [-109.17424, 35.28138],\n      [-109.16744, 35.28429],\n      [-109.1671, 35.28444],\n      [-109.16237, 35.28641],\n      [-109.16155, 35.28676],\n      [-109.15785, 35.28833],\n      [-109.15402, 35.28995],\n      [-109.15346, 35.29018],\n      [-109.15046, 35.29144],\n      [-109.14599, 35.29336],\n      [-109.14025, 35.29587],\n      [-109.13675, 35.29739],\n      [-109.1323, 35.29932],\n      [-109.132, 35.29944],\n      [-109.12771, 35.30132],\n      [-109.12099, 35.30423],\n      [-109.12072, 35.30433],\n      [-109.11753, 35.30574],\n      [-109.11024, 35.30889],\n      [-109.10697, 35.31034],\n      [-109.10664, 35.31049],\n      [-109.10384, 35.3117],\n      [-109.09948, 35.31374],\n      [-109.09641, 35.31539],\n      [-109.09475, 35.3163],\n      [-109.09305, 35.3173],\n      [-109.09152, 35.31824],\n      [-109.08959, 35.31949],\n      [-109.08936, 35.31964],\n      [-109.08829, 35.32036],\n      [-109.08698, 35.32127],\n      [-109.08495, 35.32274],\n      [-109.08088, 35.32597],\n      [-109.07902, 35.32758],\n      [-109.07878, 35.32779],\n      [-109.07677, 35.32972],\n      [-109.07315, 35.3331],\n      [-109.07148, 35.3347],\n      [-109.07068, 35.33545],\n      [-109.06818, 35.33781],\n      [-109.06797, 35.33804],\n      [-109.06545, 35.34057],\n      [-109.06421, 35.34191],\n      [-109.06349, 35.34276],\n      [-109.06203, 35.34466],\n      [-109.06075, 35.34647],\n      [-109.05791, 35.35067],\n      [-109.05676, 35.35235],\n      [-109.05592, 35.35363],\n      [-109.05538, 35.35436],\n      [-109.05468, 35.35511],\n      [-109.05426, 35.35554],\n      [-109.05383, 35.35595],\n      [-109.05339, 35.35634],\n      [-109.05306, 35.35662],\n      [-109.05231, 35.35721],\n      [-109.05186, 35.35753],\n      [-109.05139, 35.35786],\n      [-109.05041, 35.35859],\n      [-109.04959, 35.35928],\n      [-109.04932, 35.35953],\n      [-109.04855, 35.36028],\n      [-109.04765, 35.36132],\n      [-109.04679, 35.36245],\n      [-109.0463, 35.3631],\n      [-109.0458, 35.3639],\n      [-109.0454, 35.3647],\n      [-109.04507, 35.36549],\n      [-109.04478, 35.36617],\n      [-109.04433, 35.36723],\n      [-109.04416, 35.36759],\n      [-109.04396, 35.36792],\n      [-109.04371, 35.36829],\n      [-109.04349, 35.36858],\n      [-109.04315, 35.369],\n      [-109.04266, 35.3695],\n      [-109.04223, 35.3699],\n      [-109.04189, 35.37017],\n      [-109.04147, 35.37047],\n      [-109.04112, 35.37069],\n      [-109.04052, 35.37102],\n      [-109.04003, 35.37125],\n      [-109.03857, 35.37196],\n      [-109.03526, 35.37353],\n      [-109.03425, 35.37401],\n      [-109.03384, 35.37419],\n      [-109.02805, 35.37689],\n      [-109.02496, 35.37834],\n      [-109.02404, 35.37875],\n      [-109.01931, 35.381],\n      [-109.01821, 35.38151],\n      [-109.01722, 35.38204],\n      [-109.01618, 35.38269],\n      [-109.0156, 35.38312],\n      [-109.01495, 35.38362],\n      [-109.01428, 35.38419],\n      [-109.01357, 35.38484],\n      [-109.01296, 35.38551],\n      [-109.01234, 35.38625],\n      [-109.01189, 35.38681],\n      [-109.01148, 35.38742],\n      [-109.01063, 35.38883],\n      [-109.00937, 35.391],\n      [-109.00768, 35.39388],\n      [-109.00669, 35.39553],\n      [-109.0059, 35.39685],\n      [-109.00524, 35.39802],\n      [-109.00321, 35.40148],\n      [-109.00226, 35.40308],\n      [-109.0021, 35.40336],\n      [-109.00122, 35.40485],\n      [-108.99975, 35.40732],\n      [-108.99863, 35.40914],\n      [-108.99753, 35.41067],\n      [-108.99703, 35.41133],\n      [-108.9965, 35.41197],\n      [-108.99586, 35.41271],\n      [-108.9951, 35.41361],\n      [-108.99444, 35.41438],\n      [-108.99422, 35.41463],\n      [-108.99351, 35.41546],\n      [-108.99301, 35.41603],\n      [-108.99135, 35.41795],\n      [-108.99, 35.41954],\n      [-108.98915, 35.42048],\n      [-108.98876, 35.42087],\n      [-108.98821, 35.42136],\n      [-108.98777, 35.42174],\n      [-108.98703, 35.42234],\n      [-108.98633, 35.42282],\n      [-108.98294, 35.42512],\n      [-108.9769, 35.42921],\n      [-108.97195, 35.43256],\n      [-108.97006, 35.43384],\n      [-108.96618, 35.43644],\n      [-108.96438, 35.43769],\n      [-108.96347, 35.43829],\n      [-108.96271, 35.43881],\n      [-108.96215, 35.43919],\n      [-108.96156, 35.4396],\n      [-108.96083, 35.44016],\n      [-108.96014, 35.44074],\n      [-108.95953, 35.44131],\n      [-108.95879, 35.4421],\n      [-108.95835, 35.44262],\n      [-108.95742, 35.44384],\n      [-108.95625, 35.44531],\n      [-108.9558, 35.4459],\n      [-108.95539, 35.44649],\n      [-108.95499, 35.44695],\n      [-108.95397, 35.44826],\n      [-108.95233, 35.45038],\n      [-108.95184, 35.45102],\n      [-108.95122, 35.45183],\n      [-108.95043, 35.45283],\n      [-108.94926, 35.45431],\n      [-108.94871, 35.45497],\n      [-108.948, 35.45577],\n      [-108.94746, 35.45633],\n      [-108.94577, 35.45802],\n      [-108.94462, 35.45913],\n      [-108.94287, 35.46079],\n      [-108.94206, 35.46156],\n      [-108.93963, 35.46391],\n      [-108.93863, 35.46483],\n      [-108.93759, 35.46574],\n      [-108.93663, 35.46652],\n      [-108.93569, 35.46723],\n      [-108.93461, 35.468],\n      [-108.93295, 35.46905],\n      [-108.93166, 35.46979],\n      [-108.93019, 35.47063],\n      [-108.92883, 35.4714],\n      [-108.9278, 35.472],\n      [-108.92599, 35.47302],\n      [-108.9257, 35.47319],\n      [-108.92182, 35.47541],\n      [-108.91936, 35.47681],\n      [-108.91293, 35.48048],\n      [-108.91241, 35.48077],\n      [-108.91128, 35.48142],\n      [-108.91028, 35.48197],\n      [-108.90963, 35.48232],\n      [-108.90806, 35.48326],\n      [-108.9065, 35.48407],\n      [-108.90504, 35.4848],\n      [-108.90381, 35.48535],\n      [-108.90289, 35.48572],\n      [-108.9015, 35.48625],\n      [-108.90021, 35.48668],\n      [-108.89887, 35.4871],\n      [-108.89733, 35.48754],\n      [-108.89518, 35.48807],\n      [-108.894, 35.48837],\n      [-108.89263, 35.48871],\n      [-108.89218, 35.48883],\n      [-108.89115, 35.48909],\n      [-108.88733, 35.49005],\n      [-108.88317, 35.49108],\n      [-108.88166, 35.49146],\n      [-108.8774, 35.49252],\n      [-108.87219, 35.49383],\n      [-108.86687, 35.49515],\n      [-108.86579, 35.49542],\n      [-108.86472, 35.4957],\n      [-108.86333, 35.49604],\n      [-108.86275, 35.49618],\n      [-108.86209, 35.49633],\n      [-108.86087, 35.49657],\n      [-108.85957, 35.49676],\n      [-108.85888, 35.49684],\n      [-108.85833, 35.4969],\n      [-108.85681, 35.49701],\n      [-108.85518, 35.49711],\n      [-108.85392, 35.49719],\n      [-108.85268, 35.49729],\n      [-108.85169, 35.4974],\n      [-108.85072, 35.49752],\n      [-108.84952, 35.49771],\n      [-108.84781, 35.49801],\n      [-108.84735, 35.4981],\n      [-108.84626, 35.49829],\n      [-108.84412, 35.49867],\n      [-108.84219, 35.49901],\n      [-108.84055, 35.49928],\n      [-108.83928, 35.49952],\n      [-108.8385, 35.49969],\n      [-108.83773, 35.49991],\n      [-108.83689, 35.50021],\n      [-108.8363, 35.50048],\n      [-108.83556, 35.5009],\n      [-108.83492, 35.50134],\n      [-108.83437, 35.50176],\n      [-108.83397, 35.50211],\n      [-108.83328, 35.5028],\n      [-108.83271, 35.50341],\n      [-108.83205, 35.50412],\n      [-108.83139, 35.5048],\n      [-108.83122, 35.50497],\n      [-108.83073, 35.50549],\n      [-108.83037, 35.50588],\n      [-108.82774, 35.50868],\n      [-108.82732, 35.50913],\n      [-108.82696, 35.50953],\n      [-108.82673, 35.50977],\n      [-108.82654, 35.50996],\n      [-108.82639, 35.51011],\n      [-108.82623, 35.51026],\n      [-108.82599, 35.51046],\n      [-108.82577, 35.51063],\n      [-108.82553, 35.51079],\n      [-108.82522, 35.51098],\n      [-108.82488, 35.51118],\n      [-108.82461, 35.51133],\n      [-108.82423, 35.51152],\n      [-108.8239, 35.51167],\n      [-108.82348, 35.51185],\n      [-108.82308, 35.51199],\n      [-108.82257, 35.51215],\n      [-108.82211, 35.51227],\n      [-108.82167, 35.51237],\n      [-108.82128, 35.51243],\n      [-108.82105, 35.51247],\n      [-108.82085, 35.51249],\n      [-108.8205, 35.51253],\n      [-108.82008, 35.51255],\n      [-108.81947, 35.51258],\n      [-108.81742, 35.51266],\n      [-108.8136, 35.51282],\n      [-108.81314, 35.51283],\n      [-108.80993, 35.51297],\n      [-108.80924, 35.51303],\n      [-108.80854, 35.51311],\n      [-108.80801, 35.51319],\n      [-108.80737, 35.5133],\n      [-108.80673, 35.51342],\n      [-108.80626, 35.51352],\n      [-108.8054, 35.51373],\n      [-108.80468, 35.51394],\n      [-108.80408, 35.51414],\n      [-108.8035, 35.51434],\n      [-108.80292, 35.51455],\n      [-108.80232, 35.51481],\n      [-108.80173, 35.51506],\n      [-108.80071, 35.51558],\n      [-108.79945, 35.51619],\n      [-108.79834, 35.51672],\n      [-108.79786, 35.51698],\n      [-108.79747, 35.51718],\n      [-108.79706, 35.51739],\n      [-108.79669, 35.51755],\n      [-108.79618, 35.51774],\n      [-108.79526, 35.51803],\n      [-108.79326, 35.51863],\n      [-108.78744, 35.52035],\n      [-108.78302, 35.52166],\n      [-108.77961, 35.52266],\n      [-108.77918, 35.52278],\n      [-108.77241, 35.52481],\n      [-108.76816, 35.52607],\n      [-108.76614, 35.52665],\n      [-108.76468, 35.52706],\n      [-108.76305, 35.52757],\n      [-108.76202, 35.52784],\n      [-108.76074, 35.5281],\n      [-108.76034, 35.52818],\n      [-108.7595, 35.52829],\n      [-108.75832, 35.52842],\n      [-108.75773, 35.52845],\n      [-108.75706, 35.52848],\n      [-108.75588, 35.52848],\n      [-108.7543, 35.52849],\n      [-108.7535, 35.52849],\n      [-108.75312, 35.52848],\n      [-108.75237, 35.52849],\n      [-108.75182, 35.52849],\n      [-108.75138, 35.52852],\n      [-108.75097, 35.52856],\n      [-108.75052, 35.52862],\n      [-108.75003, 35.52871],\n      [-108.74952, 35.52882],\n      [-108.74909, 35.52894],\n      [-108.74854, 35.5291],\n      [-108.74709, 35.52956],\n      [-108.7457, 35.53],\n      [-108.74535, 35.53011],\n      [-108.74414, 35.53046],\n      [-108.7438, 35.53055],\n      [-108.74327, 35.53067],\n      [-108.74265, 35.53078],\n      [-108.74189, 35.53087],\n      [-108.74074, 35.53096],\n      [-108.74037, 35.531],\n      [-108.73995, 35.53106],\n      [-108.73954, 35.53113],\n      [-108.7391, 35.53122],\n      [-108.73865, 35.53133],\n      [-108.73822, 35.53146],\n      [-108.7351, 35.53247],\n      [-108.73478, 35.53256],\n      [-108.73428, 35.5327],\n      [-108.73371, 35.53284],\n      [-108.73324, 35.53292],\n      [-108.73273, 35.533],\n      [-108.73216, 35.53307],\n      [-108.73176, 35.53311],\n      [-108.73072, 35.53316],\n      [-108.72425, 35.53316],\n      [-108.72174, 35.53316],\n      [-108.72093, 35.53316],\n      [-108.72033, 35.53315],\n      [-108.71965, 35.53312],\n      [-108.71907, 35.53308],\n      [-108.7183, 35.53301],\n      [-108.71783, 35.53294],\n      [-108.71687, 35.5328],\n      [-108.71578, 35.53264],\n      [-108.7139, 35.53236],\n      [-108.71295, 35.53224],\n      [-108.71232, 35.53218],\n      [-108.71152, 35.53213],\n      [-108.71081, 35.5321],\n      [-108.71027, 35.53211],\n      [-108.70948, 35.53213],\n      [-108.70884, 35.53216],\n      [-108.7066, 35.53235],\n      [-108.69918, 35.53292],\n      [-108.6906, 35.53363],\n      [-108.68244, 35.53432],\n      [-108.68182, 35.53436],\n      [-108.68138, 35.53439],\n      [-108.68083, 35.5344],\n      [-108.68019, 35.53437],\n      [-108.67955, 35.53431],\n      [-108.67889, 35.53421],\n      [-108.67834, 35.53409],\n      [-108.67781, 35.53396],\n      [-108.67736, 35.53382],\n      [-108.67686, 35.53364],\n      [-108.67636, 35.53343],\n      [-108.67594, 35.53323],\n      [-108.6755, 35.53299],\n      [-108.67496, 35.53268],\n      [-108.67398, 35.53203],\n      [-108.67179, 35.53068],\n      [-108.67155, 35.53053],\n      [-108.67051, 35.52988],\n      [-108.67013, 35.52966],\n      [-108.66977, 35.52947],\n      [-108.66942, 35.52932],\n      [-108.66905, 35.52918],\n      [-108.66861, 35.52906],\n      [-108.66811, 35.52892],\n      [-108.6676, 35.52884],\n      [-108.66717, 35.52879],\n      [-108.66713, 35.52878],\n      [-108.66655, 35.52876],\n      [-108.66607, 35.52877],\n      [-108.66561, 35.52882],\n      [-108.66512, 35.52888],\n      [-108.66469, 35.52898],\n      [-108.66412, 35.52912],\n      [-108.6629, 35.52946],\n      [-108.65955, 35.53043],\n      [-108.65516, 35.53162],\n      [-108.65468, 35.53173],\n      [-108.65405, 35.53186],\n      [-108.65345, 35.53196],\n      [-108.65277, 35.53207],\n      [-108.6519, 35.53216],\n      [-108.65087, 35.53225],\n      [-108.64994, 35.53228],\n      [-108.64906, 35.53227],\n      [-108.64834, 35.53225],\n      [-108.64533, 35.53209],\n      [-108.63577, 35.53148],\n      [-108.62594, 35.5309],\n      [-108.61547, 35.53025],\n      [-108.60494, 35.52963],\n      [-108.60438, 35.5296],\n      [-108.60262, 35.52949],\n      [-108.60191, 35.52943],\n      [-108.60133, 35.52937],\n      [-108.60067, 35.52927],\n      [-108.59997, 35.52916],\n      [-108.59938, 35.52904],\n      [-108.59878, 35.52891],\n      [-108.59817, 35.52876],\n      [-108.5974, 35.52852],\n      [-108.59635, 35.52822],\n      [-108.59442, 35.52763],\n      [-108.5938, 35.52744],\n      [-108.59351, 35.52736],\n      [-108.59304, 35.52721],\n      [-108.59165, 35.5268],\n      [-108.58407, 35.5245],\n      [-108.5837, 35.52438],\n      [-108.58208, 35.52389],\n      [-108.57285, 35.52111],\n      [-108.57263, 35.52105],\n      [-108.56217, 35.51787],\n      [-108.55258, 35.51496],\n      [-108.54779, 35.51352],\n      [-108.54645, 35.5131],\n      [-108.54532, 35.51273],\n      [-108.54427, 35.51236],\n      [-108.54108, 35.51114],\n      [-108.53605, 35.50923],\n      [-108.5343, 35.50857],\n      [-108.52463, 35.50488],\n      [-108.51758, 35.5022],\n      [-108.5168, 35.50192],\n      [-108.51416, 35.50091],\n      [-108.50381, 35.49701],\n      [-108.49674, 35.49432],\n      [-108.49562, 35.49392],\n      [-108.49472, 35.49358],\n      [-108.49395, 35.49333],\n      [-108.49287, 35.493],\n      [-108.49173, 35.49268],\n      [-108.4909, 35.49246],\n      [-108.49024, 35.49232],\n      [-108.48823, 35.49186],\n      [-108.48609, 35.4914],\n      [-108.48437, 35.49098],\n      [-108.48126, 35.49028],\n      [-108.47259, 35.4883],\n      [-108.462, 35.48593],\n      [-108.45087, 35.4834],\n      [-108.44108, 35.48119],\n      [-108.43656, 35.48017],\n      [-108.43373, 35.47953],\n      [-108.42935, 35.47855],\n      [-108.42869, 35.47839],\n      [-108.42778, 35.47815],\n      [-108.42707, 35.47795],\n      [-108.42634, 35.4777],\n      [-108.42572, 35.47748],\n      [-108.42506, 35.4772],\n      [-108.42455, 35.47696],\n      [-108.4241, 35.47675],\n      [-108.42348, 35.4764],\n      [-108.42288, 35.47608],\n      [-108.42233, 35.47576],\n      [-108.42176, 35.47537],\n      [-108.42124, 35.47499],\n      [-108.42075, 35.47464],\n      [-108.41507, 35.4703],\n      [-108.41065, 35.46693],\n      [-108.41, 35.46647],\n      [-108.40911, 35.4659],\n      [-108.40855, 35.46558],\n      [-108.40798, 35.46528],\n      [-108.40731, 35.46494],\n      [-108.40653, 35.46457],\n      [-108.40557, 35.46413],\n      [-108.39959, 35.46135],\n      [-108.38999, 35.45688],\n      [-108.38854, 35.45625],\n      [-108.38753, 35.45582],\n      [-108.3836, 35.45423],\n      [-108.37978, 35.4527],\n      [-108.36942, 35.44854],\n      [-108.3653, 35.44691],\n      [-108.36273, 35.44586],\n      [-108.36018, 35.44475],\n      [-108.35921, 35.44431],\n      [-108.35096, 35.44072],\n      [-108.34095, 35.43634],\n      [-108.33119, 35.43208],\n      [-108.32554, 35.42961],\n      [-108.32411, 35.42887],\n      [-108.32304, 35.4283],\n      [-108.32229, 35.42795],\n      [-108.32105, 35.42739],\n      [-108.31565, 35.42502],\n      [-108.31261, 35.42368],\n      [-108.30943, 35.4223],\n      [-108.30758, 35.42149],\n      [-108.29764, 35.41716],\n      [-108.28747, 35.41271],\n      [-108.27705, 35.40815],\n      [-108.27568, 35.40757],\n      [-108.27405, 35.40695],\n      [-108.27246, 35.40641],\n      [-108.27082, 35.40593],\n      [-108.26955, 35.4056],\n      [-108.26835, 35.40532],\n      [-108.26716, 35.40509],\n      [-108.26566, 35.40477],\n      [-108.25628, 35.40287],\n      [-108.24534, 35.40061],\n      [-108.23439, 35.39836],\n      [-108.23015, 35.39749],\n      [-108.22458, 35.39634],\n      [-108.22418, 35.39626],\n      [-108.22013, 35.39543],\n      [-108.2138, 35.39414],\n      [-108.20829, 35.39302],\n      [-108.20787, 35.39292],\n      [-108.19806, 35.39089],\n      [-108.19387, 35.39002],\n      [-108.19272, 35.38978],\n      [-108.19175, 35.38959],\n      [-108.19093, 35.38943],\n      [-108.19031, 35.38934],\n      [-108.18947, 35.38922],\n      [-108.18879, 35.38916],\n      [-108.18813, 35.38912],\n      [-108.18723, 35.38908],\n      [-108.17654, 35.38867],\n      [-108.16599, 35.38824],\n      [-108.16525, 35.38821],\n      [-108.16457, 35.38816],\n      [-108.16358, 35.38808],\n      [-108.16263, 35.38798],\n      [-108.16146, 35.38782],\n      [-108.15981, 35.38762],\n      [-108.15939, 35.38757],\n      [-108.15616, 35.3871],\n      [-108.14601, 35.38561],\n      [-108.1458, 35.38558],\n      [-108.13101, 35.38347],\n      [-108.13021, 35.38334],\n      [-108.12958, 35.38322],\n      [-108.12902, 35.38309],\n      [-108.12827, 35.38291],\n      [-108.12747, 35.38268],\n      [-108.12675, 35.38243],\n      [-108.1196, 35.37999],\n      [-108.1195, 35.37995],\n      [-108.11677, 35.379],\n      [-108.11511, 35.37844],\n      [-108.11403, 35.3781],\n      [-108.11313, 35.37783],\n      [-108.11216, 35.37756],\n      [-108.11143, 35.3774],\n      [-108.1099, 35.37706],\n      [-108.10938, 35.37698],\n      [-108.10744, 35.37658],\n      [-108.10084, 35.37534],\n      [-108.08041, 35.37153],\n      [-108.08002, 35.37144],\n      [-108.0712, 35.36976],\n      [-108.07006, 35.36957],\n      [-108.06891, 35.36934],\n      [-108.06818, 35.36919],\n      [-108.06758, 35.36906],\n      [-108.06689, 35.36888],\n      [-108.06619, 35.36866],\n      [-108.06537, 35.36838],\n      [-108.06442, 35.36802],\n      [-108.06349, 35.36765],\n      [-108.06024, 35.36633],\n      [-108.0559, 35.36458],\n      [-108.05252, 35.36322],\n      [-108.04839, 35.36155],\n      [-108.04531, 35.36031],\n      [-108.03468, 35.35601],\n      [-108.01568, 35.34831],\n      [-108.01497, 35.34799],\n      [-108.0145, 35.34778],\n      [-108.01383, 35.34743],\n      [-108.01317, 35.34705],\n      [-108.01261, 35.34672],\n      [-108.01205, 35.34636],\n      [-108.01147, 35.34594],\n      [-108.01091, 35.34551],\n      [-108.01018, 35.34488],\n      [-108.00954, 35.34429],\n      [-108.00908, 35.34381],\n      [-108.00842, 35.34303],\n      [-108.00775, 35.34216],\n      [-108.00719, 35.34128],\n      [-108.00674, 35.34048],\n      [-108.00173, 35.33158],\n      [-107.99913, 35.32701],\n      [-107.99669, 35.32264],\n      [-107.99402, 35.31791],\n      [-107.99295, 35.31603],\n      [-107.99278, 35.31568],\n      [-107.99262, 35.31533],\n      [-107.99246, 35.31497],\n      [-107.99229, 35.31452],\n      [-107.99217, 35.31414],\n      [-107.99206, 35.31374],\n      [-107.99192, 35.31321],\n      [-107.99179, 35.31253],\n      [-107.99001, 35.30162],\n      [-107.98982, 35.30048],\n      [-107.98872, 35.29531],\n      [-107.9877, 35.29068],\n      [-107.98666, 35.28598],\n      [-107.98572, 35.2816],\n      [-107.9849, 35.27779],\n      [-107.98478, 35.27738],\n      [-107.98466, 35.27701],\n      [-107.98453, 35.27659],\n      [-107.98439, 35.27617],\n      [-107.98424, 35.27581],\n      [-107.98403, 35.27533],\n      [-107.98379, 35.27481],\n      [-107.98351, 35.27425],\n      [-107.9831, 35.27351],\n      [-107.98069, 35.26901],\n      [-107.97859, 35.26504],\n      [-107.97822, 35.26441],\n      [-107.97803, 35.26416],\n      [-107.97728, 35.26301],\n      [-107.97682, 35.2624],\n      [-107.97602, 35.26136],\n      [-107.97565, 35.26092],\n      [-107.97522, 35.26041],\n      [-107.97462, 35.25973],\n      [-107.97408, 35.25918],\n      [-107.97324, 35.25834],\n      [-107.97166, 35.25684],\n      [-107.96669, 35.25228],\n      [-107.96169, 35.24764],\n      [-107.95812, 35.24376],\n      [-107.95766, 35.24328],\n      [-107.91245, 35.1957],\n      [-107.90801, 35.19102],\n      [-107.90352, 35.18633],\n      [-107.90336, 35.18616],\n      [-107.90299, 35.18573],\n      [-107.90264, 35.18523],\n      [-107.90237, 35.18482],\n      [-107.90217, 35.18448],\n      [-107.90197, 35.18409],\n      [-107.9018, 35.18371],\n      [-107.90162, 35.18326],\n      [-107.90146, 35.1826],\n      [-107.90135, 35.18206],\n      [-107.90111, 35.18021],\n      [-107.90093, 35.17855],\n      [-107.90027, 35.17259],\n      [-107.90018, 35.17211],\n      [-107.90012, 35.17167],\n      [-107.90001, 35.17118],\n      [-107.89988, 35.17077],\n      [-107.89973, 35.17031],\n      [-107.8995, 35.16966],\n      [-107.89926, 35.16911],\n      [-107.89888, 35.16842],\n      [-107.89858, 35.16796],\n      [-107.89826, 35.16751],\n      [-107.898, 35.16717],\n      [-107.89768, 35.16676],\n      [-107.89731, 35.16633],\n      [-107.89682, 35.16585],\n      [-107.8963, 35.16537],\n      [-107.8959, 35.16501],\n      [-107.89549, 35.16469],\n      [-107.89494, 35.16433],\n      [-107.89443, 35.16398],\n      [-107.89371, 35.16355],\n      [-107.89308, 35.16322],\n      [-107.89234, 35.16286],\n      [-107.88612, 35.15974],\n      [-107.87945, 35.15639],\n      [-107.87827, 35.1558],\n      [-107.8762, 35.15478],\n      [-107.87555, 35.15446],\n      [-107.87467, 35.15401],\n      [-107.87351, 35.15344],\n      [-107.87161, 35.15245],\n      [-107.87039, 35.15176],\n      [-107.86722, 35.1499],\n      [-107.86544, 35.14884],\n      [-107.85941, 35.14579],\n      [-107.85623, 35.14422],\n      [-107.85467, 35.14338],\n      [-107.85355, 35.14269],\n      [-107.8523, 35.14176],\n      [-107.85106, 35.14068],\n      [-107.84877, 35.1386],\n      [-107.8466, 35.13664],\n      [-107.84407, 35.13438],\n      [-107.84244, 35.13291],\n      [-107.84152, 35.13207],\n      [-107.84053, 35.1312],\n      [-107.83941, 35.13036],\n      [-107.83475, 35.12726],\n      [-107.82988, 35.12401],\n      [-107.82382, 35.12007],\n      [-107.77473, 35.08777],\n      [-107.7736, 35.08708],\n      [-107.77226, 35.08609],\n      [-107.77022, 35.08454],\n      [-107.76837, 35.08306],\n      [-107.76689, 35.08189],\n      [-107.76607, 35.08123],\n      [-107.76348, 35.07921],\n      [-107.76095, 35.0772],\n      [-107.76024, 35.07664],\n      [-107.75969, 35.07623],\n      [-107.75905, 35.07583],\n      [-107.75844, 35.07549],\n      [-107.75787, 35.07516],\n      [-107.75735, 35.07488],\n      [-107.75679, 35.07461],\n      [-107.75619, 35.07434],\n      [-107.75563, 35.07412],\n      [-107.75529, 35.07398],\n      [-107.75414, 35.0736],\n      [-107.74597, 35.07108],\n      [-107.73652, 35.06819],\n      [-107.73525, 35.0678],\n      [-107.73455, 35.06759],\n      [-107.73404, 35.06747],\n      [-107.73345, 35.06733],\n      [-107.73286, 35.06721],\n      [-107.73224, 35.06709],\n      [-107.73155, 35.06699],\n      [-107.73088, 35.06692],\n      [-107.7299, 35.06683],\n      [-107.72876, 35.06676],\n      [-107.72154, 35.06618],\n      [-107.72066, 35.0661],\n      [-107.71995, 35.06601],\n      [-107.71925, 35.06589],\n      [-107.71857, 35.06575],\n      [-107.70834, 35.06348],\n      [-107.70481, 35.06265],\n      [-107.70343, 35.06236],\n      [-107.70266, 35.06218],\n      [-107.70194, 35.06204],\n      [-107.7014, 35.06195],\n      [-107.7007, 35.06184],\n      [-107.69997, 35.06179],\n      [-107.69922, 35.06176],\n      [-107.69853, 35.06176],\n      [-107.69777, 35.06179],\n      [-107.69696, 35.06185],\n      [-107.69631, 35.06192],\n      [-107.69542, 35.06204],\n      [-107.6946, 35.0622],\n      [-107.69385, 35.06238],\n      [-107.69311, 35.06261],\n      [-107.6925, 35.06283],\n      [-107.6919, 35.06307],\n      [-107.69134, 35.0633],\n      [-107.69069, 35.06361],\n      [-107.68988, 35.06403],\n      [-107.68405, 35.06738],\n      [-107.68285, 35.06805],\n      [-107.68221, 35.06838],\n      [-107.68145, 35.06875],\n      [-107.68072, 35.06909],\n      [-107.67988, 35.06941],\n      [-107.67915, 35.06966],\n      [-107.67847, 35.06987],\n      [-107.67775, 35.07006],\n      [-107.67694, 35.07026],\n      [-107.67562, 35.07053],\n      [-107.67423, 35.07081],\n      [-107.66879, 35.07187],\n      [-107.6631, 35.073],\n      [-107.66175, 35.07328],\n      [-107.65596, 35.07443],\n      [-107.65303, 35.07498],\n      [-107.65179, 35.07521],\n      [-107.65085, 35.0754],\n      [-107.64966, 35.07561],\n      [-107.64825, 35.07582],\n      [-107.64709, 35.07595],\n      [-107.64608, 35.07605],\n      [-107.64478, 35.07615],\n      [-107.64219, 35.07618],\n      [-107.64001, 35.07613],\n      [-107.63449, 35.07603],\n      [-107.62458, 35.07574],\n      [-107.61457, 35.07549],\n      [-107.6045, 35.07522],\n      [-107.59819, 35.07506],\n      [-107.59763, 35.07504],\n      [-107.59718, 35.07502],\n      [-107.59367, 35.07496],\n      [-107.58878, 35.07483],\n      [-107.58485, 35.07472],\n      [-107.57509, 35.07447],\n      [-107.56776, 35.0743],\n      [-107.56632, 35.07426],\n      [-107.56475, 35.07422],\n      [-107.56233, 35.07415],\n      [-107.5603, 35.07411],\n      [-107.55861, 35.07406],\n      [-107.55638, 35.07401],\n      [-107.55586, 35.074],\n      [-107.55318, 35.07393],\n      [-107.55159, 35.07388],\n      [-107.5489, 35.07381],\n      [-107.54132, 35.07361],\n      [-107.54042, 35.0736],\n      [-107.53968, 35.07356],\n      [-107.53895, 35.07349],\n      [-107.53802, 35.07337],\n      [-107.53706, 35.07318],\n      [-107.53628, 35.07298],\n      [-107.53557, 35.07276],\n      [-107.53496, 35.07255],\n      [-107.5343, 35.07228],\n      [-107.53386, 35.07208],\n      [-107.53313, 35.07172],\n      [-107.53263, 35.07146],\n      [-107.53173, 35.07089],\n      [-107.53123, 35.07055],\n      [-107.53089, 35.07028],\n      [-107.53054, 35.07],\n      [-107.53003, 35.0695],\n      [-107.52963, 35.06909],\n      [-107.52912, 35.06853],\n      [-107.52882, 35.0682],\n      [-107.52856, 35.06786],\n      [-107.52826, 35.0674],\n      [-107.52798, 35.06696],\n      [-107.52774, 35.06655],\n      [-107.52751, 35.06606],\n      [-107.52722, 35.06542],\n      [-107.52702, 35.06489],\n      [-107.52648, 35.06365],\n      [-107.52585, 35.06221],\n      [-107.5253, 35.06094],\n      [-107.52498, 35.06019],\n      [-107.52474, 35.05968],\n      [-107.52443, 35.05911],\n      [-107.52396, 35.05842],\n      [-107.52342, 35.05768],\n      [-107.52272, 35.05681],\n      [-107.5218, 35.05584],\n      [-107.52094, 35.05505],\n      [-107.52005, 35.05435],\n      [-107.51886, 35.05353],\n      [-107.51748, 35.05271],\n      [-107.51629, 35.05208],\n      [-107.51142, 35.0495],\n      [-107.50677, 35.04695],\n      [-107.50602, 35.04655],\n      [-107.50427, 35.04563],\n      [-107.50146, 35.04412],\n      [-107.499, 35.04278],\n      [-107.49868, 35.04262],\n      [-107.49536, 35.0408],\n      [-107.49352, 35.03993],\n      [-107.49217, 35.03931],\n      [-107.4911, 35.03887],\n      [-107.49006, 35.03845],\n      [-107.48892, 35.03805],\n      [-107.48759, 35.03765],\n      [-107.48616, 35.03724],\n      [-107.48101, 35.0358],\n      [-107.47734, 35.03475],\n      [-107.4734, 35.03363],\n      [-107.47034, 35.03278],\n      [-107.46338, 35.03083],\n      [-107.45728, 35.02911],\n      [-107.45555, 35.02863],\n      [-107.45424, 35.0283],\n      [-107.45316, 35.02807],\n      [-107.45233, 35.0279],\n      [-107.45138, 35.02772],\n      [-107.45032, 35.02755],\n      [-107.44921, 35.02741],\n      [-107.44818, 35.02731],\n      [-107.4468, 35.02718],\n      [-107.44528, 35.02711],\n      [-107.44404, 35.02706],\n      [-107.436, 35.0269],\n      [-107.42662, 35.02669],\n      [-107.41662, 35.02649],\n      [-107.40586, 35.02627],\n      [-107.40225, 35.02617],\n      [-107.40191, 35.02616],\n      [-107.39906, 35.02611],\n      [-107.39766, 35.02609],\n      [-107.39695, 35.02608],\n      [-107.39622, 35.02612],\n      [-107.39542, 35.02619],\n      [-107.39473, 35.02626],\n      [-107.39404, 35.02636],\n      [-107.39325, 35.02649],\n      [-107.39254, 35.02664],\n      [-107.39188, 35.0268],\n      [-107.3911, 35.02703],\n      [-107.39037, 35.02724],\n      [-107.38977, 35.02745],\n      [-107.38916, 35.02767],\n      [-107.38838, 35.02799],\n      [-107.38768, 35.02833],\n      [-107.38477, 35.02976],\n      [-107.37942, 35.03233],\n      [-107.37379, 35.03514],\n      [-107.37058, 35.0367],\n      [-107.36897, 35.0375],\n      [-107.36807, 35.03794],\n      [-107.36747, 35.03818],\n      [-107.36695, 35.03839],\n      [-107.36634, 35.03857],\n      [-107.36558, 35.03873],\n      [-107.36485, 35.03882],\n      [-107.36414, 35.03891],\n      [-107.36351, 35.03892],\n      [-107.36277, 35.0389],\n      [-107.36215, 35.03886],\n      [-107.36131, 35.03873],\n      [-107.3595, 35.03835],\n      [-107.35775, 35.03799],\n      [-107.35263, 35.03695],\n      [-107.34603, 35.0356],\n      [-107.34401, 35.03518],\n      [-107.34312, 35.03495],\n      [-107.34229, 35.03467],\n      [-107.34145, 35.03425],\n      [-107.34082, 35.03389],\n      [-107.34024, 35.03345],\n      [-107.33969, 35.03293],\n      [-107.33923, 35.0324],\n      [-107.33827, 35.03107],\n      [-107.33785, 35.03048],\n      [-107.33641, 35.02839],\n      [-107.3347, 35.02595],\n      [-107.3332, 35.02383],\n      [-107.3315, 35.02143],\n      [-107.33046, 35.01993],\n      [-107.32984, 35.01904],\n      [-107.32921, 35.01819],\n      [-107.32878, 35.01765],\n      [-107.32825, 35.01704],\n      [-107.32771, 35.0165],\n      [-107.32712, 35.01596],\n      [-107.32617, 35.01519],\n      [-107.32445, 35.01377],\n      [-107.32285, 35.01246],\n      [-107.32158, 35.01141],\n      [-107.31952, 35.00973],\n      [-107.31623, 35.007],\n      [-107.31079, 35.00252],\n      [-107.30699, 34.99932],\n      [-107.30562, 34.99821],\n      [-107.30481, 34.99759],\n      [-107.3042, 34.99716],\n      [-107.30362, 34.99677],\n      [-107.30293, 34.99637],\n      [-107.30212, 34.99598],\n      [-107.30123, 34.99554],\n      [-107.30048, 34.99521],\n      [-107.29966, 34.99491],\n      [-107.29895, 34.99467],\n      [-107.29821, 34.99444],\n      [-107.29752, 34.99426],\n      [-107.29682, 34.9941],\n      [-107.29617, 34.99396],\n      [-107.29552, 34.99386],\n      [-107.29477, 34.99375],\n      [-107.29392, 34.99367],\n      [-107.29318, 34.99361],\n      [-107.29259, 34.99359],\n      [-107.29182, 34.99358],\n      [-107.29072, 34.99357],\n      [-107.286, 34.99352],\n      [-107.2853, 34.99351],\n      [-107.27414, 34.99337],\n      [-107.26348, 34.99323],\n      [-107.25776, 34.99316],\n      [-107.25689, 34.99314],\n      [-107.25254, 34.99307],\n      [-107.24355, 34.99295],\n      [-107.23709, 34.99287],\n      [-107.23589, 34.99284],\n      [-107.23493, 34.9928],\n      [-107.23405, 34.99272],\n      [-107.2332, 34.99263],\n      [-107.23223, 34.99253],\n      [-107.23104, 34.99237],\n      [-107.22995, 34.99221],\n      [-107.22307, 34.99114],\n      [-107.21259, 34.98951],\n      [-107.20252, 34.98798],\n      [-107.19265, 34.98647],\n      [-107.18241, 34.98489],\n      [-107.17603, 34.9839],\n      [-107.17419, 34.98363],\n      [-107.17109, 34.98311],\n      [-107.16591, 34.98234],\n      [-107.15863, 34.98122],\n      [-107.14819, 34.9796],\n      [-107.14021, 34.97835],\n      [-107.13863, 34.97812],\n      [-107.13763, 34.97795],\n      [-107.13686, 34.97788],\n      [-107.13615, 34.97779],\n      [-107.1353, 34.97774],\n      [-107.13409, 34.97773],\n      [-107.13192, 34.97789],\n      [-107.12982, 34.97821],\n      [-107.12787, 34.9787],\n      [-107.11495, 34.98283],\n      [-107.10007, 34.9876],\n      [-107.09135, 34.99039],\n      [-107.08406, 34.99273],\n      [-107.08219, 34.99334],\n      [-107.07834, 34.99454],\n      [-107.07494, 34.99562],\n      [-107.07164, 34.99668],\n      [-107.06848, 34.99768],\n      [-107.06523, 34.99872],\n      [-107.0619, 34.99978],\n      [-107.05875, 35.00075],\n      [-107.0556, 35.00177],\n      [-107.05328, 35.00256],\n      [-107.0509, 35.00327],\n      [-107.04942, 35.00372],\n      [-107.04696, 35.00453],\n      [-107.04497, 35.00518],\n      [-107.04099, 35.00643],\n      [-107.03893, 35.0071],\n      [-107.03685, 35.00775],\n      [-107.03538, 35.00824],\n      [-107.03208, 35.00928],\n      [-107.02438, 35.01174],\n      [-107.02205, 35.01247],\n      [-107.02036, 35.01301],\n      [-107.01551, 35.01454],\n      [-107.01414, 35.015],\n      [-107.01207, 35.01567],\n      [-107.01015, 35.01627],\n      [-107.00491, 35.01792],\n      [-107.00369, 35.01832],\n      [-107.00311, 35.0185],\n      [-107.00192, 35.01888],\n      [-106.99901, 35.01979],\n      [-106.99748, 35.02023],\n      [-106.99646, 35.02046],\n      [-106.98877, 35.02221],\n      [-106.98621, 35.02278],\n      [-106.98345, 35.02342],\n      [-106.98057, 35.02408],\n      [-106.97733, 35.02482],\n      [-106.97414, 35.02551],\n      [-106.97044, 35.02636],\n      [-106.96712, 35.02711],\n      [-106.96409, 35.0278],\n      [-106.96191, 35.02831],\n      [-106.9581, 35.02916],\n      [-106.95758, 35.0293],\n      [-106.95508, 35.02987],\n      [-106.94948, 35.03114],\n      [-106.94631, 35.03186],\n      [-106.94239, 35.03274],\n      [-106.9414, 35.03297],\n      [-106.93756, 35.03387],\n      [-106.92119, 35.03761],\n      [-106.87629, 35.04773],\n      [-106.86678, 35.04983],\n      [-106.86202, 35.05088],\n      [-106.86196, 35.05089],\n      [-106.8061, 35.05951],\n      [-106.80235, 35.06007],\n      [-106.80022, 35.06038],\n      [-106.79825, 35.0607],\n      [-106.79763, 35.06081],\n      [-106.79701, 35.06094],\n      [-106.79634, 35.0611],\n      [-106.79564, 35.06128],\n      [-106.79496, 35.06149],\n      [-106.79462, 35.0616],\n      [-106.79377, 35.06192],\n      [-106.79361, 35.06199],\n      [-106.79252, 35.06244],\n      [-106.79137, 35.06299],\n      [-106.79112, 35.06311],\n      [-106.7873, 35.06505],\n      [-106.78411, 35.06665],\n      [-106.78146, 35.06798],\n      [-106.78056, 35.06844],\n      [-106.77069, 35.07341],\n      [-106.76977, 35.07387],\n      [-106.76656, 35.07549],\n      [-106.76349, 35.07704],\n      [-106.76324, 35.07717],\n      [-106.75998, 35.07881],\n      [-106.75665, 35.08049],\n      [-106.75332, 35.08214],\n      [-106.74744, 35.08512],\n      [-106.7468, 35.08542],\n      [-106.74439, 35.08663],\n      [-106.74225, 35.08773],\n      [-106.74148, 35.08809],\n      [-106.74079, 35.08844],\n      [-106.73795, 35.08988],\n      [-106.73738, 35.09017],\n      [-106.73723, 35.09025],\n      [-106.73538, 35.09117],\n      [-106.73072, 35.0935],\n      [-106.72992, 35.09391],\n      [-106.72803, 35.09488],\n      [-106.72621, 35.09577],\n      [-106.72262, 35.09759],\n      [-106.71843, 35.09969],\n      [-106.71653, 35.10065],\n      [-106.71496, 35.10144],\n      [-106.71127, 35.10329],\n      [-106.71068, 35.10359],\n      [-106.70984, 35.104],\n      [-106.70736, 35.10525],\n      [-106.70643, 35.10572],\n      [-106.70602, 35.10591],\n      [-106.7055, 35.10613],\n      [-106.70479, 35.10637],\n      [-106.70417, 35.10654],\n      [-106.7036, 35.10666],\n      [-106.70294, 35.10678],\n      [-106.70233, 35.10685],\n      [-106.70156, 35.1069],\n      [-106.70091, 35.10692],\n      [-106.7005, 35.10693],\n      [-106.7, 35.10691],\n      [-106.6975, 35.10671],\n      [-106.69637, 35.10662],\n      [-106.69437, 35.10643],\n      [-106.69013, 35.10608],\n      [-106.68454, 35.10565],\n      [-106.68408, 35.10562],\n      [-106.68156, 35.10542],\n      [-106.67826, 35.10514],\n      [-106.6775, 35.10507],\n      [-106.67732, 35.10505],\n      [-106.67574, 35.10489],\n      [-106.67407, 35.10483],\n      [-106.67338, 35.10481],\n      [-106.67304, 35.10482],\n      [-106.67283, 35.10482],\n      [-106.67175, 35.10491],\n      [-106.67106, 35.10498],\n      [-106.67038, 35.1051],\n      [-106.6669, 35.10577],\n      [-106.66658, 35.10583],\n      [-106.66613, 35.10592],\n      [-106.66548, 35.10605],\n      [-106.66522, 35.10609],\n      [-106.66476, 35.10615],\n      [-106.6645, 35.10618],\n      [-106.66402, 35.10624],\n      [-106.6633, 35.10627],\n      [-106.66269, 35.10624],\n      [-106.66057, 35.10617],\n      [-106.65988, 35.10615],\n      [-106.6593, 35.10614],\n      [-106.65877, 35.10615],\n      [-106.6585, 35.10617],\n      [-106.65819, 35.10618],\n      [-106.65789, 35.10621],\n      [-106.65767, 35.10623],\n      [-106.65681, 35.10635],\n      [-106.65668, 35.10637],\n      [-106.65613, 35.10647],\n      [-106.65524, 35.10663],\n      [-106.65345, 35.10691],\n      [-106.6533, 35.10692],\n      [-106.65278, 35.10697],\n      [-106.65245, 35.10698],\n      [-106.65181, 35.10692],\n      [-106.65054, 35.10671],\n      [-106.6499, 35.10657],\n      [-106.64948, 35.10647],\n      [-106.64927, 35.10642],\n      [-106.64858, 35.10628],\n      [-106.6478, 35.10611],\n      [-106.64708, 35.10595],\n      [-106.64692, 35.10592],\n      [-106.64617, 35.10581],\n      [-106.6456, 35.10572],\n      [-106.64194, 35.10528],\n      [-106.64089, 35.10519],\n      [-106.64042, 35.10516],\n      [-106.63734, 35.10503],\n      [-106.63689, 35.10501],\n      [-106.63464, 35.10496],\n      [-106.63325, 35.10496],\n      [-106.63197, 35.105],\n      [-106.63145, 35.10502],\n      [-106.62915, 35.10519],\n      [-106.62795, 35.10533],\n      [-106.62739, 35.10541],\n      [-106.62485, 35.10581],\n      [-106.62418, 35.10595],\n      [-106.62353, 35.10609],\n      [-106.62106, 35.1067],\n      [-106.61981, 35.10702],\n      [-106.61873, 35.10723],\n      [-106.61786, 35.10736],\n      [-106.61665, 35.10741],\n      [-106.61536, 35.1074],\n      [-106.61429, 35.10725],\n      [-106.61328, 35.10702],\n      [-106.61309, 35.10699],\n      [-106.61231, 35.10681],\n      [-106.61118, 35.10656],\n      [-106.60957, 35.10618],\n      [-106.6084, 35.1059],\n      [-106.60811, 35.10583],\n      [-106.6042, 35.10496],\n      [-106.60275, 35.10463],\n      [-106.60199, 35.10446],\n      [-106.60129, 35.10433],\n      [-106.60072, 35.10422],\n      [-106.59929, 35.10403],\n      [-106.5988, 35.10399],\n      [-106.59823, 35.10396],\n      [-106.59547, 35.10389],\n      [-106.59336, 35.10377],\n      [-106.5916, 35.1037],\n      [-106.58718, 35.10362],\n      [-106.58652, 35.10361],\n      [-106.58596, 35.10358],\n      [-106.58549, 35.10355],\n      [-106.58505, 35.1035],\n      [-106.5847, 35.10345],\n      [-106.58425, 35.10336],\n      [-106.58395, 35.10329],\n      [-106.58354, 35.10318],\n      [-106.58304, 35.10302],\n      [-106.58243, 35.1028],\n      [-106.5813, 35.10233],\n      [-106.57975, 35.10171],\n      [-106.57342, 35.09914],\n      [-106.573, 35.09896],\n      [-106.57052, 35.09802],\n      [-106.56884, 35.09735],\n      [-106.56868, 35.09728],\n      [-106.56854, 35.09723],\n      [-106.56413, 35.09539],\n      [-106.56361, 35.09518],\n      [-106.56226, 35.09463],\n      [-106.56069, 35.09402],\n      [-106.55653, 35.09229],\n      [-106.55405, 35.09134],\n      [-106.55063, 35.08993],\n      [-106.5466, 35.08841],\n      [-106.54599, 35.08818],\n      [-106.54363, 35.08724],\n      [-106.54019, 35.0859],\n      [-106.53738, 35.08481],\n      [-106.53519, 35.08401],\n      [-106.53263, 35.08303],\n      [-106.52858, 35.08146],\n      [-106.52721, 35.08093],\n      [-106.52457, 35.07994],\n      [-106.52379, 35.07965],\n      [-106.52267, 35.07921],\n      [-106.5205, 35.0784],\n      [-106.51096, 35.07475],\n      [-106.50438, 35.07225],\n      [-106.49954, 35.07044],\n      [-106.49731, 35.06959],\n      [-106.49652, 35.06929],\n      [-106.49429, 35.06843],\n      [-106.49348, 35.06813],\n      [-106.48718, 35.06568],\n      [-106.48671, 35.06547],\n      [-106.48597, 35.06512],\n      [-106.48515, 35.06471],\n      [-106.48484, 35.06454],\n      [-106.48424, 35.06422],\n      [-106.4837, 35.06392],\n      [-106.48313, 35.06362],\n      [-106.48259, 35.06339],\n      [-106.48219, 35.06324],\n      [-106.48179, 35.06311],\n      [-106.48122, 35.06295],\n      [-106.48067, 35.06282],\n      [-106.48015, 35.06274],\n      [-106.47943, 35.06265],\n      [-106.47875, 35.06261],\n      [-106.47803, 35.06262],\n      [-106.47739, 35.06265],\n      [-106.47616, 35.06275],\n      [-106.47539, 35.06281],\n      [-106.47529, 35.06281],\n      [-106.47368, 35.06296],\n      [-106.47201, 35.06306],\n      [-106.47154, 35.06308],\n      [-106.47111, 35.06308],\n      [-106.47063, 35.06307],\n      [-106.47025, 35.06305],\n      [-106.46991, 35.06304],\n      [-106.46957, 35.063],\n      [-106.46935, 35.06298],\n      [-106.46913, 35.06296],\n      [-106.46894, 35.06294],\n      [-106.46881, 35.06293],\n      [-106.46879, 35.06293],\n      [-106.4684, 35.06287],\n      [-106.46829, 35.06285],\n      [-106.46799, 35.0628],\n      [-106.46728, 35.06266],\n      [-106.46686, 35.06256],\n      [-106.46611, 35.06237],\n      [-106.46586, 35.06228],\n      [-106.46503, 35.06199],\n      [-106.46428, 35.06173],\n      [-106.46391, 35.06159],\n      [-106.46343, 35.06142],\n      [-106.46295, 35.06128],\n      [-106.46235, 35.06112],\n      [-106.46206, 35.06106],\n      [-106.46179, 35.061],\n      [-106.46128, 35.06091],\n      [-106.46097, 35.06089],\n      [-106.46068, 35.06086],\n      [-106.4604, 35.06083],\n      [-106.46015, 35.06083],\n      [-106.45992, 35.06082],\n      [-106.45908, 35.06084],\n      [-106.45883, 35.06085],\n      [-106.45813, 35.06088],\n      [-106.45663, 35.06097],\n      [-106.45608, 35.06099],\n      [-106.45508, 35.06106],\n      [-106.45452, 35.06111],\n      [-106.45449, 35.06111],\n      [-106.454, 35.06114],\n      [-106.45375, 35.06115],\n      [-106.45298, 35.06119],\n      [-106.45187, 35.06123],\n      [-106.45036, 35.06132],\n      [-106.45025, 35.06132],\n      [-106.4488, 35.06141],\n      [-106.44778, 35.06145],\n      [-106.44694, 35.06149],\n      [-106.44637, 35.06153],\n      [-106.44612, 35.06155],\n      [-106.44574, 35.06159],\n      [-106.44529, 35.06166],\n      [-106.44487, 35.06174],\n      [-106.44472, 35.06178],\n      [-106.44439, 35.06187],\n      [-106.44382, 35.062],\n      [-106.44354, 35.06208],\n      [-106.44346, 35.06211],\n      [-106.44221, 35.06251],\n      [-106.4415, 35.06274],\n      [-106.44097, 35.06292],\n      [-106.44035, 35.06309],\n      [-106.43976, 35.06325],\n      [-106.43906, 35.06343],\n      [-106.43828, 35.06362],\n      [-106.43808, 35.06367],\n      [-106.43776, 35.06375],\n      [-106.43751, 35.0638],\n      [-106.43708, 35.06389],\n      [-106.43691, 35.06393],\n      [-106.43678, 35.06396],\n      [-106.43647, 35.06402],\n      [-106.43537, 35.06421],\n      [-106.43431, 35.06437],\n      [-106.43336, 35.06448],\n      [-106.43242, 35.06459],\n      [-106.43046, 35.06476],\n      [-106.42989, 35.0648],\n      [-106.42888, 35.06487],\n      [-106.42786, 35.06495],\n      [-106.42755, 35.06499],\n      [-106.42715, 35.06505],\n      [-106.42696, 35.06508],\n      [-106.42679, 35.06511],\n      [-106.42668, 35.06513],\n      [-106.42642, 35.06519],\n      [-106.42625, 35.06523],\n      [-106.42609, 35.06527],\n      [-106.42572, 35.06536],\n      [-106.4254, 35.06545],\n      [-106.42507, 35.06556],\n      [-106.42498, 35.0656],\n      [-106.42479, 35.06568],\n      [-106.42444, 35.06582],\n      [-106.42413, 35.06597],\n      [-106.42375, 35.06616],\n      [-106.42342, 35.06635],\n      [-106.42303, 35.0666],\n      [-106.42269, 35.06686],\n      [-106.42242, 35.06709],\n      [-106.42211, 35.06738],\n      [-106.42185, 35.06761],\n      [-106.42165, 35.06777],\n      [-106.4214, 35.06797],\n      [-106.42103, 35.06831],\n      [-106.41823, 35.0707],\n      [-106.41747, 35.07135],\n      [-106.41698, 35.0718],\n      [-106.41563, 35.07294],\n      [-106.41493, 35.07356],\n      [-106.41346, 35.07481],\n      [-106.41242, 35.0757],\n      [-106.41135, 35.07661],\n      [-106.41012, 35.07766],\n      [-106.40954, 35.07818],\n      [-106.40919, 35.07849],\n      [-106.40877, 35.07886],\n      [-106.40843, 35.07916],\n      [-106.40816, 35.07938],\n      [-106.40782, 35.07962],\n      [-106.40746, 35.07985],\n      [-106.40717, 35.08001],\n      [-106.40688, 35.08015],\n      [-106.40659, 35.08028],\n      [-106.40633, 35.08038],\n      [-106.40603, 35.08049],\n      [-106.40574, 35.08058],\n      [-106.40534, 35.08067],\n      [-106.40488, 35.08077],\n      [-106.40439, 35.08084],\n      [-106.40395, 35.08087],\n      [-106.40366, 35.08088],\n      [-106.40331, 35.08088],\n      [-106.40309, 35.08087],\n      [-106.40284, 35.08086],\n      [-106.40235, 35.08081],\n      [-106.40182, 35.08072],\n      [-106.40113, 35.08063],\n      [-106.40054, 35.08056],\n      [-106.40009, 35.08052],\n      [-106.3996, 35.08049],\n      [-106.39914, 35.08047],\n      [-106.3983, 35.08046],\n      [-106.39682, 35.08048],\n      [-106.39625, 35.08049],\n      [-106.39613, 35.08049],\n      [-106.39349, 35.08054],\n      [-106.39207, 35.08055],\n      [-106.39115, 35.08057],\n      [-106.39055, 35.0806],\n      [-106.38991, 35.08067],\n      [-106.38929, 35.08077],\n      [-106.38858, 35.08091],\n      [-106.38808, 35.08104],\n      [-106.38789, 35.08109],\n      [-106.3872, 35.08132],\n      [-106.38683, 35.08147],\n      [-106.38627, 35.08171],\n      [-106.38597, 35.08185],\n      [-106.38561, 35.08203],\n      [-106.38522, 35.08224],\n      [-106.38501, 35.08237],\n      [-106.38464, 35.08261],\n      [-106.38419, 35.08292],\n      [-106.384, 35.08306],\n      [-106.38387, 35.08315],\n      [-106.38369, 35.08328],\n      [-106.38328, 35.08357],\n      [-106.38294, 35.08381],\n      [-106.38271, 35.08398],\n      [-106.38215, 35.08437],\n      [-106.38187, 35.08457],\n      [-106.3814, 35.08491],\n      [-106.38063, 35.08546],\n      [-106.3801, 35.08584],\n      [-106.37995, 35.08594],\n      [-106.37946, 35.08629],\n      [-106.37906, 35.08657],\n      [-106.3784, 35.08706],\n      [-106.37803, 35.08733],\n      [-106.37793, 35.08741],\n      [-106.37771, 35.08761],\n      [-106.37757, 35.08778],\n      [-106.37732, 35.08806],\n      [-106.37721, 35.08819],\n      [-106.3767, 35.08879],\n      [-106.37668, 35.08881],\n      [-106.37658, 35.08894],\n      [-106.37634, 35.08924],\n      [-106.37615, 35.08945],\n      [-106.376, 35.08964],\n      [-106.37583, 35.08981],\n      [-106.37567, 35.08997],\n      [-106.37527, 35.0903],\n      [-106.37495, 35.09052],\n      [-106.3747, 35.09068],\n      [-106.37418, 35.091],\n      [-106.37394, 35.09114],\n      [-106.37362, 35.09132],\n      [-106.37331, 35.09151],\n      [-106.37303, 35.0917],\n      [-106.37269, 35.09197],\n      [-106.37252, 35.09214],\n      [-106.37233, 35.09234],\n      [-106.37214, 35.09252],\n      [-106.37194, 35.09274],\n      [-106.37172, 35.09303],\n      [-106.37153, 35.0933],\n      [-106.37136, 35.09362],\n      [-106.37121, 35.09394],\n      [-106.37103, 35.09438],\n      [-106.37086, 35.09479],\n      [-106.37057, 35.09549],\n      [-106.37032, 35.09605],\n      [-106.37018, 35.09634],\n      [-106.37003, 35.09657],\n      [-106.36988, 35.0968],\n      [-106.36977, 35.09694],\n      [-106.36949, 35.09727],\n      [-106.36932, 35.09746],\n      [-106.36915, 35.09763],\n      [-106.36888, 35.09788],\n      [-106.36849, 35.09819],\n      [-106.36803, 35.09847],\n      [-106.36783, 35.09858],\n      [-106.36733, 35.09882],\n      [-106.36711, 35.09891],\n      [-106.36691, 35.09899],\n      [-106.36642, 35.09914],\n      [-106.36607, 35.09922],\n      [-106.36599, 35.09923],\n      [-106.36549, 35.09933],\n      [-106.36522, 35.09938],\n      [-106.36434, 35.09952],\n      [-106.36401, 35.09957],\n      [-106.36394, 35.09958],\n      [-106.36327, 35.09968],\n      [-106.36316, 35.0997],\n      [-106.35999, 35.10022],\n      [-106.3594, 35.10032],\n      [-106.35859, 35.10044],\n      [-106.35705, 35.10068],\n      [-106.3559, 35.10087],\n      [-106.3555, 35.10093],\n      [-106.35456, 35.1011],\n      [-106.3541, 35.10117],\n      [-106.35398, 35.10119],\n      [-106.35343, 35.10128],\n      [-106.35291, 35.10136],\n      [-106.35205, 35.10151],\n      [-106.35138, 35.10165],\n      [-106.35099, 35.10176],\n      [-106.3507, 35.10183],\n      [-106.35022, 35.10198],\n      [-106.34983, 35.1021],\n      [-106.34952, 35.10221],\n      [-106.34926, 35.10228],\n      [-106.34868, 35.10251],\n      [-106.34794, 35.10284],\n      [-106.34725, 35.10316],\n      [-106.34678, 35.1034],\n      [-106.34579, 35.10388],\n      [-106.34512, 35.10418],\n      [-106.3443, 35.10457],\n      [-106.34389, 35.10479],\n      [-106.34342, 35.10503],\n      [-106.34265, 35.10544],\n      [-106.34178, 35.10593],\n      [-106.34103, 35.10637],\n      [-106.34037, 35.1068],\n      [-106.33949, 35.10739],\n      [-106.339, 35.10773],\n      [-106.33843, 35.10813],\n      [-106.33749, 35.10886],\n      [-106.33686, 35.10935],\n      [-106.33615, 35.10994],\n      [-106.33544, 35.11048],\n      [-106.33481, 35.11095],\n      [-106.33338, 35.11196],\n      [-106.33249, 35.11253],\n      [-106.33182, 35.11299],\n      [-106.33126, 35.11337],\n      [-106.33077, 35.11369],\n      [-106.33041, 35.11393],\n      [-106.33009, 35.11412],\n      [-106.32971, 35.11435],\n      [-106.32945, 35.11448],\n      [-106.32909, 35.11465],\n      [-106.32882, 35.11477],\n      [-106.32855, 35.11486],\n      [-106.32827, 35.11495],\n      [-106.32793, 35.11505],\n      [-106.32754, 35.11513],\n      [-106.32713, 35.11521],\n      [-106.32702, 35.11522],\n      [-106.32701, 35.11522],\n      [-106.32656, 35.11525],\n      [-106.32629, 35.11526],\n      [-106.32595, 35.11526],\n      [-106.32556, 35.11525],\n      [-106.32449, 35.11516],\n      [-106.32397, 35.11513],\n      [-106.32327, 35.11507],\n      [-106.32229, 35.11499],\n      [-106.32154, 35.11493],\n      [-106.32091, 35.11487],\n      [-106.32054, 35.11482],\n      [-106.32009, 35.11476],\n      [-106.31981, 35.11469],\n      [-106.31954, 35.11462],\n      [-106.31924, 35.11452],\n      [-106.31891, 35.1144],\n      [-106.3186, 35.11427],\n      [-106.31829, 35.11412],\n      [-106.318, 35.11396],\n      [-106.31771, 35.11379],\n      [-106.31724, 35.11346],\n      [-106.31676, 35.11314],\n      [-106.31649, 35.11299],\n      [-106.31603, 35.11275],\n      [-106.31578, 35.11265],\n      [-106.31539, 35.1125],\n      [-106.31491, 35.11233],\n      [-106.3126, 35.11157],\n      [-106.31157, 35.11123],\n      [-106.31141, 35.11118],\n      [-106.3112, 35.1111],\n      [-106.31099, 35.11104],\n      [-106.31076, 35.11095],\n      [-106.31042, 35.11085],\n      [-106.31004, 35.11071],\n      [-106.30929, 35.11047],\n      [-106.30908, 35.11038],\n      [-106.30896, 35.11034],\n      [-106.30853, 35.11019],\n      [-106.30829, 35.11013],\n      [-106.30787, 35.10999],\n      [-106.30759, 35.10988],\n      [-106.30705, 35.10963],\n      [-106.30662, 35.10942],\n      [-106.30639, 35.1093],\n      [-106.30584, 35.10896],\n      [-106.30558, 35.10877],\n      [-106.30529, 35.10856],\n      [-106.30497, 35.1083],\n      [-106.30468, 35.10804],\n      [-106.30423, 35.10766],\n      [-106.30401, 35.10745],\n      [-106.30365, 35.10713],\n      [-106.30335, 35.10691],\n      [-106.30312, 35.10671],\n      [-106.30265, 35.10631],\n      [-106.3025, 35.10617],\n      [-106.30197, 35.10574],\n      [-106.30158, 35.10545],\n      [-106.30105, 35.1051],\n      [-106.30028, 35.1047],\n      [-106.3001, 35.10459],\n      [-106.29986, 35.10451],\n      [-106.29946, 35.10434],\n      [-106.29925, 35.10427],\n      [-106.29898, 35.10417],\n      [-106.29856, 35.10404],\n      [-106.29818, 35.10394],\n      [-106.29781, 35.10385],\n      [-106.29741, 35.10373],\n      [-106.29717, 35.10368],\n      [-106.29558, 35.10326],\n      [-106.29463, 35.10303],\n      [-106.29437, 35.10296],\n      [-106.29352, 35.10276],\n      [-106.29294, 35.10261],\n      [-106.29238, 35.10247],\n      [-106.29184, 35.10236],\n      [-106.29154, 35.10229],\n      [-106.29099, 35.1022],\n      [-106.29069, 35.10217],\n      [-106.29029, 35.10213],\n      [-106.28998, 35.10211],\n      [-106.28972, 35.10208],\n      [-106.28887, 35.10202],\n      [-106.28839, 35.10199],\n      [-106.28793, 35.10194],\n      [-106.28762, 35.1019],\n      [-106.28733, 35.10185],\n      [-106.28695, 35.10179],\n      [-106.28645, 35.10168],\n      [-106.28594, 35.10157],\n      [-106.28503, 35.1013],\n      [-106.28467, 35.10118],\n      [-106.28392, 35.10091],\n      [-106.28377, 35.10085],\n      [-106.28337, 35.10068],\n      [-106.28231, 35.10021],\n      [-106.28071, 35.09944],\n      [-106.27971, 35.09894],\n      [-106.27891, 35.09854],\n      [-106.27882, 35.09849],\n      [-106.27784, 35.09798],\n      [-106.27738, 35.09775],\n      [-106.27704, 35.09757],\n      [-106.27663, 35.09735],\n      [-106.27601, 35.09703],\n      [-106.27565, 35.09685],\n      [-106.27464, 35.09638],\n      [-106.27384, 35.09602],\n      [-106.27177, 35.0952],\n      [-106.27114, 35.09498],\n      [-106.27023, 35.09461],\n      [-106.26891, 35.09409],\n      [-106.26764, 35.09356],\n      [-106.26614, 35.09295],\n      [-106.26398, 35.09208],\n      [-106.26232, 35.0914],\n      [-106.26018, 35.09052],\n      [-106.25929, 35.09017],\n      [-106.25829, 35.08978],\n      [-106.25776, 35.08957],\n      [-106.2572, 35.08935],\n      [-106.25644, 35.08902],\n      [-106.25327, 35.08775],\n      [-106.25284, 35.08758],\n      [-106.25223, 35.08733],\n      [-106.25154, 35.08707],\n      [-106.25082, 35.08676],\n      [-106.25002, 35.08643],\n      [-106.24795, 35.08561],\n      [-106.24642, 35.08499],\n      [-106.2455, 35.0846],\n      [-106.24428, 35.08412],\n      [-106.24129, 35.08281],\n      [-106.2324, 35.0792],\n      [-106.22868, 35.07775],\n      [-106.21598, 35.07262],\n      [-106.20519, 35.06865],\n      [-106.19631, 35.0654],\n      [-106.19176, 35.06376],\n      [-106.19111, 35.06351],\n      [-106.18928, 35.06285],\n      [-106.18921, 35.06282],\n      [-106.18791, 35.06234],\n      [-106.18595, 35.06159],\n      [-106.17657, 35.05816],\n      [-106.17241, 35.05659],\n      [-106.16811, 35.0549],\n      [-106.1614, 35.0522],\n      [-106.15403, 35.0492],\n      [-106.13948, 35.04328],\n      [-106.12785, 35.03854],\n      [-106.12245, 35.0362],\n      [-106.11204, 35.03155],\n      [-106.09786, 35.02525],\n      [-106.08916, 35.02135],\n      [-106.08602, 35.01998],\n      [-106.08404, 35.01921],\n      [-106.07423, 35.01575],\n      [-106.07078, 35.01455],\n      [-106.06874, 35.01383],\n      [-106.06477, 35.01245],\n      [-106.06095, 35.01112],\n      [-106.05885, 35.01038],\n      [-106.05702, 35.00982],\n      [-106.05505, 35.00932],\n      [-106.05296, 35.00887],\n      [-106.05067, 35.00852],\n      [-106.04905, 35.00833],\n      [-106.0482, 35.00826],\n      [-106.0396, 35.00775],\n      [-106.03719, 35.00762],\n      [-106.02747, 35.00706],\n      [-106.0257, 35.00693],\n      [-106.02348, 35.00657],\n      [-106.01614, 35.00485],\n      [-106.01474, 35.00466],\n      [-106.01228, 35.00444],\n      [-106.00401, 35.0045],\n      [-106.00283, 35.0045],\n      [-105.98791, 35.00452],\n      [-105.9794, 35.00457],\n      [-105.97329, 35.00458],\n      [-105.95886, 35.00459],\n      [-105.94461, 35.00464],\n      [-105.94044, 35.00468],\n      [-105.93825, 35.0048],\n      [-105.93569, 35.00508],\n      [-105.93359, 35.00541],\n      [-105.93118, 35.00583],\n      [-105.92901, 35.00622],\n      [-105.92748, 35.0064],\n      [-105.92511, 35.0066],\n      [-105.92329, 35.00666],\n      [-105.91757, 35.00652],\n      [-105.91112, 35.00637],\n      [-105.90965, 35.00633],\n      [-105.89977, 35.00609],\n      [-105.88633, 35.00572],\n      [-105.87278, 35.00536],\n      [-105.86495, 35.00516],\n      [-105.86155, 35.0051],\n      [-105.8588, 35.00513],\n      [-105.85549, 35.00513],\n      [-105.8472, 35.00513],\n      [-105.84469, 35.00513],\n      [-105.8313, 35.00504],\n      [-105.829, 35.00502],\n      [-105.82047, 35.00496],\n      [-105.81868, 35.00494],\n      [-105.81219, 35.00487],\n      [-105.79839, 35.00475],\n      [-105.78464, 35.00463],\n      [-105.77088, 35.00449],\n      [-105.75714, 35.00437],\n      [-105.74343, 35.00424],\n      [-105.73052, 35.00412],\n      [-105.7234, 35.00405],\n      [-105.72192, 35.0042],\n      [-105.72034, 35.00459],\n      [-105.7168, 35.00632],\n      [-105.7128, 35.00849],\n      [-105.71155, 35.00914],\n      [-105.71023, 35.00967],\n      [-105.7087, 35.01011],\n      [-105.70775, 35.01034],\n      [-105.70607, 35.01053],\n      [-105.70379, 35.0105],\n      [-105.69996, 35.01027],\n      [-105.69459, 35.00998],\n      [-105.68918, 35.00967],\n      [-105.67579, 35.00889],\n      [-105.6746, 35.00883],\n      [-105.67332, 35.00879],\n      [-105.67125, 35.00868],\n      [-105.66922, 35.00856],\n      [-105.66584, 35.00837],\n      [-105.66286, 35.00819],\n      [-105.66078, 35.00808],\n      [-105.65873, 35.00796],\n      [-105.65056, 35.00745],\n      [-105.6378, 35.0067],\n      [-105.6262, 35.00604],\n      [-105.6222, 35.0058],\n      [-105.61539, 35.00538],\n      [-105.60123, 35.00457],\n      [-105.58762, 35.00374],\n      [-105.57374, 35.00297],\n      [-105.55966, 35.00213],\n      [-105.55588, 35.00189],\n      [-105.555, 35.00183],\n      [-105.55418, 35.00181],\n      [-105.55338, 35.00185],\n      [-105.55233, 35.00194],\n      [-105.5516, 35.00201],\n      [-105.55068, 35.00218],\n      [-105.54997, 35.00234],\n      [-105.54918, 35.00256],\n      [-105.54797, 35.00296],\n      [-105.54676, 35.0035],\n      [-105.54579, 35.00402],\n      [-105.54467, 35.00457],\n      [-105.54371, 35.005],\n      [-105.54264, 35.00541],\n      [-105.54173, 35.00561],\n      [-105.54009, 35.00579],\n      [-105.53307, 35.00619],\n      [-105.5318, 35.00621],\n      [-105.53024, 35.00622],\n      [-105.52844, 35.00615],\n      [-105.52462, 35.00596],\n      [-105.5162, 35.00556],\n      [-105.50235, 35.00484],\n      [-105.49607, 35.00454],\n      [-105.49422, 35.00441],\n      [-105.49248, 35.0042],\n      [-105.48959, 35.00374],\n      [-105.47564, 35.00154],\n      [-105.47149, 35.0009],\n      [-105.46413, 34.99974],\n      [-105.46237, 34.99954],\n      [-105.46189, 34.99949],\n      [-105.46136, 34.99945],\n      [-105.46036, 34.99938],\n      [-105.45861, 34.9993],\n      [-105.45681, 34.99921],\n      [-105.45238, 34.99901],\n      [-105.44797, 34.9988],\n      [-105.44414, 34.99862],\n      [-105.44277, 34.99855],\n      [-105.44163, 34.9985],\n      [-105.44045, 34.99844],\n      [-105.4384, 34.99835],\n      [-105.43639, 34.99825],\n      [-105.42989, 34.99794],\n      [-105.42664, 34.99778],\n      [-105.42343, 34.99763],\n      [-105.42036, 34.99748],\n      [-105.41724, 34.99733],\n      [-105.4111, 34.99705],\n      [-105.40936, 34.99696],\n      [-105.4024, 34.99663],\n      [-105.3955, 34.9963],\n      [-105.386, 34.99584],\n      [-105.38312, 34.9957],\n      [-105.38164, 34.99563],\n      [-105.38012, 34.99556],\n      [-105.37707, 34.9954],\n      [-105.37143, 34.99514],\n      [-105.35754, 34.99446],\n      [-105.34331, 34.99378],\n      [-105.33112, 34.9932],\n      [-105.31736, 34.99251],\n      [-105.30399, 34.99188],\n      [-105.29802, 34.99159],\n      [-105.29195, 34.99131],\n      [-105.28933, 34.99116],\n      [-105.28709, 34.99103],\n      [-105.26194, 34.98979],\n      [-105.23362, 34.98841],\n      [-105.22442, 34.988],\n      [-105.21865, 34.98772],\n      [-105.21729, 34.98763],\n      [-105.20592, 34.98709],\n      [-105.1782, 34.98568],\n      [-105.16763, 34.98522],\n      [-105.15088, 34.98439],\n      [-105.12314, 34.98299],\n      [-105.09554, 34.98158],\n      [-105.09006, 34.98136],\n      [-105.0889, 34.98132],\n      [-105.08719, 34.98123],\n      [-105.07938, 34.98083],\n      [-105.07873, 34.98079],\n      [-105.06993, 34.98033],\n      [-105.06261, 34.97998],\n      [-105.05814, 34.97968],\n      [-105.03061, 34.97826],\n      [-105.00737, 34.97714],\n      [-105.00042, 34.9768],\n      [-104.99596, 34.97657],\n      [-104.99491, 34.97652],\n      [-104.98723, 34.97613],\n      [-104.98351, 34.97593],\n      [-104.97982, 34.97574],\n      [-104.95487, 34.97442],\n      [-104.92776, 34.97302],\n      [-104.89946, 34.97155],\n      [-104.87369, 34.97023],\n      [-104.87138, 34.97017],\n      [-104.86497, 34.96984],\n      [-104.85908, 34.96946],\n      [-104.8399, 34.96925],\n      [-104.81193, 34.96898],\n      [-104.79513, 34.96882],\n      [-104.78796, 34.96875],\n      [-104.7874, 34.96871],\n      [-104.78596, 34.96856],\n      [-104.78431, 34.96827],\n      [-104.77989, 34.96723],\n      [-104.7774, 34.96676],\n      [-104.77595, 34.9666],\n      [-104.76862, 34.96652],\n      [-104.76722, 34.96645],\n      [-104.75423, 34.96524],\n      [-104.74605, 34.96437],\n      [-104.74427, 34.96412],\n      [-104.74176, 34.96358],\n      [-104.73863, 34.96268],\n      [-104.73623, 34.96179],\n      [-104.72434, 34.95514],\n      [-104.71776, 34.95129],\n      [-104.71743, 34.95109],\n      [-104.71297, 34.94849],\n      [-104.71155, 34.94769],\n      [-104.71031, 34.9471],\n      [-104.70995, 34.94695],\n      [-104.70892, 34.94655],\n      [-104.70787, 34.9462],\n      [-104.70665, 34.94588],\n      [-104.70616, 34.94577],\n      [-104.70562, 34.94566],\n      [-104.705, 34.94556],\n      [-104.70443, 34.94547],\n      [-104.70365, 34.94537],\n      [-104.70179, 34.94522],\n      [-104.69921, 34.94531],\n      [-104.69525, 34.94599],\n      [-104.6871, 34.9477],\n      [-104.68667, 34.94778],\n      [-104.68414, 34.94836],\n      [-104.68355, 34.94847],\n      [-104.68314, 34.9485],\n      [-104.68252, 34.94849],\n      [-104.68181, 34.94842],\n      [-104.68113, 34.9483],\n      [-104.68032, 34.94809],\n      [-104.67967, 34.94783],\n      [-104.6789, 34.94745],\n      [-104.67828, 34.94713],\n      [-104.67344, 34.94482],\n      [-104.67262, 34.94445],\n      [-104.67135, 34.94389],\n      [-104.67072, 34.94368],\n      [-104.67002, 34.94351],\n      [-104.6694, 34.94339],\n      [-104.66892, 34.94333],\n      [-104.66863, 34.94329],\n      [-104.668, 34.94324],\n      [-104.66739, 34.9432],\n      [-104.66679, 34.94323],\n      [-104.66624, 34.94326],\n      [-104.66574, 34.94332],\n      [-104.66464, 34.94351],\n      [-104.64851, 34.94628],\n      [-104.64478, 34.94689],\n      [-104.64194, 34.94753],\n      [-104.6413, 34.94769],\n      [-104.64032, 34.94795],\n      [-104.63875, 34.94842],\n      [-104.63782, 34.94875],\n      [-104.63669, 34.94915],\n      [-104.635, 34.94987],\n      [-104.6285, 34.95292],\n      [-104.62214, 34.95596],\n      [-104.61236, 34.96061],\n      [-104.60261, 34.96533],\n      [-104.59962, 34.96676],\n      [-104.59203, 34.9704],\n      [-104.58736, 34.97263],\n      [-104.57838, 34.97693],\n      [-104.56947, 34.98119],\n      [-104.55486, 34.98819],\n      [-104.5435, 34.99361],\n      [-104.54049, 34.99505],\n      [-104.53284, 34.99878],\n      [-104.523, 35.00348],\n      [-104.52269, 35.00363],\n      [-104.5185, 35.00561],\n      [-104.51762, 35.006],\n      [-104.51595, 35.00665],\n      [-104.5146, 35.00705],\n      [-104.50671, 35.009],\n      [-104.50221, 35.01017],\n      [-104.4986, 35.01106],\n      [-104.49745, 35.01127],\n      [-104.49631, 35.01141],\n      [-104.49514, 35.0115],\n      [-104.49416, 35.01152],\n      [-104.4924, 35.0115],\n      [-104.4781, 35.01129],\n      [-104.46726, 35.01115],\n      [-104.46639, 35.01117],\n      [-104.4658, 35.01121],\n      [-104.46522, 35.01128],\n      [-104.46455, 35.01139],\n      [-104.46255, 35.01181],\n      [-104.45719, 35.0129],\n      [-104.44695, 35.01501],\n      [-104.44476, 35.01565],\n      [-104.44357, 35.01614],\n      [-104.44231, 35.01659],\n      [-104.44093, 35.01715],\n      [-104.43944, 35.01779],\n      [-104.43242, 35.02096],\n      [-104.42546, 35.02408],\n      [-104.41731, 35.02767],\n      [-104.41539, 35.02857],\n      [-104.4123, 35.02991],\n      [-104.41202, 35.03004],\n      [-104.40495, 35.03304],\n      [-104.39933, 35.03551],\n      [-104.39774, 35.03626],\n      [-104.39685, 35.0367],\n      [-104.39444, 35.03796],\n      [-104.38901, 35.04087],\n      [-104.38331, 35.0439],\n      [-104.37915, 35.04612],\n      [-104.378, 35.04671],\n      [-104.37727, 35.047],\n      [-104.37658, 35.04723],\n      [-104.37574, 35.04744],\n      [-104.37498, 35.04756],\n      [-104.37336, 35.04775],\n      [-104.36483, 35.04868],\n      [-104.34888, 35.05054],\n      [-104.33886, 35.05172],\n      [-104.33672, 35.05207],\n      [-104.33492, 35.05249],\n      [-104.32831, 35.05428],\n      [-104.31678, 35.0575],\n      [-104.30357, 35.06106],\n      [-104.30155, 35.06157],\n      [-104.2997, 35.06194],\n      [-104.29777, 35.06226],\n      [-104.29419, 35.06264],\n      [-104.28638, 35.06343],\n      [-104.277, 35.06445],\n      [-104.27252, 35.06496],\n      [-104.27091, 35.06513],\n      [-104.26772, 35.06548],\n      [-104.26321, 35.06596],\n      [-104.25985, 35.06632],\n      [-104.2593, 35.06637],\n      [-104.25222, 35.06713],\n      [-104.2421, 35.0682],\n      [-104.23446, 35.06902],\n      [-104.22801, 35.06968],\n      [-104.22612, 35.06983],\n      [-104.22371, 35.06997],\n      [-104.22118, 35.07003],\n      [-104.21953, 35.06997],\n      [-104.21743, 35.06985],\n      [-104.2123, 35.06924],\n      [-104.21193, 35.0692],\n      [-104.18999, 35.06644],\n      [-104.18792, 35.06627],\n      [-104.18659, 35.06623],\n      [-104.1837, 35.06618],\n      [-104.18018, 35.06644],\n      [-104.17848, 35.06665],\n      [-104.17683, 35.0669],\n      [-104.17535, 35.0672],\n      [-104.15915, 35.07126],\n      [-104.14799, 35.07407],\n      [-104.13837, 35.07644],\n      [-104.12785, 35.07905],\n      [-104.11927, 35.08112],\n      [-104.10769, 35.08409],\n      [-104.10325, 35.08519],\n      [-104.09713, 35.0867],\n      [-104.09347, 35.08761],\n      [-104.08798, 35.08896],\n      [-104.08426, 35.08988],\n      [-104.07713, 35.09164],\n      [-104.07649, 35.09179],\n      [-104.07612, 35.09189],\n      [-104.07294, 35.09265],\n      [-104.07221, 35.09282],\n      [-104.07052, 35.09314],\n      [-104.06929, 35.09325],\n      [-104.06463, 35.09354],\n      [-104.06313, 35.09377],\n      [-104.06149, 35.09419],\n      [-104.05982, 35.0948],\n      [-104.0589, 35.09524],\n      [-104.05169, 35.0987],\n      [-104.05027, 35.09928],\n      [-104.04909, 35.0997],\n      [-104.04746, 35.10014],\n      [-104.03768, 35.10276],\n      [-104.0227, 35.10674],\n      [-104.00491, 35.1115],\n      [-103.98622, 35.1165],\n      [-103.96816, 35.12132],\n      [-103.96783, 35.12141],\n      [-103.96663, 35.12173],\n      [-103.96118, 35.1232],\n      [-103.95712, 35.12437],\n      [-103.95534, 35.12485],\n      [-103.95322, 35.12523],\n      [-103.95097, 35.12556],\n      [-103.94731, 35.1258],\n      [-103.94466, 35.12584],\n      [-103.94318, 35.12576],\n      [-103.94103, 35.12559],\n      [-103.93852, 35.12527],\n      [-103.9272, 35.12368],\n      [-103.91519, 35.12188],\n      [-103.90423, 35.12035],\n      [-103.89898, 35.11955],\n      [-103.89728, 35.11931],\n      [-103.89025, 35.11829],\n      [-103.88886, 35.11811],\n      [-103.88178, 35.11709],\n      [-103.875, 35.11606],\n      [-103.87403, 35.11596],\n      [-103.87321, 35.11594],\n      [-103.87208, 35.11601],\n      [-103.87017, 35.11634],\n      [-103.86937, 35.11655],\n      [-103.869, 35.11666],\n      [-103.86858, 35.11679],\n      [-103.86818, 35.11692],\n      [-103.86776, 35.11709],\n      [-103.86745, 35.11721],\n      [-103.86714, 35.11735],\n      [-103.86678, 35.11752],\n      [-103.86632, 35.11776],\n      [-103.86564, 35.11813],\n      [-103.86512, 35.11842],\n      [-103.86082, 35.12077],\n      [-103.85901, 35.12166],\n      [-103.84858, 35.12741],\n      [-103.83189, 35.13663],\n      [-103.82842, 35.13854],\n      [-103.82759, 35.13899],\n      [-103.82727, 35.13916],\n      [-103.82695, 35.13932],\n      [-103.8266, 35.1395],\n      [-103.82624, 35.13966],\n      [-103.82586, 35.13983],\n      [-103.82549, 35.13999],\n      [-103.8251, 35.14014],\n      [-103.82468, 35.1403],\n      [-103.82431, 35.14042],\n      [-103.82388, 35.14056],\n      [-103.82343, 35.1407],\n      [-103.82287, 35.14086],\n      [-103.82007, 35.14159],\n      [-103.81696, 35.1424],\n      [-103.81149, 35.14383],\n      [-103.80821, 35.14467],\n      [-103.80585, 35.14528],\n      [-103.80298, 35.14604],\n      [-103.80124, 35.14649],\n      [-103.8008, 35.14659],\n      [-103.80039, 35.14668],\n      [-103.79993, 35.14677],\n      [-103.79934, 35.14687],\n      [-103.79902, 35.14691],\n      [-103.79836, 35.14701],\n      [-103.79484, 35.14743],\n      [-103.79434, 35.14749],\n      [-103.79196, 35.14779],\n      [-103.79079, 35.14794],\n      [-103.79024, 35.14801],\n      [-103.78522, 35.14865],\n      [-103.78389, 35.14882],\n      [-103.78351, 35.14887],\n      [-103.78317, 35.14892],\n      [-103.78287, 35.14897],\n      [-103.7827, 35.149],\n      [-103.78241, 35.14905],\n      [-103.78218, 35.1491],\n      [-103.78193, 35.14915],\n      [-103.78169, 35.1492],\n      [-103.78146, 35.14926],\n      [-103.78122, 35.14931],\n      [-103.78096, 35.14938],\n      [-103.78066, 35.14946],\n      [-103.78042, 35.14953],\n      [-103.78016, 35.14961],\n      [-103.77991, 35.14968],\n      [-103.77969, 35.14975],\n      [-103.77946, 35.14983],\n      [-103.77925, 35.1499],\n      [-103.779, 35.14998],\n      [-103.77874, 35.15008],\n      [-103.77847, 35.15019],\n      [-103.77813, 35.15033],\n      [-103.77777, 35.15048],\n      [-103.77732, 35.15068],\n      [-103.77685, 35.1509],\n      [-103.77648, 35.15109],\n      [-103.77604, 35.15132],\n      [-103.77528, 35.15171],\n      [-103.77161, 35.15359],\n      [-103.76907, 35.1549],\n      [-103.76842, 35.15524],\n      [-103.76816, 35.15538],\n      [-103.76792, 35.1555],\n      [-103.76768, 35.15561],\n      [-103.76747, 35.1557],\n      [-103.76723, 35.15581],\n      [-103.76699, 35.15591],\n      [-103.76676, 35.15599],\n      [-103.76653, 35.15607],\n      [-103.76628, 35.15615],\n      [-103.76601, 35.15623],\n      [-103.76573, 35.15631],\n      [-103.76549, 35.15636],\n      [-103.76522, 35.15642],\n      [-103.765, 35.15646],\n      [-103.76479, 35.1565],\n      [-103.76456, 35.15654],\n      [-103.76434, 35.15657],\n      [-103.76414, 35.1566],\n      [-103.76393, 35.15662],\n      [-103.76374, 35.15663],\n      [-103.76354, 35.15664],\n      [-103.76335, 35.15665],\n      [-103.76306, 35.15665],\n      [-103.76279, 35.15664],\n      [-103.76257, 35.15664],\n      [-103.76235, 35.15663],\n      [-103.76211, 35.15661],\n      [-103.76187, 35.15659],\n      [-103.76168, 35.15657],\n      [-103.76155, 35.15656],\n      [-103.76138, 35.15653],\n      [-103.76124, 35.15651],\n      [-103.76103, 35.15648],\n      [-103.76082, 35.15644],\n      [-103.76055, 35.15639],\n      [-103.76035, 35.15634],\n      [-103.76015, 35.1563],\n      [-103.75995, 35.15625],\n      [-103.75974, 35.15619],\n      [-103.7596, 35.15615],\n      [-103.75471, 35.15461],\n      [-103.75327, 35.15415],\n      [-103.75146, 35.15359],\n      [-103.74906, 35.15284],\n      [-103.74795, 35.1525],\n      [-103.74726, 35.15231],\n      [-103.7468, 35.15218],\n      [-103.74632, 35.15207],\n      [-103.74598, 35.152],\n      [-103.74541, 35.15189],\n      [-103.74478, 35.15179],\n      [-103.74442, 35.15173],\n      [-103.74401, 35.15168],\n      [-103.74363, 35.15163],\n      [-103.74323, 35.15159],\n      [-103.74278, 35.15156],\n      [-103.74231, 35.15153],\n      [-103.74188, 35.15152],\n      [-103.74145, 35.15151],\n      [-103.7391, 35.15149],\n      [-103.7311, 35.15144],\n      [-103.72534, 35.1514],\n      [-103.72466, 35.1514],\n      [-103.71873, 35.15136],\n      [-103.71767, 35.15136],\n      [-103.7172, 35.15136],\n      [-103.71666, 35.15138],\n      [-103.71619, 35.1514],\n      [-103.71576, 35.15143],\n      [-103.71539, 35.15146],\n      [-103.71505, 35.15149],\n      [-103.71475, 35.15153],\n      [-103.71437, 35.15158],\n      [-103.71403, 35.15163],\n      [-103.71365, 35.15168],\n      [-103.71324, 35.15176],\n      [-103.71279, 35.15185],\n      [-103.71242, 35.15192],\n      [-103.71195, 35.15203],\n      [-103.71157, 35.15213],\n      [-103.71118, 35.15224],\n      [-103.71076, 35.15237],\n      [-103.71016, 35.15256],\n      [-103.70961, 35.15275],\n      [-103.70926, 35.15289],\n      [-103.70902, 35.15299],\n      [-103.70876, 35.15309],\n      [-103.70847, 35.15322],\n      [-103.70774, 35.15354],\n      [-103.70662, 35.15405],\n      [-103.70632, 35.15419],\n      [-103.69765, 35.15824],\n      [-103.69632, 35.15887],\n      [-103.6946, 35.15966],\n      [-103.6882, 35.16263],\n      [-103.68657, 35.1634],\n      [-103.68609, 35.16364],\n      [-103.68568, 35.16385],\n      [-103.68543, 35.16399],\n      [-103.68516, 35.16414],\n      [-103.68483, 35.16433],\n      [-103.68443, 35.16459],\n      [-103.68409, 35.16481],\n      [-103.68242, 35.16592],\n      [-103.68157, 35.1665],\n      [-103.6806, 35.16715],\n      [-103.67895, 35.16826],\n      [-103.67854, 35.16853],\n      [-103.67819, 35.16875],\n      [-103.6779, 35.16895],\n      [-103.67764, 35.16911],\n      [-103.67741, 35.16924],\n      [-103.67705, 35.16946],\n      [-103.67661, 35.1697],\n      [-103.6763, 35.16985],\n      [-103.67607, 35.16997],\n      [-103.67582, 35.17009],\n      [-103.67545, 35.17026],\n      [-103.67497, 35.17047],\n      [-103.67441, 35.1707],\n      [-103.67405, 35.17084],\n      [-103.6737, 35.17096],\n      [-103.67323, 35.17111],\n      [-103.6728, 35.17125],\n      [-103.67248, 35.17134],\n      [-103.67217, 35.17142],\n      [-103.67183, 35.17151],\n      [-103.67124, 35.17164],\n      [-103.67081, 35.17173],\n      [-103.67057, 35.17177],\n      [-103.67001, 35.17187],\n      [-103.66966, 35.17193],\n      [-103.66939, 35.17197],\n      [-103.66886, 35.17203],\n      [-103.66841, 35.17207],\n      [-103.66802, 35.1721],\n      [-103.66759, 35.17213],\n      [-103.66708, 35.17215],\n      [-103.66665, 35.17216],\n      [-103.66624, 35.17217],\n      [-103.66382, 35.17218],\n      [-103.64896, 35.17224],\n      [-103.63683, 35.1723],\n      [-103.62824, 35.17232],\n      [-103.62464, 35.17234],\n      [-103.61927, 35.17237],\n      [-103.61881, 35.17237],\n      [-103.61378, 35.17239],\n      [-103.61363, 35.17239],\n      [-103.59036, 35.17249],\n      [-103.57829, 35.17257],\n      [-103.57792, 35.17259],\n      [-103.57151, 35.17284],\n      [-103.56346, 35.17323],\n      [-103.55743, 35.17335],\n      [-103.54548, 35.1731],\n      [-103.52966, 35.17314],\n      [-103.52053, 35.17318],\n      [-103.50054, 35.17324],\n      [-103.49711, 35.17324],\n      [-103.49088, 35.17327],\n      [-103.48984, 35.17323],\n      [-103.48812, 35.17304],\n      [-103.48624, 35.17273],\n      [-103.48451, 35.17226],\n      [-103.48344, 35.17186],\n      [-103.48232, 35.17142],\n      [-103.48085, 35.17073],\n      [-103.47882, 35.1694],\n      [-103.47648, 35.16801],\n      [-103.47447, 35.16673],\n      [-103.46834, 35.16282],\n      [-103.46265, 35.15919],\n      [-103.45878, 35.15678],\n      [-103.45529, 35.1546],\n      [-103.45427, 35.15383],\n      [-103.45254, 35.15255],\n      [-103.44831, 35.1501],\n      [-103.4453, 35.14819],\n      [-103.44386, 35.14735],\n      [-103.44253, 35.14666],\n      [-103.44048, 35.14582],\n      [-103.43763, 35.14465],\n      [-103.43722, 35.14449],\n      [-103.43008, 35.14143],\n      [-103.42519, 35.1394],\n      [-103.42016, 35.13737],\n      [-103.41973, 35.1372],\n      [-103.41146, 35.13385],\n      [-103.40601, 35.13174],\n      [-103.40315, 35.13056],\n      [-103.40053, 35.12949],\n      [-103.39824, 35.12856],\n      [-103.39202, 35.126],\n      [-103.38967, 35.12506],\n      [-103.38318, 35.12239],\n      [-103.37551, 35.11924],\n      [-103.36367, 35.11441],\n      [-103.36132, 35.11344],\n      [-103.36102, 35.11333],\n      [-103.36075, 35.11322],\n      [-103.3604, 35.11308],\n      [-103.3601, 35.11297],\n      [-103.35981, 35.11287],\n      [-103.35951, 35.11277],\n      [-103.3592, 35.11267],\n      [-103.35891, 35.11258],\n      [-103.35861, 35.11249],\n      [-103.35827, 35.1124],\n      [-103.3579, 35.1123],\n      [-103.35758, 35.11223],\n      [-103.35719, 35.11214],\n      [-103.35677, 35.11206],\n      [-103.35635, 35.11198],\n      [-103.35597, 35.11192],\n      [-103.35557, 35.11186],\n      [-103.35504, 35.11179],\n      [-103.35457, 35.11174],\n      [-103.3541, 35.1117],\n      [-103.35367, 35.11167],\n      [-103.35325, 35.11165],\n      [-103.35282, 35.11164],\n      [-103.35229, 35.11163],\n      [-103.35173, 35.11164],\n      [-103.34512, 35.11174],\n      [-103.33647, 35.11188],\n      [-103.33468, 35.1119],\n      [-103.33141, 35.11196],\n      [-103.33082, 35.11197],\n      [-103.32658, 35.11203],\n      [-103.32553, 35.11205],\n      [-103.32154, 35.11211],\n      [-103.31631, 35.11219],\n      [-103.31354, 35.11223],\n      [-103.31052, 35.11228],\n      [-103.30653, 35.11234],\n      [-103.30612, 35.11234],\n      [-103.29617, 35.11249],\n      [-103.29112, 35.11258],\n      [-103.28762, 35.11263],\n      [-103.28546, 35.11276],\n      [-103.28339, 35.11297],\n      [-103.28168, 35.11321],\n      [-103.27939, 35.11364],\n      [-103.27753, 35.11408],\n      [-103.27509, 35.1147],\n      [-103.26999, 35.11622],\n      [-103.25301, 35.12103],\n      [-103.25051, 35.12177],\n      [-103.24909, 35.1222],\n      [-103.24628, 35.12306],\n      [-103.24321, 35.12421],\n      [-103.23862, 35.12599],\n      [-103.23839, 35.1261],\n      [-103.2362, 35.12714],\n      [-103.23015, 35.12988],\n      [-103.22657, 35.13134],\n      [-103.20926, 35.13731],\n      [-103.17417, 35.14931],\n      [-103.15233, 35.15683],\n      [-103.13831, 35.16163],\n      [-103.12627, 35.16577],\n      [-103.12127, 35.16746],\n      [-103.11769, 35.16847],\n      [-103.10892, 35.17081],\n      [-103.10859, 35.1709],\n      [-103.10743, 35.1712],\n      [-103.10506, 35.17182],\n      [-103.10322, 35.17231],\n      [-103.10166, 35.17275],\n      [-103.10071, 35.17304],\n      [-103.09849, 35.17375],\n      [-103.09638, 35.17443],\n      [-103.09417, 35.17509],\n      [-103.08112, 35.17933],\n      [-103.07551, 35.18115],\n      [-103.07311, 35.18181],\n      [-103.07054, 35.18232],\n      [-103.06881, 35.18262],\n      [-103.06715, 35.18286],\n      [-103.06587, 35.18299],\n      [-103.06379, 35.18313],\n      [-103.06155, 35.18316],\n      [-103.05775, 35.18299],\n      [-103.0569, 35.18296],\n      [-103.04246, 35.1824],\n      [-103.03945, 35.18229],\n      [-103.03854, 35.18223],\n      [-103.03726, 35.18214],\n      [-103.03583, 35.18198],\n      [-103.02806, 35.18093],\n      [-103.02726, 35.18087],\n      [-103.02596, 35.18083],\n      [-103.02503, 35.18084],\n      [-103.02383, 35.18091],\n      [-103.02035, 35.18132],\n      [-103.01793, 35.1816],\n      [-103.01544, 35.18189],\n      [-103.00958, 35.18257],\n      [-103.0083, 35.18271],\n      [-103.00486, 35.18311],\n      [-103.00426, 35.18318],\n      [-103.00122, 35.18354],\n      [-103.00035, 35.18363],\n      [-103.00031, 35.18363],\n      [-102.99262, 35.18452],\n      [-102.9899, 35.18483],\n      [-102.98904, 35.18494],\n      [-102.98747, 35.18514],\n      [-102.98642, 35.1853],\n      [-102.9856, 35.18547],\n      [-102.98397, 35.18587],\n      [-102.98258, 35.18629],\n      [-102.98132, 35.18673],\n      [-102.97691, 35.1883],\n      [-102.97394, 35.18935],\n      [-102.97137, 35.19026],\n      [-102.9679, 35.19151],\n      [-102.96299, 35.19324],\n      [-102.96018, 35.19427],\n      [-102.95754, 35.19519],\n      [-102.95547, 35.19588],\n      [-102.95314, 35.19672],\n      [-102.95075, 35.19759],\n      [-102.94821, 35.19848],\n      [-102.94513, 35.19955],\n      [-102.94298, 35.20033],\n      [-102.94223, 35.2006],\n      [-102.94147, 35.20091],\n      [-102.94089, 35.20118],\n      [-102.939, 35.20203],\n      [-102.93449, 35.20407],\n      [-102.93067, 35.2058],\n      [-102.92567, 35.20806],\n      [-102.92387, 35.20888],\n      [-102.92129, 35.21005],\n      [-102.91935, 35.21093],\n      [-102.9178, 35.21162],\n      [-102.91638, 35.21227],\n      [-102.91017, 35.21507],\n      [-102.90862, 35.21576],\n      [-102.90778, 35.21605],\n      [-102.90679, 35.21632],\n      [-102.90396, 35.21703],\n      [-102.89905, 35.21824],\n      [-102.8895, 35.22061],\n      [-102.88643, 35.22137],\n      [-102.87955, 35.22308],\n      [-102.87534, 35.22411],\n      [-102.87246, 35.22482],\n      [-102.86883, 35.22571],\n      [-102.86795, 35.22595],\n      [-102.86734, 35.22613],\n      [-102.86658, 35.22639],\n      [-102.8626, 35.22784],\n      [-102.85871, 35.22922],\n      [-102.85399, 35.23093],\n      [-102.85254, 35.23145],\n      [-102.84944, 35.23255],\n      [-102.84459, 35.2343],\n      [-102.84136, 35.23548],\n      [-102.83807, 35.23666],\n      [-102.83752, 35.23686],\n      [-102.83709, 35.23701],\n      [-102.83496, 35.23777],\n      [-102.83235, 35.23872],\n      [-102.83163, 35.23894],\n      [-102.82518, 35.24128],\n      [-102.82389, 35.24174],\n      [-102.81921, 35.24342],\n      [-102.81821, 35.24379],\n      [-102.81732, 35.24408],\n      [-102.81668, 35.24425],\n      [-102.81579, 35.24444],\n      [-102.8149, 35.24459],\n      [-102.81403, 35.24469],\n      [-102.81264, 35.2448],\n      [-102.81178, 35.24488],\n      [-102.81083, 35.24494],\n      [-102.80934, 35.2451],\n      [-102.80687, 35.24529],\n      [-102.80562, 35.24539],\n      [-102.80483, 35.24545],\n      [-102.80343, 35.2456],\n      [-102.80253, 35.24566],\n      [-102.80161, 35.24573],\n      [-102.80086, 35.2458],\n      [-102.80034, 35.24589],\n      [-102.79962, 35.24606],\n      [-102.79728, 35.24676],\n      [-102.79584, 35.24715],\n      [-102.79476, 35.24749],\n      [-102.79249, 35.24809],\n      [-102.79166, 35.24834],\n      [-102.79139, 35.24843],\n      [-102.79089, 35.24859],\n      [-102.78917, 35.24908],\n      [-102.78886, 35.24916],\n      [-102.7886, 35.24923],\n      [-102.78747, 35.24953],\n      [-102.78675, 35.24965],\n      [-102.78469, 35.24993],\n      [-102.78268, 35.25018],\n      [-102.77994, 35.2506],\n      [-102.77882, 35.25076],\n      [-102.77749, 35.25095],\n      [-102.77668, 35.2511],\n      [-102.77588, 35.25129],\n      [-102.7749, 35.25155],\n      [-102.77402, 35.25183],\n      [-102.77323, 35.25212],\n      [-102.7722, 35.25256],\n      [-102.7709, 35.25316],\n      [-102.77039, 35.25339],\n      [-102.76573, 35.2555],\n      [-102.76288, 35.25678],\n      [-102.76194, 35.25722],\n      [-102.76114, 35.25757],\n      [-102.76032, 35.2579],\n      [-102.75963, 35.25816],\n      [-102.75788, 35.25879],\n      [-102.75458, 35.25996],\n      [-102.75245, 35.26071],\n      [-102.75113, 35.26118],\n      [-102.75034, 35.26145],\n      [-102.74911, 35.26189],\n      [-102.74866, 35.26205],\n      [-102.74791, 35.26231],\n      [-102.74695, 35.26264],\n      [-102.74516, 35.26328],\n      [-102.74372, 35.26379],\n      [-102.74326, 35.26395],\n      [-102.74016, 35.26503],\n      [-102.73883, 35.2655],\n      [-102.73725, 35.26607],\n      [-102.73569, 35.26661],\n      [-102.73436, 35.26709],\n      [-102.7332, 35.26747],\n      [-102.73148, 35.26799],\n      [-102.7306, 35.26822],\n      [-102.72981, 35.26842],\n      [-102.72902, 35.2686],\n      [-102.72774, 35.26885],\n      [-102.72667, 35.26904],\n      [-102.72589, 35.26915],\n      [-102.72508, 35.26926],\n      [-102.72399, 35.26939],\n      [-102.72339, 35.26945],\n      [-102.72231, 35.26954],\n      [-102.7216, 35.26958],\n      [-102.71961, 35.26964],\n      [-102.7177, 35.2697],\n      [-102.71506, 35.26978],\n      [-102.68547, 35.27064],\n      [-102.68463, 35.27064],\n      [-102.6833, 35.27056],\n      [-102.68269, 35.2705],\n      [-102.68222, 35.27044],\n      [-102.68161, 35.27036],\n      [-102.6808, 35.27021],\n      [-102.67962, 35.26997],\n      [-102.67878, 35.2698],\n      [-102.67805, 35.26968],\n      [-102.67709, 35.26955],\n      [-102.67664, 35.2695],\n      [-102.6759, 35.26945],\n      [-102.67472, 35.26941],\n      [-102.66682, 35.26963],\n      [-102.66654, 35.26963],\n      [-102.66245, 35.26975],\n      [-102.66024, 35.26982],\n      [-102.65833, 35.26987],\n      [-102.6564, 35.26994],\n      [-102.6552, 35.26996],\n      [-102.65437, 35.27002],\n      [-102.65354, 35.27011],\n      [-102.65289, 35.27019],\n      [-102.65121, 35.2705],\n      [-102.65043, 35.27071],\n      [-102.64959, 35.27094],\n      [-102.64923, 35.27104],\n      [-102.64882, 35.27115],\n      [-102.6482, 35.2713],\n      [-102.64729, 35.27147],\n      [-102.64678, 35.27156],\n      [-102.6458, 35.27169],\n      [-102.64497, 35.27177],\n      [-102.64431, 35.27181],\n      [-102.64278, 35.27185],\n      [-102.64016, 35.27193],\n      [-102.6357, 35.27207],\n      [-102.63291, 35.27214],\n      [-102.63136, 35.27219],\n      [-102.62643, 35.27234],\n      [-102.62534, 35.27235],\n      [-102.62243, 35.27245],\n      [-102.61509, 35.27266],\n      [-102.60844, 35.27284],\n      [-102.6002, 35.2731],\n      [-102.59636, 35.27319],\n      [-102.59133, 35.27335],\n      [-102.58779, 35.27347],\n      [-102.58599, 35.27346],\n      [-102.58429, 35.2734],\n      [-102.58421, 35.27339],\n      [-102.58297, 35.27331],\n      [-102.58175, 35.27319],\n      [-102.5801, 35.27298],\n      [-102.57857, 35.27274],\n      [-102.56515, 35.27019],\n      [-102.56486, 35.27014],\n      [-102.56396, 35.26993],\n      [-102.56273, 35.26961],\n      [-102.56148, 35.26921],\n      [-102.56044, 35.26889],\n      [-102.55963, 35.26869],\n      [-102.55882, 35.26852],\n      [-102.55736, 35.26831],\n      [-102.55635, 35.26819],\n      [-102.55492, 35.2681],\n      [-102.55385, 35.268],\n      [-102.5523, 35.26776],\n      [-102.55129, 35.26755],\n      [-102.55028, 35.26733],\n      [-102.54668, 35.26667],\n      [-102.54441, 35.26626],\n      [-102.53617, 35.26471],\n      [-102.53181, 35.2639],\n      [-102.52215, 35.26207],\n      [-102.51924, 35.26152],\n      [-102.5108, 35.25993],\n      [-102.50645, 35.25911],\n      [-102.50492, 35.25881],\n      [-102.50415, 35.25865],\n      [-102.504, 35.25862],\n      [-102.50307, 35.25836],\n      [-102.50167, 35.25798],\n      [-102.50102, 35.25779],\n      [-102.50033, 35.25763],\n      [-102.50007, 35.25757],\n      [-102.49951, 35.25746],\n      [-102.49874, 35.25732],\n      [-102.49512, 35.25679],\n      [-102.49069, 35.25614],\n      [-102.48842, 35.25571],\n      [-102.48832, 35.25569],\n      [-102.48624, 35.2553],\n      [-102.48606, 35.25527],\n      [-102.47894, 35.25392],\n      [-102.47647, 35.25345],\n      [-102.47399, 35.25299],\n      [-102.47153, 35.25252],\n      [-102.46905, 35.25205],\n      [-102.46653, 35.25157],\n      [-102.46402, 35.2511],\n      [-102.46152, 35.25061],\n      [-102.45912, 35.25017],\n      [-102.45779, 35.24993],\n      [-102.45707, 35.24978],\n      [-102.45666, 35.2497],\n      [-102.4552, 35.2494],\n      [-102.45437, 35.24921],\n      [-102.45349, 35.24897],\n      [-102.45324, 35.2489],\n      [-102.45228, 35.24858],\n      [-102.45131, 35.24822],\n      [-102.45026, 35.24776],\n      [-102.4494, 35.24734],\n      [-102.4489, 35.24706],\n      [-102.44781, 35.24644],\n      [-102.44388, 35.24437],\n      [-102.44259, 35.24365],\n      [-102.44127, 35.24293],\n      [-102.43992, 35.24222],\n      [-102.43862, 35.24151],\n      [-102.43726, 35.24079],\n      [-102.43658, 35.24042],\n      [-102.4359, 35.24005],\n      [-102.4345, 35.2393],\n      [-102.43448, 35.23929],\n      [-102.43356, 35.23882],\n      [-102.43318, 35.23862],\n      [-102.43207, 35.2381],\n      [-102.43081, 35.23761],\n      [-102.43007, 35.23734],\n      [-102.42959, 35.2372],\n      [-102.4285, 35.23692],\n      [-102.42759, 35.23671],\n      [-102.42656, 35.23652],\n      [-102.42553, 35.23637],\n      [-102.42449, 35.23628],\n      [-102.42329, 35.23623],\n      [-102.42212, 35.23622],\n      [-102.42093, 35.23625],\n      [-102.42085, 35.23626],\n      [-102.4196, 35.23639],\n      [-102.417, 35.23681],\n      [-102.41695, 35.23682],\n      [-102.41558, 35.23705],\n      [-102.41283, 35.23749],\n      [-102.41144, 35.23771],\n      [-102.41006, 35.23792],\n      [-102.40865, 35.23814],\n      [-102.40583, 35.23858],\n      [-102.40526, 35.23867],\n      [-102.40504, 35.2387],\n      [-102.40473, 35.23874],\n      [-102.40399, 35.23882],\n      [-102.40343, 35.23886],\n      [-102.40267, 35.2389],\n      [-102.40215, 35.23891],\n      [-102.40077, 35.2389],\n      [-102.39995, 35.23885],\n      [-102.39862, 35.23869],\n      [-102.39809, 35.23862],\n      [-102.39679, 35.23838],\n      [-102.39388, 35.23782],\n      [-102.39247, 35.23756],\n      [-102.39106, 35.23728],\n      [-102.38963, 35.23701],\n      [-102.38818, 35.23672],\n      [-102.38526, 35.23619],\n      [-102.38378, 35.23592],\n      [-102.38231, 35.23565],\n      [-102.38083, 35.23537],\n      [-102.37935, 35.23508],\n      [-102.37787, 35.2348],\n      [-102.37639, 35.23452],\n      [-102.37533, 35.23433],\n      [-102.37336, 35.23396],\n      [-102.37125, 35.23357],\n      [-102.36915, 35.23316],\n      [-102.36705, 35.23278],\n      [-102.36498, 35.23238],\n      [-102.36425, 35.23225],\n      [-102.36389, 35.23217],\n      [-102.36309, 35.23203],\n      [-102.36106, 35.23165],\n      [-102.35904, 35.23127],\n      [-102.35501, 35.2305],\n      [-102.349, 35.22939],\n      [-102.347, 35.229],\n      [-102.34098, 35.22787],\n      [-102.33898, 35.22749],\n      [-102.33276, 35.22633],\n      [-102.32711, 35.22527],\n      [-102.32498, 35.22485],\n      [-102.32401, 35.22468],\n      [-102.32285, 35.22446],\n      [-102.32072, 35.22406],\n      [-102.31859, 35.22367],\n      [-102.31434, 35.22286],\n      [-102.30796, 35.22167],\n      [-102.3016, 35.22046],\n      [-102.29524, 35.21927],\n      [-102.29312, 35.21887],\n      [-102.28889, 35.21808],\n      [-102.28812, 35.21793],\n      [-102.28678, 35.21768],\n      [-102.28043, 35.21648],\n      [-102.26774, 35.21411],\n      [-102.26562, 35.21371],\n      [-102.2635, 35.21332],\n      [-102.26139, 35.21292],\n      [-102.25927, 35.21252],\n      [-102.25724, 35.21212],\n      [-102.25524, 35.21177],\n      [-102.25328, 35.21139],\n      [-102.24897, 35.21057],\n      [-102.24827, 35.21048],\n      [-102.24785, 35.21043],\n      [-102.24737, 35.21039],\n      [-102.2463, 35.21034],\n      [-102.24361, 35.21027],\n      [-102.24094, 35.21021],\n      [-102.23874, 35.21016],\n      [-102.23669, 35.21012],\n      [-102.23574, 35.21011],\n      [-102.23037, 35.20997],\n      [-102.22776, 35.20992],\n      [-102.2252, 35.20987],\n      [-102.22272, 35.20981],\n      [-102.2204, 35.20974],\n      [-102.21984, 35.20974],\n      [-102.21804, 35.20971],\n      [-102.21658, 35.20966],\n      [-102.21633, 35.20965],\n      [-102.21557, 35.20959],\n      [-102.21426, 35.20943],\n      [-102.21393, 35.20941],\n      [-102.21315, 35.20936],\n      [-102.21226, 35.20934],\n      [-102.20988, 35.20929],\n      [-102.20761, 35.20923],\n      [-102.20534, 35.20918],\n      [-102.20237, 35.2091],\n      [-102.20159, 35.20909],\n      [-102.19874, 35.20903],\n      [-102.19672, 35.20898],\n      [-102.196, 35.20898],\n      [-102.19557, 35.20899],\n      [-102.19396, 35.20908],\n      [-102.19281, 35.20916],\n      [-102.19221, 35.2092],\n      [-102.19149, 35.2092],\n      [-102.19015, 35.20919],\n      [-102.18579, 35.20909],\n      [-102.18491, 35.20906],\n      [-102.17896, 35.20892],\n      [-102.1767, 35.20886],\n      [-102.17444, 35.20882],\n      [-102.17222, 35.20876],\n      [-102.16964, 35.20872],\n      [-102.16858, 35.20865],\n      [-102.16795, 35.20858],\n      [-102.16746, 35.2085],\n      [-102.16713, 35.20845],\n      [-102.16663, 35.20837],\n      [-102.16592, 35.20823],\n      [-102.16357, 35.20768],\n      [-102.16128, 35.20713],\n      [-102.15901, 35.20659],\n      [-102.15679, 35.20604],\n      [-102.1546, 35.20552],\n      [-102.15063, 35.20456],\n      [-102.15027, 35.20447],\n      [-102.14863, 35.20406],\n      [-102.14591, 35.20339],\n      [-102.1359, 35.201],\n      [-102.13353, 35.20043],\n      [-102.13125, 35.19987],\n      [-102.12929, 35.1994],\n      [-102.12533, 35.19844],\n      [-102.12383, 35.19808],\n      [-102.12219, 35.19769],\n      [-102.11921, 35.19698],\n      [-102.11766, 35.1966],\n      [-102.11522, 35.196],\n      [-102.11343, 35.19557],\n      [-102.11159, 35.19512],\n      [-102.10871, 35.19445],\n      [-102.10752, 35.19415],\n      [-102.10579, 35.19372],\n      [-102.10448, 35.19332],\n      [-102.10312, 35.19288],\n      [-102.10191, 35.19253],\n      [-102.10076, 35.19228],\n      [-102.10002, 35.19217],\n      [-102.09914, 35.19207],\n      [-102.09835, 35.192],\n      [-102.09529, 35.19193],\n      [-102.09222, 35.19187],\n      [-102.08315, 35.19165],\n      [-102.07414, 35.19145],\n      [-102.07117, 35.19137],\n      [-102.07064, 35.19136],\n      [-102.06826, 35.19132],\n      [-102.0643, 35.19122],\n      [-102.06357, 35.1912],\n      [-102.06138, 35.19116],\n      [-102.06006, 35.19112],\n      [-102.05814, 35.19107],\n      [-102.057, 35.19104],\n      [-102.05405, 35.19098],\n      [-102.05111, 35.1909],\n      [-102.04799, 35.19083],\n      [-102.04485, 35.19075],\n      [-102.04173, 35.1907],\n      [-102.03552, 35.19053],\n      [-102.0293, 35.19039],\n      [-102.0262, 35.19033],\n      [-102.0231, 35.19025],\n      [-102.02001, 35.19016],\n      [-102.01618, 35.19008],\n      [-102.01391, 35.19003],\n      [-102.01058, 35.18998],\n      [-102.00974, 35.18995],\n      [-102.00405, 35.18977],\n      [-102.00033, 35.18968],\n      [-101.99789, 35.18961],\n      [-101.98309, 35.18927],\n      [-101.98114, 35.18921],\n      [-101.98052, 35.18917],\n      [-101.98019, 35.18913],\n      [-101.97985, 35.18908],\n      [-101.97922, 35.18896],\n      [-101.9785, 35.18878],\n      [-101.97787, 35.18856],\n      [-101.97736, 35.18835],\n      [-101.97577, 35.18767],\n      [-101.97528, 35.18749],\n      [-101.97466, 35.18731],\n      [-101.97362, 35.18709],\n      [-101.97318, 35.18703],\n      [-101.97194, 35.18698],\n      [-101.97119, 35.18699],\n      [-101.97024, 35.18706],\n      [-101.96895, 35.1872],\n      [-101.9685, 35.18724],\n      [-101.96766, 35.18732],\n      [-101.96533, 35.18753],\n      [-101.96474, 35.18757],\n      [-101.96404, 35.18759],\n      [-101.96304, 35.1876],\n      [-101.96222, 35.18758],\n      [-101.96093, 35.18754],\n      [-101.95851, 35.1875],\n      [-101.95663, 35.18746],\n      [-101.95593, 35.18744],\n      [-101.9556, 35.18744],\n      [-101.95374, 35.18737],\n      [-101.95138, 35.1873],\n      [-101.94846, 35.18723],\n      [-101.94283, 35.1871],\n      [-101.94224, 35.18708],\n      [-101.94201, 35.18708],\n      [-101.93788, 35.18697],\n      [-101.9371, 35.18695],\n      [-101.9359, 35.18695],\n      [-101.93411, 35.1869],\n      [-101.92961, 35.1868],\n      [-101.92905, 35.18677],\n      [-101.92622, 35.18669],\n      [-101.9248, 35.18666],\n      [-101.9217, 35.18658],\n      [-101.92086, 35.18656],\n      [-101.91989, 35.18654],\n      [-101.91947, 35.18654],\n      [-101.919, 35.18655],\n      [-101.91854, 35.18657],\n      [-101.91787, 35.18662],\n      [-101.91717, 35.18668],\n      [-101.91638, 35.18678],\n      [-101.91543, 35.18694],\n      [-101.91492, 35.18705],\n      [-101.91424, 35.1872],\n      [-101.91351, 35.1874],\n      [-101.91288, 35.18758],\n      [-101.9121, 35.18784],\n      [-101.91189, 35.18792],\n      [-101.91105, 35.18822],\n      [-101.91052, 35.18842],\n      [-101.90883, 35.18901],\n      [-101.90797, 35.18931],\n      [-101.9077, 35.18939],\n      [-101.90727, 35.18952],\n      [-101.90657, 35.18972],\n      [-101.90596, 35.18985],\n      [-101.9055, 35.18995],\n      [-101.90481, 35.19008],\n      [-101.90407, 35.19019],\n      [-101.90349, 35.19025],\n      [-101.90296, 35.19031],\n      [-101.90195, 35.1904],\n      [-101.90106, 35.19046],\n      [-101.90033, 35.19055],\n      [-101.89951, 35.19062],\n      [-101.89814, 35.19073],\n      [-101.89599, 35.19093],\n      [-101.89515, 35.19099],\n      [-101.89415, 35.19107],\n      [-101.89373, 35.1911],\n      [-101.89186, 35.19128],\n      [-101.89071, 35.19138],\n      [-101.89013, 35.1914],\n      [-101.8891, 35.1914],\n      [-101.88791, 35.19141],\n      [-101.88438, 35.19139],\n      [-101.88364, 35.19139],\n      [-101.88128, 35.19138],\n      [-101.88013, 35.19138],\n      [-101.87953, 35.19138],\n      [-101.87919, 35.19137],\n      [-101.87802, 35.19137],\n      [-101.87746, 35.19137],\n      [-101.87692, 35.19141],\n      [-101.87632, 35.19151],\n      [-101.87574, 35.19163],\n      [-101.87534, 35.19174],\n      [-101.87484, 35.19191],\n      [-101.87449, 35.19208],\n      [-101.87395, 35.19238],\n      [-101.87238, 35.19331],\n      [-101.87203, 35.19352],\n      [-101.87132, 35.19396],\n      [-101.87095, 35.19417],\n      [-101.87057, 35.19437],\n      [-101.87035, 35.19447],\n      [-101.86993, 35.19463],\n      [-101.86956, 35.19476],\n      [-101.86916, 35.19488],\n      [-101.86877, 35.19498],\n      [-101.86835, 35.19506],\n      [-101.86796, 35.19512],\n      [-101.86724, 35.19517],\n      [-101.86664, 35.19519],\n      [-101.86588, 35.19519],\n      [-101.86479, 35.19519],\n      [-101.86283, 35.19519],\n      [-101.8605, 35.19519],\n      [-101.85986, 35.19519],\n      [-101.85819, 35.19519],\n      [-101.85755, 35.19519],\n      [-101.85544, 35.19518],\n      [-101.85492, 35.19517],\n      [-101.8543, 35.19511],\n      [-101.85197, 35.19482],\n      [-101.85038, 35.19463],\n      [-101.84779, 35.19435],\n      [-101.84518, 35.19399],\n      [-101.84385, 35.19382],\n      [-101.84277, 35.19369],\n      [-101.8412, 35.19347],\n      [-101.84069, 35.19339],\n      [-101.83955, 35.19323],\n      [-101.83446, 35.19247],\n      [-101.83403, 35.1924],\n      [-101.83355, 35.19235],\n      [-101.8332, 35.19233],\n      [-101.83273, 35.19233],\n      [-101.83223, 35.19233],\n      [-101.82965, 35.19231],\n      [-101.82729, 35.19232],\n      [-101.82654, 35.19233],\n      [-101.82487, 35.19233],\n      [-101.82417, 35.19233],\n      [-101.82353, 35.19234],\n      [-101.81934, 35.1924],\n      [-101.81762, 35.19252],\n      [-101.81691, 35.19257],\n      [-101.81441, 35.1928],\n      [-101.81259, 35.19292],\n      [-101.80982, 35.19313],\n      [-101.80978, 35.19313],\n      [-101.80875, 35.19319],\n      [-101.80797, 35.19321],\n      [-101.80745, 35.19321],\n      [-101.80599, 35.19324],\n      [-101.80539, 35.19324],\n      [-101.80197, 35.19325],\n      [-101.80021, 35.19325],\n      [-101.79976, 35.19325],\n      [-101.79795, 35.19325],\n      [-101.79742, 35.19323],\n      [-101.79696, 35.1932],\n      [-101.79639, 35.19313],\n      [-101.79574, 35.19304],\n      [-101.79305, 35.1927],\n      [-101.79172, 35.19253],\n      [-101.79166, 35.19252],\n      [-101.79143, 35.19251],\n      [-101.79103, 35.19248],\n      [-101.7873, 35.19247],\n      [-101.78664, 35.19247],\n      [-101.78558, 35.19247],\n      [-101.78367, 35.19249],\n      [-101.78305, 35.1925],\n      [-101.7806, 35.19248],\n      [-101.77914, 35.19251],\n      [-101.77847, 35.19253],\n      [-101.77557, 35.19257],\n      [-101.77341, 35.19258],\n      [-101.76885, 35.19261],\n      [-101.76431, 35.19259],\n      [-101.76278, 35.19259],\n      [-101.76031, 35.19258],\n      [-101.75979, 35.19258],\n      [-101.755, 35.19264],\n      [-101.74643, 35.19266],\n      [-101.74262, 35.19264],\n      [-101.74192, 35.19264],\n      [-101.73849, 35.19267],\n      [-101.73713, 35.19267],\n      [-101.73661, 35.19267],\n      [-101.73506, 35.19267],\n      [-101.73125, 35.1927],\n      [-101.73096, 35.1927],\n      [-101.72926, 35.19271],\n      [-101.72465, 35.19274],\n      [-101.72432, 35.19275],\n      [-101.72404, 35.19275],\n      [-101.72013, 35.19272],\n      [-101.71757, 35.19272],\n      [-101.71441, 35.19273],\n      [-101.7131, 35.19271],\n      [-101.71252, 35.19267],\n      [-101.71225, 35.19266],\n      [-101.71079, 35.19263],\n      [-101.70944, 35.19259],\n      [-101.70727, 35.19258],\n      [-101.70673, 35.19258],\n      [-101.70407, 35.1926],\n      [-101.70108, 35.19261],\n      [-101.70081, 35.19261],\n      [-101.70065, 35.19261],\n      [-101.69901, 35.19263],\n      [-101.6985, 35.19262],\n      [-101.6983, 35.19263],\n      [-101.69661, 35.19265],\n      [-101.69613, 35.1927],\n      [-101.69565, 35.19278],\n      [-101.69532, 35.19286],\n      [-101.69489, 35.19295],\n      [-101.69446, 35.19305],\n      [-101.69393, 35.19323],\n      [-101.69319, 35.19349],\n      [-101.69289, 35.19361],\n      [-101.69168, 35.1943],\n      [-101.69152, 35.19441],\n      [-101.69121, 35.19464],\n      [-101.69002, 35.19567],\n      [-101.68947, 35.19611],\n      [-101.68886, 35.19661],\n      [-101.68761, 35.19769],\n      [-101.68611, 35.19892],\n      [-101.68457, 35.20024],\n      [-101.68223, 35.20218],\n      [-101.68187, 35.20241],\n      [-101.68145, 35.20268],\n      [-101.68115, 35.20284],\n      [-101.68068, 35.20309],\n      [-101.6801, 35.20335],\n      [-101.67963, 35.20352],\n      [-101.67891, 35.20375],\n      [-101.6785, 35.20385],\n      [-101.67794, 35.20397],\n      [-101.67751, 35.20404],\n      [-101.67648, 35.20418],\n      [-101.6719, 35.20481],\n      [-101.67136, 35.20488],\n      [-101.66792, 35.20538],\n      [-101.6669, 35.20552],\n      [-101.6667, 35.20554],\n      [-101.66045, 35.20642],\n      [-101.65859, 35.20669],\n      [-101.65788, 35.20676],\n      [-101.65744, 35.2068],\n      [-101.65677, 35.20683],\n      [-101.65392, 35.20685],\n      [-101.65335, 35.20684],\n      [-101.65249, 35.20683],\n      [-101.6484, 35.20682],\n      [-101.62299, 35.20677],\n      [-101.62259, 35.2068],\n      [-101.62093, 35.20705],\n      [-101.62025, 35.20724],\n      [-101.61906, 35.20767],\n      [-101.61795, 35.20824],\n      [-101.61731, 35.20865],\n      [-101.60346, 35.21892],\n      [-101.60232, 35.21962],\n      [-101.60113, 35.22013],\n      [-101.60071, 35.22027],\n      [-101.59944, 35.22057],\n      [-101.59851, 35.22071],\n      [-101.5977, 35.22076],\n      [-101.58681, 35.22067],\n      [-101.57772, 35.22057],\n      [-101.57282, 35.2206],\n      [-101.57133, 35.22061],\n      [-101.5692, 35.22063],\n      [-101.56876, 35.22063],\n      [-101.56492, 35.22065],\n      [-101.56277, 35.22067],\n      [-101.56053, 35.22068],\n      [-101.55634, 35.22071],\n      [-101.55198, 35.22073],\n      [-101.54774, 35.22075],\n      [-101.5456, 35.22077],\n      [-101.54396, 35.22078],\n      [-101.54212, 35.22079],\n      [-101.53912, 35.22081],\n      [-101.53834, 35.22081],\n      [-101.53693, 35.22083],\n      [-101.53474, 35.22086],\n      [-101.53255, 35.22088],\n      [-101.53035, 35.22091],\n      [-101.52815, 35.22094],\n      [-101.52375, 35.22101],\n      [-101.51711, 35.22107],\n      [-101.51318, 35.22113],\n      [-101.50826, 35.22119],\n      [-101.5063, 35.22121],\n      [-101.50387, 35.22124],\n      [-101.50166, 35.22127],\n      [-101.50109, 35.22127],\n      [-101.50034, 35.2213],\n      [-101.49955, 35.22132],\n      [-101.49642, 35.22137],\n      [-101.49214, 35.22138],\n      [-101.4855, 35.22138],\n      [-101.48326, 35.22139],\n      [-101.47554, 35.22139],\n      [-101.47244, 35.22141],\n      [-101.47065, 35.22141],\n      [-101.46877, 35.22142],\n      [-101.46542, 35.22143],\n      [-101.4587, 35.22145],\n      [-101.44859, 35.22148],\n      [-101.44522, 35.22149],\n      [-101.44185, 35.22148],\n      [-101.42624, 35.22153],\n      [-101.42004, 35.22154],\n      [-101.41692, 35.22156],\n      [-101.4138, 35.22156],\n      [-101.40121, 35.2216],\n      [-101.39856, 35.22161],\n      [-101.39781, 35.22157],\n      [-101.39748, 35.22154],\n      [-101.39676, 35.22148],\n      [-101.39615, 35.22141],\n      [-101.39576, 35.22135],\n      [-101.39497, 35.22121],\n      [-101.39408, 35.22103],\n      [-101.39343, 35.22087],\n      [-101.39284, 35.2207],\n      [-101.39198, 35.22043],\n      [-101.39095, 35.22006],\n      [-101.38931, 35.2194],\n      [-101.38744, 35.21866],\n      [-101.38344, 35.21706],\n      [-101.38141, 35.21624],\n      [-101.38021, 35.21576],\n      [-101.37767, 35.21475],\n      [-101.37535, 35.21384],\n      [-101.36829, 35.21103],\n      [-101.36542, 35.20988],\n      [-101.36372, 35.2092],\n      [-101.36246, 35.20873],\n      [-101.36151, 35.20844],\n      [-101.36006, 35.20809],\n      [-101.35969, 35.20802],\n      [-101.35881, 35.20787],\n      [-101.35746, 35.20771],\n      [-101.35598, 35.20763],\n      [-101.35428, 35.20762],\n      [-101.34983, 35.20763],\n      [-101.34695, 35.20762],\n      [-101.33563, 35.20761],\n      [-101.32895, 35.20761],\n      [-101.3276, 35.20761],\n      [-101.31684, 35.20759],\n      [-101.30798, 35.20757],\n      [-101.30373, 35.20757],\n      [-101.29919, 35.20755],\n      [-101.29429, 35.20756],\n      [-101.28492, 35.20755],\n      [-101.28051, 35.20754],\n      [-101.27657, 35.20755],\n      [-101.27526, 35.20754],\n      [-101.27104, 35.20753],\n      [-101.26662, 35.20753],\n      [-101.25798, 35.20752],\n      [-101.25364, 35.20752],\n      [-101.25035, 35.20751],\n      [-101.24715, 35.20752],\n      [-101.24169, 35.20752],\n      [-101.24035, 35.20752],\n      [-101.23205, 35.20751],\n      [-101.22375, 35.2075],\n      [-101.22293, 35.20751],\n      [-101.22217, 35.20754],\n      [-101.22095, 35.20764],\n      [-101.21997, 35.20773],\n      [-101.21905, 35.20778],\n      [-101.21901, 35.20778],\n      [-101.21767, 35.2078],\n      [-101.21668, 35.20778],\n      [-101.21557, 35.2077],\n      [-101.21409, 35.20756],\n      [-101.21352, 35.20752],\n      [-101.21295, 35.20751],\n      [-101.21066, 35.20748],\n      [-101.20598, 35.20748],\n      [-101.2014, 35.20747],\n      [-101.19659, 35.20747],\n      [-101.19162, 35.20746],\n      [-101.18189, 35.20743],\n      [-101.17927, 35.20743],\n      [-101.17683, 35.20742],\n      [-101.17501, 35.20743],\n      [-101.17196, 35.20743],\n      [-101.17047, 35.20742],\n      [-101.16908, 35.20742],\n      [-101.16774, 35.20741],\n      [-101.16489, 35.20741],\n      [-101.16138, 35.2074],\n      [-101.15791, 35.2074],\n      [-101.15, 35.20739],\n      [-101.14883, 35.20742],\n      [-101.14723, 35.20749],\n      [-101.14513, 35.20765],\n      [-101.14404, 35.20775],\n      [-101.14296, 35.2079],\n      [-101.14192, 35.20806],\n      [-101.14066, 35.20829],\n      [-101.13994, 35.20844],\n      [-101.13569, 35.20925],\n      [-101.13314, 35.20973],\n      [-101.13106, 35.21013],\n      [-101.12523, 35.21123],\n      [-101.12348, 35.21156],\n      [-101.12039, 35.21215],\n      [-101.11744, 35.2127],\n      [-101.11678, 35.21282],\n      [-101.11505, 35.21315],\n      [-101.11484, 35.21319],\n      [-101.11418, 35.21328],\n      [-101.11355, 35.21336],\n      [-101.1128, 35.21341],\n      [-101.11201, 35.21343],\n      [-101.11101, 35.21342],\n      [-101.10986, 35.21333],\n      [-101.10904, 35.21322],\n      [-101.10893, 35.2132],\n      [-101.10819, 35.21307],\n      [-101.10758, 35.21294],\n      [-101.10679, 35.21273],\n      [-101.10648, 35.21264],\n      [-101.10606, 35.21251],\n      [-101.10563, 35.21236],\n      [-101.10539, 35.21228],\n      [-101.10466, 35.21197],\n      [-101.10367, 35.2115],\n      [-101.10252, 35.21085],\n      [-101.09975, 35.20927],\n      [-101.09916, 35.20893],\n      [-101.09878, 35.20871],\n      [-101.09855, 35.20858],\n      [-101.09662, 35.20747],\n      [-101.09531, 35.20668],\n      [-101.09451, 35.20615],\n      [-101.09373, 35.20559],\n      [-101.09296, 35.20504],\n      [-101.09172, 35.20406],\n      [-101.0901, 35.2027],\n      [-101.08993, 35.20256],\n      [-101.08901, 35.20178],\n      [-101.08836, 35.20121],\n      [-101.08738, 35.20039],\n      [-101.08622, 35.19936],\n      [-101.08491, 35.19841],\n      [-101.08454, 35.19815],\n      [-101.08339, 35.19737],\n      [-101.08274, 35.19702],\n      [-101.08203, 35.19666],\n      [-101.08137, 35.19637],\n      [-101.08044, 35.19598],\n      [-101.07947, 35.19563],\n      [-101.07852, 35.19533],\n      [-101.07791, 35.19516],\n      [-101.07715, 35.19498],\n      [-101.0746, 35.19451],\n      [-101.07112, 35.19389],\n      [-101.06151, 35.19214],\n      [-101.05793, 35.19148],\n      [-101.05058, 35.19018],\n      [-101.03495, 35.18733],\n      [-101.02178, 35.18494],\n      [-101.01515, 35.18374],\n      [-101.01388, 35.1835],\n      [-101.01326, 35.18341],\n      [-101.01248, 35.18332],\n      [-101.01161, 35.18323],\n      [-101.01033, 35.18309],\n      [-101.00876, 35.18296],\n      [-101.00777, 35.18287],\n      [-101.00707, 35.1828],\n      [-101.00627, 35.18271],\n      [-101.00446, 35.18254],\n      [-101.00229, 35.18235],\n      [-101.00119, 35.18224],\n      [-101.00062, 35.18218],\n      [-101.00033, 35.18213],\n      [-100.99739, 35.18191],\n      [-100.99251, 35.18145],\n      [-100.98931, 35.18115],\n      [-100.98866, 35.18111],\n      [-100.98802, 35.18109],\n      [-100.98737, 35.18109],\n      [-100.98672, 35.18112],\n      [-100.98608, 35.18116],\n      [-100.98544, 35.18123],\n      [-100.98483, 35.18131],\n      [-100.98092, 35.18192],\n      [-100.97981, 35.1821],\n      [-100.97618, 35.18268],\n      [-100.97555, 35.18276],\n      [-100.97497, 35.18282],\n      [-100.97438, 35.18285],\n      [-100.97399, 35.18289],\n      [-100.97391, 35.1829],\n      [-100.97376, 35.18289],\n      [-100.95951, 35.18292],\n      [-100.93932, 35.18293],\n      [-100.92, 35.18293],\n      [-100.91782, 35.18293],\n      [-100.9169, 35.18293],\n      [-100.91442, 35.18292],\n      [-100.9143, 35.18292],\n      [-100.91122, 35.18292],\n      [-100.90984, 35.18289],\n      [-100.90939, 35.18285],\n      [-100.90911, 35.18283],\n      [-100.90839, 35.18274],\n      [-100.9082, 35.18272],\n      [-100.90766, 35.18264],\n      [-100.9075, 35.18261],\n      [-100.90697, 35.18252],\n      [-100.90665, 35.18246],\n      [-100.90618, 35.18237],\n      [-100.9053, 35.18212],\n      [-100.90414, 35.1818],\n      [-100.90215, 35.18118],\n      [-100.90163, 35.18101],\n      [-100.89989, 35.18047],\n      [-100.89728, 35.17965],\n      [-100.89684, 35.17953],\n      [-100.89593, 35.17934],\n      [-100.89496, 35.17914],\n      [-100.89388, 35.17899],\n      [-100.89247, 35.17886],\n      [-100.89138, 35.17884],\n      [-100.88871, 35.17882],\n      [-100.88668, 35.17882],\n      [-100.8853, 35.17881],\n      [-100.88453, 35.17884],\n      [-100.88419, 35.17888],\n      [-100.88273, 35.17904],\n      [-100.87971, 35.17975],\n      [-100.87789, 35.18037],\n      [-100.87383, 35.18184],\n      [-100.87223, 35.18236],\n      [-100.87209, 35.18241],\n      [-100.87138, 35.18265],\n      [-100.87089, 35.1828],\n      [-100.86976, 35.18306],\n      [-100.86924, 35.18317],\n      [-100.86818, 35.18337],\n      [-100.86631, 35.18356],\n      [-100.86505, 35.18361],\n      [-100.86359, 35.18358],\n      [-100.863, 35.18353],\n      [-100.86132, 35.18335],\n      [-100.86054, 35.18323],\n      [-100.85967, 35.18309],\n      [-100.8591, 35.18301],\n      [-100.85561, 35.18253],\n      [-100.85277, 35.18215],\n      [-100.85014, 35.18179],\n      [-100.84794, 35.18139],\n      [-100.84681, 35.18119],\n      [-100.84554, 35.18095],\n      [-100.8433, 35.18054],\n      [-100.84114, 35.18013],\n      [-100.83969, 35.17989],\n      [-100.83777, 35.17956],\n      [-100.83715, 35.17947],\n      [-100.83562, 35.17927],\n      [-100.83355, 35.1792],\n      [-100.8317, 35.17928],\n      [-100.83033, 35.17944],\n      [-100.82894, 35.17972],\n      [-100.82718, 35.18015],\n      [-100.825, 35.18094],\n      [-100.82314, 35.18185],\n      [-100.8204, 35.18324],\n      [-100.81488, 35.18611],\n      [-100.81233, 35.18746],\n      [-100.80961, 35.1889],\n      [-100.80844, 35.18961],\n      [-100.80784, 35.18998],\n      [-100.80728, 35.19041],\n      [-100.80655, 35.19099],\n      [-100.80466, 35.19257],\n      [-100.80198, 35.19477],\n      [-100.8014, 35.19524],\n      [-100.79788, 35.19815],\n      [-100.79529, 35.2002],\n      [-100.79454, 35.20069],\n      [-100.79383, 35.20111],\n      [-100.79367, 35.2012],\n      [-100.79225, 35.20198],\n      [-100.78996, 35.20292],\n      [-100.78901, 35.2033],\n      [-100.78856, 35.20349],\n      [-100.78701, 35.20416],\n      [-100.78589, 35.20463],\n      [-100.78402, 35.20543],\n      [-100.78264, 35.20621],\n      [-100.78209, 35.20658],\n      [-100.78152, 35.20692],\n      [-100.78126, 35.2071],\n      [-100.78116, 35.20717],\n      [-100.78038, 35.20776],\n      [-100.77998, 35.20809],\n      [-100.77879, 35.20924],\n      [-100.7779, 35.21017],\n      [-100.77684, 35.21132],\n      [-100.77634, 35.21184],\n      [-100.77581, 35.21236],\n      [-100.77551, 35.21263],\n      [-100.77516, 35.21286],\n      [-100.77476, 35.21314],\n      [-100.77431, 35.21343],\n      [-100.77385, 35.21368],\n      [-100.7737, 35.21375],\n      [-100.77314, 35.21402],\n      [-100.77238, 35.21429],\n      [-100.7719, 35.21442],\n      [-100.77131, 35.21459],\n      [-100.77078, 35.21467],\n      [-100.76957, 35.2148],\n      [-100.76894, 35.2148],\n      [-100.76808, 35.21478],\n      [-100.76748, 35.21474],\n      [-100.76683, 35.21463],\n      [-100.765, 35.21417],\n      [-100.76298, 35.21363],\n      [-100.76096, 35.21309],\n      [-100.75911, 35.21272],\n      [-100.75749, 35.2125],\n      [-100.75691, 35.21247],\n      [-100.75565, 35.21241],\n      [-100.75507, 35.21242],\n      [-100.75368, 35.21248],\n      [-100.75299, 35.21254],\n      [-100.75234, 35.21261],\n      [-100.7518, 35.21268],\n      [-100.75033, 35.21296],\n      [-100.74933, 35.21318],\n      [-100.74567, 35.21406],\n      [-100.74523, 35.21416],\n      [-100.74337, 35.2146],\n      [-100.74248, 35.21483],\n      [-100.74171, 35.21496],\n      [-100.74104, 35.21506],\n      [-100.74055, 35.21512],\n      [-100.7398, 35.21517],\n      [-100.73848, 35.21518],\n      [-100.73768, 35.21517],\n      [-100.73713, 35.21516],\n      [-100.7369, 35.21517],\n      [-100.73333, 35.21517],\n      [-100.73309, 35.21518],\n      [-100.73218, 35.21517],\n      [-100.73039, 35.21517],\n      [-100.72974, 35.21514],\n      [-100.72911, 35.21509],\n      [-100.72811, 35.21494],\n      [-100.72702, 35.21471],\n      [-100.72431, 35.21407],\n      [-100.723, 35.21377],\n      [-100.72207, 35.21358],\n      [-100.72182, 35.21354],\n      [-100.72055, 35.21338],\n      [-100.71976, 35.21334],\n      [-100.71941, 35.21333],\n      [-100.71903, 35.21333],\n      [-100.71801, 35.21335],\n      [-100.71767, 35.21338],\n      [-100.71497, 35.21367],\n      [-100.71026, 35.21408],\n      [-100.70861, 35.21423],\n      [-100.70562, 35.21451],\n      [-100.7031, 35.21473],\n      [-100.70093, 35.21491],\n      [-100.699, 35.21507],\n      [-100.69641, 35.21529],\n      [-100.69611, 35.21532],\n      [-100.69401, 35.21551],\n      [-100.6748, 35.21722],\n      [-100.67365, 35.21732],\n      [-100.67329, 35.21735],\n      [-100.67286, 35.2174],\n      [-100.67207, 35.2175],\n      [-100.67162, 35.21757],\n      [-100.67129, 35.21762],\n      [-100.67052, 35.21777],\n      [-100.66832, 35.2184],\n      [-100.66781, 35.21858],\n      [-100.66372, 35.21984],\n      [-100.65757, 35.22176],\n      [-100.65269, 35.22327],\n      [-100.65162, 35.2236],\n      [-100.64804, 35.22472],\n      [-100.64285, 35.22633],\n      [-100.64121, 35.22684],\n      [-100.64114, 35.22686],\n      [-100.64018, 35.22715],\n      [-100.63887, 35.22756],\n      [-100.63864, 35.22763],\n      [-100.63673, 35.22822],\n      [-100.63672, 35.22822],\n      [-100.6355, 35.22854],\n      [-100.63494, 35.22864],\n      [-100.63401, 35.22878],\n      [-100.63317, 35.22886],\n      [-100.63215, 35.22891],\n      [-100.63171, 35.22892],\n      [-100.6315, 35.22892],\n      [-100.63047, 35.22889],\n      [-100.62958, 35.22881],\n      [-100.62565, 35.22826],\n      [-100.62229, 35.22781],\n      [-100.62151, 35.2277],\n      [-100.61929, 35.22742],\n      [-100.61839, 35.22729],\n      [-100.61814, 35.22727],\n      [-100.6169, 35.22709],\n      [-100.61581, 35.22694],\n      [-100.61518, 35.22687],\n      [-100.61456, 35.22682],\n      [-100.61369, 35.22679],\n      [-100.60873, 35.2268],\n      [-100.60621, 35.22678],\n      [-100.60491, 35.22678],\n      [-100.6033, 35.22675],\n      [-100.60114, 35.22676],\n      [-100.59841, 35.22674],\n      [-100.59723, 35.22674],\n      [-100.59712, 35.22674],\n      [-100.59678, 35.22673],\n      [-100.59604, 35.2267],\n      [-100.59507, 35.22667],\n      [-100.59453, 35.22665],\n      [-100.59393, 35.22662],\n      [-100.59221, 35.22654],\n      [-100.59211, 35.22654],\n      [-100.59189, 35.22653],\n      [-100.59151, 35.22651],\n      [-100.59002, 35.22646],\n      [-100.58792, 35.22646],\n      [-100.58701, 35.22647],\n      [-100.5791, 35.22651],\n      [-100.57419, 35.2265],\n      [-100.56683, 35.22657],\n      [-100.55634, 35.2266],\n      [-100.55437, 35.2266],\n      [-100.54607, 35.22659],\n      [-100.54006, 35.22658],\n      [-100.53757, 35.22659],\n      [-100.53293, 35.22662],\n      [-100.53064, 35.22667],\n      [-100.52961, 35.22672],\n      [-100.52554, 35.2268],\n      [-100.52375, 35.22681],\n      [-100.5098, 35.22681],\n      [-100.50413, 35.22681],\n      [-100.50301, 35.22681],\n      [-100.50172, 35.22681],\n      [-100.50034, 35.2268],\n      [-100.49828, 35.22679],\n      [-100.4896, 35.22681],\n      [-100.48524, 35.22681],\n      [-100.44612, 35.22683],\n      [-100.43764, 35.22683],\n      [-100.43348, 35.22682],\n      [-100.43221, 35.22681],\n      [-100.43072, 35.22682],\n      [-100.42723, 35.22681],\n      [-100.41354, 35.22686],\n      [-100.39083, 35.22682],\n      [-100.3858, 35.22681],\n      [-100.38495, 35.22683],\n      [-100.38422, 35.22689],\n      [-100.38366, 35.22698],\n      [-100.38313, 35.22708],\n      [-100.38255, 35.22723],\n      [-100.38175, 35.22748],\n      [-100.37978, 35.22821],\n      [-100.37899, 35.22846],\n      [-100.3783, 35.22867],\n      [-100.37809, 35.22872],\n      [-100.37714, 35.22893],\n      [-100.37637, 35.22905],\n      [-100.37534, 35.22915],\n      [-100.37476, 35.22918],\n      [-100.37441, 35.22919],\n      [-100.37396, 35.2292],\n      [-100.37362, 35.22919],\n      [-100.37302, 35.22917],\n      [-100.37184, 35.22906],\n      [-100.37062, 35.22896],\n      [-100.36814, 35.22875],\n      [-100.36603, 35.22858],\n      [-100.36483, 35.22847],\n      [-100.36048, 35.22813],\n      [-100.3565, 35.22779],\n      [-100.35624, 35.22776],\n      [-100.35587, 35.22769],\n      [-100.35555, 35.22762],\n      [-100.35526, 35.22754],\n      [-100.35421, 35.22728],\n      [-100.35316, 35.22702],\n      [-100.35245, 35.22689],\n      [-100.35216, 35.22686],\n      [-100.35179, 35.22681],\n      [-100.35025, 35.22681],\n      [-100.34816, 35.22678],\n      [-100.34489, 35.22677],\n      [-100.34409, 35.22677],\n      [-100.34236, 35.22676],\n      [-100.34199, 35.22676],\n      [-100.33851, 35.22678],\n      [-100.33754, 35.22679],\n      [-100.33535, 35.22679],\n      [-100.33306, 35.22679],\n      [-100.32846, 35.2268],\n      [-100.32268, 35.2268],\n      [-100.31578, 35.22677],\n      [-100.31358, 35.22676],\n      [-100.30686, 35.22677],\n      [-100.3045, 35.22677],\n      [-100.30219, 35.22675],\n      [-100.29877, 35.22675],\n      [-100.29535, 35.22674],\n      [-100.29349, 35.22675],\n      [-100.28859, 35.22675],\n      [-100.28529, 35.22674],\n      [-100.28167, 35.22675],\n      [-100.28103, 35.22678],\n      [-100.28029, 35.22684],\n      [-100.27874, 35.22701],\n      [-100.27755, 35.22716],\n      [-100.27614, 35.22736],\n      [-100.27524, 35.22748],\n      [-100.27097, 35.22807],\n      [-100.26968, 35.22826],\n      [-100.26876, 35.22838],\n      [-100.26638, 35.22871],\n      [-100.26513, 35.22887],\n      [-100.26405, 35.22901],\n      [-100.26318, 35.22911],\n      [-100.26177, 35.22927],\n      [-100.26079, 35.22939],\n      [-100.25953, 35.22956],\n      [-100.25946, 35.22957],\n      [-100.25714, 35.22984],\n      [-100.25523, 35.23008],\n      [-100.25194, 35.23049],\n      [-100.25034, 35.23067],\n      [-100.24996, 35.23071],\n      [-100.24951, 35.23077],\n      [-100.24818, 35.2309],\n      [-100.24762, 35.23096],\n      [-100.24599, 35.23119],\n      [-100.24547, 35.23124],\n      [-100.24465, 35.23131],\n      [-100.24394, 35.23133],\n      [-100.24301, 35.23135],\n      [-100.24228, 35.23131],\n      [-100.24192, 35.23128],\n      [-100.24041, 35.23116],\n      [-100.24007, 35.23112],\n      [-100.23953, 35.231],\n      [-100.23864, 35.23084],\n      [-100.23708, 35.23048],\n      [-100.23685, 35.23043],\n      [-100.23158, 35.22918],\n      [-100.23148, 35.22916],\n      [-100.23073, 35.22899],\n      [-100.23001, 35.22883],\n      [-100.22749, 35.22828],\n      [-100.2269, 35.22814],\n      [-100.22605, 35.22794],\n      [-100.22361, 35.22736],\n      [-100.22281, 35.22719],\n      [-100.22235, 35.22711],\n      [-100.22203, 35.22705],\n      [-100.22125, 35.22693],\n      [-100.22047, 35.22683],\n      [-100.21968, 35.22675],\n      [-100.21914, 35.22671],\n      [-100.21862, 35.22668],\n      [-100.2181, 35.22666],\n      [-100.2173, 35.22665],\n      [-100.21071, 35.22667],\n      [-100.19167, 35.22674],\n      [-100.17345, 35.22672],\n      [-100.16696, 35.22671],\n      [-100.16589, 35.22671],\n      [-100.16468, 35.2267],\n      [-100.1599, 35.22667],\n      [-100.15844, 35.22667],\n      [-100.1578, 35.22667],\n      [-100.15151, 35.2267],\n      [-100.13994, 35.22669],\n      [-100.13823, 35.22669],\n      [-100.13111, 35.22665],\n      [-100.12974, 35.22664],\n      [-100.12934, 35.22664],\n      [-100.12534, 35.22662],\n      [-100.12168, 35.22663],\n      [-100.12001, 35.22664],\n      [-100.1126, 35.22663],\n      [-100.10917, 35.22663],\n      [-100.10253, 35.22662],\n      [-100.10162, 35.22662],\n      [-100.09008, 35.22659],\n      [-100.08295, 35.22662],\n      [-100.07723, 35.22662],\n      [-100.0766, 35.22662],\n      [-100.06164, 35.2266],\n      [-100.0579, 35.22658],\n      [-100.05097, 35.22661],\n      [-100.04622, 35.2266],\n      [-100.04153, 35.22664],\n      [-100.03677, 35.22664],\n      [-100.03214, 35.22666],\n      [-100.03113, 35.22667],\n      [-100.02754, 35.22668],\n      [-100.02297, 35.22666],\n      [-100.00232, 35.22673],\n      [-100.00029, 35.2268],\n      [-99.99924, 35.22684],\n      [-99.99821, 35.22689],\n      [-99.99717, 35.22696],\n      [-99.99614, 35.22703],\n      [-99.99507, 35.22712],\n      [-99.99416, 35.2272],\n      [-99.99339, 35.22727],\n      [-99.99169, 35.22745],\n      [-99.99124, 35.2275],\n      [-99.98727, 35.22803],\n      [-99.98688, 35.22808],\n      [-99.96496, 35.2311],\n      [-99.96383, 35.23125],\n      [-99.96287, 35.23136],\n      [-99.96209, 35.23144],\n      [-99.9611, 35.23153],\n      [-99.96019, 35.23159],\n      [-99.95936, 35.23165],\n      [-99.95858, 35.23169],\n      [-99.95779, 35.23173],\n      [-99.95664, 35.23176],\n      [-99.95548, 35.23177],\n      [-99.95417, 35.23176],\n      [-99.95326, 35.23174],\n      [-99.9524, 35.23171],\n      [-99.95118, 35.23165],\n      [-99.95023, 35.23159],\n      [-99.94962, 35.23154],\n      [-99.94903, 35.23149],\n      [-99.9479, 35.23138],\n      [-99.94732, 35.23131],\n      [-99.94655, 35.23122],\n      [-99.94554, 35.23108],\n      [-99.9448, 35.23097],\n      [-99.94392, 35.23083],\n      [-99.94317, 35.2307],\n      [-99.94221, 35.23053],\n      [-99.92871, 35.22787],\n      [-99.92703, 35.22756],\n      [-99.92569, 35.22734],\n      [-99.92437, 35.22714],\n      [-99.92279, 35.22693],\n      [-99.92138, 35.22677],\n      [-99.9198, 35.22661],\n      [-99.91816, 35.22648],\n      [-99.91763, 35.22645],\n      [-99.91661, 35.22639],\n      [-99.9156, 35.22634],\n      [-99.91448, 35.2263],\n      [-99.91212, 35.22627],\n      [-99.91175, 35.22627],\n      [-99.90838, 35.22626],\n      [-99.90768, 35.22625],\n      [-99.89422, 35.2262],\n      [-99.89375, 35.2262],\n      [-99.8774, 35.22614],\n      [-99.87556, 35.22614],\n      [-99.87501, 35.22612],\n      [-99.87136, 35.22612],\n      [-99.87065, 35.22612],\n      [-99.86636, 35.22611],\n      [-99.86541, 35.2261],\n      [-99.86062, 35.22608],\n      [-99.85765, 35.22608],\n      [-99.85568, 35.22611],\n      [-99.85461, 35.22614],\n      [-99.85356, 35.22616],\n      [-99.85086, 35.22627],\n      [-99.84922, 35.22635],\n      [-99.84881, 35.22638],\n      [-99.84727, 35.22647],\n      [-99.8452, 35.22663],\n      [-99.84379, 35.22675],\n      [-99.84244, 35.22687],\n      [-99.8413, 35.22698],\n      [-99.83989, 35.22713],\n      [-99.83816, 35.22731],\n      [-99.835, 35.22765],\n      [-99.83377, 35.22778],\n      [-99.83371, 35.22779],\n      [-99.8323, 35.22794],\n      [-99.82592, 35.22862],\n      [-99.82447, 35.22878],\n      [-99.82324, 35.2289],\n      [-99.82203, 35.22903],\n      [-99.82089, 35.22913],\n      [-99.81977, 35.22923],\n      [-99.81902, 35.22928],\n      [-99.81762, 35.22939],\n      [-99.81597, 35.2295],\n      [-99.81447, 35.22959],\n      [-99.81303, 35.22965],\n      [-99.81158, 35.22971],\n      [-99.80978, 35.22976],\n      [-99.80675, 35.22981],\n      [-99.80476, 35.22981],\n      [-99.8033, 35.22981],\n      [-99.80159, 35.22981],\n      [-99.80019, 35.22982],\n      [-99.7982, 35.22982],\n      [-99.79725, 35.22981],\n      [-99.79659, 35.22982],\n      [-99.79478, 35.22981],\n      [-99.79445, 35.22981],\n      [-99.79406, 35.22982],\n      [-99.79295, 35.22983],\n      [-99.79184, 35.22986],\n      [-99.79075, 35.22991],\n      [-99.78983, 35.22997],\n      [-99.78945, 35.23001],\n      [-99.78839, 35.2301],\n      [-99.7877, 35.23017],\n      [-99.78669, 35.23029],\n      [-99.78585, 35.2304],\n      [-99.7848, 35.23056],\n      [-99.78368, 35.23075],\n      [-99.78269, 35.23094],\n      [-99.78235, 35.23101],\n      [-99.78133, 35.23123],\n      [-99.78015, 35.23151],\n      [-99.7792, 35.23176],\n      [-99.77818, 35.23204],\n      [-99.77681, 35.23246],\n      [-99.77573, 35.23282],\n      [-99.77467, 35.23318],\n      [-99.77284, 35.23388],\n      [-99.77148, 35.23445],\n      [-99.77008, 35.23509],\n      [-99.76869, 35.23577],\n      [-99.76699, 35.23668],\n      [-99.76636, 35.23703],\n      [-99.76281, 35.23902],\n      [-99.75683, 35.24233],\n      [-99.75317, 35.24436],\n      [-99.75271, 35.24462],\n      [-99.74899, 35.2467],\n      [-99.74086, 35.25122],\n      [-99.73976, 35.25182],\n      [-99.73886, 35.25232],\n      [-99.73773, 35.25292],\n      [-99.73562, 35.25397],\n      [-99.73358, 35.25491],\n      [-99.73186, 35.25565],\n      [-99.73029, 35.25628],\n      [-99.72872, 35.25688],\n      [-99.72717, 35.25742],\n      [-99.7258, 35.25788],\n      [-99.72504, 35.25813],\n      [-99.72422, 35.25838],\n      [-99.72364, 35.25855],\n      [-99.72272, 35.25881],\n      [-99.72178, 35.25907],\n      [-99.72043, 35.25942],\n      [-99.71919, 35.25972],\n      [-99.71758, 35.26008],\n      [-99.71635, 35.26033],\n      [-99.71518, 35.26056],\n      [-99.71392, 35.26078],\n      [-99.71286, 35.26096],\n      [-99.71159, 35.26114],\n      [-99.71032, 35.26131],\n      [-99.70908, 35.26146],\n      [-99.70786, 35.26159],\n      [-99.7063, 35.26173],\n      [-99.7052, 35.2618],\n      [-99.70402, 35.26188],\n      [-99.70305, 35.26192],\n      [-99.70172, 35.26197],\n      [-99.7005, 35.26199],\n      [-99.68217, 35.26194],\n      [-99.65838, 35.26185],\n      [-99.65767, 35.26185],\n      [-99.652, 35.26183],\n      [-99.65126, 35.26184],\n      [-99.6505, 35.26184],\n      [-99.64989, 35.26187],\n      [-99.64884, 35.26193],\n      [-99.64818, 35.26198],\n      [-99.64729, 35.26208],\n      [-99.6463, 35.26222],\n      [-99.64541, 35.26237],\n      [-99.64433, 35.26257],\n      [-99.64318, 35.26284],\n      [-99.64247, 35.26302],\n      [-99.64155, 35.26328],\n      [-99.64074, 35.26354],\n      [-99.64001, 35.26379],\n      [-99.63908, 35.26415],\n      [-99.6382, 35.2645],\n      [-99.63698, 35.26506],\n      [-99.63595, 35.26557],\n      [-99.63517, 35.266],\n      [-99.63424, 35.26654],\n      [-99.63346, 35.26704],\n      [-99.63249, 35.26771],\n      [-99.63175, 35.26825],\n      [-99.63115, 35.26874],\n      [-99.63052, 35.26927],\n      [-99.62979, 35.26992],\n      [-99.62904, 35.27067],\n      [-99.62827, 35.27149],\n      [-99.62762, 35.27225],\n      [-99.62676, 35.27338],\n      [-99.62644, 35.27382],\n      [-99.62597, 35.27454],\n      [-99.62555, 35.27522],\n      [-99.625, 35.27622],\n      [-99.62477, 35.2767],\n      [-99.62452, 35.27721],\n      [-99.62418, 35.27798],\n      [-99.62379, 35.279],\n      [-99.62353, 35.27985],\n      [-99.62262, 35.28281],\n      [-99.62151, 35.28646],\n      [-99.62103, 35.28805],\n      [-99.62075, 35.28898],\n      [-99.61992, 35.29169],\n      [-99.61918, 35.2941],\n      [-99.61906, 35.29447],\n      [-99.61888, 35.29507],\n      [-99.61565, 35.30572],\n      [-99.61501, 35.30788],\n      [-99.61443, 35.30974],\n      [-99.6142, 35.31046],\n      [-99.61365, 35.31229],\n      [-99.61338, 35.31308],\n      [-99.61254, 35.31517],\n      [-99.61222, 35.31585],\n      [-99.61202, 35.31626],\n      [-99.6118, 35.31666],\n      [-99.61128, 35.31758],\n      [-99.61104, 35.31799],\n      [-99.61063, 35.31866],\n      [-99.61015, 35.31941],\n      [-99.60962, 35.32019],\n      [-99.60919, 35.32078],\n      [-99.6087, 35.3214],\n      [-99.60796, 35.3223],\n      [-99.6073, 35.32306],\n      [-99.6065, 35.32401],\n      [-99.60452, 35.32635],\n      [-99.60254, 35.3287],\n      [-99.60056, 35.33103],\n      [-99.59858, 35.33336],\n      [-99.59816, 35.33386],\n      [-99.59777, 35.3343],\n      [-99.59739, 35.33468],\n      [-99.5972, 35.33486],\n      [-99.59708, 35.33498],\n      [-99.59663, 35.33538],\n      [-99.5962, 35.33575],\n      [-99.59561, 35.33622],\n      [-99.59496, 35.33671],\n      [-99.59418, 35.3373],\n      [-99.5934, 35.33788],\n      [-99.5927, 35.33836],\n      [-99.59212, 35.33874],\n      [-99.59158, 35.33909],\n      [-99.59108, 35.33939],\n      [-99.59027, 35.33989],\n      [-99.5898, 35.34015],\n      [-99.58943, 35.34036],\n      [-99.5811, 35.3449],\n      [-99.5804, 35.34529],\n      [-99.57613, 35.34762],\n      [-99.56513, 35.35363],\n      [-99.56252, 35.35506],\n      [-99.56145, 35.3557],\n      [-99.56027, 35.35644],\n      [-99.55904, 35.3573],\n      [-99.55829, 35.35783],\n      [-99.55749, 35.3584],\n      [-99.556, 35.35946],\n      [-99.55485, 35.3603],\n      [-99.54645, 35.36632],\n      [-99.54491, 35.36741],\n      [-99.5441, 35.36795],\n      [-99.54336, 35.36842],\n      [-99.54254, 35.36892],\n      [-99.54161, 35.36945],\n      [-99.54037, 35.37013],\n      [-99.53823, 35.37128],\n      [-99.52505, 35.37845],\n      [-99.5199, 35.38124],\n      [-99.5187, 35.38189],\n      [-99.51807, 35.38223],\n      [-99.51738, 35.38259],\n      [-99.51662, 35.38295],\n      [-99.516, 35.38321],\n      [-99.51538, 35.38347],\n      [-99.51463, 35.38376],\n      [-99.51413, 35.38394],\n      [-99.51377, 35.38406],\n      [-99.51293, 35.38433],\n      [-99.51223, 35.38452],\n      [-99.51131, 35.38476],\n      [-99.51057, 35.38493],\n      [-99.50993, 35.38506],\n      [-99.50911, 35.3852],\n      [-99.5083, 35.38532],\n      [-99.50744, 35.38543],\n      [-99.50658, 35.3855],\n      [-99.50576, 35.38555],\n      [-99.50524, 35.38557],\n      [-99.50443, 35.38559],\n      [-99.50181, 35.38559],\n      [-99.50092, 35.38559],\n      [-99.47631, 35.3856],\n      [-99.47453, 35.38561],\n      [-99.47269, 35.38566],\n      [-99.47027, 35.38573],\n      [-99.46927, 35.38577],\n      [-99.46803, 35.38583],\n      [-99.46642, 35.38592],\n      [-99.46544, 35.38599],\n      [-99.4636, 35.38611],\n      [-99.46204, 35.38624],\n      [-99.46061, 35.38632],\n      [-99.4593, 35.38637],\n      [-99.458, 35.3864],\n      [-99.4564, 35.38642],\n      [-99.45547, 35.38641],\n      [-99.45421, 35.38638],\n      [-99.45302, 35.38635],\n      [-99.45248, 35.38633],\n      [-99.45173, 35.38629],\n      [-99.45089, 35.38624],\n      [-99.44995, 35.38618],\n      [-99.44877, 35.38608],\n      [-99.44625, 35.38591],\n      [-99.44474, 35.38582],\n      [-99.44364, 35.38577],\n      [-99.4425, 35.38572],\n      [-99.44012, 35.38564],\n      [-99.43843, 35.38561],\n      [-99.43754, 35.3856],\n      [-99.43089, 35.38559],\n      [-99.42976, 35.38558],\n      [-99.42883, 35.38558],\n      [-99.42789, 35.38558],\n      [-99.42688, 35.38558],\n      [-99.42598, 35.38558],\n      [-99.42106, 35.38557],\n      [-99.41744, 35.38558],\n      [-99.41447, 35.38558],\n      [-99.4136, 35.38561],\n      [-99.41274, 35.38567],\n      [-99.41198, 35.38574],\n      [-99.41105, 35.38587],\n      [-99.41026, 35.38601],\n      [-99.40943, 35.38619],\n      [-99.40897, 35.3863],\n      [-99.40857, 35.38641],\n      [-99.40804, 35.38656],\n      [-99.40746, 35.38674],\n      [-99.40721, 35.38682],\n      [-99.40697, 35.3869],\n      [-99.40654, 35.38707],\n      [-99.40565, 35.38743],\n      [-99.40551, 35.38749],\n      [-99.40484, 35.3878],\n      [-99.4042, 35.38813],\n      [-99.40357, 35.38847],\n      [-99.40297, 35.38883],\n      [-99.40249, 35.38914],\n      [-99.40204, 35.38946],\n      [-99.4016, 35.38978],\n      [-99.40116, 35.39012],\n      [-99.40042, 35.39074],\n      [-99.39993, 35.39121],\n      [-99.39905, 35.39206],\n      [-99.39752, 35.39354],\n      [-99.39709, 35.39395],\n      [-99.39404, 35.39695],\n      [-99.39101, 35.3999],\n      [-99.38901, 35.40183],\n      [-99.38868, 35.40215],\n      [-99.38645, 35.40433],\n      [-99.38583, 35.40494],\n      [-99.38521, 35.40554],\n      [-99.38279, 35.40791],\n      [-99.38251, 35.40818],\n      [-99.37929, 35.41132],\n      [-99.37879, 35.41181],\n      [-99.37796, 35.4126],\n      [-99.37743, 35.41313],\n      [-99.3769, 35.41361],\n      [-99.37624, 35.41417],\n      [-99.37569, 35.41464],\n      [-99.37553, 35.41477],\n      [-99.37517, 35.41505],\n      [-99.37438, 35.41562],\n      [-99.37402, 35.41589],\n      [-99.37349, 35.41624],\n      [-99.37288, 35.41661],\n      [-99.37256, 35.41681],\n      [-99.3718, 35.41725],\n      [-99.37076, 35.41778],\n      [-99.36931, 35.4185],\n      [-99.36804, 35.41904],\n      [-99.36763, 35.4192],\n      [-99.36662, 35.41956],\n      [-99.36528, 35.41997],\n      [-99.36438, 35.42023],\n      [-99.36395, 35.42034],\n      [-99.36263, 35.42065],\n      [-99.36198, 35.42077],\n      [-99.36121, 35.42091],\n      [-99.36049, 35.42102],\n      [-99.35981, 35.42111],\n      [-99.359, 35.4212],\n      [-99.35834, 35.42126],\n      [-99.35765, 35.42131],\n      [-99.35695, 35.42135],\n      [-99.35619, 35.42137],\n      [-99.35542, 35.42138],\n      [-99.32926, 35.42145],\n      [-99.31145, 35.42152],\n      [-99.30701, 35.42153],\n      [-99.30611, 35.42156],\n      [-99.30564, 35.42159],\n      [-99.3051, 35.42163],\n      [-99.30454, 35.42169],\n      [-99.30405, 35.42176],\n      [-99.30332, 35.42187],\n      [-99.30248, 35.42204],\n      [-99.30178, 35.4222],\n      [-99.30103, 35.42239],\n      [-99.30044, 35.42257],\n      [-99.29987, 35.42276],\n      [-99.29933, 35.42294],\n      [-99.29872, 35.42318],\n      [-99.29807, 35.42345],\n      [-99.29732, 35.42377],\n      [-99.29654, 35.4241],\n      [-99.29588, 35.42436],\n      [-99.29516, 35.42463],\n      [-99.29448, 35.42486],\n      [-99.29394, 35.42504],\n      [-99.29351, 35.42517],\n      [-99.29291, 35.42534],\n      [-99.29233, 35.42549],\n      [-99.29159, 35.42567],\n      [-99.29099, 35.4258],\n      [-99.28998, 35.42599],\n      [-99.289, 35.42615],\n      [-99.28804, 35.42627],\n      [-99.28728, 35.42635],\n      [-99.28655, 35.4264],\n      [-99.28578, 35.42644],\n      [-99.285, 35.42647],\n      [-99.28426, 35.42648],\n      [-99.28324, 35.42646],\n      [-99.28248, 35.42643],\n      [-99.28178, 35.42638],\n      [-99.28111, 35.42632],\n      [-99.2805, 35.42626],\n      [-99.27983, 35.42618],\n      [-99.27924, 35.42609],\n      [-99.27825, 35.42593],\n      [-99.27762, 35.4258],\n      [-99.27692, 35.42565],\n      [-99.27603, 35.42544],\n      [-99.2755, 35.42529],\n      [-99.2745, 35.425],\n      [-99.27368, 35.42473],\n      [-99.27294, 35.42447],\n      [-99.27181, 35.42405],\n      [-99.27028, 35.4235],\n      [-99.26906, 35.42306],\n      [-99.26796, 35.42268],\n      [-99.26722, 35.42245],\n      [-99.26648, 35.42225],\n      [-99.26561, 35.42205],\n      [-99.26442, 35.42184],\n      [-99.26351, 35.42172],\n      [-99.26278, 35.42165],\n      [-99.26202, 35.4216],\n      [-99.26126, 35.42157],\n      [-99.25109, 35.42157],\n      [-99.24099, 35.42158],\n      [-99.23241, 35.42157],\n      [-99.23126, 35.42159],\n      [-99.23042, 35.4216],\n      [-99.22973, 35.42163],\n      [-99.22903, 35.42168],\n      [-99.22829, 35.42175],\n      [-99.22732, 35.42185],\n      [-99.22663, 35.42194],\n      [-99.22572, 35.42207],\n      [-99.22491, 35.42221],\n      [-99.22397, 35.4224],\n      [-99.22319, 35.42256],\n      [-99.22277, 35.42266],\n      [-99.22169, 35.42294],\n      [-99.22078, 35.4232],\n      [-99.21989, 35.42348],\n      [-99.219, 35.42379],\n      [-99.21783, 35.42424],\n      [-99.21697, 35.42459],\n      [-99.21621, 35.42492],\n      [-99.21564, 35.42519],\n      [-99.21527, 35.42537],\n      [-99.2144, 35.42582],\n      [-99.21408, 35.42599],\n      [-99.2134, 35.42638],\n      [-99.21277, 35.42674],\n      [-99.21078, 35.42794],\n      [-99.20094, 35.43388],\n      [-99.20017, 35.43434],\n      [-99.19936, 35.4348],\n      [-99.19864, 35.43518],\n      [-99.19781, 35.43561],\n      [-99.19681, 35.4361],\n      [-99.1959, 35.43653],\n      [-99.19477, 35.43703],\n      [-99.19378, 35.43744],\n      [-99.1926, 35.4379],\n      [-99.19175, 35.4382],\n      [-99.19098, 35.43848],\n      [-99.19019, 35.43874],\n      [-99.18936, 35.439],\n      [-99.18836, 35.43929],\n      [-99.18744, 35.43955],\n      [-99.1863, 35.43984],\n      [-99.18541, 35.44005],\n      [-99.18371, 35.44041],\n      [-99.18049, 35.44105],\n      [-99.17867, 35.44142],\n      [-99.17727, 35.44172],\n      [-99.17637, 35.44193],\n      [-99.17515, 35.44226],\n      [-99.17435, 35.44249],\n      [-99.17366, 35.44269],\n      [-99.17302, 35.44291],\n      [-99.1723, 35.44317],\n      [-99.17098, 35.44365],\n      [-99.17035, 35.44391],\n      [-99.16883, 35.44457],\n      [-99.16815, 35.44488],\n      [-99.16749, 35.44522],\n      [-99.16689, 35.44553],\n      [-99.16604, 35.44599],\n      [-99.16516, 35.44649],\n      [-99.16426, 35.44703],\n      [-99.16347, 35.44753],\n      [-99.16255, 35.44816],\n      [-99.16147, 35.44895],\n      [-99.16044, 35.44976],\n      [-99.1595, 35.45056],\n      [-99.15854, 35.45141],\n      [-99.15068, 35.45836],\n      [-99.14724, 35.4614],\n      [-99.14472, 35.46363],\n      [-99.1423, 35.46575],\n      [-99.14116, 35.46675],\n      [-99.14048, 35.46732],\n      [-99.13966, 35.46795],\n      [-99.13872, 35.46865],\n      [-99.1377, 35.46933],\n      [-99.13679, 35.46992],\n      [-99.13603, 35.47038],\n      [-99.1351, 35.47092],\n      [-99.1341, 35.47145],\n      [-99.13308, 35.47196],\n      [-99.132, 35.47246],\n      [-99.13056, 35.47309],\n      [-99.12672, 35.47474],\n      [-99.12315, 35.47627],\n      [-99.12188, 35.47681],\n      [-99.11967, 35.47776],\n      [-99.11872, 35.47818],\n      [-99.11791, 35.47851],\n      [-99.11733, 35.47872],\n      [-99.11678, 35.4789],\n      [-99.11624, 35.47907],\n      [-99.11558, 35.47925],\n      [-99.11496, 35.47941],\n      [-99.11427, 35.47956],\n      [-99.11387, 35.47964],\n      [-99.11327, 35.47974],\n      [-99.11269, 35.47982],\n      [-99.11212, 35.47989],\n      [-99.11144, 35.47995],\n      [-99.11058, 35.48],\n      [-99.10962, 35.48001],\n      [-99.10512, 35.48],\n      [-99.10173, 35.48],\n      [-99.08166, 35.47996],\n      [-99.06394, 35.47994],\n      [-99.05665, 35.47993],\n      [-99.05419, 35.47993],\n      [-99.05131, 35.47991],\n      [-99.05084, 35.47991],\n      [-99.04778, 35.47992],\n      [-99.03849, 35.4799],\n      [-99.03197, 35.47989],\n      [-99.03129, 35.47991],\n      [-99.03042, 35.47994],\n      [-99.02963, 35.47998],\n      [-99.02897, 35.48003],\n      [-99.02783, 35.48015],\n      [-99.02704, 35.48025],\n      [-99.02629, 35.48035],\n      [-99.02583, 35.48043],\n      [-99.02524, 35.48054],\n      [-99.02465, 35.48065],\n      [-99.02423, 35.48074],\n      [-99.02391, 35.48081],\n      [-99.02321, 35.48097],\n      [-99.02261, 35.48112],\n      [-99.02214, 35.48124],\n      [-99.02147, 35.48144],\n      [-99.0203, 35.4818],\n      [-99.01965, 35.48202],\n      [-99.01885, 35.48231],\n      [-99.01781, 35.48272],\n      [-99.0167, 35.4832],\n      [-99.01601, 35.48353],\n      [-99.01507, 35.484],\n      [-99.0141, 35.48452],\n      [-99.01306, 35.48513],\n      [-99.01225, 35.48564],\n      [-99.01138, 35.48623],\n      [-99.01057, 35.48682],\n      [-99.00946, 35.48768],\n      [-99.00808, 35.48878],\n      [-99.00685, 35.48975],\n      [-99.00601, 35.49036],\n      [-99.00535, 35.49081],\n      [-99.00459, 35.4913],\n      [-99.00371, 35.49184],\n      [-99.00285, 35.49231],\n      [-99.00196, 35.49278],\n      [-99.00116, 35.49317],\n      [-99.00002, 35.49368],\n      [-98.99902, 35.49408],\n      [-98.9979, 35.4945],\n      [-98.99695, 35.49482],\n      [-98.9958, 35.49517],\n      [-98.99485, 35.49543],\n      [-98.99391, 35.49565],\n      [-98.99309, 35.49584],\n      [-98.99251, 35.49595],\n      [-98.99107, 35.49622],\n      [-98.99023, 35.49638],\n      [-98.98537, 35.49732],\n      [-98.98261, 35.49785],\n      [-98.98167, 35.49803],\n      [-98.97924, 35.4985],\n      [-98.97856, 35.49863],\n      [-98.97719, 35.49889],\n      [-98.97591, 35.49914],\n      [-98.97479, 35.49935],\n      [-98.97359, 35.49959],\n      [-98.97241, 35.49981],\n      [-98.97164, 35.49994],\n      [-98.97112, 35.50003],\n      [-98.97043, 35.50012],\n      [-98.9699, 35.50019],\n      [-98.96913, 35.50027],\n      [-98.96795, 35.50038],\n      [-98.96723, 35.50043],\n      [-98.96664, 35.50046],\n      [-98.96595, 35.50048],\n      [-98.96504, 35.5005],\n      [-98.96488, 35.5005],\n      [-98.96443, 35.5005],\n      [-98.96353, 35.50049],\n      [-98.96273, 35.50046],\n      [-98.96207, 35.50043],\n      [-98.96129, 35.50037],\n      [-98.96046, 35.50032],\n      [-98.95875, 35.50019],\n      [-98.9566, 35.50002],\n      [-98.95531, 35.49993],\n      [-98.95448, 35.49989],\n      [-98.95371, 35.49988],\n      [-98.95311, 35.49989],\n      [-98.95225, 35.49993],\n      [-98.95155, 35.49998],\n      [-98.95097, 35.50004],\n      [-98.95023, 35.50014],\n      [-98.94972, 35.50022],\n      [-98.94932, 35.5003],\n      [-98.94841, 35.50049],\n      [-98.94774, 35.50066],\n      [-98.94693, 35.5009],\n      [-98.94628, 35.50111],\n      [-98.94544, 35.50142],\n      [-98.94478, 35.50169],\n      [-98.94406, 35.50201],\n      [-98.9431, 35.50246],\n      [-98.94128, 35.50331],\n      [-98.92355, 35.51161],\n      [-98.92131, 35.51265],\n      [-98.92076, 35.51291],\n      [-98.9202, 35.51317],\n      [-98.91964, 35.51342],\n      [-98.91906, 35.51366],\n      [-98.91841, 35.51392],\n      [-98.9178, 35.51414],\n      [-98.91724, 35.51434],\n      [-98.91668, 35.51453],\n      [-98.91594, 35.51475],\n      [-98.91507, 35.51499],\n      [-98.91418, 35.51521],\n      [-98.91321, 35.51543],\n      [-98.9124, 35.51558],\n      [-98.91158, 35.51572],\n      [-98.91081, 35.51583],\n      [-98.91017, 35.51591],\n      [-98.90978, 35.51595],\n      [-98.90929, 35.516],\n      [-98.9087, 35.51604],\n      [-98.90781, 35.51609],\n      [-98.90692, 35.51612],\n      [-98.90583, 35.51613],\n      [-98.87634, 35.51608],\n      [-98.87402, 35.51608],\n      [-98.87079, 35.51608],\n      [-98.86967, 35.51607],\n      [-98.86645, 35.51607],\n      [-98.86466, 35.51606],\n      [-98.8593, 35.51606],\n      [-98.85661, 35.51605],\n      [-98.85517, 35.51605],\n      [-98.854, 35.51605],\n      [-98.85323, 35.51607],\n      [-98.85249, 35.5161],\n      [-98.85173, 35.51616],\n      [-98.85095, 35.51624],\n      [-98.85049, 35.5163],\n      [-98.85001, 35.51636],\n      [-98.84912, 35.51651],\n      [-98.84805, 35.51672],\n      [-98.84684, 35.51702],\n      [-98.846, 35.51722],\n      [-98.84509, 35.51747],\n      [-98.84056, 35.51867],\n      [-98.83835, 35.51926],\n      [-98.83708, 35.5196],\n      [-98.8358, 35.51994],\n      [-98.83489, 35.52018],\n      [-98.83308, 35.52065],\n      [-98.83198, 35.52091],\n      [-98.8313, 35.52107],\n      [-98.83067, 35.5212],\n      [-98.82982, 35.52137],\n      [-98.82894, 35.52152],\n      [-98.82819, 35.52165],\n      [-98.82737, 35.52177],\n      [-98.82649, 35.52189],\n      [-98.82563, 35.522],\n      [-98.82467, 35.5221],\n      [-98.82374, 35.52218],\n      [-98.8226, 35.52226],\n      [-98.82158, 35.52232],\n      [-98.82061, 35.52235],\n      [-98.81947, 35.52237],\n      [-98.80782, 35.52231],\n      [-98.80203, 35.52227],\n      [-98.79624, 35.52224],\n      [-98.79123, 35.52222],\n      [-98.78663, 35.52219],\n      [-98.78227, 35.52216],\n      [-98.78194, 35.52216],\n      [-98.76443, 35.5221],\n      [-98.75001, 35.52204],\n      [-98.74137, 35.52201],\n      [-98.74053, 35.522],\n      [-98.73967, 35.52198],\n      [-98.739, 35.52194],\n      [-98.73841, 35.5219],\n      [-98.73788, 35.52186],\n      [-98.73727, 35.5218],\n      [-98.73693, 35.52177],\n      [-98.73636, 35.5217],\n      [-98.73525, 35.52157],\n      [-98.73449, 35.52145],\n      [-98.7323, 35.5211],\n      [-98.7308, 35.52085],\n      [-98.7289, 35.52055],\n      [-98.7279, 35.5204],\n      [-98.72721, 35.52032],\n      [-98.72678, 35.52028],\n      [-98.72604, 35.52024],\n      [-98.72525, 35.52023],\n      [-98.72461, 35.52023],\n      [-98.72398, 35.52024],\n      [-98.72327, 35.52028],\n      [-98.72231, 35.52038],\n      [-98.72162, 35.52046],\n      [-98.72083, 35.52057],\n      [-98.71903, 35.52085],\n      [-98.71817, 35.52099],\n      [-98.71764, 35.52107],\n      [-98.71699, 35.52116],\n      [-98.71639, 35.52124],\n      [-98.71535, 35.52134],\n      [-98.71497, 35.52138],\n      [-98.71434, 35.52143],\n      [-98.71325, 35.5215],\n      [-98.71277, 35.52152],\n      [-98.71228, 35.52154],\n      [-98.71129, 35.52156],\n      [-98.70915, 35.52156],\n      [-98.70797, 35.52155],\n      [-98.7075, 35.52156],\n      [-98.70079, 35.52156],\n      [-98.69988, 35.52157],\n      [-98.69937, 35.52157],\n      [-98.69882, 35.5216],\n      [-98.69806, 35.52168],\n      [-98.69779, 35.52172],\n      [-98.69748, 35.52177],\n      [-98.69708, 35.52185],\n      [-98.69677, 35.52192],\n      [-98.69627, 35.52206],\n      [-98.69582, 35.52221],\n      [-98.69541, 35.52236],\n      [-98.69502, 35.52251],\n      [-98.69463, 35.52269],\n      [-98.69441, 35.52281],\n      [-98.69414, 35.52295],\n      [-98.69392, 35.52308],\n      [-98.6937, 35.52321],\n      [-98.69338, 35.52343],\n      [-98.69304, 35.52366],\n      [-98.69277, 35.52387],\n      [-98.69254, 35.52407],\n      [-98.69219, 35.52438],\n      [-98.692, 35.52457],\n      [-98.69162, 35.52497],\n      [-98.69109, 35.52555],\n      [-98.69065, 35.52602],\n      [-98.69001, 35.52675],\n      [-98.68917, 35.5277],\n      [-98.68862, 35.52828],\n      [-98.68819, 35.52872],\n      [-98.68791, 35.52898],\n      [-98.6875, 35.52937],\n      [-98.68692, 35.52985],\n      [-98.68635, 35.53028],\n      [-98.68587, 35.53063],\n      [-98.68544, 35.53092],\n      [-98.6852, 35.53108],\n      [-98.68294, 35.5326],\n      [-98.68057, 35.5342],\n      [-98.6799, 35.53463],\n      [-98.67939, 35.53493],\n      [-98.67908, 35.53509],\n      [-98.67878, 35.53523],\n      [-98.6784, 35.53539],\n      [-98.67803, 35.53553],\n      [-98.67775, 35.53564],\n      [-98.67741, 35.53574],\n      [-98.67712, 35.53582],\n      [-98.67684, 35.5359],\n      [-98.67649, 35.53598],\n      [-98.67617, 35.53604],\n      [-98.67567, 35.53613],\n      [-98.67517, 35.53618],\n      [-98.6748, 35.5362],\n      [-98.67441, 35.53622],\n      [-98.67346, 35.53623],\n      [-98.66536, 35.53623],\n      [-98.66297, 35.53623],\n      [-98.66202, 35.53623],\n      [-98.65878, 35.53624],\n      [-98.6552, 35.53624],\n      [-98.65488, 35.53624],\n      [-98.65365, 35.53625],\n      [-98.64243, 35.53626],\n      [-98.63993, 35.53626],\n      [-98.62637, 35.53627],\n      [-98.62012, 35.53627],\n      [-98.60052, 35.53625],\n      [-98.59025, 35.53625],\n      [-98.58728, 35.53625],\n      [-98.58636, 35.53625],\n      [-98.58277, 35.53626],\n      [-98.57957, 35.53626],\n      [-98.57911, 35.53626],\n      [-98.5711, 35.53627],\n      [-98.57063, 35.53627],\n      [-98.56686, 35.53628],\n      [-98.56382, 35.53629],\n      [-98.56105, 35.5363],\n      [-98.56013, 35.5363],\n      [-98.5595, 35.53629],\n      [-98.55889, 35.53627],\n      [-98.55842, 35.53626],\n      [-98.55759, 35.53622],\n      [-98.55687, 35.53618],\n      [-98.55618, 35.53613],\n      [-98.55518, 35.53604],\n      [-98.55439, 35.53597],\n      [-98.55366, 35.53588],\n      [-98.55305, 35.53581],\n      [-98.55219, 35.53568],\n      [-98.55122, 35.53554],\n      [-98.55022, 35.53537],\n      [-98.54931, 35.53519],\n      [-98.54831, 35.53498],\n      [-98.54766, 35.53484],\n      [-98.54674, 35.53462],\n      [-98.54521, 35.53423],\n      [-98.54373, 35.53384],\n      [-98.5357, 35.53174],\n      [-98.53527, 35.53163],\n      [-98.53437, 35.53139],\n      [-98.53339, 35.53114],\n      [-98.53274, 35.53096],\n      [-98.53197, 35.53076],\n      [-98.53108, 35.53054],\n      [-98.53021, 35.53033],\n      [-98.52916, 35.53011],\n      [-98.52859, 35.53],\n      [-98.52801, 35.5299],\n      [-98.52716, 35.52977],\n      [-98.52603, 35.52962],\n      [-98.52555, 35.52958],\n      [-98.52504, 35.52953],\n      [-98.52401, 35.52946],\n      [-98.52317, 35.52941],\n      [-98.52252, 35.52939],\n      [-98.52105, 35.52939],\n      [-98.5198, 35.52938],\n      [-98.51846, 35.52938],\n      [-98.51041, 35.52937],\n      [-98.48265, 35.52934],\n      [-98.46986, 35.52932],\n      [-98.46923, 35.52932],\n      [-98.46617, 35.52931],\n      [-98.46494, 35.52931],\n      [-98.46447, 35.52931],\n      [-98.46359, 35.5293],\n      [-98.46213, 35.52927],\n      [-98.46067, 35.52922],\n      [-98.45931, 35.52917],\n      [-98.45826, 35.52913],\n      [-98.45724, 35.52911],\n      [-98.45611, 35.52908],\n      [-98.45444, 35.52907],\n      [-98.45289, 35.52907],\n      [-98.4511, 35.52906],\n      [-98.44721, 35.52905],\n      [-98.44057, 35.52904],\n      [-98.43844, 35.52904],\n      [-98.43747, 35.52905],\n      [-98.43676, 35.52907],\n      [-98.43612, 35.52908],\n      [-98.43552, 35.5291],\n      [-98.43447, 35.52915],\n      [-98.43342, 35.52918],\n      [-98.43257, 35.5292],\n      [-98.43141, 35.52922],\n      [-98.43003, 35.52923],\n      [-98.41148, 35.5292],\n      [-98.40993, 35.52919],\n      [-98.40909, 35.52919],\n      [-98.40851, 35.52918],\n      [-98.40753, 35.52917],\n      [-98.40638, 35.52915],\n      [-98.40546, 35.52913],\n      [-98.40471, 35.52911],\n      [-98.40403, 35.52908],\n      [-98.40317, 35.52905],\n      [-98.4021, 35.52902],\n      [-98.40175, 35.52902],\n      [-98.40045, 35.529],\n      [-98.39937, 35.52901],\n      [-98.39842, 35.52903],\n      [-98.39741, 35.52905],\n      [-98.3966, 35.52908],\n      [-98.39537, 35.52911],\n      [-98.39453, 35.52913],\n      [-98.39367, 35.52914],\n      [-98.3912, 35.52915],\n      [-98.39009, 35.52915],\n      [-98.38804, 35.52915],\n      [-98.38596, 35.52914],\n      [-98.38561, 35.52914],\n      [-98.375, 35.52912],\n      [-98.36433, 35.5291],\n      [-98.35848, 35.52908],\n      [-98.35648, 35.52908],\n      [-98.35398, 35.52907],\n      [-98.35085, 35.52906],\n      [-98.35047, 35.52906],\n      [-98.347, 35.52906],\n      [-98.33681, 35.52902],\n      [-98.33528, 35.52901],\n      [-98.33433, 35.52899],\n      [-98.33356, 35.52895],\n      [-98.33281, 35.5289],\n      [-98.33198, 35.52883],\n      [-98.33136, 35.52877],\n      [-98.33037, 35.52864],\n      [-98.32958, 35.52851],\n      [-98.32889, 35.52839],\n      [-98.32788, 35.52819],\n      [-98.32686, 35.52796],\n      [-98.31957, 35.52614],\n      [-98.31568, 35.52516],\n      [-98.31192, 35.52423],\n      [-98.31058, 35.52388],\n      [-98.30901, 35.5235],\n      [-98.30791, 35.52322],\n      [-98.30705, 35.52303],\n      [-98.30647, 35.52293],\n      [-98.30606, 35.52286],\n      [-98.30513, 35.52273],\n      [-98.30471, 35.52268],\n      [-98.30425, 35.52264],\n      [-98.30377, 35.52262],\n      [-98.30303, 35.52259],\n      [-98.30259, 35.52258],\n      [-98.30173, 35.52259],\n      [-98.30119, 35.52262],\n      [-98.30055, 35.52266],\n      [-98.29985, 35.52273],\n      [-98.2993, 35.52279],\n      [-98.29864, 35.52289],\n      [-98.29772, 35.52306],\n      [-98.29714, 35.5232],\n      [-98.29643, 35.52337],\n      [-98.29584, 35.52354],\n      [-98.29515, 35.52376],\n      [-98.2946, 35.52395],\n      [-98.2942, 35.5241],\n      [-98.29383, 35.52425],\n      [-98.29309, 35.52456],\n      [-98.29223, 35.52498],\n      [-98.29146, 35.52539],\n      [-98.29057, 35.52591],\n      [-98.28795, 35.52745],\n      [-98.28104, 35.53152],\n      [-98.27543, 35.53483],\n      [-98.27479, 35.5352],\n      [-98.27428, 35.53547],\n      [-98.27377, 35.53571],\n      [-98.27324, 35.53593],\n      [-98.27268, 35.53614],\n      [-98.27212, 35.53631],\n      [-98.27154, 35.53647],\n      [-98.27096, 35.5366],\n      [-98.27039, 35.53671],\n      [-98.27009, 35.53675],\n      [-98.2695, 35.53683],\n      [-98.26889, 35.53687],\n      [-98.2683, 35.53689],\n      [-98.26769, 35.5369],\n      [-98.25774, 35.53669],\n      [-98.25714, 35.53667],\n      [-98.25653, 35.53665],\n      [-98.25574, 35.5366],\n      [-98.25503, 35.53654],\n      [-98.25443, 35.53648],\n      [-98.25354, 35.53637],\n      [-98.25264, 35.53624],\n      [-98.25205, 35.53615],\n      [-98.25088, 35.53593],\n      [-98.24519, 35.53471],\n      [-98.24196, 35.53402],\n      [-98.23802, 35.53318],\n      [-98.23283, 35.53206],\n      [-98.22808, 35.53105],\n      [-98.22569, 35.53053],\n      [-98.22341, 35.53004],\n      [-98.22195, 35.52973],\n      [-98.22075, 35.52947],\n      [-98.21932, 35.52919],\n      [-98.21813, 35.52899],\n      [-98.21723, 35.52885],\n      [-98.21635, 35.52873],\n      [-98.21545, 35.52861],\n      [-98.21455, 35.52851],\n      [-98.21304, 35.52838],\n      [-98.21153, 35.52829],\n      [-98.21031, 35.52824],\n      [-98.20913, 35.52822],\n      [-98.2079, 35.52822],\n      [-98.2067, 35.52825],\n      [-98.20247, 35.52838],\n      [-98.20193, 35.52839],\n      [-98.20066, 35.52844],\n      [-98.19914, 35.52852],\n      [-98.19733, 35.52863],\n      [-98.19614, 35.52872],\n      [-98.19458, 35.52886],\n      [-98.19235, 35.52907],\n      [-98.19178, 35.52912],\n      [-98.19103, 35.52918],\n      [-98.19012, 35.52925],\n      [-98.18922, 35.5293],\n      [-98.18831, 35.52935],\n      [-98.18741, 35.52938],\n      [-98.18651, 35.52941],\n      [-98.1858, 35.52943],\n      [-98.18412, 35.52945],\n      [-98.18288, 35.52946],\n      [-98.18075, 35.5295],\n      [-98.17878, 35.52958],\n      [-98.17764, 35.52965],\n      [-98.17609, 35.52975],\n      [-98.17475, 35.52983],\n      [-98.17359, 35.52989],\n      [-98.17232, 35.52993],\n      [-98.17142, 35.52996],\n      [-98.17051, 35.52998],\n      [-98.16881, 35.52997],\n      [-98.16749, 35.52995],\n      [-98.16712, 35.52994],\n      [-98.16678, 35.52993],\n      [-98.16235, 35.52977],\n      [-98.15811, 35.52964],\n      [-98.1563, 35.52959],\n      [-98.15449, 35.52956],\n      [-98.15267, 35.52953],\n      [-98.15086, 35.52951],\n      [-98.14845, 35.5295],\n      [-98.13186, 35.52955],\n      [-98.12362, 35.52957],\n      [-98.12211, 35.52956],\n      [-98.12076, 35.52954],\n      [-98.11794, 35.52947],\n      [-98.11726, 35.52945],\n      [-98.11531, 35.52936],\n      [-98.11423, 35.52931],\n      [-98.11075, 35.5291],\n      [-98.10907, 35.529],\n      [-98.10729, 35.52888],\n      [-98.10397, 35.52868],\n      [-98.10247, 35.52859],\n      [-98.10095, 35.52853],\n      [-98.09944, 35.52849],\n      [-98.09792, 35.52848],\n      [-98.09651, 35.5285],\n      [-98.09549, 35.52853],\n      [-98.09417, 35.52859],\n      [-98.09291, 35.52866],\n      [-98.09157, 35.52876],\n      [-98.08976, 35.52894],\n      [-98.08767, 35.52916],\n      [-98.08585, 35.52931],\n      [-98.08465, 35.5294],\n      [-98.08375, 35.52946],\n      [-98.08253, 35.52952],\n      [-98.08085, 35.5296],\n      [-98.07885, 35.52965],\n      [-98.06115, 35.5297],\n      [-98.05826, 35.5297],\n      [-98.05472, 35.52971],\n      [-98.05386, 35.52971],\n      [-98.04983, 35.52972],\n      [-98.04807, 35.52973],\n      [-98.04717, 35.52972],\n      [-98.04628, 35.5297],\n      [-98.04603, 35.52968],\n      [-98.04558, 35.52965],\n      [-98.04508, 35.52961],\n      [-98.04434, 35.52952],\n      [-98.04397, 35.52947],\n      [-98.04373, 35.52943],\n      [-98.04329, 35.52935],\n      [-98.04249, 35.52919],\n      [-98.04173, 35.52901],\n      [-98.04128, 35.52889],\n      [-98.04076, 35.52874],\n      [-98.03996, 35.52849],\n      [-98.03484, 35.52661],\n      [-98.02697, 35.52372],\n      [-98.0232, 35.52234],\n      [-98.02161, 35.52176],\n      [-98.00926, 35.51722],\n      [-98.00636, 35.51616],\n      [-98.0042, 35.51537],\n      [-98.0032, 35.515],\n      [-98.00224, 35.51466],\n      [-98.00097, 35.51425],\n      [-98.00032, 35.51406],\n      [-97.99961, 35.51387],\n      [-97.99854, 35.5136],\n      [-97.99763, 35.5134],\n      [-97.99648, 35.51318],\n      [-97.99555, 35.51304],\n      [-97.99437, 35.51287],\n      [-97.9929, 35.51267],\n      [-97.99151, 35.51246],\n      [-97.98974, 35.51216],\n      [-97.98798, 35.51184],\n      [-97.9866, 35.51156],\n      [-97.98521, 35.51126],\n      [-97.98412, 35.51103],\n      [-97.98329, 35.51083],\n      [-97.9825, 35.51064],\n      [-97.98144, 35.51038],\n      [-97.97973, 35.50993],\n      [-97.9783, 35.50953],\n      [-97.97696, 35.50914],\n      [-97.97595, 35.50883],\n      [-97.97434, 35.50833],\n      [-97.97275, 35.50779],\n      [-97.97088, 35.50713],\n      [-97.96902, 35.50643],\n      [-97.9601, 35.50305],\n      [-97.95932, 35.50275],\n      [-97.95849, 35.50244],\n      [-97.95754, 35.50211],\n      [-97.95684, 35.5019],\n      [-97.956, 35.50169],\n      [-97.95508, 35.50148],\n      [-97.95474, 35.50142],\n      [-97.9539, 35.5013],\n      [-97.95328, 35.50123],\n      [-97.95253, 35.50115],\n      [-97.95173, 35.50111],\n      [-97.95098, 35.5011],\n      [-97.95047, 35.5011],\n      [-97.94978, 35.5011],\n      [-97.94626, 35.50111],\n      [-97.94303, 35.50111],\n      [-97.93826, 35.50113],\n      [-97.93755, 35.50112],\n      [-97.93677, 35.50112],\n      [-97.93534, 35.50113],\n      [-97.93213, 35.50114],\n      [-97.92531, 35.50115],\n      [-97.92476, 35.50115],\n      [-97.9194, 35.50116],\n      [-97.91797, 35.50114],\n      [-97.91646, 35.50109],\n      [-97.91531, 35.50106],\n      [-97.91419, 35.501],\n      [-97.9129, 35.50093],\n      [-97.91092, 35.50079],\n      [-97.90893, 35.50064],\n      [-97.9067, 35.50052],\n      [-97.90452, 35.50046],\n      [-97.90343, 35.50044],\n      [-97.90278, 35.50043],\n      [-97.90226, 35.50042],\n      [-97.90163, 35.50042],\n      [-97.8997, 35.50044],\n      [-97.89852, 35.50046],\n      [-97.89674, 35.50053],\n      [-97.89372, 35.50069],\n      [-97.89235, 35.50079],\n      [-97.89138, 35.50087],\n      [-97.89009, 35.50097],\n      [-97.88872, 35.50106],\n      [-97.88701, 35.50115],\n      [-97.88616, 35.50118],\n      [-97.88535, 35.5012],\n      [-97.88388, 35.50122],\n      [-97.88273, 35.50122],\n      [-97.88151, 35.50121],\n      [-97.87975, 35.50115],\n      [-97.87862, 35.5011],\n      [-97.87445, 35.50084],\n      [-97.87359, 35.50079],\n      [-97.86645, 35.50033],\n      [-97.86117, 35.5],\n      [-97.85963, 35.49993],\n      [-97.85809, 35.49989],\n      [-97.85663, 35.49987],\n      [-97.85519, 35.49988],\n      [-97.8539, 35.4999],\n      [-97.85244, 35.49995],\n      [-97.84879, 35.50008],\n      [-97.84501, 35.50021],\n      [-97.84425, 35.50024],\n      [-97.84361, 35.50026],\n      [-97.83095, 35.5007],\n      [-97.8242, 35.50094],\n      [-97.82163, 35.50099],\n      [-97.81918, 35.50102],\n      [-97.8181, 35.50101],\n      [-97.81672, 35.501],\n      [-97.81306, 35.50099],\n      [-97.80964, 35.50098],\n      [-97.79943, 35.50095],\n      [-97.79822, 35.50093],\n      [-97.7976, 35.5009],\n      [-97.79693, 35.50086],\n      [-97.79628, 35.50081],\n      [-97.79556, 35.50074],\n      [-97.79502, 35.50069],\n      [-97.79431, 35.5006],\n      [-97.79368, 35.50052],\n      [-97.79281, 35.50039],\n      [-97.79194, 35.50024],\n      [-97.79132, 35.50012],\n      [-97.79069, 35.49999],\n      [-97.78976, 35.49979],\n      [-97.78872, 35.49953],\n      [-97.78782, 35.49927],\n      [-97.78686, 35.49898],\n      [-97.78591, 35.49867],\n      [-97.7852, 35.49841],\n      [-97.78449, 35.49815],\n      [-97.78356, 35.49778],\n      [-97.7825, 35.49732],\n      [-97.78009, 35.49621],\n      [-97.7781, 35.49529],\n      [-97.77769, 35.4951],\n      [-97.77616, 35.49439],\n      [-97.77478, 35.49376],\n      [-97.76796, 35.4906],\n      [-97.76663, 35.48997],\n      [-97.76529, 35.48932],\n      [-97.76429, 35.4888],\n      [-97.76352, 35.48842],\n      [-97.76251, 35.4879],\n      [-97.76115, 35.48718],\n      [-97.76052, 35.48684],\n      [-97.75997, 35.48654],\n      [-97.75858, 35.48577],\n      [-97.75721, 35.485],\n      [-97.75649, 35.48458],\n      [-97.75474, 35.48355],\n      [-97.7504, 35.48088],\n      [-97.7497, 35.48046],\n      [-97.74903, 35.48007],\n      [-97.74774, 35.47935],\n      [-97.74714, 35.47901],\n      [-97.74642, 35.47862],\n      [-97.7454, 35.47809],\n      [-97.74405, 35.47739],\n      [-97.74267, 35.47672],\n      [-97.73895, 35.47496],\n      [-97.73586, 35.47351],\n      [-97.73357, 35.47244],\n      [-97.73133, 35.47137],\n      [-97.72972, 35.47057],\n      [-97.72823, 35.46982],\n      [-97.72621, 35.46875],\n      [-97.72487, 35.46802],\n      [-97.72469, 35.46793],\n      [-97.72418, 35.46765],\n      [-97.72331, 35.46716],\n      [-97.7222, 35.46653],\n      [-97.72049, 35.46553],\n      [-97.71961, 35.46504],\n      [-97.71873, 35.46457],\n      [-97.71783, 35.46412],\n      [-97.71708, 35.46377],\n      [-97.71621, 35.46339],\n      [-97.71526, 35.463],\n      [-97.71474, 35.4628],\n      [-97.71393, 35.4625],\n      [-97.7131, 35.46221],\n      [-97.71149, 35.46172],\n      [-97.7112, 35.46164],\n      [-97.71029, 35.4614],\n      [-97.70961, 35.46122],\n      [-97.70804, 35.46089],\n      [-97.70749, 35.46078],\n      [-97.70693, 35.46068],\n      [-97.70602, 35.46053],\n      [-97.70514, 35.46041],\n      [-97.70433, 35.46032],\n      [-97.70354, 35.46024],\n      [-97.70204, 35.46013],\n      [-97.70043, 35.46007],\n      [-97.69954, 35.46005],\n      [-97.69838, 35.46006],\n      [-97.69608, 35.46007],\n      [-97.6896, 35.4601],\n      [-97.68863, 35.46011],\n      [-97.68188, 35.46015],\n      [-97.68007, 35.46015],\n      [-97.67729, 35.46017],\n      [-97.67211, 35.46019],\n      [-97.67015, 35.4602],\n      [-97.66732, 35.46021],\n      [-97.65921, 35.46025],\n      [-97.65817, 35.46026],\n      [-97.65024, 35.4603],\n      [-97.64978, 35.4603],\n      [-97.63863, 35.46035],\n      [-97.63769, 35.46035],\n      [-97.63436, 35.46036],\n      [-97.63364, 35.46036],\n      [-97.6328, 35.46035],\n      [-97.63189, 35.46033],\n      [-97.63071, 35.4603],\n      [-97.62913, 35.46024],\n      [-97.62765, 35.46019],\n      [-97.62607, 35.46014],\n      [-97.62428, 35.46008],\n      [-97.62365, 35.46006],\n      [-97.62221, 35.46003],\n      [-97.62115, 35.46001],\n      [-97.61921, 35.46001],\n      [-97.61851, 35.46001],\n      [-97.61514, 35.46001],\n      [-97.60568, 35.46],\n      [-97.60439, 35.46],\n      [-97.60147, 35.46],\n      [-97.60077, 35.46],\n      [-97.5945, 35.45999],\n      [-97.58895, 35.45999],\n      [-97.58652, 35.45999],\n      [-97.58369, 35.45999],\n      [-97.58299, 35.45999],\n      [-97.58181, 35.45999],\n      [-97.58062, 35.45999],\n      [-97.58027, 35.45999],\n      [-97.57901, 35.45999],\n      [-97.57848, 35.45999],\n      [-97.57778, 35.46001],\n      [-97.5749, 35.46013],\n      [-97.57178, 35.46028],\n      [-97.57047, 35.46037],\n      [-97.57002, 35.4604],\n      [-97.56863, 35.46049],\n      [-97.56777, 35.46053],\n      [-97.5674, 35.46055],\n      [-97.56602, 35.46061],\n      [-97.56525, 35.46064],\n      [-97.56371, 35.4607],\n      [-97.56245, 35.46076],\n      [-97.56143, 35.46084],\n      [-97.56045, 35.46093],\n      [-97.55987, 35.46099],\n      [-97.55936, 35.46106],\n      [-97.55884, 35.46112],\n      [-97.5582, 35.46121],\n      [-97.55705, 35.46135],\n      [-97.55667, 35.4614],\n      [-97.5561, 35.46146],\n      [-97.55518, 35.46153],\n      [-97.55428, 35.46159],\n      [-97.55301, 35.46163],\n      [-97.55205, 35.46164],\n      [-97.55135, 35.46164],\n      [-97.54806, 35.46163],\n      [-97.54713, 35.46161],\n      [-97.5462, 35.4616],\n      [-97.54568, 35.46156],\n      [-97.54497, 35.4615],\n      [-97.5445, 35.46143],\n      [-97.54381, 35.46129],\n      [-97.54312, 35.46115],\n      [-97.54288, 35.46108],\n      [-97.54185, 35.46084],\n      [-97.54102, 35.46063],\n      [-97.53993, 35.46037],\n      [-97.53952, 35.46027],\n      [-97.5387, 35.46007],\n      [-97.53601, 35.45943],\n      [-97.53454, 35.45907],\n      [-97.53337, 35.45879],\n      [-97.53185, 35.45841],\n      [-97.53119, 35.45826],\n      [-97.53055, 35.45811],\n      [-97.53028, 35.45804],\n      [-97.52977, 35.45792],\n      [-97.52906, 35.45775],\n      [-97.52841, 35.45759],\n      [-97.52711, 35.45728],\n      [-97.52555, 35.45689],\n      [-97.52523, 35.45682],\n      [-97.5247, 35.4567],\n      [-97.52398, 35.45653],\n      [-97.52354, 35.45645],\n      [-97.52335, 35.45641],\n      [-97.5229, 35.45635],\n      [-97.52254, 35.4563],\n      [-97.52217, 35.45626],\n      [-97.52176, 35.45623],\n      [-97.52134, 35.45621],\n      [-97.52067, 35.4562],\n      [-97.51968, 35.45618],\n      [-97.51789, 35.45623],\n      [-97.51749, 35.45622],\n      [-97.51632, 35.4562],\n      [-97.51365, 35.45616],\n      [-97.51283, 35.45615],\n      [-97.51248, 35.45616],\n      [-97.5122, 35.45618],\n      [-97.51172, 35.45622],\n      [-97.51115, 35.45629],\n      [-97.51075, 35.45636],\n      [-97.51024, 35.45647],\n      [-97.51002, 35.45652],\n      [-97.50975, 35.4566],\n      [-97.5093, 35.45673],\n      [-97.50879, 35.45692],\n      [-97.50841, 35.45707],\n      [-97.50803, 35.45724],\n      [-97.50754, 35.45748],\n      [-97.50708, 35.45776],\n      [-97.50656, 35.4581],\n      [-97.50618, 35.45839],\n      [-97.50584, 35.45866],\n      [-97.50543, 35.45903],\n      [-97.50449, 35.45989],\n      [-97.50422, 35.46013],\n      [-97.50401, 35.4603],\n      [-97.50377, 35.46049],\n      [-97.50352, 35.46069],\n      [-97.50311, 35.46095],\n      [-97.50272, 35.46118],\n      [-97.50224, 35.46142],\n      [-97.50203, 35.46151],\n      [-97.50177, 35.46162],\n      [-97.50162, 35.46168],\n      [-97.50134, 35.46179],\n      [-97.50104, 35.46188],\n      [-97.50057, 35.46202],\n      [-97.5002, 35.4621],\n      [-97.49983, 35.46218],\n      [-97.49948, 35.46223],\n      [-97.49934, 35.46225],\n      [-97.499, 35.46229],\n      [-97.49865, 35.46232],\n      [-97.49836, 35.46233],\n      [-97.4981, 35.46233],\n      [-97.49754, 35.46233],\n      [-97.49705, 35.46231],\n      [-97.49574, 35.46227],\n      [-97.4944, 35.46228],\n      [-97.49387, 35.46227],\n      [-97.49276, 35.46226],\n      [-97.4919, 35.46225],\n      [-97.49124, 35.46224],\n      [-97.48958, 35.46221],\n      [-97.48924, 35.46221],\n      [-97.48776, 35.46219],\n      [-97.48683, 35.46219],\n      [-97.48589, 35.46221],\n      [-97.4851, 35.46224],\n      [-97.48439, 35.46227],\n      [-97.4839, 35.46231],\n      [-97.48334, 35.46235],\n      [-97.48196, 35.46247],\n      [-97.48071, 35.46259],\n      [-97.47892, 35.46274],\n      [-97.47846, 35.46279],\n      [-97.47722, 35.4629],\n      [-97.47644, 35.46296],\n      [-97.47545, 35.46305],\n      [-97.47508, 35.46308],\n      [-97.47427, 35.46315],\n      [-97.47376, 35.46321],\n      [-97.47345, 35.46325],\n      [-97.47292, 35.46334],\n      [-97.47242, 35.46345],\n      [-97.47199, 35.46359],\n      [-97.47179, 35.46367],\n      [-97.47163, 35.46373],\n      [-97.47149, 35.46379],\n      [-97.47139, 35.46384],\n      [-97.4711, 35.464],\n      [-97.47079, 35.46419],\n      [-97.47051, 35.46436],\n      [-97.46944, 35.46501],\n      [-97.4692, 35.46516],\n      [-97.46894, 35.46528],\n      [-97.46868, 35.46539],\n      [-97.46853, 35.46544],\n      [-97.46839, 35.46548],\n      [-97.46828, 35.46551],\n      [-97.46791, 35.46558],\n      [-97.46781, 35.4656],\n      [-97.46757, 35.46562],\n      [-97.46737, 35.46563],\n      [-97.46721, 35.46564],\n      [-97.46702, 35.46564],\n      [-97.46677, 35.46562],\n      [-97.46644, 35.46557],\n      [-97.46614, 35.4655],\n      [-97.46586, 35.46541],\n      [-97.46565, 35.46533],\n      [-97.46537, 35.46521],\n      [-97.46492, 35.46498],\n      [-97.46478, 35.46491],\n      [-97.46393, 35.46446],\n      [-97.4629, 35.46384],\n      [-97.4625, 35.46359],\n      [-97.46186, 35.46315],\n      [-97.46136, 35.46279],\n      [-97.46077, 35.46235],\n      [-97.45852, 35.46049],\n      [-97.45783, 35.45995],\n      [-97.45701, 35.45928],\n      [-97.45669, 35.45901],\n      [-97.4564, 35.45878],\n      [-97.45601, 35.45851],\n      [-97.45587, 35.45841],\n      [-97.45558, 35.45823],\n      [-97.45516, 35.458],\n      [-97.45483, 35.45783],\n      [-97.45449, 35.45767],\n      [-97.45422, 35.45756],\n      [-97.45395, 35.45745],\n      [-97.45358, 35.45731],\n      [-97.45325, 35.4572],\n      [-97.45272, 35.45705],\n      [-97.45217, 35.45693],\n      [-97.45157, 35.45681],\n      [-97.44687, 35.4559],\n      [-97.44521, 35.45558],\n      [-97.44316, 35.45519],\n      [-97.44272, 35.4551],\n      [-97.44225, 35.45499],\n      [-97.44174, 35.45484],\n      [-97.44135, 35.45472],\n      [-97.44111, 35.45463],\n      [-97.44059, 35.45442],\n      [-97.44022, 35.45424],\n      [-97.4399, 35.45407],\n      [-97.43863, 35.45339],\n      [-97.43812, 35.4531],\n      [-97.43506, 35.45144],\n      [-97.43462, 35.4512],\n      [-97.4341, 35.45092],\n      [-97.43213, 35.44987],\n      [-97.43149, 35.44952],\n      [-97.42964, 35.44849],\n      [-97.42918, 35.44824],\n      [-97.42824, 35.44772],\n      [-97.42679, 35.44694],\n      [-97.42531, 35.44613],\n      [-97.42385, 35.44534],\n      [-97.42344, 35.44512],\n      [-97.42308, 35.44492],\n      [-97.42253, 35.44462],\n      [-97.42196, 35.44428],\n      [-97.42145, 35.44395],\n      [-97.42115, 35.44375],\n      [-97.42091, 35.44356],\n      [-97.42062, 35.44337],\n      [-97.41932, 35.44243],\n      [-97.41804, 35.44149],\n      [-97.41634, 35.44025],\n      [-97.41532, 35.43952],\n      [-97.41341, 35.43813],\n      [-97.41305, 35.43784],\n      [-97.41261, 35.43747],\n      [-97.41209, 35.437],\n      [-97.41174, 35.43664],\n      [-97.41086, 35.4357],\n      [-97.41068, 35.43551],\n      [-97.41041, 35.43527],\n      [-97.41013, 35.43504],\n      [-97.40993, 35.4349],\n      [-97.40963, 35.43472],\n      [-97.40939, 35.4346],\n      [-97.40914, 35.4345],\n      [-97.40886, 35.4344],\n      [-97.40863, 35.43434],\n      [-97.40835, 35.43429],\n      [-97.40804, 35.43425],\n      [-97.40782, 35.43423],\n      [-97.40752, 35.43421],\n      [-97.40694, 35.43421],\n      [-97.40638, 35.43421],\n      [-97.40564, 35.43421],\n      [-97.40368, 35.43421],\n      [-97.40115, 35.4342],\n      [-97.4002, 35.43422],\n      [-97.39763, 35.4342],\n      [-97.39688, 35.43422],\n      [-97.3965, 35.43427],\n      [-97.39612, 35.43436],\n      [-97.39557, 35.43455],\n      [-97.3953, 35.43465],\n      [-97.39509, 35.43471],\n      [-97.39486, 35.43478],\n      [-97.39462, 35.43484],\n      [-97.39441, 35.43488],\n      [-97.39412, 35.43492],\n      [-97.39395, 35.43493],\n      [-97.39373, 35.43494],\n      [-97.39309, 35.43494],\n      [-97.38837, 35.43493],\n      [-97.38748, 35.43491],\n      [-97.38684, 35.43488],\n      [-97.38627, 35.43484],\n      [-97.38552, 35.43479],\n      [-97.38476, 35.43474],\n      [-97.38354, 35.43466],\n      [-97.38274, 35.43461],\n      [-97.38147, 35.43453],\n      [-97.38067, 35.43448],\n      [-97.37944, 35.4344],\n      [-97.3789, 35.43435],\n      [-97.37854, 35.4343],\n      [-97.37815, 35.43423],\n      [-97.37768, 35.43414],\n      [-97.3771, 35.43401],\n      [-97.37663, 35.43388],\n      [-97.3762, 35.43375],\n      [-97.37567, 35.43358],\n      [-97.37526, 35.43343],\n      [-97.3747, 35.43323],\n      [-97.36712, 35.4305],\n      [-97.36656, 35.4303],\n      [-97.36207, 35.4287],\n      [-97.36065, 35.42819],\n      [-97.35967, 35.42785],\n      [-97.35861, 35.42748],\n      [-97.35679, 35.42686],\n      [-97.35425, 35.42603],\n      [-97.35324, 35.42571],\n      [-97.33519, 35.41999],\n      [-97.33196, 35.41897],\n      [-97.33112, 35.4187],\n      [-97.33017, 35.4184],\n      [-97.32112, 35.41552],\n      [-97.31814, 35.41457],\n      [-97.31777, 35.41446],\n      [-97.31325, 35.41302],\n      [-97.31283, 35.41288],\n      [-97.312, 35.41261],\n      [-97.31075, 35.41217],\n      [-97.30953, 35.41173],\n      [-97.30831, 35.41127],\n      [-97.30588, 35.4103],\n      [-97.30471, 35.40982],\n      [-97.30356, 35.40932],\n      [-97.29578, 35.40597],\n      [-97.29192, 35.40431],\n      [-97.2914, 35.40408],\n      [-97.28563, 35.40158],\n      [-97.28149, 35.3998],\n      [-97.26506, 35.39272],\n      [-97.2647, 35.39257],\n      [-97.26383, 35.39219],\n      [-97.2636, 35.39209],\n      [-97.26, 35.39053],\n      [-97.25974, 35.39042],\n      [-97.25531, 35.38851],\n      [-97.25324, 35.38761],\n      [-97.25207, 35.38711],\n      [-97.25126, 35.38677],\n      [-97.25051, 35.38649],\n      [-97.24987, 35.38626],\n      [-97.24919, 35.38604],\n      [-97.24842, 35.3858],\n      [-97.24744, 35.38554],\n      [-97.24655, 35.38531],\n      [-97.24566, 35.38512],\n      [-97.2447, 35.38494],\n      [-97.24288, 35.38468],\n      [-97.2419, 35.38457],\n      [-97.24185, 35.38457],\n      [-97.2408, 35.3845],\n      [-97.23994, 35.38446],\n      [-97.23898, 35.38445],\n      [-97.23056, 35.38442],\n      [-97.22005, 35.38439],\n      [-97.21857, 35.38438],\n      [-97.21307, 35.38435],\n      [-97.21273, 35.38435],\n      [-97.20712, 35.38434],\n      [-97.20655, 35.38434],\n      [-97.19518, 35.3843],\n      [-97.19447, 35.3843],\n      [-97.19356, 35.38429],\n      [-97.19242, 35.38426],\n      [-97.19126, 35.38421],\n      [-97.19018, 35.38415],\n      [-97.18826, 35.38402],\n      [-97.18723, 35.38395],\n      [-97.18634, 35.38391],\n      [-97.18498, 35.38385],\n      [-97.18385, 35.38383],\n      [-97.17836, 35.38379],\n      [-97.1783, 35.38379],\n      [-97.17681, 35.38379],\n      [-97.17545, 35.38381],\n      [-97.17421, 35.38383],\n      [-97.17304, 35.38388],\n      [-97.17185, 35.38396],\n      [-97.17032, 35.38405],\n      [-97.16882, 35.38412],\n      [-97.16734, 35.38417],\n      [-97.1661, 35.38419],\n      [-97.16512, 35.3842],\n      [-97.16428, 35.3842],\n      [-97.16104, 35.38419],\n      [-97.16057, 35.38419],\n      [-97.14207, 35.3841],\n      [-97.1249, 35.38404],\n      [-97.10897, 35.38397],\n      [-97.10784, 35.38394],\n      [-97.10724, 35.38392],\n      [-97.10672, 35.3839],\n      [-97.10565, 35.38385],\n      [-97.1042, 35.38375],\n      [-97.10305, 35.38369],\n      [-97.10217, 35.38364],\n      [-97.1011, 35.38361],\n      [-97.1003, 35.38359],\n      [-97.09956, 35.3836],\n      [-97.09873, 35.38362],\n      [-97.09766, 35.38367],\n      [-97.09646, 35.38374],\n      [-97.09539, 35.38379],\n      [-97.09462, 35.38382],\n      [-97.09397, 35.38385],\n      [-97.09168, 35.38389],\n      [-97.08965, 35.38389],\n      [-97.08929, 35.38389],\n      [-97.08654, 35.38387],\n      [-97.0861, 35.38387],\n      [-97.08383, 35.38384],\n      [-97.08273, 35.3838],\n      [-97.08207, 35.38377],\n      [-97.08142, 35.38374],\n      [-97.08001, 35.38364],\n      [-97.07858, 35.3835],\n      [-97.07698, 35.38332],\n      [-97.0759, 35.38319],\n      [-97.07498, 35.38305],\n      [-97.07367, 35.38283],\n      [-97.07236, 35.3826],\n      [-97.0717, 35.38247],\n      [-97.0715, 35.38243],\n      [-97.07068, 35.38225],\n      [-97.06928, 35.38192],\n      [-97.06849, 35.38173],\n      [-97.06731, 35.38143],\n      [-97.06612, 35.38108],\n      [-97.06519, 35.3808],\n      [-97.06347, 35.38024],\n      [-97.06175, 35.37963],\n      [-97.06137, 35.37948],\n      [-97.05964, 35.3788],\n      [-97.05943, 35.37872],\n      [-97.05797, 35.37818],\n      [-97.0569, 35.37783],\n      [-97.0557, 35.37749],\n      [-97.05483, 35.37727],\n      [-97.05437, 35.37716],\n      [-97.05395, 35.37707],\n      [-97.05248, 35.37679],\n      [-97.05164, 35.37667],\n      [-97.05081, 35.37656],\n      [-97.04968, 35.37645],\n      [-97.04861, 35.37637],\n      [-97.04786, 35.37635],\n      [-97.04683, 35.37633],\n      [-97.04601, 35.37634],\n      [-97.04528, 35.37636],\n      [-97.0447, 35.37639],\n      [-97.04414, 35.37644],\n      [-97.04329, 35.37651],\n      [-97.04226, 35.37662],\n      [-97.04134, 35.37676],\n      [-97.03888, 35.37717],\n      [-97.03636, 35.3776],\n      [-97.03549, 35.37774],\n      [-97.03091, 35.37852],\n      [-97.02823, 35.37896],\n      [-97.01841, 35.38061],\n      [-97.00971, 35.38206],\n      [-97.00908, 35.38217],\n      [-97.00805, 35.38234],\n      [-97.00627, 35.38263],\n      [-97.00393, 35.38302],\n      [-97.00306, 35.38315],\n      [-97.00213, 35.38327],\n      [-97.00145, 35.38335],\n      [-97.00095, 35.3834],\n      [-97.00036, 35.38345],\n      [-96.99971, 35.38349],\n      [-96.99905, 35.38353],\n      [-96.99879, 35.38355],\n      [-96.99781, 35.38359],\n      [-96.99532, 35.38361],\n      [-96.96529, 35.38381],\n      [-96.96431, 35.38383],\n      [-96.96209, 35.3838],\n      [-96.96062, 35.38377],\n      [-96.95813, 35.38366],\n      [-96.95691, 35.3836],\n      [-96.95569, 35.38355],\n      [-96.95313, 35.38349],\n      [-96.95112, 35.38352],\n      [-96.94318, 35.38369],\n      [-96.93885, 35.38379],\n      [-96.93577, 35.38384],\n      [-96.93441, 35.38385],\n      [-96.9335, 35.38386],\n      [-96.9299, 35.38385],\n      [-96.92577, 35.38383],\n      [-96.92451, 35.38383],\n      [-96.92205, 35.38382],\n      [-96.9171, 35.3838],\n      [-96.91649, 35.38379],\n      [-96.9159, 35.38379],\n      [-96.91571, 35.38379],\n      [-96.9126, 35.38378],\n      [-96.91159, 35.38378],\n      [-96.90893, 35.38376],\n      [-96.90675, 35.38376],\n      [-96.90534, 35.38375],\n      [-96.90204, 35.38373],\n      [-96.89876, 35.38373],\n      [-96.89835, 35.38372],\n      [-96.89747, 35.38373],\n      [-96.89648, 35.38375],\n      [-96.89547, 35.38378],\n      [-96.89454, 35.38382],\n      [-96.89341, 35.38388],\n      [-96.89283, 35.38392],\n      [-96.89227, 35.38396],\n      [-96.89121, 35.38405],\n      [-96.89, 35.38415],\n      [-96.88907, 35.38426],\n      [-96.88808, 35.38437],\n      [-96.88708, 35.3845],\n      [-96.88595, 35.38465],\n      [-96.88503, 35.38479],\n      [-96.88346, 35.38505],\n      [-96.88149, 35.38539],\n      [-96.87838, 35.38592],\n      [-96.87667, 35.38622],\n      [-96.87411, 35.38668],\n      [-96.87155, 35.38716],\n      [-96.86845, 35.38777],\n      [-96.86617, 35.38824],\n      [-96.86504, 35.38847],\n      [-96.8619, 35.38912],\n      [-96.8605, 35.3894],\n      [-96.85978, 35.38954],\n      [-96.85891, 35.38969],\n      [-96.85792, 35.38983],\n      [-96.85707, 35.38994],\n      [-96.85641, 35.39001],\n      [-96.8556, 35.39007],\n      [-96.85498, 35.39011],\n      [-96.8541, 35.39016],\n      [-96.85339, 35.39017],\n      [-96.85255, 35.39017],\n      [-96.85192, 35.39017],\n      [-96.85142, 35.39015],\n      [-96.85066, 35.39012],\n      [-96.85014, 35.39008],\n      [-96.84957, 35.39004],\n      [-96.84876, 35.38997],\n      [-96.84823, 35.38991],\n      [-96.84753, 35.38982],\n      [-96.84677, 35.38971],\n      [-96.84583, 35.38955],\n      [-96.84479, 35.38935],\n      [-96.84362, 35.38911],\n      [-96.83691, 35.38773],\n      [-96.83339, 35.38701],\n      [-96.82878, 35.38606],\n      [-96.82637, 35.38556],\n      [-96.82496, 35.38528],\n      [-96.82366, 35.38505],\n      [-96.82276, 35.38492],\n      [-96.82186, 35.38478],\n      [-96.82088, 35.38464],\n      [-96.81916, 35.38446],\n      [-96.81779, 35.38434],\n      [-96.81637, 35.38424],\n      [-96.81507, 35.38418],\n      [-96.81379, 35.38414],\n      [-96.81252, 35.38412],\n      [-96.81109, 35.3841],\n      [-96.80729, 35.38406],\n      [-96.80686, 35.38405],\n      [-96.80223, 35.38401],\n      [-96.79581, 35.38393],\n      [-96.78945, 35.38386],\n      [-96.78575, 35.38382],\n      [-96.78371, 35.38383],\n      [-96.78203, 35.38384],\n      [-96.77979, 35.3839],\n      [-96.77753, 35.38397],\n      [-96.77674, 35.384],\n      [-96.77393, 35.3841],\n      [-96.77113, 35.38419],\n      [-96.76968, 35.38422],\n      [-96.76824, 35.38425],\n      [-96.76706, 35.38427],\n      [-96.76314, 35.38431],\n      [-96.76114, 35.38431],\n      [-96.75943, 35.38431],\n      [-96.75482, 35.3843],\n      [-96.7441, 35.3843],\n      [-96.74239, 35.3843],\n      [-96.74173, 35.3843],\n      [-96.73867, 35.38427],\n      [-96.73719, 35.38423],\n      [-96.73643, 35.38421],\n      [-96.73566, 35.38417],\n      [-96.7343, 35.3841],\n      [-96.73297, 35.38401],\n      [-96.73199, 35.38395],\n      [-96.73136, 35.38392],\n      [-96.73026, 35.38388],\n      [-96.72969, 35.38386],\n      [-96.72912, 35.38385],\n      [-96.72745, 35.38385],\n      [-96.72636, 35.38387],\n      [-96.72384, 35.38395],\n      [-96.72252, 35.38398],\n      [-96.71692, 35.38415],\n      [-96.71552, 35.38419],\n      [-96.71375, 35.3842],\n      [-96.71213, 35.38418],\n      [-96.71094, 35.38415],\n      [-96.70976, 35.3841],\n      [-96.70838, 35.38403],\n      [-96.70768, 35.38398],\n      [-96.70678, 35.38393],\n      [-96.70582, 35.38386],\n      [-96.70467, 35.38379],\n      [-96.70374, 35.38376],\n      [-96.70277, 35.38373],\n      [-96.70218, 35.38371],\n      [-96.70103, 35.3837],\n      [-96.70023, 35.38369],\n      [-96.69945, 35.3837],\n      [-96.69791, 35.38374],\n      [-96.69654, 35.3838],\n      [-96.69481, 35.38389],\n      [-96.69256, 35.38407],\n      [-96.69143, 35.38416],\n      [-96.69059, 35.38422],\n      [-96.68984, 35.38426],\n      [-96.68921, 35.38428],\n      [-96.6887, 35.3843],\n      [-96.68811, 35.3843],\n      [-96.68747, 35.38431],\n      [-96.687, 35.3843],\n      [-96.6862, 35.38429],\n      [-96.68538, 35.38425],\n      [-96.68437, 35.38419],\n      [-96.6838, 35.38415],\n      [-96.68307, 35.38408],\n      [-96.68133, 35.38389],\n      [-96.68045, 35.3838],\n      [-96.6793, 35.3837],\n      [-96.67857, 35.38365],\n      [-96.67783, 35.38361],\n      [-96.67637, 35.38354],\n      [-96.67515, 35.38351],\n      [-96.67161, 35.38349],\n      [-96.66936, 35.38348],\n      [-96.66686, 35.38347],\n      [-96.66649, 35.38347],\n      [-96.6633, 35.38346],\n      [-96.66188, 35.38345],\n      [-96.65766, 35.38344],\n      [-96.65652, 35.38345],\n      [-96.65538, 35.38347],\n      [-96.65426, 35.3835],\n      [-96.65325, 35.38355],\n      [-96.65247, 35.38359],\n      [-96.65169, 35.38364],\n      [-96.65063, 35.38372],\n      [-96.64963, 35.3838],\n      [-96.64846, 35.38391],\n      [-96.64727, 35.38405],\n      [-96.64649, 35.38414],\n      [-96.64572, 35.38425],\n      [-96.63857, 35.38522],\n      [-96.63775, 35.38533],\n      [-96.63649, 35.38549],\n      [-96.6347, 35.38565],\n      [-96.63406, 35.38569],\n      [-96.63261, 35.38574],\n      [-96.6317, 35.38575],\n      [-96.63082, 35.38574],\n      [-96.62995, 35.38572],\n      [-96.62913, 35.38568],\n      [-96.62836, 35.38563],\n      [-96.62733, 35.38554],\n      [-96.62529, 35.38533],\n      [-96.62457, 35.38526],\n      [-96.62371, 35.38519],\n      [-96.62277, 35.38511],\n      [-96.62117, 35.385],\n      [-96.61958, 35.38491],\n      [-96.61818, 35.38485],\n      [-96.61737, 35.38483],\n      [-96.61581, 35.38479],\n      [-96.61423, 35.38478],\n      [-96.61325, 35.38477],\n      [-96.61135, 35.38478],\n      [-96.60825, 35.38478],\n      [-96.60606, 35.38477],\n      [-96.60069, 35.38477],\n      [-96.60033, 35.38477],\n      [-96.5971, 35.38477],\n      [-96.59425, 35.38476],\n      [-96.59188, 35.38476],\n      [-96.59036, 35.38475],\n      [-96.58766, 35.38472],\n      [-96.58587, 35.38468],\n      [-96.58362, 35.38463],\n      [-96.57936, 35.38448],\n      [-96.56545, 35.38382],\n      [-96.56497, 35.38381],\n      [-96.56341, 35.38372],\n      [-96.56213, 35.38363],\n      [-96.5607, 35.38351],\n      [-96.55926, 35.38335],\n      [-96.55839, 35.38325],\n      [-96.5573, 35.38312],\n      [-96.55625, 35.38297],\n      [-96.55506, 35.38279],\n      [-96.5545, 35.3827],\n      [-96.55381, 35.38258],\n      [-96.5526, 35.38236],\n      [-96.55199, 35.38224],\n      [-96.55133, 35.3821],\n      [-96.55056, 35.38194],\n      [-96.54982, 35.38178],\n      [-96.5493, 35.38166],\n      [-96.54822, 35.38142],\n      [-96.54719, 35.38121],\n      [-96.54551, 35.38091],\n      [-96.54429, 35.38073],\n      [-96.54325, 35.38059],\n      [-96.5422, 35.38047],\n      [-96.54087, 35.38035],\n      [-96.53974, 35.38027],\n      [-96.53894, 35.38022],\n      [-96.53817, 35.38019],\n      [-96.53715, 35.38017],\n      [-96.53561, 35.38017],\n      [-96.53476, 35.38018],\n      [-96.53404, 35.38019],\n      [-96.53323, 35.38023],\n      [-96.53211, 35.3803],\n      [-96.53139, 35.38035],\n      [-96.53072, 35.38041],\n      [-96.52985, 35.3805],\n      [-96.52893, 35.3806],\n      [-96.52809, 35.38072],\n      [-96.52677, 35.38092],\n      [-96.52553, 35.38112],\n      [-96.52448, 35.3813],\n      [-96.52335, 35.38149],\n      [-96.5211, 35.38187],\n      [-96.51764, 35.38245],\n      [-96.51467, 35.38295],\n      [-96.5117, 35.38345],\n      [-96.50881, 35.38394],\n      [-96.50599, 35.3844],\n      [-96.50476, 35.3846],\n      [-96.50323, 35.38483],\n      [-96.50249, 35.38493],\n      [-96.5014, 35.38505],\n      [-96.50057, 35.38513],\n      [-96.49991, 35.38519],\n      [-96.49908, 35.38525],\n      [-96.49847, 35.38528],\n      [-96.49802, 35.38531],\n      [-96.49762, 35.38532],\n      [-96.49694, 35.38534],\n      [-96.49593, 35.38536],\n      [-96.4949, 35.38536],\n      [-96.4934, 35.38534],\n      [-96.49215, 35.38528],\n      [-96.49116, 35.38522],\n      [-96.48727, 35.38496],\n      [-96.48342, 35.38471],\n      [-96.48121, 35.38462],\n      [-96.479, 35.38457],\n      [-96.47765, 35.38456],\n      [-96.47681, 35.38456],\n      [-96.47589, 35.38457],\n      [-96.47416, 35.3846],\n      [-96.47249, 35.38466],\n      [-96.47081, 35.38474],\n      [-96.46872, 35.38488],\n      [-96.46764, 35.38496],\n      [-96.46656, 35.38505],\n      [-96.46504, 35.3852],\n      [-96.46409, 35.38531],\n      [-96.46315, 35.38542],\n      [-96.45593, 35.38643],\n      [-96.4549, 35.38659],\n      [-96.45349, 35.38679],\n      [-96.45278, 35.38688],\n      [-96.45205, 35.38697],\n      [-96.45126, 35.38704],\n      [-96.45052, 35.3871],\n      [-96.44956, 35.38717],\n      [-96.44877, 35.3872],\n      [-96.44785, 35.38723],\n      [-96.44718, 35.38725],\n      [-96.4465, 35.38725],\n      [-96.44552, 35.38723],\n      [-96.44456, 35.3872],\n      [-96.44385, 35.38716],\n      [-96.44276, 35.38709],\n      [-96.44173, 35.387],\n      [-96.44062, 35.3869],\n      [-96.43854, 35.38672],\n      [-96.43741, 35.38662],\n      [-96.43374, 35.38629],\n      [-96.43289, 35.38621],\n      [-96.43054, 35.386],\n      [-96.42988, 35.38595],\n      [-96.42924, 35.38592],\n      [-96.42836, 35.38588],\n      [-96.42757, 35.38588],\n      [-96.42655, 35.38588],\n      [-96.42589, 35.38591],\n      [-96.42497, 35.38595],\n      [-96.42401, 35.38603],\n      [-96.42356, 35.38607],\n      [-96.4227, 35.38616],\n      [-96.42198, 35.38626],\n      [-96.42143, 35.38634],\n      [-96.4208, 35.38644],\n      [-96.4198, 35.38662],\n      [-96.41906, 35.38678],\n      [-96.41832, 35.38695],\n      [-96.41751, 35.38716],\n      [-96.41673, 35.38737],\n      [-96.4162, 35.38753],\n      [-96.41555, 35.38773],\n      [-96.4148, 35.38798],\n      [-96.41378, 35.38836],\n      [-96.41315, 35.38861],\n      [-96.41262, 35.38883],\n      [-96.40821, 35.39078],\n      [-96.4063, 35.39164],\n      [-96.40539, 35.39205],\n      [-96.40226, 35.39344],\n      [-96.39723, 35.39569],\n      [-96.39632, 35.39608],\n      [-96.39493, 35.39671],\n      [-96.39391, 35.39716],\n      [-96.39285, 35.39763],\n      [-96.39121, 35.39835],\n      [-96.39037, 35.39871],\n      [-96.38936, 35.39912],\n      [-96.38788, 35.39968],\n      [-96.38663, 35.40012],\n      [-96.38516, 35.40061],\n      [-96.38411, 35.40094],\n      [-96.38335, 35.40115],\n      [-96.38257, 35.40137],\n      [-96.38159, 35.40163],\n      [-96.38046, 35.40191],\n      [-96.37924, 35.40219],\n      [-96.37809, 35.40244],\n      [-96.37612, 35.40289],\n      [-96.37307, 35.40358],\n      [-96.37256, 35.40369],\n      [-96.37093, 35.40406],\n      [-96.36937, 35.40442],\n      [-96.36882, 35.40455],\n      [-96.36816, 35.40471],\n      [-96.36748, 35.40488],\n      [-96.367, 35.405],\n      [-96.3663, 35.40518],\n      [-96.36544, 35.40541],\n      [-96.36451, 35.40565],\n      [-96.36359, 35.4059],\n      [-96.36286, 35.4061],\n      [-96.36241, 35.40623],\n      [-96.36165, 35.40644],\n      [-96.36062, 35.40675],\n      [-96.35943, 35.4071],\n      [-96.35896, 35.40724],\n      [-96.35833, 35.40744],\n      [-96.3568, 35.40792],\n      [-96.35535, 35.40839],\n      [-96.35393, 35.40887],\n      [-96.35294, 35.40919],\n      [-96.35085, 35.40991],\n      [-96.3499, 35.41023],\n      [-96.348, 35.41088],\n      [-96.34625, 35.41147],\n      [-96.34497, 35.41189],\n      [-96.34273, 35.41266],\n      [-96.34103, 35.41324],\n      [-96.33981, 35.41365],\n      [-96.33913, 35.41388],\n      [-96.33859, 35.41406],\n      [-96.33787, 35.41427],\n      [-96.33738, 35.41441],\n      [-96.33651, 35.41464],\n      [-96.33566, 35.41484],\n      [-96.33511, 35.41496],\n      [-96.3345, 35.41509],\n      [-96.33374, 35.41523],\n      [-96.33283, 35.41539],\n      [-96.33198, 35.41551],\n      [-96.33145, 35.41558],\n      [-96.33116, 35.41561],\n      [-96.33029, 35.4157],\n      [-96.32973, 35.41576],\n      [-96.32896, 35.41581],\n      [-96.32834, 35.41585],\n      [-96.32721, 35.41589],\n      [-96.32602, 35.41592],\n      [-96.32508, 35.41596],\n      [-96.32431, 35.41601],\n      [-96.32336, 35.41611],\n      [-96.32234, 35.41624],\n      [-96.32131, 35.4164],\n      [-96.32042, 35.41657],\n      [-96.31968, 35.41674],\n      [-96.31888, 35.41694],\n      [-96.31822, 35.41711],\n      [-96.31763, 35.41728],\n      [-96.31726, 35.41739],\n      [-96.3165, 35.41765],\n      [-96.31511, 35.41818],\n      [-96.31452, 35.41843],\n      [-96.31395, 35.41869],\n      [-96.31253, 35.41935],\n      [-96.31182, 35.41967],\n      [-96.31128, 35.4199],\n      [-96.31072, 35.42013],\n      [-96.31024, 35.4203],\n      [-96.3097, 35.4205],\n      [-96.30916, 35.42067],\n      [-96.30809, 35.421],\n      [-96.30736, 35.4212],\n      [-96.30671, 35.42136],\n      [-96.30565, 35.42158],\n      [-96.30515, 35.42168],\n      [-96.30396, 35.42187],\n      [-96.30295, 35.42199],\n      [-96.30234, 35.42205],\n      [-96.30178, 35.42209],\n      [-96.29989, 35.42219],\n      [-96.29951, 35.4222],\n      [-96.29521, 35.42231],\n      [-96.29316, 35.42237],\n      [-96.29132, 35.42241],\n      [-96.28951, 35.42247],\n      [-96.28827, 35.42251],\n      [-96.28734, 35.42254],\n      [-96.28619, 35.42261],\n      [-96.28526, 35.42268],\n      [-96.2841, 35.42278],\n      [-96.28313, 35.42287],\n      [-96.28225, 35.42297],\n      [-96.28097, 35.42314],\n      [-96.28001, 35.42328],\n      [-96.27901, 35.42345],\n      [-96.27784, 35.42366],\n      [-96.27672, 35.42388],\n      [-96.275, 35.42425],\n      [-96.27361, 35.42455],\n      [-96.27323, 35.42464],\n      [-96.26776, 35.42582],\n      [-96.26658, 35.42607],\n      [-96.26546, 35.42629],\n      [-96.26456, 35.42646],\n      [-96.26422, 35.42652],\n      [-96.26347, 35.42665],\n      [-96.26284, 35.42675],\n      [-96.26145, 35.42699],\n      [-96.26056, 35.42713],\n      [-96.25964, 35.42727],\n      [-96.25821, 35.42746],\n      [-96.25712, 35.42759],\n      [-96.25595, 35.42772],\n      [-96.25486, 35.42783],\n      [-96.25358, 35.42794],\n      [-96.25174, 35.42808],\n      [-96.25106, 35.42813],\n      [-96.25, 35.42819],\n      [-96.24833, 35.42829],\n      [-96.24705, 35.42833],\n      [-96.2467, 35.42833],\n      [-96.24493, 35.42836],\n      [-96.24371, 35.42836],\n      [-96.24261, 35.42836],\n      [-96.2414, 35.42835],\n      [-96.24018, 35.42831],\n      [-96.23775, 35.42824],\n      [-96.23289, 35.42811],\n      [-96.22715, 35.42795],\n      [-96.22369, 35.42785],\n      [-96.2224, 35.42782],\n      [-96.221, 35.42782],\n      [-96.21991, 35.42784],\n      [-96.21902, 35.42786],\n      [-96.21823, 35.4279],\n      [-96.2176, 35.42793],\n      [-96.21668, 35.42799],\n      [-96.21634, 35.42801],\n      [-96.21526, 35.4281],\n      [-96.21437, 35.42819],\n      [-96.21312, 35.42832],\n      [-96.21171, 35.42851],\n      [-96.21147, 35.42854],\n      [-96.21035, 35.42869],\n      [-96.20966, 35.42878],\n      [-96.2081, 35.42897],\n      [-96.20703, 35.42912],\n      [-96.2056, 35.4293],\n      [-96.20458, 35.42943],\n      [-96.20324, 35.42961],\n      [-96.20212, 35.42975],\n      [-96.20116, 35.42986],\n      [-96.20009, 35.42996],\n      [-96.19938, 35.43003],\n      [-96.19873, 35.43008],\n      [-96.19777, 35.43014],\n      [-96.19641, 35.4302],\n      [-96.19566, 35.43023],\n      [-96.1944, 35.43027],\n      [-96.19377, 35.43026],\n      [-96.19238, 35.43025],\n      [-96.19122, 35.43021],\n      [-96.19021, 35.43017],\n      [-96.1893, 35.43011],\n      [-96.18789, 35.43],\n      [-96.1872, 35.42992],\n      [-96.18639, 35.42981],\n      [-96.18556, 35.42971],\n      [-96.18433, 35.42953],\n      [-96.1833, 35.42935],\n      [-96.18227, 35.42919],\n      [-96.18131, 35.42902],\n      [-96.1805, 35.42887],\n      [-96.17921, 35.42867],\n      [-96.17802, 35.42851],\n      [-96.17686, 35.42836],\n      [-96.17605, 35.42827],\n      [-96.17506, 35.42818],\n      [-96.1734, 35.42805],\n      [-96.17235, 35.428],\n      [-96.17157, 35.42796],\n      [-96.17081, 35.42792],\n      [-96.17002, 35.42789],\n      [-96.16839, 35.42779],\n      [-96.16661, 35.42771],\n      [-96.1649, 35.42762],\n      [-96.16311, 35.42752],\n      [-96.16249, 35.42749],\n      [-96.16078, 35.42743],\n      [-96.15942, 35.42741],\n      [-96.1582, 35.42742],\n      [-96.1568, 35.42745],\n      [-96.15584, 35.42749],\n      [-96.15493, 35.42753],\n      [-96.15404, 35.42759],\n      [-96.15341, 35.42764],\n      [-96.15228, 35.42774],\n      [-96.15097, 35.42788],\n      [-96.14992, 35.42801],\n      [-96.14875, 35.42817],\n      [-96.14769, 35.42834],\n      [-96.14668, 35.42851],\n      [-96.14575, 35.42867],\n      [-96.14488, 35.42882],\n      [-96.14474, 35.42885],\n      [-96.14371, 35.42903],\n      [-96.14144, 35.42941],\n      [-96.13927, 35.42978],\n      [-96.13522, 35.43048],\n      [-96.13446, 35.43062],\n      [-96.13364, 35.43075],\n      [-96.1325, 35.43095],\n      [-96.13138, 35.43112],\n      [-96.13051, 35.43123],\n      [-96.12963, 35.43133],\n      [-96.12901, 35.4314],\n      [-96.12817, 35.43147],\n      [-96.12757, 35.43152],\n      [-96.12648, 35.43159],\n      [-96.12572, 35.43162],\n      [-96.125, 35.43164],\n      [-96.12417, 35.43167],\n      [-96.12333, 35.43167],\n      [-96.12295, 35.43167],\n      [-96.12152, 35.43164],\n      [-96.12069, 35.43162],\n      [-96.11985, 35.43157],\n      [-96.11873, 35.43149],\n      [-96.1171, 35.43133],\n      [-96.11576, 35.43118],\n      [-96.11499, 35.43107],\n      [-96.11411, 35.43094],\n      [-96.11306, 35.43077],\n      [-96.11185, 35.43054],\n      [-96.10888, 35.42996],\n      [-96.10763, 35.42972],\n      [-96.10552, 35.42932],\n      [-96.10156, 35.42856],\n      [-96.10042, 35.42836],\n      [-96.09967, 35.42824],\n      [-96.09827, 35.42804],\n      [-96.09755, 35.42796],\n      [-96.0966, 35.42786],\n      [-96.09551, 35.42776],\n      [-96.09433, 35.42767],\n      [-96.09275, 35.42759],\n      [-96.09223, 35.42758],\n      [-96.09162, 35.42757],\n      [-96.08781, 35.42754],\n      [-96.08746, 35.42754],\n      [-96.08165, 35.4275],\n      [-96.07244, 35.42746],\n      [-96.07078, 35.42744],\n      [-96.06917, 35.42744],\n      [-96.06811, 35.42743],\n      [-96.06715, 35.42745],\n      [-96.06635, 35.42747],\n      [-96.06558, 35.42749],\n      [-96.06471, 35.42753],\n      [-96.06386, 35.42759],\n      [-96.06285, 35.42766],\n      [-96.06203, 35.42773],\n      [-96.06115, 35.42782],\n      [-96.05996, 35.42795],\n      [-96.05925, 35.42804],\n      [-96.05885, 35.4281],\n      [-96.05798, 35.42822],\n      [-96.05713, 35.42835],\n      [-96.0561, 35.42853],\n      [-96.05359, 35.42901],\n      [-96.05226, 35.42926],\n      [-96.05056, 35.42958],\n      [-96.04889, 35.4299],\n      [-96.04564, 35.43052],\n      [-96.04431, 35.43077],\n      [-96.04296, 35.43103],\n      [-96.04125, 35.43137],\n      [-96.03984, 35.43162],\n      [-96.03909, 35.43174],\n      [-96.03842, 35.43184],\n      [-96.03782, 35.43192],\n      [-96.03718, 35.432],\n      [-96.03629, 35.43209],\n      [-96.03565, 35.43215],\n      [-96.03497, 35.43221],\n      [-96.03398, 35.43226],\n      [-96.03312, 35.4323],\n      [-96.03219, 35.43233],\n      [-96.03111, 35.43233],\n      [-96.0282, 35.43231],\n      [-96.02585, 35.43229],\n      [-96.02476, 35.43229],\n      [-96.02366, 35.43232],\n      [-96.02256, 35.43238],\n      [-96.02118, 35.43247],\n      [-96.02026, 35.43255],\n      [-96.01926, 35.43265],\n      [-96.01841, 35.43275],\n      [-96.01748, 35.43287],\n      [-96.01716, 35.43292],\n      [-96.01659, 35.433],\n      [-96.01546, 35.43318],\n      [-96.01464, 35.4333],\n      [-96.01238, 35.43364],\n      [-96.01081, 35.43382],\n      [-96.01023, 35.43387],\n      [-96.00966, 35.43392],\n      [-96.00874, 35.43396],\n      [-96.00773, 35.434],\n      [-96.00706, 35.43401],\n      [-96.00594, 35.43401],\n      [-96.00492, 35.43398],\n      [-96.00383, 35.43392],\n      [-96.00274, 35.43384],\n      [-96.00128, 35.43371],\n      [-95.99981, 35.43359],\n      [-95.99808, 35.43344],\n      [-95.99424, 35.4331],\n      [-95.99365, 35.43305],\n      [-95.993, 35.433],\n      [-95.99236, 35.43294],\n      [-95.99116, 35.43285],\n      [-95.99023, 35.4328],\n      [-95.98873, 35.43271],\n      [-95.98795, 35.43268],\n      [-95.98611, 35.43262],\n      [-95.98552, 35.43261],\n      [-95.98536, 35.43261],\n      [-95.98461, 35.4326],\n      [-95.98306, 35.43259],\n      [-95.98169, 35.43259],\n      [-95.98113, 35.43259],\n      [-95.97876, 35.43258],\n      [-95.97824, 35.43257],\n      [-95.97726, 35.43254],\n      [-95.97606, 35.43249],\n      [-95.97511, 35.43242],\n      [-95.97464, 35.43239],\n      [-95.97419, 35.43236],\n      [-95.97345, 35.43229],\n      [-95.97265, 35.43222],\n      [-95.97185, 35.43213],\n      [-95.97129, 35.43206],\n      [-95.97046, 35.43194],\n      [-95.9664, 35.43137],\n      [-95.96521, 35.43119],\n      [-95.96071, 35.43054],\n      [-95.96011, 35.43047],\n      [-95.95952, 35.43041],\n      [-95.95931, 35.43039],\n      [-95.95872, 35.43035],\n      [-95.95805, 35.43031],\n      [-95.95748, 35.43029],\n      [-95.95642, 35.43029],\n      [-95.95576, 35.4303],\n      [-95.95522, 35.43033],\n      [-95.95448, 35.43037],\n      [-95.95406, 35.43041],\n      [-95.95331, 35.43049],\n      [-95.95261, 35.43058],\n      [-95.95222, 35.43064],\n      [-95.95183, 35.43071],\n      [-95.95101, 35.43086],\n      [-95.94963, 35.43117],\n      [-95.94871, 35.43138],\n      [-95.94769, 35.43161],\n      [-95.94666, 35.43182],\n      [-95.94537, 35.43206],\n      [-95.94481, 35.43215],\n      [-95.94403, 35.43227],\n      [-95.94314, 35.43239],\n      [-95.94236, 35.43247],\n      [-95.94138, 35.43256],\n      [-95.94059, 35.43262],\n      [-95.93981, 35.43267],\n      [-95.93911, 35.4327],\n      [-95.93838, 35.43273],\n      [-95.93766, 35.43273],\n      [-95.93681, 35.43274],\n      [-95.93549, 35.43271],\n      [-95.93466, 35.43268],\n      [-95.93374, 35.43262],\n      [-95.93305, 35.43257],\n      [-95.93224, 35.4325],\n      [-95.93136, 35.4324],\n      [-95.93037, 35.43228],\n      [-95.91925, 35.43081],\n      [-95.91563, 35.43033],\n      [-95.91517, 35.43027],\n      [-95.91084, 35.4297],\n      [-95.90995, 35.4296],\n      [-95.90925, 35.42954],\n      [-95.90863, 35.42949],\n      [-95.90807, 35.42945],\n      [-95.90744, 35.42941],\n      [-95.9069, 35.42939],\n      [-95.90603, 35.42936],\n      [-95.90518, 35.42935],\n      [-95.90399, 35.42937],\n      [-95.90335, 35.42939],\n      [-95.90272, 35.42942],\n      [-95.90192, 35.42946],\n      [-95.90127, 35.42951],\n      [-95.90022, 35.42961],\n      [-95.89966, 35.42967],\n      [-95.89913, 35.42973],\n      [-95.89838, 35.42984],\n      [-95.89769, 35.42995],\n      [-95.89713, 35.43004],\n      [-95.89286, 35.4308],\n      [-95.89207, 35.43093],\n      [-95.89127, 35.43105],\n      [-95.89055, 35.43116],\n      [-95.88968, 35.43127],\n      [-95.88886, 35.43137],\n      [-95.88818, 35.43145],\n      [-95.88655, 35.43162],\n      [-95.88561, 35.4317],\n      [-95.88449, 35.43178],\n      [-95.88247, 35.43189],\n      [-95.8816, 35.43192],\n      [-95.88059, 35.43195],\n      [-95.87982, 35.43197],\n      [-95.87875, 35.43198],\n      [-95.87744, 35.43197],\n      [-95.87553, 35.43193],\n      [-95.87534, 35.43192],\n      [-95.87254, 35.43187],\n      [-95.87127, 35.43187],\n      [-95.86954, 35.4319],\n      [-95.86775, 35.43199],\n      [-95.86624, 35.43209],\n      [-95.865, 35.4322],\n      [-95.86379, 35.43232],\n      [-95.86243, 35.43247],\n      [-95.86156, 35.43255],\n      [-95.86038, 35.43262],\n      [-95.85945, 35.43267],\n      [-95.85848, 35.43271],\n      [-95.85757, 35.43272],\n      [-95.85691, 35.43273],\n      [-95.8563, 35.43272],\n      [-95.85459, 35.43268],\n      [-95.85323, 35.43262],\n      [-95.85233, 35.4326],\n      [-95.85167, 35.43261],\n      [-95.85098, 35.43263],\n      [-95.85006, 35.43269],\n      [-95.84947, 35.43275],\n      [-95.84872, 35.43284],\n      [-95.84808, 35.43293],\n      [-95.84753, 35.43303],\n      [-95.84688, 35.43316],\n      [-95.84641, 35.43327],\n      [-95.84596, 35.43338],\n      [-95.84556, 35.43349],\n      [-95.84471, 35.43373],\n      [-95.84387, 35.43397],\n      [-95.84055, 35.43493],\n      [-95.84007, 35.43507],\n      [-95.83871, 35.43547],\n      [-95.83805, 35.43565],\n      [-95.83764, 35.43576],\n      [-95.83718, 35.43587],\n      [-95.83661, 35.436],\n      [-95.83599, 35.43613],\n      [-95.83533, 35.43624],\n      [-95.83472, 35.43635],\n      [-95.83409, 35.43643],\n      [-95.83353, 35.4365],\n      [-95.83309, 35.43655],\n      [-95.83239, 35.43661],\n      [-95.83191, 35.43664],\n      [-95.83054, 35.4367],\n      [-95.82961, 35.4367],\n      [-95.82885, 35.43669],\n      [-95.82785, 35.43664],\n      [-95.82702, 35.43657],\n      [-95.82608, 35.43647],\n      [-95.82529, 35.43637],\n      [-95.82447, 35.43624],\n      [-95.82333, 35.43601],\n      [-95.82224, 35.43576],\n      [-95.81884, 35.43488],\n      [-95.81624, 35.43422],\n      [-95.81356, 35.43354],\n      [-95.81281, 35.43337],\n      [-95.81196, 35.4332],\n      [-95.81149, 35.43312],\n      [-95.81085, 35.43301],\n      [-95.81001, 35.43289],\n      [-95.80945, 35.43283],\n      [-95.80894, 35.43278],\n      [-95.80813, 35.43271],\n      [-95.80744, 35.43267],\n      [-95.80687, 35.43265],\n      [-95.80631, 35.43264],\n      [-95.8055, 35.43264],\n      [-95.80495, 35.43265],\n      [-95.80442, 35.43267],\n      [-95.8037, 35.4327],\n      [-95.80314, 35.43275],\n      [-95.80246, 35.4328],\n      [-95.80189, 35.43287],\n      [-95.80134, 35.43294],\n      [-95.80065, 35.43304],\n      [-95.79996, 35.43316],\n      [-95.79922, 35.4333],\n      [-95.79878, 35.4334],\n      [-95.79802, 35.43357],\n      [-95.79734, 35.43374],\n      [-95.79664, 35.43394],\n      [-95.7961, 35.4341],\n      [-95.79537, 35.43433],\n      [-95.7946, 35.43459],\n      [-95.794, 35.43483],\n      [-95.79341, 35.43506],\n      [-95.79305, 35.43522],\n      [-95.79265, 35.43539],\n      [-95.79203, 35.43568],\n      [-95.79165, 35.43586],\n      [-95.79135, 35.43601],\n      [-95.79042, 35.43649],\n      [-95.78898, 35.43726],\n      [-95.78761, 35.43797],\n      [-95.78656, 35.43852],\n      [-95.78517, 35.43925],\n      [-95.78381, 35.43996],\n      [-95.78323, 35.44025],\n      [-95.78249, 35.44058],\n      [-95.78185, 35.44086],\n      [-95.78118, 35.44111],\n      [-95.78025, 35.44144],\n      [-95.77962, 35.44165],\n      [-95.77904, 35.44182],\n      [-95.77814, 35.44207],\n      [-95.77742, 35.44226],\n      [-95.77644, 35.44255],\n      [-95.77544, 35.44286],\n      [-95.77461, 35.44314],\n      [-95.77372, 35.44346],\n      [-95.77291, 35.44377],\n      [-95.77179, 35.44421],\n      [-95.76757, 35.44589],\n      [-95.76653, 35.44629],\n      [-95.76526, 35.44673],\n      [-95.76425, 35.44706],\n      [-95.76311, 35.4474],\n      [-95.7617, 35.44779],\n      [-95.76088, 35.448],\n      [-95.76001, 35.44821],\n      [-95.7594, 35.44834],\n      [-95.75855, 35.44852],\n      [-95.75768, 35.44869],\n      [-95.75638, 35.44891],\n      [-95.7555, 35.44905],\n      [-95.75413, 35.44923],\n      [-95.75333, 35.44933],\n      [-95.75286, 35.44938],\n      [-95.75216, 35.44944],\n      [-95.75144, 35.4495],\n      [-95.75074, 35.44955],\n      [-95.75003, 35.44959],\n      [-95.74892, 35.44964],\n      [-95.74607, 35.44971],\n      [-95.74321, 35.44978],\n      [-95.74035, 35.44986],\n      [-95.73754, 35.44997],\n      [-95.73639, 35.45002],\n      [-95.73327, 35.45019],\n      [-95.73201, 35.45027],\n      [-95.72981, 35.45043],\n      [-95.72761, 35.45061],\n      [-95.72415, 35.45093],\n      [-95.72241, 35.45109],\n      [-95.72178, 35.45115],\n      [-95.72064, 35.45125],\n      [-95.71964, 35.45133],\n      [-95.7189, 35.45138],\n      [-95.7181, 35.45144],\n      [-95.71656, 35.45153],\n      [-95.71621, 35.45154],\n      [-95.71504, 35.4516],\n      [-95.71387, 35.45164],\n      [-95.71198, 35.45169],\n      [-95.71137, 35.4517],\n      [-95.70972, 35.45171],\n      [-95.70835, 35.45173],\n      [-95.70664, 35.45177],\n      [-95.70577, 35.4518],\n      [-95.70489, 35.45183],\n      [-95.70261, 35.45195],\n      [-95.70147, 35.45203],\n      [-95.70036, 35.4521],\n      [-95.69909, 35.45221],\n      [-95.69776, 35.45233],\n      [-95.69606, 35.4525],\n      [-95.69361, 35.45277],\n      [-95.69054, 35.45311],\n      [-95.689, 35.45328],\n      [-95.68821, 35.45335],\n      [-95.68731, 35.45344],\n      [-95.68557, 35.45359],\n      [-95.68462, 35.45367],\n      [-95.68388, 35.45372],\n      [-95.68241, 35.45382],\n      [-95.6809, 35.45391],\n      [-95.67937, 35.45399],\n      [-95.67784, 35.45406],\n      [-95.6764, 35.45411],\n      [-95.67494, 35.45415],\n      [-95.67348, 35.45417],\n      [-95.67203, 35.45418],\n      [-95.66429, 35.45418],\n      [-95.66041, 35.45417],\n      [-95.65656, 35.45417],\n      [-95.65523, 35.45419],\n      [-95.65455, 35.45421],\n      [-95.65394, 35.45423],\n      [-95.65274, 35.45429],\n      [-95.65167, 35.45436],\n      [-95.65078, 35.45442],\n      [-95.64956, 35.45452],\n      [-95.64875, 35.45459],\n      [-95.64741, 35.45474],\n      [-95.64611, 35.4549],\n      [-95.64562, 35.45496],\n      [-95.64429, 35.45515],\n      [-95.64352, 35.45528],\n      [-95.64268, 35.45541],\n      [-95.64238, 35.45547],\n      [-95.64032, 35.45585],\n      [-95.6389, 35.45615],\n      [-95.63756, 35.45645],\n      [-95.63554, 35.45691],\n      [-95.63372, 35.45732],\n      [-95.63204, 35.45771],\n      [-95.63081, 35.45798],\n      [-95.62927, 35.45833],\n      [-95.62859, 35.45847],\n      [-95.62786, 35.45861],\n      [-95.62701, 35.45876],\n      [-95.62603, 35.45892],\n      [-95.62511, 35.45905],\n      [-95.62423, 35.45915],\n      [-95.62334, 35.45926],\n      [-95.62249, 35.45934],\n      [-95.62176, 35.4594],\n      [-95.62113, 35.45944],\n      [-95.62, 35.4595],\n      [-95.61864, 35.45955],\n      [-95.61759, 35.45956],\n      [-95.61629, 35.45955],\n      [-95.61517, 35.45952],\n      [-95.61429, 35.45949],\n      [-95.61339, 35.45943],\n      [-95.61258, 35.45937],\n      [-95.61151, 35.45927],\n      [-95.61017, 35.45915],\n      [-95.60862, 35.459],\n      [-95.59848, 35.45804],\n      [-95.59733, 35.45793],\n      [-95.59637, 35.45783],\n      [-95.59438, 35.45764],\n      [-95.59273, 35.45749],\n      [-95.58869, 35.45711],\n      [-95.58822, 35.45708],\n      [-95.5872, 35.45701],\n      [-95.58626, 35.45694],\n      [-95.58496, 35.45689],\n      [-95.58368, 35.45684],\n      [-95.5824, 35.45683],\n      [-95.57994, 35.45683],\n      [-95.57866, 35.45686],\n      [-95.57734, 35.45691],\n      [-95.57461, 35.45705],\n      [-95.57298, 35.45715],\n      [-95.57014, 35.4573],\n      [-95.56639, 35.45751],\n      [-95.56342, 35.45767],\n      [-95.56043, 35.45783],\n      [-95.55764, 35.45798],\n      [-95.55721, 35.458],\n      [-95.55555, 35.4581],\n      [-95.55396, 35.45818],\n      [-95.55337, 35.45821],\n      [-95.55145, 35.45829],\n      [-95.55024, 35.45833],\n      [-95.5493, 35.45835],\n      [-95.54783, 35.45838],\n      [-95.54541, 35.45839],\n      [-95.54433, 35.45839],\n      [-95.54293, 35.45838],\n      [-95.54048, 35.45832],\n      [-95.53989, 35.45831],\n      [-95.53807, 35.45823],\n      [-95.53553, 35.45812],\n      [-95.53471, 35.45807],\n      [-95.53389, 35.45801],\n      [-95.52989, 35.45772],\n      [-95.52903, 35.45766],\n      [-95.52813, 35.45761],\n      [-95.52785, 35.45758],\n      [-95.52656, 35.4575],\n      [-95.52536, 35.45745],\n      [-95.52409, 35.45741],\n      [-95.52283, 35.4574],\n      [-95.52223, 35.45741],\n      [-95.52132, 35.45742],\n      [-95.52037, 35.45745],\n      [-95.51937, 35.45749],\n      [-95.5184, 35.45756],\n      [-95.51728, 35.45765],\n      [-95.51459, 35.45786],\n      [-95.51295, 35.45794],\n      [-95.51166, 35.45798],\n      [-95.50997, 35.45798],\n      [-95.50907, 35.45795],\n      [-95.50813, 35.45792],\n      [-95.50703, 35.45786],\n      [-95.50583, 35.45776],\n      [-95.50475, 35.45767],\n      [-95.50395, 35.45758],\n      [-95.50294, 35.45745],\n      [-95.50125, 35.4572],\n      [-95.4996, 35.45696],\n      [-95.49869, 35.45684],\n      [-95.49757, 35.45672],\n      [-95.49672, 35.45664],\n      [-95.49579, 35.45656],\n      [-95.49437, 35.45647],\n      [-95.49374, 35.45644],\n      [-95.49301, 35.45641],\n      [-95.49176, 35.45638],\n      [-95.49022, 35.45637],\n      [-95.4788, 35.45642],\n      [-95.468, 35.45648],\n      [-95.46319, 35.4565],\n      [-95.46191, 35.45652],\n      [-95.46066, 35.45655],\n      [-95.45896, 35.4566],\n      [-95.45777, 35.45664],\n      [-95.45694, 35.45668],\n      [-95.45551, 35.45674],\n      [-95.45167, 35.45693],\n      [-95.44807, 35.4571],\n      [-95.44744, 35.45713],\n      [-95.44573, 35.45722],\n      [-95.44062, 35.4574],\n      [-95.43952, 35.45741],\n      [-95.43644, 35.45747],\n      [-95.43337, 35.45747],\n      [-95.43164, 35.45747],\n      [-95.42916, 35.45742],\n      [-95.42643, 35.45735],\n      [-95.42533, 35.45731],\n      [-95.42439, 35.45727],\n      [-95.42299, 35.45721],\n      [-95.42258, 35.45719],\n      [-95.42145, 35.45714],\n      [-95.42036, 35.45708],\n      [-95.41933, 35.45702],\n      [-95.41698, 35.45687],\n      [-95.41573, 35.4568],\n      [-95.41494, 35.45676],\n      [-95.41417, 35.45671],\n      [-95.41276, 35.45663],\n      [-95.41184, 35.45657],\n      [-95.41106, 35.45652],\n      [-95.4102, 35.45647],\n      [-95.40905, 35.4564],\n      [-95.40792, 35.45634],\n      [-95.40677, 35.45627],\n      [-95.40574, 35.45622],\n      [-95.40406, 35.45616],\n      [-95.40235, 35.45612],\n      [-95.40025, 35.45611],\n      [-95.39893, 35.45612],\n      [-95.39715, 35.45616],\n      [-95.39603, 35.45619],\n      [-95.39346, 35.45632],\n      [-95.39221, 35.45641],\n      [-95.39105, 35.4565],\n      [-95.3898, 35.45661],\n      [-95.38837, 35.45675],\n      [-95.38623, 35.45696],\n      [-95.38495, 35.4571],\n      [-95.38364, 35.45723],\n      [-95.38112, 35.45749],\n      [-95.38055, 35.45755],\n      [-95.3802, 35.45759],\n      [-95.37788, 35.45783],\n      [-95.3766, 35.45796],\n      [-95.37567, 35.45805],\n      [-95.37482, 35.45815],\n      [-95.37398, 35.45823],\n      [-95.3733, 35.4583],\n      [-95.37242, 35.45841],\n      [-95.37136, 35.45856],\n      [-95.37047, 35.4587],\n      [-95.36962, 35.45885],\n      [-95.36864, 35.45903],\n      [-95.36783, 35.45919],\n      [-95.36641, 35.45951],\n      [-95.36534, 35.45978],\n      [-95.36468, 35.45996],\n      [-95.36363, 35.46026],\n      [-95.36207, 35.46073],\n      [-95.36102, 35.46108],\n      [-95.36031, 35.46134],\n      [-95.35969, 35.46157],\n      [-95.35875, 35.46195],\n      [-95.35759, 35.46242],\n      [-95.35673, 35.46279],\n      [-95.354, 35.46406],\n      [-95.35327, 35.46441],\n      [-95.35149, 35.46524],\n      [-95.35062, 35.46565],\n      [-95.34989, 35.46597],\n      [-95.34923, 35.46626],\n      [-95.34848, 35.46657],\n      [-95.34762, 35.46691],\n      [-95.34688, 35.4672],\n      [-95.34591, 35.46756],\n      [-95.34496, 35.46789],\n      [-95.34377, 35.46829],\n      [-95.34255, 35.46867],\n      [-95.34176, 35.4689],\n      [-95.34103, 35.46911],\n      [-95.3403, 35.46931],\n      [-95.33945, 35.46952],\n      [-95.33836, 35.46979],\n      [-95.3371, 35.47006],\n      [-95.33636, 35.47022],\n      [-95.32925, 35.47177],\n      [-95.32768, 35.47211],\n      [-95.32734, 35.47218],\n      [-95.32623, 35.47243],\n      [-95.31338, 35.47523],\n      [-95.31208, 35.47551],\n      [-95.30817, 35.47637],\n      [-95.30669, 35.47669],\n      [-95.30662, 35.47671],\n      [-95.30592, 35.47686],\n      [-95.30031, 35.47808],\n      [-95.30008, 35.47813],\n      [-95.29932, 35.47829],\n      [-95.2976, 35.47866],\n      [-95.29686, 35.47882],\n      [-95.29547, 35.47913],\n      [-95.29436, 35.47937],\n      [-95.29313, 35.47963],\n      [-95.29196, 35.47988],\n      [-95.2905, 35.48017],\n      [-95.28893, 35.48047],\n      [-95.28809, 35.48061],\n      [-95.28728, 35.48074],\n      [-95.28615, 35.48092],\n      [-95.28477, 35.48112],\n      [-95.28345, 35.4813],\n      [-95.28175, 35.48151],\n      [-95.28058, 35.48164],\n      [-95.27941, 35.48175],\n      [-95.27786, 35.48188],\n      [-95.27659, 35.48198],\n      [-95.27614, 35.48201],\n      [-95.27436, 35.48212],\n      [-95.27402, 35.48213],\n      [-95.27266, 35.48218],\n      [-95.27137, 35.48222],\n      [-95.26922, 35.48226],\n      [-95.26378, 35.48227],\n      [-95.25598, 35.4823],\n      [-95.25404, 35.4823],\n      [-95.24667, 35.48232],\n      [-95.24593, 35.48233],\n      [-95.24262, 35.48234],\n      [-95.24084, 35.48235],\n      [-95.24046, 35.48235],\n      [-95.23884, 35.48236],\n      [-95.23799, 35.48236],\n      [-95.23701, 35.48236],\n      [-95.23604, 35.48235],\n      [-95.23521, 35.48234],\n      [-95.23445, 35.48232],\n      [-95.234, 35.4823],\n      [-95.23326, 35.48227],\n      [-95.23245, 35.48222],\n      [-95.23163, 35.48217],\n      [-95.23085, 35.48212],\n      [-95.23002, 35.48205],\n      [-95.22863, 35.48193],\n      [-95.2279, 35.48185],\n      [-95.22721, 35.48178],\n      [-95.22606, 35.48164],\n      [-95.22495, 35.48152],\n      [-95.22393, 35.4814],\n      [-95.22305, 35.4813],\n      [-95.22223, 35.48122],\n      [-95.2214, 35.48116],\n      [-95.22057, 35.48112],\n      [-95.21973, 35.48109],\n      [-95.21893, 35.48109],\n      [-95.21814, 35.48109],\n      [-95.21677, 35.48112],\n      [-95.21583, 35.48117],\n      [-95.21524, 35.48122],\n      [-95.21466, 35.48127],\n      [-95.21384, 35.48135],\n      [-95.21282, 35.48148],\n      [-95.21196, 35.4816],\n      [-95.21112, 35.48174],\n      [-95.21025, 35.48191],\n      [-95.20939, 35.48209],\n      [-95.20784, 35.48242],\n      [-95.20668, 35.48267],\n      [-95.20554, 35.48292],\n      [-95.20493, 35.48305],\n      [-95.20436, 35.48317],\n      [-95.20388, 35.48328],\n      [-95.2035, 35.48336],\n      [-95.20302, 35.48346],\n      [-95.20096, 35.48391],\n      [-95.19907, 35.48432],\n      [-95.19564, 35.48506],\n      [-95.18931, 35.48644],\n      [-95.18802, 35.48671],\n      [-95.187, 35.48693],\n      [-95.18616, 35.48711],\n      [-95.18533, 35.48728],\n      [-95.18458, 35.4874],\n      [-95.18375, 35.48752],\n      [-95.18271, 35.48765],\n      [-95.18209, 35.48771],\n      [-95.18117, 35.48778],\n      [-95.18031, 35.48783],\n      [-95.17951, 35.48786],\n      [-95.17854, 35.48787],\n      [-95.17753, 35.48786],\n      [-95.17633, 35.48781],\n      [-95.1757, 35.48777],\n      [-95.17509, 35.48772],\n      [-95.17432, 35.48764],\n      [-95.17367, 35.48756],\n      [-95.17308, 35.48749],\n      [-95.17247, 35.48739],\n      [-95.17208, 35.48733],\n      [-95.17163, 35.48725],\n      [-95.17076, 35.48708],\n      [-95.17007, 35.48693],\n      [-95.16835, 35.48656],\n      [-95.16695, 35.48624],\n      [-95.16505, 35.48583],\n      [-95.16131, 35.48503],\n      [-95.15949, 35.48459],\n      [-95.15732, 35.48411],\n      [-95.15624, 35.48386],\n      [-95.15515, 35.48364],\n      [-95.15366, 35.48335],\n      [-95.15301, 35.48323],\n      [-95.15232, 35.48311],\n      [-95.15111, 35.48291],\n      [-95.14985, 35.48273],\n      [-95.14913, 35.48263],\n      [-95.14787, 35.48248],\n      [-95.14664, 35.48234],\n      [-95.14517, 35.48221],\n      [-95.14311, 35.48206],\n      [-95.14115, 35.48196],\n      [-95.13965, 35.48191],\n      [-95.13622, 35.48188],\n      [-95.13223, 35.48187],\n      [-95.1237, 35.48183],\n      [-95.12003, 35.48181],\n      [-95.11866, 35.48182],\n      [-95.11769, 35.48184],\n      [-95.11683, 35.48188],\n      [-95.11596, 35.48193],\n      [-95.11524, 35.48198],\n      [-95.11477, 35.48202],\n      [-95.114, 35.4821],\n      [-95.11316, 35.48219],\n      [-95.11217, 35.48233],\n      [-95.11156, 35.48243],\n      [-95.11076, 35.48256],\n      [-95.11004, 35.48269],\n      [-95.10909, 35.48288],\n      [-95.10822, 35.48307],\n      [-95.10744, 35.48326],\n      [-95.1067, 35.48345],\n      [-95.10581, 35.4837],\n      [-95.10494, 35.48395],\n      [-95.10379, 35.48432],\n      [-95.10292, 35.48462],\n      [-95.10156, 35.48512],\n      [-95.10034, 35.48559],\n      [-95.09392, 35.48798],\n      [-95.09283, 35.48837],\n      [-95.09225, 35.48856],\n      [-95.0916, 35.48877],\n      [-95.09109, 35.48891],\n      [-95.09055, 35.48904],\n      [-95.08997, 35.48917],\n      [-95.08938, 35.48929],\n      [-95.08878, 35.4894],\n      [-95.08806, 35.4895],\n      [-95.08728, 35.48958],\n      [-95.08659, 35.48964],\n      [-95.08589, 35.48967],\n      [-95.08504, 35.48968],\n      [-95.08454, 35.48968],\n      [-95.08355, 35.48963],\n      [-95.0825, 35.48954],\n      [-95.08179, 35.48945],\n      [-95.08109, 35.48934],\n      [-95.08015, 35.4892],\n      [-95.07958, 35.48912],\n      [-95.07906, 35.48907],\n      [-95.07842, 35.489],\n      [-95.07749, 35.48892],\n      [-95.07686, 35.48887],\n      [-95.07616, 35.48883],\n      [-95.0756, 35.48881],\n      [-95.07508, 35.48879],\n      [-95.0746, 35.48878],\n      [-95.07388, 35.48877],\n      [-95.07313, 35.48878],\n      [-95.07193, 35.48881],\n      [-95.07116, 35.48884],\n      [-95.07056, 35.48888],\n      [-95.06999, 35.48892],\n      [-95.06943, 35.48897],\n      [-95.06891, 35.48902],\n      [-95.06847, 35.48907],\n      [-95.06783, 35.48914],\n      [-95.06702, 35.48925],\n      [-95.06641, 35.48935],\n      [-95.06579, 35.48945],\n      [-95.06464, 35.48964],\n      [-95.06327, 35.48988],\n      [-95.06159, 35.49017],\n      [-95.05888, 35.49063],\n      [-95.05774, 35.49082],\n      [-95.0569, 35.49094],\n      [-95.05629, 35.49102],\n      [-95.05553, 35.49109],\n      [-95.0547, 35.49115],\n      [-95.05393, 35.49119],\n      [-95.05301, 35.49122],\n      [-95.05225, 35.49121],\n      [-95.0514, 35.49118],\n      [-95.05066, 35.49114],\n      [-95.04995, 35.49109],\n      [-95.04928, 35.49103],\n      [-95.04871, 35.49096],\n      [-95.04797, 35.49086],\n      [-95.04714, 35.49071],\n      [-95.04623, 35.49054],\n      [-95.04528, 35.49032],\n      [-95.04438, 35.49011],\n      [-95.04368, 35.48995],\n      [-95.04305, 35.48983],\n      [-95.04232, 35.4897],\n      [-95.04163, 35.48959],\n      [-95.04086, 35.48947],\n      [-95.03998, 35.48936],\n      [-95.03904, 35.48927],\n      [-95.03838, 35.48922],\n      [-95.03771, 35.48917],\n      [-95.03694, 35.48914],\n      [-95.03614, 35.48912],\n      [-95.03545, 35.48911],\n      [-95.03459, 35.48913],\n      [-95.03378, 35.48916],\n      [-95.0331, 35.4892],\n      [-95.03244, 35.48925],\n      [-95.03175, 35.4893],\n      [-95.03103, 35.48939],\n      [-95.02905, 35.48965],\n      [-95.02707, 35.48992],\n      [-95.02626, 35.49003],\n      [-95.0254, 35.49015],\n      [-95.02298, 35.4905],\n      [-95.02162, 35.49068],\n      [-95.0209, 35.49077],\n      [-95.01999, 35.4909],\n      [-95.01858, 35.49109],\n      [-95.01738, 35.49126],\n      [-95.01635, 35.49141],\n      [-95.01583, 35.49151],\n      [-95.01531, 35.4916],\n      [-95.01435, 35.49179],\n      [-95.01362, 35.49195],\n      [-95.01302, 35.49209],\n      [-95.01243, 35.49223],\n      [-95.01188, 35.49237],\n      [-95.01119, 35.49257],\n      [-95.01051, 35.49275],\n      [-95.00996, 35.49289],\n      [-95.00951, 35.49299],\n      [-95.00906, 35.49308],\n      [-95.00871, 35.49314],\n      [-95.00815, 35.4932],\n      [-95.00763, 35.49324],\n      [-95.00716, 35.49325],\n      [-95.00667, 35.49324],\n      [-95.00623, 35.49322],\n      [-95.00572, 35.49317],\n      [-95.00524, 35.49311],\n      [-95.00474, 35.49302],\n      [-95.00427, 35.49292],\n      [-95.00371, 35.49277],\n      [-95.00319, 35.49259],\n      [-95.00265, 35.49238],\n      [-95.00208, 35.49213],\n      [-95.00127, 35.49171],\n      [-95.00046, 35.4913],\n      [-94.99999, 35.49106],\n      [-94.99957, 35.49084],\n      [-94.99918, 35.49066],\n      [-94.99877, 35.49048],\n      [-94.99826, 35.49027],\n      [-94.9977, 35.49006],\n      [-94.9972, 35.48989],\n      [-94.99634, 35.48963],\n      [-94.99586, 35.48951],\n      [-94.99535, 35.4894],\n      [-94.99477, 35.48928],\n      [-94.9942, 35.48918],\n      [-94.99322, 35.48904],\n      [-94.99276, 35.48899],\n      [-94.99225, 35.48896],\n      [-94.99147, 35.48893],\n      [-94.99075, 35.48893],\n      [-94.99006, 35.48894],\n      [-94.98956, 35.48897],\n      [-94.98879, 35.48904],\n      [-94.98769, 35.48914],\n      [-94.9862, 35.48925],\n      [-94.98555, 35.48929],\n      [-94.98502, 35.48932],\n      [-94.98453, 35.48934],\n      [-94.98413, 35.48935],\n      [-94.98348, 35.48937],\n      [-94.98231, 35.48938],\n      [-94.98123, 35.48937],\n      [-94.98016, 35.48934],\n      [-94.97905, 35.48929],\n      [-94.97878, 35.48927],\n      [-94.97754, 35.4892],\n      [-94.97692, 35.48916],\n      [-94.97639, 35.48912],\n      [-94.97569, 35.48906],\n      [-94.97488, 35.48896],\n      [-94.9741, 35.48886],\n      [-94.97347, 35.48876],\n      [-94.9731, 35.4887],\n      [-94.9726, 35.48861],\n      [-94.9719, 35.48847],\n      [-94.97112, 35.48831],\n      [-94.97034, 35.48812],\n      [-94.96932, 35.48786],\n      [-94.96845, 35.4876],\n      [-94.96738, 35.48726],\n      [-94.9668, 35.48705],\n      [-94.96627, 35.48686],\n      [-94.9653, 35.48648],\n      [-94.96463, 35.48619],\n      [-94.964, 35.48591],\n      [-94.96365, 35.48575],\n      [-94.96286, 35.48537],\n      [-94.9624, 35.48513],\n      [-94.96193, 35.48488],\n      [-94.96096, 35.48432],\n      [-94.96028, 35.48393],\n      [-94.95956, 35.48347],\n      [-94.95912, 35.48317],\n      [-94.95854, 35.48277],\n      [-94.95646, 35.48131],\n      [-94.95582, 35.48086],\n      [-94.95412, 35.47967],\n      [-94.95227, 35.47836],\n      [-94.94485, 35.47316],\n      [-94.94335, 35.47211],\n      [-94.93749, 35.46801],\n      [-94.93688, 35.4676],\n      [-94.93626, 35.46719],\n      [-94.9358, 35.46688],\n      [-94.93532, 35.46658],\n      [-94.93478, 35.46623],\n      [-94.93403, 35.46577],\n      [-94.93257, 35.4649],\n      [-94.93103, 35.46404],\n      [-94.93023, 35.46362],\n      [-94.9294, 35.46318],\n      [-94.92853, 35.46274],\n      [-94.92768, 35.46232],\n      [-94.92588, 35.46148],\n      [-94.92455, 35.46089],\n      [-94.92326, 35.46036],\n      [-94.92258, 35.46009],\n      [-94.92195, 35.45983],\n      [-94.92081, 35.4594],\n      [-94.92031, 35.45922],\n      [-94.9191, 35.4588],\n      [-94.91791, 35.45839],\n      [-94.9163, 35.45788],\n      [-94.91547, 35.45763],\n      [-94.91468, 35.45741],\n      [-94.91352, 35.45708],\n      [-94.912, 35.45669],\n      [-94.91103, 35.45645],\n      [-94.91001, 35.45621],\n      [-94.90869, 35.45593],\n      [-94.90739, 35.45567],\n      [-94.90605, 35.45542],\n      [-94.90486, 35.45523],\n      [-94.90427, 35.45513],\n      [-94.9037, 35.45505],\n      [-94.90264, 35.4549],\n      [-94.90157, 35.45476],\n      [-94.90092, 35.45469],\n      [-94.90025, 35.45461],\n      [-94.8988, 35.45447],\n      [-94.89808, 35.45441],\n      [-94.89736, 35.45435],\n      [-94.89625, 35.45428],\n      [-94.89481, 35.4542],\n      [-94.89408, 35.45418],\n      [-94.89332, 35.45415],\n      [-94.8904, 35.45409],\n      [-94.88924, 35.45406],\n      [-94.88833, 35.45404],\n      [-94.88761, 35.45403],\n      [-94.88537, 35.45398],\n      [-94.88486, 35.45397],\n      [-94.88175, 35.4539],\n      [-94.88065, 35.45388],\n      [-94.88034, 35.45387],\n      [-94.87826, 35.45383],\n      [-94.87667, 35.45382],\n      [-94.87508, 35.45383],\n      [-94.87352, 35.45387],\n      [-94.87205, 35.45392],\n      [-94.8707, 35.45399],\n      [-94.86956, 35.45405],\n      [-94.86738, 35.4542],\n      [-94.86628, 35.4543],\n      [-94.86528, 35.45439],\n      [-94.86432, 35.45449],\n      [-94.86247, 35.45469],\n      [-94.85862, 35.45511],\n      [-94.85685, 35.4553],\n      [-94.85626, 35.45536],\n      [-94.8552, 35.45546],\n      [-94.85433, 35.45552],\n      [-94.85355, 35.45555],\n      [-94.85267, 35.45557],\n      [-94.85178, 35.45558],\n      [-94.85086, 35.45556],\n      [-94.85011, 35.45553],\n      [-94.84961, 35.4555],\n      [-94.8491, 35.45547],\n      [-94.84839, 35.45541],\n      [-94.84765, 35.45534],\n      [-94.84719, 35.45528],\n      [-94.84681, 35.45524],\n      [-94.84601, 35.45513],\n      [-94.84521, 35.455],\n      [-94.84441, 35.45485],\n      [-94.84354, 35.45468],\n      [-94.84211, 35.45436],\n      [-94.84081, 35.45406],\n      [-94.8398, 35.45382],\n      [-94.83815, 35.45344],\n      [-94.83455, 35.45261],\n      [-94.83307, 35.45227],\n      [-94.83194, 35.45199],\n      [-94.83076, 35.45173],\n      [-94.82922, 35.45139],\n      [-94.82813, 35.45113],\n      [-94.82583, 35.4506],\n      [-94.8248, 35.45035],\n      [-94.82258, 35.44985],\n      [-94.82127, 35.44955],\n      [-94.82018, 35.4493],\n      [-94.81902, 35.44906],\n      [-94.81796, 35.44886],\n      [-94.81741, 35.44877],\n      [-94.81684, 35.44867],\n      [-94.8156, 35.44849],\n      [-94.8144, 35.44834],\n      [-94.81293, 35.44819],\n      [-94.81198, 35.44812],\n      [-94.81119, 35.44807],\n      [-94.81004, 35.44802],\n      [-94.80967, 35.448],\n      [-94.8093, 35.44799],\n      [-94.80795, 35.44797],\n      [-94.80575, 35.44797],\n      [-94.8053, 35.44797],\n      [-94.80199, 35.44798],\n      [-94.80106, 35.44798],\n      [-94.80057, 35.44798],\n      [-94.79974, 35.44797],\n      [-94.79908, 35.44795],\n      [-94.79879, 35.44794],\n      [-94.79835, 35.44791],\n      [-94.79782, 35.44788],\n      [-94.79707, 35.44782],\n      [-94.7966, 35.44778],\n      [-94.79616, 35.44774],\n      [-94.79562, 35.44767],\n      [-94.79493, 35.44759],\n      [-94.79392, 35.44744],\n      [-94.79305, 35.44729],\n      [-94.7922, 35.44712],\n      [-94.79145, 35.44699],\n      [-94.79092, 35.4469],\n      [-94.79029, 35.44682],\n      [-94.78972, 35.44676],\n      [-94.78909, 35.44671],\n      [-94.78828, 35.44669],\n      [-94.78777, 35.44669],\n      [-94.78701, 35.44671],\n      [-94.78618, 35.44677],\n      [-94.78532, 35.44688],\n      [-94.78467, 35.44697],\n      [-94.78417, 35.44707],\n      [-94.78349, 35.44722],\n      [-94.78275, 35.44742],\n      [-94.78201, 35.44764],\n      [-94.78092, 35.44798],\n      [-94.77987, 35.44829],\n      [-94.77947, 35.44839],\n      [-94.77874, 35.44855],\n      [-94.77785, 35.44871],\n      [-94.77733, 35.44879],\n      [-94.77672, 35.44887],\n      [-94.77591, 35.44894],\n      [-94.77498, 35.44901],\n      [-94.77346, 35.44904],\n      [-94.77173, 35.44912],\n      [-94.77059, 35.44918],\n      [-94.76956, 35.44926],\n      [-94.7669, 35.44951],\n      [-94.76463, 35.44977],\n      [-94.76411, 35.44983],\n      [-94.76285, 35.44998],\n      [-94.76155, 35.45014],\n      [-94.76063, 35.45025],\n      [-94.7587, 35.45047],\n      [-94.75833, 35.45052],\n      [-94.7578, 35.45058],\n      [-94.75714, 35.45065],\n      [-94.75666, 35.45069],\n      [-94.75613, 35.45073],\n      [-94.75565, 35.45075],\n      [-94.75522, 35.45074],\n      [-94.75486, 35.45074],\n      [-94.75423, 35.4507],\n      [-94.75373, 35.45066],\n      [-94.7533, 35.45062],\n      [-94.75278, 35.45056],\n      [-94.75232, 35.45049],\n      [-94.75166, 35.45036],\n      [-94.75096, 35.4502],\n      [-94.75041, 35.45005],\n      [-94.74999, 35.44993],\n      [-94.74925, 35.44969],\n      [-94.74875, 35.4495],\n      [-94.74821, 35.44927],\n      [-94.7478, 35.44908],\n      [-94.74741, 35.4489],\n      [-94.7468, 35.44858],\n      [-94.74613, 35.44819],\n      [-94.74569, 35.44792],\n      [-94.74534, 35.44767],\n      [-94.74353, 35.44637],\n      [-94.74135, 35.44486],\n      [-94.74042, 35.44419],\n      [-94.73983, 35.44377],\n      [-94.73907, 35.44323],\n      [-94.73792, 35.44241],\n      [-94.73724, 35.44193],\n      [-94.7362, 35.4412],\n      [-94.73548, 35.4407],\n      [-94.73331, 35.43917],\n      [-94.73096, 35.43751],\n      [-94.72945, 35.43645],\n      [-94.72871, 35.43592],\n      [-94.72749, 35.43506],\n      [-94.72712, 35.4348],\n      [-94.72616, 35.43412],\n      [-94.7254, 35.43359],\n      [-94.7247, 35.43312],\n      [-94.72345, 35.43232],\n      [-94.7222, 35.43155],\n      [-94.72089, 35.4308],\n      [-94.72006, 35.43035],\n      [-94.71881, 35.42969],\n      [-94.71801, 35.42929],\n      [-94.7148, 35.42762],\n      [-94.71378, 35.42708],\n      [-94.71266, 35.42647],\n      [-94.71007, 35.42506],\n      [-94.7091, 35.42451],\n      [-94.70881, 35.42435],\n      [-94.70724, 35.42347],\n      [-94.70578, 35.42265],\n      [-94.70426, 35.4218],\n      [-94.702, 35.42054],\n      [-94.70096, 35.41994],\n      [-94.69969, 35.4192],\n      [-94.6987, 35.41862],\n      [-94.69862, 35.41858],\n      [-94.69823, 35.41835],\n      [-94.69729, 35.41777],\n      [-94.69609, 35.41706],\n      [-94.69502, 35.41639],\n      [-94.69244, 35.41477],\n      [-94.69134, 35.41409],\n      [-94.68987, 35.41318],\n      [-94.68791, 35.41196],\n      [-94.68623, 35.41094],\n      [-94.68594, 35.41077],\n      [-94.6849, 35.41014],\n      [-94.68382, 35.40949],\n      [-94.68294, 35.40897],\n      [-94.67892, 35.40661],\n      [-94.67792, 35.40602],\n      [-94.67696, 35.40545],\n      [-94.67637, 35.40511],\n      [-94.67585, 35.4048],\n      [-94.67499, 35.4043],\n      [-94.67366, 35.40353],\n      [-94.67279, 35.403],\n      [-94.67223, 35.40266],\n      [-94.67097, 35.40187],\n      [-94.66836, 35.40019],\n      [-94.66667, 35.39908],\n      [-94.66556, 35.39834],\n      [-94.66509, 35.39803],\n      [-94.66438, 35.39756],\n      [-94.66378, 35.39717],\n      [-94.66294, 35.39666],\n      [-94.66253, 35.39644],\n      [-94.66183, 35.39609],\n      [-94.66139, 35.39587],\n      [-94.66089, 35.39565],\n      [-94.65957, 35.39513],\n      [-94.65889, 35.39489],\n      [-94.65795, 35.39461],\n      [-94.6573, 35.39443],\n      [-94.65647, 35.39423],\n      [-94.65563, 35.39406],\n      [-94.65515, 35.39398],\n      [-94.65439, 35.39388],\n      [-94.65365, 35.39379],\n      [-94.65268, 35.39372],\n      [-94.65213, 35.39369],\n      [-94.65159, 35.39367],\n      [-94.64991, 35.39367],\n      [-94.63782, 35.39366],\n      [-94.63767, 35.39366],\n      [-94.62276, 35.39364],\n      [-94.62222, 35.39364],\n      [-94.61837, 35.39363],\n      [-94.61677, 35.39362],\n      [-94.61535, 35.39361],\n      [-94.61364, 35.39358],\n      [-94.60596, 35.3934],\n      [-94.60335, 35.39333],\n      [-94.60226, 35.39331],\n      [-94.60119, 35.39328],\n      [-94.60067, 35.39327],\n      [-94.59795, 35.39321],\n      [-94.59757, 35.3932],\n      [-94.59377, 35.3931],\n      [-94.58451, 35.39288],\n      [-94.57804, 35.39271],\n      [-94.57712, 35.39271],\n      [-94.5764, 35.39271],\n      [-94.57547, 35.39275],\n      [-94.57482, 35.39279],\n      [-94.57425, 35.39284],\n      [-94.57343, 35.39292],\n      [-94.5729, 35.39299],\n      [-94.57234, 35.39307],\n      [-94.57186, 35.39314],\n      [-94.57129, 35.39325],\n      [-94.57045, 35.39342],\n      [-94.56978, 35.39357],\n      [-94.56917, 35.39372],\n      [-94.56856, 35.39389],\n      [-94.56774, 35.39414],\n      [-94.56715, 35.39433],\n      [-94.56658, 35.39452],\n      [-94.56376, 35.39544],\n      [-94.56336, 35.39557],\n      [-94.5625, 35.39584],\n      [-94.56167, 35.39606],\n      [-94.56073, 35.39631],\n      [-94.5597, 35.39655],\n      [-94.55889, 35.39672],\n      [-94.55766, 35.39694],\n      [-94.55673, 35.39709],\n      [-94.55561, 35.39724],\n      [-94.5542, 35.39739],\n      [-94.55252, 35.3975],\n      [-94.55112, 35.39753],\n      [-94.54893, 35.39754],\n      [-94.54849, 35.39754],\n      [-94.54675, 35.39755],\n      [-94.5459, 35.39757],\n      [-94.54506, 35.39763],\n      [-94.54397, 35.39773],\n      [-94.54314, 35.39782],\n      [-94.54244, 35.39793],\n      [-94.54176, 35.39804],\n      [-94.54086, 35.39822],\n      [-94.54017, 35.39837],\n      [-94.5396, 35.3985],\n      [-94.53903, 35.39866],\n      [-94.53834, 35.39885],\n      [-94.53755, 35.3991],\n      [-94.53643, 35.39948],\n      [-94.53559, 35.39982],\n      [-94.53457, 35.40027],\n      [-94.53405, 35.40052],\n      [-94.53342, 35.40083],\n      [-94.53272, 35.4012],\n      [-94.53207, 35.40157],\n      [-94.53101, 35.40217],\n      [-94.52957, 35.40298],\n      [-94.52866, 35.40351],\n      [-94.52751, 35.40419],\n      [-94.5262, 35.40495],\n      [-94.52539, 35.4054],\n      [-94.52398, 35.40619],\n      [-94.52288, 35.40683],\n      [-94.52202, 35.40731],\n      [-94.52086, 35.40797],\n      [-94.51997, 35.40849],\n      [-94.51882, 35.40915],\n      [-94.51728, 35.41004],\n      [-94.51611, 35.41075],\n      [-94.5148, 35.41155],\n      [-94.51359, 35.41229],\n      [-94.51228, 35.41311],\n      [-94.51056, 35.41419],\n      [-94.50896, 35.41519],\n      [-94.50747, 35.41613],\n      [-94.50666, 35.41663],\n      [-94.50572, 35.41723],\n      [-94.50487, 35.41776],\n      [-94.50397, 35.41831],\n      [-94.50332, 35.41872],\n      [-94.50279, 35.41907],\n      [-94.50213, 35.41949],\n      [-94.50119, 35.42014],\n      [-94.50049, 35.42065],\n      [-94.49943, 35.42144],\n      [-94.49862, 35.4221],\n      [-94.49799, 35.42263],\n      [-94.49726, 35.42326],\n      [-94.49676, 35.42369],\n      [-94.49595, 35.42441],\n      [-94.49492, 35.42534],\n      [-94.49391, 35.42625],\n      [-94.49281, 35.42723],\n      [-94.49149, 35.4284],\n      [-94.4907, 35.42912],\n      [-94.49011, 35.42965],\n      [-94.48951, 35.43016],\n      [-94.48892, 35.43064],\n      [-94.48831, 35.43109],\n      [-94.48767, 35.43154],\n      [-94.48707, 35.43193],\n      [-94.48642, 35.43231],\n      [-94.4858, 35.43267],\n      [-94.48543, 35.43287],\n      [-94.48516, 35.43301],\n      [-94.4845, 35.43334],\n      [-94.48395, 35.43358],\n      [-94.48338, 35.43383],\n      [-94.48265, 35.43413],\n      [-94.48204, 35.43436],\n      [-94.48143, 35.43457],\n      [-94.48069, 35.4348],\n      [-94.48, 35.435],\n      [-94.47946, 35.43515],\n      [-94.47839, 35.43545],\n      [-94.47775, 35.43563],\n      [-94.47613, 35.43607],\n      [-94.4701, 35.43775],\n      [-94.46907, 35.43806],\n      [-94.46837, 35.43827],\n      [-94.4677, 35.43851],\n      [-94.46701, 35.43877],\n      [-94.46635, 35.43904],\n      [-94.46568, 35.43933],\n      [-94.46509, 35.4396],\n      [-94.46448, 35.4399],\n      [-94.46393, 35.4402],\n      [-94.46324, 35.44058],\n      [-94.46234, 35.44112],\n      [-94.46165, 35.44157],\n      [-94.46095, 35.44207],\n      [-94.46038, 35.44248],\n      [-94.45976, 35.44298],\n      [-94.45922, 35.44341],\n      [-94.45874, 35.44379],\n      [-94.45826, 35.44413],\n      [-94.45779, 35.44446],\n      [-94.45727, 35.4448],\n      [-94.45672, 35.44513],\n      [-94.45625, 35.44539],\n      [-94.45574, 35.44565],\n      [-94.45519, 35.44591],\n      [-94.45468, 35.44614],\n      [-94.45401, 35.44642],\n      [-94.45346, 35.44663],\n      [-94.45295, 35.4468],\n      [-94.45229, 35.44701],\n      [-94.45166, 35.44719],\n      [-94.45075, 35.44742],\n      [-94.44848, 35.44799],\n      [-94.44777, 35.44816],\n      [-94.44711, 35.44835],\n      [-94.4465, 35.44855],\n      [-94.44583, 35.44879],\n      [-94.44554, 35.4489],\n      [-94.44492, 35.44918],\n      [-94.44419, 35.44952],\n      [-94.44382, 35.44971],\n      [-94.44349, 35.44989],\n      [-94.44307, 35.45014],\n      [-94.44269, 35.45037],\n      [-94.44236, 35.4506],\n      [-94.44196, 35.45088],\n      [-94.44168, 35.45109],\n      [-94.44138, 35.45131],\n      [-94.44099, 35.45163],\n      [-94.44071, 35.45187],\n      [-94.4399, 35.45265],\n      [-94.43901, 35.45348],\n      [-94.43849, 35.45398],\n      [-94.43518, 35.4571],\n      [-94.43459, 35.45762],\n      [-94.43403, 35.45806],\n      [-94.43354, 35.45842],\n      [-94.43304, 35.45876],\n      [-94.43256, 35.45905],\n      [-94.43204, 35.45937],\n      [-94.43162, 35.4596],\n      [-94.43097, 35.45992],\n      [-94.43021, 35.46027],\n      [-94.42901, 35.46075],\n      [-94.42766, 35.46115],\n      [-94.42635, 35.46149],\n      [-94.4254, 35.46166],\n      [-94.42426, 35.46181],\n      [-94.42064, 35.46209],\n      [-94.41573, 35.46246],\n      [-94.41158, 35.46278],\n      [-94.41007, 35.4629],\n      [-94.40904, 35.46292],\n      [-94.40791, 35.46281],\n      [-94.40682, 35.46256],\n      [-94.40574, 35.46216],\n      [-94.40417, 35.46133],\n      [-94.4025, 35.46046],\n      [-94.40109, 35.45994],\n      [-94.39998, 35.45961],\n      [-94.39872, 35.45933],\n      [-94.39707, 35.45914],\n      [-94.39596, 35.45906],\n      [-94.39554, 35.45908],\n      [-94.39475, 35.4591],\n      [-94.39375, 35.45919],\n      [-94.39258, 35.45937],\n      [-94.39122, 35.45968],\n      [-94.38989, 35.46011],\n      [-94.389, 35.46043],\n      [-94.38796, 35.46097],\n      [-94.38718, 35.4614],\n      [-94.38556, 35.46257],\n      [-94.38422, 35.46357],\n      [-94.38309, 35.46436],\n      [-94.38221, 35.46484],\n      [-94.38092, 35.46526],\n      [-94.37994, 35.46544],\n      [-94.37882, 35.46551],\n      [-94.37761, 35.46543],\n      [-94.37312, 35.46482],\n      [-94.3655, 35.46375],\n      [-94.36043, 35.46305],\n      [-94.35702, 35.46259],\n      [-94.35612, 35.46248],\n      [-94.3527, 35.46205],\n      [-94.3515, 35.46189],\n      [-94.34284, 35.46106],\n      [-94.33813, 35.4606],\n      [-94.33673, 35.46045],\n      [-94.33545, 35.46023],\n      [-94.33343, 35.45975],\n      [-94.33224, 35.45934],\n      [-94.33102, 35.45886],\n      [-94.32755, 35.45735],\n      [-94.32668, 35.45697],\n      [-94.32443, 35.45601],\n      [-94.32362, 35.45567],\n      [-94.32272, 35.45541],\n      [-94.32167, 35.45522],\n      [-94.32099, 35.45517],\n      [-94.32048, 35.45515],\n      [-94.31994, 35.45517],\n      [-94.31957, 35.45519],\n      [-94.31911, 35.45525],\n      [-94.31834, 35.45535],\n      [-94.31785, 35.45542],\n      [-94.31595, 35.45568],\n      [-94.30986, 35.45655],\n      [-94.30322, 35.45742],\n      [-94.30188, 35.45765],\n      [-94.30033, 35.45805],\n      [-94.2992, 35.45829],\n      [-94.29785, 35.45863],\n      [-94.29598, 35.4592],\n      [-94.29151, 35.4609],\n      [-94.28823, 35.46215],\n      [-94.28569, 35.46307],\n      [-94.27906, 35.46557],\n      [-94.26922, 35.46929],\n      [-94.26252, 35.47186],\n      [-94.26024, 35.4727],\n      [-94.2588, 35.47319],\n      [-94.25708, 35.47379],\n      [-94.25513, 35.47445],\n      [-94.25426, 35.4748],\n      [-94.25323, 35.47531],\n      [-94.25245, 35.47579],\n      [-94.25099, 35.47677],\n      [-94.24861, 35.47842],\n      [-94.24782, 35.47893],\n      [-94.24666, 35.47973],\n      [-94.24525, 35.48062],\n      [-94.24228, 35.48249],\n      [-94.24029, 35.48374],\n      [-94.23738, 35.48561],\n      [-94.23688, 35.4859],\n      [-94.23632, 35.48623],\n      [-94.23524, 35.48674],\n      [-94.23413, 35.48718],\n      [-94.23283, 35.48752],\n      [-94.23174, 35.48775],\n      [-94.23108, 35.48789],\n      [-94.23078, 35.48795],\n      [-94.22845, 35.48841],\n      [-94.22646, 35.48882],\n      [-94.22568, 35.48899],\n      [-94.22476, 35.48916],\n      [-94.22384, 35.48934],\n      [-94.2211, 35.48987],\n      [-94.20729, 35.49255],\n      [-94.20613, 35.49272],\n      [-94.20491, 35.49284],\n      [-94.2039, 35.49288],\n      [-94.2029, 35.49287],\n      [-94.20183, 35.49282],\n      [-94.20003, 35.49269],\n      [-94.19831, 35.49247],\n      [-94.18989, 35.49151],\n      [-94.18876, 35.49142],\n      [-94.18778, 35.49136],\n      [-94.1865, 35.49135],\n      [-94.18512, 35.4914],\n      [-94.1839, 35.49154],\n      [-94.18256, 35.49175],\n      [-94.18137, 35.492],\n      [-94.18018, 35.49233],\n      [-94.17912, 35.49267],\n      [-94.17731, 35.49339],\n      [-94.17281, 35.49527],\n      [-94.17187, 35.4956],\n      [-94.17104, 35.49586],\n      [-94.17035, 35.49606],\n      [-94.16917, 35.49634],\n      [-94.16854, 35.49646],\n      [-94.16754, 35.49661],\n      [-94.16629, 35.49675],\n      [-94.16153, 35.49713],\n      [-94.1588, 35.49736],\n      [-94.15769, 35.49747],\n      [-94.15648, 35.49764],\n      [-94.15536, 35.49786],\n      [-94.15393, 35.49823],\n      [-94.15279, 35.4986],\n      [-94.15159, 35.49905],\n      [-94.14989, 35.49988],\n      [-94.14674, 35.50149],\n      [-94.14244, 35.50368],\n      [-94.14112, 35.50434],\n      [-94.13994, 35.50488],\n      [-94.1393, 35.50516],\n      [-94.13814, 35.50563],\n      [-94.13603, 35.50647],\n      [-94.13122, 35.50836],\n      [-94.12713, 35.50998],\n      [-94.12386, 35.51127],\n      [-94.11972, 35.51291],\n      [-94.11908, 35.51317],\n      [-94.11645, 35.51421],\n      [-94.11016, 35.51669],\n      [-94.10741, 35.51779],\n      [-94.10629, 35.51829],\n      [-94.10446, 35.51916],\n      [-94.10342, 35.51964],\n      [-94.10213, 35.52023],\n      [-94.10014, 35.52109],\n      [-94.09888, 35.52157],\n      [-94.09746, 35.5221],\n      [-94.09638, 35.52247],\n      [-94.09515, 35.52287],\n      [-94.09369, 35.52332],\n      [-94.0919, 35.5238],\n      [-94.0896, 35.52435],\n      [-94.08794, 35.52473],\n      [-94.08269, 35.52593],\n      [-94.07605, 35.52746],\n      [-94.07479, 35.52774],\n      [-94.07352, 35.52801],\n      [-94.07281, 35.52812],\n      [-94.07196, 35.52823],\n      [-94.07098, 35.5283],\n      [-94.06999, 35.52833],\n      [-94.06855, 35.52832],\n      [-94.06453, 35.52825],\n      [-94.05709, 35.52815],\n      [-94.0525, 35.52807],\n      [-94.04149, 35.5279],\n      [-94.03816, 35.52786],\n      [-94.03624, 35.52783],\n      [-94.03158, 35.52775],\n      [-94.01681, 35.52754],\n      [-94.01623, 35.52753],\n      [-94.01049, 35.52744],\n      [-94.00976, 35.52742],\n      [-94.00884, 35.52736],\n      [-94.00756, 35.52727],\n      [-94.00599, 35.5271],\n      [-94.0001, 35.52649],\n      [-93.98999, 35.52543],\n      [-93.98938, 35.52536],\n      [-93.98864, 35.5253],\n      [-93.98769, 35.52528],\n      [-93.98701, 35.5253],\n      [-93.98614, 35.52537],\n      [-93.98544, 35.52546],\n      [-93.98491, 35.52555],\n      [-93.98433, 35.52567],\n      [-93.98373, 35.52582],\n      [-93.98297, 35.52606],\n      [-93.98174, 35.52652],\n      [-93.97525, 35.52922],\n      [-93.97426, 35.52959],\n      [-93.97332, 35.52989],\n      [-93.97242, 35.53014],\n      [-93.97165, 35.53035],\n      [-93.9709, 35.53052],\n      [-93.9703, 35.53063],\n      [-93.96942, 35.53079],\n      [-93.9683, 35.53094],\n      [-93.96744, 35.53103],\n      [-93.96678, 35.53108],\n      [-93.96643, 35.53111],\n      [-93.96531, 35.53114],\n      [-93.96468, 35.53115],\n      [-93.9633, 35.5311],\n      [-93.96237, 35.53105],\n      [-93.96164, 35.53097],\n      [-93.96092, 35.53089],\n      [-93.95747, 35.53035],\n      [-93.95684, 35.53026],\n      [-93.95636, 35.5302],\n      [-93.95568, 35.53015],\n      [-93.95518, 35.53013],\n      [-93.95457, 35.53013],\n      [-93.95403, 35.53015],\n      [-93.95347, 35.53019],\n      [-93.95266, 35.53028],\n      [-93.95219, 35.53036],\n      [-93.95139, 35.53051],\n      [-93.94186, 35.53269],\n      [-93.94111, 35.53285],\n      [-93.94023, 35.533],\n      [-93.93968, 35.53307],\n      [-93.939, 35.53314],\n      [-93.93841, 35.53318],\n      [-93.93776, 35.5332],\n      [-93.93698, 35.53319],\n      [-93.93605, 35.53315],\n      [-93.93539, 35.53309],\n      [-93.93457, 35.53299],\n      [-93.93362, 35.53283],\n      [-93.93272, 35.53262],\n      [-93.93191, 35.53239],\n      [-93.9314, 35.53223],\n      [-93.93076, 35.53201],\n      [-93.9301, 35.53175],\n      [-93.92504, 35.52942],\n      [-93.92449, 35.52915],\n      [-93.92303, 35.52849],\n      [-93.92234, 35.52821],\n      [-93.92182, 35.528],\n      [-93.92071, 35.5276],\n      [-93.92, 35.52737],\n      [-93.91943, 35.52721],\n      [-93.91854, 35.52697],\n      [-93.91789, 35.52682],\n      [-93.91712, 35.52665],\n      [-93.91629, 35.52649],\n      [-93.9155, 35.52636],\n      [-93.91448, 35.52624],\n      [-93.91348, 35.52614],\n      [-93.91228, 35.52605],\n      [-93.91134, 35.52604],\n      [-93.91012, 35.52605],\n      [-93.90934, 35.52608],\n      [-93.90845, 35.52614],\n      [-93.90729, 35.52625],\n      [-93.90584, 35.52646],\n      [-93.90228, 35.52706],\n      [-93.89543, 35.52821],\n      [-93.89431, 35.52839],\n      [-93.89334, 35.52855],\n      [-93.89276, 35.52861],\n      [-93.89204, 35.52866],\n      [-93.89075, 35.52869],\n      [-93.8897, 35.52862],\n      [-93.889, 35.52853],\n      [-93.88836, 35.52843],\n      [-93.88777, 35.52831],\n      [-93.88682, 35.52806],\n      [-93.88583, 35.52771],\n      [-93.88513, 35.52743],\n      [-93.88399, 35.52686],\n      [-93.88284, 35.52621],\n      [-93.87931, 35.52424],\n      [-93.8763, 35.52257],\n      [-93.87574, 35.52227],\n      [-93.87519, 35.52201],\n      [-93.87457, 35.52175],\n      [-93.87382, 35.52148],\n      [-93.8727, 35.52117],\n      [-93.87181, 35.52098],\n      [-93.87099, 35.52086],\n      [-93.8702, 35.52078],\n      [-93.86967, 35.52076],\n      [-93.86912, 35.52074],\n      [-93.86856, 35.52074],\n      [-93.86565, 35.52095],\n      [-93.86458, 35.52102],\n      [-93.85981, 35.52137],\n      [-93.85467, 35.52175],\n      [-93.85389, 35.52175],\n      [-93.85346, 35.52173],\n      [-93.85297, 35.52166],\n      [-93.8523, 35.52153],\n      [-93.85174, 35.52137],\n      [-93.85116, 35.52113],\n      [-93.85052, 35.52084],\n      [-93.85007, 35.52057],\n      [-93.84946, 35.52008],\n      [-93.84797, 35.51863],\n      [-93.84733, 35.51801],\n      [-93.84661, 35.51748],\n      [-93.84569, 35.51693],\n      [-93.84463, 35.51652],\n      [-93.8435, 35.51625],\n      [-93.84276, 35.51616],\n      [-93.84183, 35.51613],\n      [-93.83896, 35.51635],\n      [-93.83821, 35.51641],\n      [-93.83609, 35.51659],\n      [-93.83007, 35.51705],\n      [-93.82908, 35.51708],\n      [-93.82802, 35.51703],\n      [-93.82667, 35.51692],\n      [-93.82569, 35.51678],\n      [-93.82474, 35.51662],\n      [-93.82383, 35.51641],\n      [-93.82268, 35.5161],\n      [-93.82176, 35.5158],\n      [-93.81777, 35.5144],\n      [-93.81417, 35.51315],\n      [-93.8125, 35.51257],\n      [-93.80882, 35.51131],\n      [-93.8077, 35.51093],\n      [-93.8057, 35.51037],\n      [-93.80279, 35.50972],\n      [-93.80239, 35.50964],\n      [-93.79865, 35.50886],\n      [-93.79378, 35.50786],\n      [-93.79128, 35.50737],\n      [-93.7897, 35.50716],\n      [-93.78841, 35.50706],\n      [-93.7853, 35.50693],\n      [-93.77818, 35.50658],\n      [-93.76757, 35.50605],\n      [-93.76624, 35.50599],\n      [-93.7637, 35.50571],\n      [-93.76155, 35.50542],\n      [-93.75398, 35.50444],\n      [-93.74516, 35.50329],\n      [-93.74231, 35.50295],\n      [-93.74099, 35.50285],\n      [-93.73969, 35.50281],\n      [-93.73875, 35.50281],\n      [-93.73182, 35.50298],\n      [-93.73028, 35.50284],\n      [-93.72989, 35.50277],\n      [-93.72948, 35.50268],\n      [-93.72854, 35.50242],\n      [-93.72628, 35.50158],\n      [-93.72425, 35.50087],\n      [-93.7222, 35.50037],\n      [-93.72036, 35.50002],\n      [-93.71788, 35.49972],\n      [-93.71578, 35.49962],\n      [-93.71404, 35.49966],\n      [-93.71047, 35.49983],\n      [-93.70825, 35.49994],\n      [-93.70549, 35.5001],\n      [-93.69908, 35.50042],\n      [-93.69157, 35.50083],\n      [-93.6874, 35.50102],\n      [-93.68317, 35.50124],\n      [-93.67994, 35.50138],\n      [-93.67858, 35.5014],\n      [-93.67713, 35.50131],\n      [-93.67609, 35.50117],\n      [-93.67494, 35.50097],\n      [-93.67389, 35.50075],\n      [-93.67274, 35.50042],\n      [-93.67207, 35.50022],\n      [-93.67172, 35.50009],\n      [-93.67109, 35.49984],\n      [-93.6704, 35.4996],\n      [-93.66955, 35.49925],\n      [-93.66912, 35.49906],\n      [-93.66706, 35.49825],\n      [-93.66583, 35.4978],\n      [-93.66493, 35.49752],\n      [-93.66392, 35.49733],\n      [-93.66317, 35.49724],\n      [-93.66277, 35.4972],\n      [-93.6623, 35.49719],\n      [-93.66201, 35.4972],\n      [-93.66073, 35.49722],\n      [-93.66027, 35.49723],\n      [-93.65954, 35.49725],\n      [-93.65704, 35.49739],\n      [-93.65424, 35.49751],\n      [-93.65198, 35.49759],\n      [-93.65035, 35.49762],\n      [-93.64798, 35.49772],\n      [-93.64442, 35.49782],\n      [-93.64291, 35.49783],\n      [-93.64238, 35.49781],\n      [-93.64124, 35.49775],\n      [-93.64038, 35.49766],\n      [-93.63933, 35.4975],\n      [-93.6376, 35.49714],\n      [-93.63648, 35.49687],\n      [-93.63518, 35.49657],\n      [-93.63452, 35.49642],\n      [-93.63229, 35.49593],\n      [-93.63053, 35.49553],\n      [-93.62926, 35.49524],\n      [-93.62726, 35.49482],\n      [-93.62606, 35.49455],\n      [-93.62566, 35.49447],\n      [-93.625, 35.49436],\n      [-93.62389, 35.49416],\n      [-93.62329, 35.49409],\n      [-93.62171, 35.49388],\n      [-93.62109, 35.49379],\n      [-93.61974, 35.49361],\n      [-93.61678, 35.49324],\n      [-93.61589, 35.49311],\n      [-93.61547, 35.49306],\n      [-93.61381, 35.49286],\n      [-93.61284, 35.49272],\n      [-93.61203, 35.4926],\n      [-93.60981, 35.49233],\n      [-93.60953, 35.49229],\n      [-93.60835, 35.49211],\n      [-93.60638, 35.49188],\n      [-93.60473, 35.49167],\n      [-93.60404, 35.49159],\n      [-93.60194, 35.49131],\n      [-93.60115, 35.49118],\n      [-93.60042, 35.49102],\n      [-93.5999, 35.49092],\n      [-93.59961, 35.49084],\n      [-93.59923, 35.49074],\n      [-93.59893, 35.49066],\n      [-93.5971, 35.49004],\n      [-93.59635, 35.48975],\n      [-93.59512, 35.48917],\n      [-93.59422, 35.48869],\n      [-93.59337, 35.48824],\n      [-93.59014, 35.48642],\n      [-93.58994, 35.48631],\n      [-93.58982, 35.48624],\n      [-93.58796, 35.48536],\n      [-93.58713, 35.48503],\n      [-93.58553, 35.48447],\n      [-93.5847, 35.48423],\n      [-93.58375, 35.48394],\n      [-93.58367, 35.48392],\n      [-93.58137, 35.48345],\n      [-93.57979, 35.48322],\n      [-93.57726, 35.48285],\n      [-93.57503, 35.48252],\n      [-93.57326, 35.48226],\n      [-93.57008, 35.48181],\n      [-93.56564, 35.48118],\n      [-93.56301, 35.48081],\n      [-93.56029, 35.4804],\n      [-93.55796, 35.48004],\n      [-93.55758, 35.48],\n      [-93.55603, 35.47981],\n      [-93.55461, 35.47961],\n      [-93.55447, 35.47959],\n      [-93.55361, 35.47944],\n      [-93.55289, 35.47925],\n      [-93.5522, 35.47906],\n      [-93.55168, 35.47891],\n      [-93.5506, 35.47851],\n      [-93.55033, 35.4784],\n      [-93.5501, 35.47831],\n      [-93.54885, 35.47772],\n      [-93.54641, 35.4766],\n      [-93.54595, 35.47639],\n      [-93.5453, 35.47608],\n      [-93.54346, 35.47518],\n      [-93.54258, 35.47478],\n      [-93.53662, 35.47201],\n      [-93.53372, 35.47066],\n      [-93.53184, 35.46978],\n      [-93.53136, 35.46955],\n      [-93.53118, 35.46947],\n      [-93.52766, 35.46786],\n      [-93.52443, 35.46634],\n      [-93.52216, 35.46529],\n      [-93.52169, 35.46508],\n      [-93.52131, 35.46491],\n      [-93.52024, 35.46438],\n      [-93.51793, 35.46334],\n      [-93.51726, 35.46301],\n      [-93.51705, 35.46291],\n      [-93.51497, 35.46193],\n      [-93.5134, 35.46123],\n      [-93.51262, 35.46088],\n      [-93.51221, 35.46071],\n      [-93.51104, 35.46028],\n      [-93.51015, 35.46002],\n      [-93.50937, 35.45983],\n      [-93.50817, 35.45955],\n      [-93.50716, 35.4594],\n      [-93.50652, 35.45933],\n      [-93.50602, 35.45927],\n      [-93.5053, 35.45923],\n      [-93.50434, 35.4592],\n      [-93.50206, 35.45919],\n      [-93.49746, 35.45922],\n      [-93.49663, 35.45924],\n      [-93.49602, 35.45925],\n      [-93.49269, 35.45926],\n      [-93.49011, 35.45927],\n      [-93.48894, 35.45925],\n      [-93.48862, 35.45925],\n      [-93.48837, 35.45925],\n      [-93.4876, 35.45921],\n      [-93.48662, 35.45912],\n      [-93.48604, 35.45906],\n      [-93.48442, 35.45876],\n      [-93.48337, 35.45849],\n      [-93.48308, 35.45841],\n      [-93.48246, 35.45821],\n      [-93.48212, 35.45811],\n      [-93.48138, 35.45787],\n      [-93.4798, 35.45733],\n      [-93.47857, 35.45688],\n      [-93.47642, 35.45615],\n      [-93.46915, 35.45372],\n      [-93.46785, 35.45327],\n      [-93.4659, 35.45258],\n      [-93.46556, 35.45248],\n      [-93.46473, 35.4522],\n      [-93.4637, 35.45186],\n      [-93.463, 35.4516],\n      [-93.4614, 35.45107],\n      [-93.46005, 35.45061],\n      [-93.45951, 35.45046],\n      [-93.4586, 35.45025],\n      [-93.45766, 35.45003],\n      [-93.45692, 35.44989],\n      [-93.45659, 35.44984],\n      [-93.45631, 35.44979],\n      [-93.45465, 35.44955],\n      [-93.45394, 35.44949],\n      [-93.4527, 35.4494],\n      [-93.45222, 35.44936],\n      [-93.45048, 35.44934],\n      [-93.44927, 35.44938],\n      [-93.44822, 35.44944],\n      [-93.44711, 35.44954],\n      [-93.44568, 35.44973],\n      [-93.44516, 35.44982],\n      [-93.4437, 35.45011],\n      [-93.44165, 35.4506],\n      [-93.44047, 35.45081],\n      [-93.43857, 35.45122],\n      [-93.43824, 35.45128],\n      [-93.43793, 35.45132],\n      [-93.43756, 35.45138],\n      [-93.4365, 35.45146],\n      [-93.43558, 35.45146],\n      [-93.43452, 35.45138],\n      [-93.43396, 35.45131],\n      [-93.4334, 35.4512],\n      [-93.43267, 35.45103],\n      [-93.43201, 35.45083],\n      [-93.43124, 35.45055],\n      [-93.43069, 35.45029],\n      [-93.43057, 35.45023],\n      [-93.43007, 35.44998],\n      [-93.42949, 35.4496],\n      [-93.4289, 35.44919],\n      [-93.42829, 35.44869],\n      [-93.42794, 35.44836],\n      [-93.42713, 35.44751],\n      [-93.42646, 35.44685],\n      [-93.42587, 35.4462],\n      [-93.42531, 35.44561],\n      [-93.42486, 35.44515],\n      [-93.42377, 35.44397],\n      [-93.42293, 35.44305],\n      [-93.42269, 35.4428],\n      [-93.42253, 35.44264],\n      [-93.42123, 35.44127],\n      [-93.421, 35.44104],\n      [-93.4202, 35.44023],\n      [-93.41981, 35.4398],\n      [-93.41943, 35.43941],\n      [-93.41934, 35.43932],\n      [-93.41895, 35.43896],\n      [-93.41857, 35.43859],\n      [-93.41816, 35.43824],\n      [-93.41729, 35.43752],\n      [-93.41679, 35.4371],\n      [-93.4166, 35.43696],\n      [-93.4163, 35.43673],\n      [-93.41493, 35.43571],\n      [-93.41487, 35.43567],\n      [-93.41347, 35.43471],\n      [-93.41289, 35.4343],\n      [-93.41055, 35.43265],\n      [-93.40821, 35.43099],\n      [-93.40561, 35.42914],\n      [-93.4034, 35.4276],\n      [-93.40255, 35.42701],\n      [-93.4007, 35.42568],\n      [-93.39634, 35.42257],\n      [-93.39562, 35.42209],\n      [-93.39469, 35.42138],\n      [-93.39413, 35.42097],\n      [-93.39359, 35.42058],\n      [-93.39263, 35.41997],\n      [-93.39066, 35.41858],\n      [-93.38719, 35.4161],\n      [-93.38623, 35.41543],\n      [-93.38563, 35.41498],\n      [-93.38531, 35.41474],\n      [-93.3846, 35.41425],\n      [-93.38393, 35.41378],\n      [-93.3836, 35.41355],\n      [-93.38294, 35.41303],\n      [-93.38261, 35.41274],\n      [-93.3823, 35.41246],\n      [-93.38199, 35.41214],\n      [-93.38176, 35.41189],\n      [-93.38151, 35.41158],\n      [-93.38084, 35.41064],\n      [-93.3805, 35.41008],\n      [-93.38014, 35.40931],\n      [-93.37985, 35.40861],\n      [-93.37975, 35.40832],\n      [-93.37969, 35.40815],\n      [-93.37958, 35.40771],\n      [-93.37945, 35.40708],\n      [-93.37933, 35.40577],\n      [-93.37926, 35.40517],\n      [-93.37921, 35.40471],\n      [-93.37913, 35.404],\n      [-93.37896, 35.40277],\n      [-93.37882, 35.40187],\n      [-93.37873, 35.40102],\n      [-93.37864, 35.40052],\n      [-93.37849, 35.40004],\n      [-93.3783, 35.39956],\n      [-93.37814, 35.39921],\n      [-93.37802, 35.39893],\n      [-93.37784, 35.39867],\n      [-93.37759, 35.39828],\n      [-93.3773, 35.39798],\n      [-93.37701, 35.39767],\n      [-93.37689, 35.39754],\n      [-93.37656, 35.39723],\n      [-93.37582, 35.39672],\n      [-93.3755, 35.39653],\n      [-93.37502, 35.39627],\n      [-93.374, 35.39577],\n      [-93.37208, 35.39486],\n      [-93.37011, 35.39393],\n      [-93.36737, 35.39264],\n      [-93.36632, 35.39214],\n      [-93.36571, 35.39187],\n      [-93.36439, 35.39125],\n      [-93.3633, 35.39073],\n      [-93.36245, 35.39021],\n      [-93.36203, 35.38992],\n      [-93.3617, 35.38966],\n      [-93.36122, 35.38929],\n      [-93.36074, 35.38881],\n      [-93.36029, 35.38837],\n      [-93.3601, 35.38814],\n      [-93.35916, 35.387],\n      [-93.35888, 35.38664],\n      [-93.35842, 35.38607],\n      [-93.35832, 35.38593],\n      [-93.35675, 35.38403],\n      [-93.35628, 35.38345],\n      [-93.35574, 35.38279],\n      [-93.35543, 35.38239],\n      [-93.35527, 35.38217],\n      [-93.35478, 35.38156],\n      [-93.35438, 35.38107],\n      [-93.35391, 35.38048],\n      [-93.35219, 35.37839],\n      [-93.35135, 35.37732],\n      [-93.34941, 35.37495],\n      [-93.34841, 35.37374],\n      [-93.34737, 35.3724],\n      [-93.34691, 35.37182],\n      [-93.34513, 35.36967],\n      [-93.34504, 35.36956],\n      [-93.34477, 35.36922],\n      [-93.34416, 35.36849],\n      [-93.34329, 35.36743],\n      [-93.34316, 35.36727],\n      [-93.34282, 35.36677],\n      [-93.34251, 35.36638],\n      [-93.34125, 35.36482],\n      [-93.34121, 35.36477],\n      [-93.34121, 35.36477],\n      [-93.34075, 35.36414],\n      [-93.34068, 35.36404],\n      [-93.3404, 35.36363],\n      [-93.34006, 35.36302],\n      [-93.33977, 35.36242],\n      [-93.3395, 35.36181],\n      [-93.33947, 35.36173],\n      [-93.33851, 35.35919],\n      [-93.33631, 35.35337],\n      [-93.33552, 35.35127],\n      [-93.33534, 35.35083],\n      [-93.33499, 35.35027],\n      [-93.33474, 35.34991],\n      [-93.33436, 35.34945],\n      [-93.33375, 35.34886],\n      [-93.33331, 35.34852],\n      [-93.33273, 35.34816],\n      [-93.3327, 35.34814],\n      [-93.33226, 35.34789],\n      [-93.33188, 35.34773],\n      [-93.33138, 35.34754],\n      [-93.33077, 35.34733],\n      [-93.32988, 35.34708],\n      [-93.3275, 35.34647],\n      [-93.32678, 35.34629],\n      [-93.32511, 35.34586],\n      [-93.32268, 35.3452],\n      [-93.32238, 35.34512],\n      [-93.32031, 35.34459],\n      [-93.31923, 35.34428],\n      [-93.3184, 35.34395],\n      [-93.3172, 35.34346],\n      [-93.31649, 35.34312],\n      [-93.3156, 35.34265],\n      [-93.31504, 35.34236],\n      [-93.3128, 35.34122],\n      [-93.31024, 35.33993],\n      [-93.30925, 35.33946],\n      [-93.30849, 35.33917],\n      [-93.30789, 35.33895],\n      [-93.30702, 35.33865],\n      [-93.3061, 35.33839],\n      [-93.30513, 35.33818],\n      [-93.30353, 35.33783],\n      [-93.30305, 35.33774],\n      [-93.30128, 35.33739],\n      [-93.29949, 35.33704],\n      [-93.29884, 35.3369],\n      [-93.2957, 35.33627],\n      [-93.29403, 35.33593],\n      [-93.29055, 35.33542],\n      [-93.28837, 35.33523],\n      [-93.28634, 35.33515],\n      [-93.28243, 35.33523],\n      [-93.27882, 35.33538],\n      [-93.27534, 35.33551],\n      [-93.27307, 35.33559],\n      [-93.26931, 35.33575],\n      [-93.26627, 35.33586],\n      [-93.26286, 35.33598],\n      [-93.25981, 35.33609],\n      [-93.25833, 35.33617],\n      [-93.25557, 35.33625],\n      [-93.25486, 35.33625],\n      [-93.25356, 35.33621],\n      [-93.25064, 35.33606],\n      [-93.24937, 35.3359],\n      [-93.24794, 35.33572],\n      [-93.24512, 35.33521],\n      [-93.24266, 35.33459],\n      [-93.23262, 35.33139],\n      [-93.22148, 35.32789],\n      [-93.21586, 35.32612],\n      [-93.21411, 35.32564],\n      [-93.2127, 35.32531],\n      [-93.21012, 35.32482],\n      [-93.20697, 35.32429],\n      [-93.20581, 35.3241],\n      [-93.20246, 35.32357],\n      [-93.19986, 35.32313],\n      [-93.19534, 35.32234],\n      [-93.19043, 35.32151],\n      [-93.1874, 35.3211],\n      [-93.18638, 35.32097],\n      [-93.1855, 35.32085],\n      [-93.18232, 35.32059],\n      [-93.18015, 35.32047],\n      [-93.17425, 35.32025],\n      [-93.17043, 35.32008],\n      [-93.16909, 35.31991],\n      [-93.16763, 35.31957],\n      [-93.16627, 35.31905],\n      [-93.16498, 35.31842],\n      [-93.16383, 35.31762],\n      [-93.16265, 35.31658],\n      [-93.16008, 35.31411],\n      [-93.15836, 35.31253],\n      [-93.15716, 35.31153],\n      [-93.15617, 35.31093],\n      [-93.15548, 35.3106],\n      [-93.15406, 35.31005],\n      [-93.15272, 35.30966],\n      [-93.15111, 35.3092],\n      [-93.14931, 35.30876],\n      [-93.14233, 35.30692],\n      [-93.13932, 35.30613],\n      [-93.13728, 35.30554],\n      [-93.13436, 35.30453],\n      [-93.13381, 35.30431],\n      [-93.13106, 35.30307],\n      [-93.12933, 35.30214],\n      [-93.12835, 35.30154],\n      [-93.1267, 35.30045],\n      [-93.12408, 35.29869],\n      [-93.12174, 35.29713],\n      [-93.11988, 35.29589],\n      [-93.11865, 35.29509],\n      [-93.118, 35.29472],\n      [-93.1171, 35.29426],\n      [-93.11657, 35.294],\n      [-93.11565, 35.29361],\n      [-93.11472, 35.29327],\n      [-93.11185, 35.29234],\n      [-93.10799, 35.2911],\n      [-93.10588, 35.29041],\n      [-93.1051, 35.29013],\n      [-93.10434, 35.28982],\n      [-93.10359, 35.28949],\n      [-93.10267, 35.28901],\n      [-93.10191, 35.28858],\n      [-93.0991, 35.28676],\n      [-93.09629, 35.28494],\n      [-93.09441, 35.28372],\n      [-93.09288, 35.28272],\n      [-93.0921, 35.28222],\n      [-93.08913, 35.28028],\n      [-93.08862, 35.27998],\n      [-93.08799, 35.27963],\n      [-93.08739, 35.27932],\n      [-93.08478, 35.27802],\n      [-93.07655, 35.274],\n      [-93.07516, 35.27322],\n      [-93.07398, 35.27247],\n      [-93.07283, 35.27154],\n      [-93.07196, 35.27079],\n      [-93.07124, 35.27003],\n      [-93.07038, 35.26899],\n      [-93.06958, 35.26792],\n      [-93.06939, 35.26767],\n      [-93.06818, 35.26605],\n      [-93.0667, 35.26423],\n      [-93.06594, 35.26353],\n      [-93.06535, 35.26301],\n      [-93.06463, 35.2625],\n      [-93.06404, 35.26216],\n      [-93.06352, 35.26184],\n      [-93.0621, 35.26116],\n      [-93.05877, 35.26006],\n      [-93.05695, 35.25948],\n      [-93.05553, 35.25887],\n      [-93.05295, 35.25759],\n      [-93.04893, 35.2556],\n      [-93.04827, 35.25528],\n      [-93.04038, 35.25146],\n      [-93.03931, 35.25102],\n      [-93.03787, 35.25048],\n      [-93.03579, 35.24979],\n      [-93.03475, 35.24949],\n      [-93.03368, 35.24921],\n      [-93.0326, 35.24895],\n      [-93.03155, 35.24873],\n      [-93.03028, 35.2485],\n      [-93.02855, 35.24823],\n      [-93.02629, 35.24796],\n      [-93.02523, 35.2479],\n      [-93.02263, 35.24781],\n      [-93.02013, 35.24778],\n      [-93.01675, 35.24773],\n      [-93.01134, 35.24768],\n      [-93.00986, 35.24756],\n      [-93.0093, 35.2475],\n      [-93.00846, 35.2474],\n      [-93.00645, 35.24706],\n      [-93.00026, 35.24584],\n      [-92.99804, 35.24547],\n      [-92.99621, 35.24527],\n      [-92.99414, 35.24509],\n      [-92.99101, 35.24497],\n      [-92.98698, 35.24491],\n      [-92.965, 35.24457],\n      [-92.95962, 35.24444],\n      [-92.95779, 35.24443],\n      [-92.95626, 35.24451],\n      [-92.95477, 35.24468],\n      [-92.95348, 35.24493],\n      [-92.95239, 35.24522],\n      [-92.9515, 35.24547],\n      [-92.95074, 35.24575],\n      [-92.9495, 35.24623],\n      [-92.94914, 35.24637],\n      [-92.94797, 35.24692],\n      [-92.94719, 35.24733],\n      [-92.94512, 35.24868],\n      [-92.9437, 35.24969],\n      [-92.94243, 35.25053],\n      [-92.94135, 35.25117],\n      [-92.94065, 35.25152],\n      [-92.93981, 35.25191],\n      [-92.93834, 35.25244],\n      [-92.93682, 35.25283],\n      [-92.93598, 35.25299],\n      [-92.93465, 35.25317],\n      [-92.93391, 35.25319],\n      [-92.93316, 35.25319],\n      [-92.93142, 35.25314],\n      [-92.9287, 35.25304],\n      [-92.92488, 35.25288],\n      [-92.9198, 35.25265],\n      [-92.91126, 35.25225],\n      [-92.90172, 35.25181],\n      [-92.89915, 35.25169],\n      [-92.89551, 35.25152],\n      [-92.89288, 35.25128],\n      [-92.89085, 35.25096],\n      [-92.88927, 35.25067],\n      [-92.88606, 35.25008],\n      [-92.88456, 35.2498],\n      [-92.87527, 35.24806],\n      [-92.87299, 35.24765],\n      [-92.87086, 35.24727],\n      [-92.86967, 35.24695],\n      [-92.86849, 35.24657],\n      [-92.86675, 35.24593],\n      [-92.86544, 35.24528],\n      [-92.86383, 35.24436],\n      [-92.85705, 35.2393],\n      [-92.85541, 35.23808],\n      [-92.85422, 35.23719],\n      [-92.8464, 35.23137],\n      [-92.8437, 35.22934],\n      [-92.84022, 35.22677],\n      [-92.83443, 35.22245],\n      [-92.83399, 35.22212],\n      [-92.83342, 35.22163],\n      [-92.83153, 35.22021],\n      [-92.83037, 35.21934],\n      [-92.8299, 35.21899],\n      [-92.82708, 35.21688],\n      [-92.82584, 35.21604],\n      [-92.82537, 35.2157],\n      [-92.82297, 35.21391],\n      [-92.82036, 35.21197],\n      [-92.81881, 35.21079],\n      [-92.81804, 35.21018],\n      [-92.81505, 35.20775],\n      [-92.80184, 35.19701],\n      [-92.80129, 35.19659],\n      [-92.80126, 35.19658],\n      [-92.80071, 35.19621],\n      [-92.80013, 35.19585],\n      [-92.79955, 35.19554],\n      [-92.79896, 35.19525],\n      [-92.79837, 35.19498],\n      [-92.79682, 35.19437],\n      [-92.79118, 35.19226],\n      [-92.7715, 35.1849],\n      [-92.7714, 35.18486],\n      [-92.7713, 35.18483],\n      [-92.75612, 35.17915],\n      [-92.75524, 35.17882],\n      [-92.75253, 35.1778],\n      [-92.749, 35.17647],\n      [-92.74846, 35.17625],\n      [-92.74617, 35.17549],\n      [-92.74579, 35.17535],\n      [-92.74575, 35.17534],\n      [-92.74466, 35.17501],\n      [-92.74379, 35.1748],\n      [-92.7432, 35.17468],\n      [-92.74254, 35.17457],\n      [-92.74191, 35.17448],\n      [-92.74067, 35.17435],\n      [-92.73955, 35.1743],\n      [-92.73876, 35.17428],\n      [-92.73794, 35.17426],\n      [-92.73583, 35.17423],\n      [-92.73527, 35.17423],\n      [-92.73516, 35.17423],\n      [-92.72696, 35.17414],\n      [-92.72385, 35.17411],\n      [-92.71958, 35.17405],\n      [-92.71836, 35.17403],\n      [-92.71291, 35.17395],\n      [-92.71126, 35.17397],\n      [-92.70763, 35.17393],\n      [-92.70755, 35.17393],\n      [-92.70689, 35.17391],\n      [-92.70622, 35.17387],\n      [-92.70589, 35.17385],\n      [-92.70524, 35.17378],\n      [-92.70458, 35.1737],\n      [-92.70334, 35.17349],\n      [-92.70242, 35.17329],\n      [-92.70121, 35.17296],\n      [-92.70032, 35.17267],\n      [-92.69915, 35.17222],\n      [-92.68781, 35.1673],\n      [-92.68507, 35.16611],\n      [-92.68073, 35.16426],\n      [-92.68001, 35.16396],\n      [-92.67897, 35.16362],\n      [-92.6782, 35.1634],\n      [-92.67734, 35.16319],\n      [-92.6764, 35.16301],\n      [-92.67574, 35.1629],\n      [-92.67474, 35.16278],\n      [-92.67407, 35.16272],\n      [-92.67339, 35.16268],\n      [-92.67109, 35.16263],\n      [-92.6648, 35.1625],\n      [-92.66022, 35.16241],\n      [-92.65877, 35.1624],\n      [-92.65733, 35.16241],\n      [-92.64822, 35.16263],\n      [-92.64721, 35.16265],\n      [-92.64632, 35.16266],\n      [-92.64172, 35.16282],\n      [-92.6408, 35.16282],\n      [-92.63641, 35.16292],\n      [-92.63454, 35.16295],\n      [-92.63392, 35.16297],\n      [-92.63296, 35.16299],\n      [-92.62997, 35.16306],\n      [-92.62951, 35.16307],\n      [-92.62519, 35.16317],\n      [-92.62412, 35.16317],\n      [-92.62376, 35.16316],\n      [-92.62304, 35.16314],\n      [-92.62125, 35.16304],\n      [-92.6188, 35.1628],\n      [-92.61219, 35.16213],\n      [-92.60792, 35.16169],\n      [-92.60128, 35.16101],\n      [-92.5903, 35.15988],\n      [-92.57721, 35.15854],\n      [-92.57404, 35.15821],\n      [-92.5727, 35.15804],\n      [-92.57104, 35.15779],\n      [-92.56973, 35.15754],\n      [-92.56812, 35.15718],\n      [-92.56757, 35.15704],\n      [-92.56718, 35.15695],\n      [-92.56638, 35.15674],\n      [-92.56495, 35.15634],\n      [-92.56101, 35.15523],\n      [-92.55804, 35.15436],\n      [-92.55131, 35.15243],\n      [-92.55035, 35.15211],\n      [-92.54877, 35.15158],\n      [-92.54804, 35.15128],\n      [-92.54714, 35.1509],\n      [-92.54613, 35.15043],\n      [-92.5447, 35.14975],\n      [-92.54105, 35.14784],\n      [-92.53502, 35.14469],\n      [-92.52535, 35.13963],\n      [-92.52496, 35.13942],\n      [-92.52415, 35.13898],\n      [-92.52329, 35.13847],\n      [-92.52247, 35.13791],\n      [-92.52195, 35.13753],\n      [-92.5212, 35.13692],\n      [-92.52049, 35.13628],\n      [-92.51964, 35.13541],\n      [-92.51546, 35.13104],\n      [-92.51435, 35.12987],\n      [-92.51142, 35.1268],\n      [-92.51094, 35.12638],\n      [-92.50972, 35.12553],\n      [-92.5088, 35.12495],\n      [-92.50791, 35.12446],\n      [-92.50607, 35.12365],\n      [-92.50414, 35.12308],\n      [-92.50171, 35.12268],\n      [-92.49969, 35.12237],\n      [-92.49829, 35.12215],\n      [-92.49226, 35.12122],\n      [-92.49048, 35.12096],\n      [-92.48892, 35.12077],\n      [-92.48746, 35.12061],\n      [-92.486, 35.1205],\n      [-92.48391, 35.12034],\n      [-92.48117, 35.12017],\n      [-92.47627, 35.11986],\n      [-92.47247, 35.11962],\n      [-92.46833, 35.11936],\n      [-92.46695, 35.11926],\n      [-92.46539, 35.11917],\n      [-92.46343, 35.11905],\n      [-92.45963, 35.11879],\n      [-92.45653, 35.1186],\n      [-92.45466, 35.11847],\n      [-92.45385, 35.11842],\n      [-92.45313, 35.11833],\n      [-92.4525, 35.11823],\n      [-92.45185, 35.11804],\n      [-92.45119, 35.11779],\n      [-92.4507, 35.11755],\n      [-92.45019, 35.11726],\n      [-92.44977, 35.11693],\n      [-92.44917, 35.11646],\n      [-92.44846, 35.11587],\n      [-92.44787, 35.11537],\n      [-92.44704, 35.11469],\n      [-92.44657, 35.11434],\n      [-92.44615, 35.11408],\n      [-92.44566, 35.11386],\n      [-92.44514, 35.11364],\n      [-92.44447, 35.11342],\n      [-92.44363, 35.11326],\n      [-92.44269, 35.11313],\n      [-92.44174, 35.11304],\n      [-92.43943, 35.1128],\n      [-92.43796, 35.11263],\n      [-92.43719, 35.11248],\n      [-92.43667, 35.11232],\n      [-92.43619, 35.11216],\n      [-92.4357, 35.11192],\n      [-92.4353, 35.1117],\n      [-92.43496, 35.11149],\n      [-92.4344, 35.11107],\n      [-92.43394, 35.11063],\n      [-92.43367, 35.11031],\n      [-92.4334, 35.10992],\n      [-92.43314, 35.10946],\n      [-92.43293, 35.10901],\n      [-92.43278, 35.10847],\n      [-92.43266, 35.10782],\n      [-92.43266, 35.1073],\n      [-92.43268, 35.10649],\n      [-92.43275, 35.1041],\n      [-92.43272, 35.10355],\n      [-92.43265, 35.10298],\n      [-92.43248, 35.10224],\n      [-92.43225, 35.10167],\n      [-92.43199, 35.1011],\n      [-92.43166, 35.10054],\n      [-92.43124, 35.09992],\n      [-92.43094, 35.09956],\n      [-92.43059, 35.09919],\n      [-92.42987, 35.09846],\n      [-92.42908, 35.09771],\n      [-92.42718, 35.09584],\n      [-92.42639, 35.09506],\n      [-92.42594, 35.09462],\n      [-92.42456, 35.09325],\n      [-92.42317, 35.0919],\n      [-92.4225, 35.09125],\n      [-92.42156, 35.09032],\n      [-92.42051, 35.08928],\n      [-92.41956, 35.08836],\n      [-92.41885, 35.08763],\n      [-92.41795, 35.08675],\n      [-92.41721, 35.08604],\n      [-92.41626, 35.08511],\n      [-92.41572, 35.08458],\n      [-92.41522, 35.08402],\n      [-92.41491, 35.08361],\n      [-92.41444, 35.08283],\n      [-92.41401, 35.08187],\n      [-92.41383, 35.08107],\n      [-92.41373, 35.08047],\n      [-92.41369, 35.07998],\n      [-92.41369, 35.07944],\n      [-92.41374, 35.07886],\n      [-92.41385, 35.07829],\n      [-92.41396, 35.07782],\n      [-92.41419, 35.07717],\n      [-92.41456, 35.07642],\n      [-92.41599, 35.07364],\n      [-92.41635, 35.07294],\n      [-92.41669, 35.07219],\n      [-92.41698, 35.07148],\n      [-92.41729, 35.07064],\n      [-92.41755, 35.06974],\n      [-92.41772, 35.06907],\n      [-92.41789, 35.06816],\n      [-92.41802, 35.06736],\n      [-92.4181, 35.06659],\n      [-92.41815, 35.06528],\n      [-92.41812, 35.06436],\n      [-92.4181, 35.06395],\n      [-92.41801, 35.06307],\n      [-92.41788, 35.06221],\n      [-92.41773, 35.06143],\n      [-92.41741, 35.06023],\n      [-92.41663, 35.05768],\n      [-92.41581, 35.05488],\n      [-92.41513, 35.05253],\n      [-92.41434, 35.04993],\n      [-92.41406, 35.04893],\n      [-92.41336, 35.0465],\n      [-92.41238, 35.0432],\n      [-92.41127, 35.03931],\n      [-92.41001, 35.03503],\n      [-92.4095, 35.03338],\n      [-92.40919, 35.03231],\n      [-92.40894, 35.03034],\n      [-92.40891, 35.02917],\n      [-92.40897, 35.0283],\n      [-92.40914, 35.02684],\n      [-92.4095, 35.02459],\n      [-92.4096, 35.02382],\n      [-92.40981, 35.02246],\n      [-92.40999, 35.02118],\n      [-92.41013, 35.01945],\n      [-92.41029, 35.01666],\n      [-92.41032, 35.01357],\n      [-92.41033, 35.01126],\n      [-92.41035, 35.00984],\n      [-92.41048, 35.00835],\n      [-92.41064, 35.00702],\n      [-92.41101, 35.00536],\n      [-92.41128, 35.00419],\n      [-92.41161, 35.00314],\n      [-92.4121, 35.00172],\n      [-92.41287, 34.99969],\n      [-92.41308, 34.99909],\n      [-92.4135, 34.99792],\n      [-92.41415, 34.9963],\n      [-92.4148, 34.99443],\n      [-92.41544, 34.99207],\n      [-92.41553, 34.99177],\n      [-92.41578, 34.99095],\n      [-92.41603, 34.98988],\n      [-92.41628, 34.98866],\n      [-92.41643, 34.98777],\n      [-92.41653, 34.98687],\n      [-92.41665, 34.98564],\n      [-92.41679, 34.98344],\n      [-92.41692, 34.98183],\n      [-92.41703, 34.98007],\n      [-92.41719, 34.97855],\n      [-92.41734, 34.97732],\n      [-92.41756, 34.97611],\n      [-92.41794, 34.97465],\n      [-92.41818, 34.97367],\n      [-92.41843, 34.9729],\n      [-92.419, 34.97122],\n      [-92.41971, 34.96919],\n      [-92.42031, 34.96747],\n      [-92.42045, 34.96704],\n      [-92.42094, 34.96561],\n      [-92.42123, 34.96453],\n      [-92.42183, 34.96232],\n      [-92.42209, 34.96075],\n      [-92.4223, 34.95942],\n      [-92.42248, 34.95773],\n      [-92.42247, 34.95599],\n      [-92.4226, 34.95146],\n      [-92.42267, 34.94881],\n      [-92.42279, 34.94608],\n      [-92.42279, 34.94486],\n      [-92.42269, 34.94365],\n      [-92.42252, 34.94255],\n      [-92.42221, 34.9414],\n      [-92.42181, 34.94036],\n      [-92.42135, 34.93944],\n      [-92.42114, 34.93899],\n      [-92.42067, 34.93814],\n      [-92.42002, 34.93717],\n      [-92.41932, 34.93629],\n      [-92.41877, 34.93567],\n      [-92.41829, 34.93519],\n      [-92.41747, 34.9344],\n      [-92.41617, 34.93319],\n      [-92.4145, 34.93162],\n      [-92.41419, 34.93133],\n      [-92.41382, 34.93098],\n      [-92.41295, 34.93017],\n      [-92.41218, 34.92946],\n      [-92.41133, 34.92865],\n      [-92.41108, 34.92839],\n      [-92.41082, 34.92812],\n      [-92.41054, 34.9278],\n      [-92.41027, 34.92749],\n      [-92.40992, 34.92705],\n      [-92.40961, 34.92662],\n      [-92.40937, 34.92629],\n      [-92.40917, 34.92599],\n      [-92.40899, 34.92569],\n      [-92.40879, 34.92533],\n      [-92.40859, 34.92499],\n      [-92.40841, 34.92463],\n      [-92.40821, 34.92423],\n      [-92.40808, 34.92394],\n      [-92.40788, 34.92347],\n      [-92.40779, 34.92324],\n      [-92.40768, 34.92294],\n      [-92.40753, 34.9225],\n      [-92.4074, 34.92204],\n      [-92.40702, 34.92053],\n      [-92.40652, 34.91848],\n      [-92.40627, 34.91747],\n      [-92.4052, 34.91311],\n      [-92.4043, 34.90946],\n      [-92.40414, 34.90881],\n      [-92.40393, 34.90795],\n      [-92.40265, 34.90274],\n      [-92.40244, 34.90189],\n      [-92.40234, 34.90148],\n      [-92.40232, 34.9014],\n      [-92.40222, 34.901],\n      [-92.40209, 34.90046],\n      [-92.4019, 34.89971],\n      [-92.40182, 34.89935],\n      [-92.40128, 34.8972],\n      [-92.40119, 34.89689],\n      [-92.40107, 34.89658],\n      [-92.40096, 34.8963],\n      [-92.40083, 34.89603],\n      [-92.40064, 34.89567],\n      [-92.40048, 34.8954],\n      [-92.40017, 34.89495],\n      [-92.39996, 34.89467],\n      [-92.39973, 34.89439],\n      [-92.39948, 34.89413],\n      [-92.39922, 34.89387],\n      [-92.3989, 34.89358],\n      [-92.39857, 34.8933],\n      [-92.39827, 34.89308],\n      [-92.39796, 34.89286],\n      [-92.39775, 34.89273],\n      [-92.39744, 34.89254],\n      [-92.39707, 34.89234],\n      [-92.39666, 34.89214],\n      [-92.39642, 34.89203],\n      [-92.39611, 34.8919],\n      [-92.39579, 34.89179],\n      [-92.39543, 34.89167],\n      [-92.39493, 34.89152],\n      [-92.39422, 34.89135],\n      [-92.39403, 34.89131],\n      [-92.39311, 34.8911],\n      [-92.39124, 34.89067],\n      [-92.39119, 34.89066],\n      [-92.38704, 34.88972],\n      [-92.38611, 34.8895],\n      [-92.38583, 34.88943],\n      [-92.3854, 34.8893],\n      [-92.38513, 34.88921],\n      [-92.3847, 34.88906],\n      [-92.38432, 34.8889],\n      [-92.38394, 34.88873],\n      [-92.38359, 34.88854],\n      [-92.38324, 34.88835],\n      [-92.38308, 34.88825],\n      [-92.38291, 34.88814],\n      [-92.3828, 34.88807],\n      [-92.38246, 34.88783],\n      [-92.38224, 34.88767],\n      [-92.38193, 34.88742],\n      [-92.38172, 34.88724],\n      [-92.38153, 34.88706],\n      [-92.3793, 34.88485],\n      [-92.37899, 34.88455],\n      [-92.37829, 34.88386],\n      [-92.37762, 34.88317],\n      [-92.37631, 34.88191],\n      [-92.37527, 34.88088],\n      [-92.37518, 34.88079],\n      [-92.37425, 34.87986],\n      [-92.37342, 34.87901],\n      [-92.37263, 34.87814],\n      [-92.37202, 34.87741],\n      [-92.37151, 34.87677],\n      [-92.37071, 34.87571],\n      [-92.36912, 34.87354],\n      [-92.36878, 34.8731],\n      [-92.36842, 34.87267],\n      [-92.36821, 34.87244],\n      [-92.36816, 34.87239],\n      [-92.36769, 34.87189],\n      [-92.36734, 34.87153],\n      [-92.36697, 34.87119],\n      [-92.36678, 34.87102],\n      [-92.36659, 34.87086],\n      [-92.36605, 34.87042],\n      [-92.36551, 34.87001],\n      [-92.36512, 34.86973],\n      [-92.36221, 34.86772],\n      [-92.35765, 34.86458],\n      [-92.35683, 34.86402],\n      [-92.35539, 34.86303],\n      [-92.35489, 34.86267],\n      [-92.3546, 34.86244],\n      [-92.35432, 34.86221],\n      [-92.35405, 34.86197],\n      [-92.35375, 34.86168],\n      [-92.35352, 34.86144],\n      [-92.35327, 34.86116],\n      [-92.35302, 34.86083],\n      [-92.35276, 34.86049],\n      [-92.35253, 34.86013],\n      [-92.35239, 34.85989],\n      [-92.35219, 34.85953],\n      [-92.35206, 34.85928],\n      [-92.3519, 34.85891],\n      [-92.35171, 34.85841],\n      [-92.35159, 34.85802],\n      [-92.35149, 34.85763],\n      [-92.35143, 34.85737],\n      [-92.35132, 34.85668],\n      [-92.35117, 34.85527],\n      [-92.35108, 34.85446],\n      [-92.35092, 34.85283],\n      [-92.35085, 34.85222],\n      [-92.35075, 34.85139],\n      [-92.35029, 34.84739],\n      [-92.35014, 34.84611],\n      [-92.35007, 34.84546],\n      [-92.34989, 34.84397],\n      [-92.34984, 34.84353],\n      [-92.34978, 34.84304],\n      [-92.34975, 34.84275],\n      [-92.34966, 34.84199],\n      [-92.34954, 34.84125],\n      [-92.3494, 34.8405],\n      [-92.34924, 34.83971],\n      [-92.3491, 34.83914],\n      [-92.34905, 34.83892],\n      [-92.34899, 34.8387],\n      [-92.34888, 34.8383],\n      [-92.34851, 34.83691],\n      [-92.34814, 34.83562],\n      [-92.34803, 34.83523],\n      [-92.34665, 34.82996],\n      [-92.34584, 34.82704],\n      [-92.34572, 34.82661],\n      [-92.34559, 34.82615],\n      [-92.34547, 34.8258],\n      [-92.34537, 34.82557],\n      [-92.34522, 34.82523],\n      [-92.34511, 34.82505],\n      [-92.34503, 34.82491],\n      [-92.3449, 34.82469],\n      [-92.34468, 34.82438],\n      [-92.34453, 34.82417],\n      [-92.34429, 34.82387],\n      [-92.34402, 34.82358],\n      [-92.34375, 34.82332],\n      [-92.34337, 34.82299],\n      [-92.34307, 34.82275],\n      [-92.34287, 34.8226],\n      [-92.34245, 34.82233],\n      [-92.34212, 34.82214],\n      [-92.34178, 34.82197],\n      [-92.3414, 34.82179],\n      [-92.34002, 34.82118],\n      [-92.33975, 34.82107],\n      [-92.33931, 34.82088],\n      [-92.3383, 34.82044],\n      [-92.33662, 34.81971],\n      [-92.33395, 34.81853],\n      [-92.33324, 34.8182],\n      [-92.33234, 34.81781],\n      [-92.33153, 34.81747],\n      [-92.33014, 34.81686],\n      [-92.32856, 34.81617],\n      [-92.32817, 34.816],\n      [-92.32753, 34.81573],\n      [-92.32697, 34.81547],\n      [-92.32634, 34.81521],\n      [-92.32566, 34.81491],\n      [-92.32507, 34.81465],\n      [-92.32443, 34.81438],\n      [-92.32392, 34.81414],\n      [-92.32303, 34.81367],\n      [-92.32265, 34.81344],\n      [-92.32235, 34.81324],\n      [-92.32191, 34.81296],\n      [-92.32117, 34.8124],\n      [-92.3204, 34.81175],\n      [-92.31982, 34.81118],\n      [-92.31932, 34.81065],\n      [-92.31874, 34.80992],\n      [-92.31869, 34.80987],\n      [-92.31865, 34.80981],\n      [-92.31849, 34.80959],\n      [-92.31585, 34.80601],\n      [-92.3153, 34.80524],\n      [-92.31461, 34.80438],\n      [-92.31372, 34.8034],\n      [-92.31307, 34.8028],\n      [-92.31231, 34.80216],\n      [-92.31143, 34.80152],\n      [-92.31094, 34.80118],\n      [-92.30996, 34.80059],\n      [-92.30918, 34.80018],\n      [-92.30861, 34.7999],\n      [-92.30783, 34.79956],\n      [-92.30733, 34.79932],\n      [-92.3057, 34.79866],\n      [-92.30395, 34.79794],\n      [-92.30297, 34.79751],\n      [-92.30249, 34.79727],\n      [-92.30183, 34.79689],\n      [-92.30143, 34.7966],\n      [-92.30079, 34.79612],\n      [-92.30029, 34.79564],\n      [-92.29988, 34.79519],\n      [-92.29966, 34.79489],\n      [-92.29946, 34.79459],\n      [-92.29842, 34.79314],\n      [-92.2977, 34.7922],\n      [-92.29722, 34.79155],\n      [-92.29615, 34.79008],\n      [-92.29585, 34.78968],\n      [-92.29565, 34.78946],\n      [-92.29552, 34.78933],\n      [-92.29544, 34.78922],\n      [-92.29534, 34.78913],\n      [-92.29516, 34.78895],\n      [-92.2949, 34.78872],\n      [-92.29468, 34.78853],\n      [-92.29446, 34.78837],\n      [-92.29422, 34.7882],\n      [-92.29386, 34.78796],\n      [-92.29355, 34.78778],\n      [-92.29329, 34.78764],\n      [-92.29298, 34.78749],\n      [-92.29265, 34.78735],\n      [-92.29233, 34.78722],\n      [-92.29225, 34.78719],\n      [-92.29206, 34.78712],\n      [-92.29173, 34.78701],\n      [-92.29152, 34.78695],\n      [-92.29128, 34.78689],\n      [-92.29117, 34.78686],\n      [-92.29088, 34.7868],\n      [-92.29046, 34.78672],\n      [-92.28988, 34.78664],\n      [-92.28942, 34.78661],\n      [-92.28904, 34.78659],\n      [-92.28818, 34.78657],\n      [-92.28756, 34.78656],\n      [-92.28438, 34.7865],\n      [-92.28324, 34.78648],\n      [-92.28279, 34.78647],\n      [-92.28221, 34.78646],\n      [-92.28184, 34.78643],\n      [-92.28147, 34.7864],\n      [-92.28119, 34.78636],\n      [-92.28096, 34.78634],\n      [-92.28076, 34.78631],\n      [-92.2805, 34.78626],\n      [-92.28026, 34.78621],\n      [-92.2797, 34.78607],\n      [-92.27923, 34.78593],\n      [-92.27881, 34.78578],\n      [-92.27842, 34.78563],\n      [-92.27797, 34.78542],\n      [-92.27772, 34.7853],\n      [-92.27743, 34.78515],\n      [-92.27697, 34.78489],\n      [-92.2766, 34.78464],\n      [-92.27607, 34.78425],\n      [-92.27497, 34.78341],\n      [-92.27472, 34.78323],\n      [-92.27449, 34.78308],\n      [-92.27433, 34.78299],\n      [-92.27405, 34.78284],\n      [-92.27377, 34.7827],\n      [-92.27352, 34.78259],\n      [-92.27333, 34.78252],\n      [-92.273, 34.7824],\n      [-92.27234, 34.7822],\n      [-92.26916, 34.78162],\n      [-92.2687, 34.78155],\n      [-92.26834, 34.78147],\n      [-92.26792, 34.78137],\n      [-92.26759, 34.78128],\n      [-92.26713, 34.78113],\n      [-92.2668, 34.781],\n      [-92.26641, 34.78084],\n      [-92.26563, 34.78048],\n      [-92.26545, 34.78039],\n      [-92.26522, 34.78028],\n      [-92.26508, 34.7802],\n      [-92.26482, 34.78006],\n      [-92.26433, 34.77977],\n      [-92.26399, 34.77956],\n      [-92.26368, 34.77935],\n      [-92.26348, 34.77921],\n      [-92.26335, 34.7791],\n      [-92.26316, 34.77899],\n      [-92.26279, 34.77873],\n      [-92.26262, 34.77861],\n      [-92.26241, 34.77847],\n      [-92.26225, 34.77835],\n      [-92.26204, 34.77821],\n      [-92.26182, 34.77808],\n      [-92.26158, 34.77795],\n      [-92.26137, 34.77784],\n      [-92.26108, 34.77771],\n      [-92.26076, 34.7776],\n      [-92.26045, 34.77753],\n      [-92.26014, 34.77746],\n      [-92.2598, 34.7774],\n      [-92.2596, 34.77737],\n      [-92.25938, 34.77735],\n      [-92.25927, 34.77735],\n      [-92.25906, 34.77734],\n      [-92.25853, 34.77736],\n      [-92.25792, 34.77741],\n      [-92.25746, 34.77746],\n      [-92.25699, 34.77753],\n      [-92.25645, 34.77763],\n      [-92.25407, 34.77803],\n      [-92.25359, 34.77811],\n      [-92.2533, 34.77815],\n      [-92.25304, 34.77818],\n      [-92.25276, 34.77821],\n      [-92.25252, 34.77823],\n      [-92.25227, 34.77824],\n      [-92.25223, 34.77824],\n      [-92.25184, 34.77825],\n      [-92.25138, 34.77825],\n      [-92.25114, 34.77824],\n      [-92.25067, 34.77822],\n      [-92.24606, 34.77782],\n      [-92.24194, 34.77746],\n      [-92.24088, 34.77737],\n      [-92.2391, 34.77721],\n      [-92.23625, 34.77697],\n      [-92.23426, 34.77677],\n      [-92.23363, 34.77673],\n      [-92.23285, 34.77671],\n      [-92.23255, 34.77671],\n      [-92.23214, 34.77672],\n      [-92.23179, 34.77673],\n      [-92.23108, 34.77677],\n      [-92.23082, 34.77679],\n      [-92.23069, 34.7768],\n      [-92.23016, 34.77685],\n      [-92.22978, 34.77689],\n      [-92.22937, 34.77695],\n      [-92.22866, 34.77706],\n      [-92.22826, 34.77713],\n      [-92.22781, 34.77723],\n      [-92.22649, 34.77751],\n      [-92.22285, 34.77834],\n      [-92.2226, 34.7784],\n      [-92.22189, 34.77857],\n      [-92.21848, 34.77935],\n      [-92.21844, 34.77936],\n      [-92.21808, 34.77944],\n      [-92.21776, 34.7795],\n      [-92.21737, 34.77955],\n      [-92.21691, 34.77961],\n      [-92.21625, 34.77967],\n      [-92.21608, 34.77969],\n      [-92.21555, 34.77971],\n      [-92.21513, 34.77972],\n      [-92.21473, 34.77971],\n      [-92.21431, 34.7797],\n      [-92.21407, 34.77968],\n      [-92.21393, 34.77967],\n      [-92.21271, 34.77954],\n      [-92.20995, 34.7793],\n      [-92.20827, 34.77915],\n      [-92.20756, 34.7791],\n      [-92.2039, 34.77876],\n      [-92.20282, 34.77866],\n      [-92.19756, 34.77813],\n      [-92.19724, 34.77811],\n      [-92.19526, 34.77793],\n      [-92.19502, 34.77792],\n      [-92.19396, 34.77787],\n      [-92.19327, 34.77786],\n      [-92.19279, 34.77787],\n      [-92.19208, 34.7779],\n      [-92.19163, 34.77792],\n      [-92.19114, 34.77797],\n      [-92.18586, 34.77853],\n      [-92.18326, 34.77882],\n      [-92.18123, 34.77904],\n      [-92.17103, 34.78014],\n      [-92.16274, 34.78104],\n      [-92.15719, 34.78164],\n      [-92.15314, 34.78208],\n      [-92.14911, 34.78252],\n      [-92.14871, 34.78256],\n      [-92.14645, 34.78281],\n      [-92.14192, 34.7833],\n      [-92.14014, 34.7835],\n      [-92.13683, 34.78386],\n      [-92.13446, 34.78411],\n      [-92.13377, 34.78418],\n      [-92.12854, 34.78476],\n      [-92.12449, 34.78518],\n      [-92.12088, 34.78558],\n      [-92.12005, 34.78567],\n      [-92.11869, 34.78582],\n      [-92.1178, 34.78592],\n      [-92.11445, 34.78628],\n      [-92.10982, 34.78679],\n      [-92.10768, 34.78702],\n      [-92.10266, 34.78756],\n      [-92.10216, 34.78762],\n      [-92.10074, 34.78777],\n      [-92.09638, 34.78824],\n      [-92.09103, 34.78882],\n      [-92.0888, 34.78906],\n      [-92.08428, 34.78955],\n      [-92.08168, 34.78983],\n      [-92.0791, 34.79011],\n      [-92.07737, 34.79029],\n      [-92.07653, 34.79038],\n      [-92.0755, 34.79046],\n      [-92.06318, 34.79121],\n      [-92.05652, 34.79159],\n      [-92.04721, 34.79216],\n      [-92.04562, 34.79231],\n      [-92.04469, 34.79244],\n      [-92.0437, 34.79257],\n      [-92.04201, 34.79287],\n      [-92.04065, 34.79319],\n      [-92.0397, 34.79342],\n      [-92.03867, 34.79369],\n      [-92.03542, 34.79471],\n      [-92.03337, 34.79539],\n      [-92.02598, 34.79775],\n      [-92.02468, 34.79818],\n      [-92.0219, 34.79909],\n      [-92.02044, 34.7995],\n      [-92.01961, 34.79971],\n      [-92.01721, 34.80022],\n      [-92.01487, 34.80057],\n      [-92.01229, 34.80079],\n      [-92.00311, 34.80121],\n      [-91.9998, 34.80134],\n      [-91.99575, 34.80151],\n      [-91.9937, 34.8016],\n      [-91.99153, 34.80168],\n      [-91.98954, 34.80174],\n      [-91.9867, 34.80186],\n      [-91.97857, 34.80222],\n      [-91.97641, 34.80233],\n      [-91.96816, 34.80268],\n      [-91.96589, 34.80276],\n      [-91.95495, 34.80322],\n      [-91.95138, 34.80339],\n      [-91.94919, 34.80346],\n      [-91.93307, 34.80345],\n      [-91.93208, 34.80345],\n      [-91.92318, 34.80345],\n      [-91.92068, 34.80345],\n      [-91.91606, 34.80344],\n      [-91.91329, 34.80344],\n      [-91.90866, 34.80348],\n      [-91.90844, 34.80348],\n      [-91.89951, 34.80369],\n      [-91.89844, 34.80372],\n      [-91.89365, 34.80383],\n      [-91.89257, 34.80385],\n      [-91.88738, 34.80399],\n      [-91.88594, 34.80402],\n      [-91.88322, 34.80408],\n      [-91.87735, 34.80423],\n      [-91.87392, 34.8043],\n      [-91.87034, 34.80439],\n      [-91.86853, 34.80437],\n      [-91.867, 34.80431],\n      [-91.86531, 34.80418],\n      [-91.86353, 34.80397],\n      [-91.86184, 34.8037],\n      [-91.85814, 34.80303],\n      [-91.8525, 34.80199],\n      [-91.85008, 34.80154],\n      [-91.84713, 34.80099],\n      [-91.84365, 34.80036],\n      [-91.84112, 34.79989],\n      [-91.83976, 34.79971],\n      [-91.83824, 34.79952],\n      [-91.83706, 34.79943],\n      [-91.83586, 34.79936],\n      [-91.83457, 34.79933],\n      [-91.83248, 34.79931],\n      [-91.82585, 34.79931],\n      [-91.824, 34.79929],\n      [-91.82033, 34.79917],\n      [-91.81367, 34.79895],\n      [-91.81171, 34.79888],\n      [-91.80733, 34.79873],\n      [-91.80287, 34.79864],\n      [-91.79501, 34.79857],\n      [-91.79312, 34.79852],\n      [-91.78799, 34.79839],\n      [-91.78242, 34.79825],\n      [-91.78214, 34.79824],\n      [-91.77505, 34.79797],\n      [-91.77245, 34.79794],\n      [-91.77019, 34.79803],\n      [-91.76822, 34.79821],\n      [-91.76341, 34.79875],\n      [-91.7563, 34.79958],\n      [-91.75414, 34.79982],\n      [-91.75325, 34.79991],\n      [-91.75251, 34.80001],\n      [-91.7514, 34.80013],\n      [-91.75042, 34.80024],\n      [-91.749, 34.8004],\n      [-91.74771, 34.80056],\n      [-91.746, 34.80076],\n      [-91.7447, 34.8009],\n      [-91.74263, 34.80114],\n      [-91.73426, 34.80205],\n      [-91.73154, 34.80239],\n      [-91.729, 34.80258],\n      [-91.72747, 34.80264],\n      [-91.72571, 34.80264],\n      [-91.71362, 34.80231],\n      [-91.70264, 34.802],\n      [-91.69871, 34.8019],\n      [-91.69798, 34.80191],\n      [-91.69712, 34.80196],\n      [-91.69519, 34.80223],\n      [-91.69323, 34.80261],\n      [-91.69084, 34.80333],\n      [-91.68798, 34.80457],\n      [-91.67637, 34.80964],\n      [-91.67235, 34.81139],\n      [-91.668, 34.81328],\n      [-91.66328, 34.81536],\n      [-91.66138, 34.81619],\n      [-91.66083, 34.8164],\n      [-91.66035, 34.81658],\n      [-91.66006, 34.81668],\n      [-91.65962, 34.81682],\n      [-91.65924, 34.81694],\n      [-91.65884, 34.81706],\n      [-91.65819, 34.81722],\n      [-91.65759, 34.81735],\n      [-91.65703, 34.81748],\n      [-91.6557, 34.81766],\n      [-91.65526, 34.81772],\n      [-91.65472, 34.81777],\n      [-91.65428, 34.8178],\n      [-91.6539, 34.81782],\n      [-91.65347, 34.81783],\n      [-91.6481, 34.81787],\n      [-91.64496, 34.81789],\n      [-91.64342, 34.8179],\n      [-91.64121, 34.8179],\n      [-91.63884, 34.81792],\n      [-91.63757, 34.81793],\n      [-91.63262, 34.81797],\n      [-91.63007, 34.81798],\n      [-91.62844, 34.81799],\n      [-91.6259, 34.81798],\n      [-91.62452, 34.81801],\n      [-91.62311, 34.81802],\n      [-91.62048, 34.81803],\n      [-91.61836, 34.81804],\n      [-91.61686, 34.81805],\n      [-91.61574, 34.81806],\n      [-91.61464, 34.81806],\n      [-91.60646, 34.8181],\n      [-91.60519, 34.81811],\n      [-91.60466, 34.81813],\n      [-91.60419, 34.81815],\n      [-91.60356, 34.81817],\n      [-91.60122, 34.81829],\n      [-91.59914, 34.81838],\n      [-91.59575, 34.81854],\n      [-91.59281, 34.81869],\n      [-91.58986, 34.81883],\n      [-91.58699, 34.81898],\n      [-91.58599, 34.81903],\n      [-91.58475, 34.81907],\n      [-91.58421, 34.81908],\n      [-91.58371, 34.81908],\n      [-91.58191, 34.81906],\n      [-91.57588, 34.81901],\n      [-91.5743, 34.819],\n      [-91.5726, 34.81895],\n      [-91.57062, 34.81895],\n      [-91.56889, 34.81894],\n      [-91.56663, 34.81892],\n      [-91.5655, 34.8189],\n      [-91.56345, 34.81889],\n      [-91.55871, 34.81882],\n      [-91.54615, 34.81874],\n      [-91.54569, 34.81873],\n      [-91.53762, 34.81862],\n      [-91.53198, 34.81859],\n      [-91.52851, 34.81856],\n      [-91.5242, 34.81853],\n      [-91.52332, 34.81854],\n      [-91.52255, 34.81858],\n      [-91.52179, 34.81862],\n      [-91.5212, 34.81869],\n      [-91.52055, 34.81878],\n      [-91.51985, 34.81889],\n      [-91.51926, 34.819],\n      [-91.51872, 34.81912],\n      [-91.518, 34.81932],\n      [-91.51677, 34.8197],\n      [-91.51362, 34.82066],\n      [-91.51252, 34.82102],\n      [-91.51046, 34.82166],\n      [-91.50767, 34.82255],\n      [-91.50013, 34.8249],\n      [-91.49844, 34.82542],\n      [-91.4945, 34.82665],\n      [-91.4924, 34.82743],\n      [-91.49034, 34.82833],\n      [-91.48846, 34.82925],\n      [-91.48154, 34.83315],\n      [-91.48106, 34.83339],\n      [-91.48063, 34.8336],\n      [-91.48018, 34.83379],\n      [-91.47941, 34.83409],\n      [-91.479, 34.83425],\n      [-91.47835, 34.83446],\n      [-91.478, 34.83458],\n      [-91.47746, 34.83473],\n      [-91.47692, 34.83487],\n      [-91.47536, 34.83524],\n      [-91.46898, 34.8368],\n      [-91.46828, 34.83694],\n      [-91.46715, 34.83722],\n      [-91.46637, 34.83741],\n      [-91.46469, 34.8378],\n      [-91.46359, 34.83807],\n      [-91.4615, 34.83857],\n      [-91.45274, 34.84066],\n      [-91.43945, 34.84376],\n      [-91.4339, 34.84511],\n      [-91.4327, 34.84537],\n      [-91.43202, 34.8455],\n      [-91.42982, 34.84585],\n      [-91.42849, 34.84597],\n      [-91.42621, 34.84614],\n      [-91.4238, 34.8462],\n      [-91.41877, 34.84614],\n      [-91.41013, 34.846],\n      [-91.39287, 34.84575],\n      [-91.38693, 34.84566],\n      [-91.38215, 34.84557],\n      [-91.37961, 34.84561],\n      [-91.37773, 34.84576],\n      [-91.37593, 34.84596],\n      [-91.37431, 34.84619],\n      [-91.37171, 34.84666],\n      [-91.36127, 34.84852],\n      [-91.35874, 34.84896],\n      [-91.35532, 34.84957],\n      [-91.35365, 34.84979],\n      [-91.352, 34.84996],\n      [-91.34405, 34.85078],\n      [-91.3422, 34.85106],\n      [-91.34066, 34.85137],\n      [-91.33792, 34.85214],\n      [-91.33633, 34.85269],\n      [-91.33507, 34.85321],\n      [-91.33382, 34.85379],\n      [-91.33232, 34.85454],\n      [-91.33105, 34.85517],\n      [-91.3161, 34.86238],\n      [-91.31467, 34.86306],\n      [-91.313, 34.86382],\n      [-91.31157, 34.86439],\n      [-91.3099, 34.86494],\n      [-91.30789, 34.86544],\n      [-91.30142, 34.86703],\n      [-91.30083, 34.86717],\n      [-91.29442, 34.8687],\n      [-91.28963, 34.86984],\n      [-91.28234, 34.87156],\n      [-91.28017, 34.8722],\n      [-91.27808, 34.87295],\n      [-91.27574, 34.87395],\n      [-91.27348, 34.87506],\n      [-91.27138, 34.87627],\n      [-91.26957, 34.87748],\n      [-91.2679, 34.87869],\n      [-91.25961, 34.88492],\n      [-91.25901, 34.88537],\n      [-91.25897, 34.8854],\n      [-91.24989, 34.89229],\n      [-91.24431, 34.89648],\n      [-91.24279, 34.89755],\n      [-91.24073, 34.89887],\n      [-91.23824, 34.90032],\n      [-91.23589, 34.90155],\n      [-91.23383, 34.90251],\n      [-91.23144, 34.90353],\n      [-91.22917, 34.90438],\n      [-91.22689, 34.90518],\n      [-91.22453, 34.90583],\n      [-91.22223, 34.90642],\n      [-91.21946, 34.90704],\n      [-91.21784, 34.90734],\n      [-91.21641, 34.90755],\n      [-91.21416, 34.9078],\n      [-91.21174, 34.90804],\n      [-91.20922, 34.90818],\n      [-91.20291, 34.90842],\n      [-91.19679, 34.90869],\n      [-91.19401, 34.90879],\n      [-91.19141, 34.90891],\n      [-91.19031, 34.90894],\n      [-91.18673, 34.90906],\n      [-91.18418, 34.90925],\n      [-91.18185, 34.90953],\n      [-91.1793, 34.90992],\n      [-91.17705, 34.9104],\n      [-91.17517, 34.91087],\n      [-91.17314, 34.91143],\n      [-91.17111, 34.91208],\n      [-91.16873, 34.91296],\n      [-91.16367, 34.91496],\n      [-91.16178, 34.91566],\n      [-91.16091, 34.91593],\n      [-91.1591, 34.91646],\n      [-91.15721, 34.9169],\n      [-91.15529, 34.91728],\n      [-91.15243, 34.91776],\n      [-91.15099, 34.91799],\n      [-91.14585, 34.91883],\n      [-91.14374, 34.91925],\n      [-91.14128, 34.91991],\n      [-91.13889, 34.92067],\n      [-91.13709, 34.92137],\n      [-91.13015, 34.92403],\n      [-91.12628, 34.92558],\n      [-91.12561, 34.92582],\n      [-91.12407, 34.92641],\n      [-91.12186, 34.92712],\n      [-91.11992, 34.92762],\n      [-91.11788, 34.92799],\n      [-91.11227, 34.9288],\n      [-91.10428, 34.92998],\n      [-91.09071, 34.93191],\n      [-91.08806, 34.93239],\n      [-91.08613, 34.93282],\n      [-91.08439, 34.93331],\n      [-91.08273, 34.93382],\n      [-91.08101, 34.93444],\n      [-91.0787, 34.93529],\n      [-91.07257, 34.93757],\n      [-91.06448, 34.94056],\n      [-91.06231, 34.9413],\n      [-91.06043, 34.9418],\n      [-91.05793, 34.94239],\n      [-91.04938, 34.94394],\n      [-91.04747, 34.94435],\n      [-91.04556, 34.94483],\n      [-91.04375, 34.94535],\n      [-91.041, 34.94618],\n      [-91.02144, 34.95219],\n      [-91.01916, 34.95288],\n      [-91.01402, 34.95448],\n      [-90.9995, 34.95891],\n      [-90.98793, 34.96248],\n      [-90.97875, 34.96528],\n      [-90.96934, 34.96816],\n      [-90.95419, 34.97281],\n      [-90.95227, 34.97331],\n      [-90.94973, 34.97382],\n      [-90.94784, 34.97412],\n      [-90.94509, 34.97444],\n      [-90.9356, 34.97541],\n      [-90.92403, 34.97662],\n      [-90.92225, 34.97686],\n      [-90.92064, 34.97721],\n      [-90.91863, 34.97782],\n      [-90.91509, 34.97929],\n      [-90.90859, 34.98199],\n      [-90.90208, 34.9847],\n      [-90.89498, 34.98764],\n      [-90.88875, 34.99022],\n      [-90.88621, 34.99128],\n      [-90.87839, 34.99454],\n      [-90.87629, 34.99537],\n      [-90.8735, 34.99637],\n      [-90.8711, 34.99719],\n      [-90.85967, 35.00122],\n      [-90.85761, 35.00198],\n      [-90.85578, 35.00278],\n      [-90.85411, 35.0036],\n      [-90.8522, 35.00467],\n      [-90.85026, 35.00587],\n      [-90.84523, 35.00894],\n      [-90.83473, 35.01543],\n      [-90.8255, 35.02111],\n      [-90.82153, 35.02358],\n      [-90.82058, 35.02417],\n      [-90.81532, 35.02731],\n      [-90.81412, 35.02806],\n      [-90.81082, 35.03014],\n      [-90.80928, 35.03101],\n      [-90.80772, 35.03182],\n      [-90.80697, 35.03217],\n      [-90.8048, 35.03314],\n      [-90.80334, 35.03367],\n      [-90.80226, 35.03404],\n      [-90.79988, 35.03476],\n      [-90.79725, 35.03534],\n      [-90.79565, 35.03563],\n      [-90.79476, 35.03577],\n      [-90.79399, 35.03586],\n      [-90.79315, 35.03596],\n      [-90.79225, 35.03605],\n      [-90.7904, 35.03622],\n      [-90.79022, 35.03623],\n      [-90.78923, 35.03632],\n      [-90.78913, 35.03632],\n      [-90.78338, 35.03682],\n      [-90.7779, 35.03733],\n      [-90.77715, 35.03738],\n      [-90.77501, 35.03748],\n      [-90.77228, 35.03749],\n      [-90.77166, 35.03748],\n      [-90.76862, 35.03743],\n      [-90.76298, 35.03736],\n      [-90.75986, 35.03731],\n      [-90.7586, 35.03722],\n      [-90.75725, 35.03707],\n      [-90.75488, 35.0366],\n      [-90.75052, 35.03558],\n      [-90.74945, 35.03534],\n      [-90.74527, 35.03438],\n      [-90.73999, 35.03315],\n      [-90.73689, 35.03243],\n      [-90.73495, 35.03214],\n      [-90.73318, 35.03203],\n      [-90.73148, 35.03202],\n      [-90.72976, 35.03214],\n      [-90.72797, 35.03242],\n      [-90.72608, 35.03283],\n      [-90.72406, 35.03351],\n      [-90.72267, 35.03417],\n      [-90.72169, 35.03468],\n      [-90.72105, 35.03505],\n      [-90.71903, 35.03636],\n      [-90.71566, 35.03874],\n      [-90.71284, 35.0407],\n      [-90.70693, 35.0448],\n      [-90.70321, 35.04738],\n      [-90.69867, 35.05057],\n      [-90.69687, 35.05175],\n      [-90.69499, 35.05285],\n      [-90.69008, 35.05576],\n      [-90.68731, 35.05742],\n      [-90.68578, 35.05833],\n      [-90.68352, 35.05966],\n      [-90.68057, 35.06141],\n      [-90.67912, 35.06232],\n      [-90.66545, 35.07184],\n      [-90.6643, 35.07261],\n      [-90.6527, 35.08066],\n      [-90.64882, 35.08331],\n      [-90.64742, 35.08421],\n      [-90.64596, 35.08509],\n      [-90.64434, 35.08596],\n      [-90.64266, 35.08675],\n      [-90.64072, 35.08757],\n      [-90.63873, 35.08829],\n      [-90.63023, 35.09104],\n      [-90.62292, 35.09348],\n      [-90.61512, 35.09601],\n      [-90.60709, 35.09862],\n      [-90.58804, 35.10481],\n      [-90.58421, 35.10606],\n      [-90.57571, 35.1088],\n      [-90.5752, 35.10896],\n      [-90.56337, 35.11311],\n      [-90.56253, 35.1134],\n      [-90.55641, 35.11554],\n      [-90.55432, 35.11628],\n      [-90.54826, 35.11841],\n      [-90.54784, 35.11855],\n      [-90.54199, 35.12057],\n      [-90.53553, 35.12284],\n      [-90.52857, 35.12526],\n      [-90.52325, 35.12713],\n      [-90.52054, 35.12808],\n      [-90.52014, 35.12822],\n      [-90.51657, 35.12948],\n      [-90.51471, 35.13008],\n      [-90.51305, 35.13054],\n      [-90.51134, 35.13096],\n      [-90.5094, 35.13132],\n      [-90.50729, 35.13164],\n      [-90.50551, 35.13181],\n      [-90.5047, 35.1319],\n      [-90.502, 35.13202],\n      [-90.49971, 35.13211],\n      [-90.49419, 35.13228],\n      [-90.48969, 35.13242],\n      [-90.4896, 35.13243],\n      [-90.48749, 35.1325],\n      [-90.48728, 35.13251],\n      [-90.4859, 35.13254],\n      [-90.48104, 35.1327],\n      [-90.47993, 35.13275],\n      [-90.46813, 35.13315],\n      [-90.46379, 35.1333],\n      [-90.45476, 35.13361],\n      [-90.45234, 35.13367],\n      [-90.44201, 35.134],\n      [-90.44028, 35.13413],\n      [-90.43888, 35.13434],\n      [-90.43742, 35.13464],\n      [-90.4359, 35.13506],\n      [-90.43463, 35.13552],\n      [-90.43326, 35.1361],\n      [-90.43104, 35.13719],\n      [-90.42563, 35.13979],\n      [-90.41363, 35.14554],\n      [-90.40905, 35.14772],\n      [-90.4065, 35.14895],\n      [-90.40493, 35.14966],\n      [-90.4042, 35.14993],\n      [-90.40264, 35.15043],\n      [-90.40156, 35.15074],\n      [-90.40004, 35.15102],\n      [-90.39862, 35.15118],\n      [-90.39775, 35.15123],\n      [-90.3968, 35.15128],\n      [-90.39049, 35.151],\n      [-90.37579, 35.1503],\n      [-90.35548, 35.14934],\n      [-90.35494, 35.14931],\n      [-90.33743, 35.14851],\n      [-90.33693, 35.14849],\n      [-90.32862, 35.14806],\n      [-90.32798, 35.14804],\n      [-90.32404, 35.14789],\n      [-90.31985, 35.14784],\n      [-90.31937, 35.14784],\n      [-90.30191, 35.14776],\n      [-90.30143, 35.14775],\n      [-90.29761, 35.14774],\n      [-90.29491, 35.14776],\n      [-90.29325, 35.14774],\n      [-90.29227, 35.14773],\n      [-90.28945, 35.1477],\n      [-90.28685, 35.14765],\n      [-90.28161, 35.14756],\n      [-90.27164, 35.14744],\n      [-90.26807, 35.14737],\n      [-90.26659, 35.14761],\n      [-90.26464, 35.14821],\n      [-90.26451, 35.14825],\n      [-90.26406, 35.14839],\n      [-90.25553, 35.15103],\n      [-90.25349, 35.15166],\n      [-90.24921, 35.15293],\n      [-90.24663, 35.15369],\n      [-90.24623, 35.15382],\n      [-90.23949, 35.15589],\n      [-90.23306, 35.15786],\n      [-90.23048, 35.15867],\n      [-90.22992, 35.15884],\n      [-90.22869, 35.15919],\n      [-90.223, 35.16094],\n      [-90.21968, 35.16196],\n      [-90.2144, 35.16356],\n      [-90.21088, 35.16463],\n      [-90.21014, 35.16486],\n      [-90.20756, 35.16563],\n      [-90.20626, 35.16602],\n      [-90.20291, 35.16704],\n      [-90.20058, 35.16776],\n      [-90.19984, 35.16805],\n      [-90.19897, 35.16842],\n      [-90.19815, 35.16893],\n      [-90.19686, 35.16974],\n      [-90.19613, 35.17014],\n      [-90.19552, 35.17042],\n      [-90.19517, 35.17054],\n      [-90.19458, 35.17073],\n      [-90.19418, 35.17082],\n      [-90.1936, 35.17091],\n      [-90.19297, 35.17094],\n      [-90.19244, 35.17092],\n      [-90.1916, 35.17082],\n      [-90.19111, 35.17071],\n      [-90.19093, 35.17064],\n      [-90.19053, 35.17051],\n      [-90.18995, 35.17032],\n      [-90.18642, 35.16898],\n      [-90.18597, 35.16884],\n      [-90.18419, 35.16819],\n      [-90.18308, 35.16775],\n      [-90.18118, 35.16699],\n      [-90.17939, 35.16629],\n      [-90.17785, 35.16572],\n      [-90.17692, 35.16535],\n      [-90.17533, 35.16476],\n      [-90.17456, 35.16448],\n      [-90.17386, 35.16422],\n      [-90.17064, 35.16297],\n      [-90.16654, 35.16138],\n      [-90.16459, 35.16066],\n      [-90.16421, 35.16052],\n      [-90.16262, 35.1599],\n      [-90.15818, 35.15819],\n      [-90.15766, 35.15799],\n      [-90.15417, 35.15665],\n      [-90.15282, 35.15613],\n      [-90.1518, 35.15577],\n      [-90.15087, 35.15551],\n      [-90.15008, 35.15534],\n      [-90.14902, 35.15518],\n      [-90.14836, 35.15514],\n      [-90.14784, 35.15512],\n      [-90.1474, 35.15513],\n      [-90.14689, 35.15516],\n      [-90.14639, 35.15523],\n      [-90.14583, 35.15531],\n      [-90.14491, 35.15548],\n      [-90.14426, 35.1556],\n      [-90.14357, 35.15571],\n      [-90.14313, 35.15575],\n      [-90.14252, 35.15579],\n      [-90.14107, 35.15587],\n      [-90.1368, 35.15613],\n      [-90.13575, 35.15618],\n      [-90.133, 35.15632],\n      [-90.13227, 35.15637],\n      [-90.12701, 35.15667],\n      [-90.12516, 35.15677],\n      [-90.12399, 35.15677],\n      [-90.12272, 35.15664],\n      [-90.11572, 35.15541],\n      [-90.11341, 35.15499],\n      [-90.11033, 35.15444],\n      [-90.10737, 35.1539],\n      [-90.10645, 35.15374],\n      [-90.10352, 35.15323],\n      [-90.10187, 35.15306],\n      [-90.10085, 35.15301],\n      [-90.09812, 35.15301],\n      [-90.08918, 35.153],\n      [-90.0853, 35.153],\n      [-90.07819, 35.15304],\n      [-90.06848, 35.15304],\n      [-90.05789, 35.15304],\n      [-90.05688, 35.15305],\n      [-90.05405, 35.15303],\n      [-90.05231, 35.15305],\n      [-90.05084, 35.15305],\n      [-90.04948, 35.15307],\n      [-90.04889, 35.15306],\n      [-90.04872, 35.15305],\n      [-90.04847, 35.15303],\n      [-90.04819, 35.15297],\n      [-90.04812, 35.15295],\n      [-90.04802, 35.15293],\n      [-90.04791, 35.15292],\n      [-90.04758, 35.15285],\n      [-90.04738, 35.15281],\n      [-90.04707, 35.15273],\n      [-90.0467, 35.15262],\n      [-90.04585, 35.1523],\n      [-90.04522, 35.15208],\n      [-90.04478, 35.15193],\n      [-90.04428, 35.1518],\n      [-90.04382, 35.15171],\n      [-90.04343, 35.15167],\n      [-90.04265, 35.15161],\n      [-90.04169, 35.15154],\n      [-90.04104, 35.15147],\n      [-90.04042, 35.1514],\n      [-90.04003, 35.15124],\n      [-90.03992, 35.15118],\n      [-90.03985, 35.15113],\n      [-90.0398, 35.15106],\n      [-90.03976, 35.15097],\n      [-90.03974, 35.1509],\n      [-90.03974, 35.15083],\n      [-90.03974, 35.15074],\n      [-90.03979, 35.15066],\n      [-90.03984, 35.1506],\n      [-90.0399, 35.15054],\n      [-90.03999, 35.15046],\n      [-90.04011, 35.1504],\n      [-90.04025, 35.15036],\n      [-90.04039, 35.15034],\n      [-90.04054, 35.15034],\n      [-90.04069, 35.15036],\n      [-90.04081, 35.1504],\n      [-90.04092, 35.15044],\n      [-90.04101, 35.15054],\n      [-90.04108, 35.15063],\n      [-90.04112, 35.15074],\n      [-90.04111, 35.15083],\n      [-90.04105, 35.15102],\n      [-90.04095, 35.15127],\n      [-90.04087, 35.15134],\n      [-90.04066, 35.15153],\n      [-90.04052, 35.15171],\n      [-90.03985, 35.15231],\n      [-90.03945, 35.15269],\n      [-90.03919, 35.15296],\n      [-90.03909, 35.15305],\n      [-90.03882, 35.15331],\n      [-90.03864, 35.15349],\n      [-90.03857, 35.15357],\n      [-90.03828, 35.1539],\n      [-90.0381, 35.15417],\n      [-90.03792, 35.15449],\n      [-90.03779, 35.15486],\n      [-90.0377, 35.15517],\n      [-90.03759, 35.1557],\n      [-90.0367, 35.15559],\n      [-90.03535, 35.15548],\n      [-90.03348, 35.1555],\n      [-90.03269, 35.15544],\n      [-90.03196, 35.15538],\n      [-90.03118, 35.15515],\n      [-90.02868, 35.15495],\n      [-90.02511, 35.15464],\n      [-90.02219, 35.1544],\n      [-90.02152, 35.15435],\n      [-90.02066, 35.15427],\n      [-90.02056, 35.15425],\n      [-90.01962, 35.15413],\n      [-90.01776, 35.15396],\n      [-90.01628, 35.15383],\n      [-90.01575, 35.15378],\n      [-90.01438, 35.15374],\n      [-90.01318, 35.15364],\n      [-90.01269, 35.15356],\n      [-90.01147, 35.15325],\n      [-90.01095, 35.1532],\n      [-90.01042, 35.15326],\n      [-90.00934, 35.15343],\n      [-90.00891, 35.1535],\n      [-90.00837, 35.15353],\n      [-90.00792, 35.15349],\n      [-90.00723, 35.15343],\n      [-90.00562, 35.15326],\n      [-90.00384, 35.15307],\n      [-90.00209, 35.15291],\n      [-90.002, 35.15291],\n      [-90.00191, 35.1529],\n      [-89.99956, 35.15266],\n      [-89.99763, 35.15246],\n      [-89.99754, 35.15246],\n      [-89.99745, 35.15245],\n      [-89.99232, 35.15195],\n      [-89.99215, 35.15193],\n      [-89.98775, 35.1515],\n      [-89.98709, 35.15144],\n      [-89.98599, 35.15133],\n      [-89.98271, 35.15104],\n      [-89.98202, 35.15094],\n      [-89.98177, 35.15089],\n      [-89.98162, 35.1508],\n      [-89.98156, 35.15073],\n      [-89.98146, 35.15045],\n      [-89.98151, 35.1502],\n      [-89.98164, 35.1494],\n      [-89.98175, 35.1488],\n      [-89.98178, 35.14864],\n      [-89.98167, 35.14858],\n      [-89.98157, 35.14854],\n      [-89.98129, 35.14848],\n      [-89.981, 35.14845],\n      [-89.98059, 35.1484],\n      [-89.98002, 35.14832],\n      [-89.97962, 35.14824],\n      [-89.97907, 35.14808],\n      [-89.97862, 35.14793],\n      [-89.97759, 35.14748],\n      [-89.97694, 35.14723],\n      [-89.97638, 35.14706],\n      [-89.97579, 35.14694],\n      [-89.97515, 35.14685],\n      [-89.97393, 35.14674],\n      [-89.97335, 35.14666],\n      [-89.97282, 35.14656],\n      [-89.97214, 35.14638],\n      [-89.97168, 35.14627],\n      [-89.97119, 35.14615],\n      [-89.9707, 35.14606],\n      [-89.97023, 35.14601],\n      [-89.96697, 35.14582],\n      [-89.96551, 35.14572],\n      [-89.96481, 35.14571],\n      [-89.96432, 35.14573],\n      [-89.96375, 35.14584],\n      [-89.96338, 35.14594],\n      [-89.96309, 35.14602],\n      [-89.96254, 35.14619],\n      [-89.9621, 35.14628],\n      [-89.96131, 35.14638],\n      [-89.95802, 35.14675],\n      [-89.95709, 35.14687],\n      [-89.95673, 35.14694],\n      [-89.9564, 35.14701],\n      [-89.95602, 35.1471],\n      [-89.95545, 35.14725],\n      [-89.95445, 35.14752],\n      [-89.95383, 35.14767],\n      [-89.9528, 35.14791],\n      [-89.95222, 35.14801],\n      [-89.95166, 35.14807],\n      [-89.95118, 35.14809],\n      [-89.94996, 35.14808],\n      [-89.94694, 35.14803],\n      [-89.94686, 35.14803],\n      [-89.94481, 35.148],\n      [-89.94428, 35.14799],\n      [-89.94253, 35.14796],\n      [-89.94128, 35.14792],\n      [-89.94056, 35.14783],\n      [-89.94003, 35.14769],\n      [-89.93992, 35.14767],\n      [-89.93919, 35.14742],\n      [-89.93815, 35.14702],\n      [-89.93763, 35.14686],\n      [-89.93708, 35.14671],\n      [-89.9365, 35.14662],\n      [-89.93572, 35.14658],\n      [-89.93327, 35.14655],\n      [-89.93198, 35.14654],\n      [-89.929, 35.1465],\n      [-89.92786, 35.14647],\n      [-89.92671, 35.14641],\n      [-89.92406, 35.14619],\n      [-89.92264, 35.14607],\n      [-89.92224, 35.14604],\n      [-89.91897, 35.14573],\n      [-89.91801, 35.14566],\n      [-89.91706, 35.14561],\n      [-89.91634, 35.14558],\n      [-89.91587, 35.14557],\n      [-89.91265, 35.14547],\n      [-89.91151, 35.14544],\n      [-89.91031, 35.14541],\n      [-89.90955, 35.14544],\n      [-89.9088, 35.1455],\n      [-89.9081, 35.14558],\n      [-89.90698, 35.14575],\n      [-89.90474, 35.14609],\n      [-89.90279, 35.1464],\n      [-89.89916, 35.14697],\n      [-89.89809, 35.14713],\n      [-89.89709, 35.14727],\n      [-89.89484, 35.14761],\n      [-89.89314, 35.14787],\n      [-89.89086, 35.14822],\n      [-89.88981, 35.1484],\n      [-89.88908, 35.14855],\n      [-89.88826, 35.1488],\n      [-89.8876, 35.1491],\n      [-89.88701, 35.14945],\n      [-89.88644, 35.14987],\n      [-89.88545, 35.15073],\n      [-89.88427, 35.15184],\n      [-89.8835, 35.15256],\n      [-89.88285, 35.15316],\n      [-89.88204, 35.15391],\n      [-89.88101, 35.1549],\n      [-89.88026, 35.15554],\n      [-89.87984, 35.15593],\n      [-89.87887, 35.1568],\n      [-89.87779, 35.15776],\n      [-89.87711, 35.15831],\n      [-89.87626, 35.15891],\n      [-89.87606, 35.15905],\n      [-89.8751, 35.15965],\n      [-89.87412, 35.16017],\n      [-89.87264, 35.16086],\n      [-89.86761, 35.16282],\n      [-89.86646, 35.16325],\n      [-89.86172, 35.16509],\n      [-89.86106, 35.16537],\n      [-89.8577, 35.16663],\n      [-89.85046, 35.1694],\n      [-89.85001, 35.16958],\n      [-89.84465, 35.17168],\n      [-89.84255, 35.17245],\n      [-89.84035, 35.17336],\n      [-89.83714, 35.17479],\n      [-89.83375, 35.17631],\n      [-89.82808, 35.17886],\n      [-89.82641, 35.17959],\n      [-89.82315, 35.18108],\n      [-89.81926, 35.18282],\n      [-89.81755, 35.18362],\n      [-89.81732, 35.18372],\n      [-89.81438, 35.18502],\n      [-89.81353, 35.18539],\n      [-89.81292, 35.18567],\n      [-89.81118, 35.18645],\n      [-89.80864, 35.18758],\n      [-89.80426, 35.1895],\n      [-89.80358, 35.18981],\n      [-89.80276, 35.19021],\n      [-89.80204, 35.19057],\n      [-89.8003, 35.19134],\n      [-89.79764, 35.19252],\n      [-89.79307, 35.19458],\n      [-89.79222, 35.19496],\n      [-89.7879, 35.19688],\n      [-89.78767, 35.19697],\n      [-89.77975, 35.20055],\n      [-89.77769, 35.20154],\n      [-89.77509, 35.20285],\n      [-89.77276, 35.20402],\n      [-89.77162, 35.2046],\n      [-89.7698, 35.20553],\n      [-89.7676, 35.20666],\n      [-89.76698, 35.20697],\n      [-89.75975, 35.21067],\n      [-89.75745, 35.21184],\n      [-89.74971, 35.2157],\n      [-89.74715, 35.21716],\n      [-89.74412, 35.2189],\n      [-89.74129, 35.22063],\n      [-89.73932, 35.22179],\n      [-89.73704, 35.22315],\n      [-89.73447, 35.22468],\n      [-89.73115, 35.22665],\n      [-89.72473, 35.23057],\n      [-89.71565, 35.23586],\n      [-89.70519, 35.24127],\n      [-89.70281, 35.24258],\n      [-89.69446, 35.24692],\n      [-89.6942, 35.24707],\n      [-89.68543, 35.25152],\n      [-89.68497, 35.25176],\n      [-89.68428, 35.25211],\n      [-89.67733, 35.25567],\n      [-89.67627, 35.25618],\n      [-89.67567, 35.25649],\n      [-89.66982, 35.25963],\n      [-89.66806, 35.26053],\n      [-89.66495, 35.26211],\n      [-89.662, 35.26371],\n      [-89.6611, 35.26417],\n      [-89.65689, 35.26637],\n      [-89.65043, 35.26971],\n      [-89.65012, 35.26989],\n      [-89.6381, 35.27622],\n      [-89.63736, 35.27656],\n      [-89.62513, 35.28303],\n      [-89.61874, 35.28637],\n      [-89.61663, 35.28741],\n      [-89.61531, 35.28822],\n      [-89.61209, 35.29037],\n      [-89.60114, 35.2983],\n      [-89.60018, 35.29896],\n      [-89.59905, 35.2998],\n      [-89.59791, 35.30063],\n      [-89.59316, 35.30403],\n      [-89.59276, 35.30432],\n      [-89.58439, 35.31037],\n      [-89.58397, 35.31066],\n      [-89.5821, 35.31202],\n      [-89.5816, 35.31238],\n      [-89.56179, 35.32669],\n      [-89.55699, 35.33011],\n      [-89.55523, 35.33131],\n      [-89.55346, 35.33242],\n      [-89.54946, 35.33445],\n      [-89.54908, 35.33464],\n      [-89.54472, 35.33664],\n      [-89.53264, 35.34224],\n      [-89.53209, 35.34247],\n      [-89.52168, 35.34728],\n      [-89.51605, 35.34988],\n      [-89.47793, 35.36746],\n      [-89.47161, 35.37039],\n      [-89.46924, 35.37142],\n      [-89.46872, 35.37164],\n      [-89.4682, 35.37185],\n      [-89.46729, 35.3722],\n      [-89.4653, 35.37288],\n      [-89.45872, 35.37493],\n      [-89.4522, 35.3769],\n      [-89.43412, 35.38238],\n      [-89.4323, 35.38293],\n      [-89.42473, 35.38542],\n      [-89.42295, 35.38614],\n      [-89.42075, 35.38707],\n      [-89.41688, 35.38911],\n      [-89.41441, 35.39057],\n      [-89.40951, 35.3936],\n      [-89.3987, 35.40027],\n      [-89.39141, 35.40478],\n      [-89.37863, 35.41268],\n      [-89.36428, 35.4215],\n      [-89.36381, 35.42177],\n      [-89.35713, 35.42592],\n      [-89.34239, 35.43501],\n      [-89.34108, 35.43579],\n      [-89.33265, 35.44101],\n      [-89.32651, 35.44498],\n      [-89.32278, 35.44754],\n      [-89.31858, 35.45041],\n      [-89.31581, 35.45226],\n      [-89.31413, 35.45327],\n      [-89.31288, 35.45403],\n      [-89.30752, 35.45725],\n      [-89.29797, 35.46295],\n      [-89.29166, 35.46671],\n      [-89.28764, 35.46912],\n      [-89.28142, 35.47286],\n      [-89.27846, 35.47459],\n      [-89.27696, 35.4757],\n      [-89.27596, 35.47665],\n      [-89.27493, 35.47788],\n      [-89.27443, 35.4786],\n      [-89.27384, 35.47948],\n      [-89.27323, 35.4809],\n      [-89.27287, 35.48179],\n      [-89.27179, 35.48654],\n      [-89.27134, 35.48813],\n      [-89.27065, 35.49022],\n      [-89.26922, 35.49455],\n      [-89.26788, 35.49875],\n      [-89.26649, 35.50303],\n      [-89.26586, 35.50484],\n      [-89.26565, 35.50548],\n      [-89.26432, 35.50952],\n      [-89.26418, 35.51001],\n      [-89.26333, 35.51256],\n      [-89.26297, 35.51361],\n      [-89.25957, 35.52404],\n      [-89.25925, 35.52496],\n      [-89.25815, 35.52838],\n      [-89.2568, 35.53247],\n      [-89.25648, 35.53345],\n      [-89.25589, 35.53457],\n      [-89.25531, 35.5353],\n      [-89.25458, 35.53598],\n      [-89.25366, 35.53662],\n      [-89.25298, 35.53697],\n      [-89.25237, 35.53722],\n      [-89.25207, 35.5373],\n      [-89.25064, 35.53766],\n      [-89.25023, 35.53774],\n      [-89.24628, 35.53864],\n      [-89.24577, 35.53875],\n      [-89.23783, 35.54045],\n      [-89.22453, 35.54334],\n      [-89.2227, 35.54398],\n      [-89.20616, 35.55045],\n      [-89.19965, 35.55297],\n      [-89.19405, 35.55523],\n      [-89.19225, 35.55589],\n      [-89.1913, 35.55622],\n      [-89.18679, 35.55755],\n      [-89.1751, 35.561],\n      [-89.17098, 35.5621],\n      [-89.15426, 35.56708],\n      [-89.12986, 35.57426],\n      [-89.12029, 35.57709],\n      [-89.11883, 35.57755],\n      [-89.10278, 35.58232],\n      [-89.09967, 35.58321],\n      [-89.09632, 35.58413],\n      [-89.0946, 35.58463],\n      [-89.09013, 35.58599],\n      [-89.08293, 35.58812],\n      [-89.07281, 35.59107],\n      [-89.06077, 35.59462],\n      [-89.05874, 35.59531],\n      [-89.05704, 35.59595],\n      [-89.05215, 35.59788],\n      [-89.03483, 35.60469],\n      [-89.02655, 35.60792],\n      [-89.02096, 35.61011],\n      [-89.01742, 35.61141],\n      [-89.00414, 35.61562],\n      [-89.00006, 35.61698],\n      [-88.99753, 35.61779],\n      [-88.99225, 35.61948],\n      [-88.9823, 35.62266],\n      [-88.98022, 35.62333],\n      [-88.97434, 35.62521],\n      [-88.96342, 35.62872],\n      [-88.95239, 35.63205],\n      [-88.94856, 35.63317],\n      [-88.94518, 35.63414],\n      [-88.93648, 35.63673],\n      [-88.92463, 35.64013],\n      [-88.91785, 35.64207],\n      [-88.90009, 35.6472],\n      [-88.89894, 35.64754],\n      [-88.89509, 35.64873],\n      [-88.89026, 35.65053],\n      [-88.8889, 35.65107],\n      [-88.87697, 35.65569],\n      [-88.87661, 35.65583],\n      [-88.87529, 35.65638],\n      [-88.87453, 35.65669],\n      [-88.8738, 35.65699],\n      [-88.87063, 35.65821],\n      [-88.85766, 35.66243],\n      [-88.85451, 35.66345],\n      [-88.85373, 35.6637],\n      [-88.85054, 35.66474],\n      [-88.83764, 35.66892],\n      [-88.8365, 35.66929],\n      [-88.83591, 35.66946],\n      [-88.83551, 35.66956],\n      [-88.83488, 35.66971],\n      [-88.83389, 35.66991],\n      [-88.83015, 35.67054],\n      [-88.82987, 35.67059],\n      [-88.82962, 35.67063],\n      [-88.82937, 35.67067],\n      [-88.82605, 35.67124],\n      [-88.82336, 35.6717],\n      [-88.81373, 35.67334],\n      [-88.80608, 35.67465],\n      [-88.8024, 35.67529],\n      [-88.79871, 35.67592],\n      [-88.79809, 35.67602],\n      [-88.79006, 35.67741],\n      [-88.78969, 35.67748],\n      [-88.78756, 35.67783],\n      [-88.77302, 35.68033],\n      [-88.77211, 35.68045],\n      [-88.77113, 35.68054],\n      [-88.77023, 35.68058],\n      [-88.74542, 35.68084],\n      [-88.74226, 35.68091],\n      [-88.73966, 35.68093],\n      [-88.73733, 35.68099],\n      [-88.73607, 35.68107],\n      [-88.73475, 35.68126],\n      [-88.73335, 35.68155],\n      [-88.73125, 35.68213],\n      [-88.72989, 35.6827],\n      [-88.71869, 35.68759],\n      [-88.71267, 35.69001],\n      [-88.70715, 35.69215],\n      [-88.68872, 35.69933],\n      [-88.67936, 35.70296],\n      [-88.67055, 35.70638],\n      [-88.66619, 35.70802],\n      [-88.66289, 35.70905],\n      [-88.65042, 35.71292],\n      [-88.63715, 35.71707],\n      [-88.6309, 35.71902],\n      [-88.62497, 35.72084],\n      [-88.61769, 35.7231],\n      [-88.61014, 35.72542],\n      [-88.60725, 35.7263],\n      [-88.60166, 35.72805],\n      [-88.59911, 35.72898],\n      [-88.59648, 35.73017],\n      [-88.59207, 35.73245],\n      [-88.58558, 35.73591],\n      [-88.57449, 35.74179],\n      [-88.5729, 35.7426],\n      [-88.57004, 35.74384],\n      [-88.56832, 35.74445],\n      [-88.56689, 35.7449],\n      [-88.56548, 35.74531],\n      [-88.56373, 35.74575],\n      [-88.55824, 35.74675],\n      [-88.5487, 35.74838],\n      [-88.54021, 35.74985],\n      [-88.53424, 35.75087],\n      [-88.52431, 35.7526],\n      [-88.51671, 35.7539],\n      [-88.50952, 35.75515],\n      [-88.50791, 35.75541],\n      [-88.50532, 35.75593],\n      [-88.4974, 35.75795],\n      [-88.49475, 35.75862],\n      [-88.48771, 35.7604],\n      [-88.47471, 35.76372],\n      [-88.47093, 35.76469],\n      [-88.46568, 35.76601],\n      [-88.45022, 35.76997],\n      [-88.44206, 35.77201],\n      [-88.43877, 35.77284],\n      [-88.43517, 35.7739],\n      [-88.43127, 35.77532],\n      [-88.41643, 35.78087],\n      [-88.4091, 35.78364],\n      [-88.40128, 35.78653],\n      [-88.39844, 35.78755],\n      [-88.39654, 35.78816],\n      [-88.39542, 35.78845],\n      [-88.38811, 35.78968],\n      [-88.38544, 35.79016],\n      [-88.3823, 35.79067],\n      [-88.3813, 35.7909],\n      [-88.38005, 35.79125],\n      [-88.37836, 35.79187],\n      [-88.37348, 35.79373],\n      [-88.36471, 35.79711],\n      [-88.36268, 35.79779],\n      [-88.36073, 35.79831],\n      [-88.35858, 35.7988],\n      [-88.35245, 35.79968],\n      [-88.34728, 35.80039],\n      [-88.34507, 35.80069],\n      [-88.3302, 35.80283],\n      [-88.32965, 35.8029],\n      [-88.32522, 35.8035],\n      [-88.32314, 35.80381],\n      [-88.32077, 35.80426],\n      [-88.31864, 35.8049],\n      [-88.31615, 35.80576],\n      [-88.30988, 35.80798],\n      [-88.30779, 35.80863],\n      [-88.30574, 35.80919],\n      [-88.3031, 35.80981],\n      [-88.30015, 35.81044],\n      [-88.29701, 35.81116],\n      [-88.29386, 35.81186],\n      [-88.28477, 35.8139],\n      [-88.27898, 35.81522],\n      [-88.27408, 35.81634],\n      [-88.26964, 35.81734],\n      [-88.26696, 35.81793],\n      [-88.26582, 35.8182],\n      [-88.26427, 35.81846],\n      [-88.26304, 35.81857],\n      [-88.26057, 35.81863],\n      [-88.25761, 35.81839],\n      [-88.25629, 35.81826],\n      [-88.2483, 35.81746],\n      [-88.24466, 35.8171],\n      [-88.2362, 35.81619],\n      [-88.22861, 35.81545],\n      [-88.22003, 35.81459],\n      [-88.21636, 35.81436],\n      [-88.21279, 35.81425],\n      [-88.20929, 35.81437],\n      [-88.20572, 35.81467],\n      [-88.19809, 35.81577],\n      [-88.19213, 35.81666],\n      [-88.1885, 35.81722],\n      [-88.17903, 35.81858],\n      [-88.17809, 35.81872],\n      [-88.17766, 35.81879],\n      [-88.17191, 35.81969],\n      [-88.16998, 35.81986],\n      [-88.16765, 35.81989],\n      [-88.15208, 35.81865],\n      [-88.14939, 35.81853],\n      [-88.14799, 35.81861],\n      [-88.14673, 35.81874],\n      [-88.14419, 35.81916],\n      [-88.1372, 35.82098],\n      [-88.13161, 35.82241],\n      [-88.12586, 35.82392],\n      [-88.12169, 35.82499],\n      [-88.11825, 35.82591],\n      [-88.11511, 35.82671],\n      [-88.10981, 35.82811],\n      [-88.10754, 35.82886],\n      [-88.10537, 35.82988],\n      [-88.10311, 35.83114],\n      [-88.10001, 35.83278],\n      [-88.08859, 35.83896],\n      [-88.08247, 35.84226],\n      [-88.0744, 35.84662],\n      [-88.0594, 35.8547],\n      [-88.05418, 35.85752],\n      [-88.04929, 35.86016],\n      [-88.03785, 35.86634],\n      [-88.03532, 35.86767],\n      [-88.03345, 35.86867],\n      [-88.03218, 35.86922],\n      [-88.031, 35.86961],\n      [-88.02995, 35.86995],\n      [-88.02784, 35.87039],\n      [-88.02624, 35.8706],\n      [-88.02435, 35.87072],\n      [-88.02153, 35.87062],\n      [-88.00012, 35.86946],\n      [-87.99011, 35.86889],\n      [-87.98242, 35.86847],\n      [-87.98057, 35.86842],\n      [-87.9761, 35.86853],\n      [-87.97166, 35.86859],\n      [-87.96984, 35.86859],\n      [-87.96608, 35.8686],\n      [-87.96429, 35.86865],\n      [-87.96261, 35.86882],\n      [-87.95993, 35.86934],\n      [-87.95767, 35.86978],\n      [-87.95584, 35.87001],\n      [-87.95419, 35.87008],\n      [-87.95182, 35.87003],\n      [-87.94988, 35.8698],\n      [-87.94786, 35.86937],\n      [-87.9454, 35.86861],\n      [-87.93691, 35.8661],\n      [-87.93541, 35.86568],\n      [-87.93439, 35.86547],\n      [-87.93325, 35.86537],\n      [-87.93203, 35.86548],\n      [-87.92962, 35.86592],\n      [-87.9259, 35.86659],\n      [-87.92466, 35.86673],\n      [-87.92273, 35.8667],\n      [-87.92051, 35.86656],\n      [-87.91869, 35.8664],\n      [-87.91692, 35.86599],\n      [-87.9138, 35.86461],\n      [-87.91199, 35.86399],\n      [-87.91083, 35.86378],\n      [-87.9095, 35.86369],\n      [-87.90826, 35.86365],\n      [-87.90776, 35.86371],\n      [-87.90751, 35.86375],\n      [-87.90323, 35.86439],\n      [-87.90094, 35.8646],\n      [-87.89867, 35.86467],\n      [-87.89445, 35.86459],\n      [-87.89222, 35.86467],\n      [-87.89031, 35.86493],\n      [-87.88865, 35.86527],\n      [-87.88651, 35.86589],\n      [-87.88178, 35.86749],\n      [-87.88039, 35.86794],\n      [-87.87901, 35.86827],\n      [-87.87755, 35.86845],\n      [-87.87599, 35.86849],\n      [-87.87075, 35.86822],\n      [-87.86944, 35.86833],\n      [-87.86823, 35.86855],\n      [-87.86717, 35.86882],\n      [-87.86641, 35.8691],\n      [-87.86605, 35.86927],\n      [-87.86549, 35.86954],\n      [-87.86508, 35.86973],\n      [-87.86206, 35.8716],\n      [-87.85946, 35.87313],\n      [-87.85795, 35.87401],\n      [-87.85644, 35.87479],\n      [-87.85505, 35.87538],\n      [-87.85225, 35.87633],\n      [-87.85074, 35.8769],\n      [-87.84928, 35.87755],\n      [-87.84737, 35.87868],\n      [-87.84518, 35.88015],\n      [-87.84385, 35.8808],\n      [-87.84223, 35.88127],\n      [-87.84082, 35.8815],\n      [-87.83974, 35.88154],\n      [-87.83937, 35.88154],\n      [-87.83885, 35.88154],\n      [-87.83511, 35.88152],\n      [-87.83294, 35.88154],\n      [-87.82469, 35.88162],\n      [-87.81297, 35.8817],\n      [-87.81113, 35.88165],\n      [-87.8095, 35.88149],\n      [-87.80769, 35.88114],\n      [-87.80503, 35.88045],\n      [-87.8, 35.87914],\n      [-87.79875, 35.87889],\n      [-87.79772, 35.87878],\n      [-87.79719, 35.87875],\n      [-87.79494, 35.87883],\n      [-87.78257, 35.88095],\n      [-87.77376, 35.88251],\n      [-87.76704, 35.8837],\n      [-87.76477, 35.88376],\n      [-87.76248, 35.88334],\n      [-87.7611, 35.88284],\n      [-87.75341, 35.87953],\n      [-87.75102, 35.87853],\n      [-87.74952, 35.87799],\n      [-87.74798, 35.87764],\n      [-87.74621, 35.87731],\n      [-87.74154, 35.87678],\n      [-87.73126, 35.87569],\n      [-87.7142, 35.87386],\n      [-87.71262, 35.87377],\n      [-87.71021, 35.8739],\n      [-87.70875, 35.87413],\n      [-87.70697, 35.87457],\n      [-87.70611, 35.87482],\n      [-87.70407, 35.87569],\n      [-87.69848, 35.87862],\n      [-87.69306, 35.88149],\n      [-87.69173, 35.88218],\n      [-87.68982, 35.88296],\n      [-87.68767, 35.88355],\n      [-87.68575, 35.88385],\n      [-87.68356, 35.88398],\n      [-87.66987, 35.88449],\n      [-87.66724, 35.88469],\n      [-87.66543, 35.885],\n      [-87.66362, 35.88543],\n      [-87.66091, 35.88628],\n      [-87.65743, 35.88764],\n      [-87.65673, 35.88793],\n      [-87.65438, 35.8889],\n      [-87.64448, 35.89294],\n      [-87.64372, 35.89325],\n      [-87.6422, 35.89383],\n      [-87.64186, 35.89397],\n      [-87.64012, 35.89472],\n      [-87.63845, 35.89555],\n      [-87.63807, 35.89574],\n      [-87.63684, 35.89647],\n      [-87.63588, 35.89704],\n      [-87.63071, 35.90002],\n      [-87.6247, 35.90349],\n      [-87.61852, 35.90709],\n      [-87.61616, 35.90863],\n      [-87.61427, 35.9101],\n      [-87.60904, 35.91439],\n      [-87.60682, 35.91621],\n      [-87.60457, 35.918],\n      [-87.6003, 35.92153],\n      [-87.59828, 35.92316],\n      [-87.59705, 35.924],\n      [-87.59581, 35.92469],\n      [-87.59437, 35.92538],\n      [-87.59249, 35.92607],\n      [-87.59115, 35.92646],\n      [-87.58786, 35.9272],\n      [-87.58697, 35.9275],\n      [-87.58617, 35.92788],\n      [-87.58514, 35.92847],\n      [-87.58396, 35.92937],\n      [-87.58298, 35.93049],\n      [-87.58218, 35.9317],\n      [-87.58092, 35.93357],\n      [-87.57972, 35.93465],\n      [-87.57884, 35.93531],\n      [-87.57779, 35.93581],\n      [-87.57637, 35.93632],\n      [-87.57382, 35.9369],\n      [-87.57226, 35.93743],\n      [-87.57095, 35.93808],\n      [-87.56992, 35.93882],\n      [-87.5687, 35.93993],\n      [-87.56742, 35.94158],\n      [-87.56621, 35.94284],\n      [-87.56498, 35.94399],\n      [-87.5634, 35.94511],\n      [-87.56037, 35.94698],\n      [-87.55829, 35.94833],\n      [-87.55704, 35.94933],\n      [-87.55588, 35.95041],\n      [-87.55483, 35.95172],\n      [-87.55403, 35.95287],\n      [-87.55226, 35.95623],\n      [-87.55082, 35.95873],\n      [-87.55029, 35.95947],\n      [-87.54982, 35.95999],\n      [-87.5494, 35.96045],\n      [-87.549, 35.96086],\n      [-87.54859, 35.96128],\n      [-87.54763, 35.96212],\n      [-87.54628, 35.96307],\n      [-87.54483, 35.96393],\n      [-87.54374, 35.96447],\n      [-87.5425, 35.96501],\n      [-87.53996, 35.96586],\n      [-87.5387, 35.96636],\n      [-87.53747, 35.96694],\n      [-87.53547, 35.96807],\n      [-87.53426, 35.96892],\n      [-87.53307, 35.96991],\n      [-87.53191, 35.9708],\n      [-87.53088, 35.97153],\n      [-87.53007, 35.97202],\n      [-87.52792, 35.97309],\n      [-87.52648, 35.97367],\n      [-87.52483, 35.97413],\n      [-87.51618, 35.97634],\n      [-87.50587, 35.97886],\n      [-87.50516, 35.97907],\n      [-87.50444, 35.97929],\n      [-87.50404, 35.97945],\n      [-87.50368, 35.97958],\n      [-87.50302, 35.97984],\n      [-87.50194, 35.98031],\n      [-87.50013, 35.9813],\n      [-87.49799, 35.98282],\n      [-87.49589, 35.98455],\n      [-87.49384, 35.98621],\n      [-87.49287, 35.98692],\n      [-87.49148, 35.98772],\n      [-87.4899, 35.98847],\n      [-87.48813, 35.98916],\n      [-87.48519, 35.99026],\n      [-87.47699, 35.99333],\n      [-87.47006, 35.99591],\n      [-87.46894, 35.99626],\n      [-87.46761, 35.99662],\n      [-87.46666, 35.99685],\n      [-87.465, 35.9971],\n      [-87.4634, 35.99723],\n      [-87.46194, 35.99726],\n      [-87.46048, 35.99721],\n      [-87.45722, 35.99679],\n      [-87.45056, 35.99579],\n      [-87.446, 35.99511],\n      [-87.44278, 35.99466],\n      [-87.44102, 35.99446],\n      [-87.43994, 35.99441],\n      [-87.43884, 35.99439],\n      [-87.43746, 35.99438],\n      [-87.43481, 35.9947],\n      [-87.43298, 35.99508],\n      [-87.43102, 35.99571],\n      [-87.42784, 35.99707],\n      [-87.42294, 35.99937],\n      [-87.41863, 36.00136],\n      [-87.40935, 36.00566],\n      [-87.40796, 36.00618],\n      [-87.40642, 36.00663],\n      [-87.40478, 36.00696],\n      [-87.40329, 36.00716],\n      [-87.40141, 36.00735],\n      [-87.40078, 36.00743],\n      [-87.39938, 36.00759],\n      [-87.39749, 36.00779],\n      [-87.3896, 36.00863],\n      [-87.38692, 36.0091],\n      [-87.38477, 36.00961],\n      [-87.37952, 36.01134],\n      [-87.37451, 36.01313],\n      [-87.37334, 36.01355],\n      [-87.37133, 36.01444],\n      [-87.36797, 36.01609],\n      [-87.36586, 36.0171],\n      [-87.36422, 36.0178],\n      [-87.36217, 36.01841],\n      [-87.36019, 36.01868],\n      [-87.35631, 36.01871],\n      [-87.35291, 36.0187],\n      [-87.34827, 36.01864],\n      [-87.3431, 36.01862],\n      [-87.34176, 36.0187],\n      [-87.33962, 36.01893],\n      [-87.3371, 36.01936],\n      [-87.33532, 36.01964],\n      [-87.33223, 36.02014],\n      [-87.32326, 36.0216],\n      [-87.31305, 36.02313],\n      [-87.30962, 36.02338],\n      [-87.30658, 36.02351],\n      [-87.29783, 36.02371],\n      [-87.29734, 36.02371],\n      [-87.29659, 36.02369],\n      [-87.29228, 36.02359],\n      [-87.29126, 36.02358],\n      [-87.29076, 36.02358],\n      [-87.29033, 36.02359],\n      [-87.28991, 36.0236],\n      [-87.28952, 36.02362],\n      [-87.28913, 36.02365],\n      [-87.28873, 36.02368],\n      [-87.28831, 36.02372],\n      [-87.28781, 36.02378],\n      [-87.28729, 36.02386],\n      [-87.28639, 36.02401],\n      [-87.28527, 36.02421],\n      [-87.28437, 36.02437],\n      [-87.28179, 36.02484],\n      [-87.28134, 36.02491],\n      [-87.28097, 36.02496],\n      [-87.28068, 36.02499],\n      [-87.28036, 36.02502],\n      [-87.28004, 36.02505],\n      [-87.27975, 36.02506],\n      [-87.27943, 36.02506],\n      [-87.27916, 36.02505],\n      [-87.27886, 36.02504],\n      [-87.27857, 36.02502],\n      [-87.27825, 36.02499],\n      [-87.27786, 36.02494],\n      [-87.27752, 36.02489],\n      [-87.27718, 36.02483],\n      [-87.27687, 36.02476],\n      [-87.27659, 36.0247],\n      [-87.27631, 36.02462],\n      [-87.27547, 36.02438],\n      [-87.27078, 36.023],\n      [-87.26587, 36.02157],\n      [-87.26457, 36.02119],\n      [-87.26397, 36.021],\n      [-87.26297, 36.02071],\n      [-87.2622, 36.02047],\n      [-87.26013, 36.01987],\n      [-87.25838, 36.01935],\n      [-87.25744, 36.01905],\n      [-87.25648, 36.01877],\n      [-87.25534, 36.01844],\n      [-87.25462, 36.01823],\n      [-87.25414, 36.0181],\n      [-87.25365, 36.01798],\n      [-87.25307, 36.01785],\n      [-87.25265, 36.01777],\n      [-87.25206, 36.01766],\n      [-87.25153, 36.01757],\n      [-87.25089, 36.01748],\n      [-87.25033, 36.01743],\n      [-87.24972, 36.01737],\n      [-87.24913, 36.01732],\n      [-87.24832, 36.01729],\n      [-87.24753, 36.01728],\n      [-87.24705, 36.01729],\n      [-87.24656, 36.0173],\n      [-87.24605, 36.01733],\n      [-87.2455, 36.01737],\n      [-87.24451, 36.01747],\n      [-87.24414, 36.01751],\n      [-87.24384, 36.01755],\n      [-87.24326, 36.01765],\n      [-87.24281, 36.01773],\n      [-87.24253, 36.01778],\n      [-87.24187, 36.01791],\n      [-87.24072, 36.01816],\n      [-87.23918, 36.01849],\n      [-87.23459, 36.01946],\n      [-87.23398, 36.0196],\n      [-87.23342, 36.01973],\n      [-87.23298, 36.01984],\n      [-87.23262, 36.01994],\n      [-87.2321, 36.0201],\n      [-87.2317, 36.02023],\n      [-87.23123, 36.02039],\n      [-87.23085, 36.02053],\n      [-87.23051, 36.02067],\n      [-87.23004, 36.02086],\n      [-87.22961, 36.02105],\n      [-87.22806, 36.02177],\n      [-87.22628, 36.02261],\n      [-87.22546, 36.02299],\n      [-87.22496, 36.02321],\n      [-87.22452, 36.0234],\n      [-87.22373, 36.02372],\n      [-87.21921, 36.02547],\n      [-87.21847, 36.02577],\n      [-87.21793, 36.026],\n      [-87.21734, 36.02626],\n      [-87.21678, 36.02651],\n      [-87.21624, 36.02677],\n      [-87.21576, 36.027],\n      [-87.2152, 36.02728],\n      [-87.21333, 36.02821],\n      [-87.21146, 36.02915],\n      [-87.21114, 36.0293],\n      [-87.21081, 36.02946],\n      [-87.21049, 36.0296],\n      [-87.21017, 36.02971],\n      [-87.20994, 36.02979],\n      [-87.20973, 36.02985],\n      [-87.20943, 36.02993],\n      [-87.20921, 36.02998],\n      [-87.20901, 36.03002],\n      [-87.20884, 36.03004],\n      [-87.20849, 36.03008],\n      [-87.20811, 36.03011],\n      [-87.20774, 36.03012],\n      [-87.20741, 36.03012],\n      [-87.20705, 36.0301],\n      [-87.20671, 36.03007],\n      [-87.20645, 36.03003],\n      [-87.2061, 36.02997],\n      [-87.20578, 36.0299],\n      [-87.20542, 36.0298],\n      [-87.20518, 36.02972],\n      [-87.20485, 36.0296],\n      [-87.20459, 36.02949],\n      [-87.20434, 36.02938],\n      [-87.20372, 36.0291],\n      [-87.20307, 36.02881],\n      [-87.19988, 36.02734],\n      [-87.19915, 36.02701],\n      [-87.19867, 36.02679],\n      [-87.1981, 36.02656],\n      [-87.19757, 36.02635],\n      [-87.19711, 36.02619],\n      [-87.19672, 36.02605],\n      [-87.19626, 36.02589],\n      [-87.19214, 36.02456],\n      [-87.19, 36.02387],\n      [-87.18945, 36.02371],\n      [-87.18909, 36.02361],\n      [-87.18874, 36.02353],\n      [-87.1884, 36.02347],\n      [-87.1881, 36.02342],\n      [-87.18788, 36.0234],\n      [-87.18772, 36.02339],\n      [-87.1876, 36.02337],\n      [-87.18737, 36.02337],\n      [-87.18708, 36.02337],\n      [-87.18684, 36.02337],\n      [-87.18665, 36.02338],\n      [-87.18642, 36.02339],\n      [-87.18615, 36.02342],\n      [-87.1859, 36.02346],\n      [-87.18568, 36.0235],\n      [-87.18538, 36.02356],\n      [-87.18502, 36.02365],\n      [-87.18474, 36.02373],\n      [-87.18444, 36.02383],\n      [-87.18413, 36.02395],\n      [-87.18377, 36.02411],\n      [-87.18329, 36.02435],\n      [-87.18242, 36.02479],\n      [-87.1762, 36.02796],\n      [-87.1718, 36.0302],\n      [-87.17063, 36.0308],\n      [-87.17007, 36.03105],\n      [-87.16905, 36.0315],\n      [-87.16853, 36.03173],\n      [-87.16788, 36.03205],\n      [-87.16714, 36.03242],\n      [-87.16567, 36.03317],\n      [-87.16103, 36.03554],\n      [-87.15869, 36.03673],\n      [-87.15553, 36.03833],\n      [-87.15419, 36.03901],\n      [-87.1512, 36.04054],\n      [-87.15055, 36.04087],\n      [-87.15016, 36.0411],\n      [-87.14976, 36.04134],\n      [-87.14934, 36.0416],\n      [-87.14879, 36.04197],\n      [-87.14837, 36.04227],\n      [-87.14787, 36.04265],\n      [-87.14738, 36.04306],\n      [-87.14704, 36.04335],\n      [-87.14645, 36.04389],\n      [-87.14594, 36.04442],\n      [-87.14548, 36.04493],\n      [-87.14512, 36.04538],\n      [-87.14478, 36.04582],\n      [-87.14446, 36.04626],\n      [-87.14412, 36.04676],\n      [-87.14385, 36.04719],\n      [-87.1434, 36.04795],\n      [-87.14324, 36.04822],\n      [-87.14245, 36.04954],\n      [-87.14025, 36.05318],\n      [-87.13968, 36.05412],\n      [-87.1394, 36.05456],\n      [-87.13909, 36.055],\n      [-87.1388, 36.05539],\n      [-87.13851, 36.05575],\n      [-87.13817, 36.05615],\n      [-87.13785, 36.05651],\n      [-87.13746, 36.05691],\n      [-87.13706, 36.05729],\n      [-87.13669, 36.05765],\n      [-87.13586, 36.05843],\n      [-87.13213, 36.06191],\n      [-87.13158, 36.06243],\n      [-87.1312, 36.06281],\n      [-87.13062, 36.06339],\n      [-87.13007, 36.06399],\n      [-87.12878, 36.06543],\n      [-87.12765, 36.0667],\n      [-87.12576, 36.06881],\n      [-87.12359, 36.07123],\n      [-87.12318, 36.0717],\n      [-87.12296, 36.07194],\n      [-87.12259, 36.07233],\n      [-87.12222, 36.07269],\n      [-87.12184, 36.07304],\n      [-87.12148, 36.07335],\n      [-87.12107, 36.07369],\n      [-87.12058, 36.07406],\n      [-87.12013, 36.07439],\n      [-87.11965, 36.07471],\n      [-87.11933, 36.07492],\n      [-87.11865, 36.07532],\n      [-87.11704, 36.07622],\n      [-87.11409, 36.07788],\n      [-87.11226, 36.07893],\n      [-87.10992, 36.08025],\n      [-87.10953, 36.08047],\n      [-87.10892, 36.08077],\n      [-87.10833, 36.08104],\n      [-87.10783, 36.08126],\n      [-87.10745, 36.08142],\n      [-87.10684, 36.08164],\n      [-87.10637, 36.0818],\n      [-87.10592, 36.08195],\n      [-87.10527, 36.08214],\n      [-87.10466, 36.08229],\n      [-87.10406, 36.08243],\n      [-87.10363, 36.08252],\n      [-87.10309, 36.08262],\n      [-87.1024, 36.08274],\n      [-87.10194, 36.08282],\n      [-87.09814, 36.08344],\n      [-87.09645, 36.08372],\n      [-87.09516, 36.08393],\n      [-87.09433, 36.08407],\n      [-87.09283, 36.08432],\n      [-87.09122, 36.08458],\n      [-87.09041, 36.08471],\n      [-87.08841, 36.08504],\n      [-87.0759, 36.08723],\n      [-87.07217, 36.08765],\n      [-87.06875, 36.08782],\n      [-87.06556, 36.08777],\n      [-87.06304, 36.08761],\n      [-87.06088, 36.0875],\n      [-87.05656, 36.08735],\n      [-87.05353, 36.0871],\n      [-87.05182, 36.08655],\n      [-87.05031, 36.08575],\n      [-87.04863, 36.08474],\n      [-87.04159, 36.08055],\n      [-87.03838, 36.0787],\n      [-87.03641, 36.07795],\n      [-87.03488, 36.07756],\n      [-87.03333, 36.07738],\n      [-87.03315, 36.07735],\n      [-87.03136, 36.07718],\n      [-87.02883, 36.07694],\n      [-87.02724, 36.07682],\n      [-87.02529, 36.07682],\n      [-87.02418, 36.07683],\n      [-87.02057, 36.07692],\n      [-87.01993, 36.07693],\n      [-87.01817, 36.07698],\n      [-87.01597, 36.07696],\n      [-87.00995, 36.07715],\n      [-87.0079, 36.0772],\n      [-87.00429, 36.07736],\n      [-87.00108, 36.07751],\n      [-86.99746, 36.07768],\n      [-86.99481, 36.07784],\n      [-86.99412, 36.07787],\n      [-86.99239, 36.07792],\n      [-86.99052, 36.07794],\n      [-86.98867, 36.07782],\n      [-86.98708, 36.07757],\n      [-86.98505, 36.07701],\n      [-86.98333, 36.0764],\n      [-86.98241, 36.07606],\n      [-86.98114, 36.07561],\n      [-86.97882, 36.0748],\n      [-86.97717, 36.07425],\n      [-86.97547, 36.07392],\n      [-86.97457, 36.07386],\n      [-86.97361, 36.07389],\n      [-86.97268, 36.07399],\n      [-86.9718, 36.07411],\n      [-86.97043, 36.07448],\n      [-86.96916, 36.07499],\n      [-86.96798, 36.07553],\n      [-86.9653, 36.07684],\n      [-86.96009, 36.07938],\n      [-86.9566, 36.08105],\n      [-86.956, 36.08134],\n      [-86.95143, 36.08352],\n      [-86.94982, 36.08427],\n      [-86.94419, 36.08705],\n      [-86.94356, 36.0874],\n      [-86.94252, 36.0881],\n      [-86.94158, 36.08889],\n      [-86.94049, 36.08984],\n      [-86.93986, 36.09056],\n      [-86.9393, 36.09132],\n      [-86.93863, 36.09235],\n      [-86.93793, 36.09374],\n      [-86.93623, 36.09748],\n      [-86.9348, 36.10052],\n      [-86.9341, 36.1017],\n      [-86.93333, 36.10269],\n      [-86.93264, 36.10351],\n      [-86.93182, 36.1043],\n      [-86.93164, 36.10446],\n      [-86.93102, 36.10499],\n      [-86.93026, 36.10564],\n      [-86.92593, 36.10884],\n      [-86.92288, 36.11111],\n      [-86.92241, 36.11145],\n      [-86.91981, 36.1134],\n      [-86.91729, 36.1153],\n      [-86.91507, 36.11696],\n      [-86.91379, 36.11807],\n      [-86.91166, 36.12027],\n      [-86.90905, 36.12305],\n      [-86.90778, 36.12405],\n      [-86.90574, 36.12514],\n      [-86.90336, 36.1263],\n      [-86.90264, 36.12668],\n      [-86.90243, 36.12682],\n      [-86.90195, 36.12716],\n      [-86.90127, 36.12781],\n      [-86.8988, 36.13045],\n      [-86.89826, 36.13106],\n      [-86.89732, 36.13207],\n      [-86.89637, 36.13307],\n      [-86.89548, 36.13389],\n      [-86.89471, 36.13449],\n      [-86.88804, 36.13944],\n      [-86.88521, 36.14154],\n      [-86.88474, 36.1419],\n      [-86.88031, 36.1452],\n      [-86.87683, 36.14771],\n      [-86.87523, 36.14857],\n      [-86.87478, 36.14877],\n      [-86.87362, 36.14921],\n      [-86.87323, 36.14934],\n      [-86.87219, 36.1496],\n      [-86.87123, 36.14982],\n      [-86.87019, 36.15],\n      [-86.86921, 36.15012],\n      [-86.86598, 36.15049],\n      [-86.86488, 36.15067],\n      [-86.86396, 36.15085],\n      [-86.86242, 36.15117],\n      [-86.86186, 36.15129],\n      [-86.85897, 36.15197],\n      [-86.85738, 36.15233],\n      [-86.85603, 36.15262],\n      [-86.85512, 36.1528],\n      [-86.8544, 36.15291],\n      [-86.8537, 36.15303],\n      [-86.85249, 36.1532],\n      [-86.85195, 36.15328],\n      [-86.85056, 36.15344],\n      [-86.8498, 36.15349],\n      [-86.84888, 36.15353],\n      [-86.84835, 36.15355],\n      [-86.84568, 36.1536],\n      [-86.84258, 36.15372],\n      [-86.84199, 36.15374],\n      [-86.83703, 36.15391],\n      [-86.8368, 36.15392],\n      [-86.83612, 36.15393],\n      [-86.83491, 36.15401],\n      [-86.83439, 36.15406],\n      [-86.83307, 36.15426],\n      [-86.83153, 36.1546],\n      [-86.82995, 36.15505],\n      [-86.82862, 36.15542],\n      [-86.82802, 36.1556],\n      [-86.82729, 36.15581],\n      [-86.82602, 36.15617],\n      [-86.82503, 36.15645],\n      [-86.82408, 36.15672],\n      [-86.82334, 36.15706],\n      [-86.82292, 36.15739],\n      [-86.82232, 36.15809],\n      [-86.82183, 36.15898],\n      [-86.82165, 36.15935],\n      [-86.8214, 36.15987],\n      [-86.82124, 36.16012],\n      [-86.82092, 36.16077],\n      [-86.82067, 36.16128],\n      [-86.81995, 36.16267],\n      [-86.81946, 36.16354],\n      [-86.81842, 36.16499],\n      [-86.81804, 36.16537],\n      [-86.81785, 36.16558],\n      [-86.81758, 36.16589],\n      [-86.81703, 36.16648],\n      [-86.81668, 36.16679],\n      [-86.81602, 36.16739],\n      [-86.81531, 36.1679],\n      [-86.81468, 36.16828],\n      [-86.81405, 36.16861],\n      [-86.81338, 36.16888],\n      [-86.81287, 36.16907],\n      [-86.81229, 36.16925],\n      [-86.81212, 36.1693],\n      [-86.8112, 36.16949],\n      [-86.81067, 36.16957],\n      [-86.80998, 36.16967],\n      [-86.80954, 36.16973],\n      [-86.80651, 36.17014],\n      [-86.8054, 36.17034],\n      [-86.80496, 36.17044],\n      [-86.80437, 36.17064],\n      [-86.80376, 36.1709],\n      [-86.80334, 36.17114],\n      [-86.80302, 36.17133],\n      [-86.80283, 36.17145],\n      [-86.80201, 36.17189],\n      [-86.80178, 36.17198],\n      [-86.80149, 36.17205],\n      [-86.80117, 36.1721],\n      [-86.80087, 36.17212],\n      [-86.80055, 36.1721],\n      [-86.8002, 36.17203],\n      [-86.79989, 36.17194],\n      [-86.79933, 36.17169],\n      [-86.79893, 36.17144],\n      [-86.79863, 36.17116],\n      [-86.79844, 36.17097],\n      [-86.7981, 36.17054],\n      [-86.796, 36.16753],\n      [-86.79538, 36.16668],\n      [-86.79489, 36.16597],\n      [-86.79455, 36.16542],\n      [-86.79441, 36.16515],\n      [-86.79428, 36.16491],\n      [-86.79413, 36.16458],\n      [-86.79402, 36.1643],\n      [-86.79397, 36.16412],\n      [-86.7939, 36.16396],\n      [-86.79383, 36.16372],\n      [-86.79372, 36.16326],\n      [-86.79364, 36.16275],\n      [-86.7935, 36.16199],\n      [-86.79339, 36.16143],\n      [-86.79334, 36.16121],\n      [-86.79324, 36.16098],\n      [-86.79312, 36.16071],\n      [-86.79303, 36.16053],\n      [-86.79289, 36.16027],\n      [-86.79267, 36.15992],\n      [-86.79247, 36.15965],\n      [-86.7921, 36.15919],\n      [-86.79144, 36.15843],\n      [-86.79073, 36.1576],\n      [-86.79013, 36.15685],\n      [-86.78983, 36.15647],\n      [-86.78945, 36.15592],\n      [-86.78885, 36.15499],\n      [-86.7884, 36.15431],\n      [-86.78797, 36.15364],\n      [-86.78741, 36.15278],\n      [-86.78701, 36.15216],\n      [-86.78674, 36.1518],\n      [-86.78651, 36.15153],\n      [-86.7862, 36.15119],\n      [-86.78599, 36.15101],\n      [-86.78545, 36.1505],\n      [-86.78495, 36.15014],\n      [-86.78465, 36.14994],\n      [-86.78408, 36.1496],\n      [-86.78373, 36.14942],\n      [-86.78314, 36.14914],\n      [-86.78264, 36.14895],\n      [-86.78225, 36.14881],\n      [-86.78172, 36.14864],\n      [-86.78125, 36.14853],\n      [-86.78047, 36.1484],\n      [-86.78015, 36.14837],\n      [-86.77973, 36.14831],\n      [-86.77934, 36.14828],\n      [-86.77881, 36.14826],\n      [-86.77846, 36.14827],\n      [-86.77773, 36.1483],\n      [-86.77702, 36.14837],\n      [-86.77626, 36.14849],\n      [-86.77588, 36.14857],\n      [-86.77517, 36.14875],\n      [-86.77482, 36.14884],\n      [-86.77436, 36.14899],\n      [-86.77412, 36.14907],\n      [-86.77328, 36.14943],\n      [-86.77298, 36.14955],\n      [-86.77279, 36.14962],\n      [-86.77062, 36.15056],\n      [-86.76828, 36.15157],\n      [-86.7645, 36.15322],\n      [-86.76328, 36.1537],\n      [-86.7623, 36.15406],\n      [-86.7615, 36.15431],\n      [-86.76108, 36.15441],\n      [-86.76075, 36.15446],\n      [-86.76035, 36.15446],\n      [-86.75993, 36.15442],\n      [-86.7593, 36.15426],\n      [-86.75808, 36.15389],\n      [-86.75715, 36.15357],\n      [-86.75649, 36.15332],\n      [-86.75605, 36.15315],\n      [-86.75515, 36.15277],\n      [-86.75432, 36.15243],\n      [-86.7535, 36.15211],\n      [-86.75243, 36.1517],\n      [-86.75106, 36.15117],\n      [-86.75071, 36.15103],\n      [-86.74994, 36.15069],\n      [-86.74947, 36.15047],\n      [-86.749, 36.15027],\n      [-86.74802, 36.14974],\n      [-86.74699, 36.14917],\n      [-86.74656, 36.14891],\n      [-86.74593, 36.14852],\n      [-86.74334, 36.14683],\n      [-86.74088, 36.14529],\n      [-86.73926, 36.14434],\n      [-86.73801, 36.14361],\n      [-86.73643, 36.14274],\n      [-86.73516, 36.14205],\n      [-86.73386, 36.14139],\n      [-86.73311, 36.14106],\n      [-86.73226, 36.14072],\n      [-86.73193, 36.1406],\n      [-86.73067, 36.14023],\n      [-86.73, 36.14008],\n      [-86.72943, 36.13999],\n      [-86.72806, 36.13986],\n      [-86.72734, 36.13984],\n      [-86.72538, 36.13989],\n      [-86.72406, 36.13999],\n      [-86.72153, 36.14038],\n      [-86.71763, 36.14098],\n      [-86.7135, 36.14166],\n      [-86.70377, 36.14323],\n      [-86.70154, 36.14358],\n      [-86.69873, 36.144],\n      [-86.69695, 36.14417],\n      [-86.69575, 36.14419],\n      [-86.69434, 36.14416],\n      [-86.693, 36.14403],\n      [-86.69218, 36.14392],\n      [-86.68762, 36.14328],\n      [-86.68547, 36.14297],\n      [-86.68524, 36.14293],\n      [-86.68481, 36.14287],\n      [-86.68201, 36.14243],\n      [-86.6799, 36.14214],\n      [-86.67793, 36.14195],\n      [-86.67685, 36.14187],\n      [-86.67608, 36.14181],\n      [-86.67127, 36.14149],\n      [-86.66961, 36.14138],\n      [-86.66618, 36.14111],\n      [-86.66445, 36.14101],\n      [-86.6603, 36.14079],\n      [-86.65902, 36.14078],\n      [-86.65826, 36.14081],\n      [-86.65704, 36.14091],\n      [-86.65576, 36.14109],\n      [-86.65412, 36.14143],\n      [-86.65288, 36.14175],\n      [-86.65157, 36.14218],\n      [-86.65064, 36.14253],\n      [-86.64962, 36.143],\n      [-86.64864, 36.14353],\n      [-86.64738, 36.14424],\n      [-86.64494, 36.14584],\n      [-86.64162, 36.1478],\n      [-86.63842, 36.14986],\n      [-86.63627, 36.15119],\n      [-86.63391, 36.15271],\n      [-86.63332, 36.15308],\n      [-86.62901, 36.15567],\n      [-86.62464, 36.15846],\n      [-86.6217, 36.16028],\n      [-86.62005, 36.16129],\n      [-86.6192, 36.16181],\n      [-86.61482, 36.16454],\n      [-86.61432, 36.16485],\n      [-86.61351, 36.16533],\n      [-86.61122, 36.16678],\n      [-86.61046, 36.16725],\n      [-86.60982, 36.16758],\n      [-86.60862, 36.16819],\n      [-86.60641, 36.16905],\n      [-86.60543, 36.16933],\n      [-86.60404, 36.16969],\n      [-86.60241, 36.16995],\n      [-86.60145, 36.17006],\n      [-86.59983, 36.17016],\n      [-86.59744, 36.17009],\n      [-86.596, 36.17003],\n      [-86.59425, 36.16997],\n      [-86.59072, 36.16978],\n      [-86.58756, 36.16962],\n      [-86.58438, 36.16948],\n      [-86.58034, 36.16928],\n      [-86.5763, 36.16908],\n      [-86.57147, 36.16884],\n      [-86.57085, 36.16881],\n      [-86.56867, 36.1687],\n      [-86.56186, 36.16838],\n      [-86.55359, 36.16796],\n      [-86.54453, 36.16751],\n      [-86.53465, 36.16702],\n      [-86.53334, 36.16703],\n      [-86.532, 36.16709],\n      [-86.5301, 36.16732],\n      [-86.52747, 36.1679],\n      [-86.52278, 36.16905],\n      [-86.52214, 36.16919],\n      [-86.52157, 36.16934],\n      [-86.51764, 36.17026],\n      [-86.51278, 36.17136],\n      [-86.50688, 36.17209],\n      [-86.50415, 36.17236],\n      [-86.49683, 36.17311],\n      [-86.49115, 36.17371],\n      [-86.46157, 36.17758],\n      [-86.45651, 36.17826],\n      [-86.45164, 36.17891],\n      [-86.41332, 36.18405],\n      [-86.40631, 36.1849],\n      [-86.40533, 36.18496],\n      [-86.39912, 36.18483],\n      [-86.38611, 36.18446],\n      [-86.37516, 36.18419],\n      [-86.36697, 36.18398],\n      [-86.36229, 36.18385],\n      [-86.35616, 36.18368],\n      [-86.34618, 36.18342],\n      [-86.34159, 36.18329],\n      [-86.33812, 36.1832],\n      [-86.33762, 36.18319],\n      [-86.33352, 36.18307],\n      [-86.33231, 36.18301],\n      [-86.32122, 36.18272],\n      [-86.32054, 36.1827],\n      [-86.31524, 36.18257],\n      [-86.30527, 36.18229],\n      [-86.30241, 36.18222],\n      [-86.30192, 36.18221],\n      [-86.30044, 36.18217],\n      [-86.29825, 36.18211],\n      [-86.29592, 36.18221],\n      [-86.29555, 36.18223],\n      [-86.29407, 36.18248],\n      [-86.29001, 36.18338],\n      [-86.28221, 36.18514],\n      [-86.27668, 36.1864],\n      [-86.27265, 36.18728],\n      [-86.27072, 36.18773],\n      [-86.27023, 36.18785],\n      [-86.26948, 36.18802],\n      [-86.26882, 36.18816],\n      [-86.26616, 36.18878],\n      [-86.24748, 36.193],\n      [-86.24649, 36.19318],\n      [-86.24545, 36.19333],\n      [-86.24414, 36.19344],\n      [-86.24324, 36.19348],\n      [-86.23832, 36.19356],\n      [-86.23739, 36.19357],\n      [-86.22866, 36.19373],\n      [-86.22786, 36.19374],\n      [-86.22004, 36.19387],\n      [-86.20467, 36.19413],\n      [-86.20295, 36.19416],\n      [-86.20199, 36.19407],\n      [-86.19986, 36.19387],\n      [-86.19458, 36.19305],\n      [-86.18147, 36.19118],\n      [-86.18091, 36.1911],\n      [-86.17291, 36.1899],\n      [-86.171, 36.18966],\n      [-86.16894, 36.18921],\n      [-86.16807, 36.18897],\n      [-86.16747, 36.18878],\n      [-86.1659, 36.18818],\n      [-86.16167, 36.18625],\n      [-86.15386, 36.18263],\n      [-86.14109, 36.1766],\n      [-86.13068, 36.17173],\n      [-86.1291, 36.17116],\n      [-86.12792, 36.17083],\n      [-86.12667, 36.17066],\n      [-86.12487, 36.17057],\n      [-86.11871, 36.17066],\n      [-86.11699, 36.17048],\n      [-86.11562, 36.17017],\n      [-86.11013, 36.16847],\n      [-86.10425, 36.16674],\n      [-86.1027, 36.16645],\n      [-86.10137, 36.16643],\n      [-86.10008, 36.16653],\n      [-86.0986, 36.16678],\n      [-86.09751, 36.16714],\n      [-86.09418, 36.16851],\n      [-86.08176, 36.17391],\n      [-86.07972, 36.17457],\n      [-86.07801, 36.17487],\n      [-86.07614, 36.17497],\n      [-86.07446, 36.17488],\n      [-86.0727, 36.17461],\n      [-86.07204, 36.17446],\n      [-86.06693, 36.17338],\n      [-86.06545, 36.17301],\n      [-86.06393, 36.17237],\n      [-86.06298, 36.17182],\n      [-86.05996, 36.16986],\n      [-86.05914, 36.16941],\n      [-86.05809, 36.16903],\n      [-86.05698, 36.1687],\n      [-86.05605, 36.16854],\n      [-86.05432, 36.16846],\n      [-86.05294, 36.16858],\n      [-86.05118, 36.16889],\n      [-86.04395, 36.17035],\n      [-86.02758, 36.17372],\n      [-86.02385, 36.1745],\n      [-86.02086, 36.17502],\n      [-86.0176, 36.17554],\n      [-86.01648, 36.1757],\n      [-86.01061, 36.17655],\n      [-86.00719, 36.17705],\n      [-86.00498, 36.17748],\n      [-86.00461, 36.17757],\n      [-86.00383, 36.17775],\n      [-85.99747, 36.17921],\n      [-85.9932, 36.18024],\n      [-85.99187, 36.18044],\n      [-85.99054, 36.18048],\n      [-85.98891, 36.18039],\n      [-85.98222, 36.17984],\n      [-85.9695, 36.17888],\n      [-85.96873, 36.17882],\n      [-85.96267, 36.17833],\n      [-85.96149, 36.17833],\n      [-85.96052, 36.17845],\n      [-85.95623, 36.1793],\n      [-85.95443, 36.17958],\n      [-85.95316, 36.17961],\n      [-85.95179, 36.17953],\n      [-85.95085, 36.17938],\n      [-85.94794, 36.17899],\n      [-85.94732, 36.17889],\n      [-85.94405, 36.17835],\n      [-85.93553, 36.17707],\n      [-85.93472, 36.17693],\n      [-85.92806, 36.17584],\n      [-85.92445, 36.17513],\n      [-85.92222, 36.17452],\n      [-85.92123, 36.17426],\n      [-85.92068, 36.17405],\n      [-85.91796, 36.17301],\n      [-85.91028, 36.16975],\n      [-85.90922, 36.16928],\n      [-85.90394, 36.16698],\n      [-85.90092, 36.16579],\n      [-85.89849, 36.16502],\n      [-85.89535, 36.16424],\n      [-85.89396, 36.16394],\n      [-85.89348, 36.16382],\n      [-85.8907, 36.16316],\n      [-85.88786, 36.1625],\n      [-85.88728, 36.16231],\n      [-85.88675, 36.16209],\n      [-85.88618, 36.16182],\n      [-85.88569, 36.16154],\n      [-85.88471, 36.16078],\n      [-85.88277, 36.15873],\n      [-85.88067, 36.15651],\n      [-85.875, 36.15167],\n      [-85.87015, 36.14762],\n      [-85.86909, 36.14706],\n      [-85.86835, 36.14673],\n      [-85.86782, 36.14657],\n      [-85.86727, 36.14643],\n      [-85.86642, 36.14628],\n      [-85.86567, 36.14621],\n      [-85.86508, 36.14619],\n      [-85.86411, 36.1462],\n      [-85.86257, 36.14621],\n      [-85.85488, 36.14631],\n      [-85.8542, 36.14629],\n      [-85.85366, 36.14624],\n      [-85.85302, 36.14613],\n      [-85.85255, 36.14602],\n      [-85.85217, 36.14589],\n      [-85.85144, 36.14562],\n      [-85.84897, 36.1445],\n      [-85.84437, 36.14247],\n      [-85.84338, 36.14208],\n      [-85.84194, 36.14161],\n      [-85.84159, 36.1415],\n      [-85.84071, 36.14125],\n      [-85.83971, 36.14101],\n      [-85.83845, 36.14075],\n      [-85.83734, 36.14057],\n      [-85.83617, 36.14042],\n      [-85.83414, 36.14023],\n      [-85.83196, 36.14004],\n      [-85.8306, 36.13992],\n      [-85.82028, 36.13898],\n      [-85.81864, 36.13883],\n      [-85.81624, 36.13861],\n      [-85.81272, 36.13832],\n      [-85.81099, 36.13829],\n      [-85.81019, 36.13833],\n      [-85.8089, 36.13843],\n      [-85.80652, 36.13883],\n      [-85.80328, 36.13971],\n      [-85.80296, 36.13982],\n      [-85.80193, 36.14007],\n      [-85.79938, 36.14074],\n      [-85.79796, 36.14096],\n      [-85.79609, 36.14107],\n      [-85.79446, 36.14096],\n      [-85.79296, 36.14072],\n      [-85.7915, 36.14022],\n      [-85.79066, 36.13984],\n      [-85.79003, 36.13952],\n      [-85.78838, 36.13837],\n      [-85.78799, 36.13804],\n      [-85.78625, 36.13643],\n      [-85.78213, 36.13264],\n      [-85.77996, 36.1306],\n      [-85.77884, 36.12911],\n      [-85.77813, 36.12763],\n      [-85.77777, 36.12651],\n      [-85.77755, 36.12524],\n      [-85.77746, 36.12391],\n      [-85.77773, 36.12036],\n      [-85.77766, 36.11959],\n      [-85.77738, 36.11862],\n      [-85.77678, 36.11758],\n      [-85.7761, 36.11665],\n      [-85.77492, 36.11561],\n      [-85.77193, 36.1129],\n      [-85.7714, 36.11217],\n      [-85.77075, 36.11101],\n      [-85.76977, 36.10921],\n      [-85.76912, 36.10841],\n      [-85.76826, 36.10775],\n      [-85.76648, 36.10673],\n      [-85.76517, 36.10607],\n      [-85.76432, 36.10579],\n      [-85.7623, 36.10533],\n      [-85.76009, 36.105],\n      [-85.75723, 36.10458],\n      [-85.75565, 36.1042],\n      [-85.75221, 36.10337],\n      [-85.74994, 36.10269],\n      [-85.74833, 36.10205],\n      [-85.74599, 36.10096],\n      [-85.74384, 36.09978],\n      [-85.73344, 36.09385],\n      [-85.72799, 36.09078],\n      [-85.72687, 36.09029],\n      [-85.72642, 36.09014],\n      [-85.72591, 36.09002],\n      [-85.72531, 36.08992],\n      [-85.72478, 36.08986],\n      [-85.72432, 36.08984],\n      [-85.72383, 36.08985],\n      [-85.72329, 36.0899],\n      [-85.72275, 36.08999],\n      [-85.72236, 36.09008],\n      [-85.72168, 36.09026],\n      [-85.72052, 36.09074],\n      [-85.71983, 36.09123],\n      [-85.71801, 36.09279],\n      [-85.71533, 36.09506],\n      [-85.71395, 36.09614],\n      [-85.71187, 36.09754],\n      [-85.70956, 36.09888],\n      [-85.70473, 36.10151],\n      [-85.693, 36.10809],\n      [-85.68962, 36.10996],\n      [-85.68874, 36.11052],\n      [-85.6882, 36.11094],\n      [-85.68726, 36.11184],\n      [-85.68662, 36.11278],\n      [-85.68611, 36.11365],\n      [-85.68578, 36.11449],\n      [-85.68556, 36.1153],\n      [-85.68512, 36.11919],\n      [-85.68481, 36.12011],\n      [-85.6843, 36.12134],\n      [-85.68372, 36.12223],\n      [-85.6828, 36.12342],\n      [-85.68185, 36.12422],\n      [-85.68037, 36.12519],\n      [-85.67917, 36.12573],\n      [-85.67728, 36.12635],\n      [-85.66949, 36.12862],\n      [-85.65861, 36.13183],\n      [-85.64928, 36.13469],\n      [-85.6488, 36.13482],\n      [-85.64563, 36.13557],\n      [-85.6428, 36.13602],\n      [-85.63761, 36.13647],\n      [-85.63234, 36.13706],\n      [-85.62897, 36.13736],\n      [-85.62831, 36.13742],\n      [-85.62511, 36.13774],\n      [-85.62248, 36.13793],\n      [-85.61823, 36.13836],\n      [-85.61583, 36.13873],\n      [-85.61332, 36.13923],\n      [-85.60943, 36.13996],\n      [-85.60617, 36.14037],\n      [-85.60336, 36.14053],\n      [-85.60124, 36.14051],\n      [-85.59531, 36.1402],\n      [-85.58841, 36.13982],\n      [-85.57484, 36.13907],\n      [-85.57229, 36.1388],\n      [-85.57042, 36.1384],\n      [-85.56815, 36.13769],\n      [-85.56628, 36.13714],\n      [-85.56596, 36.13703],\n      [-85.56186, 36.13576],\n      [-85.56012, 36.13535],\n      [-85.55819, 36.13512],\n      [-85.55665, 36.13503],\n      [-85.55399, 36.1351],\n      [-85.54976, 36.13543],\n      [-85.54598, 36.13573],\n      [-85.54289, 36.13588],\n      [-85.53661, 36.13595],\n      [-85.5344, 36.13603],\n      [-85.53321, 36.13603],\n      [-85.5269, 36.13614],\n      [-85.52335, 36.13614],\n      [-85.51759, 36.13625],\n      [-85.51579, 36.1362],\n      [-85.50691, 36.13539],\n      [-85.50552, 36.1353],\n      [-85.50336, 36.13522],\n      [-85.5025, 36.1352],\n      [-85.50137, 36.13522],\n      [-85.49938, 36.13527],\n      [-85.49734, 36.13531],\n      [-85.4929, 36.1355],\n      [-85.49105, 36.13543],\n      [-85.48562, 36.13497],\n      [-85.48469, 36.13488],\n      [-85.48135, 36.13457],\n      [-85.47889, 36.13446],\n      [-85.47659, 36.13443],\n      [-85.47473, 36.13453],\n      [-85.47427, 36.13455],\n      [-85.47179, 36.13484],\n      [-85.47099, 36.13493],\n      [-85.46331, 36.13588],\n      [-85.46067, 36.13612],\n      [-85.45902, 36.13618],\n      [-85.45741, 36.13613],\n      [-85.45448, 36.136],\n      [-85.45269, 36.13594],\n      [-85.4509, 36.13599],\n      [-85.44918, 36.13632],\n      [-85.44652, 36.13709],\n      [-85.4419, 36.1384],\n      [-85.43899, 36.13918],\n      [-85.4364, 36.1396],\n      [-85.43114, 36.13982],\n      [-85.42852, 36.13994],\n      [-85.42722, 36.14],\n      [-85.42639, 36.14004],\n      [-85.42494, 36.1401],\n      [-85.42398, 36.14021],\n      [-85.42312, 36.14038],\n      [-85.42243, 36.14057],\n      [-85.42181, 36.1408],\n      [-85.42115, 36.14109],\n      [-85.42045, 36.14148],\n      [-85.41983, 36.14194],\n      [-85.41704, 36.14412],\n      [-85.41644, 36.14453],\n      [-85.41574, 36.14493],\n      [-85.41501, 36.1453],\n      [-85.4142, 36.14565],\n      [-85.41332, 36.14597],\n      [-85.4124, 36.14618],\n      [-85.41141, 36.14639],\n      [-85.41012, 36.14649],\n      [-85.40892, 36.14649],\n      [-85.40794, 36.14642],\n      [-85.4069, 36.14625],\n      [-85.40599, 36.14604],\n      [-85.39663, 36.14311],\n      [-85.39395, 36.14222],\n      [-85.39183, 36.14164],\n      [-85.39011, 36.14139],\n      [-85.38201, 36.14155],\n      [-85.38023, 36.14168],\n      [-85.37945, 36.14181],\n      [-85.3785, 36.14208],\n      [-85.37497, 36.14331],\n      [-85.37383, 36.14368],\n      [-85.3728, 36.14388],\n      [-85.37185, 36.14395],\n      [-85.37104, 36.1439],\n      [-85.37025, 36.1438],\n      [-85.36954, 36.14363],\n      [-85.3685, 36.14325],\n      [-85.36782, 36.1429],\n      [-85.36721, 36.14245],\n      [-85.36669, 36.14196],\n      [-85.3663, 36.14153],\n      [-85.36593, 36.14097],\n      [-85.36504, 36.13935],\n      [-85.36467, 36.13868],\n      [-85.36422, 36.13802],\n      [-85.36378, 36.13752],\n      [-85.36202, 36.13566],\n      [-85.36146, 36.13507],\n      [-85.3603, 36.13369],\n      [-85.3596, 36.13283],\n      [-85.35892, 36.1321],\n      [-85.35828, 36.13154],\n      [-85.35759, 36.13104],\n      [-85.35687, 36.13062],\n      [-85.35607, 36.13022],\n      [-85.35523, 36.12989],\n      [-85.35444, 36.12966],\n      [-85.35343, 36.12944],\n      [-85.35264, 36.12935],\n      [-85.35169, 36.12929],\n      [-85.35085, 36.12932],\n      [-85.34978, 36.1294],\n      [-85.34877, 36.1296],\n      [-85.34777, 36.12987],\n      [-85.34713, 36.13009],\n      [-85.34639, 36.13043],\n      [-85.34452, 36.13135],\n      [-85.34188, 36.13263],\n      [-85.34075, 36.13318],\n      [-85.33973, 36.13369],\n      [-85.33858, 36.13425],\n      [-85.33755, 36.1347],\n      [-85.33666, 36.13505],\n      [-85.33571, 36.13535],\n      [-85.33475, 36.13564],\n      [-85.33376, 36.13588],\n      [-85.33301, 36.13602],\n      [-85.33184, 36.1362],\n      [-85.33062, 36.13633],\n      [-85.32963, 36.13638],\n      [-85.32864, 36.1364],\n      [-85.32763, 36.13637],\n      [-85.32666, 36.13631],\n      [-85.32458, 36.13604],\n      [-85.31901, 36.13526],\n      [-85.31788, 36.1351],\n      [-85.31707, 36.13501],\n      [-85.31637, 36.13498],\n      [-85.31574, 36.135],\n      [-85.31491, 36.13509],\n      [-85.31425, 36.13524],\n      [-85.3136, 36.13544],\n      [-85.31301, 36.13571],\n      [-85.31256, 36.13594],\n      [-85.31209, 36.13621],\n      [-85.31161, 36.13657],\n      [-85.31125, 36.13689],\n      [-85.30891, 36.13919],\n      [-85.30845, 36.13957],\n      [-85.30801, 36.13988],\n      [-85.30754, 36.14015],\n      [-85.30697, 36.14041],\n      [-85.30648, 36.1406],\n      [-85.30581, 36.14078],\n      [-85.30525, 36.14089],\n      [-85.30464, 36.14096],\n      [-85.30403, 36.14098],\n      [-85.30322, 36.14093],\n      [-85.30254, 36.14083],\n      [-85.30154, 36.14063],\n      [-85.29928, 36.14017],\n      [-85.29773, 36.13985],\n      [-85.29685, 36.13973],\n      [-85.29608, 36.13967],\n      [-85.29529, 36.13966],\n      [-85.29457, 36.1397],\n      [-85.29291, 36.13985],\n      [-85.29124, 36.14003],\n      [-85.29047, 36.14009],\n      [-85.28971, 36.14011],\n      [-85.28882, 36.14006],\n      [-85.28808, 36.13997],\n      [-85.28721, 36.13985],\n      [-85.28653, 36.13977],\n      [-85.28634, 36.13975],\n      [-85.28533, 36.13961],\n      [-85.28397, 36.13944],\n      [-85.28336, 36.13939],\n      [-85.28275, 36.13939],\n      [-85.28216, 36.13942],\n      [-85.28142, 36.1395],\n      [-85.28041, 36.13966],\n      [-85.27863, 36.13993],\n      [-85.27851, 36.13995],\n      [-85.27746, 36.1401],\n      [-85.27662, 36.1402],\n      [-85.27539, 36.14027],\n      [-85.27434, 36.14026],\n      [-85.2734, 36.1402],\n      [-85.2726, 36.14012],\n      [-85.27146, 36.13994],\n      [-85.27001, 36.13959],\n      [-85.26902, 36.13928],\n      [-85.26833, 36.13903],\n      [-85.26726, 36.13856],\n      [-85.26674, 36.1383],\n      [-85.26592, 36.13785],\n      [-85.26475, 36.13711],\n      [-85.26448, 36.13685],\n      [-85.26363, 36.13616],\n      [-85.2631, 36.13568],\n      [-85.26259, 36.13515],\n      [-85.26215, 36.13465],\n      [-85.25927, 36.13079],\n      [-85.25846, 36.12969],\n      [-85.25712, 36.12791],\n      [-85.25506, 36.12506],\n      [-85.25248, 36.12168],\n      [-85.2518, 36.1209],\n      [-85.24997, 36.1192],\n      [-85.24523, 36.11494],\n      [-85.24442, 36.11423],\n      [-85.24375, 36.11364],\n      [-85.24272, 36.11272],\n      [-85.24199, 36.11199],\n      [-85.24139, 36.11122],\n      [-85.24111, 36.11077],\n      [-85.24066, 36.11006],\n      [-85.24019, 36.10886],\n      [-85.23983, 36.10763],\n      [-85.23971, 36.10712],\n      [-85.23908, 36.10478],\n      [-85.23856, 36.1034],\n      [-85.23807, 36.10237],\n      [-85.23748, 36.10136],\n      [-85.23704, 36.10073],\n      [-85.23658, 36.10009],\n      [-85.23628, 36.0997],\n      [-85.23593, 36.09933],\n      [-85.23397, 36.09734],\n      [-85.22988, 36.09321],\n      [-85.22813, 36.09145],\n      [-85.2272, 36.09059],\n      [-85.22605, 36.08961],\n      [-85.22493, 36.08873],\n      [-85.22425, 36.08823],\n      [-85.22365, 36.08781],\n      [-85.2231, 36.08746],\n      [-85.22176, 36.08664],\n      [-85.21244, 36.08104],\n      [-85.21135, 36.08032],\n      [-85.20859, 36.07879],\n      [-85.20782, 36.07833],\n      [-85.20691, 36.07779],\n      [-85.20521, 36.07678],\n      [-85.20377, 36.07593],\n      [-85.203, 36.07549],\n      [-85.20221, 36.07506],\n      [-85.2006, 36.07422],\n      [-85.19839, 36.07312],\n      [-85.19677, 36.07223],\n      [-85.19417, 36.07067],\n      [-85.19349, 36.07022],\n      [-85.19282, 36.06975],\n      [-85.19149, 36.06879],\n      [-85.19031, 36.06782],\n      [-85.18973, 36.06732],\n      [-85.18918, 36.06682],\n      [-85.188, 36.06573],\n      [-85.18684, 36.06457],\n      [-85.1844, 36.06201],\n      [-85.18212, 36.05986],\n      [-85.1807, 36.05857],\n      [-85.1791, 36.05724],\n      [-85.17732, 36.05607],\n      [-85.17615, 36.05536],\n      [-85.17488, 36.05472],\n      [-85.17348, 36.05408],\n      [-85.1725, 36.0537],\n      [-85.1715, 36.05333],\n      [-85.17041, 36.05298],\n      [-85.1693, 36.05267],\n      [-85.16748, 36.05226],\n      [-85.16358, 36.0516],\n      [-85.15865, 36.05079],\n      [-85.15295, 36.04988],\n      [-85.14882, 36.04921],\n      [-85.14562, 36.04865],\n      [-85.14086, 36.04789],\n      [-85.13849, 36.04748],\n      [-85.1361, 36.047],\n      [-85.13055, 36.04585],\n      [-85.12504, 36.04471],\n      [-85.11835, 36.04332],\n      [-85.11634, 36.04275],\n      [-85.11464, 36.04207],\n      [-85.11324, 36.0414],\n      [-85.10952, 36.03958],\n      [-85.10761, 36.03852],\n      [-85.09801, 36.03267],\n      [-85.08801, 36.02654],\n      [-85.08303, 36.0235],\n      [-85.08054, 36.02197],\n      [-85.07808, 36.02037],\n      [-85.06925, 36.01454],\n      [-85.06867, 36.01416],\n      [-85.06811, 36.01375],\n      [-85.0635, 36.01071],\n      [-85.06122, 36.00919],\n      [-85.05888, 36.00769],\n      [-85.05719, 36.00671],\n      [-85.05513, 36.00565],\n      [-85.05493, 36.00555],\n      [-85.04898, 36.00249],\n      [-85.04845, 36.00223],\n      [-85.04268, 35.99914],\n      [-85.04116, 35.99834],\n      [-85.04015, 35.99779],\n      [-85.036, 35.99567],\n      [-85.03544, 35.99538],\n      [-85.03424, 35.99477],\n      [-85.0313, 35.99313],\n      [-85.02643, 35.99059],\n      [-85.02398, 35.98929],\n      [-85.01997, 35.98681],\n      [-85.01671, 35.98465],\n      [-85.01354, 35.98255],\n      [-85.01184, 35.98144],\n      [-85.01137, 35.98113],\n      [-85.00987, 35.98014],\n      [-85.00474, 35.97674],\n      [-85.00078, 35.97413],\n      [-84.99402, 35.96967],\n      [-84.99176, 35.96823],\n      [-84.98985, 35.96692],\n      [-84.98518, 35.96383],\n      [-84.9794, 35.96003],\n      [-84.979, 35.95976],\n      [-84.97827, 35.95932],\n      [-84.97761, 35.95897],\n      [-84.97692, 35.95866],\n      [-84.97622, 35.95838],\n      [-84.97522, 35.95805],\n      [-84.97446, 35.95786],\n      [-84.97341, 35.95765],\n      [-84.97252, 35.95753],\n      [-84.97172, 35.95746],\n      [-84.97068, 35.95742],\n      [-84.96492, 35.95728],\n      [-84.96318, 35.95723],\n      [-84.96261, 35.9572],\n      [-84.96196, 35.95711],\n      [-84.96139, 35.95699],\n      [-84.96079, 35.95681],\n      [-84.96026, 35.9566],\n      [-84.95979, 35.95638],\n      [-84.95609, 35.95442],\n      [-84.95394, 35.9533],\n      [-84.95165, 35.9522],\n      [-84.94972, 35.95136],\n      [-84.94579, 35.94943],\n      [-84.94558, 35.94933],\n      [-84.9442, 35.94866],\n      [-84.94293, 35.94807],\n      [-84.94125, 35.94727],\n      [-84.94003, 35.94667],\n      [-84.93538, 35.94449],\n      [-84.93245, 35.94265],\n      [-84.92965, 35.93979],\n      [-84.92862, 35.93853],\n      [-84.92678, 35.9367],\n      [-84.9235, 35.93332],\n      [-84.91902, 35.92943],\n      [-84.91625, 35.92686],\n      [-84.91477, 35.92571],\n      [-84.91389, 35.92492],\n      [-84.91122, 35.92251],\n      [-84.90744, 35.91915],\n      [-84.90376, 35.9165],\n      [-84.90251, 35.91577],\n      [-84.90151, 35.91537],\n      [-84.89641, 35.91313],\n      [-84.89373, 35.91209],\n      [-84.89282, 35.91174],\n      [-84.89201, 35.91142],\n      [-84.89, 35.91058],\n      [-84.88925, 35.91026],\n      [-84.87963, 35.90624],\n      [-84.87657, 35.90496],\n      [-84.87405, 35.90407],\n      [-84.87333, 35.90377],\n      [-84.87222, 35.9033],\n      [-84.87078, 35.90271],\n      [-84.87021, 35.9025],\n      [-84.86967, 35.90234],\n      [-84.86909, 35.90217],\n      [-84.86852, 35.90199],\n      [-84.86809, 35.90189],\n      [-84.86689, 35.90169],\n      [-84.86631, 35.90162],\n      [-84.8657, 35.90156],\n      [-84.86521, 35.90152],\n      [-84.86472, 35.90151],\n      [-84.86431, 35.90152],\n      [-84.86353, 35.9015],\n      [-84.86251, 35.90154],\n      [-84.86177, 35.90157],\n      [-84.86085, 35.90158],\n      [-84.86026, 35.9016],\n      [-84.8597, 35.90162],\n      [-84.85902, 35.90154],\n      [-84.85864, 35.90146],\n      [-84.85826, 35.90137],\n      [-84.85775, 35.90118],\n      [-84.85728, 35.90097],\n      [-84.8547, 35.8994],\n      [-84.85339, 35.8986],\n      [-84.85271, 35.89819],\n      [-84.85228, 35.89793],\n      [-84.85181, 35.89769],\n      [-84.85138, 35.8975],\n      [-84.85093, 35.89733],\n      [-84.85044, 35.89718],\n      [-84.84994, 35.89707],\n      [-84.84931, 35.89695],\n      [-84.84879, 35.89689],\n      [-84.84757, 35.89678],\n      [-84.84662, 35.89665],\n      [-84.84585, 35.89648],\n      [-84.84509, 35.89619],\n      [-84.84472, 35.89601],\n      [-84.84437, 35.89581],\n      [-84.84382, 35.89541],\n      [-84.84343, 35.89504],\n      [-84.84316, 35.89471],\n      [-84.84255, 35.89372],\n      [-84.84218, 35.89308],\n      [-84.84112, 35.89126],\n      [-84.84044, 35.89025],\n      [-84.83974, 35.88947],\n      [-84.83882, 35.88882],\n      [-84.83829, 35.88853],\n      [-84.83773, 35.88832],\n      [-84.8367, 35.88803],\n      [-84.83388, 35.88759],\n      [-84.82957, 35.88692],\n      [-84.8276, 35.8865],\n      [-84.82625, 35.88613],\n      [-84.82497, 35.88572],\n      [-84.82208, 35.88459],\n      [-84.81919, 35.88343],\n      [-84.81838, 35.88317],\n      [-84.81768, 35.883],\n      [-84.81696, 35.88292],\n      [-84.81654, 35.88287],\n      [-84.81565, 35.88291],\n      [-84.81457, 35.88307],\n      [-84.81376, 35.88333],\n      [-84.8113, 35.88426],\n      [-84.81074, 35.88448],\n      [-84.8082, 35.88543],\n      [-84.80696, 35.8859],\n      [-84.80637, 35.88619],\n      [-84.80581, 35.8865],\n      [-84.80471, 35.88724],\n      [-84.8038, 35.88806],\n      [-84.80297, 35.88885],\n      [-84.80213, 35.88961],\n      [-84.80144, 35.89013],\n      [-84.80094, 35.89045],\n      [-84.79997, 35.89092],\n      [-84.79862, 35.89169],\n      [-84.79801, 35.89217],\n      [-84.79749, 35.89273],\n      [-84.79717, 35.89318],\n      [-84.79691, 35.89365],\n      [-84.7967, 35.89423],\n      [-84.79659, 35.89484],\n      [-84.79642, 35.89612],\n      [-84.7964, 35.89648],\n      [-84.7963, 35.89702],\n      [-84.79613, 35.89753],\n      [-84.79573, 35.8982],\n      [-84.79523, 35.8988],\n      [-84.79482, 35.89917],\n      [-84.7944, 35.89947],\n      [-84.79382, 35.8998],\n      [-84.79323, 35.90006],\n      [-84.79253, 35.90025],\n      [-84.79182, 35.90036],\n      [-84.79106, 35.90041],\n      [-84.79027, 35.90042],\n      [-84.78923, 35.90043],\n      [-84.77662, 35.90048],\n      [-84.77511, 35.90044],\n      [-84.77395, 35.90023],\n      [-84.77316, 35.90001],\n      [-84.77075, 35.89933],\n      [-84.76508, 35.89756],\n      [-84.76213, 35.89665],\n      [-84.76055, 35.89617],\n      [-84.75549, 35.89459],\n      [-84.75402, 35.89413],\n      [-84.75269, 35.89372],\n      [-84.75122, 35.89327],\n      [-84.75016, 35.89295],\n      [-84.74984, 35.89286],\n      [-84.74855, 35.89255],\n      [-84.74731, 35.8923],\n      [-84.74607, 35.89212],\n      [-84.74481, 35.89199],\n      [-84.74253, 35.89184],\n      [-84.74041, 35.89184],\n      [-84.738, 35.89209],\n      [-84.73745, 35.89216],\n      [-84.73585, 35.89243],\n      [-84.73377, 35.89291],\n      [-84.73232, 35.89333],\n      [-84.73094, 35.89375],\n      [-84.73068, 35.89385],\n      [-84.7284, 35.89476],\n      [-84.72733, 35.89513],\n      [-84.7271, 35.89521],\n      [-84.72686, 35.8953],\n      [-84.72403, 35.89628],\n      [-84.72205, 35.89701],\n      [-84.72029, 35.89757],\n      [-84.71851, 35.89792],\n      [-84.71679, 35.89819],\n      [-84.71572, 35.89829],\n      [-84.71463, 35.89836],\n      [-84.71267, 35.89837],\n      [-84.7115, 35.89829],\n      [-84.71029, 35.89818],\n      [-84.70803, 35.89783],\n      [-84.70643, 35.89745],\n      [-84.70488, 35.89698],\n      [-84.70423, 35.89676],\n      [-84.70212, 35.89593],\n      [-84.70121, 35.89545],\n      [-84.69998, 35.89475],\n      [-84.69834, 35.89369],\n      [-84.69755, 35.89304],\n      [-84.69655, 35.89215],\n      [-84.69509, 35.89057],\n      [-84.69344, 35.88873],\n      [-84.69216, 35.88738],\n      [-84.69144, 35.88678],\n      [-84.6907, 35.88632],\n      [-84.6899, 35.88595],\n      [-84.68946, 35.88577],\n      [-84.68895, 35.8856],\n      [-84.68844, 35.88547],\n      [-84.68805, 35.8854],\n      [-84.68748, 35.88532],\n      [-84.68683, 35.88528],\n      [-84.68629, 35.8853],\n      [-84.68564, 35.88536],\n      [-84.68498, 35.88543],\n      [-84.68399, 35.88565],\n      [-84.68313, 35.8859],\n      [-84.68239, 35.88619],\n      [-84.68161, 35.88649],\n      [-84.67911, 35.88774],\n      [-84.67593, 35.8894],\n      [-84.67488, 35.88996],\n      [-84.67446, 35.89023],\n      [-84.6737, 35.89085],\n      [-84.67294, 35.89135],\n      [-84.67249, 35.89162],\n      [-84.67198, 35.89183],\n      [-84.67122, 35.89213],\n      [-84.66951, 35.89272],\n      [-84.66874, 35.893],\n      [-84.66813, 35.89331],\n      [-84.66713, 35.89382],\n      [-84.66652, 35.89412],\n      [-84.66589, 35.89437],\n      [-84.66541, 35.89449],\n      [-84.66495, 35.89457],\n      [-84.66439, 35.89464],\n      [-84.66319, 35.89472],\n      [-84.66199, 35.89483],\n      [-84.66126, 35.895],\n      [-84.66053, 35.8952],\n      [-84.65892, 35.89565],\n      [-84.65776, 35.89586],\n      [-84.65667, 35.89605],\n      [-84.65587, 35.89621],\n      [-84.65516, 35.89638],\n      [-84.65442, 35.89663],\n      [-84.65368, 35.89698],\n      [-84.65285, 35.89739],\n      [-84.65225, 35.89768],\n      [-84.65164, 35.89792],\n      [-84.6509, 35.89816],\n      [-84.65024, 35.89832],\n      [-84.64966, 35.89844],\n      [-84.64911, 35.89851],\n      [-84.64725, 35.89869],\n      [-84.64352, 35.89903],\n      [-84.63905, 35.89942],\n      [-84.63794, 35.89961],\n      [-84.63574, 35.89995],\n      [-84.63424, 35.90021],\n      [-84.63129, 35.90109],\n      [-84.62954, 35.90161],\n      [-84.62853, 35.90202],\n      [-84.62768, 35.90252],\n      [-84.62604, 35.9035],\n      [-84.62537, 35.90379],\n      [-84.62446, 35.90407],\n      [-84.62335, 35.90421],\n      [-84.6223, 35.90433],\n      [-84.62145, 35.90449],\n      [-84.62069, 35.90466],\n      [-84.61973, 35.90499],\n      [-84.6189, 35.90534],\n      [-84.61729, 35.90621],\n      [-84.61474, 35.90765],\n      [-84.61246, 35.90911],\n      [-84.6111, 35.90993],\n      [-84.60946, 35.91087],\n      [-84.60849, 35.91128],\n      [-84.60758, 35.91156],\n      [-84.60643, 35.91184],\n      [-84.60458, 35.91228],\n      [-84.60304, 35.91265],\n      [-84.60237, 35.91279],\n      [-84.60155, 35.91287],\n      [-84.60018, 35.91284],\n      [-84.59769, 35.9127],\n      [-84.59665, 35.91259],\n      [-84.59578, 35.91243],\n      [-84.59535, 35.91233],\n      [-84.59501, 35.91222],\n      [-84.5944, 35.91199],\n      [-84.5935, 35.91162],\n      [-84.59203, 35.91089],\n      [-84.59136, 35.9106],\n      [-84.59064, 35.91039],\n      [-84.5894, 35.91008],\n      [-84.58884, 35.90995],\n      [-84.58682, 35.90951],\n      [-84.58653, 35.90944],\n      [-84.58558, 35.90925],\n      [-84.58478, 35.90915],\n      [-84.58405, 35.90912],\n      [-84.58313, 35.90916],\n      [-84.58163, 35.90927],\n      [-84.58081, 35.9093],\n      [-84.57994, 35.90928],\n      [-84.5791, 35.90914],\n      [-84.57819, 35.90884],\n      [-84.5774, 35.90846],\n      [-84.57673, 35.90793],\n      [-84.57618, 35.9074],\n      [-84.57567, 35.90667],\n      [-84.57481, 35.90507],\n      [-84.57435, 35.90441],\n      [-84.57375, 35.90379],\n      [-84.57306, 35.9033],\n      [-84.57221, 35.90286],\n      [-84.57117, 35.90253],\n      [-84.57013, 35.90237],\n      [-84.56091, 35.90113],\n      [-84.55976, 35.90098],\n      [-84.55637, 35.90052],\n      [-84.55549, 35.90039],\n      [-84.55476, 35.90025],\n      [-84.55411, 35.90003],\n      [-84.55337, 35.89968],\n      [-84.55263, 35.8992],\n      [-84.55211, 35.89873],\n      [-84.55166, 35.89817],\n      [-84.55101, 35.89728],\n      [-84.55066, 35.89684],\n      [-84.55035, 35.89652],\n      [-84.54988, 35.89615],\n      [-84.54933, 35.8958],\n      [-84.54869, 35.89549],\n      [-84.54795, 35.89525],\n      [-84.54725, 35.89509],\n      [-84.54661, 35.89501],\n      [-84.5459, 35.89501],\n      [-84.54522, 35.89507],\n      [-84.54452, 35.89518],\n      [-84.54186, 35.89566],\n      [-84.54113, 35.89578],\n      [-84.54057, 35.89584],\n      [-84.53993, 35.89587],\n      [-84.5393, 35.89585],\n      [-84.53859, 35.89578],\n      [-84.53796, 35.89567],\n      [-84.53726, 35.89551],\n      [-84.53663, 35.89529],\n      [-84.53594, 35.89499],\n      [-84.53512, 35.89459],\n      [-84.53468, 35.89437],\n      [-84.52918, 35.89169],\n      [-84.52653, 35.89039],\n      [-84.52242, 35.88838],\n      [-84.51934, 35.88686],\n      [-84.51418, 35.88429],\n      [-84.51297, 35.88361],\n      [-84.50908, 35.88138],\n      [-84.50868, 35.88113],\n      [-84.50819, 35.88085],\n      [-84.50729, 35.88035],\n      [-84.50496, 35.87907],\n      [-84.50369, 35.87832],\n      [-84.50272, 35.87767],\n      [-84.50187, 35.87697],\n      [-84.49983, 35.87498],\n      [-84.49884, 35.8741],\n      [-84.49795, 35.87353],\n      [-84.49684, 35.87297],\n      [-84.49561, 35.87248],\n      [-84.49452, 35.87216],\n      [-84.49319, 35.8719],\n      [-84.49163, 35.87178],\n      [-84.49015, 35.87185],\n      [-84.48592, 35.87203],\n      [-84.48094, 35.87228],\n      [-84.47676, 35.87247],\n      [-84.47149, 35.87272],\n      [-84.46672, 35.87291],\n      [-84.4594, 35.87324],\n      [-84.45842, 35.87328],\n      [-84.45639, 35.87339],\n      [-84.45502, 35.87339],\n      [-84.45385, 35.87338],\n      [-84.45254, 35.87331],\n      [-84.45104, 35.87316],\n      [-84.45, 35.87301],\n      [-84.44833, 35.8727],\n      [-84.44711, 35.87242],\n      [-84.44536, 35.87194],\n      [-84.44423, 35.87153],\n      [-84.44359, 35.87129],\n      [-84.44178, 35.87054],\n      [-84.44071, 35.87002],\n      [-84.43705, 35.86812],\n      [-84.4344, 35.86673],\n      [-84.43338, 35.86634],\n      [-84.43233, 35.86601],\n      [-84.43124, 35.86579],\n      [-84.42639, 35.86509],\n      [-84.41684, 35.86376],\n      [-84.41569, 35.86357],\n      [-84.41431, 35.86324],\n      [-84.41342, 35.86294],\n      [-84.41151, 35.8621],\n      [-84.41005, 35.86144],\n      [-84.40874, 35.86095],\n      [-84.40749, 35.86058],\n      [-84.40685, 35.86043],\n      [-84.4055, 35.86021],\n      [-84.40423, 35.86008],\n      [-84.40308, 35.86005],\n      [-84.40165, 35.86015],\n      [-84.40057, 35.86028],\n      [-84.39926, 35.86056],\n      [-84.39815, 35.86088],\n      [-84.39701, 35.86129],\n      [-84.39572, 35.86189],\n      [-84.39078, 35.86429],\n      [-84.38704, 35.86612],\n      [-84.38452, 35.86735],\n      [-84.37891, 35.87013],\n      [-84.37355, 35.87271],\n      [-84.37231, 35.87331],\n      [-84.37066, 35.87409],\n      [-84.36612, 35.87626],\n      [-84.36406, 35.87731],\n      [-84.36178, 35.87833],\n      [-84.3565, 35.87991],\n      [-84.35504, 35.88024],\n      [-84.35335, 35.88053],\n      [-84.35178, 35.88073],\n      [-84.35027, 35.88087],\n      [-84.34868, 35.88096],\n      [-84.34716, 35.88099],\n      [-84.34549, 35.88097],\n      [-84.34366, 35.88085],\n      [-84.34179, 35.88067],\n      [-84.33958, 35.88033],\n      [-84.338, 35.87999],\n      [-84.33588, 35.87946],\n      [-84.33481, 35.87914],\n      [-84.33348, 35.8787],\n      [-84.33297, 35.87851],\n      [-84.33221, 35.87822],\n      [-84.32909, 35.87683],\n      [-84.32766, 35.8762],\n      [-84.32464, 35.87484],\n      [-84.32412, 35.8746],\n      [-84.32112, 35.87327],\n      [-84.32034, 35.87289],\n      [-84.32012, 35.87278],\n      [-84.31998, 35.87272],\n      [-84.3191, 35.87234],\n      [-84.31682, 35.87129],\n      [-84.31585, 35.87088],\n      [-84.31262, 35.86977],\n      [-84.31162, 35.86948],\n      [-84.30993, 35.86909],\n      [-84.30793, 35.86877],\n      [-84.30649, 35.86863],\n      [-84.30499, 35.86855],\n      [-84.30346, 35.86853],\n      [-84.30196, 35.86859],\n      [-84.30037, 35.86871],\n      [-84.29976, 35.86876],\n      [-84.29499, 35.86918],\n      [-84.28103, 35.87033],\n      [-84.27477, 35.87087],\n      [-84.26993, 35.87126],\n      [-84.2693, 35.87131],\n      [-84.26861, 35.87136],\n      [-84.26789, 35.87138],\n      [-84.26715, 35.87138],\n      [-84.26629, 35.87133],\n      [-84.26516, 35.87117],\n      [-84.26426, 35.87099],\n      [-84.26318, 35.87069],\n      [-84.26269, 35.87055],\n      [-84.26196, 35.8703],\n      [-84.2604, 35.8698],\n      [-84.25919, 35.86939],\n      [-84.25844, 35.86918],\n      [-84.258, 35.86909],\n      [-84.25735, 35.86899],\n      [-84.25672, 35.86897],\n      [-84.25628, 35.86898],\n      [-84.25551, 35.86906],\n      [-84.25471, 35.86921],\n      [-84.25406, 35.86941],\n      [-84.25355, 35.86963],\n      [-84.25235, 35.87027],\n      [-84.25109, 35.87111],\n      [-84.24998, 35.87177],\n      [-84.2484, 35.87272],\n      [-84.2437, 35.87508],\n      [-84.24281, 35.8755],\n      [-84.24061, 35.87656],\n      [-84.23996, 35.87688],\n      [-84.23613, 35.87871],\n      [-84.23384, 35.87982],\n      [-84.2326, 35.88039],\n      [-84.2323, 35.88054],\n      [-84.22523, 35.88393],\n      [-84.22351, 35.88468],\n      [-84.2221, 35.88522],\n      [-84.221, 35.88566],\n      [-84.21803, 35.88678],\n      [-84.21634, 35.88738],\n      [-84.21508, 35.88781],\n      [-84.21358, 35.88837],\n      [-84.21267, 35.88871],\n      [-84.21199, 35.88896],\n      [-84.21052, 35.8895],\n      [-84.20814, 35.89027],\n      [-84.20659, 35.89072],\n      [-84.20527, 35.89109],\n      [-84.2029, 35.89169],\n      [-84.1961, 35.89338],\n      [-84.19422, 35.89381],\n      [-84.19032, 35.89483],\n      [-84.18558, 35.89599],\n      [-84.18139, 35.89702],\n      [-84.1813, 35.89705],\n      [-84.17863, 35.89772],\n      [-84.17535, 35.89856],\n      [-84.17488, 35.89868],\n      [-84.17172, 35.89944],\n      [-84.17129, 35.89954],\n      [-84.16917, 35.90008],\n      [-84.16415, 35.90134],\n      [-84.16058, 35.90221],\n      [-84.15693, 35.90312],\n      [-84.15382, 35.9039],\n      [-84.15037, 35.90476],\n      [-84.14884, 35.90513],\n      [-84.14644, 35.90574],\n      [-84.14489, 35.90611],\n      [-84.14293, 35.90655],\n      [-84.13907, 35.9074],\n      [-84.13844, 35.90751],\n      [-84.13566, 35.90813],\n      [-84.13224, 35.90888],\n      [-84.12948, 35.90951],\n      [-84.12631, 35.9102],\n      [-84.12456, 35.91058],\n      [-84.1228, 35.91098],\n      [-84.11744, 35.91215],\n      [-84.11663, 35.91232],\n      [-84.11166, 35.9134],\n      [-84.10906, 35.91397],\n      [-84.10751, 35.91431],\n      [-84.10344, 35.91522],\n      [-84.09746, 35.91652],\n      [-84.09655, 35.91674],\n      [-84.09112, 35.91797],\n      [-84.09022, 35.91814],\n      [-84.08215, 35.91991],\n      [-84.07588, 35.9213],\n      [-84.07459, 35.92159],\n      [-84.06957, 35.92269],\n      [-84.06884, 35.92286],\n      [-84.06424, 35.92388],\n      [-84.0639, 35.92395],\n      [-84.05663, 35.92553],\n      [-84.05334, 35.92625],\n      [-84.05235, 35.92647],\n      [-84.05162, 35.92663],\n      [-84.04335, 35.92846],\n      [-84.04256, 35.92863],\n      [-84.03977, 35.92925],\n      [-84.03914, 35.92939],\n      [-84.03717, 35.92982],\n      [-84.03658, 35.92995],\n      [-84.03362, 35.9306],\n      [-84.0321, 35.93093],\n      [-84.03018, 35.93135],\n      [-84.02312, 35.93291],\n      [-84.02256, 35.93303],\n      [-84.01859, 35.9339],\n      [-84.01706, 35.93432],\n      [-84.0164, 35.93454],\n      [-84.01577, 35.93476],\n      [-84.0149, 35.93512],\n      [-84.0143, 35.93538],\n      [-84.0137, 35.93568],\n      [-84.00955, 35.93785],\n      [-84.00883, 35.93823],\n      [-84.00662, 35.93941],\n      [-84.00263, 35.94149],\n      [-84.00213, 35.94175],\n      [-84.00099, 35.94234],\n      [-83.99972, 35.94313],\n      [-83.99907, 35.94358],\n      [-83.99873, 35.94384],\n      [-83.99821, 35.94425],\n      [-83.99757, 35.94477],\n      [-83.99682, 35.94535],\n      [-83.99634, 35.94568],\n      [-83.99575, 35.94607],\n      [-83.99517, 35.94642],\n      [-83.9942, 35.94691],\n      [-83.99338, 35.9473],\n      [-83.99235, 35.94772],\n      [-83.99124, 35.94816],\n      [-83.98906, 35.94883],\n      [-83.98697, 35.94948],\n      [-83.98458, 35.95021],\n      [-83.98379, 35.95047],\n      [-83.98243, 35.95099],\n      [-83.98204, 35.95116],\n      [-83.98106, 35.95161],\n      [-83.97704, 35.95376],\n      [-83.97461, 35.95503],\n      [-83.97274, 35.95594],\n      [-83.97166, 35.9565],\n      [-83.96958, 35.95759],\n      [-83.96852, 35.95811],\n      [-83.96785, 35.95838],\n      [-83.96709, 35.95862],\n      [-83.96632, 35.9588],\n      [-83.96561, 35.95892],\n      [-83.9648, 35.95899],\n      [-83.96418, 35.95903],\n      [-83.96243, 35.95908],\n      [-83.96082, 35.95916],\n      [-83.95999, 35.95926],\n      [-83.959, 35.95948],\n      [-83.95806, 35.95975],\n      [-83.9572, 35.96008],\n      [-83.95559, 35.96085],\n      [-83.95331, 35.96198],\n      [-83.95219, 35.96252],\n      [-83.95121, 35.963],\n      [-83.95049, 35.96329],\n      [-83.94972, 35.96349],\n      [-83.94894, 35.9636],\n      [-83.94834, 35.96362],\n      [-83.94774, 35.96359],\n      [-83.94719, 35.96353],\n      [-83.94645, 35.9634],\n      [-83.94602, 35.96331],\n      [-83.94578, 35.96326],\n      [-83.94538, 35.96318],\n      [-83.94505, 35.96311],\n      [-83.94286, 35.96265],\n      [-83.94255, 35.9626],\n      [-83.94217, 35.96255],\n      [-83.94144, 35.96255],\n      [-83.94081, 35.96262],\n      [-83.94015, 35.96276],\n      [-83.93958, 35.96294],\n      [-83.93917, 35.96305],\n      [-83.93657, 35.96393],\n      [-83.93617, 35.96407],\n      [-83.93564, 35.96426],\n      [-83.93433, 35.96471],\n      [-83.93373, 35.96496],\n      [-83.93309, 35.96531],\n      [-83.93263, 35.96562],\n      [-83.93217, 35.96598],\n      [-83.93155, 35.96653],\n      [-83.93088, 35.96718],\n      [-83.93049, 35.96751],\n      [-83.93007, 35.96781],\n      [-83.9296, 35.9681],\n      [-83.92915, 35.96836],\n      [-83.92866, 35.96858],\n      [-83.92818, 35.96879],\n      [-83.92771, 35.96898],\n      [-83.92659, 35.9694],\n      [-83.9251, 35.96994],\n      [-83.92381, 35.97037],\n      [-83.92326, 35.97062],\n      [-83.9227, 35.97092],\n      [-83.92204, 35.97137],\n      [-83.92145, 35.97187],\n      [-83.92099, 35.97235],\n      [-83.92078, 35.97261],\n      [-83.92031, 35.97315],\n      [-83.91945, 35.97414],\n      [-83.9189, 35.97483],\n      [-83.91858, 35.97527],\n      [-83.91845, 35.97547],\n      [-83.91834, 35.97569],\n      [-83.91815, 35.97618],\n      [-83.91806, 35.97659],\n      [-83.91803, 35.97699],\n      [-83.91805, 35.97738],\n      [-83.9181, 35.97791],\n      [-83.91838, 35.97906],\n      [-83.91844, 35.97942],\n      [-83.91847, 35.9796],\n      [-83.91851, 35.97984],\n      [-83.91855, 35.98032],\n      [-83.91851, 35.98078],\n      [-83.91842, 35.98118],\n      [-83.91822, 35.98175],\n      [-83.91803, 35.98214],\n      [-83.91777, 35.98253],\n      [-83.91749, 35.98286],\n      [-83.91715, 35.98323],\n      [-83.91674, 35.98355],\n      [-83.91615, 35.98389],\n      [-83.91572, 35.98409],\n      [-83.91515, 35.98429],\n      [-83.91475, 35.98443],\n      [-83.91425, 35.98457],\n      [-83.9135, 35.98478],\n      [-83.9124, 35.9851],\n      [-83.91091, 35.98548],\n      [-83.91017, 35.98573],\n      [-83.9095, 35.98597],\n      [-83.90861, 35.98635],\n      [-83.9074, 35.98695],\n      [-83.90679, 35.98733],\n      [-83.90606, 35.98785],\n      [-83.90411, 35.98929],\n      [-83.90362, 35.98964],\n      [-83.90237, 35.99051],\n      [-83.90107, 35.99145],\n      [-83.90069, 35.99175],\n      [-83.9002, 35.99209],\n      [-83.89809, 35.99362],\n      [-83.894, 35.99653],\n      [-83.89019, 35.99927],\n      [-83.88878, 36.00024],\n      [-83.88754, 36.001],\n      [-83.88646, 36.00161],\n      [-83.8857, 36.00201],\n      [-83.88479, 36.00247],\n      [-83.88418, 36.00274],\n      [-83.87792, 36.00548],\n      [-83.87405, 36.00715],\n      [-83.8736, 36.00734],\n      [-83.87339, 36.00743],\n      [-83.87091, 36.00857],\n      [-83.86914, 36.00934],\n      [-83.8674, 36.01008],\n      [-83.86598, 36.01072],\n      [-83.86501, 36.01114],\n      [-83.86298, 36.01203],\n      [-83.86111, 36.01289],\n      [-83.8602, 36.01322],\n      [-83.85952, 36.01339],\n      [-83.85916, 36.01346],\n      [-83.85882, 36.01349],\n      [-83.85827, 36.01351],\n      [-83.85768, 36.01349],\n      [-83.85676, 36.01338],\n      [-83.85454, 36.01299],\n      [-83.85415, 36.01292],\n      [-83.85063, 36.01238],\n      [-83.84862, 36.0121],\n      [-83.84666, 36.01186],\n      [-83.84479, 36.01163],\n      [-83.844, 36.01146],\n      [-83.84335, 36.01126],\n      [-83.84272, 36.01103],\n      [-83.84182, 36.01058],\n      [-83.8414, 36.01036],\n      [-83.8388, 36.00899],\n      [-83.83853, 36.00886],\n      [-83.83779, 36.00848],\n      [-83.837, 36.00808],\n      [-83.836, 36.00761],\n      [-83.83509, 36.00732],\n      [-83.83428, 36.00715],\n      [-83.83352, 36.00707],\n      [-83.83289, 36.00705],\n      [-83.83212, 36.00711],\n      [-83.83137, 36.00721],\n      [-83.83066, 36.00739],\n      [-83.82952, 36.00769],\n      [-83.82843, 36.00798],\n      [-83.82748, 36.00826],\n      [-83.82563, 36.00875],\n      [-83.82458, 36.009],\n      [-83.82387, 36.00918],\n      [-83.82337, 36.00929],\n      [-83.8228, 36.00937],\n      [-83.82242, 36.00941],\n      [-83.82171, 36.00946],\n      [-83.82113, 36.00946],\n      [-83.82028, 36.00943],\n      [-83.81935, 36.00932],\n      [-83.8187, 36.00918],\n      [-83.81735, 36.00883],\n      [-83.81451, 36.00802],\n      [-83.8134, 36.00771],\n      [-83.81267, 36.00751],\n      [-83.81134, 36.00718],\n      [-83.81024, 36.00694],\n      [-83.80866, 36.00664],\n      [-83.80769, 36.0065],\n      [-83.80399, 36.00594],\n      [-83.80024, 36.00539],\n      [-83.79492, 36.0046],\n      [-83.79068, 36.00397],\n      [-83.78487, 36.00313],\n      [-83.78305, 36.00291],\n      [-83.78096, 36.00275],\n      [-83.78019, 36.00272],\n      [-83.77804, 36.0027],\n      [-83.7758, 36.00277],\n      [-83.7748, 36.00283],\n      [-83.77394, 36.00291],\n      [-83.77187, 36.00311],\n      [-83.77116, 36.00322],\n      [-83.76835, 36.00354],\n      [-83.76705, 36.00368],\n      [-83.76641, 36.00375],\n      [-83.76568, 36.00383],\n      [-83.75747, 36.00475],\n      [-83.75456, 36.00498],\n      [-83.75183, 36.00505],\n      [-83.75043, 36.00502],\n      [-83.74934, 36.00495],\n      [-83.74752, 36.00482],\n      [-83.74631, 36.00468],\n      [-83.74524, 36.00454],\n      [-83.74362, 36.00424],\n      [-83.74233, 36.00399],\n      [-83.74083, 36.00364],\n      [-83.73982, 36.00337],\n      [-83.73851, 36.003],\n      [-83.73679, 36.00242],\n      [-83.73538, 36.0019],\n      [-83.73414, 36.0014],\n      [-83.72983, 35.99968],\n      [-83.72872, 35.99927],\n      [-83.72774, 35.99893],\n      [-83.72632, 35.99849],\n      [-83.725, 35.99813],\n      [-83.72267, 35.99759],\n      [-83.7221, 35.99747],\n      [-83.72156, 35.99737],\n      [-83.72011, 35.99714],\n      [-83.71912, 35.99699],\n      [-83.71728, 35.99681],\n      [-83.71594, 35.9967],\n      [-83.71415, 35.99662],\n      [-83.71241, 35.99662],\n      [-83.70696, 35.99658],\n      [-83.7041, 35.99656],\n      [-83.6999, 35.99654],\n      [-83.6993, 35.99654],\n      [-83.69459, 35.99649],\n      [-83.69186, 35.99638],\n      [-83.69002, 35.99624],\n      [-83.68928, 35.99618],\n      [-83.68839, 35.9961],\n      [-83.68598, 35.99585],\n      [-83.6846, 35.99566],\n      [-83.68275, 35.99539],\n      [-83.68114, 35.99513],\n      [-83.68053, 35.99503],\n      [-83.67864, 35.99466],\n      [-83.67628, 35.99415],\n      [-83.67475, 35.99378],\n      [-83.67247, 35.99319],\n      [-83.67106, 35.99279],\n      [-83.66941, 35.99229],\n      [-83.66791, 35.99179],\n      [-83.66002, 35.98907],\n      [-83.65841, 35.98852],\n      [-83.65645, 35.98791],\n      [-83.65494, 35.98747],\n      [-83.65293, 35.98695],\n      [-83.65145, 35.98657],\n      [-83.65016, 35.98629],\n      [-83.64866, 35.98596],\n      [-83.64673, 35.98558],\n      [-83.64488, 35.98526],\n      [-83.64435, 35.98518],\n      [-83.63495, 35.98364],\n      [-83.63258, 35.98326],\n      [-83.63174, 35.98313],\n      [-83.628, 35.98251],\n      [-83.62733, 35.98241],\n      [-83.62671, 35.98233],\n      [-83.62601, 35.98225],\n      [-83.62536, 35.98218],\n      [-83.62444, 35.9821],\n      [-83.62339, 35.98203],\n      [-83.62228, 35.98198],\n      [-83.62128, 35.98196],\n      [-83.62019, 35.98196],\n      [-83.61876, 35.982],\n      [-83.61757, 35.98207],\n      [-83.61681, 35.98212],\n      [-83.61495, 35.98233],\n      [-83.61387, 35.98251],\n      [-83.61214, 35.9827],\n      [-83.60292, 35.98397],\n      [-83.59976, 35.98437],\n      [-83.59648, 35.98459],\n      [-83.59392, 35.98474],\n      [-83.59136, 35.98491],\n      [-83.58992, 35.98504],\n      [-83.58903, 35.98517],\n      [-83.58827, 35.9853],\n      [-83.58723, 35.98549],\n      [-83.58639, 35.98566],\n      [-83.58485, 35.98608],\n      [-83.58435, 35.98624],\n      [-83.58207, 35.98706],\n      [-83.57679, 35.98914],\n      [-83.56481, 35.99385],\n      [-83.56434, 35.99404],\n      [-83.53415, 36.00585],\n      [-83.52515, 36.00941],\n      [-83.52267, 36.01036],\n      [-83.52055, 36.0111],\n      [-83.51924, 36.01151],\n      [-83.51786, 36.01192],\n      [-83.51597, 36.01243],\n      [-83.50698, 36.01477],\n      [-83.49688, 36.0174],\n      [-83.48646, 36.02012],\n      [-83.48007, 36.02179],\n      [-83.47654, 36.02272],\n      [-83.47575, 36.02293],\n      [-83.47053, 36.02427],\n      [-83.46785, 36.02507],\n      [-83.46447, 36.02635],\n      [-83.46215, 36.02754],\n      [-83.45973, 36.02894],\n      [-83.45734, 36.03068],\n      [-83.45547, 36.03179],\n      [-83.45446, 36.03244],\n      [-83.45258, 36.0332],\n      [-83.45112, 36.0338],\n      [-83.44527, 36.03625],\n      [-83.44078, 36.03819],\n      [-83.43966, 36.03866],\n      [-83.43605, 36.04015],\n      [-83.43059, 36.0425],\n      [-83.42759, 36.04382],\n      [-83.42543, 36.04486],\n      [-83.42246, 36.04637],\n      [-83.41858, 36.04853],\n      [-83.41807, 36.04883],\n      [-83.41631, 36.04989],\n      [-83.41426, 36.05121],\n      [-83.4095, 36.05427],\n      [-83.3972, 36.06215],\n      [-83.39658, 36.06255],\n      [-83.39431, 36.064],\n      [-83.39138, 36.06587],\n      [-83.39091, 36.06616],\n      [-83.39058, 36.06635],\n      [-83.39031, 36.06649],\n      [-83.38998, 36.06663],\n      [-83.38957, 36.06678],\n      [-83.38927, 36.06688],\n      [-83.38901, 36.06695],\n      [-83.38876, 36.06702],\n      [-83.38835, 36.06715],\n      [-83.38783, 36.06729],\n      [-83.38751, 36.06737],\n      [-83.38696, 36.06751],\n      [-83.38666, 36.06761],\n      [-83.38629, 36.06774],\n      [-83.38606, 36.06784],\n      [-83.3856, 36.06806],\n      [-83.38525, 36.06824],\n      [-83.38493, 36.06842],\n      [-83.3846, 36.06864],\n      [-83.38431, 36.06885],\n      [-83.38408, 36.06903],\n      [-83.38378, 36.06929],\n      [-83.38351, 36.06956],\n      [-83.38323, 36.06989],\n      [-83.38285, 36.07039],\n      [-83.38236, 36.07105],\n      [-83.38209, 36.0714],\n      [-83.38184, 36.07171],\n      [-83.38154, 36.07201],\n      [-83.38133, 36.0722],\n      [-83.38106, 36.07242],\n      [-83.38072, 36.07266],\n      [-83.38008, 36.07308],\n      [-83.37496, 36.07636],\n      [-83.37379, 36.07711],\n      [-83.37221, 36.07813],\n      [-83.37034, 36.07931],\n      [-83.36965, 36.07974],\n      [-83.36613, 36.08187],\n      [-83.36375, 36.08331],\n      [-83.36302, 36.08379],\n      [-83.36225, 36.08429],\n      [-83.36127, 36.08497],\n      [-83.36048, 36.08552],\n      [-83.35981, 36.08603],\n      [-83.35855, 36.08696],\n      [-83.3576, 36.08771],\n      [-83.35699, 36.08821],\n      [-83.35616, 36.08891],\n      [-83.35518, 36.08974],\n      [-83.3543, 36.09051],\n      [-83.35366, 36.09109],\n      [-83.353, 36.0917],\n      [-83.35196, 36.09271],\n      [-83.35076, 36.09393],\n      [-83.34933, 36.09539],\n      [-83.34806, 36.09667],\n      [-83.34632, 36.09846],\n      [-83.34491, 36.09988],\n      [-83.34265, 36.10221],\n      [-83.33887, 36.10606],\n      [-83.33767, 36.10726],\n      [-83.3364, 36.10856],\n      [-83.33589, 36.10908],\n      [-83.33384, 36.11113],\n      [-83.33184, 36.11317],\n      [-83.33089, 36.11411],\n      [-83.32742, 36.11762],\n      [-83.32671, 36.11831],\n      [-83.32602, 36.11896],\n      [-83.32536, 36.11956],\n      [-83.32469, 36.12015],\n      [-83.32404, 36.1207],\n      [-83.32329, 36.12132],\n      [-83.3224, 36.12201],\n      [-83.32156, 36.12266],\n      [-83.32084, 36.12318],\n      [-83.31982, 36.1239],\n      [-83.31905, 36.12441],\n      [-83.31798, 36.12511],\n      [-83.31677, 36.12584],\n      [-83.31603, 36.12628],\n      [-83.31517, 36.12676],\n      [-83.3145, 36.12712],\n      [-83.31362, 36.12759],\n      [-83.31281, 36.128],\n      [-83.31177, 36.12851],\n      [-83.31109, 36.12882],\n      [-83.31027, 36.1292],\n      [-83.30949, 36.12954],\n      [-83.30853, 36.12993],\n      [-83.30742, 36.13037],\n      [-83.30709, 36.13049],\n      [-83.30617, 36.13084],\n      [-83.30536, 36.13113],\n      [-83.30426, 36.1315],\n      [-83.30329, 36.13181],\n      [-83.30228, 36.13212],\n      [-83.30097, 36.13249],\n      [-83.29994, 36.13277],\n      [-83.29859, 36.13311],\n      [-83.2976, 36.13335],\n      [-83.29673, 36.13355],\n      [-83.29539, 36.13384],\n      [-83.29438, 36.13403],\n      [-83.29329, 36.13421],\n      [-83.28752, 36.13523],\n      [-83.28656, 36.13539],\n      [-83.28546, 36.13559],\n      [-83.28303, 36.13602],\n      [-83.2826, 36.1361],\n      [-83.28022, 36.13652],\n      [-83.27856, 36.13685],\n      [-83.2768, 36.13724],\n      [-83.27529, 36.13761],\n      [-83.2739, 36.13797],\n      [-83.27287, 36.13825],\n      [-83.27205, 36.13848],\n      [-83.27158, 36.13862],\n      [-83.27032, 36.13899],\n      [-83.26915, 36.13937],\n      [-83.26804, 36.13974],\n      [-83.26696, 36.14011],\n      [-83.26571, 36.14056],\n      [-83.26483, 36.14089],\n      [-83.26354, 36.1414],\n      [-83.26282, 36.14169],\n      [-83.26169, 36.14217],\n      [-83.26034, 36.14276],\n      [-83.25946, 36.14317],\n      [-83.25806, 36.14383],\n      [-83.25709, 36.14432],\n      [-83.2562, 36.14477],\n      [-83.25527, 36.14525],\n      [-83.25494, 36.14543],\n      [-83.25368, 36.14612],\n      [-83.25273, 36.14667],\n      [-83.25159, 36.14734],\n      [-83.25034, 36.14811],\n      [-83.24738, 36.14995],\n      [-83.24453, 36.15173],\n      [-83.23784, 36.15589],\n      [-83.2334, 36.15865],\n      [-83.22898, 36.16139],\n      [-83.22311, 36.16504],\n      [-83.22255, 36.1654],\n      [-83.22181, 36.16584],\n      [-83.21548, 36.16977],\n      [-83.21167, 36.17214],\n      [-83.20285, 36.17762],\n      [-83.19331, 36.18352],\n      [-83.19284, 36.18382],\n      [-83.18958, 36.18585],\n      [-83.18775, 36.18698],\n      [-83.18705, 36.18741],\n      [-83.18639, 36.18779],\n      [-83.18544, 36.18833],\n      [-83.18465, 36.18876],\n      [-83.18377, 36.18922],\n      [-83.183, 36.18961],\n      [-83.18209, 36.19005],\n      [-83.18127, 36.19044],\n      [-83.18032, 36.19086],\n      [-83.17938, 36.19127],\n      [-83.17873, 36.19154],\n      [-83.17797, 36.19184],\n      [-83.17713, 36.19216],\n      [-83.17602, 36.19257],\n      [-83.17532, 36.19282],\n      [-83.17466, 36.19304],\n      [-83.17367, 36.19336],\n      [-83.17318, 36.19351],\n      [-83.17225, 36.19378],\n      [-83.17127, 36.19406],\n      [-83.17017, 36.19435],\n      [-83.1691, 36.19462],\n      [-83.16801, 36.19488],\n      [-83.16709, 36.19508],\n      [-83.16626, 36.19524],\n      [-83.16541, 36.1954],\n      [-83.16446, 36.19558],\n      [-83.16335, 36.19575],\n      [-83.16226, 36.19591],\n      [-83.16078, 36.1961],\n      [-83.16009, 36.19619],\n      [-83.15803, 36.19644],\n      [-83.15701, 36.19657],\n      [-83.15257, 36.19712],\n      [-83.15192, 36.1972],\n      [-83.14638, 36.19787],\n      [-83.14079, 36.19857],\n      [-83.13237, 36.1996],\n      [-83.13219, 36.19962],\n      [-83.12421, 36.2006],\n      [-83.12371, 36.20067],\n      [-83.12007, 36.20112],\n      [-83.11682, 36.20152],\n      [-83.11054, 36.20229],\n      [-83.10953, 36.20242],\n      [-83.10854, 36.20255],\n      [-83.10731, 36.20274],\n      [-83.10566, 36.20299],\n      [-83.09968, 36.20389],\n      [-83.0988, 36.20402],\n      [-83.09768, 36.20422],\n      [-83.09696, 36.20437],\n      [-83.09604, 36.20456],\n      [-83.09509, 36.20479],\n      [-83.0938, 36.20513],\n      [-83.09305, 36.20534],\n      [-83.09208, 36.20564],\n      [-83.09155, 36.20582],\n      [-83.09086, 36.20607],\n      [-83.08947, 36.20655],\n      [-83.08645, 36.20763],\n      [-83.08104, 36.20954],\n      [-83.07919, 36.21019],\n      [-83.07655, 36.21112],\n      [-83.06649, 36.2147],\n      [-83.06591, 36.21489],\n      [-83.04477, 36.22235],\n      [-83.03997, 36.22404],\n      [-83.03923, 36.2243],\n      [-83.03864, 36.22452],\n      [-83.03769, 36.22485],\n      [-83.03615, 36.22539],\n      [-83.03341, 36.22636],\n      [-83.03129, 36.22711],\n      [-83.02612, 36.22892],\n      [-83.02096, 36.23075],\n      [-83.01655, 36.2323],\n      [-83.00452, 36.23654],\n      [-83.00221, 36.23735],\n      [-82.99383, 36.2403],\n      [-82.99194, 36.24096],\n      [-82.98969, 36.24176],\n      [-82.98739, 36.24257],\n      [-82.98436, 36.24364],\n      [-82.98123, 36.24474],\n      [-82.97732, 36.24612],\n      [-82.97673, 36.24634],\n      [-82.97599, 36.24663],\n      [-82.97491, 36.24708],\n      [-82.97389, 36.24754],\n      [-82.97278, 36.24807],\n      [-82.97227, 36.24833],\n      [-82.97116, 36.24892],\n      [-82.96894, 36.25011],\n      [-82.96671, 36.25131],\n      [-82.96245, 36.2536],\n      [-82.95803, 36.25596],\n      [-82.95299, 36.25867],\n      [-82.94352, 36.26374],\n      [-82.93981, 36.26573],\n      [-82.93912, 36.26609],\n      [-82.93849, 36.26642],\n      [-82.93795, 36.2667],\n      [-82.93737, 36.26698],\n      [-82.93663, 36.26734],\n      [-82.93573, 36.26777],\n      [-82.93476, 36.2682],\n      [-82.9339, 36.26859],\n      [-82.92797, 36.27121],\n      [-82.92211, 36.27382],\n      [-82.91919, 36.27511],\n      [-82.917, 36.27609],\n      [-82.91613, 36.27647],\n      [-82.91512, 36.27694],\n      [-82.91402, 36.27746],\n      [-82.91331, 36.27781],\n      [-82.91135, 36.27882],\n      [-82.91045, 36.27932],\n      [-82.90972, 36.27972],\n      [-82.90866, 36.28033],\n      [-82.90708, 36.28127],\n      [-82.90599, 36.28194],\n      [-82.90456, 36.28284],\n      [-82.89357, 36.28974],\n      [-82.88468, 36.29532],\n      [-82.87728, 36.29995],\n      [-82.87692, 36.30018],\n      [-82.87621, 36.30058],\n      [-82.87565, 36.3009],\n      [-82.87505, 36.30123],\n      [-82.87426, 36.30163],\n      [-82.87333, 36.30208],\n      [-82.87202, 36.30268],\n      [-82.86555, 36.30565],\n      [-82.86086, 36.3078],\n      [-82.85599, 36.31003],\n      [-82.85403, 36.31094],\n      [-82.853, 36.31144],\n      [-82.85177, 36.31208],\n      [-82.85112, 36.31245],\n      [-82.85001, 36.31311],\n      [-82.84044, 36.31879],\n      [-82.83865, 36.31985],\n      [-82.83334, 36.32299],\n      [-82.83066, 36.32459],\n      [-82.82941, 36.32532],\n      [-82.82798, 36.32612],\n      [-82.8248, 36.32783],\n      [-82.81984, 36.33052],\n      [-82.81495, 36.33316],\n      [-82.81097, 36.3353],\n      [-82.81052, 36.33554],\n      [-82.81015, 36.33573],\n      [-82.80923, 36.33621],\n      [-82.80835, 36.33664],\n      [-82.80718, 36.33719],\n      [-82.80625, 36.33762],\n      [-82.80489, 36.33822],\n      [-82.8039, 36.33865],\n      [-82.80284, 36.33908],\n      [-82.80166, 36.33955],\n      [-82.80022, 36.34008],\n      [-82.7993, 36.34041],\n      [-82.79778, 36.34093],\n      [-82.7969, 36.34122],\n      [-82.79539, 36.34169],\n      [-82.78473, 36.34495],\n      [-82.77512, 36.34789],\n      [-82.769, 36.34975],\n      [-82.76725, 36.35028],\n      [-82.76633, 36.35055],\n      [-82.76522, 36.35085],\n      [-82.76403, 36.35116],\n      [-82.76261, 36.35151],\n      [-82.76194, 36.35167],\n      [-82.76113, 36.35185],\n      [-82.76, 36.35209],\n      [-82.75891, 36.3523],\n      [-82.75784, 36.3525],\n      [-82.75672, 36.3527],\n      [-82.75558, 36.35288],\n      [-82.75478, 36.353],\n      [-82.75391, 36.35313],\n      [-82.75347, 36.35319],\n      [-82.75263, 36.35329],\n      [-82.7513, 36.35345],\n      [-82.75042, 36.35354],\n      [-82.74957, 36.35362],\n      [-82.74846, 36.35372],\n      [-82.74768, 36.35377],\n      [-82.74644, 36.35385],\n      [-82.74543, 36.35391],\n      [-82.7441, 36.35397],\n      [-82.73296, 36.35453],\n      [-82.72393, 36.35498],\n      [-82.72289, 36.35501],\n      [-82.72177, 36.35507],\n      [-82.71905, 36.35521],\n      [-82.71829, 36.35525],\n      [-82.71751, 36.3553],\n      [-82.71687, 36.35534],\n      [-82.71621, 36.35539],\n      [-82.71551, 36.35545],\n      [-82.71498, 36.3555],\n      [-82.71421, 36.35558],\n      [-82.71325, 36.35569],\n      [-82.71244, 36.35579],\n      [-82.7117, 36.35589],\n      [-82.7107, 36.35604],\n      [-82.70983, 36.35618],\n      [-82.70898, 36.35632],\n      [-82.70825, 36.35645],\n      [-82.70718, 36.35666],\n      [-82.70651, 36.35679],\n      [-82.70562, 36.35699],\n      [-82.70475, 36.35719],\n      [-82.70421, 36.35731],\n      [-82.70324, 36.35755],\n      [-82.7021, 36.35786],\n      [-82.70105, 36.35817],\n      [-82.70029, 36.35839],\n      [-82.69968, 36.35858],\n      [-82.69915, 36.35875],\n      [-82.69867, 36.35889],\n      [-82.69795, 36.35913],\n      [-82.69669, 36.35956],\n      [-82.69534, 36.36006],\n      [-82.69463, 36.36033],\n      [-82.69332, 36.36085],\n      [-82.69203, 36.36139],\n      [-82.69073, 36.36197],\n      [-82.68992, 36.36234],\n      [-82.68935, 36.36262],\n      [-82.68808, 36.36325],\n      [-82.68675, 36.36394],\n      [-82.68556, 36.3646],\n      [-82.68419, 36.3654],\n      [-82.68301, 36.36612],\n      [-82.6818, 36.3669],\n      [-82.68049, 36.36777],\n      [-82.67892, 36.36889],\n      [-82.6778, 36.36975],\n      [-82.67664, 36.37066],\n      [-82.67553, 36.37159],\n      [-82.67425, 36.37271],\n      [-82.67352, 36.37339],\n      [-82.67254, 36.37433],\n      [-82.67185, 36.37502],\n      [-82.67084, 36.37607],\n      [-82.66993, 36.37704],\n      [-82.66564, 36.38163],\n      [-82.66302, 36.38442],\n      [-82.66125, 36.38632],\n      [-82.65949, 36.38819],\n      [-82.6592, 36.3885],\n      [-82.65213, 36.39603],\n      [-82.6497, 36.39862],\n      [-82.6484, 36.40003],\n      [-82.64807, 36.40037],\n      [-82.64771, 36.40071],\n      [-82.64725, 36.40112],\n      [-82.64675, 36.4015],\n      [-82.64631, 36.40181],\n      [-82.64587, 36.4021],\n      [-82.64538, 36.40239],\n      [-82.64485, 36.40267],\n      [-82.64429, 36.40295],\n      [-82.64382, 36.40315],\n      [-82.64322, 36.40338],\n      [-82.64266, 36.40356],\n      [-82.64198, 36.40376],\n      [-82.64138, 36.40391],\n      [-82.64077, 36.40403],\n      [-82.64015, 36.40412],\n      [-82.63953, 36.4042],\n      [-82.63889, 36.40425],\n      [-82.63834, 36.40427],\n      [-82.63781, 36.40428],\n      [-82.63723, 36.40426],\n      [-82.6367, 36.40423],\n      [-82.63616, 36.40417],\n      [-82.63542, 36.40408],\n      [-82.6318, 36.40358],\n      [-82.63043, 36.4034],\n      [-82.62761, 36.40301],\n      [-82.62103, 36.40211],\n      [-82.6202, 36.40201],\n      [-82.61951, 36.40193],\n      [-82.61899, 36.4019],\n      [-82.61836, 36.40187],\n      [-82.61784, 36.40185],\n      [-82.61731, 36.40185],\n      [-82.61672, 36.40186],\n      [-82.61627, 36.40188],\n      [-82.61555, 36.40192],\n      [-82.61507, 36.40197],\n      [-82.61472, 36.402],\n      [-82.61412, 36.40208],\n      [-82.61351, 36.40218],\n      [-82.61303, 36.40226],\n      [-82.61236, 36.4024],\n      [-82.61184, 36.40252],\n      [-82.61135, 36.40264],\n      [-82.61083, 36.40279],\n      [-82.61031, 36.40294],\n      [-82.60992, 36.40307],\n      [-82.60943, 36.40324],\n      [-82.60896, 36.40342],\n      [-82.60852, 36.40359],\n      [-82.608, 36.40382],\n      [-82.60747, 36.40406],\n      [-82.60707, 36.40427],\n      [-82.60651, 36.40456],\n      [-82.60581, 36.40495],\n      [-82.59876, 36.40912],\n      [-82.59674, 36.41031],\n      [-82.5949, 36.4114],\n      [-82.59387, 36.412],\n      [-82.59289, 36.41254],\n      [-82.5916, 36.41321],\n      [-82.58846, 36.41484],\n      [-82.58763, 36.41529],\n      [-82.5865, 36.41592],\n      [-82.58577, 36.41636],\n      [-82.58505, 36.4168],\n      [-82.58429, 36.4173],\n      [-82.58334, 36.41798],\n      [-82.58198, 36.41896],\n      [-82.57633, 36.42303],\n      [-82.57481, 36.42412],\n      [-82.57378, 36.42487],\n      [-82.57324, 36.42527],\n      [-82.57281, 36.42558],\n      [-82.5722, 36.42601],\n      [-82.57122, 36.42673],\n      [-82.57049, 36.4273],\n      [-82.5701, 36.42762],\n      [-82.56944, 36.42817],\n      [-82.56904, 36.42852],\n      [-82.5683, 36.4292],\n      [-82.56758, 36.42986],\n      [-82.56316, 36.43393],\n      [-82.5625, 36.43453],\n      [-82.56224, 36.43477],\n      [-82.55673, 36.43983],\n      [-82.5563, 36.44022],\n      [-82.55589, 36.44059],\n      [-82.55555, 36.44086],\n      [-82.55527, 36.44107],\n      [-82.55499, 36.44125],\n      [-82.55473, 36.4414],\n      [-82.55438, 36.44159],\n      [-82.55403, 36.44176],\n      [-82.55374, 36.44188],\n      [-82.55344, 36.442],\n      [-82.55309, 36.44211],\n      [-82.55277, 36.44221],\n      [-82.55236, 36.44231],\n      [-82.55206, 36.44237],\n      [-82.55147, 36.44248],\n      [-82.549, 36.44292],\n      [-82.54376, 36.44387],\n      [-82.54089, 36.44438],\n      [-82.54034, 36.44449],\n      [-82.53975, 36.44461],\n      [-82.53917, 36.44474],\n      [-82.53863, 36.44488],\n      [-82.53802, 36.44505],\n      [-82.53756, 36.4452],\n      [-82.53718, 36.44533],\n      [-82.53676, 36.44548],\n      [-82.53644, 36.44559],\n      [-82.5361, 36.44571],\n      [-82.53554, 36.44595],\n      [-82.53506, 36.44618],\n      [-82.53454, 36.44643],\n      [-82.53404, 36.44669],\n      [-82.53342, 36.44704],\n      [-82.53317, 36.44718],\n      [-82.53274, 36.44745],\n      [-82.53215, 36.44784],\n      [-82.52819, 36.45042],\n      [-82.52649, 36.45152],\n      [-82.52608, 36.45181],\n      [-82.52348, 36.45351],\n      [-82.52326, 36.45363],\n      [-82.5224, 36.45419],\n      [-82.52199, 36.45447],\n      [-82.52031, 36.45557],\n      [-82.51811, 36.45702],\n      [-82.51126, 36.46147],\n      [-82.50838, 36.46337],\n      [-82.50463, 36.46588],\n      [-82.50228, 36.46743],\n      [-82.49892, 36.46962],\n      [-82.49848, 36.46992],\n      [-82.49793, 36.47028],\n      [-82.4953, 36.4721],\n      [-82.4936, 36.47328],\n      [-82.4931, 36.47363],\n      [-82.49221, 36.47425],\n      [-82.49159, 36.47464],\n      [-82.49106, 36.47496],\n      [-82.49032, 36.47537],\n      [-82.48962, 36.47577],\n      [-82.48599, 36.47781],\n      [-82.48355, 36.47919],\n      [-82.48255, 36.47978],\n      [-82.48153, 36.48042],\n      [-82.48048, 36.48112],\n      [-82.47826, 36.48264],\n      [-82.47747, 36.48316],\n      [-82.47484, 36.48496],\n      [-82.47405, 36.48551],\n      [-82.46929, 36.48877],\n      [-82.46803, 36.48962],\n      [-82.46631, 36.49081],\n      [-82.46375, 36.49254],\n      [-82.46243, 36.49345],\n      [-82.45835, 36.49624],\n      [-82.4578, 36.49663],\n      [-82.4574, 36.49691],\n      [-82.45641, 36.49754],\n      [-82.45528, 36.49824],\n      [-82.45404, 36.49896],\n      [-82.45351, 36.49926],\n      [-82.45182, 36.50017],\n      [-82.45091, 36.50063],\n      [-82.45011, 36.50102],\n      [-82.44898, 36.50154],\n      [-82.44784, 36.50205],\n      [-82.44676, 36.5025],\n      [-82.44511, 36.50315],\n      [-82.44362, 36.50369],\n      [-82.44296, 36.50392],\n      [-82.44207, 36.50422],\n      [-82.44101, 36.50455],\n      [-82.44021, 36.50479],\n      [-82.43922, 36.50508],\n      [-82.43814, 36.50538],\n      [-82.4362, 36.50592],\n      [-82.43199, 36.50709],\n      [-82.42868, 36.50802],\n      [-82.42658, 36.5086],\n      [-82.42232, 36.50979],\n      [-82.42187, 36.50992],\n      [-82.42133, 36.51008],\n      [-82.42081, 36.51024],\n      [-82.42035, 36.51039],\n      [-82.41967, 36.51061],\n      [-82.41899, 36.51085],\n      [-82.41837, 36.51109],\n      [-82.4177, 36.51134],\n      [-82.41717, 36.51156],\n      [-82.41649, 36.51185],\n      [-82.41577, 36.51218],\n      [-82.41517, 36.51246],\n      [-82.41454, 36.51277],\n      [-82.41393, 36.51309],\n      [-82.41315, 36.5135],\n      [-82.41261, 36.51381],\n      [-82.41201, 36.51415],\n      [-82.41125, 36.51461],\n      [-82.41055, 36.51507],\n      [-82.40996, 36.51546],\n      [-82.40938, 36.51586],\n      [-82.40884, 36.51625],\n      [-82.4079, 36.51696],\n      [-82.40695, 36.51773],\n      [-82.40553, 36.51888],\n      [-82.40412, 36.52004],\n      [-82.40287, 36.52105],\n      [-82.40173, 36.52196],\n      [-82.40018, 36.52322],\n      [-82.39863, 36.52448],\n      [-82.39734, 36.52552],\n      [-82.39593, 36.52667],\n      [-82.39435, 36.52796],\n      [-82.39266, 36.52933],\n      [-82.39185, 36.53],\n      [-82.39138, 36.53039],\n      [-82.39047, 36.53111],\n      [-82.38919, 36.53215],\n      [-82.38868, 36.53255],\n      [-82.38805, 36.53302],\n      [-82.38765, 36.53331],\n      [-82.38698, 36.53376],\n      [-82.38643, 36.53411],\n      [-82.3858, 36.5345],\n      [-82.38523, 36.53482],\n      [-82.38457, 36.53518],\n      [-82.38406, 36.53545],\n      [-82.38369, 36.53563],\n      [-82.38324, 36.53585],\n      [-82.38274, 36.53608],\n      [-82.38218, 36.53632],\n      [-82.38162, 36.53656],\n      [-82.38096, 36.53681],\n      [-82.38028, 36.53706],\n      [-82.37965, 36.53727],\n      [-82.37893, 36.53751],\n      [-82.3783, 36.53769],\n      [-82.37765, 36.53787],\n      [-82.37693, 36.53806],\n      [-82.37619, 36.53823],\n      [-82.37559, 36.53836],\n      [-82.37493, 36.53848],\n      [-82.37436, 36.53858],\n      [-82.37371, 36.53868],\n      [-82.37306, 36.53877],\n      [-82.37236, 36.53886],\n      [-82.3717, 36.53892],\n      [-82.3709, 36.53898],\n      [-82.37018, 36.53903],\n      [-82.36949, 36.53904],\n      [-82.36865, 36.53906],\n      [-82.36803, 36.53905],\n      [-82.36753, 36.53904],\n      [-82.36682, 36.53902],\n      [-82.36625, 36.53898],\n      [-82.36558, 36.53894],\n      [-82.36493, 36.53888],\n      [-82.36424, 36.53882],\n      [-82.36252, 36.53866],\n      [-82.36207, 36.53862],\n      [-82.35893, 36.53833],\n      [-82.35848, 36.53829],\n      [-82.35798, 36.53826],\n      [-82.35737, 36.53823],\n      [-82.35679, 36.5382],\n      [-82.35601, 36.53819],\n      [-82.35527, 36.53819],\n      [-82.35462, 36.53821],\n      [-82.35413, 36.53823],\n      [-82.35349, 36.53826],\n      [-82.35283, 36.53831],\n      [-82.35216, 36.53837],\n      [-82.35166, 36.53842],\n      [-82.35092, 36.53851],\n      [-82.35021, 36.53861],\n      [-82.34957, 36.53872],\n      [-82.34913, 36.53879],\n      [-82.3485, 36.53892],\n      [-82.34804, 36.53902],\n      [-82.34771, 36.53909],\n      [-82.34706, 36.53924],\n      [-82.34656, 36.53937],\n      [-82.3459, 36.53955],\n      [-82.34528, 36.53974],\n      [-82.34464, 36.53994],\n      [-82.344, 36.54016],\n      [-82.34338, 36.54039],\n      [-82.34293, 36.54056],\n      [-82.34232, 36.54081],\n      [-82.34163, 36.5411],\n      [-82.34062, 36.54156],\n      [-82.33979, 36.54197],\n      [-82.33588, 36.54393],\n      [-82.33525, 36.54424],\n      [-82.3345, 36.54462],\n      [-82.33199, 36.54587],\n      [-82.33015, 36.54679],\n      [-82.32842, 36.54765],\n      [-82.32693, 36.54839],\n      [-82.3233, 36.55021],\n      [-82.322, 36.55085],\n      [-82.32123, 36.55124],\n      [-82.32085, 36.55144],\n      [-82.3203, 36.55176],\n      [-82.31989, 36.552],\n      [-82.31926, 36.55241],\n      [-82.31888, 36.55266],\n      [-82.3184, 36.55302],\n      [-82.31808, 36.55326],\n      [-82.31755, 36.5537],\n      [-82.31722, 36.55399],\n      [-82.31673, 36.55444],\n      [-82.31638, 36.5548],\n      [-82.31604, 36.55515],\n      [-82.31571, 36.55553],\n      [-82.31533, 36.55598],\n      [-82.31508, 36.5563],\n      [-82.31451, 36.55708],\n      [-82.31406, 36.55771],\n      [-82.31342, 36.55859],\n      [-82.31315, 36.55896],\n      [-82.31279, 36.55943],\n      [-82.31253, 36.55973],\n      [-82.31224, 36.56006],\n      [-82.312, 36.56032],\n      [-82.3117, 36.56063],\n      [-82.3114, 36.56093],\n      [-82.31109, 36.56121],\n      [-82.31071, 36.56156],\n      [-82.31031, 36.56189],\n      [-82.30983, 36.56227],\n      [-82.30947, 36.56254],\n      [-82.30906, 36.56283],\n      [-82.30861, 36.56311],\n      [-82.30822, 36.56336],\n      [-82.30784, 36.56359],\n      [-82.30744, 36.56381],\n      [-82.30708, 36.564],\n      [-82.30667, 36.56421],\n      [-82.30639, 36.56434],\n      [-82.30593, 36.56456],\n      [-82.296, 36.56921],\n      [-82.29119, 36.57146],\n      [-82.28628, 36.57376],\n      [-82.27644, 36.57835],\n      [-82.27561, 36.57874],\n      [-82.27443, 36.57931],\n      [-82.2734, 36.57984],\n      [-82.27206, 36.58054],\n      [-82.27114, 36.58105],\n      [-82.27011, 36.58163],\n      [-82.26848, 36.58259],\n      [-82.26692, 36.5835],\n      [-82.26602, 36.58404],\n      [-82.26566, 36.58425],\n      [-82.26523, 36.5845],\n      [-82.26341, 36.58564],\n      [-82.2607, 36.58725],\n      [-82.25932, 36.58805],\n      [-82.25883, 36.58833],\n      [-82.2583, 36.58862],\n      [-82.25794, 36.5888],\n      [-82.257, 36.58929],\n      [-82.25598, 36.58982],\n      [-82.25525, 36.5902],\n      [-82.25317, 36.5912],\n      [-82.25114, 36.59216],\n      [-82.24955, 36.59292],\n      [-82.24855, 36.59338],\n      [-82.24683, 36.59414],\n      [-82.24507, 36.59492],\n      [-82.24468, 36.59508],\n      [-82.24338, 36.59565],\n      [-82.24333, 36.59568],\n      [-82.24323, 36.59572],\n      [-82.24291, 36.59586],\n      [-82.24171, 36.5964],\n      [-82.23942, 36.59741],\n      [-82.23757, 36.59823],\n      [-82.23712, 36.59843],\n      [-82.23698, 36.5985],\n      [-82.23631, 36.5988],\n      [-82.23537, 36.59921],\n      [-82.23514, 36.59932],\n      [-82.23482, 36.59946],\n      [-82.23377, 36.59992],\n      [-82.23344, 36.60007],\n      [-82.23305, 36.60024],\n      [-82.23215, 36.60064],\n      [-82.2315, 36.60094],\n      [-82.23087, 36.60122],\n      [-82.22992, 36.60165],\n      [-82.22908, 36.60201],\n      [-82.22846, 36.6023],\n      [-82.22394, 36.60429],\n      [-82.22334, 36.60456],\n      [-82.22253, 36.6049],\n      [-82.21956, 36.60622],\n      [-82.21792, 36.60697],\n      [-82.21724, 36.60726],\n      [-82.2165, 36.60759],\n      [-82.21429, 36.60857],\n      [-82.21364, 36.60885],\n      [-82.21308, 36.60911],\n      [-82.21221, 36.6095],\n      [-82.21022, 36.61037],\n      [-82.20984, 36.61054],\n      [-82.20929, 36.61077],\n      [-82.20891, 36.61093],\n      [-82.20722, 36.61171],\n      [-82.20682, 36.61188],\n      [-82.20635, 36.61207],\n      [-82.20259, 36.61374],\n      [-82.20183, 36.61408],\n      [-82.2008, 36.61457],\n      [-82.20004, 36.61496],\n      [-82.19955, 36.61523],\n      [-82.19854, 36.61583],\n      [-82.19805, 36.61613],\n      [-82.19741, 36.61649],\n      [-82.19704, 36.61673],\n      [-82.19671, 36.61698],\n      [-82.19533, 36.61791],\n      [-82.19492, 36.61818],\n      [-82.19296, 36.61949],\n      [-82.19233, 36.61989],\n      [-82.19187, 36.62016],\n      [-82.19138, 36.62041],\n      [-82.19082, 36.62068],\n      [-82.19038, 36.62088],\n      [-82.1897, 36.6211],\n      [-82.18933, 36.62125],\n      [-82.18854, 36.62155],\n      [-82.18799, 36.62176],\n      [-82.18644, 36.62234],\n      [-82.18518, 36.62288],\n      [-82.1847, 36.62305],\n      [-82.18436, 36.62318],\n      [-82.18376, 36.62339],\n      [-82.18252, 36.62382],\n      [-82.18166, 36.62412],\n      [-82.18056, 36.62453],\n      [-82.17981, 36.62481],\n      [-82.17898, 36.62514],\n      [-82.17797, 36.62553],\n      [-82.17736, 36.62574],\n      [-82.17699, 36.62587],\n      [-82.1764, 36.62604],\n      [-82.17594, 36.62616],\n      [-82.17588, 36.62618],\n      [-82.17473, 36.62643],\n      [-82.17395, 36.62658],\n      [-82.1738, 36.6266],\n      [-82.17269, 36.62677],\n      [-82.17245, 36.62679],\n      [-82.17204, 36.62683],\n      [-82.17148, 36.62687],\n      [-82.17082, 36.62691],\n      [-82.17037, 36.62692],\n      [-82.16985, 36.62693],\n      [-82.1695, 36.62692],\n      [-82.16938, 36.62692],\n      [-82.16877, 36.62688],\n      [-82.16823, 36.62684],\n      [-82.16743, 36.62675],\n      [-82.16639, 36.62663],\n      [-82.16546, 36.62653],\n      [-82.16502, 36.62647],\n      [-82.16442, 36.62641],\n      [-82.1636, 36.62633],\n      [-82.16291, 36.6263],\n      [-82.16215, 36.62628],\n      [-82.16136, 36.62627],\n      [-82.15876, 36.62626],\n      [-82.15717, 36.62625],\n      [-82.15648, 36.62623],\n      [-82.15619, 36.62621],\n      [-82.15524, 36.62616],\n      [-82.15417, 36.62606],\n      [-82.15352, 36.62602],\n      [-82.15188, 36.62588],\n      [-82.15046, 36.62575],\n      [-82.15017, 36.62572],\n      [-82.14961, 36.62565],\n      [-82.14935, 36.62563],\n      [-82.1482, 36.62552],\n      [-82.14748, 36.62546],\n      [-82.14685, 36.62542],\n      [-82.14535, 36.62528],\n      [-82.14454, 36.6252],\n      [-82.14413, 36.62516],\n      [-82.14311, 36.62508],\n      [-82.14196, 36.62497],\n      [-82.14106, 36.62489],\n      [-82.14039, 36.62485],\n      [-82.13985, 36.62483],\n      [-82.13916, 36.62483],\n      [-82.13875, 36.62483],\n      [-82.13806, 36.62486],\n      [-82.13748, 36.62489],\n      [-82.13718, 36.62492],\n      [-82.13688, 36.62496],\n      [-82.1362, 36.62507],\n      [-82.13558, 36.62517],\n      [-82.13484, 36.62529],\n      [-82.13408, 36.62545],\n      [-82.13357, 36.62557],\n      [-82.1328, 36.62578],\n      [-82.1323, 36.62593],\n      [-82.13181, 36.62605],\n      [-82.13145, 36.62617],\n      [-82.13113, 36.62628],\n      [-82.12993, 36.62681],\n      [-82.12918, 36.62712],\n      [-82.12844, 36.62741],\n      [-82.12707, 36.62797],\n      [-82.12697, 36.62801],\n      [-82.1267, 36.62813],\n      [-82.12312, 36.6296],\n      [-82.12264, 36.62979],\n      [-82.12183, 36.63012],\n      [-82.12131, 36.63032],\n      [-82.12074, 36.63058],\n      [-82.11759, 36.63181],\n      [-82.1168, 36.63217],\n      [-82.1163, 36.63238],\n      [-82.1157, 36.63263],\n      [-82.11393, 36.63335],\n      [-82.11334, 36.63359],\n      [-82.1126, 36.63389],\n      [-82.11209, 36.63412],\n      [-82.11198, 36.63416],\n      [-82.11081, 36.63466],\n      [-82.11021, 36.63489],\n      [-82.10835, 36.63561],\n      [-82.10558, 36.63675],\n      [-82.10208, 36.63818],\n      [-82.10019, 36.63895],\n      [-82.09933, 36.63931],\n      [-82.0983, 36.63977],\n      [-82.0973, 36.64028],\n      [-82.09641, 36.64078],\n      [-82.09608, 36.64096],\n      [-82.09593, 36.64105],\n      [-82.09535, 36.64143],\n      [-82.09438, 36.64209],\n      [-82.09392, 36.64243],\n      [-82.09379, 36.64253],\n      [-82.09322, 36.64298],\n      [-82.0926, 36.6435],\n      [-82.092, 36.64403],\n      [-82.09073, 36.64519],\n      [-82.09002, 36.64585],\n      [-82.08928, 36.64652],\n      [-82.0879, 36.64778],\n      [-82.08726, 36.64835],\n      [-82.08675, 36.64878],\n      [-82.08649, 36.64899],\n      [-82.08625, 36.64917],\n      [-82.08565, 36.64962],\n      [-82.08519, 36.64995],\n      [-82.08468, 36.65029],\n      [-82.08405, 36.65069],\n      [-82.08389, 36.65079],\n      [-82.08314, 36.65123],\n      [-82.08272, 36.65145],\n      [-82.08221, 36.65173],\n      [-82.08128, 36.65218],\n      [-82.08047, 36.65254],\n      [-82.07993, 36.65276],\n      [-82.07926, 36.65302],\n      [-82.07867, 36.65324],\n      [-82.07832, 36.65336],\n      [-82.0772, 36.65376],\n      [-82.0757, 36.65428],\n      [-82.07474, 36.65463],\n      [-82.07404, 36.6549],\n      [-82.07349, 36.65512],\n      [-82.07284, 36.65541],\n      [-82.07198, 36.65581],\n      [-82.07112, 36.65625],\n      [-82.07044, 36.65663],\n      [-82.06955, 36.65717],\n      [-82.06872, 36.6577],\n      [-82.06792, 36.65828],\n      [-82.06712, 36.65889],\n      [-82.06658, 36.65935],\n      [-82.06596, 36.65987],\n      [-82.06553, 36.6603],\n      [-82.06329, 36.66246],\n      [-82.06239, 36.66331],\n      [-82.06184, 36.6638],\n      [-82.06099, 36.66452],\n      [-82.06022, 36.66513],\n      [-82.05948, 36.66568],\n      [-82.05869, 36.66625],\n      [-82.05812, 36.66664],\n      [-82.05766, 36.66694],\n      [-82.05659, 36.66762],\n      [-82.05486, 36.66863],\n      [-82.05324, 36.66957],\n      [-82.05194, 36.67033],\n      [-82.05126, 36.67072],\n      [-82.04551, 36.67407],\n      [-82.04502, 36.67437],\n      [-82.04444, 36.67472],\n      [-82.04364, 36.67522],\n      [-82.04273, 36.67581],\n      [-82.04138, 36.67672],\n      [-82.03992, 36.67778],\n      [-82.03935, 36.67819],\n      [-82.03854, 36.67874],\n      [-82.03812, 36.67903],\n      [-82.03796, 36.67915],\n      [-82.03721, 36.67969],\n      [-82.03439, 36.68171],\n      [-82.03382, 36.68211],\n      [-82.03221, 36.6832],\n      [-82.03114, 36.68389],\n      [-82.03096, 36.68401],\n      [-82.03034, 36.6844],\n      [-82.02962, 36.68483],\n      [-82.02881, 36.68532],\n      [-82.02811, 36.68572],\n      [-82.02733, 36.68616],\n      [-82.02503, 36.68744],\n      [-82.02406, 36.68799],\n      [-82.02328, 36.68843],\n      [-82.0231, 36.68853],\n      [-82.0201, 36.6902],\n      [-82.01825, 36.69123],\n      [-82.01742, 36.69168],\n      [-82.01694, 36.69192],\n      [-82.0165, 36.69212],\n      [-82.01615, 36.69228],\n      [-82.01574, 36.69245],\n      [-82.01532, 36.69262],\n      [-82.01442, 36.69295],\n      [-82.01392, 36.69311],\n      [-82.01342, 36.69326],\n      [-82.01294, 36.69339],\n      [-82.01266, 36.69346],\n      [-82.01255, 36.69349],\n      [-82.01172, 36.69366],\n      [-82.01165, 36.69368],\n      [-82.01142, 36.69374],\n      [-82.01111, 36.6938],\n      [-82.01055, 36.6939],\n      [-82.01038, 36.69392],\n      [-82.01011, 36.69396],\n      [-82.00887, 36.6941],\n      [-82.00834, 36.69416],\n      [-82.00795, 36.69421],\n      [-82.00647, 36.69437],\n      [-82.00594, 36.69443],\n      [-82.00454, 36.69458],\n      [-82.00397, 36.69464],\n      [-82.00352, 36.69469],\n      [-82.00189, 36.69488],\n      [-82.00096, 36.69498],\n      [-81.99955, 36.69514],\n      [-81.99835, 36.69526],\n      [-81.9957, 36.69556],\n      [-81.99416, 36.69573],\n      [-81.99308, 36.69586],\n      [-81.99244, 36.69595],\n      [-81.99194, 36.69604],\n      [-81.99138, 36.69615],\n      [-81.99106, 36.69622],\n      [-81.99057, 36.69633],\n      [-81.99029, 36.69641],\n      [-81.99004, 36.69647],\n      [-81.98958, 36.6966],\n      [-81.98902, 36.69678],\n      [-81.98848, 36.69696],\n      [-81.9881, 36.6971],\n      [-81.98725, 36.69743],\n      [-81.98649, 36.69773],\n      [-81.98566, 36.69806],\n      [-81.98508, 36.69827],\n      [-81.98467, 36.69842],\n      [-81.98422, 36.69856],\n      [-81.98403, 36.69862],\n      [-81.98386, 36.69867],\n      [-81.9836, 36.69875],\n      [-81.98308, 36.69889],\n      [-81.98258, 36.69901],\n      [-81.98209, 36.69912],\n      [-81.98138, 36.69925],\n      [-81.98091, 36.69933],\n      [-81.9804, 36.6994],\n      [-81.97987, 36.69946],\n      [-81.97912, 36.69954],\n      [-81.97898, 36.69955],\n      [-81.97886, 36.69956],\n      [-81.97854, 36.69958],\n      [-81.97797, 36.6996],\n      [-81.97763, 36.69961],\n      [-81.97715, 36.69962],\n      [-81.97676, 36.69961],\n      [-81.97622, 36.6996],\n      [-81.9759, 36.69958],\n      [-81.97544, 36.69955],\n      [-81.97488, 36.6995],\n      [-81.97425, 36.69945],\n      [-81.97285, 36.69934],\n      [-81.97259, 36.69931],\n      [-81.97146, 36.69922],\n      [-81.97089, 36.69919],\n      [-81.97061, 36.69918],\n      [-81.97042, 36.69918],\n      [-81.96955, 36.69917],\n      [-81.96914, 36.69918],\n      [-81.96853, 36.69921],\n      [-81.96782, 36.69926],\n      [-81.9674, 36.6993],\n      [-81.96694, 36.69935],\n      [-81.96648, 36.69941],\n      [-81.96616, 36.69946],\n      [-81.96544, 36.69958],\n      [-81.96501, 36.69966],\n      [-81.96439, 36.6998],\n      [-81.96375, 36.69996],\n      [-81.96332, 36.70008],\n      [-81.9629, 36.70021],\n      [-81.96254, 36.70032],\n      [-81.9622, 36.70043],\n      [-81.96155, 36.70067],\n      [-81.96118, 36.70081],\n      [-81.96061, 36.70105],\n      [-81.96009, 36.70128],\n      [-81.95957, 36.70152],\n      [-81.95921, 36.70172],\n      [-81.95893, 36.70185],\n      [-81.95855, 36.70208],\n      [-81.95788, 36.70247],\n      [-81.9542, 36.70484],\n      [-81.95388, 36.70506],\n      [-81.95245, 36.70594],\n      [-81.95225, 36.70607],\n      [-81.95196, 36.70626],\n      [-81.95173, 36.7064],\n      [-81.95107, 36.70677],\n      [-81.95014, 36.70727],\n      [-81.94906, 36.70783],\n      [-81.94812, 36.70827],\n      [-81.94777, 36.70842],\n      [-81.94751, 36.70855],\n      [-81.9469, 36.70881],\n      [-81.94618, 36.7091],\n      [-81.94609, 36.70914],\n      [-81.94537, 36.70941],\n      [-81.94378, 36.71],\n      [-81.94003, 36.71137],\n      [-81.93979, 36.71145],\n      [-81.93855, 36.71189],\n      [-81.93815, 36.71203],\n      [-81.9377, 36.7122],\n      [-81.93705, 36.71245],\n      [-81.93622, 36.71276],\n      [-81.93585, 36.71289],\n      [-81.9356, 36.71299],\n      [-81.93522, 36.71312],\n      [-81.9348, 36.71326],\n      [-81.93467, 36.7133],\n      [-81.9344, 36.71341],\n      [-81.93431, 36.71346],\n      [-81.93338, 36.71379],\n      [-81.9329, 36.71395],\n      [-81.93232, 36.71416],\n      [-81.93203, 36.71428],\n      [-81.93142, 36.71451],\n      [-81.93065, 36.7148],\n      [-81.9303, 36.71492],\n      [-81.92999, 36.71503],\n      [-81.92967, 36.71513],\n      [-81.92904, 36.71538],\n      [-81.92829, 36.71566],\n      [-81.92778, 36.71584],\n      [-81.92766, 36.71589],\n      [-81.92753, 36.71594],\n      [-81.92704, 36.71611],\n      [-81.92678, 36.7162],\n      [-81.92478, 36.71694],\n      [-81.92293, 36.71761],\n      [-81.92238, 36.71782],\n      [-81.92182, 36.71805],\n      [-81.92123, 36.71831],\n      [-81.92051, 36.71865],\n      [-81.91958, 36.71911],\n      [-81.91901, 36.71943],\n      [-81.91878, 36.71956],\n      [-81.91843, 36.71976],\n      [-81.91811, 36.71994],\n      [-81.91735, 36.72043],\n      [-81.91712, 36.72058],\n      [-81.9166, 36.72095],\n      [-81.91607, 36.72133],\n      [-81.91558, 36.72171],\n      [-81.9151, 36.7221],\n      [-81.91455, 36.72258],\n      [-81.91409, 36.72299],\n      [-81.91387, 36.72319],\n      [-81.913, 36.724],\n      [-81.91255, 36.72442],\n      [-81.9121, 36.72484],\n      [-81.91175, 36.72517],\n      [-81.91157, 36.72532],\n      [-81.91139, 36.7255],\n      [-81.91122, 36.72565],\n      [-81.91104, 36.72582],\n      [-81.91088, 36.72597],\n      [-81.91033, 36.72648],\n      [-81.90981, 36.72699],\n      [-81.90964, 36.72716],\n      [-81.90898, 36.72787],\n      [-81.90859, 36.72832],\n      [-81.90813, 36.7289],\n      [-81.90797, 36.7291],\n      [-81.90752, 36.72972],\n      [-81.90697, 36.73054],\n      [-81.90657, 36.7312],\n      [-81.90629, 36.73169],\n      [-81.90618, 36.7319],\n      [-81.90596, 36.73227],\n      [-81.9057, 36.73268],\n      [-81.90549, 36.73298],\n      [-81.9052, 36.73339],\n      [-81.90483, 36.73382],\n      [-81.90461, 36.73407],\n      [-81.90446, 36.73422],\n      [-81.90417, 36.73452],\n      [-81.90399, 36.73469],\n      [-81.90361, 36.73503],\n      [-81.90329, 36.7353],\n      [-81.90293, 36.73557],\n      [-81.90268, 36.73576],\n      [-81.9024, 36.73595],\n      [-81.90219, 36.73609],\n      [-81.90161, 36.73645],\n      [-81.90112, 36.73672],\n      [-81.90072, 36.73692],\n      [-81.89935, 36.73757],\n      [-81.89836, 36.73803],\n      [-81.89617, 36.73907],\n      [-81.89533, 36.73948],\n      [-81.89458, 36.73987],\n      [-81.89401, 36.74017],\n      [-81.8933, 36.74058],\n      [-81.89252, 36.74104],\n      [-81.89214, 36.74128],\n      [-81.89175, 36.74152],\n      [-81.89095, 36.74205],\n      [-81.89021, 36.74256],\n      [-81.88937, 36.74317],\n      [-81.88863, 36.74375],\n      [-81.88655, 36.74537],\n      [-81.88628, 36.74558],\n      [-81.8859, 36.74588],\n      [-81.88546, 36.74622],\n      [-81.88336, 36.74786],\n      [-81.88266, 36.74839],\n      [-81.88219, 36.74874],\n      [-81.88178, 36.74901],\n      [-81.88154, 36.74917],\n      [-81.88112, 36.74942],\n      [-81.88057, 36.74973],\n      [-81.87999, 36.75003],\n      [-81.87942, 36.75028],\n      [-81.87886, 36.75052],\n      [-81.87839, 36.7507],\n      [-81.87787, 36.75088],\n      [-81.87664, 36.75127],\n      [-81.8752, 36.75172],\n      [-81.87383, 36.75215],\n      [-81.86709, 36.75428],\n      [-81.8658, 36.75468],\n      [-81.86287, 36.75561],\n      [-81.8572, 36.7574],\n      [-81.85675, 36.75754],\n      [-81.85322, 36.75865],\n      [-81.8476, 36.76043],\n      [-81.84668, 36.76073],\n      [-81.84508, 36.76127],\n      [-81.83749, 36.7638],\n      [-81.83442, 36.76482],\n      [-81.83317, 36.76524],\n      [-81.83303, 36.76529],\n      [-81.83275, 36.76539],\n      [-81.83163, 36.76576],\n      [-81.8304, 36.76617],\n      [-81.82928, 36.76654],\n      [-81.82883, 36.76668],\n      [-81.8278, 36.76698],\n      [-81.82689, 36.76723],\n      [-81.82598, 36.76746],\n      [-81.82516, 36.76765],\n      [-81.82496, 36.76769],\n      [-81.82426, 36.76783],\n      [-81.82346, 36.76799],\n      [-81.82262, 36.76813],\n      [-81.82217, 36.7682],\n      [-81.82115, 36.76834],\n      [-81.82063, 36.76841],\n      [-81.82015, 36.76847],\n      [-81.8196, 36.76852],\n      [-81.81899, 36.76858],\n      [-81.81849, 36.76862],\n      [-81.81791, 36.76866],\n      [-81.81743, 36.76868],\n      [-81.81411, 36.76885],\n      [-81.80888, 36.7691],\n      [-81.80775, 36.76916],\n      [-81.80478, 36.76931],\n      [-81.80363, 36.76937],\n      [-81.79381, 36.76985],\n      [-81.79278, 36.76994],\n      [-81.79216, 36.76998],\n      [-81.79158, 36.77002],\n      [-81.79026, 36.77014],\n      [-81.78976, 36.7702],\n      [-81.7891, 36.77029],\n      [-81.7884, 36.77038],\n      [-81.78733, 36.77056],\n      [-81.7866, 36.77069],\n      [-81.78425, 36.77115],\n      [-81.78122, 36.77178],\n      [-81.78068, 36.77189],\n      [-81.77743, 36.7725],\n      [-81.77631, 36.77273],\n      [-81.77522, 36.77293],\n      [-81.77367, 36.77324],\n      [-81.773, 36.77338],\n      [-81.77262, 36.77347],\n      [-81.7721, 36.77359],\n      [-81.77171, 36.77369],\n      [-81.77072, 36.77395],\n      [-81.76992, 36.77418],\n      [-81.76916, 36.77441],\n      [-81.76837, 36.77468],\n      [-81.76828, 36.77471],\n      [-81.76757, 36.77496],\n      [-81.76499, 36.77595],\n      [-81.76182, 36.77715],\n      [-81.76121, 36.77737],\n      [-81.76061, 36.77757],\n      [-81.75993, 36.77778],\n      [-81.7594, 36.77793],\n      [-81.7588, 36.77809],\n      [-81.75823, 36.77823],\n      [-81.75762, 36.77837],\n      [-81.75683, 36.77853],\n      [-81.75628, 36.77863],\n      [-81.75431, 36.77893],\n      [-81.75381, 36.779],\n      [-81.75116, 36.7794],\n      [-81.74945, 36.77965],\n      [-81.7466, 36.78007],\n      [-81.74634, 36.78011],\n      [-81.74596, 36.78017],\n      [-81.74434, 36.78041],\n      [-81.74414, 36.78044],\n      [-81.74397, 36.78047],\n      [-81.74294, 36.78062],\n      [-81.74233, 36.78072],\n      [-81.74164, 36.78084],\n      [-81.741, 36.78097],\n      [-81.74044, 36.78108],\n      [-81.73974, 36.78124],\n      [-81.73909, 36.78139],\n      [-81.73856, 36.78153],\n      [-81.73786, 36.78172],\n      [-81.73762, 36.7818],\n      [-81.7372, 36.78194],\n      [-81.73696, 36.78203],\n      [-81.73668, 36.78214],\n      [-81.73634, 36.78228],\n      [-81.73599, 36.78244],\n      [-81.73565, 36.7826],\n      [-81.73549, 36.78268],\n      [-81.73531, 36.78277],\n      [-81.7348, 36.78304],\n      [-81.73454, 36.78318],\n      [-81.73429, 36.78332],\n      [-81.73292, 36.78406],\n      [-81.73229, 36.7844],\n      [-81.7319, 36.7846],\n      [-81.7314, 36.78484],\n      [-81.73073, 36.78513],\n      [-81.73033, 36.7853],\n      [-81.72997, 36.78544],\n      [-81.72986, 36.78548],\n      [-81.72933, 36.78567],\n      [-81.72886, 36.78583],\n      [-81.72824, 36.78601],\n      [-81.72769, 36.78616],\n      [-81.72726, 36.78627],\n      [-81.72691, 36.78635],\n      [-81.72634, 36.78648],\n      [-81.72552, 36.78662],\n      [-81.7243, 36.78682],\n      [-81.72364, 36.78692],\n      [-81.71994, 36.78749],\n      [-81.71933, 36.78758],\n      [-81.71872, 36.78768],\n      [-81.71462, 36.78831],\n      [-81.71401, 36.7884],\n      [-81.71351, 36.78846],\n      [-81.71288, 36.78853],\n      [-81.71245, 36.78856],\n      [-81.71206, 36.78859],\n      [-81.7117, 36.78861],\n      [-81.71117, 36.78862],\n      [-81.71074, 36.78862],\n      [-81.71037, 36.78862],\n      [-81.70979, 36.78861],\n      [-81.70927, 36.78858],\n      [-81.70869, 36.78854],\n      [-81.70819, 36.78849],\n      [-81.70765, 36.78843],\n      [-81.707, 36.78833],\n      [-81.70649, 36.78824],\n      [-81.70557, 36.78806],\n      [-81.70479, 36.78788],\n      [-81.70437, 36.78776],\n      [-81.70373, 36.78758],\n      [-81.70341, 36.78748],\n      [-81.7029, 36.7873],\n      [-81.7025, 36.78716],\n      [-81.70162, 36.78681],\n      [-81.70119, 36.78663],\n      [-81.7007, 36.78644],\n      [-81.70044, 36.78634],\n      [-81.70018, 36.78625],\n      [-81.69996, 36.78618],\n      [-81.69964, 36.78609],\n      [-81.6992, 36.78598],\n      [-81.69891, 36.78592],\n      [-81.69889, 36.78592],\n      [-81.69851, 36.78585],\n      [-81.69807, 36.7858],\n      [-81.69752, 36.78575],\n      [-81.69723, 36.78574],\n      [-81.69684, 36.78573],\n      [-81.69654, 36.78574],\n      [-81.69616, 36.78576],\n      [-81.69573, 36.7858],\n      [-81.69531, 36.78586],\n      [-81.6949, 36.78593],\n      [-81.69455, 36.786],\n      [-81.69413, 36.7861],\n      [-81.69384, 36.78619],\n      [-81.69336, 36.78634],\n      [-81.69288, 36.7865],\n      [-81.69228, 36.78671],\n      [-81.69166, 36.78695],\n      [-81.69104, 36.7872],\n      [-81.69051, 36.78743],\n      [-81.68983, 36.78774],\n      [-81.68928, 36.78801],\n      [-81.68862, 36.78835],\n      [-81.68811, 36.78864],\n      [-81.68752, 36.78898],\n      [-81.68706, 36.78926],\n      [-81.68695, 36.78933],\n      [-81.68684, 36.7894],\n      [-81.68639, 36.78969],\n      [-81.68583, 36.79007],\n      [-81.6854, 36.79039],\n      [-81.68484, 36.79082],\n      [-81.68453, 36.79107],\n      [-81.68399, 36.79151],\n      [-81.68358, 36.79185],\n      [-81.68324, 36.79215],\n      [-81.68284, 36.79251],\n      [-81.6826, 36.79272],\n      [-81.68082, 36.79428],\n      [-81.68036, 36.79468],\n      [-81.67998, 36.79501],\n      [-81.67957, 36.79538],\n      [-81.67901, 36.79585],\n      [-81.67878, 36.79603],\n      [-81.67868, 36.79612],\n      [-81.67829, 36.79646],\n      [-81.67676, 36.79779],\n      [-81.67596, 36.7985],\n      [-81.67521, 36.79914],\n      [-81.67475, 36.79952],\n      [-81.67402, 36.80008],\n      [-81.67209, 36.80149],\n      [-81.66881, 36.80387],\n      [-81.66812, 36.80436],\n      [-81.66766, 36.80466],\n      [-81.66708, 36.80504],\n      [-81.66627, 36.80555],\n      [-81.66568, 36.8059],\n      [-81.66365, 36.80707],\n      [-81.66324, 36.80728],\n      [-81.66284, 36.80753],\n      [-81.66264, 36.80765],\n      [-81.66238, 36.80779],\n      [-81.66189, 36.80805],\n      [-81.66156, 36.80821],\n      [-81.66115, 36.80839],\n      [-81.66062, 36.8086],\n      [-81.66017, 36.80876],\n      [-81.65972, 36.80891],\n      [-81.65918, 36.80907],\n      [-81.65873, 36.80918],\n      [-81.65847, 36.80924],\n      [-81.65802, 36.80933],\n      [-81.65738, 36.80944],\n      [-81.65691, 36.8095],\n      [-81.65644, 36.80955],\n      [-81.65597, 36.80958],\n      [-81.65546, 36.8096],\n      [-81.65495, 36.80961],\n      [-81.65493, 36.80961],\n      [-81.65161, 36.80958],\n      [-81.65062, 36.80955],\n      [-81.64996, 36.80953],\n      [-81.64908, 36.80948],\n      [-81.64826, 36.80941],\n      [-81.64745, 36.80934],\n      [-81.64636, 36.80922],\n      [-81.6446, 36.80897],\n      [-81.64298, 36.80873],\n      [-81.64204, 36.80859],\n      [-81.64003, 36.80829],\n      [-81.63719, 36.80786],\n      [-81.63613, 36.80769],\n      [-81.63384, 36.80731],\n      [-81.63278, 36.80713],\n      [-81.63192, 36.80699],\n      [-81.62962, 36.8066],\n      [-81.62852, 36.80644],\n      [-81.62817, 36.8064],\n      [-81.62758, 36.80634],\n      [-81.62701, 36.8063],\n      [-81.62644, 36.80627],\n      [-81.62633, 36.80627],\n      [-81.6252, 36.80626],\n      [-81.62432, 36.80629],\n      [-81.62323, 36.8064],\n      [-81.622, 36.80656],\n      [-81.62097, 36.80678],\n      [-81.62078, 36.80682],\n      [-81.62044, 36.8069],\n      [-81.61967, 36.80711],\n      [-81.61925, 36.80724],\n      [-81.61866, 36.80744],\n      [-81.61764, 36.80783],\n      [-81.61722, 36.808],\n      [-81.61658, 36.8083],\n      [-81.61617, 36.8085],\n      [-81.61574, 36.80873],\n      [-81.61555, 36.80884],\n      [-81.61537, 36.80894],\n      [-81.61484, 36.80925],\n      [-81.61455, 36.80944],\n      [-81.61405, 36.80976],\n      [-81.61377, 36.80994],\n      [-81.61227, 36.81091],\n      [-81.61188, 36.81115],\n      [-81.6115, 36.81136],\n      [-81.61117, 36.81154],\n      [-81.61076, 36.81173],\n      [-81.61046, 36.81185],\n      [-81.61008, 36.812],\n      [-81.60967, 36.81214],\n      [-81.60937, 36.81223],\n      [-81.60901, 36.81233],\n      [-81.60864, 36.81241],\n      [-81.60821, 36.81249],\n      [-81.60787, 36.81255],\n      [-81.60694, 36.81265],\n      [-81.60628, 36.81268],\n      [-81.60269, 36.81275],\n      [-81.59525, 36.8129],\n      [-81.59264, 36.81294],\n      [-81.59004, 36.81299],\n      [-81.58901, 36.813],\n      [-81.5881, 36.81299],\n      [-81.58726, 36.81297],\n      [-81.58619, 36.81292],\n      [-81.58575, 36.81289],\n      [-81.58544, 36.81286],\n      [-81.5843, 36.81277],\n      [-81.58361, 36.8127],\n      [-81.58247, 36.81255],\n      [-81.58157, 36.81243],\n      [-81.58091, 36.81232],\n      [-81.58065, 36.81227],\n      [-81.57868, 36.81196],\n      [-81.57834, 36.8119],\n      [-81.57594, 36.81152],\n      [-81.57492, 36.81136],\n      [-81.5741, 36.81126],\n      [-81.57362, 36.81123],\n      [-81.57311, 36.8112],\n      [-81.57262, 36.8112],\n      [-81.57215, 36.8112],\n      [-81.57169, 36.81123],\n      [-81.57122, 36.81126],\n      [-81.57072, 36.81132],\n      [-81.57021, 36.81139],\n      [-81.56969, 36.81148],\n      [-81.56917, 36.81158],\n      [-81.56844, 36.81174],\n      [-81.56552, 36.81235],\n      [-81.56362, 36.81274],\n      [-81.56311, 36.81285],\n      [-81.56266, 36.81297],\n      [-81.56226, 36.81309],\n      [-81.56211, 36.81314],\n      [-81.56163, 36.8133],\n      [-81.56109, 36.81351],\n      [-81.56073, 36.81367],\n      [-81.56037, 36.81384],\n      [-81.55985, 36.81412],\n      [-81.55936, 36.81441],\n      [-81.55913, 36.81456],\n      [-81.559, 36.81465],\n      [-81.55821, 36.81523],\n      [-81.55807, 36.81534],\n      [-81.5567, 36.81634],\n      [-81.55619, 36.81666],\n      [-81.5559, 36.81684],\n      [-81.55556, 36.81703],\n      [-81.55539, 36.81712],\n      [-81.55475, 36.81743],\n      [-81.55421, 36.81767],\n      [-81.55387, 36.81779],\n      [-81.55343, 36.81796],\n      [-81.5521, 36.8184],\n      [-81.55172, 36.81852],\n      [-81.55028, 36.81899],\n      [-81.54967, 36.8192],\n      [-81.54872, 36.81949],\n      [-81.54813, 36.81968],\n      [-81.54721, 36.82],\n      [-81.54685, 36.82012],\n      [-81.54646, 36.82025],\n      [-81.54519, 36.82066],\n      [-81.54485, 36.82077],\n      [-81.54406, 36.821],\n      [-81.54327, 36.8212],\n      [-81.54254, 36.82137],\n      [-81.54233, 36.82141],\n      [-81.54169, 36.82154],\n      [-81.54115, 36.82164],\n      [-81.54058, 36.82173],\n      [-81.54041, 36.82176],\n      [-81.54022, 36.82178],\n      [-81.53954, 36.82187],\n      [-81.53892, 36.82193],\n      [-81.53764, 36.82204],\n      [-81.53729, 36.82207],\n      [-81.53589, 36.82218],\n      [-81.53586, 36.82218],\n      [-81.53558, 36.82219],\n      [-81.53425, 36.82228],\n      [-81.53393, 36.8223],\n      [-81.53355, 36.82234],\n      [-81.53037, 36.82257],\n      [-81.52949, 36.82264],\n      [-81.52855, 36.82269],\n      [-81.52799, 36.82271],\n      [-81.52745, 36.82272],\n      [-81.52725, 36.82273],\n      [-81.52609, 36.82273],\n      [-81.52551, 36.82273],\n      [-81.52511, 36.82272],\n      [-81.51875, 36.82267],\n      [-81.51831, 36.82267],\n      [-81.51806, 36.82267],\n      [-81.5173, 36.82268],\n      [-81.51679, 36.82271],\n      [-81.51641, 36.82274],\n      [-81.51558, 36.82283],\n      [-81.51504, 36.82291],\n      [-81.51467, 36.82296],\n      [-81.51409, 36.82307],\n      [-81.51355, 36.82319],\n      [-81.51307, 36.82332],\n      [-81.51261, 36.82345],\n      [-81.51256, 36.82346],\n      [-81.51207, 36.82362],\n      [-81.51168, 36.82375],\n      [-81.5113, 36.82389],\n      [-81.51095, 36.82403],\n      [-81.51033, 36.82425],\n      [-81.50956, 36.82464],\n      [-81.50893, 36.82502],\n      [-81.50845, 36.8253],\n      [-81.50809, 36.82553],\n      [-81.50773, 36.82577],\n      [-81.50742, 36.82599],\n      [-81.50736, 36.82603],\n      [-81.50707, 36.82626],\n      [-81.50684, 36.8264],\n      [-81.50636, 36.82683],\n      [-81.50619, 36.82701],\n      [-81.50448, 36.82865],\n      [-81.50389, 36.82921],\n      [-81.50341, 36.82968],\n      [-81.50323, 36.82984],\n      [-81.50303, 36.83002],\n      [-81.50287, 36.83018],\n      [-81.50265, 36.83038],\n      [-81.50249, 36.83054],\n      [-81.50188, 36.83111],\n      [-81.50153, 36.83146],\n      [-81.50114, 36.83185],\n      [-81.50088, 36.83215],\n      [-81.5004, 36.83272],\n      [-81.50023, 36.83293],\n      [-81.5001, 36.83311],\n      [-81.50002, 36.83321],\n      [-81.49965, 36.83374],\n      [-81.49958, 36.83385],\n      [-81.49929, 36.8343],\n      [-81.49852, 36.83548],\n      [-81.49827, 36.83583],\n      [-81.49788, 36.83634],\n      [-81.49758, 36.83671],\n      [-81.4973, 36.83703],\n      [-81.49703, 36.83732],\n      [-81.4967, 36.83767],\n      [-81.49633, 36.83802],\n      [-81.49504, 36.83928],\n      [-81.49497, 36.83934],\n      [-81.49464, 36.83966],\n      [-81.49407, 36.84023],\n      [-81.49276, 36.8415],\n      [-81.49212, 36.84213],\n      [-81.49121, 36.84303],\n      [-81.49093, 36.84328],\n      [-81.48709, 36.84704],\n      [-81.48677, 36.84735],\n      [-81.48653, 36.84759],\n      [-81.48407, 36.84997],\n      [-81.48381, 36.85022],\n      [-81.48348, 36.85052],\n      [-81.48338, 36.8506],\n      [-81.48313, 36.85079],\n      [-81.48288, 36.85096],\n      [-81.48261, 36.85113],\n      [-81.48232, 36.85129],\n      [-81.48203, 36.85143],\n      [-81.48173, 36.85156],\n      [-81.48143, 36.85168],\n      [-81.48117, 36.85177],\n      [-81.48085, 36.85186],\n      [-81.48053, 36.85195],\n      [-81.48013, 36.85202],\n      [-81.47979, 36.85207],\n      [-81.47946, 36.85211],\n      [-81.47905, 36.85213],\n      [-81.47864, 36.85214],\n      [-81.47834, 36.85212],\n      [-81.47796, 36.85209],\n      [-81.47758, 36.85205],\n      [-81.4772, 36.85199],\n      [-81.47698, 36.85195],\n      [-81.47495, 36.8516],\n      [-81.47467, 36.85156],\n      [-81.47425, 36.85151],\n      [-81.47408, 36.8515],\n      [-81.47367, 36.85148],\n      [-81.47339, 36.85148],\n      [-81.47303, 36.8515],\n      [-81.47267, 36.85152],\n      [-81.47232, 36.85156],\n      [-81.47196, 36.85162],\n      [-81.47161, 36.85168],\n      [-81.47134, 36.85175],\n      [-81.471, 36.85184],\n      [-81.47066, 36.85194],\n      [-81.47034, 36.85206],\n      [-81.47002, 36.85219],\n      [-81.46946, 36.85245],\n      [-81.46748, 36.8535],\n      [-81.46689, 36.85381],\n      [-81.46564, 36.85445],\n      [-81.46448, 36.85501],\n      [-81.46351, 36.85544],\n      [-81.46267, 36.8558],\n      [-81.462, 36.85608],\n      [-81.46179, 36.85616],\n      [-81.46146, 36.85629],\n      [-81.46097, 36.85648],\n      [-81.45595, 36.85848],\n      [-81.45536, 36.85874],\n      [-81.45003, 36.86086],\n      [-81.44909, 36.86121],\n      [-81.44884, 36.86129],\n      [-81.44854, 36.86138],\n      [-81.44804, 36.86153],\n      [-81.44771, 36.86161],\n      [-81.44718, 36.86173],\n      [-81.44657, 36.86184],\n      [-81.44616, 36.86191],\n      [-81.44581, 36.86195],\n      [-81.44524, 36.86201],\n      [-81.44085, 36.86237],\n      [-81.43824, 36.86259],\n      [-81.43648, 36.86274],\n      [-81.43445, 36.86291],\n      [-81.4338, 36.86299],\n      [-81.43287, 36.86305],\n      [-81.43156, 36.86318],\n      [-81.43084, 36.86326],\n      [-81.4296, 36.86342],\n      [-81.42934, 36.86345],\n      [-81.42778, 36.86367],\n      [-81.4268, 36.86383],\n      [-81.42541, 36.86406],\n      [-81.42425, 36.86428],\n      [-81.42322, 36.86448],\n      [-81.42299, 36.86452],\n      [-81.4224, 36.86465],\n      [-81.42177, 36.86478],\n      [-81.42059, 36.86504],\n      [-81.41929, 36.86535],\n      [-81.41837, 36.86558],\n      [-81.41721, 36.86589],\n      [-81.41613, 36.86619],\n      [-81.41512, 36.86648],\n      [-81.41451, 36.86667],\n      [-81.41339, 36.86701],\n      [-81.41226, 36.86738],\n      [-81.41148, 36.86764],\n      [-81.41026, 36.86807],\n      [-81.40974, 36.86826],\n      [-81.40891, 36.86857],\n      [-81.40859, 36.8687],\n      [-81.40815, 36.86886],\n      [-81.40558, 36.86988],\n      [-81.40507, 36.87007],\n      [-81.40356, 36.87068],\n      [-81.40317, 36.87084],\n      [-81.40275, 36.87103],\n      [-81.40237, 36.87123],\n      [-81.40192, 36.87148],\n      [-81.40143, 36.87179],\n      [-81.40112, 36.872],\n      [-81.40069, 36.87233],\n      [-81.40004, 36.8729],\n      [-81.39957, 36.87337],\n      [-81.39933, 36.87365],\n      [-81.39909, 36.87394],\n      [-81.39881, 36.87433],\n      [-81.39796, 36.87548],\n      [-81.39721, 36.87642],\n      [-81.39688, 36.87681],\n      [-81.39668, 36.87705],\n      [-81.39632, 36.87741],\n      [-81.39596, 36.87775],\n      [-81.39567, 36.87801],\n      [-81.39526, 36.87835],\n      [-81.39483, 36.87867],\n      [-81.39444, 36.87893],\n      [-81.39411, 36.87914],\n      [-81.39378, 36.87934],\n      [-81.39331, 36.87959],\n      [-81.39284, 36.87984],\n      [-81.39236, 36.88005],\n      [-81.39207, 36.88018],\n      [-81.39127, 36.88049],\n      [-81.39121, 36.88052],\n      [-81.38976, 36.88108],\n      [-81.38481, 36.88305],\n      [-81.38395, 36.88339],\n      [-81.37705, 36.88612],\n      [-81.37569, 36.88666],\n      [-81.37491, 36.88696],\n      [-81.37222, 36.88803],\n      [-81.3716, 36.88828],\n      [-81.37106, 36.88849],\n      [-81.37075, 36.88861],\n      [-81.36756, 36.88988],\n      [-81.36395, 36.89131],\n      [-81.3587, 36.89338],\n      [-81.35826, 36.89355],\n      [-81.35808, 36.89362],\n      [-81.35745, 36.89385],\n      [-81.35655, 36.89416],\n      [-81.35569, 36.89445],\n      [-81.3548, 36.89473],\n      [-81.35391, 36.895],\n      [-81.35287, 36.89529],\n      [-81.35199, 36.89552],\n      [-81.35116, 36.89573],\n      [-81.35026, 36.89594],\n      [-81.34903, 36.8962],\n      [-81.34851, 36.89631],\n      [-81.34828, 36.89635],\n      [-81.34772, 36.89646],\n      [-81.34063, 36.89777],\n      [-81.33766, 36.89831],\n      [-81.33333, 36.89911],\n      [-81.33213, 36.89933],\n      [-81.33103, 36.89955],\n      [-81.32981, 36.8998],\n      [-81.32804, 36.90017],\n      [-81.32778, 36.90023],\n      [-81.32749, 36.90029],\n      [-81.32659, 36.90049],\n      [-81.32513, 36.90084],\n      [-81.32328, 36.90131],\n      [-81.32194, 36.90166],\n      [-81.31971, 36.90227],\n      [-81.31841, 36.90263],\n      [-81.31747, 36.90291],\n      [-81.31643, 36.90323],\n      [-81.31477, 36.90375],\n      [-81.31308, 36.90432],\n      [-81.31232, 36.90459],\n      [-81.31133, 36.90494],\n      [-81.31045, 36.90527],\n      [-81.30961, 36.90558],\n      [-81.30925, 36.90572],\n      [-81.30818, 36.90612],\n      [-81.30677, 36.90664],\n      [-81.30566, 36.90704],\n      [-81.30431, 36.9075],\n      [-81.30332, 36.90783],\n      [-81.30237, 36.90813],\n      [-81.30102, 36.90855],\n      [-81.29956, 36.90898],\n      [-81.29793, 36.90945],\n      [-81.29667, 36.90981],\n      [-81.29497, 36.9103],\n      [-81.29422, 36.91051],\n      [-81.2937, 36.91067],\n      [-81.29268, 36.91096],\n      [-81.29254, 36.91099],\n      [-81.29049, 36.91158],\n      [-81.28971, 36.9118],\n      [-81.2892, 36.91195],\n      [-81.28882, 36.91205],\n      [-81.28814, 36.91225],\n      [-81.28778, 36.91236],\n      [-81.28083, 36.91434],\n      [-81.2798, 36.91463],\n      [-81.27916, 36.91479],\n      [-81.27825, 36.91502],\n      [-81.27816, 36.91504],\n      [-81.27707, 36.91527],\n      [-81.27626, 36.91543],\n      [-81.27533, 36.91559],\n      [-81.27467, 36.9157],\n      [-81.274, 36.91579],\n      [-81.27347, 36.91587],\n      [-81.27307, 36.91592],\n      [-81.27283, 36.91594],\n      [-81.27204, 36.91603],\n      [-81.2712, 36.9161],\n      [-81.27027, 36.91619],\n      [-81.26966, 36.91624],\n      [-81.26742, 36.91645],\n      [-81.26593, 36.91658],\n      [-81.26291, 36.91685],\n      [-81.25984, 36.91713],\n      [-81.2597, 36.91714],\n      [-81.25943, 36.91717],\n      [-81.2578, 36.91732],\n      [-81.25659, 36.91743],\n      [-81.25537, 36.91756],\n      [-81.25387, 36.91773],\n      [-81.25293, 36.91785],\n      [-81.25091, 36.91813],\n      [-81.24862, 36.91845],\n      [-81.24849, 36.91847],\n      [-81.24145, 36.91946],\n      [-81.23621, 36.9202],\n      [-81.23464, 36.92043],\n      [-81.23323, 36.92065],\n      [-81.23232, 36.9208],\n      [-81.23136, 36.92098],\n      [-81.23031, 36.92117],\n      [-81.22965, 36.9213],\n      [-81.22819, 36.9216],\n      [-81.22665, 36.92193],\n      [-81.22582, 36.92211],\n      [-81.22508, 36.92228],\n      [-81.21173, 36.92523],\n      [-81.20118, 36.92756],\n      [-81.20069, 36.92767],\n      [-81.19795, 36.92828],\n      [-81.18991, 36.93005],\n      [-81.18845, 36.93038],\n      [-81.18793, 36.9305],\n      [-81.18701, 36.93072],\n      [-81.18623, 36.93092],\n      [-81.17834, 36.93305],\n      [-81.17599, 36.93368],\n      [-81.16907, 36.93555],\n      [-81.16846, 36.93571],\n      [-81.16825, 36.93576],\n      [-81.16758, 36.93593],\n      [-81.16583, 36.93632],\n      [-81.16553, 36.93638],\n      [-81.16494, 36.93649],\n      [-81.16393, 36.93666],\n      [-81.16342, 36.93674],\n      [-81.15987, 36.93722],\n      [-81.1591, 36.93733],\n      [-81.15847, 36.93745],\n      [-81.15795, 36.93756],\n      [-81.15744, 36.93769],\n      [-81.15714, 36.93777],\n      [-81.1566, 36.93793],\n      [-81.15656, 36.93795],\n      [-81.15623, 36.93806],\n      [-81.15568, 36.93826],\n      [-81.15521, 36.93845],\n      [-81.15484, 36.93861],\n      [-81.15438, 36.93883],\n      [-81.1542, 36.93892],\n      [-81.15404, 36.93901],\n      [-81.15376, 36.93915],\n      [-81.15333, 36.9394],\n      [-81.15302, 36.93959],\n      [-81.15263, 36.93984],\n      [-81.15239, 36.94001],\n      [-81.15203, 36.94026],\n      [-81.15167, 36.94054],\n      [-81.15129, 36.94087],\n      [-81.15074, 36.94136],\n      [-81.15069, 36.94141],\n      [-81.14966, 36.94241],\n      [-81.14795, 36.94413],\n      [-81.14777, 36.94428],\n      [-81.14736, 36.94468],\n      [-81.14729, 36.94475],\n      [-81.14723, 36.94481],\n      [-81.14677, 36.94528],\n      [-81.14656, 36.94546],\n      [-81.14621, 36.94578],\n      [-81.14592, 36.94603],\n      [-81.14567, 36.94624],\n      [-81.14525, 36.94656],\n      [-81.14483, 36.94685],\n      [-81.14463, 36.94698],\n      [-81.14419, 36.94725],\n      [-81.1438, 36.94747],\n      [-81.14346, 36.94765],\n      [-81.14342, 36.94767],\n      [-81.14289, 36.94792],\n      [-81.14238, 36.94814],\n      [-81.14224, 36.9482],\n      [-81.14184, 36.94834],\n      [-81.1413, 36.94853],\n      [-81.14072, 36.9487],\n      [-81.14024, 36.94882],\n      [-81.13981, 36.94892],\n      [-81.13947, 36.94899],\n      [-81.139, 36.94907],\n      [-81.13839, 36.94915],\n      [-81.13774, 36.94922],\n      [-81.13528, 36.94942],\n      [-81.13451, 36.9495],\n      [-81.13412, 36.94955],\n      [-81.13359, 36.94963],\n      [-81.13292, 36.94974],\n      [-81.13239, 36.94985],\n      [-81.13187, 36.94997],\n      [-81.13161, 36.95003],\n      [-81.13122, 36.95013],\n      [-81.13063, 36.9503],\n      [-81.13044, 36.95036],\n      [-81.12967, 36.95061],\n      [-81.12891, 36.95086],\n      [-81.12324, 36.95272],\n      [-81.12191, 36.95316],\n      [-81.11983, 36.95384],\n      [-81.11887, 36.95413],\n      [-81.11712, 36.95465],\n      [-81.11307, 36.95582],\n      [-81.10427, 36.95838],\n      [-81.10353, 36.95858],\n      [-81.10299, 36.95873],\n      [-81.1023, 36.95894],\n      [-81.1019, 36.95907],\n      [-81.10106, 36.95932],\n      [-81.10063, 36.95944],\n      [-81.10002, 36.95962],\n      [-81.09912, 36.95988],\n      [-81.0983, 36.96013],\n      [-81.09353, 36.96151],\n      [-81.09186, 36.96199],\n      [-81.09177, 36.96202],\n      [-81.09083, 36.96229],\n      [-81.08954, 36.96267],\n      [-81.08933, 36.96273],\n      [-81.08626, 36.96362],\n      [-81.08561, 36.96381],\n      [-81.08455, 36.96412],\n      [-81.08373, 36.96436],\n      [-81.08342, 36.96446],\n      [-81.08213, 36.96483],\n      [-81.08044, 36.96531],\n      [-81.07994, 36.96543],\n      [-81.07992, 36.96543],\n      [-81.07971, 36.96547],\n      [-81.07954, 36.96551],\n      [-81.07932, 36.96555],\n      [-81.07894, 36.96559],\n      [-81.07838, 36.96561],\n      [-81.07813, 36.96561],\n      [-81.07811, 36.96561],\n      [-81.07768, 36.9656],\n      [-81.07722, 36.96556],\n      [-81.07696, 36.96553],\n      [-81.07666, 36.96548],\n      [-81.07624, 36.9654],\n      [-81.07601, 36.96534],\n      [-81.07555, 36.96521],\n      [-81.07516, 36.96507],\n      [-81.075, 36.96501],\n      [-81.07453, 36.96482],\n      [-81.07276, 36.96407],\n      [-81.07232, 36.96388],\n      [-81.07145, 36.96351],\n      [-81.07137, 36.96347],\n      [-81.07086, 36.96326],\n      [-81.06893, 36.96244],\n      [-81.06868, 36.96233],\n      [-81.06651, 36.96141],\n      [-81.06568, 36.96106],\n      [-81.06514, 36.96084],\n      [-81.06424, 36.96045],\n      [-81.06219, 36.95957],\n      [-81.0607, 36.95894],\n      [-81.06013, 36.95869],\n      [-81.05962, 36.95845],\n      [-81.0594, 36.95833],\n      [-81.05897, 36.95809],\n      [-81.05856, 36.95784],\n      [-81.05824, 36.95762],\n      [-81.05812, 36.95754],\n      [-81.05793, 36.9574],\n      [-81.05769, 36.95721],\n      [-81.05729, 36.9568],\n      [-81.05714, 36.95668],\n      [-81.05691, 36.95646],\n      [-81.05672, 36.95627],\n      [-81.05657, 36.9561],\n      [-81.05655, 36.95608],\n      [-81.05634, 36.95583],\n      [-81.05612, 36.95555],\n      [-81.056, 36.95539],\n      [-81.05597, 36.95535],\n      [-81.05582, 36.95514],\n      [-81.05565, 36.95489],\n      [-81.05537, 36.9544],\n      [-81.05525, 36.95419],\n      [-81.05511, 36.9539],\n      [-81.05496, 36.95357],\n      [-81.05488, 36.95337],\n      [-81.05474, 36.95298],\n      [-81.05465, 36.95269],\n      [-81.05455, 36.9523],\n      [-81.0545, 36.95209],\n      [-81.05417, 36.95087],\n      [-81.05409, 36.95057],\n      [-81.05398, 36.95018],\n      [-81.0539, 36.94995],\n      [-81.05379, 36.94969],\n      [-81.05366, 36.9494],\n      [-81.05352, 36.94912],\n      [-81.05345, 36.94902],\n      [-81.0534, 36.94892],\n      [-81.05338, 36.9489],\n      [-81.05322, 36.94869],\n      [-81.05317, 36.94863],\n      [-81.05311, 36.94856],\n      [-81.05297, 36.94839],\n      [-81.05268, 36.94808],\n      [-81.05252, 36.94793],\n      [-81.05227, 36.94771],\n      [-81.05204, 36.94753],\n      [-81.05182, 36.94737],\n      [-81.05144, 36.94713],\n      [-81.05112, 36.94694],\n      [-81.05077, 36.94677],\n      [-81.05069, 36.94673],\n      [-81.0504, 36.94661],\n      [-81.05008, 36.94649],\n      [-81.04974, 36.94638],\n      [-81.04906, 36.94621],\n      [-81.04804, 36.94604],\n      [-81.04785, 36.94601],\n      [-81.0466, 36.94581],\n      [-81.04626, 36.94576],\n      [-81.04559, 36.94569],\n      [-81.04507, 36.94566],\n      [-81.04442, 36.94563],\n      [-81.04406, 36.94563],\n      [-81.0436, 36.94564],\n      [-81.04304, 36.94567],\n      [-81.04267, 36.9457],\n      [-81.04219, 36.94575],\n      [-81.0418, 36.9458],\n      [-81.04095, 36.94594],\n      [-81.04049, 36.94602],\n      [-81.03808, 36.94642],\n      [-81.03741, 36.94651],\n      [-81.03703, 36.94654],\n      [-81.03668, 36.94655],\n      [-81.03638, 36.94656],\n      [-81.03596, 36.94656],\n      [-81.03558, 36.94654],\n      [-81.03522, 36.94651],\n      [-81.03482, 36.94647],\n      [-81.0343, 36.9464],\n      [-81.03367, 36.94628],\n      [-81.03235, 36.94595],\n      [-81.03169, 36.94581],\n      [-81.0294, 36.94527],\n      [-81.02858, 36.94506],\n      [-81.02828, 36.94496],\n      [-81.02786, 36.94481],\n      [-81.02751, 36.94466],\n      [-81.02703, 36.94441],\n      [-81.02682, 36.94429],\n      [-81.02656, 36.94412],\n      [-81.02616, 36.94381],\n      [-81.02595, 36.94364],\n      [-81.02572, 36.94342],\n      [-81.02532, 36.94306],\n      [-81.02443, 36.94222],\n      [-81.02403, 36.94188],\n      [-81.02379, 36.94171],\n      [-81.02375, 36.94168],\n      [-81.0236, 36.94158],\n      [-81.02356, 36.94155],\n      [-81.02328, 36.9414],\n      [-81.02304, 36.94128],\n      [-81.02276, 36.94116],\n      [-81.02248, 36.94105],\n      [-81.02225, 36.94098],\n      [-81.02194, 36.9409],\n      [-81.02173, 36.94085],\n      [-81.02142, 36.9408],\n      [-81.02116, 36.94077],\n      [-81.02087, 36.94074],\n      [-81.02058, 36.94073],\n      [-81.02022, 36.94073],\n      [-81.01546, 36.94083],\n      [-81.01468, 36.94084],\n      [-81.01449, 36.94084],\n      [-81.01268, 36.94085],\n      [-81.01083, 36.94085],\n      [-81.00941, 36.94085],\n      [-81.00883, 36.94084],\n      [-81.0086, 36.94083],\n      [-81.00793, 36.94076],\n      [-81.00771, 36.94072],\n      [-81.00726, 36.94062],\n      [-81.00698, 36.94054],\n      [-81.00663, 36.94044],\n      [-81.00639, 36.94035],\n      [-81.00609, 36.94023],\n      [-81.00546, 36.93995],\n      [-81.00323, 36.93892],\n      [-81.00291, 36.93878],\n      [-81.00246, 36.93861],\n      [-81.00217, 36.93851],\n      [-81.0018, 36.93839],\n      [-81.00141, 36.93828],\n      [-81.00107, 36.9382],\n      [-81.00065, 36.93811],\n      [-81.00036, 36.93806],\n      [-80.99992, 36.93798],\n      [-80.99689, 36.9375],\n      [-80.99559, 36.9373],\n      [-80.99503, 36.93723],\n      [-80.99437, 36.93716],\n      [-80.994, 36.93713],\n      [-80.9933, 36.93709],\n      [-80.99058, 36.93699],\n      [-80.9898, 36.93696],\n      [-80.98916, 36.93695],\n      [-80.98841, 36.93695],\n      [-80.98788, 36.93696],\n      [-80.98736, 36.93699],\n      [-80.98677, 36.93703],\n      [-80.98608, 36.93709],\n      [-80.98557, 36.93715],\n      [-80.98478, 36.93727],\n      [-80.9843, 36.93736],\n      [-80.98357, 36.93751],\n      [-80.98285, 36.93767],\n      [-80.98239, 36.93779],\n      [-80.98187, 36.93794],\n      [-80.98124, 36.93814],\n      [-80.98095, 36.93823],\n      [-80.98071, 36.93832],\n      [-80.97949, 36.93877],\n      [-80.97898, 36.93896],\n      [-80.97754, 36.93949],\n      [-80.9739, 36.94085],\n      [-80.97283, 36.94125],\n      [-80.9727, 36.9413],\n      [-80.9724, 36.94141],\n      [-80.97178, 36.94161],\n      [-80.97117, 36.94179],\n      [-80.97066, 36.94193],\n      [-80.97028, 36.94203],\n      [-80.96988, 36.94212],\n      [-80.96875, 36.94233],\n      [-80.96153, 36.94356],\n      [-80.9613, 36.9436],\n      [-80.96085, 36.94367],\n      [-80.95809, 36.94415],\n      [-80.95675, 36.94437],\n      [-80.9547, 36.94472],\n      [-80.95393, 36.94485],\n      [-80.95351, 36.94492],\n      [-80.95339, 36.94494],\n      [-80.95165, 36.94524],\n      [-80.95122, 36.94531],\n      [-80.95062, 36.94541],\n      [-80.9499, 36.94553],\n      [-80.9489, 36.9457],\n      [-80.94867, 36.94574],\n      [-80.94815, 36.94583],\n      [-80.94805, 36.94585],\n      [-80.94772, 36.9459],\n      [-80.94733, 36.94597],\n      [-80.9464, 36.94612],\n      [-80.94537, 36.94626],\n      [-80.94503, 36.94629],\n      [-80.94471, 36.9463],\n      [-80.94381, 36.94636],\n      [-80.94313, 36.94638],\n      [-80.94258, 36.94642],\n      [-80.94229, 36.94643],\n      [-80.94115, 36.94648],\n      [-80.94078, 36.94649],\n      [-80.94014, 36.94652],\n      [-80.93963, 36.94655],\n      [-80.93877, 36.94663],\n      [-80.93798, 36.94674],\n      [-80.93729, 36.94685],\n      [-80.93302, 36.94751],\n      [-80.92965, 36.94802],\n      [-80.92902, 36.94812],\n      [-80.92854, 36.94821],\n      [-80.92824, 36.94825],\n      [-80.92784, 36.9483],\n      [-80.92725, 36.94837],\n      [-80.92692, 36.9484],\n      [-80.92614, 36.94845],\n      [-80.92575, 36.94846],\n      [-80.92476, 36.94845],\n      [-80.92393, 36.94842],\n      [-80.92324, 36.94837],\n      [-80.9228, 36.94833],\n      [-80.92168, 36.9482],\n      [-80.92125, 36.94814],\n      [-80.92074, 36.94805],\n      [-80.92032, 36.94797],\n      [-80.9197, 36.94784],\n      [-80.91965, 36.94783],\n      [-80.91912, 36.9477],\n      [-80.9153, 36.94679],\n      [-80.91425, 36.94655],\n      [-80.91372, 36.94643],\n      [-80.9133, 36.94635],\n      [-80.91262, 36.94623],\n      [-80.91203, 36.94615],\n      [-80.9117, 36.94611],\n      [-80.91115, 36.94605],\n      [-80.91038, 36.94599],\n      [-80.90952, 36.94595],\n      [-80.90875, 36.94594],\n      [-80.90789, 36.94596],\n      [-80.90734, 36.94598],\n      [-80.90625, 36.94607],\n      [-80.90164, 36.94647],\n      [-80.90111, 36.94652],\n      [-80.90053, 36.94658],\n      [-80.89974, 36.94669],\n      [-80.89961, 36.94671],\n      [-80.89852, 36.94691],\n      [-80.89675, 36.94726],\n      [-80.8962, 36.94737],\n      [-80.89363, 36.94788],\n      [-80.89267, 36.94806],\n      [-80.89144, 36.94831],\n      [-80.89142, 36.94831],\n      [-80.88934, 36.94872],\n      [-80.88446, 36.94969],\n      [-80.884, 36.94978],\n      [-80.88342, 36.94989],\n      [-80.88168, 36.95023],\n      [-80.88072, 36.95042],\n      [-80.87798, 36.95096],\n      [-80.87305, 36.95193],\n      [-80.87246, 36.95205],\n      [-80.8721, 36.95212],\n      [-80.87115, 36.95231],\n      [-80.86937, 36.95266],\n      [-80.86864, 36.95282],\n      [-80.86796, 36.95299],\n      [-80.8673, 36.95317],\n      [-80.86692, 36.95329],\n      [-80.8663, 36.9535],\n      [-80.86568, 36.95372],\n      [-80.8652, 36.95391],\n      [-80.8648, 36.95408],\n      [-80.86422, 36.95434],\n      [-80.86375, 36.95457],\n      [-80.86329, 36.9548],\n      [-80.86314, 36.95488],\n      [-80.86262, 36.95518],\n      [-80.86242, 36.95529],\n      [-80.86196, 36.95558],\n      [-80.86142, 36.95593],\n      [-80.86106, 36.95619],\n      [-80.86081, 36.95637],\n      [-80.86032, 36.95674],\n      [-80.86003, 36.95697],\n      [-80.8596, 36.95734],\n      [-80.85929, 36.95762],\n      [-80.85902, 36.95788],\n      [-80.859, 36.9579],\n      [-80.85867, 36.95823],\n      [-80.8574, 36.95957],\n      [-80.85685, 36.96016],\n      [-80.85509, 36.96203],\n      [-80.85429, 36.96289],\n      [-80.85412, 36.96307],\n      [-80.85353, 36.9637],\n      [-80.85234, 36.96497],\n      [-80.85096, 36.96643],\n      [-80.85044, 36.96699],\n      [-80.84915, 36.96837],\n      [-80.84592, 36.9718],\n      [-80.84568, 36.97206],\n      [-80.84534, 36.97241],\n      [-80.84499, 36.97275],\n      [-80.8449, 36.97283],\n      [-80.84445, 36.97324],\n      [-80.84416, 36.97348],\n      [-80.84385, 36.97373],\n      [-80.84358, 36.97395],\n      [-80.84328, 36.97417],\n      [-80.84266, 36.97461],\n      [-80.84234, 36.97481],\n      [-80.84202, 36.97502],\n      [-80.84168, 36.97522],\n      [-80.84136, 36.97541],\n      [-80.8408, 36.97571],\n      [-80.84064, 36.9758],\n      [-80.83728, 36.97759],\n      [-80.83644, 36.97804],\n      [-80.83501, 36.97882],\n      [-80.83481, 36.97892],\n      [-80.83412, 36.97929],\n      [-80.83336, 36.97969],\n      [-80.82725, 36.98295],\n      [-80.82631, 36.98345],\n      [-80.82154, 36.986],\n      [-80.82065, 36.98648],\n      [-80.81856, 36.98759],\n      [-80.81793, 36.9879],\n      [-80.81741, 36.98814],\n      [-80.81672, 36.98843],\n      [-80.81621, 36.98864],\n      [-80.81571, 36.98882],\n      [-80.81522, 36.98899],\n      [-80.8145, 36.9892],\n      [-80.81397, 36.98935],\n      [-80.81321, 36.98954],\n      [-80.81277, 36.98963],\n      [-80.812, 36.98978],\n      [-80.81159, 36.98984],\n      [-80.8104, 36.99001],\n      [-80.80884, 36.99022],\n      [-80.80762, 36.99039],\n      [-80.80725, 36.99044],\n      [-80.80206, 36.99114],\n      [-80.80067, 36.99133],\n      [-80.80014, 36.99142],\n      [-80.79962, 36.99152],\n      [-80.79929, 36.99159],\n      [-80.79866, 36.99173],\n      [-80.79813, 36.99187],\n      [-80.79761, 36.99202],\n      [-80.79756, 36.99204],\n      [-80.79625, 36.99245],\n      [-80.79318, 36.99344],\n      [-80.79236, 36.9937],\n      [-80.78921, 36.99471],\n      [-80.78584, 36.99581],\n      [-80.78553, 36.99592],\n      [-80.7784, 36.99822],\n      [-80.77752, 36.9985],\n      [-80.77188, 37.00032],\n      [-80.77126, 37.00051],\n      [-80.77058, 37.00069],\n      [-80.77009, 37.00082],\n      [-80.76985, 37.00088],\n      [-80.7616, 37.00285],\n      [-80.76113, 37.00297],\n      [-80.76073, 37.00308],\n      [-80.76066, 37.0031],\n      [-80.75993, 37.00333],\n      [-80.75932, 37.00353],\n      [-80.75898, 37.00365],\n      [-80.75851, 37.00383],\n      [-80.75806, 37.00402],\n      [-80.75734, 37.00435],\n      [-80.75686, 37.00458],\n      [-80.75641, 37.00481],\n      [-80.75627, 37.00489],\n      [-80.75582, 37.00514],\n      [-80.75471, 37.00576],\n      [-80.75213, 37.00721],\n      [-80.74913, 37.0089],\n      [-80.74831, 37.00935],\n      [-80.74779, 37.00962],\n      [-80.74728, 37.00987],\n      [-80.74677, 37.01011],\n      [-80.74617, 37.01036],\n      [-80.7457, 37.01055],\n      [-80.74521, 37.01072],\n      [-80.74121, 37.01212],\n      [-80.74067, 37.01231],\n      [-80.7403, 37.01247],\n      [-80.73993, 37.01263],\n      [-80.73958, 37.0128],\n      [-80.73932, 37.01295],\n      [-80.73893, 37.01317],\n      [-80.73859, 37.0134],\n      [-80.73817, 37.0137],\n      [-80.73789, 37.01391],\n      [-80.73765, 37.01412],\n      [-80.73727, 37.01447],\n      [-80.73708, 37.01466],\n      [-80.7369, 37.01486],\n      [-80.73651, 37.01532],\n      [-80.73257, 37.02006],\n      [-80.73228, 37.02041],\n      [-80.73193, 37.02086],\n      [-80.73166, 37.02123],\n      [-80.7314, 37.02162],\n      [-80.73112, 37.02206],\n      [-80.73074, 37.02274],\n      [-80.73066, 37.02288],\n      [-80.73056, 37.02307],\n      [-80.73043, 37.02336],\n      [-80.73021, 37.02384],\n      [-80.72998, 37.0244],\n      [-80.72983, 37.02482],\n      [-80.72968, 37.0253],\n      [-80.72956, 37.02575],\n      [-80.72939, 37.02641],\n      [-80.72902, 37.02789],\n      [-80.72878, 37.02883],\n      [-80.72863, 37.02942],\n      [-80.72846, 37.03014],\n      [-80.72835, 37.03053],\n      [-80.72809, 37.03155],\n      [-80.72797, 37.03198],\n      [-80.72782, 37.03243],\n      [-80.72774, 37.03264],\n      [-80.72753, 37.03315],\n      [-80.72733, 37.03357],\n      [-80.72699, 37.0342],\n      [-80.72678, 37.03455],\n      [-80.72659, 37.03484],\n      [-80.72634, 37.03521],\n      [-80.72607, 37.03557],\n      [-80.72572, 37.036],\n      [-80.72539, 37.03637],\n      [-80.72514, 37.03664],\n      [-80.72469, 37.03708],\n      [-80.72446, 37.03729],\n      [-80.72349, 37.03812],\n      [-80.72097, 37.04025],\n      [-80.71939, 37.04161],\n      [-80.71886, 37.04209],\n      [-80.71843, 37.0425],\n      [-80.71808, 37.04287],\n      [-80.71779, 37.04319],\n      [-80.71749, 37.04353],\n      [-80.7172, 37.04389],\n      [-80.71688, 37.04431],\n      [-80.71651, 37.04483],\n      [-80.71611, 37.04542],\n      [-80.71581, 37.04589],\n      [-80.71557, 37.04637],\n      [-80.71529, 37.04706],\n      [-80.715, 37.04776],\n      [-80.71475, 37.04845],\n      [-80.71444, 37.0493],\n      [-80.71397, 37.05055],\n      [-80.71381, 37.05096],\n      [-80.71344, 37.05181],\n      [-80.71326, 37.05219],\n      [-80.713, 37.05273],\n      [-80.71286, 37.05302],\n      [-80.71254, 37.05363],\n      [-80.7122, 37.05423],\n      [-80.71098, 37.05636],\n      [-80.70962, 37.05872],\n      [-80.70912, 37.05962],\n      [-80.70892, 37.06003],\n      [-80.70873, 37.06043],\n      [-80.70834, 37.06127],\n      [-80.70811, 37.06182],\n      [-80.7079, 37.06236],\n      [-80.70769, 37.06291],\n      [-80.70724, 37.06423],\n      [-80.70682, 37.06545],\n      [-80.70664, 37.06599],\n      [-80.70579, 37.0685],\n      [-80.70559, 37.06906],\n      [-80.70551, 37.06921],\n      [-80.70535, 37.06954],\n      [-80.70518, 37.06988],\n      [-80.70506, 37.07009],\n      [-80.7049, 37.07041],\n      [-80.7047, 37.07077],\n      [-80.70455, 37.071],\n      [-80.70438, 37.07123],\n      [-80.70415, 37.07153],\n      [-80.70334, 37.07244],\n      [-80.70281, 37.07293],\n      [-80.70256, 37.07316],\n      [-80.7023, 37.07336],\n      [-80.70212, 37.0735],\n      [-80.70182, 37.07372],\n      [-80.7013, 37.07408],\n      [-80.70098, 37.07428],\n      [-80.70063, 37.07448],\n      [-80.7003, 37.07466],\n      [-80.70025, 37.07468],\n      [-80.69967, 37.07498],\n      [-80.69926, 37.07519],\n      [-80.69799, 37.07583],\n      [-80.6954, 37.07715],\n      [-80.69456, 37.07757],\n      [-80.69413, 37.07778],\n      [-80.69375, 37.07795],\n      [-80.69308, 37.07824],\n      [-80.6923, 37.07853],\n      [-80.69219, 37.07857],\n      [-80.69127, 37.07889],\n      [-80.69078, 37.07902],\n      [-80.69023, 37.07917],\n      [-80.6898, 37.07928],\n      [-80.68937, 37.07938],\n      [-80.68894, 37.07947],\n      [-80.68853, 37.07955],\n      [-80.68815, 37.07961],\n      [-80.6875, 37.07971],\n      [-80.68733, 37.07973],\n      [-80.68708, 37.07976],\n      [-80.68659, 37.07982],\n      [-80.68555, 37.07989],\n      [-80.68465, 37.07993],\n      [-80.68403, 37.07992],\n      [-80.68269, 37.07989],\n      [-80.68236, 37.07987],\n      [-80.68017, 37.07976],\n      [-80.67752, 37.07965],\n      [-80.66901, 37.07927],\n      [-80.6682, 37.07925],\n      [-80.66747, 37.07926],\n      [-80.66675, 37.07929],\n      [-80.66598, 37.07935],\n      [-80.66514, 37.07944],\n      [-80.66471, 37.0795],\n      [-80.66426, 37.07957],\n      [-80.6637, 37.07966],\n      [-80.66329, 37.07975],\n      [-80.66224, 37.07997],\n      [-80.66123, 37.0802],\n      [-80.66087, 37.08029],\n      [-80.65811, 37.0809],\n      [-80.65699, 37.08116],\n      [-80.65575, 37.08151],\n      [-80.65441, 37.08196],\n      [-80.65333, 37.08238],\n      [-80.65289, 37.08263],\n      [-80.65184, 37.08317],\n      [-80.65067, 37.08379],\n      [-80.64854, 37.08491],\n      [-80.64761, 37.08535],\n      [-80.64655, 37.08579],\n      [-80.64612, 37.08592],\n      [-80.6459, 37.08602],\n      [-80.64501, 37.08632],\n      [-80.64422, 37.08658],\n      [-80.64253, 37.08705],\n      [-80.64127, 37.08731],\n      [-80.63968, 37.08758],\n      [-80.63843, 37.08773],\n      [-80.63735, 37.08781],\n      [-80.63675, 37.08784],\n      [-80.63603, 37.08787],\n      [-80.63578, 37.08787],\n      [-80.63499, 37.08788],\n      [-80.63379, 37.08785],\n      [-80.63249, 37.08782],\n      [-80.63146, 37.08778],\n      [-80.63089, 37.08773],\n      [-80.62973, 37.08763],\n      [-80.6285, 37.08747],\n      [-80.62713, 37.08723],\n      [-80.62558, 37.08691],\n      [-80.6255, 37.08689],\n      [-80.62479, 37.08677],\n      [-80.62402, 37.08667],\n      [-80.62298, 37.08657],\n      [-80.62169, 37.08649],\n      [-80.62022, 37.0865],\n      [-80.61859, 37.08659],\n      [-80.61747, 37.08665],\n      [-80.61593, 37.08674],\n      [-80.60899, 37.08712],\n      [-80.60842, 37.08715],\n      [-80.60786, 37.08717],\n      [-80.60731, 37.08718],\n      [-80.60654, 37.08718],\n      [-80.60597, 37.08718],\n      [-80.6054, 37.08717],\n      [-80.60462, 37.08715],\n      [-80.6035, 37.08709],\n      [-80.60269, 37.08703],\n      [-80.60198, 37.08697],\n      [-80.60036, 37.0868],\n      [-80.5976, 37.08648],\n      [-80.59436, 37.0861],\n      [-80.59358, 37.08602],\n      [-80.59331, 37.08599],\n      [-80.5931, 37.08598],\n      [-80.59242, 37.08595],\n      [-80.5918, 37.08593],\n      [-80.59126, 37.08594],\n      [-80.59072, 37.08596],\n      [-80.59003, 37.08601],\n      [-80.58961, 37.08605],\n      [-80.58907, 37.08612],\n      [-80.58877, 37.08617],\n      [-80.58836, 37.08623],\n      [-80.58797, 37.08631],\n      [-80.58745, 37.08642],\n      [-80.58691, 37.08655],\n      [-80.5864, 37.08669],\n      [-80.586, 37.08681],\n      [-80.58537, 37.08703],\n      [-80.5851, 37.08713],\n      [-80.5847, 37.08728],\n      [-80.58437, 37.08743],\n      [-80.58358, 37.08777],\n      [-80.58267, 37.0881],\n      [-80.57876, 37.0898],\n      [-80.57784, 37.09019],\n      [-80.57539, 37.09125],\n      [-80.57313, 37.09216],\n      [-80.57259, 37.09235],\n      [-80.57209, 37.09252],\n      [-80.57175, 37.09265],\n      [-80.57158, 37.09272],\n      [-80.57152, 37.09274],\n      [-80.57121, 37.09287],\n      [-80.56916, 37.09365],\n      [-80.56868, 37.09383],\n      [-80.56831, 37.09398],\n      [-80.56522, 37.09515],\n      [-80.56514, 37.09518],\n      [-80.565, 37.09523],\n      [-80.56458, 37.09539],\n      [-80.56385, 37.09569],\n      [-80.5632, 37.09597],\n      [-80.56237, 37.09635],\n      [-80.56155, 37.09676],\n      [-80.56121, 37.09694],\n      [-80.55748, 37.09898],\n      [-80.55715, 37.09915],\n      [-80.5568, 37.09932],\n      [-80.55677, 37.09934],\n      [-80.55669, 37.09937],\n      [-80.55643, 37.09948],\n      [-80.55626, 37.09955],\n      [-80.55605, 37.09964],\n      [-80.55564, 37.09979],\n      [-80.55504, 37.09998],\n      [-80.55448, 37.10009],\n      [-80.55361, 37.10026],\n      [-80.55299, 37.10032],\n      [-80.55219, 37.10036],\n      [-80.55159, 37.10036],\n      [-80.55101, 37.10032],\n      [-80.54982, 37.10022],\n      [-80.54819, 37.10006],\n      [-80.5457, 37.09985],\n      [-80.54444, 37.09974],\n      [-80.54308, 37.09956],\n      [-80.54181, 37.0994],\n      [-80.53884, 37.0989],\n      [-80.53712, 37.09859],\n      [-80.53549, 37.09841],\n      [-80.53462, 37.09835],\n      [-80.53364, 37.09832],\n      [-80.5325, 37.09835],\n      [-80.52904, 37.09852],\n      [-80.52748, 37.09856],\n      [-80.52617, 37.09857],\n      [-80.52473, 37.09855],\n      [-80.52286, 37.09848],\n      [-80.52138, 37.09838],\n      [-80.51974, 37.09825],\n      [-80.5188, 37.09815],\n      [-80.51583, 37.09779],\n      [-80.51447, 37.09758],\n      [-80.51297, 37.09732],\n      [-80.51114, 37.09695],\n      [-80.51071, 37.09687],\n      [-80.51043, 37.09681],\n      [-80.50426, 37.09538],\n      [-80.50282, 37.09504],\n      [-80.50131, 37.09469],\n      [-80.49958, 37.0944],\n      [-80.49883, 37.0943],\n      [-80.49768, 37.09421],\n      [-80.49703, 37.09416],\n      [-80.49634, 37.09411],\n      [-80.49377, 37.0941],\n      [-80.49198, 37.09414],\n      [-80.48902, 37.09421],\n      [-80.4854, 37.09429],\n      [-80.483, 37.09435],\n      [-80.48169, 37.09441],\n      [-80.48087, 37.09449],\n      [-80.47979, 37.09467],\n      [-80.4793, 37.09479],\n      [-80.47845, 37.09501],\n      [-80.47772, 37.09527],\n      [-80.47685, 37.0956],\n      [-80.47618, 37.09593],\n      [-80.47567, 37.09619],\n      [-80.47335, 37.09744],\n      [-80.46821, 37.10028],\n      [-80.46643, 37.10124],\n      [-80.46503, 37.10204],\n      [-80.46321, 37.10305],\n      [-80.4618, 37.10378],\n      [-80.46004, 37.10464],\n      [-80.45659, 37.10611],\n      [-80.45262, 37.10791],\n      [-80.44726, 37.1103],\n      [-80.44277, 37.1123],\n      [-80.44039, 37.11333],\n      [-80.43968, 37.11362],\n      [-80.43893, 37.11388],\n      [-80.43736, 37.11439],\n      [-80.43644, 37.11461],\n      [-80.4357, 37.11476],\n      [-80.43491, 37.1149],\n      [-80.43393, 37.11502],\n      [-80.42522, 37.11571],\n      [-80.42314, 37.1159],\n      [-80.42234, 37.11596],\n      [-80.41881, 37.11627],\n      [-80.41779, 37.11635],\n      [-80.41693, 37.11648],\n      [-80.4159, 37.11669],\n      [-80.41494, 37.11691],\n      [-80.41393, 37.1172],\n      [-80.40792, 37.1193],\n      [-80.39916, 37.12244],\n      [-80.3961, 37.12353],\n      [-80.39516, 37.12383],\n      [-80.39449, 37.12401],\n      [-80.39379, 37.12416],\n      [-80.39307, 37.12427],\n      [-80.39181, 37.12432],\n      [-80.38622, 37.1244],\n      [-80.3853, 37.12444],\n      [-80.38459, 37.1245],\n      [-80.38348, 37.12461],\n      [-80.38256, 37.12475],\n      [-80.3817, 37.12491],\n      [-80.3811, 37.12506],\n      [-80.38005, 37.12532],\n      [-80.3792, 37.12558],\n      [-80.37841, 37.12587],\n      [-80.37532, 37.12706],\n      [-80.37233, 37.12819],\n      [-80.37049, 37.1289],\n      [-80.3698, 37.12918],\n      [-80.36782, 37.12993],\n      [-80.36221, 37.1325],\n      [-80.36022, 37.1334],\n      [-80.35951, 37.13379],\n      [-80.35891, 37.13417],\n      [-80.35808, 37.13484],\n      [-80.35752, 37.13552],\n      [-80.35692, 37.13642],\n      [-80.35642, 37.13722],\n      [-80.3561, 37.13776],\n      [-80.35577, 37.13824],\n      [-80.35508, 37.13938],\n      [-80.3542, 37.14047],\n      [-80.35368, 37.14096],\n      [-80.35315, 37.14139],\n      [-80.35245, 37.14186],\n      [-80.35183, 37.14219],\n      [-80.35167, 37.14228],\n      [-80.35074, 37.14269],\n      [-80.3496, 37.14315],\n      [-80.34861, 37.14354],\n      [-80.34785, 37.14385],\n      [-80.34714, 37.14414],\n      [-80.34264, 37.14593],\n      [-80.33617, 37.1485],\n      [-80.3351, 37.14895],\n      [-80.333, 37.14988],\n      [-80.33074, 37.15102],\n      [-80.32736, 37.1529],\n      [-80.32666, 37.15331],\n      [-80.3261, 37.15375],\n      [-80.32542, 37.15447],\n      [-80.32495, 37.15507],\n      [-80.32458, 37.15564],\n      [-80.32412, 37.15652],\n      [-80.32362, 37.15748],\n      [-80.32331, 37.15803],\n      [-80.32176, 37.16111],\n      [-80.32052, 37.1633],\n      [-80.31994, 37.16404],\n      [-80.3193, 37.16473],\n      [-80.31868, 37.16532],\n      [-80.31752, 37.16621],\n      [-80.31669, 37.16671],\n      [-80.31457, 37.16765],\n      [-80.31366, 37.16799],\n      [-80.30519, 37.17101],\n      [-80.30443, 37.17137],\n      [-80.3039, 37.17166],\n      [-80.30306, 37.17222],\n      [-80.30243, 37.17269],\n      [-80.3011, 37.17378],\n      [-80.30012, 37.17487],\n      [-80.29694, 37.1801],\n      [-80.2964, 37.18076],\n      [-80.29597, 37.18123],\n      [-80.29522, 37.18182],\n      [-80.29446, 37.18223],\n      [-80.29389, 37.18248],\n      [-80.29328, 37.18271],\n      [-80.29248, 37.18298],\n      [-80.29116, 37.18334],\n      [-80.28827, 37.18414],\n      [-80.28599, 37.1848],\n      [-80.28464, 37.18531],\n      [-80.2834, 37.18598],\n      [-80.28272, 37.18641],\n      [-80.28018, 37.18816],\n      [-80.27871, 37.18917],\n      [-80.27762, 37.18987],\n      [-80.27373, 37.1926],\n      [-80.27297, 37.19312],\n      [-80.27153, 37.19406],\n      [-80.26995, 37.19522],\n      [-80.26953, 37.19562],\n      [-80.26929, 37.19593],\n      [-80.26895, 37.1963],\n      [-80.2687, 37.19669],\n      [-80.26842, 37.19715],\n      [-80.2682, 37.19763],\n      [-80.26804, 37.19807],\n      [-80.26779, 37.19889],\n      [-80.26756, 37.19965],\n      [-80.26723, 37.20057],\n      [-80.26701, 37.20114],\n      [-80.26675, 37.20201],\n      [-80.26639, 37.2031],\n      [-80.26618, 37.20375],\n      [-80.26593, 37.20429],\n      [-80.26569, 37.20473],\n      [-80.26533, 37.20521],\n      [-80.26481, 37.20583],\n      [-80.26411, 37.20637],\n      [-80.26321, 37.20696],\n      [-80.26237, 37.20741],\n      [-80.26166, 37.20786],\n      [-80.26101, 37.20835],\n      [-80.26046, 37.20892],\n      [-80.26007, 37.20955],\n      [-80.25974, 37.21014],\n      [-80.2596, 37.21067],\n      [-80.25942, 37.21241],\n      [-80.25927, 37.21514],\n      [-80.25919, 37.21566],\n      [-80.259, 37.21635],\n      [-80.25862, 37.21731],\n      [-80.25817, 37.21829],\n      [-80.25554, 37.22318],\n      [-80.2552, 37.22374],\n      [-80.25472, 37.22429],\n      [-80.25391, 37.22491],\n      [-80.2529, 37.22552],\n      [-80.25195, 37.22595],\n      [-80.25122, 37.22617],\n      [-80.25047, 37.22634],\n      [-80.24952, 37.22643],\n      [-80.24843, 37.22652],\n      [-80.24719, 37.2267],\n      [-80.24627, 37.2269],\n      [-80.24521, 37.22721],\n      [-80.2446, 37.22743],\n      [-80.24335, 37.22794],\n      [-80.24265, 37.22832],\n      [-80.24192, 37.22872],\n      [-80.24053, 37.22973],\n      [-80.23971, 37.23047],\n      [-80.23909, 37.23124],\n      [-80.2388, 37.23157],\n      [-80.23814, 37.23236],\n      [-80.23719, 37.23344],\n      [-80.2362, 37.23466],\n      [-80.23593, 37.23502],\n      [-80.23562, 37.23536],\n      [-80.23512, 37.23588],\n      [-80.23397, 37.23676],\n      [-80.23275, 37.23751],\n      [-80.23137, 37.23811],\n      [-80.23029, 37.23848],\n      [-80.22926, 37.23874],\n      [-80.2203, 37.24072],\n      [-80.21477, 37.24199],\n      [-80.21323, 37.24229],\n      [-80.21198, 37.24282],\n      [-80.21144, 37.24307],\n      [-80.21087, 37.24343],\n      [-80.20987, 37.24431],\n      [-80.20832, 37.24595],\n      [-80.20719, 37.24686],\n      [-80.20604, 37.24759],\n      [-80.20469, 37.24828],\n      [-80.20415, 37.24852],\n      [-80.20382, 37.24864],\n      [-80.20335, 37.2488],\n      [-80.20282, 37.24896],\n      [-80.2025, 37.24905],\n      [-80.20174, 37.24923],\n      [-80.20128, 37.24932],\n      [-80.20083, 37.2494],\n      [-80.20027, 37.24947],\n      [-80.19976, 37.24952],\n      [-80.1993, 37.24956],\n      [-80.19849, 37.24959],\n      [-80.19341, 37.2498],\n      [-80.18903, 37.24997],\n      [-80.18863, 37.24999],\n      [-80.18822, 37.25003],\n      [-80.18766, 37.25009],\n      [-80.18716, 37.25016],\n      [-80.18672, 37.25024],\n      [-80.18602, 37.25038],\n      [-80.18562, 37.25049],\n      [-80.18513, 37.25062],\n      [-80.18469, 37.25076],\n      [-80.18427, 37.25091],\n      [-80.18383, 37.25108],\n      [-80.18338, 37.25127],\n      [-80.18304, 37.25143],\n      [-80.1827, 37.25159],\n      [-80.18229, 37.25181],\n      [-80.18198, 37.25198],\n      [-80.18147, 37.2523],\n      [-80.18128, 37.25243],\n      [-80.18053, 37.25294],\n      [-80.17893, 37.25404],\n      [-80.17757, 37.25497],\n      [-80.17742, 37.25507],\n      [-80.17717, 37.25524],\n      [-80.17678, 37.25552],\n      [-80.17608, 37.25597],\n      [-80.17559, 37.25634],\n      [-80.17447, 37.25711],\n      [-80.17377, 37.25756],\n      [-80.17338, 37.25781],\n      [-80.17281, 37.25814],\n      [-80.17231, 37.25843],\n      [-80.17188, 37.25866],\n      [-80.17174, 37.25873],\n      [-80.17126, 37.25897],\n      [-80.17071, 37.25924],\n      [-80.16964, 37.25972],\n      [-80.16914, 37.25993],\n      [-80.16852, 37.26017],\n      [-80.16837, 37.26022],\n      [-80.16813, 37.26031],\n      [-80.16778, 37.26044],\n      [-80.16624, 37.26103],\n      [-80.16574, 37.26122],\n      [-80.16521, 37.26143],\n      [-80.16453, 37.26168],\n      [-80.16363, 37.26203],\n      [-80.16261, 37.26242],\n      [-80.16234, 37.26253],\n      [-80.16015, 37.26336],\n      [-80.15726, 37.26447],\n      [-80.1556, 37.2651],\n      [-80.15531, 37.26521],\n      [-80.1496, 37.2674],\n      [-80.14921, 37.26754],\n      [-80.14858, 37.26779],\n      [-80.14754, 37.26818],\n      [-80.1471, 37.26835],\n      [-80.14676, 37.26848],\n      [-80.14631, 37.26867],\n      [-80.146, 37.26881],\n      [-80.14586, 37.26887],\n      [-80.14552, 37.26904],\n      [-80.14513, 37.26922],\n      [-80.14482, 37.2694],\n      [-80.14444, 37.26963],\n      [-80.14403, 37.2699],\n      [-80.14361, 37.27023],\n      [-80.14331, 37.27046],\n      [-80.1431, 37.27063],\n      [-80.14294, 37.27077],\n      [-80.14273, 37.27095],\n      [-80.14238, 37.27128],\n      [-80.14205, 37.27162],\n      [-80.14174, 37.27197],\n      [-80.14136, 37.27242],\n      [-80.14011, 37.27393],\n      [-80.13981, 37.27429],\n      [-80.13912, 37.27521],\n      [-80.13877, 37.27561],\n      [-80.13855, 37.27585],\n      [-80.13829, 37.27611],\n      [-80.13801, 37.27636],\n      [-80.13772, 37.2766],\n      [-80.13742, 37.27683],\n      [-80.13711, 37.27705],\n      [-80.13668, 37.27732],\n      [-80.13567, 37.27793],\n      [-80.13436, 37.27872],\n      [-80.13303, 37.27953],\n      [-80.13259, 37.27979],\n      [-80.13241, 37.2799],\n      [-80.1307, 37.28093],\n      [-80.12788, 37.28263],\n      [-80.12767, 37.28275],\n      [-80.12741, 37.28292],\n      [-80.12596, 37.28379],\n      [-80.12507, 37.28433],\n      [-80.12412, 37.2849],\n      [-80.12307, 37.28553],\n      [-80.12123, 37.28664],\n      [-80.12064, 37.28696],\n      [-80.12033, 37.28713],\n      [-80.12015, 37.28723],\n      [-80.11992, 37.28735],\n      [-80.11961, 37.28749],\n      [-80.11927, 37.28765],\n      [-80.11916, 37.2877],\n      [-80.11856, 37.28796],\n      [-80.11805, 37.28816],\n      [-80.11753, 37.28835],\n      [-80.1169, 37.28856],\n      [-80.11652, 37.28868],\n      [-80.11562, 37.28893],\n      [-80.11291, 37.28969],\n      [-80.1115, 37.29008],\n      [-80.11045, 37.29037],\n      [-80.11011, 37.29046],\n      [-80.10626, 37.29154],\n      [-80.10612, 37.29158],\n      [-80.1046, 37.292],\n      [-80.10386, 37.29221],\n      [-80.10141, 37.29289],\n      [-80.10127, 37.29293],\n      [-80.09982, 37.29332],\n      [-80.09918, 37.2935],\n      [-80.0981, 37.29381],\n      [-80.09667, 37.2942],\n      [-80.09524, 37.29458],\n      [-80.09293, 37.29516],\n      [-80.09154, 37.29551],\n      [-80.09113, 37.29559],\n      [-80.09064, 37.29572],\n      [-80.08999, 37.2959],\n      [-80.08876, 37.29621],\n      [-80.08857, 37.29625],\n      [-80.08661, 37.29675],\n      [-80.08587, 37.29695],\n      [-80.08518, 37.29716],\n      [-80.08452, 37.29739],\n      [-80.08422, 37.2975],\n      [-80.0838, 37.29767],\n      [-80.08316, 37.29794],\n      [-80.08295, 37.29803],\n      [-80.08228, 37.29834],\n      [-80.08192, 37.29853],\n      [-80.08161, 37.29869],\n      [-80.08107, 37.29899],\n      [-80.08054, 37.29931],\n      [-80.08022, 37.29952],\n      [-80.07887, 37.30041],\n      [-80.07852, 37.30064],\n      [-80.07759, 37.30126],\n      [-80.07737, 37.3014],\n      [-80.07631, 37.3021],\n      [-80.07416, 37.30352],\n      [-80.07343, 37.30401],\n      [-80.07294, 37.30433],\n      [-80.07253, 37.30461],\n      [-80.06882, 37.30706],\n      [-80.0675, 37.30793],\n      [-80.06681, 37.30838],\n      [-80.06532, 37.30928],\n      [-80.06433, 37.30988],\n      [-80.06363, 37.31025],\n      [-80.06273, 37.31075],\n      [-80.06201, 37.31112],\n      [-80.06125, 37.3115],\n      [-80.06079, 37.31173],\n      [-80.05921, 37.31247],\n      [-80.05897, 37.31259],\n      [-80.05815, 37.31297],\n      [-80.05466, 37.31462],\n      [-80.05449, 37.3147],\n      [-80.05414, 37.31487],\n      [-80.05396, 37.31496],\n      [-80.0531, 37.31536],\n      [-80.05263, 37.31558],\n      [-80.05211, 37.31583],\n      [-80.05174, 37.31601],\n      [-80.05132, 37.3162],\n      [-80.05112, 37.31629],\n      [-80.05072, 37.31647],\n      [-80.05043, 37.31661],\n      [-80.04938, 37.31708],\n      [-80.04895, 37.31725],\n      [-80.04841, 37.31748],\n      [-80.04773, 37.31773],\n      [-80.04728, 37.31789],\n      [-80.04683, 37.31804],\n      [-80.04613, 37.31825],\n      [-80.04578, 37.31835],\n      [-80.04501, 37.31855],\n      [-80.04424, 37.31874],\n      [-80.04378, 37.31884],\n      [-80.04305, 37.31898],\n      [-80.04125, 37.3193],\n      [-80.04071, 37.3194],\n      [-80.04037, 37.31948],\n      [-80.04009, 37.31955],\n      [-80.03955, 37.31971],\n      [-80.03914, 37.31986],\n      [-80.03882, 37.31998],\n      [-80.03873, 37.32002],\n      [-80.03854, 37.32011],\n      [-80.03807, 37.32033],\n      [-80.03793, 37.3204],\n      [-80.03773, 37.32049],\n      [-80.03764, 37.32055],\n      [-80.03741, 37.32068],\n      [-80.03702, 37.32093],\n      [-80.0367, 37.32115],\n      [-80.03647, 37.32132],\n      [-80.03614, 37.32158],\n      [-80.03593, 37.32177],\n      [-80.03573, 37.32195],\n      [-80.03549, 37.32219],\n      [-80.03541, 37.32227],\n      [-80.03505, 37.32266],\n      [-80.03425, 37.32357],\n      [-80.0341, 37.32373],\n      [-80.03339, 37.32451],\n      [-80.03309, 37.3248],\n      [-80.03277, 37.32513],\n      [-80.03248, 37.32544],\n      [-80.03194, 37.32595],\n      [-80.03154, 37.32632],\n      [-80.03124, 37.32659],\n      [-80.03084, 37.32691],\n      [-80.03043, 37.32724],\n      [-80.02998, 37.32761],\n      [-80.02966, 37.3279],\n      [-80.02905, 37.32836],\n      [-80.02827, 37.32892],\n      [-80.02783, 37.32923],\n      [-80.02743, 37.3295],\n      [-80.02662, 37.33002],\n      [-80.02585, 37.3305],\n      [-80.02489, 37.33104],\n      [-80.02445, 37.33129],\n      [-80.02367, 37.33169],\n      [-80.023, 37.33202],\n      [-80.02251, 37.33226],\n      [-80.02175, 37.33261],\n      [-80.02106, 37.33291],\n      [-80.02033, 37.33321],\n      [-80.0195, 37.33354],\n      [-80.01911, 37.33368],\n      [-80.01819, 37.334],\n      [-80.01506, 37.33506],\n      [-80.01391, 37.33545],\n      [-80.01282, 37.33582],\n      [-80.00827, 37.33736],\n      [-80.00736, 37.33767],\n      [-80.00669, 37.33789],\n      [-80.00627, 37.33803],\n      [-80.00618, 37.33806],\n      [-80.00598, 37.33811],\n      [-80.00436, 37.33864],\n      [-80.00336, 37.33895],\n      [-80.00249, 37.33919],\n      [-80.00226, 37.33926],\n      [-80.00206, 37.33931],\n      [-80.0017, 37.33943],\n      [-80.00148, 37.3395],\n      [-80.0006, 37.33973],\n      [-79.99955, 37.34001],\n      [-79.99898, 37.34017],\n      [-79.99856, 37.34031],\n      [-79.99816, 37.34046],\n      [-79.99785, 37.34058],\n      [-79.99762, 37.34068],\n      [-79.99724, 37.34086],\n      [-79.99681, 37.34109],\n      [-79.99647, 37.34127],\n      [-79.99627, 37.34139],\n      [-79.99605, 37.34152],\n      [-79.99561, 37.34182],\n      [-79.99528, 37.34206],\n      [-79.99497, 37.34231],\n      [-79.9946, 37.34263],\n      [-79.99386, 37.34332],\n      [-79.99372, 37.34343],\n      [-79.99361, 37.34351],\n      [-79.99291, 37.34415],\n      [-79.99224, 37.34474],\n      [-79.99165, 37.34524],\n      [-79.99138, 37.34547],\n      [-79.99109, 37.3457],\n      [-79.99085, 37.34589],\n      [-79.99054, 37.34615],\n      [-79.99005, 37.34653],\n      [-79.98937, 37.34703],\n      [-79.9888, 37.34744],\n      [-79.98821, 37.34786],\n      [-79.98525, 37.34997],\n      [-79.98457, 37.35046],\n      [-79.9835, 37.35121],\n      [-79.98329, 37.35136],\n      [-79.98122, 37.35284],\n      [-79.981, 37.353],\n      [-79.98063, 37.35326],\n      [-79.98048, 37.35337],\n      [-79.98015, 37.3536],\n      [-79.97939, 37.35415],\n      [-79.97565, 37.35682],\n      [-79.97486, 37.35739],\n      [-79.97446, 37.35767],\n      [-79.97426, 37.35781],\n      [-79.97375, 37.35814],\n      [-79.97343, 37.35833],\n      [-79.97312, 37.35851],\n      [-79.9729, 37.35864],\n      [-79.97254, 37.35882],\n      [-79.9722, 37.359],\n      [-79.9717, 37.35922],\n      [-79.97121, 37.35943],\n      [-79.97071, 37.35963],\n      [-79.97019, 37.35981],\n      [-79.9698, 37.35993],\n      [-79.96941, 37.36005],\n      [-79.96875, 37.36023],\n      [-79.96834, 37.36032],\n      [-79.96793, 37.36041],\n      [-79.9674, 37.36051],\n      [-79.96684, 37.3606],\n      [-79.96642, 37.36065],\n      [-79.96601, 37.3607],\n      [-79.96586, 37.36071],\n      [-79.96544, 37.36075],\n      [-79.96516, 37.36076],\n      [-79.96474, 37.36078],\n      [-79.96376, 37.36082],\n      [-79.9628, 37.36085],\n      [-79.96224, 37.36087],\n      [-79.96197, 37.36087],\n      [-79.96157, 37.36089],\n      [-79.96129, 37.3609],\n      [-79.96074, 37.36091],\n      [-79.95996, 37.36094],\n      [-79.95858, 37.36098],\n      [-79.95733, 37.36103],\n      [-79.95662, 37.36107],\n      [-79.95607, 37.36112],\n      [-79.95536, 37.36118],\n      [-79.95467, 37.36125],\n      [-79.95399, 37.36132],\n      [-79.95316, 37.36143],\n      [-79.95261, 37.36152],\n      [-79.95219, 37.36158],\n      [-79.9515, 37.3617],\n      [-79.95138, 37.36171],\n      [-79.95068, 37.36184],\n      [-79.95, 37.36198],\n      [-79.94933, 37.36212],\n      [-79.94826, 37.36236],\n      [-79.94739, 37.36257],\n      [-79.94598, 37.36291],\n      [-79.94512, 37.36312],\n      [-79.94186, 37.36389],\n      [-79.94124, 37.36404],\n      [-79.94017, 37.36429],\n      [-79.93975, 37.36438],\n      [-79.93897, 37.36455],\n      [-79.93888, 37.36457],\n      [-79.9384, 37.36466],\n      [-79.93763, 37.36478],\n      [-79.9369, 37.36489],\n      [-79.93641, 37.36495],\n      [-79.93564, 37.36503],\n      [-79.9349, 37.3651],\n      [-79.93121, 37.36538],\n      [-79.93023, 37.36546],\n      [-79.92958, 37.36551],\n      [-79.92892, 37.36556],\n      [-79.92863, 37.36559],\n      [-79.92822, 37.36564],\n      [-79.92777, 37.36571],\n      [-79.92694, 37.36586],\n      [-79.92642, 37.36597],\n      [-79.92602, 37.36607],\n      [-79.92545, 37.36623],\n      [-79.92495, 37.36638],\n      [-79.92466, 37.36648],\n      [-79.92434, 37.36659],\n      [-79.9239, 37.36675],\n      [-79.92355, 37.3669],\n      [-79.92353, 37.36691],\n      [-79.92318, 37.36706],\n      [-79.92269, 37.36728],\n      [-79.92226, 37.3675],\n      [-79.92183, 37.36773],\n      [-79.92147, 37.36794],\n      [-79.92107, 37.36818],\n      [-79.92074, 37.36839],\n      [-79.92066, 37.36844],\n      [-79.92044, 37.3686],\n      [-79.91915, 37.36951],\n      [-79.9158, 37.37189],\n      [-79.91548, 37.37211],\n      [-79.91485, 37.37256],\n      [-79.91455, 37.37278],\n      [-79.91394, 37.37325],\n      [-79.91325, 37.37381],\n      [-79.91269, 37.37431],\n      [-79.91242, 37.37456],\n      [-79.91215, 37.37481],\n      [-79.91188, 37.37508],\n      [-79.91162, 37.37534],\n      [-79.91129, 37.3757],\n      [-79.91103, 37.37598],\n      [-79.91056, 37.37652],\n      [-79.91018, 37.37699],\n      [-79.90999, 37.37725],\n      [-79.90967, 37.37766],\n      [-79.90959, 37.37779],\n      [-79.90948, 37.37792],\n      [-79.90926, 37.37826],\n      [-79.90924, 37.37828],\n      [-79.90912, 37.37847],\n      [-79.90892, 37.3788],\n      [-79.9086, 37.37931],\n      [-79.90843, 37.37962],\n      [-79.90826, 37.37993],\n      [-79.9081, 37.38025],\n      [-79.90794, 37.38056],\n      [-79.9077, 37.38108],\n      [-79.90609, 37.38482],\n      [-79.90583, 37.38544],\n      [-79.90556, 37.38606],\n      [-79.90505, 37.38722],\n      [-79.90474, 37.38799],\n      [-79.90446, 37.38855],\n      [-79.90435, 37.38878],\n      [-79.90391, 37.38969],\n      [-79.90365, 37.3902],\n      [-79.90339, 37.39072],\n      [-79.90297, 37.39148],\n      [-79.90274, 37.39189],\n      [-79.90239, 37.39251],\n      [-79.90198, 37.39323],\n      [-79.90166, 37.39378],\n      [-79.89982, 37.3969],\n      [-79.89863, 37.39891],\n      [-79.89722, 37.40132],\n      [-79.89655, 37.40244],\n      [-79.89637, 37.40275],\n      [-79.89592, 37.40345],\n      [-79.89565, 37.40384],\n      [-79.89529, 37.40434],\n      [-79.89486, 37.40493],\n      [-79.89441, 37.40553],\n      [-79.89393, 37.40612],\n      [-79.8934, 37.40676],\n      [-79.89323, 37.40697],\n      [-79.89178, 37.40872],\n      [-79.88866, 37.41247],\n      [-79.88707, 37.41437],\n      [-79.88519, 37.41664],\n      [-79.88426, 37.41777],\n      [-79.88342, 37.41883],\n      [-79.88062, 37.42239],\n      [-79.88015, 37.42297],\n      [-79.87897, 37.42448],\n      [-79.87808, 37.42561],\n      [-79.87694, 37.42705],\n      [-79.87317, 37.43182],\n      [-79.87294, 37.43212],\n      [-79.87271, 37.43241],\n      [-79.87165, 37.43376],\n      [-79.87125, 37.43425],\n      [-79.87085, 37.43477],\n      [-79.87056, 37.43513],\n      [-79.87023, 37.43555],\n      [-79.87001, 37.43584],\n      [-79.86954, 37.43642],\n      [-79.86931, 37.43672],\n      [-79.86746, 37.43906],\n      [-79.86684, 37.43983],\n      [-79.86652, 37.44021],\n      [-79.86638, 37.44036],\n      [-79.86619, 37.44058],\n      [-79.86559, 37.44124],\n      [-79.86533, 37.44151],\n      [-79.86453, 37.44233],\n      [-79.86388, 37.44294],\n      [-79.86359, 37.4432],\n      [-79.86321, 37.44354],\n      [-79.86282, 37.44388],\n      [-79.86243, 37.44421],\n      [-79.86209, 37.44449],\n      [-79.86176, 37.44475],\n      [-79.86137, 37.44506],\n      [-79.86107, 37.44529],\n      [-79.86102, 37.44532],\n      [-79.86025, 37.44588],\n      [-79.85954, 37.44638],\n      [-79.859, 37.44673],\n      [-79.85858, 37.44701],\n      [-79.85792, 37.44741],\n      [-79.85748, 37.44768],\n      [-79.85735, 37.44775],\n      [-79.85715, 37.44787],\n      [-79.85681, 37.44807],\n      [-79.8562, 37.44841],\n      [-79.85579, 37.44863],\n      [-79.85534, 37.44887],\n      [-79.85469, 37.44922],\n      [-79.85416, 37.44945],\n      [-79.84957, 37.45169],\n      [-79.84639, 37.45322],\n      [-79.84625, 37.45329],\n      [-79.84262, 37.45505],\n      [-79.84097, 37.45585],\n      [-79.84014, 37.45625],\n      [-79.83896, 37.45679],\n      [-79.83848, 37.45701],\n      [-79.83714, 37.45758],\n      [-79.83652, 37.45784],\n      [-79.83575, 37.45815],\n      [-79.83539, 37.45829],\n      [-79.83425, 37.45874],\n      [-79.83338, 37.45907],\n      [-79.83317, 37.45915],\n      [-79.83189, 37.45961],\n      [-79.8317, 37.45968],\n      [-79.83093, 37.45994],\n      [-79.82939, 37.46048],\n      [-79.82744, 37.46114],\n      [-79.82639, 37.46152],\n      [-79.82433, 37.46223],\n      [-79.82343, 37.46255],\n      [-79.82141, 37.46324],\n      [-79.82063, 37.46354],\n      [-79.81973, 37.4639],\n      [-79.81889, 37.46428],\n      [-79.81806, 37.46467],\n      [-79.81769, 37.46487],\n      [-79.81717, 37.46514],\n      [-79.81711, 37.46518],\n      [-79.81669, 37.46542],\n      [-79.81631, 37.46564],\n      [-79.81532, 37.46625],\n      [-79.81417, 37.46699],\n      [-79.81414, 37.467],\n      [-79.81281, 37.46784],\n      [-79.81225, 37.46818],\n      [-79.81179, 37.46843],\n      [-79.81129, 37.46871],\n      [-79.81121, 37.46875],\n      [-79.81038, 37.46919],\n      [-79.80965, 37.46954],\n      [-79.80892, 37.46988],\n      [-79.8083, 37.47015],\n      [-79.80779, 37.47037],\n      [-79.80718, 37.4706],\n      [-79.80654, 37.47084],\n      [-79.80576, 37.47112],\n      [-79.8044, 37.47159],\n      [-79.8037, 37.47184],\n      [-79.80294, 37.4721],\n      [-79.80254, 37.47225],\n      [-79.80137, 37.47265],\n      [-79.80045, 37.47298],\n      [-79.80008, 37.47311],\n      [-79.79945, 37.47333],\n      [-79.79869, 37.47366],\n      [-79.79705, 37.47433],\n      [-79.79571, 37.47492],\n      [-79.79483, 37.47529],\n      [-79.79324, 37.47598],\n      [-79.79199, 37.4765],\n      [-79.79124, 37.4768],\n      [-79.79036, 37.47716],\n      [-79.788, 37.4781],\n      [-79.78573, 37.47901],\n      [-79.78472, 37.47945],\n      [-79.78454, 37.47953],\n      [-79.78429, 37.47964],\n      [-79.78377, 37.47989],\n      [-79.78296, 37.48029],\n      [-79.78228, 37.48063],\n      [-79.78131, 37.48116],\n      [-79.78028, 37.48176],\n      [-79.77962, 37.48216],\n      [-79.77731, 37.48366],\n      [-79.77678, 37.48401],\n      [-79.77602, 37.48452],\n      [-79.77526, 37.48501],\n      [-79.77425, 37.48569],\n      [-79.7733, 37.4863],\n      [-79.76991, 37.48854],\n      [-79.76927, 37.48896],\n      [-79.76829, 37.4896],\n      [-79.76697, 37.49046],\n      [-79.76641, 37.49081],\n      [-79.76572, 37.49121],\n      [-79.76503, 37.49161],\n      [-79.7642, 37.49205],\n      [-79.76343, 37.49244],\n      [-79.76278, 37.49277],\n      [-79.76192, 37.49316],\n      [-79.76131, 37.49343],\n      [-79.76047, 37.49378],\n      [-79.75912, 37.49433],\n      [-79.75811, 37.49473],\n      [-79.75382, 37.49645],\n      [-79.75282, 37.49686],\n      [-79.75245, 37.49702],\n      [-79.75187, 37.49734],\n      [-79.75141, 37.49761],\n      [-79.75086, 37.49798],\n      [-79.75057, 37.49819],\n      [-79.75038, 37.49834],\n      [-79.75019, 37.49849],\n      [-79.75015, 37.49852],\n      [-79.74996, 37.49868],\n      [-79.74976, 37.49886],\n      [-79.74948, 37.49914],\n      [-79.74922, 37.49941],\n      [-79.74905, 37.4996],\n      [-79.74897, 37.49969],\n      [-79.7488, 37.4999],\n      [-79.74854, 37.50025],\n      [-79.74821, 37.5007],\n      [-79.74773, 37.50131],\n      [-79.74737, 37.5018],\n      [-79.74605, 37.50355],\n      [-79.74567, 37.50402],\n      [-79.74514, 37.50475],\n      [-79.74431, 37.50585],\n      [-79.744, 37.50626],\n      [-79.74312, 37.50741],\n      [-79.74255, 37.50808],\n      [-79.74214, 37.50854],\n      [-79.74171, 37.509],\n      [-79.74119, 37.50952],\n      [-79.74082, 37.50987],\n      [-79.74054, 37.51013],\n      [-79.74016, 37.51045],\n      [-79.73976, 37.51079],\n      [-79.73926, 37.51118],\n      [-79.73884, 37.5115],\n      [-79.7382, 37.51196],\n      [-79.73766, 37.51232],\n      [-79.73722, 37.51261],\n      [-79.73666, 37.51295],\n      [-79.73614, 37.51325],\n      [-79.7356, 37.51356],\n      [-79.73498, 37.51389],\n      [-79.73428, 37.51428],\n      [-79.73399, 37.51443],\n      [-79.73341, 37.51475],\n      [-79.73268, 37.51513],\n      [-79.73234, 37.51531],\n      [-79.73184, 37.51555],\n      [-79.7311, 37.5159],\n      [-79.73047, 37.51618],\n      [-79.72973, 37.5165],\n      [-79.72899, 37.5168],\n      [-79.72845, 37.51701],\n      [-79.72785, 37.51723],\n      [-79.72655, 37.51769],\n      [-79.72588, 37.51791],\n      [-79.72539, 37.51806],\n      [-79.72485, 37.51823],\n      [-79.72121, 37.51936],\n      [-79.7179, 37.5204],\n      [-79.71685, 37.52074],\n      [-79.71542, 37.52123],\n      [-79.71374, 37.52183],\n      [-79.71213, 37.52244],\n      [-79.71178, 37.52257],\n      [-79.71027, 37.52315],\n      [-79.70767, 37.52412],\n      [-79.70742, 37.52423],\n      [-79.70596, 37.52478],\n      [-79.70522, 37.52505],\n      [-79.70406, 37.5255],\n      [-79.70261, 37.52605],\n      [-79.70134, 37.52652],\n      [-79.70056, 37.52679],\n      [-79.69926, 37.52724],\n      [-79.69744, 37.52785],\n      [-79.69452, 37.52883],\n      [-79.69353, 37.52916],\n      [-79.69302, 37.52934],\n      [-79.69251, 37.52952],\n      [-79.69188, 37.52976],\n      [-79.69138, 37.52997],\n      [-79.69077, 37.53025],\n      [-79.69074, 37.53026],\n      [-79.69039, 37.53043],\n      [-79.68982, 37.53073],\n      [-79.68946, 37.53092],\n      [-79.68901, 37.53118],\n      [-79.68892, 37.53123],\n      [-79.68851, 37.53149],\n      [-79.68791, 37.53189],\n      [-79.68722, 37.53238],\n      [-79.68718, 37.53241],\n      [-79.68665, 37.53283],\n      [-79.68537, 37.53391],\n      [-79.68502, 37.53423],\n      [-79.68456, 37.53461],\n      [-79.68403, 37.53507],\n      [-79.68395, 37.53514],\n      [-79.6838, 37.53527],\n      [-79.68364, 37.53539],\n      [-79.68271, 37.53617],\n      [-79.68233, 37.53648],\n      [-79.68112, 37.5374],\n      [-79.68066, 37.53773],\n      [-79.67996, 37.53821],\n      [-79.67865, 37.53909],\n      [-79.67759, 37.5398],\n      [-79.67705, 37.54016],\n      [-79.67636, 37.54059],\n      [-79.67567, 37.541],\n      [-79.67521, 37.54125],\n      [-79.67463, 37.54155],\n      [-79.67415, 37.54177],\n      [-79.67202, 37.5428],\n      [-79.67114, 37.54322],\n      [-79.6708, 37.54338],\n      [-79.67047, 37.54355],\n      [-79.67006, 37.54377],\n      [-79.66974, 37.54396],\n      [-79.66963, 37.54403],\n      [-79.66929, 37.54426],\n      [-79.66889, 37.54456],\n      [-79.66849, 37.54489],\n      [-79.66804, 37.54532],\n      [-79.66789, 37.54547],\n      [-79.66755, 37.54585],\n      [-79.66728, 37.54619],\n      [-79.66701, 37.54658],\n      [-79.66683, 37.54688],\n      [-79.66657, 37.54739],\n      [-79.66628, 37.54808],\n      [-79.66617, 37.54835],\n      [-79.66602, 37.54877],\n      [-79.66587, 37.54913],\n      [-79.66583, 37.54923],\n      [-79.66575, 37.54945],\n      [-79.66552, 37.55003],\n      [-79.66539, 37.55032],\n      [-79.66533, 37.55044],\n      [-79.66525, 37.55058],\n      [-79.66512, 37.55079],\n      [-79.66497, 37.551],\n      [-79.66483, 37.55117],\n      [-79.6646, 37.55142],\n      [-79.6644, 37.55162],\n      [-79.66383, 37.55213],\n      [-79.66291, 37.55299],\n      [-79.66245, 37.55345],\n      [-79.6622, 37.55373],\n      [-79.66181, 37.5542],\n      [-79.6616, 37.55446],\n      [-79.66118, 37.55502],\n      [-79.66109, 37.55515],\n      [-79.66024, 37.55625],\n      [-79.65961, 37.55707],\n      [-79.65909, 37.5578],\n      [-79.65847, 37.5587],\n      [-79.65824, 37.55906],\n      [-79.65776, 37.55976],\n      [-79.6573, 37.56045],\n      [-79.65705, 37.56077],\n      [-79.65679, 37.56109],\n      [-79.65668, 37.56122],\n      [-79.65617, 37.56172],\n      [-79.65482, 37.56288],\n      [-79.65448, 37.56319],\n      [-79.65429, 37.56338],\n      [-79.65402, 37.56368],\n      [-79.65387, 37.56387],\n      [-79.65365, 37.56417],\n      [-79.65164, 37.56699],\n      [-79.65135, 37.56739],\n      [-79.65045, 37.56866],\n      [-79.65017, 37.56905],\n      [-79.6499, 37.56944],\n      [-79.64957, 37.56994],\n      [-79.64908, 37.57074],\n      [-79.64881, 37.5712],\n      [-79.64722, 37.57382],\n      [-79.64624, 37.57544],\n      [-79.64605, 37.57575],\n      [-79.64588, 37.57604],\n      [-79.64522, 37.57712],\n      [-79.64476, 37.57789],\n      [-79.64426, 37.57871],\n      [-79.64407, 37.57903],\n      [-79.64382, 37.57943],\n      [-79.64333, 37.58026],\n      [-79.64319, 37.58047],\n      [-79.64289, 37.58096],\n      [-79.64264, 37.58137],\n      [-79.64231, 37.58186],\n      [-79.64197, 37.58238],\n      [-79.64169, 37.58277],\n      [-79.64141, 37.58316],\n      [-79.64113, 37.58352],\n      [-79.64058, 37.58421],\n      [-79.64027, 37.58458],\n      [-79.63964, 37.58532],\n      [-79.63878, 37.58624],\n      [-79.63845, 37.58659],\n      [-79.63817, 37.58686],\n      [-79.6379, 37.58712],\n      [-79.63745, 37.58756],\n      [-79.63707, 37.5879],\n      [-79.63669, 37.58823],\n      [-79.63611, 37.58874],\n      [-79.6352, 37.58947],\n      [-79.63489, 37.58972],\n      [-79.63427, 37.59018],\n      [-79.63418, 37.59025],\n      [-79.63313, 37.591],\n      [-79.6328, 37.59122],\n      [-79.63269, 37.5913],\n      [-79.62945, 37.59355],\n      [-79.62678, 37.59542],\n      [-79.62638, 37.59573],\n      [-79.626, 37.59607],\n      [-79.62582, 37.59624],\n      [-79.62555, 37.59651],\n      [-79.62521, 37.59687],\n      [-79.62496, 37.59715],\n      [-79.62469, 37.59742],\n      [-79.62414, 37.59801],\n      [-79.62368, 37.5985],\n      [-79.62341, 37.59878],\n      [-79.62323, 37.59898],\n      [-79.62212, 37.60015],\n      [-79.62162, 37.60069],\n      [-79.6209, 37.60139],\n      [-79.61959, 37.60258],\n      [-79.61941, 37.60275],\n      [-79.61914, 37.60303],\n      [-79.61889, 37.60329],\n      [-79.6185, 37.60376],\n      [-79.61813, 37.60425],\n      [-79.61787, 37.60464],\n      [-79.61759, 37.60506],\n      [-79.61717, 37.6057],\n      [-79.61701, 37.60593],\n      [-79.61613, 37.60726],\n      [-79.61592, 37.60755],\n      [-79.61561, 37.60794],\n      [-79.61527, 37.60831],\n      [-79.61502, 37.60854],\n      [-79.61486, 37.60868],\n      [-79.61457, 37.60891],\n      [-79.61421, 37.60917],\n      [-79.61406, 37.60927],\n      [-79.61373, 37.60947],\n      [-79.61343, 37.60963],\n      [-79.61304, 37.60982],\n      [-79.6127, 37.60997],\n      [-79.6123, 37.61012],\n      [-79.61198, 37.61023],\n      [-79.61161, 37.61033],\n      [-79.61123, 37.61043],\n      [-79.61089, 37.61049],\n      [-79.61035, 37.61058],\n      [-79.6101, 37.61061],\n      [-79.61, 37.61062],\n      [-79.60947, 37.61065],\n      [-79.60694, 37.61074],\n      [-79.60483, 37.6108],\n      [-79.6038, 37.61084],\n      [-79.60263, 37.61088],\n      [-79.60201, 37.6109],\n      [-79.60076, 37.61094],\n      [-79.60003, 37.61097],\n      [-79.59932, 37.61099],\n      [-79.59806, 37.611],\n      [-79.59765, 37.61101],\n      [-79.59725, 37.61102],\n      [-79.59686, 37.61105],\n      [-79.59646, 37.6111],\n      [-79.59605, 37.61116],\n      [-79.59563, 37.61124],\n      [-79.59538, 37.6113],\n      [-79.59523, 37.61134],\n      [-79.59451, 37.61157],\n      [-79.59432, 37.61164],\n      [-79.59414, 37.61171],\n      [-79.59366, 37.61192],\n      [-79.59337, 37.61206],\n      [-79.59292, 37.61231],\n      [-79.59262, 37.61251],\n      [-79.59249, 37.6126],\n      [-79.59189, 37.61305],\n      [-79.59182, 37.61311],\n      [-79.59132, 37.6136],\n      [-79.5913, 37.61361],\n      [-79.59007, 37.61485],\n      [-79.5893, 37.61572],\n      [-79.58877, 37.6164],\n      [-79.58838, 37.61693],\n      [-79.58789, 37.61762],\n      [-79.58739, 37.61845],\n      [-79.58621, 37.62053],\n      [-79.58484, 37.62299],\n      [-79.5844, 37.6237],\n      [-79.58425, 37.6239],\n      [-79.58412, 37.62405],\n      [-79.5839, 37.62431],\n      [-79.58375, 37.62446],\n      [-79.58341, 37.6248],\n      [-79.58318, 37.625],\n      [-79.5828, 37.62528],\n      [-79.58264, 37.62539],\n      [-79.58229, 37.62562],\n      [-79.58194, 37.62582],\n      [-79.58159, 37.626],\n      [-79.58125, 37.62614],\n      [-79.58051, 37.62642],\n      [-79.58008, 37.62655],\n      [-79.57964, 37.62666],\n      [-79.57928, 37.62675],\n      [-79.57694, 37.62723],\n      [-79.57648, 37.62734],\n      [-79.57604, 37.62746],\n      [-79.57559, 37.6276],\n      [-79.57507, 37.62778],\n      [-79.57482, 37.62788],\n      [-79.57475, 37.62791],\n      [-79.57423, 37.62814],\n      [-79.57365, 37.62841],\n      [-79.57297, 37.62876],\n      [-79.57267, 37.62892],\n      [-79.57236, 37.6291],\n      [-79.57173, 37.62954],\n      [-79.5714, 37.62979],\n      [-79.57115, 37.63002],\n      [-79.57089, 37.63024],\n      [-79.5706, 37.63051],\n      [-79.57024, 37.63085],\n      [-79.56989, 37.63121],\n      [-79.56919, 37.632],\n      [-79.56849, 37.63278],\n      [-79.56702, 37.63441],\n      [-79.56499, 37.63671],\n      [-79.56203, 37.63983],\n      [-79.56175, 37.64012],\n      [-79.56125, 37.64062],\n      [-79.56039, 37.64153],\n      [-79.55737, 37.64468],\n      [-79.55618, 37.64592],\n      [-79.55568, 37.64644],\n      [-79.55506, 37.6471],\n      [-79.55461, 37.64755],\n      [-79.5541, 37.6481],\n      [-79.55356, 37.64863],\n      [-79.55311, 37.64906],\n      [-79.55287, 37.64927],\n      [-79.55256, 37.64953],\n      [-79.55188, 37.65006],\n      [-79.55161, 37.65027],\n      [-79.55119, 37.65056],\n      [-79.55084, 37.65079],\n      [-79.55034, 37.65111],\n      [-79.55006, 37.65128],\n      [-79.5494, 37.65165],\n      [-79.54882, 37.65195],\n      [-79.54824, 37.65223],\n      [-79.54773, 37.65246],\n      [-79.54634, 37.65306],\n      [-79.54605, 37.65318],\n      [-79.54519, 37.65355],\n      [-79.54438, 37.6539],\n      [-79.54246, 37.65474],\n      [-79.54104, 37.65536],\n      [-79.54022, 37.65571],\n      [-79.53956, 37.656],\n      [-79.53817, 37.65661],\n      [-79.53726, 37.657],\n      [-79.53439, 37.65824],\n      [-79.53284, 37.65892],\n      [-79.53074, 37.65981],\n      [-79.53019, 37.66006],\n      [-79.52795, 37.66101],\n      [-79.52757, 37.66116],\n      [-79.52739, 37.66124],\n      [-79.52672, 37.6615],\n      [-79.52506, 37.66213],\n      [-79.52382, 37.66258],\n      [-79.5226, 37.66299],\n      [-79.52138, 37.66339],\n      [-79.52012, 37.6638],\n      [-79.51818, 37.66444],\n      [-79.51433, 37.6657],\n      [-79.51368, 37.66592],\n      [-79.51199, 37.66647],\n      [-79.51133, 37.6667],\n      [-79.51084, 37.66689],\n      [-79.50991, 37.66727],\n      [-79.50941, 37.66749],\n      [-79.50937, 37.66751],\n      [-79.50858, 37.66789],\n      [-79.5079, 37.66824],\n      [-79.50753, 37.66843],\n      [-79.50684, 37.66881],\n      [-79.50593, 37.66932],\n      [-79.50527, 37.66976],\n      [-79.50507, 37.66989],\n      [-79.50453, 37.67027],\n      [-79.50385, 37.67079],\n      [-79.50345, 37.67111],\n      [-79.50222, 37.67217],\n      [-79.50118, 37.67309],\n      [-79.50071, 37.6735],\n      [-79.49805, 37.67584],\n      [-79.49714, 37.67665],\n      [-79.49575, 37.67788],\n      [-79.49438, 37.67912],\n      [-79.49401, 37.67946],\n      [-79.49191, 37.68138],\n      [-79.49145, 37.6818],\n      [-79.48716, 37.68574],\n      [-79.48542, 37.68734],\n      [-79.48488, 37.68784],\n      [-79.48368, 37.68892],\n      [-79.48262, 37.68982],\n      [-79.48205, 37.6903],\n      [-79.48145, 37.69076],\n      [-79.48053, 37.69144],\n      [-79.47978, 37.69195],\n      [-79.47925, 37.69231],\n      [-79.4785, 37.69279],\n      [-79.47772, 37.69326],\n      [-79.47739, 37.69346],\n      [-79.47706, 37.69364],\n      [-79.4766, 37.69391],\n      [-79.47549, 37.69453],\n      [-79.47439, 37.69519],\n      [-79.47245, 37.6964],\n      [-79.47201, 37.69668],\n      [-79.47093, 37.69739],\n      [-79.47016, 37.69798],\n      [-79.46963, 37.69833],\n      [-79.46807, 37.69939],\n      [-79.46759, 37.69971],\n      [-79.46665, 37.70037],\n      [-79.4658, 37.70096],\n      [-79.46516, 37.70141],\n      [-79.46481, 37.70165],\n      [-79.46411, 37.70214],\n      [-79.46229, 37.70341],\n      [-79.46089, 37.70441],\n      [-79.46071, 37.70454],\n      [-79.46057, 37.70464],\n      [-79.46043, 37.70474],\n      [-79.45946, 37.70544],\n      [-79.45873, 37.70598],\n      [-79.45814, 37.70642],\n      [-79.45743, 37.70695],\n      [-79.45621, 37.7079],\n      [-79.45566, 37.70833],\n      [-79.45509, 37.70878],\n      [-79.45443, 37.70929],\n      [-79.45338, 37.71013],\n      [-79.45218, 37.71104],\n      [-79.45161, 37.71149],\n      [-79.4509, 37.71202],\n      [-79.44967, 37.713],\n      [-79.44844, 37.71395],\n      [-79.44775, 37.7145],\n      [-79.44738, 37.71479],\n      [-79.44671, 37.71532],\n      [-79.44619, 37.71572],\n      [-79.44551, 37.71625],\n      [-79.44484, 37.71677],\n      [-79.44434, 37.71718],\n      [-79.4442, 37.71728],\n      [-79.44347, 37.71783],\n      [-79.44325, 37.71801],\n      [-79.44252, 37.71855],\n      [-79.44196, 37.71896],\n      [-79.44161, 37.71922],\n      [-79.4401, 37.72036],\n      [-79.43908, 37.72111],\n      [-79.43776, 37.72207],\n      [-79.437, 37.72265],\n      [-79.4367, 37.72289],\n      [-79.4363, 37.72324],\n      [-79.436, 37.72351],\n      [-79.43552, 37.72398],\n      [-79.4353, 37.7242],\n      [-79.43492, 37.72462],\n      [-79.4346, 37.72499],\n      [-79.43398, 37.72575],\n      [-79.43369, 37.72613],\n      [-79.43332, 37.7266],\n      [-79.4332, 37.72676],\n      [-79.43318, 37.72678],\n      [-79.43295, 37.72706],\n      [-79.43266, 37.72744],\n      [-79.43236, 37.72781],\n      [-79.43213, 37.72811],\n      [-79.43161, 37.72876],\n      [-79.4313, 37.72917],\n      [-79.43117, 37.72933],\n      [-79.42916, 37.73187],\n      [-79.42833, 37.73293],\n      [-79.42722, 37.73431],\n      [-79.42681, 37.73483],\n      [-79.42498, 37.73709],\n      [-79.42313, 37.73935],\n      [-79.42209, 37.74064],\n      [-79.42187, 37.74091],\n      [-79.42139, 37.74151],\n      [-79.42056, 37.7425],\n      [-79.4199, 37.74331],\n      [-79.41924, 37.74414],\n      [-79.41844, 37.74515],\n      [-79.41771, 37.74606],\n      [-79.41586, 37.74839],\n      [-79.41471, 37.74981],\n      [-79.41335, 37.75151],\n      [-79.41291, 37.75207],\n      [-79.41224, 37.75289],\n      [-79.41148, 37.75382],\n      [-79.41097, 37.75451],\n      [-79.41083, 37.75472],\n      [-79.41015, 37.75574],\n      [-79.40963, 37.75658],\n      [-79.40933, 37.75715],\n      [-79.408, 37.75968],\n      [-79.40763, 37.76047],\n      [-79.40719, 37.76137],\n      [-79.40691, 37.76199],\n      [-79.40661, 37.76261],\n      [-79.40636, 37.76315],\n      [-79.40621, 37.76345],\n      [-79.40592, 37.76408],\n      [-79.40529, 37.7654],\n      [-79.40382, 37.7685],\n      [-79.40327, 37.76964],\n      [-79.40303, 37.77017],\n      [-79.40249, 37.77129],\n      [-79.40189, 37.77257],\n      [-79.40171, 37.77296],\n      [-79.40135, 37.77388],\n      [-79.40121, 37.77438],\n      [-79.40098, 37.77491],\n      [-79.40074, 37.77562],\n      [-79.40063, 37.7762],\n      [-79.40053, 37.77703],\n      [-79.40048, 37.77926],\n      [-79.40045, 37.78152],\n      [-79.40046, 37.78267],\n      [-79.40038, 37.78322],\n      [-79.40037, 37.78328],\n      [-79.40019, 37.78415],\n      [-79.39994, 37.78506],\n      [-79.39977, 37.78553],\n      [-79.3995, 37.78621],\n      [-79.39924, 37.78678],\n      [-79.39858, 37.78804],\n      [-79.39814, 37.78892],\n      [-79.39793, 37.78931],\n      [-79.3972, 37.79056],\n      [-79.39621, 37.79237],\n      [-79.39589, 37.79297],\n      [-79.39493, 37.79472],\n      [-79.39452, 37.79549],\n      [-79.39406, 37.79633],\n      [-79.39344, 37.79765],\n      [-79.39333, 37.79784],\n      [-79.3922, 37.79991],\n      [-79.39019, 37.80358],\n      [-79.38991, 37.80411],\n      [-79.3897, 37.80448],\n      [-79.38953, 37.80478],\n      [-79.38933, 37.80516],\n      [-79.38827, 37.80713],\n      [-79.38796, 37.80769],\n      [-79.38757, 37.80837],\n      [-79.38724, 37.80894],\n      [-79.38694, 37.80941],\n      [-79.38652, 37.81009],\n      [-79.38615, 37.81068],\n      [-79.38602, 37.81086],\n      [-79.38556, 37.81157],\n      [-79.38479, 37.81269],\n      [-79.38455, 37.81303],\n      [-79.38443, 37.8132],\n      [-79.38408, 37.81368],\n      [-79.38336, 37.81464],\n      [-79.38292, 37.81522],\n      [-79.38137, 37.81718],\n      [-79.38101, 37.81763],\n      [-79.38066, 37.81808],\n      [-79.38033, 37.81849],\n      [-79.37545, 37.82467],\n      [-79.37538, 37.82476],\n      [-79.37427, 37.82617],\n      [-79.37382, 37.82678],\n      [-79.37338, 37.82742],\n      [-79.37311, 37.8278],\n      [-79.37267, 37.8285],\n      [-79.37231, 37.82909],\n      [-79.37228, 37.82914],\n      [-79.37213, 37.82939],\n      [-79.3718, 37.83],\n      [-79.37158, 37.83041],\n      [-79.37127, 37.83102],\n      [-79.37093, 37.83175],\n      [-79.37, 37.83377],\n      [-79.36894, 37.83607],\n      [-79.36881, 37.83636],\n      [-79.36787, 37.83841],\n      [-79.36736, 37.8395],\n      [-79.36701, 37.84023],\n      [-79.36683, 37.84063],\n      [-79.36665, 37.841],\n      [-79.3665, 37.84131],\n      [-79.36623, 37.84194],\n      [-79.36612, 37.84218],\n      [-79.36589, 37.84263],\n      [-79.36573, 37.84297],\n      [-79.36565, 37.84315],\n      [-79.36521, 37.8441],\n      [-79.36462, 37.84532],\n      [-79.36446, 37.84571],\n      [-79.36402, 37.84667],\n      [-79.36388, 37.84694],\n      [-79.36339, 37.84796],\n      [-79.3631, 37.84845],\n      [-79.36275, 37.84896],\n      [-79.36246, 37.8493],\n      [-79.36199, 37.84981],\n      [-79.36151, 37.85026],\n      [-79.36092, 37.85071],\n      [-79.3604, 37.85109],\n      [-79.35976, 37.8515],\n      [-79.35886, 37.852],\n      [-79.35797, 37.85251],\n      [-79.35776, 37.85262],\n      [-79.35679, 37.85316],\n      [-79.35613, 37.85351],\n      [-79.35435, 37.85451],\n      [-79.35339, 37.85507],\n      [-79.35187, 37.85591],\n      [-79.35003, 37.85694],\n      [-79.34932, 37.85733],\n      [-79.3484, 37.85785],\n      [-79.34744, 37.8584],\n      [-79.34612, 37.85917],\n      [-79.3453, 37.85965],\n      [-79.34456, 37.8601],\n      [-79.34365, 37.86065],\n      [-79.34219, 37.86156],\n      [-79.34143, 37.86205],\n      [-79.34105, 37.86229],\n      [-79.3403, 37.86278],\n      [-79.33963, 37.86322],\n      [-79.33907, 37.86359],\n      [-79.33841, 37.86405],\n      [-79.33749, 37.86465],\n      [-79.33688, 37.86506],\n      [-79.33563, 37.8659],\n      [-79.33525, 37.86615],\n      [-79.3348, 37.86645],\n      [-79.33402, 37.86692],\n      [-79.33321, 37.86735],\n      [-79.33232, 37.86779],\n      [-79.33086, 37.86839],\n      [-79.33004, 37.86868],\n      [-79.32914, 37.86896],\n      [-79.32831, 37.86919],\n      [-79.32775, 37.86932],\n      [-79.32717, 37.86943],\n      [-79.32665, 37.86952],\n      [-79.32591, 37.86964],\n      [-79.32497, 37.86976],\n      [-79.32354, 37.86989],\n      [-79.32212, 37.87006],\n      [-79.32076, 37.8703],\n      [-79.31989, 37.87048],\n      [-79.31884, 37.87074],\n      [-79.31786, 37.87107],\n      [-79.3175, 37.8712],\n      [-79.31675, 37.87147],\n      [-79.31643, 37.8716],\n      [-79.31636, 37.87163],\n      [-79.31562, 37.87196],\n      [-79.3154, 37.87206],\n      [-79.31445, 37.87248],\n      [-79.31253, 37.87332],\n      [-79.3101, 37.87442],\n      [-79.30843, 37.87517],\n      [-79.30686, 37.87582],\n      [-79.3066, 37.87593],\n      [-79.30627, 37.87609],\n      [-79.30545, 37.87645],\n      [-79.3041, 37.87708],\n      [-79.30335, 37.87741],\n      [-79.30301, 37.87754],\n      [-79.30265, 37.87771],\n      [-79.30155, 37.87819],\n      [-79.3002, 37.8788],\n      [-79.29975, 37.87901],\n      [-79.29947, 37.87914],\n      [-79.29843, 37.87961],\n      [-79.2981, 37.87975],\n      [-79.29716, 37.88017],\n      [-79.29611, 37.88064],\n      [-79.29392, 37.8816],\n      [-79.29307, 37.88198],\n      [-79.29197, 37.88247],\n      [-79.29125, 37.88276],\n      [-79.29034, 37.88317],\n      [-79.28937, 37.8836],\n      [-79.28846, 37.88403],\n      [-79.28576, 37.88524],\n      [-79.2856, 37.88531],\n      [-79.28526, 37.88545],\n      [-79.28489, 37.88562],\n      [-79.28421, 37.88592],\n      [-79.28375, 37.88614],\n      [-79.28307, 37.88648],\n      [-79.28216, 37.88697],\n      [-79.28153, 37.88734],\n      [-79.28112, 37.88756],\n      [-79.2809, 37.8877],\n      [-79.28069, 37.88784],\n      [-79.27991, 37.88839],\n      [-79.27927, 37.88888],\n      [-79.27882, 37.88923],\n      [-79.27833, 37.88965],\n      [-79.27787, 37.89006],\n      [-79.27737, 37.89054],\n      [-79.27709, 37.89082],\n      [-79.27651, 37.89145],\n      [-79.27619, 37.89185],\n      [-79.27579, 37.89238],\n      [-79.27537, 37.89296],\n      [-79.27474, 37.89385],\n      [-79.27442, 37.89436],\n      [-79.27403, 37.89492],\n      [-79.27363, 37.89549],\n      [-79.27351, 37.89565],\n      [-79.27332, 37.89591],\n      [-79.27287, 37.8965],\n      [-79.27252, 37.89694],\n      [-79.27209, 37.89744],\n      [-79.27153, 37.89808],\n      [-79.27114, 37.89852],\n      [-79.27062, 37.89906],\n      [-79.27029, 37.8994],\n      [-79.26993, 37.89976],\n      [-79.26948, 37.90019],\n      [-79.26913, 37.90052],\n      [-79.26463, 37.90451],\n      [-79.26416, 37.90492],\n      [-79.26363, 37.90541],\n      [-79.26303, 37.90593],\n      [-79.26063, 37.90806],\n      [-79.2596, 37.90898],\n      [-79.25926, 37.90928],\n      [-79.25787, 37.91054],\n      [-79.25687, 37.91137],\n      [-79.2558, 37.91227],\n      [-79.25479, 37.91312],\n      [-79.25387, 37.91386],\n      [-79.25351, 37.91414],\n      [-79.25253, 37.91492],\n      [-79.25135, 37.91584],\n      [-79.25095, 37.91614],\n      [-79.25058, 37.91642],\n      [-79.24982, 37.917],\n      [-79.24925, 37.91741],\n      [-79.24859, 37.9179],\n      [-79.24809, 37.91827],\n      [-79.24788, 37.91842],\n      [-79.24726, 37.91884],\n      [-79.24524, 37.92025],\n      [-79.2431, 37.92169],\n      [-79.24216, 37.92231],\n      [-79.24055, 37.92336],\n      [-79.23989, 37.9238],\n      [-79.23914, 37.92429],\n      [-79.239, 37.92438],\n      [-79.23814, 37.92499],\n      [-79.2372, 37.92561],\n      [-79.23637, 37.92617],\n      [-79.2356, 37.92668],\n      [-79.23479, 37.92721],\n      [-79.23372, 37.92792],\n      [-79.23344, 37.9281],\n      [-79.23283, 37.92852],\n      [-79.23152, 37.92945],\n      [-79.23096, 37.9299],\n      [-79.23007, 37.93057],\n      [-79.22903, 37.93139],\n      [-79.22859, 37.93175],\n      [-79.22846, 37.93185],\n      [-79.22793, 37.93228],\n      [-79.22571, 37.93419],\n      [-79.22515, 37.93468],\n      [-79.22392, 37.93583],\n      [-79.22353, 37.93621],\n      [-79.22253, 37.93723],\n      [-79.22231, 37.93748],\n      [-79.22164, 37.93821],\n      [-79.22081, 37.93911],\n      [-79.2195, 37.94055],\n      [-79.2191, 37.94102],\n      [-79.21878, 37.94139],\n      [-79.21832, 37.94195],\n      [-79.21783, 37.94249],\n      [-79.21674, 37.94376],\n      [-79.21647, 37.94407],\n      [-79.21455, 37.94631],\n      [-79.21365, 37.94736],\n      [-79.21241, 37.94881],\n      [-79.21199, 37.94929],\n      [-79.21169, 37.94964],\n      [-79.21135, 37.95004],\n      [-79.2107, 37.95078],\n      [-79.2093, 37.95242],\n      [-79.20866, 37.95319],\n      [-79.20856, 37.95329],\n      [-79.20787, 37.95408],\n      [-79.20714, 37.95495],\n      [-79.20697, 37.95515],\n      [-79.20644, 37.95575],\n      [-79.20594, 37.95634],\n      [-79.20527, 37.95712],\n      [-79.20487, 37.95757],\n      [-79.20407, 37.9585],\n      [-79.20378, 37.95883],\n      [-79.20334, 37.95933],\n      [-79.20294, 37.95982],\n      [-79.20251, 37.96031],\n      [-79.20208, 37.96082],\n      [-79.20165, 37.96131],\n      [-79.19938, 37.96397],\n      [-79.19879, 37.96463],\n      [-79.19795, 37.96556],\n      [-79.19735, 37.9662],\n      [-79.197, 37.96657],\n      [-79.19597, 37.96763],\n      [-79.19511, 37.96848],\n      [-79.19263, 37.97076],\n      [-79.19232, 37.97105],\n      [-79.19135, 37.97193],\n      [-79.18975, 37.97337],\n      [-79.18808, 37.97488],\n      [-79.18719, 37.97573],\n      [-79.18668, 37.97624],\n      [-79.18617, 37.97678],\n      [-79.1856, 37.9774],\n      [-79.18513, 37.97794],\n      [-79.18477, 37.97838],\n      [-79.18436, 37.97889],\n      [-79.18417, 37.97911],\n      [-79.18408, 37.97921],\n      [-79.1832, 37.98046],\n      [-79.18283, 37.98102],\n      [-79.18256, 37.98143],\n      [-79.18232, 37.98182],\n      [-79.18209, 37.9822],\n      [-79.18185, 37.98261],\n      [-79.18132, 37.9836],\n      [-79.18096, 37.98433],\n      [-79.18062, 37.98506],\n      [-79.17981, 37.98701],\n      [-79.17922, 37.98842],\n      [-79.17875, 37.98962],\n      [-79.17811, 37.99117],\n      [-79.17797, 37.99148],\n      [-79.17773, 37.99212],\n      [-79.17681, 37.99436],\n      [-79.17637, 37.99542],\n      [-79.17628, 37.99563],\n      [-79.17586, 37.99656],\n      [-79.17545, 37.9974],\n      [-79.17491, 37.9984],\n      [-79.17456, 37.99901],\n      [-79.17425, 37.9995],\n      [-79.17394, 38],\n      [-79.17353, 38.00059],\n      [-79.17341, 38.00077],\n      [-79.173, 38.00134],\n      [-79.17251, 38.002],\n      [-79.17198, 38.00266],\n      [-79.17129, 38.00348],\n      [-79.17095, 38.00386],\n      [-79.17072, 38.00411],\n      [-79.17036, 38.00449],\n      [-79.16976, 38.0051],\n      [-79.16898, 38.00586],\n      [-79.16833, 38.00644],\n      [-79.1676, 38.00708],\n      [-79.16701, 38.00756],\n      [-79.16653, 38.00795],\n      [-79.16583, 38.00848],\n      [-79.16542, 38.00878],\n      [-79.1648, 38.00921],\n      [-79.16417, 38.00964],\n      [-79.16367, 38.00995],\n      [-79.16329, 38.0102],\n      [-79.15736, 38.01402],\n      [-79.15554, 38.01519],\n      [-79.15112, 38.01802],\n      [-79.15046, 38.01845],\n      [-79.14759, 38.02029],\n      [-79.14694, 38.02071],\n      [-79.14604, 38.02128],\n      [-79.14579, 38.02143],\n      [-79.14551, 38.0216],\n      [-79.14507, 38.02189],\n      [-79.14454, 38.02223],\n      [-79.14413, 38.02249],\n      [-79.14327, 38.02306],\n      [-79.14297, 38.02325],\n      [-79.14259, 38.02348],\n      [-79.1422, 38.02374],\n      [-79.14122, 38.02438],\n      [-79.14101, 38.02451],\n      [-79.14013, 38.02507],\n      [-79.13932, 38.02559],\n      [-79.13918, 38.02568],\n      [-79.13784, 38.02654],\n      [-79.13722, 38.02694],\n      [-79.13687, 38.02716],\n      [-79.13633, 38.0275],\n      [-79.13554, 38.02804],\n      [-79.13502, 38.0284],\n      [-79.13467, 38.02866],\n      [-79.13396, 38.02919],\n      [-79.13371, 38.0294],\n      [-79.13315, 38.02985],\n      [-79.13251, 38.03038],\n      [-79.13172, 38.03108],\n      [-79.1309, 38.03186],\n      [-79.13032, 38.03244],\n      [-79.1298, 38.03298],\n      [-79.12922, 38.03361],\n      [-79.12868, 38.03423],\n      [-79.12823, 38.03477],\n      [-79.12778, 38.03532],\n      [-79.12718, 38.03611],\n      [-79.1268, 38.03669],\n      [-79.12636, 38.03735],\n      [-79.12569, 38.0384],\n      [-79.1248, 38.03981],\n      [-79.12419, 38.04076],\n      [-79.12375, 38.04143],\n      [-79.12357, 38.04172],\n      [-79.12294, 38.04273],\n      [-79.12269, 38.04313],\n      [-79.12158, 38.04487],\n      [-79.12146, 38.04503],\n      [-79.12091, 38.04588],\n      [-79.12051, 38.04653],\n      [-79.12014, 38.04709],\n      [-79.11965, 38.04788],\n      [-79.1185, 38.0497],\n      [-79.11731, 38.05156],\n      [-79.11599, 38.05365],\n      [-79.11563, 38.05421],\n      [-79.11516, 38.05496],\n      [-79.11424, 38.05636],\n      [-79.11395, 38.05679],\n      [-79.11364, 38.05721],\n      [-79.11275, 38.05836],\n      [-79.11189, 38.05942],\n      [-79.11146, 38.0599],\n      [-79.11128, 38.06009],\n      [-79.1108, 38.06059],\n      [-79.11042, 38.06097],\n      [-79.10959, 38.06178],\n      [-79.10891, 38.06241],\n      [-79.10826, 38.06297],\n      [-79.10725, 38.06379],\n      [-79.10649, 38.06438],\n      [-79.10518, 38.06533],\n      [-79.1049, 38.06553],\n      [-79.10392, 38.06615],\n      [-79.10328, 38.06654],\n      [-79.10223, 38.06714],\n      [-79.10115, 38.06773],\n      [-79.10015, 38.06829],\n      [-79.09816, 38.06939],\n      [-79.09743, 38.0698],\n      [-79.09551, 38.07088],\n      [-79.09491, 38.07122],\n      [-79.09442, 38.07149],\n      [-79.0934, 38.07204],\n      [-79.09215, 38.0727],\n      [-79.09148, 38.07308],\n      [-79.09123, 38.07322],\n      [-79.09107, 38.07332],\n      [-79.09046, 38.0737],\n      [-79.08958, 38.07426],\n      [-79.08866, 38.07487],\n      [-79.08813, 38.07523],\n      [-79.0876, 38.07561],\n      [-79.08721, 38.07591],\n      [-79.08656, 38.07641],\n      [-79.08555, 38.07724],\n      [-79.08489, 38.07782],\n      [-79.08462, 38.07807],\n      [-79.08452, 38.07817],\n      [-79.08416, 38.07849],\n      [-79.0837, 38.07895],\n      [-79.08339, 38.07924],\n      [-79.0831, 38.07956],\n      [-79.08264, 38.08004],\n      [-79.08212, 38.08062],\n      [-79.08175, 38.08105],\n      [-79.08147, 38.0814],\n      [-79.08116, 38.08176],\n      [-79.08084, 38.08216],\n      [-79.08038, 38.08279],\n      [-79.07996, 38.08339],\n      [-79.07913, 38.08461],\n      [-79.07908, 38.08471],\n      [-79.07867, 38.08538],\n      [-79.07829, 38.08605],\n      [-79.07819, 38.08628],\n      [-79.0779, 38.08682],\n      [-79.0774, 38.08785],\n      [-79.07674, 38.08923],\n      [-79.07611, 38.09053],\n      [-79.07584, 38.0911],\n      [-79.07539, 38.09203],\n      [-79.07512, 38.0926],\n      [-79.07475, 38.09336],\n      [-79.07455, 38.09376],\n      [-79.07432, 38.09419],\n      [-79.07382, 38.09507],\n      [-79.0735, 38.09558],\n      [-79.07325, 38.09596],\n      [-79.07299, 38.09634],\n      [-79.07272, 38.09673],\n      [-79.07238, 38.0972],\n      [-79.07193, 38.09777],\n      [-79.07163, 38.09814],\n      [-79.07125, 38.09858],\n      [-79.07088, 38.099],\n      [-79.07041, 38.09949],\n      [-79.06966, 38.10024],\n      [-79.06916, 38.10072],\n      [-79.06878, 38.10107],\n      [-79.06777, 38.10202],\n      [-79.06658, 38.1031],\n      [-79.06617, 38.10348],\n      [-79.06535, 38.1043],\n      [-79.06507, 38.10456],\n      [-79.06445, 38.10514],\n      [-79.06391, 38.10565],\n      [-79.06338, 38.10615],\n      [-79.06294, 38.10657],\n      [-79.06251, 38.10697],\n      [-79.0618, 38.10762],\n      [-79.06066, 38.10868],\n      [-79.05955, 38.10976],\n      [-79.0574, 38.11178],\n      [-79.05705, 38.11211],\n      [-79.05681, 38.11234],\n      [-79.05659, 38.11253],\n      [-79.0557, 38.11337],\n      [-79.05386, 38.11511],\n      [-79.05291, 38.116],\n      [-79.05235, 38.11654],\n      [-79.0521, 38.11677],\n      [-79.05083, 38.11796],\n      [-79.05001, 38.11873],\n      [-79.04972, 38.119],\n      [-79.04851, 38.12014],\n      [-79.0483, 38.12034],\n      [-79.04778, 38.12082],\n      [-79.04764, 38.12094],\n      [-79.0472, 38.12135],\n      [-79.0464, 38.12205],\n      [-79.04601, 38.12237],\n      [-79.04547, 38.1228],\n      [-79.04499, 38.12317],\n      [-79.0445, 38.12354],\n      [-79.0438, 38.12403],\n      [-79.04288, 38.12465],\n      [-79.04221, 38.12507],\n      [-79.04153, 38.12548],\n      [-79.04051, 38.12608],\n      [-79.03947, 38.12667],\n      [-79.03895, 38.12698],\n      [-79.03838, 38.1273],\n      [-79.03674, 38.12823],\n      [-79.03612, 38.12858],\n      [-79.03566, 38.12884],\n      [-79.03302, 38.13035],\n      [-79.03159, 38.13117],\n      [-79.03108, 38.13146],\n      [-79.03039, 38.13185],\n      [-79.02961, 38.13232],\n      [-79.02872, 38.13293],\n      [-79.02792, 38.13357],\n      [-79.02743, 38.13398],\n      [-79.02678, 38.13446],\n      [-79.02639, 38.13487],\n      [-79.026, 38.1353],\n      [-79.02548, 38.1359],\n      [-79.02477, 38.13677],\n      [-79.02405, 38.13765],\n      [-79.02304, 38.13887],\n      [-79.02212, 38.13999],\n      [-79.02116, 38.14116],\n      [-79.02041, 38.14208],\n      [-79.0202, 38.14236],\n      [-79.01912, 38.14382],\n      [-79.01851, 38.14488],\n      [-79.018, 38.14587],\n      [-79.01764, 38.14707],\n      [-79.01721, 38.14853],\n      [-79.01679, 38.14998],\n      [-79.01611, 38.15236],\n      [-79.01593, 38.15301],\n      [-79.01556, 38.15433],\n      [-79.01506, 38.15608],\n      [-79.01469, 38.15736],\n      [-79.01455, 38.15815],\n      [-79.01441, 38.1587],\n      [-79.01408, 38.1597],\n      [-79.01352, 38.16137],\n      [-79.01308, 38.16262],\n      [-79.01274, 38.16332],\n      [-79.01212, 38.16436],\n      [-79.0114, 38.16526],\n      [-79.01113, 38.16552],\n      [-79.01091, 38.16573],\n      [-79.01033, 38.16629],\n      [-79.00997, 38.16662],\n      [-79.00817, 38.16828],\n      [-79.00758, 38.16882],\n      [-79.00668, 38.16966],\n      [-79.00632, 38.16998],\n      [-79.00608, 38.17017],\n      [-79.00555, 38.17067],\n      [-79.00489, 38.17128],\n      [-79.00451, 38.17166],\n      [-79.0038, 38.17243],\n      [-79.0035, 38.17278],\n      [-79.00321, 38.17312],\n      [-79.0031, 38.17326],\n      [-79.00273, 38.17372],\n      [-79.00244, 38.17411],\n      [-79.00227, 38.17435],\n      [-79.00174, 38.17514],\n      [-79.00127, 38.17593],\n      [-79.00099, 38.17644],\n      [-79.00074, 38.17692],\n      [-79.00049, 38.17745],\n      [-79.00023, 38.17802],\n      [-79.00012, 38.17832],\n      [-78.99997, 38.17869],\n      [-78.99971, 38.17944],\n      [-78.99953, 38.18004],\n      [-78.99944, 38.1804],\n      [-78.99891, 38.18255],\n      [-78.99885, 38.18276],\n      [-78.99873, 38.18329],\n      [-78.99844, 38.18446],\n      [-78.99803, 38.18613],\n      [-78.99786, 38.18684],\n      [-78.99737, 38.18881],\n      [-78.99725, 38.1893],\n      [-78.99715, 38.18965],\n      [-78.99707, 38.19],\n      [-78.99698, 38.19042],\n      [-78.99678, 38.19119],\n      [-78.99673, 38.19136],\n      [-78.99666, 38.19171],\n      [-78.99607, 38.19404],\n      [-78.99592, 38.19464],\n      [-78.99571, 38.19553],\n      [-78.99552, 38.19627],\n      [-78.99545, 38.19651],\n      [-78.99514, 38.1978],\n      [-78.99491, 38.1988],\n      [-78.99481, 38.19926],\n      [-78.99462, 38.20003],\n      [-78.99412, 38.20206],\n      [-78.99401, 38.20246],\n      [-78.99365, 38.20391],\n      [-78.99361, 38.20409],\n      [-78.99347, 38.20463],\n      [-78.99273, 38.20764],\n      [-78.99209, 38.21025],\n      [-78.99202, 38.21053],\n      [-78.99188, 38.21114],\n      [-78.99156, 38.21238],\n      [-78.99153, 38.21245],\n      [-78.99139, 38.2129],\n      [-78.99117, 38.21352],\n      [-78.99099, 38.21396],\n      [-78.99084, 38.21429],\n      [-78.99064, 38.21472],\n      [-78.99046, 38.21506],\n      [-78.99017, 38.21557],\n      [-78.98998, 38.21587],\n      [-78.98963, 38.2164],\n      [-78.98935, 38.2168],\n      [-78.98911, 38.21711],\n      [-78.98886, 38.21742],\n      [-78.98859, 38.21774],\n      [-78.98822, 38.21816],\n      [-78.98781, 38.21859],\n      [-78.98743, 38.21896],\n      [-78.98694, 38.2194],\n      [-78.98613, 38.22009],\n      [-78.98577, 38.22041],\n      [-78.98308, 38.2227],\n      [-78.98199, 38.22362],\n      [-78.98169, 38.22387],\n      [-78.98113, 38.22436],\n      [-78.98047, 38.22492],\n      [-78.97983, 38.22545],\n      [-78.97937, 38.22585],\n      [-78.97778, 38.22721],\n      [-78.97643, 38.22836],\n      [-78.97581, 38.22888],\n      [-78.97542, 38.22922],\n      [-78.97494, 38.22962],\n      [-78.97214, 38.23202],\n      [-78.97131, 38.23272],\n      [-78.96992, 38.2339],\n      [-78.96743, 38.23601],\n      [-78.9672, 38.23622],\n      [-78.96629, 38.23699],\n      [-78.96584, 38.23739],\n      [-78.96537, 38.23782],\n      [-78.96463, 38.23857],\n      [-78.9639, 38.23932],\n      [-78.9635, 38.23973],\n      [-78.96317, 38.24011],\n      [-78.96279, 38.24054],\n      [-78.96202, 38.24147],\n      [-78.96116, 38.24253],\n      [-78.96053, 38.24328],\n      [-78.96011, 38.24381],\n      [-78.95903, 38.24514],\n      [-78.95869, 38.24554],\n      [-78.95815, 38.24621],\n      [-78.95764, 38.24685],\n      [-78.95715, 38.24743],\n      [-78.95699, 38.24764],\n      [-78.95674, 38.24797],\n      [-78.95569, 38.24927],\n      [-78.95479, 38.25035],\n      [-78.95366, 38.2516],\n      [-78.95329, 38.25203],\n      [-78.95268, 38.25267],\n      [-78.95243, 38.2529],\n      [-78.95218, 38.25314],\n      [-78.95186, 38.25347],\n      [-78.95138, 38.25398],\n      [-78.95097, 38.25442],\n      [-78.95081, 38.25462],\n      [-78.9505, 38.25492],\n      [-78.95002, 38.25538],\n      [-78.94886, 38.25646],\n      [-78.94822, 38.25704],\n      [-78.9476, 38.25762],\n      [-78.94613, 38.25896],\n      [-78.9455, 38.25955],\n      [-78.94369, 38.26122],\n      [-78.94348, 38.2614],\n      [-78.943, 38.26185],\n      [-78.94245, 38.26235],\n      [-78.94199, 38.26277],\n      [-78.94149, 38.26325],\n      [-78.94119, 38.26355],\n      [-78.94079, 38.26398],\n      [-78.94056, 38.26425],\n      [-78.9401, 38.26481],\n      [-78.93979, 38.26522],\n      [-78.93968, 38.26538],\n      [-78.93939, 38.26582],\n      [-78.93927, 38.266],\n      [-78.93918, 38.26616],\n      [-78.93886, 38.26668],\n      [-78.93869, 38.267],\n      [-78.93843, 38.26753],\n      [-78.93826, 38.2679],\n      [-78.9381, 38.26829],\n      [-78.93789, 38.26887],\n      [-78.93765, 38.26961],\n      [-78.93748, 38.27029],\n      [-78.93739, 38.27078],\n      [-78.9373, 38.27132],\n      [-78.93701, 38.27319],\n      [-78.93696, 38.27372],\n      [-78.9369, 38.27408],\n      [-78.93674, 38.27503],\n      [-78.93666, 38.27544],\n      [-78.93646, 38.27635],\n      [-78.93644, 38.27645],\n      [-78.93639, 38.27663],\n      [-78.93611, 38.27765],\n      [-78.93486, 38.28198],\n      [-78.9341, 38.28455],\n      [-78.93374, 38.28575],\n      [-78.93367, 38.28596],\n      [-78.93349, 38.28667],\n      [-78.93271, 38.28934],\n      [-78.932, 38.29179],\n      [-78.93191, 38.29207],\n      [-78.93183, 38.29234],\n      [-78.93166, 38.29287],\n      [-78.93154, 38.29332],\n      [-78.93144, 38.29369],\n      [-78.93136, 38.29402],\n      [-78.93021, 38.29797],\n      [-78.93002, 38.29867],\n      [-78.92995, 38.29897],\n      [-78.92983, 38.29958],\n      [-78.92971, 38.30028],\n      [-78.92966, 38.30071],\n      [-78.92963, 38.30099],\n      [-78.92958, 38.30163],\n      [-78.92956, 38.30197],\n      [-78.92955, 38.30272],\n      [-78.92958, 38.30358],\n      [-78.92978, 38.30688],\n      [-78.92978, 38.30693],\n      [-78.92979, 38.30702],\n      [-78.92994, 38.30957],\n      [-78.93018, 38.31335],\n      [-78.93024, 38.31426],\n      [-78.93039, 38.31671],\n      [-78.93053, 38.31879],\n      [-78.93062, 38.31977],\n      [-78.93068, 38.32034],\n      [-78.93072, 38.32074],\n      [-78.93079, 38.32128],\n      [-78.93099, 38.32258],\n      [-78.93111, 38.3233],\n      [-78.93125, 38.3242],\n      [-78.93142, 38.32528],\n      [-78.93194, 38.32845],\n      [-78.93205, 38.32921],\n      [-78.93234, 38.33096],\n      [-78.93238, 38.33128],\n      [-78.93248, 38.33183],\n      [-78.93252, 38.33216],\n      [-78.93257, 38.33243],\n      [-78.93268, 38.3331],\n      [-78.93284, 38.33406],\n      [-78.93301, 38.33507],\n      [-78.93352, 38.33826],\n      [-78.93367, 38.33925],\n      [-78.9337, 38.33947],\n      [-78.93378, 38.34023],\n      [-78.9338, 38.34067],\n      [-78.93381, 38.34111],\n      [-78.93382, 38.34166],\n      [-78.93381, 38.3421],\n      [-78.93379, 38.34243],\n      [-78.93377, 38.34274],\n      [-78.93375, 38.34303],\n      [-78.93373, 38.34319],\n      [-78.93369, 38.34352],\n      [-78.93364, 38.34385],\n      [-78.93358, 38.34429],\n      [-78.9335, 38.34472],\n      [-78.93346, 38.34492],\n      [-78.93339, 38.34526],\n      [-78.93333, 38.34551],\n      [-78.93327, 38.34573],\n      [-78.93318, 38.34603],\n      [-78.93302, 38.34656],\n      [-78.93288, 38.34698],\n      [-78.93276, 38.3473],\n      [-78.93257, 38.34779],\n      [-78.93234, 38.34835],\n      [-78.93215, 38.34876],\n      [-78.93195, 38.34917],\n      [-78.93183, 38.34939],\n      [-78.93173, 38.34959],\n      [-78.93127, 38.35041],\n      [-78.93119, 38.35053],\n      [-78.93102, 38.35081],\n      [-78.93069, 38.35131],\n      [-78.93046, 38.35163],\n      [-78.92906, 38.35376],\n      [-78.92884, 38.35411],\n      [-78.92864, 38.35443],\n      [-78.92857, 38.35453],\n      [-78.92721, 38.3566],\n      [-78.92631, 38.35796],\n      [-78.92511, 38.35977],\n      [-78.92499, 38.35994],\n      [-78.92482, 38.36019],\n      [-78.92391, 38.36155],\n      [-78.9237, 38.36188],\n      [-78.92296, 38.36299],\n      [-78.92258, 38.3636],\n      [-78.92227, 38.36418],\n      [-78.92203, 38.3646],\n      [-78.92176, 38.3651],\n      [-78.9215, 38.36561],\n      [-78.92127, 38.3661],\n      [-78.92106, 38.36655],\n      [-78.92074, 38.36728],\n      [-78.92057, 38.36771],\n      [-78.92029, 38.36845],\n      [-78.91996, 38.36941],\n      [-78.91982, 38.36984],\n      [-78.9197, 38.37027],\n      [-78.91953, 38.37092],\n      [-78.91942, 38.37136],\n      [-78.91811, 38.37704],\n      [-78.91777, 38.37852],\n      [-78.91678, 38.38278],\n      [-78.9166, 38.3835],\n      [-78.9164, 38.38418],\n      [-78.9163, 38.3845],\n      [-78.91605, 38.38525],\n      [-78.9159, 38.38568],\n      [-78.91562, 38.38641],\n      [-78.91549, 38.38673],\n      [-78.91535, 38.38705],\n      [-78.91501, 38.3878],\n      [-78.91467, 38.3885],\n      [-78.91409, 38.3897],\n      [-78.91405, 38.38977],\n      [-78.91385, 38.39019],\n      [-78.91238, 38.39317],\n      [-78.91206, 38.39383],\n      [-78.91187, 38.3942],\n      [-78.91176, 38.3944],\n      [-78.91165, 38.39461],\n      [-78.91151, 38.3949],\n      [-78.91097, 38.39601],\n      [-78.91062, 38.39676],\n      [-78.91035, 38.39732],\n      [-78.91014, 38.39774],\n      [-78.90999, 38.39805],\n      [-78.90984, 38.39836],\n      [-78.90962, 38.39877],\n      [-78.90945, 38.39907],\n      [-78.90922, 38.39947],\n      [-78.90903, 38.39978],\n      [-78.90886, 38.40004],\n      [-78.90878, 38.40017],\n      [-78.90859, 38.40045],\n      [-78.90847, 38.40062],\n      [-78.90846, 38.40063],\n      [-78.90814, 38.40105],\n      [-78.908, 38.40124],\n      [-78.90784, 38.40145],\n      [-78.90769, 38.40164],\n      [-78.90758, 38.40178],\n      [-78.90724, 38.40218],\n      [-78.90704, 38.40241],\n      [-78.90692, 38.40255],\n      [-78.90685, 38.40263],\n      [-78.90663, 38.40286],\n      [-78.90636, 38.40315],\n      [-78.90576, 38.40376],\n      [-78.90565, 38.40387],\n      [-78.90536, 38.40413],\n      [-78.90532, 38.40418],\n      [-78.90507, 38.4044],\n      [-78.90485, 38.40459],\n      [-78.90465, 38.40476],\n      [-78.90448, 38.40491],\n      [-78.90418, 38.40515],\n      [-78.904, 38.40529],\n      [-78.90376, 38.40547],\n      [-78.90371, 38.40552],\n      [-78.90338, 38.40576],\n      [-78.90307, 38.40598],\n      [-78.90277, 38.40619],\n      [-78.90245, 38.40641],\n      [-78.90205, 38.40667],\n      [-78.90169, 38.4069],\n      [-78.9014, 38.40708],\n      [-78.90105, 38.40729],\n      [-78.90072, 38.40748],\n      [-78.90036, 38.40767],\n      [-78.90001, 38.40787],\n      [-78.89943, 38.40817],\n      [-78.89906, 38.40835],\n      [-78.89873, 38.40852],\n      [-78.89837, 38.40871],\n      [-78.89779, 38.40901],\n      [-78.89743, 38.4092],\n      [-78.89698, 38.40943],\n      [-78.89674, 38.40955],\n      [-78.89615, 38.40986],\n      [-78.8958, 38.41004],\n      [-78.89511, 38.41039],\n      [-78.8944, 38.41076],\n      [-78.89367, 38.41114],\n      [-78.89332, 38.41132],\n      [-78.89287, 38.41156],\n      [-78.8924, 38.4118],\n      [-78.89171, 38.41215],\n      [-78.89082, 38.41261],\n      [-78.8903, 38.41287],\n      [-78.88996, 38.41306],\n      [-78.8895, 38.41332],\n      [-78.8893, 38.41344],\n      [-78.88901, 38.41362],\n      [-78.88872, 38.4138],\n      [-78.88853, 38.41393],\n      [-78.88835, 38.41405],\n      [-78.88825, 38.41412],\n      [-78.88798, 38.41431],\n      [-78.8877, 38.41451],\n      [-78.88761, 38.41458],\n      [-78.88743, 38.41471],\n      [-78.88726, 38.41485],\n      [-78.88708, 38.41499],\n      [-78.8868, 38.41523],\n      [-78.88633, 38.41564],\n      [-78.88606, 38.41589],\n      [-78.88568, 38.41626],\n      [-78.88539, 38.41656],\n      [-78.88529, 38.41667],\n      [-78.88511, 38.41686],\n      [-78.88504, 38.41693],\n      [-78.88488, 38.41712],\n      [-78.88464, 38.41741],\n      [-78.8845, 38.41758],\n      [-78.88428, 38.41785],\n      [-78.88424, 38.4179],\n      [-78.88394, 38.41829],\n      [-78.88376, 38.41852],\n      [-78.88326, 38.41916],\n      [-78.88296, 38.41954],\n      [-78.88178, 38.42106],\n      [-78.88144, 38.42149],\n      [-78.88106, 38.42198],\n      [-78.88046, 38.42275],\n      [-78.88034, 38.42291],\n      [-78.88015, 38.42316],\n      [-78.87994, 38.42342],\n      [-78.87989, 38.42349],\n      [-78.87956, 38.42388],\n      [-78.87942, 38.42406],\n      [-78.87884, 38.4248],\n      [-78.87869, 38.425],\n      [-78.87837, 38.42541],\n      [-78.87817, 38.42566],\n      [-78.87756, 38.42644],\n      [-78.87735, 38.42672],\n      [-78.87692, 38.4273],\n      [-78.87671, 38.42756],\n      [-78.87614, 38.42829],\n      [-78.87593, 38.42856],\n      [-78.87563, 38.42895],\n      [-78.87557, 38.42903],\n      [-78.87548, 38.42916],\n      [-78.87519, 38.42951],\n      [-78.87499, 38.42976],\n      [-78.87494, 38.42982],\n      [-78.87474, 38.43005],\n      [-78.8745, 38.43032],\n      [-78.87445, 38.43037],\n      [-78.87424, 38.43058],\n      [-78.87404, 38.43079],\n      [-78.87376, 38.43105],\n      [-78.87348, 38.43131],\n      [-78.87319, 38.43155],\n      [-78.87298, 38.43172],\n      [-78.87285, 38.43182],\n      [-78.87261, 38.43201],\n      [-78.8722, 38.4323],\n      [-78.87188, 38.43252],\n      [-78.87165, 38.43266],\n      [-78.87123, 38.43292],\n      [-78.87101, 38.43305],\n      [-78.87062, 38.43326],\n      [-78.87042, 38.43337],\n      [-78.87004, 38.43356],\n      [-78.86956, 38.43378],\n      [-78.86907, 38.43399],\n      [-78.86889, 38.43406],\n      [-78.86871, 38.43413],\n      [-78.86832, 38.43428],\n      [-78.86802, 38.43438],\n      [-78.86777, 38.43447],\n      [-78.86751, 38.43455],\n      [-78.86712, 38.43466],\n      [-78.86694, 38.43471],\n      [-78.86672, 38.43477],\n      [-78.86632, 38.43487],\n      [-78.86578, 38.43499],\n      [-78.86537, 38.43507],\n      [-78.86497, 38.43514],\n      [-78.8647, 38.43518],\n      [-78.86442, 38.43522],\n      [-78.86405, 38.43527],\n      [-78.86373, 38.4353],\n      [-78.86359, 38.43531],\n      [-78.8633, 38.43534],\n      [-78.86304, 38.43535],\n      [-78.86276, 38.43537],\n      [-78.86234, 38.43539],\n      [-78.86192, 38.4354],\n      [-78.8615, 38.4354],\n      [-78.85969, 38.43542],\n      [-78.85941, 38.43543],\n      [-78.85891, 38.43545],\n      [-78.85853, 38.43547],\n      [-78.85814, 38.4355],\n      [-78.85788, 38.43552],\n      [-78.85744, 38.43556],\n      [-78.85722, 38.43558],\n      [-78.85703, 38.43561],\n      [-78.85658, 38.43567],\n      [-78.85612, 38.43575],\n      [-78.85558, 38.43586],\n      [-78.85492, 38.43601],\n      [-78.8546, 38.4361],\n      [-78.85431, 38.43618],\n      [-78.85417, 38.43623],\n      [-78.85351, 38.43644],\n      [-78.85313, 38.43658],\n      [-78.85264, 38.43676],\n      [-78.85217, 38.43695],\n      [-78.85182, 38.4371],\n      [-78.85109, 38.43745],\n      [-78.85075, 38.43762],\n      [-78.85058, 38.4377],\n      [-78.85027, 38.43788],\n      [-78.85022, 38.43791],\n      [-78.85012, 38.43798],\n      [-78.85008, 38.438],\n      [-78.85002, 38.43804],\n      [-78.84998, 38.43807],\n      [-78.84956, 38.43833],\n      [-78.84914, 38.43861],\n      [-78.84884, 38.43883],\n      [-78.84843, 38.43911],\n      [-78.84804, 38.43943],\n      [-78.84796, 38.43949],\n      [-78.84747, 38.43993],\n      [-78.84743, 38.43997],\n      [-78.84697, 38.44042],\n      [-78.84691, 38.44049],\n      [-78.84673, 38.44068],\n      [-78.84646, 38.44096],\n      [-78.84622, 38.44123],\n      [-78.84589, 38.44156],\n      [-78.84555, 38.44192],\n      [-78.84522, 38.44225],\n      [-78.84488, 38.44261],\n      [-78.84412, 38.44339],\n      [-78.84386, 38.44367],\n      [-78.84335, 38.4442],\n      [-78.843, 38.44455],\n      [-78.84283, 38.44472],\n      [-78.84264, 38.44493],\n      [-78.84225, 38.44532],\n      [-78.84207, 38.44551],\n      [-78.84115, 38.44646],\n      [-78.84098, 38.44664],\n      [-78.84085, 38.44677],\n      [-78.84061, 38.44701],\n      [-78.8403, 38.44734],\n      [-78.84002, 38.44763],\n      [-78.8398, 38.44784],\n      [-78.83938, 38.44827],\n      [-78.83915, 38.4485],\n      [-78.83901, 38.44864],\n      [-78.83869, 38.44895],\n      [-78.83814, 38.44948],\n      [-78.83738, 38.45022],\n      [-78.83708, 38.4505],\n      [-78.83689, 38.45068],\n      [-78.83644, 38.4511],\n      [-78.83618, 38.45133],\n      [-78.836, 38.4515],\n      [-78.83537, 38.45207],\n      [-78.83484, 38.45255],\n      [-78.83463, 38.45272],\n      [-78.83435, 38.45297],\n      [-78.83392, 38.45335],\n      [-78.83258, 38.45453],\n      [-78.82574, 38.46052],\n      [-78.82569, 38.46056],\n      [-78.82523, 38.46097],\n      [-78.82496, 38.46123],\n      [-78.8246, 38.46159],\n      [-78.8244, 38.46179],\n      [-78.82372, 38.46252],\n      [-78.82128, 38.46521],\n      [-78.81821, 38.46859],\n      [-78.81722, 38.46969],\n      [-78.81586, 38.47118],\n      [-78.81554, 38.47154],\n      [-78.8153, 38.47182],\n      [-78.81494, 38.47227],\n      [-78.81457, 38.47274],\n      [-78.81409, 38.47341],\n      [-78.81371, 38.474],\n      [-78.81335, 38.47459],\n      [-78.81323, 38.4748],\n      [-78.81312, 38.47499],\n      [-78.81295, 38.4753],\n      [-78.81275, 38.4757],\n      [-78.8126, 38.47601],\n      [-78.81236, 38.47653],\n      [-78.81214, 38.47705],\n      [-78.81201, 38.47737],\n      [-78.81186, 38.47778],\n      [-78.81087, 38.48065],\n      [-78.8104, 38.48192],\n      [-78.81014, 38.48254],\n      [-78.80975, 38.48336],\n      [-78.80958, 38.48368],\n      [-78.80942, 38.48397],\n      [-78.8092, 38.48437],\n      [-78.80902, 38.48466],\n      [-78.80883, 38.48496],\n      [-78.80864, 38.48526],\n      [-78.80836, 38.48566],\n      [-78.80798, 38.48618],\n      [-78.80737, 38.48691],\n      [-78.80715, 38.48717],\n      [-78.80678, 38.48759],\n      [-78.8061, 38.4883],\n      [-78.80518, 38.48925],\n      [-78.80456, 38.4899],\n      [-78.80424, 38.49025],\n      [-78.80391, 38.49058],\n      [-78.80354, 38.49097],\n      [-78.80313, 38.49139],\n      [-78.80235, 38.4922],\n      [-78.80209, 38.49245],\n      [-78.80169, 38.49288],\n      [-78.80146, 38.49311],\n      [-78.80129, 38.49329],\n      [-78.80068, 38.49392],\n      [-78.80023, 38.49439],\n      [-78.79919, 38.49545],\n      [-78.79849, 38.49617],\n      [-78.79759, 38.49704],\n      [-78.79707, 38.49752],\n      [-78.79651, 38.49803],\n      [-78.79578, 38.49867],\n      [-78.7951, 38.49925],\n      [-78.79471, 38.49956],\n      [-78.79425, 38.49993],\n      [-78.7913, 38.5023],\n      [-78.79098, 38.50256],\n      [-78.7891, 38.50408],\n      [-78.7889, 38.50424],\n      [-78.78851, 38.50456],\n      [-78.7877, 38.50523],\n      [-78.78737, 38.50551],\n      [-78.78691, 38.50593],\n      [-78.78673, 38.50609],\n      [-78.78618, 38.50661],\n      [-78.78558, 38.50721],\n      [-78.78523, 38.50756],\n      [-78.78496, 38.50786],\n      [-78.78458, 38.50826],\n      [-78.78426, 38.50862],\n      [-78.78342, 38.50962],\n      [-78.78326, 38.50982],\n      [-78.78312, 38.50999],\n      [-78.7826, 38.51069],\n      [-78.78254, 38.51076],\n      [-78.78214, 38.51132],\n      [-78.78151, 38.51224],\n      [-78.78134, 38.51251],\n      [-78.78103, 38.51301],\n      [-78.78095, 38.51316],\n      [-78.78073, 38.51354],\n      [-78.77909, 38.51636],\n      [-78.77892, 38.51666],\n      [-78.77827, 38.51778],\n      [-78.77697, 38.52003],\n      [-78.77653, 38.52077],\n      [-78.77437, 38.52451],\n      [-78.77389, 38.52533],\n      [-78.77368, 38.52569],\n      [-78.77295, 38.52696],\n      [-78.77275, 38.5273],\n      [-78.77237, 38.52796],\n      [-78.77097, 38.53038],\n      [-78.77064, 38.53096],\n      [-78.76991, 38.53217],\n      [-78.7693, 38.53312],\n      [-78.76894, 38.53364],\n      [-78.76847, 38.53428],\n      [-78.76809, 38.53478],\n      [-78.76755, 38.53545],\n      [-78.76679, 38.53634],\n      [-78.76619, 38.53699],\n      [-78.76543, 38.53778],\n      [-78.76459, 38.53863],\n      [-78.76381, 38.53941],\n      [-78.76367, 38.53956],\n      [-78.76324, 38.54],\n      [-78.76271, 38.54051],\n      [-78.76218, 38.54106],\n      [-78.76198, 38.54126],\n      [-78.75952, 38.54374],\n      [-78.75789, 38.54536],\n      [-78.75773, 38.54553],\n      [-78.75744, 38.54583],\n      [-78.7567, 38.54658],\n      [-78.75559, 38.54768],\n      [-78.75486, 38.54844],\n      [-78.75357, 38.54973],\n      [-78.75279, 38.55053],\n      [-78.75203, 38.55129],\n      [-78.75157, 38.55175],\n      [-78.75059, 38.55274],\n      [-78.75016, 38.55318],\n      [-78.74936, 38.55402],\n      [-78.74889, 38.55456],\n      [-78.74866, 38.55484],\n      [-78.7483, 38.5553],\n      [-78.74788, 38.55585],\n      [-78.74761, 38.55623],\n      [-78.74729, 38.55672],\n      [-78.74694, 38.55729],\n      [-78.74687, 38.5574],\n      [-78.74671, 38.5577],\n      [-78.74644, 38.55819],\n      [-78.74599, 38.55906],\n      [-78.74591, 38.55922],\n      [-78.74581, 38.55945],\n      [-78.74542, 38.56045],\n      [-78.74526, 38.56092],\n      [-78.74516, 38.56129],\n      [-78.74507, 38.56159],\n      [-78.74475, 38.56265],\n      [-78.74458, 38.56317],\n      [-78.7444, 38.56379],\n      [-78.7437, 38.56604],\n      [-78.74356, 38.56643],\n      [-78.74343, 38.56685],\n      [-78.74315, 38.56772],\n      [-78.74291, 38.56839],\n      [-78.74266, 38.56905],\n      [-78.74244, 38.56958],\n      [-78.74188, 38.57083],\n      [-78.74171, 38.5712],\n      [-78.74129, 38.57201],\n      [-78.74107, 38.5724],\n      [-78.74084, 38.57281],\n      [-78.74054, 38.5733],\n      [-78.74026, 38.57375],\n      [-78.74017, 38.5739],\n      [-78.73943, 38.57497],\n      [-78.73927, 38.57519],\n      [-78.73853, 38.57619],\n      [-78.73758, 38.57742],\n      [-78.73625, 38.57916],\n      [-78.73562, 38.57997],\n      [-78.73532, 38.58036],\n      [-78.73101, 38.58599],\n      [-78.73062, 38.58651],\n      [-78.73042, 38.58675],\n      [-78.7282, 38.58965],\n      [-78.72769, 38.59032],\n      [-78.72712, 38.59107],\n      [-78.72659, 38.59175],\n      [-78.72561, 38.59303],\n      [-78.72483, 38.59405],\n      [-78.72319, 38.59619],\n      [-78.72204, 38.59768],\n      [-78.72161, 38.59825],\n      [-78.72075, 38.59937],\n      [-78.71742, 38.6037],\n      [-78.71697, 38.60427],\n      [-78.71634, 38.60502],\n      [-78.7157, 38.60573],\n      [-78.71518, 38.60628],\n      [-78.71479, 38.60668],\n      [-78.71409, 38.60736],\n      [-78.71283, 38.60852],\n      [-78.71064, 38.61053],\n      [-78.70922, 38.61184],\n      [-78.70784, 38.61312],\n      [-78.70732, 38.61364],\n      [-78.70674, 38.61425],\n      [-78.70642, 38.61461],\n      [-78.70597, 38.61515],\n      [-78.70559, 38.61562],\n      [-78.70517, 38.6162],\n      [-78.70469, 38.61689],\n      [-78.70431, 38.61751],\n      [-78.70415, 38.61776],\n      [-78.70136, 38.62242],\n      [-78.701, 38.62301],\n      [-78.70088, 38.62322],\n      [-78.70079, 38.62337],\n      [-78.70034, 38.62411],\n      [-78.70016, 38.6244],\n      [-78.69989, 38.62479],\n      [-78.69954, 38.62526],\n      [-78.69916, 38.62574],\n      [-78.69871, 38.62626],\n      [-78.69845, 38.62654],\n      [-78.69767, 38.62731],\n      [-78.69711, 38.62781],\n      [-78.69694, 38.62795],\n      [-78.69662, 38.62821],\n      [-78.69631, 38.62845],\n      [-78.69568, 38.6289],\n      [-78.69493, 38.62941],\n      [-78.69376, 38.63019],\n      [-78.68709, 38.63461],\n      [-78.6865, 38.63503],\n      [-78.68635, 38.63513],\n      [-78.68596, 38.63542],\n      [-78.68575, 38.63558],\n      [-78.68508, 38.63611],\n      [-78.68467, 38.63645],\n      [-78.6838, 38.63724],\n      [-78.68335, 38.6377],\n      [-78.68323, 38.63782],\n      [-78.68274, 38.63833],\n      [-78.68228, 38.63886],\n      [-78.68189, 38.63933],\n      [-78.6811, 38.64038],\n      [-78.68024, 38.64167],\n      [-78.67994, 38.64214],\n      [-78.67797, 38.64512],\n      [-78.67741, 38.64598],\n      [-78.67614, 38.64793],\n      [-78.67575, 38.64853],\n      [-78.67422, 38.65089],\n      [-78.67255, 38.6534],\n      [-78.6704, 38.65672],\n      [-78.67017, 38.65706],\n      [-78.66986, 38.65754],\n      [-78.66798, 38.66042],\n      [-78.66738, 38.66137],\n      [-78.66684, 38.66232],\n      [-78.6665, 38.66294],\n      [-78.66625, 38.66345],\n      [-78.66527, 38.66563],\n      [-78.66313, 38.67093],\n      [-78.66111, 38.67581],\n      [-78.66074, 38.67669],\n      [-78.65913, 38.68069],\n      [-78.65829, 38.68267],\n      [-78.65827, 38.68271],\n      [-78.65805, 38.6833],\n      [-78.65767, 38.68425],\n      [-78.65759, 38.68446],\n      [-78.65743, 38.68484],\n      [-78.65626, 38.68766],\n      [-78.65593, 38.6885],\n      [-78.65517, 38.6903],\n      [-78.65467, 38.69185],\n      [-78.65439, 38.69326],\n      [-78.65437, 38.69337],\n      [-78.65425, 38.69424],\n      [-78.65413, 38.69576],\n      [-78.65415, 38.69655],\n      [-78.65419, 38.69731],\n      [-78.65425, 38.69806],\n      [-78.65434, 38.69865],\n      [-78.65447, 38.6994],\n      [-78.65458, 38.69991],\n      [-78.65459, 38.69998],\n      [-78.65461, 38.70006],\n      [-78.65476, 38.7006],\n      [-78.65494, 38.70122],\n      [-78.65501, 38.70146],\n      [-78.65539, 38.70249],\n      [-78.65573, 38.7034],\n      [-78.65627, 38.70483],\n      [-78.65648, 38.70538],\n      [-78.65669, 38.70591],\n      [-78.65681, 38.70629],\n      [-78.65705, 38.7069],\n      [-78.65757, 38.70829],\n      [-78.65793, 38.7092],\n      [-78.65875, 38.71139],\n      [-78.65956, 38.71361],\n      [-78.65971, 38.71409],\n      [-78.65983, 38.71447],\n      [-78.65987, 38.71465],\n      [-78.65993, 38.71489],\n      [-78.6601, 38.71567],\n      [-78.66021, 38.71646],\n      [-78.66024, 38.71678],\n      [-78.66026, 38.71758],\n      [-78.66024, 38.7186],\n      [-78.66021, 38.71894],\n      [-78.66013, 38.71963],\n      [-78.66008, 38.71991],\n      [-78.65999, 38.72036],\n      [-78.65982, 38.72103],\n      [-78.65945, 38.72215],\n      [-78.6593, 38.72252],\n      [-78.65908, 38.72301],\n      [-78.65902, 38.72315],\n      [-78.65884, 38.72352],\n      [-78.65849, 38.72414],\n      [-78.65846, 38.72419],\n      [-78.65823, 38.72453],\n      [-78.65796, 38.72493],\n      [-78.65743, 38.7257],\n      [-78.65696, 38.7263],\n      [-78.65637, 38.72696],\n      [-78.65624, 38.7271],\n      [-78.65574, 38.72762],\n      [-78.65379, 38.7297],\n      [-78.6523, 38.73128],\n      [-78.65204, 38.73157],\n      [-78.6518, 38.73187],\n      [-78.65163, 38.73213],\n      [-78.65158, 38.7322],\n      [-78.65134, 38.73253],\n      [-78.65096, 38.73314],\n      [-78.65072, 38.73371],\n      [-78.65055, 38.73423],\n      [-78.65041, 38.73492],\n      [-78.65037, 38.73531],\n      [-78.65036, 38.73576],\n      [-78.65039, 38.73671],\n      [-78.65041, 38.73704],\n      [-78.65049, 38.73798],\n      [-78.6508, 38.74077],\n      [-78.65092, 38.7423],\n      [-78.65093, 38.74285],\n      [-78.6509, 38.7435],\n      [-78.65088, 38.74376],\n      [-78.65081, 38.74437],\n      [-78.65068, 38.7451],\n      [-78.65047, 38.74594],\n      [-78.65036, 38.74632],\n      [-78.65011, 38.74699],\n      [-78.64991, 38.74748],\n      [-78.6497, 38.74793],\n      [-78.64944, 38.74844],\n      [-78.64919, 38.74883],\n      [-78.64856, 38.7498],\n      [-78.6485, 38.74989],\n      [-78.64823, 38.75026],\n      [-78.64797, 38.7506],\n      [-78.64794, 38.75064],\n      [-78.64767, 38.75096],\n      [-78.64739, 38.75127],\n      [-78.64647, 38.75218],\n      [-78.64646, 38.75219],\n      [-78.64613, 38.75248],\n      [-78.64566, 38.75286],\n      [-78.64346, 38.75453],\n      [-78.63656, 38.75979],\n      [-78.63437, 38.76148],\n      [-78.63367, 38.76202],\n      [-78.63291, 38.7626],\n      [-78.63014, 38.76469],\n      [-78.62819, 38.76621],\n      [-78.62745, 38.76677],\n      [-78.62618, 38.76785],\n      [-78.62502, 38.76887],\n      [-78.6246, 38.76924],\n      [-78.62394, 38.76984],\n      [-78.62315, 38.77058],\n      [-78.62294, 38.77077],\n      [-78.62248, 38.77122],\n      [-78.62195, 38.77174],\n      [-78.62128, 38.77243],\n      [-78.62101, 38.77269],\n      [-78.62054, 38.77319],\n      [-78.61994, 38.77384],\n      [-78.61886, 38.77505],\n      [-78.61879, 38.77512],\n      [-78.61794, 38.77612],\n      [-78.61721, 38.777],\n      [-78.61629, 38.77817],\n      [-78.61594, 38.77864],\n      [-78.61525, 38.77957],\n      [-78.61424, 38.781],\n      [-78.61351, 38.78212],\n      [-78.61311, 38.78275],\n      [-78.61226, 38.78413],\n      [-78.61218, 38.78426],\n      [-78.61186, 38.78484],\n      [-78.61139, 38.78567],\n      [-78.61103, 38.78638],\n      [-78.61094, 38.78655],\n      [-78.6102, 38.78796],\n      [-78.60899, 38.79054],\n      [-78.6072, 38.79436],\n      [-78.60717, 38.79442],\n      [-78.60598, 38.79696],\n      [-78.60424, 38.80071],\n      [-78.60358, 38.80213],\n      [-78.60338, 38.80254],\n      [-78.60303, 38.80321],\n      [-78.60266, 38.80387],\n      [-78.60186, 38.80516],\n      [-78.60138, 38.80587],\n      [-78.6011, 38.80628],\n      [-78.60056, 38.80701],\n      [-78.59988, 38.80783],\n      [-78.59925, 38.8086],\n      [-78.59834, 38.80961],\n      [-78.59809, 38.80986],\n      [-78.59792, 38.81003],\n      [-78.59746, 38.8105],\n      [-78.59724, 38.81071],\n      [-78.59694, 38.81099],\n      [-78.59584, 38.81202],\n      [-78.59446, 38.81339],\n      [-78.59132, 38.81617],\n      [-78.58737, 38.81979],\n      [-78.58448, 38.82242],\n      [-78.58251, 38.82423],\n      [-78.58128, 38.82533],\n      [-78.58098, 38.82561],\n      [-78.57821, 38.82819],\n      [-78.57754, 38.82881],\n      [-78.57712, 38.82917],\n      [-78.57603, 38.83016],\n      [-78.57513, 38.83099],\n      [-78.57438, 38.83162],\n      [-78.57397, 38.83195],\n      [-78.57319, 38.83253],\n      [-78.573, 38.83266],\n      [-78.57227, 38.83316],\n      [-78.57138, 38.83369],\n      [-78.57102, 38.83391],\n      [-78.5702, 38.83441],\n      [-78.56917, 38.83507],\n      [-78.56903, 38.83516],\n      [-78.56678, 38.83653],\n      [-78.5636, 38.83847],\n      [-78.56333, 38.83864],\n      [-78.56243, 38.83921],\n      [-78.55957, 38.84097],\n      [-78.55803, 38.84189],\n      [-78.5568, 38.84266],\n      [-78.5555, 38.84347],\n      [-78.5534, 38.84476],\n      [-78.54879, 38.84758],\n      [-78.54783, 38.84815],\n      [-78.54585, 38.84935],\n      [-78.54531, 38.8497],\n      [-78.54472, 38.85006],\n      [-78.54438, 38.85029],\n      [-78.54339, 38.8509],\n      [-78.54244, 38.85154],\n      [-78.54126, 38.8524],\n      [-78.54023, 38.85319],\n      [-78.53878, 38.85445],\n      [-78.53814, 38.85504],\n      [-78.53779, 38.85541],\n      [-78.53725, 38.85595],\n      [-78.53644, 38.85678],\n      [-78.53584, 38.85744],\n      [-78.53486, 38.85864],\n      [-78.53375, 38.86021],\n      [-78.53318, 38.86108],\n      [-78.5331, 38.8612],\n      [-78.53271, 38.86186],\n      [-78.53269, 38.8619],\n      [-78.53243, 38.86234],\n      [-78.53167, 38.8637],\n      [-78.53111, 38.8647],\n      [-78.53088, 38.86512],\n      [-78.53014, 38.86651],\n      [-78.52885, 38.86889],\n      [-78.52826, 38.86995],\n      [-78.5279, 38.87054],\n      [-78.5276, 38.87114],\n      [-78.52755, 38.87124],\n      [-78.5272, 38.87187],\n      [-78.52666, 38.87294],\n      [-78.52656, 38.87311],\n      [-78.52556, 38.8749],\n      [-78.52466, 38.87659],\n      [-78.52426, 38.8773],\n      [-78.52408, 38.87761],\n      [-78.52354, 38.87861],\n      [-78.52331, 38.87904],\n      [-78.52254, 38.88043],\n      [-78.52177, 38.88189],\n      [-78.52027, 38.88461],\n      [-78.51973, 38.88547],\n      [-78.5196, 38.8857],\n      [-78.51938, 38.88606],\n      [-78.51901, 38.88664],\n      [-78.51872, 38.88707],\n      [-78.5187, 38.88711],\n      [-78.51776, 38.88849],\n      [-78.51757, 38.88877],\n      [-78.51667, 38.89005],\n      [-78.51477, 38.89247],\n      [-78.51444, 38.89287],\n      [-78.51401, 38.89338],\n      [-78.51362, 38.89383],\n      [-78.51275, 38.89482],\n      [-78.51105, 38.89663],\n      [-78.50968, 38.89801],\n      [-78.50793, 38.89971],\n      [-78.50308, 38.90442],\n      [-78.50183, 38.90569],\n      [-78.50126, 38.90629],\n      [-78.50015, 38.9075],\n      [-78.49912, 38.90866],\n      [-78.49832, 38.9096],\n      [-78.49682, 38.91141],\n      [-78.49634, 38.912],\n      [-78.49536, 38.91321],\n      [-78.49505, 38.91362],\n      [-78.49465, 38.91408],\n      [-78.48979, 38.9201],\n      [-78.4888, 38.92144],\n      [-78.48847, 38.92185],\n      [-78.48802, 38.92235],\n      [-78.4873, 38.92322],\n      [-78.48701, 38.92347],\n      [-78.48569, 38.92497],\n      [-78.48475, 38.92595],\n      [-78.48434, 38.92638],\n      [-78.48356, 38.9272],\n      [-78.48179, 38.92891],\n      [-78.48048, 38.93009],\n      [-78.47925, 38.93113],\n      [-78.47879, 38.93153],\n      [-78.47727, 38.93286],\n      [-78.47617, 38.93383],\n      [-78.47573, 38.93419],\n      [-78.47528, 38.9346],\n      [-78.47483, 38.93496],\n      [-78.47457, 38.93521],\n      [-78.47348, 38.93614],\n      [-78.47257, 38.9369],\n      [-78.46889, 38.94011],\n      [-78.46754, 38.94123],\n      [-78.46505, 38.94337],\n      [-78.46459, 38.94377],\n      [-78.46286, 38.94529],\n      [-78.4619, 38.94612],\n      [-78.46, 38.94776],\n      [-78.45871, 38.94888],\n      [-78.45752, 38.9499],\n      [-78.45636, 38.95089],\n      [-78.45537, 38.9517],\n      [-78.45484, 38.95211],\n      [-78.45402, 38.95278],\n      [-78.45301, 38.95353],\n      [-78.45283, 38.95366],\n      [-78.45214, 38.95417],\n      [-78.45197, 38.95428],\n      [-78.45161, 38.95454],\n      [-78.45081, 38.9551],\n      [-78.45051, 38.95532],\n      [-78.44591, 38.95854],\n      [-78.43996, 38.96276],\n      [-78.43683, 38.96494],\n      [-78.43624, 38.96538],\n      [-78.43545, 38.96595],\n      [-78.43453, 38.96662],\n      [-78.4334, 38.96749],\n      [-78.43251, 38.96819],\n      [-78.43166, 38.96889],\n      [-78.43048, 38.96989],\n      [-78.4301, 38.97021],\n      [-78.42958, 38.97067],\n      [-78.42931, 38.97092],\n      [-78.428, 38.97212],\n      [-78.42702, 38.97309],\n      [-78.42638, 38.97372],\n      [-78.42514, 38.97502],\n      [-78.42393, 38.97633],\n      [-78.4234, 38.97695],\n      [-78.42259, 38.97791],\n      [-78.41926, 38.98207],\n      [-78.41909, 38.98228],\n      [-78.41842, 38.98306],\n      [-78.4175, 38.98405],\n      [-78.4168, 38.98475],\n      [-78.41595, 38.98556],\n      [-78.41551, 38.98595],\n      [-78.41443, 38.98687],\n      [-78.41385, 38.98734],\n      [-78.41286, 38.98808],\n      [-78.41246, 38.98837],\n      [-78.41204, 38.98866],\n      [-78.41129, 38.98917],\n      [-78.41015, 38.9899],\n      [-78.40936, 38.99037],\n      [-78.40876, 38.99071],\n      [-78.40798, 38.99113],\n      [-78.40754, 38.99136],\n      [-78.40713, 38.99157],\n      [-78.40598, 38.99213],\n      [-78.40482, 38.99267],\n      [-78.40453, 38.9928],\n      [-78.40367, 38.99321],\n      [-78.40256, 38.99372],\n      [-78.39758, 38.99603],\n      [-78.39569, 38.99692],\n      [-78.39407, 38.99768],\n      [-78.38861, 39.00022],\n      [-78.38582, 39.00152],\n      [-78.38426, 39.00225],\n      [-78.38317, 39.00275],\n      [-78.37767, 39.00531],\n      [-78.37333, 39.00731],\n      [-78.37273, 39.00759],\n      [-78.36842, 39.0096],\n      [-78.36447, 39.01144],\n      [-78.36256, 39.01234],\n      [-78.36187, 39.01266],\n      [-78.36107, 39.01303],\n      [-78.36099, 39.01306],\n      [-78.36098, 39.01307],\n      [-78.35931, 39.01384],\n      [-78.35888, 39.01403],\n      [-78.35846, 39.01417],\n      [-78.35806, 39.01429],\n      [-78.35749, 39.01446],\n      [-78.35682, 39.0146],\n      [-78.35619, 39.01471],\n      [-78.35552, 39.01479],\n      [-78.35461, 39.01482],\n      [-78.35387, 39.01481],\n      [-78.35293, 39.01474],\n      [-78.35215, 39.01463],\n      [-78.35142, 39.01447],\n      [-78.35037, 39.01417],\n      [-78.34878, 39.01357],\n      [-78.34807, 39.0133],\n      [-78.34507, 39.0121],\n      [-78.3447, 39.01196],\n      [-78.34072, 39.0104],\n      [-78.33873, 39.00962],\n      [-78.33676, 39.00885],\n      [-78.33636, 39.0087],\n      [-78.33489, 39.00812],\n      [-78.33336, 39.00752],\n      [-78.33256, 39.0072],\n      [-78.32934, 39.00595],\n      [-78.32718, 39.0051],\n      [-78.32635, 39.0048],\n      [-78.32583, 39.00463],\n      [-78.32535, 39.00448],\n      [-78.32458, 39.00427],\n      [-78.32411, 39.00415],\n      [-78.32287, 39.00387],\n      [-78.32225, 39.00377],\n      [-78.32193, 39.00372],\n      [-78.32173, 39.00369],\n      [-78.32115, 39.00362],\n      [-78.32028, 39.00354],\n      [-78.3197, 39.0035],\n      [-78.31909, 39.00347],\n      [-78.31851, 39.00346],\n      [-78.3178, 39.00346],\n      [-78.31737, 39.00347],\n      [-78.3165, 39.00351],\n      [-78.31566, 39.00358],\n      [-78.31495, 39.00366],\n      [-78.31439, 39.00374],\n      [-78.31383, 39.00383],\n      [-78.31341, 39.00391],\n      [-78.3132, 39.00395],\n      [-78.31256, 39.00408],\n      [-78.31176, 39.00428],\n      [-78.31136, 39.00439],\n      [-78.31069, 39.00459],\n      [-78.31016, 39.00477],\n      [-78.30818, 39.00545],\n      [-78.30752, 39.00568],\n      [-78.30599, 39.00623],\n      [-78.30454, 39.00674],\n      [-78.30372, 39.00703],\n      [-78.30152, 39.00779],\n      [-78.30102, 39.00798],\n      [-78.3001, 39.00824],\n      [-78.29966, 39.00837],\n      [-78.29893, 39.00842],\n      [-78.29806, 39.00845],\n      [-78.29679, 39.00821],\n      [-78.29603, 39.00798],\n      [-78.29573, 39.00782],\n      [-78.29554, 39.00773],\n      [-78.29535, 39.00762],\n      [-78.29468, 39.00725],\n      [-78.29429, 39.00699],\n      [-78.29384, 39.00669],\n      [-78.29339, 39.00636],\n      [-78.29277, 39.00595],\n      [-78.28974, 39.00395],\n      [-78.28891, 39.00341],\n      [-78.28818, 39.00294],\n      [-78.28776, 39.00268],\n      [-78.28742, 39.0025],\n      [-78.28685, 39.00221],\n      [-78.28626, 39.00194],\n      [-78.28602, 39.00184],\n      [-78.28561, 39.00168],\n      [-78.28524, 39.00154],\n      [-78.2847, 39.00137],\n      [-78.28419, 39.00122],\n      [-78.283, 39.00092],\n      [-78.28103, 39.00044],\n      [-78.2805, 39.00031],\n      [-78.27923, 39],\n      [-78.27398, 38.9987],\n      [-78.27322, 38.99851],\n      [-78.27208, 38.99823],\n      [-78.27157, 38.99811],\n      [-78.27092, 38.99794],\n      [-78.2704, 38.99782],\n      [-78.27014, 38.99775],\n      [-78.26941, 38.99757],\n      [-78.26766, 38.99714],\n      [-78.26656, 38.99686],\n      [-78.26574, 38.99666],\n      [-78.26535, 38.99657],\n      [-78.26414, 38.99628],\n      [-78.26337, 38.99612],\n      [-78.26244, 38.99594],\n      [-78.26151, 38.99577],\n      [-78.26046, 38.99561],\n      [-78.2571, 38.99512],\n      [-78.25658, 38.99503],\n      [-78.25592, 38.99491],\n      [-78.25585, 38.99489],\n      [-78.25561, 38.99484],\n      [-78.255, 38.9947],\n      [-78.25461, 38.99461],\n      [-78.25411, 38.99447],\n      [-78.25373, 38.99436],\n      [-78.2531, 38.99417],\n      [-78.25266, 38.99402],\n      [-78.25236, 38.99391],\n      [-78.25165, 38.99363],\n      [-78.25093, 38.99333],\n      [-78.25036, 38.99306],\n      [-78.25016, 38.99296],\n      [-78.25002, 38.99289],\n      [-78.24957, 38.99266],\n      [-78.24912, 38.99241],\n      [-78.24803, 38.99181],\n      [-78.2466, 38.99101],\n      [-78.24495, 38.99009],\n      [-78.24155, 38.9882],\n      [-78.24053, 38.98764],\n      [-78.23858, 38.98654],\n      [-78.23781, 38.98613],\n      [-78.23637, 38.98533],\n      [-78.23536, 38.98476],\n      [-78.23385, 38.98392],\n      [-78.23165, 38.9827],\n      [-78.23021, 38.98193],\n      [-78.22872, 38.98114],\n      [-78.22834, 38.98094],\n      [-78.22752, 38.98052],\n      [-78.22673, 38.98012],\n      [-78.22575, 38.97962],\n      [-78.22438, 38.97893],\n      [-78.22147, 38.97744],\n      [-78.21975, 38.97656],\n      [-78.21485, 38.97407],\n      [-78.21393, 38.97359],\n      [-78.21303, 38.97312],\n      [-78.21178, 38.97244],\n      [-78.21149, 38.97228],\n      [-78.2109, 38.97194],\n      [-78.21014, 38.9715],\n      [-78.20966, 38.97121],\n      [-78.20907, 38.97086],\n      [-78.20674, 38.96942],\n      [-78.20648, 38.96926],\n      [-78.20307, 38.96712],\n      [-78.20135, 38.96605],\n      [-78.20012, 38.96528],\n      [-78.1995, 38.9649],\n      [-78.19907, 38.96463],\n      [-78.19661, 38.96309],\n      [-78.19654, 38.96304],\n      [-78.19553, 38.96243],\n      [-78.19544, 38.96237],\n      [-78.19476, 38.96194],\n      [-78.19318, 38.96095],\n      [-78.19256, 38.96056],\n      [-78.19064, 38.95937],\n      [-78.18965, 38.95874],\n      [-78.18877, 38.95816],\n      [-78.18813, 38.95773],\n      [-78.18684, 38.95685],\n      [-78.18622, 38.95642],\n      [-78.1857, 38.95606],\n      [-78.18509, 38.95564],\n      [-78.18468, 38.95535],\n      [-78.18466, 38.95534],\n      [-78.18429, 38.95508],\n      [-78.18354, 38.95455],\n      [-78.18257, 38.95391],\n      [-78.18213, 38.95363],\n      [-78.18144, 38.95323],\n      [-78.18095, 38.95298],\n      [-78.18051, 38.95277],\n      [-78.17988, 38.95248],\n      [-78.17967, 38.9524],\n      [-78.17924, 38.95223],\n      [-78.17873, 38.95204],\n      [-78.17834, 38.95191],\n      [-78.17795, 38.95179],\n      [-78.17754, 38.95168],\n      [-78.17713, 38.95157],\n      [-78.17646, 38.95141],\n      [-78.17507, 38.95113],\n      [-78.1748, 38.95108],\n      [-78.17413, 38.95094],\n      [-78.1737, 38.95085],\n      [-78.17279, 38.95067],\n      [-78.17095, 38.95029],\n      [-78.16908, 38.94991],\n      [-78.1688, 38.94985],\n      [-78.16769, 38.94962],\n      [-78.16339, 38.94873],\n      [-78.16212, 38.94848],\n      [-78.16102, 38.94825],\n      [-78.15864, 38.94778],\n      [-78.15261, 38.94656],\n      [-78.15146, 38.94632],\n      [-78.15105, 38.94623],\n      [-78.15018, 38.94602],\n      [-78.14938, 38.94581],\n      [-78.14874, 38.94564],\n      [-78.1478, 38.94535],\n      [-78.14689, 38.94508],\n      [-78.14044, 38.94293],\n      [-78.13844, 38.94226],\n      [-78.13618, 38.94151],\n      [-78.13594, 38.94142],\n      [-78.13555, 38.94127],\n      [-78.13501, 38.94104],\n      [-78.13463, 38.94085],\n      [-78.13426, 38.94066],\n      [-78.13389, 38.94044],\n      [-78.13352, 38.94021],\n      [-78.13316, 38.93997],\n      [-78.13286, 38.93975],\n      [-78.1325, 38.93946],\n      [-78.13223, 38.93923],\n      [-78.13199, 38.939],\n      [-78.13169, 38.93871],\n      [-78.1315, 38.93851],\n      [-78.13118, 38.93814],\n      [-78.13096, 38.93786],\n      [-78.13077, 38.9376],\n      [-78.13069, 38.93748],\n      [-78.1304, 38.937],\n      [-78.13027, 38.93678],\n      [-78.13008, 38.93641],\n      [-78.12999, 38.9362],\n      [-78.12984, 38.93583],\n      [-78.12971, 38.93547],\n      [-78.1296, 38.93509],\n      [-78.12951, 38.9347],\n      [-78.12946, 38.93436],\n      [-78.1294, 38.93394],\n      [-78.1294, 38.9339],\n      [-78.12938, 38.93364],\n      [-78.12938, 38.93327],\n      [-78.12938, 38.93296],\n      [-78.12941, 38.93256],\n      [-78.12977, 38.92931],\n      [-78.12986, 38.92832],\n      [-78.12988, 38.92797],\n      [-78.12988, 38.92756],\n      [-78.12986, 38.92723],\n      [-78.12983, 38.92695],\n      [-78.12982, 38.92688],\n      [-78.12978, 38.92656],\n      [-78.12969, 38.92614],\n      [-78.12961, 38.92581],\n      [-78.12949, 38.92541],\n      [-78.12939, 38.92514],\n      [-78.12917, 38.92464],\n      [-78.12896, 38.9242],\n      [-78.12887, 38.92404],\n      [-78.12862, 38.92363],\n      [-78.12839, 38.92329],\n      [-78.12818, 38.92302],\n      [-78.1281, 38.92291],\n      [-78.12754, 38.92227],\n      [-78.1274, 38.92213],\n      [-78.12713, 38.92186],\n      [-78.12674, 38.92152],\n      [-78.12635, 38.9212],\n      [-78.12601, 38.92095],\n      [-78.12549, 38.9206],\n      [-78.12506, 38.92034],\n      [-78.12469, 38.92014],\n      [-78.12436, 38.91997],\n      [-78.12368, 38.91966],\n      [-78.12355, 38.9196],\n      [-78.1234, 38.91954],\n      [-78.12322, 38.91947],\n      [-78.12258, 38.91926],\n      [-78.12241, 38.9192],\n      [-78.12185, 38.91903],\n      [-78.12136, 38.91891],\n      [-78.12092, 38.91882],\n      [-78.12045, 38.91873],\n      [-78.11994, 38.91865],\n      [-78.11935, 38.91856],\n      [-78.11568, 38.91797],\n      [-78.11143, 38.9173],\n      [-78.10523, 38.91631],\n      [-78.10426, 38.91616],\n      [-78.10399, 38.91611],\n      [-78.10371, 38.91607],\n      [-78.09955, 38.91541],\n      [-78.09897, 38.91531],\n      [-78.09456, 38.91461],\n      [-78.09408, 38.91452],\n      [-78.09371, 38.91444],\n      [-78.09318, 38.9143],\n      [-78.0927, 38.91415],\n      [-78.09222, 38.91399],\n      [-78.09172, 38.9138],\n      [-78.09147, 38.91369],\n      [-78.09092, 38.91343],\n      [-78.08803, 38.91204],\n      [-78.08752, 38.91181],\n      [-78.08716, 38.91166],\n      [-78.08695, 38.91158],\n      [-78.08643, 38.91141],\n      [-78.08603, 38.91129],\n      [-78.08565, 38.9112],\n      [-78.08522, 38.9111],\n      [-78.08475, 38.91102],\n      [-78.08443, 38.91097],\n      [-78.08398, 38.91092],\n      [-78.08352, 38.91088],\n      [-78.08315, 38.91086],\n      [-78.08275, 38.91085],\n      [-78.08239, 38.91086],\n      [-78.08192, 38.91088],\n      [-78.08154, 38.91091],\n      [-78.08111, 38.91095],\n      [-78.08098, 38.91097],\n      [-78.07786, 38.91139],\n      [-78.0773, 38.91145],\n      [-78.07686, 38.91149],\n      [-78.07609, 38.91154],\n      [-78.07592, 38.91155],\n      [-78.07547, 38.91157],\n      [-78.07503, 38.91157],\n      [-78.07446, 38.91157],\n      [-78.0738, 38.91155],\n      [-78.07359, 38.91155],\n      [-78.07293, 38.91151],\n      [-78.0718, 38.9114],\n      [-78.07068, 38.91128],\n      [-78.06985, 38.91119],\n      [-78.06557, 38.91075],\n      [-78.06533, 38.91073],\n      [-78.0648, 38.91068],\n      [-78.06179, 38.91036],\n      [-78.0609, 38.91028],\n      [-78.0601, 38.91023],\n      [-78.05941, 38.91019],\n      [-78.05857, 38.91015],\n      [-78.05774, 38.91014],\n      [-78.05671, 38.91012],\n      [-78.05649, 38.91012],\n      [-78.05579, 38.91011],\n      [-78.05534, 38.91011],\n      [-78.05353, 38.91009],\n      [-78.05302, 38.91008],\n      [-78.05245, 38.91007],\n      [-78.05202, 38.91007],\n      [-78.05103, 38.91006],\n      [-78.05042, 38.91006],\n      [-78.04677, 38.91002],\n      [-78.04424, 38.90997],\n      [-78.04342, 38.90995],\n      [-78.04259, 38.90991],\n      [-78.04201, 38.90988],\n      [-78.04136, 38.90982],\n      [-78.04067, 38.90976],\n      [-78.04011, 38.90971],\n      [-78.03927, 38.90961],\n      [-78.03835, 38.90949],\n      [-78.03815, 38.90946],\n      [-78.03782, 38.90941],\n      [-78.03709, 38.9093],\n      [-78.0364, 38.90918],\n      [-78.03551, 38.90904],\n      [-78.0322, 38.90851],\n      [-78.03155, 38.9084],\n      [-78.03046, 38.90823],\n      [-78.02964, 38.90809],\n      [-78.02881, 38.90796],\n      [-78.02796, 38.90781],\n      [-78.0279, 38.9078],\n      [-78.02708, 38.90768],\n      [-78.02606, 38.90752],\n      [-78.02503, 38.90735],\n      [-78.02275, 38.90698],\n      [-78.02167, 38.90679],\n      [-78.02082, 38.90666],\n      [-78.01999, 38.90654],\n      [-78.01878, 38.90639],\n      [-78.01857, 38.90636],\n      [-78.01832, 38.90635],\n      [-78.01828, 38.90635],\n      [-78.01775, 38.9063],\n      [-78.01656, 38.90624],\n      [-78.01572, 38.90621],\n      [-78.01453, 38.90621],\n      [-78.0134, 38.90626],\n      [-78.01079, 38.9064],\n      [-78.00976, 38.90645],\n      [-78.00951, 38.90647],\n      [-78.00723, 38.90658],\n      [-78.00589, 38.90665],\n      [-78.00571, 38.90666],\n      [-78.00568, 38.90666],\n      [-78.00509, 38.90669],\n      [-78.00388, 38.90675],\n      [-78.00302, 38.9068],\n      [-78.00131, 38.90689],\n      [-77.99893, 38.907],\n      [-77.9981, 38.90705],\n      [-77.99748, 38.90708],\n      [-77.99489, 38.90722],\n      [-77.99395, 38.90726],\n      [-77.99377, 38.90727],\n      [-77.99264, 38.90733],\n      [-77.99223, 38.90735],\n      [-77.98944, 38.9075],\n      [-77.98805, 38.90763],\n      [-77.98693, 38.90779],\n      [-77.98645, 38.90786],\n      [-77.98622, 38.9079],\n      [-77.98558, 38.90802],\n      [-77.98474, 38.90819],\n      [-77.98366, 38.90845],\n      [-77.9818, 38.90889],\n      [-77.98139, 38.90899],\n      [-77.98088, 38.90909],\n      [-77.98026, 38.9092],\n      [-77.97978, 38.90928],\n      [-77.97947, 38.90932],\n      [-77.97847, 38.9094],\n      [-77.97827, 38.90942],\n      [-77.97757, 38.90943],\n      [-77.97716, 38.90944],\n      [-77.97686, 38.90943],\n      [-77.97627, 38.90941],\n      [-77.97528, 38.90933],\n      [-77.97478, 38.90926],\n      [-77.97471, 38.90925],\n      [-77.97426, 38.90918],\n      [-77.97353, 38.90906],\n      [-77.97324, 38.909],\n      [-77.97276, 38.90889],\n      [-77.97221, 38.90875],\n      [-77.9715, 38.90856],\n      [-77.97048, 38.9083],\n      [-77.97032, 38.90827],\n      [-77.96955, 38.90809],\n      [-77.96921, 38.90803],\n      [-77.96894, 38.90799],\n      [-77.96864, 38.90795],\n      [-77.968, 38.9079],\n      [-77.96756, 38.90789],\n      [-77.96712, 38.90789],\n      [-77.96654, 38.90792],\n      [-77.9662, 38.90795],\n      [-77.96563, 38.90802],\n      [-77.9655, 38.90804],\n      [-77.96515, 38.9081],\n      [-77.96488, 38.90816],\n      [-77.96467, 38.90819],\n      [-77.96387, 38.90833],\n      [-77.96306, 38.90846],\n      [-77.96268, 38.9085],\n      [-77.9622, 38.90854],\n      [-77.96182, 38.90856],\n      [-77.96127, 38.90854],\n      [-77.96058, 38.9085],\n      [-77.96014, 38.90843],\n      [-77.95977, 38.90837],\n      [-77.95966, 38.90835],\n      [-77.9592, 38.90825],\n      [-77.95855, 38.90806],\n      [-77.9563, 38.90735],\n      [-77.95551, 38.9071],\n      [-77.9524, 38.90612],\n      [-77.95055, 38.90553],\n      [-77.94923, 38.90511],\n      [-77.94791, 38.90469],\n      [-77.94734, 38.90451],\n      [-77.94682, 38.90435],\n      [-77.94554, 38.90395],\n      [-77.94513, 38.90382],\n      [-77.94406, 38.90348],\n      [-77.94372, 38.90337],\n      [-77.94277, 38.90307],\n      [-77.94249, 38.90298],\n      [-77.94214, 38.90287],\n      [-77.94182, 38.90279],\n      [-77.94106, 38.90259],\n      [-77.93984, 38.90237],\n      [-77.93952, 38.90232],\n      [-77.9391, 38.90226],\n      [-77.93833, 38.9022],\n      [-77.93811, 38.90218],\n      [-77.93744, 38.90216],\n      [-77.93614, 38.90218],\n      [-77.93554, 38.90218],\n      [-77.93415, 38.9022],\n      [-77.93356, 38.9022],\n      [-77.93293, 38.90217],\n      [-77.93232, 38.90215],\n      [-77.93209, 38.90214],\n      [-77.93126, 38.90208],\n      [-77.92958, 38.90191],\n      [-77.9288, 38.90179],\n      [-77.92807, 38.90167],\n      [-77.92744, 38.90155],\n      [-77.92682, 38.90142],\n      [-77.92608, 38.90123],\n      [-77.92566, 38.90112],\n      [-77.92511, 38.90099],\n      [-77.92439, 38.90079],\n      [-77.92382, 38.90061],\n      [-77.92312, 38.90037],\n      [-77.92242, 38.90012],\n      [-77.92173, 38.89984],\n      [-77.92092, 38.8995],\n      [-77.92027, 38.8992],\n      [-77.91946, 38.8988],\n      [-77.91878, 38.89845],\n      [-77.91811, 38.89807],\n      [-77.91768, 38.89781],\n      [-77.91698, 38.89738],\n      [-77.91646, 38.89704],\n      [-77.91603, 38.89673],\n      [-77.91562, 38.89644],\n      [-77.91503, 38.89599],\n      [-77.91449, 38.89555],\n      [-77.91381, 38.89496],\n      [-77.91299, 38.8942],\n      [-77.91113, 38.89244],\n      [-77.90903, 38.89042],\n      [-77.9087, 38.89007],\n      [-77.90853, 38.88988],\n      [-77.90838, 38.88971],\n      [-77.90827, 38.88957],\n      [-77.90815, 38.88943],\n      [-77.90791, 38.88911],\n      [-77.90768, 38.88878],\n      [-77.90743, 38.88838],\n      [-77.90724, 38.88805],\n      [-77.90703, 38.88763],\n      [-77.90688, 38.88728],\n      [-77.90686, 38.88724],\n      [-77.90668, 38.88677],\n      [-77.90655, 38.88639],\n      [-77.90648, 38.88617],\n      [-77.90636, 38.88567],\n      [-77.90628, 38.88523],\n      [-77.90623, 38.8849],\n      [-77.90621, 38.88463],\n      [-77.90621, 38.88455],\n      [-77.90613, 38.88389],\n      [-77.90605, 38.88297],\n      [-77.90589, 38.88137],\n      [-77.90581, 38.88076],\n      [-77.90574, 38.88039],\n      [-77.90567, 38.88014],\n      [-77.90557, 38.87984],\n      [-77.90542, 38.87947],\n      [-77.90528, 38.87917],\n      [-77.90515, 38.87892],\n      [-77.90498, 38.87866],\n      [-77.90481, 38.8784],\n      [-77.90462, 38.87816],\n      [-77.90443, 38.87793],\n      [-77.90426, 38.87775],\n      [-77.90401, 38.8775],\n      [-77.90373, 38.87726],\n      [-77.90344, 38.87702],\n      [-77.90317, 38.87682],\n      [-77.90289, 38.87664],\n      [-77.90232, 38.8763],\n      [-77.90197, 38.8761],\n      [-77.90137, 38.87577],\n      [-77.89913, 38.87449],\n      [-77.89787, 38.87379],\n      [-77.89737, 38.8735],\n      [-77.8953, 38.87233],\n      [-77.8942, 38.8717],\n      [-77.894, 38.87159],\n      [-77.89287, 38.87093],\n      [-77.89215, 38.8705],\n      [-77.89107, 38.86988],\n      [-77.88943, 38.86895],\n      [-77.88908, 38.86875],\n      [-77.88883, 38.86861],\n      [-77.88815, 38.86822],\n      [-77.88485, 38.86635],\n      [-77.88399, 38.86587],\n      [-77.88313, 38.86537],\n      [-77.88074, 38.86402],\n      [-77.87913, 38.8631],\n      [-77.87856, 38.86279],\n      [-77.87797, 38.8625],\n      [-77.87738, 38.86221],\n      [-77.87678, 38.86193],\n      [-77.87617, 38.86167],\n      [-77.87555, 38.86142],\n      [-77.87488, 38.86117],\n      [-77.87421, 38.86093],\n      [-77.87352, 38.86071],\n      [-77.87263, 38.86045],\n      [-77.87201, 38.86027],\n      [-77.87167, 38.86018],\n      [-77.86497, 38.8583],\n      [-77.86436, 38.85814],\n      [-77.86386, 38.85803],\n      [-77.86336, 38.85792],\n      [-77.86278, 38.8578],\n      [-77.86223, 38.85771],\n      [-77.86179, 38.85764],\n      [-77.86123, 38.85757],\n      [-77.86057, 38.8575],\n      [-77.86002, 38.85745],\n      [-77.85947, 38.85742],\n      [-77.85876, 38.8574],\n      [-77.85814, 38.85739],\n      [-77.85752, 38.8574],\n      [-77.85635, 38.85745],\n      [-77.85614, 38.85746],\n      [-77.85413, 38.85757],\n      [-77.85112, 38.85774],\n      [-77.84734, 38.85795],\n      [-77.84466, 38.8581],\n      [-77.84332, 38.85816],\n      [-77.84181, 38.85825],\n      [-77.84076, 38.85831],\n      [-77.83989, 38.85834],\n      [-77.83824, 38.85839],\n      [-77.83741, 38.8584],\n      [-77.83648, 38.8584],\n      [-77.83537, 38.8584],\n      [-77.83403, 38.85838],\n      [-77.83367, 38.85837],\n      [-77.83324, 38.85836],\n      [-77.83224, 38.85833],\n      [-77.83048, 38.85825],\n      [-77.82948, 38.85819],\n      [-77.8282, 38.85809],\n      [-77.81887, 38.85741],\n      [-77.8172, 38.85729],\n      [-77.81574, 38.85719],\n      [-77.81102, 38.85683],\n      [-77.80981, 38.85671],\n      [-77.80862, 38.85655],\n      [-77.80791, 38.85645],\n      [-77.8076, 38.8564],\n      [-77.80703, 38.85631],\n      [-77.8063, 38.85618],\n      [-77.80482, 38.85587],\n      [-77.8042, 38.85573],\n      [-77.8025, 38.85531],\n      [-77.80117, 38.85492],\n      [-77.80025, 38.85463],\n      [-77.80006, 38.85457],\n      [-77.79955, 38.8544],\n      [-77.79879, 38.85414],\n      [-77.79782, 38.85377],\n      [-77.79733, 38.85358],\n      [-77.79652, 38.85324],\n      [-77.7959, 38.85297],\n      [-77.7957, 38.85288],\n      [-77.79526, 38.85268],\n      [-77.79384, 38.852],\n      [-77.79276, 38.85148],\n      [-77.78992, 38.85008],\n      [-77.78926, 38.84976],\n      [-77.78795, 38.84912],\n      [-77.78717, 38.84875],\n      [-77.78676, 38.84858],\n      [-77.78628, 38.84839],\n      [-77.786, 38.84828],\n      [-77.78595, 38.84826],\n      [-77.78552, 38.84811],\n      [-77.78502, 38.84795],\n      [-77.78459, 38.84782],\n      [-77.78452, 38.84781],\n      [-77.78394, 38.84766],\n      [-77.78348, 38.84755],\n      [-77.78289, 38.84743],\n      [-77.7823, 38.84733],\n      [-77.78182, 38.84726],\n      [-77.78122, 38.84719],\n      [-77.78079, 38.84715],\n      [-77.78025, 38.84711],\n      [-77.7797, 38.84709],\n      [-77.77905, 38.84709],\n      [-77.77487, 38.84716],\n      [-77.76843, 38.84729],\n      [-77.76655, 38.84732],\n      [-77.76456, 38.84737],\n      [-77.76353, 38.84736],\n      [-77.76242, 38.84732],\n      [-77.7618, 38.8473],\n      [-77.76137, 38.84728],\n      [-77.76106, 38.84725],\n      [-77.76042, 38.84718],\n      [-77.76007, 38.84713],\n      [-77.75949, 38.84704],\n      [-77.75889, 38.84694],\n      [-77.75828, 38.84681],\n      [-77.7578, 38.8467],\n      [-77.75769, 38.84668],\n      [-77.75716, 38.84654],\n      [-77.7568, 38.84645],\n      [-77.75652, 38.84637],\n      [-77.75576, 38.84612],\n      [-77.7557, 38.8461],\n      [-77.75493, 38.84583],\n      [-77.7545, 38.84567],\n      [-77.75349, 38.84525],\n      [-77.7531, 38.84507],\n      [-77.75246, 38.84475],\n      [-77.75201, 38.84451],\n      [-77.75156, 38.84425],\n      [-77.75119, 38.84403],\n      [-77.75072, 38.84373],\n      [-77.75036, 38.84349],\n      [-77.74965, 38.84298],\n      [-77.74525, 38.83955],\n      [-77.74428, 38.83877],\n      [-77.74334, 38.83798],\n      [-77.7426, 38.83734],\n      [-77.74186, 38.8367],\n      [-77.74178, 38.83661],\n      [-77.74078, 38.83571],\n      [-77.73989, 38.83488],\n      [-77.73894, 38.83395],\n      [-77.73772, 38.83274],\n      [-77.7373, 38.83235],\n      [-77.73677, 38.83189],\n      [-77.73638, 38.83158],\n      [-77.73596, 38.83126],\n      [-77.7355, 38.83093],\n      [-77.73502, 38.83061],\n      [-77.73445, 38.83025],\n      [-77.73384, 38.82989],\n      [-77.73354, 38.82973],\n      [-77.73307, 38.82947],\n      [-77.73266, 38.82928],\n      [-77.73218, 38.82906],\n      [-77.73201, 38.82898],\n      [-77.73147, 38.82876],\n      [-77.73085, 38.82851],\n      [-77.73043, 38.82836],\n      [-77.7299, 38.82818],\n      [-77.72944, 38.82804],\n      [-77.72898, 38.8279],\n      [-77.72823, 38.8277],\n      [-77.72295, 38.82635],\n      [-77.72247, 38.82622],\n      [-77.71983, 38.82555],\n      [-77.71623, 38.82462],\n      [-77.71593, 38.82455],\n      [-77.7149, 38.82429],\n      [-77.71457, 38.82422],\n      [-77.71413, 38.82413],\n      [-77.71358, 38.82403],\n      [-77.71303, 38.82395],\n      [-77.71246, 38.82389],\n      [-77.712, 38.82384],\n      [-77.71143, 38.8238],\n      [-77.71095, 38.82379],\n      [-77.71056, 38.82377],\n      [-77.71012, 38.82376],\n      [-77.70992, 38.82376],\n      [-77.7096, 38.82376],\n      [-77.70931, 38.82377],\n      [-77.70869, 38.82378],\n      [-77.7077, 38.82383],\n      [-77.70715, 38.82386],\n      [-77.70659, 38.82391],\n      [-77.70575, 38.82399],\n      [-77.70481, 38.82411],\n      [-77.70364, 38.82428],\n      [-77.70317, 38.82434],\n      [-77.70267, 38.82438],\n      [-77.70225, 38.82441],\n      [-77.70182, 38.82442],\n      [-77.70128, 38.82443],\n      [-77.70086, 38.82442],\n      [-77.70035, 38.82439],\n      [-77.69991, 38.82436],\n      [-77.69984, 38.82435],\n      [-77.69933, 38.8243],\n      [-77.6988, 38.82422],\n      [-77.69827, 38.82413],\n      [-77.69796, 38.82407],\n      [-77.69562, 38.82359],\n      [-77.69316, 38.82307],\n      [-77.69194, 38.82284],\n      [-77.69159, 38.82277],\n      [-77.69084, 38.82264],\n      [-77.69071, 38.82262],\n      [-77.68966, 38.82245],\n      [-77.68859, 38.82229],\n      [-77.6876, 38.82216],\n      [-77.68642, 38.82202],\n      [-77.68589, 38.82197],\n      [-77.68544, 38.82192],\n      [-77.68441, 38.82183],\n      [-77.68339, 38.82175],\n      [-77.68258, 38.8217],\n      [-77.68133, 38.82164],\n      [-77.68024, 38.8216],\n      [-77.67977, 38.82159],\n      [-77.67856, 38.82156],\n      [-77.67779, 38.82155],\n      [-77.67692, 38.82154],\n      [-77.67562, 38.82151],\n      [-77.67515, 38.82151],\n      [-77.66688, 38.82138],\n      [-77.66557, 38.82136],\n      [-77.66444, 38.82134],\n      [-77.66415, 38.82134],\n      [-77.65878, 38.82125],\n      [-77.65861, 38.82125],\n      [-77.65803, 38.82125],\n      [-77.65759, 38.82124],\n      [-77.65753, 38.82124],\n      [-77.65471, 38.82119],\n      [-77.65345, 38.82117],\n      [-77.65253, 38.82112],\n      [-77.65149, 38.82103],\n      [-77.65107, 38.821],\n      [-77.65047, 38.82093],\n      [-77.64962, 38.82081],\n      [-77.649, 38.82072],\n      [-77.64845, 38.82062],\n      [-77.64779, 38.82049],\n      [-77.64727, 38.82038],\n      [-77.64638, 38.82017],\n      [-77.64603, 38.82008],\n      [-77.64521, 38.81985],\n      [-77.64458, 38.81967],\n      [-77.64375, 38.81939],\n      [-77.64312, 38.81916],\n      [-77.64241, 38.81888],\n      [-77.64179, 38.81863],\n      [-77.64117, 38.81836],\n      [-77.64059, 38.81808],\n      [-77.64033, 38.81796],\n      [-77.64021, 38.8179],\n      [-77.63985, 38.81773],\n      [-77.63672, 38.81623],\n      [-77.6357, 38.81573],\n      [-77.63371, 38.81478],\n      [-77.63271, 38.8143],\n      [-77.63185, 38.81389],\n      [-77.62981, 38.81291],\n      [-77.62891, 38.81248],\n      [-77.62703, 38.81158],\n      [-77.6236, 38.80993],\n      [-77.62218, 38.80924],\n      [-77.62086, 38.80859],\n      [-77.61946, 38.80788],\n      [-77.61817, 38.80722],\n      [-77.61451, 38.80531],\n      [-77.61341, 38.80473],\n      [-77.61338, 38.80472],\n      [-77.61245, 38.80426],\n      [-77.61199, 38.80405],\n      [-77.61143, 38.80379],\n      [-77.61138, 38.80376],\n      [-77.61105, 38.80361],\n      [-77.60983, 38.80308],\n      [-77.60942, 38.80291],\n      [-77.60841, 38.8025],\n      [-77.60742, 38.80212],\n      [-77.60639, 38.80175],\n      [-77.60567, 38.8015],\n      [-77.60526, 38.80136],\n      [-77.60473, 38.80119],\n      [-77.60381, 38.80091],\n      [-77.60302, 38.80068],\n      [-77.60251, 38.80054],\n      [-77.60165, 38.80033],\n      [-77.60137, 38.80026],\n      [-77.60056, 38.80007],\n      [-77.59976, 38.7999],\n      [-77.59957, 38.79987],\n      [-77.59933, 38.79982],\n      [-77.59796, 38.79958],\n      [-77.59771, 38.79954],\n      [-77.59704, 38.79943],\n      [-77.59121, 38.7986],\n      [-77.58869, 38.79827],\n      [-77.58637, 38.79794],\n      [-77.58524, 38.79779],\n      [-77.58466, 38.79771],\n      [-77.58352, 38.79759],\n      [-77.5826, 38.79751],\n      [-77.58173, 38.79747],\n      [-77.58065, 38.79742],\n      [-77.57985, 38.79741],\n      [-77.57938, 38.79739],\n      [-77.57933, 38.79739],\n      [-77.57835, 38.79739],\n      [-77.57699, 38.7974],\n      [-77.57601, 38.79745],\n      [-77.57537, 38.7975],\n      [-77.57114, 38.7978],\n      [-77.56929, 38.79792],\n      [-77.56555, 38.79819],\n      [-77.56166, 38.79845],\n      [-77.55589, 38.7988],\n      [-77.55376, 38.79895],\n      [-77.55089, 38.79915],\n      [-77.5503, 38.79919],\n      [-77.54841, 38.79933],\n      [-77.54595, 38.79949],\n      [-77.54106, 38.79981],\n      [-77.53934, 38.79995],\n      [-77.53655, 38.80015],\n      [-77.53228, 38.80045],\n      [-77.52914, 38.80067],\n      [-77.52586, 38.8009],\n      [-77.52317, 38.80108],\n      [-77.52013, 38.80132],\n      [-77.51943, 38.80137],\n      [-77.51859, 38.80144],\n      [-77.51466, 38.8017],\n      [-77.51275, 38.80183],\n      [-77.51226, 38.80188],\n      [-77.51176, 38.80195],\n      [-77.51124, 38.80203],\n      [-77.51073, 38.80213],\n      [-77.51024, 38.80225],\n      [-77.50976, 38.80237],\n      [-77.50928, 38.80251],\n      [-77.50876, 38.80269],\n      [-77.50825, 38.80287],\n      [-77.50324, 38.80485],\n      [-77.50187, 38.80538],\n      [-77.49854, 38.8067],\n      [-77.49285, 38.80893],\n      [-77.49259, 38.80904],\n      [-77.49141, 38.8095],\n      [-77.49073, 38.80977],\n      [-77.49039, 38.8099],\n      [-77.48985, 38.81013],\n      [-77.48976, 38.81016],\n      [-77.48959, 38.81023],\n      [-77.48813, 38.81081],\n      [-77.48798, 38.81088],\n      [-77.48794, 38.81089],\n      [-77.48761, 38.81103],\n      [-77.48689, 38.81131],\n      [-77.48552, 38.81184],\n      [-77.48102, 38.81361],\n      [-77.48003, 38.81399],\n      [-77.47953, 38.81418],\n      [-77.47828, 38.81467],\n      [-77.47778, 38.81486],\n      [-77.4767, 38.81528],\n      [-77.47631, 38.81544],\n      [-77.47085, 38.81759],\n      [-77.47, 38.81793],\n      [-77.46911, 38.81831],\n      [-77.46826, 38.81869],\n      [-77.46779, 38.81891],\n      [-77.46682, 38.81938],\n      [-77.46648, 38.81956],\n      [-77.46598, 38.81981],\n      [-77.46589, 38.81986],\n      [-77.46508, 38.8203],\n      [-77.46469, 38.82052],\n      [-77.46392, 38.82098],\n      [-77.46357, 38.82118],\n      [-77.46282, 38.82165],\n      [-77.46217, 38.82207],\n      [-77.46152, 38.8225],\n      [-77.46074, 38.82305],\n      [-77.45997, 38.82362],\n      [-77.45945, 38.82401],\n      [-77.45883, 38.82451],\n      [-77.45804, 38.82516],\n      [-77.45799, 38.8252],\n      [-77.45772, 38.82544],\n      [-77.45746, 38.82567],\n      [-77.45717, 38.82591],\n      [-77.45649, 38.82655],\n      [-77.45593, 38.82709],\n      [-77.45561, 38.82741],\n      [-77.45535, 38.82766],\n      [-77.45529, 38.82774],\n      [-77.45476, 38.82829],\n      [-77.45369, 38.82949],\n      [-77.45117, 38.83231],\n      [-77.45009, 38.83355],\n      [-77.4496, 38.83407],\n      [-77.4484, 38.83541],\n      [-77.44832, 38.8355],\n      [-77.44707, 38.83688],\n      [-77.44657, 38.83746],\n      [-77.44498, 38.83924],\n      [-77.44496, 38.83926],\n      [-77.44448, 38.83977],\n      [-77.44393, 38.84037],\n      [-77.44312, 38.84115],\n      [-77.44252, 38.84168],\n      [-77.44205, 38.84208],\n      [-77.44156, 38.84247],\n      [-77.44121, 38.84273],\n      [-77.44084, 38.84299],\n      [-77.44035, 38.8433],\n      [-77.43936, 38.8439],\n      [-77.43881, 38.84419],\n      [-77.43841, 38.84439],\n      [-77.43815, 38.84451],\n      [-77.43759, 38.84477],\n      [-77.43695, 38.84504],\n      [-77.43613, 38.84536],\n      [-77.43539, 38.84561],\n      [-77.43484, 38.84578],\n      [-77.43446, 38.84589],\n      [-77.43407, 38.84599],\n      [-77.43359, 38.8461],\n      [-77.4326, 38.84631],\n      [-77.43198, 38.84642],\n      [-77.43189, 38.84644],\n      [-77.43166, 38.84648],\n      [-77.43013, 38.84677],\n      [-77.42864, 38.84705],\n      [-77.42767, 38.8472],\n      [-77.4269, 38.84734],\n      [-77.42661, 38.84739],\n      [-77.42395, 38.84787],\n      [-77.42318, 38.84802],\n      [-77.42258, 38.84813],\n      [-77.42173, 38.84828],\n      [-77.41978, 38.84865],\n      [-77.41803, 38.84898],\n      [-77.41653, 38.84925],\n      [-77.4152, 38.84948],\n      [-77.41415, 38.84967],\n      [-77.41369, 38.84976],\n      [-77.413, 38.84989],\n      [-77.41025, 38.85039],\n      [-77.40835, 38.85073],\n      [-77.406, 38.85117],\n      [-77.40455, 38.85142],\n      [-77.4031, 38.85168],\n      [-77.40243, 38.8518],\n      [-77.40151, 38.85195],\n      [-77.39988, 38.85225],\n      [-77.39953, 38.85231],\n      [-77.39879, 38.85244],\n      [-77.39845, 38.85251],\n      [-77.39809, 38.85258],\n      [-77.39709, 38.85277],\n      [-77.39683, 38.85282],\n      [-77.39635, 38.85291],\n      [-77.39443, 38.85328],\n      [-77.3938, 38.85339],\n      [-77.39306, 38.85351],\n      [-77.39283, 38.85356],\n      [-77.38886, 38.85427],\n      [-77.38813, 38.85441],\n      [-77.38446, 38.85506],\n      [-77.38378, 38.85519],\n      [-77.38334, 38.85526],\n      [-77.38219, 38.85546],\n      [-77.38134, 38.85561],\n      [-77.38007, 38.85583],\n      [-77.37979, 38.85588],\n      [-77.37892, 38.85605],\n      [-77.3788, 38.85608],\n      [-77.37828, 38.85618],\n      [-77.37814, 38.8562],\n      [-77.37761, 38.8563],\n      [-77.37631, 38.85654],\n      [-77.37544, 38.85671],\n      [-77.37471, 38.85684],\n      [-77.37175, 38.85738],\n      [-77.37131, 38.85746],\n      [-77.37029, 38.85764],\n      [-77.36979, 38.85774],\n      [-77.36937, 38.85781],\n      [-77.3651, 38.85859],\n      [-77.36447, 38.85871],\n      [-77.36395, 38.8588],\n      [-77.36383, 38.85881],\n      [-77.36369, 38.85883],\n      [-77.36306, 38.85896],\n      [-77.35875, 38.85973],\n      [-77.35804, 38.85987],\n      [-77.35711, 38.86004],\n      [-77.3552, 38.86038],\n      [-77.35387, 38.86064],\n      [-77.35356, 38.8607],\n      [-77.3534, 38.86072],\n      [-77.35322, 38.86075],\n      [-77.35231, 38.8609],\n      [-77.3513, 38.8611],\n      [-77.35087, 38.86117],\n      [-77.34989, 38.86135],\n      [-77.34898, 38.86153],\n      [-77.34853, 38.86163],\n      [-77.34602, 38.86207],\n      [-77.34561, 38.86215],\n      [-77.34473, 38.86231],\n      [-77.34385, 38.86246],\n      [-77.34265, 38.86266],\n      [-77.34257, 38.86268],\n      [-77.3415, 38.86288],\n      [-77.34009, 38.86315],\n      [-77.33821, 38.8635],\n      [-77.33769, 38.86359],\n      [-77.33677, 38.86374],\n      [-77.33654, 38.86377],\n      [-77.33646, 38.86379],\n      [-77.33633, 38.86381],\n      [-77.3348, 38.86407],\n      [-77.33369, 38.86427],\n      [-77.33299, 38.86441],\n      [-77.33258, 38.86448],\n      [-77.32922, 38.86511],\n      [-77.3264, 38.86558],\n      [-77.32482, 38.86586],\n      [-77.32217, 38.86634],\n      [-77.32201, 38.86637],\n      [-77.32168, 38.86643],\n      [-77.32058, 38.86664],\n      [-77.32, 38.86675],\n      [-77.31902, 38.86693],\n      [-77.31862, 38.867],\n      [-77.31795, 38.86712],\n      [-77.31752, 38.8672],\n      [-77.31591, 38.86749],\n      [-77.31461, 38.86773],\n      [-77.31223, 38.86815],\n      [-77.31021, 38.8685],\n      [-77.30984, 38.86857],\n      [-77.30924, 38.86867],\n      [-77.30916, 38.86869],\n      [-77.30884, 38.86875],\n      [-77.30877, 38.86876],\n      [-77.30859, 38.8688],\n      [-77.30749, 38.86899],\n      [-77.3054, 38.86937],\n      [-77.30388, 38.86963],\n      [-77.3029, 38.86981],\n      [-77.30129, 38.8701],\n      [-77.30068, 38.8702],\n      [-77.29933, 38.87043],\n      [-77.29835, 38.8706],\n      [-77.2975, 38.87077],\n      [-77.29724, 38.87082],\n      [-77.2968, 38.8709],\n      [-77.29631, 38.871],\n      [-77.2959, 38.87109],\n      [-77.29533, 38.87121],\n      [-77.29452, 38.87141],\n      [-77.29403, 38.87155],\n      [-77.29281, 38.8719],\n      [-77.29113, 38.87239],\n      [-77.29091, 38.87246],\n      [-77.29003, 38.87272],\n      [-77.28909, 38.87299],\n      [-77.28753, 38.87345],\n      [-77.28685, 38.87365],\n      [-77.28582, 38.87396],\n      [-77.28455, 38.87432],\n      [-77.28319, 38.87471],\n      [-77.28285, 38.87481],\n      [-77.28277, 38.87484],\n      [-77.28176, 38.87514],\n      [-77.28087, 38.8754],\n      [-77.28022, 38.8756],\n      [-77.27973, 38.87574],\n      [-77.27912, 38.87592],\n      [-77.2784, 38.87613],\n      [-77.2782, 38.87619],\n      [-77.27737, 38.87643],\n      [-77.27696, 38.87654],\n      [-77.27625, 38.87671],\n      [-77.27547, 38.87687],\n      [-77.27499, 38.87696],\n      [-77.27479, 38.877],\n      [-77.27464, 38.87703],\n      [-77.27353, 38.87722],\n      [-77.27141, 38.87757],\n      [-77.27133, 38.87759],\n      [-77.27064, 38.8777],\n      [-77.26961, 38.87788],\n      [-77.26858, 38.87805],\n      [-77.26796, 38.87814],\n      [-77.26746, 38.87821],\n      [-77.2674, 38.87821],\n      [-77.26695, 38.87826],\n      [-77.26689, 38.87827],\n      [-77.26633, 38.87832],\n      [-77.266, 38.87835],\n      [-77.2653, 38.87839],\n      [-77.2644, 38.87845],\n      [-77.2636, 38.87849],\n      [-77.26281, 38.87854],\n      [-77.26204, 38.87858],\n      [-77.26077, 38.87866],\n      [-77.2595, 38.87873],\n      [-77.25776, 38.87883],\n      [-77.25523, 38.87897],\n      [-77.25361, 38.87907],\n      [-77.25301, 38.8791],\n      [-77.25212, 38.87915],\n      [-77.25155, 38.87919],\n      [-77.24971, 38.87929],\n      [-77.24858, 38.87935],\n      [-77.24842, 38.87936],\n      [-77.24689, 38.87946],\n      [-77.24676, 38.87946],\n      [-77.2465, 38.87948],\n      [-77.24549, 38.87954],\n      [-77.2451, 38.87956],\n      [-77.24438, 38.8796],\n      [-77.24404, 38.87962],\n      [-77.24377, 38.87963],\n      [-77.24331, 38.87966],\n      [-77.24264, 38.8797],\n      [-77.24244, 38.8797],\n      [-77.24206, 38.87972],\n      [-77.24176, 38.87974],\n      [-77.24155, 38.87976],\n      [-77.24134, 38.87977],\n      [-77.24066, 38.87983],\n      [-77.24022, 38.87988],\n      [-77.23977, 38.87993],\n      [-77.23933, 38.88],\n      [-77.23871, 38.8801],\n      [-77.23856, 38.88013],\n      [-77.23798, 38.88024],\n      [-77.23757, 38.88033],\n      [-77.2371, 38.88044],\n      [-77.23659, 38.88057],\n      [-77.23599, 38.88074],\n      [-77.23442, 38.88122],\n      [-77.2331, 38.88162],\n      [-77.23268, 38.88176],\n      [-77.23187, 38.882],\n      [-77.23148, 38.88212],\n      [-77.22966, 38.88267],\n      [-77.22887, 38.88291],\n      [-77.22861, 38.88299],\n      [-77.22858, 38.88301],\n      [-77.22852, 38.88302],\n      [-77.22818, 38.88312],\n      [-77.22793, 38.8832],\n      [-77.22715, 38.88343],\n      [-77.22646, 38.88363],\n      [-77.22616, 38.88374],\n      [-77.2257, 38.88388],\n      [-77.22536, 38.88398],\n      [-77.2247, 38.88419],\n      [-77.22448, 38.88426],\n      [-77.22405, 38.88439],\n      [-77.22338, 38.88461],\n      [-77.22266, 38.88484],\n      [-77.22185, 38.88512],\n      [-77.22078, 38.8855],\n      [-77.21939, 38.88607],\n      [-77.2189, 38.88629],\n      [-77.21837, 38.88654],\n      [-77.2179, 38.88676],\n      [-77.21759, 38.88691],\n      [-77.21727, 38.88708],\n      [-77.21681, 38.88731],\n      [-77.21605, 38.88767],\n      [-77.21533, 38.88807],\n      [-77.21487, 38.88833],\n      [-77.21483, 38.88834],\n      [-77.21459, 38.88848],\n      [-77.21366, 38.889],\n      [-77.21304, 38.88936],\n      [-77.2127, 38.88956],\n      [-77.21104, 38.89052],\n      [-77.21045, 38.89086],\n      [-77.21032, 38.89093],\n      [-77.20953, 38.89139],\n      [-77.20774, 38.89242],\n      [-77.20714, 38.89277],\n      [-77.207, 38.89285],\n      [-77.20608, 38.89338],\n      [-77.20541, 38.89374],\n      [-77.20464, 38.89417],\n      [-77.20436, 38.89434],\n      [-77.20379, 38.89466],\n      [-77.20342, 38.89487],\n      [-77.20204, 38.89568],\n      [-77.20093, 38.89632],\n      [-77.20016, 38.89673],\n      [-77.19974, 38.89698],\n      [-77.19935, 38.89721],\n      [-77.19889, 38.89749],\n      [-77.19838, 38.89779],\n      [-77.19797, 38.89803],\n      [-77.19717, 38.89849],\n      [-77.19703, 38.89856],\n      [-77.19639, 38.89889],\n      [-77.19596, 38.89909],\n      [-77.19536, 38.89934],\n      [-77.19495, 38.89949],\n      [-77.19451, 38.89965],\n      [-77.19403, 38.8998],\n      [-77.19361, 38.89992],\n      [-77.19328, 38.9],\n      [-77.19297, 38.90008],\n      [-77.19259, 38.90016],\n      [-77.19211, 38.90025],\n      [-77.19175, 38.90031],\n      [-77.19152, 38.90034],\n      [-77.19134, 38.90036],\n      [-77.19113, 38.90039],\n      [-77.19085, 38.90042],\n      [-77.19052, 38.90045],\n      [-77.1901, 38.90048],\n      [-77.18959, 38.9005],\n      [-77.18921, 38.90051],\n      [-77.18899, 38.90051],\n      [-77.18896, 38.90051],\n      [-77.1889, 38.90051],\n      [-77.18871, 38.90051],\n      [-77.18833, 38.90051],\n      [-77.18793, 38.90049],\n      [-77.18791, 38.90049],\n      [-77.18771, 38.90047],\n      [-77.18748, 38.90045],\n      [-77.1871, 38.90041],\n      [-77.18662, 38.90036],\n      [-77.18602, 38.90028],\n      [-77.1858, 38.90025],\n      [-77.18526, 38.90015],\n      [-77.18468, 38.90002],\n      [-77.18419, 38.89989],\n      [-77.18399, 38.89982],\n      [-77.18377, 38.89975],\n      [-77.18367, 38.89972],\n      [-77.18333, 38.89959],\n      [-77.1829, 38.89944],\n      [-77.18258, 38.89934],\n      [-77.1816, 38.89902],\n      [-77.18043, 38.89863],\n      [-77.17826, 38.89792],\n      [-77.178, 38.89783],\n      [-77.17715, 38.89753],\n      [-77.1766, 38.89735],\n      [-77.17569, 38.89703],\n      [-77.1752, 38.89687],\n      [-77.17451, 38.89664],\n      [-77.17433, 38.89657],\n      [-77.17399, 38.89645],\n      [-77.17303, 38.89612],\n      [-77.17256, 38.89593],\n      [-77.17224, 38.8958],\n      [-77.17199, 38.89568],\n      [-77.17161, 38.8955],\n      [-77.17115, 38.89524],\n      [-77.17099, 38.89515],\n      [-77.17084, 38.89506],\n      [-77.17052, 38.89485],\n      [-77.17037, 38.89474],\n      [-77.17011, 38.89455],\n      [-77.1696, 38.89414],\n      [-77.16915, 38.89377],\n      [-77.168, 38.8928],\n      [-77.16779, 38.89262],\n      [-77.16663, 38.89162],\n      [-77.16597, 38.89109],\n      [-77.16456, 38.88988],\n      [-77.16393, 38.88938],\n      [-77.16263, 38.88837],\n      [-77.16215, 38.88802],\n      [-77.16183, 38.88783],\n      [-77.16158, 38.88767],\n      [-77.16141, 38.88758],\n      [-77.16089, 38.88727],\n      [-77.1605, 38.8871],\n      [-77.16038, 38.88704],\n      [-77.16018, 38.88695],\n      [-77.15965, 38.88672],\n      [-77.15923, 38.88656],\n      [-77.15816, 38.8862],\n      [-77.1576, 38.88602],\n      [-77.15662, 38.88568],\n      [-77.15598, 38.88548],\n      [-77.15418, 38.88489],\n      [-77.1532, 38.88457],\n      [-77.15157, 38.88401],\n      [-77.14624, 38.88225],\n      [-77.14599, 38.88216],\n      [-77.14308, 38.88123],\n      [-77.13922, 38.87994],\n      [-77.139, 38.87987],\n      [-77.13797, 38.87953],\n      [-77.13735, 38.87939],\n      [-77.13668, 38.87927],\n      [-77.13612, 38.87922],\n      [-77.1356, 38.87919],\n      [-77.13469, 38.87916],\n      [-77.12855, 38.87931],\n      [-77.12816, 38.87933],\n      [-77.12798, 38.87935],\n      [-77.1278, 38.87938],\n      [-77.12751, 38.87942],\n      [-77.12685, 38.87956],\n      [-77.12582, 38.87986],\n      [-77.1253, 38.88004],\n      [-77.12491, 38.88021],\n      [-77.12447, 38.88043],\n      [-77.12373, 38.88084],\n      [-77.1222, 38.88167],\n      [-77.12216, 38.88169],\n      [-77.12195, 38.88183],\n      [-77.12144, 38.88216],\n      [-77.1208, 38.88267],\n      [-77.12066, 38.8828],\n      [-77.12062, 38.88283],\n      [-77.12058, 38.88287],\n      [-77.12054, 38.8829],\n      [-77.12042, 38.88302],\n      [-77.12004, 38.88347],\n      [-77.11972, 38.88389],\n      [-77.11947, 38.88423],\n      [-77.11924, 38.88456],\n      [-77.11872, 38.88527],\n      [-77.11858, 38.88545],\n      [-77.11838, 38.88572],\n      [-77.11811, 38.886],\n      [-77.11786, 38.88624],\n      [-77.11776, 38.88633],\n      [-77.11758, 38.88649],\n      [-77.11692, 38.88698],\n      [-77.11624, 38.8874],\n      [-77.11585, 38.88758],\n      [-77.11543, 38.88774],\n      [-77.11516, 38.88782],\n      [-77.11466, 38.88796],\n      [-77.11436, 38.88803],\n      [-77.11423, 38.88807],\n      [-77.11405, 38.88811],\n      [-77.11326, 38.88832],\n      [-77.11238, 38.88854],\n      [-77.11132, 38.88876],\n      [-77.11117, 38.88879],\n      [-77.111, 38.88883],\n      [-77.11093, 38.88885],\n      [-77.10858, 38.88945],\n      [-77.10841, 38.88949],\n      [-77.10817, 38.88955],\n      [-77.10704, 38.88983],\n      [-77.10574, 38.89015],\n      [-77.10474, 38.89039],\n      [-77.10419, 38.89052],\n      [-77.1038, 38.89063],\n      [-77.10363, 38.89068],\n      [-77.10348, 38.89071],\n      [-77.10322, 38.89082],\n      [-77.10278, 38.89101],\n      [-77.10226, 38.89131],\n      [-77.10209, 38.89144],\n      [-77.10203, 38.89149],\n      [-77.10142, 38.89202],\n      [-77.10112, 38.89238],\n      [-77.10088, 38.89275],\n      [-77.10062, 38.89347],\n      [-77.10027, 38.89417],\n      [-77.09986, 38.89489],\n      [-77.09937, 38.8955],\n      [-77.09907, 38.89579],\n      [-77.09889, 38.89594],\n      [-77.09853, 38.89622],\n      [-77.0983, 38.89638],\n      [-77.09786, 38.89665],\n      [-77.09727, 38.89693],\n      [-77.09672, 38.89713],\n      [-77.09578, 38.89737],\n      [-77.09481, 38.89758],\n      [-77.09379, 38.89774],\n      [-77.09293, 38.89785],\n      [-77.09192, 38.89797],\n      [-77.08929, 38.89825],\n      [-77.08867, 38.89829],\n      [-77.088, 38.89831],\n      [-77.0874, 38.89825],\n      [-77.08665, 38.89808],\n      [-77.08583, 38.89781],\n      [-77.08499, 38.8974],\n      [-77.08447, 38.89715],\n      [-77.08411, 38.897],\n      [-77.08369, 38.89685],\n      [-77.08324, 38.89675],\n      [-77.08284, 38.89669],\n      [-77.08242, 38.89667],\n      [-77.08202, 38.89669],\n      [-77.08163, 38.89675],\n      [-77.08123, 38.89682],\n      [-77.08087, 38.89693],\n      [-77.07929, 38.8976],\n      [-77.07853, 38.89792],\n      [-77.07792, 38.89814],\n      [-77.07756, 38.89826],\n      [-77.07707, 38.89839],\n      [-77.07649, 38.89851],\n      [-77.07593, 38.89861],\n      [-77.07533, 38.89868],\n      [-77.07461, 38.89872],\n      [-77.07374, 38.89869],\n      [-77.0736, 38.89869],\n      [-77.07333, 38.89867],\n      [-77.07313, 38.89866],\n      [-77.07298, 38.89865],\n      [-77.07261, 38.89862],\n      [-77.07249, 38.89862],\n      [-77.07237, 38.89861],\n      [-77.07203, 38.89859],\n      [-77.07202, 38.89859],\n      [-77.07149, 38.89856],\n      [-77.07124, 38.89854],\n      [-77.07103, 38.89852],\n      [-77.07099, 38.89851],\n      [-77.07076, 38.89848],\n      [-77.07072, 38.89898],\n      [-77.07072, 38.89906],\n      [-77.07072, 38.89917],\n      [-77.07072, 38.89927],\n      [-77.07072, 38.89945],\n      [-77.07072, 38.89968],\n      [-77.07073, 38.8998],\n      [-77.07076, 38.89989],\n      [-77.07079, 38.9],\n      [-77.07082, 38.90012],\n      [-77.07083, 38.90023],\n      [-77.07077, 38.90048],\n      [-77.06935, 38.90346],\n      [-77.06916, 38.90387],\n      [-77.06904, 38.90393],\n      [-77.06899, 38.90394],\n      [-77.06888, 38.90395],\n      [-77.06872, 38.90395],\n      [-77.06858, 38.90394],\n      [-77.06794, 38.90381],\n      [-77.06712, 38.90365],\n      [-77.06629, 38.90347],\n      [-77.06595, 38.90339],\n      [-77.06541, 38.9032],\n      [-77.06478, 38.90297],\n      [-77.06445, 38.90287],\n      [-77.06393, 38.90275],\n      [-77.06329, 38.90261],\n      [-77.06285, 38.90255],\n      [-77.06252, 38.90253],\n      [-77.06202, 38.90253],\n      [-77.06062, 38.90253],\n      [-77.05933, 38.90253],\n      [-77.05877, 38.90253],\n      [-77.05865, 38.90253],\n      [-77.05843, 38.9025],\n      [-77.05813, 38.90242],\n      [-77.05802, 38.90242],\n      [-77.05789, 38.90241],\n      [-77.05726, 38.90241],\n      [-77.05682, 38.90241],\n      [-77.05628, 38.90241],\n      [-77.05608, 38.90241],\n      [-77.05591, 38.90241],\n      [-77.05564, 38.90244],\n      [-77.05541, 38.90248],\n      [-77.05532, 38.90248],\n      [-77.05481, 38.90248],\n      [-77.05347, 38.90248],\n      [-77.05291, 38.90249],\n      [-77.05152, 38.90249],\n      [-77.05131, 38.90249],\n      [-77.05103, 38.90249],\n      [-77.04978, 38.90249],\n      [-77.04919, 38.90249],\n      [-77.04892, 38.90248],\n      [-77.04855, 38.90248],\n      [-77.04707, 38.90249],\n      [-77.04665, 38.90253],\n      [-77.04647, 38.90253],\n      [-77.04629, 38.90253],\n      [-77.04612, 38.90253],\n      [-77.04582, 38.90253],\n      [-77.04528, 38.90253],\n      [-77.04507, 38.90253],\n      [-77.0449, 38.90253],\n      [-77.04442, 38.90253],\n      [-77.0438, 38.90252],\n      [-77.04353, 38.90252],\n      [-77.04346, 38.90252],\n      [-77.04332, 38.90252],\n      [-77.04295, 38.90252],\n      [-77.04219, 38.90252],\n      [-77.04209, 38.90252],\n      [-77.04171, 38.90252],\n      [-77.04155, 38.90252],\n      [-77.04123, 38.90252],\n      [-77.04045, 38.90252],\n      [-77.03949, 38.90252],\n      [-77.03939, 38.90252],\n      [-77.03872, 38.90252],\n      [-77.03852, 38.90252],\n      [-77.03701, 38.90252],\n      [-77.03668, 38.90252],\n      [-77.03654, 38.90252],\n      [-77.03641, 38.90252],\n      [-77.03551, 38.90252],\n      [-77.03474, 38.90252],\n      [-77.0347, 38.90252],\n      [-77.03458, 38.90252],\n      [-77.03445, 38.90252],\n      [-77.03391, 38.90253],\n      [-77.03379, 38.90253],\n      [-77.03362, 38.90253],\n      [-77.03349, 38.90241],\n      [-77.03309, 38.90241],\n      [-77.03269, 38.90241],\n      [-77.03213, 38.90241],\n      [-77.03195, 38.90252],\n      [-77.03195, 38.90264],\n      [-77.03195, 38.90271],\n      [-77.03195, 38.90313],\n      [-77.03195, 38.90317],\n      [-77.03195, 38.90331],\n      [-77.03195, 38.90365],\n      [-77.03195, 38.90374],\n      [-77.03194, 38.90383],\n      [-77.03193, 38.90411],\n      [-77.03193, 38.90418],\n      [-77.03193, 38.90429],\n      [-77.0319, 38.90456],\n      [-77.03191, 38.90467],\n      [-77.03191, 38.90485],\n      [-77.0319, 38.90492],\n      [-77.03191, 38.90507],\n      [-77.03189, 38.90519],\n      [-77.03187, 38.90523],\n      [-77.03186, 38.90524],\n      [-77.03183, 38.90528],\n      [-77.03179, 38.90531],\n      [-77.03175, 38.90534],\n      [-77.03172, 38.90536],\n      [-77.03161, 38.90543],\n      [-77.03157, 38.90548],\n      [-77.03153, 38.90555],\n      [-77.03152, 38.90558],\n      [-77.03151, 38.90562],\n      [-77.03151, 38.90568],\n      [-77.03154, 38.90578],\n      [-77.03157, 38.90585],\n      [-77.03167, 38.906],\n      [-77.03176, 38.90614],\n      [-77.03182, 38.90622],\n      [-77.03186, 38.90629],\n      [-77.03195, 38.90652],\n      [-77.03195, 38.90724],\n      [-77.03195, 38.90872],\n      [-77.03195, 38.90884],\n      [-77.03195, 38.90895],\n      [-77.03195, 38.90956],\n      [-77.03195, 38.90967],\n      [-77.03195, 38.90973],\n      [-77.03195, 38.91039],\n      [-77.03195, 38.91072],\n      [-77.03195, 38.91105],\n      [-77.03195, 38.91113],\n      [-77.03195, 38.91121],\n      [-77.03195, 38.9118],\n      [-77.03195, 38.91187],\n      [-77.03195, 38.91193],\n      [-77.03195, 38.91213],\n      [-77.03195, 38.91253],\n      [-77.03195, 38.91253],\n      [-77.03195, 38.91261],\n      [-77.03204, 38.91261],\n      [-77.03212, 38.91261],\n      [-77.0326, 38.91261],\n      [-77.03267, 38.91261],\n      [-77.03267, 38.91263],\n      [-77.03267, 38.91315],\n      [-77.03267, 38.91318]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-slice-along/test/fixtures/route2.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [12.63097, 41.85251],\n      [12.631, 41.85242],\n      [12.63114, 41.85197],\n      [12.63114, 41.8519],\n      [12.63112, 41.85184],\n      [12.63109, 41.8518],\n      [12.63103, 41.85176],\n      [12.63096, 41.85172],\n      [12.62699, 41.851],\n      [12.62733, 41.84999],\n      [12.62745, 41.84969],\n      [12.62756, 41.84943],\n      [12.62762, 41.84928],\n      [12.62768, 41.84916],\n      [12.62774, 41.849],\n      [12.62785, 41.84876],\n      [12.62833, 41.84762],\n      [12.62836, 41.84753],\n      [12.62881, 41.84646],\n      [12.62884, 41.8464],\n      [12.62911, 41.8458],\n      [12.62937, 41.84523],\n      [12.62961, 41.84469],\n      [12.62977, 41.84435],\n      [12.62993, 41.84401],\n      [12.63001, 41.84382],\n      [12.63023, 41.84343],\n      [12.63033, 41.8433],\n      [12.63045, 41.84308],\n      [12.63054, 41.84297],\n      [12.63068, 41.8428],\n      [12.63083, 41.84262],\n      [12.63123, 41.84226],\n      [12.63141, 41.84205],\n      [12.63152, 41.84183],\n      [12.63155, 41.84164],\n      [12.63151, 41.84142],\n      [12.63138, 41.84118],\n      [12.63128, 41.84104],\n      [12.63112, 41.84082],\n      [12.63103, 41.84067],\n      [12.63095, 41.84051],\n      [12.63093, 41.84045],\n      [12.63092, 41.84038],\n      [12.63091, 41.84033],\n      [12.63091, 41.84028],\n      [12.63092, 41.8402],\n      [12.63092, 41.84013],\n      [12.63093, 41.84008],\n      [12.63096, 41.84001],\n      [12.63098, 41.83996],\n      [12.63101, 41.83991],\n      [12.63105, 41.83989],\n      [12.63108, 41.83988],\n      [12.63111, 41.83988],\n      [12.63114, 41.83988],\n      [12.63118, 41.83988],\n      [12.63121, 41.83989],\n      [12.63127, 41.83992],\n      [12.63141, 41.84001],\n      [12.63152, 41.84009],\n      [12.6316, 41.84013],\n      [12.63168, 41.84016],\n      [12.63174, 41.84017],\n      [12.63182, 41.84019],\n      [12.63191, 41.84021],\n      [12.63202, 41.84023],\n      [12.63219, 41.84025],\n      [12.63229, 41.84026],\n      [12.6324, 41.84027],\n      [12.63248, 41.84026],\n      [12.63259, 41.84025],\n      [12.6327, 41.84024],\n      [12.63293, 41.84019],\n      [12.63337, 41.84011],\n      [12.63649, 41.83896],\n      [12.6391, 41.83801],\n      [12.64152, 41.83714],\n      [12.64187, 41.83701],\n      [12.64541, 41.83574],\n      [12.64762, 41.83493],\n      [12.64884, 41.83449],\n      [12.64927, 41.83432],\n      [12.6499, 41.83405],\n      [12.65045, 41.83378],\n      [12.65128, 41.83322],\n      [12.65161, 41.83308],\n      [12.65203, 41.83292],\n      [12.65236, 41.8328],\n      [12.65269, 41.83271],\n      [12.65293, 41.83265],\n      [12.6532, 41.8326],\n      [12.65373, 41.83254],\n      [12.65406, 41.83248],\n      [12.6544, 41.83238],\n      [12.65488, 41.83226],\n      [12.65523, 41.83215],\n      [12.65942, 41.83066],\n      [12.66143, 41.82993],\n      [12.66176, 41.82981],\n      [12.66187, 41.82978],\n      [12.66359, 41.82916],\n      [12.66781, 41.82761],\n      [12.67087, 41.82651],\n      [12.67151, 41.8263],\n      [12.67207, 41.82614],\n      [12.6727, 41.826],\n      [12.67335, 41.8259],\n      [12.67396, 41.82584],\n      [12.67465, 41.8258],\n      [12.67556, 41.8258],\n      [12.67619, 41.82584],\n      [12.67697, 41.82594],\n      [12.67781, 41.82608],\n      [12.68367, 41.82733],\n      [12.68929, 41.82853],\n      [12.69119, 41.82886],\n      [12.69344, 41.82909],\n      [12.69424, 41.8291],\n      [12.69444, 41.8291],\n      [12.6954, 41.82909],\n      [12.69615, 41.82906],\n      [12.69696, 41.82899],\n      [12.7006, 41.82855],\n      [12.70205, 41.82836],\n      [12.70417, 41.82809],\n      [12.70669, 41.82776],\n      [12.70863, 41.82751],\n      [12.71088, 41.82722],\n      [12.71719, 41.8264],\n      [12.71927, 41.82615],\n      [12.72107, 41.82601],\n      [12.72232, 41.82597],\n      [12.72371, 41.82596],\n      [12.72511, 41.82601],\n      [12.72725, 41.82617],\n      [12.73209, 41.82668],\n      [12.73461, 41.82691],\n      [12.73565, 41.82692],\n      [12.73653, 41.82685],\n      [12.73767, 41.82663],\n      [12.73915, 41.82628],\n      [12.74832, 41.824],\n      [12.75704, 41.82181],\n      [12.75718, 41.82178],\n      [12.76177, 41.82064],\n      [12.76336, 41.82024],\n      [12.76368, 41.82016],\n      [12.76472, 41.81991],\n      [12.76604, 41.81958],\n      [12.76645, 41.81947],\n      [12.76658, 41.81944],\n      [12.76685, 41.81938],\n      [12.76818, 41.81905],\n      [12.76891, 41.81886],\n      [12.76973, 41.81868],\n      [12.77039, 41.81853],\n      [12.77077, 41.81847],\n      [12.77115, 41.81841],\n      [12.77243, 41.81826],\n      [12.77352, 41.81818],\n      [12.77468, 41.81815],\n      [12.77806, 41.8181],\n      [12.77983, 41.81807],\n      [12.78311, 41.81801],\n      [12.78591, 41.81797],\n      [12.78807, 41.81793],\n      [12.78867, 41.81789],\n      [12.7892, 41.81784],\n      [12.78975, 41.81777],\n      [12.79026, 41.81768],\n      [12.79111, 41.81751],\n      [12.79191, 41.81729],\n      [12.79284, 41.81697],\n      [12.79371, 41.81661],\n      [12.79491, 41.816],\n      [12.79612, 41.81537],\n      [12.79919, 41.81378],\n      [12.80095, 41.81287],\n      [12.80327, 41.81167],\n      [12.80383, 41.81138],\n      [12.80474, 41.8109],\n      [12.80606, 41.81022],\n      [12.80801, 41.80922],\n      [12.80995, 41.80821],\n      [12.81132, 41.80748],\n      [12.81266, 41.8067],\n      [12.81414, 41.8059],\n      [12.81555, 41.80518],\n      [12.81596, 41.80508],\n      [12.81832, 41.80385],\n      [12.81879, 41.80361],\n      [12.8204, 41.80277],\n      [12.82226, 41.8018],\n      [12.8235, 41.80117],\n      [12.82586, 41.79994],\n      [12.82713, 41.79928],\n      [12.82914, 41.79824],\n      [12.83238, 41.79656],\n      [12.83294, 41.79627],\n      [12.83464, 41.79539],\n      [12.84175, 41.79138],\n      [12.8438, 41.79025],\n      [12.85039, 41.78647],\n      [12.85278, 41.78519],\n      [12.85857, 41.78186],\n      [12.85975, 41.78127],\n      [12.86072, 41.78081],\n      [12.86193, 41.78031],\n      [12.86378, 41.77963],\n      [12.8652, 41.7792],\n      [12.8699, 41.77808],\n      [12.88569, 41.77465],\n      [12.89252, 41.77313],\n      [12.89842, 41.77182],\n      [12.90725, 41.76985],\n      [12.91029, 41.76927],\n      [12.91899, 41.76733],\n      [12.92009, 41.76709],\n      [12.92321, 41.76639],\n      [12.93002, 41.76488],\n      [12.9357, 41.76359],\n      [12.94322, 41.76197],\n      [12.95308, 41.7598],\n      [12.95947, 41.75838],\n      [12.96181, 41.75786],\n      [12.96296, 41.75758],\n      [12.96416, 41.75726],\n      [12.96883, 41.75591],\n      [12.97297, 41.75472],\n      [12.97713, 41.7535],\n      [12.98082, 41.75245],\n      [12.98332, 41.7517],\n      [12.98677, 41.75072],\n      [12.98803, 41.75033],\n      [12.99056, 41.74965],\n      [12.99128, 41.74948],\n      [12.99189, 41.74935],\n      [12.99234, 41.74927],\n      [12.99278, 41.74921],\n      [12.99371, 41.74909],\n      [12.99438, 41.74903],\n      [12.99513, 41.74898],\n      [12.99622, 41.74894],\n      [12.99919, 41.74892],\n      [13.01471, 41.74878],\n      [13.02366, 41.74871],\n      [13.02993, 41.74866],\n      [13.0323, 41.74864],\n      [13.03988, 41.7486],\n      [13.04657, 41.74856],\n      [13.05417, 41.74849],\n      [13.05826, 41.74846],\n      [13.05867, 41.74844],\n      [13.0593, 41.7484],\n      [13.05998, 41.74832],\n      [13.06087, 41.74817],\n      [13.06158, 41.748],\n      [13.06247, 41.74774],\n      [13.0635, 41.74734],\n      [13.064, 41.74711],\n      [13.06828, 41.74499],\n      [13.07144, 41.74345],\n      [13.07303, 41.74272],\n      [13.07937, 41.73963],\n      [13.08618, 41.73629],\n      [13.08961, 41.73462],\n      [13.09063, 41.73412],\n      [13.09714, 41.73098],\n      [13.10295, 41.7281],\n      [13.10759, 41.72587],\n      [13.11072, 41.72437],\n      [13.11202, 41.72374],\n      [13.11215, 41.72367],\n      [13.11348, 41.72302],\n      [13.11374, 41.7229],\n      [13.11387, 41.72283],\n      [13.11806, 41.72079],\n      [13.11865, 41.7205],\n      [13.11974, 41.71997],\n      [13.12384, 41.71797],\n      [13.12537, 41.71723],\n      [13.12546, 41.71718],\n      [13.12599, 41.71692],\n      [13.12699, 41.71644],\n      [13.12736, 41.71626],\n      [13.13079, 41.71458],\n      [13.13614, 41.71196],\n      [13.14261, 41.70879],\n      [13.15196, 41.70422],\n      [13.16082, 41.6999],\n      [13.16728, 41.69675],\n      [13.171, 41.69495],\n      [13.17114, 41.69488],\n      [13.17457, 41.69321],\n      [13.17651, 41.69226],\n      [13.17662, 41.69221],\n      [13.18093, 41.6901],\n      [13.18323, 41.68896],\n      [13.18365, 41.68873],\n      [13.18396, 41.68858],\n      [13.18638, 41.68718],\n      [13.19196, 41.68349],\n      [13.19358, 41.68241],\n      [13.20103, 41.67745],\n      [13.20967, 41.67168],\n      [13.21452, 41.66845],\n      [13.22776, 41.65965],\n      [13.23029, 41.65797],\n      [13.23067, 41.65771],\n      [13.2327, 41.65637],\n      [13.23668, 41.65373],\n      [13.23703, 41.6535],\n      [13.23737, 41.65328],\n      [13.23986, 41.65162],\n      [13.24085, 41.65097],\n      [13.24258, 41.64993],\n      [13.24397, 41.64924],\n      [13.24594, 41.64841],\n      [13.2475, 41.64776],\n      [13.2489, 41.64717],\n      [13.25143, 41.64615],\n      [13.25406, 41.64509],\n      [13.25513, 41.64466],\n      [13.25683, 41.64397],\n      [13.25758, 41.64367],\n      [13.25833, 41.64338],\n      [13.25985, 41.64272],\n      [13.26068, 41.64231],\n      [13.26076, 41.64227],\n      [13.26177, 41.64174],\n      [13.26289, 41.64107],\n      [13.26405, 41.64025],\n      [13.26518, 41.63937],\n      [13.26789, 41.63725],\n      [13.26896, 41.63643],\n      [13.27107, 41.63482],\n      [13.27284, 41.6337],\n      [13.27475, 41.6328],\n      [13.27909, 41.63121],\n      [13.28278, 41.62992],\n      [13.28434, 41.62937],\n      [13.28445, 41.62933],\n      [13.29168, 41.62679],\n      [13.29703, 41.62491],\n      [13.30388, 41.62249],\n      [13.30451, 41.62227],\n      [13.30696, 41.62142],\n      [13.30843, 41.6209],\n      [13.31017, 41.62027],\n      [13.31201, 41.61961],\n      [13.31235, 41.6195],\n      [13.31794, 41.61755],\n      [13.32221, 41.61605],\n      [13.32303, 41.61575],\n      [13.32439, 41.61526],\n      [13.32524, 41.6149],\n      [13.32606, 41.61448],\n      [13.32695, 41.61393],\n      [13.32765, 41.6134],\n      [13.32835, 41.61278],\n      [13.32885, 41.61225],\n      [13.32928, 41.61172],\n      [13.32962, 41.61122],\n      [13.32996, 41.6106],\n      [13.33043, 41.60958],\n      [13.33079, 41.60875],\n      [13.33099, 41.60829],\n      [13.33175, 41.60648],\n      [13.33284, 41.60386],\n      [13.33422, 41.60057],\n      [13.33452, 41.59986],\n      [13.33479, 41.59921],\n      [13.33515, 41.59834],\n      [13.33575, 41.59696],\n      [13.33596, 41.59651],\n      [13.33642, 41.59569],\n      [13.33694, 41.59492],\n      [13.33767, 41.59402],\n      [13.33853, 41.59317],\n      [13.33926, 41.59255],\n      [13.3398, 41.59212],\n      [13.34039, 41.59173],\n      [13.3439, 41.58956],\n      [13.34626, 41.58812],\n      [13.34926, 41.58628],\n      [13.35144, 41.58498],\n      [13.35472, 41.58297],\n      [13.35604, 41.58217],\n      [13.35692, 41.58162],\n      [13.35988, 41.58003],\n      [13.36379, 41.57827],\n      [13.3647, 41.57789],\n      [13.36709, 41.57689],\n      [13.37257, 41.57467],\n      [13.37577, 41.57333],\n      [13.37861, 41.57217],\n      [13.38005, 41.57156],\n      [13.3816, 41.57092],\n      [13.38458, 41.56965],\n      [13.38632, 41.56891],\n      [13.38851, 41.56795],\n      [13.3924, 41.5663],\n      [13.39731, 41.56425],\n      [13.40315, 41.5618],\n      [13.40544, 41.56085],\n      [13.40709, 41.56016],\n      [13.40734, 41.56004],\n      [13.40866, 41.55951],\n      [13.41037, 41.55886],\n      [13.41214, 41.55828],\n      [13.41418, 41.55774],\n      [13.41626, 41.55728],\n      [13.41752, 41.55704],\n      [13.42011, 41.55658],\n      [13.42495, 41.55573],\n      [13.43744, 41.55354],\n      [13.4408, 41.55294],\n      [13.44934, 41.55142],\n      [13.45591, 41.55026],\n      [13.4583, 41.54984],\n      [13.46856, 41.54803],\n      [13.47848, 41.54628],\n      [13.48394, 41.54531],\n      [13.48605, 41.54494],\n      [13.49397, 41.54354],\n      [13.49508, 41.54333],\n      [13.4969, 41.54305],\n      [13.49846, 41.54284],\n      [13.49932, 41.54275],\n      [13.50005, 41.54269],\n      [13.50125, 41.54261],\n      [13.50245, 41.54256],\n      [13.50435, 41.54253],\n      [13.51214, 41.54277],\n      [13.51224, 41.54277],\n      [13.51263, 41.54279],\n      [13.51507, 41.54286],\n      [13.51756, 41.54294],\n      [13.5188, 41.54298],\n      [13.52422, 41.54314],\n      [13.52564, 41.54319],\n      [13.52585, 41.54319],\n      [13.52823, 41.54327],\n      [13.53048, 41.54334],\n      [13.53313, 41.54341],\n      [13.53546, 41.54349],\n      [13.54351, 41.54373],\n      [13.54772, 41.54385],\n      [13.55129, 41.54396],\n      [13.55416, 41.54405],\n      [13.555, 41.54408],\n      [13.55705, 41.54411],\n      [13.55892, 41.54409],\n      [13.56117, 41.54402],\n      [13.56278, 41.54393],\n      [13.56464, 41.54378],\n      [13.56651, 41.54359],\n      [13.56869, 41.54331],\n      [13.57103, 41.54292],\n      [13.57416, 41.54231],\n      [13.57672, 41.54169],\n      [13.5791, 41.54104],\n      [13.58089, 41.54049],\n      [13.58195, 41.54014],\n      [13.58349, 41.53961],\n      [13.58522, 41.53894],\n      [13.58667, 41.53836],\n      [13.58807, 41.53775],\n      [13.59175, 41.53621],\n      [13.59382, 41.53531],\n      [13.59538, 41.53466],\n      [13.59733, 41.53384],\n      [13.59952, 41.5329],\n      [13.60347, 41.53122],\n      [13.6053, 41.53045],\n      [13.60579, 41.53025],\n      [13.6072, 41.52964],\n      [13.60958, 41.52864],\n      [13.6108, 41.5281],\n      [13.61182, 41.52768],\n      [13.61363, 41.52691],\n      [13.61716, 41.52542],\n      [13.61819, 41.52498],\n      [13.62063, 41.52395],\n      [13.62195, 41.52339],\n      [13.62526, 41.52197],\n      [13.62675, 41.52134],\n      [13.62906, 41.52036],\n      [13.63385, 41.51832],\n      [13.63608, 41.51739],\n      [13.63978, 41.51579],\n      [13.64059, 41.51544],\n      [13.64329, 41.51429],\n      [13.64612, 41.51308],\n      [13.64665, 41.51284],\n      [13.64897, 41.51185],\n      [13.65184, 41.51063],\n      [13.65532, 41.50913],\n      [13.65738, 41.50825],\n      [13.6599, 41.50716],\n      [13.66305, 41.50581],\n      [13.66363, 41.50556],\n      [13.66815, 41.50362],\n      [13.67185, 41.50203],\n      [13.67254, 41.50173],\n      [13.67471, 41.5008],\n      [13.67599, 41.50026],\n      [13.67884, 41.49903],\n      [13.6804, 41.49837],\n      [13.68159, 41.49786],\n      [13.68746, 41.49533],\n      [13.68845, 41.49491],\n      [13.69012, 41.49419],\n      [13.69375, 41.49265],\n      [13.69671, 41.49137],\n      [13.69708, 41.4912],\n      [13.69891, 41.49041],\n      [13.70016, 41.48988],\n      [13.70271, 41.48876],\n      [13.70518, 41.48769],\n      [13.7067, 41.48702],\n      [13.71161, 41.48495],\n      [13.7146, 41.48368],\n      [13.71553, 41.48328],\n      [13.71702, 41.48265],\n      [13.72209, 41.48047],\n      [13.72601, 41.47877],\n      [13.72793, 41.47795],\n      [13.73948, 41.473],\n      [13.74309, 41.47144],\n      [13.74518, 41.47054],\n      [13.74612, 41.47016],\n      [13.74677, 41.46992],\n      [13.74755, 41.46965],\n      [13.7488, 41.46927],\n      [13.7502, 41.46893],\n      [13.7527, 41.46837],\n      [13.75363, 41.46816],\n      [13.75503, 41.46786],\n      [13.75843, 41.46712],\n      [13.76874, 41.46483],\n      [13.77852, 41.46267],\n      [13.77894, 41.46258],\n      [13.77915, 41.46253],\n      [13.78108, 41.4621],\n      [13.78862, 41.46044],\n      [13.79132, 41.45985],\n      [13.79302, 41.45947],\n      [13.79534, 41.45897],\n      [13.79574, 41.45888],\n      [13.79819, 41.45834],\n      [13.80126, 41.45763],\n      [13.81136, 41.45541],\n      [13.81542, 41.4545],\n      [13.81734, 41.45407],\n      [13.81953, 41.45362],\n      [13.82135, 41.45321],\n      [13.8226, 41.45291],\n      [13.82565, 41.45226],\n      [13.82816, 41.4517],\n      [13.82924, 41.45146],\n      [13.83054, 41.45118],\n      [13.83197, 41.45086],\n      [13.83313, 41.45061],\n      [13.83548, 41.45007],\n      [13.83654, 41.44985],\n      [13.83692, 41.44976],\n      [13.84132, 41.44879],\n      [13.8426, 41.44851],\n      [13.84397, 41.44822],\n      [13.84683, 41.44758],\n      [13.8485, 41.4472],\n      [13.85316, 41.44615],\n      [13.8557, 41.44561],\n      [13.85771, 41.44514],\n      [13.86078, 41.44449],\n      [13.86221, 41.44417],\n      [13.86818, 41.44285],\n      [13.87021, 41.4424],\n      [13.87036, 41.44237],\n      [13.87095, 41.44224],\n      [13.87135, 41.44215],\n      [13.87199, 41.44202],\n      [13.87293, 41.44179],\n      [13.87386, 41.44155],\n      [13.87562, 41.44106],\n      [13.87647, 41.4408],\n      [13.87774, 41.44038],\n      [13.87961, 41.43975],\n      [13.88041, 41.43943],\n      [13.88199, 41.43884],\n      [13.88379, 41.43813],\n      [13.88589, 41.43733],\n      [13.88809, 41.43646],\n      [13.88972, 41.43581],\n      [13.89254, 41.43472],\n      [13.8936, 41.43431],\n      [13.89468, 41.43389],\n      [13.89988, 41.43187],\n      [13.90074, 41.43152],\n      [13.90485, 41.42993],\n      [13.90775, 41.4288],\n      [13.91523, 41.42587],\n      [13.92039, 41.42386],\n      [13.92216, 41.42317],\n      [13.92662, 41.42142],\n      [13.93827, 41.4169],\n      [13.94661, 41.41363],\n      [13.95218, 41.41146],\n      [13.96323, 41.40715],\n      [13.97167, 41.40386],\n      [13.97283, 41.40329],\n      [13.97355, 41.40292],\n      [13.97475, 41.4023],\n      [13.97547, 41.40186],\n      [13.97618, 41.40137],\n      [13.97728, 41.40055],\n      [13.98137, 41.39749],\n      [13.98857, 41.39212],\n      [13.98957, 41.39136],\n      [13.9909, 41.39036],\n      [13.99856, 41.38464],\n      [14.00471, 41.38017],\n      [14.00908, 41.3769],\n      [14.01188, 41.3748],\n      [14.01243, 41.37438],\n      [14.01333, 41.37366],\n      [14.02159, 41.36756],\n      [14.02849, 41.36237],\n      [14.03211, 41.35965],\n      [14.0383, 41.35501],\n      [14.04363, 41.35102],\n      [14.04746, 41.34822],\n      [14.04898, 41.34706],\n      [14.05003, 41.34626],\n      [14.05334, 41.34383],\n      [14.05468, 41.34282],\n      [14.05571, 41.34204],\n      [14.05891, 41.33965],\n      [14.05994, 41.33887],\n      [14.06009, 41.33876],\n      [14.06042, 41.33851],\n      [14.06409, 41.33575],\n      [14.06991, 41.33145],\n      [14.07311, 41.32902],\n      [14.07976, 41.32399],\n      [14.08082, 41.32321],\n      [14.08121, 41.3229],\n      [14.08194, 41.32219],\n      [14.08232, 41.3218],\n      [14.08272, 41.32136],\n      [14.08326, 41.32075],\n      [14.08363, 41.32027],\n      [14.08389, 41.31987],\n      [14.08432, 41.31919],\n      [14.0847, 41.31837],\n      [14.08496, 41.3176],\n      [14.08728, 41.3117],\n      [14.08819, 41.30936],\n      [14.08833, 41.30899],\n      [14.0889, 41.30758],\n      [14.08923, 41.30675],\n      [14.08956, 41.30588],\n      [14.08971, 41.30548],\n      [14.08982, 41.30515],\n      [14.09, 41.30463],\n      [14.09028, 41.3037],\n      [14.09041, 41.30317],\n      [14.09054, 41.3026],\n      [14.09064, 41.3021],\n      [14.09076, 41.3014],\n      [14.09086, 41.30063],\n      [14.09093, 41.29983],\n      [14.09098, 41.29903],\n      [14.09102, 41.29786],\n      [14.09163, 41.26883],\n      [14.09172, 41.26516],\n      [14.09185, 41.25927],\n      [14.09201, 41.25412],\n      [14.09223, 41.24276],\n      [14.09236, 41.23823],\n      [14.09243, 41.23722],\n      [14.09245, 41.23681],\n      [14.09245, 41.2363],\n      [14.09244, 41.23551],\n      [14.09257, 41.23446],\n      [14.09279, 41.23349],\n      [14.09304, 41.2327],\n      [14.09329, 41.2321],\n      [14.094, 41.2304],\n      [14.09624, 41.22501],\n      [14.09672, 41.22399],\n      [14.09752, 41.22212],\n      [14.09804, 41.22084],\n      [14.09863, 41.21957],\n      [14.09907, 41.2189],\n      [14.09973, 41.21806],\n      [14.10052, 41.21724],\n      [14.10156, 41.21644],\n      [14.10275, 41.21575],\n      [14.11392, 41.21059],\n      [14.12323, 41.20625],\n      [14.12388, 41.20595],\n      [14.13156, 41.20242],\n      [14.13275, 41.20187],\n      [14.13444, 41.20108],\n      [14.1355, 41.20057],\n      [14.13694, 41.1999],\n      [14.13948, 41.19871],\n      [14.14197, 41.19755],\n      [14.14248, 41.19731],\n      [14.14497, 41.19614],\n      [14.14575, 41.19577],\n      [14.14807, 41.19472],\n      [14.1492, 41.19419],\n      [14.15019, 41.19363],\n      [14.15143, 41.19287],\n      [14.15208, 41.19234],\n      [14.15266, 41.19191],\n      [14.1534, 41.19118],\n      [14.15455, 41.18994],\n      [14.15746, 41.18678],\n      [14.16252, 41.18129],\n      [14.1631, 41.18069],\n      [14.16338, 41.18039],\n      [14.16964, 41.17354],\n      [14.17859, 41.16377],\n      [14.18313, 41.15884],\n      [14.18532, 41.15649],\n      [14.18789, 41.15375],\n      [14.18958, 41.15189],\n      [14.19322, 41.1479],\n      [14.19708, 41.14368],\n      [14.19788, 41.1428],\n      [14.20039, 41.14009],\n      [14.20126, 41.13926],\n      [14.20216, 41.13851],\n      [14.20397, 41.1372],\n      [14.20486, 41.1366],\n      [14.21, 41.13317],\n      [14.21257, 41.13148],\n      [14.2148, 41.13004],\n      [14.21805, 41.12785],\n      [14.2193, 41.12704],\n      [14.22275, 41.12475],\n      [14.22531, 41.12305],\n      [14.22741, 41.12162],\n      [14.22807, 41.12112],\n      [14.22923, 41.12014],\n      [14.23164, 41.11787],\n      [14.23289, 41.11669],\n      [14.23344, 41.11619],\n      [14.23429, 41.11541],\n      [14.23516, 41.1147],\n      [14.23599, 41.11414],\n      [14.23683, 41.11362],\n      [14.23723, 41.1134],\n      [14.23833, 41.11283],\n      [14.2422, 41.11103],\n      [14.24677, 41.10891],\n      [14.25332, 41.1059],\n      [14.2569, 41.10425],\n      [14.25815, 41.1036],\n      [14.26117, 41.10202],\n      [14.26684, 41.0987],\n      [14.26809, 41.09799],\n      [14.27266, 41.0954],\n      [14.27789, 41.09241],\n      [14.27958, 41.09145],\n      [14.28308, 41.08943],\n      [14.2842, 41.08879],\n      [14.28499, 41.08834],\n      [14.28596, 41.08778],\n      [14.28691, 41.08705],\n      [14.28781, 41.08623],\n      [14.29157, 41.08268],\n      [14.29343, 41.08086],\n      [14.29545, 41.07892],\n      [14.29651, 41.0779],\n      [14.2988, 41.07572],\n      [14.29924, 41.07529],\n      [14.30216, 41.07251],\n      [14.3029, 41.07177],\n      [14.30351, 41.07116],\n      [14.30392, 41.07068],\n      [14.30449, 41.06995],\n      [14.30486, 41.06947],\n      [14.30569, 41.06836],\n      [14.30582, 41.06819],\n      [14.30644, 41.06733],\n      [14.30752, 41.06588],\n      [14.30813, 41.06509],\n      [14.30858, 41.06442],\n      [14.30976, 41.06288],\n      [14.31017, 41.06238],\n      [14.31066, 41.0618],\n      [14.31118, 41.0612],\n      [14.31189, 41.06046],\n      [14.31499, 41.05752],\n      [14.3162, 41.05645],\n      [14.31662, 41.05606],\n      [14.31848, 41.05432],\n      [14.31955, 41.05336],\n      [14.32045, 41.05239],\n      [14.32099, 41.05174],\n      [14.32157, 41.05085],\n      [14.32188, 41.05025],\n      [14.32216, 41.04956],\n      [14.32233, 41.04891],\n      [14.32244, 41.0481],\n      [14.32243, 41.04726],\n      [14.32242, 41.04536],\n      [14.32242, 41.04273],\n      [14.32241, 41.04216],\n      [14.32242, 41.04081],\n      [14.32239, 41.03961],\n      [14.32237, 41.03841],\n      [14.32234, 41.03678],\n      [14.32234, 41.03461],\n      [14.32229, 41.03215],\n      [14.32226, 41.03056],\n      [14.32222, 41.0288],\n      [14.32198, 41.02765],\n      [14.32217, 41.02577],\n      [14.32215, 41.0249],\n      [14.32215, 41.01887],\n      [14.32247, 41.01492],\n      [14.32279, 41.01142],\n      [14.32335, 41.0054],\n      [14.32355, 41.00324],\n      [14.32379, 41.00083],\n      [14.32411, 40.9972],\n      [14.32426, 40.99564],\n      [14.32471, 40.99059],\n      [14.32511, 40.9862],\n      [14.32524, 40.98495],\n      [14.32533, 40.98387],\n      [14.32585, 40.97834],\n      [14.32624, 40.9738],\n      [14.3263, 40.9732],\n      [14.32639, 40.97222],\n      [14.3268, 40.96791],\n      [14.32714, 40.96425],\n      [14.32724, 40.96314],\n      [14.3275, 40.96044],\n      [14.32765, 40.95851],\n      [14.32769, 40.95782],\n      [14.3277, 40.9572],\n      [14.32763, 40.95593],\n      [14.32752, 40.95531],\n      [14.32662, 40.94954],\n      [14.32593, 40.9449],\n      [14.3259, 40.94455],\n      [14.32546, 40.9417],\n      [14.32446, 40.93524],\n      [14.32396, 40.93194],\n      [14.32387, 40.93135],\n      [14.32351, 40.92882],\n      [14.32331, 40.92755],\n      [14.32319, 40.92682],\n      [14.32305, 40.92598],\n      [14.3229, 40.92482],\n      [14.32277, 40.92399],\n      [14.32255, 40.92257],\n      [14.3224, 40.92149],\n      [14.32237, 40.92129],\n      [14.32231, 40.92085],\n      [14.32215, 40.91985],\n      [14.32202, 40.91902],\n      [14.32185, 40.91796],\n      [14.32165, 40.91665],\n      [14.32154, 40.91598],\n      [14.32138, 40.91502],\n      [14.3208, 40.91127],\n      [14.32056, 40.90966],\n      [14.32024, 40.90758],\n      [14.31969, 40.90421],\n      [14.31915, 40.901],\n      [14.31895, 40.89983],\n      [14.31885, 40.89892],\n      [14.31864, 40.89758],\n      [14.3186, 40.89725],\n      [14.31855, 40.8969],\n      [14.31852, 40.8966],\n      [14.31834, 40.89565],\n      [14.31801, 40.89329],\n      [14.31763, 40.89097],\n      [14.31748, 40.8899],\n      [14.31737, 40.88917],\n      [14.31731, 40.88862],\n      [14.31733, 40.88723],\n      [14.31734, 40.88705],\n      [14.31743, 40.88641],\n      [14.31779, 40.88487],\n      [14.318, 40.88404],\n      [14.3181, 40.8836],\n      [14.31846, 40.88227],\n      [14.31881, 40.88081],\n      [14.31913, 40.87945],\n      [14.31915, 40.87937],\n      [14.31938, 40.87838],\n      [14.31955, 40.87771],\n      [14.31983, 40.87661],\n      [14.31995, 40.87611],\n      [14.32006, 40.87558],\n      [14.3202, 40.87506],\n      [14.32032, 40.87447],\n      [14.32061, 40.87304],\n      [14.32081, 40.87217],\n      [14.32099, 40.87141],\n      [14.32118, 40.87035],\n      [14.32124, 40.86983],\n      [14.32129, 40.86937],\n      [14.3213, 40.86889],\n      [14.3213, 40.86868],\n      [14.32121, 40.86808],\n      [14.32109, 40.86749],\n      [14.32029, 40.86449],\n      [14.32017, 40.86406],\n      [14.31975, 40.86262],\n      [14.31944, 40.86146],\n      [14.31853, 40.85807],\n      [14.31824, 40.85701],\n      [14.31811, 40.85639],\n      [14.3181, 40.85619],\n      [14.31813, 40.85578],\n      [14.3183, 40.85502],\n      [14.31835, 40.8546],\n      [14.31831, 40.8542],\n      [14.31819, 40.8538],\n      [14.31799, 40.85342],\n      [14.31774, 40.85303],\n      [14.31754, 40.85272],\n      [14.3173, 40.85236],\n      [14.31706, 40.85198],\n      [14.31663, 40.85124],\n      [14.31644, 40.85085],\n      [14.31627, 40.85044],\n      [14.31619, 40.85018],\n      [14.31613, 40.84988],\n      [14.31612, 40.84959],\n      [14.31614, 40.8493],\n      [14.31618, 40.84904],\n      [14.3163, 40.84868],\n      [14.31647, 40.84833],\n      [14.31666, 40.84803],\n      [14.31692, 40.84774],\n      [14.31718, 40.84748],\n      [14.31752, 40.84721],\n      [14.31787, 40.84698],\n      [14.31823, 40.8468],\n      [14.31859, 40.84664],\n      [14.31902, 40.84647],\n      [14.31949, 40.8463],\n      [14.31983, 40.84617],\n      [14.32014, 40.84602],\n      [14.32068, 40.84574],\n      [14.32127, 40.84544],\n      [14.32206, 40.84499],\n      [14.32309, 40.84443],\n      [14.32371, 40.8441],\n      [14.32403, 40.84392],\n      [14.32455, 40.84365],\n      [14.32488, 40.84347],\n      [14.32628, 40.84275],\n      [14.32669, 40.84253],\n      [14.328, 40.84185],\n      [14.32873, 40.84147],\n      [14.32933, 40.84115],\n      [14.32958, 40.84102],\n      [14.33041, 40.84057],\n      [14.33192, 40.83977],\n      [14.33424, 40.83853],\n      [14.33834, 40.83636],\n      [14.34024, 40.8351],\n      [14.34096, 40.83456],\n      [14.3416, 40.83404],\n      [14.34266, 40.83311],\n      [14.34329, 40.83251],\n      [14.34383, 40.83192],\n      [14.34402, 40.8317],\n      [14.34435, 40.83128],\n      [14.3448, 40.83069],\n      [14.34506, 40.83033],\n      [14.34602, 40.82893],\n      [14.34747, 40.82687],\n      [14.34766, 40.82659],\n      [14.3494, 40.8242],\n      [14.35171, 40.82103],\n      [14.35197, 40.8207],\n      [14.35222, 40.82032],\n      [14.35238, 40.82008],\n      [14.35418, 40.81744],\n      [14.35489, 40.81664],\n      [14.35545, 40.81592],\n      [14.35574, 40.8156],\n      [14.35605, 40.81529],\n      [14.35742, 40.81397],\n      [14.35944, 40.81224],\n      [14.35963, 40.81206],\n      [14.36241, 40.80951],\n      [14.36304, 40.80897],\n      [14.36367, 40.80829],\n      [14.36592, 40.8055],\n      [14.36793, 40.80297],\n      [14.37159, 40.79851],\n      [14.37243, 40.79748],\n      [14.37273, 40.79711],\n      [14.37312, 40.79665],\n      [14.37342, 40.79632],\n      [14.37474, 40.79479],\n      [14.37497, 40.7945],\n      [14.37628, 40.79284],\n      [14.37744, 40.79133],\n      [14.37799, 40.79072],\n      [14.37841, 40.79033],\n      [14.3789, 40.78995],\n      [14.37929, 40.78972],\n      [14.38105, 40.78865],\n      [14.38145, 40.78841],\n      [14.38307, 40.78743],\n      [14.38323, 40.78733],\n      [14.38364, 40.78708],\n      [14.38505, 40.78628],\n      [14.38569, 40.78593],\n      [14.38607, 40.78571],\n      [14.38671, 40.78522],\n      [14.38716, 40.78489],\n      [14.38758, 40.78456],\n      [14.38817, 40.78402],\n      [14.38867, 40.78345],\n      [14.39068, 40.78125],\n      [14.3914, 40.78054],\n      [14.39182, 40.78017],\n      [14.39253, 40.77972],\n      [14.39278, 40.77957],\n      [14.39331, 40.77932],\n      [14.39388, 40.77909],\n      [14.39419, 40.77901],\n      [14.39491, 40.77876],\n      [14.39556, 40.77851],\n      [14.3964, 40.77819],\n      [14.39814, 40.77758],\n      [14.40325, 40.77589],\n      [14.40426, 40.77554],\n      [14.4067, 40.77469],\n      [14.40895, 40.77388],\n      [14.4092, 40.77378],\n      [14.41046, 40.77332],\n      [14.41144, 40.7729],\n      [14.41303, 40.7723],\n      [14.41473, 40.77164],\n      [14.41565, 40.77129],\n      [14.41595, 40.77118],\n      [14.41684, 40.77083],\n      [14.41871, 40.77015],\n      [14.42101, 40.76939],\n      [14.42199, 40.7691],\n      [14.42288, 40.76871],\n      [14.42397, 40.76833],\n      [14.42466, 40.76811],\n      [14.42601, 40.7678],\n      [14.42744, 40.7673],\n      [14.42853, 40.76693],\n      [14.42936, 40.76665],\n      [14.42976, 40.76652],\n      [14.4312, 40.76602],\n      [14.43161, 40.76588],\n      [14.432, 40.76573],\n      [14.43296, 40.7654],\n      [14.43349, 40.76521],\n      [14.43386, 40.76509],\n      [14.43896, 40.76344],\n      [14.44282, 40.76218],\n      [14.44371, 40.76198],\n      [14.44426, 40.76191],\n      [14.44477, 40.76189],\n      [14.44602, 40.76185],\n      [14.44651, 40.76183],\n      [14.44935, 40.76173],\n      [14.45001, 40.76169],\n      [14.45064, 40.76164],\n      [14.45107, 40.76159],\n      [14.45148, 40.76149],\n      [14.45192, 40.76135],\n      [14.45256, 40.76112],\n      [14.45327, 40.7608],\n      [14.45409, 40.76043],\n      [14.45665, 40.75926],\n      [14.45712, 40.75905],\n      [14.45736, 40.75893],\n      [14.4581, 40.75858],\n      [14.46309, 40.75608],\n      [14.46564, 40.75482],\n      [14.46819, 40.75367],\n      [14.46843, 40.75356],\n      [14.46963, 40.75301],\n      [14.47063, 40.75255],\n      [14.47332, 40.75129],\n      [14.47389, 40.751],\n      [14.47667, 40.74966],\n      [14.47823, 40.74893],\n      [14.47884, 40.74859],\n      [14.47921, 40.74831],\n      [14.47952, 40.748],\n      [14.47964, 40.74783],\n      [14.47985, 40.74746],\n      [14.48026, 40.7466],\n      [14.48049, 40.74599],\n      [14.48069, 40.74553],\n      [14.48076, 40.74539],\n      [14.48088, 40.74504],\n      [14.48135, 40.74413],\n      [14.48248, 40.74174],\n      [14.48257, 40.74155],\n      [14.48273, 40.74117],\n      [14.48281, 40.74101],\n      [14.48297, 40.7408],\n      [14.48315, 40.74063],\n      [14.48332, 40.74051],\n      [14.4834, 40.74045],\n      [14.48361, 40.74014],\n      [14.4839, 40.73969],\n      [14.48403, 40.7395],\n      [14.48418, 40.73929],\n      [14.48425, 40.73914],\n      [14.48433, 40.73892],\n      [14.48448, 40.73858],\n      [14.48457, 40.73836],\n      [14.48466, 40.73816],\n      [14.4848, 40.73796],\n      [14.48491, 40.7378],\n      [14.485, 40.73765],\n      [14.48505, 40.73753],\n      [14.48511, 40.73736],\n      [14.48521, 40.73714],\n      [14.4875, 40.73124],\n      [14.48954, 40.72597],\n      [14.49034, 40.72395],\n      [14.49056, 40.72321],\n      [14.49104, 40.72173],\n      [14.49121, 40.72131],\n      [14.49136, 40.72106],\n      [14.49172, 40.7206],\n      [14.49203, 40.72031],\n      [14.49304, 40.71945],\n      [14.49358, 40.71892],\n      [14.49387, 40.71855],\n      [14.49418, 40.71805],\n      [14.49523, 40.71595],\n      [14.49543, 40.71558],\n      [14.49675, 40.71339],\n      [14.4971, 40.71268],\n      [14.49725, 40.71232],\n      [14.49747, 40.71168],\n      [14.49837, 40.70889],\n      [14.49857, 40.70833],\n      [14.4988, 40.70785],\n      [14.49898, 40.70762],\n      [14.49918, 40.7074],\n      [14.49953, 40.70713],\n      [14.50009, 40.7068],\n      [14.50108, 40.70633],\n      [14.50233, 40.70572],\n      [14.50278, 40.70544],\n      [14.50334, 40.70505],\n      [14.50387, 40.70453],\n      [14.50416, 40.70417],\n      [14.50439, 40.70386],\n      [14.50454, 40.70355],\n      [14.50473, 40.7031],\n      [14.50481, 40.70256],\n      [14.50489, 40.70171],\n      [14.50482, 40.7012],\n      [14.50424, 40.69916],\n      [14.50389, 40.69842],\n      [14.50343, 40.69779],\n      [14.50289, 40.69736],\n      [14.50216, 40.69704],\n      [14.50118, 40.6968],\n      [14.50005, 40.69663],\n      [14.49908, 40.69648],\n      [14.49836, 40.69632],\n      [14.49795, 40.69617],\n      [14.49768, 40.69599],\n      [14.49726, 40.69571],\n      [14.49702, 40.69555],\n      [14.49684, 40.6954],\n      [14.49663, 40.69521],\n      [14.4964, 40.69497],\n      [14.49621, 40.69469],\n      [14.4961, 40.69451],\n      [14.49597, 40.69427],\n      [14.49586, 40.69394],\n      [14.49582, 40.69375],\n      [14.4958, 40.69354],\n      [14.49579, 40.69327],\n      [14.4958, 40.69303],\n      [14.49585, 40.69281],\n      [14.49594, 40.69225],\n      [14.49607, 40.69143],\n      [14.49608, 40.69136],\n      [14.49609, 40.6913],\n      [14.4961, 40.69125],\n      [14.49627, 40.69041],\n      [14.49629, 40.68985],\n      [14.49623, 40.68915],\n      [14.4961, 40.68841],\n      [14.49574, 40.68768],\n      [14.49477, 40.68638],\n      [14.49354, 40.68514],\n      [14.49159, 40.68425],\n      [14.49045, 40.68392],\n      [14.48891, 40.68371],\n      [14.48826, 40.68373],\n      [14.48756, 40.68376],\n      [14.48544, 40.68416],\n      [14.48376, 40.6849],\n      [14.48247, 40.6856],\n      [14.48187, 40.68603],\n      [14.48082, 40.68677],\n      [14.48033, 40.68712],\n      [14.48026, 40.68716],\n      [14.48004, 40.68731],\n      [14.47972, 40.68755],\n      [14.47956, 40.68764],\n      [14.47933, 40.68773],\n      [14.47916, 40.68779],\n      [14.47899, 40.68784],\n      [14.47772, 40.68793],\n      [14.47729, 40.68796],\n      [14.47642, 40.68799],\n      [14.47437, 40.68804],\n      [14.47425, 40.68804],\n      [14.47407, 40.68805],\n      [14.47393, 40.68808],\n      [14.47373, 40.68822],\n      [14.47362, 40.68832],\n      [14.47349, 40.68844],\n      [14.47317, 40.68862],\n      [14.47285, 40.68877],\n      [14.47251, 40.68885],\n      [14.47216, 40.68888],\n      [14.47174, 40.68889],\n      [14.47087, 40.68887],\n      [14.46962, 40.68884],\n      [14.46917, 40.68887],\n      [14.4687, 40.68888],\n      [14.46817, 40.68886],\n      [14.4669, 40.68882],\n      [14.46585, 40.68877],\n      [14.46526, 40.68875],\n      [14.46508, 40.68871],\n      [14.46482, 40.68863],\n      [14.46416, 40.68835],\n      [14.46147, 40.68778],\n      [14.45801, 40.68742],\n      [14.45079, 40.68511],\n      [14.44584, 40.68242],\n      [14.44254, 40.68039],\n      [14.4417, 40.67988],\n      [14.44129, 40.67917],\n      [14.44125, 40.678],\n      [14.44071, 40.67666],\n      [14.43536, 40.67078],\n      [14.43281, 40.66779],\n      [14.42961, 40.65753],\n      [14.42946, 40.65728],\n      [14.4293, 40.65709],\n      [14.42907, 40.6569],\n      [14.42867, 40.65662],\n      [14.42838, 40.65643],\n      [14.42769, 40.65594],\n      [14.42757, 40.65588],\n      [14.42748, 40.65587],\n      [14.42734, 40.65588],\n      [14.42714, 40.65594],\n      [14.42695, 40.65601],\n      [14.42685, 40.65607],\n      [14.42683, 40.65609],\n      [14.4268, 40.65612],\n      [14.42674, 40.65619],\n      [14.42666, 40.65631],\n      [14.4266, 40.65639],\n      [14.42653, 40.65644],\n      [14.42643, 40.65648],\n      [14.42631, 40.65651],\n      [14.42628, 40.65652],\n      [14.42617, 40.65655],\n      [14.42601, 40.65662],\n      [14.42584, 40.65674],\n      [14.42567, 40.6569],\n      [14.42559, 40.65694],\n      [14.4255, 40.65695],\n      [14.42542, 40.65695],\n      [14.4253, 40.65691],\n      [14.4251, 40.65685],\n      [14.42495, 40.65685],\n      [14.42469, 40.65688],\n      [14.42463, 40.65689],\n      [14.42452, 40.65696],\n      [14.42446, 40.65702],\n      [14.42443, 40.65711],\n      [14.42444, 40.65723],\n      [14.42447, 40.65742],\n      [14.42448, 40.6575],\n      [14.42445, 40.6576],\n      [14.4244, 40.65767],\n      [14.42429, 40.65771],\n      [14.42418, 40.65772],\n      [14.42407, 40.65771],\n      [14.42381, 40.65761],\n      [14.42359, 40.65754],\n      [14.42331, 40.65749],\n      [14.42304, 40.65745],\n      [14.42296, 40.65745],\n      [14.42266, 40.65741],\n      [14.42255, 40.65739],\n      [14.42245, 40.65736],\n      [14.42238, 40.65733],\n      [14.4223, 40.65725],\n      [14.42214, 40.65724],\n      [14.42203, 40.65715],\n      [14.42193, 40.65696],\n      [14.42188, 40.65676],\n      [14.42187, 40.65668],\n      [14.42185, 40.65658],\n      [14.42182, 40.65651],\n      [14.4218, 40.65648],\n      [14.42159, 40.65629],\n      [14.42136, 40.65614],\n      [14.42095, 40.65587],\n      [14.42086, 40.65582],\n      [14.42076, 40.65576],\n      [14.42051, 40.65563],\n      [14.42034, 40.65564],\n      [14.42017, 40.65565],\n      [14.4198, 40.65583],\n      [14.41896, 40.65612],\n      [14.41882, 40.65598],\n      [14.41844, 40.65602],\n      [14.41803, 40.65596],\n      [14.41776, 40.65575],\n      [14.41745, 40.6553],\n      [14.41764, 40.65511],\n      [14.41778, 40.65503],\n      [14.41765, 40.65486],\n      [14.41758, 40.65417],\n      [14.41743, 40.65384],\n      [14.41733, 40.65365],\n      [14.41693, 40.6532],\n      [14.41713, 40.6532],\n      [14.4173, 40.6533],\n      [14.41751, 40.65332],\n      [14.41783, 40.65303],\n      [14.41797, 40.65275],\n      [14.41812, 40.65267],\n      [14.41853, 40.65258],\n      [14.41864, 40.65254],\n      [14.41913, 40.65227],\n      [14.41942, 40.65206],\n      [14.41954, 40.652],\n      [14.41967, 40.65195],\n      [14.41996, 40.65193],\n      [14.42079, 40.65192],\n      [14.42119, 40.65183],\n      [14.42142, 40.65179],\n      [14.42162, 40.65168],\n      [14.42183, 40.65145],\n      [14.42193, 40.6513],\n      [14.42201, 40.65072],\n      [14.42198, 40.65],\n      [14.42219, 40.64924],\n      [14.42222, 40.64901],\n      [14.4222, 40.64864],\n      [14.42215, 40.64818],\n      [14.42211, 40.6478],\n      [14.42222, 40.64745],\n      [14.42227, 40.64709],\n      [14.42246, 40.64635],\n      [14.42251, 40.64611],\n      [14.42246, 40.64596],\n      [14.42231, 40.64571],\n      [14.42221, 40.64544],\n      [14.42225, 40.6452],\n      [14.42218, 40.64496],\n      [14.42218, 40.64457],\n      [14.42175, 40.64415],\n      [14.42175, 40.64391],\n      [14.42179, 40.64369],\n      [14.42147, 40.64322],\n      [14.42142, 40.64314],\n      [14.42142, 40.64303],\n      [14.42155, 40.64291],\n      [14.42185, 40.64272],\n      [14.42192, 40.64266],\n      [14.42194, 40.64246],\n      [14.42194, 40.64223],\n      [14.42194, 40.64205],\n      [14.42196, 40.64199],\n      [14.42192, 40.64198],\n      [14.42191, 40.64194],\n      [14.42197, 40.64098],\n      [14.42204, 40.64041],\n      [14.42215, 40.63978],\n      [14.42216, 40.63911],\n      [14.42225, 40.6389],\n      [14.42206, 40.63845],\n      [14.42195, 40.6382],\n      [14.42197, 40.63799],\n      [14.42209, 40.63794],\n      [14.42215, 40.63786],\n      [14.42218, 40.63784],\n      [14.42235, 40.63761],\n      [14.42275, 40.63707],\n      [14.42284, 40.63693],\n      [14.42312, 40.63658],\n      [14.42359, 40.63596],\n      [14.42376, 40.63577],\n      [14.42395, 40.63564],\n      [14.42418, 40.63556],\n      [14.42451, 40.63548],\n      [14.42471, 40.63544],\n      [14.42486, 40.63534],\n      [14.425, 40.63511],\n      [14.42503, 40.63506],\n      [14.42513, 40.63494],\n      [14.42518, 40.63487],\n      [14.42534, 40.63478],\n      [14.42565, 40.63459],\n      [14.42583, 40.63446],\n      [14.42608, 40.63437],\n      [14.42657, 40.63423],\n      [14.42667, 40.6342],\n      [14.42674, 40.63415],\n      [14.42675, 40.634],\n      [14.4267, 40.6339],\n      [14.42659, 40.63387],\n      [14.42644, 40.63387],\n      [14.42636, 40.63382],\n      [14.42631, 40.63375],\n      [14.4263, 40.63369],\n      [14.4263, 40.63366],\n      [14.42634, 40.63361],\n      [14.42637, 40.63358],\n      [14.42644, 40.63352],\n      [14.42654, 40.63342],\n      [14.42656, 40.63333],\n      [14.42656, 40.63327],\n      [14.42653, 40.63317],\n      [14.42648, 40.63308],\n      [14.42645, 40.63294],\n      [14.42643, 40.63282],\n      [14.42644, 40.63261],\n      [14.42647, 40.63231],\n      [14.42651, 40.63202],\n      [14.42659, 40.63184],\n      [14.42666, 40.6317],\n      [14.42673, 40.6316],\n      [14.42688, 40.6314],\n      [14.42698, 40.63124],\n      [14.42703, 40.63107],\n      [14.42704, 40.63082],\n      [14.42704, 40.63069],\n      [14.42705, 40.63058],\n      [14.42703, 40.63046],\n      [14.427, 40.63038],\n      [14.42693, 40.63033],\n      [14.42668, 40.63021],\n      [14.42647, 40.63015],\n      [14.42628, 40.6301],\n      [14.42609, 40.63008],\n      [14.426, 40.63008],\n      [14.42592, 40.6301],\n      [14.42579, 40.63015],\n      [14.42563, 40.63017],\n      [14.4253, 40.6302],\n      [14.42497, 40.63022],\n      [14.42491, 40.63022],\n      [14.42456, 40.63022],\n      [14.42451, 40.6302],\n      [14.42448, 40.63018],\n      [14.42444, 40.63012],\n      [14.42439, 40.63002],\n      [14.42435, 40.62992],\n      [14.42431, 40.62985],\n      [14.42421, 40.62975],\n      [14.42421, 40.62974],\n      [14.42417, 40.62967],\n      [14.42408, 40.62956],\n      [14.42396, 40.62941],\n      [14.42392, 40.62932],\n      [14.42389, 40.62926],\n      [14.42384, 40.6291],\n      [14.42382, 40.62904],\n      [14.4238, 40.62898],\n      [14.42379, 40.62886],\n      [14.42386, 40.62871],\n      [14.42398, 40.62854],\n      [14.42399, 40.62843],\n      [14.42392, 40.62826],\n      [14.42391, 40.62806],\n      [14.42394, 40.62789],\n      [14.42402, 40.62773],\n      [14.42461, 40.6269],\n      [14.42463, 40.62679],\n      [14.4246, 40.62671],\n      [14.42403, 40.62627],\n      [14.42377, 40.62603],\n      [14.42366, 40.62565],\n      [14.42375, 40.62396],\n      [14.42379, 40.62375],\n      [14.42385, 40.62337],\n      [14.42402, 40.62289],\n      [14.42402, 40.62273],\n      [14.42379, 40.6223],\n      [14.42377, 40.62217],\n      [14.42383, 40.62202],\n      [14.42415, 40.62173],\n      [14.42419, 40.62159],\n      [14.42408, 40.62148],\n      [14.42382, 40.62147],\n      [14.4227, 40.62158],\n      [14.42259, 40.62158],\n      [14.42243, 40.62156],\n      [14.42218, 40.62154],\n      [14.42192, 40.62156],\n      [14.42152, 40.62161],\n      [14.42142, 40.62163],\n      [14.42097, 40.62169],\n      [14.42042, 40.62186],\n      [14.42026, 40.6219],\n      [14.41998, 40.62192],\n      [14.41967, 40.62187],\n      [14.41916, 40.62166],\n      [14.41859, 40.62155],\n      [14.41795, 40.62127],\n      [14.41734, 40.62116],\n      [14.4168, 40.62108],\n      [14.41654, 40.62114],\n      [14.41546, 40.62155],\n      [14.41532, 40.62156],\n      [14.41526, 40.62154],\n      [14.4152, 40.62151],\n      [14.41516, 40.62141],\n      [14.41523, 40.62131],\n      [14.41557, 40.62119],\n      [14.41675, 40.62081],\n      [14.41735, 40.62048],\n      [14.41766, 40.62038],\n      [14.4179, 40.62039],\n      [14.41847, 40.62058],\n      [14.41853, 40.62059],\n      [14.4187, 40.62064],\n      [14.41943, 40.62062],\n      [14.41969, 40.62063],\n      [14.42019, 40.62075],\n      [14.42056, 40.62091],\n      [14.42099, 40.62105],\n      [14.4214, 40.621],\n      [14.42162, 40.6209],\n      [14.42189, 40.6207],\n      [14.4221, 40.62048],\n      [14.42267, 40.62009],\n      [14.42286, 40.61989],\n      [14.42311, 40.61952],\n      [14.4233, 40.61933],\n      [14.42409, 40.61906],\n      [14.42461, 40.61856],\n      [14.42498, 40.61834],\n      [14.42536, 40.61814],\n      [14.4257, 40.61806],\n      [14.42604, 40.61802],\n      [14.42633, 40.61794],\n      [14.42694, 40.61776],\n      [14.42731, 40.61765],\n      [14.42764, 40.61756],\n      [14.42787, 40.61748],\n      [14.42792, 40.61747],\n      [14.42826, 40.61738],\n      [14.4286, 40.61727],\n      [14.42888, 40.61717],\n      [14.42902, 40.6171],\n      [14.42912, 40.61701],\n      [14.42988, 40.61618],\n      [14.43004, 40.61606],\n      [14.43034, 40.61594],\n      [14.43057, 40.61591],\n      [14.4308, 40.61594],\n      [14.43103, 40.616],\n      [14.4316, 40.61631],\n      [14.43173, 40.61634],\n      [14.43187, 40.61633],\n      [14.43195, 40.61628],\n      [14.43228, 40.61606],\n      [14.43248, 40.61604],\n      [14.43268, 40.6161],\n      [14.43286, 40.61624],\n      [14.43346, 40.61672],\n      [14.43361, 40.61682],\n      [14.43379, 40.61687],\n      [14.43518, 40.61688],\n      [14.43527, 40.61683],\n      [14.4353, 40.61675],\n      [14.43526, 40.61666],\n      [14.4351, 40.61661],\n      [14.43413, 40.61663],\n      [14.43401, 40.61659],\n      [14.43391, 40.6165],\n      [14.43387, 40.61643],\n      [14.43379, 40.61601],\n      [14.43367, 40.6158],\n      [14.43325, 40.61548],\n      [14.43293, 40.61511],\n      [14.43288, 40.61501],\n      [14.4329, 40.61494],\n      [14.43296, 40.61488],\n      [14.43312, 40.61486],\n      [14.43324, 40.61497],\n      [14.43334, 40.61521],\n      [14.43349, 40.61544],\n      [14.43402, 40.61575],\n      [14.43421, 40.61609],\n      [14.43435, 40.61618],\n      [14.43455, 40.61619],\n      [14.43557, 40.61597],\n      [14.43577, 40.61585],\n      [14.43588, 40.61574],\n      [14.43619, 40.61537],\n      [14.43629, 40.6153],\n      [14.43641, 40.61531],\n      [14.43653, 40.61538],\n      [14.43653, 40.61553],\n      [14.4364, 40.616],\n      [14.43641, 40.61628],\n      [14.43652, 40.61654],\n      [14.43664, 40.61664],\n      [14.43678, 40.61672],\n      [14.43693, 40.61674],\n      [14.43713, 40.61673],\n      [14.4373, 40.61669],\n      [14.43751, 40.61669],\n      [14.43768, 40.6167],\n      [14.43785, 40.61667],\n      [14.43804, 40.61661],\n      [14.43821, 40.61657],\n      [14.43839, 40.6166],\n      [14.43848, 40.61664],\n      [14.43875, 40.61676],\n      [14.43884, 40.61683],\n      [14.4389, 40.61696],\n      [14.43898, 40.61712],\n      [14.43905, 40.6172],\n      [14.43917, 40.61726],\n      [14.4394, 40.61731],\n      [14.43965, 40.61733],\n      [14.44015, 40.61728],\n      [14.44026, 40.61731],\n      [14.44036, 40.61737],\n      [14.4405, 40.61762],\n      [14.44061, 40.61783],\n      [14.44067, 40.61791],\n      [14.44076, 40.61793],\n      [14.44088, 40.61792],\n      [14.44113, 40.61782],\n      [14.44126, 40.61782],\n      [14.44138, 40.61788],\n      [14.44154, 40.61797],\n      [14.44163, 40.61799],\n      [14.44174, 40.61798],\n      [14.44186, 40.61793],\n      [14.44208, 40.61781],\n      [14.4422, 40.61776],\n      [14.44236, 40.61775],\n      [14.44251, 40.61776],\n      [14.4427, 40.61778],\n      [14.44289, 40.61776],\n      [14.44303, 40.61776],\n      [14.44314, 40.61777],\n      [14.44322, 40.61782],\n      [14.44358, 40.61824],\n      [14.4437, 40.61831],\n      [14.44384, 40.61833],\n      [14.4442, 40.61829],\n      [14.44443, 40.61827],\n      [14.44467, 40.61831],\n      [14.44494, 40.61841],\n      [14.44559, 40.61884],\n      [14.44576, 40.61889],\n      [14.44595, 40.61891],\n      [14.44654, 40.61892],\n      [14.44698, 40.61886],\n      [14.44727, 40.61885],\n      [14.44741, 40.61888],\n      [14.44752, 40.61896],\n      [14.44766, 40.61914],\n      [14.44776, 40.61919],\n      [14.4479, 40.6192],\n      [14.44807, 40.61919],\n      [14.44826, 40.61921],\n      [14.44841, 40.61929],\n      [14.44861, 40.61955],\n      [14.44873, 40.61962],\n      [14.44889, 40.61967],\n      [14.44908, 40.61967],\n      [14.44939, 40.61962],\n      [14.44958, 40.61962],\n      [14.44974, 40.61966],\n      [14.44985, 40.61973],\n      [14.45013, 40.62015],\n      [14.45024, 40.62024],\n      [14.45034, 40.62027],\n      [14.45081, 40.62028],\n      [14.45095, 40.6203],\n      [14.45106, 40.62035],\n      [14.45122, 40.62053],\n      [14.45138, 40.6208],\n      [14.45148, 40.62087],\n      [14.45166, 40.62093],\n      [14.4519, 40.62098],\n      [14.45219, 40.62113],\n      [14.45235, 40.62117],\n      [14.45271, 40.62119],\n      [14.45285, 40.62122],\n      [14.45291, 40.62127],\n      [14.45295, 40.62135],\n      [14.45296, 40.62148],\n      [14.45274, 40.62192],\n      [14.45276, 40.62198],\n      [14.45285, 40.62202],\n      [14.45294, 40.62202],\n      [14.4531, 40.62191],\n      [14.45331, 40.62176],\n      [14.4535, 40.62167],\n      [14.454, 40.62163],\n      [14.4545, 40.62153],\n      [14.45473, 40.62143],\n      [14.45494, 40.62133],\n      [14.45514, 40.62116],\n      [14.45539, 40.62102],\n      [14.45647, 40.62077],\n      [14.45666, 40.62075],\n      [14.45693, 40.62077],\n      [14.4572, 40.62083],\n      [14.45734, 40.6209],\n      [14.45743, 40.621],\n      [14.4575, 40.62141],\n      [14.45758, 40.62149],\n      [14.45773, 40.6215],\n      [14.45784, 40.62147],\n      [14.45797, 40.62141],\n      [14.45809, 40.6212],\n      [14.4582, 40.62106],\n      [14.45954, 40.62019],\n      [14.45963, 40.62011],\n      [14.4597, 40.61986],\n      [14.45986, 40.61964],\n      [14.46012, 40.61952],\n      [14.4604, 40.61943],\n      [14.46053, 40.61933],\n      [14.46068, 40.61898],\n      [14.46078, 40.61889],\n      [14.46097, 40.61882],\n      [14.46182, 40.6188],\n      [14.46202, 40.61879],\n      [14.4622, 40.61873],\n      [14.46252, 40.61856],\n      [14.46276, 40.61834],\n      [14.46289, 40.6183],\n      [14.46308, 40.61837],\n      [14.46317, 40.61852],\n      [14.46341, 40.61912],\n      [14.4635, 40.61921],\n      [14.4636, 40.61927],\n      [14.46382, 40.61935],\n      [14.46394, 40.61942],\n      [14.46406, 40.61953],\n      [14.4642, 40.61966],\n      [14.46432, 40.61969],\n      [14.46445, 40.61967],\n      [14.46462, 40.61964],\n      [14.46491, 40.61955],\n      [14.46508, 40.61949],\n      [14.46519, 40.61946],\n      [14.46549, 40.61951],\n      [14.46571, 40.61952],\n      [14.46596, 40.61956],\n      [14.4662, 40.61962],\n      [14.46641, 40.61976],\n      [14.46677, 40.62022],\n      [14.46679, 40.62031],\n      [14.46673, 40.62038],\n      [14.46631, 40.62065],\n      [14.46587, 40.62105],\n      [14.46566, 40.62138],\n      [14.46556, 40.62162],\n      [14.4656, 40.62171],\n      [14.46587, 40.6219],\n      [14.46595, 40.62192],\n      [14.46606, 40.6219],\n      [14.46642, 40.62176],\n      [14.4667, 40.62171],\n      [14.46691, 40.62171],\n      [14.46715, 40.62175],\n      [14.46752, 40.6219],\n      [14.46769, 40.62195],\n      [14.46786, 40.62196],\n      [14.46807, 40.6219],\n      [14.46825, 40.62183],\n      [14.46841, 40.62179],\n      [14.46852, 40.62176],\n      [14.46865, 40.62177],\n      [14.46887, 40.62186],\n      [14.46905, 40.6219],\n      [14.46921, 40.6219],\n      [14.46937, 40.62188],\n      [14.46958, 40.62183],\n      [14.46971, 40.62185],\n      [14.46983, 40.6219],\n      [14.46988, 40.62201],\n      [14.46987, 40.62216],\n      [14.46991, 40.62227],\n      [14.46999, 40.62234],\n      [14.47015, 40.62238],\n      [14.47069, 40.62247],\n      [14.47089, 40.62254],\n      [14.47105, 40.62265],\n      [14.47117, 40.62283],\n      [14.47128, 40.62311],\n      [14.47131, 40.62331],\n      [14.47135, 40.62343],\n      [14.47144, 40.62354],\n      [14.47151, 40.62359],\n      [14.47153, 40.62368],\n      [14.47143, 40.6238],\n      [14.47119, 40.62395],\n      [14.47108, 40.62407],\n      [14.47106, 40.62416],\n      [14.4711, 40.62424],\n      [14.47119, 40.6243],\n      [14.47135, 40.62438],\n      [14.47146, 40.62441],\n      [14.47161, 40.62445],\n      [14.47173, 40.62447],\n      [14.47189, 40.62448],\n      [14.47196, 40.62451],\n      [14.47199, 40.62459],\n      [14.47207, 40.62476],\n      [14.47213, 40.62483],\n      [14.47224, 40.62487],\n      [14.47241, 40.62487],\n      [14.47253, 40.62483],\n      [14.47269, 40.62476],\n      [14.47284, 40.62476],\n      [14.473, 40.62481],\n      [14.47341, 40.625],\n      [14.47348, 40.62508],\n      [14.47351, 40.6252],\n      [14.47354, 40.62531],\n      [14.47361, 40.62538],\n      [14.47378, 40.62544],\n      [14.474, 40.6255],\n      [14.47433, 40.62557],\n      [14.47443, 40.62556],\n      [14.47453, 40.62551],\n      [14.47471, 40.62535],\n      [14.47489, 40.6252],\n      [14.47501, 40.62511],\n      [14.47512, 40.62509],\n      [14.47527, 40.62509],\n      [14.47546, 40.62513],\n      [14.47595, 40.62523],\n      [14.47631, 40.62533],\n      [14.47659, 40.62541],\n      [14.47678, 40.62544],\n      [14.47692, 40.62548],\n      [14.47704, 40.62557],\n      [14.47718, 40.62569],\n      [14.47731, 40.62575],\n      [14.47772, 40.6259],\n      [14.47782, 40.62596],\n      [14.4781, 40.6262],\n      [14.47823, 40.62633],\n      [14.47834, 40.62647],\n      [14.47846, 40.62656],\n      [14.47869, 40.62672],\n      [14.47881, 40.62683],\n      [14.47886, 40.62693],\n      [14.47891, 40.62707],\n      [14.47907, 40.62735],\n      [14.47914, 40.62754],\n      [14.47916, 40.62771],\n      [14.47914, 40.62786],\n      [14.47906, 40.62802],\n      [14.47893, 40.62817],\n      [14.4788, 40.62832],\n      [14.47865, 40.62848],\n      [14.47855, 40.62864],\n      [14.47845, 40.62873],\n      [14.4783, 40.62883],\n      [14.4781, 40.62892],\n      [14.47788, 40.62903],\n      [14.47774, 40.62915],\n      [14.47755, 40.62933],\n      [14.47738, 40.62955],\n      [14.47732, 40.6297],\n      [14.4773, 40.62982],\n      [14.47733, 40.63],\n      [14.47738, 40.63014],\n      [14.47747, 40.63019],\n      [14.47755, 40.63018],\n      [14.47763, 40.63015],\n      [14.47777, 40.63007],\n      [14.47798, 40.62993],\n      [14.47815, 40.62986],\n      [14.4783, 40.62983],\n      [14.479, 40.62985],\n      [14.47958, 40.62993],\n      [14.47992, 40.62996],\n      [14.48003, 40.62996],\n      [14.48014, 40.62994],\n      [14.48023, 40.62991],\n      [14.48048, 40.62981],\n      [14.48075, 40.62969],\n      [14.48083, 40.62964],\n      [14.4809, 40.6296],\n      [14.48097, 40.62957],\n      [14.48104, 40.62955],\n      [14.48116, 40.62954],\n      [14.48131, 40.62953],\n      [14.48145, 40.62952],\n      [14.48156, 40.6295],\n      [14.48166, 40.62945],\n      [14.48172, 40.62941],\n      [14.48181, 40.62937],\n      [14.48191, 40.62935],\n      [14.48209, 40.62933],\n      [14.48221, 40.62933],\n      [14.48228, 40.62936],\n      [14.48233, 40.6294],\n      [14.48243, 40.62938],\n      [14.48253, 40.62935],\n      [14.48276, 40.62923],\n      [14.48314, 40.62903],\n      [14.4833, 40.62897],\n      [14.48335, 40.62898],\n      [14.48337, 40.62901],\n      [14.48336, 40.62904],\n      [14.48329, 40.62909],\n      [14.48317, 40.62916],\n      [14.48294, 40.62929],\n      [14.48269, 40.62946],\n      [14.48243, 40.6296],\n      [14.48228, 40.62971],\n      [14.4822, 40.62985],\n      [14.4822, 40.62989],\n      [14.48222, 40.62991],\n      [14.48225, 40.62991],\n      [14.48229, 40.6299],\n      [14.48233, 40.62984],\n      [14.48236, 40.62978],\n      [14.48243, 40.62971],\n      [14.4826, 40.62963],\n      [14.48275, 40.62954],\n      [14.48297, 40.62938],\n      [14.48318, 40.62926],\n      [14.4834, 40.62921],\n      [14.48358, 40.62916],\n      [14.48371, 40.6291],\n      [14.48378, 40.62897],\n      [14.48382, 40.6288],\n      [14.48384, 40.62869],\n      [14.48393, 40.62863],\n      [14.48408, 40.6286],\n      [14.48414, 40.62855],\n      [14.4842, 40.62848],\n      [14.48419, 40.62841],\n      [14.48415, 40.62837],\n      [14.48406, 40.62834],\n      [14.48394, 40.62834],\n      [14.48379, 40.62834],\n      [14.48359, 40.62833],\n      [14.48341, 40.62834],\n      [14.48316, 40.62834],\n      [14.48292, 40.62837],\n      [14.48265, 40.62847],\n      [14.48227, 40.62863],\n      [14.48207, 40.62872],\n      [14.48189, 40.62877],\n      [14.48173, 40.6288],\n      [14.48151, 40.62881],\n      [14.48113, 40.62884],\n      [14.48082, 40.62884],\n      [14.48069, 40.62886],\n      [14.48063, 40.62888],\n      [14.48055, 40.6289],\n      [14.48033, 40.62898],\n      [14.48014, 40.62905],\n      [14.48006, 40.62907],\n      [14.47999, 40.62906],\n      [14.47994, 40.629],\n      [14.47993, 40.62894],\n      [14.47995, 40.62882],\n      [14.48005, 40.62873],\n      [14.48014, 40.62863],\n      [14.48017, 40.62855],\n      [14.48016, 40.62845],\n      [14.48014, 40.62838],\n      [14.48013, 40.62832],\n      [14.48012, 40.62827],\n      [14.48011, 40.62823],\n      [14.48015, 40.62819],\n      [14.48022, 40.62819],\n      [14.48026, 40.62822],\n      [14.48028, 40.62832],\n      [14.48031, 40.62838],\n      [14.48035, 40.62842],\n      [14.48043, 40.62848],\n      [14.4805, 40.6285],\n      [14.48055, 40.62851],\n      [14.48058, 40.62851],\n      [14.48061, 40.62852],\n      [14.48069, 40.62851],\n      [14.4808, 40.62849],\n      [14.48094, 40.62845],\n      [14.48118, 40.62834],\n      [14.48155, 40.62822],\n      [14.48184, 40.62817],\n      [14.4821, 40.62813],\n      [14.48232, 40.62809],\n      [14.48248, 40.62802],\n      [14.4832, 40.62776],\n      [14.48326, 40.62773],\n      [14.4835, 40.62763],\n      [14.48376, 40.62743],\n      [14.48389, 40.62738],\n      [14.48404, 40.62739],\n      [14.48417, 40.62741],\n      [14.48437, 40.62747],\n      [14.48474, 40.62758],\n      [14.48488, 40.62762],\n      [14.485, 40.62771],\n      [14.48505, 40.62778],\n      [14.48507, 40.62785],\n      [14.48509, 40.62795],\n      [14.48506, 40.62815],\n      [14.48506, 40.62825],\n      [14.48504, 40.6285],\n      [14.48497, 40.62864]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-slice-along/test.ts",
    "content": "import test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { along } from \"@turf/along\";\nimport { length } from \"@turf/length\";\nimport { lineSliceAlong } from \"./index.js\";\nimport { Feature, LineString } from \"geojson\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nvar line1: Feature<LineString> = loadJsonFileSync(\n  path.join(__dirname, \"test\", \"fixtures\", \"line1.geojson\")\n);\nvar route1: Feature<LineString> = loadJsonFileSync(\n  path.join(__dirname, \"test\", \"fixtures\", \"route1.geojson\")\n);\nvar route2: Feature<LineString> = loadJsonFileSync(\n  path.join(__dirname, \"test\", \"fixtures\", \"route2.geojson\")\n);\n\ntest(\"turf-line-slice-along -- line1\", function (t) {\n  var start = 500;\n  var stop = 750;\n  var options = { units: \"miles\" } as const;\n\n  var start_point = along(line1, start, options);\n  var end_point = along(line1, stop, options);\n  var sliced = lineSliceAlong(line1, start, stop, options);\n  t.equal(sliced.type, \"Feature\");\n  t.equal(sliced.geometry.type, \"LineString\");\n  t.deepEqual(sliced.geometry.coordinates[0], start_point.geometry.coordinates);\n  t.deepEqual(\n    sliced.geometry.coordinates[sliced.geometry.coordinates.length - 1],\n    end_point.geometry.coordinates\n  );\n  t.end();\n});\n\ntest(\"turf-line-slice-along -- line1 overshoot\", function (t) {\n  var start = 500;\n  var stop = 1500;\n  var options = { units: \"miles\" } as const;\n\n  var start_point = along(line1, start, options);\n  var end_point = along(line1, stop, options);\n  var sliced = lineSliceAlong(line1, start, stop, options);\n  t.equal(sliced.type, \"Feature\");\n  t.equal(sliced.geometry.type, \"LineString\");\n  t.deepEqual(sliced.geometry.coordinates[0], start_point.geometry.coordinates);\n  t.deepEqual(\n    sliced.geometry.coordinates[sliced.geometry.coordinates.length - 1],\n    end_point.geometry.coordinates\n  );\n  t.end();\n});\n\ntest(\"turf-line-slice-along -- route1\", function (t) {\n  var start = 500;\n  var stop = 750;\n  var options = { units: \"miles\" } as const;\n\n  var start_point = along(route1, start, options);\n  var end_point = along(route1, stop, options);\n  var sliced = lineSliceAlong(route1, start, stop, options);\n  t.equal(sliced.type, \"Feature\");\n  t.equal(sliced.geometry.type, \"LineString\");\n  t.deepEqual(sliced.geometry.coordinates[0], start_point.geometry.coordinates);\n  t.deepEqual(\n    sliced.geometry.coordinates[sliced.geometry.coordinates.length - 1],\n    end_point.geometry.coordinates\n  );\n  t.end();\n});\n\ntest(\"turf-line-slice-along -- route2\", function (t) {\n  var start = 25;\n  var stop = 50;\n  var options = { units: \"miles\" } as const;\n\n  var start_point = along(route2, start, options);\n  var end_point = along(route2, stop, options);\n  var sliced = lineSliceAlong(route2, start, stop, options);\n  t.equal(sliced.type, \"Feature\");\n  t.equal(sliced.geometry.type, \"LineString\");\n  t.deepEqual(sliced.geometry.coordinates[0], start_point.geometry.coordinates);\n  t.deepEqual(\n    sliced.geometry.coordinates[sliced.geometry.coordinates.length - 1],\n    end_point.geometry.coordinates\n  );\n  t.end();\n});\n\ntest(\"turf-line-slice-along -- start longer than line length\", function (t) {\n  var start = 500000;\n  var stop = 800000;\n  var options = { units: \"miles\" } as const;\n\n  t.throws(\n    () => lineSliceAlong(line1, start, stop, options),\n    \"Start position is beyond line\"\n  );\n  t.end();\n});\n\ntest(\"turf-line-slice-along -- start equal to line length\", function (t) {\n  var options = { units: \"miles\" } as const;\n  var start = length(line1, options);\n  var stop = start + 100;\n\n  var start_point = along(line1, start, options);\n  var end_point = along(line1, stop, options);\n  var sliced = lineSliceAlong(line1, start, stop, options);\n\n  t.equal(sliced.type, \"Feature\");\n  t.equal(sliced.geometry.type, \"LineString\");\n  t.deepEqual(sliced.geometry.coordinates[0], start_point.geometry.coordinates);\n  t.deepEqual(\n    sliced.geometry.coordinates[sliced.geometry.coordinates.length - 1],\n    end_point.geometry.coordinates\n  );\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-line-slice-along/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-line-split/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-line-split/README.md",
    "content": "# @turf/line-split\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## lineSplit\n\nSplit a LineString by another GeoJSON Feature.\n\n### Parameters\n\n*   `line` **[Feature][1]<[LineString][2]>** LineString Feature to split\n*   `splitter` **[Feature][1]\\<any>** Feature used to split line\n\n### Examples\n\n```javascript\nvar line = turf.lineString([[120, -25], [145, -25]]);\nvar splitter = turf.lineString([[130, -15], [130, -35]]);\n\nvar split = turf.lineSplit(line, splitter);\n\n//addToMap\nvar addToMap = [line, splitter, split]\n\nsplit.features[0].properties.stroke = \"red\";\nsplit.features[1].properties.stroke = \"blue\";\n```\n\nReturns **[FeatureCollection][3]<[LineString][2]>** Split LineStrings\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/line-split\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-line-split/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { lineSplit } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * issue-#852 x 51,581 ops/sec ±10.24% (43 runs sampled)\n * linestrings x 4,177 ops/sec ±7.29% (45 runs sampled)\n * multi-linestring x 8,461 ops/sec ±7.81% (64 runs sampled)\n * multi-polygon x 4,045 ops/sec ±3.07% (68 runs sampled)\n * multiPoint-on-line-1 x 11,468 ops/sec ±3.80% (67 runs sampled)\n * multiPoint-on-line-2 x 14,668 ops/sec ±3.70% (70 runs sampled)\n * point-on-line-1 x 30,573 ops/sec ±3.94% (73 runs sampled)\n * point-on-line-2 x 32,557 ops/sec ±3.21% (73 runs sampled)\n * point-on-line-3 x 104,831 ops/sec ±4.35% (54 runs sampled)\n * polygon-with-holes x 3,260 ops/sec ±3.41% (68 runs sampled)\n * polygon x 12,352 ops/sec ±3.88% (62 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-line-split\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () =>\n    lineSplit((geojson as any).features[0], (geojson as any).features[1])\n  );\n}\n\nsuite\n  .on(\"cycle\", (e: any) => {\n    console.log(String(e.target));\n  })\n  .run();\n"
  },
  {
    "path": "packages/turf-line-split/index.ts",
    "content": "import { geojsonRbush as rbush } from \"@turf/geojson-rbush\";\nimport { truncate } from \"@turf/truncate\";\nimport { lineSegment } from \"@turf/line-segment\";\nimport { lineIntersect } from \"@turf/line-intersect\";\nimport { nearestPointOnLine } from \"@turf/nearest-point-on-line\";\nimport { getCoords, getCoord, getType } from \"@turf/invariant\";\nimport { featureEach, featureReduce, flattenEach } from \"@turf/meta\";\nimport { lineString, featureCollection, feature } from \"@turf/helpers\";\nimport {\n  Feature,\n  FeatureCollection,\n  GeoJsonTypes,\n  LineString,\n  MultiLineString,\n  MultiPoint,\n  MultiPolygon,\n  Point,\n  Polygon,\n} from \"geojson\";\n\ntype Splitter = Feature<\n  Point | MultiPoint | LineString | MultiLineString | Polygon | MultiPolygon\n>;\n\n/**\n * Split a LineString by another GeoJSON Feature.\n *\n * @function\n * @param {Feature<LineString>} line LineString Feature to split\n * @param {Feature<any>} splitter Feature used to split line\n * @returns {FeatureCollection<LineString>} Split LineStrings\n * @example\n * var line = turf.lineString([[120, -25], [145, -25]]);\n * var splitter = turf.lineString([[130, -15], [130, -35]]);\n *\n * var split = turf.lineSplit(line, splitter);\n *\n * //addToMap\n * var addToMap = [line, splitter, split]\n *\n * split.features[0].properties.stroke = \"red\";\n * split.features[1].properties.stroke = \"blue\";\n */\nfunction lineSplit<T extends LineString>(\n  line: Feature<T> | T,\n  splitter: Splitter\n): FeatureCollection<T> {\n  if (!line) throw new Error(\"line is required\");\n  if (!splitter) throw new Error(\"splitter is required\");\n\n  const lineType = getType(line) as Exclude<GeoJsonTypes, \"Feature\">;\n  const splitterType = getType(splitter) as Exclude<GeoJsonTypes, \"Feature\">;\n\n  if (lineType !== \"LineString\") throw new Error(\"line must be LineString\");\n  if (splitterType === \"FeatureCollection\")\n    throw new Error(\"splitter cannot be a FeatureCollection\");\n  if (splitterType === \"GeometryCollection\")\n    throw new Error(\"splitter cannot be a GeometryCollection\");\n\n  // remove excessive decimals from splitter\n  // to avoid possible approximation issues in rbush\n  var truncatedSplitter = truncate(splitter, { precision: 7 });\n\n  // Ensure we're consistently sending Feature<LineString> into the splitLine methods.\n  if (line.type !== \"Feature\") {\n    line = feature(line);\n  }\n\n  switch (splitterType) {\n    case \"Point\":\n      return splitLineWithPoint(\n        line as Feature<LineString>,\n        truncatedSplitter as Feature<Point>\n      ) as FeatureCollection<T>;\n    case \"MultiPoint\":\n      return splitLineWithPoints(\n        line as Feature<LineString>,\n        truncatedSplitter as Feature<MultiPoint>\n      ) as FeatureCollection<T>;\n    case \"LineString\":\n    case \"MultiLineString\":\n    case \"Polygon\":\n    case \"MultiPolygon\":\n      return splitLineWithPoints(\n        line as Feature<LineString>,\n        lineIntersect(\n          line,\n          truncatedSplitter as Feature<\n            LineString | MultiLineString | Polygon | MultiPolygon\n          >,\n          {\n            ignoreSelfIntersections: true,\n          }\n        )\n      ) as FeatureCollection<T>;\n  }\n}\n\n/**\n * Split LineString with MultiPoint\n *\n * @private\n * @param {Feature<LineString>} line LineString\n * @param {FeatureCollection<Point>} splitter Point\n * @returns {FeatureCollection<LineString>} split LineStrings\n */\nfunction splitLineWithPoints(\n  line: Feature<LineString>,\n  splitter: FeatureCollection<Point> | Feature<MultiPoint>\n) {\n  var results: Feature<LineString>[] = [];\n  var tree = rbush<LineString>();\n\n  flattenEach(\n    splitter as FeatureCollection<Point>, // this cast should be unnecessary (and is wrong, it could contain MultiPoints), but is a workaround for bad flattenEach typings\n    function (point: Feature<Point>) {\n      // Add index/id to features (needed for filter)\n      results.forEach(function (feature, index) {\n        feature.id = index;\n      });\n      // First Point - doesn't need to handle any previous line results\n      if (!results.length) {\n        results = splitLineWithPoint(line, point).features;\n        tree.load(featureCollection(results));\n        // Split with remaining points - lines might needed to be split multiple times\n      } else {\n        // Find all lines that are within the splitter's bbox\n        var search = tree.search(point);\n\n        if (search.features.length) {\n          // RBush might return multiple lines - only process the closest line to splitter\n          var closestLine = findClosestFeature(point, search);\n\n          // Remove closest line from results since this will be split into two lines\n          // This removes any duplicates inside the results & index\n          results = results.filter(function (feature) {\n            return feature.id !== closestLine.id;\n          });\n          tree.remove(closestLine);\n\n          // Append the two newly split lines into the results\n          featureEach(splitLineWithPoint(closestLine, point), function (line) {\n            results.push(line);\n            tree.insert(line);\n          });\n        }\n      }\n    }\n  );\n  return featureCollection(results);\n}\n\n/**\n * Split LineString with Point\n *\n * @private\n * @param {Feature<LineString>} line LineString\n * @param {Feature<Point>} splitter Point\n * @returns {FeatureCollection<LineString>} split LineStrings\n */\nfunction splitLineWithPoint(\n  line: Feature<LineString>,\n  splitter: Feature<Point>\n) {\n  var results = [];\n\n  // handle endpoints\n  var startPoint = getCoords(line)[0];\n  var endPoint = getCoords(line)[line.geometry.coordinates.length - 1];\n  if (\n    pointsEquals(startPoint, getCoord(splitter)) ||\n    pointsEquals(endPoint, getCoord(splitter))\n  )\n    return featureCollection([line]);\n\n  // Create spatial index\n  var tree = rbush<LineString>();\n  var segments = lineSegment(line);\n  tree.load(segments);\n\n  // Find all segments that are within bbox of splitter\n  var search = tree.search(splitter);\n\n  // Return itself if point is not within spatial index\n  if (!search.features.length) return featureCollection([line]);\n\n  // RBush might return multiple lines - only process the closest line to splitter\n  var closestSegment = findClosestFeature(splitter, search);\n\n  // Initial value is the first point of the first segments (beginning of line)\n  var initialValue = [startPoint];\n  var lastCoords = featureReduce(\n    segments,\n    function (previous, current, index) {\n      var currentCoords = getCoords(current)[1];\n      var splitterCoords = getCoord(splitter);\n\n      // Location where segment intersects with line\n      if (index === closestSegment.id) {\n        previous.push(splitterCoords);\n        results.push(lineString(previous));\n        // Don't duplicate splitter coordinate (Issue #688)\n        if (pointsEquals(splitterCoords, currentCoords))\n          return [splitterCoords];\n        return [splitterCoords, currentCoords];\n\n        // Keep iterating over coords until finished or intersection is found\n      } else {\n        previous.push(currentCoords);\n        return previous;\n      }\n    },\n    initialValue\n  );\n  // Append last line to final split results\n  if (lastCoords.length > 1) {\n    results.push(lineString(lastCoords));\n  }\n  return featureCollection(results);\n}\n\n/**\n * Find Closest Feature\n *\n * @private\n * @param {Feature<Point>} point Feature must be closest to this point\n * @param {FeatureCollection<LineString>} lines Collection of Features\n * @returns {Feature<LineString>} closest LineString\n */\nfunction findClosestFeature(\n  point: Feature<Point>,\n  lines: FeatureCollection<LineString>\n): Feature<LineString> {\n  if (!lines.features.length) throw new Error(\"lines must contain features\");\n  // Filter to one segment that is the closest to the line\n  if (lines.features.length === 1) return lines.features[0];\n\n  var closestFeature;\n  var closestDistance = Infinity;\n  featureEach(lines, function (segment) {\n    var pt = nearestPointOnLine(segment, point);\n    var dist = pt.properties.pointDistance;\n    if (dist < closestDistance) {\n      closestFeature = segment;\n      closestDistance = dist;\n    }\n  });\n  return closestFeature!;\n}\n\n/**\n * Compares two points and returns if they are equals\n *\n * @private\n * @param {Array<number>} pt1 point\n * @param {Array<number>} pt2 point\n * @returns {boolean} true if they are equals\n */\nfunction pointsEquals(pt1: number[], pt2: number[]) {\n  return pt1[0] === pt2[0] && pt1[1] === pt2[1];\n}\n\nexport { Splitter, lineSplit };\nexport default lineSplit;\n"
  },
  {
    "path": "packages/turf-line-split/package.json",
    "content": "{\n  \"name\": \"@turf/line-split\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Split a LineString by another GeoJSON Feature.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"gis\",\n    \"line\",\n    \"split\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/geojson-rbush\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/line-intersect\": \"workspace:*\",\n    \"@turf/line-segment\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@turf/nearest-point-on-line\": \"workspace:*\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/in/issue-#1075-1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-87.168433, 37.946093],\n          [-87.16851, 37.960085]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-87.168446, 37.947929],\n          [-87.168445, 37.948301]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/in/issue-#1075-2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-87.168433, 37.946093],\n          [-87.16851, 37.960085]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-87.1684431695, 37.9479287543],\n          [-87.1684451512, 37.9483010091]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/in/issue-#1075-3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-87.168433, 37.946093],\n          [-87.16851, 37.960085]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-87.1684431695, 37.9479287543],\n          [-87.161, 37.948]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/in/issue-#1232.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [13.8716, 56.2783],\n          [13.8715, 56.2785],\n          [13.8743, 56.2794],\n          [13.8796, 56.2746]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [13.8726, 56.2786],\n            [13.8716, 56.2786],\n            [13.8713, 56.2784],\n            [13.8726, 56.2786]\n          ]\n        ]\n      },\n      \"properties\": {}\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/in/issue-#852.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [9.2202022, 49.1438226],\n          [9.2199531, 49.1439048],\n          [9.2196177, 49.1440264]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.219953175634146, 49.14390480825327]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/in/linestrings.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [126.5625, -32.99023555965107],\n          [113.466796875, -23.24134610238612],\n          [133.06640625, -12.64033830684679],\n          [150.908203125, -22.268764039073968],\n          [136.7578125, -33.28461996888768]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [122.78320312499999, -24.126701958681668],\n          [112.8515625, -31.12819929911196],\n          [104.67773437499999, -18.22935133838667],\n          [145.98632812499997, -14.859850400601037],\n          [145.98632812499997, -31.203404950917385]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/in/multi-linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [115.400390625, -27.215556209029675],\n          [122.1240234375, -25.443274612305732],\n          [129.2431640625, -18.93746442964186],\n          [131.5283203125, -25.20494115356912],\n          [137.98828125, -24.367113562651262],\n          [142.3828125, -24.367113562651262],\n          [144.66796875, -25.878994400196202],\n          [149.326171875, -26.667095801104804]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [120.4541015625, -23.200960808078566],\n            [133.4619140625, -22.105998799750566]\n          ],\n          [\n            [138.603515625, -21.16648385820657],\n            [137.4169921875, -28.729130483430154]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/in/multi-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [115.400390625, -27.215556209029675],\n          [122.1240234375, -25.443274612305732],\n          [129.2431640625, -18.93746442964186],\n          [131.5283203125, -25.20494115356912],\n          [137.98828125, -24.367113562651262],\n          [142.3828125, -24.367113562651262],\n          [144.66796875, -25.878994400196202],\n          [149.326171875, -26.667095801104804]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [119.2236328125, -28.03319784767635],\n              [133.76953125, -28.03319784767635],\n              [133.76953125, -21.739091217718574],\n              [119.2236328125, -21.739091217718574],\n              [119.2236328125, -28.03319784767635]\n            ]\n          ],\n          [\n            [\n              [136.5380859375, -27.449790329784214],\n              [144.755859375, -27.449790329784214],\n              [144.755859375, -21.943045533438166],\n              [136.5380859375, -21.943045533438166],\n              [136.5380859375, -27.449790329784214]\n            ]\n          ],\n          [\n            [\n              [125.94726562499999, -26.391869671769022],\n              [138.6474609375, -26.391869671769022],\n              [138.6474609375, -17.224758206624628],\n              [125.94726562499999, -17.224758206624628],\n              [125.94726562499999, -26.391869671769022]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/in/multiPoint-on-line-1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [116.98242187499999, -32.249974455863295],\n          [127.35351562499999, -29.075375179558346],\n          [122.9150390625, -25.562265014427492],\n          [128.935546875, -22.63429269379352],\n          [124.62890625, -23.483400654325628],\n          [129.375, -21.616579336740593],\n          [135.791015625, -21.53484700204879],\n          [139.833984375, -22.105998799750566]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [126.50643035185698, -22.744898171599424],\n          [126.01455688476562, -24.066528197726857],\n          [129.77660179138184, -21.611552214145394]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/in/multiPoint-on-line-2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [116.98242187499999, -32.249974455863295],\n          [127.35351562499999, -29.075375179558346],\n          [122.9150390625, -25.562265014427492],\n          [128.935546875, -22.63429269379352],\n          [124.62890625, -23.483400654325628],\n          [129.375, -21.616579336740593],\n          [135.791015625, -21.53484700204879],\n          [139.833984375, -22.105998799750566]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [126.60644531250001, -28.459033019728043],\n          [125.15625000000001, -27.254629577800063],\n          [123.53027343749999, -26.07652055985696]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/in/point-on-line-1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [116.98242187499999, -32.249974455863295],\n          [127.35351562499999, -29.075375179558346],\n          [122.9150390625, -25.562265014427492],\n          [128.935546875, -22.63429269379352],\n          [124.62890625, -23.483400654325628],\n          [129.375, -21.616579336740593],\n          [135.791015625, -21.53484700204879],\n          [139.833984375, -22.105998799750566]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [126.50643035185698, -22.744898171599424]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/in/point-on-line-2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [116.98242187499999, -32.249974455863295],\n          [127.35351562499999, -29.075375179558346],\n          [122.9150390625, -25.562265014427492],\n          [128.935546875, -22.63429269379352],\n          [124.62890625, -23.483400654325628],\n          [129.375, -21.616579336740593],\n          [135.791015625, -21.53484700204879],\n          [139.833984375, -22.105998799750566]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [127.6116943359375, -22.811630707692412]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/in/point-on-line-3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [116.98242187499999, -32.249974455863295],\n          [127.35351562499999, -29.075375179558346],\n          [122.9150390625, -25.562265014427492],\n          [128.935546875, -22.63429269379352],\n          [124.62890625, -23.483400654325628],\n          [129.375, -21.616579336740593],\n          [135.791015625, -21.53484700204879],\n          [139.833984375, -22.105998799750566]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [115.79589843749999, -33.760882000869174]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/in/polygon-with-holes.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [108.10546875, -24.607069137709694],\n          [116.103515625, -16.04581345375217],\n          [123.3984375, -14.689881366618762],\n          [127.529296875, -16.299051014581817],\n          [132.890625, -20.2209657795223],\n          [137.548828125, -22.67484735118852],\n          [144.05273437499997, -23.805449612314614],\n          [150.380859375, -25.95804467331783],\n          [155.302734375, -30.29701788337204],\n          [160.3125, -37.64903402157864],\n          [137.724609375, -28.14950321154457],\n          [127.705078125, -27.68352808378776],\n          [113.99414062499999, -34.45221847282653]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127.265625, -12.897489183755892],\n            [118.125, -18.062312304546715],\n            [113.818359375, -22.67484735118852],\n            [116.01562499999999, -36.3151251474805],\n            [123.3984375, -36.10237644873643],\n            [133.41796874999997, -34.234512362369856],\n            [141.240234375, -38.13455657705412],\n            [151.34765625, -38.13455657705412],\n            [155.478515625, -28.071980301779845],\n            [150.1171875, -17.560246503294888],\n            [142.822265625, -12.039320557540572],\n            [137.373046875, -11.60919340793894],\n            [127.265625, -12.897489183755892]\n          ],\n          [\n            [135.966796875, -18.729501999072138],\n            [142.20703125, -18.81271785640776],\n            [145.8984375, -26.11598592533351],\n            [144.84375, -31.05293398570514],\n            [139.74609375, -31.05293398570514],\n            [135.52734375, -29.993002284551064],\n            [127.61718749999999, -29.993002284551064],\n            [123.3984375, -27.994401411046148],\n            [123.3984375, -24.046463999666567],\n            [125.5078125, -20.632784250388013],\n            [135.966796875, -18.729501999072138]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/in/polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [133.76953125, -5.44102230371796],\n          [133.2421875, -16.97274101999901],\n          [135.87890625, -20.2209657795223],\n          [137.548828125, -24.607069137709694],\n          [132.802734375, -28.84467368077178],\n          [131.66015625, -37.85750715625203]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [115.13671875, -21.616579336740593],\n            [116.98242187499999, -34.66935854524544],\n            [128.32031249999997, -31.42866311735861],\n            [142.734375, -38.06539235133247],\n            [150.908203125, -22.268764039073968],\n            [135.791015625, -12.811801316582619],\n            [115.13671875, -21.616579336740593]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/out/issue-#1075-1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-87.168433, 37.946093],\n          [-87.168446, 37.947929]\n        ]\n      },\n      \"bbox\": [-87.168446, 37.946093, -87.168433, 37.947929],\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-87.168446, 37.947929],\n          [-87.16851, 37.960085]\n        ]\n      },\n      \"bbox\": [-87.16851, 37.947929, -87.168446, 37.960085],\n      \"id\": 1\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-87.168433, 37.946093],\n          [-87.16851, 37.960085]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-87.168446, 37.947929],\n          [-87.168445, 37.948301]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/out/issue-#1075-2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-87.168433, 37.946093],\n          [-87.1684432, 37.9479288]\n        ]\n      },\n      \"bbox\": [-87.1684432, 37.946093, -87.168433, 37.9479288],\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-87.1684432, 37.9479288],\n          [-87.1684452, 37.948301]\n        ]\n      },\n      \"bbox\": [-87.1684452, 37.9479288, -87.1684432, 37.948301]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-87.1684452, 37.948301],\n          [-87.16851, 37.960085]\n        ]\n      },\n      \"bbox\": [-87.16851, 37.948301, -87.1684452, 37.960085]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-87.168433, 37.946093],\n          [-87.16851, 37.960085]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-87.1684431695, 37.9479287543],\n          [-87.1684451512, 37.9483010091]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/out/issue-#1075-3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-87.168433, 37.946093],\n          [-87.1684432, 37.9479288]\n        ]\n      },\n      \"bbox\": [-87.1684432, 37.946093, -87.168433, 37.9479288],\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-87.1684432, 37.9479288],\n          [-87.16851, 37.960085]\n        ]\n      },\n      \"bbox\": [-87.16851, 37.9479288, -87.1684432, 37.960085],\n      \"id\": 1\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-87.168433, 37.946093],\n          [-87.16851, 37.960085]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [-87.1684431695, 37.9479287543],\n          [-87.161, 37.948]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/out/issue-#1232.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [13.8716, 56.2783],\n          [13.871532142857145, 56.27843571428571]\n        ]\n      },\n      \"bbox\": [13.871532142857145, 56.2783, 13.8716, 56.27843571428571],\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [13.871532142857145, 56.27843571428571],\n          [13.8715, 56.2785],\n          [13.871811111111098, 56.2786]\n        ]\n      },\n      \"bbox\": [13.8715, 56.27843571428571, 13.871811111111098, 56.2786]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [13.871811111111098, 56.2786],\n          [13.8743, 56.2794],\n          [13.8796, 56.2746]\n        ]\n      },\n      \"bbox\": [13.871811111111098, 56.2746, 13.8796, 56.2794]\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [13.8716, 56.2783],\n          [13.8715, 56.2785],\n          [13.8743, 56.2794],\n          [13.8796, 56.2746]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [13.8726, 56.2786],\n            [13.8716, 56.2786],\n            [13.8713, 56.2784],\n            [13.8726, 56.2786]\n          ]\n        ]\n      },\n      \"properties\": {}\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/out/issue-#852.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [9.2202022, 49.1438226],\n          [9.2199532, 49.1439048]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [9.2199532, 49.1439048],\n          [9.2199531, 49.1439048],\n          [9.2196177, 49.1440264]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [9.2202022, 49.1438226],\n          [9.2199531, 49.1439048],\n          [9.2196177, 49.1440264]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.219953175634146, 49.14390480825327]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/out/linestrings.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [126.5625, -32.99023555965107],\n          [118.6090049242457, -27.06938170764152]\n        ]\n      },\n      \"bbox\": [118.6090049242457, -32.99023555965107, 126.5625, -27.06938170764152],\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [118.6090049242457, -27.06938170764152],\n          [113.466796875, -23.24134610238612],\n          [125.93967115660507, -16.495036267214854]\n        ]\n      },\n      \"bbox\": [\n        113.466796875, -27.06938170764152, 125.93967115660507, -16.495036267214854\n      ],\n      \"id\": 1\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [125.93967115660507, -16.495036267214854],\n          [133.06640625, -12.64033830684679],\n          [138.33563930939346, -15.483909474796551]\n        ]\n      },\n      \"bbox\": [\n        125.93967115660507, -16.495036267214854, 138.33563930939346, -12.64033830684679\n      ],\n      \"id\": 2\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [138.33563930939346, -15.483909474796551],\n          [145.9863281, -19.612646582209567]\n        ]\n      },\n      \"bbox\": [138.33563930939346, -19.612646582209567, 145.9863281, -15.483909474796551],\n      \"id\": 3\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [145.9863281, -19.612646582209567],\n          [150.908203125, -22.268764039073968],\n          [145.9863281, -26.10036612107997]\n        ]\n      },\n      \"bbox\": [145.9863281, -26.10036612107997, 150.908203125, -19.612646582209567]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [145.9863281, -26.10036612107997],\n          [136.7578125, -33.28461996888768]\n        ]\n      },\n      \"bbox\": [136.7578125, -33.28461996888768, 145.9863281, -26.10036612107997]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [126.5625, -32.99023555965107],\n          [113.466796875, -23.24134610238612],\n          [133.06640625, -12.64033830684679],\n          [150.908203125, -22.268764039073968],\n          [136.7578125, -33.28461996888768]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [122.78320312499999, -24.126701958681668],\n          [112.8515625, -31.12819929911196],\n          [104.67773437499999, -18.22935133838667],\n          [145.98632812499997, -14.859850400601037],\n          [145.98632812499997, -31.203404950917385]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/out/multi-linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [115.400390625, -27.215556209029675],\n          [122.1240234375, -25.443274612305732],\n          [124.99610755509275, -22.81862718897968]\n        ]\n      },\n      \"bbox\": [\n        115.400390625, -27.215556209029675, 124.99610755509275, -22.81862718897968\n      ],\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [124.99610755509275, -22.81862718897968],\n          [129.2431640625, -18.93746442964186],\n          [130.48965214554212, -22.356195663936738]\n        ]\n      },\n      \"bbox\": [\n        124.99610755509275, -22.81862718897968, 130.48965214554212, -18.93746442964186\n      ],\n      \"id\": 1\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [130.48965214554212, -22.356195663936738],\n          [131.5283203125, -25.20494115356912],\n          [137.98828125, -24.367113562651262],\n          [138.10136044317042, -24.367113562651262]\n        ]\n      },\n      \"bbox\": [\n        130.48965214554212, -25.20494115356912, 138.10136044317042, -22.356195663936738\n      ]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [138.10136044317042, -24.367113562651262],\n          [142.3828125, -24.367113562651262],\n          [144.66796875, -25.878994400196202],\n          [149.326171875, -26.667095801104804]\n        ]\n      },\n      \"bbox\": [\n        138.10136044317042, -26.667095801104804, 149.326171875, -24.367113562651262\n      ]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [115.400390625, -27.215556209029675],\n          [122.1240234375, -25.443274612305732],\n          [129.2431640625, -18.93746442964186],\n          [131.5283203125, -25.20494115356912],\n          [137.98828125, -24.367113562651262],\n          [142.3828125, -24.367113562651262],\n          [144.66796875, -25.878994400196202],\n          [149.326171875, -26.667095801104804]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [120.4541015625, -23.200960808078566],\n            [133.4619140625, -22.105998799750566]\n          ],\n          [\n            [138.603515625, -21.16648385820657],\n            [137.4169921875, -28.729130483430154]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/out/multi-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [115.400390625, -27.215556209029675],\n          [119.2236328, -26.207788245559954]\n        ]\n      },\n      \"bbox\": [115.400390625, -27.215556209029675, 119.2236328, -26.207788245559954],\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [119.2236328, -26.207788245559954],\n          [122.1240234375, -25.443274612305732],\n          [125.9472656, -21.94941361112874]\n        ]\n      },\n      \"bbox\": [119.2236328, -26.207788245559954, 125.9472656, -21.94941361112874],\n      \"id\": 1\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [125.9472656, -21.94941361112874],\n          [126.17741600085314, -21.7390912]\n        ]\n      },\n      \"bbox\": [125.9472656, -21.94941361112874, 126.17741600085314, -21.7390912],\n      \"id\": 2\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [126.17741600085314, -21.7390912],\n          [129.2431640625, -18.93746442964186],\n          [130.26465248702175, -21.7390912]\n        ]\n      },\n      \"bbox\": [126.17741600085314, -21.7390912, 130.26465248702175, -18.93746442964186],\n      \"id\": 3\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [130.26465248702175, -21.7390912],\n          [131.5283203125, -25.20494115356912],\n          [133.7695313, -24.91426626860264]\n        ]\n      },\n      \"bbox\": [130.26465248702175, -25.20494115356912, 133.7695313, -21.7390912],\n      \"id\": 4\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [133.7695313, -24.91426626860264],\n          [136.5380859, -24.55519731241477]\n        ]\n      },\n      \"bbox\": [133.7695313, -24.91426626860264, 136.5380859, -24.55519731241477],\n      \"id\": 5\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [136.5380859, -24.55519731241477],\n          [137.98828125, -24.367113562651262],\n          [138.6474609, -24.367113562651262]\n        ]\n      },\n      \"bbox\": [136.5380859, -24.55519731241477, 138.6474609, -24.367113562651262],\n      \"id\": 6\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [138.6474609, -24.367113562651262],\n          [142.3828125, -24.367113562651262],\n          [144.66796875, -25.878994400196202],\n          [144.7558594, -25.893864242178836]\n        ]\n      },\n      \"bbox\": [138.6474609, -25.893864242178836, 144.7558594, -24.367113562651262]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [144.7558594, -25.893864242178836],\n          [149.326171875, -26.667095801104804]\n        ]\n      },\n      \"bbox\": [144.7558594, -26.667095801104804, 149.326171875, -25.893864242178836]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [115.400390625, -27.215556209029675],\n          [122.1240234375, -25.443274612305732],\n          [129.2431640625, -18.93746442964186],\n          [131.5283203125, -25.20494115356912],\n          [137.98828125, -24.367113562651262],\n          [142.3828125, -24.367113562651262],\n          [144.66796875, -25.878994400196202],\n          [149.326171875, -26.667095801104804]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [119.2236328125, -28.03319784767635],\n              [133.76953125, -28.03319784767635],\n              [133.76953125, -21.739091217718574],\n              [119.2236328125, -21.739091217718574],\n              [119.2236328125, -28.03319784767635]\n            ]\n          ],\n          [\n            [\n              [136.5380859375, -27.449790329784214],\n              [144.755859375, -27.449790329784214],\n              [144.755859375, -21.943045533438166],\n              [136.5380859375, -21.943045533438166],\n              [136.5380859375, -27.449790329784214]\n            ]\n          ],\n          [\n            [\n              [125.94726562499999, -26.391869671769022],\n              [138.6474609375, -26.391869671769022],\n              [138.6474609375, -17.224758206624628],\n              [125.94726562499999, -17.224758206624628],\n              [125.94726562499999, -26.391869671769022]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/out/multiPoint-on-line-1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [116.98242187499999, -32.249974455863295],\n          [127.35351562499999, -29.075375179558346],\n          [122.9150390625, -25.562265014427492],\n          [126.0145569, -24.0665282]\n        ]\n      },\n      \"bbox\": [116.98242187499999, -32.249974455863295, 127.35351562499999, -24.0665282],\n      \"id\": 1\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [126.0145569, -24.0665282],\n          [128.935546875, -22.63429269379352],\n          [124.62890625, -23.483400654325628],\n          [126.5064304, -22.7448982]\n        ]\n      },\n      \"bbox\": [124.62890625, -24.0665282, 128.935546875, -22.63429269379352],\n      \"id\": 2\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [126.5064304, -22.7448982],\n          [129.375, -21.616579336740593],\n          [129.7766018, -21.6115522]\n        ]\n      },\n      \"bbox\": [126.5064304, -22.7448982, 129.7766018, -21.6115522]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [129.7766018, -21.6115522],\n          [135.791015625, -21.53484700204879],\n          [139.833984375, -22.105998799750566]\n        ]\n      },\n      \"bbox\": [129.7766018, -22.105998799750566, 139.833984375, -21.53484700204879]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [116.98242187499999, -32.249974455863295],\n          [127.35351562499999, -29.075375179558346],\n          [122.9150390625, -25.562265014427492],\n          [128.935546875, -22.63429269379352],\n          [124.62890625, -23.483400654325628],\n          [129.375, -21.616579336740593],\n          [135.791015625, -21.53484700204879],\n          [139.833984375, -22.105998799750566]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [126.50643035185698, -22.744898171599424],\n          [126.01455688476562, -24.066528197726857],\n          [129.77660179138184, -21.611552214145394]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/out/multiPoint-on-line-2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [116.98242187499999, -32.249974455863295],\n          [127.35351562499999, -29.075375179558346],\n          [126.6064453, -28.459033]\n        ]\n      },\n      \"bbox\": [116.98242187499999, -32.249974455863295, 127.35351562499999, -28.459033],\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [126.6064453, -28.459033],\n          [125.15625, -27.2546296]\n        ]\n      },\n      \"bbox\": [125.15625, -28.459033, 126.6064453, -27.2546296],\n      \"id\": 1\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [125.15625, -27.2546296],\n          [123.5302734, -26.0765206]\n        ]\n      },\n      \"bbox\": [123.5302734, -27.2546296, 125.15625, -26.0765206]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [123.5302734, -26.0765206],\n          [122.9150390625, -25.562265014427492],\n          [128.935546875, -22.63429269379352],\n          [124.62890625, -23.483400654325628],\n          [129.375, -21.616579336740593],\n          [135.791015625, -21.53484700204879],\n          [139.833984375, -22.105998799750566]\n        ]\n      },\n      \"bbox\": [122.9150390625, -26.0765206, 139.833984375, -21.53484700204879]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [116.98242187499999, -32.249974455863295],\n          [127.35351562499999, -29.075375179558346],\n          [122.9150390625, -25.562265014427492],\n          [128.935546875, -22.63429269379352],\n          [124.62890625, -23.483400654325628],\n          [129.375, -21.616579336740593],\n          [135.791015625, -21.53484700204879],\n          [139.833984375, -22.105998799750566]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [126.60644531250001, -28.459033019728043],\n          [125.15625000000001, -27.254629577800063],\n          [123.53027343749999, -26.07652055985696]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/out/point-on-line-1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [116.98242187499999, -32.249974455863295],\n          [127.35351562499999, -29.075375179558346],\n          [122.9150390625, -25.562265014427492],\n          [128.935546875, -22.63429269379352],\n          [124.62890625, -23.483400654325628],\n          [126.5064304, -22.7448982]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [126.5064304, -22.7448982],\n          [129.375, -21.616579336740593],\n          [135.791015625, -21.53484700204879],\n          [139.833984375, -22.105998799750566]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [116.98242187499999, -32.249974455863295],\n          [127.35351562499999, -29.075375179558346],\n          [122.9150390625, -25.562265014427492],\n          [128.935546875, -22.63429269379352],\n          [124.62890625, -23.483400654325628],\n          [129.375, -21.616579336740593],\n          [135.791015625, -21.53484700204879],\n          [139.833984375, -22.105998799750566]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [126.50643035185698, -22.744898171599424]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/out/point-on-line-2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [116.98242187499999, -32.249974455863295],\n          [127.35351562499999, -29.075375179558346],\n          [122.9150390625, -25.562265014427492],\n          [128.935546875, -22.63429269379352],\n          [127.6116943, -22.8116307]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [127.6116943, -22.8116307],\n          [124.62890625, -23.483400654325628],\n          [129.375, -21.616579336740593],\n          [135.791015625, -21.53484700204879],\n          [139.833984375, -22.105998799750566]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [116.98242187499999, -32.249974455863295],\n          [127.35351562499999, -29.075375179558346],\n          [122.9150390625, -25.562265014427492],\n          [128.935546875, -22.63429269379352],\n          [124.62890625, -23.483400654325628],\n          [129.375, -21.616579336740593],\n          [135.791015625, -21.53484700204879],\n          [139.833984375, -22.105998799750566]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [127.6116943359375, -22.811630707692412]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/out/point-on-line-3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [116.98242187499999, -32.249974455863295],\n          [127.35351562499999, -29.075375179558346],\n          [122.9150390625, -25.562265014427492],\n          [128.935546875, -22.63429269379352],\n          [124.62890625, -23.483400654325628],\n          [129.375, -21.616579336740593],\n          [135.791015625, -21.53484700204879],\n          [139.833984375, -22.105998799750566]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [116.98242187499999, -32.249974455863295],\n          [127.35351562499999, -29.075375179558346],\n          [122.9150390625, -25.562265014427492],\n          [128.935546875, -22.63429269379352],\n          [124.62890625, -23.483400654325628],\n          [129.375, -21.616579336740593],\n          [135.791015625, -21.53484700204879],\n          [139.833984375, -22.105998799750566]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [115.79589843749999, -33.760882000869174]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/out/polygon-with-holes.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [115.5887281750802, -33.66501705609563],\n          [113.99414062499999, -34.45221847282653]\n        ]\n      },\n      \"bbox\": [\n        113.99414062499999, -34.45221847282653, 115.5887281750802, -33.66501705609563\n      ],\n      \"id\": 0\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [125.27477069463129, -28.883300057538364],\n          [115.5887281750802, -33.66501705609563]\n        ]\n      },\n      \"bbox\": [\n        115.5887281750802, -33.66501705609563, 125.27477069463129, -28.883300057538364\n      ],\n      \"id\": 1\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [108.10546875, -24.607069137709694],\n          [116.103515625, -16.04581345375217],\n          [123.3984375, -14.689881366618762],\n          [123.80984529019764, -14.850144611823424]\n        ]\n      },\n      \"bbox\": [\n        108.10546875, -24.607069137709694, 123.80984529019764, -14.689881366618762\n      ],\n      \"id\": 2\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [123.80984529019764, -14.850144611823424],\n          [127.529296875, -16.299051014581817],\n          [131.8707236511523, -19.47488830290292]\n        ]\n      },\n      \"bbox\": [\n        123.80984529019764, -19.47488830290292, 131.8707236511523, -14.850144611823424\n      ],\n      \"id\": 3\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [144.62835845465096, -31.052934],\n          [137.724609375, -28.14950321154457],\n          [127.705078125, -27.68352808378776],\n          [125.27477069463129, -28.883300057538364]\n        ]\n      },\n      \"bbox\": [125.27477069463129, -31.052934, 144.62835845465096, -27.68352808378776],\n      \"id\": 4\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [131.8707236511523, -19.47488830290292],\n          [132.890625, -20.2209657795223],\n          [137.548828125, -22.67484735118852],\n          [144.05273437499997, -23.805449612314614],\n          [144.87133130139694, -24.083906137859618]\n        ]\n      },\n      \"bbox\": [\n        131.8707236511523, -24.083906137859618, 144.87133130139694, -19.47488830290292\n      ],\n      \"id\": 5\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [144.87133130139694, -24.083906137859618],\n          [150.380859375, -25.95804467331783],\n          [154.7611122904153, -29.8195405571525]\n        ]\n      },\n      \"bbox\": [\n        144.87133130139694, -29.8195405571525, 154.7611122904153, -24.083906137859618\n      ],\n      \"id\": 6\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [154.7611122904153, -29.8195405571525],\n          [155.302734375, -30.29701788337204],\n          [160.3125, -37.64903402157864],\n          [152.83750336551705, -34.50536018265984]\n        ]\n      },\n      \"bbox\": [152.83750336551705, -37.64903402157864, 160.3125, -29.8195405571525]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [152.83750336551705, -34.50536018265984],\n          [144.62835845465096, -31.052934]\n        ]\n      },\n      \"bbox\": [144.62835845465096, -34.50536018265984, 152.83750336551705, -31.052934]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [108.10546875, -24.607069137709694],\n          [116.103515625, -16.04581345375217],\n          [123.3984375, -14.689881366618762],\n          [127.529296875, -16.299051014581817],\n          [132.890625, -20.2209657795223],\n          [137.548828125, -22.67484735118852],\n          [144.05273437499997, -23.805449612314614],\n          [150.380859375, -25.95804467331783],\n          [155.302734375, -30.29701788337204],\n          [160.3125, -37.64903402157864],\n          [137.724609375, -28.14950321154457],\n          [127.705078125, -27.68352808378776],\n          [113.99414062499999, -34.45221847282653]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127.265625, -12.897489183755892],\n            [118.125, -18.062312304546715],\n            [113.818359375, -22.67484735118852],\n            [116.01562499999999, -36.3151251474805],\n            [123.3984375, -36.10237644873643],\n            [133.41796874999997, -34.234512362369856],\n            [141.240234375, -38.13455657705412],\n            [151.34765625, -38.13455657705412],\n            [155.478515625, -28.071980301779845],\n            [150.1171875, -17.560246503294888],\n            [142.822265625, -12.039320557540572],\n            [137.373046875, -11.60919340793894],\n            [127.265625, -12.897489183755892]\n          ],\n          [\n            [135.966796875, -18.729501999072138],\n            [142.20703125, -18.81271785640776],\n            [145.8984375, -26.11598592533351],\n            [144.84375, -31.05293398570514],\n            [139.74609375, -31.05293398570514],\n            [135.52734375, -29.993002284551064],\n            [127.61718749999999, -29.993002284551064],\n            [123.3984375, -27.994401411046148],\n            [123.3984375, -24.046463999666567],\n            [125.5078125, -20.632784250388013],\n            [135.966796875, -18.729501999072138]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test/out/polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [132.24601154296846, -33.23618973320634],\n          [131.66015625, -37.85750715625203]\n        ]\n      },\n      \"bbox\": [131.66015625, -37.85750715625203, 132.24601154296846, -33.23618973320634],\n      \"id\": 1\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [133.76953125, -5.44102230371796],\n          [133.38557423512307, -13.837223632933568]\n        ]\n      },\n      \"bbox\": [133.38557423512307, -13.837223632933568, 133.76953125, -5.44102230371796]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 10\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [133.38557423512307, -13.837223632933568],\n          [133.2421875, -16.97274101999901],\n          [135.87890625, -20.2209657795223],\n          [137.548828125, -24.607069137709694],\n          [132.802734375, -28.84467368077178],\n          [132.24601154296846, -33.23618973320634]\n        ]\n      },\n      \"bbox\": [132.24601154296846, -33.23618973320634, 137.548828125, -13.837223632933568]\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [133.76953125, -5.44102230371796],\n          [133.2421875, -16.97274101999901],\n          [135.87890625, -20.2209657795223],\n          [137.548828125, -24.607069137709694],\n          [132.802734375, -28.84467368077178],\n          [131.66015625, -37.85750715625203]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [115.13671875, -21.616579336740593],\n            [116.98242187499999, -34.66935854524544],\n            [128.32031249999997, -31.42866311735861],\n            [142.734375, -38.06539235133247],\n            [150.908203125, -22.268764039073968],\n            [135.791015625, -12.811801316582619],\n            [115.13671875, -21.616579336740593]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-split/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { featureEach } from \"@turf/meta\";\nimport {\n  point,\n  lineString,\n  multiPoint,\n  polygon,\n  featureCollection,\n  round,\n} from \"@turf/helpers\";\nimport { getCoords } from \"@turf/invariant\";\nimport { lineSplit } from \"./index.js\";\nimport type {\n  Feature,\n  FeatureCollection,\n  LineString,\n  MultiLineString,\n  MultiPoint,\n  MultiPolygon,\n  Point,\n  Polygon,\n} from \"geojson\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nlet fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename) as FeatureCollection,\n  };\n});\n// fixtures = fixtures.filter(({ name }) => name === \"issue-#1075\");\n\ntest(\"turf-line-split\", (t) => {\n  for (const { filename, name, geojson } of fixtures) {\n    const line = geojson.features[0] as Feature<LineString>;\n    const splitter = geojson.features[1] as Feature<\n      Point | MultiPoint | LineString | MultiLineString | Polygon | MultiPolygon\n    >;\n    const results = colorize(lineSplit(line, splitter));\n    featureEach(geojson, (feature) => results.features.push(feature));\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEquals(results, loadJsonFileSync(directories.out + filename), name);\n  }\n  t.end();\n});\n\ntest(\"turf-line-split -- lines should split the same feature 1 with 2 as 2 with 1\", (t) => {\n  const featureOne = lineString([\n    [114.58215786065353825, -14.82470576519326144],\n    [137.21678649707752129, -16.71692980416107588],\n  ]);\n  const featureTwo = lineString([\n    [119.1412061636556956, -19.83670052919270788],\n    [133.06640625, -12.64033830684678961],\n  ]);\n\n  const resultsOne = lineSplit(featureOne, featureTwo);\n  const resultsTwo = lineSplit(featureTwo, featureOne);\n\n  const midCoordOne = getCoords(resultsOne.features[0])[1];\n  const midCoordTwo = getCoords(resultsTwo.features[1])[0];\n\n  // Round precision to 6 decimals\n  midCoordOne[0] = round(midCoordOne[0], 6);\n  midCoordOne[1] = round(midCoordOne[1], 6);\n  midCoordTwo[0] = round(midCoordTwo[0], 6);\n  midCoordTwo[1] = round(midCoordTwo[1], 6);\n  t.deepEquals(\n    midCoordOne,\n    midCoordTwo,\n    \"Splits were made in different locations\"\n  );\n  t.end();\n});\n\ntest(\"turf-line-split -- throws\", (t) => {\n  const pt = point([9, 50]);\n  const line = lineString([\n    [7, 50],\n    [8, 50],\n    [9, 50],\n  ]);\n\n  // @ts-expect-error passing null for line\n  t.throws(() => lineSplit(null, pt), \"<geojson> is required\");\n  // @ts-expect-error passing null for splitter\n  t.throws(() => lineSplit(line, null), \"<geojson> is required\");\n  // @ts-expect-error passing wrong type for line\n  t.throws(() => lineSplit(pt, pt), \"<line> must be LineString\");\n  t.throws(\n    // @ts-expect-error passing wrong type for splitter\n    () => lineSplit(line, featureCollection([pt, line])),\n    \"<splitter> cannot be a FeatureCollection\"\n  );\n  t.end();\n});\n\ntest(\"turf-line-split -- splitter exactly on end of line\", (t) => {\n  const pt = point([9, 50]);\n  const line = lineString([\n    [7, 50],\n    [8, 50],\n    [9, 50],\n  ]);\n  const features = lineSplit(line, pt).features;\n\n  t.deepEqual(features, [line], \"should only contain 1 line of 3 vertices\");\n  t.end();\n});\n\ntest(\"turf-line-split -- lines should only contain 2 vertices #688\", (t) => {\n  const middlePoint = point([8, 50]);\n  const line = lineString([\n    [7, 50],\n    [8, 50],\n    [9, 50],\n  ]);\n  const [line1, line2] = lineSplit(line, middlePoint).features;\n\n  t.deepEqual(\n    line1,\n    lineString([\n      [7, 50],\n      [8, 50],\n    ]),\n    \"line1 should have 2 vertices\"\n  );\n  t.deepEqual(\n    line2,\n    lineString([\n      [8, 50],\n      [9, 50],\n    ]),\n    \"line2 should have 2 vertices\"\n  );\n  t.end();\n});\n\ntest(\"turf-line-split -- precision issue #852\", (t) => {\n  const line = lineString([\n    [9.2202022, 49.1438226],\n    [9.2199531, 49.1439048],\n    [9.2196177, 49.1440264],\n  ]);\n  const startPoint = point([9.2202022, 49.1438226]);\n  const middlePoint = point([9.2199531, 49.1439048]);\n  const endPoint = point([9.2196177, 49.1440264]);\n  const [line1, line2] = lineSplit(line, middlePoint).features;\n\n  t.deepEqual(\n    line1,\n    lineString([\n      [9.2202022, 49.1438226],\n      [9.2199531, 49.1439048],\n    ]),\n    \"middlePoint: line1 should have 2 vertices\"\n  );\n  t.deepEqual(\n    line2,\n    lineString([\n      [9.2199531, 49.1439048],\n      [9.2196177, 49.1440264],\n    ]),\n    \"middlePoint: line2 should have 2 vertices\"\n  );\n  t.deepEqual(\n    lineSplit(line, startPoint).features,\n    [line],\n    \"startPoint: should only contain 1 line of 3 vertices\"\n  );\n  t.deepEqual(\n    lineSplit(line, endPoint).features,\n    [line],\n    \"endPoint: should only contain 1 line of 3 vertices\"\n  );\n  t.end();\n});\n\ntest(\"turf-line-split -- prevent input mutation\", (t) => {\n  const line = lineString([\n    [9.2202022, 49.1438226],\n    [9.2199531, 49.1439048],\n    [9.2196177, 49.1440264],\n  ]);\n  const lineBefore = JSON.parse(JSON.stringify(line));\n  lineSplit(line, point([9.2196177, 49.1440264]));\n\n  t.deepEqual(line, lineBefore, \"line should be the same\");\n  t.end();\n});\n\ntest(\"turf-line-split -- issue #1075\", (t) => {\n  const line = lineString([\n    [-87.168433, 37.946093],\n    [-87.16851, 37.960085],\n  ]);\n  const splitter = multiPoint([\n    [-87.168446, 37.947929],\n    [-87.168445, 37.948301],\n  ]);\n  const split = lineSplit(line, splitter);\n  t.assert(split);\n  t.end();\n});\n\ntest(\"lineSplit - incorrect split - issue #1075\", (t) => {\n  let line, splitter, split;\n\n  // Example sourced from https://github.com/Turfjs/turf/issues/1232#issue-290515769\n  line = lineString([\n    [13.8716, 56.2783],\n    [13.8715, 56.2785],\n    [13.8743, 56.2794],\n    [13.8796, 56.2746],\n  ]);\n\n  splitter = polygon([\n    [\n      [13.8726, 56.2786],\n      [13.8716, 56.2786],\n      [13.8713, 56.2784],\n      [13.8726, 56.2786],\n    ],\n  ]);\n\n  split = lineSplit(line, splitter);\n  t.equal(split.features.length, 3, \"Line split into 3 pieces example 1\");\n\n  // Example sourced from https://github.com/Turfjs/turf/issues/1232#issuecomment-361970429\n  line = lineString([\n    [10.424716, 50.024888],\n    [10.417643, 50.029512],\n  ]);\n\n  splitter = polygon([\n    [\n      [10.41993839, 50.0301184],\n      [10.42587086, 50.02630702],\n      [10.41993839, 50.02249594],\n      [10.41400592, 50.02630702],\n      [10.41993839, 50.0301184],\n    ],\n  ]);\n\n  split = lineSplit(line, splitter);\n  t.equal(split.features.length, 3, \"Line split into 3 pieces example 2\");\n\n  // Example sourced from https://github.com/Turfjs/turf/issues/1232#issuecomment-2033181347\n  line = lineString([\n    [-111.570323, 49.587462],\n    [-111.570824, 49.587462],\n    [-111.571218, 49.587212],\n    [-111.571075, 49.587212],\n    [-111.566432, 49.584359],\n  ]);\n\n  splitter = lineString([\n    [-111.57071881384209, 49.58746705929172],\n    [-111.57072743959235, 49.587462],\n    [-111.57106608768505, 49.58726337153985],\n    [-111.57109709453526, 49.587212],\n    [-111.5711022620136, 49.58720343862349],\n  ]);\n\n  split = lineSplit(line, splitter);\n  t.equal(split.features.length, 3, \"Line split into 3 pieces example 3\");\n\n  // Example sourced from https://github.com/Turfjs/turf/issues/1232#issuecomment-2231554080\n  line = lineString([\n    [0, 44],\n    [25, 38],\n    [27, 40],\n    [0, 62],\n  ]);\n\n  splitter = polygon([\n    [\n      [0, 20],\n      [42, 20],\n      [42, 39],\n      [28, 39],\n      [0, 52],\n      [0, 20],\n    ],\n  ]);\n\n  split = lineSplit(line, splitter);\n\n  t.equal(split.features.length, 2, \"Line split into 2 pieces example 4\");\n  t.end();\n});\n\ntest(\"lineSplit - wavy lines - issue #2288\", (t) => {\n  // Example sourced from https://github.com/Turfjs/turf/issues/2288#issuecomment-1125555752\n  const line = lineString([\n    [-122.7779211637529, 38.46929673131614],\n    [-122.78647173567292, 38.46208580491829],\n  ]);\n\n  const splitter = polygon([\n    [\n      [-122.784210824, 38.46577859000006, 0],\n      [-122.783497375, 38.46577665500005, 0],\n      [-122.78349775899989, 38.46574340700003, 0],\n      [-122.78337219700002, 38.46574404700004, 0],\n      [-122.7833724819999, 38.46570876200008, 0],\n      [-122.783186362, 38.46571185100002, 0],\n      [-122.78318417300001, 38.46569283300004, 0],\n      [-122.782172859, 38.46568571000005, 0],\n      [-122.7821622549999, 38.46587288700003, 0],\n      [-122.783391339, 38.465877436, 0],\n      [-122.78339171499998, 38.46589273900003, 0],\n      [-122.78420487999992, 38.46590174800005, 0],\n      [-122.784210824, 38.46577859000006, 0],\n    ],\n  ]);\n\n  const split = lineSplit(line, splitter);\n\n  t.equal(split.features.length, 3, \"Line split into 3 pieces\");\n  t.end();\n});\n\n/**\n * Colorize FeatureCollection\n *\n * @param {FeatureCollection|Feature<any>} geojson Feature or FeatureCollection\n * @returns {FeatureCollection<any>} colorized FeatureCollection\n */\nfunction colorize(geojson: FeatureCollection) {\n  const results: Feature[] = [];\n  featureEach(geojson, (feature, index) => {\n    const r = index % 2 === 0 ? \"F\" : \"0\";\n    const g = \"0\";\n    const b = index % 2 === 0 ? \"0\" : \"F\";\n    feature.properties = Object.assign(\n      {\n        stroke: \"#\" + r + g + b,\n        \"stroke-width\": 10,\n      },\n      feature.properties\n    );\n    results.push(feature);\n  });\n  return featureCollection(results);\n}\n"
  },
  {
    "path": "packages/turf-line-split/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-line-to-polygon/README.md",
    "content": "# @turf/line-to-polygon\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## lineToPolygon\n\nConverts (Multi)LineString(s) to Polygon(s).\n\n### Parameters\n\n*   `lines` **([FeatureCollection][1] | [Feature][2]<([LineString][3] | [MultiLineString][4])>)** Features to convert\n*   `options` **[Object][5]** Optional parameters (optional, default `{}`)\n\n    *   `options.properties` **[Object][5]** translates GeoJSON properties to Feature (optional, default `{}`)\n    *   `options.autoComplete` **[boolean][6]** auto complete linestrings (matches first & last coordinates) (optional, default `true`)\n    *   `options.orderCoords` **[boolean][6]** sorts linestrings to place outer ring at the first position of the coordinates (optional, default `true`)\n    *   `options.mutate` **[boolean][6]** mutate the original linestring using autoComplete (matches first & last coordinates) (optional, default `false`)\n\n### Examples\n\n```javascript\nvar line = turf.lineString([[125, -30], [145, -30], [145, -20], [125, -20], [125, -30]]);\n\nvar polygon = turf.lineToPolygon(line);\n\n//addToMap\nvar addToMap = [polygon];\n```\n\nReturns **[Feature][2]<([Polygon][7] | [MultiPolygon][8])>** converted to Polygons\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.5\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[8]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/line-to-polygon\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-line-to-polygon/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { lineToPolygon } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nlet fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n// fixtures = fixtures.filter(fixture => fixture.name === 'multi-linestrings-with-holes');\n\n/**\n * Benchmark Results\n *\n * collection-linestring x 2,337,816 ops/sec ±3.08% (86 runs sampled)\n * geometry-linestring x 6,574,088 ops/sec ±3.62% (83 runs sampled)\n * linestring-incomplete x 6,768,527 ops/sec ±3.60% (84 runs sampled)\n * linestring x 6,752,969 ops/sec ±1.94% (84 runs sampled)\n * multi-linestring-incomplete x 808,779 ops/sec ±8.86% (80 runs sampled)\n * multi-linestring-outer-ring-middle-position x 664,121 ops/sec ±1.52% (83 runs sampled)\n * multi-linestring-with-hole x 1,018,657 ops/sec ±1.35% (86 runs sampled)\n * multi-linestrings-with-holes x 421,758 ops/sec ±0.92% (88 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-linestring-to-polygon\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => lineToPolygon(geojson));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-line-to-polygon/index.ts",
    "content": "import {\n  Feature,\n  FeatureCollection,\n  MultiLineString,\n  LineString,\n  GeoJsonProperties,\n  BBox,\n  Position,\n} from \"geojson\";\nimport { bbox as turfBBox } from \"@turf/bbox\";\nimport { getCoords, getGeom } from \"@turf/invariant\";\nimport { polygon, multiPolygon, lineString } from \"@turf/helpers\";\nimport { clone } from \"@turf/clone\";\n\n/**\n * Converts (Multi)LineString(s) to Polygon(s).\n *\n * @function\n * @param {FeatureCollection|Feature<LineString|MultiLineString>} lines Features to convert\n * @param {Object} [options={}] Optional parameters\n * @param {Object} [options.properties={}] translates GeoJSON properties to Feature\n * @param {boolean} [options.autoComplete=true] auto complete linestrings (matches first & last coordinates)\n * @param {boolean} [options.orderCoords=true] sorts linestrings to place outer ring at the first position of the coordinates\n * @param {boolean} [options.mutate=false] mutate the original linestring using autoComplete (matches first & last coordinates)\n * @returns {Feature<Polygon|MultiPolygon>} converted to Polygons\n * @example\n * var line = turf.lineString([[125, -30], [145, -30], [145, -20], [125, -20], [125, -30]]);\n *\n * var polygon = turf.lineToPolygon(line);\n *\n * //addToMap\n * var addToMap = [polygon];\n */\nfunction lineToPolygon<G extends LineString | MultiLineString>(\n  lines: Feature<G> | FeatureCollection<G> | G,\n  options: {\n    properties?: GeoJsonProperties;\n    autoComplete?: boolean;\n    orderCoords?: boolean;\n    mutate?: boolean;\n  } = {}\n) {\n  // Optional parameters\n  var properties = options.properties;\n  var autoComplete = options.autoComplete ?? true;\n  var orderCoords = options.orderCoords ?? true;\n  var mutate = options.mutate ?? false;\n\n  if (!mutate) {\n    lines = clone(lines);\n  }\n\n  switch (lines.type) {\n    case \"FeatureCollection\":\n      var coords: number[][][][] = [];\n      lines.features.forEach(function (line) {\n        coords.push(\n          getCoords(lineStringToPolygon(line, {}, autoComplete, orderCoords))\n        );\n      });\n      return multiPolygon(coords, properties);\n    default:\n      return lineStringToPolygon(lines, properties, autoComplete, orderCoords);\n  }\n}\n\n/**\n * LineString to Polygon\n *\n * @private\n * @param {Feature<LineString|MultiLineString>} line line\n * @param {Object} [properties] translates GeoJSON properties to Feature\n * @param {boolean} [autoComplete=true] auto complete linestrings\n * @param {boolean} [orderCoords=true] sorts linestrings to place outer ring at the first position of the coordinates\n * @returns {Feature<Polygon>} line converted to Polygon\n */\nfunction lineStringToPolygon<G extends LineString | MultiLineString>(\n  line: Feature<G> | G,\n  properties: GeoJsonProperties | undefined,\n  autoComplete: boolean,\n  orderCoords: boolean\n) {\n  properties = properties\n    ? properties\n    : line.type === \"Feature\"\n      ? line.properties\n      : {};\n  var geom = getGeom(line);\n  var coords: Position[] | Position[][] = geom.coordinates;\n  var type = geom.type;\n\n  if (!coords.length) throw new Error(\"line must contain coordinates\");\n\n  switch (type) {\n    case \"LineString\":\n      if (autoComplete) coords = autoCompleteCoords(coords as Position[]);\n      return polygon([coords as Position[]], properties);\n    case \"MultiLineString\":\n      var multiCoords: number[][][] = [];\n      var largestArea = 0;\n\n      (coords as Position[][]).forEach(function (coord) {\n        if (autoComplete) coord = autoCompleteCoords(coord);\n\n        // Largest LineString to be placed in the first position of the coordinates array\n        if (orderCoords) {\n          var area = calculateArea(turfBBox(lineString(coord)));\n          if (area > largestArea) {\n            multiCoords.unshift(coord);\n            largestArea = area;\n          } else multiCoords.push(coord);\n        } else {\n          multiCoords.push(coord);\n        }\n      });\n      return polygon(multiCoords, properties);\n    default:\n      throw new Error(\"geometry type \" + type + \" is not supported\");\n  }\n}\n\n/**\n * Auto Complete Coords - matches first & last coordinates\n *\n * @private\n * @param {Array<Array<number>>} coords Coordinates\n * @returns {Array<Array<number>>} auto completed coordinates\n */\nfunction autoCompleteCoords(coords: Position[]) {\n  var first = coords[0];\n  var x1 = first[0];\n  var y1 = first[1];\n  var last = coords[coords.length - 1];\n  var x2 = last[0];\n  var y2 = last[1];\n  if (x1 !== x2 || y1 !== y2) {\n    coords.push(first);\n  }\n  return coords;\n}\n\n/**\n * area - quick approximate area calculation (used to sort)\n *\n * @private\n * @param {Array<number>} bbox BBox [west, south, east, north]\n * @returns {number} very quick area calculation\n */\nfunction calculateArea(bbox: BBox) {\n  var west = bbox[0];\n  var south = bbox[1];\n  var east = bbox[2];\n  var north = bbox[3];\n  return Math.abs(west - east) * Math.abs(south - north);\n}\n\nexport { lineToPolygon };\nexport default lineToPolygon;\n"
  },
  {
    "path": "packages/turf-line-to-polygon/package.json",
    "content": "{\n  \"name\": \"@turf/line-to-polygon\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Converts line(s) to polygon(s).\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gis\",\n    \"polygon\",\n    \"linestring\",\n    \"line\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/clone\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/in/collection-linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [102, 2],\n          [103, 2],\n          [103, 3],\n          [102, 3],\n          [102, 2]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [100, 0],\n          [101, 0],\n          [101, 1],\n          [100, 1],\n          [100, 0]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/in/geometry-linestring.geojson",
    "content": "{\n  \"type\": \"LineString\",\n  \"coordinates\": [\n    [-2.275543, 53.464547],\n    [-2.275543, 53.489271],\n    [-2.215118, 53.489271],\n    [-2.215118, 53.464547],\n    [-2.275543, 53.464547]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/in/linestring-incomplete.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F00\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [131.0009765625, -30.939924331023455],\n      [125.46386718749999, -29.878755346037963],\n      [121.77246093750001, -26.07652055985696],\n      [121.5087890625, -21.902277966668624],\n      [127.79296875, -16.1724728083975],\n      [133.154296875, -14.944784875088372],\n      [137.4169921875, -20.097206227083888],\n      [138.515625, -26.82407078047018]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/in/linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F00\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-2.275543, 53.464547],\n      [-2.275543, 53.489271],\n      [-2.215118, 53.489271],\n      [-2.215118, 53.464547],\n      [-2.275543, 53.464547]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/in/linestrings-to-multipolygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#008000\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [33.4149169921875, 48.28684818710906],\n          [32.816162109375, 48.42191010942875],\n          [32.783203125, 48.09642606004488],\n          [33.3270263671875, 47.931066347509784],\n          [33.4149169921875, 48.28684818710906]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff8000\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [35.244140625, 47.15984001304432],\n          [35.17822265625, 46.37725420510028],\n          [36.40869140625, 46.240651955001695],\n          [37.02392578125, 46.9502622421856],\n          [35.244140625, 47.15984001304432]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff0000\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [33.398, 46.867],\n            [34.057, 46.867],\n            [34.057, 47.197],\n            [33.398, 47.197],\n            [33.398, 46.867]\n          ],\n          [\n            [33.42041015625, 46.164614496897094],\n            [34.12353515625, 46.58906908309182],\n            [34.73876953125, 46.73233101286786],\n            [35.013427734375, 47.34626718205302],\n            [34.07958984374999, 47.73193447949174],\n            [32.947998046875, 47.338822694822],\n            [32.354736328125, 46.73986059969267],\n            [32.54150390625, 46.240651955001695],\n            [33.42041015625, 46.164614496897094]\n          ],\n          [\n            [32.969, 46.46],\n            [33.321, 46.46],\n            [33.321, 46.672],\n            [32.969, 46.672],\n            [32.969, 46.46]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0080ff\",\n        \"stroke-width\": 6,\n        \"stroke-opacity\": 1\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [34.178466796875, 48.436489955944154],\n            [35.101318359375, 47.57652571374621],\n            [37.3974609375, 47.48008846346322],\n            [38.133544921875, 48.777912755501845],\n            [35.92529296875, 49.930008124606886],\n            [34.178466796875, 48.436489955944154]\n          ],\n          [\n            [34.80468749999999, 48.29050321714062],\n            [35.04638671874999, 47.938426929481054],\n            [35.760498046875, 47.95314495015594],\n            [35.343017578125, 48.32703913063476],\n            [34.80468749999999, 48.29050321714062]\n          ],\n          [\n            [35.99395751953125, 47.83528342275264],\n            [35.93902587890624, 47.73193447949174],\n            [36.15325927734375, 47.65428791076272],\n            [35.99395751953125, 47.83528342275264]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/in/multi-linestring-incomplete.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F00\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [129.28710937499997, -31.57853542647337],\n        [120.05859375, -26.35249785815401],\n        [120.05859375, -19.72534224805787],\n        [124.62890625, -17.056784609942543],\n        [131.572265625, -17.224758206624628],\n        [133.330078125, -23.644524198573677]\n      ],\n      [\n        [126.2548828125, -20.427012814257385],\n        [123.662109375, -22.512556954051437],\n        [124.1455078125, -25.36388227274024],\n        [126.9580078125, -25.799891182088306],\n        [128.5400390625, -24.166802085303225],\n        [127.83691406249999, -21.207458730482642],\n        [127.265625, -20.756113874762068]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/in/multi-linestring-nested.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [102.359619140625, 33.916013113401696],\n            [103.65600585937499, 33.916013113401696],\n            [103.65600585937499, 34.97600151317588],\n            [102.359619140625, 34.97600151317588],\n            [102.359619140625, 33.916013113401696]\n          ],\n          [\n            [101.18408203124999, 32.95336814579932],\n            [101.18408203124999, 35.93354064249312],\n            [104.952392578125, 35.93354064249312],\n            [104.952392578125, 32.95336814579932],\n            [101.18408203124999, 32.95336814579932]\n          ],\n          [\n            [101.612548828125, 33.330528249028085],\n            [104.556884765625, 33.330528249028085],\n            [104.556884765625, 35.46961797120201],\n            [101.612548828125, 35.46961797120201],\n            [101.612548828125, 33.330528249028085]\n          ],\n          [\n            [106.4794921875, 32.7872745269555],\n            [110.687255859375, 32.7872745269555],\n            [110.687255859375, 36.83566824724438],\n            [106.4794921875, 36.83566824724438],\n            [106.4794921875, 32.7872745269555]\n          ],\n          [\n            [106.06201171875, 32.47269502206151],\n            [111.86279296875, 32.47269502206151],\n            [111.86279296875, 37.33522435930639],\n            [106.06201171875, 37.33522435930639],\n            [106.06201171875, 32.47269502206151]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/in/multi-linestring-nested2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F0F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [115.927734375, -34.016241889667015],\n            [134.560546875, -34.016241889667015],\n            [134.560546875, -16.8886597873816],\n            [115.927734375, -16.8886597873816],\n            [115.927734375, -34.016241889667015]\n          ],\n          [\n            [118.65234374999999, -30.90222470517144],\n            [131.484375, -30.90222470517144],\n            [131.484375, -19.808054128088575],\n            [118.65234374999999, -19.808054128088575],\n            [118.65234374999999, -30.90222470517144]\n          ],\n          [\n            [120.9375, -28.998531814051795],\n            [129.7265625, -28.998531814051795],\n            [129.7265625, -22.105998799750566],\n            [120.9375, -22.105998799750566],\n            [120.9375, -28.998531814051795]\n          ],\n          [\n            [123.48632812499999, -27.137368359795584],\n            [127.44140625, -27.137368359795584],\n            [127.44140625, -24.126701958681668],\n            [123.48632812499999, -24.126701958681668],\n            [123.48632812499999, -27.137368359795584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F0F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [139.21874999999997, -36.10237644873643],\n            [158.73046875, -36.10237644873643],\n            [158.73046875, -17.476432197195518],\n            [139.21874999999997, -17.476432197195518],\n            [139.21874999999997, -36.10237644873643]\n          ],\n          [\n            [142.3828125, -34.016241889667015],\n            [155.91796874999997, -34.016241889667015],\n            [155.91796874999997, -20.13847031245114],\n            [142.3828125, -20.13847031245114],\n            [142.3828125, -34.016241889667015]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/in/multi-linestring-outer-ring-middle-position.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [33.398, 46.867],\n        [34.057, 46.867],\n        [34.057, 47.197],\n        [33.398, 47.197],\n        [33.398, 46.867]\n      ],\n      [\n        [33.42041015625, 46.164614496897094],\n        [34.12353515625, 46.58906908309182],\n        [34.73876953125, 46.73233101286786],\n        [35.013427734375, 47.34626718205302],\n        [34.07958984374999, 47.73193447949174],\n        [32.947998046875, 47.338822694822],\n        [32.354736328125, 46.73986059969267],\n        [32.54150390625, 46.240651955001695],\n        [33.42041015625, 46.164614496897094]\n      ],\n      [\n        [32.969, 46.46],\n        [33.321, 46.46],\n        [33.321, 46.672],\n        [32.969, 46.672],\n        [32.969, 46.46]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/in/multi-linestring-with-hole.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F00\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [100, 0],\n        [101, 0],\n        [101, 1],\n        [100, 1],\n        [100, 0]\n      ],\n      [\n        [100.2, 0.2],\n        [100.8, 0.2],\n        [100.8, 0.8],\n        [100.2, 0.8],\n        [100.2, 0.2]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/in/multi-linestrings-nested.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F0F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [115.927734375, -34.016241889667015],\n            [134.560546875, -34.016241889667015],\n            [134.560546875, -16.8886597873816],\n            [115.927734375, -16.8886597873816],\n            [115.927734375, -34.016241889667015]\n          ],\n          [\n            [118.65234374999999, -30.90222470517144],\n            [131.484375, -30.90222470517144],\n            [131.484375, -19.808054128088575],\n            [118.65234374999999, -19.808054128088575],\n            [118.65234374999999, -30.90222470517144]\n          ],\n          [\n            [120.9375, -28.998531814051795],\n            [129.7265625, -28.998531814051795],\n            [129.7265625, -22.105998799750566],\n            [120.9375, -22.105998799750566],\n            [120.9375, -28.998531814051795]\n          ],\n          [\n            [123.48632812499999, -27.137368359795584],\n            [127.44140625, -27.137368359795584],\n            [127.44140625, -24.126701958681668],\n            [123.48632812499999, -24.126701958681668],\n            [123.48632812499999, -27.137368359795584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F0F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [139.21874999999997, -36.10237644873643],\n            [158.73046875, -36.10237644873643],\n            [158.73046875, -17.476432197195518],\n            [139.21874999999997, -17.476432197195518],\n            [139.21874999999997, -36.10237644873643]\n          ],\n          [\n            [142.3828125, -34.016241889667015],\n            [155.91796874999997, -34.016241889667015],\n            [155.91796874999997, -20.13847031245114],\n            [142.3828125, -20.13847031245114],\n            [142.3828125, -34.016241889667015]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/in/multi-linestrings-outer-doughnut.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F0F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [115.927734375, -34.016241889667015],\n            [134.560546875, -34.016241889667015],\n            [134.560546875, -16.8886597873816],\n            [115.927734375, -16.8886597873816],\n            [115.927734375, -34.016241889667015]\n          ],\n          [\n            [118.65234374999999, -30.90222470517144],\n            [131.484375, -30.90222470517144],\n            [131.484375, -19.808054128088575],\n            [118.65234374999999, -19.808054128088575],\n            [118.65234374999999, -30.90222470517144]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F0F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [120.9375, -28.998531814051795],\n            [129.7265625, -28.998531814051795],\n            [129.7265625, -22.105998799750566],\n            [120.9375, -22.105998799750566],\n            [120.9375, -28.998531814051795]\n          ],\n          [\n            [123.48632812499999, -27.137368359795584],\n            [127.44140625, -27.137368359795584],\n            [127.44140625, -24.126701958681668],\n            [123.48632812499999, -24.126701958681668],\n            [123.48632812499999, -27.137368359795584]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/in/multi-linestrings-with-holes.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [102, 2],\n            [103, 2],\n            [103, 3],\n            [102, 3],\n            [102, 2]\n          ],\n          [\n            [102.227783203125, 2.191238104506552],\n            [102.227783203125, 2.8223442468940902],\n            [102.843017578125, 2.8223442468940902],\n            [102.843017578125, 2.191238104506552],\n            [102.227783203125, 2.191238104506552]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F80\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [100, 0],\n            [101, 0],\n            [101, 1],\n            [100, 1],\n            [100, 0]\n          ],\n          [\n            [100.206298828125, 0.2526847277643438],\n            [100.206298828125, 0.7909904981540058],\n            [100.8050537109375, 0.7909904981540058],\n            [100.8050537109375, 0.2526847277643438],\n            [100.206298828125, 0.2526847277643438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#080\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [101.700439453125, 0.5273363048115169],\n          [102.645263671875, 0.5273363048115169],\n          [102.645263671875, 1.3511930983018892],\n          [101.700439453125, 1.3511930983018892],\n          [101.700439453125, 0.5273363048115169]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/out/collection-linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F0F\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [102, 2],\n          [103, 2],\n          [103, 3],\n          [102, 3],\n          [102, 2]\n        ]\n      ],\n      [\n        [\n          [100, 0],\n          [101, 0],\n          [101, 1],\n          [100, 1],\n          [100, 0]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/out/geometry-linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F0F\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-2.275543, 53.464547],\n        [-2.275543, 53.489271],\n        [-2.215118, 53.489271],\n        [-2.215118, 53.464547],\n        [-2.275543, 53.464547]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/out/linestring-incomplete.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F0F\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [131.0009765625, -30.939924331023455],\n        [125.46386718749999, -29.878755346037963],\n        [121.77246093750001, -26.07652055985696],\n        [121.5087890625, -21.902277966668624],\n        [127.79296875, -16.1724728083975],\n        [133.154296875, -14.944784875088372],\n        [137.4169921875, -20.097206227083888],\n        [138.515625, -26.82407078047018],\n        [131.0009765625, -30.939924331023455]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/out/linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F0F\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-2.275543, 53.464547],\n        [-2.275543, 53.489271],\n        [-2.215118, 53.489271],\n        [-2.215118, 53.464547],\n        [-2.275543, 53.464547]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/out/linestrings-to-multipolygons.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F0F\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [33.4149169921875, 48.28684818710906],\n          [32.816162109375, 48.42191010942875],\n          [32.783203125, 48.09642606004488],\n          [33.3270263671875, 47.931066347509784],\n          [33.4149169921875, 48.28684818710906]\n        ]\n      ],\n      [\n        [\n          [35.244140625, 47.15984001304432],\n          [35.17822265625, 46.37725420510028],\n          [36.40869140625, 46.240651955001695],\n          [37.02392578125, 46.9502622421856],\n          [35.244140625, 47.15984001304432]\n        ]\n      ],\n      [\n        [\n          [33.42041015625, 46.164614496897094],\n          [34.12353515625, 46.58906908309182],\n          [34.73876953125, 46.73233101286786],\n          [35.013427734375, 47.34626718205302],\n          [34.07958984374999, 47.73193447949174],\n          [32.947998046875, 47.338822694822],\n          [32.354736328125, 46.73986059969267],\n          [32.54150390625, 46.240651955001695],\n          [33.42041015625, 46.164614496897094]\n        ],\n        [\n          [33.398, 46.867],\n          [34.057, 46.867],\n          [34.057, 47.197],\n          [33.398, 47.197],\n          [33.398, 46.867]\n        ],\n        [\n          [32.969, 46.46],\n          [33.321, 46.46],\n          [33.321, 46.672],\n          [32.969, 46.672],\n          [32.969, 46.46]\n        ]\n      ],\n      [\n        [\n          [34.178466796875, 48.436489955944154],\n          [35.101318359375, 47.57652571374621],\n          [37.3974609375, 47.48008846346322],\n          [38.133544921875, 48.777912755501845],\n          [35.92529296875, 49.930008124606886],\n          [34.178466796875, 48.436489955944154]\n        ],\n        [\n          [34.80468749999999, 48.29050321714062],\n          [35.04638671874999, 47.938426929481054],\n          [35.760498046875, 47.95314495015594],\n          [35.343017578125, 48.32703913063476],\n          [34.80468749999999, 48.29050321714062]\n        ],\n        [\n          [35.99395751953125, 47.83528342275264],\n          [35.93902587890624, 47.73193447949174],\n          [36.15325927734375, 47.65428791076272],\n          [35.99395751953125, 47.83528342275264]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/out/multi-linestring-incomplete.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F0F\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [129.28710937499997, -31.57853542647337],\n        [120.05859375, -26.35249785815401],\n        [120.05859375, -19.72534224805787],\n        [124.62890625, -17.056784609942543],\n        [131.572265625, -17.224758206624628],\n        [133.330078125, -23.644524198573677],\n        [129.28710937499997, -31.57853542647337]\n      ],\n      [\n        [126.2548828125, -20.427012814257385],\n        [123.662109375, -22.512556954051437],\n        [124.1455078125, -25.36388227274024],\n        [126.9580078125, -25.799891182088306],\n        [128.5400390625, -24.166802085303225],\n        [127.83691406249999, -21.207458730482642],\n        [127.265625, -20.756113874762068],\n        [126.2548828125, -20.427012814257385]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/out/multi-linestring-nested.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F0F\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [106.06201171875, 32.47269502206151],\n          [111.86279296875, 32.47269502206151],\n          [111.86279296875, 37.33522435930639],\n          [106.06201171875, 37.33522435930639],\n          [106.06201171875, 32.47269502206151]\n        ],\n        [\n          [106.4794921875, 32.7872745269555],\n          [110.687255859375, 32.7872745269555],\n          [110.687255859375, 36.83566824724438],\n          [106.4794921875, 36.83566824724438],\n          [106.4794921875, 32.7872745269555]\n        ],\n        [\n          [101.18408203124999, 32.95336814579932],\n          [101.18408203124999, 35.93354064249312],\n          [104.952392578125, 35.93354064249312],\n          [104.952392578125, 32.95336814579932],\n          [101.18408203124999, 32.95336814579932]\n        ],\n        [\n          [102.359619140625, 33.916013113401696],\n          [103.65600585937499, 33.916013113401696],\n          [103.65600585937499, 34.97600151317588],\n          [102.359619140625, 34.97600151317588],\n          [102.359619140625, 33.916013113401696]\n        ],\n        [\n          [101.612548828125, 33.330528249028085],\n          [104.556884765625, 33.330528249028085],\n          [104.556884765625, 35.46961797120201],\n          [101.612548828125, 35.46961797120201],\n          [101.612548828125, 33.330528249028085]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/out/multi-linestring-nested2.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F0F\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [115.927734375, -34.016241889667015],\n          [134.560546875, -34.016241889667015],\n          [134.560546875, -16.8886597873816],\n          [115.927734375, -16.8886597873816],\n          [115.927734375, -34.016241889667015]\n        ],\n        [\n          [118.65234374999999, -30.90222470517144],\n          [131.484375, -30.90222470517144],\n          [131.484375, -19.808054128088575],\n          [118.65234374999999, -19.808054128088575],\n          [118.65234374999999, -30.90222470517144]\n        ],\n        [\n          [120.9375, -28.998531814051795],\n          [129.7265625, -28.998531814051795],\n          [129.7265625, -22.105998799750566],\n          [120.9375, -22.105998799750566],\n          [120.9375, -28.998531814051795]\n        ],\n        [\n          [123.48632812499999, -27.137368359795584],\n          [127.44140625, -27.137368359795584],\n          [127.44140625, -24.126701958681668],\n          [123.48632812499999, -24.126701958681668],\n          [123.48632812499999, -27.137368359795584]\n        ]\n      ],\n      [\n        [\n          [139.21874999999997, -36.10237644873643],\n          [158.73046875, -36.10237644873643],\n          [158.73046875, -17.476432197195518],\n          [139.21874999999997, -17.476432197195518],\n          [139.21874999999997, -36.10237644873643]\n        ],\n        [\n          [142.3828125, -34.016241889667015],\n          [155.91796874999997, -34.016241889667015],\n          [155.91796874999997, -20.13847031245114],\n          [142.3828125, -20.13847031245114],\n          [142.3828125, -34.016241889667015]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/out/multi-linestring-outer-ring-middle-position.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F0F\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [33.42041015625, 46.164614496897094],\n        [34.12353515625, 46.58906908309182],\n        [34.73876953125, 46.73233101286786],\n        [35.013427734375, 47.34626718205302],\n        [34.07958984374999, 47.73193447949174],\n        [32.947998046875, 47.338822694822],\n        [32.354736328125, 46.73986059969267],\n        [32.54150390625, 46.240651955001695],\n        [33.42041015625, 46.164614496897094]\n      ],\n      [\n        [33.398, 46.867],\n        [34.057, 46.867],\n        [34.057, 47.197],\n        [33.398, 47.197],\n        [33.398, 46.867]\n      ],\n      [\n        [32.969, 46.46],\n        [33.321, 46.46],\n        [33.321, 46.672],\n        [32.969, 46.672],\n        [32.969, 46.46]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/out/multi-linestring-with-hole.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F0F\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [100, 0],\n        [101, 0],\n        [101, 1],\n        [100, 1],\n        [100, 0]\n      ],\n      [\n        [100.2, 0.2],\n        [100.8, 0.2],\n        [100.8, 0.8],\n        [100.2, 0.8],\n        [100.2, 0.2]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/out/multi-linestrings-nested.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F0F\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [115.927734375, -34.016241889667015],\n          [134.560546875, -34.016241889667015],\n          [134.560546875, -16.8886597873816],\n          [115.927734375, -16.8886597873816],\n          [115.927734375, -34.016241889667015]\n        ],\n        [\n          [118.65234374999999, -30.90222470517144],\n          [131.484375, -30.90222470517144],\n          [131.484375, -19.808054128088575],\n          [118.65234374999999, -19.808054128088575],\n          [118.65234374999999, -30.90222470517144]\n        ],\n        [\n          [120.9375, -28.998531814051795],\n          [129.7265625, -28.998531814051795],\n          [129.7265625, -22.105998799750566],\n          [120.9375, -22.105998799750566],\n          [120.9375, -28.998531814051795]\n        ],\n        [\n          [123.48632812499999, -27.137368359795584],\n          [127.44140625, -27.137368359795584],\n          [127.44140625, -24.126701958681668],\n          [123.48632812499999, -24.126701958681668],\n          [123.48632812499999, -27.137368359795584]\n        ]\n      ],\n      [\n        [\n          [139.21874999999997, -36.10237644873643],\n          [158.73046875, -36.10237644873643],\n          [158.73046875, -17.476432197195518],\n          [139.21874999999997, -17.476432197195518],\n          [139.21874999999997, -36.10237644873643]\n        ],\n        [\n          [142.3828125, -34.016241889667015],\n          [155.91796874999997, -34.016241889667015],\n          [155.91796874999997, -20.13847031245114],\n          [142.3828125, -20.13847031245114],\n          [142.3828125, -34.016241889667015]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/out/multi-linestrings-outer-doughnut.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F0F\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [115.927734375, -34.016241889667015],\n          [134.560546875, -34.016241889667015],\n          [134.560546875, -16.8886597873816],\n          [115.927734375, -16.8886597873816],\n          [115.927734375, -34.016241889667015]\n        ],\n        [\n          [118.65234374999999, -30.90222470517144],\n          [131.484375, -30.90222470517144],\n          [131.484375, -19.808054128088575],\n          [118.65234374999999, -19.808054128088575],\n          [118.65234374999999, -30.90222470517144]\n        ]\n      ],\n      [\n        [\n          [120.9375, -28.998531814051795],\n          [129.7265625, -28.998531814051795],\n          [129.7265625, -22.105998799750566],\n          [120.9375, -22.105998799750566],\n          [120.9375, -28.998531814051795]\n        ],\n        [\n          [123.48632812499999, -27.137368359795584],\n          [127.44140625, -27.137368359795584],\n          [127.44140625, -24.126701958681668],\n          [123.48632812499999, -24.126701958681668],\n          [123.48632812499999, -27.137368359795584]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test/out/multi-linestrings-with-holes.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F0F\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [102, 2],\n          [103, 2],\n          [103, 3],\n          [102, 3],\n          [102, 2]\n        ],\n        [\n          [102.227783203125, 2.191238104506552],\n          [102.227783203125, 2.8223442468940902],\n          [102.843017578125, 2.8223442468940902],\n          [102.843017578125, 2.191238104506552],\n          [102.227783203125, 2.191238104506552]\n        ]\n      ],\n      [\n        [\n          [100, 0],\n          [101, 0],\n          [101, 1],\n          [100, 1],\n          [100, 0]\n        ],\n        [\n          [100.206298828125, 0.2526847277643438],\n          [100.206298828125, 0.7909904981540058],\n          [100.8050537109375, 0.7909904981540058],\n          [100.8050537109375, 0.2526847277643438],\n          [100.206298828125, 0.2526847277643438]\n        ]\n      ],\n      [\n        [\n          [101.700439453125, 0.5273363048115169],\n          [102.645263671875, 0.5273363048115169],\n          [102.645263671875, 1.3511930983018892],\n          [101.700439453125, 1.3511930983018892],\n          [101.700439453125, 0.5273363048115169]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { point, lineString } from \"@turf/helpers\";\nimport { clone } from \"@turf/clone\";\nimport { lineToPolygon } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nlet fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n// fixtures = fixtures.filter(fixture => fixture.name === 'multi-linestrings-with-holes');\n\ntest(\"turf-linestring-to-polygon\", (t) => {\n  for (const { name, filename, geojson } of fixtures) {\n    const originalInput = clone(geojson);\n    let { autoComplete, properties, orderCoords } = geojson.properties || {};\n    properties = properties || { stroke: \"#F0F\", \"stroke-width\": 6 };\n    const results = lineToPolygon(geojson, {\n      properties: properties,\n      autoComplete: autoComplete,\n      orderCoords: orderCoords,\n    });\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEqual(loadJsonFileSync(directories.out + filename), results, name);\n    t.deepEqual(originalInput, geojson);\n  }\n  // Handle Errors\n  t.throws(() => lineToPolygon(point([10, 5])), \"throws - invalid geometry\");\n  t.throws(() => lineToPolygon(lineString([])), \"throws - empty coordinates\");\n  t.assert(\n    lineToPolygon(\n      lineString([\n        [10, 5],\n        [20, 10],\n        [30, 20],\n      ]),\n      { autocomplete: false }\n    ),\n    \"is valid - autoComplete=false\"\n  );\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-line-to-polygon/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-line-to-polygon/types.ts",
    "content": "import { LineString, MultiLineString } from \"geojson\";\nimport { featureCollection, lineString, multiLineString } from \"@turf/helpers\";\nimport { lineToPolygon } from \"./index.js\";\n\n// Fixtures\nconst coords = [\n  [125, -30],\n  [145, -30],\n  [145, -20],\n  [125, -20],\n  [125, -30],\n];\nconst line = lineString(coords);\nconst multiLine = multiLineString([coords, coords]);\nconst fc = featureCollection<LineString | MultiLineString>([line, multiLine]);\n\n// Assert results with types\nconst poly1 = lineToPolygon(line); // Feature<Polygon>\nconst poly2 = lineToPolygon(multiLine); // Feature<Polygon>\nconst poly3 = lineToPolygon(fc); // Feature<MultiPolygon>\n"
  },
  {
    "path": "packages/turf-mask/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-mask/README.md",
    "content": "# @turf/mask\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## mask\n\nTakes polygons or multipolygons and an optional mask, and returns an exterior\nring polygon with holes.\n\n### Parameters\n\n*   `polygon` **([Polygon][1] | [MultiPolygon][2] | [Feature][3]<([Polygon][1] | [MultiPolygon][2])> | [FeatureCollection][4]<([Polygon][1] | [MultiPolygon][2])>)** GeoJSON polygon used as interior rings or holes\n*   `mask` **([Polygon][1] | [Feature][3]<[Polygon][1]>)?** GeoJSON polygon used as the exterior ring (if undefined, the world extent is used)\n*   `options` **[Object][5]** Optional parameters (optional, default `{}`)\n\n    *   `options.mutate` **[boolean][6]** allows the `mask` GeoJSON input to be mutated (performance improvement if true) (optional, default `false`)\n\n### Examples\n\n```javascript\nconst polygon = turf.polygon([[[112, -21], [116, -36], [146, -39], [153, -24], [133, -10], [112, -21]]]);\nconst mask = turf.polygon([[[90, -55], [170, -55], [170, 10], [90, 10], [90, -55]]]);\n\nconst masked = turf.mask(polygon, mask);\n\n//addToMap\nconst addToMap = [masked]\n```\n\nReturns **[Feature][3]<[Polygon][1]>** Masked Polygon (exterior ring with holes)\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/mask\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-mask/bench.ts",
    "content": "import { FeatureCollection, Polygon, MultiPolygon, Feature } from \"geojson\";\nimport fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark, { Event } from \"benchmark\";\nimport { mask as turfMask } from \"./index.js\";\nimport clone from \"@turf/clone\";\n\n// type guard to narrow the type of the fixtures\nconst isPolygonFeature = (\n  feature: Feature<Polygon | MultiPolygon>\n): feature is Feature<Polygon> => feature.geometry.type === \"Polygon\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n// these test fixtures are not used for benchmarking because they contain a\n// FeatureCollection with a single MultiPolygon, instead of a FeatureCollection\n// with two Polygons, where the first one is the polygon and the second is the mask.\nconst SKIP = [\"multi-polygon.geojson\", \"overlapping.geojson\"];\n\nconst suite = new Benchmark.Suite(\"turf-mask\");\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nlet fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(\n      path.join(directories.in, filename)\n    ) as FeatureCollection<Polygon | MultiPolygon>,\n  };\n});\n\nfor (const { name, filename, geojson } of fixtures) {\n  if (SKIP.includes(filename)) continue;\n\n  const [polygon, masking] = geojson.features;\n  if (!masking || !isPolygonFeature(masking)) {\n    throw new Error(\n      \"Fixtures should have two features: an input feature and a Polygon masking feature.\"\n    );\n  }\n\n  const getSuite = ({ mutate }: { mutate: boolean }) => ({\n    name: `${name} (mutate = ${mutate})`,\n    fn: () => {\n      // We clone the inputs to prevent tests from affecting each other\n      turfMask(clone(polygon), clone(masking), { mutate });\n    },\n  });\n\n  suite.add(getSuite({ mutate: false }));\n  suite.add(getSuite({ mutate: true }));\n}\n\n/**\n * Benchmark Results:\n *\n * basic (mutate = false) x 294,373 ops/sec ±0.25% (95 runs sampled)\n * basic (mutate = true) x 307,397 ops/sec ±0.13% (97 runs sampled)\n * mask-outside (mutate = false) x 100,575 ops/sec ±0.55% (97 runs sampled)\n * mask-outside (mutate = true) x 103,180 ops/sec ±0.40% (94 runs sampled)\n */\nsuite\n  .on(\"cycle\", (event: Event) => {\n    console.log(String(event.target));\n  })\n  .run();\n"
  },
  {
    "path": "packages/turf-mask/index.ts",
    "content": "import {\n  Feature,\n  FeatureCollection,\n  Polygon,\n  Position,\n  MultiPolygon,\n} from \"geojson\";\nimport { polygon as createPolygon, multiPolygon } from \"@turf/helpers\";\nimport * as polyclip from \"polyclip-ts\";\nimport { clone } from \"@turf/clone\";\n\n/**\n * Takes polygons or multipolygons and an optional mask, and returns an exterior\n * ring polygon with holes.\n *\n * @function\n * @param {Polygon|MultiPolygon|Feature<Polygon|MultiPolygon>|FeatureCollection<Polygon|MultiPolygon>} polygon GeoJSON polygon used as interior rings or holes\n * @param {Polygon|Feature<Polygon>} [mask] GeoJSON polygon used as the exterior ring (if undefined, the world extent is used)\n * @param {Object} [options={}] Optional parameters\n * @param {boolean} [options.mutate=false] allows the `mask` GeoJSON input to be mutated (performance improvement if true)\n * @returns {Feature<Polygon>} Masked Polygon (exterior ring with holes)\n * @example\n * const polygon = turf.polygon([[[112, -21], [116, -36], [146, -39], [153, -24], [133, -10], [112, -21]]]);\n * const mask = turf.polygon([[[90, -55], [170, -55], [170, 10], [90, 10], [90, -55]]]);\n *\n * const masked = turf.mask(polygon, mask);\n *\n * //addToMap\n * const addToMap = [masked]\n */\nfunction mask<T extends Polygon | MultiPolygon>(\n  polygon: T | Feature<T> | FeatureCollection<T>,\n  mask?: Polygon | Feature<Polygon>,\n  options?: { mutate?: boolean }\n): Feature<Polygon> {\n  const mutate = options?.mutate ?? false; // by default, do not mutate\n\n  let maskTemplate = mask;\n  if (mask && mutate === false) {\n    // Clone mask if requested to avoid side effects\n    maskTemplate = clone(mask);\n  }\n\n  // Define initial mask\n  const maskPolygon = createMask(maskTemplate);\n\n  let polygonOuters = null;\n  if (polygon.type === \"FeatureCollection\") {\n    polygonOuters = unionFc(polygon);\n  } else if (polygon.type === \"Feature\") {\n    // Need to cast below as Position[][] isn't quite as strict as Geom, even\n    // though they should be equivalent.\n    polygonOuters = createGeomFromPolygonClippingOutput(\n      polyclip.union(polygon.geometry.coordinates as polyclip.Geom)\n    );\n  } else {\n    // Geometry\n    // Need to cast below as Position[][] isn't quite as strict as Geom, even\n    // though they should be equivalent.\n    polygonOuters = createGeomFromPolygonClippingOutput(\n      polyclip.union(polygon.coordinates as polyclip.Geom)\n    );\n  }\n\n  polygonOuters.geometry.coordinates.forEach(function (contour) {\n    maskPolygon.geometry.coordinates.push(contour[0]);\n  });\n\n  return maskPolygon;\n}\n\nfunction unionFc(fc: FeatureCollection<Polygon | MultiPolygon>) {\n  // Need to cast below as Position[][] isn't quite as strict as Geom, even\n  // though they should be equivalent.\n\n  // Stick with apply() below as spread operator degrades performance. Have\n  // to disable prefer-spread lint rule though.\n  /* eslint-disable prefer-spread */\n  const unioned =\n    fc.features.length === 2\n      ? polyclip.union(\n          fc.features[0].geometry.coordinates as polyclip.Geom,\n          fc.features[1].geometry.coordinates as polyclip.Geom\n        )\n      : polyclip.union.apply(\n          polyclip,\n          fc.features.map(function (f) {\n            return f.geometry.coordinates;\n          }) as [polyclip.Geom, ...polyclip.Geom[]]\n        );\n  /* eslint-enable */\n  return createGeomFromPolygonClippingOutput(unioned);\n}\n\nfunction createGeomFromPolygonClippingOutput(unioned: Position[][][]) {\n  return multiPolygon(unioned);\n}\n\n/**\n * Create Mask Coordinates\n *\n * @private\n * @param {Feature<Polygon>} [mask] default to world if undefined\n * @returns {Feature<Polygon>} mask as a polygon\n */\nfunction createMask(mask: Feature<Polygon> | Polygon | undefined) {\n  const world = [\n    [\n      [180, 90],\n      [-180, 90],\n      [-180, -90],\n      [180, -90],\n      [180, 90],\n    ],\n  ];\n  let coordinates = world;\n  if (mask) {\n    if (mask.type === \"Feature\") {\n      // polygon feature\n      coordinates = mask.geometry.coordinates;\n    } else {\n      // polygon geometry\n      coordinates = mask.coordinates;\n    }\n  }\n  return createPolygon(coordinates);\n}\n\nexport { mask };\nexport default mask;\n"
  },
  {
    "path": "packages/turf-mask/package.json",
    "content": "{\n  \"name\": \"@turf/mask\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes polygons or multipolygons and an optional mask, and returns an exterior ring polygon with holes.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"mask\",\n    \"polygon\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"mkdirp\": \"^3.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/clone\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"polyclip-ts\": \"^0.16.8\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-mask/test/in/basic.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.140625, 13.239945499286312],\n            [68.203125, 13.239945499286312],\n            [68.203125, 50.064191736659104],\n            [9.140625, 50.064191736659104],\n            [9.140625, 13.239945499286312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.67187499999999, -14.264383087562637],\n            [99.49218749999999, -14.264383087562637],\n            [99.49218749999999, 71.07405646336098],\n            [-38.67187499999999, 71.07405646336098],\n            [-38.67187499999999, -14.264383087562637]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-mask/test/in/mask-outside.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [113.115234375, -22.105998799750566],\n            [112.587890625, -24.766784522874428],\n            [113.73046875, -29.382175075145277],\n            [114.78515624999999, -32.916485347314385],\n            [117.333984375, -35.6037187406973],\n            [122.87109375, -35.46066995149529],\n            [128.935546875, -33.43144133557529],\n            [133.505859375, -29.91685223307016],\n            [133.505859375, -26.74561038219901],\n            [132.099609375, -21.943045533438166],\n            [127.44140625, -17.560246503294888],\n            [122.431640625, -17.308687886770024],\n            [116.806640625, -17.978733095556155],\n            [113.115234375, -22.105998799750566]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [119.53125, -39.77476948529546],\n            [155.478515625, -39.77476948529546],\n            [155.478515625, -9.88227549342994],\n            [119.53125, -9.88227549342994],\n            [119.53125, -39.77476948529546]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-mask/test/in/multi-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [174.8257084, -36.8869965],\n              [174.8276109, -36.887539],\n              [174.8278042, -36.8875561],\n              [174.8296591, -36.8874264],\n              [174.8311438, -36.8878347],\n              [174.8314673, -36.8878689],\n              [174.8336846, -36.8865436],\n              [174.8341202, -36.8862468],\n              [174.834388, -36.885941],\n              [174.8354962, -36.8846273],\n              [174.8356801, -36.8844927],\n              [174.8367548, -36.8837641],\n              [174.8373321, -36.8831729],\n              [174.8373394, -36.8830989],\n              [174.8369142, -36.88283],\n              [174.8367485, -36.8829628],\n              [174.836428, -36.8830636],\n              [174.8340081, -36.8834433],\n              [174.8332402, -36.8837406],\n              [174.8321967, -36.8848087],\n              [174.8315144, -36.8849051],\n              [174.8311496, -36.8842651],\n              [174.8319151, -36.8828293],\n              [174.8321192, -36.8820636],\n              [174.8324179, -36.8806023],\n              [174.8325982, -36.8803963],\n              [174.8346312, -36.8804379],\n              [174.8346495, -36.8804375],\n              [174.8348716, -36.8800115],\n              [174.8349119, -36.8798696],\n              [174.8347595, -36.8798408],\n              [174.8342416, -36.8795988],\n              [174.8328699, -36.878784],\n              [174.8331132, -36.8782542],\n              [174.8333146, -36.878309],\n              [174.8337539, -36.8777781],\n              [174.8343234, -36.8772656],\n              [174.8347697, -36.8769085],\n              [174.8349499, -36.8768261],\n              [174.8351645, -36.8767575],\n              [174.8353877, -36.8766751],\n              [174.8355399, -36.8764449],\n              [174.8357051, -36.8761931],\n              [174.8357668, -36.876134],\n              [174.8356795, -36.8760915],\n              [174.8353743, -36.8758963],\n              [174.8352751, -36.8760453],\n              [174.8347802, -36.8758729],\n              [174.8346298, -36.8755945],\n              [174.8350415, -36.8755096],\n              [174.8350096, -36.8753835],\n              [174.8350022, -36.8752449],\n              [174.8350149, -36.875154],\n              [174.8345392, -36.8752539],\n              [174.8345787, -36.8753974],\n              [174.8343983, -36.8756894],\n              [174.833726, -36.8754489],\n              [174.8331871, -36.8758692],\n              [174.8329038, -36.8761774],\n              [174.8325172, -36.8766213],\n              [174.8322845, -36.8767656],\n              [174.8322194, -36.876702],\n              [174.8320384, -36.8768042],\n              [174.8319464, -36.8770175],\n              [174.8315081, -36.8771832],\n              [174.8313365, -36.8770253],\n              [174.8312077, -36.8771008],\n              [174.8312421, -36.8772587],\n              [174.8309073, -36.8774235],\n              [174.8305018, -36.8776747],\n              [174.8302808, -36.8777874],\n              [174.8291478, -36.8782886],\n              [174.8291478, -36.8783915],\n              [174.8291735, -36.8785151],\n              [174.8290963, -36.8787142],\n              [174.829062, -36.8788584],\n              [174.8293809, -36.8815138],\n              [174.8294238, -36.8818914],\n              [174.8291049, -36.8820989],\n              [174.8290019, -36.8821676],\n              [174.829225, -36.8827923],\n              [174.829535, -36.8828012],\n              [174.8295855, -36.8828026],\n              [174.8294482, -36.8835612],\n              [174.8290133, -36.8842478],\n              [174.828547, -36.8850853],\n              [174.8285298, -36.8854835],\n              [174.8285583, -36.8859898],\n              [174.827812, -36.8862177],\n              [174.8272938, -36.8863759],\n              [174.8268918, -36.8864866],\n              [174.8265485, -36.8865621],\n              [174.8263768, -36.8866582],\n              [174.8261688, -36.886697],\n              [174.8261552, -36.8866995],\n              [174.8261193, -36.8867062],\n              [174.8259044, -36.8868107],\n              [174.8257084, -36.8869965]\n            ]\n          ],\n          [\n            [\n              [174.8347149, -36.8815236],\n              [174.8347774, -36.881634],\n              [174.8347409, -36.8819051],\n              [174.8350392, -36.8821049],\n              [174.8355443, -36.8821803],\n              [174.8362531, -36.881711],\n              [174.8371047, -36.8807158],\n              [174.8376266, -36.8798969],\n              [174.8384676, -36.878055],\n              [174.837355, -36.8776834],\n              [174.8369669, -36.8778472],\n              [174.8360445, -36.8784047],\n              [174.8360549, -36.8784168],\n              [174.8357777, -36.8790427],\n              [174.8357201, -36.8790301],\n              [174.8355874, -36.8793891],\n              [174.8354683, -36.8795601],\n              [174.8355479, -36.8795814],\n              [174.8353415, -36.8797934],\n              [174.8351245, -36.8798054],\n              [174.8350004, -36.8802174],\n              [174.8347295, -36.8806857],\n              [174.835116, -36.8807968],\n              [174.8347149, -36.8815236]\n            ]\n          ]\n        ]\n      },\n      \"properties\": {}\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-mask/test/in/overlapping.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [119.70703125, -16.467694748288956],\n              [114.9609375, -19.973348786110602],\n              [113.02734374999999, -27.527758206861886],\n              [118.30078125, -34.30714385628803],\n              [122.16796875, -34.59704151614416],\n              [126.03515625, -26.273714024406416],\n              [119.70703125, -16.467694748288956]\n            ]\n          ],\n          [\n            [\n              [118.828125, -21.207458730482642],\n              [122.08007812499999, -31.42866311735861],\n              [126.73828125, -34.234512362369856],\n              [131.8359375, -34.59704151614416],\n              [137.373046875, -28.459033019728043],\n              [137.197265625, -17.978733095556155],\n              [130.078125, -11.436955216143177],\n              [121.55273437499999, -15.029685756555674],\n              [118.828125, -21.207458730482642]\n            ]\n          ],\n          [\n            [\n              [129.55078125, -13.496472765758952],\n              [129.375, -22.836945920943844],\n              [128.583984375, -26.980828590472107],\n              [135.35156249999997, -36.738884124394296],\n              [146.42578125, -38.8225909761771],\n              [150.380859375, -35.02999636902566],\n              [153.544921875, -22.75592068148639],\n              [144.931640625, -12.726084296948184],\n              [129.55078125, -13.496472765758952]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-mask/test/out/basic.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-38.67187499999999, -14.264383087562637],\n        [99.49218749999999, -14.264383087562637],\n        [99.49218749999999, 71.07405646336098],\n        [-38.67187499999999, 71.07405646336098],\n        [-38.67187499999999, -14.264383087562637]\n      ],\n      [\n        [9.140625, 13.239945499286312],\n        [68.203125, 13.239945499286312],\n        [68.203125, 50.064191736659104],\n        [9.140625, 50.064191736659104],\n        [9.140625, 13.239945499286312]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-mask/test/out/mask-outside.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [119.53125, -39.77476948529546],\n        [155.478515625, -39.77476948529546],\n        [155.478515625, -9.88227549342994],\n        [119.53125, -9.88227549342994],\n        [119.53125, -39.77476948529546]\n      ],\n      [\n        [112.587890625, -24.766784522874428],\n        [113.73046875, -29.382175075145277],\n        [114.78515624999999, -32.916485347314385],\n        [117.333984375, -35.6037187406973],\n        [122.87109375, -35.46066995149529],\n        [128.935546875, -33.43144133557529],\n        [133.505859375, -29.91685223307016],\n        [133.505859375, -26.74561038219901],\n        [132.099609375, -21.943045533438166],\n        [127.44140625, -17.560246503294888],\n        [122.431640625, -17.308687886770024],\n        [116.806640625, -17.978733095556155],\n        [113.115234375, -22.105998799750566],\n        [112.587890625, -24.766784522874428]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-mask/test/out/multi-polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [180, 90],\n        [-180, 90],\n        [-180, -90],\n        [180, -90],\n        [180, 90]\n      ],\n      [\n        [174.8347149, -36.8815236],\n        [174.835116, -36.8807968],\n        [174.8347295, -36.8806857],\n        [174.8350004, -36.8802174],\n        [174.8351245, -36.8798054],\n        [174.8353415, -36.8797934],\n        [174.8355479, -36.8795814],\n        [174.8354683, -36.8795601],\n        [174.8355874, -36.8793891],\n        [174.8357201, -36.8790301],\n        [174.8357777, -36.8790427],\n        [174.8360549, -36.8784168],\n        [174.8360445, -36.8784047],\n        [174.8369669, -36.8778472],\n        [174.837355, -36.8776834],\n        [174.8384676, -36.878055],\n        [174.8376266, -36.8798969],\n        [174.8371047, -36.8807158],\n        [174.8362531, -36.881711],\n        [174.8355443, -36.8821803],\n        [174.8350392, -36.8821049],\n        [174.8347409, -36.8819051],\n        [174.8347774, -36.881634],\n        [174.8347149, -36.8815236]\n      ],\n      [\n        [174.8257084, -36.8869965],\n        [174.8259044, -36.8868107],\n        [174.8261193, -36.8867062],\n        [174.8261552, -36.8866995],\n        [174.8261688, -36.886697],\n        [174.8263768, -36.8866582],\n        [174.8265485, -36.8865621],\n        [174.8268918, -36.8864866],\n        [174.8272938, -36.8863759],\n        [174.827812, -36.8862177],\n        [174.8285583, -36.8859898],\n        [174.8285298, -36.8854835],\n        [174.828547, -36.8850853],\n        [174.8290133, -36.8842478],\n        [174.8294482, -36.8835612],\n        [174.8295855, -36.8828026],\n        [174.829535, -36.8828012],\n        [174.829225, -36.8827923],\n        [174.8290019, -36.8821676],\n        [174.8291049, -36.8820989],\n        [174.8294238, -36.8818914],\n        [174.8293809, -36.8815138],\n        [174.829062, -36.8788584],\n        [174.8290963, -36.8787142],\n        [174.8291735, -36.8785151],\n        [174.8291478, -36.8783915],\n        [174.8291478, -36.8782886],\n        [174.8302808, -36.8777874],\n        [174.8305018, -36.8776747],\n        [174.8309073, -36.8774235],\n        [174.8312421, -36.8772587],\n        [174.8312077, -36.8771008],\n        [174.8313365, -36.8770253],\n        [174.8315081, -36.8771832],\n        [174.8319464, -36.8770175],\n        [174.8320384, -36.8768042],\n        [174.8322194, -36.876702],\n        [174.8322845, -36.8767656],\n        [174.8325172, -36.8766213],\n        [174.8329038, -36.8761774],\n        [174.8331871, -36.8758692],\n        [174.833726, -36.8754489],\n        [174.8343983, -36.8756894],\n        [174.8345787, -36.8753974],\n        [174.8345392, -36.8752539],\n        [174.8350149, -36.875154],\n        [174.8350022, -36.8752449],\n        [174.8350096, -36.8753835],\n        [174.8350415, -36.8755096],\n        [174.8346298, -36.8755945],\n        [174.8347802, -36.8758729],\n        [174.8352751, -36.8760453],\n        [174.8353743, -36.8758963],\n        [174.8356795, -36.8760915],\n        [174.8357668, -36.876134],\n        [174.8357051, -36.8761931],\n        [174.8355399, -36.8764449],\n        [174.8353877, -36.8766751],\n        [174.8351645, -36.8767575],\n        [174.8349499, -36.8768261],\n        [174.8347697, -36.8769085],\n        [174.8343234, -36.8772656],\n        [174.8337539, -36.8777781],\n        [174.8333146, -36.878309],\n        [174.8331132, -36.8782542],\n        [174.8328699, -36.878784],\n        [174.8342416, -36.8795988],\n        [174.8347595, -36.8798408],\n        [174.8349119, -36.8798696],\n        [174.8348716, -36.8800115],\n        [174.8346495, -36.8804375],\n        [174.8346312, -36.8804379],\n        [174.8325982, -36.8803963],\n        [174.8324179, -36.8806023],\n        [174.8321192, -36.8820636],\n        [174.8319151, -36.8828293],\n        [174.8311496, -36.8842651],\n        [174.8315144, -36.8849051],\n        [174.8321967, -36.8848087],\n        [174.8332402, -36.8837406],\n        [174.8340081, -36.8834433],\n        [174.836428, -36.8830636],\n        [174.8367485, -36.8829628],\n        [174.8369142, -36.88283],\n        [174.8373394, -36.8830989],\n        [174.8373321, -36.8831729],\n        [174.8367548, -36.8837641],\n        [174.8356801, -36.8844927],\n        [174.8354962, -36.8846273],\n        [174.834388, -36.885941],\n        [174.8341202, -36.8862468],\n        [174.8336846, -36.8865436],\n        [174.8314673, -36.8878689],\n        [174.8311438, -36.8878347],\n        [174.8296591, -36.8874264],\n        [174.8278042, -36.8875561],\n        [174.8276109, -36.887539],\n        [174.8257084, -36.8869965]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-mask/test/out/overlapping.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [180, 90],\n        [-180, 90],\n        [-180, -90],\n        [180, -90],\n        [180, 90]\n      ],\n      [\n        [132.17629902699358, -13.364967199604362],\n        [144.931640625, -12.726084296948184],\n        [153.544921875, -22.75592068148639],\n        [150.380859375, -35.02999636902566],\n        [146.42578125, -38.8225909761771],\n        [135.35156249999997, -36.738884124394296],\n        [132.9837069753474, -33.32471360739497],\n        [131.8359375, -34.59704151614416],\n        [126.73828125, -34.234512362369856],\n        [123.29894671677008, -32.162843535475524],\n        [122.16796875, -34.59704151614416],\n        [118.30078125, -34.30714385628803],\n        [113.02734374999999, -27.527758206861886],\n        [114.9609375, -19.973348786110602],\n        [119.70703125, -16.467694748288956],\n        [120.4266908193729, -17.582874301397172],\n        [121.55273437499999, -15.029685756555674],\n        [130.078125, -11.436955216143177],\n        [132.17629902699358, -13.364967199604362]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-mask/test.ts",
    "content": "import {\n  Feature,\n  FeatureCollection,\n  Polygon,\n  Position,\n  MultiPolygon,\n} from \"geojson\";\nimport fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { mask } from \"./index.js\";\nimport { clone } from \"@turf/clone\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst SKIP = [\"multi-polygon.geojson\", \"overlapping.geojson\"];\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nlet fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(\n      path.join(directories.in, filename)\n    ) as FeatureCollection<Polygon | MultiPolygon>,\n  };\n});\n\ntest(\"turf-mask\", (t) => {\n  for (const { name, filename, geojson } of fixtures) {\n    if (-1 !== SKIP.indexOf(filename)) {\n      continue;\n    }\n\n    const [polygon, masking] = geojson.features;\n    const results = mask(polygon, masking as Feature<Polygon>);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEquals(results, loadJsonFileSync(directories.out + filename), name);\n  }\n  t.end();\n});\n\nconst getBasicPolygonAndMask = () => {\n  const basicFixture = fixtures.find(\n    ({ filename }) => filename === \"basic.geojson\"\n  );\n  if (!basicFixture) throw new Error(\"basic.geojson not found\");\n  return basicFixture.geojson.features;\n};\n\ntest(\"turf-mask -- doesn't mutate inputs by default\", (t) => {\n  const [polygon, masking] = getBasicPolygonAndMask();\n  const maskClone = clone(masking);\n\n  mask(polygon, masking);\n\n  t.deepEquals(masking, maskClone, \"mask input should not be mutated\");\n\n  t.end();\n});\n\ntest(\"turf-mask -- mutates mask input when mutate = true\", (t) => {\n  const [polygon, masking] = getBasicPolygonAndMask();\n  const maskClone = clone(masking);\n\n  mask(polygon, masking, { mutate: true });\n\n  t.notDeepEqual(masking, maskClone, \"mask input should be mutated\");\n\n  t.end();\n});\n\ntest(\"turf-mask polygon geometry\", (t) => {\n  // A polygon somewhere\n  const polyCoords: Position[] = [\n    [9, 13],\n    [68, 13],\n    [68, 50],\n    [9, 50],\n    [9, 13],\n  ];\n\n  const polygonGeometry: Polygon = {\n    type: \"Polygon\",\n    coordinates: [polyCoords],\n  };\n\n  let expectedResult = {\n    type: \"Feature\",\n    properties: {},\n    geometry: {\n      type: \"Polygon\",\n      coordinates: [\n        [\n          [180, 90],\n          [-180, 90],\n          [-180, -90],\n          [180, -90],\n          [180, 90],\n        ],\n        polyCoords,\n      ],\n    },\n  };\n\n  let result = mask(polygonGeometry);\n  t.deepEquals(result, expectedResult, \"default mask\");\n\n  // A slightly larger polygon surrounding the one above\n  const customMaskCoords: Position[] = [\n    [6, 10],\n    [71, 10],\n    [71, 53],\n    [6, 53],\n    [6, 10],\n  ];\n\n  const maskGeometry: Polygon = {\n    type: \"Polygon\",\n    coordinates: [customMaskCoords],\n  };\n\n  expectedResult = {\n    type: \"Feature\",\n    properties: {},\n    geometry: {\n      type: \"Polygon\",\n      coordinates: [customMaskCoords, polyCoords],\n    },\n  };\n\n  result = mask(polygonGeometry, maskGeometry);\n  t.deepEquals(result, expectedResult, \"custom mask\");\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-mask/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-mask/types.ts",
    "content": "import { polygon } from \"@turf/helpers\";\nimport { mask } from \"./index.js\";\n\nconst poly1 = polygon([\n  [\n    [-50, 5],\n    [-40, -10],\n    [-50, -10],\n    [-40, 5],\n    [-50, 5],\n  ],\n]);\nconst poly2 = polygon([\n  [\n    [30, 5],\n    [-40, -10],\n    [-50, -10],\n    [-40, 5],\n    [30, 5],\n  ],\n]);\n\nmask(poly1);\nmask(poly1, poly2);\nmask(poly1, poly2, { mutate: true });\n"
  },
  {
    "path": "packages/turf-meta/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-meta/README.md",
    "content": "# @turf/meta\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## coordEachCallback\n\nCallback for coordEach\n\nType: [Function][1]\n\n### Parameters\n\n*   `currentCoord` **[Array][2]<[number][3]>** The current coordinate being processed.\n*   `coordIndex` **[number][3]** The current index of the coordinate being processed.\n*   `featureIndex` **[number][3]** The current index of the Feature being processed.\n*   `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed.\n*   `geometryIndex` **[number][3]** The current index of the Geometry being processed.\n\nReturns **void**&#x20;\n\n## coordEach\n\nIterate over coordinates in any GeoJSON object, similar to Array.forEach()\n\n### Parameters\n\n*   `geojson` **AllGeoJSON** any GeoJSON object\n*   `callback` **[coordEachCallback][4]** a method that takes (currentCoord, coordIndex, featureIndex, multiFeatureIndex)\n*   `excludeWrapCoord` **[boolean][5]** whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration. (optional, default `false`)\n\n### Examples\n\n```javascript\nvar features = turf.featureCollection([\n  turf.point([26, 37], {\"foo\": \"bar\"}),\n  turf.point([36, 53], {\"hello\": \"world\"})\n]);\n\nturf.coordEach(features, function (currentCoord, coordIndex, featureIndex, multiFeatureIndex, geometryIndex) {\n  //=currentCoord\n  //=coordIndex\n  //=featureIndex\n  //=multiFeatureIndex\n  //=geometryIndex\n});\n```\n\nReturns **void**&#x20;\n\n## coordReduceCallback\n\nCallback for coordReduce\n\nThe first time the callback function is called, the values provided as arguments depend\non whether the reduce method has an initialValue argument.\n\nIf an initialValue is provided to the reduce method:\n\n*   The previousValue argument is initialValue.\n*   The currentValue argument is the value of the first element present in the array.\n\nIf an initialValue is not provided:\n\n*   The previousValue argument is the value of the first element present in the array.\n*   The currentValue argument is the value of the second element present in the array.\n\nType: [Function][1]\n\n### Parameters\n\n*   `previousValue` **Reducer** The accumulated value previously returned in the last invocation\n    of the callback, or initialValue, if supplied.\n*   `currentCoord` **[Array][2]<[number][3]>** The current coordinate being processed.\n*   `coordIndex` **[number][3]** The current index of the coordinate being processed.\n    Starts at index 0, if an initialValue is provided, and at index 1 otherwise.\n*   `featureIndex` **[number][3]** The current index of the Feature being processed.\n*   `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed.\n*   `geometryIndex` **[number][3]** The current index of the Geometry being processed.\n\nReturns **Reducer**&#x20;\n\n## coordReduce\n\nReduce coordinates in any GeoJSON object, similar to Array.reduce()\n\n### Parameters\n\n*   `geojson` **AllGeoJSON** any GeoJSON object\n*   `callback` **[coordReduceCallback][6]** a method that takes (previousValue, currentCoord, coordIndex)\n*   `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback.\n*   `excludeWrapCoord` **[boolean][5]** whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration. (optional, default `false`)\n\n### Examples\n\n```javascript\nvar features = turf.featureCollection([\n  turf.point([26, 37], {\"foo\": \"bar\"}),\n  turf.point([36, 53], {\"hello\": \"world\"})\n]);\n\nturf.coordReduce(features, function (previousValue, currentCoord, coordIndex, featureIndex, multiFeatureIndex, geometryIndex) {\n  //=previousValue\n  //=currentCoord\n  //=coordIndex\n  //=featureIndex\n  //=multiFeatureIndex\n  //=geometryIndex\n  return currentCoord;\n});\n```\n\nReturns **Reducer** The value that results from the reduction.\n\n## propEachCallback\n\nCallback for propEach\n\nType: [Function][1]\n\n### Parameters\n\n*   `currentProperties` **[GeoJsonProperties][7]** The current Properties being processed.\n*   `featureIndex` **[number][3]** The current index of the Feature being processed.\n\nReturns **void**&#x20;\n\n## propEach\n\nIterate over properties in any GeoJSON object, similar to Array.forEach()\n\n### Parameters\n\n*   `geojson` **([FeatureCollection][8] | [Feature][7])** any GeoJSON object\n*   `callback` **[propEachCallback][9]** a method that takes (currentProperties, featureIndex)\n\n### Examples\n\n```javascript\nvar features = turf.featureCollection([\n    turf.point([26, 37], {foo: 'bar'}),\n    turf.point([36, 53], {hello: 'world'})\n]);\n\nturf.propEach(features, function (currentProperties, featureIndex) {\n  //=currentProperties\n  //=featureIndex\n});\n```\n\nReturns **void**&#x20;\n\n## propReduceCallback\n\nCallback for propReduce\n\nThe first time the callback function is called, the values provided as arguments depend\non whether the reduce method has an initialValue argument.\n\nIf an initialValue is provided to the reduce method:\n\n*   The previousValue argument is initialValue.\n*   The currentValue argument is the value of the first element present in the array.\n\nIf an initialValue is not provided:\n\n*   The previousValue argument is the value of the first element present in the array.\n*   The currentValue argument is the value of the second element present in the array.\n\nType: [Function][1]\n\n### Parameters\n\n*   `previousValue` **Reducer** The accumulated value previously returned in the last invocation\n    of the callback, or initialValue, if supplied.\n*   `currentProperties` **[GeoJsonProperties][7]** The current Properties being processed.\n*   `featureIndex` **[number][3]** The current index of the Feature being processed.\n\nReturns **Reducer**&#x20;\n\n## propReduce\n\nReduce properties in any GeoJSON object into a single value,\nsimilar to how Array.reduce works. However, in this case we lazily run\nthe reduction, so an array of all properties is unnecessary.\n\n### Parameters\n\n*   `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10])** any GeoJSON object\n*   `callback` **[propReduceCallback][11]** a method that takes (previousValue, currentProperties, featureIndex)\n*   `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback.\n\n### Examples\n\n```javascript\nvar features = turf.featureCollection([\n    turf.point([26, 37], {foo: 'bar'}),\n    turf.point([36, 53], {hello: 'world'})\n]);\n\nturf.propReduce(features, function (previousValue, currentProperties, featureIndex) {\n  //=previousValue\n  //=currentProperties\n  //=featureIndex\n  return currentProperties\n});\n```\n\nReturns **Reducer** The value that results from the reduction.\n\n## featureEachCallback\n\nCallback for featureEach\n\nType: [Function][1]\n\n### Parameters\n\n*   `currentFeature` **[Feature][7]\\<any>** The current Feature being processed.\n*   `featureIndex` **[number][3]** The current index of the Feature being processed.\n\nReturns **void**&#x20;\n\n## featureEach\n\nIterate over features in any GeoJSON object, similar to\nArray.forEach.\n\n### Parameters\n\n*   `geojson` **([FeatureCollection][8] | [Feature][7] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object\n*   `callback` **[featureEachCallback][13]** a method that takes (currentFeature, featureIndex)\n\n### Examples\n\n```javascript\nvar features = turf.featureCollection([\n  turf.point([26, 37], {foo: 'bar'}),\n  turf.point([36, 53], {hello: 'world'})\n]);\n\nturf.featureEach(features, function (currentFeature, featureIndex) {\n  //=currentFeature\n  //=featureIndex\n});\n```\n\nReturns **void**&#x20;\n\n## featureReduceCallback\n\nCallback for featureReduce\n\nThe first time the callback function is called, the values provided as arguments depend\non whether the reduce method has an initialValue argument.\n\nIf an initialValue is provided to the reduce method:\n\n*   The previousValue argument is initialValue.\n*   The currentValue argument is the value of the first element present in the array.\n\nIf an initialValue is not provided:\n\n*   The previousValue argument is the value of the first element present in the array.\n*   The currentValue argument is the value of the second element present in the array.\n\nType: [Function][1]\n\n### Parameters\n\n*   `previousValue` **Reducer** The accumulated value previously returned in the last invocation\n    of the callback, or initialValue, if supplied.\n*   `currentFeature` **[Feature][7]** The current Feature being processed.\n*   `featureIndex` **[number][3]** The current index of the Feature being processed.\n\nReturns **Reducer**&#x20;\n\n## featureReduce\n\nReduce features in any GeoJSON object, similar to Array.reduce().\n\n### Parameters\n\n*   `geojson` **([FeatureCollection][8] | [Feature][7] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object\n*   `callback` **[featureReduceCallback][14]** a method that takes (previousValue, currentFeature, featureIndex)\n*   `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback.\n\n### Examples\n\n```javascript\nvar features = turf.featureCollection([\n  turf.point([26, 37], {\"foo\": \"bar\"}),\n  turf.point([36, 53], {\"hello\": \"world\"})\n]);\n\nturf.featureReduce(features, function (previousValue, currentFeature, featureIndex) {\n  //=previousValue\n  //=currentFeature\n  //=featureIndex\n  return currentFeature\n});\n```\n\nReturns **Reducer** The value that results from the reduction.\n\n## coordAll\n\nGet all coordinates from any GeoJSON object.\n\n### Parameters\n\n*   `geojson` **AllGeoJSON** any GeoJSON object\n\n### Examples\n\n```javascript\nvar features = turf.featureCollection([\n  turf.point([26, 37], {foo: 'bar'}),\n  turf.point([36, 53], {hello: 'world'})\n]);\n\nvar coords = turf.coordAll(features);\n//= [[26, 37], [36, 53]]\n```\n\nReturns **[Array][2]<[Array][2]<[number][3]>>** coordinate position array\n\n## geomEachCallback\n\nCallback for geomEach\n\nType: [Function][1]\n\n### Parameters\n\n*   `currentGeometry` **[GeometryObject][10]** The current Geometry being processed.\n*   `featureIndex` **[number][3]** The current index of the Feature being processed.\n*   `featureProperties` **[GeoJsonProperties][7]** The current Feature Properties being processed.\n*   `featureBBox` **[BBox][15]** The current Feature BBox being processed.\n*   `featureId` **Id** The current Feature Id being processed.\n\nReturns **void**&#x20;\n\n## geomEach\n\nIterate over each geometry in any GeoJSON object, similar to Array.forEach()\n\n### Parameters\n\n*   `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10] | [GeometryObject][10] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object\n*   `callback` **[geomEachCallback][16]** a method that takes (currentGeometry, featureIndex, featureProperties, featureBBox, featureId)\n\n### Examples\n\n```javascript\nvar features = turf.featureCollection([\n    turf.point([26, 37], {foo: 'bar'}),\n    turf.point([36, 53], {hello: 'world'})\n]);\n\nturf.geomEach(features, function (currentGeometry, featureIndex, featureProperties, featureBBox, featureId) {\n  //=currentGeometry\n  //=featureIndex\n  //=featureProperties\n  //=featureBBox\n  //=featureId\n});\n```\n\nReturns **void**&#x20;\n\n## geomReduceCallback\n\nCallback for geomReduce\n\nThe first time the callback function is called, the values provided as arguments depend\non whether the reduce method has an initialValue argument.\n\nIf an initialValue is provided to the reduce method:\n\n*   The previousValue argument is initialValue.\n*   The currentValue argument is the value of the first element present in the array.\n\nIf an initialValue is not provided:\n\n*   The previousValue argument is the value of the first element present in the array.\n*   The currentValue argument is the value of the second element present in the array.\n\nType: [Function][1]\n\n### Parameters\n\n*   `previousValue` **Reducer** The accumulated value previously returned in the last invocation\n    of the callback, or initialValue, if supplied.\n*   `currentGeometry` **[GeometryObject][10]** The current Geometry being processed.\n*   `featureIndex` **[number][3]** The current index of the Feature being processed.\n*   `featureProperties` **[GeoJsonProperties][7]** The current Feature Properties being processed.\n*   `featureBBox` **[BBox][15]** The current Feature BBox being processed.\n*   `featureId` **Id** The current Feature Id being processed.\n\nReturns **Reducer**&#x20;\n\n## geomReduce\n\nReduce geometry in any GeoJSON object, similar to Array.reduce().\n\n### Parameters\n\n*   `geojson` **([FeatureCollection][8] | [Feature][7] | [GeometryObject][10] | [GeometryCollection][12] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object\n*   `callback` **[geomReduceCallback][17]** a method that takes (previousValue, currentGeometry, featureIndex, featureProperties, featureBBox, featureId)\n*   `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback.\n\n### Examples\n\n```javascript\nvar features = turf.featureCollection([\n    turf.point([26, 37], {foo: 'bar'}),\n    turf.point([36, 53], {hello: 'world'})\n]);\n\nturf.geomReduce(features, function (previousValue, currentGeometry, featureIndex, featureProperties, featureBBox, featureId) {\n  //=previousValue\n  //=currentGeometry\n  //=featureIndex\n  //=featureProperties\n  //=featureBBox\n  //=featureId\n  return currentGeometry\n});\n```\n\nReturns **Reducer** The value that results from the reduction.\n\n## flattenEachCallback\n\nCallback for flattenEach\n\nType: [Function][1]\n\n### Parameters\n\n*   `currentFeature` **[Feature][7]** The current flattened feature being processed.\n*   `featureIndex` **[number][3]** The current index of the Feature being processed.\n*   `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed.\n\nReturns **void**&#x20;\n\n## flattenEach\n\nIterate over flattened features in any GeoJSON object, similar to\nArray.forEach.\n\n### Parameters\n\n*   `geojson` **([FeatureCollection][8] | [Feature][7] | [GeometryObject][10] | [GeometryCollection][12] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object\n*   `callback` **[flattenEachCallback][18]** a method that takes (currentFeature, featureIndex, multiFeatureIndex)\n\n### Examples\n\n```javascript\nvar features = turf.featureCollection([\n    turf.point([26, 37], {foo: 'bar'}),\n    turf.multiPoint([[40, 30], [36, 53]], {hello: 'world'})\n]);\n\nturf.flattenEach(features, function (currentFeature, featureIndex, multiFeatureIndex) {\n  //=currentFeature\n  //=featureIndex\n  //=multiFeatureIndex\n});\n```\n\nReturns **void**&#x20;\n\n## flattenReduceCallback\n\nCallback for flattenReduce\n\nThe first time the callback function is called, the values provided as arguments depend\non whether the reduce method has an initialValue argument.\n\nIf an initialValue is provided to the reduce method:\n\n*   The previousValue argument is initialValue.\n*   The currentValue argument is the value of the first element present in the array.\n\nIf an initialValue is not provided:\n\n*   The previousValue argument is the value of the first element present in the array.\n*   The currentValue argument is the value of the second element present in the array.\n\nType: [Function][1]\n\n### Parameters\n\n*   `previousValue` **Reducer** The accumulated value previously returned in the last invocation\n    of the callback, or initialValue, if supplied.\n*   `currentFeature` **[Feature][7]** The current Feature being processed.\n*   `featureIndex` **[number][3]** The current index of the Feature being processed.\n*   `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed.\n\nReturns **Reducer**&#x20;\n\n## flattenReduce\n\nReduce flattened features in any GeoJSON object, similar to Array.reduce().\n\n### Parameters\n\n*   `geojson` **([FeatureCollection][8] | [Feature][7] | [GeometryObject][10] | [GeometryCollection][12] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object\n*   `callback` **[flattenReduceCallback][19]** a method that takes (previousValue, currentFeature, featureIndex, multiFeatureIndex)\n*   `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback.\n\n### Examples\n\n```javascript\nvar features = turf.featureCollection([\n    turf.point([26, 37], {foo: 'bar'}),\n    turf.multiPoint([[40, 30], [36, 53]], {hello: 'world'})\n]);\n\nturf.flattenReduce(features, function (previousValue, currentFeature, featureIndex, multiFeatureIndex) {\n  //=previousValue\n  //=currentFeature\n  //=featureIndex\n  //=multiFeatureIndex\n  return currentFeature\n});\n```\n\nReturns **Reducer** The value that results from the reduction.\n\n## segmentEachCallback\n\nCallback for segmentEach\n\nType: [Function][1]\n\n### Parameters\n\n*   `currentSegment` **[Feature][7]<[LineString][20]>** The current Segment being processed.\n*   `featureIndex` **[number][3]** The current index of the Feature being processed.\n*   `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed.\n*   `geometryIndex` **[number][3]** The current index of the Geometry being processed.\n*   `segmentIndex` **[number][3]** The current index of the Segment being processed.\n\nReturns **void**&#x20;\n\n## segmentEach\n\nIterate over 2-vertex line segment in any GeoJSON object, similar to Array.forEach()\n(Multi)Point geometries do not contain segments therefore they are ignored during this operation.\n\n### Parameters\n\n*   `geojson` **AllGeoJSON** any GeoJSON\n*   `callback` **[segmentEachCallback][21]** a method that takes (currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex)\n\n### Examples\n\n```javascript\nvar polygon = turf.polygon([[[-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5]]]);\n\n// Iterate over GeoJSON by 2-vertex segments\nturf.segmentEach(polygon, function (currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex) {\n  //=currentSegment\n  //=featureIndex\n  //=multiFeatureIndex\n  //=geometryIndex\n  //=segmentIndex\n});\n\n// Calculate the total number of segments\nvar total = 0;\nturf.segmentEach(polygon, function () {\n    total++;\n});\n```\n\nReturns **void**&#x20;\n\n## segmentReduceCallback\n\nCallback for segmentReduce\n\nThe first time the callback function is called, the values provided as arguments depend\non whether the reduce method has an initialValue argument.\n\nIf an initialValue is provided to the reduce method:\n\n*   The previousValue argument is initialValue.\n*   The currentValue argument is the value of the first element present in the array.\n\nIf an initialValue is not provided:\n\n*   The previousValue argument is the value of the first element present in the array.\n*   The currentValue argument is the value of the second element present in the array.\n\nType: [Function][1]\n\n### Parameters\n\n*   `previousValue` **Reducer** The accumulated value previously returned in the last invocation\n    of the callback, or initialValue, if supplied.\n*   `currentSegment` **[Feature][7]<[LineString][20]>** The current Segment being processed.\n*   `featureIndex` **[number][3]** The current index of the Feature being processed.\n*   `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed.\n*   `geometryIndex` **[number][3]** The current index of the Geometry being processed.\n*   `segmentIndex` **[number][3]** The current index of the Segment being processed.\n\nReturns **Reducer**&#x20;\n\n## segmentReduce\n\nReduce 2-vertex line segment in any GeoJSON object, similar to Array.reduce()\n(Multi)Point geometries do not contain segments therefore they are ignored during this operation.\n\n### Parameters\n\n*   `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10])** any GeoJSON\n*   `callback` **[segmentReduceCallback][22]** a method that takes (previousValue, currentSegment, currentIndex)\n*   `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback.\n\n### Examples\n\n```javascript\nvar polygon = turf.polygon([[[-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5]]]);\n\n// Iterate over GeoJSON by 2-vertex segments\nturf.segmentReduce(polygon, function (previousSegment, currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex) {\n  //= previousSegment\n  //= currentSegment\n  //= featureIndex\n  //= multiFeatureIndex\n  //= geometryIndex\n  //= segmentIndex\n  return currentSegment\n});\n\n// Calculate the total number of segments\nvar initialValue = 0\nvar total = turf.segmentReduce(polygon, function (previousValue) {\n    previousValue++;\n    return previousValue;\n}, initialValue);\n```\n\nReturns **Reducer**&#x20;\n\n## lineEachCallback\n\nCallback for lineEach\n\nType: [Function][1]\n\n### Parameters\n\n*   `currentLine` **[Feature][7]<[LineString][20]>** The current LineString|LinearRing being processed\n*   `featureIndex` **[number][3]** The current index of the Feature being processed\n*   `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed\n*   `geometryIndex` **[number][3]** The current index of the Geometry being processed\n\nReturns **void**&#x20;\n\n## lineEach\n\nIterate over line or ring coordinates in LineString, Polygon, MultiLineString, MultiPolygon Features or Geometries,\nsimilar to Array.forEach.\n\n### Parameters\n\n*   `geojson` **([FeatureCollection][8]\\<Lines> | [Feature][7]\\<Lines> | Lines | [Feature][7]<[GeometryCollection][12]> | [GeometryCollection][12])** object\n*   `callback` **[lineEachCallback][23]** a method that takes (currentLine, featureIndex, multiFeatureIndex, geometryIndex)\n\n### Examples\n\n```javascript\nvar multiLine = turf.multiLineString([\n  [[26, 37], [35, 45]],\n  [[36, 53], [38, 50], [41, 55]]\n]);\n\nturf.lineEach(multiLine, function (currentLine, featureIndex, multiFeatureIndex, geometryIndex) {\n  //=currentLine\n  //=featureIndex\n  //=multiFeatureIndex\n  //=geometryIndex\n});\n```\n\nReturns **void**&#x20;\n\n## lineReduceCallback\n\nCallback for lineReduce\n\nThe first time the callback function is called, the values provided as arguments depend\non whether the reduce method has an initialValue argument.\n\nIf an initialValue is provided to the reduce method:\n\n*   The previousValue argument is initialValue.\n*   The currentValue argument is the value of the first element present in the array.\n\nIf an initialValue is not provided:\n\n*   The previousValue argument is the value of the first element present in the array.\n*   The currentValue argument is the value of the second element present in the array.\n\nType: [Function][1]\n\n### Parameters\n\n*   `previousValue` **Reducer** The accumulated value previously returned in the last invocation\n    of the callback, or initialValue, if supplied.\n*   `currentLine` **[Feature][7]<[LineString][20]>** The current LineString|LinearRing being processed.\n*   `featureIndex` **[number][3]** The current index of the Feature being processed\n*   `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed\n*   `geometryIndex` **[number][3]** The current index of the Geometry being processed\n\nReturns **Reducer**&#x20;\n\n## lineReduce\n\nReduce features in any GeoJSON object, similar to Array.reduce().\n\n### Parameters\n\n*   `geojson` **([FeatureCollection][8]\\<Lines> | [Feature][7]\\<Lines> | Lines | [Feature][7]<[GeometryCollection][12]> | [GeometryCollection][12])** object\n*   `callback` **[Function][1]** a method that takes (previousValue, currentLine, featureIndex, multiFeatureIndex, geometryIndex)\n*   `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback.\n\n### Examples\n\n```javascript\nvar multiPoly = turf.multiPolygon([\n  turf.polygon([[[12,48],[2,41],[24,38],[12,48]], [[9,44],[13,41],[13,45],[9,44]]]),\n  turf.polygon([[[5, 5], [0, 0], [2, 2], [4, 4], [5, 5]]])\n]);\n\nturf.lineReduce(multiPoly, function (previousValue, currentLine, featureIndex, multiFeatureIndex, geometryIndex) {\n  //=previousValue\n  //=currentLine\n  //=featureIndex\n  //=multiFeatureIndex\n  //=geometryIndex\n  return currentLine\n});\n```\n\nReturns **Reducer** The value that results from the reduction.\n\n## findSegment\n\nFinds a particular 2-vertex LineString Segment from a GeoJSON using `@turf/meta` indexes.\n\nNegative indexes are permitted.\nPoint & MultiPoint will always return null.\n\n### Parameters\n\n*   `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10])** Any GeoJSON Feature or Geometry\n*   `options` **[Object][24]** Optional parameters (optional, default `{}`)\n\n    *   `options.featureIndex` **[number][3]** Feature Index (optional, default `0`)\n    *   `options.multiFeatureIndex` **[number][3]** Multi-Feature Index (optional, default `0`)\n    *   `options.geometryIndex` **[number][3]** Geometry Index (optional, default `0`)\n    *   `options.segmentIndex` **[number][3]** Segment Index (optional, default `0`)\n    *   `options.properties` **[Object][24]** Translate Properties to output LineString (optional, default `{}`)\n    *   `options.bbox` **[BBox][15]** Translate BBox to output LineString (optional, default `{}`)\n    *   `options.id` **([number][3] | [string][25])** Translate Id to output LineString (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar multiLine = turf.multiLineString([\n    [[10, 10], [50, 30], [30, 40]],\n    [[-10, -10], [-50, -30], [-30, -40]]\n]);\n\n// First Segment (defaults are 0)\nturf.findSegment(multiLine);\n// => Feature<LineString<[[10, 10], [50, 30]]>>\n\n// First Segment of 2nd Multi Feature\nturf.findSegment(multiLine, {multiFeatureIndex: 1});\n// => Feature<LineString<[[-10, -10], [-50, -30]]>>\n\n// Last Segment of Last Multi Feature\nturf.findSegment(multiLine, {multiFeatureIndex: -1, segmentIndex: -1});\n// => Feature<LineString<[[-50, -30], [-30, -40]]>>\n```\n\nReturns **[Feature][7]<[LineString][20]>** 2-vertex GeoJSON Feature LineString\n\n## findPoint\n\nFinds a particular Point from a GeoJSON using `@turf/meta` indexes.\n\nNegative indexes are permitted.\n\n### Parameters\n\n*   `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10])** Any GeoJSON Feature or Geometry\n*   `options` **[Object][24]** Optional parameters (optional, default `{}`)\n\n    *   `options.featureIndex` **[number][3]** Feature Index (optional, default `0`)\n    *   `options.multiFeatureIndex` **[number][3]** Multi-Feature Index (optional, default `0`)\n    *   `options.geometryIndex` **[number][3]** Geometry Index (optional, default `0`)\n    *   `options.coordIndex` **[number][3]** Coord Index (optional, default `0`)\n    *   `options.properties` **[Object][24]** Translate Properties to output Point (optional, default `{}`)\n    *   `options.bbox` **[BBox][15]** Translate BBox to output Point (optional, default `{}`)\n    *   `options.id` **([number][3] | [string][25])** Translate Id to output Point (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar multiLine = turf.multiLineString([\n    [[10, 10], [50, 30], [30, 40]],\n    [[-10, -10], [-50, -30], [-30, -40]]\n]);\n\n// First Segment (defaults are 0)\nturf.findPoint(multiLine);\n// => Feature<Point<[10, 10]>>\n\n// First Segment of the 2nd Multi-Feature\nturf.findPoint(multiLine, {multiFeatureIndex: 1});\n// => Feature<Point<[-10, -10]>>\n\n// Last Segment of last Multi-Feature\nturf.findPoint(multiLine, {multiFeatureIndex: -1, coordIndex: -1});\n// => Feature<Point<[-30, -40]>>\n```\n\nReturns **[Feature][7]<[Point][26]>** 2-vertex GeoJSON Feature Point\n\n[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[4]: #coordeachcallback\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n[6]: #coordreducecallback\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[8]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[9]: #propeachcallback\n\n[10]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[11]: #propreducecallback\n\n[12]: https://tools.ietf.org/html/rfc7946#section-3.1.8\n\n[13]: #featureeachcallback\n\n[14]: #featurereducecallback\n\n[15]: https://tools.ietf.org/html/rfc7946#section-5\n\n[16]: #geomeachcallback\n\n[17]: #geomreducecallback\n\n[18]: #flatteneachcallback\n\n[19]: #flattenreducecallback\n\n[20]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[21]: #segmenteachcallback\n\n[22]: #segmentreducecallback\n\n[23]: #lineeachcallback\n\n[24]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[25]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n[26]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/meta\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-meta/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport * as random from \"@turf/random\";\nimport * as meta from \"./index.js\";\n\nconst fixtures = {\n  point: random.randomPoint(),\n  points: random.randomPoint(1000),\n  polygon: random.randomPolygon(),\n  polygons: random.randomPolygon(1000),\n};\n\nconst suite = new Benchmark.Suite(\"turf-meta\");\n\n/**\n * Benchmark Results\n * segmentEach   - point x 3,541,484 ops/sec ±6.03% (88 runs sampled)\n * segmentReduce - point x 3,245,821 ops/sec ±0.95% (86 runs sampled)\n * flattenEach   - point x 6,447,234 ops/sec ±5.56% (79 runs sampled)\n * flattenReduce - point x 5,415,555 ops/sec ±1.28% (85 runs sampled)\n * coordEach     - point x 19,941,547 ops/sec ±0.64% (84 runs sampled)\n * coordReduce   - point x 11,959,189 ops/sec ±1.53% (85 runs sampled)\n * propEach      - point x 29,317,809 ops/sec ±1.38% (85 runs sampled)\n * propReduce    - point x 14,552,839 ops/sec ±1.06% (90 runs sampled)\n * geomEach      - point x 22,137,140 ops/sec ±0.95% (88 runs sampled)\n * geomReduce    - point x 12,416,033 ops/sec ±0.94% (88 runs sampled)\n * featureEach   - point x 29,588,658 ops/sec ±1.02% (88 runs sampled)\n * featureReduce - point x 15,372,497 ops/sec ±1.11% (89 runs sampled)\n * coordAll      - point x 8,348,718 ops/sec ±0.68% (92 runs sampled)\n * segmentEach   - points x 7,568 ops/sec ±1.42% (90 runs sampled)\n * segmentReduce - points x 7,719 ops/sec ±0.88% (90 runs sampled)\n * flattenEach   - points x 18,821 ops/sec ±7.17% (76 runs sampled)\n * flattenReduce - points x 17,848 ops/sec ±1.10% (88 runs sampled)\n * coordEach     - points x 71,017 ops/sec ±0.80% (90 runs sampled)\n * coordReduce   - points x 46,986 ops/sec ±1.24% (91 runs sampled)\n * propEach      - points x 137,509 ops/sec ±0.38% (96 runs sampled)\n * propReduce    - points x 67,197 ops/sec ±1.44% (92 runs sampled)\n * geomEach      - points x 69,417 ops/sec ±0.77% (93 runs sampled)\n * geomReduce    - points x 45,830 ops/sec ±1.18% (92 runs sampled)\n * featureEach   - points x 151,234 ops/sec ±0.45% (92 runs sampled)\n * featureReduce - points x 71,235 ops/sec ±1.51% (92 runs sampled)\n * coordAll      - points x 40,960 ops/sec ±0.88% (94 runs sampled)\n * segmentEach   - polygon x 884,579 ops/sec ±2.06% (82 runs sampled)\n * segmentReduce - polygon x 770,112 ops/sec ±1.65% (85 runs sampled)\n * flattenEach   - polygon x 6,262,904 ops/sec ±2.84% (85 runs sampled)\n * flattenReduce - polygon x 4,944,606 ops/sec ±4.15% (82 runs sampled)\n * coordEach     - polygon x 6,153,922 ops/sec ±2.36% (87 runs sampled)\n * coordReduce   - polygon x 3,348,489 ops/sec ±2.08% (91 runs sampled)\n * propEach      - polygon x 30,816,868 ops/sec ±0.96% (88 runs sampled)\n * propReduce    - polygon x 15,664,358 ops/sec ±0.88% (91 runs sampled)\n * geomEach      - polygon x 21,426,447 ops/sec ±1.19% (91 runs sampled)\n * geomReduce    - polygon x 11,585,812 ops/sec ±2.61% (84 runs sampled)\n * featureEach   - polygon x 29,478,632 ops/sec ±1.86% (87 runs sampled)\n * featureReduce - polygon x 14,642,632 ops/sec ±2.62% (81 runs sampled)\n * coordAll      - polygon x 2,080,425 ops/sec ±13.27% (61 runs sampled)\n * segmentEach   - polygons x 1,042 ops/sec ±3.16% (76 runs sampled)\n * segmentReduce - polygons x 912 ops/sec ±4.70% (80 runs sampled)\n * flattenEach   - polygons x 17,587 ops/sec ±3.05% (85 runs sampled)\n * flattenReduce - polygons x 16,576 ops/sec ±1.33% (86 runs sampled)\n * coordEach     - polygons x 3,040 ops/sec ±15.62% (41 runs sampled)\n * coordReduce   - polygons x 4,100 ops/sec ±7.31% (85 runs sampled)\n * propEach      - polygons x 126,455 ops/sec ±0.85% (87 runs sampled)\n * propReduce    - polygons x 61,469 ops/sec ±2.96% (83 runs sampled)\n * geomEach      - polygons x 59,267 ops/sec ±5.22% (81 runs sampled)\n * geomReduce    - polygons x 24,424 ops/sec ±12.17% (52 runs sampled)\n * featureEach   - polygons x 110,212 ops/sec ±7.42% (71 runs sampled)\n * featureReduce - polygons x 63,244 ops/sec ±3.74% (81 runs sampled)\n * coordAll      - polygons x 1,662 ops/sec ±19.73% (44 runs sampled)\n * findSegment   - polygon x 2,558,258 ops/sec ±0.80% (84 runs sampled)\n * findSegment   - polygons x 2,512,410 ops/sec ±0.72% (93 runs sampled)\n * findPoint     - point x 2,339,238 ops/sec ±0.86% (85 runs sampled)\n * findPoint     - points x 2,298,279 ops/sec ±1.13% (88 runs sampled)\n * findPoint     - polygon x 2,216,808 ops/sec ±1.63% (86 runs sampled)\n * findPoint     - polygons x 2,160,583 ops/sec ±1.06% (87 runs sampled)\n */\nObject.keys(fixtures).forEach((name) => {\n  const geojson = fixtures[name];\n  const noop = () => {\n    /* no-op */\n  };\n  suite\n    .add(\"segmentEach   - \" + name, () => meta.segmentEach(geojson, noop))\n    .add(\"segmentReduce - \" + name, () => meta.segmentReduce(geojson, noop))\n    .add(\"flattenEach   - \" + name, () => meta.flattenEach(geojson, noop))\n    .add(\"flattenReduce - \" + name, () => meta.flattenReduce(geojson, noop))\n    .add(\"coordEach     - \" + name, () => meta.coordEach(geojson, noop))\n    .add(\"coordReduce   - \" + name, () => meta.coordReduce(geojson, noop))\n    .add(\"propEach      - \" + name, () => meta.propEach(geojson, noop))\n    .add(\"propReduce    - \" + name, () => meta.propReduce(geojson, noop))\n    .add(\"geomEach      - \" + name, () => meta.geomEach(geojson, noop))\n    .add(\"geomReduce    - \" + name, () => meta.geomReduce(geojson, noop))\n    .add(\"featureEach   - \" + name, () => meta.featureEach(geojson, noop))\n    .add(\"featureReduce - \" + name, () => meta.featureReduce(geojson, noop))\n    .add(\"coordAll      - \" + name, () => meta.coordAll(geojson))\n    .add(\"findSegment   - \" + name, () => meta.findSegment(geojson))\n    .add(\"findPoint     - \" + name, () => meta.findPoint(geojson));\n});\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-meta/index.ts",
    "content": "import { feature, point, lineString, isObject } from \"@turf/helpers\";\nimport {\n  Point,\n  LineString,\n  Polygon,\n  MultiLineString,\n  MultiPolygon,\n  FeatureCollection,\n  Feature,\n  Geometry,\n  GeometryObject,\n  GeometryCollection,\n  GeoJsonProperties,\n  BBox,\n  GeoJsonTypes,\n} from \"geojson\";\nimport { AllGeoJSON, Lines, Id } from \"@turf/helpers\";\n\n/**\n * Callback for coordEach\n *\n * @callback coordEachCallback\n * @param {number[]} currentCoord The current coordinate being processed.\n * @param {number} coordIndex The current index of the coordinate being processed.\n * @param {number} featureIndex The current index of the Feature being processed.\n * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed.\n * @param {number} geometryIndex The current index of the Geometry being processed.\n * @returns {void}\n */\n\n/**\n * Iterate over coordinates in any GeoJSON object, similar to Array.forEach()\n *\n * @function\n * @param {AllGeoJSON} geojson any GeoJSON object\n * @param {coordEachCallback} callback a method that takes (currentCoord, coordIndex, featureIndex, multiFeatureIndex)\n * @param {boolean} [excludeWrapCoord=false] whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration.\n * @returns {void}\n * @example\n * var features = turf.featureCollection([\n *   turf.point([26, 37], {\"foo\": \"bar\"}),\n *   turf.point([36, 53], {\"hello\": \"world\"})\n * ]);\n *\n * turf.coordEach(features, function (currentCoord, coordIndex, featureIndex, multiFeatureIndex, geometryIndex) {\n *   //=currentCoord\n *   //=coordIndex\n *   //=featureIndex\n *   //=multiFeatureIndex\n *   //=geometryIndex\n * });\n */\nfunction coordEach(\n  geojson: AllGeoJSON,\n  callback: (\n    currentCoord: number[],\n    coordIndex: number,\n    featureIndex: number,\n    multiFeatureIndex: number,\n    geometryIndex: number\n  ) => void,\n  excludeWrapCoord?: boolean\n): void {\n  // Handles null Geometry -- Skips this GeoJSON\n  if (geojson === null) return;\n  var j,\n    k,\n    l,\n    geometry,\n    stopG,\n    coords,\n    geometryMaybeCollection,\n    wrapShrink = 0,\n    coordIndex = 0,\n    isGeometryCollection,\n    type = geojson.type,\n    isFeatureCollection = type === \"FeatureCollection\",\n    isFeature = type === \"Feature\",\n    // @ts-expect-error: Known type conflict\n    stop = isFeatureCollection ? geojson.features.length : 1;\n\n  // This logic may look a little weird. The reason why it is that way\n  // is because it's trying to be fast. GeoJSON supports multiple kinds\n  // of objects at its root: FeatureCollection, Features, Geometries.\n  // This function has the responsibility of handling all of them, and that\n  // means that some of the `for` loops you see below actually just don't apply\n  // to certain inputs. For instance, if you give this just a\n  // Point geometry, then both loops are short-circuited and all we do\n  // is gradually rename the input until it's called 'geometry'.\n  //\n  // This also aims to allocate as few resources as possible: just a\n  // few numbers and booleans, rather than any temporary arrays as would\n  // be required with the normalization approach.\n  for (var featureIndex = 0; featureIndex < stop; featureIndex++) {\n    geometryMaybeCollection = isFeatureCollection\n      ? // @ts-expect-error: Known type conflict\n        geojson.features[featureIndex].geometry\n      : isFeature\n        ? // @ts-expect-error: Known type conflict\n          geojson.geometry\n        : geojson;\n    isGeometryCollection = geometryMaybeCollection\n      ? geometryMaybeCollection.type === \"GeometryCollection\"\n      : false;\n    stopG = isGeometryCollection\n      ? geometryMaybeCollection.geometries.length\n      : 1;\n\n    for (var geomIndex = 0; geomIndex < stopG; geomIndex++) {\n      var multiFeatureIndex = 0;\n      var geometryIndex = 0;\n      geometry = isGeometryCollection\n        ? geometryMaybeCollection.geometries[geomIndex]\n        : geometryMaybeCollection;\n\n      // Handles null Geometry -- Skips this geometry\n      if (geometry === null) continue;\n      coords = geometry.coordinates;\n      var geomType = geometry.type;\n\n      wrapShrink =\n        excludeWrapCoord &&\n        (geomType === \"Polygon\" || geomType === \"MultiPolygon\")\n          ? 1\n          : 0;\n\n      switch (geomType) {\n        case null:\n          break;\n        case \"Point\":\n          if (\n            // @ts-expect-error: Known type conflict\n            callback(\n              coords,\n              coordIndex,\n              featureIndex,\n              multiFeatureIndex,\n              geometryIndex\n            ) === false\n          )\n            // @ts-expect-error: Known type conflict\n            return false;\n          coordIndex++;\n          multiFeatureIndex++;\n          break;\n        case \"LineString\":\n        case \"MultiPoint\":\n          for (j = 0; j < coords.length; j++) {\n            if (\n              // @ts-expect-error: Known type conflict\n              callback(\n                coords[j],\n                coordIndex,\n                featureIndex,\n                multiFeatureIndex,\n                geometryIndex\n              ) === false\n            )\n              // @ts-expect-error: Known type conflict\n              return false;\n            coordIndex++;\n            if (geomType === \"MultiPoint\") multiFeatureIndex++;\n          }\n          if (geomType === \"LineString\") multiFeatureIndex++;\n          break;\n        case \"Polygon\":\n        case \"MultiLineString\":\n          for (j = 0; j < coords.length; j++) {\n            for (k = 0; k < coords[j].length - wrapShrink; k++) {\n              if (\n                // @ts-expect-error: Known type conflict\n                callback(\n                  coords[j][k],\n                  coordIndex,\n                  featureIndex,\n                  multiFeatureIndex,\n                  geometryIndex\n                ) === false\n              )\n                // @ts-expect-error: Known type conflict\n                return false;\n              coordIndex++;\n            }\n            if (geomType === \"MultiLineString\") multiFeatureIndex++;\n            if (geomType === \"Polygon\") geometryIndex++;\n          }\n          if (geomType === \"Polygon\") multiFeatureIndex++;\n          break;\n        case \"MultiPolygon\":\n          for (j = 0; j < coords.length; j++) {\n            geometryIndex = 0;\n            for (k = 0; k < coords[j].length; k++) {\n              for (l = 0; l < coords[j][k].length - wrapShrink; l++) {\n                if (\n                  // @ts-expect-error: Known type conflict\n                  callback(\n                    coords[j][k][l],\n                    coordIndex,\n                    featureIndex,\n                    multiFeatureIndex,\n                    geometryIndex\n                  ) === false\n                )\n                  // @ts-expect-error: Known type conflict\n                  return false;\n                coordIndex++;\n              }\n              geometryIndex++;\n            }\n            multiFeatureIndex++;\n          }\n          break;\n        case \"GeometryCollection\":\n          for (j = 0; j < geometry.geometries.length; j++)\n            if (\n              // @ts-expect-error: Known type conflict\n              coordEach(geometry.geometries[j], callback, excludeWrapCoord) ===\n              false\n            )\n              // @ts-expect-error: Known type conflict\n              return false;\n          break;\n        default:\n          throw new Error(\"Unknown Geometry Type\");\n      }\n    }\n  }\n}\n\n/**\n * Callback for coordReduce\n *\n * The first time the callback function is called, the values provided as arguments depend\n * on whether the reduce method has an initialValue argument.\n *\n * If an initialValue is provided to the reduce method:\n *  - The previousValue argument is initialValue.\n *  - The currentValue argument is the value of the first element present in the array.\n *\n * If an initialValue is not provided:\n *  - The previousValue argument is the value of the first element present in the array.\n *  - The currentValue argument is the value of the second element present in the array.\n *\n * @callback coordReduceCallback\n * @param {Reducer} previousValue The accumulated value previously returned in the last invocation\n * of the callback, or initialValue, if supplied.\n * @param {number[]} currentCoord The current coordinate being processed.\n * @param {number} coordIndex The current index of the coordinate being processed.\n * Starts at index 0, if an initialValue is provided, and at index 1 otherwise.\n * @param {number} featureIndex The current index of the Feature being processed.\n * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed.\n * @param {number} geometryIndex The current index of the Geometry being processed.\n * @returns {Reducer}\n */\n\n/**\n * Reduce coordinates in any GeoJSON object, similar to Array.reduce()\n *\n * @function\n * @param {AllGeoJSON} geojson any GeoJSON object\n * @param {coordReduceCallback} callback a method that takes (previousValue, currentCoord, coordIndex)\n * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback.\n * @param {boolean} [excludeWrapCoord=false] whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration.\n * @returns {Reducer} The value that results from the reduction.\n * @example\n * var features = turf.featureCollection([\n *   turf.point([26, 37], {\"foo\": \"bar\"}),\n *   turf.point([36, 53], {\"hello\": \"world\"})\n * ]);\n *\n * turf.coordReduce(features, function (previousValue, currentCoord, coordIndex, featureIndex, multiFeatureIndex, geometryIndex) {\n *   //=previousValue\n *   //=currentCoord\n *   //=coordIndex\n *   //=featureIndex\n *   //=multiFeatureIndex\n *   //=geometryIndex\n *   return currentCoord;\n * });\n */\nfunction coordReduce<Reducer>(\n  geojson: AllGeoJSON,\n  callback: (\n    previousValue: Reducer,\n    currentCoord: number[],\n    coordIndex: number,\n    featureIndex: number,\n    multiFeatureIndex: number,\n    geometryIndex: number\n  ) => Reducer,\n  initialValue?: Reducer,\n  excludeWrapCoord?: boolean\n): Reducer {\n  var previousValue = initialValue;\n  coordEach(\n    geojson,\n    function (\n      currentCoord,\n      coordIndex,\n      featureIndex,\n      multiFeatureIndex,\n      geometryIndex\n    ) {\n      if (coordIndex === 0 && initialValue === undefined)\n        // @ts-expect-error: Known type conflict\n        previousValue = currentCoord;\n      else\n        previousValue = callback(\n          // @ts-expect-error: Known type conflict\n          previousValue,\n          currentCoord,\n          coordIndex,\n          featureIndex,\n          multiFeatureIndex,\n          geometryIndex\n        );\n    },\n    excludeWrapCoord\n  );\n  // @ts-expect-error: Known type conflict\n  return previousValue;\n}\n\n/**\n * Callback for propEach\n *\n * @callback propEachCallback\n * @param {GeoJsonProperties} currentProperties The current Properties being processed.\n * @param {number} featureIndex The current index of the Feature being processed.\n * @returns {void}\n */\n\n/**\n * Iterate over properties in any GeoJSON object, similar to Array.forEach()\n *\n * @function\n * @param {FeatureCollection|Feature} geojson any GeoJSON object\n * @param {propEachCallback} callback a method that takes (currentProperties, featureIndex)\n * @returns {void}\n * @example\n * var features = turf.featureCollection([\n *     turf.point([26, 37], {foo: 'bar'}),\n *     turf.point([36, 53], {hello: 'world'})\n * ]);\n *\n * turf.propEach(features, function (currentProperties, featureIndex) {\n *   //=currentProperties\n *   //=featureIndex\n * });\n */\nfunction propEach<Props extends GeoJsonProperties>(\n  geojson: Feature<any> | FeatureCollection<any> | Feature<GeometryCollection>,\n  callback: (currentProperties: Props, featureIndex: number) => void\n): void {\n  var i;\n  switch (geojson.type) {\n    case \"FeatureCollection\":\n      for (i = 0; i < geojson.features.length; i++) {\n        // @ts-expect-error: Known type conflict\n        if (callback(geojson.features[i].properties, i) === false) break;\n      }\n      break;\n    case \"Feature\":\n      // @ts-expect-error: Known type conflict\n      callback(geojson.properties, 0);\n      break;\n  }\n}\n\n/**\n * Callback for propReduce\n *\n * The first time the callback function is called, the values provided as arguments depend\n * on whether the reduce method has an initialValue argument.\n *\n * If an initialValue is provided to the reduce method:\n *  - The previousValue argument is initialValue.\n *  - The currentValue argument is the value of the first element present in the array.\n *\n * If an initialValue is not provided:\n *  - The previousValue argument is the value of the first element present in the array.\n *  - The currentValue argument is the value of the second element present in the array.\n *\n * @callback propReduceCallback\n * @param {Reducer} previousValue The accumulated value previously returned in the last invocation\n * of the callback, or initialValue, if supplied.\n * @param {GeoJsonProperties} currentProperties The current Properties being processed.\n * @param {number} featureIndex The current index of the Feature being processed.\n * @returns {Reducer}\n */\n\n/**\n * Reduce properties in any GeoJSON object into a single value,\n * similar to how Array.reduce works. However, in this case we lazily run\n * the reduction, so an array of all properties is unnecessary.\n *\n * @function\n * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object\n * @param {propReduceCallback} callback a method that takes (previousValue, currentProperties, featureIndex)\n * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback.\n * @returns {Reducer} The value that results from the reduction.\n * @example\n * var features = turf.featureCollection([\n *     turf.point([26, 37], {foo: 'bar'}),\n *     turf.point([36, 53], {hello: 'world'})\n * ]);\n *\n * turf.propReduce(features, function (previousValue, currentProperties, featureIndex) {\n *   //=previousValue\n *   //=currentProperties\n *   //=featureIndex\n *   return currentProperties\n * });\n */\nfunction propReduce<Reducer, P extends GeoJsonProperties = GeoJsonProperties>(\n  geojson: Feature<any, P> | FeatureCollection<any, P> | Geometry,\n  callback: (\n    previousValue: Reducer,\n    currentProperties: P,\n    featureIndex: number\n  ) => Reducer,\n  initialValue?: Reducer\n): Reducer {\n  var previousValue = initialValue;\n  // @ts-expect-error: Known type conflict\n  propEach(geojson, function (currentProperties, featureIndex) {\n    if (featureIndex === 0 && initialValue === undefined)\n      // @ts-expect-error: Known type conflict\n      previousValue = currentProperties;\n    else\n      // @ts-expect-error: Known type conflict\n      previousValue = callback(previousValue, currentProperties, featureIndex);\n  });\n  // @ts-expect-error: Known type conflict\n  return previousValue;\n}\n\n/**\n * Callback for featureEach\n *\n * @callback featureEachCallback\n * @param {Feature<any>} currentFeature The current Feature being processed.\n * @param {number} featureIndex The current index of the Feature being processed.\n * @returns {void}\n */\n\n/**\n * Iterate over features in any GeoJSON object, similar to\n * Array.forEach.\n *\n * @function\n * @param {FeatureCollection|Feature|Feature<GeometryCollection>} geojson any GeoJSON object\n * @param {featureEachCallback} callback a method that takes (currentFeature, featureIndex)\n * @returns {void}\n * @example\n * var features = turf.featureCollection([\n *   turf.point([26, 37], {foo: 'bar'}),\n *   turf.point([36, 53], {hello: 'world'})\n * ]);\n *\n * turf.featureEach(features, function (currentFeature, featureIndex) {\n *   //=currentFeature\n *   //=featureIndex\n * });\n */\nfunction featureEach<\n  G extends GeometryObject,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  geojson:\n    | Feature<G, P>\n    | FeatureCollection<G, P>\n    | Feature<GeometryCollection, P>,\n  callback: (currentFeature: Feature<G, P>, featureIndex: number) => void\n): void {\n  if (geojson.type === \"Feature\") {\n    // @ts-expect-error: Known type conflict\n    callback(geojson, 0);\n  } else if (geojson.type === \"FeatureCollection\") {\n    for (var i = 0; i < geojson.features.length; i++) {\n      // @ts-expect-error: Known type conflict\n      if (callback(geojson.features[i], i) === false) break;\n    }\n  }\n}\n\n/**\n * Callback for featureReduce\n *\n * The first time the callback function is called, the values provided as arguments depend\n * on whether the reduce method has an initialValue argument.\n *\n * If an initialValue is provided to the reduce method:\n *  - The previousValue argument is initialValue.\n *  - The currentValue argument is the value of the first element present in the array.\n *\n * If an initialValue is not provided:\n *  - The previousValue argument is the value of the first element present in the array.\n *  - The currentValue argument is the value of the second element present in the array.\n *\n * @callback featureReduceCallback\n * @param {Reducer} previousValue The accumulated value previously returned in the last invocation\n * of the callback, or initialValue, if supplied.\n * @param {Feature} currentFeature The current Feature being processed.\n * @param {number} featureIndex The current index of the Feature being processed.\n * @returns {Reducer}\n */\n\n/**\n * Reduce features in any GeoJSON object, similar to Array.reduce().\n *\n * @function\n * @param {FeatureCollection|Feature|Feature<GeometryCollection>} geojson any GeoJSON object\n * @param {featureReduceCallback} callback a method that takes (previousValue, currentFeature, featureIndex)\n * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback.\n * @returns {Reducer} The value that results from the reduction.\n * @example\n * var features = turf.featureCollection([\n *   turf.point([26, 37], {\"foo\": \"bar\"}),\n *   turf.point([36, 53], {\"hello\": \"world\"})\n * ]);\n *\n * turf.featureReduce(features, function (previousValue, currentFeature, featureIndex) {\n *   //=previousValue\n *   //=currentFeature\n *   //=featureIndex\n *   return currentFeature\n * });\n */\nfunction featureReduce<\n  Reducer,\n  G extends GeometryObject,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  geojson:\n    | Feature<G, P>\n    | FeatureCollection<G, P>\n    | Feature<GeometryCollection, P>,\n  callback: (\n    previousValue: Reducer,\n    currentFeature: Feature<G, P>,\n    featureIndex: number\n  ) => Reducer,\n  initialValue?: Reducer\n): Reducer {\n  var previousValue = initialValue;\n  featureEach(geojson, function (currentFeature, featureIndex) {\n    if (featureIndex === 0 && initialValue === undefined)\n      // @ts-expect-error: Known type conflict\n      previousValue = currentFeature;\n    // @ts-expect-error: Known type conflict\n    else previousValue = callback(previousValue, currentFeature, featureIndex);\n  });\n  // @ts-expect-error: Known type conflict\n  return previousValue;\n}\n\n/**\n * Get all coordinates from any GeoJSON object.\n *\n * @function\n * @param {AllGeoJSON} geojson any GeoJSON object\n * @returns {Array<Array<number>>} coordinate position array\n * @example\n * var features = turf.featureCollection([\n *   turf.point([26, 37], {foo: 'bar'}),\n *   turf.point([36, 53], {hello: 'world'})\n * ]);\n *\n * var coords = turf.coordAll(features);\n * //= [[26, 37], [36, 53]]\n */\nfunction coordAll(geojson: AllGeoJSON): number[][] {\n  // @ts-expect-error: Known type conflict\n  var coords = [];\n  coordEach(geojson, function (coord) {\n    coords.push(coord);\n  });\n  // @ts-expect-error: Known type conflict\n  return coords;\n}\n\n/**\n * Callback for geomEach\n *\n * @callback geomEachCallback\n * @param {GeometryObject} currentGeometry The current Geometry being processed.\n * @param {number} featureIndex The current index of the Feature being processed.\n * @param {GeoJsonProperties} featureProperties The current Feature Properties being processed.\n * @param {BBox} featureBBox The current Feature BBox being processed.\n * @param {Id} featureId The current Feature Id being processed.\n * @returns {void}\n */\n\n/**\n * Iterate over each geometry in any GeoJSON object, similar to Array.forEach()\n *\n * @function\n * @param {FeatureCollection|Feature|Geometry|GeometryObject|Feature<GeometryCollection>} geojson any GeoJSON object\n * @param {geomEachCallback} callback a method that takes (currentGeometry, featureIndex, featureProperties, featureBBox, featureId)\n * @returns {void}\n * @example\n * var features = turf.featureCollection([\n *     turf.point([26, 37], {foo: 'bar'}),\n *     turf.point([36, 53], {hello: 'world'})\n * ]);\n *\n * turf.geomEach(features, function (currentGeometry, featureIndex, featureProperties, featureBBox, featureId) {\n *   //=currentGeometry\n *   //=featureIndex\n *   //=featureProperties\n *   //=featureBBox\n *   //=featureId\n * });\n */\nfunction geomEach<\n  G extends GeometryObject | null,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  geojson:\n    | Feature<G, P>\n    | FeatureCollection<G, P>\n    | G\n    | GeometryCollection\n    | Feature<GeometryCollection, P>,\n  callback: (\n    currentGeometry: G,\n    featureIndex: number,\n    featureProperties: P,\n    featureBBox: BBox,\n    featureId: Id\n  ) => void\n): void {\n  var i,\n    j,\n    g,\n    geometry,\n    stopG,\n    geometryMaybeCollection,\n    isGeometryCollection,\n    featureProperties,\n    featureBBox,\n    featureId,\n    featureIndex = 0,\n    // @ts-expect-error: Known type conflict\n    isFeatureCollection = geojson.type === \"FeatureCollection\",\n    // @ts-expect-error: Known type conflict\n    isFeature = geojson.type === \"Feature\",\n    // @ts-expect-error: Known type conflict\n    stop = isFeatureCollection ? geojson.features.length : 1;\n\n  // This logic may look a little weird. The reason why it is that way\n  // is because it's trying to be fast. GeoJSON supports multiple kinds\n  // of objects at its root: FeatureCollection, Features, Geometries.\n  // This function has the responsibility of handling all of them, and that\n  // means that some of the `for` loops you see below actually just don't apply\n  // to certain inputs. For instance, if you give this just a\n  // Point geometry, then both loops are short-circuited and all we do\n  // is gradually rename the input until it's called 'geometry'.\n  //\n  // This also aims to allocate as few resources as possible: just a\n  // few numbers and booleans, rather than any temporary arrays as would\n  // be required with the normalization approach.\n  for (i = 0; i < stop; i++) {\n    geometryMaybeCollection = isFeatureCollection\n      ? // @ts-expect-error: Known type conflict\n        geojson.features[i].geometry\n      : isFeature\n        ? // @ts-expect-error: Known type conflict\n          geojson.geometry\n        : geojson;\n    featureProperties = isFeatureCollection\n      ? // @ts-expect-error: Known type conflict\n        geojson.features[i].properties\n      : isFeature\n        ? // @ts-expect-error: Known type conflict\n          geojson.properties\n        : {};\n    featureBBox = isFeatureCollection\n      ? // @ts-expect-error: Known type conflict\n        geojson.features[i].bbox\n      : isFeature\n        ? // @ts-expect-error: Known type conflict\n          geojson.bbox\n        : undefined;\n    featureId = isFeatureCollection\n      ? // @ts-expect-error: Known type conflict\n        geojson.features[i].id\n      : isFeature\n        ? // @ts-expect-error: Known type conflict\n          geojson.id\n        : undefined;\n    isGeometryCollection = geometryMaybeCollection\n      ? geometryMaybeCollection.type === \"GeometryCollection\"\n      : false;\n    stopG = isGeometryCollection\n      ? geometryMaybeCollection.geometries.length\n      : 1;\n\n    for (g = 0; g < stopG; g++) {\n      geometry = isGeometryCollection\n        ? geometryMaybeCollection.geometries[g]\n        : geometryMaybeCollection;\n\n      // Handle null Geometry\n      if (geometry === null) {\n        if (\n          // @ts-expect-error: Known type conflict\n          callback(\n            // @ts-expect-error: Known type conflict\n            null,\n            featureIndex,\n            featureProperties,\n            featureBBox,\n            featureId\n          ) === false\n        )\n          // @ts-expect-error: Known type conflict\n          return false;\n        continue;\n      }\n      switch (geometry.type) {\n        case \"Point\":\n        case \"LineString\":\n        case \"MultiPoint\":\n        case \"Polygon\":\n        case \"MultiLineString\":\n        case \"MultiPolygon\": {\n          if (\n            // @ts-expect-error: Known type conflict\n            callback(\n              geometry,\n              featureIndex,\n              featureProperties,\n              featureBBox,\n              featureId\n            ) === false\n          )\n            // @ts-expect-error: Known type conflict\n            return false;\n          break;\n        }\n        case \"GeometryCollection\": {\n          for (j = 0; j < geometry.geometries.length; j++) {\n            if (\n              // @ts-expect-error: Known type conflict\n              callback(\n                geometry.geometries[j],\n                featureIndex,\n                featureProperties,\n                featureBBox,\n                featureId\n              ) === false\n            )\n              // @ts-expect-error: Known type conflict\n              return false;\n          }\n          break;\n        }\n        default:\n          throw new Error(\"Unknown Geometry Type\");\n      }\n    }\n    // Only increase `featureIndex` per each feature\n    featureIndex++;\n  }\n}\n\n/**\n * Callback for geomReduce\n *\n * The first time the callback function is called, the values provided as arguments depend\n * on whether the reduce method has an initialValue argument.\n *\n * If an initialValue is provided to the reduce method:\n *  - The previousValue argument is initialValue.\n *  - The currentValue argument is the value of the first element present in the array.\n *\n * If an initialValue is not provided:\n *  - The previousValue argument is the value of the first element present in the array.\n *  - The currentValue argument is the value of the second element present in the array.\n *\n * @callback geomReduceCallback\n * @param {Reducer} previousValue The accumulated value previously returned in the last invocation\n * of the callback, or initialValue, if supplied.\n * @param {GeometryObject} currentGeometry The current Geometry being processed.\n * @param {number} featureIndex The current index of the Feature being processed.\n * @param {GeoJsonProperties} featureProperties The current Feature Properties being processed.\n * @param {BBox} featureBBox The current Feature BBox being processed.\n * @param {Id} featureId The current Feature Id being processed.\n * @returns {Reducer}\n */\n\n/**\n * Reduce geometry in any GeoJSON object, similar to Array.reduce().\n *\n * @function\n * @param {FeatureCollection|Feature|GeometryObject|GeometryCollection|Feature<GeometryCollection>} geojson any GeoJSON object\n * @param {geomReduceCallback} callback a method that takes (previousValue, currentGeometry, featureIndex, featureProperties, featureBBox, featureId)\n * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback.\n * @returns {Reducer} The value that results from the reduction.\n * @example\n * var features = turf.featureCollection([\n *     turf.point([26, 37], {foo: 'bar'}),\n *     turf.point([36, 53], {hello: 'world'})\n * ]);\n *\n * turf.geomReduce(features, function (previousValue, currentGeometry, featureIndex, featureProperties, featureBBox, featureId) {\n *   //=previousValue\n *   //=currentGeometry\n *   //=featureIndex\n *   //=featureProperties\n *   //=featureBBox\n *   //=featureId\n *   return currentGeometry\n * });\n */\nfunction geomReduce<\n  Reducer,\n  G extends GeometryObject,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  geojson:\n    | Feature<G, P>\n    | FeatureCollection<G, P>\n    | G\n    | GeometryCollection\n    | Feature<GeometryCollection, P>,\n  callback: (\n    previousValue: Reducer,\n    currentGeometry: G,\n    featureIndex: number,\n    featureProperties: P,\n    featureBBox: BBox,\n    featureId: Id\n  ) => Reducer,\n  initialValue?: Reducer\n): Reducer {\n  var previousValue = initialValue;\n  geomEach(\n    geojson,\n    function (\n      currentGeometry,\n      featureIndex,\n      featureProperties,\n      featureBBox,\n      featureId\n    ) {\n      if (featureIndex === 0 && initialValue === undefined)\n        // @ts-expect-error: Known type conflict\n        previousValue = currentGeometry;\n      else\n        previousValue = callback(\n          // @ts-expect-error: Known type conflict\n          previousValue,\n          currentGeometry,\n          featureIndex,\n          featureProperties,\n          featureBBox,\n          featureId\n        );\n    }\n  );\n  // @ts-expect-error: Known type conflict\n  return previousValue;\n}\n\n/**\n * Callback for flattenEach\n *\n * @callback flattenEachCallback\n * @param {Feature} currentFeature The current flattened feature being processed.\n * @param {number} featureIndex The current index of the Feature being processed.\n * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed.\n * @returns {void}\n */\n\n/**\n * Iterate over flattened features in any GeoJSON object, similar to\n * Array.forEach.\n *\n * @function\n * @param {FeatureCollection|Feature|GeometryObject|GeometryCollection|Feature<GeometryCollection>} geojson any GeoJSON object\n * @param {flattenEachCallback} callback a method that takes (currentFeature, featureIndex, multiFeatureIndex)\n * @returns {void}\n * @example\n * var features = turf.featureCollection([\n *     turf.point([26, 37], {foo: 'bar'}),\n *     turf.multiPoint([[40, 30], [36, 53]], {hello: 'world'})\n * ]);\n *\n * turf.flattenEach(features, function (currentFeature, featureIndex, multiFeatureIndex) {\n *   //=currentFeature\n *   //=featureIndex\n *   //=multiFeatureIndex\n * });\n */\nfunction flattenEach<\n  G extends GeometryObject = GeometryObject,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  geojson:\n    | Feature<G, P>\n    | FeatureCollection<G, P>\n    | G\n    | GeometryCollection\n    | Feature<GeometryCollection, P>,\n  callback: (\n    currentFeature: Feature<G, P>,\n    featureIndex: number,\n    multiFeatureIndex: number\n  ) => void\n): void {\n  geomEach(geojson, function (geometry, featureIndex, properties, bbox, id) {\n    // Callback for single geometry\n    var type = geometry === null ? null : geometry.type;\n    switch (type) {\n      case null:\n      case \"Point\":\n      case \"LineString\":\n      case \"Polygon\":\n        if (\n          // @ts-expect-error: Known type conflict\n          callback(\n            feature(geometry, properties, { bbox: bbox, id: id }),\n            featureIndex,\n            0\n          ) === false\n        )\n          return false;\n        return;\n    }\n\n    var geomType;\n\n    // Callback for multi-geometry\n    switch (type) {\n      case \"MultiPoint\":\n        geomType = \"Point\";\n        break;\n      case \"MultiLineString\":\n        geomType = \"LineString\";\n        break;\n      case \"MultiPolygon\":\n        geomType = \"Polygon\";\n        break;\n    }\n\n    for (\n      var multiFeatureIndex = 0;\n      // @ts-expect-error: Known type conflict\n      multiFeatureIndex < geometry.coordinates.length;\n      multiFeatureIndex++\n    ) {\n      // @ts-expect-error: Known type conflict\n      var coordinate = geometry.coordinates[multiFeatureIndex];\n      var geom = {\n        type: geomType,\n        coordinates: coordinate,\n      };\n      if (\n        // @ts-expect-error: Known type conflict\n        callback(feature(geom, properties), featureIndex, multiFeatureIndex) ===\n        false\n      )\n        return false;\n    }\n  });\n}\n\n/**\n * Callback for flattenReduce\n *\n * The first time the callback function is called, the values provided as arguments depend\n * on whether the reduce method has an initialValue argument.\n *\n * If an initialValue is provided to the reduce method:\n *  - The previousValue argument is initialValue.\n *  - The currentValue argument is the value of the first element present in the array.\n *\n * If an initialValue is not provided:\n *  - The previousValue argument is the value of the first element present in the array.\n *  - The currentValue argument is the value of the second element present in the array.\n *\n * @callback flattenReduceCallback\n * @param {Reducer} previousValue The accumulated value previously returned in the last invocation\n * of the callback, or initialValue, if supplied.\n * @param {Feature} currentFeature The current Feature being processed.\n * @param {number} featureIndex The current index of the Feature being processed.\n * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed.\n * @returns {Reducer}\n */\n\n/**\n * Reduce flattened features in any GeoJSON object, similar to Array.reduce().\n *\n * @function\n * @param {FeatureCollection|Feature|GeometryObject|GeometryCollection|Feature<GeometryCollection>} geojson any GeoJSON object\n * @param {flattenReduceCallback} callback a method that takes (previousValue, currentFeature, featureIndex, multiFeatureIndex)\n * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback.\n * @returns {Reducer} The value that results from the reduction.\n * @example\n * var features = turf.featureCollection([\n *     turf.point([26, 37], {foo: 'bar'}),\n *     turf.multiPoint([[40, 30], [36, 53]], {hello: 'world'})\n * ]);\n *\n * turf.flattenReduce(features, function (previousValue, currentFeature, featureIndex, multiFeatureIndex) {\n *   //=previousValue\n *   //=currentFeature\n *   //=featureIndex\n *   //=multiFeatureIndex\n *   return currentFeature\n * });\n */\nfunction flattenReduce<\n  Reducer,\n  G extends GeometryObject,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  geojson:\n    | Feature<G, P>\n    | FeatureCollection<G, P>\n    | G\n    | GeometryCollection\n    | Feature<GeometryCollection, P>,\n  callback: (\n    previousValue: Reducer,\n    currentFeature: Feature<G, P>,\n    featureIndex: number,\n    multiFeatureIndex: number\n  ) => Reducer,\n  initialValue?: Reducer\n): Reducer {\n  var previousValue = initialValue;\n  flattenEach(\n    geojson,\n    function (currentFeature, featureIndex, multiFeatureIndex) {\n      if (\n        featureIndex === 0 &&\n        multiFeatureIndex === 0 &&\n        initialValue === undefined\n      )\n        // @ts-expect-error: Known type conflict\n        previousValue = currentFeature;\n      else\n        previousValue = callback(\n          // @ts-expect-error: Known type conflict\n          previousValue,\n          currentFeature,\n          featureIndex,\n          multiFeatureIndex\n        );\n    }\n  );\n  // @ts-expect-error: Known type conflict\n  return previousValue;\n}\n\n/**\n * Callback for segmentEach\n *\n * @callback segmentEachCallback\n * @param {Feature<LineString>} currentSegment The current Segment being processed.\n * @param {number} featureIndex The current index of the Feature being processed.\n * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed.\n * @param {number} geometryIndex The current index of the Geometry being processed.\n * @param {number} segmentIndex The current index of the Segment being processed.\n * @returns {void}\n */\n\n/**\n * Iterate over 2-vertex line segment in any GeoJSON object, similar to Array.forEach()\n * (Multi)Point geometries do not contain segments therefore they are ignored during this operation.\n *\n * @param {AllGeoJSON} geojson any GeoJSON\n * @param {segmentEachCallback} callback a method that takes (currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex)\n * @returns {void}\n * @example\n * var polygon = turf.polygon([[[-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5]]]);\n *\n * // Iterate over GeoJSON by 2-vertex segments\n * turf.segmentEach(polygon, function (currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex) {\n *   //=currentSegment\n *   //=featureIndex\n *   //=multiFeatureIndex\n *   //=geometryIndex\n *   //=segmentIndex\n * });\n *\n * // Calculate the total number of segments\n * var total = 0;\n * turf.segmentEach(polygon, function () {\n *     total++;\n * });\n */\nfunction segmentEach<P extends GeoJsonProperties = GeoJsonProperties>(\n  geojson: AllGeoJSON,\n  callback: (\n    currentSegment?: Feature<LineString, P>,\n    featureIndex?: number,\n    multiFeatureIndex?: number,\n    segmentIndex?: number,\n    geometryIndex?: number\n  ) => void\n): void {\n  flattenEach(geojson, function (feature, featureIndex, multiFeatureIndex) {\n    var segmentIndex = 0;\n\n    // Exclude null Geometries\n    if (!feature.geometry) return;\n    // (Multi)Point geometries do not contain segments therefore they are ignored during this operation.\n    var type = feature.geometry.type;\n    if (type === \"Point\" || type === \"MultiPoint\") return;\n\n    // Generate 2-vertex line segments\n    // @ts-expect-error: Known type conflict\n    var previousCoords;\n    var previousFeatureIndex = 0;\n    var previousMultiIndex = 0;\n    var prevGeomIndex = 0;\n    if (\n      // @ts-expect-error: Known type conflict\n      coordEach(\n        feature,\n        function (\n          currentCoord,\n          coordIndex,\n          featureIndexCoord,\n          multiPartIndexCoord,\n          geometryIndex\n        ) {\n          // Simulating a meta.coordReduce() since `reduce` operations cannot be stopped by returning `false`\n          if (\n            // @ts-expect-error: Known type conflict\n            previousCoords === undefined ||\n            featureIndex > previousFeatureIndex ||\n            multiPartIndexCoord > previousMultiIndex ||\n            geometryIndex > prevGeomIndex\n          ) {\n            previousCoords = currentCoord;\n            previousFeatureIndex = featureIndex;\n            previousMultiIndex = multiPartIndexCoord;\n            prevGeomIndex = geometryIndex;\n            segmentIndex = 0;\n            return;\n          }\n          var currentSegment = lineString(\n            // @ts-expect-error: Known type conflict\n            [previousCoords, currentCoord],\n            feature.properties\n          );\n          if (\n            // @ts-expect-error: Known type conflict\n            callback(\n              // @ts-expect-error: Known type conflict\n              currentSegment,\n              featureIndex,\n              multiFeatureIndex,\n              geometryIndex,\n              segmentIndex\n            ) === false\n          )\n            return false;\n          segmentIndex++;\n          previousCoords = currentCoord;\n        }\n      ) === false\n    )\n      return false;\n  });\n}\n\n/**\n * Callback for segmentReduce\n *\n * The first time the callback function is called, the values provided as arguments depend\n * on whether the reduce method has an initialValue argument.\n *\n * If an initialValue is provided to the reduce method:\n *  - The previousValue argument is initialValue.\n *  - The currentValue argument is the value of the first element present in the array.\n *\n * If an initialValue is not provided:\n *  - The previousValue argument is the value of the first element present in the array.\n *  - The currentValue argument is the value of the second element present in the array.\n *\n * @callback segmentReduceCallback\n * @param {Reducer} previousValue The accumulated value previously returned in the last invocation\n * of the callback, or initialValue, if supplied.\n * @param {Feature<LineString>} currentSegment The current Segment being processed.\n * @param {number} featureIndex The current index of the Feature being processed.\n * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed.\n * @param {number} geometryIndex The current index of the Geometry being processed.\n * @param {number} segmentIndex The current index of the Segment being processed.\n * @returns {Reducer}\n */\n\n/**\n * Reduce 2-vertex line segment in any GeoJSON object, similar to Array.reduce()\n * (Multi)Point geometries do not contain segments therefore they are ignored during this operation.\n *\n * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON\n * @param {segmentReduceCallback} callback a method that takes (previousValue, currentSegment, currentIndex)\n * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback.\n * @returns {Reducer}\n * @example\n * var polygon = turf.polygon([[[-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5]]]);\n *\n * // Iterate over GeoJSON by 2-vertex segments\n * turf.segmentReduce(polygon, function (previousSegment, currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex) {\n *   //= previousSegment\n *   //= currentSegment\n *   //= featureIndex\n *   //= multiFeatureIndex\n *   //= geometryIndex\n *   //= segmentIndex\n *   return currentSegment\n * });\n *\n * // Calculate the total number of segments\n * var initialValue = 0\n * var total = turf.segmentReduce(polygon, function (previousValue) {\n *     previousValue++;\n *     return previousValue;\n * }, initialValue);\n */\nfunction segmentReduce<\n  Reducer,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  geojson:\n    | FeatureCollection<Lines, P>\n    | Feature<Lines, P>\n    | Lines\n    | Feature<GeometryCollection, P>\n    | GeometryCollection,\n  callback: (\n    previousValue?: Reducer,\n    currentSegment?: Feature<LineString, P>,\n    featureIndex?: number,\n    multiFeatureIndex?: number,\n    segmentIndex?: number,\n    geometryIndex?: number\n  ) => Reducer,\n  initialValue?: Reducer\n): Reducer {\n  var previousValue = initialValue;\n  var started = false;\n  segmentEach(\n    geojson,\n    function (\n      currentSegment,\n      featureIndex,\n      multiFeatureIndex,\n      geometryIndex,\n      segmentIndex\n    ) {\n      if (started === false && initialValue === undefined)\n        // @ts-expect-error: Known type conflict\n        previousValue = currentSegment;\n      else\n        previousValue = callback(\n          previousValue,\n          // @ts-expect-error: Known type conflict\n          currentSegment,\n          featureIndex,\n          multiFeatureIndex,\n          geometryIndex,\n          segmentIndex\n        );\n      started = true;\n    }\n  );\n  // @ts-expect-error: Known type conflict\n  return previousValue;\n}\n\n/**\n * Callback for lineEach\n *\n * @callback lineEachCallback\n * @param {Feature<LineString>} currentLine The current LineString|LinearRing being processed\n * @param {number} featureIndex The current index of the Feature being processed\n * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed\n * @param {number} geometryIndex The current index of the Geometry being processed\n * @returns {void}\n */\n\n/**\n * Iterate over line or ring coordinates in LineString, Polygon, MultiLineString, MultiPolygon Features or Geometries,\n * similar to Array.forEach.\n *\n * @function\n * @param {FeatureCollection<Lines>|Feature<Lines>|Lines|Feature<GeometryCollection>|GeometryCollection} geojson object\n * @param {lineEachCallback} callback a method that takes (currentLine, featureIndex, multiFeatureIndex, geometryIndex)\n * @returns {void}\n * @example\n * var multiLine = turf.multiLineString([\n *   [[26, 37], [35, 45]],\n *   [[36, 53], [38, 50], [41, 55]]\n * ]);\n *\n * turf.lineEach(multiLine, function (currentLine, featureIndex, multiFeatureIndex, geometryIndex) {\n *   //=currentLine\n *   //=featureIndex\n *   //=multiFeatureIndex\n *   //=geometryIndex\n * });\n */\nfunction lineEach<P extends GeoJsonProperties = GeoJsonProperties>(\n  geojson:\n    | FeatureCollection<Lines, P>\n    | Feature<Lines, P>\n    | Lines\n    | Feature<GeometryCollection, P>\n    | GeometryCollection,\n  callback: (\n    currentLine: Feature<LineString, P>,\n    featureIndex?: number,\n    multiFeatureIndex?: number,\n    geometryIndex?: number\n  ) => void\n): void {\n  // validation\n  if (!geojson) throw new Error(\"geojson is required\");\n\n  flattenEach(geojson, function (feature, featureIndex, multiFeatureIndex) {\n    if (feature.geometry === null) return;\n    var type = feature.geometry.type;\n    var coords = feature.geometry.coordinates;\n    switch (type) {\n      case \"LineString\":\n        // @ts-expect-error: Known type conflict\n        if (callback(feature, featureIndex, multiFeatureIndex, 0, 0) === false)\n          return false;\n        break;\n      case \"Polygon\":\n        for (\n          var geometryIndex = 0;\n          geometryIndex < coords.length;\n          geometryIndex++\n        ) {\n          if (\n            // @ts-expect-error: Known type conflict\n            callback(\n              // @ts-expect-error: Known type conflict\n              lineString(coords[geometryIndex], feature.properties),\n              featureIndex,\n              multiFeatureIndex,\n              geometryIndex\n            ) === false\n          )\n            return false;\n        }\n        break;\n    }\n  });\n}\n\n/**\n * Callback for lineReduce\n *\n * The first time the callback function is called, the values provided as arguments depend\n * on whether the reduce method has an initialValue argument.\n *\n * If an initialValue is provided to the reduce method:\n *  - The previousValue argument is initialValue.\n *  - The currentValue argument is the value of the first element present in the array.\n *\n * If an initialValue is not provided:\n *  - The previousValue argument is the value of the first element present in the array.\n *  - The currentValue argument is the value of the second element present in the array.\n *\n * @callback lineReduceCallback\n * @param {Reducer} previousValue The accumulated value previously returned in the last invocation\n * of the callback, or initialValue, if supplied.\n * @param {Feature<LineString>} currentLine The current LineString|LinearRing being processed.\n * @param {number} featureIndex The current index of the Feature being processed\n * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed\n * @param {number} geometryIndex The current index of the Geometry being processed\n * @returns {Reducer}\n */\n\n/**\n * Reduce features in any GeoJSON object, similar to Array.reduce().\n *\n * @function\n * @param {FeatureCollection<Lines>|Feature<Lines>|Lines|Feature<GeometryCollection>|GeometryCollection} geojson object\n * @param {Function} callback a method that takes (previousValue, currentLine, featureIndex, multiFeatureIndex, geometryIndex)\n * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback.\n * @returns {Reducer} The value that results from the reduction.\n * @example\n * var multiPoly = turf.multiPolygon([\n *   turf.polygon([[[12,48],[2,41],[24,38],[12,48]], [[9,44],[13,41],[13,45],[9,44]]]),\n *   turf.polygon([[[5, 5], [0, 0], [2, 2], [4, 4], [5, 5]]])\n * ]);\n *\n * turf.lineReduce(multiPoly, function (previousValue, currentLine, featureIndex, multiFeatureIndex, geometryIndex) {\n *   //=previousValue\n *   //=currentLine\n *   //=featureIndex\n *   //=multiFeatureIndex\n *   //=geometryIndex\n *   return currentLine\n * });\n */\nfunction lineReduce<Reducer, P extends GeoJsonProperties = GeoJsonProperties>(\n  geojson:\n    | FeatureCollection<Lines, P>\n    | Feature<Lines, P>\n    | Lines\n    | Feature<GeometryCollection, P>\n    | GeometryCollection,\n  callback: (\n    previousValue?: Reducer,\n    currentLine?: Feature<LineString, P>,\n    featureIndex?: number,\n    multiFeatureIndex?: number,\n    geometryIndex?: number\n  ) => Reducer,\n  initialValue?: Reducer\n): Reducer {\n  var previousValue = initialValue;\n  lineEach(\n    geojson,\n    function (currentLine, featureIndex, multiFeatureIndex, geometryIndex) {\n      if (featureIndex === 0 && initialValue === undefined)\n        // @ts-expect-error: Known type conflict\n        previousValue = currentLine;\n      else\n        previousValue = callback(\n          previousValue,\n          currentLine,\n          featureIndex,\n          multiFeatureIndex,\n          geometryIndex\n        );\n    }\n  );\n  // @ts-expect-error: Known type conflict\n  return previousValue;\n}\n\n/**\n * Finds a particular 2-vertex LineString Segment from a GeoJSON using `@turf/meta` indexes.\n *\n * Negative indexes are permitted.\n * Point & MultiPoint will always return null.\n *\n * @param {FeatureCollection|Feature|Geometry} geojson Any GeoJSON Feature or Geometry\n * @param {Object} [options={}] Optional parameters\n * @param {number} [options.featureIndex=0] Feature Index\n * @param {number} [options.multiFeatureIndex=0] Multi-Feature Index\n * @param {number} [options.geometryIndex=0] Geometry Index\n * @param {number} [options.segmentIndex=0] Segment Index\n * @param {Object} [options.properties={}] Translate Properties to output LineString\n * @param {BBox} [options.bbox={}] Translate BBox to output LineString\n * @param {number|string} [options.id={}] Translate Id to output LineString\n * @returns {Feature<LineString>} 2-vertex GeoJSON Feature LineString\n * @example\n * var multiLine = turf.multiLineString([\n *     [[10, 10], [50, 30], [30, 40]],\n *     [[-10, -10], [-50, -30], [-30, -40]]\n * ]);\n *\n * // First Segment (defaults are 0)\n * turf.findSegment(multiLine);\n * // => Feature<LineString<[[10, 10], [50, 30]]>>\n *\n * // First Segment of 2nd Multi Feature\n * turf.findSegment(multiLine, {multiFeatureIndex: 1});\n * // => Feature<LineString<[[-10, -10], [-50, -30]]>>\n *\n * // Last Segment of Last Multi Feature\n * turf.findSegment(multiLine, {multiFeatureIndex: -1, segmentIndex: -1});\n * // => Feature<LineString<[[-50, -30], [-30, -40]]>>\n */\nfunction findSegment<\n  G extends LineString | MultiLineString | Polygon | MultiPolygon,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  geojson: Feature<G, P> | FeatureCollection<G, P> | G,\n  options?: {\n    featureIndex?: number;\n    multiFeatureIndex?: number;\n    geometryIndex?: number;\n    segmentIndex?: number;\n    properties?: P;\n    bbox?: BBox;\n    id?: Id;\n  }\n): Feature<LineString, P> {\n  // Optional Parameters\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  var featureIndex = options.featureIndex || 0;\n  var multiFeatureIndex = options.multiFeatureIndex || 0;\n  var geometryIndex = options.geometryIndex || 0;\n  var segmentIndex = options.segmentIndex || 0;\n\n  // Find FeatureIndex\n  var properties = options.properties;\n  var geometry;\n\n  switch (geojson.type) {\n    case \"FeatureCollection\":\n      if (featureIndex < 0)\n        featureIndex = geojson.features.length + featureIndex;\n      properties = properties || geojson.features[featureIndex].properties;\n      geometry = geojson.features[featureIndex].geometry;\n      break;\n    case \"Feature\":\n      properties = properties || geojson.properties;\n      geometry = geojson.geometry;\n      break;\n    case \"Point\" as GeoJsonTypes:\n    case \"MultiPoint\" as GeoJsonTypes:\n      // @ts-expect-error: Known type conflict\n      return null;\n    case \"LineString\":\n    case \"Polygon\":\n    case \"MultiLineString\":\n    case \"MultiPolygon\":\n      geometry = geojson;\n      break;\n    default:\n      throw new Error(\"geojson is invalid\");\n  }\n\n  // Find SegmentIndex\n  // @ts-expect-error: Known type conflict\n  if (geometry === null) return null;\n  var coords = geometry.coordinates;\n  switch (geometry.type) {\n    case \"Point\" as GeoJsonTypes:\n    case \"MultiPoint\" as GeoJsonTypes:\n      // @ts-expect-error: Known type conflict\n      return null;\n    case \"LineString\":\n      if (segmentIndex < 0) segmentIndex = coords.length + segmentIndex - 1;\n      return lineString(\n        // @ts-expect-error: Known type conflict\n        [coords[segmentIndex], coords[segmentIndex + 1]],\n        properties,\n        options\n      );\n    case \"Polygon\":\n      if (geometryIndex < 0) geometryIndex = coords.length + geometryIndex;\n      if (segmentIndex < 0)\n        segmentIndex = coords[geometryIndex].length + segmentIndex - 1;\n      return lineString(\n        [\n          // @ts-expect-error: Known type conflict\n          coords[geometryIndex][segmentIndex],\n          // @ts-expect-error: Known type conflict\n          coords[geometryIndex][segmentIndex + 1],\n        ],\n        properties,\n        options\n      );\n    case \"MultiLineString\":\n      if (multiFeatureIndex < 0)\n        multiFeatureIndex = coords.length + multiFeatureIndex;\n      if (segmentIndex < 0)\n        segmentIndex = coords[multiFeatureIndex].length + segmentIndex - 1;\n      return lineString(\n        [\n          // @ts-expect-error: Known type conflict\n          coords[multiFeatureIndex][segmentIndex],\n          // @ts-expect-error: Known type conflict\n          coords[multiFeatureIndex][segmentIndex + 1],\n        ],\n        properties,\n        options\n      );\n    case \"MultiPolygon\":\n      if (multiFeatureIndex < 0)\n        multiFeatureIndex = coords.length + multiFeatureIndex;\n      if (geometryIndex < 0)\n        geometryIndex = coords[multiFeatureIndex].length + geometryIndex;\n      if (segmentIndex < 0)\n        segmentIndex =\n          // @ts-expect-error: Known type conflict\n          coords[multiFeatureIndex][geometryIndex].length - segmentIndex - 1;\n      return lineString(\n        [\n          // @ts-expect-error: Known type conflict\n          coords[multiFeatureIndex][geometryIndex][segmentIndex],\n          // @ts-expect-error: Known type conflict\n          coords[multiFeatureIndex][geometryIndex][segmentIndex + 1],\n        ],\n        properties,\n        options\n      );\n  }\n  throw new Error(\"geojson is invalid\");\n}\n\n/**\n * Finds a particular Point from a GeoJSON using `@turf/meta` indexes.\n *\n * Negative indexes are permitted.\n *\n * @param {FeatureCollection|Feature|Geometry} geojson Any GeoJSON Feature or Geometry\n * @param {Object} [options={}] Optional parameters\n * @param {number} [options.featureIndex=0] Feature Index\n * @param {number} [options.multiFeatureIndex=0] Multi-Feature Index\n * @param {number} [options.geometryIndex=0] Geometry Index\n * @param {number} [options.coordIndex=0] Coord Index\n * @param {Object} [options.properties={}] Translate Properties to output Point\n * @param {BBox} [options.bbox={}] Translate BBox to output Point\n * @param {number|string} [options.id={}] Translate Id to output Point\n * @returns {Feature<Point>} 2-vertex GeoJSON Feature Point\n * @example\n * var multiLine = turf.multiLineString([\n *     [[10, 10], [50, 30], [30, 40]],\n *     [[-10, -10], [-50, -30], [-30, -40]]\n * ]);\n *\n * // First Segment (defaults are 0)\n * turf.findPoint(multiLine);\n * // => Feature<Point<[10, 10]>>\n *\n * // First Segment of the 2nd Multi-Feature\n * turf.findPoint(multiLine, {multiFeatureIndex: 1});\n * // => Feature<Point<[-10, -10]>>\n *\n * // Last Segment of last Multi-Feature\n * turf.findPoint(multiLine, {multiFeatureIndex: -1, coordIndex: -1});\n * // => Feature<Point<[-30, -40]>>\n */\nfunction findPoint<\n  G extends GeometryObject,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  geojson: Feature<G, P> | FeatureCollection<G, P> | G,\n  options?: {\n    featureIndex?: number;\n    multiFeatureIndex?: number;\n    geometryIndex?: number;\n    coordIndex?: number;\n    properties?: P;\n    bbox?: BBox;\n    id?: Id;\n  }\n): Feature<Point, P> {\n  // Optional Parameters\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  var featureIndex = options.featureIndex || 0;\n  var multiFeatureIndex = options.multiFeatureIndex || 0;\n  var geometryIndex = options.geometryIndex || 0;\n  var coordIndex = options.coordIndex || 0;\n\n  // Find FeatureIndex\n  var properties = options.properties;\n  var geometry;\n\n  switch (geojson.type) {\n    case \"FeatureCollection\":\n      if (featureIndex < 0)\n        featureIndex = geojson.features.length + featureIndex;\n      properties = properties || geojson.features[featureIndex].properties;\n      geometry = geojson.features[featureIndex].geometry;\n      break;\n    case \"Feature\":\n      properties = properties || geojson.properties;\n      geometry = geojson.geometry;\n      break;\n    case \"Point\":\n    case \"MultiPoint\":\n      // @ts-expect-error: Known type conflict\n      return null;\n    case \"LineString\":\n    case \"Polygon\":\n    case \"MultiLineString\":\n    case \"MultiPolygon\":\n      geometry = geojson;\n      break;\n    default:\n      throw new Error(\"geojson is invalid\");\n  }\n\n  // Find Coord Index\n  // @ts-expect-error: Known type conflict\n  if (geometry === null) return null;\n  // @ts-expect-error: Known type conflict\n  var coords = geometry.coordinates;\n  switch (geometry.type) {\n    case \"Point\":\n      return point(coords, properties, options);\n    case \"MultiPoint\":\n      if (multiFeatureIndex < 0)\n        multiFeatureIndex = coords.length + multiFeatureIndex;\n      return point(coords[multiFeatureIndex], properties, options);\n    case \"LineString\":\n      if (coordIndex < 0) coordIndex = coords.length + coordIndex;\n      return point(coords[coordIndex], properties, options);\n    case \"Polygon\":\n      if (geometryIndex < 0) geometryIndex = coords.length + geometryIndex;\n      if (coordIndex < 0)\n        coordIndex = coords[geometryIndex].length + coordIndex;\n      return point(coords[geometryIndex][coordIndex], properties, options);\n    case \"MultiLineString\":\n      if (multiFeatureIndex < 0)\n        multiFeatureIndex = coords.length + multiFeatureIndex;\n      if (coordIndex < 0)\n        coordIndex = coords[multiFeatureIndex].length + coordIndex;\n      return point(coords[multiFeatureIndex][coordIndex], properties, options);\n    case \"MultiPolygon\":\n      if (multiFeatureIndex < 0)\n        multiFeatureIndex = coords.length + multiFeatureIndex;\n      if (geometryIndex < 0)\n        geometryIndex = coords[multiFeatureIndex].length + geometryIndex;\n      if (coordIndex < 0)\n        coordIndex =\n          coords[multiFeatureIndex][geometryIndex].length - coordIndex;\n      return point(\n        coords[multiFeatureIndex][geometryIndex][coordIndex],\n        properties,\n        options\n      );\n  }\n  throw new Error(\"geojson is invalid\");\n}\n\nexport {\n  coordReduce,\n  coordEach,\n  propEach,\n  propReduce,\n  featureReduce,\n  featureEach,\n  coordAll,\n  geomReduce,\n  geomEach,\n  flattenReduce,\n  flattenEach,\n  segmentReduce,\n  segmentEach,\n  lineReduce,\n  lineEach,\n  findSegment,\n  findPoint,\n};\n"
  },
  {
    "path": "packages/turf-meta/package.json",
    "content": "{\n  \"name\": \"@turf/meta\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Provides tools for iterating over and manipulating GeoJSON objects.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Tom MacWright <@tmcw>\",\n    \"Daniel Pulido <@dpmcmlxxvi>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"functional\",\n    \"programming\",\n    \"turfjs\",\n    \"geojson\",\n    \"meta\",\n    \"flattenEach\",\n    \"flattenReduce\",\n    \"segmentEach\",\n    \"segmentReduce\",\n    \"coordEach\",\n    \"coordReduce\",\n    \"propEach\",\n    \"propReduce\",\n    \"featureEach\",\n    \"featureReduce\",\n    \"coordAll\",\n    \"geomEach\",\n    \"geomReduce\",\n    \"lineEeach\",\n    \"lineReduce\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/random\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-meta/test.ts",
    "content": "import test from \"tape\";\nimport {\n  point,\n  lineString,\n  feature,\n  polygon,\n  multiPoint,\n  multiPolygon,\n  multiLineString,\n  geometryCollection,\n  featureCollection,\n  lineStrings,\n} from \"@turf/helpers\";\nimport * as meta from \"./index.js\";\n\nconst pt = point([0, 0], { a: 1 });\nconst pt2 = point([1, 1]);\nconst line = lineString([\n  [0, 0],\n  [1, 1],\n]);\nconst poly = polygon([\n  [\n    [0, 0],\n    [1, 1],\n    [0, 1],\n    [0, 0],\n  ],\n]);\nconst polyWithHole = polygon([\n  [\n    [100.0, 0.0],\n    [101.0, 0.0],\n    [101.0, 1.0],\n    [100.0, 1.0],\n    [100.0, 0.0],\n  ],\n  [\n    [100.2, 0.2],\n    [100.8, 0.2],\n    [100.8, 0.8],\n    [100.2, 0.8],\n    [100.2, 0.2],\n  ],\n]);\nconst multiPt = multiPoint([\n  [0, 0],\n  [1, 1],\n]);\nconst multiLine = multiLineString([\n  [\n    [0, 0],\n    [1, 1],\n  ],\n  [\n    [3, 3],\n    [4, 4],\n  ],\n]);\nconst multiPoly = multiPolygon([\n  [\n    [\n      [0, 0],\n      [1, 1],\n      [0, 1],\n      [0, 0],\n    ],\n  ],\n  [\n    [\n      [3, 3],\n      [2, 2],\n      [1, 2],\n      [3, 3],\n    ],\n  ],\n]);\nconst geomCollection = geometryCollection(\n  [pt.geometry, line.geometry, multiLine.geometry],\n  { a: 0 }\n);\nconst fcNull = featureCollection([feature(null), feature(null)]);\nconst fcMixed = featureCollection([\n  point([0, 0]),\n  lineString([\n    [1, 1],\n    [2, 2],\n  ]),\n  multiLineString([\n    [\n      [1, 1],\n      [0, 0],\n    ],\n    [\n      [4, 4],\n      [5, 5],\n    ],\n  ]),\n]);\n\nfunction collection(feature) {\n  const featureCollection = {\n    type: \"FeatureCollection\",\n    features: [feature],\n  };\n\n  return [feature, featureCollection];\n}\n\nfunction featureAndCollection(geometry) {\n  const feature = {\n    type: \"Feature\",\n    geometry: geometry,\n    properties: { a: 1 },\n  };\n\n  const featureCollection = {\n    type: \"FeatureCollection\",\n    features: [feature],\n  };\n\n  return [geometry, feature, featureCollection];\n}\n\ntest(\"propEach\", (t) => {\n  collection(pt).forEach((input) => {\n    meta.propEach(input, (prop, i) => {\n      t.deepEqual(prop, { a: 1 });\n      t.equal(i, 0);\n    });\n  });\n  t.end();\n});\n\ntest(\"coordEach -- Point\", (t) => {\n  featureAndCollection(pt.geometry).forEach((input) => {\n    meta.coordEach(input, (coord, index) => {\n      t.deepEqual(coord, [0, 0]);\n      t.equal(index, 0);\n    });\n  });\n  t.end();\n});\n\ntest(\"coordEach -- LineString\", (t) => {\n  featureAndCollection(line.geometry).forEach((input) => {\n    const output = [];\n    let lastIndex;\n    meta.coordEach(input, (coord, index) => {\n      output.push(coord);\n      lastIndex = index;\n    });\n    t.deepEqual(output, [\n      [0, 0],\n      [1, 1],\n    ]);\n    t.equal(lastIndex, 1);\n  });\n  t.end();\n});\n\ntest(\"coordEach -- Polygon\", (t) => {\n  featureAndCollection(poly.geometry).forEach((input) => {\n    const output = [];\n    let lastIndex;\n    meta.coordEach(input, (coord, index) => {\n      output.push(coord);\n      lastIndex = index;\n    });\n    t.deepEqual(output, [\n      [0, 0],\n      [1, 1],\n      [0, 1],\n      [0, 0],\n    ]);\n    t.equal(lastIndex, 3);\n  });\n  t.end();\n});\n\ntest(\"coordEach -- Polygon excludeWrapCoord\", (t) => {\n  featureAndCollection(poly.geometry).forEach((input) => {\n    const output = [];\n    let lastIndex;\n    meta.coordEach(\n      input,\n      (coord, index) => {\n        output.push(coord);\n        lastIndex = index;\n      },\n      true\n    );\n    t.equal(lastIndex, 2);\n  });\n  t.end();\n});\n\ntest(\"coordEach -- MultiPolygon\", (t) => {\n  const coords = [];\n  const coordIndexes = [];\n  const featureIndexes = [];\n  const multiFeatureIndexes = [];\n  meta.coordEach(\n    multiPoly,\n    (coord, coordIndex, featureIndex, multiFeatureIndex) => {\n      coords.push(coord);\n      coordIndexes.push(coordIndex);\n      featureIndexes.push(featureIndex);\n      multiFeatureIndexes.push(multiFeatureIndex);\n    }\n  );\n  t.deepEqual(coordIndexes, [0, 1, 2, 3, 4, 5, 6, 7]);\n  t.deepEqual(featureIndexes, [0, 0, 0, 0, 0, 0, 0, 0]);\n  t.deepEqual(multiFeatureIndexes, [0, 0, 0, 0, 1, 1, 1, 1]);\n  t.equal(coords.length, 8);\n  t.end();\n});\n\ntest(\"coordEach -- FeatureCollection\", (t) => {\n  const coords = [];\n  const coordIndexes = [];\n  const featureIndexes = [];\n  const multiFeatureIndexes = [];\n  meta.coordEach(\n    fcMixed,\n    (coord, coordIndex, featureIndex, multiFeatureIndex) => {\n      coords.push(coord);\n      coordIndexes.push(coordIndex);\n      featureIndexes.push(featureIndex);\n      multiFeatureIndexes.push(multiFeatureIndex);\n    }\n  );\n  t.deepEqual(coordIndexes, [0, 1, 2, 3, 4, 5, 6]);\n  t.deepEqual(featureIndexes, [0, 1, 1, 2, 2, 2, 2]);\n  t.deepEqual(multiFeatureIndexes, [0, 0, 0, 0, 0, 1, 1]);\n  t.equal(coords.length, 7);\n  t.end();\n});\n\ntest(\"coordReduce -- initialValue\", (t) => {\n  let lastIndex;\n  const line = lineString([\n    [126, -11],\n    [129, -21],\n    [135, -31],\n  ]);\n  const sum = meta.coordReduce(\n    line,\n    (previous, currentCoords, index) => {\n      lastIndex = index;\n      return previous + currentCoords[0];\n    },\n    0\n  );\n  t.equal(lastIndex, 2);\n  t.equal(sum, 390);\n  t.end();\n});\n\ntest(\"Array.reduce() -- initialValue\", (t) => {\n  let lastIndex;\n  const line = [\n    [126, -11],\n    [129, -21],\n    [135, -31],\n  ];\n  const sum = line.reduce((previous, currentCoords, index) => {\n    lastIndex = index;\n    return previous + currentCoords[0];\n  }, 0);\n  t.equal(lastIndex, 2);\n  t.equal(sum, 390);\n  t.end();\n});\n\ntest(\"coordReduce -- previous-coordinates\", (t) => {\n  let lastIndex;\n  const coords = [];\n  const line = lineString([\n    [126, -11],\n    [129, -21],\n    [135, -31],\n  ]);\n  meta.coordReduce(line, (previousCoords, currentCoords, index) => {\n    lastIndex = index;\n    coords.push(currentCoords);\n    return currentCoords;\n  });\n  t.equal(lastIndex, 2);\n  t.equal(coords.length, 2);\n  t.end();\n});\n\ntest(\"Array.reduce() -- previous-coordinates\", (t) => {\n  let lastIndex;\n  const coords = [];\n  const line = [\n    [126, -11],\n    [129, -21],\n    [135, -31],\n  ];\n  line.reduce((previousCoords, currentCoords, index) => {\n    lastIndex = index;\n    coords.push(currentCoords);\n    return currentCoords;\n  });\n  t.equal(lastIndex, 2);\n  t.equal(coords.length, 2);\n  t.end();\n});\n\ntest(\"coordReduce -- previous-coordinates+initialValue\", (t) => {\n  let lastIndex;\n  const coords = [];\n  meta.coordReduce(\n    line,\n    (previousCoords, currentCoords, index) => {\n      lastIndex = index;\n      coords.push(currentCoords);\n      return currentCoords;\n    },\n    line.geometry.coordinates[0]\n  );\n  t.equal(lastIndex, 1);\n  t.equal(coords.length, 2);\n  t.end();\n});\n\ntest(\"Array.reduce() -- previous-coordinates+initialValue\", (t) => {\n  let lastIndex;\n  const coords = [];\n  line.geometry.coordinates.reduce((previousCoords, currentCoords, index) => {\n    lastIndex = index;\n    coords.push(currentCoords);\n    return currentCoords;\n  }, line[0]);\n  t.equal(lastIndex, 1);\n  t.equal(coords.length, 2);\n  t.end();\n});\n\ntest(\"unknown\", (t) => {\n  t.throws(function () {\n    meta.coordEach({});\n  });\n  t.end();\n});\n\ntest(\"geomEach -- GeometryCollection\", (t) => {\n  featureAndCollection(geomCollection.geometry).forEach((input) => {\n    const output = [];\n    meta.geomEach(input, (geom) => {\n      output.push(geom);\n    });\n    t.deepEqual(output, geomCollection.geometry.geometries);\n  });\n  t.end();\n});\n\ntest(\"geomEach -- bare-GeometryCollection\", (t) => {\n  const output = [];\n  meta.geomEach(geomCollection, (geom) => {\n    output.push(geom);\n  });\n  t.deepEqual(output, geomCollection.geometry.geometries);\n  t.end();\n});\n\ntest(\"geomEach -- bare-pointGeometry\", (t) => {\n  const output = [];\n  meta.geomEach(pt.geometry, (geom) => {\n    output.push(geom);\n  });\n  t.deepEqual(output, [pt.geometry]);\n  t.end();\n});\n\ntest(\"geomEach -- bare-pointFeature\", (t) => {\n  const output = [];\n  meta.geomEach(pt, (geom) => {\n    output.push(geom);\n  });\n  t.deepEqual(output, [pt.geometry]);\n  t.end();\n});\n\ntest(\"geomEach -- multiGeometryFeature-properties\", (t) => {\n  let lastProperties;\n  meta.geomEach(geomCollection, (geom, index, properties) => {\n    lastProperties = properties;\n  });\n  t.deepEqual(lastProperties, geomCollection.properties);\n  t.end();\n});\n\ntest(\"flattenEach -- MultiPoint\", (t) => {\n  featureAndCollection(multiPt.geometry).forEach((input) => {\n    const output = [];\n    meta.flattenEach(input, (feature) => {\n      output.push(feature.geometry);\n    });\n    t.deepEqual(output, [pt.geometry, pt2.geometry]);\n  });\n  t.end();\n});\n\ntest(\"flattenEach -- Mixed FeatureCollection\", (t) => {\n  const features = [];\n  const featureIndexes = [];\n  const multiFeatureIndexes = [];\n  meta.flattenEach(fcMixed, (feature, featureIndex, multiFeatureIndex) => {\n    features.push(feature);\n    featureIndexes.push(featureIndex);\n    multiFeatureIndexes.push(multiFeatureIndex);\n  });\n  t.deepEqual(featureIndexes, [0, 1, 2, 2]);\n  t.deepEqual(multiFeatureIndexes, [0, 0, 0, 1]);\n  t.equal(features.length, 4);\n  t.end();\n});\n\ntest(\"flattenEach -- Point-properties\", (t) => {\n  collection(pt).forEach((input) => {\n    let lastProperties;\n    meta.flattenEach(input, (feature) => {\n      lastProperties = feature.properties;\n    });\n    t.deepEqual(lastProperties, pt.properties);\n  });\n  t.end();\n});\n\ntest(\"flattenEach -- multiGeometryFeature-properties\", (t) => {\n  collection(geomCollection).forEach((input) => {\n    let lastProperties;\n    meta.flattenEach(input, (feature) => {\n      lastProperties = feature.properties;\n    });\n    t.deepEqual(lastProperties, geomCollection.properties);\n  });\n  t.end();\n});\n\ntest(\"flattenReduce -- initialValue\", (t) => {\n  let lastIndex;\n  let lastSubIndex;\n  const sum = meta.flattenReduce(\n    multiPt.geometry,\n    (previous, current, index, subIndex) => {\n      lastIndex = index;\n      lastSubIndex = subIndex;\n      return previous + current.geometry.coordinates[0];\n    },\n    0\n  );\n  t.equal(lastIndex, 0);\n  t.equal(lastSubIndex, 1);\n  t.equal(sum, 1);\n  t.end();\n});\n\ntest(\"flattenReduce -- previous-feature\", (t) => {\n  const features = [];\n  const featureIndexes = [];\n  const multiFeatureIndexes = [];\n  meta.flattenReduce(\n    multiLine,\n    (previous, current, featureIndex, multiFeatureIndex) => {\n      featureIndexes.push(featureIndex);\n      multiFeatureIndexes.push(multiFeatureIndex);\n      features.push(current);\n      return current;\n    }\n  );\n  t.deepEqual(featureIndexes, [0]);\n  t.deepEqual(multiFeatureIndexes, [1]);\n  t.equal(features.length, 1);\n  t.end();\n});\n\ntest(\"flattenReduce -- previous-feature+initialValue\", (t) => {\n  const features = [];\n  const featureIndexes = [];\n  const multiFeatureIndexes = [];\n  const sum = meta.flattenReduce(\n    multiPt.geometry,\n    (previous, current, featureIndex, multiFeatureIndex) => {\n      featureIndexes.push(featureIndex);\n      multiFeatureIndexes.push(multiFeatureIndex);\n      features.push(current);\n      return current;\n    },\n    null\n  );\n  t.deepEqual(featureIndexes, [0, 0]);\n  t.deepEqual(multiFeatureIndexes, [0, 1]);\n  t.equal(features.length, 2);\n  t.deepEqual(sum, features[features.length - 1]);\n  t.end();\n});\n\n// https://github.com/Turfjs/turf/issues/853\ntest(\"null geometries\", (t) => {\n  // Each operations\n  meta.featureEach(fcNull, (feature) =>\n    t.equal(feature.geometry, null, \"featureEach\")\n  );\n  meta.geomEach(fcNull, (geometry) => t.equal(geometry, null), \"geomEach\");\n  meta.flattenEach(fcNull, (feature) =>\n    t.equal(feature.geometry, null, \"flattenEach\")\n  );\n  meta.coordEach(fcNull, () => t.fail(\"no coordinates should be found\"));\n\n  // Reduce operations\n  t.equal(\n    meta.featureReduce(fcNull, (prev) => (prev += 1), 0),\n    2,\n    \"featureReduce\"\n  );\n  t.equal(\n    meta.geomReduce(fcNull, (prev) => (prev += 1), 0),\n    2,\n    \"geomReduce\"\n  );\n  t.equal(\n    meta.flattenReduce(fcNull, (prev) => (prev += 1), 0),\n    2,\n    \"flattenReduce\"\n  );\n  t.equal(\n    meta.coordReduce(fcNull, (prev) => (prev += 1), 0),\n    0,\n    \"coordReduce\"\n  );\n\n  t.end();\n});\n\ntest(\"null geometries -- index\", (t) => {\n  const fc = featureCollection([\n    feature(null), // index 0\n    point([0, 0]), // index 1\n    feature(null), // index 2\n    lineString([\n      [1, 1],\n      [0, 0],\n    ]), // index 3\n  ]);\n  t.deepEqual(\n    meta.coordReduce(\n      fc,\n      (prev, coords, coordIndex) => prev.concat(coordIndex),\n      []\n    ),\n    [0, 1, 2],\n    \"coordReduce\"\n  );\n  t.deepEqual(\n    meta.geomReduce(\n      fc,\n      (prev, geom, featureIndex) => prev.concat(featureIndex),\n      []\n    ),\n    [0, 1, 2, 3],\n    \"geomReduce\"\n  );\n  t.deepEqual(\n    meta.flattenReduce(\n      fc,\n      (prev, feature, featureIndex) => prev.concat(featureIndex),\n      []\n    ),\n    [0, 1, 2, 3],\n    \"flattenReduce\"\n  );\n  t.end();\n});\n\ntest(\"segmentEach\", (t) => {\n  const segments = [];\n  let total = 0;\n  meta.segmentEach(poly.geometry, (currentSegment) => {\n    segments.push(currentSegment);\n    total++;\n  });\n  t.equal(segments[0].geometry.coordinates.length, 2);\n  t.equal(total, 3);\n  t.end();\n});\n\ntest(\"segmentEach -- MultiPoint\", (t) => {\n  const segments = [];\n  let total = 0;\n  meta.segmentEach(multiPt.geometry, (currentSegment) => {\n    segments.push(currentSegment);\n    total++;\n  });\n  t.equal(total, 0); // No segments are created from MultiPoint geometry\n  t.end();\n});\n\ntest(\"segmentReduce\", (t) => {\n  const segments = [];\n  const total = meta.segmentReduce(\n    poly.geometry,\n    (previousValue, currentSegment) => {\n      segments.push(currentSegment);\n      previousValue++;\n      return previousValue;\n    },\n    0\n  );\n  t.equal(segments[0].geometry.coordinates.length, 2);\n  t.equal(total, 3);\n  t.end();\n});\n\ntest(\"segmentReduce -- no initialValue\", (t) => {\n  const segments = [];\n  var total = 0;\n  meta.segmentReduce(poly.geometry, (previousValue, currentSegment) => {\n    segments.push(currentSegment);\n    total++;\n  });\n  t.equal(segments[0].geometry.coordinates.length, 2);\n  t.equal(total, 2);\n  t.end();\n});\n\nconst geojsonSegments = featureCollection([\n  point([0, 1]), // ignored\n  lineString([\n    [0, 0],\n    [2, 2],\n    [4, 4],\n  ]),\n  polygon([\n    [\n      [5, 5],\n      [0, 0],\n      [2, 2],\n      [4, 4],\n      [5, 5],\n    ],\n  ]),\n  point([0, 1]), // ignored\n  multiLineString([\n    [\n      [0, 0],\n      [2, 2],\n      [4, 4],\n    ],\n    [\n      [0, 0],\n      [2, 2],\n      [4, 4],\n    ],\n  ]),\n]);\n\ntest(\"segmentEach -- index & subIndex\", (t) => {\n  const featureIndexes = [];\n  const multiFeatureIndexes = [];\n  const geometryIndexes = [];\n  const segmentIndexes = [];\n  let total = 0;\n\n  meta.segmentEach(\n    geojsonSegments,\n    (segment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex) => {\n      featureIndexes.push(featureIndex);\n      multiFeatureIndexes.push(multiFeatureIndex);\n      geometryIndexes.push(geometryIndex);\n      segmentIndexes.push(segmentIndex);\n      total++;\n    }\n  );\n  t.equal(total, 10, \"total\");\n  t.deepEqual(\n    featureIndexes,\n    [1, 1, 2, 2, 2, 2, 4, 4, 4, 4],\n    \"segmentEach.featureIndex\"\n  );\n  t.deepEqual(\n    multiFeatureIndexes,\n    [0, 0, 0, 0, 0, 0, 0, 0, 1, 1],\n    \"segmentEach.multiFeatureIndex\"\n  );\n  t.deepEqual(\n    geometryIndexes,\n    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0],\n    \"segmentEach.geometryIndex\"\n  );\n  t.deepEqual(\n    segmentIndexes,\n    [0, 1, 0, 1, 2, 3, 0, 1, 0, 1],\n    \"segmentEach.segmentIndex\"\n  );\n  t.end();\n});\n\ntest(\"segmentReduce -- index & subIndex\", (t) => {\n  const featureIndexes = [];\n  const multiFeatureIndexes = [];\n  const geometryIndexes = [];\n  const segmentIndexes = [];\n  let total = 0;\n\n  meta.segmentReduce(\n    geojsonSegments,\n    (\n      previousValue,\n      segment,\n      featureIndex,\n      multiFeatureIndex,\n      geometryIndex,\n      segmentIndex\n    ) => {\n      featureIndexes.push(featureIndex);\n      multiFeatureIndexes.push(multiFeatureIndex);\n      geometryIndexes.push(geometryIndex);\n      segmentIndexes.push(segmentIndex);\n      total++;\n    }\n  );\n  t.equal(total, 9, \"total\");\n  t.deepEqual(\n    featureIndexes,\n    [1, 2, 2, 2, 2, 4, 4, 4, 4],\n    \"segmentReduce.featureIndex\"\n  );\n  t.deepEqual(\n    multiFeatureIndexes,\n    [0, 0, 0, 0, 0, 0, 0, 1, 1],\n    \"segmentReduce.multiFeatureIndex\"\n  );\n  t.deepEqual(\n    geometryIndexes,\n    [0, 0, 0, 0, 0, 0, 0, 0, 0],\n    \"segmentReduce.geometryIndex\"\n  );\n  t.deepEqual(\n    segmentIndexes,\n    [1, 0, 1, 2, 3, 0, 1, 0, 1],\n    \"segmentReduce.segmentIndex\"\n  );\n  t.end();\n});\n\ntest(\"lineEach -- lineString\", (t) => {\n  const line = lineString([\n    [0, 0],\n    [2, 2],\n    [4, 4],\n  ]);\n  const featureIndexes = [];\n  const multiFeatureIndexes = [];\n  const lineIndexes = [];\n  let total = 0;\n\n  meta.lineEach(\n    line,\n    (currentLine, featureIndex, multiFeatureIndex, lineIndex) => {\n      featureIndexes.push(featureIndex);\n      multiFeatureIndexes.push(multiFeatureIndex);\n      lineIndexes.push(lineIndex);\n      total++;\n    }\n  );\n  t.equal(total, 1, \"total\");\n  t.deepEqual(featureIndexes, [0], \"featureIndex\");\n  t.deepEqual(multiFeatureIndexes, [0], \"multiFeatureIndex\");\n  t.deepEqual(lineIndexes, [0], \"lineIndex\");\n  t.end();\n});\n\ntest(\"lineEach -- multiLineString\", (t) => {\n  const multiLine = multiLineString([\n    [\n      [0, 0],\n      [2, 2],\n      [4, 4],\n    ],\n    [\n      [1, 1],\n      [3, 3],\n      [5, 5],\n    ],\n  ]);\n  const featureIndexes = [];\n  const multiFeatureIndexes = [];\n  const lineIndexes = [];\n  let total = 0;\n\n  meta.lineEach(\n    multiLine,\n    (currentLine, featureIndex, multiFeatureIndex, lineIndex) => {\n      featureIndexes.push(featureIndex);\n      multiFeatureIndexes.push(multiFeatureIndex);\n      lineIndexes.push(lineIndex);\n      total++;\n    }\n  );\n  t.equal(total, 2, \"total\");\n  t.deepEqual(featureIndexes, [0, 0], \"featureIndex\");\n  t.deepEqual(multiFeatureIndexes, [0, 1], \"multiFeatureIndex\");\n  t.deepEqual(lineIndexes, [0, 0], \"lineIndex\");\n  t.end();\n});\n\ntest(\"lineEach -- multiPolygon\", (t) => {\n  const multiPoly = multiPolygon([\n    [\n      [\n        [12, 48],\n        [2, 41],\n        [24, 38],\n        [12, 48],\n      ], // outer\n      [\n        [9, 44],\n        [13, 41],\n        [13, 45],\n        [9, 44],\n      ], // inner\n    ],\n    [\n      [\n        [5, 5],\n        [0, 0],\n        [2, 2],\n        [4, 4],\n        [5, 5],\n      ], // outer\n    ],\n  ]);\n  const featureIndexes = [];\n  const multiFeatureIndexes = [];\n  const lineIndexes = [];\n  let total = 0;\n\n  meta.lineEach(\n    multiPoly,\n    (currentLine, featureIndex, multiFeatureIndex, lineIndex) => {\n      featureIndexes.push(featureIndex);\n      multiFeatureIndexes.push(multiFeatureIndex);\n      lineIndexes.push(lineIndex);\n      total++;\n    }\n  );\n  t.equal(total, 3, \"total\");\n  t.deepEqual(featureIndexes, [0, 0, 0], \"featureIndex\");\n  t.deepEqual(multiFeatureIndexes, [0, 0, 1], \"multiFeatureIndex\");\n  t.deepEqual(lineIndexes, [0, 1, 0], \"lineIndex\");\n  t.end();\n});\n\ntest(\"lineEach -- featureCollection\", (t) => {\n  const line = lineString([\n    [0, 0],\n    [2, 2],\n    [4, 4],\n  ]);\n  const multiLine = multiLineString([\n    [\n      [0, 0],\n      [2, 2],\n      [4, 4],\n    ],\n    [\n      [1, 1],\n      [3, 3],\n      [5, 5],\n    ],\n  ]);\n  const multiPoly = multiPolygon([\n    [\n      [\n        [12, 48],\n        [2, 41],\n        [24, 38],\n        [12, 48],\n      ], // outer\n      [\n        [9, 44],\n        [13, 41],\n        [13, 45],\n        [9, 44],\n      ], // inner\n    ],\n    [\n      [\n        [5, 5],\n        [0, 0],\n        [2, 2],\n        [4, 4],\n        [5, 5],\n      ], // outer\n    ],\n  ]);\n  const featureIndexes = [];\n  const multiFeatureIndexes = [];\n  const lineIndexes = [];\n  let total = 0;\n\n  meta.lineEach(\n    featureCollection([line, multiLine, multiPoly]),\n    (currentLine, featureIndex, multiFeatureIndex, lineIndex) => {\n      featureIndexes.push(featureIndex);\n      multiFeatureIndexes.push(multiFeatureIndex);\n      lineIndexes.push(lineIndex);\n      total++;\n    }\n  );\n  t.equal(total, 6, \"total\");\n  t.deepEqual(featureIndexes, [0, 1, 1, 2, 2, 2], \"featureIndex\");\n  t.deepEqual(multiFeatureIndexes, [0, 0, 1, 0, 0, 1], \"multiFeatureIndex\");\n  t.deepEqual(lineIndexes, [0, 0, 0, 0, 1, 0], \"lineIndex\");\n  t.end();\n});\n\ntest(\"lineReduce -- multiLineString\", (t) => {\n  const multiLine = multiLineString([\n    [\n      [0, 0],\n      [2, 2],\n      [4, 4],\n    ],\n    [\n      [1, 1],\n      [3, 3],\n      [5, 5],\n    ],\n  ]);\n\n  const total = meta.lineReduce(\n    multiLine,\n    (previousValue) => {\n      previousValue++;\n      return previousValue;\n    },\n    0\n  );\n\n  t.equal(total, 2, \"total\");\n  t.end();\n});\n\ntest(\"lineReduce -- multiPolygon\", (t) => {\n  const multiPoly = multiPolygon([\n    [\n      [\n        [12, 48],\n        [2, 41],\n        [24, 38],\n        [12, 48],\n      ], // outer\n      [\n        [9, 44],\n        [13, 41],\n        [13, 45],\n        [9, 44],\n      ],\n    ], // inner\n    [\n      [\n        [5, 5],\n        [0, 0],\n        [2, 2],\n        [4, 4],\n        [5, 5],\n      ], // outer\n    ],\n  ]);\n\n  const total = meta.lineReduce(\n    multiPoly,\n    (previousValue) => {\n      previousValue++;\n      return previousValue;\n    },\n    0\n  );\n\n  t.equal(total, 3, \"total\");\n  t.end();\n});\n\ntest(\"lineEach & lineReduce -- assert\", (t) => {\n  const pt = point([0, 0]);\n  const multiPt = multiPoint([\n    [0, 0],\n    [10, 10],\n  ]);\n  const noop = () => {\n    /* no-op */\n  };\n  meta.lineEach(pt, noop); // Point geometry is supported\n  meta.lineEach(multiPt, noop); // MultiPoint geometry is supported\n  meta.lineReduce(pt, noop); // Point geometry is supported\n  meta.lineReduce(multiPt, noop); // MultiPoint geometry is supported\n  meta.lineReduce(geomCollection, noop); // GeometryCollection is is supported\n  meta.lineReduce(\n    featureCollection([\n      lineString([\n        [10, 10],\n        [0, 0],\n      ]),\n    ]),\n    noop\n  ); // FeatureCollection is is supported\n  meta.lineReduce(feature(null), noop); // Feature with null geometry is supported\n  t.end();\n});\n\ntest(\"geomEach -- callback BBox & Id\", (t) => {\n  const properties = { foo: \"bar\" };\n  const bbox = [0, 0, 0, 0];\n  const id = \"foo\";\n  const pt = point([0, 0], properties, { bbox, id });\n\n  meta.geomEach(\n    pt,\n    (\n      currentGeometry,\n      featureIndex,\n      currentProperties,\n      currentBBox,\n      currentId\n    ) => {\n      t.equal(featureIndex, 0, \"featureIndex\");\n      t.deepEqual(currentProperties, properties, \"currentProperties\");\n      t.deepEqual(currentBBox, bbox, \"currentBBox\");\n      t.deepEqual(currentId, id, \"currentId\");\n    }\n  );\n  t.end();\n});\n\ntest(\"lineEach -- callback BBox & Id\", (t) => {\n  const properties = { foo: \"bar\" };\n  const bbox = [0, 0, 10, 10];\n  const id = \"foo\";\n  const line = lineString(\n    [\n      [0, 0],\n      [10, 10],\n    ],\n    properties,\n    { bbox, id }\n  );\n\n  meta.lineEach(line, (currentLine, featureIndex) => {\n    t.equal(featureIndex, 0, \"featureIndex\");\n    t.deepEqual(currentLine.properties, properties, \"currentProperties\");\n    t.deepEqual(currentLine.bbox, bbox, \"currentBBox\");\n    t.deepEqual(currentLine.id, id, \"currentId\");\n  });\n  t.end();\n});\n\ntest(\"lineEach -- return lineString\", (t) => {\n  const properties = { foo: \"bar\" };\n  const bbox = [0, 0, 10, 10];\n  const id = \"foo\";\n  const line = lineString(\n    [\n      [0, 0],\n      [10, 10],\n    ],\n    properties,\n    { bbox, id }\n  );\n\n  meta.lineEach(line, (currentLine) => {\n    t.deepEqual(line, currentLine, \"return itself\");\n  });\n  t.end();\n});\n\ntest(\"meta.coordEach -- indexes -- PolygonWithHole\", (t) => {\n  const coordIndexes = [];\n  const featureIndexes = [];\n  const multiFeatureIndexes = [];\n  const geometryIndexes = [];\n\n  meta.coordEach(\n    polyWithHole,\n    (coords, coordIndex, featureIndex, multiFeatureIndex, geometryIndex) => {\n      coordIndexes.push(coordIndex);\n      featureIndexes.push(featureIndex);\n      multiFeatureIndexes.push(multiFeatureIndex);\n      geometryIndexes.push(geometryIndex);\n    }\n  );\n  t.deepEqual(coordIndexes, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]);\n  t.deepEqual(featureIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);\n  t.deepEqual(multiFeatureIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);\n  t.deepEqual(geometryIndexes, [0, 0, 0, 0, 0, 1, 1, 1, 1, 1]);\n  t.end();\n});\n\ntest(\"meta.lineEach -- indexes -- PolygonWithHole\", (t) => {\n  const featureIndexes = [];\n  const multiFeatureIndexes = [];\n  const geometryIndexes = [];\n\n  meta.lineEach(\n    polyWithHole,\n    (line, featureIndex, multiFeatureIndex, geometryIndex) => {\n      featureIndexes.push(featureIndex);\n      multiFeatureIndexes.push(multiFeatureIndex);\n      geometryIndexes.push(geometryIndex);\n    }\n  );\n  t.deepEqual(featureIndexes, [0, 0]);\n  t.deepEqual(multiFeatureIndexes, [0, 0]);\n  t.deepEqual(geometryIndexes, [0, 1]);\n  t.end();\n});\n\ntest(\"meta.segmentEach -- indexes -- PolygonWithHole\", (t) => {\n  const featureIndexes = [];\n  const multiFeatureIndexes = [];\n  const geometryIndexes = [];\n  const segmentIndexes = [];\n\n  meta.segmentEach(\n    polyWithHole,\n    (segment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex) => {\n      featureIndexes.push(featureIndex);\n      multiFeatureIndexes.push(multiFeatureIndex);\n      geometryIndexes.push(geometryIndex);\n      segmentIndexes.push(segmentIndex);\n    }\n  );\n\n  t.deepEqual(featureIndexes, [0, 0, 0, 0, 0, 0, 0, 0]);\n  t.deepEqual(multiFeatureIndexes, [0, 0, 0, 0, 0, 0, 0, 0]);\n  t.deepEqual(geometryIndexes, [0, 0, 0, 0, 1, 1, 1, 1]);\n  t.deepEqual(segmentIndexes, [0, 1, 2, 3, 0, 1, 2, 3]);\n  t.end();\n});\n\ntest(\"meta.coordEach -- indexes -- Multi-Polygon with hole\", (t) => {\n  const featureIndexes = [];\n  const multiFeatureIndexes = [];\n  const geometryIndexes = [];\n  const coordIndexes = [];\n\n  // MultiPolygon with hole\n  // ======================\n  // FeatureIndex => 0\n  const multiPolyWithHole = multiPolygon([\n    // Polygon 1\n    // ---------\n    // MultiFeature Index => 0\n    [\n      // Outer Ring\n      // ----------\n      // Geometry Index => 0\n      // Coord Index => [0, 1, 2, 3, 4] (Major Release Change v6.x)\n      [\n        [102.0, 2.0],\n        [103.0, 2.0],\n        [103.0, 3.0],\n        [102.0, 3.0],\n        [102.0, 2.0],\n      ],\n    ],\n    // Polygon 2 with Hole\n    // -------------------\n    // MultiFeature Index => 1\n    [\n      // Outer Ring\n      // ----------\n      // Geometry Index => 0\n      // Coord Index => [0, 1, 2, 3, 4] (Major Release Change v6.x)\n      [\n        [100.0, 0.0],\n        [101.0, 0.0],\n        [101.0, 1.0],\n        [100.0, 1.0],\n        [100.0, 0.0],\n      ],\n\n      // Inner Ring\n      // ----------\n      // Geometry Index => 1\n      // Coord Index => [0, 1, 2, 3, 4] (Major Release Change v6.x)\n      [\n        [100.2, 0.2],\n        [100.8, 0.2],\n        [100.8, 0.8],\n        [100.2, 0.8],\n        [100.2, 0.2],\n      ],\n    ],\n  ]);\n\n  meta.coordEach(\n    multiPolyWithHole,\n    (coord, coordIndex, featureIndex, multiFeatureIndex, geometryIndex) => {\n      featureIndexes.push(featureIndex);\n      multiFeatureIndexes.push(multiFeatureIndex);\n      geometryIndexes.push(geometryIndex);\n      coordIndexes.push(coordIndex);\n    }\n  );\n\n  t.deepEqual(featureIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);\n  t.deepEqual(\n    multiFeatureIndexes,\n    [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]\n  );\n  t.deepEqual(geometryIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1]);\n  t.deepEqual(coordIndexes, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]);\n  // Major Release Change v6.x\n  // t.deepEqual(coordIndexes,        [0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4]);\n  t.end();\n});\n\ntest(\"meta.coordEach -- indexes -- Polygon with hole\", (t) => {\n  const featureIndexes = [];\n  const multiFeatureIndexes = [];\n  const geometryIndexes = [];\n  const coordIndexes = [];\n\n  // Polygon with Hole\n  // =================\n  // Feature Index => 0\n  const polyWithHole = polygon([\n    // Outer Ring\n    // ----------\n    // Geometry Index => 0\n    // Coord Index => [0, 1, 2, 3, 4] (Major Release Change v6.x)\n    [\n      [100.0, 0.0],\n      [101.0, 0.0],\n      [101.0, 1.0],\n      [100.0, 1.0],\n      [100.0, 0.0],\n    ],\n\n    // Inner Ring\n    // ----------\n    // Geometry Index => 1\n    // Coord Index => [0, 1, 2, 3, 4] (Major Release Change v6.x)\n    [\n      [100.2, 0.2],\n      [100.8, 0.2],\n      [100.8, 0.8],\n      [100.2, 0.8],\n      [100.2, 0.2],\n    ],\n  ]);\n\n  meta.coordEach(\n    polyWithHole,\n    (coord, coordIndex, featureIndex, multiFeatureIndex, geometryIndex) => {\n      featureIndexes.push(featureIndex);\n      multiFeatureIndexes.push(multiFeatureIndex);\n      geometryIndexes.push(geometryIndex);\n      coordIndexes.push(coordIndex);\n    }\n  );\n\n  t.deepEqual(featureIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);\n  t.deepEqual(multiFeatureIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);\n  t.deepEqual(geometryIndexes, [0, 0, 0, 0, 0, 1, 1, 1, 1, 1]);\n  t.deepEqual(coordIndexes, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]);\n  // Major Release Change v6.x\n  // t.deepEqual(coordIndexes,        [0, 1, 2, 3, 4, 0, 1, 2, 3, 4]);\n  t.end();\n});\n\ntest(\"meta.coordEach -- indexes -- FeatureCollection of LineString\", (t) => {\n  const featureIndexes = [];\n  const multiFeatureIndexes = [];\n  const geometryIndexes = [];\n  const coordIndexes = [];\n\n  // FeatureCollection of LineStrings\n  const line = lineStrings([\n    // LineString 1\n    // Feature Index => 0\n    // Geometry Index => 0\n    // Coord Index => [0, 1, 2, 3, 4] (Major Release Change v6.x)\n    [\n      [100.0, 0.0],\n      [101.0, 0.0],\n      [101.0, 1.0],\n      [100.0, 1.0],\n      [100.0, 0.0],\n    ],\n\n    // LineString 2\n    // Feature Index => 1\n    // Geometry Index => 0\n    // Coord Index => [0, 1, 2, 3, 4] (Major Release Change v6.x)\n    [\n      [100.2, 0.2],\n      [100.8, 0.2],\n      [100.8, 0.8],\n      [100.2, 0.8],\n      [100.2, 0.2],\n    ],\n  ]);\n\n  meta.coordEach(\n    line,\n    (coord, coordIndex, featureIndex, multiFeatureIndex, geometryIndex) => {\n      featureIndexes.push(featureIndex);\n      multiFeatureIndexes.push(multiFeatureIndex);\n      geometryIndexes.push(geometryIndex);\n      coordIndexes.push(coordIndex);\n    }\n  );\n\n  t.deepEqual(featureIndexes, [0, 0, 0, 0, 0, 1, 1, 1, 1, 1]);\n  t.deepEqual(multiFeatureIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);\n  t.deepEqual(geometryIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);\n  t.deepEqual(coordIndexes, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]);\n  // Major Release Change v6.x\n  // t.deepEqual(coordIndexes,        [0, 1, 2, 3, 4, 0, 1, 2, 3, 4]);\n  t.end();\n});\n\ntest(\"meta -- breaking of iterations\", (t) => {\n  const lines = lineStrings([\n    [\n      [10, 10],\n      [50, 30],\n      [30, 40],\n    ],\n    [\n      [-10, -10],\n      [-50, -30],\n      [-30, -40],\n    ],\n  ]);\n  const multiLine = multiLineString([\n    [\n      [10, 10],\n      [50, 30],\n      [30, 40],\n    ],\n    [\n      [-10, -10],\n      [-50, -30],\n      [-30, -40],\n    ],\n  ]);\n\n  // Each Iterators\n  // meta.segmentEach has been purposely excluded from this list\n  for (const func of [\n    meta.coordEach,\n    meta.featureEach,\n    meta.flattenEach,\n    meta.geomEach,\n    meta.lineEach,\n    meta.propEach,\n    meta.segmentEach,\n  ]) {\n    // Meta Each function should only a value of 1 after returning `false`\n\n    // FeatureCollection\n    let count = 0;\n    func(lines, () => {\n      count += 1;\n      return false;\n    });\n    t.equal(count, 1, func.name);\n\n    // Multi Geometry\n    let multiCount = 0;\n    func(multiLine, () => {\n      multiCount += 1;\n      return false;\n    });\n    t.equal(multiCount, 1, func.name);\n  }\n  t.end();\n});\n\ntest(\"meta -- findSegment\", (t) => {\n  const nullFeature = feature(null);\n  const pt = point([10, 10]);\n  const line = lineString([\n    [10, 10],\n    [50, 30],\n    [30, 40],\n  ]);\n  const poly = polygon([\n    [\n      [10, 10],\n      [50, 30],\n      [30, 40],\n      [10, 10],\n    ],\n    [\n      [-10, -10],\n      [-50, -30],\n      [-30, -40],\n      [-10, -10],\n    ],\n  ]);\n  const multiLine = multiLineString([\n    [\n      [10, 10],\n      [50, 30],\n      [30, 40],\n    ],\n    [\n      [-10, -10],\n      [-50, -30],\n      [-30, -40],\n    ],\n  ]);\n  const lines = lineStrings([\n    [\n      [10, 10],\n      [50, 30],\n      [30, 40],\n      [10, 10],\n    ],\n    [\n      [-10, -10],\n      [-50, -30],\n      [-30, -40],\n      [-10, -10],\n    ],\n  ]);\n  // firstSegment\n  t.deepEqual(\n    meta.findSegment(nullFeature),\n    null,\n    \"findSegment (default) -- nullFeature\"\n  );\n  t.deepEqual(meta.findSegment(pt), null, \"findSegment (default) -- pt\");\n  t.deepEqual(\n    meta.findSegment(line),\n    lineString([\n      [10, 10],\n      [50, 30],\n    ]),\n    \"findSegment (default) -- line\"\n  );\n  t.deepEqual(\n    meta.findSegment(poly),\n    lineString([\n      [10, 10],\n      [50, 30],\n    ]),\n    \"findSegment (default) -- poly\"\n  );\n  t.deepEqual(\n    meta.findSegment(multiLine),\n    lineString([\n      [10, 10],\n      [50, 30],\n    ]),\n    \"findSegment (default) -- multiLine\"\n  );\n  t.deepEqual(\n    meta.findSegment(lines),\n    lineString([\n      [10, 10],\n      [50, 30],\n    ]),\n    \"findSegment (default) -- lines\"\n  );\n\n  // lastSegment\n  t.deepEqual(\n    meta.findSegment(nullFeature),\n    null,\n    \"findSegment (last) -- nullFeature\"\n  );\n  t.deepEqual(meta.findSegment(pt), null, \"findSegment (last) -- pt\");\n  t.deepEqual(\n    meta.findSegment(line, { segmentIndex: -1 }),\n    lineString([\n      [50, 30],\n      [30, 40],\n    ]),\n    \"findSegment (last) -- line\"\n  );\n  t.deepEqual(\n    meta.findSegment(poly, { segmentIndex: -1, geometryIndex: -1 }),\n    lineString([\n      [-30, -40],\n      [-10, -10],\n    ]),\n    \"findSegment (last) -- poly\"\n  );\n  t.deepEqual(\n    meta.findSegment(multiLine, { segmentIndex: -1, multiFeatureIndex: -1 }),\n    lineString([\n      [-50, -30],\n      [-30, -40],\n    ]),\n    \"findSegment (last) -- multiLine\"\n  );\n  t.deepEqual(\n    meta.findSegment(lines, { segmentIndex: -1, featureIndex: -1 }),\n    lineString([\n      [-30, -40],\n      [-10, -10],\n    ]),\n    \"findSegment (last) -- lines\"\n  );\n  t.end();\n});\n\ntest(\"meta -- findPoint\", (t) => {\n  const nullFeature = feature(null);\n  const pt = point([10, 10]);\n  const line = lineString([\n    [10, 10],\n    [50, 30],\n    [30, 40],\n  ]);\n  const poly = polygon([\n    [\n      [10, 10],\n      [50, 30],\n      [30, 40],\n      [10, 10],\n    ],\n    [\n      [-10, -10],\n      [-50, -30],\n      [-30, -40],\n      [-10, -10],\n    ],\n  ]);\n  const multiLine = multiLineString([\n    [\n      [10, 10],\n      [50, 30],\n      [30, 40],\n    ],\n    [\n      [-10, -10],\n      [-50, -30],\n      [-30, -40],\n    ],\n  ]);\n  const lines = lineStrings([\n    [\n      [10, 10],\n      [50, 30],\n      [30, 40],\n      [10, 10],\n    ],\n    [\n      [-10, -10],\n      [-50, -30],\n      [-30, -40],\n      [-10, -10],\n    ],\n  ]);\n  // firstPoint\n  t.deepEqual(\n    meta.findPoint(nullFeature),\n    null,\n    \"findPoint (default) -- nullFeature\"\n  );\n  t.deepEqual(meta.findPoint(pt), point([10, 10]), \"findPoint (default) -- pt\");\n  t.deepEqual(\n    meta.findPoint(line),\n    point([10, 10]),\n    \"findPoint (default) -- line\"\n  );\n  t.deepEqual(\n    meta.findPoint(poly),\n    point([10, 10]),\n    \"findPoint (default) -- poly\"\n  );\n  t.deepEqual(\n    meta.findPoint(multiLine),\n    point([10, 10]),\n    \"findPoint (default) -- multiLine\"\n  );\n  t.deepEqual(\n    meta.findPoint(lines),\n    point([10, 10]),\n    \"findPoint (default) -- lines\"\n  );\n\n  // lastPoint\n  t.deepEqual(\n    meta.findPoint(nullFeature),\n    null,\n    \"findPoint (last) -- nullFeature\"\n  );\n  t.deepEqual(meta.findPoint(pt), point([10, 10]), \"findPoint (last) -- pt\");\n  t.deepEqual(\n    meta.findPoint(line, { coordIndex: -1 }),\n    point([30, 40]),\n    \"findPoint (last) -- line\"\n  );\n  t.deepEqual(\n    meta.findPoint(poly, { coordIndex: -1, geometryIndex: -1 }),\n    point([-10, -10]),\n    \"findPoint (last) -- poly\"\n  );\n  t.deepEqual(\n    meta.findPoint(multiLine, { coordIndex: -1, multiFeatureIndex: -1 }),\n    point([-30, -40]),\n    \"findPoint (last) -- multiLine\"\n  );\n  t.deepEqual(\n    meta.findPoint(lines, { coordIndex: -1, featureIndex: -1 }),\n    point([-10, -10]),\n    \"findPoint (last) -- lines\"\n  );\n  t.end();\n});\n\ntest(\"meta -- segmentEach -- Issue #1273\", (t) => {\n  // https://github.com/Turfjs/turf/issues/1273\n  const poly = polygon([\n    // Outer Ring\n    // Segment = 0\n    // Geometries = 0,1,2\n    [\n      [10, 10],\n      [50, 30],\n      [30, 40],\n      [10, 10],\n    ],\n    // Inner Ring\n    // Segment => 1\n    // Geometries => 0,1,2\n    [\n      [-10, -10],\n      [-50, -30],\n      [-30, -40],\n      [-10, -10],\n    ],\n  ]);\n  const segmentIndexes = [];\n  const geometryIndexes = [];\n  meta.segmentEach(\n    poly,\n    (line, featureIndex, multiFeatureIndex, segmentIndex, geometryIndex) => {\n      segmentIndexes.push(segmentIndex);\n      geometryIndexes.push(geometryIndex);\n    }\n  );\n  t.deepEqual(segmentIndexes, [0, 0, 0, 1, 1, 1]);\n  t.deepEqual(geometryIndexes, [0, 1, 2, 0, 1, 2]);\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-meta/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-meta/types.ts",
    "content": "import { Point, LineString } from \"geojson\";\nimport * as helpers from \"@turf/helpers\";\nimport { featureCollection, point, lineString } from \"@turf/helpers\";\nimport * as meta from \"./index.js\";\nimport {\n  coordReduce,\n  coordEach,\n  propEach,\n  propReduce,\n  featureReduce,\n  featureEach,\n  coordAll,\n  geomReduce,\n  geomEach,\n  flattenReduce,\n  flattenEach,\n  segmentReduce,\n  segmentEach,\n  lineReduce,\n  lineEach,\n} from \"./index.js\";\n\n// Fixtures\nconst pt = helpers.point([0, 0]);\nconst line = helpers.lineString([\n  [0, 0],\n  [1, 1],\n]);\nconst poly = helpers.polygon([\n  [\n    [0, 0],\n    [1, 1],\n    [0, 1],\n    [0, 0],\n  ],\n]);\nconst multiPoly = helpers.multiPolygon([\n  [\n    [\n      [0, 0],\n      [1, 1],\n      [0, 1],\n      [0, 0],\n    ],\n  ],\n]);\nconst multiLine = helpers.multiLineString([\n  [\n    [0, 0],\n    [1, 1],\n    [0, 1],\n    [0, 0],\n  ],\n  [\n    [2, 2],\n    [3, 3],\n  ],\n]);\nconst geomCollection = helpers.geometryCollection([pt.geometry, line.geometry]);\nconst features = helpers.featureCollection<Point | LineString>([pt, line]);\n\nconst customPoint = point([10, 20], { foo: \"abc\", bar: 123 });\nconst customPoints = featureCollection([customPoint]);\nconst customLineString = lineString(\n  [\n    [0, 0],\n    [10, 20],\n  ],\n  { foo: \"abc\", bar: 123 }\n);\nconst customLineStrings = featureCollection([customLineString]);\n\n/**\n * meta.coordEach\n */\nconst coordEachValue: void = meta.coordEach(pt, (coords) => coords);\ncoordEach(pt, (coords, index) => coords);\nmeta.coordEach(pt, (coords, index) => coords);\nmeta.coordEach(pt.geometry, (coords) => {\n  const equal: number[] = coords;\n});\nmeta.coordEach(line, (coords) => {\n  const equal: number[] = coords;\n});\nmeta.coordEach(poly, (coords) => {\n  const equal: number[] = coords;\n});\nmeta.coordEach(multiPoly, (coords) => {\n  const equal: number[] = coords;\n});\nmeta.coordEach(geomCollection, (coords) => coords);\n\n/**\n * meta.coordReduce\n */\nconst coordReduceValue: number = meta.coordReduce(\n  pt,\n  (previous, coords) => 1 + 1\n);\ncoordReduce(pt, (previous, coords, index) => coords);\nmeta.coordReduce(pt, (previous, coords, index) => coords);\nmeta.coordReduce(pt, (previous, coords, index) => 1 + 1, 0);\nmeta.coordReduce<number[]>(pt, (previous, coords) => coords);\nmeta.coordReduce(geomCollection, (previous, coords) => coords);\n\n/**\n * meta.propReduce\n */\nconst propReduceValue: number = meta.propReduce(\n  poly,\n  (previous, prop) => 1 + 1\n);\npropReduce(poly, (previous, prop) => 1 + 1, 0);\nmeta.propReduce(poly, (previous, prop) => 1 + 1, 0);\nmeta.propReduce(features, (previous, prop) => prop);\nmeta.propReduce(poly, (previous, prop, index) => prop);\nmeta.propReduce(poly, (previous, prop) => 1 + 1);\nmeta.propReduce(geomCollection, (previous, prop) => prop);\n\n/**\n * meta.propEach\n */\nconst propEachValue: void = meta.propEach(poly, (prop) => prop);\npropEach(features, (prop) => prop);\nmeta.propEach(features, (prop) => prop);\nmeta.propEach(poly, (prop, index) => prop);\nmeta.propEach<{ bar: string }>(poly, (prop) => prop.bar);\nmeta.propEach(geomCollection, (prop) => prop);\n\n/**\n * meta.coordAll\n */\ncoordAll(poly);\nconst coords: Array<Array<number>> = meta.coordAll(poly);\n\n/**\n * meta.featureReduce\n */\nconst featureReduceValue: number = meta.featureReduce(\n  poly,\n  (previous, feature) => 1 + 1\n);\nfeatureReduce(poly, (previous, feature) => 1 + 1, 0);\nmeta.featureReduce(poly, (previous, feature) => 1 + 1, 0);\nmeta.featureReduce(features, (previous, feature) => feature);\nmeta.featureReduce(poly, (previous, feature, index) => feature);\nmeta.featureReduce(geomCollection, (previous, feature, index) => feature);\n\n/**\n * meta.featureEach\n */\nconst featureEachValue: void = meta.featureEach(poly, (feature) => feature);\nfeatureEach(features, (feature) => feature);\nmeta.featureEach(features, (feature) => feature);\nmeta.featureEach(poly, (feature, index) => feature);\nmeta.featureEach(geomCollection, (feature, index) => feature);\n\n// Access custom properties\nfeatureEach(customPoints, (pt) => {\n  pt.properties.bar;\n  // pt.properties.hello // [ts] Property 'hello' does not exist on type '{ foo: string; bar: number; }'.\n});\n\n/**\n * meta.geomReduce\n */\nconst geomReduceValue: number = meta.geomReduce(\n  poly,\n  (previous, geom) => 1 + 1\n);\ngeomReduce(poly, (previous, geom) => 1 + 1, 0);\nmeta.geomReduce(poly, (previous, geom) => 1 + 1, 0);\nmeta.geomReduce(features, (previous, geom) => geom);\nmeta.geomReduce(poly, (previous, geom, index, props) => geom);\nmeta.geomReduce(geomCollection, (previous, geom, index, props) => geom);\n\n/**\n * meta.geomEach\n */\nconst geomEachValue: void = meta.geomEach(poly, (geom) => geom);\ngeomEach(features, (geom) => geom);\nmeta.geomEach(features, (geom) => geom);\nmeta.geomEach(poly, (geom, index, props) => geom);\nmeta.geomEach(geomCollection, (geom, index, props) => geom);\n\n/**\n * meta.flattenReduce\n */\nconst flattenReduceValue: number = meta.flattenReduce(\n  poly,\n  (previous, feature) => 1 + 1\n);\nflattenReduce(poly, (previous, feature) => 1 + 1, 0);\nmeta.flattenReduce(poly, (previous, feature) => 1 + 1, 0);\nmeta.flattenReduce(features, (previous, feature) => feature);\nmeta.flattenReduce(poly, (previous, feature, index, props) => feature);\nmeta.flattenReduce(\n  geomCollection,\n  (previous, feature, index, props) => feature\n);\n\n/**\n * meta.flattenEach\n */\nconst flattenEachValue: void = meta.flattenEach(poly, (feature) => feature);\nflattenEach(features, (feature) => feature);\nmeta.flattenEach(features, (feature) => feature);\nmeta.flattenEach(poly.geometry, (feature, index, props) => feature);\nmeta.flattenEach(geomCollection, (feature, index, props) => feature);\n\n/**\n * meta.segmentReduce\n */\nconst lines = helpers.featureCollection<LineString>([line]);\nconst segmentReduceValue: number = meta.segmentReduce(poly, () => 1 + 1);\nsegmentReduce(poly, (previousValue) => previousValue);\nmeta.segmentReduce(poly, (previousValue) => previousValue);\nmeta.segmentReduce(poly, (previousValue, currentSegment) => currentSegment);\nmeta.segmentReduce(poly, (previousValue, currentSegment) => 1 + 1, 0);\nmeta.segmentReduce(lines, (previousValue, currentSegment) => currentSegment);\nmeta.segmentReduce(\n  poly,\n  (previousValue, currentSegment, currentIndex) => currentSegment\n);\nmeta.segmentReduce(\n  geomCollection,\n  (previousValue, currentSegment, currentIndex) => currentSegment\n);\nmeta.segmentReduce(\n  geomCollection,\n  (previousValue, currentSegment, currentIndex, currentSubIndex) =>\n    currentSegment\n);\n\n/**\n * meta.segmentEach\n */\nconst segmentEachValue: void = meta.segmentEach(poly, () => {\n  /* no-op */\n});\nsegmentEach(poly, (currentSegment) => currentSegment);\nmeta.segmentEach(poly, (currentSegment) => currentSegment);\nmeta.segmentEach(features, (currentSegment) => currentSegment);\nmeta.segmentEach(\n  poly.geometry,\n  (currentSegment, currentIndex) => currentSegment\n);\nmeta.segmentEach(\n  geomCollection,\n  (currentSegment, currentIndex) => currentSegment\n);\nmeta.segmentEach(\n  geomCollection,\n  (currentSegment, currentIndex, currentSubIndex) => currentSegment\n);\n\n/**\n * meta.lineEach\n */\n// meta.lineEach(pt, () => {}) // Argument of type 'Feature<Point>' is not assignable to parameter of type 'LineString | Polygon | MultiPolygon | MultiLineString | Feature<Lines>'.\nconst lineEachValue: void = meta.lineEach(line, () => {\n  /* no-op */\n});\nlineEach(line, (currentLine) => currentLine);\nmeta.lineEach(line, (currentLine) => currentLine);\nmeta.lineEach(\n  multiLine,\n  (currentLine, featureIndex, featureSubIndex) => currentLine\n);\nmeta.lineEach(poly, (currentLine) => currentLine);\nmeta.lineEach(\n  poly,\n  (currentLine, featureIndex, featureSubIndex, lineIndex) => currentLine\n);\nmeta.lineEach(\n  multiPoly,\n  (currentLine, featureIndex, featureSubIndex, lineIndex) => currentLine\n);\n\n// Able to load custom LineStrings\nlineEach(customLineString, (line) => {\n  /* no-op */\n});\nlineEach(customLineStrings, (line) => {\n  line.properties.bar;\n  // line.properties.hello // [ts] Property 'hello' does not exist on type '{ foo: string; bar: string; }'.\n});\n\n/**\n * meta.lineReduce\n */\n// meta.lineReduce(pt, () => {}) // Argument of type 'Feature<Point>' is not assignable to parameter of type 'LineString | Polygon | MultiPolygon | MultiLineString | Feature<Lines>'.\nconst lineReduceValue: number = meta.lineReduce(line, () => 1 + 1);\nlineReduce(line, (previousValue) => previousValue);\nmeta.lineReduce(line, (previousValue) => previousValue);\nmeta.lineReduce(line, (previousValue, currentLine) => currentLine);\nmeta.lineReduce(line, (previousValue, currentLine) => 1 + 1, 0);\nmeta.lineReduce(multiLine, (previousValue, currentLine) => currentLine);\nmeta.lineReduce(\n  multiLine,\n  (previousValue, currentLine, featureIndex, featureSubIndex) => currentLine\n);\nmeta.lineReduce(poly, (previousValue, currentLine) => currentLine);\nmeta.lineReduce(\n  poly,\n  (previousValue, currentLine, featureIndex, featureSubIndex) => currentLine\n);\nmeta.lineReduce(\n  poly,\n  (previousValue, currentLine, featureIndex, featureSubIndex) => 1 + 1,\n  1\n);\nmeta.lineReduce(\n  multiPoly,\n  (previousValue, currentLine, featureIndex, featureSubIndex, lineIndex) =>\n    currentLine\n);\nmeta.lineReduce(\n  multiPoly,\n  (previousValue, currentLine, featureIndex, featureSubIndex, lineIndex) =>\n    1 + 1,\n  1\n);\n\n/**\n * findSegment\n */\nmeta.findSegment(line);\nmeta.findSegment(line.geometry);\nmeta.findSegment(line, { segmentIndex: -1 });\n\n/**\n * findPoint\n */\nmeta.findPoint(line);\nmeta.findPoint(line.geometry);\nmeta.findPoint(line, { coordIndex: -1 });\nmeta.findPoint(customLineString).properties.foo;\nmeta.findPoint(customLineString).properties.bar;\n// meta.findPoint(customLineString).properties.hello // [ts] Property 'hello' does not exist on type '{ foo: string; bar: number; }'.\n"
  },
  {
    "path": "packages/turf-midpoint/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-midpoint/README.md",
    "content": "# @turf/midpoint\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## midpoint\n\nTakes two points and returns a point midway between them. The midpoint is\ncalculated geodesically, meaning the curvature of the earth is taken into\naccount.\n\n### Parameters\n\n*   `point1` **[Coord][1]** first point\n*   `point2` **[Coord][1]** second point\n\n### Examples\n\n```javascript\nconst point1 = turf.point([144.834823, -37.771257]);\nconst point2 = turf.point([145.14244, -37.830937]);\n\nconst midpoint = turf.midpoint(point1, point2);\n\n//addToMap\nconst addToMap = [point1, point2, midpoint];\nmidpoint.properties['marker-color'] = '#f00';\n```\n\nReturns **[Feature][2]<[Point][3]>** a point midway between `pt1` and `pt2`\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/midpoint\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-midpoint/bench.ts",
    "content": "import Benchmark, { Event } from \"benchmark\";\nimport { point } from \"@turf/helpers\";\nimport { midpoint } from \"./index.js\";\n\nvar pt1 = point([0, 0]);\nvar pt2 = point([10, 0]);\n\nnew Benchmark.Suite(\"turf-midpoint\")\n  .add(\"turf-midpoint\", function () {\n    midpoint(pt1, pt2);\n  })\n  .on(\"cycle\", function (event: Event) {\n    console.log(String(event.target));\n  })\n  .run();\n"
  },
  {
    "path": "packages/turf-midpoint/index.ts",
    "content": "import { Feature, Point } from \"geojson\";\nimport { bearing } from \"@turf/bearing\";\nimport { destination } from \"@turf/destination\";\nimport { distance } from \"@turf/distance\";\nimport { Coord } from \"@turf/helpers\";\n\n/**\n * Takes two points and returns a point midway between them. The midpoint is\n * calculated geodesically, meaning the curvature of the earth is taken into\n * account.\n *\n * @function\n * @param {Coord} point1 first point\n * @param {Coord} point2 second point\n * @returns {Feature<Point>} a point midway between `pt1` and `pt2`\n * @example\n * const point1 = turf.point([144.834823, -37.771257]);\n * const point2 = turf.point([145.14244, -37.830937]);\n *\n * const midpoint = turf.midpoint(point1, point2);\n *\n * //addToMap\n * const addToMap = [point1, point2, midpoint];\n * midpoint.properties['marker-color'] = '#f00';\n */\nfunction midpoint(point1: Coord, point2: Coord): Feature<Point> {\n  const dist = distance(point1, point2);\n  const heading = bearing(point1, point2);\n  const midpoint = destination(point1, dist / 2, heading);\n\n  return midpoint;\n}\n\nexport { midpoint };\nexport default midpoint;\n"
  },
  {
    "path": "packages/turf-midpoint/package.json",
    "content": "{\n  \"name\": \"@turf/midpoint\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes two points and calculates a point midway between them geodesically.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"midpoint\",\n    \"bisect\",\n    \"geojson\",\n    \"line\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/bearing\": \"workspace:*\",\n    \"@turf/destination\": \"workspace:*\",\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-midpoint/test.ts",
    "content": "import test from \"tape\";\nimport { midpoint } from \"./index.js\";\nimport { distance } from \"@turf/distance\";\nimport { point } from \"@turf/helpers\";\n\ntest(\"midpoint -- horizontal equator\", function (t) {\n  var pt1 = point([0, 0]);\n  var pt2 = point([10, 0]);\n\n  var mid = midpoint(pt1, pt2);\n\n  t.equal(distance(pt1, mid).toFixed(6), distance(pt2, mid).toFixed(6));\n\n  t.end();\n});\n\ntest(\"midpoint -- vertical from equator\", function (t) {\n  var pt1 = point([0, 0]);\n  var pt2 = point([0, 10]);\n\n  var mid = midpoint(pt1, pt2);\n\n  t.equal(distance(pt1, mid).toFixed(6), distance(pt2, mid).toFixed(6));\n\n  t.end();\n});\n\ntest(\"midpoint -- vertical to equator\", function (t) {\n  var pt1 = point([0, 10]);\n  var pt2 = point([0, 0]);\n\n  var mid = midpoint(pt1, pt2);\n\n  t.equal(distance(pt1, mid).toFixed(6), distance(pt2, mid).toFixed(6));\n\n  t.end();\n});\n\ntest(\"midpoint -- diagonal back over equator\", function (t) {\n  var pt1 = point([-1, 10]);\n  var pt2 = point([1, -1]);\n\n  var mid = midpoint(pt1, pt2);\n\n  t.equal(distance(pt1, mid).toFixed(6), distance(pt2, mid).toFixed(6));\n\n  t.end();\n});\n\ntest(\"midpoint -- diagonal forward over equator\", function (t) {\n  var pt1 = point([-5, -1]);\n  var pt2 = point([5, 10]);\n\n  var mid = midpoint(pt1, pt2);\n\n  t.equal(distance(pt1, mid).toFixed(6), distance(pt2, mid).toFixed(6));\n\n  t.end();\n});\n\ntest(\"midpoint -- long distance\", function (t) {\n  var pt1 = point([22.5, 21.94304553343818]);\n  var pt2 = point([92.10937499999999, 46.800059446787316]);\n\n  var mid = midpoint(pt1, pt2);\n\n  t.equal(distance(pt1, mid).toFixed(6), distance(pt2, mid).toFixed(6));\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-midpoint/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-moran-index/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-moran-index/README.md",
    "content": "# @turf/moran-index\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## MoranIndex\n\nType: [object][1]\n\n### Properties\n\n*   `moranIndex` **[number][2]** the moran's Index of the observed feature set\n*   `expectedMoranIndex` **[number][2]** the moran's Index of the random distribution\n*   `stdNorm` **[number][2]** the standard devitaion of the random distribution\n*   `zNorm` **[number][2]** the z-score of the observe samples with regard to the random distribution\n\n## moranIndex\n\nMoran's I measures patterns of attribute values associated with features.\nThe method reveal whether similar values tend to occur near each other,\nor whether high or low values are interspersed.\n\nMoran's I > 0 means a clusterd pattern.\nMoran's I < 0 means a dispersed pattern.\nMoran's I = 0 means a random pattern.\n\nIn order to test the significance of the result. The z score is calculated.\nA positive enough z-score (ex. >1.96) indicates clustering,\nwhile a negative enough z-score (ex. <-1.96) indicates a dispersed pattern.\n\nthe z-score can be calculated based on a normal or random assumption.\n\n**Bibliography**\\*\n\n1.  [Moran's I][3]\n\n2.  [pysal][4]\n\n3.  Andy Mitchell, The ESRI Guide to GIS Analysis Volume 2: Spatial Measurements & Statistics.\n\n### Parameters\n\n*   `fc` **[FeatureCollection][5]\\<any>**&#x20;\n*   `options` **[Object][1]**&#x20;\n\n    *   `options.inputField` **[string][6]** the property name, must contain numeric values\n    *   `options.threshold` **[number][2]** the distance threshold (optional, default `100000`)\n    *   `options.p` **[number][2]** the Minkowski p-norm distance parameter (optional, default `2`)\n    *   `options.binary` **[boolean][7]** whether transfrom the distance to binary (optional, default `false`)\n    *   `options.alpha` **[number][2]** the distance decay parameter (optional, default `-1`)\n    *   `options.standardization` **[boolean][7]** wheter row standardization the distance (optional, default `true`)\n\n### Examples\n\n```javascript\nconst bbox = [-65, 40, -63, 42];\nconst dataset = turf.randomPoint(100, { bbox: bbox });\n\nconst result = turf.moranIndex(dataset, {\n  inputField: 'CRIME',\n});\n```\n\nReturns **[MoranIndex][8]**&#x20;\n\n[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[3]: https://en.wikipedia.org/wiki/Moran%27s_I\n\n[4]: http://pysal.readthedocs.io/en/latest/index.html\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n[8]: #moranindex\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/moran-index\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-moran-index/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { moranIndex } from \"./index.js\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n * point: 3.434ms\n * point x 4,672 ops/sec ±1.38% (94 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-moran-index\");\n\nconst pointPath = path.join(__dirname, \"test\", \"in\", \"point.json\");\nconst pointJson = loadJsonFileSync(pointPath);\n\nconst { name } = path.parse(pointPath);\n\nconsole.time(name);\nmoranIndex(pointJson, {\n  inputField: \"CRIME\",\n});\nconsole.timeEnd(name);\nsuite.add(name, () =>\n  moranIndex(pointJson, {\n    inputField: \"CRIME\",\n  })\n);\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-moran-index/index.ts",
    "content": "import { FeatureCollection } from \"geojson\";\nimport { distanceWeight as spatialWeight } from \"@turf/distance-weight\";\nimport { featureEach } from \"@turf/meta\";\n\n/**\n * @typedef {object} MoranIndex\n * @property {number} moranIndex the moran's Index of the observed feature set\n * @property {number} expectedMoranIndex the moran's Index of the random distribution\n * @property {number} stdNorm the standard devitaion of the random distribution\n * @property {number} zNorm the z-score of the observe samples with regard to the random distribution\n */\ntype MoranIndex = {\n  moranIndex: number;\n  expectedMoranIndex: number;\n  stdNorm: number;\n  zNorm: number;\n};\n\n/**\n * Moran's I measures patterns of attribute values associated with features.\n * The method reveal whether similar values tend to occur near each other,\n * or whether high or low values are interspersed.\n *\n * Moran's I > 0 means a clusterd pattern.\n * Moran's I < 0 means a dispersed pattern.\n * Moran's I = 0 means a random pattern.\n *\n * In order to test the significance of the result. The z score is calculated.\n * A positive enough z-score (ex. >1.96) indicates clustering,\n * while a negative enough z-score (ex. <-1.96) indicates a dispersed pattern.\n *\n * the z-score can be calculated based on a normal or random assumption.\n *\n * **Bibliography***\n *\n * 1. [Moran's I](https://en.wikipedia.org/wiki/Moran%27s_I)\n *\n * 2. [pysal](http://pysal.readthedocs.io/en/latest/index.html)\n *\n * 3. Andy Mitchell, The ESRI Guide to GIS Analysis Volume 2: Spatial Measurements & Statistics.\n *\n * @function\n * @param {FeatureCollection<any>} fc\n * @param {Object} options\n * @param {string} options.inputField the property name, must contain numeric values\n * @param {number} [options.threshold=100000] the distance threshold\n * @param {number} [options.p=2] the Minkowski p-norm distance parameter\n * @param {boolean} [options.binary=false] whether transfrom the distance to binary\n * @param {number} [options.alpha=-1] the distance decay parameter\n * @param {boolean} [options.standardization=true] wheter row standardization the distance\n * @returns {MoranIndex}\n * @example\n *\n * const bbox = [-65, 40, -63, 42];\n * const dataset = turf.randomPoint(100, { bbox: bbox });\n *\n * const result = turf.moranIndex(dataset, {\n *   inputField: 'CRIME',\n * });\n */\n\nfunction moranIndex(\n  fc: FeatureCollection<any>,\n  options: {\n    inputField: string;\n    threshold?: number;\n    p?: number;\n    binary?: boolean;\n    alpha?: number;\n    standardization?: boolean;\n  }\n): MoranIndex {\n  const inputField = options.inputField;\n  const threshold = options.threshold || 100000;\n  const p = options.p || 2;\n  const binary = options.binary ?? false;\n  const alpha = options.alpha || -1;\n  const standardization = options.standardization ?? true;\n\n  const weight = spatialWeight(fc, {\n    alpha,\n    binary,\n    p,\n    standardization,\n    threshold,\n  });\n\n  const y: number[] = [];\n  featureEach(fc, (feature) => {\n    const feaProperties = feature.properties || {};\n    // validate inputField exists\n    y.push(feaProperties[inputField]);\n  });\n\n  const yMean = mean(y);\n  const yVar = variance(y);\n  let weightSum = 0;\n  let s0 = 0;\n  let s1 = 0;\n  let s2 = 0;\n  const n = weight.length;\n  // validate y.length is the same as weight.length\n  for (let i = 0; i < n; i++) {\n    let subS2 = 0;\n    for (let j = 0; j < n; j++) {\n      weightSum += weight[i][j] * (y[i] - yMean) * (y[j] - yMean);\n      s0 += weight[i][j];\n      s1 += Math.pow(weight[i][j] + weight[j][i], 2);\n      subS2 += weight[i][j] + weight[j][i];\n    }\n    s2 += Math.pow(subS2, 2);\n  }\n  s1 = 0.5 * s1;\n\n  const moranIndex = weightSum / s0 / yVar;\n  const expectedMoranIndex = -1 / (n - 1);\n  const vNum = n * n * s1 - n * s2 + 3 * (s0 * s0);\n  const vDen = (n - 1) * (n + 1) * (s0 * s0);\n  const vNorm = vNum / vDen - expectedMoranIndex * expectedMoranIndex;\n  const stdNorm = Math.sqrt(vNorm);\n  const zNorm = (moranIndex - expectedMoranIndex) / stdNorm;\n\n  return {\n    expectedMoranIndex,\n    moranIndex,\n    stdNorm,\n    zNorm,\n  };\n}\n\n/**\n * get mean of a list\n *\n * @private\n * @param {number[]} y\n * @returns {number}\n *\n */\nfunction mean(y: number[]): number {\n  let sum = 0;\n  for (const item of y) {\n    sum += item;\n  }\n  return sum / y.length;\n}\n/**\n * get variance of a list\n *\n * @private\n * @param {number[]} y\n * @returns {number}\n *\n */\nfunction variance(y: number[]): number {\n  const yMean = mean(y);\n  let sum = 0;\n  for (const item of y) {\n    sum += Math.pow(item - yMean, 2);\n  }\n  return sum / y.length;\n}\n\nexport { moranIndex, MoranIndex };\nexport default moranIndex;\n"
  },
  {
    "path": "packages/turf-moran-index/package.json",
    "content": "{\n  \"name\": \"@turf/moran-index\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Measures patterns of attribute values associated with features. Reveals whether similar values tend to occur near each other, or whether high or low values are interspersed\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Haoming Zhuang <@zhuang-hao-ming>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"moran-index\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/distance-weight\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-moran-index/test/in/columbus.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.309441,\n        \"PERIMETER\": 2.440629,\n        \"COLUMBUS_\": 2.0,\n        \"COLUMBUS_I\": 5.0,\n        \"POLYID\": 1.0,\n        \"NEIG\": 5,\n        \"HOVAL\": 80.467003,\n        \"INC\": 19.531,\n        \"CRIME\": 15.72598,\n        \"OPEN\": 2.850747,\n        \"PLUMB\": 0.217155,\n        \"DISCBD\": 5.03,\n        \"X\": 38.799999,\n        \"Y\": 44.07,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1005.0\n      },\n      \"bbox\": [\n        8.559700012207031, 13.995059967041016, 9.09996509552002, 14.742449760437012\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.624129295349121, 14.236980438232422],\n            [8.559700012207031, 14.742449760437012],\n            [8.809452056884766, 14.734430313110352],\n            [8.808412551879883, 14.636520385742188],\n            [8.919304847717285, 14.638500213623047],\n            [9.087138175964355, 14.630490303039551],\n            [9.09996509552002, 14.244830131530762],\n            [9.015047073364258, 14.241840362548828],\n            [9.008951187133789, 13.995059967041016],\n            [8.818140029907227, 14.002050399780273],\n            [8.653305053710938, 14.008090019226074],\n            [8.642902374267578, 14.089710235595703],\n            [8.63259220123291, 14.170590400695801],\n            [8.625825881958008, 14.22367000579834],\n            [8.624129295349121, 14.236980438232422]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.259329,\n        \"PERIMETER\": 2.236939,\n        \"COLUMBUS_\": 3.0,\n        \"COLUMBUS_I\": 1.0,\n        \"POLYID\": 2.0,\n        \"NEIG\": 1,\n        \"HOVAL\": 44.567001,\n        \"INC\": 21.232,\n        \"CRIME\": 18.801754,\n        \"OPEN\": 5.29672,\n        \"PLUMB\": 0.320581,\n        \"DISCBD\": 4.27,\n        \"X\": 35.619999,\n        \"Y\": 42.380001,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1001.0\n      },\n      \"bbox\": [\n        7.950088977813721, 13.727390289306641, 8.666550636291504, 14.263930320739746\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.252790451049805, 14.236940383911133],\n            [8.282757759094238, 14.229940414428711],\n            [8.330711364746094, 14.229940414428711],\n            [8.383658409118652, 14.228930473327637],\n            [8.444600105285645, 14.228919982910156],\n            [8.544504165649414, 14.23490047454834],\n            [8.624129295349121, 14.236980438232422],\n            [8.625825881958008, 14.22367000579834],\n            [8.63259220123291, 14.170590400695801],\n            [8.642902374267578, 14.089710235595703],\n            [8.653305053710938, 14.008090019226074],\n            [8.662188529968262, 13.909899711608887],\n            [8.666550636291504, 13.861700057983398],\n            [8.605281829833984, 13.839249610900879],\n            [8.579310417175293, 13.841250419616699],\n            [8.562577247619629, 13.84253978729248],\n            [8.540358543395996, 13.842399597167969],\n            [8.516386985778809, 13.841679573059082],\n            [8.502935409545898, 13.838729858398438],\n            [8.473407745361328, 13.832269668579102],\n            [8.459499359130859, 13.82034969329834],\n            [8.431432723999023, 13.793310165405273],\n            [8.415447235107422, 13.790309906005859],\n            [8.387155532836914, 13.788969993591309],\n            [8.37348747253418, 13.78831958770752],\n            [8.323546409606934, 13.786080360412598],\n            [8.284571647644043, 13.784330368041992],\n            [8.291547775268555, 13.74137020111084],\n            [8.229602813720703, 13.727390289306641],\n            [8.22661304473877, 13.744379997253418],\n            [8.215643882751465, 13.794329643249512],\n            [8.198686599731445, 13.858280181884766],\n            [8.16972541809082, 13.883259773254395],\n            [8.12777042388916, 13.89225959777832],\n            [8.093802452087402, 13.891260147094727],\n            [8.063838005065918, 13.90526008605957],\n            [8.044872283935547, 13.943220138549805],\n            [8.037888526916504, 13.96720027923584],\n            [7.999115943908691, 14.024570465087891],\n            [7.99936580657959, 14.034970283508301],\n            [8.003013610839844, 14.187020301818848],\n            [7.950088977813721, 14.243969917297363],\n            [8.111939430236816, 14.263930320739746],\n            [8.147891998291016, 14.232959747314453],\n            [8.181855201721191, 14.225959777832031],\n            [8.20982837677002, 14.226949691772461],\n            [8.252790451049805, 14.236940383911133]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.192468,\n        \"PERIMETER\": 2.187547,\n        \"COLUMBUS_\": 4.0,\n        \"COLUMBUS_I\": 6.0,\n        \"POLYID\": 3.0,\n        \"NEIG\": 6,\n        \"HOVAL\": 26.35,\n        \"INC\": 15.956,\n        \"CRIME\": 30.626781,\n        \"OPEN\": 4.534649,\n        \"PLUMB\": 0.374404,\n        \"DISCBD\": 3.89,\n        \"X\": 39.82,\n        \"Y\": 41.18,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1006.0\n      },\n      \"bbox\": [\n        8.653305053710938, 13.544429779052734, 9.351485252380371, 14.008090019226074\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.653305053710938, 14.008090019226074],\n            [8.818140029907227, 14.002050399780273],\n            [9.008951187133789, 13.995059967041016],\n            [9.008928298950195, 13.9381103515625],\n            [9.34359073638916, 13.913080215454102],\n            [9.351485252380371, 13.675290107727051],\n            [9.298501014709473, 13.589380264282227],\n            [9.273821830749512, 13.588560104370117],\n            [9.244555473327637, 13.59138011932373],\n            [9.24254322052002, 13.558409690856934],\n            [9.196581840515137, 13.544429779052734],\n            [9.190605163574219, 13.586389541625977],\n            [9.166626930236816, 13.581399917602539],\n            [9.161684036254883, 13.708290100097656],\n            [8.909939765930176, 13.715530395507812],\n            [8.677577018737793, 13.722209930419922],\n            [8.666550636291504, 13.861700057983398],\n            [8.662188529968262, 13.909899711608887],\n            [8.653305053710938, 14.008090019226074]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.083841,\n        \"PERIMETER\": 1.427635,\n        \"COLUMBUS_\": 5.0,\n        \"COLUMBUS_I\": 2.0,\n        \"POLYID\": 4.0,\n        \"NEIG\": 2,\n        \"HOVAL\": 33.200001,\n        \"INC\": 4.477,\n        \"CRIME\": 32.38776,\n        \"OPEN\": 0.394427,\n        \"PLUMB\": 1.186944,\n        \"DISCBD\": 3.7,\n        \"X\": 36.5,\n        \"Y\": 40.52,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1002.0\n      },\n      \"bbox\": [\n        8.19859504699707, 13.586509704589844, 8.685274124145508, 13.861700057983398\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.459499359130859, 13.82034969329834],\n            [8.473407745361328, 13.832269668579102],\n            [8.502935409545898, 13.838729858398438],\n            [8.516386985778809, 13.841679573059082],\n            [8.540358543395996, 13.842399597167969],\n            [8.562577247619629, 13.84253978729248],\n            [8.579310417175293, 13.841250419616699],\n            [8.605281829833984, 13.839249610900879],\n            [8.666550636291504, 13.861700057983398],\n            [8.677577018737793, 13.722209930419922],\n            [8.685274124145508, 13.639519691467285],\n            [8.628178596496582, 13.639459609985352],\n            [8.588301658630371, 13.641819953918457],\n            [8.571109771728516, 13.641269683837891],\n            [8.547515869140625, 13.643819808959961],\n            [8.537267684936523, 13.644430160522461],\n            [8.505298614501953, 13.644430160522461],\n            [8.459343910217285, 13.644430160522461],\n            [8.450570106506348, 13.60453987121582],\n            [8.439335823059082, 13.605520248413086],\n            [8.380410194396973, 13.616470336914062],\n            [8.385412216186523, 13.63444995880127],\n            [8.316472053527832, 13.616479873657227],\n            [8.294443130493164, 13.604570388793945],\n            [8.279500007629395, 13.596500396728516],\n            [8.247527122497559, 13.586509704589844],\n            [8.201574325561523, 13.591509819030762],\n            [8.201583862304688, 13.614489555358887],\n            [8.19859504699707, 13.635479927062988],\n            [8.233589172363281, 13.703410148620605],\n            [8.229602813720703, 13.727390289306641],\n            [8.291547775268555, 13.74137020111084],\n            [8.284571647644043, 13.784330368041992],\n            [8.323546409606934, 13.786080360412598],\n            [8.37348747253418, 13.78831958770752],\n            [8.387155532836914, 13.788969993591309],\n            [8.415447235107422, 13.790309906005859],\n            [8.431432723999023, 13.793310165405273],\n            [8.459499359130859, 13.82034969329834]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.488888,\n        \"PERIMETER\": 2.997133,\n        \"COLUMBUS_\": 6.0,\n        \"COLUMBUS_I\": 7.0,\n        \"POLYID\": 5.0,\n        \"NEIG\": 7,\n        \"HOVAL\": 23.225,\n        \"INC\": 11.252,\n        \"CRIME\": 50.73151,\n        \"OPEN\": 0.405664,\n        \"PLUMB\": 0.624596,\n        \"DISCBD\": 2.83,\n        \"X\": 40.009998,\n        \"Y\": 38.0,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1007.0\n      },\n      \"bbox\": [\n        8.677577018737793, 12.861089706420898, 9.401384353637695, 13.722209930419922\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.685274124145508, 13.639519691467285],\n            [8.677577018737793, 13.722209930419922],\n            [8.909939765930176, 13.715530395507812],\n            [9.161684036254883, 13.708290100097656],\n            [9.166626930236816, 13.581399917602539],\n            [9.190605163574219, 13.586389541625977],\n            [9.196581840515137, 13.544429779052734],\n            [9.24254322052002, 13.558409690856934],\n            [9.244555473327637, 13.59138011932373],\n            [9.273821830749512, 13.588560104370117],\n            [9.298501014709473, 13.589380264282227],\n            [9.310471534729004, 13.54541015625],\n            [9.401384353637695, 13.550399780273438],\n            [9.333296775817871, 13.272419929504395],\n            [9.23626708984375, 12.876279830932617],\n            [9.233386993408203, 12.86400032043457],\n            [8.943572998046875, 12.86221981048584],\n            [8.757728576660156, 12.861089706420898],\n            [8.733969688415527, 13.116339683532715],\n            [8.685274124145508, 13.639519691467285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.283079,\n        \"PERIMETER\": 2.335634,\n        \"COLUMBUS_\": 7.0,\n        \"COLUMBUS_I\": 8.0,\n        \"POLYID\": 6.0,\n        \"NEIG\": 8,\n        \"HOVAL\": 28.75,\n        \"INC\": 16.028999,\n        \"CRIME\": 26.066658,\n        \"OPEN\": 0.563075,\n        \"PLUMB\": 0.25413,\n        \"DISCBD\": 3.78,\n        \"X\": 43.75,\n        \"Y\": 39.279999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1008.0\n      },\n      \"bbox\": [\n        9.333296775817871, 13.272419929504395, 10.180600166320801, 13.698240280151367\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.401384353637695, 13.550399780273438],\n            [9.43441104888916, 13.694270133972168],\n            [9.605246543884277, 13.698240280151367],\n            [9.651198387145996, 13.692239761352539],\n            [9.687166213989258, 13.697230339050293],\n            [9.686145782470703, 13.645279884338379],\n            [9.845992088317871, 13.652250289916992],\n            [10.050789833068848, 13.650230407714844],\n            [10.103719711303711, 13.603260040283203],\n            [10.175629615783691, 13.565290451049805],\n            [10.180600166320801, 13.482359886169434],\n            [10.167599678039551, 13.471369743347168],\n            [10.153610229492188, 13.454389572143555],\n            [10.1356201171875, 13.439399719238281],\n            [10.119629859924316, 13.429409980773926],\n            [10.121600151062012, 13.344490051269531],\n            [10.096619606018066, 13.342490196228027],\n            [10.085630416870117, 13.333499908447266],\n            [10.05265998840332, 13.33650016784668],\n            [10.027669906616211, 13.298540115356445],\n            [9.772106170654297, 13.292110443115234],\n            [9.677009582519531, 13.296589851379395],\n            [9.67100715637207, 13.27361011505127],\n            [9.333296775817871, 13.272419929504395],\n            [9.401384353637695, 13.550399780273438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.257084,\n        \"PERIMETER\": 2.554577,\n        \"COLUMBUS_\": 8.0,\n        \"COLUMBUS_I\": 4.0,\n        \"POLYID\": 7.0,\n        \"NEIG\": 4,\n        \"HOVAL\": 75.0,\n        \"INC\": 8.438,\n        \"CRIME\": 0.178269,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 2.402402,\n        \"DISCBD\": 2.74,\n        \"X\": 33.360001,\n        \"Y\": 38.41,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1004.0\n      },\n      \"bbox\": [\n        7.801973819732666, 12.942020416259766, 8.456572532653809, 13.644510269165039\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.037740707397461, 13.60752010345459],\n            [8.062715530395508, 13.604519844055176],\n            [8.072694778442383, 13.580539703369141],\n            [8.115653038024902, 13.579540252685547],\n            [8.130637168884277, 13.576539993286133],\n            [8.197451591491699, 13.575770378112793],\n            [8.189590454101562, 13.545760154724121],\n            [8.179450035095215, 13.529829978942871],\n            [8.164705276489258, 13.511059761047363],\n            [8.14012622833252, 13.479769706726074],\n            [8.128536224365234, 13.470100402832031],\n            [8.121718406677246, 13.461039543151855],\n            [8.109848022460938, 13.432640075683594],\n            [8.10498046875, 13.420989990234375],\n            [8.181536674499512, 13.415909767150879],\n            [8.293397903442383, 13.408490180969238],\n            [8.380322456359863, 13.404660224914551],\n            [8.456572532653809, 13.104069709777832],\n            [8.425149917602539, 13.09391975402832],\n            [8.412152290344238, 13.068949699401855],\n            [8.351269721984863, 13.066499710083008],\n            [8.288271903991699, 13.063969612121582],\n            [8.28026294708252, 13.026000022888184],\n            [8.232307434082031, 13.020009994506836],\n            [8.220302581787109, 12.979049682617188],\n            [8.154367446899414, 12.978059768676758],\n            [8.145203590393066, 12.942020416259766],\n            [8.104400634765625, 12.943050384521484],\n            [8.062442779541016, 12.944100379943848],\n            [8.052460670471191, 12.963089942932129],\n            [8.052496910095215, 13.052009582519531],\n            [8.048531532287598, 13.129940032958984],\n            [8.032543182373047, 13.117950439453125],\n            [8.01356029510498, 13.114959716796875],\n            [7.989583969116211, 13.115960121154785],\n            [7.962619781494141, 13.137940406799316],\n            [7.923679828643799, 13.191900253295898],\n            [7.898725986480713, 13.243860244750977],\n            [7.88774299621582, 13.25784969329834],\n            [7.871758937835693, 13.25885009765625],\n            [7.868794918060303, 13.338780403137207],\n            [7.866809844970703, 13.371749877929688],\n            [7.851837158203125, 13.400730133056641],\n            [7.844857215881348, 13.432700157165527],\n            [7.84089183807373, 13.50862979888916],\n            [7.824925899505615, 13.552599906921387],\n            [7.803965091705322, 13.596559524536133],\n            [7.801973819732666, 13.61553955078125],\n            [7.90187406539917, 13.608539581298828],\n            [7.90288782119751, 13.644510269165039],\n            [7.9967942237854, 13.639499664306641],\n            [7.998781204223633, 13.614520072937012],\n            [8.037740707397461, 13.60752010345459]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.204954,\n        \"PERIMETER\": 2.139524,\n        \"COLUMBUS_\": 9.0,\n        \"COLUMBUS_I\": 3.0,\n        \"POLYID\": 8.0,\n        \"NEIG\": 3,\n        \"HOVAL\": 37.125,\n        \"INC\": 11.337,\n        \"CRIME\": 38.425858,\n        \"OPEN\": 3.483478,\n        \"PLUMB\": 2.739726,\n        \"DISCBD\": 2.89,\n        \"X\": 36.709999,\n        \"Y\": 38.709999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1003.0\n      },\n      \"bbox\": [8.10498046875, 13.104069709777832, 8.733969688415527, 13.644430160522461],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.247527122497559, 13.586509704589844],\n            [8.279500007629395, 13.596500396728516],\n            [8.294443130493164, 13.604570388793945],\n            [8.316472053527832, 13.616479873657227],\n            [8.385412216186523, 13.63444995880127],\n            [8.380410194396973, 13.616470336914062],\n            [8.439335823059082, 13.605520248413086],\n            [8.450570106506348, 13.60453987121582],\n            [8.459343910217285, 13.644430160522461],\n            [8.505298614501953, 13.644430160522461],\n            [8.537267684936523, 13.644430160522461],\n            [8.547515869140625, 13.643819808959961],\n            [8.571109771728516, 13.641269683837891],\n            [8.588301658630371, 13.641819953918457],\n            [8.628178596496582, 13.639459609985352],\n            [8.685274124145508, 13.639519691467285],\n            [8.733969688415527, 13.116339683532715],\n            [8.651877403259277, 13.113670349121094],\n            [8.596989631652832, 13.111889839172363],\n            [8.585997581481934, 13.106889724731445],\n            [8.517032623291016, 13.105389595031738],\n            [8.456572532653809, 13.104069709777832],\n            [8.380322456359863, 13.404660224914551],\n            [8.293397903442383, 13.408490180969238],\n            [8.181536674499512, 13.415909767150879],\n            [8.10498046875, 13.420989990234375],\n            [8.109848022460938, 13.432640075683594],\n            [8.121718406677246, 13.461039543151855],\n            [8.128536224365234, 13.470100402832031],\n            [8.14012622833252, 13.479769706726074],\n            [8.164705276489258, 13.511059761047363],\n            [8.179450035095215, 13.529829978942871],\n            [8.189590454101562, 13.545760154724121],\n            [8.197451591491699, 13.575770378112793],\n            [8.201574325561523, 13.591509819030762],\n            [8.247527122497559, 13.586509704589844]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.500755,\n        \"PERIMETER\": 3.169707,\n        \"COLUMBUS_\": 10.0,\n        \"COLUMBUS_I\": 18.0,\n        \"POLYID\": 9.0,\n        \"NEIG\": 18,\n        \"HOVAL\": 52.599998,\n        \"INC\": 17.586,\n        \"CRIME\": 30.515917,\n        \"OPEN\": 0.527488,\n        \"PLUMB\": 0.890736,\n        \"DISCBD\": 3.17,\n        \"X\": 43.439999,\n        \"Y\": 35.919998,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1018.0\n      },\n      \"bbox\": [\n        9.124277114868164, 12.595190048217773, 10.095430374145508, 13.298540115356445\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.333296775817871, 13.272419929504395],\n            [9.67100715637207, 13.27361011505127],\n            [9.677009582519531, 13.296589851379395],\n            [9.772106170654297, 13.292110443115234],\n            [10.027669906616211, 13.298540115356445],\n            [9.950613975524902, 12.983830451965332],\n            [10.004560470581055, 12.976829528808594],\n            [10.082509994506836, 13.033769607543945],\n            [10.083649635314941, 13.019869804382324],\n            [10.086819648742676, 12.981430053710938],\n            [10.089170455932617, 12.952810287475586],\n            [10.091629981994629, 12.923040390014648],\n            [10.093509674072266, 12.900219917297363],\n            [10.095430374145508, 12.876899719238281],\n            [10.015439987182617, 12.72404956817627],\n            [9.763668060302734, 12.673130035400391],\n            [9.723674774169922, 12.595199584960938],\n            [9.555828094482422, 12.595190048217773],\n            [9.471497535705566, 12.595709800720215],\n            [9.386005401611328, 12.596240043640137],\n            [9.383021354675293, 12.627209663391113],\n            [9.258048057556152, 12.630610466003418],\n            [9.124277114868164, 12.63424015045166],\n            [9.146787643432617, 12.658740043640137],\n            [9.166311264038086, 12.679980278015137],\n            [9.187246322631836, 12.709170341491699],\n            [9.206208229064941, 12.75883960723877],\n            [9.213532447814941, 12.778030395507812],\n            [9.220885276794434, 12.805720329284668],\n            [9.233386993408203, 12.86400032043457],\n            [9.23626708984375, 12.876279830932617],\n            [9.333296775817871, 13.272419929504395]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.246689,\n        \"PERIMETER\": 2.087235,\n        \"COLUMBUS_\": 11.0,\n        \"COLUMBUS_I\": 10.0,\n        \"POLYID\": 10.0,\n        \"NEIG\": 10,\n        \"HOVAL\": 96.400002,\n        \"INC\": 13.598,\n        \"CRIME\": 34.000835,\n        \"OPEN\": 1.548348,\n        \"PLUMB\": 0.557724,\n        \"DISCBD\": 4.33,\n        \"X\": 47.610001,\n        \"Y\": 36.419998,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1010.0\n      },\n      \"bbox\": [\n        10.015439987182617, 12.72404956817627, 10.649680137634277, 13.272509574890137\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10.082509994506836, 13.033769607543945],\n            [10.092499732971191, 13.052749633789062],\n            [10.126489639282227, 13.090709686279297],\n            [10.182459831237793, 13.157649993896484],\n            [10.267419815063477, 13.254549980163574],\n            [10.289389610290527, 13.247550010681152],\n            [10.316360473632812, 13.244549751281738],\n            [10.33234977722168, 13.23954963684082],\n            [10.368260383605957, 13.246430397033691],\n            [10.394289970397949, 13.246540069580078],\n            [10.417269706726074, 13.247540473937988],\n            [10.450240135192871, 13.251529693603516],\n            [10.4752197265625, 13.261520385742188],\n            [10.4752197265625, 13.272509574890137],\n            [10.534159660339355, 13.271499633789062],\n            [10.566129684448242, 13.271499633789062],\n            [10.603090286254883, 13.265500068664551],\n            [10.632060050964355, 13.263489723205566],\n            [10.639049530029297, 13.244509696960449],\n            [10.640040397644043, 13.21953010559082],\n            [10.649020195007324, 13.199549674987793],\n            [10.646010398864746, 13.176569938659668],\n            [10.64700984954834, 13.157589912414551],\n            [10.645999908447266, 13.144599914550781],\n            [10.637999534606934, 13.129610061645508],\n            [10.63899040222168, 13.104630470275879],\n            [10.631979942321777, 13.070659637451172],\n            [10.626979827880859, 13.051679611206055],\n            [10.627969741821289, 13.026700019836426],\n            [10.631959915161133, 13.008720397949219],\n            [10.633950233459473, 12.983739852905273],\n            [10.62893009185791, 12.945779800415039],\n            [10.639909744262695, 12.918800354003906],\n            [10.637900352478027, 12.890819549560547],\n            [10.645890235900879, 12.865839958190918],\n            [10.647870063781738, 12.842860221862793],\n            [10.649680137634277, 12.830180168151855],\n            [10.501099586486816, 12.805319786071777],\n            [10.356599807739258, 12.781140327453613],\n            [10.178409576416016, 12.751319885253906],\n            [10.015439987182617, 12.72404956817627],\n            [10.095430374145508, 12.876899719238281],\n            [10.093509674072266, 12.900219917297363],\n            [10.091629981994629, 12.923040390014648],\n            [10.089170455932617, 12.952810287475586],\n            [10.086819648742676, 12.981430053710938],\n            [10.083649635314941, 13.019869804382324],\n            [10.082509994506836, 13.033769607543945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.041012,\n        \"PERIMETER\": 0.919488,\n        \"COLUMBUS_\": 12.0,\n        \"COLUMBUS_I\": 38.0,\n        \"POLYID\": 11.0,\n        \"NEIG\": 38,\n        \"HOVAL\": 19.700001,\n        \"INC\": 7.467,\n        \"CRIME\": 62.275448,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 1.479915,\n        \"DISCBD\": 1.9,\n        \"X\": 37.849998,\n        \"Y\": 36.299999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1038.0\n      },\n      \"bbox\": [\n        8.572946548461914, 12.810150146484375, 8.757728576660156, 13.116339683532715\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.585997581481934, 13.106889724731445],\n            [8.596989631652832, 13.111889839172363],\n            [8.651877403259277, 13.113670349121094],\n            [8.733969688415527, 13.116339683532715],\n            [8.757728576660156, 12.861089706420898],\n            [8.700782775878906, 12.857099533081055],\n            [8.693771362304688, 12.811140060424805],\n            [8.632829666137695, 12.810150146484375],\n            [8.629888534545898, 12.945030212402344],\n            [8.572946548461914, 12.950030326843262],\n            [8.585997581481934, 13.106889724731445]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.035769,\n        \"PERIMETER\": 0.902125,\n        \"COLUMBUS_\": 13.0,\n        \"COLUMBUS_I\": 37.0,\n        \"POLYID\": 12.0,\n        \"NEIG\": 37,\n        \"HOVAL\": 19.9,\n        \"INC\": 10.048,\n        \"CRIME\": 56.705669,\n        \"OPEN\": 3.157895,\n        \"PLUMB\": 2.635046,\n        \"DISCBD\": 1.91,\n        \"X\": 37.130001,\n        \"Y\": 36.119999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1037.0\n      },\n      \"bbox\": [\n        8.456572532653809, 12.809200286865234, 8.632829666137695, 13.106889724731445\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.456572532653809, 13.104069709777832],\n            [8.517032623291016, 13.105389595031738],\n            [8.585997581481934, 13.106889724731445],\n            [8.572946548461914, 12.950030326843262],\n            [8.629888534545898, 12.945030212402344],\n            [8.632829666137695, 12.810150146484375],\n            [8.582889556884766, 12.809769630432129],\n            [8.50916576385498, 12.809200286865234],\n            [8.487373352050781, 12.930660247802734],\n            [8.456572532653809, 13.104069709777832]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.034377,\n        \"PERIMETER\": 0.93659,\n        \"COLUMBUS_\": 14.0,\n        \"COLUMBUS_I\": 39.0,\n        \"POLYID\": 13.0,\n        \"NEIG\": 39,\n        \"HOVAL\": 41.700001,\n        \"INC\": 9.549,\n        \"CRIME\": 46.716129,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 6.328423,\n        \"DISCBD\": 2.09,\n        \"X\": 35.950001,\n        \"Y\": 36.400002,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1039.0\n      },\n      \"bbox\": [\n        8.145203590393066, 12.930660247802734, 8.487373352050781, 13.104069709777832\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.145203590393066, 12.942020416259766],\n            [8.154367446899414, 12.978059768676758],\n            [8.220302581787109, 12.979049682617188],\n            [8.232307434082031, 13.020009994506836],\n            [8.28026294708252, 13.026000022888184],\n            [8.288271903991699, 13.063969612121582],\n            [8.351269721984863, 13.066499710083008],\n            [8.412152290344238, 13.068949699401855],\n            [8.425149917602539, 13.09391975402832],\n            [8.456572532653809, 13.104069709777832],\n            [8.487373352050781, 12.930660247802734],\n            [8.456042289733887, 12.931710243225098],\n            [8.402054786682129, 12.933529853820801],\n            [8.337125778198242, 12.935720443725586],\n            [8.245318412780762, 12.938819885253906],\n            [8.145203590393066, 12.942020416259766]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.060884,\n        \"PERIMETER\": 1.128424,\n        \"COLUMBUS_\": 15.0,\n        \"COLUMBUS_I\": 40.0,\n        \"POLYID\": 14.0,\n        \"NEIG\": 40,\n        \"HOVAL\": 42.900002,\n        \"INC\": 9.963,\n        \"CRIME\": 57.066132,\n        \"OPEN\": 0.477104,\n        \"PLUMB\": 5.110962,\n        \"DISCBD\": 1.83,\n        \"X\": 35.720001,\n        \"Y\": 35.599998,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1040.0\n      },\n      \"bbox\": [\n        8.062442779541016, 12.787229537963867, 8.512937545776367, 12.944100379943848\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.062442779541016, 12.944100379943848],\n            [8.104400634765625, 12.943050384521484],\n            [8.145203590393066, 12.942020416259766],\n            [8.245318412780762, 12.938819885253906],\n            [8.337125778198242, 12.935720443725586],\n            [8.402054786682129, 12.933529853820801],\n            [8.456042289733887, 12.931710243225098],\n            [8.487373352050781, 12.930660247802734],\n            [8.50916576385498, 12.809200286865234],\n            [8.512937545776367, 12.788180351257324],\n            [8.478970527648926, 12.788189888000488],\n            [8.431012153625488, 12.788060188293457],\n            [8.259181022644043, 12.787599563598633],\n            [8.122319221496582, 12.787229537963867],\n            [8.062442779541016, 12.944100379943848]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.106653,\n        \"PERIMETER\": 1.437606,\n        \"COLUMBUS_\": 16.0,\n        \"COLUMBUS_I\": 9.0,\n        \"POLYID\": 15.0,\n        \"NEIG\": 9,\n        \"HOVAL\": 18.0,\n        \"INC\": 9.873,\n        \"CRIME\": 48.585487,\n        \"OPEN\": 0.174325,\n        \"PLUMB\": 1.311475,\n        \"DISCBD\": 1.7,\n        \"X\": 39.610001,\n        \"Y\": 34.91,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1009.0\n      },\n      \"bbox\": [\n        8.757728576660156, 12.532369613647461, 9.233386993408203, 12.86400032043457\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.757728576660156, 12.861089706420898],\n            [8.943572998046875, 12.86221981048584],\n            [9.233386993408203, 12.86400032043457],\n            [9.220885276794434, 12.805720329284668],\n            [9.213532447814941, 12.778030395507812],\n            [9.206208229064941, 12.75883960723877],\n            [9.187246322631836, 12.709170341491699],\n            [9.166311264038086, 12.679980278015137],\n            [9.146787643432617, 12.658740043640137],\n            [9.124277114868164, 12.63424015045166],\n            [8.913296699523926, 12.609800338745117],\n            [8.855527877807617, 12.606300354003906],\n            [8.785566329956055, 12.532369613647461],\n            [8.777865409851074, 12.628029823303223],\n            [8.757728576660156, 12.861089706420898]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.093154,\n        \"PERIMETER\": 1.340061,\n        \"COLUMBUS_\": 17.0,\n        \"COLUMBUS_I\": 36.0,\n        \"POLYID\": 16.0,\n        \"NEIG\": 36,\n        \"HOVAL\": 18.799999,\n        \"INC\": 7.625,\n        \"CRIME\": 54.838711,\n        \"OPEN\": 0.533737,\n        \"PLUMB\": 4.6875,\n        \"DISCBD\": 1.1,\n        \"X\": 37.599998,\n        \"Y\": 34.080002,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1036.0\n      },\n      \"bbox\": [\n        8.50916576385498, 12.361550331115723, 8.785566329956055, 12.861089706420898\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.632829666137695, 12.810150146484375],\n            [8.693771362304688, 12.811140060424805],\n            [8.700782775878906, 12.857099533081055],\n            [8.757728576660156, 12.861089706420898],\n            [8.777865409851074, 12.628029823303223],\n            [8.785566329956055, 12.532369613647461],\n            [8.75838565826416, 12.49685001373291],\n            [8.726524353027344, 12.455209732055664],\n            [8.709477424621582, 12.427309989929199],\n            [8.694606781005859, 12.417490005493164],\n            [8.657632827758789, 12.391510009765625],\n            [8.605761528015137, 12.367939949035645],\n            [8.589687347412109, 12.361550331115723],\n            [8.512937545776367, 12.788180351257324],\n            [8.50916576385498, 12.809200286865234],\n            [8.582889556884766, 12.809769630432129],\n            [8.632829666137695, 12.810150146484375]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.102087,\n        \"PERIMETER\": 1.382359,\n        \"COLUMBUS_\": 18.0,\n        \"COLUMBUS_I\": 11.0,\n        \"POLYID\": 17.0,\n        \"NEIG\": 11,\n        \"HOVAL\": 41.75,\n        \"INC\": 9.798,\n        \"CRIME\": 36.868774,\n        \"OPEN\": 0.448232,\n        \"PLUMB\": 1.619745,\n        \"DISCBD\": 4.47,\n        \"X\": 48.580002,\n        \"Y\": 34.459999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1011.0\n      },\n      \"bbox\": [\n        10.356060028076172, 12.44025993347168, 10.709790229797363, 12.838859558105469\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10.356599807739258, 12.781140327453613],\n            [10.501099586486816, 12.805319786071777],\n            [10.649680137634277, 12.830180168151855],\n            [10.70281982421875, 12.838859558105469],\n            [10.709790229797363, 12.774909973144531],\n            [10.664819717407227, 12.762929916381836],\n            [10.6697998046875, 12.703980445861816],\n            [10.667770385742188, 12.648030281066895],\n            [10.666970252990723, 12.595029830932617],\n            [10.667340278625488, 12.580109596252441],\n            [10.669699668884277, 12.483180046081543],\n            [10.421750068664551, 12.44025993347168],\n            [10.420989990234375, 12.578129768371582],\n            [10.356060028076172, 12.598119735717773],\n            [10.356389999389648, 12.712010383605957],\n            [10.356599807739258, 12.781140327453613]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.055494,\n        \"PERIMETER\": 1.183352,\n        \"COLUMBUS_\": 19.0,\n        \"COLUMBUS_I\": 42.0,\n        \"POLYID\": 18.0,\n        \"NEIG\": 42,\n        \"HOVAL\": 60.0,\n        \"INC\": 13.185,\n        \"CRIME\": 43.962486,\n        \"OPEN\": 24.998068,\n        \"PLUMB\": 13.849287,\n        \"DISCBD\": 1.58,\n        \"X\": 36.150002,\n        \"Y\": 33.919998,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1042.0\n      },\n      \"bbox\": [\n        8.358473777770996, 12.355310440063477, 8.589687347412109, 12.788189888000488\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.431012153625488, 12.788060188293457],\n            [8.478970527648926, 12.788189888000488],\n            [8.512937545776367, 12.788180351257324],\n            [8.589687347412109, 12.361550331115723],\n            [8.565507888793945, 12.355330467224121],\n            [8.554715156555176, 12.355330467224121],\n            [8.523073196411133, 12.355310440063477],\n            [8.502638816833496, 12.357080459594727],\n            [8.481381416320801, 12.362910270690918],\n            [8.438838958740234, 12.373559951782227],\n            [8.406447410583496, 12.396730422973633],\n            [8.391569137573242, 12.407380104064941],\n            [8.369997024536133, 12.428179740905762],\n            [8.358473777770996, 12.445659637451172],\n            [8.423884391784668, 12.448490142822266],\n            [8.431012153625488, 12.788060188293457]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.061342,\n        \"PERIMETER\": 1.249247,\n        \"COLUMBUS_\": 20.0,\n        \"COLUMBUS_I\": 41.0,\n        \"POLYID\": 19.0,\n        \"NEIG\": 41,\n        \"HOVAL\": 30.6,\n        \"INC\": 11.618,\n        \"CRIME\": 54.521965,\n        \"OPEN\": 0.111111,\n        \"PLUMB\": 2.622951,\n        \"DISCBD\": 1.53,\n        \"X\": 35.759998,\n        \"Y\": 34.66,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1041.0\n      },\n      \"bbox\": [\n        8.122319221496582, 12.445659637451172, 8.431012153625488, 12.788060188293457\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.122319221496582, 12.787229537963867],\n            [8.259181022644043, 12.787599563598633],\n            [8.431012153625488, 12.788060188293457],\n            [8.423884391784668, 12.448490142822266],\n            [8.358473777770996, 12.445659637451172],\n            [8.350508689880371, 12.481929779052734],\n            [8.347976684570312, 12.493459701538086],\n            [8.3489990234375, 12.547419548034668],\n            [8.33201789855957, 12.547419548034668],\n            [8.30504322052002, 12.550419807434082],\n            [8.301017761230469, 12.593090057373047],\n            [8.299444198608398, 12.609780311584473],\n            [8.296090126037598, 12.645339965820312],\n            [8.223162651062012, 12.645339965820312],\n            [8.148235321044922, 12.645350456237793],\n            [8.13826847076416, 12.703310012817383],\n            [8.138282775878906, 12.737279891967773],\n            [8.122319221496582, 12.787229537963867]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.444629,\n        \"PERIMETER\": 3.174601,\n        \"COLUMBUS_\": 21.0,\n        \"COLUMBUS_I\": 17.0,\n        \"POLYID\": 20.0,\n        \"NEIG\": 17,\n        \"HOVAL\": 81.266998,\n        \"INC\": 31.07,\n        \"CRIME\": 0.223797,\n        \"OPEN\": 5.318607,\n        \"PLUMB\": 0.167224,\n        \"DISCBD\": 3.57,\n        \"X\": 46.73,\n        \"Y\": 31.91,\n        \"NSA\": 0.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1017.0\n      },\n      \"bbox\": [\n        9.841083526611328, 11.741860389709473, 10.425640106201172, 12.781140327453613\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10.015439987182617, 12.72404956817627],\n            [10.178409576416016, 12.751319885253906],\n            [10.356599807739258, 12.781140327453613],\n            [10.356389999389648, 12.712010383605957],\n            [10.356060028076172, 12.598119735717773],\n            [10.420989990234375, 12.578129768371582],\n            [10.421750068664551, 12.44025993347168],\n            [10.424249649047852, 11.990639686584473],\n            [10.425640106201172, 11.741860389709473],\n            [10.252799987792969, 11.742819786071777],\n            [10.05659008026123, 11.74390983581543],\n            [10.049909591674805, 11.76294994354248],\n            [10.049750328063965, 11.778960227966309],\n            [10.049289703369141, 11.822830200195312],\n            [10.048910140991211, 11.858799934387207],\n            [10.042079925537109, 11.912759780883789],\n            [10.02422046661377, 11.962309837341309],\n            [10.007160186767578, 12.009679794311523],\n            [9.991960525512695, 12.031510353088379],\n            [9.956293106079102, 12.08275032043457],\n            [9.914779663085938, 12.142390251159668],\n            [9.899951934814453, 12.163689613342285],\n            [9.892878532409668, 12.173850059509277],\n            [9.884350776672363, 12.191530227661133],\n            [10.001230239868164, 12.170539855957031],\n            [9.96633243560791, 12.341389656066895],\n            [9.841083526611328, 12.314740180969238],\n            [9.935688018798828, 12.501870155334473],\n            [9.941193580627441, 12.512129783630371],\n            [9.933468818664551, 12.599410057067871],\n            [10.015439987182617, 12.72404956817627]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.699258,\n        \"PERIMETER\": 5.07749,\n        \"COLUMBUS_\": 22.0,\n        \"COLUMBUS_I\": 43.0,\n        \"POLYID\": 21.0,\n        \"NEIG\": 43,\n        \"HOVAL\": 19.975,\n        \"INC\": 10.655,\n        \"CRIME\": 40.074074,\n        \"OPEN\": 1.643756,\n        \"PLUMB\": 1.559576,\n        \"DISCBD\": 1.41,\n        \"X\": 34.080002,\n        \"Y\": 30.42,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1043.0\n      },\n      \"bbox\": [\n        7.06132984161377, 11.527389526367188, 8.563572883605957, 12.725419998168945\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.842434883117676, 12.405599594116211],\n            [8.131139755249023, 12.373600006103516],\n            [8.136807441711426, 12.348549842834473],\n            [8.141800880432129, 12.326470375061035],\n            [8.148349761962891, 12.298720359802246],\n            [8.157790184020996, 12.281220436096191],\n            [8.174397468566895, 12.250430107116699],\n            [8.190520286560059, 12.237640380859375],\n            [8.225326538085938, 12.206859588623047],\n            [8.25028133392334, 12.194430351257324],\n            [8.310224533081055, 12.156929969787598],\n            [8.32612133026123, 12.153280258178711],\n            [8.358863830566406, 12.145950317382812],\n            [8.408769607543945, 12.134770393371582],\n            [8.43419361114502, 12.139209747314453],\n            [8.471713066101074, 12.145750045776367],\n            [8.495033264160156, 12.13776969909668],\n            [8.505514144897461, 12.128210067749023],\n            [8.519205093383789, 12.115229606628418],\n            [8.538623809814453, 12.088789939880371],\n            [8.544462203979492, 12.073599815368652],\n            [8.563572883605957, 12.023850440979004],\n            [8.525978088378906, 11.924659729003906],\n            [8.517660140991211, 11.91471004486084],\n            [8.471677780151367, 11.863730430603027],\n            [8.455998420715332, 11.847610473632812],\n            [8.412508010864258, 11.807350158691406],\n            [8.404298782348633, 11.800470352172852],\n            [8.386432647705078, 11.785490036010742],\n            [8.373654365539551, 11.774089813232422],\n            [8.282732009887695, 11.74413013458252],\n            [8.256792068481445, 11.828060150146484],\n            [8.103923797607422, 11.785120010375977],\n            [8.120859146118164, 11.670220375061035],\n            [7.733179092407227, 11.527389526367188],\n            [7.688279151916504, 11.66327953338623],\n            [7.717282772064209, 11.741209983825684],\n            [7.580474853515625, 11.882100105285645],\n            [7.637434005737305, 11.917059898376465],\n            [7.616511821746826, 12.057939529418945],\n            [7.40372896194458, 12.080949783325195],\n            [7.404763221740723, 12.164870262145996],\n            [7.323862075805664, 12.21183967590332],\n            [7.19602108001709, 12.295780181884766],\n            [7.135107040405273, 12.359729766845703],\n            [7.108152866363525, 12.406700134277344],\n            [7.092213153839111, 12.51261043548584],\n            [7.06132984161377, 12.725419998168945],\n            [7.143249988555908, 12.724410057067871],\n            [7.155218124389648, 12.674460411071777],\n            [7.173169136047363, 12.598520278930664],\n            [7.206113815307617, 12.544560432434082],\n            [7.27003812789917, 12.510580062866211],\n            [7.341958045959473, 12.486599922180176],\n            [7.429862976074219, 12.46660041809082],\n            [7.459833145141602, 12.463600158691406],\n            [7.481781005859375, 12.389659881591797],\n            [7.498770236968994, 12.403650283813477],\n            [7.516755104064941, 12.409640312194824],\n            [7.548725128173828, 12.412630081176758],\n            [7.559714794158936, 12.414629936218262],\n            [7.55869197845459, 12.356679916381836],\n            [7.569672107696533, 12.334699630737305],\n            [7.616611003875732, 12.29872989654541],\n            [7.669570922851562, 12.327690124511719],\n            [7.721512794494629, 12.307709693908691],\n            [7.708548069000244, 12.36266040802002],\n            [7.639626979827881, 12.389639854431152],\n            [7.646636009216309, 12.430609703063965],\n            [7.842434883117676, 12.405599594116211]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.192891,\n        \"PERIMETER\": 1.992717,\n        \"COLUMBUS_\": 23.0,\n        \"COLUMBUS_I\": 19.0,\n        \"POLYID\": 22.0,\n        \"NEIG\": 19,\n        \"HOVAL\": 30.450001,\n        \"INC\": 11.709,\n        \"CRIME\": 33.705048,\n        \"OPEN\": 4.539754,\n        \"PLUMB\": 1.785714,\n        \"DISCBD\": 2.45,\n        \"X\": 43.369999,\n        \"Y\": 33.459999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1019.0\n      },\n      \"bbox\": [\n        9.357977867126465, 12.226559638977051, 10.015439987182617, 12.72404956817627\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.386005401611328, 12.596240043640137],\n            [9.471497535705566, 12.595709800720215],\n            [9.555828094482422, 12.595190048217773],\n            [9.723674774169922, 12.595199584960938],\n            [9.763668060302734, 12.673130035400391],\n            [10.015439987182617, 12.72404956817627],\n            [9.933468818664551, 12.599410057067871],\n            [9.941193580627441, 12.512129783630371],\n            [9.935688018798828, 12.501870155334473],\n            [9.841083526611328, 12.314740180969238],\n            [9.656930923461914, 12.274029731750488],\n            [9.468775749206543, 12.234550476074219],\n            [9.394844055175781, 12.226559638977051],\n            [9.386472702026367, 12.34727954864502],\n            [9.385739326477051, 12.361639976501465],\n            [9.380951881408691, 12.45536994934082],\n            [9.357977867126465, 12.462360382080078],\n            [9.35901927947998, 12.56527042388916],\n            [9.386005401611328, 12.596240043640137]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.24712,\n        \"PERIMETER\": 2.147528,\n        \"COLUMBUS_\": 24.0,\n        \"COLUMBUS_I\": 12.0,\n        \"POLYID\": 23.0,\n        \"NEIG\": 12,\n        \"HOVAL\": 47.733002,\n        \"INC\": 21.155001,\n        \"CRIME\": 20.048504,\n        \"OPEN\": 0.532632,\n        \"PLUMB\": 0.216763,\n        \"DISCBD\": 4.78,\n        \"X\": 49.610001,\n        \"Y\": 32.650002,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1012.0\n      },\n      \"bbox\": [\n        10.421750068664551, 11.990639686584473, 10.888489723205566, 12.652009963989258\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10.667770385742188, 12.648030281066895],\n            [10.776670455932617, 12.652009963989258],\n            [10.88755989074707, 12.644009590148926],\n            [10.888489723205566, 12.49213981628418],\n            [10.884440422058105, 12.349269866943359],\n            [10.884380340576172, 12.19340991973877],\n            [10.876319885253906, 12.037540435791016],\n            [10.640899658203125, 12.013119697570801],\n            [10.424249649047852, 11.990639686584473],\n            [10.421750068664551, 12.44025993347168],\n            [10.669699668884277, 12.483180046081543],\n            [10.667340278625488, 12.580109596252441],\n            [10.666970252990723, 12.595029830932617],\n            [10.667770385742188, 12.648030281066895]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.192226,\n        \"PERIMETER\": 2.240392,\n        \"COLUMBUS_\": 25.0,\n        \"COLUMBUS_I\": 35.0,\n        \"POLYID\": 24.0,\n        \"NEIG\": 35,\n        \"HOVAL\": 53.200001,\n        \"INC\": 14.236,\n        \"CRIME\": 38.297871,\n        \"OPEN\": 0.62622,\n        \"PLUMB\": 18.811075,\n        \"DISCBD\": 0.42,\n        \"X\": 36.599998,\n        \"Y\": 32.09,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1035.0\n      },\n      \"bbox\": [\n        8.131139755249023, 12.088789939880371, 8.790392875671387, 12.645350456237793\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.148235321044922, 12.645350456237793],\n            [8.223162651062012, 12.645339965820312],\n            [8.296090126037598, 12.645339965820312],\n            [8.299444198608398, 12.609780311584473],\n            [8.301017761230469, 12.593090057373047],\n            [8.30504322052002, 12.550419807434082],\n            [8.33201789855957, 12.547419548034668],\n            [8.3489990234375, 12.547419548034668],\n            [8.347976684570312, 12.493459701538086],\n            [8.350508689880371, 12.481929779052734],\n            [8.358473777770996, 12.445659637451172],\n            [8.369997024536133, 12.428179740905762],\n            [8.391569137573242, 12.407380104064941],\n            [8.406447410583496, 12.396730422973633],\n            [8.438838958740234, 12.373559951782227],\n            [8.481381416320801, 12.362910270690918],\n            [8.502638816833496, 12.357080459594727],\n            [8.523073196411133, 12.355310440063477],\n            [8.554715156555176, 12.355330467224121],\n            [8.565507888793945, 12.355330467224121],\n            [8.589687347412109, 12.361550331115723],\n            [8.605761528015137, 12.367939949035645],\n            [8.657632827758789, 12.391510009765625],\n            [8.694606781005859, 12.417490005493164],\n            [8.709477424621582, 12.427309989929199],\n            [8.708919525146484, 12.39048957824707],\n            [8.708315849304199, 12.350500106811523],\n            [8.707547187805176, 12.302590370178223],\n            [8.767485618591309, 12.29557991027832],\n            [8.758467674255371, 12.230640411376953],\n            [8.784432411193848, 12.206660270690918],\n            [8.790392875671387, 12.125729560852051],\n            [8.643799781799316, 12.102089881896973],\n            [8.538623809814453, 12.088789939880371],\n            [8.519205093383789, 12.115229606628418],\n            [8.505514144897461, 12.128210067749023],\n            [8.495033264160156, 12.13776969909668],\n            [8.471713066101074, 12.145750045776367],\n            [8.43419361114502, 12.139209747314453],\n            [8.408769607543945, 12.134770393371582],\n            [8.358863830566406, 12.145950317382812],\n            [8.32612133026123, 12.153280258178711],\n            [8.310224533081055, 12.156929969787598],\n            [8.25028133392334, 12.194430351257324],\n            [8.225326538085938, 12.206859588623047],\n            [8.190520286560059, 12.237640380859375],\n            [8.174397468566895, 12.250430107116699],\n            [8.157790184020996, 12.281220436096191],\n            [8.148349761962891, 12.298720359802246],\n            [8.141800880432129, 12.326470375061035],\n            [8.136807441711426, 12.348549842834473],\n            [8.131139755249023, 12.373600006103516],\n            [8.137151718139648, 12.416560173034668],\n            [8.14915943145752, 12.462510108947754],\n            [8.160175323486328, 12.528459548950195],\n            [8.155200958251953, 12.579409599304199],\n            [8.147226333618164, 12.619379997253418],\n            [8.148235321044922, 12.645350456237793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.17168,\n        \"PERIMETER\": 1.666489,\n        \"COLUMBUS_\": 26.0,\n        \"COLUMBUS_I\": 32.0,\n        \"POLYID\": 25.0,\n        \"NEIG\": 32,\n        \"HOVAL\": 17.9,\n        \"INC\": 8.461,\n        \"CRIME\": 61.299175,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 6.529851,\n        \"DISCBD\": 0.83,\n        \"X\": 39.360001,\n        \"Y\": 32.880001,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1032.0\n      },\n      \"bbox\": [\n        8.707547187805176, 12.125729560852051, 9.131059646606445, 12.63424015045166\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.785566329956055, 12.532369613647461],\n            [8.855527877807617, 12.606300354003906],\n            [8.913296699523926, 12.609800338745117],\n            [9.124277114868164, 12.63424015045166],\n            [9.124981880187988, 12.587260246276855],\n            [9.127169609069824, 12.441459655761719],\n            [9.129522323608398, 12.284629821777344],\n            [9.131059646606445, 12.182160377502441],\n            [9.116094589233398, 12.17965030670166],\n            [8.95518970489502, 12.153010368347168],\n            [8.790392875671387, 12.125729560852051],\n            [8.784432411193848, 12.206660270690918],\n            [8.758467674255371, 12.230640411376953],\n            [8.767485618591309, 12.29557991027832],\n            [8.707547187805176, 12.302590370178223],\n            [8.708315849304199, 12.350500106811523],\n            [8.708919525146484, 12.39048957824707],\n            [8.709477424621582, 12.427309989929199],\n            [8.726524353027344, 12.455209732055664],\n            [8.75838565826416, 12.49685001373291],\n            [8.785566329956055, 12.532369613647461]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.107298,\n        \"PERIMETER\": 1.406823,\n        \"COLUMBUS_\": 27.0,\n        \"COLUMBUS_I\": 20.0,\n        \"POLYID\": 26.0,\n        \"NEIG\": 20,\n        \"HOVAL\": 20.299999,\n        \"INC\": 8.085,\n        \"CRIME\": 40.969742,\n        \"OPEN\": 1.238288,\n        \"PLUMB\": 2.534275,\n        \"DISCBD\": 1.5,\n        \"X\": 41.130001,\n        \"Y\": 33.139999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1020.0\n      },\n      \"bbox\": [\n        9.124277114868164, 12.182160377502441, 9.394844055175781, 12.63424015045166\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.124277114868164, 12.63424015045166],\n            [9.258048057556152, 12.630610466003418],\n            [9.383021354675293, 12.627209663391113],\n            [9.386005401611328, 12.596240043640137],\n            [9.35901927947998, 12.56527042388916],\n            [9.357977867126465, 12.462360382080078],\n            [9.380951881408691, 12.45536994934082],\n            [9.385739326477051, 12.361639976501465],\n            [9.386472702026367, 12.34727954864502],\n            [9.394844055175781, 12.226559638977051],\n            [9.258297920227051, 12.203579902648926],\n            [9.131059646606445, 12.182160377502441],\n            [9.129522323608398, 12.284629821777344],\n            [9.127169609069824, 12.441459655761719],\n            [9.124981880187988, 12.587260246276855],\n            [9.124277114868164, 12.63424015045166]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.137802,\n        \"PERIMETER\": 1.780751,\n        \"COLUMBUS_\": 28.0,\n        \"COLUMBUS_I\": 21.0,\n        \"POLYID\": 27.0,\n        \"NEIG\": 21,\n        \"HOVAL\": 34.099998,\n        \"INC\": 10.822,\n        \"CRIME\": 52.79443,\n        \"OPEN\": 19.368099,\n        \"PLUMB\": 1.483516,\n        \"DISCBD\": 2.24,\n        \"X\": 43.950001,\n        \"Y\": 31.610001,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1021.0\n      },\n      \"bbox\": [\n        9.468775749206543, 12.002750396728516, 10.007160186767578, 12.341389656066895\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.468775749206543, 12.234550476074219],\n            [9.656930923461914, 12.274029731750488],\n            [9.841083526611328, 12.314740180969238],\n            [9.96633243560791, 12.341389656066895],\n            [10.001230239868164, 12.170539855957031],\n            [9.884350776672363, 12.191530227661133],\n            [9.892878532409668, 12.173850059509277],\n            [9.899951934814453, 12.163689613342285],\n            [9.914779663085938, 12.142390251159668],\n            [9.956293106079102, 12.08275032043457],\n            [9.991960525512695, 12.031510353088379],\n            [10.007160186767578, 12.009679794311523],\n            [9.755396842956543, 12.004929542541504],\n            [9.480667114257812, 12.002750396728516],\n            [9.481962203979492, 12.065779685974121],\n            [9.478416442871094, 12.161820411682129],\n            [9.468775749206543, 12.234550476074219]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.174773,\n        \"PERIMETER\": 1.637148,\n        \"COLUMBUS_\": 29.0,\n        \"COLUMBUS_I\": 31.0,\n        \"POLYID\": 28.0,\n        \"NEIG\": 31,\n        \"HOVAL\": 22.85,\n        \"INC\": 7.856,\n        \"CRIME\": 56.919785,\n        \"OPEN\": 0.509305,\n        \"PLUMB\": 3.001072,\n        \"DISCBD\": 1.41,\n        \"X\": 41.310001,\n        \"Y\": 30.9,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1031.0\n      },\n      \"bbox\": [\n        9.084967613220215, 11.734999656677246, 9.492551803588867, 12.234550476074219\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.394844055175781, 12.226559638977051],\n            [9.468775749206543, 12.234550476074219],\n            [9.478416442871094, 12.161820411682129],\n            [9.481962203979492, 12.065779685974121],\n            [9.480667114257812, 12.002750396728516],\n            [9.482346534729004, 11.975689888000488],\n            [9.488198280334473, 11.881449699401855],\n            [9.489535331726074, 11.859919548034668],\n            [9.492551803588867, 11.751970291137695],\n            [9.343691825866699, 11.734999656677246],\n            [9.200423240661621, 11.767109870910645],\n            [9.084967613220215, 11.792989730834961],\n            [9.090069770812988, 11.873970031738281],\n            [9.093652725219727, 11.930830001831055],\n            [9.098085403442383, 12.025779724121094],\n            [9.100104331970215, 12.063579559326172],\n            [9.103628158569336, 12.128439903259277],\n            [9.115089416503906, 12.158659934997559],\n            [9.131059646606445, 12.182160377502441],\n            [9.258297920227051, 12.203579902648926],\n            [9.394844055175781, 12.226559638977051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.085972,\n        \"PERIMETER\": 1.312158,\n        \"COLUMBUS_\": 30.0,\n        \"COLUMBUS_I\": 33.0,\n        \"POLYID\": 29.0,\n        \"NEIG\": 33,\n        \"HOVAL\": 32.5,\n        \"INC\": 8.681,\n        \"CRIME\": 60.750446,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 2.645051,\n        \"DISCBD\": 0.81,\n        \"X\": 39.720001,\n        \"Y\": 30.639999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1033.0\n      },\n      \"bbox\": [\n        8.790384292602539, 11.792989730834961, 9.131059646606445, 12.182160377502441\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.116094589233398, 12.17965030670166],\n            [9.131059646606445, 12.182160377502441],\n            [9.115089416503906, 12.158659934997559],\n            [9.103628158569336, 12.128439903259277],\n            [9.100104331970215, 12.063579559326172],\n            [9.098085403442383, 12.025779724121094],\n            [9.093652725219727, 11.930830001831055],\n            [9.090069770812988, 11.873970031738281],\n            [9.084967613220215, 11.792989730834961],\n            [8.898137092590332, 11.80247974395752],\n            [8.868269920349121, 12.013819694519043],\n            [8.811333656311035, 12.030810356140137],\n            [8.813672065734863, 12.06682014465332],\n            [8.81535530090332, 12.09276008605957],\n            [8.790384292602539, 12.10575008392334],\n            [8.790392875671387, 12.125729560852051],\n            [8.95518970489502, 12.153010368347168],\n            [9.116094589233398, 12.17965030670166]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.104355,\n        \"PERIMETER\": 1.524931,\n        \"COLUMBUS_\": 31.0,\n        \"COLUMBUS_I\": 34.0,\n        \"POLYID\": 30.0,\n        \"NEIG\": 34,\n        \"HOVAL\": 22.5,\n        \"INC\": 13.906,\n        \"CRIME\": 68.892044,\n        \"OPEN\": 1.63878,\n        \"PLUMB\": 15.600624,\n        \"DISCBD\": 0.37,\n        \"X\": 38.290001,\n        \"Y\": 30.35,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1034.0\n      },\n      \"bbox\": [\n        8.386432647705078, 11.785490036010742, 8.898137092590332, 12.125729560852051\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.643799781799316, 12.102089881896973],\n            [8.790392875671387, 12.125729560852051],\n            [8.790384292602539, 12.10575008392334],\n            [8.81535530090332, 12.09276008605957],\n            [8.813672065734863, 12.06682014465332],\n            [8.811333656311035, 12.030810356140137],\n            [8.868269920349121, 12.013819694519043],\n            [8.898137092590332, 11.80247974395752],\n            [8.829165458679199, 11.80486011505127],\n            [8.713337898254395, 11.810020446777344],\n            [8.618428230285645, 11.80504035949707],\n            [8.508537292480469, 11.809040069580078],\n            [8.386432647705078, 11.785490036010742],\n            [8.404298782348633, 11.800470352172852],\n            [8.412508010864258, 11.807350158691406],\n            [8.455998420715332, 11.847610473632812],\n            [8.471677780151367, 11.863730430603027],\n            [8.517660140991211, 11.91471004486084],\n            [8.525978088378906, 11.924659729003906],\n            [8.563572883605957, 12.023850440979004],\n            [8.544462203979492, 12.073599815368652],\n            [8.538623809814453, 12.088789939880371],\n            [8.643799781799316, 12.102089881896973]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.117409,\n        \"PERIMETER\": 1.716047,\n        \"COLUMBUS_\": 32.0,\n        \"COLUMBUS_I\": 45.0,\n        \"POLYID\": 31.0,\n        \"NEIG\": 45,\n        \"HOVAL\": 31.799999,\n        \"INC\": 16.940001,\n        \"CRIME\": 17.677214,\n        \"OPEN\": 3.936443,\n        \"PLUMB\": 0.85389,\n        \"DISCBD\": 3.78,\n        \"X\": 27.940001,\n        \"Y\": 29.85,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1045.0\n      },\n      \"bbox\": [\n        6.456532001495361, 11.781330108642578, 7.185831069946289, 12.078980445861816\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.763313770294189, 11.981120109558105],\n            [6.942171096801758, 12.0560302734375],\n            [7.004114151000977, 12.067009925842285],\n            [7.078045845031738, 12.076990127563477],\n            [7.125000953674316, 12.078980445861816],\n            [7.185831069946289, 11.848239898681641],\n            [7.013006210327148, 11.82621955871582],\n            [6.741261005401611, 11.799280166625977],\n            [6.456532001495361, 11.781330108642578],\n            [6.674379825592041, 11.931170463562012],\n            [6.763313770294189, 11.981120109558105]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.18558,\n        \"PERIMETER\": 2.108951,\n        \"COLUMBUS_\": 33.0,\n        \"COLUMBUS_I\": 13.0,\n        \"POLYID\": 32.0,\n        \"NEIG\": 13,\n        \"HOVAL\": 40.299999,\n        \"INC\": 18.941999,\n        \"CRIME\": 19.145592,\n        \"OPEN\": 2.221022,\n        \"PLUMB\": 0.255102,\n        \"DISCBD\": 4.76,\n        \"X\": 50.110001,\n        \"Y\": 29.91,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1013.0\n      },\n      \"bbox\": [\n        10.424249649047852, 11.633870124816895, 11.204830169677734, 12.037540435791016\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10.424249649047852, 11.990639686584473],\n            [10.640899658203125, 12.013119697570801],\n            [10.876319885253906, 12.037540435791016],\n            [10.886269569396973, 11.946619987487793],\n            [10.915240287780762, 11.941619873046875],\n            [10.932220458984375, 11.938619613647461],\n            [10.963190078735352, 11.940620422363281],\n            [10.983169555664062, 11.936619758605957],\n            [10.995160102844238, 11.937620162963867],\n            [11.045080184936523, 11.853679656982422],\n            [11.112970352172852, 11.761759757995605],\n            [11.204830169677734, 11.638850212097168],\n            [11.126910209655762, 11.633870124816895],\n            [11.073969841003418, 11.65785026550293],\n            [10.974069595336914, 11.661860466003418],\n            [10.952119827270508, 11.727809906005859],\n            [10.878219604492188, 11.723259925842285],\n            [10.806260108947754, 11.718830108642578],\n            [10.783359527587891, 11.719550132751465],\n            [10.766209602355957, 11.720080375671387],\n            [10.677379608154297, 11.72284984588623],\n            [10.656399726867676, 11.72284984588623],\n            [10.613459587097168, 11.723299980163574],\n            [10.560500144958496, 11.723859786987305],\n            [10.531530380249023, 11.743849754333496],\n            [10.425640106201172, 11.741860389709473],\n            [10.424249649047852, 11.990639686584473]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.087472,\n        \"PERIMETER\": 1.507971,\n        \"COLUMBUS_\": 34.0,\n        \"COLUMBUS_I\": 22.0,\n        \"POLYID\": 33.0,\n        \"NEIG\": 22,\n        \"HOVAL\": 23.6,\n        \"INC\": 9.918,\n        \"CRIME\": 41.968163,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 1.023891,\n        \"DISCBD\": 2.28,\n        \"X\": 44.099998,\n        \"Y\": 30.4,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1022.0\n      },\n      \"bbox\": [\n        9.480667114257812, 11.76294994354248, 10.049909591674805, 12.009679794311523\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.480667114257812, 12.002750396728516],\n            [9.755396842956543, 12.004929542541504],\n            [10.007160186767578, 12.009679794311523],\n            [10.02422046661377, 11.962309837341309],\n            [10.042079925537109, 11.912759780883789],\n            [10.048910140991211, 11.858799934387207],\n            [10.049289703369141, 11.822830200195312],\n            [10.049750328063965, 11.778960227966309],\n            [10.049909591674805, 11.76294994354248],\n            [10.026479721069336, 11.787699699401855],\n            [9.986115455627441, 11.802860260009766],\n            [9.973393440246582, 11.809060096740723],\n            [9.925159454345703, 11.823849678039551],\n            [9.877091407775879, 11.844180107116699],\n            [9.859211921691895, 11.851739883422852],\n            [9.831770896911621, 11.858819961547852],\n            [9.800299644470215, 11.866829872131348],\n            [9.639468193054199, 11.863249778747559],\n            [9.489535331726074, 11.859919548034668],\n            [9.488198280334473, 11.881449699401855],\n            [9.482346534729004, 11.975689888000488],\n            [9.480667114257812, 12.002750396728516]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.226594,\n        \"PERIMETER\": 2.519132,\n        \"COLUMBUS_\": 35.0,\n        \"COLUMBUS_I\": 44.0,\n        \"POLYID\": 34.0,\n        \"NEIG\": 44,\n        \"HOVAL\": 28.450001,\n        \"INC\": 14.948,\n        \"CRIME\": 23.974028,\n        \"OPEN\": 3.029087,\n        \"PLUMB\": 0.386803,\n        \"DISCBD\": 3.06,\n        \"X\": 30.32,\n        \"Y\": 28.26,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1044.0\n      },\n      \"bbox\": [\n        6.966993808746338, 11.329950332641602, 7.733179092407227, 11.872119903564453\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.185831069946289, 11.848239898681641],\n            [7.317720890045166, 11.856149673461914],\n            [7.508541107177734, 11.872119903564453],\n            [7.484549999237061, 11.838150024414062],\n            [7.463559150695801, 11.80918025970459],\n            [7.469532012939453, 11.757220268249512],\n            [7.493495941162109, 11.728249549865723],\n            [7.492452144622803, 11.619339942932129],\n            [7.688279151916504, 11.66327953338623],\n            [7.733179092407227, 11.527389526367188],\n            [7.710183143615723, 11.482439994812012],\n            [7.674202919006348, 11.446470260620117],\n            [7.624241828918457, 11.421500205993652],\n            [7.562289237976074, 11.388540267944336],\n            [7.468363761901855, 11.349579811096191],\n            [7.398374080657959, 11.329950332641602],\n            [7.375504970550537, 11.471489906311035],\n            [7.315611839294434, 11.586389541625977],\n            [7.123810768127441, 11.530790328979492],\n            [6.9848952293396, 11.490519523620605],\n            [6.971885204315186, 11.633569717407227],\n            [6.966993808746338, 11.687350273132324],\n            [7.019946098327637, 11.695340156555176],\n            [7.013006210327148, 11.82621955871582],\n            [7.185831069946289, 11.848239898681641]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.175453,\n        \"PERIMETER\": 1.974937,\n        \"COLUMBUS_\": 36.0,\n        \"COLUMBUS_I\": 23.0,\n        \"POLYID\": 35.0,\n        \"NEIG\": 23,\n        \"HOVAL\": 27.0,\n        \"INC\": 12.814,\n        \"CRIME\": 39.175053,\n        \"OPEN\": 4.220401,\n        \"PLUMB\": 0.633675,\n        \"DISCBD\": 2.37,\n        \"X\": 43.700001,\n        \"Y\": 29.18,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1023.0\n      },\n      \"bbox\": [\n        9.341614723205566, 11.531109809875488, 10.05659008026123, 11.866829872131348\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.489535331726074, 11.859919548034668],\n            [9.639468193054199, 11.863249778747559],\n            [9.800299644470215, 11.866829872131348],\n            [9.831770896911621, 11.858819961547852],\n            [9.859211921691895, 11.851739883422852],\n            [9.877091407775879, 11.844180107116699],\n            [9.925159454345703, 11.823849678039551],\n            [9.973393440246582, 11.809060096740723],\n            [9.986115455627441, 11.802860260009766],\n            [10.026479721069336, 11.787699699401855],\n            [10.049909591674805, 11.76294994354248],\n            [10.05659008026123, 11.74390983581543],\n            [9.917131423950195, 11.737930297851562],\n            [9.918045997619629, 11.531109809875488],\n            [9.500506401062012, 11.542019844055176],\n            [9.341614723205566, 11.546170234680176],\n            [9.343691825866699, 11.734999656677246],\n            [9.492551803588867, 11.751970291137695],\n            [9.489535331726074, 11.859919548034668]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.17813,\n        \"PERIMETER\": 1.790058,\n        \"COLUMBUS_\": 37.0,\n        \"COLUMBUS_I\": 46.0,\n        \"POLYID\": 36.0,\n        \"NEIG\": 46,\n        \"HOVAL\": 36.299999,\n        \"INC\": 18.739,\n        \"CRIME\": 14.305556,\n        \"OPEN\": 6.773331,\n        \"PLUMB\": 0.332349,\n        \"DISCBD\": 4.23,\n        \"X\": 27.27,\n        \"Y\": 28.209999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1046.0\n      },\n      \"bbox\": [\n        6.456532001495361, 11.439629554748535, 7.019946098327637, 11.82621955871582\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.741261005401611, 11.799280166625977],\n            [7.013006210327148, 11.82621955871582],\n            [7.019946098327637, 11.695340156555176],\n            [6.966993808746338, 11.687350273132324],\n            [6.971885204315186, 11.633569717407227],\n            [6.9848952293396, 11.490519523620605],\n            [6.891400814056396, 11.479410171508789],\n            [6.77780818939209, 11.465909957885742],\n            [6.758334159851074, 11.462329864501953],\n            [6.678176879882812, 11.447600364685059],\n            [6.61027717590332, 11.444780349731445],\n            [6.558311939239502, 11.44219970703125],\n            [6.481366157531738, 11.439629554748535],\n            [6.456532001495361, 11.781330108642578],\n            [6.741261005401611, 11.799280166625977]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.121154,\n        \"PERIMETER\": 1.402252,\n        \"COLUMBUS_\": 38.0,\n        \"COLUMBUS_I\": 30.0,\n        \"POLYID\": 37.0,\n        \"NEIG\": 30,\n        \"HOVAL\": 43.299999,\n        \"INC\": 17.017,\n        \"CRIME\": 42.445076,\n        \"OPEN\": 4.839273,\n        \"PLUMB\": 1.230329,\n        \"DISCBD\": 1.08,\n        \"X\": 38.32,\n        \"Y\": 28.82,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1030.0\n      },\n      \"bbox\": [\n        8.713337898254395, 11.434320449829102, 9.095859527587891, 11.810020446777344\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.713337898254395, 11.810020446777344],\n            [8.829165458679199, 11.80486011505127],\n            [8.898137092590332, 11.80247974395752],\n            [9.084967613220215, 11.792989730834961],\n            [9.085843086242676, 11.639080047607422],\n            [9.095859527587891, 11.559189796447754],\n            [9.082836151123047, 11.456330299377441],\n            [9.000834465026855, 11.458020210266113],\n            [8.935976028442383, 11.460300445556641],\n            [8.922977447509766, 11.434320449829102],\n            [8.77213191986084, 11.450329780578613],\n            [8.713337898254395, 11.810020446777344]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.053881,\n        \"PERIMETER\": 0.934509,\n        \"COLUMBUS_\": 39.0,\n        \"COLUMBUS_I\": 24.0,\n        \"POLYID\": 38.0,\n        \"NEIG\": 24,\n        \"HOVAL\": 22.700001,\n        \"INC\": 11.107,\n        \"CRIME\": 53.710938,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 0.8,\n        \"DISCBD\": 1.58,\n        \"X\": 41.040001,\n        \"Y\": 28.780001,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1024.0\n      },\n      \"bbox\": [\n        9.084967613220215, 11.546170234680176, 9.343691825866699, 11.792989730834961\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.084967613220215, 11.792989730834961],\n            [9.200423240661621, 11.767109870910645],\n            [9.343691825866699, 11.734999656677246],\n            [9.341614723205566, 11.546170234680176],\n            [9.20775318145752, 11.55325984954834],\n            [9.095859527587891, 11.559189796447754],\n            [9.085843086242676, 11.639080047607422],\n            [9.084967613220215, 11.792989730834961]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.174823,\n        \"PERIMETER\": 2.335402,\n        \"COLUMBUS_\": 40.0,\n        \"COLUMBUS_I\": 47.0,\n        \"POLYID\": 39.0,\n        \"NEIG\": 47,\n        \"HOVAL\": 39.599998,\n        \"INC\": 18.476999,\n        \"CRIME\": 19.100863,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 0.314663,\n        \"DISCBD\": 5.53,\n        \"X\": 24.25,\n        \"Y\": 26.690001,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1047.0\n      },\n      \"bbox\": [\n        5.87490701675415, 11.057000160217285, 6.481366157531738, 11.781330108642578\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.181705951690674, 11.553569793701172],\n            [6.394561767578125, 11.710399627685547],\n            [6.456532001495361, 11.781330108642578],\n            [6.481366157531738, 11.439629554748535],\n            [6.33650016784668, 11.420660018920898],\n            [6.335865020751953, 11.39568042755127],\n            [6.335484027862549, 11.38070011138916],\n            [6.356451034545898, 11.349720001220703],\n            [6.359416007995605, 11.27379035949707],\n            [6.316442012786865, 11.232830047607422],\n            [6.167585849761963, 11.230850219726562],\n            [6.179293155670166, 11.18159008026123],\n            [6.180611133575439, 11.167719841003418],\n            [6.212475776672363, 11.122119903564453],\n            [6.220479965209961, 11.099960327148438],\n            [6.220462799072266, 11.057000160217285],\n            [6.088609218597412, 11.097979545593262],\n            [6.088623046875, 11.132949829101562],\n            [6.084632873535156, 11.148940086364746],\n            [6.085638046264648, 11.160920143127441],\n            [6.035704135894775, 11.202890396118164],\n            [5.984754085540771, 11.203900337219238],\n            [5.948803901672363, 11.239870071411133],\n            [5.96979284286499, 11.263850212097168],\n            [5.970815181732178, 11.31779956817627],\n            [5.87490701675415, 11.313819885253906],\n            [6.181705951690674, 11.553569793701172]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.302908,\n        \"PERIMETER\": 2.285487,\n        \"COLUMBUS_\": 41.0,\n        \"COLUMBUS_I\": 16.0,\n        \"POLYID\": 40.0,\n        \"NEIG\": 16,\n        \"HOVAL\": 61.950001,\n        \"INC\": 29.833,\n        \"CRIME\": 16.241299,\n        \"OPEN\": 6.45131,\n        \"PLUMB\": 0.132743,\n        \"DISCBD\": 4.4,\n        \"X\": 48.439999,\n        \"Y\": 27.93,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1016.0\n      },\n      \"bbox\": [\n        10.05659008026123, 11.213310241699219, 10.808690071105957, 11.74390983581543\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10.05659008026123, 11.74390983581543],\n            [10.252799987792969, 11.742819786071777],\n            [10.425640106201172, 11.741860389709473],\n            [10.531530380249023, 11.743849754333496],\n            [10.560500144958496, 11.723859786987305],\n            [10.613459587097168, 11.723299980163574],\n            [10.656399726867676, 11.72284984588623],\n            [10.677379608154297, 11.72284984588623],\n            [10.766209602355957, 11.720080375671387],\n            [10.783359527587891, 11.719550132751465],\n            [10.806260108947754, 11.718830108642578],\n            [10.802240371704102, 11.674869537353516],\n            [10.803219795227051, 11.661589622497559],\n            [10.806090354919434, 11.620909690856934],\n            [10.808199882507324, 11.590950012207031],\n            [10.808690071105957, 11.57466983795166],\n            [10.804929733276367, 11.558989524841309],\n            [10.799189567565918, 11.534999847412109],\n            [10.802140235900879, 11.434080123901367],\n            [10.802060127258301, 11.232259750366211],\n            [10.73412036895752, 11.228269577026367],\n            [10.687170028686523, 11.2222900390625],\n            [10.613240242004395, 11.216300010681152],\n            [10.595250129699707, 11.213310241699219],\n            [10.555290222167969, 11.22029972076416],\n            [10.480369567871094, 11.221309661865234],\n            [10.421429634094238, 11.23231029510498],\n            [10.364489555358887, 11.254300117492676],\n            [10.343520164489746, 11.272279739379883],\n            [10.329560279846191, 11.328240394592285],\n            [10.320590019226074, 11.369199752807617],\n            [10.279640197753906, 11.403180122375488],\n            [10.226710319519043, 11.45613956451416],\n            [10.168800354003906, 11.523090362548828],\n            [10.109880447387695, 11.590029716491699],\n            [10.070949554443359, 11.671970367431641],\n            [10.05659008026123, 11.74390983581543]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.137024,\n        \"PERIMETER\": 1.525097,\n        \"COLUMBUS_\": 42.0,\n        \"COLUMBUS_I\": 14.0,\n        \"POLYID\": 41.0,\n        \"NEIG\": 14,\n        \"HOVAL\": 42.099998,\n        \"INC\": 22.207001,\n        \"CRIME\": 18.905146,\n        \"OPEN\": 0.293317,\n        \"PLUMB\": 0.247036,\n        \"DISCBD\": 5.33,\n        \"X\": 51.240002,\n        \"Y\": 27.799999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1014.0\n      },\n      \"bbox\": [\n        10.799189567565918, 11.232259750366211, 11.141839981079102, 11.727809906005859\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10.806260108947754, 11.718830108642578],\n            [10.878219604492188, 11.723259925842285],\n            [10.952119827270508, 11.727809906005859],\n            [10.974069595336914, 11.661860466003418],\n            [11.073969841003418, 11.65785026550293],\n            [11.126910209655762, 11.633870124816895],\n            [11.126890182495117, 11.59589958190918],\n            [11.138870239257812, 11.569919586181641],\n            [11.139849662780762, 11.530960083007812],\n            [11.141839981079102, 11.505979537963867],\n            [11.12285041809082, 11.492989540100098],\n            [11.122790336608887, 11.336130142211914],\n            [11.122209548950195, 11.315879821777344],\n            [11.098469734191895, 11.303170204162598],\n            [11.078960418701172, 11.295280456542969],\n            [11.06859016418457, 11.2918701171875],\n            [11.014869689941406, 11.274200439453125],\n            [10.963910102844238, 11.265210151672363],\n            [10.919949531555176, 11.254229545593262],\n            [10.901860237121582, 11.252129554748535],\n            [10.877499580383301, 11.246870040893555],\n            [10.840740203857422, 11.238940238952637],\n            [10.818880081176758, 11.235170364379883],\n            [10.802060127258301, 11.232259750366211],\n            [10.802140235900879, 11.434080123901367],\n            [10.799189567565918, 11.534999847412109],\n            [10.804929733276367, 11.558989524841309],\n            [10.808690071105957, 11.57466983795166],\n            [10.808199882507324, 11.590950012207031],\n            [10.806090354919434, 11.620909690856934],\n            [10.803219795227051, 11.661589622497559],\n            [10.802240371704102, 11.674869537353516],\n            [10.806260108947754, 11.718830108642578]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.266541,\n        \"PERIMETER\": 2.176543,\n        \"COLUMBUS_\": 43.0,\n        \"COLUMBUS_I\": 49.0,\n        \"POLYID\": 42.0,\n        \"NEIG\": 49,\n        \"HOVAL\": 44.333,\n        \"INC\": 25.872999,\n        \"CRIME\": 16.49189,\n        \"OPEN\": 1.792993,\n        \"PLUMB\": 0.134439,\n        \"DISCBD\": 3.87,\n        \"X\": 29.02,\n        \"Y\": 26.58,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1049.0\n      },\n      \"bbox\": [\n        6.75403881072998, 10.997920036315918, 7.404403209686279, 11.586389541625977\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.758334159851074, 11.462329864501953],\n            [6.77780818939209, 11.465909957885742],\n            [6.891400814056396, 11.479410171508789],\n            [6.9848952293396, 11.490519523620605],\n            [7.123810768127441, 11.530790328979492],\n            [7.315611839294434, 11.586389541625977],\n            [7.375504970550537, 11.471489906311035],\n            [7.398374080657959, 11.329950332641602],\n            [7.404403209686279, 11.29263973236084],\n            [7.38238000869751, 11.18474006652832],\n            [7.359377861022949, 11.124790191650391],\n            [7.327386856079102, 11.071849822998047],\n            [7.275406837463379, 10.997920036315918],\n            [6.82789421081543, 11.116869926452637],\n            [6.879881858825684, 11.211779594421387],\n            [6.81195592880249, 11.22877025604248],\n            [6.83095121383667, 11.262740135192871],\n            [6.771010875701904, 11.265749931335449],\n            [6.75403881072998, 11.292719841003418],\n            [6.78602123260498, 11.325690269470215],\n            [6.778051853179932, 11.380640029907227],\n            [6.758076190948486, 11.392629623413086],\n            [6.758334159851074, 11.462329864501953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.060241,\n        \"PERIMETER\": 0.967793,\n        \"COLUMBUS_\": 44.0,\n        \"COLUMBUS_I\": 29.0,\n        \"POLYID\": 43.0,\n        \"NEIG\": 29,\n        \"HOVAL\": 25.700001,\n        \"INC\": 13.38,\n        \"CRIME\": 36.663612,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 0.589226,\n        \"DISCBD\": 1.95,\n        \"X\": 41.09,\n        \"Y\": 27.49,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1029.0\n      },\n      \"bbox\": [\n        9.082836151123047, 11.308409690856934, 9.341614723205566, 11.559189796447754\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.095859527587891, 11.559189796447754],\n            [9.20775318145752, 11.55325984954834],\n            [9.341614723205566, 11.546170234680176],\n            [9.338521957397461, 11.312379837036133],\n            [9.207670211791992, 11.31017017364502],\n            [9.10374927520752, 11.308409690856934],\n            [9.082836151123047, 11.456330299377441],\n            [9.095859527587891, 11.559189796447754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.173337,\n        \"PERIMETER\": 1.868044,\n        \"COLUMBUS_\": 45.0,\n        \"COLUMBUS_I\": 25.0,\n        \"POLYID\": 44.0,\n        \"NEIG\": 25,\n        \"HOVAL\": 33.5,\n        \"INC\": 16.961,\n        \"CRIME\": 25.962263,\n        \"OPEN\": 1.463993,\n        \"PLUMB\": 0.329761,\n        \"DISCBD\": 2.67,\n        \"X\": 43.23,\n        \"Y\": 27.309999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1025.0\n      },\n      \"bbox\": [\n        9.335508346557617, 11.211409568786621, 9.963891983032227, 11.546170234680176\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.341614723205566, 11.546170234680176],\n            [9.500506401062012, 11.542019844055176],\n            [9.918045997619629, 11.531109809875488],\n            [9.963891983032227, 11.268340110778809],\n            [9.778072357177734, 11.265359878540039],\n            [9.776052474975586, 11.211409568786621],\n            [9.656153678894043, 11.212479591369629],\n            [9.548275947570801, 11.21343994140625],\n            [9.546306610107422, 11.285369873046875],\n            [9.391454696655273, 11.275400161743164],\n            [9.335508346557617, 11.27241039276123],\n            [9.338521957397461, 11.312379837036133],\n            [9.341614723205566, 11.546170234680176]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.256431,\n        \"PERIMETER\": 2.193039,\n        \"COLUMBUS_\": 46.0,\n        \"COLUMBUS_I\": 28.0,\n        \"POLYID\": 45.0,\n        \"NEIG\": 28,\n        \"HOVAL\": 27.733,\n        \"INC\": 14.135,\n        \"CRIME\": 29.028488,\n        \"OPEN\": 1.006118,\n        \"PLUMB\": 2.3912,\n        \"DISCBD\": 2.13,\n        \"X\": 39.32,\n        \"Y\": 25.85,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1028.0\n      },\n      \"bbox\": [\n        8.622117042541504, 10.821869850158691, 9.178548812866211, 11.460300445556641\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.000834465026855, 11.458020210266113],\n            [9.082836151123047, 11.456330299377441],\n            [9.10374927520752, 11.308409690856934],\n            [9.111679077148438, 11.157540321350098],\n            [9.107674598693848, 11.135560035705566],\n            [9.098838806152344, 11.115389823913574],\n            [9.093674659729004, 11.10359001159668],\n            [9.171592712402344, 11.09158992767334],\n            [9.174186706542969, 11.060310363769531],\n            [9.175572395324707, 11.048629760742188],\n            [9.178548812866211, 10.999670028686523],\n            [9.146570205688477, 10.976699829101562],\n            [9.135557174682617, 10.917750358581543],\n            [9.100429534912109, 10.899089813232422],\n            [9.095559120178223, 10.828829765319824],\n            [8.850795745849609, 10.821869850158691],\n            [8.815848350524902, 10.867839813232422],\n            [8.789886474609375, 10.899809837341309],\n            [8.765927314758301, 10.938779830932617],\n            [8.752955436706543, 10.978750228881836],\n            [8.747973442077637, 11.010720252990723],\n            [8.753978729248047, 11.035699844360352],\n            [8.750991821289062, 11.060669898986816],\n            [8.622117042541504, 11.059690475463867],\n            [8.631120681762695, 11.089659690856934],\n            [8.634133338928223, 11.126629829406738],\n            [8.63216495513916, 11.199569702148438],\n            [8.665151596069336, 11.246520042419434],\n            [8.683139801025391, 11.257510185241699],\n            [8.69713020324707, 11.267499923706055],\n            [8.67520809173584, 11.405380249023438],\n            [8.77213191986084, 11.450329780578613],\n            [8.922977447509766, 11.434320449829102],\n            [8.935976028442383, 11.460300445556641],\n            [9.000834465026855, 11.458020210266113]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.124728,\n        \"PERIMETER\": 1.841029,\n        \"COLUMBUS_\": 47.0,\n        \"COLUMBUS_I\": 48.0,\n        \"POLYID\": 46.0,\n        \"NEIG\": 48,\n        \"HOVAL\": 76.099998,\n        \"INC\": 18.323999,\n        \"CRIME\": 16.530533,\n        \"OPEN\": 9.683953,\n        \"PLUMB\": 0.424628,\n        \"DISCBD\": 5.27,\n        \"X\": 25.469999,\n        \"Y\": 25.709999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1048.0\n      },\n      \"bbox\": [\n        6.167585849761963, 10.978030204772949, 6.678176879882812, 11.447600364685059\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.481366157531738, 11.439629554748535],\n            [6.558311939239502, 11.44219970703125],\n            [6.61027717590332, 11.444780349731445],\n            [6.678176879882812, 11.447600364685059],\n            [6.649185180664062, 11.399640083312988],\n            [6.647164821624756, 11.344690322875977],\n            [6.639161109924316, 11.315719604492188],\n            [6.522275924682617, 11.318730354309082],\n            [6.520257949829102, 11.269769668579102],\n            [6.516248226165771, 11.236800193786621],\n            [6.542212009429932, 11.209819793701172],\n            [6.549192905426025, 11.180850028991699],\n            [6.55515718460083, 11.10791015625],\n            [6.534173011779785, 11.096920013427734],\n            [6.537120819091797, 10.978030204772949],\n            [6.220462799072266, 11.057000160217285],\n            [6.220479965209961, 11.099960327148438],\n            [6.212475776672363, 11.122119903564453],\n            [6.180611133575439, 11.167719841003418],\n            [6.179293155670166, 11.18159008026123],\n            [6.167585849761963, 11.230850219726562],\n            [6.316442012786865, 11.232830047607422],\n            [6.359416007995605, 11.27379035949707],\n            [6.356451034545898, 11.349720001220703],\n            [6.335484027862549, 11.38070011138916],\n            [6.335865020751953, 11.39568042755127],\n            [6.33650016784668, 11.420660018920898],\n            [6.481366157531738, 11.439629554748535]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.245249,\n        \"PERIMETER\": 2.079986,\n        \"COLUMBUS_\": 48.0,\n        \"COLUMBUS_I\": 15.0,\n        \"POLYID\": 47.0,\n        \"NEIG\": 15,\n        \"HOVAL\": 42.5,\n        \"INC\": 18.950001,\n        \"CRIME\": 27.822861,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 0.268817,\n        \"DISCBD\": 5.57,\n        \"X\": 50.889999,\n        \"Y\": 25.24,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1015.0\n      },\n      \"bbox\": [\n        10.588159561157227, 10.788629531860352, 11.287420272827148, 11.315879821777344\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [11.098469734191895, 11.303170204162598],\n            [11.122209548950195, 11.315879821777344],\n            [11.120759963989258, 11.265190124511719],\n            [11.119729995727539, 11.199250221252441],\n            [11.123700141906738, 11.127309799194336],\n            [11.144650459289551, 11.056369781494141],\n            [11.181599617004395, 11.025400161743164],\n            [11.221540451049805, 10.978429794311523],\n            [11.256489753723145, 10.922479629516602],\n            [11.275449752807617, 10.888500213623047],\n            [11.287420272827148, 10.84253978729248],\n            [11.286399841308594, 10.790590286254883],\n            [11.013669967651367, 10.788629531860352],\n            [10.963720321655273, 10.799619674682617],\n            [10.88379955291748, 10.807620048522949],\n            [10.781900405883789, 10.812629699707031],\n            [10.708979606628418, 10.819640159606934],\n            [10.694000244140625, 10.833629608154297],\n            [10.649069786071777, 10.890580177307129],\n            [10.616109848022461, 10.925559997558594],\n            [10.588159561157227, 10.978509902954102],\n            [10.592169761657715, 10.994500160217285],\n            [10.691129684448242, 11.140359878540039],\n            [10.687170028686523, 11.2222900390625],\n            [10.73412036895752, 11.228269577026367],\n            [10.802060127258301, 11.232259750366211],\n            [10.818880081176758, 11.235170364379883],\n            [10.840740203857422, 11.238940238952637],\n            [10.877499580383301, 11.246870040893555],\n            [10.901860237121582, 11.252129554748535],\n            [10.919949531555176, 11.254229545593262],\n            [10.963910102844238, 11.265210151672363],\n            [11.014869689941406, 11.274200439453125],\n            [11.06859016418457, 11.2918701171875],\n            [11.078960418701172, 11.295280456542969],\n            [11.098469734191895, 11.303170204162598]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.069762,\n        \"PERIMETER\": 1.102032,\n        \"COLUMBUS_\": 49.0,\n        \"COLUMBUS_I\": 27.0,\n        \"POLYID\": 48.0,\n        \"NEIG\": 27,\n        \"HOVAL\": 26.799999,\n        \"INC\": 11.813,\n        \"CRIME\": 26.645266,\n        \"OPEN\": 4.884389,\n        \"PLUMB\": 1.034807,\n        \"DISCBD\": 2.33,\n        \"X\": 41.209999,\n        \"Y\": 25.9,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1027.0\n      },\n      \"bbox\": [\n        9.093674659729004, 11.048029899597168, 9.3948974609375, 11.312379837036133\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.207670211791992, 11.31017017364502],\n            [9.338521957397461, 11.312379837036133],\n            [9.335508346557617, 11.27241039276123],\n            [9.391454696655273, 11.275400161743164],\n            [9.393032073974609, 11.262740135192871],\n            [9.393250465393066, 11.251399993896484],\n            [9.3948974609375, 11.165470123291016],\n            [9.39454460144043, 11.139530181884766],\n            [9.393360137939453, 11.052599906921387],\n            [9.282283782958984, 11.048029899597168],\n            [9.175572395324707, 11.048629760742188],\n            [9.174186706542969, 11.060310363769531],\n            [9.171592712402344, 11.09158992767334],\n            [9.093674659729004, 11.10359001159668],\n            [9.098838806152344, 11.115389823913574],\n            [9.107674598693848, 11.135560035705566],\n            [9.111679077148438, 11.157540321350098],\n            [9.10374927520752, 11.308409690856934],\n            [9.207670211791992, 11.31017017364502]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"AREA\": 0.205964,\n        \"PERIMETER\": 2.199169,\n        \"COLUMBUS_\": 50.0,\n        \"COLUMBUS_I\": 26.0,\n        \"POLYID\": 49.0,\n        \"NEIG\": 26,\n        \"HOVAL\": 35.799999,\n        \"INC\": 18.796,\n        \"CRIME\": 22.541491,\n        \"OPEN\": 0.259826,\n        \"PLUMB\": 0.901442,\n        \"DISCBD\": 3.03,\n        \"X\": 42.669998,\n        \"Y\": 24.959999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1026.0\n      },\n      \"bbox\": [\n        9.095559120178223, 10.828829765319824, 9.78189754486084, 11.285369873046875\n      ],\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.391454696655273, 11.275400161743164],\n            [9.546306610107422, 11.285369873046875],\n            [9.548275947570801, 11.21343994140625],\n            [9.656153678894043, 11.212479591369629],\n            [9.776052474975586, 11.211409568786621],\n            [9.779011726379395, 11.118490219116211],\n            [9.774969100952148, 11.007590293884277],\n            [9.775935173034668, 10.92866039276123],\n            [9.78189754486084, 10.853730201721191],\n            [9.095559120178223, 10.828829765319824],\n            [9.100429534912109, 10.899089813232422],\n            [9.135557174682617, 10.917750358581543],\n            [9.146570205688477, 10.976699829101562],\n            [9.178548812866211, 10.999670028686523],\n            [9.175572395324707, 11.048629760742188],\n            [9.282283782958984, 11.048029899597168],\n            [9.393360137939453, 11.052599906921387],\n            [9.39454460144043, 11.139530181884766],\n            [9.3948974609375, 11.165470123291016],\n            [9.393250465393066, 11.251399993896484],\n            [9.393032073974609, 11.262740135192871],\n            [9.391454696655273, 11.275400161743164]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-moran-index/test/in/point.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 1,\n        \"AREA\": 0.309441,\n        \"PERIMETER\": 2.440629,\n        \"COLUMBUS_\": 2.0,\n        \"COLUMBUS_I\": 5.0,\n        \"POLYID\": 1.0,\n        \"NEIG\": 5,\n        \"HOVAL\": 80.467003,\n        \"INC\": 19.531,\n        \"CRIME\": 15.72598,\n        \"OPEN\": 2.850747,\n        \"PLUMB\": 0.217155,\n        \"DISCBD\": 5.03,\n        \"X\": 38.799999,\n        \"Y\": 44.07,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1005.0,\n        \"ORIG_FID\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.827218469203906, 14.369076018912065]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 2,\n        \"AREA\": 0.259329,\n        \"PERIMETER\": 2.236939,\n        \"COLUMBUS_\": 3.0,\n        \"COLUMBUS_I\": 1.0,\n        \"POLYID\": 2.0,\n        \"NEIG\": 1,\n        \"HOVAL\": 44.567001,\n        \"INC\": 21.232,\n        \"CRIME\": 18.801754,\n        \"OPEN\": 5.29672,\n        \"PLUMB\": 0.320581,\n        \"DISCBD\": 4.27,\n        \"X\": 35.619999,\n        \"Y\": 42.380001,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1001.0,\n        \"ORIG_FID\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.332658372724923, 14.03162400632397]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 3,\n        \"AREA\": 0.192468,\n        \"PERIMETER\": 2.187547,\n        \"COLUMBUS_\": 4.0,\n        \"COLUMBUS_I\": 6.0,\n        \"POLYID\": 3.0,\n        \"NEIG\": 6,\n        \"HOVAL\": 26.35,\n        \"INC\": 15.956,\n        \"CRIME\": 30.626781,\n        \"OPEN\": 4.534649,\n        \"PLUMB\": 0.374404,\n        \"DISCBD\": 3.89,\n        \"X\": 39.82,\n        \"Y\": 41.18,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1006.0,\n        \"ORIG_FID\": 2\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.012265409371699, 13.81971907996915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 4,\n        \"AREA\": 0.083841,\n        \"PERIMETER\": 1.427635,\n        \"COLUMBUS_\": 5.0,\n        \"COLUMBUS_I\": 2.0,\n        \"POLYID\": 4.0,\n        \"NEIG\": 2,\n        \"HOVAL\": 33.200001,\n        \"INC\": 4.477,\n        \"CRIME\": 32.38776,\n        \"OPEN\": 0.394427,\n        \"PLUMB\": 1.186944,\n        \"DISCBD\": 3.7,\n        \"X\": 36.5,\n        \"Y\": 40.52,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1002.0,\n        \"ORIG_FID\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.460800893307432, 13.71696217022814]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 5,\n        \"AREA\": 0.488888,\n        \"PERIMETER\": 2.997133,\n        \"COLUMBUS_\": 6.0,\n        \"COLUMBUS_I\": 7.0,\n        \"POLYID\": 5.0,\n        \"NEIG\": 7,\n        \"HOVAL\": 23.225,\n        \"INC\": 11.252,\n        \"CRIME\": 50.73151,\n        \"OPEN\": 0.405664,\n        \"PLUMB\": 0.624596,\n        \"DISCBD\": 2.83,\n        \"X\": 40.009998,\n        \"Y\": 38.0,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1007.0,\n        \"ORIG_FID\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.007982127497687, 13.296366430537295]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 6,\n        \"AREA\": 0.283079,\n        \"PERIMETER\": 2.335634,\n        \"COLUMBUS_\": 7.0,\n        \"COLUMBUS_I\": 8.0,\n        \"POLYID\": 6.0,\n        \"NEIG\": 8,\n        \"HOVAL\": 28.75,\n        \"INC\": 16.028999,\n        \"CRIME\": 26.066658,\n        \"OPEN\": 0.563075,\n        \"PLUMB\": 0.25413,\n        \"DISCBD\": 3.78,\n        \"X\": 43.75,\n        \"Y\": 39.279999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1008.0,\n        \"ORIG_FID\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.739925828001205, 13.474632743210716]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 7,\n        \"AREA\": 0.257084,\n        \"PERIMETER\": 2.554577,\n        \"COLUMBUS_\": 8.0,\n        \"COLUMBUS_I\": 4.0,\n        \"POLYID\": 7.0,\n        \"NEIG\": 4,\n        \"HOVAL\": 75.0,\n        \"INC\": 8.438,\n        \"CRIME\": 0.178269,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 2.402402,\n        \"DISCBD\": 2.74,\n        \"X\": 33.360001,\n        \"Y\": 38.41,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1004.0,\n        \"ORIG_FID\": 6\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.118750060628727, 13.29570386705354]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 8,\n        \"AREA\": 0.204954,\n        \"PERIMETER\": 2.139524,\n        \"COLUMBUS_\": 9.0,\n        \"COLUMBUS_I\": 3.0,\n        \"POLYID\": 8.0,\n        \"NEIG\": 3,\n        \"HOVAL\": 37.125,\n        \"INC\": 11.337,\n        \"CRIME\": 38.425858,\n        \"OPEN\": 3.483478,\n        \"PLUMB\": 2.739726,\n        \"DISCBD\": 2.89,\n        \"X\": 36.709999,\n        \"Y\": 38.709999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1003.0,\n        \"ORIG_FID\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.49648817195755, 13.402612361972411]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 9,\n        \"AREA\": 0.500755,\n        \"PERIMETER\": 3.169707,\n        \"COLUMBUS_\": 10.0,\n        \"COLUMBUS_I\": 18.0,\n        \"POLYID\": 9.0,\n        \"NEIG\": 18,\n        \"HOVAL\": 52.599998,\n        \"INC\": 17.586,\n        \"CRIME\": 30.515917,\n        \"OPEN\": 0.527488,\n        \"PLUMB\": 0.890736,\n        \"DISCBD\": 3.17,\n        \"X\": 43.439999,\n        \"Y\": 35.919998,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1018.0,\n        \"ORIG_FID\": 8\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.630793442508985, 12.942724931765365]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 10,\n        \"AREA\": 0.246689,\n        \"PERIMETER\": 2.087235,\n        \"COLUMBUS_\": 11.0,\n        \"COLUMBUS_I\": 10.0,\n        \"POLYID\": 10.0,\n        \"NEIG\": 10,\n        \"HOVAL\": 96.400002,\n        \"INC\": 13.598,\n        \"CRIME\": 34.000835,\n        \"OPEN\": 1.548348,\n        \"PLUMB\": 0.557724,\n        \"DISCBD\": 4.33,\n        \"X\": 47.610001,\n        \"Y\": 36.419998,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1010.0,\n        \"ORIG_FID\": 9\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10.366382709801059, 13.001889360253092]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 11,\n        \"AREA\": 0.041012,\n        \"PERIMETER\": 0.919488,\n        \"COLUMBUS_\": 12.0,\n        \"COLUMBUS_I\": 38.0,\n        \"POLYID\": 11.0,\n        \"NEIG\": 38,\n        \"HOVAL\": 19.700001,\n        \"INC\": 7.467,\n        \"CRIME\": 62.275448,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 1.479915,\n        \"DISCBD\": 1.9,\n        \"X\": 37.849998,\n        \"Y\": 36.299999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1038.0,\n        \"ORIG_FID\": 10\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.669735412857047, 12.98012156123324]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 12,\n        \"AREA\": 0.035769,\n        \"PERIMETER\": 0.902125,\n        \"COLUMBUS_\": 13.0,\n        \"COLUMBUS_I\": 37.0,\n        \"POLYID\": 12.0,\n        \"NEIG\": 37,\n        \"HOVAL\": 19.9,\n        \"INC\": 10.048,\n        \"CRIME\": 56.705669,\n        \"OPEN\": 3.157895,\n        \"PLUMB\": 2.635046,\n        \"DISCBD\": 1.91,\n        \"X\": 37.130001,\n        \"Y\": 36.119999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1037.0,\n        \"ORIG_FID\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.544995589641779, 12.953125683982199]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 13,\n        \"AREA\": 0.034377,\n        \"PERIMETER\": 0.93659,\n        \"COLUMBUS_\": 14.0,\n        \"COLUMBUS_I\": 39.0,\n        \"POLYID\": 13.0,\n        \"NEIG\": 39,\n        \"HOVAL\": 41.700001,\n        \"INC\": 9.549,\n        \"CRIME\": 46.716129,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 6.328423,\n        \"DISCBD\": 2.09,\n        \"X\": 35.950001,\n        \"Y\": 36.400002,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1039.0,\n        \"ORIG_FID\": 12\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.349223482851055, 12.996094141102329]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 14,\n        \"AREA\": 0.060884,\n        \"PERIMETER\": 1.128424,\n        \"COLUMBUS_\": 15.0,\n        \"COLUMBUS_I\": 40.0,\n        \"POLYID\": 14.0,\n        \"NEIG\": 40,\n        \"HOVAL\": 42.900002,\n        \"INC\": 9.963,\n        \"CRIME\": 57.066132,\n        \"OPEN\": 0.477104,\n        \"PLUMB\": 5.110962,\n        \"DISCBD\": 1.83,\n        \"X\": 35.720001,\n        \"Y\": 35.599998,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1040.0,\n        \"ORIG_FID\": 13\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.292701516920957, 12.863707688216895]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 15,\n        \"AREA\": 0.106653,\n        \"PERIMETER\": 1.437606,\n        \"COLUMBUS_\": 16.0,\n        \"COLUMBUS_I\": 9.0,\n        \"POLYID\": 15.0,\n        \"NEIG\": 9,\n        \"HOVAL\": 18.0,\n        \"INC\": 9.873,\n        \"CRIME\": 48.585487,\n        \"OPEN\": 0.174325,\n        \"PLUMB\": 1.311475,\n        \"DISCBD\": 1.7,\n        \"X\": 39.610001,\n        \"Y\": 34.91,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1009.0,\n        \"ORIG_FID\": 14\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.973462206070096, 12.741586740380374]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 16,\n        \"AREA\": 0.093154,\n        \"PERIMETER\": 1.340061,\n        \"COLUMBUS_\": 17.0,\n        \"COLUMBUS_I\": 36.0,\n        \"POLYID\": 16.0,\n        \"NEIG\": 36,\n        \"HOVAL\": 18.799999,\n        \"INC\": 7.625,\n        \"CRIME\": 54.838711,\n        \"OPEN\": 0.533737,\n        \"PLUMB\": 4.6875,\n        \"DISCBD\": 1.1,\n        \"X\": 37.599998,\n        \"Y\": 34.080002,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1036.0,\n        \"ORIG_FID\": 15\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.655866335560422, 12.627315808754123]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 17,\n        \"AREA\": 0.102087,\n        \"PERIMETER\": 1.382359,\n        \"COLUMBUS_\": 18.0,\n        \"COLUMBUS_I\": 11.0,\n        \"POLYID\": 17.0,\n        \"NEIG\": 11,\n        \"HOVAL\": 41.75,\n        \"INC\": 9.798,\n        \"CRIME\": 36.868774,\n        \"OPEN\": 0.448232,\n        \"PLUMB\": 1.619745,\n        \"DISCBD\": 4.47,\n        \"X\": 48.580002,\n        \"Y\": 34.459999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1011.0,\n        \"ORIG_FID\": 16\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10.528621192777081, 12.647475597059021]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 18,\n        \"AREA\": 0.055494,\n        \"PERIMETER\": 1.183352,\n        \"COLUMBUS_\": 19.0,\n        \"COLUMBUS_I\": 42.0,\n        \"POLYID\": 18.0,\n        \"NEIG\": 42,\n        \"HOVAL\": 60.0,\n        \"INC\": 13.185,\n        \"CRIME\": 43.962486,\n        \"OPEN\": 24.998068,\n        \"PLUMB\": 13.849287,\n        \"DISCBD\": 1.58,\n        \"X\": 36.150002,\n        \"Y\": 33.919998,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1042.0,\n        \"ORIG_FID\": 17\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.487918125725194, 12.545342471590065]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 19,\n        \"AREA\": 0.061342,\n        \"PERIMETER\": 1.249247,\n        \"COLUMBUS_\": 20.0,\n        \"COLUMBUS_I\": 41.0,\n        \"POLYID\": 19.0,\n        \"NEIG\": 41,\n        \"HOVAL\": 30.6,\n        \"INC\": 11.618,\n        \"CRIME\": 54.521965,\n        \"OPEN\": 0.111111,\n        \"PLUMB\": 2.622951,\n        \"DISCBD\": 1.53,\n        \"X\": 35.759998,\n        \"Y\": 34.66,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1041.0,\n        \"ORIG_FID\": 18\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.276665687561035, 12.716493200126546]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 20,\n        \"AREA\": 0.444629,\n        \"PERIMETER\": 3.174601,\n        \"COLUMBUS_\": 21.0,\n        \"COLUMBUS_I\": 17.0,\n        \"POLYID\": 20.0,\n        \"NEIG\": 17,\n        \"HOVAL\": 81.266998,\n        \"INC\": 31.07,\n        \"CRIME\": 0.223797,\n        \"OPEN\": 5.318607,\n        \"PLUMB\": 0.167224,\n        \"DISCBD\": 3.57,\n        \"X\": 46.73,\n        \"Y\": 31.91,\n        \"NSA\": 0.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1017.0,\n        \"ORIG_FID\": 19\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10.190581526179411, 12.256899149288646]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 21,\n        \"AREA\": 0.699258,\n        \"PERIMETER\": 5.07749,\n        \"COLUMBUS_\": 22.0,\n        \"COLUMBUS_I\": 43.0,\n        \"POLYID\": 21.0,\n        \"NEIG\": 43,\n        \"HOVAL\": 19.975,\n        \"INC\": 10.655,\n        \"CRIME\": 40.074074,\n        \"OPEN\": 1.643756,\n        \"PLUMB\": 1.559576,\n        \"DISCBD\": 1.41,\n        \"X\": 34.080002,\n        \"Y\": 30.42,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1043.0,\n        \"ORIG_FID\": 20\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.847423618980445, 12.084997322022751]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 22,\n        \"AREA\": 0.192891,\n        \"PERIMETER\": 1.992717,\n        \"COLUMBUS_\": 23.0,\n        \"COLUMBUS_I\": 19.0,\n        \"POLYID\": 22.0,\n        \"NEIG\": 19,\n        \"HOVAL\": 30.450001,\n        \"INC\": 11.709,\n        \"CRIME\": 33.705048,\n        \"OPEN\": 4.539754,\n        \"PLUMB\": 1.785714,\n        \"DISCBD\": 2.45,\n        \"X\": 43.369999,\n        \"Y\": 33.459999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1019.0,\n        \"ORIG_FID\": 21\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.655244367498366, 12.462765864102987]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 23,\n        \"AREA\": 0.24712,\n        \"PERIMETER\": 2.147528,\n        \"COLUMBUS_\": 24.0,\n        \"COLUMBUS_I\": 12.0,\n        \"POLYID\": 23.0,\n        \"NEIG\": 12,\n        \"HOVAL\": 47.733002,\n        \"INC\": 21.155001,\n        \"CRIME\": 20.048504,\n        \"OPEN\": 0.532632,\n        \"PLUMB\": 0.216763,\n        \"DISCBD\": 4.78,\n        \"X\": 49.610001,\n        \"Y\": 32.650002,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1012.0,\n        \"ORIG_FID\": 22\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10.655119895935059, 12.247625542087841]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 24,\n        \"AREA\": 0.192226,\n        \"PERIMETER\": 2.240392,\n        \"COLUMBUS_\": 25.0,\n        \"COLUMBUS_I\": 35.0,\n        \"POLYID\": 24.0,\n        \"NEIG\": 35,\n        \"HOVAL\": 53.200001,\n        \"INC\": 14.236,\n        \"CRIME\": 38.297871,\n        \"OPEN\": 0.62622,\n        \"PLUMB\": 18.811075,\n        \"DISCBD\": 0.42,\n        \"X\": 36.599998,\n        \"Y\": 32.09,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1035.0,\n        \"ORIG_FID\": 23\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.460766315460205, 12.25595634881094]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 25,\n        \"AREA\": 0.17168,\n        \"PERIMETER\": 1.666489,\n        \"COLUMBUS_\": 26.0,\n        \"COLUMBUS_I\": 32.0,\n        \"POLYID\": 25.0,\n        \"NEIG\": 32,\n        \"HOVAL\": 17.9,\n        \"INC\": 8.461,\n        \"CRIME\": 61.299175,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 6.529851,\n        \"DISCBD\": 0.83,\n        \"X\": 39.360001,\n        \"Y\": 32.880001,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1032.0,\n        \"ORIG_FID\": 24\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.938751825549428, 12.380509826386749]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 26,\n        \"AREA\": 0.107298,\n        \"PERIMETER\": 1.406823,\n        \"COLUMBUS_\": 27.0,\n        \"COLUMBUS_I\": 20.0,\n        \"POLYID\": 26.0,\n        \"NEIG\": 20,\n        \"HOVAL\": 20.299999,\n        \"INC\": 8.085,\n        \"CRIME\": 40.969742,\n        \"OPEN\": 1.238288,\n        \"PLUMB\": 2.534275,\n        \"DISCBD\": 1.5,\n        \"X\": 41.130001,\n        \"Y\": 33.139999,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1020.0,\n        \"ORIG_FID\": 25\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.250921130765516, 12.413783516339139]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 27,\n        \"AREA\": 0.137802,\n        \"PERIMETER\": 1.780751,\n        \"COLUMBUS_\": 28.0,\n        \"COLUMBUS_I\": 21.0,\n        \"POLYID\": 27.0,\n        \"NEIG\": 21,\n        \"HOVAL\": 34.099998,\n        \"INC\": 10.822,\n        \"CRIME\": 52.79443,\n        \"OPEN\": 19.368099,\n        \"PLUMB\": 1.483516,\n        \"DISCBD\": 2.24,\n        \"X\": 43.950001,\n        \"Y\": 31.610001,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1021.0,\n        \"ORIG_FID\": 26\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.737004148455057, 12.149692840219398]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 28,\n        \"AREA\": 0.174773,\n        \"PERIMETER\": 1.637148,\n        \"COLUMBUS_\": 29.0,\n        \"COLUMBUS_I\": 31.0,\n        \"POLYID\": 28.0,\n        \"NEIG\": 31,\n        \"HOVAL\": 22.85,\n        \"INC\": 7.856,\n        \"CRIME\": 56.919785,\n        \"OPEN\": 0.509305,\n        \"PLUMB\": 3.001072,\n        \"DISCBD\": 1.41,\n        \"X\": 41.310001,\n        \"Y\": 30.9,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1031.0,\n        \"ORIG_FID\": 27\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.297975780128178, 11.977787924704431]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 29,\n        \"AREA\": 0.085972,\n        \"PERIMETER\": 1.312158,\n        \"COLUMBUS_\": 30.0,\n        \"COLUMBUS_I\": 33.0,\n        \"POLYID\": 29.0,\n        \"NEIG\": 33,\n        \"HOVAL\": 32.5,\n        \"INC\": 8.681,\n        \"CRIME\": 60.750446,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 2.645051,\n        \"DISCBD\": 0.81,\n        \"X\": 39.720001,\n        \"Y\": 30.639999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1033.0,\n        \"ORIG_FID\": 28\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.977861502440565, 11.994012072407752]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 30,\n        \"AREA\": 0.104355,\n        \"PERIMETER\": 1.524931,\n        \"COLUMBUS_\": 31.0,\n        \"COLUMBUS_I\": 34.0,\n        \"POLYID\": 30.0,\n        \"NEIG\": 34,\n        \"HOVAL\": 22.5,\n        \"INC\": 13.906,\n        \"CRIME\": 68.892044,\n        \"OPEN\": 1.63878,\n        \"PLUMB\": 15.600624,\n        \"DISCBD\": 0.37,\n        \"X\": 38.290001,\n        \"Y\": 30.35,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1034.0,\n        \"ORIG_FID\": 29\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.688719493192551, 11.938718355531325]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 31,\n        \"AREA\": 0.117409,\n        \"PERIMETER\": 1.716047,\n        \"COLUMBUS_\": 32.0,\n        \"COLUMBUS_I\": 45.0,\n        \"POLYID\": 31.0,\n        \"NEIG\": 45,\n        \"HOVAL\": 31.799999,\n        \"INC\": 16.940001,\n        \"CRIME\": 17.677214,\n        \"OPEN\": 3.936443,\n        \"PLUMB\": 0.85389,\n        \"DISCBD\": 3.78,\n        \"X\": 27.940001,\n        \"Y\": 29.85,\n        \"NSA\": 1.0,\n        \"NSB\": 1.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1045.0,\n        \"ORIG_FID\": 30\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [6.892482325993742, 11.914150957988443]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 32,\n        \"AREA\": 0.18558,\n        \"PERIMETER\": 2.108951,\n        \"COLUMBUS_\": 33.0,\n        \"COLUMBUS_I\": 13.0,\n        \"POLYID\": 32.0,\n        \"NEIG\": 13,\n        \"HOVAL\": 40.299999,\n        \"INC\": 18.941999,\n        \"CRIME\": 19.145592,\n        \"OPEN\": 2.221022,\n        \"PLUMB\": 0.255102,\n        \"DISCBD\": 4.76,\n        \"X\": 50.110001,\n        \"Y\": 29.91,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1013.0,\n        \"ORIG_FID\": 31\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10.76378352110245, 11.844431047650394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 33,\n        \"AREA\": 0.087472,\n        \"PERIMETER\": 1.507971,\n        \"COLUMBUS_\": 34.0,\n        \"COLUMBUS_I\": 22.0,\n        \"POLYID\": 33.0,\n        \"NEIG\": 22,\n        \"HOVAL\": 23.6,\n        \"INC\": 9.918,\n        \"CRIME\": 41.968163,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 1.023891,\n        \"DISCBD\": 2.28,\n        \"X\": 44.099998,\n        \"Y\": 30.4,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1022.0,\n        \"ORIG_FID\": 32\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.765288352966309, 11.935583349396865]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 34,\n        \"AREA\": 0.226594,\n        \"PERIMETER\": 2.519132,\n        \"COLUMBUS_\": 35.0,\n        \"COLUMBUS_I\": 44.0,\n        \"POLYID\": 34.0,\n        \"NEIG\": 44,\n        \"HOVAL\": 28.450001,\n        \"INC\": 14.948,\n        \"CRIME\": 23.974028,\n        \"OPEN\": 3.029087,\n        \"PLUMB\": 0.386803,\n        \"DISCBD\": 3.06,\n        \"X\": 30.32,\n        \"Y\": 28.26,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1044.0,\n        \"ORIG_FID\": 33\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.15854012966156, 11.692810153517712]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 35,\n        \"AREA\": 0.175453,\n        \"PERIMETER\": 1.974937,\n        \"COLUMBUS_\": 36.0,\n        \"COLUMBUS_I\": 23.0,\n        \"POLYID\": 35.0,\n        \"NEIG\": 23,\n        \"HOVAL\": 27.0,\n        \"INC\": 12.814,\n        \"CRIME\": 39.175053,\n        \"OPEN\": 4.220401,\n        \"PLUMB\": 0.633675,\n        \"DISCBD\": 2.37,\n        \"X\": 43.700001,\n        \"Y\": 29.18,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1023.0,\n        \"ORIG_FID\": 34\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.668248963690392, 11.692541207168869]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 36,\n        \"AREA\": 0.17813,\n        \"PERIMETER\": 1.790058,\n        \"COLUMBUS_\": 37.0,\n        \"COLUMBUS_I\": 46.0,\n        \"POLYID\": 36.0,\n        \"NEIG\": 46,\n        \"HOVAL\": 36.299999,\n        \"INC\": 18.739,\n        \"CRIME\": 14.305556,\n        \"OPEN\": 6.773331,\n        \"PLUMB\": 0.332349,\n        \"DISCBD\": 4.23,\n        \"X\": 27.27,\n        \"Y\": 28.209999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1046.0,\n        \"ORIG_FID\": 35\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [6.728837547719331, 11.634364976122034]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 37,\n        \"AREA\": 0.121154,\n        \"PERIMETER\": 1.402252,\n        \"COLUMBUS_\": 38.0,\n        \"COLUMBUS_I\": 30.0,\n        \"POLYID\": 37.0,\n        \"NEIG\": 30,\n        \"HOVAL\": 43.299999,\n        \"INC\": 17.017,\n        \"CRIME\": 42.445076,\n        \"OPEN\": 4.839273,\n        \"PLUMB\": 1.230329,\n        \"DISCBD\": 1.08,\n        \"X\": 38.32,\n        \"Y\": 28.82,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1030.0,\n        \"ORIG_FID\": 36\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.912362855719715, 11.630310543083501]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 38,\n        \"AREA\": 0.053881,\n        \"PERIMETER\": 0.934509,\n        \"COLUMBUS_\": 39.0,\n        \"COLUMBUS_I\": 24.0,\n        \"POLYID\": 38.0,\n        \"NEIG\": 24,\n        \"HOVAL\": 22.700001,\n        \"INC\": 11.107,\n        \"CRIME\": 53.710938,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 0.8,\n        \"DISCBD\": 1.58,\n        \"X\": 41.040001,\n        \"Y\": 28.780001,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1024.0,\n        \"ORIG_FID\": 37\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.210527335403754, 11.659838850006437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 39,\n        \"AREA\": 0.174823,\n        \"PERIMETER\": 2.335402,\n        \"COLUMBUS_\": 40.0,\n        \"COLUMBUS_I\": 47.0,\n        \"POLYID\": 39.0,\n        \"NEIG\": 47,\n        \"HOVAL\": 39.599998,\n        \"INC\": 18.476999,\n        \"CRIME\": 19.100863,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 0.314663,\n        \"DISCBD\": 5.53,\n        \"X\": 24.25,\n        \"Y\": 26.690001,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1047.0,\n        \"ORIG_FID\": 38\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [6.221942933898137, 11.402513578924118]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 40,\n        \"AREA\": 0.302908,\n        \"PERIMETER\": 2.285487,\n        \"COLUMBUS_\": 41.0,\n        \"COLUMBUS_I\": 16.0,\n        \"POLYID\": 40.0,\n        \"NEIG\": 16,\n        \"HOVAL\": 61.950001,\n        \"INC\": 29.833,\n        \"CRIME\": 16.241299,\n        \"OPEN\": 6.45131,\n        \"PLUMB\": 0.132743,\n        \"DISCBD\": 4.4,\n        \"X\": 48.439999,\n        \"Y\": 27.93,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1016.0,\n        \"ORIG_FID\": 39\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10.492492572016712, 11.507197282569432]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 41,\n        \"AREA\": 0.137024,\n        \"PERIMETER\": 1.525097,\n        \"COLUMBUS_\": 42.0,\n        \"COLUMBUS_I\": 14.0,\n        \"POLYID\": 41.0,\n        \"NEIG\": 14,\n        \"HOVAL\": 42.099998,\n        \"INC\": 22.207001,\n        \"CRIME\": 18.905146,\n        \"OPEN\": 0.293317,\n        \"PLUMB\": 0.247036,\n        \"DISCBD\": 5.33,\n        \"X\": 51.240002,\n        \"Y\": 27.799999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1014.0,\n        \"ORIG_FID\": 40\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10.953587436376452, 11.479245868637376]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 42,\n        \"AREA\": 0.266541,\n        \"PERIMETER\": 2.176543,\n        \"COLUMBUS_\": 43.0,\n        \"COLUMBUS_I\": 49.0,\n        \"POLYID\": 42.0,\n        \"NEIG\": 49,\n        \"HOVAL\": 44.333,\n        \"INC\": 25.872999,\n        \"CRIME\": 16.49189,\n        \"OPEN\": 1.792993,\n        \"PLUMB\": 0.134439,\n        \"DISCBD\": 3.87,\n        \"X\": 29.02,\n        \"Y\": 26.58,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1049.0,\n        \"ORIG_FID\": 41\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.110050905390898, 11.295438892865233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 43,\n        \"AREA\": 0.060241,\n        \"PERIMETER\": 0.967793,\n        \"COLUMBUS_\": 44.0,\n        \"COLUMBUS_I\": 29.0,\n        \"POLYID\": 43.0,\n        \"NEIG\": 29,\n        \"HOVAL\": 25.700001,\n        \"INC\": 13.38,\n        \"CRIME\": 36.663612,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 0.589226,\n        \"DISCBD\": 1.95,\n        \"X\": 41.09,\n        \"Y\": 27.49,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1029.0,\n        \"ORIG_FID\": 42\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.214330280393483, 11.432771789368283]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 44,\n        \"AREA\": 0.173337,\n        \"PERIMETER\": 1.868044,\n        \"COLUMBUS_\": 45.0,\n        \"COLUMBUS_I\": 25.0,\n        \"POLYID\": 44.0,\n        \"NEIG\": 25,\n        \"HOVAL\": 33.5,\n        \"INC\": 16.961,\n        \"CRIME\": 25.962263,\n        \"OPEN\": 1.463993,\n        \"PLUMB\": 0.329761,\n        \"DISCBD\": 2.67,\n        \"X\": 43.23,\n        \"Y\": 27.309999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1025.0,\n        \"ORIG_FID\": 43\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.641904437882928, 11.391036212262494]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 45,\n        \"AREA\": 0.256431,\n        \"PERIMETER\": 2.193039,\n        \"COLUMBUS_\": 46.0,\n        \"COLUMBUS_I\": 28.0,\n        \"POLYID\": 45.0,\n        \"NEIG\": 28,\n        \"HOVAL\": 27.733,\n        \"INC\": 14.135,\n        \"CRIME\": 29.028488,\n        \"OPEN\": 1.006118,\n        \"PLUMB\": 2.3912,\n        \"DISCBD\": 2.13,\n        \"X\": 39.32,\n        \"Y\": 25.85,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1028.0,\n        \"ORIG_FID\": 44\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.910340473827834, 11.148639078569651]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 46,\n        \"AREA\": 0.124728,\n        \"PERIMETER\": 1.841029,\n        \"COLUMBUS_\": 47.0,\n        \"COLUMBUS_I\": 48.0,\n        \"POLYID\": 46.0,\n        \"NEIG\": 48,\n        \"HOVAL\": 76.099998,\n        \"INC\": 18.323999,\n        \"CRIME\": 16.530533,\n        \"OPEN\": 9.683953,\n        \"PLUMB\": 0.424628,\n        \"DISCBD\": 5.27,\n        \"X\": 25.469999,\n        \"Y\": 25.709999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 0.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1048.0,\n        \"ORIG_FID\": 45\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [6.423385031583335, 11.219238093398321]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 47,\n        \"AREA\": 0.245249,\n        \"PERIMETER\": 2.079986,\n        \"COLUMBUS_\": 48.0,\n        \"COLUMBUS_I\": 15.0,\n        \"POLYID\": 47.0,\n        \"NEIG\": 15,\n        \"HOVAL\": 42.5,\n        \"INC\": 18.950001,\n        \"CRIME\": 27.822861,\n        \"OPEN\": 0.0,\n        \"PLUMB\": 0.268817,\n        \"DISCBD\": 5.57,\n        \"X\": 50.889999,\n        \"Y\": 25.24,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1015.0,\n        \"ORIG_FID\": 46\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [10.935302271773978, 11.010030663664558]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 48,\n        \"AREA\": 0.069762,\n        \"PERIMETER\": 1.102032,\n        \"COLUMBUS_\": 49.0,\n        \"COLUMBUS_I\": 27.0,\n        \"POLYID\": 48.0,\n        \"NEIG\": 27,\n        \"HOVAL\": 26.799999,\n        \"INC\": 11.813,\n        \"CRIME\": 26.645266,\n        \"OPEN\": 4.884389,\n        \"PLUMB\": 1.034807,\n        \"DISCBD\": 2.33,\n        \"X\": 41.209999,\n        \"Y\": 25.9,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 1.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1027.0,\n        \"ORIG_FID\": 47\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.251957402833794, 11.181253873699426]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"OBJECTID\": 49,\n        \"AREA\": 0.205964,\n        \"PERIMETER\": 2.199169,\n        \"COLUMBUS_\": 50.0,\n        \"COLUMBUS_I\": 26.0,\n        \"POLYID\": 49.0,\n        \"NEIG\": 26,\n        \"HOVAL\": 35.799999,\n        \"INC\": 18.796,\n        \"CRIME\": 22.541491,\n        \"OPEN\": 0.259826,\n        \"PLUMB\": 0.901442,\n        \"DISCBD\": 3.03,\n        \"X\": 42.669998,\n        \"Y\": 24.959999,\n        \"NSA\": 0.0,\n        \"NSB\": 0.0,\n        \"EW\": 1.0,\n        \"CP\": 0.0,\n        \"THOUS\": 1000.0,\n        \"NEIGNO\": 1026.0,\n        \"ORIG_FID\": 48\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.610312938690186, 11.030196383904508]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-moran-index/test.ts",
    "content": "import test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { moranIndex } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-moran-index\", (t) => {\n  const pointPath = path.join(__dirname, \"test\", \"in\", \"point.json\");\n  const pointJson = loadJsonFileSync(pointPath);\n\n  const result = moranIndex(pointJson, {\n    inputField: \"CRIME\",\n  });\n\n  t.deepEqual(\n    result,\n    {\n      moranIndex: 0.15665417693293948,\n      expectedMoranIndex: -0.020833333333333332,\n      stdNorm: 0.022208244679327364,\n      zNorm: 7.991964823383264,\n    },\n    \"point clustered pattern\"\n  );\n\n  const columbusPath = path.join(__dirname, \"test\", \"in\", \"columbus.json\");\n  const columbusJson = loadJsonFileSync(columbusPath);\n\n  const result1 = moranIndex(columbusJson, {\n    inputField: \"CRIME\",\n  });\n\n  t.deepEqual(\n    result1,\n    {\n      moranIndex: 0.14834323679862615,\n      expectedMoranIndex: -0.020833333333333332,\n      stdNorm: 0.023841569242427897,\n      zNorm: 7.0958655620241995,\n    },\n    \"polygon clustered pattern\"\n  );\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-moran-index/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/README.md",
    "content": "# @turf/nearest-neighbor-analysis\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## NearestNeighborStatistics\n\nNearest neighbour statistics.\n\nType: [object][1]\n\n### Properties\n\n*   `arealUnits` **[string][2]**&#x20;\n*   `observedMeanDistance` **[number][3]**&#x20;\n*   `expectedMeanDistance` **[number][3]**&#x20;\n*   `numberOfPoints` **[number][3]**&#x20;\n*   `zScore` **[number][3]**&#x20;\n\n## NearestNeighborStudyArea\n\nNearest neighbour study area polygon feature.\n\nType: [object][1]\n\n### Properties\n\n*   `properties` **[GeoJsonProperties][4]**&#x20;\n\n    *   `properties.nearestNeighborAnalysis` **[NearestNeighborStatistics][5]**&#x20;\n\n## nearestNeighborAnalysis\n\nNearest Neighbor Analysis calculates an index based on the average distances\nbetween points in the dataset, thereby providing inference as to whether the\ndata is clustered, dispersed, or randomly distributed within the study area.\n\nIt returns a [Feature][4]<[Polygon][6]> of the study area, with the results of\nthe analysis attached as part of of the `nearestNeighborAnalysis` property\nof the study area's `properties`. The attached\n[*z*-score][7] indicates how many\nstandard deviations above or below the expected mean distance the data's\nobserved mean distance is. The more negative, the more clustered. The more\npositive, the more evenly dispersed. A *z*-score between -2 and 2 indicates\na seemingly random distribution. That is, within *p* of less than 0.05, the\ndistribution appears statistically significantly neither clustered nor\ndispersed.\n\n**Remarks**\n\n*   Though the analysis will work on any [FeatureCollection][8] type, it\n    works best with [Point][9] collections.\n\n*   This analysis is *very* sensitive to the study area provided.\n    If no [Feature][4]<[Polygon][6]> is passed as the study area, the function draws a box\n    around the data, which may distort the findings. This analysis works best\n    with a bounded area of interest within with the data is either clustered,\n    dispersed, or randomly distributed. For example, a city's subway stops may\n    look extremely clustered if the study area is an entire state. On the other\n    hand, they may look rather evenly dispersed if the study area is limited to\n    the city's downtown.\n\n**Bibliography**\n\nPhilip J. Clark and Francis C. Evans, “Distance to Nearest Neighbor as a\nMeasure of Spatial Relationships in Populations,” *Ecology* 35, no. 4\n(1954): 445–453, doi:[10.2307/1931034][10].\n\n### Parameters\n\n*   `dataset` **[FeatureCollection][8]\\<any>** FeatureCollection (pref. of points) to study\n*   `options` **[Object][1]** Optional parameters (optional, default `{}`)\n\n    *   `options.studyArea` **[Feature][4]<[Polygon][6]>?** polygon representing the study area\n    *   `options.properties` **[GeoJsonProperties][4]** properties (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar bbox = [-65, 40, -63, 42];\nvar dataset = turf.randomPoint(100, { bbox: bbox });\nvar nearestNeighborStudyArea = turf.nearestNeighborAnalysis(dataset);\n\n//addToMap\nvar addToMap = [dataset, nearestNeighborStudyArea];\n```\n\nReturns **[NearestNeighborStudyArea][11]** A polygon of the study area or an approximation of one.\n\n[1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[5]: #nearestneighborstatistics\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[7]: https://en.wikipedia.org/wiki/Standard_score\n\n[8]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[9]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[10]: http://doi.org/10.2307/1931034\n\n[11]: #nearestneighborstudyarea\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/nearest-neighbor-analysis\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { nearestNeighborAnalysis } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n * brazil-states-bbox: 5.565ms\n * brazil-states-brazil-itself-as-study-area: 4.516ms\n * random-large-study-area: 13.540ms\n * random-outlier: 6.838ms\n * random: 6.862ms\n * squares: 3.393ms\n */\nconst suite = new Benchmark.Suite(\"turf-nearest-neighbor\");\nglob.sync(path.join(__dirname, \"test\", \"in\", \"*.json\")).forEach((filepath) => {\n  const { name } = path.parse(filepath);\n  const geojson = loadJsonFileSync(filepath);\n  const options = geojson.options;\n  console.time(name);\n  nearestNeighborAnalysis(geojson, options);\n  console.timeEnd(name);\n  suite.add(name, () => nearestNeighborAnalysis(geojson, options));\n});\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/index.ts",
    "content": "import {\n  FeatureCollection,\n  Feature,\n  Point,\n  Polygon,\n  GeoJsonProperties,\n} from \"geojson\";\nimport { area } from \"@turf/area\";\nimport { bbox } from \"@turf/bbox\";\nimport { bboxPolygon } from \"@turf/bbox-polygon\";\nimport { centroid } from \"@turf/centroid\";\nimport { distance } from \"@turf/distance\";\nimport { nearestPoint } from \"@turf/nearest-point\";\nimport { featureEach } from \"@turf/meta\";\nimport {\n  convertArea,\n  featureCollection,\n  Units,\n  AreaUnits,\n} from \"@turf/helpers\";\n\n/**\n * Nearest neighbour statistics.\n *\n * @typedef {object} NearestNeighborStatistics\n * @property {(Units & AreaUnits)} units\n * @property {string} arealUnits\n * @property {number} observedMeanDistance\n * @property {number} expectedMeanDistance\n * @property {number} numberOfPoints\n * @property {number} zScore\n */\ninterface NearestNeighborStatistics {\n  units: Units & AreaUnits;\n  arealUnits: string;\n  observedMeanDistance: number;\n  expectedMeanDistance: number;\n  numberOfPoints: number;\n  zScore: number;\n}\n\n/**\n * Nearest neighbour study area polygon feature.\n *\n * @typedef {object} NearestNeighborStudyArea\n * @extends Feature<Polygon>\n * @property {GeoJsonProperties} properties\n * @property {NearestNeighborStatistics} properties.nearestNeighborAnalysis\n */\ninterface NearestNeighborStudyArea extends Feature<Polygon> {\n  properties: {\n    nearestNeighborAnalysis: NearestNeighborStatistics;\n    [key: string]: any;\n  };\n}\n\n/**\n * Nearest Neighbor Analysis calculates an index based on the average distances\n * between points in the dataset, thereby providing inference as to whether the\n * data is clustered, dispersed, or randomly distributed within the study area.\n *\n * It returns a {@link Feature}<{@link Polygon}> of the study area, with the results of\n * the analysis attached as part of of the `nearestNeighborAnalysis` property\n * of the study area's `properties`. The attached\n * [_z_-score](https://en.wikipedia.org/wiki/Standard_score) indicates how many\n * standard deviations above or below the expected mean distance the data's\n * observed mean distance is. The more negative, the more clustered. The more\n * positive, the more evenly dispersed. A _z_-score between -2 and 2 indicates\n * a seemingly random distribution. That is, within _p_ of less than 0.05, the\n * distribution appears statistically significantly neither clustered nor\n * dispersed.\n *\n * **Remarks**\n *\n * - Though the analysis will work on any {@link FeatureCollection} type, it\n * works best with {@link Point} collections.\n *\n * - This analysis is _very_ sensitive to the study area provided.\n * If no {@link Feature}<{@link Polygon}> is passed as the study area, the function draws a box\n * around the data, which may distort the findings. This analysis works best\n * with a bounded area of interest within with the data is either clustered,\n * dispersed, or randomly distributed. For example, a city's subway stops may\n * look extremely clustered if the study area is an entire state. On the other\n * hand, they may look rather evenly dispersed if the study area is limited to\n * the city's downtown.\n *\n * **Bibliography**\n *\n * Philip J. Clark and Francis C. Evans, “Distance to Nearest Neighbor as a\n * Measure of Spatial Relationships in Populations,” _Ecology_ 35, no. 4\n * (1954): 445–453, doi:[10.2307/1931034](http://doi.org/10.2307/1931034).\n *\n * @function\n * @param {FeatureCollection<any>} dataset FeatureCollection (pref. of points) to study\n * @param {Object} [options={}] Optional parameters\n * @param {Feature<Polygon>} [options.studyArea] polygon representing the study area\n * @param {Units & AreaUnits} [options.units='kilometers'] unit of measurement for distances and, squared, area.\n * @param {GeoJsonProperties} [options.properties={}] properties\n * @returns {NearestNeighborStudyArea}  A polygon of the study area or an approximation of one.\n * @example\n * var bbox = [-65, 40, -63, 42];\n * var dataset = turf.randomPoint(100, { bbox: bbox });\n * var nearestNeighborStudyArea = turf.nearestNeighborAnalysis(dataset);\n *\n * //addToMap\n * var addToMap = [dataset, nearestNeighborStudyArea];\n */\nfunction nearestNeighborAnalysis(\n  dataset: FeatureCollection<any>,\n  options?: {\n    studyArea?: Feature<Polygon>;\n    units?: Units & AreaUnits;\n    properties?: GeoJsonProperties;\n  }\n): NearestNeighborStudyArea {\n  // Optional params\n  options = options || {};\n  const studyArea = options.studyArea || bboxPolygon(bbox(dataset));\n  const properties = options.properties || {};\n  const units = options.units || \"kilometers\";\n\n  const features: Array<Feature<Point>> = [];\n  featureEach(dataset, (feature) => {\n    features.push(centroid(feature));\n  });\n  const n = features.length;\n  const observedMeanDistance =\n    features\n      .map((feature, index) => {\n        const otherFeatures = featureCollection<Point>(\n          features.filter((f, i) => {\n            return i !== index;\n          })\n        );\n        // Have to add the ! to make typescript validation pass\n        // see https://stackoverflow.com/a/40350534/1979085\n        return distance(\n          feature,\n          nearestPoint(feature, otherFeatures).geometry!.coordinates,\n          { units }\n        );\n      })\n      .reduce((sum, value) => {\n        return sum + value;\n      }, 0) / n;\n\n  const populationDensity = n / convertArea(area(studyArea), \"meters\", units);\n  const expectedMeanDistance = 1 / (2 * Math.sqrt(populationDensity));\n  const variance = 0.26136 / Math.sqrt(n * populationDensity);\n  properties.nearestNeighborAnalysis = {\n    units: units,\n    arealUnits: units + \"²\",\n    observedMeanDistance: observedMeanDistance,\n    expectedMeanDistance: expectedMeanDistance,\n    nearestNeighborIndex: observedMeanDistance / expectedMeanDistance,\n    numberOfPoints: n,\n    zScore: (observedMeanDistance - expectedMeanDistance) / variance,\n  };\n  studyArea.properties = properties;\n\n  return studyArea as NearestNeighborStudyArea;\n}\n\nexport {\n  nearestNeighborAnalysis,\n  NearestNeighborStatistics,\n  NearestNeighborStudyArea,\n};\nexport default nearestNeighborAnalysis;\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/package.json",
    "content": "{\n  \"name\": \"@turf/nearest-neighbor-analysis\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Calculates an index based the average distances between points in the dataset, thereby providing inference as to whether the data is clustered, dispersed, or randomly distributed within the study area.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Moacir P. de Sá Pereira <@muziejus>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"nearest-neighbor\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/area\": \"workspace:*\",\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/bbox-polygon\": \"workspace:*\",\n    \"@turf/centroid\": \"workspace:*\",\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@turf/nearest-point\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/test/in/brazil-states-bbox.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"options\": {\n    \"properties\": {\n      \"fill-opacity\": 0,\n      \"stroke-width\": 5,\n      \"stroke\": \"#a00\"\n    }\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.88208407352717, -7.057130117724942],\n            [-66.82171046898179, -9.881279559543092],\n            [-69.1474805975379, -11.210291061575166],\n            [-70.725681756201, -10.794974967190143],\n            [-70.76721336563949, -9.341368636842564],\n            [-72.9268570564416, -9.715153121789085],\n            [-73.88208407352717, -7.057130117724942]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.88208407352717, -7.057130117724942],\n            [-72.8022622281261, -5.18820769299234],\n            [-69.97811278630795, -4.232980675906789],\n            [-69.47973347304593, -1.07657835858062],\n            [-69.85351795799244, 1.7475710832375322],\n            [-67.23702656336681, 2.07982395874555],\n            [-65.49269896694972, 0.7923440661519807],\n            [-63.5407133233401, 2.204418787061056],\n            [-61.713322508046005, -1.325768015211633],\n            [-58.97223628510486, 0.37702797176695846],\n            [-56.480339718794724, -2.4055898606126904],\n            [-58.307730534088826, -7.098661727163441],\n            [-58.515388581281336, -8.718394495265027],\n            [-61.630259289169004, -8.92605254245754],\n            [-63.62377654221711, -7.929293915933486],\n            [-66.82171046898179, -9.881279559543092],\n            [-73.88208407352717, -7.057130117724942]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-63.5407133233401, 2.204418787061056],\n            [-64.57900355930266, 4.280999258986167],\n            [-62.128638602431025, 4.239467649547665],\n            [-60.17665295882142, 5.402352713825728],\n            [-59.30448916061288, 3.7826199457241407],\n            [-59.96899491162891, 2.121355568184052],\n            [-58.930704675666355, 1.2491917699755053],\n            [-58.97223628510486, 0.37702797176695846],\n            [-61.713322508046005, -1.325768015211633],\n            [-63.5407133233401, 2.204418787061056]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.930704675666355, 1.2491917699755053],\n            [-56.85412420374125, 2.245950396499558],\n            [-54.77754373181614, 2.2874820059380605],\n            [-52.1610523371905, -1.325768015211633],\n            [-50.58285117852741, 0.4600911906439631],\n            [-45.88977931197666, -1.2427047963346283],\n            [-48.34014426884829, -5.2297393024308425],\n            [-50.333661521896396, -9.798216340666087],\n            [-56.93718742261825, -9.258305417965559],\n            [-58.307730534088826, -7.098661727163441],\n            [-56.480339718794724, -2.4055898606126904],\n            [-58.97223628510486, 0.37702797176695846],\n            [-58.930704675666355, 1.2491917699755053]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-54.77754373181614, 2.2874820059380605],\n            [-52.867089697645035, 2.329013615376563],\n            [-51.45501497673596, 4.364062477863172],\n            [-49.79375059919587, 1.083065332221496],\n            [-50.58285117852741, 0.4600911906439631],\n            [-52.1610523371905, -1.325768015211633],\n            [-54.77754373181614, 2.2874820059380605]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.88977931197666, -1.2427047963346283],\n            [-41.695086758687935, -2.9455007833132187],\n            [-42.941035041843, -6.724877242216922],\n            [-45.88977931197666, -7.846230697056481],\n            [-46.47122184411569, -9.964342778420097],\n            [-48.34014426884829, -5.2297393024308425],\n            [-45.88977931197666, -1.2427047963346283]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-41.695086758687935, -2.9455007833132187],\n            [-41.15517583598741, -2.9455007833132187],\n            [-40.24148042834036, -7.472446212109962],\n            [-42.60878216633498, -9.632089902912078],\n            [-43.68860401173604, -9.50749507459657],\n            [-44.02085688724406, -10.753443357751639],\n            [-46.47122184411569, -9.964342778420097],\n            [-45.88977931197666, -7.846230697056481],\n            [-42.941035041843, -6.724877242216922],\n            [-41.695086758687935, -2.9455007833132187]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40.24148042834036, -7.472446212109962],\n            [-41.15517583598741, -2.9455007833132187],\n            [-39.36931663013181, -2.9455007833132187],\n            [-37.2927361582067, -4.772891598607317],\n            [-38.78787409799278, -7.721635868740976],\n            [-40.24148042834036, -7.472446212109962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.11592319811732, -6.396399371764385],\n            [-37.2927361582067, -4.772891598607317],\n            [-35.54840856178961, -5.18820769299234],\n            [-34.96696602965057, -6.558750804462913],\n            [-38.11592319811732, -6.396399371764385]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-34.96696602965057, -6.558750804462913],\n            [-34.71777637301956, -7.5139778215484645],\n            [-36.91895167326018, -8.136951963125998],\n            [-38.78787409799278, -7.721635868740976],\n            [-38.11592319811732, -6.396399371764385],\n            [-34.96696602965057, -6.558750804462913]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-34.71777637301956, -7.5139778215484645],\n            [-35.09156085796608, -9.009115761334545],\n            [-38.16489995641525, -9.216773808527055],\n            [-39.36931663013181, -8.593799666949522],\n            [-40.57373330384838, -9.590558293473578],\n            [-41.47583362752317, -8.598522814873235],\n            [-40.24148042834036, -7.472446212109962],\n            [-38.78787409799278, -7.721635868740976],\n            [-36.91895167326018, -8.136951963125998],\n            [-34.71777637301956, -7.5139778215484645]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.16489995641525, -9.216773808527055],\n            [-35.09156085796608, -9.009115761334545],\n            [-36.420572359998154, -10.545785310559129],\n            [-38.16489995641525, -9.216773808527055]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-36.420572359998154, -10.545785310559129],\n            [-37.54192581483771, -11.75020198427569],\n            [-38.16489995641525, -9.216773808527055],\n            [-36.420572359998154, -10.545785310559129]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-37.54192581483771, -11.75020198427569],\n            [-38.99553214518529, -13.120745095746265],\n            [-38.62174766023877, -15.737236490371906],\n            [-39.452379849008814, -18.312196275559042],\n            [-40.61526491328688, -17.85534857173552],\n            [-40.03382238114784, -15.944894537564416],\n            [-44.270046543875075, -14.200566941147322],\n            [-45.88977931197666, -15.155793958232874],\n            [-46.47122184411569, -11.127227842698158],\n            [-45.608300504540644, -10.242232701334094],\n            [-44.02085688724406, -10.753443357751639],\n            [-43.68860401173604, -9.50749507459657],\n            [-42.60878216633498, -9.632089902912078],\n            [-41.47583362752317, -8.598522814873235],\n            [-40.57373330384838, -9.590558293473578],\n            [-39.36931663013181, -8.593799666949522],\n            [-38.16489995641525, -9.216773808527055],\n            [-37.54192581483771, -11.75020198427569]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-48.34014426884829, -5.2297393024308425],\n            [-46.47122184411569, -9.964342778420097],\n            [-45.608300504540644, -10.242232701334094],\n            [-46.47122184411569, -11.127227842698158],\n            [-46.229564521023654, -12.801567866978697],\n            [-47.634106908393754, -13.36993475237728],\n            [-50.458256350211904, -12.830023829676751],\n            [-50.333661521896396, -9.798216340666087],\n            [-48.34014426884829, -5.2297393024308425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-66.82171046898179, -9.881279559543092],\n            [-63.62377654221711, -7.929293915933486],\n            [-61.630259289169004, -8.92605254245754],\n            [-61.505664460853495, -10.961101404944149],\n            [-59.8028684738749, -11.251822671013667],\n            [-60.55043744376795, -13.743719237323798],\n            [-65.03585126312619, -11.9163284220297],\n            [-65.2435093103187, -9.839747950104591],\n            [-66.82171046898179, -9.881279559543092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-61.630259289169004, -8.92605254245754],\n            [-58.515388581281336, -8.718394495265027],\n            [-58.307730534088826, -7.098661727163441],\n            [-56.93718742261825, -9.258305417965559],\n            [-50.333661521896396, -9.798216340666087],\n            [-50.458256350211904, -12.830023829676751],\n            [-52.825558088206535, -16.15255258475693],\n            [-53.157810963714546, -18.104538228366533],\n            [-57.60169317363429, -17.772285352858514],\n            [-58.349262143527326, -17.64769052454301],\n            [-58.39079375296583, -16.31867902251094],\n            [-60.17665295882142, -16.277147413072434],\n            [-60.55043744376795, -13.743719237323798],\n            [-59.8028684738749, -11.251822671013667],\n            [-61.505664460853495, -10.961101404944149],\n            [-61.630259289169004, -8.92605254245754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-57.60169317363429, -17.772285352858514],\n            [-53.157810963714546, -18.104538228366533],\n            [-51.12276210122794, -19.14282846432909],\n            [-50.99816727291243, -20.181118700291645],\n            [-54.1961011996771, -24.04355837807235],\n            [-55.40051787339367, -23.877431940318342],\n            [-55.815833967778694, -22.340762391093758],\n            [-57.97547765858081, -22.008509515585743],\n            [-57.60169317363429, -17.772285352858514]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-47.21879081400873, -15.488046833740892],\n            [-47.21879081400873, -16.111020975318425],\n            [-48.38167587828679, -16.069489365879924],\n            [-48.34014426884829, -15.363452005425387],\n            [-47.21879081400873, -15.488046833740892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-51.12276210122794, -19.14282846432909],\n            [-53.157810963714546, -18.104538228366533],\n            [-52.825558088206535, -16.15255258475693],\n            [-50.458256350211904, -12.830023829676751],\n            [-47.634106908393754, -13.36993475237728],\n            [-46.229564521023654, -12.801567866978697],\n            [-45.88977931197666, -15.155793958232874],\n            [-47.21879081400873, -15.737236490371906],\n            [-47.21879081400873, -15.488046833740892],\n            [-48.34014426884829, -15.363452005425387],\n            [-48.38167587828679, -16.069489365879924],\n            [-47.21879081400873, -16.111020975318425],\n            [-47.343385642324236, -18.395259494436047],\n            [-49.08771323874133, -18.43679110387455],\n            [-51.12276210122794, -19.14282846432909]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50.99816727291243, -20.181118700291645],\n            [-51.12276210122794, -19.14282846432909],\n            [-49.08771323874133, -18.43679110387455],\n            [-47.343385642324236, -18.395259494436047],\n            [-47.21879081400873, -16.111020975318425],\n            [-47.21879081400873, -15.737236490371906],\n            [-45.88977931197666, -15.155793958232874],\n            [-44.270046543875075, -14.200566941147322],\n            [-40.03382238114784, -15.944894537564416],\n            [-40.61526491328688, -17.85534857173552],\n            [-41.861213196441945, -20.67949801355367],\n            [-42.857971822966, -22.050041125024244],\n            [-46.30509540636168, -22.839141704355786],\n            [-47.343385642324236, -20.181118700291645],\n            [-50.99816727291243, -20.181118700291645]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40.61526491328688, -17.85534857173552],\n            [-39.452379849008814, -18.312196275559042],\n            [-40.03382238114784, -20.014992262537636],\n            [-40.90598617935639, -21.302472155131206],\n            [-41.861213196441945, -20.67949801355367],\n            [-40.61526491328688, -17.85534857173552]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40.90598617935639, -21.302472155131206],\n            [-41.861213196441945, -23.046799751548296],\n            [-44.436172981629085, -23.29598940817931],\n            [-44.61148792994024, -22.451448426620757],\n            [-42.857971822966, -22.050041125024244],\n            [-41.861213196441945, -20.67949801355367],\n            [-40.90598617935639, -21.302472155131206]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-44.436172981629085, -23.29598940817931],\n            [-48.21554944053278, -25.206443442350412],\n            [-49.33690289537235, -24.666532519649884],\n            [-49.83528220863437, -22.88067331379429],\n            [-52.968303409301065, -22.560633774111686],\n            [-50.99816727291243, -20.181118700291645],\n            [-47.343385642324236, -20.181118700291645],\n            [-46.30509540636168, -22.839141704355786],\n            [-44.61148792994024, -22.451448426620757],\n            [-44.436172981629085, -23.29598940817931]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-48.21554944053278, -25.206443442350412],\n            [-48.5062707066023, -26.12013884999746],\n            [-51.28888853898195, -26.410860116066978],\n            [-53.57312705809957, -26.203202068874468],\n            [-54.1961011996771, -24.04355837807235],\n            [-52.968303409301065, -22.560633774111686],\n            [-49.83528220863437, -22.88067331379429],\n            [-49.33690289537235, -24.666532519649884],\n            [-48.21554944053278, -25.206443442350412]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.57312705809957, -26.203202068874468],\n            [-51.28888853898195, -26.410860116066978],\n            [-48.5062707066023, -26.12013884999746],\n            [-48.29861265940979, -27.94752966529156],\n            [-49.75221898975737, -29.27654116732363],\n            [-51.57960980505146, -27.449150352029534],\n            [-53.86384832416908, -27.158429085960016],\n            [-53.57312705809957, -26.203202068874468]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.86384832416908, -27.158429085960016],\n            [-51.57960980505146, -27.449150352029534],\n            [-49.75221898975737, -29.27654116732363],\n            [-50.499787959650405, -31.228526810933232],\n            [-52.825558088206535, -33.263575673419844],\n            [-57.43556673588028, -30.231768184409184],\n            [-55.77430235834019, -28.404377369115082],\n            [-53.86384832416908, -27.158429085960016]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/test/in/brazil-states-brazil-itself-as-study-area.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"options\": {\n    \"properties\": {\n      \"fill-opacity\": 0,\n      \"stroke-width\": 5,\n      \"stroke\": \"#a00\"\n    },\n    \"studyArea\": {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-66.82171046898179, -9.881279559543092],\n            [-69.1474805975379, -11.210291061575166],\n            [-70.725681756201, -10.794974967190143],\n            [-70.76721336563949, -9.341368636842564],\n            [-72.9268570564416, -9.715153121789085],\n            [-73.88208407352717, -7.057130117724942],\n            [-72.8022622281261, -5.18820769299234],\n            [-69.97811278630795, -4.232980675906789],\n            [-69.47973347304593, -1.07657835858062],\n            [-69.85351795799244, 1.7475710832375322],\n            [-67.23702656336681, 2.07982395874555],\n            [-65.49269896694972, 0.7923440661519807],\n            [-63.5407133233401, 2.204418787061056],\n            [-64.57900355930266, 4.280999258986167],\n            [-62.128638602431025, 4.239467649547665],\n            [-60.17665295882142, 5.402352713825728],\n            [-59.30448916061288, 3.7826199457241407],\n            [-59.96899491162891, 2.121355568184052],\n            [-58.930704675666355, 1.2491917699755053],\n            [-56.85412420374125, 2.245950396499558],\n            [-54.77754373181614, 2.2874820059380605],\n            [-52.867089697645035, 2.329013615376563],\n            [-51.45501497673596, 4.364062477863172],\n            [-49.79375059919587, 1.083065332221496],\n            [-50.58285117852741, 0.4600911906439631],\n            [-45.88977931197666, -1.2427047963346283],\n            [-41.695086758687935, -2.9455007833132187],\n            [-41.15517583598741, -2.9455007833132187],\n            [-39.36931663013181, -2.9455007833132187],\n            [-37.2927361582067, -4.772891598607317],\n            [-35.54840856178961, -5.18820769299234],\n            [-34.96696602965057, -6.558750804462913],\n            [-34.71777637301956, -7.5139778215484645],\n            [-35.09156085796608, -9.009115761334545],\n            [-36.420572359998154, -10.545785310559129],\n            [-37.54192581483771, -11.75020198427569],\n            [-38.99553214518529, -13.120745095746265],\n            [-38.62174766023877, -15.737236490371906],\n            [-39.452379849008814, -18.312196275559042],\n            [-40.03382238114784, -20.014992262537636],\n            [-40.90598617935639, -21.302472155131206],\n            [-41.861213196441945, -23.046799751548296],\n            [-44.436172981629085, -23.29598940817931],\n            [-48.21554944053278, -25.206443442350412],\n            [-48.5062707066023, -26.12013884999746],\n            [-48.29861265940979, -27.94752966529156],\n            [-49.75221898975737, -29.27654116732363],\n            [-50.499787959650405, -31.228526810933232],\n            [-52.825558088206535, -33.263575673419844],\n            [-57.43556673588028, -30.231768184409184],\n            [-55.77430235834019, -28.404377369115082],\n            [-53.86384832416908, -27.158429085960016],\n            [-53.57312705809957, -26.203202068874468],\n            [-54.1961011996771, -24.04355837807235],\n            [-55.40051787339367, -23.877431940318342],\n            [-55.815833967778694, -22.340762391093758],\n            [-57.97547765858081, -22.008509515585743],\n            [-57.60169317363429, -17.772285352858514],\n            [-58.349262143527326, -17.64769052454301],\n            [-58.39079375296583, -16.31867902251094],\n            [-60.17665295882142, -16.277147413072434],\n            [-60.55043744376795, -13.743719237323798],\n            [-65.03585126312619, -11.9163284220297],\n            [-65.2435093103187, -9.839747950104591],\n            [-66.82171046898179, -9.881279559543092]\n          ]\n        ]\n      }\n    }\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.88208407352717, -7.057130117724942],\n            [-66.82171046898179, -9.881279559543092],\n            [-69.1474805975379, -11.210291061575166],\n            [-70.725681756201, -10.794974967190143],\n            [-70.76721336563949, -9.341368636842564],\n            [-72.9268570564416, -9.715153121789085],\n            [-73.88208407352717, -7.057130117724942]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.88208407352717, -7.057130117724942],\n            [-72.8022622281261, -5.18820769299234],\n            [-69.97811278630795, -4.232980675906789],\n            [-69.47973347304593, -1.07657835858062],\n            [-69.85351795799244, 1.7475710832375322],\n            [-67.23702656336681, 2.07982395874555],\n            [-65.49269896694972, 0.7923440661519807],\n            [-63.5407133233401, 2.204418787061056],\n            [-61.713322508046005, -1.325768015211633],\n            [-58.97223628510486, 0.37702797176695846],\n            [-56.480339718794724, -2.4055898606126904],\n            [-58.307730534088826, -7.098661727163441],\n            [-58.515388581281336, -8.718394495265027],\n            [-61.630259289169004, -8.92605254245754],\n            [-63.62377654221711, -7.929293915933486],\n            [-66.82171046898179, -9.881279559543092],\n            [-73.88208407352717, -7.057130117724942]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-63.5407133233401, 2.204418787061056],\n            [-64.57900355930266, 4.280999258986167],\n            [-62.128638602431025, 4.239467649547665],\n            [-60.17665295882142, 5.402352713825728],\n            [-59.30448916061288, 3.7826199457241407],\n            [-59.96899491162891, 2.121355568184052],\n            [-58.930704675666355, 1.2491917699755053],\n            [-58.97223628510486, 0.37702797176695846],\n            [-61.713322508046005, -1.325768015211633],\n            [-63.5407133233401, 2.204418787061056]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.930704675666355, 1.2491917699755053],\n            [-56.85412420374125, 2.245950396499558],\n            [-54.77754373181614, 2.2874820059380605],\n            [-52.1610523371905, -1.325768015211633],\n            [-50.58285117852741, 0.4600911906439631],\n            [-45.88977931197666, -1.2427047963346283],\n            [-48.34014426884829, -5.2297393024308425],\n            [-50.333661521896396, -9.798216340666087],\n            [-56.93718742261825, -9.258305417965559],\n            [-58.307730534088826, -7.098661727163441],\n            [-56.480339718794724, -2.4055898606126904],\n            [-58.97223628510486, 0.37702797176695846],\n            [-58.930704675666355, 1.2491917699755053]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-54.77754373181614, 2.2874820059380605],\n            [-52.867089697645035, 2.329013615376563],\n            [-51.45501497673596, 4.364062477863172],\n            [-49.79375059919587, 1.083065332221496],\n            [-50.58285117852741, 0.4600911906439631],\n            [-52.1610523371905, -1.325768015211633],\n            [-54.77754373181614, 2.2874820059380605]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.88977931197666, -1.2427047963346283],\n            [-41.695086758687935, -2.9455007833132187],\n            [-42.941035041843, -6.724877242216922],\n            [-45.88977931197666, -7.846230697056481],\n            [-46.47122184411569, -9.964342778420097],\n            [-48.34014426884829, -5.2297393024308425],\n            [-45.88977931197666, -1.2427047963346283]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-41.695086758687935, -2.9455007833132187],\n            [-41.15517583598741, -2.9455007833132187],\n            [-40.24148042834036, -7.472446212109962],\n            [-42.60878216633498, -9.632089902912078],\n            [-43.68860401173604, -9.50749507459657],\n            [-44.02085688724406, -10.753443357751639],\n            [-46.47122184411569, -9.964342778420097],\n            [-45.88977931197666, -7.846230697056481],\n            [-42.941035041843, -6.724877242216922],\n            [-41.695086758687935, -2.9455007833132187]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40.24148042834036, -7.472446212109962],\n            [-41.15517583598741, -2.9455007833132187],\n            [-39.36931663013181, -2.9455007833132187],\n            [-37.2927361582067, -4.772891598607317],\n            [-38.78787409799278, -7.721635868740976],\n            [-40.24148042834036, -7.472446212109962]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.11592319811732, -6.396399371764385],\n            [-37.2927361582067, -4.772891598607317],\n            [-35.54840856178961, -5.18820769299234],\n            [-34.96696602965057, -6.558750804462913],\n            [-38.11592319811732, -6.396399371764385]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-34.96696602965057, -6.558750804462913],\n            [-34.71777637301956, -7.5139778215484645],\n            [-36.91895167326018, -8.136951963125998],\n            [-38.78787409799278, -7.721635868740976],\n            [-38.11592319811732, -6.396399371764385],\n            [-34.96696602965057, -6.558750804462913]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-34.71777637301956, -7.5139778215484645],\n            [-35.09156085796608, -9.009115761334545],\n            [-38.16489995641525, -9.216773808527055],\n            [-39.36931663013181, -8.593799666949522],\n            [-40.57373330384838, -9.590558293473578],\n            [-41.47583362752317, -8.598522814873235],\n            [-40.24148042834036, -7.472446212109962],\n            [-38.78787409799278, -7.721635868740976],\n            [-36.91895167326018, -8.136951963125998],\n            [-34.71777637301956, -7.5139778215484645]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.16489995641525, -9.216773808527055],\n            [-35.09156085796608, -9.009115761334545],\n            [-36.420572359998154, -10.545785310559129],\n            [-38.16489995641525, -9.216773808527055]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-36.420572359998154, -10.545785310559129],\n            [-37.54192581483771, -11.75020198427569],\n            [-38.16489995641525, -9.216773808527055],\n            [-36.420572359998154, -10.545785310559129]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-37.54192581483771, -11.75020198427569],\n            [-38.99553214518529, -13.120745095746265],\n            [-38.62174766023877, -15.737236490371906],\n            [-39.452379849008814, -18.312196275559042],\n            [-40.61526491328688, -17.85534857173552],\n            [-40.03382238114784, -15.944894537564416],\n            [-44.270046543875075, -14.200566941147322],\n            [-45.88977931197666, -15.155793958232874],\n            [-46.47122184411569, -11.127227842698158],\n            [-45.608300504540644, -10.242232701334094],\n            [-44.02085688724406, -10.753443357751639],\n            [-43.68860401173604, -9.50749507459657],\n            [-42.60878216633498, -9.632089902912078],\n            [-41.47583362752317, -8.598522814873235],\n            [-40.57373330384838, -9.590558293473578],\n            [-39.36931663013181, -8.593799666949522],\n            [-38.16489995641525, -9.216773808527055],\n            [-37.54192581483771, -11.75020198427569]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-48.34014426884829, -5.2297393024308425],\n            [-46.47122184411569, -9.964342778420097],\n            [-45.608300504540644, -10.242232701334094],\n            [-46.47122184411569, -11.127227842698158],\n            [-46.229564521023654, -12.801567866978697],\n            [-47.634106908393754, -13.36993475237728],\n            [-50.458256350211904, -12.830023829676751],\n            [-50.333661521896396, -9.798216340666087],\n            [-48.34014426884829, -5.2297393024308425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-66.82171046898179, -9.881279559543092],\n            [-63.62377654221711, -7.929293915933486],\n            [-61.630259289169004, -8.92605254245754],\n            [-61.505664460853495, -10.961101404944149],\n            [-59.8028684738749, -11.251822671013667],\n            [-60.55043744376795, -13.743719237323798],\n            [-65.03585126312619, -11.9163284220297],\n            [-65.2435093103187, -9.839747950104591],\n            [-66.82171046898179, -9.881279559543092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-61.630259289169004, -8.92605254245754],\n            [-58.515388581281336, -8.718394495265027],\n            [-58.307730534088826, -7.098661727163441],\n            [-56.93718742261825, -9.258305417965559],\n            [-50.333661521896396, -9.798216340666087],\n            [-50.458256350211904, -12.830023829676751],\n            [-52.825558088206535, -16.15255258475693],\n            [-53.157810963714546, -18.104538228366533],\n            [-57.60169317363429, -17.772285352858514],\n            [-58.349262143527326, -17.64769052454301],\n            [-58.39079375296583, -16.31867902251094],\n            [-60.17665295882142, -16.277147413072434],\n            [-60.55043744376795, -13.743719237323798],\n            [-59.8028684738749, -11.251822671013667],\n            [-61.505664460853495, -10.961101404944149],\n            [-61.630259289169004, -8.92605254245754]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-57.60169317363429, -17.772285352858514],\n            [-53.157810963714546, -18.104538228366533],\n            [-51.12276210122794, -19.14282846432909],\n            [-50.99816727291243, -20.181118700291645],\n            [-54.1961011996771, -24.04355837807235],\n            [-55.40051787339367, -23.877431940318342],\n            [-55.815833967778694, -22.340762391093758],\n            [-57.97547765858081, -22.008509515585743],\n            [-57.60169317363429, -17.772285352858514]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-47.21879081400873, -15.488046833740892],\n            [-47.21879081400873, -16.111020975318425],\n            [-48.38167587828679, -16.069489365879924],\n            [-48.34014426884829, -15.363452005425387],\n            [-47.21879081400873, -15.488046833740892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-51.12276210122794, -19.14282846432909],\n            [-53.157810963714546, -18.104538228366533],\n            [-52.825558088206535, -16.15255258475693],\n            [-50.458256350211904, -12.830023829676751],\n            [-47.634106908393754, -13.36993475237728],\n            [-46.229564521023654, -12.801567866978697],\n            [-45.88977931197666, -15.155793958232874],\n            [-47.21879081400873, -15.737236490371906],\n            [-47.21879081400873, -15.488046833740892],\n            [-48.34014426884829, -15.363452005425387],\n            [-48.38167587828679, -16.069489365879924],\n            [-47.21879081400873, -16.111020975318425],\n            [-47.343385642324236, -18.395259494436047],\n            [-49.08771323874133, -18.43679110387455],\n            [-51.12276210122794, -19.14282846432909]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50.99816727291243, -20.181118700291645],\n            [-51.12276210122794, -19.14282846432909],\n            [-49.08771323874133, -18.43679110387455],\n            [-47.343385642324236, -18.395259494436047],\n            [-47.21879081400873, -16.111020975318425],\n            [-47.21879081400873, -15.737236490371906],\n            [-45.88977931197666, -15.155793958232874],\n            [-44.270046543875075, -14.200566941147322],\n            [-40.03382238114784, -15.944894537564416],\n            [-40.61526491328688, -17.85534857173552],\n            [-41.861213196441945, -20.67949801355367],\n            [-42.857971822966, -22.050041125024244],\n            [-46.30509540636168, -22.839141704355786],\n            [-47.343385642324236, -20.181118700291645],\n            [-50.99816727291243, -20.181118700291645]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40.61526491328688, -17.85534857173552],\n            [-39.452379849008814, -18.312196275559042],\n            [-40.03382238114784, -20.014992262537636],\n            [-40.90598617935639, -21.302472155131206],\n            [-41.861213196441945, -20.67949801355367],\n            [-40.61526491328688, -17.85534857173552]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40.90598617935639, -21.302472155131206],\n            [-41.861213196441945, -23.046799751548296],\n            [-44.436172981629085, -23.29598940817931],\n            [-44.61148792994024, -22.451448426620757],\n            [-42.857971822966, -22.050041125024244],\n            [-41.861213196441945, -20.67949801355367],\n            [-40.90598617935639, -21.302472155131206]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-44.436172981629085, -23.29598940817931],\n            [-48.21554944053278, -25.206443442350412],\n            [-49.33690289537235, -24.666532519649884],\n            [-49.83528220863437, -22.88067331379429],\n            [-52.968303409301065, -22.560633774111686],\n            [-50.99816727291243, -20.181118700291645],\n            [-47.343385642324236, -20.181118700291645],\n            [-46.30509540636168, -22.839141704355786],\n            [-44.61148792994024, -22.451448426620757],\n            [-44.436172981629085, -23.29598940817931]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-48.21554944053278, -25.206443442350412],\n            [-48.5062707066023, -26.12013884999746],\n            [-51.28888853898195, -26.410860116066978],\n            [-53.57312705809957, -26.203202068874468],\n            [-54.1961011996771, -24.04355837807235],\n            [-52.968303409301065, -22.560633774111686],\n            [-49.83528220863437, -22.88067331379429],\n            [-49.33690289537235, -24.666532519649884],\n            [-48.21554944053278, -25.206443442350412]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.57312705809957, -26.203202068874468],\n            [-51.28888853898195, -26.410860116066978],\n            [-48.5062707066023, -26.12013884999746],\n            [-48.29861265940979, -27.94752966529156],\n            [-49.75221898975737, -29.27654116732363],\n            [-51.57960980505146, -27.449150352029534],\n            [-53.86384832416908, -27.158429085960016],\n            [-53.57312705809957, -26.203202068874468]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.86384832416908, -27.158429085960016],\n            [-51.57960980505146, -27.449150352029534],\n            [-49.75221898975737, -29.27654116732363],\n            [-50.499787959650405, -31.228526810933232],\n            [-52.825558088206535, -33.263575673419844],\n            [-57.43556673588028, -30.231768184409184],\n            [-55.77430235834019, -28.404377369115082],\n            [-53.86384832416908, -27.158429085960016]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/test/in/random-large-study-area.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"options\": {\n    \"properties\": {\n      \"fill-opacity\": 0,\n      \"stroke-width\": 5,\n      \"stroke\": \"#a00\"\n    },\n    \"studyArea\": {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-15, 38.103721],\n            [-8.90061, 38.103721],\n            [-8.90061, 45],\n            [-15, 45],\n            [-15, 38.103721]\n          ]\n        ]\n      }\n    }\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.954693995126283, 38.404163557472444]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.136098506847379, 38.36342930746026]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.211130041712606, 38.30495005757684]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.193728776821473, 38.35046647087951]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.018304889878863, 38.364227080898466]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.920177174618102, 38.45245311571842]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.086054009829065, 38.159282516798115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.260167146586612, 38.29101121028581]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.289808492449499, 38.242272958266675]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.087129012325185, 38.39672133696977]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.02271473410847, 38.106770511421956]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.138069924296458, 38.291031745135435]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.094411776707979, 38.23269570930865]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.078315696695393, 38.48250486717448]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.929358507005531, 38.376162609813626]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.92010789203723, 38.319164743670186]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.041087874276547, 38.483538907749995]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.206663694150961, 38.14676519238175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.234474887853489, 38.39594124407675]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.190798576307595, 38.38615532954051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.151348205485615, 38.40648971411991]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.158765123989282, 38.356781872660264]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.281540930086809, 38.445631290304156]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.913574226279902, 38.21826433250497]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.058748280552873, 38.488617290192835]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.908881837958308, 38.15835322315129]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.264712577335995, 38.149990799303666]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.93359158761771, 38.40724554180319]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.979399170035984, 38.47521442152852]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.139436036538939, 38.3884248395129]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.2060200882032, 38.22613289877937]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.155719802445834, 38.413559592516414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.128450154358573, 38.11945588373714]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.286209323714933, 38.189840829284044]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.18136382820873, 38.359291758306064]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.265930067567577, 38.14847863683633]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.182016574228154, 38.45238936968405]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.953340924807158, 38.48635687638654]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.012162000709944, 38.491996017438375]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.217948815941643, 38.409859159141185]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.06306834102414, 38.409281871912846]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.979337102853425, 38.271476522630756]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.290449305152126, 38.41819461460309]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.179415870698099, 38.3307131805422]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.035419906447824, 38.39083407552805]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.97336612882791, 38.343977383913675]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.240810447018108, 38.227045549946766]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.078366320951293, 38.12849431433058]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.035872763415483, 38.16121760891558]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.283247551702551, 38.294586474837146]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1071672001402, 38.28748448027202]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.162158269035427, 38.34368086977859]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.017261001855148, 38.15400974474692]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.258804466497779, 38.47856416808142]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.991477301522856, 38.2778066563913]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.08366841804967, 38.39148171446212]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1516305777016, 38.127203110716145]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.298224459472962, 38.12458056793519]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.93807272140478, 38.479994827066314]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.972150700475789, 38.22510036419428]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.21115113566103, 38.32736163961269]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.248352323952892, 38.39574866718753]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.2918306353639, 38.14985366342824]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.049692226391347, 38.45374872048198]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.204457617934672, 38.175000388684715]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.291144130900221, 38.33486119475533]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.900609997813907, 38.31076583268274]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.0746238219314, 38.17007303843873]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.949588398493066, 38.29725149591193]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.015857702079458, 38.45546520634237]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.129393065258528, 38.43375925052706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.22039672011444, 38.434073044911145]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.12256699453355, 38.11724652917648]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.182397965165856, 38.35499075065613]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.287896987866874, 38.49492542236455]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.074061127373824, 38.33621005910998]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.275953958891636, 38.43915526371629]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.974066708970062, 38.40350133043407]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.194500460306498, 38.22545414856333]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.055500767959595, 38.330316994016954]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.953983979083988, 38.358586186806136]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.910739262764167, 38.1330245138571]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.052011754332836, 38.23327141904898]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.24329226364415, 38.33619125763094]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.099419978849024, 38.4226239268013]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.983347535326873, 38.18906689846201]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.95162097481181, 38.417606548755025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.19533045161024, 38.10372140158265]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.141613225735325, 38.377550431629054]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.128715045831976, 38.22456127663626]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.93921417765754, 38.321806477145216]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.07810545110529, 38.41680134770151]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.996923900386793, 38.39110372314361]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.220773035358063, 38.22584608614886]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.169735703996981, 38.30950615944562]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.969040804426893, 38.43185479244211]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.203425013414387, 38.174003301114276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.230894744873195, 38.10670838204885]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.236068835699333, 38.38058196063615]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.916406240464132, 38.12803126311165]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.057458615871955, 38.45759658106274]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.940215128769388, 38.346589166040125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.17770420771467, 38.384898900291375]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.194754903301115, 38.25625776018478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.279771086000695, 38.419830851198924]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.185980584323236, 38.23541815832415]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.096144225053065, 38.19631204333831]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.28454259888517, 38.3289198529115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.251747398611878, 38.462856168330255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.977256773161482, 38.46687675034363]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.071951177262948, 38.34272985124044]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.031170026385272, 38.462884116938]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.061676806913942, 38.40670727061653]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.904583997576081, 38.277115857792644]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.29867379414539, 38.44626820891124]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.993923767392353, 38.420559673644384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.98545004061425, 38.473894218273244]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.113358267179626, 38.39235819942534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.25750979898236, 38.25151872626216]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.081414997716399, 38.18607215578648]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.164532904032392, 38.308150857537036]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.995218925324913, 38.166287141259254]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.157177695724902, 38.27601481606263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.015801781307681, 38.195386257562596]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.273499255817828, 38.14636496539357]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.186796676264782, 38.15487074755686]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.990000638155832, 38.42067124382058]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.902532385124909, 38.3590388072954]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1421142229852, 38.14861629557319]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.938302526191649, 38.49331308437129]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.984507976764851, 38.16928129725407]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.029585465790241, 38.17614487061945]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.138744809092337, 38.44263776068499]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.216901409474955, 38.483664721544805]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.957890327629102, 38.477029946493694]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.022325787656865, 38.15720854496376]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.987101248522647, 38.13135535417127]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.923244738411721, 38.19515073891949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.112717279452784, 38.38628647310605]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.901199638654461, 38.264649384488735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.97269852613098, 38.32188272364449]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.177780649780432, 38.1571930205585]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.075116314731822, 38.125309685966315]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.15672345705279, 38.26219480805784]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.922300057474727, 38.213462603922636]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.009280841659159, 38.30238490441025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.159883477946254, 38.19142724924936]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.01456562937641, 38.459808089375876]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.283314605426806, 38.20797687195443]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.064455431348936, 38.28503841693048]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/test/in/random-outlier.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"options\": {\n    \"properties\": {\n      \"fill-opacity\": 0,\n      \"stroke-width\": 5,\n      \"stroke\": \"#a00\"\n    }\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.954693995126283, 38.404163557472444]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-15, 45]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.136098506847379, 38.36342930746026]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.211130041712606, 38.30495005757684]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.193728776821473, 38.35046647087951]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.018304889878863, 38.364227080898466]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.920177174618102, 38.45245311571842]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.086054009829065, 38.159282516798115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.260167146586612, 38.29101121028581]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.289808492449499, 38.242272958266675]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.087129012325185, 38.39672133696977]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.02271473410847, 38.106770511421956]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.138069924296458, 38.291031745135435]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.094411776707979, 38.23269570930865]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.078315696695393, 38.48250486717448]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.929358507005531, 38.376162609813626]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.92010789203723, 38.319164743670186]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.041087874276547, 38.483538907749995]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.206663694150961, 38.14676519238175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.234474887853489, 38.39594124407675]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.190798576307595, 38.38615532954051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.151348205485615, 38.40648971411991]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.158765123989282, 38.356781872660264]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.281540930086809, 38.445631290304156]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.913574226279902, 38.21826433250497]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.058748280552873, 38.488617290192835]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.908881837958308, 38.15835322315129]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.264712577335995, 38.149990799303666]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.93359158761771, 38.40724554180319]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.979399170035984, 38.47521442152852]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.139436036538939, 38.3884248395129]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.2060200882032, 38.22613289877937]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.155719802445834, 38.413559592516414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.128450154358573, 38.11945588373714]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.286209323714933, 38.189840829284044]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.18136382820873, 38.359291758306064]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.265930067567577, 38.14847863683633]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.182016574228154, 38.45238936968405]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.953340924807158, 38.48635687638654]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.012162000709944, 38.491996017438375]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.217948815941643, 38.409859159141185]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.06306834102414, 38.409281871912846]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.979337102853425, 38.271476522630756]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.290449305152126, 38.41819461460309]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.179415870698099, 38.3307131805422]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.035419906447824, 38.39083407552805]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.97336612882791, 38.343977383913675]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.240810447018108, 38.227045549946766]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.078366320951293, 38.12849431433058]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.035872763415483, 38.16121760891558]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.283247551702551, 38.294586474837146]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1071672001402, 38.28748448027202]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.162158269035427, 38.34368086977859]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.017261001855148, 38.15400974474692]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.258804466497779, 38.47856416808142]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.991477301522856, 38.2778066563913]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.08366841804967, 38.39148171446212]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1516305777016, 38.127203110716145]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.298224459472962, 38.12458056793519]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.93807272140478, 38.479994827066314]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.972150700475789, 38.22510036419428]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.21115113566103, 38.32736163961269]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.248352323952892, 38.39574866718753]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.2918306353639, 38.14985366342824]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.049692226391347, 38.45374872048198]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.204457617934672, 38.175000388684715]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.291144130900221, 38.33486119475533]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.900609997813907, 38.31076583268274]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.0746238219314, 38.17007303843873]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.949588398493066, 38.29725149591193]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.015857702079458, 38.45546520634237]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.129393065258528, 38.43375925052706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.22039672011444, 38.434073044911145]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.12256699453355, 38.11724652917648]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.182397965165856, 38.35499075065613]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.287896987866874, 38.49492542236455]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.074061127373824, 38.33621005910998]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.275953958891636, 38.43915526371629]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.974066708970062, 38.40350133043407]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.194500460306498, 38.22545414856333]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.055500767959595, 38.330316994016954]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.953983979083988, 38.358586186806136]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.910739262764167, 38.1330245138571]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.052011754332836, 38.23327141904898]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.24329226364415, 38.33619125763094]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.099419978849024, 38.4226239268013]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.983347535326873, 38.18906689846201]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.95162097481181, 38.417606548755025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.19533045161024, 38.10372140158265]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.141613225735325, 38.377550431629054]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.128715045831976, 38.22456127663626]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.93921417765754, 38.321806477145216]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.07810545110529, 38.41680134770151]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.996923900386793, 38.39110372314361]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.220773035358063, 38.22584608614886]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.169735703996981, 38.30950615944562]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.969040804426893, 38.43185479244211]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.203425013414387, 38.174003301114276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.230894744873195, 38.10670838204885]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.236068835699333, 38.38058196063615]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.916406240464132, 38.12803126311165]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.057458615871955, 38.45759658106274]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.940215128769388, 38.346589166040125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.17770420771467, 38.384898900291375]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.194754903301115, 38.25625776018478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.279771086000695, 38.419830851198924]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.185980584323236, 38.23541815832415]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.096144225053065, 38.19631204333831]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.28454259888517, 38.3289198529115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.251747398611878, 38.462856168330255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.977256773161482, 38.46687675034363]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.071951177262948, 38.34272985124044]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.031170026385272, 38.462884116938]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.061676806913942, 38.40670727061653]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.904583997576081, 38.277115857792644]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.29867379414539, 38.44626820891124]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.993923767392353, 38.420559673644384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.98545004061425, 38.473894218273244]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.113358267179626, 38.39235819942534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.25750979898236, 38.25151872626216]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.081414997716399, 38.18607215578648]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.164532904032392, 38.308150857537036]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.995218925324913, 38.166287141259254]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.157177695724902, 38.27601481606263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.015801781307681, 38.195386257562596]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.273499255817828, 38.14636496539357]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.186796676264782, 38.15487074755686]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.990000638155832, 38.42067124382058]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.902532385124909, 38.3590388072954]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1421142229852, 38.14861629557319]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.938302526191649, 38.49331308437129]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.984507976764851, 38.16928129725407]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.029585465790241, 38.17614487061945]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.138744809092337, 38.44263776068499]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.216901409474955, 38.483664721544805]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.957890327629102, 38.477029946493694]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.022325787656865, 38.15720854496376]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.987101248522647, 38.13135535417127]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.923244738411721, 38.19515073891949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.112717279452784, 38.38628647310605]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.901199638654461, 38.264649384488735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.97269852613098, 38.32188272364449]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.177780649780432, 38.1571930205585]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.075116314731822, 38.125309685966315]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.15672345705279, 38.26219480805784]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.922300057474727, 38.213462603922636]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.009280841659159, 38.30238490441025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.159883477946254, 38.19142724924936]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.01456562937641, 38.459808089375876]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.283314605426806, 38.20797687195443]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.064455431348936, 38.28503841693048]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/test/in/random.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"options\": {\n    \"properties\": {\n      \"fill-opacity\": 0,\n      \"stroke-width\": 5,\n      \"stroke\": \"#a00\"\n    }\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.954693995126283, 38.404163557472444]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.136098506847379, 38.36342930746026]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.211130041712606, 38.30495005757684]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.193728776821473, 38.35046647087951]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.018304889878863, 38.364227080898466]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.920177174618102, 38.45245311571842]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.086054009829065, 38.159282516798115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.260167146586612, 38.29101121028581]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.289808492449499, 38.242272958266675]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.087129012325185, 38.39672133696977]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.02271473410847, 38.106770511421956]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.138069924296458, 38.291031745135435]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.094411776707979, 38.23269570930865]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.078315696695393, 38.48250486717448]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.929358507005531, 38.376162609813626]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.92010789203723, 38.319164743670186]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.041087874276547, 38.483538907749995]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.206663694150961, 38.14676519238175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.234474887853489, 38.39594124407675]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.190798576307595, 38.38615532954051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.151348205485615, 38.40648971411991]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.158765123989282, 38.356781872660264]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.281540930086809, 38.445631290304156]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.913574226279902, 38.21826433250497]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.058748280552873, 38.488617290192835]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.908881837958308, 38.15835322315129]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.264712577335995, 38.149990799303666]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.93359158761771, 38.40724554180319]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.979399170035984, 38.47521442152852]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.139436036538939, 38.3884248395129]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.2060200882032, 38.22613289877937]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.155719802445834, 38.413559592516414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.128450154358573, 38.11945588373714]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.286209323714933, 38.189840829284044]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.18136382820873, 38.359291758306064]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.265930067567577, 38.14847863683633]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.182016574228154, 38.45238936968405]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.953340924807158, 38.48635687638654]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.012162000709944, 38.491996017438375]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.217948815941643, 38.409859159141185]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.06306834102414, 38.409281871912846]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.979337102853425, 38.271476522630756]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.290449305152126, 38.41819461460309]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.179415870698099, 38.3307131805422]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.035419906447824, 38.39083407552805]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.97336612882791, 38.343977383913675]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.240810447018108, 38.227045549946766]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.078366320951293, 38.12849431433058]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.035872763415483, 38.16121760891558]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.283247551702551, 38.294586474837146]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1071672001402, 38.28748448027202]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.162158269035427, 38.34368086977859]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.017261001855148, 38.15400974474692]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.258804466497779, 38.47856416808142]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.991477301522856, 38.2778066563913]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.08366841804967, 38.39148171446212]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1516305777016, 38.127203110716145]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.298224459472962, 38.12458056793519]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.93807272140478, 38.479994827066314]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.972150700475789, 38.22510036419428]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.21115113566103, 38.32736163961269]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.248352323952892, 38.39574866718753]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.2918306353639, 38.14985366342824]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.049692226391347, 38.45374872048198]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.204457617934672, 38.175000388684715]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.291144130900221, 38.33486119475533]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.900609997813907, 38.31076583268274]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.0746238219314, 38.17007303843873]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.949588398493066, 38.29725149591193]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.015857702079458, 38.45546520634237]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.129393065258528, 38.43375925052706]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.22039672011444, 38.434073044911145]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.12256699453355, 38.11724652917648]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.182397965165856, 38.35499075065613]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.287896987866874, 38.49492542236455]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.074061127373824, 38.33621005910998]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.275953958891636, 38.43915526371629]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.974066708970062, 38.40350133043407]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.194500460306498, 38.22545414856333]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.055500767959595, 38.330316994016954]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.953983979083988, 38.358586186806136]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.910739262764167, 38.1330245138571]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.052011754332836, 38.23327141904898]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.24329226364415, 38.33619125763094]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.099419978849024, 38.4226239268013]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.983347535326873, 38.18906689846201]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.95162097481181, 38.417606548755025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.19533045161024, 38.10372140158265]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.141613225735325, 38.377550431629054]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.128715045831976, 38.22456127663626]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.93921417765754, 38.321806477145216]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.07810545110529, 38.41680134770151]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.996923900386793, 38.39110372314361]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.220773035358063, 38.22584608614886]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.169735703996981, 38.30950615944562]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.969040804426893, 38.43185479244211]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.203425013414387, 38.174003301114276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.230894744873195, 38.10670838204885]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.236068835699333, 38.38058196063615]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.916406240464132, 38.12803126311165]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.057458615871955, 38.45759658106274]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.940215128769388, 38.346589166040125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.17770420771467, 38.384898900291375]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.194754903301115, 38.25625776018478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.279771086000695, 38.419830851198924]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.185980584323236, 38.23541815832415]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.096144225053065, 38.19631204333831]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.28454259888517, 38.3289198529115]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.251747398611878, 38.462856168330255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.977256773161482, 38.46687675034363]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.071951177262948, 38.34272985124044]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.031170026385272, 38.462884116938]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.061676806913942, 38.40670727061653]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.904583997576081, 38.277115857792644]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.29867379414539, 38.44626820891124]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.993923767392353, 38.420559673644384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.98545004061425, 38.473894218273244]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.113358267179626, 38.39235819942534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.25750979898236, 38.25151872626216]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.081414997716399, 38.18607215578648]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.164532904032392, 38.308150857537036]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.995218925324913, 38.166287141259254]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.157177695724902, 38.27601481606263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.015801781307681, 38.195386257562596]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.273499255817828, 38.14636496539357]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.186796676264782, 38.15487074755686]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.990000638155832, 38.42067124382058]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.902532385124909, 38.3590388072954]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1421142229852, 38.14861629557319]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.938302526191649, 38.49331308437129]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.984507976764851, 38.16928129725407]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.029585465790241, 38.17614487061945]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.138744809092337, 38.44263776068499]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.216901409474955, 38.483664721544805]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.957890327629102, 38.477029946493694]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.022325787656865, 38.15720854496376]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.987101248522647, 38.13135535417127]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.923244738411721, 38.19515073891949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.112717279452784, 38.38628647310605]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.901199638654461, 38.264649384488735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.97269852613098, 38.32188272364449]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.177780649780432, 38.1571930205585]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.075116314731822, 38.125309685966315]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.15672345705279, 38.26219480805784]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.922300057474727, 38.213462603922636]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.009280841659159, 38.30238490441025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.159883477946254, 38.19142724924936]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.01456562937641, 38.459808089375876]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.283314605426806, 38.20797687195443]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.064455431348936, 38.28503841693048]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/test/in/squares.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"options\": {\n    \"properties\": {\n      \"fill-opacity\": 0,\n      \"stroke-width\": 5,\n      \"stroke\": \"#a00\"\n    }\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.12013592725509],\n            [-9.299992605418552, 38.16510194544132],\n            [-9.242851861013252, 38.16510194544132],\n            [-9.242851861013252, 38.12013592725509],\n            [-9.299992605418552, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.16510194544132],\n            [-9.299992605418552, 38.21006796362755],\n            [-9.242851861013252, 38.21006796362755],\n            [-9.242851861013252, 38.16510194544132],\n            [-9.299992605418552, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.21006796362755],\n            [-9.299992605418552, 38.25503398181378],\n            [-9.242851861013252, 38.25503398181378],\n            [-9.242851861013252, 38.21006796362755],\n            [-9.299992605418552, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.25503398181378],\n            [-9.299992605418552, 38.30000000000001],\n            [-9.242851861013252, 38.30000000000001],\n            [-9.242851861013252, 38.25503398181378],\n            [-9.299992605418552, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.30000000000001],\n            [-9.299992605418552, 38.34496601818624],\n            [-9.242851861013252, 38.34496601818624],\n            [-9.242851861013252, 38.30000000000001],\n            [-9.299992605418552, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.34496601818624],\n            [-9.299992605418552, 38.38993203637247],\n            [-9.242851861013252, 38.38993203637247],\n            [-9.242851861013252, 38.34496601818624],\n            [-9.299992605418552, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.38993203637247],\n            [-9.299992605418552, 38.4348980545587],\n            [-9.242851861013252, 38.4348980545587],\n            [-9.242851861013252, 38.38993203637247],\n            [-9.299992605418552, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299992605418552, 38.4348980545587],\n            [-9.299992605418552, 38.47986407274493],\n            [-9.242851861013252, 38.47986407274493],\n            [-9.242851861013252, 38.4348980545587],\n            [-9.299992605418552, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.12013592725509],\n            [-9.242851861013252, 38.16510194544132],\n            [-9.185711116607951, 38.16510194544132],\n            [-9.185711116607951, 38.12013592725509],\n            [-9.242851861013252, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.16510194544132],\n            [-9.242851861013252, 38.21006796362755],\n            [-9.185711116607951, 38.21006796362755],\n            [-9.185711116607951, 38.16510194544132],\n            [-9.242851861013252, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.21006796362755],\n            [-9.242851861013252, 38.25503398181378],\n            [-9.185711116607951, 38.25503398181378],\n            [-9.185711116607951, 38.21006796362755],\n            [-9.242851861013252, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.25503398181378],\n            [-9.242851861013252, 38.30000000000001],\n            [-9.185711116607951, 38.30000000000001],\n            [-9.185711116607951, 38.25503398181378],\n            [-9.242851861013252, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.30000000000001],\n            [-9.242851861013252, 38.34496601818624],\n            [-9.185711116607951, 38.34496601818624],\n            [-9.185711116607951, 38.30000000000001],\n            [-9.242851861013252, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.34496601818624],\n            [-9.242851861013252, 38.38993203637247],\n            [-9.185711116607951, 38.38993203637247],\n            [-9.185711116607951, 38.34496601818624],\n            [-9.242851861013252, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.38993203637247],\n            [-9.242851861013252, 38.4348980545587],\n            [-9.185711116607951, 38.4348980545587],\n            [-9.185711116607951, 38.38993203637247],\n            [-9.242851861013252, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242851861013252, 38.4348980545587],\n            [-9.242851861013252, 38.47986407274493],\n            [-9.185711116607951, 38.47986407274493],\n            [-9.185711116607951, 38.4348980545587],\n            [-9.242851861013252, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.12013592725509],\n            [-9.185711116607951, 38.16510194544132],\n            [-9.12857037220265, 38.16510194544132],\n            [-9.12857037220265, 38.12013592725509],\n            [-9.185711116607951, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.16510194544132],\n            [-9.185711116607951, 38.21006796362755],\n            [-9.12857037220265, 38.21006796362755],\n            [-9.12857037220265, 38.16510194544132],\n            [-9.185711116607951, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.21006796362755],\n            [-9.185711116607951, 38.25503398181378],\n            [-9.12857037220265, 38.25503398181378],\n            [-9.12857037220265, 38.21006796362755],\n            [-9.185711116607951, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.25503398181378],\n            [-9.185711116607951, 38.30000000000001],\n            [-9.12857037220265, 38.30000000000001],\n            [-9.12857037220265, 38.25503398181378],\n            [-9.185711116607951, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.30000000000001],\n            [-9.185711116607951, 38.34496601818624],\n            [-9.12857037220265, 38.34496601818624],\n            [-9.12857037220265, 38.30000000000001],\n            [-9.185711116607951, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.34496601818624],\n            [-9.185711116607951, 38.38993203637247],\n            [-9.12857037220265, 38.38993203637247],\n            [-9.12857037220265, 38.34496601818624],\n            [-9.185711116607951, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.38993203637247],\n            [-9.185711116607951, 38.4348980545587],\n            [-9.12857037220265, 38.4348980545587],\n            [-9.12857037220265, 38.38993203637247],\n            [-9.185711116607951, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711116607951, 38.4348980545587],\n            [-9.185711116607951, 38.47986407274493],\n            [-9.12857037220265, 38.47986407274493],\n            [-9.12857037220265, 38.4348980545587],\n            [-9.185711116607951, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.12013592725509],\n            [-9.12857037220265, 38.16510194544132],\n            [-9.07142962779735, 38.16510194544132],\n            [-9.07142962779735, 38.12013592725509],\n            [-9.12857037220265, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.16510194544132],\n            [-9.12857037220265, 38.21006796362755],\n            [-9.07142962779735, 38.21006796362755],\n            [-9.07142962779735, 38.16510194544132],\n            [-9.12857037220265, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.21006796362755],\n            [-9.12857037220265, 38.25503398181378],\n            [-9.07142962779735, 38.25503398181378],\n            [-9.07142962779735, 38.21006796362755],\n            [-9.12857037220265, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.25503398181378],\n            [-9.12857037220265, 38.30000000000001],\n            [-9.07142962779735, 38.30000000000001],\n            [-9.07142962779735, 38.25503398181378],\n            [-9.12857037220265, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.30000000000001],\n            [-9.12857037220265, 38.34496601818624],\n            [-9.07142962779735, 38.34496601818624],\n            [-9.07142962779735, 38.30000000000001],\n            [-9.12857037220265, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.34496601818624],\n            [-9.12857037220265, 38.38993203637247],\n            [-9.07142962779735, 38.38993203637247],\n            [-9.07142962779735, 38.34496601818624],\n            [-9.12857037220265, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.38993203637247],\n            [-9.12857037220265, 38.4348980545587],\n            [-9.07142962779735, 38.4348980545587],\n            [-9.07142962779735, 38.38993203637247],\n            [-9.12857037220265, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857037220265, 38.4348980545587],\n            [-9.12857037220265, 38.47986407274493],\n            [-9.07142962779735, 38.47986407274493],\n            [-9.07142962779735, 38.4348980545587],\n            [-9.12857037220265, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.07142962779735, 38.12013592725509],\n            [-9.07142962779735, 38.16510194544132],\n            [-9.01428888339205, 38.16510194544132],\n            [-9.01428888339205, 38.12013592725509],\n            [-9.07142962779735, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.07142962779735, 38.16510194544132],\n            [-9.07142962779735, 38.21006796362755],\n            [-9.01428888339205, 38.21006796362755],\n            [-9.01428888339205, 38.16510194544132],\n            [-9.07142962779735, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.07142962779735, 38.21006796362755],\n            [-9.07142962779735, 38.25503398181378],\n            [-9.01428888339205, 38.25503398181378],\n            [-9.01428888339205, 38.21006796362755],\n            [-9.07142962779735, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.07142962779735, 38.25503398181378],\n            [-9.07142962779735, 38.30000000000001],\n            [-9.01428888339205, 38.30000000000001],\n            [-9.01428888339205, 38.25503398181378],\n            [-9.07142962779735, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.07142962779735, 38.30000000000001],\n            [-9.07142962779735, 38.34496601818624],\n            [-9.01428888339205, 38.34496601818624],\n            [-9.01428888339205, 38.30000000000001],\n            [-9.07142962779735, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.07142962779735, 38.34496601818624],\n            [-9.07142962779735, 38.38993203637247],\n            [-9.01428888339205, 38.38993203637247],\n            [-9.01428888339205, 38.34496601818624],\n            [-9.07142962779735, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.07142962779735, 38.38993203637247],\n            [-9.07142962779735, 38.4348980545587],\n            [-9.01428888339205, 38.4348980545587],\n            [-9.01428888339205, 38.38993203637247],\n            [-9.07142962779735, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.07142962779735, 38.4348980545587],\n            [-9.07142962779735, 38.47986407274493],\n            [-9.01428888339205, 38.47986407274493],\n            [-9.01428888339205, 38.4348980545587],\n            [-9.07142962779735, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.01428888339205, 38.12013592725509],\n            [-9.01428888339205, 38.16510194544132],\n            [-8.95714813898675, 38.16510194544132],\n            [-8.95714813898675, 38.12013592725509],\n            [-9.01428888339205, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.01428888339205, 38.16510194544132],\n            [-9.01428888339205, 38.21006796362755],\n            [-8.95714813898675, 38.21006796362755],\n            [-8.95714813898675, 38.16510194544132],\n            [-9.01428888339205, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.01428888339205, 38.21006796362755],\n            [-9.01428888339205, 38.25503398181378],\n            [-8.95714813898675, 38.25503398181378],\n            [-8.95714813898675, 38.21006796362755],\n            [-9.01428888339205, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.01428888339205, 38.25503398181378],\n            [-9.01428888339205, 38.30000000000001],\n            [-8.95714813898675, 38.30000000000001],\n            [-8.95714813898675, 38.25503398181378],\n            [-9.01428888339205, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.01428888339205, 38.30000000000001],\n            [-9.01428888339205, 38.34496601818624],\n            [-8.95714813898675, 38.34496601818624],\n            [-8.95714813898675, 38.30000000000001],\n            [-9.01428888339205, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.01428888339205, 38.34496601818624],\n            [-9.01428888339205, 38.38993203637247],\n            [-8.95714813898675, 38.38993203637247],\n            [-8.95714813898675, 38.34496601818624],\n            [-9.01428888339205, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.01428888339205, 38.38993203637247],\n            [-9.01428888339205, 38.4348980545587],\n            [-8.95714813898675, 38.4348980545587],\n            [-8.95714813898675, 38.38993203637247],\n            [-9.01428888339205, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.01428888339205, 38.4348980545587],\n            [-9.01428888339205, 38.47986407274493],\n            [-8.95714813898675, 38.47986407274493],\n            [-8.95714813898675, 38.4348980545587],\n            [-9.01428888339205, 38.4348980545587]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.95714813898675, 38.12013592725509],\n            [-8.95714813898675, 38.16510194544132],\n            [-8.900007394581449, 38.16510194544132],\n            [-8.900007394581449, 38.12013592725509],\n            [-8.95714813898675, 38.12013592725509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.95714813898675, 38.16510194544132],\n            [-8.95714813898675, 38.21006796362755],\n            [-8.900007394581449, 38.21006796362755],\n            [-8.900007394581449, 38.16510194544132],\n            [-8.95714813898675, 38.16510194544132]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.95714813898675, 38.21006796362755],\n            [-8.95714813898675, 38.25503398181378],\n            [-8.900007394581449, 38.25503398181378],\n            [-8.900007394581449, 38.21006796362755],\n            [-8.95714813898675, 38.21006796362755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.95714813898675, 38.25503398181378],\n            [-8.95714813898675, 38.30000000000001],\n            [-8.900007394581449, 38.30000000000001],\n            [-8.900007394581449, 38.25503398181378],\n            [-8.95714813898675, 38.25503398181378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.95714813898675, 38.30000000000001],\n            [-8.95714813898675, 38.34496601818624],\n            [-8.900007394581449, 38.34496601818624],\n            [-8.900007394581449, 38.30000000000001],\n            [-8.95714813898675, 38.30000000000001]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.95714813898675, 38.34496601818624],\n            [-8.95714813898675, 38.38993203637247],\n            [-8.900007394581449, 38.38993203637247],\n            [-8.900007394581449, 38.34496601818624],\n            [-8.95714813898675, 38.34496601818624]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.95714813898675, 38.38993203637247],\n            [-8.95714813898675, 38.4348980545587],\n            [-8.900007394581449, 38.4348980545587],\n            [-8.900007394581449, 38.38993203637247],\n            [-8.95714813898675, 38.38993203637247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.95714813898675, 38.4348980545587],\n            [-8.95714813898675, 38.47986407274493],\n            [-8.900007394581449, 38.47986407274493],\n            [-8.900007394581449, 38.4348980545587],\n            [-8.95714813898675, 38.4348980545587]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/test/out/brazil-states-bbox.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.882084, -7.05713],\n            [-66.82171, -9.88128],\n            [-69.147481, -11.210291],\n            [-70.725682, -10.794975],\n            [-70.767213, -9.341369],\n            [-72.926857, -9.715153],\n            [-73.882084, -7.05713]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.882084, -7.05713],\n            [-72.802262, -5.188208],\n            [-69.978113, -4.232981],\n            [-69.479733, -1.076578],\n            [-69.853518, 1.747571],\n            [-67.237027, 2.079824],\n            [-65.492699, 0.792344],\n            [-63.540713, 2.204419],\n            [-61.713323, -1.325768],\n            [-58.972236, 0.377028],\n            [-56.48034, -2.40559],\n            [-58.307731, -7.098662],\n            [-58.515389, -8.718394],\n            [-61.630259, -8.926053],\n            [-63.623777, -7.929294],\n            [-66.82171, -9.88128],\n            [-73.882084, -7.05713]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-63.540713, 2.204419],\n            [-64.579004, 4.280999],\n            [-62.128639, 4.239468],\n            [-60.176653, 5.402353],\n            [-59.304489, 3.78262],\n            [-59.968995, 2.121356],\n            [-58.930705, 1.249192],\n            [-58.972236, 0.377028],\n            [-61.713323, -1.325768],\n            [-63.540713, 2.204419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.930705, 1.249192],\n            [-56.854124, 2.24595],\n            [-54.777544, 2.287482],\n            [-52.161052, -1.325768],\n            [-50.582851, 0.460091],\n            [-45.889779, -1.242705],\n            [-48.340144, -5.229739],\n            [-50.333662, -9.798216],\n            [-56.937187, -9.258305],\n            [-58.307731, -7.098662],\n            [-56.48034, -2.40559],\n            [-58.972236, 0.377028],\n            [-58.930705, 1.249192]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-54.777544, 2.287482],\n            [-52.86709, 2.329014],\n            [-51.455015, 4.364062],\n            [-49.793751, 1.083065],\n            [-50.582851, 0.460091],\n            [-52.161052, -1.325768],\n            [-54.777544, 2.287482]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.889779, -1.242705],\n            [-41.695087, -2.945501],\n            [-42.941035, -6.724877],\n            [-45.889779, -7.846231],\n            [-46.471222, -9.964343],\n            [-48.340144, -5.229739],\n            [-45.889779, -1.242705]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-41.695087, -2.945501],\n            [-41.155176, -2.945501],\n            [-40.24148, -7.472446],\n            [-42.608782, -9.63209],\n            [-43.688604, -9.507495],\n            [-44.020857, -10.753443],\n            [-46.471222, -9.964343],\n            [-45.889779, -7.846231],\n            [-42.941035, -6.724877],\n            [-41.695087, -2.945501]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40.24148, -7.472446],\n            [-41.155176, -2.945501],\n            [-39.369317, -2.945501],\n            [-37.292736, -4.772892],\n            [-38.787874, -7.721636],\n            [-40.24148, -7.472446]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.115923, -6.396399],\n            [-37.292736, -4.772892],\n            [-35.548409, -5.188208],\n            [-34.966966, -6.558751],\n            [-38.115923, -6.396399]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-34.966966, -6.558751],\n            [-34.717776, -7.513978],\n            [-36.918952, -8.136952],\n            [-38.787874, -7.721636],\n            [-38.115923, -6.396399],\n            [-34.966966, -6.558751]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-34.717776, -7.513978],\n            [-35.091561, -9.009116],\n            [-38.1649, -9.216774],\n            [-39.369317, -8.5938],\n            [-40.573733, -9.590558],\n            [-41.475834, -8.598523],\n            [-40.24148, -7.472446],\n            [-38.787874, -7.721636],\n            [-36.918952, -8.136952],\n            [-34.717776, -7.513978]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.1649, -9.216774],\n            [-35.091561, -9.009116],\n            [-36.420572, -10.545785],\n            [-38.1649, -9.216774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-36.420572, -10.545785],\n            [-37.541926, -11.750202],\n            [-38.1649, -9.216774],\n            [-36.420572, -10.545785]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-37.541926, -11.750202],\n            [-38.995532, -13.120745],\n            [-38.621748, -15.737236],\n            [-39.45238, -18.312196],\n            [-40.615265, -17.855349],\n            [-40.033822, -15.944895],\n            [-44.270047, -14.200567],\n            [-45.889779, -15.155794],\n            [-46.471222, -11.127228],\n            [-45.608301, -10.242233],\n            [-44.020857, -10.753443],\n            [-43.688604, -9.507495],\n            [-42.608782, -9.63209],\n            [-41.475834, -8.598523],\n            [-40.573733, -9.590558],\n            [-39.369317, -8.5938],\n            [-38.1649, -9.216774],\n            [-37.541926, -11.750202]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-48.340144, -5.229739],\n            [-46.471222, -9.964343],\n            [-45.608301, -10.242233],\n            [-46.471222, -11.127228],\n            [-46.229565, -12.801568],\n            [-47.634107, -13.369935],\n            [-50.458256, -12.830024],\n            [-50.333662, -9.798216],\n            [-48.340144, -5.229739]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-66.82171, -9.88128],\n            [-63.623777, -7.929294],\n            [-61.630259, -8.926053],\n            [-61.505664, -10.961101],\n            [-59.802868, -11.251823],\n            [-60.550437, -13.743719],\n            [-65.035851, -11.916328],\n            [-65.243509, -9.839748],\n            [-66.82171, -9.88128]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-61.630259, -8.926053],\n            [-58.515389, -8.718394],\n            [-58.307731, -7.098662],\n            [-56.937187, -9.258305],\n            [-50.333662, -9.798216],\n            [-50.458256, -12.830024],\n            [-52.825558, -16.152553],\n            [-53.157811, -18.104538],\n            [-57.601693, -17.772285],\n            [-58.349262, -17.647691],\n            [-58.390794, -16.318679],\n            [-60.176653, -16.277147],\n            [-60.550437, -13.743719],\n            [-59.802868, -11.251823],\n            [-61.505664, -10.961101],\n            [-61.630259, -8.926053]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-57.601693, -17.772285],\n            [-53.157811, -18.104538],\n            [-51.122762, -19.142828],\n            [-50.998167, -20.181119],\n            [-54.196101, -24.043558],\n            [-55.400518, -23.877432],\n            [-55.815834, -22.340762],\n            [-57.975478, -22.00851],\n            [-57.601693, -17.772285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-47.218791, -15.488047],\n            [-47.218791, -16.111021],\n            [-48.381676, -16.069489],\n            [-48.340144, -15.363452],\n            [-47.218791, -15.488047]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-51.122762, -19.142828],\n            [-53.157811, -18.104538],\n            [-52.825558, -16.152553],\n            [-50.458256, -12.830024],\n            [-47.634107, -13.369935],\n            [-46.229565, -12.801568],\n            [-45.889779, -15.155794],\n            [-47.218791, -15.737236],\n            [-47.218791, -15.488047],\n            [-48.340144, -15.363452],\n            [-48.381676, -16.069489],\n            [-47.218791, -16.111021],\n            [-47.343386, -18.395259],\n            [-49.087713, -18.436791],\n            [-51.122762, -19.142828]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50.998167, -20.181119],\n            [-51.122762, -19.142828],\n            [-49.087713, -18.436791],\n            [-47.343386, -18.395259],\n            [-47.218791, -16.111021],\n            [-47.218791, -15.737236],\n            [-45.889779, -15.155794],\n            [-44.270047, -14.200567],\n            [-40.033822, -15.944895],\n            [-40.615265, -17.855349],\n            [-41.861213, -20.679498],\n            [-42.857972, -22.050041],\n            [-46.305095, -22.839142],\n            [-47.343386, -20.181119],\n            [-50.998167, -20.181119]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40.615265, -17.855349],\n            [-39.45238, -18.312196],\n            [-40.033822, -20.014992],\n            [-40.905986, -21.302472],\n            [-41.861213, -20.679498],\n            [-40.615265, -17.855349]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40.905986, -21.302472],\n            [-41.861213, -23.0468],\n            [-44.436173, -23.295989],\n            [-44.611488, -22.451448],\n            [-42.857972, -22.050041],\n            [-41.861213, -20.679498],\n            [-40.905986, -21.302472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-44.436173, -23.295989],\n            [-48.215549, -25.206443],\n            [-49.336903, -24.666533],\n            [-49.835282, -22.880673],\n            [-52.968303, -22.560634],\n            [-50.998167, -20.181119],\n            [-47.343386, -20.181119],\n            [-46.305095, -22.839142],\n            [-44.611488, -22.451448],\n            [-44.436173, -23.295989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-48.215549, -25.206443],\n            [-48.506271, -26.120139],\n            [-51.288889, -26.41086],\n            [-53.573127, -26.203202],\n            [-54.196101, -24.043558],\n            [-52.968303, -22.560634],\n            [-49.835282, -22.880673],\n            [-49.336903, -24.666533],\n            [-48.215549, -25.206443]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.573127, -26.203202],\n            [-51.288889, -26.41086],\n            [-48.506271, -26.120139],\n            [-48.298613, -27.94753],\n            [-49.752219, -29.276541],\n            [-51.57961, -27.44915],\n            [-53.863848, -27.158429],\n            [-53.573127, -26.203202]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.863848, -27.158429],\n            [-51.57961, -27.44915],\n            [-49.752219, -29.276541],\n            [-50.499788, -31.228527],\n            [-52.825558, -33.263576],\n            [-57.435567, -30.231768],\n            [-55.774302, -28.404377],\n            [-53.863848, -27.158429]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.711838, -9.6667]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-64.895682, -3.539922]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-61.034973, 2.481296]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-54.04728, -2.47827]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-51.93955, 1.532991]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-45.204508, -5.658899]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-43.190225, -7.532436]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-39.369317, -5.171595]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-36.481008, -5.729062]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-36.701498, -7.265543]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-38.37127, -8.428198]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-36.559011, -9.590558]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-37.375799, -10.504254]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-41.611885, -12.314066]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-47.69331, -10.670411]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-63.02676, -10.556168]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-57.236215, -12.990613]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-54.533546, -20.933879]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-47.78985, -15.758002]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-48.723366, -15.939895]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-45.869014, -18.350761]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-40.573733, -19.632901]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-42.755674, -22.137708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-48.227816, -22.6959]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.990053, -24.761505]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.980368, -27.223693]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-53.104413, -29.573196]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [\n        -73.88208407352717, -33.263575673419844, -34.71777637301956, 5.402352713825728\n      ],\n      \"properties\": {\n        \"fill-opacity\": 0,\n        \"stroke-width\": 5,\n        \"stroke\": \"#a00\",\n        \"nearestNeighborAnalysis\": {\n          \"units\": \"kilometers\",\n          \"arealUnits\": \"kilometers²\",\n          \"observedMeanDistance\": 397.83037100327755,\n          \"expectedMeanDistance\": 406.3163545616098,\n          \"nearestNeighborIndex\": 0.9791148363508821,\n          \"numberOfPoints\": 27,\n          \"zScore\": -0.207611137308671\n        }\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.882084, -33.263576],\n            [-34.717776, -33.263576],\n            [-34.717776, 5.402353],\n            [-73.882084, 5.402353],\n            [-73.882084, -33.263576]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/test/out/brazil-states-brazil-itself-as-study-area.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.882084, -7.05713],\n            [-66.82171, -9.88128],\n            [-69.147481, -11.210291],\n            [-70.725682, -10.794975],\n            [-70.767213, -9.341369],\n            [-72.926857, -9.715153],\n            [-73.882084, -7.05713]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.882084, -7.05713],\n            [-72.802262, -5.188208],\n            [-69.978113, -4.232981],\n            [-69.479733, -1.076578],\n            [-69.853518, 1.747571],\n            [-67.237027, 2.079824],\n            [-65.492699, 0.792344],\n            [-63.540713, 2.204419],\n            [-61.713323, -1.325768],\n            [-58.972236, 0.377028],\n            [-56.48034, -2.40559],\n            [-58.307731, -7.098662],\n            [-58.515389, -8.718394],\n            [-61.630259, -8.926053],\n            [-63.623777, -7.929294],\n            [-66.82171, -9.88128],\n            [-73.882084, -7.05713]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-63.540713, 2.204419],\n            [-64.579004, 4.280999],\n            [-62.128639, 4.239468],\n            [-60.176653, 5.402353],\n            [-59.304489, 3.78262],\n            [-59.968995, 2.121356],\n            [-58.930705, 1.249192],\n            [-58.972236, 0.377028],\n            [-61.713323, -1.325768],\n            [-63.540713, 2.204419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.930705, 1.249192],\n            [-56.854124, 2.24595],\n            [-54.777544, 2.287482],\n            [-52.161052, -1.325768],\n            [-50.582851, 0.460091],\n            [-45.889779, -1.242705],\n            [-48.340144, -5.229739],\n            [-50.333662, -9.798216],\n            [-56.937187, -9.258305],\n            [-58.307731, -7.098662],\n            [-56.48034, -2.40559],\n            [-58.972236, 0.377028],\n            [-58.930705, 1.249192]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-54.777544, 2.287482],\n            [-52.86709, 2.329014],\n            [-51.455015, 4.364062],\n            [-49.793751, 1.083065],\n            [-50.582851, 0.460091],\n            [-52.161052, -1.325768],\n            [-54.777544, 2.287482]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.889779, -1.242705],\n            [-41.695087, -2.945501],\n            [-42.941035, -6.724877],\n            [-45.889779, -7.846231],\n            [-46.471222, -9.964343],\n            [-48.340144, -5.229739],\n            [-45.889779, -1.242705]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-41.695087, -2.945501],\n            [-41.155176, -2.945501],\n            [-40.24148, -7.472446],\n            [-42.608782, -9.63209],\n            [-43.688604, -9.507495],\n            [-44.020857, -10.753443],\n            [-46.471222, -9.964343],\n            [-45.889779, -7.846231],\n            [-42.941035, -6.724877],\n            [-41.695087, -2.945501]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40.24148, -7.472446],\n            [-41.155176, -2.945501],\n            [-39.369317, -2.945501],\n            [-37.292736, -4.772892],\n            [-38.787874, -7.721636],\n            [-40.24148, -7.472446]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.115923, -6.396399],\n            [-37.292736, -4.772892],\n            [-35.548409, -5.188208],\n            [-34.966966, -6.558751],\n            [-38.115923, -6.396399]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-34.966966, -6.558751],\n            [-34.717776, -7.513978],\n            [-36.918952, -8.136952],\n            [-38.787874, -7.721636],\n            [-38.115923, -6.396399],\n            [-34.966966, -6.558751]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-34.717776, -7.513978],\n            [-35.091561, -9.009116],\n            [-38.1649, -9.216774],\n            [-39.369317, -8.5938],\n            [-40.573733, -9.590558],\n            [-41.475834, -8.598523],\n            [-40.24148, -7.472446],\n            [-38.787874, -7.721636],\n            [-36.918952, -8.136952],\n            [-34.717776, -7.513978]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.1649, -9.216774],\n            [-35.091561, -9.009116],\n            [-36.420572, -10.545785],\n            [-38.1649, -9.216774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-36.420572, -10.545785],\n            [-37.541926, -11.750202],\n            [-38.1649, -9.216774],\n            [-36.420572, -10.545785]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-37.541926, -11.750202],\n            [-38.995532, -13.120745],\n            [-38.621748, -15.737236],\n            [-39.45238, -18.312196],\n            [-40.615265, -17.855349],\n            [-40.033822, -15.944895],\n            [-44.270047, -14.200567],\n            [-45.889779, -15.155794],\n            [-46.471222, -11.127228],\n            [-45.608301, -10.242233],\n            [-44.020857, -10.753443],\n            [-43.688604, -9.507495],\n            [-42.608782, -9.63209],\n            [-41.475834, -8.598523],\n            [-40.573733, -9.590558],\n            [-39.369317, -8.5938],\n            [-38.1649, -9.216774],\n            [-37.541926, -11.750202]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-48.340144, -5.229739],\n            [-46.471222, -9.964343],\n            [-45.608301, -10.242233],\n            [-46.471222, -11.127228],\n            [-46.229565, -12.801568],\n            [-47.634107, -13.369935],\n            [-50.458256, -12.830024],\n            [-50.333662, -9.798216],\n            [-48.340144, -5.229739]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-66.82171, -9.88128],\n            [-63.623777, -7.929294],\n            [-61.630259, -8.926053],\n            [-61.505664, -10.961101],\n            [-59.802868, -11.251823],\n            [-60.550437, -13.743719],\n            [-65.035851, -11.916328],\n            [-65.243509, -9.839748],\n            [-66.82171, -9.88128]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-61.630259, -8.926053],\n            [-58.515389, -8.718394],\n            [-58.307731, -7.098662],\n            [-56.937187, -9.258305],\n            [-50.333662, -9.798216],\n            [-50.458256, -12.830024],\n            [-52.825558, -16.152553],\n            [-53.157811, -18.104538],\n            [-57.601693, -17.772285],\n            [-58.349262, -17.647691],\n            [-58.390794, -16.318679],\n            [-60.176653, -16.277147],\n            [-60.550437, -13.743719],\n            [-59.802868, -11.251823],\n            [-61.505664, -10.961101],\n            [-61.630259, -8.926053]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-57.601693, -17.772285],\n            [-53.157811, -18.104538],\n            [-51.122762, -19.142828],\n            [-50.998167, -20.181119],\n            [-54.196101, -24.043558],\n            [-55.400518, -23.877432],\n            [-55.815834, -22.340762],\n            [-57.975478, -22.00851],\n            [-57.601693, -17.772285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-47.218791, -15.488047],\n            [-47.218791, -16.111021],\n            [-48.381676, -16.069489],\n            [-48.340144, -15.363452],\n            [-47.218791, -15.488047]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-51.122762, -19.142828],\n            [-53.157811, -18.104538],\n            [-52.825558, -16.152553],\n            [-50.458256, -12.830024],\n            [-47.634107, -13.369935],\n            [-46.229565, -12.801568],\n            [-45.889779, -15.155794],\n            [-47.218791, -15.737236],\n            [-47.218791, -15.488047],\n            [-48.340144, -15.363452],\n            [-48.381676, -16.069489],\n            [-47.218791, -16.111021],\n            [-47.343386, -18.395259],\n            [-49.087713, -18.436791],\n            [-51.122762, -19.142828]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50.998167, -20.181119],\n            [-51.122762, -19.142828],\n            [-49.087713, -18.436791],\n            [-47.343386, -18.395259],\n            [-47.218791, -16.111021],\n            [-47.218791, -15.737236],\n            [-45.889779, -15.155794],\n            [-44.270047, -14.200567],\n            [-40.033822, -15.944895],\n            [-40.615265, -17.855349],\n            [-41.861213, -20.679498],\n            [-42.857972, -22.050041],\n            [-46.305095, -22.839142],\n            [-47.343386, -20.181119],\n            [-50.998167, -20.181119]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40.615265, -17.855349],\n            [-39.45238, -18.312196],\n            [-40.033822, -20.014992],\n            [-40.905986, -21.302472],\n            [-41.861213, -20.679498],\n            [-40.615265, -17.855349]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40.905986, -21.302472],\n            [-41.861213, -23.0468],\n            [-44.436173, -23.295989],\n            [-44.611488, -22.451448],\n            [-42.857972, -22.050041],\n            [-41.861213, -20.679498],\n            [-40.905986, -21.302472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-44.436173, -23.295989],\n            [-48.215549, -25.206443],\n            [-49.336903, -24.666533],\n            [-49.835282, -22.880673],\n            [-52.968303, -22.560634],\n            [-50.998167, -20.181119],\n            [-47.343386, -20.181119],\n            [-46.305095, -22.839142],\n            [-44.611488, -22.451448],\n            [-44.436173, -23.295989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-48.215549, -25.206443],\n            [-48.506271, -26.120139],\n            [-51.288889, -26.41086],\n            [-53.573127, -26.203202],\n            [-54.196101, -24.043558],\n            [-52.968303, -22.560634],\n            [-49.835282, -22.880673],\n            [-49.336903, -24.666533],\n            [-48.215549, -25.206443]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.573127, -26.203202],\n            [-51.288889, -26.41086],\n            [-48.506271, -26.120139],\n            [-48.298613, -27.94753],\n            [-49.752219, -29.276541],\n            [-51.57961, -27.44915],\n            [-53.863848, -27.158429],\n            [-53.573127, -26.203202]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.863848, -27.158429],\n            [-51.57961, -27.44915],\n            [-49.752219, -29.276541],\n            [-50.499788, -31.228527],\n            [-52.825558, -33.263576],\n            [-57.435567, -30.231768],\n            [-55.774302, -28.404377],\n            [-53.863848, -27.158429]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-70.711838, -9.6667]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-64.895682, -3.539922]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-61.034973, 2.481296]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-54.04728, -2.47827]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-51.93955, 1.532991]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-45.204508, -5.658899]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-43.190225, -7.532436]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-39.369317, -5.171595]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-36.481008, -5.729062]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-36.701498, -7.265543]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-38.37127, -8.428198]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-36.559011, -9.590558]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-37.375799, -10.504254]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-41.611885, -12.314066]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-47.69331, -10.670411]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-63.02676, -10.556168]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-57.236215, -12.990613]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-54.533546, -20.933879]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-47.78985, -15.758002]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-48.723366, -15.939895]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-45.869014, -18.350761]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-40.573733, -19.632901]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-42.755674, -22.137708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-48.227816, -22.6959]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.990053, -24.761505]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.980368, -27.223693]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-53.104413, -29.573196]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0,\n        \"stroke-width\": 5,\n        \"stroke\": \"#a00\",\n        \"nearestNeighborAnalysis\": {\n          \"units\": \"kilometers\",\n          \"arealUnits\": \"kilometers²\",\n          \"observedMeanDistance\": 397.83037100327755,\n          \"expectedMeanDistance\": 282.2804354834354,\n          \"nearestNeighborIndex\": 1.4093444709405756,\n          \"numberOfPoints\": 27,\n          \"zScore\": 4.069131206763539\n        }\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-66.82171, -9.88128],\n            [-69.147481, -11.210291],\n            [-70.725682, -10.794975],\n            [-70.767213, -9.341369],\n            [-72.926857, -9.715153],\n            [-73.882084, -7.05713],\n            [-72.802262, -5.188208],\n            [-69.978113, -4.232981],\n            [-69.479733, -1.076578],\n            [-69.853518, 1.747571],\n            [-67.237027, 2.079824],\n            [-65.492699, 0.792344],\n            [-63.540713, 2.204419],\n            [-64.579004, 4.280999],\n            [-62.128639, 4.239468],\n            [-60.176653, 5.402353],\n            [-59.304489, 3.78262],\n            [-59.968995, 2.121356],\n            [-58.930705, 1.249192],\n            [-56.854124, 2.24595],\n            [-54.777544, 2.287482],\n            [-52.86709, 2.329014],\n            [-51.455015, 4.364062],\n            [-49.793751, 1.083065],\n            [-50.582851, 0.460091],\n            [-45.889779, -1.242705],\n            [-41.695087, -2.945501],\n            [-41.155176, -2.945501],\n            [-39.369317, -2.945501],\n            [-37.292736, -4.772892],\n            [-35.548409, -5.188208],\n            [-34.966966, -6.558751],\n            [-34.717776, -7.513978],\n            [-35.091561, -9.009116],\n            [-36.420572, -10.545785],\n            [-37.541926, -11.750202],\n            [-38.995532, -13.120745],\n            [-38.621748, -15.737236],\n            [-39.45238, -18.312196],\n            [-40.033822, -20.014992],\n            [-40.905986, -21.302472],\n            [-41.861213, -23.0468],\n            [-44.436173, -23.295989],\n            [-48.215549, -25.206443],\n            [-48.506271, -26.120139],\n            [-48.298613, -27.94753],\n            [-49.752219, -29.276541],\n            [-50.499788, -31.228527],\n            [-52.825558, -33.263576],\n            [-57.435567, -30.231768],\n            [-55.774302, -28.404377],\n            [-53.863848, -27.158429],\n            [-53.573127, -26.203202],\n            [-54.196101, -24.043558],\n            [-55.400518, -23.877432],\n            [-55.815834, -22.340762],\n            [-57.975478, -22.00851],\n            [-57.601693, -17.772285],\n            [-58.349262, -17.647691],\n            [-58.390794, -16.318679],\n            [-60.176653, -16.277147],\n            [-60.550437, -13.743719],\n            [-65.035851, -11.916328],\n            [-65.243509, -9.839748],\n            [-66.82171, -9.88128]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/test/out/random-large-study-area.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.954694, 38.404164]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.136099, 38.363429]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.21113, 38.30495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.193729, 38.350466]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.018305, 38.364227]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.920177, 38.452453]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.086054, 38.159283]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.260167, 38.291011]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.289808, 38.242273]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.087129, 38.396721]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.022715, 38.106771]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.13807, 38.291032]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.094412, 38.232696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.078316, 38.482505]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.929359, 38.376163]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.920108, 38.319165]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.041088, 38.483539]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.206664, 38.146765]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.234475, 38.395941]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.190799, 38.386155]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.151348, 38.40649]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.158765, 38.356782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.281541, 38.445631]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.913574, 38.218264]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.058748, 38.488617]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.908882, 38.158353]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.264713, 38.149991]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.933592, 38.407246]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.979399, 38.475214]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.139436, 38.388425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.20602, 38.226133]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.15572, 38.41356]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.12845, 38.119456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.286209, 38.189841]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.181364, 38.359292]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.26593, 38.148479]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.182017, 38.452389]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.953341, 38.486357]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.012162, 38.491996]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.217949, 38.409859]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.063068, 38.409282]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.979337, 38.271477]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.290449, 38.418195]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.179416, 38.330713]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.03542, 38.390834]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.973366, 38.343977]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.24081, 38.227046]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.078366, 38.128494]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.035873, 38.161218]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.283248, 38.294586]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.107167, 38.287484]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.162158, 38.343681]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.017261, 38.15401]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.258804, 38.478564]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.991477, 38.277807]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.083668, 38.391482]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.151631, 38.127203]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.298224, 38.124581]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.938073, 38.479995]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.972151, 38.2251]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.211151, 38.327362]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.248352, 38.395749]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.291831, 38.149854]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.049692, 38.453749]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.204458, 38.175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.291144, 38.334861]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.90061, 38.310766]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.074624, 38.170073]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.949588, 38.297251]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.015858, 38.455465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.129393, 38.433759]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.220397, 38.434073]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.122567, 38.117247]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.182398, 38.354991]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.287897, 38.494925]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.074061, 38.33621]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.275954, 38.439155]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.974067, 38.403501]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1945, 38.225454]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.055501, 38.330317]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.953984, 38.358586]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.910739, 38.133025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.052012, 38.233271]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.243292, 38.336191]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.09942, 38.422624]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.983348, 38.189067]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.951621, 38.417607]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.19533, 38.103721]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.141613, 38.37755]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.128715, 38.224561]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.939214, 38.321806]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.078105, 38.416801]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.996924, 38.391104]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.220773, 38.225846]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.169736, 38.309506]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.969041, 38.431855]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.203425, 38.174003]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.230895, 38.106708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.236069, 38.380582]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.916406, 38.128031]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.057459, 38.457597]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.940215, 38.346589]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.177704, 38.384899]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.194755, 38.256258]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.279771, 38.419831]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.185981, 38.235418]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.096144, 38.196312]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.284543, 38.32892]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.251747, 38.462856]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.977257, 38.466877]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.071951, 38.34273]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.03117, 38.462884]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.061677, 38.406707]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.904584, 38.277116]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.298674, 38.446268]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.993924, 38.42056]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.98545, 38.473894]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.113358, 38.392358]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.25751, 38.251519]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.081415, 38.186072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.164533, 38.308151]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.995219, 38.166287]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.157178, 38.276015]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.015802, 38.195386]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.273499, 38.146365]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.186797, 38.154871]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.990001, 38.420671]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.902532, 38.359039]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.142114, 38.148616]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.938303, 38.493313]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.984508, 38.169281]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.029585, 38.176145]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.138745, 38.442638]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.216901, 38.483665]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.95789, 38.47703]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.022326, 38.157209]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.987101, 38.131355]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.923245, 38.195151]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.112717, 38.386286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.9012, 38.264649]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.972699, 38.321883]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.177781, 38.157193]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.075116, 38.12531]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.156723, 38.262195]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.9223, 38.213463]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.009281, 38.302385]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.159883, 38.191427]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.014566, 38.459808]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.283315, 38.207977]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.064455, 38.285038]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill-opacity\": 0,\n        \"stroke-width\": 5,\n        \"stroke\": \"#a00\",\n        \"nearestNeighborAnalysis\": {\n          \"units\": \"kilometers\",\n          \"arealUnits\": \"kilometers²\",\n          \"observedMeanDistance\": 1.6516270145942438,\n          \"expectedMeanDistance\": 25.46147090834068,\n          \"nearestNeighborIndex\": 0.0648676983564686,\n          \"numberOfPoints\": 150,\n          \"zScore\": -21.91036291916375\n        }\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-15, 38.103721],\n            [-8.90061, 38.103721],\n            [-8.90061, 45],\n            [-15, 45],\n            [-15, 38.103721]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/test/out/random-outlier.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.954694, 38.404164]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-15, 45]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.136099, 38.363429]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.21113, 38.30495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.193729, 38.350466]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.018305, 38.364227]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.920177, 38.452453]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.086054, 38.159283]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.260167, 38.291011]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.289808, 38.242273]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.087129, 38.396721]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.022715, 38.106771]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.13807, 38.291032]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.094412, 38.232696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.078316, 38.482505]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.929359, 38.376163]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.920108, 38.319165]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.041088, 38.483539]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.206664, 38.146765]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.234475, 38.395941]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.190799, 38.386155]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.151348, 38.40649]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.158765, 38.356782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.281541, 38.445631]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.913574, 38.218264]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.058748, 38.488617]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.908882, 38.158353]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.264713, 38.149991]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.933592, 38.407246]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.979399, 38.475214]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.139436, 38.388425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.20602, 38.226133]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.15572, 38.41356]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.12845, 38.119456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.286209, 38.189841]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.181364, 38.359292]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.26593, 38.148479]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.182017, 38.452389]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.953341, 38.486357]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.012162, 38.491996]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.217949, 38.409859]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.063068, 38.409282]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.979337, 38.271477]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.290449, 38.418195]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.179416, 38.330713]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.03542, 38.390834]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.973366, 38.343977]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.24081, 38.227046]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.078366, 38.128494]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.035873, 38.161218]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.283248, 38.294586]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.107167, 38.287484]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.162158, 38.343681]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.017261, 38.15401]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.258804, 38.478564]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.991477, 38.277807]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.083668, 38.391482]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.151631, 38.127203]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.298224, 38.124581]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.938073, 38.479995]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.972151, 38.2251]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.211151, 38.327362]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.248352, 38.395749]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.291831, 38.149854]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.049692, 38.453749]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.204458, 38.175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.291144, 38.334861]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.90061, 38.310766]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.074624, 38.170073]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.949588, 38.297251]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.015858, 38.455465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.129393, 38.433759]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.220397, 38.434073]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.122567, 38.117247]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.182398, 38.354991]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.287897, 38.494925]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.074061, 38.33621]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.275954, 38.439155]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.974067, 38.403501]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1945, 38.225454]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.055501, 38.330317]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.953984, 38.358586]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.910739, 38.133025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.052012, 38.233271]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.243292, 38.336191]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.09942, 38.422624]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.983348, 38.189067]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.951621, 38.417607]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.19533, 38.103721]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.141613, 38.37755]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.128715, 38.224561]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.939214, 38.321806]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.078105, 38.416801]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.996924, 38.391104]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.220773, 38.225846]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.169736, 38.309506]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.969041, 38.431855]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.203425, 38.174003]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.230895, 38.106708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.236069, 38.380582]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.916406, 38.128031]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.057459, 38.457597]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.940215, 38.346589]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.177704, 38.384899]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.194755, 38.256258]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.279771, 38.419831]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.185981, 38.235418]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.096144, 38.196312]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.284543, 38.32892]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.251747, 38.462856]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.977257, 38.466877]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.071951, 38.34273]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.03117, 38.462884]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.061677, 38.406707]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.904584, 38.277116]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.298674, 38.446268]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.993924, 38.42056]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.98545, 38.473894]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.113358, 38.392358]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.25751, 38.251519]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.081415, 38.186072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.164533, 38.308151]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.995219, 38.166287]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.157178, 38.276015]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.015802, 38.195386]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.273499, 38.146365]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.186797, 38.154871]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.990001, 38.420671]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.902532, 38.359039]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.142114, 38.148616]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.938303, 38.493313]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.984508, 38.169281]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.029585, 38.176145]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.138745, 38.442638]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.216901, 38.483665]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.95789, 38.47703]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.022326, 38.157209]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.987101, 38.131355]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.923245, 38.195151]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.112717, 38.386286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.9012, 38.264649]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.972699, 38.321883]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.177781, 38.157193]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.075116, 38.12531]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.156723, 38.262195]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.9223, 38.213463]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.009281, 38.302385]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.159883, 38.191427]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.014566, 38.459808]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.283315, 38.207977]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.064455, 38.285038]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-15, 38.10372140158265, -8.900609997813907, 45],\n      \"properties\": {\n        \"fill-opacity\": 0,\n        \"stroke-width\": 5,\n        \"stroke\": \"#a00\",\n        \"nearestNeighborAnalysis\": {\n          \"units\": \"kilometers\",\n          \"arealUnits\": \"kilometers²\",\n          \"observedMeanDistance\": 7.363991103875287,\n          \"expectedMeanDistance\": 25.377020579774225,\n          \"nearestNeighborIndex\": 0.29018343901823024,\n          \"numberOfPoints\": 151,\n          \"zScore\": -16.686508895950315\n        }\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-15, 38.103721],\n            [-8.90061, 38.103721],\n            [-8.90061, 45],\n            [-15, 45],\n            [-15, 38.103721]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/test/out/random.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.954694, 38.404164]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.136099, 38.363429]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.21113, 38.30495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.193729, 38.350466]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.018305, 38.364227]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.920177, 38.452453]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.086054, 38.159283]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.260167, 38.291011]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.289808, 38.242273]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.087129, 38.396721]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.022715, 38.106771]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.13807, 38.291032]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.094412, 38.232696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.078316, 38.482505]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.929359, 38.376163]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.920108, 38.319165]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.041088, 38.483539]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.206664, 38.146765]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.234475, 38.395941]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.190799, 38.386155]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.151348, 38.40649]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.158765, 38.356782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.281541, 38.445631]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.913574, 38.218264]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.058748, 38.488617]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.908882, 38.158353]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.264713, 38.149991]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.933592, 38.407246]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.979399, 38.475214]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.139436, 38.388425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.20602, 38.226133]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.15572, 38.41356]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.12845, 38.119456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.286209, 38.189841]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.181364, 38.359292]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.26593, 38.148479]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.182017, 38.452389]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.953341, 38.486357]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.012162, 38.491996]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.217949, 38.409859]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.063068, 38.409282]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.979337, 38.271477]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.290449, 38.418195]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.179416, 38.330713]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.03542, 38.390834]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.973366, 38.343977]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.24081, 38.227046]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.078366, 38.128494]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.035873, 38.161218]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.283248, 38.294586]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.107167, 38.287484]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.162158, 38.343681]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.017261, 38.15401]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.258804, 38.478564]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.991477, 38.277807]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.083668, 38.391482]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.151631, 38.127203]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.298224, 38.124581]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.938073, 38.479995]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.972151, 38.2251]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.211151, 38.327362]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.248352, 38.395749]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.291831, 38.149854]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.049692, 38.453749]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.204458, 38.175]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.291144, 38.334861]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.90061, 38.310766]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.074624, 38.170073]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.949588, 38.297251]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.015858, 38.455465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.129393, 38.433759]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.220397, 38.434073]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.122567, 38.117247]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.182398, 38.354991]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.287897, 38.494925]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.074061, 38.33621]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.275954, 38.439155]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.974067, 38.403501]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1945, 38.225454]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.055501, 38.330317]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.953984, 38.358586]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.910739, 38.133025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.052012, 38.233271]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.243292, 38.336191]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.09942, 38.422624]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.983348, 38.189067]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.951621, 38.417607]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.19533, 38.103721]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.141613, 38.37755]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.128715, 38.224561]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.939214, 38.321806]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.078105, 38.416801]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.996924, 38.391104]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.220773, 38.225846]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.169736, 38.309506]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.969041, 38.431855]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.203425, 38.174003]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.230895, 38.106708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.236069, 38.380582]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.916406, 38.128031]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.057459, 38.457597]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.940215, 38.346589]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.177704, 38.384899]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.194755, 38.256258]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.279771, 38.419831]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.185981, 38.235418]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.096144, 38.196312]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.284543, 38.32892]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.251747, 38.462856]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.977257, 38.466877]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.071951, 38.34273]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.03117, 38.462884]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.061677, 38.406707]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.904584, 38.277116]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.298674, 38.446268]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.993924, 38.42056]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.98545, 38.473894]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.113358, 38.392358]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.25751, 38.251519]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.081415, 38.186072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.164533, 38.308151]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.995219, 38.166287]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.157178, 38.276015]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.015802, 38.195386]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.273499, 38.146365]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.186797, 38.154871]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.990001, 38.420671]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.902532, 38.359039]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.142114, 38.148616]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.938303, 38.493313]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.984508, 38.169281]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.029585, 38.176145]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.138745, 38.442638]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.216901, 38.483665]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.95789, 38.47703]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.022326, 38.157209]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.987101, 38.131355]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.923245, 38.195151]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.112717, 38.386286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.9012, 38.264649]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.972699, 38.321883]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.177781, 38.157193]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.075116, 38.12531]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.156723, 38.262195]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.9223, 38.213463]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.009281, 38.302385]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.159883, 38.191427]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.014566, 38.459808]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.283315, 38.207977]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.064455, 38.285038]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [\n        -9.29867379414539, 38.10372140158265, -8.900609997813907, 38.49492542236455\n      ],\n      \"properties\": {\n        \"fill-opacity\": 0,\n        \"stroke-width\": 5,\n        \"stroke\": \"#a00\",\n        \"nearestNeighborAnalysis\": {\n          \"units\": \"kilometers\",\n          \"arealUnits\": \"kilometers²\",\n          \"observedMeanDistance\": 1.6516270145942438,\n          \"expectedMeanDistance\": 1.5869473002516816,\n          \"nearestNeighborIndex\": 1.0407573171032865,\n          \"numberOfPoints\": 150,\n          \"zScore\": 0.9549532272331418\n        }\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.298674, 38.103721],\n            [-8.90061, 38.103721],\n            [-8.90061, 38.494925],\n            [-9.298674, 38.494925],\n            [-9.298674, 38.103721]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/test/out/squares.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299993, 38.120136],\n            [-9.299993, 38.165102],\n            [-9.242852, 38.165102],\n            [-9.242852, 38.120136],\n            [-9.299993, 38.120136]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299993, 38.165102],\n            [-9.299993, 38.210068],\n            [-9.242852, 38.210068],\n            [-9.242852, 38.165102],\n            [-9.299993, 38.165102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299993, 38.210068],\n            [-9.299993, 38.255034],\n            [-9.242852, 38.255034],\n            [-9.242852, 38.210068],\n            [-9.299993, 38.210068]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299993, 38.255034],\n            [-9.299993, 38.3],\n            [-9.242852, 38.3],\n            [-9.242852, 38.255034],\n            [-9.299993, 38.255034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299993, 38.3],\n            [-9.299993, 38.344966],\n            [-9.242852, 38.344966],\n            [-9.242852, 38.3],\n            [-9.299993, 38.3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299993, 38.344966],\n            [-9.299993, 38.389932],\n            [-9.242852, 38.389932],\n            [-9.242852, 38.344966],\n            [-9.299993, 38.344966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299993, 38.389932],\n            [-9.299993, 38.434898],\n            [-9.242852, 38.434898],\n            [-9.242852, 38.389932],\n            [-9.299993, 38.389932]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299993, 38.434898],\n            [-9.299993, 38.479864],\n            [-9.242852, 38.479864],\n            [-9.242852, 38.434898],\n            [-9.299993, 38.434898]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242852, 38.120136],\n            [-9.242852, 38.165102],\n            [-9.185711, 38.165102],\n            [-9.185711, 38.120136],\n            [-9.242852, 38.120136]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242852, 38.165102],\n            [-9.242852, 38.210068],\n            [-9.185711, 38.210068],\n            [-9.185711, 38.165102],\n            [-9.242852, 38.165102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242852, 38.210068],\n            [-9.242852, 38.255034],\n            [-9.185711, 38.255034],\n            [-9.185711, 38.210068],\n            [-9.242852, 38.210068]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242852, 38.255034],\n            [-9.242852, 38.3],\n            [-9.185711, 38.3],\n            [-9.185711, 38.255034],\n            [-9.242852, 38.255034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242852, 38.3],\n            [-9.242852, 38.344966],\n            [-9.185711, 38.344966],\n            [-9.185711, 38.3],\n            [-9.242852, 38.3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242852, 38.344966],\n            [-9.242852, 38.389932],\n            [-9.185711, 38.389932],\n            [-9.185711, 38.344966],\n            [-9.242852, 38.344966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242852, 38.389932],\n            [-9.242852, 38.434898],\n            [-9.185711, 38.434898],\n            [-9.185711, 38.389932],\n            [-9.242852, 38.389932]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.242852, 38.434898],\n            [-9.242852, 38.479864],\n            [-9.185711, 38.479864],\n            [-9.185711, 38.434898],\n            [-9.242852, 38.434898]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711, 38.120136],\n            [-9.185711, 38.165102],\n            [-9.12857, 38.165102],\n            [-9.12857, 38.120136],\n            [-9.185711, 38.120136]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711, 38.165102],\n            [-9.185711, 38.210068],\n            [-9.12857, 38.210068],\n            [-9.12857, 38.165102],\n            [-9.185711, 38.165102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711, 38.210068],\n            [-9.185711, 38.255034],\n            [-9.12857, 38.255034],\n            [-9.12857, 38.210068],\n            [-9.185711, 38.210068]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711, 38.255034],\n            [-9.185711, 38.3],\n            [-9.12857, 38.3],\n            [-9.12857, 38.255034],\n            [-9.185711, 38.255034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711, 38.3],\n            [-9.185711, 38.344966],\n            [-9.12857, 38.344966],\n            [-9.12857, 38.3],\n            [-9.185711, 38.3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711, 38.344966],\n            [-9.185711, 38.389932],\n            [-9.12857, 38.389932],\n            [-9.12857, 38.344966],\n            [-9.185711, 38.344966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711, 38.389932],\n            [-9.185711, 38.434898],\n            [-9.12857, 38.434898],\n            [-9.12857, 38.389932],\n            [-9.185711, 38.389932]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.185711, 38.434898],\n            [-9.185711, 38.479864],\n            [-9.12857, 38.479864],\n            [-9.12857, 38.434898],\n            [-9.185711, 38.434898]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857, 38.120136],\n            [-9.12857, 38.165102],\n            [-9.07143, 38.165102],\n            [-9.07143, 38.120136],\n            [-9.12857, 38.120136]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857, 38.165102],\n            [-9.12857, 38.210068],\n            [-9.07143, 38.210068],\n            [-9.07143, 38.165102],\n            [-9.12857, 38.165102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857, 38.210068],\n            [-9.12857, 38.255034],\n            [-9.07143, 38.255034],\n            [-9.07143, 38.210068],\n            [-9.12857, 38.210068]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857, 38.255034],\n            [-9.12857, 38.3],\n            [-9.07143, 38.3],\n            [-9.07143, 38.255034],\n            [-9.12857, 38.255034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857, 38.3],\n            [-9.12857, 38.344966],\n            [-9.07143, 38.344966],\n            [-9.07143, 38.3],\n            [-9.12857, 38.3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857, 38.344966],\n            [-9.12857, 38.389932],\n            [-9.07143, 38.389932],\n            [-9.07143, 38.344966],\n            [-9.12857, 38.344966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857, 38.389932],\n            [-9.12857, 38.434898],\n            [-9.07143, 38.434898],\n            [-9.07143, 38.389932],\n            [-9.12857, 38.389932]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.12857, 38.434898],\n            [-9.12857, 38.479864],\n            [-9.07143, 38.479864],\n            [-9.07143, 38.434898],\n            [-9.12857, 38.434898]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.07143, 38.120136],\n            [-9.07143, 38.165102],\n            [-9.014289, 38.165102],\n            [-9.014289, 38.120136],\n            [-9.07143, 38.120136]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.07143, 38.165102],\n            [-9.07143, 38.210068],\n            [-9.014289, 38.210068],\n            [-9.014289, 38.165102],\n            [-9.07143, 38.165102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.07143, 38.210068],\n            [-9.07143, 38.255034],\n            [-9.014289, 38.255034],\n            [-9.014289, 38.210068],\n            [-9.07143, 38.210068]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.07143, 38.255034],\n            [-9.07143, 38.3],\n            [-9.014289, 38.3],\n            [-9.014289, 38.255034],\n            [-9.07143, 38.255034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.07143, 38.3],\n            [-9.07143, 38.344966],\n            [-9.014289, 38.344966],\n            [-9.014289, 38.3],\n            [-9.07143, 38.3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.07143, 38.344966],\n            [-9.07143, 38.389932],\n            [-9.014289, 38.389932],\n            [-9.014289, 38.344966],\n            [-9.07143, 38.344966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.07143, 38.389932],\n            [-9.07143, 38.434898],\n            [-9.014289, 38.434898],\n            [-9.014289, 38.389932],\n            [-9.07143, 38.389932]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.07143, 38.434898],\n            [-9.07143, 38.479864],\n            [-9.014289, 38.479864],\n            [-9.014289, 38.434898],\n            [-9.07143, 38.434898]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.014289, 38.120136],\n            [-9.014289, 38.165102],\n            [-8.957148, 38.165102],\n            [-8.957148, 38.120136],\n            [-9.014289, 38.120136]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.014289, 38.165102],\n            [-9.014289, 38.210068],\n            [-8.957148, 38.210068],\n            [-8.957148, 38.165102],\n            [-9.014289, 38.165102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.014289, 38.210068],\n            [-9.014289, 38.255034],\n            [-8.957148, 38.255034],\n            [-8.957148, 38.210068],\n            [-9.014289, 38.210068]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.014289, 38.255034],\n            [-9.014289, 38.3],\n            [-8.957148, 38.3],\n            [-8.957148, 38.255034],\n            [-9.014289, 38.255034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.014289, 38.3],\n            [-9.014289, 38.344966],\n            [-8.957148, 38.344966],\n            [-8.957148, 38.3],\n            [-9.014289, 38.3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.014289, 38.344966],\n            [-9.014289, 38.389932],\n            [-8.957148, 38.389932],\n            [-8.957148, 38.344966],\n            [-9.014289, 38.344966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.014289, 38.389932],\n            [-9.014289, 38.434898],\n            [-8.957148, 38.434898],\n            [-8.957148, 38.389932],\n            [-9.014289, 38.389932]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.014289, 38.434898],\n            [-9.014289, 38.479864],\n            [-8.957148, 38.479864],\n            [-8.957148, 38.434898],\n            [-9.014289, 38.434898]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.957148, 38.120136],\n            [-8.957148, 38.165102],\n            [-8.900007, 38.165102],\n            [-8.900007, 38.120136],\n            [-8.957148, 38.120136]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.957148, 38.165102],\n            [-8.957148, 38.210068],\n            [-8.900007, 38.210068],\n            [-8.900007, 38.165102],\n            [-8.957148, 38.165102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.957148, 38.210068],\n            [-8.957148, 38.255034],\n            [-8.900007, 38.255034],\n            [-8.900007, 38.210068],\n            [-8.957148, 38.210068]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.957148, 38.255034],\n            [-8.957148, 38.3],\n            [-8.900007, 38.3],\n            [-8.900007, 38.255034],\n            [-8.957148, 38.255034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.957148, 38.3],\n            [-8.957148, 38.344966],\n            [-8.900007, 38.344966],\n            [-8.900007, 38.3],\n            [-8.957148, 38.3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.957148, 38.344966],\n            [-8.957148, 38.389932],\n            [-8.900007, 38.389932],\n            [-8.900007, 38.344966],\n            [-8.957148, 38.344966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.957148, 38.389932],\n            [-8.957148, 38.434898],\n            [-8.900007, 38.434898],\n            [-8.900007, 38.389932],\n            [-8.957148, 38.389932]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.957148, 38.434898],\n            [-8.957148, 38.479864],\n            [-8.900007, 38.479864],\n            [-8.900007, 38.434898],\n            [-8.957148, 38.434898]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.271422, 38.142619]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.271422, 38.187585]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.271422, 38.232551]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.271422, 38.277517]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.271422, 38.322483]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.271422, 38.367449]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.271422, 38.412415]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.271422, 38.457381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.214281, 38.142619]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.214281, 38.187585]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.214281, 38.232551]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.214281, 38.277517]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.214281, 38.322483]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.214281, 38.367449]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.214281, 38.412415]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.214281, 38.457381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.157141, 38.142619]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.157141, 38.187585]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.157141, 38.232551]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.157141, 38.277517]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.157141, 38.322483]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.157141, 38.367449]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.157141, 38.412415]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.157141, 38.457381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1, 38.142619]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1, 38.187585]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1, 38.232551]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1, 38.277517]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1, 38.322483]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1, 38.367449]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1, 38.412415]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.1, 38.457381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.042859, 38.142619]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.042859, 38.187585]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.042859, 38.232551]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.042859, 38.277517]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.042859, 38.322483]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.042859, 38.367449]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.042859, 38.412415]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-9.042859, 38.457381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.985719, 38.142619]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.985719, 38.187585]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.985719, 38.232551]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.985719, 38.277517]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.985719, 38.322483]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.985719, 38.367449]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.985719, 38.412415]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.985719, 38.457381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.928578, 38.142619]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.928578, 38.187585]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.928578, 38.232551]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.928578, 38.277517]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.928578, 38.322483]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.928578, 38.367449]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.928578, 38.412415]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0a0\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8.928578, 38.457381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [\n        -9.299992605418552, 38.12013592725509, -8.900007394581449, 38.47986407274493\n      ],\n      \"properties\": {\n        \"fill-opacity\": 0,\n        \"stroke-width\": 5,\n        \"stroke\": \"#a00\",\n        \"nearestNeighborAnalysis\": {\n          \"units\": \"kilometers\",\n          \"arealUnits\": \"kilometers²\",\n          \"observedMeanDistance\": 4.986280150858801,\n          \"expectedMeanDistance\": 2.4965676693887655,\n          \"nearestNeighborIndex\": 1.9972541549733325,\n          \"numberOfPoints\": 56,\n          \"zScore\": 14.276795896261763\n        }\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.299993, 38.120136],\n            [-8.900007, 38.120136],\n            [-8.900007, 38.479864],\n            [-9.299993, 38.479864],\n            [-9.299993, 38.120136]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { truncate } from \"@turf/truncate\";\nimport { centroid } from \"@turf/centroid\";\nimport { featureEach } from \"@turf/meta\";\nimport { featureCollection } from \"@turf/helpers\";\nimport { nearestNeighborAnalysis } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-nearest-neighbor\", (t) => {\n  fixtures.forEach((fixture) => {\n    const filename = fixture.filename;\n    const name = fixture.name;\n    const geojson = fixture.geojson;\n    const options = geojson.options;\n    const results = featureCollection([]);\n    featureEach(geojson, (feature) => results.features.push(truncate(feature)));\n    if (geojson.features[0].geometry.type === \"Polygon\") {\n      featureEach(geojson, (feature) =>\n        results.features.push(\n          truncate(\n            centroid(feature, { properties: { \"marker-color\": \"#0a0\" } })\n          )\n        )\n      );\n    }\n    results.features.push(truncate(nearestNeighborAnalysis(geojson, options)));\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEqual(results, loadJsonFileSync(directories.out + filename), name);\n  });\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-nearest-neighbor-analysis/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-nearest-point/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-nearest-point/README.md",
    "content": "# @turf/nearest-point\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## nearestPoint\n\nTakes a reference [point][1] and a FeatureCollection of Features\nwith Point geometries and returns the\npoint from the FeatureCollection closest to the reference. This calculation\nis geodesic.\n\n### Parameters\n\n*   `targetPoint` **[Coord][2]** the reference point\n*   `points` **[FeatureCollection][3]<[Point][1]>** against input point set\n*   `options` **[Object][4]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** the units of the numeric result. Supports all valid Turf [Units][5]. (optional, default `'kilometers'`)\n\n### Examples\n\n```javascript\nvar targetPoint = turf.point([28.965797, 41.010086], {\"marker-color\": \"#0F0\"});\nvar points = turf.featureCollection([\n    turf.point([28.973865, 41.011122]),\n    turf.point([28.948459, 41.024204]),\n    turf.point([28.938674, 41.013324])\n]);\n\nvar nearest = turf.nearestPoint(targetPoint, points);\n\n//addToMap\nvar addToMap = [targetPoint, points, nearest];\nnearest.properties['marker-color'] = '#F00';\n```\n\nReturns **[Feature][6]<[Point][1]>** the closest point in the set to the reference point\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[5]: https://turfjs.org/docs/api/types/Units\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/nearest-point\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-nearest-point/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport Benchmark from \"benchmark\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { nearestPoint } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst pts = loadJsonFileSync(path.join(__dirname, \"test\", \"in\", \"points.json\"));\n\n/**\n * Benchmark Results\n *\n * turf-nearest-point x 72,623 ops/sec ±9.23% (73 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-nearest-point\");\nsuite\n  .add(\"turf-nearest-point\", () =>\n    nearestPoint(pts.properties.targetPoint, pts)\n  )\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-nearest-point/index.ts",
    "content": "import { Feature, FeatureCollection, GeoJsonProperties, Point } from \"geojson\";\nimport { Coord, Units } from \"@turf/helpers\";\nimport { clone } from \"@turf/clone\";\nimport { distance } from \"@turf/distance\";\nimport { featureEach } from \"@turf/meta\";\n\ninterface NearestPoint<P extends GeoJsonProperties = GeoJsonProperties>\n  extends Feature<Point> {\n  properties: {\n    featureIndex: number;\n    distanceToPoint: number;\n  } & P;\n}\n\n/**\n * Takes a reference {@link Point|point} and a FeatureCollection of Features\n * with Point geometries and returns the\n * point from the FeatureCollection closest to the reference. This calculation\n * is geodesic.\n *\n * @function\n * @param {Coord} targetPoint the reference point\n * @param {FeatureCollection<Point>} points against input point set\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units='kilometers'] the units of the numeric result. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.\n * @returns {Feature<Point>} the closest point in the set to the reference point\n * @example\n * var targetPoint = turf.point([28.965797, 41.010086], {\"marker-color\": \"#0F0\"});\n * var points = turf.featureCollection([\n *     turf.point([28.973865, 41.011122]),\n *     turf.point([28.948459, 41.024204]),\n *     turf.point([28.938674, 41.013324])\n * ]);\n *\n * var nearest = turf.nearestPoint(targetPoint, points);\n *\n * //addToMap\n * var addToMap = [targetPoint, points, nearest];\n * nearest.properties['marker-color'] = '#F00';\n */\nfunction nearestPoint<P extends GeoJsonProperties = GeoJsonProperties>(\n  targetPoint: Coord,\n  points: FeatureCollection<Point, P>,\n  options: {\n    units?: Units;\n  } = {}\n): NearestPoint<P> {\n  // Input validation\n  if (!targetPoint) throw new Error(\"targetPoint is required\");\n  if (!points) throw new Error(\"points is required\");\n\n  let minDist = Infinity;\n  let bestFeatureIndex = 0;\n  featureEach(points, (pt, featureIndex) => {\n    const distanceToPoint = distance(targetPoint, pt, options);\n    if (distanceToPoint < minDist) {\n      bestFeatureIndex = featureIndex;\n      minDist = distanceToPoint;\n    }\n  });\n  const nearestPoint = clone(points.features[bestFeatureIndex]);\n\n  return {\n    ...nearestPoint,\n    properties: {\n      ...nearestPoint.properties,\n      featureIndex: bestFeatureIndex,\n      distanceToPoint: minDist,\n    },\n  };\n}\n\nexport { nearestPoint, NearestPoint };\nexport default nearestPoint;\n"
  },
  {
    "path": "packages/turf-nearest-point/package.json",
    "content": "{\n  \"name\": \"@turf/nearest-point\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Finds the nearest point from a FeatureCollection of Features with Point geometries to a given point.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"gis\",\n    \"near\",\n    \"nearest\",\n    \"point\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/clone\": \"workspace:*\",\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-nearest-point/test/in/points.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"targetPoint\": [-75.4, 39.4]\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.833, 39.284]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 25\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6, 39.984]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 23\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.221, 39.125]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 29\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.358, 39.987]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 12\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.9221, 39.27]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 11\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.534, 39.123]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 49\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.21, 39.12]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 50\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.22, 39.33]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 90\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.44, 39.55]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 22\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.77, 39.66]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 99\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.44, 39.11]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 55\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.05, 39.92]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 41\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.88, 39.98]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 52\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.55, 39.55]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 143\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.33, 39.44]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 76\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.56, 39.24]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 18\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.56, 39.36]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 52\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point/test/out/points.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.833, 39.284]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 25\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6, 39.984]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 23\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.221, 39.125]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 29\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.358, 39.987]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 12\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.9221, 39.27]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 11\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.534, 39.123]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 49\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.21, 39.12]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 50\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.22, 39.33]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 90\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.44, 39.55]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 22\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.77, 39.66]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 99\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.44, 39.11]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 55\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.05, 39.92]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 41\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.88, 39.98]\n      },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 52\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.55, 39.55]\n      },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 143\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.33, 39.44]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 76\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.56, 39.24]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 18\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.56, 39.36]\n      },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 52\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.4, 39.4]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 76,\n        \"featureIndex\": 14,\n        \"distanceToPoint\": 7.479219230179186,\n        \"marker-color\": \"#F00\",\n        \"marker-symbol\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.33, 39.44]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { featureCollection, point } from \"@turf/helpers\";\nimport { nearestPoint } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-nearest-point\", (t) => {\n  fixtures.forEach((fixture) => {\n    const filename = fixture.filename;\n    const name = fixture.name;\n    const geojson = fixture.geojson;\n    const targetPoint = point(geojson.properties.targetPoint);\n    const nearestPt = nearestPoint(targetPoint, geojson);\n\n    // Style results\n    nearestPt.properties[\"marker-color\"] = \"#F00\";\n    nearestPt.properties[\"marker-symbol\"] = \"star\";\n    targetPoint.properties[\"marker-color\"] = \"#00F\";\n    targetPoint.properties[\"marker-symbol\"] = \"circle\";\n    const results = featureCollection([\n      ...geojson.features,\n      targetPoint,\n      nearestPt,\n    ]);\n\n    // Save output\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEqual(results, loadJsonFileSync(directories.out + filename), name);\n  });\n  t.end();\n});\n\ntest(\"nearest-point -- prevent input mutation\", (t) => {\n  const pt1 = point([40, 50], { featureIndex: \"foo\" });\n  const pt2 = point([20, -10], { distanceToPoint: \"bar\" });\n  const pts = featureCollection([pt1, pt2]);\n  const nearestPt = nearestPoint([0, 0], pts);\n\n  // Check if featureIndex properties was added to properties\n  t.equal(nearestPt.properties.featureIndex, 1);\n\n  // Check if previous input points have been modified\n  t.deepEqual(pt1.properties, { featureIndex: \"foo\" });\n  t.deepEqual(pt2.properties, { distanceToPoint: \"bar\" });\n  t.end();\n});\n\ntest(\"nearest-point -- use different units\", (t) => {\n  const pt1 = point([40, 50], { featureIndex: \"foo\" });\n  const pt2 = point([20, -10], { distanceToPoint: \"bar\" });\n  const pts = featureCollection([pt1, pt2]);\n  const distanceInKilometers = nearestPoint([0, 0], pts).properties\n    .distanceToPoint;\n  const distanceInMeters = nearestPoint([0, 0], pts, { units: \"meters\" })\n    .properties.distanceToPoint;\n  const oneKilometerInMeters = 1000;\n\n  // Check if the proper distance gets returned when using \"units\" option\n  t.equal(distanceInKilometers, distanceInMeters / oneKilometerInMeters);\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-nearest-point/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-nearest-point/types.ts",
    "content": "import { point, featureCollection } from \"@turf/helpers\";\nimport { nearestPoint } from \"./index.js\";\n\nconst targetPoint = point([28.965797, 41.010086], { \"marker-color\": \"#0F0\" });\nconst points = featureCollection([\n  point([28.973865, 41.011122]),\n  point([28.948459, 41.024204]),\n  point([28.938674, 41.013324]),\n]);\nconst nearest = nearestPoint(targetPoint, points, { units: \"kilometers\" });\nnearest.properties.distanceToPoint;\nnearest.properties.featureIndex;\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/README.md",
    "content": "# @turf/nearest-point-on-line\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## nearestPointOnLine\n\nReturns the nearest point on a line to a given point.\n\nIf any of the segments in the input line string are antipodal and therefore\nhave an undefined arc, this function will instead return that the point lies\non the line.\n\n⚠️ We have begun the process of migrating to different return properties for\nthis function. The new properties we recommend using as of v7.4 are:\n\n*   lineStringIndex - point was found on the nth LineString of an input MultiLineString. Previously `multiFeatureIndex`\n*   segmentIndex - point was found on the nth segment of the above LineString. Previously `index`\n*   totalDistance - distance from the start of the overall MultiLineString. Previously `location`\n*   lineDistance - distance from the start of the relevant LineString\n*   segmentDistance - distance from the start of the relevant segment\n*   pointDistance - distance between found point is from input reference point. Previously `dist`\n\nmultiFeatureIndex, index, location, and dist continue to work as previously\nuntil at least the next major release.\n\n### Parameters\n\n*   `lines` **([Geometry][1] | [Feature][2]<([LineString][3] | [MultiLineString][4])>)** Lines to snap to\n*   `inputPoint` **([Geometry][1] | [Feature][2]<[Point][5]> | [Array][6]<[number][7]>)** Point to snap from\n*   `options` **[Object][8]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** Supports all valid Turf [Units][9] (optional, default `'kilometers'`)\n\n### Examples\n\n```javascript\nvar line = turf.lineString([\n    [-77.031669, 38.878605],\n    [-77.029609, 38.881946],\n    [-77.020339, 38.884084],\n    [-77.025661, 38.885821],\n    [-77.021884, 38.889563],\n    [-77.019824, 38.892368]\n]);\nvar inputPoint = turf.point([-77.037076, 38.884017]);\n\nvar snapped = turf.nearestPointOnLine(line, inputPoint, {units: 'miles'});\n\n//addToMap\nvar addToMap = [line, inputPoint, snapped];\nsnapped.properties['marker-color'] = '#00f';\n```\n\nReturns **[Feature][2]<[Point][5]>** closest point on the `lines` to the `inputPoint`. The point will have the following properties: `lineStringIndex`: closest point was found on the nth LineString (only relevant if input is MultiLineString), `segmentIndex`: closest point was found on nth line segment of the LineString, `totalDistance`: distance along the line from the absolute start of the MultiLineString, `lineDistance`: distance along the line from the start of the LineString where the closest point was found, `segmentDistance`: distance along the line from the start of the line segment where the closest point was found, `pointDistance`: distance to the input point.\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.5\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array\n\n[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[9]: https://turfjs.org/docs/api/types/Units\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/nearest-point-on-line\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark, { Event } from \"benchmark\";\nimport { nearestPointOnLine } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * ==after (@turf/line-intersect)==\n * line1 x 234,231 ops/sec ±1.78% (88 runs sampled)\n * route1 x 161 ops/sec ±1.53% (80 runs sampled)\n * route2 x 184 ops/sec ±1.96% (80 runs sampled)\n *\n * ==before (original)==\n * line1 x 272,785 ops/sec ±1.29% (87 runs sampled)\n * route1 x 195 ops/sec ±2.23% (80 runs sampled)\n * route2 x 218 ops/sec ±2.42% (78 runs sampled)\n */\nlet totalTime = 0.0;\nconst suite = new Benchmark.Suite(\"turf-nearest-point-on-line\");\nfor (const { name, geojson } of fixtures) {\n  const [line, point] = geojson.features;\n  suite.add(name, () => nearestPointOnLine(line, point), {\n    onComplete: (e: Event) =>\n      (totalTime = totalTime += e.target.times?.elapsed),\n  });\n}\n\nsuite\n  .on(\"cycle\", (e: Event) => console.log(String(e.target)))\n  .on(\"complete\", () =>\n    console.log(`completed in ${totalTime.toFixed(2)} seconds`)\n  )\n  .run();\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/index.ts",
    "content": "import { Feature, Point, Position, LineString, MultiLineString } from \"geojson\";\nimport { distance } from \"@turf/distance\";\nimport { flattenEach } from \"@turf/meta\";\nimport {\n  point,\n  degreesToRadians,\n  radiansToDegrees,\n  Coord,\n  Units,\n} from \"@turf/helpers\";\nimport { getCoord, getCoords } from \"@turf/invariant\";\n\n/**\n * Returns the nearest point on a line to a given point.\n *\n * If any of the segments in the input line string are antipodal and therefore\n * have an undefined arc, this function will instead return that the point lies\n * on the line.\n *\n * ⚠️ We have begun the process of migrating to different return properties for\n * this function. The new properties we recommend using as of v7.4 are:\n * - lineStringIndex - point was found on the nth LineString of an input MultiLineString. Previously `multiFeatureIndex`\n * - segmentIndex - point was found on the nth segment of the above LineString. Previously `index`\n * - totalDistance - distance from the start of the overall MultiLineString. Previously `location`\n * - lineDistance - distance from the start of the relevant LineString\n * - segmentDistance - distance from the start of the relevant segment\n * - pointDistance - distance between found point is from input reference point. Previously `dist`\n *\n * multiFeatureIndex, index, location, and dist continue to work as previously\n * until at least the next major release.\n *\n * @function\n * @param {Geometry|Feature<LineString|MultiLineString>} lines Lines to snap to\n * @param {Geometry|Feature<Point>|number[]} inputPoint Point to snap from\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}\n * @returns {Feature<Point>} closest point on the `lines` to the `inputPoint`. The point will have the following properties: `lineStringIndex`: closest point was found on the nth LineString (only relevant if input is MultiLineString), `segmentIndex`: closest point was found on nth line segment of the LineString, `totalDistance`: distance along the line from the absolute start of the MultiLineString, `lineDistance`: distance along the line from the start of the LineString where the closest point was found, `segmentDistance`: distance along the line from the start of the line segment where the closest point was found, `pointDistance`: distance to the input point.\n * @example\n * var line = turf.lineString([\n *     [-77.031669, 38.878605],\n *     [-77.029609, 38.881946],\n *     [-77.020339, 38.884084],\n *     [-77.025661, 38.885821],\n *     [-77.021884, 38.889563],\n *     [-77.019824, 38.892368]\n * ]);\n * var inputPoint = turf.point([-77.037076, 38.884017]);\n *\n * var snapped = turf.nearestPointOnLine(line, inputPoint, {units: 'miles'});\n *\n * //addToMap\n * var addToMap = [line, inputPoint, snapped];\n * snapped.properties['marker-color'] = '#00f';\n */\nfunction nearestPointOnLine<G extends LineString | MultiLineString>(\n  lines: Feature<G> | G,\n  inputPoint: Coord,\n  options: { units?: Units } = {}\n): Feature<\n  Point,\n  {\n    lineStringIndex: number;\n    segmentIndex: number;\n    totalDistance: number;\n    lineDistance: number;\n    segmentDistance: number;\n    pointDistance: number;\n    // deprecated properties START\n    /** @deprecated use `lineStringIndex` instead */\n    multiFeatureIndex: number;\n    /** @deprecated use `segmentIndex` instead */\n    index: number;\n    /** @deprecated use `totalDistance` instead */\n    location: number;\n    /** @deprecated use `pointDistance` instead */\n    dist: number;\n    // deprecated properties END\n    [key: string]: any;\n  }\n> {\n  if (!lines || !inputPoint) {\n    throw new Error(\"lines and inputPoint are required arguments\");\n  }\n\n  const inputPos = getCoord(inputPoint);\n\n  let closestPt = point([Infinity, Infinity], {\n    lineStringIndex: -1,\n    segmentIndex: -1,\n    totalDistance: -1,\n    lineDistance: -1,\n    segmentDistance: -1,\n    pointDistance: Infinity,\n    // deprecated properties START\n    multiFeatureIndex: -1,\n    index: -1,\n    location: -1,\n    dist: Infinity,\n    // deprecated properties END\n  });\n\n  let totalDistance = 0.0;\n  let lineDistance = 0.0;\n  let currentLineStringIndex = -1;\n  flattenEach(\n    lines,\n    function (line: any, _featureIndex: number, lineStringIndex: number) {\n      //reset lineDistance at each changed lineStringIndex\n      if (currentLineStringIndex !== lineStringIndex) {\n        currentLineStringIndex = lineStringIndex;\n        lineDistance = 0.0;\n      }\n\n      const coords: any = getCoords(line);\n\n      for (let i = 0; i < coords.length - 1; i++) {\n        //start - start of current line section\n        const start: Feature<Point, { dist: number }> = point(coords[i]);\n        const startPos = getCoord(start);\n\n        //stop - end of current line section\n        const stop: Feature<Point, { dist: number }> = point(coords[i + 1]);\n        const stopPos = getCoord(stop);\n\n        // segmentLength\n        const segmentLength = distance(start, stop, options);\n        let intersectPos: Position;\n        let wasEnd: boolean;\n\n        // Short circuit if snap point is start or end position of the line\n        // Test the end position first for consistency in case they are\n        // coincident\n        if (stopPos[0] === inputPos[0] && stopPos[1] === inputPos[1]) {\n          [intersectPos, wasEnd] = [stopPos, true];\n        } else if (startPos[0] === inputPos[0] && startPos[1] === inputPos[1]) {\n          [intersectPos, wasEnd] = [startPos, false];\n        } else {\n          // Otherwise, find the nearest point the hard way.\n          [intersectPos, wasEnd] = nearestPointOnSegment(\n            startPos,\n            stopPos,\n            inputPos\n          );\n        }\n\n        const pointDistance = distance(inputPoint, intersectPos, options);\n\n        if (pointDistance < closestPt.properties.pointDistance) {\n          const segmentDistance = distance(start, intersectPos, options);\n          closestPt = point(intersectPos, {\n            lineStringIndex: lineStringIndex,\n            // Legacy behaviour where index progresses to next segment # if we\n            // went with the end point this iteration.\n            segmentIndex: wasEnd ? i + 1 : i,\n            totalDistance: totalDistance + segmentDistance,\n            lineDistance: lineDistance + segmentDistance,\n            segmentDistance: segmentDistance,\n            pointDistance: pointDistance,\n            // deprecated properties START\n            multiFeatureIndex: -1,\n            index: -1,\n            location: -1,\n            dist: Infinity,\n            // deprecated properties END\n          });\n          closestPt.properties = {\n            ...closestPt.properties,\n            multiFeatureIndex: closestPt.properties.lineStringIndex,\n            index: closestPt.properties.segmentIndex,\n            location: closestPt.properties.totalDistance,\n            dist: closestPt.properties.pointDistance,\n            // deprecated properties END\n          };\n        }\n\n        // update totalDistance and lineDistance\n        totalDistance += segmentLength;\n        lineDistance += segmentLength;\n      }\n    }\n  );\n\n  return closestPt;\n}\n\n// A simple Vector3 type for cartesian operations.\ntype Vector = [number, number, number];\n\nfunction dot(v1: Vector, v2: Vector): number {\n  const [v1x, v1y, v1z] = v1;\n  const [v2x, v2y, v2z] = v2;\n  return v1x * v2x + v1y * v2y + v1z * v2z;\n}\n\n// https://en.wikipedia.org/wiki/Cross_product\nfunction cross(v1: Vector, v2: Vector): Vector {\n  const [v1x, v1y, v1z] = v1;\n  const [v2x, v2y, v2z] = v2;\n  return [v1y * v2z - v1z * v2y, v1z * v2x - v1x * v2z, v1x * v2y - v1y * v2x];\n}\n\nfunction magnitude(v: Vector): number {\n  return Math.sqrt(Math.pow(v[0], 2) + Math.pow(v[1], 2) + Math.pow(v[2], 2));\n}\n\nfunction normalize(v: Vector): Vector {\n  const mag = magnitude(v);\n  return [v[0] / mag, v[1] / mag, v[2] / mag];\n}\n\nfunction lngLatToVector(a: Position): Vector {\n  const lat = degreesToRadians(a[1]);\n  const lng = degreesToRadians(a[0]);\n  return [\n    Math.cos(lat) * Math.cos(lng),\n    Math.cos(lat) * Math.sin(lng),\n    Math.sin(lat),\n  ];\n}\n\nfunction vectorToLngLat(v: Vector): Position {\n  const [x, y, z] = v;\n  // Clamp the z-value to ensure that is inside the [-1, 1] domain as required\n  // by asin. Note therefore that this function should only be applied to unit\n  // vectors so z > 1 should not exist\n  const zClamp = Math.min(Math.max(z, -1), 1);\n  const lat = radiansToDegrees(Math.asin(zClamp));\n  const lng = radiansToDegrees(Math.atan2(y, x));\n\n  return [lng, lat];\n}\n\nfunction nearestPointOnSegment(\n  posA: Position, // start point of segment to measure to\n  posB: Position, // end point of segment to measure to\n  posC: Position // point to measure from\n): [Position, boolean] {\n  // Based heavily on this article on finding cross track distance to an arc:\n  // https://gis.stackexchange.com/questions/209540/projecting-cross-track-distance-on-great-circle\n\n  // Convert spherical (lng, lat) to cartesian vector coords (x, y, z)\n  // In the below https://tikz.net/spherical_1/ we convert lng (𝜙) and lat (𝜃)\n  // into vectors with x, y, and z components with a length (r) of 1.\n  const A = lngLatToVector(posA); // the vector from 0,0,0 to posA\n  const B = lngLatToVector(posB); // ... to posB\n  const C = lngLatToVector(posC); // ... to posC\n\n  // The axis (normal vector) of the great circle plane containing the line segment\n  const segmentAxis = cross(A, B);\n\n  // Two degenerate cases exist for the segment axis cross product. The first is\n  // when vectors are aligned (within the bounds of floating point tolerance).\n  // The second is where vectors are antipodal (again within the bounds of\n  // tolerance. Both cases produce a [0, 0, 0] cross product which invalidates\n  // the rest of the algorithm, but each case must be handled separately:\n  // - The aligned case indicates coincidence of A and B. therefore this can be\n  //   an early return assuming the closest point is the end (for consistency).\n  // - The antipodal case is truly degenerate - an infinte number of great\n  //   circles are possible and one will always pass through C. However, given\n  //   that this case is both highly unlikely to occur in practice and that is\n  //   will usually be logically sound to return that the point is on the\n  //   segment, we choose to return the provided point.\n  if (segmentAxis[0] === 0 && segmentAxis[1] === 0 && segmentAxis[2] === 0) {\n    if (dot(A, B) > 0) {\n      return [[...posB], true];\n    } else {\n      return [[...posC], false];\n    }\n  }\n\n  // The axis of the great circle passing through the segment's axis and the\n  // target point\n  const targetAxis = cross(segmentAxis, C);\n\n  // This cross product also has a degenerate case where the segment axis is\n  // coincident with or antipodal to the target point. In this case the point\n  // is equidistant to the entire segment. For consistency, we early return the\n  // endpoint as the matching point.\n  if (targetAxis[0] === 0 && targetAxis[1] === 0 && targetAxis[2] === 0) {\n    return [[...posB], true];\n  }\n\n  // The line of intersection between the two great circle planes\n  const intersectionAxis = cross(targetAxis, segmentAxis);\n\n  // Vectors to the two points these great circles intersect are the normalized\n  // intersection and its antipodes\n  const I1 = normalize(intersectionAxis);\n  const I2: Vector = [-I1[0], -I1[1], -I1[2]];\n\n  // Figure out which is the closest intersection to this segment of the great circle\n  // Note that for points on a unit sphere, the dot product represents the\n  // cosine of the angle between the two vectors which monotonically increases\n  // the closer the two points are together and therefore determines proximity\n  const I = dot(C, I1) > dot(C, I2) ? I1 : I2;\n\n  // I is the closest intersection to the segment, though might not actually be\n  // ON the segment. To test whether the closest intersection lies on the arc or\n  // not, we do a cross product comparison to check rotation around the unit\n  // circle defined by the great circle plane.\n  const segmentAxisNorm = normalize(segmentAxis);\n  const cmpAI = dot(cross(A, I), segmentAxisNorm);\n  const cmpIB = dot(cross(I, B), segmentAxisNorm);\n\n  // When both comparisons are positive, the rotation from A to I to B is in the\n  // same direction, implying that I lies between A and B\n  if (cmpAI >= 0 && cmpIB >= 0) {\n    return [vectorToLngLat(I), false];\n  }\n\n  // Finally process the case where the intersection is not on the segment,\n  // using the dot product with the original point to find the closest endpoint\n  if (dot(A, C) > dot(B, C)) {\n    // Clone position when returning as it is reasonable to not expect structural\n    // sharing on the returned Position in all return cases\n    return [[...posA], false];\n  } else {\n    return [[...posB], true];\n  }\n}\n\nexport { nearestPointOnLine };\nexport default nearestPointOnLine;\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/package.json",
    "content": "{\n  \"name\": \"@turf/nearest-point-on-line\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Finds the nearest point on a line to a given point\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Angel Lacret <@alacret>\",\n    \"Emil Junker <@EmilJunker>\",\n    \"Jon Miles <@jonmiles>\",\n    \"John Ziebro <@Insighttful>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/along\": \"workspace:*\",\n    \"@turf/length\": \"workspace:*\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test/in/line-northern-latitude-#344.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-94.0484619140625, 74.98218270428184],\n          [-94.4989013671875, 74.87075679591987],\n          [-94.6527099609375, 74.73540112974021],\n          [-94.72412109375, 74.58572842877513]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-94.71313476562499, 74.87075679591987]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test/in/line1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-97.88131713867188, 22.466878364528448],\n          [-97.86758422851562, 22.2992614997412],\n          [-97.82089233398438, 22.175960091218524],\n          [-97.6190185546875, 21.8704201873689]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-97.87994384765625, 22.262409564319125]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test/in/multiLine1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-70.57617187499999, -18.979025953255267],\n            [-76.201171875, -47.69497434186281],\n            [-75.9375, -52.482780222078205],\n            [-72.59765625, -55.07836723201513],\n            [-68.115234375, -56.072035471800866],\n            [-64.599609375, -55.07836723201513]\n          ],\n          [\n            [-44.29687499999999, -23.40276490540795],\n            [-47.900390625, -25.641526373065755],\n            [-47.900390625, -28.38173504322308],\n            [-53.78906249999999, -35.31736632923786],\n            [-56.33789062499999, -35.24561909420681],\n            [-56.07421875, -37.090239803072066],\n            [-57.48046875, -38.75408327579141],\n            [-61.25976562499999, -39.57182223734373],\n            [-61.69921875, -40.97989806962013],\n            [-62.9296875, -41.50857729743933],\n            [-64.599609375, -41.442726377672116],\n            [-62.75390625, -42.163403424224],\n            [-64.599609375, -43.771093817756494],\n            [-65.21484375, -45.151053265563384],\n            [-66.884765625, -45.52174389699363],\n            [-67.1484375, -46.255846818480315],\n            [-65.21484375, -46.67959446564018],\n            [-65.21484375, -48.166085419012525],\n            [-66.62109375, -49.09545216253481],\n            [-66.884765625, -50.23315183247223],\n            [-68.5546875, -50.736455137010644],\n            [-67.763671875, -52.2143386082582]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-66.4892578125, -52.89564866211353]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test/in/multiLine2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [129.990234375, -31.728167146023935],\n            [123.74999999999999, -28.071980301779845],\n            [122.51953124999999, -24.846565348219734],\n            [122.6953125, -19.890723023996898]\n          ],\n          [\n            [127.265625, -13.667338259654947],\n            [133.154296875, -13.581920900545844],\n            [136.93359375, -16.97274101999901],\n            [140.537109375, -22.024545601240337],\n            [141.50390625, -25.403584973186703]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [124.18945312500001, -15.538375926292048]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test/in/multiLine3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [122.03613281249999, -19.76670355171696],\n            [125.41992187499999, -18.437924653474393],\n            [132.451171875, -18.646245142670598],\n            [132.802734375, -14.944784875088372],\n            [139.130859375, -18.47960905583197],\n            [133.857421875, -22.309425841200177],\n            [142.0751953125, -24.367113562651262],\n            [144.0966796875, -18.020527657852327]\n          ],\n          [\n            [128.14453125, -20.385825381874263],\n            [119.66308593749999, -20.797201434306984],\n            [119.53125, -17.644022027872712],\n            [127.08984375000001, -15.411319377980993],\n            [130.2099609375, -12.211180191503997]\n          ],\n          [\n            [126.826171875, -17.014767530557823],\n            [130.0341796875, -14.392118083661728],\n            [133.9453125, -13.282718960896405]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [123.48632812499999, -18.020527657852327]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test/in/route1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-79.254923, 36.98394],\n          [-79.254923, 36.983939],\n          [-79.255326, 36.9838],\n          [-79.255401, 36.983774],\n          [-79.25576, 36.983664],\n          [-79.256795, 36.984137],\n          [-79.257537, 36.984478],\n          [-79.258539, 36.984925],\n          [-79.259498, 36.985353],\n          [-79.260286, 36.985712],\n          [-79.261405, 36.986222],\n          [-79.262933, 36.986928],\n          [-79.263237, 36.987071],\n          [-79.263755, 36.987296],\n          [-79.264086, 36.987423],\n          [-79.264167, 36.987446],\n          [-79.264338, 36.987486],\n          [-79.264414, 36.987501],\n          [-79.264618, 36.987531],\n          [-79.2648, 36.987542],\n          [-79.264982, 36.987537],\n          [-79.265163, 36.987517],\n          [-79.26703, 36.987355],\n          [-79.267952, 36.98726],\n          [-79.268404, 36.987226],\n          [-79.268771, 36.987197],\n          [-79.26955, 36.987117],\n          [-79.271398, 36.986946],\n          [-79.271488, 36.986941],\n          [-79.271698, 36.986925],\n          [-79.271936, 36.986898],\n          [-79.272231, 36.986852],\n          [-79.272474, 36.986785],\n          [-79.272711, 36.986705],\n          [-79.272895, 36.986632],\n          [-79.273059, 36.986552],\n          [-79.273646, 36.986245],\n          [-79.274224, 36.985925],\n          [-79.274887, 36.985592],\n          [-79.275308, 36.985365],\n          [-79.275672, 36.98517],\n          [-79.276249, 36.984876],\n          [-79.277101, 36.984433],\n          [-79.277425, 36.984259],\n          [-79.277918, 36.983982],\n          [-79.27799, 36.98395],\n          [-79.278179, 36.98385],\n          [-79.278261, 36.9838],\n          [-79.278335, 36.983745],\n          [-79.278421, 36.983666],\n          [-79.27844, 36.983647],\n          [-79.278502, 36.983577],\n          [-79.278548, 36.983511],\n          [-79.278614, 36.983381],\n          [-79.278654, 36.983273],\n          [-79.278711, 36.983011],\n          [-79.278763, 36.98269],\n          [-79.278806, 36.982485],\n          [-79.278866, 36.982282],\n          [-79.278952, 36.982101],\n          [-79.279023, 36.981984],\n          [-79.280178, 36.980418],\n          [-79.280259, 36.980319],\n          [-79.280355, 36.980229],\n          [-79.280419, 36.98018],\n          [-79.280578, 36.980082],\n          [-79.280666, 36.980038],\n          [-79.280783, 36.979994],\n          [-79.280908, 36.979963],\n          [-79.281301, 36.979913],\n          [-79.281646, 36.979874],\n          [-79.282145, 36.979835],\n          [-79.282797, 36.97977],\n          [-79.283144, 36.979743],\n          [-79.283618, 36.97972],\n          [-79.28399, 36.979706],\n          [-79.284447, 36.979695],\n          [-79.284904, 36.979697],\n          [-79.286913, 36.979638],\n          [-79.287201, 36.979628],\n          [-79.287954, 36.979612],\n          [-79.288037, 36.979611],\n          [-79.288397, 36.97962],\n          [-79.288697, 36.979643],\n          [-79.289908, 36.979722],\n          [-79.289994, 36.979724],\n          [-79.290136, 36.979716],\n          [-79.290248, 36.979699],\n          [-79.290503, 36.979632],\n          [-79.291043, 36.979454],\n          [-79.291563, 36.979269],\n          [-79.292467, 36.97896],\n          [-79.292759, 36.978877],\n          [-79.292963, 36.978832],\n          [-79.293286, 36.978778],\n          [-79.293549, 36.978746],\n          [-79.293649, 36.978738],\n          [-79.293755, 36.978729],\n          [-79.293858, 36.978731],\n          [-79.294028, 36.978747],\n          [-79.294162, 36.978771],\n          [-79.294243, 36.9788],\n          [-79.294439, 36.978883],\n          [-79.294626, 36.978979],\n          [-79.294782, 36.979072],\n          [-79.294921, 36.979174],\n          [-79.295023, 36.979263],\n          [-79.295281, 36.979534],\n          [-79.295458, 36.979739],\n          [-79.296347, 36.980843],\n          [-79.296549, 36.981064],\n          [-79.296594, 36.981095],\n          [-79.296695, 36.981144],\n          [-79.296788, 36.98117],\n          [-79.296916, 36.981184],\n          [-79.297032, 36.981182],\n          [-79.297147, 36.981165],\n          [-79.297933, 36.980962],\n          [-79.298145, 36.980893],\n          [-79.298401, 36.98079],\n          [-79.298602, 36.980696],\n          [-79.298795, 36.980593],\n          [-79.299134, 36.980402],\n          [-79.299407, 36.980244],\n          [-79.299963, 36.9799],\n          [-79.301767, 36.97881],\n          [-79.301976, 36.978691],\n          [-79.3021, 36.978619],\n          [-79.302508, 36.978369],\n          [-79.302614, 36.978309],\n          [-79.3028, 36.97822],\n          [-79.302995, 36.978145],\n          [-79.303113, 36.978114],\n          [-79.303153, 36.978249],\n          [-79.303232, 36.978565],\n          [-79.303319, 36.978989],\n          [-79.303326, 36.979184],\n          [-79.303313, 36.979346],\n          [-79.30324, 36.979748],\n          [-79.303136, 36.980362],\n          [-79.303088, 36.980609],\n          [-79.302996, 36.981143],\n          [-79.302982, 36.981226],\n          [-79.302977, 36.981321],\n          [-79.302986, 36.98144],\n          [-79.303013, 36.981556],\n          [-79.303057, 36.98167],\n          [-79.303191, 36.9819],\n          [-79.303336, 36.982126],\n          [-79.303702, 36.982652],\n          [-79.304322, 36.983486],\n          [-79.304588, 36.98382],\n          [-79.304756, 36.984051],\n          [-79.304903, 36.984229],\n          [-79.305059, 36.984403],\n          [-79.305145, 36.984487],\n          [-79.305336, 36.984648],\n          [-79.305612, 36.98486],\n          [-79.30569, 36.984915],\n          [-79.305765, 36.984974],\n          [-79.305944, 36.98513],\n          [-79.306108, 36.985295],\n          [-79.306259, 36.985469],\n          [-79.306333, 36.98557],\n          [-79.306437, 36.985737],\n          [-79.306524, 36.985911],\n          [-79.306595, 36.98609],\n          [-79.306677, 36.986365],\n          [-79.306734, 36.98662],\n          [-79.306773, 36.986878],\n          [-79.306759, 36.986998],\n          [-79.306724, 36.987146],\n          [-79.306621, 36.987426],\n          [-79.306591, 36.987545],\n          [-79.306555, 36.987745],\n          [-79.306536, 36.987984],\n          [-79.30653, 36.988172],\n          [-79.306539, 36.988321],\n          [-79.30655, 36.988398],\n          [-79.306566, 36.988507],\n          [-79.306673, 36.988967],\n          [-79.306789, 36.989416],\n          [-79.30681, 36.989518],\n          [-79.306831, 36.98969],\n          [-79.306833, 36.989828],\n          [-79.306822, 36.989888],\n          [-79.306771, 36.990067],\n          [-79.306696, 36.99024],\n          [-79.306569, 36.990463],\n          [-79.306374, 36.99078],\n          [-79.30633, 36.990863],\n          [-79.306292, 36.990972],\n          [-79.306271, 36.991084],\n          [-79.306268, 36.991229],\n          [-79.306282, 36.991421],\n          [-79.306323, 36.991648],\n          [-79.30657, 36.992516],\n          [-79.306601, 36.992703],\n          [-79.306614, 36.992892],\n          [-79.306598, 36.993111],\n          [-79.306569, 36.993287],\n          [-79.306553, 36.993345],\n          [-79.306526, 36.993432],\n          [-79.306466, 36.993574],\n          [-79.306313, 36.993848],\n          [-79.305971, 36.994382],\n          [-79.305826, 36.994647],\n          [-79.305382, 36.995598],\n          [-79.305197, 36.995963],\n          [-79.305065, 36.996284],\n          [-79.304983, 36.996521],\n          [-79.304954, 36.99668],\n          [-79.30495, 36.996815],\n          [-79.304959, 36.996932],\n          [-79.304988, 36.997077],\n          [-79.305024, 36.99719],\n          [-79.305111, 36.99739],\n          [-79.305197, 36.997567],\n          [-79.30532, 36.997782],\n          [-79.305429, 36.997949],\n          [-79.305577, 36.998153],\n          [-79.306017, 36.99873],\n          [-79.306204, 36.998965],\n          [-79.306407, 36.999192],\n          [-79.306624, 36.999411],\n          [-79.30672, 36.999489],\n          [-79.306828, 36.999557],\n          [-79.306922, 36.999602],\n          [-79.307072, 36.999656],\n          [-79.307354, 36.999723],\n          [-79.307628, 36.999778],\n          [-79.308892, 36.999988],\n          [-79.309029, 37.00002],\n          [-79.309135, 37.000056],\n          [-79.30926, 37.000112],\n          [-79.309374, 37.00018],\n          [-79.309478, 37.000259],\n          [-79.30959, 37.000372],\n          [-79.309743, 37.000552],\n          [-79.31029, 37.001344],\n          [-79.31037, 37.001451],\n          [-79.310486, 37.001568],\n          [-79.310598, 37.001654],\n          [-79.310697, 37.001714],\n          [-79.310838, 37.001785],\n          [-79.310991, 37.001844],\n          [-79.31115, 37.001891],\n          [-79.311632, 37.001979],\n          [-79.312359, 37.002135],\n          [-79.312455, 37.002156],\n          [-79.312915, 37.002271],\n          [-79.313026, 37.002296],\n          [-79.313639, 37.002422],\n          [-79.314311, 37.002515],\n          [-79.314769, 37.002553],\n          [-79.315227, 37.002582],\n          [-79.315352, 37.002604],\n          [-79.315472, 37.002641],\n          [-79.315543, 37.002685],\n          [-79.315621, 37.00275],\n          [-79.315685, 37.002824],\n          [-79.315725, 37.002889],\n          [-79.315888, 37.002832],\n          [-79.316221, 37.002733],\n          [-79.316448, 37.002678],\n          [-79.31752, 37.002455],\n          [-79.318524, 37.002275],\n          [-79.319059, 37.002211],\n          [-79.319268, 37.002199],\n          [-79.319435, 37.0022],\n          [-79.319651, 37.002214],\n          [-79.319786, 37.002226],\n          [-79.320258, 37.002279],\n          [-79.320522, 37.002298],\n          [-79.320786, 37.002302],\n          [-79.320953, 37.002288],\n          [-79.321116, 37.002258],\n          [-79.321274, 37.002213],\n          [-79.321381, 37.00217],\n          [-79.321762, 37.002001],\n          [-79.322382, 37.001698],\n          [-79.322844, 37.001466],\n          [-79.323023, 37.001376],\n          [-79.323292, 37.001249],\n          [-79.32357, 37.001134],\n          [-79.323943, 37.001003],\n          [-79.324098, 37.000958],\n          [-79.324162, 37.000945],\n          [-79.32513, 37.000843],\n          [-79.325325, 37.000814],\n          [-79.325517, 37.000777],\n          [-79.325753, 37.000719],\n          [-79.327186, 37.000266],\n          [-79.327482, 37.000173],\n          [-79.327802, 37.00008],\n          [-79.328598, 36.999838],\n          [-79.329158, 36.999654],\n          [-79.329204, 36.999715],\n          [-79.329343, 36.999894],\n          [-79.32942, 36.999975],\n          [-79.329588, 37.000125],\n          [-79.329742, 37.000239],\n          [-79.329777, 37.000256],\n          [-79.329869, 37.000291],\n          [-79.329988, 37.000315],\n          [-79.330091, 37.000318],\n          [-79.33027, 37.000316],\n          [-79.330449, 37.000298],\n          [-79.331035, 37.000223],\n          [-79.331427, 37.000184],\n          [-79.331855, 37.000129],\n          [-79.333009, 37.000023],\n          [-79.334568, 36.999869],\n          [-79.335002, 36.999826],\n          [-79.33552, 36.999806],\n          [-79.33606, 36.999814],\n          [-79.336208, 36.999833],\n          [-79.336352, 36.999866],\n          [-79.33649, 36.999913],\n          [-79.336644, 36.999986],\n          [-79.336856, 37.000123],\n          [-79.336962, 37.000203],\n          [-79.337096, 37.000316],\n          [-79.337325, 37.000539],\n          [-79.337519, 37.000761],\n          [-79.338522, 37.001965],\n          [-79.339126, 37.002688],\n          [-79.339574, 37.003185],\n          [-79.340385, 37.004106],\n          [-79.340479, 37.004212],\n          [-79.340603, 37.004341],\n          [-79.340773, 37.00449],\n          [-79.340929, 37.004602],\n          [-79.341131, 37.004723],\n          [-79.341632, 37.004968],\n          [-79.341875, 37.005087],\n          [-79.342172, 37.005233],\n          [-79.342594, 37.00542],\n          [-79.343189, 37.005708],\n          [-79.343817, 37.006011],\n          [-79.344455, 37.006335],\n          [-79.344712, 37.00647],\n          [-79.345697, 37.006916],\n          [-79.345837, 37.006985],\n          [-79.346006, 37.00708],\n          [-79.346221, 37.007218],\n          [-79.347403, 37.008016],\n          [-79.347493, 37.008071],\n          [-79.347634, 37.008171],\n          [-79.347763, 37.008281],\n          [-79.347971, 37.008497],\n          [-79.348051, 37.008623],\n          [-79.348135, 37.008786],\n          [-79.348201, 37.008954],\n          [-79.34825, 37.009126],\n          [-79.348316, 37.00954],\n          [-79.348397, 37.010196],\n          [-79.34854, 37.01111],\n          [-79.348616, 37.011496],\n          [-79.348778, 37.012266],\n          [-79.349159, 37.013946],\n          [-79.349315, 37.014628],\n          [-79.349636, 37.015919],\n          [-79.349688, 37.016183],\n          [-79.349795, 37.016628],\n          [-79.349854, 37.016827],\n          [-79.349915, 37.01701],\n          [-79.350064, 37.017337],\n          [-79.350135, 37.017464],\n          [-79.350159, 37.017499],\n          [-79.350325, 37.017735],\n          [-79.35042, 37.017865],\n          [-79.350584, 37.018129],\n          [-79.35072, 37.01842],\n          [-79.350808, 37.018683],\n          [-79.35089, 37.018981],\n          [-79.350968, 37.019317],\n          [-79.35119, 37.020219],\n          [-79.351251, 37.020445],\n          [-79.351346, 37.020719],\n          [-79.351414, 37.020888],\n          [-79.351505, 37.021079],\n          [-79.351682, 37.021459],\n          [-79.351825, 37.02176],\n          [-79.352185, 37.022473],\n          [-79.352628, 37.023433],\n          [-79.352751, 37.023743],\n          [-79.35282, 37.023863],\n          [-79.352895, 37.023965],\n          [-79.353012, 37.024078],\n          [-79.353078, 37.024127],\n          [-79.353186, 37.024186],\n          [-79.353325, 37.024244],\n          [-79.353398, 37.024265],\n          [-79.353421, 37.02427],\n          [-79.353621, 37.024315],\n          [-79.353675, 37.024321],\n          [-79.35392, 37.024336],\n          [-79.354286, 37.024379],\n          [-79.354423, 37.024385],\n          [-79.354844, 37.024375],\n          [-79.355058, 37.024359],\n          [-79.355214, 37.024339],\n          [-79.355354, 37.024308],\n          [-79.355614, 37.024238],\n          [-79.355718, 37.024209],\n          [-79.355965, 37.024125],\n          [-79.356147, 37.024057],\n          [-79.356485, 37.02394],\n          [-79.356546, 37.023919],\n          [-79.356797, 37.023824],\n          [-79.356964, 37.023769],\n          [-79.357077, 37.023757],\n          [-79.357196, 37.023767],\n          [-79.357262, 37.023786],\n          [-79.357309, 37.023811],\n          [-79.35735, 37.023849],\n          [-79.357388, 37.023905],\n          [-79.357541, 37.024317],\n          [-79.357583, 37.024391],\n          [-79.357634, 37.024438],\n          [-79.357685, 37.024467],\n          [-79.357747, 37.024487],\n          [-79.35783, 37.024497],\n          [-79.357899, 37.024495],\n          [-79.35801, 37.02448],\n          [-79.358102, 37.02446],\n          [-79.358409, 37.025941],\n          [-79.358471, 37.026316],\n          [-79.358502, 37.026637],\n          [-79.358517, 37.026844],\n          [-79.358519, 37.027185],\n          [-79.358497, 37.027679],\n          [-79.358457, 37.028033],\n          [-79.358398, 37.028378],\n          [-79.358301, 37.028779],\n          [-79.358082, 37.029574],\n          [-79.357957, 37.030026],\n          [-79.357813, 37.030609],\n          [-79.357745, 37.03095],\n          [-79.357685, 37.031344],\n          [-79.357656, 37.031612],\n          [-79.357621, 37.032199],\n          [-79.357619, 37.032445],\n          [-79.357631, 37.032766],\n          [-79.357637, 37.032893],\n          [-79.357666, 37.033258],\n          [-79.357711, 37.033639],\n          [-79.357789, 37.034066],\n          [-79.357875, 37.034441],\n          [-79.357922, 37.034622],\n          [-79.358521, 37.036938],\n          [-79.358613, 37.037315],\n          [-79.358687, 37.037658],\n          [-79.358786, 37.038217],\n          [-79.358856, 37.038791],\n          [-79.358911, 37.039356],\n          [-79.358965, 37.0401],\n          [-79.359051, 37.041306],\n          [-79.359073, 37.041825],\n          [-79.359059, 37.042471],\n          [-79.359012, 37.042954],\n          [-79.35899, 37.04313],\n          [-79.358922, 37.043537],\n          [-79.358829, 37.043973],\n          [-79.358773, 37.044171],\n          [-79.358704, 37.044417],\n          [-79.358541, 37.044914],\n          [-79.358352, 37.045429],\n          [-79.357856, 37.04678],\n          [-79.357794, 37.046961],\n          [-79.357564, 37.047556],\n          [-79.357409, 37.047915],\n          [-79.357338, 37.048062],\n          [-79.357278, 37.048184],\n          [-79.356942, 37.048801],\n          [-79.356841, 37.048967],\n          [-79.356589, 37.049349],\n          [-79.356363, 37.049677],\n          [-79.354212, 37.052783],\n          [-79.353972, 37.053148],\n          [-79.353865, 37.053295],\n          [-79.353452, 37.053889],\n          [-79.352197, 37.055711],\n          [-79.352126, 37.055808],\n          [-79.351983, 37.056023],\n          [-79.351596, 37.056539],\n          [-79.351413, 37.056761],\n          [-79.35122, 37.056979],\n          [-79.351018, 37.057191],\n          [-79.35075, 37.057445],\n          [-79.350603, 37.057584],\n          [-79.35029, 37.057856],\n          [-79.348032, 37.059645],\n          [-79.346954, 37.060488],\n          [-79.345892, 37.06133],\n          [-79.345295, 37.061797],\n          [-79.344778, 37.062208],\n          [-79.344716, 37.062258],\n          [-79.343942, 37.062866],\n          [-79.343259, 37.06342],\n          [-79.342925, 37.063722],\n          [-79.342732, 37.063907],\n          [-79.342302, 37.064351],\n          [-79.342055, 37.06463],\n          [-79.341843, 37.064885],\n          [-79.341424, 37.065452],\n          [-79.341048, 37.066036],\n          [-79.340718, 37.066647],\n          [-79.340066, 37.068047],\n          [-79.338982, 37.070343],\n          [-79.336951, 37.074656],\n          [-79.336672, 37.075265],\n          [-79.335622, 37.077497],\n          [-79.335265, 37.078252],\n          [-79.33489, 37.079062],\n          [-79.334833, 37.079182],\n          [-79.334222, 37.080477],\n          [-79.333262, 37.082521],\n          [-79.333001, 37.083079],\n          [-79.332628, 37.084028],\n          [-79.332548, 37.084278],\n          [-79.332388, 37.08478],\n          [-79.332201, 37.085539],\n          [-79.33204, 37.086421],\n          [-79.33196, 37.086978],\n          [-79.331907, 37.087757],\n          [-79.331871, 37.088536],\n          [-79.33185, 37.089317],\n          [-79.331805, 37.090324],\n          [-79.331772, 37.091338],\n          [-79.331768, 37.092235],\n          [-79.33183, 37.093576],\n          [-79.331943, 37.095022],\n          [-79.332045, 37.096198],\n          [-79.332341, 37.099713],\n          [-79.332397, 37.100421],\n          [-79.332436, 37.101086],\n          [-79.332443, 37.1013],\n          [-79.332438, 37.10199],\n          [-79.332418, 37.102426],\n          [-79.332391, 37.102795],\n          [-79.332337, 37.103324],\n          [-79.332244, 37.103966],\n          [-79.332205, 37.104185],\n          [-79.332175, 37.104355],\n          [-79.332056, 37.104907],\n          [-79.332041, 37.104978],\n          [-79.331903, 37.105494],\n          [-79.331733, 37.106053],\n          [-79.331559, 37.106562],\n          [-79.33131, 37.107195],\n          [-79.331178, 37.107501],\n          [-79.330959, 37.107973],\n          [-79.330748, 37.108399],\n          [-79.330489, 37.108876],\n          [-79.330365, 37.109093],\n          [-79.330155, 37.10944],\n          [-79.329757, 37.110058],\n          [-79.328813, 37.111446],\n          [-79.328701, 37.111611],\n          [-79.327118, 37.113932],\n          [-79.327107, 37.113947],\n          [-79.326498, 37.114802],\n          [-79.326178, 37.115223],\n          [-79.326128, 37.115289],\n          [-79.32568, 37.115855],\n          [-79.325061, 37.116595],\n          [-79.324816, 37.116878],\n          [-79.324497, 37.117235],\n          [-79.324161, 37.117601],\n          [-79.323816, 37.117964],\n          [-79.323589, 37.118194],\n          [-79.323104, 37.118678],\n          [-79.322015, 37.119732],\n          [-79.320826, 37.12089],\n          [-79.320279, 37.121415],\n          [-79.31993, 37.121729],\n          [-79.319276, 37.122271],\n          [-79.318828, 37.122609],\n          [-79.318377, 37.122925],\n          [-79.317535, 37.123462],\n          [-79.316595, 37.123987],\n          [-79.315586, 37.124473],\n          [-79.314958, 37.124742],\n          [-79.311931, 37.125973],\n          [-79.303986, 37.129196],\n          [-79.303177, 37.129555],\n          [-79.302367, 37.129915],\n          [-79.30095, 37.130617],\n          [-79.298871, 37.131691],\n          [-79.298008, 37.132146],\n          [-79.293574, 37.134491],\n          [-79.293108, 37.134749],\n          [-79.292712, 37.134937],\n          [-79.292278, 37.135125],\n          [-79.291836, 37.1353],\n          [-79.291351, 37.135473],\n          [-79.290905, 37.135615],\n          [-79.290365, 37.135772],\n          [-79.289641, 37.135941],\n          [-79.289078, 37.136055],\n          [-79.288222, 37.136184],\n          [-79.287781, 37.136228],\n          [-79.287205, 37.136269],\n          [-79.281895, 37.136526],\n          [-79.280512, 37.136607],\n          [-79.279731, 37.13667],\n          [-79.278968, 37.136747],\n          [-79.277922, 37.136872],\n          [-79.276244, 37.13712],\n          [-79.273494, 37.137624],\n          [-79.272005, 37.137904],\n          [-79.271794, 37.137944],\n          [-79.266159, 37.138985],\n          [-79.265643, 37.139056],\n          [-79.265084, 37.139119],\n          [-79.264404, 37.139177],\n          [-79.263826, 37.139213],\n          [-79.263263, 37.139234],\n          [-79.262666, 37.139241],\n          [-79.262103, 37.139234],\n          [-79.26149, 37.139213],\n          [-79.260895, 37.13918],\n          [-79.260488, 37.139149],\n          [-79.257811, 37.138859],\n          [-79.253283, 37.138354],\n          [-79.251817, 37.138189],\n          [-79.251311, 37.138138],\n          [-79.25082, 37.138104],\n          [-79.250344, 37.138087],\n          [-79.249949, 37.138091],\n          [-79.249141, 37.138125],\n          [-79.248701, 37.138169],\n          [-79.248255, 37.138232],\n          [-79.247815, 37.138303],\n          [-79.247404, 37.138388],\n          [-79.246983, 37.138492],\n          [-79.24619, 37.138741],\n          [-79.246034, 37.138799],\n          [-79.245567, 37.138991],\n          [-79.243639, 37.139795],\n          [-79.242121, 37.140435],\n          [-79.241618, 37.140648],\n          [-79.241125, 37.14089],\n          [-79.240755, 37.141103],\n          [-79.240471, 37.141293],\n          [-79.240237, 37.141475],\n          [-79.240023, 37.141661],\n          [-79.239659, 37.142024],\n          [-79.238717, 37.143115],\n          [-79.238653, 37.143189],\n          [-79.238443, 37.143404],\n          [-79.23822, 37.14361],\n          [-79.237972, 37.143817],\n          [-79.237711, 37.144013],\n          [-79.237424, 37.144206],\n          [-79.237139, 37.144378],\n          [-79.236846, 37.144536],\n          [-79.23672, 37.144599],\n          [-79.235366, 37.145185],\n          [-79.235031, 37.145327],\n          [-79.233118, 37.146139],\n          [-79.232943, 37.146214],\n          [-79.23213, 37.146559],\n          [-79.23159, 37.146789],\n          [-79.231268, 37.146943],\n          [-79.230971, 37.147103],\n          [-79.230723, 37.147248],\n          [-79.230589, 37.147333],\n          [-79.230303, 37.147527],\n          [-79.230067, 37.147704],\n          [-79.229831, 37.147902],\n          [-79.229608, 37.148108],\n          [-79.229398, 37.148324],\n          [-79.229192, 37.148559],\n          [-79.229002, 37.148802],\n          [-79.228823, 37.149065],\n          [-79.228683, 37.149299],\n          [-79.228557, 37.149537],\n          [-79.228436, 37.149807],\n          [-79.228332, 37.15008],\n          [-79.22824, 37.150371],\n          [-79.228165, 37.150679],\n          [-79.228144, 37.150787],\n          [-79.22795, 37.1522],\n          [-79.227939, 37.152282],\n          [-79.227922, 37.152405],\n          [-79.227831, 37.1531],\n          [-79.227768, 37.153577],\n          [-79.22775, 37.153704],\n          [-79.227707, 37.153951],\n          [-79.227614, 37.154338],\n          [-79.227519, 37.154642],\n          [-79.227394, 37.154981],\n          [-79.227259, 37.155289],\n          [-79.227113, 37.155579],\n          [-79.227008, 37.155764],\n          [-79.226979, 37.155814],\n          [-79.226931, 37.155892],\n          [-79.22673, 37.156196],\n          [-79.226531, 37.156466],\n          [-79.226359, 37.156679],\n          [-79.226091, 37.156981],\n          [-79.225836, 37.157239],\n          [-79.225577, 37.157477],\n          [-79.225307, 37.157704],\n          [-79.225033, 37.15791],\n          [-79.224838, 37.158043],\n          [-79.223223, 37.159106],\n          [-79.222625, 37.159494],\n          [-79.222577, 37.159525],\n          [-79.222526, 37.159559],\n          [-79.222269, 37.159725],\n          [-79.221758, 37.160065],\n          [-79.219427, 37.161585],\n          [-79.218294, 37.162324],\n          [-79.218211, 37.162378],\n          [-79.216923, 37.163217],\n          [-79.216426, 37.163539],\n          [-79.215909, 37.16389],\n          [-79.215531, 37.164171],\n          [-79.215221, 37.164425],\n          [-79.214936, 37.164678],\n          [-79.214674, 37.164929],\n          [-79.214292, 37.165324],\n          [-79.214244, 37.165374],\n          [-79.213081, 37.166582],\n          [-79.212642, 37.167038],\n          [-79.212368, 37.167324],\n          [-79.212048, 37.167658],\n          [-79.211768, 37.16795],\n          [-79.211486, 37.168245],\n          [-79.211416, 37.168318],\n          [-79.211008, 37.168744],\n          [-79.210963, 37.168791],\n          [-79.210689, 37.16908],\n          [-79.210304, 37.16953],\n          [-79.2101, 37.169782],\n          [-79.209923, 37.170006],\n          [-79.209526, 37.170538],\n          [-79.209343, 37.170798],\n          [-79.207037, 37.174039],\n          [-79.206764, 37.174435],\n          [-79.206634, 37.174641],\n          [-79.206469, 37.174929],\n          [-79.206273, 37.17532],\n          [-79.20615, 37.175603],\n          [-79.206073, 37.175802],\n          [-79.206026, 37.175929],\n          [-79.205916, 37.176273],\n          [-79.205845, 37.176539],\n          [-79.205757, 37.176917],\n          [-79.205696, 37.177164],\n          [-79.205658, 37.177349],\n          [-79.205603, 37.177589],\n          [-79.205562, 37.177759],\n          [-79.205539, 37.177863],\n          [-79.205487, 37.178091],\n          [-79.205427, 37.178344],\n          [-79.205364, 37.178607],\n          [-79.205297, 37.178889],\n          [-79.205253, 37.179068],\n          [-79.20519, 37.179332],\n          [-79.205122, 37.179618],\n          [-79.205055, 37.179895],\n          [-79.204997, 37.180138],\n          [-79.204614, 37.181773],\n          [-79.204588, 37.181883],\n          [-79.204488, 37.182314],\n          [-79.204319, 37.183043],\n          [-79.204265, 37.183268],\n          [-79.204123, 37.18388],\n          [-79.203924, 37.184747],\n          [-79.203855, 37.185167],\n          [-79.203781, 37.185725],\n          [-79.203767, 37.185869],\n          [-79.203714, 37.186727],\n          [-79.203688, 37.188358],\n          [-79.203665, 37.189574],\n          [-79.203624, 37.192626],\n          [-79.203627, 37.192665],\n          [-79.203588, 37.193792],\n          [-79.203572, 37.194229],\n          [-79.203568, 37.194309],\n          [-79.203559, 37.194539],\n          [-79.203553, 37.194676],\n          [-79.203543, 37.194919],\n          [-79.203531, 37.195199],\n          [-79.203502, 37.195859],\n          [-79.203483, 37.196276],\n          [-79.203468, 37.196579],\n          [-79.203458, 37.196792],\n          [-79.203433, 37.197322],\n          [-79.203422, 37.197563],\n          [-79.20341, 37.197824],\n          [-79.203397, 37.198095],\n          [-79.20339, 37.198254],\n          [-79.203379, 37.19847],\n          [-79.203358, 37.198936],\n          [-79.20334, 37.19935],\n          [-79.203304, 37.200071],\n          [-79.203262, 37.200536],\n          [-79.203244, 37.200686],\n          [-79.203162, 37.201241],\n          [-79.203073, 37.201722],\n          [-79.20306, 37.201793],\n          [-79.203026, 37.201977],\n          [-79.202836, 37.203003],\n          [-79.202752, 37.203459],\n          [-79.202563, 37.204478],\n          [-79.202452, 37.205079],\n          [-79.202395, 37.205385],\n          [-79.201856, 37.208299],\n          [-79.201805, 37.208574],\n          [-79.201702, 37.209126],\n          [-79.201673, 37.209268],\n          [-79.201619, 37.209479],\n          [-79.201573, 37.209638],\n          [-79.201505, 37.209836],\n          [-79.201407, 37.210085],\n          [-79.201284, 37.210341],\n          [-79.201114, 37.21064],\n          [-79.201026, 37.210776],\n          [-79.200882, 37.21098],\n          [-79.200649, 37.211282],\n          [-79.200396, 37.211554],\n          [-79.199727, 37.212167],\n          [-79.199637, 37.212249],\n          [-79.199553, 37.212325],\n          [-79.199391, 37.212473],\n          [-79.199159, 37.212684],\n          [-79.19865, 37.213144],\n          [-79.197756, 37.213946],\n          [-79.197588, 37.214097],\n          [-79.197252, 37.214415],\n          [-79.196922, 37.214731],\n          [-79.196487, 37.215166],\n          [-79.196055, 37.215596],\n          [-79.195714, 37.216042],\n          [-79.195395, 37.216449],\n          [-79.194175, 37.218086],\n          [-79.193942, 37.2184],\n          [-79.193714, 37.218705],\n          [-79.193339, 37.219208],\n          [-79.193103, 37.219523],\n          [-79.192804, 37.219924],\n          [-79.192465, 37.220384],\n          [-79.191972, 37.221056],\n          [-79.191665, 37.221486],\n          [-79.191271, 37.222039],\n          [-79.191066, 37.222328],\n          [-79.190837, 37.222648],\n          [-79.190786, 37.222724],\n          [-79.190591, 37.223024],\n          [-79.190561, 37.223069],\n          [-79.190114, 37.223762],\n          [-79.189976, 37.223994],\n          [-79.189786, 37.224314],\n          [-79.189538, 37.224731],\n          [-79.189441, 37.224896],\n          [-79.189231, 37.225287],\n          [-79.188873, 37.225949],\n          [-79.188647, 37.226369],\n          [-79.188578, 37.226497],\n          [-79.188422, 37.22682],\n          [-79.187747, 37.228226],\n          [-79.187638, 37.228454],\n          [-79.186752, 37.230317],\n          [-79.186236, 37.23142],\n          [-79.186183, 37.231531],\n          [-79.186143, 37.231633],\n          [-79.186012, 37.231905],\n          [-79.185971, 37.232009],\n          [-79.185901, 37.232204],\n          [-79.185821, 37.232467],\n          [-79.185783, 37.232629],\n          [-79.185746, 37.232787],\n          [-79.185712, 37.232989],\n          [-79.185564, 37.234115],\n          [-79.18554, 37.234342],\n          [-79.185535, 37.234388],\n          [-79.185527, 37.234464],\n          [-79.185489, 37.234824],\n          [-79.185459, 37.235133],\n          [-79.185442, 37.235447],\n          [-79.185444, 37.235802],\n          [-79.185467, 37.236157],\n          [-79.185494, 37.236478],\n          [-79.185509, 37.236629],\n          [-79.185568, 37.237037],\n          [-79.185613, 37.237268],\n          [-79.185642, 37.237403],\n          [-79.185719, 37.237706],\n          [-79.185791, 37.237965],\n          [-79.185811, 37.238037],\n          [-79.185899, 37.238345],\n          [-79.185952, 37.238527],\n          [-79.18597, 37.23859],\n          [-79.186042, 37.238834],\n          [-79.186525, 37.240494],\n          [-79.186638, 37.240882],\n          [-79.186786, 37.241392],\n          [-79.186995, 37.242108],\n          [-79.187061, 37.242336],\n          [-79.187075, 37.242384],\n          [-79.187298, 37.243149],\n          [-79.187378, 37.243422],\n          [-79.187527, 37.243936],\n          [-79.187774, 37.244774],\n          [-79.187853, 37.245008],\n          [-79.187949, 37.245331],\n          [-79.187975, 37.245426],\n          [-79.18809, 37.245933],\n          [-79.188158, 37.246339],\n          [-79.188193, 37.246639],\n          [-79.188214, 37.246935],\n          [-79.188219, 37.247189],\n          [-79.188219, 37.247284],\n          [-79.188204, 37.247624],\n          [-79.188173, 37.24795],\n          [-79.188121, 37.248287],\n          [-79.188078, 37.248502],\n          [-79.188012, 37.248777],\n          [-79.187964, 37.248948],\n          [-79.18752, 37.250322],\n          [-79.187502, 37.250377],\n          [-79.187461, 37.250489],\n          [-79.187101, 37.251604],\n          [-79.186977, 37.251986],\n          [-79.186803, 37.252487],\n          [-79.186647, 37.252862],\n          [-79.186473, 37.253233],\n          [-79.1864, 37.253375],\n          [-79.186369, 37.253435],\n          [-79.186196, 37.253727],\n          [-79.186096, 37.253883],\n          [-79.185846, 37.254253],\n          [-79.185619, 37.254587],\n          [-79.184816, 37.255765],\n          [-79.184332, 37.256471],\n          [-79.184251, 37.256583],\n          [-79.183919, 37.257073],\n          [-79.183282, 37.258009],\n          [-79.183273, 37.258023],\n          [-79.182658, 37.258928],\n          [-79.182428, 37.259266],\n          [-79.182236, 37.259548],\n          [-79.182189, 37.259617],\n          [-79.181677, 37.260371],\n          [-79.180889, 37.261527],\n          [-79.180329, 37.262346],\n          [-79.179966, 37.262877],\n          [-79.178561, 37.264935],\n          [-79.177834, 37.265998],\n          [-79.17762, 37.266312],\n          [-79.177577, 37.266375],\n          [-79.177344, 37.266717],\n          [-79.177268, 37.266828],\n          [-79.175738, 37.269066],\n          [-79.175293, 37.269718],\n          [-79.175059, 37.270062],\n          [-79.175024, 37.270113],\n          [-79.174746, 37.27052],\n          [-79.174499, 37.270885],\n          [-79.174225, 37.271286],\n          [-79.17318, 37.27282],\n          [-79.172596, 37.273676],\n          [-79.172062, 37.274457],\n          [-79.17205, 37.274476],\n          [-79.171892, 37.274707],\n          [-79.171746, 37.274919],\n          [-79.170612, 37.276581],\n          [-79.170091, 37.277344],\n          [-79.170074, 37.277368],\n          [-79.169014, 37.27887],\n          [-79.168768, 37.279279],\n          [-79.168446, 37.279751],\n          [-79.168095, 37.28026],\n          [-79.167791, 37.280704],\n          [-79.167004, 37.281854],\n          [-79.166839, 37.282126],\n          [-79.166686, 37.282417],\n          [-79.166553, 37.282715],\n          [-79.166455, 37.282978],\n          [-79.166365, 37.283271],\n          [-79.166331, 37.283406],\n          [-79.166277, 37.283662],\n          [-79.166236, 37.283934],\n          [-79.166211, 37.284233],\n          [-79.166208, 37.284331],\n          [-79.16621, 37.284606],\n          [-79.166232, 37.284894],\n          [-79.166273, 37.28518],\n          [-79.166341, 37.285491],\n          [-79.166394, 37.28568],\n          [-79.166419, 37.28576],\n          [-79.16653, 37.286061],\n          [-79.16656, 37.286133],\n          [-79.166601, 37.286228],\n          [-79.167073, 37.287187],\n          [-79.167342, 37.287727],\n          [-79.167647, 37.288335],\n          [-79.167961, 37.288961],\n          [-79.168213, 37.289466],\n          [-79.168669, 37.290363],\n          [-79.169252, 37.291516],\n          [-79.169707, 37.292425],\n          [-79.170019, 37.293049],\n          [-79.170164, 37.293337],\n          [-79.170762, 37.294525],\n          [-79.171017, 37.295032],\n          [-79.171197, 37.29539],\n          [-79.171228, 37.295451],\n          [-79.171707, 37.296402],\n          [-79.171854, 37.296694],\n          [-79.172057, 37.297099],\n          [-79.172329, 37.297639],\n          [-79.172756, 37.298485],\n          [-79.172921, 37.29877],\n          [-79.173118, 37.299071],\n          [-79.173326, 37.299351],\n          [-79.1734, 37.299443],\n          [-79.173711, 37.299824],\n          [-79.174643, 37.300928],\n          [-79.177789, 37.304649],\n          [-79.17841, 37.305383],\n          [-79.179563, 37.306751],\n          [-79.18128, 37.308787],\n          [-79.181492, 37.309036],\n          [-79.181949, 37.309573],\n          [-79.182599, 37.310336],\n          [-79.183198, 37.311046],\n          [-79.183775, 37.311729],\n          [-79.183964, 37.311947],\n          [-79.18428, 37.312314],\n          [-79.18536, 37.313557],\n          [-79.18553, 37.313753],\n          [-79.18588, 37.314159],\n          [-79.186286, 37.314624],\n          [-79.186592, 37.314975],\n          [-79.186893, 37.31532],\n          [-79.187155, 37.315623],\n          [-79.187287, 37.315796],\n          [-79.187433, 37.315958],\n          [-79.187603, 37.316193],\n          [-79.187705, 37.316348],\n          [-79.187781, 37.316469],\n          [-79.187895, 37.316666],\n          [-79.188063, 37.316995],\n          [-79.188211, 37.31734],\n          [-79.188267, 37.317488],\n          [-79.188574, 37.31828],\n          [-79.18873, 37.318682],\n          [-79.188773, 37.318793],\n          [-79.188818, 37.318907],\n          [-79.188983, 37.319332],\n          [-79.189167, 37.319817],\n          [-79.18919, 37.319881],\n          [-79.189276, 37.320122],\n          [-79.189293, 37.320183],\n          [-79.189372, 37.320484],\n          [-79.189407, 37.320635],\n          [-79.189445, 37.320825],\n          [-79.189477, 37.321015],\n          [-79.189492, 37.321115],\n          [-79.189533, 37.321458],\n          [-79.189536, 37.321492],\n          [-79.189586, 37.322119],\n          [-79.189602, 37.322319],\n          [-79.189637, 37.32275],\n          [-79.189647, 37.322876],\n          [-79.189704, 37.323523],\n          [-79.189737, 37.323892],\n          [-79.189747, 37.323997],\n          [-79.189761, 37.324147],\n          [-79.189781, 37.324375],\n          [-79.189798, 37.324545],\n          [-79.189823, 37.324722],\n          [-79.189861, 37.324935],\n          [-79.189896, 37.325095],\n          [-79.189922, 37.3252],\n          [-79.190034, 37.325593],\n          [-79.190115, 37.325884],\n          [-79.190279, 37.326471],\n          [-79.190558, 37.327468],\n          [-79.190626, 37.327737],\n          [-79.190656, 37.327855],\n          [-79.190719, 37.328102],\n          [-79.190893, 37.328783],\n          [-79.19093, 37.328914],\n          [-79.19114, 37.329665],\n          [-79.191197, 37.329849],\n          [-79.191289, 37.330174],\n          [-79.191411, 37.330604],\n          [-79.191427, 37.330662],\n          [-79.191549, 37.331144],\n          [-79.191612, 37.331407],\n          [-79.191674, 37.33166],\n          [-79.191713, 37.331945],\n          [-79.191731, 37.332216],\n          [-79.191727, 37.3324],\n          [-79.191718, 37.332618],\n          [-79.191688, 37.333114],\n          [-79.191671, 37.333265],\n          [-79.191652, 37.333506],\n          [-79.191625, 37.33369],\n          [-79.191591, 37.333978],\n          [-79.191586, 37.334109],\n          [-79.191605, 37.334336],\n          [-79.19161, 37.334672],\n          [-79.191612, 37.334771],\n          [-79.191619, 37.335165],\n          [-79.191615, 37.335425],\n          [-79.191612, 37.335464],\n          [-79.191591, 37.335798],\n          [-79.191573, 37.33597],\n          [-79.19153, 37.336198],\n          [-79.191511, 37.3363],\n          [-79.191476, 37.336481],\n          [-79.191396, 37.336901],\n          [-79.191254, 37.33724],\n          [-79.191108, 37.337564],\n          [-79.190891, 37.337852],\n          [-79.190707, 37.338004],\n          [-79.190446, 37.338136],\n          [-79.190159, 37.338232],\n          [-79.189809, 37.338303],\n          [-79.189504, 37.338343],\n          [-79.189039, 37.338414],\n          [-79.188663, 37.33847],\n          [-79.188351, 37.338526],\n          [-79.18802, 37.338571],\n          [-79.18767, 37.338617],\n          [-79.187276, 37.338677],\n          [-79.18683, 37.338758],\n          [-79.186448, 37.338854],\n          [-79.186232, 37.338986],\n          [-79.186034, 37.339158],\n          [-79.185913, 37.339381],\n          [-79.185862, 37.339654],\n          [-79.185792, 37.339958],\n          [-79.185735, 37.340246],\n          [-79.185608, 37.340565],\n          [-79.185474, 37.340849],\n          [-79.185264, 37.341152],\n          [-79.185009, 37.341421],\n          [-79.184748, 37.341658],\n          [-79.184399, 37.341989],\n          [-79.184093, 37.342254],\n          [-79.183658, 37.342682],\n          [-79.18294, 37.343536],\n          [-79.182113, 37.344505],\n          [-79.181077, 37.345699],\n          [-79.180004, 37.346871],\n          [-79.178729, 37.348196],\n          [-79.177389, 37.349407],\n          [-79.177129, 37.349621],\n          [-79.176626, 37.350036],\n          [-79.173129, 37.353092],\n          [-79.169752, 37.356318],\n          [-79.169186, 37.356859],\n          [-79.166439, 37.359647],\n          [-79.165165, 37.360856],\n          [-79.164528, 37.361444],\n          [-79.163946, 37.361878],\n          [-79.162943, 37.362614],\n          [-79.161891, 37.363349],\n          [-79.159885, 37.364693],\n          [-79.158866, 37.365389],\n          [-79.157915, 37.36609],\n          [-79.156262, 37.367299],\n          [-79.153378, 37.36939],\n          [-79.1513, 37.370777],\n          [-79.148798, 37.372337],\n          [-79.146813, 37.373529],\n          [-79.146135, 37.37394],\n          [-79.145298, 37.374385],\n          [-79.144399, 37.374808],\n          [-79.143032, 37.375351],\n          [-79.142887, 37.375396],\n          [-79.141407, 37.375861],\n          [-79.13952, 37.376309],\n          [-79.137442, 37.376753],\n          [-79.136385, 37.376976],\n          [-79.135221, 37.37722],\n          [-79.134065, 37.377456],\n          [-79.132756, 37.377733],\n          [-79.131505, 37.377997],\n          [-79.130701, 37.378165],\n          [-79.129655, 37.378385],\n          [-79.128812, 37.378561],\n          [-79.127809, 37.378776],\n          [-79.127166, 37.378891],\n          [-79.124907, 37.379433],\n          [-79.122351, 37.380007],\n          [-79.119924, 37.380555],\n          [-79.118369, 37.380958],\n          [-79.116892, 37.381492],\n          [-79.11429, 37.382508],\n          [-79.111589, 37.383564],\n          [-79.110432, 37.384015],\n          [-79.108723, 37.384663],\n          [-79.107004, 37.385341],\n          [-79.10533, 37.38597],\n          [-79.10529, 37.385969],\n          [-79.104874, 37.386095],\n          [-79.104406, 37.386191],\n          [-79.103958, 37.38624],\n          [-79.103328, 37.386271],\n          [-79.101681, 37.386155],\n          [-79.101144, 37.386117],\n          [-79.100418, 37.386038],\n          [-79.097991, 37.385843],\n          [-79.09636, 37.385744],\n          [-79.095982, 37.385658],\n          [-79.095845, 37.385614],\n          [-79.09571, 37.385555],\n          [-79.095567, 37.38548],\n          [-79.095427, 37.38539],\n          [-79.095308, 37.385296],\n          [-79.09517, 37.385161],\n          [-79.09509, 37.385054],\n          [-79.094998, 37.384905],\n          [-79.094916, 37.384737],\n          [-79.094844, 37.384528],\n          [-79.094656, 37.383845],\n          [-79.094531, 37.38345],\n          [-79.094325, 37.383054],\n          [-79.094038, 37.38276],\n          [-79.093621, 37.382467],\n          [-79.093187, 37.382294],\n          [-79.092689, 37.382201],\n          [-79.092284, 37.382201],\n          [-79.091903, 37.382257],\n          [-79.091551, 37.382364],\n          [-79.091187, 37.382541],\n          [-79.090959, 37.382723],\n          [-79.090789, 37.382882],\n          [-79.090589, 37.383115],\n          [-79.090443, 37.383376],\n          [-79.090284, 37.383744],\n          [-79.090225, 37.384],\n          [-79.090179, 37.384541],\n          [-79.090062, 37.385779],\n          [-79.089925, 37.386644],\n          [-79.089849, 37.387226],\n          [-79.089779, 37.387541],\n          [-79.089689, 37.387836],\n          [-79.0895, 37.38838],\n          [-79.089436, 37.388633],\n          [-79.089405, 37.388841],\n          [-79.089289, 37.389685],\n          [-79.089161, 37.39093],\n          [-79.089008, 37.392008],\n          [-79.08881, 37.394069],\n          [-79.088768, 37.394579],\n          [-79.088645, 37.395885],\n          [-79.088477, 37.397207],\n          [-79.087956, 37.401181],\n          [-79.087825, 37.401823],\n          [-79.087665, 37.402308],\n          [-79.087554, 37.402629],\n          [-79.08736, 37.403142],\n          [-79.087142, 37.403562],\n          [-79.086923, 37.403937],\n          [-79.086762, 37.404195],\n          [-79.086439, 37.404708],\n          [-79.086251, 37.405002],\n          [-79.085982, 37.405393],\n          [-79.085647, 37.405896],\n          [-79.085037, 37.406824],\n          [-79.084691, 37.407346],\n          [-79.084239, 37.407998],\n          [-79.084081, 37.408208],\n          [-79.083969, 37.408376],\n          [-79.083852, 37.408534],\n          [-79.083752, 37.408705],\n          [-79.083641, 37.408893],\n          [-79.08253, 37.41059],\n          [-79.082107, 37.41155],\n          [-79.081937, 37.412163],\n          [-79.081833, 37.412538],\n          [-79.081757, 37.413176],\n          [-79.08171, 37.413903],\n          [-79.081751, 37.414774],\n          [-79.081781, 37.415758],\n          [-79.081777, 37.417393],\n          [-79.081646, 37.41901],\n          [-79.081485, 37.420256],\n          [-79.081292, 37.421219],\n          [-79.081057, 37.422257],\n          [-79.080513, 37.424117],\n          [-79.07951, 37.427155],\n          [-79.078061, 37.431195],\n          [-79.077269, 37.433524],\n          [-79.076993, 37.434391],\n          [-79.076647, 37.435495],\n          [-79.076395, 37.436608],\n          [-79.076304, 37.437254],\n          [-79.076229, 37.438019],\n          [-79.076213, 37.439312],\n          [-79.076213, 37.439413],\n          [-79.076155, 37.442774],\n          [-79.07614, 37.443179],\n          [-79.076116, 37.443841],\n          [-79.076046, 37.446058],\n          [-79.075976, 37.449173],\n          [-79.076002, 37.451689],\n          [-79.076065, 37.4523],\n          [-79.076262, 37.453],\n          [-79.076579, 37.453683],\n          [-79.076982, 37.454312],\n          [-79.077536, 37.45501],\n          [-79.079739, 37.457229],\n          [-79.080689, 37.458217],\n          [-79.081531, 37.459252],\n          [-79.082085, 37.460038],\n          [-79.082441, 37.460738],\n          [-79.082708, 37.461304],\n          [-79.082968, 37.461981],\n          [-79.083137, 37.462694],\n          [-79.083265, 37.463513],\n          [-79.083293, 37.464338],\n          [-79.083287, 37.464745],\n          [-79.083277, 37.465166],\n          [-79.083236, 37.465743],\n          [-79.083136, 37.466259],\n          [-79.082678, 37.468029],\n          [-79.082438, 37.469156],\n          [-79.08215, 37.470371],\n          [-79.081963, 37.471033],\n          [-79.081827, 37.471415],\n          [-79.081408, 37.472342],\n          [-79.081005, 37.47309],\n          [-79.080296, 37.474045],\n          [-79.079641, 37.474751],\n          [-79.078249, 37.476094],\n          [-79.077451, 37.477058],\n          [-79.076776, 37.477863],\n          [-79.076213, 37.478711],\n          [-79.075638, 37.479763],\n          [-79.075274, 37.480624],\n          [-79.074869, 37.481821],\n          [-79.074675, 37.482594],\n          [-79.074634, 37.482892],\n          [-79.074593, 37.483204],\n          [-79.07457, 37.483627],\n          [-79.074448, 37.484732],\n          [-79.074331, 37.485753],\n          [-79.074167, 37.486518],\n          [-79.073888, 37.487326],\n          [-79.073467, 37.488074],\n          [-79.07305, 37.488846],\n          [-79.072616, 37.489619],\n          [-79.072018, 37.490699],\n          [-79.07163, 37.49136],\n          [-79.070791, 37.492896],\n          [-79.070146, 37.494186],\n          [-79.06953, 37.495438],\n          [-79.068703, 37.497026],\n          [-79.067817, 37.498799],\n          [-79.067177, 37.500098],\n          [-79.066497, 37.501471],\n          [-79.066168, 37.502341],\n          [-79.065974, 37.503063],\n          [-79.065895, 37.503746],\n          [-79.065857, 37.504329],\n          [-79.065851, 37.505804],\n          [-79.065851, 37.506847],\n          [-79.065828, 37.508187],\n          [-79.065831, 37.509824],\n          [-79.0658, 37.510657],\n          [-79.065769, 37.511273],\n          [-79.065628, 37.51191],\n          [-79.065455, 37.512506],\n          [-79.065165, 37.513111],\n          [-79.064807, 37.513823],\n          [-79.064426, 37.514512],\n          [-79.063986, 37.515424],\n          [-79.063804, 37.515903],\n          [-79.063545, 37.516788],\n          [-79.063328, 37.51796],\n          [-79.063264, 37.519296],\n          [-79.063311, 37.520208],\n          [-79.063487, 37.521209],\n          [-79.063645, 37.522214],\n          [-79.063845, 37.523275],\n          [-79.06425, 37.525364],\n          [-79.064871, 37.528602],\n          [-79.065376, 37.531264],\n          [-79.066057, 37.534819],\n          [-79.066725, 37.538252],\n          [-79.0674, 37.541904],\n          [-79.06794, 37.544546],\n          [-79.068021, 37.545221],\n          [-79.068093, 37.545891],\n          [-79.068075, 37.546616],\n          [-79.067977, 37.547323],\n          [-79.067805, 37.547989],\n          [-79.06729, 37.549617],\n          [-79.066508, 37.552189],\n          [-79.066203, 37.55312],\n          [-79.065916, 37.554199],\n          [-79.06571, 37.554864],\n          [-79.065358, 37.555901],\n          [-79.06462, 37.558162],\n          [-79.064236, 37.559374],\n          [-79.064086, 37.559848],\n          [-79.063835, 37.560896],\n          [-79.063609, 37.561383],\n          [-79.063256, 37.561986],\n          [-79.062896, 37.562503],\n          [-79.062134, 37.563345],\n          [-79.061625, 37.563753],\n          [-79.06094, 37.564213],\n          [-79.058641, 37.565583],\n          [-79.05758, 37.566208],\n          [-79.056639, 37.566768],\n          [-79.055935, 37.567192],\n          [-79.055742, 37.567302],\n          [-79.055553, 37.567416],\n          [-79.055246, 37.567615],\n          [-79.054927, 37.567838],\n          [-79.054748, 37.567977],\n          [-79.054525, 37.568169],\n          [-79.05429, 37.568391],\n          [-79.054239, 37.568442],\n          [-79.054034, 37.568657],\n          [-79.053873, 37.56885],\n          [-79.053657, 37.569143],\n          [-79.053524, 37.569347],\n          [-79.053368, 37.569618],\n          [-79.053228, 37.569894],\n          [-79.053172, 37.570026],\n          [-79.053043, 37.570358],\n          [-79.05286, 37.57095],\n          [-79.052677, 37.571527],\n          [-79.052485, 37.572133],\n          [-79.052132, 37.573261],\n          [-79.051632, 37.57486],\n          [-79.051348, 37.57574],\n          [-79.051123, 37.576286],\n          [-79.051087, 37.576361],\n          [-79.050788, 37.576916],\n          [-79.050662, 37.577116],\n          [-79.050472, 37.577395],\n          [-79.050278, 37.577652],\n          [-79.050057, 37.577924],\n          [-79.049759, 37.578262],\n          [-79.049412, 37.578608],\n          [-79.049047, 37.578931],\n          [-79.047001, 37.580602],\n          [-79.046515, 37.580994],\n          [-79.046166, 37.58126],\n          [-79.045909, 37.581455],\n          [-79.04561, 37.58167],\n          [-79.045264, 37.581887],\n          [-79.044961, 37.582077],\n          [-79.044149, 37.582573],\n          [-79.04353, 37.582927],\n          [-79.04291, 37.58327],\n          [-79.042129, 37.58371],\n          [-79.041873, 37.583864],\n          [-79.041806, 37.58391],\n          [-79.041621, 37.584017],\n          [-79.041414, 37.584155],\n          [-79.041178, 37.58431],\n          [-79.040635, 37.584689],\n          [-79.039894, 37.585255],\n          [-79.039608, 37.585491],\n          [-79.03912, 37.585904],\n          [-79.038845, 37.586155],\n          [-79.038474, 37.586513],\n          [-79.03781, 37.587198],\n          [-79.037358, 37.587719],\n          [-79.037086, 37.588056],\n          [-79.036877, 37.588331],\n          [-79.036498, 37.588836],\n          [-79.036258, 37.589205],\n          [-79.035926, 37.589739],\n          [-79.034645, 37.591992],\n          [-79.034482, 37.592286],\n          [-79.034097, 37.592957],\n          [-79.033913, 37.593255],\n          [-79.033669, 37.593669],\n          [-79.033006, 37.594819],\n          [-79.032654, 37.595452],\n          [-79.032044, 37.596522],\n          [-79.031678, 37.597159],\n          [-79.031353, 37.597735],\n          [-79.03004, 37.600074],\n          [-79.029644, 37.600763],\n          [-79.028963, 37.601951],\n          [-79.028685, 37.602397],\n          [-79.02851, 37.602662],\n          [-79.028221, 37.603043],\n          [-79.027978, 37.603341],\n          [-79.027692, 37.60368],\n          [-79.027548, 37.60383],\n          [-79.027306, 37.604072],\n          [-79.027105, 37.604269],\n          [-79.02697, 37.604392],\n          [-79.026652, 37.60468],\n          [-79.026083, 37.605207],\n          [-79.026036, 37.60525],\n          [-79.025989, 37.605294],\n          [-79.025872, 37.605402],\n          [-79.02555, 37.605685],\n          [-79.025303, 37.605893],\n          [-79.025239, 37.605951],\n          [-79.025075, 37.606102],\n          [-79.024795, 37.606358],\n          [-79.024408, 37.606702],\n          [-79.024072, 37.607013],\n          [-79.024053, 37.607031],\n          [-79.023787, 37.607264],\n          [-79.023498, 37.607516],\n          [-79.023027, 37.607911],\n          [-79.022811, 37.60807],\n          [-79.022583, 37.608218],\n          [-79.022393, 37.608329],\n          [-79.022103, 37.608478],\n          [-79.021864, 37.608585],\n          [-79.021424, 37.608752],\n          [-79.020855, 37.608965],\n          [-79.020271, 37.609195],\n          [-79.020171, 37.609236],\n          [-79.019921, 37.609348],\n          [-79.019569, 37.609526],\n          [-79.019341, 37.609661],\n          [-79.019134, 37.609801],\n          [-79.018938, 37.609951],\n          [-79.018736, 37.61013],\n          [-79.018557, 37.610318],\n          [-79.018408, 37.6105],\n          [-79.018273, 37.610689],\n          [-79.018177, 37.610845],\n          [-79.018077, 37.611005],\n          [-79.017942, 37.61127],\n          [-79.01775, 37.611733],\n          [-79.017583, 37.612195],\n          [-79.017453, 37.612536],\n          [-79.01736, 37.612779],\n          [-79.017077, 37.613518],\n          [-79.016316, 37.615651],\n          [-79.016211, 37.615921],\n          [-79.015957, 37.616661],\n          [-79.015442, 37.618041],\n          [-79.015171, 37.618767],\n          [-79.015044, 37.619085],\n          [-79.014896, 37.619401],\n          [-79.014725, 37.619699],\n          [-79.014609, 37.619891],\n          [-79.014507, 37.620046],\n          [-79.014326, 37.620291],\n          [-79.014076, 37.620611],\n          [-79.013882, 37.620808],\n          [-79.013583, 37.621079],\n          [-79.012998, 37.621504],\n          [-79.01238, 37.621893],\n          [-79.010646, 37.622959],\n          [-79.01003, 37.623323],\n          [-79.009112, 37.623886],\n          [-79.007841, 37.62468],\n          [-79.007669, 37.624786],\n          [-79.00613, 37.625753],\n          [-79.00574, 37.625992],\n          [-79.004933, 37.626484],\n          [-79.004251, 37.626912],\n          [-79.004139, 37.626981],\n          [-79.003154, 37.627592],\n          [-79.001641, 37.628516],\n          [-79.001111, 37.628835],\n          [-79.00072, 37.62907],\n          [-79.000623, 37.62914],\n          [-79.000217, 37.629394],\n          [-78.998912, 37.630202],\n          [-78.998196, 37.630645],\n          [-78.997598, 37.631025],\n          [-78.997526, 37.631071],\n          [-78.997241, 37.631274],\n          [-78.996875, 37.631534],\n          [-78.996217, 37.63205],\n          [-78.995656, 37.632525],\n          [-78.995017, 37.633129],\n          [-78.994464, 37.633668],\n          [-78.993794, 37.634338],\n          [-78.992582, 37.635539],\n          [-78.99241, 37.635715],\n          [-78.992112, 37.636],\n          [-78.991971, 37.636127],\n          [-78.991598, 37.636454],\n          [-78.991319, 37.636676],\n          [-78.991111, 37.636827],\n          [-78.990724, 37.637089],\n          [-78.990344, 37.637324],\n          [-78.989967, 37.637537],\n          [-78.989578, 37.637737],\n          [-78.988855, 37.638052],\n          [-78.98807, 37.638382],\n          [-78.986736, 37.63892],\n          [-78.986454, 37.639034],\n          [-78.985803, 37.639316],\n          [-78.984897, 37.639687],\n          [-78.98388, 37.640096],\n          [-78.983117, 37.640414],\n          [-78.982726, 37.640573],\n          [-78.981774, 37.640959],\n          [-78.979687, 37.64182],\n          [-78.978231, 37.642417],\n          [-78.977005, 37.64291],\n          [-78.97646, 37.643116],\n          [-78.975777, 37.643333],\n          [-78.975711, 37.643354],\n          [-78.97542, 37.643425],\n          [-78.974834, 37.643551],\n          [-78.974604, 37.64359],\n          [-78.974067, 37.643681],\n          [-78.973393, 37.643752],\n          [-78.972559, 37.643813],\n          [-78.972242, 37.643839],\n          [-78.970006, 37.64399],\n          [-78.96903, 37.64406],\n          [-78.968589, 37.644095],\n          [-78.968224, 37.644136],\n          [-78.967889, 37.644182],\n          [-78.967664, 37.644226],\n          [-78.967387, 37.644293],\n          [-78.967224, 37.644341],\n          [-78.966957, 37.64443],\n          [-78.966688, 37.644536],\n          [-78.966474, 37.644631],\n          [-78.966164, 37.644789],\n          [-78.965983, 37.644902],\n          [-78.965692, 37.645098],\n          [-78.965428, 37.645294],\n          [-78.965238, 37.645456],\n          [-78.965063, 37.645628],\n          [-78.964898, 37.645816],\n          [-78.964762, 37.645992],\n          [-78.964605, 37.646219],\n          [-78.964465, 37.646453],\n          [-78.964354, 37.646672],\n          [-78.96426, 37.646896],\n          [-78.964184, 37.647124],\n          [-78.964105, 37.647472],\n          [-78.964045, 37.647822],\n          [-78.963795, 37.650137],\n          [-78.963771, 37.650446],\n          [-78.963726, 37.650831],\n          [-78.963699, 37.651104],\n          [-78.963637, 37.651545],\n          [-78.963559, 37.651968],\n          [-78.963475, 37.652244],\n          [-78.963403, 37.652439],\n          [-78.963343, 37.65259],\n          [-78.963259, 37.652771],\n          [-78.963211, 37.652855],\n          [-78.963159, 37.652948],\n          [-78.963044, 37.653119],\n          [-78.962876, 37.65334],\n          [-78.962692, 37.653554],\n          [-78.961989, 37.654258],\n          [-78.961507, 37.654728],\n          [-78.961039, 37.655181],\n          [-78.960337, 37.655875],\n          [-78.96023, 37.655972],\n          [-78.960126, 37.656071],\n          [-78.959777, 37.656385],\n          [-78.959596, 37.656559],\n          [-78.959428, 37.656733],\n          [-78.95894, 37.657212],\n          [-78.958347, 37.65781],\n          [-78.957955, 37.658265],\n          [-78.957902, 37.65834],\n          [-78.957703, 37.658582],\n          [-78.956957, 37.659613],\n          [-78.956, 37.660952],\n          [-78.95555, 37.661601],\n          [-78.95521, 37.662149],\n          [-78.955078, 37.662367],\n          [-78.954742, 37.662988],\n          [-78.954584, 37.663297],\n          [-78.954305, 37.663917],\n          [-78.954148, 37.6643],\n          [-78.953981, 37.664751],\n          [-78.953842, 37.665162],\n          [-78.953791, 37.665348],\n          [-78.953693, 37.665702],\n          [-78.953658, 37.665836],\n          [-78.953519, 37.666441],\n          [-78.953449, 37.666806],\n          [-78.953407, 37.667104],\n          [-78.953324, 37.667763],\n          [-78.953292, 37.668183],\n          [-78.953221, 37.669156],\n          [-78.953153, 37.670098],\n          [-78.953142, 37.670264],\n          [-78.953141, 37.6704],\n          [-78.953072, 37.671177],\n          [-78.95304, 37.671615],\n          [-78.952995, 37.672174],\n          [-78.952947, 37.672942],\n          [-78.95292, 37.673225],\n          [-78.952878, 37.673819],\n          [-78.952829, 37.674339],\n          [-78.952797, 37.674686],\n          [-78.952784, 37.674804],\n          [-78.952747, 37.675024],\n          [-78.952692, 37.675301],\n          [-78.952624, 37.675578],\n          [-78.952561, 37.675784],\n          [-78.952486, 37.675985],\n          [-78.952442, 37.676122],\n          [-78.952386, 37.676257],\n          [-78.95232, 37.676433],\n          [-78.952115, 37.676852],\n          [-78.952045, 37.676981],\n          [-78.951895, 37.677259],\n          [-78.951765, 37.677478],\n          [-78.951015, 37.678688],\n          [-78.950642, 37.679294],\n          [-78.950106, 37.680167],\n          [-78.949932, 37.680439],\n          [-78.949555, 37.681057],\n          [-78.948514, 37.682749],\n          [-78.948346, 37.683014],\n          [-78.94819, 37.68327],\n          [-78.947933, 37.683687],\n          [-78.947735, 37.683997],\n          [-78.946949, 37.685284],\n          [-78.946763, 37.685577],\n          [-78.946171, 37.686544],\n          [-78.946077, 37.686718],\n          [-78.945972, 37.686928],\n          [-78.945848, 37.687201],\n          [-78.945794, 37.687349],\n          [-78.945689, 37.687661],\n          [-78.945632, 37.687901],\n          [-78.945568, 37.688266],\n          [-78.945541, 37.688542],\n          [-78.945537, 37.688659],\n          [-78.945545, 37.689126],\n          [-78.945579, 37.689434],\n          [-78.945664, 37.689907],\n          [-78.945683, 37.68999],\n          [-78.945776, 37.690456],\n          [-78.945835, 37.69071],\n          [-78.945961, 37.691323],\n          [-78.946182, 37.69241],\n          [-78.946237, 37.692788],\n          [-78.946274, 37.693085],\n          [-78.946296, 37.693491],\n          [-78.946303, 37.694022],\n          [-78.946301, 37.694057],\n          [-78.946287, 37.694387],\n          [-78.946261, 37.694709],\n          [-78.946249, 37.694805],\n          [-78.946182, 37.695293],\n          [-78.946055, 37.695876],\n          [-78.945864, 37.696567],\n          [-78.945405, 37.698162],\n          [-78.945298, 37.698548],\n          [-78.944826, 37.700186],\n          [-78.944719, 37.700501],\n          [-78.94458, 37.700835],\n          [-78.944457, 37.701074],\n          [-78.944324, 37.701307],\n          [-78.944135, 37.701595],\n          [-78.944026, 37.701738],\n          [-78.943778, 37.70202],\n          [-78.943504, 37.702305],\n          [-78.943214, 37.702564],\n          [-78.94302, 37.702719],\n          [-78.942935, 37.702779],\n          [-78.942809, 37.702868],\n          [-78.942485, 37.703077],\n          [-78.942218, 37.703232],\n          [-78.9405, 37.704132],\n          [-78.940455, 37.704155],\n          [-78.940006, 37.704381],\n          [-78.938227, 37.705302],\n          [-78.93698, 37.705948],\n          [-78.93647, 37.706225],\n          [-78.93488, 37.707122],\n          [-78.934646, 37.707256],\n          [-78.93388, 37.707679],\n          [-78.933448, 37.707924],\n          [-78.932774, 37.708305],\n          [-78.931107, 37.709235],\n          [-78.929365, 37.710215],\n          [-78.928987, 37.710423],\n          [-78.928188, 37.710873],\n          [-78.927848, 37.711058],\n          [-78.927739, 37.711117],\n          [-78.927286, 37.71134],\n          [-78.927035, 37.711449],\n          [-78.926705, 37.711572],\n          [-78.926357, 37.711684],\n          [-78.926015, 37.711773],\n          [-78.925764, 37.711831],\n          [-78.925742, 37.711836],\n          [-78.925395, 37.711899],\n          [-78.925098, 37.711943],\n          [-78.92463, 37.712006],\n          [-78.924358, 37.71204],\n          [-78.9241, 37.712072],\n          [-78.923317, 37.712168],\n          [-78.922673, 37.712257],\n          [-78.921644, 37.712386],\n          [-78.920771, 37.712503],\n          [-78.91879, 37.712755],\n          [-78.917763, 37.712894],\n          [-78.916758, 37.713029],\n          [-78.916316, 37.713107],\n          [-78.915891, 37.713204],\n          [-78.915614, 37.71328],\n          [-78.915324, 37.713372],\n          [-78.915274, 37.713388],\n          [-78.914912, 37.71352],\n          [-78.91455, 37.71367],\n          [-78.914179, 37.713842],\n          [-78.913675, 37.714085],\n          [-78.912967, 37.714415],\n          [-78.910226, 37.715714],\n          [-78.90939, 37.716116],\n          [-78.908844, 37.716378],\n          [-78.908565, 37.716525],\n          [-78.908344, 37.716654],\n          [-78.908223, 37.716733],\n          [-78.907898, 37.716972],\n          [-78.907709, 37.71712],\n          [-78.907284, 37.717479],\n          [-78.905705, 37.718784],\n          [-78.905314, 37.719084],\n          [-78.90491, 37.719372],\n          [-78.904525, 37.719604],\n          [-78.904033, 37.719882],\n          [-78.903337, 37.720265],\n          [-78.902528, 37.720722],\n          [-78.902455, 37.720766],\n          [-78.902055, 37.720998],\n          [-78.901704, 37.721237],\n          [-78.901372, 37.721492],\n          [-78.901207, 37.721632],\n          [-78.901102, 37.721732],\n          [-78.90093, 37.721897],\n          [-78.900791, 37.722043],\n          [-78.900736, 37.722103],\n          [-78.900601, 37.722261],\n          [-78.900394, 37.722523],\n          [-78.900222, 37.722764],\n          [-78.900079, 37.722992],\n          [-78.900004, 37.723131],\n          [-78.899716, 37.723665],\n          [-78.899467, 37.724145],\n          [-78.899406, 37.724274],\n          [-78.89922, 37.72461],\n          [-78.899008, 37.725016],\n          [-78.898838, 37.725322],\n          [-78.898749, 37.725462],\n          [-78.898619, 37.725684],\n          [-78.898501, 37.725886],\n          [-78.898424, 37.726009],\n          [-78.898396, 37.726054],\n          [-78.89823, 37.726333],\n          [-78.897785, 37.72702],\n          [-78.897326, 37.727687],\n          [-78.897029, 37.728104],\n          [-78.896755, 37.72847],\n          [-78.896087, 37.729327],\n          [-78.895376, 37.730223],\n          [-78.89492, 37.73078],\n          [-78.894224, 37.731648],\n          [-78.893951, 37.731982],\n          [-78.893208, 37.732922],\n          [-78.893101, 37.733073],\n          [-78.892951, 37.733284],\n          [-78.892829, 37.733486],\n          [-78.892725, 37.733694],\n          [-78.892653, 37.733852],\n          [-78.892395, 37.734583],\n          [-78.892264, 37.735006],\n          [-78.891874, 37.73617],\n          [-78.891809, 37.736394],\n          [-78.891615, 37.736972],\n          [-78.891508, 37.737307],\n          [-78.891316, 37.737819],\n          [-78.891154, 37.738191],\n          [-78.891075, 37.738356],\n          [-78.891011, 37.738485],\n          [-78.890701, 37.739024],\n          [-78.890539, 37.739262],\n          [-78.890353, 37.739521],\n          [-78.890119, 37.739847],\n          [-78.889796, 37.740253],\n          [-78.889491, 37.740645],\n          [-78.889217, 37.740996],\n          [-78.888944, 37.74133],\n          [-78.888623, 37.741743],\n          [-78.888513, 37.741886],\n          [-78.888267, 37.742188],\n          [-78.887876, 37.742653],\n          [-78.887675, 37.74287],\n          [-78.887504, 37.743037],\n          [-78.887277, 37.743237],\n          [-78.887216, 37.743287],\n          [-78.887135, 37.743353],\n          [-78.886534, 37.743824],\n          [-78.886162, 37.744125],\n          [-78.8861, 37.744182],\n          [-78.885899, 37.744355],\n          [-78.885622, 37.744575],\n          [-78.885356, 37.74478],\n          [-78.884605, 37.745388],\n          [-78.884042, 37.74585],\n          [-78.882882, 37.746752],\n          [-78.882051, 37.747417],\n          [-78.880834, 37.748391],\n          [-78.88003, 37.749038],\n          [-78.879751, 37.749271],\n          [-78.879568, 37.74942],\n          [-78.879376, 37.749569],\n          [-78.878419, 37.750353],\n          [-78.877854, 37.750804],\n          [-78.877584, 37.751037],\n          [-78.877286, 37.751315],\n          [-78.877004, 37.751598],\n          [-78.876844, 37.751774],\n          [-78.876626, 37.752042],\n          [-78.876378, 37.752385],\n          [-78.876192, 37.752665],\n          [-78.876061, 37.752882],\n          [-78.875814, 37.753345],\n          [-78.875209, 37.754691],\n          [-78.874619, 37.756931],\n          [-78.874501, 37.757307],\n          [-78.874339, 37.757855],\n          [-78.873994, 37.758979],\n          [-78.873789, 37.759637],\n          [-78.873696, 37.75991],\n          [-78.873541, 37.760318],\n          [-78.873332, 37.760834],\n          [-78.873094, 37.761337],\n          [-78.872847, 37.761808],\n          [-78.872451, 37.762468],\n          [-78.872257, 37.76277],\n          [-78.871993, 37.763172],\n          [-78.871574, 37.763799],\n          [-78.871327, 37.764167],\n          [-78.871012, 37.764642],\n          [-78.870469, 37.765468],\n          [-78.870316, 37.765702],\n          [-78.870042, 37.766126],\n          [-78.869873, 37.766412],\n          [-78.869781, 37.766589],\n          [-78.869687, 37.766814],\n          [-78.869585, 37.76708],\n          [-78.869516, 37.767314],\n          [-78.869424, 37.767698],\n          [-78.869391, 37.767942],\n          [-78.86938, 37.768238],\n          [-78.869389, 37.768459],\n          [-78.869415, 37.768673],\n          [-78.869485, 37.768991],\n          [-78.869567, 37.769255],\n          [-78.86966, 37.769515],\n          [-78.869743, 37.769714],\n          [-78.869793, 37.769822],\n          [-78.870127, 37.770634],\n          [-78.870244, 37.770938],\n          [-78.870299, 37.771157],\n          [-78.870337, 37.771378],\n          [-78.870379, 37.771605],\n          [-78.870392, 37.771879],\n          [-78.870378, 37.772127],\n          [-78.870337, 37.772397],\n          [-78.870272, 37.77267],\n          [-78.870248, 37.772764],\n          [-78.87004, 37.773562],\n          [-78.869728, 37.774718],\n          [-78.869574, 37.775264],\n          [-78.869411, 37.775864],\n          [-78.869234, 37.776522],\n          [-78.869061, 37.777151],\n          [-78.868889, 37.777735],\n          [-78.868643, 37.778648],\n          [-78.868399, 37.779571],\n          [-78.868224, 37.780198],\n          [-78.868067, 37.780782],\n          [-78.867497, 37.782893],\n          [-78.867434, 37.783141],\n          [-78.867364, 37.783414],\n          [-78.867185, 37.784047],\n          [-78.867156, 37.784152],\n          [-78.867042, 37.784562],\n          [-78.866921, 37.785054],\n          [-78.866779, 37.785508],\n          [-78.866518, 37.786333],\n          [-78.866458, 37.786501],\n          [-78.866348, 37.786832],\n          [-78.866066, 37.787709],\n          [-78.865703, 37.788816],\n          [-78.865457, 37.789659],\n          [-78.865164, 37.790592],\n          [-78.864927, 37.791345],\n          [-78.864619, 37.792175],\n          [-78.864507, 37.792484],\n          [-78.864363, 37.792792],\n          [-78.864228, 37.793041],\n          [-78.864067, 37.7933],\n          [-78.863882, 37.793548],\n          [-78.863684, 37.793797],\n          [-78.863319, 37.794211],\n          [-78.863117, 37.794344],\n          [-78.86295, 37.794541],\n          [-78.862701, 37.794857],\n          [-78.86248, 37.795184],\n          [-78.862275, 37.795518],\n          [-78.862199, 37.795651],\n          [-78.862007, 37.796159],\n          [-78.861989, 37.79622],\n          [-78.861909, 37.796548],\n          [-78.861883, 37.796687],\n          [-78.861846, 37.796942],\n          [-78.861828, 37.797235],\n          [-78.861827, 37.797529],\n          [-78.861837, 37.797754],\n          [-78.861844, 37.797901],\n          [-78.861878, 37.798631],\n          [-78.861919, 37.799738],\n          [-78.861971, 37.800826],\n          [-78.862007, 37.801869],\n          [-78.862081, 37.803303],\n          [-78.862104, 37.80423],\n          [-78.86209, 37.804437],\n          [-78.862063, 37.804642],\n          [-78.862038, 37.804754],\n          [-78.862023, 37.804816],\n          [-78.861947, 37.805046],\n          [-78.861861, 37.805246],\n          [-78.861771, 37.805437],\n          [-78.86165, 37.805634],\n          [-78.861512, 37.805817],\n          [-78.861343, 37.806004],\n          [-78.860353, 37.806994],\n          [-78.859848, 37.807481],\n          [-78.858512, 37.808821],\n          [-78.858367, 37.808958],\n          [-78.858079, 37.809211],\n          [-78.857729, 37.809505],\n          [-78.857293, 37.80986],\n          [-78.856987, 37.81009],\n          [-78.856658, 37.810338],\n          [-78.855693, 37.81105],\n          [-78.85561, 37.811115],\n          [-78.855262, 37.811371],\n          [-78.854965, 37.811605],\n          [-78.853694, 37.812587],\n          [-78.853389, 37.812818],\n          [-78.852362, 37.813637],\n          [-78.851981, 37.813912],\n          [-78.851517, 37.814266],\n          [-78.851057, 37.81462],\n          [-78.85085, 37.814768],\n          [-78.850729, 37.814859],\n          [-78.850652, 37.81492],\n          [-78.850085, 37.815369],\n          [-78.848637, 37.81648],\n          [-78.846503, 37.818117],\n          [-78.846263, 37.818303],\n          [-78.845641, 37.818784],\n          [-78.845198, 37.81912],\n          [-78.844287, 37.819835],\n          [-78.843809, 37.820229],\n          [-78.841255, 37.822413],\n          [-78.840635, 37.822925],\n          [-78.840114, 37.823377],\n          [-78.839772, 37.823685],\n          [-78.839408, 37.824047],\n          [-78.839049, 37.824425],\n          [-78.838766, 37.824737],\n          [-78.838386, 37.825182],\n          [-78.838147, 37.825481],\n          [-78.837849, 37.82588],\n          [-78.837407, 37.826506],\n          [-78.837204, 37.826823],\n          [-78.837053, 37.827081],\n          [-78.836731, 37.827595],\n          [-78.836452, 37.828104],\n          [-78.836275, 37.828399],\n          [-78.836111, 37.828667],\n          [-78.835849, 37.82912],\n          [-78.835504, 37.829691],\n          [-78.835352, 37.829945],\n          [-78.83498, 37.830568],\n          [-78.834935, 37.830642],\n          [-78.834826, 37.830821],\n          [-78.834646, 37.831137],\n          [-78.834377, 37.831577],\n          [-78.833853, 37.832462],\n          [-78.833724, 37.832692],\n          [-78.833217, 37.833546],\n          [-78.831919, 37.835713],\n          [-78.831568, 37.836263],\n          [-78.831293, 37.836637],\n          [-78.831013, 37.836981],\n          [-78.83077, 37.837252],\n          [-78.829687, 37.838434],\n          [-78.829526, 37.8386],\n          [-78.829353, 37.838766],\n          [-78.828845, 37.839208],\n          [-78.828553, 37.839442],\n          [-78.828248, 37.839665],\n          [-78.827736, 37.840071],\n          [-78.82744, 37.840316],\n          [-78.827359, 37.840393],\n          [-78.827219, 37.840526],\n          [-78.827033, 37.840723],\n          [-78.82681, 37.840985],\n          [-78.826636, 37.841213],\n          [-78.826324, 37.841668],\n          [-78.825848, 37.842321],\n          [-78.825635, 37.842569],\n          [-78.825481, 37.842727],\n          [-78.825276, 37.842917],\n          [-78.825211, 37.842971],\n          [-78.825103, 37.843062],\n          [-78.824902, 37.843225],\n          [-78.824735, 37.84334],\n          [-78.824467, 37.843502],\n          [-78.824206, 37.843652],\n          [-78.82312, 37.844198],\n          [-78.822611, 37.844456],\n          [-78.821878, 37.84482],\n          [-78.820981, 37.845244],\n          [-78.82067, 37.845389],\n          [-78.820264, 37.845536],\n          [-78.820038, 37.845598],\n          [-78.819873, 37.845635],\n          [-78.81967, 37.845683],\n          [-78.819501, 37.845707],\n          [-78.819221, 37.845735],\n          [-78.818871, 37.845752],\n          [-78.818684, 37.845746],\n          [-78.818377, 37.845729],\n          [-78.818065, 37.845689],\n          [-78.817748, 37.845635],\n          [-78.817461, 37.845563],\n          [-78.817089, 37.845456],\n          [-78.81664, 37.845308],\n          [-78.816094, 37.845137],\n          [-78.815801, 37.845042],\n          [-78.815106, 37.844835],\n          [-78.814203, 37.844545],\n          [-78.813661, 37.844372],\n          [-78.813194, 37.844227],\n          [-78.812793, 37.844119],\n          [-78.812466, 37.844059],\n          [-78.812161, 37.844015],\n          [-78.811899, 37.843994],\n          [-78.811692, 37.843985],\n          [-78.81145, 37.844002],\n          [-78.811288, 37.844022],\n          [-78.810966, 37.84409],\n          [-78.810704, 37.844162],\n          [-78.810498, 37.844229],\n          [-78.810246, 37.844336],\n          [-78.80993, 37.84449],\n          [-78.809727, 37.844605],\n          [-78.809573, 37.844705],\n          [-78.809276, 37.84492],\n          [-78.809029, 37.845076],\n          [-78.808807, 37.845199],\n          [-78.808527, 37.845332],\n          [-78.808311, 37.845419],\n          [-78.808089, 37.845498],\n          [-78.807811, 37.845579],\n          [-78.807589, 37.845643],\n          [-78.807297, 37.845708],\n          [-78.807, 37.845759],\n          [-78.806691, 37.845797],\n          [-78.806302, 37.845837],\n          [-78.805184, 37.845933],\n          [-78.80503, 37.845945],\n          [-78.804012, 37.846026],\n          [-78.800837, 37.846324],\n          [-78.800537, 37.846339],\n          [-78.800237, 37.846355],\n          [-78.800014, 37.846352],\n          [-78.79976, 37.846345],\n          [-78.799425, 37.846321],\n          [-78.799048, 37.846276],\n          [-78.79881, 37.846227],\n          [-78.798587, 37.846183],\n          [-78.798334, 37.846121],\n          [-78.798127, 37.846044],\n          [-78.797833, 37.845932],\n          [-78.797473, 37.845765],\n          [-78.797183, 37.845617],\n          [-78.796923, 37.845465],\n          [-78.796357, 37.845082],\n          [-78.795818, 37.844712],\n          [-78.795607, 37.84458],\n          [-78.795352, 37.844427],\n          [-78.795147, 37.84431],\n          [-78.794915, 37.844201],\n          [-78.794645, 37.844085],\n          [-78.794419, 37.843996],\n          [-78.794095, 37.843903],\n          [-78.793805, 37.843828],\n          [-78.793467, 37.843774],\n          [-78.793125, 37.84374],\n          [-78.792933, 37.843732],\n          [-78.792722, 37.843723],\n          [-78.792238, 37.84372],\n          [-78.791688, 37.843732],\n          [-78.791137, 37.843731],\n          [-78.790713, 37.843712],\n          [-78.790444, 37.843693],\n          [-78.79016, 37.843657],\n          [-78.78988, 37.843607],\n          [-78.789604, 37.843542],\n          [-78.789363, 37.843478],\n          [-78.789067, 37.843389],\n          [-78.788706, 37.843253],\n          [-78.78839, 37.843125],\n          [-78.788101, 37.843016],\n          [-78.78765, 37.842857],\n          [-78.787324, 37.842748],\n          [-78.787056, 37.84268],\n          [-78.786677, 37.842606],\n          [-78.786459, 37.842568],\n          [-78.786292, 37.842537],\n          [-78.785994, 37.842501],\n          [-78.785649, 37.842467],\n          [-78.785267, 37.842457],\n          [-78.784945, 37.842456],\n          [-78.784589, 37.842468],\n          [-78.782212, 37.842633],\n          [-78.780497, 37.842776],\n          [-78.779987, 37.842814],\n          [-78.778924, 37.842896],\n          [-78.77812, 37.842986],\n          [-78.777773, 37.843042],\n          [-78.777066, 37.843144],\n          [-78.776444, 37.84325],\n          [-78.775647, 37.843402],\n          [-78.774632, 37.843601],\n          [-78.773646, 37.843786],\n          [-78.773282, 37.843855],\n          [-78.772981, 37.843912],\n          [-78.772128, 37.844091],\n          [-78.771161, 37.844316],\n          [-78.770651, 37.844441],\n          [-78.769991, 37.844616],\n          [-78.768859, 37.844941],\n          [-78.768162, 37.845142],\n          [-78.767015, 37.845472],\n          [-78.76637, 37.845658],\n          [-78.765119, 37.846012],\n          [-78.761663, 37.84701],\n          [-78.760903, 37.847224],\n          [-78.760298, 37.847402],\n          [-78.75996, 37.847506],\n          [-78.7597, 37.847596],\n          [-78.759532, 37.84765],\n          [-78.759113, 37.847806],\n          [-78.758783, 37.847948],\n          [-78.758412, 37.84812],\n          [-78.758057, 37.848288],\n          [-78.757154, 37.848747],\n          [-78.756986, 37.848829],\n          [-78.756546, 37.849062],\n          [-78.756115, 37.849306],\n          [-78.755862, 37.849458],\n          [-78.755244, 37.849843],\n          [-78.754769, 37.85013],\n          [-78.754377, 37.85038],\n          [-78.753945, 37.850672],\n          [-78.753673, 37.850873],\n          [-78.753364, 37.851127],\n          [-78.753217, 37.851259],\n          [-78.752739, 37.851715],\n          [-78.752046, 37.852374],\n          [-78.75166, 37.852719],\n          [-78.751401, 37.852929],\n          [-78.751134, 37.853132],\n          [-78.750789, 37.853376],\n          [-78.750504, 37.853564],\n          [-78.750081, 37.853824],\n          [-78.74973, 37.854021],\n          [-78.749369, 37.854207],\n          [-78.748998, 37.85438],\n          [-78.748624, 37.854531],\n          [-78.748053, 37.854743],\n          [-78.747045, 37.85508],\n          [-78.746537, 37.855262],\n          [-78.746473, 37.855285],\n          [-78.745985, 37.855474],\n          [-78.7456, 37.855635],\n          [-78.744986, 37.855911],\n          [-78.744673, 37.856064],\n          [-78.744246, 37.856299],\n          [-78.743761, 37.856591],\n          [-78.743416, 37.856817],\n          [-78.742954, 37.857145],\n          [-78.742639, 37.857387],\n          [-78.742337, 37.85764],\n          [-78.742294, 37.85768],\n          [-78.741896, 37.858045],\n          [-78.741503, 37.85843],\n          [-78.741291, 37.858648],\n          [-78.741254, 37.858686],\n          [-78.740963, 37.859027],\n          [-78.740705, 37.859351],\n          [-78.740668, 37.859398],\n          [-78.740453, 37.85968],\n          [-78.739901, 37.860385],\n          [-78.739675, 37.860647],\n          [-78.739434, 37.860902],\n          [-78.739176, 37.861151],\n          [-78.73895, 37.861357],\n          [-78.738655, 37.861604],\n          [-78.738411, 37.861795],\n          [-78.738094, 37.862025],\n          [-78.737733, 37.862262],\n          [-78.737429, 37.862445],\n          [-78.73708, 37.862638],\n          [-78.73657, 37.862893],\n          [-78.736186, 37.863088],\n          [-78.735435, 37.86348],\n          [-78.734529, 37.863942],\n          [-78.733874, 37.864271],\n          [-78.733562, 37.864427],\n          [-78.733042, 37.864704],\n          [-78.732039, 37.865214],\n          [-78.731948, 37.865258],\n          [-78.731785, 37.865335],\n          [-78.731411, 37.86553],\n          [-78.730148, 37.866169],\n          [-78.729986, 37.866254],\n          [-78.729722, 37.866391],\n          [-78.728688, 37.866913],\n          [-78.727888, 37.86733],\n          [-78.727529, 37.86751],\n          [-78.726765, 37.867904],\n          [-78.726166, 37.868202],\n          [-78.725869, 37.868361],\n          [-78.725428, 37.868579],\n          [-78.725084, 37.868757],\n          [-78.724518, 37.869049],\n          [-78.723898, 37.869354],\n          [-78.722779, 37.869945],\n          [-78.721592, 37.870542],\n          [-78.720481, 37.87111],\n          [-78.719958, 37.871373],\n          [-78.719701, 37.871497],\n          [-78.719365, 37.871672],\n          [-78.718719, 37.872028],\n          [-78.71847, 37.872183],\n          [-78.718164, 37.872388],\n          [-78.717945, 37.872553],\n          [-78.717592, 37.872851],\n          [-78.717285, 37.873139],\n          [-78.717049, 37.873363],\n          [-78.716739, 37.873728],\n          [-78.716536, 37.874002],\n          [-78.716395, 37.874221],\n          [-78.716144, 37.874657],\n          [-78.71604, 37.87487],\n          [-78.715888, 37.875212],\n          [-78.715814, 37.875401],\n          [-78.715694, 37.87571],\n          [-78.715495, 37.876238],\n          [-78.715377, 37.876548],\n          [-78.715275, 37.876817],\n          [-78.71521, 37.877013],\n          [-78.715136, 37.877211],\n          [-78.715081, 37.877371],\n          [-78.714995, 37.877587],\n          [-78.71492, 37.877787],\n          [-78.7148, 37.878131],\n          [-78.714687, 37.878428],\n          [-78.714533, 37.878796],\n          [-78.714454, 37.879009],\n          [-78.714417, 37.879116],\n          [-78.714256, 37.879549],\n          [-78.714141, 37.879854],\n          [-78.713896, 37.880594],\n          [-78.713756, 37.881038],\n          [-78.713682, 37.88126],\n          [-78.713617, 37.881457],\n          [-78.713533, 37.881697],\n          [-78.713446, 37.881943],\n          [-78.713394, 37.882108],\n          [-78.713314, 37.882336],\n          [-78.713184, 37.882655],\n          [-78.713006, 37.883053],\n          [-78.712892, 37.883274],\n          [-78.712733, 37.88355],\n          [-78.712558, 37.88384],\n          [-78.712369, 37.884119],\n          [-78.712275, 37.884257],\n          [-78.712136, 37.884449],\n          [-78.711974, 37.884667],\n          [-78.711814, 37.884876],\n          [-78.711641, 37.885085],\n          [-78.711418, 37.885345],\n          [-78.711139, 37.885644],\n          [-78.710798, 37.88599],\n          [-78.710465, 37.886309],\n          [-78.710195, 37.886555],\n          [-78.709928, 37.886781],\n          [-78.709577, 37.88706],\n          [-78.709406, 37.887199],\n          [-78.709211, 37.887345],\n          [-78.708778, 37.887648],\n          [-78.707968, 37.888179],\n          [-78.707642, 37.888399],\n          [-78.707473, 37.88851],\n          [-78.707244, 37.888663],\n          [-78.706965, 37.888843],\n          [-78.706601, 37.889083],\n          [-78.706088, 37.889425],\n          [-78.705712, 37.889669],\n          [-78.705189, 37.890019],\n          [-78.704893, 37.890211],\n          [-78.703445, 37.891162],\n          [-78.703041, 37.891429],\n          [-78.702721, 37.891638],\n          [-78.702327, 37.891905],\n          [-78.70184, 37.892223],\n          [-78.701163, 37.892662],\n          [-78.700778, 37.892933],\n          [-78.70071, 37.892981],\n          [-78.700622, 37.893046],\n          [-78.700337, 37.893272],\n          [-78.69999, 37.89357],\n          [-78.699755, 37.8938],\n          [-78.699482, 37.894099],\n          [-78.699289, 37.894329],\n          [-78.698787, 37.894984],\n          [-78.698558, 37.895284],\n          [-78.69837, 37.895519],\n          [-78.698116, 37.895851],\n          [-78.697966, 37.896055],\n          [-78.697696, 37.896407],\n          [-78.697057, 37.897242],\n          [-78.696439, 37.898041],\n          [-78.695681, 37.899035],\n          [-78.695049, 37.899863],\n          [-78.694658, 37.900403],\n          [-78.694519, 37.900599],\n          [-78.694429, 37.900733],\n          [-78.693954, 37.901464],\n          [-78.693721, 37.901862],\n          [-78.693473, 37.902275],\n          [-78.693102, 37.902981],\n          [-78.692879, 37.903439],\n          [-78.692797, 37.903623],\n          [-78.692129, 37.905105],\n          [-78.691808, 37.905817],\n          [-78.691268, 37.906984],\n          [-78.690987, 37.907549],\n          [-78.690814, 37.907874],\n          [-78.690688, 37.908089],\n          [-78.690521, 37.908372],\n          [-78.690275, 37.908767],\n          [-78.689663, 37.909657],\n          [-78.689078, 37.910492],\n          [-78.685485, 37.915666],\n          [-78.684467, 37.917131],\n          [-78.682047, 37.920608],\n          [-78.681785, 37.92095],\n          [-78.681517, 37.921272],\n          [-78.681241, 37.921578],\n          [-78.68101, 37.921818],\n          [-78.680605, 37.922194],\n          [-78.68013, 37.922617],\n          [-78.679566, 37.923137],\n          [-78.679307, 37.923403],\n          [-78.678986, 37.92374],\n          [-78.678605, 37.924203],\n          [-78.678345, 37.924561],\n          [-78.678124, 37.924891],\n          [-78.677903, 37.925227],\n          [-78.677688, 37.925589],\n          [-78.677544, 37.925878],\n          [-78.67731, 37.926442],\n          [-78.676551, 37.928284],\n          [-78.676404, 37.928595],\n          [-78.676242, 37.928949],\n          [-78.676148, 37.929122],\n          [-78.675977, 37.929377],\n          [-78.675612, 37.929807],\n          [-78.675385, 37.930086],\n          [-78.675213, 37.930312],\n          [-78.675004, 37.930559],\n          [-78.674617, 37.931044],\n          [-78.67407, 37.931702],\n          [-78.673673, 37.932201],\n          [-78.673281, 37.9327],\n          [-78.672994, 37.933082],\n          [-78.672166, 37.934227],\n          [-78.671112, 37.935771],\n          [-78.670762, 37.936281],\n          [-78.670385, 37.936817],\n          [-78.669877, 37.937599],\n          [-78.668999, 37.93886],\n          [-78.667671, 37.940789],\n          [-78.666721, 37.942158],\n          [-78.666126, 37.943118],\n          [-78.665597, 37.944014],\n          [-78.665125, 37.944827],\n          [-78.664642, 37.945633],\n          [-78.664087, 37.946602],\n          [-78.663665, 37.947366],\n          [-78.663523, 37.947648],\n          [-78.663363, 37.948007],\n          [-78.66312, 37.948581],\n          [-78.662992, 37.948919],\n          [-78.662788, 37.949511],\n          [-78.662392, 37.950794],\n          [-78.662127, 37.951686],\n          [-78.661907, 37.952368],\n          [-78.6618, 37.952667],\n          [-78.661673, 37.952964],\n          [-78.661549, 37.953229],\n          [-78.661377, 37.953546],\n          [-78.661172, 37.953875],\n          [-78.660975, 37.954168],\n          [-78.660712, 37.954527],\n          [-78.660589, 37.954686],\n          [-78.660525, 37.954768],\n          [-78.660204, 37.955161],\n          [-78.659899, 37.955515],\n          [-78.65946, 37.956045],\n          [-78.659107, 37.956472],\n          [-78.658939, 37.95668],\n          [-78.658404, 37.957325],\n          [-78.658185, 37.957583],\n          [-78.657413, 37.958505],\n          [-78.65713, 37.958855],\n          [-78.65677, 37.959264],\n          [-78.656612, 37.959431],\n          [-78.656439, 37.95959],\n          [-78.656251, 37.959739],\n          [-78.656068, 37.959867],\n          [-78.655989, 37.959917],\n          [-78.655752, 37.960052],\n          [-78.655575, 37.96015],\n          [-78.655228, 37.960289],\n          [-78.654931, 37.960405],\n          [-78.653275, 37.960978],\n          [-78.652399, 37.961277],\n          [-78.651659, 37.961545],\n          [-78.651372, 37.96167],\n          [-78.651131, 37.961788],\n          [-78.650953, 37.961888],\n          [-78.65077, 37.962003],\n          [-78.650655, 37.962074],\n          [-78.650545, 37.96215],\n          [-78.650369, 37.962277],\n          [-78.650124, 37.962492],\n          [-78.649827, 37.962781],\n          [-78.649528, 37.963082],\n          [-78.649157, 37.963468],\n          [-78.648771, 37.96385],\n          [-78.648569, 37.964042],\n          [-78.648236, 37.964318],\n          [-78.647928, 37.964546],\n          [-78.647355, 37.964951],\n          [-78.646421, 37.965624],\n          [-78.646034, 37.965897],\n          [-78.645591, 37.966218],\n          [-78.645351, 37.966376],\n          [-78.645051, 37.966569],\n          [-78.644735, 37.966754],\n          [-78.644581, 37.96684],\n          [-78.6444, 37.966936],\n          [-78.643915, 37.967163],\n          [-78.643555, 37.967319],\n          [-78.643147, 37.967465],\n          [-78.642853, 37.967561],\n          [-78.642519, 37.96766],\n          [-78.642395, 37.967695],\n          [-78.642095, 37.967768],\n          [-78.641871, 37.967823],\n          [-78.641449, 37.967916],\n          [-78.640993, 37.967991],\n          [-78.640408, 37.968066],\n          [-78.639997, 37.968103],\n          [-78.639496, 37.96813],\n          [-78.638995, 37.968136],\n          [-78.638434, 37.968125],\n          [-78.637944, 37.9681],\n          [-78.63612, 37.967958],\n          [-78.635136, 37.967873],\n          [-78.633802, 37.96777],\n          [-78.632073, 37.967631],\n          [-78.631801, 37.967611],\n          [-78.630935, 37.967546],\n          [-78.630424, 37.967503],\n          [-78.629697, 37.967442],\n          [-78.628686, 37.967361],\n          [-78.626167, 37.967159],\n          [-78.623282, 37.966927],\n          [-78.622258, 37.96685],\n          [-78.621932, 37.966824],\n          [-78.620819, 37.966736],\n          [-78.620381, 37.966716],\n          [-78.620004, 37.966712],\n          [-78.619679, 37.966717],\n          [-78.61937, 37.966745],\n          [-78.619064, 37.966787],\n          [-78.618761, 37.966844],\n          [-78.618523, 37.9669],\n          [-78.618222, 37.966977],\n          [-78.617837, 37.967103],\n          [-78.617525, 37.967224],\n          [-78.617264, 37.967333],\n          [-78.616866, 37.967526],\n          [-78.61666, 37.96764],\n          [-78.616487, 37.967735],\n          [-78.616266, 37.967872],\n          [-78.615844, 37.968137],\n          [-78.615555, 37.968338],\n          [-78.615229, 37.968577],\n          [-78.614931, 37.968831],\n          [-78.614607, 37.969142],\n          [-78.614381, 37.96937],\n          [-78.614151, 37.969646],\n          [-78.613964, 37.96988],\n          [-78.613494, 37.970554],\n          [-78.61301, 37.971246],\n          [-78.612831, 37.971512],\n          [-78.612279, 37.972333],\n          [-78.611229, 37.97389],\n          [-78.610819, 37.974494],\n          [-78.610719, 37.974624],\n          [-78.610499, 37.974897],\n          [-78.610319, 37.975118],\n          [-78.610116, 37.975331],\n          [-78.609966, 37.975469],\n          [-78.609796, 37.975624],\n          [-78.609591, 37.975796],\n          [-78.609317, 37.976004],\n          [-78.609071, 37.976176],\n          [-78.608849, 37.976327],\n          [-78.608744, 37.97639],\n          [-78.608365, 37.976619],\n          [-78.608101, 37.976752],\n          [-78.607845, 37.976869],\n          [-78.607584, 37.976978],\n          [-78.60725, 37.977103],\n          [-78.606977, 37.977192],\n          [-78.606625, 37.977297],\n          [-78.606266, 37.977388],\n          [-78.606123, 37.977418],\n          [-78.605902, 37.977465],\n          [-78.605646, 37.97752],\n          [-78.605621, 37.977522],\n          [-78.605549, 37.977538],\n          [-78.60423, 37.977756],\n          [-78.602588, 37.978034],\n          [-78.602162, 37.978122],\n          [-78.601825, 37.978203],\n          [-78.601492, 37.978293],\n          [-78.601094, 37.978414],\n          [-78.60071, 37.978547],\n          [-78.600334, 37.978694],\n          [-78.599967, 37.978854],\n          [-78.599486, 37.979083],\n          [-78.599163, 37.979252],\n          [-78.598789, 37.97947],\n          [-78.598549, 37.979624],\n          [-78.597946, 37.980033],\n          [-78.596889, 37.98075],\n          [-78.595137, 37.981939],\n          [-78.593704, 37.982911],\n          [-78.592376, 37.98382],\n          [-78.590854, 37.984906],\n          [-78.590225, 37.985373],\n          [-78.588999, 37.98631],\n          [-78.588012, 37.9871],\n          [-78.587089, 37.987859],\n          [-78.586722, 37.988171],\n          [-78.586183, 37.988631],\n          [-78.585023, 37.989655],\n          [-78.583908, 37.990662],\n          [-78.583686, 37.990885],\n          [-78.583478, 37.991116],\n          [-78.583203, 37.991447],\n          [-78.583057, 37.991641],\n          [-78.582889, 37.99189],\n          [-78.582734, 37.992152],\n          [-78.582584, 37.992445],\n          [-78.582451, 37.992743],\n          [-78.582318, 37.993104],\n          [-78.582229, 37.993396],\n          [-78.582158, 37.993692],\n          [-78.582061, 37.994255],\n          [-78.581989, 37.994788],\n          [-78.581919, 37.9952],\n          [-78.581831, 37.99573],\n          [-78.581596, 37.997239],\n          [-78.581525, 37.997665],\n          [-78.58147, 37.998088],\n          [-78.581083, 38.000517],\n          [-78.580993, 38.001016],\n          [-78.580912, 38.001332],\n          [-78.580857, 38.001514],\n          [-78.580851, 38.001532],\n          [-78.580827, 38.001607],\n          [-78.580788, 38.001711],\n          [-78.580764, 38.001783],\n          [-78.580638, 38.002087],\n          [-78.580501, 38.002397],\n          [-78.580338, 38.002682],\n          [-78.580176, 38.002939],\n          [-78.580026, 38.003155],\n          [-78.57984, 38.003394],\n          [-78.579631, 38.003641],\n          [-78.579528, 38.003748],\n          [-78.579258, 38.004014],\n          [-78.578985, 38.00426],\n          [-78.578784, 38.004426],\n          [-78.578575, 38.004584],\n          [-78.578379, 38.004723],\n          [-78.578122, 38.004899],\n          [-78.577709, 38.005151],\n          [-78.577431, 38.005306],\n          [-78.577141, 38.005444],\n          [-78.576923, 38.005542],\n          [-78.576628, 38.005666],\n          [-78.576327, 38.005766],\n          [-78.576154, 38.005828],\n          [-78.575371, 38.006031],\n          [-78.574274, 38.006313],\n          [-78.573929, 38.006397],\n          [-78.573678, 38.006459],\n          [-78.5731, 38.006602],\n          [-78.572544, 38.006742],\n          [-78.570845, 38.007165],\n          [-78.570536, 38.007245],\n          [-78.570147, 38.007346],\n          [-78.569511, 38.007502],\n          [-78.568866, 38.007677],\n          [-78.568449, 38.007795],\n          [-78.568216, 38.007865],\n          [-78.567861, 38.007984],\n          [-78.567483, 38.008116],\n          [-78.567008, 38.00831],\n          [-78.566642, 38.008471],\n          [-78.566222, 38.008672],\n          [-78.565813, 38.008887],\n          [-78.565381, 38.009126],\n          [-78.564818, 38.009422],\n          [-78.564544, 38.009563],\n          [-78.564196, 38.009735],\n          [-78.564075, 38.009787],\n          [-78.56369, 38.009944],\n          [-78.56326, 38.010103],\n          [-78.562849, 38.010238],\n          [-78.562529, 38.010332],\n          [-78.562124, 38.010438],\n          [-78.561805, 38.010515],\n          [-78.561564, 38.010564],\n          [-78.56093, 38.010675],\n          [-78.560028, 38.010845],\n          [-78.558824, 38.011064],\n          [-78.558024, 38.011219],\n          [-78.557648, 38.011286],\n          [-78.557386, 38.011333],\n          [-78.557058, 38.011387],\n          [-78.555118, 38.011755],\n          [-78.554112, 38.011931],\n          [-78.552878, 38.012156],\n          [-78.552449, 38.01225],\n          [-78.552186, 38.012316],\n          [-78.551829, 38.012417],\n          [-78.551365, 38.012562],\n          [-78.55109, 38.012655],\n          [-78.550658, 38.012829],\n          [-78.550236, 38.013017],\n          [-78.549599, 38.013364],\n          [-78.549376, 38.013492],\n          [-78.549058, 38.013698],\n          [-78.548469, 38.01411],\n          [-78.547659, 38.014674],\n          [-78.547468, 38.014808],\n          [-78.54736, 38.014884],\n          [-78.547042, 38.015096],\n          [-78.546611, 38.015362],\n          [-78.546269, 38.015559],\n          [-78.54592, 38.01574],\n          [-78.545223, 38.016069],\n          [-78.544841, 38.016247],\n          [-78.543906, 38.016682],\n          [-78.543654, 38.016806],\n          [-78.54333, 38.016982],\n          [-78.542733, 38.017318],\n          [-78.542466, 38.017467],\n          [-78.539711, 38.018979],\n          [-78.536725, 38.020664],\n          [-78.535885, 38.021132],\n          [-78.535518, 38.021335],\n          [-78.534742, 38.021766],\n          [-78.534188, 38.022073],\n          [-78.532955, 38.02276],\n          [-78.532173, 38.023196],\n          [-78.531193, 38.023747],\n          [-78.531125, 38.023792],\n          [-78.53075, 38.024045],\n          [-78.530445, 38.024274],\n          [-78.530203, 38.024476],\n          [-78.530016, 38.024649],\n          [-78.529931, 38.024733],\n          [-78.52985, 38.024806],\n          [-78.529798, 38.024854],\n          [-78.529758, 38.024894],\n          [-78.529598, 38.025065],\n          [-78.529327, 38.025386],\n          [-78.52916, 38.025608],\n          [-78.528945, 38.025933],\n          [-78.5288, 38.026176],\n          [-78.528672, 38.026426],\n          [-78.52861, 38.026566],\n          [-78.528405, 38.027066],\n          [-78.52833, 38.027311],\n          [-78.528283, 38.02751],\n          [-78.528235, 38.027689],\n          [-78.528151, 38.028145],\n          [-78.527582, 38.03105],\n          [-78.527126, 38.033402],\n          [-78.52703, 38.033972],\n          [-78.526914, 38.034782],\n          [-78.526868, 38.035166],\n          [-78.52679, 38.036035],\n          [-78.526753, 38.036647],\n          [-78.526715, 38.03781],\n          [-78.526642, 38.040878],\n          [-78.526607, 38.042081],\n          [-78.526584, 38.042473],\n          [-78.526544, 38.042863],\n          [-78.52645, 38.043462],\n          [-78.526353, 38.043907],\n          [-78.526306, 38.044099],\n          [-78.526225, 38.044382],\n          [-78.526103, 38.044762],\n          [-78.525978, 38.045116],\n          [-78.52595, 38.045183],\n          [-78.525619, 38.045973],\n          [-78.525226, 38.046882],\n          [-78.524837, 38.047794],\n          [-78.524807, 38.047861],\n          [-78.524712, 38.048073],\n          [-78.523664, 38.050524],\n          [-78.523608, 38.050633],\n          [-78.523449, 38.050945],\n          [-78.523194, 38.051371],\n          [-78.522992, 38.051667],\n          [-78.522896, 38.051793],\n          [-78.522708, 38.052033],\n          [-78.522379, 38.052403],\n          [-78.522049, 38.052728],\n          [-78.521736, 38.053004],\n          [-78.521375, 38.053289],\n          [-78.521061, 38.053512],\n          [-78.520792, 38.053687],\n          [-78.520433, 38.053898],\n          [-78.5202, 38.054028],\n          [-78.519924, 38.054166],\n          [-78.519561, 38.054329],\n          [-78.519179, 38.054486],\n          [-78.518827, 38.054612],\n          [-78.518437, 38.054736],\n          [-78.518106, 38.054829],\n          [-78.517883, 38.054877],\n          [-78.517638, 38.05494],\n          [-78.517298, 38.055006],\n          [-78.51674, 38.055093],\n          [-78.515503, 38.055228],\n          [-78.513125, 38.055506],\n          [-78.51298, 38.05552],\n          [-78.511721, 38.055664],\n          [-78.510089, 38.05585],\n          [-78.509444, 38.055931],\n          [-78.508892, 38.056018],\n          [-78.508324, 38.056121],\n          [-78.50762, 38.056269],\n          [-78.507101, 38.056364],\n          [-78.5063, 38.056529],\n          [-78.504207, 38.056975],\n          [-78.503544, 38.057129],\n          [-78.50332, 38.057173],\n          [-78.50218, 38.05739],\n          [-78.501769, 38.057476],\n          [-78.501588, 38.057518],\n          [-78.501288, 38.05758],\n          [-78.500918, 38.057644],\n          [-78.50053, 38.057699],\n          [-78.50025, 38.057721],\n          [-78.49999, 38.057731],\n          [-78.4996, 38.057738],\n          [-78.499258, 38.057729],\n          [-78.499228, 38.057727],\n          [-78.498789, 38.057695],\n          [-78.498509, 38.057667],\n          [-78.498249, 38.05764],\n          [-78.497868, 38.057604],\n          [-78.497658, 38.057584],\n          [-78.497235, 38.057537],\n          [-78.496848, 38.057489],\n          [-78.495893, 38.057371],\n          [-78.494978, 38.057279],\n          [-78.49472, 38.057173],\n          [-78.494659, 38.057142],\n          [-78.494592, 38.057093],\n          [-78.494549, 38.057047],\n          [-78.494516, 38.056995],\n          [-78.494502, 38.05695],\n          [-78.494493, 38.056874],\n          [-78.494502, 38.056798],\n          [-78.494522, 38.056739],\n          [-78.494562, 38.056669],\n          [-78.494623, 38.05661],\n          [-78.494697, 38.056562],\n          [-78.494781, 38.056525],\n          [-78.494872, 38.056502],\n          [-78.49496, 38.056493],\n          [-78.495044, 38.0565],\n          [-78.495109, 38.056516],\n          [-78.495169, 38.056541],\n          [-78.495238, 38.056584],\n          [-78.49528, 38.056617],\n          [-78.495339, 38.05668],\n          [-78.495381, 38.056751],\n          [-78.495402, 38.056811],\n          [-78.495415, 38.056894],\n          [-78.495413, 38.056998],\n          [-78.495388, 38.057116],\n          [-78.49528, 38.057239],\n          [-78.495007, 38.057577],\n          [-78.494845, 38.057747],\n          [-78.494782, 38.057825],\n          [-78.494593, 38.05807],\n          [-78.494413, 38.058298],\n          [-78.494268, 38.05847],\n          [-78.494235, 38.058509],\n          [-78.494159, 38.058601],\n          [-78.493967, 38.058833],\n          [-78.493505, 38.059401],\n          [-78.493364, 38.059586],\n          [-78.492889, 38.060182],\n          [-78.492564, 38.060616],\n          [-78.492196, 38.061101],\n          [-78.491916, 38.061468],\n          [-78.491724, 38.061722],\n          [-78.491723, 38.061722],\n          [-78.491578, 38.061897],\n          [-78.491244, 38.062293],\n          [-78.490863, 38.062734],\n          [-78.490477, 38.063153],\n          [-78.490269, 38.06338],\n          [-78.489937, 38.063742],\n          [-78.48969, 38.064008],\n          [-78.489478, 38.064259],\n          [-78.489344, 38.064409],\n          [-78.489289, 38.06447],\n          [-78.489212, 38.064554],\n          [-78.488761, 38.065053],\n          [-78.48815, 38.065739],\n          [-78.488116, 38.065779],\n          [-78.487867, 38.06605],\n          [-78.48713, 38.06686],\n          [-78.486995, 38.067008],\n          [-78.486825, 38.067194],\n          [-78.486343, 38.067727],\n          [-78.486218, 38.067866],\n          [-78.486208, 38.067877],\n          [-78.486134, 38.067959],\n          [-78.48576, 38.068363],\n          [-78.485475, 38.06867],\n          [-78.485154, 38.069027],\n          [-78.484295, 38.070023],\n          [-78.484063, 38.070271],\n          [-78.483776, 38.070614],\n          [-78.483281, 38.071164],\n          [-78.482433, 38.07211],\n          [-78.480968, 38.073741],\n          [-78.480778, 38.073943],\n          [-78.480706, 38.07403],\n          [-78.480376, 38.074401],\n          [-78.479882, 38.074956],\n          [-78.479801, 38.075034],\n          [-78.479272, 38.075634],\n          [-78.478606, 38.076375],\n          [-78.478527, 38.076469],\n          [-78.478367, 38.076647],\n          [-78.477091, 38.078062],\n          [-78.476397, 38.078846],\n          [-78.475743, 38.079571],\n          [-78.474543, 38.08091],\n          [-78.474163, 38.081335],\n          [-78.473969, 38.081577],\n          [-78.473788, 38.081788],\n          [-78.473613, 38.082014],\n          [-78.47347, 38.082218],\n          [-78.472971, 38.083082],\n          [-78.472639, 38.083666],\n          [-78.472264, 38.084319],\n          [-78.471709, 38.085285],\n          [-78.471146, 38.086271],\n          [-78.47079, 38.086895],\n          [-78.470583, 38.087258],\n          [-78.47026, 38.087825],\n          [-78.469568, 38.089039],\n          [-78.468607, 38.090712],\n          [-78.468501, 38.090897],\n          [-78.468139, 38.091557],\n          [-78.468043, 38.091733],\n          [-78.467922, 38.09192],\n          [-78.467732, 38.092218],\n          [-78.46735, 38.0929],\n          [-78.466766, 38.093924],\n          [-78.466497, 38.09437],\n          [-78.466369, 38.094558],\n          [-78.46599, 38.095057],\n          [-78.465526, 38.09564],\n          [-78.465381, 38.095816],\n          [-78.464933, 38.096381],\n          [-78.464463, 38.096962],\n          [-78.464049, 38.097474],\n          [-78.463974, 38.097573],\n          [-78.463441, 38.098232],\n          [-78.46294, 38.098874],\n          [-78.462231, 38.099765],\n          [-78.461478, 38.100721],\n          [-78.460943, 38.101395],\n          [-78.460544, 38.101882],\n          [-78.460009, 38.102564],\n          [-78.459568, 38.103126],\n          [-78.459337, 38.103403],\n          [-78.458603, 38.10429],\n          [-78.457804, 38.105297],\n          [-78.45751, 38.105695],\n          [-78.4569, 38.106619],\n          [-78.456598, 38.107068],\n          [-78.45544, 38.108845],\n          [-78.454988, 38.109578],\n          [-78.454476, 38.110311],\n          [-78.454296, 38.110569],\n          [-78.454206, 38.110708],\n          [-78.454093, 38.110899],\n          [-78.453942, 38.111128],\n          [-78.453769, 38.111409],\n          [-78.453294, 38.112125],\n          [-78.453172, 38.112318],\n          [-78.452856, 38.112817],\n          [-78.452688, 38.11307],\n          [-78.452602, 38.113223],\n          [-78.451975, 38.114186],\n          [-78.451686, 38.11461],\n          [-78.45106, 38.115568],\n          [-78.450908, 38.115798],\n          [-78.450496, 38.11642],\n          [-78.450419, 38.116537],\n          [-78.45032, 38.116697],\n          [-78.450137, 38.116993],\n          [-78.449702, 38.117634],\n          [-78.449172, 38.118448],\n          [-78.448773, 38.119065],\n          [-78.448006, 38.120242],\n          [-78.447677, 38.120726],\n          [-78.447299, 38.121219],\n          [-78.44692, 38.121631],\n          [-78.446411, 38.122124],\n          [-78.4458, 38.12267],\n          [-78.444661, 38.123687],\n          [-78.442392, 38.125724],\n          [-78.441529, 38.126494],\n          [-78.440922, 38.127044],\n          [-78.440006, 38.127866],\n          [-78.439371, 38.128436],\n          [-78.437997, 38.129669],\n          [-78.437902, 38.129754],\n          [-78.437019, 38.130549],\n          [-78.436453, 38.131059],\n          [-78.436187, 38.131299],\n          [-78.435995, 38.13147],\n          [-78.435251, 38.132172],\n          [-78.435106, 38.132303],\n          [-78.434673, 38.132753],\n          [-78.434293, 38.13317],\n          [-78.433695, 38.133887],\n          [-78.433416, 38.134269],\n          [-78.433195, 38.134572],\n          [-78.432173, 38.13616],\n          [-78.430917, 38.138131],\n          [-78.430468, 38.138847],\n          [-78.429836, 38.139833],\n          [-78.429464, 38.140424],\n          [-78.428859, 38.141359],\n          [-78.428348, 38.142178],\n          [-78.428275, 38.142291],\n          [-78.427887, 38.14289],\n          [-78.427641, 38.143278],\n          [-78.427277, 38.143851],\n          [-78.427263, 38.143873],\n          [-78.425718, 38.146293],\n          [-78.4249, 38.147586],\n          [-78.423982, 38.149017],\n          [-78.423879, 38.149181],\n          [-78.4234, 38.149936],\n          [-78.422346, 38.1516],\n          [-78.42208, 38.151996],\n          [-78.421684, 38.152621],\n          [-78.421337, 38.15319],\n          [-78.420383, 38.154692],\n          [-78.419605, 38.155908],\n          [-78.417659, 38.158962],\n          [-78.415009, 38.163121],\n          [-78.414626, 38.163716],\n          [-78.414541, 38.163851],\n          [-78.414293, 38.164245],\n          [-78.412771, 38.16663],\n          [-78.41231, 38.167345],\n          [-78.411781, 38.168185],\n          [-78.410521, 38.170164],\n          [-78.410064, 38.170881],\n          [-78.408661, 38.173081],\n          [-78.408289, 38.173661],\n          [-78.406754, 38.176057],\n          [-78.405791, 38.177582],\n          [-78.405633, 38.177824],\n          [-78.404819, 38.179105],\n          [-78.40451, 38.179581],\n          [-78.403702, 38.180857],\n          [-78.403534, 38.181116],\n          [-78.40229, 38.183084],\n          [-78.402, 38.183534],\n          [-78.401567, 38.184219],\n          [-78.401491, 38.184329],\n          [-78.400918, 38.18523],\n          [-78.400512, 38.185861],\n          [-78.399321, 38.187671],\n          [-78.399195, 38.187856],\n          [-78.399077, 38.188041],\n          [-78.398689, 38.188617],\n          [-78.398558, 38.18882],\n          [-78.397589, 38.190295],\n          [-78.3974, 38.190566],\n          [-78.397207, 38.19086],\n          [-78.396877, 38.191349],\n          [-78.396731, 38.191574],\n          [-78.396016, 38.192652],\n          [-78.395969, 38.192724],\n          [-78.395198, 38.193895],\n          [-78.395145, 38.193978],\n          [-78.395092, 38.194057],\n          [-78.395078, 38.194078],\n          [-78.394787, 38.194511],\n          [-78.394461, 38.19501],\n          [-78.394425, 38.195065],\n          [-78.393867, 38.195904],\n          [-78.393697, 38.196162],\n          [-78.392569, 38.197862],\n          [-78.392356, 38.198186],\n          [-78.391791, 38.199049],\n          [-78.3916, 38.199341],\n          [-78.391424, 38.19959],\n          [-78.391056, 38.200141],\n          [-78.390364, 38.201178],\n          [-78.388697, 38.203713],\n          [-78.387884, 38.204937],\n          [-78.387682, 38.20524],\n          [-78.387424, 38.205639],\n          [-78.386997, 38.206278],\n          [-78.386781, 38.206604],\n          [-78.386138, 38.207581],\n          [-78.385992, 38.207804],\n          [-78.385531, 38.2085],\n          [-78.38498, 38.209334],\n          [-78.384853, 38.209537],\n          [-78.383889, 38.210987],\n          [-78.383519, 38.211533],\n          [-78.383408, 38.211705],\n          [-78.383194, 38.212041],\n          [-78.382209, 38.213531],\n          [-78.381949, 38.213932],\n          [-78.381401, 38.214759],\n          [-78.380953, 38.215433],\n          [-78.380697, 38.215818],\n          [-78.380472, 38.216158],\n          [-78.379118, 38.218196],\n          [-78.378999, 38.218384],\n          [-78.37862, 38.21895],\n          [-78.377882, 38.220071],\n          [-78.377739, 38.220289],\n          [-78.377587, 38.220523],\n          [-78.376908, 38.221535],\n          [-78.376698, 38.221851],\n          [-78.376516, 38.222128],\n          [-78.375966, 38.222959],\n          [-78.375503, 38.223658],\n          [-78.374143, 38.225716],\n          [-78.373741, 38.226317],\n          [-78.372465, 38.228246],\n          [-78.371604, 38.229546],\n          [-78.371224, 38.230126],\n          [-78.37075, 38.230832],\n          [-78.370117, 38.231792],\n          [-78.369796, 38.23229],\n          [-78.369344, 38.233031],\n          [-78.369247, 38.233202],\n          [-78.369201, 38.233285],\n          [-78.369089, 38.233499],\n          [-78.368757, 38.234191],\n          [-78.368537, 38.23469],\n          [-78.368285, 38.235273],\n          [-78.367348, 38.237406],\n          [-78.367125, 38.237924],\n          [-78.366876, 38.23848],\n          [-78.366632, 38.239054],\n          [-78.366538, 38.239263],\n          [-78.366315, 38.239761],\n          [-78.365981, 38.240523],\n          [-78.365112, 38.242495],\n          [-78.364536, 38.243815],\n          [-78.364277, 38.244425],\n          [-78.363872, 38.245322],\n          [-78.363644, 38.245831],\n          [-78.363475, 38.246227],\n          [-78.363324, 38.246579],\n          [-78.363065, 38.24716],\n          [-78.362399, 38.248697],\n          [-78.362213, 38.249115],\n          [-78.36185, 38.249928],\n          [-78.360994, 38.251906],\n          [-78.360894, 38.252122],\n          [-78.360732, 38.252472],\n          [-78.359818, 38.254556],\n          [-78.359604, 38.255032],\n          [-78.358451, 38.257672],\n          [-78.35837, 38.257854],\n          [-78.357235, 38.260418],\n          [-78.35697, 38.261034],\n          [-78.356749, 38.261526],\n          [-78.356328, 38.262487],\n          [-78.3557, 38.26392],\n          [-78.355441, 38.264489],\n          [-78.354985, 38.265534],\n          [-78.354199, 38.267311],\n          [-78.354014, 38.267697],\n          [-78.353899, 38.267927],\n          [-78.353632, 38.268419],\n          [-78.353386, 38.268835],\n          [-78.353012, 38.269405],\n          [-78.352727, 38.269807],\n          [-78.352433, 38.270193],\n          [-78.351176, 38.271816],\n          [-78.35069, 38.272444],\n          [-78.350332, 38.272914],\n          [-78.349867, 38.273496],\n          [-78.349659, 38.273731],\n          [-78.349448, 38.273949],\n          [-78.349246, 38.274133],\n          [-78.348925, 38.274393],\n          [-78.348653, 38.274592],\n          [-78.348309, 38.274816],\n          [-78.346752, 38.275754],\n          [-78.345609, 38.276449],\n          [-78.34394, 38.277447],\n          [-78.343411, 38.277789],\n          [-78.343205, 38.277938],\n          [-78.342906, 38.278167],\n          [-78.342692, 38.278348],\n          [-78.342621, 38.27841],\n          [-78.342399, 38.278622],\n          [-78.342335, 38.278686],\n          [-78.342171, 38.278857],\n          [-78.341631, 38.279482],\n          [-78.341204, 38.280003],\n          [-78.341139, 38.280089],\n          [-78.341053, 38.280202],\n          [-78.340551, 38.280804],\n          [-78.34033, 38.281097],\n          [-78.339739, 38.281771],\n          [-78.337121, 38.284947],\n          [-78.335554, 38.286807],\n          [-78.334912, 38.287652],\n          [-78.334363, 38.288479],\n          [-78.333901, 38.289321],\n          [-78.332891, 38.291302],\n          [-78.33264, 38.291856],\n          [-78.332046, 38.29316],\n          [-78.331547, 38.294091],\n          [-78.33002, 38.297253],\n          [-78.328705, 38.299896],\n          [-78.328454, 38.300437],\n          [-78.327604, 38.302025],\n          [-78.326529, 38.303681],\n          [-78.325643, 38.304891],\n          [-78.325058, 38.305662],\n          [-78.32399, 38.30691],\n          [-78.3236, 38.307359],\n          [-78.323233, 38.30771],\n          [-78.322626, 38.308335],\n          [-78.320591, 38.310229],\n          [-78.317859, 38.312439],\n          [-78.317136, 38.313055],\n          [-78.314274, 38.315396],\n          [-78.313204, 38.316275],\n          [-78.313084, 38.316374],\n          [-78.312238, 38.317069],\n          [-78.31127, 38.317874],\n          [-78.310555, 38.318624],\n          [-78.308339, 38.321068],\n          [-78.307189, 38.322326],\n          [-78.306432, 38.323147],\n          [-78.305157, 38.324565],\n          [-78.299683, 38.33067],\n          [-78.296227, 38.334366],\n          [-78.294775, 38.336025],\n          [-78.294422, 38.336434],\n          [-78.293518, 38.337393],\n          [-78.292283, 38.338774],\n          [-78.290905, 38.340301],\n          [-78.289054, 38.34231],\n          [-78.287698, 38.343781],\n          [-78.286127, 38.345511],\n          [-78.284805, 38.346961],\n          [-78.284197, 38.347653],\n          [-78.281261, 38.350904],\n          [-78.27928, 38.353063],\n          [-78.277989, 38.354462],\n          [-78.276967, 38.355626],\n          [-78.275482, 38.357205],\n          [-78.275108, 38.357686],\n          [-78.273995, 38.359116],\n          [-78.272612, 38.361053],\n          [-78.269402, 38.365549],\n          [-78.268281, 38.367067],\n          [-78.26707, 38.368543],\n          [-78.266209, 38.369424],\n          [-78.26463, 38.370803],\n          [-78.263855, 38.371431],\n          [-78.262777, 38.372178],\n          [-78.262167, 38.372601],\n          [-78.258589, 38.375046],\n          [-78.253931, 38.378242],\n          [-78.253419, 38.378585],\n          [-78.252722, 38.379065],\n          [-78.251038, 38.380279],\n          [-78.249725, 38.3814],\n          [-78.248824, 38.38242],\n          [-78.247019, 38.384778],\n          [-78.243045, 38.39007],\n          [-78.242379, 38.390835],\n          [-78.241798, 38.391304],\n          [-78.241358, 38.391649],\n          [-78.240659, 38.392107],\n          [-78.239791, 38.392562],\n          [-78.236781, 38.394134],\n          [-78.234618, 38.395478],\n          [-78.233524, 38.396238],\n          [-78.231366, 38.397688],\n          [-78.230593, 38.398159],\n          [-78.229713, 38.398631],\n          [-78.22927, 38.398846],\n          [-78.227176, 38.399941],\n          [-78.224001, 38.401573],\n          [-78.221687, 38.402762],\n          [-78.220927, 38.403115],\n          [-78.219583, 38.403494],\n          [-78.217956, 38.403869],\n          [-78.216834, 38.404329],\n          [-78.216198, 38.404653],\n          [-78.215673, 38.404943],\n          [-78.2147, 38.405692],\n          [-78.214341, 38.406017],\n          [-78.211846, 38.409013],\n          [-78.211205, 38.409859],\n          [-78.208931, 38.412831],\n          [-78.207891, 38.413946],\n          [-78.207388, 38.414459],\n          [-78.206848, 38.414885],\n          [-78.20502, 38.416246],\n          [-78.204339, 38.416746],\n          [-78.203587, 38.417231],\n          [-78.201789, 38.418025],\n          [-78.199931, 38.418788],\n          [-78.198775, 38.419213],\n          [-78.197516, 38.419599],\n          [-78.196891, 38.419728],\n          [-78.193593, 38.420311],\n          [-78.192656, 38.420508],\n          [-78.191772, 38.420736],\n          [-78.190615, 38.421137],\n          [-78.189756, 38.421485],\n          [-78.189131, 38.421795],\n          [-78.188009, 38.422501],\n          [-78.186635, 38.423265],\n          [-78.185396, 38.423841],\n          [-78.184545, 38.424162],\n          [-78.179643, 38.425692],\n          [-78.176595, 38.426575],\n          [-78.175037, 38.427149],\n          [-78.174014, 38.427529],\n          [-78.171007, 38.428688],\n          [-78.169272, 38.429381],\n          [-78.165511, 38.430827],\n          [-78.164119, 38.431371],\n          [-78.162591, 38.431967],\n          [-78.161653, 38.432308],\n          [-78.160661, 38.43271],\n          [-78.160269, 38.432865],\n          [-78.159874, 38.433009],\n          [-78.157491, 38.433942],\n          [-78.157022, 38.434133],\n          [-78.156281, 38.434403],\n          [-78.154122, 38.435214],\n          [-78.152887, 38.435503],\n          [-78.151935, 38.435645],\n          [-78.151237, 38.435723],\n          [-78.149391, 38.435895],\n          [-78.145341, 38.436294],\n          [-78.143178, 38.436516],\n          [-78.141588, 38.436723],\n          [-78.140742, 38.436927],\n          [-78.139967, 38.43716],\n          [-78.139029, 38.437478],\n          [-78.138213, 38.437833],\n          [-78.13673, 38.438732],\n          [-78.135769, 38.439493],\n          [-78.133667, 38.441543],\n          [-78.13309, 38.442092],\n          [-78.132637, 38.442565],\n          [-78.131362, 38.443807],\n          [-78.131197, 38.443972],\n          [-78.13069, 38.444456],\n          [-78.13004, 38.445093],\n          [-78.129654, 38.445515],\n          [-78.129431, 38.445788],\n          [-78.129306, 38.445939],\n          [-78.129135, 38.446147],\n          [-78.126535, 38.449414],\n          [-78.12559, 38.450596],\n          [-78.124937, 38.451403],\n          [-78.12463, 38.451786],\n          [-78.122999, 38.453819],\n          [-78.12268, 38.454222],\n          [-78.122212, 38.454799],\n          [-78.122012, 38.455018],\n          [-78.121815, 38.455209],\n          [-78.121657, 38.455346],\n          [-78.121484, 38.455481],\n          [-78.121283, 38.455622],\n          [-78.121072, 38.455755],\n          [-78.120838, 38.455889],\n          [-78.120605, 38.456007],\n          [-78.120411, 38.456093],\n          [-78.120081, 38.45622],\n          [-78.11988, 38.456286],\n          [-78.119617, 38.456362],\n          [-78.119481, 38.456395],\n          [-78.119029, 38.456484],\n          [-78.118859, 38.456513],\n          [-78.118556, 38.456543],\n          [-78.118252, 38.456558],\n          [-78.117886, 38.45656],\n          [-78.117582, 38.456545],\n          [-78.117215, 38.456509],\n          [-78.11691, 38.456463],\n          [-78.116669, 38.456417],\n          [-78.116299, 38.456332],\n          [-78.114395, 38.455867],\n          [-78.113075, 38.455549],\n          [-78.112183, 38.455337],\n          [-78.111983, 38.455288],\n          [-78.110622, 38.454956],\n          [-78.109647, 38.454713],\n          [-78.109318, 38.454619],\n          [-78.108646, 38.454427],\n          [-78.108148, 38.454266],\n          [-78.107826, 38.454152],\n          [-78.107433, 38.454006],\n          [-78.106215, 38.453523],\n          [-78.103244, 38.452284],\n          [-78.103113, 38.45223],\n          [-78.101465, 38.451517],\n          [-78.100793, 38.451267],\n          [-78.099999, 38.450965],\n          [-78.099633, 38.450843],\n          [-78.099366, 38.450762],\n          [-78.098981, 38.450649],\n          [-78.098604, 38.450547],\n          [-78.098262, 38.45046],\n          [-78.09792, 38.450384],\n          [-78.096808, 38.450181],\n          [-78.096151, 38.450083],\n          [-78.095446, 38.449969],\n          [-78.093727, 38.449707],\n          [-78.092677, 38.449547],\n          [-78.092158, 38.449481],\n          [-78.091766, 38.449445],\n          [-78.091635, 38.449437],\n          [-78.091391, 38.44943],\n          [-78.09088, 38.449437],\n          [-78.090541, 38.449459],\n          [-78.090154, 38.449505],\n          [-78.090027, 38.449526],\n          [-78.089761, 38.44957],\n          [-78.089091, 38.449707],\n          [-78.08849, 38.449845],\n          [-78.087312, 38.450134],\n          [-78.086546, 38.450314],\n          [-78.086092, 38.450427],\n          [-78.085716, 38.450516],\n          [-78.085217, 38.45064],\n          [-78.083614, 38.45102],\n          [-78.082588, 38.451268],\n          [-78.081682, 38.451496],\n          [-78.080934, 38.451707],\n          [-78.080808, 38.451743],\n          [-78.080252, 38.451928],\n          [-78.080061, 38.451995],\n          [-78.079356, 38.452244],\n          [-78.079056, 38.452366],\n          [-78.077758, 38.452899],\n          [-78.07693, 38.453218],\n          [-78.07648, 38.453363],\n          [-78.075972, 38.453504],\n          [-78.075519, 38.453613],\n          [-78.075245, 38.453672],\n          [-78.074633, 38.453773],\n          [-78.073634, 38.453917],\n          [-78.073086, 38.453985],\n          [-78.071708, 38.454165],\n          [-78.070367, 38.45434],\n          [-78.069606, 38.454439],\n          [-78.065196, 38.455001],\n          [-78.0636, 38.455212],\n          [-78.062967, 38.455296],\n          [-78.062279, 38.455383],\n          [-78.061807, 38.45545],\n          [-78.061375, 38.455516],\n          [-78.060496, 38.455651],\n          [-78.059099, 38.455874],\n          [-78.058415, 38.455997],\n          [-78.057861, 38.456107],\n          [-78.057398, 38.456211],\n          [-78.057094, 38.456284],\n          [-78.055369, 38.456762],\n          [-78.054558, 38.456978],\n          [-78.05416, 38.457057],\n          [-78.053923, 38.4571],\n          [-78.053692, 38.457137],\n          [-78.053464, 38.457172],\n          [-78.052965, 38.457229],\n          [-78.052547, 38.457266],\n          [-78.05168, 38.457327],\n          [-78.051381, 38.457343],\n          [-78.051209, 38.457356],\n          [-78.050231, 38.457415],\n          [-78.049522, 38.45745],\n          [-78.049115, 38.457457],\n          [-78.048707, 38.45745],\n          [-78.048107, 38.457414],\n          [-78.046583, 38.457296],\n          [-78.045473, 38.457209],\n          [-78.043615, 38.457066],\n          [-78.04299, 38.457014],\n          [-78.041948, 38.456934],\n          [-78.041564, 38.4569],\n          [-78.040447, 38.456809],\n          [-78.039807, 38.456752],\n          [-78.039565, 38.456722],\n          [-78.038614, 38.456586],\n          [-78.037992, 38.45648],\n          [-78.036619, 38.456229],\n          [-78.036312, 38.456174],\n          [-78.035316, 38.455996],\n          [-78.033993, 38.455756],\n          [-78.033455, 38.455659],\n          [-78.032995, 38.455576],\n          [-78.032344, 38.455462],\n          [-78.032225, 38.455441],\n          [-78.032071, 38.455411],\n          [-78.031918, 38.455381],\n          [-78.030629, 38.455156],\n          [-78.030487, 38.455136],\n          [-78.02993, 38.455035],\n          [-78.029397, 38.454939],\n          [-78.027154, 38.454551],\n          [-78.026507, 38.454439],\n          [-78.026143, 38.454368],\n          [-78.025005, 38.454171],\n          [-78.024336, 38.45404],\n          [-78.023622, 38.453878],\n          [-78.02312, 38.453727],\n          [-78.02273, 38.453603],\n          [-78.022384, 38.453473],\n          [-78.021945, 38.453293],\n          [-78.021688, 38.453179],\n          [-78.02141, 38.45304],\n          [-78.020949, 38.452794],\n          [-78.020606, 38.452593],\n          [-78.018376, 38.451156],\n          [-78.015052, 38.449001],\n          [-78.013038, 38.447702],\n          [-78.012718, 38.447476],\n          [-78.012365, 38.447314],\n          [-78.011913, 38.44707],\n          [-78.011467, 38.446849],\n          [-78.011017, 38.446646],\n          [-78.010785, 38.446548],\n          [-78.01041, 38.446389],\n          [-78.009947, 38.446212],\n          [-78.009475, 38.446047],\n          [-78.009032, 38.44592],\n          [-78.008198, 38.445668],\n          [-78.007806, 38.445574],\n          [-78.007536, 38.445509],\n          [-78.00704, 38.445404],\n          [-78.006541, 38.445314],\n          [-78.006039, 38.445234],\n          [-78.005535, 38.445168],\n          [-78.004882, 38.445103],\n          [-78.00427, 38.44506],\n          [-78.003857, 38.445042],\n          [-78.003259, 38.445032],\n          [-77.996098, 38.445039],\n          [-77.995524, 38.445052],\n          [-77.995083, 38.445072],\n          [-77.9946, 38.445108],\n          [-77.994291, 38.44514],\n          [-77.994119, 38.445159],\n          [-77.993562, 38.445235],\n          [-77.993077, 38.445314],\n          [-77.992738, 38.44538],\n          [-77.992304, 38.445476],\n          [-77.991774, 38.445609],\n          [-77.991277, 38.445754],\n          [-77.990885, 38.44588],\n          [-77.990401, 38.446049],\n          [-77.989902, 38.446248],\n          [-77.98951, 38.446417],\n          [-77.989127, 38.446595],\n          [-77.988671, 38.446826],\n          [-77.988226, 38.44707],\n          [-77.988015, 38.447193],\n          [-77.987964, 38.447222],\n          [-77.986229, 38.448266],\n          [-77.982377, 38.450578],\n          [-77.980067, 38.451965],\n          [-77.978396, 38.452971],\n          [-77.976723, 38.453978],\n          [-77.971729, 38.456974],\n          [-77.970854, 38.457513],\n          [-77.970447, 38.457776],\n          [-77.969812, 38.458205],\n          [-77.969672, 38.458304],\n          [-77.969294, 38.458571],\n          [-77.968878, 38.458872],\n          [-77.968162, 38.459423],\n          [-77.967696, 38.459799],\n          [-77.967125, 38.46028],\n          [-77.966325, 38.460982],\n          [-77.965258, 38.461918],\n          [-77.964866, 38.462267],\n          [-77.960196, 38.466376],\n          [-77.955939, 38.470123],\n          [-77.954947, 38.470996],\n          [-77.954533, 38.471358],\n          [-77.953922, 38.471893],\n          [-77.953458, 38.472304],\n          [-77.953176, 38.472548],\n          [-77.952583, 38.473072],\n          [-77.951119, 38.474355],\n          [-77.950943, 38.474509],\n          [-77.949669, 38.47563],\n          [-77.948949, 38.476265],\n          [-77.948002, 38.477098],\n          [-77.940672, 38.483548],\n          [-77.940481, 38.483731],\n          [-77.940188, 38.484012],\n          [-77.939893, 38.484318],\n          [-77.939484, 38.484776],\n          [-77.93926, 38.485054],\n          [-77.939039, 38.48534],\n          [-77.938835, 38.485618],\n          [-77.938574, 38.486003],\n          [-77.938385, 38.4863],\n          [-77.938154, 38.486695],\n          [-77.936929, 38.489071],\n          [-77.936476, 38.48995],\n          [-77.936307, 38.490277],\n          [-77.936213, 38.490449],\n          [-77.936032, 38.490779],\n          [-77.935797, 38.491168],\n          [-77.935515, 38.491593],\n          [-77.935238, 38.491981],\n          [-77.934904, 38.492412],\n          [-77.934836, 38.492493],\n          [-77.93462, 38.492753],\n          [-77.934238, 38.493183],\n          [-77.933985, 38.493449],\n          [-77.933681, 38.493753],\n          [-77.933395, 38.494018],\n          [-77.933018, 38.494354],\n          [-77.932749, 38.494585],\n          [-77.932252, 38.494973],\n          [-77.93171, 38.495374],\n          [-77.931341, 38.495628],\n          [-77.930966, 38.495866],\n          [-77.930194, 38.496327],\n          [-77.929795, 38.496546],\n          [-77.929468, 38.496713],\n          [-77.928898, 38.496989],\n          [-77.928401, 38.497211],\n          [-77.927814, 38.497454],\n          [-77.927352, 38.49763],\n          [-77.926883, 38.497792],\n          [-77.92627, 38.497988],\n          [-77.925745, 38.498139],\n          [-77.925688, 38.498154],\n          [-77.925207, 38.498279],\n          [-77.924635, 38.498412],\n          [-77.924059, 38.498531],\n          [-77.923478, 38.498637],\n          [-77.923244, 38.498675],\n          [-77.9209, 38.499106],\n          [-77.920407, 38.499196],\n          [-77.916265, 38.499951],\n          [-77.914897, 38.500194],\n          [-77.913262, 38.500498],\n          [-77.912906, 38.500563],\n          [-77.911059, 38.5009],\n          [-77.910401, 38.501012],\n          [-77.909308, 38.501222],\n          [-77.90816, 38.501425],\n          [-77.906956, 38.501647],\n          [-77.902649, 38.502433],\n          [-77.901836, 38.502578],\n          [-77.901383, 38.502661],\n          [-77.899056, 38.503088],\n          [-77.897887, 38.503302],\n          [-77.896932, 38.503454],\n          [-77.896481, 38.503514],\n          [-77.896026, 38.50356],\n          [-77.89557, 38.503592],\n          [-77.895091, 38.503613],\n          [-77.894605, 38.503621],\n          [-77.894338, 38.503619],\n          [-77.894023, 38.503612],\n          [-77.893539, 38.503589],\n          [-77.893152, 38.50356],\n          [-77.891645, 38.503392],\n          [-77.891145, 38.503351],\n          [-77.890705, 38.503331],\n          [-77.890264, 38.503325],\n          [-77.89, 38.503328],\n          [-77.889421, 38.503346],\n          [-77.888918, 38.503375],\n          [-77.888578, 38.503406],\n          [-77.888318, 38.503429],\n          [-77.887823, 38.50349],\n          [-77.887334, 38.503566],\n          [-77.886849, 38.503655],\n          [-77.886369, 38.503759],\n          [-77.885701, 38.503929],\n          [-77.88504, 38.504114],\n          [-77.883872, 38.504451],\n          [-77.882026, 38.504972],\n          [-77.880726, 38.50535],\n          [-77.879756, 38.505628],\n          [-77.879416, 38.505726],\n          [-77.878734, 38.505916],\n          [-77.87665, 38.506514],\n          [-77.873295, 38.507467],\n          [-77.870872, 38.508164],\n          [-77.867574, 38.509112],\n          [-77.86643, 38.509426],\n          [-77.865139, 38.509804],\n          [-77.864878, 38.509875],\n          [-77.864614, 38.509946],\n          [-77.864004, 38.510124],\n          [-77.863963, 38.510136],\n          [-77.863243, 38.510359],\n          [-77.862776, 38.510515],\n          [-77.862313, 38.51068],\n          [-77.86153, 38.510992],\n          [-77.86091, 38.511252],\n          [-77.860341, 38.511504],\n          [-77.860101, 38.511597],\n          [-77.859873, 38.511706],\n          [-77.859049, 38.512033],\n          [-77.858596, 38.512199],\n          [-77.85801, 38.512393],\n          [-77.85641, 38.512859],\n          [-77.85546, 38.513131],\n          [-77.853636, 38.513652],\n          [-77.852939, 38.513842],\n          [-77.85189, 38.514117],\n          [-77.851773, 38.514147],\n          [-77.851155, 38.514282],\n          [-77.850783, 38.514355],\n          [-77.850158, 38.514468],\n          [-77.849529, 38.514566],\n          [-77.848611, 38.514673],\n          [-77.847601, 38.514814],\n          [-77.847219, 38.514874],\n          [-77.846744, 38.514961],\n          [-77.846275, 38.515063],\n          [-77.845622, 38.515227],\n          [-77.843493, 38.515828],\n          [-77.840926, 38.516554],\n          [-77.838953, 38.517123],\n          [-77.838611, 38.51724],\n          [-77.838276, 38.51737],\n          [-77.838087, 38.517452],\n          [-77.837878, 38.517559],\n          [-77.837641, 38.517698],\n          [-77.837371, 38.517879],\n          [-77.837159, 38.518042],\n          [-77.836631, 38.518508],\n          [-77.833939, 38.52107],\n          [-77.833536, 38.521444],\n          [-77.832859, 38.52207],\n          [-77.832618, 38.52227],\n          [-77.832363, 38.52246],\n          [-77.832151, 38.522605],\n          [-77.831761, 38.52284],\n          [-77.831645, 38.522905],\n          [-77.831341, 38.523059],\n          [-77.831027, 38.523201],\n          [-77.830705, 38.52333],\n          [-77.830375, 38.523446],\n          [-77.82725, 38.524408],\n          [-77.825282, 38.525005],\n          [-77.824825, 38.525153],\n          [-77.824766, 38.525172],\n          [-77.82414, 38.525403],\n          [-77.823904, 38.525501],\n          [-77.823444, 38.525707],\n          [-77.823161, 38.525842],\n          [-77.822816, 38.526023],\n          [-77.822483, 38.526216],\n          [-77.82216, 38.526429],\n          [-77.821905, 38.526618],\n          [-77.821824, 38.526681],\n          [-77.821661, 38.526816],\n          [-77.82143, 38.527024],\n          [-77.821026, 38.527454],\n          [-77.820758, 38.527783],\n          [-77.820516, 38.528112],\n          [-77.820197, 38.52856],\n          [-77.819895, 38.529029],\n          [-77.81945, 38.529798],\n          [-77.818541, 38.531386],\n          [-77.817476, 38.533249],\n          [-77.817174, 38.533749],\n          [-77.815779, 38.536111],\n          [-77.812836, 38.541042],\n          [-77.812145, 38.542152],\n          [-77.811443, 38.543345],\n          [-77.81107, 38.543916],\n          [-77.809169, 38.54677],\n          [-77.807061, 38.549912],\n          [-77.805801, 38.55177],\n          [-77.803189, 38.555743],\n          [-77.802664, 38.55653],\n          [-77.802442, 38.556869],\n          [-77.802253, 38.557175],\n          [-77.802079, 38.557492],\n          [-77.801838, 38.557971],\n          [-77.801782, 38.55809],\n          [-77.801657, 38.55838],\n          [-77.801522, 38.558722],\n          [-77.801429, 38.558994],\n          [-77.801302, 38.559432],\n          [-77.801209, 38.559822],\n          [-77.801144, 38.560169],\n          [-77.801065, 38.560727],\n          [-77.801025, 38.56131],\n          [-77.801027, 38.561813],\n          [-77.801049, 38.562487],\n          [-77.801069, 38.562893],\n          [-77.801213, 38.565749],\n          [-77.801305, 38.567636],\n          [-77.80137, 38.568961],\n          [-77.801541, 38.572402],\n          [-77.801599, 38.573623],\n          [-77.801669, 38.575224],\n          [-77.801707, 38.575829],\n          [-77.801772, 38.577117],\n          [-77.801874, 38.579138],\n          [-77.801902, 38.579759],\n          [-77.801914, 38.579914],\n          [-77.801945, 38.580642],\n          [-77.801977, 38.581198],\n          [-77.802036, 38.582417],\n          [-77.802118, 38.584113],\n          [-77.802126, 38.584391],\n          [-77.802131, 38.584986],\n          [-77.802118, 38.585525],\n          [-77.802088, 38.586052],\n          [-77.802017, 38.586791],\n          [-77.801743, 38.589112],\n          [-77.801725, 38.589268],\n          [-77.801437, 38.591698],\n          [-77.801342, 38.5925],\n          [-77.801281, 38.593006],\n          [-77.800994, 38.595455],\n          [-77.800644, 38.598437],\n          [-77.800492, 38.599704],\n          [-77.800457, 38.599972],\n          [-77.800268, 38.601612],\n          [-77.800209, 38.602305],\n          [-77.80017, 38.602992],\n          [-77.800152, 38.603904],\n          [-77.800152, 38.604035],\n          [-77.800152, 38.604483],\n          [-77.800172, 38.60559],\n          [-77.800187, 38.606551],\n          [-77.800205, 38.607644],\n          [-77.80022, 38.608813],\n          [-77.800237, 38.609384],\n          [-77.800232, 38.610093],\n          [-77.800248, 38.611162],\n          [-77.80027, 38.611781],\n          [-77.800276, 38.611972],\n          [-77.800298, 38.612639],\n          [-77.800312, 38.613039],\n          [-77.800332, 38.613399],\n          [-77.800397, 38.614527],\n          [-77.800421, 38.615203],\n          [-77.800432, 38.61575],\n          [-77.800444, 38.616559],\n          [-77.800478, 38.618723],\n          [-77.8005, 38.619601],\n          [-77.800525, 38.620811],\n          [-77.800527, 38.620908],\n          [-77.800548, 38.62192],\n          [-77.80058, 38.623403],\n          [-77.800594, 38.624213],\n          [-77.800603, 38.625413],\n          [-77.80062, 38.627386],\n          [-77.800629, 38.627856],\n          [-77.800651, 38.62934],\n          [-77.800658, 38.629863],\n          [-77.800688, 38.631295],\n          [-77.800701, 38.63219],\n          [-77.800708, 38.632656],\n          [-77.800729, 38.632937],\n          [-77.800749, 38.6331],\n          [-77.800764, 38.633194],\n          [-77.800824, 38.633493],\n          [-77.8009, 38.63375],\n          [-77.801033, 38.634132],\n          [-77.801091, 38.634277],\n          [-77.801339, 38.634852],\n          [-77.801526, 38.635289],\n          [-77.801703, 38.635692],\n          [-77.801752, 38.635808],\n          [-77.801965, 38.636295],\n          [-77.802897, 38.638462],\n          [-77.802996, 38.638693],\n          [-77.803206, 38.639174],\n          [-77.803351, 38.639505],\n          [-77.803635, 38.640158],\n          [-77.803774, 38.640485],\n          [-77.80405, 38.641121],\n          [-77.804137, 38.641325],\n          [-77.804199, 38.641471],\n          [-77.804367, 38.641868],\n          [-77.804398, 38.641941],\n          [-77.804535, 38.642359],\n          [-77.804602, 38.642621],\n          [-77.804642, 38.642832],\n          [-77.804669, 38.643038],\n          [-77.804677, 38.643118],\n          [-77.804687, 38.643291],\n          [-77.804696, 38.643722],\n          [-77.804696, 38.644409],\n          [-77.804677, 38.644766],\n          [-77.804636, 38.645023],\n          [-77.804576, 38.645279],\n          [-77.804498, 38.645531],\n          [-77.804445, 38.645671],\n          [-77.804179, 38.646296],\n          [-77.803976, 38.646795],\n          [-77.803645, 38.647584],\n          [-77.803607, 38.647672],\n          [-77.803037, 38.649027],\n          [-77.802582, 38.650099],\n          [-77.802488, 38.65032],\n          [-77.80226, 38.650816],\n          [-77.802226, 38.650891],\n          [-77.801705, 38.651973],\n          [-77.801524, 38.652348],\n          [-77.800517, 38.654435],\n          [-77.800311, 38.654856],\n          [-77.800109, 38.655223],\n          [-77.799504, 38.656216],\n          [-77.799258, 38.656629],\n          [-77.799064, 38.656995],\n          [-77.798952, 38.657238],\n          [-77.798593, 38.658126],\n          [-77.798524, 38.658287],\n          [-77.798395, 38.658591],\n          [-77.798266, 38.658901],\n          [-77.798049, 38.659428],\n          [-77.797829, 38.659963],\n          [-77.79736, 38.661105],\n          [-77.797075, 38.661795],\n          [-77.796724, 38.662641],\n          [-77.79625, 38.663783],\n          [-77.796094, 38.664161],\n          [-77.795637, 38.665271],\n          [-77.79528, 38.666132],\n          [-77.795248, 38.66621],\n          [-77.794069, 38.669063],\n          [-77.793674, 38.670024],\n          [-77.793379, 38.670723],\n          [-77.793244, 38.671036],\n          [-77.793103, 38.671307],\n          [-77.792943, 38.671571],\n          [-77.792813, 38.671755],\n          [-77.792641, 38.671968],\n          [-77.792454, 38.672174],\n          [-77.792251, 38.672371],\n          [-77.791496, 38.673047],\n          [-77.791134, 38.673372],\n          [-77.790643, 38.673809],\n          [-77.789269, 38.675032],\n          [-77.788765, 38.675507],\n          [-77.788692, 38.675576],\n          [-77.788181, 38.676104],\n          [-77.787807, 38.676549],\n          [-77.787668, 38.676743],\n          [-77.787501, 38.677031],\n          [-77.78738, 38.677265],\n          [-77.78733, 38.677383],\n          [-77.787232, 38.677659],\n          [-77.787165, 38.677911],\n          [-77.787115, 38.678177],\n          [-77.787085, 38.678445],\n          [-77.787079, 38.678552],\n          [-77.787095, 38.67913],\n          [-77.787153, 38.679798],\n          [-77.787259, 38.680924],\n          [-77.787331, 38.681886],\n          [-77.787363, 38.682419],\n          [-77.787413, 38.683635],\n          [-77.787401, 38.684203],\n          [-77.787392, 38.684611],\n          [-77.78735, 38.685019],\n          [-77.787315, 38.685264],\n          [-77.787231, 38.685728],\n          [-77.787136, 38.686251],\n          [-77.787114, 38.686332],\n          [-77.78692, 38.686986],\n          [-77.786696, 38.687619],\n          [-77.786501, 38.688074],\n          [-77.786277, 38.68855],\n          [-77.786098, 38.688888],\n          [-77.785944, 38.689154],\n          [-77.785576, 38.689748],\n          [-77.784818, 38.690938],\n          [-77.784516, 38.691425],\n          [-77.784271, 38.691807],\n          [-77.783827, 38.692506],\n          [-77.783401, 38.6932],\n          [-77.783246, 38.693444],\n          [-77.782384, 38.694802],\n          [-77.782205, 38.695084],\n          [-77.781593, 38.696059],\n          [-77.781243, 38.69667],\n          [-77.78108, 38.696994],\n          [-77.780923, 38.697347],\n          [-77.780812, 38.697637],\n          [-77.780687, 38.698004],\n          [-77.780614, 38.698231],\n          [-77.780587, 38.698314],\n          [-77.780392, 38.699181],\n          [-77.780333, 38.699659],\n          [-77.780298, 38.700094],\n          [-77.780287, 38.700389],\n          [-77.780289, 38.700757],\n          [-77.780315, 38.701452],\n          [-77.780365, 38.702797],\n          [-77.780397, 38.703509],\n          [-77.780462, 38.705131],\n          [-77.780535, 38.706895],\n          [-77.780587, 38.708144],\n          [-77.780612, 38.708911],\n          [-77.780675, 38.710324],\n          [-77.780782, 38.713019],\n          [-77.780806, 38.713639],\n          [-77.780906, 38.716128],\n          [-77.780923, 38.716557],\n          [-77.780985, 38.71812],\n          [-77.781094, 38.720811],\n          [-77.781111, 38.721348],\n          [-77.78117, 38.722771],\n          [-77.781205, 38.723428],\n          [-77.781207, 38.723933],\n          [-77.781141, 38.724638],\n          [-77.781062, 38.725028],\n          [-77.780986, 38.725313],\n          [-77.780873, 38.725651],\n          [-77.780799, 38.725838],\n          [-77.780763, 38.72593],\n          [-77.780608, 38.726258],\n          [-77.780457, 38.726537],\n          [-77.78029, 38.726814],\n          [-77.780067, 38.727137],\n          [-77.779841, 38.727426],\n          [-77.779593, 38.727712],\n          [-77.779535, 38.727773],\n          [-77.779432, 38.727882],\n          [-77.779137, 38.728163],\n          [-77.778889, 38.728379],\n          [-77.778564, 38.728638],\n          [-77.777988, 38.729064],\n          [-77.777903, 38.729128],\n          [-77.777813, 38.729195],\n          [-77.777751, 38.72924],\n          [-77.777544, 38.729395],\n          [-77.776507, 38.73018],\n          [-77.77534, 38.731069],\n          [-77.775049, 38.73127],\n          [-77.774364, 38.73177],\n          [-77.774051, 38.732009],\n          [-77.773303, 38.732554],\n          [-77.772496, 38.733155],\n          [-77.772444, 38.733192],\n          [-77.771424, 38.733941],\n          [-77.770375, 38.73472],\n          [-77.769774, 38.735166],\n          [-77.766501, 38.737595],\n          [-77.766092, 38.7379],\n          [-77.766013, 38.737957],\n          [-77.764613, 38.738973],\n          [-77.763699, 38.739647],\n          [-77.760294, 38.742188],\n          [-77.759475, 38.742805],\n          [-77.758292, 38.743704],\n          [-77.757242, 38.744507],\n          [-77.756734, 38.744888],\n          [-77.75607, 38.745394],\n          [-77.755332, 38.74595],\n          [-77.753869, 38.747051],\n          [-77.753512, 38.747317],\n          [-77.752239, 38.748266],\n          [-77.751486, 38.748835],\n          [-77.749304, 38.750477],\n          [-77.747696, 38.751677],\n          [-77.747175, 38.752069],\n          [-77.746636, 38.752468],\n          [-77.746089, 38.752858],\n          [-77.745719, 38.753113],\n          [-77.745109, 38.753534],\n          [-77.744529, 38.753946],\n          [-77.744441, 38.754016],\n          [-77.743143, 38.755039],\n          [-77.742369, 38.755648],\n          [-77.741019, 38.756723],\n          [-77.740302, 38.757289],\n          [-77.74012, 38.757439],\n          [-77.739869, 38.757633],\n          [-77.739452, 38.757933],\n          [-77.738896, 38.758325],\n          [-77.738458, 38.758616],\n          [-77.737994, 38.758912],\n          [-77.737675, 38.759109],\n          [-77.736928, 38.759546],\n          [-77.736529, 38.759764],\n          [-77.73598, 38.760062],\n          [-77.735512, 38.760302],\n          [-77.734641, 38.760749],\n          [-77.731871, 38.762168],\n          [-77.730354, 38.762946],\n          [-77.726563, 38.764904],\n          [-77.726297, 38.765042],\n          [-77.725494, 38.765462],\n          [-77.724993, 38.765717],\n          [-77.724283, 38.76606],\n          [-77.724155, 38.766114],\n          [-77.723683, 38.766274],\n          [-77.723631, 38.766287],\n          [-77.723461, 38.76633],\n          [-77.723208, 38.766384],\n          [-77.722948, 38.766425],\n          [-77.722732, 38.766449],\n          [-77.722439, 38.766466],\n          [-77.722204, 38.76647],\n          [-77.721761, 38.76645],\n          [-77.721338, 38.766416],\n          [-77.720827, 38.766373],\n          [-77.71958, 38.766268],\n          [-77.718945, 38.766226],\n          [-77.71829, 38.766214],\n          [-77.717886, 38.766231],\n          [-77.717644, 38.766248],\n          [-77.717238, 38.766296],\n          [-77.716986, 38.766333],\n          [-77.716478, 38.766426],\n          [-77.715933, 38.766539],\n          [-77.71313, 38.767126],\n          [-77.71253, 38.76725],\n          [-77.711446, 38.767475],\n          [-77.711213, 38.767521],\n          [-77.709832, 38.76781],\n          [-77.709246, 38.767933],\n          [-77.708584, 38.768078],\n          [-77.708134, 38.768177],\n          [-77.707984, 38.768211],\n          [-77.707651, 38.768287],\n          [-77.707208, 38.768389],\n          [-77.707037, 38.768429],\n          [-77.706966, 38.768445],\n          [-77.706604, 38.768529],\n          [-77.705724, 38.768733],\n          [-77.704884, 38.768928],\n          [-77.704008, 38.769125],\n          [-77.703413, 38.769266],\n          [-77.703044, 38.769359],\n          [-77.702667, 38.769454],\n          [-77.702289, 38.769565],\n          [-77.701922, 38.769687],\n          [-77.701705, 38.769766],\n          [-77.701294, 38.769925],\n          [-77.700381, 38.770277],\n          [-77.698624, 38.770957],\n          [-77.69792, 38.771222],\n          [-77.696779, 38.771656],\n          [-77.696286, 38.771839],\n          [-77.694688, 38.772451],\n          [-77.693388, 38.772942],\n          [-77.69338, 38.772945],\n          [-77.69299, 38.773092],\n          [-77.691828, 38.773541],\n          [-77.689985, 38.774273],\n          [-77.689184, 38.774593],\n          [-77.687947, 38.775099],\n          [-77.68652, 38.775696],\n          [-77.686093, 38.775875],\n          [-77.685013, 38.776323],\n          [-77.684548, 38.776508],\n          [-77.683617, 38.77688],\n          [-77.682281, 38.77742],\n          [-77.681906, 38.77757],\n          [-77.680152, 38.778273],\n          [-77.680071, 38.778309],\n          [-77.679964, 38.778348],\n          [-77.67944, 38.778559],\n          [-77.679135, 38.778682],\n          [-77.679008, 38.778733],\n          [-77.678765, 38.778831],\n          [-77.678322, 38.779011],\n          [-77.677302, 38.779417],\n          [-77.677036, 38.779514],\n          [-77.676871, 38.779569],\n          [-77.676375, 38.779711],\n          [-77.675903, 38.779834],\n          [-77.675739, 38.779874],\n          [-77.675282, 38.779966],\n          [-77.675165, 38.77999],\n          [-77.673681, 38.780291],\n          [-77.67245, 38.780538],\n          [-77.671784, 38.780666],\n          [-77.671623, 38.780699],\n          [-77.671392, 38.780752],\n          [-77.670977, 38.780857],\n          [-77.67067, 38.780949],\n          [-77.669909, 38.781181],\n          [-77.669755, 38.781229],\n          [-77.668691, 38.781557],\n          [-77.668105, 38.781729],\n          [-77.66717, 38.781984],\n          [-77.665556, 38.7824],\n          [-77.665397, 38.782443],\n          [-77.66509, 38.782528],\n          [-77.663117, 38.783041],\n          [-77.662729, 38.783142],\n          [-77.658982, 38.784122],\n          [-77.658234, 38.784318],\n          [-77.657487, 38.784515],\n          [-77.656903, 38.784668],\n          [-77.656444, 38.784785],\n          [-77.655772, 38.784954],\n          [-77.655488, 38.785028],\n          [-77.654149, 38.78538],\n          [-77.653073, 38.785665],\n          [-77.652817, 38.785732],\n          [-77.652723, 38.785757],\n          [-77.652335, 38.78586],\n          [-77.650432, 38.786358],\n          [-77.650292, 38.786394],\n          [-77.648546, 38.786845],\n          [-77.648132, 38.786953],\n          [-77.6471, 38.787217],\n          [-77.646912, 38.787266],\n          [-77.646792, 38.787296],\n          [-77.646475, 38.787378],\n          [-77.643862, 38.788066],\n          [-77.643514, 38.788151],\n          [-77.642956, 38.788288],\n          [-77.641845, 38.788545],\n          [-77.641256, 38.788678],\n          [-77.640668, 38.788812],\n          [-77.637878, 38.789456],\n          [-77.637724, 38.789491],\n          [-77.635026, 38.790112],\n          [-77.633026, 38.790572],\n          [-77.631672, 38.790883],\n          [-77.630391, 38.791179],\n          [-77.630168, 38.791231],\n          [-77.629412, 38.791414],\n          [-77.629006, 38.791523],\n          [-77.628982, 38.791529],\n          [-77.628275, 38.791722],\n          [-77.626219, 38.792284],\n          [-77.625465, 38.792483],\n          [-77.624741, 38.792675],\n          [-77.624567, 38.792721],\n          [-77.624468, 38.792748],\n          [-77.624067, 38.792856],\n          [-77.622821, 38.793191],\n          [-77.622323, 38.793326],\n          [-77.622182, 38.793359],\n          [-77.62157, 38.793529],\n          [-77.621412, 38.793572],\n          [-77.620477, 38.793825],\n          [-77.620443, 38.793835],\n          [-77.619193, 38.794171],\n          [-77.619018, 38.794213],\n          [-77.617763, 38.794556],\n          [-77.617092, 38.79473],\n          [-77.616747, 38.794832],\n          [-77.614017, 38.7956],\n          [-77.613309, 38.7958],\n          [-77.613097, 38.795859],\n          [-77.611965, 38.796178],\n          [-77.611011, 38.796432],\n          [-77.609519, 38.79683],\n          [-77.609066, 38.796955],\n          [-77.60887, 38.79701],\n          [-77.608124, 38.797223],\n          [-77.607861, 38.79729],\n          [-77.60659, 38.797608],\n          [-77.604759, 38.798106],\n          [-77.603341, 38.798433],\n          [-77.602615, 38.798623],\n          [-77.60217, 38.798681],\n          [-77.60178, 38.798726],\n          [-77.60159, 38.798739],\n          [-77.601338, 38.79876],\n          [-77.601043, 38.798748],\n          [-77.600761, 38.798726],\n          [-77.600475, 38.798685],\n          [-77.600088, 38.798626],\n          [-77.598701, 38.798329],\n          [-77.598447, 38.798288],\n          [-77.598168, 38.798263],\n          [-77.597945, 38.798266],\n          [-77.597733, 38.798267],\n          [-77.597515, 38.798295],\n          [-77.597295, 38.798329],\n          [-77.59709, 38.79838],\n          [-77.596838, 38.798472],\n          [-77.596056, 38.79873],\n          [-77.595792, 38.798802],\n          [-77.595557, 38.798839],\n          [-77.595321, 38.798872],\n          [-77.595123, 38.798893],\n          [-77.594903, 38.798906],\n          [-77.594606, 38.798902],\n          [-77.592349, 38.798571],\n          [-77.589853, 38.798246],\n          [-77.587564, 38.797961],\n          [-77.584659, 38.797708],\n          [-77.583518, 38.797592],\n          [-77.582596, 38.797507],\n          [-77.581727, 38.797465],\n          [-77.580645, 38.797422],\n          [-77.579853, 38.797408],\n          [-77.579381, 38.797391],\n          [-77.579328, 38.797391],\n          [-77.578346, 38.797391],\n          [-77.576989, 38.797404],\n          [-77.576007, 38.797446],\n          [-77.575373, 38.797504],\n          [-77.571144, 38.797797],\n          [-77.569287, 38.79792],\n          [-77.56555, 38.798187],\n          [-77.561659, 38.798447],\n          [-77.555891, 38.7988],\n          [-77.553755, 38.798951],\n          [-77.550887, 38.799152],\n          [-77.550295, 38.799193],\n          [-77.548407, 38.799331],\n          [-77.54595, 38.799494],\n          [-77.541063, 38.799812],\n          [-77.539341, 38.799946],\n          [-77.536546, 38.800151],\n          [-77.532281, 38.800448],\n          [-77.529135, 38.800667],\n          [-77.525861, 38.800895],\n          [-77.523173, 38.801079],\n          [-77.520134, 38.801324],\n          [-77.519426, 38.801374],\n          [-77.518588, 38.801436],\n          [-77.514662, 38.801698],\n          [-77.51275, 38.801833],\n          [-77.512257, 38.801883],\n          [-77.51176, 38.801949],\n          [-77.511242, 38.802033],\n          [-77.510728, 38.802133],\n          [-77.510237, 38.802245],\n          [-77.509757, 38.802371],\n          [-77.509283, 38.802511],\n          [-77.508762, 38.802686],\n          [-77.508249, 38.802874],\n          [-77.503238, 38.804849],\n          [-77.501867, 38.805383],\n          [-77.49854, 38.806696],\n          [-77.492854, 38.808929],\n          [-77.492586, 38.809039],\n          [-77.491408, 38.809499],\n          [-77.490728, 38.809768],\n          [-77.490387, 38.809903],\n          [-77.489846, 38.810125],\n          [-77.48976, 38.810159],\n          [-77.489588, 38.810228],\n          [-77.488128, 38.810814],\n          [-77.487975, 38.810876],\n          [-77.487938, 38.810891],\n          [-77.487614, 38.811027],\n          [-77.486889, 38.811312],\n          [-77.485515, 38.811841],\n          [-77.481021, 38.813606],\n          [-77.480031, 38.813987],\n          [-77.479528, 38.81418],\n          [-77.478278, 38.814671],\n          [-77.477784, 38.814859],\n          [-77.476696, 38.815283],\n          [-77.476308, 38.815444],\n          [-77.470849, 38.817587],\n          [-77.469997, 38.817934],\n          [-77.469107, 38.818314],\n          [-77.468263, 38.818692],\n          [-77.467788, 38.818912],\n          [-77.466824, 38.819384],\n          [-77.466481, 38.819559],\n          [-77.465978, 38.819814],\n          [-77.465888, 38.819862],\n          [-77.465082, 38.820299],\n          [-77.464689, 38.820516],\n          [-77.463916, 38.820976],\n          [-77.463568, 38.821184],\n          [-77.462817, 38.82165],\n          [-77.462169, 38.822067],\n          [-77.461524, 38.822499],\n          [-77.460742, 38.823046],\n          [-77.459971, 38.823615],\n          [-77.459453, 38.824009],\n          [-77.458829, 38.824505],\n          [-77.458041, 38.825157],\n          [-77.457989, 38.825199],\n          [-77.457719, 38.825436],\n          [-77.457456, 38.825667],\n          [-77.457174, 38.825914],\n          [-77.456485, 38.82655],\n          [-77.455925, 38.827089],\n          [-77.455609, 38.827408],\n          [-77.455354, 38.827664],\n          [-77.455286, 38.827736],\n          [-77.454763, 38.828288],\n          [-77.453687, 38.829492],\n          [-77.45117, 38.83231],\n          [-77.450091, 38.833546],\n          [-77.449603, 38.834072],\n          [-77.4484, 38.835411],\n          [-77.448317, 38.835496],\n          [-77.447073, 38.836883],\n          [-77.446568, 38.837456],\n          [-77.444983, 38.839239],\n          [-77.444962, 38.839261],\n          [-77.44448, 38.839771],\n          [-77.443925, 38.840374],\n          [-77.443121, 38.841151],\n          [-77.442523, 38.841683],\n          [-77.442048, 38.842083],\n          [-77.441563, 38.842472],\n          [-77.44121, 38.842729],\n          [-77.440835, 38.842989],\n          [-77.440353, 38.843301],\n          [-77.439357, 38.843895],\n          [-77.438808, 38.844189],\n          [-77.438412, 38.844388],\n          [-77.438154, 38.844513],\n          [-77.437585, 38.844773],\n          [-77.43695, 38.845042],\n          [-77.436125, 38.845358],\n          [-77.435386, 38.845611],\n          [-77.434841, 38.845778],\n          [-77.434461, 38.845886],\n          [-77.434065, 38.845989],\n          [-77.433588, 38.846102],\n          [-77.432595, 38.846311],\n          [-77.431976, 38.846424],\n          [-77.431894, 38.846439],\n          [-77.43166, 38.846482],\n          [-77.43013, 38.84677],\n          [-77.428638, 38.847052],\n          [-77.427672, 38.847201],\n          [-77.426895, 38.847336],\n          [-77.426613, 38.847387],\n          [-77.423954, 38.847868],\n          [-77.42318, 38.84802],\n          [-77.422578, 38.848129],\n          [-77.421734, 38.848284],\n          [-77.419777, 38.84865],\n          [-77.418032, 38.848977],\n          [-77.416532, 38.849246],\n          [-77.415198, 38.849482],\n          [-77.414151, 38.849672],\n          [-77.413692, 38.849756],\n          [-77.413004, 38.849886],\n          [-77.41025, 38.850388],\n          [-77.408348, 38.850725],\n          [-77.406003, 38.851167],\n          [-77.404553, 38.851419],\n          [-77.403103, 38.851676],\n          [-77.402433, 38.851803],\n          [-77.401513, 38.851954],\n          [-77.399882, 38.852249],\n          [-77.399048, 38.852319],\n          [-77.398718, 38.852375],\n          [-77.397996, 38.852492],\n          [-77.397318, 38.852624],\n          [-77.396752, 38.852714],\n          [-77.396348, 38.852749],\n          [-77.395658, 38.852767],\n          [-77.395009, 38.8528],\n          [-77.394695, 38.852837],\n          [-77.39433, 38.852891],\n          [-77.393802, 38.852984],\n          [-77.393126, 38.853114],\n          [-77.392725, 38.85318],\n          [-77.392095, 38.853297],\n          [-77.391904, 38.853339],\n          [-77.391134, 38.853478],\n          [-77.389836, 38.853723],\n          [-77.389215, 38.853845],\n          [-77.38892, 38.853895],\n          [-77.388716, 38.853941],\n          [-77.388024, 38.854062],\n          [-77.387165, 38.854196],\n          [-77.386771, 38.854162],\n          [-77.386529, 38.854111],\n          [-77.386343, 38.854055],\n          [-77.386187, 38.853987],\n          [-77.386127, 38.853954],\n          [-77.386079, 38.85392],\n          [-77.385986, 38.853839],\n          [-77.385938, 38.853785],\n          [-77.385904, 38.853738],\n          [-77.385849, 38.853638],\n          [-77.385829, 38.853585],\n          [-77.385812, 38.853521],\n          [-77.3858, 38.853402],\n          [-77.385805, 38.853336],\n          [-77.385817, 38.853271],\n          [-77.38586, 38.853155],\n          [-77.385888, 38.853105],\n          [-77.385929, 38.853047],\n          [-77.38601, 38.852959],\n          [-77.386068, 38.85291],\n          [-77.386119, 38.852873],\n          [-77.386233, 38.85281],\n          [-77.386292, 38.852784],\n          [-77.386367, 38.852757],\n          [-77.386444, 38.852736],\n          [-77.386551, 38.852715],\n          [-77.386695, 38.852705],\n          [-77.38684, 38.852711],\n          [-77.386899, 38.85272],\n          [-77.386985, 38.852739],\n          [-77.387131, 38.852784],\n          [-77.387234, 38.852827],\n          [-77.387327, 38.852872],\n          [-77.387501, 38.852977],\n          [-77.387596, 38.853046],\n          [-77.387689, 38.853125],\n          [-77.387869, 38.853301],\n          [-77.388005, 38.8535],\n          [-77.388211, 38.853861],\n          [-77.388248, 38.853958],\n          [-77.38834, 38.854202],\n          [-77.388434, 38.854509],\n          [-77.388512, 38.85483],\n          [-77.388556, 38.855045],\n          [-77.388563, 38.855077],\n          [-77.388615, 38.855398],\n          [-77.38864, 38.855726],\n          [-77.388657, 38.85606],\n          [-77.388632, 38.856494],\n          [-77.388606, 38.856728],\n          [-77.388546, 38.857062],\n          [-77.388494, 38.857283],\n          [-77.388383, 38.85759],\n          [-77.388245, 38.857898],\n          [-77.387962, 38.858392],\n          [-77.387722, 38.858713],\n          [-77.387587, 38.858842],\n          [-77.387448, 38.858992],\n          [-77.38738, 38.859049],\n          [-77.387049, 38.859315],\n          [-77.387001, 38.859355],\n          [-77.386572, 38.859616],\n          [-77.386057, 38.859876],\n          [-77.385696, 38.860037],\n          [-77.385104, 38.860297],\n          [-77.384246, 38.860678],\n          [-77.383311, 38.861091],\n          [-77.382484, 38.861549],\n          [-77.381927, 38.861964],\n          [-77.381649, 38.862271],\n          [-77.381472, 38.862656],\n          [-77.38114, 38.86254],\n          [-77.380676, 38.862336],\n          [-77.380373, 38.862167],\n          [-77.380144, 38.862016],\n          [-77.379932, 38.861857],\n          [-77.379724, 38.861669],\n          [-77.379541, 38.861495],\n          [-77.379299, 38.861256],\n          [-77.379174, 38.86114],\n          [-77.378963, 38.86097],\n          [-77.378779, 38.860822],\n          [-77.378622, 38.860715],\n          [-77.378375, 38.860584],\n          [-77.37825, 38.860526],\n          [-77.377901, 38.860354],\n          [-77.377674, 38.860258],\n          [-77.377503, 38.860194],\n          [-77.376982, 38.860031],\n          [-77.376724, 38.859968],\n          [-77.376465, 38.859908],\n          [-77.376139, 38.859843],\n          [-77.375957, 38.859809],\n          [-77.375449, 38.859704],\n          [-77.37477, 38.859591],\n          [-77.373992, 38.859482],\n          [-77.373385, 38.859411],\n          [-77.373319, 38.859405],\n          [-77.371684, 38.859251],\n          [-77.371331, 38.859226],\n          [-77.37112, 38.859211],\n          [-77.371099, 38.85942],\n          [-77.371098, 38.859619],\n          [-77.371033, 38.860102],\n          [-77.370993, 38.860407],\n          [-77.370953, 38.86073],\n          [-77.370894, 38.86095],\n          [-77.370816, 38.861165],\n          [-77.370757, 38.861296],\n          [-77.370665, 38.861443],\n          [-77.370575, 38.861587],\n          [-77.370384, 38.861875],\n          [-77.370116, 38.862301],\n          [-77.369869, 38.862675],\n          [-77.369695, 38.862937],\n          [-77.369553, 38.863149],\n          [-77.369282, 38.863562],\n          [-77.369075, 38.863878],\n          [-77.369003, 38.863978],\n          [-77.368943, 38.864053],\n          [-77.368872, 38.864143],\n          [-77.368754, 38.864281],\n          [-77.368648, 38.864383],\n          [-77.368548, 38.86448],\n          [-77.368413, 38.864611],\n          [-77.368244, 38.864751],\n          [-77.368139, 38.86483],\n          [-77.368096, 38.864859],\n          [-77.367962, 38.864949],\n          [-77.367753, 38.865087],\n          [-77.36752, 38.865221],\n          [-77.36716, 38.865425],\n          [-77.366916, 38.865565],\n          [-77.366749, 38.865664],\n          [-77.366693, 38.865696],\n          [-77.366603, 38.865757],\n          [-77.36621, 38.865941],\n          [-77.365964, 38.866096],\n          [-77.365677, 38.866275],\n          [-77.365412, 38.86648],\n          [-77.365205, 38.866666],\n          [-77.365092, 38.866802],\n          [-77.364926, 38.867027],\n          [-77.364819, 38.867215],\n          [-77.364795, 38.867271],\n          [-77.364687, 38.867526],\n          [-77.364631, 38.867731],\n          [-77.364602, 38.867885],\n          [-77.364585, 38.868103],\n          [-77.364599, 38.86833],\n          [-77.364602, 38.868416],\n          [-77.364653, 38.868646],\n          [-77.364749, 38.868903],\n          [-77.364915, 38.869232],\n          [-77.365031, 38.869489],\n          [-77.36519, 38.869811],\n          [-77.365353, 38.870145],\n          [-77.365541, 38.870577],\n          [-77.365608, 38.870714],\n          [-77.36564, 38.87078],\n          [-77.365767, 38.871048],\n          [-77.365858, 38.871232],\n          [-77.365914, 38.871335],\n          [-77.366032, 38.871546],\n          [-77.366196, 38.871805],\n          [-77.366355, 38.872046],\n          [-77.366507, 38.872259],\n          [-77.366678, 38.872501],\n          [-77.366856, 38.872754],\n          [-77.366963, 38.872925],\n          [-77.367022, 38.873039],\n          [-77.367081, 38.873163],\n          [-77.367145, 38.873344],\n          [-77.367182, 38.87346],\n          [-77.367204, 38.873534],\n          [-77.367233, 38.873695],\n          [-77.36726, 38.873889],\n          [-77.367273, 38.874003],\n          [-77.367165, 38.874012],\n          [-77.366994, 38.874012],\n          [-77.366779, 38.873999],\n          [-77.366666, 38.873986],\n          [-77.366501, 38.873968],\n          [-77.366313, 38.873934],\n          [-77.366155, 38.873897],\n          [-77.365932, 38.873832],\n          [-77.36562, 38.873728],\n          [-77.365375, 38.873647],\n          [-77.36552, 38.873752],\n          [-77.365645, 38.873824],\n          [-77.365759, 38.873875]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.34899902343749, 38.108627664321276]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test/in/route2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-113.928988, 50.814121],\n          [-113.928993, 50.813067],\n          [-113.928994, 50.811043],\n          [-113.928995, 50.807418],\n          [-113.929029, 50.804989],\n          [-113.951995, 50.804953],\n          [-113.956813, 50.804931],\n          [-113.957629, 50.804917],\n          [-113.958021, 50.804876],\n          [-113.958575, 50.804779],\n          [-113.959011, 50.804687],\n          [-113.959367, 50.804572],\n          [-113.959858, 50.804414],\n          [-113.960433, 50.804102],\n          [-113.960932, 50.803769],\n          [-113.961563, 50.803306],\n          [-113.961754, 50.803166],\n          [-113.962486, 50.802753],\n          [-113.9641, 50.801549],\n          [-113.966048, 50.800154],\n          [-113.967597, 50.799082],\n          [-113.968657, 50.798289],\n          [-113.969382, 50.79779],\n          [-113.969303, 50.797653],\n          [-113.968833, 50.797177],\n          [-113.968399, 50.796832],\n          [-113.96652, 50.796071],\n          [-113.965325, 50.795579],\n          [-113.964608, 50.795229],\n          [-113.963373, 50.794321],\n          [-113.962094, 50.793355],\n          [-113.956995, 50.789049],\n          [-113.951125, 50.784098],\n          [-113.948573, 50.78194],\n          [-113.941011, 50.775626],\n          [-113.933724, 50.769538],\n          [-113.914584, 50.753577],\n          [-113.906521, 50.746803],\n          [-113.896774, 50.738614],\n          [-113.886275, 50.729779],\n          [-113.88594, 50.729474],\n          [-113.885307, 50.728898],\n          [-113.884903, 50.728477],\n          [-113.884523, 50.728028],\n          [-113.884201, 50.727599],\n          [-113.883986, 50.727298],\n          [-113.883696, 50.726863],\n          [-113.883482, 50.72648],\n          [-113.883314, 50.726156],\n          [-113.883153, 50.725767],\n          [-113.883094, 50.725646],\n          [-113.883031, 50.725465],\n          [-113.882906, 50.725155],\n          [-113.882792, 50.724718],\n          [-113.882641, 50.7241],\n          [-113.882584, 50.723735],\n          [-113.88255, 50.723367],\n          [-113.882523, 50.72258],\n          [-113.882495, 50.717709],\n          [-113.882486, 50.713302],\n          [-113.882476, 50.712125],\n          [-113.882468, 50.702531],\n          [-113.882456, 50.699815],\n          [-113.882434, 50.698229],\n          [-113.882445, 50.693791],\n          [-113.882419, 50.692602],\n          [-113.882412, 50.692077],\n          [-113.882405, 50.691705],\n          [-113.882365, 50.691331],\n          [-113.882289, 50.690878],\n          [-113.882163, 50.690282],\n          [-113.882074, 50.689985],\n          [-113.881908, 50.689517],\n          [-113.881705, 50.689095],\n          [-113.881622, 50.688959],\n          [-113.881501, 50.688721],\n          [-113.881281, 50.688347],\n          [-113.88097, 50.687826],\n          [-113.880715, 50.687491],\n          [-113.880385, 50.687085],\n          [-113.878859, 50.685206],\n          [-113.877456, 50.68348],\n          [-113.875929, 50.68157],\n          [-113.873357, 50.67843],\n          [-113.871364, 50.675999],\n          [-113.869142, 50.673289],\n          [-113.868358, 50.672328],\n          [-113.868037, 50.671943],\n          [-113.867467, 50.671232],\n          [-113.866987, 50.670734],\n          [-113.866668, 50.670424],\n          [-113.866296, 50.670141],\n          [-113.865816, 50.669814],\n          [-113.865451, 50.6696],\n          [-113.8651, 50.669419],\n          [-113.864667, 50.669203],\n          [-113.864079, 50.668945],\n          [-113.863436, 50.668716],\n          [-113.862804, 50.66849],\n          [-113.861739, 50.668114],\n          [-113.853421, 50.665144],\n          [-113.842891, 50.661554],\n          [-113.842171, 50.661197],\n          [-113.841049, 50.660571],\n          [-113.840156, 50.659997],\n          [-113.839716, 50.65961],\n          [-113.839157, 50.659132],\n          [-113.838847, 50.658805],\n          [-113.838358, 50.658284],\n          [-113.837938, 50.657723],\n          [-113.837609, 50.657111],\n          [-113.837268, 50.656259],\n          [-113.83703, 50.655665],\n          [-113.836937, 50.654919],\n          [-113.836909, 50.654144],\n          [-113.836859, 50.650724],\n          [-113.836826, 50.647581],\n          [-113.836828, 50.646677],\n          [-113.836945, 50.631237],\n          [-113.836945, 50.630338],\n          [-113.83681, 50.620833],\n          [-113.836809, 50.615002],\n          [-113.836748, 50.614363],\n          [-113.836695, 50.613902],\n          [-113.836544, 50.613327],\n          [-113.836395, 50.612865],\n          [-113.836165, 50.612347],\n          [-113.835974, 50.611908],\n          [-113.835688, 50.611368],\n          [-113.834199, 50.609116],\n          [-113.831975, 50.605815],\n          [-113.830597, 50.603738],\n          [-113.830194, 50.603006],\n          [-113.829862, 50.60236],\n          [-113.829623, 50.601865],\n          [-113.829361, 50.601178],\n          [-113.829199, 50.600699],\n          [-113.829001, 50.600003],\n          [-113.828688, 50.598264],\n          [-113.828653, 50.597525],\n          [-113.828653, 50.596741],\n          [-113.828659, 50.589493],\n          [-113.828615, 50.584393],\n          [-113.82855, 50.57625],\n          [-113.82857, 50.572186],\n          [-113.82858, 50.57189],\n          [-113.828436, 50.567929],\n          [-113.828262, 50.565198],\n          [-113.82828, 50.550181],\n          [-113.82829, 50.541809],\n          [-113.828291, 50.541417],\n          [-113.828359, 50.484565],\n          [-113.828388, 50.473188],\n          [-113.82839, 50.426319],\n          [-113.828391, 50.410937],\n          [-113.828495, 50.409031],\n          [-113.828495, 50.408255],\n          [-113.828326, 50.404708],\n          [-113.827868, 50.402523],\n          [-113.827189, 50.400367],\n          [-113.82573, 50.397464],\n          [-113.824909, 50.396393],\n          [-113.823811, 50.394869],\n          [-113.82128, 50.391895],\n          [-113.801481, 50.376398],\n          [-113.797907, 50.371872],\n          [-113.796297, 50.369858],\n          [-113.795351, 50.368139],\n          [-113.790726, 50.359724],\n          [-113.789384, 50.358382],\n          [-113.78784, 50.357509],\n          [-113.782077, 50.355219],\n          [-113.781868, 50.355163],\n          [-113.780696, 50.354643],\n          [-113.779832, 50.354058],\n          [-113.779376, 50.353709],\n          [-113.779034, 50.353447],\n          [-113.777779, 50.352208],\n          [-113.776476, 50.350971],\n          [-113.775669, 50.350156],\n          [-113.774903, 50.349363],\n          [-113.774528, 50.349008],\n          [-113.774139, 50.348641],\n          [-113.773752, 50.348267],\n          [-113.773367, 50.347894],\n          [-113.772991, 50.347521],\n          [-113.77261, 50.347144],\n          [-113.77224, 50.346771],\n          [-113.771866, 50.346393],\n          [-113.771491, 50.346021],\n          [-113.771101, 50.345634],\n          [-113.770724, 50.345257],\n          [-113.770334, 50.344868],\n          [-113.769256, 50.343852],\n          [-113.767134, 50.341669],\n          [-113.764647, 50.339182],\n          [-113.764438, 50.338973],\n          [-113.761597, 50.336333],\n          [-113.758593, 50.33458],\n          [-113.755546, 50.333429],\n          [-113.751856, 50.33269],\n          [-113.745118, 50.331594],\n          [-113.742286, 50.330717],\n          [-113.739453, 50.329347],\n          [-113.731213, 50.32247],\n          [-113.723532, 50.315976],\n          [-113.722158, 50.313619],\n          [-113.718768, 50.300682],\n          [-113.714948, 50.295611],\n          [-113.70452, 50.282916],\n          [-113.688985, 50.273536],\n          [-113.671647, 50.26314],\n          [-113.665976, 50.259608],\n          [-113.661862, 50.256884],\n          [-113.66006, 50.254964],\n          [-113.659379, 50.253877],\n          [-113.658858, 50.252741],\n          [-113.658676, 50.251733],\n          [-113.656669, 50.241627],\n          [-113.656154, 50.237592],\n          [-113.655983, 50.234435],\n          [-113.656026, 50.226446],\n          [-113.656001, 50.222848],\n          [-113.655983, 50.212634],\n          [-113.655983, 50.198956],\n          [-113.656026, 50.187774],\n          [-113.655725, 50.180189],\n          [-113.654781, 50.177056],\n          [-113.650834, 50.16488],\n          [-113.648988, 50.159931],\n          [-113.648171, 50.158673],\n          [-113.647041, 50.157055],\n          [-113.642675, 50.151639],\n          [-113.639814, 50.147556],\n          [-113.634175, 50.135735],\n          [-113.632251, 50.131741],\n          [-113.620363, 50.106626],\n          [-113.619376, 50.104527],\n          [-113.61384, 50.092744],\n          [-113.608561, 50.081675],\n          [-113.606581, 50.077494],\n          [-113.603669, 50.071347],\n          [-113.596202, 50.055589],\n          [-113.589593, 50.041645],\n          [-113.585973, 50.034075],\n          [-113.583284, 50.028469],\n          [-113.578879, 50.019214],\n          [-113.577072, 50.015416],\n          [-113.576933, 50.015123],\n          [-113.575461, 50.01195],\n          [-113.56968, 49.999485],\n          [-113.565276, 49.990109],\n          [-113.562856, 49.984972],\n          [-113.558388, 49.975529],\n          [-113.556763, 49.972084],\n          [-113.551497, 49.960982],\n          [-113.550282, 49.958226],\n          [-113.543115, 49.943177],\n          [-113.537579, 49.93141],\n          [-113.531657, 49.91895],\n          [-113.528868, 49.913112],\n          [-113.52852, 49.912237],\n          [-113.528209, 49.911247],\n          [-113.528013, 49.910313],\n          [-113.527878, 49.909552],\n          [-113.527877, 49.908805],\n          [-113.528009, 49.904496],\n          [-113.527999, 49.902765],\n          [-113.527923, 49.890232],\n          [-113.527923, 49.878148],\n          [-113.527237, 49.875493],\n          [-113.526537, 49.873052],\n          [-113.52449, 49.865701],\n          [-113.524447, 49.856267],\n          [-113.52449, 49.841269],\n          [-113.524447, 49.826764],\n          [-113.52437, 49.815239],\n          [-113.524361, 49.813862],\n          [-113.524357, 49.801088],\n          [-113.524347, 49.798401],\n          [-113.524359, 49.795748],\n          [-113.524362, 49.795059],\n          [-113.524404, 49.785441],\n          [-113.524345, 49.778892],\n          [-113.524361, 49.771945],\n          [-113.523632, 49.77031],\n          [-113.522087, 49.769007],\n          [-113.520199, 49.768287],\n          [-113.514319, 49.76643],\n          [-113.510629, 49.764933],\n          [-113.50771, 49.763048],\n          [-113.494964, 49.752901],\n          [-113.479476, 49.742059],\n          [-113.460012, 49.728293],\n          [-113.455597, 49.725235],\n          [-113.454572, 49.72442],\n          [-113.45366, 49.723598],\n          [-113.452976, 49.722915],\n          [-113.45129, 49.720944],\n          [-113.450256, 49.719782],\n          [-113.447746, 49.716986],\n          [-113.447289, 49.716417],\n          [-113.443365, 49.71203],\n          [-113.443141, 49.711789],\n          [-113.442819, 49.711601],\n          [-113.442606, 49.711479],\n          [-113.44236, 49.711374],\n          [-113.442103, 49.711279],\n          [-113.441837, 49.711197],\n          [-113.441458, 49.711124],\n          [-113.441117, 49.711086],\n          [-113.440779, 49.711071],\n          [-113.440369, 49.71109],\n          [-113.439978, 49.71114],\n          [-113.439697, 49.711196],\n          [-113.439397, 49.711273],\n          [-113.439102, 49.71139],\n          [-113.438862, 49.711498],\n          [-113.438591, 49.711635],\n          [-113.438391, 49.711766],\n          [-113.438075, 49.712061],\n          [-113.437745, 49.712489],\n          [-113.43745, 49.712915],\n          [-113.43721, 49.713212],\n          [-113.436932, 49.713495],\n          [-113.436629, 49.713751],\n          [-113.436287, 49.713988],\n          [-113.435908, 49.714204],\n          [-113.435538, 49.714393],\n          [-113.431814, 49.715951],\n          [-113.423934, 49.718913],\n          [-113.423148, 49.719208],\n          [-113.419515, 49.720574],\n          [-113.418553, 49.720884],\n          [-113.417353, 49.721191],\n          [-113.416622, 49.721378],\n          [-113.415189, 49.721933],\n          [-113.414887, 49.722092],\n          [-113.414553, 49.722328],\n          [-113.414204, 49.722586],\n          [-113.413109, 49.723458],\n          [-113.412313, 49.724209],\n          [-113.412068, 49.724385],\n          [-113.411871, 49.724508],\n          [-113.41169, 49.724585],\n          [-113.411456, 49.724665],\n          [-113.411213, 49.724721],\n          [-113.410939, 49.724758],\n          [-113.410649, 49.724769],\n          [-113.408706, 49.724761],\n          [-113.405913, 49.724764],\n          [-113.403119, 49.724754],\n          [-113.400316, 49.724758],\n          [-113.397541, 49.724759],\n          [-113.396042, 49.724769],\n          [-113.395455, 49.724758],\n          [-113.395172, 49.724734],\n          [-113.394938, 49.724709],\n          [-113.394729, 49.724678],\n          [-113.394467, 49.724619],\n          [-113.394209, 49.724544],\n          [-113.393974, 49.724469],\n          [-113.393696, 49.724366],\n          [-113.393468, 49.724249],\n          [-113.393241, 49.72412],\n          [-113.393012, 49.723965],\n          [-113.39289, 49.723864],\n          [-113.391771, 49.722807],\n          [-113.391196, 49.722209],\n          [-113.390266, 49.721242],\n          [-113.389586, 49.720567],\n          [-113.388246, 49.71917],\n          [-113.387068, 49.717968],\n          [-113.386688, 49.717602],\n          [-113.386617, 49.717518],\n          [-113.386398, 49.717254],\n          [-113.386209, 49.717057],\n          [-113.385914, 49.716751],\n          [-113.385697, 49.71658],\n          [-113.385459, 49.716404],\n          [-113.385223, 49.716267],\n          [-113.384941, 49.716121],\n          [-113.384654, 49.716013],\n          [-113.384337, 49.715925],\n          [-113.383953, 49.715848],\n          [-113.383617, 49.715803],\n          [-113.383303, 49.715777],\n          [-113.382948, 49.715769],\n          [-113.382593, 49.71579],\n          [-113.382269, 49.715822],\n          [-113.381923, 49.715886],\n          [-113.381566, 49.715981],\n          [-113.381244, 49.716092],\n          [-113.380957, 49.716219],\n          [-113.380551, 49.716436],\n          [-113.380035, 49.71673],\n          [-113.379484, 49.717081],\n          [-113.378419, 49.71777],\n          [-113.377851, 49.718172],\n          [-113.376955, 49.718849],\n          [-113.376472, 49.719244],\n          [-113.375953, 49.719695],\n          [-113.375418, 49.720164],\n          [-113.374752, 49.720812],\n          [-113.373389, 49.722261],\n          [-113.372553, 49.723172],\n          [-113.371753, 49.724069],\n          [-113.371091, 49.724816],\n          [-113.370703, 49.725251],\n          [-113.370292, 49.725659],\n          [-113.36989, 49.726068],\n          [-113.369354, 49.726543],\n          [-113.368728, 49.727064],\n          [-113.368135, 49.727526],\n          [-113.367567, 49.727939],\n          [-113.366419, 49.728699],\n          [-113.366091, 49.728877],\n          [-113.365827, 49.729022],\n          [-113.365501, 49.729201],\n          [-113.362951, 49.730439],\n          [-113.358468, 49.732139],\n          [-113.3397, 49.739588],\n          [-113.335475, 49.741364],\n          [-113.327488, 49.744425],\n          [-113.318052, 49.748192],\n          [-113.313869, 49.749882],\n          [-113.31224, 49.750619],\n          [-113.310651, 49.75165],\n          [-113.307682, 49.753879],\n          [-113.302921, 49.757409],\n          [-113.297078, 49.761832],\n          [-113.293465, 49.764507],\n          [-113.274088, 49.778989],\n          [-113.273227, 49.779697],\n          [-113.272213, 49.780484],\n          [-113.270309, 49.781807],\n          [-113.269287, 49.782542],\n          [-113.268506, 49.783052],\n          [-113.267549, 49.783577],\n          [-113.266355, 49.784155],\n          [-113.264867, 49.784696],\n          [-113.26421, 49.78488],\n          [-113.263279, 49.785126],\n          [-113.262406, 49.785321],\n          [-113.261535, 49.785468],\n          [-113.260247, 49.785632],\n          [-113.2584, 49.785752],\n          [-113.253189, 49.785761],\n          [-113.2503, 49.785759],\n          [-113.246741, 49.785753],\n          [-113.243803, 49.785748],\n          [-113.24168, 49.785746],\n          [-113.239441, 49.785743],\n          [-113.235416, 49.785738],\n          [-113.232546, 49.785734],\n          [-113.230542, 49.78573],\n          [-113.207916, 49.785665],\n          [-113.188962, 49.785585],\n          [-113.187421, 49.785394],\n          [-113.185955, 49.785084],\n          [-113.182069, 49.784248],\n          [-113.178433, 49.783545],\n          [-113.175537, 49.783555],\n          [-113.172403, 49.784002],\n          [-113.169876, 49.784514],\n          [-113.165425, 49.785057],\n          [-113.162661, 49.785308],\n          [-113.158491, 49.785468],\n          [-113.154009, 49.785249],\n          [-113.150706, 49.7849],\n          [-113.138727, 49.78387],\n          [-113.137918, 49.7838],\n          [-113.132484, 49.783537],\n          [-113.127139, 49.783666],\n          [-113.121522, 49.784134],\n          [-113.116401, 49.784873],\n          [-113.108878, 49.786479],\n          [-113.10643, 49.787036],\n          [-113.100519, 49.78837],\n          [-113.099817, 49.78851],\n          [-113.099069, 49.788664],\n          [-113.098414, 49.788796],\n          [-113.097678, 49.788933],\n          [-113.096947, 49.789058],\n          [-113.096124, 49.78919],\n          [-113.095087, 49.789365],\n          [-113.093946, 49.789519],\n          [-113.092851, 49.789655],\n          [-113.091995, 49.789773],\n          [-113.091108, 49.78988],\n          [-113.090105, 49.789981],\n          [-113.089148, 49.790064],\n          [-113.088464, 49.790125],\n          [-113.087728, 49.790181],\n          [-113.08695, 49.790229],\n          [-113.08621, 49.790281],\n          [-113.085391, 49.790327],\n          [-113.084622, 49.790364],\n          [-113.083774, 49.790396],\n          [-113.082731, 49.790426],\n          [-113.081849, 49.790441],\n          [-113.080915, 49.790449],\n          [-113.080041, 49.790455],\n          [-113.079132, 49.790458],\n          [-113.078156, 49.790437],\n          [-113.077306, 49.790416],\n          [-113.076308, 49.790386],\n          [-113.075035, 49.79033],\n          [-113.073984, 49.790268],\n          [-113.073014, 49.790204],\n          [-113.072411, 49.790162],\n          [-113.071942, 49.790123],\n          [-113.069874, 49.789921],\n          [-113.06869, 49.789793],\n          [-113.067583, 49.789667],\n          [-113.066892, 49.789578],\n          [-113.066126, 49.789472],\n          [-113.064972, 49.789301],\n          [-113.04876, 49.786854],\n          [-113.048, 49.78674],\n          [-113.047462, 49.78667],\n          [-113.046933, 49.786601],\n          [-113.046365, 49.786543],\n          [-113.041994, 49.786136],\n          [-113.038418, 49.786047],\n          [-113.028911, 49.786062],\n          [-113.013026, 49.786042],\n          [-113.003977, 49.786038],\n          [-113.002681, 49.785962],\n          [-113.001644, 49.785864],\n          [-113.00048, 49.785713],\n          [-112.999756, 49.785611],\n          [-112.9987, 49.785408],\n          [-112.997454, 49.785132],\n          [-112.995534, 49.784581],\n          [-112.99125, 49.783007],\n          [-112.98295, 49.779625],\n          [-112.980557, 49.778522],\n          [-112.979018, 49.777554],\n          [-112.976341, 49.775651],\n          [-112.973797, 49.773044],\n          [-112.965769, 49.764644],\n          [-112.960895, 49.75933],\n          [-112.960092, 49.758465],\n          [-112.959726, 49.75808],\n          [-112.959447, 49.757828],\n          [-112.959069, 49.757507],\n          [-112.958709, 49.757166],\n          [-112.958281, 49.756793],\n          [-112.95762, 49.756294],\n          [-112.956931, 49.755799],\n          [-112.956159, 49.755282],\n          [-112.955682, 49.754998],\n          [-112.955151, 49.754703],\n          [-112.952858, 49.753509],\n          [-112.949354, 49.752075],\n          [-112.94544, 49.749962],\n          [-112.938188, 49.743931],\n          [-112.931304, 49.738228],\n          [-112.926731, 49.73422],\n          [-112.925384, 49.732989],\n          [-112.924479, 49.731925],\n          [-112.923468, 49.730575],\n          [-112.922298, 49.729055],\n          [-112.921036, 49.7277],\n          [-112.918917, 49.725859],\n          [-112.918155, 49.725203],\n          [-112.916619, 49.723846],\n          [-112.915487, 49.723018],\n          [-112.915163, 49.72283],\n          [-112.914796, 49.722631],\n          [-112.914432, 49.722464],\n          [-112.914031, 49.722286],\n          [-112.913669, 49.722145],\n          [-112.913246, 49.722004],\n          [-112.912907, 49.721891],\n          [-112.912605, 49.721797],\n          [-112.912248, 49.721697],\n          [-112.911203, 49.721427],\n          [-112.910101, 49.721135],\n          [-112.906937, 49.720299],\n          [-112.903215, 49.719342],\n          [-112.900165, 49.718558],\n          [-112.897476, 49.717852],\n          [-112.895936, 49.717459],\n          [-112.895282, 49.717281],\n          [-112.894243, 49.71701],\n          [-112.893141, 49.716728],\n          [-112.892426, 49.716529],\n          [-112.89165, 49.716338],\n          [-112.891198, 49.71622],\n          [-112.890633, 49.716083],\n          [-112.889897, 49.715934],\n          [-112.889174, 49.715796],\n          [-112.888532, 49.715689],\n          [-112.887541, 49.715558],\n          [-112.88613, 49.71536],\n          [-112.885501, 49.715271],\n          [-112.884833, 49.715175],\n          [-112.884308, 49.715088],\n          [-112.883816, 49.71495],\n          [-112.883277, 49.714832],\n          [-112.882696, 49.714691],\n          [-112.88207, 49.714542],\n          [-112.881531, 49.714385],\n          [-112.881025, 49.714222],\n          [-112.880522, 49.714039],\n          [-112.879986, 49.713834],\n          [-112.879529, 49.71365],\n          [-112.87903, 49.713431],\n          [-112.878502, 49.713173],\n          [-112.877609, 49.712649],\n          [-112.875259, 49.711284],\n          [-112.873228, 49.710141],\n          [-112.872763, 49.709872],\n          [-112.87224, 49.709593],\n          [-112.871848, 49.709384],\n          [-112.871432, 49.709188],\n          [-112.871061, 49.709022],\n          [-112.870716, 49.708873],\n          [-112.870311, 49.708723],\n          [-112.869954, 49.708592],\n          [-112.869443, 49.708436],\n          [-112.868983, 49.708311],\n          [-112.868462, 49.708183],\n          [-112.86782, 49.708055],\n          [-112.867368, 49.707982],\n          [-112.866939, 49.707916],\n          [-112.86545, 49.707716],\n          [-112.861762, 49.707191],\n          [-112.86017, 49.706981],\n          [-112.85809, 49.706677],\n          [-112.85777, 49.706622],\n          [-112.857467, 49.706553],\n          [-112.857076, 49.706452],\n          [-112.856698, 49.706338],\n          [-112.854212, 49.705528],\n          [-112.85381, 49.705386],\n          [-112.853466, 49.70523],\n          [-112.853137, 49.705049],\n          [-112.852839, 49.704853],\n          [-112.851852, 49.704221],\n          [-112.851516, 49.704031],\n          [-112.851207, 49.703872],\n          [-112.850867, 49.70373],\n          [-112.850433, 49.703565],\n          [-112.84992, 49.703388],\n          [-112.847903, 49.702792],\n          [-112.845724, 49.702167],\n          [-112.844077, 49.701628],\n          [-112.8432, 49.701369],\n          [-112.842649, 49.701218],\n          [-112.842201, 49.701114],\n          [-112.841728, 49.701025],\n          [-112.840794, 49.700856],\n          [-112.838125, 49.700426],\n          [-112.834609, 49.699873],\n          [-112.832064, 49.699465],\n          [-112.828981, 49.698964],\n          [-112.828552, 49.698904],\n          [-112.827826, 49.698813],\n          [-112.827096, 49.698728],\n          [-112.826436, 49.698665],\n          [-112.825387, 49.6986],\n          [-112.824515, 49.698555],\n          [-112.823879, 49.698527],\n          [-112.822719, 49.698465],\n          [-112.820041, 49.698338],\n          [-112.818601, 49.69826],\n          [-112.817659, 49.698214],\n          [-112.817451, 49.698208],\n          [-112.816791, 49.698174],\n          [-112.81589, 49.698112],\n          [-112.814861, 49.698029],\n          [-112.814224, 49.697963],\n          [-112.813253, 49.697849],\n          [-112.813147, 49.697836],\n          [-112.811952, 49.697672],\n          [-112.811842, 49.697656],\n          [-112.811502, 49.697615],\n          [-112.811227, 49.697581],\n          [-112.810773, 49.697561],\n          [-112.810352, 49.69755],\n          [-112.810002, 49.697537],\n          [-112.809403, 49.697532],\n          [-112.806575, 49.697613],\n          [-112.805437, 49.69765],\n          [-112.804522, 49.697685],\n          [-112.80393, 49.697707],\n          [-112.80238, 49.69777],\n          [-112.802025, 49.697788],\n          [-112.801625, 49.697812],\n          [-112.800653, 49.697888],\n          [-112.799723, 49.697967],\n          [-112.79867, 49.698052],\n          [-112.798046, 49.698084],\n          [-112.797631, 49.698102],\n          [-112.797077, 49.698117],\n          [-112.796376, 49.698135],\n          [-112.79554, 49.698135],\n          [-112.794414, 49.698135],\n          [-112.793544, 49.698131],\n          [-112.788404, 49.698111],\n          [-112.787759, 49.698108],\n          [-112.787623, 49.698109],\n          [-112.786794, 49.698114],\n          [-112.785574, 49.698121],\n          [-112.784545, 49.69817],\n          [-112.784282, 49.698206],\n          [-112.783264, 49.698348],\n          [-112.782977, 49.69837],\n          [-112.782674, 49.69837],\n          [-112.782377, 49.69836],\n          [-112.781976, 49.698324],\n          [-112.781573, 49.698283],\n          [-112.780374, 49.698174],\n          [-112.779856, 49.698084],\n          [-112.77969, 49.698039],\n          [-112.779534, 49.697963],\n          [-112.779416, 49.697879],\n          [-112.779336, 49.697779],\n          [-112.779293, 49.697678],\n          [-112.779266, 49.697588],\n          [-112.779277, 49.697432],\n          [-112.779309, 49.697054],\n          [-112.779557, 49.695985],\n          [-112.779657, 49.695544],\n          [-112.779736, 49.695225],\n          [-112.779761, 49.695101],\n          [-112.779809, 49.694922],\n          [-112.779952, 49.69441],\n          [-112.780019, 49.694125],\n          [-112.780058, 49.69387],\n          [-112.780085, 49.693604],\n          [-112.78011, 49.693292],\n          [-112.780165, 49.692652],\n          [-112.780169, 49.692372],\n          [-112.780165, 49.692154],\n          [-112.780164, 49.692098],\n          [-112.780144, 49.691862],\n          [-112.780143, 49.691843],\n          [-112.780133, 49.69176],\n          [-112.780037, 49.691006],\n          [-112.779822, 49.689657],\n          [-112.77979, 49.689308],\n          [-112.779748, 49.688889],\n          [-112.779749, 49.688478],\n          [-112.779739, 49.688031],\n          [-112.779748, 49.687622],\n          [-112.779769, 49.687159],\n          [-112.779816, 49.686494],\n          [-112.779896, 49.685531],\n          [-112.779868, 49.68512],\n          [-112.779875, 49.684881],\n          [-112.779863, 49.684535],\n          [-112.77986, 49.684358],\n          [-112.779847, 49.684121],\n          [-112.779816, 49.683702],\n          [-112.779801, 49.683613],\n          [-112.779746, 49.683344],\n          [-112.779688, 49.682957],\n          [-112.779596, 49.68252],\n          [-112.779542, 49.68228],\n          [-112.7794, 49.681732],\n          [-112.779248, 49.681225],\n          [-112.779016, 49.680478],\n          [-112.778857, 49.679737],\n          [-112.778724, 49.678803],\n          [-112.778685, 49.678481],\n          [-112.77867, 49.678161],\n          [-112.778679, 49.677477],\n          [-112.778716, 49.676815],\n          [-112.77879, 49.676373],\n          [-112.778793, 49.676281],\n          [-112.778809, 49.67613],\n          [-112.778826, 49.675962],\n          [-112.779009, 49.67502],\n          [-112.779283, 49.674077],\n          [-112.779324, 49.67372],\n          [-112.779398, 49.673084],\n          [-112.779441, 49.672708],\n          [-112.779445, 49.672624],\n          [-112.779457, 49.6724],\n          [-112.779474, 49.670433],\n          [-112.779525, 49.669583],\n          [-112.779531, 49.668796],\n          [-112.779522, 49.66867],\n          [-112.779234, 49.66867],\n          [-112.778749, 49.66867],\n          [-112.773523, 49.668658],\n          [-112.769369, 49.668649],\n          [-112.763756, 49.668637],\n          [-112.7565, 49.668622],\n          [-112.75294, 49.668604],\n          [-112.752507, 49.668609],\n          [-112.751647, 49.668588],\n          [-112.750485, 49.668477],\n          [-112.748828, 49.668137],\n          [-112.747424, 49.667643],\n          [-112.746405, 49.667117],\n          [-112.745658, 49.666544],\n          [-112.743059, 49.663524],\n          [-112.742076, 49.662492],\n          [-112.741004, 49.661674],\n          [-112.73773, 49.659519],\n          [-112.735465, 49.657989],\n          [-112.733655, 49.656859],\n          [-112.718533, 49.646941],\n          [-112.708401, 49.640314],\n          [-112.699223, 49.634317],\n          [-112.697367, 49.633097],\n          [-112.696977, 49.632838],\n          [-112.688059, 49.626979],\n          [-112.68302, 49.623675],\n          [-112.676625, 49.619483],\n          [-112.667074, 49.613228],\n          [-112.658988, 49.607908],\n          [-112.655248, 49.605484],\n          [-112.650972, 49.603234],\n          [-112.646487, 49.600778],\n          [-112.644902, 49.599632],\n          [-112.643248, 49.598383],\n          [-112.641103, 49.596798],\n          [-112.639355, 49.595616],\n          [-112.637, 49.594133],\n          [-112.627891, 49.588425],\n          [-112.602707, 49.572537],\n          [-112.600552, 49.571077],\n          [-112.598617, 49.5692],\n          [-112.59449, 49.564228],\n          [-112.593913, 49.5636],\n          [-112.593075, 49.562994],\n          [-112.592311, 49.562392],\n          [-112.591327, 49.561818],\n          [-112.589132, 49.56091],\n          [-112.585717, 49.559813],\n          [-112.580643, 49.558189],\n          [-112.579135, 49.557557],\n          [-112.577853, 49.55687],\n          [-112.576584, 49.555934],\n          [-112.573576, 49.55323],\n          [-112.570447, 49.550424],\n          [-112.569232, 49.549564],\n          [-112.567477, 49.548436],\n          [-112.556735, 49.541871],\n          [-112.550446, 49.538028],\n          [-112.546175, 49.535345],\n          [-112.543195, 49.53355],\n          [-112.541943, 49.532867],\n          [-112.522018, 49.522571],\n          [-112.51966, 49.521328],\n          [-112.515058, 49.518953],\n          [-112.512595, 49.517628],\n          [-112.51096, 49.516524],\n          [-112.50948, 49.515214],\n          [-112.508358, 49.513958],\n          [-112.507396, 49.512646],\n          [-112.504667, 49.506398],\n          [-112.503772, 49.504449],\n          [-112.502829, 49.502755],\n          [-112.502134, 49.501789],\n          [-112.500323, 49.499793],\n          [-112.498242, 49.497945],\n          [-112.491937, 49.492826],\n          [-112.472122, 49.477074],\n          [-112.46972, 49.475443],\n          [-112.458697, 49.468584],\n          [-112.452076, 49.464789],\n          [-112.441426, 49.458313],\n          [-112.440081, 49.457555],\n          [-112.439154, 49.45711],\n          [-112.437692, 49.456507],\n          [-112.428185, 49.452715],\n          [-112.42567, 49.451509],\n          [-112.421872, 49.448943],\n          [-112.416852, 49.445256],\n          [-112.415374, 49.444112],\n          [-112.413757, 49.443067],\n          [-112.41199, 49.442277],\n          [-112.408866, 49.441094],\n          [-112.403355, 49.439005],\n          [-112.400426, 49.437907],\n          [-112.395624, 49.436024],\n          [-112.393366, 49.43506],\n          [-112.391141, 49.43401],\n          [-112.389667, 49.433278],\n          [-112.387242, 49.431857],\n          [-112.380495, 49.427283],\n          [-112.377371, 49.425166],\n          [-112.370769, 49.420228],\n          [-112.369213, 49.419103],\n          [-112.368029, 49.418322],\n          [-112.366868, 49.417688],\n          [-112.365853, 49.417109],\n          [-112.364196, 49.416279],\n          [-112.358645, 49.413606],\n          [-112.345069, 49.40697],\n          [-112.313601, 49.391666],\n          [-112.293379, 49.381796],\n          [-112.280866, 49.375648],\n          [-112.275641, 49.37312],\n          [-112.27415, 49.372357],\n          [-112.272971, 49.371647],\n          [-112.272087, 49.371077],\n          [-112.271197, 49.370405],\n          [-112.270258, 49.369532],\n          [-112.269242, 49.36847],\n          [-112.263635, 49.361606],\n          [-112.261762, 49.359287],\n          [-112.252776, 49.348158],\n          [-112.236226, 49.327356],\n          [-112.231602, 49.321856],\n          [-112.231504, 49.32174],\n          [-112.22954, 49.319363],\n          [-112.227247, 49.316403],\n          [-112.224225, 49.312727],\n          [-112.22224, 49.310555],\n          [-112.216986, 49.304836],\n          [-112.215307, 49.3031],\n          [-112.213887, 49.301877],\n          [-112.213028, 49.301145],\n          [-112.204369, 49.294474],\n          [-112.201434, 49.291851],\n          [-112.200807, 49.291228],\n          [-112.200423, 49.290767],\n          [-112.200161, 49.290419],\n          [-112.199859, 49.289985],\n          [-112.199566, 49.2895],\n          [-112.199306, 49.289012],\n          [-112.199053, 49.288493],\n          [-112.198839, 49.287999],\n          [-112.198721, 49.287648],\n          [-112.198561, 49.28716],\n          [-112.198436, 49.286692],\n          [-112.198364, 49.286224],\n          [-112.198303, 49.285775],\n          [-112.198271, 49.285347],\n          [-112.198256, 49.282987],\n          [-112.198269, 49.279832],\n          [-112.197949, 49.277457],\n          [-112.196565, 49.273803],\n          [-112.189342, 49.264663],\n          [-112.187679, 49.262625],\n          [-112.187029, 49.261975],\n          [-112.185766, 49.260758],\n          [-112.185003, 49.259994],\n          [-112.184046, 49.259256],\n          [-112.182999, 49.258515],\n          [-112.181937, 49.257797],\n          [-112.180185, 49.2566],\n          [-112.179314, 49.25606],\n          [-112.178353, 49.255415],\n          [-112.177525, 49.254853],\n          [-112.176769, 49.254313],\n          [-112.176125, 49.253788],\n          [-112.174746, 49.252496],\n          [-112.173897, 49.251682],\n          [-112.173107, 49.250905],\n          [-112.153316, 49.231556],\n          [-112.145266, 49.223554],\n          [-112.137196, 49.215571],\n          [-112.13617, 49.214714],\n          [-112.134956, 49.213742],\n          [-112.134168, 49.213187],\n          [-112.132859, 49.212334],\n          [-112.13166, 49.211607],\n          [-112.12957, 49.210494],\n          [-112.126976, 49.209298],\n          [-112.123065, 49.207555],\n          [-112.121541, 49.206848],\n          [-112.120052, 49.206151],\n          [-112.118948, 49.205619],\n          [-112.117869, 49.205062],\n          [-112.11706, 49.204623],\n          [-112.115236, 49.203546],\n          [-112.112919, 49.201989],\n          [-112.111625, 49.201012],\n          [-112.109029, 49.198836],\n          [-112.106118, 49.195686],\n          [-112.105716, 49.195156],\n          [-112.10511, 49.194341],\n          [-112.102212, 49.189769],\n          [-112.099016, 49.184803],\n          [-112.097293, 49.182034],\n          [-112.09607, 49.179971],\n          [-112.093881, 49.176527],\n          [-112.093098, 49.175222],\n          [-112.092754, 49.174577],\n          [-112.092518, 49.174107],\n          [-112.092368, 49.173658],\n          [-112.092271, 49.173279],\n          [-112.092175, 49.172816],\n          [-112.092083, 49.172436],\n          [-112.092105, 49.171924],\n          [-112.092116, 49.171461],\n          [-112.092153, 49.170923],\n          [-112.092303, 49.169933],\n          [-112.092797, 49.166924],\n          [-112.093183, 49.164483],\n          [-112.093425, 49.163015],\n          [-112.094079, 49.159023],\n          [-112.094508, 49.156383],\n          [-112.094555, 49.155953],\n          [-112.094556, 49.155221],\n          [-112.094514, 49.154793],\n          [-112.094503, 49.154492],\n          [-112.094385, 49.153874],\n          [-112.094213, 49.153187],\n          [-112.094063, 49.152773],\n          [-112.093902, 49.152351],\n          [-112.093602, 49.151853],\n          [-112.093237, 49.151257],\n          [-112.092797, 49.15078],\n          [-112.092443, 49.150366],\n          [-112.09211, 49.150043],\n          [-112.09144, 49.149473],\n          [-112.090329, 49.148576],\n          [-112.087872, 49.146674],\n          [-112.085019, 49.144442],\n          [-112.08445, 49.144014],\n          [-112.083795, 49.143488],\n          [-112.083195, 49.142934],\n          [-112.082218, 49.142021],\n          [-112.081255, 49.140863],\n          [-112.080652, 49.140161],\n          [-112.079815, 49.139052],\n          [-112.079375, 49.138315],\n          [-112.078935, 49.137592],\n          [-112.078367, 49.136469],\n          [-112.077562, 49.134475],\n          [-112.07679, 49.132524],\n          [-112.076328, 49.131429],\n          [-112.07591, 49.130565],\n          [-112.075325, 49.129377],\n          [-112.074891, 49.128684],\n          [-112.074472, 49.128059],\n          [-112.073582, 49.12674],\n          [-112.072631, 49.125499],\n          [-112.071973, 49.124711],\n          [-112.071054, 49.123645],\n          [-112.069784, 49.122387],\n          [-112.068512, 49.121237],\n          [-112.066629, 49.119662],\n          [-112.062677, 49.116351],\n          [-112.055397, 49.110231],\n          [-112.054528, 49.109557],\n          [-112.053423, 49.108763],\n          [-112.052461, 49.108147],\n          [-112.045612, 49.103924],\n          [-112.04278, 49.102161],\n          [-112.042125, 49.101683],\n          [-112.041514, 49.101163],\n          [-112.040923, 49.100503],\n          [-112.040258, 49.099716],\n          [-112.039046, 49.09777],\n          [-112.036761, 49.094883],\n          [-112.034383, 49.091688],\n          [-112.032973, 49.089733],\n          [-112.032072, 49.088525],\n          [-112.031257, 49.087397],\n          [-112.027952, 49.082826],\n          [-112.025918, 49.080115],\n          [-112.023929, 49.077471],\n          [-112.021412, 49.07398],\n          [-112.01924, 49.070443],\n          [-112.016505, 49.066092],\n          [-112.014616, 49.062914],\n          [-112.010898, 49.056849],\n          [-112.010336, 49.056053],\n          [-112.009981, 49.05549],\n          [-112.009595, 49.055054],\n          [-112.008383, 49.053913],\n          [-112.004081, 49.049886],\n          [-112.003484, 49.049323],\n          [-112.002241, 49.048061],\n          [-112.000186, 49.046131],\n          [-111.998352, 49.044419],\n          [-111.997649, 49.043715],\n          [-111.997014, 49.042914],\n          [-111.996531, 49.042236],\n          [-111.996215, 49.041782],\n          [-111.995927, 49.041307],\n          [-111.995594, 49.040698],\n          [-111.995321, 49.040118],\n          [-111.994693, 49.038673],\n          [-111.994001, 49.037108],\n          [-111.992996, 49.034801],\n          [-111.992369, 49.033409],\n          [-111.99149, 49.031403],\n          [-111.99082, 49.029866],\n          [-111.990004, 49.02802],\n          [-111.98936, 49.026568],\n          [-111.988769, 49.025185],\n          [-111.988218, 49.023936],\n          [-111.987589, 49.022536],\n          [-111.987371, 49.021885],\n          [-111.987235, 49.021333],\n          [-111.987097, 49.020858],\n          [-111.986995, 49.020386],\n          [-111.98692, 49.019658],\n          [-111.986872, 49.018979],\n          [-111.986866, 49.017199],\n          [-111.986872, 49.015542],\n          [-111.98686, 49.013841],\n          [-111.986847, 49.01231],\n          [-111.98685, 49.011137],\n          [-111.986861, 49.010352],\n          [-111.986797, 49.009758],\n          [-111.986645, 49.009206],\n          [-111.986377, 49.008696],\n          [-111.986147, 49.008354],\n          [-111.985836, 49.007998],\n          [-111.985337, 49.007558],\n          [-111.984989, 49.007266],\n          [-111.984301, 49.006795],\n          [-111.983474, 49.00638],\n          [-111.982516, 49.005993],\n          [-111.981765, 49.005715],\n          [-111.980942, 49.005514],\n          [-111.980129, 49.005334],\n          [-111.979328, 49.005194],\n          [-111.978062, 49.005092],\n          [-111.976985, 49.005074],\n          [-111.974918, 49.005173],\n          [-111.973139, 49.005292],\n          [-111.97154, 49.00538],\n          [-111.969019, 49.005514],\n          [-111.967562, 49.005617],\n          [-111.966045, 49.005705],\n          [-111.96469, 49.005725],\n          [-111.963991, 49.005648],\n          [-111.96346, 49.005567],\n          [-111.96295, 49.005448],\n          [-111.962485, 49.005296],\n          [-111.962163, 49.005187],\n          [-111.961761, 49.005004],\n          [-111.961293, 49.004765],\n          [-111.960951, 49.004554],\n          [-111.960789, 49.004426],\n          [-111.960561, 49.004236],\n          [-111.960215, 49.003866],\n          [-111.959973, 49.003571],\n          [-111.959774, 49.003265],\n          [-111.959681, 49.003043],\n          [-111.959581, 49.002794],\n          [-111.95951, 49.002452],\n          [-111.959584, 49.002087],\n          [-111.959768, 49.001731],\n          [-111.96008, 49.00139],\n          [-111.960323, 49.001097],\n          [-111.960993, 49.000276],\n          [-111.961147, 48.999913],\n          [-111.961177, 48.999675],\n          [-111.961154, 48.999405],\n          [-111.96075, 48.998378],\n          [-111.960537, 48.997835],\n          [-111.960261, 48.997296],\n          [-111.959961, 48.996969],\n          [-111.959772, 48.996485],\n          [-111.959789, 48.99582],\n          [-111.959918, 48.995443],\n          [-111.960048, 48.994907],\n          [-111.960094, 48.994603],\n          [-111.960084, 48.994414],\n          [-111.960109, 48.993824],\n          [-111.959994, 48.990856],\n          [-111.95827, 48.98094],\n          [-111.958253, 48.980705],\n          [-111.958185, 48.980405],\n          [-111.958073, 48.980015],\n          [-111.957973, 48.979662],\n          [-111.957788, 48.979177],\n          [-111.957579, 48.978688],\n          [-111.957393, 48.978342],\n          [-111.957182, 48.977986],\n          [-111.956929, 48.977617],\n          [-111.956287, 48.976872],\n          [-111.955429, 48.975932],\n          [-111.940434, 48.960617],\n          [-111.939756, 48.959862],\n          [-111.939258, 48.959163],\n          [-111.938864, 48.958475],\n          [-111.938589, 48.957934],\n          [-111.935242, 48.950139],\n          [-111.933705, 48.946469],\n          [-111.930948, 48.939956],\n          [-111.927211, 48.931012],\n          [-111.924522, 48.924688],\n          [-111.916608, 48.906188],\n          [-111.9112, 48.893335],\n          [-111.910969, 48.892844],\n          [-111.910694, 48.892325],\n          [-111.910265, 48.891676],\n          [-111.909921, 48.891247],\n          [-111.909492, 48.890711],\n          [-111.909046, 48.890237],\n          [-111.908119, 48.889328],\n          [-111.907385, 48.88863],\n          [-111.906844, 48.888116],\n          [-111.903694, 48.88508],\n          [-111.903291, 48.88469],\n          [-111.901737, 48.883161],\n          [-111.878176, 48.860393],\n          [-111.867242, 48.849753],\n          [-111.866486, 48.849013],\n          [-111.865877, 48.848301],\n          [-111.86531, 48.847533],\n          [-111.864675, 48.846613],\n          [-111.86392, 48.845195],\n          [-111.863594, 48.84437],\n          [-111.863233, 48.843167],\n          [-111.863139, 48.842738],\n          [-111.863019, 48.842026],\n          [-111.86295, 48.841071],\n          [-111.862942, 48.830326],\n          [-111.862942, 48.823285],\n          [-111.86289, 48.769261],\n          [-111.862864, 48.764515],\n          [-111.862813, 48.763474],\n          [-111.862718, 48.761743],\n          [-111.861611, 48.743809],\n          [-111.861439, 48.740289],\n          [-111.861439, 48.739949],\n          [-111.861594, 48.737176],\n          [-111.862178, 48.726719],\n          [-111.862229, 48.723792],\n          [-111.862083, 48.656639],\n          [-111.8621, 48.64979],\n          [-111.861997, 48.598701],\n          [-111.86198, 48.592185],\n          [-111.86198, 48.57272],\n          [-111.861912, 48.57163],\n          [-111.861817, 48.570494],\n          [-111.861697, 48.569205],\n          [-111.860581, 48.557657],\n          [-111.860077, 48.552231],\n          [-111.859663, 48.54801],\n          [-111.859594, 48.546805],\n          [-111.859611, 48.545322],\n          [-111.859792, 48.535383],\n          [-111.8598, 48.533888],\n          [-111.859886, 48.533121],\n          [-111.860015, 48.532581],\n          [-111.860246, 48.531939],\n          [-111.860598, 48.531387],\n          [-111.860942, 48.530899],\n          [-111.861688, 48.530109],\n          [-111.866109, 48.525755],\n          [-111.875953, 48.516192],\n          [-111.876929, 48.515247],\n          [-111.877241, 48.514954],\n          [-111.879228, 48.513021],\n          [-111.879759, 48.512467],\n          [-111.88006, 48.512124],\n          [-111.880267, 48.511881],\n          [-111.88042, 48.511679],\n          [-111.880571, 48.511473],\n          [-111.88094, 48.510956],\n          [-111.881292, 48.510376],\n          [-111.881653, 48.509733],\n          [-111.881996, 48.50904],\n          [-111.882305, 48.508346],\n          [-111.882562, 48.507572],\n          [-111.882777, 48.506828],\n          [-111.882931, 48.506134],\n          [-111.883026, 48.505588],\n          [-111.883441, 48.502992],\n          [-111.883604, 48.499975],\n          [-111.883614, 48.499767],\n          [-111.883635, 48.496433],\n          [-111.883673, 48.495815],\n          [-111.883734, 48.49503],\n          [-111.883798, 48.494396],\n          [-111.883866, 48.493802],\n          [-111.883999, 48.493],\n          [-111.884209, 48.492103],\n          [-111.884377, 48.49147],\n          [-111.884557, 48.490837],\n          [-111.885112, 48.489088],\n          [-111.885489, 48.48824],\n          [-111.886605, 48.485897],\n          [-111.88682, 48.485299],\n          [-111.887034, 48.484679],\n          [-111.887197, 48.484099],\n          [-111.887389, 48.483433],\n          [-111.88747, 48.482928],\n          [-111.887522, 48.482349],\n          [-111.887575, 48.481425],\n          [-111.887554, 48.480643],\n          [-111.887506, 48.480113],\n          [-111.887418, 48.479516],\n          [-111.887265, 48.478742],\n          [-111.887056, 48.477974],\n          [-111.886845, 48.47746],\n          [-111.886472, 48.476607],\n          [-111.885635, 48.474831],\n          [-111.885441, 48.474274],\n          [-111.885165, 48.473591],\n          [-111.884897, 48.472862],\n          [-111.884674, 48.47215],\n          [-111.884502, 48.471564],\n          [-111.884279, 48.470409],\n          [-111.884082, 48.46926],\n          [-111.883953, 48.468281],\n          [-111.883906, 48.467423],\n          [-111.883878, 48.46663],\n          [-111.883976, 48.454446],\n          [-111.884028, 48.447094],\n          [-111.884036, 48.443164],\n          [-111.884023, 48.441546],\n          [-111.884017, 48.440681],\n          [-111.884026, 48.43968],\n          [-111.884018, 48.438945],\n          [-111.88402, 48.438457],\n          [-111.884058, 48.438059],\n          [-111.884092, 48.43776],\n          [-111.884134, 48.437455],\n          [-111.884195, 48.437091],\n          [-111.884275, 48.436739],\n          [-111.884339, 48.436455],\n          [-111.884422, 48.436153],\n          [-111.884528, 48.435768],\n          [-111.884674, 48.435354],\n          [-111.884745, 48.435206],\n          [-111.884871, 48.43486],\n          [-111.885003, 48.434574],\n          [-111.885207, 48.434157],\n          [-111.885417, 48.433746],\n          [-111.885596, 48.433441],\n          [-111.88582, 48.433061],\n          [-111.886029, 48.43273],\n          [-111.886203, 48.432492],\n          [-111.886412, 48.432197],\n          [-111.886586, 48.431954],\n          [-111.886816, 48.431663],\n          [-111.887079, 48.431357],\n          [-111.887401, 48.430981],\n          [-111.887774, 48.430593],\n          [-111.888127, 48.430257],\n          [-111.888437, 48.429955],\n          [-111.889099, 48.429374],\n          [-111.889756, 48.428824],\n          [-111.890912, 48.427857],\n          [-111.892165, 48.426838],\n          [-111.905659, 48.415636],\n          [-111.90626, 48.415157],\n          [-111.906861, 48.41457],\n          [-111.907333, 48.414081],\n          [-111.907814, 48.413528],\n          [-111.908406, 48.412776],\n          [-111.909015, 48.411824],\n          [-111.909633, 48.410907],\n          [-111.920752, 48.392582],\n          [-111.927417, 48.381543],\n          [-111.93346, 48.371538],\n          [-111.933846, 48.37086],\n          [-111.934235, 48.370068],\n          [-111.934546, 48.369396],\n          [-111.934939, 48.368399],\n          [-111.935227, 48.367613],\n          [-111.935586, 48.366493],\n          [-111.935831, 48.365544],\n          [-111.936026, 48.364601],\n          [-111.936138, 48.363831],\n          [-111.936258, 48.362885],\n          [-111.936438, 48.360792],\n          [-111.936415, 48.329088],\n          [-111.936407, 48.310354],\n          [-111.936413, 48.303031],\n          [-111.936412, 48.300795],\n          [-111.936402, 48.300483],\n          [-111.936381, 48.271331],\n          [-111.936384, 48.26711],\n          [-111.936382, 48.259592],\n          [-111.936296, 48.241832],\n          [-111.936359, 48.224045],\n          [-111.936352, 48.223792],\n          [-111.936325, 48.223208],\n          [-111.936251, 48.222646],\n          [-111.936138, 48.222131],\n          [-111.936009, 48.221594],\n          [-111.935863, 48.221148],\n          [-111.935674, 48.220724],\n          [-111.935554, 48.220438],\n          [-111.935323, 48.219975],\n          [-111.934809, 48.219106],\n          [-111.93372, 48.217503],\n          [-111.933233, 48.216812],\n          [-111.932738, 48.21609],\n          [-111.932429, 48.215627],\n          [-111.931294, 48.214006],\n          [-111.927397, 48.208419],\n          [-111.925603, 48.205843],\n          [-111.925208, 48.205217],\n          [-111.92491, 48.204712],\n          [-111.924771, 48.204436],\n          [-111.924661, 48.204188],\n          [-111.924567, 48.203923],\n          [-111.924475, 48.203592],\n          [-111.924434, 48.203298],\n          [-111.924418, 48.202753],\n          [-111.924413, 48.20226],\n          [-111.924452, 48.201981],\n          [-111.924528, 48.20166],\n          [-111.924607, 48.201399],\n          [-111.924686, 48.201185],\n          [-111.924808, 48.200887],\n          [-111.92494, 48.200634],\n          [-111.925143, 48.200322],\n          [-111.925478, 48.199721],\n          [-111.929307, 48.193399],\n          [-111.931749, 48.18936],\n          [-111.932143, 48.188696],\n          [-111.932455, 48.188174],\n          [-111.933068, 48.187161],\n          [-111.933601, 48.186274],\n          [-111.933896, 48.185797],\n          [-111.934176, 48.185351],\n          [-111.934674, 48.184441],\n          [-111.934869, 48.184038],\n          [-111.935015, 48.183702],\n          [-111.935133, 48.183407],\n          [-111.935235, 48.183131],\n          [-111.935317, 48.182855],\n          [-111.935435, 48.182454],\n          [-111.935517, 48.18214],\n          [-111.935563, 48.181903],\n          [-111.935605, 48.181629],\n          [-111.935654, 48.181347],\n          [-111.935672, 48.181134],\n          [-111.935695, 48.180837],\n          [-111.93571, 48.180431],\n          [-111.935711, 48.179913],\n          [-111.935689, 48.179699],\n          [-111.935666, 48.179392],\n          [-111.935641, 48.179193],\n          [-111.935605, 48.178954],\n          [-111.935551, 48.17862],\n          [-111.935494, 48.178341],\n          [-111.935425, 48.178065],\n          [-111.935362, 48.177851],\n          [-111.935271, 48.177512],\n          [-111.935083, 48.177015],\n          [-111.93498, 48.176751],\n          [-111.934859, 48.176484],\n          [-111.934688, 48.176141],\n          [-111.934489, 48.175789],\n          [-111.934239, 48.175377],\n          [-111.933859, 48.174812],\n          [-111.933189, 48.173765],\n          [-111.928027, 48.165762],\n          [-111.927735, 48.165321],\n          [-111.92603, 48.162726],\n          [-111.925093, 48.161247],\n          [-111.924008, 48.159611],\n          [-111.922175, 48.156783],\n          [-111.920615, 48.154387],\n          [-111.919007, 48.151911],\n          [-111.91822, 48.150663],\n          [-111.916601, 48.148144],\n          [-111.915551, 48.146568],\n          [-111.914312, 48.144665],\n          [-111.913624, 48.143606],\n          [-111.912311, 48.141567],\n          [-111.911974, 48.141065],\n          [-111.911504, 48.140381],\n          [-111.910989, 48.139656],\n          [-111.91031, 48.138734],\n          [-111.909273, 48.1374],\n          [-111.907928, 48.135653],\n          [-111.906666, 48.13405],\n          [-111.905997, 48.133172],\n          [-111.904722, 48.131516],\n          [-111.901655, 48.127581],\n          [-111.900048, 48.125516],\n          [-111.898729, 48.123822],\n          [-111.894029, 48.117798],\n          [-111.893315, 48.116857],\n          [-111.892001, 48.115177],\n          [-111.889638, 48.112132],\n          [-111.887413, 48.109275],\n          [-111.884717, 48.105808],\n          [-111.876044, 48.094626],\n          [-111.87031, 48.087229],\n          [-111.862959, 48.077764],\n          [-111.861332, 48.075665],\n          [-111.858755, 48.072362],\n          [-111.857125, 48.070241],\n          [-111.854834, 48.06729],\n          [-111.850948, 48.062304],\n          [-111.85011, 48.061229],\n          [-111.849084, 48.059917],\n          [-111.845348, 48.055071],\n          [-111.836461, 48.043589],\n          [-111.832454, 48.038401],\n          [-111.828116, 48.032803],\n          [-111.825147, 48.028974],\n          [-111.816587, 48.017942],\n          [-111.816087, 48.017289],\n          [-111.815305, 48.016376],\n          [-111.814473, 48.015423],\n          [-111.813623, 48.014499],\n          [-111.812937, 48.013816],\n          [-111.811984, 48.012851],\n          [-111.810868, 48.011863],\n          [-111.809752, 48.010882],\n          [-111.808825, 48.010101],\n          [-111.807598, 48.009153],\n          [-111.806388, 48.008229],\n          [-111.805238, 48.007408],\n          [-111.784158, 47.992286],\n          [-111.782561, 47.991143],\n          [-111.767146, 47.980084],\n          [-111.766219, 47.979354],\n          [-111.765283, 47.978504],\n          [-111.764288, 47.977544],\n          [-111.763404, 47.976585],\n          [-111.762691, 47.975723],\n          [-111.762193, 47.97501],\n          [-111.761653, 47.974154],\n          [-111.761121, 47.973252],\n          [-111.753336, 47.959718],\n          [-111.749036, 47.952205],\n          [-111.736505, 47.930384],\n          [-111.736106, 47.92965],\n          [-111.735644, 47.928853],\n          [-111.735343, 47.928305],\n          [-111.733592, 47.925244],\n          [-111.733306, 47.924769],\n          [-111.732599, 47.923554],\n          [-111.732395, 47.923205],\n          [-111.731718, 47.922093],\n          [-111.731538, 47.921738],\n          [-111.73117, 47.921043],\n          [-111.726112, 47.912262],\n          [-111.71442, 47.89173],\n          [-111.713776, 47.890608],\n          [-111.713253, 47.889578],\n          [-111.712927, 47.888864],\n          [-111.71254, 47.888058],\n          [-111.712146, 47.88689],\n          [-111.711811, 47.885744],\n          [-111.711519, 47.884564],\n          [-111.711253, 47.883125],\n          [-111.711124, 47.881922],\n          [-111.71103, 47.880834],\n          [-111.71103, 47.879792],\n          [-111.711129, 47.869762],\n          [-111.711004, 47.867783],\n          [-111.710901, 47.866758],\n          [-111.710781, 47.865716],\n          [-111.710618, 47.864547],\n          [-111.710438, 47.863447],\n          [-111.710283, 47.862537],\n          [-111.709991, 47.861213],\n          [-111.709756, 47.860259],\n          [-111.709335, 47.858847],\n          [-111.708841, 47.857285],\n          [-111.70727, 47.852822],\n          [-111.706867, 47.851704],\n          [-111.706498, 47.850875],\n          [-111.706077, 47.850017],\n          [-111.705434, 47.848819],\n          [-111.705305, 47.848582],\n          [-111.704816, 47.847747],\n          [-111.704215, 47.846849],\n          [-111.703623, 47.846054],\n          [-111.702678, 47.844833],\n          [-111.701983, 47.843986],\n          [-111.700902, 47.842828],\n          [-111.699923, 47.841889],\n          [-111.698979, 47.841013],\n          [-111.698052, 47.84023],\n          [-111.696893, 47.839291],\n          [-111.668363, 47.817267],\n          [-111.667479, 47.816472],\n          [-111.667042, 47.815942],\n          [-111.666647, 47.815434],\n          [-111.666226, 47.81476],\n          [-111.665943, 47.814143],\n          [-111.66578, 47.813619],\n          [-111.665625, 47.812887],\n          [-111.6656, 47.812391],\n          [-111.665591, 47.811797],\n          [-111.666429, 47.79584],\n          [-111.666535, 47.793822],\n          [-111.666492, 47.791308],\n          [-111.666439, 47.750802],\n          [-111.666442, 47.741317],\n          [-111.666445, 47.740989],\n          [-111.666406, 47.723306],\n          [-111.666381, 47.72244],\n          [-111.666295, 47.721684],\n          [-111.666158, 47.720881],\n          [-111.665986, 47.72024],\n          [-111.665746, 47.719547],\n          [-111.665419, 47.71871],\n          [-111.665042, 47.717925],\n          [-111.664647, 47.717243],\n          [-111.664132, 47.716493],\n          [-111.663789, 47.716008],\n          [-111.663359, 47.715528],\n          [-111.662432, 47.714581],\n          [-111.658081, 47.710071],\n          [-111.647285, 47.699031],\n          [-111.646085, 47.697836],\n          [-111.632275, 47.683698],\n          [-111.631949, 47.683351],\n          [-111.606663, 47.657441],\n          [-111.60117, 47.651798],\n          [-111.590415, 47.64073],\n          [-111.589918, 47.640187],\n          [-111.589463, 47.639655],\n          [-111.589068, 47.639157],\n          [-111.588707, 47.638689],\n          [-111.588287, 47.638139],\n          [-111.587849, 47.637538],\n          [-111.587549, 47.637104],\n          [-111.587231, 47.636624],\n          [-111.58627, 47.63501],\n          [-111.585369, 47.633136],\n          [-111.570511, 47.6019],\n          [-111.569945, 47.600818],\n          [-111.56955, 47.600169],\n          [-111.569224, 47.599643],\n          [-111.568846, 47.599047],\n          [-111.568546, 47.598607],\n          [-111.568168, 47.598051],\n          [-111.567747, 47.597472],\n          [-111.567335, 47.596928],\n          [-111.566915, 47.59643],\n          [-111.566537, 47.595991],\n          [-111.552899, 47.581183],\n          [-111.552633, 47.580911],\n          [-111.537629, 47.564691],\n          [-111.536514, 47.563515],\n          [-111.535904, 47.562901],\n          [-111.535175, 47.56227],\n          [-111.534437, 47.561691],\n          [-111.533656, 47.561129],\n          [-111.532711, 47.560504],\n          [-111.531647, 47.559884],\n          [-111.53048, 47.559311],\n          [-111.529184, 47.558737],\n          [-111.528008, 47.558285],\n          [-111.526806, 47.557897],\n          [-111.525424, 47.557503],\n          [-111.524008, 47.557162],\n          [-111.522824, 47.556953],\n          [-111.521734, 47.556779],\n          [-111.509679, 47.554952],\n          [-111.484251, 47.551039],\n          [-111.477299, 47.54995],\n          [-111.455614, 47.546631],\n          [-111.452477, 47.546143],\n          [-111.452005, 47.546074],\n          [-111.448496, 47.545531],\n          [-111.445301, 47.545037],\n          [-111.443894, 47.544799],\n          [-111.442357, 47.544492],\n          [-111.440907, 47.544162],\n          [-111.439173, 47.543716],\n          [-111.437894, 47.543368],\n          [-111.436512, 47.542957],\n          [-111.435045, 47.54247],\n          [-111.385349, 47.526175],\n          [-111.384241, 47.525793],\n          [-111.383478, 47.52541],\n          [-111.382928, 47.525097],\n          [-111.382499, 47.524784],\n          [-111.382036, 47.524384],\n          [-111.381709, 47.524025],\n          [-111.381452, 47.523741],\n          [-111.380053, 47.521909],\n          [-111.379298, 47.520959],\n          [-111.379152, 47.520779],\n          [-111.378714, 47.520286],\n          [-111.378268, 47.519857],\n          [-111.377555, 47.519394],\n          [-111.376774, 47.518994],\n          [-111.376096, 47.518733],\n          [-111.375409, 47.51853],\n          [-111.374294, 47.518234],\n          [-111.351059, 47.512362],\n          [-111.350081, 47.512055],\n          [-111.348914, 47.511632],\n          [-111.348184, 47.511255],\n          [-111.347446, 47.510878],\n          [-111.346914, 47.510553],\n          [-111.346356, 47.510147],\n          [-111.345832, 47.509759],\n          [-111.345309, 47.509295],\n          [-111.344914, 47.508884],\n          [-111.344605, 47.508542],\n          [-111.344193, 47.50802],\n          [-111.34391, 47.507591],\n          [-111.343618, 47.507133],\n          [-111.343352, 47.506535],\n          [-111.343137, 47.505921],\n          [-111.343, 47.505254],\n          [-111.342914, 47.504779],\n          [-111.342871, 47.504205],\n          [-111.342884, 47.503714],\n          [-111.343017, 47.501337],\n          [-111.343037, 47.500922],\n          [-111.343074, 47.500247],\n          [-111.343153, 47.498866],\n          [-111.343699, 47.489338],\n          [-111.343837, 47.488347],\n          [-111.344051, 47.487517],\n          [-111.344326, 47.486746],\n          [-111.344695, 47.485795],\n          [-111.345184, 47.484855],\n          [-111.345493, 47.484356],\n          [-111.346068, 47.483527],\n          [-111.34715, 47.48221],\n          [-111.347948, 47.481392],\n          [-111.348765, 47.480715],\n          [-111.349751, 47.479978],\n          [-111.350866, 47.47913],\n          [-111.356582, 47.475347],\n          [-111.365214, 47.469592],\n          [-111.367419, 47.46813],\n          [-111.367934, 47.467829],\n          [-111.368578, 47.467492],\n          [-111.36923, 47.467144],\n          [-111.369994, 47.466807],\n          [-111.370973, 47.466407],\n          [-111.371926, 47.466042],\n          [-111.372818, 47.465746],\n          [-111.373522, 47.465525],\n          [-111.374509, 47.465258],\n          [-111.429286, 47.452445],\n          [-111.429621, 47.452364],\n          [-111.473508, 47.442064],\n          [-111.50183, 47.435384],\n          [-111.502749, 47.435175],\n          [-111.503701, 47.434961],\n          [-111.504362, 47.434792],\n          [-111.505221, 47.434543],\n          [-111.506045, 47.434299],\n          [-111.506663, 47.434095],\n          [-111.507143, 47.433927],\n          [-111.507907, 47.433648],\n          [-111.508654, 47.433312],\n          [-111.509255, 47.433045],\n          [-111.509933, 47.432725],\n          [-111.510534, 47.432412],\n          [-111.51122, 47.432029],\n          [-111.51183, 47.431674],\n          [-111.512954, 47.430931],\n          [-111.513546, 47.43049],\n          [-111.524011, 47.422011],\n          [-111.569141, 47.385345],\n          [-111.6142, 47.348685],\n          [-111.614466, 47.34847],\n          [-111.634341, 47.332266],\n          [-111.69101, 47.285965],\n          [-111.692683, 47.284596],\n          [-111.694151, 47.283461],\n          [-111.694838, 47.282943],\n          [-111.696432, 47.281863],\n          [-111.698123, 47.280815],\n          [-111.699024, 47.280297],\n          [-111.699436, 47.280064],\n          [-111.703522, 47.277671],\n          [-111.704183, 47.27728],\n          [-111.704689, 47.276966],\n          [-111.70511, 47.276686],\n          [-111.705436, 47.276442],\n          [-111.705788, 47.276139],\n          [-111.706182, 47.275766],\n          [-111.706612, 47.275289],\n          [-111.706989, 47.274806],\n          [-111.707367, 47.274264],\n          [-111.707573, 47.273856],\n          [-111.707813, 47.273379],\n          [-111.707933, 47.273047],\n          [-111.708045, 47.272651],\n          [-111.708122, 47.272307],\n          [-111.708199, 47.271911],\n          [-111.708234, 47.271544],\n          [-111.708234, 47.271212],\n          [-111.708157, 47.264538],\n          [-111.708114, 47.262342],\n          [-111.708122, 47.261794],\n          [-111.708157, 47.261369],\n          [-111.708234, 47.260851],\n          [-111.708268, 47.260653],\n          [-111.708337, 47.260257],\n          [-111.708508, 47.259511],\n          [-111.708637, 47.258923],\n          [-111.708783, 47.258241],\n          [-111.70898, 47.257536],\n          [-111.709152, 47.256942],\n          [-111.709298, 47.256383],\n          [-111.710079, 47.25333],\n          [-111.710328, 47.252363],\n          [-111.710474, 47.251833],\n          [-111.710637, 47.251332],\n          [-111.710834, 47.250889],\n          [-111.71104, 47.250545],\n          [-111.711367, 47.250085],\n          [-111.711658, 47.249753],\n          [-111.711942, 47.249444],\n          [-111.712345, 47.249089],\n          [-111.712766, 47.248751],\n          [-111.71316, 47.248494],\n          [-111.713624, 47.248221],\n          [-111.714147, 47.247958],\n          [-111.714834, 47.247655],\n          [-111.729726, 47.241112],\n          [-111.73291, 47.239807],\n          [-111.75169, 47.232534],\n          [-111.754093, 47.231624],\n          [-111.75635, 47.230861],\n          [-111.75676, 47.230739],\n          [-111.765002, 47.228413],\n          [-111.765835, 47.228157],\n          [-111.766633, 47.227877],\n          [-111.767345, 47.227597],\n          [-111.768092, 47.227306],\n          [-111.768719, 47.227026],\n          [-111.769474, 47.226676],\n          [-111.770058, 47.226361],\n          [-111.770727, 47.225988],\n          [-111.771448, 47.225534],\n          [-111.772118, 47.225096],\n          [-111.772693, 47.224688],\n          [-111.773405, 47.22417],\n          [-111.773714, 47.223936],\n          [-111.774169, 47.223575],\n          [-111.774641, 47.223103],\n          [-111.775104, 47.222619],\n          [-111.775499, 47.222211],\n          [-111.775885, 47.221774],\n          [-111.776306, 47.221255],\n          [-111.776658, 47.220777],\n          [-111.77695, 47.220369],\n          [-111.777422, 47.219611],\n          [-111.777722, 47.219057],\n          [-111.778014, 47.218422],\n          [-111.778289, 47.217746],\n          [-111.778503, 47.217104],\n          [-111.778675, 47.216428],\n          [-111.778881, 47.215694],\n          [-111.779061, 47.214988],\n          [-111.780057, 47.210796],\n          [-111.780203, 47.210213],\n          [-111.780323, 47.209758],\n          [-111.780435, 47.209397],\n          [-111.780641, 47.208808],\n          [-111.780907, 47.208201],\n          [-111.78113, 47.207729],\n          [-111.781301, 47.207438],\n          [-111.781499, 47.207129],\n          [-111.78228, 47.205916],\n          [-111.783293, 47.204645],\n          [-111.783936, 47.203974],\n          [-111.784735, 47.203146],\n          [-111.785593, 47.202225],\n          [-111.786314, 47.201466],\n          [-111.786872, 47.200883],\n          [-111.787902, 47.199845],\n          [-111.788254, 47.199507],\n          [-111.788674, 47.19914],\n          [-111.789086, 47.19879],\n          [-111.789584, 47.198387],\n          [-111.790168, 47.197921],\n          [-111.790605, 47.197618],\n          [-111.791249, 47.197227],\n          [-111.791824, 47.196877],\n          [-111.792545, 47.196474],\n          [-111.793198, 47.196136],\n          [-111.79397, 47.195769],\n          [-111.794805, 47.195425],\n          [-111.801248, 47.192835],\n          [-111.801575, 47.192701],\n          [-111.802656, 47.192287],\n          [-111.803514, 47.191937],\n          [-111.804167, 47.191628],\n          [-111.804665, 47.191394],\n          [-111.8053, 47.191045],\n          [-111.805723, 47.190797],\n          [-111.805997, 47.190634],\n          [-111.806478, 47.190323],\n          [-111.806732, 47.190144],\n          [-111.80699, 47.189955],\n          [-111.807242, 47.189755],\n          [-111.807499, 47.189537],\n          [-111.807978, 47.189108],\n          [-111.808309, 47.188784],\n          [-111.808738, 47.188316],\n          [-111.809145, 47.187831],\n          [-111.809375, 47.187515],\n          [-111.809578, 47.187207],\n          [-111.809725, 47.186968],\n          [-111.809941, 47.18658],\n          [-111.810196, 47.186052],\n          [-111.810485, 47.185392],\n          [-111.810582, 47.185034],\n          [-111.810757, 47.184458],\n          [-111.81087, 47.184068],\n          [-111.811288, 47.182591],\n          [-111.811466, 47.182023],\n          [-111.811592, 47.181562],\n          [-111.811725, 47.181068],\n          [-111.811881, 47.18053],\n          [-111.812016, 47.179972],\n          [-111.812133, 47.179486],\n          [-111.812304, 47.178698],\n          [-111.812475, 47.177933],\n          [-111.812795, 47.176671],\n          [-111.813022, 47.175805],\n          [-111.813143, 47.175313],\n          [-111.813289, 47.174743],\n          [-111.813451, 47.174086],\n          [-111.813587, 47.173603],\n          [-111.813709, 47.173199],\n          [-111.813868, 47.172742],\n          [-111.814052, 47.172177],\n          [-111.81431, 47.171374],\n          [-111.814446, 47.170953],\n          [-111.814555, 47.170592],\n          [-111.814621, 47.170315],\n          [-111.814724, 47.169845],\n          [-111.814867, 47.169286],\n          [-111.814924, 47.169023],\n          [-111.815005, 47.168585],\n          [-111.81512, 47.168075],\n          [-111.815267, 47.167513],\n          [-111.81537, 47.167124],\n          [-111.815534, 47.166596],\n          [-111.815743, 47.165879],\n          [-111.815883, 47.165407],\n          [-111.816017, 47.16497],\n          [-111.816151, 47.164499],\n          [-111.816299, 47.164102],\n          [-111.816455, 47.163605],\n          [-111.816606, 47.163233],\n          [-111.81675, 47.162929],\n          [-111.8169, 47.16265],\n          [-111.817163, 47.162234],\n          [-111.817461, 47.161792],\n          [-111.817707, 47.161428],\n          [-111.817918, 47.161172],\n          [-111.818109, 47.160939],\n          [-111.81826, 47.160773],\n          [-111.818436, 47.160598],\n          [-111.818713, 47.160322],\n          [-111.819137, 47.159916],\n          [-111.819338, 47.159742],\n          [-111.819615, 47.159506],\n          [-111.819811, 47.159353],\n          [-111.820101, 47.159137],\n          [-111.820886, 47.158653],\n          [-111.821347, 47.158391],\n          [-111.821709, 47.158179],\n          [-111.82215, 47.157949],\n          [-111.822792, 47.157656],\n          [-111.823291, 47.157407],\n          [-111.823951, 47.157074],\n          [-111.824604, 47.156773],\n          [-111.824926, 47.156618],\n          [-111.826016, 47.156075],\n          [-111.826777, 47.155704],\n          [-111.827118, 47.155527],\n          [-111.827632, 47.155278],\n          [-111.828833, 47.154684],\n          [-111.830331, 47.153967],\n          [-111.83092, 47.153679],\n          [-111.831417, 47.153485],\n          [-111.831694, 47.153394],\n          [-111.831937, 47.15332],\n          [-111.832157, 47.153261],\n          [-111.832517, 47.15318],\n          [-111.832892, 47.153117],\n          [-111.833253, 47.153076],\n          [-111.833573, 47.153049],\n          [-111.833993, 47.153025],\n          [-111.834559, 47.153049],\n          [-111.835126, 47.153113],\n          [-111.835701, 47.1532],\n          [-111.83595, 47.153259],\n          [-111.841856, 47.154858],\n          [-111.842362, 47.155002],\n          [-111.842712, 47.155094],\n          [-111.843019, 47.155158],\n          [-111.843672, 47.155257],\n          [-111.8438, 47.155267],\n          [-111.844087, 47.155287],\n          [-111.844399, 47.155286],\n          [-111.844699, 47.15528],\n          [-111.845058, 47.15526],\n          [-111.845509, 47.155193],\n          [-111.845869, 47.155122],\n          [-111.846291, 47.155019],\n          [-111.846644, 47.154905],\n          [-111.846928, 47.154785],\n          [-111.847126, 47.154685],\n          [-111.847479, 47.154504],\n          [-111.847736, 47.154346],\n          [-111.847908, 47.15421],\n          [-111.848115, 47.154036],\n          [-111.848251, 47.153894],\n          [-111.848342, 47.153792],\n          [-111.84847, 47.153647],\n          [-111.848543, 47.153546],\n          [-111.848649, 47.153419],\n          [-111.848764, 47.153232],\n          [-111.848861, 47.153032],\n          [-111.848947, 47.152823],\n          [-111.848973, 47.152708],\n          [-111.849021, 47.152541],\n          [-111.849042, 47.152364],\n          [-111.849077, 47.152131],\n          [-111.849103, 47.151825],\n          [-111.849333, 47.149062],\n          [-111.849393, 47.148406],\n          [-111.8494, 47.148192],\n          [-111.849408, 47.147987],\n          [-111.8494, 47.147824],\n          [-111.84939, 47.147698],\n          [-111.849374, 47.147556],\n          [-111.849347, 47.147435],\n          [-111.849331, 47.147351],\n          [-111.849245, 47.146966],\n          [-111.849142, 47.146674],\n          [-111.849059, 47.146434],\n          [-111.848943, 47.146212],\n          [-111.84886, 47.146053],\n          [-111.848767, 47.145896],\n          [-111.848673, 47.145762],\n          [-111.848566, 47.14562],\n          [-111.847025, 47.143717],\n          [-111.846887, 47.143525],\n          [-111.846766, 47.143353],\n          [-111.846661, 47.14319],\n          [-111.846521, 47.142953],\n          [-111.846415, 47.142749],\n          [-111.846343, 47.142591],\n          [-111.846269, 47.14237],\n          [-111.846241, 47.142263],\n          [-111.846223, 47.14217],\n          [-111.846209, 47.142062],\n          [-111.84619, 47.141876],\n          [-111.846192, 47.141745],\n          [-111.846217, 47.141528],\n          [-111.846242, 47.141353],\n          [-111.84627, 47.141184],\n          [-111.846324, 47.141016],\n          [-111.846398, 47.140797],\n          [-111.846525, 47.140531],\n          [-111.846604, 47.14041],\n          [-111.846676, 47.14029],\n          [-111.846846, 47.140059],\n          [-111.847142, 47.139751],\n          [-111.847281, 47.13963],\n          [-111.84746, 47.139479],\n          [-111.847678, 47.139323],\n          [-111.84791, 47.139171],\n          [-111.848186, 47.139013],\n          [-111.848438, 47.138891],\n          [-111.848706, 47.138772],\n          [-111.848984, 47.138674],\n          [-111.849267, 47.138581],\n          [-111.849592, 47.138477],\n          [-111.849947, 47.138393],\n          [-111.850257, 47.138331],\n          [-111.850556, 47.138292],\n          [-111.850908, 47.138241],\n          [-111.851241, 47.13822],\n          [-111.85164, 47.138209],\n          [-111.851974, 47.13821],\n          [-111.852237, 47.138223],\n          [-111.852532, 47.138247],\n          [-111.852795, 47.138276],\n          [-111.853123, 47.13833],\n          [-111.853394, 47.138374],\n          [-111.853787, 47.138457],\n          [-111.854766, 47.138667],\n          [-111.855826, 47.138884],\n          [-111.856179, 47.13897],\n          [-111.856565, 47.139029],\n          [-111.856792, 47.139068],\n          [-111.857173, 47.13911],\n          [-111.857431, 47.139137],\n          [-111.857676, 47.139157],\n          [-111.858048, 47.139176],\n          [-111.858338, 47.139177],\n          [-111.858762, 47.139167],\n          [-111.859155, 47.139148],\n          [-111.85955, 47.139117],\n          [-111.859805, 47.139089],\n          [-111.860245, 47.139022],\n          [-111.860491, 47.13898],\n          [-111.860683, 47.138944],\n          [-111.860973, 47.138885],\n          [-111.861214, 47.138829],\n          [-111.861479, 47.138758],\n          [-111.861743, 47.138677],\n          [-111.862069, 47.138562],\n          [-111.862344, 47.138449],\n          [-111.862687, 47.138297],\n          [-111.862931, 47.138175],\n          [-111.863114, 47.138087],\n          [-111.863314, 47.137975],\n          [-111.863599, 47.137807],\n          [-111.863972, 47.13756],\n          [-111.864261, 47.137341],\n          [-111.864442, 47.137202],\n          [-111.864674, 47.137005],\n          [-111.864969, 47.136736],\n          [-111.865258, 47.13642],\n          [-111.867853, 47.13324],\n          [-111.868102, 47.13296],\n          [-111.868445, 47.132657],\n          [-111.868909, 47.132347],\n          [-111.869372, 47.132096],\n          [-111.869776, 47.131938],\n          [-111.870291, 47.131792],\n          [-111.870754, 47.131687],\n          [-111.871286, 47.131623],\n          [-111.87181, 47.131605],\n          [-111.872359, 47.131617],\n          [-111.873389, 47.131705],\n          [-111.875681, 47.131897],\n          [-111.885054, 47.132785],\n          [-111.886566, 47.132886],\n          [-111.888607, 47.1331],\n          [-111.888985, 47.133135],\n          [-111.889766, 47.133217],\n          [-111.890444, 47.133281],\n          [-111.891225, 47.133322],\n          [-111.891886, 47.133334],\n          [-111.892598, 47.133334],\n          [-111.893242, 47.133316],\n          [-111.8938, 47.133305],\n          [-111.894512, 47.133246],\n          [-111.89513, 47.133194],\n          [-111.89563, 47.133132],\n          [-111.896274, 47.133044],\n          [-111.89678, 47.132974],\n          [-111.898531, 47.132636],\n          [-111.899656, 47.132344],\n          [-111.900711, 47.132022],\n          [-111.901398, 47.131783],\n          [-111.902445, 47.131403],\n          [-111.904162, 47.130755],\n          [-111.909034, 47.128927],\n          [-111.913729, 47.127181],\n          [-111.917251, 47.125878],\n          [-111.92071, 47.1247],\n          [-111.921698, 47.124251],\n          [-111.922387, 47.123838],\n          [-111.922806, 47.123526],\n          [-111.924809, 47.121884],\n          [-111.925527, 47.121467],\n          [-111.926631, 47.121045],\n          [-111.927545, 47.120838],\n          [-111.928844, 47.120679],\n          [-111.939954, 47.119561],\n          [-111.940893, 47.119375],\n          [-111.941491, 47.119193],\n          [-111.94258, 47.118694],\n          [-111.94328, 47.118205],\n          [-111.943682, 47.117842],\n          [-111.944167, 47.117216],\n          [-111.94437, 47.116782],\n          [-111.94452, 47.116283],\n          [-111.944594, 47.115646],\n          [-111.944471, 47.113184],\n          [-111.944519, 47.112085],\n          [-111.944699, 47.111164],\n          [-111.9451, 47.109855],\n          [-111.94519, 47.109613],\n          [-111.946818, 47.104798],\n          [-111.947185, 47.103915],\n          [-111.94757, 47.103215],\n          [-111.948705, 47.101708],\n          [-111.95025, 47.099859],\n          [-111.951568, 47.098237],\n          [-111.952318, 47.097326],\n          [-111.952866, 47.096646],\n          [-111.954165, 47.094457],\n          [-111.954536, 47.093996],\n          [-111.955001, 47.093573],\n          [-111.95538, 47.093283],\n          [-111.95597, 47.092921],\n          [-111.958022, 47.092174],\n          [-111.958929, 47.091665],\n          [-111.959563, 47.091145],\n          [-111.959918, 47.090782],\n          [-111.960199, 47.090406],\n          [-111.960514, 47.089782],\n          [-111.960679, 47.089121],\n          [-111.961076, 47.083974],\n          [-111.961218, 47.083113],\n          [-111.961515, 47.082259],\n          [-111.962027, 47.081188],\n          [-111.962536, 47.080367],\n          [-111.963148, 47.079581],\n          [-111.964601, 47.078023],\n          [-111.966718, 47.075826],\n          [-111.967024, 47.075517],\n          [-111.969094, 47.073375],\n          [-111.970437, 47.07194],\n          [-111.972154, 47.070032],\n          [-111.973432, 47.068542],\n          [-111.974103, 47.067809],\n          [-111.974604, 47.067107],\n          [-111.976616, 47.064731],\n          [-111.98105, 47.059331],\n          [-111.981811, 47.058552],\n          [-111.982905, 47.057585],\n          [-111.983864, 47.057007],\n          [-111.985011, 47.056354],\n          [-111.986314, 47.055712],\n          [-111.986853, 47.055504],\n          [-111.987827, 47.055224],\n          [-111.990272, 47.054577],\n          [-111.991627, 47.053954],\n          [-111.992491, 47.053494],\n          [-111.993301, 47.052977],\n          [-111.994268, 47.05221],\n          [-111.994901, 47.051592],\n          [-112.00108, 47.045261],\n          [-112.002131, 47.044014],\n          [-112.002341, 47.043639],\n          [-112.002459, 47.043291],\n          [-112.00254, 47.04249],\n          [-112.002551, 47.041633],\n          [-112.002802, 47.040468],\n          [-112.003031, 47.039996],\n          [-112.003311, 47.039629],\n          [-112.00408, 47.038901],\n          [-112.004669, 47.038537],\n          [-112.005381, 47.038191],\n          [-112.006132, 47.03787],\n          [-112.007591, 47.037508],\n          [-112.008057, 47.037437],\n          [-112.009475, 47.037313],\n          [-112.012696, 47.037258],\n          [-112.01489, 47.037245],\n          [-112.016275, 47.037163],\n          [-112.0192, 47.037033],\n          [-112.020595, 47.036893],\n          [-112.021841, 47.036661],\n          [-112.023428, 47.036288],\n          [-112.024543, 47.035923],\n          [-112.025634, 47.03549],\n          [-112.026621, 47.035004],\n          [-112.027875, 47.034259],\n          [-112.04368, 47.024236],\n          [-112.044909, 47.023441],\n          [-112.04544, 47.023036],\n          [-112.04608, 47.022418],\n          [-112.046528, 47.021863],\n          [-112.046751, 47.021531],\n          [-112.046895, 47.021189],\n          [-112.048457, 47.017223],\n          [-112.049379, 47.014861],\n          [-112.04961, 47.014335],\n          [-112.049878, 47.013819],\n          [-112.050194, 47.013314],\n          [-112.050556, 47.012813],\n          [-112.050955, 47.01233],\n          [-112.051351, 47.011873],\n          [-112.051809, 47.011423],\n          [-112.052303, 47.010991],\n          [-112.05283, 47.010576],\n          [-112.053387, 47.010182],\n          [-112.053972, 47.009806],\n          [-112.056998, 47.008006],\n          [-112.058515, 47.007109],\n          [-112.060333, 47.006031],\n          [-112.061846, 47.00513],\n          [-112.062472, 47.004869],\n          [-112.062889, 47.004741],\n          [-112.063358, 47.004645],\n          [-112.063683, 47.004606],\n          [-112.064074, 47.004561],\n          [-112.064445, 47.004519],\n          [-112.06488, 47.004576],\n          [-112.06527, 47.004629],\n          [-112.065565, 47.004697],\n          [-112.065974, 47.004792],\n          [-112.066808, 47.004991],\n          [-112.06824, 47.005361],\n          [-112.0686, 47.005467],\n          [-112.069096, 47.005596],\n          [-112.069473, 47.005688],\n          [-112.069732, 47.005745],\n          [-112.070266, 47.005855],\n          [-112.070699, 47.005951],\n          [-112.071253, 47.006048],\n          [-112.071642, 47.006114],\n          [-112.071928, 47.006158],\n          [-112.072302, 47.006209],\n          [-112.072735, 47.006263],\n          [-112.072984, 47.006287],\n          [-112.073367, 47.006318],\n          [-112.073792, 47.006352],\n          [-112.074219, 47.006372],\n          [-112.074542, 47.006382],\n          [-112.074829, 47.00639],\n          [-112.075178, 47.006392],\n          [-112.075603, 47.006393],\n          [-112.076788, 47.006332],\n          [-112.077271, 47.006281],\n          [-112.077628, 47.006225],\n          [-112.078026, 47.006153],\n          [-112.078436, 47.006074],\n          [-112.078755, 47.005996],\n          [-112.079201, 47.005866],\n          [-112.079533, 47.005747],\n          [-112.079812, 47.00563],\n          [-112.080082, 47.005495],\n          [-112.080379, 47.005332],\n          [-112.080635, 47.005164],\n          [-112.080953, 47.004927],\n          [-112.081049, 47.004826],\n          [-112.081198, 47.004689],\n          [-112.081316, 47.004562],\n          [-112.081449, 47.004379],\n          [-112.081568, 47.004191],\n          [-112.081674, 47.003987],\n          [-112.08174, 47.003858],\n          [-112.081806, 47.003692],\n          [-112.081884, 47.003438],\n          [-112.08191, 47.003275],\n          [-112.081934, 47.003066],\n          [-112.08193, 47.002831],\n          [-112.081896, 47.002597],\n          [-112.081853, 47.002371],\n          [-112.081798, 47.002194],\n          [-112.081607, 47.00176],\n          [-112.081184, 47.001198],\n          [-112.079559, 46.99968],\n          [-112.078016, 46.99838],\n          [-112.07758, 46.997912],\n          [-112.077288, 46.997532],\n          [-112.076986, 46.99693],\n          [-112.076889, 46.996514],\n          [-112.076886, 46.996116],\n          [-112.076984, 46.995478],\n          [-112.07795, 46.992584],\n          [-112.078047, 46.991994],\n          [-112.078024, 46.991594],\n          [-112.077935, 46.9912],\n          [-112.077672, 46.990627],\n          [-112.076129, 46.988425],\n          [-112.075762, 46.987771],\n          [-112.075646, 46.98742],\n          [-112.075619, 46.987055],\n          [-112.075663, 46.986679],\n          [-112.075796, 46.986299],\n          [-112.076008, 46.985921],\n          [-112.076502, 46.98539],\n          [-112.077181, 46.984932],\n          [-112.081242, 46.982494],\n          [-112.081853, 46.981972],\n          [-112.082104, 46.981646],\n          [-112.082346, 46.981245],\n          [-112.082526, 46.98074],\n          [-112.082567, 46.980266],\n          [-112.082681, 46.977427],\n          [-112.082826, 46.974499],\n          [-112.083032, 46.973709],\n          [-112.083438, 46.973098],\n          [-112.083941, 46.972667],\n          [-112.084536, 46.97225],\n          [-112.093815, 46.965771],\n          [-112.094034, 46.965596],\n          [-112.094318, 46.965306],\n          [-112.094501, 46.965085],\n          [-112.094642, 46.964864],\n          [-112.094785, 46.964575],\n          [-112.094868, 46.964338],\n          [-112.094926, 46.964081],\n          [-112.094952, 46.963813],\n          [-112.094963, 46.963562],\n          [-112.094964, 46.963005],\n          [-112.094945, 46.962147],\n          [-112.095064, 46.961322],\n          [-112.095315, 46.960775],\n          [-112.095663, 46.960328],\n          [-112.098599, 46.957746],\n          [-112.098975, 46.957432],\n          [-112.099726, 46.956946],\n          [-112.100314, 46.956644],\n          [-112.101038, 46.956326],\n          [-112.103946, 46.955297],\n          [-112.107802, 46.953955],\n          [-112.108475, 46.953671],\n          [-112.108901, 46.953445],\n          [-112.109465, 46.953038],\n          [-112.109979, 46.952469],\n          [-112.110197, 46.952042],\n          [-112.111502, 46.949682],\n          [-112.112324, 46.948952],\n          [-112.113184, 46.948533],\n          [-112.114208, 46.948308],\n          [-112.116111, 46.948021],\n          [-112.117289, 46.947669],\n          [-112.118334, 46.94705],\n          [-112.119549, 46.946068],\n          [-112.122402, 46.943642],\n          [-112.123133, 46.943013],\n          [-112.123553, 46.942583],\n          [-112.12389, 46.942171],\n          [-112.124619, 46.941266],\n          [-112.125571, 46.939982],\n          [-112.126015, 46.939377],\n          [-112.1265, 46.938749],\n          [-112.126751, 46.938397],\n          [-112.126995, 46.938014],\n          [-112.127231, 46.93766],\n          [-112.127472, 46.93708],\n          [-112.127553, 46.936521],\n          [-112.127485, 46.935878],\n          [-112.126037, 46.931011],\n          [-112.125843, 46.930596],\n          [-112.125614, 46.930288],\n          [-112.125356, 46.930017],\n          [-112.125, 46.92973],\n          [-112.122981, 46.928549],\n          [-112.122668, 46.928293],\n          [-112.122315, 46.927871],\n          [-112.122099, 46.927296],\n          [-112.122093, 46.926792],\n          [-112.122341, 46.926128],\n          [-112.12333, 46.924835],\n          [-112.123628, 46.924404],\n          [-112.123835, 46.923877],\n          [-112.123883, 46.923325],\n          [-112.123775, 46.9228],\n          [-112.123494, 46.922251],\n          [-112.123242, 46.921939],\n          [-112.123161, 46.921857],\n          [-112.12174, 46.920823],\n          [-112.121416, 46.920602],\n          [-112.120977, 46.920179],\n          [-112.120697, 46.919775],\n          [-112.120503, 46.919327],\n          [-112.120322, 46.918471],\n          [-112.119667, 46.915666],\n          [-112.11939, 46.915074],\n          [-112.119062, 46.914644],\n          [-112.118506, 46.91421],\n          [-112.116708, 46.913328],\n          [-112.116193, 46.912968],\n          [-112.115472, 46.912187],\n          [-112.115356, 46.911933],\n          [-112.115279, 46.911728],\n          [-112.115241, 46.911454],\n          [-112.11523, 46.911175],\n          [-112.115266, 46.910915],\n          [-112.115368, 46.910602],\n          [-112.115446, 46.910438],\n          [-112.115662, 46.910084],\n          [-112.11604, 46.909673],\n          [-112.119395, 46.907257],\n          [-112.119896, 46.906695],\n          [-112.120633, 46.90538],\n          [-112.120979, 46.904986],\n          [-112.122506, 46.903673],\n          [-112.12294, 46.903177],\n          [-112.123172, 46.902727],\n          [-112.123344, 46.902186],\n          [-112.12337, 46.901665],\n          [-112.12326, 46.90114],\n          [-112.123004, 46.900542],\n          [-112.122296, 46.899463],\n          [-112.118791, 46.893932],\n          [-112.118077, 46.892887],\n          [-112.117488, 46.892253],\n          [-112.11672, 46.891638],\n          [-112.11608, 46.891253],\n          [-112.114112, 46.89021],\n          [-112.110716, 46.888379],\n          [-112.110338, 46.888159],\n          [-112.106096, 46.885885],\n          [-112.101398, 46.88336],\n          [-112.094609, 46.879651],\n          [-112.0931, 46.878959],\n          [-112.091311, 46.878288],\n          [-112.089958, 46.877867],\n          [-112.088521, 46.877511],\n          [-112.069016, 46.872724],\n          [-112.049279, 46.867857],\n          [-112.047103, 46.867189],\n          [-112.044993, 46.866382],\n          [-112.043719, 46.865827],\n          [-112.042541, 46.865241],\n          [-112.040586, 46.864168],\n          [-112.039263, 46.863298],\n          [-112.037988, 46.862365],\n          [-112.036738, 46.86133],\n          [-112.014076, 46.842104],\n          [-112.012788, 46.840941],\n          [-112.011749, 46.839918],\n          [-112.010445, 46.83844],\n          [-112.009025, 46.83667],\n          [-112.007922, 46.83499],\n          [-112.007123, 46.833605],\n          [-112.006361, 46.832073],\n          [-112.005882, 46.830963],\n          [-112.003109, 46.824179],\n          [-112.002795, 46.823308],\n          [-112.001559, 46.820272],\n          [-112.001405, 46.819943],\n          [-112.001005, 46.818846],\n          [-112.000667, 46.817632],\n          [-112.000578, 46.816809],\n          [-112.000493, 46.815794],\n          [-112.000516, 46.814928],\n          [-112.000693, 46.813761],\n          [-112.001162, 46.812127],\n          [-112.001628, 46.811112],\n          [-112.002462, 46.809713],\n          [-112.003317, 46.808598],\n          [-112.004049, 46.80782],\n          [-112.005118, 46.806834],\n          [-112.006592, 46.805739],\n          [-112.028016, 46.792156],\n          [-112.029741, 46.790912],\n          [-112.030745, 46.79008],\n          [-112.031484, 46.78938],\n          [-112.032257, 46.788498],\n          [-112.033266, 46.787176],\n          [-112.033873, 46.786179],\n          [-112.034356, 46.785153],\n          [-112.03474, 46.784222],\n          [-112.035041, 46.783106],\n          [-112.035281, 46.78179],\n          [-112.035332, 46.780429],\n          [-112.035162, 46.778932],\n          [-112.034994, 46.7781],\n          [-112.034623, 46.77676],\n          [-112.031439, 46.767593],\n          [-112.030872, 46.766116],\n          [-112.03058, 46.765566],\n          [-112.0298, 46.76452],\n          [-112.029051, 46.763776],\n          [-112.027625, 46.762715],\n          [-112.021142, 46.759474],\n          [-112.019784, 46.758674],\n          [-112.018427, 46.757701],\n          [-112.017026, 46.756401],\n          [-112.01646, 46.75581],\n          [-112.015787, 46.754949],\n          [-112.015034, 46.753726],\n          [-112.014675, 46.752957],\n          [-112.014369, 46.752178],\n          [-112.014113, 46.751252],\n          [-112.013978, 46.7503],\n          [-112.013965, 46.748917],\n          [-112.01407, 46.747974],\n          [-112.014425, 46.74657],\n          [-112.017111, 46.737855],\n          [-112.017375, 46.736784],\n          [-112.017607, 46.735355],\n          [-112.017673, 46.734409],\n          [-112.017685, 46.733581],\n          [-112.017588, 46.732104],\n          [-112.017413, 46.730961],\n          [-112.016851, 46.728893],\n          [-112.016052, 46.726997],\n          [-112.015229, 46.725474],\n          [-112.014031, 46.723297],\n          [-112.013406, 46.721963],\n          [-112.012932, 46.720654],\n          [-112.012536, 46.719097],\n          [-112.012339, 46.717599],\n          [-112.012283, 46.716345],\n          [-112.012185, 46.707222],\n          [-112.012075, 46.70024],\n          [-112.011602, 46.660701],\n          [-112.011601, 46.660313],\n          [-112.011436, 46.648193],\n          [-112.011441, 46.648028],\n          [-112.011427, 46.646569],\n          [-112.011246, 46.631754],\n          [-112.011146, 46.621062],\n          [-112.011132, 46.619553],\n          [-112.01109, 46.616805],\n          [-112.011059, 46.614798],\n          [-112.011048, 46.61406],\n          [-112.011037, 46.613709],\n          [-112.010993, 46.613319],\n          [-112.010941, 46.613077],\n          [-112.010877, 46.612674],\n          [-112.010838, 46.612474],\n          [-112.010746, 46.61207],\n          [-112.01064, 46.611666],\n          [-112.010587, 46.611464],\n          [-112.010508, 46.611263],\n          [-112.010314, 46.610728],\n          [-112.010256, 46.610545],\n          [-112.010198, 46.610369],\n          [-112.009915, 46.609824],\n          [-112.009739, 46.609444],\n          [-112.009564, 46.609128],\n          [-112.009295, 46.608718],\n          [-112.006524, 46.603944],\n          [-112.003906, 46.599455],\n          [-112.002681, 46.597363],\n          [-112.001205, 46.594784],\n          [-112, 46.592799],\n          [-111.999632, 46.592286],\n          [-111.999301, 46.591861],\n          [-111.998522, 46.590983],\n          [-111.99828, 46.590699],\n          [-111.997972, 46.590398],\n          [-111.996867, 46.589396],\n          [-111.996488, 46.589096],\n          [-111.995735, 46.58854],\n          [-111.988743, 46.583855],\n          [-111.983795, 46.580551],\n          [-111.98049, 46.578347],\n          [-111.978312, 46.576892],\n          [-111.976196, 46.575478],\n          [-111.970612, 46.571744],\n          [-111.969019, 46.570651],\n          [-111.966637, 46.569071],\n          [-111.957631, 46.563066],\n          [-111.956867, 46.562459],\n          [-111.956078, 46.56178],\n          [-111.955528, 46.561278],\n          [-111.95503, 46.560765],\n          [-111.954464, 46.560133],\n          [-111.953992, 46.559508],\n          [-111.953623, 46.558994],\n          [-111.953365, 46.558587],\n          [-111.953022, 46.558003],\n          [-111.95261, 46.557224],\n          [-111.951443, 46.55468],\n          [-111.946695, 46.544203],\n          [-111.946304, 46.54331],\n          [-111.945744, 46.542172],\n          [-111.945185, 46.540831],\n          [-111.944611, 46.539567],\n          [-111.943999, 46.538252],\n          [-111.943392, 46.536869],\n          [-111.941186, 46.532081],\n          [-111.940903, 46.53142],\n          [-111.940559, 46.530629],\n          [-111.940379, 46.530109],\n          [-111.940293, 46.529684],\n          [-111.940268, 46.529241],\n          [-111.940319, 46.528857],\n          [-111.940422, 46.528432],\n          [-111.940568, 46.528025],\n          [-111.94074, 46.527676],\n          [-111.940971, 46.527322],\n          [-111.941246, 46.527003],\n          [-111.941667, 46.526619],\n          [-111.943134, 46.525497],\n          [-111.943589, 46.525125],\n          [-111.94401, 46.524718],\n          [-111.944344, 46.524346],\n          [-111.944662, 46.523974],\n          [-111.944902, 46.523625],\n          [-111.945151, 46.52323],\n          [-111.9454, 46.522775],\n          [-111.945606, 46.522326],\n          [-111.945744, 46.521966],\n          [-111.945855, 46.521511],\n          [-111.947984, 46.511742],\n          [-111.948095, 46.51137],\n          [-111.948361, 46.510661],\n          [-111.949408, 46.508074],\n          [-111.952344, 46.500837],\n          [-111.952541, 46.500393],\n          [-111.952825, 46.499944],\n          [-111.953168, 46.49946],\n          [-111.953494, 46.499105],\n          [-111.953932, 46.498775],\n          [-111.954764, 46.49819],\n          [-111.958575, 46.495909],\n          [-111.959245, 46.495501],\n          [-111.960052, 46.495017],\n          [-111.961021, 46.494414],\n          [-111.961871, 46.493912],\n          [-111.962729, 46.493415],\n          [-111.963579, 46.492825],\n          [-111.964025, 46.4925],\n          [-111.964661, 46.492015],\n          [-111.965124, 46.491625],\n          [-111.965656, 46.491123],\n          [-111.966369, 46.49042],\n          [-111.96709, 46.489651],\n          [-111.976325, 46.479522],\n          [-111.976891, 46.478848],\n          [-111.977312, 46.47834],\n          [-111.977733, 46.477808],\n          [-111.977973, 46.477465],\n          [-111.978127, 46.477211],\n          [-111.978282, 46.476974],\n          [-111.97884, 46.475928],\n          [-111.979217, 46.475042],\n          [-111.980033, 46.473044],\n          [-111.980271, 46.472374],\n          [-111.980435, 46.471976],\n          [-111.980677, 46.471349],\n          [-111.980952, 46.470648],\n          [-111.981239, 46.4699],\n          [-111.981493, 46.46921],\n          [-111.981736, 46.468592],\n          [-111.981874, 46.468256],\n          [-111.982316, 46.467018],\n          [-111.982732, 46.465939],\n          [-111.982851, 46.465572],\n          [-111.983251, 46.464294],\n          [-111.983315, 46.464025],\n          [-111.983475, 46.463313],\n          [-111.983818, 46.462054],\n          [-111.98424, 46.460487],\n          [-111.985346, 46.456259],\n          [-111.985844, 46.45432],\n          [-111.986814, 46.450701],\n          [-111.986994, 46.449938],\n          [-111.987251, 46.449004],\n          [-111.987543, 46.4483],\n          [-111.987809, 46.447709],\n          [-111.988255, 46.446833],\n          [-111.990024, 46.443882],\n          [-111.990719, 46.44254],\n          [-111.99283, 46.438169],\n          [-111.995886, 46.431816],\n          [-111.996143, 46.431165],\n          [-111.996341, 46.430644],\n          [-111.996598, 46.42984],\n          [-111.996753, 46.429213],\n          [-111.99689, 46.428609],\n          [-111.997405, 46.425385],\n          [-111.997642, 46.424314],\n          [-111.997932, 46.423545],\n          [-111.998107, 46.423114],\n          [-111.99835, 46.422586],\n          [-111.998575, 46.422164],\n          [-111.998884, 46.421653],\n          [-111.999228, 46.421145],\n          [-111.999447, 46.420848],\n          [-111.999923, 46.420267],\n          [-112.000156, 46.42],\n          [-112.000433, 46.41971],\n          [-112.00089, 46.419258],\n          [-112.001482, 46.418746],\n          [-112.002113, 46.418226],\n          [-112.00272, 46.417745],\n          [-112.002961, 46.417554],\n          [-112.003548, 46.417078],\n          [-112.004211, 46.41654],\n          [-112.004746, 46.416099],\n          [-112.005461, 46.41553],\n          [-112.005985, 46.415112],\n          [-112.006394, 46.414775],\n          [-112.006854, 46.414405],\n          [-112.007245, 46.4141],\n          [-112.00765, 46.413758],\n          [-112.00797, 46.413501],\n          [-112.008169, 46.413338],\n          [-112.008593, 46.412997],\n          [-112.009014, 46.412645],\n          [-112.009385, 46.412341],\n          [-112.009697, 46.412025],\n          [-112.010255, 46.411528],\n          [-112.010946, 46.410853],\n          [-112.011431, 46.410352],\n          [-112.011895, 46.409867],\n          [-112.012165, 46.409569],\n          [-112.012675, 46.408992],\n          [-112.013067, 46.408517],\n          [-112.013404, 46.408107],\n          [-112.013911, 46.407447],\n          [-112.014218, 46.407046],\n          [-112.014492, 46.406653],\n          [-112.015033, 46.405845],\n          [-112.01524, 46.405542],\n          [-112.015368, 46.405329],\n          [-112.015741, 46.40471],\n          [-112.015972, 46.404308],\n          [-112.016318, 46.403688],\n          [-112.016624, 46.403056],\n          [-112.01703, 46.402204],\n          [-112.017522, 46.401159],\n          [-112.017917, 46.400311],\n          [-112.019197, 46.397512],\n          [-112.019961, 46.395938],\n          [-112.020503, 46.394858],\n          [-112.020846, 46.394173],\n          [-112.021172, 46.393579],\n          [-112.021321, 46.393351],\n          [-112.021496, 46.393063],\n          [-112.021714, 46.392713],\n          [-112.021925, 46.392391],\n          [-112.022307, 46.391799],\n          [-112.022576, 46.391431],\n          [-112.02269, 46.391255],\n          [-112.022776, 46.391138],\n          [-112.023072, 46.390745],\n          [-112.023396, 46.390333],\n          [-112.023636, 46.390016],\n          [-112.02407, 46.389472],\n          [-112.02447, 46.388962],\n          [-112.025293, 46.387893],\n          [-112.025518, 46.387587],\n          [-112.025835, 46.387153],\n          [-112.02604, 46.386874],\n          [-112.026296, 46.386489],\n          [-112.026502, 46.386192],\n          [-112.026698, 46.385898],\n          [-112.027204, 46.385069],\n          [-112.027659, 46.384252],\n          [-112.027743, 46.384088],\n          [-112.0278, 46.383963],\n          [-112.02782, 46.383925],\n          [-112.027998, 46.383561],\n          [-112.028106, 46.383379],\n          [-112.028359, 46.382926],\n          [-112.028737, 46.382022],\n          [-112.029617, 46.379591],\n          [-112.030115, 46.378271],\n          [-112.030424, 46.377365],\n          [-112.030767, 46.376572],\n          [-112.031059, 46.375944],\n          [-112.033059, 46.372077],\n          [-112.033626, 46.37091],\n          [-112.033917, 46.370342],\n          [-112.034252, 46.369714],\n          [-112.034492, 46.369293],\n          [-112.03481, 46.368766],\n          [-112.035136, 46.368298],\n          [-112.035445, 46.367848],\n          [-112.03584, 46.367386],\n          [-112.036295, 46.366877],\n          [-112.036879, 46.366249],\n          [-112.043015, 46.359532],\n          [-112.043436, 46.359053],\n          [-112.043754, 46.358638],\n          [-112.044011, 46.358283],\n          [-112.044234, 46.357927],\n          [-112.044475, 46.357501],\n          [-112.044698, 46.357062],\n          [-112.044852, 46.356719],\n          [-112.044972, 46.356357],\n          [-112.045093, 46.355972],\n          [-112.045204, 46.355534],\n          [-112.045281, 46.355173],\n          [-112.04535, 46.354693],\n          [-112.045384, 46.354284],\n          [-112.045376, 46.353828],\n          [-112.045359, 46.353206],\n          [-112.045058, 46.350658],\n          [-112.045032, 46.350072],\n          [-112.045075, 46.349545],\n          [-112.045178, 46.349154],\n          [-112.045317, 46.348787],\n          [-112.045481, 46.348449],\n          [-112.045687, 46.348135],\n          [-112.04591, 46.347851],\n          [-112.046202, 46.347519],\n          [-112.048562, 46.345392],\n          [-112.048862, 46.34509],\n          [-112.049146, 46.34477],\n          [-112.04936, 46.344467],\n          [-112.04954, 46.344153],\n          [-112.049738, 46.343721],\n          [-112.049849, 46.343241],\n          [-112.049884, 46.343028],\n          [-112.049892, 46.342755],\n          [-112.049884, 46.3424],\n          [-112.049806, 46.341931],\n          [-112.049396, 46.34035],\n          [-112.049218, 46.339673],\n          [-112.049159, 46.33933],\n          [-112.049143, 46.339002],\n          [-112.049168, 46.338597],\n          [-112.049229, 46.338284],\n          [-112.049292, 46.338051],\n          [-112.049341, 46.337839],\n          [-112.049439, 46.337616],\n          [-112.049559, 46.337404],\n          [-112.0497, 46.337162],\n          [-112.049936, 46.33687],\n          [-112.05015, 46.336595],\n          [-112.054836, 46.331763],\n          [-112.055497, 46.33117],\n          [-112.055875, 46.33085],\n          [-112.056372, 46.33053],\n          [-112.05687, 46.330263],\n          [-112.057445, 46.330044],\n          [-112.058132, 46.329789],\n          [-112.060261, 46.329273],\n          [-112.060879, 46.329137],\n          [-112.061445, 46.328959],\n          [-112.061994, 46.328752],\n          [-112.062561, 46.32845],\n          [-112.06317, 46.3281],\n          [-112.063625, 46.327786],\n          [-112.064054, 46.327371],\n          [-112.064466, 46.326891],\n          [-112.06523, 46.325741],\n          [-112.065677, 46.325125],\n          [-112.066028, 46.324674],\n          [-112.06638, 46.324318],\n          [-112.066904, 46.323868],\n          [-112.067505, 46.323501],\n          [-112.06826, 46.323109],\n          [-112.069642, 46.322445],\n          [-112.070509, 46.322007],\n          [-112.071195, 46.321663],\n          [-112.071728, 46.321378],\n          [-112.07238, 46.320958],\n          [-112.073067, 46.320519],\n          [-112.073762, 46.320045],\n          [-112.074277, 46.319582],\n          [-112.074732, 46.319138],\n          [-112.075169, 46.318705],\n          [-112.075599, 46.318189],\n          [-112.076053, 46.317626],\n          [-112.076371, 46.317182],\n          [-112.076732, 46.316589],\n          [-112.077058, 46.315949],\n          [-112.077616, 46.31452],\n          [-112.077985, 46.313459],\n          [-112.078268, 46.312795],\n          [-112.078491, 46.31232],\n          [-112.0788, 46.311751],\n          [-112.079212, 46.31117],\n          [-112.079718, 46.310435],\n          [-112.0808, 46.308627],\n          [-112.081126, 46.30801],\n          [-112.081375, 46.307316],\n          [-112.081512, 46.306724],\n          [-112.081607, 46.306131],\n          [-112.081735, 46.304998],\n          [-112.081856, 46.304358],\n          [-112.082079, 46.303688],\n          [-112.082319, 46.303172],\n          [-112.082594, 46.302692],\n          [-112.082946, 46.302205],\n          [-112.083306, 46.301814],\n          [-112.083804, 46.301334],\n          [-112.08447, 46.300831],\n          [-112.085263, 46.300355],\n          [-112.086027, 46.299964],\n          [-112.089752, 46.298446],\n          [-112.090979, 46.297859],\n          [-112.091958, 46.297337],\n          [-112.092799, 46.296756],\n          [-112.093486, 46.296287],\n          [-112.094104, 46.295694],\n          [-112.09473, 46.295036],\n          [-112.095159, 46.294538],\n          [-112.09558, 46.293992],\n          [-112.09594, 46.293381],\n          [-112.096445, 46.292397],\n          [-112.096685, 46.291614],\n          [-112.09702, 46.290422],\n          [-112.097449, 46.288406],\n          [-112.097724, 46.287409],\n          [-112.098136, 46.286312],\n          [-112.099116, 46.284397],\n          [-112.099274, 46.284063],\n          [-112.10053, 46.281349],\n          [-112.101118, 46.280084],\n          [-112.102891, 46.276318],\n          [-112.104027, 46.273935],\n          [-112.104859, 46.272141],\n          [-112.105342, 46.271125],\n          [-112.106274, 46.269146],\n          [-112.107087, 46.267404],\n          [-112.111234, 46.258546],\n          [-112.112659, 46.255466],\n          [-112.114521, 46.251525],\n          [-112.114976, 46.250676],\n          [-112.115508, 46.249899],\n          [-112.115937, 46.249329],\n          [-112.116633, 46.248581],\n          [-112.117748, 46.247554],\n          [-112.11925, 46.246504],\n          [-112.12022, 46.245934],\n          [-112.120967, 46.245566],\n          [-112.121954, 46.245133],\n          [-112.124992, 46.244052],\n          [-112.13288, 46.241298],\n          [-112.133387, 46.24112],\n          [-112.138622, 46.239291],\n          [-112.145034, 46.237065],\n          [-112.146141, 46.236745],\n          [-112.147008, 46.236519],\n          [-112.147806, 46.236394],\n          [-112.148459, 46.236305],\n          [-112.149265, 46.236246],\n          [-112.150089, 46.236222],\n          [-112.151042, 46.236246],\n          [-112.151883, 46.236317],\n          [-112.152699, 46.236436],\n          [-112.153471, 46.236584],\n          [-112.154474, 46.236837],\n          [-112.15899, 46.238152],\n          [-112.160595, 46.238543],\n          [-112.162483, 46.238947],\n          [-112.163367, 46.23922],\n          [-112.164054, 46.239529],\n          [-112.164698, 46.239897],\n          [-112.165273, 46.24033],\n          [-112.166844, 46.241642],\n          [-112.167307, 46.241963],\n          [-112.1685, 46.242669],\n          [-112.169144, 46.243085],\n          [-112.169659, 46.24356],\n          [-112.170912, 46.244966],\n          [-112.171367, 46.245364],\n          [-112.172131, 46.245898],\n          [-112.173204, 46.246522],\n          [-112.174276, 46.247169],\n          [-112.174817, 46.24762],\n          [-112.175298, 46.24816],\n          [-112.175555, 46.248587],\n          [-112.17577, 46.248973],\n          [-112.175924, 46.249424],\n          [-112.176336, 46.250552],\n          [-112.176517, 46.25092],\n          [-112.17674, 46.251276],\n          [-112.176997, 46.251626],\n          [-112.177418, 46.252083],\n          [-112.177787, 46.252344],\n          [-112.178165, 46.252617],\n          [-112.180775, 46.254129],\n          [-112.181007, 46.254269],\n          [-112.183097, 46.255454],\n          [-112.183493, 46.255702],\n          [-112.184164, 46.256171],\n          [-112.184905, 46.256737],\n          [-112.185365, 46.257141],\n          [-112.185885, 46.257562],\n          [-112.186185, 46.2578],\n          [-112.186531, 46.258043],\n          [-112.186972, 46.258275],\n          [-112.187322, 46.258422],\n          [-112.187774, 46.258598],\n          [-112.188155, 46.258726],\n          [-112.188842, 46.25893],\n          [-112.190061, 46.259233],\n          [-112.194417, 46.260296],\n          [-112.194914, 46.260425],\n          [-112.197467, 46.261049],\n          [-112.198131, 46.261215],\n          [-112.198816, 46.261348],\n          [-112.200563, 46.261639],\n          [-112.2012, 46.261735],\n          [-112.201697, 46.261796],\n          [-112.202216, 46.261831],\n          [-112.202661, 46.261847],\n          [-112.203293, 46.261844],\n          [-112.203843, 46.26181],\n          [-112.204643, 46.261713],\n          [-112.205502, 46.261541],\n          [-112.206283, 46.261328],\n          [-112.207158, 46.260978],\n          [-112.20773, 46.260725],\n          [-112.208199, 46.260464],\n          [-112.209872, 46.259361],\n          [-112.210845, 46.258723],\n          [-112.211437, 46.258407],\n          [-112.21171, 46.258294],\n          [-112.211974, 46.258207],\n          [-112.212216, 46.258142],\n          [-112.212463, 46.258092],\n          [-112.212751, 46.258048],\n          [-112.213051, 46.258024],\n          [-112.213334, 46.258019],\n          [-112.213692, 46.258035],\n          [-112.213988, 46.258065],\n          [-112.214247, 46.258108],\n          [-112.214549, 46.258186],\n          [-112.21472, 46.258241],\n          [-112.214928, 46.258313],\n          [-112.21526, 46.258456],\n          [-112.215539, 46.258605],\n          [-112.215859, 46.258826],\n          [-112.216123, 46.259059],\n          [-112.216344, 46.259307],\n          [-112.216538, 46.259564],\n          [-112.217304, 46.260578],\n          [-112.217586, 46.260888],\n          [-112.217887, 46.26118],\n          [-112.218436, 46.261654],\n          [-112.219097, 46.262058],\n          [-112.219818, 46.262508],\n          [-112.220179, 46.262823],\n          [-112.220462, 46.263203],\n          [-112.220625, 46.263654],\n          [-112.220625, 46.264105],\n          [-112.220513, 46.26455],\n          [-112.220273, 46.264918],\n          [-112.21993, 46.265238],\n          [-112.219466, 46.265558],\n          [-112.218514, 46.266039],\n          [-112.218288, 46.266167],\n          [-112.218079, 46.266291],\n          [-112.217885, 46.266411],\n          [-112.217737, 46.266539],\n          [-112.217605, 46.266696],\n          [-112.217501, 46.266818],\n          [-112.217396, 46.266989],\n          [-112.21734, 46.267123],\n          [-112.217303, 46.267314],\n          [-112.217283, 46.267445],\n          [-112.217325, 46.267714],\n          [-112.217476, 46.26824],\n          [-112.217544, 46.268438],\n          [-112.217592, 46.268538],\n          [-112.217628, 46.268615],\n          [-112.217724, 46.268751],\n          [-112.217818, 46.268858],\n          [-112.217936, 46.268959],\n          [-112.21813, 46.269104],\n          [-112.218353, 46.26922],\n          [-112.218727, 46.26937],\n          [-112.219166, 46.269489],\n          [-112.219721, 46.269609],\n          [-112.220202, 46.269698],\n          [-112.220646, 46.269797],\n          [-112.220996, 46.2699],\n          [-112.22144, 46.27005],\n          [-112.222711, 46.270631],\n          [-112.223277, 46.270851],\n          [-112.22399, 46.271017],\n          [-112.224668, 46.271076],\n          [-112.225371, 46.270993],\n          [-112.227174, 46.270608],\n          [-112.227989, 46.270507],\n          [-112.22883, 46.270519],\n          [-112.229611, 46.270726],\n          [-112.232341, 46.271693],\n          [-112.232993, 46.27186],\n          [-112.233723, 46.271966],\n          [-112.234744, 46.271978],\n          [-112.239606, 46.271805],\n          [-112.242182, 46.271693],\n          [-112.246347, 46.271502],\n          [-112.246967, 46.271459],\n          [-112.247491, 46.271415],\n          [-112.247911, 46.271379],\n          [-112.248545, 46.271312],\n          [-112.249143, 46.271217],\n          [-112.250763, 46.270938],\n          [-112.251919, 46.270715],\n          [-112.254271, 46.270264],\n          [-112.255138, 46.270086],\n          [-112.255979, 46.269973],\n          [-112.256923, 46.269854],\n          [-112.257798, 46.269753],\n          [-112.258871, 46.269706],\n          [-112.259953, 46.269694],\n          [-112.260408, 46.269688],\n          [-112.260811, 46.269688],\n          [-112.265927, 46.269838],\n          [-112.266364, 46.269845],\n          [-112.268516, 46.269903],\n          [-112.26928, 46.269923],\n          [-112.269822, 46.269932],\n          [-112.270297, 46.269936],\n          [-112.270632, 46.269932],\n          [-112.271986, 46.269899],\n          [-112.272496, 46.269882],\n          [-112.272871, 46.269875],\n          [-112.273201, 46.26988],\n          [-112.273496, 46.269893],\n          [-112.273848, 46.269921],\n          [-112.274451, 46.269986],\n          [-112.275304, 46.270084],\n          [-112.275736, 46.270129],\n          [-112.276214, 46.270171],\n          [-112.276581, 46.270192],\n          [-112.276954, 46.270201],\n          [-112.277383, 46.270195],\n          [-112.277783, 46.270179],\n          [-112.278217, 46.270151],\n          [-112.278636, 46.270112],\n          [-112.27903, 46.270058],\n          [-112.279521, 46.269977],\n          [-112.280084, 46.269869],\n          [-112.280575, 46.269771],\n          [-112.281036, 46.269673],\n          [-112.281492, 46.269558],\n          [-112.281919, 46.269443],\n          [-112.282407, 46.269304],\n          [-112.28289, 46.269153],\n          [-112.283292, 46.269013],\n          [-112.283616, 46.26889],\n          [-112.283914, 46.268764],\n          [-112.284169, 46.268638],\n          [-112.284394, 46.268516],\n          [-112.284601, 46.268394],\n          [-112.284775, 46.268275],\n          [-112.284955, 46.268131],\n          [-112.285087, 46.268013],\n          [-112.285191, 46.267897],\n          [-112.285277, 46.267793],\n          [-112.285357, 46.267683],\n          [-112.28543, 46.267542],\n          [-112.285505, 46.267379],\n          [-112.285561, 46.267208],\n          [-112.285596, 46.267049],\n          [-112.28561, 46.266897],\n          [-112.285612, 46.266763],\n          [-112.285599, 46.266613],\n          [-112.285569, 46.266448],\n          [-112.285505, 46.266261],\n          [-112.28543, 46.266096],\n          [-112.285194, 46.265664],\n          [-112.285025, 46.265406],\n          [-112.284866, 46.265152],\n          [-112.284775, 46.264974],\n          [-112.284703, 46.264813],\n          [-112.284646, 46.264655],\n          [-112.284614, 46.264507],\n          [-112.284598, 46.264379],\n          [-112.284598, 46.26421],\n          [-112.284617, 46.264062],\n          [-112.284665, 46.263899],\n          [-112.284727, 46.263728],\n          [-112.284759, 46.263669],\n          [-112.284821, 46.263548],\n          [-112.284909, 46.263418],\n          [-112.284995, 46.263313],\n          [-112.285121, 46.263177],\n          [-112.285277, 46.263038],\n          [-112.285408, 46.262932],\n          [-112.285591, 46.262814],\n          [-112.285765, 46.262716],\n          [-112.285998, 46.262614],\n          [-112.286237, 46.262523],\n          [-112.286454, 46.262454],\n          [-112.286722, 46.262397],\n          [-112.286953, 46.262358],\n          [-112.287205, 46.262334],\n          [-112.287431, 46.262324],\n          [-112.287599, 46.262324],\n          [-112.287755, 46.262332],\n          [-112.287908, 46.262343],\n          [-112.28809, 46.262371],\n          [-112.288289, 46.262408],\n          [-112.288533, 46.262469],\n          [-112.28878, 46.262545],\n          [-112.289056, 46.262641],\n          [-112.28941, 46.262779],\n          [-112.292288, 46.263915],\n          [-112.295423, 46.265141],\n          [-112.295772, 46.265276],\n          [-112.296799, 46.265681],\n          [-112.297288, 46.265857],\n          [-112.29766, 46.26597],\n          [-112.297998, 46.266064],\n          [-112.298326, 46.266135],\n          [-112.298693, 46.266202],\n          [-112.29902, 46.266252],\n          [-112.299407, 46.266294],\n          [-112.299973, 46.26635],\n          [-112.301962, 46.266518],\n          [-112.303677, 46.266665],\n          [-112.30416, 46.266715],\n          [-112.304799, 46.266799],\n          [-112.305829, 46.266965],\n          [-112.307302, 46.26725],\n          [-112.307798, 46.267339],\n          [-112.308222, 46.267413],\n          [-112.308627, 46.267476],\n          [-112.308997, 46.267518],\n          [-112.309343, 46.267554],\n          [-112.309617, 46.267578],\n          [-112.309941, 46.267591],\n          [-112.310258, 46.267602],\n          [-112.310641, 46.267611],\n          [-112.310985, 46.267613],\n          [-112.311296, 46.267607],\n          [-112.311658, 46.267591],\n          [-112.312055, 46.267565],\n          [-112.312425, 46.267535],\n          [-112.312795, 46.267492],\n          [-112.313219, 46.267435],\n          [-112.313683, 46.267359],\n          [-112.31408, 46.267281],\n          [-112.314484, 46.267191],\n          [-112.314867, 46.26709],\n          [-112.315256, 46.26698],\n          [-112.315717, 46.266837],\n          [-112.316613, 46.266561],\n          [-112.317018, 46.266437],\n          [-112.317471, 46.266313],\n          [-112.317997, 46.266179],\n          [-112.318925, 46.265949],\n          [-112.320151, 46.265632],\n          [-112.321393, 46.265313],\n          [-112.325427, 46.26428],\n          [-112.326138, 46.264095],\n          [-112.326859, 46.263917],\n          [-112.327936, 46.263635],\n          [-112.330428, 46.263002],\n          [-112.333211, 46.262287],\n          [-112.334007, 46.262079],\n          [-112.335292, 46.261753],\n          [-112.335686, 46.261652],\n          [-112.336028, 46.261559],\n          [-112.33637, 46.261454],\n          [-112.33667, 46.261355],\n          [-112.336988, 46.261243],\n          [-112.337325, 46.261115],\n          [-112.33768, 46.260971],\n          [-112.338038, 46.260813],\n          [-112.338363, 46.260662],\n          [-112.338625, 46.26053],\n          [-112.338933, 46.260366],\n          [-112.340256, 46.259429],\n          [-112.341003, 46.258829],\n          [-112.341337, 46.25845],\n          [-112.341646, 46.258088],\n          [-112.342041, 46.257506],\n          [-112.342264, 46.257085],\n          [-112.342513, 46.256616],\n          [-112.342736, 46.256052],\n          [-112.343048, 46.25519],\n          [-112.343088, 46.254628],\n          [-112.343114, 46.25404],\n          [-112.342997, 46.253333],\n          [-112.342814, 46.252527],\n          [-112.342556, 46.25188],\n          [-112.341586, 46.249939],\n          [-112.341209, 46.248971],\n          [-112.340942, 46.248152],\n          [-112.340797, 46.247393],\n          [-112.340711, 46.246752],\n          [-112.340698, 46.245956],\n          [-112.340797, 46.24509],\n          [-112.340934, 46.2443],\n          [-112.341088, 46.243617],\n          [-112.341363, 46.242745],\n          [-112.343732, 46.236132],\n          [-112.343955, 46.235443],\n          [-112.344213, 46.23479],\n          [-112.34459, 46.234178],\n          [-112.345088, 46.233513],\n          [-112.346384, 46.231827],\n          [-112.346848, 46.231067],\n          [-112.347062, 46.230402],\n          [-112.347208, 46.229666],\n          [-112.34738, 46.228247],\n          [-112.347457, 46.227659],\n          [-112.347706, 46.22662],\n          [-112.348072, 46.225486],\n          [-112.348787, 46.223592],\n          [-112.349165, 46.22241],\n          [-112.349268, 46.221798],\n          [-112.349251, 46.221163],\n          [-112.348908, 46.218621],\n          [-112.348822, 46.218081],\n          [-112.348822, 46.217392],\n          [-112.348959, 46.216762],\n          [-112.34944, 46.215301],\n          [-112.349521, 46.214586],\n          [-112.349491, 46.214013],\n          [-112.349328, 46.213591],\n          [-112.349028, 46.213021],\n          [-112.348633, 46.212492],\n          [-112.348169, 46.211999],\n          [-112.34762, 46.211619],\n          [-112.346856, 46.211156],\n          [-112.345869, 46.21058],\n          [-112.3452, 46.210051],\n          [-112.344728, 46.209576],\n          [-112.343234, 46.207925],\n          [-112.342659, 46.207307],\n          [-112.341921, 46.206677],\n          [-112.340814, 46.205816],\n          [-112.34041, 46.205465],\n          [-112.340067, 46.205085],\n          [-112.339802, 46.204693],\n          [-112.339704, 46.204467],\n          [-112.339636, 46.204269],\n          [-112.339591, 46.204027],\n          [-112.339612, 46.20382],\n          [-112.339732, 46.203256],\n          [-112.340033, 46.20262],\n          [-112.340582, 46.201913],\n          [-112.341621, 46.200885],\n          [-112.342062, 46.200298],\n          [-112.342242, 46.199944],\n          [-112.342396, 46.199584],\n          [-112.342597, 46.199091],\n          [-112.342775, 46.198631],\n          [-112.343062, 46.198034],\n          [-112.343303, 46.197541],\n          [-112.343792, 46.196904],\n          [-112.344693, 46.196127],\n          [-112.345387, 46.19542],\n          [-112.345729, 46.194938],\n          [-112.345917, 46.194643],\n          [-112.346069, 46.194349],\n          [-112.346166, 46.194045],\n          [-112.346238, 46.193697],\n          [-112.34623, 46.193103],\n          [-112.345941, 46.190673],\n          [-112.345878, 46.189902],\n          [-112.345728, 46.189213],\n          [-112.345709, 46.188344],\n          [-112.345571, 46.187533],\n          [-112.345558, 46.186912],\n          [-112.345564, 46.185992],\n          [-112.345749, 46.183453],\n          [-112.346234, 46.177623],\n          [-112.346347, 46.176821],\n          [-112.346473, 46.176275],\n          [-112.34671, 46.175728],\n          [-112.347062, 46.17511],\n          [-112.347483, 46.174486],\n          [-112.34822, 46.173702],\n          [-112.349208, 46.17291],\n          [-112.3521, 46.171121],\n          [-112.352701, 46.170843],\n          [-112.353354, 46.170627],\n          [-112.354238, 46.170443],\n          [-112.355396, 46.170378],\n          [-112.356246, 46.170461],\n          [-112.358186, 46.170764],\n          [-112.359293, 46.170788],\n          [-112.360246, 46.170669],\n          [-112.361216, 46.170425],\n          [-112.362177, 46.170093],\n          [-112.362941, 46.16973],\n          [-112.363559, 46.169296],\n          [-112.364125, 46.168743],\n          [-112.364529, 46.168119],\n          [-112.365267, 46.167103],\n          [-112.365816, 46.166663],\n          [-112.3664, 46.166336],\n          [-112.367129, 46.166098],\n          [-112.367868, 46.165967],\n          [-112.368692, 46.165944],\n          [-112.371773, 46.166039],\n          [-112.372811, 46.166015],\n          [-112.37367, 46.165902],\n          [-112.374588, 46.165706],\n          [-112.375592, 46.165379],\n          [-112.376571, 46.164951],\n          [-112.377318, 46.164529],\n          [-112.378076, 46.163952],\n          [-112.378262, 46.163762],\n          [-112.378614, 46.163364],\n          [-112.378914, 46.162965],\n          [-112.379469, 46.162169],\n          [-112.382055, 46.158245],\n          [-112.384021, 46.155308],\n          [-112.385566, 46.152959],\n          [-112.387334, 46.150272],\n          [-112.388458, 46.14862],\n          [-112.389451, 46.147108],\n          [-112.391789, 46.143594],\n          [-112.398669, 46.133222],\n          [-112.400972, 46.129712],\n          [-112.4066, 46.121302],\n          [-112.407393, 46.120004],\n          [-112.408182, 46.118582],\n          [-112.408541, 46.117899],\n          [-112.409937, 46.114817],\n          [-112.411055, 46.112333],\n          [-112.412388, 46.109365],\n          [-112.413655, 46.106653],\n          [-112.414778, 46.10418],\n          [-112.415206, 46.103314],\n          [-112.415668, 46.102487],\n          [-112.415895, 46.102106],\n          [-112.416464, 46.101176],\n          [-112.417083, 46.100254],\n          [-112.418499, 46.098356],\n          [-112.418915, 46.09769],\n          [-112.419526, 46.096677],\n          [-112.420233, 46.095398],\n          [-112.422479, 46.091058],\n          [-112.424336, 46.087469],\n          [-112.429652, 46.0772],\n          [-112.429822, 46.076884],\n          [-112.431392, 46.07384],\n          [-112.436257, 46.064391],\n          [-112.436937, 46.063074],\n          [-112.438079, 46.061044],\n          [-112.438376, 46.060532],\n          [-112.438666, 46.060066],\n          [-112.43881, 46.05984],\n          [-112.439098, 46.05943],\n          [-112.43934, 46.059064],\n          [-112.439532, 46.058774],\n          [-112.440107, 46.058002],\n          [-112.44038, 46.05765],\n          [-112.441731, 46.056019],\n          [-112.443485, 46.053949],\n          [-112.447802, 46.048851],\n          [-112.45155, 46.044489],\n          [-112.452423, 46.043435],\n          [-112.452928, 46.042858],\n          [-112.453336, 46.042363],\n          [-112.453672, 46.041989],\n          [-112.454055, 46.041551],\n          [-112.454342, 46.04125],\n          [-112.454665, 46.040886],\n          [-112.456067, 46.039558],\n          [-112.457335, 46.038587],\n          [-112.457987, 46.038059],\n          [-112.458512, 46.037625],\n          [-112.458842, 46.037329],\n          [-112.459071, 46.03709],\n          [-112.459314, 46.036842],\n          [-112.459518, 46.03659],\n          [-112.459678, 46.03639],\n          [-112.4598, 46.036215],\n          [-112.459891, 46.036045],\n          [-112.460007, 46.03582],\n          [-112.460114, 46.03551],\n          [-112.460172, 46.035281],\n          [-112.460249, 46.034999],\n          [-112.460282, 46.034713],\n          [-112.460289, 46.034622],\n          [-112.460306, 46.034393],\n          [-112.46034, 46.034001],\n          [-112.460377, 46.033494],\n          [-112.460788, 46.024225],\n          [-112.460858, 46.022999],\n          [-112.461034, 46.021707],\n          [-112.461139, 46.019417],\n          [-112.461174, 46.018182],\n          [-112.461374, 46.013939],\n          [-112.461433, 46.012326],\n          [-112.461598, 46.009767],\n          [-112.46173, 46.007706],\n          [-112.461826, 46.006592],\n          [-112.461968, 46.00602],\n          [-112.462225, 46.00538],\n          [-112.462565, 46.004722],\n          [-112.463191, 46.004036],\n          [-112.464072, 46.003225],\n          [-112.465792, 46.001872],\n          [-112.466856, 46.001037],\n          [-112.469268, 45.999189],\n          [-112.469946, 45.998682],\n          [-112.470667, 45.998003],\n          [-112.47113, 45.997502],\n          [-112.47156, 45.996917],\n          [-112.471963, 45.99622],\n          [-112.473459, 45.993424],\n          [-112.474051, 45.992464],\n          [-112.474317, 45.992004],\n          [-112.475276, 45.990233],\n          [-112.475566, 45.989642],\n          [-112.476695, 45.987673],\n          [-112.477014, 45.987068],\n          [-112.477395, 45.986399],\n          [-112.477976, 45.985327],\n          [-112.478243, 45.984818],\n          [-112.478421, 45.98455],\n          [-112.478851, 45.983744],\n          [-112.479177, 45.983218],\n          [-112.479374, 45.982981],\n          [-112.479538, 45.982795],\n          [-112.47971, 45.982636],\n          [-112.479894, 45.982492],\n          [-112.480132, 45.982326],\n          [-112.48042, 45.982142],\n          [-112.480713, 45.981993],\n          [-112.481018, 45.981862],\n          [-112.481235, 45.981784],\n          [-112.481491, 45.981708],\n          [-112.481819, 45.981612],\n          [-112.482235, 45.981526],\n          [-112.482576, 45.981485],\n          [-112.482792, 45.981468],\n          [-112.483106, 45.981448],\n          [-112.484674, 45.981411],\n          [-112.485533, 45.981393],\n          [-112.486142, 45.981346],\n          [-112.486888, 45.981343],\n          [-112.488415, 45.981329],\n          [-112.48942, 45.981323],\n          [-112.489915, 45.981311],\n          [-112.490321, 45.981291],\n          [-112.491262, 45.981187],\n          [-112.492077, 45.981092],\n          [-112.492755, 45.980966],\n          [-112.49327, 45.980829],\n          [-112.494197, 45.980567],\n          [-112.495345, 45.9802],\n          [-112.496229, 45.979974],\n          [-112.496927, 45.979831],\n          [-112.497708, 45.979756],\n          [-112.4986, 45.979744],\n          [-112.499484, 45.979774],\n          [-112.500257, 45.979863],\n          [-112.501047, 45.980042],\n          [-112.501432, 45.980146],\n          [-112.501772, 45.980251],\n          [-112.502162, 45.980391],\n          [-112.502441, 45.980505],\n          [-112.502715, 45.980622],\n          [-112.503036, 45.980793],\n          [-112.503323, 45.980946],\n          [-112.503646, 45.981153],\n          [-112.503934, 45.981351],\n          [-112.504203, 45.981566],\n          [-112.504427, 45.981757],\n          [-112.504926, 45.982217],\n          [-112.505529, 45.982793],\n          [-112.505933, 45.983132],\n          [-112.506153, 45.983296],\n          [-112.506336, 45.983431],\n          [-112.506571, 45.983586],\n          [-112.506888, 45.983789],\n          [-112.507196, 45.983956],\n          [-112.507471, 45.984097],\n          [-112.507799, 45.984272],\n          [-112.508512, 45.98456],\n          [-112.508794, 45.984651],\n          [-112.50906, 45.984738],\n          [-112.509415, 45.984842],\n          [-112.509964, 45.984998],\n          [-112.512836, 45.985714],\n          [-112.514063, 45.986044],\n          [-112.515749, 45.986501],\n          [-112.516874, 45.986847],\n          [-112.529602, 45.991803],\n          [-112.530598, 45.992131],\n          [-112.531516, 45.992333],\n          [-112.5324, 45.992476],\n          [-112.533044, 45.992536],\n          [-112.533894, 45.992542],\n          [-112.538675, 45.992548],\n          [-112.539481, 45.992542],\n          [-112.544571, 45.992548],\n          [-112.54755, 45.9925],\n          [-112.549472, 45.992518],\n          [-112.552176, 45.992548],\n          [-112.553189, 45.992614],\n          [-112.554167, 45.992739],\n          [-112.555008, 45.992942],\n          [-112.559798, 45.994337],\n          [-112.560613, 45.994587],\n          [-112.561471, 45.994951],\n          [-112.562235, 45.995404],\n          [-112.562816, 45.995834],\n          [-112.563071, 45.996064],\n          [-112.563323, 45.996326],\n          [-112.563586, 45.996638],\n          [-112.563846, 45.996975],\n          [-112.564136, 45.997384],\n          [-112.564414, 45.997764],\n          [-112.565162, 45.998934],\n          [-112.565743, 45.999683],\n          [-112.566655, 46.000955],\n          [-112.567437, 46.001903],\n          [-112.56802, 46.002517],\n          [-112.568741, 46.003096],\n          [-112.569419, 46.003525],\n          [-112.570063, 46.003859],\n          [-112.570964, 46.004318],\n          [-112.571822, 46.004693],\n          [-112.572895, 46.005009],\n          [-112.573848, 46.00523],\n          [-112.574775, 46.005379],\n          [-112.575728, 46.005463],\n          [-112.577187, 46.005504],\n          [-112.577788, 46.005522],\n          [-112.582056, 46.005676],\n          [-112.594885, 46.006166],\n          [-112.604584, 46.006524],\n          [-112.605451, 46.006619],\n          [-112.607283, 46.006843],\n          [-112.610896, 46.007381],\n          [-112.611152, 46.005948],\n          [-112.61121, 46.005792],\n          [-112.611238, 46.005609],\n          [-112.608284, 46.004266],\n          [-112.607739, 46.003921],\n          [-112.607191, 46.003516],\n          [-112.606953, 46.003377],\n          [-112.606693, 46.003274],\n          [-112.606342, 46.003193],\n          [-112.606239, 46.00317],\n          [-112.604638, 46.002827],\n          [-112.603223, 46.002511],\n          [-112.603052, 46.002473],\n          [-112.60203, 46.002278],\n          [-112.601516, 46.002219],\n          [-112.601276, 46.00221],\n          [-112.600883, 46.002212],\n          [-112.600496, 46.00223],\n          [-112.600404, 46.002208],\n          [-112.60036, 46.002173],\n          [-112.600327, 46.002117],\n          [-112.600314, 46.002059],\n          [-112.600333, 46.001927],\n          [-112.600381, 46.001853],\n          [-112.60049, 46.001777],\n          [-112.600599, 46.001745],\n          [-112.600713, 46.001737],\n          [-112.600862, 46.001739],\n          [-112.601544, 46.001798],\n          [-112.601657, 46.001792],\n          [-112.601804, 46.001767],\n          [-112.601918, 46.001724],\n          [-112.602008, 46.001673],\n          [-112.602239, 46.001528],\n          [-112.602389, 46.001412],\n          [-112.602658, 46.001185],\n          [-112.60307, 46.000822],\n          [-112.603218, 46.000656],\n          [-112.603405, 46.000474],\n          [-112.60366, 46.000513],\n          [-112.603842, 46.000532],\n          [-112.604078, 46.000549],\n          [-112.604254, 46.000547],\n          [-112.605018, 46.00043],\n          [-112.605491, 46.000395],\n          [-112.605766, 46.000402],\n          [-112.606076, 46.000466],\n          [-112.606209, 46.00049],\n          [-112.606364, 46.000494],\n          [-112.606548, 46.000466],\n          [-112.607005, 46.000359],\n          [-112.607412, 46.000312],\n          [-112.611416, 46.000299],\n          [-112.611653, 46.000242],\n          [-112.611812, 46.000145],\n          [-112.611932, 45.999965],\n          [-112.611906, 45.993731],\n          [-112.611956, 45.990322],\n          [-112.611963, 45.987384],\n          [-112.611945, 45.986839],\n          [-112.611983, 45.986517],\n          [-112.612211, 45.985826],\n          [-112.612974, 45.983191],\n          [-112.613351, 45.982047],\n          [-112.613508, 45.981723],\n          [-112.613655, 45.98152],\n          [-112.613973, 45.981284],\n          [-112.61573, 45.980235],\n          [-112.61642, 45.979923],\n          [-112.617405, 45.979519],\n          [-112.618068, 45.979213],\n          [-112.618669, 45.978865],\n          [-112.620246, 45.977619],\n          [-112.620586, 45.977289],\n          [-112.621106, 45.976592],\n          [-112.622154, 45.975079],\n          [-112.622235, 45.974699],\n          [-112.622281, 45.973317],\n          [-112.622078, 45.970234],\n          [-112.619831, 45.970225],\n          [-112.614288, 45.970203]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-112.181396484375, 48.88639177703194]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test/out/expectedLocation - points behind first point.json",
    "content": "[0, 0, 0, 0, 0, 0, 0, 0]\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test/out/expectedLocation - points in front of last point.json",
    "content": "[0.362058, 0.362058, 0.362058, 0.362058]\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test/out/expectedLocation - points on joints.json",
    "content": "[\n  [0, 0.162908, 0.362058],\n  [\n    0, 435.152731, 848.38422, 1506.62747, 1877.71515, 2362.640364, 2951.524644,\n    3346.548084, 3711.226929\n  ],\n  [\n    0, 0.011338, 0.021306, 0.033964, 0.057049, 0.082838, 0.161154, 0.207251, 0.243733,\n    0.287901, 0.320556, 0.396017, 0.491916\n  ]\n]\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test/out/expectedLocation - points on top of line.json",
    "content": "[\n  0, 0.030566, 0.061133, 0.091699, 0.122265, 0.152831, 0.183398, 0.213964, 0.24453,\n  0.275096\n]\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test/out/line-northern-latitude-#344.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-94.048462, 74.982183],\n          [-94.498901, 74.870757],\n          [-94.65271, 74.735401],\n          [-94.724121, 74.585728]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-94.51639, 74.85549],\n          [-94.713135, 74.870757]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-94.713135, 74.870757]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"lineStringIndex\": 0,\n        \"segmentIndex\": 1,\n        \"totalDistance\": 19.748879,\n        \"lineDistance\": 19.748879,\n        \"segmentDistance\": 1.771897,\n        \"pointDistance\": 5.959562,\n        \"dist\": 5.959562,\n        \"multiFeatureIndex\": 0,\n        \"location\": 19.748879,\n        \"index\": 1,\n        \"marker-color\": \"#F0F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-94.51639, 74.85549]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test/out/line1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-97.881317, 22.466878],\n          [-97.867584, 22.299261],\n          [-97.820892, 22.17596],\n          [-97.619019, 21.87042]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-97.856502, 22.270017],\n          [-97.879944, 22.26241]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-97.879944, 22.26241]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"lineStringIndex\": 0,\n        \"segmentIndex\": 1,\n        \"totalDistance\": 22.137494,\n        \"lineDistance\": 22.137494,\n        \"segmentDistance\": 3.445915,\n        \"pointDistance\": 2.556271,\n        \"dist\": 2.556271,\n        \"multiFeatureIndex\": 0,\n        \"location\": 22.137494,\n        \"index\": 1,\n        \"marker-color\": \"#F0F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-97.856502, 22.270017]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test/out/multiLine1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-70.576172, -18.979026],\n            [-76.201172, -47.694974],\n            [-75.9375, -52.48278],\n            [-72.597656, -55.078367],\n            [-68.115234, -56.072035],\n            [-64.599609, -55.078367]\n          ],\n          [\n            [-44.296875, -23.402765],\n            [-47.900391, -25.641526],\n            [-47.900391, -28.381735],\n            [-53.789062, -35.317366],\n            [-56.337891, -35.245619],\n            [-56.074219, -37.09024],\n            [-57.480469, -38.754083],\n            [-61.259766, -39.571822],\n            [-61.699219, -40.979898],\n            [-62.929687, -41.508577],\n            [-64.599609, -41.442726],\n            [-62.753906, -42.163403],\n            [-64.599609, -43.771094],\n            [-65.214844, -45.151053],\n            [-66.884766, -45.521744],\n            [-67.148437, -46.255847],\n            [-65.214844, -46.679594],\n            [-65.214844, -48.166085],\n            [-66.621094, -49.095452],\n            [-66.884766, -50.233152],\n            [-68.554687, -50.736455],\n            [-67.763672, -52.214339]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-67.763672, -52.214339],\n          [-66.489258, -52.895649]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-66.489258, -52.895649]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"lineStringIndex\": 1,\n        \"segmentIndex\": 21,\n        \"totalDistance\": 9479.011715,\n        \"lineDistance\": 4800.716022,\n        \"segmentDistance\": 173.221741,\n        \"pointDistance\": 114.725451,\n        \"dist\": 114.725451,\n        \"multiFeatureIndex\": 1,\n        \"location\": 9479.011715,\n        \"index\": 21,\n        \"marker-color\": \"#F0F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-67.763672, -52.214339]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test/out/multiLine2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [129.990234, -31.728167],\n            [123.75, -28.07198],\n            [122.519531, -24.846565],\n            [122.695313, -19.890723]\n          ],\n          [\n            [127.265625, -13.667338],\n            [133.154297, -13.581921],\n            [136.933594, -16.972741],\n            [140.537109, -22.024546],\n            [141.503906, -25.403585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [127.265625, -13.667338],\n          [124.189453, -15.538376]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [124.189453, -15.538376]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"lineStringIndex\": 1,\n        \"segmentIndex\": 0,\n        \"totalDistance\": 1656.139708,\n        \"lineDistance\": 0,\n        \"segmentDistance\": 0,\n        \"pointDistance\": 390.942725,\n        \"dist\": 390.942725,\n        \"multiFeatureIndex\": 1,\n        \"location\": 1656.139708,\n        \"index\": 0,\n        \"marker-color\": \"#F0F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [127.265625, -13.667338]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test/out/multiLine3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [122.036133, -19.766704],\n            [125.419922, -18.437925],\n            [132.451172, -18.646245],\n            [132.802734, -14.944785],\n            [139.130859, -18.479609],\n            [133.857422, -22.309426],\n            [142.075195, -24.367114],\n            [144.09668, -18.020528]\n          ],\n          [\n            [128.144531, -20.385825],\n            [119.663086, -20.797201],\n            [119.53125, -17.644022],\n            [127.089844, -15.411319],\n            [130.209961, -12.21118]\n          ],\n          [\n            [126.826172, -17.014768],\n            [130.03418, -14.392118],\n            [133.945313, -13.282719]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [123.930125, -19.033194],\n          [123.486328, -18.020528]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [123.486328, -18.020528]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"lineStringIndex\": 0,\n        \"segmentIndex\": 0,\n        \"totalDistance\": 214.735285,\n        \"lineDistance\": 214.735285,\n        \"segmentDistance\": 214.735285,\n        \"pointDistance\": 121.937841,\n        \"dist\": 121.937841,\n        \"multiFeatureIndex\": 0,\n        \"location\": 214.735285,\n        \"index\": 0,\n        \"marker-color\": \"#F0F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [123.930125, -19.033194]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test/out/route1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-79.254923, 36.98394],\n          [-79.254923, 36.983939],\n          [-79.255326, 36.9838],\n          [-79.255401, 36.983774],\n          [-79.25576, 36.983664],\n          [-79.256795, 36.984137],\n          [-79.257537, 36.984478],\n          [-79.258539, 36.984925],\n          [-79.259498, 36.985353],\n          [-79.260286, 36.985712],\n          [-79.261405, 36.986222],\n          [-79.262933, 36.986928],\n          [-79.263237, 36.987071],\n          [-79.263755, 36.987296],\n          [-79.264086, 36.987423],\n          [-79.264167, 36.987446],\n          [-79.264338, 36.987486],\n          [-79.264414, 36.987501],\n          [-79.264618, 36.987531],\n          [-79.2648, 36.987542],\n          [-79.264982, 36.987537],\n          [-79.265163, 36.987517],\n          [-79.26703, 36.987355],\n          [-79.267952, 36.98726],\n          [-79.268404, 36.987226],\n          [-79.268771, 36.987197],\n          [-79.26955, 36.987117],\n          [-79.271398, 36.986946],\n          [-79.271488, 36.986941],\n          [-79.271698, 36.986925],\n          [-79.271936, 36.986898],\n          [-79.272231, 36.986852],\n          [-79.272474, 36.986785],\n          [-79.272711, 36.986705],\n          [-79.272895, 36.986632],\n          [-79.273059, 36.986552],\n          [-79.273646, 36.986245],\n          [-79.274224, 36.985925],\n          [-79.274887, 36.985592],\n          [-79.275308, 36.985365],\n          [-79.275672, 36.98517],\n          [-79.276249, 36.984876],\n          [-79.277101, 36.984433],\n          [-79.277425, 36.984259],\n          [-79.277918, 36.983982],\n          [-79.27799, 36.98395],\n          [-79.278179, 36.98385],\n          [-79.278261, 36.9838],\n          [-79.278335, 36.983745],\n          [-79.278421, 36.983666],\n          [-79.27844, 36.983647],\n          [-79.278502, 36.983577],\n          [-79.278548, 36.983511],\n          [-79.278614, 36.983381],\n          [-79.278654, 36.983273],\n          [-79.278711, 36.983011],\n          [-79.278763, 36.98269],\n          [-79.278806, 36.982485],\n          [-79.278866, 36.982282],\n          [-79.278952, 36.982101],\n          [-79.279023, 36.981984],\n          [-79.280178, 36.980418],\n          [-79.280259, 36.980319],\n          [-79.280355, 36.980229],\n          [-79.280419, 36.98018],\n          [-79.280578, 36.980082],\n          [-79.280666, 36.980038],\n          [-79.280783, 36.979994],\n          [-79.280908, 36.979963],\n          [-79.281301, 36.979913],\n          [-79.281646, 36.979874],\n          [-79.282145, 36.979835],\n          [-79.282797, 36.97977],\n          [-79.283144, 36.979743],\n          [-79.283618, 36.97972],\n          [-79.28399, 36.979706],\n          [-79.284447, 36.979695],\n          [-79.284904, 36.979697],\n          [-79.286913, 36.979638],\n          [-79.287201, 36.979628],\n          [-79.287954, 36.979612],\n          [-79.288037, 36.979611],\n          [-79.288397, 36.97962],\n          [-79.288697, 36.979643],\n          [-79.289908, 36.979722],\n          [-79.289994, 36.979724],\n          [-79.290136, 36.979716],\n          [-79.290248, 36.979699],\n          [-79.290503, 36.979632],\n          [-79.291043, 36.979454],\n          [-79.291563, 36.979269],\n          [-79.292467, 36.97896],\n          [-79.292759, 36.978877],\n          [-79.292963, 36.978832],\n          [-79.293286, 36.978778],\n          [-79.293549, 36.978746],\n          [-79.293649, 36.978738],\n          [-79.293755, 36.978729],\n          [-79.293858, 36.978731],\n          [-79.294028, 36.978747],\n          [-79.294162, 36.978771],\n          [-79.294243, 36.9788],\n          [-79.294439, 36.978883],\n          [-79.294626, 36.978979],\n          [-79.294782, 36.979072],\n          [-79.294921, 36.979174],\n          [-79.295023, 36.979263],\n          [-79.295281, 36.979534],\n          [-79.295458, 36.979739],\n          [-79.296347, 36.980843],\n          [-79.296549, 36.981064],\n          [-79.296594, 36.981095],\n          [-79.296695, 36.981144],\n          [-79.296788, 36.98117],\n          [-79.296916, 36.981184],\n          [-79.297032, 36.981182],\n          [-79.297147, 36.981165],\n          [-79.297933, 36.980962],\n          [-79.298145, 36.980893],\n          [-79.298401, 36.98079],\n          [-79.298602, 36.980696],\n          [-79.298795, 36.980593],\n          [-79.299134, 36.980402],\n          [-79.299407, 36.980244],\n          [-79.299963, 36.9799],\n          [-79.301767, 36.97881],\n          [-79.301976, 36.978691],\n          [-79.3021, 36.978619],\n          [-79.302508, 36.978369],\n          [-79.302614, 36.978309],\n          [-79.3028, 36.97822],\n          [-79.302995, 36.978145],\n          [-79.303113, 36.978114],\n          [-79.303153, 36.978249],\n          [-79.303232, 36.978565],\n          [-79.303319, 36.978989],\n          [-79.303326, 36.979184],\n          [-79.303313, 36.979346],\n          [-79.30324, 36.979748],\n          [-79.303136, 36.980362],\n          [-79.303088, 36.980609],\n          [-79.302996, 36.981143],\n          [-79.302982, 36.981226],\n          [-79.302977, 36.981321],\n          [-79.302986, 36.98144],\n          [-79.303013, 36.981556],\n          [-79.303057, 36.98167],\n          [-79.303191, 36.9819],\n          [-79.303336, 36.982126],\n          [-79.303702, 36.982652],\n          [-79.304322, 36.983486],\n          [-79.304588, 36.98382],\n          [-79.304756, 36.984051],\n          [-79.304903, 36.984229],\n          [-79.305059, 36.984403],\n          [-79.305145, 36.984487],\n          [-79.305336, 36.984648],\n          [-79.305612, 36.98486],\n          [-79.30569, 36.984915],\n          [-79.305765, 36.984974],\n          [-79.305944, 36.98513],\n          [-79.306108, 36.985295],\n          [-79.306259, 36.985469],\n          [-79.306333, 36.98557],\n          [-79.306437, 36.985737],\n          [-79.306524, 36.985911],\n          [-79.306595, 36.98609],\n          [-79.306677, 36.986365],\n          [-79.306734, 36.98662],\n          [-79.306773, 36.986878],\n          [-79.306759, 36.986998],\n          [-79.306724, 36.987146],\n          [-79.306621, 36.987426],\n          [-79.306591, 36.987545],\n          [-79.306555, 36.987745],\n          [-79.306536, 36.987984],\n          [-79.30653, 36.988172],\n          [-79.306539, 36.988321],\n          [-79.30655, 36.988398],\n          [-79.306566, 36.988507],\n          [-79.306673, 36.988967],\n          [-79.306789, 36.989416],\n          [-79.30681, 36.989518],\n          [-79.306831, 36.98969],\n          [-79.306833, 36.989828],\n          [-79.306822, 36.989888],\n          [-79.306771, 36.990067],\n          [-79.306696, 36.99024],\n          [-79.306569, 36.990463],\n          [-79.306374, 36.99078],\n          [-79.30633, 36.990863],\n          [-79.306292, 36.990972],\n          [-79.306271, 36.991084],\n          [-79.306268, 36.991229],\n          [-79.306282, 36.991421],\n          [-79.306323, 36.991648],\n          [-79.30657, 36.992516],\n          [-79.306601, 36.992703],\n          [-79.306614, 36.992892],\n          [-79.306598, 36.993111],\n          [-79.306569, 36.993287],\n          [-79.306553, 36.993345],\n          [-79.306526, 36.993432],\n          [-79.306466, 36.993574],\n          [-79.306313, 36.993848],\n          [-79.305971, 36.994382],\n          [-79.305826, 36.994647],\n          [-79.305382, 36.995598],\n          [-79.305197, 36.995963],\n          [-79.305065, 36.996284],\n          [-79.304983, 36.996521],\n          [-79.304954, 36.99668],\n          [-79.30495, 36.996815],\n          [-79.304959, 36.996932],\n          [-79.304988, 36.997077],\n          [-79.305024, 36.99719],\n          [-79.305111, 36.99739],\n          [-79.305197, 36.997567],\n          [-79.30532, 36.997782],\n          [-79.305429, 36.997949],\n          [-79.305577, 36.998153],\n          [-79.306017, 36.99873],\n          [-79.306204, 36.998965],\n          [-79.306407, 36.999192],\n          [-79.306624, 36.999411],\n          [-79.30672, 36.999489],\n          [-79.306828, 36.999557],\n          [-79.306922, 36.999602],\n          [-79.307072, 36.999656],\n          [-79.307354, 36.999723],\n          [-79.307628, 36.999778],\n          [-79.308892, 36.999988],\n          [-79.309029, 37.00002],\n          [-79.309135, 37.000056],\n          [-79.30926, 37.000112],\n          [-79.309374, 37.00018],\n          [-79.309478, 37.000259],\n          [-79.30959, 37.000372],\n          [-79.309743, 37.000552],\n          [-79.31029, 37.001344],\n          [-79.31037, 37.001451],\n          [-79.310486, 37.001568],\n          [-79.310598, 37.001654],\n          [-79.310697, 37.001714],\n          [-79.310838, 37.001785],\n          [-79.310991, 37.001844],\n          [-79.31115, 37.001891],\n          [-79.311632, 37.001979],\n          [-79.312359, 37.002135],\n          [-79.312455, 37.002156],\n          [-79.312915, 37.002271],\n          [-79.313026, 37.002296],\n          [-79.313639, 37.002422],\n          [-79.314311, 37.002515],\n          [-79.314769, 37.002553],\n          [-79.315227, 37.002582],\n          [-79.315352, 37.002604],\n          [-79.315472, 37.002641],\n          [-79.315543, 37.002685],\n          [-79.315621, 37.00275],\n          [-79.315685, 37.002824],\n          [-79.315725, 37.002889],\n          [-79.315888, 37.002832],\n          [-79.316221, 37.002733],\n          [-79.316448, 37.002678],\n          [-79.31752, 37.002455],\n          [-79.318524, 37.002275],\n          [-79.319059, 37.002211],\n          [-79.319268, 37.002199],\n          [-79.319435, 37.0022],\n          [-79.319651, 37.002214],\n          [-79.319786, 37.002226],\n          [-79.320258, 37.002279],\n          [-79.320522, 37.002298],\n          [-79.320786, 37.002302],\n          [-79.320953, 37.002288],\n          [-79.321116, 37.002258],\n          [-79.321274, 37.002213],\n          [-79.321381, 37.00217],\n          [-79.321762, 37.002001],\n          [-79.322382, 37.001698],\n          [-79.322844, 37.001466],\n          [-79.323023, 37.001376],\n          [-79.323292, 37.001249],\n          [-79.32357, 37.001134],\n          [-79.323943, 37.001003],\n          [-79.324098, 37.000958],\n          [-79.324162, 37.000945],\n          [-79.32513, 37.000843],\n          [-79.325325, 37.000814],\n          [-79.325517, 37.000777],\n          [-79.325753, 37.000719],\n          [-79.327186, 37.000266],\n          [-79.327482, 37.000173],\n          [-79.327802, 37.00008],\n          [-79.328598, 36.999838],\n          [-79.329158, 36.999654],\n          [-79.329204, 36.999715],\n          [-79.329343, 36.999894],\n          [-79.32942, 36.999975],\n          [-79.329588, 37.000125],\n          [-79.329742, 37.000239],\n          [-79.329777, 37.000256],\n          [-79.329869, 37.000291],\n          [-79.329988, 37.000315],\n          [-79.330091, 37.000318],\n          [-79.33027, 37.000316],\n          [-79.330449, 37.000298],\n          [-79.331035, 37.000223],\n          [-79.331427, 37.000184],\n          [-79.331855, 37.000129],\n          [-79.333009, 37.000023],\n          [-79.334568, 36.999869],\n          [-79.335002, 36.999826],\n          [-79.33552, 36.999806],\n          [-79.33606, 36.999814],\n          [-79.336208, 36.999833],\n          [-79.336352, 36.999866],\n          [-79.33649, 36.999913],\n          [-79.336644, 36.999986],\n          [-79.336856, 37.000123],\n          [-79.336962, 37.000203],\n          [-79.337096, 37.000316],\n          [-79.337325, 37.000539],\n          [-79.337519, 37.000761],\n          [-79.338522, 37.001965],\n          [-79.339126, 37.002688],\n          [-79.339574, 37.003185],\n          [-79.340385, 37.004106],\n          [-79.340479, 37.004212],\n          [-79.340603, 37.004341],\n          [-79.340773, 37.00449],\n          [-79.340929, 37.004602],\n          [-79.341131, 37.004723],\n          [-79.341632, 37.004968],\n          [-79.341875, 37.005087],\n          [-79.342172, 37.005233],\n          [-79.342594, 37.00542],\n          [-79.343189, 37.005708],\n          [-79.343817, 37.006011],\n          [-79.344455, 37.006335],\n          [-79.344712, 37.00647],\n          [-79.345697, 37.006916],\n          [-79.345837, 37.006985],\n          [-79.346006, 37.00708],\n          [-79.346221, 37.007218],\n          [-79.347403, 37.008016],\n          [-79.347493, 37.008071],\n          [-79.347634, 37.008171],\n          [-79.347763, 37.008281],\n          [-79.347971, 37.008497],\n          [-79.348051, 37.008623],\n          [-79.348135, 37.008786],\n          [-79.348201, 37.008954],\n          [-79.34825, 37.009126],\n          [-79.348316, 37.00954],\n          [-79.348397, 37.010196],\n          [-79.34854, 37.01111],\n          [-79.348616, 37.011496],\n          [-79.348778, 37.012266],\n          [-79.349159, 37.013946],\n          [-79.349315, 37.014628],\n          [-79.349636, 37.015919],\n          [-79.349688, 37.016183],\n          [-79.349795, 37.016628],\n          [-79.349854, 37.016827],\n          [-79.349915, 37.01701],\n          [-79.350064, 37.017337],\n          [-79.350135, 37.017464],\n          [-79.350159, 37.017499],\n          [-79.350325, 37.017735],\n          [-79.35042, 37.017865],\n          [-79.350584, 37.018129],\n          [-79.35072, 37.01842],\n          [-79.350808, 37.018683],\n          [-79.35089, 37.018981],\n          [-79.350968, 37.019317],\n          [-79.35119, 37.020219],\n          [-79.351251, 37.020445],\n          [-79.351346, 37.020719],\n          [-79.351414, 37.020888],\n          [-79.351505, 37.021079],\n          [-79.351682, 37.021459],\n          [-79.351825, 37.02176],\n          [-79.352185, 37.022473],\n          [-79.352628, 37.023433],\n          [-79.352751, 37.023743],\n          [-79.35282, 37.023863],\n          [-79.352895, 37.023965],\n          [-79.353012, 37.024078],\n          [-79.353078, 37.024127],\n          [-79.353186, 37.024186],\n          [-79.353325, 37.024244],\n          [-79.353398, 37.024265],\n          [-79.353421, 37.02427],\n          [-79.353621, 37.024315],\n          [-79.353675, 37.024321],\n          [-79.35392, 37.024336],\n          [-79.354286, 37.024379],\n          [-79.354423, 37.024385],\n          [-79.354844, 37.024375],\n          [-79.355058, 37.024359],\n          [-79.355214, 37.024339],\n          [-79.355354, 37.024308],\n          [-79.355614, 37.024238],\n          [-79.355718, 37.024209],\n          [-79.355965, 37.024125],\n          [-79.356147, 37.024057],\n          [-79.356485, 37.02394],\n          [-79.356546, 37.023919],\n          [-79.356797, 37.023824],\n          [-79.356964, 37.023769],\n          [-79.357077, 37.023757],\n          [-79.357196, 37.023767],\n          [-79.357262, 37.023786],\n          [-79.357309, 37.023811],\n          [-79.35735, 37.023849],\n          [-79.357388, 37.023905],\n          [-79.357541, 37.024317],\n          [-79.357583, 37.024391],\n          [-79.357634, 37.024438],\n          [-79.357685, 37.024467],\n          [-79.357747, 37.024487],\n          [-79.35783, 37.024497],\n          [-79.357899, 37.024495],\n          [-79.35801, 37.02448],\n          [-79.358102, 37.02446],\n          [-79.358409, 37.025941],\n          [-79.358471, 37.026316],\n          [-79.358502, 37.026637],\n          [-79.358517, 37.026844],\n          [-79.358519, 37.027185],\n          [-79.358497, 37.027679],\n          [-79.358457, 37.028033],\n          [-79.358398, 37.028378],\n          [-79.358301, 37.028779],\n          [-79.358082, 37.029574],\n          [-79.357957, 37.030026],\n          [-79.357813, 37.030609],\n          [-79.357745, 37.03095],\n          [-79.357685, 37.031344],\n          [-79.357656, 37.031612],\n          [-79.357621, 37.032199],\n          [-79.357619, 37.032445],\n          [-79.357631, 37.032766],\n          [-79.357637, 37.032893],\n          [-79.357666, 37.033258],\n          [-79.357711, 37.033639],\n          [-79.357789, 37.034066],\n          [-79.357875, 37.034441],\n          [-79.357922, 37.034622],\n          [-79.358521, 37.036938],\n          [-79.358613, 37.037315],\n          [-79.358687, 37.037658],\n          [-79.358786, 37.038217],\n          [-79.358856, 37.038791],\n          [-79.358911, 37.039356],\n          [-79.358965, 37.0401],\n          [-79.359051, 37.041306],\n          [-79.359073, 37.041825],\n          [-79.359059, 37.042471],\n          [-79.359012, 37.042954],\n          [-79.35899, 37.04313],\n          [-79.358922, 37.043537],\n          [-79.358829, 37.043973],\n          [-79.358773, 37.044171],\n          [-79.358704, 37.044417],\n          [-79.358541, 37.044914],\n          [-79.358352, 37.045429],\n          [-79.357856, 37.04678],\n          [-79.357794, 37.046961],\n          [-79.357564, 37.047556],\n          [-79.357409, 37.047915],\n          [-79.357338, 37.048062],\n          [-79.357278, 37.048184],\n          [-79.356942, 37.048801],\n          [-79.356841, 37.048967],\n          [-79.356589, 37.049349],\n          [-79.356363, 37.049677],\n          [-79.354212, 37.052783],\n          [-79.353972, 37.053148],\n          [-79.353865, 37.053295],\n          [-79.353452, 37.053889],\n          [-79.352197, 37.055711],\n          [-79.352126, 37.055808],\n          [-79.351983, 37.056023],\n          [-79.351596, 37.056539],\n          [-79.351413, 37.056761],\n          [-79.35122, 37.056979],\n          [-79.351018, 37.057191],\n          [-79.35075, 37.057445],\n          [-79.350603, 37.057584],\n          [-79.35029, 37.057856],\n          [-79.348032, 37.059645],\n          [-79.346954, 37.060488],\n          [-79.345892, 37.06133],\n          [-79.345295, 37.061797],\n          [-79.344778, 37.062208],\n          [-79.344716, 37.062258],\n          [-79.343942, 37.062866],\n          [-79.343259, 37.06342],\n          [-79.342925, 37.063722],\n          [-79.342732, 37.063907],\n          [-79.342302, 37.064351],\n          [-79.342055, 37.06463],\n          [-79.341843, 37.064885],\n          [-79.341424, 37.065452],\n          [-79.341048, 37.066036],\n          [-79.340718, 37.066647],\n          [-79.340066, 37.068047],\n          [-79.338982, 37.070343],\n          [-79.336951, 37.074656],\n          [-79.336672, 37.075265],\n          [-79.335622, 37.077497],\n          [-79.335265, 37.078252],\n          [-79.33489, 37.079062],\n          [-79.334833, 37.079182],\n          [-79.334222, 37.080477],\n          [-79.333262, 37.082521],\n          [-79.333001, 37.083079],\n          [-79.332628, 37.084028],\n          [-79.332548, 37.084278],\n          [-79.332388, 37.08478],\n          [-79.332201, 37.085539],\n          [-79.33204, 37.086421],\n          [-79.33196, 37.086978],\n          [-79.331907, 37.087757],\n          [-79.331871, 37.088536],\n          [-79.33185, 37.089317],\n          [-79.331805, 37.090324],\n          [-79.331772, 37.091338],\n          [-79.331768, 37.092235],\n          [-79.33183, 37.093576],\n          [-79.331943, 37.095022],\n          [-79.332045, 37.096198],\n          [-79.332341, 37.099713],\n          [-79.332397, 37.100421],\n          [-79.332436, 37.101086],\n          [-79.332443, 37.1013],\n          [-79.332438, 37.10199],\n          [-79.332418, 37.102426],\n          [-79.332391, 37.102795],\n          [-79.332337, 37.103324],\n          [-79.332244, 37.103966],\n          [-79.332205, 37.104185],\n          [-79.332175, 37.104355],\n          [-79.332056, 37.104907],\n          [-79.332041, 37.104978],\n          [-79.331903, 37.105494],\n          [-79.331733, 37.106053],\n          [-79.331559, 37.106562],\n          [-79.33131, 37.107195],\n          [-79.331178, 37.107501],\n          [-79.330959, 37.107973],\n          [-79.330748, 37.108399],\n          [-79.330489, 37.108876],\n          [-79.330365, 37.109093],\n          [-79.330155, 37.10944],\n          [-79.329757, 37.110058],\n          [-79.328813, 37.111446],\n          [-79.328701, 37.111611],\n          [-79.327118, 37.113932],\n          [-79.327107, 37.113947],\n          [-79.326498, 37.114802],\n          [-79.326178, 37.115223],\n          [-79.326128, 37.115289],\n          [-79.32568, 37.115855],\n          [-79.325061, 37.116595],\n          [-79.324816, 37.116878],\n          [-79.324497, 37.117235],\n          [-79.324161, 37.117601],\n          [-79.323816, 37.117964],\n          [-79.323589, 37.118194],\n          [-79.323104, 37.118678],\n          [-79.322015, 37.119732],\n          [-79.320826, 37.12089],\n          [-79.320279, 37.121415],\n          [-79.31993, 37.121729],\n          [-79.319276, 37.122271],\n          [-79.318828, 37.122609],\n          [-79.318377, 37.122925],\n          [-79.317535, 37.123462],\n          [-79.316595, 37.123987],\n          [-79.315586, 37.124473],\n          [-79.314958, 37.124742],\n          [-79.311931, 37.125973],\n          [-79.303986, 37.129196],\n          [-79.303177, 37.129555],\n          [-79.302367, 37.129915],\n          [-79.30095, 37.130617],\n          [-79.298871, 37.131691],\n          [-79.298008, 37.132146],\n          [-79.293574, 37.134491],\n          [-79.293108, 37.134749],\n          [-79.292712, 37.134937],\n          [-79.292278, 37.135125],\n          [-79.291836, 37.1353],\n          [-79.291351, 37.135473],\n          [-79.290905, 37.135615],\n          [-79.290365, 37.135772],\n          [-79.289641, 37.135941],\n          [-79.289078, 37.136055],\n          [-79.288222, 37.136184],\n          [-79.287781, 37.136228],\n          [-79.287205, 37.136269],\n          [-79.281895, 37.136526],\n          [-79.280512, 37.136607],\n          [-79.279731, 37.13667],\n          [-79.278968, 37.136747],\n          [-79.277922, 37.136872],\n          [-79.276244, 37.13712],\n          [-79.273494, 37.137624],\n          [-79.272005, 37.137904],\n          [-79.271794, 37.137944],\n          [-79.266159, 37.138985],\n          [-79.265643, 37.139056],\n          [-79.265084, 37.139119],\n          [-79.264404, 37.139177],\n          [-79.263826, 37.139213],\n          [-79.263263, 37.139234],\n          [-79.262666, 37.139241],\n          [-79.262103, 37.139234],\n          [-79.26149, 37.139213],\n          [-79.260895, 37.13918],\n          [-79.260488, 37.139149],\n          [-79.257811, 37.138859],\n          [-79.253283, 37.138354],\n          [-79.251817, 37.138189],\n          [-79.251311, 37.138138],\n          [-79.25082, 37.138104],\n          [-79.250344, 37.138087],\n          [-79.249949, 37.138091],\n          [-79.249141, 37.138125],\n          [-79.248701, 37.138169],\n          [-79.248255, 37.138232],\n          [-79.247815, 37.138303],\n          [-79.247404, 37.138388],\n          [-79.246983, 37.138492],\n          [-79.24619, 37.138741],\n          [-79.246034, 37.138799],\n          [-79.245567, 37.138991],\n          [-79.243639, 37.139795],\n          [-79.242121, 37.140435],\n          [-79.241618, 37.140648],\n          [-79.241125, 37.14089],\n          [-79.240755, 37.141103],\n          [-79.240471, 37.141293],\n          [-79.240237, 37.141475],\n          [-79.240023, 37.141661],\n          [-79.239659, 37.142024],\n          [-79.238717, 37.143115],\n          [-79.238653, 37.143189],\n          [-79.238443, 37.143404],\n          [-79.23822, 37.14361],\n          [-79.237972, 37.143817],\n          [-79.237711, 37.144013],\n          [-79.237424, 37.144206],\n          [-79.237139, 37.144378],\n          [-79.236846, 37.144536],\n          [-79.23672, 37.144599],\n          [-79.235366, 37.145185],\n          [-79.235031, 37.145327],\n          [-79.233118, 37.146139],\n          [-79.232943, 37.146214],\n          [-79.23213, 37.146559],\n          [-79.23159, 37.146789],\n          [-79.231268, 37.146943],\n          [-79.230971, 37.147103],\n          [-79.230723, 37.147248],\n          [-79.230589, 37.147333],\n          [-79.230303, 37.147527],\n          [-79.230067, 37.147704],\n          [-79.229831, 37.147902],\n          [-79.229608, 37.148108],\n          [-79.229398, 37.148324],\n          [-79.229192, 37.148559],\n          [-79.229002, 37.148802],\n          [-79.228823, 37.149065],\n          [-79.228683, 37.149299],\n          [-79.228557, 37.149537],\n          [-79.228436, 37.149807],\n          [-79.228332, 37.15008],\n          [-79.22824, 37.150371],\n          [-79.228165, 37.150679],\n          [-79.228144, 37.150787],\n          [-79.22795, 37.1522],\n          [-79.227939, 37.152282],\n          [-79.227922, 37.152405],\n          [-79.227831, 37.1531],\n          [-79.227768, 37.153577],\n          [-79.22775, 37.153704],\n          [-79.227707, 37.153951],\n          [-79.227614, 37.154338],\n          [-79.227519, 37.154642],\n          [-79.227394, 37.154981],\n          [-79.227259, 37.155289],\n          [-79.227113, 37.155579],\n          [-79.227008, 37.155764],\n          [-79.226979, 37.155814],\n          [-79.226931, 37.155892],\n          [-79.22673, 37.156196],\n          [-79.226531, 37.156466],\n          [-79.226359, 37.156679],\n          [-79.226091, 37.156981],\n          [-79.225836, 37.157239],\n          [-79.225577, 37.157477],\n          [-79.225307, 37.157704],\n          [-79.225033, 37.15791],\n          [-79.224838, 37.158043],\n          [-79.223223, 37.159106],\n          [-79.222625, 37.159494],\n          [-79.222577, 37.159525],\n          [-79.222526, 37.159559],\n          [-79.222269, 37.159725],\n          [-79.221758, 37.160065],\n          [-79.219427, 37.161585],\n          [-79.218294, 37.162324],\n          [-79.218211, 37.162378],\n          [-79.216923, 37.163217],\n          [-79.216426, 37.163539],\n          [-79.215909, 37.16389],\n          [-79.215531, 37.164171],\n          [-79.215221, 37.164425],\n          [-79.214936, 37.164678],\n          [-79.214674, 37.164929],\n          [-79.214292, 37.165324],\n          [-79.214244, 37.165374],\n          [-79.213081, 37.166582],\n          [-79.212642, 37.167038],\n          [-79.212368, 37.167324],\n          [-79.212048, 37.167658],\n          [-79.211768, 37.16795],\n          [-79.211486, 37.168245],\n          [-79.211416, 37.168318],\n          [-79.211008, 37.168744],\n          [-79.210963, 37.168791],\n          [-79.210689, 37.16908],\n          [-79.210304, 37.16953],\n          [-79.2101, 37.169782],\n          [-79.209923, 37.170006],\n          [-79.209526, 37.170538],\n          [-79.209343, 37.170798],\n          [-79.207037, 37.174039],\n          [-79.206764, 37.174435],\n          [-79.206634, 37.174641],\n          [-79.206469, 37.174929],\n          [-79.206273, 37.17532],\n          [-79.20615, 37.175603],\n          [-79.206073, 37.175802],\n          [-79.206026, 37.175929],\n          [-79.205916, 37.176273],\n          [-79.205845, 37.176539],\n          [-79.205757, 37.176917],\n          [-79.205696, 37.177164],\n          [-79.205658, 37.177349],\n          [-79.205603, 37.177589],\n          [-79.205562, 37.177759],\n          [-79.205539, 37.177863],\n          [-79.205487, 37.178091],\n          [-79.205427, 37.178344],\n          [-79.205364, 37.178607],\n          [-79.205297, 37.178889],\n          [-79.205253, 37.179068],\n          [-79.20519, 37.179332],\n          [-79.205122, 37.179618],\n          [-79.205055, 37.179895],\n          [-79.204997, 37.180138],\n          [-79.204614, 37.181773],\n          [-79.204588, 37.181883],\n          [-79.204488, 37.182314],\n          [-79.204319, 37.183043],\n          [-79.204265, 37.183268],\n          [-79.204123, 37.18388],\n          [-79.203924, 37.184747],\n          [-79.203855, 37.185167],\n          [-79.203781, 37.185725],\n          [-79.203767, 37.185869],\n          [-79.203714, 37.186727],\n          [-79.203688, 37.188358],\n          [-79.203665, 37.189574],\n          [-79.203624, 37.192626],\n          [-79.203627, 37.192665],\n          [-79.203588, 37.193792],\n          [-79.203572, 37.194229],\n          [-79.203568, 37.194309],\n          [-79.203559, 37.194539],\n          [-79.203553, 37.194676],\n          [-79.203543, 37.194919],\n          [-79.203531, 37.195199],\n          [-79.203502, 37.195859],\n          [-79.203483, 37.196276],\n          [-79.203468, 37.196579],\n          [-79.203458, 37.196792],\n          [-79.203433, 37.197322],\n          [-79.203422, 37.197563],\n          [-79.20341, 37.197824],\n          [-79.203397, 37.198095],\n          [-79.20339, 37.198254],\n          [-79.203379, 37.19847],\n          [-79.203358, 37.198936],\n          [-79.20334, 37.19935],\n          [-79.203304, 37.200071],\n          [-79.203262, 37.200536],\n          [-79.203244, 37.200686],\n          [-79.203162, 37.201241],\n          [-79.203073, 37.201722],\n          [-79.20306, 37.201793],\n          [-79.203026, 37.201977],\n          [-79.202836, 37.203003],\n          [-79.202752, 37.203459],\n          [-79.202563, 37.204478],\n          [-79.202452, 37.205079],\n          [-79.202395, 37.205385],\n          [-79.201856, 37.208299],\n          [-79.201805, 37.208574],\n          [-79.201702, 37.209126],\n          [-79.201673, 37.209268],\n          [-79.201619, 37.209479],\n          [-79.201573, 37.209638],\n          [-79.201505, 37.209836],\n          [-79.201407, 37.210085],\n          [-79.201284, 37.210341],\n          [-79.201114, 37.21064],\n          [-79.201026, 37.210776],\n          [-79.200882, 37.21098],\n          [-79.200649, 37.211282],\n          [-79.200396, 37.211554],\n          [-79.199727, 37.212167],\n          [-79.199637, 37.212249],\n          [-79.199553, 37.212325],\n          [-79.199391, 37.212473],\n          [-79.199159, 37.212684],\n          [-79.19865, 37.213144],\n          [-79.197756, 37.213946],\n          [-79.197588, 37.214097],\n          [-79.197252, 37.214415],\n          [-79.196922, 37.214731],\n          [-79.196487, 37.215166],\n          [-79.196055, 37.215596],\n          [-79.195714, 37.216042],\n          [-79.195395, 37.216449],\n          [-79.194175, 37.218086],\n          [-79.193942, 37.2184],\n          [-79.193714, 37.218705],\n          [-79.193339, 37.219208],\n          [-79.193103, 37.219523],\n          [-79.192804, 37.219924],\n          [-79.192465, 37.220384],\n          [-79.191972, 37.221056],\n          [-79.191665, 37.221486],\n          [-79.191271, 37.222039],\n          [-79.191066, 37.222328],\n          [-79.190837, 37.222648],\n          [-79.190786, 37.222724],\n          [-79.190591, 37.223024],\n          [-79.190561, 37.223069],\n          [-79.190114, 37.223762],\n          [-79.189976, 37.223994],\n          [-79.189786, 37.224314],\n          [-79.189538, 37.224731],\n          [-79.189441, 37.224896],\n          [-79.189231, 37.225287],\n          [-79.188873, 37.225949],\n          [-79.188647, 37.226369],\n          [-79.188578, 37.226497],\n          [-79.188422, 37.22682],\n          [-79.187747, 37.228226],\n          [-79.187638, 37.228454],\n          [-79.186752, 37.230317],\n          [-79.186236, 37.23142],\n          [-79.186183, 37.231531],\n          [-79.186143, 37.231633],\n          [-79.186012, 37.231905],\n          [-79.185971, 37.232009],\n          [-79.185901, 37.232204],\n          [-79.185821, 37.232467],\n          [-79.185783, 37.232629],\n          [-79.185746, 37.232787],\n          [-79.185712, 37.232989],\n          [-79.185564, 37.234115],\n          [-79.18554, 37.234342],\n          [-79.185535, 37.234388],\n          [-79.185527, 37.234464],\n          [-79.185489, 37.234824],\n          [-79.185459, 37.235133],\n          [-79.185442, 37.235447],\n          [-79.185444, 37.235802],\n          [-79.185467, 37.236157],\n          [-79.185494, 37.236478],\n          [-79.185509, 37.236629],\n          [-79.185568, 37.237037],\n          [-79.185613, 37.237268],\n          [-79.185642, 37.237403],\n          [-79.185719, 37.237706],\n          [-79.185791, 37.237965],\n          [-79.185811, 37.238037],\n          [-79.185899, 37.238345],\n          [-79.185952, 37.238527],\n          [-79.18597, 37.23859],\n          [-79.186042, 37.238834],\n          [-79.186525, 37.240494],\n          [-79.186638, 37.240882],\n          [-79.186786, 37.241392],\n          [-79.186995, 37.242108],\n          [-79.187061, 37.242336],\n          [-79.187075, 37.242384],\n          [-79.187298, 37.243149],\n          [-79.187378, 37.243422],\n          [-79.187527, 37.243936],\n          [-79.187774, 37.244774],\n          [-79.187853, 37.245008],\n          [-79.187949, 37.245331],\n          [-79.187975, 37.245426],\n          [-79.18809, 37.245933],\n          [-79.188158, 37.246339],\n          [-79.188193, 37.246639],\n          [-79.188214, 37.246935],\n          [-79.188219, 37.247189],\n          [-79.188219, 37.247284],\n          [-79.188204, 37.247624],\n          [-79.188173, 37.24795],\n          [-79.188121, 37.248287],\n          [-79.188078, 37.248502],\n          [-79.188012, 37.248777],\n          [-79.187964, 37.248948],\n          [-79.18752, 37.250322],\n          [-79.187502, 37.250377],\n          [-79.187461, 37.250489],\n          [-79.187101, 37.251604],\n          [-79.186977, 37.251986],\n          [-79.186803, 37.252487],\n          [-79.186647, 37.252862],\n          [-79.186473, 37.253233],\n          [-79.1864, 37.253375],\n          [-79.186369, 37.253435],\n          [-79.186196, 37.253727],\n          [-79.186096, 37.253883],\n          [-79.185846, 37.254253],\n          [-79.185619, 37.254587],\n          [-79.184816, 37.255765],\n          [-79.184332, 37.256471],\n          [-79.184251, 37.256583],\n          [-79.183919, 37.257073],\n          [-79.183282, 37.258009],\n          [-79.183273, 37.258023],\n          [-79.182658, 37.258928],\n          [-79.182428, 37.259266],\n          [-79.182236, 37.259548],\n          [-79.182189, 37.259617],\n          [-79.181677, 37.260371],\n          [-79.180889, 37.261527],\n          [-79.180329, 37.262346],\n          [-79.179966, 37.262877],\n          [-79.178561, 37.264935],\n          [-79.177834, 37.265998],\n          [-79.17762, 37.266312],\n          [-79.177577, 37.266375],\n          [-79.177344, 37.266717],\n          [-79.177268, 37.266828],\n          [-79.175738, 37.269066],\n          [-79.175293, 37.269718],\n          [-79.175059, 37.270062],\n          [-79.175024, 37.270113],\n          [-79.174746, 37.27052],\n          [-79.174499, 37.270885],\n          [-79.174225, 37.271286],\n          [-79.17318, 37.27282],\n          [-79.172596, 37.273676],\n          [-79.172062, 37.274457],\n          [-79.17205, 37.274476],\n          [-79.171892, 37.274707],\n          [-79.171746, 37.274919],\n          [-79.170612, 37.276581],\n          [-79.170091, 37.277344],\n          [-79.170074, 37.277368],\n          [-79.169014, 37.27887],\n          [-79.168768, 37.279279],\n          [-79.168446, 37.279751],\n          [-79.168095, 37.28026],\n          [-79.167791, 37.280704],\n          [-79.167004, 37.281854],\n          [-79.166839, 37.282126],\n          [-79.166686, 37.282417],\n          [-79.166553, 37.282715],\n          [-79.166455, 37.282978],\n          [-79.166365, 37.283271],\n          [-79.166331, 37.283406],\n          [-79.166277, 37.283662],\n          [-79.166236, 37.283934],\n          [-79.166211, 37.284233],\n          [-79.166208, 37.284331],\n          [-79.16621, 37.284606],\n          [-79.166232, 37.284894],\n          [-79.166273, 37.28518],\n          [-79.166341, 37.285491],\n          [-79.166394, 37.28568],\n          [-79.166419, 37.28576],\n          [-79.16653, 37.286061],\n          [-79.16656, 37.286133],\n          [-79.166601, 37.286228],\n          [-79.167073, 37.287187],\n          [-79.167342, 37.287727],\n          [-79.167647, 37.288335],\n          [-79.167961, 37.288961],\n          [-79.168213, 37.289466],\n          [-79.168669, 37.290363],\n          [-79.169252, 37.291516],\n          [-79.169707, 37.292425],\n          [-79.170019, 37.293049],\n          [-79.170164, 37.293337],\n          [-79.170762, 37.294525],\n          [-79.171017, 37.295032],\n          [-79.171197, 37.29539],\n          [-79.171228, 37.295451],\n          [-79.171707, 37.296402],\n          [-79.171854, 37.296694],\n          [-79.172057, 37.297099],\n          [-79.172329, 37.297639],\n          [-79.172756, 37.298485],\n          [-79.172921, 37.29877],\n          [-79.173118, 37.299071],\n          [-79.173326, 37.299351],\n          [-79.1734, 37.299443],\n          [-79.173711, 37.299824],\n          [-79.174643, 37.300928],\n          [-79.177789, 37.304649],\n          [-79.17841, 37.305383],\n          [-79.179563, 37.306751],\n          [-79.18128, 37.308787],\n          [-79.181492, 37.309036],\n          [-79.181949, 37.309573],\n          [-79.182599, 37.310336],\n          [-79.183198, 37.311046],\n          [-79.183775, 37.311729],\n          [-79.183964, 37.311947],\n          [-79.18428, 37.312314],\n          [-79.18536, 37.313557],\n          [-79.18553, 37.313753],\n          [-79.18588, 37.314159],\n          [-79.186286, 37.314624],\n          [-79.186592, 37.314975],\n          [-79.186893, 37.31532],\n          [-79.187155, 37.315623],\n          [-79.187287, 37.315796],\n          [-79.187433, 37.315958],\n          [-79.187603, 37.316193],\n          [-79.187705, 37.316348],\n          [-79.187781, 37.316469],\n          [-79.187895, 37.316666],\n          [-79.188063, 37.316995],\n          [-79.188211, 37.31734],\n          [-79.188267, 37.317488],\n          [-79.188574, 37.31828],\n          [-79.18873, 37.318682],\n          [-79.188773, 37.318793],\n          [-79.188818, 37.318907],\n          [-79.188983, 37.319332],\n          [-79.189167, 37.319817],\n          [-79.18919, 37.319881],\n          [-79.189276, 37.320122],\n          [-79.189293, 37.320183],\n          [-79.189372, 37.320484],\n          [-79.189407, 37.320635],\n          [-79.189445, 37.320825],\n          [-79.189477, 37.321015],\n          [-79.189492, 37.321115],\n          [-79.189533, 37.321458],\n          [-79.189536, 37.321492],\n          [-79.189586, 37.322119],\n          [-79.189602, 37.322319],\n          [-79.189637, 37.32275],\n          [-79.189647, 37.322876],\n          [-79.189704, 37.323523],\n          [-79.189737, 37.323892],\n          [-79.189747, 37.323997],\n          [-79.189761, 37.324147],\n          [-79.189781, 37.324375],\n          [-79.189798, 37.324545],\n          [-79.189823, 37.324722],\n          [-79.189861, 37.324935],\n          [-79.189896, 37.325095],\n          [-79.189922, 37.3252],\n          [-79.190034, 37.325593],\n          [-79.190115, 37.325884],\n          [-79.190279, 37.326471],\n          [-79.190558, 37.327468],\n          [-79.190626, 37.327737],\n          [-79.190656, 37.327855],\n          [-79.190719, 37.328102],\n          [-79.190893, 37.328783],\n          [-79.19093, 37.328914],\n          [-79.19114, 37.329665],\n          [-79.191197, 37.329849],\n          [-79.191289, 37.330174],\n          [-79.191411, 37.330604],\n          [-79.191427, 37.330662],\n          [-79.191549, 37.331144],\n          [-79.191612, 37.331407],\n          [-79.191674, 37.33166],\n          [-79.191713, 37.331945],\n          [-79.191731, 37.332216],\n          [-79.191727, 37.3324],\n          [-79.191718, 37.332618],\n          [-79.191688, 37.333114],\n          [-79.191671, 37.333265],\n          [-79.191652, 37.333506],\n          [-79.191625, 37.33369],\n          [-79.191591, 37.333978],\n          [-79.191586, 37.334109],\n          [-79.191605, 37.334336],\n          [-79.19161, 37.334672],\n          [-79.191612, 37.334771],\n          [-79.191619, 37.335165],\n          [-79.191615, 37.335425],\n          [-79.191612, 37.335464],\n          [-79.191591, 37.335798],\n          [-79.191573, 37.33597],\n          [-79.19153, 37.336198],\n          [-79.191511, 37.3363],\n          [-79.191476, 37.336481],\n          [-79.191396, 37.336901],\n          [-79.191254, 37.33724],\n          [-79.191108, 37.337564],\n          [-79.190891, 37.337852],\n          [-79.190707, 37.338004],\n          [-79.190446, 37.338136],\n          [-79.190159, 37.338232],\n          [-79.189809, 37.338303],\n          [-79.189504, 37.338343],\n          [-79.189039, 37.338414],\n          [-79.188663, 37.33847],\n          [-79.188351, 37.338526],\n          [-79.18802, 37.338571],\n          [-79.18767, 37.338617],\n          [-79.187276, 37.338677],\n          [-79.18683, 37.338758],\n          [-79.186448, 37.338854],\n          [-79.186232, 37.338986],\n          [-79.186034, 37.339158],\n          [-79.185913, 37.339381],\n          [-79.185862, 37.339654],\n          [-79.185792, 37.339958],\n          [-79.185735, 37.340246],\n          [-79.185608, 37.340565],\n          [-79.185474, 37.340849],\n          [-79.185264, 37.341152],\n          [-79.185009, 37.341421],\n          [-79.184748, 37.341658],\n          [-79.184399, 37.341989],\n          [-79.184093, 37.342254],\n          [-79.183658, 37.342682],\n          [-79.18294, 37.343536],\n          [-79.182113, 37.344505],\n          [-79.181077, 37.345699],\n          [-79.180004, 37.346871],\n          [-79.178729, 37.348196],\n          [-79.177389, 37.349407],\n          [-79.177129, 37.349621],\n          [-79.176626, 37.350036],\n          [-79.173129, 37.353092],\n          [-79.169752, 37.356318],\n          [-79.169186, 37.356859],\n          [-79.166439, 37.359647],\n          [-79.165165, 37.360856],\n          [-79.164528, 37.361444],\n          [-79.163946, 37.361878],\n          [-79.162943, 37.362614],\n          [-79.161891, 37.363349],\n          [-79.159885, 37.364693],\n          [-79.158866, 37.365389],\n          [-79.157915, 37.36609],\n          [-79.156262, 37.367299],\n          [-79.153378, 37.36939],\n          [-79.1513, 37.370777],\n          [-79.148798, 37.372337],\n          [-79.146813, 37.373529],\n          [-79.146135, 37.37394],\n          [-79.145298, 37.374385],\n          [-79.144399, 37.374808],\n          [-79.143032, 37.375351],\n          [-79.142887, 37.375396],\n          [-79.141407, 37.375861],\n          [-79.13952, 37.376309],\n          [-79.137442, 37.376753],\n          [-79.136385, 37.376976],\n          [-79.135221, 37.37722],\n          [-79.134065, 37.377456],\n          [-79.132756, 37.377733],\n          [-79.131505, 37.377997],\n          [-79.130701, 37.378165],\n          [-79.129655, 37.378385],\n          [-79.128812, 37.378561],\n          [-79.127809, 37.378776],\n          [-79.127166, 37.378891],\n          [-79.124907, 37.379433],\n          [-79.122351, 37.380007],\n          [-79.119924, 37.380555],\n          [-79.118369, 37.380958],\n          [-79.116892, 37.381492],\n          [-79.11429, 37.382508],\n          [-79.111589, 37.383564],\n          [-79.110432, 37.384015],\n          [-79.108723, 37.384663],\n          [-79.107004, 37.385341],\n          [-79.10533, 37.38597],\n          [-79.10529, 37.385969],\n          [-79.104874, 37.386095],\n          [-79.104406, 37.386191],\n          [-79.103958, 37.38624],\n          [-79.103328, 37.386271],\n          [-79.101681, 37.386155],\n          [-79.101144, 37.386117],\n          [-79.100418, 37.386038],\n          [-79.097991, 37.385843],\n          [-79.09636, 37.385744],\n          [-79.095982, 37.385658],\n          [-79.095845, 37.385614],\n          [-79.09571, 37.385555],\n          [-79.095567, 37.38548],\n          [-79.095427, 37.38539],\n          [-79.095308, 37.385296],\n          [-79.09517, 37.385161],\n          [-79.09509, 37.385054],\n          [-79.094998, 37.384905],\n          [-79.094916, 37.384737],\n          [-79.094844, 37.384528],\n          [-79.094656, 37.383845],\n          [-79.094531, 37.38345],\n          [-79.094325, 37.383054],\n          [-79.094038, 37.38276],\n          [-79.093621, 37.382467],\n          [-79.093187, 37.382294],\n          [-79.092689, 37.382201],\n          [-79.092284, 37.382201],\n          [-79.091903, 37.382257],\n          [-79.091551, 37.382364],\n          [-79.091187, 37.382541],\n          [-79.090959, 37.382723],\n          [-79.090789, 37.382882],\n          [-79.090589, 37.383115],\n          [-79.090443, 37.383376],\n          [-79.090284, 37.383744],\n          [-79.090225, 37.384],\n          [-79.090179, 37.384541],\n          [-79.090062, 37.385779],\n          [-79.089925, 37.386644],\n          [-79.089849, 37.387226],\n          [-79.089779, 37.387541],\n          [-79.089689, 37.387836],\n          [-79.0895, 37.38838],\n          [-79.089436, 37.388633],\n          [-79.089405, 37.388841],\n          [-79.089289, 37.389685],\n          [-79.089161, 37.39093],\n          [-79.089008, 37.392008],\n          [-79.08881, 37.394069],\n          [-79.088768, 37.394579],\n          [-79.088645, 37.395885],\n          [-79.088477, 37.397207],\n          [-79.087956, 37.401181],\n          [-79.087825, 37.401823],\n          [-79.087665, 37.402308],\n          [-79.087554, 37.402629],\n          [-79.08736, 37.403142],\n          [-79.087142, 37.403562],\n          [-79.086923, 37.403937],\n          [-79.086762, 37.404195],\n          [-79.086439, 37.404708],\n          [-79.086251, 37.405002],\n          [-79.085982, 37.405393],\n          [-79.085647, 37.405896],\n          [-79.085037, 37.406824],\n          [-79.084691, 37.407346],\n          [-79.084239, 37.407998],\n          [-79.084081, 37.408208],\n          [-79.083969, 37.408376],\n          [-79.083852, 37.408534],\n          [-79.083752, 37.408705],\n          [-79.083641, 37.408893],\n          [-79.08253, 37.41059],\n          [-79.082107, 37.41155],\n          [-79.081937, 37.412163],\n          [-79.081833, 37.412538],\n          [-79.081757, 37.413176],\n          [-79.08171, 37.413903],\n          [-79.081751, 37.414774],\n          [-79.081781, 37.415758],\n          [-79.081777, 37.417393],\n          [-79.081646, 37.41901],\n          [-79.081485, 37.420256],\n          [-79.081292, 37.421219],\n          [-79.081057, 37.422257],\n          [-79.080513, 37.424117],\n          [-79.07951, 37.427155],\n          [-79.078061, 37.431195],\n          [-79.077269, 37.433524],\n          [-79.076993, 37.434391],\n          [-79.076647, 37.435495],\n          [-79.076395, 37.436608],\n          [-79.076304, 37.437254],\n          [-79.076229, 37.438019],\n          [-79.076213, 37.439312],\n          [-79.076213, 37.439413],\n          [-79.076155, 37.442774],\n          [-79.07614, 37.443179],\n          [-79.076116, 37.443841],\n          [-79.076046, 37.446058],\n          [-79.075976, 37.449173],\n          [-79.076002, 37.451689],\n          [-79.076065, 37.4523],\n          [-79.076262, 37.453],\n          [-79.076579, 37.453683],\n          [-79.076982, 37.454312],\n          [-79.077536, 37.45501],\n          [-79.079739, 37.457229],\n          [-79.080689, 37.458217],\n          [-79.081531, 37.459252],\n          [-79.082085, 37.460038],\n          [-79.082441, 37.460738],\n          [-79.082708, 37.461304],\n          [-79.082968, 37.461981],\n          [-79.083137, 37.462694],\n          [-79.083265, 37.463513],\n          [-79.083293, 37.464338],\n          [-79.083287, 37.464745],\n          [-79.083277, 37.465166],\n          [-79.083236, 37.465743],\n          [-79.083136, 37.466259],\n          [-79.082678, 37.468029],\n          [-79.082438, 37.469156],\n          [-79.08215, 37.470371],\n          [-79.081963, 37.471033],\n          [-79.081827, 37.471415],\n          [-79.081408, 37.472342],\n          [-79.081005, 37.47309],\n          [-79.080296, 37.474045],\n          [-79.079641, 37.474751],\n          [-79.078249, 37.476094],\n          [-79.077451, 37.477058],\n          [-79.076776, 37.477863],\n          [-79.076213, 37.478711],\n          [-79.075638, 37.479763],\n          [-79.075274, 37.480624],\n          [-79.074869, 37.481821],\n          [-79.074675, 37.482594],\n          [-79.074634, 37.482892],\n          [-79.074593, 37.483204],\n          [-79.07457, 37.483627],\n          [-79.074448, 37.484732],\n          [-79.074331, 37.485753],\n          [-79.074167, 37.486518],\n          [-79.073888, 37.487326],\n          [-79.073467, 37.488074],\n          [-79.07305, 37.488846],\n          [-79.072616, 37.489619],\n          [-79.072018, 37.490699],\n          [-79.07163, 37.49136],\n          [-79.070791, 37.492896],\n          [-79.070146, 37.494186],\n          [-79.06953, 37.495438],\n          [-79.068703, 37.497026],\n          [-79.067817, 37.498799],\n          [-79.067177, 37.500098],\n          [-79.066497, 37.501471],\n          [-79.066168, 37.502341],\n          [-79.065974, 37.503063],\n          [-79.065895, 37.503746],\n          [-79.065857, 37.504329],\n          [-79.065851, 37.505804],\n          [-79.065851, 37.506847],\n          [-79.065828, 37.508187],\n          [-79.065831, 37.509824],\n          [-79.0658, 37.510657],\n          [-79.065769, 37.511273],\n          [-79.065628, 37.51191],\n          [-79.065455, 37.512506],\n          [-79.065165, 37.513111],\n          [-79.064807, 37.513823],\n          [-79.064426, 37.514512],\n          [-79.063986, 37.515424],\n          [-79.063804, 37.515903],\n          [-79.063545, 37.516788],\n          [-79.063328, 37.51796],\n          [-79.063264, 37.519296],\n          [-79.063311, 37.520208],\n          [-79.063487, 37.521209],\n          [-79.063645, 37.522214],\n          [-79.063845, 37.523275],\n          [-79.06425, 37.525364],\n          [-79.064871, 37.528602],\n          [-79.065376, 37.531264],\n          [-79.066057, 37.534819],\n          [-79.066725, 37.538252],\n          [-79.0674, 37.541904],\n          [-79.06794, 37.544546],\n          [-79.068021, 37.545221],\n          [-79.068093, 37.545891],\n          [-79.068075, 37.546616],\n          [-79.067977, 37.547323],\n          [-79.067805, 37.547989],\n          [-79.06729, 37.549617],\n          [-79.066508, 37.552189],\n          [-79.066203, 37.55312],\n          [-79.065916, 37.554199],\n          [-79.06571, 37.554864],\n          [-79.065358, 37.555901],\n          [-79.06462, 37.558162],\n          [-79.064236, 37.559374],\n          [-79.064086, 37.559848],\n          [-79.063835, 37.560896],\n          [-79.063609, 37.561383],\n          [-79.063256, 37.561986],\n          [-79.062896, 37.562503],\n          [-79.062134, 37.563345],\n          [-79.061625, 37.563753],\n          [-79.06094, 37.564213],\n          [-79.058641, 37.565583],\n          [-79.05758, 37.566208],\n          [-79.056639, 37.566768],\n          [-79.055935, 37.567192],\n          [-79.055742, 37.567302],\n          [-79.055553, 37.567416],\n          [-79.055246, 37.567615],\n          [-79.054927, 37.567838],\n          [-79.054748, 37.567977],\n          [-79.054525, 37.568169],\n          [-79.05429, 37.568391],\n          [-79.054239, 37.568442],\n          [-79.054034, 37.568657],\n          [-79.053873, 37.56885],\n          [-79.053657, 37.569143],\n          [-79.053524, 37.569347],\n          [-79.053368, 37.569618],\n          [-79.053228, 37.569894],\n          [-79.053172, 37.570026],\n          [-79.053043, 37.570358],\n          [-79.05286, 37.57095],\n          [-79.052677, 37.571527],\n          [-79.052485, 37.572133],\n          [-79.052132, 37.573261],\n          [-79.051632, 37.57486],\n          [-79.051348, 37.57574],\n          [-79.051123, 37.576286],\n          [-79.051087, 37.576361],\n          [-79.050788, 37.576916],\n          [-79.050662, 37.577116],\n          [-79.050472, 37.577395],\n          [-79.050278, 37.577652],\n          [-79.050057, 37.577924],\n          [-79.049759, 37.578262],\n          [-79.049412, 37.578608],\n          [-79.049047, 37.578931],\n          [-79.047001, 37.580602],\n          [-79.046515, 37.580994],\n          [-79.046166, 37.58126],\n          [-79.045909, 37.581455],\n          [-79.04561, 37.58167],\n          [-79.045264, 37.581887],\n          [-79.044961, 37.582077],\n          [-79.044149, 37.582573],\n          [-79.04353, 37.582927],\n          [-79.04291, 37.58327],\n          [-79.042129, 37.58371],\n          [-79.041873, 37.583864],\n          [-79.041806, 37.58391],\n          [-79.041621, 37.584017],\n          [-79.041414, 37.584155],\n          [-79.041178, 37.58431],\n          [-79.040635, 37.584689],\n          [-79.039894, 37.585255],\n          [-79.039608, 37.585491],\n          [-79.03912, 37.585904],\n          [-79.038845, 37.586155],\n          [-79.038474, 37.586513],\n          [-79.03781, 37.587198],\n          [-79.037358, 37.587719],\n          [-79.037086, 37.588056],\n          [-79.036877, 37.588331],\n          [-79.036498, 37.588836],\n          [-79.036258, 37.589205],\n          [-79.035926, 37.589739],\n          [-79.034645, 37.591992],\n          [-79.034482, 37.592286],\n          [-79.034097, 37.592957],\n          [-79.033913, 37.593255],\n          [-79.033669, 37.593669],\n          [-79.033006, 37.594819],\n          [-79.032654, 37.595452],\n          [-79.032044, 37.596522],\n          [-79.031678, 37.597159],\n          [-79.031353, 37.597735],\n          [-79.03004, 37.600074],\n          [-79.029644, 37.600763],\n          [-79.028963, 37.601951],\n          [-79.028685, 37.602397],\n          [-79.02851, 37.602662],\n          [-79.028221, 37.603043],\n          [-79.027978, 37.603341],\n          [-79.027692, 37.60368],\n          [-79.027548, 37.60383],\n          [-79.027306, 37.604072],\n          [-79.027105, 37.604269],\n          [-79.02697, 37.604392],\n          [-79.026652, 37.60468],\n          [-79.026083, 37.605207],\n          [-79.026036, 37.60525],\n          [-79.025989, 37.605294],\n          [-79.025872, 37.605402],\n          [-79.02555, 37.605685],\n          [-79.025303, 37.605893],\n          [-79.025239, 37.605951],\n          [-79.025075, 37.606102],\n          [-79.024795, 37.606358],\n          [-79.024408, 37.606702],\n          [-79.024072, 37.607013],\n          [-79.024053, 37.607031],\n          [-79.023787, 37.607264],\n          [-79.023498, 37.607516],\n          [-79.023027, 37.607911],\n          [-79.022811, 37.60807],\n          [-79.022583, 37.608218],\n          [-79.022393, 37.608329],\n          [-79.022103, 37.608478],\n          [-79.021864, 37.608585],\n          [-79.021424, 37.608752],\n          [-79.020855, 37.608965],\n          [-79.020271, 37.609195],\n          [-79.020171, 37.609236],\n          [-79.019921, 37.609348],\n          [-79.019569, 37.609526],\n          [-79.019341, 37.609661],\n          [-79.019134, 37.609801],\n          [-79.018938, 37.609951],\n          [-79.018736, 37.61013],\n          [-79.018557, 37.610318],\n          [-79.018408, 37.6105],\n          [-79.018273, 37.610689],\n          [-79.018177, 37.610845],\n          [-79.018077, 37.611005],\n          [-79.017942, 37.61127],\n          [-79.01775, 37.611733],\n          [-79.017583, 37.612195],\n          [-79.017453, 37.612536],\n          [-79.01736, 37.612779],\n          [-79.017077, 37.613518],\n          [-79.016316, 37.615651],\n          [-79.016211, 37.615921],\n          [-79.015957, 37.616661],\n          [-79.015442, 37.618041],\n          [-79.015171, 37.618767],\n          [-79.015044, 37.619085],\n          [-79.014896, 37.619401],\n          [-79.014725, 37.619699],\n          [-79.014609, 37.619891],\n          [-79.014507, 37.620046],\n          [-79.014326, 37.620291],\n          [-79.014076, 37.620611],\n          [-79.013882, 37.620808],\n          [-79.013583, 37.621079],\n          [-79.012998, 37.621504],\n          [-79.01238, 37.621893],\n          [-79.010646, 37.622959],\n          [-79.01003, 37.623323],\n          [-79.009112, 37.623886],\n          [-79.007841, 37.62468],\n          [-79.007669, 37.624786],\n          [-79.00613, 37.625753],\n          [-79.00574, 37.625992],\n          [-79.004933, 37.626484],\n          [-79.004251, 37.626912],\n          [-79.004139, 37.626981],\n          [-79.003154, 37.627592],\n          [-79.001641, 37.628516],\n          [-79.001111, 37.628835],\n          [-79.00072, 37.62907],\n          [-79.000623, 37.62914],\n          [-79.000217, 37.629394],\n          [-78.998912, 37.630202],\n          [-78.998196, 37.630645],\n          [-78.997598, 37.631025],\n          [-78.997526, 37.631071],\n          [-78.997241, 37.631274],\n          [-78.996875, 37.631534],\n          [-78.996217, 37.63205],\n          [-78.995656, 37.632525],\n          [-78.995017, 37.633129],\n          [-78.994464, 37.633668],\n          [-78.993794, 37.634338],\n          [-78.992582, 37.635539],\n          [-78.99241, 37.635715],\n          [-78.992112, 37.636],\n          [-78.991971, 37.636127],\n          [-78.991598, 37.636454],\n          [-78.991319, 37.636676],\n          [-78.991111, 37.636827],\n          [-78.990724, 37.637089],\n          [-78.990344, 37.637324],\n          [-78.989967, 37.637537],\n          [-78.989578, 37.637737],\n          [-78.988855, 37.638052],\n          [-78.98807, 37.638382],\n          [-78.986736, 37.63892],\n          [-78.986454, 37.639034],\n          [-78.985803, 37.639316],\n          [-78.984897, 37.639687],\n          [-78.98388, 37.640096],\n          [-78.983117, 37.640414],\n          [-78.982726, 37.640573],\n          [-78.981774, 37.640959],\n          [-78.979687, 37.64182],\n          [-78.978231, 37.642417],\n          [-78.977005, 37.64291],\n          [-78.97646, 37.643116],\n          [-78.975777, 37.643333],\n          [-78.975711, 37.643354],\n          [-78.97542, 37.643425],\n          [-78.974834, 37.643551],\n          [-78.974604, 37.64359],\n          [-78.974067, 37.643681],\n          [-78.973393, 37.643752],\n          [-78.972559, 37.643813],\n          [-78.972242, 37.643839],\n          [-78.970006, 37.64399],\n          [-78.96903, 37.64406],\n          [-78.968589, 37.644095],\n          [-78.968224, 37.644136],\n          [-78.967889, 37.644182],\n          [-78.967664, 37.644226],\n          [-78.967387, 37.644293],\n          [-78.967224, 37.644341],\n          [-78.966957, 37.64443],\n          [-78.966688, 37.644536],\n          [-78.966474, 37.644631],\n          [-78.966164, 37.644789],\n          [-78.965983, 37.644902],\n          [-78.965692, 37.645098],\n          [-78.965428, 37.645294],\n          [-78.965238, 37.645456],\n          [-78.965063, 37.645628],\n          [-78.964898, 37.645816],\n          [-78.964762, 37.645992],\n          [-78.964605, 37.646219],\n          [-78.964465, 37.646453],\n          [-78.964354, 37.646672],\n          [-78.96426, 37.646896],\n          [-78.964184, 37.647124],\n          [-78.964105, 37.647472],\n          [-78.964045, 37.647822],\n          [-78.963795, 37.650137],\n          [-78.963771, 37.650446],\n          [-78.963726, 37.650831],\n          [-78.963699, 37.651104],\n          [-78.963637, 37.651545],\n          [-78.963559, 37.651968],\n          [-78.963475, 37.652244],\n          [-78.963403, 37.652439],\n          [-78.963343, 37.65259],\n          [-78.963259, 37.652771],\n          [-78.963211, 37.652855],\n          [-78.963159, 37.652948],\n          [-78.963044, 37.653119],\n          [-78.962876, 37.65334],\n          [-78.962692, 37.653554],\n          [-78.961989, 37.654258],\n          [-78.961507, 37.654728],\n          [-78.961039, 37.655181],\n          [-78.960337, 37.655875],\n          [-78.96023, 37.655972],\n          [-78.960126, 37.656071],\n          [-78.959777, 37.656385],\n          [-78.959596, 37.656559],\n          [-78.959428, 37.656733],\n          [-78.95894, 37.657212],\n          [-78.958347, 37.65781],\n          [-78.957955, 37.658265],\n          [-78.957902, 37.65834],\n          [-78.957703, 37.658582],\n          [-78.956957, 37.659613],\n          [-78.956, 37.660952],\n          [-78.95555, 37.661601],\n          [-78.95521, 37.662149],\n          [-78.955078, 37.662367],\n          [-78.954742, 37.662988],\n          [-78.954584, 37.663297],\n          [-78.954305, 37.663917],\n          [-78.954148, 37.6643],\n          [-78.953981, 37.664751],\n          [-78.953842, 37.665162],\n          [-78.953791, 37.665348],\n          [-78.953693, 37.665702],\n          [-78.953658, 37.665836],\n          [-78.953519, 37.666441],\n          [-78.953449, 37.666806],\n          [-78.953407, 37.667104],\n          [-78.953324, 37.667763],\n          [-78.953292, 37.668183],\n          [-78.953221, 37.669156],\n          [-78.953153, 37.670098],\n          [-78.953142, 37.670264],\n          [-78.953141, 37.6704],\n          [-78.953072, 37.671177],\n          [-78.95304, 37.671615],\n          [-78.952995, 37.672174],\n          [-78.952947, 37.672942],\n          [-78.95292, 37.673225],\n          [-78.952878, 37.673819],\n          [-78.952829, 37.674339],\n          [-78.952797, 37.674686],\n          [-78.952784, 37.674804],\n          [-78.952747, 37.675024],\n          [-78.952692, 37.675301],\n          [-78.952624, 37.675578],\n          [-78.952561, 37.675784],\n          [-78.952486, 37.675985],\n          [-78.952442, 37.676122],\n          [-78.952386, 37.676257],\n          [-78.95232, 37.676433],\n          [-78.952115, 37.676852],\n          [-78.952045, 37.676981],\n          [-78.951895, 37.677259],\n          [-78.951765, 37.677478],\n          [-78.951015, 37.678688],\n          [-78.950642, 37.679294],\n          [-78.950106, 37.680167],\n          [-78.949932, 37.680439],\n          [-78.949555, 37.681057],\n          [-78.948514, 37.682749],\n          [-78.948346, 37.683014],\n          [-78.94819, 37.68327],\n          [-78.947933, 37.683687],\n          [-78.947735, 37.683997],\n          [-78.946949, 37.685284],\n          [-78.946763, 37.685577],\n          [-78.946171, 37.686544],\n          [-78.946077, 37.686718],\n          [-78.945972, 37.686928],\n          [-78.945848, 37.687201],\n          [-78.945794, 37.687349],\n          [-78.945689, 37.687661],\n          [-78.945632, 37.687901],\n          [-78.945568, 37.688266],\n          [-78.945541, 37.688542],\n          [-78.945537, 37.688659],\n          [-78.945545, 37.689126],\n          [-78.945579, 37.689434],\n          [-78.945664, 37.689907],\n          [-78.945683, 37.68999],\n          [-78.945776, 37.690456],\n          [-78.945835, 37.69071],\n          [-78.945961, 37.691323],\n          [-78.946182, 37.69241],\n          [-78.946237, 37.692788],\n          [-78.946274, 37.693085],\n          [-78.946296, 37.693491],\n          [-78.946303, 37.694022],\n          [-78.946301, 37.694057],\n          [-78.946287, 37.694387],\n          [-78.946261, 37.694709],\n          [-78.946249, 37.694805],\n          [-78.946182, 37.695293],\n          [-78.946055, 37.695876],\n          [-78.945864, 37.696567],\n          [-78.945405, 37.698162],\n          [-78.945298, 37.698548],\n          [-78.944826, 37.700186],\n          [-78.944719, 37.700501],\n          [-78.94458, 37.700835],\n          [-78.944457, 37.701074],\n          [-78.944324, 37.701307],\n          [-78.944135, 37.701595],\n          [-78.944026, 37.701738],\n          [-78.943778, 37.70202],\n          [-78.943504, 37.702305],\n          [-78.943214, 37.702564],\n          [-78.94302, 37.702719],\n          [-78.942935, 37.702779],\n          [-78.942809, 37.702868],\n          [-78.942485, 37.703077],\n          [-78.942218, 37.703232],\n          [-78.9405, 37.704132],\n          [-78.940455, 37.704155],\n          [-78.940006, 37.704381],\n          [-78.938227, 37.705302],\n          [-78.93698, 37.705948],\n          [-78.93647, 37.706225],\n          [-78.93488, 37.707122],\n          [-78.934646, 37.707256],\n          [-78.93388, 37.707679],\n          [-78.933448, 37.707924],\n          [-78.932774, 37.708305],\n          [-78.931107, 37.709235],\n          [-78.929365, 37.710215],\n          [-78.928987, 37.710423],\n          [-78.928188, 37.710873],\n          [-78.927848, 37.711058],\n          [-78.927739, 37.711117],\n          [-78.927286, 37.71134],\n          [-78.927035, 37.711449],\n          [-78.926705, 37.711572],\n          [-78.926357, 37.711684],\n          [-78.926015, 37.711773],\n          [-78.925764, 37.711831],\n          [-78.925742, 37.711836],\n          [-78.925395, 37.711899],\n          [-78.925098, 37.711943],\n          [-78.92463, 37.712006],\n          [-78.924358, 37.71204],\n          [-78.9241, 37.712072],\n          [-78.923317, 37.712168],\n          [-78.922673, 37.712257],\n          [-78.921644, 37.712386],\n          [-78.920771, 37.712503],\n          [-78.91879, 37.712755],\n          [-78.917763, 37.712894],\n          [-78.916758, 37.713029],\n          [-78.916316, 37.713107],\n          [-78.915891, 37.713204],\n          [-78.915614, 37.71328],\n          [-78.915324, 37.713372],\n          [-78.915274, 37.713388],\n          [-78.914912, 37.71352],\n          [-78.91455, 37.71367],\n          [-78.914179, 37.713842],\n          [-78.913675, 37.714085],\n          [-78.912967, 37.714415],\n          [-78.910226, 37.715714],\n          [-78.90939, 37.716116],\n          [-78.908844, 37.716378],\n          [-78.908565, 37.716525],\n          [-78.908344, 37.716654],\n          [-78.908223, 37.716733],\n          [-78.907898, 37.716972],\n          [-78.907709, 37.71712],\n          [-78.907284, 37.717479],\n          [-78.905705, 37.718784],\n          [-78.905314, 37.719084],\n          [-78.90491, 37.719372],\n          [-78.904525, 37.719604],\n          [-78.904033, 37.719882],\n          [-78.903337, 37.720265],\n          [-78.902528, 37.720722],\n          [-78.902455, 37.720766],\n          [-78.902055, 37.720998],\n          [-78.901704, 37.721237],\n          [-78.901372, 37.721492],\n          [-78.901207, 37.721632],\n          [-78.901102, 37.721732],\n          [-78.90093, 37.721897],\n          [-78.900791, 37.722043],\n          [-78.900736, 37.722103],\n          [-78.900601, 37.722261],\n          [-78.900394, 37.722523],\n          [-78.900222, 37.722764],\n          [-78.900079, 37.722992],\n          [-78.900004, 37.723131],\n          [-78.899716, 37.723665],\n          [-78.899467, 37.724145],\n          [-78.899406, 37.724274],\n          [-78.89922, 37.72461],\n          [-78.899008, 37.725016],\n          [-78.898838, 37.725322],\n          [-78.898749, 37.725462],\n          [-78.898619, 37.725684],\n          [-78.898501, 37.725886],\n          [-78.898424, 37.726009],\n          [-78.898396, 37.726054],\n          [-78.89823, 37.726333],\n          [-78.897785, 37.72702],\n          [-78.897326, 37.727687],\n          [-78.897029, 37.728104],\n          [-78.896755, 37.72847],\n          [-78.896087, 37.729327],\n          [-78.895376, 37.730223],\n          [-78.89492, 37.73078],\n          [-78.894224, 37.731648],\n          [-78.893951, 37.731982],\n          [-78.893208, 37.732922],\n          [-78.893101, 37.733073],\n          [-78.892951, 37.733284],\n          [-78.892829, 37.733486],\n          [-78.892725, 37.733694],\n          [-78.892653, 37.733852],\n          [-78.892395, 37.734583],\n          [-78.892264, 37.735006],\n          [-78.891874, 37.73617],\n          [-78.891809, 37.736394],\n          [-78.891615, 37.736972],\n          [-78.891508, 37.737307],\n          [-78.891316, 37.737819],\n          [-78.891154, 37.738191],\n          [-78.891075, 37.738356],\n          [-78.891011, 37.738485],\n          [-78.890701, 37.739024],\n          [-78.890539, 37.739262],\n          [-78.890353, 37.739521],\n          [-78.890119, 37.739847],\n          [-78.889796, 37.740253],\n          [-78.889491, 37.740645],\n          [-78.889217, 37.740996],\n          [-78.888944, 37.74133],\n          [-78.888623, 37.741743],\n          [-78.888513, 37.741886],\n          [-78.888267, 37.742188],\n          [-78.887876, 37.742653],\n          [-78.887675, 37.74287],\n          [-78.887504, 37.743037],\n          [-78.887277, 37.743237],\n          [-78.887216, 37.743287],\n          [-78.887135, 37.743353],\n          [-78.886534, 37.743824],\n          [-78.886162, 37.744125],\n          [-78.8861, 37.744182],\n          [-78.885899, 37.744355],\n          [-78.885622, 37.744575],\n          [-78.885356, 37.74478],\n          [-78.884605, 37.745388],\n          [-78.884042, 37.74585],\n          [-78.882882, 37.746752],\n          [-78.882051, 37.747417],\n          [-78.880834, 37.748391],\n          [-78.88003, 37.749038],\n          [-78.879751, 37.749271],\n          [-78.879568, 37.74942],\n          [-78.879376, 37.749569],\n          [-78.878419, 37.750353],\n          [-78.877854, 37.750804],\n          [-78.877584, 37.751037],\n          [-78.877286, 37.751315],\n          [-78.877004, 37.751598],\n          [-78.876844, 37.751774],\n          [-78.876626, 37.752042],\n          [-78.876378, 37.752385],\n          [-78.876192, 37.752665],\n          [-78.876061, 37.752882],\n          [-78.875814, 37.753345],\n          [-78.875209, 37.754691],\n          [-78.874619, 37.756931],\n          [-78.874501, 37.757307],\n          [-78.874339, 37.757855],\n          [-78.873994, 37.758979],\n          [-78.873789, 37.759637],\n          [-78.873696, 37.75991],\n          [-78.873541, 37.760318],\n          [-78.873332, 37.760834],\n          [-78.873094, 37.761337],\n          [-78.872847, 37.761808],\n          [-78.872451, 37.762468],\n          [-78.872257, 37.76277],\n          [-78.871993, 37.763172],\n          [-78.871574, 37.763799],\n          [-78.871327, 37.764167],\n          [-78.871012, 37.764642],\n          [-78.870469, 37.765468],\n          [-78.870316, 37.765702],\n          [-78.870042, 37.766126],\n          [-78.869873, 37.766412],\n          [-78.869781, 37.766589],\n          [-78.869687, 37.766814],\n          [-78.869585, 37.76708],\n          [-78.869516, 37.767314],\n          [-78.869424, 37.767698],\n          [-78.869391, 37.767942],\n          [-78.86938, 37.768238],\n          [-78.869389, 37.768459],\n          [-78.869415, 37.768673],\n          [-78.869485, 37.768991],\n          [-78.869567, 37.769255],\n          [-78.86966, 37.769515],\n          [-78.869743, 37.769714],\n          [-78.869793, 37.769822],\n          [-78.870127, 37.770634],\n          [-78.870244, 37.770938],\n          [-78.870299, 37.771157],\n          [-78.870337, 37.771378],\n          [-78.870379, 37.771605],\n          [-78.870392, 37.771879],\n          [-78.870378, 37.772127],\n          [-78.870337, 37.772397],\n          [-78.870272, 37.77267],\n          [-78.870248, 37.772764],\n          [-78.87004, 37.773562],\n          [-78.869728, 37.774718],\n          [-78.869574, 37.775264],\n          [-78.869411, 37.775864],\n          [-78.869234, 37.776522],\n          [-78.869061, 37.777151],\n          [-78.868889, 37.777735],\n          [-78.868643, 37.778648],\n          [-78.868399, 37.779571],\n          [-78.868224, 37.780198],\n          [-78.868067, 37.780782],\n          [-78.867497, 37.782893],\n          [-78.867434, 37.783141],\n          [-78.867364, 37.783414],\n          [-78.867185, 37.784047],\n          [-78.867156, 37.784152],\n          [-78.867042, 37.784562],\n          [-78.866921, 37.785054],\n          [-78.866779, 37.785508],\n          [-78.866518, 37.786333],\n          [-78.866458, 37.786501],\n          [-78.866348, 37.786832],\n          [-78.866066, 37.787709],\n          [-78.865703, 37.788816],\n          [-78.865457, 37.789659],\n          [-78.865164, 37.790592],\n          [-78.864927, 37.791345],\n          [-78.864619, 37.792175],\n          [-78.864507, 37.792484],\n          [-78.864363, 37.792792],\n          [-78.864228, 37.793041],\n          [-78.864067, 37.7933],\n          [-78.863882, 37.793548],\n          [-78.863684, 37.793797],\n          [-78.863319, 37.794211],\n          [-78.863117, 37.794344],\n          [-78.86295, 37.794541],\n          [-78.862701, 37.794857],\n          [-78.86248, 37.795184],\n          [-78.862275, 37.795518],\n          [-78.862199, 37.795651],\n          [-78.862007, 37.796159],\n          [-78.861989, 37.79622],\n          [-78.861909, 37.796548],\n          [-78.861883, 37.796687],\n          [-78.861846, 37.796942],\n          [-78.861828, 37.797235],\n          [-78.861827, 37.797529],\n          [-78.861837, 37.797754],\n          [-78.861844, 37.797901],\n          [-78.861878, 37.798631],\n          [-78.861919, 37.799738],\n          [-78.861971, 37.800826],\n          [-78.862007, 37.801869],\n          [-78.862081, 37.803303],\n          [-78.862104, 37.80423],\n          [-78.86209, 37.804437],\n          [-78.862063, 37.804642],\n          [-78.862038, 37.804754],\n          [-78.862023, 37.804816],\n          [-78.861947, 37.805046],\n          [-78.861861, 37.805246],\n          [-78.861771, 37.805437],\n          [-78.86165, 37.805634],\n          [-78.861512, 37.805817],\n          [-78.861343, 37.806004],\n          [-78.860353, 37.806994],\n          [-78.859848, 37.807481],\n          [-78.858512, 37.808821],\n          [-78.858367, 37.808958],\n          [-78.858079, 37.809211],\n          [-78.857729, 37.809505],\n          [-78.857293, 37.80986],\n          [-78.856987, 37.81009],\n          [-78.856658, 37.810338],\n          [-78.855693, 37.81105],\n          [-78.85561, 37.811115],\n          [-78.855262, 37.811371],\n          [-78.854965, 37.811605],\n          [-78.853694, 37.812587],\n          [-78.853389, 37.812818],\n          [-78.852362, 37.813637],\n          [-78.851981, 37.813912],\n          [-78.851517, 37.814266],\n          [-78.851057, 37.81462],\n          [-78.85085, 37.814768],\n          [-78.850729, 37.814859],\n          [-78.850652, 37.81492],\n          [-78.850085, 37.815369],\n          [-78.848637, 37.81648],\n          [-78.846503, 37.818117],\n          [-78.846263, 37.818303],\n          [-78.845641, 37.818784],\n          [-78.845198, 37.81912],\n          [-78.844287, 37.819835],\n          [-78.843809, 37.820229],\n          [-78.841255, 37.822413],\n          [-78.840635, 37.822925],\n          [-78.840114, 37.823377],\n          [-78.839772, 37.823685],\n          [-78.839408, 37.824047],\n          [-78.839049, 37.824425],\n          [-78.838766, 37.824737],\n          [-78.838386, 37.825182],\n          [-78.838147, 37.825481],\n          [-78.837849, 37.82588],\n          [-78.837407, 37.826506],\n          [-78.837204, 37.826823],\n          [-78.837053, 37.827081],\n          [-78.836731, 37.827595],\n          [-78.836452, 37.828104],\n          [-78.836275, 37.828399],\n          [-78.836111, 37.828667],\n          [-78.835849, 37.82912],\n          [-78.835504, 37.829691],\n          [-78.835352, 37.829945],\n          [-78.83498, 37.830568],\n          [-78.834935, 37.830642],\n          [-78.834826, 37.830821],\n          [-78.834646, 37.831137],\n          [-78.834377, 37.831577],\n          [-78.833853, 37.832462],\n          [-78.833724, 37.832692],\n          [-78.833217, 37.833546],\n          [-78.831919, 37.835713],\n          [-78.831568, 37.836263],\n          [-78.831293, 37.836637],\n          [-78.831013, 37.836981],\n          [-78.83077, 37.837252],\n          [-78.829687, 37.838434],\n          [-78.829526, 37.8386],\n          [-78.829353, 37.838766],\n          [-78.828845, 37.839208],\n          [-78.828553, 37.839442],\n          [-78.828248, 37.839665],\n          [-78.827736, 37.840071],\n          [-78.82744, 37.840316],\n          [-78.827359, 37.840393],\n          [-78.827219, 37.840526],\n          [-78.827033, 37.840723],\n          [-78.82681, 37.840985],\n          [-78.826636, 37.841213],\n          [-78.826324, 37.841668],\n          [-78.825848, 37.842321],\n          [-78.825635, 37.842569],\n          [-78.825481, 37.842727],\n          [-78.825276, 37.842917],\n          [-78.825211, 37.842971],\n          [-78.825103, 37.843062],\n          [-78.824902, 37.843225],\n          [-78.824735, 37.84334],\n          [-78.824467, 37.843502],\n          [-78.824206, 37.843652],\n          [-78.82312, 37.844198],\n          [-78.822611, 37.844456],\n          [-78.821878, 37.84482],\n          [-78.820981, 37.845244],\n          [-78.82067, 37.845389],\n          [-78.820264, 37.845536],\n          [-78.820038, 37.845598],\n          [-78.819873, 37.845635],\n          [-78.81967, 37.845683],\n          [-78.819501, 37.845707],\n          [-78.819221, 37.845735],\n          [-78.818871, 37.845752],\n          [-78.818684, 37.845746],\n          [-78.818377, 37.845729],\n          [-78.818065, 37.845689],\n          [-78.817748, 37.845635],\n          [-78.817461, 37.845563],\n          [-78.817089, 37.845456],\n          [-78.81664, 37.845308],\n          [-78.816094, 37.845137],\n          [-78.815801, 37.845042],\n          [-78.815106, 37.844835],\n          [-78.814203, 37.844545],\n          [-78.813661, 37.844372],\n          [-78.813194, 37.844227],\n          [-78.812793, 37.844119],\n          [-78.812466, 37.844059],\n          [-78.812161, 37.844015],\n          [-78.811899, 37.843994],\n          [-78.811692, 37.843985],\n          [-78.81145, 37.844002],\n          [-78.811288, 37.844022],\n          [-78.810966, 37.84409],\n          [-78.810704, 37.844162],\n          [-78.810498, 37.844229],\n          [-78.810246, 37.844336],\n          [-78.80993, 37.84449],\n          [-78.809727, 37.844605],\n          [-78.809573, 37.844705],\n          [-78.809276, 37.84492],\n          [-78.809029, 37.845076],\n          [-78.808807, 37.845199],\n          [-78.808527, 37.845332],\n          [-78.808311, 37.845419],\n          [-78.808089, 37.845498],\n          [-78.807811, 37.845579],\n          [-78.807589, 37.845643],\n          [-78.807297, 37.845708],\n          [-78.807, 37.845759],\n          [-78.806691, 37.845797],\n          [-78.806302, 37.845837],\n          [-78.805184, 37.845933],\n          [-78.80503, 37.845945],\n          [-78.804012, 37.846026],\n          [-78.800837, 37.846324],\n          [-78.800537, 37.846339],\n          [-78.800237, 37.846355],\n          [-78.800014, 37.846352],\n          [-78.79976, 37.846345],\n          [-78.799425, 37.846321],\n          [-78.799048, 37.846276],\n          [-78.79881, 37.846227],\n          [-78.798587, 37.846183],\n          [-78.798334, 37.846121],\n          [-78.798127, 37.846044],\n          [-78.797833, 37.845932],\n          [-78.797473, 37.845765],\n          [-78.797183, 37.845617],\n          [-78.796923, 37.845465],\n          [-78.796357, 37.845082],\n          [-78.795818, 37.844712],\n          [-78.795607, 37.84458],\n          [-78.795352, 37.844427],\n          [-78.795147, 37.84431],\n          [-78.794915, 37.844201],\n          [-78.794645, 37.844085],\n          [-78.794419, 37.843996],\n          [-78.794095, 37.843903],\n          [-78.793805, 37.843828],\n          [-78.793467, 37.843774],\n          [-78.793125, 37.84374],\n          [-78.792933, 37.843732],\n          [-78.792722, 37.843723],\n          [-78.792238, 37.84372],\n          [-78.791688, 37.843732],\n          [-78.791137, 37.843731],\n          [-78.790713, 37.843712],\n          [-78.790444, 37.843693],\n          [-78.79016, 37.843657],\n          [-78.78988, 37.843607],\n          [-78.789604, 37.843542],\n          [-78.789363, 37.843478],\n          [-78.789067, 37.843389],\n          [-78.788706, 37.843253],\n          [-78.78839, 37.843125],\n          [-78.788101, 37.843016],\n          [-78.78765, 37.842857],\n          [-78.787324, 37.842748],\n          [-78.787056, 37.84268],\n          [-78.786677, 37.842606],\n          [-78.786459, 37.842568],\n          [-78.786292, 37.842537],\n          [-78.785994, 37.842501],\n          [-78.785649, 37.842467],\n          [-78.785267, 37.842457],\n          [-78.784945, 37.842456],\n          [-78.784589, 37.842468],\n          [-78.782212, 37.842633],\n          [-78.780497, 37.842776],\n          [-78.779987, 37.842814],\n          [-78.778924, 37.842896],\n          [-78.77812, 37.842986],\n          [-78.777773, 37.843042],\n          [-78.777066, 37.843144],\n          [-78.776444, 37.84325],\n          [-78.775647, 37.843402],\n          [-78.774632, 37.843601],\n          [-78.773646, 37.843786],\n          [-78.773282, 37.843855],\n          [-78.772981, 37.843912],\n          [-78.772128, 37.844091],\n          [-78.771161, 37.844316],\n          [-78.770651, 37.844441],\n          [-78.769991, 37.844616],\n          [-78.768859, 37.844941],\n          [-78.768162, 37.845142],\n          [-78.767015, 37.845472],\n          [-78.76637, 37.845658],\n          [-78.765119, 37.846012],\n          [-78.761663, 37.84701],\n          [-78.760903, 37.847224],\n          [-78.760298, 37.847402],\n          [-78.75996, 37.847506],\n          [-78.7597, 37.847596],\n          [-78.759532, 37.84765],\n          [-78.759113, 37.847806],\n          [-78.758783, 37.847948],\n          [-78.758412, 37.84812],\n          [-78.758057, 37.848288],\n          [-78.757154, 37.848747],\n          [-78.756986, 37.848829],\n          [-78.756546, 37.849062],\n          [-78.756115, 37.849306],\n          [-78.755862, 37.849458],\n          [-78.755244, 37.849843],\n          [-78.754769, 37.85013],\n          [-78.754377, 37.85038],\n          [-78.753945, 37.850672],\n          [-78.753673, 37.850873],\n          [-78.753364, 37.851127],\n          [-78.753217, 37.851259],\n          [-78.752739, 37.851715],\n          [-78.752046, 37.852374],\n          [-78.75166, 37.852719],\n          [-78.751401, 37.852929],\n          [-78.751134, 37.853132],\n          [-78.750789, 37.853376],\n          [-78.750504, 37.853564],\n          [-78.750081, 37.853824],\n          [-78.74973, 37.854021],\n          [-78.749369, 37.854207],\n          [-78.748998, 37.85438],\n          [-78.748624, 37.854531],\n          [-78.748053, 37.854743],\n          [-78.747045, 37.85508],\n          [-78.746537, 37.855262],\n          [-78.746473, 37.855285],\n          [-78.745985, 37.855474],\n          [-78.7456, 37.855635],\n          [-78.744986, 37.855911],\n          [-78.744673, 37.856064],\n          [-78.744246, 37.856299],\n          [-78.743761, 37.856591],\n          [-78.743416, 37.856817],\n          [-78.742954, 37.857145],\n          [-78.742639, 37.857387],\n          [-78.742337, 37.85764],\n          [-78.742294, 37.85768],\n          [-78.741896, 37.858045],\n          [-78.741503, 37.85843],\n          [-78.741291, 37.858648],\n          [-78.741254, 37.858686],\n          [-78.740963, 37.859027],\n          [-78.740705, 37.859351],\n          [-78.740668, 37.859398],\n          [-78.740453, 37.85968],\n          [-78.739901, 37.860385],\n          [-78.739675, 37.860647],\n          [-78.739434, 37.860902],\n          [-78.739176, 37.861151],\n          [-78.73895, 37.861357],\n          [-78.738655, 37.861604],\n          [-78.738411, 37.861795],\n          [-78.738094, 37.862025],\n          [-78.737733, 37.862262],\n          [-78.737429, 37.862445],\n          [-78.73708, 37.862638],\n          [-78.73657, 37.862893],\n          [-78.736186, 37.863088],\n          [-78.735435, 37.86348],\n          [-78.734529, 37.863942],\n          [-78.733874, 37.864271],\n          [-78.733562, 37.864427],\n          [-78.733042, 37.864704],\n          [-78.732039, 37.865214],\n          [-78.731948, 37.865258],\n          [-78.731785, 37.865335],\n          [-78.731411, 37.86553],\n          [-78.730148, 37.866169],\n          [-78.729986, 37.866254],\n          [-78.729722, 37.866391],\n          [-78.728688, 37.866913],\n          [-78.727888, 37.86733],\n          [-78.727529, 37.86751],\n          [-78.726765, 37.867904],\n          [-78.726166, 37.868202],\n          [-78.725869, 37.868361],\n          [-78.725428, 37.868579],\n          [-78.725084, 37.868757],\n          [-78.724518, 37.869049],\n          [-78.723898, 37.869354],\n          [-78.722779, 37.869945],\n          [-78.721592, 37.870542],\n          [-78.720481, 37.87111],\n          [-78.719958, 37.871373],\n          [-78.719701, 37.871497],\n          [-78.719365, 37.871672],\n          [-78.718719, 37.872028],\n          [-78.71847, 37.872183],\n          [-78.718164, 37.872388],\n          [-78.717945, 37.872553],\n          [-78.717592, 37.872851],\n          [-78.717285, 37.873139],\n          [-78.717049, 37.873363],\n          [-78.716739, 37.873728],\n          [-78.716536, 37.874002],\n          [-78.716395, 37.874221],\n          [-78.716144, 37.874657],\n          [-78.71604, 37.87487],\n          [-78.715888, 37.875212],\n          [-78.715814, 37.875401],\n          [-78.715694, 37.87571],\n          [-78.715495, 37.876238],\n          [-78.715377, 37.876548],\n          [-78.715275, 37.876817],\n          [-78.71521, 37.877013],\n          [-78.715136, 37.877211],\n          [-78.715081, 37.877371],\n          [-78.714995, 37.877587],\n          [-78.71492, 37.877787],\n          [-78.7148, 37.878131],\n          [-78.714687, 37.878428],\n          [-78.714533, 37.878796],\n          [-78.714454, 37.879009],\n          [-78.714417, 37.879116],\n          [-78.714256, 37.879549],\n          [-78.714141, 37.879854],\n          [-78.713896, 37.880594],\n          [-78.713756, 37.881038],\n          [-78.713682, 37.88126],\n          [-78.713617, 37.881457],\n          [-78.713533, 37.881697],\n          [-78.713446, 37.881943],\n          [-78.713394, 37.882108],\n          [-78.713314, 37.882336],\n          [-78.713184, 37.882655],\n          [-78.713006, 37.883053],\n          [-78.712892, 37.883274],\n          [-78.712733, 37.88355],\n          [-78.712558, 37.88384],\n          [-78.712369, 37.884119],\n          [-78.712275, 37.884257],\n          [-78.712136, 37.884449],\n          [-78.711974, 37.884667],\n          [-78.711814, 37.884876],\n          [-78.711641, 37.885085],\n          [-78.711418, 37.885345],\n          [-78.711139, 37.885644],\n          [-78.710798, 37.88599],\n          [-78.710465, 37.886309],\n          [-78.710195, 37.886555],\n          [-78.709928, 37.886781],\n          [-78.709577, 37.88706],\n          [-78.709406, 37.887199],\n          [-78.709211, 37.887345],\n          [-78.708778, 37.887648],\n          [-78.707968, 37.888179],\n          [-78.707642, 37.888399],\n          [-78.707473, 37.88851],\n          [-78.707244, 37.888663],\n          [-78.706965, 37.888843],\n          [-78.706601, 37.889083],\n          [-78.706088, 37.889425],\n          [-78.705712, 37.889669],\n          [-78.705189, 37.890019],\n          [-78.704893, 37.890211],\n          [-78.703445, 37.891162],\n          [-78.703041, 37.891429],\n          [-78.702721, 37.891638],\n          [-78.702327, 37.891905],\n          [-78.70184, 37.892223],\n          [-78.701163, 37.892662],\n          [-78.700778, 37.892933],\n          [-78.70071, 37.892981],\n          [-78.700622, 37.893046],\n          [-78.700337, 37.893272],\n          [-78.69999, 37.89357],\n          [-78.699755, 37.8938],\n          [-78.699482, 37.894099],\n          [-78.699289, 37.894329],\n          [-78.698787, 37.894984],\n          [-78.698558, 37.895284],\n          [-78.69837, 37.895519],\n          [-78.698116, 37.895851],\n          [-78.697966, 37.896055],\n          [-78.697696, 37.896407],\n          [-78.697057, 37.897242],\n          [-78.696439, 37.898041],\n          [-78.695681, 37.899035],\n          [-78.695049, 37.899863],\n          [-78.694658, 37.900403],\n          [-78.694519, 37.900599],\n          [-78.694429, 37.900733],\n          [-78.693954, 37.901464],\n          [-78.693721, 37.901862],\n          [-78.693473, 37.902275],\n          [-78.693102, 37.902981],\n          [-78.692879, 37.903439],\n          [-78.692797, 37.903623],\n          [-78.692129, 37.905105],\n          [-78.691808, 37.905817],\n          [-78.691268, 37.906984],\n          [-78.690987, 37.907549],\n          [-78.690814, 37.907874],\n          [-78.690688, 37.908089],\n          [-78.690521, 37.908372],\n          [-78.690275, 37.908767],\n          [-78.689663, 37.909657],\n          [-78.689078, 37.910492],\n          [-78.685485, 37.915666],\n          [-78.684467, 37.917131],\n          [-78.682047, 37.920608],\n          [-78.681785, 37.92095],\n          [-78.681517, 37.921272],\n          [-78.681241, 37.921578],\n          [-78.68101, 37.921818],\n          [-78.680605, 37.922194],\n          [-78.68013, 37.922617],\n          [-78.679566, 37.923137],\n          [-78.679307, 37.923403],\n          [-78.678986, 37.92374],\n          [-78.678605, 37.924203],\n          [-78.678345, 37.924561],\n          [-78.678124, 37.924891],\n          [-78.677903, 37.925227],\n          [-78.677688, 37.925589],\n          [-78.677544, 37.925878],\n          [-78.67731, 37.926442],\n          [-78.676551, 37.928284],\n          [-78.676404, 37.928595],\n          [-78.676242, 37.928949],\n          [-78.676148, 37.929122],\n          [-78.675977, 37.929377],\n          [-78.675612, 37.929807],\n          [-78.675385, 37.930086],\n          [-78.675213, 37.930312],\n          [-78.675004, 37.930559],\n          [-78.674617, 37.931044],\n          [-78.67407, 37.931702],\n          [-78.673673, 37.932201],\n          [-78.673281, 37.9327],\n          [-78.672994, 37.933082],\n          [-78.672166, 37.934227],\n          [-78.671112, 37.935771],\n          [-78.670762, 37.936281],\n          [-78.670385, 37.936817],\n          [-78.669877, 37.937599],\n          [-78.668999, 37.93886],\n          [-78.667671, 37.940789],\n          [-78.666721, 37.942158],\n          [-78.666126, 37.943118],\n          [-78.665597, 37.944014],\n          [-78.665125, 37.944827],\n          [-78.664642, 37.945633],\n          [-78.664087, 37.946602],\n          [-78.663665, 37.947366],\n          [-78.663523, 37.947648],\n          [-78.663363, 37.948007],\n          [-78.66312, 37.948581],\n          [-78.662992, 37.948919],\n          [-78.662788, 37.949511],\n          [-78.662392, 37.950794],\n          [-78.662127, 37.951686],\n          [-78.661907, 37.952368],\n          [-78.6618, 37.952667],\n          [-78.661673, 37.952964],\n          [-78.661549, 37.953229],\n          [-78.661377, 37.953546],\n          [-78.661172, 37.953875],\n          [-78.660975, 37.954168],\n          [-78.660712, 37.954527],\n          [-78.660589, 37.954686],\n          [-78.660525, 37.954768],\n          [-78.660204, 37.955161],\n          [-78.659899, 37.955515],\n          [-78.65946, 37.956045],\n          [-78.659107, 37.956472],\n          [-78.658939, 37.95668],\n          [-78.658404, 37.957325],\n          [-78.658185, 37.957583],\n          [-78.657413, 37.958505],\n          [-78.65713, 37.958855],\n          [-78.65677, 37.959264],\n          [-78.656612, 37.959431],\n          [-78.656439, 37.95959],\n          [-78.656251, 37.959739],\n          [-78.656068, 37.959867],\n          [-78.655989, 37.959917],\n          [-78.655752, 37.960052],\n          [-78.655575, 37.96015],\n          [-78.655228, 37.960289],\n          [-78.654931, 37.960405],\n          [-78.653275, 37.960978],\n          [-78.652399, 37.961277],\n          [-78.651659, 37.961545],\n          [-78.651372, 37.96167],\n          [-78.651131, 37.961788],\n          [-78.650953, 37.961888],\n          [-78.65077, 37.962003],\n          [-78.650655, 37.962074],\n          [-78.650545, 37.96215],\n          [-78.650369, 37.962277],\n          [-78.650124, 37.962492],\n          [-78.649827, 37.962781],\n          [-78.649528, 37.963082],\n          [-78.649157, 37.963468],\n          [-78.648771, 37.96385],\n          [-78.648569, 37.964042],\n          [-78.648236, 37.964318],\n          [-78.647928, 37.964546],\n          [-78.647355, 37.964951],\n          [-78.646421, 37.965624],\n          [-78.646034, 37.965897],\n          [-78.645591, 37.966218],\n          [-78.645351, 37.966376],\n          [-78.645051, 37.966569],\n          [-78.644735, 37.966754],\n          [-78.644581, 37.96684],\n          [-78.6444, 37.966936],\n          [-78.643915, 37.967163],\n          [-78.643555, 37.967319],\n          [-78.643147, 37.967465],\n          [-78.642853, 37.967561],\n          [-78.642519, 37.96766],\n          [-78.642395, 37.967695],\n          [-78.642095, 37.967768],\n          [-78.641871, 37.967823],\n          [-78.641449, 37.967916],\n          [-78.640993, 37.967991],\n          [-78.640408, 37.968066],\n          [-78.639997, 37.968103],\n          [-78.639496, 37.96813],\n          [-78.638995, 37.968136],\n          [-78.638434, 37.968125],\n          [-78.637944, 37.9681],\n          [-78.63612, 37.967958],\n          [-78.635136, 37.967873],\n          [-78.633802, 37.96777],\n          [-78.632073, 37.967631],\n          [-78.631801, 37.967611],\n          [-78.630935, 37.967546],\n          [-78.630424, 37.967503],\n          [-78.629697, 37.967442],\n          [-78.628686, 37.967361],\n          [-78.626167, 37.967159],\n          [-78.623282, 37.966927],\n          [-78.622258, 37.96685],\n          [-78.621932, 37.966824],\n          [-78.620819, 37.966736],\n          [-78.620381, 37.966716],\n          [-78.620004, 37.966712],\n          [-78.619679, 37.966717],\n          [-78.61937, 37.966745],\n          [-78.619064, 37.966787],\n          [-78.618761, 37.966844],\n          [-78.618523, 37.9669],\n          [-78.618222, 37.966977],\n          [-78.617837, 37.967103],\n          [-78.617525, 37.967224],\n          [-78.617264, 37.967333],\n          [-78.616866, 37.967526],\n          [-78.61666, 37.96764],\n          [-78.616487, 37.967735],\n          [-78.616266, 37.967872],\n          [-78.615844, 37.968137],\n          [-78.615555, 37.968338],\n          [-78.615229, 37.968577],\n          [-78.614931, 37.968831],\n          [-78.614607, 37.969142],\n          [-78.614381, 37.96937],\n          [-78.614151, 37.969646],\n          [-78.613964, 37.96988],\n          [-78.613494, 37.970554],\n          [-78.61301, 37.971246],\n          [-78.612831, 37.971512],\n          [-78.612279, 37.972333],\n          [-78.611229, 37.97389],\n          [-78.610819, 37.974494],\n          [-78.610719, 37.974624],\n          [-78.610499, 37.974897],\n          [-78.610319, 37.975118],\n          [-78.610116, 37.975331],\n          [-78.609966, 37.975469],\n          [-78.609796, 37.975624],\n          [-78.609591, 37.975796],\n          [-78.609317, 37.976004],\n          [-78.609071, 37.976176],\n          [-78.608849, 37.976327],\n          [-78.608744, 37.97639],\n          [-78.608365, 37.976619],\n          [-78.608101, 37.976752],\n          [-78.607845, 37.976869],\n          [-78.607584, 37.976978],\n          [-78.60725, 37.977103],\n          [-78.606977, 37.977192],\n          [-78.606625, 37.977297],\n          [-78.606266, 37.977388],\n          [-78.606123, 37.977418],\n          [-78.605902, 37.977465],\n          [-78.605646, 37.97752],\n          [-78.605621, 37.977522],\n          [-78.605549, 37.977538],\n          [-78.60423, 37.977756],\n          [-78.602588, 37.978034],\n          [-78.602162, 37.978122],\n          [-78.601825, 37.978203],\n          [-78.601492, 37.978293],\n          [-78.601094, 37.978414],\n          [-78.60071, 37.978547],\n          [-78.600334, 37.978694],\n          [-78.599967, 37.978854],\n          [-78.599486, 37.979083],\n          [-78.599163, 37.979252],\n          [-78.598789, 37.97947],\n          [-78.598549, 37.979624],\n          [-78.597946, 37.980033],\n          [-78.596889, 37.98075],\n          [-78.595137, 37.981939],\n          [-78.593704, 37.982911],\n          [-78.592376, 37.98382],\n          [-78.590854, 37.984906],\n          [-78.590225, 37.985373],\n          [-78.588999, 37.98631],\n          [-78.588012, 37.9871],\n          [-78.587089, 37.987859],\n          [-78.586722, 37.988171],\n          [-78.586183, 37.988631],\n          [-78.585023, 37.989655],\n          [-78.583908, 37.990662],\n          [-78.583686, 37.990885],\n          [-78.583478, 37.991116],\n          [-78.583203, 37.991447],\n          [-78.583057, 37.991641],\n          [-78.582889, 37.99189],\n          [-78.582734, 37.992152],\n          [-78.582584, 37.992445],\n          [-78.582451, 37.992743],\n          [-78.582318, 37.993104],\n          [-78.582229, 37.993396],\n          [-78.582158, 37.993692],\n          [-78.582061, 37.994255],\n          [-78.581989, 37.994788],\n          [-78.581919, 37.9952],\n          [-78.581831, 37.99573],\n          [-78.581596, 37.997239],\n          [-78.581525, 37.997665],\n          [-78.58147, 37.998088],\n          [-78.581083, 38.000517],\n          [-78.580993, 38.001016],\n          [-78.580912, 38.001332],\n          [-78.580857, 38.001514],\n          [-78.580851, 38.001532],\n          [-78.580827, 38.001607],\n          [-78.580788, 38.001711],\n          [-78.580764, 38.001783],\n          [-78.580638, 38.002087],\n          [-78.580501, 38.002397],\n          [-78.580338, 38.002682],\n          [-78.580176, 38.002939],\n          [-78.580026, 38.003155],\n          [-78.57984, 38.003394],\n          [-78.579631, 38.003641],\n          [-78.579528, 38.003748],\n          [-78.579258, 38.004014],\n          [-78.578985, 38.00426],\n          [-78.578784, 38.004426],\n          [-78.578575, 38.004584],\n          [-78.578379, 38.004723],\n          [-78.578122, 38.004899],\n          [-78.577709, 38.005151],\n          [-78.577431, 38.005306],\n          [-78.577141, 38.005444],\n          [-78.576923, 38.005542],\n          [-78.576628, 38.005666],\n          [-78.576327, 38.005766],\n          [-78.576154, 38.005828],\n          [-78.575371, 38.006031],\n          [-78.574274, 38.006313],\n          [-78.573929, 38.006397],\n          [-78.573678, 38.006459],\n          [-78.5731, 38.006602],\n          [-78.572544, 38.006742],\n          [-78.570845, 38.007165],\n          [-78.570536, 38.007245],\n          [-78.570147, 38.007346],\n          [-78.569511, 38.007502],\n          [-78.568866, 38.007677],\n          [-78.568449, 38.007795],\n          [-78.568216, 38.007865],\n          [-78.567861, 38.007984],\n          [-78.567483, 38.008116],\n          [-78.567008, 38.00831],\n          [-78.566642, 38.008471],\n          [-78.566222, 38.008672],\n          [-78.565813, 38.008887],\n          [-78.565381, 38.009126],\n          [-78.564818, 38.009422],\n          [-78.564544, 38.009563],\n          [-78.564196, 38.009735],\n          [-78.564075, 38.009787],\n          [-78.56369, 38.009944],\n          [-78.56326, 38.010103],\n          [-78.562849, 38.010238],\n          [-78.562529, 38.010332],\n          [-78.562124, 38.010438],\n          [-78.561805, 38.010515],\n          [-78.561564, 38.010564],\n          [-78.56093, 38.010675],\n          [-78.560028, 38.010845],\n          [-78.558824, 38.011064],\n          [-78.558024, 38.011219],\n          [-78.557648, 38.011286],\n          [-78.557386, 38.011333],\n          [-78.557058, 38.011387],\n          [-78.555118, 38.011755],\n          [-78.554112, 38.011931],\n          [-78.552878, 38.012156],\n          [-78.552449, 38.01225],\n          [-78.552186, 38.012316],\n          [-78.551829, 38.012417],\n          [-78.551365, 38.012562],\n          [-78.55109, 38.012655],\n          [-78.550658, 38.012829],\n          [-78.550236, 38.013017],\n          [-78.549599, 38.013364],\n          [-78.549376, 38.013492],\n          [-78.549058, 38.013698],\n          [-78.548469, 38.01411],\n          [-78.547659, 38.014674],\n          [-78.547468, 38.014808],\n          [-78.54736, 38.014884],\n          [-78.547042, 38.015096],\n          [-78.546611, 38.015362],\n          [-78.546269, 38.015559],\n          [-78.54592, 38.01574],\n          [-78.545223, 38.016069],\n          [-78.544841, 38.016247],\n          [-78.543906, 38.016682],\n          [-78.543654, 38.016806],\n          [-78.54333, 38.016982],\n          [-78.542733, 38.017318],\n          [-78.542466, 38.017467],\n          [-78.539711, 38.018979],\n          [-78.536725, 38.020664],\n          [-78.535885, 38.021132],\n          [-78.535518, 38.021335],\n          [-78.534742, 38.021766],\n          [-78.534188, 38.022073],\n          [-78.532955, 38.02276],\n          [-78.532173, 38.023196],\n          [-78.531193, 38.023747],\n          [-78.531125, 38.023792],\n          [-78.53075, 38.024045],\n          [-78.530445, 38.024274],\n          [-78.530203, 38.024476],\n          [-78.530016, 38.024649],\n          [-78.529931, 38.024733],\n          [-78.52985, 38.024806],\n          [-78.529798, 38.024854],\n          [-78.529758, 38.024894],\n          [-78.529598, 38.025065],\n          [-78.529327, 38.025386],\n          [-78.52916, 38.025608],\n          [-78.528945, 38.025933],\n          [-78.5288, 38.026176],\n          [-78.528672, 38.026426],\n          [-78.52861, 38.026566],\n          [-78.528405, 38.027066],\n          [-78.52833, 38.027311],\n          [-78.528283, 38.02751],\n          [-78.528235, 38.027689],\n          [-78.528151, 38.028145],\n          [-78.527582, 38.03105],\n          [-78.527126, 38.033402],\n          [-78.52703, 38.033972],\n          [-78.526914, 38.034782],\n          [-78.526868, 38.035166],\n          [-78.52679, 38.036035],\n          [-78.526753, 38.036647],\n          [-78.526715, 38.03781],\n          [-78.526642, 38.040878],\n          [-78.526607, 38.042081],\n          [-78.526584, 38.042473],\n          [-78.526544, 38.042863],\n          [-78.52645, 38.043462],\n          [-78.526353, 38.043907],\n          [-78.526306, 38.044099],\n          [-78.526225, 38.044382],\n          [-78.526103, 38.044762],\n          [-78.525978, 38.045116],\n          [-78.52595, 38.045183],\n          [-78.525619, 38.045973],\n          [-78.525226, 38.046882],\n          [-78.524837, 38.047794],\n          [-78.524807, 38.047861],\n          [-78.524712, 38.048073],\n          [-78.523664, 38.050524],\n          [-78.523608, 38.050633],\n          [-78.523449, 38.050945],\n          [-78.523194, 38.051371],\n          [-78.522992, 38.051667],\n          [-78.522896, 38.051793],\n          [-78.522708, 38.052033],\n          [-78.522379, 38.052403],\n          [-78.522049, 38.052728],\n          [-78.521736, 38.053004],\n          [-78.521375, 38.053289],\n          [-78.521061, 38.053512],\n          [-78.520792, 38.053687],\n          [-78.520433, 38.053898],\n          [-78.5202, 38.054028],\n          [-78.519924, 38.054166],\n          [-78.519561, 38.054329],\n          [-78.519179, 38.054486],\n          [-78.518827, 38.054612],\n          [-78.518437, 38.054736],\n          [-78.518106, 38.054829],\n          [-78.517883, 38.054877],\n          [-78.517638, 38.05494],\n          [-78.517298, 38.055006],\n          [-78.51674, 38.055093],\n          [-78.515503, 38.055228],\n          [-78.513125, 38.055506],\n          [-78.51298, 38.05552],\n          [-78.511721, 38.055664],\n          [-78.510089, 38.05585],\n          [-78.509444, 38.055931],\n          [-78.508892, 38.056018],\n          [-78.508324, 38.056121],\n          [-78.50762, 38.056269],\n          [-78.507101, 38.056364],\n          [-78.5063, 38.056529],\n          [-78.504207, 38.056975],\n          [-78.503544, 38.057129],\n          [-78.50332, 38.057173],\n          [-78.50218, 38.05739],\n          [-78.501769, 38.057476],\n          [-78.501588, 38.057518],\n          [-78.501288, 38.05758],\n          [-78.500918, 38.057644],\n          [-78.50053, 38.057699],\n          [-78.50025, 38.057721],\n          [-78.49999, 38.057731],\n          [-78.4996, 38.057738],\n          [-78.499258, 38.057729],\n          [-78.499228, 38.057727],\n          [-78.498789, 38.057695],\n          [-78.498509, 38.057667],\n          [-78.498249, 38.05764],\n          [-78.497868, 38.057604],\n          [-78.497658, 38.057584],\n          [-78.497235, 38.057537],\n          [-78.496848, 38.057489],\n          [-78.495893, 38.057371],\n          [-78.494978, 38.057279],\n          [-78.49472, 38.057173],\n          [-78.494659, 38.057142],\n          [-78.494592, 38.057093],\n          [-78.494549, 38.057047],\n          [-78.494516, 38.056995],\n          [-78.494502, 38.05695],\n          [-78.494493, 38.056874],\n          [-78.494502, 38.056798],\n          [-78.494522, 38.056739],\n          [-78.494562, 38.056669],\n          [-78.494623, 38.05661],\n          [-78.494697, 38.056562],\n          [-78.494781, 38.056525],\n          [-78.494872, 38.056502],\n          [-78.49496, 38.056493],\n          [-78.495044, 38.0565],\n          [-78.495109, 38.056516],\n          [-78.495169, 38.056541],\n          [-78.495238, 38.056584],\n          [-78.49528, 38.056617],\n          [-78.495339, 38.05668],\n          [-78.495381, 38.056751],\n          [-78.495402, 38.056811],\n          [-78.495415, 38.056894],\n          [-78.495413, 38.056998],\n          [-78.495388, 38.057116],\n          [-78.49528, 38.057239],\n          [-78.495007, 38.057577],\n          [-78.494845, 38.057747],\n          [-78.494782, 38.057825],\n          [-78.494593, 38.05807],\n          [-78.494413, 38.058298],\n          [-78.494268, 38.05847],\n          [-78.494235, 38.058509],\n          [-78.494159, 38.058601],\n          [-78.493967, 38.058833],\n          [-78.493505, 38.059401],\n          [-78.493364, 38.059586],\n          [-78.492889, 38.060182],\n          [-78.492564, 38.060616],\n          [-78.492196, 38.061101],\n          [-78.491916, 38.061468],\n          [-78.491724, 38.061722],\n          [-78.491723, 38.061722],\n          [-78.491578, 38.061897],\n          [-78.491244, 38.062293],\n          [-78.490863, 38.062734],\n          [-78.490477, 38.063153],\n          [-78.490269, 38.06338],\n          [-78.489937, 38.063742],\n          [-78.48969, 38.064008],\n          [-78.489478, 38.064259],\n          [-78.489344, 38.064409],\n          [-78.489289, 38.06447],\n          [-78.489212, 38.064554],\n          [-78.488761, 38.065053],\n          [-78.48815, 38.065739],\n          [-78.488116, 38.065779],\n          [-78.487867, 38.06605],\n          [-78.48713, 38.06686],\n          [-78.486995, 38.067008],\n          [-78.486825, 38.067194],\n          [-78.486343, 38.067727],\n          [-78.486218, 38.067866],\n          [-78.486208, 38.067877],\n          [-78.486134, 38.067959],\n          [-78.48576, 38.068363],\n          [-78.485475, 38.06867],\n          [-78.485154, 38.069027],\n          [-78.484295, 38.070023],\n          [-78.484063, 38.070271],\n          [-78.483776, 38.070614],\n          [-78.483281, 38.071164],\n          [-78.482433, 38.07211],\n          [-78.480968, 38.073741],\n          [-78.480778, 38.073943],\n          [-78.480706, 38.07403],\n          [-78.480376, 38.074401],\n          [-78.479882, 38.074956],\n          [-78.479801, 38.075034],\n          [-78.479272, 38.075634],\n          [-78.478606, 38.076375],\n          [-78.478527, 38.076469],\n          [-78.478367, 38.076647],\n          [-78.477091, 38.078062],\n          [-78.476397, 38.078846],\n          [-78.475743, 38.079571],\n          [-78.474543, 38.08091],\n          [-78.474163, 38.081335],\n          [-78.473969, 38.081577],\n          [-78.473788, 38.081788],\n          [-78.473613, 38.082014],\n          [-78.47347, 38.082218],\n          [-78.472971, 38.083082],\n          [-78.472639, 38.083666],\n          [-78.472264, 38.084319],\n          [-78.471709, 38.085285],\n          [-78.471146, 38.086271],\n          [-78.47079, 38.086895],\n          [-78.470583, 38.087258],\n          [-78.47026, 38.087825],\n          [-78.469568, 38.089039],\n          [-78.468607, 38.090712],\n          [-78.468501, 38.090897],\n          [-78.468139, 38.091557],\n          [-78.468043, 38.091733],\n          [-78.467922, 38.09192],\n          [-78.467732, 38.092218],\n          [-78.46735, 38.0929],\n          [-78.466766, 38.093924],\n          [-78.466497, 38.09437],\n          [-78.466369, 38.094558],\n          [-78.46599, 38.095057],\n          [-78.465526, 38.09564],\n          [-78.465381, 38.095816],\n          [-78.464933, 38.096381],\n          [-78.464463, 38.096962],\n          [-78.464049, 38.097474],\n          [-78.463974, 38.097573],\n          [-78.463441, 38.098232],\n          [-78.46294, 38.098874],\n          [-78.462231, 38.099765],\n          [-78.461478, 38.100721],\n          [-78.460943, 38.101395],\n          [-78.460544, 38.101882],\n          [-78.460009, 38.102564],\n          [-78.459568, 38.103126],\n          [-78.459337, 38.103403],\n          [-78.458603, 38.10429],\n          [-78.457804, 38.105297],\n          [-78.45751, 38.105695],\n          [-78.4569, 38.106619],\n          [-78.456598, 38.107068],\n          [-78.45544, 38.108845],\n          [-78.454988, 38.109578],\n          [-78.454476, 38.110311],\n          [-78.454296, 38.110569],\n          [-78.454206, 38.110708],\n          [-78.454093, 38.110899],\n          [-78.453942, 38.111128],\n          [-78.453769, 38.111409],\n          [-78.453294, 38.112125],\n          [-78.453172, 38.112318],\n          [-78.452856, 38.112817],\n          [-78.452688, 38.11307],\n          [-78.452602, 38.113223],\n          [-78.451975, 38.114186],\n          [-78.451686, 38.11461],\n          [-78.45106, 38.115568],\n          [-78.450908, 38.115798],\n          [-78.450496, 38.11642],\n          [-78.450419, 38.116537],\n          [-78.45032, 38.116697],\n          [-78.450137, 38.116993],\n          [-78.449702, 38.117634],\n          [-78.449172, 38.118448],\n          [-78.448773, 38.119065],\n          [-78.448006, 38.120242],\n          [-78.447677, 38.120726],\n          [-78.447299, 38.121219],\n          [-78.44692, 38.121631],\n          [-78.446411, 38.122124],\n          [-78.4458, 38.12267],\n          [-78.444661, 38.123687],\n          [-78.442392, 38.125724],\n          [-78.441529, 38.126494],\n          [-78.440922, 38.127044],\n          [-78.440006, 38.127866],\n          [-78.439371, 38.128436],\n          [-78.437997, 38.129669],\n          [-78.437902, 38.129754],\n          [-78.437019, 38.130549],\n          [-78.436453, 38.131059],\n          [-78.436187, 38.131299],\n          [-78.435995, 38.13147],\n          [-78.435251, 38.132172],\n          [-78.435106, 38.132303],\n          [-78.434673, 38.132753],\n          [-78.434293, 38.13317],\n          [-78.433695, 38.133887],\n          [-78.433416, 38.134269],\n          [-78.433195, 38.134572],\n          [-78.432173, 38.13616],\n          [-78.430917, 38.138131],\n          [-78.430468, 38.138847],\n          [-78.429836, 38.139833],\n          [-78.429464, 38.140424],\n          [-78.428859, 38.141359],\n          [-78.428348, 38.142178],\n          [-78.428275, 38.142291],\n          [-78.427887, 38.14289],\n          [-78.427641, 38.143278],\n          [-78.427277, 38.143851],\n          [-78.427263, 38.143873],\n          [-78.425718, 38.146293],\n          [-78.4249, 38.147586],\n          [-78.423982, 38.149017],\n          [-78.423879, 38.149181],\n          [-78.4234, 38.149936],\n          [-78.422346, 38.1516],\n          [-78.42208, 38.151996],\n          [-78.421684, 38.152621],\n          [-78.421337, 38.15319],\n          [-78.420383, 38.154692],\n          [-78.419605, 38.155908],\n          [-78.417659, 38.158962],\n          [-78.415009, 38.163121],\n          [-78.414626, 38.163716],\n          [-78.414541, 38.163851],\n          [-78.414293, 38.164245],\n          [-78.412771, 38.16663],\n          [-78.41231, 38.167345],\n          [-78.411781, 38.168185],\n          [-78.410521, 38.170164],\n          [-78.410064, 38.170881],\n          [-78.408661, 38.173081],\n          [-78.408289, 38.173661],\n          [-78.406754, 38.176057],\n          [-78.405791, 38.177582],\n          [-78.405633, 38.177824],\n          [-78.404819, 38.179105],\n          [-78.40451, 38.179581],\n          [-78.403702, 38.180857],\n          [-78.403534, 38.181116],\n          [-78.40229, 38.183084],\n          [-78.402, 38.183534],\n          [-78.401567, 38.184219],\n          [-78.401491, 38.184329],\n          [-78.400918, 38.18523],\n          [-78.400512, 38.185861],\n          [-78.399321, 38.187671],\n          [-78.399195, 38.187856],\n          [-78.399077, 38.188041],\n          [-78.398689, 38.188617],\n          [-78.398558, 38.18882],\n          [-78.397589, 38.190295],\n          [-78.3974, 38.190566],\n          [-78.397207, 38.19086],\n          [-78.396877, 38.191349],\n          [-78.396731, 38.191574],\n          [-78.396016, 38.192652],\n          [-78.395969, 38.192724],\n          [-78.395198, 38.193895],\n          [-78.395145, 38.193978],\n          [-78.395092, 38.194057],\n          [-78.395078, 38.194078],\n          [-78.394787, 38.194511],\n          [-78.394461, 38.19501],\n          [-78.394425, 38.195065],\n          [-78.393867, 38.195904],\n          [-78.393697, 38.196162],\n          [-78.392569, 38.197862],\n          [-78.392356, 38.198186],\n          [-78.391791, 38.199049],\n          [-78.3916, 38.199341],\n          [-78.391424, 38.19959],\n          [-78.391056, 38.200141],\n          [-78.390364, 38.201178],\n          [-78.388697, 38.203713],\n          [-78.387884, 38.204937],\n          [-78.387682, 38.20524],\n          [-78.387424, 38.205639],\n          [-78.386997, 38.206278],\n          [-78.386781, 38.206604],\n          [-78.386138, 38.207581],\n          [-78.385992, 38.207804],\n          [-78.385531, 38.2085],\n          [-78.38498, 38.209334],\n          [-78.384853, 38.209537],\n          [-78.383889, 38.210987],\n          [-78.383519, 38.211533],\n          [-78.383408, 38.211705],\n          [-78.383194, 38.212041],\n          [-78.382209, 38.213531],\n          [-78.381949, 38.213932],\n          [-78.381401, 38.214759],\n          [-78.380953, 38.215433],\n          [-78.380697, 38.215818],\n          [-78.380472, 38.216158],\n          [-78.379118, 38.218196],\n          [-78.378999, 38.218384],\n          [-78.37862, 38.21895],\n          [-78.377882, 38.220071],\n          [-78.377739, 38.220289],\n          [-78.377587, 38.220523],\n          [-78.376908, 38.221535],\n          [-78.376698, 38.221851],\n          [-78.376516, 38.222128],\n          [-78.375966, 38.222959],\n          [-78.375503, 38.223658],\n          [-78.374143, 38.225716],\n          [-78.373741, 38.226317],\n          [-78.372465, 38.228246],\n          [-78.371604, 38.229546],\n          [-78.371224, 38.230126],\n          [-78.37075, 38.230832],\n          [-78.370117, 38.231792],\n          [-78.369796, 38.23229],\n          [-78.369344, 38.233031],\n          [-78.369247, 38.233202],\n          [-78.369201, 38.233285],\n          [-78.369089, 38.233499],\n          [-78.368757, 38.234191],\n          [-78.368537, 38.23469],\n          [-78.368285, 38.235273],\n          [-78.367348, 38.237406],\n          [-78.367125, 38.237924],\n          [-78.366876, 38.23848],\n          [-78.366632, 38.239054],\n          [-78.366538, 38.239263],\n          [-78.366315, 38.239761],\n          [-78.365981, 38.240523],\n          [-78.365112, 38.242495],\n          [-78.364536, 38.243815],\n          [-78.364277, 38.244425],\n          [-78.363872, 38.245322],\n          [-78.363644, 38.245831],\n          [-78.363475, 38.246227],\n          [-78.363324, 38.246579],\n          [-78.363065, 38.24716],\n          [-78.362399, 38.248697],\n          [-78.362213, 38.249115],\n          [-78.36185, 38.249928],\n          [-78.360994, 38.251906],\n          [-78.360894, 38.252122],\n          [-78.360732, 38.252472],\n          [-78.359818, 38.254556],\n          [-78.359604, 38.255032],\n          [-78.358451, 38.257672],\n          [-78.35837, 38.257854],\n          [-78.357235, 38.260418],\n          [-78.35697, 38.261034],\n          [-78.356749, 38.261526],\n          [-78.356328, 38.262487],\n          [-78.3557, 38.26392],\n          [-78.355441, 38.264489],\n          [-78.354985, 38.265534],\n          [-78.354199, 38.267311],\n          [-78.354014, 38.267697],\n          [-78.353899, 38.267927],\n          [-78.353632, 38.268419],\n          [-78.353386, 38.268835],\n          [-78.353012, 38.269405],\n          [-78.352727, 38.269807],\n          [-78.352433, 38.270193],\n          [-78.351176, 38.271816],\n          [-78.35069, 38.272444],\n          [-78.350332, 38.272914],\n          [-78.349867, 38.273496],\n          [-78.349659, 38.273731],\n          [-78.349448, 38.273949],\n          [-78.349246, 38.274133],\n          [-78.348925, 38.274393],\n          [-78.348653, 38.274592],\n          [-78.348309, 38.274816],\n          [-78.346752, 38.275754],\n          [-78.345609, 38.276449],\n          [-78.34394, 38.277447],\n          [-78.343411, 38.277789],\n          [-78.343205, 38.277938],\n          [-78.342906, 38.278167],\n          [-78.342692, 38.278348],\n          [-78.342621, 38.27841],\n          [-78.342399, 38.278622],\n          [-78.342335, 38.278686],\n          [-78.342171, 38.278857],\n          [-78.341631, 38.279482],\n          [-78.341204, 38.280003],\n          [-78.341139, 38.280089],\n          [-78.341053, 38.280202],\n          [-78.340551, 38.280804],\n          [-78.34033, 38.281097],\n          [-78.339739, 38.281771],\n          [-78.337121, 38.284947],\n          [-78.335554, 38.286807],\n          [-78.334912, 38.287652],\n          [-78.334363, 38.288479],\n          [-78.333901, 38.289321],\n          [-78.332891, 38.291302],\n          [-78.33264, 38.291856],\n          [-78.332046, 38.29316],\n          [-78.331547, 38.294091],\n          [-78.33002, 38.297253],\n          [-78.328705, 38.299896],\n          [-78.328454, 38.300437],\n          [-78.327604, 38.302025],\n          [-78.326529, 38.303681],\n          [-78.325643, 38.304891],\n          [-78.325058, 38.305662],\n          [-78.32399, 38.30691],\n          [-78.3236, 38.307359],\n          [-78.323233, 38.30771],\n          [-78.322626, 38.308335],\n          [-78.320591, 38.310229],\n          [-78.317859, 38.312439],\n          [-78.317136, 38.313055],\n          [-78.314274, 38.315396],\n          [-78.313204, 38.316275],\n          [-78.313084, 38.316374],\n          [-78.312238, 38.317069],\n          [-78.31127, 38.317874],\n          [-78.310555, 38.318624],\n          [-78.308339, 38.321068],\n          [-78.307189, 38.322326],\n          [-78.306432, 38.323147],\n          [-78.305157, 38.324565],\n          [-78.299683, 38.33067],\n          [-78.296227, 38.334366],\n          [-78.294775, 38.336025],\n          [-78.294422, 38.336434],\n          [-78.293518, 38.337393],\n          [-78.292283, 38.338774],\n          [-78.290905, 38.340301],\n          [-78.289054, 38.34231],\n          [-78.287698, 38.343781],\n          [-78.286127, 38.345511],\n          [-78.284805, 38.346961],\n          [-78.284197, 38.347653],\n          [-78.281261, 38.350904],\n          [-78.27928, 38.353063],\n          [-78.277989, 38.354462],\n          [-78.276967, 38.355626],\n          [-78.275482, 38.357205],\n          [-78.275108, 38.357686],\n          [-78.273995, 38.359116],\n          [-78.272612, 38.361053],\n          [-78.269402, 38.365549],\n          [-78.268281, 38.367067],\n          [-78.26707, 38.368543],\n          [-78.266209, 38.369424],\n          [-78.26463, 38.370803],\n          [-78.263855, 38.371431],\n          [-78.262777, 38.372178],\n          [-78.262167, 38.372601],\n          [-78.258589, 38.375046],\n          [-78.253931, 38.378242],\n          [-78.253419, 38.378585],\n          [-78.252722, 38.379065],\n          [-78.251038, 38.380279],\n          [-78.249725, 38.3814],\n          [-78.248824, 38.38242],\n          [-78.247019, 38.384778],\n          [-78.243045, 38.39007],\n          [-78.242379, 38.390835],\n          [-78.241798, 38.391304],\n          [-78.241358, 38.391649],\n          [-78.240659, 38.392107],\n          [-78.239791, 38.392562],\n          [-78.236781, 38.394134],\n          [-78.234618, 38.395478],\n          [-78.233524, 38.396238],\n          [-78.231366, 38.397688],\n          [-78.230593, 38.398159],\n          [-78.229713, 38.398631],\n          [-78.22927, 38.398846],\n          [-78.227176, 38.399941],\n          [-78.224001, 38.401573],\n          [-78.221687, 38.402762],\n          [-78.220927, 38.403115],\n          [-78.219583, 38.403494],\n          [-78.217956, 38.403869],\n          [-78.216834, 38.404329],\n          [-78.216198, 38.404653],\n          [-78.215673, 38.404943],\n          [-78.2147, 38.405692],\n          [-78.214341, 38.406017],\n          [-78.211846, 38.409013],\n          [-78.211205, 38.409859],\n          [-78.208931, 38.412831],\n          [-78.207891, 38.413946],\n          [-78.207388, 38.414459],\n          [-78.206848, 38.414885],\n          [-78.20502, 38.416246],\n          [-78.204339, 38.416746],\n          [-78.203587, 38.417231],\n          [-78.201789, 38.418025],\n          [-78.199931, 38.418788],\n          [-78.198775, 38.419213],\n          [-78.197516, 38.419599],\n          [-78.196891, 38.419728],\n          [-78.193593, 38.420311],\n          [-78.192656, 38.420508],\n          [-78.191772, 38.420736],\n          [-78.190615, 38.421137],\n          [-78.189756, 38.421485],\n          [-78.189131, 38.421795],\n          [-78.188009, 38.422501],\n          [-78.186635, 38.423265],\n          [-78.185396, 38.423841],\n          [-78.184545, 38.424162],\n          [-78.179643, 38.425692],\n          [-78.176595, 38.426575],\n          [-78.175037, 38.427149],\n          [-78.174014, 38.427529],\n          [-78.171007, 38.428688],\n          [-78.169272, 38.429381],\n          [-78.165511, 38.430827],\n          [-78.164119, 38.431371],\n          [-78.162591, 38.431967],\n          [-78.161653, 38.432308],\n          [-78.160661, 38.43271],\n          [-78.160269, 38.432865],\n          [-78.159874, 38.433009],\n          [-78.157491, 38.433942],\n          [-78.157022, 38.434133],\n          [-78.156281, 38.434403],\n          [-78.154122, 38.435214],\n          [-78.152887, 38.435503],\n          [-78.151935, 38.435645],\n          [-78.151237, 38.435723],\n          [-78.149391, 38.435895],\n          [-78.145341, 38.436294],\n          [-78.143178, 38.436516],\n          [-78.141588, 38.436723],\n          [-78.140742, 38.436927],\n          [-78.139967, 38.43716],\n          [-78.139029, 38.437478],\n          [-78.138213, 38.437833],\n          [-78.13673, 38.438732],\n          [-78.135769, 38.439493],\n          [-78.133667, 38.441543],\n          [-78.13309, 38.442092],\n          [-78.132637, 38.442565],\n          [-78.131362, 38.443807],\n          [-78.131197, 38.443972],\n          [-78.13069, 38.444456],\n          [-78.13004, 38.445093],\n          [-78.129654, 38.445515],\n          [-78.129431, 38.445788],\n          [-78.129306, 38.445939],\n          [-78.129135, 38.446147],\n          [-78.126535, 38.449414],\n          [-78.12559, 38.450596],\n          [-78.124937, 38.451403],\n          [-78.12463, 38.451786],\n          [-78.122999, 38.453819],\n          [-78.12268, 38.454222],\n          [-78.122212, 38.454799],\n          [-78.122012, 38.455018],\n          [-78.121815, 38.455209],\n          [-78.121657, 38.455346],\n          [-78.121484, 38.455481],\n          [-78.121283, 38.455622],\n          [-78.121072, 38.455755],\n          [-78.120838, 38.455889],\n          [-78.120605, 38.456007],\n          [-78.120411, 38.456093],\n          [-78.120081, 38.45622],\n          [-78.11988, 38.456286],\n          [-78.119617, 38.456362],\n          [-78.119481, 38.456395],\n          [-78.119029, 38.456484],\n          [-78.118859, 38.456513],\n          [-78.118556, 38.456543],\n          [-78.118252, 38.456558],\n          [-78.117886, 38.45656],\n          [-78.117582, 38.456545],\n          [-78.117215, 38.456509],\n          [-78.11691, 38.456463],\n          [-78.116669, 38.456417],\n          [-78.116299, 38.456332],\n          [-78.114395, 38.455867],\n          [-78.113075, 38.455549],\n          [-78.112183, 38.455337],\n          [-78.111983, 38.455288],\n          [-78.110622, 38.454956],\n          [-78.109647, 38.454713],\n          [-78.109318, 38.454619],\n          [-78.108646, 38.454427],\n          [-78.108148, 38.454266],\n          [-78.107826, 38.454152],\n          [-78.107433, 38.454006],\n          [-78.106215, 38.453523],\n          [-78.103244, 38.452284],\n          [-78.103113, 38.45223],\n          [-78.101465, 38.451517],\n          [-78.100793, 38.451267],\n          [-78.099999, 38.450965],\n          [-78.099633, 38.450843],\n          [-78.099366, 38.450762],\n          [-78.098981, 38.450649],\n          [-78.098604, 38.450547],\n          [-78.098262, 38.45046],\n          [-78.09792, 38.450384],\n          [-78.096808, 38.450181],\n          [-78.096151, 38.450083],\n          [-78.095446, 38.449969],\n          [-78.093727, 38.449707],\n          [-78.092677, 38.449547],\n          [-78.092158, 38.449481],\n          [-78.091766, 38.449445],\n          [-78.091635, 38.449437],\n          [-78.091391, 38.44943],\n          [-78.09088, 38.449437],\n          [-78.090541, 38.449459],\n          [-78.090154, 38.449505],\n          [-78.090027, 38.449526],\n          [-78.089761, 38.44957],\n          [-78.089091, 38.449707],\n          [-78.08849, 38.449845],\n          [-78.087312, 38.450134],\n          [-78.086546, 38.450314],\n          [-78.086092, 38.450427],\n          [-78.085716, 38.450516],\n          [-78.085217, 38.45064],\n          [-78.083614, 38.45102],\n          [-78.082588, 38.451268],\n          [-78.081682, 38.451496],\n          [-78.080934, 38.451707],\n          [-78.080808, 38.451743],\n          [-78.080252, 38.451928],\n          [-78.080061, 38.451995],\n          [-78.079356, 38.452244],\n          [-78.079056, 38.452366],\n          [-78.077758, 38.452899],\n          [-78.07693, 38.453218],\n          [-78.07648, 38.453363],\n          [-78.075972, 38.453504],\n          [-78.075519, 38.453613],\n          [-78.075245, 38.453672],\n          [-78.074633, 38.453773],\n          [-78.073634, 38.453917],\n          [-78.073086, 38.453985],\n          [-78.071708, 38.454165],\n          [-78.070367, 38.45434],\n          [-78.069606, 38.454439],\n          [-78.065196, 38.455001],\n          [-78.0636, 38.455212],\n          [-78.062967, 38.455296],\n          [-78.062279, 38.455383],\n          [-78.061807, 38.45545],\n          [-78.061375, 38.455516],\n          [-78.060496, 38.455651],\n          [-78.059099, 38.455874],\n          [-78.058415, 38.455997],\n          [-78.057861, 38.456107],\n          [-78.057398, 38.456211],\n          [-78.057094, 38.456284],\n          [-78.055369, 38.456762],\n          [-78.054558, 38.456978],\n          [-78.05416, 38.457057],\n          [-78.053923, 38.4571],\n          [-78.053692, 38.457137],\n          [-78.053464, 38.457172],\n          [-78.052965, 38.457229],\n          [-78.052547, 38.457266],\n          [-78.05168, 38.457327],\n          [-78.051381, 38.457343],\n          [-78.051209, 38.457356],\n          [-78.050231, 38.457415],\n          [-78.049522, 38.45745],\n          [-78.049115, 38.457457],\n          [-78.048707, 38.45745],\n          [-78.048107, 38.457414],\n          [-78.046583, 38.457296],\n          [-78.045473, 38.457209],\n          [-78.043615, 38.457066],\n          [-78.04299, 38.457014],\n          [-78.041948, 38.456934],\n          [-78.041564, 38.4569],\n          [-78.040447, 38.456809],\n          [-78.039807, 38.456752],\n          [-78.039565, 38.456722],\n          [-78.038614, 38.456586],\n          [-78.037992, 38.45648],\n          [-78.036619, 38.456229],\n          [-78.036312, 38.456174],\n          [-78.035316, 38.455996],\n          [-78.033993, 38.455756],\n          [-78.033455, 38.455659],\n          [-78.032995, 38.455576],\n          [-78.032344, 38.455462],\n          [-78.032225, 38.455441],\n          [-78.032071, 38.455411],\n          [-78.031918, 38.455381],\n          [-78.030629, 38.455156],\n          [-78.030487, 38.455136],\n          [-78.02993, 38.455035],\n          [-78.029397, 38.454939],\n          [-78.027154, 38.454551],\n          [-78.026507, 38.454439],\n          [-78.026143, 38.454368],\n          [-78.025005, 38.454171],\n          [-78.024336, 38.45404],\n          [-78.023622, 38.453878],\n          [-78.02312, 38.453727],\n          [-78.02273, 38.453603],\n          [-78.022384, 38.453473],\n          [-78.021945, 38.453293],\n          [-78.021688, 38.453179],\n          [-78.02141, 38.45304],\n          [-78.020949, 38.452794],\n          [-78.020606, 38.452593],\n          [-78.018376, 38.451156],\n          [-78.015052, 38.449001],\n          [-78.013038, 38.447702],\n          [-78.012718, 38.447476],\n          [-78.012365, 38.447314],\n          [-78.011913, 38.44707],\n          [-78.011467, 38.446849],\n          [-78.011017, 38.446646],\n          [-78.010785, 38.446548],\n          [-78.01041, 38.446389],\n          [-78.009947, 38.446212],\n          [-78.009475, 38.446047],\n          [-78.009032, 38.44592],\n          [-78.008198, 38.445668],\n          [-78.007806, 38.445574],\n          [-78.007536, 38.445509],\n          [-78.00704, 38.445404],\n          [-78.006541, 38.445314],\n          [-78.006039, 38.445234],\n          [-78.005535, 38.445168],\n          [-78.004882, 38.445103],\n          [-78.00427, 38.44506],\n          [-78.003857, 38.445042],\n          [-78.003259, 38.445032],\n          [-77.996098, 38.445039],\n          [-77.995524, 38.445052],\n          [-77.995083, 38.445072],\n          [-77.9946, 38.445108],\n          [-77.994291, 38.44514],\n          [-77.994119, 38.445159],\n          [-77.993562, 38.445235],\n          [-77.993077, 38.445314],\n          [-77.992738, 38.44538],\n          [-77.992304, 38.445476],\n          [-77.991774, 38.445609],\n          [-77.991277, 38.445754],\n          [-77.990885, 38.44588],\n          [-77.990401, 38.446049],\n          [-77.989902, 38.446248],\n          [-77.98951, 38.446417],\n          [-77.989127, 38.446595],\n          [-77.988671, 38.446826],\n          [-77.988226, 38.44707],\n          [-77.988015, 38.447193],\n          [-77.987964, 38.447222],\n          [-77.986229, 38.448266],\n          [-77.982377, 38.450578],\n          [-77.980067, 38.451965],\n          [-77.978396, 38.452971],\n          [-77.976723, 38.453978],\n          [-77.971729, 38.456974],\n          [-77.970854, 38.457513],\n          [-77.970447, 38.457776],\n          [-77.969812, 38.458205],\n          [-77.969672, 38.458304],\n          [-77.969294, 38.458571],\n          [-77.968878, 38.458872],\n          [-77.968162, 38.459423],\n          [-77.967696, 38.459799],\n          [-77.967125, 38.46028],\n          [-77.966325, 38.460982],\n          [-77.965258, 38.461918],\n          [-77.964866, 38.462267],\n          [-77.960196, 38.466376],\n          [-77.955939, 38.470123],\n          [-77.954947, 38.470996],\n          [-77.954533, 38.471358],\n          [-77.953922, 38.471893],\n          [-77.953458, 38.472304],\n          [-77.953176, 38.472548],\n          [-77.952583, 38.473072],\n          [-77.951119, 38.474355],\n          [-77.950943, 38.474509],\n          [-77.949669, 38.47563],\n          [-77.948949, 38.476265],\n          [-77.948002, 38.477098],\n          [-77.940672, 38.483548],\n          [-77.940481, 38.483731],\n          [-77.940188, 38.484012],\n          [-77.939893, 38.484318],\n          [-77.939484, 38.484776],\n          [-77.93926, 38.485054],\n          [-77.939039, 38.48534],\n          [-77.938835, 38.485618],\n          [-77.938574, 38.486003],\n          [-77.938385, 38.4863],\n          [-77.938154, 38.486695],\n          [-77.936929, 38.489071],\n          [-77.936476, 38.48995],\n          [-77.936307, 38.490277],\n          [-77.936213, 38.490449],\n          [-77.936032, 38.490779],\n          [-77.935797, 38.491168],\n          [-77.935515, 38.491593],\n          [-77.935238, 38.491981],\n          [-77.934904, 38.492412],\n          [-77.934836, 38.492493],\n          [-77.93462, 38.492753],\n          [-77.934238, 38.493183],\n          [-77.933985, 38.493449],\n          [-77.933681, 38.493753],\n          [-77.933395, 38.494018],\n          [-77.933018, 38.494354],\n          [-77.932749, 38.494585],\n          [-77.932252, 38.494973],\n          [-77.93171, 38.495374],\n          [-77.931341, 38.495628],\n          [-77.930966, 38.495866],\n          [-77.930194, 38.496327],\n          [-77.929795, 38.496546],\n          [-77.929468, 38.496713],\n          [-77.928898, 38.496989],\n          [-77.928401, 38.497211],\n          [-77.927814, 38.497454],\n          [-77.927352, 38.49763],\n          [-77.926883, 38.497792],\n          [-77.92627, 38.497988],\n          [-77.925745, 38.498139],\n          [-77.925688, 38.498154],\n          [-77.925207, 38.498279],\n          [-77.924635, 38.498412],\n          [-77.924059, 38.498531],\n          [-77.923478, 38.498637],\n          [-77.923244, 38.498675],\n          [-77.9209, 38.499106],\n          [-77.920407, 38.499196],\n          [-77.916265, 38.499951],\n          [-77.914897, 38.500194],\n          [-77.913262, 38.500498],\n          [-77.912906, 38.500563],\n          [-77.911059, 38.5009],\n          [-77.910401, 38.501012],\n          [-77.909308, 38.501222],\n          [-77.90816, 38.501425],\n          [-77.906956, 38.501647],\n          [-77.902649, 38.502433],\n          [-77.901836, 38.502578],\n          [-77.901383, 38.502661],\n          [-77.899056, 38.503088],\n          [-77.897887, 38.503302],\n          [-77.896932, 38.503454],\n          [-77.896481, 38.503514],\n          [-77.896026, 38.50356],\n          [-77.89557, 38.503592],\n          [-77.895091, 38.503613],\n          [-77.894605, 38.503621],\n          [-77.894338, 38.503619],\n          [-77.894023, 38.503612],\n          [-77.893539, 38.503589],\n          [-77.893152, 38.50356],\n          [-77.891645, 38.503392],\n          [-77.891145, 38.503351],\n          [-77.890705, 38.503331],\n          [-77.890264, 38.503325],\n          [-77.89, 38.503328],\n          [-77.889421, 38.503346],\n          [-77.888918, 38.503375],\n          [-77.888578, 38.503406],\n          [-77.888318, 38.503429],\n          [-77.887823, 38.50349],\n          [-77.887334, 38.503566],\n          [-77.886849, 38.503655],\n          [-77.886369, 38.503759],\n          [-77.885701, 38.503929],\n          [-77.88504, 38.504114],\n          [-77.883872, 38.504451],\n          [-77.882026, 38.504972],\n          [-77.880726, 38.50535],\n          [-77.879756, 38.505628],\n          [-77.879416, 38.505726],\n          [-77.878734, 38.505916],\n          [-77.87665, 38.506514],\n          [-77.873295, 38.507467],\n          [-77.870872, 38.508164],\n          [-77.867574, 38.509112],\n          [-77.86643, 38.509426],\n          [-77.865139, 38.509804],\n          [-77.864878, 38.509875],\n          [-77.864614, 38.509946],\n          [-77.864004, 38.510124],\n          [-77.863963, 38.510136],\n          [-77.863243, 38.510359],\n          [-77.862776, 38.510515],\n          [-77.862313, 38.51068],\n          [-77.86153, 38.510992],\n          [-77.86091, 38.511252],\n          [-77.860341, 38.511504],\n          [-77.860101, 38.511597],\n          [-77.859873, 38.511706],\n          [-77.859049, 38.512033],\n          [-77.858596, 38.512199],\n          [-77.85801, 38.512393],\n          [-77.85641, 38.512859],\n          [-77.85546, 38.513131],\n          [-77.853636, 38.513652],\n          [-77.852939, 38.513842],\n          [-77.85189, 38.514117],\n          [-77.851773, 38.514147],\n          [-77.851155, 38.514282],\n          [-77.850783, 38.514355],\n          [-77.850158, 38.514468],\n          [-77.849529, 38.514566],\n          [-77.848611, 38.514673],\n          [-77.847601, 38.514814],\n          [-77.847219, 38.514874],\n          [-77.846744, 38.514961],\n          [-77.846275, 38.515063],\n          [-77.845622, 38.515227],\n          [-77.843493, 38.515828],\n          [-77.840926, 38.516554],\n          [-77.838953, 38.517123],\n          [-77.838611, 38.51724],\n          [-77.838276, 38.51737],\n          [-77.838087, 38.517452],\n          [-77.837878, 38.517559],\n          [-77.837641, 38.517698],\n          [-77.837371, 38.517879],\n          [-77.837159, 38.518042],\n          [-77.836631, 38.518508],\n          [-77.833939, 38.52107],\n          [-77.833536, 38.521444],\n          [-77.832859, 38.52207],\n          [-77.832618, 38.52227],\n          [-77.832363, 38.52246],\n          [-77.832151, 38.522605],\n          [-77.831761, 38.52284],\n          [-77.831645, 38.522905],\n          [-77.831341, 38.523059],\n          [-77.831027, 38.523201],\n          [-77.830705, 38.52333],\n          [-77.830375, 38.523446],\n          [-77.82725, 38.524408],\n          [-77.825282, 38.525005],\n          [-77.824825, 38.525153],\n          [-77.824766, 38.525172],\n          [-77.82414, 38.525403],\n          [-77.823904, 38.525501],\n          [-77.823444, 38.525707],\n          [-77.823161, 38.525842],\n          [-77.822816, 38.526023],\n          [-77.822483, 38.526216],\n          [-77.82216, 38.526429],\n          [-77.821905, 38.526618],\n          [-77.821824, 38.526681],\n          [-77.821661, 38.526816],\n          [-77.82143, 38.527024],\n          [-77.821026, 38.527454],\n          [-77.820758, 38.527783],\n          [-77.820516, 38.528112],\n          [-77.820197, 38.52856],\n          [-77.819895, 38.529029],\n          [-77.81945, 38.529798],\n          [-77.818541, 38.531386],\n          [-77.817476, 38.533249],\n          [-77.817174, 38.533749],\n          [-77.815779, 38.536111],\n          [-77.812836, 38.541042],\n          [-77.812145, 38.542152],\n          [-77.811443, 38.543345],\n          [-77.81107, 38.543916],\n          [-77.809169, 38.54677],\n          [-77.807061, 38.549912],\n          [-77.805801, 38.55177],\n          [-77.803189, 38.555743],\n          [-77.802664, 38.55653],\n          [-77.802442, 38.556869],\n          [-77.802253, 38.557175],\n          [-77.802079, 38.557492],\n          [-77.801838, 38.557971],\n          [-77.801782, 38.55809],\n          [-77.801657, 38.55838],\n          [-77.801522, 38.558722],\n          [-77.801429, 38.558994],\n          [-77.801302, 38.559432],\n          [-77.801209, 38.559822],\n          [-77.801144, 38.560169],\n          [-77.801065, 38.560727],\n          [-77.801025, 38.56131],\n          [-77.801027, 38.561813],\n          [-77.801049, 38.562487],\n          [-77.801069, 38.562893],\n          [-77.801213, 38.565749],\n          [-77.801305, 38.567636],\n          [-77.80137, 38.568961],\n          [-77.801541, 38.572402],\n          [-77.801599, 38.573623],\n          [-77.801669, 38.575224],\n          [-77.801707, 38.575829],\n          [-77.801772, 38.577117],\n          [-77.801874, 38.579138],\n          [-77.801902, 38.579759],\n          [-77.801914, 38.579914],\n          [-77.801945, 38.580642],\n          [-77.801977, 38.581198],\n          [-77.802036, 38.582417],\n          [-77.802118, 38.584113],\n          [-77.802126, 38.584391],\n          [-77.802131, 38.584986],\n          [-77.802118, 38.585525],\n          [-77.802088, 38.586052],\n          [-77.802017, 38.586791],\n          [-77.801743, 38.589112],\n          [-77.801725, 38.589268],\n          [-77.801437, 38.591698],\n          [-77.801342, 38.5925],\n          [-77.801281, 38.593006],\n          [-77.800994, 38.595455],\n          [-77.800644, 38.598437],\n          [-77.800492, 38.599704],\n          [-77.800457, 38.599972],\n          [-77.800268, 38.601612],\n          [-77.800209, 38.602305],\n          [-77.80017, 38.602992],\n          [-77.800152, 38.603904],\n          [-77.800152, 38.604035],\n          [-77.800152, 38.604483],\n          [-77.800172, 38.60559],\n          [-77.800187, 38.606551],\n          [-77.800205, 38.607644],\n          [-77.80022, 38.608813],\n          [-77.800237, 38.609384],\n          [-77.800232, 38.610093],\n          [-77.800248, 38.611162],\n          [-77.80027, 38.611781],\n          [-77.800276, 38.611972],\n          [-77.800298, 38.612639],\n          [-77.800312, 38.613039],\n          [-77.800332, 38.613399],\n          [-77.800397, 38.614527],\n          [-77.800421, 38.615203],\n          [-77.800432, 38.61575],\n          [-77.800444, 38.616559],\n          [-77.800478, 38.618723],\n          [-77.8005, 38.619601],\n          [-77.800525, 38.620811],\n          [-77.800527, 38.620908],\n          [-77.800548, 38.62192],\n          [-77.80058, 38.623403],\n          [-77.800594, 38.624213],\n          [-77.800603, 38.625413],\n          [-77.80062, 38.627386],\n          [-77.800629, 38.627856],\n          [-77.800651, 38.62934],\n          [-77.800658, 38.629863],\n          [-77.800688, 38.631295],\n          [-77.800701, 38.63219],\n          [-77.800708, 38.632656],\n          [-77.800729, 38.632937],\n          [-77.800749, 38.6331],\n          [-77.800764, 38.633194],\n          [-77.800824, 38.633493],\n          [-77.8009, 38.63375],\n          [-77.801033, 38.634132],\n          [-77.801091, 38.634277],\n          [-77.801339, 38.634852],\n          [-77.801526, 38.635289],\n          [-77.801703, 38.635692],\n          [-77.801752, 38.635808],\n          [-77.801965, 38.636295],\n          [-77.802897, 38.638462],\n          [-77.802996, 38.638693],\n          [-77.803206, 38.639174],\n          [-77.803351, 38.639505],\n          [-77.803635, 38.640158],\n          [-77.803774, 38.640485],\n          [-77.80405, 38.641121],\n          [-77.804137, 38.641325],\n          [-77.804199, 38.641471],\n          [-77.804367, 38.641868],\n          [-77.804398, 38.641941],\n          [-77.804535, 38.642359],\n          [-77.804602, 38.642621],\n          [-77.804642, 38.642832],\n          [-77.804669, 38.643038],\n          [-77.804677, 38.643118],\n          [-77.804687, 38.643291],\n          [-77.804696, 38.643722],\n          [-77.804696, 38.644409],\n          [-77.804677, 38.644766],\n          [-77.804636, 38.645023],\n          [-77.804576, 38.645279],\n          [-77.804498, 38.645531],\n          [-77.804445, 38.645671],\n          [-77.804179, 38.646296],\n          [-77.803976, 38.646795],\n          [-77.803645, 38.647584],\n          [-77.803607, 38.647672],\n          [-77.803037, 38.649027],\n          [-77.802582, 38.650099],\n          [-77.802488, 38.65032],\n          [-77.80226, 38.650816],\n          [-77.802226, 38.650891],\n          [-77.801705, 38.651973],\n          [-77.801524, 38.652348],\n          [-77.800517, 38.654435],\n          [-77.800311, 38.654856],\n          [-77.800109, 38.655223],\n          [-77.799504, 38.656216],\n          [-77.799258, 38.656629],\n          [-77.799064, 38.656995],\n          [-77.798952, 38.657238],\n          [-77.798593, 38.658126],\n          [-77.798524, 38.658287],\n          [-77.798395, 38.658591],\n          [-77.798266, 38.658901],\n          [-77.798049, 38.659428],\n          [-77.797829, 38.659963],\n          [-77.79736, 38.661105],\n          [-77.797075, 38.661795],\n          [-77.796724, 38.662641],\n          [-77.79625, 38.663783],\n          [-77.796094, 38.664161],\n          [-77.795637, 38.665271],\n          [-77.79528, 38.666132],\n          [-77.795248, 38.66621],\n          [-77.794069, 38.669063],\n          [-77.793674, 38.670024],\n          [-77.793379, 38.670723],\n          [-77.793244, 38.671036],\n          [-77.793103, 38.671307],\n          [-77.792943, 38.671571],\n          [-77.792813, 38.671755],\n          [-77.792641, 38.671968],\n          [-77.792454, 38.672174],\n          [-77.792251, 38.672371],\n          [-77.791496, 38.673047],\n          [-77.791134, 38.673372],\n          [-77.790643, 38.673809],\n          [-77.789269, 38.675032],\n          [-77.788765, 38.675507],\n          [-77.788692, 38.675576],\n          [-77.788181, 38.676104],\n          [-77.787807, 38.676549],\n          [-77.787668, 38.676743],\n          [-77.787501, 38.677031],\n          [-77.78738, 38.677265],\n          [-77.78733, 38.677383],\n          [-77.787232, 38.677659],\n          [-77.787165, 38.677911],\n          [-77.787115, 38.678177],\n          [-77.787085, 38.678445],\n          [-77.787079, 38.678552],\n          [-77.787095, 38.67913],\n          [-77.787153, 38.679798],\n          [-77.787259, 38.680924],\n          [-77.787331, 38.681886],\n          [-77.787363, 38.682419],\n          [-77.787413, 38.683635],\n          [-77.787401, 38.684203],\n          [-77.787392, 38.684611],\n          [-77.78735, 38.685019],\n          [-77.787315, 38.685264],\n          [-77.787231, 38.685728],\n          [-77.787136, 38.686251],\n          [-77.787114, 38.686332],\n          [-77.78692, 38.686986],\n          [-77.786696, 38.687619],\n          [-77.786501, 38.688074],\n          [-77.786277, 38.68855],\n          [-77.786098, 38.688888],\n          [-77.785944, 38.689154],\n          [-77.785576, 38.689748],\n          [-77.784818, 38.690938],\n          [-77.784516, 38.691425],\n          [-77.784271, 38.691807],\n          [-77.783827, 38.692506],\n          [-77.783401, 38.6932],\n          [-77.783246, 38.693444],\n          [-77.782384, 38.694802],\n          [-77.782205, 38.695084],\n          [-77.781593, 38.696059],\n          [-77.781243, 38.69667],\n          [-77.78108, 38.696994],\n          [-77.780923, 38.697347],\n          [-77.780812, 38.697637],\n          [-77.780687, 38.698004],\n          [-77.780614, 38.698231],\n          [-77.780587, 38.698314],\n          [-77.780392, 38.699181],\n          [-77.780333, 38.699659],\n          [-77.780298, 38.700094],\n          [-77.780287, 38.700389],\n          [-77.780289, 38.700757],\n          [-77.780315, 38.701452],\n          [-77.780365, 38.702797],\n          [-77.780397, 38.703509],\n          [-77.780462, 38.705131],\n          [-77.780535, 38.706895],\n          [-77.780587, 38.708144],\n          [-77.780612, 38.708911],\n          [-77.780675, 38.710324],\n          [-77.780782, 38.713019],\n          [-77.780806, 38.713639],\n          [-77.780906, 38.716128],\n          [-77.780923, 38.716557],\n          [-77.780985, 38.71812],\n          [-77.781094, 38.720811],\n          [-77.781111, 38.721348],\n          [-77.78117, 38.722771],\n          [-77.781205, 38.723428],\n          [-77.781207, 38.723933],\n          [-77.781141, 38.724638],\n          [-77.781062, 38.725028],\n          [-77.780986, 38.725313],\n          [-77.780873, 38.725651],\n          [-77.780799, 38.725838],\n          [-77.780763, 38.72593],\n          [-77.780608, 38.726258],\n          [-77.780457, 38.726537],\n          [-77.78029, 38.726814],\n          [-77.780067, 38.727137],\n          [-77.779841, 38.727426],\n          [-77.779593, 38.727712],\n          [-77.779535, 38.727773],\n          [-77.779432, 38.727882],\n          [-77.779137, 38.728163],\n          [-77.778889, 38.728379],\n          [-77.778564, 38.728638],\n          [-77.777988, 38.729064],\n          [-77.777903, 38.729128],\n          [-77.777813, 38.729195],\n          [-77.777751, 38.72924],\n          [-77.777544, 38.729395],\n          [-77.776507, 38.73018],\n          [-77.77534, 38.731069],\n          [-77.775049, 38.73127],\n          [-77.774364, 38.73177],\n          [-77.774051, 38.732009],\n          [-77.773303, 38.732554],\n          [-77.772496, 38.733155],\n          [-77.772444, 38.733192],\n          [-77.771424, 38.733941],\n          [-77.770375, 38.73472],\n          [-77.769774, 38.735166],\n          [-77.766501, 38.737595],\n          [-77.766092, 38.7379],\n          [-77.766013, 38.737957],\n          [-77.764613, 38.738973],\n          [-77.763699, 38.739647],\n          [-77.760294, 38.742188],\n          [-77.759475, 38.742805],\n          [-77.758292, 38.743704],\n          [-77.757242, 38.744507],\n          [-77.756734, 38.744888],\n          [-77.75607, 38.745394],\n          [-77.755332, 38.74595],\n          [-77.753869, 38.747051],\n          [-77.753512, 38.747317],\n          [-77.752239, 38.748266],\n          [-77.751486, 38.748835],\n          [-77.749304, 38.750477],\n          [-77.747696, 38.751677],\n          [-77.747175, 38.752069],\n          [-77.746636, 38.752468],\n          [-77.746089, 38.752858],\n          [-77.745719, 38.753113],\n          [-77.745109, 38.753534],\n          [-77.744529, 38.753946],\n          [-77.744441, 38.754016],\n          [-77.743143, 38.755039],\n          [-77.742369, 38.755648],\n          [-77.741019, 38.756723],\n          [-77.740302, 38.757289],\n          [-77.74012, 38.757439],\n          [-77.739869, 38.757633],\n          [-77.739452, 38.757933],\n          [-77.738896, 38.758325],\n          [-77.738458, 38.758616],\n          [-77.737994, 38.758912],\n          [-77.737675, 38.759109],\n          [-77.736928, 38.759546],\n          [-77.736529, 38.759764],\n          [-77.73598, 38.760062],\n          [-77.735512, 38.760302],\n          [-77.734641, 38.760749],\n          [-77.731871, 38.762168],\n          [-77.730354, 38.762946],\n          [-77.726563, 38.764904],\n          [-77.726297, 38.765042],\n          [-77.725494, 38.765462],\n          [-77.724993, 38.765717],\n          [-77.724283, 38.76606],\n          [-77.724155, 38.766114],\n          [-77.723683, 38.766274],\n          [-77.723631, 38.766287],\n          [-77.723461, 38.76633],\n          [-77.723208, 38.766384],\n          [-77.722948, 38.766425],\n          [-77.722732, 38.766449],\n          [-77.722439, 38.766466],\n          [-77.722204, 38.76647],\n          [-77.721761, 38.76645],\n          [-77.721338, 38.766416],\n          [-77.720827, 38.766373],\n          [-77.71958, 38.766268],\n          [-77.718945, 38.766226],\n          [-77.71829, 38.766214],\n          [-77.717886, 38.766231],\n          [-77.717644, 38.766248],\n          [-77.717238, 38.766296],\n          [-77.716986, 38.766333],\n          [-77.716478, 38.766426],\n          [-77.715933, 38.766539],\n          [-77.71313, 38.767126],\n          [-77.71253, 38.76725],\n          [-77.711446, 38.767475],\n          [-77.711213, 38.767521],\n          [-77.709832, 38.76781],\n          [-77.709246, 38.767933],\n          [-77.708584, 38.768078],\n          [-77.708134, 38.768177],\n          [-77.707984, 38.768211],\n          [-77.707651, 38.768287],\n          [-77.707208, 38.768389],\n          [-77.707037, 38.768429],\n          [-77.706966, 38.768445],\n          [-77.706604, 38.768529],\n          [-77.705724, 38.768733],\n          [-77.704884, 38.768928],\n          [-77.704008, 38.769125],\n          [-77.703413, 38.769266],\n          [-77.703044, 38.769359],\n          [-77.702667, 38.769454],\n          [-77.702289, 38.769565],\n          [-77.701922, 38.769687],\n          [-77.701705, 38.769766],\n          [-77.701294, 38.769925],\n          [-77.700381, 38.770277],\n          [-77.698624, 38.770957],\n          [-77.69792, 38.771222],\n          [-77.696779, 38.771656],\n          [-77.696286, 38.771839],\n          [-77.694688, 38.772451],\n          [-77.693388, 38.772942],\n          [-77.69338, 38.772945],\n          [-77.69299, 38.773092],\n          [-77.691828, 38.773541],\n          [-77.689985, 38.774273],\n          [-77.689184, 38.774593],\n          [-77.687947, 38.775099],\n          [-77.68652, 38.775696],\n          [-77.686093, 38.775875],\n          [-77.685013, 38.776323],\n          [-77.684548, 38.776508],\n          [-77.683617, 38.77688],\n          [-77.682281, 38.77742],\n          [-77.681906, 38.77757],\n          [-77.680152, 38.778273],\n          [-77.680071, 38.778309],\n          [-77.679964, 38.778348],\n          [-77.67944, 38.778559],\n          [-77.679135, 38.778682],\n          [-77.679008, 38.778733],\n          [-77.678765, 38.778831],\n          [-77.678322, 38.779011],\n          [-77.677302, 38.779417],\n          [-77.677036, 38.779514],\n          [-77.676871, 38.779569],\n          [-77.676375, 38.779711],\n          [-77.675903, 38.779834],\n          [-77.675739, 38.779874],\n          [-77.675282, 38.779966],\n          [-77.675165, 38.77999],\n          [-77.673681, 38.780291],\n          [-77.67245, 38.780538],\n          [-77.671784, 38.780666],\n          [-77.671623, 38.780699],\n          [-77.671392, 38.780752],\n          [-77.670977, 38.780857],\n          [-77.67067, 38.780949],\n          [-77.669909, 38.781181],\n          [-77.669755, 38.781229],\n          [-77.668691, 38.781557],\n          [-77.668105, 38.781729],\n          [-77.66717, 38.781984],\n          [-77.665556, 38.7824],\n          [-77.665397, 38.782443],\n          [-77.66509, 38.782528],\n          [-77.663117, 38.783041],\n          [-77.662729, 38.783142],\n          [-77.658982, 38.784122],\n          [-77.658234, 38.784318],\n          [-77.657487, 38.784515],\n          [-77.656903, 38.784668],\n          [-77.656444, 38.784785],\n          [-77.655772, 38.784954],\n          [-77.655488, 38.785028],\n          [-77.654149, 38.78538],\n          [-77.653073, 38.785665],\n          [-77.652817, 38.785732],\n          [-77.652723, 38.785757],\n          [-77.652335, 38.78586],\n          [-77.650432, 38.786358],\n          [-77.650292, 38.786394],\n          [-77.648546, 38.786845],\n          [-77.648132, 38.786953],\n          [-77.6471, 38.787217],\n          [-77.646912, 38.787266],\n          [-77.646792, 38.787296],\n          [-77.646475, 38.787378],\n          [-77.643862, 38.788066],\n          [-77.643514, 38.788151],\n          [-77.642956, 38.788288],\n          [-77.641845, 38.788545],\n          [-77.641256, 38.788678],\n          [-77.640668, 38.788812],\n          [-77.637878, 38.789456],\n          [-77.637724, 38.789491],\n          [-77.635026, 38.790112],\n          [-77.633026, 38.790572],\n          [-77.631672, 38.790883],\n          [-77.630391, 38.791179],\n          [-77.630168, 38.791231],\n          [-77.629412, 38.791414],\n          [-77.629006, 38.791523],\n          [-77.628982, 38.791529],\n          [-77.628275, 38.791722],\n          [-77.626219, 38.792284],\n          [-77.625465, 38.792483],\n          [-77.624741, 38.792675],\n          [-77.624567, 38.792721],\n          [-77.624468, 38.792748],\n          [-77.624067, 38.792856],\n          [-77.622821, 38.793191],\n          [-77.622323, 38.793326],\n          [-77.622182, 38.793359],\n          [-77.62157, 38.793529],\n          [-77.621412, 38.793572],\n          [-77.620477, 38.793825],\n          [-77.620443, 38.793835],\n          [-77.619193, 38.794171],\n          [-77.619018, 38.794213],\n          [-77.617763, 38.794556],\n          [-77.617092, 38.79473],\n          [-77.616747, 38.794832],\n          [-77.614017, 38.7956],\n          [-77.613309, 38.7958],\n          [-77.613097, 38.795859],\n          [-77.611965, 38.796178],\n          [-77.611011, 38.796432],\n          [-77.609519, 38.79683],\n          [-77.609066, 38.796955],\n          [-77.60887, 38.79701],\n          [-77.608124, 38.797223],\n          [-77.607861, 38.79729],\n          [-77.60659, 38.797608],\n          [-77.604759, 38.798106],\n          [-77.603341, 38.798433],\n          [-77.602615, 38.798623],\n          [-77.60217, 38.798681],\n          [-77.60178, 38.798726],\n          [-77.60159, 38.798739],\n          [-77.601338, 38.79876],\n          [-77.601043, 38.798748],\n          [-77.600761, 38.798726],\n          [-77.600475, 38.798685],\n          [-77.600088, 38.798626],\n          [-77.598701, 38.798329],\n          [-77.598447, 38.798288],\n          [-77.598168, 38.798263],\n          [-77.597945, 38.798266],\n          [-77.597733, 38.798267],\n          [-77.597515, 38.798295],\n          [-77.597295, 38.798329],\n          [-77.59709, 38.79838],\n          [-77.596838, 38.798472],\n          [-77.596056, 38.79873],\n          [-77.595792, 38.798802],\n          [-77.595557, 38.798839],\n          [-77.595321, 38.798872],\n          [-77.595123, 38.798893],\n          [-77.594903, 38.798906],\n          [-77.594606, 38.798902],\n          [-77.592349, 38.798571],\n          [-77.589853, 38.798246],\n          [-77.587564, 38.797961],\n          [-77.584659, 38.797708],\n          [-77.583518, 38.797592],\n          [-77.582596, 38.797507],\n          [-77.581727, 38.797465],\n          [-77.580645, 38.797422],\n          [-77.579853, 38.797408],\n          [-77.579381, 38.797391],\n          [-77.579328, 38.797391],\n          [-77.578346, 38.797391],\n          [-77.576989, 38.797404],\n          [-77.576007, 38.797446],\n          [-77.575373, 38.797504],\n          [-77.571144, 38.797797],\n          [-77.569287, 38.79792],\n          [-77.56555, 38.798187],\n          [-77.561659, 38.798447],\n          [-77.555891, 38.7988],\n          [-77.553755, 38.798951],\n          [-77.550887, 38.799152],\n          [-77.550295, 38.799193],\n          [-77.548407, 38.799331],\n          [-77.54595, 38.799494],\n          [-77.541063, 38.799812],\n          [-77.539341, 38.799946],\n          [-77.536546, 38.800151],\n          [-77.532281, 38.800448],\n          [-77.529135, 38.800667],\n          [-77.525861, 38.800895],\n          [-77.523173, 38.801079],\n          [-77.520134, 38.801324],\n          [-77.519426, 38.801374],\n          [-77.518588, 38.801436],\n          [-77.514662, 38.801698],\n          [-77.51275, 38.801833],\n          [-77.512257, 38.801883],\n          [-77.51176, 38.801949],\n          [-77.511242, 38.802033],\n          [-77.510728, 38.802133],\n          [-77.510237, 38.802245],\n          [-77.509757, 38.802371],\n          [-77.509283, 38.802511],\n          [-77.508762, 38.802686],\n          [-77.508249, 38.802874],\n          [-77.503238, 38.804849],\n          [-77.501867, 38.805383],\n          [-77.49854, 38.806696],\n          [-77.492854, 38.808929],\n          [-77.492586, 38.809039],\n          [-77.491408, 38.809499],\n          [-77.490728, 38.809768],\n          [-77.490387, 38.809903],\n          [-77.489846, 38.810125],\n          [-77.48976, 38.810159],\n          [-77.489588, 38.810228],\n          [-77.488128, 38.810814],\n          [-77.487975, 38.810876],\n          [-77.487938, 38.810891],\n          [-77.487614, 38.811027],\n          [-77.486889, 38.811312],\n          [-77.485515, 38.811841],\n          [-77.481021, 38.813606],\n          [-77.480031, 38.813987],\n          [-77.479528, 38.81418],\n          [-77.478278, 38.814671],\n          [-77.477784, 38.814859],\n          [-77.476696, 38.815283],\n          [-77.476308, 38.815444],\n          [-77.470849, 38.817587],\n          [-77.469997, 38.817934],\n          [-77.469107, 38.818314],\n          [-77.468263, 38.818692],\n          [-77.467788, 38.818912],\n          [-77.466824, 38.819384],\n          [-77.466481, 38.819559],\n          [-77.465978, 38.819814],\n          [-77.465888, 38.819862],\n          [-77.465082, 38.820299],\n          [-77.464689, 38.820516],\n          [-77.463916, 38.820976],\n          [-77.463568, 38.821184],\n          [-77.462817, 38.82165],\n          [-77.462169, 38.822067],\n          [-77.461524, 38.822499],\n          [-77.460742, 38.823046],\n          [-77.459971, 38.823615],\n          [-77.459453, 38.824009],\n          [-77.458829, 38.824505],\n          [-77.458041, 38.825157],\n          [-77.457989, 38.825199],\n          [-77.457719, 38.825436],\n          [-77.457456, 38.825667],\n          [-77.457174, 38.825914],\n          [-77.456485, 38.82655],\n          [-77.455925, 38.827089],\n          [-77.455609, 38.827408],\n          [-77.455354, 38.827664],\n          [-77.455286, 38.827736],\n          [-77.454763, 38.828288],\n          [-77.453687, 38.829492],\n          [-77.45117, 38.83231],\n          [-77.450091, 38.833546],\n          [-77.449603, 38.834072],\n          [-77.4484, 38.835411],\n          [-77.448317, 38.835496],\n          [-77.447073, 38.836883],\n          [-77.446568, 38.837456],\n          [-77.444983, 38.839239],\n          [-77.444962, 38.839261],\n          [-77.44448, 38.839771],\n          [-77.443925, 38.840374],\n          [-77.443121, 38.841151],\n          [-77.442523, 38.841683],\n          [-77.442048, 38.842083],\n          [-77.441563, 38.842472],\n          [-77.44121, 38.842729],\n          [-77.440835, 38.842989],\n          [-77.440353, 38.843301],\n          [-77.439357, 38.843895],\n          [-77.438808, 38.844189],\n          [-77.438412, 38.844388],\n          [-77.438154, 38.844513],\n          [-77.437585, 38.844773],\n          [-77.43695, 38.845042],\n          [-77.436125, 38.845358],\n          [-77.435386, 38.845611],\n          [-77.434841, 38.845778],\n          [-77.434461, 38.845886],\n          [-77.434065, 38.845989],\n          [-77.433588, 38.846102],\n          [-77.432595, 38.846311],\n          [-77.431976, 38.846424],\n          [-77.431894, 38.846439],\n          [-77.43166, 38.846482],\n          [-77.43013, 38.84677],\n          [-77.428638, 38.847052],\n          [-77.427672, 38.847201],\n          [-77.426895, 38.847336],\n          [-77.426613, 38.847387],\n          [-77.423954, 38.847868],\n          [-77.42318, 38.84802],\n          [-77.422578, 38.848129],\n          [-77.421734, 38.848284],\n          [-77.419777, 38.84865],\n          [-77.418032, 38.848977],\n          [-77.416532, 38.849246],\n          [-77.415198, 38.849482],\n          [-77.414151, 38.849672],\n          [-77.413692, 38.849756],\n          [-77.413004, 38.849886],\n          [-77.41025, 38.850388],\n          [-77.408348, 38.850725],\n          [-77.406003, 38.851167],\n          [-77.404553, 38.851419],\n          [-77.403103, 38.851676],\n          [-77.402433, 38.851803],\n          [-77.401513, 38.851954],\n          [-77.399882, 38.852249],\n          [-77.399048, 38.852319],\n          [-77.398718, 38.852375],\n          [-77.397996, 38.852492],\n          [-77.397318, 38.852624],\n          [-77.396752, 38.852714],\n          [-77.396348, 38.852749],\n          [-77.395658, 38.852767],\n          [-77.395009, 38.8528],\n          [-77.394695, 38.852837],\n          [-77.39433, 38.852891],\n          [-77.393802, 38.852984],\n          [-77.393126, 38.853114],\n          [-77.392725, 38.85318],\n          [-77.392095, 38.853297],\n          [-77.391904, 38.853339],\n          [-77.391134, 38.853478],\n          [-77.389836, 38.853723],\n          [-77.389215, 38.853845],\n          [-77.38892, 38.853895],\n          [-77.388716, 38.853941],\n          [-77.388024, 38.854062],\n          [-77.387165, 38.854196],\n          [-77.386771, 38.854162],\n          [-77.386529, 38.854111],\n          [-77.386343, 38.854055],\n          [-77.386187, 38.853987],\n          [-77.386127, 38.853954],\n          [-77.386079, 38.85392],\n          [-77.385986, 38.853839],\n          [-77.385938, 38.853785],\n          [-77.385904, 38.853738],\n          [-77.385849, 38.853638],\n          [-77.385829, 38.853585],\n          [-77.385812, 38.853521],\n          [-77.3858, 38.853402],\n          [-77.385805, 38.853336],\n          [-77.385817, 38.853271],\n          [-77.38586, 38.853155],\n          [-77.385888, 38.853105],\n          [-77.385929, 38.853047],\n          [-77.38601, 38.852959],\n          [-77.386068, 38.85291],\n          [-77.386119, 38.852873],\n          [-77.386233, 38.85281],\n          [-77.386292, 38.852784],\n          [-77.386367, 38.852757],\n          [-77.386444, 38.852736],\n          [-77.386551, 38.852715],\n          [-77.386695, 38.852705],\n          [-77.38684, 38.852711],\n          [-77.386899, 38.85272],\n          [-77.386985, 38.852739],\n          [-77.387131, 38.852784],\n          [-77.387234, 38.852827],\n          [-77.387327, 38.852872],\n          [-77.387501, 38.852977],\n          [-77.387596, 38.853046],\n          [-77.387689, 38.853125],\n          [-77.387869, 38.853301],\n          [-77.388005, 38.8535],\n          [-77.388211, 38.853861],\n          [-77.388248, 38.853958],\n          [-77.38834, 38.854202],\n          [-77.388434, 38.854509],\n          [-77.388512, 38.85483],\n          [-77.388556, 38.855045],\n          [-77.388563, 38.855077],\n          [-77.388615, 38.855398],\n          [-77.38864, 38.855726],\n          [-77.388657, 38.85606],\n          [-77.388632, 38.856494],\n          [-77.388606, 38.856728],\n          [-77.388546, 38.857062],\n          [-77.388494, 38.857283],\n          [-77.388383, 38.85759],\n          [-77.388245, 38.857898],\n          [-77.387962, 38.858392],\n          [-77.387722, 38.858713],\n          [-77.387587, 38.858842],\n          [-77.387448, 38.858992],\n          [-77.38738, 38.859049],\n          [-77.387049, 38.859315],\n          [-77.387001, 38.859355],\n          [-77.386572, 38.859616],\n          [-77.386057, 38.859876],\n          [-77.385696, 38.860037],\n          [-77.385104, 38.860297],\n          [-77.384246, 38.860678],\n          [-77.383311, 38.861091],\n          [-77.382484, 38.861549],\n          [-77.381927, 38.861964],\n          [-77.381649, 38.862271],\n          [-77.381472, 38.862656],\n          [-77.38114, 38.86254],\n          [-77.380676, 38.862336],\n          [-77.380373, 38.862167],\n          [-77.380144, 38.862016],\n          [-77.379932, 38.861857],\n          [-77.379724, 38.861669],\n          [-77.379541, 38.861495],\n          [-77.379299, 38.861256],\n          [-77.379174, 38.86114],\n          [-77.378963, 38.86097],\n          [-77.378779, 38.860822],\n          [-77.378622, 38.860715],\n          [-77.378375, 38.860584],\n          [-77.37825, 38.860526],\n          [-77.377901, 38.860354],\n          [-77.377674, 38.860258],\n          [-77.377503, 38.860194],\n          [-77.376982, 38.860031],\n          [-77.376724, 38.859968],\n          [-77.376465, 38.859908],\n          [-77.376139, 38.859843],\n          [-77.375957, 38.859809],\n          [-77.375449, 38.859704],\n          [-77.37477, 38.859591],\n          [-77.373992, 38.859482],\n          [-77.373385, 38.859411],\n          [-77.373319, 38.859405],\n          [-77.371684, 38.859251],\n          [-77.371331, 38.859226],\n          [-77.37112, 38.859211],\n          [-77.371099, 38.85942],\n          [-77.371098, 38.859619],\n          [-77.371033, 38.860102],\n          [-77.370993, 38.860407],\n          [-77.370953, 38.86073],\n          [-77.370894, 38.86095],\n          [-77.370816, 38.861165],\n          [-77.370757, 38.861296],\n          [-77.370665, 38.861443],\n          [-77.370575, 38.861587],\n          [-77.370384, 38.861875],\n          [-77.370116, 38.862301],\n          [-77.369869, 38.862675],\n          [-77.369695, 38.862937],\n          [-77.369553, 38.863149],\n          [-77.369282, 38.863562],\n          [-77.369075, 38.863878],\n          [-77.369003, 38.863978],\n          [-77.368943, 38.864053],\n          [-77.368872, 38.864143],\n          [-77.368754, 38.864281],\n          [-77.368648, 38.864383],\n          [-77.368548, 38.86448],\n          [-77.368413, 38.864611],\n          [-77.368244, 38.864751],\n          [-77.368139, 38.86483],\n          [-77.368096, 38.864859],\n          [-77.367962, 38.864949],\n          [-77.367753, 38.865087],\n          [-77.36752, 38.865221],\n          [-77.36716, 38.865425],\n          [-77.366916, 38.865565],\n          [-77.366749, 38.865664],\n          [-77.366693, 38.865696],\n          [-77.366603, 38.865757],\n          [-77.36621, 38.865941],\n          [-77.365964, 38.866096],\n          [-77.365677, 38.866275],\n          [-77.365412, 38.86648],\n          [-77.365205, 38.866666],\n          [-77.365092, 38.866802],\n          [-77.364926, 38.867027],\n          [-77.364819, 38.867215],\n          [-77.364795, 38.867271],\n          [-77.364687, 38.867526],\n          [-77.364631, 38.867731],\n          [-77.364602, 38.867885],\n          [-77.364585, 38.868103],\n          [-77.364599, 38.86833],\n          [-77.364602, 38.868416],\n          [-77.364653, 38.868646],\n          [-77.364749, 38.868903],\n          [-77.364915, 38.869232],\n          [-77.365031, 38.869489],\n          [-77.36519, 38.869811],\n          [-77.365353, 38.870145],\n          [-77.365541, 38.870577],\n          [-77.365608, 38.870714],\n          [-77.36564, 38.87078],\n          [-77.365767, 38.871048],\n          [-77.365858, 38.871232],\n          [-77.365914, 38.871335],\n          [-77.366032, 38.871546],\n          [-77.366196, 38.871805],\n          [-77.366355, 38.872046],\n          [-77.366507, 38.872259],\n          [-77.366678, 38.872501],\n          [-77.366856, 38.872754],\n          [-77.366963, 38.872925],\n          [-77.367022, 38.873039],\n          [-77.367081, 38.873163],\n          [-77.367145, 38.873344],\n          [-77.367182, 38.87346],\n          [-77.367204, 38.873534],\n          [-77.367233, 38.873695],\n          [-77.36726, 38.873889],\n          [-77.367273, 38.874003],\n          [-77.367165, 38.874012],\n          [-77.366994, 38.874012],\n          [-77.366779, 38.873999],\n          [-77.366666, 38.873986],\n          [-77.366501, 38.873968],\n          [-77.366313, 38.873934],\n          [-77.366155, 38.873897],\n          [-77.365932, 38.873832],\n          [-77.36562, 38.873728],\n          [-77.365375, 38.873647],\n          [-77.36552, 38.873752],\n          [-77.365645, 38.873824],\n          [-77.365759, 38.873875]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-78.429232, 38.140783],\n          [-78.348999, 38.108628]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.348999, 38.108628]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"lineStringIndex\": 0,\n        \"segmentIndex\": 3104,\n        \"totalDistance\": 183.46844,\n        \"lineDistance\": 183.46844,\n        \"segmentDistance\": 0.044741,\n        \"pointDistance\": 7.876557,\n        \"dist\": 7.876557,\n        \"multiFeatureIndex\": 0,\n        \"location\": 183.46844,\n        \"index\": 3104,\n        \"marker-color\": \"#F0F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.429232, 38.140783]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test/out/route2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-113.928988, 50.814121],\n          [-113.928993, 50.813067],\n          [-113.928994, 50.811043],\n          [-113.928995, 50.807418],\n          [-113.929029, 50.804989],\n          [-113.951995, 50.804953],\n          [-113.956813, 50.804931],\n          [-113.957629, 50.804917],\n          [-113.958021, 50.804876],\n          [-113.958575, 50.804779],\n          [-113.959011, 50.804687],\n          [-113.959367, 50.804572],\n          [-113.959858, 50.804414],\n          [-113.960433, 50.804102],\n          [-113.960932, 50.803769],\n          [-113.961563, 50.803306],\n          [-113.961754, 50.803166],\n          [-113.962486, 50.802753],\n          [-113.9641, 50.801549],\n          [-113.966048, 50.800154],\n          [-113.967597, 50.799082],\n          [-113.968657, 50.798289],\n          [-113.969382, 50.79779],\n          [-113.969303, 50.797653],\n          [-113.968833, 50.797177],\n          [-113.968399, 50.796832],\n          [-113.96652, 50.796071],\n          [-113.965325, 50.795579],\n          [-113.964608, 50.795229],\n          [-113.963373, 50.794321],\n          [-113.962094, 50.793355],\n          [-113.956995, 50.789049],\n          [-113.951125, 50.784098],\n          [-113.948573, 50.78194],\n          [-113.941011, 50.775626],\n          [-113.933724, 50.769538],\n          [-113.914584, 50.753577],\n          [-113.906521, 50.746803],\n          [-113.896774, 50.738614],\n          [-113.886275, 50.729779],\n          [-113.88594, 50.729474],\n          [-113.885307, 50.728898],\n          [-113.884903, 50.728477],\n          [-113.884523, 50.728028],\n          [-113.884201, 50.727599],\n          [-113.883986, 50.727298],\n          [-113.883696, 50.726863],\n          [-113.883482, 50.72648],\n          [-113.883314, 50.726156],\n          [-113.883153, 50.725767],\n          [-113.883094, 50.725646],\n          [-113.883031, 50.725465],\n          [-113.882906, 50.725155],\n          [-113.882792, 50.724718],\n          [-113.882641, 50.7241],\n          [-113.882584, 50.723735],\n          [-113.88255, 50.723367],\n          [-113.882523, 50.72258],\n          [-113.882495, 50.717709],\n          [-113.882486, 50.713302],\n          [-113.882476, 50.712125],\n          [-113.882468, 50.702531],\n          [-113.882456, 50.699815],\n          [-113.882434, 50.698229],\n          [-113.882445, 50.693791],\n          [-113.882419, 50.692602],\n          [-113.882412, 50.692077],\n          [-113.882405, 50.691705],\n          [-113.882365, 50.691331],\n          [-113.882289, 50.690878],\n          [-113.882163, 50.690282],\n          [-113.882074, 50.689985],\n          [-113.881908, 50.689517],\n          [-113.881705, 50.689095],\n          [-113.881622, 50.688959],\n          [-113.881501, 50.688721],\n          [-113.881281, 50.688347],\n          [-113.88097, 50.687826],\n          [-113.880715, 50.687491],\n          [-113.880385, 50.687085],\n          [-113.878859, 50.685206],\n          [-113.877456, 50.68348],\n          [-113.875929, 50.68157],\n          [-113.873357, 50.67843],\n          [-113.871364, 50.675999],\n          [-113.869142, 50.673289],\n          [-113.868358, 50.672328],\n          [-113.868037, 50.671943],\n          [-113.867467, 50.671232],\n          [-113.866987, 50.670734],\n          [-113.866668, 50.670424],\n          [-113.866296, 50.670141],\n          [-113.865816, 50.669814],\n          [-113.865451, 50.6696],\n          [-113.8651, 50.669419],\n          [-113.864667, 50.669203],\n          [-113.864079, 50.668945],\n          [-113.863436, 50.668716],\n          [-113.862804, 50.66849],\n          [-113.861739, 50.668114],\n          [-113.853421, 50.665144],\n          [-113.842891, 50.661554],\n          [-113.842171, 50.661197],\n          [-113.841049, 50.660571],\n          [-113.840156, 50.659997],\n          [-113.839716, 50.65961],\n          [-113.839157, 50.659132],\n          [-113.838847, 50.658805],\n          [-113.838358, 50.658284],\n          [-113.837938, 50.657723],\n          [-113.837609, 50.657111],\n          [-113.837268, 50.656259],\n          [-113.83703, 50.655665],\n          [-113.836937, 50.654919],\n          [-113.836909, 50.654144],\n          [-113.836859, 50.650724],\n          [-113.836826, 50.647581],\n          [-113.836828, 50.646677],\n          [-113.836945, 50.631237],\n          [-113.836945, 50.630338],\n          [-113.83681, 50.620833],\n          [-113.836809, 50.615002],\n          [-113.836748, 50.614363],\n          [-113.836695, 50.613902],\n          [-113.836544, 50.613327],\n          [-113.836395, 50.612865],\n          [-113.836165, 50.612347],\n          [-113.835974, 50.611908],\n          [-113.835688, 50.611368],\n          [-113.834199, 50.609116],\n          [-113.831975, 50.605815],\n          [-113.830597, 50.603738],\n          [-113.830194, 50.603006],\n          [-113.829862, 50.60236],\n          [-113.829623, 50.601865],\n          [-113.829361, 50.601178],\n          [-113.829199, 50.600699],\n          [-113.829001, 50.600003],\n          [-113.828688, 50.598264],\n          [-113.828653, 50.597525],\n          [-113.828653, 50.596741],\n          [-113.828659, 50.589493],\n          [-113.828615, 50.584393],\n          [-113.82855, 50.57625],\n          [-113.82857, 50.572186],\n          [-113.82858, 50.57189],\n          [-113.828436, 50.567929],\n          [-113.828262, 50.565198],\n          [-113.82828, 50.550181],\n          [-113.82829, 50.541809],\n          [-113.828291, 50.541417],\n          [-113.828359, 50.484565],\n          [-113.828388, 50.473188],\n          [-113.82839, 50.426319],\n          [-113.828391, 50.410937],\n          [-113.828495, 50.409031],\n          [-113.828495, 50.408255],\n          [-113.828326, 50.404708],\n          [-113.827868, 50.402523],\n          [-113.827189, 50.400367],\n          [-113.82573, 50.397464],\n          [-113.824909, 50.396393],\n          [-113.823811, 50.394869],\n          [-113.82128, 50.391895],\n          [-113.801481, 50.376398],\n          [-113.797907, 50.371872],\n          [-113.796297, 50.369858],\n          [-113.795351, 50.368139],\n          [-113.790726, 50.359724],\n          [-113.789384, 50.358382],\n          [-113.78784, 50.357509],\n          [-113.782077, 50.355219],\n          [-113.781868, 50.355163],\n          [-113.780696, 50.354643],\n          [-113.779832, 50.354058],\n          [-113.779376, 50.353709],\n          [-113.779034, 50.353447],\n          [-113.777779, 50.352208],\n          [-113.776476, 50.350971],\n          [-113.775669, 50.350156],\n          [-113.774903, 50.349363],\n          [-113.774528, 50.349008],\n          [-113.774139, 50.348641],\n          [-113.773752, 50.348267],\n          [-113.773367, 50.347894],\n          [-113.772991, 50.347521],\n          [-113.77261, 50.347144],\n          [-113.77224, 50.346771],\n          [-113.771866, 50.346393],\n          [-113.771491, 50.346021],\n          [-113.771101, 50.345634],\n          [-113.770724, 50.345257],\n          [-113.770334, 50.344868],\n          [-113.769256, 50.343852],\n          [-113.767134, 50.341669],\n          [-113.764647, 50.339182],\n          [-113.764438, 50.338973],\n          [-113.761597, 50.336333],\n          [-113.758593, 50.33458],\n          [-113.755546, 50.333429],\n          [-113.751856, 50.33269],\n          [-113.745118, 50.331594],\n          [-113.742286, 50.330717],\n          [-113.739453, 50.329347],\n          [-113.731213, 50.32247],\n          [-113.723532, 50.315976],\n          [-113.722158, 50.313619],\n          [-113.718768, 50.300682],\n          [-113.714948, 50.295611],\n          [-113.70452, 50.282916],\n          [-113.688985, 50.273536],\n          [-113.671647, 50.26314],\n          [-113.665976, 50.259608],\n          [-113.661862, 50.256884],\n          [-113.66006, 50.254964],\n          [-113.659379, 50.253877],\n          [-113.658858, 50.252741],\n          [-113.658676, 50.251733],\n          [-113.656669, 50.241627],\n          [-113.656154, 50.237592],\n          [-113.655983, 50.234435],\n          [-113.656026, 50.226446],\n          [-113.656001, 50.222848],\n          [-113.655983, 50.212634],\n          [-113.655983, 50.198956],\n          [-113.656026, 50.187774],\n          [-113.655725, 50.180189],\n          [-113.654781, 50.177056],\n          [-113.650834, 50.16488],\n          [-113.648988, 50.159931],\n          [-113.648171, 50.158673],\n          [-113.647041, 50.157055],\n          [-113.642675, 50.151639],\n          [-113.639814, 50.147556],\n          [-113.634175, 50.135735],\n          [-113.632251, 50.131741],\n          [-113.620363, 50.106626],\n          [-113.619376, 50.104527],\n          [-113.61384, 50.092744],\n          [-113.608561, 50.081675],\n          [-113.606581, 50.077494],\n          [-113.603669, 50.071347],\n          [-113.596202, 50.055589],\n          [-113.589593, 50.041645],\n          [-113.585973, 50.034075],\n          [-113.583284, 50.028469],\n          [-113.578879, 50.019214],\n          [-113.577072, 50.015416],\n          [-113.576933, 50.015123],\n          [-113.575461, 50.01195],\n          [-113.56968, 49.999485],\n          [-113.565276, 49.990109],\n          [-113.562856, 49.984972],\n          [-113.558388, 49.975529],\n          [-113.556763, 49.972084],\n          [-113.551497, 49.960982],\n          [-113.550282, 49.958226],\n          [-113.543115, 49.943177],\n          [-113.537579, 49.93141],\n          [-113.531657, 49.91895],\n          [-113.528868, 49.913112],\n          [-113.52852, 49.912237],\n          [-113.528209, 49.911247],\n          [-113.528013, 49.910313],\n          [-113.527878, 49.909552],\n          [-113.527877, 49.908805],\n          [-113.528009, 49.904496],\n          [-113.527999, 49.902765],\n          [-113.527923, 49.890232],\n          [-113.527923, 49.878148],\n          [-113.527237, 49.875493],\n          [-113.526537, 49.873052],\n          [-113.52449, 49.865701],\n          [-113.524447, 49.856267],\n          [-113.52449, 49.841269],\n          [-113.524447, 49.826764],\n          [-113.52437, 49.815239],\n          [-113.524361, 49.813862],\n          [-113.524357, 49.801088],\n          [-113.524347, 49.798401],\n          [-113.524359, 49.795748],\n          [-113.524362, 49.795059],\n          [-113.524404, 49.785441],\n          [-113.524345, 49.778892],\n          [-113.524361, 49.771945],\n          [-113.523632, 49.77031],\n          [-113.522087, 49.769007],\n          [-113.520199, 49.768287],\n          [-113.514319, 49.76643],\n          [-113.510629, 49.764933],\n          [-113.50771, 49.763048],\n          [-113.494964, 49.752901],\n          [-113.479476, 49.742059],\n          [-113.460012, 49.728293],\n          [-113.455597, 49.725235],\n          [-113.454572, 49.72442],\n          [-113.45366, 49.723598],\n          [-113.452976, 49.722915],\n          [-113.45129, 49.720944],\n          [-113.450256, 49.719782],\n          [-113.447746, 49.716986],\n          [-113.447289, 49.716417],\n          [-113.443365, 49.71203],\n          [-113.443141, 49.711789],\n          [-113.442819, 49.711601],\n          [-113.442606, 49.711479],\n          [-113.44236, 49.711374],\n          [-113.442103, 49.711279],\n          [-113.441837, 49.711197],\n          [-113.441458, 49.711124],\n          [-113.441117, 49.711086],\n          [-113.440779, 49.711071],\n          [-113.440369, 49.71109],\n          [-113.439978, 49.71114],\n          [-113.439697, 49.711196],\n          [-113.439397, 49.711273],\n          [-113.439102, 49.71139],\n          [-113.438862, 49.711498],\n          [-113.438591, 49.711635],\n          [-113.438391, 49.711766],\n          [-113.438075, 49.712061],\n          [-113.437745, 49.712489],\n          [-113.43745, 49.712915],\n          [-113.43721, 49.713212],\n          [-113.436932, 49.713495],\n          [-113.436629, 49.713751],\n          [-113.436287, 49.713988],\n          [-113.435908, 49.714204],\n          [-113.435538, 49.714393],\n          [-113.431814, 49.715951],\n          [-113.423934, 49.718913],\n          [-113.423148, 49.719208],\n          [-113.419515, 49.720574],\n          [-113.418553, 49.720884],\n          [-113.417353, 49.721191],\n          [-113.416622, 49.721378],\n          [-113.415189, 49.721933],\n          [-113.414887, 49.722092],\n          [-113.414553, 49.722328],\n          [-113.414204, 49.722586],\n          [-113.413109, 49.723458],\n          [-113.412313, 49.724209],\n          [-113.412068, 49.724385],\n          [-113.411871, 49.724508],\n          [-113.41169, 49.724585],\n          [-113.411456, 49.724665],\n          [-113.411213, 49.724721],\n          [-113.410939, 49.724758],\n          [-113.410649, 49.724769],\n          [-113.408706, 49.724761],\n          [-113.405913, 49.724764],\n          [-113.403119, 49.724754],\n          [-113.400316, 49.724758],\n          [-113.397541, 49.724759],\n          [-113.396042, 49.724769],\n          [-113.395455, 49.724758],\n          [-113.395172, 49.724734],\n          [-113.394938, 49.724709],\n          [-113.394729, 49.724678],\n          [-113.394467, 49.724619],\n          [-113.394209, 49.724544],\n          [-113.393974, 49.724469],\n          [-113.393696, 49.724366],\n          [-113.393468, 49.724249],\n          [-113.393241, 49.72412],\n          [-113.393012, 49.723965],\n          [-113.39289, 49.723864],\n          [-113.391771, 49.722807],\n          [-113.391196, 49.722209],\n          [-113.390266, 49.721242],\n          [-113.389586, 49.720567],\n          [-113.388246, 49.71917],\n          [-113.387068, 49.717968],\n          [-113.386688, 49.717602],\n          [-113.386617, 49.717518],\n          [-113.386398, 49.717254],\n          [-113.386209, 49.717057],\n          [-113.385914, 49.716751],\n          [-113.385697, 49.71658],\n          [-113.385459, 49.716404],\n          [-113.385223, 49.716267],\n          [-113.384941, 49.716121],\n          [-113.384654, 49.716013],\n          [-113.384337, 49.715925],\n          [-113.383953, 49.715848],\n          [-113.383617, 49.715803],\n          [-113.383303, 49.715777],\n          [-113.382948, 49.715769],\n          [-113.382593, 49.71579],\n          [-113.382269, 49.715822],\n          [-113.381923, 49.715886],\n          [-113.381566, 49.715981],\n          [-113.381244, 49.716092],\n          [-113.380957, 49.716219],\n          [-113.380551, 49.716436],\n          [-113.380035, 49.71673],\n          [-113.379484, 49.717081],\n          [-113.378419, 49.71777],\n          [-113.377851, 49.718172],\n          [-113.376955, 49.718849],\n          [-113.376472, 49.719244],\n          [-113.375953, 49.719695],\n          [-113.375418, 49.720164],\n          [-113.374752, 49.720812],\n          [-113.373389, 49.722261],\n          [-113.372553, 49.723172],\n          [-113.371753, 49.724069],\n          [-113.371091, 49.724816],\n          [-113.370703, 49.725251],\n          [-113.370292, 49.725659],\n          [-113.36989, 49.726068],\n          [-113.369354, 49.726543],\n          [-113.368728, 49.727064],\n          [-113.368135, 49.727526],\n          [-113.367567, 49.727939],\n          [-113.366419, 49.728699],\n          [-113.366091, 49.728877],\n          [-113.365827, 49.729022],\n          [-113.365501, 49.729201],\n          [-113.362951, 49.730439],\n          [-113.358468, 49.732139],\n          [-113.3397, 49.739588],\n          [-113.335475, 49.741364],\n          [-113.327488, 49.744425],\n          [-113.318052, 49.748192],\n          [-113.313869, 49.749882],\n          [-113.31224, 49.750619],\n          [-113.310651, 49.75165],\n          [-113.307682, 49.753879],\n          [-113.302921, 49.757409],\n          [-113.297078, 49.761832],\n          [-113.293465, 49.764507],\n          [-113.274088, 49.778989],\n          [-113.273227, 49.779697],\n          [-113.272213, 49.780484],\n          [-113.270309, 49.781807],\n          [-113.269287, 49.782542],\n          [-113.268506, 49.783052],\n          [-113.267549, 49.783577],\n          [-113.266355, 49.784155],\n          [-113.264867, 49.784696],\n          [-113.26421, 49.78488],\n          [-113.263279, 49.785126],\n          [-113.262406, 49.785321],\n          [-113.261535, 49.785468],\n          [-113.260247, 49.785632],\n          [-113.2584, 49.785752],\n          [-113.253189, 49.785761],\n          [-113.2503, 49.785759],\n          [-113.246741, 49.785753],\n          [-113.243803, 49.785748],\n          [-113.24168, 49.785746],\n          [-113.239441, 49.785743],\n          [-113.235416, 49.785738],\n          [-113.232546, 49.785734],\n          [-113.230542, 49.78573],\n          [-113.207916, 49.785665],\n          [-113.188962, 49.785585],\n          [-113.187421, 49.785394],\n          [-113.185955, 49.785084],\n          [-113.182069, 49.784248],\n          [-113.178433, 49.783545],\n          [-113.175537, 49.783555],\n          [-113.172403, 49.784002],\n          [-113.169876, 49.784514],\n          [-113.165425, 49.785057],\n          [-113.162661, 49.785308],\n          [-113.158491, 49.785468],\n          [-113.154009, 49.785249],\n          [-113.150706, 49.7849],\n          [-113.138727, 49.78387],\n          [-113.137918, 49.7838],\n          [-113.132484, 49.783537],\n          [-113.127139, 49.783666],\n          [-113.121522, 49.784134],\n          [-113.116401, 49.784873],\n          [-113.108878, 49.786479],\n          [-113.10643, 49.787036],\n          [-113.100519, 49.78837],\n          [-113.099817, 49.78851],\n          [-113.099069, 49.788664],\n          [-113.098414, 49.788796],\n          [-113.097678, 49.788933],\n          [-113.096947, 49.789058],\n          [-113.096124, 49.78919],\n          [-113.095087, 49.789365],\n          [-113.093946, 49.789519],\n          [-113.092851, 49.789655],\n          [-113.091995, 49.789773],\n          [-113.091108, 49.78988],\n          [-113.090105, 49.789981],\n          [-113.089148, 49.790064],\n          [-113.088464, 49.790125],\n          [-113.087728, 49.790181],\n          [-113.08695, 49.790229],\n          [-113.08621, 49.790281],\n          [-113.085391, 49.790327],\n          [-113.084622, 49.790364],\n          [-113.083774, 49.790396],\n          [-113.082731, 49.790426],\n          [-113.081849, 49.790441],\n          [-113.080915, 49.790449],\n          [-113.080041, 49.790455],\n          [-113.079132, 49.790458],\n          [-113.078156, 49.790437],\n          [-113.077306, 49.790416],\n          [-113.076308, 49.790386],\n          [-113.075035, 49.79033],\n          [-113.073984, 49.790268],\n          [-113.073014, 49.790204],\n          [-113.072411, 49.790162],\n          [-113.071942, 49.790123],\n          [-113.069874, 49.789921],\n          [-113.06869, 49.789793],\n          [-113.067583, 49.789667],\n          [-113.066892, 49.789578],\n          [-113.066126, 49.789472],\n          [-113.064972, 49.789301],\n          [-113.04876, 49.786854],\n          [-113.048, 49.78674],\n          [-113.047462, 49.78667],\n          [-113.046933, 49.786601],\n          [-113.046365, 49.786543],\n          [-113.041994, 49.786136],\n          [-113.038418, 49.786047],\n          [-113.028911, 49.786062],\n          [-113.013026, 49.786042],\n          [-113.003977, 49.786038],\n          [-113.002681, 49.785962],\n          [-113.001644, 49.785864],\n          [-113.00048, 49.785713],\n          [-112.999756, 49.785611],\n          [-112.9987, 49.785408],\n          [-112.997454, 49.785132],\n          [-112.995534, 49.784581],\n          [-112.99125, 49.783007],\n          [-112.98295, 49.779625],\n          [-112.980557, 49.778522],\n          [-112.979018, 49.777554],\n          [-112.976341, 49.775651],\n          [-112.973797, 49.773044],\n          [-112.965769, 49.764644],\n          [-112.960895, 49.75933],\n          [-112.960092, 49.758465],\n          [-112.959726, 49.75808],\n          [-112.959447, 49.757828],\n          [-112.959069, 49.757507],\n          [-112.958709, 49.757166],\n          [-112.958281, 49.756793],\n          [-112.95762, 49.756294],\n          [-112.956931, 49.755799],\n          [-112.956159, 49.755282],\n          [-112.955682, 49.754998],\n          [-112.955151, 49.754703],\n          [-112.952858, 49.753509],\n          [-112.949354, 49.752075],\n          [-112.94544, 49.749962],\n          [-112.938188, 49.743931],\n          [-112.931304, 49.738228],\n          [-112.926731, 49.73422],\n          [-112.925384, 49.732989],\n          [-112.924479, 49.731925],\n          [-112.923468, 49.730575],\n          [-112.922298, 49.729055],\n          [-112.921036, 49.7277],\n          [-112.918917, 49.725859],\n          [-112.918155, 49.725203],\n          [-112.916619, 49.723846],\n          [-112.915487, 49.723018],\n          [-112.915163, 49.72283],\n          [-112.914796, 49.722631],\n          [-112.914432, 49.722464],\n          [-112.914031, 49.722286],\n          [-112.913669, 49.722145],\n          [-112.913246, 49.722004],\n          [-112.912907, 49.721891],\n          [-112.912605, 49.721797],\n          [-112.912248, 49.721697],\n          [-112.911203, 49.721427],\n          [-112.910101, 49.721135],\n          [-112.906937, 49.720299],\n          [-112.903215, 49.719342],\n          [-112.900165, 49.718558],\n          [-112.897476, 49.717852],\n          [-112.895936, 49.717459],\n          [-112.895282, 49.717281],\n          [-112.894243, 49.71701],\n          [-112.893141, 49.716728],\n          [-112.892426, 49.716529],\n          [-112.89165, 49.716338],\n          [-112.891198, 49.71622],\n          [-112.890633, 49.716083],\n          [-112.889897, 49.715934],\n          [-112.889174, 49.715796],\n          [-112.888532, 49.715689],\n          [-112.887541, 49.715558],\n          [-112.88613, 49.71536],\n          [-112.885501, 49.715271],\n          [-112.884833, 49.715175],\n          [-112.884308, 49.715088],\n          [-112.883816, 49.71495],\n          [-112.883277, 49.714832],\n          [-112.882696, 49.714691],\n          [-112.88207, 49.714542],\n          [-112.881531, 49.714385],\n          [-112.881025, 49.714222],\n          [-112.880522, 49.714039],\n          [-112.879986, 49.713834],\n          [-112.879529, 49.71365],\n          [-112.87903, 49.713431],\n          [-112.878502, 49.713173],\n          [-112.877609, 49.712649],\n          [-112.875259, 49.711284],\n          [-112.873228, 49.710141],\n          [-112.872763, 49.709872],\n          [-112.87224, 49.709593],\n          [-112.871848, 49.709384],\n          [-112.871432, 49.709188],\n          [-112.871061, 49.709022],\n          [-112.870716, 49.708873],\n          [-112.870311, 49.708723],\n          [-112.869954, 49.708592],\n          [-112.869443, 49.708436],\n          [-112.868983, 49.708311],\n          [-112.868462, 49.708183],\n          [-112.86782, 49.708055],\n          [-112.867368, 49.707982],\n          [-112.866939, 49.707916],\n          [-112.86545, 49.707716],\n          [-112.861762, 49.707191],\n          [-112.86017, 49.706981],\n          [-112.85809, 49.706677],\n          [-112.85777, 49.706622],\n          [-112.857467, 49.706553],\n          [-112.857076, 49.706452],\n          [-112.856698, 49.706338],\n          [-112.854212, 49.705528],\n          [-112.85381, 49.705386],\n          [-112.853466, 49.70523],\n          [-112.853137, 49.705049],\n          [-112.852839, 49.704853],\n          [-112.851852, 49.704221],\n          [-112.851516, 49.704031],\n          [-112.851207, 49.703872],\n          [-112.850867, 49.70373],\n          [-112.850433, 49.703565],\n          [-112.84992, 49.703388],\n          [-112.847903, 49.702792],\n          [-112.845724, 49.702167],\n          [-112.844077, 49.701628],\n          [-112.8432, 49.701369],\n          [-112.842649, 49.701218],\n          [-112.842201, 49.701114],\n          [-112.841728, 49.701025],\n          [-112.840794, 49.700856],\n          [-112.838125, 49.700426],\n          [-112.834609, 49.699873],\n          [-112.832064, 49.699465],\n          [-112.828981, 49.698964],\n          [-112.828552, 49.698904],\n          [-112.827826, 49.698813],\n          [-112.827096, 49.698728],\n          [-112.826436, 49.698665],\n          [-112.825387, 49.6986],\n          [-112.824515, 49.698555],\n          [-112.823879, 49.698527],\n          [-112.822719, 49.698465],\n          [-112.820041, 49.698338],\n          [-112.818601, 49.69826],\n          [-112.817659, 49.698214],\n          [-112.817451, 49.698208],\n          [-112.816791, 49.698174],\n          [-112.81589, 49.698112],\n          [-112.814861, 49.698029],\n          [-112.814224, 49.697963],\n          [-112.813253, 49.697849],\n          [-112.813147, 49.697836],\n          [-112.811952, 49.697672],\n          [-112.811842, 49.697656],\n          [-112.811502, 49.697615],\n          [-112.811227, 49.697581],\n          [-112.810773, 49.697561],\n          [-112.810352, 49.69755],\n          [-112.810002, 49.697537],\n          [-112.809403, 49.697532],\n          [-112.806575, 49.697613],\n          [-112.805437, 49.69765],\n          [-112.804522, 49.697685],\n          [-112.80393, 49.697707],\n          [-112.80238, 49.69777],\n          [-112.802025, 49.697788],\n          [-112.801625, 49.697812],\n          [-112.800653, 49.697888],\n          [-112.799723, 49.697967],\n          [-112.79867, 49.698052],\n          [-112.798046, 49.698084],\n          [-112.797631, 49.698102],\n          [-112.797077, 49.698117],\n          [-112.796376, 49.698135],\n          [-112.79554, 49.698135],\n          [-112.794414, 49.698135],\n          [-112.793544, 49.698131],\n          [-112.788404, 49.698111],\n          [-112.787759, 49.698108],\n          [-112.787623, 49.698109],\n          [-112.786794, 49.698114],\n          [-112.785574, 49.698121],\n          [-112.784545, 49.69817],\n          [-112.784282, 49.698206],\n          [-112.783264, 49.698348],\n          [-112.782977, 49.69837],\n          [-112.782674, 49.69837],\n          [-112.782377, 49.69836],\n          [-112.781976, 49.698324],\n          [-112.781573, 49.698283],\n          [-112.780374, 49.698174],\n          [-112.779856, 49.698084],\n          [-112.77969, 49.698039],\n          [-112.779534, 49.697963],\n          [-112.779416, 49.697879],\n          [-112.779336, 49.697779],\n          [-112.779293, 49.697678],\n          [-112.779266, 49.697588],\n          [-112.779277, 49.697432],\n          [-112.779309, 49.697054],\n          [-112.779557, 49.695985],\n          [-112.779657, 49.695544],\n          [-112.779736, 49.695225],\n          [-112.779761, 49.695101],\n          [-112.779809, 49.694922],\n          [-112.779952, 49.69441],\n          [-112.780019, 49.694125],\n          [-112.780058, 49.69387],\n          [-112.780085, 49.693604],\n          [-112.78011, 49.693292],\n          [-112.780165, 49.692652],\n          [-112.780169, 49.692372],\n          [-112.780165, 49.692154],\n          [-112.780164, 49.692098],\n          [-112.780144, 49.691862],\n          [-112.780143, 49.691843],\n          [-112.780133, 49.69176],\n          [-112.780037, 49.691006],\n          [-112.779822, 49.689657],\n          [-112.77979, 49.689308],\n          [-112.779748, 49.688889],\n          [-112.779749, 49.688478],\n          [-112.779739, 49.688031],\n          [-112.779748, 49.687622],\n          [-112.779769, 49.687159],\n          [-112.779816, 49.686494],\n          [-112.779896, 49.685531],\n          [-112.779868, 49.68512],\n          [-112.779875, 49.684881],\n          [-112.779863, 49.684535],\n          [-112.77986, 49.684358],\n          [-112.779847, 49.684121],\n          [-112.779816, 49.683702],\n          [-112.779801, 49.683613],\n          [-112.779746, 49.683344],\n          [-112.779688, 49.682957],\n          [-112.779596, 49.68252],\n          [-112.779542, 49.68228],\n          [-112.7794, 49.681732],\n          [-112.779248, 49.681225],\n          [-112.779016, 49.680478],\n          [-112.778857, 49.679737],\n          [-112.778724, 49.678803],\n          [-112.778685, 49.678481],\n          [-112.77867, 49.678161],\n          [-112.778679, 49.677477],\n          [-112.778716, 49.676815],\n          [-112.77879, 49.676373],\n          [-112.778793, 49.676281],\n          [-112.778809, 49.67613],\n          [-112.778826, 49.675962],\n          [-112.779009, 49.67502],\n          [-112.779283, 49.674077],\n          [-112.779324, 49.67372],\n          [-112.779398, 49.673084],\n          [-112.779441, 49.672708],\n          [-112.779445, 49.672624],\n          [-112.779457, 49.6724],\n          [-112.779474, 49.670433],\n          [-112.779525, 49.669583],\n          [-112.779531, 49.668796],\n          [-112.779522, 49.66867],\n          [-112.779234, 49.66867],\n          [-112.778749, 49.66867],\n          [-112.773523, 49.668658],\n          [-112.769369, 49.668649],\n          [-112.763756, 49.668637],\n          [-112.7565, 49.668622],\n          [-112.75294, 49.668604],\n          [-112.752507, 49.668609],\n          [-112.751647, 49.668588],\n          [-112.750485, 49.668477],\n          [-112.748828, 49.668137],\n          [-112.747424, 49.667643],\n          [-112.746405, 49.667117],\n          [-112.745658, 49.666544],\n          [-112.743059, 49.663524],\n          [-112.742076, 49.662492],\n          [-112.741004, 49.661674],\n          [-112.73773, 49.659519],\n          [-112.735465, 49.657989],\n          [-112.733655, 49.656859],\n          [-112.718533, 49.646941],\n          [-112.708401, 49.640314],\n          [-112.699223, 49.634317],\n          [-112.697367, 49.633097],\n          [-112.696977, 49.632838],\n          [-112.688059, 49.626979],\n          [-112.68302, 49.623675],\n          [-112.676625, 49.619483],\n          [-112.667074, 49.613228],\n          [-112.658988, 49.607908],\n          [-112.655248, 49.605484],\n          [-112.650972, 49.603234],\n          [-112.646487, 49.600778],\n          [-112.644902, 49.599632],\n          [-112.643248, 49.598383],\n          [-112.641103, 49.596798],\n          [-112.639355, 49.595616],\n          [-112.637, 49.594133],\n          [-112.627891, 49.588425],\n          [-112.602707, 49.572537],\n          [-112.600552, 49.571077],\n          [-112.598617, 49.5692],\n          [-112.59449, 49.564228],\n          [-112.593913, 49.5636],\n          [-112.593075, 49.562994],\n          [-112.592311, 49.562392],\n          [-112.591327, 49.561818],\n          [-112.589132, 49.56091],\n          [-112.585717, 49.559813],\n          [-112.580643, 49.558189],\n          [-112.579135, 49.557557],\n          [-112.577853, 49.55687],\n          [-112.576584, 49.555934],\n          [-112.573576, 49.55323],\n          [-112.570447, 49.550424],\n          [-112.569232, 49.549564],\n          [-112.567477, 49.548436],\n          [-112.556735, 49.541871],\n          [-112.550446, 49.538028],\n          [-112.546175, 49.535345],\n          [-112.543195, 49.53355],\n          [-112.541943, 49.532867],\n          [-112.522018, 49.522571],\n          [-112.51966, 49.521328],\n          [-112.515058, 49.518953],\n          [-112.512595, 49.517628],\n          [-112.51096, 49.516524],\n          [-112.50948, 49.515214],\n          [-112.508358, 49.513958],\n          [-112.507396, 49.512646],\n          [-112.504667, 49.506398],\n          [-112.503772, 49.504449],\n          [-112.502829, 49.502755],\n          [-112.502134, 49.501789],\n          [-112.500323, 49.499793],\n          [-112.498242, 49.497945],\n          [-112.491937, 49.492826],\n          [-112.472122, 49.477074],\n          [-112.46972, 49.475443],\n          [-112.458697, 49.468584],\n          [-112.452076, 49.464789],\n          [-112.441426, 49.458313],\n          [-112.440081, 49.457555],\n          [-112.439154, 49.45711],\n          [-112.437692, 49.456507],\n          [-112.428185, 49.452715],\n          [-112.42567, 49.451509],\n          [-112.421872, 49.448943],\n          [-112.416852, 49.445256],\n          [-112.415374, 49.444112],\n          [-112.413757, 49.443067],\n          [-112.41199, 49.442277],\n          [-112.408866, 49.441094],\n          [-112.403355, 49.439005],\n          [-112.400426, 49.437907],\n          [-112.395624, 49.436024],\n          [-112.393366, 49.43506],\n          [-112.391141, 49.43401],\n          [-112.389667, 49.433278],\n          [-112.387242, 49.431857],\n          [-112.380495, 49.427283],\n          [-112.377371, 49.425166],\n          [-112.370769, 49.420228],\n          [-112.369213, 49.419103],\n          [-112.368029, 49.418322],\n          [-112.366868, 49.417688],\n          [-112.365853, 49.417109],\n          [-112.364196, 49.416279],\n          [-112.358645, 49.413606],\n          [-112.345069, 49.40697],\n          [-112.313601, 49.391666],\n          [-112.293379, 49.381796],\n          [-112.280866, 49.375648],\n          [-112.275641, 49.37312],\n          [-112.27415, 49.372357],\n          [-112.272971, 49.371647],\n          [-112.272087, 49.371077],\n          [-112.271197, 49.370405],\n          [-112.270258, 49.369532],\n          [-112.269242, 49.36847],\n          [-112.263635, 49.361606],\n          [-112.261762, 49.359287],\n          [-112.252776, 49.348158],\n          [-112.236226, 49.327356],\n          [-112.231602, 49.321856],\n          [-112.231504, 49.32174],\n          [-112.22954, 49.319363],\n          [-112.227247, 49.316403],\n          [-112.224225, 49.312727],\n          [-112.22224, 49.310555],\n          [-112.216986, 49.304836],\n          [-112.215307, 49.3031],\n          [-112.213887, 49.301877],\n          [-112.213028, 49.301145],\n          [-112.204369, 49.294474],\n          [-112.201434, 49.291851],\n          [-112.200807, 49.291228],\n          [-112.200423, 49.290767],\n          [-112.200161, 49.290419],\n          [-112.199859, 49.289985],\n          [-112.199566, 49.2895],\n          [-112.199306, 49.289012],\n          [-112.199053, 49.288493],\n          [-112.198839, 49.287999],\n          [-112.198721, 49.287648],\n          [-112.198561, 49.28716],\n          [-112.198436, 49.286692],\n          [-112.198364, 49.286224],\n          [-112.198303, 49.285775],\n          [-112.198271, 49.285347],\n          [-112.198256, 49.282987],\n          [-112.198269, 49.279832],\n          [-112.197949, 49.277457],\n          [-112.196565, 49.273803],\n          [-112.189342, 49.264663],\n          [-112.187679, 49.262625],\n          [-112.187029, 49.261975],\n          [-112.185766, 49.260758],\n          [-112.185003, 49.259994],\n          [-112.184046, 49.259256],\n          [-112.182999, 49.258515],\n          [-112.181937, 49.257797],\n          [-112.180185, 49.2566],\n          [-112.179314, 49.25606],\n          [-112.178353, 49.255415],\n          [-112.177525, 49.254853],\n          [-112.176769, 49.254313],\n          [-112.176125, 49.253788],\n          [-112.174746, 49.252496],\n          [-112.173897, 49.251682],\n          [-112.173107, 49.250905],\n          [-112.153316, 49.231556],\n          [-112.145266, 49.223554],\n          [-112.137196, 49.215571],\n          [-112.13617, 49.214714],\n          [-112.134956, 49.213742],\n          [-112.134168, 49.213187],\n          [-112.132859, 49.212334],\n          [-112.13166, 49.211607],\n          [-112.12957, 49.210494],\n          [-112.126976, 49.209298],\n          [-112.123065, 49.207555],\n          [-112.121541, 49.206848],\n          [-112.120052, 49.206151],\n          [-112.118948, 49.205619],\n          [-112.117869, 49.205062],\n          [-112.11706, 49.204623],\n          [-112.115236, 49.203546],\n          [-112.112919, 49.201989],\n          [-112.111625, 49.201012],\n          [-112.109029, 49.198836],\n          [-112.106118, 49.195686],\n          [-112.105716, 49.195156],\n          [-112.10511, 49.194341],\n          [-112.102212, 49.189769],\n          [-112.099016, 49.184803],\n          [-112.097293, 49.182034],\n          [-112.09607, 49.179971],\n          [-112.093881, 49.176527],\n          [-112.093098, 49.175222],\n          [-112.092754, 49.174577],\n          [-112.092518, 49.174107],\n          [-112.092368, 49.173658],\n          [-112.092271, 49.173279],\n          [-112.092175, 49.172816],\n          [-112.092083, 49.172436],\n          [-112.092105, 49.171924],\n          [-112.092116, 49.171461],\n          [-112.092153, 49.170923],\n          [-112.092303, 49.169933],\n          [-112.092797, 49.166924],\n          [-112.093183, 49.164483],\n          [-112.093425, 49.163015],\n          [-112.094079, 49.159023],\n          [-112.094508, 49.156383],\n          [-112.094555, 49.155953],\n          [-112.094556, 49.155221],\n          [-112.094514, 49.154793],\n          [-112.094503, 49.154492],\n          [-112.094385, 49.153874],\n          [-112.094213, 49.153187],\n          [-112.094063, 49.152773],\n          [-112.093902, 49.152351],\n          [-112.093602, 49.151853],\n          [-112.093237, 49.151257],\n          [-112.092797, 49.15078],\n          [-112.092443, 49.150366],\n          [-112.09211, 49.150043],\n          [-112.09144, 49.149473],\n          [-112.090329, 49.148576],\n          [-112.087872, 49.146674],\n          [-112.085019, 49.144442],\n          [-112.08445, 49.144014],\n          [-112.083795, 49.143488],\n          [-112.083195, 49.142934],\n          [-112.082218, 49.142021],\n          [-112.081255, 49.140863],\n          [-112.080652, 49.140161],\n          [-112.079815, 49.139052],\n          [-112.079375, 49.138315],\n          [-112.078935, 49.137592],\n          [-112.078367, 49.136469],\n          [-112.077562, 49.134475],\n          [-112.07679, 49.132524],\n          [-112.076328, 49.131429],\n          [-112.07591, 49.130565],\n          [-112.075325, 49.129377],\n          [-112.074891, 49.128684],\n          [-112.074472, 49.128059],\n          [-112.073582, 49.12674],\n          [-112.072631, 49.125499],\n          [-112.071973, 49.124711],\n          [-112.071054, 49.123645],\n          [-112.069784, 49.122387],\n          [-112.068512, 49.121237],\n          [-112.066629, 49.119662],\n          [-112.062677, 49.116351],\n          [-112.055397, 49.110231],\n          [-112.054528, 49.109557],\n          [-112.053423, 49.108763],\n          [-112.052461, 49.108147],\n          [-112.045612, 49.103924],\n          [-112.04278, 49.102161],\n          [-112.042125, 49.101683],\n          [-112.041514, 49.101163],\n          [-112.040923, 49.100503],\n          [-112.040258, 49.099716],\n          [-112.039046, 49.09777],\n          [-112.036761, 49.094883],\n          [-112.034383, 49.091688],\n          [-112.032973, 49.089733],\n          [-112.032072, 49.088525],\n          [-112.031257, 49.087397],\n          [-112.027952, 49.082826],\n          [-112.025918, 49.080115],\n          [-112.023929, 49.077471],\n          [-112.021412, 49.07398],\n          [-112.01924, 49.070443],\n          [-112.016505, 49.066092],\n          [-112.014616, 49.062914],\n          [-112.010898, 49.056849],\n          [-112.010336, 49.056053],\n          [-112.009981, 49.05549],\n          [-112.009595, 49.055054],\n          [-112.008383, 49.053913],\n          [-112.004081, 49.049886],\n          [-112.003484, 49.049323],\n          [-112.002241, 49.048061],\n          [-112.000186, 49.046131],\n          [-111.998352, 49.044419],\n          [-111.997649, 49.043715],\n          [-111.997014, 49.042914],\n          [-111.996531, 49.042236],\n          [-111.996215, 49.041782],\n          [-111.995927, 49.041307],\n          [-111.995594, 49.040698],\n          [-111.995321, 49.040118],\n          [-111.994693, 49.038673],\n          [-111.994001, 49.037108],\n          [-111.992996, 49.034801],\n          [-111.992369, 49.033409],\n          [-111.99149, 49.031403],\n          [-111.99082, 49.029866],\n          [-111.990004, 49.02802],\n          [-111.98936, 49.026568],\n          [-111.988769, 49.025185],\n          [-111.988218, 49.023936],\n          [-111.987589, 49.022536],\n          [-111.987371, 49.021885],\n          [-111.987235, 49.021333],\n          [-111.987097, 49.020858],\n          [-111.986995, 49.020386],\n          [-111.98692, 49.019658],\n          [-111.986872, 49.018979],\n          [-111.986866, 49.017199],\n          [-111.986872, 49.015542],\n          [-111.98686, 49.013841],\n          [-111.986847, 49.01231],\n          [-111.98685, 49.011137],\n          [-111.986861, 49.010352],\n          [-111.986797, 49.009758],\n          [-111.986645, 49.009206],\n          [-111.986377, 49.008696],\n          [-111.986147, 49.008354],\n          [-111.985836, 49.007998],\n          [-111.985337, 49.007558],\n          [-111.984989, 49.007266],\n          [-111.984301, 49.006795],\n          [-111.983474, 49.00638],\n          [-111.982516, 49.005993],\n          [-111.981765, 49.005715],\n          [-111.980942, 49.005514],\n          [-111.980129, 49.005334],\n          [-111.979328, 49.005194],\n          [-111.978062, 49.005092],\n          [-111.976985, 49.005074],\n          [-111.974918, 49.005173],\n          [-111.973139, 49.005292],\n          [-111.97154, 49.00538],\n          [-111.969019, 49.005514],\n          [-111.967562, 49.005617],\n          [-111.966045, 49.005705],\n          [-111.96469, 49.005725],\n          [-111.963991, 49.005648],\n          [-111.96346, 49.005567],\n          [-111.96295, 49.005448],\n          [-111.962485, 49.005296],\n          [-111.962163, 49.005187],\n          [-111.961761, 49.005004],\n          [-111.961293, 49.004765],\n          [-111.960951, 49.004554],\n          [-111.960789, 49.004426],\n          [-111.960561, 49.004236],\n          [-111.960215, 49.003866],\n          [-111.959973, 49.003571],\n          [-111.959774, 49.003265],\n          [-111.959681, 49.003043],\n          [-111.959581, 49.002794],\n          [-111.95951, 49.002452],\n          [-111.959584, 49.002087],\n          [-111.959768, 49.001731],\n          [-111.96008, 49.00139],\n          [-111.960323, 49.001097],\n          [-111.960993, 49.000276],\n          [-111.961147, 48.999913],\n          [-111.961177, 48.999675],\n          [-111.961154, 48.999405],\n          [-111.96075, 48.998378],\n          [-111.960537, 48.997835],\n          [-111.960261, 48.997296],\n          [-111.959961, 48.996969],\n          [-111.959772, 48.996485],\n          [-111.959789, 48.99582],\n          [-111.959918, 48.995443],\n          [-111.960048, 48.994907],\n          [-111.960094, 48.994603],\n          [-111.960084, 48.994414],\n          [-111.960109, 48.993824],\n          [-111.959994, 48.990856],\n          [-111.95827, 48.98094],\n          [-111.958253, 48.980705],\n          [-111.958185, 48.980405],\n          [-111.958073, 48.980015],\n          [-111.957973, 48.979662],\n          [-111.957788, 48.979177],\n          [-111.957579, 48.978688],\n          [-111.957393, 48.978342],\n          [-111.957182, 48.977986],\n          [-111.956929, 48.977617],\n          [-111.956287, 48.976872],\n          [-111.955429, 48.975932],\n          [-111.940434, 48.960617],\n          [-111.939756, 48.959862],\n          [-111.939258, 48.959163],\n          [-111.938864, 48.958475],\n          [-111.938589, 48.957934],\n          [-111.935242, 48.950139],\n          [-111.933705, 48.946469],\n          [-111.930948, 48.939956],\n          [-111.927211, 48.931012],\n          [-111.924522, 48.924688],\n          [-111.916608, 48.906188],\n          [-111.9112, 48.893335],\n          [-111.910969, 48.892844],\n          [-111.910694, 48.892325],\n          [-111.910265, 48.891676],\n          [-111.909921, 48.891247],\n          [-111.909492, 48.890711],\n          [-111.909046, 48.890237],\n          [-111.908119, 48.889328],\n          [-111.907385, 48.88863],\n          [-111.906844, 48.888116],\n          [-111.903694, 48.88508],\n          [-111.903291, 48.88469],\n          [-111.901737, 48.883161],\n          [-111.878176, 48.860393],\n          [-111.867242, 48.849753],\n          [-111.866486, 48.849013],\n          [-111.865877, 48.848301],\n          [-111.86531, 48.847533],\n          [-111.864675, 48.846613],\n          [-111.86392, 48.845195],\n          [-111.863594, 48.84437],\n          [-111.863233, 48.843167],\n          [-111.863139, 48.842738],\n          [-111.863019, 48.842026],\n          [-111.86295, 48.841071],\n          [-111.862942, 48.830326],\n          [-111.862942, 48.823285],\n          [-111.86289, 48.769261],\n          [-111.862864, 48.764515],\n          [-111.862813, 48.763474],\n          [-111.862718, 48.761743],\n          [-111.861611, 48.743809],\n          [-111.861439, 48.740289],\n          [-111.861439, 48.739949],\n          [-111.861594, 48.737176],\n          [-111.862178, 48.726719],\n          [-111.862229, 48.723792],\n          [-111.862083, 48.656639],\n          [-111.8621, 48.64979],\n          [-111.861997, 48.598701],\n          [-111.86198, 48.592185],\n          [-111.86198, 48.57272],\n          [-111.861912, 48.57163],\n          [-111.861817, 48.570494],\n          [-111.861697, 48.569205],\n          [-111.860581, 48.557657],\n          [-111.860077, 48.552231],\n          [-111.859663, 48.54801],\n          [-111.859594, 48.546805],\n          [-111.859611, 48.545322],\n          [-111.859792, 48.535383],\n          [-111.8598, 48.533888],\n          [-111.859886, 48.533121],\n          [-111.860015, 48.532581],\n          [-111.860246, 48.531939],\n          [-111.860598, 48.531387],\n          [-111.860942, 48.530899],\n          [-111.861688, 48.530109],\n          [-111.866109, 48.525755],\n          [-111.875953, 48.516192],\n          [-111.876929, 48.515247],\n          [-111.877241, 48.514954],\n          [-111.879228, 48.513021],\n          [-111.879759, 48.512467],\n          [-111.88006, 48.512124],\n          [-111.880267, 48.511881],\n          [-111.88042, 48.511679],\n          [-111.880571, 48.511473],\n          [-111.88094, 48.510956],\n          [-111.881292, 48.510376],\n          [-111.881653, 48.509733],\n          [-111.881996, 48.50904],\n          [-111.882305, 48.508346],\n          [-111.882562, 48.507572],\n          [-111.882777, 48.506828],\n          [-111.882931, 48.506134],\n          [-111.883026, 48.505588],\n          [-111.883441, 48.502992],\n          [-111.883604, 48.499975],\n          [-111.883614, 48.499767],\n          [-111.883635, 48.496433],\n          [-111.883673, 48.495815],\n          [-111.883734, 48.49503],\n          [-111.883798, 48.494396],\n          [-111.883866, 48.493802],\n          [-111.883999, 48.493],\n          [-111.884209, 48.492103],\n          [-111.884377, 48.49147],\n          [-111.884557, 48.490837],\n          [-111.885112, 48.489088],\n          [-111.885489, 48.48824],\n          [-111.886605, 48.485897],\n          [-111.88682, 48.485299],\n          [-111.887034, 48.484679],\n          [-111.887197, 48.484099],\n          [-111.887389, 48.483433],\n          [-111.88747, 48.482928],\n          [-111.887522, 48.482349],\n          [-111.887575, 48.481425],\n          [-111.887554, 48.480643],\n          [-111.887506, 48.480113],\n          [-111.887418, 48.479516],\n          [-111.887265, 48.478742],\n          [-111.887056, 48.477974],\n          [-111.886845, 48.47746],\n          [-111.886472, 48.476607],\n          [-111.885635, 48.474831],\n          [-111.885441, 48.474274],\n          [-111.885165, 48.473591],\n          [-111.884897, 48.472862],\n          [-111.884674, 48.47215],\n          [-111.884502, 48.471564],\n          [-111.884279, 48.470409],\n          [-111.884082, 48.46926],\n          [-111.883953, 48.468281],\n          [-111.883906, 48.467423],\n          [-111.883878, 48.46663],\n          [-111.883976, 48.454446],\n          [-111.884028, 48.447094],\n          [-111.884036, 48.443164],\n          [-111.884023, 48.441546],\n          [-111.884017, 48.440681],\n          [-111.884026, 48.43968],\n          [-111.884018, 48.438945],\n          [-111.88402, 48.438457],\n          [-111.884058, 48.438059],\n          [-111.884092, 48.43776],\n          [-111.884134, 48.437455],\n          [-111.884195, 48.437091],\n          [-111.884275, 48.436739],\n          [-111.884339, 48.436455],\n          [-111.884422, 48.436153],\n          [-111.884528, 48.435768],\n          [-111.884674, 48.435354],\n          [-111.884745, 48.435206],\n          [-111.884871, 48.43486],\n          [-111.885003, 48.434574],\n          [-111.885207, 48.434157],\n          [-111.885417, 48.433746],\n          [-111.885596, 48.433441],\n          [-111.88582, 48.433061],\n          [-111.886029, 48.43273],\n          [-111.886203, 48.432492],\n          [-111.886412, 48.432197],\n          [-111.886586, 48.431954],\n          [-111.886816, 48.431663],\n          [-111.887079, 48.431357],\n          [-111.887401, 48.430981],\n          [-111.887774, 48.430593],\n          [-111.888127, 48.430257],\n          [-111.888437, 48.429955],\n          [-111.889099, 48.429374],\n          [-111.889756, 48.428824],\n          [-111.890912, 48.427857],\n          [-111.892165, 48.426838],\n          [-111.905659, 48.415636],\n          [-111.90626, 48.415157],\n          [-111.906861, 48.41457],\n          [-111.907333, 48.414081],\n          [-111.907814, 48.413528],\n          [-111.908406, 48.412776],\n          [-111.909015, 48.411824],\n          [-111.909633, 48.410907],\n          [-111.920752, 48.392582],\n          [-111.927417, 48.381543],\n          [-111.93346, 48.371538],\n          [-111.933846, 48.37086],\n          [-111.934235, 48.370068],\n          [-111.934546, 48.369396],\n          [-111.934939, 48.368399],\n          [-111.935227, 48.367613],\n          [-111.935586, 48.366493],\n          [-111.935831, 48.365544],\n          [-111.936026, 48.364601],\n          [-111.936138, 48.363831],\n          [-111.936258, 48.362885],\n          [-111.936438, 48.360792],\n          [-111.936415, 48.329088],\n          [-111.936407, 48.310354],\n          [-111.936413, 48.303031],\n          [-111.936412, 48.300795],\n          [-111.936402, 48.300483],\n          [-111.936381, 48.271331],\n          [-111.936384, 48.26711],\n          [-111.936382, 48.259592],\n          [-111.936296, 48.241832],\n          [-111.936359, 48.224045],\n          [-111.936352, 48.223792],\n          [-111.936325, 48.223208],\n          [-111.936251, 48.222646],\n          [-111.936138, 48.222131],\n          [-111.936009, 48.221594],\n          [-111.935863, 48.221148],\n          [-111.935674, 48.220724],\n          [-111.935554, 48.220438],\n          [-111.935323, 48.219975],\n          [-111.934809, 48.219106],\n          [-111.93372, 48.217503],\n          [-111.933233, 48.216812],\n          [-111.932738, 48.21609],\n          [-111.932429, 48.215627],\n          [-111.931294, 48.214006],\n          [-111.927397, 48.208419],\n          [-111.925603, 48.205843],\n          [-111.925208, 48.205217],\n          [-111.92491, 48.204712],\n          [-111.924771, 48.204436],\n          [-111.924661, 48.204188],\n          [-111.924567, 48.203923],\n          [-111.924475, 48.203592],\n          [-111.924434, 48.203298],\n          [-111.924418, 48.202753],\n          [-111.924413, 48.20226],\n          [-111.924452, 48.201981],\n          [-111.924528, 48.20166],\n          [-111.924607, 48.201399],\n          [-111.924686, 48.201185],\n          [-111.924808, 48.200887],\n          [-111.92494, 48.200634],\n          [-111.925143, 48.200322],\n          [-111.925478, 48.199721],\n          [-111.929307, 48.193399],\n          [-111.931749, 48.18936],\n          [-111.932143, 48.188696],\n          [-111.932455, 48.188174],\n          [-111.933068, 48.187161],\n          [-111.933601, 48.186274],\n          [-111.933896, 48.185797],\n          [-111.934176, 48.185351],\n          [-111.934674, 48.184441],\n          [-111.934869, 48.184038],\n          [-111.935015, 48.183702],\n          [-111.935133, 48.183407],\n          [-111.935235, 48.183131],\n          [-111.935317, 48.182855],\n          [-111.935435, 48.182454],\n          [-111.935517, 48.18214],\n          [-111.935563, 48.181903],\n          [-111.935605, 48.181629],\n          [-111.935654, 48.181347],\n          [-111.935672, 48.181134],\n          [-111.935695, 48.180837],\n          [-111.93571, 48.180431],\n          [-111.935711, 48.179913],\n          [-111.935689, 48.179699],\n          [-111.935666, 48.179392],\n          [-111.935641, 48.179193],\n          [-111.935605, 48.178954],\n          [-111.935551, 48.17862],\n          [-111.935494, 48.178341],\n          [-111.935425, 48.178065],\n          [-111.935362, 48.177851],\n          [-111.935271, 48.177512],\n          [-111.935083, 48.177015],\n          [-111.93498, 48.176751],\n          [-111.934859, 48.176484],\n          [-111.934688, 48.176141],\n          [-111.934489, 48.175789],\n          [-111.934239, 48.175377],\n          [-111.933859, 48.174812],\n          [-111.933189, 48.173765],\n          [-111.928027, 48.165762],\n          [-111.927735, 48.165321],\n          [-111.92603, 48.162726],\n          [-111.925093, 48.161247],\n          [-111.924008, 48.159611],\n          [-111.922175, 48.156783],\n          [-111.920615, 48.154387],\n          [-111.919007, 48.151911],\n          [-111.91822, 48.150663],\n          [-111.916601, 48.148144],\n          [-111.915551, 48.146568],\n          [-111.914312, 48.144665],\n          [-111.913624, 48.143606],\n          [-111.912311, 48.141567],\n          [-111.911974, 48.141065],\n          [-111.911504, 48.140381],\n          [-111.910989, 48.139656],\n          [-111.91031, 48.138734],\n          [-111.909273, 48.1374],\n          [-111.907928, 48.135653],\n          [-111.906666, 48.13405],\n          [-111.905997, 48.133172],\n          [-111.904722, 48.131516],\n          [-111.901655, 48.127581],\n          [-111.900048, 48.125516],\n          [-111.898729, 48.123822],\n          [-111.894029, 48.117798],\n          [-111.893315, 48.116857],\n          [-111.892001, 48.115177],\n          [-111.889638, 48.112132],\n          [-111.887413, 48.109275],\n          [-111.884717, 48.105808],\n          [-111.876044, 48.094626],\n          [-111.87031, 48.087229],\n          [-111.862959, 48.077764],\n          [-111.861332, 48.075665],\n          [-111.858755, 48.072362],\n          [-111.857125, 48.070241],\n          [-111.854834, 48.06729],\n          [-111.850948, 48.062304],\n          [-111.85011, 48.061229],\n          [-111.849084, 48.059917],\n          [-111.845348, 48.055071],\n          [-111.836461, 48.043589],\n          [-111.832454, 48.038401],\n          [-111.828116, 48.032803],\n          [-111.825147, 48.028974],\n          [-111.816587, 48.017942],\n          [-111.816087, 48.017289],\n          [-111.815305, 48.016376],\n          [-111.814473, 48.015423],\n          [-111.813623, 48.014499],\n          [-111.812937, 48.013816],\n          [-111.811984, 48.012851],\n          [-111.810868, 48.011863],\n          [-111.809752, 48.010882],\n          [-111.808825, 48.010101],\n          [-111.807598, 48.009153],\n          [-111.806388, 48.008229],\n          [-111.805238, 48.007408],\n          [-111.784158, 47.992286],\n          [-111.782561, 47.991143],\n          [-111.767146, 47.980084],\n          [-111.766219, 47.979354],\n          [-111.765283, 47.978504],\n          [-111.764288, 47.977544],\n          [-111.763404, 47.976585],\n          [-111.762691, 47.975723],\n          [-111.762193, 47.97501],\n          [-111.761653, 47.974154],\n          [-111.761121, 47.973252],\n          [-111.753336, 47.959718],\n          [-111.749036, 47.952205],\n          [-111.736505, 47.930384],\n          [-111.736106, 47.92965],\n          [-111.735644, 47.928853],\n          [-111.735343, 47.928305],\n          [-111.733592, 47.925244],\n          [-111.733306, 47.924769],\n          [-111.732599, 47.923554],\n          [-111.732395, 47.923205],\n          [-111.731718, 47.922093],\n          [-111.731538, 47.921738],\n          [-111.73117, 47.921043],\n          [-111.726112, 47.912262],\n          [-111.71442, 47.89173],\n          [-111.713776, 47.890608],\n          [-111.713253, 47.889578],\n          [-111.712927, 47.888864],\n          [-111.71254, 47.888058],\n          [-111.712146, 47.88689],\n          [-111.711811, 47.885744],\n          [-111.711519, 47.884564],\n          [-111.711253, 47.883125],\n          [-111.711124, 47.881922],\n          [-111.71103, 47.880834],\n          [-111.71103, 47.879792],\n          [-111.711129, 47.869762],\n          [-111.711004, 47.867783],\n          [-111.710901, 47.866758],\n          [-111.710781, 47.865716],\n          [-111.710618, 47.864547],\n          [-111.710438, 47.863447],\n          [-111.710283, 47.862537],\n          [-111.709991, 47.861213],\n          [-111.709756, 47.860259],\n          [-111.709335, 47.858847],\n          [-111.708841, 47.857285],\n          [-111.70727, 47.852822],\n          [-111.706867, 47.851704],\n          [-111.706498, 47.850875],\n          [-111.706077, 47.850017],\n          [-111.705434, 47.848819],\n          [-111.705305, 47.848582],\n          [-111.704816, 47.847747],\n          [-111.704215, 47.846849],\n          [-111.703623, 47.846054],\n          [-111.702678, 47.844833],\n          [-111.701983, 47.843986],\n          [-111.700902, 47.842828],\n          [-111.699923, 47.841889],\n          [-111.698979, 47.841013],\n          [-111.698052, 47.84023],\n          [-111.696893, 47.839291],\n          [-111.668363, 47.817267],\n          [-111.667479, 47.816472],\n          [-111.667042, 47.815942],\n          [-111.666647, 47.815434],\n          [-111.666226, 47.81476],\n          [-111.665943, 47.814143],\n          [-111.66578, 47.813619],\n          [-111.665625, 47.812887],\n          [-111.6656, 47.812391],\n          [-111.665591, 47.811797],\n          [-111.666429, 47.79584],\n          [-111.666535, 47.793822],\n          [-111.666492, 47.791308],\n          [-111.666439, 47.750802],\n          [-111.666442, 47.741317],\n          [-111.666445, 47.740989],\n          [-111.666406, 47.723306],\n          [-111.666381, 47.72244],\n          [-111.666295, 47.721684],\n          [-111.666158, 47.720881],\n          [-111.665986, 47.72024],\n          [-111.665746, 47.719547],\n          [-111.665419, 47.71871],\n          [-111.665042, 47.717925],\n          [-111.664647, 47.717243],\n          [-111.664132, 47.716493],\n          [-111.663789, 47.716008],\n          [-111.663359, 47.715528],\n          [-111.662432, 47.714581],\n          [-111.658081, 47.710071],\n          [-111.647285, 47.699031],\n          [-111.646085, 47.697836],\n          [-111.632275, 47.683698],\n          [-111.631949, 47.683351],\n          [-111.606663, 47.657441],\n          [-111.60117, 47.651798],\n          [-111.590415, 47.64073],\n          [-111.589918, 47.640187],\n          [-111.589463, 47.639655],\n          [-111.589068, 47.639157],\n          [-111.588707, 47.638689],\n          [-111.588287, 47.638139],\n          [-111.587849, 47.637538],\n          [-111.587549, 47.637104],\n          [-111.587231, 47.636624],\n          [-111.58627, 47.63501],\n          [-111.585369, 47.633136],\n          [-111.570511, 47.6019],\n          [-111.569945, 47.600818],\n          [-111.56955, 47.600169],\n          [-111.569224, 47.599643],\n          [-111.568846, 47.599047],\n          [-111.568546, 47.598607],\n          [-111.568168, 47.598051],\n          [-111.567747, 47.597472],\n          [-111.567335, 47.596928],\n          [-111.566915, 47.59643],\n          [-111.566537, 47.595991],\n          [-111.552899, 47.581183],\n          [-111.552633, 47.580911],\n          [-111.537629, 47.564691],\n          [-111.536514, 47.563515],\n          [-111.535904, 47.562901],\n          [-111.535175, 47.56227],\n          [-111.534437, 47.561691],\n          [-111.533656, 47.561129],\n          [-111.532711, 47.560504],\n          [-111.531647, 47.559884],\n          [-111.53048, 47.559311],\n          [-111.529184, 47.558737],\n          [-111.528008, 47.558285],\n          [-111.526806, 47.557897],\n          [-111.525424, 47.557503],\n          [-111.524008, 47.557162],\n          [-111.522824, 47.556953],\n          [-111.521734, 47.556779],\n          [-111.509679, 47.554952],\n          [-111.484251, 47.551039],\n          [-111.477299, 47.54995],\n          [-111.455614, 47.546631],\n          [-111.452477, 47.546143],\n          [-111.452005, 47.546074],\n          [-111.448496, 47.545531],\n          [-111.445301, 47.545037],\n          [-111.443894, 47.544799],\n          [-111.442357, 47.544492],\n          [-111.440907, 47.544162],\n          [-111.439173, 47.543716],\n          [-111.437894, 47.543368],\n          [-111.436512, 47.542957],\n          [-111.435045, 47.54247],\n          [-111.385349, 47.526175],\n          [-111.384241, 47.525793],\n          [-111.383478, 47.52541],\n          [-111.382928, 47.525097],\n          [-111.382499, 47.524784],\n          [-111.382036, 47.524384],\n          [-111.381709, 47.524025],\n          [-111.381452, 47.523741],\n          [-111.380053, 47.521909],\n          [-111.379298, 47.520959],\n          [-111.379152, 47.520779],\n          [-111.378714, 47.520286],\n          [-111.378268, 47.519857],\n          [-111.377555, 47.519394],\n          [-111.376774, 47.518994],\n          [-111.376096, 47.518733],\n          [-111.375409, 47.51853],\n          [-111.374294, 47.518234],\n          [-111.351059, 47.512362],\n          [-111.350081, 47.512055],\n          [-111.348914, 47.511632],\n          [-111.348184, 47.511255],\n          [-111.347446, 47.510878],\n          [-111.346914, 47.510553],\n          [-111.346356, 47.510147],\n          [-111.345832, 47.509759],\n          [-111.345309, 47.509295],\n          [-111.344914, 47.508884],\n          [-111.344605, 47.508542],\n          [-111.344193, 47.50802],\n          [-111.34391, 47.507591],\n          [-111.343618, 47.507133],\n          [-111.343352, 47.506535],\n          [-111.343137, 47.505921],\n          [-111.343, 47.505254],\n          [-111.342914, 47.504779],\n          [-111.342871, 47.504205],\n          [-111.342884, 47.503714],\n          [-111.343017, 47.501337],\n          [-111.343037, 47.500922],\n          [-111.343074, 47.500247],\n          [-111.343153, 47.498866],\n          [-111.343699, 47.489338],\n          [-111.343837, 47.488347],\n          [-111.344051, 47.487517],\n          [-111.344326, 47.486746],\n          [-111.344695, 47.485795],\n          [-111.345184, 47.484855],\n          [-111.345493, 47.484356],\n          [-111.346068, 47.483527],\n          [-111.34715, 47.48221],\n          [-111.347948, 47.481392],\n          [-111.348765, 47.480715],\n          [-111.349751, 47.479978],\n          [-111.350866, 47.47913],\n          [-111.356582, 47.475347],\n          [-111.365214, 47.469592],\n          [-111.367419, 47.46813],\n          [-111.367934, 47.467829],\n          [-111.368578, 47.467492],\n          [-111.36923, 47.467144],\n          [-111.369994, 47.466807],\n          [-111.370973, 47.466407],\n          [-111.371926, 47.466042],\n          [-111.372818, 47.465746],\n          [-111.373522, 47.465525],\n          [-111.374509, 47.465258],\n          [-111.429286, 47.452445],\n          [-111.429621, 47.452364],\n          [-111.473508, 47.442064],\n          [-111.50183, 47.435384],\n          [-111.502749, 47.435175],\n          [-111.503701, 47.434961],\n          [-111.504362, 47.434792],\n          [-111.505221, 47.434543],\n          [-111.506045, 47.434299],\n          [-111.506663, 47.434095],\n          [-111.507143, 47.433927],\n          [-111.507907, 47.433648],\n          [-111.508654, 47.433312],\n          [-111.509255, 47.433045],\n          [-111.509933, 47.432725],\n          [-111.510534, 47.432412],\n          [-111.51122, 47.432029],\n          [-111.51183, 47.431674],\n          [-111.512954, 47.430931],\n          [-111.513546, 47.43049],\n          [-111.524011, 47.422011],\n          [-111.569141, 47.385345],\n          [-111.6142, 47.348685],\n          [-111.614466, 47.34847],\n          [-111.634341, 47.332266],\n          [-111.69101, 47.285965],\n          [-111.692683, 47.284596],\n          [-111.694151, 47.283461],\n          [-111.694838, 47.282943],\n          [-111.696432, 47.281863],\n          [-111.698123, 47.280815],\n          [-111.699024, 47.280297],\n          [-111.699436, 47.280064],\n          [-111.703522, 47.277671],\n          [-111.704183, 47.27728],\n          [-111.704689, 47.276966],\n          [-111.70511, 47.276686],\n          [-111.705436, 47.276442],\n          [-111.705788, 47.276139],\n          [-111.706182, 47.275766],\n          [-111.706612, 47.275289],\n          [-111.706989, 47.274806],\n          [-111.707367, 47.274264],\n          [-111.707573, 47.273856],\n          [-111.707813, 47.273379],\n          [-111.707933, 47.273047],\n          [-111.708045, 47.272651],\n          [-111.708122, 47.272307],\n          [-111.708199, 47.271911],\n          [-111.708234, 47.271544],\n          [-111.708234, 47.271212],\n          [-111.708157, 47.264538],\n          [-111.708114, 47.262342],\n          [-111.708122, 47.261794],\n          [-111.708157, 47.261369],\n          [-111.708234, 47.260851],\n          [-111.708268, 47.260653],\n          [-111.708337, 47.260257],\n          [-111.708508, 47.259511],\n          [-111.708637, 47.258923],\n          [-111.708783, 47.258241],\n          [-111.70898, 47.257536],\n          [-111.709152, 47.256942],\n          [-111.709298, 47.256383],\n          [-111.710079, 47.25333],\n          [-111.710328, 47.252363],\n          [-111.710474, 47.251833],\n          [-111.710637, 47.251332],\n          [-111.710834, 47.250889],\n          [-111.71104, 47.250545],\n          [-111.711367, 47.250085],\n          [-111.711658, 47.249753],\n          [-111.711942, 47.249444],\n          [-111.712345, 47.249089],\n          [-111.712766, 47.248751],\n          [-111.71316, 47.248494],\n          [-111.713624, 47.248221],\n          [-111.714147, 47.247958],\n          [-111.714834, 47.247655],\n          [-111.729726, 47.241112],\n          [-111.73291, 47.239807],\n          [-111.75169, 47.232534],\n          [-111.754093, 47.231624],\n          [-111.75635, 47.230861],\n          [-111.75676, 47.230739],\n          [-111.765002, 47.228413],\n          [-111.765835, 47.228157],\n          [-111.766633, 47.227877],\n          [-111.767345, 47.227597],\n          [-111.768092, 47.227306],\n          [-111.768719, 47.227026],\n          [-111.769474, 47.226676],\n          [-111.770058, 47.226361],\n          [-111.770727, 47.225988],\n          [-111.771448, 47.225534],\n          [-111.772118, 47.225096],\n          [-111.772693, 47.224688],\n          [-111.773405, 47.22417],\n          [-111.773714, 47.223936],\n          [-111.774169, 47.223575],\n          [-111.774641, 47.223103],\n          [-111.775104, 47.222619],\n          [-111.775499, 47.222211],\n          [-111.775885, 47.221774],\n          [-111.776306, 47.221255],\n          [-111.776658, 47.220777],\n          [-111.77695, 47.220369],\n          [-111.777422, 47.219611],\n          [-111.777722, 47.219057],\n          [-111.778014, 47.218422],\n          [-111.778289, 47.217746],\n          [-111.778503, 47.217104],\n          [-111.778675, 47.216428],\n          [-111.778881, 47.215694],\n          [-111.779061, 47.214988],\n          [-111.780057, 47.210796],\n          [-111.780203, 47.210213],\n          [-111.780323, 47.209758],\n          [-111.780435, 47.209397],\n          [-111.780641, 47.208808],\n          [-111.780907, 47.208201],\n          [-111.78113, 47.207729],\n          [-111.781301, 47.207438],\n          [-111.781499, 47.207129],\n          [-111.78228, 47.205916],\n          [-111.783293, 47.204645],\n          [-111.783936, 47.203974],\n          [-111.784735, 47.203146],\n          [-111.785593, 47.202225],\n          [-111.786314, 47.201466],\n          [-111.786872, 47.200883],\n          [-111.787902, 47.199845],\n          [-111.788254, 47.199507],\n          [-111.788674, 47.19914],\n          [-111.789086, 47.19879],\n          [-111.789584, 47.198387],\n          [-111.790168, 47.197921],\n          [-111.790605, 47.197618],\n          [-111.791249, 47.197227],\n          [-111.791824, 47.196877],\n          [-111.792545, 47.196474],\n          [-111.793198, 47.196136],\n          [-111.79397, 47.195769],\n          [-111.794805, 47.195425],\n          [-111.801248, 47.192835],\n          [-111.801575, 47.192701],\n          [-111.802656, 47.192287],\n          [-111.803514, 47.191937],\n          [-111.804167, 47.191628],\n          [-111.804665, 47.191394],\n          [-111.8053, 47.191045],\n          [-111.805723, 47.190797],\n          [-111.805997, 47.190634],\n          [-111.806478, 47.190323],\n          [-111.806732, 47.190144],\n          [-111.80699, 47.189955],\n          [-111.807242, 47.189755],\n          [-111.807499, 47.189537],\n          [-111.807978, 47.189108],\n          [-111.808309, 47.188784],\n          [-111.808738, 47.188316],\n          [-111.809145, 47.187831],\n          [-111.809375, 47.187515],\n          [-111.809578, 47.187207],\n          [-111.809725, 47.186968],\n          [-111.809941, 47.18658],\n          [-111.810196, 47.186052],\n          [-111.810485, 47.185392],\n          [-111.810582, 47.185034],\n          [-111.810757, 47.184458],\n          [-111.81087, 47.184068],\n          [-111.811288, 47.182591],\n          [-111.811466, 47.182023],\n          [-111.811592, 47.181562],\n          [-111.811725, 47.181068],\n          [-111.811881, 47.18053],\n          [-111.812016, 47.179972],\n          [-111.812133, 47.179486],\n          [-111.812304, 47.178698],\n          [-111.812475, 47.177933],\n          [-111.812795, 47.176671],\n          [-111.813022, 47.175805],\n          [-111.813143, 47.175313],\n          [-111.813289, 47.174743],\n          [-111.813451, 47.174086],\n          [-111.813587, 47.173603],\n          [-111.813709, 47.173199],\n          [-111.813868, 47.172742],\n          [-111.814052, 47.172177],\n          [-111.81431, 47.171374],\n          [-111.814446, 47.170953],\n          [-111.814555, 47.170592],\n          [-111.814621, 47.170315],\n          [-111.814724, 47.169845],\n          [-111.814867, 47.169286],\n          [-111.814924, 47.169023],\n          [-111.815005, 47.168585],\n          [-111.81512, 47.168075],\n          [-111.815267, 47.167513],\n          [-111.81537, 47.167124],\n          [-111.815534, 47.166596],\n          [-111.815743, 47.165879],\n          [-111.815883, 47.165407],\n          [-111.816017, 47.16497],\n          [-111.816151, 47.164499],\n          [-111.816299, 47.164102],\n          [-111.816455, 47.163605],\n          [-111.816606, 47.163233],\n          [-111.81675, 47.162929],\n          [-111.8169, 47.16265],\n          [-111.817163, 47.162234],\n          [-111.817461, 47.161792],\n          [-111.817707, 47.161428],\n          [-111.817918, 47.161172],\n          [-111.818109, 47.160939],\n          [-111.81826, 47.160773],\n          [-111.818436, 47.160598],\n          [-111.818713, 47.160322],\n          [-111.819137, 47.159916],\n          [-111.819338, 47.159742],\n          [-111.819615, 47.159506],\n          [-111.819811, 47.159353],\n          [-111.820101, 47.159137],\n          [-111.820886, 47.158653],\n          [-111.821347, 47.158391],\n          [-111.821709, 47.158179],\n          [-111.82215, 47.157949],\n          [-111.822792, 47.157656],\n          [-111.823291, 47.157407],\n          [-111.823951, 47.157074],\n          [-111.824604, 47.156773],\n          [-111.824926, 47.156618],\n          [-111.826016, 47.156075],\n          [-111.826777, 47.155704],\n          [-111.827118, 47.155527],\n          [-111.827632, 47.155278],\n          [-111.828833, 47.154684],\n          [-111.830331, 47.153967],\n          [-111.83092, 47.153679],\n          [-111.831417, 47.153485],\n          [-111.831694, 47.153394],\n          [-111.831937, 47.15332],\n          [-111.832157, 47.153261],\n          [-111.832517, 47.15318],\n          [-111.832892, 47.153117],\n          [-111.833253, 47.153076],\n          [-111.833573, 47.153049],\n          [-111.833993, 47.153025],\n          [-111.834559, 47.153049],\n          [-111.835126, 47.153113],\n          [-111.835701, 47.1532],\n          [-111.83595, 47.153259],\n          [-111.841856, 47.154858],\n          [-111.842362, 47.155002],\n          [-111.842712, 47.155094],\n          [-111.843019, 47.155158],\n          [-111.843672, 47.155257],\n          [-111.8438, 47.155267],\n          [-111.844087, 47.155287],\n          [-111.844399, 47.155286],\n          [-111.844699, 47.15528],\n          [-111.845058, 47.15526],\n          [-111.845509, 47.155193],\n          [-111.845869, 47.155122],\n          [-111.846291, 47.155019],\n          [-111.846644, 47.154905],\n          [-111.846928, 47.154785],\n          [-111.847126, 47.154685],\n          [-111.847479, 47.154504],\n          [-111.847736, 47.154346],\n          [-111.847908, 47.15421],\n          [-111.848115, 47.154036],\n          [-111.848251, 47.153894],\n          [-111.848342, 47.153792],\n          [-111.84847, 47.153647],\n          [-111.848543, 47.153546],\n          [-111.848649, 47.153419],\n          [-111.848764, 47.153232],\n          [-111.848861, 47.153032],\n          [-111.848947, 47.152823],\n          [-111.848973, 47.152708],\n          [-111.849021, 47.152541],\n          [-111.849042, 47.152364],\n          [-111.849077, 47.152131],\n          [-111.849103, 47.151825],\n          [-111.849333, 47.149062],\n          [-111.849393, 47.148406],\n          [-111.8494, 47.148192],\n          [-111.849408, 47.147987],\n          [-111.8494, 47.147824],\n          [-111.84939, 47.147698],\n          [-111.849374, 47.147556],\n          [-111.849347, 47.147435],\n          [-111.849331, 47.147351],\n          [-111.849245, 47.146966],\n          [-111.849142, 47.146674],\n          [-111.849059, 47.146434],\n          [-111.848943, 47.146212],\n          [-111.84886, 47.146053],\n          [-111.848767, 47.145896],\n          [-111.848673, 47.145762],\n          [-111.848566, 47.14562],\n          [-111.847025, 47.143717],\n          [-111.846887, 47.143525],\n          [-111.846766, 47.143353],\n          [-111.846661, 47.14319],\n          [-111.846521, 47.142953],\n          [-111.846415, 47.142749],\n          [-111.846343, 47.142591],\n          [-111.846269, 47.14237],\n          [-111.846241, 47.142263],\n          [-111.846223, 47.14217],\n          [-111.846209, 47.142062],\n          [-111.84619, 47.141876],\n          [-111.846192, 47.141745],\n          [-111.846217, 47.141528],\n          [-111.846242, 47.141353],\n          [-111.84627, 47.141184],\n          [-111.846324, 47.141016],\n          [-111.846398, 47.140797],\n          [-111.846525, 47.140531],\n          [-111.846604, 47.14041],\n          [-111.846676, 47.14029],\n          [-111.846846, 47.140059],\n          [-111.847142, 47.139751],\n          [-111.847281, 47.13963],\n          [-111.84746, 47.139479],\n          [-111.847678, 47.139323],\n          [-111.84791, 47.139171],\n          [-111.848186, 47.139013],\n          [-111.848438, 47.138891],\n          [-111.848706, 47.138772],\n          [-111.848984, 47.138674],\n          [-111.849267, 47.138581],\n          [-111.849592, 47.138477],\n          [-111.849947, 47.138393],\n          [-111.850257, 47.138331],\n          [-111.850556, 47.138292],\n          [-111.850908, 47.138241],\n          [-111.851241, 47.13822],\n          [-111.85164, 47.138209],\n          [-111.851974, 47.13821],\n          [-111.852237, 47.138223],\n          [-111.852532, 47.138247],\n          [-111.852795, 47.138276],\n          [-111.853123, 47.13833],\n          [-111.853394, 47.138374],\n          [-111.853787, 47.138457],\n          [-111.854766, 47.138667],\n          [-111.855826, 47.138884],\n          [-111.856179, 47.13897],\n          [-111.856565, 47.139029],\n          [-111.856792, 47.139068],\n          [-111.857173, 47.13911],\n          [-111.857431, 47.139137],\n          [-111.857676, 47.139157],\n          [-111.858048, 47.139176],\n          [-111.858338, 47.139177],\n          [-111.858762, 47.139167],\n          [-111.859155, 47.139148],\n          [-111.85955, 47.139117],\n          [-111.859805, 47.139089],\n          [-111.860245, 47.139022],\n          [-111.860491, 47.13898],\n          [-111.860683, 47.138944],\n          [-111.860973, 47.138885],\n          [-111.861214, 47.138829],\n          [-111.861479, 47.138758],\n          [-111.861743, 47.138677],\n          [-111.862069, 47.138562],\n          [-111.862344, 47.138449],\n          [-111.862687, 47.138297],\n          [-111.862931, 47.138175],\n          [-111.863114, 47.138087],\n          [-111.863314, 47.137975],\n          [-111.863599, 47.137807],\n          [-111.863972, 47.13756],\n          [-111.864261, 47.137341],\n          [-111.864442, 47.137202],\n          [-111.864674, 47.137005],\n          [-111.864969, 47.136736],\n          [-111.865258, 47.13642],\n          [-111.867853, 47.13324],\n          [-111.868102, 47.13296],\n          [-111.868445, 47.132657],\n          [-111.868909, 47.132347],\n          [-111.869372, 47.132096],\n          [-111.869776, 47.131938],\n          [-111.870291, 47.131792],\n          [-111.870754, 47.131687],\n          [-111.871286, 47.131623],\n          [-111.87181, 47.131605],\n          [-111.872359, 47.131617],\n          [-111.873389, 47.131705],\n          [-111.875681, 47.131897],\n          [-111.885054, 47.132785],\n          [-111.886566, 47.132886],\n          [-111.888607, 47.1331],\n          [-111.888985, 47.133135],\n          [-111.889766, 47.133217],\n          [-111.890444, 47.133281],\n          [-111.891225, 47.133322],\n          [-111.891886, 47.133334],\n          [-111.892598, 47.133334],\n          [-111.893242, 47.133316],\n          [-111.8938, 47.133305],\n          [-111.894512, 47.133246],\n          [-111.89513, 47.133194],\n          [-111.89563, 47.133132],\n          [-111.896274, 47.133044],\n          [-111.89678, 47.132974],\n          [-111.898531, 47.132636],\n          [-111.899656, 47.132344],\n          [-111.900711, 47.132022],\n          [-111.901398, 47.131783],\n          [-111.902445, 47.131403],\n          [-111.904162, 47.130755],\n          [-111.909034, 47.128927],\n          [-111.913729, 47.127181],\n          [-111.917251, 47.125878],\n          [-111.92071, 47.1247],\n          [-111.921698, 47.124251],\n          [-111.922387, 47.123838],\n          [-111.922806, 47.123526],\n          [-111.924809, 47.121884],\n          [-111.925527, 47.121467],\n          [-111.926631, 47.121045],\n          [-111.927545, 47.120838],\n          [-111.928844, 47.120679],\n          [-111.939954, 47.119561],\n          [-111.940893, 47.119375],\n          [-111.941491, 47.119193],\n          [-111.94258, 47.118694],\n          [-111.94328, 47.118205],\n          [-111.943682, 47.117842],\n          [-111.944167, 47.117216],\n          [-111.94437, 47.116782],\n          [-111.94452, 47.116283],\n          [-111.944594, 47.115646],\n          [-111.944471, 47.113184],\n          [-111.944519, 47.112085],\n          [-111.944699, 47.111164],\n          [-111.9451, 47.109855],\n          [-111.94519, 47.109613],\n          [-111.946818, 47.104798],\n          [-111.947185, 47.103915],\n          [-111.94757, 47.103215],\n          [-111.948705, 47.101708],\n          [-111.95025, 47.099859],\n          [-111.951568, 47.098237],\n          [-111.952318, 47.097326],\n          [-111.952866, 47.096646],\n          [-111.954165, 47.094457],\n          [-111.954536, 47.093996],\n          [-111.955001, 47.093573],\n          [-111.95538, 47.093283],\n          [-111.95597, 47.092921],\n          [-111.958022, 47.092174],\n          [-111.958929, 47.091665],\n          [-111.959563, 47.091145],\n          [-111.959918, 47.090782],\n          [-111.960199, 47.090406],\n          [-111.960514, 47.089782],\n          [-111.960679, 47.089121],\n          [-111.961076, 47.083974],\n          [-111.961218, 47.083113],\n          [-111.961515, 47.082259],\n          [-111.962027, 47.081188],\n          [-111.962536, 47.080367],\n          [-111.963148, 47.079581],\n          [-111.964601, 47.078023],\n          [-111.966718, 47.075826],\n          [-111.967024, 47.075517],\n          [-111.969094, 47.073375],\n          [-111.970437, 47.07194],\n          [-111.972154, 47.070032],\n          [-111.973432, 47.068542],\n          [-111.974103, 47.067809],\n          [-111.974604, 47.067107],\n          [-111.976616, 47.064731],\n          [-111.98105, 47.059331],\n          [-111.981811, 47.058552],\n          [-111.982905, 47.057585],\n          [-111.983864, 47.057007],\n          [-111.985011, 47.056354],\n          [-111.986314, 47.055712],\n          [-111.986853, 47.055504],\n          [-111.987827, 47.055224],\n          [-111.990272, 47.054577],\n          [-111.991627, 47.053954],\n          [-111.992491, 47.053494],\n          [-111.993301, 47.052977],\n          [-111.994268, 47.05221],\n          [-111.994901, 47.051592],\n          [-112.00108, 47.045261],\n          [-112.002131, 47.044014],\n          [-112.002341, 47.043639],\n          [-112.002459, 47.043291],\n          [-112.00254, 47.04249],\n          [-112.002551, 47.041633],\n          [-112.002802, 47.040468],\n          [-112.003031, 47.039996],\n          [-112.003311, 47.039629],\n          [-112.00408, 47.038901],\n          [-112.004669, 47.038537],\n          [-112.005381, 47.038191],\n          [-112.006132, 47.03787],\n          [-112.007591, 47.037508],\n          [-112.008057, 47.037437],\n          [-112.009475, 47.037313],\n          [-112.012696, 47.037258],\n          [-112.01489, 47.037245],\n          [-112.016275, 47.037163],\n          [-112.0192, 47.037033],\n          [-112.020595, 47.036893],\n          [-112.021841, 47.036661],\n          [-112.023428, 47.036288],\n          [-112.024543, 47.035923],\n          [-112.025634, 47.03549],\n          [-112.026621, 47.035004],\n          [-112.027875, 47.034259],\n          [-112.04368, 47.024236],\n          [-112.044909, 47.023441],\n          [-112.04544, 47.023036],\n          [-112.04608, 47.022418],\n          [-112.046528, 47.021863],\n          [-112.046751, 47.021531],\n          [-112.046895, 47.021189],\n          [-112.048457, 47.017223],\n          [-112.049379, 47.014861],\n          [-112.04961, 47.014335],\n          [-112.049878, 47.013819],\n          [-112.050194, 47.013314],\n          [-112.050556, 47.012813],\n          [-112.050955, 47.01233],\n          [-112.051351, 47.011873],\n          [-112.051809, 47.011423],\n          [-112.052303, 47.010991],\n          [-112.05283, 47.010576],\n          [-112.053387, 47.010182],\n          [-112.053972, 47.009806],\n          [-112.056998, 47.008006],\n          [-112.058515, 47.007109],\n          [-112.060333, 47.006031],\n          [-112.061846, 47.00513],\n          [-112.062472, 47.004869],\n          [-112.062889, 47.004741],\n          [-112.063358, 47.004645],\n          [-112.063683, 47.004606],\n          [-112.064074, 47.004561],\n          [-112.064445, 47.004519],\n          [-112.06488, 47.004576],\n          [-112.06527, 47.004629],\n          [-112.065565, 47.004697],\n          [-112.065974, 47.004792],\n          [-112.066808, 47.004991],\n          [-112.06824, 47.005361],\n          [-112.0686, 47.005467],\n          [-112.069096, 47.005596],\n          [-112.069473, 47.005688],\n          [-112.069732, 47.005745],\n          [-112.070266, 47.005855],\n          [-112.070699, 47.005951],\n          [-112.071253, 47.006048],\n          [-112.071642, 47.006114],\n          [-112.071928, 47.006158],\n          [-112.072302, 47.006209],\n          [-112.072735, 47.006263],\n          [-112.072984, 47.006287],\n          [-112.073367, 47.006318],\n          [-112.073792, 47.006352],\n          [-112.074219, 47.006372],\n          [-112.074542, 47.006382],\n          [-112.074829, 47.00639],\n          [-112.075178, 47.006392],\n          [-112.075603, 47.006393],\n          [-112.076788, 47.006332],\n          [-112.077271, 47.006281],\n          [-112.077628, 47.006225],\n          [-112.078026, 47.006153],\n          [-112.078436, 47.006074],\n          [-112.078755, 47.005996],\n          [-112.079201, 47.005866],\n          [-112.079533, 47.005747],\n          [-112.079812, 47.00563],\n          [-112.080082, 47.005495],\n          [-112.080379, 47.005332],\n          [-112.080635, 47.005164],\n          [-112.080953, 47.004927],\n          [-112.081049, 47.004826],\n          [-112.081198, 47.004689],\n          [-112.081316, 47.004562],\n          [-112.081449, 47.004379],\n          [-112.081568, 47.004191],\n          [-112.081674, 47.003987],\n          [-112.08174, 47.003858],\n          [-112.081806, 47.003692],\n          [-112.081884, 47.003438],\n          [-112.08191, 47.003275],\n          [-112.081934, 47.003066],\n          [-112.08193, 47.002831],\n          [-112.081896, 47.002597],\n          [-112.081853, 47.002371],\n          [-112.081798, 47.002194],\n          [-112.081607, 47.00176],\n          [-112.081184, 47.001198],\n          [-112.079559, 46.99968],\n          [-112.078016, 46.99838],\n          [-112.07758, 46.997912],\n          [-112.077288, 46.997532],\n          [-112.076986, 46.99693],\n          [-112.076889, 46.996514],\n          [-112.076886, 46.996116],\n          [-112.076984, 46.995478],\n          [-112.07795, 46.992584],\n          [-112.078047, 46.991994],\n          [-112.078024, 46.991594],\n          [-112.077935, 46.9912],\n          [-112.077672, 46.990627],\n          [-112.076129, 46.988425],\n          [-112.075762, 46.987771],\n          [-112.075646, 46.98742],\n          [-112.075619, 46.987055],\n          [-112.075663, 46.986679],\n          [-112.075796, 46.986299],\n          [-112.076008, 46.985921],\n          [-112.076502, 46.98539],\n          [-112.077181, 46.984932],\n          [-112.081242, 46.982494],\n          [-112.081853, 46.981972],\n          [-112.082104, 46.981646],\n          [-112.082346, 46.981245],\n          [-112.082526, 46.98074],\n          [-112.082567, 46.980266],\n          [-112.082681, 46.977427],\n          [-112.082826, 46.974499],\n          [-112.083032, 46.973709],\n          [-112.083438, 46.973098],\n          [-112.083941, 46.972667],\n          [-112.084536, 46.97225],\n          [-112.093815, 46.965771],\n          [-112.094034, 46.965596],\n          [-112.094318, 46.965306],\n          [-112.094501, 46.965085],\n          [-112.094642, 46.964864],\n          [-112.094785, 46.964575],\n          [-112.094868, 46.964338],\n          [-112.094926, 46.964081],\n          [-112.094952, 46.963813],\n          [-112.094963, 46.963562],\n          [-112.094964, 46.963005],\n          [-112.094945, 46.962147],\n          [-112.095064, 46.961322],\n          [-112.095315, 46.960775],\n          [-112.095663, 46.960328],\n          [-112.098599, 46.957746],\n          [-112.098975, 46.957432],\n          [-112.099726, 46.956946],\n          [-112.100314, 46.956644],\n          [-112.101038, 46.956326],\n          [-112.103946, 46.955297],\n          [-112.107802, 46.953955],\n          [-112.108475, 46.953671],\n          [-112.108901, 46.953445],\n          [-112.109465, 46.953038],\n          [-112.109979, 46.952469],\n          [-112.110197, 46.952042],\n          [-112.111502, 46.949682],\n          [-112.112324, 46.948952],\n          [-112.113184, 46.948533],\n          [-112.114208, 46.948308],\n          [-112.116111, 46.948021],\n          [-112.117289, 46.947669],\n          [-112.118334, 46.94705],\n          [-112.119549, 46.946068],\n          [-112.122402, 46.943642],\n          [-112.123133, 46.943013],\n          [-112.123553, 46.942583],\n          [-112.12389, 46.942171],\n          [-112.124619, 46.941266],\n          [-112.125571, 46.939982],\n          [-112.126015, 46.939377],\n          [-112.1265, 46.938749],\n          [-112.126751, 46.938397],\n          [-112.126995, 46.938014],\n          [-112.127231, 46.93766],\n          [-112.127472, 46.93708],\n          [-112.127553, 46.936521],\n          [-112.127485, 46.935878],\n          [-112.126037, 46.931011],\n          [-112.125843, 46.930596],\n          [-112.125614, 46.930288],\n          [-112.125356, 46.930017],\n          [-112.125, 46.92973],\n          [-112.122981, 46.928549],\n          [-112.122668, 46.928293],\n          [-112.122315, 46.927871],\n          [-112.122099, 46.927296],\n          [-112.122093, 46.926792],\n          [-112.122341, 46.926128],\n          [-112.12333, 46.924835],\n          [-112.123628, 46.924404],\n          [-112.123835, 46.923877],\n          [-112.123883, 46.923325],\n          [-112.123775, 46.9228],\n          [-112.123494, 46.922251],\n          [-112.123242, 46.921939],\n          [-112.123161, 46.921857],\n          [-112.12174, 46.920823],\n          [-112.121416, 46.920602],\n          [-112.120977, 46.920179],\n          [-112.120697, 46.919775],\n          [-112.120503, 46.919327],\n          [-112.120322, 46.918471],\n          [-112.119667, 46.915666],\n          [-112.11939, 46.915074],\n          [-112.119062, 46.914644],\n          [-112.118506, 46.91421],\n          [-112.116708, 46.913328],\n          [-112.116193, 46.912968],\n          [-112.115472, 46.912187],\n          [-112.115356, 46.911933],\n          [-112.115279, 46.911728],\n          [-112.115241, 46.911454],\n          [-112.11523, 46.911175],\n          [-112.115266, 46.910915],\n          [-112.115368, 46.910602],\n          [-112.115446, 46.910438],\n          [-112.115662, 46.910084],\n          [-112.11604, 46.909673],\n          [-112.119395, 46.907257],\n          [-112.119896, 46.906695],\n          [-112.120633, 46.90538],\n          [-112.120979, 46.904986],\n          [-112.122506, 46.903673],\n          [-112.12294, 46.903177],\n          [-112.123172, 46.902727],\n          [-112.123344, 46.902186],\n          [-112.12337, 46.901665],\n          [-112.12326, 46.90114],\n          [-112.123004, 46.900542],\n          [-112.122296, 46.899463],\n          [-112.118791, 46.893932],\n          [-112.118077, 46.892887],\n          [-112.117488, 46.892253],\n          [-112.11672, 46.891638],\n          [-112.11608, 46.891253],\n          [-112.114112, 46.89021],\n          [-112.110716, 46.888379],\n          [-112.110338, 46.888159],\n          [-112.106096, 46.885885],\n          [-112.101398, 46.88336],\n          [-112.094609, 46.879651],\n          [-112.0931, 46.878959],\n          [-112.091311, 46.878288],\n          [-112.089958, 46.877867],\n          [-112.088521, 46.877511],\n          [-112.069016, 46.872724],\n          [-112.049279, 46.867857],\n          [-112.047103, 46.867189],\n          [-112.044993, 46.866382],\n          [-112.043719, 46.865827],\n          [-112.042541, 46.865241],\n          [-112.040586, 46.864168],\n          [-112.039263, 46.863298],\n          [-112.037988, 46.862365],\n          [-112.036738, 46.86133],\n          [-112.014076, 46.842104],\n          [-112.012788, 46.840941],\n          [-112.011749, 46.839918],\n          [-112.010445, 46.83844],\n          [-112.009025, 46.83667],\n          [-112.007922, 46.83499],\n          [-112.007123, 46.833605],\n          [-112.006361, 46.832073],\n          [-112.005882, 46.830963],\n          [-112.003109, 46.824179],\n          [-112.002795, 46.823308],\n          [-112.001559, 46.820272],\n          [-112.001405, 46.819943],\n          [-112.001005, 46.818846],\n          [-112.000667, 46.817632],\n          [-112.000578, 46.816809],\n          [-112.000493, 46.815794],\n          [-112.000516, 46.814928],\n          [-112.000693, 46.813761],\n          [-112.001162, 46.812127],\n          [-112.001628, 46.811112],\n          [-112.002462, 46.809713],\n          [-112.003317, 46.808598],\n          [-112.004049, 46.80782],\n          [-112.005118, 46.806834],\n          [-112.006592, 46.805739],\n          [-112.028016, 46.792156],\n          [-112.029741, 46.790912],\n          [-112.030745, 46.79008],\n          [-112.031484, 46.78938],\n          [-112.032257, 46.788498],\n          [-112.033266, 46.787176],\n          [-112.033873, 46.786179],\n          [-112.034356, 46.785153],\n          [-112.03474, 46.784222],\n          [-112.035041, 46.783106],\n          [-112.035281, 46.78179],\n          [-112.035332, 46.780429],\n          [-112.035162, 46.778932],\n          [-112.034994, 46.7781],\n          [-112.034623, 46.77676],\n          [-112.031439, 46.767593],\n          [-112.030872, 46.766116],\n          [-112.03058, 46.765566],\n          [-112.0298, 46.76452],\n          [-112.029051, 46.763776],\n          [-112.027625, 46.762715],\n          [-112.021142, 46.759474],\n          [-112.019784, 46.758674],\n          [-112.018427, 46.757701],\n          [-112.017026, 46.756401],\n          [-112.01646, 46.75581],\n          [-112.015787, 46.754949],\n          [-112.015034, 46.753726],\n          [-112.014675, 46.752957],\n          [-112.014369, 46.752178],\n          [-112.014113, 46.751252],\n          [-112.013978, 46.7503],\n          [-112.013965, 46.748917],\n          [-112.01407, 46.747974],\n          [-112.014425, 46.74657],\n          [-112.017111, 46.737855],\n          [-112.017375, 46.736784],\n          [-112.017607, 46.735355],\n          [-112.017673, 46.734409],\n          [-112.017685, 46.733581],\n          [-112.017588, 46.732104],\n          [-112.017413, 46.730961],\n          [-112.016851, 46.728893],\n          [-112.016052, 46.726997],\n          [-112.015229, 46.725474],\n          [-112.014031, 46.723297],\n          [-112.013406, 46.721963],\n          [-112.012932, 46.720654],\n          [-112.012536, 46.719097],\n          [-112.012339, 46.717599],\n          [-112.012283, 46.716345],\n          [-112.012185, 46.707222],\n          [-112.012075, 46.70024],\n          [-112.011602, 46.660701],\n          [-112.011601, 46.660313],\n          [-112.011436, 46.648193],\n          [-112.011441, 46.648028],\n          [-112.011427, 46.646569],\n          [-112.011246, 46.631754],\n          [-112.011146, 46.621062],\n          [-112.011132, 46.619553],\n          [-112.01109, 46.616805],\n          [-112.011059, 46.614798],\n          [-112.011048, 46.61406],\n          [-112.011037, 46.613709],\n          [-112.010993, 46.613319],\n          [-112.010941, 46.613077],\n          [-112.010877, 46.612674],\n          [-112.010838, 46.612474],\n          [-112.010746, 46.61207],\n          [-112.01064, 46.611666],\n          [-112.010587, 46.611464],\n          [-112.010508, 46.611263],\n          [-112.010314, 46.610728],\n          [-112.010256, 46.610545],\n          [-112.010198, 46.610369],\n          [-112.009915, 46.609824],\n          [-112.009739, 46.609444],\n          [-112.009564, 46.609128],\n          [-112.009295, 46.608718],\n          [-112.006524, 46.603944],\n          [-112.003906, 46.599455],\n          [-112.002681, 46.597363],\n          [-112.001205, 46.594784],\n          [-112, 46.592799],\n          [-111.999632, 46.592286],\n          [-111.999301, 46.591861],\n          [-111.998522, 46.590983],\n          [-111.99828, 46.590699],\n          [-111.997972, 46.590398],\n          [-111.996867, 46.589396],\n          [-111.996488, 46.589096],\n          [-111.995735, 46.58854],\n          [-111.988743, 46.583855],\n          [-111.983795, 46.580551],\n          [-111.98049, 46.578347],\n          [-111.978312, 46.576892],\n          [-111.976196, 46.575478],\n          [-111.970612, 46.571744],\n          [-111.969019, 46.570651],\n          [-111.966637, 46.569071],\n          [-111.957631, 46.563066],\n          [-111.956867, 46.562459],\n          [-111.956078, 46.56178],\n          [-111.955528, 46.561278],\n          [-111.95503, 46.560765],\n          [-111.954464, 46.560133],\n          [-111.953992, 46.559508],\n          [-111.953623, 46.558994],\n          [-111.953365, 46.558587],\n          [-111.953022, 46.558003],\n          [-111.95261, 46.557224],\n          [-111.951443, 46.55468],\n          [-111.946695, 46.544203],\n          [-111.946304, 46.54331],\n          [-111.945744, 46.542172],\n          [-111.945185, 46.540831],\n          [-111.944611, 46.539567],\n          [-111.943999, 46.538252],\n          [-111.943392, 46.536869],\n          [-111.941186, 46.532081],\n          [-111.940903, 46.53142],\n          [-111.940559, 46.530629],\n          [-111.940379, 46.530109],\n          [-111.940293, 46.529684],\n          [-111.940268, 46.529241],\n          [-111.940319, 46.528857],\n          [-111.940422, 46.528432],\n          [-111.940568, 46.528025],\n          [-111.94074, 46.527676],\n          [-111.940971, 46.527322],\n          [-111.941246, 46.527003],\n          [-111.941667, 46.526619],\n          [-111.943134, 46.525497],\n          [-111.943589, 46.525125],\n          [-111.94401, 46.524718],\n          [-111.944344, 46.524346],\n          [-111.944662, 46.523974],\n          [-111.944902, 46.523625],\n          [-111.945151, 46.52323],\n          [-111.9454, 46.522775],\n          [-111.945606, 46.522326],\n          [-111.945744, 46.521966],\n          [-111.945855, 46.521511],\n          [-111.947984, 46.511742],\n          [-111.948095, 46.51137],\n          [-111.948361, 46.510661],\n          [-111.949408, 46.508074],\n          [-111.952344, 46.500837],\n          [-111.952541, 46.500393],\n          [-111.952825, 46.499944],\n          [-111.953168, 46.49946],\n          [-111.953494, 46.499105],\n          [-111.953932, 46.498775],\n          [-111.954764, 46.49819],\n          [-111.958575, 46.495909],\n          [-111.959245, 46.495501],\n          [-111.960052, 46.495017],\n          [-111.961021, 46.494414],\n          [-111.961871, 46.493912],\n          [-111.962729, 46.493415],\n          [-111.963579, 46.492825],\n          [-111.964025, 46.4925],\n          [-111.964661, 46.492015],\n          [-111.965124, 46.491625],\n          [-111.965656, 46.491123],\n          [-111.966369, 46.49042],\n          [-111.96709, 46.489651],\n          [-111.976325, 46.479522],\n          [-111.976891, 46.478848],\n          [-111.977312, 46.47834],\n          [-111.977733, 46.477808],\n          [-111.977973, 46.477465],\n          [-111.978127, 46.477211],\n          [-111.978282, 46.476974],\n          [-111.97884, 46.475928],\n          [-111.979217, 46.475042],\n          [-111.980033, 46.473044],\n          [-111.980271, 46.472374],\n          [-111.980435, 46.471976],\n          [-111.980677, 46.471349],\n          [-111.980952, 46.470648],\n          [-111.981239, 46.4699],\n          [-111.981493, 46.46921],\n          [-111.981736, 46.468592],\n          [-111.981874, 46.468256],\n          [-111.982316, 46.467018],\n          [-111.982732, 46.465939],\n          [-111.982851, 46.465572],\n          [-111.983251, 46.464294],\n          [-111.983315, 46.464025],\n          [-111.983475, 46.463313],\n          [-111.983818, 46.462054],\n          [-111.98424, 46.460487],\n          [-111.985346, 46.456259],\n          [-111.985844, 46.45432],\n          [-111.986814, 46.450701],\n          [-111.986994, 46.449938],\n          [-111.987251, 46.449004],\n          [-111.987543, 46.4483],\n          [-111.987809, 46.447709],\n          [-111.988255, 46.446833],\n          [-111.990024, 46.443882],\n          [-111.990719, 46.44254],\n          [-111.99283, 46.438169],\n          [-111.995886, 46.431816],\n          [-111.996143, 46.431165],\n          [-111.996341, 46.430644],\n          [-111.996598, 46.42984],\n          [-111.996753, 46.429213],\n          [-111.99689, 46.428609],\n          [-111.997405, 46.425385],\n          [-111.997642, 46.424314],\n          [-111.997932, 46.423545],\n          [-111.998107, 46.423114],\n          [-111.99835, 46.422586],\n          [-111.998575, 46.422164],\n          [-111.998884, 46.421653],\n          [-111.999228, 46.421145],\n          [-111.999447, 46.420848],\n          [-111.999923, 46.420267],\n          [-112.000156, 46.42],\n          [-112.000433, 46.41971],\n          [-112.00089, 46.419258],\n          [-112.001482, 46.418746],\n          [-112.002113, 46.418226],\n          [-112.00272, 46.417745],\n          [-112.002961, 46.417554],\n          [-112.003548, 46.417078],\n          [-112.004211, 46.41654],\n          [-112.004746, 46.416099],\n          [-112.005461, 46.41553],\n          [-112.005985, 46.415112],\n          [-112.006394, 46.414775],\n          [-112.006854, 46.414405],\n          [-112.007245, 46.4141],\n          [-112.00765, 46.413758],\n          [-112.00797, 46.413501],\n          [-112.008169, 46.413338],\n          [-112.008593, 46.412997],\n          [-112.009014, 46.412645],\n          [-112.009385, 46.412341],\n          [-112.009697, 46.412025],\n          [-112.010255, 46.411528],\n          [-112.010946, 46.410853],\n          [-112.011431, 46.410352],\n          [-112.011895, 46.409867],\n          [-112.012165, 46.409569],\n          [-112.012675, 46.408992],\n          [-112.013067, 46.408517],\n          [-112.013404, 46.408107],\n          [-112.013911, 46.407447],\n          [-112.014218, 46.407046],\n          [-112.014492, 46.406653],\n          [-112.015033, 46.405845],\n          [-112.01524, 46.405542],\n          [-112.015368, 46.405329],\n          [-112.015741, 46.40471],\n          [-112.015972, 46.404308],\n          [-112.016318, 46.403688],\n          [-112.016624, 46.403056],\n          [-112.01703, 46.402204],\n          [-112.017522, 46.401159],\n          [-112.017917, 46.400311],\n          [-112.019197, 46.397512],\n          [-112.019961, 46.395938],\n          [-112.020503, 46.394858],\n          [-112.020846, 46.394173],\n          [-112.021172, 46.393579],\n          [-112.021321, 46.393351],\n          [-112.021496, 46.393063],\n          [-112.021714, 46.392713],\n          [-112.021925, 46.392391],\n          [-112.022307, 46.391799],\n          [-112.022576, 46.391431],\n          [-112.02269, 46.391255],\n          [-112.022776, 46.391138],\n          [-112.023072, 46.390745],\n          [-112.023396, 46.390333],\n          [-112.023636, 46.390016],\n          [-112.02407, 46.389472],\n          [-112.02447, 46.388962],\n          [-112.025293, 46.387893],\n          [-112.025518, 46.387587],\n          [-112.025835, 46.387153],\n          [-112.02604, 46.386874],\n          [-112.026296, 46.386489],\n          [-112.026502, 46.386192],\n          [-112.026698, 46.385898],\n          [-112.027204, 46.385069],\n          [-112.027659, 46.384252],\n          [-112.027743, 46.384088],\n          [-112.0278, 46.383963],\n          [-112.02782, 46.383925],\n          [-112.027998, 46.383561],\n          [-112.028106, 46.383379],\n          [-112.028359, 46.382926],\n          [-112.028737, 46.382022],\n          [-112.029617, 46.379591],\n          [-112.030115, 46.378271],\n          [-112.030424, 46.377365],\n          [-112.030767, 46.376572],\n          [-112.031059, 46.375944],\n          [-112.033059, 46.372077],\n          [-112.033626, 46.37091],\n          [-112.033917, 46.370342],\n          [-112.034252, 46.369714],\n          [-112.034492, 46.369293],\n          [-112.03481, 46.368766],\n          [-112.035136, 46.368298],\n          [-112.035445, 46.367848],\n          [-112.03584, 46.367386],\n          [-112.036295, 46.366877],\n          [-112.036879, 46.366249],\n          [-112.043015, 46.359532],\n          [-112.043436, 46.359053],\n          [-112.043754, 46.358638],\n          [-112.044011, 46.358283],\n          [-112.044234, 46.357927],\n          [-112.044475, 46.357501],\n          [-112.044698, 46.357062],\n          [-112.044852, 46.356719],\n          [-112.044972, 46.356357],\n          [-112.045093, 46.355972],\n          [-112.045204, 46.355534],\n          [-112.045281, 46.355173],\n          [-112.04535, 46.354693],\n          [-112.045384, 46.354284],\n          [-112.045376, 46.353828],\n          [-112.045359, 46.353206],\n          [-112.045058, 46.350658],\n          [-112.045032, 46.350072],\n          [-112.045075, 46.349545],\n          [-112.045178, 46.349154],\n          [-112.045317, 46.348787],\n          [-112.045481, 46.348449],\n          [-112.045687, 46.348135],\n          [-112.04591, 46.347851],\n          [-112.046202, 46.347519],\n          [-112.048562, 46.345392],\n          [-112.048862, 46.34509],\n          [-112.049146, 46.34477],\n          [-112.04936, 46.344467],\n          [-112.04954, 46.344153],\n          [-112.049738, 46.343721],\n          [-112.049849, 46.343241],\n          [-112.049884, 46.343028],\n          [-112.049892, 46.342755],\n          [-112.049884, 46.3424],\n          [-112.049806, 46.341931],\n          [-112.049396, 46.34035],\n          [-112.049218, 46.339673],\n          [-112.049159, 46.33933],\n          [-112.049143, 46.339002],\n          [-112.049168, 46.338597],\n          [-112.049229, 46.338284],\n          [-112.049292, 46.338051],\n          [-112.049341, 46.337839],\n          [-112.049439, 46.337616],\n          [-112.049559, 46.337404],\n          [-112.0497, 46.337162],\n          [-112.049936, 46.33687],\n          [-112.05015, 46.336595],\n          [-112.054836, 46.331763],\n          [-112.055497, 46.33117],\n          [-112.055875, 46.33085],\n          [-112.056372, 46.33053],\n          [-112.05687, 46.330263],\n          [-112.057445, 46.330044],\n          [-112.058132, 46.329789],\n          [-112.060261, 46.329273],\n          [-112.060879, 46.329137],\n          [-112.061445, 46.328959],\n          [-112.061994, 46.328752],\n          [-112.062561, 46.32845],\n          [-112.06317, 46.3281],\n          [-112.063625, 46.327786],\n          [-112.064054, 46.327371],\n          [-112.064466, 46.326891],\n          [-112.06523, 46.325741],\n          [-112.065677, 46.325125],\n          [-112.066028, 46.324674],\n          [-112.06638, 46.324318],\n          [-112.066904, 46.323868],\n          [-112.067505, 46.323501],\n          [-112.06826, 46.323109],\n          [-112.069642, 46.322445],\n          [-112.070509, 46.322007],\n          [-112.071195, 46.321663],\n          [-112.071728, 46.321378],\n          [-112.07238, 46.320958],\n          [-112.073067, 46.320519],\n          [-112.073762, 46.320045],\n          [-112.074277, 46.319582],\n          [-112.074732, 46.319138],\n          [-112.075169, 46.318705],\n          [-112.075599, 46.318189],\n          [-112.076053, 46.317626],\n          [-112.076371, 46.317182],\n          [-112.076732, 46.316589],\n          [-112.077058, 46.315949],\n          [-112.077616, 46.31452],\n          [-112.077985, 46.313459],\n          [-112.078268, 46.312795],\n          [-112.078491, 46.31232],\n          [-112.0788, 46.311751],\n          [-112.079212, 46.31117],\n          [-112.079718, 46.310435],\n          [-112.0808, 46.308627],\n          [-112.081126, 46.30801],\n          [-112.081375, 46.307316],\n          [-112.081512, 46.306724],\n          [-112.081607, 46.306131],\n          [-112.081735, 46.304998],\n          [-112.081856, 46.304358],\n          [-112.082079, 46.303688],\n          [-112.082319, 46.303172],\n          [-112.082594, 46.302692],\n          [-112.082946, 46.302205],\n          [-112.083306, 46.301814],\n          [-112.083804, 46.301334],\n          [-112.08447, 46.300831],\n          [-112.085263, 46.300355],\n          [-112.086027, 46.299964],\n          [-112.089752, 46.298446],\n          [-112.090979, 46.297859],\n          [-112.091958, 46.297337],\n          [-112.092799, 46.296756],\n          [-112.093486, 46.296287],\n          [-112.094104, 46.295694],\n          [-112.09473, 46.295036],\n          [-112.095159, 46.294538],\n          [-112.09558, 46.293992],\n          [-112.09594, 46.293381],\n          [-112.096445, 46.292397],\n          [-112.096685, 46.291614],\n          [-112.09702, 46.290422],\n          [-112.097449, 46.288406],\n          [-112.097724, 46.287409],\n          [-112.098136, 46.286312],\n          [-112.099116, 46.284397],\n          [-112.099274, 46.284063],\n          [-112.10053, 46.281349],\n          [-112.101118, 46.280084],\n          [-112.102891, 46.276318],\n          [-112.104027, 46.273935],\n          [-112.104859, 46.272141],\n          [-112.105342, 46.271125],\n          [-112.106274, 46.269146],\n          [-112.107087, 46.267404],\n          [-112.111234, 46.258546],\n          [-112.112659, 46.255466],\n          [-112.114521, 46.251525],\n          [-112.114976, 46.250676],\n          [-112.115508, 46.249899],\n          [-112.115937, 46.249329],\n          [-112.116633, 46.248581],\n          [-112.117748, 46.247554],\n          [-112.11925, 46.246504],\n          [-112.12022, 46.245934],\n          [-112.120967, 46.245566],\n          [-112.121954, 46.245133],\n          [-112.124992, 46.244052],\n          [-112.13288, 46.241298],\n          [-112.133387, 46.24112],\n          [-112.138622, 46.239291],\n          [-112.145034, 46.237065],\n          [-112.146141, 46.236745],\n          [-112.147008, 46.236519],\n          [-112.147806, 46.236394],\n          [-112.148459, 46.236305],\n          [-112.149265, 46.236246],\n          [-112.150089, 46.236222],\n          [-112.151042, 46.236246],\n          [-112.151883, 46.236317],\n          [-112.152699, 46.236436],\n          [-112.153471, 46.236584],\n          [-112.154474, 46.236837],\n          [-112.15899, 46.238152],\n          [-112.160595, 46.238543],\n          [-112.162483, 46.238947],\n          [-112.163367, 46.23922],\n          [-112.164054, 46.239529],\n          [-112.164698, 46.239897],\n          [-112.165273, 46.24033],\n          [-112.166844, 46.241642],\n          [-112.167307, 46.241963],\n          [-112.1685, 46.242669],\n          [-112.169144, 46.243085],\n          [-112.169659, 46.24356],\n          [-112.170912, 46.244966],\n          [-112.171367, 46.245364],\n          [-112.172131, 46.245898],\n          [-112.173204, 46.246522],\n          [-112.174276, 46.247169],\n          [-112.174817, 46.24762],\n          [-112.175298, 46.24816],\n          [-112.175555, 46.248587],\n          [-112.17577, 46.248973],\n          [-112.175924, 46.249424],\n          [-112.176336, 46.250552],\n          [-112.176517, 46.25092],\n          [-112.17674, 46.251276],\n          [-112.176997, 46.251626],\n          [-112.177418, 46.252083],\n          [-112.177787, 46.252344],\n          [-112.178165, 46.252617],\n          [-112.180775, 46.254129],\n          [-112.181007, 46.254269],\n          [-112.183097, 46.255454],\n          [-112.183493, 46.255702],\n          [-112.184164, 46.256171],\n          [-112.184905, 46.256737],\n          [-112.185365, 46.257141],\n          [-112.185885, 46.257562],\n          [-112.186185, 46.2578],\n          [-112.186531, 46.258043],\n          [-112.186972, 46.258275],\n          [-112.187322, 46.258422],\n          [-112.187774, 46.258598],\n          [-112.188155, 46.258726],\n          [-112.188842, 46.25893],\n          [-112.190061, 46.259233],\n          [-112.194417, 46.260296],\n          [-112.194914, 46.260425],\n          [-112.197467, 46.261049],\n          [-112.198131, 46.261215],\n          [-112.198816, 46.261348],\n          [-112.200563, 46.261639],\n          [-112.2012, 46.261735],\n          [-112.201697, 46.261796],\n          [-112.202216, 46.261831],\n          [-112.202661, 46.261847],\n          [-112.203293, 46.261844],\n          [-112.203843, 46.26181],\n          [-112.204643, 46.261713],\n          [-112.205502, 46.261541],\n          [-112.206283, 46.261328],\n          [-112.207158, 46.260978],\n          [-112.20773, 46.260725],\n          [-112.208199, 46.260464],\n          [-112.209872, 46.259361],\n          [-112.210845, 46.258723],\n          [-112.211437, 46.258407],\n          [-112.21171, 46.258294],\n          [-112.211974, 46.258207],\n          [-112.212216, 46.258142],\n          [-112.212463, 46.258092],\n          [-112.212751, 46.258048],\n          [-112.213051, 46.258024],\n          [-112.213334, 46.258019],\n          [-112.213692, 46.258035],\n          [-112.213988, 46.258065],\n          [-112.214247, 46.258108],\n          [-112.214549, 46.258186],\n          [-112.21472, 46.258241],\n          [-112.214928, 46.258313],\n          [-112.21526, 46.258456],\n          [-112.215539, 46.258605],\n          [-112.215859, 46.258826],\n          [-112.216123, 46.259059],\n          [-112.216344, 46.259307],\n          [-112.216538, 46.259564],\n          [-112.217304, 46.260578],\n          [-112.217586, 46.260888],\n          [-112.217887, 46.26118],\n          [-112.218436, 46.261654],\n          [-112.219097, 46.262058],\n          [-112.219818, 46.262508],\n          [-112.220179, 46.262823],\n          [-112.220462, 46.263203],\n          [-112.220625, 46.263654],\n          [-112.220625, 46.264105],\n          [-112.220513, 46.26455],\n          [-112.220273, 46.264918],\n          [-112.21993, 46.265238],\n          [-112.219466, 46.265558],\n          [-112.218514, 46.266039],\n          [-112.218288, 46.266167],\n          [-112.218079, 46.266291],\n          [-112.217885, 46.266411],\n          [-112.217737, 46.266539],\n          [-112.217605, 46.266696],\n          [-112.217501, 46.266818],\n          [-112.217396, 46.266989],\n          [-112.21734, 46.267123],\n          [-112.217303, 46.267314],\n          [-112.217283, 46.267445],\n          [-112.217325, 46.267714],\n          [-112.217476, 46.26824],\n          [-112.217544, 46.268438],\n          [-112.217592, 46.268538],\n          [-112.217628, 46.268615],\n          [-112.217724, 46.268751],\n          [-112.217818, 46.268858],\n          [-112.217936, 46.268959],\n          [-112.21813, 46.269104],\n          [-112.218353, 46.26922],\n          [-112.218727, 46.26937],\n          [-112.219166, 46.269489],\n          [-112.219721, 46.269609],\n          [-112.220202, 46.269698],\n          [-112.220646, 46.269797],\n          [-112.220996, 46.2699],\n          [-112.22144, 46.27005],\n          [-112.222711, 46.270631],\n          [-112.223277, 46.270851],\n          [-112.22399, 46.271017],\n          [-112.224668, 46.271076],\n          [-112.225371, 46.270993],\n          [-112.227174, 46.270608],\n          [-112.227989, 46.270507],\n          [-112.22883, 46.270519],\n          [-112.229611, 46.270726],\n          [-112.232341, 46.271693],\n          [-112.232993, 46.27186],\n          [-112.233723, 46.271966],\n          [-112.234744, 46.271978],\n          [-112.239606, 46.271805],\n          [-112.242182, 46.271693],\n          [-112.246347, 46.271502],\n          [-112.246967, 46.271459],\n          [-112.247491, 46.271415],\n          [-112.247911, 46.271379],\n          [-112.248545, 46.271312],\n          [-112.249143, 46.271217],\n          [-112.250763, 46.270938],\n          [-112.251919, 46.270715],\n          [-112.254271, 46.270264],\n          [-112.255138, 46.270086],\n          [-112.255979, 46.269973],\n          [-112.256923, 46.269854],\n          [-112.257798, 46.269753],\n          [-112.258871, 46.269706],\n          [-112.259953, 46.269694],\n          [-112.260408, 46.269688],\n          [-112.260811, 46.269688],\n          [-112.265927, 46.269838],\n          [-112.266364, 46.269845],\n          [-112.268516, 46.269903],\n          [-112.26928, 46.269923],\n          [-112.269822, 46.269932],\n          [-112.270297, 46.269936],\n          [-112.270632, 46.269932],\n          [-112.271986, 46.269899],\n          [-112.272496, 46.269882],\n          [-112.272871, 46.269875],\n          [-112.273201, 46.26988],\n          [-112.273496, 46.269893],\n          [-112.273848, 46.269921],\n          [-112.274451, 46.269986],\n          [-112.275304, 46.270084],\n          [-112.275736, 46.270129],\n          [-112.276214, 46.270171],\n          [-112.276581, 46.270192],\n          [-112.276954, 46.270201],\n          [-112.277383, 46.270195],\n          [-112.277783, 46.270179],\n          [-112.278217, 46.270151],\n          [-112.278636, 46.270112],\n          [-112.27903, 46.270058],\n          [-112.279521, 46.269977],\n          [-112.280084, 46.269869],\n          [-112.280575, 46.269771],\n          [-112.281036, 46.269673],\n          [-112.281492, 46.269558],\n          [-112.281919, 46.269443],\n          [-112.282407, 46.269304],\n          [-112.28289, 46.269153],\n          [-112.283292, 46.269013],\n          [-112.283616, 46.26889],\n          [-112.283914, 46.268764],\n          [-112.284169, 46.268638],\n          [-112.284394, 46.268516],\n          [-112.284601, 46.268394],\n          [-112.284775, 46.268275],\n          [-112.284955, 46.268131],\n          [-112.285087, 46.268013],\n          [-112.285191, 46.267897],\n          [-112.285277, 46.267793],\n          [-112.285357, 46.267683],\n          [-112.28543, 46.267542],\n          [-112.285505, 46.267379],\n          [-112.285561, 46.267208],\n          [-112.285596, 46.267049],\n          [-112.28561, 46.266897],\n          [-112.285612, 46.266763],\n          [-112.285599, 46.266613],\n          [-112.285569, 46.266448],\n          [-112.285505, 46.266261],\n          [-112.28543, 46.266096],\n          [-112.285194, 46.265664],\n          [-112.285025, 46.265406],\n          [-112.284866, 46.265152],\n          [-112.284775, 46.264974],\n          [-112.284703, 46.264813],\n          [-112.284646, 46.264655],\n          [-112.284614, 46.264507],\n          [-112.284598, 46.264379],\n          [-112.284598, 46.26421],\n          [-112.284617, 46.264062],\n          [-112.284665, 46.263899],\n          [-112.284727, 46.263728],\n          [-112.284759, 46.263669],\n          [-112.284821, 46.263548],\n          [-112.284909, 46.263418],\n          [-112.284995, 46.263313],\n          [-112.285121, 46.263177],\n          [-112.285277, 46.263038],\n          [-112.285408, 46.262932],\n          [-112.285591, 46.262814],\n          [-112.285765, 46.262716],\n          [-112.285998, 46.262614],\n          [-112.286237, 46.262523],\n          [-112.286454, 46.262454],\n          [-112.286722, 46.262397],\n          [-112.286953, 46.262358],\n          [-112.287205, 46.262334],\n          [-112.287431, 46.262324],\n          [-112.287599, 46.262324],\n          [-112.287755, 46.262332],\n          [-112.287908, 46.262343],\n          [-112.28809, 46.262371],\n          [-112.288289, 46.262408],\n          [-112.288533, 46.262469],\n          [-112.28878, 46.262545],\n          [-112.289056, 46.262641],\n          [-112.28941, 46.262779],\n          [-112.292288, 46.263915],\n          [-112.295423, 46.265141],\n          [-112.295772, 46.265276],\n          [-112.296799, 46.265681],\n          [-112.297288, 46.265857],\n          [-112.29766, 46.26597],\n          [-112.297998, 46.266064],\n          [-112.298326, 46.266135],\n          [-112.298693, 46.266202],\n          [-112.29902, 46.266252],\n          [-112.299407, 46.266294],\n          [-112.299973, 46.26635],\n          [-112.301962, 46.266518],\n          [-112.303677, 46.266665],\n          [-112.30416, 46.266715],\n          [-112.304799, 46.266799],\n          [-112.305829, 46.266965],\n          [-112.307302, 46.26725],\n          [-112.307798, 46.267339],\n          [-112.308222, 46.267413],\n          [-112.308627, 46.267476],\n          [-112.308997, 46.267518],\n          [-112.309343, 46.267554],\n          [-112.309617, 46.267578],\n          [-112.309941, 46.267591],\n          [-112.310258, 46.267602],\n          [-112.310641, 46.267611],\n          [-112.310985, 46.267613],\n          [-112.311296, 46.267607],\n          [-112.311658, 46.267591],\n          [-112.312055, 46.267565],\n          [-112.312425, 46.267535],\n          [-112.312795, 46.267492],\n          [-112.313219, 46.267435],\n          [-112.313683, 46.267359],\n          [-112.31408, 46.267281],\n          [-112.314484, 46.267191],\n          [-112.314867, 46.26709],\n          [-112.315256, 46.26698],\n          [-112.315717, 46.266837],\n          [-112.316613, 46.266561],\n          [-112.317018, 46.266437],\n          [-112.317471, 46.266313],\n          [-112.317997, 46.266179],\n          [-112.318925, 46.265949],\n          [-112.320151, 46.265632],\n          [-112.321393, 46.265313],\n          [-112.325427, 46.26428],\n          [-112.326138, 46.264095],\n          [-112.326859, 46.263917],\n          [-112.327936, 46.263635],\n          [-112.330428, 46.263002],\n          [-112.333211, 46.262287],\n          [-112.334007, 46.262079],\n          [-112.335292, 46.261753],\n          [-112.335686, 46.261652],\n          [-112.336028, 46.261559],\n          [-112.33637, 46.261454],\n          [-112.33667, 46.261355],\n          [-112.336988, 46.261243],\n          [-112.337325, 46.261115],\n          [-112.33768, 46.260971],\n          [-112.338038, 46.260813],\n          [-112.338363, 46.260662],\n          [-112.338625, 46.26053],\n          [-112.338933, 46.260366],\n          [-112.340256, 46.259429],\n          [-112.341003, 46.258829],\n          [-112.341337, 46.25845],\n          [-112.341646, 46.258088],\n          [-112.342041, 46.257506],\n          [-112.342264, 46.257085],\n          [-112.342513, 46.256616],\n          [-112.342736, 46.256052],\n          [-112.343048, 46.25519],\n          [-112.343088, 46.254628],\n          [-112.343114, 46.25404],\n          [-112.342997, 46.253333],\n          [-112.342814, 46.252527],\n          [-112.342556, 46.25188],\n          [-112.341586, 46.249939],\n          [-112.341209, 46.248971],\n          [-112.340942, 46.248152],\n          [-112.340797, 46.247393],\n          [-112.340711, 46.246752],\n          [-112.340698, 46.245956],\n          [-112.340797, 46.24509],\n          [-112.340934, 46.2443],\n          [-112.341088, 46.243617],\n          [-112.341363, 46.242745],\n          [-112.343732, 46.236132],\n          [-112.343955, 46.235443],\n          [-112.344213, 46.23479],\n          [-112.34459, 46.234178],\n          [-112.345088, 46.233513],\n          [-112.346384, 46.231827],\n          [-112.346848, 46.231067],\n          [-112.347062, 46.230402],\n          [-112.347208, 46.229666],\n          [-112.34738, 46.228247],\n          [-112.347457, 46.227659],\n          [-112.347706, 46.22662],\n          [-112.348072, 46.225486],\n          [-112.348787, 46.223592],\n          [-112.349165, 46.22241],\n          [-112.349268, 46.221798],\n          [-112.349251, 46.221163],\n          [-112.348908, 46.218621],\n          [-112.348822, 46.218081],\n          [-112.348822, 46.217392],\n          [-112.348959, 46.216762],\n          [-112.34944, 46.215301],\n          [-112.349521, 46.214586],\n          [-112.349491, 46.214013],\n          [-112.349328, 46.213591],\n          [-112.349028, 46.213021],\n          [-112.348633, 46.212492],\n          [-112.348169, 46.211999],\n          [-112.34762, 46.211619],\n          [-112.346856, 46.211156],\n          [-112.345869, 46.21058],\n          [-112.3452, 46.210051],\n          [-112.344728, 46.209576],\n          [-112.343234, 46.207925],\n          [-112.342659, 46.207307],\n          [-112.341921, 46.206677],\n          [-112.340814, 46.205816],\n          [-112.34041, 46.205465],\n          [-112.340067, 46.205085],\n          [-112.339802, 46.204693],\n          [-112.339704, 46.204467],\n          [-112.339636, 46.204269],\n          [-112.339591, 46.204027],\n          [-112.339612, 46.20382],\n          [-112.339732, 46.203256],\n          [-112.340033, 46.20262],\n          [-112.340582, 46.201913],\n          [-112.341621, 46.200885],\n          [-112.342062, 46.200298],\n          [-112.342242, 46.199944],\n          [-112.342396, 46.199584],\n          [-112.342597, 46.199091],\n          [-112.342775, 46.198631],\n          [-112.343062, 46.198034],\n          [-112.343303, 46.197541],\n          [-112.343792, 46.196904],\n          [-112.344693, 46.196127],\n          [-112.345387, 46.19542],\n          [-112.345729, 46.194938],\n          [-112.345917, 46.194643],\n          [-112.346069, 46.194349],\n          [-112.346166, 46.194045],\n          [-112.346238, 46.193697],\n          [-112.34623, 46.193103],\n          [-112.345941, 46.190673],\n          [-112.345878, 46.189902],\n          [-112.345728, 46.189213],\n          [-112.345709, 46.188344],\n          [-112.345571, 46.187533],\n          [-112.345558, 46.186912],\n          [-112.345564, 46.185992],\n          [-112.345749, 46.183453],\n          [-112.346234, 46.177623],\n          [-112.346347, 46.176821],\n          [-112.346473, 46.176275],\n          [-112.34671, 46.175728],\n          [-112.347062, 46.17511],\n          [-112.347483, 46.174486],\n          [-112.34822, 46.173702],\n          [-112.349208, 46.17291],\n          [-112.3521, 46.171121],\n          [-112.352701, 46.170843],\n          [-112.353354, 46.170627],\n          [-112.354238, 46.170443],\n          [-112.355396, 46.170378],\n          [-112.356246, 46.170461],\n          [-112.358186, 46.170764],\n          [-112.359293, 46.170788],\n          [-112.360246, 46.170669],\n          [-112.361216, 46.170425],\n          [-112.362177, 46.170093],\n          [-112.362941, 46.16973],\n          [-112.363559, 46.169296],\n          [-112.364125, 46.168743],\n          [-112.364529, 46.168119],\n          [-112.365267, 46.167103],\n          [-112.365816, 46.166663],\n          [-112.3664, 46.166336],\n          [-112.367129, 46.166098],\n          [-112.367868, 46.165967],\n          [-112.368692, 46.165944],\n          [-112.371773, 46.166039],\n          [-112.372811, 46.166015],\n          [-112.37367, 46.165902],\n          [-112.374588, 46.165706],\n          [-112.375592, 46.165379],\n          [-112.376571, 46.164951],\n          [-112.377318, 46.164529],\n          [-112.378076, 46.163952],\n          [-112.378262, 46.163762],\n          [-112.378614, 46.163364],\n          [-112.378914, 46.162965],\n          [-112.379469, 46.162169],\n          [-112.382055, 46.158245],\n          [-112.384021, 46.155308],\n          [-112.385566, 46.152959],\n          [-112.387334, 46.150272],\n          [-112.388458, 46.14862],\n          [-112.389451, 46.147108],\n          [-112.391789, 46.143594],\n          [-112.398669, 46.133222],\n          [-112.400972, 46.129712],\n          [-112.4066, 46.121302],\n          [-112.407393, 46.120004],\n          [-112.408182, 46.118582],\n          [-112.408541, 46.117899],\n          [-112.409937, 46.114817],\n          [-112.411055, 46.112333],\n          [-112.412388, 46.109365],\n          [-112.413655, 46.106653],\n          [-112.414778, 46.10418],\n          [-112.415206, 46.103314],\n          [-112.415668, 46.102487],\n          [-112.415895, 46.102106],\n          [-112.416464, 46.101176],\n          [-112.417083, 46.100254],\n          [-112.418499, 46.098356],\n          [-112.418915, 46.09769],\n          [-112.419526, 46.096677],\n          [-112.420233, 46.095398],\n          [-112.422479, 46.091058],\n          [-112.424336, 46.087469],\n          [-112.429652, 46.0772],\n          [-112.429822, 46.076884],\n          [-112.431392, 46.07384],\n          [-112.436257, 46.064391],\n          [-112.436937, 46.063074],\n          [-112.438079, 46.061044],\n          [-112.438376, 46.060532],\n          [-112.438666, 46.060066],\n          [-112.43881, 46.05984],\n          [-112.439098, 46.05943],\n          [-112.43934, 46.059064],\n          [-112.439532, 46.058774],\n          [-112.440107, 46.058002],\n          [-112.44038, 46.05765],\n          [-112.441731, 46.056019],\n          [-112.443485, 46.053949],\n          [-112.447802, 46.048851],\n          [-112.45155, 46.044489],\n          [-112.452423, 46.043435],\n          [-112.452928, 46.042858],\n          [-112.453336, 46.042363],\n          [-112.453672, 46.041989],\n          [-112.454055, 46.041551],\n          [-112.454342, 46.04125],\n          [-112.454665, 46.040886],\n          [-112.456067, 46.039558],\n          [-112.457335, 46.038587],\n          [-112.457987, 46.038059],\n          [-112.458512, 46.037625],\n          [-112.458842, 46.037329],\n          [-112.459071, 46.03709],\n          [-112.459314, 46.036842],\n          [-112.459518, 46.03659],\n          [-112.459678, 46.03639],\n          [-112.4598, 46.036215],\n          [-112.459891, 46.036045],\n          [-112.460007, 46.03582],\n          [-112.460114, 46.03551],\n          [-112.460172, 46.035281],\n          [-112.460249, 46.034999],\n          [-112.460282, 46.034713],\n          [-112.460289, 46.034622],\n          [-112.460306, 46.034393],\n          [-112.46034, 46.034001],\n          [-112.460377, 46.033494],\n          [-112.460788, 46.024225],\n          [-112.460858, 46.022999],\n          [-112.461034, 46.021707],\n          [-112.461139, 46.019417],\n          [-112.461174, 46.018182],\n          [-112.461374, 46.013939],\n          [-112.461433, 46.012326],\n          [-112.461598, 46.009767],\n          [-112.46173, 46.007706],\n          [-112.461826, 46.006592],\n          [-112.461968, 46.00602],\n          [-112.462225, 46.00538],\n          [-112.462565, 46.004722],\n          [-112.463191, 46.004036],\n          [-112.464072, 46.003225],\n          [-112.465792, 46.001872],\n          [-112.466856, 46.001037],\n          [-112.469268, 45.999189],\n          [-112.469946, 45.998682],\n          [-112.470667, 45.998003],\n          [-112.47113, 45.997502],\n          [-112.47156, 45.996917],\n          [-112.471963, 45.99622],\n          [-112.473459, 45.993424],\n          [-112.474051, 45.992464],\n          [-112.474317, 45.992004],\n          [-112.475276, 45.990233],\n          [-112.475566, 45.989642],\n          [-112.476695, 45.987673],\n          [-112.477014, 45.987068],\n          [-112.477395, 45.986399],\n          [-112.477976, 45.985327],\n          [-112.478243, 45.984818],\n          [-112.478421, 45.98455],\n          [-112.478851, 45.983744],\n          [-112.479177, 45.983218],\n          [-112.479374, 45.982981],\n          [-112.479538, 45.982795],\n          [-112.47971, 45.982636],\n          [-112.479894, 45.982492],\n          [-112.480132, 45.982326],\n          [-112.48042, 45.982142],\n          [-112.480713, 45.981993],\n          [-112.481018, 45.981862],\n          [-112.481235, 45.981784],\n          [-112.481491, 45.981708],\n          [-112.481819, 45.981612],\n          [-112.482235, 45.981526],\n          [-112.482576, 45.981485],\n          [-112.482792, 45.981468],\n          [-112.483106, 45.981448],\n          [-112.484674, 45.981411],\n          [-112.485533, 45.981393],\n          [-112.486142, 45.981346],\n          [-112.486888, 45.981343],\n          [-112.488415, 45.981329],\n          [-112.48942, 45.981323],\n          [-112.489915, 45.981311],\n          [-112.490321, 45.981291],\n          [-112.491262, 45.981187],\n          [-112.492077, 45.981092],\n          [-112.492755, 45.980966],\n          [-112.49327, 45.980829],\n          [-112.494197, 45.980567],\n          [-112.495345, 45.9802],\n          [-112.496229, 45.979974],\n          [-112.496927, 45.979831],\n          [-112.497708, 45.979756],\n          [-112.4986, 45.979744],\n          [-112.499484, 45.979774],\n          [-112.500257, 45.979863],\n          [-112.501047, 45.980042],\n          [-112.501432, 45.980146],\n          [-112.501772, 45.980251],\n          [-112.502162, 45.980391],\n          [-112.502441, 45.980505],\n          [-112.502715, 45.980622],\n          [-112.503036, 45.980793],\n          [-112.503323, 45.980946],\n          [-112.503646, 45.981153],\n          [-112.503934, 45.981351],\n          [-112.504203, 45.981566],\n          [-112.504427, 45.981757],\n          [-112.504926, 45.982217],\n          [-112.505529, 45.982793],\n          [-112.505933, 45.983132],\n          [-112.506153, 45.983296],\n          [-112.506336, 45.983431],\n          [-112.506571, 45.983586],\n          [-112.506888, 45.983789],\n          [-112.507196, 45.983956],\n          [-112.507471, 45.984097],\n          [-112.507799, 45.984272],\n          [-112.508512, 45.98456],\n          [-112.508794, 45.984651],\n          [-112.50906, 45.984738],\n          [-112.509415, 45.984842],\n          [-112.509964, 45.984998],\n          [-112.512836, 45.985714],\n          [-112.514063, 45.986044],\n          [-112.515749, 45.986501],\n          [-112.516874, 45.986847],\n          [-112.529602, 45.991803],\n          [-112.530598, 45.992131],\n          [-112.531516, 45.992333],\n          [-112.5324, 45.992476],\n          [-112.533044, 45.992536],\n          [-112.533894, 45.992542],\n          [-112.538675, 45.992548],\n          [-112.539481, 45.992542],\n          [-112.544571, 45.992548],\n          [-112.54755, 45.9925],\n          [-112.549472, 45.992518],\n          [-112.552176, 45.992548],\n          [-112.553189, 45.992614],\n          [-112.554167, 45.992739],\n          [-112.555008, 45.992942],\n          [-112.559798, 45.994337],\n          [-112.560613, 45.994587],\n          [-112.561471, 45.994951],\n          [-112.562235, 45.995404],\n          [-112.562816, 45.995834],\n          [-112.563071, 45.996064],\n          [-112.563323, 45.996326],\n          [-112.563586, 45.996638],\n          [-112.563846, 45.996975],\n          [-112.564136, 45.997384],\n          [-112.564414, 45.997764],\n          [-112.565162, 45.998934],\n          [-112.565743, 45.999683],\n          [-112.566655, 46.000955],\n          [-112.567437, 46.001903],\n          [-112.56802, 46.002517],\n          [-112.568741, 46.003096],\n          [-112.569419, 46.003525],\n          [-112.570063, 46.003859],\n          [-112.570964, 46.004318],\n          [-112.571822, 46.004693],\n          [-112.572895, 46.005009],\n          [-112.573848, 46.00523],\n          [-112.574775, 46.005379],\n          [-112.575728, 46.005463],\n          [-112.577187, 46.005504],\n          [-112.577788, 46.005522],\n          [-112.582056, 46.005676],\n          [-112.594885, 46.006166],\n          [-112.604584, 46.006524],\n          [-112.605451, 46.006619],\n          [-112.607283, 46.006843],\n          [-112.610896, 46.007381],\n          [-112.611152, 46.005948],\n          [-112.61121, 46.005792],\n          [-112.611238, 46.005609],\n          [-112.608284, 46.004266],\n          [-112.607739, 46.003921],\n          [-112.607191, 46.003516],\n          [-112.606953, 46.003377],\n          [-112.606693, 46.003274],\n          [-112.606342, 46.003193],\n          [-112.606239, 46.00317],\n          [-112.604638, 46.002827],\n          [-112.603223, 46.002511],\n          [-112.603052, 46.002473],\n          [-112.60203, 46.002278],\n          [-112.601516, 46.002219],\n          [-112.601276, 46.00221],\n          [-112.600883, 46.002212],\n          [-112.600496, 46.00223],\n          [-112.600404, 46.002208],\n          [-112.60036, 46.002173],\n          [-112.600327, 46.002117],\n          [-112.600314, 46.002059],\n          [-112.600333, 46.001927],\n          [-112.600381, 46.001853],\n          [-112.60049, 46.001777],\n          [-112.600599, 46.001745],\n          [-112.600713, 46.001737],\n          [-112.600862, 46.001739],\n          [-112.601544, 46.001798],\n          [-112.601657, 46.001792],\n          [-112.601804, 46.001767],\n          [-112.601918, 46.001724],\n          [-112.602008, 46.001673],\n          [-112.602239, 46.001528],\n          [-112.602389, 46.001412],\n          [-112.602658, 46.001185],\n          [-112.60307, 46.000822],\n          [-112.603218, 46.000656],\n          [-112.603405, 46.000474],\n          [-112.60366, 46.000513],\n          [-112.603842, 46.000532],\n          [-112.604078, 46.000549],\n          [-112.604254, 46.000547],\n          [-112.605018, 46.00043],\n          [-112.605491, 46.000395],\n          [-112.605766, 46.000402],\n          [-112.606076, 46.000466],\n          [-112.606209, 46.00049],\n          [-112.606364, 46.000494],\n          [-112.606548, 46.000466],\n          [-112.607005, 46.000359],\n          [-112.607412, 46.000312],\n          [-112.611416, 46.000299],\n          [-112.611653, 46.000242],\n          [-112.611812, 46.000145],\n          [-112.611932, 45.999965],\n          [-112.611906, 45.993731],\n          [-112.611956, 45.990322],\n          [-112.611963, 45.987384],\n          [-112.611945, 45.986839],\n          [-112.611983, 45.986517],\n          [-112.612211, 45.985826],\n          [-112.612974, 45.983191],\n          [-112.613351, 45.982047],\n          [-112.613508, 45.981723],\n          [-112.613655, 45.98152],\n          [-112.613973, 45.981284],\n          [-112.61573, 45.980235],\n          [-112.61642, 45.979923],\n          [-112.617405, 45.979519],\n          [-112.618068, 45.979213],\n          [-112.618669, 45.978865],\n          [-112.620246, 45.977619],\n          [-112.620586, 45.977289],\n          [-112.621106, 45.976592],\n          [-112.622154, 45.975079],\n          [-112.622235, 45.974699],\n          [-112.622281, 45.973317],\n          [-112.622078, 45.970234],\n          [-112.619831, 45.970225],\n          [-112.614288, 45.970203]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-111.927805, 48.932435],\n          [-112.181396, 48.886392]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-112.181396, 48.886392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"lineStringIndex\": 0,\n        \"segmentIndex\": 1185,\n        \"totalDistance\": 303.639629,\n        \"lineDistance\": 303.639629,\n        \"segmentDistance\": 0.867249,\n        \"pointDistance\": 19.22738,\n        \"dist\": 19.22738,\n        \"multiFeatureIndex\": 0,\n        \"location\": 303.639629,\n        \"index\": 1185,\n        \"marker-color\": \"#F0F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-111.927805, 48.932435]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { along } from \"@turf/along\";\nimport { distance } from \"@turf/distance\";\nimport { truncate } from \"@turf/truncate\";\nimport { length } from \"@turf/length\";\nimport {\n  lineString,\n  multiLineString,\n  point,\n  featureCollection,\n  round,\n  degreesToRadians,\n} from \"@turf/helpers\";\nimport { nearestPointOnLine } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-nearest-point-on-line\", (t) => {\n  for (const { name, filename, geojson } of fixtures) {\n    const [line, point] = geojson.features;\n    const onLine = nearestPointOnLine(line, point);\n    onLine.geometry.coordinates[0] = round(onLine.geometry.coordinates[0], 6);\n    onLine.geometry.coordinates[1] = round(onLine.geometry.coordinates[1], 6);\n    onLine.properties.totalDistance = round(onLine.properties.totalDistance, 6);\n    onLine.properties.lineDistance = round(onLine.properties.lineDistance, 6);\n    onLine.properties.segmentDistance = round(\n      onLine.properties.segmentDistance,\n      6\n    );\n    onLine.properties.pointDistance = round(onLine.properties.pointDistance, 6);\n    // deprecated properties START\n    onLine.properties.dist = round(onLine.properties.dist, 6);\n    onLine.properties.location = round(onLine.properties.location, 6);\n    // deprecated properties END\n    onLine.properties[\"marker-color\"] = \"#F0F\";\n    const between = lineString(\n      [onLine.geometry.coordinates, point.geometry.coordinates],\n      { stroke: \"#F00\", \"stroke-width\": 6 }\n    );\n    const results = truncate(featureCollection([line, between, point, onLine]));\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEqual(results, loadJsonFileSync(directories.out + filename), name);\n  }\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line - throws error if invalid arguments\", (t) => {\n  t.throws(() => {\n    nearestPointOnLine(undefined, undefined);\n  });\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line - first point\", (t) => {\n  const line = lineString([\n    [-122.457175, 37.720033],\n    [-122.457175, 37.718242],\n  ]);\n  const pt = point([-122.457175, 37.720033]);\n\n  const snapped = truncate(nearestPointOnLine(line, pt));\n\n  t.deepEqual(\n    pt.geometry.coordinates,\n    snapped.geometry.coordinates,\n    \"pt on start does not move\"\n  );\n  t.equal(\n    Number(snapped.properties.totalDistance.toFixed(6)),\n    0,\n    \"properties.totalDistance\"\n  );\n\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line - points behind first point\", (t) => {\n  const line = lineString([\n    [-122.457175, 37.720033],\n    [-122.457175, 37.718242],\n  ]);\n  const first = point(line.geometry.coordinates[0]);\n  const pts = [\n    point([-122.457175, 37.720093]),\n    point([-122.457175, 37.820093]),\n    point([-122.457165, 37.720093]),\n    point([-122.455165, 37.720093]),\n  ];\n  const expectedLocation = [0, 0, 0, 0];\n\n  pts.forEach((pt) => {\n    const snapped = truncate(nearestPointOnLine(line, pt));\n    t.deepEqual(\n      snapped.geometry.coordinates,\n      first.geometry.coordinates,\n      \"pt behind start moves to first vertex\"\n    );\n    expectedLocation.push(Number(snapped.properties.totalDistance.toFixed(6)));\n  });\n\n  const filepath =\n    directories.out + \"expectedLocation - points behind first point.json\";\n  if (process.env.REGEN) writeJsonFileSync(filepath, expectedLocation);\n  t.deepEqual(\n    loadJsonFileSync(filepath),\n    expectedLocation,\n    \"properties.totalDistance\"\n  );\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line - points in front of last point\", (t) => {\n  const line = lineString([\n    [-122.456161, 37.721259],\n    [-122.457175, 37.720033],\n    [-122.457175, 37.718242],\n  ]);\n  const last = point(\n    line.geometry.coordinates[line.geometry.coordinates.length - 1]\n  );\n  const pts = [\n    point([-122.45696, 37.71814]),\n    point([-122.457363, 37.718132]),\n    point([-122.457309, 37.717979]),\n    point([-122.45718, 37.717045]),\n  ];\n  const expectedLocation: number[] = [];\n\n  pts.forEach((pt) => {\n    const snapped = truncate(nearestPointOnLine(line, pt));\n    t.deepEqual(\n      snapped.geometry.coordinates,\n      last.geometry.coordinates,\n      \"pt behind start moves to last vertex\"\n    );\n    expectedLocation.push(Number(snapped.properties.totalDistance.toFixed(6)));\n  });\n\n  const filepath =\n    directories.out + \"expectedLocation - points in front of last point.json\";\n  if (process.env.REGEN) writeJsonFileSync(filepath, expectedLocation);\n  t.deepEqual(\n    loadJsonFileSync(filepath),\n    expectedLocation,\n    \"properties.totalDistance\"\n  );\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line - points on joints\", (t) => {\n  const lines = [\n    lineString([\n      [-122.456161, 37.721259],\n      [-122.457175, 37.720033],\n      [-122.457175, 37.718242],\n    ]),\n    lineString([\n      [26.279296, 31.728167],\n      [21.796875, 32.694865],\n      [18.808593, 29.993002],\n      [12.919921, 33.137551],\n      [10.195312, 35.603718],\n      [4.921875, 36.527294],\n      [-1.669921, 36.527294],\n      [-5.449218, 34.741612],\n      [-8.789062, 32.990235],\n    ]),\n    lineString([\n      [-0.109198, 51.522042],\n      [-0.10923, 51.521942],\n      [-0.109165, 51.521862],\n      [-0.109047, 51.521775],\n      [-0.108865, 51.521601],\n      [-0.108747, 51.521381],\n      [-0.108554, 51.520687],\n      [-0.108436, 51.520279],\n      [-0.108393, 51.519952],\n      [-0.108178, 51.519578],\n      [-0.108146, 51.519285],\n      [-0.107899, 51.518624],\n      [-0.107599, 51.517782],\n    ]),\n  ];\n  const expectedLocation: number[] = [];\n\n  lines.forEach((line, i) => {\n    line.geometry.coordinates\n      .map((coord) => {\n        return point(coord);\n      })\n      .forEach((pt, j) => {\n        const snapped = truncate(nearestPointOnLine(line, pt));\n        t.deepEqual(\n          snapped.geometry.coordinates,\n          pt.geometry.coordinates,\n          \"pt on joint stayed in place\"\n        );\n        if (!expectedLocation[i]) expectedLocation[i] = [];\n        expectedLocation[i][j] = Number(\n          snapped.properties.totalDistance.toFixed(6)\n        );\n      });\n  });\n\n  const filepath = directories.out + \"expectedLocation - points on joints.json\";\n  if (process.env.REGEN) writeJsonFileSync(filepath, expectedLocation);\n  t.deepEqual(\n    expectedLocation,\n    loadJsonFileSync(filepath),\n    \"properties.totalDistance\"\n  );\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line - points on top of line\", (t) => {\n  const line = lineString([\n    [-0.109198, 51.522042],\n    [-0.10923, 51.521942],\n    [-0.109165, 51.521862],\n    [-0.109047, 51.521775],\n    [-0.108865, 51.521601],\n    [-0.108747, 51.521381],\n    [-0.108554, 51.520687],\n    [-0.108436, 51.520279],\n    [-0.108393, 51.519952],\n    [-0.108178, 51.519578],\n    [-0.108146, 51.519285],\n    [-0.107899, 51.518624],\n    [-0.107599, 51.517782],\n  ]);\n  const expectedLocation = [];\n\n  const dist = length(line, { units: \"miles\" });\n  const increment = dist / 10;\n\n  for (let i = 0; i < 10; i++) {\n    const pt = along(line, increment * i, { units: \"miles\" });\n    const snapped = nearestPointOnLine(line, pt, { units: \"miles\" });\n    const shift = distance(pt, snapped, { units: \"miles\" });\n    t.true(shift < 0.000001, \"pt did not shift far\");\n    expectedLocation.push(Number(snapped.properties.totalDistance.toFixed(6)));\n  }\n\n  const filepath =\n    directories.out + \"expectedLocation - points on top of line.json\";\n  if (process.env.REGEN) writeJsonFileSync(filepath, expectedLocation);\n  t.deepEqual(\n    expectedLocation,\n    loadJsonFileSync(filepath),\n    \"properties.totalDistance\"\n  );\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line - point along line\", (t) => {\n  const line = lineString([\n    [-122.457175, 37.720033],\n    [-122.457175, 37.718242],\n  ]);\n\n  const pt = along(line, 0.019, { units: \"miles\" });\n  const snapped = nearestPointOnLine(line, pt);\n  const shift = distance(pt, snapped, { units: \"miles\" });\n\n  t.true(shift < 0.00001, \"pt did not shift far\");\n\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line - points on sides of lines\", (t) => {\n  const line = lineString([\n    [-122.456161, 37.721259],\n    [-122.457175, 37.718242],\n  ]);\n  const first = line.geometry.coordinates[0];\n  const last = line.geometry.coordinates[line.geometry.coordinates.length - 1];\n  const pts = [\n    point([-122.457025, 37.71881]),\n    point([-122.457336, 37.719235]),\n    point([-122.456864, 37.72027]),\n    point([-122.45652, 37.720635]),\n  ];\n\n  pts.forEach((pt) => {\n    const snapped = nearestPointOnLine(line, pt);\n    t.notDeepEqual(\n      snapped.geometry.coordinates,\n      first,\n      \"pt did not snap to first vertex\"\n    );\n    t.notDeepEqual(\n      snapped.geometry.coordinates,\n      last,\n      \"pt did not snap to last vertex\"\n    );\n  });\n\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line - segmentIndex and pointDistance\", (t) => {\n  const line = lineString([\n    [-92.090492, 41.102897],\n    [-92.191085, 41.079868],\n    [-92.228507, 41.056055],\n    [-92.237091, 41.008143],\n    [-92.225761, 40.966937],\n    [-92.15023, 40.936858],\n    [-92.112464, 40.977565],\n    [-92.062683, 41.034564],\n    [-92.100791, 41.040002],\n  ]);\n  const pt = point([-92.110576, 41.040649]);\n  const snapped = truncate(nearestPointOnLine(line, pt));\n\n  t.equal(snapped.properties.segmentIndex, 8, \"properties.segmentIndex\");\n  t.equal(\n    Number(snapped.properties.pointDistance.toFixed(6)),\n    0.823802,\n    \"properties.pointDistance\"\n  );\n  t.deepEqual(\n    snapped.geometry.coordinates,\n    [-92.100791, 41.040002],\n    \"coordinates\"\n  );\n\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line -- Issue #691\", (t) => {\n  const line1 = lineString([\n    [7, 50],\n    [8, 50],\n    [9, 50],\n  ]);\n  const pointAlong = along(line1, 10);\n  const { totalDistance } = nearestPointOnLine(line1, pointAlong).properties;\n\n  t.false(isNaN(totalDistance));\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line -- Geometry Support\", (t) => {\n  const pt = point([7, 55]);\n  const line = lineString([\n    [7, 50],\n    [8, 50],\n    [9, 50],\n  ]);\n  const multiLine = multiLineString([\n    [\n      [7, 50],\n      [8, 50],\n      [9, 50],\n    ],\n    [\n      [17, 30],\n      [4, 30],\n      [2, 30],\n    ],\n  ]);\n  t.assert(nearestPointOnLine(line.geometry, pt), \"line Geometry\");\n  t.assert(nearestPointOnLine(multiLine.geometry, pt), \"multiLine Geometry\");\n  t.assert(nearestPointOnLine(line, pt.geometry), \"point Geometry\");\n  t.assert(\n    nearestPointOnLine(line, pt.geometry.coordinates),\n    \"point Coordinates\"\n  );\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line -- lineStringIndex\", (t) => {\n  const pt = point([4, 30]);\n  const multiLine = multiLineString([\n    [\n      [7, 50],\n      [8, 50],\n      [9, 50],\n    ],\n    [\n      [17, 30],\n      [4, 30],\n      [2, 30],\n    ],\n  ]);\n  t.equal(\n    nearestPointOnLine(multiLine.geometry, pt).properties.lineStringIndex,\n    1,\n    \"properties.lineStringIndex\"\n  );\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line -- issue 2753\", (t) => {\n  const multiLine = multiLineString([\n    [\n      [-122.3125, 47.6632],\n      [-122.3102, 47.6646],\n    ],\n    [\n      [-122.3116, 47.6623],\n      [-122.3091, 47.6636],\n    ],\n  ]);\n\n  const ptA = point([-122.3106, 47.6638], { name: \"A\" });\n  const ptB = point([-122.3102, 47.6634], { name: \"B\" });\n\n  const nearestToA = nearestPointOnLine(multiLine, ptA, { units: \"meters\" });\n  const nearestToB = nearestPointOnLine(multiLine, ptB, { units: \"meters\" });\n\n  t.equal(\n    Number(nearestToA.properties.lineDistance.toFixed(6)),\n    150.296465,\n    \"nearestToA lineDistance\"\n  );\n  t.equal(\n    Number(nearestToB.properties.lineDistance.toFixed(6)),\n    157.738215,\n    \"nearestToB lineDistance\"\n  );\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line -- issue 1514\", (t) => {\n  const pt = point([-40.01, 56]);\n  const line = lineString([\n    [-40, 50],\n    [-40, 60],\n  ]);\n\n  const nearest = nearestPointOnLine(line, pt, { units: \"meters\" });\n\n  t.deepEqual(\n    truncate(nearest, { precision: 8 }).geometry.coordinates,\n    [-40, 56.0000004],\n    \"nearest point should be [-40, 56.0000004]\"\n  );\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line -- issue 965\", (t) => {\n  const pt = point([-1.75, 50.02876666663333]);\n  const line = lineString([\n    [-76.42916666666666, 36.967333333333336],\n    [-76.43083333333334, 36.96516666666667],\n    [-76.43033333333334, 36.962833333333336],\n    [-76.416, 36.95466666666667],\n    [-76.4075, 36.953833333333336],\n    [-76.3555, 36.959],\n    [-76.35083333333333, 36.96083333333333],\n    [-76.3405, 36.96783333333333],\n    [-76.29766666666667, 37.00066666666667],\n    [-76.25, 37.00966666666667],\n    [-76.015, 36.95],\n    [-75.975, 36.94166666666667],\n    [-75.92166666666667, 36.916666666666664],\n    [-75.87, 36.87166666666667],\n    [-75.78083333333333, 36.82666666666667],\n    [-75.76333333333334, 36.81],\n    [-75.64433333333334, 36.81],\n    [-2.75, 49.81666666666667],\n    [0.9866666666666667, 50.49333333333333],\n    [1.335, 50.68],\n    [1.4849999999999999, 50.89833333333333],\n    [1.7516666666666667, 51.10333333333333],\n    [2.1666666666666665, 51.25666666666667],\n    [2.5, 51.36666666666667],\n    [2.71, 51.36666666666667],\n    [2.8116666666666665, 51.42333333333333],\n    [2.881666666666667, 51.42166666666667],\n    [2.965, 51.415],\n    [3.046666666666667, 51.413333333333334],\n    [3.1066666666666665, 51.39833333333333],\n    [3.25, 51.41],\n    [3.3033333333333332, 51.406666666666666],\n    [3.3333333333333335, 51.406666666666666],\n    [3.36, 51.40833333333333],\n    [3.408333333333333, 51.4075],\n    [3.6, 51.43],\n    [3.6466666666666665, 51.43966666666667],\n    [3.6683333333333334, 51.43866666666667],\n    [3.71, 51.415333333333336],\n    [3.711666666666667, 51.39083333333333],\n    [3.720833333333333, 51.37833333333333],\n    [3.751666666666667, 51.365],\n    [3.8133333333333335, 51.346666666666664],\n    [3.8466666666666667, 51.345],\n    [3.888333333333333, 51.354166666666664],\n    [3.9283333333333332, 51.37083333333333],\n    [3.9466666666666668, 51.384166666666665],\n    [3.9783333333333335, 51.435],\n    [3.9966666666666666, 51.4375],\n    [4.015, 51.43333333333333],\n    [4.03, 51.4225],\n    [4.035, 51.39],\n    [4.045, 51.37833333333333],\n    [4.069166666666667, 51.37166666666667],\n    [4.101666666666667, 51.36866666666667],\n    [4.133333333333334, 51.37166666666667],\n    [4.147, 51.37416666666667],\n    [4.181333333333333, 51.39666666666667],\n    [4.190666666666667, 51.39833333333333],\n    [4.200833333333334, 51.39833333333333],\n    [4.2091666666666665, 51.39416666666666],\n    [4.221333333333333, 51.36533333333333],\n    [4.2396666666666665, 51.355],\n    [4.261666666666667, 51.348333333333336],\n    [4.275, 51.34466666666667],\n    [4.293333333333333, 51.343333333333334],\n    [4.2988333333333335, 51.34166666666667],\n    [4.308333333333334, 51.325],\n    [4.314666666666667, 51.329],\n    [4.316666666666666, 51.32633333333333],\n  ]);\n\n  const nearest = nearestPointOnLine(line, pt, { units: \"meters\" });\n\n  t.deepEqual(\n    truncate(nearest, { precision: 8 }).geometry.coordinates,\n    [-1.74267971, 50.01283081],\n    \"nearest point should be [-1.74267971, 50.01283081]\"\n  );\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line -- issue 2808 redundant point support\", (t) => {\n  // include redundant points in line\n  const line1 = lineString([\n    [10.57846, 49.8463959],\n    [10.57846, 49.8468386],\n    [10.57846, 49.8468386],\n    [10.57846, 49.8468386],\n    [10.57846, 49.8472814],\n    [10.57846, 49.8472814],\n  ]);\n  const thePoint = point([10.57846, 49.8468386]);\n\n  const nearest = nearestPointOnLine(line1, thePoint); // should not throw\n  t.equal(nearest.properties.pointDistance, 0, \"redundant point support\");\n\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line -- duplicate points on line string shouldn't break the function.\", (t) => {\n  // @jonmiles\n  const line = lineString([\n    [-80.191793, 25.885611],\n    [-80.191793, 25.885611],\n    [-80.191543, 25.885874],\n  ]);\n  const userPoint = point([-80.191762, 25.885587]);\n  const nearest = nearestPointOnLine(line, userPoint, { units: \"meters\" });\n  t.equal(nearest.properties.pointDistance > 4, true, \"pointDistance be > 4\");\n  t.equal(nearest.properties.totalDistance, 0, \"totalDistance be 0\");\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line -- issue 2934 correct endpoint chosen when in opposite hemisphere\", (t) => {\n  // create a long line where the southern end point should be chosen, but the\n  // northern endpoint is closer to the projected great circles\n  const line = lineString([\n    [25, 88],\n    [25, -70],\n  ]);\n  const pt = point([-45, -88]);\n  const nearest = nearestPointOnLine(line, pt);\n\n  t.deepEqual(\n    truncate(nearest, { precision: 8 }).geometry.coordinates,\n    [25, -70],\n    \"nearest point is in the Southern Hemisphere\"\n  );\n\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line -- correctly reports external intersection for large arcs\", (t) => {\n  // create a test case where the arc is > 2Pi and the closest intersection\n  // point is far from the arc - this case was failing due to an angular\n  // comparison only working for small arcs; this test case checks this\n  // regression\n  const line = lineString([\n    [25, 80],\n    [25, -70],\n  ]);\n  const pt = point([-88, 13]);\n  const nearest = nearestPointOnLine(line, pt);\n\n  t.deepEqual(\n    nearest.geometry.coordinates,\n    [25, 80],\n    \"nearest point is at the northern end\"\n  );\n\n  t.end();\n});\n\ntest(\"turf-nearest-point-on-line -- issue 2939 nearestPointOnSegment handles tiny segments\", (t) => {\n  // create a test case where the line segment passed is small enough such that\n  // a cross product used to generate its normal in nearestPointOnSegment ends\n  // up as [0, 0, 0] but large enough so that the two points are not ===\n  //\n  // In v7.2.0 this test case was failing in browser (Chrome 141.0) but\n  // succeeding on Node (v22.20.0) due to a bit difference in the cosine\n  // implementation. To reproduce the same effect in Node, we monkey patch\n  // Math.cos to temporarily return the browser value as it was too difficult to\n  // find a repro case in node. This monkey patch version fails on v7.2.0 but\n  // passes with degenerate point fixes.\n\n  const lngA = 35.000102519989014;\n  const lngB = 35.00010251998902;\n  const line = lineString([\n    [lngA, 32.00010141921075],\n    [lngB, 32.00010141921075],\n  ]);\n\n  // WARN: Override cos function to give specific results for this test\n  const originalCos = Math.cos;\n  Math.cos = (x) => {\n    // The cosine of lngA gives a different result in the tested browsers than\n    // it does in node, therefore capturing here for this test run only.\n    if (x === degreesToRadians(lngA)) {\n      return originalCos(degreesToRadians(lngB));\n    } else {\n      return originalCos(x);\n    }\n  };\n\n  const pt = point([35.0005, 32.0005]);\n  const nearest = nearestPointOnLine(line, pt);\n\n  // WARN: Reset cos function\n  Math.cos = originalCos;\n\n  t.deepEqual(\n    nearest.geometry.coordinates,\n    [35.00010251998902, 32.00010141921075],\n    \"nearest point should be the end point of the line string\"\n  );\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-on-line/types.ts",
    "content": "import { nearestPointOnLine } from \"./index.js\";\nimport { point, lineString, multiLineString } from \"@turf/helpers\";\n\nconst pt = point([1.5, 1.5]);\nconst line = lineString([\n  [0, 0],\n  [1, 1],\n]);\nconst multiLine = multiLineString([\n  [\n    [0, 0],\n    [1, 1],\n    [2, 2],\n    [0, 0],\n  ],\n]);\n\n// All combinations of parameters\nnearestPointOnLine(line, pt);\nnearestPointOnLine(multiLine, pt);\nnearestPointOnLine(line.geometry, pt);\nnearestPointOnLine(multiLine.geometry, pt);\nnearestPointOnLine(line, pt, { units: \"miles\" });\n\n// Output can be used as Input\nconst output = nearestPointOnLine(line, pt);\nnearestPointOnLine(line, output);\n\n// Extra properties being generated from module\noutput.properties.dist;\noutput.properties.multiFeatureIndex;\noutput.properties.index;\noutput.properties.location;\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/README.md",
    "content": "# @turf/nearest-point-to-line\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## nearestPointToLine\n\nReturns the closest [point][1], of a [collection][2] of points,\nto a [line][3]. The returned point has a `dist` property indicating its distance to the line.\n\n### Parameters\n\n*   `points` **([FeatureCollection][2] | [GeometryCollection][4]<[Point][1]>)** Point Collection\n*   `line` **([Feature][5] | [Geometry][6]<[LineString][3]>)** Line Feature\n*   `options` **[Object][7]?** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** unit of the output distance property. Supports all valid Turf [Units][8].\n        (eg: degrees, radians, miles, or kilometers) (optional, default `'kilometers'`)\n    *   `options.properties` **[Object][7]** Translate Properties to Point (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar pt1 = turf.point([0, 0]);\nvar pt2 = turf.point([0.5, 0.5]);\nvar points = turf.featureCollection([pt1, pt2]);\nvar line = turf.lineString([[1,1], [-1,1]]);\n\nvar nearest = turf.nearestPointToLine(points, line);\n\n//addToMap\nvar addToMap = [nearest, line];\n```\n\nReturns **[Feature][5]<[Point][1]>** the closest point\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.8\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[8]: https://turfjs.org/docs/api/types/Units\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/nearest-point-to-line\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { nearestPointToLine } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n * fiji: 2.973ms\n * on-line: 0.758ms\n * one: 0.549ms\n * resolute: 0.349ms\n * two: 0.358ms\n *\n * fiji x 36,409 ops/sec ±4.14% (69 runs sampled)\n * on-line x 14,044 ops/sec ±4.92% (69 runs sampled)\n * one x 65,604 ops/sec ±11.55% (64 runs sampled)\n * resolute x 44,962 ops/sec ±6.76% (67 runs sampled)\n * two x 42,690 ops/sec ±2.34% (76 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-nearest-point-to-line\");\nglob\n  .sync(path.join(__dirname, \"test\", \"in\", \"*.geojson\"))\n  .forEach((filepath) => {\n    const { name } = path.parse(filepath);\n    const geojson = loadJsonFileSync(filepath);\n    const [points, line] = geojson.features;\n    console.time(name);\n    nearestPointToLine(points, line);\n    console.timeEnd(name);\n    suite.add(name, () => nearestPointToLine(points, line));\n  });\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/index.ts",
    "content": "import {\n  Feature,\n  FeatureCollection,\n  GeometryCollection,\n  LineString,\n  Point,\n  GeoJsonProperties,\n} from \"geojson\";\nimport { Units } from \"@turf/helpers\";\nimport { getType } from \"@turf/invariant\";\nimport { featureEach, geomEach } from \"@turf/meta\";\nimport { pointToLineDistance } from \"@turf/point-to-line-distance\";\n\n/**\n * Returns the closest {@link Point|point}, of a {@link FeatureCollection|collection} of points,\n * to a {@link LineString|line}. The returned point has a `dist` property indicating its distance to the line.\n *\n * @function\n * @param {FeatureCollection|GeometryCollection<Point>} points Point Collection\n * @param {Feature|Geometry<LineString>} line Line Feature\n * @param {Object} [options] Optional parameters\n * @param {Units} [options.units='kilometers'] unit of the output distance property. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.\n * (eg: degrees, radians, miles, or kilometers)\n * @param {Object} [options.properties={}] Translate Properties to Point\n * @returns {Feature<Point>} the closest point\n * @example\n * var pt1 = turf.point([0, 0]);\n * var pt2 = turf.point([0.5, 0.5]);\n * var points = turf.featureCollection([pt1, pt2]);\n * var line = turf.lineString([[1,1], [-1,1]]);\n *\n * var nearest = turf.nearestPointToLine(points, line);\n *\n * //addToMap\n * var addToMap = [nearest, line];\n */\nfunction nearestPointToLine<P = { dist: number; [key: string]: any }>(\n  points:\n    | FeatureCollection<Point>\n    | Feature<GeometryCollection>\n    | GeometryCollection,\n  line: Feature<LineString> | LineString,\n  options: {\n    units?: Units;\n    properties?: GeoJsonProperties;\n  } = {}\n): Feature<Point, P> {\n  const units = options.units;\n  const properties = options.properties || {};\n\n  // validation\n  const pts = normalize(points);\n  if (!pts.features.length) {\n    throw new Error(\"points must contain features\");\n  }\n\n  if (!line) {\n    throw new Error(\"line is required\");\n  }\n  if (getType(line) !== \"LineString\") {\n    throw new Error(\"line must be a LineString\");\n  }\n\n  let dist = Infinity;\n  let pt: any = null;\n\n  featureEach(pts, (point) => {\n    const d = pointToLineDistance(point, line, { units });\n    if (d < dist) {\n      dist = d;\n      pt = point;\n    }\n  });\n  /*\n   * Translate Properties to final Point, priorities:\n   * 1. options.properties\n   * 2. inherent Point properties\n   * 3. dist custom properties created by NearestPointToLine\n   */\n  if (pt) {\n    pt.properties = { ...{ dist }, ...pt.properties, ...properties };\n  }\n  return pt;\n}\n\n/**\n * Convert Collection to FeatureCollection\n *\n * @private\n * @param {FeatureCollection|GeometryCollection} points Points\n * @returns {FeatureCollection<Point>} points\n */\nfunction normalize(points: any): FeatureCollection<Point> {\n  const features: any[] = [];\n  const type = points.geometry ? points.geometry.type : points.type;\n  switch (type) {\n    case \"GeometryCollection\":\n      geomEach(points, (geom) => {\n        if (geom.type === \"Point\") {\n          features.push({ type: \"Feature\", properties: {}, geometry: geom });\n        }\n      });\n      return { type: \"FeatureCollection\", features };\n    case \"FeatureCollection\":\n      points.features = points.features.filter((feature: any) => {\n        return feature.geometry.type === \"Point\";\n      });\n      return points;\n    default:\n      throw new Error(\"points must be a Point Collection\");\n  }\n}\n\nexport { nearestPointToLine };\nexport default nearestPointToLine;\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/package.json",
    "content": "{\n  \"name\": \"@turf/nearest-point-to-line\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Returns the closest point, of a collection of points, to a line.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Stefano Borghi <@stebogit>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"gis\",\n    \"near\",\n    \"nearest-point-to-line\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/circle\": \"workspace:*\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/object-assign\": \"^4.0.33\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@turf/point-to-line-distance\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/test/in/fiji.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"GeometryCollection\",\n        \"geometries\": [\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [180.60699462890625, -16.62303335009946]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [181.0986328125, -17.027898881942694]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [179.10186767578125, -17.413546114374437]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [180.516357421875, -17.287709050621917]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [179.37103271484375, -16.691447830122993]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [180.25817871093747, -16.95435146120393]\n          }\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [179.68139648437497, -16.607241925191516],\n          [180.6427001953125, -16.935960102864705],\n          [179.58251953125, -17.07253857905758],\n          [180.29937744140625, -17.460712710429785]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/test/in/on-line.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"GeometryCollection\",\n        \"geometries\": [\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-23.62060546875, 15.050905707724771]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-22.813110351562496, 16.093320185359257]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-23.1646728515625, 15.220589019578128]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-24.4061279296875, 14.966013251567164]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-22.93670654296875, 16.759837823776632]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-24.3182373046875, 16.609873919524187]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-24.98291015625, 16.867633616803836]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-25.191650390625, 17.056784609942554]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-22.818603515625, 15.31597593426845]\n          }\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-24.10400390625, 13.864747046142286],\n          [-24.049072265625, 15.739388446649146],\n          [-23.016357421875, 14.82799134735208],\n          [-22.818603515625, 15.31597593426845],\n          [-22.3077392578125, 16.399200837347113],\n          [-23.510742187499996, 16.409739933377747],\n          [-24.4500732421875, 17.528820674552627]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/test/in/one.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"miles\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"GeometryCollection\",\n        \"geometries\": [\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [29.7509765625, 17.5602465032949]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [28.388671875, 18.323240460443397]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [29.619140624999996, 19.228176737766262]\n          }\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [27.015380859374996, 15.008463695004872],\n          [29.168701171875, 17.256236314156425],\n          [32.003173828125, 16.36230951024085],\n          [33.2666015625, 18.999802829053262]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/test/in/resolute.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"GeometryCollection\",\n        \"geometries\": [\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-94.04296874999999, 75.24186616026972]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-75.1025390625, 74.66001636880338]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-87.2314453125, 75.50815837230884]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-95.8447265625, 71.80141030136785]\n          }\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-88.06640625, 75.397779424116],\n          [-104.6337890625, 72.69883881004748],\n          [-91.4501953125, 72.99690914812648],\n          [-89.1650390625, 71.71888229713917]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/test/in/segment.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"miles\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"GeometryCollection\",\n        \"geometries\": [\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [27.26806640625, 14.243086862716888]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [28.388671875, 18.323240460443397]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [29.619140624999996, 19.228176737766262]\n          }\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [27.015380859374996, 15.008463695004872],\n          [29.168701171875, 17.256236314156425]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/test/in/two.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"GeometryCollection\",\n        \"geometries\": [\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-32.7392578125, 28.76765910569123]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-36.25488281249999, 23.36242859340884]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-38.0126953125, 26.194876675795218]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-39.90234375, 27.059125784374068]\n          }\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-45.791015625, 23.96617587126503],\n          [-42.0556640625, 27.332735136859146],\n          [-41.572265625, 23.40276490540795],\n          [-36.474609375, 28.844673680771795],\n          [-43.1103515625, 29.267232865200878]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/test/out/fiji.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"GeometryCollection\",\n        \"geometries\": [\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [180.60699462890625, -16.62303335009946]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [181.0986328125, -17.027898881942694]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [179.10186767578125, -17.413546114374437]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [180.516357421875, -17.287709050621917]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [179.37103271484375, -16.691447830122993]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [180.25817871093747, -16.95435146120393]\n          }\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dist\": 3.504198,\n        \"marker-color\": \"#F00\",\n        \"marker-size\": \"large\",\n        \"marker-symbol\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [180.25817871093747, -16.95435146120393]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [179.68139648437497, -16.607241925191516],\n          [180.6427001953125, -16.935960102864705],\n          [179.58251953125, -17.07253857905758],\n          [180.29937744140625, -17.460712710429785]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [180.258179, -16.922837],\n            [180.25495, -16.922989],\n            [180.251752, -16.923443],\n            [180.248617, -16.924194],\n            [180.245573, -16.925236],\n            [180.24265, -16.926558],\n            [180.239878, -16.928148],\n            [180.237281, -16.92999],\n            [180.234885, -16.932066],\n            [180.232714, -16.934358],\n            [180.230788, -16.936841],\n            [180.229125, -16.939494],\n            [180.227743, -16.942289],\n            [180.226653, -16.945201],\n            [180.225867, -16.948201],\n            [180.225392, -16.95126],\n            [180.225233, -16.954349],\n            [180.225391, -16.957438],\n            [180.225865, -16.960497],\n            [180.22665, -16.963497],\n            [180.227739, -16.966409],\n            [180.229121, -16.969205],\n            [180.230783, -16.971858],\n            [180.232708, -16.974342],\n            [180.23488, -16.976634],\n            [180.237275, -16.978711],\n            [180.239872, -16.980554],\n            [180.242646, -16.982144],\n            [180.245569, -16.983466],\n            [180.248613, -16.984508],\n            [180.25175, -16.98526],\n            [180.254949, -16.985714],\n            [180.258179, -16.985865],\n            [180.261409, -16.985714],\n            [180.264607, -16.98526],\n            [180.267744, -16.984508],\n            [180.270789, -16.983466],\n            [180.273712, -16.982144],\n            [180.276485, -16.980554],\n            [180.279082, -16.978711],\n            [180.281478, -16.976634],\n            [180.283649, -16.974342],\n            [180.285575, -16.971858],\n            [180.287237, -16.969205],\n            [180.288619, -16.966409],\n            [180.289707, -16.963497],\n            [180.290493, -16.960497],\n            [180.290966, -16.957438],\n            [180.291125, -16.954349],\n            [180.290965, -16.95126],\n            [180.29049, -16.948201],\n            [180.289704, -16.945201],\n            [180.288615, -16.942289],\n            [180.287232, -16.939494],\n            [180.28557, -16.936841],\n            [180.283644, -16.934358],\n            [180.281472, -16.932066],\n            [180.279077, -16.92999],\n            [180.27648, -16.928148],\n            [180.273707, -16.926558],\n            [180.270785, -16.925236],\n            [180.267741, -16.924194],\n            [180.264605, -16.923443],\n            [180.261407, -16.922989],\n            [180.258179, -16.922837]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/test/out/on-line.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"GeometryCollection\",\n        \"geometries\": [\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-23.62060546875, 15.050905707724771]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-22.813110351562496, 16.093320185359257]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-23.1646728515625, 15.220589019578128]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-24.4061279296875, 14.966013251567164]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-22.93670654296875, 16.759837823776632]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-24.3182373046875, 16.609873919524187]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-24.98291015625, 16.867633616803836]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-25.191650390625, 17.056784609942554]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-22.818603515625, 15.31597593426845]\n          }\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dist\": 0,\n        \"marker-color\": \"#F00\",\n        \"marker-size\": \"large\",\n        \"marker-symbol\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-22.818603515625, 15.31597593426845]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-24.10400390625, 13.864747046142286],\n          [-24.049072265625, 15.739388446649146],\n          [-23.016357421875, 14.82799134735208],\n          [-22.818603515625, 15.31597593426845],\n          [-22.3077392578125, 16.399200837347113],\n          [-23.510742187499996, 16.409739933377747],\n          [-24.4500732421875, 17.528820674552627]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-22.818604, 15.324969],\n            [-22.819518, 15.324926],\n            [-22.820423, 15.324796],\n            [-22.82131, 15.324582],\n            [-22.822172, 15.324285],\n            [-22.822999, 15.323907],\n            [-22.823784, 15.323453],\n            [-22.824519, 15.322928],\n            [-22.825197, 15.322335],\n            [-22.825812, 15.321681],\n            [-22.826357, 15.320972],\n            [-22.826827, 15.320215],\n            [-22.827218, 15.319417],\n            [-22.827526, 15.318586],\n            [-22.827749, 15.31773],\n            [-22.827883, 15.316857],\n            [-22.827928, 15.315976],\n            [-22.827883, 15.315094],\n            [-22.827749, 15.314221],\n            [-22.827526, 15.313365],\n            [-22.827218, 15.312534],\n            [-22.826827, 15.311736],\n            [-22.826356, 15.310979],\n            [-22.825811, 15.310271],\n            [-22.825197, 15.309617],\n            [-22.824519, 15.309024],\n            [-22.823784, 15.308498],\n            [-22.822999, 15.308045],\n            [-22.822172, 15.307667],\n            [-22.82131, 15.30737],\n            [-22.820423, 15.307156],\n            [-22.819517, 15.307026],\n            [-22.818604, 15.306983],\n            [-22.81769, 15.307026],\n            [-22.816784, 15.307156],\n            [-22.815897, 15.30737],\n            [-22.815035, 15.307667],\n            [-22.814208, 15.308045],\n            [-22.813423, 15.308498],\n            [-22.812688, 15.309024],\n            [-22.81201, 15.309617],\n            [-22.811396, 15.310271],\n            [-22.810851, 15.310979],\n            [-22.81038, 15.311736],\n            [-22.809989, 15.312534],\n            [-22.809681, 15.313365],\n            [-22.809458, 15.314221],\n            [-22.809324, 15.315094],\n            [-22.809279, 15.315976],\n            [-22.809324, 15.316857],\n            [-22.809458, 15.31773],\n            [-22.809681, 15.318586],\n            [-22.809989, 15.319417],\n            [-22.81038, 15.320215],\n            [-22.81085, 15.320972],\n            [-22.811395, 15.321681],\n            [-22.81201, 15.322335],\n            [-22.812688, 15.322928],\n            [-22.813423, 15.323453],\n            [-22.814208, 15.323907],\n            [-22.815035, 15.324285],\n            [-22.815897, 15.324582],\n            [-22.816784, 15.324796],\n            [-22.81769, 15.324926],\n            [-22.818604, 15.324969]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/test/out/one.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"GeometryCollection\",\n        \"geometries\": [\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [29.7509765625, 17.5602465032949]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [28.388671875, 18.323240460443397]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [29.619140624999996, 19.228176737766262]\n          }\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dist\": 31.791167,\n        \"marker-color\": \"#F00\",\n        \"marker-size\": \"large\",\n        \"marker-symbol\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [29.7509765625, 17.5602465032949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [27.015380859374996, 15.008463695004872],\n          [29.168701171875, 17.256236314156425],\n          [32.003173828125, 16.36230951024085],\n          [33.2666015625, 18.999802829053262]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [29.750977, 18.020365],\n            [29.703552, 18.018144],\n            [29.656587, 18.011502],\n            [29.610539, 18.000503],\n            [29.565852, 17.985254],\n            [29.522962, 17.965904],\n            [29.482282, 17.942639],\n            [29.444207, 17.915686],\n            [29.409104, 17.885305],\n            [29.37731, 17.851791],\n            [29.349133, 17.815468],\n            [29.324842, 17.776688],\n            [29.30467, 17.735825],\n            [29.288809, 17.693275],\n            [29.277408, 17.649448],\n            [29.270574, 17.604766],\n            [29.26837, 17.559662],\n            [29.270813, 17.514569],\n            [29.277877, 17.469921],\n            [29.28949, 17.426147],\n            [29.305538, 17.38367],\n            [29.325862, 17.342896],\n            [29.350266, 17.304217],\n            [29.378513, 17.268003],\n            [29.41033, 17.234603],\n            [29.44541, 17.204337],\n            [29.483415, 17.177493],\n            [29.523982, 17.154329],\n            [29.56672, 17.135068],\n            [29.61122, 17.119892],\n            [29.657057, 17.108947],\n            [29.703791, 17.102338],\n            [29.750977, 17.100128],\n            [29.798162, 17.102338],\n            [29.844897, 17.108947],\n            [29.890733, 17.119892],\n            [29.935233, 17.135068],\n            [29.977971, 17.154329],\n            [30.018538, 17.177493],\n            [30.056543, 17.204337],\n            [30.091623, 17.234603],\n            [30.12344, 17.268003],\n            [30.151687, 17.304217],\n            [30.176091, 17.342896],\n            [30.196416, 17.38367],\n            [30.212463, 17.426147],\n            [30.224076, 17.469921],\n            [30.23114, 17.514569],\n            [30.233584, 17.559662],\n            [30.231379, 17.604766],\n            [30.224546, 17.649448],\n            [30.213145, 17.693275],\n            [30.197283, 17.735825],\n            [30.177111, 17.776688],\n            [30.15282, 17.815468],\n            [30.124643, 17.851791],\n            [30.09285, 17.885305],\n            [30.057746, 17.915686],\n            [30.019671, 17.942639],\n            [29.978991, 17.965904],\n            [29.936101, 17.985254],\n            [29.891415, 18.000503],\n            [29.845366, 18.011502],\n            [29.798401, 18.018144],\n            [29.750977, 18.020365]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/test/out/resolute.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"GeometryCollection\",\n        \"geometries\": [\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-94.04296874999999, 75.24186616026972]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-75.1025390625, 74.66001636880338]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-87.2314453125, 75.50815837230884]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-95.8447265625, 71.80141030136785]\n          }\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dist\": 26.35231,\n        \"marker-color\": \"#F00\",\n        \"marker-size\": \"large\",\n        \"marker-symbol\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-87.2314453125, 75.50815837230884]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-88.06640625, 75.397779424116],\n          [-104.6337890625, 72.69883881004748],\n          [-91.4501953125, 72.99690914812648],\n          [-89.1650390625, 71.71888229713917]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-87.231445, 75.74515],\n            [-87.325775, 75.74399],\n            [-87.419152, 75.740523],\n            [-87.510634, 75.734783],\n            [-87.599301, 75.726828],\n            [-87.684266, 75.716739],\n            [-87.764681, 75.704616],\n            [-87.839753, 75.690582],\n            [-87.908747, 75.674778],\n            [-87.970996, 75.657359],\n            [-88.025906, 75.638501],\n            [-88.072961, 75.618389],\n            [-88.111732, 75.597222],\n            [-88.141873, 75.575209],\n            [-88.16313, 75.552563],\n            [-88.175335, 75.529507],\n            [-88.178414, 75.506262],\n            [-88.172379, 75.483054],\n            [-88.157331, 75.460105],\n            [-88.133455, 75.437635],\n            [-88.101017, 75.415857],\n            [-88.060362, 75.394978],\n            [-88.011905, 75.375194],\n            [-87.956132, 75.356691],\n            [-87.893592, 75.339643],\n            [-87.824888, 75.324208],\n            [-87.750677, 75.31053],\n            [-87.671662, 75.298735],\n            [-87.588583, 75.288933],\n            [-87.502212, 75.281214],\n            [-87.413351, 75.275649],\n            [-87.322818, 75.27229],\n            [-87.231445, 75.271167],\n            [-87.140073, 75.27229],\n            [-87.04954, 75.275649],\n            [-86.960678, 75.281214],\n            [-86.874308, 75.288933],\n            [-86.791229, 75.298735],\n            [-86.712213, 75.31053],\n            [-86.638003, 75.324208],\n            [-86.569299, 75.339643],\n            [-86.506758, 75.356691],\n            [-86.450986, 75.375194],\n            [-86.402529, 75.394978],\n            [-86.361873, 75.415857],\n            [-86.329435, 75.437635],\n            [-86.305559, 75.460105],\n            [-86.290511, 75.483054],\n            [-86.284477, 75.506262],\n            [-86.287555, 75.529507],\n            [-86.299761, 75.552563],\n            [-86.321017, 75.575209],\n            [-86.351158, 75.597222],\n            [-86.389929, 75.618389],\n            [-86.436985, 75.638501],\n            [-86.491894, 75.657359],\n            [-86.554143, 75.674778],\n            [-86.623137, 75.690582],\n            [-86.69821, 75.704616],\n            [-86.778625, 75.716739],\n            [-86.863589, 75.726828],\n            [-86.952256, 75.734783],\n            [-87.043739, 75.740523],\n            [-87.137115, 75.74399],\n            [-87.231445, 75.74515]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/test/out/segment.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"GeometryCollection\",\n        \"geometries\": [\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [27.26806640625, 14.243086862716888]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [28.388671875, 18.323240460443397]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [29.619140624999996, 19.228176737766262]\n          }\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dist\": 55.51516,\n        \"marker-color\": \"#F00\",\n        \"marker-size\": \"large\",\n        \"marker-symbol\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [27.26806640625, 14.243086862716888]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [27.015380859374996, 15.008463695004872],\n          [29.168701171875, 17.256236314156425]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [27.268066, 15.046567],\n            [27.18652, 15.042684],\n            [27.105767, 15.031072],\n            [27.026595, 15.011846],\n            [26.949772, 14.985192],\n            [26.876046, 14.951369],\n            [26.806133, 14.910706],\n            [26.740708, 14.8636],\n            [26.680405, 14.810507],\n            [26.625805, 14.751943],\n            [26.577432, 14.688476],\n            [26.535751, 14.620721],\n            [26.501157, 14.549334],\n            [26.473978, 14.475007],\n            [26.454469, 14.398456],\n            [26.442812, 14.320422],\n            [26.439108, 14.241657],\n            [26.443387, 14.162919],\n            [26.455599, 14.084966],\n            [26.475617, 14.008548],\n            [26.503243, 13.934398],\n            [26.538204, 13.863228],\n            [26.580159, 13.795721],\n            [26.628699, 13.732522],\n            [26.683356, 13.674237],\n            [26.743602, 13.621423],\n            [26.808859, 13.574585],\n            [26.8785, 13.534169],\n            [26.951859, 13.500563],\n            [27.028234, 13.474087],\n            [27.106897, 13.454993],\n            [27.187096, 13.443463],\n            [27.268066, 13.439607],\n            [27.349037, 13.443463],\n            [27.429236, 13.454993],\n            [27.507899, 13.474087],\n            [27.584274, 13.500563],\n            [27.657633, 13.534169],\n            [27.727274, 13.574585],\n            [27.792531, 13.621423],\n            [27.852777, 13.674237],\n            [27.907434, 13.732522],\n            [27.955974, 13.795721],\n            [27.997929, 13.863228],\n            [28.03289, 13.934398],\n            [28.060516, 14.008548],\n            [28.080534, 14.084966],\n            [28.092746, 14.162919],\n            [28.097024, 14.241657],\n            [28.093321, 14.320422],\n            [28.081663, 14.398456],\n            [28.062155, 14.475007],\n            [28.034976, 14.549334],\n            [28.000382, 14.620721],\n            [27.9587, 14.688476],\n            [27.910328, 14.751943],\n            [27.855728, 14.810507],\n            [27.795425, 14.8636],\n            [27.73, 14.910706],\n            [27.660086, 14.951369],\n            [27.586361, 14.985192],\n            [27.509538, 15.011846],\n            [27.430366, 15.031072],\n            [27.349613, 15.042684],\n            [27.268066, 15.046567]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/test/out/two.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"GeometryCollection\",\n        \"geometries\": [\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-32.7392578125, 28.76765910569123]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-36.25488281249999, 23.36242859340884]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-38.0126953125, 26.194876675795218]\n          },\n          {\n            \"type\": \"Point\",\n            \"coordinates\": [-39.90234375, 27.059125784374068]\n          }\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"dist\": 78.009454,\n        \"marker-color\": \"#F00\",\n        \"marker-size\": \"large\",\n        \"marker-symbol\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-38.0126953125, 26.194876675795218]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-45.791015625, 23.96617587126503],\n          [-42.0556640625, 27.332735136859146],\n          [-41.572265625, 23.40276490540795],\n          [-36.474609375, 28.844673680771795],\n          [-43.1103515625, 29.267232865200878]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.012695, 26.896432],\n            [-38.089796, 26.893033],\n            [-38.166141, 26.88287],\n            [-38.240981, 26.866042],\n            [-38.313584, 26.842715],\n            [-38.38324, 26.813117],\n            [-38.449269, 26.777538],\n            [-38.51103, 26.736326],\n            [-38.567924, 26.689884],\n            [-38.619402, 26.638664],\n            [-38.66497, 26.583167],\n            [-38.704193, 26.523933],\n            [-38.7367, 26.461537],\n            [-38.762187, 26.396584],\n            [-38.78042, 26.329705],\n            [-38.791234, 26.261546],\n            [-38.794539, 26.192764],\n            [-38.790315, 26.124023],\n            [-38.778618, 26.055983],\n            [-38.759571, 25.989299],\n            [-38.73337, 25.92461],\n            [-38.700277, 25.862534],\n            [-38.660619, 25.803664],\n            [-38.614783, 25.748564],\n            [-38.563214, 25.697757],\n            [-38.506411, 25.651726],\n            [-38.444918, 25.610911],\n            [-38.379324, 25.575697],\n            [-38.310254, 25.546419],\n            [-38.238365, 25.523355],\n            [-38.164339, 25.506723],\n            [-38.088877, 25.49668],\n            [-38.012695, 25.493322],\n            [-37.936513, 25.49668],\n            [-37.861052, 25.506723],\n            [-37.787026, 25.523355],\n            [-37.715137, 25.546419],\n            [-37.646067, 25.575697],\n            [-37.580473, 25.610911],\n            [-37.51898, 25.651726],\n            [-37.462176, 25.697757],\n            [-37.410608, 25.748564],\n            [-37.364772, 25.803664],\n            [-37.325114, 25.862534],\n            [-37.292021, 25.92461],\n            [-37.26582, 25.989299],\n            [-37.246773, 26.055983],\n            [-37.235075, 26.124023],\n            [-37.230852, 26.192764],\n            [-37.234157, 26.261546],\n            [-37.244971, 26.329705],\n            [-37.263203, 26.396584],\n            [-37.288691, 26.461537],\n            [-37.321198, 26.523933],\n            [-37.360421, 26.583167],\n            [-37.405989, 26.638664],\n            [-37.457466, 26.689884],\n            [-37.51436, 26.736326],\n            [-37.576121, 26.777538],\n            [-37.642151, 26.813117],\n            [-37.711806, 26.842715],\n            [-37.784409, 26.866042],\n            [-37.85925, 26.88287],\n            [-37.935594, 26.893033],\n            [-38.012695, 26.896432]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { circle } from \"@turf/circle\";\nimport { truncate } from \"@turf/truncate\";\nimport {\n  geometryCollection,\n  featureCollection,\n  point,\n  lineString,\n  round,\n} from \"@turf/helpers\";\nimport { nearestPointToLine } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-nearest-point-to-line\", (t) => {\n  fixtures.forEach((fixture) => {\n    const filename = fixture.filename;\n    const name = fixture.name;\n    const geojson = fixture.geojson;\n    const points = geojson.features[0];\n    const line = geojson.features[1];\n    const units = (geojson.properties || {}).units;\n\n    const nearest = nearestPointToLine(points, line, { units: units });\n    const distance = round(nearest.properties.dist, 6);\n    nearest.properties.dist = distance;\n    nearest.properties = Object.assign(nearest.properties, {\n      \"marker-color\": \"#F00\",\n      \"marker-size\": \"large\",\n      \"marker-symbol\": \"star\",\n    });\n    const distanceCircle = truncate(\n      circle(nearest, distance || 1, {\n        units: units,\n        properties: { fill: \"#F00\" },\n      })\n    );\n    const results = featureCollection([points, nearest, line, distanceCircle]);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEqual(results, loadJsonFileSync(directories.out + filename), name);\n  });\n  t.end();\n});\n\ntest(\"turf-nearest-point-to-line -- throws\", (t) => {\n  const points = featureCollection([point([0, 0]), point([0, 1])]);\n  const line = lineString([\n    [1, 1],\n    [-1, 1],\n  ]);\n\n  // Handled by Typescript\n  // t.throws(() => nearestPointToLine(null, line), /points is required/, 'missing points');\n  // t.throws(() => nearestPointToLine(points, null), /line is required/, 'missing line');\n  // t.throws(() => nearestPointToLine(points, line, 'invalid'), /options is invalid/, 'options is invalid');\n\n  t.throws(\n    () => nearestPointToLine(points, line, { units: \"invalid\" }),\n    /units is invalid/,\n    \"invalid units\"\n  );\n  t.throws(\n    () => nearestPointToLine(points, points),\n    /line must be a LineString/,\n    \"invalid line\"\n  );\n  t.throws(\n    () => nearestPointToLine(line, line),\n    /points must be a Point Collection/,\n    \"invalid points\"\n  );\n\n  t.end();\n});\n\ntest(\"turf-nearest-point-to-line -- Geometry\", (t) => {\n  const points = featureCollection([point([0, 0]), point([0, 1])]);\n  const geomPoints = geometryCollection([\n    point([0, 0]).geometry,\n    point([0, 1]).geometry,\n  ]);\n  const line = lineString([\n    [1, 1],\n    [-1, 1],\n  ]);\n\n  t.assert(nearestPointToLine(points, line.geometry));\n  t.assert(nearestPointToLine(geomPoints, line.geometry));\n  t.end();\n});\n\ntest(\"turf-nearest-point-to-line -- Empty FeatureCollection\", (t) => {\n  const points = featureCollection([]);\n  const line = lineString([\n    [1, 1],\n    [-1, 1],\n  ]);\n\n  t.throws(\n    () => nearestPointToLine(points, line),\n    /points must contain features/,\n    \"points must contain features\"\n  );\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-nearest-point-to-line/types.ts",
    "content": "import {\n  geometryCollection,\n  featureCollection,\n  point,\n  lineString,\n} from \"@turf/helpers\";\nimport { nearestPointToLine } from \"./index.js\";\n\nconst points = featureCollection([point([0, 0]), point([0.5, 0.5])]);\nconst line = lineString([\n  [1, 1],\n  [-1, 1],\n]);\n\nconst nearest = nearestPointToLine<{ foo: string; dist: number }>(\n  points,\n  line,\n  { properties: { foo: \"bar\" } }\n);\nnearest.properties.foo;\nnearest.properties.dist;\n// nearest.properties.bar // [ts] Property 'bar' does not exist on type '{ dist?: number; foo: string; }'.\n\n// GeometryCollection\nconst geomPoints = geometryCollection([\n  point([0, 0]).geometry,\n  point([0.5, 0.5]).geometry,\n]);\nnearestPointToLine(geomPoints, line);\n"
  },
  {
    "path": "packages/turf-planepoint/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-planepoint/README.md",
    "content": "# @turf/planepoint\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## planepoint\n\nTakes a triangular plane as a polygon and a point within that triangle, and\nreturns the z-value at that point.\n\nThe Polygon should have properties `a`, `b`, and `c`\nthat define the values at its three corners. Alternatively, the z-values\nof each triangle point can be provided by their respective 3rd coordinate\nif their values are not provided as properties.\n\n### Parameters\n\n*   `point` **[Coord][1]** the Point for which a z-value will be calculated\n*   `triangle` **[Feature][2]<[Polygon][3]>** a Polygon feature with three vertices\n\n### Examples\n\n```javascript\nconst point = turf.point([-75.3221, 39.529]);\n// \"a\", \"b\", and \"c\" values represent the values of the coordinates in order.\nconst triangle = turf.polygon([[\n  [-75.1221, 39.57],\n  [-75.58, 39.18],\n  [-75.97, 39.86],\n  [-75.1221, 39.57]\n]], {\n  \"a\": 11,\n  \"b\": 122,\n  \"c\": 44\n});\n\nconst zValue = turf.planepoint(point, triangle);\npoint.properties.zValue = zValue;\n\n//addToMap\nconst addToMap = [triangle, point];\n```\n\nReturns **[number][4]** the z-value for `interpolatedPoint`\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/planepoint\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-planepoint/bench.ts",
    "content": "import Benchmark, { Event } from \"benchmark\";\nimport { polygon } from \"@turf/helpers\";\nimport { planepoint } from \"./index.js\";\n\nconst point = [1, 1];\nconst triangle = polygon(\n  [\n    [\n      [0, 0, 0],\n      [2, 0, 0],\n      [1, 2, 2],\n      [0, 0, 0],\n    ],\n  ],\n  { a: 0, b: 0, c: 2 }\n);\n\n/**\n * Benchmmark Results\n *\n * turf-planepoint x 14,905,445 ops/sec ±4.54% (75 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-planepoint\");\nsuite\n  .add(\"turf-planepoint\", () => planepoint(point, triangle))\n  .on(\"cycle\", (e: Event) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-planepoint/index.ts",
    "content": "import { Feature, Polygon } from \"geojson\";\nimport { getCoord, getGeom } from \"@turf/invariant\";\nimport { Coord } from \"@turf/helpers\";\n\n/**\n * Takes a triangular plane as a polygon and a point within that triangle, and\n * returns the z-value at that point.\n *\n * The Polygon should have properties `a`, `b`, and `c`\n * that define the values at its three corners. Alternatively, the z-values\n * of each triangle point can be provided by their respective 3rd coordinate\n * if their values are not provided as properties.\n *\n * @function\n * @param {Coord} point the Point for which a z-value will be calculated\n * @param {Feature<Polygon>} triangle a Polygon feature with three vertices\n * @returns {number} the z-value for `interpolatedPoint`\n * @example\n * const point = turf.point([-75.3221, 39.529]);\n * // \"a\", \"b\", and \"c\" values represent the values of the coordinates in order.\n * const triangle = turf.polygon([[\n *   [-75.1221, 39.57],\n *   [-75.58, 39.18],\n *   [-75.97, 39.86],\n *   [-75.1221, 39.57]\n * ]], {\n *   \"a\": 11,\n *   \"b\": 122,\n *   \"c\": 44\n * });\n *\n * const zValue = turf.planepoint(point, triangle);\n * point.properties.zValue = zValue;\n *\n * //addToMap\n * const addToMap = [triangle, point];\n */\nfunction planepoint(\n  point: Coord,\n  triangle: Feature<Polygon> | Polygon\n): number {\n  // Normalize input\n  const coord = getCoord(point);\n  const geom = getGeom(triangle);\n  const coords = geom.coordinates;\n  const outer = coords[0];\n  if (outer.length < 4)\n    throw new Error(\"OuterRing of a Polygon must have 4 or more Positions.\");\n  const properties = (triangle.type === \"Feature\" && triangle.properties) || {};\n  const a = properties.a;\n  const b = properties.b;\n  const c = properties.c;\n\n  // Planepoint\n  const x = coord[0];\n  const y = coord[1];\n  const x1 = outer[0][0];\n  const y1 = outer[0][1];\n  const z1 = a !== undefined ? a : outer[0][2];\n  const x2 = outer[1][0];\n  const y2 = outer[1][1];\n  const z2 = b !== undefined ? b : outer[1][2];\n  const x3 = outer[2][0];\n  const y3 = outer[2][1];\n  const z3 = c !== undefined ? c : outer[2][2];\n  const z =\n    (z3 * (x - x1) * (y - y2) +\n      z1 * (x - x2) * (y - y3) +\n      z2 * (x - x3) * (y - y1) -\n      z2 * (x - x1) * (y - y3) -\n      z3 * (x - x2) * (y - y1) -\n      z1 * (x - x3) * (y - y2)) /\n    ((x - x1) * (y - y2) +\n      (x - x2) * (y - y3) +\n      (x - x3) * (y - y1) -\n      (x - x1) * (y - y3) -\n      (x - x2) * (y - y1) -\n      (x - x3) * (y - y2));\n\n  return z;\n}\n\nexport { planepoint };\nexport default planepoint;\n"
  },
  {
    "path": "packages/turf-planepoint/package.json",
    "content": "{\n  \"name\": \"@turf/planepoint\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a triangular plane as a polygon and a point within that triangle, and returns the z-value at that point.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"plane\",\n    \"point\",\n    \"interpolation\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-planepoint/test/in/triangle.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [0, 0, 0],\n        [2, 0, 0],\n        [1, 2, 2],\n        [0, 0, 0]\n      ]\n    ]\n  },\n  \"properties\": {\n    \"a\": 0,\n    \"b\": 0,\n    \"c\": 2\n  }\n}\n"
  },
  {
    "path": "packages/turf-planepoint/test.ts",
    "content": "// http://math.stackexchange.com/questions/28043/finding-the-z-value-on-a-plane-with-x-y-values\n// http://stackoverflow.com/a/13916669/461015\nimport test from \"tape\";\n\nimport { polygon } from \"@turf/helpers\";\nimport { planepoint } from \"./index.js\";\n\ntest(\"turf-planepoint\", (t) => {\n  const point = [1, 1];\n  const triangleProps = polygon(\n    [\n      [\n        [0, 0],\n        [2, 0],\n        [1, 2],\n        [0, 0],\n      ],\n    ],\n    { a: 0, b: 0, c: 2 }\n  );\n  const triangleZ = polygon([\n    [\n      [0, 0, 0],\n      [2, 0, 0],\n      [1, 2, 2],\n      [0, 0, 0],\n    ],\n  ]);\n\n  t.equal(planepoint(point, triangleProps), 1, \"properties\");\n  t.equal(planepoint(point, triangleZ), 1, \"z coordinates\");\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-planepoint/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-planepoint/types.ts",
    "content": "import { point, polygon } from \"@turf/helpers\";\nimport { planepoint } from \"./index.js\";\n\nconst pt = point([1, 1]);\nconst triangle = polygon([\n  [\n    [0, 0, 0],\n    [2, 0, 0],\n    [1, 2, 2],\n    [0, 0, 0],\n  ],\n]);\n\nplanepoint(pt, triangle);\nplanepoint(pt.geometry.coordinates, triangle);\nplanepoint(pt.geometry, triangle.geometry);\n"
  },
  {
    "path": "packages/turf-point-grid/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-point-grid/README.md",
    "content": "# @turf/point-grid\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## pointGrid\n\nCreates a grid of points\n\n### Parameters\n\n*   `bbox` **[BBox][1]** extent of grid in \\[minX, minY, maxX, maxY] order\n*   `cellSide` **[number][2]** the distance between points\n*   `options` **[Object][3]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** the units of the cellSide value.  Supports all valid Turf [Units][4] (optional, default `'kilometers'`)\n    *   `options.mask` **[Feature][5]<([Polygon][6] | [MultiPolygon][7])>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it\n    *   `options.properties` **[Object][3]** passed to each point of the grid (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar extent = [-70.823364, -33.553984, -70.473175, -33.302986];\nvar cellSide = 3;\nvar options = {units: 'miles'};\n\nvar grid = turf.pointGrid(extent, cellSide, options);\n\n//addToMap\nvar addToMap = [grid];\n```\n\nReturns **[FeatureCollection][8]<[Point][9]>** grid of points\n\n[1]: https://tools.ietf.org/html/rfc7946#section-5\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[4]: https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[8]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[9]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/point-grid\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-point-grid/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { polygon } from \"@turf/helpers\";\nimport { pointGrid as grid } from \"./index.js\";\n\nvar bbox = [-95, 30, -85, 40];\nvar mask = polygon([\n  [\n    [6.5, 44.6],\n    [9.2, 44.8],\n    [8.3, 46.4],\n    [6.5, 44.6],\n  ],\n]);\n\nvar highres = grid(bbox, 100, { units: \"miles\" }).features.length;\nvar midres = grid(bbox, 10, { units: \"miles\" }).features.length;\nvar lowres = grid(bbox, 1, { units: \"miles\" }).features.length;\nvar masked = grid(mask, 1, { units: \"miles\", mask: mask }).features.length;\nvar suite = new Benchmark.Suite(\"turf-square-grid\");\n\n/**\n * Benchmark Results\n *\n * highres -- 42 cells x 274,666 ops/sec ±1.96% (77 runs sampled)\n * midres  -- 4200 cells x 2,725 ops/sec ±3.86% (73 runs sampled)\n * lowres  -- 414508 cells x 2.09 ops/sec ±21.02% (10 runs sampled)\n * masked  -- 7658 cells x 9,794 ops/sec ±2.08% (75 runs sampled)\n */\nsuite\n  .add(\"highres -- \" + highres + \" cells\", () =>\n    grid(bbox, 100, { units: \"miles\" })\n  )\n  .add(\"midres  -- \" + midres + \" cells\", () =>\n    grid(bbox, 10, { units: \"miles\" })\n  )\n  .add(\"lowres  -- \" + lowres + \" cells\", () =>\n    grid(bbox, 1, { units: \"miles\" })\n  )\n  .add(\"masked  -- \" + masked + \" cells\", () =>\n    grid(mask, 10, { units: \"miles\", mask: mask })\n  )\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-point-grid/index.ts",
    "content": "import {\n  BBox,\n  Feature,\n  Polygon,\n  MultiPolygon,\n  FeatureCollection,\n  Point,\n  GeoJsonProperties,\n} from \"geojson\";\nimport { booleanWithin as within } from \"@turf/boolean-within\";\nimport { distance } from \"@turf/distance\";\nimport { point, featureCollection, Units } from \"@turf/helpers\";\n\n/**\n * Creates a grid of points\n *\n * @function\n * @param {BBox} bbox extent of grid in [minX, minY, maxX, maxY] order\n * @param {number} cellSide the distance between points\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units='kilometers'] the units of the cellSide value.  Supports all valid Turf {@link https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md Units}\n * @param {Feature<Polygon|MultiPolygon>} [options.mask] if passed a Polygon or MultiPolygon, the grid Points will be created only inside it\n * @param {Object} [options.properties={}] passed to each point of the grid\n * @returns {FeatureCollection<Point>} grid of points\n * @example\n * var extent = [-70.823364, -33.553984, -70.473175, -33.302986];\n * var cellSide = 3;\n * var options = {units: 'miles'};\n *\n * var grid = turf.pointGrid(extent, cellSide, options);\n *\n * //addToMap\n * var addToMap = [grid];\n */\nfunction pointGrid<P extends GeoJsonProperties = GeoJsonProperties>(\n  bbox: BBox,\n  cellSide: number,\n  options: {\n    units?: Units;\n    mask?: Feature<Polygon | MultiPolygon>;\n    properties?: P;\n  } = {}\n): FeatureCollection<Point, P> {\n  // Default parameters\n  if (options.mask && !options.units) options.units = \"kilometers\";\n\n  // Containers\n  var results = [];\n\n  // Typescript handles the Type Validation\n  // if (cellSide === null || cellSide === undefined) throw new Error('cellSide is required');\n  // if (!isNumber(cellSide)) throw new Error('cellSide is invalid');\n  // if (!bbox) throw new Error('bbox is required');\n  // if (!Array.isArray(bbox)) throw new Error('bbox must be array');\n  // if (bbox.length !== 4) throw new Error('bbox must contain 4 numbers');\n  // if (mask && ['Polygon', 'MultiPolygon'].indexOf(getType(mask)) === -1) throw new Error('options.mask must be a (Multi)Polygon');\n\n  var west = bbox[0];\n  var south = bbox[1];\n  var east = bbox[2];\n  var north = bbox[3];\n\n  var xFraction = cellSide / distance([west, south], [east, south], options);\n  var cellWidth = xFraction * (east - west);\n  var yFraction = cellSide / distance([west, south], [west, north], options);\n  var cellHeight = yFraction * (north - south);\n\n  var bboxWidth = east - west;\n  var bboxHeight = north - south;\n  var columns = Math.floor(bboxWidth / cellWidth);\n  var rows = Math.floor(bboxHeight / cellHeight);\n\n  // adjust origin of the grid\n  var deltaX = (bboxWidth - columns * cellWidth) / 2;\n  var deltaY = (bboxHeight - rows * cellHeight) / 2;\n\n  var currentX = west + deltaX;\n  while (currentX <= east) {\n    var currentY = south + deltaY;\n    while (currentY <= north) {\n      var cellPt = point([currentX, currentY], options.properties);\n      if (options.mask) {\n        if (within(cellPt, options.mask)) results.push(cellPt);\n      } else {\n        results.push(cellPt);\n      }\n      currentY += cellHeight;\n    }\n    currentX += cellWidth;\n  }\n\n  return featureCollection(results);\n}\n\nexport { pointGrid };\nexport default pointGrid;\n"
  },
  {
    "path": "packages/turf-point-grid/package.json",
    "content": "{\n  \"name\": \"@turf/point-grid\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Creates a grid of points within a bounding box.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Stefano Borghi <@stebogit>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"grid\",\n    \"points\",\n    \"geojson\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/bbox-polygon\": \"workspace:*\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/boolean-within\": \"workspace:*\",\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-point-grid/test/in/big-bbox.json",
    "content": "{\n  \"bbox\": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629],\n  \"cellSide\": 500,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-point-grid/test/in/fiji-10-miles.json",
    "content": "{\n  \"bbox\": [\n    -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812\n  ],\n  \"cellSide\": 10,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-point-grid/test/in/london-20-miles.json",
    "content": "{\n  \"bbox\": [-0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154],\n  \"cellSide\": 20,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-point-grid/test/in/piedemont-mask.json",
    "content": "{\n  \"bbox\": [6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049],\n  \"cellSide\": 12.5,\n  \"units\": \"miles\",\n  \"mask\": {\n    \"type\": \"Feature\",\n    \"properties\": {\n      \"stroke\": \"#00F\",\n      \"stroke-width\": 6,\n      \"fill-opacity\": 0\n    },\n    \"geometry\": {\n      \"type\": \"Polygon\",\n      \"coordinates\": [\n        [\n          [8.382568359375012, 46.456781428126554],\n          [8.313903808593762, 46.41892578708079],\n          [8.31939697265626, 46.379149058330775],\n          [8.099670410156264, 46.26913887119718],\n          [8.171081542968762, 46.1893382140708],\n          [7.8799438476562615, 45.94160076422079],\n          [7.907409667968761, 45.627484212338246],\n          [7.7247619628906365, 45.55444852652113],\n          [7.5833129882812615, 45.5900172453615],\n          [7.484436035156261, 45.58136746810096],\n          [7.347106933593762, 45.527516684421215],\n          [7.116394042968763, 45.46976215263039],\n          [7.176818847656262, 45.408092022812276],\n          [7.094421386718762, 45.222677199620094],\n          [6.980438232421887, 45.20719857986464],\n          [6.9515991210937615, 45.17332441090049],\n          [6.900787353515638, 45.166547157856016],\n          [6.900787353515638, 45.14621056019852],\n          [6.854095458984387, 45.1278045274732],\n          [6.7813110351562615, 45.164610651725425],\n          [6.749725341796888, 45.1394300814679],\n          [6.687927246093762, 45.1394300814679],\n          [6.6302490234375, 45.10987715527803],\n          [6.65496826171875, 45.069156265623505],\n          [6.6741943359375, 45.02015580433459],\n          [6.755218505859382, 45.0182143279711],\n          [6.749725341796875, 44.90744135615697],\n          [6.815643310546875, 44.872415981701394],\n          [6.900787353515625, 44.84515927771909],\n          [6.946105957031258, 44.86560301534198],\n          [7.017517089843757, 44.8344477567128],\n          [7.002410888671875, 44.78378451819761],\n          [7.032623291015625, 44.73210119404699],\n          [7.0751953125, 44.68330096401701],\n          [6.990051269531262, 44.69404054463802],\n          [6.8637084960937615, 44.51021754644927],\n          [6.9021606445312615, 44.36509667482153],\n          [7.055969238281263, 44.219615400229195],\n          [7.3965454101562615, 44.125056482685174],\n          [7.6712036132812615, 44.180234276372886],\n          [7.7151489257812615, 44.09350315285844],\n          [7.770080566406262, 44.136884638560495],\n          [8.02825927734376, 44.140826830775524],\n          [8.08868408203126, 44.321883129398586],\n          [8.247985839843762, 44.52196830685208],\n          [8.357849121093762, 44.48670891691767],\n          [8.599548339843762, 44.537632301346086],\n          [8.665466308593762, 44.58851118961441],\n          [8.802795410156264, 44.51805165000559],\n          [8.912658691406264, 44.592423107178654],\n          [8.912658691406264, 44.67841867818858],\n          [9.017028808593762, 44.6725593921204],\n          [9.139251708984387, 44.57970841241188],\n          [9.213409423828137, 44.6061127451739],\n          [9.221649169921887, 44.75453548416007],\n          [9.066467285156264, 44.85002749260048],\n          [8.896179199218762, 45.05606124274412],\n          [8.775329589843762, 45.01530198999206],\n          [8.659973144531262, 45.02695045318543],\n          [8.522644042968764, 45.28841433167348],\n          [8.550109863281262, 45.3617951914213],\n          [8.63800048828126, 45.34828480683997],\n          [8.676452636718762, 45.30773430004872],\n          [8.76983642578126, 45.35407536661812],\n          [8.734130859375014, 45.38494834654319],\n          [8.846740722656262, 45.40423540168332],\n          [8.725891113281262, 45.51789504294005],\n          [8.654479980468762, 45.70809729528788],\n          [8.56109619140626, 45.79242458189573],\n          [8.599548339843762, 45.832626782661585],\n          [8.580322265625012, 45.90529985724794],\n          [8.725891113281262, 46.02557483126793],\n          [8.717651367187512, 46.0998999106273],\n          [8.610534667968762, 46.14178273759229],\n          [8.539123535156262, 46.221652456379104],\n          [8.451232910156262, 46.25774588045678],\n          [8.445739746093764, 46.30899569419854],\n          [8.47045898437501, 46.34313560260196],\n          [8.462219238281264, 46.462457505996056],\n          [8.382568359375012, 46.456781428126554]\n        ]\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "packages/turf-point-grid/test/in/properties.json",
    "content": "{\n  \"bbox\": [2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261],\n  \"properties\": {\n    \"marker-color\": \"#0ff\"\n  },\n  \"cellSide\": 1,\n  \"mask\": {\n    \"type\": \"Feature\",\n    \"properties\": {},\n    \"geometry\": {\n      \"type\": \"Polygon\",\n      \"coordinates\": [\n        [\n          [2.223186492919922, 41.416856461155575],\n          [2.1716880798339844, 41.44182560856202],\n          [2.1636199951171875, 41.41608406639095],\n          [2.1334075927734375, 41.407200866420744],\n          [2.1845626831054683, 41.37977115211044],\n          [2.223186492919922, 41.416856461155575]\n        ]\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "packages/turf-point-grid/test/in/resolute.json",
    "content": "{\n  \"bbox\": [-95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785],\n  \"cellSide\": 12.5,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-point-grid/test/out/big-bbox.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, -77.132893]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, -69.896314]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, -62.659735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, -55.423156]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, -48.186577]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, -40.949997]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, -33.713418]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, -26.476839]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, -19.24026]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, -12.003681]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, -4.767102]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, 2.469478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, 9.706057]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, 16.942636]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, 24.179215]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, 31.415794]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, 38.652373]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, 45.888952]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, 53.125532]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, 60.362111]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, 67.59869]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-199.504452, 74.835269]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, -77.132893]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, -69.896314]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, -62.659735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, -55.423156]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, -48.186577]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, -40.949997]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, -33.713418]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, -26.476839]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, -19.24026]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, -12.003681]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, -4.767102]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, 2.469478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, 9.706057]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, 16.942636]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, 24.179215]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, 31.415794]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, 38.652373]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, 45.888952]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, 53.125532]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, 60.362111]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, 67.59869]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-125.15625, 74.835269]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, -77.132893]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, -69.896314]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, -62.659735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, -55.423156]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, -48.186577]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, -40.949997]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, -33.713418]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, -26.476839]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, -19.24026]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, -12.003681]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, -4.767102]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, 2.469478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, 9.706057]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, 16.942636]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, 24.179215]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, 31.415794]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, 38.652373]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, 45.888952]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, 53.125532]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, 60.362111]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, 67.59869]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-50.808048, 74.835269]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -80.64703474739618],\n            [-29.53125, -80.64703474739618],\n            [-29.53125, 78.34941069014629],\n            [-220.78125, 78.34941069014629],\n            [-220.78125, -80.64703474739618]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-grid/test/out/fiji-10-miles.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.340249, -17.114729]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.340249, -16.969998]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.340249, -16.825266]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.340249, -16.680534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.340249, -16.535803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.188768, -17.114729]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.188768, -16.969998]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.188768, -16.825266]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.188768, -16.680534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.188768, -16.535803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.037288, -17.114729]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.037288, -16.969998]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.037288, -16.825266]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.037288, -16.680534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.037288, -16.535803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.885808, -17.114729]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.885808, -16.969998]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.885808, -16.825266]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.885808, -16.680534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.885808, -16.535803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.734327, -17.114729]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.734327, -16.969998]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.734327, -16.825266]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.734327, -16.680534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.734327, -16.535803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.582847, -17.114729]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.582847, -16.969998]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.582847, -16.825266]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.582847, -16.680534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.582847, -16.535803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [\n        -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812\n      ],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.3460693359375, -17.16703442146408],\n            [-179.5770263671875, -17.16703442146408],\n            [-179.5770263671875, -16.48349760264812],\n            [-180.3460693359375, -16.48349760264812],\n            [-180.3460693359375, -17.16703442146408]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-grid/test/out/london-20-miles.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.552977, 51.358112]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.552977, 51.647575]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.090637, 51.358112]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.090637, 51.647575]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.371702, 51.358112]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.371702, 51.647575]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6207275390625, 51.23784668914442],\n            [0.439453125, 51.23784668914442],\n            [0.439453125, 51.767839887322154],\n            [-0.6207275390625, 51.767839887322154],\n            [-0.6207275390625, 51.23784668914442]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-grid/test/out/piedemont-mask.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [6.900398, 44.466868]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [6.900398, 45.009611]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.152151, 44.285953]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.152151, 44.466868]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.152151, 44.647782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.152151, 44.828697]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.152151, 45.009611]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.152151, 45.190526]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.403904, 44.285953]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.403904, 44.466868]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.403904, 44.647782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.403904, 44.828697]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.403904, 45.009611]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.403904, 45.190526]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.403904, 45.37144]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.655657, 44.285953]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.655657, 44.466868]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.655657, 44.647782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.655657, 44.828697]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.655657, 45.009611]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.655657, 45.190526]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.655657, 45.37144]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.655657, 45.552355]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.90741, 44.285953]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.90741, 44.466868]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.90741, 44.647782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.90741, 44.828697]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.90741, 45.009611]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.90741, 45.190526]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.90741, 45.37144]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.90741, 45.552355]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.90741, 45.733269]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.90741, 45.914184]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.159163, 44.466868]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.159163, 44.647782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.159163, 44.828697]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.159163, 45.009611]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.159163, 45.190526]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.159163, 45.37144]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.159163, 45.552355]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.159163, 45.733269]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.159163, 45.914184]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.159163, 46.095098]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.159163, 46.276013]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.410916, 44.647782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.410916, 44.828697]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.410916, 45.009611]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.410916, 45.190526]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.410916, 45.37144]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.410916, 45.552355]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.410916, 45.733269]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.410916, 45.914184]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.410916, 46.095098]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.410916, 46.276013]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.410916, 46.456927]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.662669, 44.647782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.662669, 44.828697]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.662669, 45.009611]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.662669, 45.37144]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.662669, 45.552355]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.662669, 46.095098]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.914422, 44.828697]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.914422, 45.009611]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [9.166174, 44.647782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.3775634765625, 44.05601169578525],\n            [9.437255859375, 44.05601169578525],\n            [9.437255859375, 46.50595444552049],\n            [6.3775634765625, 46.50595444552049],\n            [6.3775634765625, 44.05601169578525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.382568359375012, 46.456781428126554],\n            [8.313903808593762, 46.41892578708079],\n            [8.31939697265626, 46.379149058330775],\n            [8.099670410156264, 46.26913887119718],\n            [8.171081542968762, 46.1893382140708],\n            [7.8799438476562615, 45.94160076422079],\n            [7.907409667968761, 45.627484212338246],\n            [7.7247619628906365, 45.55444852652113],\n            [7.5833129882812615, 45.5900172453615],\n            [7.484436035156261, 45.58136746810096],\n            [7.347106933593762, 45.527516684421215],\n            [7.116394042968763, 45.46976215263039],\n            [7.176818847656262, 45.408092022812276],\n            [7.094421386718762, 45.222677199620094],\n            [6.980438232421887, 45.20719857986464],\n            [6.9515991210937615, 45.17332441090049],\n            [6.900787353515638, 45.166547157856016],\n            [6.900787353515638, 45.14621056019852],\n            [6.854095458984387, 45.1278045274732],\n            [6.7813110351562615, 45.164610651725425],\n            [6.749725341796888, 45.1394300814679],\n            [6.687927246093762, 45.1394300814679],\n            [6.6302490234375, 45.10987715527803],\n            [6.65496826171875, 45.069156265623505],\n            [6.6741943359375, 45.02015580433459],\n            [6.755218505859382, 45.0182143279711],\n            [6.749725341796875, 44.90744135615697],\n            [6.815643310546875, 44.872415981701394],\n            [6.900787353515625, 44.84515927771909],\n            [6.946105957031258, 44.86560301534198],\n            [7.017517089843757, 44.8344477567128],\n            [7.002410888671875, 44.78378451819761],\n            [7.032623291015625, 44.73210119404699],\n            [7.0751953125, 44.68330096401701],\n            [6.990051269531262, 44.69404054463802],\n            [6.8637084960937615, 44.51021754644927],\n            [6.9021606445312615, 44.36509667482153],\n            [7.055969238281263, 44.219615400229195],\n            [7.3965454101562615, 44.125056482685174],\n            [7.6712036132812615, 44.180234276372886],\n            [7.7151489257812615, 44.09350315285844],\n            [7.770080566406262, 44.136884638560495],\n            [8.02825927734376, 44.140826830775524],\n            [8.08868408203126, 44.321883129398586],\n            [8.247985839843762, 44.52196830685208],\n            [8.357849121093762, 44.48670891691767],\n            [8.599548339843762, 44.537632301346086],\n            [8.665466308593762, 44.58851118961441],\n            [8.802795410156264, 44.51805165000559],\n            [8.912658691406264, 44.592423107178654],\n            [8.912658691406264, 44.67841867818858],\n            [9.017028808593762, 44.6725593921204],\n            [9.139251708984387, 44.57970841241188],\n            [9.213409423828137, 44.6061127451739],\n            [9.221649169921887, 44.75453548416007],\n            [9.066467285156264, 44.85002749260048],\n            [8.896179199218762, 45.05606124274412],\n            [8.775329589843762, 45.01530198999206],\n            [8.659973144531262, 45.02695045318543],\n            [8.522644042968764, 45.28841433167348],\n            [8.550109863281262, 45.3617951914213],\n            [8.63800048828126, 45.34828480683997],\n            [8.676452636718762, 45.30773430004872],\n            [8.76983642578126, 45.35407536661812],\n            [8.734130859375014, 45.38494834654319],\n            [8.846740722656262, 45.40423540168332],\n            [8.725891113281262, 45.51789504294005],\n            [8.654479980468762, 45.70809729528788],\n            [8.56109619140626, 45.79242458189573],\n            [8.599548339843762, 45.832626782661585],\n            [8.580322265625012, 45.90529985724794],\n            [8.725891113281262, 46.02557483126793],\n            [8.717651367187512, 46.0998999106273],\n            [8.610534667968762, 46.14178273759229],\n            [8.539123535156262, 46.221652456379104],\n            [8.451232910156262, 46.25774588045678],\n            [8.445739746093764, 46.30899569419854],\n            [8.47045898437501, 46.34313560260196],\n            [8.462219238281264, 46.462457505996056],\n            [8.382568359375012, 46.456781428126554]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-grid/test/out/properties.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.137036, 41.406623]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.149021, 41.406623]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.161006, 41.39763]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.161006, 41.406623]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.172991, 41.388636]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.172991, 41.39763]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.172991, 41.406623]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.172991, 41.415616]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.172991, 41.424609]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.172991, 41.433602]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.184976, 41.388636]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.184976, 41.39763]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.184976, 41.406623]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.184976, 41.415616]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.184976, 41.424609]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.184976, 41.433602]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.196961, 41.39763]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.196961, 41.406623]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.196961, 41.415616]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.196961, 41.424609]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.208947, 41.406623]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.208947, 41.415616]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.220932, 41.415616]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [\n        2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261\n      ],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.131519317626953, 41.37835427979543],\n            [2.2264480590820312, 41.37835427979543],\n            [2.2264480590820312, 41.44388449101261],\n            [2.131519317626953, 41.44388449101261],\n            [2.131519317626953, 41.37835427979543]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.223186492919922, 41.416856461155575],\n            [2.1716880798339844, 41.44182560856202],\n            [2.1636199951171875, 41.41608406639095],\n            [2.1334075927734375, 41.407200866420744],\n            [2.1845626831054683, 41.37977115211044],\n            [2.223186492919922, 41.416856461155575]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-grid/test/out/resolute.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-95.630499, 74.504464]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-95.630499, 74.685378]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-95.630499, 74.866293]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-94.954834, 74.504464]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-94.954834, 74.685378]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-94.954834, 74.866293]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-94.279169, 74.504464]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-94.279169, 74.685378]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-94.279169, 74.866293]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.877685546875, 74.46849062193377],\n            [-94.031982421875, 74.46849062193377],\n            [-94.031982421875, 74.90226611990785],\n            [-95.877685546875, 74.90226611990785],\n            [-95.877685546875, 74.46849062193377]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-grid/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { bboxPolygon as bboxPoly } from \"@turf/bbox-polygon\";\nimport { truncate } from \"@turf/truncate\";\nimport { pointGrid } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nlet fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    json: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-point-grid\", (t) => {\n  for (const { name, json } of fixtures) {\n    const { bbox, cellSide } = json;\n    const options = json;\n    const result = truncate(pointGrid(bbox, cellSide, options));\n\n    // Add styled GeoJSON to the result\n    const poly = bboxPoly(bbox);\n    poly.properties = {\n      stroke: \"#F00\",\n      \"stroke-width\": 6,\n      \"fill-opacity\": 0,\n    };\n    result.features.push(poly);\n    if (options.mask) {\n      options.mask.properties = {\n        stroke: \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0,\n      };\n      result.features.push(options.mask);\n    }\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + name + \".geojson\", result);\n    t.deepEqual(\n      result,\n      loadJsonFileSync(directories.out + name + \".geojson\"),\n      name\n    );\n  }\n  t.end();\n});\n\ntest(\"point-grid -- #1177\", (t) => {\n  const bbox = [0, 0, 1, 1];\n  const mask = bboxPoly([0.2, 0.2, 0.8, 0.8]);\n  let options = { mask: mask };\n  t.doesNotThrow(() => pointGrid(bbox, 1, options));\n  t.equal(options.units, \"kilometers\");\n\n  let options2 = { mask: mask, units: \"miles\" };\n  t.doesNotThrow(() => pointGrid(bbox, 1, options2));\n  t.equal(options2.units, \"miles\");\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-point-grid/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-point-grid/types.ts",
    "content": "import { BBox } from \"geojson\";\nimport { polygon } from \"@turf/helpers\";\nimport { pointGrid } from \"./index.js\";\n\nconst cellSide = 50;\nconst bbox: BBox = [-95, 30, -85, 40];\nconst poly = polygon([\n  [\n    [20, 30],\n    [10, 10],\n    [20, 20],\n    [20, 30],\n  ],\n]);\n\npointGrid(bbox, cellSide);\npointGrid(bbox, cellSide, { units: \"miles\" });\npointGrid(bbox, cellSide, { units: \"miles\", mask: poly });\npointGrid(bbox, cellSide, {\n  units: \"miles\",\n  mask: poly,\n  properties: { foo: \"bar\" },\n});\n"
  },
  {
    "path": "packages/turf-point-on-feature/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-point-on-feature/README.md",
    "content": "# @turf/point-on-feature\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## pointOnFeature\n\nTakes a Feature or FeatureCollection and returns a [Point][1] guaranteed to be on the surface of the feature.\n\n*   Given a [Polygon][2], the point will be in the area of the polygon\n*   Given a [LineString][3], the point will be along the string\n*   Given a [Point][1], the point will the same as the input\n\n### Parameters\n\n*   `geojson` **[GeoJSON][4]** any Feature or FeatureCollection\n\n### Examples\n\n```javascript\nvar polygon = turf.polygon([[\n  [116, -36],\n  [131, -32],\n  [146, -43],\n  [155, -25],\n  [133, -9],\n  [111, -22],\n  [116, -36]\n]]);\n\nvar pointOnPolygon = turf.pointOnFeature(polygon);\n\n//addToMap\nvar addToMap = [polygon, pointOnPolygon];\n```\n\nReturns **[Feature][5]<[Point][1]>** a point on the surface of `input`\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/point-on-feature\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-point-on-feature/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { pointOnFeature } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\n/**\n * Benchmark Results\n *\n * lines x 46,944 ops/sec ±1.16% (86 runs sampled)\n * multiline x 43,534 ops/sec ±2.47% (86 runs sampled)\n * multipoint x 151,733 ops/sec ±1.36% (88 runs sampled)\n * multipolygon x 52,131 ops/sec ±1.28% (88 runs sampled)\n * polygon-in-center x 492,494 ops/sec ±1.12% (86 runs sampled)\n * polygons x 31,270 ops/sec ±1.41% (88 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-point-on-feature\");\n\nglob.sync(path.join(__dirname, \"test\", \"in\", \"*.json\")).forEach((filepath) => {\n  const { name } = path.parse(filepath);\n  const geojson = loadJsonFileSync(filepath);\n  suite.add(name, () => pointOnFeature(geojson));\n});\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-point-on-feature/index.ts",
    "content": "import type { Feature, Point } from \"geojson\";\nimport type { AllGeoJSON } from \"@turf/helpers\";\nimport { explode } from \"@turf/explode\";\nimport { center as centroid } from \"@turf/center\";\nimport { nearestPoint } from \"@turf/nearest-point\";\nimport { booleanPointInPolygon } from \"@turf/boolean-point-in-polygon\";\nimport { featureCollection, feature, point } from \"@turf/helpers\";\n\n/**\n * Takes a Feature or FeatureCollection and returns a {@link Point} guaranteed to be on the surface of the feature.\n *\n * * Given a {@link Polygon}, the point will be in the area of the polygon\n * * Given a {@link LineString}, the point will be along the string\n * * Given a {@link Point}, the point will the same as the input\n *\n * @function\n * @param {GeoJSON} geojson any Feature or FeatureCollection\n * @returns {Feature<Point>} a point on the surface of `input`\n * @example\n * var polygon = turf.polygon([[\n *   [116, -36],\n *   [131, -32],\n *   [146, -43],\n *   [155, -25],\n *   [133, -9],\n *   [111, -22],\n *   [116, -36]\n * ]]);\n *\n * var pointOnPolygon = turf.pointOnFeature(polygon);\n *\n * //addToMap\n * var addToMap = [polygon, pointOnPolygon];\n */\nfunction pointOnFeature(geojson: AllGeoJSON): Feature<Point> {\n  // normalize\n  const fc = normalize(geojson);\n\n  // get centroid\n  const cent = centroid(fc);\n\n  // check to see if centroid is on surface\n  let onSurface = false;\n  let i = 0;\n  while (!onSurface && i < fc.features.length) {\n    const geom = fc.features[i].geometry;\n    let x, y, x1, y1, x2, y2;\n    let onLine = false;\n    if (geom.type === \"Point\") {\n      if (\n        cent.geometry.coordinates[0] === geom.coordinates[0] &&\n        cent.geometry.coordinates[1] === geom.coordinates[1]\n      ) {\n        onSurface = true;\n      }\n    } else if (geom.type === \"MultiPoint\") {\n      let onMultiPoint = false;\n      let k = 0;\n      while (!onMultiPoint && k < geom.coordinates.length) {\n        if (\n          cent.geometry.coordinates[0] === geom.coordinates[k][0] &&\n          cent.geometry.coordinates[1] === geom.coordinates[k][1]\n        ) {\n          onSurface = true;\n          onMultiPoint = true;\n        }\n        k++;\n      }\n    } else if (geom.type === \"LineString\") {\n      let k = 0;\n      while (!onLine && k < geom.coordinates.length - 1) {\n        x = cent.geometry.coordinates[0];\n        y = cent.geometry.coordinates[1];\n        x1 = geom.coordinates[k][0];\n        y1 = geom.coordinates[k][1];\n        x2 = geom.coordinates[k + 1][0];\n        y2 = geom.coordinates[k + 1][1];\n        if (pointOnSegment(x, y, x1, y1, x2, y2)) {\n          onLine = true;\n          onSurface = true;\n        }\n        k++;\n      }\n    } else if (geom.type === \"MultiLineString\") {\n      let j = 0;\n      while (j < geom.coordinates.length) {\n        onLine = false;\n        let k = 0;\n        const line = geom.coordinates[j];\n        while (!onLine && k < line.length - 1) {\n          x = cent.geometry.coordinates[0];\n          y = cent.geometry.coordinates[1];\n          x1 = line[k][0];\n          y1 = line[k][1];\n          x2 = line[k + 1][0];\n          y2 = line[k + 1][1];\n          if (pointOnSegment(x, y, x1, y1, x2, y2)) {\n            onLine = true;\n            onSurface = true;\n          }\n          k++;\n        }\n        j++;\n      }\n    } else if (geom.type === \"Polygon\" || geom.type === \"MultiPolygon\") {\n      if (booleanPointInPolygon(cent, geom)) {\n        onSurface = true;\n      }\n    }\n    i++;\n  }\n  if (onSurface) {\n    return cent;\n  } else {\n    const vertices = featureCollection<Point>([]);\n    for (let f = 0; f < fc.features.length; f++) {\n      vertices.features = vertices.features.concat(\n        explode(fc.features[f]).features\n      );\n    }\n    // Remove distanceToPoint properties from nearestPoint()\n    return point(nearestPoint(cent, vertices).geometry.coordinates);\n  }\n}\n\n/**\n * Normalizes any GeoJSON to a FeatureCollection\n *\n * @private\n * @name normalize\n * @param {GeoJSON} geojson Any GeoJSON\n * @returns {FeatureCollection} FeatureCollection\n */\nfunction normalize(geojson: AllGeoJSON) {\n  if (geojson.type !== \"FeatureCollection\") {\n    if (geojson.type !== \"Feature\") {\n      return featureCollection([feature(geojson)]);\n    }\n    return featureCollection([geojson]);\n  }\n  return geojson;\n}\n\nfunction pointOnSegment(\n  x: number,\n  y: number,\n  x1: number,\n  y1: number,\n  x2: number,\n  y2: number\n) {\n  const ab = Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1));\n  const ap = Math.sqrt((x - x1) * (x - x1) + (y - y1) * (y - y1));\n  const pb = Math.sqrt((x2 - x) * (x2 - x) + (y2 - y) * (y2 - y));\n  return ab === ap + pb;\n}\n\nexport { pointOnFeature };\nexport default pointOnFeature;\n"
  },
  {
    "path": "packages/turf-point-on-feature/package.json",
    "content": "{\n  \"name\": \"@turf/point-on-feature\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a Feature or FeatureCollection and returns a Point guaranteed to be on the surface of the feature.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"centroid\",\n    \"geojson\",\n    \"point\",\n    \"surface\",\n    \"polygon\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/meta\": \"workspace:*\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/boolean-point-in-polygon\": \"workspace:*\",\n    \"@turf/center\": \"workspace:*\",\n    \"@turf/explode\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/nearest-point\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-point-on-feature/test/in/lines.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [24.08203125, -16.59408141271846],\n          [25.059814453125, -14.519780046326073]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [28.410644531249996, -14.955399325942619],\n          [28.7841796875, -15.845104902273452],\n          [27.6416015625, -16.13026201203474],\n          [27.432861328125, -17.518344187852218]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [26.652832031249996, -13.485789593908478],\n          [26.268310546875, -14.891704754215462],\n          [25.86181640625, -14.88108715909066],\n          [25.894775390625, -15.421910399947057],\n          [26.323242187499996, -15.5701278526594],\n          [26.224365234375, -16.066928957450106],\n          [26.510009765625, -16.583552354072005],\n          [25.927734374999996, -16.836089974560213],\n          [25.147705078125, -17.245744208007117],\n          [26.34521484375, -18.271086109608863],\n          [25.33447265625, -18.531700307384043]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [24.466552734375, -14.211138758545781],\n          [25.389404296875, -13.710035342476669],\n          [25.609130859375, -13.944729974920154],\n          [26.3671875, -13.090179355733726]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-on-feature/test/in/multiline.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [92.08740234375, 50.708634400828224],\n        [93.0322265625, 50.84757295365389],\n        [94.32861328125, 50.499452103967734],\n        [95.25146484374999, 50.0077390146369],\n        [97.470703125, 49.908787000867136],\n        [98.4375, 50.51342652633956],\n        [98.10791015625, 51.467696956223385],\n        [99.5361328125, 52.07950600379697],\n        [101.14013671875, 51.645294049305406],\n        [102.37060546875, 51.22064743038333],\n        [102.37060546875, 50.764259357116465],\n        [103.18359375, 50.30337575356313],\n        [104.56787109374999, 50.24720490139267],\n        [105.84228515625, 50.54136296522161],\n        [106.89697265625, 50.2612538275847]\n      ],\n      [\n        [97.294921875, 53.605544099237974],\n        [99.4482421875, 54.213861000644926],\n        [99.73388671874999, 54.04648911335576],\n        [100.8984375, 53.969012350740314],\n        [101.29394531249999, 53.69670647530323]\n      ],\n      [\n        [95.0537109375, 47.68018294648414],\n        [96.416015625, 47.502358951968574],\n        [97.05322265625, 46.84516443029276],\n        [98.41552734375, 47.76886840424207],\n        [98.89892578125, 47.45780853075031]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-point-on-feature/test/in/multipoint.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPoint\",\n    \"coordinates\": [\n      [63.6328125, 57.7041472343419],\n      [42.1875, 52.482780222078226],\n      [71.015625, 29.22889003019423],\n      [48.1640625, 37.71859032558816],\n      [73.47656249999999, 49.61070993807422]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-point-on-feature/test/in/multipolygon.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [12.041015625, 36.66841891894786],\n          [12.041015625, 39.16414104768742],\n          [15.161132812500002, 39.16414104768742],\n          [15.161132812500002, 36.66841891894786],\n          [12.041015625, 36.66841891894786]\n        ]\n      ],\n      [\n        [\n          [15.732421875, 31.42866311735861],\n          [15.732421875, 34.92197103616377],\n          [19.775390625, 34.92197103616377],\n          [19.775390625, 31.42866311735861],\n          [15.732421875, 31.42866311735861]\n        ]\n      ],\n      [\n        [\n          [18.3251953125, 37.68382032669382],\n          [18.3251953125, 42.65012181368025],\n          [22.0166015625, 42.65012181368025],\n          [22.0166015625, 37.68382032669382],\n          [18.3251953125, 37.68382032669382]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-point-on-feature/test/in/polygon-in-center.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [13.270797729492186, 52.42042920678164],\n            [13.270797729492186, 52.573846203920276],\n            [13.5186767578125, 52.573846203920276],\n            [13.5186767578125, 52.42042920678164],\n            [13.270797729492186, 52.42042920678164]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [13.526229858398438, 52.58177420312145],\n            [13.526229858398438, 52.61013634893439],\n            [13.572921752929686, 52.61013634893439],\n            [13.572921752929686, 52.58177420312145],\n            [13.526229858398438, 52.58177420312145]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-on-feature/test/in/polygons.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.4638671875, 38.496593518947556],\n            [-81.05712890625, 38.22091976683121],\n            [-80.518798828125, 37.640334898059486],\n            [-78.81591796875, 36.730079507078415],\n            [-78.167724609375, 37.01132594307015],\n            [-78.673095703125, 37.55328764595765],\n            [-78.94775390625, 37.49229399862877],\n            [-79.112548828125, 37.68382032669382],\n            [-79.51904296874999, 37.75334401310656],\n            [-79.090576171875, 38.039438891821746],\n            [-79.47509765625, 38.1172716583054],\n            [-79.969482421875, 38.315801006824984],\n            [-79.683837890625, 38.47939467327645],\n            [-79.793701171875, 38.62545397209084],\n            [-80.09033203125, 38.71123253895224],\n            [-80.33203125, 39.104488809440475],\n            [-80.4638671875, 38.496593518947556]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.17919921875, 41.00477542222949],\n            [-77.091064453125, 40.97160353279909],\n            [-77.28881835937499, 40.27952566881291],\n            [-77.080078125, 40.271143686084194],\n            [-77.003173828125, 40.136890695345905],\n            [-76.7724609375, 40.195659093364654],\n            [-76.86035156249999, 39.93501296038254],\n            [-76.66259765625, 40.0360265298117],\n            [-76.37695312499999, 39.614152077002636],\n            [-75.992431640625, 39.614152077002636],\n            [-75.76171875, 39.42770738465604],\n            [-75.465087890625, 39.40224434029275],\n            [-75.377197265625, 39.68182601089365],\n            [-75.5419921875, 40.455307212131494],\n            [-76.17919921875, 40.55554790286311],\n            [-75.750732421875, 40.697299008636755],\n            [-76.1572265625, 40.72228267283148],\n            [-75.992431640625, 40.94671366508002],\n            [-76.17919921875, 41.00477542222949]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-on-feature/test/out/lines.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [24.08203125, -16.59408141271846],\n          [25.059814453125, -14.519780046326073]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [28.410644531249996, -14.955399325942619],\n          [28.7841796875, -15.845104902273452],\n          [27.6416015625, -16.13026201203474],\n          [27.432861328125, -17.518344187852218]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [26.652832031249996, -13.485789593908478],\n          [26.268310546875, -14.891704754215462],\n          [25.86181640625, -14.88108715909066],\n          [25.894775390625, -15.421910399947057],\n          [26.323242187499996, -15.5701278526594],\n          [26.224365234375, -16.066928957450106],\n          [26.510009765625, -16.583552354072005],\n          [25.927734374999996, -16.836089974560213],\n          [25.147705078125, -17.245744208007117],\n          [26.34521484375, -18.271086109608863],\n          [25.33447265625, -18.531700307384043]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [24.466552734375, -14.211138758545781],\n          [25.389404296875, -13.710035342476669],\n          [25.609130859375, -13.944729974920154],\n          [26.3671875, -13.090179355733726]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#F00\",\n        \"marker-style\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [26.323242, -15.570128]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-on-feature/test/out/multiline.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [92.08740234375, 50.708634400828224],\n            [93.0322265625, 50.84757295365389],\n            [94.32861328125, 50.499452103967734],\n            [95.25146484374999, 50.0077390146369],\n            [97.470703125, 49.908787000867136],\n            [98.4375, 50.51342652633956],\n            [98.10791015625, 51.467696956223385],\n            [99.5361328125, 52.07950600379697],\n            [101.14013671875, 51.645294049305406],\n            [102.37060546875, 51.22064743038333],\n            [102.37060546875, 50.764259357116465],\n            [103.18359375, 50.30337575356313],\n            [104.56787109374999, 50.24720490139267],\n            [105.84228515625, 50.54136296522161],\n            [106.89697265625, 50.2612538275847]\n          ],\n          [\n            [97.294921875, 53.605544099237974],\n            [99.4482421875, 54.213861000644926],\n            [99.73388671874999, 54.04648911335576],\n            [100.8984375, 53.969012350740314],\n            [101.29394531249999, 53.69670647530323]\n          ],\n          [\n            [95.0537109375, 47.68018294648414],\n            [96.416015625, 47.502358951968574],\n            [97.05322265625, 46.84516443029276],\n            [98.41552734375, 47.76886840424207],\n            [98.89892578125, 47.45780853075031]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#F00\",\n        \"marker-style\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [98.4375, 50.513427]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-on-feature/test/out/multipoint.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [63.6328125, 57.7041472343419],\n          [42.1875, 52.482780222078226],\n          [71.015625, 29.22889003019423],\n          [48.1640625, 37.71859032558816],\n          [73.47656249999999, 49.61070993807422]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#F00\",\n        \"marker-style\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [48.164063, 37.71859]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-on-feature/test/out/multipolygon.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [12.041015625, 36.66841891894786],\n              [12.041015625, 39.16414104768742],\n              [15.161132812500002, 39.16414104768742],\n              [15.161132812500002, 36.66841891894786],\n              [12.041015625, 36.66841891894786]\n            ]\n          ],\n          [\n            [\n              [15.732421875, 31.42866311735861],\n              [15.732421875, 34.92197103616377],\n              [19.775390625, 34.92197103616377],\n              [19.775390625, 31.42866311735861],\n              [15.732421875, 31.42866311735861]\n            ]\n          ],\n          [\n            [\n              [18.3251953125, 37.68382032669382],\n              [18.3251953125, 42.65012181368025],\n              [22.0166015625, 42.65012181368025],\n              [22.0166015625, 37.68382032669382],\n              [18.3251953125, 37.68382032669382]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#F00\",\n        \"marker-style\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [18.325195, 37.68382]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-on-feature/test/out/polygon-in-center.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [13.270797729492186, 52.42042920678164],\n            [13.270797729492186, 52.573846203920276],\n            [13.5186767578125, 52.573846203920276],\n            [13.5186767578125, 52.42042920678164],\n            [13.270797729492186, 52.42042920678164]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [13.526229858398438, 52.58177420312145],\n            [13.526229858398438, 52.61013634893439],\n            [13.572921752929686, 52.61013634893439],\n            [13.572921752929686, 52.58177420312145],\n            [13.526229858398438, 52.58177420312145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#F00\",\n        \"marker-style\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [13.42186, 52.515283]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-on-feature/test/out/polygons.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.4638671875, 38.496593518947556],\n            [-81.05712890625, 38.22091976683121],\n            [-80.518798828125, 37.640334898059486],\n            [-78.81591796875, 36.730079507078415],\n            [-78.167724609375, 37.01132594307015],\n            [-78.673095703125, 37.55328764595765],\n            [-78.94775390625, 37.49229399862877],\n            [-79.112548828125, 37.68382032669382],\n            [-79.51904296874999, 37.75334401310656],\n            [-79.090576171875, 38.039438891821746],\n            [-79.47509765625, 38.1172716583054],\n            [-79.969482421875, 38.315801006824984],\n            [-79.683837890625, 38.47939467327645],\n            [-79.793701171875, 38.62545397209084],\n            [-80.09033203125, 38.71123253895224],\n            [-80.33203125, 39.104488809440475],\n            [-80.4638671875, 38.496593518947556]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-76.17919921875, 41.00477542222949],\n            [-77.091064453125, 40.97160353279909],\n            [-77.28881835937499, 40.27952566881291],\n            [-77.080078125, 40.271143686084194],\n            [-77.003173828125, 40.136890695345905],\n            [-76.7724609375, 40.195659093364654],\n            [-76.86035156249999, 39.93501296038254],\n            [-76.66259765625, 40.0360265298117],\n            [-76.37695312499999, 39.614152077002636],\n            [-75.992431640625, 39.614152077002636],\n            [-75.76171875, 39.42770738465604],\n            [-75.465087890625, 39.40224434029275],\n            [-75.377197265625, 39.68182601089365],\n            [-75.5419921875, 40.455307212131494],\n            [-76.17919921875, 40.55554790286311],\n            [-75.750732421875, 40.697299008636755],\n            [-76.1572265625, 40.72228267283148],\n            [-75.992431640625, 40.94671366508002],\n            [-76.17919921875, 41.00477542222949]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#F00\",\n        \"marker-style\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.090576, 38.039439]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-on-feature/test.ts",
    "content": "import test from \"tape\";\nimport { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { truncate } from \"@turf/truncate\";\nimport { featureEach } from \"@turf/meta\";\nimport { featureCollection } from \"@turf/helpers\";\nimport { pointOnFeature } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-point-on-feature\", (t) => {\n  glob\n    .sync(path.join(__dirname, \"test\", \"in\", \"*.json\"))\n    .forEach((filepath) => {\n      const { name } = path.parse(filepath);\n      const geojson = loadJsonFileSync(filepath);\n      const ptOnFeature = pointOnFeature(geojson);\n\n      // Style Results\n      const results = featureCollection([]);\n      featureEach(geojson, (feature) => results.features.push(feature));\n      ptOnFeature.properties[\"marker-color\"] = \"#F00\";\n      ptOnFeature.properties[\"marker-style\"] = \"star\";\n      results.features.push(truncate(ptOnFeature));\n\n      // Save Tests\n      const out = filepath.replace(\n        path.join(\"test\", \"in\"),\n        path.join(\"test\", \"out\")\n      );\n      if (process.env.REGEN) writeJsonFileSync(out, results);\n      t.deepEqual(results, loadJsonFileSync(out), name);\n    });\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-point-on-feature/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/README.md",
    "content": "# @turf/point-to-line-distance\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## pointToLineDistance\n\nCalculates the distance between a given point and the nearest point on a\nline. Sometimes referred to as the cross track distance.\n\n### Parameters\n\n*   `pt` **([Feature][1]<[Point][2]> | [Array][3]<[number][4]>)** Feature or Geometry\n*   `line` **[Feature][1]<[LineString][5]>** GeoJSON Feature or Geometry\n*   `options` **[Object][6]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** Supports all valid Turf [Units][7] (optional, default `\"kilometers\"`)\n    *   `options.method` **[string][8]** whether to calculate the distance based on geodesic (spheroid) or\n        planar (flat) method. Valid options are 'geodesic' or 'planar'. (optional, default `\"geodesic\"`)\n\n### Examples\n\n```javascript\nvar pt = turf.point([0, 0]);\nvar line = turf.lineString([[1, 1],[-1, 1]]);\n\nvar distance = turf.pointToLineDistance(pt, line, {units: 'miles'});\n//=69.11854715938406\n```\n\nReturns **[number][4]** distance between point and line\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[7]: https://turfjs.org/docs/api/types/Units\n\n[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/point-to-line-distance\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { pointToLineDistance } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Single Process Benchmark\n *\n * city-line1: 2.922ms\n * city-line2: 0.113ms\n * city-segment-inside1: 0.042ms\n * city-segment-inside2: 0.034ms\n * city-segment-inside3: 0.032ms\n * city-segment-obtuse1: 0.030ms\n * city-segment-obtuse2: 0.029ms\n * city-segment-projected1: 0.030ms\n * city-segment-projected2: 0.029ms\n * issue-1156: 0.046ms\n * line-fiji: 0.107ms\n * line-resolute-bay: 0.059ms\n * line1: 0.079ms\n * line2: 0.115ms\n * segment-fiji: 0.050ms\n * segment1: 0.069ms\n * segment1a: 0.037ms\n * segment2: 0.071ms\n * segment3: 0.043ms\n * segment4: 0.035ms\n */\nfor (const { name, geojson } of fixtures) {\n  const [point, line] = geojson.features;\n  let { units } = geojson.properties || {};\n  if (!units) units = \"kilometers\";\n  console.time(name);\n  pointToLineDistance(point, line, { units: units });\n  console.timeEnd(name);\n}\n\n/**\n * Benchmark Results\n *\n * city-line1 x 241,682 ops/sec ±1.01% (84 runs sampled)\n * city-line2 x 343,906 ops/sec ±1.01% (82 runs sampled)\n * city-segment-inside1 x 605,854 ops/sec ±1.59% (82 runs sampled)\n * city-segment-inside2 x 662,380 ops/sec ±1.45% (84 runs sampled)\n * city-segment-inside3 x 635,562 ops/sec ±2.29% (78 runs sampled)\n * city-segment-obtuse1 x 749,977 ops/sec ±1.27% (86 runs sampled)\n * city-segment-obtuse2 x 744,285 ops/sec ±1.54% (88 runs sampled)\n * city-segment-projected1 x 765,848 ops/sec ±0.64% (87 runs sampled)\n * city-segment-projected2 x 737,822 ops/sec ±1.65% (85 runs sampled)\n * issue-1156 x 443,056 ops/sec ±1.44% (83 runs sampled)\n * line-fiji x 126,628 ops/sec ±1.34% (87 runs sampled)\n * line-resolute-bay x 537,213 ops/sec ±1.44% (90 runs sampled)\n * line1 x 182,059 ops/sec ±0.83% (85 runs sampled)\n * line2 x 404,766 ops/sec ±2.15% (87 runs sampled)\n * segment-fiji x 634,658 ops/sec ±1.58% (85 runs sampled)\n * segment1 x 582,624 ops/sec ±2.53% (80 runs sampled)\n * segment1a x 600,014 ops/sec ±1.08% (82 runs sampled)\n * segment2 x 595,434 ops/sec ±2.17% (81 runs sampled)\n * segment3 x 692,171 ops/sec ±1.16% (82 runs sampled)\n * segment4 x 681,063 ops/sec ±0.95% (86 runs sampled)\n */\nlet totalTime = 0.0;\nconst suite = new Benchmark.Suite(\"turf-point-to-line-distance\");\nfor (const { name, geojson } of fixtures) {\n  const [point, line] = geojson.features;\n  let { units } = geojson.properties || {};\n  if (!units) units = \"kilometers\";\n  suite.add(name, () => pointToLineDistance(point, line, { units: units }), {\n    onComplete: (e: Event) =>\n      (totalTime = totalTime += e.target.times?.elapsed),\n  });\n}\n\nsuite\n  .on(\"cycle\", (e: Event) => console.log(String(e.target)))\n  .on(\"complete\", () =>\n    console.log(`completed in ${totalTime.toFixed(2)} seconds`)\n  )\n  .run();\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/index.ts",
    "content": "// Taken from http://geomalgorithms.com/a02-_lines.html\nimport { Feature, LineString } from \"geojson\";\nimport {\n  convertLength,\n  Coord,\n  feature,\n  lineString,\n  point,\n  Units,\n} from \"@turf/helpers\";\nimport { nearestPointOnLine } from \"@turf/nearest-point-on-line\";\nimport { featureOf } from \"@turf/invariant\";\nimport { segmentEach } from \"@turf/meta\";\nimport { rhumbDistance } from \"@turf/rhumb-distance\";\n\n/**\n * Calculates the distance between a given point and the nearest point on a\n * line. Sometimes referred to as the cross track distance.\n *\n * @function\n * @param {Feature<Point>|Array<number>} pt Feature or Geometry\n * @param {Feature<LineString>} line GeoJSON Feature or Geometry\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units=\"kilometers\"] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}\n * @param {string} [options.method=\"geodesic\"] whether to calculate the distance based on geodesic (spheroid) or\n * planar (flat) method. Valid options are 'geodesic' or 'planar'.\n * @returns {number} distance between point and line\n * @example\n * var pt = turf.point([0, 0]);\n * var line = turf.lineString([[1, 1],[-1, 1]]);\n *\n * var distance = turf.pointToLineDistance(pt, line, {units: 'miles'});\n * //=69.11854715938406\n */\nfunction pointToLineDistance(\n  pt: Coord,\n  line: Feature<LineString> | LineString,\n  options: {\n    units?: Units;\n    method?: \"geodesic\" | \"planar\";\n  } = {}\n): number {\n  // Optional parameters\n  const method = options.method ?? \"geodesic\";\n  const units = options.units ?? \"kilometers\";\n\n  // validation\n  if (!pt) {\n    throw new Error(\"pt is required\");\n  }\n  if (Array.isArray(pt)) {\n    pt = point(pt);\n  } else if (pt.type === \"Point\") {\n    pt = feature(pt);\n  } else {\n    featureOf(pt, \"Point\", \"point\");\n  }\n\n  if (!line) {\n    throw new Error(\"line is required\");\n  }\n  if (Array.isArray(line)) {\n    line = lineString(line);\n  } else if (line.type === \"LineString\") {\n    line = feature(line);\n  } else {\n    featureOf(line, \"LineString\", \"line\");\n  }\n\n  let distance = Infinity;\n  const p = pt.geometry.coordinates;\n  segmentEach(line, (segment) => {\n    if (segment) {\n      const a = segment.geometry.coordinates[0];\n      const b = segment.geometry.coordinates[1];\n      const d = distanceToSegment(p, a, b, { method });\n      if (d < distance) {\n        distance = d;\n      }\n    }\n  });\n  return convertLength(distance, \"degrees\", units);\n}\n\n/**\n * Returns the distance between a point P on a segment AB.\n *\n * @private\n * @param {Array<number>} p external point\n * @param {Array<number>} a first segment point\n * @param {Array<number>} b second segment point\n * @param {Object} [options={}] Optional parameters\n * @returns {number} distance\n */\nfunction distanceToSegment(\n  p: number[], // point to measure from\n  a: number[], // start point of the segment to measure to\n  b: number[], // end point of the segment to measure to\n  options: {\n    method: \"geodesic\" | \"planar\";\n  }\n) {\n  // Internally just use degrees, and then convert to the user's requested units\n  // in the calling function.\n  if (options.method === \"geodesic\") {\n    // Use nearestPointOnLine to properly calculate distances on a spherical\n    // Earth.\n    const nearest = nearestPointOnLine(lineString([a, b]).geometry, p, {\n      units: \"degrees\",\n    });\n    return nearest.properties.pointDistance;\n  }\n\n  // Perform scalar calculations instead using rhumb lines.\n  const v = [b[0] - a[0], b[1] - a[1]];\n  const w = [p[0] - a[0], p[1] - a[1]];\n\n  const c1 = dot(w, v);\n  if (c1 <= 0) {\n    return rhumbDistance(p, a, { units: \"degrees\" });\n  }\n  const c2 = dot(v, v);\n  if (c2 <= c1) {\n    return rhumbDistance(p, b, { units: \"degrees\" });\n  }\n  const b2 = c1 / c2;\n  const Pb = [a[0] + b2 * v[0], a[1] + b2 * v[1]];\n\n  return rhumbDistance(p, Pb, { units: \"degrees\" });\n}\n\nfunction dot(u: number[], v: number[]) {\n  return u[0] * v[0] + u[1] * v[1];\n}\n\nexport { pointToLineDistance };\nexport default pointToLineDistance;\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/package.json",
    "content": "{\n  \"name\": \"@turf/point-to-line-distance\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Calculates the distance between a given point and the nearest point on a line.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Stefano Borghi <@stebogit>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"point-to-line-distance\",\n    \"distance\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/circle\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/bearing\": \"workspace:*\",\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@turf/nearest-point-on-line\": \"workspace:*\",\n    \"@turf/projection\": \"workspace:*\",\n    \"@turf/rhumb-bearing\": \"workspace:*\",\n    \"@turf/rhumb-distance\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/city-line1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3767967224121093, 39.4689324766527]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-0.40567874908447266, 39.47386857192064],\n          [-0.3963661193847656, 39.47578991028725],\n          [-0.38035869598388666, 39.482216070269594],\n          [-0.3776121139526367, 39.48195108571802],\n          [-0.3689002990722656, 39.47641930269614],\n          [-0.35945892333984375, 39.46349905420083],\n          [-0.35782814025878906, 39.45982131412374],\n          [-0.3458118438720703, 39.453890134716616]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/city-line2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-3.592529296875, 40.573804799488194]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-3.8884735107421875, 40.420292132688964],\n          [-3.736724853515625, 40.276906410822825],\n          [-3.5025787353515625, 40.422383097039905],\n          [-3.5018920898437496, 40.516409213865586],\n          [-3.668060302734375, 40.559199680578075]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/city-segment-inside1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"miles\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.0047149658203125, 37.365109304227246]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-6.0150146484375, 37.38011551844836],\n          [-5.931415557861328, 37.39702801486944]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/city-segment-inside2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3767967224121093, 39.4689324766527]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-0.3689861297607422, 39.47648555419739],\n          [-0.3595447540283203, 39.46363158174706]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/city-segment-inside3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-3.592529296875, 40.573804799488194]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-3.503265380859375, 40.51693121343741],\n          [-3.6694335937500004, 40.560764667193595]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/city-segment-obtuse1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.030292510986328, 37.35746862390723]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-6.0150146484375, 37.38011551844836],\n          [-5.931415557861328, 37.39702801486944]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/city-segment-obtuse2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.025829315185546, 37.40902811697313]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-6.0150146484375, 37.38011551844836],\n          [-5.932445526123047, 37.36770150115655]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/city-segment-projected1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-5.914421081542969, 37.426343057829385]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-6.0150146484375, 37.38011551844836],\n          [-5.931415557861328, 37.39702801486944]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/city-segment-projected2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-5.926437377929687, 37.32785364060672]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-6.0150146484375, 37.38011551844836],\n          [-5.9326171875, 37.364972870329154]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/issue-1156.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"meters\",\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.028348, 41]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [10.983200073242188, 40.97075154073346],\n          [11.02834701538086, 40.98372150040732],\n          [11.02508544921875, 41.00716631272605],\n          [10.994186401367188, 41.01947819666632]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/line-fiji.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.46142578124997, -17.481671724450752]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-183.131103515625, -17.675427818339383],\n          [-181.50512695312497, -16.04581345375217],\n          [-177.802734375, -16.615137799987075],\n          [-179.47265625, -17.947380678685203],\n          [-179.60449218749997, -16.383391123608387],\n          [-181.087646484375, -17.70682812401954],\n          [-179.93408203125, -15.432500881886043],\n          [-180.010986328125, -18.458768120015126],\n          [-181.834716796875, -17.832374329567507],\n          [-180.15380859375, -15.601874876739798],\n          [-178.08837890625, -16.320139453117562],\n          [-179.01123046874997, -18.98941471523932],\n          [-183.240966796875, -16.53089842368168],\n          [-182.4169921875, -18.67747125852608],\n          [-182.274169921875, -16.003575733881313]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/line-resolute-bay.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"miles\",\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-7.734374999999999, 70.4367988185464]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-60.8203125, 64.99793920061401],\n          [-31.640625, 76.96033358827414],\n          [-5.625, 76.55774293896555]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/line1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"miles\",\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-47.08740234375, 32.26855544621476]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-55.06347656249999, 29.973970240516614],\n          [-45.439453125, 36.58024660149866],\n          [-49.04296875, 31.914867503276223],\n          [-43.39599609375, 33.99802726234877],\n          [-46.51611328125, 29.707139348134145],\n          [-52.4267578125, 32.37996146435729],\n          [-50.11962890625, 28.43971381702788],\n          [-52.998046875, 27.430289738862594],\n          [-50.0537109375, 35.02999636902566],\n          [-42.38525390625, 31.466153715024294]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/line2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.54931640625, 0.7470491450051796]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 3],\n          [2, 2],\n          [2, 0],\n          [-1.5, -1.5]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/segment-fiji.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.46142578124997, -17.481671724450752]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-181.087646484375, -17.69897856226166],\n          [-179.60586547851562, -16.380756046586434]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/segment1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"miles\",\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [2, 0]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/segment1a.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"miles\",\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, -1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [2, 0]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/segment2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"miles\",\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, -1]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/segment3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"miles\",\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [2, 1],\n          [3, 1]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/in/segment4.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"miles\",\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-48.076171875, 15.453680224345835]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-51.5478515625, 19.352610894378625],\n          [-29.794921874999996, 27.176469131898898]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/city-line1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3767967224121093, 39.4689324766527]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-0.40567874908447266, 39.47386857192064],\n          [-0.3963661193847656, 39.47578991028725],\n          [-0.38035869598388666, 39.482216070269594],\n          [-0.3776121139526367, 39.48195108571802],\n          [-0.3689002990722656, 39.47641930269614],\n          [-0.35945892333984375, 39.46349905420083],\n          [-0.35782814025878906, 39.45982131412374],\n          [-0.3458118438720703, 39.453890134716616]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.3767967224121093, 39.47792027425889],\n            [-0.3771624752655126, 39.477915838750505],\n            [-0.3775278670252035, 39.47790253660436],\n            [-0.3778925369543775, 39.477880380953145],\n            [-0.37825612502969186, 39.47784939367026],\n            [-0.3786182722971102, 39.47780960534819],\n            [-0.3789786212266862, 39.47776105526827],\n            [-0.3793368160659328, 39.477703791361854],\n            [-0.3796925031914264, 39.477637870162965],\n            [-0.38004533145829766, 39.47756335675235],\n            [-0.38039495254726097, 39.47748032469325],\n            [-0.3807410213088388, 39.47738885595864],\n            [-0.3810831961044393, 39.47728904085019],\n            [-0.38142113914394893, 39.477180977909086],\n            [-0.3817545168195042, 39.47706477381856],\n            [-0.382083000035113, 39.47694054329855],\n            [-0.3824062645317976, 39.47680840899221],\n            [-0.3827239912079377, 39.4766685013448],\n            [-0.38303586643449467, 39.47652095847477],\n            [-0.38334158236480737, 39.47636592603721],\n            [-0.38364083723864917, 39.476203557079955],\n            [-0.3839333356802484, 39.47603401189237],\n            [-0.3842187889899756, 39.475857457846914],\n            [-0.384496915429408, 39.475674069233804],\n            [-0.3847674404994925, 39.475484027088775],\n            [-0.3850300972115282, 39.47528751901423],\n            [-0.3852846263507043, 39.47508473899386],\n            [-0.38553077673193015, 39.474875887201],\n            [-0.38576830544770735, 39.47466116980091],\n            [-0.3859969781077976, 39.47444079874704],\n            [-0.38621656907045027, 39.47421499157169],\n            [-0.38642686166496354, 39.47398397117111],\n            [-0.386627648405357, 39.47374796558531],\n            [-0.38681873119494825, 39.47350720777287],\n            [-0.3869999215216302, 39.47326193538074],\n            [-0.38717104064365965, 39.47301239050961],\n            [-0.38733191976577114, 39.47275881947478],\n            [-0.3874824002054476, 39.47250147256287],\n            [-0.38762233354918196, 39.4722406037847],\n            [-0.3877515817985777, 39.4719764706244],\n            [-0.3878700175061461, 39.47170933378517],\n            [-0.38797752390066703, 39.471439456931904],\n            [-0.38807399500199163, 39.4711671064308],\n            [-0.3881593357251753, 39.470892551086365],\n            [-0.3882334619738392, 39.470616061876036],\n            [-0.3882963007226719, 39.47033791168274],\n            [-0.3883477900889894, 39.47005837502537],\n            [-0.3883878793932865, 39.4697777277879],\n            [-0.38841652920872133, 39.469496246947024],\n            [-0.38843371139948607, 39.46921421029877],\n            [-0.388439409148029, 39.468931896184316],\n            [-0.3884336169711014, 39.468649583215274],\n            [-0.38841634072461756, 39.46836754999878],\n            [-0.38838759759732433, 39.46808607486242],\n            [-0.3883474160932887, 39.46780543557975],\n            [-0.38829583600322265, 39.46752590909604],\n            [-0.3882329083646765, 39.46724777125512],\n            [-0.38815869541114156, 39.46697129652716],\n            [-0.3880732705101136, 39.46669675773789],\n            [-0.38797671809018286, 39.46642442579944],\n            [-0.38786913355722147, 39.466154569443056],\n            [-0.38775062319975484, 39.46588745495404],\n            [-0.3876213040836124, 39.46562334590907],\n            [-0.3874813039359612, 39.465362502916186],\n            [-0.3873307610188425, 39.46510518335776],\n            [-0.38716982399233335, 39.46485164113664],\n            [-0.38699865176747295, 39.46460212642576],\n            [-0.3868174133490992, 39.46435688542136],\n            [-0.3866262876687516, 39.464116160100275],\n            [-0.3864254634078073, 39.46388018798123],\n            [-0.3862151388110252, 39.46364920189072],\n            [-0.38599552149068406, 39.46342342973334],\n            [-0.3857668282215075, 39.463203094267165],\n            [-0.38552928472658077, 39.462988412884016],\n            [-0.38528312545446874, 39.46277959739524],\n            [-0.38502859334775835, 39.46257685382277],\n            [-0.3847659396032515, 39.46238038219614],\n            [-0.3844954234240478, 39.462190376355174],\n            [-0.3842173117637596, 39.462007023759014],\n            [-0.3839318790631139, 39.46183050530124],\n            [-0.38363940697919835, 39.461660995131645],\n            [-0.3833401841076213, 39.46149866048446],\n            [-0.3830345056978558, 39.461343661513645],\n            [-0.3827226733620519, 39.46119615113497],\n            [-0.3824049947776009, 39.46105627487531],\n            [-0.3820817833837452, 39.46092417072921],\n            [-0.38175335807253274, 39.46079996902291],\n            [-0.381420042874419, 39.46068379228587],\n            [-0.38108216663882616, 39.46057575513005],\n            [-0.3807400627099731, 39.46047596413694],\n            [-0.3803940685982949, 39.46038451775254],\n            [-0.3800445256477741, 39.46030150619032],\n            [-0.37969177869951154, 39.46022701134236],\n            [-0.37933617575186546, 39.46016110669864],\n            [-0.37897806761749375, 39.46010385727459],\n            [-0.37861780757763525, 39.46005531954705],\n            [-0.37825575103397013, 39.46001554139865],\n            [-0.3778922551583994, 39.45998456207056],\n            [-0.377527678541089, 39.459962412123865],\n            [-0.37716238083712245, 39.45994911340946],\n            [-0.3767967224121093, 39.459944679046494],\n            [-0.37643106398709625, 39.45994911340946],\n            [-0.37606576628312965, 39.459962412123865],\n            [-0.3757011896658193, 39.45998456207056],\n            [-0.37533769379024856, 39.46001554139865],\n            [-0.3749756372465834, 39.46005531954705],\n            [-0.37461537720672494, 39.46010385727459],\n            [-0.37425726907235324, 39.46016110669864],\n            [-0.37390166612470715, 39.46022701134236],\n            [-0.3735489191764446, 39.46030150619032],\n            [-0.37319937622592386, 39.46038451775254],\n            [-0.37285338211424557, 39.46047596413694],\n            [-0.37251127818539254, 39.46057575513005],\n            [-0.3721734019497997, 39.46068379228587],\n            [-0.37184008675168595, 39.46079996902291],\n            [-0.3715116614404735, 39.46092417072921],\n            [-0.37118845004661777, 39.46105627487531],\n            [-0.3708707714621668, 39.46119615113497],\n            [-0.3705589391263629, 39.461343661513645],\n            [-0.3702532607165974, 39.46149866048446],\n            [-0.36995403784502034, 39.461660995131645],\n            [-0.3696615657611048, 39.46183050530124],\n            [-0.3693761330604591, 39.462007023759014],\n            [-0.3690980214001709, 39.462190376355174],\n            [-0.3688275052209672, 39.46238038219614],\n            [-0.36856485147646034, 39.46257685382277],\n            [-0.36831031936974995, 39.46277959739524],\n            [-0.3680641600976379, 39.462988412884016],\n            [-0.3678266166027112, 39.463203094267165],\n            [-0.36759792333353475, 39.46342342973334],\n            [-0.36737830601319343, 39.46364920189072],\n            [-0.3671679814164114, 39.46388018798123],\n            [-0.36696715715546707, 39.464116160100275],\n            [-0.36677603147511945, 39.46435688542136],\n            [-0.3665947930567457, 39.46460212642576],\n            [-0.36642362083188534, 39.46485164113664],\n            [-0.36626268380537613, 39.46510518335776],\n            [-0.36611214088825744, 39.465362502916186],\n            [-0.3659721407406063, 39.46562334590907],\n            [-0.3658428216244638, 39.46588745495404],\n            [-0.3657243112669972, 39.466154569443056],\n            [-0.36561672673403584, 39.46642442579944],\n            [-0.3655201743141051, 39.46669675773789],\n            [-0.36543474941307713, 39.46697129652716],\n            [-0.3653605364595422, 39.46724777125512],\n            [-0.36529760882099604, 39.46752590909604],\n            [-0.36524602873093, 39.46780543557975],\n            [-0.36520584722689436, 39.46808607486242],\n            [-0.36517710409960114, 39.46836754999878],\n            [-0.3651598278531173, 39.468649583215274],\n            [-0.3651540356761897, 39.468931896184316],\n            [-0.3651597334247326, 39.46921421029877],\n            [-0.3651769156154974, 39.469496246947024],\n            [-0.3652055654309322, 39.4697777277879],\n            [-0.36524565473522935, 39.47005837502537],\n            [-0.3652971441015468, 39.47033791168274],\n            [-0.3653599828503795, 39.470616061876036],\n            [-0.3654341090990434, 39.470892551086365],\n            [-0.365519449822227, 39.4711671064308],\n            [-0.36561592092355166, 39.471439456931904],\n            [-0.3657234273180726, 39.47170933378517],\n            [-0.365841863025641, 39.4719764706244],\n            [-0.36597111127503673, 39.4722406037847],\n            [-0.3661110446187711, 39.47250147256287],\n            [-0.36626152505844756, 39.47275881947478],\n            [-0.36642240418055905, 39.47301239050961],\n            [-0.3665935233025885, 39.47326193538074],\n            [-0.3667747136292705, 39.47350720777287],\n            [-0.36696579641886173, 39.47374796558531],\n            [-0.36716658315925516, 39.47398397117111],\n            [-0.3673768757537684, 39.47421499157169],\n            [-0.3675964667164211, 39.47444079874704],\n            [-0.3678251393765113, 39.47466116980091],\n            [-0.36806266809228855, 39.474875887201],\n            [-0.36830881847351443, 39.47508473899386],\n            [-0.3685633476126905, 39.47528751901423],\n            [-0.3688260043247262, 39.475484027088775],\n            [-0.3690965293948107, 39.475674069233804],\n            [-0.36937465583424317, 39.475857457846914],\n            [-0.3696601091439703, 39.47603401189237],\n            [-0.3699526075855695, 39.476203557079955],\n            [-0.37025186245941133, 39.47636592603721],\n            [-0.370557578389724, 39.47652095847477],\n            [-0.370869453616281, 39.4766685013448],\n            [-0.37118718029242104, 39.47680840899221],\n            [-0.3715104447891057, 39.47694054329855],\n            [-0.3718389280047145, 39.47706477381856],\n            [-0.37217230568026977, 39.477180977909086],\n            [-0.37251024871977945, 39.47728904085019],\n            [-0.3728524235153799, 39.47738885595864],\n            [-0.3731984922769577, 39.47748032469325],\n            [-0.37354811336592103, 39.47756335675235],\n            [-0.3739009416327923, 39.477637870162965],\n            [-0.3742566287582859, 39.477703791361854],\n            [-0.3746148235975325, 39.47776105526827],\n            [-0.3749751725271085, 39.47780960534819],\n            [-0.3753373197945268, 39.47784939367026],\n            [-0.3757009078698411, 39.477880380953145],\n            [-0.37606557779901517, 39.47790253660436],\n            [-0.3764309695587061, 39.477915838750505],\n            [-0.3767967224121093, 39.47792027425889]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/city-line2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-3.592529296875, 40.573804799488194]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-3.8884735107421875, 40.420292132688964],\n          [-3.736724853515625, 40.276906410822825],\n          [-3.5025787353515625, 40.422383097039905],\n          [-3.5018920898437496, 40.516409213865586],\n          [-3.668060302734375, 40.559199680578075]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-3.592529296875, 40.60602538523366],\n            [-3.5938623697696777, 40.60600947866],\n            [-3.5951941251810005, 40.6059617746596],\n            [-3.5965232469333337, 40.60588232037856],\n            [-3.597848421465152, 40.605771194341706],\n            [-3.599168339132803, 40.60562850637471],\n            [-3.6004816955103065, 40.605454397494974],\n            [-3.6017871926838874, 40.60524903977175],\n            [-3.60308354053994, 40.60501263615534],\n            [-3.604369458045117, 40.60474542027563],\n            [-3.605643674517246, 40.60444765621031],\n            [-3.6069049308858205, 40.604119638222734],\n            [-3.6081519809407654, 40.60376169046993],\n            [-3.6093835925682267, 40.60337416668096],\n            [-3.6105985489721633, 40.60295744980593],\n            [-3.6117956498804844, 40.60251195163606],\n            [-3.6129737127345343, 40.602038112395086],\n            [-3.614131573860742, 40.60153640030268],\n            [-3.615268089623238, 40.60100731110987],\n            [-3.6163821375562972, 40.600451367607434],\n            [-3.6174726174754857, 40.599869119107396],\n            [-3.618538452566372, 40.599261140898285],\n            [-3.6195785904497506, 40.598628033674714],\n            [-3.6205920042222894, 40.59797042294182],\n            [-3.621577693471587, 40.59728895839522],\n            [-3.6225346852646085, 40.596584313276956],\n            [-3.623462035108548, 40.595857183708304],\n            [-3.624358827883139, 40.5951082879999],\n            [-3.6252241787435158, 40.59433836594002],\n            [-3.6260572339927157, 40.59354817806165],\n            [-3.62685717192298, 40.59273850488912],\n            [-3.6276232036250193, 40.59191014616502],\n            [-3.628354573764453, 40.59106392005826],\n            [-3.6290505613246657, 40.59020066235392],\n            [-3.62971048031536, 40.58932122562581],\n            [-3.6303336804461153, 40.58842647839257],\n            [-3.630919547764299, 40.587517304258114],\n            [-3.6314675052567225, 40.58659460103716],\n            [-3.6319770134144673, 40.585659279867144],\n            [-3.6324475707603225, 40.58471226430669],\n            [-3.6328787143383634, 40.58375448942232],\n            [-3.63327002016518, 40.58278690086369],\n            [-3.6336211036423567, 40.58181045392862],\n            [-3.633931619929799, 40.5808261126188],\n            [-3.6342012642795796, 40.57983484868691],\n            [-3.6344297723299896, 40.57883764067638],\n            [-3.6346169203595404, 40.57783547295455],\n            [-3.6347625255006792, 40.57682933474024],\n            [-3.63486644591305, 40.5758202191268],\n            [-3.634928580916152, 40.574809122101335],\n            [-3.634948871081288, 40.5737970415614],\n            [-3.634927298282747, 40.57278497632995],\n            [-3.6348638857082016, 40.57177392516953],\n            [-3.634758697828335, 40.57076488579669],\n            [-3.634611840325757, 40.56975885389766],\n            [-3.634423459983317, 40.568756822146185],\n            [-3.634193744531938, 40.56775977922449],\n            [-3.633922922458165, 40.56676870884838],\n            [-3.633611262771641, 40.56578458879742],\n            [-3.633259074732764, 40.56480838995108],\n            [-3.6328667075408254, 40.56384107533194],\n            [-3.632434549982963, 40.562883599156734],\n            [-3.6319630300442993, 40.56193690589624],\n            [-3.6314526144796724, 40.561001929345],\n            [-3.6309038083474134, 40.560079591701616],\n            [-3.6303171545056356, 40.55917080266072],\n            [-3.6296932330715803, 40.55827645851727],\n            [-3.629032660844533, 40.55739744128436],\n            [-3.6283360906929456, 40.55653461782507],\n            [-3.6276042109063398, 40.555688838999465],\n            [-3.6268377445126796, 40.554860938827396],\n            [-3.6260374485618803, 40.554051733668075],\n            [-3.625204113376179, 40.55326202141707],\n            [-3.624338561768121, 40.552492580721626],\n            [-3.623441648226934, 40.551744170214995],\n            [-3.6225142580741014, 40.55101752777059],\n            [-3.621557306588975, 40.55031336977659],\n            [-3.6205717381052898, 40.5496323904318],\n            [-3.6195585250794804, 40.548975261063426],\n            [-3.6185186671316982, 40.54834262946732],\n            [-3.6174531900605027, 40.54773511927155],\n            [-3.6163631448321643, 40.547153329323706],\n            [-3.615249606545591, 40.54659783310261],\n            [-3.6141136733738826, 40.54606917815507],\n            [-3.612956465483545, 40.545567885558086],\n            [-3.6117791239324273, 40.54509444940715],\n            [-3.6105828095474526, 40.544649336331084],\n            [-3.6093687017832248, 40.54423298503387],\n            [-3.608137997562646, 40.543845805863945],\n            [-3.6068919101006354, 40.543488180411345],\n            [-3.6056316677121316, 40.543160461133176],\n            [-3.6043585126054922, 40.542862971007594],\n            [-3.6030736996624992, 40.54259600321684],\n            [-3.601778495206115, 40.54235982085949],\n            [-3.600474175757211, 40.54215465669224],\n            [-3.5991620267814475, 40.541980712901506],\n            [-3.5978433414275304, 40.541838160905],\n            [-3.596519419258057, 40.54172714118353],\n            [-3.5951915649741717, 40.541647763143175],\n            [-3.5938610871352736, 40.54160010500787],\n            [-3.592529296875, 40.541584213742716],\n            [-3.591197506614727, 40.54160010500787],\n            [-3.589867028775829, 40.541647763143175],\n            [-3.5885391744919435, 40.54172714118353],\n            [-3.58721525232247, 40.541838160905],\n            [-3.585896566968553, 40.541980712901506],\n            [-3.5845844179927893, 40.54215465669224],\n            [-3.5832800985438857, 40.54235982085949],\n            [-3.5819848940875008, 40.54259600321684],\n            [-3.5807000811445078, 40.542862971007594],\n            [-3.5794269260378693, 40.543160461133176],\n            [-3.5781666836493646, 40.543488180411345],\n            [-3.576920596187355, 40.543845805863945],\n            [-3.5756898919667752, 40.54423298503387],\n            [-3.574475784202548, 40.544649336331084],\n            [-3.5732794698175727, 40.54509444940715],\n            [-3.572102128266455, 40.545567885558086],\n            [-3.570944920376118, 40.54606917815507],\n            [-3.569808987204409, 40.54659783310261],\n            [-3.5686954489178366, 40.547153329323706],\n            [-3.567605403689498, 40.54773511927155],\n            [-3.566539926618302, 40.54834262946732],\n            [-3.5655000686705205, 40.548975261063426],\n            [-3.5644868556447102, 40.5496323904318],\n            [-3.5635012871610257, 40.55031336977659],\n            [-3.562544335675899, 40.55101752777059],\n            [-3.5616169455230664, 40.551744170214995],\n            [-3.5607200319818793, 40.552492580721626],\n            [-3.5598544803738217, 40.55326202141707],\n            [-3.5590211451881197, 40.554051733668075],\n            [-3.5582208492373204, 40.554860938827396],\n            [-3.5574543828436602, 40.555688838999465],\n            [-3.5567225030570553, 40.55653461782507],\n            [-3.556025932905467, 40.55739744128436],\n            [-3.55536536067842, 40.55827645851727],\n            [-3.5547414392443635, 40.55917080266072],\n            [-3.5541547854025874, 40.560079591701616],\n            [-3.553605979270328, 40.561001929345],\n            [-3.5530955637057016, 40.56193690589624],\n            [-3.5526240437670373, 40.562883599156734],\n            [-3.5521918862091746, 40.56384107533194],\n            [-3.551799519017236, 40.56480838995108],\n            [-3.5514473309783594, 40.56578458879742],\n            [-3.551135671291835, 40.56676870884838],\n            [-3.550864849218062, 40.56775977922449],\n            [-3.5506351337666833, 40.568756822146185],\n            [-3.5504467534242434, 40.56975885389766],\n            [-3.5502998959216656, 40.57076488579669],\n            [-3.5501947080417984, 40.57177392516953],\n            [-3.550131295467253, 40.57278497632995],\n            [-3.550109722668712, 40.5737970415614],\n            [-3.5501300128338475, 40.574809122101335],\n            [-3.55019214783695, 40.5758202191268],\n            [-3.550296068249321, 40.57682933474024],\n            [-3.55044167339046, 40.57783547295455],\n            [-3.55062882142001, 40.57883764067638],\n            [-3.550857329470421, 40.57983484868691],\n            [-3.551126973820201, 40.5808261126188],\n            [-3.5514374901076438, 40.58181045392862],\n            [-3.55178857358482, 40.58278690086369],\n            [-3.5521798794116375, 40.58375448942232],\n            [-3.5526110229896775, 40.58471226430669],\n            [-3.5530815803355327, 40.585659279867144],\n            [-3.5535910884932775, 40.58659460103716],\n            [-3.554139045985701, 40.587517304258114],\n            [-3.5547249133038847, 40.58842647839257],\n            [-3.5553481134346394, 40.58932122562581],\n            [-3.5560080324253347, 40.59020066235392],\n            [-3.556704019985547, 40.59106392005826],\n            [-3.5574353901249807, 40.59191014616502],\n            [-3.55820142182702, 40.59273850488912],\n            [-3.5590013597572843, 40.59354817806165],\n            [-3.5598344150064842, 40.59433836594002],\n            [-3.5606997658668607, 40.5951082879999],\n            [-3.5615965586414524, 40.595857183708304],\n            [-3.5625239084853915, 40.596584313276956],\n            [-3.5634809002784134, 40.59728895839522],\n            [-3.5644665895277106, 40.59797042294182],\n            [-3.5654800033002503, 40.598628033674714],\n            [-3.566520141183629, 40.599261140898285],\n            [-3.567585976274515, 40.599869119107396],\n            [-3.5686764561937028, 40.600451367607434],\n            [-3.5697905041267624, 40.60100731110987],\n            [-3.570927019889258, 40.60153640030268],\n            [-3.572084881015466, 40.602038112395086],\n            [-3.573262943869516, 40.60251195163606],\n            [-3.574460044777836, 40.60295744980593],\n            [-3.5756750011817733, 40.60337416668096],\n            [-3.576906612809235, 40.60376169046993],\n            [-3.5781536628641795, 40.604119638222734],\n            [-3.5794149192327547, 40.60444765621031],\n            [-3.580689135704884, 40.60474542027563],\n            [-3.58197505321006, 40.60501263615534],\n            [-3.583271401066113, 40.60524903977175],\n            [-3.584576898239694, 40.605454397494974],\n            [-3.585890254617197, 40.60562850637471],\n            [-3.5872101722848484, 40.605771194341706],\n            [-3.5885353468166667, 40.60588232037856],\n            [-3.589864468568999, 40.6059617746596],\n            [-3.591196223980323, 40.60600947866],\n            [-3.592529296875, 40.60602538523366]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/city-segment-inside1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"miles\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.0047149658203125, 37.365109304227246]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-6.0150146484375, 37.38011551844836],\n          [-5.931415557861328, 37.39702801486944]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.0047149658203125, 37.38167284314159],\n            [-6.005369719740231, 37.381664668230634],\n            [-6.006023827069253, 37.38164015157079],\n            [-6.006676641856281, 37.381599317373066],\n            [-6.007327519429171, 37.38154220596246],\n            [-6.007975817032622, 37.38146887373818],\n            [-6.008620894464146, 37.38137939311773],\n            [-6.00926211470749, 37.38127385246532],\n            [-6.009898844562894, 37.38115235600438],\n            [-6.010530455273525, 37.3810150237145],\n            [-6.011156323147495, 37.38086199121266],\n            [-6.011775830174828, 37.38069340961909],\n            [-6.012388364638748, 37.38050944540773],\n            [-6.012993321720721, 37.38031028024154],\n            [-6.01359010409859, 37.380096110792806],\n            [-6.014178122537265, 37.379867148548485],\n            [-6.014756796471341, 37.37962361960109],\n            [-6.015325554579076, 37.379365764424975],\n            [-6.015883835347175, 37.37909383763847],\n            [-6.016431087625788, 37.37880810775202],\n            [-6.0169667711731964, 37.378508856902656],\n            [-6.017490357189638, 37.37819638057483],\n            [-6.018001328839736, 37.377870987308285],\n            [-6.0184991817630245, 37.37753299839284],\n            [-6.018983424572061, 37.37718274755073],\n            [-6.019453579337623, 37.37682058060653],\n            [-6.019909182060527, 37.376446855145275],\n            [-6.020349783129591, 37.3760619401588],\n            [-6.020774947765292, 37.37566621568101],\n            [-6.021184256448675, 37.37526007241211],\n            [-6.021577305335104, 37.374843911332384],\n            [-6.021953706652434, 37.37441814330584],\n            [-6.022313089083229, 37.37398318867403],\n            [-6.022655098130623, 37.37353947684068],\n            [-6.022979396467497, 37.373087445847226],\n            [-6.023285664268614, 37.372627541939984],\n            [-6.023573599525376, 37.37216021912914],\n            [-6.023842918342927, 37.37168593874014],\n            [-6.024093355219282, 37.37120516895794],\n            [-6.024324663306228, 37.37071838436439],\n            [-6.02453661465173, 37.37022606546946],\n            [-6.024729000423632, 37.36972869823655],\n            [-6.02490163111441, 37.369226773602534],\n            [-6.025054336726796, 37.36872078699286],\n            [-6.025186966940079, 37.36821123783229],\n            [-6.025299391256965, 37.36769862905173],\n            [-6.025391499130798, 37.36718346659164],\n            [-6.02546320007307, 37.36666625890246],\n            [-6.025514423741105, 37.36614751644271],\n            [-6.025545120005821, 37.36562775117503],\n            [-6.025555258999542, 37.365107476060885],\n            [-6.02554483114379, 37.364587204554205],\n            [-6.02551384715705, 37.3640674500947],\n            [-6.025462338042505, 37.36354872560115],\n            [-6.0253903550557615, 37.36303154296533],\n            [-6.025297969652599, 37.36251641254685],\n            [-6.025185273416803, 37.36200384266973],\n            [-6.025052377968172, 37.361494339120874],\n            [-6.024899414850762, 37.36098840465118],\n            [-6.024726535401538, 37.360486538479634],\n            [-6.024533910599502, 37.35998923580098],\n            [-6.024321730895523, 37.359496987297305],\n            [-6.0240902060229855, 37.3590102786542],\n            [-6.023839564789473, 37.35852959008193],\n            [-6.0235700548497055, 37.358055395841824],\n            [-6.02328194245994, 37.35758816377884],\n            [-6.022975512214098, 37.35712835486029],\n            [-6.022651066761868, 37.356676422721506],\n            [-6.022308926509088, 37.35623281321863],\n            [-6.021949429300682, 37.35579796398927],\n            [-6.021572930086494, 37.35537230402117],\n            [-6.021179800570312, 37.354956253229425],\n            [-6.020770428842493, 37.354550222042796],\n            [-6.020345218996477, 37.35415461099922],\n            [-6.019904590729645, 37.353769810351224],\n            [-6.0194489789288586, 37.353396199681484],\n            [-6.0189788332411265, 37.353034147528795],\n            [-6.018494617629807, 37.352684011025175],\n            [-6.017996809916783, 37.352346135543954],\n            [-6.017485901311074, 37.35202085435968],\n            [-6.016962395924343, 37.35170848831984],\n            [-6.016426810273752, 37.35140934552893],\n            [-6.015879672772713, 37.35112372104494],\n            [-6.015321523209971, 37.35085189658892],\n            [-6.014752912217564, 37.350594140267475],\n            [-6.014174400728197, 37.350350706308795],\n            [-6.013586559422511, 37.35012183481235],\n            [-6.012989968166851, 37.34990775151252],\n            [-6.012385215442036, 37.34970866755627],\n            [-6.011772897763715, 37.349524779295386],\n            [-6.011153619094871, 37.34935626809309],\n            [-6.010527990251052, 37.349203300145504],\n            [-6.009896628298893, 37.34906602631811],\n            [-6.009260155948546, 37.348944581997166],\n            [-6.0086192009405845, 37.348839086956474],\n            [-6.007974395428011, 37.348749645239465],\n            [-6.007326375353934, 37.348676345056816],\n            [-6.006675779825563, 37.348619258699564],\n            [-6.006023250485095, 37.348578442468046],\n            [-6.005369430878148, 37.348553936616376],\n            [-6.0047149658203125, 37.348545765312906],\n            [-6.004060500762476, 37.348553936616376],\n            [-6.00340668115553, 37.348578442468046],\n            [-6.002754151815063, 37.348619258699564],\n            [-6.0021035562866905, 37.348676345056816],\n            [-6.001455536212614, 37.348749645239465],\n            [-6.0008107307000405, 37.348839086956474],\n            [-6.000169775692079, 37.348944581997166],\n            [-5.999533303341731, 37.34906602631811],\n            [-5.998901941389572, 37.349203300145504],\n            [-5.998276312545753, 37.34935626809309],\n            [-5.997657033876911, 37.349524779295386],\n            [-5.997044716198589, 37.34970866755627],\n            [-5.996439963473773, 37.34990775151252],\n            [-5.995843372218113, 37.35012183481235],\n            [-5.995255530912427, 37.350350706308795],\n            [-5.99467701942306, 37.350594140267475],\n            [-5.994108408430655, 37.35085189658892],\n            [-5.993550258867911, 37.35112372104494],\n            [-5.993003121366873, 37.35140934552893],\n            [-5.9924675357162815, 37.35170848831984],\n            [-5.99194403032955, 37.35202085435968],\n            [-5.9914331217238415, 37.352346135543954],\n            [-5.990935314010819, 37.352684011025175],\n            [-5.990451098399498, 37.353034147528795],\n            [-5.989980952711766, 37.353396199681484],\n            [-5.98952534091098, 37.353769810351224],\n            [-5.989084712644148, 37.35415461099922],\n            [-5.988659502798131, 37.354550222042796],\n            [-5.988250131070312, 37.354956253229425],\n            [-5.987857001554131, 37.35537230402117],\n            [-5.987480502339942, 37.35579796398927],\n            [-5.987121005131536, 37.35623281321863],\n            [-5.986778864878756, 37.356676422721506],\n            [-5.986454419426527, 37.35712835486029],\n            [-5.986147989180684, 37.35758816377884],\n            [-5.985859876790919, 37.358055395841824],\n            [-5.985590366851151, 37.35852959008193],\n            [-5.9853397256176395, 37.3590102786542],\n            [-5.985108200745102, 37.359496987297305],\n            [-5.9848960210411235, 37.35998923580098],\n            [-5.9847033962390865, 37.360486538479634],\n            [-5.984530516789862, 37.36098840465118],\n            [-5.984377553672453, 37.361494339120874],\n            [-5.984244658223821, 37.36200384266973],\n            [-5.984131961988026, 37.36251641254685],\n            [-5.9840395765848635, 37.36303154296533],\n            [-5.983967593598119, 37.36354872560115],\n            [-5.983916084483574, 37.3640674500947],\n            [-5.983885100496834, 37.364587204554205],\n            [-5.9838746726410825, 37.365107476060885],\n            [-5.983884811634804, 37.36562775117503],\n            [-5.983915507899519, 37.36614751644271],\n            [-5.983966731567554, 37.36666625890246],\n            [-5.984038432509826, 37.36718346659164],\n            [-5.984130540383659, 37.36769862905173],\n            [-5.984242964700545, 37.36821123783229],\n            [-5.984375594913829, 37.36872078699286],\n            [-5.984528300526214, 37.369226773602534],\n            [-5.9847009312169925, 37.36972869823655],\n            [-5.984893316988894, 37.37022606546946],\n            [-5.985105268334398, 37.37071838436439],\n            [-5.985336576421342, 37.37120516895794],\n            [-5.985587013297698, 37.37168593874014],\n            [-5.985856332115249, 37.37216021912914],\n            [-5.98614426737201, 37.372627541939984],\n            [-5.986450535173127, 37.373087445847226],\n            [-5.986774833510002, 37.37353947684068],\n            [-5.987116842557396, 37.37398318867403],\n            [-5.987476224988192, 37.37441814330584],\n            [-5.987852626305521, 37.374843911332384],\n            [-5.98824567519195, 37.37526007241211],\n            [-5.988654983875333, 37.37566621568101],\n            [-5.989080148511033, 37.3760619401588],\n            [-5.989520749580098, 37.376446855145275],\n            [-5.989976352303003, 37.37682058060653],\n            [-5.9904465070685635, 37.37718274755073],\n            [-5.9909307498776, 37.37753299839284],\n            [-5.991428602800888, 37.377870987308285],\n            [-5.991939574450986, 37.37819638057483],\n            [-5.992463160467428, 37.378508856902656],\n            [-5.992998844014836, 37.37880810775202],\n            [-5.993546096293449, 37.37909383763847],\n            [-5.994104377061548, 37.379365764424975],\n            [-5.9946731351692835, 37.37962361960109],\n            [-5.995251809103359, 37.379867148548485],\n            [-5.995839827542034, 37.380096110792806],\n            [-5.996436609919903, 37.38031028024154],\n            [-5.997041567001877, 37.38050944540773],\n            [-5.997654101465798, 37.38069340961909],\n            [-5.998273608493129, 37.38086199121266],\n            [-5.998899476367099, 37.3810150237145],\n            [-5.99953108707773, 37.38115235600438],\n            [-6.000167816933134, 37.38127385246532],\n            [-6.000809037176479, 37.38137939311773],\n            [-6.001454114608002, 37.38146887373818],\n            [-6.002102412211454, 37.38154220596246],\n            [-6.002753289784344, 37.381599317373066],\n            [-6.003406104571371, 37.38164015157079],\n            [-6.004060211900394, 37.381664668230634],\n            [-6.0047149658203125, 37.38167284314159]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/city-segment-inside2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3767967224121093, 39.4689324766527]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-0.3689861297607422, 39.47648555419739],\n          [-0.3595447540283203, 39.46363158174706]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.3767967224121093, 39.477903066051326],\n            [-0.37716177489791164, 39.47789863903635],\n            [-0.3775264669817148, 39.47788536236202],\n            [-0.37789043861774285, 39.477863249135886],\n            [-0.37825333047231247, 39.47783232118945],\n            [-0.37861478427899564, 39.47779260905657],\n            [-0.37897444319272194, 39.47774415194336],\n            [-0.3793319521424701, 39.477686997689354],\n            [-0.379686958182198, 39.47762120272026],\n            [-0.3800391108396624, 39.47754683199218],\n            [-0.3803880624627833, 39.47746395892743],\n            [-0.38073346856320767, 39.477372665341946],\n            [-0.38107498815673313, 39.47727304136445],\n            [-0.38141228410025274, 39.47716518534734],\n            [-0.38174502342488703, 39.477049203769525],\n            [-0.38207287766497294, 39.47692521113114],\n            [-0.3823955231825837, 39.47679332984047],\n            [-0.382712641487257, 39.476653690092895],\n            [-0.3830239195506159, 39.476506429742294],\n            [-0.3833290501155698, 39.47635169416476],\n            [-0.38362773199978956, 39.476189636114974],\n            [-0.3839196703931562, 39.476020415575285],\n            [-0.384204577148889, 39.47584419959757],\n            [-0.384482171068065, 39.47566116213819],\n            [-0.38475217817724733, 39.47547148388615],\n            [-0.3850143319989503, 39.47527535208451],\n            [-0.3852683738146716, 39.475072960345436],\n            [-0.38551405292023305, 39.47486450845887],\n            [-0.3857511268731777, 39.47465020219519],\n            [-0.3859793617319791, 39.47443025310193],\n            [-0.38619853228682693, 39.47420487829473],\n            [-0.3864084222817614, 39.47397430024297],\n            [-0.3866088246279377, 39.47373874654993],\n            [-0.38679954160781144, 39.473498449727984],\n            [-0.3869803850700424, 39.473253646969006],\n            [-0.38715117661492787, 39.47300457991003],\n            [-0.3873117477701807, 39.47275149439463],\n            [-0.3874619401568817, 39.472494640230124],\n            [-0.38760160564544305, 39.47223427094089],\n            [-0.3877306065014306, 39.47197064351796],\n            [-0.38784881552110156, 39.47170401816535],\n            [-0.38795611615652636, 39.471434658042995],\n            [-0.388052402630173, 39.471162829007035],\n            [-0.38813758003884125, 39.470888799347264],\n            [-0.38821156444684746, 39.47061283952225],\n            [-0.3882742829683686, 39.47033522189236],\n            [-0.38832567383886696, 39.47005622045089],\n            [-0.38836568647552727, 39.46977611055353],\n            [-0.3883942815266472, 39.46949516864664],\n            [-0.38841143090993646, 39.46921367199437],\n            [-0.38841711783968763, 39.468931898404946],\n            [-0.38841133684279433, 39.46865012595656],\n            [-0.388394093763603, 39.46836863272291],\n            [-0.38836540575759587, 39.468087696498706],\n            [-0.3883253012739137, 39.46780759452571],\n            [-0.388273820026737, 39.46752860321897],\n            [-0.38821101295555654, 39.46725099789422],\n            [-0.38813694217437494, 39.46697505249616],\n            [-0.38805168090989084, 39.46670103932823],\n            [-0.38795531342872824, 39.466429228783916],\n            [-0.3878479349537872, 39.466159889080025],\n            [-0.3877296515697967, 39.465893285992124],\n            [-0.3876005801181681, 39.46562968259227],\n            [-0.38746084808125314, 39.46536933898968],\n            [-0.387310593456122, 39.46511251207401],\n            [-0.3871499646179889, 39.4648594552621],\n            [-0.3869791201734212, 39.464610418247986],\n            [-0.38679822880347675, 39.46436564675666],\n            [-0.38660746909692834, 39.46412538230179],\n            [-0.38640702937373866, 39.46388986194746],\n            [-0.3861971074989624, 39.46365931807452],\n            [-0.38597791068725934, 39.46343397815133],\n            [-0.38574965529821315, 39.463214064509614],\n            [-0.38551256662265765, 39.462999794125096],\n            [-0.3852668786602229, 39.46279137840372],\n            [-0.38501283388831986, 39.46258902297312],\n            [-0.3847506830227932, 39.462392927479954],\n            [-0.38448068477047886, 39.4622032853931],\n            [-0.3842031055739085, 39.46202028381288],\n            [-0.3839182193484155, 39.461844103286715],\n            [-0.38362630721189955, 39.46167491763103],\n            [-0.3833276572075175, 39.461512893760066],\n            [-0.3830225640195731, 39.461358191521256],\n            [-0.3827113286828857, 39.46121096353771],\n            [-0.3823942582859232, 39.4610713550578],\n            [-0.38207166566799283, 39.46093950381199],\n            [-0.3817438691107857, 39.4608155398771],\n            [-0.38141119202458107, 39.46069958554812],\n            [-0.38107396262941506, 39.460591755217656],\n            [-0.38073251363153116, 39.460492155263246],\n            [-0.3803871818954278, 39.46040088394246],\n            [-0.38003830811182515, 39.46031803129619],\n            [-0.37968623646187927, 39.460243679059744],\n            [-0.37933131427797057, 39.460177900582494],\n            [-0.37897389170140144, 39.46012076075544],\n            [-0.37861432133733863, 39.46007231594736],\n            [-0.3782529579073385, 39.46003261394923],\n            [-0.3778901578997956, 39.460001693927154],\n            [-0.37752627921865994, 39.45997958638372],\n            [-0.3771616808307642, 39.45996631312801],\n            [-0.3767967224121093, 39.45996188725407],\n            [-0.3764317639934545, 39.45996631312801],\n            [-0.37606716560555875, 39.45997958638372],\n            [-0.3757032869244231, 39.460001693927154],\n            [-0.37534048691688027, 39.46003261394923],\n            [-0.37497912348688, 39.46007231594736],\n            [-0.37461955312281725, 39.46012076075544],\n            [-0.37426213054624824, 39.460177900582494],\n            [-0.3739072083623394, 39.460243679059744],\n            [-0.37355513671239354, 39.46031803129619],\n            [-0.3732062629287909, 39.46040088394246],\n            [-0.3728609311926875, 39.460492155263246],\n            [-0.3725194821948037, 39.460591755217656],\n            [-0.3721822527996376, 39.46069958554812],\n            [-0.3718495757134329, 39.4608155398771],\n            [-0.3715217791562259, 39.46093950381199],\n            [-0.3711991865382955, 39.4610713550578],\n            [-0.37088211614133304, 39.46121096353771],\n            [-0.37057088080464556, 39.461358191521256],\n            [-0.3702657876167012, 39.461512893760066],\n            [-0.36996713761231914, 39.46167491763103],\n            [-0.36967522547580317, 39.461844103286715],\n            [-0.3693903392503102, 39.46202028381288],\n            [-0.36911276005373983, 39.4622032853931],\n            [-0.3688427618014255, 39.462392927479954],\n            [-0.36858061093589883, 39.46258902297312],\n            [-0.3683265661639958, 39.46279137840372],\n            [-0.368080878201561, 39.462999794125096],\n            [-0.3678437895260056, 39.463214064509614],\n            [-0.36761553413695935, 39.46343397815133],\n            [-0.3673963373252563, 39.46365931807452],\n            [-0.36718641545048, 39.46388986194746],\n            [-0.36698597572729036, 39.46412538230179],\n            [-0.36679521602074194, 39.46436564675666],\n            [-0.3666143246507975, 39.464610418247986],\n            [-0.36644348020622974, 39.4648594552621],\n            [-0.3662828513680967, 39.46511251207401],\n            [-0.36613259674296555, 39.46536933898968],\n            [-0.3659928647060505, 39.46562968259227],\n            [-0.365863793254422, 39.465893285992124],\n            [-0.3657455098704314, 39.466159889080025],\n            [-0.3656381313954904, 39.466429228783916],\n            [-0.36554176391432786, 39.46670103932823],\n            [-0.3654565026498437, 39.46697505249616],\n            [-0.3653824318686622, 39.46725099789422],\n            [-0.3653196247974817, 39.46752860321897],\n            [-0.36526814355030496, 39.46780759452571],\n            [-0.3652280390666228, 39.468087696498706],\n            [-0.3651993510606157, 39.46836863272291],\n            [-0.36518210798142436, 39.46865012595656],\n            [-0.36517632698453106, 39.468931898404946],\n            [-0.36518201391428223, 39.46921367199437],\n            [-0.3651991632975715, 39.46949516864664],\n            [-0.3652277583486915, 39.46977611055353],\n            [-0.3652677709853517, 39.47005622045089],\n            [-0.3653191618558501, 39.47033522189236],\n            [-0.36538188037737124, 39.47061283952225],\n            [-0.36545586478537745, 39.470888799347264],\n            [-0.3655410421940457, 39.471162829007035],\n            [-0.36563732866769233, 39.471434658042995],\n            [-0.3657446293031171, 39.47170401816535],\n            [-0.3658628383227881, 39.47197064351796],\n            [-0.36599183917877565, 39.47223427094089],\n            [-0.366131504667337, 39.472494640230124],\n            [-0.366281697054038, 39.47275149439463],\n            [-0.3664422682092908, 39.47300457991003],\n            [-0.36661305975417624, 39.473253646969006],\n            [-0.36679390321640726, 39.473498449727984],\n            [-0.366984620196281, 39.47373874654993],\n            [-0.3671850225424573, 39.47397430024297],\n            [-0.36739491253739176, 39.47420487829473],\n            [-0.3676140830922396, 39.47443025310193],\n            [-0.367842317951041, 39.47465020219519],\n            [-0.36807939190398564, 39.47486450845887],\n            [-0.3683250710095471, 39.475072960345436],\n            [-0.3685791128252684, 39.47527535208451],\n            [-0.36884126664697137, 39.47547148388615],\n            [-0.3691112737561537, 39.47566116213819],\n            [-0.3693888676753297, 39.47584419959757],\n            [-0.3696737744310625, 39.476020415575285],\n            [-0.36996571282442914, 39.476189636114974],\n            [-0.3702643947086489, 39.47635169416476],\n            [-0.3705695252736028, 39.476506429742294],\n            [-0.3708808033369617, 39.476653690092895],\n            [-0.37119792164163506, 39.47679332984047],\n            [-0.3715205671592458, 39.47692521113114],\n            [-0.3718484213993317, 39.477049203769525],\n            [-0.37218116072396595, 39.47716518534734],\n            [-0.37251845666748556, 39.47727304136445],\n            [-0.37285997626101103, 39.477372665341946],\n            [-0.37320538236143536, 39.47746395892743],\n            [-0.3735543339845563, 39.47754683199218],\n            [-0.3739064866420207, 39.47762120272026],\n            [-0.3742614926817486, 39.477686997689354],\n            [-0.37461900163149675, 39.47774415194336],\n            [-0.37497866054522294, 39.47779260905657],\n            [-0.3753401143519061, 39.47783232118945],\n            [-0.3757030062064758, 39.477863249135886],\n            [-0.3760669778425038, 39.47788536236202],\n            [-0.37643166992630706, 39.47789863903635],\n            [-0.3767967224121093, 39.477903066051326]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/city-segment-inside3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-3.592529296875, 40.573804799488194]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-3.503265380859375, 40.51693121343741],\n          [-3.6694335937500004, 40.560764667193595]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-3.592529296875, 40.60525484040387],\n            [-3.593830474774089, 40.605239314409665],\n            [-3.5951303667562624, 40.60519275177097],\n            [-3.5964276881808104, 40.60511519850428],\n            [-3.5977211569581566, 40.60500673125301],\n            [-3.5990094948221962, 40.604867457211455],\n            [-3.600291428598792, 40.604697514018355],\n            [-3.601565691469119, 40.604497069620365],\n            [-3.602831024226608, 40.60426632210533],\n            [-3.6040861765262022, 40.60400549950575],\n            [-3.6053299081246797, 40.603714859572506],\n            [-3.6065609901107925, 40.603394689519085],\n            [-3.607778206123972, 40.60304530573659],\n            [-3.6089803535603875, 40.602667053479905],\n            [-3.610166244765143, 40.602260306525054],\n            [-3.611334708209402, 40.601825466798516],\n            [-3.612484589651283, 40.601362963978474],\n            [-3.6136147532793332, 40.60087325506861],\n            [-3.614724082837454, 40.600356823944885],\n            [-3.6158114827301495, 40.59981418087565],\n            [-3.6168758791069813, 40.59924586201564],\n            [-3.6179162209251676, 40.59865242887438],\n            [-3.61893148098924, 40.59803446775947],\n            [-3.6199206569667477, 40.59739258919535],\n            [-3.6208827723789834, 40.59672742731812],\n            [-3.621816877565753, 40.596039639247124],\n            [-3.6227220506232305, 40.59532990443361],\n            [-3.6235973983139735, 40.5945989239876],\n            [-3.6244420569481948, 40.59384741998316],\n            [-3.625255193235426, 40.59307613474322],\n            [-3.6260360051057385, 40.592285830104174],\n            [-3.6267837224997006, 40.59147728666145],\n            [-3.6274976081263244, 40.590651302996605],\n            [-3.628176958188229, 40.58980869488654],\n            [-3.6288211030733506, 40.58895029449607],\n            [-3.6294294080124914, 40.588076949554164],\n            [-3.630001273702106, 40.58718952251506],\n            [-3.6305361368916955, 40.58628888970484],\n            [-3.631033470935269, 40.585375940454526],\n            [-3.6314927863063278, 40.5844515762203],\n            [-3.631913631075899, 40.58351670969206],\n            [-3.6322955913531527, 40.58257226389081],\n            [-3.6326382916881976, 40.58161917125618],\n            [-3.63294139543668, 40.58065837272466],\n            [-3.6332046050858438, 40.57969081679965],\n            [-3.63342766254176, 40.57871745861413],\n            [-3.633610349377466, 40.57773925898708],\n            [-3.633752487041796, 40.57675718347427],\n            [-3.633853937028723, 40.575772201414686],\n            [-3.633914601007062, 40.57478528497327],\n            [-3.6339344209104665, 40.57379740818112],\n            [-3.6339133789876064, 40.57280954597402],\n            [-3.6338514978125573, 40.57182267323018],\n            [-3.6337488402553837, 40.570837763808264],\n            [-3.6336055094129893, 40.56985578958654],\n            [-3.6334216485003274, 40.56887771950425],\n            [-3.6331974407021055, 40.56790451860589],\n            [-3.6329331089851546, 40.566937147089725],\n            [-3.6326289158716913, 40.565976559360934],\n            [-3.632285163173693, 40.565023703091],\n            [-3.6319021916887086, 40.56407951828358],\n            [-3.6314803808574005, 40.56314493634827],\n            [-3.6310201483832025, 40.562220879182945],\n            [-3.6305219498144736, 40.56130825826562],\n            [-3.6299862780895977, 40.56040797375671],\n            [-3.6294136630454874, 40.559520913612644],\n            [-3.6288046708899997, 40.558647952711546],\n            [-3.628159903638816, 40.55778995199201],\n            [-3.6274799985173263, 40.556947757605705],\n            [-3.626765627328168, 40.556122200084644],\n            [-3.6260174957850153, 40.55531409352397],\n            [-3.625236342813321, 40.55452423478103],\n            [-3.62442293981869, 40.55375340269152],\n            [-3.623578089923631, 40.55300235730347],\n            [-3.6227026271734344, 40.552271839129844],\n            [-3.621797415711981, 40.55156256842034],\n            [-3.6208633489282818, 40.55087524445336],\n            [-3.6199013485746065, 40.55021054484856],\n            [-3.6189123638570737, 40.54956912490089],\n            [-3.6178973704995783, 40.54895161693651],\n            [-3.616857369782007, 40.548358629691485],\n            [-3.6157933875536648, 40.54779074771367],\n            [-3.6147064732228844, 40.5472485307884],\n            [-3.6135976987238143, 40.54673251338862],\n            [-3.61246815746139, 40.5462432041499],\n            [-3.6113189632355196, 40.54578108537087],\n            [-3.6101512491455314, 40.5453466125396],\n            [-3.6089661664759483, 40.5449402138863],\n            [-3.607764883564687, 40.544562289962826],\n            [-3.6065485846547616, 40.54421321324946],\n            [-3.6053184687306117, 40.5438933277892],\n            [-3.6040757483401995, 40.54360294885],\n            [-3.602821648403996, 40.54334236261532],\n            [-3.6015574050120227, 40.5431118259032],\n            [-3.600284264210103, 40.542911565914224],\n            [-3.599003480776514, 40.54274178000844],\n            [-3.597716316990196, 40.542602635511756],\n            [-3.5964240413917357, 40.542494269551675],\n            [-3.5951279275382984, 40.54241678892272],\n            [-3.5938292527537268, 40.54237026998165],\n            [-3.592529296875, 40.542354758572515],\n            [-3.5912293409962737, 40.54237026998165],\n            [-3.589930666211702, 40.54241678892272],\n            [-3.5886345523582652, 40.542494269551675],\n            [-3.5873422767598044, 40.542602635511756],\n            [-3.5860551129734866, 40.54274178000844],\n            [-3.5847743295398975, 40.542911565914224],\n            [-3.583501188737978, 40.5431118259032],\n            [-3.5822369453460046, 40.54334236261532],\n            [-3.580982845409801, 40.54360294885],\n            [-3.5797401250193883, 40.5438933277892],\n            [-3.5785100090952384, 40.54421321324946],\n            [-3.577293710185313, 40.544562289962826],\n            [-3.576092427274052, 40.5449402138863],\n            [-3.57490734460447, 40.5453466125396],\n            [-3.57373963051448, 40.54578108537087],\n            [-3.57259043628861, 40.5462432041499],\n            [-3.571460895026186, 40.54673251338862],\n            [-3.570352120527116, 40.5472485307884],\n            [-3.5692652061963357, 40.54779074771367],\n            [-3.568201223967993, 40.548358629691485],\n            [-3.5671612232504217, 40.54895161693651],\n            [-3.5661462298929263, 40.54956912490089],\n            [-3.5651572451753935, 40.55021054484856],\n            [-3.5641952448217187, 40.55087524445336],\n            [-3.5632611780380192, 40.55156256842034],\n            [-3.562355966576565, 40.552271839129844],\n            [-3.561480503826369, 40.55300235730347],\n            [-3.56063565393131, 40.55375340269152],\n            [-3.5598222509366795, 40.55452423478103],\n            [-3.559041097964985, 40.55531409352397],\n            [-3.558292966421833, 40.556122200084644],\n            [-3.557578595232674, 40.556947757605705],\n            [-3.5568986901111845, 40.55778995199201],\n            [-3.5562539228599994, 40.558647952711546],\n            [-3.555644930704513, 40.559520913612644],\n            [-3.5550723156604023, 40.56040797375671],\n            [-3.554536643935527, 40.56130825826562],\n            [-3.554038445366798, 40.562220879182945],\n            [-3.5535782128926, 40.56314493634827],\n            [-3.5531564020612922, 40.56407951828358],\n            [-3.552773430576307, 40.565023703091],\n            [-3.552429677878309, 40.565976559360934],\n            [-3.5521254847648454, 40.566937147089725],\n            [-3.551861153047895, 40.56790451860589],\n            [-3.5516369452496726, 40.56887771950425],\n            [-3.551453084337011, 40.56985578958654],\n            [-3.5513097534946167, 40.570837763808264],\n            [-3.5512070959374427, 40.57182267323018],\n            [-3.551145214762394, 40.57280954597402],\n            [-3.5511241728395335, 40.57379740818112],\n            [-3.551143992742938, 40.57478528497327],\n            [-3.5512046567212785, 40.575772201414686],\n            [-3.551306106708204, 40.57675718347427],\n            [-3.5514482443725344, 40.57773925898708],\n            [-3.5516309312082406, 40.57871745861413],\n            [-3.5518539886641562, 40.57969081679965],\n            [-3.55211719831332, 40.58065837272466],\n            [-3.552420302061803, 40.58161917125618],\n            [-3.5527630023968477, 40.58257226389081],\n            [-3.5531449626741014, 40.58351670969206],\n            [-3.5535658074436727, 40.5844515762203],\n            [-3.554025122814731, 40.585375940454526],\n            [-3.554522456858304, 40.58628888970484],\n            [-3.555057320047894, 40.58718952251506],\n            [-3.555629185737508, 40.588076949554164],\n            [-3.55623749067665, 40.58895029449607],\n            [-3.556881635561771, 40.58980869488654],\n            [-3.557560985623676, 40.590651302996605],\n            [-3.5582748712502994, 40.59147728666145],\n            [-3.5590225886442615, 40.592285830104174],\n            [-3.559803400514574, 40.59307613474322],\n            [-3.5606165368018057, 40.59384741998316],\n            [-3.561461195436027, 40.5945989239876],\n            [-3.56233654312677, 40.59532990443361],\n            [-3.5632417161842476, 40.596039639247124],\n            [-3.5641758213710166, 40.59672742731812],\n            [-3.5651379367832527, 40.59739258919535],\n            [-3.56612711276076, 40.59803446775947],\n            [-3.567142372824833, 40.59865242887438],\n            [-3.568182714643019, 40.59924586201564],\n            [-3.569247111019852, 40.59981418087565],\n            [-3.5703345109125464, 40.600356823944885],\n            [-3.571443840470667, 40.60087325506861],\n            [-3.572574004098717, 40.601362963978474],\n            [-3.5737238855405975, 40.601825466798516],\n            [-3.5748923489848576, 40.602260306525054],\n            [-3.5760782401896125, 40.602667053479905],\n            [-3.577280387626028, 40.60304530573659],\n            [-3.5784976036392075, 40.603394689519085],\n            [-3.5797286856253203, 40.603714859572506],\n            [-3.580972417223798, 40.60400549950575],\n            [-3.582227569523392, 40.60426632210533],\n            [-3.583492902280881, 40.604497069620365],\n            [-3.5847671651512085, 40.604697514018355],\n            [-3.586049098927804, 40.604867457211455],\n            [-3.587337436791844, 40.60500673125301],\n            [-3.5886309055691896, 40.60511519850428],\n            [-3.589928226993738, 40.60519275177097],\n            [-3.591228118975911, 40.605239314409665],\n            [-3.592529296875, 40.60525484040387]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/city-segment-obtuse1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.030292510986328, 37.35746862390723]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-6.0150146484375, 37.38011551844836],\n          [-5.931415557861328, 37.39702801486944]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.030292510986328, 37.38316512621882],\n            [-6.03130830955381, 37.383152442203745],\n            [-6.03232310462096, 37.38311440268895],\n            [-6.033335893681851, 37.3830510452534],\n            [-6.034345676218368, 37.38296243248732],\n            [-6.035351454691617, 37.38284865193013],\n            [-6.036352235530356, 37.382709815983816],\n            [-6.037347030115435, 37.382546061801406],\n            [-6.03833485575928, 37.38235755115118],\n            [-6.03931473667942, 37.38214447025633],\n            [-6.0402857049650915, 37.38190702961046],\n            [-6.0412468015359595, 37.38164546376901],\n            [-6.042197077091976, 37.38136003111692],\n            [-6.04313559305344, 37.38105101361256],\n            [-6.044061422490312, 37.38071871650848],\n            [-6.044973651039864, 37.38036346804896],\n            [-6.04587137781173, 37.37998561914491],\n            [-6.046753716279467, 37.379585543026245],\n            [-6.047619795157733, 37.379163634872214],\n            [-6.0484687592642095, 37.378720311420025],\n            [-6.0492997703654074, 37.37825601055217],\n            [-6.050112008005508, 37.3777711908627],\n            [-6.05090467031743, 37.37726633120325],\n            [-6.051676974815305, 37.376741930208844],\n            [-6.0524281591675715, 37.37619850580421],\n            [-6.053157481949942, 37.375636594691116],\n            [-6.053864223377462, 37.375056751817056],\n            [-6.054547686014986, 37.374459549825964],\n            [-6.055207195465312, 37.3738455784915],\n            [-6.055842101034343, 37.373215444133365],\n            [-6.056451776372601, 37.372569769017396],\n            [-6.057035620092459, 37.371909190739814],\n            [-6.057593056360492, 37.371234361596535],\n            [-6.058123535464373, 37.37054594793782],\n            [-6.058626534353743, 37.36984462950922],\n            [-6.0591015571545475, 37.36913109877934],\n            [-6.059548135656322, 37.36840606025506],\n            [-6.059965829771967, 37.3676702297849],\n            [-6.060354227969559, 37.3669243338513],\n            [-6.060712947675786, 37.3661691088525],\n            [-6.061041635650621, 37.365405300374626],\n            [-6.0613399683328675, 37.36463366245482],\n            [-6.061607652156257, 37.36385495683615],\n            [-6.0618444238358, 37.36306995221488],\n            [-6.062050050624106, 37.362279423481134],\n            [-6.062224330537456, 37.36148415095337],\n            [-6.0623670925514, 37.36068491960772],\n            [-6.062478196765714, 37.3598825183027],\n            [-6.062557534538556, 37.359077739000305],\n            [-6.062605028589718, 37.35827137598412],\n            [-6.062620633072876, 37.3574642250751],\n            [-6.062604333616796, 37.35665708284616],\n            [-6.062556147335454, 37.35585074583599],\n            [-6.062476122807084, 37.35504600976288],\n            [-6.062364340022205, 37.354243668739834],\n            [-6.0622209103006615, 37.353444514490924],\n            [-6.062045976177816, 37.352649335570426],\n            [-6.061839711259984, 37.35185891658501],\n            [-6.06160232004929, 37.35107403742004],\n            [-6.061334037738124, 37.3502954724705],\n            [-6.061035129973439, 37.349523989877525],\n            [-6.060705892591085, 37.34876035077115],\n            [-6.060346651320522, 37.348005308520094],\n            [-6.0599577614601525, 37.34725960798927],\n            [-6.059539607523658, 37.346523984805756],\n            [-6.059092602857661, 37.3457991646339],\n            [-6.05861718923114, 37.34508586246052],\n            [-6.058113836396971, 37.34438478189046],\n            [-6.057583041626066, 37.34369661445363],\n            [-6.05702532921458, 37.34302203892383],\n            [-6.056441249964653, 37.34236172065045],\n            [-6.0558313806392405, 37.34171631090328],\n            [-6.055196323391549, 37.34108644623126],\n            [-6.054536705169667, 37.34047274783587],\n            [-6.053853177096963, 37.33987582095966],\n            [-6.053146413828881, 37.33929625429056],\n            [-6.05241711288677, 37.33873461938242],\n            [-6.051665993969386, 37.338191470092696],\n            [-6.050893798242781, 37.33766734203739],\n            [-6.050101287609245, 37.33716275206408],\n            [-6.049289243956043, 37.33667819774345],\n            [-6.0484584683846805, 37.33621415687984],\n            [-6.047609780421449, 37.33577108704121],\n            [-6.046744017210029, 37.33534942510912],\n            [-6.045862032686948, 37.33494958684908],\n            [-6.044964696740685, 37.33457196650159],\n            [-6.044052894355279, 37.33421693639459],\n            [-6.043127524739219, 37.33388484657723],\n            [-6.042189500440534, 37.33357602447572],\n            [-6.041239746448891, 37.33329077457146],\n            [-6.040279199285616, 37.33302937810159],\n            [-6.039308806082495, 37.33279209278262],\n            [-6.038329523650277, 37.33257915255698],\n            [-6.037342317537762, 37.332390767363115],\n            [-6.036348161082416, 37.33222712292911],\n            [-6.035348034453405, 37.3320883805901],\n            [-6.03434292368801, 37.331974677129715],\n            [-6.033333819722334, 37.33188612464563],\n            [-6.0323217174172585, 37.33182281043939],\n            [-6.031307614580588, 37.33178479693063],\n            [-6.030292510986328, 37.331772121595634],\n            [-6.029277407392067, 37.33178479693063],\n            [-6.028263304555397, 37.33182281043939],\n            [-6.027251202250321, 37.33188612464563],\n            [-6.026242098284645, 37.331974677129715],\n            [-6.025236987519251, 37.3320883805901],\n            [-6.024236860890239, 37.33222712292911],\n            [-6.023242704434893, 37.332390767363115],\n            [-6.022255498322378, 37.33257915255698],\n            [-6.02127621589016, 37.33279209278262],\n            [-6.020305822687039, 37.33302937810159],\n            [-6.019345275523763, 37.33329077457146],\n            [-6.018395521532121, 37.33357602447572],\n            [-6.017457497233435, 37.33388484657723],\n            [-6.016532127617376, 37.33421693639459],\n            [-6.0156203252319695, 37.33457196650159],\n            [-6.0147229892857075, 37.33494958684908],\n            [-6.013841004762625, 37.33534942510912],\n            [-6.012975241551205, 37.33577108704121],\n            [-6.012126553587974, 37.33621415687984],\n            [-6.0112957780166125, 37.33667819774345],\n            [-6.010483734363411, 37.33716275206408],\n            [-6.009691223729875, 37.33766734203739],\n            [-6.008919028003269, 37.338191470092696],\n            [-6.008167909085885, 37.33873461938242],\n            [-6.007438608143773, 37.33929625429056],\n            [-6.006731844875692, 37.33987582095966],\n            [-6.006048316802987, 37.34047274783587],\n            [-6.005388698581106, 37.34108644623126],\n            [-6.004753641333415, 37.34171631090328],\n            [-6.004143772008002, 37.34236172065045],\n            [-6.003559692758074, 37.34302203892383],\n            [-6.003001980346588, 37.34369661445363],\n            [-6.0024711855756845, 37.34438478189046],\n            [-6.001967832741514, 37.34508586246052],\n            [-6.001492419114993, 37.3457991646339],\n            [-6.001045414448998, 37.346523984805756],\n            [-6.000627260512502, 37.34725960798927],\n            [-6.000238370652132, 37.348005308520094],\n            [-5.9998791293815685, 37.34876035077115],\n            [-5.999549891999217, 37.349523989877525],\n            [-5.99925098423453, 37.3502954724705],\n            [-5.9989827019233655, 37.35107403742004],\n            [-5.99874531071267, 37.35185891658501],\n            [-5.998539045794839, 37.352649335570426],\n            [-5.998364111671993, 37.353444514490924],\n            [-5.9982206819504515, 37.354243668739834],\n            [-5.9981088991655716, 37.35504600976288],\n            [-5.998028874637201, 37.35585074583599],\n            [-5.997980688355859, 37.35665708284616],\n            [-5.997964388899779, 37.3574642250751],\n            [-5.997979993382938, 37.35827137598412],\n            [-5.998027487434099, 37.359077739000305],\n            [-5.998106825206941, 37.3598825183027],\n            [-5.998217929421255, 37.36068491960772],\n            [-5.9983606914352, 37.36148415095337],\n            [-5.998534971348549, 37.362279423481134],\n            [-5.9987405981368545, 37.36306995221488],\n            [-5.998977369816397, 37.36385495683615],\n            [-5.999245053639788, 37.36463366245482],\n            [-5.999543386322034, 37.365405300374626],\n            [-5.999872074296869, 37.3661691088525],\n            [-6.000230794003096, 37.3669243338513],\n            [-6.000619192200688, 37.3676702297849],\n            [-6.001036886316333, 37.36840606025506],\n            [-6.001483464818108, 37.36913109877934],\n            [-6.0019584876189125, 37.36984462950922],\n            [-6.002461486508283, 37.37054594793782],\n            [-6.002991965612163, 37.371234361596535],\n            [-6.003549401880195, 37.371909190739814],\n            [-6.0041332456000545, 37.372569769017396],\n            [-6.004742920938312, 37.373215444133365],\n            [-6.005377826507343, 37.3738455784915],\n            [-6.006037335957668, 37.374459549825964],\n            [-6.006720798595192, 37.375056751817056],\n            [-6.0074275400227135, 37.375636594691116],\n            [-6.008156862805084, 37.37619850580421],\n            [-6.00890804715735, 37.376741930208844],\n            [-6.0096803516552235, 37.37726633120325],\n            [-6.010473013967147, 37.3777711908627],\n            [-6.011285251607249, 37.37825601055217],\n            [-6.012116262708446, 37.378720311420025],\n            [-6.012965226814923, 37.379163634872214],\n            [-6.013831305693189, 37.379585543026245],\n            [-6.014713644160925, 37.37998561914491],\n            [-6.01561137093279, 37.38036346804896],\n            [-6.016523599482343, 37.38071871650848],\n            [-6.017449428919215, 37.38105101361256],\n            [-6.018387944880679, 37.38136003111692],\n            [-6.019338220436696, 37.38164546376901],\n            [-6.020299317007563, 37.38190702961046],\n            [-6.021270285293236, 37.38214447025633],\n            [-6.022250166213375, 37.38235755115118],\n            [-6.023237991857219, 37.382546061801406],\n            [-6.0242327864423, 37.382709815983816],\n            [-6.025233567281038, 37.38284865193013],\n            [-6.026239345754287, 37.38296243248732],\n            [-6.027249128290803, 37.3830510452534],\n            [-6.028261917351695, 37.38311440268895],\n            [-6.029276712418845, 37.383152442203745],\n            [-6.030292510986328, 37.38316512621882]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/city-segment-obtuse2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-6.025829315185546, 37.40902811697313]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-6.0150146484375, 37.38011551844836],\n          [-5.932445526123047, 37.36770150115655]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.025829315185546, 37.43919034471164],\n            [-6.027022538664795, 37.439175455478455],\n            [-6.028214583153766, 37.43913080249053],\n            [-6.029404270831328, 37.4390564298682],\n            [-6.030590426213467, 37.438952411096736],\n            [-6.031771877318906, 37.438818848953474],\n            [-6.032947456831202, 37.43865587540591],\n            [-6.03411600325615, 37.438463651480795],\n            [-6.035276362073334, 37.438242367104564],\n            [-6.036427386880657, 37.43799224091489],\n            [-6.037567940530723, 37.437713520043985],\n            [-6.038696896257897, 37.437406479873545],\n            [-6.039813138794942, 37.4370714237617],\n            [-6.040915565478098, 37.43670868274233],\n            [-6.042003087339489, 37.43631861519681],\n            [-6.0430746301857825, 37.435901606498845],\n            [-6.044129135661999, 37.43545806863238],\n            [-6.045165562299424, 37.434988439783304],\n            [-6.0461828865465685, 37.434493183905204],\n            [-6.047180103782144, 37.43397279025949],\n            [-6.04815622930905, 37.43342777293063],\n            [-6.04911029932837, 37.432858670316705],\n            [-6.050041371892426, 37.43226604459602],\n            [-6.050948527835923, 37.431650481170145],\n            [-6.051830871684267, 37.431012588083995],\n            [-6.052687532538162, 37.43035299542358],\n            [-6.053517664933592, 37.42967235469195],\n            [-6.054320449676364, 37.428971338164004],\n            [-6.055095094650355, 37.42825063822083],\n            [-6.055840835598697, 37.427510966664165],\n            [-6.05655693687711, 37.426753054011705],\n            [-6.057242692178651, 37.425977648774094],\n            [-6.057897425229177, 37.42518551671394],\n            [-6.058520490452821, 37.42437744008814],\n            [-6.059111273606854, 37.423554216873775],\n            [-6.059669192385302, 37.42271665997863],\n            [-6.060193696990734, 37.42186559643703],\n            [-6.060684270673682, 37.421001866591816],\n            [-6.061140430239141, 37.42012632326326],\n            [-6.061561726519708, 37.41923983090584],\n            [-6.061947744814865, 37.41834326475341],\n            [-6.062298105296017, 37.41743750995409],\n            [-6.062612463376887, 37.416523460695394],\n            [-6.062890510048926, 37.4156020193204],\n            [-6.063131972181429, 37.41467409543624],\n            [-6.063336612786067, 37.413740605015334],\n            [-6.063504231245609, 37.41280246949063],\n            [-6.063634663506621, 37.41186061484546],\n            [-6.063727782235971, 37.410915970699115],\n            [-6.063783496941012, 37.40996946938892],\n            [-6.063801754053342, 37.409022045049824],\n            [-6.063782536976082, 37.40807463269228],\n            [-6.063725866094652, 37.407128167279446],\n            [-6.06363179875104, 37.4061835828046],\n            [-6.063500429181638, 37.40524181136959],\n            [-6.063331888418702, 37.40430378226528],\n            [-6.063126344155573, 37.403370421055044],\n            [-6.062884000575809, 37.40244264866187],\n            [-6.062605098146403, 37.40152138046032],\n            [-6.062289913375343, 37.40060752537409],\n            [-6.061938758533745, 37.39970198497998],\n            [-6.061551981342862, 37.3988056526193],\n            [-6.0611299646263035, 37.39791941251752],\n            [-6.060673125927819, 37.39704413891295],\n            [-6.060181917095039, 37.39618069519561],\n            [-6.059656823829613, 37.39532993305653],\n            [-6.059098365204186, 37.394492691649084],\n            [-6.058507093146716, 37.3936697967625],\n            [-6.057883591892659, 37.3928620600088],\n            [-6.057228477405558, 37.39207027802373],\n            [-6.0565423967666385, 37.391295231682626],\n            [-6.055826027534007, 37.3905376853317],\n            [-6.0550800770720965, 37.38979838603595],\n            [-6.054305281852048, 37.389078062843936],\n            [-6.053502406723686, 37.38837742607055],\n            [-6.052672244159845, 37.38769716659812],\n            [-6.051815613473786, 37.38703795519694],\n            [-6.050933360010464, 37.38640044186537],\n            [-6.050026354312475, 37.385785255190704],\n            [-6.049095491261464, 37.385193001731004],\n            [-6.048141689195878, 37.384624265418694],\n            [-6.047165889005906, 37.38407960698644],\n            [-6.046169053206509, 37.383559563415936],\n            [-6.045152164989438, 37.38306464741005],\n            [-6.044116227255172, 37.3825953468889],\n            [-6.043062261625723, 37.38215212451027],\n            [-6.041991307439279, 37.38173541721498],\n            [-6.0409044207276485, 37.381345635797494],\n            [-6.039802673177518, 37.38098316450227],\n            [-6.038687151076536, 37.38064836064622],\n            [-6.037558954245232, 37.38034155426768],\n            [-6.036419194955824, 37.38006304780211],\n            [-6.035268996838968, 37.37981311578506],\n            [-6.034109493779491, 37.379592004582406],\n            [-6.032941828802199, 37.379399932148395],\n            [-6.031767152948839, 37.37923708781159],\n            [-6.030586624147282, 37.379103632088814],\n            [-6.029401406074055, 37.37899969652756],\n            [-6.028212667011306, 37.37892538357678],\n            [-6.027021578699291, 37.37888076648625],\n            [-6.025829315185546, 37.37886588923462],\n            [-6.024637051671802, 37.37888076648625],\n            [-6.023445963359788, 37.37892538357678],\n            [-6.022257224297037, 37.37899969652756],\n            [-6.021072006223811, 37.379103632088814],\n            [-6.019891477422254, 37.37923708781159],\n            [-6.018716801568893, 37.379399932148395],\n            [-6.017549136591602, 37.379592004582406],\n            [-6.016389633532126, 37.37981311578506],\n            [-6.015239435415268, 37.38006304780211],\n            [-6.014099676125862, 37.38034155426768],\n            [-6.012971479294556, 37.38064836064622],\n            [-6.011855957193574, 37.38098316450227],\n            [-6.010754209643445, 37.381345635797494],\n            [-6.009667322931814, 37.38173541721498],\n            [-6.00859636874537, 37.38215212451027],\n            [-6.007542403115921, 37.3825953468889],\n            [-6.006506465381655, 37.38306464741005],\n            [-6.0054895771645835, 37.383559563415936],\n            [-6.004492741365187, 37.38407960698644],\n            [-6.0035169411752145, 37.384624265418694],\n            [-6.002563139109628, 37.385193001731004],\n            [-6.001632276058617, 37.385785255190704],\n            [-6.000725270360628, 37.38640044186537],\n            [-5.999843016897308, 37.38703795519694],\n            [-5.998986386211247, 37.38769716659812],\n            [-5.998156223647406, 37.38837742607055],\n            [-5.997353348519044, 37.389078062843936],\n            [-5.9965785532989955, 37.38979838603595],\n            [-5.995832602837087, 37.3905376853317],\n            [-5.9951162336044534, 37.391295231682626],\n            [-5.994430152965535, 37.39207027802373],\n            [-5.993775038478433, 37.3928620600088],\n            [-5.993151537224376, 37.3936697967625],\n            [-5.992560265166906, 37.394492691649084],\n            [-5.99200180654148, 37.39532993305653],\n            [-5.991476713276054, 37.39618069519561],\n            [-5.990985504443273, 37.39704413891295],\n            [-5.99052866574479, 37.39791941251752],\n            [-5.99010664902823, 37.3988056526193],\n            [-5.989719871837347, 37.39970198497998],\n            [-5.98936871699575, 37.40060752537409],\n            [-5.989053532224689, 37.40152138046032],\n            [-5.988774629795283, 37.40244264866187],\n            [-5.988532286215519, 37.403370421055044],\n            [-5.988326741952391, 37.40430378226528],\n            [-5.988158201189456, 37.40524181136959],\n            [-5.9880268316200524, 37.4061835828046],\n            [-5.987932764276441, 37.407128167279446],\n            [-5.98787609339501, 37.40807463269228],\n            [-5.987856876317751, 37.409022045049824],\n            [-5.98787513343008, 37.40996946938892],\n            [-5.9879308481351226, 37.410915970699115],\n            [-5.988023966864472, 37.41186061484546],\n            [-5.988154399125484, 37.41280246949063],\n            [-5.988322017585027, 37.413740605015334],\n            [-5.988526658189664, 37.41467409543624],\n            [-5.988768120322167, 37.4156020193204],\n            [-5.989046166994205, 37.416523460695394],\n            [-5.989360525075075, 37.41743750995409],\n            [-5.989710885556227, 37.41834326475341],\n            [-5.990096903851385, 37.41923983090584],\n            [-5.990518200131953, 37.42012632326326],\n            [-5.990974359697412, 37.421001866591816],\n            [-5.991464933380358, 37.42186559643703],\n            [-5.991989437985791, 37.42271665997863],\n            [-5.992547356764239, 37.423554216873775],\n            [-5.993138139918273, 37.42437744008814],\n            [-5.993761205141915, 37.42518551671394],\n            [-5.994415938192442, 37.425977648774094],\n            [-5.995101693493983, 37.426753054011705],\n            [-5.995817794772396, 37.427510966664165],\n            [-5.996563535720737, 37.42825063822083],\n            [-5.997338180694729, 37.428971338164004],\n            [-5.998140965437501, 37.42967235469195],\n            [-5.998971097832931, 37.43035299542358],\n            [-5.999827758686825, 37.431012588083995],\n            [-6.00071010253517, 37.431650481170145],\n            [-6.001617258478667, 37.43226604459602],\n            [-6.002548331042724, 37.432858670316705],\n            [-6.003502401062043, 37.43342777293063],\n            [-6.004478526588948, 37.43397279025949],\n            [-6.005475743824523, 37.434493183905204],\n            [-6.006493068071668, 37.434988439783304],\n            [-6.007529494709093, 37.43545806863238],\n            [-6.0085840001853095, 37.435901606498845],\n            [-6.009655543031603, 37.43631861519681],\n            [-6.010743064892996, 37.43670868274233],\n            [-6.0118454915761514, 37.4370714237617],\n            [-6.012961734113197, 37.437406479873545],\n            [-6.014090689840369, 37.437713520043985],\n            [-6.015231243490436, 37.43799224091489],\n            [-6.016382268297759, 37.438242367104564],\n            [-6.017542627114943, 37.438463651480795],\n            [-6.0187111735398915, 37.43865587540591],\n            [-6.019886753052187, 37.438818848953474],\n            [-6.021068204157626, 37.438952411096736],\n            [-6.022254359539764, 37.4390564298682],\n            [-6.023444047217326, 37.43913080249053],\n            [-6.024636091706297, 37.439175455478455],\n            [-6.025829315185546, 37.43919034471164]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/city-segment-projected1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-5.914421081542969, 37.426343057829385]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-6.0150146484375, 37.38011551844836],\n          [-5.931415557861328, 37.39702801486944]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-5.914421081542969, 37.45861661850955],\n            [-5.9156981613235216, 37.4586006865878],\n            [-5.916973979150023, 37.45855290656579],\n            [-5.918247274320263, 37.45847332565762],\n            [-5.919516788634464, 37.45836202250139],\n            [-5.920781267643333, 37.45821910708124],\n            [-5.922039461892358, 37.45804472061821],\n            [-5.923290128161051, 37.45783903543016],\n            [-5.924532030695936, 37.45760225476089],\n            [-5.9257639424359985, 37.45733461257847],\n            [-5.9269846462293945, 37.45703637334325],\n            [-5.928192936040182, 37.45670783174549],\n            [-5.929387618143863, 37.45634931241319],\n            [-5.930567512310536, 37.45596116959006],\n            [-5.931731452974474, 37.45554378678429],\n            [-5.932878290388951, 37.455097576388226],\n            [-5.93400689176516, 37.45462297926948],\n            [-5.935116142394085, 37.45412046433385],\n            [-5.9362049467502, 37.45359052806039],\n            [-5.937272229575885, 37.45303369400929],\n            [-5.938316936945503, 37.45245051230288],\n            [-5.939338037308039, 37.451841559080385],\n            [-5.940334522507286, 37.45120743592693],\n            [-5.941305408778563, 37.450548769277404],\n            [-5.94224973772096, 37.44986620979572],\n            [-5.943166577244161, 37.449160431730185],\n            [-5.94405502248889, 37.44843213224554],\n            [-5.94491419672009, 37.447682030732395],\n            [-5.945743252191925, 37.44691086809471],\n            [-5.946541370983794, 37.446119406016074],\n            [-5.947307765806477, 37.44530842620549],\n            [-5.948041680777687, 37.44447872962344],\n            [-5.948742392166209, 37.44363113568893],\n            [-5.949409209103936, 37.442766481468496],\n            [-5.9500414742651015, 37.44188562084772],\n            [-5.950638564512035, 37.44098942368629],\n            [-5.951199891506828, 37.440078774957364],\n            [-5.951724902288318, 37.439154573872095],\n            [-5.952213079813833, 37.438217732990175],\n            [-5.952663943465171, 37.437269177317404],\n            [-5.953077049518353, 37.43630984339094],\n            [-5.953451991576677, 37.43534067835341],\n            [-5.953788400966687, 37.43436263901666],\n            [-5.954085947096673, 37.43337669091599],\n            [-5.9543443377773775, 37.43238380735607],\n            [-5.954563319504606, 37.4313849684492],\n            [-5.954742677703498, 37.43038116014709],\n            [-5.95488223693422, 37.429373373266976],\n            [-5.954981861058927, 37.428362602513054],\n            [-5.955041453369832, 37.42734984549435],\n            [-5.955060956678292, 37.42633610173975],\n            [-5.955040353364841, 37.42532237171141],\n            [-5.954979665390156, 37.42430965581727],\n            [-5.954878954266962, 37.423298953423945],\n            [-5.954738320992929, 37.422291261870654],\n            [-5.954557905944654, 37.4212875754854],\n            [-5.954337888732868, 37.42028888460427],\n            [-5.954078488019017, 37.41929617459477],\n            [-5.953779961293428, 37.41831042488428],\n            [-5.9534426046153195, 37.417332607994524],\n            [-5.9530667523149114, 37.416363688582905],\n            [-5.952652776657971, 37.4154046224919],\n            [-5.9522010874731235, 37.41445635580709],\n            [-5.951712131742356, 37.41351982392514],\n            [-5.951186393155085, 37.41259595063239],\n            [-5.950624391626306, 37.41168564719487],\n            [-5.950026682779258, 37.41078981146104],\n            [-5.949393857393182, 37.409909326977655],\n            [-5.948726540816703, 37.40904506211996],\n            [-5.9480253923474375, 37.4081978692369],\n            [-5.947291104578452, 37.40736858381226],\n            [-5.946524402712225, 37.40655802364238],\n            [-5.9457260438428134, 37.40576698803164],\n            [-5.944896816206914, 37.404996257005934],\n            [-5.944037538404586, 37.40424659054549],\n            [-5.943149058590417, 37.40351872783732],\n            [-5.942232253635899, 37.402813386548274],\n            [-5.941288028263885, 37.40213126211933],\n            [-5.940317314155952, 37.40147302708185],\n            [-5.939321069033563, 37.400839330396366],\n            [-5.938300275713931, 37.40023079681469],\n            [-5.937255941141505, 37.39964802626582],\n            [-5.936189095396044, 37.39909159326633],\n            [-5.935100790678236, 37.39856204635577],\n            [-5.933992100273856, 37.398059907557716],\n            [-5.932864117497483, 37.39758567186676],\n            [-5.931717954616803, 37.39713980676229],\n            [-5.9305547417585505, 37.396722751749245],\n            [-5.929375625797132, 37.396334917926296],\n            [-5.928181769227054, 37.39597668758216],\n            [-5.926974349020215, 37.395648413820055],\n            [-5.92575455546918, 37.39535042021093],\n            [-5.924523591017582, 37.39508300047568],\n            [-5.923282669078745, 37.394846418196764],\n            [-5.922033012843719, 37.39464090655928],\n            [-5.920775854079835, 37.39446666812213],\n            [-5.919512431920988, 37.394323874618934],\n            [-5.918243991650785, 37.39421266678963],\n            [-5.9169717834797515, 37.39413315424211],\n            [-5.915697061317774, 37.39408541534472],\n            [-5.914421081542969, 37.394069497149225],\n            [-5.913145101768163, 37.39408541534472],\n            [-5.911870379606186, 37.39413315424211],\n            [-5.9105981714351525, 37.39421266678963],\n            [-5.9093297311649495, 37.394323874618934],\n            [-5.908066309006103, 37.39446666812213],\n            [-5.9068091502422195, 37.39464090655928],\n            [-5.905559494007192, 37.394846418196764],\n            [-5.904318572068356, 37.39508300047568],\n            [-5.903087607616757, 37.39535042021093],\n            [-5.9018678140657235, 37.395648413820055],\n            [-5.9006603938588835, 37.39597668758216],\n            [-5.899466537288806, 37.396334917926296],\n            [-5.898287421327387, 37.396722751749245],\n            [-5.897124208469133, 37.39713980676229],\n            [-5.895978045588456, 37.39758567186676],\n            [-5.894850062812082, 37.398059907557716],\n            [-5.893741372407701, 37.39856204635577],\n            [-5.892653067689893, 37.39909159326633],\n            [-5.891586221944434, 37.39964802626582],\n            [-5.890541887372007, 37.40023079681469],\n            [-5.889521094052374, 37.400839330396366],\n            [-5.888524848929986, 37.40147302708185],\n            [-5.887554134822053, 37.40213126211933],\n            [-5.886609909450039, 37.402813386548274],\n            [-5.8856931044955205, 37.40351872783732],\n            [-5.884804624681351, 37.40424659054549],\n            [-5.883945346879025, 37.404996257005934],\n            [-5.883116119243124, 37.40576698803164],\n            [-5.882317760373713, 37.40655802364238],\n            [-5.881551058507486, 37.40736858381226],\n            [-5.880816770738501, 37.4081978692369],\n            [-5.880115622269235, 37.40904506211996],\n            [-5.879448305692755, 37.409909326977655],\n            [-5.87881548030668, 37.41078981146104],\n            [-5.8782177714596315, 37.41168564719487],\n            [-5.877655769930851, 37.41259595063239],\n            [-5.877130031343582, 37.41351982392514],\n            [-5.876641075612814, 37.41445635580709],\n            [-5.876189386427967, 37.4154046224919],\n            [-5.875775410771025, 37.416363688582905],\n            [-5.875399558470619, 37.417332607994524],\n            [-5.875062201792509, 37.41831042488428],\n            [-5.87476367506692, 37.41929617459477],\n            [-5.874504274353068, 37.42028888460427],\n            [-5.874284257141284, 37.4212875754854],\n            [-5.874103842093009, 37.422291261870654],\n            [-5.873963208818975, 37.423298953423945],\n            [-5.873862497695782, 37.42430965581727],\n            [-5.8738018097210976, 37.42532237171141],\n            [-5.873781206407646, 37.42633610173975],\n            [-5.873800709716105, 37.42734984549435],\n            [-5.873860302027011, 37.428362602513054],\n            [-5.873959926151718, 37.429373373266976],\n            [-5.87409948538244, 37.43038116014709],\n            [-5.874278843581331, 37.4313849684492],\n            [-5.874497825308561, 37.43238380735607],\n            [-5.874756215989264, 37.43337669091599],\n            [-5.875053762119251, 37.43436263901666],\n            [-5.87539017150926, 37.43534067835341],\n            [-5.875765113567583, 37.43630984339094],\n            [-5.876178219620766, 37.437269177317404],\n            [-5.876629083272104, 37.438217732990175],\n            [-5.877117260797618, 37.439154573872095],\n            [-5.87764227157911, 37.440078774957364],\n            [-5.878203598573903, 37.44098942368629],\n            [-5.878800688820835, 37.44188562084772],\n            [-5.879432953982002, 37.442766481468496],\n            [-5.8800997709197285, 37.44363113568893],\n            [-5.88080048230825, 37.44447872962344],\n            [-5.88153439727946, 37.44530842620549],\n            [-5.882300792102144, 37.446119406016074],\n            [-5.883098910894013, 37.44691086809471],\n            [-5.883927966365848, 37.447682030732395],\n            [-5.884787140597046, 37.44843213224554],\n            [-5.885675585841776, 37.449160431730185],\n            [-5.886592425364978, 37.44986620979572],\n            [-5.8875367543073756, 37.450548769277404],\n            [-5.888507640578652, 37.45120743592693],\n            [-5.889504125777899, 37.451841559080385],\n            [-5.890525226140434, 37.45245051230288],\n            [-5.891569933510052, 37.45303369400929],\n            [-5.892637216335737, 37.45359052806039],\n            [-5.893726020691852, 37.45412046433385],\n            [-5.894835271320778, 37.45462297926948],\n            [-5.895963872696988, 37.455097576388226],\n            [-5.8971107101114635, 37.45554378678429],\n            [-5.898274650775402, 37.45596116959006],\n            [-5.899454544942074, 37.45634931241319],\n            [-5.900649227045755, 37.45670783174549],\n            [-5.901857516856542, 37.45703637334325],\n            [-5.90307822064994, 37.45733461257847],\n            [-5.904310132390001, 37.45760225476089],\n            [-5.905552034924886, 37.45783903543016],\n            [-5.90680270119358, 37.45804472061821],\n            [-5.908060895442604, 37.45821910708124],\n            [-5.909325374451473, 37.45836202250139],\n            [-5.910594888765673, 37.45847332565762],\n            [-5.9118681839359155, 37.45855290656579],\n            [-5.913144001762415, 37.4586006865878],\n            [-5.914421081542969, 37.45861661850955]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/city-segment-projected2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-5.926437377929687, 37.32785364060672]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-6.0150146484375, 37.38011551844836],\n          [-5.9326171875, 37.364972870329154]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-5.9264373779296875, 37.36529657323715],\n            [-5.927917167401966, 37.36527808819801],\n            [-5.929395494316153, 37.36522265135043],\n            [-5.93087089756617, 37.365130317485686],\n            [-5.932341918948486, 37.365001177862155],\n            [-5.9338071046097385, 37.36483536011469],\n            [-5.935265006489939, 37.36463302812794],\n            [-5.936714183759838, 37.36439438187362],\n            [-5.938153204250984, 37.364119657212],\n            [-5.939580645877028, 37.3638091256578],\n            [-5.940995098044851, 37.36346309411066],\n            [-5.942395163054089, 37.363081904550505],\n            [-5.94377945748363, 37.36266593369816],\n            [-5.9451466135637165, 37.36221559264139],\n            [-5.946495280532236, 37.36173132642701],\n            [-5.947824125973868, 37.361213613619206],\n            [-5.9491318371407145, 37.360662965824666],\n            [-5.950417122253115, 37.360079927184984],\n            [-5.951678711779314, 37.35946507383683],\n            [-5.952915359692725, 37.358819013340366],\n            [-5.954125844705508, 37.358142384076636],\n            [-5.955308971477248, 37.35743585461441],\n            [-5.956463571797519, 37.356700123047105],\n            [-5.957588505741158, 37.35593591630066],\n            [-5.958682662795084, 37.35514398941263],\n            [-5.959744962955587, 37.35432512478386],\n            [-5.96077435779493, 37.35348013140274],\n            [-5.9617698314962775, 37.35260984404356],\n            [-5.962730401855888, 37.351715122439174],\n            [-5.963655121251576, 37.35079685042912],\n            [-5.9645430775765425, 37.34985593508408],\n            [-5.96539339513759, 37.34889330580725],\n            [-5.966205235516892, 37.34790991341392],\n            [-5.96697779839646, 37.3469067291899],\n            [-5.967710322344505, 37.34588474392978],\n            [-5.968402085562936, 37.344844966956174],\n            [-5.9690524065952575, 37.34378842512062],\n            [-5.969660644994228, 37.342716161787386],\n            [-5.970226201948571, 37.34162923580113],\n            [-5.9707485208682165, 37.340528720439345],\n            [-5.971227087927456, 37.33941570235075],\n            [-5.971661432565544, 37.3382912804807],\n            [-5.972051127944247, 37.337156564984475],\n            [-5.9723957913619286, 37.33601267612981],\n            [-5.972695084623806, 37.334860743189665],\n            [-5.972948714367993, 37.33370190332609],\n            [-5.973156432347111, 37.332537300466754],\n            [-5.973318035665146, 37.3313680841748],\n            [-5.973433366969406, 37.33019540851349],\n            [-5.973502314597395, 37.32902043090646],\n            [-5.973524812678497, 37.327844310995026],\n            [-5.973500841190409, 37.326668209493434],\n            [-5.9734304259702915, 37.32549328704328],\n            [-5.973313638680668, 37.32432070306821],\n            [-5.973150596730132, 37.32315161463002],\n            [-5.972941463148997, 37.32198717528738],\n            [-5.972686446420004, 37.32082853395811],\n            [-5.972385800264322, 37.319676833786346],\n            [-5.972039823383082, 37.318533211015534],\n            [-5.971648859154708, 37.31739879386851],\n            [-5.971213295288397, 37.31627470143555],\n            [-5.970733563434119, 37.31516204257184],\n            [-5.970210138749531, 37.314061914805],\n            [-5.969643539424289, 37.31297540325411],\n            [-5.969034326162228, 37.31190357956107],\n            [-5.968383101621958, 37.31084750083548],\n            [-5.967690509816463, 37.30980820861393],\n            [-5.966957235472291, 37.30878672783487],\n            [-5.966184003349009, 37.30778406582995],\n            [-5.965371577519612, 37.30680121133281],\n            [-5.964520760612595, 37.30583913350643],\n            [-5.963632393016484, 37.30489878098978],\n            [-5.962707352047579, 37.303981080964824],\n            [-5.961746551081793, 37.30308693824488],\n            [-5.960750938651412, 37.302217234384905],\n            [-5.9597214975076875, 37.30137282681494],\n            [-5.9586592436502075, 37.30055454799734],\n            [-5.957565225323975, 37.299763204608595],\n            [-5.956440521985221, 37.2989995767467],\n            [-5.955286243236935, 37.29826441716465],\n            [-5.954103527735191, 37.29755845053101],\n            [-5.952893542067328, 37.29688237271796],\n            [-5.951657479603083, 37.29623685011795],\n            [-5.950396559319795, 37.295622518989205],\n            [-5.949112024602865, 37.29503998483091],\n            [-5.947805142022583, 37.29448982178878],\n            [-5.94647720008856, 37.2939725720913],\n            [-5.945129507982961, 37.29348874551747],\n            [-5.943763394273772, 37.29303881889644],\n            [-5.942380205609345, 37.29262323563939],\n            [-5.940981305395484, 37.29224240530448],\n            [-5.9395680724563835, 37.29189670319478],\n            [-5.9381418996806685, 37.29158646999011],\n            [-5.93670419265388, 37.29131201141263],\n            [-5.935256368278718, 37.29107359792697],\n            [-5.933799853384372, 37.29087146447476],\n            [-5.932336083326286, 37.29070581024419],\n            [-5.9308665005777, 37.290576798474575],\n            [-5.929392553314344, 37.290484556296185],\n            [-5.927915693993622, 37.290429174605556],\n            [-5.9264373779296875, 37.29041070797629],\n            [-5.924959061865752, 37.290429174605556],\n            [-5.923482202545031, 37.290484556296185],\n            [-5.922008255281674, 37.290576798474575],\n            [-5.920538672533088, 37.29070581024419],\n            [-5.9190749024750025, 37.29087146447476],\n            [-5.9176183875806565, 37.29107359792697],\n            [-5.916170563205494, 37.29131201141263],\n            [-5.914732856178706, 37.29158646999011],\n            [-5.913306683402991, 37.29189670319478],\n            [-5.911893450463889, 37.29224240530448],\n            [-5.9104945502500295, 37.29262323563939],\n            [-5.909111361585602, 37.29303881889644],\n            [-5.907745247876412, 37.29348874551747],\n            [-5.906397555770814, 37.2939725720913],\n            [-5.90506961383679, 37.29448982178878],\n            [-5.903762731256509, 37.29503998483091],\n            [-5.902478196539579, 37.295622518989205],\n            [-5.9012172762562916, 37.29623685011795],\n            [-5.899981213792047, 37.29688237271796],\n            [-5.8987712281241835, 37.29755845053101],\n            [-5.897588512622439, 37.29826441716465],\n            [-5.896434233874153, 37.2989995767467],\n            [-5.895309530535397, 37.299763204608595],\n            [-5.894215512209167, 37.30055454799734],\n            [-5.893153258351687, 37.30137282681494],\n            [-5.892123817207962, 37.302217234384905],\n            [-5.891128204777582, 37.30308693824488],\n            [-5.890167403811796, 37.303981080964824],\n            [-5.889242362842891, 37.30489878098978],\n            [-5.888353995246778, 37.30583913350643],\n            [-5.887503178339762, 37.30680121133281],\n            [-5.886690752510365, 37.30778406582995],\n            [-5.885917520387083, 37.30878672783487],\n            [-5.885184246042911, 37.30980820861393],\n            [-5.884491654237416, 37.31084750083548],\n            [-5.8838404296971465, 37.31190357956107],\n            [-5.883231216435085, 37.31297540325411],\n            [-5.882664617109843, 37.314061914805],\n            [-5.882141192425256, 37.31516204257184],\n            [-5.881661460570976, 37.31627470143555],\n            [-5.881225896704666, 37.31739879386851],\n            [-5.880834932476291, 37.318533211015534],\n            [-5.880488955595052, 37.319676833786346],\n            [-5.88018830943937, 37.32082853395811],\n            [-5.879933292710377, 37.32198717528738],\n            [-5.879724159129243, 37.32315161463002],\n            [-5.879561117178707, 37.32432070306821],\n            [-5.879444329889082, 37.32549328704328],\n            [-5.879373914668965, 37.326668209493434],\n            [-5.879349943180877, 37.327844310995026],\n            [-5.879372441261979, 37.32902043090646],\n            [-5.879441388889968, 37.33019540851349],\n            [-5.879556720194228, 37.3313680841748],\n            [-5.879718323512263, 37.332537300466754],\n            [-5.879926041491381, 37.33370190332609],\n            [-5.8801796712355685, 37.334860743189665],\n            [-5.880478964497446, 37.33601267612981],\n            [-5.880823627915127, 37.337156564984475],\n            [-5.88121332329383, 37.3382912804807],\n            [-5.881647667931918, 37.33941570235075],\n            [-5.882126234991158, 37.340528720439345],\n            [-5.882648553910803, 37.34162923580113],\n            [-5.883214110865146, 37.342716161787386],\n            [-5.883822349264116, 37.34378842512062],\n            [-5.884472670296439, 37.344844966956174],\n            [-5.885164433514869, 37.34588474392978],\n            [-5.885896957462914, 37.3469067291899],\n            [-5.886669520342482, 37.34790991341392],\n            [-5.887481360721784, 37.34889330580725],\n            [-5.888331678282832, 37.34985593508408],\n            [-5.889219634607797, 37.35079685042912],\n            [-5.890144354003486, 37.351715122439174],\n            [-5.891104924363095, 37.35260984404356],\n            [-5.892100398064444, 37.35348013140274],\n            [-5.893129792903787, 37.35432512478386],\n            [-5.89419209306429, 37.35514398941263],\n            [-5.895286250118216, 37.35593591630066],\n            [-5.896411184061853, 37.356700123047105],\n            [-5.8975657843821265, 37.35743585461441],\n            [-5.8987489111538665, 37.358142384076636],\n            [-5.899959396166649, 37.358819013340366],\n            [-5.901196044080059, 37.35946507383683],\n            [-5.902457633606259, 37.360079927184984],\n            [-5.90374291871866, 37.360662965824666],\n            [-5.9050506298855066, 37.361213613619206],\n            [-5.906379475327138, 37.36173132642701],\n            [-5.907728142295658, 37.36221559264139],\n            [-5.909095298375744, 37.36266593369816],\n            [-5.910479592805285, 37.363081904550505],\n            [-5.911879657814523, 37.36346309411066],\n            [-5.913294109982346, 37.3638091256578],\n            [-5.91472155160839, 37.364119657212],\n            [-5.916160572099535, 37.36439438187362],\n            [-5.9176097493694355, 37.36463302812794],\n            [-5.919067651249636, 37.36483536011469],\n            [-5.920532836910888, 37.365001177862155],\n            [-5.922003858293204, 37.365130317485686],\n            [-5.923479261543221, 37.36522265135043],\n            [-5.924957588457408, 37.36527808819801],\n            [-5.9264373779296875, 37.36529657323715]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/distances.json",
    "content": "{\n  \"city-line1\": 0.9993988759,\n  \"city-line2\": 3.5827706171,\n  \"city-segment-inside1\": 1.1444315439,\n  \"city-segment-inside2\": 0.9974854079,\n  \"city-segment-inside3\": 3.497089823,\n  \"city-segment-obtuse1\": 2.8573246363,\n  \"city-segment-obtuse2\": 3.3538913334,\n  \"city-segment-projected1\": 3.5886611693,\n  \"city-segment-projected2\": 4.163469898,\n  \"issue-1156\": 189.0688049313,\n  \"line-fiji\": 26.8418623324,\n  \"line-resolute-bay\": 424.8707545895,\n  \"line1\": 25.6934928869,\n  \"line2\": 188.0655411712,\n  \"segment-fiji\": 27.3835094108,\n  \"segment1\": 69.0934195756,\n  \"segment1a\": 69.0934195756,\n  \"segment2\": 69.0934195756,\n  \"segment3\": 69.0828960461,\n  \"segment4\": 340.7276874254\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/issue-1156.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"meters\",\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.028348, 41]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [10.983200073242188, 40.97075154073346],\n          [11.02834701538086, 40.98372150040732],\n          [11.02508544921875, 41.00716631272605],\n          [10.994186401367188, 41.01947819666632]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [11.028348, 41.0017003342642],\n            [11.028277230834616, 41.00169949523024],\n            [11.028206531515254, 41.00169697895645],\n            [11.028135971818989, 41.001692787926295],\n            [11.028065621385055, 41.00168692627613],\n            [11.027995549646116, 41.00167939979112],\n            [11.027925825759704, 41.0016702158996],\n            [11.02785651853996, 41.00165938366561],\n            [11.027787696389709, 41.00164691378012],\n            [11.02771942723291, 41.00163281855028],\n            [11.027651778447632, 41.00161711188745],\n            [11.02758481679953, 41.00159980929333],\n            [11.027518608375937, 41.001580927844756],\n            [11.027453218520622, 41.001560486176786],\n            [11.027388711769305, 41.00153850446432],\n            [11.027325151785929, 41.001515004402194],\n            [11.027262601299839, 41.00149000918372],\n            [11.027201122043847, 41.00146354347787],\n            [11.02714077469331, 41.001435633404824],\n            [11.027081618806228, 41.00140630651031],\n            [11.027023712764466, 41.00137559173829],\n            [11.026967113716129, 41.00134351940245],\n            [11.026911877519144, 41.00131012115626],\n            [11.026858058686155, 41.001275429961765],\n            [11.026805710330695, 41.001239480056995],\n            [11.026754884114778, 41.00120230692219],\n            [11.026705630197913, 41.00116394724479],\n            [11.0266579971876, 41.001124438883195],\n            [11.026612032091357, 41.001083820829436],\n            [11.026567780270343, 41.001042133170614],\n            [11.026525285394584, 41.00099941704943],\n            [11.02648458939988, 41.0009557146235],\n            [11.026445732446435, 41.000911069023736],\n            [11.02640875287923, 41.000865524311834],\n            [11.02637368719017, 41.00081912543677],\n            [11.02634056998211, 41.00077191819035],\n            [11.026309433934703, 41.00072394916212],\n            [11.026280309772153, 41.000675265693346],\n            [11.026253226232916, 41.00062591583025],\n            [11.026228210041356, 41.00057594827664],\n            [11.026205285881383, 41.0005254123458],\n            [11.026184476372103, 41.00047435791185],\n            [11.02616580204552, 41.00042283536049],\n            [11.02614928132629, 41.000370895539305],\n            [11.026134930513553, 41.00031858970754],\n            [11.026122763764869, 41.000265969485554],\n            [11.026112793082268, 41.00021308680384],\n            [11.026105028300417, 41.000159993851796],\n            [11.02609947707695, 41.0001067430262],\n            [11.026096144884914, 41.00005338687949],\n            [11.026095035007401, 40.99999997806796],\n            [11.026096148534329, 40.999946569299695],\n            [11.026099484361378, 40.999893213282654],\n            [11.02610503919111, 40.99983996267259],\n            [11.026112807536244, 40.999786870021104],\n            [11.026122781725087, 40.999733987723786],\n            [11.026134951909128, 40.99968136796851],\n            [11.026149306072785, 40.999629062683944],\n            [11.026165830045276, 40.999577123488265],\n            [11.02618450751461, 40.99952560163826],\n            [11.026205320043744, 40.99947454797874],\n            [11.026228247088746, 40.99942401289238],\n            [11.02625326601912, 40.999374046249926],\n            [11.026280352140157, 40.99932469736109],\n            [11.026309478717302, 40.999276014925826],\n            [11.026340617002566, 40.99922804698627],\n            [11.026373736262912, 40.99918084087941],\n            [11.026408803810591, 40.99913444319027],\n            [11.026445785035417, 40.999088899706],\n            [11.026484643438932, 40.99904425537072],\n            [11.026525340670442, 40.99900055424114],\n            [11.026567836564858, 40.998957839443044],\n            [11.026612089182363, 40.99891615312887],\n            [11.026658054849777, 40.99887553643594],\n            [11.026705688203704, 40.99883602944604],\n            [11.026754942235257, 40.99879767114576],\n            [11.026805768336484, 40.998760499388084],\n            [11.026858116348336, 40.99872455085501],\n            [11.02691193461015, 40.99868986102135],\n            [11.026967170010643, 40.998656464119776],\n            [11.027023768040324, 40.998624393107036],\n            [11.027081672845283, 40.99859367963135],\n            [11.02714082728229, 40.998564354001324],\n            [11.027201172975209, 40.998536445155935],\n            [11.02726265037258, 40.998509980636],\n            [11.02732519880638, 40.99848498655709],\n            [11.027388756551902, 40.99846148758363],\n            [11.027453260888628, 40.998439506904674],\n            [11.027518648162143, 40.998419066210964],\n            [11.027584853846918, 40.99840018567355],\n            [11.027651812609992, 40.998382883923895],\n            [11.027719458375417, 40.9983671780355],\n            [11.027787724389459, 40.99835308350702],\n            [11.027856543286457, 40.99834061424704],\n            [11.027925847155277, 40.99832978256025],\n            [11.02799556760633, 40.99832059913543],\n            [11.02806563583903, 40.99831307303482],\n            [11.02813598270968, 40.998307211685216],\n            [11.028206538799681, 40.9983030208706],\n            [11.02827723448403, 40.99830050472647],\n            [11.028348, 40.99829966573579],\n            [11.028418765515971, 40.99830050472647],\n            [11.02848946120032, 40.9983030208706],\n            [11.02856001729032, 40.998307211685216],\n            [11.028630364160971, 40.99831307303482],\n            [11.02870043239367, 40.99832059913543],\n            [11.028770152844723, 40.99832978256025],\n            [11.028839456713543, 40.99834061424704],\n            [11.028908275610542, 40.99835308350702],\n            [11.028976541624584, 40.9983671780355],\n            [11.029044187390008, 40.998382883923895],\n            [11.029111146153083, 40.99840018567355],\n            [11.029177351837857, 40.998419066210964],\n            [11.029242739111373, 40.998439506904674],\n            [11.029307243448098, 40.99846148758363],\n            [11.02937080119362, 40.99848498655709],\n            [11.029433349627421, 40.998509980636],\n            [11.029494827024791, 40.998536445155935],\n            [11.02955517271771, 40.998564354001324],\n            [11.029614327154718, 40.99859367963135],\n            [11.029672231959676, 40.998624393107036],\n            [11.029728829989358, 40.998656464119776],\n            [11.029784065389851, 40.99868986102135],\n            [11.029837883651664, 40.99872455085501],\n            [11.029890231663515, 40.998760499388084],\n            [11.029941057764743, 40.99879767114576],\n            [11.029990311796297, 40.99883602944604],\n            [11.030037945150223, 40.99887553643594],\n            [11.030083910817638, 40.99891615312887],\n            [11.03012816343514, 40.998957839443044],\n            [11.030170659329558, 40.99900055424114],\n            [11.030211356561068, 40.99904425537072],\n            [11.030250214964584, 40.999088899706],\n            [11.03028719618941, 40.99913444319027],\n            [11.030322263737089, 40.99918084087941],\n            [11.030355382997435, 40.99922804698627],\n            [11.030386521282699, 40.999276014925826],\n            [11.030415647859844, 40.99932469736109],\n            [11.03044273398088, 40.999374046249926],\n            [11.030467752911255, 40.99942401289238],\n            [11.030490679956257, 40.99947454797874],\n            [11.03051149248539, 40.99952560163826],\n            [11.030530169954725, 40.999577123488265],\n            [11.030546693927215, 40.999629062683944],\n            [11.030561048090872, 40.99968136796851],\n            [11.030573218274913, 40.999733987723786],\n            [11.030583192463757, 40.999786870021104],\n            [11.03059096080889, 40.99983996267259],\n            [11.030596515638623, 40.999893213282654],\n            [11.030599851465672, 40.999946569299695],\n            [11.0306009649926, 40.99999997806796],\n            [11.030599855115087, 41.00005338687949],\n            [11.03059652292305, 41.0001067430262],\n            [11.030590971699583, 41.000159993851796],\n            [11.030583206917733, 41.00021308680384],\n            [11.030573236235131, 41.000265969485554],\n            [11.030561069486447, 41.00031858970754],\n            [11.03054671867371, 41.000370895539305],\n            [11.03053019795448, 41.00042283536049],\n            [11.030511523627897, 41.00047435791185],\n            [11.030490714118615, 41.0005254123458],\n            [11.030467789958644, 41.00057594827664],\n            [11.030442773767085, 41.00062591583025],\n            [11.030415690227848, 41.000675265693346],\n            [11.030386566065298, 41.00072394916212],\n            [11.03035543001789, 41.00077191819035],\n            [11.030322312809831, 41.00081912543677],\n            [11.030287247120771, 41.000865524311834],\n            [11.030250267553566, 41.000911069023736],\n            [11.03021141060012, 41.0009557146235],\n            [11.030170714605417, 41.00099941704943],\n            [11.030128219729658, 41.001042133170614],\n            [11.030083967908643, 41.001083820829436],\n            [11.0300380028124, 41.001124438883195],\n            [11.029990369802087, 41.00116394724479],\n            [11.029941115885222, 41.00120230692219],\n            [11.029890289669305, 41.001239480056995],\n            [11.029837941313845, 41.001275429961765],\n            [11.029784122480857, 41.00131012115626],\n            [11.029728886283872, 41.00134351940245],\n            [11.029672287235535, 41.00137559173829],\n            [11.029614381193772, 41.00140630651031],\n            [11.02955522530669, 41.001435633404824],\n            [11.029494877956154, 41.00146354347787],\n            [11.029433398700162, 41.00149000918372],\n            [11.029370848214072, 41.001515004402194],\n            [11.029307288230696, 41.00153850446432],\n            [11.029242781479379, 41.001560486176786],\n            [11.029177391624064, 41.001580927844756],\n            [11.02911118320047, 41.00159980929333],\n            [11.029044221552368, 41.00161711188745],\n            [11.02897657276709, 41.00163281855028],\n            [11.028908303610292, 41.00164691378012],\n            [11.028839481460041, 41.00165938366561],\n            [11.028770174240297, 41.0016702158996],\n            [11.028700450353885, 41.00167939979112],\n            [11.028630378614945, 41.00168692627613],\n            [11.028560028181012, 41.001692787926295],\n            [11.028489468484747, 41.00169697895645],\n            [11.028418769165384, 41.00169949523024],\n            [11.028348, 41.0017003342642]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/line-fiji.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.46142578124997, -17.481671724450752]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-183.131103515625, -17.675427818339383],\n          [-181.50512695312497, -16.04581345375217],\n          [-177.802734375, -16.615137799987075],\n          [-179.47265625, -17.947380678685203],\n          [-179.60449218749997, -16.383391123608387],\n          [-181.087646484375, -17.70682812401954],\n          [-179.93408203125, -15.432500881886043],\n          [-180.010986328125, -18.458768120015126],\n          [-181.834716796875, -17.832374329567507],\n          [-180.15380859375, -15.601874876739798],\n          [-178.08837890625, -16.320139453117562],\n          [-179.01123046874997, -18.98941471523932],\n          [-183.240966796875, -16.53089842368168],\n          [-182.4169921875, -18.67747125852608],\n          [-182.274169921875, -16.003575733881313]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.46142578124994, -17.24027739049296],\n            [-180.46936484304584, -17.24039634692233],\n            [-180.4772961007639, -17.240753099274404],\n            [-180.48521175790825, -17.241347296854684],\n            [-180.49310403313993, -17.242178355550998],\n            [-180.50096516783762, -17.2432454584011],\n            [-180.50878743363776, -17.2445475563866],\n            [-180.51656313994596, -17.246083369452435],\n            [-180.5242846414141, -17.247851387751002],\n            [-180.5319443453747, -17.24984987310968],\n            [-180.5395347192272, -17.25207686072057],\n            [-180.54704829776773, -17.254530161050656],\n            [-180.5544776904568, -17.25720736197078],\n            [-180.56181558861732, -17.26010583110138],\n            [-180.56905477255665, -17.263222718372816],\n            [-180.57618811860564, -17.26655495879789],\n            [-180.58320860606855, -17.270099275454],\n            [-180.59010932407656, -17.273852182672133],\n            [-180.59688347833938, -17.277809989429688],\n            [-180.60352439778754, -17.28196880294405],\n            [-180.61002554109984, -17.28632453246341],\n            [-180.61638050310924, -17.29087289325147],\n            [-180.62258302108154, -17.295609410762097],\n            [-180.62862698086013, -17.30052942500019],\n            [-180.6345064228718, -17.30562809506453],\n            [-180.64021554798677, -17.31090040386846],\n            [-180.64574872322848, -17.31634116303384],\n            [-180.65110048732615, -17.32194501795376],\n            [-180.65626555610586, -17.327706453019193],\n            [-180.6612388277143, -17.333619797004644],\n            [-180.66601538766997, -17.339679228607753],\n            [-180.67059051373707, -17.345878782137515],\n            [-180.6749596806168, -17.352212353345852],\n            [-180.67911856445195, -17.358673705396864],\n            [-180.68306304713923, -17.3652564749682],\n            [-180.68678922044626, -17.371954178478635],\n            [-180.69029338992738, -17.37876021843602],\n            [-180.69357207863587, -17.38566788989942],\n            [-180.6966220306271, -17.39267038704937],\n            [-180.6994402142502, -17.399760809859895],\n            [-180.70202382522356, -17.40693217086583],\n            [-180.70437028949195, -17.414177402019096],\n            [-180.70647726586128, -17.421489361627128],\n            [-180.70834264840795, -17.4288608413669],\n            [-180.70996456866118, -17.436284573367722],\n            [-180.71134139755404, -17.443753237355878],\n            [-180.71247174714253, -17.451259467854303],\n            [-180.71335447208938, -17.4587958614302],\n            [-180.71398867091125, -17.466354983983535],\n            [-180.71437368698753, -17.47392937806933],\n            [-180.71450910932907, -17.48151157024661],\n            [-180.71439477310608, -17.48909407844673],\n            [-180.7140307599337, -17.496669419353903],\n            [-180.7134173979149, -17.50423011579066],\n            [-180.71255526143932, -17.51176870410091],\n            [-180.71144517073955, -17.519277741523396],\n            [-180.71008819120246, -17.52674981354816],\n            [-180.70848563243777, -17.53417754124877],\n            [-180.70663904710324, -17.54155358858299],\n            [-180.70455022948727, -17.54887066965465],\n            [-180.70222121385032, -17.556121555929458],\n            [-180.69965427252583, -17.56329908339754],\n            [-180.69685191378213, -17.57039615967548],\n            [-180.6938168794475, -17.577405771040844],\n            [-180.69055214229977, -17.584320989392026],\n            [-180.68706090322274, -17.59113497912635],\n            [-180.68334658813214, -17.597841003929634],\n            [-180.67941284467355, -17.604432433470258],\n            [-180.6752635386954, -17.610902749990853],\n            [-180.67090275049986, -17.617245554791143],\n            [-180.66633477087558, -17.623454574595147],\n            [-180.66156409691553, -17.6295236677963],\n            [-180.65659542762396, -17.635446830574185],\n            [-180.65143365931672, -17.641218202876548],\n            [-180.64608388081916, -17.64683207426044],\n            [-180.64055136846628, -17.65228288958661],\n            [-180.6348415809101, -17.657565254561117],\n            [-180.62896015373897, -17.662673941118666],\n            [-180.6229128939145, -17.667603892641896],\n            [-180.61670577403117, -17.67235022901138],\n            [-180.61034492640488, -17.67690825148108],\n            [-180.60383663699537, -17.681273447374124],\n            [-180.59718733917003, -17.685441494594166],\n            [-180.5904036073139, -17.68940826594752],\n            [-180.58349215029324, -17.693169833271646],\n            [-180.57645980477912, -17.696722471365664],\n            [-180.56931352843753, -17.700062661718786],\n            [-180.5620603929937, -17.703187096032774],\n            [-180.55470757717652, -17.7060926795348],\n            [-180.54726235955184, -17.708776534077124],\n            [-180.53973211125097, -17.711236001020456],\n            [-180.5321242886019, -17.713468643897947],\n            [-180.52444642567184, -17.71547225085697],\n            [-180.5167061267279, -17.717244836876183],\n            [-180.50891105862408, -17.718784645755537],\n            [-180.50106894312256, -17.7200901518771],\n            [-180.4931875491574, -17.721160061734853],\n            [-180.48527468504858, -17.721993315231938],\n            [-180.47733819067463, -17.72258908674385],\n            [-180.46938592961206, -17.72294678594654],\n            [-180.46142578124994, -17.723066058408545],\n            [-180.45346563288786, -17.72294678594654],\n            [-180.4455133718253, -17.72258908674385],\n            [-180.43757687745133, -17.721993315231938],\n            [-180.42966401334252, -17.721160061734853],\n            [-180.42178261937735, -17.7200901518771],\n            [-180.41394050387584, -17.718784645755537],\n            [-180.406145435772, -17.717244836876183],\n            [-180.3984051368281, -17.71547225085697],\n            [-180.39072727389805, -17.713468643897947],\n            [-180.38311945124894, -17.711236001020456],\n            [-180.37558920294808, -17.708776534077124],\n            [-180.3681439853234, -17.7060926795348],\n            [-180.36079116950623, -17.703187096032774],\n            [-180.35353803406238, -17.700062661718786],\n            [-180.34639175772085, -17.696722471365664],\n            [-180.33935941220668, -17.693169833271646],\n            [-180.332447955186, -17.68940826594752],\n            [-180.32566422332988, -17.685441494594166],\n            [-180.31901492550455, -17.681273447374124],\n            [-180.31250663609504, -17.67690825148108],\n            [-180.30614578846874, -17.67235022901138],\n            [-180.2999386685854, -17.667603892641896],\n            [-180.29389140876094, -17.662673941118666],\n            [-180.28800998158982, -17.657565254561117],\n            [-180.28230019403364, -17.65228288958661],\n            [-180.27676768168078, -17.64683207426044],\n            [-180.2714179031832, -17.641218202876548],\n            [-180.26625613487596, -17.635446830574185],\n            [-180.2612874655844, -17.6295236677963],\n            [-180.25651679162434, -17.623454574595147],\n            [-180.25194881200005, -17.617245554791143],\n            [-180.24758802380455, -17.610902749990853],\n            [-180.24343871782636, -17.604432433470258],\n            [-180.23950497436778, -17.59784100392964],\n            [-180.23579065927717, -17.59113497912635],\n            [-180.23229942020015, -17.58432098939203],\n            [-180.22903468305242, -17.577405771040844],\n            [-180.2259996487178, -17.57039615967548],\n            [-180.22319728997408, -17.56329908339754],\n            [-180.2206303486496, -17.556121555929458],\n            [-180.21830133301265, -17.54887066965465],\n            [-180.21621251539668, -17.54155358858299],\n            [-180.21436593006214, -17.53417754124877],\n            [-180.21276337129748, -17.52674981354816],\n            [-180.21140639176036, -17.519277741523396],\n            [-180.2102963010606, -17.51176870410091],\n            [-180.20943416458502, -17.50423011579066],\n            [-180.2088208025662, -17.496669419353903],\n            [-180.2084567893939, -17.48909407844673],\n            [-180.20834245317084, -17.48151157024661],\n            [-180.20847787551241, -17.47392937806933],\n            [-180.20886289158867, -17.466354983983535],\n            [-180.20949709041054, -17.4587958614302],\n            [-180.21037981535738, -17.451259467854303],\n            [-180.21151016494588, -17.443753237355878],\n            [-180.21288699383874, -17.436284573367722],\n            [-180.21450891409197, -17.4288608413669],\n            [-180.21637429663866, -17.421489361627128],\n            [-180.21848127300797, -17.414177402019096],\n            [-180.22082773727638, -17.40693217086583],\n            [-180.22341134824973, -17.399760809859895],\n            [-180.2262295318728, -17.39267038704937],\n            [-180.22927948386405, -17.38566788989942],\n            [-180.23255817257254, -17.37876021843602],\n            [-180.23606234205369, -17.371954178478635],\n            [-180.2397885153607, -17.365256474968202],\n            [-180.243732998048, -17.358673705396864],\n            [-180.2478918818831, -17.352212353345852],\n            [-180.25226104876285, -17.345878782137515],\n            [-180.25683617482994, -17.339679228607753],\n            [-180.26161273478564, -17.333619797004644],\n            [-180.26658600639405, -17.327706453019193],\n            [-180.27175107517377, -17.32194501795376],\n            [-180.27710283927144, -17.31634116303384],\n            [-180.28263601451314, -17.31090040386846],\n            [-180.28834513962812, -17.30562809506453],\n            [-180.29422458163978, -17.30052942500019],\n            [-180.30026854141838, -17.295609410762097],\n            [-180.30647105939067, -17.29087289325147],\n            [-180.3128260214001, -17.28632453246341],\n            [-180.31932716471238, -17.28196880294405],\n            [-180.32596808416054, -17.277809989429688],\n            [-180.33274223842335, -17.273852182672133],\n            [-180.3396429564314, -17.270099275454],\n            [-180.34666344389427, -17.26655495879789],\n            [-180.35379678994326, -17.263222718372816],\n            [-180.3610359738826, -17.26010583110138],\n            [-180.36837387204312, -17.25720736197078],\n            [-180.37580326473218, -17.254530161050656],\n            [-180.38331684327272, -17.25207686072057],\n            [-180.3909072171252, -17.24984987310968],\n            [-180.39856692108583, -17.247851387751002],\n            [-180.40628842255396, -17.246083369452435],\n            [-180.41406412886215, -17.2445475563866],\n            [-180.4218863946623, -17.2432454584011],\n            [-180.42974752936, -17.242178355550998],\n            [-180.43763980459167, -17.241347296854684],\n            [-180.445555461736, -17.240753099274404],\n            [-180.45348671945408, -17.24039634692233],\n            [-180.46142578124994, -17.24027739049296]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/line-resolute-bay.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"miles\",\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-7.734374999999999, 70.4367988185464]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-60.8203125, 64.99793920061401],\n          [-31.640625, 76.96033358827414],\n          [-5.625, 76.55774293896555]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-7.734374999999999, 76.58602051286941],\n            [-8.565144421331702, 76.581649963564],\n            [-9.39367789597315, 76.5685510004748],\n            [-10.217758869539182, 76.5467615511381],\n            [-11.03520915451126, 76.51634440809259],\n            [-11.843907086027288, 76.47738660965338],\n            [-12.641804490235188, 76.42999859411563],\n            [-13.426942142522716, 76.37431314739187],\n            [-14.19746344970851, 76.31048416829415],\n            [-14.95162615449696, 76.23868527888972],\n            [-15.687811928559064, 76.15910830950726],\n            [-16.404533788936927, 76.07196168903313],\n            [-17.100441337800245, 75.9774687711547],\n            [-17.77432388512998, 75.87586612627433],\n            [-18.425111565519206, 75.76740182706286],\n            [-19.051874602525142, 75.65233375320389],\n            [-19.653820906145185, 75.53092793797006],\n            [-20.23029221094424, 75.40345697604236],\n            [-20.780758974606012, 75.27019850859514],\n            [-21.30481426012385, 75.13143379826914],\n            [-21.802166820700865, 74.98744640336622],\n            [-22.272633596069, 74.83852095751867],\n            [-22.716131813804385, 74.68494205828752],\n            [-23.13267087070847, 74.52699326567465],\n            [-23.522344148726436, 74.36495620941619],\n            [-23.88532089831963, 74.1991098021686],\n            [-24.221838300637035, 74.02972955429269],\n            [-24.532193798994204, 73.85708698486327],\n            [-24.81673777062464, 73.68144912275741],\n            [-25.075866591808243, 73.50307809116204],\n            [-25.310016133536717, 73.32223076856289],\n            [-25.51965571095902, 73.13915851918941],\n            [-25.705282497964156, 72.9541069859596],\n            [-25.867416408339263, 72.76731593916529],\n            [-26.006595436860078, 72.57901917442733],\n            [-26.123371447270163, 72.38944445380996],\n            [-26.21830638920464, 72.19881348438844],\n            [-26.291968922522372, 72.00734192899687],\n            [-26.344931425046383, 71.81523944432878],\n            [-26.377767358189985, 71.6227097420068],\n            [-26.3910489642081, 71.42995066867377],\n            [-26.385345268702284, 71.23715430157571],\n            [-26.36122036239749, 71.04450705650301],\n            [-26.31923193697851, 70.85218980532848],\n            [-26.25993005082756, 70.66037800072363],\n            [-26.183856101757662, 70.4692418059512],\n            [-26.091541985221046, 70.27894622791919],\n            [-25.9835094179309, 70.08965125194186],\n            [-25.860269408323543, 69.90151197688661],\n            [-25.72232185677262, 69.71467874959397],\n            [-25.57015526991903, 69.52929729764357],\n            [-25.40424657488068, 69.34550885970135],\n            [-25.225061020440684, 69.16345031282765],\n            [-25.033052153572207, 68.98325429625004],\n            [-24.82866186083601, 68.80504933121458],\n            [-24.612320465281737, 68.62895993662265],\n            [-24.384446870494035, 68.4551067402413],\n            [-24.145448744352457, 68.28360658534494],\n            [-23.895722735921858, 68.11457263270424],\n            [-23.63565471966039, 67.94811445788801],\n            [-23.3656200618311, 67.7843381438856],\n            [-23.085983904633974, 67.62334636909146],\n            [-22.797101464142315, 67.46523849072247],\n            [-22.49931833863697, 67.31011062376118],\n            [-22.192970824387114, 67.15805571553719],\n            [-21.878386236333377, 67.00916361607294],\n            [-21.555883231490167, 66.86352114433164],\n            [-21.225772133206036, 66.7212121505131],\n            [-20.888355254705555, 66.58231757454918],\n            [-20.543927220587435, 66.44691550095408],\n            [-20.192775285176197, 66.31508121018659],\n            [-19.835179646820013, 66.18688722668173],\n            [-19.471413757398977, 66.06240336370901],\n            [-19.101744626458718, 65.94169676521116],\n            [-18.72643311951596, 65.82483194477652],\n            [-18.345734250197395, 65.71187082189282],\n            [-17.959897465973864, 65.60287275562763],\n            [-17.569166927338056, 65.4978945758756],\n            [-17.173781780350154, 65.39699061230765],\n            [-16.773976422540343, 65.30021272115302],\n            [-16.36998076221399, 65.20761030993899],\n            [-15.962020471253071, 65.11923036030801],\n            [-15.550317231549254, 65.03511744902674],\n            [-15.135088975239386, 64.95531376729525],\n            [-14.71655011894423, 64.87985913845965],\n            [-14.29491179223713, 64.80879103422565],\n            [-13.870382060590558, 64.7421445894642],\n            [-13.443166143067252, 64.67995261569638],\n            [-13.01346662503737, 64.62224561333706],\n            [-12.581483666216398, 64.56905178277314],\n            [-12.14741520432847, 64.52039703434588],\n            [-11.711457154709219, 64.476304997301],\n            [-11.273803606168695, 64.4367970277661],\n            [-10.834647013441227, 64.40189221580822],\n            [-10.394178386553552, 64.37160739162026],\n            [-9.952587477446391, 64.34595713087894],\n            [-9.510062964187535, 64.32495375931235],\n            [-9.066792633117016, 64.30860735650953],\n            [-8.622963559266646, 64.29692575900012],\n            [-8.178762285397463, 64.28991456262607],\n            [-7.734375, 64.28757712422336],\n            [-7.289987714602533, 64.28991456262607],\n            [-6.845786440733357, 64.29692575900012],\n            [-6.40195736688298, 64.30860735650953],\n            [-5.958687035812476, 64.32495375931234],\n            [-5.516162522553611, 64.34595713087894],\n            [-5.074571613446442, 64.37160739162026],\n            [-4.634102986558781, 64.40189221580822],\n            [-4.1949463938313, 64.4367970277661],\n            [-3.7572928452907877, 64.476304997301],\n            [-3.321334795671528, 64.52039703434588],\n            [-2.8872663337836033, 64.56905178277314],\n            [-2.455283374962631, 64.62224561333706],\n            [-2.0255838569327484, 64.67995261569638],\n            [-1.5983679394094443, 64.7421445894642],\n            [-1.173838207762878, 64.80879103422565],\n            [-0.7521998810557695, 64.87985913845965],\n            [-0.33366102476061926, 64.95531376729525],\n            [0.08156723154925342, 65.03511744902674],\n            [0.49327047125306617, 65.11923036030801],\n            [0.9012307622139913, 65.20761030993899],\n            [1.305226422540347, 65.30021272115302],\n            [1.7050317803501491, 65.39699061230765],\n            [2.100416927338057, 65.4978945758756],\n            [2.4911474659738655, 65.60287275562763],\n            [2.876984250197395, 65.71187082189282],\n            [3.2576831195159492, 65.82483194477652],\n            [3.6329946264587196, 65.94169676521116],\n            [4.002663757398979, 66.06240336370901],\n            [4.366429646820011, 66.18688722668173],\n            [4.7240252851761975, 66.31508121018659],\n            [5.075177220587435, 66.44691550095408],\n            [5.419605254705557, 66.58231757454918],\n            [5.757022133206036, 66.7212121505131],\n            [6.087133231490147, 66.86352114433163],\n            [6.4096362363333785, 67.00916361607294],\n            [6.7242208243871175, 67.15805571553719],\n            [7.030568338636973, 67.31011062376118],\n            [7.32835146414232, 67.46523849072247],\n            [7.617233904633974, 67.62334636909146],\n            [7.896870061831097, 67.7843381438856],\n            [8.166904719660394, 67.94811445788801],\n            [8.42697273592186, 68.11457263270424],\n            [8.676698744352455, 68.28360658534494],\n            [8.915696870494015, 68.45510674024129],\n            [9.143570465281739, 68.62895993662265],\n            [9.359911860836013, 68.80504933121458],\n            [9.564302153572209, 68.98325429625004],\n            [9.756311020440668, 69.16345031282762],\n            [9.93549657488068, 69.34550885970135],\n            [10.101405269919033, 69.52929729764357],\n            [10.253571856772629, 69.71467874959399],\n            [10.391519408323544, 69.90151197688661],\n            [10.514759417930899, 70.08965125194186],\n            [10.622791985221047, 70.27894622791919],\n            [10.715106101757662, 70.4692418059512],\n            [10.791180050827563, 70.66037800072363],\n            [10.850481936978513, 70.85218980532848],\n            [10.892470362397502, 71.04450705650301],\n            [10.916595268702286, 71.23715430157571],\n            [10.922298964208107, 71.42995066867377],\n            [10.909017358189985, 71.6227097420068],\n            [10.87618142504638, 71.81523944432878],\n            [10.823218922522384, 72.00734192899687],\n            [10.749556389204642, 72.19881348438844],\n            [10.654621447270172, 72.38944445380996],\n            [10.537845436860067, 72.5790191744273],\n            [10.398666408339263, 72.76731593916529],\n            [10.236532497964165, 72.9541069859596],\n            [10.050905710959007, 73.13915851918938],\n            [9.841266133536719, 73.32223076856289],\n            [9.607116591808248, 73.50307809116204],\n            [9.34798777062464, 73.68144912275741],\n            [9.063443798994196, 73.85708698486324],\n            [8.753088300637033, 74.02972955429266],\n            [8.416570898319637, 74.1991098021686],\n            [8.05359414872643, 74.36495620941619],\n            [7.663920870708464, 74.52699326567465],\n            [7.247381813804389, 74.68494205828752],\n            [6.803883596069004, 74.83852095751867],\n            [6.333416820700874, 74.98744640336622],\n            [5.836064260123846, 75.13143379826914],\n            [5.3120089746060275, 75.27019850859514],\n            [4.7615422109442616, 75.40345697604236],\n            [4.185070906145185, 75.53092793797006],\n            [3.5831246025251478, 75.65233375320389],\n            [2.9563615655192175, 75.76740182706286],\n            [2.3055738851299945, 75.87586612627433],\n            [1.6316913378002462, 75.9774687711547],\n            [0.9357837889369279, 76.07196168903313],\n            [0.21906192855907122, 76.15910830950726],\n            [-0.5171238455030263, 76.23868527888972],\n            [-1.2712865502914739, 76.31048416829415],\n            [-2.041807857477285, 76.37431314739187],\n            [-2.8269455097648057, 76.42999859411563],\n            [-3.6248429139727043, 76.47738660965338],\n            [-4.433540845488731, 76.51634440809256],\n            [-5.2509911304608226, 76.5467615511381],\n            [-6.075072104026851, 76.5685510004748],\n            [-6.903605578668295, 76.581649963564],\n            [-7.734374999999999, 76.58602051286941]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/line1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"miles\",\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-47.08740234375, 32.26855544621476]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-55.06347656249999, 29.973970240516614],\n          [-45.439453125, 36.58024660149866],\n          [-49.04296875, 31.914867503276223],\n          [-43.39599609375, 33.99802726234877],\n          [-46.51611328125, 29.707139348134145],\n          [-52.4267578125, 32.37996146435729],\n          [-50.11962890625, 28.43971381702788],\n          [-52.998046875, 27.430289738862594],\n          [-50.0537109375, 35.02999636902566],\n          [-42.38525390625, 31.466153715024294]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-47.08740234375, 32.64042143641672],\n            [-47.10127346855645, 32.64023718553941],\n            [-47.1151307337655, 32.63968461701659],\n            [-47.12896029414532, 32.63876428298469],\n            [-47.14274833317819, 32.63747710303488],\n            [-47.15648107737497, 32.63582436325957],\n            [-47.170144810538716, 32.63380771491907],\n            [-47.183725887960335, 32.63142917273005],\n            [-47.1972107505298, 32.62869111277777],\n            [-47.21058593874617, 32.6255962700546],\n            [-47.22383810661004, 32.62214773562774],\n            [-47.2369540353822, 32.61834895343951],\n            [-47.24992064719261, 32.614203716743894],\n            [-47.2627250184837, 32.60971616418371],\n            [-47.27535439327286, 32.60489077551288],\n            [-47.28779619621873, 32.5997323669689],\n            [-47.30003804547644, 32.594246086300906],\n            [-47.31206776532763, 32.58843740745918],\n            [-47.32387339857072, 32.582312124952296],\n            [-47.33544321865799, 32.57587634787837],\n            [-47.34676574156614, 32.56913649363756],\n            [-47.35782973738728, 32.562099281332834],\n            [-47.36862424162818, 32.55477172486682],\n            [-47.37913856620556, 32.54716112574254],\n            [-47.389362310126124, 32.53927506557631],\n            [-47.39928536984024, 32.53112139833146],\n            [-47.40889794925877, 32.522708242281404],\n            [-47.418190569423096, 32.51404397171159],\n            [-47.42715407781894, 32.5051372083692],\n            [-47.435779657324865, 32.495996812670704],\n            [-47.44405883478733, 32.486631874676576],\n            [-47.4519834892142, 32.47705170484363],\n            [-47.45954585957953, 32.467265824565054],\n            [-47.46673855223298, 32.45728395650843],\n            [-47.47355454790741, 32.44711601476262],\n            [-47.47998720831924, 32.43677209480404],\n            [-47.48603028235637, 32.426262463293305],\n            [-47.491677911849166, 32.41559754771321],\n            [-47.49692463692049, 32.40478792585926],\n            [-47.501765400911324, 32.3938443151939],\n            [-47.50619555487912, 32.382777562075724],\n            [-47.51021086166647, 32.37159863087521],\n            [-47.51380749953822, 32.36031859298811],\n            [-47.516982065385704, 32.34894861575826],\n            [-47.51973157749738, 32.33749995132124],\n            [-47.52205347789533, 32.32598392538018],\n            [-47.523945634238004, 32.314411925925484],\n            [-47.52540634128973, 32.302795391909946],\n            [-47.52643432195813, 32.291145801890494],\n            [-47.527028727901055, 32.279474662648305],\n            [-47.527189139705015, 32.267793497798536],\n            [-47.52691556663752, 32.25611383640092],\n            [-47.52620844597631, 32.24444720158274],\n            [-47.52506864191862, 32.232805099184986],\n            [-47.52349744407429, 32.221199006443236],\n            [-47.52149656554652, 32.20964036071381],\n            [-47.519068140605015, 32.19814054825641],\n            [-47.51621472195602, 32.18671089308372],\n            [-47.51293927761438, 32.175362645888825],\n            [-47.509245187383236, 32.1641069730608],\n            [-47.50513623894676, 32.15295494579877],\n            [-47.50061662358228, 32.141917529334776],\n            [-47.49569093149786, 32.13100557227531],\n            [-47.490364146802094, 32.120229796071406],\n            [-47.48464164211274, 32.10960078462706],\n            [-47.47852917281149, 32.099128974055326],\n            [-47.47203287095196, 32.08882464259141],\n            [-47.465159238828626, 32.0786979006721],\n            [-47.4579151422142, 32.0687586811899],\n            [-47.45030780327351, 32.05901672993129],\n            [-47.44234479316204, 32.049481596206924],\n            [-47.43403402431709, 32.040162623682534],\n            [-47.425383742450315, 32.03106894141818],\n            [-47.41640251825003, 32.022209455124106],\n            [-47.40709923880201, 32.01359283864043],\n            [-47.39748309873765, 32.00522752564826],\n            [-47.38756359111834, 31.997121701619253],\n            [-47.37735049806526, 31.989283296010594],\n            [-47.366853881143726, 31.981719974712057],\n            [-47.35608407151116, 31.974439132751378],\n            [-47.345051659838354, 31.967447887264438],\n            [-47.3337674860131, 31.960753070735862],\n            [-47.32224262863601, 31.95436122451588],\n            [-47.310488394317794, 31.948278592618774],\n            [-47.29851630678787, 31.942511115808177],\n            [-47.28633809582377, 31.937064425974036],\n            [-47.27396568601127, 31.931943840805847],\n            [-47.26141118534481, 31.927154358766767],\n            [-47.24868687367816, 31.92270065437247],\n            [-47.23580519103519, 31.918587073778745],\n            [-47.22277872579048, 31.914817630681487],\n            [-47.209620202729816, 31.911396002532292],\n            [-47.196342471000484, 31.908325527072844],\n            [-47.18295849196127, 31.905609199190867],\n            [-47.16948132694214, 31.903249668100138],\n            [-47.155924124923665, 31.901249234846965],\n            [-47.14230011014614, 31.899609850144977],\n            [-47.12862256965839, 31.898333112540147],\n            [-47.11490484081644, 31.897420266907393],\n            [-47.10116029874187, 31.896872203279983],\n            [-47.08740234375, 31.896689456012815],\n            [-47.073644388758126, 31.896872203279983],\n            [-47.05989984668355, 31.897420266907393],\n            [-47.0461821178416, 31.898333112540147],\n            [-47.032504577353855, 31.899609850144977],\n            [-47.01888056257633, 31.901249234846965],\n            [-47.00532336055785, 31.903249668100138],\n            [-46.99184619553872, 31.905609199190867],\n            [-46.97846221649951, 31.908325527072844],\n            [-46.96518448477018, 31.911396002532292],\n            [-46.952025961709516, 31.914817630681487],\n            [-46.9389994964648, 31.918587073778745],\n            [-46.92611781382183, 31.92270065437247],\n            [-46.91339350215518, 31.927154358766767],\n            [-46.90083900148872, 31.931943840805847],\n            [-46.88846659167622, 31.937064425974036],\n            [-46.87628838071213, 31.942511115808177],\n            [-46.864316293182206, 31.948278592618774],\n            [-46.85256205886398, 31.95436122451588],\n            [-46.84103720148689, 31.960753070735862],\n            [-46.82975302766164, 31.967447887264438],\n            [-46.81872061598883, 31.974439132751378],\n            [-46.80795080635627, 31.981719974712057],\n            [-46.79745418943473, 31.989283296010594],\n            [-46.787241096381656, 31.99712170161924],\n            [-46.77732158876234, 32.00522752564826],\n            [-46.76770544869798, 32.01359283864043],\n            [-46.758402169249976, 32.022209455124106],\n            [-46.74942094504968, 32.03106894141818],\n            [-46.7407706631829, 32.040162623682534],\n            [-46.73245989433795, 32.049481596206924],\n            [-46.72449688422648, 32.05901672993129],\n            [-46.716889545285795, 32.0687586811899],\n            [-46.70964544867137, 32.0786979006721],\n            [-46.70277181654803, 32.08882464259141],\n            [-46.696275514688516, 32.099128974055326],\n            [-46.690163045387266, 32.10960078462706],\n            [-46.6844405406979, 32.120229796071406],\n            [-46.67911375600213, 32.13100557227531],\n            [-46.67418806391771, 32.141917529334776],\n            [-46.66966844855323, 32.15295494579877],\n            [-46.66555950011676, 32.1641069730608],\n            [-46.661865409885614, 32.175362645888825],\n            [-46.658589965543975, 32.18671089308372],\n            [-46.65573654689498, 32.19814054825641],\n            [-46.65330812195347, 32.20964036071381],\n            [-46.651307243425705, 32.221199006443236],\n            [-46.64973604558137, 32.232805099184986],\n            [-46.64859624152369, 32.24444720158274],\n            [-46.64788912086248, 32.25611383640092],\n            [-46.64761554779498, 32.267793497798536],\n            [-46.64777595959894, 32.279474662648305],\n            [-46.648370365541865, 32.291145801890494],\n            [-46.64939834621026, 32.302795391909946],\n            [-46.65085905326199, 32.314411925925484],\n            [-46.652751209604666, 32.32598392538018],\n            [-46.65507311000261, 32.33749995132124],\n            [-46.65782262211429, 32.34894861575826],\n            [-46.660997187961776, 32.36031859298811],\n            [-46.66459382583352, 32.37159863087521],\n            [-46.66860913262087, 32.382777562075724],\n            [-46.67303928658867, 32.3938443151939],\n            [-46.6778800505795, 32.40478792585926],\n            [-46.68312677565083, 32.41559754771321],\n            [-46.688774405143626, 32.426262463293305],\n            [-46.694817479180756, 32.43677209480404],\n            [-46.70125013959258, 32.44711601476262],\n            [-46.70806613526701, 32.45728395650843],\n            [-46.71525882792047, 32.467265824565054],\n            [-46.72282119828579, 32.47705170484363],\n            [-46.730745852712666, 32.486631874676576],\n            [-46.73902503017513, 32.495996812670704],\n            [-46.74765060968105, 32.5051372083692],\n            [-46.7566141180769, 32.51404397171159],\n            [-46.76590673824122, 32.522708242281404],\n            [-46.77551931765975, 32.53112139833146],\n            [-46.78544237737387, 32.53927506557632],\n            [-46.79566612129443, 32.54716112574254],\n            [-46.80618044587181, 32.55477172486682],\n            [-46.8169749501127, 32.562099281332834],\n            [-46.828038945933855, 32.56913649363756],\n            [-46.839361468842, 32.57587634787837],\n            [-46.850931288929274, 32.582312124952296],\n            [-46.86273692217236, 32.58843740745918],\n            [-46.87476664202355, 32.594246086300906],\n            [-46.887008491281264, 32.5997323669689],\n            [-46.89945029422713, 32.60489077551288],\n            [-46.91207966901629, 32.60971616418371],\n            [-46.92488404030738, 32.614203716743894],\n            [-46.937850652117795, 32.61834895343951],\n            [-46.950966580889954, 32.62214773562774],\n            [-46.96421874875382, 32.6255962700546],\n            [-46.977593936970194, 32.62869111277777],\n            [-46.99107879953966, 32.63142917273005],\n            [-47.004659876961284, 32.63380771491907],\n            [-47.01832361012502, 32.63582436325957],\n            [-47.0320563543218, 32.63747710303488],\n            [-47.04584439335467, 32.63876428298469],\n            [-47.059673953734496, 32.63968461701659],\n            [-47.07353121894354, 32.64023718553941],\n            [-47.08740234375, 32.64042143641672]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/line2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.54931640625, 0.7470491450051796]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 3],\n          [2, 2],\n          [2, 0],\n          [-1.5, -1.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.54931640625, 2.438360853906383],\n            [-0.6024821884823875, 2.4375257299107815],\n            [-0.6555953505408664, 2.435021185197018],\n            [-0.7086033252337368, 2.4308497007448677],\n            [-0.761453651273227, 2.4250154087237794],\n            [-0.8140940260763635, 2.4175240883011684],\n            [-0.8664723583848871, 2.4083831597811085],\n            [-0.918536820644496, 2.3976016770804933],\n            [-0.9702359010842001, 2.3851903185517114],\n            [-1.0215184554372008, 2.3711613761628683],\n            [-1.0723337582454635, 2.3555287430484935],\n            [-1.1226315536909959, 2.3383078994456],\n            [-1.1723621058978269, 2.3195158970318257],\n            [-1.2214762486497537, 2.2991713416841977],\n            [-1.2699254344700748, 2.2772943746788754],\n            [-1.3176617830108166, 2.253906652353926],\n            [-1.3646381287002864, 2.2290313242588917],\n            [-1.4108080675992076, 2.202693009816532],\n            [-1.456126003417198, 2.174917773523682],\n            [-1.500547192642893, 2.1457330987196923],\n            [-1.5440277887426304, 2.115167859952363],\n            [-1.5865248853842704, 2.083252293972651],\n            [-1.6279965586444112, 2.050017969390782],\n            [-1.6684019081589907, 2.0154977550276216],\n            [-1.7077010971790092, 1.9797257869963656],\n            [-1.7458553914948676, 1.9427374345507415],\n            [-1.7828271971945877, 1.9045692647369301],\n            [-1.8185800972229471, 1.865259005887463],\n            [-1.8530788867103243, 1.8248455099962235],\n            [-1.8862896070418036, 1.7833687140145786],\n            [-1.9181795786388027, 1.7408696001094466],\n            [-1.9487174324272176, 1.697390154924848],\n            [-1.977873139967725, 1.6529733278891745],\n            [-2.005618042225537, 1.6076629886110247],\n            [-2.031924876958512, 1.561503883407013],\n            [-2.0567678047040507, 1.514541591005499],\n            [-2.0801224333467685, 1.4668224774706196],\n            [-2.101965841250349, 1.4183936503914378],\n            [-2.1222765989384387, 1.3693029123813978],\n            [-2.141034789310789, 1.3195987139335887],\n            [-2.1582220263821714, 1.269330105677625],\n            [-2.173821472532861, 1.218546690084201],\n            [-2.187817854260684, 1.167298572663593],\n            [-2.2001974764258145, 1.115636312704563],\n            [-2.210948234980604, 1.0636108736002996],\n            [-2.220059628177812, 1.0112735728081306],\n            [-2.2275227662516404, 0.9586760314898738],\n            [-2.233330379566971, 0.9058701238797664],\n            [-2.237476825233159, 0.8529079264269721],\n            [-2.239958092179682, 0.7998416667597138],\n            [-2.2407718046918226, 0.746723672518107],\n            [-2.239917224405487, 0.6936063201027682],\n            [-2.2373952507610753, 0.6405419833862738],\n            [-2.2332084199172253, 0.5875829824345153],\n            [-2.227360902126057, 0.5347815322849735],\n            [-2.2198584975724227, 0.4821896918288493],\n            [-2.2107086306804984, 0.4298593128439665],\n            [-2.1999203428919025, 0.3778419892252343],\n            [-2.1875042839204264, 0.3261890064593969],\n            [-2.1734727014893136, 0.27495129139065133],\n            [-2.1578394295579604, 0.2241793623235951],\n            [-2.1406198750458287, 0.17392327950982253],\n            [-2.1218310030623404, 0.12423259606429113],\n            [-2.1014913206525128, 0.07515630935739893],\n            [-2.0796208590691254, 0.026742812928496708],\n            [-2.0562411545833075, -0.0209601510337049],\n            [-2.031375227846508, -0.06790553859863824],\n            [-2.00504756181802, -0.11404705034439946],\n            [-1.9772840782733807, -0.1593391769067504],\n            [-1.9481121129102656, -0.20373724378242755],\n            [-1.9175603890697397, -0.24719745534301005],\n            [-1.8856589900920955, -0.28967693801605165],\n            [-1.8524393303278728, -0.33113378259067083],\n            [-1.817934124826067, -0.3715270856053604],\n            [-1.7821773577230051, -0.41081698977634795],\n            [-1.745204249356825, -0.4489647234255117],\n            [-1.7070512221340721, -0.48593263886750815],\n            [-1.6677558651764175, -0.5216842497165739],\n            [-1.6273568977771038, -0.55618426707423],\n            [-1.5858941316983335, -0.5893986345599906],\n            [-1.5434084323423756, -0.6212945621481215],\n            [-1.499941678830813, -0.6518405587744457],\n            [-1.4555367230279406, -0.6810064636782679],\n            [-1.4102373475459393, -0.7087634764455751],\n            [-1.3640882227710518, -0.7350841857208448],\n            [-1.3171348629515216, -0.7599425965560174],\n            [-1.269423581389651, -0.7833141563664898],\n            [-1.2210014447817956, -0.8051757794653138],\n            [-1.1719162267516028, -0.8255058701482164],\n            [-1.1222163606232458, -0.8442843443034946],\n            [-1.0719508914826847, -0.8614926495223957],\n            [-1.0211694275764018, -0.8771137836871207],\n            [-0.9699220910981681, -0.8911323120152603],\n            [-0.918259468415645, -0.9035343825411044],\n            [-0.8662325597896272, -0.9143077400160166],\n            [-0.8138927286397571, -0.9234417382117981],\n            [-0.7612916504113916, -0.930927350612784],\n            [-0.7084812610991171, -0.9367571794842229],\n            [-0.6555137054830764, -0.9409254633063813],\n            [-0.6024412851348326, -0.9434280825656705],\n            [-0.5493164062500002, -0.9442625638960237],\n            [-0.496191527365167, -0.9434280825656705],\n            [-0.44311910701692403, -0.9409254633063813],\n            [-0.3901515514008824, -0.9367571794842229],\n            [-0.33734116208860965, -0.9309273506127842],\n            [-0.2847400838602433, -0.9234417382117984],\n            [-0.23240025271037248, -0.9143077400160162],\n            [-0.18037334408435624, -0.9035343825411047],\n            [-0.1287107214018318, -0.8911323120152603],\n            [-0.0774633849235993, -0.8771137836871211],\n            [-0.026681921017314945, -0.8614926495223957],\n            [0.023583548123245292, -0.8442843443034947],\n            [0.07328341425160229, -0.8255058701482166],\n            [0.12236863228179506, -0.805175779465314],\n            [0.17079076888965078, -0.7833141563664899],\n            [0.21850205045152063, -0.7599425965560179],\n            [0.26545541027105135, -0.7350841857208449],\n            [0.31160453504593866, -0.7087634764455758],\n            [0.35690391052794, -0.681006463678268],\n            [0.4013088663308128, -0.651840558774446],\n            [0.44477561984237557, -0.6212945621481217],\n            [0.4872613191983335, -0.5893986345599904],\n            [0.5287240852771032, -0.5561842670742302],\n            [0.5691230526764172, -0.5216842497165743],\n            [0.608418409634072, -0.48593263886750837],\n            [0.6465714368568244, -0.4489647234255121],\n            [0.683544545223004, -0.41081698977634895],\n            [0.7193013123260671, -0.3715270856053602],\n            [0.7538065178278723, -0.33113378259067106],\n            [0.7870261775920951, -0.28967693801605204],\n            [0.8189275765697395, -0.24719745534301044],\n            [0.8494793004102653, -0.20373724378242794],\n            [0.8786512657733799, -0.1593391769067516],\n            [0.9064147493180198, -0.11404705034439985],\n            [0.9327424153465073, -0.06790553859863992],\n            [0.9576083420833074, -0.020960151033705195],\n            [0.9809880465691253, 0.026742812928496413],\n            [1.0028585081525125, 0.07515630935739923],\n            [1.0231981905623404, 0.12423259606429103],\n            [1.041987062545828, 0.17392327950982114],\n            [1.0592066170579602, 0.2241793623235947],\n            [1.0748398889893134, 0.27495129139065055],\n            [1.0888714714204262, 0.32618900645939625],\n            [1.1012875303919023, 0.3778419892252328],\n            [1.1120758181804982, 0.42985931284396467],\n            [1.1212256850724227, 0.4821896918288493],\n            [1.1287280896260568, 0.5347815322849746],\n            [1.1345756074172253, 0.5875829824345161],\n            [1.1387624382610755, 0.6405419833862721],\n            [1.141284411905487, 0.6936063201027682],\n            [1.1421389921918226, 0.7467236725181067],\n            [1.1413252796796816, 0.7998416667597144],\n            [1.1388440127331594, 0.8529079264269723],\n            [1.134697567066971, 0.9058701238797653],\n            [1.1288899537516401, 0.9586760314898736],\n            [1.121426815677812, 1.0112735728081301],\n            [1.112315422480604, 1.0636108736002992],\n            [1.1015646639258143, 1.1156363127045634],\n            [1.089185041760684, 1.1672985726635914],\n            [1.075188660032861, 1.218546690084201],\n            [1.0595892138821716, 1.2693301056776245],\n            [1.042401976810789, 1.319598713933588],\n            [1.0236437864384382, 1.3693029123813987],\n            [1.0033330287503495, 1.418393650391436],\n            [0.9814896208467687, 1.466822477470619],\n            [0.9581349922040512, 1.5145415910054987],\n            [0.9332920644585123, 1.561503883407012],\n            [0.906985229725537, 1.6076629886110254],\n            [0.8792403274677255, 1.6529733278891738],\n            [0.8500846199272186, 1.6973901549248465],\n            [0.8195467661388028, 1.740869600109446],\n            [0.7876567945418037, 1.783368714014578],\n            [0.754446074210324, 1.8248455099962237],\n            [0.7199472847229478, 1.8652590058874616],\n            [0.6841943846945886, 1.9045692647369288],\n            [0.6472225789948679, 1.9427374345507409],\n            [0.6090682846790086, 1.9797257869963665],\n            [0.5697690956589903, 2.0154977550276216],\n            [0.5293637461444122, 2.0500179693907814],\n            [0.48789207288427056, 2.0832522939726505],\n            [0.4453949762426306, 2.1151678599523627],\n            [0.4019143801428921, 2.145733098719693],\n            [0.35749319091719867, 2.1749177735236813],\n            [0.3121752550992088, 2.2026930098165316],\n            [0.2660053162002864, 2.2290313242588917],\n            [0.21902897051081688, 2.2539066523539257],\n            [0.17129262197007514, 2.277294374678875],\n            [0.12284343614975474, 2.299171341684197],\n            [0.07372929339782681, 2.3195158970318257],\n            [0.023998741190995595, 2.3383078994456],\n            [-0.026299054254536065, 2.3555287430484935],\n            [-0.07711435706279837, 2.3711613761628683],\n            [-0.12839691141579898, 2.3851903185517114],\n            [-0.180095991855504, 2.3976016770804933],\n            [-0.23216045411511282, 2.4083831597811085],\n            [-0.28453878642363617, 2.4175240883011675],\n            [-0.33717916122677233, 2.425015408723779],\n            [-0.39002948726626374, 2.4308497007448677],\n            [-0.44303746195913385, 2.435021185197018],\n            [-0.49615062401761245, 2.4375257299107815],\n            [-0.54931640625, 2.438360853906383]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/segment-fiji.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.46142578124997, -17.481671724450752]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-181.087646484375, -17.69897856226166],\n          [-179.60586547851562, -16.380756046586434]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.46142578124994, -17.23540624801723],\n            [-180.46952483237501, -17.23552760167609],\n            [-180.47761592278025, -17.235891543369423],\n            [-180.48569109947775, -17.236497715363342],\n            [-180.4937424249357, -17.23734552182086],\n            [-180.501761984789, -17.23843412938069],\n            [-180.50974189552787, -17.239762467966873],\n            [-180.5176743121582, -17.2413292318284],\n            [-180.52555143582603, -17.243132880807917],\n            [-180.53336552139947, -17.245171641838336],\n            [-180.54110888500074, -17.247443510665875],\n            [-180.5487739114812, -17.24994625379808],\n            [-180.55635306183302, -17.252677410674877],\n            [-180.56383888052986, -17.255634296060727],\n            [-180.57122400279005, -17.258814002655587],\n            [-180.57850116175555, -17.262213403922342],\n            [-180.5856631955797, -17.265829157127957],\n            [-180.59270305441729, -17.269657706595638],\n            [-180.59961380731016, -17.273695287164852],\n            [-180.60638864896217, -17.277937927856087],\n            [-180.6130209063964, -17.282381455736832],\n            [-180.6195040454895, -17.287021499985233],\n            [-180.6258316773753, -17.29185349614758],\n            [-180.63199756471298, -17.296872690585673],\n            [-180.63799562781298, -17.302074145109835],\n            [-180.643819950615, -17.30745274179331],\n            [-180.64946478651217, -17.31300318796344],\n            [-180.6549245640158, -17.318720021364967],\n            [-180.66019389225502, -17.324597615490614],\n            [-180.66526756630634, -17.330630185073826],\n            [-180.67014057234698, -17.336811791738587],\n            [-180.6748080926277, -17.34313634980093],\n            [-180.6792655102598, -17.34959763221663],\n            [-180.6835084138112, -17.356189276669397],\n            [-180.6875326017075, -17.362904791793945],\n            [-180.69133408643285, -17.369737563527767],\n            [-180.69490909852692, -17.376680861585793],\n            [-180.69825409037318, -17.383727846051606],\n            [-180.70136573977518, -17.390871574079004],\n            [-180.70424095331632, -17.39810500669736],\n            [-180.70687686949995, -17.405421015714435],\n            [-180.70927086166645, -17.4128123907098],\n            [-180.71142054068346, -17.420271846112332],\n            [-180.7133237574071, -17.427792028354794],\n            [-180.71497860491021, -17.43536552309865],\n            [-180.7163834204768, -17.442984862522174],\n            [-180.71753678735783, -17.45064253266464],\n            [-180.71843753628855, -17.458330980819607],\n            [-180.71908474676403, -17.46604262296995],\n            [-180.7194777480714, -17.47376985125757],\n            [-180.7196161200776, -17.481505041480204],\n            [-180.719499693771, -17.489240560608305],\n            [-180.71912855155648, -17.496968774314336],\n            [-180.718503027302, -17.504682054507228],\n            [-180.71762370613754, -17.51237278686458],\n            [-180.71649142400517, -17.520033378355],\n            [-180.7151072669601, -17.527656264743346],\n            [-180.71347257022373, -17.535233918071288],\n            [-180.71158891698838, -17.542758854105784],\n            [-180.70945813697452, -17.55022363974808],\n            [-180.70708230474185, -17.557620900395776],\n            [-180.7044637377547, -17.564943327250706],\n            [-180.70160499420416, -17.572183684565132],\n            [-180.69850887058766, -17.57933481681919],\n            [-180.69517839904856, -17.58638965582217],\n            [-180.69161684447806, -17.593341227730566],\n            [-180.68782770138117, -17.600182659975836],\n            [-180.68381469051047, -17.60690718809476],\n            [-180.67958175526974, -17.613508162455528],\n            [-180.6751330578914, -17.619979054872772],\n            [-180.67047297539057, -17.62631346510466],\n            [-180.6656060953004, -17.632505127225578],\n            [-180.6605372111913, -17.638547915867807],\n            [-180.65527131797964, -17.644435852325806],\n            [-180.64981360702984, -17.650163110516864],\n            [-180.64416946105413, -17.655724022792004],\n            [-180.63834444881553, -17.661113085591097],\n            [-180.63234431963897, -17.666324964936454],\n            [-180.62617499773577, -17.671354501759115],\n            [-180.61984257634742, -17.676196717052438],\n            [-180.61335331171412, -17.680846816847545],\n            [-180.6067136168743, -17.68530019700555],\n            [-180.59993005530114, -17.68955244782152],\n            [-180.5930093343832, -17.693599358435446],\n            [-180.58595829875412, -17.697436921045583],\n            [-180.5787839234803, -17.70106133491977],\n            [-180.57149330711206, -17.704469010200576],\n            [-180.5640936646056, -17.70765657150025],\n            [-180.5565923201233, -17.710620861281754],\n            [-180.54899669972, -17.713358943022282],\n            [-180.54131432392217, -17.715868104156016],\n            [-180.53355280020827, -17.71814585879301],\n            [-180.52571981539754, -17.72018995021127],\n            [-180.5178231279559, -17.721998353119545],\n            [-180.50987056022618, -17.723569275688337],\n            [-180.50186999059147, -17.724901161347063],\n            [-180.49382934557931, -17.72599269034539],\n            [-180.48575659191545, -17.72684278107725],\n            [-180.47765972853483, -17.727450591165933],\n            [-180.4695467785595, -17.727815518309338],\n            [-180.46142578124994, -17.72793720088427],\n            [-180.4533047839404, -17.727815518309338],\n            [-180.44519183396508, -17.727450591165933],\n            [-180.43709497058447, -17.72684278107725],\n            [-180.4290222169206, -17.72599269034539],\n            [-180.42098157190844, -17.724901161347063],\n            [-180.41298100227374, -17.723569275688337],\n            [-180.40502843454402, -17.721998353119545],\n            [-180.39713174710238, -17.72018995021127],\n            [-180.38929876229165, -17.71814585879301],\n            [-180.38153723857775, -17.715868104156016],\n            [-180.37385486277992, -17.713358943022282],\n            [-180.36625924237663, -17.710620861281754],\n            [-180.35875789789432, -17.70765657150025],\n            [-180.35135825538785, -17.704469010200576],\n            [-180.34406763901964, -17.70106133491977],\n            [-180.33689326374585, -17.697436921045583],\n            [-180.32984222811672, -17.693599358435446],\n            [-180.32292150719877, -17.68955244782152],\n            [-180.31613794562563, -17.68530019700555],\n            [-180.3094982507858, -17.680846816847545],\n            [-180.3030089861525, -17.676196717052438],\n            [-180.29667656476414, -17.671354501759115],\n            [-180.29050724286094, -17.666324964936454],\n            [-180.28450711368438, -17.661113085591097],\n            [-180.27868210144578, -17.655724022792004],\n            [-180.27303795547007, -17.650163110516864],\n            [-180.26758024452027, -17.644435852325806],\n            [-180.26231435130867, -17.638547915867807],\n            [-180.2572454671995, -17.632505127225578],\n            [-180.25237858710935, -17.62631346510466],\n            [-180.2477185046085, -17.619979054872772],\n            [-180.24326980723018, -17.613508162455528],\n            [-180.23903687198944, -17.60690718809476],\n            [-180.23502386111875, -17.600182659975836],\n            [-180.23123471802185, -17.593341227730566],\n            [-180.22767316345136, -17.58638965582217],\n            [-180.22434269191226, -17.57933481681919],\n            [-180.22124656829575, -17.572183684565132],\n            [-180.2183878247452, -17.564943327250706],\n            [-180.21576925775807, -17.557620900395776],\n            [-180.2133934255254, -17.55022363974808],\n            [-180.21126264551154, -17.542758854105784],\n            [-180.20937899227619, -17.535233918071288],\n            [-180.2077442955398, -17.527656264743346],\n            [-180.20636013849474, -17.520033378355],\n            [-180.20522785636237, -17.51237278686458],\n            [-180.20434853519794, -17.504682054507228],\n            [-180.20372301094343, -17.496968774314336],\n            [-180.2033518687289, -17.489240560608305],\n            [-180.2032354424223, -17.481505041480204],\n            [-180.20337381442852, -17.47376985125757],\n            [-180.2037668157359, -17.46604262296995],\n            [-180.20441402621137, -17.458330980819607],\n            [-180.20531477514209, -17.45064253266464],\n            [-180.2064681420231, -17.442984862522174],\n            [-180.2078729575897, -17.435365523098653],\n            [-180.20952780509282, -17.427792028354794],\n            [-180.21143102181645, -17.420271846112332],\n            [-180.21358070083346, -17.4128123907098],\n            [-180.21597469299996, -17.405421015714435],\n            [-180.2186106091836, -17.39810500669736],\n            [-180.22148582272473, -17.390871574079004],\n            [-180.22459747212673, -17.383727846051606],\n            [-180.227942463973, -17.376680861585793],\n            [-180.23151747606707, -17.369737563527767],\n            [-180.23531896079243, -17.362904791793945],\n            [-180.2393431486887, -17.356189276669397],\n            [-180.24358605224012, -17.34959763221663],\n            [-180.24804346987221, -17.34313634980093],\n            [-180.25271099015293, -17.336811791738587],\n            [-180.25758399619357, -17.330630185073826],\n            [-180.2626576702449, -17.324597615490614],\n            [-180.2679269984841, -17.318720021364967],\n            [-180.27338677598775, -17.31300318796344],\n            [-180.2790316118849, -17.30745274179331],\n            [-180.28485593468693, -17.302074145109835],\n            [-180.29085399778694, -17.296872690585673],\n            [-180.29701988512463, -17.29185349614758],\n            [-180.30334751701042, -17.287021499985233],\n            [-180.30983065610351, -17.282381455736832],\n            [-180.31646291353775, -17.277937927856087],\n            [-180.32323775518975, -17.273695287164852],\n            [-180.33014850808263, -17.269657706595638],\n            [-180.33718836692023, -17.265829157127957],\n            [-180.34435040074436, -17.262213403922342],\n            [-180.3516275597099, -17.258814002655587],\n            [-180.35901268197006, -17.255634296060727],\n            [-180.3664985006669, -17.252677410674877],\n            [-180.37407765101872, -17.24994625379808],\n            [-180.38174267749918, -17.247443510665875],\n            [-180.38948604110044, -17.245171641838336],\n            [-180.39730012667388, -17.243132880807917],\n            [-180.40517725034172, -17.2413292318284],\n            [-180.41310966697205, -17.239762467966873],\n            [-180.42108957771092, -17.23843412938069],\n            [-180.4291091375642, -17.23734552182086],\n            [-180.43716046302217, -17.236497715363342],\n            [-180.44523563971967, -17.235891543369423],\n            [-180.4533267301249, -17.23552760167609],\n            [-180.46142578124994, -17.23540624801723]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/segment1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"miles\",\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [2, 0]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 2],\n            [0.9685716982096989, 1.999506359928513],\n            [0.9371744595721233, 1.998025927767439],\n            [0.905839316304705, 1.9955601671895735],\n            [0.8745972387867545, 1.9921115160255491],\n            [0.8434791047215143, 1.9876833838296297],\n            [0.8125156683954242, 1.9822801484754786],\n            [0.7817375300667729, 1.9759071517855469],\n            [0.7511751055157418, 1.9685706941987744],\n            [0.7208585957875978, 1.9602780284822994],\n            [0.6908179571605269, 1.9510373524939144],\n            [0.6610828713692763, 1.9408578010029784],\n            [0.6316827161154069, 1.9297494365785246],\n            [0.6026465358945581, 1.9177232395542516],\n            [0.5740030131706838, 1.9047910970810662],\n            [0.5457804399267314, 1.8909657912787872],\n            [0.518006689620723, 1.8762609864995452],\n            [0.4907091895756414, 1.8606912157163367],\n            [0.46391489383093665, 1.844271866051059],\n            [0.43765025648285566, 1.827019163457242],\n            [0.41194120554014657, 1.8089501565735244],\n            [0.3868131173210146, 1.7900826997647474],\n            [0.3622907914165137, 1.7704354353683476],\n            [0.33839842624483063, 1.7500277751644842],\n            [0.315159595220173, 1.728879881089106],\n            [0.2925972235592192, 1.707012645209871],\n            [0.2707335657472983, 1.6844476689855348],\n            [0.2495901836856813, 1.661207241830087],\n            [0.22918792554055378, 1.6373143190035664],\n            [0.20954690531341763, 1.612792498852085],\n            [0.19068648315185485, 1.5876659994202005],\n            [0.1726252464187259, 1.561959634459309],\n            [0.15538099153705884, 1.5356987888562847],\n            [0.13897070662701982, 1.5089093935070865],\n            [0.12341055495051038, 1.481617899660524],\n            [0.10871585917808996, 1.4538512527578429],\n            [0.09490108649205571, 1.4256368657941838],\n            [0.0819798345386759, 1.3970025922283915],\n            [0.06996481824170571, 1.3679766984680015],\n            [0.058867857488475256, 1.3385878359565802],\n            [0.04869986569898602, 1.3088650128909083],\n            [0.03947083928761441, 1.2788375655957909],\n            [0.031189848026179367, 1.248535129584535],\n            [0.023865026316291303, 1.217987610333383],\n            [0.017503565378081225, 1.1872251537984004],\n            [0.012111706361565347, 1.156278116703504],\n            [0.007694734386097371, 1.1251770366284897],\n            [0.0042569735125335345, 1.0939526019260553],\n            [0.0018017826519207234, 1.0626356214969372],\n            [0.0003315524137242247, 1.031256994452367],\n            [-0.00015229710420852578, 0.9998476796931378],\n            [0.0003506824174574152, 0.968438665434609],\n            [0.0018399671964027264, 0.9370609387070128],\n            [0.004314061969071702, 0.9057454548604229],\n            [0.007770501553676937, 0.8745231071037364],\n            [0.012205853354021813, 0.8434246961069695],\n            [0.017615720801583256, 0.8124808996961117],\n            [0.02399474773251913, 0.781722242669695],\n            [0.03133662369546434, 0.751179066766131],\n            [0.03963409018520694, 0.7208815008107303],\n            [0.04887894779654791, 0.690859431071173],\n            [0.059062064291850125, 0.661142471850026],\n            [0.07017338357501171, 0.6317599363426952],\n            [0.08220193556380065, 0.6027408077889879],\n            [0.09513584695170245, 0.5741137109462129],\n            [0.10896235284964481, 0.5459068839114809],\n            [0.12366780929716721, 0.5181481503205693],\n            [0.13923770663182133, 0.49086489195040967],\n            [0.15565668370478822, 0.46408402175190977],\n            [0.1729085429299136, 0.4378319573394634],\n            [0.19097626615256882, 0.412134594963105],\n            [0.20984203132395726, 0.3870172839888609],\n            [0.2294872299656956, 0.3625048019124108],\n            [0.24989248540871847, 0.3386213299307012],\n            [0.2710376717897686, 0.3153904290956772],\n            [0.29290193378797313, 0.2928350170737655],\n            [0.315463707083202, 0.27097734553423447],\n            [0.33870073951719004, 0.2498389781889518],\n            [0.362590112937603, 0.22944076950550518],\n            [0.38710826570451223, 0.2098028441150193],\n            [0.4122310158379952, 0.1909445769353626],\n            [0.4379335847848627, 0.17288457402977944],\n            [0.46419062178180936, 0.15564065422028714],\n            [0.49097622879158936, 0.13922983147446477],\n            [0.518263985988145, 0.12366829808353058],\n            [0.5460269777659784, 0.10897140864883137],\n            [0.574237819248399, 0.0951536648930957],\n            [0.6028686832687026, 0.082228701311992],\n            [0.6318913277977335, 0.07020927168070458],\n            [0.6612771237907197, 0.05910723642940488],\n            [0.6909970834257817, 0.048933550900610155],\n            [0.7210218887059558, 0.03969825450055861],\n            [0.7513219203961732, 0.03141046075581141],\n            [0.7818672872661444, 0.02407834828538318],\n            [0.8126278556097459, 0.01770915269776382],\n            [0.843573279011106, 0.012309159421253086],\n            [0.8746730283272925, 0.007883697475061664],\n            [0.9058964218571909, 0.004437134187667678],\n            [0.9372126556659277, 0.0019728708679349577],\n            [0.9685908340339902, 0.0004933394335071748],\n            [0.9999999999999999, 0],\n            [1.03140916596601, 0.0004933394335071748],\n            [1.062787344334072, 0.0019728708679349577],\n            [1.0941035781428095, 0.004437134187667678],\n            [1.1253269716727068, 0.007883697475061664],\n            [1.1564267209888937, 0.012309159421253086],\n            [1.187372144390254, 0.01770915269776382],\n            [1.2181327127338548, 0.02407834828538298],\n            [1.2486780796038268, 0.03141046075581141],\n            [1.2789781112940435, 0.039698254500558416],\n            [1.3090029165742185, 0.048933550900610155],\n            [1.3387228762092802, 0.05910723642940488],\n            [1.3681086722022662, 0.07020927168070439],\n            [1.397131316731297, 0.082228701311992],\n            [1.4257621807516008, 0.0951536648930957],\n            [1.453973022234021, 0.10897140864883108],\n            [1.4817360140118547, 0.12366829808353047],\n            [1.5090237712084105, 0.13922983147446447],\n            [1.5358093782181905, 0.15564065422028694],\n            [1.5620664152151371, 0.17288457402977933],\n            [1.5877689841620044, 0.1909445769353625],\n            [1.6128917342954878, 0.2098028441150194],\n            [1.6374098870623968, 0.2294407695055051],\n            [1.66129926048281, 0.24983897818895162],\n            [1.684536292916798, 0.27097734553423425],\n            [1.7070980662120265, 0.29283501707376536],\n            [1.7289623282102309, 0.3153904290956766],\n            [1.7501075145912819, 0.33862132993070126],\n            [1.7705127700343042, 0.36250480191241075],\n            [1.7901579686760425, 0.3870172839888608],\n            [1.809023733847431, 0.4121345949631048],\n            [1.827091457070086, 0.43783195733946323],\n            [1.8443433162952114, 0.46408402175190916],\n            [1.8607622933681784, 0.49086489195040944],\n            [1.8763321907028319, 0.5181481503205684],\n            [1.8910376471503554, 0.5459068839114809],\n            [1.9048641530482975, 0.5741137109462127],\n            [1.9177980644361994, 0.6027408077889881],\n            [1.9298266164249884, 0.6317599363426952],\n            [1.9409379357081498, 0.6611424718500252],\n            [1.951121052203452, 0.6908594310711728],\n            [1.960365909814793, 0.7208815008107299],\n            [1.9686633763045358, 0.7511790667661306],\n            [1.9760052522674805, 0.7817222426696941],\n            [1.9823842791984165, 0.8124808996961106],\n            [1.987794146645978, 0.8434246961069695],\n            [1.9922294984463231, 0.8745231071037372],\n            [1.9956859380309284, 0.9057454548604233],\n            [1.9981600328035976, 0.9370609387070119],\n            [1.999649317582543, 0.968438665434609],\n            [2.0001522971042083, 0.9998476796931375],\n            [1.9996684475862758, 1.0312569944523673],\n            [1.9981982173480792, 1.0626356214969372],\n            [1.9957430264874667, 1.0939526019260544],\n            [1.9923052656139026, 1.1251770366284897],\n            [1.987888293638435, 1.1562781167035039],\n            [1.9824964346219185, 1.1872251537984004],\n            [1.9761349736837084, 1.2179876103333835],\n            [1.9688101519738213, 1.248535129584534],\n            [1.9605291607123858, 1.2788375655957906],\n            [1.9513001343010143, 1.3088650128909083],\n            [1.9411321425115249, 1.33858783595658],\n            [1.9300351817582941, 1.3679766984680017],\n            [1.9180201654613247, 1.3970025922283906],\n            [1.9050989135079444, 1.4256368657941836],\n            [1.8912841408219103, 1.4538512527578427],\n            [1.87658944504949, 1.4816178996605236],\n            [1.8610292933729802, 1.5089093935070865],\n            [1.8446190084629417, 1.5356987888562843],\n            [1.8273747535812745, 1.561959634459308],\n            [1.8093135168481453, 1.5876659994202],\n            [1.7904530946865826, 1.6127924988520848],\n            [1.770812074459446, 1.6373143190035664],\n            [1.7504098163143191, 1.6612072418300867],\n            [1.7292664342527024, 1.684447668985534],\n            [1.707402776440781, 1.7070126452098708],\n            [1.6848404047798267, 1.7288798810891064],\n            [1.6616015737551693, 1.7500277751644846],\n            [1.637709208583487, 1.7704354353683474],\n            [1.6131868826789857, 1.7900826997647472],\n            [1.5880587944598537, 1.8089501565735244],\n            [1.5623497435171438, 1.8270191634572421],\n            [1.536085106169064, 1.8442718660510584],\n            [1.5092908104243594, 1.8606912157163362],\n            [1.4819933103792768, 1.8762609864995452],\n            [1.4542195600732688, 1.8909657912787872],\n            [1.4259969868293167, 1.9047910970810662],\n            [1.3973534641054426, 1.9177232395542516],\n            [1.368317283884593, 1.9297494365785246],\n            [1.3389171286307235, 1.9408578010029784],\n            [1.3091820428394731, 1.9510373524939144],\n            [1.2791414042124027, 1.9602780284822994],\n            [1.2488248944842586, 1.968570694198774],\n            [1.218262469933227, 1.9759071517855469],\n            [1.187484331604576, 1.9822801484754786],\n            [1.156520895278486, 1.9876833838296297],\n            [1.125402761213246, 1.9921115160255491],\n            [1.0941606836952946, 1.9955601671895735],\n            [1.0628255404278766, 1.998025927767439],\n            [1.0314283017903014, 1.999506359928513],\n            [1, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/segment1a.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"miles\",\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, -1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [0, 0],\n          [2, 0]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 0],\n            [0.9685908340339902, -0.0004933394335071748],\n            [0.9372126556659279, -0.0019728708679349577],\n            [0.9058964218571909, -0.004437134187667678],\n            [0.8746730283272928, -0.007883697475061664],\n            [0.8435732790111062, -0.012309159421253086],\n            [0.8126278556097459, -0.01770915269776382],\n            [0.7818672872661449, -0.02407834828538298],\n            [0.7513219203961732, -0.03141046075581141],\n            [0.7210218887059561, -0.03969825450055861],\n            [0.6909970834257817, -0.048933550900610155],\n            [0.6612771237907198, -0.05910723642940488],\n            [0.6318913277977333, -0.07020927168070458],\n            [0.602868683268703, -0.0822287013119918],\n            [0.574237819248399, -0.0951536648930957],\n            [0.5460269777659785, -0.10897140864883127],\n            [0.5182639859881453, -0.12366829808353047],\n            [0.4909762287915894, -0.1392298314744647],\n            [0.4641906217818095, -0.15564065422028694],\n            [0.4379335847848626, -0.17288457402977964],\n            [0.41223101583799526, -0.1909445769353625],\n            [0.3871082657045127, -0.20980284411501912],\n            [0.36259011293760307, -0.22944076950550518],\n            [0.33870073951719004, -0.2498389781889518],\n            [0.31546370708320187, -0.2709773455342346],\n            [0.2929019337879732, -0.2928350170737654],\n            [0.2710376717897689, -0.31539042909567677],\n            [0.24989248540871817, -0.33862132993070143],\n            [0.229487229965696, -0.3625048019124104],\n            [0.20984203132395737, -0.3870172839888608],\n            [0.19097626615256882, -0.41213459496310495],\n            [0.1729085429299135, -0.4378319573394634],\n            [0.15565668370478833, -0.46408402175190966],\n            [0.13923770663182172, -0.490864891950409],\n            [0.12366780929716732, -0.518148150320569],\n            [0.1089623528496449, -0.5459068839114809],\n            [0.09513584695170245, -0.5741137109462128],\n            [0.08220193556380086, -0.6027408077889875],\n            [0.07017338357501171, -0.6317599363426952],\n            [0.059062064291850125, -0.6611424718500258],\n            [0.04887894779654791, -0.6908594310711729],\n            [0.03963409018520694, -0.7208815008107302],\n            [0.03133662369546434, -0.7511790667661309],\n            [0.02399474773251913, -0.7817222426696949],\n            [0.017615720801583256, -0.8124808996961116],\n            [0.012205853354021613, -0.8434246961069695],\n            [0.007770501553676737, -0.8745231071037364],\n            [0.004314061969071702, -0.9057454548604229],\n            [0.0018399671964027264, -0.9370609387070127],\n            [0.0003506824174574152, -0.968438665434609],\n            [-0.00015229710420852578, -0.9998476796931378],\n            [0.0003315524137242247, -1.031256994452367],\n            [0.0018017826519207234, -1.0626356214969368],\n            [0.0042569735125335345, -1.0939526019260553],\n            [0.00769473438609757, -1.1251770366284897],\n            [0.012111706361565545, -1.1562781167035043],\n            [0.017503565378081225, -1.1872251537984004],\n            [0.023865026316291303, -1.217987610333383],\n            [0.031189848026179367, -1.2485351295845348],\n            [0.03947083928761441, -1.2788375655957906],\n            [0.04869986569898602, -1.3088650128909083],\n            [0.058867857488475256, -1.3385878359565802],\n            [0.06996481824170571, -1.3679766984680015],\n            [0.08197983453867567, -1.3970025922283915],\n            [0.09490108649205571, -1.4256368657941836],\n            [0.10871585917808985, -1.4538512527578427],\n            [0.12341055495051029, -1.4816178996605236],\n            [0.13897070662701944, -1.5089093935070859],\n            [0.15538099153705873, -1.5356987888562845],\n            [0.172625246418726, -1.561959634459309],\n            [0.19068648315185485, -1.5876659994202005],\n            [0.20954690531341758, -1.6127924988520848],\n            [0.2291879255405534, -1.6373143190035662],\n            [0.2495901836856816, -1.6612072418300876],\n            [0.27073356574729796, -1.6844476689855343],\n            [0.2925972235592191, -1.7070126452098708],\n            [0.3151595952201731, -1.728879881089106],\n            [0.33839842624483063, -1.7500277751644842],\n            [0.36229079141651366, -1.7704354353683476],\n            [0.3868131173210141, -1.7900826997647472],\n            [0.4119412055401464, -1.8089501565735244],\n            [0.43765025648285577, -1.827019163457242],\n            [0.46391489383093654, -1.8442718660510584],\n            [0.4907091895756413, -1.8606912157163362],\n            [0.5180066896207228, -1.8762609864995452],\n            [0.5457804399267313, -1.8909657912787872],\n            [0.5740030131706838, -1.9047910970810662],\n            [0.6026465358945575, -1.9177232395542516],\n            [0.6316827161154072, -1.9297494365785246],\n            [0.6610828713692761, -1.9408578010029784],\n            [0.6908179571605269, -1.9510373524939144],\n            [0.7208585957875976, -1.9602780284822994],\n            [0.7511751055157418, -1.9685706941987744],\n            [0.7817375300667727, -1.9759071517855464],\n            [0.8125156683954242, -1.9822801484754786],\n            [0.8434791047215142, -1.9876833838296297],\n            [0.8745972387867542, -1.9921115160255491],\n            [0.905839316304705, -1.9955601671895735],\n            [0.937174459572123, -1.998025927767439],\n            [0.9685716982096989, -1.999506359928513],\n            [0.9999999999999999, -2],\n            [1.0314283017903014, -1.999506359928513],\n            [1.0628255404278766, -1.998025927767439],\n            [1.0941606836952953, -1.9955601671895735],\n            [1.1254027612132451, -1.9921115160255491],\n            [1.1565208952784856, -1.9876833838296297],\n            [1.187484331604576, -1.9822801484754786],\n            [1.2182624699332265, -1.9759071517855469],\n            [1.2488248944842584, -1.9685706941987744],\n            [1.2791414042124019, -1.9602780284822996],\n            [1.3091820428394731, -1.9510373524939144],\n            [1.3389171286307235, -1.9408578010029784],\n            [1.3683172838845927, -1.9297494365785246],\n            [1.3973534641054421, -1.9177232395542516],\n            [1.4259969868293159, -1.9047910970810662],\n            [1.454219560073268, -1.8909657912787876],\n            [1.4819933103792768, -1.8762609864995452],\n            [1.5092908104243585, -1.8606912157163367],\n            [1.5360851061690632, -1.844271866051059],\n            [1.5623497435171443, -1.8270191634572421],\n            [1.5880587944598534, -1.8089501565735244],\n            [1.6131868826789861, -1.7900826997647472],\n            [1.6377092085834863, -1.7704354353683476],\n            [1.6616015737551695, -1.7500277751644846],\n            [1.6848404047798269, -1.7288798810891064],\n            [1.7074027764407809, -1.707012645209871],\n            [1.7292664342527015, -1.6844476689855352],\n            [1.7504098163143187, -1.6612072418300874],\n            [1.7708120744594467, -1.6373143190035662],\n            [1.7904530946865824, -1.612792498852085],\n            [1.809313516848145, -1.5876659994202005],\n            [1.8273747535812737, -1.5619596344593092],\n            [1.8446190084629408, -1.5356987888562854],\n            [1.8610292933729806, -1.508909393507086],\n            [1.876589445049489, -1.481617899660525],\n            [1.8912841408219099, -1.4538512527578429],\n            [1.9050989135079444, -1.425636865794184],\n            [1.918020165461324, -1.3970025922283913],\n            [1.9300351817582941, -1.3679766984680015],\n            [1.9411321425115242, -1.338587835956581],\n            [1.9513001343010143, -1.3088650128909083],\n            [1.9605291607123858, -1.278837565595791],\n            [1.9688101519738206, -1.2485351295845353],\n            [1.9761349736837084, -1.2179876103333838],\n            [1.9824964346219185, -1.1872251537984015],\n            [1.9878882936384346, -1.1562781167035043],\n            [1.9923052656139026, -1.125177036628489],\n            [1.9957430264874667, -1.0939526019260548],\n            [1.9981982173480792, -1.0626356214969377],\n            [1.9996684475862758, -1.031256994452367],\n            [2.0001522971042083, -0.9998476796931379],\n            [1.9996493175825425, -0.9684386654346085],\n            [1.9981600328035976, -0.9370609387070123],\n            [1.9956859380309284, -0.9057454548604236],\n            [1.9922294984463231, -0.8745231071037364],\n            [1.987794146645978, -0.8434246961069698],\n            [1.982384279198417, -0.8124808996961119],\n            [1.976005252267481, -0.7817222426696945],\n            [1.968663376304536, -0.7511790667661317],\n            [1.960365909814793, -0.7208815008107302],\n            [1.951121052203452, -0.690859431071173],\n            [1.94093793570815, -0.6611424718500264],\n            [1.9298266164249884, -0.6317599363426949],\n            [1.9177980644361994, -0.6027408077889884],\n            [1.9048641530482977, -0.5741137109462129],\n            [1.8910376471503554, -0.5459068839114811],\n            [1.8763321907028327, -0.5181481503205695],\n            [1.8607622933681782, -0.49086489195040894],\n            [1.844343316295212, -0.46408402175191027],\n            [1.827091457070087, -0.4378319573394643],\n            [1.809023733847431, -0.4121345949631052],\n            [1.790157968676043, -0.3870172839888611],\n            [1.7705127700343037, -0.3625048019124103],\n            [1.750107514591282, -0.338621329930702],\n            [1.7289623282102318, -0.3153904290956775],\n            [1.7070980662120272, -0.29283501707376564],\n            [1.684536292916798, -0.27097734553423414],\n            [1.6612992604828098, -0.2498389781889515],\n            [1.6374098870623974, -0.2294407695055055],\n            [1.6128917342954874, -0.2098028441150192],\n            [1.587768984162005, -0.1909445769353626],\n            [1.562066415215137, -0.17288457402977933],\n            [1.535809378218191, -0.15564065422028742],\n            [1.5090237712084111, -0.13922983147446497],\n            [1.4817360140118547, -0.12366829808353047],\n            [1.4539730222340217, -0.10897140864883137],\n            [1.4257621807516014, -0.09515366489309589],\n            [1.3971313167312978, -0.082228701311992],\n            [1.3681086722022668, -0.07020927168070458],\n            [1.3387228762092802, -0.05910723642940488],\n            [1.3090029165742185, -0.048933550900610155],\n            [1.2789781112940444, -0.03969825450055861],\n            [1.2486780796038273, -0.03141046075581161],\n            [1.2181327127338553, -0.02407834828538298],\n            [1.187372144390254, -0.01770915269776382],\n            [1.156426720988894, -0.012309159421253086],\n            [1.1253269716727077, -0.007883697475061664],\n            [1.094103578142809, -0.004437134187667678],\n            [1.0627873443340718, -0.0019728708679349577],\n            [1.0314091659660098, -0.0004933394335071748],\n            [1, 0]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/segment2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"miles\",\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [1, 1],\n          [1, -1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 1],\n            [-0.03141394574050328, 0.9995065102932796],\n            [-0.06279687085684513, 0.9980265286324063],\n            [-0.0941177855058775, 0.9955615169102346],\n            [-0.12534576137461445, 0.9921139099986649],\n            [-0.1564499623656962, 0.9876871133261552],\n            [-0.1873996751874377, 0.9822854994898309],\n            [-0.21816433981686437, 0.9759144039057747],\n            [-0.24871357980431505, 0.9685801195020965],\n            [-0.27901723238841136, 0.9602898904603901],\n            [-0.30904537839045754, 0.9510519050121816],\n            [-0.3387683718576357, 0.9408752872979607],\n            [-0.36815686942470705, 0.9297700882973662],\n            [-0.3971818593643154, 0.9177472758400551],\n            [-0.425814690296404, 0.9048187237077365],\n            [-0.45402709952772125, 0.8909971998387831],\n            [-0.48179124099287784, 0.8762963536477497],\n            [-0.5090797127689458, 0.8607307024730207],\n            [-0.535865584136147, 0.8443156171666943],\n            [-0.5621224221577615, 0.8270673068416589],\n            [-0.5878243177530069, 0.8090028027916633],\n            [-0.6129459112372745, 0.790139941600986],\n            [-0.6374624173047774, 0.7704973474611085],\n            [-0.6613496494293466, 0.7500944137125592],\n            [-0.6845840436598288, 0.7289512836308387],\n            [-0.7071426817872531, 0.707088830476057],\n            [-0.7290033138616859, 0.6845286368266039],\n            [-0.7501443800374464, 0.6612929732178414],\n            [-0.7705450317261278, 0.6374047761074486],\n            [-0.7901851520376476, 0.6128876251896624],\n            [-0.8090453754903468, 0.5877657200812537],\n            [-0.8271071069719526, 0.5620638564026238],\n            [-0.8443525399340311, 0.5358074012779623],\n            [-0.860764673803362, 0.5090222682789036],\n            [-0.8763273305944876, 0.4817348918365997],\n            [-0.8910251707085054, 0.4539722011475964],\n            [-0.9048437079039933, 0.4257615935993164],\n            [-0.9177693234267785, 0.3971309077413644],\n            [-0.929789279286082, 0.3681083958292459],\n            [-0.9408917306653878, 0.3387226959674463],\n            [-0.9510657374572111, 0.30900280387913587],\n            [-0.9603012749117521, 0.2789780443300872],\n            [-0.9685892433902342, 0.24867804223464635],\n            [-0.9759214772145473, 0.2181326934718713],\n            [-0.9822907526056148, 0.18737213544017478],\n            [-0.9876907947037177, 0.1564267173790074],\n            [-0.9921162836648101, 0.12532697048631067],\n            [-0.9955628598276642, 0.09410357786062264],\n            [-0.9980271279474756, 0.06278734429685068],\n            [-0.9995066604923645, 0.03140916596484566],\n            [-1, 6.122923126514857e-17],\n            [-0.9995066604923645, -0.031409165964845547],\n            [-0.9980271279474756, -0.06278734429685032],\n            [-0.9955628598276642, -0.09410357786062273],\n            [-0.9921162836648099, -0.1253269704863108],\n            [-0.9876907947037175, -0.1564267173790075],\n            [-0.9822907526056148, -0.1873721354401747],\n            [-0.9759214772145473, -0.21813269347187117],\n            [-0.9685892433902342, -0.24867804223464623],\n            [-0.9603012749117521, -0.27897804433008716],\n            [-0.9510657374572111, -0.30900280387913576],\n            [-0.9408917306653878, -0.3387226959674461],\n            [-0.929789279286082, -0.3681083958292458],\n            [-0.9177693234267786, -0.39713090774136406],\n            [-0.9048437079039933, -0.4257615935993163],\n            [-0.8910251707085055, -0.45397220114759623],\n            [-0.8763273305944878, -0.4817348918365994],\n            [-0.8607646738033624, -0.5090222682789031],\n            [-0.8443525399340313, -0.5358074012779622],\n            [-0.8271071069719524, -0.5620638564026238],\n            [-0.8090453754903468, -0.5877657200812537],\n            [-0.7901851520376477, -0.6128876251896622],\n            [-0.7705450317261281, -0.637404776107448],\n            [-0.7501443800374462, -0.6612929732178418],\n            [-0.7290033138616862, -0.6845286368266037],\n            [-0.7071426817872533, -0.7070888304760569],\n            [-0.6845840436598287, -0.7289512836308388],\n            [-0.6613496494293466, -0.7500944137125592],\n            [-0.6374624173047776, -0.7704973474611085],\n            [-0.612945911237275, -0.7901399416009859],\n            [-0.587824317753007, -0.809002802791663],\n            [-0.5621224221577613, -0.8270673068416589],\n            [-0.535865584136147, -0.8443156171666942],\n            [-0.509079712768946, -0.8607307024730205],\n            [-0.48179124099287807, -0.8762963536477496],\n            [-0.4540270995277213, -0.8909971998387831],\n            [-0.42581469029640395, -0.9048187237077365],\n            [-0.3971818593643159, -0.917747275840055],\n            [-0.3681568694247068, -0.9297700882973662],\n            [-0.338768371857636, -0.9408752872979605],\n            [-0.30904537839045765, -0.9510519050121816],\n            [-0.27901723238841164, -0.9602898904603901],\n            [-0.24871357980431505, -0.9685801195020965],\n            [-0.21816433981686462, -0.9759144039057747],\n            [-0.18739967518743766, -0.9822854994898309],\n            [-0.15644996236569633, -0.9876871133261549],\n            [-0.12534576137461473, -0.9921139099986648],\n            [-0.09411778550587754, -0.9955615169102346],\n            [-0.06279687085684535, -0.9980265286324063],\n            [-0.03141394574050323, -0.9995065102932796],\n            [-1.2247711638835432e-16, -1],\n            [0.031413945740503435, -0.9995065102932796],\n            [0.06279687085684511, -0.9980265286324063],\n            [0.09411778550587774, -0.9955615169102346],\n            [0.12534576137461406, -0.9921139099986649],\n            [0.15644996236569608, -0.9876871133261552],\n            [0.18739967518743783, -0.9822854994898307],\n            [0.21816433981686395, -0.9759144039057748],\n            [0.24871357980431527, -0.9685801195020965],\n            [0.27901723238841103, -0.9602898904603904],\n            [0.30904537839045787, -0.9510519050121816],\n            [0.3387683718576357, -0.9408752872979607],\n            [0.36815686942470655, -0.9297700882973663],\n            [0.3971818593643156, -0.917747275840055],\n            [0.4258146902964037, -0.9048187237077365],\n            [0.45402709952772075, -0.8909971998387834],\n            [0.48179124099287784, -0.8762963536477497],\n            [0.5090797127689455, -0.860730702473021],\n            [0.5358655841361469, -0.8443156171666943],\n            [0.5621224221577612, -0.8270673068416591],\n            [0.5878243177530068, -0.8090028027916633],\n            [0.612945911237275, -0.7901399416009857],\n            [0.6374624173047773, -0.7704973474611087],\n            [0.6613496494293465, -0.7500944137125595],\n            [0.6845840436598287, -0.7289512836308389],\n            [0.7071426817872531, -0.7070888304760571],\n            [0.7290033138616857, -0.6845286368266043],\n            [0.7501443800374464, -0.6612929732178414],\n            [0.7705450317261281, -0.6374047761074483],\n            [0.7901851520376476, -0.6128876251896624],\n            [0.8090453754903465, -0.5877657200812538],\n            [0.8271071069719522, -0.562063856402624],\n            [0.844352539934031, -0.5358074012779628],\n            [0.8607646738033623, -0.5090222682789033],\n            [0.8763273305944872, -0.4817348918366004],\n            [0.8910251707085054, -0.4539722011475964],\n            [0.9048437079039933, -0.4257615935993165],\n            [0.9177693234267786, -0.3971309077413639],\n            [0.929789279286082, -0.36810839582924587],\n            [0.9408917306653873, -0.3387226959674469],\n            [0.9510657374572111, -0.309002803879136],\n            [0.9603012749117521, -0.2789780443300876],\n            [0.9685892433902342, -0.2486780422346467],\n            [0.9759214772145471, -0.21813269347187206],\n            [0.9822907526056147, -0.18737213544017578],\n            [0.9876907947037175, -0.1564267173790075],\n            [0.9921162836648101, -0.12532697048631017],\n            [0.9955628598276642, -0.09410357786062232],\n            [0.9980271279474756, -0.06278734429685125],\n            [0.9995066604923645, -0.03140916596484556],\n            [1, -1.836876937954457e-16],\n            [0.9995066604923644, 0.03140916596484608],\n            [0.9980271279474756, 0.06278734429685087],\n            [0.9955628598276643, 0.09410357786062197],\n            [0.9921162836648101, 0.12532697048631067],\n            [0.9876907947037177, 0.15642671737900715],\n            [0.9822907526056148, 0.18737213544017453],\n            [0.9759214772145473, 0.2181326934718717],\n            [0.9685892433902344, 0.24867804223464546],\n            [0.9603012749117521, 0.2789780443300872],\n            [0.9510657374572111, 0.3090028038791357],\n            [0.9408917306653879, 0.3387226959674458],\n            [0.9297892792860817, 0.3681083958292463],\n            [0.9177693234267789, 0.39713090774136356],\n            [0.9048437079039935, 0.4257615935993162],\n            [0.8910251707085055, 0.4539722011475962],\n            [0.876327330594488, 0.48173489183659923],\n            [0.860764673803362, 0.5090222682789037],\n            [0.8443525399340316, 0.5358074012779618],\n            [0.827107106971953, 0.5620638564026229],\n            [0.8090453754903468, 0.5877657200812536],\n            [0.7901851520376478, 0.6128876251896621],\n            [0.7705450317261276, 0.6374047761074486],\n            [0.7501443800374469, 0.6612929732178409],\n            [0.7290033138616866, 0.6845286368266033],\n            [0.7071426817872534, 0.7070888304760569],\n            [0.6845840436598284, 0.7289512836308389],\n            [0.6613496494293464, 0.7500944137125596],\n            [0.6374624173047778, 0.7704973474611082],\n            [0.6129459112372746, 0.7901399416009859],\n            [0.5878243177530071, 0.809002802791663],\n            [0.5621224221577611, 0.8270673068416591],\n            [0.5358655841361475, 0.8443156171666938],\n            [0.5090797127689466, 0.8607307024730204],\n            [0.48179124099287784, 0.8762963536477497],\n            [0.45402709952772147, 0.8909971998387831],\n            [0.42581469029640445, 0.9048187237077363],\n            [0.39718185936431594, 0.917747275840055],\n            [0.368156869424707, 0.9297700882973662],\n            [0.3387683718576357, 0.9408752872979607],\n            [0.3090453783904578, 0.9510519050121816],\n            [0.2790172323884118, 0.9602898904603901],\n            [0.24871357980431563, 0.9685801195020965],\n            [0.21816433981686426, 0.9759144039057747],\n            [0.18739967518743775, 0.9822854994898309],\n            [0.15644996236569647, 0.9876871133261549],\n            [0.12534576137461484, 0.9921139099986648],\n            [0.09411778550587722, 0.9955615169102346],\n            [0.06279687085684503, 0.9980265286324063],\n            [0.03141394574050335, 0.9995065102932796],\n            [0, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/segment3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"miles\",\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [1, 1]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [2, 1],\n          [3, 1]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1.9998476912909309],\n            [0.9685764874430625, 1.9993541264432921],\n            [0.9371840332951916, 1.9978739198791862],\n            [0.9058536650349519, 1.9954085350477562],\n            [0.874616348312366, 1.991960409407136],\n            [0.8435029561157432, 1.9875329519906195],\n            [0.8125442380357036, 1.982130540002962],\n            [0.7817707896585678, 1.9757585144504493],\n            [0.7512130221211079, 1.9684231748094274],\n            [0.720901131858419, 1.960131772738993],\n            [0.6908650705763909, 1.9508925048445718],\n            [0.6611345154799444, 1.9407145045001086],\n            [0.6317388397878309, 1.9296078327375863],\n            [0.6027070835643901, 1.9175834682135797],\n            [0.574067924898221, 1.9046532962634994],\n            [0.5458496514572314, 1.8908300970551284],\n            [0.5180801324490233, 1.8761275328540072],\n            [0.4907867910150093, 1.8605601344140907],\n            [0.4639965770860733, 1.8441432865080298],\n            [0.4377359407269739, 1.8268932126122714],\n            [0.4120308059960352, 1.8088269587630355],\n            [0.3869065453460031, 1.7899623766000274],\n            [0.3623879545912411, 1.7703181056155757],\n            [0.33849922846572483, 1.749913554627618],\n            [0.31526393679553893, 1.7287688824957437],\n            [0.29270500130883303, 1.706904978100197],\n            [0.2708446731054016, 1.6843434396044605],\n            [0.2497045108072656, 1.6611065530226876],\n            [0.2293053594108224, 1.6372172701139152],\n            [0.20966732986031264, 1.612699185625586],\n            [0.19080977936152865, 1.5875765139095044],\n            [0.17275129245384074, 1.561874064933911],\n            [0.1555096628577904, 1.5356172197158828],\n            [0.1391018761146433, 1.5088319051987862],\n            [0.12354409303344221, 1.4815445685999664],\n            [0.10885163396025704, 1.4537821512543276],\n            [0.09503896388346597, 1.42557206197986],\n            [0.08211967838805978, 1.3969421499915808],\n            [0.07010649047109206, 1.3679206773907133],\n            [0.059011218229577264, 1.3385362912562797],\n            [0.04884477343125654, 1.3088179953665888],\n            [0.039617150977839286, 1.2787951215783993],\n            [0.03133741926947393, 1.2484973008917966],\n            [0.02401371147836088, 1.217954434229065],\n            [0.01765321773861128, 1.1871966629560535],\n            [0.012262178258605124, 1.1562543391747098],\n            [0.00784587736129576, 1.1251579958156466],\n            [0.0044086384570907475, 1.0939383165597265],\n            [0.0019538199531214176, 1.0626261056177748],\n            [0.00048381210190536834, 1.0312522573976357],\n            [3.4791613956666536e-8, 0.9998477260878444],\n            [0.0005029362793398631, 0.9684434951872459],\n            [0.001991992867979772, 0.937070547009919],\n            [0.0044657095265349675, 0.9057598321947592],\n            [0.007921621452868132, 0.8745422392490729],\n            [0.012356296577131455, 0.8434485641554709],\n            [0.017765339003325175, 0.8125094800713095],\n            [0.024143393385636872, 0.7817555071498272],\n            [0.03148415023543807, 0.7512169825120283],\n            [0.03978035215402522, 0.7209240303982191],\n            [0.04902380098540174, 0.6909065325279683],\n            [0.05920536588262482, 0.6611940986970771],\n            [0.07031499228043472, 0.6318160376399445],\n            [0.08234171176611832, 0.6028013281855018],\n            [0.09527365283974953, 0.5741785907346371],\n            [0.10909805255417786, 0.545976059086767],\n            [0.12380126902433272, 0.5182215526429196],\n            [0.1393687947946292, 0.4909424490123792],\n            [0.15578527105246542, 0.46416565704960455],\n            [0.17303450267500964, 0.43791759034776495],\n            [0.19109947409569225, 0.4122241412148512],\n            [0.20996236597601992, 0.38711065515790877],\n            [0.2296045726675431, 0.36260190590050106],\n            [0.25000672044803096, 0.33872207095804346],\n            [0.2711486865151151, 0.31549470779516814],\n            [0.2930096187199026, 0.2929427305887503],\n            [0.3155679560222654, 0.27108838761971815],\n            [0.33880144964877745, 0.24995323931616376],\n            [0.3626871849334956, 0.22955813696971483],\n            [0.3872016038210406, 0.20992320214650032],\n            [0.4123205280107062, 0.19106780681339716],\n            [0.43801918271959744, 0.17301055419959332],\n            [0.46427222104209515, 0.15576926041279984],\n            [0.4910537488822567, 0.1393609368287407],\n            [0.5183373504350832, 0.12380177327180888],\n            [0.5460961141919409, 0.10910712200401398],\n            [0.5743026594447858, 0.09529148253856706],\n            [0.6029291632632362, 0.08236848729364371],\n            [0.6319473879179616, 0.07035088810103365],\n            [0.6613287087232729, 0.05925054358355488],\n            [0.6910441422713254, 0.0490784074142174],\n            [0.7210643750297743, 0.03984451746927074],\n            [0.7513597922743341, 0.03155798588633497],\n            [0.7819005073271911, 0.024226990037924254],\n            [0.8126563910718728, 0.017858764429716806],\n            [0.8435971017147775, 0.012459593531994719],\n            [0.8746921147632691, 0.008034805551705666],\n            [0.9059107531899301, 0.004588767151634947],\n            [0.9372222177523374, 0.0021248791221906886],\n            [0.9685956174375103, 0.0006455730103193716],\n            [0.9999999999999999, 0.00015230870906915127],\n            [1.03140438256249, 0.0006455730103193716],\n            [1.0627777822476625, 0.0021248791221906886],\n            [1.0940892468100702, 0.004588767151634947],\n            [1.1253078852367304, 0.008034805551705666],\n            [1.1564028982852224, 0.012459593531994719],\n            [1.1873436089281277, 0.017858764429716806],\n            [1.2180994926728084, 0.024226990037924057],\n            [1.2486402077256664, 0.03155798588633497],\n            [1.2789356249702248, 0.039844517469270535],\n            [1.3089558577286753, 0.0490784074142174],\n            [1.338671291276727, 0.05925054358355488],\n            [1.368052612082038, 0.07035088810103365],\n            [1.3970708367367635, 0.08236848729364371],\n            [1.4256973405552142, 0.09529148253856706],\n            [1.4539038858080586, 0.10910712200401368],\n            [1.4816626495649166, 0.12380177327180877],\n            [1.5089462511177427, 0.1393609368287404],\n            [1.5357277789579047, 0.15576926041279973],\n            [1.5619808172804022, 0.17301055419959313],\n            [1.5876794719892935, 0.19106780681339705],\n            [1.6127983961789596, 0.2099232021465004],\n            [1.6373128150665042, 0.22955813696971475],\n            [1.6611985503512223, 0.24995323931616348],\n            [1.6844320439777343, 0.27108838761971804],\n            [1.706990381280097, 0.29294273058875],\n            [1.7288513134848846, 0.31549470779516753],\n            [1.7499932795519693, 0.3387220709580436],\n            [1.7703954273324567, 0.36260190590050084],\n            [1.79003763402398, 0.3871106551579085],\n            [1.8089005259043074, 0.41222414121485096],\n            [1.8269654973249903, 0.43791759034776473],\n            [1.8442147289475344, 0.46416565704960394],\n            [1.8606312052053708, 0.490942449012379],\n            [1.8761987309756667, 0.5182215526429186],\n            [1.8909019474458222, 0.5459760590867668],\n            [1.9047263471602505, 0.574178590734637],\n            [1.917658288233882, 0.602801328185502],\n            [1.9296850077195653, 0.6318160376399444],\n            [1.9407946341173747, 0.6611940986970761],\n            [1.950976199014598, 0.6909065325279681],\n            [1.9602196478459746, 0.7209240303982185],\n            [1.9685158497645618, 0.7512169825120278],\n            [1.9758566066143628, 0.7817555071498264],\n            [1.9822346609966746, 0.8125094800713084],\n            [1.9876437034228687, 0.8434485641554709],\n            [1.992078378547132, 0.8745422392490737],\n            [1.9955342904734654, 0.9057598321947595],\n            [1.9980080071320199, 0.937070547009918],\n            [1.99949706372066, 0.9684434951872459],\n            [1.999999965208386, 0.9998477260878441],\n            [1.9995161878980947, 1.0312522573976362],\n            [1.998046180046879, 1.062626105617775],\n            [1.9955913615429095, 1.0939383165597256],\n            [1.9921541226387043, 1.1251579958156466],\n            [1.9877378217413952, 1.1562543391747095],\n            [1.9823467822613885, 1.187196662956053],\n            [1.9759862885216393, 1.2179544342290656],\n            [1.968662580730526, 1.2484973008917954],\n            [1.9603828490221609, 1.2787951215783993],\n            [1.9511552265687435, 1.3088179953665888],\n            [1.9409887817704228, 1.338536291256279],\n            [1.9298935095289076, 1.3679206773907135],\n            [1.9178803216119407, 1.39694214999158],\n            [1.9049610361165343, 1.42557206197986],\n            [1.8911483660397432, 1.4537821512543274],\n            [1.8764559069665578, 1.481544568599966],\n            [1.8608981238853566, 1.5088319051987862],\n            [1.8444903371422101, 1.5356172197158822],\n            [1.8272487075461599, 1.5618740649339105],\n            [1.8091902206384716, 1.5875765139095044],\n            [1.7903326701396876, 1.6126991856255855],\n            [1.7706946405891775, 1.6372172701139154],\n            [1.750295489192735, 1.661106553022687],\n            [1.7291553268945992, 1.68434343960446],\n            [1.707294998691167, 1.7069049781001968],\n            [1.6847360632044608, 1.728768882495744],\n            [1.661500771534275, 1.7499135546276183],\n            [1.6376120454087597, 1.770318105615575],\n            [1.6130934546539972, 1.7899623766000272],\n            [1.587969194003965, 1.8088269587630355],\n            [1.5622640592730255, 1.826893212612272],\n            [1.5360034229139272, 1.8441432865080298],\n            [1.5092132089849915, 1.8605601344140903],\n            [1.4819198675509768, 1.8761275328540072],\n            [1.454150348542769, 1.8908300970551284],\n            [1.4259320751017792, 1.904653296263499],\n            [1.3972929164356105, 1.9175834682135797],\n            [1.368261160212169, 1.9296078327375863],\n            [1.3388654845200556, 1.9407145045001086],\n            [1.3091349294236092, 1.9508925048445718],\n            [1.2790988681415816, 1.960131772738993],\n            [1.248786977878893, 1.9684231748094274],\n            [1.2182292103414323, 1.9757585144504493],\n            [1.1874557619642963, 1.982130540002962],\n            [1.156497043884257, 1.9875329519906195],\n            [1.1253836516876345, 1.991960409407136],\n            [1.0941463349650475, 1.9954085350477562],\n            [1.0628159667048083, 1.9978739198791862],\n            [1.0314235125569375, 1.9993541264432921],\n            [1, 1.9998476912909309]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test/out/segment4.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"units\": \"miles\",\n    \"mercator\": true\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-48.076171875, 15.453680224345835]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-51.5478515625, 19.352610894378625],\n          [-29.794921874999996, 27.176469131898898]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-48.076171875, 20.385085986545974],\n            [-48.24121373148589, 20.382587020538292],\n            [-48.40607804834933, 20.375092831500616],\n            [-48.570587537633166, 20.362611542355154],\n            [-48.734565413965605, 20.345156677872723],\n            [-48.89783564399486, 20.322747144571107],\n            [-49.06022319360827, 20.295407202667537],\n            [-49.221554272220345, 20.26316643017937],\n            [-49.38165657343407, 20.226059679292504],\n            [-49.540359511403665, 20.18412702514188],\n            [-49.69749445225518, 20.13741370717204],\n            [-49.85289493995344, 20.085970063268174],\n            [-50.006396916039996, 20.029851456869004],\n            [-50.157838932704884, 19.969118197292435],\n            [-50.30706235869757, 19.903835453522767],\n            [-50.45391157762597, 19.83407316172425],\n            [-50.598234178238826, 19.759905926760144],\n            [-50.7398811363339, 19.68141291800882],\n            [-50.87870698798338, 19.598677759778948],\n            [-51.014569993816814, 19.51178841663417],\n            [-51.14733229415095, 19.420837073944526],\n            [-51.27686005480537, 19.32592001398626],\n            [-51.40302360349036, 19.22713748791452],\n            [-51.52569755670126, 19.12459358393442],\n            [-51.644760937098624, 19.018396091994855],\n            [-51.76009728139784, 18.908656365327094],\n            [-51.871594738833444, 18.795489179145836],\n            [-51.979146160302626, 18.679012586824825],\n            [-52.08264917832937, 18.55934777385202],\n            [-52.182006278024836, 18.436618909860883],\n            [-52.27712485924993, 18.31095299902511],\n            [-52.367917290214905, 18.182479729093348],\n            [-52.45430095277478, 18.05133131932943],\n            [-52.53619827970133, 17.91764236761125],\n            [-52.61353678423081, 17.78154969692906],\n            [-52.686249082201364, 17.6431922015106],\n            [-52.75427290710628, 17.50271069278718],\n            [-52.81755111839816, 17.360247745401075],\n            [-52.87603170338466, 17.21594754344104],\n            [-52.929667773059904, 17.069955727078867],\n            [-52.97841755221535, 16.92241923976654],\n            [-53.02224436417227, 16.773486176140292],\n            [-53.06111661047297, 16.623305630764825],\n            [-53.09500774586052, 16.472027547838646],\n            [-53.123896248869045, 16.319802571969404],\n            [-53.147765588334316, 16.166781900116813],\n            [-53.16660418612344, 16.01311713478999],\n            [-53.18040537636747, 15.858960138576114],\n            [-53.18916736146651, 15.704462890067862],\n            [-53.19289316512047, 15.54977734124876],\n            [-53.191590582621906, 15.395055276387788],\n            [-53.18527212862962, 15.240448172487719],\n            [-53.17395498262442, 15.086107061325611],\n            [-53.15766093222928, 14.932182393118635],\n            [-53.13641631455885, 14.778823901844126],\n            [-53.11025195574441, 14.62618047223891],\n            [-53.0792031087627, 14.474400008500474],\n            [-53.04330938967932, 14.32362930471022],\n            [-53.0026147124005, 14.174013916998012],\n            [-52.95716722201038, 14.025698037466432],\n            [-52.90701922675526, 13.878824369893353],\n            [-52.852227128721616, 13.73353400723213],\n            [-52.792851353240366, 13.58996631092996],\n            [-52.728956277037206, 13.448258792086785],\n            [-52.66061015513689, 13.308546994479375],\n            [-52.58788504651843, 13.170964379477992],\n            [-52.510856738508835, 13.035642212885984],\n            [-52.42960466989454, 12.902709453736158],\n            [-52.344211852722324, 12.772292645081345],\n            [-52.254764792756234, 12.64451580682035],\n            [-52.16135340855153, 12.519500330604476],\n            [-52.064070949104014, 12.39736487687383],\n            [-51.96301391003057, 12.278225274076597],\n            [-51.85828194823587, 12.162194420128504],\n            [-51.74997779502045, 12.049382186173597],\n            [-51.638207167586586, 11.93989532271111],\n            [-51.52307867890111, 11.8338373681569],\n            [-51.404703745877576, 11.73130855991104],\n            [-51.283196495844635, 11.6324057480063],\n            [-51.15867367127304, 11.537222311414803],\n            [-51.031254532739595, 11.44584807709247],\n            [-50.90106076011367, 11.35836924184276],\n            [-50.76821635195908, 11.274868297082545],\n            [-50.63284752315266, 11.195423956594],\n            [-50.495082600729376, 11.120111087346793],\n            [-50.35505191797273, 11.049000643474834],\n            [-50.21288770677894, 10.982159603491233],\n            [-50.068723988332295, 10.919650910824036],\n            [-49.92269646213929, 10.8615334177536],\n            [-49.77494239347846, 10.807861832830383],\n            [-49.625600499332066, 10.758686671849066],\n            [-49.47481083287577, 10.714054212451837],\n            [-49.32271466661053, 10.674006452429802],\n            [-49.16945437423037, 10.638581071787385],\n            [-49.015173311327025, 10.607811398629767],\n            [-48.86001569504066, 10.581726378928495],\n            [-48.70412648277236, 10.560350550214677],\n            [-48.54765125008035, 10.543704019243547],\n            [-48.39073606788764, 10.531802443667877],\n            [-48.23352737913276, 10.524657017751245],\n            [-48.076171875, 10.522274462145697],\n            [-47.91881637086725, 10.524657017751245],\n            [-47.76160768211238, 10.531802443667877],\n            [-47.60469249991965, 10.543704019243547],\n            [-47.448217267227655, 10.560350550214677],\n            [-47.292328054959356, 10.581726378928495],\n            [-47.13717043867299, 10.607811398629769],\n            [-46.982889375769645, 10.638581071787383],\n            [-46.82962908338948, 10.674006452429802],\n            [-46.67753291712425, 10.714054212451833],\n            [-46.526743250667934, 10.758686671849066],\n            [-46.37740135652155, 10.807861832830383],\n            [-46.22964728786072, 10.8615334177536],\n            [-46.08361976166772, 10.919650910824034],\n            [-45.93945604322107, 10.982159603491233],\n            [-45.79729183202729, 11.049000643474834],\n            [-45.65726114927064, 11.120111087346793],\n            [-45.519496226847345, 11.195423956593997],\n            [-45.38412739804093, 11.274868297082545],\n            [-45.25128298988634, 11.35836924184276],\n            [-45.12108921726042, 11.445848077092467],\n            [-44.99367007872697, 11.537222311414803],\n            [-44.869147254155365, 11.6324057480063],\n            [-44.74764000412244, 11.73130855991104],\n            [-44.6292650710989, 11.8338373681569],\n            [-44.51413658241343, 11.93989532271111],\n            [-44.40236595497955, 12.049382186173595],\n            [-44.29406180176414, 12.162194420128504],\n            [-44.189329839969446, 12.278225274076597],\n            [-44.088272800896, 12.39736487687383],\n            [-43.99099034144849, 12.519500330604474],\n            [-43.897578957243766, 12.644515806820348],\n            [-43.80813189727768, 12.77229264508134],\n            [-43.72273908010548, 12.902709453736156],\n            [-43.641487011491165, 13.035642212885977],\n            [-43.56445870348158, 13.170964379477992],\n            [-43.49173359486313, 13.308546994479375],\n            [-43.42338747296281, 13.448258792086785],\n            [-43.35949239675965, 13.58996631092996],\n            [-43.30011662127839, 13.733534007232125],\n            [-43.24532452324475, 13.878824369893351],\n            [-43.19517652798963, 14.02569803746643],\n            [-43.149729037599506, 14.17401391699801],\n            [-43.1090343603207, 14.323629304710217],\n            [-43.073140641237316, 14.474400008500469],\n            [-43.0420917942556, 14.62618047223891],\n            [-43.015927435441164, 14.778823901844127],\n            [-42.99468281777074, 14.932182393118637],\n            [-42.97838876737559, 15.086107061325604],\n            [-42.967071621370394, 15.240448172487719],\n            [-42.96075316737811, 15.395055276387788],\n            [-42.95945058487954, 15.549777341248761],\n            [-42.963176388533505, 15.704462890067862],\n            [-42.97193837363253, 15.858960138576112],\n            [-42.98573956387657, 16.01311713478999],\n            [-43.0045781616657, 16.16678190011681],\n            [-43.02844750113097, 16.3198025719694],\n            [-43.05733600413949, 16.472027547838646],\n            [-43.091227139527035, 16.623305630764822],\n            [-43.13009938582773, 16.773486176140292],\n            [-43.17392619778467, 16.92241923976654],\n            [-43.222675976940096, 17.069955727078867],\n            [-43.27631204661534, 17.215947543441043],\n            [-43.33479263160186, 17.36024774540107],\n            [-43.39807084289373, 17.50271069278718],\n            [-43.46609466779865, 17.6431922015106],\n            [-43.5388069657692, 17.78154969692906],\n            [-43.61614547029869, 17.91764236761125],\n            [-43.698042797225234, 18.051331319329424],\n            [-43.784426459785095, 18.18247972909334],\n            [-43.87521889075008, 18.310952999025105],\n            [-43.97033747197518, 18.43661890986088],\n            [-44.06969457167064, 18.55934777385202],\n            [-44.17319758969739, 18.679012586824825],\n            [-44.28074901116656, 18.795489179145832],\n            [-44.392246468602174, 18.908656365327094],\n            [-44.50758281290139, 19.018396091994855],\n            [-44.626646193298754, 19.12459358393442],\n            [-44.749320146509646, 19.22713748791451],\n            [-44.87548369519464, 19.32592001398626],\n            [-45.00501145584906, 19.420837073944526],\n            [-45.1377737561832, 19.51178841663417],\n            [-45.27363676201663, 19.598677759778948],\n            [-45.412462613666115, 19.68141291800882],\n            [-45.55410957176119, 19.759905926760144],\n            [-45.698432172374034, 19.83407316172425],\n            [-45.84528139130244, 19.903835453522763],\n            [-45.994504817295116, 19.969118197292428],\n            [-46.14594683396001, 20.029851456869004],\n            [-46.29944881004656, 20.085970063268174],\n            [-46.454849297744836, 20.13741370717204],\n            [-46.611984238596335, 20.18412702514188],\n            [-46.77068717656594, 20.226059679292504],\n            [-46.93078947777967, 20.26316643017937],\n            [-47.092120556391734, 20.295407202667537],\n            [-47.25450810600514, 20.322747144571107],\n            [-47.41777833603441, 20.345156677872723],\n            [-47.58175621236685, 20.362611542355154],\n            [-47.746265701650685, 20.375092831500616],\n            [-47.91113001851412, 20.382587020538292],\n            [-48.076171875, 20.385085986545974]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { Feature, LineString, Point } from \"geojson\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { circle } from \"@turf/circle\";\nimport { point, lineString, round } from \"@turf/helpers\";\nimport { pointToLineDistance } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-point-to-line-distance\", (t) => {\n  const results = {};\n  fixtures.forEach((fixture) => {\n    const filename = fixture.filename;\n    const name = fixture.name;\n    const geojson = fixture.geojson;\n    const point = geojson.features[0];\n    const line = geojson.features[1];\n    const properties = geojson.properties || {};\n    const units = properties.units || \"kilometers\";\n    // main method\n    const options = { units: units };\n    options.method = \"geodesic\";\n    const distance = pointToLineDistance(point, line, options);\n\n    // Store results\n    results[name] = round(distance, 10);\n\n    // debug purposes\n    geojson.features.push(\n      circle(point, distance, { steps: 200, units: units })\n    );\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, geojson);\n  });\n  if (process.env.REGEN)\n    writeJsonFileSync(directories.out + \"distances.json\", results);\n  t.deepEqual(loadJsonFileSync(directories.out + \"distances.json\"), results);\n  t.end();\n});\n\ntest(\"turf-point-to-line-distance -- throws\", (t) => {\n  const pt = point([0, 0]);\n  const line = lineString([\n    [1, 1],\n    [-1, 1],\n  ]);\n\n  t.throws(\n    () => pointToLineDistance(null, line),\n    /pt is required/,\n    \"missing point\"\n  );\n  t.throws(\n    () => pointToLineDistance(pt, null),\n    /line is required/,\n    \"missing line\"\n  );\n  t.throws(\n    () => pointToLineDistance(pt, line, { units: \"invalid\" }),\n    /units is invalid/,\n    \"invalid units\"\n  );\n  t.throws(\n    () => pointToLineDistance(line, line),\n    /Invalid input to point: must be a Point, given LineString/,\n    \"invalid line\"\n  );\n  t.throws(\n    () => pointToLineDistance(pt, pt),\n    /Invalid input to line: must be a LineString, given Point/,\n    \"invalid point\"\n  );\n\n  t.end();\n});\n\ntest(\"turf-point-to-line-distance -- Geometry\", (t) => {\n  const pt = point([0, 0]);\n  const line = lineString([\n    [1, 1],\n    [-1, 1],\n  ]);\n\n  t.assert(pointToLineDistance(pt.geometry, line.geometry));\n  t.end();\n});\n\ntest(\"turf-point-to-line-distance -- Check planar and geodesic results are different\", (t) => {\n  const pt = point([0, 0]);\n  const line = lineString([\n    [10, 10],\n    [-1, 1],\n  ]);\n\n  const geoOut = pointToLineDistance(pt.geometry, line.geometry, {\n    method: \"geodesic\",\n  });\n  const planarOut = pointToLineDistance(pt.geometry, line.geometry, {\n    method: \"planar\",\n  });\n  t.notEqual(geoOut, planarOut);\n  t.end();\n});\n\ntest(\"turf-point-to-line-distance -- issue 2270\", (t) => {\n  let pt: Feature<Point>;\n  let line: Feature<LineString>;\n  let d: number;\n\n  // This point should be about 3.4m from the line. Definitely not 4.3!\n  // https://github.com/Turfjs/turf/issues/2270#issuecomment-1073787691\n  pt = point([10.748363481687537, 59.94785299224352]);\n  line = lineString([\n    [10.7482034954027, 59.9477463357725],\n    [10.7484686179823, 59.9480515133037],\n  ]);\n\n  d = round(pointToLineDistance(pt, line, { units: \"meters\" }), 1);\n  t.equal(d, 3.4, \"Point is approx 3.4m from line\");\n\n  // This point should be about 1000m from the line. Definitely not 1017!\n  // https://github.com/Turfjs/turf/issues/2270#issuecomment-2307907374\n  pt = point([11.991689565382663, 34.00578044047174]);\n  line = lineString([\n    [12, 34],\n    [11.993027757380355, 33.99311060965808],\n  ]);\n\n  d = round(pointToLineDistance(pt, line, { units: \"meters\" }));\n  t.equal(d, 1000, \"Point is approx 1000m from line\");\n\n  t.end();\n});\n\ntest(\"turf-point-to-line-distance -- issue 1156\", (t) => {\n  // According to issue 1156 the result of pointToLineDistance varies suddenly\n  // at a certain longitude. Code below\n\n  // When the error occurs we would expect to see 'd' jump from about 188 to\n  // over 800\n  // ...\n  // [ 11.028347, 41 ] 188.9853459755496 189.00642024172396\n  // [ 11.028348, 41 ] 842.5784253401666 189.08988164279026\n  //                   ^^^\n\n  // https://github.com/Turfjs/turf/issues/1156#issue-279806209\n  let lineCoords = [\n    [10.964832305908203, 41.004681939880314],\n    [10.977363586425781, 40.99096148527727],\n    [10.983200073242188, 40.97075154073346],\n    [11.02834701538086, 40.98372150040732],\n    [11.02508544921875, 41.00716631272605],\n    [10.994186401367188, 41.01947819666632],\n    [10.964832305908203, 41.004681939880314],\n  ];\n\n  let line = lineString(lineCoords);\n\n  let x0 = 11.02834;\n  let x1 = 11.02835;\n  let dx = 0.000001;\n  for (let i = 0, x = x0; x <= x1; i++, x = x0 + i * dx) {\n    let p = point([x, 41.0]);\n    let d = pointToLineDistance(p, line, { units: \"meters\" });\n    t.true(d < 190, \"pointToLineDistance never jumps past 190\");\n  }\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-point-to-line-distance/types.ts",
    "content": "import { point, lineString } from \"@turf/helpers\";\nimport { pointToLineDistance } from \"./index.js\";\n\nconst pt = point([0, 0]);\nconst line = lineString([\n  [1, 1],\n  [-1, 1],\n]);\nconst distance: number = pointToLineDistance(pt, line, { units: \"miles\" });\n\npointToLineDistance(pt, line);\npointToLineDistance(pt, line, { units: \"miles\" });\npointToLineDistance(pt, line, { units: \"miles\", method: \"planar\" });\n"
  },
  {
    "path": "packages/turf-point-to-polygon-distance/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-point-to-polygon-distance/README.md",
    "content": "# @turf/point-to-polygon-distance\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## pointToPolygonDistance\n\nCalculates the distance from a point to the edges of a polygon or multi-polygon.\nReturns negative values for points inside the polygon.\nHandles polygons with holes and multi-polygons.\nA hole is treated as the exterior of the polygon.\n\n### Parameters\n\n*   `point` **([Feature][1]<[Point][2]> | [Point][2] | [Position][3])** Input point\n*   `polygonOrMultiPolygon` **([Feature][1]<([Polygon][4] | [MultiPolygon][5])> | [Polygon][4] | [MultiPolygon][5])** Input polygon or multipolygon\n*   `options` **[Object][6]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** Units of the result e.g. \"kilometers\", \"miles\", \"meters\"\n    *   `options.method` **(`\"geodesic\"` | `\"planar\"`)** Method of the result\n\n<!---->\n\n*   Throws **[Error][7]** If input geometries are invalid\n\nReturns **[number][8]** Distance in meters (negative values for points inside the polygon)\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[3]: https://developer.mozilla.org/docs/Web/API/Position\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error\n\n[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/point-to-polygon-distance\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-point-to-polygon-distance/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { pointToPolygonDistance } from \"./index.js\";\nimport { featureCollection } from \"@turf/helpers\";\nimport {\n  Feature,\n  GeoJsonProperties,\n  MultiPolygon,\n  Point,\n  Polygon,\n} from \"geojson\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\nconst fixturesPath = path.join(__dirname, \"test_fixtures\") + path.sep;\n\nconst fixtures = fs.readdirSync(fixturesPath).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(fixturesPath + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * long-lines-poly - pointA x 154,135 ops/sec ±0.36% (96 runs sampled)\n * long-lines-poly - pointB x 167,645 ops/sec ±0.30% (98 runs sampled)\n * long-lines-poly - pointC x 164,454 ops/sec ±0.25% (100 runs sampled)\n * multi-polygon - outer x 16,604 ops/sec ±0.22% (97 runs sampled)\n * multi-polygon - inner1 x 16,428 ops/sec ±0.20% (99 runs sampled)\n * multi-polygon - inner2 x 16,329 ops/sec ±0.19% (100 runs sampled)\n * multi-polygon - inner3-close-to-hole x 16,409 ops/sec ±0.26% (99 runs sampled)\n * multi-polygon - in-hole-close-to-poly-in-hole x 16,589 ops/sec ±0.27% (101 runs sampled)\n * multi-polygon - in-hole-close-to-hole-border x 16,251 ops/sec ±0.26% (98 runs sampled)\n * multi-polygon - in-poly-in-hole x 16,763 ops/sec ±0.50% (98 runs sampled)\n * simple-polygon - outer x 118,008 ops/sec ±0.17% (101 runs sampled)\n * simple-polygon - inner x 121,173 ops/sec ±0.17% (99 runs sampled)\n **/\nconst suite = new Benchmark.Suite(\"turf-point-to-polygon-distance\");\n\nfor (const { name, geojson } of fixtures) {\n  // @ts-expect-error geojson\n  const fc = featureCollection(geojson?.features || []);\n  const points = fc.features.filter(\n    (f): f is Feature<Point, GeoJsonProperties> => f.geometry.type === \"Point\"\n  );\n  const polygon = fc.features.find((f) =>\n    [\"Polygon\", \"MultiPolygon\"].includes(f.geometry.type)\n  ) as Feature<Polygon | MultiPolygon, GeoJsonProperties>;\n  if (!polygon) {\n    throw new Error(`No polygon found in the feature collection in ${name}`);\n  }\n  for (const point of points) {\n    const caseName = `${name} - ${point.properties?.name || \"unnamed point\"}`;\n    suite.add(caseName, () => {\n      pointToPolygonDistance(point, polygon);\n    });\n  }\n}\n// @ts-expect-error benchmark\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-point-to-polygon-distance/index.ts",
    "content": "import { booleanPointInPolygon } from \"@turf/boolean-point-in-polygon\";\nimport {\n  Feature,\n  Point,\n  Polygon,\n  MultiPolygon,\n  LineString,\n  Position,\n} from \"geojson\";\nimport { pointToLineDistance } from \"@turf/point-to-line-distance\";\nimport { polygonToLine } from \"@turf/polygon-to-line\";\nimport { getGeom } from \"@turf/invariant\";\nimport { flattenEach } from \"@turf/meta\";\nimport { polygon, Units } from \"@turf/helpers\";\n\n/**\n * Calculates the distance from a point to the edges of a polygon or multi-polygon.\n * Returns negative values for points inside the polygon.\n * Handles polygons with holes and multi-polygons.\n * A hole is treated as the exterior of the polygon.\n *\n * @param {Feature<Point> | Point | Position} point Input point\n * @param {Feature<Polygon | MultiPolygon> | Polygon | MultiPolygon} polygonOrMultiPolygon Input polygon or multipolygon\n * @param {Object} options Optional parameters\n * @param {Units} options.units Units of the result e.g. \"kilometers\", \"miles\", \"meters\"\n * @param {\"geodesic\" | \"planar\"} options.method Method of the result\n * @returns {number} Distance in meters (negative values for points inside the polygon)\n * @throws {Error} If input geometries are invalid\n */\nexport function pointToPolygonDistance(\n  point: Feature<Point> | Point | Position,\n  polygonOrMultiPolygon:\n    | Feature<Polygon | MultiPolygon>\n    | Polygon\n    | MultiPolygon,\n  options: {\n    units?: Units;\n    method?: \"geodesic\" | \"planar\";\n  } = {}\n): number {\n  const method = options.method ?? \"geodesic\";\n  const units = options.units ?? \"kilometers\";\n  // Input validation\n  if (!point) throw new Error(\"point is required\");\n  if (!polygonOrMultiPolygon)\n    throw new Error(\"polygon or multi-polygon is required\");\n\n  const geom = getGeom(polygonOrMultiPolygon);\n\n  if (geom.type === \"MultiPolygon\") {\n    const distances = geom.coordinates.map((coords) =>\n      pointToPolygonDistance(point, polygon(coords), { method, units })\n    );\n    return (\n      Math.min(...distances.map(Math.abs)) *\n      (booleanPointInPolygon(point, polygonOrMultiPolygon) ? -1 : 1)\n    );\n  }\n\n  if (geom.coordinates.length > 1) {\n    // Has holes\n    const [exteriorDistance, ...interiorDistances] = geom.coordinates.map(\n      (coords) =>\n        pointToPolygonDistance(point, polygon([coords]), { method, units })\n    );\n    if (exteriorDistance >= 0) return exteriorDistance;\n    // point is inside the exterior polygon shape\n    const smallestInteriorDistance = Math.min(...interiorDistances);\n    // point is inside one of the holes?\n    if (smallestInteriorDistance < 0) return Math.abs(smallestInteriorDistance);\n    // find which is closer, the distance to the hole or the distance to the edge of the exterior\n    // at this stage, exteriorDistance is negative and smallestInteriorDistance is positive\n    // but smallestInteriorDistance should be returned as negative\n    // and min of positive values <=> max of negative values\n    return Math.max(smallestInteriorDistance * -1, exteriorDistance);\n  }\n  // The actual distance operation - on a normal, hole-less polygon in meters\n  const lines = polygonToLine(geom);\n  let minDistance = Infinity;\n  flattenEach(lines, (feature) => {\n    minDistance = Math.min(\n      minDistance,\n      pointToLineDistance(point, feature as Feature<LineString>, {\n        method,\n        units,\n      })\n    );\n  });\n\n  return booleanPointInPolygon(point, geom) ? -minDistance : minDistance;\n}\n\nexport default pointToPolygonDistance;\n"
  },
  {
    "path": "packages/turf-point-to-polygon-distance/package.json",
    "content": "{\n  \"name\": \"@turf/point-to-polygon-distance\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Calculates the distance from a point to the edges of a polygon or multi-polygon.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Marc <@pachacamac>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gis\",\n    \"point\",\n    \"polygon\",\n    \"distance\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/boolean-point-in-polygon\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@turf/point-to-line-distance\": \"workspace:*\",\n    \"@turf/polygon-to-line\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-point-to-polygon-distance/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { point } from \"@turf/helpers\";\nimport { polygon } from \"@turf/helpers\";\nimport { pointToPolygonDistance } from \"./index.js\";\nimport { featureCollection } from \"@turf/helpers\";\nimport {\n  Feature,\n  GeoJsonProperties,\n  MultiPolygon,\n  Point,\n  Polygon,\n} from \"geojson\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst fixturesPath = path.join(__dirname, \"test_fixtures\") + path.sep;\n\nconst fixtures = fs.readdirSync(fixturesPath).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(fixturesPath + filename),\n  };\n});\n\ntest(\"turf-point-to-polygon-distance\", (t) => {\n  for (const { name, geojson } of fixtures) {\n    // @ts-expect-error geojson\n    const fc = featureCollection(geojson?.features || []);\n    const points: Feature<Point, GeoJsonProperties>[] = fc.features.filter(\n      (f): f is Feature<Point, GeoJsonProperties> => f.geometry.type === \"Point\"\n    );\n    const polygon = fc.features.find((f) =>\n      [\"Polygon\", \"MultiPolygon\"].includes(f.geometry.type)\n    ) as Feature<Polygon | MultiPolygon, GeoJsonProperties>;\n    if (!polygon)\n      throw new Error(`No polygon found in the feature collection in ${name}`);\n    for (const point of points) {\n      const expectedDistance = point.properties?.expected_distance;\n      const units = point.properties?.units;\n      const distance = pointToPolygonDistance(point, polygon, { units });\n      t.equal(distance, expectedDistance, name, {\n        message: `${name} - ${point.properties?.name}`,\n      });\n    }\n  }\n  // Handle Errors\n  t.throws(\n    // @ts-expect-error invalid geometry\n    () => pointToPolygonDistance(polygon([]), polygon([])),\n    \"throws - invalid geometry\"\n  );\n  t.throws(\n    () => pointToPolygonDistance(point([0, 0]), polygon([])),\n    \"throws - empty coordinates\"\n  );\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-point-to-polygon-distance/test_fixtures/issue_2824.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"coordinates\": [\n          [\n            [6.7201352, 44.7041443],\n            [6.7218262, 44.70488],\n            [6.7191639, 44.7062477],\n            [6.7116651, 44.7102693],\n            [6.7054147, 44.7123746],\n            [6.6991181, 44.7155177],\n            [6.6924136, 44.7159316],\n            [6.6886644, 44.7236197],\n            [6.6865967, 44.7254307],\n            [6.6843267, 44.7272564],\n            [6.6823644, 44.7284019],\n            [6.6802779, 44.7288951],\n            [6.6771228, 44.7292937],\n            [6.6738951, 44.7291041],\n            [6.6722274, 44.7283789],\n            [6.6712129, 44.7268518],\n            [6.6710152, 44.72575],\n            [6.6704771, 44.7247647],\n            [6.6697101, 44.7246173],\n            [6.6675451, 44.7243911],\n            [6.6648333, 44.7240124],\n            [6.6625546, 44.7235753],\n            [6.6604579, 44.7230386],\n            [6.6607528, 44.7217463],\n            [6.6621385, 44.7196967],\n            [6.6618599, 44.7178313],\n            [6.6611599, 44.7163719],\n            [6.661159, 44.7141435],\n            [6.6609372, 44.7122438],\n            [6.6616719, 44.7086332],\n            [6.6593759, 44.7063014],\n            [6.6568472, 44.7055222],\n            [6.6549725, 44.7050244],\n            [6.6519767, 44.7034469],\n            [6.650726, 44.7025469],\n            [6.6470896, 44.7005855],\n            [6.6463237, 44.6993324],\n            [6.645489, 44.6985334],\n            [6.644101, 44.6954828],\n            [6.6426953, 44.6944138],\n            [6.6400245, 44.6919646],\n            [6.6383943, 44.6920108],\n            [6.6359166, 44.6919139],\n            [6.6340691, 44.6915021],\n            [6.6316682, 44.6902224],\n            [6.6308841, 44.6895525],\n            [6.6308157, 44.6894116],\n            [6.6305716, 44.6889087],\n            [6.6289355, 44.6877017],\n            [6.6274369, 44.6886524],\n            [6.6247502, 44.6883645],\n            [6.6235262, 44.6880529],\n            [6.6233442, 44.6880066],\n            [6.6233333, 44.6864261],\n            [6.6238763, 44.6851307],\n            [6.6249482, 44.6841753],\n            [6.6243154, 44.6839624],\n            [6.6239797, 44.6838139],\n            [6.6232712, 44.6836278],\n            [6.6224888, 44.683541],\n            [6.622762, 44.6832553],\n            [6.6230135, 44.6830644],\n            [6.6233111, 44.6828152],\n            [6.6232883, 44.6826952],\n            [6.6231348, 44.6826811],\n            [6.6229671, 44.6828521],\n            [6.622873, 44.6828919],\n            [6.6222376, 44.6822892],\n            [6.6222926, 44.6820301],\n            [6.622278, 44.6817669],\n            [6.6221819, 44.6815892],\n            [6.6216061, 44.6816765],\n            [6.6205716, 44.6817446],\n            [6.6204931, 44.6816816],\n            [6.6202646, 44.6817165],\n            [6.618996, 44.6815527],\n            [6.6186727, 44.6816174],\n            [6.617808, 44.6812902],\n            [6.6169702, 44.6809522],\n            [6.6167045, 44.6812356],\n            [6.6165297, 44.6811828],\n            [6.616386, 44.6813661],\n            [6.6163028, 44.6813659],\n            [6.615784, 44.6817279],\n            [6.6154202, 44.68187],\n            [6.6151096, 44.6816992],\n            [6.6145042, 44.6837951],\n            [6.6144807, 44.6838767],\n            [6.6144456, 44.6839981],\n            [6.6128891, 44.6830846],\n            [6.6126161, 44.6828244],\n            [6.6119172, 44.6823516],\n            [6.6117754, 44.6822557],\n            [6.6112904, 44.681906],\n            [6.6108928, 44.6816193],\n            [6.6105688, 44.6813822],\n            [6.6097655, 44.6807942],\n            [6.6095158, 44.6806163],\n            [6.6092966, 44.6804601],\n            [6.6091735, 44.6803724],\n            [6.6087715, 44.6800861],\n            [6.6080709, 44.6796011],\n            [6.6078198, 44.6794358],\n            [6.6070934, 44.6770659],\n            [6.6064641, 44.6744728],\n            [6.6063317, 44.6739271],\n            [6.6051895, 44.6692197],\n            [6.606132, 44.6692154],\n            [6.6069721, 44.6688551],\n            [6.6075158, 44.6683381],\n            [6.6078771, 44.6679946],\n            [6.6082991, 44.6676097],\n            [6.6087923, 44.6674308],\n            [6.6096236, 44.6675686],\n            [6.6121697, 44.6675473],\n            [6.6137979, 44.6673087],\n            [6.6154894, 44.6670303],\n            [6.6164586, 44.6667326],\n            [6.6169933, 44.6665526],\n            [6.6189705, 44.6655594],\n            [6.6193969, 44.6651426],\n            [6.6199189, 44.6648189],\n            [6.6208151, 44.6644459],\n            [6.6223502, 44.663967],\n            [6.623563, 44.6635098],\n            [6.6243509, 44.6635891],\n            [6.6255665, 44.6642604],\n            [6.626365, 44.6652963],\n            [6.6273677, 44.6661384],\n            [6.627792, 44.6662221],\n            [6.6283184, 44.666176],\n            [6.6291263, 44.6666765],\n            [6.6297567, 44.6680524],\n            [6.6303474, 44.6687599],\n            [6.6307273, 44.6688717],\n            [6.6314288, 44.6688058],\n            [6.6321288, 44.668846],\n            [6.6328644, 44.6688651],\n            [6.6336867, 44.6691793],\n            [6.6347921, 44.6699339],\n            [6.6358171, 44.6707313],\n            [6.6366208, 44.6711722],\n            [6.6378836, 44.6714103],\n            [6.6385572, 44.6715974],\n            [6.6390078, 44.6719122],\n            [6.6398985, 44.6721442],\n            [6.6409224, 44.6721657],\n            [6.6417357, 44.6719762],\n            [6.6424373, 44.6717842],\n            [6.6432437, 44.671502],\n            [6.643854, 44.6714593],\n            [6.6447307, 44.6713735],\n            [6.6457361, 44.6711436],\n            [6.6464594, 44.6710893],\n            [6.647251, 44.6711373],\n            [6.6479271, 44.6714611],\n            [6.6483132, 44.671723],\n            [6.6493438, 44.671602],\n            [6.6508991, 44.6712238],\n            [6.6519362, 44.6711899],\n            [6.6530855, 44.671205],\n            [6.6535031, 44.6710633],\n            [6.6538943, 44.6710245],\n            [6.6542838, 44.6708693],\n            [6.6548341, 44.6706838],\n            [6.6551511, 44.6705604],\n            [6.6555092, 44.6703482],\n            [6.6561778, 44.6702941],\n            [6.6561761, 44.6701778],\n            [6.6574661, 44.669058],\n            [6.6584468, 44.6685364],\n            [6.6601178, 44.6685319],\n            [6.6616818, 44.668643],\n            [6.6624167, 44.6685669],\n            [6.6639184, 44.668016],\n            [6.6645125, 44.6676883],\n            [6.6654439, 44.6674206],\n            [6.6671801, 44.6671033],\n            [6.668693, 44.6674408],\n            [6.6697886, 44.6678343],\n            [6.6706505, 44.6680055],\n            [6.6708741, 44.6680893],\n            [6.6718355, 44.6690567],\n            [6.6721034, 44.6693359],\n            [6.6728615, 44.6695792],\n            [6.6731853, 44.6697318],\n            [6.6744898, 44.6698234],\n            [6.6757504, 44.6696887],\n            [6.6766008, 44.6697051],\n            [6.6773859, 44.6697684],\n            [6.6774621, 44.6697745],\n            [6.6781499, 44.669705],\n            [6.6787062, 44.6697452],\n            [6.6795024, 44.6699594],\n            [6.6798459, 44.6711133],\n            [6.6806482, 44.6713901],\n            [6.6830772, 44.6735863],\n            [6.6839687, 44.6741003],\n            [6.6844082, 44.6745136],\n            [6.6853363, 44.6749392],\n            [6.6857881, 44.675132],\n            [6.6864913, 44.6751362],\n            [6.6877863, 44.6749952],\n            [6.6882504, 44.6751172],\n            [6.6894687, 44.6754716],\n            [6.690609, 44.6757458],\n            [6.6906713, 44.6761285],\n            [6.6907648, 44.6766117],\n            [6.6912502, 44.6768864],\n            [6.6919863, 44.6771564],\n            [6.6921529, 44.6772978],\n            [6.6925564, 44.6773843],\n            [6.6937244, 44.6781223],\n            [6.6940946, 44.678377],\n            [6.6943628, 44.6785222],\n            [6.6947232, 44.6789387],\n            [6.6952389, 44.6792132],\n            [6.6953227, 44.6794447],\n            [6.6952416, 44.6798665],\n            [6.694924, 44.6798488],\n            [6.6950743, 44.6803599],\n            [6.6953437, 44.6807922],\n            [6.6959961, 44.6812814],\n            [6.6963714, 44.681683],\n            [6.6965451, 44.6815546],\n            [6.6968805, 44.6817558],\n            [6.6970397, 44.6820497],\n            [6.6969418, 44.6825279],\n            [6.6973154, 44.6836609],\n            [6.6979065, 44.6849286],\n            [6.698494, 44.6868272],\n            [6.6989435, 44.6877061],\n            [6.6996091, 44.6884601],\n            [6.7005576, 44.6890232],\n            [6.7010984, 44.6895898],\n            [6.7013086, 44.6905224],\n            [6.7019011, 44.6913164],\n            [6.7026789, 44.6915824],\n            [6.7032189, 44.6919745],\n            [6.7039535, 44.6923519],\n            [6.7048923, 44.6929369],\n            [6.7057737, 44.6937512],\n            [6.706104, 44.6942449],\n            [6.7061854, 44.6948007],\n            [6.7064064, 44.6953388],\n            [6.706861, 44.6958083],\n            [6.7081584, 44.6968381],\n            [6.709011, 44.6977176],\n            [6.7097763, 44.6983382],\n            [6.7106549, 44.6987455],\n            [6.7110617, 44.6988474],\n            [6.7114769, 44.6990587],\n            [6.7117464, 44.6992489],\n            [6.7126701, 44.6997717],\n            [6.7131409, 44.6999154],\n            [6.713768, 44.7001967],\n            [6.7146096, 44.7005335],\n            [6.7149688, 44.7006773],\n            [6.7159712, 44.7010161],\n            [6.7162554, 44.7012513],\n            [6.7169346, 44.7020203],\n            [6.7179342, 44.7024274],\n            [6.7191562, 44.7030081],\n            [6.7195923, 44.7039266],\n            [6.7198318, 44.7041078],\n            [6.7201352, 44.7041443]\n          ],\n          [\n            [6.6253623, 44.6732628],\n            [6.6260236, 44.673399],\n            [6.6260472, 44.6733854],\n            [6.6261149, 44.6732555],\n            [6.6261577, 44.6732202],\n            [6.6269099, 44.6731737],\n            [6.6274934, 44.673093],\n            [6.6288188, 44.6730136],\n            [6.6296452, 44.6729791],\n            [6.6297069, 44.6726282],\n            [6.6297517, 44.6725502],\n            [6.6295174, 44.672265],\n            [6.6295133, 44.6722316],\n            [6.6297246, 44.6721012],\n            [6.6297472, 44.6720943],\n            [6.6297753, 44.6720858],\n            [6.6300287, 44.672189],\n            [6.6308155, 44.671016],\n            [6.6307993, 44.6709831],\n            [6.6293184, 44.6697718],\n            [6.6284408, 44.6688561],\n            [6.6274233, 44.6677162],\n            [6.6267827, 44.6666321],\n            [6.6267111, 44.6665404],\n            [6.6260287, 44.6659445],\n            [6.6252257, 44.6645693],\n            [6.6251873, 44.6645297],\n            [6.6246655, 44.6644825],\n            [6.6246217, 44.6644681],\n            [6.6240945, 44.6639241],\n            [6.6240567, 44.6637498],\n            [6.6239937, 44.6637421],\n            [6.6238152, 44.6637707],\n            [6.6234071, 44.6639008],\n            [6.6233955, 44.6639637],\n            [6.6230344, 44.6641615],\n            [6.6229813, 44.6642104],\n            [6.6229585, 44.664378],\n            [6.6228043, 44.6644639],\n            [6.6227655, 44.6645074],\n            [6.6227519, 44.6646169],\n            [6.6225797, 44.6647925],\n            [6.622474, 44.6648585],\n            [6.6220784, 44.6650032],\n            [6.6220135, 44.6650108],\n            [6.6214189, 44.6649678],\n            [6.6213877, 44.6650795],\n            [6.6212433, 44.665262],\n            [6.621106, 44.6653685],\n            [6.6209741, 44.6654162],\n            [6.6208563, 44.6655239],\n            [6.6207314, 44.6656091],\n            [6.6204794, 44.6657327],\n            [6.6203592, 44.6658436],\n            [6.6201307, 44.666014],\n            [6.6200201, 44.66612],\n            [6.6199465, 44.6662545],\n            [6.6198644, 44.6663289],\n            [6.6197641, 44.6665039],\n            [6.6195744, 44.6666887],\n            [6.6193951, 44.6670555],\n            [6.6194134, 44.6671718],\n            [6.6193744, 44.6676976],\n            [6.6193944, 44.6677607],\n            [6.6194066, 44.6677914],\n            [6.6194679, 44.6678334],\n            [6.6195776, 44.6680557],\n            [6.6195977, 44.668204],\n            [6.6195881, 44.6683936],\n            [6.6195488, 44.6685536],\n            [6.6195343, 44.6686018],\n            [6.6194312, 44.6688112],\n            [6.6194082, 44.6689389],\n            [6.6193492, 44.6692777],\n            [6.6193756, 44.6693611],\n            [6.6193834, 44.6694026],\n            [6.6194616, 44.6695466],\n            [6.6196804, 44.669748],\n            [6.6197611, 44.669844],\n            [6.6198704, 44.6699227],\n            [6.6202397, 44.6703753],\n            [6.6203975, 44.670536],\n            [6.6205795, 44.6706405],\n            [6.6206905, 44.670729],\n            [6.6208992, 44.6708146],\n            [6.6212027, 44.6708772],\n            [6.6212456, 44.6709333],\n            [6.621426, 44.6709574],\n            [6.6215171, 44.6710396],\n            [6.6216798, 44.6711204],\n            [6.6219312, 44.6712048],\n            [6.6220091, 44.6712543],\n            [6.6220492, 44.6713112],\n            [6.6222012, 44.6714395],\n            [6.6224099, 44.6715655],\n            [6.6228255, 44.6717766],\n            [6.6229476, 44.6719071],\n            [6.6231388, 44.6720335],\n            [6.6232283, 44.6721337],\n            [6.6236224, 44.672468],\n            [6.6237526, 44.6726975],\n            [6.6240665, 44.6730707],\n            [6.6243804, 44.6735244],\n            [6.6244201, 44.6735506],\n            [6.6245053, 44.6735594],\n            [6.6252836, 44.673424],\n            [6.6253458, 44.6733988],\n            [6.6253623, 44.6732628]\n          ]\n        ],\n        \"type\": \"Polygon\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"point1\",\n        \"expected_distance\": -282.47132227384475,\n        \"units\": \"meters\"\n      },\n      \"geometry\": {\n        \"coordinates\": [6.621838357140748, 44.67906064959206],\n        \"type\": \"Point\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"point2\",\n        \"expected_distance\": 63.3653117257768,\n        \"units\": \"meters\"\n      },\n      \"geometry\": {\n        \"coordinates\": [6.621838357140748, 44.665643606064959206],\n        \"type\": \"Point\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-polygon-distance/test_fixtures/long-lines-poly.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"coordinates\": [\n          [\n            [3.3657268318160334, 25.76155695292222],\n            [46.65471569612228, -18.814141655384176],\n            [28.889827996699864, 25.16583746201097],\n            [3.3657268318160334, 25.76155695292222]\n          ]\n        ],\n        \"type\": \"Polygon\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"pointA\",\n        \"expected_distance\": 720.8195022016121,\n        \"units\": \"miles\"\n      },\n      \"geometry\": {\n        \"coordinates\": [-3.848091969075085, 17.75559032718766],\n        \"type\": \"Point\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"pointB\",\n        \"expected_distance\": 174.26575299684424,\n        \"units\": \"miles\"\n      },\n      \"geometry\": {\n        \"coordinates\": [20.161990331199632, 5.93692849667535],\n        \"type\": \"Point\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"pointC\",\n        \"expected_distance\": 1422.4933025064167,\n        \"units\": \"miles\"\n      },\n      \"geometry\": {\n        \"coordinates\": [15.761757321831652, -16.46137822158427],\n        \"type\": \"Point\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-polygon-distance/test_fixtures/multi-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"outer\",\n        \"expected_distance\": 22.10311139186459,\n        \"units\": \"meters\"\n      },\n      \"geometry\": {\n        \"coordinates\": [13.403019116525968, 52.4749917692433],\n        \"type\": \"Point\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"inner1\",\n        \"expected_distance\": -0.18712846397492156,\n        \"units\": \"kilometers\"\n      },\n      \"geometry\": {\n        \"coordinates\": [13.399915241855979, 52.472957280225245],\n        \"type\": \"Point\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"inner2\",\n        \"expected_distance\": -0.2539006541753242,\n        \"units\": \"kilometers\"\n      },\n      \"geometry\": {\n        \"coordinates\": [13.396946319940724, 52.47723165382479],\n        \"type\": \"Point\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"inner3-close-to-hole\",\n        \"expected_distance\": -16.135385380792886,\n        \"units\": \"meters\"\n      },\n      \"geometry\": {\n        \"coordinates\": [13.403283336358811, 52.47790995176382],\n        \"type\": \"Point\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"in-hole-close-to-poly-in-hole\",\n        \"expected_distance\": 16.360780198687877,\n        \"units\": \"meters\"\n      },\n      \"geometry\": {\n        \"coordinates\": [13.403043879952975, 52.47832947539942],\n        \"type\": \"Point\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"in-hole-close-to-hole-border\",\n        \"expected_distance\": 6.627508849855802,\n        \"units\": \"meters\"\n      },\n      \"geometry\": {\n        \"coordinates\": [13.40253783003243, 52.47852394247576],\n        \"type\": \"Point\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"in-poly-in-hole\",\n        \"expected_distance\": -5.519191580154778,\n        \"units\": \"meters\"\n      },\n      \"geometry\": {\n        \"coordinates\": [13.403378284487616, 52.47824096630322],\n        \"type\": \"Point\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"coordinates\": [\n          [\n            [\n              [13.391148572399459, 52.47422924057807],\n              [13.39059601479363, 52.473247558678],\n              [13.392253687611202, 52.47097558229518],\n              [13.416658315199754, 52.47162072331574],\n              [13.415415060587122, 52.475379182951684],\n              [13.391148572399459, 52.47422924057807]\n            ]\n          ],\n          [\n            [\n              [13.391747176472563, 52.47470604959969],\n              [13.415276921185495, 52.475771839318895],\n              [13.415230874718247, 52.476444956368084],\n              [13.410948553273812, 52.477258292397494],\n              [13.406574138894086, 52.479333633450835],\n              [13.3941415927641, 52.47961407743651],\n              [13.392161594676793, 52.47734242974954],\n              [13.392576012880966, 52.475743792551725],\n              [13.391747176472563, 52.47470604959969]\n            ],\n            [\n              [13.402432150152691, 52.478581408896446],\n              [13.402365252169176, 52.4782640275981],\n              [13.402520173815134, 52.47815680366921],\n              [13.402967334020701, 52.478034568071365],\n              [13.403537727352841, 52.47807316882296],\n              [13.403643355748358, 52.47818468191565],\n              [13.403882780109853, 52.47820827118747],\n              [13.403777151715332, 52.478392695967955],\n              [13.403474350316174, 52.47848061913734],\n              [13.403372242867533, 52.478600709036584],\n              [13.402432150152691, 52.478581408896446]\n            ]\n          ],\n          [\n            [\n              [13.403245369174186, 52.478248303401074],\n              [13.403353680211723, 52.478162544659085],\n              [13.403550445261601, 52.47824170658075],\n              [13.40335909576305, 52.47830327686577],\n              [13.403245369174186, 52.478248303401074]\n            ]\n          ]\n        ],\n        \"type\": \"MultiPolygon\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-polygon-distance/test_fixtures/simple-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"outer\",\n        \"expected_distance\": 0.0020673867731590976,\n        \"units\": \"kilometers\"\n      },\n      \"geometry\": {\n        \"coordinates\": [13.40811681056141, 52.52027359015821],\n        \"type\": \"Point\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"inner\",\n        \"expected_distance\": -7.980019325365333,\n        \"units\": \"meters\"\n      },\n      \"geometry\": {\n        \"coordinates\": [13.408017009112001, 52.52035996357455],\n        \"type\": \"Point\"\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"coordinates\": [\n          [\n            [13.407833971095158, 52.52015934998451],\n            [13.40823074294758, 52.52035304587994],\n            [13.40819208895536, 52.52053359735595],\n            [13.407789632692584, 52.520343361105404],\n            [13.407833971095158, 52.52015934998451]\n          ]\n        ],\n        \"type\": \"Polygon\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-point-to-polygon-distance/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-points-within-polygon/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-points-within-polygon/README.md",
    "content": "# @turf/points-within-polygon\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## pointsWithinPolygon\n\nFinds [Points][1] or [MultiPoint][2] coordinate positions that fall within [(Multi)Polygon(s)][3].\n\n### Parameters\n\n*   `points` **([Feature][4] | [FeatureCollection][5]<([Point][1] | [MultiPoint][2])>)** Point(s) or MultiPoint(s) as input search\n*   `polygons` **([FeatureCollection][5] | [Geometry][6] | [Feature][4]<([Polygon][3] | [MultiPolygon][7])>)** (Multi)Polygon(s) to check if points are within\n\n### Examples\n\n```javascript\nvar points = turf.points([\n    [-46.6318, -23.5523],\n    [-46.6246, -23.5325],\n    [-46.6062, -23.5513],\n    [-46.663, -23.554],\n    [-46.643, -23.557]\n]);\n\nvar searchWithin = turf.polygon([[\n    [-46.653,-23.543],\n    [-46.634,-23.5346],\n    [-46.613,-23.543],\n    [-46.614,-23.559],\n    [-46.631,-23.567],\n    [-46.653,-23.560],\n    [-46.653,-23.543]\n]]);\n\nvar ptsWithin = turf.pointsWithinPolygon(points, searchWithin);\n\n//addToMap\nvar addToMap = [points, searchWithin, ptsWithin]\nturf.featureEach(ptsWithin, function (currentFeature) {\n  currentFeature.properties['marker-size'] = 'large';\n  currentFeature.properties['marker-color'] = '#000';\n});\n```\n\nReturns **[FeatureCollection][5]<([Point][1] | [MultiPoint][2])>** Point(s) or MultiPoint(s) with positions that land within at least one polygon.  The geometry type will match what was passsed in\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.3\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/points-within-polygon\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-points-within-polygon/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { featureCollection, point, polygon } from \"@turf/helpers\";\nimport { pointsWithinPolygon } from \"./index.js\";\n\nvar poly1 = polygon([\n  [\n    [0, 0],\n    [10, 0],\n    [10, 10],\n    [0, 0],\n  ],\n]);\nvar poly2 = polygon([\n  [\n    [10, 0],\n    [20, 10],\n    [20, 20],\n    [10, 0],\n  ],\n]);\nvar polyFC = featureCollection([poly1, poly2]);\nvar pt1 = point([1, 1], { population: 500 });\nvar pt2 = point([1, 3], { population: 400 });\nvar pt3 = point([14, 2], { population: 600 });\nvar pt4 = point([13, 1], { population: 500 });\nvar pt5 = point([19, 7], { population: 200 });\nvar pt6 = point([100, 7], { population: 200 });\nvar ptFC = featureCollection([pt1, pt2, pt3, pt4, pt5, pt6]);\n\nvar suite = new Benchmark.Suite(\"turf-points-within-polygon\");\nsuite\n  .add(\"turf-points-within-polygon\", () => pointsWithinPolygon(ptFC, polyFC))\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-points-within-polygon/index.ts",
    "content": "import type {\n  Feature,\n  FeatureCollection,\n  Polygon,\n  MultiPolygon,\n  MultiPoint,\n  Point,\n  GeoJsonProperties,\n  Position,\n} from \"geojson\";\nimport { booleanPointInPolygon as pointInPolygon } from \"@turf/boolean-point-in-polygon\";\nimport { featureCollection, multiPoint } from \"@turf/helpers\";\nimport { geomEach, featureEach, coordEach } from \"@turf/meta\";\n\n/**\n * Finds {@link Points} or {@link MultiPoint} coordinate positions that fall within {@link (Multi)Polygon(s)}.\n *\n * @function\n * @param {Feature|FeatureCollection<Point|MultiPoint>} points Point(s) or MultiPoint(s) as input search\n * @param {FeatureCollection|Geometry|Feature<Polygon|MultiPolygon>} polygons (Multi)Polygon(s) to check if points are within\n * @returns {FeatureCollection<Point|MultiPoint>} Point(s) or MultiPoint(s) with positions that land within at least one polygon.  The geometry type will match what was passsed in\n * @example\n * var points = turf.points([\n *     [-46.6318, -23.5523],\n *     [-46.6246, -23.5325],\n *     [-46.6062, -23.5513],\n *     [-46.663, -23.554],\n *     [-46.643, -23.557]\n * ]);\n *\n * var searchWithin = turf.polygon([[\n *     [-46.653,-23.543],\n *     [-46.634,-23.5346],\n *     [-46.613,-23.543],\n *     [-46.614,-23.559],\n *     [-46.631,-23.567],\n *     [-46.653,-23.560],\n *     [-46.653,-23.543]\n * ]]);\n *\n * var ptsWithin = turf.pointsWithinPolygon(points, searchWithin);\n *\n * //addToMap\n * var addToMap = [points, searchWithin, ptsWithin]\n * turf.featureEach(ptsWithin, function (currentFeature) {\n *   currentFeature.properties['marker-size'] = 'large';\n *   currentFeature.properties['marker-color'] = '#000';\n * });\n */\nfunction pointsWithinPolygon<\n  G extends Polygon | MultiPolygon,\n  P extends GeoJsonProperties,\n>(\n  points:\n    | Feature<Point | MultiPoint, P>\n    | FeatureCollection<Point | MultiPoint, P>,\n  polygons: Feature<G> | FeatureCollection<G> | G\n): FeatureCollection<Point | MultiPoint, P> {\n  const results: Feature<Point | MultiPoint, P>[] = [];\n  featureEach(points, function (point) {\n    let contained = false;\n    if (point.geometry.type === \"Point\") {\n      geomEach(polygons, function (polygon) {\n        if (pointInPolygon(point as Feature<Point, P>, polygon)) {\n          contained = true;\n        }\n      });\n      if (contained) {\n        results.push(point);\n      }\n    } else if (point.geometry.type === \"MultiPoint\") {\n      var pointsWithin: Position[] = [];\n      geomEach(polygons, function (polygon) {\n        coordEach(point as Feature<MultiPoint>, function (pointCoord) {\n          if (pointInPolygon(pointCoord, polygon)) {\n            contained = true;\n            pointsWithin.push(pointCoord);\n          }\n        });\n      });\n      if (contained) {\n        results.push(\n          multiPoint(pointsWithin, point.properties) as Feature<MultiPoint, P>\n        );\n      }\n    } else {\n      throw new Error(\"Input geometry must be a Point or MultiPoint\");\n    }\n  });\n  return featureCollection(results);\n}\n\nexport { pointsWithinPolygon };\nexport default pointsWithinPolygon;\n"
  },
  {
    "path": "packages/turf-points-within-polygon/package.json",
    "content": "{\n  \"name\": \"@turf/points-within-polygon\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Finds points that fall within polygon(s).\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"geojson\",\n    \"within\",\n    \"point\",\n    \"polygon\",\n    \"featurecollection\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/boolean-point-in-polygon\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-points-within-polygon/test.ts",
    "content": "import test from \"tape\";\nimport { multiPoint, point, points } from \"@turf/helpers\";\nimport { polygon } from \"@turf/helpers\";\nimport { featureCollection } from \"@turf/helpers\";\nimport { pointsWithinPolygon } from \"./index.js\";\n\ntest(\"turf-points-within-polygon -- point\", (t) => {\n  t.plan(4);\n\n  // test with a single point\n  var poly = polygon([\n    [\n      [0, 0],\n      [0, 100],\n      [100, 100],\n      [100, 0],\n      [0, 0],\n    ],\n  ]);\n  var pt = point([50, 50]);\n  var polyFC = featureCollection([poly]);\n  var ptFC = featureCollection([pt]);\n\n  var counted = pointsWithinPolygon(ptFC, polyFC);\n\n  t.ok(counted, \"returns a featurecollection\");\n  t.equal(counted.features.length, 1, \"1 point in 1 polygon\");\n\n  // test with multiple points and multiple polygons\n  var poly1 = polygon([\n    [\n      [0, 0],\n      [10, 0],\n      [10, 10],\n      [0, 10],\n      [0, 0],\n    ],\n  ]);\n  var poly2 = polygon([\n    [\n      [10, 0],\n      [20, 10],\n      [20, 20],\n      [20, 0],\n      [10, 0],\n    ],\n  ]);\n  var polyFC = featureCollection([poly1, poly2]);\n  var pt1 = point([1, 1], { population: 500 });\n  var pt2 = point([1, 3], { population: 400 });\n  var pt3 = point([14, 2], { population: 600 });\n  var pt4 = point([13, 1], { population: 500 });\n  var pt5 = point([19, 7], { population: 200 });\n  var pt6 = point([100, 7], { population: 200 });\n  var ptFC = featureCollection([pt1, pt2, pt3, pt4, pt5, pt6]);\n\n  var counted = pointsWithinPolygon(ptFC, polyFC);\n  t.ok(counted, \"returns a featurecollection\");\n  t.equal(counted.features.length, 5, \"multiple points in multiple polygons\");\n});\n\ntest(\"turf-points-within-polygon -- multipoint\", (t) => {\n  t.plan(12);\n\n  var poly1 = polygon([\n    [\n      [0, 0],\n      [0, 100],\n      [100, 100],\n      [100, 0],\n      [0, 0],\n    ],\n  ]);\n\n  var mpt1 = multiPoint([[50, 50]]); // inside poly1\n  var mpt2 = multiPoint([[150, 150]]); // outside poly1\n  var mpt3 = multiPoint([\n    [50, 50],\n    [150, 150],\n  ]); // inside and outside poly1\n  var mpt1FC = featureCollection([mpt1]);\n  var polyFC = featureCollection([poly1]);\n\n  // multipoint within\n  var mpWithin = pointsWithinPolygon(mpt1, polyFC);\n  t.ok(\n    mpWithin && mpWithin.type === \"FeatureCollection\",\n    \"returns a featurecollection\"\n  );\n  t.equal(mpWithin.features.length, 1, \"1 multipoint in 1 polygon\");\n  t.equal(\n    mpWithin.features[0].geometry.type,\n    \"MultiPoint\",\n    \"1 multipoint with correct type\"\n  );\n\n  // multipoint fc within\n  var fcWithin = pointsWithinPolygon(mpt1FC, polyFC);\n  t.ok(\n    fcWithin && fcWithin.type === \"FeatureCollection\",\n    \"returns a featurecollection\"\n  );\n  t.equal(fcWithin.features.length, 1, \"1 multipoint in 1 polygon\");\n\n  // multipoint not within\n  var mpNotWithin = pointsWithinPolygon(mpt2, polyFC);\n  t.ok(\n    mpNotWithin && mpNotWithin.type === \"FeatureCollection\",\n    \"returns an empty featurecollection\"\n  );\n  t.equal(mpNotWithin.features.length, 0, \"0 multipoint in 1 polygon\");\n\n  // multipoint with point coords both within and not within\n  var mpPartWithin = pointsWithinPolygon(mpt3, polyFC);\n  t.ok(mpPartWithin, \"returns a featurecollection\");\n  var partCoords = mpPartWithin.features[0].geometry.coordinates;\n  t.equal(\n    partCoords.length,\n    1,\n    \"multipoint result should have 1 remaining coord that was within polygon\"\n  );\n  t.equal(\n    partCoords[0][0] === mpt3.geometry.coordinates[0][0] &&\n      partCoords[0][1] === mpt3.geometry.coordinates[0][1],\n    true,\n    \"remaining coord should have expected values\"\n  );\n\n  // multiple multipoints and multiple polygons\n\n  var poly2 = polygon([\n    [\n      [10, 0],\n      [20, 10],\n      [20, 20],\n      [20, 0],\n      [10, 0],\n    ],\n  ]);\n  var mptFC = featureCollection([mpt1, mpt2, mpt3]);\n  var poly2FC = featureCollection([poly1, poly2]);\n\n  var fcMultiWithin = pointsWithinPolygon(mptFC, poly2FC);\n  t.ok(fcMultiWithin, \"returns a featurecollection\");\n  t.equal(\n    fcMultiWithin.features.length,\n    2,\n    \"multiple points in multiple polygons\"\n  );\n});\n\ntest(\"turf-points-within-polygon -- point and multipoint\", (t) => {\n  t.plan(4);\n\n  var poly = polygon([\n    [\n      [0, 0],\n      [0, 100],\n      [100, 100],\n      [100, 0],\n      [0, 0],\n    ],\n  ]);\n  var polyFC = featureCollection([poly]);\n\n  var pt = point([50, 50]);\n  var mpt1 = multiPoint([[50, 50]]); // inside poly1\n  var mpt2 = multiPoint([[150, 150]]); // outside poly1\n  var mixedFC = featureCollection([pt, mpt1, mpt2]);\n\n  var counted = pointsWithinPolygon(mixedFC, polyFC);\n\n  t.ok(counted, \"returns a featurecollection\");\n  t.equal(counted.features.length, 2, \"1 point and 1 multipoint in 1 polygon\");\n  t.equal(counted.features[0].geometry.type, \"Point\");\n  t.equal(counted.features[1].geometry.type, \"MultiPoint\");\n});\n\ntest(\"turf-points-within-polygon -- support extra point geometry\", (t) => {\n  const pts = points([\n    [-46.6318, -23.5523],\n    [-46.6246, -23.5325],\n    [-46.6062, -23.5513],\n    [-46.663, -23.554],\n    [-46.643, -23.557],\n  ]);\n  const searchWithin = polygon([\n    [\n      [-46.653, -23.543],\n      [-46.634, -23.5346],\n      [-46.613, -23.543],\n      [-46.614, -23.559],\n      [-46.631, -23.567],\n      [-46.653, -23.56],\n      [-46.653, -23.543],\n    ],\n  ]);\n  t.assert(pointsWithinPolygon(pts, searchWithin));\n  t.assert(pointsWithinPolygon(pts.features[0], searchWithin));\n  t.assert(pointsWithinPolygon(pts, searchWithin.geometry));\n  t.end();\n});\n\ntest(\"turf-points-within-polygon -- no duplicates when multiple geometry contain a point\", (t) => {\n  const poly1 = polygon([\n    [\n      [0, 0],\n      [10, 0],\n      [10, 10],\n      [0, 10],\n      [0, 0],\n    ],\n  ]);\n  const poly2 = polygon([\n    [\n      [0, 0],\n      [10, 0],\n      [10, 10],\n      [0, 10],\n      [0, 0],\n    ],\n  ]);\n  const polyFC = featureCollection([poly1, poly2]);\n  const pt1 = point([5, 5]);\n  const ptFC = featureCollection([pt1]);\n\n  const counted = pointsWithinPolygon(ptFC, polyFC);\n  t.equal(\n    counted.features.length,\n    1,\n    \"although point is contained by two polygons it is only counted once\"\n  );\n  t.end();\n});\n\ntest(\"turf-points-within-polygon -- multipoint with properties\", (t) => {\n  t.plan(5);\n\n  var poly1 = polygon([\n    [\n      [0, 0],\n      [0, 100],\n      [100, 100],\n      [100, 0],\n      [0, 0],\n    ],\n  ]);\n\n  var mpt1 = multiPoint(\n    [\n      [50, 50],\n      [150, 150],\n    ],\n    { prop: \"yes\" }\n  ); // inside and outside poly1\n  var polyFC = featureCollection([poly1]);\n\n  // multipoint within\n  var mpWithin = pointsWithinPolygon(mpt1, polyFC);\n  t.ok(mpWithin, \"returns a featurecollection\");\n  t.equal(mpWithin.features.length, 1, \"1 multipoint in 1 polygon\");\n  t.equal(\n    mpWithin.features[0].properties.constructor,\n    Object,\n    \"properties found\"\n  );\n  t.ok(\"prop\" in mpWithin.features[0].properties, \"1 property key found\");\n  t.equal(\n    mpWithin.features[0].properties.prop,\n    \"yes\",\n    \"1 property value found\"\n  );\n});\n"
  },
  {
    "path": "packages/turf-points-within-polygon/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-points-within-polygon/types.ts",
    "content": "import { Point, MultiPoint } from \"geojson\";\nimport { pointsWithinPolygon } from \"./index.js\";\nimport { points, polygon, multiPoint, featureCollection } from \"@turf/helpers\";\n\nconst pts = points([\n  [-46.6318, -23.5523],\n  [-46.6246, -23.5325],\n  [-46.6062, -23.5513],\n  [-46.663, -23.554],\n  [-46.643, -23.557],\n]);\nconst mpt1 = multiPoint(\n  [\n    [50, 50],\n    [100, 100],\n  ],\n  {}\n);\nconst mpt2 = multiPoint(\n  [\n    [75, 75],\n    [150, 150],\n  ],\n  {}\n);\nconst mpts = featureCollection([mpt1, mpt2]);\n\nconst searchWithin = polygon([\n  [\n    [-46.653, -23.543],\n    [-46.634, -23.5346],\n    [-46.613, -23.543],\n    [-46.614, -23.559],\n    [-46.631, -23.567],\n    [-46.653, -23.56],\n    [-46.653, -23.543],\n  ],\n]);\nconst ptsWithin = pointsWithinPolygon(pts, searchWithin);\nconst mptsWithin = pointsWithinPolygon(mpts, searchWithin);\n\n// Accepts a mixture of Point and MultiPoint\nconst mix = featureCollection<Point | MultiPoint>([...pts.features, mpt1]);\nconst mixWithin = pointsWithinPolygon(mix, searchWithin);\n"
  },
  {
    "path": "packages/turf-polygon-smooth/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-polygon-smooth/README.md",
    "content": "# @turf/polygon-smooth\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## polygonSmooth\n\nSmooths a [Polygon][1] or [MultiPolygon][2]. Based on [Chaikin's algorithm][3].\nWarning: may create degenerate polygons.\n\n### Parameters\n\n*   `inputPolys` **([FeatureCollection][4]<([Polygon][1] | [MultiPolygon][2])> | [Feature][5]<([Polygon][1] | [MultiPolygon][2])> | [Polygon][1] | [MultiPolygon][2])** (Multi)Polygon(s) to smooth\n*   `options` **[Object][6]** Optional parameters (optional, default `{}`)\n\n    *   `options.iterations` **[string][7]** The number of times to smooth the polygon. A higher value means a smoother polygon. (optional, default `1`)\n\n### Examples\n\n```javascript\nvar polygon = turf.polygon([[[11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0]]]);\n\nvar smoothed = turf.polygonSmooth(polygon, {iterations: 3})\n\n//addToMap\nvar addToMap = [smoothed, polygon];\n```\n\nReturns **[FeatureCollection][4]<([Polygon][1] | [MultiPolygon][2])>** FeatureCollection containing the smoothed polygon/multipoylgons\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[3]: https://www.cs.unc.edu/~dm/UNC/COMP258/LECTURES/Chaikins-Algorithm.pdf\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/polygon-smooth\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-polygon-smooth/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { polygonSmooth } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nlet fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n * close x 88,608 ops/sec ±6.03% (69 runs sampled)\n * geometry x 106,576 ops/sec ±6.95% (68 runs sampled)\n * multipolygon x 88,405 ops/sec ±5.40% (72 runs sampled)\n * polygon x 132,584 ops/sec ±6.75% (79 runs sampled)\n * withHole x 122,725 ops/sec ±2.69% (86 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-polygon-smooth\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => polygonSmooth(geojson, { iterations: 3 }));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-polygon-smooth/index.ts",
    "content": "import type {\n  Feature,\n  FeatureCollection,\n  Polygon,\n  Position,\n  MultiPolygon,\n} from \"geojson\";\nimport { featureCollection, multiPolygon, polygon } from \"@turf/helpers\";\nimport { coordEach, geomEach } from \"@turf/meta\";\n\n/**\n * Smooths a {@link Polygon} or {@link MultiPolygon}. Based on [Chaikin's algorithm](https://www.cs.unc.edu/~dm/UNC/COMP258/LECTURES/Chaikins-Algorithm.pdf).\n * Warning: may create degenerate polygons.\n *\n * @function\n * @param {FeatureCollection<Polygon|MultiPolygon>|Feature<Polygon|MultiPolygon>|Polygon|MultiPolygon} inputPolys (Multi)Polygon(s) to smooth\n * @param {Object} [options={}] Optional parameters\n * @param {string} [options.iterations=1] The number of times to smooth the polygon. A higher value means a smoother polygon.\n * @returns {FeatureCollection<Polygon|MultiPolygon>} FeatureCollection containing the smoothed polygon/multipoylgons\n * @example\n * var polygon = turf.polygon([[[11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0]]]);\n *\n * var smoothed = turf.polygonSmooth(polygon, {iterations: 3})\n *\n * //addToMap\n * var addToMap = [smoothed, polygon];\n */\nfunction polygonSmooth(\n  inputPolys:\n    | FeatureCollection<Polygon | MultiPolygon>\n    | Feature<Polygon | MultiPolygon>\n    | Polygon\n    | MultiPolygon,\n  options?: {\n    iterations?: number;\n  }\n): FeatureCollection<Polygon | MultiPolygon> {\n  // Optional parameters\n  options = options || {};\n  options.iterations = options.iterations || 1;\n\n  const { iterations } = options;\n\n  const outPolys: Feature<Polygon | MultiPolygon>[] = [];\n  if (!inputPolys) throw new Error(\"inputPolys is required\");\n\n  geomEach(inputPolys, function (geom, geomIndex, properties) {\n    if (geom.type === \"Polygon\") {\n      let outCoords: Position[][] = [[]];\n      for (let i = 0; i < iterations; i++) {\n        let tempOutput: Position[][] = [];\n        let poly = geom;\n        if (i > 0) {\n          poly = polygon(outCoords).geometry;\n        }\n        processPolygon(poly, tempOutput);\n        outCoords = tempOutput.slice(0);\n      }\n      outPolys.push(polygon(outCoords, properties));\n    } else if (geom.type === \"MultiPolygon\") {\n      let outCoords: Position[][][] = [[[]]];\n      for (let y = 0; y < iterations; y++) {\n        let tempOutput: Position[][][] = [];\n        let poly = geom;\n        if (y > 0) {\n          poly = multiPolygon(outCoords).geometry;\n        }\n        processMultiPolygon(poly, tempOutput);\n        outCoords = tempOutput.slice(0);\n      }\n      outPolys.push(multiPolygon(outCoords, properties));\n    } else {\n      throw new Error(\"geometry is invalid, must be Polygon or MultiPolygon\");\n    }\n  });\n\n  return featureCollection(outPolys);\n}\n\n/**\n * @param {poly} poly to process\n * @param {poly} tempOutput to place the results in\n * @private\n */\nfunction processPolygon(poly: Polygon, tempOutput: Position[][]) {\n  var previousCoord: Position;\n  var previousGeometryIndex: number;\n\n  coordEach(\n    poly,\n    function (\n      currentCoord,\n      coordIndex,\n      featureIndex,\n      multiFeatureIndex,\n      geometryIndex\n    ) {\n      if (previousGeometryIndex !== geometryIndex) {\n        tempOutput.push([]);\n      } else {\n        var p0x = previousCoord[0];\n        var p0y = previousCoord[1];\n        var p1x = currentCoord[0];\n        var p1y = currentCoord[1];\n        tempOutput[geometryIndex].push([\n          0.75 * p0x + 0.25 * p1x,\n          0.75 * p0y + 0.25 * p1y,\n        ]);\n        tempOutput[geometryIndex].push([\n          0.25 * p0x + 0.75 * p1x,\n          0.25 * p0y + 0.75 * p1y,\n        ]);\n      }\n      previousCoord = currentCoord;\n      previousGeometryIndex = geometryIndex;\n    },\n    false\n  );\n  tempOutput.forEach(function (ring) {\n    ring.push(ring[0]);\n  });\n}\n\n/**\n * @param {poly} poly to process\n * @param {poly} tempOutput to place the results in\n * @private\n */\nfunction processMultiPolygon(poly: MultiPolygon, tempOutput: Position[][][]) {\n  let previousCoord: Position;\n  let previousMultiFeatureIndex: number;\n  let previousGeometryIndex: number;\n\n  coordEach(\n    poly,\n    function (\n      currentCoord,\n      coordIndex,\n      featureIndex,\n      multiFeatureIndex,\n      geometryIndex\n    ) {\n      if (previousMultiFeatureIndex !== multiFeatureIndex) {\n        tempOutput.push([[]]);\n      } else if (previousGeometryIndex !== geometryIndex) {\n        tempOutput[multiFeatureIndex].push([]);\n      } else {\n        var p0x = previousCoord[0];\n        var p0y = previousCoord[1];\n        var p1x = currentCoord[0];\n        var p1y = currentCoord[1];\n        tempOutput[multiFeatureIndex][geometryIndex].push([\n          0.75 * p0x + 0.25 * p1x,\n          0.75 * p0y + 0.25 * p1y,\n        ]);\n        tempOutput[multiFeatureIndex][geometryIndex].push([\n          0.25 * p0x + 0.75 * p1x,\n          0.25 * p0y + 0.75 * p1y,\n        ]);\n      }\n      previousCoord = currentCoord;\n      previousMultiFeatureIndex = multiFeatureIndex;\n      previousGeometryIndex = geometryIndex;\n    },\n    false\n  );\n  tempOutput.forEach(function (poly) {\n    poly.forEach(function (ring) {\n      ring.push(ring[0]);\n    });\n  });\n}\n\nexport { polygonSmooth };\nexport default polygonSmooth;\n"
  },
  {
    "path": "packages/turf-polygon-smooth/package.json",
    "content": "{\n  \"name\": \"@turf/polygon-smooth\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Smooths a Polygon or MultiPolygon, based on Chaikin's algorithm.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Rowan Winsemius <@rowanwins>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"polygon\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-polygon-smooth/test/in/close.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [18.28125, 39.095962936305476],\n        [32.34375, 31.653381399664],\n        [19.6875, 17.97873309555617],\n        [35.15625, 10.833305983642491],\n        [19.6875, 0],\n        [32.6953125, -2.811371193331128],\n        [40.78125, 13.923403897723347],\n        [24.2578125, 17.97873309555617],\n        [33.75, 31.952162238024975],\n        [29.53125, 40.713955826286046],\n        [22.8515625, 40.713955826286046],\n        [18.28125, 39.095962936305476]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-polygon-smooth/test/in/geometry.json",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [2.28515625, 27.761329874505233],\n      [-5.537109374999999, 21.616579336740603],\n      [-0.087890625, 17.14079039331665],\n      [0.87890625, 21.37124437061831],\n      [4.482421875, 19.72534224805787],\n      [5.09765625, 22.51255695405145],\n      [10.458984375, 24.607069137709683],\n      [3.076171875, 26.194876675795218],\n      [6.15234375, 29.305561325527698],\n      [2.28515625, 27.761329874505233]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-smooth/test/in/multipolygon.json",
    "content": "{\n  \"type\": \"MultiPolygon\",\n  \"coordinates\": [\n    [\n      [\n        [102.0, 2.0],\n        [103.0, 2.0],\n        [103.0, 3.0],\n        [102.0, 3.0],\n        [102.0, 2.0]\n      ]\n    ],\n    [\n      [\n        [100.0, 0.0],\n        [101.0, 0.0],\n        [101.0, 1.0],\n        [100.0, 1.0],\n        [100.0, 0.0]\n      ]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-smooth/test/in/multipolygonWithHole.json",
    "content": "{\n  \"type\": \"MultiPolygon\",\n  \"coordinates\": [\n    [\n      [\n        [102.0, 2.0],\n        [103.0, 2.0],\n        [103.0, 3.0],\n        [102.0, 3.0],\n        [102.0, 2.0]\n      ]\n    ],\n    [\n      [\n        [100.0, 0.0],\n        [101.0, 0.0],\n        [101.0, 1.0],\n        [100.0, 1.0],\n        [100.0, 0.0]\n      ],\n      [\n        [100.2, 0.2],\n        [100.8, 0.2],\n        [100.8, 0.8],\n        [100.2, 0.8],\n        [100.2, 0.2]\n      ]\n    ],\n    [\n      [\n        [105.0, 0.0],\n        [106.0, 0.0],\n        [106.0, 1.0],\n        [105.0, 1.0],\n        [105.0, 0.0]\n      ],\n      [\n        [105.2, 0.2],\n        [105.8, 0.2],\n        [105.8, 0.8],\n        [105.2, 0.8],\n        [105.2, 0.2]\n      ]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-smooth/test/in/polygon.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [2.28515625, 27.761329874505233],\n        [-5.537109374999999, 21.616579336740603],\n        [-0.087890625, 17.14079039331665],\n        [0.87890625, 21.37124437061831],\n        [4.482421875, 19.72534224805787],\n        [5.09765625, 22.51255695405145],\n        [10.458984375, 24.607069137709683],\n        [3.076171875, 26.194876675795218],\n        [6.15234375, 29.305561325527698],\n        [2.28515625, 27.761329874505233]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-polygon-smooth/test/in/withHole.json",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [100.0, 0.0],\n      [101.0, 0.0],\n      [101.0, 1.0],\n      [100.0, 1.0],\n      [100.0, 0.0]\n    ],\n    [\n      [100.2, 0.2],\n      [100.8, 0.2],\n      [100.8, 0.8],\n      [100.2, 0.8],\n      [100.2, 0.2]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-smooth/test/out/close.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [24.43359375, 35.83983351402483],\n            [26.19140625, 34.90951082194465],\n            [27.53173828125, 33.8818120866228],\n            [28.45458984375, 32.7567373080593],\n            [28.9599609375, 31.534286486254125],\n            [29.0478515625, 30.21445962120729],\n            [28.71826171875, 28.797256712918795],\n            [27.97119140625, 27.28267776138864],\n            [26.806640625, 25.670722766616823],\n            [25.224609375, 23.961391728603346],\n            [24.08203125, 22.3540797717179],\n            [23.37890625, 20.84878689596049],\n            [23.115234375, 19.445513101331112],\n            [23.291015625, 18.144258387829765],\n            [23.90625, 16.945022755456456],\n            [24.9609375, 15.847806204211178],\n            [26.455078125, 14.852608734093936],\n            [28.388671875, 13.959430345104726],\n            [29.8388671875, 13.008628848744754],\n            [30.8056640625, 12.000204245014018],\n            [31.2890625, 10.934156533912521],\n            [31.2890625, 9.81048571544026],\n            [30.8056640625, 8.629191789597236],\n            [29.8388671875, 7.39027475638345],\n            [28.388671875, 6.093734615798901],\n            [26.455078125, 4.73957136784359],\n            [24.9664306640625, 3.5107508509868937],\n            [23.9227294921875, 2.4072730652288126],\n            [23.323974609375, 1.429138010569346],\n            [23.170166015625, 0.5763456870084949],\n            [23.4613037109375, -0.15110390545374128],\n            [24.1973876953125, -0.7532107668173623],\n            [25.37841796875, -1.2299748970823683],\n            [27.00439453125, -1.581396296248759],\n            [28.553466796875, -1.6274091597216251],\n            [30.025634765625, -1.3680134875009662],\n            [31.4208984375, -0.803209279586782],\n            [32.7392578125, 0.06700346402092716],\n            [33.980712890625, 1.2426247433221613],\n            [35.145263671875, 2.7236545583169205],\n            [36.23291015625, 4.510092909005205],\n            [37.24365234375, 6.601939795387015],\n            [37.869873046875, 8.495670339687235],\n            [38.111572265625, 10.191284541905867],\n            [37.96875, 11.68878240204291],\n            [37.44140625, 12.98816392009837],\n            [36.529541015625, 14.089429096072237],\n            [35.233154296875, 14.992577929964515],\n            [33.55224609375, 15.697610421775206],\n            [31.48681640625, 16.20452657150431],\n            [29.827880859375, 16.86641303286835],\n            [28.575439453125, 17.683269805867326],\n            [27.7294921875, 18.65509689050124],\n            [27.2900390625, 19.781894286770097],\n            [27.257080078125, 21.063661994673886],\n            [27.630615234375, 22.50040001421261],\n            [28.41064453125, 24.092108345386272],\n            [29.59716796875, 25.838786988194872],\n            [30.5694580078125, 27.504033825468973],\n            [31.3275146484375, 29.087848857208584],\n            [31.871337890625, 30.590232083413696],\n            [32.200927734375, 32.011183504084315],\n            [32.3162841796875, 33.35070311922044],\n            [32.2174072265625, 34.60879092882206],\n            [31.904296875, 35.785446932889194],\n            [31.376953125, 36.88067113142183],\n            [30.8111572265625, 37.83899230513788],\n            [30.2069091796875, 38.66041045403736],\n            [29.564208984375, 39.344925578120254],\n            [28.883056640625, 39.89253767738657],\n            [28.1634521484375, 40.30324675183631],\n            [27.4053955078125, 40.57705280146946],\n            [26.60888671875, 40.713955826286046],\n            [25.77392578125, 40.713955826286046],\n            [24.971923828125, 40.6886746873801],\n            [24.202880859375, 40.6381124095682],\n            [23.466796875, 40.56226899285036],\n            [22.763671875, 40.46114443722658],\n            [22.093505859375, 40.33473874269685],\n            [21.456298828125, 40.183051909261174],\n            [20.85205078125, 40.00608393691955],\n            [20.28076171875, 39.80383482567197],\n            [20.0006103515625, 39.51057651682032],\n            [20.0115966796875, 39.12630901036461],\n            [20.313720703125, 38.6510323063048],\n            [20.906982421875, 38.084746404640924],\n            [21.7913818359375, 37.42745130537297],\n            [22.9669189453125, 36.679147008500934],\n            [24.43359375, 35.83983351402483]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-smooth/test/out/geometry.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.1370849609374996, 25.073001514233205],\n            [-2.114868164062499, 24.30490769701263],\n            [-2.885284423828124, 23.562891404703624],\n            [-3.448333740234374, 22.84695263730619],\n            [-3.804016113281249, 22.157091394820334],\n            [-3.952331542968749, 21.493307677246044],\n            [-3.893280029296874, 20.85560148458333],\n            [-3.626861572265624, 20.24397281683219],\n            [-3.153076171874999, 19.65842167399262],\n            [-2.471923828124999, 19.09894805606463],\n            [-1.8608093261718746, 18.675509483772974],\n            [-1.3197326660156246, 18.388105957117656],\n            [-0.8486938476562498, 18.236737476098675],\n            [-0.4476928710937499, 18.22140404071603],\n            [-0.11672973632812494, 18.342105650969724],\n            [0.144195556640625, 18.59884230685976],\n            [0.3350830078125, 18.991614008386126],\n            [0.4559326171875, 19.520420755548834],\n            [0.61798095703125, 19.957409438651194],\n            [0.82122802734375, 20.302580057693213],\n            [1.065673828125, 20.555932612674884],\n            [1.351318359375, 20.71746710359621],\n            [1.67816162109375, 20.78718353045719],\n            [2.04620361328125, 20.765081893257825],\n            [2.4554443359375, 20.651162191998118],\n            [2.9058837890625, 20.445424426678063],\n            [3.30963134765625, 20.308954111804166],\n            [3.66668701171875, 20.241751247376424],\n            [3.97705078125, 20.243815833394837],\n            [4.24072265625, 20.31514786985941],\n            [4.45770263671875, 20.455747356770136],\n            [4.62799072265625, 20.66561429412702],\n            [4.7515869140625, 20.94474868193006],\n            [4.8284912109375, 21.29315052017926],\n            [4.97955322265625, 21.63072888151697],\n            [5.20477294921875, 21.957483765943184],\n            [5.504150390625, 22.273415173457913],\n            [5.877685546875, 22.578523104061155],\n            [6.32537841796875, 22.872807557752903],\n            [6.84722900390625, 23.156268534533158],\n            [7.4432373046875, 23.428906034401926],\n            [8.1134033203125, 23.690720057359208],\n            [8.584442138671875, 23.944616820229413],\n            [8.856353759765625, 24.190596323012542],\n            [8.92913818359375, 24.428658565708602],\n            [8.80279541015625, 24.658803548317586],\n            [8.477325439453125, 24.8810312708395],\n            [7.952728271484375, 25.09534173327434],\n            [7.22900390625, 25.301734935622104],\n            [6.30615234375, 25.500210877882797],\n            [5.546722412109375, 25.722481775012973],\n            [4.950714111328125, 25.968547627012633],\n            [4.51812744140625, 26.238408433881773],\n            [4.24896240234375, 26.532064195620396],\n            [4.143218994140625, 26.849514912228507],\n            [4.200897216796875, 27.1907605837061],\n            [4.4219970703125, 27.555801210053176],\n            [4.8065185546875, 27.944636791269737],\n            [5.082550048828125, 28.260739308412003],\n            [5.250091552734375, 28.50410876147997],\n            [5.30914306640625, 28.674745150473644],\n            [5.25970458984375, 28.77264847539302],\n            [5.101776123046875, 28.7978187362381],\n            [4.835357666015625, 28.750255933008884],\n            [4.46044921875, 28.62996006570537],\n            [3.97705078125, 28.436931134327562],\n            [3.431854248046875, 28.172019092219408],\n            [2.824859619140625, 27.835223939380903],\n            [2.15606689453125, 27.426545675812058],\n            [1.4254760742187502, 26.945984301512862],\n            [0.6330871582031253, 26.393539816483322],\n            [-0.2210998535156246, 25.76921222072344],\n            [-1.1370849609374996, 25.073001514233205]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-smooth/test/out/multipolygon.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [102.4375, 2],\n              [102.5625, 2],\n              [102.671875, 2.015625],\n              [102.765625, 2.046875],\n              [102.84375, 2.09375],\n              [102.90625, 2.15625],\n              [102.953125, 2.234375],\n              [102.984375, 2.328125],\n              [103, 2.4375],\n              [103, 2.5625],\n              [102.984375, 2.671875],\n              [102.953125, 2.765625],\n              [102.90625, 2.84375],\n              [102.84375, 2.90625],\n              [102.765625, 2.953125],\n              [102.671875, 2.984375],\n              [102.5625, 3],\n              [102.4375, 3],\n              [102.328125, 2.984375],\n              [102.234375, 2.953125],\n              [102.15625, 2.90625],\n              [102.09375, 2.84375],\n              [102.046875, 2.765625],\n              [102.015625, 2.671875],\n              [102, 2.5625],\n              [102, 2.4375],\n              [102.015625, 2.328125],\n              [102.046875, 2.234375],\n              [102.09375, 2.15625],\n              [102.15625, 2.09375],\n              [102.234375, 2.046875],\n              [102.328125, 2.015625],\n              [102.4375, 2]\n            ]\n          ],\n          [\n            [\n              [100.4375, 0],\n              [100.5625, 0],\n              [100.671875, 0.015625],\n              [100.765625, 0.046875],\n              [100.84375, 0.09375],\n              [100.90625, 0.15625],\n              [100.953125, 0.234375],\n              [100.984375, 0.328125],\n              [101, 0.4375],\n              [101, 0.5625],\n              [100.984375, 0.671875],\n              [100.953125, 0.765625],\n              [100.90625, 0.84375],\n              [100.84375, 0.90625],\n              [100.765625, 0.953125],\n              [100.671875, 0.984375],\n              [100.5625, 1],\n              [100.4375, 1],\n              [100.328125, 0.984375],\n              [100.234375, 0.953125],\n              [100.15625, 0.90625],\n              [100.09375, 0.84375],\n              [100.046875, 0.765625],\n              [100.015625, 0.671875],\n              [100, 0.5625],\n              [100, 0.4375],\n              [100.015625, 0.328125],\n              [100.046875, 0.234375],\n              [100.09375, 0.15625],\n              [100.15625, 0.09375],\n              [100.234375, 0.046875],\n              [100.328125, 0.015625],\n              [100.4375, 0]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-smooth/test/out/multipolygonWithHole.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [102.4375, 2],\n              [102.5625, 2],\n              [102.671875, 2.015625],\n              [102.765625, 2.046875],\n              [102.84375, 2.09375],\n              [102.90625, 2.15625],\n              [102.953125, 2.234375],\n              [102.984375, 2.328125],\n              [103, 2.4375],\n              [103, 2.5625],\n              [102.984375, 2.671875],\n              [102.953125, 2.765625],\n              [102.90625, 2.84375],\n              [102.84375, 2.90625],\n              [102.765625, 2.953125],\n              [102.671875, 2.984375],\n              [102.5625, 3],\n              [102.4375, 3],\n              [102.328125, 2.984375],\n              [102.234375, 2.953125],\n              [102.15625, 2.90625],\n              [102.09375, 2.84375],\n              [102.046875, 2.765625],\n              [102.015625, 2.671875],\n              [102, 2.5625],\n              [102, 2.4375],\n              [102.015625, 2.328125],\n              [102.046875, 2.234375],\n              [102.09375, 2.15625],\n              [102.15625, 2.09375],\n              [102.234375, 2.046875],\n              [102.328125, 2.015625],\n              [102.4375, 2]\n            ]\n          ],\n          [\n            [\n              [100.4375, 0],\n              [100.5625, 0],\n              [100.671875, 0.015625],\n              [100.765625, 0.046875],\n              [100.84375, 0.09375],\n              [100.90625, 0.15625],\n              [100.953125, 0.234375],\n              [100.984375, 0.328125],\n              [101, 0.4375],\n              [101, 0.5625],\n              [100.984375, 0.671875],\n              [100.953125, 0.765625],\n              [100.90625, 0.84375],\n              [100.84375, 0.90625],\n              [100.765625, 0.953125],\n              [100.671875, 0.984375],\n              [100.5625, 1],\n              [100.4375, 1],\n              [100.328125, 0.984375],\n              [100.234375, 0.953125],\n              [100.15625, 0.90625],\n              [100.09375, 0.84375],\n              [100.046875, 0.765625],\n              [100.015625, 0.671875],\n              [100, 0.5625],\n              [100, 0.4375],\n              [100.015625, 0.328125],\n              [100.046875, 0.234375],\n              [100.09375, 0.15625],\n              [100.15625, 0.09375],\n              [100.234375, 0.046875],\n              [100.328125, 0.015625],\n              [100.4375, 0]\n            ],\n            [\n              [100.46249999999999, 0.2],\n              [100.53750000000001, 0.2],\n              [100.603125, 0.20937500000000003],\n              [100.659375, 0.22812500000000002],\n              [100.70625, 0.25625000000000003],\n              [100.74374999999999, 0.29375],\n              [100.771875, 0.340625],\n              [100.79062499999999, 0.39687500000000003],\n              [100.8, 0.4625],\n              [100.8, 0.5375000000000001],\n              [100.79062499999999, 0.603125],\n              [100.771875, 0.6593750000000002],\n              [100.74374999999999, 0.7062500000000002],\n              [100.70625, 0.7437500000000001],\n              [100.659375, 0.7718750000000001],\n              [100.603125, 0.7906250000000001],\n              [100.53750000000001, 0.8],\n              [100.46249999999999, 0.8],\n              [100.396875, 0.7906250000000001],\n              [100.340625, 0.7718750000000001],\n              [100.29375, 0.7437500000000001],\n              [100.25625000000001, 0.7062500000000002],\n              [100.228125, 0.6593750000000002],\n              [100.20937500000001, 0.603125],\n              [100.2, 0.5375000000000001],\n              [100.2, 0.4625],\n              [100.20937500000001, 0.39687500000000003],\n              [100.228125, 0.340625],\n              [100.25625000000001, 0.29375],\n              [100.29375, 0.25625000000000003],\n              [100.340625, 0.22812500000000002],\n              [100.396875, 0.20937500000000003],\n              [100.46249999999999, 0.2]\n            ]\n          ],\n          [\n            [\n              [105.4375, 0],\n              [105.5625, 0],\n              [105.671875, 0.015625],\n              [105.765625, 0.046875],\n              [105.84375, 0.09375],\n              [105.90625, 0.15625],\n              [105.953125, 0.234375],\n              [105.984375, 0.328125],\n              [106, 0.4375],\n              [106, 0.5625],\n              [105.984375, 0.671875],\n              [105.953125, 0.765625],\n              [105.90625, 0.84375],\n              [105.84375, 0.90625],\n              [105.765625, 0.953125],\n              [105.671875, 0.984375],\n              [105.5625, 1],\n              [105.4375, 1],\n              [105.328125, 0.984375],\n              [105.234375, 0.953125],\n              [105.15625, 0.90625],\n              [105.09375, 0.84375],\n              [105.046875, 0.765625],\n              [105.015625, 0.671875],\n              [105, 0.5625],\n              [105, 0.4375],\n              [105.015625, 0.328125],\n              [105.046875, 0.234375],\n              [105.09375, 0.15625],\n              [105.15625, 0.09375],\n              [105.234375, 0.046875],\n              [105.328125, 0.015625],\n              [105.4375, 0]\n            ],\n            [\n              [105.46249999999999, 0.2],\n              [105.53750000000001, 0.2],\n              [105.603125, 0.20937500000000003],\n              [105.659375, 0.22812500000000002],\n              [105.70625, 0.25625000000000003],\n              [105.74374999999999, 0.29375],\n              [105.771875, 0.340625],\n              [105.79062499999999, 0.39687500000000003],\n              [105.8, 0.4625],\n              [105.8, 0.5375000000000001],\n              [105.79062499999999, 0.603125],\n              [105.771875, 0.6593750000000002],\n              [105.74374999999999, 0.7062500000000002],\n              [105.70625, 0.7437500000000001],\n              [105.659375, 0.7718750000000001],\n              [105.603125, 0.7906250000000001],\n              [105.53750000000001, 0.8],\n              [105.46249999999999, 0.8],\n              [105.396875, 0.7906250000000001],\n              [105.340625, 0.7718750000000001],\n              [105.29375, 0.7437500000000001],\n              [105.25625000000001, 0.7062500000000002],\n              [105.228125, 0.6593750000000002],\n              [105.20937500000001, 0.603125],\n              [105.2, 0.5375000000000001],\n              [105.2, 0.4625],\n              [105.20937500000001, 0.39687500000000003],\n              [105.228125, 0.340625],\n              [105.25625000000001, 0.29375],\n              [105.29375, 0.25625000000000003],\n              [105.340625, 0.22812500000000002],\n              [105.396875, 0.20937500000000003],\n              [105.46249999999999, 0.2]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-smooth/test/out/polygon.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1.1370849609374996, 25.073001514233205],\n            [-2.114868164062499, 24.30490769701263],\n            [-2.885284423828124, 23.562891404703624],\n            [-3.448333740234374, 22.84695263730619],\n            [-3.804016113281249, 22.157091394820334],\n            [-3.952331542968749, 21.493307677246044],\n            [-3.893280029296874, 20.85560148458333],\n            [-3.626861572265624, 20.24397281683219],\n            [-3.153076171874999, 19.65842167399262],\n            [-2.471923828124999, 19.09894805606463],\n            [-1.8608093261718746, 18.675509483772974],\n            [-1.3197326660156246, 18.388105957117656],\n            [-0.8486938476562498, 18.236737476098675],\n            [-0.4476928710937499, 18.22140404071603],\n            [-0.11672973632812494, 18.342105650969724],\n            [0.144195556640625, 18.59884230685976],\n            [0.3350830078125, 18.991614008386126],\n            [0.4559326171875, 19.520420755548834],\n            [0.61798095703125, 19.957409438651194],\n            [0.82122802734375, 20.302580057693213],\n            [1.065673828125, 20.555932612674884],\n            [1.351318359375, 20.71746710359621],\n            [1.67816162109375, 20.78718353045719],\n            [2.04620361328125, 20.765081893257825],\n            [2.4554443359375, 20.651162191998118],\n            [2.9058837890625, 20.445424426678063],\n            [3.30963134765625, 20.308954111804166],\n            [3.66668701171875, 20.241751247376424],\n            [3.97705078125, 20.243815833394837],\n            [4.24072265625, 20.31514786985941],\n            [4.45770263671875, 20.455747356770136],\n            [4.62799072265625, 20.66561429412702],\n            [4.7515869140625, 20.94474868193006],\n            [4.8284912109375, 21.29315052017926],\n            [4.97955322265625, 21.63072888151697],\n            [5.20477294921875, 21.957483765943184],\n            [5.504150390625, 22.273415173457913],\n            [5.877685546875, 22.578523104061155],\n            [6.32537841796875, 22.872807557752903],\n            [6.84722900390625, 23.156268534533158],\n            [7.4432373046875, 23.428906034401926],\n            [8.1134033203125, 23.690720057359208],\n            [8.584442138671875, 23.944616820229413],\n            [8.856353759765625, 24.190596323012542],\n            [8.92913818359375, 24.428658565708602],\n            [8.80279541015625, 24.658803548317586],\n            [8.477325439453125, 24.8810312708395],\n            [7.952728271484375, 25.09534173327434],\n            [7.22900390625, 25.301734935622104],\n            [6.30615234375, 25.500210877882797],\n            [5.546722412109375, 25.722481775012973],\n            [4.950714111328125, 25.968547627012633],\n            [4.51812744140625, 26.238408433881773],\n            [4.24896240234375, 26.532064195620396],\n            [4.143218994140625, 26.849514912228507],\n            [4.200897216796875, 27.1907605837061],\n            [4.4219970703125, 27.555801210053176],\n            [4.8065185546875, 27.944636791269737],\n            [5.082550048828125, 28.260739308412003],\n            [5.250091552734375, 28.50410876147997],\n            [5.30914306640625, 28.674745150473644],\n            [5.25970458984375, 28.77264847539302],\n            [5.101776123046875, 28.7978187362381],\n            [4.835357666015625, 28.750255933008884],\n            [4.46044921875, 28.62996006570537],\n            [3.97705078125, 28.436931134327562],\n            [3.431854248046875, 28.172019092219408],\n            [2.824859619140625, 27.835223939380903],\n            [2.15606689453125, 27.426545675812058],\n            [1.4254760742187502, 26.945984301512862],\n            [0.6330871582031253, 26.393539816483322],\n            [-0.2210998535156246, 25.76921222072344],\n            [-1.1370849609374996, 25.073001514233205]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-smooth/test/out/withHole.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100.4375, 0],\n            [100.5625, 0],\n            [100.671875, 0.015625],\n            [100.765625, 0.046875],\n            [100.84375, 0.09375],\n            [100.90625, 0.15625],\n            [100.953125, 0.234375],\n            [100.984375, 0.328125],\n            [101, 0.4375],\n            [101, 0.5625],\n            [100.984375, 0.671875],\n            [100.953125, 0.765625],\n            [100.90625, 0.84375],\n            [100.84375, 0.90625],\n            [100.765625, 0.953125],\n            [100.671875, 0.984375],\n            [100.5625, 1],\n            [100.4375, 1],\n            [100.328125, 0.984375],\n            [100.234375, 0.953125],\n            [100.15625, 0.90625],\n            [100.09375, 0.84375],\n            [100.046875, 0.765625],\n            [100.015625, 0.671875],\n            [100, 0.5625],\n            [100, 0.4375],\n            [100.015625, 0.328125],\n            [100.046875, 0.234375],\n            [100.09375, 0.15625],\n            [100.15625, 0.09375],\n            [100.234375, 0.046875],\n            [100.328125, 0.015625],\n            [100.4375, 0]\n          ],\n          [\n            [100.46249999999999, 0.2],\n            [100.53750000000001, 0.2],\n            [100.603125, 0.20937500000000003],\n            [100.659375, 0.22812500000000002],\n            [100.70625, 0.25625000000000003],\n            [100.74374999999999, 0.29375],\n            [100.771875, 0.340625],\n            [100.79062499999999, 0.39687500000000003],\n            [100.8, 0.4625],\n            [100.8, 0.5375000000000001],\n            [100.79062499999999, 0.603125],\n            [100.771875, 0.6593750000000002],\n            [100.74374999999999, 0.7062500000000002],\n            [100.70625, 0.7437500000000001],\n            [100.659375, 0.7718750000000001],\n            [100.603125, 0.7906250000000001],\n            [100.53750000000001, 0.8],\n            [100.46249999999999, 0.8],\n            [100.396875, 0.7906250000000001],\n            [100.340625, 0.7718750000000001],\n            [100.29375, 0.7437500000000001],\n            [100.25625000000001, 0.7062500000000002],\n            [100.228125, 0.6593750000000002],\n            [100.20937500000001, 0.603125],\n            [100.2, 0.5375000000000001],\n            [100.2, 0.4625],\n            [100.20937500000001, 0.39687500000000003],\n            [100.228125, 0.340625],\n            [100.25625000000001, 0.29375],\n            [100.29375, 0.25625000000000003],\n            [100.340625, 0.22812500000000002],\n            [100.396875, 0.20937500000000003],\n            [100.46249999999999, 0.2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-smooth/test.ts",
    "content": "import { polygon } from \"@turf/helpers\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { polygonSmooth } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-polygon-smooth\", (t) => {\n  glob\n    .sync(path.join(__dirname, \"test\", \"in\", \"*.json\"))\n    .forEach((filepath) => {\n      // Inputs\n      const geojson = loadJsonFileSync(filepath);\n      const options = geojson.options || {};\n      const iterations = options.iterations || 3;\n\n      // Results\n      const results = polygonSmooth(geojson, { iterations });\n\n      // Save Results\n      const out = filepath.replace(\n        path.join(\"test\", \"in\"),\n        path.join(\"test\", \"out\")\n      );\n      if (process.env.REGEN) writeJsonFileSync(out, results);\n      t.deepEqual(results, loadJsonFileSync(out), path.parse(filepath).name);\n    });\n  t.end();\n});\n\ntest(\"turf-polygon-smooth -- options are optional\", (t) => {\n  t.doesNotThrow(() =>\n    polygonSmooth(\n      polygon([\n        [\n          [0, 0],\n          [1, 0],\n          [1, 1],\n          [0, 1],\n          [0, 0],\n        ],\n      ])\n    )\n  );\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-polygon-smooth/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-polygon-smooth/types.ts",
    "content": "import { polygon } from \"@turf/helpers\";\nimport { polygonSmooth } from \"./index.js\";\n\nconst poly = polygon([\n  [\n    [100.0, 0.0],\n    [101.0, 0.0],\n    [101.0, 1.0],\n    [100.0, 1.0],\n    [100.0, 0.0],\n  ],\n]);\n\npolygonSmooth(poly);\npolygonSmooth(poly, { iterations: 3 });\n"
  },
  {
    "path": "packages/turf-polygon-tangents/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-polygon-tangents/README.md",
    "content": "# @turf/polygon-tangents\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## polygonTangents\n\nFinds the tangents of a [(Multi)Polygon][1] from a [Point][2].\n\n### Parameters\n\n*   `pt` **[Coord][3]** to calculate the tangent points from\n*   `polygon` **[Feature][4]<([Polygon][1] | [MultiPolygon][5])>** to get tangents from\n\n### Examples\n\n```javascript\nvar polygon = turf.polygon([[[11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0]]]);\nvar point = turf.point([61, 5]);\n\nvar tangents = turf.polygonTangents(point, polygon)\n\n//addToMap\nvar addToMap = [tangents, point, polygon];\n```\n\nReturns **[FeatureCollection][6]<[Point][2]>** Feature Collection containing the two tangent points\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/polygon-tangents\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-polygon-tangents/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { polygonTangents as tangents } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nlet fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n * concave x 562,308 ops/sec ±1.87% (86 runs sampled)\n * high x 478,965 ops/sec ±5.76% (70 runs sampled)\n * issue#1032 x 7,041 ops/sec ±2.71% (81 runs sampled)\n * issue#1050 x 388,455 ops/sec ±2.34% (79 runs sampled)\n * issue#785 x 51,146 ops/sec ±3.87% (77 runs sampled)\n * multipolygon x 143,371 ops/sec ±3.17% (80 runs sampled)\n * polygonWithHole x 215,547 ops/sec ±2.13% (83 runs sampled)\n * square x 518,853 ops/sec ±2.68% (81 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-polygon-tangents\");\nfor (const { name, geojson } of fixtures) {\n  const [poly, pt] = geojson.features;\n  suite.add(name, () => tangents(pt, poly));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-polygon-tangents/index.ts",
    "content": "import type {\n  Feature,\n  FeatureCollection,\n  Point,\n  Polygon,\n  Position,\n  MultiPolygon,\n} from \"geojson\";\nimport type { Coord } from \"@turf/helpers\";\nimport { getCoords, getType } from \"@turf/invariant\";\nimport { point, featureCollection } from \"@turf/helpers\";\nimport { bbox as calcBbox } from \"@turf/bbox\";\nimport { explode } from \"@turf/explode\";\nimport { nearestPoint } from \"@turf/nearest-point\";\n\n/**\n * Finds the tangents of a {@link Polygon|(Multi)Polygon} from a {@link Point}.\n *\n * @function\n * @param {Coord} pt to calculate the tangent points from\n * @param {Feature<Polygon|MultiPolygon>} polygon to get tangents from\n * @returns {FeatureCollection<Point>} Feature Collection containing the two tangent points\n * @example\n * var polygon = turf.polygon([[[11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0]]]);\n * var point = turf.point([61, 5]);\n *\n * var tangents = turf.polygonTangents(point, polygon)\n *\n * //addToMap\n * var addToMap = [tangents, point, polygon];\n */\nfunction polygonTangents<T extends Polygon | MultiPolygon>(\n  pt: Coord,\n  polygon: Feature<T> | T\n): FeatureCollection<Point> {\n  const pointCoords = getCoords(pt);\n  const polyCoords = getCoords(polygon);\n\n  let rtan: Position = [];\n  let ltan: Position = [];\n  let eprev: number;\n  const bbox = calcBbox(polygon);\n  let nearestPtIndex = 0;\n  let nearest = null;\n\n  // If the point lies inside the polygon bbox then we need to be a bit trickier\n  // otherwise points lying inside reflex angles on concave polys can have issues\n  if (\n    pointCoords[0] > bbox[0] &&\n    pointCoords[0] < bbox[2] &&\n    pointCoords[1] > bbox[1] &&\n    pointCoords[1] < bbox[3]\n  ) {\n    nearest = nearestPoint(pt, explode(polygon));\n    nearestPtIndex = nearest.properties.featureIndex;\n  }\n  const type = getType(polygon);\n  switch (type) {\n    case \"Polygon\":\n      rtan = polyCoords[0][nearestPtIndex];\n      ltan = polyCoords[0][0];\n      if (nearest !== null) {\n        if (nearest.geometry.coordinates[1] < pointCoords[1])\n          ltan = polyCoords[0][nearestPtIndex];\n      }\n      eprev = isLeft(\n        polyCoords[0][0],\n        polyCoords[0][polyCoords[0].length - 1],\n        pointCoords\n      );\n      [rtan, ltan] = processPolygon(\n        polyCoords[0],\n        pointCoords,\n        eprev,\n        rtan,\n        ltan\n      );\n      break;\n    case \"MultiPolygon\":\n      var closestFeature = 0;\n      var closestVertex = 0;\n      var verticesCounted = 0;\n      for (var i = 0; i < polyCoords[0].length; i++) {\n        closestFeature = i;\n        var verticeFound = false;\n        for (var i2 = 0; i2 < polyCoords[0][i].length; i2++) {\n          closestVertex = i2;\n          if (verticesCounted === nearestPtIndex) {\n            verticeFound = true;\n            break;\n          }\n          verticesCounted++;\n        }\n        if (verticeFound) break;\n      }\n      rtan = polyCoords[0][closestFeature][closestVertex];\n      ltan = polyCoords[0][closestFeature][closestVertex];\n      eprev = isLeft(\n        polyCoords[0][0][0],\n        polyCoords[0][0][polyCoords[0][0].length - 1],\n        pointCoords\n      );\n      polyCoords.forEach(function (ring) {\n        [rtan, ltan] = processPolygon(ring[0], pointCoords, eprev, rtan, ltan);\n      });\n      break;\n  }\n  return featureCollection([point(rtan), point(ltan)]);\n}\n\nfunction processPolygon(\n  polygonCoords: Position[],\n  ptCoords: Position,\n  eprev: number,\n  rtan: Position,\n  ltan: Position\n) {\n  for (let i = 0; i < polygonCoords.length; i++) {\n    const currentCoords = polygonCoords[i];\n    let nextCoordPair = polygonCoords[i + 1];\n    if (i === polygonCoords.length - 1) {\n      nextCoordPair = polygonCoords[0];\n    }\n    const enext = isLeft(currentCoords, nextCoordPair, ptCoords);\n    if (eprev <= 0 && enext > 0) {\n      if (!isBelow(ptCoords, currentCoords, rtan)) {\n        rtan = currentCoords;\n      }\n    } else if (eprev > 0 && enext <= 0) {\n      if (!isAbove(ptCoords, currentCoords, ltan)) {\n        ltan = currentCoords;\n      }\n    }\n    eprev = enext;\n  }\n  return [rtan, ltan];\n}\n\nfunction isAbove(point1: Position, point2: Position, point3: Position) {\n  return isLeft(point1, point2, point3) > 0;\n}\n\nfunction isBelow(point1: Position, point2: Position, point3: Position) {\n  return isLeft(point1, point2, point3) < 0;\n}\n\nfunction isLeft(point1: Position, point2: Position, point3: Position) {\n  return (\n    (point2[0] - point1[0]) * (point3[1] - point1[1]) -\n    (point3[0] - point1[0]) * (point2[1] - point1[1])\n  );\n}\n\nexport { polygonTangents };\nexport default polygonTangents;\n"
  },
  {
    "path": "packages/turf-polygon-tangents/package.json",
    "content": "{\n  \"name\": \"@turf/polygon-tangents\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Finds the tangents of a polygon from a point.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Rowan Winsemius <@rowanwins>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"point\",\n    \"tangent\",\n    \"polygon\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/boolean-within\": \"workspace:*\",\n    \"@turf/explode\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/nearest-point\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-polygon-tangents/test/in/concave.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [48.1640625, 20.632784250388028],\n            [62.57812500000001, 22.917922936146045],\n            [76.640625, 20.632784250388028],\n            [73.125, 30.14512718337613],\n            [76.640625, 38.8225909761771],\n            [62.57812500000001, 31.952162238024975],\n            [48.1640625, 38.8225909761771],\n            [48.1640625, 20.632784250388028]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [99.84374999999999, 31.353636941500987]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-tangents/test/in/high.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [59.765625, -37.16031654673676],\n            [62.57812500000001, 22.917922936146045],\n            [76.640625, 20.632784250388028],\n            [73.125, 30.14512718337613],\n            [76.640625, 38.8225909761771],\n            [62.57812500000001, 31.952162238024975],\n            [56.33789062499999, 52.74959372674114],\n            [59.765625, -37.16031654673676]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [99.84374999999999, 31.353636941500987]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-tangents/test/in/issue#1032.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [73.222696781158, 0.672929312864639],\n            [73.223141775131, 0.6728221177272928],\n            [73.223743934789, 0.6726381749213459],\n            [73.224029146338, 0.6725036554756088],\n            [73.224338813812, 0.6724074327878782],\n            [73.224860170232, 0.6721935244108295],\n            [73.225509744573, 0.6720420390183648],\n            [73.226084583476, 0.6717472629325556],\n            [73.226458847279, 0.6715981449324744],\n            [73.226650858421, 0.6715436544821927],\n            [73.227258045226, 0.6714184949730679],\n            [73.227445127964, 0.6713529476262039],\n            [73.227678178196, 0.6712050062728139],\n            [73.228031831012, 0.6708426157704537],\n            [73.228146526963, 0.6706682403694231],\n            [73.228457655945, 0.6700969051734518],\n            [73.228657754266, 0.6698443347108025],\n            [73.22884159707, 0.6696673096285082],\n            [73.228996763994, 0.6695767853640717],\n            [73.229106436541, 0.6695525110064722],\n            [73.229149940014, 0.6695025217523778],\n            [73.229169917106, 0.6693944039229791],\n            [73.229167029882, 0.6693046080477387],\n            [73.229084080861, 0.6691702157268935],\n            [73.229041067618, 0.6691383134431845],\n            [73.228922636334, 0.6690945712344814],\n            [73.22885162189, 0.6690290941501615],\n            [73.228795706928, 0.6690004793602498],\n            [73.228683117007, 0.6689698982356589],\n            [73.228615358483, 0.6689786536104236],\n            [73.228546747123, 0.6690229904581599],\n            [73.228490368271, 0.669096495729903],\n            [73.228443036787, 0.6694061168332297],\n            [73.228223152757, 0.6698214354820493],\n            [73.228165577041, 0.6698999456480976],\n            [73.228024344452, 0.670025254964898],\n            [73.227903388313, 0.6702371606698421],\n            [73.227836480364, 0.6703046163993349],\n            [73.227119555512, 0.6707099538733416],\n            [73.22668329446, 0.6710793258441896],\n            [73.226559966198, 0.6711543446100734],\n            [73.226424521696, 0.6712119748989664],\n            [73.226177066949, 0.6712730394161497],\n            [73.225950830598, 0.67127542067891],\n            [73.225655714655, 0.6712369330303574],\n            [73.22555065155, 0.6711909636509574],\n            [73.225483278402, 0.6711332409315816],\n            [73.225406283817, 0.6710095253332611],\n            [73.225390645993, 0.6709432706487064],\n            [73.225397197529, 0.6708261252031065],\n            [73.225457941492, 0.6706975144888645],\n            [73.225963781675, 0.6703145215167154],\n            [73.226412547476, 0.669790217338786],\n            [73.226639346285, 0.6696012463551142],\n            [73.226701757055, 0.6695209006273473],\n            [73.226727089028, 0.6694367056162207],\n            [73.226723397567, 0.6693697679729524],\n            [73.226656628151, 0.6691877016677381],\n            [73.226566725674, 0.669003250939312],\n            [73.226551314195, 0.6689166059413054],\n            [73.226568804017, 0.668865677272052],\n            [73.226787260285, 0.6685663053432478],\n            [73.226824706351, 0.668476577946393],\n            [73.226843488025, 0.6683734115614755],\n            [73.226823012034, 0.668252158733111],\n            [73.226760301619, 0.6681455247222345],\n            [73.226612638682, 0.6680583776521587],\n            [73.226456208552, 0.6680175865484159],\n            [73.226209720597, 0.6680410701986119],\n            [73.226154902776, 0.668062388064314],\n            [73.226070207392, 0.6681289116730795],\n            [73.225768983364, 0.6684395167627741],\n            [73.225699240456, 0.6684703579247326],\n            [73.22541866541, 0.6684446126130723],\n            [73.225309299131, 0.6684913460441066],\n            [73.225291081448, 0.6684570449487524],\n            [73.225256291015, 0.668222172880931],\n            [73.225226394924, 0.6681784489895506],\n            [73.225180595009, 0.6681526846102344],\n            [73.224978322105, 0.6681633512328347],\n            [73.224772984242, 0.6682065624897859],\n            [73.224741499018, 0.668201968184249],\n            [73.22471701051, 0.668173830077734],\n            [73.22470184438, 0.66807906378871],\n            [73.224710363746, 0.6679383479043537],\n            [73.224809658364, 0.6676155759821256],\n            [73.224856696195, 0.6673534849849148],\n            [73.224970303437, 0.6670680268227471],\n            [73.22512649074, 0.6668365082036303],\n            [73.225212097168, 0.6667288667304803],\n            [73.225274791718, 0.6666840121064155],\n            [73.225625809829, 0.6666438269910628],\n            [73.225738127231, 0.666611311729028],\n            [73.226002620068, 0.6663804677868512],\n            [73.226105900095, 0.6662014314291156],\n            [73.226124983675, 0.6660370141104295],\n            [73.226040943446, 0.6658116107705752],\n            [73.225815226237, 0.6655119071691757],\n            [73.225710327836, 0.6654167649301144],\n            [73.225627314532, 0.6653661538076818],\n            [73.225537743419, 0.6653534272697499],\n            [73.225433878899, 0.6653717924575773],\n            [73.225318119124, 0.665562515457168],\n            [73.225255542633, 0.6657391979264418],\n            [73.224956187609, 0.6660264320867242],\n            [73.224782510517, 0.6663571798607677],\n            [73.224617868401, 0.6665229776088211],\n            [73.224439704818, 0.6668353595225085],\n            [73.224300938349, 0.6672443056588548],\n            [73.22419991164, 0.6676913082846596],\n            [73.22406436316, 0.6681564543334417],\n            [73.223883887404, 0.6690056083385798],\n            [73.22377935234, 0.6692590564152425],\n            [73.223676624298, 0.6694553729287946],\n            [73.223596730253, 0.6695715464665994],\n            [73.223541862338, 0.6696966344853763],\n            [73.223345681691, 0.6704022315888665],\n            [73.223258191582, 0.670645296332097],\n            [73.222985252214, 0.6715456004246505],\n            [73.22285381536, 0.6718248328859886],\n            [73.222686846515, 0.6721174107883314],\n            [73.222454455099, 0.6724137943929662],\n            [73.222098727673, 0.6728239052963403],\n            [73.222041913757, 0.6729435103004278],\n            [73.222061824868, 0.6729818899183755],\n            [73.222099328875, 0.6729992722487737],\n            [73.222397657256, 0.6729767617070905],\n            [73.222696781158, 0.672929312864639]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [73.2258944382542, 0.6673910301706059]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-tangents/test/in/issue#1050.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.788482103824089, 51.56063487730164],\n            [8.788583, 51.561554],\n            [8.78839, 51.562241],\n            [8.78705, 51.563616],\n            [8.785483, 51.564445],\n            [8.785481, 51.564446],\n            [8.785479, 51.564447],\n            [8.785479, 51.564449],\n            [8.785478, 51.56445],\n            [8.785478, 51.564452],\n            [8.785479, 51.564454],\n            [8.78548, 51.564455],\n            [8.785482, 51.564457],\n            [8.786358, 51.565053],\n            [8.787022, 51.565767],\n            [8.787024, 51.565768],\n            [8.787026, 51.565769],\n            [8.787028, 51.56577],\n            [8.787031, 51.565771],\n            [8.787033, 51.565771],\n            [8.789951649580397, 51.56585502173034],\n            [8.789734, 51.563604],\n            [8.788482103824089, 51.56063487730164]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.725, 51.57]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-tangents/test/in/issue#785.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [73.57502193836378, 0.43239356638694915],\n            [73.57526333717512, 0.43281197906664204],\n            [73.57561738876508, 0.43281197906664204],\n            [73.57560129551099, 0.4325384015479159],\n            [73.57543499855207, 0.4324686661003909],\n            [73.57551010040449, 0.43223263842709514],\n            [73.57579441456006, 0.43239893065221224],\n            [73.57609482196972, 0.4324364805090113],\n            [73.57643278030561, 0.4323184666727826],\n            [73.57594998268293, 0.4322380026924719],\n            [73.5754779138963, 0.4318464113095217],\n            [73.5751184978883, 0.4320448891362787],\n            [73.57516141323254, 0.4322862810807635],\n            [73.57500048069166, 0.43227018828469],\n            [73.57502193836378, 0.43239356638694915]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [73.5755476513307, 0.4323399237340624]\n      },\n      \"properties\": {}\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-tangents/test/in/multipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [48.1640625, 20.632784250388028],\n              [62.57812500000001, 22.917922936146045],\n              [76.640625, 20.632784250388028],\n              [73.125, 30.14512718337613],\n              [76.640625, 38.8225909761771],\n              [62.57812500000001, 31.952162238024975],\n              [48.1640625, 38.8225909761771],\n              [48.1640625, 20.632784250388028]\n            ]\n          ],\n          [\n            [\n              [56.42578125, 41.64007838467894],\n              [70.751953125, 41.64007838467894],\n              [70.751953125, 50.84757295365389],\n              [56.42578125, 50.84757295365389],\n              [56.42578125, 41.64007838467894]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [99.84374999999999, 31.353636941500987]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-tangents/test/in/polygonWithHole.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [48.1640625, 20.632784250388028],\n            [76.640625, 20.632784250388028],\n            [76.640625, 38.8225909761771],\n            [48.1640625, 38.8225909761771],\n            [48.1640625, 20.632784250388028]\n          ],\n          [\n            [56.51367187499999, 26.82407078047018],\n            [69.08203125, 26.82407078047018],\n            [69.08203125, 34.45221847282654],\n            [56.51367187499999, 34.45221847282654],\n            [56.51367187499999, 26.82407078047018]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [99.84374999999999, 31.353636941500987]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-tangents/test/in/square.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [48.1640625, 20.632784250388028],\n            [76.640625, 20.632784250388028],\n            [76.640625, 38.8225909761771],\n            [48.1640625, 38.8225909761771],\n            [48.1640625, 20.632784250388028]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [92.46093749999999, 54.67383096593114]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-tangents/test/out/concave.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [76.640625, 38.8225909761771]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [76.640625, 20.632784250388028]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [48.1640625, 20.632784250388028],\n            [62.57812500000001, 22.917922936146045],\n            [76.640625, 20.632784250388028],\n            [73.125, 30.14512718337613],\n            [76.640625, 38.8225909761771],\n            [62.57812500000001, 31.952162238024975],\n            [48.1640625, 38.8225909761771],\n            [48.1640625, 20.632784250388028]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [99.84374999999999, 31.353636941500987]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-tangents/test/out/high.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [56.33789062499999, 52.74959372674114]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [59.765625, -37.16031654673676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [59.765625, -37.16031654673676],\n            [62.57812500000001, 22.917922936146045],\n            [76.640625, 20.632784250388028],\n            [73.125, 30.14512718337613],\n            [76.640625, 38.8225909761771],\n            [62.57812500000001, 31.952162238024975],\n            [56.33789062499999, 52.74959372674114],\n            [59.765625, -37.16031654673676]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [99.84374999999999, 31.353636941500987]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-tangents/test/out/issue#1032.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [73.22885162189, 0.6690290941501615]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [73.226105900095, 0.6662014314291156]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [73.222696781158, 0.672929312864639],\n            [73.223141775131, 0.6728221177272928],\n            [73.223743934789, 0.6726381749213459],\n            [73.224029146338, 0.6725036554756088],\n            [73.224338813812, 0.6724074327878782],\n            [73.224860170232, 0.6721935244108295],\n            [73.225509744573, 0.6720420390183648],\n            [73.226084583476, 0.6717472629325556],\n            [73.226458847279, 0.6715981449324744],\n            [73.226650858421, 0.6715436544821927],\n            [73.227258045226, 0.6714184949730679],\n            [73.227445127964, 0.6713529476262039],\n            [73.227678178196, 0.6712050062728139],\n            [73.228031831012, 0.6708426157704537],\n            [73.228146526963, 0.6706682403694231],\n            [73.228457655945, 0.6700969051734518],\n            [73.228657754266, 0.6698443347108025],\n            [73.22884159707, 0.6696673096285082],\n            [73.228996763994, 0.6695767853640717],\n            [73.229106436541, 0.6695525110064722],\n            [73.229149940014, 0.6695025217523778],\n            [73.229169917106, 0.6693944039229791],\n            [73.229167029882, 0.6693046080477387],\n            [73.229084080861, 0.6691702157268935],\n            [73.229041067618, 0.6691383134431845],\n            [73.228922636334, 0.6690945712344814],\n            [73.22885162189, 0.6690290941501615],\n            [73.228795706928, 0.6690004793602498],\n            [73.228683117007, 0.6689698982356589],\n            [73.228615358483, 0.6689786536104236],\n            [73.228546747123, 0.6690229904581599],\n            [73.228490368271, 0.669096495729903],\n            [73.228443036787, 0.6694061168332297],\n            [73.228223152757, 0.6698214354820493],\n            [73.228165577041, 0.6698999456480976],\n            [73.228024344452, 0.670025254964898],\n            [73.227903388313, 0.6702371606698421],\n            [73.227836480364, 0.6703046163993349],\n            [73.227119555512, 0.6707099538733416],\n            [73.22668329446, 0.6710793258441896],\n            [73.226559966198, 0.6711543446100734],\n            [73.226424521696, 0.6712119748989664],\n            [73.226177066949, 0.6712730394161497],\n            [73.225950830598, 0.67127542067891],\n            [73.225655714655, 0.6712369330303574],\n            [73.22555065155, 0.6711909636509574],\n            [73.225483278402, 0.6711332409315816],\n            [73.225406283817, 0.6710095253332611],\n            [73.225390645993, 0.6709432706487064],\n            [73.225397197529, 0.6708261252031065],\n            [73.225457941492, 0.6706975144888645],\n            [73.225963781675, 0.6703145215167154],\n            [73.226412547476, 0.669790217338786],\n            [73.226639346285, 0.6696012463551142],\n            [73.226701757055, 0.6695209006273473],\n            [73.226727089028, 0.6694367056162207],\n            [73.226723397567, 0.6693697679729524],\n            [73.226656628151, 0.6691877016677381],\n            [73.226566725674, 0.669003250939312],\n            [73.226551314195, 0.6689166059413054],\n            [73.226568804017, 0.668865677272052],\n            [73.226787260285, 0.6685663053432478],\n            [73.226824706351, 0.668476577946393],\n            [73.226843488025, 0.6683734115614755],\n            [73.226823012034, 0.668252158733111],\n            [73.226760301619, 0.6681455247222345],\n            [73.226612638682, 0.6680583776521587],\n            [73.226456208552, 0.6680175865484159],\n            [73.226209720597, 0.6680410701986119],\n            [73.226154902776, 0.668062388064314],\n            [73.226070207392, 0.6681289116730795],\n            [73.225768983364, 0.6684395167627741],\n            [73.225699240456, 0.6684703579247326],\n            [73.22541866541, 0.6684446126130723],\n            [73.225309299131, 0.6684913460441066],\n            [73.225291081448, 0.6684570449487524],\n            [73.225256291015, 0.668222172880931],\n            [73.225226394924, 0.6681784489895506],\n            [73.225180595009, 0.6681526846102344],\n            [73.224978322105, 0.6681633512328347],\n            [73.224772984242, 0.6682065624897859],\n            [73.224741499018, 0.668201968184249],\n            [73.22471701051, 0.668173830077734],\n            [73.22470184438, 0.66807906378871],\n            [73.224710363746, 0.6679383479043537],\n            [73.224809658364, 0.6676155759821256],\n            [73.224856696195, 0.6673534849849148],\n            [73.224970303437, 0.6670680268227471],\n            [73.22512649074, 0.6668365082036303],\n            [73.225212097168, 0.6667288667304803],\n            [73.225274791718, 0.6666840121064155],\n            [73.225625809829, 0.6666438269910628],\n            [73.225738127231, 0.666611311729028],\n            [73.226002620068, 0.6663804677868512],\n            [73.226105900095, 0.6662014314291156],\n            [73.226124983675, 0.6660370141104295],\n            [73.226040943446, 0.6658116107705752],\n            [73.225815226237, 0.6655119071691757],\n            [73.225710327836, 0.6654167649301144],\n            [73.225627314532, 0.6653661538076818],\n            [73.225537743419, 0.6653534272697499],\n            [73.225433878899, 0.6653717924575773],\n            [73.225318119124, 0.665562515457168],\n            [73.225255542633, 0.6657391979264418],\n            [73.224956187609, 0.6660264320867242],\n            [73.224782510517, 0.6663571798607677],\n            [73.224617868401, 0.6665229776088211],\n            [73.224439704818, 0.6668353595225085],\n            [73.224300938349, 0.6672443056588548],\n            [73.22419991164, 0.6676913082846596],\n            [73.22406436316, 0.6681564543334417],\n            [73.223883887404, 0.6690056083385798],\n            [73.22377935234, 0.6692590564152425],\n            [73.223676624298, 0.6694553729287946],\n            [73.223596730253, 0.6695715464665994],\n            [73.223541862338, 0.6696966344853763],\n            [73.223345681691, 0.6704022315888665],\n            [73.223258191582, 0.670645296332097],\n            [73.222985252214, 0.6715456004246505],\n            [73.22285381536, 0.6718248328859886],\n            [73.222686846515, 0.6721174107883314],\n            [73.222454455099, 0.6724137943929662],\n            [73.222098727673, 0.6728239052963403],\n            [73.222041913757, 0.6729435103004278],\n            [73.222061824868, 0.6729818899183755],\n            [73.222099328875, 0.6729992722487737],\n            [73.222397657256, 0.6729767617070905],\n            [73.222696781158, 0.672929312864639]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [73.2258944382542, 0.6673910301706059]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-tangents/test/out/issue#1050.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.788482103824089, 51.56063487730164]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.789951649580397, 51.56585502173034]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.788482103824089, 51.56063487730164],\n            [8.788583, 51.561554],\n            [8.78839, 51.562241],\n            [8.78705, 51.563616],\n            [8.785483, 51.564445],\n            [8.785481, 51.564446],\n            [8.785479, 51.564447],\n            [8.785479, 51.564449],\n            [8.785478, 51.56445],\n            [8.785478, 51.564452],\n            [8.785479, 51.564454],\n            [8.78548, 51.564455],\n            [8.785482, 51.564457],\n            [8.786358, 51.565053],\n            [8.787022, 51.565767],\n            [8.787024, 51.565768],\n            [8.787026, 51.565769],\n            [8.787028, 51.56577],\n            [8.787031, 51.565771],\n            [8.787033, 51.565771],\n            [8.789951649580397, 51.56585502173034],\n            [8.789734, 51.563604],\n            [8.788482103824089, 51.56063487730164]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [8.725, 51.57]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-tangents/test/out/issue#785.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [73.57560129551099, 0.4325384015479159]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [73.57579441456006, 0.43239893065221224]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [73.57502193836378, 0.43239356638694915],\n            [73.57526333717512, 0.43281197906664204],\n            [73.57561738876508, 0.43281197906664204],\n            [73.57560129551099, 0.4325384015479159],\n            [73.57543499855207, 0.4324686661003909],\n            [73.57551010040449, 0.43223263842709514],\n            [73.57579441456006, 0.43239893065221224],\n            [73.57609482196972, 0.4324364805090113],\n            [73.57643278030561, 0.4323184666727826],\n            [73.57594998268293, 0.4322380026924719],\n            [73.5754779138963, 0.4318464113095217],\n            [73.5751184978883, 0.4320448891362787],\n            [73.57516141323254, 0.4322862810807635],\n            [73.57500048069166, 0.43227018828469],\n            [73.57502193836378, 0.43239356638694915]\n          ]\n        ]\n      },\n      \"properties\": {}\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [73.5755476513307, 0.4323399237340624]\n      },\n      \"properties\": {}\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-tangents/test/out/multipolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [70.751953125, 50.84757295365389]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [76.640625, 20.632784250388028]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [48.1640625, 20.632784250388028],\n              [62.57812500000001, 22.917922936146045],\n              [76.640625, 20.632784250388028],\n              [73.125, 30.14512718337613],\n              [76.640625, 38.8225909761771],\n              [62.57812500000001, 31.952162238024975],\n              [48.1640625, 38.8225909761771],\n              [48.1640625, 20.632784250388028]\n            ]\n          ],\n          [\n            [\n              [56.42578125, 41.64007838467894],\n              [70.751953125, 41.64007838467894],\n              [70.751953125, 50.84757295365389],\n              [56.42578125, 50.84757295365389],\n              [56.42578125, 41.64007838467894]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [99.84374999999999, 31.353636941500987]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-tangents/test/out/polygonWithHole.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [76.640625, 38.8225909761771]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [76.640625, 20.632784250388028]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [48.1640625, 20.632784250388028],\n            [76.640625, 20.632784250388028],\n            [76.640625, 38.8225909761771],\n            [48.1640625, 38.8225909761771],\n            [48.1640625, 20.632784250388028]\n          ],\n          [\n            [56.51367187499999, 26.82407078047018],\n            [69.08203125, 26.82407078047018],\n            [69.08203125, 34.45221847282654],\n            [56.51367187499999, 34.45221847282654],\n            [56.51367187499999, 26.82407078047018]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [99.84374999999999, 31.353636941500987]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-tangents/test/out/square.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [48.1640625, 38.8225909761771]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [76.640625, 20.632784250388028]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [48.1640625, 20.632784250388028],\n            [76.640625, 20.632784250388028],\n            [76.640625, 38.8225909761771],\n            [48.1640625, 38.8225909761771],\n            [48.1640625, 20.632784250388028]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [92.46093749999999, 54.67383096593114]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-tangents/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { polygon, point } from \"@turf/helpers\";\nimport { polygonTangents } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-polygon-tangents\", (t) => {\n  for (const { name, filename, geojson } of fixtures) {\n    const [poly, pt] = geojson.features;\n    const results = polygonTangents(pt, poly);\n    results.features = results.features.concat(geojson.features);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEqual(loadJsonFileSync(directories.out + filename), results, name);\n  }\n  t.end();\n});\n\ntest(\"turf-polygon-tangents - Geometry Objects\", (t) => {\n  const pt = point([61, 5]);\n  const poly = polygon([\n    [\n      [11, 0],\n      [22, 4],\n      [31, 0],\n      [31, 11],\n      [21, 15],\n      [11, 11],\n      [11, 0],\n    ],\n  ]);\n  t.assert(polygonTangents(pt.geometry, poly.geometry));\n  t.end();\n});\n\ntest(\"turf-polygon-tangents - Prevent Input Mutation\", (t) => {\n  const pt = point([61, 5]);\n  const poly = polygon([\n    [\n      [11, 0],\n      [22, 4],\n      [31, 0],\n      [31, 11],\n      [21, 15],\n      [11, 11],\n      [11, 0],\n    ],\n  ]);\n  const beforePoly = JSON.parse(JSON.stringify(poly));\n  const beforePt = JSON.parse(JSON.stringify(pt));\n  polygonTangents(pt.geometry, poly.geometry);\n  t.deepEqual(poly, beforePoly, \"pt should not mutate\");\n  t.deepEqual(pt, beforePt, \"poly should not mutate\");\n  t.end();\n});\n\ntest(\"turf-polygon-tangents - Issue #1050\", (t) => {\n  const pt = [8.725, 51.57];\n  const poly = polygon([\n    [\n      [8.788482103824089, 51.56063487730164],\n      [8.788583, 51.561554],\n      [8.78839, 51.562241],\n      [8.78705, 51.563616],\n      [8.785483, 51.564445],\n      [8.785481, 51.564446],\n      [8.785479, 51.564447],\n      [8.785479, 51.564449],\n      [8.785478, 51.56445],\n      [8.785478, 51.564452],\n      [8.785479, 51.564454],\n      [8.78548, 51.564455],\n      [8.785482, 51.564457],\n      [8.786358, 51.565053],\n      [8.787022, 51.565767],\n      [8.787024, 51.565768],\n      [8.787026, 51.565769],\n      [8.787028, 51.56577],\n      [8.787031, 51.565771],\n      [8.787033, 51.565771],\n      [8.789951649580397, 51.56585502173034],\n      [8.789734, 51.563604],\n      [8.788482103824089, 51.56063487730164],\n    ],\n  ]);\n  try {\n    t.assert(polygonTangents(pt, poly));\n  } catch (e) {\n    t.skip(\"issue #1050 failed\");\n  }\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-polygon-tangents/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-polygon-tangents/types.ts",
    "content": "import { polygon, point } from \"@turf/helpers\";\nimport { polygonTangents as tangents } from \"./index.js\";\n\nconst poly = polygon([\n  [\n    [11, 0],\n    [22, 4],\n    [31, 0],\n    [31, 11],\n    [21, 15],\n    [11, 11],\n    [11, 0],\n  ],\n]);\nconst pt = point([61, 5]);\ntangents(pt, poly);\n"
  },
  {
    "path": "packages/turf-polygon-to-line/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-polygon-to-line/README.md",
    "content": "# @turf/polygon-to-line\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## polygonToLine\n\nConverts a [Polygon][1] to [(Multi)LineString][2] or [MultiPolygon][3] to a\n[FeatureCollection][4] of [(Multi)LineString][2].\n\n### Parameters\n\n*   `poly` **[Feature][5]<([Polygon][1] | [MultiPolygon][3])>** Feature to convert\n*   `options` **[Object][6]** Optional parameters (optional, default `{}`)\n\n    *   `options.properties` **[Object][6]** translates GeoJSON properties to Feature (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar poly = turf.polygon([[[125, -30], [145, -30], [145, -20], [125, -20], [125, -30]]]);\n\nvar line = turf.polygonToLine(poly);\n\n//addToMap\nvar addToMap = [line];\n```\n\nReturns **([FeatureCollection][4] | [Feature][5]<([LineString][2] | MultiLinestring)>)** converted (Multi)Polygon to (Multi)LineString\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/polygon-to-line\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-polygon-to-line/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { polygonToLine } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * geometry-polygon x 10,766,300 ops/sec ±1.20% (88 runs sampled)\n * multi-polygon-with-holes x 2,597,052 ops/sec ±3.29% (81 runs sampled)\n * multi-polygon x 3,103,830 ops/sec ±2.59% (81 runs sampled)\n * polygon-with-hole x 10,533,741 ops/sec ±1.15% (88 runs sampled)\n * polygon x 10,651,632 ops/sec ±0.77% (89 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-polygon-to-linestring\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => polygonToLine(geojson));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-polygon-to-line/index.ts",
    "content": "import { featureCollection, lineString, multiLineString } from \"@turf/helpers\";\nimport {\n  Feature,\n  FeatureCollection,\n  LineString,\n  MultiLineString,\n  MultiPolygon,\n  Polygon,\n  GeoJsonProperties,\n} from \"geojson\";\nimport { getGeom } from \"@turf/invariant\";\n\n/**\n * Converts a {@link Polygon} to {@link LineString|(Multi)LineString} or {@link MultiPolygon} to a\n * {@link FeatureCollection} of {@link LineString|(Multi)LineString}.\n *\n * @function\n * @param {Feature<Polygon|MultiPolygon>} poly Feature to convert\n * @param {Object} [options={}] Optional parameters\n * @param {Object} [options.properties={}] translates GeoJSON properties to Feature\n * @returns {FeatureCollection|Feature<LineString|MultiLinestring>} converted (Multi)Polygon to (Multi)LineString\n * @example\n * var poly = turf.polygon([[[125, -30], [145, -30], [145, -20], [125, -20], [125, -30]]]);\n *\n * var line = turf.polygonToLine(poly);\n *\n * //addToMap\n * var addToMap = [line];\n */\nfunction polygonToLine<\n  G extends Polygon | MultiPolygon,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  poly: Feature<G, P> | G,\n  options: { properties?: any } = {}\n):\n  | Feature<LineString | MultiLineString, P>\n  | FeatureCollection<LineString | MultiLineString, P> {\n  const geom: any = getGeom(poly);\n  if (!options.properties && poly.type === \"Feature\") {\n    options.properties = poly.properties;\n  }\n  switch (geom.type) {\n    case \"Polygon\":\n      return singlePolygonToLine(geom, options);\n    case \"MultiPolygon\":\n      return multiPolygonToLine(geom, options);\n    default:\n      throw new Error(\"invalid poly\");\n  }\n}\n\n/**\n * @private\n */\nfunction singlePolygonToLine<\n  G extends Polygon,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  poly: Feature<G, P> | G,\n  options: { properties?: any } = {}\n): Feature<LineString | MultiLineString, P> {\n  const geom = getGeom(poly);\n  const coords: any[] = geom.coordinates;\n  const properties: any = options.properties\n    ? options.properties\n    : poly.type === \"Feature\"\n      ? poly.properties\n      : {};\n\n  return coordsToLine(coords, properties);\n}\n\n/**\n * @private\n */\nfunction multiPolygonToLine<\n  G extends MultiPolygon,\n  P extends GeoJsonProperties = GeoJsonProperties,\n>(\n  multiPoly: Feature<G, P> | G,\n  options: { properties?: P } = {}\n): FeatureCollection<LineString | MultiLineString, P> {\n  const geom = getGeom(multiPoly);\n  const coords: any[] = geom.coordinates;\n  const properties: any = options.properties\n    ? options.properties\n    : multiPoly.type === \"Feature\"\n      ? multiPoly.properties\n      : {};\n\n  const lines: Array<Feature<LineString | MultiLineString, P>> = [];\n  coords.forEach((coord) => {\n    lines.push(coordsToLine(coord, properties));\n  });\n  return featureCollection(lines);\n}\n\n/**\n * @private\n */\nfunction coordsToLine<P extends GeoJsonProperties = GeoJsonProperties>(\n  coords: number[][][],\n  properties: P\n): Feature<LineString | MultiLineString, P> {\n  if (coords.length > 1) {\n    return multiLineString(coords, properties);\n  }\n  return lineString(coords[0], properties);\n}\n\nexport { polygonToLine, coordsToLine, multiPolygonToLine, singlePolygonToLine };\nexport default polygonToLine;\n"
  },
  {
    "path": "packages/turf-polygon-to-line/package.json",
    "content": "{\n  \"name\": \"@turf/polygon-to-line\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Converts a polygon to a line string.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gis\",\n    \"line\",\n    \"linestring\",\n    \"polygon\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-polygon-to-line/test/in/geometry-polygon.geojson",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [-2.275543, 53.464547],\n      [-2.275543, 53.489271],\n      [-2.215118, 53.489271],\n      [-2.215118, 53.464547],\n      [-2.275543, 53.464547]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-to-line/test/in/multi-polygon-outer-doughnut.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F0F\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [115.927734375, -34.016241889667015],\n          [134.560546875, -34.016241889667015],\n          [134.560546875, -16.8886597873816],\n          [115.927734375, -16.8886597873816],\n          [115.927734375, -34.016241889667015]\n        ],\n        [\n          [118.65234374999999, -30.90222470517144],\n          [131.484375, -30.90222470517144],\n          [131.484375, -19.808054128088575],\n          [118.65234374999999, -19.808054128088575],\n          [118.65234374999999, -30.90222470517144]\n        ]\n      ],\n      [\n        [\n          [120.9375, -28.998531814051795],\n          [129.7265625, -28.998531814051795],\n          [129.7265625, -22.105998799750566],\n          [120.9375, -22.105998799750566],\n          [120.9375, -28.998531814051795]\n        ],\n        [\n          [123.48632812499999, -27.137368359795584],\n          [127.44140625, -27.137368359795584],\n          [127.44140625, -24.126701958681668],\n          [123.48632812499999, -24.126701958681668],\n          [123.48632812499999, -27.137368359795584]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-polygon-to-line/test/in/multi-polygon-with-holes.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F00\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [102, 2],\n          [103, 2],\n          [103, 3],\n          [102, 3],\n          [102, 2]\n        ],\n        [\n          [102.227783203125, 2.191238104506552],\n          [102.227783203125, 2.8223442468940902],\n          [102.843017578125, 2.8223442468940902],\n          [102.843017578125, 2.191238104506552],\n          [102.227783203125, 2.191238104506552]\n        ]\n      ],\n      [\n        [\n          [100, 0],\n          [101, 0],\n          [101, 1],\n          [100, 1],\n          [100, 0]\n        ],\n        [\n          [100.206298828125, 0.2526847277643438],\n          [100.206298828125, 0.7909904981540058],\n          [100.8050537109375, 0.7909904981540058],\n          [100.8050537109375, 0.2526847277643438],\n          [100.206298828125, 0.2526847277643438]\n        ]\n      ],\n      [\n        [\n          [101.700439453125, 0.5273363048115169],\n          [102.645263671875, 0.5273363048115169],\n          [102.645263671875, 1.3511930983018892],\n          [101.700439453125, 1.3511930983018892],\n          [101.700439453125, 0.5273363048115169]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-polygon-to-line/test/in/multi-polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F00\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [102, 2],\n          [103, 2],\n          [103, 3],\n          [102, 3],\n          [102, 2]\n        ]\n      ],\n      [\n        [\n          [100, 0],\n          [101, 0],\n          [101, 1],\n          [100, 1],\n          [100, 0]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-polygon-to-line/test/in/polygon-with-hole.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F00\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-2.275543, 53.464547],\n        [-2.215118, 53.464547],\n        [-2.215118, 53.489271],\n        [-2.275543, 53.489271],\n        [-2.275543, 53.464547]\n      ],\n      [\n        [-2.261037826538086, 53.47062762161877],\n        [-2.2293663024902344, 53.47062762161877],\n        [-2.2293663024902344, 53.48196795587917],\n        [-2.261037826538086, 53.48196795587917],\n        [-2.261037826538086, 53.47062762161877]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-polygon-to-line/test/in/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F00\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-2.275543, 53.464547],\n        [-2.275543, 53.489271],\n        [-2.215118, 53.489271],\n        [-2.215118, 53.464547],\n        [-2.275543, 53.464547]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-polygon-to-line/test/out/geometry-polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-2.275543, 53.464547],\n      [-2.275543, 53.489271],\n      [-2.215118, 53.489271],\n      [-2.215118, 53.464547],\n      [-2.275543, 53.464547]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-polygon-to-line/test/out/multi-polygon-outer-doughnut.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F0F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [115.927734375, -34.016241889667015],\n            [134.560546875, -34.016241889667015],\n            [134.560546875, -16.8886597873816],\n            [115.927734375, -16.8886597873816],\n            [115.927734375, -34.016241889667015]\n          ],\n          [\n            [118.65234374999999, -30.90222470517144],\n            [131.484375, -30.90222470517144],\n            [131.484375, -19.808054128088575],\n            [118.65234374999999, -19.808054128088575],\n            [118.65234374999999, -30.90222470517144]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F0F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [120.9375, -28.998531814051795],\n            [129.7265625, -28.998531814051795],\n            [129.7265625, -22.105998799750566],\n            [120.9375, -22.105998799750566],\n            [120.9375, -28.998531814051795]\n          ],\n          [\n            [123.48632812499999, -27.137368359795584],\n            [127.44140625, -27.137368359795584],\n            [127.44140625, -24.126701958681668],\n            [123.48632812499999, -24.126701958681668],\n            [123.48632812499999, -27.137368359795584]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-to-line/test/out/multi-polygon-with-holes.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [102, 2],\n            [103, 2],\n            [103, 3],\n            [102, 3],\n            [102, 2]\n          ],\n          [\n            [102.227783203125, 2.191238104506552],\n            [102.227783203125, 2.8223442468940902],\n            [102.843017578125, 2.8223442468940902],\n            [102.843017578125, 2.191238104506552],\n            [102.227783203125, 2.191238104506552]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [100, 0],\n            [101, 0],\n            [101, 1],\n            [100, 1],\n            [100, 0]\n          ],\n          [\n            [100.206298828125, 0.2526847277643438],\n            [100.206298828125, 0.7909904981540058],\n            [100.8050537109375, 0.7909904981540058],\n            [100.8050537109375, 0.2526847277643438],\n            [100.206298828125, 0.2526847277643438]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [101.700439453125, 0.5273363048115169],\n          [102.645263671875, 0.5273363048115169],\n          [102.645263671875, 1.3511930983018892],\n          [101.700439453125, 1.3511930983018892],\n          [101.700439453125, 0.5273363048115169]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-to-line/test/out/multi-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [102, 2],\n          [103, 2],\n          [103, 3],\n          [102, 3],\n          [102, 2]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [100, 0],\n          [101, 0],\n          [101, 1],\n          [100, 1],\n          [100, 0]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygon-to-line/test/out/polygon-with-hole.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F00\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [-2.275543, 53.464547],\n        [-2.215118, 53.464547],\n        [-2.215118, 53.489271],\n        [-2.275543, 53.489271],\n        [-2.275543, 53.464547]\n      ],\n      [\n        [-2.261037826538086, 53.47062762161877],\n        [-2.2293663024902344, 53.47062762161877],\n        [-2.2293663024902344, 53.48196795587917],\n        [-2.261037826538086, 53.48196795587917],\n        [-2.261037826538086, 53.47062762161877]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-polygon-to-line/test/out/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#F00\",\n    \"stroke-width\": 6\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-2.275543, 53.464547],\n      [-2.275543, 53.489271],\n      [-2.215118, 53.489271],\n      [-2.215118, 53.464547],\n      [-2.275543, 53.464547]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-polygon-to-line/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { point } from \"@turf/helpers\";\nimport { polygon } from \"@turf/helpers\";\nimport { polygonToLine } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-polygon-to-linestring\", (t) => {\n  for (const { name, filename, geojson } of fixtures) {\n    const results = polygonToLine(geojson);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEqual(loadJsonFileSync(directories.out + filename), results, name);\n  }\n  // Handle Errors\n  t.throws(() => polygonToLine(point([10, 5])), \"throws - invalid geometry\");\n  t.throws(() => polygonToLine(polygon([])), \"throws - empty coordinates\");\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-polygon-to-line/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-polygonize/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-polygonize/README.md",
    "content": "# @turf/polygonize\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## polygonize\n\nPolygonizes [(Multi)LineString(s)][1] into [Polygons][2].\n\nImplementation of GEOSPolygonize function (`geos::operation::polygonize::Polygonizer`).\n\nPolygonizes a set of lines that represents edges in a planar graph. Edges must be correctly\nnoded, i.e., they must only meet at their endpoints.\n\nThe implementation correctly handles:\n\n*   Dangles: edges which have one or both ends which are not incident on another edge endpoint.\n*   Cut Edges (bridges): edges that are connected at both ends but which do not form part of a polygon.\n\n### Parameters\n\n*   `geoJson` **([FeatureCollection][3] | [Geometry][4] | [Feature][5]<([LineString][1] | [MultiLineString][6])>)** Lines in order to polygonize\n\n<!---->\n\n*   Throws **[Error][7]** if geoJson is invalid.\n\nReturns **[FeatureCollection][3]<[Polygon][2]>** Polygons created\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.1.5\n\n[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/polygonize\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-polygonize/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { polygonize } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Single Process Benchmark\n *\n * complex: 37.120ms\n * cutedge: 0.858ms\n * dangle: 0.289ms\n * two-polygons: 0.784ms\n */\nfor (const { name, geojson } of fixtures) {\n  console.time(name);\n  polygonize(geojson);\n  console.timeEnd(name);\n}\n\n/**\n * Benchmark Results\n *\n * complex x 54.67 ops/sec ±9.63% (47 runs sampled)\n * cutedge x 5,413 ops/sec ±2.20% (84 runs sampled)\n * dangle x 9,175 ops/sec ±4.44% (83 runs sampled)\n * two-polygons x 16,323 ops/sec ±1.39% (91 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-transform-polygonize\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => polygonize(geojson));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-polygonize/index.ts",
    "content": "import {\n  Feature,\n  FeatureCollection,\n  LineString,\n  MultiLineString,\n  Polygon,\n} from \"geojson\";\nimport { featureCollection } from \"@turf/helpers\";\nimport { Graph } from \"./lib/Graph.js\";\nimport { EdgeRing } from \"./lib/EdgeRing.js\";\n\n/**\n * Polygonizes {@link LineString|(Multi)LineString(s)} into {@link Polygons}.\n *\n * Implementation of GEOSPolygonize function (`geos::operation::polygonize::Polygonizer`).\n *\n * Polygonizes a set of lines that represents edges in a planar graph. Edges must be correctly\n * noded, i.e., they must only meet at their endpoints.\n *\n * The implementation correctly handles:\n *\n * - Dangles: edges which have one or both ends which are not incident on another edge endpoint.\n * - Cut Edges (bridges): edges that are connected at both ends but which do not form part of a polygon.\n *\n * @function\n * @param {FeatureCollection|Geometry|Feature<LineString|MultiLineString>} geoJson Lines in order to polygonize\n * @returns {FeatureCollection<Polygon>} Polygons created\n * @throws {Error} if geoJson is invalid.\n */\nfunction polygonize<T extends LineString | MultiLineString>(\n  geoJson: Feature<T> | FeatureCollection<T> | T\n): FeatureCollection<Polygon> {\n  const graph = Graph.fromGeoJson(geoJson);\n\n  // 1. Remove dangle node\n  graph.deleteDangles();\n\n  // 2. Remove cut-edges (bridge edges)\n  graph.deleteCutEdges();\n\n  // 3. Get all holes and shells\n  const holes: EdgeRing[] = [],\n    shells: EdgeRing[] = [];\n\n  graph\n    .getEdgeRings()\n    .filter((edgeRing) => edgeRing.isValid())\n    .forEach((edgeRing) => {\n      if (edgeRing.isHole()) holes.push(edgeRing);\n      else shells.push(edgeRing);\n    });\n\n  // 4. Assign Holes to Shells\n  holes.forEach((hole) => {\n    if (EdgeRing.findEdgeRingContaining(hole, shells)) shells.push(hole);\n  });\n\n  // 5. EdgeRings to Polygons\n  return featureCollection(shells.map((shell) => shell.toPolygon()));\n}\n\nexport { polygonize };\nexport default polygonize;\n"
  },
  {
    "path": "packages/turf-polygonize/lib/Edge.ts",
    "content": "import { lineString } from \"@turf/helpers\";\nimport { orientationIndex } from \"./util.js\";\nimport { Node } from \"./Node.js\";\nimport { EdgeRing } from \"./EdgeRing.js\";\n\n/**\n * This class is inspired by GEOS's geos::operation::polygonize::PolygonizeDirectedEdge\n */\nclass Edge {\n  public label?: number;\n  public symetric?: Edge;\n  public from: Node;\n  public to: Node;\n  public next?: Edge;\n  public ring?: EdgeRing;\n\n  /**\n   * Creates or get the symetric Edge.\n   *\n   * @returns {Edge} - Symetric Edge.\n   */\n  getSymetric() {\n    if (!this.symetric) {\n      this.symetric = new Edge(this.to, this.from);\n      this.symetric.symetric = this;\n    }\n\n    return this.symetric;\n  }\n\n  /**\n   * @param {Node} from - start node of the Edge\n   * @param {Node} to - end node of the edge\n   */\n  constructor(from: Node, to: Node) {\n    this.from = from; //< start\n    this.to = to; //< End\n\n    this.next = undefined; //< The edge to be computed after\n    this.label = undefined; //< Used in order to detect Cut Edges (Bridges)\n    this.symetric = undefined; //< The symetric edge of this\n    this.ring = undefined; //< EdgeRing in which the Edge is\n\n    this.from.addOuterEdge(this);\n    this.to.addInnerEdge(this);\n  }\n\n  /**\n   * Removes edge from from and to nodes.\n   */\n  deleteEdge() {\n    this.from.removeOuterEdge(this);\n    this.to.removeInnerEdge(this);\n  }\n\n  /**\n   * Compares Edge equallity.\n   *\n   * An edge is equal to another, if the from and to nodes are the same.\n   *\n   * @param {Edge} edge - Another Edge\n   * @returns {boolean} - True if Edges are equal, False otherwise\n   */\n  isEqual(edge: Edge) {\n    return this.from.id === edge.from.id && this.to.id === edge.to.id;\n  }\n\n  toString() {\n    return `Edge { ${this.from.id} -> ${this.to.id} }`;\n  }\n\n  /**\n   * Returns a LineString representation of the Edge\n   *\n   * @returns {Feature<LineString>} - LineString representation of the Edge\n   */\n  toLineString() {\n    return lineString([this.from.coordinates, this.to.coordinates]);\n  }\n\n  /**\n   * Comparator of two edges.\n   *\n   * Implementation of geos::planargraph::DirectedEdge::compareTo.\n   *\n   * @param {Edge} edge - Another edge to compare with this one\n   * @returns {number} -1 if this Edge has a greater angle with the positive x-axis than b,\n   *          0 if the Edges are colinear,\n   *          1 otherwise\n   */\n  compareTo(edge: Edge) {\n    return orientationIndex(\n      edge.from.coordinates,\n      edge.to.coordinates,\n      this.to.coordinates\n    );\n  }\n}\n\nexport { Edge };\nexport default Edge;\n"
  },
  {
    "path": "packages/turf-polygonize/lib/EdgeRing.ts",
    "content": "import { Polygon, Feature, Point, Position } from \"geojson\";\nimport {\n  orientationIndex,\n  envelopeIsEqual,\n  envelopeContains,\n  coordinatesEqual,\n} from \"./util.js\";\nimport { multiPoint, polygon, point } from \"@turf/helpers\";\nimport { envelope } from \"@turf/envelope\";\nimport { booleanPointInPolygon } from \"@turf/boolean-point-in-polygon\";\nimport { Edge } from \"./Edge.js\";\n\n/**\n * Ring of edges which form a polygon.\n *\n * The ring may be either an outer shell or a hole.\n *\n * This class is inspired in GEOS's geos::operation::polygonize::EdgeRing\n */\nclass EdgeRing {\n  private edges: Edge[];\n  private polygon?: Feature<\n    Polygon,\n    {\n      [name: string]: any;\n    }\n  >;\n  private envelope?: Feature<\n    Polygon,\n    {\n      [name: string]: any;\n    }\n  >;\n\n  constructor() {\n    this.edges = [];\n    this.polygon = undefined; //< Caches Polygon representation\n    this.envelope = undefined; //< Caches Envelope representation\n  }\n\n  /**\n   * Add an edge to the ring, inserting it in the last position.\n   *\n   * @memberof EdgeRing\n   * @param {Edge} edge - Edge to be inserted\n   */\n  push(edge: Edge) {\n    this.edges.push(edge);\n    this.polygon = this.envelope = undefined;\n  }\n\n  /**\n   * Get Edge.\n   *\n   * @memberof EdgeRing\n   * @param {number} i - Index\n   * @returns {Edge} - Edge in the i position\n   */\n  get(i: number) {\n    return this.edges[i];\n  }\n\n  /**\n   * Getter of length property.\n   *\n   * @memberof EdgeRing\n   * @returns {number} - Length of the edge ring.\n   */\n  get length() {\n    return this.edges.length;\n  }\n\n  /**\n   * Similar to Array.prototype.forEach for the list of Edges in the EdgeRing.\n   *\n   * @memberof EdgeRing\n   * @param {Function} f - The same function to be passed to Array.prototype.forEach\n   */\n  forEach(f: (edge: Edge, index: number, array: Edge[]) => void) {\n    this.edges.forEach(f);\n  }\n\n  /**\n   * Similar to Array.prototype.map for the list of Edges in the EdgeRing.\n   *\n   * @memberof EdgeRing\n   * @param {Function} f - The same function to be passed to Array.prototype.map\n   * @returns {Array} - The mapped values in the function\n   */\n  map<T>(f: (edge: Edge, index: number, array: Edge[]) => T): T[] {\n    return this.edges.map(f);\n  }\n\n  /**\n   * Similar to Array.prototype.some for the list of Edges in the EdgeRing.\n   *\n   * @memberof EdgeRing\n   * @param {Function} f - The same function to be passed to Array.prototype.some\n   * @returns {boolean} - True if an Edge check the condition\n   */\n  some(f: (edge: Edge, index: number, array: Edge[]) => boolean) {\n    return this.edges.some(f);\n  }\n\n  /**\n   * Check if the ring is valid in geomtry terms.\n   *\n   * A ring must have either 0 or 4 or more points. The first and the last must be\n   * equal (in 2D)\n   * geos::geom::LinearRing::validateConstruction\n   *\n   * @memberof EdgeRing\n   * @returns {boolean} - Validity of the EdgeRing\n   */\n  isValid() {\n    // TODO: stub\n    return true;\n  }\n\n  /**\n   * Tests whether this ring is a hole.\n   *\n   * A ring is a hole if it is oriented counter-clockwise.\n   * Similar implementation of geos::algorithm::CGAlgorithms::isCCW\n   *\n   * @memberof EdgeRing\n   * @returns {boolean} - true: if it is a hole\n   */\n  isHole() {\n    // XXX: Assuming Ring is valid\n    // Find highest point\n    const hiIndex = this.edges.reduce((high, edge, i) => {\n        if (edge.from.coordinates[1] > this.edges[high].from.coordinates[1])\n          high = i;\n        return high;\n      }, 0),\n      iPrev = (hiIndex === 0 ? this.length : hiIndex) - 1,\n      iNext = (hiIndex + 1) % this.length,\n      disc = orientationIndex(\n        this.edges[iPrev].from.coordinates,\n        this.edges[hiIndex].from.coordinates,\n        this.edges[iNext].from.coordinates\n      );\n\n    if (disc === 0)\n      return (\n        this.edges[iPrev].from.coordinates[0] >\n        this.edges[iNext].from.coordinates[0]\n      );\n    return disc > 0;\n  }\n\n  /**\n   * Creates a MultiPoint representing the EdgeRing (discarts edges directions).\n   *\n   * @memberof EdgeRing\n   * @returns {Feature<MultiPoint>} - Multipoint representation of the EdgeRing\n   */\n  toMultiPoint() {\n    return multiPoint(this.edges.map((edge) => edge.from.coordinates));\n  }\n\n  /**\n   * Creates a Polygon representing the EdgeRing.\n   *\n   * @memberof EdgeRing\n   * @returns {Feature<Polygon>} - Polygon representation of the Edge Ring\n   */\n  toPolygon() {\n    if (this.polygon) return this.polygon;\n    const coordinates = this.edges.map((edge) => edge.from.coordinates);\n    coordinates.push(this.edges[0].from.coordinates);\n    return (this.polygon = polygon([coordinates]));\n  }\n\n  /**\n   * Calculates the envelope of the EdgeRing.\n   *\n   * @memberof EdgeRing\n   * @returns {Feature<Polygon>} - envelope\n   */\n  getEnvelope() {\n    if (this.envelope) return this.envelope;\n    return (this.envelope = envelope(this.toPolygon()) as Feature<\n      Polygon,\n      { [name: string]: any }\n    >);\n  }\n\n  /**\n   * `geos::operation::polygonize::EdgeRing::findEdgeRingContaining`\n   *\n   * @param {EdgeRing} testEdgeRing - EdgeRing to look in the list\n   * @param {EdgeRing[]} shellList - List of EdgeRing in which to search\n   *\n   * @returns {EdgeRing} - EdgeRing which contains the testEdgeRing\n   */\n  static findEdgeRingContaining(\n    testEdgeRing: EdgeRing,\n    shellList: EdgeRing[]\n  ): EdgeRing | undefined {\n    const testEnvelope = testEdgeRing.getEnvelope();\n\n    let minEnvelope: Feature<Polygon>, minShell: EdgeRing | undefined;\n    shellList.forEach((shell) => {\n      const tryEnvelope = shell.getEnvelope();\n\n      if (minShell) minEnvelope = minShell.getEnvelope();\n\n      // the hole envelope cannot equal the shell envelope\n      if (envelopeIsEqual(tryEnvelope, testEnvelope)) return;\n\n      if (envelopeContains(tryEnvelope, testEnvelope)) {\n        const testEdgeRingCoordinates = testEdgeRing.map(\n          (edge) => edge.from.coordinates\n        );\n\n        let testPoint: Position | undefined;\n        for (const pt of testEdgeRingCoordinates) {\n          if (\n            !shell.some((edge) => coordinatesEqual(pt, edge.from.coordinates))\n          ) {\n            testPoint = pt;\n          }\n        }\n\n        if (testPoint && shell.inside(point(testPoint))) {\n          if (!minShell || envelopeContains(minEnvelope, tryEnvelope))\n            minShell = shell;\n        }\n      }\n    });\n\n    return minShell;\n  }\n\n  /**\n   * Checks if the point is inside the edgeRing\n   *\n   * @param {Feature<Point>} pt - Point to check if it is inside the edgeRing\n   * @returns {boolean} - True if it is inside, False otherwise\n   */\n  inside(pt: Feature<Point>) {\n    return booleanPointInPolygon(pt, this.toPolygon());\n  }\n}\n\nexport { EdgeRing };\nexport default EdgeRing;\n"
  },
  {
    "path": "packages/turf-polygonize/lib/Graph.ts",
    "content": "import { Node } from \"./Node.js\";\nimport { Edge } from \"./Edge.js\";\nimport { EdgeRing } from \"./EdgeRing.js\";\nimport { flattenEach, coordReduce } from \"@turf/meta\";\nimport { featureOf } from \"@turf/invariant\";\nimport {\n  FeatureCollection,\n  LineString,\n  MultiLineString,\n  Feature,\n} from \"geojson\";\nimport { AllGeoJSON } from \"@turf/helpers\";\n\n/**\n * Validates the geoJson.\n *\n * @param {GeoJSON} geoJson - input geoJson.\n * @throws {Error} if geoJson is invalid.\n */\nfunction validateGeoJson(geoJson: AllGeoJSON) {\n  if (!geoJson) throw new Error(\"No geojson passed\");\n\n  if (\n    geoJson.type !== \"FeatureCollection\" &&\n    geoJson.type !== \"GeometryCollection\" &&\n    geoJson.type !== \"MultiLineString\" &&\n    geoJson.type !== \"LineString\" &&\n    geoJson.type !== \"Feature\"\n  )\n    throw new Error(\n      `Invalid input type '${geoJson.type}'. Geojson must be FeatureCollection, GeometryCollection, LineString, MultiLineString or Feature`\n    );\n}\n\n/**\n * Represents a planar graph of edges and nodes that can be used to compute a polygonization.\n *\n * Although, this class is inspired by GEOS's `geos::operation::polygonize::PolygonizeGraph`,\n * it isn't a rewrite. As regards algorithm, this class implements the same logic, but it\n * isn't a javascript transcription of the C++ source.\n *\n * This graph is directed (both directions are created)\n */\nclass Graph {\n  private nodes: { [id: string]: Node };\n  private edges: Edge[];\n\n  /**\n   * Creates a graph from a GeoJSON.\n   *\n   * @param {FeatureCollection<LineString>} geoJson - it must comply with the restrictions detailed in the index\n   * @returns {Graph} - The newly created graph\n   * @throws {Error} if geoJson is invalid.\n   */\n  static fromGeoJson(\n    geoJson:\n      | FeatureCollection<LineString | MultiLineString>\n      | LineString\n      | MultiLineString\n      | Feature<LineString | MultiLineString>\n  ) {\n    validateGeoJson(geoJson);\n\n    const graph = new Graph();\n    flattenEach(geoJson, (feature) => {\n      featureOf(feature, \"LineString\", \"Graph::fromGeoJson\");\n      // When a LineString if formed by many segments, split them\n      coordReduce<number[]>(feature, (prev, cur) => {\n        if (prev) {\n          const start = graph.getNode(prev),\n            end = graph.getNode(cur);\n\n          graph.addEdge(start, end);\n        }\n        return cur;\n      });\n    });\n\n    return graph;\n  }\n\n  /**\n   * Creates or get a Node.\n   *\n   * @param {number[]} coordinates - Coordinates of the node\n   * @returns {Node} - The created or stored node\n   */\n  getNode(coordinates: number[]) {\n    const id = Node.buildId(coordinates);\n    let node = this.nodes[id];\n    if (!node) node = this.nodes[id] = new Node(coordinates);\n\n    return node;\n  }\n\n  /**\n   * Adds an Edge and its symetricall.\n   *\n   * Edges are added symetrically, i.e.: we also add its symetric\n   *\n   * @param {Node} from - Node which starts the Edge\n   * @param {Node} to - Node which ends the Edge\n   */\n  addEdge(from: Node, to: Node) {\n    const edge = new Edge(from, to),\n      symetricEdge = edge.getSymetric();\n\n    this.edges.push(edge);\n    this.edges.push(symetricEdge);\n  }\n\n  constructor() {\n    this.edges = []; //< {Edge[]} dirEdges\n\n    // The key is the `id` of the Node (ie: coordinates.join(','))\n    this.nodes = {};\n  }\n\n  /**\n   * Removes Dangle Nodes (nodes with grade 1).\n   */\n  deleteDangles() {\n    Object.keys(this.nodes)\n      .map((id) => this.nodes[id])\n      .forEach((node) => this._removeIfDangle(node));\n  }\n\n  /**\n   * Check if node is dangle, if so, remove it.\n   *\n   * It calls itself recursively, removing a dangling node might cause another dangling node\n   *\n   * @param {Node} node - Node to check if it's a dangle\n   */\n  _removeIfDangle(node: Node) {\n    // As edges are directed and symetrical, we count only innerEdges\n    if (node.innerEdges.length <= 1) {\n      const outerNodes = node.getOuterEdges().map((e) => e.to);\n      this.removeNode(node);\n      outerNodes.forEach((n) => this._removeIfDangle(n));\n    }\n  }\n\n  /**\n   * Delete cut-edges (bridge edges).\n   *\n   * The graph will be traversed, all the edges will be labeled according the ring\n   * in which they are. (The label is a number incremented by 1). Edges with the same\n   * label are cut-edges.\n   */\n  deleteCutEdges() {\n    this._computeNextCWEdges();\n    this._findLabeledEdgeRings();\n\n    // Cut-edges (bridges) are edges where both edges have the same label\n    this.edges.forEach((edge) => {\n      if (edge.label === edge.symetric!.label) {\n        this.removeEdge(edge.symetric!);\n        this.removeEdge(edge);\n      }\n    });\n  }\n\n  /**\n   * Set the `next` property of each Edge.\n   *\n   * The graph will be transversed in a CW form, so, we set the next of the symetrical edge as the previous one.\n   * OuterEdges are sorted CCW.\n   *\n   * @param {Node} [node] - If no node is passed, the function calls itself for every node in the Graph\n   */\n  _computeNextCWEdges(node?: Node) {\n    if (typeof node === \"undefined\") {\n      Object.keys(this.nodes).forEach((id) =>\n        this._computeNextCWEdges(this.nodes[id])\n      );\n    } else {\n      node.getOuterEdges().forEach((edge, i) => {\n        node.getOuterEdge(\n          (i === 0 ? node.getOuterEdges().length : i) - 1\n        ).symetric!.next = edge;\n      });\n    }\n  }\n\n  /**\n   * Computes the next edge pointers going CCW around the given node, for the given edgering label.\n   *\n   * This algorithm has the effect of converting maximal edgerings into minimal edgerings\n   *\n   * XXX: method literally transcribed from `geos::operation::polygonize::PolygonizeGraph::computeNextCCWEdges`,\n   * could be written in a more javascript way.\n   *\n   * @param {Node} node - Node\n   * @param {number} label - Ring's label\n   */\n  _computeNextCCWEdges(node: Node, label: number) {\n    const edges = node.getOuterEdges();\n    let firstOutDE, prevInDE;\n\n    for (let i = edges.length - 1; i >= 0; --i) {\n      let de = edges[i],\n        sym = de.symetric,\n        outDE,\n        inDE;\n\n      if (de.label === label) outDE = de;\n\n      if (sym!.label === label) inDE = sym;\n\n      if (!outDE || !inDE)\n        // This edge is not in edgering\n        continue;\n\n      if (inDE) prevInDE = inDE;\n\n      if (outDE) {\n        if (prevInDE) {\n          prevInDE.next = outDE;\n          prevInDE = undefined;\n        }\n\n        if (!firstOutDE) firstOutDE = outDE;\n      }\n    }\n\n    if (prevInDE) prevInDE.next = firstOutDE;\n  }\n\n  /**\n   * Finds rings and labels edges according to which rings are.\n   *\n   * The label is a number which is increased for each ring.\n   *\n   * @returns {Edge[]} edges that start rings\n   */\n  _findLabeledEdgeRings() {\n    const edgeRingStarts: Edge[] = [];\n    let label = 0;\n    this.edges.forEach((edge) => {\n      if (edge.label! >= 0) return;\n\n      edgeRingStarts.push(edge);\n\n      let e = edge;\n      do {\n        e.label = label;\n        e = e.next!;\n      } while (!edge.isEqual(e));\n\n      label++;\n    });\n\n    return edgeRingStarts;\n  }\n\n  /**\n   * Computes the EdgeRings formed by the edges in this graph.\n   *\n   * @returns {EdgeRing[]} - A list of all the EdgeRings in the graph.\n   */\n  getEdgeRings() {\n    this._computeNextCWEdges();\n\n    // Clear labels\n    this.edges.forEach((edge) => {\n      edge.label = undefined;\n    });\n\n    this._findLabeledEdgeRings().forEach((edge) => {\n      // convertMaximalToMinimalEdgeRings\n      this._findIntersectionNodes(edge).forEach((node) => {\n        this._computeNextCCWEdges(node, edge.label!);\n      });\n    });\n\n    const edgeRingList: EdgeRing[] = [];\n\n    // find all edgerings\n    this.edges.forEach((edge) => {\n      if (edge.ring) return;\n      edgeRingList.push(this._findEdgeRing(edge));\n    });\n\n    return edgeRingList;\n  }\n\n  /**\n   * Find all nodes in a Maxima EdgeRing which are self-intersection nodes.\n   *\n   * @param {Node} startEdge - Start Edge of the Ring\n   * @returns {Node[]} - intersection nodes\n   */\n  _findIntersectionNodes(startEdge: Edge) {\n    const intersectionNodes = [];\n    let edge = startEdge;\n    do {\n      // getDegree\n      let degree = 0;\n      edge.from.getOuterEdges().forEach((e) => {\n        if (e.label === startEdge.label) ++degree;\n      });\n\n      if (degree > 1) intersectionNodes.push(edge.from);\n\n      edge = edge.next!;\n    } while (!startEdge.isEqual(edge));\n\n    return intersectionNodes;\n  }\n\n  /**\n   * Get the edge-ring which starts from the provided Edge.\n   *\n   * @param {Edge} startEdge - starting edge of the edge ring\n   * @returns {EdgeRing} - EdgeRing which start Edge is the provided one.\n   */\n  _findEdgeRing(startEdge: Edge) {\n    let edge = startEdge;\n    const edgeRing = new EdgeRing();\n\n    do {\n      edgeRing.push(edge);\n      edge.ring = edgeRing;\n      edge = edge.next!;\n    } while (!startEdge.isEqual(edge));\n\n    return edgeRing;\n  }\n\n  /**\n   * Removes a node from the Graph.\n   *\n   * It also removes edges asociated to that node\n   * @param {Node} node - Node to be removed\n   */\n  removeNode(node: Node) {\n    node.getOuterEdges().forEach((edge) => this.removeEdge(edge));\n    node.innerEdges.forEach((edge) => this.removeEdge(edge));\n    delete this.nodes[node.id];\n  }\n\n  /**\n   * Remove edge from the graph and deletes the edge.\n   *\n   * @param {Edge} edge - Edge to be removed\n   */\n  removeEdge(edge: Edge) {\n    this.edges = this.edges.filter((e) => !e.isEqual(edge));\n    edge.deleteEdge();\n  }\n}\n\nexport { Graph };\nexport default Graph;\n"
  },
  {
    "path": "packages/turf-polygonize/lib/Node.ts",
    "content": "import { orientationIndex } from \"./util.js\";\nimport { Edge } from \"./Edge.js\";\n\n/**\n * Node\n */\nclass Node {\n  static buildId(coordinates: number[]) {\n    return coordinates.join(\",\");\n  }\n\n  public id: string;\n  public coordinates: number[];\n  public innerEdges: Edge[];\n  private outerEdges: Edge[];\n  private outerEdgesSorted: boolean;\n\n  constructor(coordinates: number[]) {\n    this.id = Node.buildId(coordinates);\n    this.coordinates = coordinates; //< {Number[]}\n    this.innerEdges = []; //< {Edge[]}\n\n    // We wil store to (out) edges in an CCW order as geos::planargraph::DirectedEdgeStar does\n    this.outerEdges = []; //< {Edge[]}\n    this.outerEdgesSorted = false; //< {Boolean} flag that stores if the outer Edges had been sorted\n  }\n\n  removeInnerEdge(edge: Edge) {\n    this.innerEdges = this.innerEdges.filter((e) => e.from.id !== edge.from.id);\n  }\n\n  removeOuterEdge(edge: Edge) {\n    this.outerEdges = this.outerEdges.filter((e) => e.to.id !== edge.to.id);\n  }\n\n  /**\n   * Outer edges are stored CCW order.\n   *\n   * @memberof Node\n   * @param {Edge} edge - Edge to add as an outerEdge.\n   */\n  addOuterEdge(edge: Edge) {\n    this.outerEdges.push(edge);\n    this.outerEdgesSorted = false;\n  }\n\n  /**\n   * Sorts outer edges in CCW way.\n   *\n   * @memberof Node\n   * @private\n   */\n  sortOuterEdges() {\n    if (!this.outerEdgesSorted) {\n      //this.outerEdges.sort((a, b) => a.compareTo(b));\n      // Using this comparator in order to be deterministic\n      this.outerEdges.sort((a, b) => {\n        const aNode = a.to,\n          bNode = b.to;\n\n        if (\n          aNode.coordinates[0] - this.coordinates[0] >= 0 &&\n          bNode.coordinates[0] - this.coordinates[0] < 0\n        )\n          return 1;\n        if (\n          aNode.coordinates[0] - this.coordinates[0] < 0 &&\n          bNode.coordinates[0] - this.coordinates[0] >= 0\n        )\n          return -1;\n\n        if (\n          aNode.coordinates[0] - this.coordinates[0] === 0 &&\n          bNode.coordinates[0] - this.coordinates[0] === 0\n        ) {\n          if (\n            aNode.coordinates[1] - this.coordinates[1] >= 0 ||\n            bNode.coordinates[1] - this.coordinates[1] >= 0\n          )\n            return aNode.coordinates[1] - bNode.coordinates[1];\n          return bNode.coordinates[1] - aNode.coordinates[1];\n        }\n\n        const det = orientationIndex(\n          this.coordinates,\n          aNode.coordinates,\n          bNode.coordinates\n        );\n        if (det < 0) return 1;\n        if (det > 0) return -1;\n\n        const d1 =\n            Math.pow(aNode.coordinates[0] - this.coordinates[0], 2) +\n            Math.pow(aNode.coordinates[1] - this.coordinates[1], 2),\n          d2 =\n            Math.pow(bNode.coordinates[0] - this.coordinates[0], 2) +\n            Math.pow(bNode.coordinates[1] - this.coordinates[1], 2);\n\n        return d1 - d2;\n      });\n      this.outerEdgesSorted = true;\n    }\n  }\n\n  /**\n   * Retrieves outer edges.\n   *\n   * They are sorted if they aren't in the CCW order.\n   *\n   * @memberof Node\n   * @returns {Edge[]} - List of outer edges sorted in a CCW order.\n   */\n  getOuterEdges() {\n    this.sortOuterEdges();\n    return this.outerEdges;\n  }\n\n  getOuterEdge(i: number) {\n    this.sortOuterEdges();\n    return this.outerEdges[i];\n  }\n\n  addInnerEdge(edge: Edge) {\n    this.innerEdges.push(edge);\n  }\n}\n\nexport { Node };\nexport default Node;\n"
  },
  {
    "path": "packages/turf-polygonize/lib/util.ts",
    "content": "import { Feature, Polygon } from \"geojson\";\nimport { booleanPointInPolygon } from \"@turf/boolean-point-in-polygon\";\nimport { point } from \"@turf/helpers\";\n\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign#Polyfill\nfunction mathSign(x: number) {\n  return ((x > 0) as unknown as number) - ((x < 0) as unknown as number) || +x;\n}\n\n/**\n * Returns the direction of the point q relative to the vector p1 -> p2.\n *\n * Implementation of geos::algorithm::CGAlgorithm::orientationIndex()\n * (same as geos::algorithm::CGAlgorithm::computeOrientation())\n *\n * @param {number[]} p1 - the origin point of the vector\n * @param {number[]} p2 - the final point of the vector\n * @param {number[]} q - the point to compute the direction to\n *\n * @returns {number} - 1 if q is ccw (left) from p1->p2,\n *    -1 if q is cw (right) from p1->p2,\n *     0 if q is colinear with p1->p2\n */\nexport function orientationIndex(p1: number[], p2: number[], q: number[]) {\n  const dx1 = p2[0] - p1[0],\n    dy1 = p2[1] - p1[1],\n    dx2 = q[0] - p2[0],\n    dy2 = q[1] - p2[1];\n\n  return mathSign(dx1 * dy2 - dx2 * dy1);\n}\n\n/**\n * Checks if two envelopes are equal.\n *\n * The function assumes that the arguments are envelopes, i.e.: Rectangular polygon\n *\n * @param {Feature<Polygon>} env1 - Envelope\n * @param {Feature<Polygon>} env2 - Envelope\n * @returns {boolean} - True if the envelopes are equal\n */\nexport function envelopeIsEqual(\n  env1: Feature<Polygon>,\n  env2: Feature<Polygon>\n) {\n  const envX1 = env1.geometry.coordinates[0].map((c) => c[0]),\n    envY1 = env1.geometry.coordinates[0].map((c) => c[1]),\n    envX2 = env2.geometry.coordinates[0].map((c) => c[0]),\n    envY2 = env2.geometry.coordinates[0].map((c) => c[1]);\n\n  return (\n    Math.max.apply(null, envX1) === Math.max.apply(null, envX2) &&\n    Math.max.apply(null, envY1) === Math.max.apply(null, envY2) &&\n    Math.min.apply(null, envX1) === Math.min.apply(null, envX2) &&\n    Math.min.apply(null, envY1) === Math.min.apply(null, envY2)\n  );\n}\n\n/**\n * Check if a envelope is contained in other one.\n *\n * The function assumes that the arguments are envelopes, i.e.: Convex polygon\n * XXX: Envelopes are rectangular, checking if a point is inside a rectangule is something easy,\n * this could be further improved.\n *\n * @param {Feature<Polygon>} self - Envelope\n * @param {Feature<Polygon>} env - Envelope\n * @returns {boolean} - True if env is contained in self\n */\nexport function envelopeContains(\n  self: Feature<Polygon>,\n  env: Feature<Polygon>\n) {\n  return env.geometry.coordinates[0].every((c) =>\n    booleanPointInPolygon(point(c), self)\n  );\n}\n\n/**\n * Checks if two coordinates are equal.\n *\n * @param {number[]} coord1 - First coordinate\n * @param {number[]} coord2 - Second coordinate\n * @returns {boolean} - True if coordinates are equal\n */\nexport function coordinatesEqual(coord1: number[], coord2: number[]) {\n  return coord1[0] === coord2[0] && coord1[1] === coord2[1];\n}\n"
  },
  {
    "path": "packages/turf-polygonize/package.json",
    "content": "{\n  \"name\": \"@turf/polygonize\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Polygonizes a set of lines that represents edges in a planar graph.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Nicolas Cisco <@nickcis>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"gis\",\n    \"polygonize\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/boolean-point-in-polygon\": \"workspace:*\",\n    \"@turf/envelope\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-polygonize/test/in/complex.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4003789, -34.8024187],\n          [-58.4012571, -34.8013012]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4012571, -34.8013012],\n          [-58.4020709, -34.8002564]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4020709, -34.8002564],\n          [-58.4026441, -34.7995347]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4026441, -34.7995347],\n          [-58.4032748, -34.7987421]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4032748, -34.7987421],\n          [-58.40353, -34.7986715]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.40353, -34.7986715],\n          [-58.4045643, -34.7970077]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4045643, -34.7970077],\n          [-58.4051217, -34.7960535]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4069531, -34.7970396],\n          [-58.4061007, -34.797642]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4061007, -34.797642],\n          [-58.4054827, -34.7986499]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4054827, -34.7986499],\n          [-58.4043951, -34.7993638]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4043951, -34.7993638],\n          [-58.4037967, -34.8001502]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4037967, -34.8001502],\n          [-58.4032304, -34.80088]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4032304, -34.80088],\n          [-58.4024017, -34.8019585]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4024017, -34.8019585],\n          [-58.4015377, -34.8030708]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3959417, -34.8036499],\n          [-58.395087, -34.8031464]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.395087, -34.8031464],\n          [-58.3942128, -34.8026319]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3942128, -34.8026319],\n          [-58.3937803, -34.8023836]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3937803, -34.8023836],\n          [-58.3937374, -34.8023571]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3937374, -34.8023571],\n          [-58.3935525, -34.8022475]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3935525, -34.8022475],\n          [-58.3924396, -34.8015867]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3924396, -34.8015867],\n          [-58.3913232, -34.8009287]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3913232, -34.8009287],\n          [-58.390647, -34.8005306]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3929547, -34.8030144],\n          [-58.3918268, -34.8023406]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3918268, -34.8023406],\n          [-58.39097, -34.8018398]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.39097, -34.8018398],\n          [-58.3908824, -34.80173]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3908824, -34.80173],\n          [-58.3907391, -34.8016607]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3935525, -34.8022475],\n          [-58.3929547, -34.8030144]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3929547, -34.8030144],\n          [-58.3919262, -34.8043515]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3919262, -34.8043515],\n          [-58.3912106, -34.805308]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3912106, -34.805308],\n          [-58.3903757, -34.8063186]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3907792, -34.8036757],\n          [-58.3919262, -34.8043515]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3919262, -34.8043515],\n          [-58.3929448, -34.8049413]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3929448, -34.8049413],\n          [-58.3932414, -34.8051253]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3929547, -34.8030144],\n          [-58.3930577, -34.8030849]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3930577, -34.8030849],\n          [-58.3929448, -34.8049413]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3929448, -34.8049413],\n          [-58.3929333, -34.8056958]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3929333, -34.8056958],\n          [-58.3925604, -34.8061236]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3925604, -34.8061236],\n          [-58.3917149, -34.8070982]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3917149, -34.8070982],\n          [-58.3906765, -34.8083226]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3906765, -34.8083226],\n          [-58.3906293, -34.8083765]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3906293, -34.8083765],\n          [-58.3905693, -34.8089708]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3931006, -34.8064748],\n          [-58.3925604, -34.8061236]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3925604, -34.8061236],\n          [-58.3912106, -34.805308]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3912106, -34.805308],\n          [-58.3900486, -34.8046158]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3900486, -34.8046158],\n          [-58.3887181, -34.8038776]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3954262, -34.7994934],\n          [-58.3962631, -34.7999826]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3962631, -34.7999826],\n          [-58.3963617, -34.8000402]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3963617, -34.8000402],\n          [-58.3977629, -34.8008817]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3977629, -34.8008817],\n          [-58.3980104, -34.8010326]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4056871, -34.803814],\n          [-58.40459, -34.8031917]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.40459, -34.8031917],\n          [-58.4035424, -34.8026119]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4035424, -34.8026119],\n          [-58.4024017, -34.8019585]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4024017, -34.8019585],\n          [-58.4012571, -34.8013012]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4012571, -34.8013012],\n          [-58.4003196, -34.8007694]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4003196, -34.8007694],\n          [-58.4000651, -34.800625]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4000651, -34.800625],\n          [-58.3994936, -34.8003009]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4005863, -34.7973807],\n          [-58.3999811, -34.7981126]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3999811, -34.7981126],\n          [-58.3994224, -34.7987983]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3994224, -34.7987983],\n          [-58.3991078, -34.7991665]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3991078, -34.7991665],\n          [-58.3986112, -34.7998147]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3986112, -34.7998147],\n          [-58.3980853, -34.8004779]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3980853, -34.8004779],\n          [-58.3977629, -34.8008817]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4000651, -34.800625],\n          [-58.4008757, -34.7995904]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4008757, -34.7995904],\n          [-58.4014189, -34.7988802]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4014189, -34.7988802],\n          [-58.4020013, -34.7981301]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4003196, -34.8007694],\n          [-58.399452, -34.8018971]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3940899, -34.8003361],\n          [-58.3945242, -34.8006035]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4001253, -34.8060931],\n          [-58.400154, -34.8060524]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.400154, -34.8060524],\n          [-58.400195, -34.8060195]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.400195, -34.8060195],\n          [-58.4002453, -34.805997]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4002453, -34.805997],\n          [-58.4003011, -34.8059864]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4003011, -34.8059864],\n          [-58.4003583, -34.8059886]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4003583, -34.8059886],\n          [-58.4004127, -34.8060034]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4004127, -34.8060034],\n          [-58.4004602, -34.8060297]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4004602, -34.8060297],\n          [-58.4005021, -34.8060719]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4005021, -34.8060719],\n          [-58.4005258, -34.8061227]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4005258, -34.8061227],\n          [-58.4005291, -34.806177]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4005291, -34.806177],\n          [-58.4005117, -34.8062295]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4005117, -34.8062295],\n          [-58.4004752, -34.806275]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4004602, -34.8060297],\n          [-58.4013091, -34.8049401]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4013091, -34.8049401],\n          [-58.4015784, -34.8046036]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4015784, -34.8046036],\n          [-58.4024151, -34.8035586]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3941494, -34.8144285],\n          [-58.3947151, -34.8135927]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3947151, -34.8135927],\n          [-58.39521, -34.8128913]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.39521, -34.8128913],\n          [-58.3961515, -34.8116469]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3961515, -34.8116469],\n          [-58.3966281, -34.8110239]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3966281, -34.8110239],\n          [-58.3970574, -34.8104706]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3970574, -34.8104706],\n          [-58.3970575, -34.8103726]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3970575, -34.8103726],\n          [-58.3978259, -34.8093579]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3978259, -34.8093579],\n          [-58.3985907, -34.8083664]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3985907, -34.8083664],\n          [-58.3993749, -34.8073699]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3993749, -34.8073699],\n          [-58.400226, -34.8063129]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4028696, -34.8075087],\n          [-58.4015378, -34.8068225]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4015378, -34.8068225],\n          [-58.4004752, -34.806275]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4013631, -34.8029699],\n          [-58.4005424, -34.8040087]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4005424, -34.8040087],\n          [-58.399244, -34.8055954]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.399244, -34.8055954],\n          [-58.3983081, -34.806706]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3983081, -34.806706],\n          [-58.3974713, -34.8077069]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3974713, -34.8077069],\n          [-58.3966454, -34.8086947]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4011968, -34.8097556],\n          [-58.4000438, -34.809165]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4000438, -34.809165],\n          [-58.3999022, -34.8090924]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3999022, -34.8090924],\n          [-58.3998633, -34.8090725]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3998633, -34.8090725],\n          [-58.3985907, -34.8083664]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3985907, -34.8083664],\n          [-58.3974713, -34.8077069]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3974713, -34.8077069],\n          [-58.3964129, -34.8070746]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3964129, -34.8070746],\n          [-58.3949373, -34.8061929]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3949373, -34.8061929],\n          [-58.3941477, -34.8057278]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4015784, -34.8046036],\n          [-58.4005424, -34.8040087]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4005424, -34.8040087],\n          [-58.3994805, -34.8033989]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3994805, -34.8033989],\n          [-58.398366, -34.8027589]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.398366, -34.8027589],\n          [-58.3971802, -34.8020789]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3980104, -34.8010326],\n          [-58.3971802, -34.8020789]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3971802, -34.8020789],\n          [-58.3969642, -34.8023356]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3969642, -34.8023356],\n          [-58.3964727, -34.8029764]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3964727, -34.8029764],\n          [-58.3959417, -34.8036499]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3952781, -34.8013356],\n          [-58.3969642, -34.8023356]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.395087, -34.8031464],\n          [-58.3942164, -34.8042266]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3942164, -34.8042266],\n          [-58.3935984, -34.8050019]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3942164, -34.8042266],\n          [-58.3949969, -34.8047067]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3949969, -34.8047067],\n          [-58.3957427, -34.8051655]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3957427, -34.8051655],\n          [-58.3972354, -34.8060837]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3972354, -34.8060837],\n          [-58.3983081, -34.806706]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3983081, -34.806706],\n          [-58.3993749, -34.8073699]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.396618, -34.8040484],\n          [-58.3957427, -34.8051655]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3957427, -34.8051655],\n          [-58.3949373, -34.8061929]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3949373, -34.8061929],\n          [-58.3941987, -34.8071883]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3941987, -34.8071883],\n          [-58.3934596, -34.8080828]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3934596, -34.8080828],\n          [-58.393423, -34.8082664]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.398366, -34.8027589],\n          [-58.3976747, -34.8036356]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3976747, -34.8036356],\n          [-58.3971168, -34.8043422]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3987746, -34.8042389],\n          [-58.3976747, -34.8036356]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3976747, -34.8036356],\n          [-58.3964727, -34.8029764]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4013091, -34.8049401],\n          [-58.4025396, -34.8055669]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4025396, -34.8055669],\n          [-58.4038371, -34.8062277]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3891946, -34.8056311],\n          [-58.3900486, -34.8046158]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3900486, -34.8046158],\n          [-58.3904782, -34.804065]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3904782, -34.804065],\n          [-58.3907792, -34.8036757]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3907792, -34.8036757],\n          [-58.3918268, -34.8023406]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3918268, -34.8023406],\n          [-58.3924396, -34.8015867]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3924396, -34.8015867],\n          [-58.3931521, -34.8007371]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3931521, -34.8007371],\n          [-58.3935142, -34.8002063]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3935142, -34.8002063],\n          [-58.3935793, -34.800023]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3938917, -34.8002224],\n          [-58.3935793, -34.800023]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3930397, -34.7987714],\n          [-58.393525, -34.7990038]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.393525, -34.7990038],\n          [-58.3935706, -34.7990412]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3935706, -34.7990412],\n          [-58.3936001, -34.7990765]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3936001, -34.7990765],\n          [-58.3936215, -34.7991227]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3936215, -34.7991227],\n          [-58.3936376, -34.7991734]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3936376, -34.7991734],\n          [-58.3936457, -34.7992395]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3936457, -34.7992395],\n          [-58.393643, -34.7993122]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.393643, -34.7993122],\n          [-58.3936376, -34.7994289]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3936376, -34.7994289],\n          [-58.3935793, -34.800023]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3986617, -34.8014125],\n          [-58.3990591, -34.8008188]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3990591, -34.8008188],\n          [-58.3994936, -34.8003009]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3935636, -34.8067511],\n          [-58.3935559, -34.8065149]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3935559, -34.8065149],\n          [-58.3941477, -34.8057278]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3941477, -34.8057278],\n          [-58.3949969, -34.8047067]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3949969, -34.8047067],\n          [-58.3955515, -34.8040306]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3930098, -34.8116828],\n          [-58.3930233, -34.8114078]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3930233, -34.8114078],\n          [-58.3938559, -34.8103296]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3938559, -34.8103296],\n          [-58.3948057, -34.8091206]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3948057, -34.8091206],\n          [-58.3956137, -34.8080702]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3956137, -34.8080702],\n          [-58.3964129, -34.8070746]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3964129, -34.8070746],\n          [-58.3966681, -34.8067671]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3966681, -34.8067671],\n          [-58.3972354, -34.8060837]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3972354, -34.8060837],\n          [-58.3981728, -34.8049644]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3981728, -34.8049644],\n          [-58.3987746, -34.8042389]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3987746, -34.8042389],\n          [-58.3994805, -34.8033989]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3945242, -34.8006035],\n          [-58.3939846, -34.8012736]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3966681, -34.8067671],\n          [-58.3972482, -34.8070924]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3986617, -34.8014125],\n          [-58.399452, -34.8018971]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.399452, -34.8018971],\n          [-58.4003357, -34.8023944]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4003357, -34.8023944],\n          [-58.4003789, -34.8024187]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4003789, -34.8024187],\n          [-58.4013631, -34.8029699]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4013631, -34.8029699],\n          [-58.4015377, -34.8030708]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4015377, -34.8030708],\n          [-58.4024151, -34.8035586]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4024151, -34.8035586],\n          [-58.4026791, -34.8037053]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4026791, -34.8037053],\n          [-58.4036115, -34.8042237]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4036115, -34.8042237],\n          [-58.4037436, -34.8042971]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4037436, -34.8042971],\n          [-58.4048825, -34.804862]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3994936, -34.8003009],\n          [-58.3986112, -34.7998147]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3986112, -34.7998147],\n          [-58.3972001, -34.799019]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3972001, -34.799019],\n          [-58.3962705, -34.798502]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3935793, -34.800023],\n          [-58.392493, -34.7994585]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.392493, -34.7994585],\n          [-58.3917332, -34.7990214]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3917332, -34.7990214],\n          [-58.3913394, -34.7988011]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3913394, -34.7988011],\n          [-58.3912913, -34.7986684]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3942128, -34.8026319],\n          [-58.3952781, -34.8013356]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3952781, -34.8013356],\n          [-58.3954312, -34.8011493]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3954312, -34.8011493],\n          [-58.3963617, -34.8000402]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3963617, -34.8000402],\n          [-58.3972001, -34.799019]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3966454, -34.8086947],\n          [-58.3956137, -34.8080702]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3956137, -34.8080702],\n          [-58.3941987, -34.8071883]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3941987, -34.8071883],\n          [-58.3935636, -34.8067511]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3945242, -34.8006035],\n          [-58.3954312, -34.8011493]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3980104, -34.8010326],\n          [-58.3983132, -34.8012066]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3983132, -34.8012066],\n          [-58.3986617, -34.8014125]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3941728, -34.7987608],\n          [-58.3942795, -34.7988258]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3942795, -34.7988258],\n          [-58.3945157, -34.7989646]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3945157, -34.7989646],\n          [-58.3954262, -34.7994934]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4001253, -34.8060931],\n          [-58.399244, -34.8055954]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.399244, -34.8055954],\n          [-58.3981728, -34.8049644]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3981728, -34.8049644],\n          [-58.3971168, -34.8043422]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3971168, -34.8043422],\n          [-58.396618, -34.8040484]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.396618, -34.8040484],\n          [-58.3959417, -34.8036499]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3962705, -34.798502],\n          [-58.3954262, -34.7994934]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3954262, -34.7994934],\n          [-58.3945242, -34.8006035]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4004752, -34.806275],\n          [-58.4004221, -34.8063094]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4004221, -34.8063094],\n          [-58.4003584, -34.8063282]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4003584, -34.8063282],\n          [-58.4002907, -34.8063294]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4002907, -34.8063294],\n          [-58.400226, -34.8063129]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.400226, -34.8063129],\n          [-58.4001748, -34.8062833]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4001748, -34.8062833],\n          [-58.4001364, -34.8062426]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4001364, -34.8062426],\n          [-58.4001143, -34.8061945]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4001143, -34.8061945],\n          [-58.4001105, -34.8061431]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4001105, -34.8061431],\n          [-58.4001253, -34.8060931]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygonize/test/in/cutedge.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-73.96706879138947, 40.798493169582244],\n      [-73.96847426891327, 40.79908606273021],\n      [-73.96896779537201, 40.798416011865356],\n      [-73.96754086017609, 40.797851539524295],\n      [-73.96706879138947, 40.798493169582244],\n      [-73.96669328212738, 40.79913073254739],\n      [-73.96619439125061, 40.79977641109269],\n      [-73.96793782711028, 40.80045456984621],\n      [-73.96809875965117, 40.79976016768429],\n      [-73.96669328212738, 40.79913073254739]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-polygonize/test/in/dangle.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-73.96755695343018, 40.797867783399724],\n      [-73.96667718887329, 40.7991429152196],\n      [-73.96620512008666, 40.799743924271894],\n      [-73.96793246269226, 40.800482995510926],\n      [-73.96811485290527, 40.79971143743523],\n      [-73.96667718887329, 40.7991429152196]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-polygonize/test/in/kinked-linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [131.9677734375, -20.550508894195637],\n      [134.2529296875, -16.59408141271846],\n      [123.3984375, -30.48655084258847],\n      [130.1220703125, -31.05293398570514],\n      [121.9482421875, -22.471954507739213],\n      [132.275390625, -25.324166525738384],\n      [129.0673828125, -16.299051014581817],\n      [133.9453125, -13.710035342476669],\n      [131.9677734375, -20.550508894195637]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-polygonize/test/in/linestrings.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [119.00390625, -22.024545601240337],\n          [120.58593749999999, -28.613459424004414],\n          [125.595703125, -32.99023555965107],\n          [133.330078125, -32.99023555965107],\n          [142.646484375, -30.977609093348676],\n          [142.294921875, -24.126701958681668],\n          [139.04296875, -16.299051014581817],\n          [128.84765625, -15.199386048559994]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [142.646484375, -30.977609093348676],\n          [132.451171875, -27.449790329784214],\n          [128.671875, -23.1605633090483],\n          [119.00390625, -22.024545601240337]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygonize/test/in/multi-linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [126.3427734375, -17.392579271057766],\n        [129.111328125, -29.19053283229457],\n        [132.890625, -31.01527898171125],\n        [136.7138671875, -29.11377539511439]\n      ],\n      [\n        [126.3427734375, -17.392579271057766],\n        [132.978515625, -15.368949896534705],\n        [135.966796875, -24.126701958681668],\n        [136.7138671875, -29.11377539511439]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-polygonize/test/in/two-polygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3959417, -34.8036499],\n          [-58.395087, -34.8031464]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3964727, -34.8029764],\n          [-58.3959417, -34.8036499]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.395087, -34.8031464],\n          [-58.3942164, -34.8042266]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3942164, -34.8042266],\n          [-58.3949969, -34.8047067]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3949969, -34.8047067],\n          [-58.3957427, -34.8051655]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.396618, -34.8040484],\n          [-58.3957427, -34.8051655]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3976747, -34.8036356],\n          [-58.3971168, -34.8043422]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3976747, -34.8036356],\n          [-58.3964727, -34.8029764]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3971168, -34.8043422],\n          [-58.396618, -34.8040484]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.396618, -34.8040484],\n          [-58.3959417, -34.8036499]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygonize/test/out/complex.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4003789, -34.8024187],\n          [-58.4012571, -34.8013012]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4012571, -34.8013012],\n          [-58.4020709, -34.8002564]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4020709, -34.8002564],\n          [-58.4026441, -34.7995347]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4026441, -34.7995347],\n          [-58.4032748, -34.7987421]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4032748, -34.7987421],\n          [-58.40353, -34.7986715]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.40353, -34.7986715],\n          [-58.4045643, -34.7970077]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4045643, -34.7970077],\n          [-58.4051217, -34.7960535]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4069531, -34.7970396],\n          [-58.4061007, -34.797642]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4061007, -34.797642],\n          [-58.4054827, -34.7986499]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4054827, -34.7986499],\n          [-58.4043951, -34.7993638]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4043951, -34.7993638],\n          [-58.4037967, -34.8001502]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4037967, -34.8001502],\n          [-58.4032304, -34.80088]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4032304, -34.80088],\n          [-58.4024017, -34.8019585]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4024017, -34.8019585],\n          [-58.4015377, -34.8030708]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3959417, -34.8036499],\n          [-58.395087, -34.8031464]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.395087, -34.8031464],\n          [-58.3942128, -34.8026319]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3942128, -34.8026319],\n          [-58.3937803, -34.8023836]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3937803, -34.8023836],\n          [-58.3937374, -34.8023571]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3937374, -34.8023571],\n          [-58.3935525, -34.8022475]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3935525, -34.8022475],\n          [-58.3924396, -34.8015867]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3924396, -34.8015867],\n          [-58.3913232, -34.8009287]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3913232, -34.8009287],\n          [-58.390647, -34.8005306]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3929547, -34.8030144],\n          [-58.3918268, -34.8023406]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3918268, -34.8023406],\n          [-58.39097, -34.8018398]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.39097, -34.8018398],\n          [-58.3908824, -34.80173]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3908824, -34.80173],\n          [-58.3907391, -34.8016607]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3935525, -34.8022475],\n          [-58.3929547, -34.8030144]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3929547, -34.8030144],\n          [-58.3919262, -34.8043515]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3919262, -34.8043515],\n          [-58.3912106, -34.805308]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3912106, -34.805308],\n          [-58.3903757, -34.8063186]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3907792, -34.8036757],\n          [-58.3919262, -34.8043515]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3919262, -34.8043515],\n          [-58.3929448, -34.8049413]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3929448, -34.8049413],\n          [-58.3932414, -34.8051253]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3929547, -34.8030144],\n          [-58.3930577, -34.8030849]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3930577, -34.8030849],\n          [-58.3929448, -34.8049413]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3929448, -34.8049413],\n          [-58.3929333, -34.8056958]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3929333, -34.8056958],\n          [-58.3925604, -34.8061236]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3925604, -34.8061236],\n          [-58.3917149, -34.8070982]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3917149, -34.8070982],\n          [-58.3906765, -34.8083226]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3906765, -34.8083226],\n          [-58.3906293, -34.8083765]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3906293, -34.8083765],\n          [-58.3905693, -34.8089708]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3931006, -34.8064748],\n          [-58.3925604, -34.8061236]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3925604, -34.8061236],\n          [-58.3912106, -34.805308]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3912106, -34.805308],\n          [-58.3900486, -34.8046158]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3900486, -34.8046158],\n          [-58.3887181, -34.8038776]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3954262, -34.7994934],\n          [-58.3962631, -34.7999826]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3962631, -34.7999826],\n          [-58.3963617, -34.8000402]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3963617, -34.8000402],\n          [-58.3977629, -34.8008817]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3977629, -34.8008817],\n          [-58.3980104, -34.8010326]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4056871, -34.803814],\n          [-58.40459, -34.8031917]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.40459, -34.8031917],\n          [-58.4035424, -34.8026119]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4035424, -34.8026119],\n          [-58.4024017, -34.8019585]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4024017, -34.8019585],\n          [-58.4012571, -34.8013012]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4012571, -34.8013012],\n          [-58.4003196, -34.8007694]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4003196, -34.8007694],\n          [-58.4000651, -34.800625]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4000651, -34.800625],\n          [-58.3994936, -34.8003009]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4005863, -34.7973807],\n          [-58.3999811, -34.7981126]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3999811, -34.7981126],\n          [-58.3994224, -34.7987983]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3994224, -34.7987983],\n          [-58.3991078, -34.7991665]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3991078, -34.7991665],\n          [-58.3986112, -34.7998147]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3986112, -34.7998147],\n          [-58.3980853, -34.8004779]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3980853, -34.8004779],\n          [-58.3977629, -34.8008817]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4000651, -34.800625],\n          [-58.4008757, -34.7995904]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4008757, -34.7995904],\n          [-58.4014189, -34.7988802]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4014189, -34.7988802],\n          [-58.4020013, -34.7981301]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4003196, -34.8007694],\n          [-58.399452, -34.8018971]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3940899, -34.8003361],\n          [-58.3945242, -34.8006035]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4001253, -34.8060931],\n          [-58.400154, -34.8060524]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.400154, -34.8060524],\n          [-58.400195, -34.8060195]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.400195, -34.8060195],\n          [-58.4002453, -34.805997]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4002453, -34.805997],\n          [-58.4003011, -34.8059864]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4003011, -34.8059864],\n          [-58.4003583, -34.8059886]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4003583, -34.8059886],\n          [-58.4004127, -34.8060034]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4004127, -34.8060034],\n          [-58.4004602, -34.8060297]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4004602, -34.8060297],\n          [-58.4005021, -34.8060719]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4005021, -34.8060719],\n          [-58.4005258, -34.8061227]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4005258, -34.8061227],\n          [-58.4005291, -34.806177]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4005291, -34.806177],\n          [-58.4005117, -34.8062295]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4005117, -34.8062295],\n          [-58.4004752, -34.806275]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4004602, -34.8060297],\n          [-58.4013091, -34.8049401]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4013091, -34.8049401],\n          [-58.4015784, -34.8046036]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4015784, -34.8046036],\n          [-58.4024151, -34.8035586]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3941494, -34.8144285],\n          [-58.3947151, -34.8135927]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3947151, -34.8135927],\n          [-58.39521, -34.8128913]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.39521, -34.8128913],\n          [-58.3961515, -34.8116469]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3961515, -34.8116469],\n          [-58.3966281, -34.8110239]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3966281, -34.8110239],\n          [-58.3970574, -34.8104706]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3970574, -34.8104706],\n          [-58.3970575, -34.8103726]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3970575, -34.8103726],\n          [-58.3978259, -34.8093579]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3978259, -34.8093579],\n          [-58.3985907, -34.8083664]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3985907, -34.8083664],\n          [-58.3993749, -34.8073699]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3993749, -34.8073699],\n          [-58.400226, -34.8063129]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4028696, -34.8075087],\n          [-58.4015378, -34.8068225]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4015378, -34.8068225],\n          [-58.4004752, -34.806275]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4013631, -34.8029699],\n          [-58.4005424, -34.8040087]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4005424, -34.8040087],\n          [-58.399244, -34.8055954]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.399244, -34.8055954],\n          [-58.3983081, -34.806706]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3983081, -34.806706],\n          [-58.3974713, -34.8077069]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3974713, -34.8077069],\n          [-58.3966454, -34.8086947]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4011968, -34.8097556],\n          [-58.4000438, -34.809165]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4000438, -34.809165],\n          [-58.3999022, -34.8090924]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3999022, -34.8090924],\n          [-58.3998633, -34.8090725]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3998633, -34.8090725],\n          [-58.3985907, -34.8083664]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3985907, -34.8083664],\n          [-58.3974713, -34.8077069]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3974713, -34.8077069],\n          [-58.3964129, -34.8070746]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3964129, -34.8070746],\n          [-58.3949373, -34.8061929]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3949373, -34.8061929],\n          [-58.3941477, -34.8057278]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4015784, -34.8046036],\n          [-58.4005424, -34.8040087]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4005424, -34.8040087],\n          [-58.3994805, -34.8033989]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3994805, -34.8033989],\n          [-58.398366, -34.8027589]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.398366, -34.8027589],\n          [-58.3971802, -34.8020789]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3980104, -34.8010326],\n          [-58.3971802, -34.8020789]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3971802, -34.8020789],\n          [-58.3969642, -34.8023356]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3969642, -34.8023356],\n          [-58.3964727, -34.8029764]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3964727, -34.8029764],\n          [-58.3959417, -34.8036499]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3952781, -34.8013356],\n          [-58.3969642, -34.8023356]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.395087, -34.8031464],\n          [-58.3942164, -34.8042266]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3942164, -34.8042266],\n          [-58.3935984, -34.8050019]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3942164, -34.8042266],\n          [-58.3949969, -34.8047067]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3949969, -34.8047067],\n          [-58.3957427, -34.8051655]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3957427, -34.8051655],\n          [-58.3972354, -34.8060837]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3972354, -34.8060837],\n          [-58.3983081, -34.806706]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3983081, -34.806706],\n          [-58.3993749, -34.8073699]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.396618, -34.8040484],\n          [-58.3957427, -34.8051655]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3957427, -34.8051655],\n          [-58.3949373, -34.8061929]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3949373, -34.8061929],\n          [-58.3941987, -34.8071883]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3941987, -34.8071883],\n          [-58.3934596, -34.8080828]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3934596, -34.8080828],\n          [-58.393423, -34.8082664]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.398366, -34.8027589],\n          [-58.3976747, -34.8036356]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3976747, -34.8036356],\n          [-58.3971168, -34.8043422]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3987746, -34.8042389],\n          [-58.3976747, -34.8036356]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3976747, -34.8036356],\n          [-58.3964727, -34.8029764]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4013091, -34.8049401],\n          [-58.4025396, -34.8055669]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4025396, -34.8055669],\n          [-58.4038371, -34.8062277]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3891946, -34.8056311],\n          [-58.3900486, -34.8046158]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3900486, -34.8046158],\n          [-58.3904782, -34.804065]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3904782, -34.804065],\n          [-58.3907792, -34.8036757]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3907792, -34.8036757],\n          [-58.3918268, -34.8023406]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3918268, -34.8023406],\n          [-58.3924396, -34.8015867]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3924396, -34.8015867],\n          [-58.3931521, -34.8007371]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3931521, -34.8007371],\n          [-58.3935142, -34.8002063]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3935142, -34.8002063],\n          [-58.3935793, -34.800023]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3938917, -34.8002224],\n          [-58.3935793, -34.800023]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3930397, -34.7987714],\n          [-58.393525, -34.7990038]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.393525, -34.7990038],\n          [-58.3935706, -34.7990412]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3935706, -34.7990412],\n          [-58.3936001, -34.7990765]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3936001, -34.7990765],\n          [-58.3936215, -34.7991227]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3936215, -34.7991227],\n          [-58.3936376, -34.7991734]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3936376, -34.7991734],\n          [-58.3936457, -34.7992395]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3936457, -34.7992395],\n          [-58.393643, -34.7993122]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.393643, -34.7993122],\n          [-58.3936376, -34.7994289]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3936376, -34.7994289],\n          [-58.3935793, -34.800023]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3986617, -34.8014125],\n          [-58.3990591, -34.8008188]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3990591, -34.8008188],\n          [-58.3994936, -34.8003009]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3935636, -34.8067511],\n          [-58.3935559, -34.8065149]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3935559, -34.8065149],\n          [-58.3941477, -34.8057278]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3941477, -34.8057278],\n          [-58.3949969, -34.8047067]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3949969, -34.8047067],\n          [-58.3955515, -34.8040306]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3930098, -34.8116828],\n          [-58.3930233, -34.8114078]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3930233, -34.8114078],\n          [-58.3938559, -34.8103296]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3938559, -34.8103296],\n          [-58.3948057, -34.8091206]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3948057, -34.8091206],\n          [-58.3956137, -34.8080702]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3956137, -34.8080702],\n          [-58.3964129, -34.8070746]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3964129, -34.8070746],\n          [-58.3966681, -34.8067671]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3966681, -34.8067671],\n          [-58.3972354, -34.8060837]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3972354, -34.8060837],\n          [-58.3981728, -34.8049644]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3981728, -34.8049644],\n          [-58.3987746, -34.8042389]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3987746, -34.8042389],\n          [-58.3994805, -34.8033989]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3945242, -34.8006035],\n          [-58.3939846, -34.8012736]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3966681, -34.8067671],\n          [-58.3972482, -34.8070924]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3986617, -34.8014125],\n          [-58.399452, -34.8018971]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.399452, -34.8018971],\n          [-58.4003357, -34.8023944]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4003357, -34.8023944],\n          [-58.4003789, -34.8024187]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4003789, -34.8024187],\n          [-58.4013631, -34.8029699]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4013631, -34.8029699],\n          [-58.4015377, -34.8030708]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4015377, -34.8030708],\n          [-58.4024151, -34.8035586]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4024151, -34.8035586],\n          [-58.4026791, -34.8037053]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4026791, -34.8037053],\n          [-58.4036115, -34.8042237]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4036115, -34.8042237],\n          [-58.4037436, -34.8042971]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4037436, -34.8042971],\n          [-58.4048825, -34.804862]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3994936, -34.8003009],\n          [-58.3986112, -34.7998147]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3986112, -34.7998147],\n          [-58.3972001, -34.799019]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3972001, -34.799019],\n          [-58.3962705, -34.798502]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3935793, -34.800023],\n          [-58.392493, -34.7994585]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.392493, -34.7994585],\n          [-58.3917332, -34.7990214]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3917332, -34.7990214],\n          [-58.3913394, -34.7988011]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3913394, -34.7988011],\n          [-58.3912913, -34.7986684]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3942128, -34.8026319],\n          [-58.3952781, -34.8013356]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3952781, -34.8013356],\n          [-58.3954312, -34.8011493]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3954312, -34.8011493],\n          [-58.3963617, -34.8000402]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3963617, -34.8000402],\n          [-58.3972001, -34.799019]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3966454, -34.8086947],\n          [-58.3956137, -34.8080702]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3956137, -34.8080702],\n          [-58.3941987, -34.8071883]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3941987, -34.8071883],\n          [-58.3935636, -34.8067511]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3945242, -34.8006035],\n          [-58.3954312, -34.8011493]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3980104, -34.8010326],\n          [-58.3983132, -34.8012066]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3983132, -34.8012066],\n          [-58.3986617, -34.8014125]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3941728, -34.7987608],\n          [-58.3942795, -34.7988258]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3942795, -34.7988258],\n          [-58.3945157, -34.7989646]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3945157, -34.7989646],\n          [-58.3954262, -34.7994934]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4001253, -34.8060931],\n          [-58.399244, -34.8055954]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.399244, -34.8055954],\n          [-58.3981728, -34.8049644]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3981728, -34.8049644],\n          [-58.3971168, -34.8043422]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3971168, -34.8043422],\n          [-58.396618, -34.8040484]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.396618, -34.8040484],\n          [-58.3959417, -34.8036499]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3962705, -34.798502],\n          [-58.3954262, -34.7994934]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3954262, -34.7994934],\n          [-58.3945242, -34.8006035]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4004752, -34.806275],\n          [-58.4004221, -34.8063094]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4004221, -34.8063094],\n          [-58.4003584, -34.8063282]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4003584, -34.8063282],\n          [-58.4002907, -34.8063294]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4002907, -34.8063294],\n          [-58.400226, -34.8063129]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.400226, -34.8063129],\n          [-58.4001748, -34.8062833]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4001748, -34.8062833],\n          [-58.4001364, -34.8062426]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4001364, -34.8062426],\n          [-58.4001143, -34.8061945]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4001143, -34.8061945],\n          [-58.4001105, -34.8061431]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.4001105, -34.8061431],\n          [-58.4001253, -34.8060931]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.4003789, -34.8024187],\n            [-58.4012571, -34.8013012],\n            [-58.4003196, -34.8007694],\n            [-58.399452, -34.8018971],\n            [-58.4003357, -34.8023944],\n            [-58.4003789, -34.8024187]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.4012571, -34.8013012],\n            [-58.4003789, -34.8024187],\n            [-58.4013631, -34.8029699],\n            [-58.4015377, -34.8030708],\n            [-58.4024017, -34.8019585],\n            [-58.4012571, -34.8013012]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3959417, -34.8036499],\n            [-58.395087, -34.8031464],\n            [-58.3942164, -34.8042266],\n            [-58.3949969, -34.8047067],\n            [-58.3957427, -34.8051655],\n            [-58.396618, -34.8040484],\n            [-58.3959417, -34.8036499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.395087, -34.8031464],\n            [-58.3959417, -34.8036499],\n            [-58.3964727, -34.8029764],\n            [-58.3969642, -34.8023356],\n            [-58.3952781, -34.8013356],\n            [-58.3942128, -34.8026319],\n            [-58.395087, -34.8031464]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3935525, -34.8022475],\n            [-58.3924396, -34.8015867],\n            [-58.3918268, -34.8023406],\n            [-58.3929547, -34.8030144],\n            [-58.3935525, -34.8022475]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3929547, -34.8030144],\n            [-58.3918268, -34.8023406],\n            [-58.3907792, -34.8036757],\n            [-58.3919262, -34.8043515],\n            [-58.3929547, -34.8030144]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3929547, -34.8030144],\n            [-58.3919262, -34.8043515],\n            [-58.3929448, -34.8049413],\n            [-58.3930577, -34.8030849],\n            [-58.3929547, -34.8030144]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3919262, -34.8043515],\n            [-58.3912106, -34.805308],\n            [-58.3925604, -34.8061236],\n            [-58.3929333, -34.8056958],\n            [-58.3929448, -34.8049413],\n            [-58.3919262, -34.8043515]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3912106, -34.805308],\n            [-58.3919262, -34.8043515],\n            [-58.3907792, -34.8036757],\n            [-58.3904782, -34.804065],\n            [-58.3900486, -34.8046158],\n            [-58.3912106, -34.805308]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3954262, -34.7994934],\n            [-58.3962631, -34.7999826],\n            [-58.3963617, -34.8000402],\n            [-58.3972001, -34.799019],\n            [-58.3962705, -34.798502],\n            [-58.3954262, -34.7994934]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3962631, -34.7999826],\n            [-58.3954262, -34.7994934],\n            [-58.3945242, -34.8006035],\n            [-58.3954312, -34.8011493],\n            [-58.3963617, -34.8000402],\n            [-58.3962631, -34.7999826]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3963617, -34.8000402],\n            [-58.3977629, -34.8008817],\n            [-58.3980853, -34.8004779],\n            [-58.3986112, -34.7998147],\n            [-58.3972001, -34.799019],\n            [-58.3963617, -34.8000402]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3977629, -34.8008817],\n            [-58.3963617, -34.8000402],\n            [-58.3954312, -34.8011493],\n            [-58.3952781, -34.8013356],\n            [-58.3969642, -34.8023356],\n            [-58.3971802, -34.8020789],\n            [-58.3980104, -34.8010326],\n            [-58.3977629, -34.8008817]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3977629, -34.8008817],\n            [-58.3980104, -34.8010326],\n            [-58.3983132, -34.8012066],\n            [-58.3986617, -34.8014125],\n            [-58.3990591, -34.8008188],\n            [-58.3994936, -34.8003009],\n            [-58.3986112, -34.7998147],\n            [-58.3980853, -34.8004779],\n            [-58.3977629, -34.8008817]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.4003196, -34.8007694],\n            [-58.4000651, -34.800625],\n            [-58.3994936, -34.8003009],\n            [-58.3990591, -34.8008188],\n            [-58.3986617, -34.8014125],\n            [-58.399452, -34.8018971],\n            [-58.4003196, -34.8007694]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.4001253, -34.8060931],\n            [-58.400154, -34.8060524],\n            [-58.400195, -34.8060195],\n            [-58.4002453, -34.805997],\n            [-58.4003011, -34.8059864],\n            [-58.4003583, -34.8059886],\n            [-58.4004127, -34.8060034],\n            [-58.4004602, -34.8060297],\n            [-58.4013091, -34.8049401],\n            [-58.4015784, -34.8046036],\n            [-58.4005424, -34.8040087],\n            [-58.399244, -34.8055954],\n            [-58.4001253, -34.8060931]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.400154, -34.8060524],\n            [-58.4001253, -34.8060931],\n            [-58.4001105, -34.8061431],\n            [-58.4001143, -34.8061945],\n            [-58.4001364, -34.8062426],\n            [-58.4001748, -34.8062833],\n            [-58.400226, -34.8063129],\n            [-58.4002907, -34.8063294],\n            [-58.4003584, -34.8063282],\n            [-58.4004221, -34.8063094],\n            [-58.4004752, -34.806275],\n            [-58.4005117, -34.8062295],\n            [-58.4005291, -34.806177],\n            [-58.4005258, -34.8061227],\n            [-58.4005021, -34.8060719],\n            [-58.4004602, -34.8060297],\n            [-58.4004127, -34.8060034],\n            [-58.4003583, -34.8059886],\n            [-58.4003011, -34.8059864],\n            [-58.4002453, -34.805997],\n            [-58.400195, -34.8060195],\n            [-58.400154, -34.8060524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.4015784, -34.8046036],\n            [-58.4024151, -34.8035586],\n            [-58.4015377, -34.8030708],\n            [-58.4013631, -34.8029699],\n            [-58.4005424, -34.8040087],\n            [-58.4015784, -34.8046036]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3985907, -34.8083664],\n            [-58.3993749, -34.8073699],\n            [-58.3983081, -34.806706],\n            [-58.3974713, -34.8077069],\n            [-58.3985907, -34.8083664]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3993749, -34.8073699],\n            [-58.400226, -34.8063129],\n            [-58.4001748, -34.8062833],\n            [-58.4001364, -34.8062426],\n            [-58.4001143, -34.8061945],\n            [-58.4001105, -34.8061431],\n            [-58.4001253, -34.8060931],\n            [-58.399244, -34.8055954],\n            [-58.3983081, -34.806706],\n            [-58.3993749, -34.8073699]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.4005424, -34.8040087],\n            [-58.4013631, -34.8029699],\n            [-58.4003789, -34.8024187],\n            [-58.4003357, -34.8023944],\n            [-58.399452, -34.8018971],\n            [-58.3986617, -34.8014125],\n            [-58.3983132, -34.8012066],\n            [-58.3980104, -34.8010326],\n            [-58.3971802, -34.8020789],\n            [-58.398366, -34.8027589],\n            [-58.3994805, -34.8033989],\n            [-58.4005424, -34.8040087]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.399244, -34.8055954],\n            [-58.4005424, -34.8040087],\n            [-58.3994805, -34.8033989],\n            [-58.3987746, -34.8042389],\n            [-58.3981728, -34.8049644],\n            [-58.399244, -34.8055954]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3983081, -34.806706],\n            [-58.399244, -34.8055954],\n            [-58.3981728, -34.8049644],\n            [-58.3972354, -34.8060837],\n            [-58.3983081, -34.806706]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3974713, -34.8077069],\n            [-58.3983081, -34.806706],\n            [-58.3972354, -34.8060837],\n            [-58.3966681, -34.8067671],\n            [-58.3964129, -34.8070746],\n            [-58.3974713, -34.8077069]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3966454, -34.8086947],\n            [-58.3974713, -34.8077069],\n            [-58.3964129, -34.8070746],\n            [-58.3956137, -34.8080702],\n            [-58.3966454, -34.8086947]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3964129, -34.8070746],\n            [-58.3949373, -34.8061929],\n            [-58.3941987, -34.8071883],\n            [-58.3956137, -34.8080702],\n            [-58.3964129, -34.8070746]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3949373, -34.8061929],\n            [-58.3964129, -34.8070746],\n            [-58.3966681, -34.8067671],\n            [-58.3972354, -34.8060837],\n            [-58.3957427, -34.8051655],\n            [-58.3949373, -34.8061929]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3949373, -34.8061929],\n            [-58.3941477, -34.8057278],\n            [-58.3935559, -34.8065149],\n            [-58.3935636, -34.8067511],\n            [-58.3941987, -34.8071883],\n            [-58.3949373, -34.8061929]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3941477, -34.8057278],\n            [-58.3949373, -34.8061929],\n            [-58.3957427, -34.8051655],\n            [-58.3949969, -34.8047067],\n            [-58.3941477, -34.8057278]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3994805, -34.8033989],\n            [-58.398366, -34.8027589],\n            [-58.3976747, -34.8036356],\n            [-58.3987746, -34.8042389],\n            [-58.3994805, -34.8033989]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.398366, -34.8027589],\n            [-58.3971802, -34.8020789],\n            [-58.3969642, -34.8023356],\n            [-58.3964727, -34.8029764],\n            [-58.3976747, -34.8036356],\n            [-58.398366, -34.8027589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3964727, -34.8029764],\n            [-58.3959417, -34.8036499],\n            [-58.396618, -34.8040484],\n            [-58.3971168, -34.8043422],\n            [-58.3976747, -34.8036356],\n            [-58.3964727, -34.8029764]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3957427, -34.8051655],\n            [-58.3972354, -34.8060837],\n            [-58.3981728, -34.8049644],\n            [-58.3971168, -34.8043422],\n            [-58.396618, -34.8040484],\n            [-58.3957427, -34.8051655]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3976747, -34.8036356],\n            [-58.3971168, -34.8043422],\n            [-58.3981728, -34.8049644],\n            [-58.3987746, -34.8042389],\n            [-58.3976747, -34.8036356]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygonize/test/out/cutedge.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-73.96706879138947, 40.798493169582244],\n          [-73.96847426891327, 40.79908606273021],\n          [-73.96896779537201, 40.798416011865356],\n          [-73.96754086017609, 40.797851539524295],\n          [-73.96706879138947, 40.798493169582244],\n          [-73.96669328212738, 40.79913073254739],\n          [-73.96619439125061, 40.79977641109269],\n          [-73.96793782711028, 40.80045456984621],\n          [-73.96809875965117, 40.79976016768429],\n          [-73.96669328212738, 40.79913073254739]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.96847426891327, 40.79908606273021],\n            [-73.96706879138947, 40.798493169582244],\n            [-73.96754086017609, 40.797851539524295],\n            [-73.96896779537201, 40.798416011865356],\n            [-73.96847426891327, 40.79908606273021]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.96619439125061, 40.79977641109269],\n            [-73.96669328212738, 40.79913073254739],\n            [-73.96809875965117, 40.79976016768429],\n            [-73.96793782711028, 40.80045456984621],\n            [-73.96619439125061, 40.79977641109269]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygonize/test/out/dangle.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-73.96755695343018, 40.797867783399724],\n          [-73.96667718887329, 40.7991429152196],\n          [-73.96620512008666, 40.799743924271894],\n          [-73.96793246269226, 40.800482995510926],\n          [-73.96811485290527, 40.79971143743523],\n          [-73.96667718887329, 40.7991429152196]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.96620512008666, 40.799743924271894],\n            [-73.96667718887329, 40.7991429152196],\n            [-73.96811485290527, 40.79971143743523],\n            [-73.96793246269226, 40.800482995510926],\n            [-73.96620512008666, 40.799743924271894]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygonize/test/out/kinked-linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [131.9677734375, -20.550508894195637],\n          [134.2529296875, -16.59408141271846],\n          [123.3984375, -30.48655084258847],\n          [130.1220703125, -31.05293398570514],\n          [121.9482421875, -22.471954507739213],\n          [132.275390625, -25.324166525738384],\n          [129.0673828125, -16.299051014581817],\n          [133.9453125, -13.710035342476669],\n          [131.9677734375, -20.550508894195637]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [131.9677734375, -20.550508894195637],\n            [134.2529296875, -16.59408141271846],\n            [123.3984375, -30.48655084258847],\n            [130.1220703125, -31.05293398570514],\n            [121.9482421875, -22.471954507739213],\n            [132.275390625, -25.324166525738384],\n            [129.0673828125, -16.299051014581817],\n            [133.9453125, -13.710035342476669],\n            [131.9677734375, -20.550508894195637]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygonize/test/out/linestrings.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [119.00390625, -22.024545601240337],\n          [120.58593749999999, -28.613459424004414],\n          [125.595703125, -32.99023555965107],\n          [133.330078125, -32.99023555965107],\n          [142.646484375, -30.977609093348676],\n          [142.294921875, -24.126701958681668],\n          [139.04296875, -16.299051014581817],\n          [128.84765625, -15.199386048559994]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [142.646484375, -30.977609093348676],\n          [132.451171875, -27.449790329784214],\n          [128.671875, -23.1605633090483],\n          [119.00390625, -22.024545601240337]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120.58593749999999, -28.613459424004414],\n            [119.00390625, -22.024545601240337],\n            [128.671875, -23.1605633090483],\n            [132.451171875, -27.449790329784214],\n            [142.646484375, -30.977609093348676],\n            [133.330078125, -32.99023555965107],\n            [125.595703125, -32.99023555965107],\n            [120.58593749999999, -28.613459424004414]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygonize/test/out/multi-linestring.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [126.3427734375, -17.392579271057766],\n            [129.111328125, -29.19053283229457],\n            [132.890625, -31.01527898171125],\n            [136.7138671875, -29.11377539511439]\n          ],\n          [\n            [126.3427734375, -17.392579271057766],\n            [132.978515625, -15.368949896534705],\n            [135.966796875, -24.126701958681668],\n            [136.7138671875, -29.11377539511439]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [129.111328125, -29.19053283229457],\n            [126.3427734375, -17.392579271057766],\n            [132.978515625, -15.368949896534705],\n            [135.966796875, -24.126701958681668],\n            [136.7138671875, -29.11377539511439],\n            [132.890625, -31.01527898171125],\n            [129.111328125, -29.19053283229457]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygonize/test/out/two-polygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3959417, -34.8036499],\n          [-58.395087, -34.8031464]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3964727, -34.8029764],\n          [-58.3959417, -34.8036499]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.395087, -34.8031464],\n          [-58.3942164, -34.8042266]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3942164, -34.8042266],\n          [-58.3949969, -34.8047067]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3949969, -34.8047067],\n          [-58.3957427, -34.8051655]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.396618, -34.8040484],\n          [-58.3957427, -34.8051655]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3976747, -34.8036356],\n          [-58.3971168, -34.8043422]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3976747, -34.8036356],\n          [-58.3964727, -34.8029764]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.3971168, -34.8043422],\n          [-58.396618, -34.8040484]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#F00\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-58.396618, -34.8040484],\n          [-58.3959417, -34.8036499]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3959417, -34.8036499],\n            [-58.395087, -34.8031464],\n            [-58.3942164, -34.8042266],\n            [-58.3949969, -34.8047067],\n            [-58.3957427, -34.8051655],\n            [-58.396618, -34.8040484],\n            [-58.3959417, -34.8036499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"fill-opacity\": 0.3,\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.3964727, -34.8029764],\n            [-58.3959417, -34.8036499],\n            [-58.396618, -34.8040484],\n            [-58.3971168, -34.8043422],\n            [-58.3976747, -34.8036356],\n            [-58.3964727, -34.8029764]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-polygonize/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { featureEach } from \"@turf/meta\";\nimport { featureCollection, lineString } from \"@turf/helpers\";\nimport { polygonize } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-polygonize\", (t) => {\n  for (const { filename, name, geojson } of fixtures) {\n    const polygonized = polygonize(geojson);\n\n    const results = featureCollection([]);\n    featureEach(geojson, (feature) => results.features.push(colorize(feature)));\n    featureEach(polygonized, (feature) =>\n      results.features.push(colorize(feature, \"#00F\", 3))\n    );\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEquals(results, loadJsonFileSync(directories.out + filename), name);\n  }\n  t.end();\n});\n\ntest(\"turf-polygonize -- Geometry Support\", (t) => {\n  const line = lineString([\n    [0, 0],\n    [1, 1],\n    [5, 2],\n    [0, 0],\n  ]);\n\n  t.assert(polygonize(line.geometry), \"line geometry\");\n  t.end();\n});\n\ntest(\"turf-polygonize -- throws\", (t) => {\n  // const line = lineString([[0, 0], [1, 1]]);\n\n  // t.throws(() => polygonize(line));\n  t.end();\n});\n\ntest(\"turf-polygonize -- input mutation\", (t) => {\n  const lines = featureCollection([\n    lineString([\n      [0, 0],\n      [1, 1],\n    ]),\n    lineString([\n      [1, 1],\n      [-1, -1],\n    ]),\n    lineString([\n      [-1, -1],\n      [0, 0],\n    ]),\n  ]);\n  const linesBefore = JSON.parse(JSON.stringify(lines));\n  polygonize(lines);\n\n  t.deepEquals(lines, linesBefore, \"input does not mutate\");\n  t.end();\n});\n\nfunction colorize(feature, color = \"#F00\", width = 6) {\n  feature.properties[\"fill\"] = color;\n  feature.properties[\"fill-opacity\"] = 0.3;\n  feature.properties[\"stroke\"] = color;\n  feature.properties[\"stroke-width\"] = width;\n  return feature;\n}\n"
  },
  {
    "path": "packages/turf-polygonize/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-polygonize/types.ts",
    "content": "import { lineString } from \"@turf/helpers\";\nimport { polygonize } from \"./index.js\";\n\nconst line = lineString([\n  [10, 10],\n  [0, 0],\n  [3, -5],\n  [10, 10],\n]);\npolygonize(line);\n"
  },
  {
    "path": "packages/turf-projection/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-projection/README.md",
    "content": "# @turf/projection\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## toMercator\n\nConverts a WGS84 GeoJSON object into Mercator (EPSG:900913) projection\n\n### Parameters\n\n*   `geojson` **([GeoJSON][1] | [Position][2])** WGS84 GeoJSON object\n*   `options` **[Object][3]?** Optional parameters (optional, default `{}`)\n\n    *   `options.mutate` **[boolean][4]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`)\n\n### Examples\n\n```javascript\nvar pt = turf.point([-71,41]);\nvar converted = turf.toMercator(pt);\n\n//addToMap\nvar addToMap = [pt, converted];\n```\n\nReturns **[GeoJSON][1]** Projected GeoJSON\n\n## toWgs84\n\nConverts a Mercator (EPSG:900913) GeoJSON object into WGS84 projection\n\n### Parameters\n\n*   `geojson` **([GeoJSON][1] | [Position][2])** Mercator GeoJSON object\n*   `options` **[Object][3]?** Optional parameters (optional, default `{}`)\n\n    *   `options.mutate` **[boolean][4]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`)\n\n### Examples\n\n```javascript\nvar pt = turf.point([-7903683.846322424, 5012341.663847514]);\nvar converted = turf.toWgs84(pt);\n\n//addToMap\nvar addToMap = [pt, converted];\n```\n\nReturns **[GeoJSON][1]** Projected GeoJSON\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3\n\n[2]: https://developer.mozilla.org/docs/Web/API/Position\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/projection\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-projection/bench.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { glob } from \"glob\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { toMercator, toWgs84 } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst suite = new Benchmark.Suite(\"turf-projection\");\n\n/**\n * Benchmark Results toMercator\n *\n * featureCollection: 3.501ms\n * fiji: 0.118ms\n * geometry: 0.081ms\n * line: 0.077ms\n * multiLine: 0.083ms\n * multiPolygon: 0.123ms\n * passed-180th-meridian: 0.044ms\n * passed-180th-meridian2: 0.151ms\n * point: 0.065ms\n * polygon: 0.060ms\n *\n *\n *\n *\n * 180th-meridian x 115,084 ops/sec ±2.82% (78 runs sampled)\n * featureCollection x 133,945 ops/sec ±7.66% (73 runs sampled)\n * line x 349,467 ops/sec ±3.93% (74 runs sampled)\n * multiLine x 139,763 ops/sec ±5.19% (71 runs sampled)\n * multiPolygon x 118,105 ops/sec ±4.80% (75 runs sampled)\n * point x 1,539,797 ops/sec ±3.72% (77 runs sampled)\n * polygon x 203,059 ops/sec ±16.43% (58 runs sampled)\n */\nglob\n  .sync(path.join(__dirname, \"test\", \"mercator\", \"*.geojson\"))\n  .forEach((filepath) => {\n    const { name } = path.parse(filepath);\n    const geojson = loadJsonFileSync(filepath);\n    console.time(name);\n    toMercator(geojson);\n    console.timeEnd(name);\n    suite.add(name, () => toMercator(geojson));\n  });\n\n/**\n * Benchmark Results toWgs84\n *\n * featureCollection: 2.290ms\n * fiji: 0.062ms\n * geometry: 0.109ms\n * multiLine: 0.060ms\n * multiPolygon: 0.075ms\n * passed-180th-meridian: 0.084ms\n * passed-180th-meridian2: 0.099ms\n * point: 0.037ms\n * polygon: 0.054ms\n *\n * featureCollection x 153,988 ops/sec ±3.13% (77 runs sampled)\n * fiji x 266,735 ops/sec ±1.90% (79 runs sampled)\n * geometry x 406,995 ops/sec ±1.91% (79 runs sampled)\n * multiLine x 175,761 ops/sec ±2.32% (77 runs sampled)\n * multiPolygon x 135,507 ops/sec ±1.95% (79 runs sampled)\n * passed-180th-meridian x 131,944 ops/sec ±2.04% (79 runs sampled)\n * passed-180th-meridian2 x 106,320 ops/sec ±1.91% (80 runs sampled)\n * point x 1,784,702 ops/sec ±2.29% (76 runs sampled)\n * polygon x 307,268 ops/sec ±1.95% (79 runs sampled)\n */\nglob\n  .sync(path.join(__dirname, \"test\", \"wgs84\", \"*.geojson\"))\n  .forEach((filepath) => {\n    const { name } = path.parse(filepath);\n    const geojson = loadJsonFileSync(filepath);\n    console.time(name);\n    toWgs84(geojson);\n    console.timeEnd(name);\n    suite.add(name, () => toWgs84(geojson));\n  });\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-projection/index.ts",
    "content": "import { Position } from \"geojson\";\nimport { coordEach } from \"@turf/meta\";\nimport { AllGeoJSON, isNumber } from \"@turf/helpers\";\nimport { clone } from \"@turf/clone\";\n\n/**\n * Converts a WGS84 GeoJSON object into Mercator (EPSG:900913) projection\n *\n * @function\n * @param {GeoJSON|Position} geojson WGS84 GeoJSON object\n * @param {Object} [options] Optional parameters\n * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true)\n * @returns {GeoJSON} Projected GeoJSON\n * @example\n * var pt = turf.point([-71,41]);\n * var converted = turf.toMercator(pt);\n *\n * //addToMap\n * var addToMap = [pt, converted];\n */\nfunction toMercator<G = AllGeoJSON | Position>(\n  geojson: G,\n  options: { mutate?: boolean } = {}\n): G {\n  return convert(geojson, \"mercator\", options);\n}\n\n/**\n * Converts a Mercator (EPSG:900913) GeoJSON object into WGS84 projection\n *\n * @function\n * @param {GeoJSON|Position} geojson Mercator GeoJSON object\n * @param {Object} [options] Optional parameters\n * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true)\n * @returns {GeoJSON} Projected GeoJSON\n * @example\n * var pt = turf.point([-7903683.846322424, 5012341.663847514]);\n * var converted = turf.toWgs84(pt);\n *\n * //addToMap\n * var addToMap = [pt, converted];\n */\nfunction toWgs84<G = AllGeoJSON | Position>(\n  geojson: G,\n  options: { mutate?: boolean } = {}\n): G {\n  return convert(geojson, \"wgs84\", options);\n}\n\n/**\n * Converts a GeoJSON coordinates to the defined `projection`\n *\n * @private\n * @param {GeoJSON} geojson GeoJSON Feature or Geometry\n * @param {string} projection defines the projection system to convert the coordinates to\n * @param {Object} [options] Optional parameters\n * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true)\n * @returns {GeoJSON} Converted GeoJSON\n */\nfunction convert(\n  geojson: any,\n  projection: string,\n  options: { mutate?: boolean } = {}\n): any {\n  // Optional parameters\n  options = options || {};\n  var mutate = options.mutate;\n\n  // Validation\n  if (!geojson) throw new Error(\"geojson is required\");\n\n  // Handle Position\n  if (Array.isArray(geojson) && isNumber(geojson[0]))\n    geojson =\n      projection === \"mercator\"\n        ? convertToMercator(geojson)\n        : convertToWgs84(geojson);\n  // Handle GeoJSON\n  else {\n    // Handle possible data mutation\n    if (mutate !== true) geojson = clone(geojson);\n\n    coordEach(geojson, function (coord) {\n      var newCoord =\n        projection === \"mercator\"\n          ? convertToMercator(coord)\n          : convertToWgs84(coord);\n      coord[0] = newCoord[0];\n      coord[1] = newCoord[1];\n    });\n  }\n  return geojson;\n}\n\n/**\n * Convert lon/lat values to 900913 x/y.\n * (from https://github.com/mapbox/sphericalmercator)\n *\n * @private\n * @param {Array<number>} lonLat WGS84 point\n * @returns {Array<number>} Mercator [x, y] point\n */\nfunction convertToMercator(lonLat: number[]) {\n  var D2R = Math.PI / 180,\n    // 900913 properties\n    A = 6378137.0,\n    MAXEXTENT = 20037508.342789244;\n\n  // compensate longitudes passing the 180th meridian\n  // from https://github.com/proj4js/proj4js/blob/master/lib/common/adjust_lon.js\n  var adjusted =\n    Math.abs(lonLat[0]) <= 180 ? lonLat[0] : lonLat[0] - sign(lonLat[0]) * 360;\n  var xy = [\n    A * adjusted * D2R,\n    A * Math.log(Math.tan(Math.PI * 0.25 + 0.5 * lonLat[1] * D2R)),\n  ];\n\n  // if xy value is beyond maxextent (e.g. poles), return maxextent\n  if (xy[0] > MAXEXTENT) xy[0] = MAXEXTENT;\n  if (xy[0] < -MAXEXTENT) xy[0] = -MAXEXTENT;\n  if (xy[1] > MAXEXTENT) xy[1] = MAXEXTENT;\n  if (xy[1] < -MAXEXTENT) xy[1] = -MAXEXTENT;\n\n  return xy;\n}\n\n/**\n * Convert 900913 x/y values to lon/lat.\n * (from https://github.com/mapbox/sphericalmercator)\n *\n * @private\n * @param {Array<number>} xy Mercator [x, y] point\n * @returns {Array<number>} WGS84 [lon, lat] point\n */\nfunction convertToWgs84(xy: number[]) {\n  // 900913 properties.\n  var R2D = 180 / Math.PI;\n  var A = 6378137.0;\n\n  return [\n    (xy[0] * R2D) / A,\n    (Math.PI * 0.5 - 2.0 * Math.atan(Math.exp(-xy[1] / A))) * R2D,\n  ];\n}\n\n/**\n * Returns the sign of the input, or zero\n *\n * @private\n * @param {number} x input\n * @returns {number} -1|0|1 output\n */\nfunction sign(x: number) {\n  return x < 0 ? -1 : x > 0 ? 1 : 0;\n}\n\nexport { toMercator, toWgs84 };\n"
  },
  {
    "path": "packages/turf-projection/package.json",
    "content": "{\n  \"name\": \"@turf/projection\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Provides tools for conversion between geographic coordinates and projected coordinates.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Stefano Borghi <@stebogit>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"projection\",\n    \"to-mercator\",\n    \"to-wgs84\",\n    \"EPSG:4326\",\n    \"WGS84\",\n    \"mercator\",\n    \"web-mercator\",\n    \"EPSG:3857\",\n    \"EPSG:3785\",\n    \"900913\",\n    \"EPSG:900913\",\n    \"EPSG:102113\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"proj4\": \"^2.9.2\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/clone\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/mercator/featureCollection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-12913060.932019735, 7967317.535015907],\n            [-10018754.171394622, 7967317.535015907],\n            [-10018754.171394622, 9876845.895794801],\n            [-12913060.932019735, 9876845.895794801],\n            [-12913060.932019735, 7967317.535015907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-2269873.991956594, 3991847.365165045],\n          [-391357.5848201024, 6026906.806229578],\n          [1565430.3392804095, 1917652.165618501]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8492459.590596221, 430493.34330211225]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-projection/test/mercator/fiji.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-20031393.380526427, -1860477.2684611906],\n        [19998984.080533516, -1906645.233545436],\n        [20014882.98241683, -1959233.9090056375],\n        [-20002653.0578912, -1937831.5410857894],\n        [-19990117.385252435, -1892275.0722278224],\n        [-20031393.380526427, -1860477.2684611906]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/mercator/geometry.geojson",
    "content": "{\n  \"type\": \"LineString\",\n  \"coordinates\": [\n    [-14245416.087451726, -156543.03392804202],\n    [-10136161.446840651, 3952711.6066830326],\n    [-7983694.730330088, 7866287.454884058],\n    [-3287403.7124888604, 9783939.620502558]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-projection/test/mercator/line.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-14245416.087451726, -156543.03392804202],\n      [-10136161.446840651, 3952711.6066830326],\n      [-7983694.730330088, 7866287.454884058],\n      [-3287403.7124888604, 9783939.620502558]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/mercator/multiLine.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [-14245416.087451726, -156543.03392804202],\n        [-10136161.446840651, 3952711.6066830326],\n        [-7983694.730330088, 7866287.454884058],\n        [-3287403.7124888604, 9783939.620502558]\n      ],\n      [\n        [-8101102.00577612, 3443946.746416902],\n        [-9196903.243272407, 1487158.822316389],\n        [-5518141.945963444, 1095801.237496288],\n        [-9392582.035682458, -1252344.2714243273],\n        [-3287403.7124888604, -7474929.870063956]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/mercator/multiPolygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [-12913060.932019735, -5621521.486192067],\n          [-10018754.171394622, -5621521.486192067],\n          [-10018754.171394622, -7558415.656081783],\n          [-12913060.932019735, -7558415.656081783],\n          [-12913060.932019735, -5621521.486192067]\n        ]\n      ],\n      [\n        [\n          [-10057889.929876631, 1017529.7205322676],\n          [-8649002.624524264, -391357.5848201023],\n          [-7240115.319171893, 1369751.5468703585],\n          [-7318386.8361359155, 2465552.7843666445],\n          [-9353446.277200447, 2817774.6107047372],\n          [-10057889.929876631, 1017529.7205322676]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/mercator/passed-180th-meridian.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [12601714.231207296, -2700367.3352587065],\n        [12993071.816027401, -4138606.4594725817],\n        [14685693.370374342, -3639625.5388269513],\n        [15742358.849388618, -4637587.380118214],\n        [16534857.958649326, -4627803.440497711],\n        [17141462.215120483, -3169996.4370428286],\n        [15810846.426732136, -1203424.5733218137],\n        [15615167.634322084, -1986139.7429620188],\n        [15096618.834435452, -1692621.554346943],\n        [15214026.10988148, -1340399.728008851],\n        [14617205.793030823, -1271912.1506653328],\n        [13609460.012119059, -1917652.1656185004],\n        [13521404.555534538, -2201386.414613076],\n        [12601714.231207296, -2700367.3352587065]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/mercator/passed-180th-meridian2.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-8179373.522740139, 1271912.1506653326],\n        [-9099063.84706738, -410925.4640611067],\n        [-8394620.194391195, -1682837.6147264417],\n        [-7827151.69640205, -2172034.5957515696],\n        [-8492459.59059622, -6535671.666495712],\n        [-7651040.783233002, -7494497.7493049605],\n        [-7279251.077653905, -7298818.95689491],\n        [-7670608.662474004, -6535671.666495712],\n        [-6985732.889038826, -4794130.414046254],\n        [-6457400.149531689, -4637587.380118214],\n        [-5439870.428999423, -3306971.5917298645],\n        [-5420302.549758421, -2954749.7653917726],\n        [-4637587.380118214, -2524256.422089661],\n        [-3874440.0897190133, -763147.2903991994],\n        [-5635549.221409478, 117407.27544603014],\n        [-5792092.255337513, 508764.86026613234],\n        [-7122708.043725865, 1213208.5129423165],\n        [-8179373.522740139, 1271912.1506653326]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/mercator/point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-7903683.846322424, 5012341.663847514]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/mercator/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-12913060.932019735, 7967317.535015907],\n        [-10018754.171394622, 7967317.535015907],\n        [-10018754.171394622, 9876845.895794801],\n        [-12913060.932019735, 9876845.895794801],\n        [-12913060.932019735, 7967317.535015907]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/mercator-featureCollection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-12913060.93202, 7967317.535016],\n            [-10018754.171395, 7967317.535016],\n            [-10018754.171395, 9876845.895795],\n            [-12913060.93202, 9876845.895795],\n            [-12913060.93202, 7967317.535016]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-2269873.991957, 3991847.410438],\n          [-391357.58482, 6026906.856034],\n          [1565430.33928, 1917652.163291]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-8492459.534936, 430493.386177]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/mercator-fiji.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-20031393.340521, -1860477.28203],\n        [19998984.11793, -1906645.234158],\n        [20014882.990244, -1959233.87059],\n        [-20002653.097027, -1937831.483333],\n        [-19990117.409169, -1892275.080785],\n        [-20031393.340521, -1860477.28203]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/mercator-geometry.geojson",
    "content": "{\n  \"type\": \"LineString\",\n  \"coordinates\": [\n    [-14245416.087452, -156543.052253],\n    [-10136161.391181, 3952711.561921],\n    [-7983694.73033, 7866287.482754],\n    [-3287403.712489, 9783939.750186]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/mercator-multiLine.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [-14245416.087452, -156543.052253],\n        [-10136161.391181, 3952711.561921],\n        [-7983694.73033, 7866287.482754],\n        [-3287403.712489, 9783939.750186]\n      ],\n      [\n        [-8101101.950116, 3443946.802336],\n        [-9196903.187613, 1487158.765218],\n        [-5518141.890304, 1095801.284623],\n        [-9392582.035682, -1252344.285755],\n        [-3287403.712489, -7474929.934621]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/mercator-multiPolygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [-12913060.93202, -5621521.486192],\n          [-10018754.171395, -5621521.486192],\n          [-10018754.171395, -7558415.656082],\n          [-12913060.93202, -7558415.656082],\n          [-12913060.93202, -5621521.486192]\n        ]\n      ],\n      [\n        [\n          [-10057889.874217, 1017529.749988],\n          [-8649002.568865, -391357.57973],\n          [-7240115.263512, 1369751.525059],\n          [-7318386.780476, 2465552.744045],\n          [-9353446.221541, 2817774.632412],\n          [-10057889.874217, 1017529.749988]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/mercator-passed-180th-meridian.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [12601714.231207, -2700367.319659],\n        [12993071.816027, -4138606.416476],\n        [14685693.356459, -3639625.540684],\n        [15742358.891133, -4637587.344467],\n        [16534857.930819, -4627803.413134],\n        [17141462.21512, -3169996.399371],\n        [15810846.426732, -1203424.537238],\n        [15615167.689982, -1986139.800958],\n        [15096618.792691, -1692621.582407],\n        [15214026.123796, -1340399.683217],\n        [14617205.820861, -1271912.182186],\n        [13609459.970374, -1917652.163291],\n        [13521404.583364, -2201386.426958],\n        [12601714.231207, -2700367.319659]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/mercator-passed-180th-meridian2.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-8179373.46708, 1271912.182186],\n        [-9099063.819238, -410925.448093],\n        [-8394620.166561, -1682837.629118],\n        [-7827151.696402, -2172034.572631],\n        [-8492459.534936, -6535671.749414],\n        [-7651040.811063, -7494497.668144],\n        [-7279251.077654, -7298818.963454],\n        [-7670608.662474, -6535671.749414],\n        [-6985732.861209, -4794130.456523],\n        [-6457400.093872, -4637587.344467],\n        [-5439870.37334, -3306971.589232],\n        [-5420302.521929, -2954749.719326],\n        [-4637587.352288, -2524256.44615],\n        [-3874440.034059, -763147.332293],\n        [-5635549.221409, 117407.281873],\n        [-5792092.255338, 508764.91044],\n        [-7122708.043726, 1213208.514796],\n        [-8179373.46708, 1271912.182186]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/mercator-point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-7903683.846322, 5012341.663848]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/mercator-polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-12913060.93202, 7967317.535016],\n        [-10018754.171395, 7967317.535016],\n        [-10018754.171395, 9876845.895795],\n        [-12913060.93202, 9876845.895795],\n        [-12913060.93202, 7967317.535016]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/wgs84-featureCollection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-116, 58],\n            [-90, 58],\n            [-90, 66],\n            [-116, 66],\n            [-116, 58]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-20.390625, 33.72434],\n          [-3.515625, 47.517201],\n          [14.0625, 16.972741]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.289062, 3.864255]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/wgs84-fiji.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-179.945068, -16.480864],\n        [179.653931, -16.878147],\n        [179.796753, -17.329664],\n        [-179.68689, -17.146039],\n        [-179.57428, -16.754578],\n        [-179.945068, -16.480864]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/wgs84-geometry.geojson",
    "content": "{\n  \"type\": \"LineString\",\n  \"coordinates\": [\n    [-127.96875, -1.406109],\n    [-91.054688, 33.431441],\n    [-71.71875, 57.515823],\n    [-29.53125, 65.658275]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/wgs84-line.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-127.96875, -1.406109],\n      [-91.054688, 33.431441],\n      [-71.71875, 57.515823],\n      [-29.53125, 65.658275]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/wgs84-multiLine.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [-127.96875, -1.406109],\n        [-91.054688, 33.431441],\n        [-71.71875, 57.515823],\n        [-29.53125, 65.658275]\n      ],\n      [\n        [-72.773437, 29.53523],\n        [-82.617187, 13.239945],\n        [-49.570312, 9.795678],\n        [-84.375, -11.178402],\n        [-29.53125, -55.578345]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/wgs84-multiPolygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [-116, -45],\n          [-90, -45],\n          [-90, -56],\n          [-116, -56],\n          [-116, -45]\n        ]\n      ],\n      [\n        [\n          [-90.351563, 9.102097],\n          [-77.695312, -3.513421],\n          [-65.039063, 12.21118],\n          [-65.742188, 21.616579],\n          [-84.023437, 24.527135],\n          [-90.351563, 9.102097]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/wgs84-passed-180th-meridian.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [113.203125, -23.563987],\n        [116.71875, -34.813803],\n        [131.923828, -31.052934],\n        [141.416016, -38.410558],\n        [148.535156, -38.341656],\n        [153.984375, -27.371767],\n        [142.03125, -10.746969],\n        [140.273437, -17.560247],\n        [135.615234, -15.029686],\n        [136.669922, -11.953349],\n        [131.308594, -11.350797],\n        [122.255859, -16.972741],\n        [121.464844, -19.394068],\n        [113.203125, -23.563987]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/wgs84-passed-180th-meridian2.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-73.476562, 11.350797],\n        [-81.738281, -3.688855],\n        [-75.410156, -14.944785],\n        [-70.3125, -19.145168],\n        [-76.289062, -50.513427],\n        [-68.730469, -55.677584],\n        [-65.390625, -54.673831],\n        [-68.90625, -50.513427],\n        [-62.753906, -39.504041],\n        [-58.007813, -38.410558],\n        [-48.867187, -28.459033],\n        [-48.691406, -25.641526],\n        [-41.660156, -22.105999],\n        [-34.804687, -6.83917],\n        [-50.625, 1.054628],\n        [-52.03125, 4.565474],\n        [-63.984375, 10.833306],\n        [-73.476562, 11.350797]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/wgs84-point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-71, 41]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/out/wgs84-polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-116, 58],\n        [-90, 58],\n        [-90, 66],\n        [-116, 66],\n        [-116, 58]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/wgs84/featureCollection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-116, 58],\n            [-90, 58],\n            [-90, 66],\n            [-116, 66],\n            [-116, 58]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-20.390625, 33.7243396617476],\n          [-3.515625, 47.517200697839414],\n          [14.0625, 16.97274101999902]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-76.2890625, 3.8642546157214084]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-projection/test/wgs84/fiji.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [180.054931640625, -16.480863883114882],\n        [179.6539306640625, -16.878146994732155],\n        [179.7967529296875, -17.329664329425047],\n        [180.3131103515625, -17.14603949574698],\n        [180.42572021484375, -16.754577926390958],\n        [180.054931640625, -16.480863883114882]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/wgs84/geometry.geojson",
    "content": "{\n  \"type\": \"LineString\",\n  \"coordinates\": [\n    [-127.96875, -1.4061088354351594],\n    [-91.0546875, 33.43144133557529],\n    [-71.71875, 57.51582286553883],\n    [-29.53125, 65.6582745198266]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-projection/test/wgs84/multiLine.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [-127.96875, -1.4061088354351594],\n        [-91.0546875, 33.43144133557529],\n        [-71.71875, 57.51582286553883],\n        [-29.53125, 65.6582745198266]\n      ],\n      [\n        [-72.7734375, 29.53522956294847],\n        [-82.6171875, 13.239945499286312],\n        [-49.5703125, 9.795677582829743],\n        [-84.375, -11.178401873711772],\n        [-29.53125, -55.578344672182055]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/wgs84/multiPolygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [-116, -45],\n          [-90, -45],\n          [-90, -56],\n          [-116, -56],\n          [-116, -45]\n        ]\n      ],\n      [\n        [\n          [-90.3515625, 9.102096738726456],\n          [-77.6953125, -3.513421045640032],\n          [-65.0390625, 12.211180191503997],\n          [-65.7421875, 21.616579336740603],\n          [-84.0234375, 24.5271348225978],\n          [-90.3515625, 9.102096738726456]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/wgs84/passed-180th-meridian.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-246.796875, -23.563987128451217],\n        [-243.28125, -34.813803317113134],\n        [-228.076171875, -31.05293398570514],\n        [-218.583984375, -38.410558250946075],\n        [-211.46484375, -38.34165619279593],\n        [-206.015625, -27.371767300523032],\n        [-217.96875, -10.746969318459989],\n        [-219.7265625, -17.560246503294888],\n        [-224.38476562499997, -15.029685756555674],\n        [-223.330078125, -11.953349393643416],\n        [-228.69140625, -11.350796722383672],\n        [-237.74414062500003, -16.97274101999901],\n        [-238.53515625, -19.394067895396613],\n        [-246.796875, -23.563987128451217]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/wgs84/passed-180th-meridian2.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [286.5234375, 11.350796722383672],\n        [278.26171875, -3.688855143147035],\n        [284.58984375, -14.944784875088372],\n        [289.6875, -19.145168196205297],\n        [283.7109375, -50.51342652633955],\n        [291.26953125, -55.67758441108951],\n        [294.609375, -54.67383096593114],\n        [291.09375, -50.51342652633955],\n        [297.24609375, -39.504040705584146],\n        [301.9921875, -38.410558250946075],\n        [311.1328125, -28.459033019728043],\n        [311.30859374999994, -25.641526373065755],\n        [318.33984375, -22.105998799750566],\n        [325.1953125, -6.839169626342808],\n        [309.37499999999994, 1.0546279422758869],\n        [307.96875, 4.565473550710278],\n        [296.015625, 10.833305983642491],\n        [286.5234375, 11.350796722383672]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/wgs84/point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-71, 41]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test/wgs84/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-116, 58],\n        [-90, 58],\n        [-90, 66],\n        [-116, 66],\n        [-116, 58]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-projection/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport proj4 from \"proj4\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { clone } from \"@turf/clone\";\nimport { point } from \"@turf/helpers\";\nimport { truncate } from \"@turf/truncate\";\nimport { coordEach } from \"@turf/meta\";\nimport { toMercator, toWgs84 } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  mercator: path.join(__dirname, \"test\", \"mercator\") + path.sep,\n  wgs84: path.join(__dirname, \"test\", \"wgs84\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fromWgs84 = fs.readdirSync(directories.wgs84).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: truncate(loadJsonFileSync(directories.wgs84 + filename)),\n  };\n});\n\ntest(\"to-mercator\", (t) => {\n  for (const { filename, name, geojson } of fromWgs84) {\n    var expected = clone(geojson);\n    coordEach(expected, function (coord) {\n      var newCoord = proj4(\"WGS84\", \"EPSG:900913\", coord);\n      coord[0] = newCoord[0];\n      coord[1] = newCoord[1];\n    });\n    const results = truncate(toMercator(geojson));\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + \"mercator-\" + filename, results);\n    t.deepEqual(results, truncate(expected), name);\n    t.deepEqual(\n      results,\n      loadJsonFileSync(directories.out + \"mercator-\" + filename)\n    );\n  }\n  t.end();\n});\n\nconst fromMercator = fs.readdirSync(directories.mercator).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: truncate(loadJsonFileSync(directories.mercator + filename)),\n  };\n});\n\ntest(\"to-wgs84\", (t) => {\n  for (const { filename, name, geojson } of fromMercator) {\n    var expected = clone(geojson);\n    coordEach(expected, function (coord) {\n      var newCoord = proj4(\"EPSG:900913\", \"WGS84\", coord);\n      coord[0] = newCoord[0];\n      coord[1] = newCoord[1];\n    });\n    const results = truncate(toWgs84(geojson));\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + \"wgs84-\" + filename, results);\n    t.deepEqual(results, truncate(expected), name);\n    t.deepEqual(\n      results,\n      loadJsonFileSync(directories.out + \"wgs84-\" + filename)\n    );\n  }\n  t.end();\n});\n\ntest(\"projection -- throws\", (t) => {\n  t.throws(\n    () => toMercator(null),\n    /geojson is required/,\n    \"throws missing geojson\"\n  );\n  t.throws(\n    () => toWgs84(null),\n    /geojson is required/,\n    \"throws missing geojson\"\n  );\n  t.end();\n});\n\ntest(\"projection -- verify mutation\", (t) => {\n  const pt1 = point([10, 10]);\n  const pt2 = point([15, 15]);\n  const pt1Before = clone(pt1);\n  const pt2Before = clone(pt2);\n\n  toMercator(pt1);\n  toMercator(pt1, { mutate: false });\n  t.deepEqual(\n    pt1,\n    pt1Before,\n    \"mutate = undefined - input should NOT be mutated\"\n  );\n  t.deepEqual(pt1, pt1Before, \"mutate = false - input should NOT be mutated\");\n  toMercator(pt1, { mutate: true });\n  t.notEqual(pt1, pt1Before, \"input should be mutated\");\n\n  toWgs84(pt2);\n  toWgs84(pt2, { mutate: false });\n  t.deepEqual(\n    pt2,\n    pt2Before,\n    \"mutate = undefined - input should NOT be mutated\"\n  );\n  t.deepEqual(pt2, pt2Before, \"mutate = false - input should NOT be mutated\");\n  toWgs84(pt2, { mutate: true });\n  t.notEqual(pt2, pt2Before, \"input should be mutated\");\n\n  t.end();\n});\n\ntest(\"projection -- handle Position\", (t) => {\n  const coord = [10, 40];\n  const mercator = toMercator(coord);\n  const wgs84 = toWgs84(mercator);\n  t.deepEqual(coord, wgs84, \"coord equal same as wgs84\");\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-projection/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-projection/types.ts",
    "content": "import * as projection from \"./index.js\";\nimport { toMercator, toWgs84 } from \"./index.js\";\nimport { point } from \"@turf/helpers\";\n\n// Types test\nconst pt = point([3, 51]);\nconst projected = toMercator(pt);\nconst degrees = toWgs84(projected);\n\n// default import\nprojection.toMercator(pt);\nprojection.toWgs84(projected);\n"
  },
  {
    "path": "packages/turf-quadrat-analysis/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-quadrat-analysis/README.md",
    "content": "# @turf/quadrat-analysis\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## quadratAnalysis\n\nQuadrat analysis lays a set of equal-size areas(quadrat) over the study area and counts\nthe number of features in each quadrat and creates a frequency table.\nThe table lists the number of quadrats containing no features,\nthe number containing one feature, two features, and so on,\nall the way up to the quadrat containing the most features.\nThe method then creates the frequency table for the random distribution, usually based on a Poisson distribution.\nThe method uses the distribution to calculate the probability for 0 feature occuring,\n1 feature occuring, 2 features, and so on,\nand lists these probabilities in the frequency table.\nBy comparing the two frequency tables, you can see whether the features create a pattern.\nIf the table for the observed distribution has more quadrats containing many features than the\ntable for the random distribution dose, then the features create a clustered pattern.\n\nIt is hard to judge the frequency tables are similar or different just by looking at them.\nSo, we can use serval statistical tests to find out how much the frequency tables differ.\nWe use Kolmogorov-Smirnov test.This method calculates cumulative probabilities for both distributions,\nand then compares the cumulative probabilities at each class level and selects the largest absolute difference D.\nThen, the test compares D to the critical value for a confidence level you specify.\nIf D is greater than the critical value, the difference between  the observed distribution and\nthe random distribution is significant. The greater the value the bigger the difference.\n\nTraditionally, squares are used for the shape of the quadrats, in a regular grid(square-grid).\nSome researchers suggest that the quadrat size equal twice the size of mean area per feature,\nwhich is simply the area of the study area divided by the number of features.\n\n### Parameters\n\n*   `pointFeatureSet` **[FeatureCollection][1]<[Point][2]>** point set to study\n*   `options` **[Object][3]** optional parameters (optional, default `{}`)\n\n    *   `options.studyBbox` **\\[[number][4], [number][4], [number][4], [number][4]]?** bbox representing the study area\n    *   `options.confidenceLevel` **(`20` | `15` | `10` | `5` | `2` | `1`)** a confidence level.\n        The unit is percentage . 5 means 95%, value must be in [K\\_TABLE][5] (optional, default `20`)\n\n### Examples\n\n```javascript\nvar bbox = [-65, 40, -63, 42];\nvar dataset = turf.randomPoint(100, { bbox: bbox });\nvar result = turf.quadratAnalysis(dataset);\n```\n\nReturns **[QuadratAnalysisResult][6]** result\n\n## K\\_TABLE\n\nthe confidence level\n\nType: [Object][3]\n\n### Properties\n\n*   `20` **[number][4]** 1.07275\n*   `15` **[number][4]** 1.13795\n*   `10` **[number][4]** 1.22385\n*   `5` **[number][4]** 1.3581\n*   `2` **[number][4]** 1.51743\n*   `1` **[number][4]** 1.62762\n\n## QuadratAnalysisResult\n\nthe return type of the quadratAnalysis\n\nType: [object][3]\n\n### Properties\n\n*   `criticalValue` **[number][4]**&#x20;\n*   `maxAbsoluteDifference` **[number][4]**&#x20;\n*   `isRandom` **[boolean][7]**&#x20;\n*   `observedDistribution` **[Array][8]<[number][4]>** the cumulative distribution of observed features,\n    the index represents the number of features in the quadrat.\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[5]: #k_table\n\n[6]: #quadratanalysisresult\n\n[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/quadrat-analysis\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-quadrat-analysis/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { randomPoint } from \"@turf/random\";\nimport { nearestNeighborAnalysis } from \"@turf/nearest-neighbor-analysis\";\nimport { quadratAnalysis } from \"./index.js\";\n\n/**\n * Benchmark Results\n * quadrat: 1383.768ms\n * nearest: 12259.498ms\n * quadrat x 0.76 ops/sec ±1.24% (6 runs sampled)\n * nearest x 0.08 ops/sec ±0.97% (5 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-quadrat-analysis\");\n\nconst smallBbox = [-10, -10, 10, 10];\nconst dataset = randomPoint(10000, { bbox: smallBbox });\n\nvar nameQ = \"quadrat\";\nvar nameN = \"nearest\";\nconsole.time(nameQ);\nquadratAnalysis(dataset, {\n  studyBbox: smallBbox,\n  confidenceLevel: 20,\n});\nconsole.timeEnd(nameQ);\n\nconsole.time(nameN);\nnearestNeighborAnalysis(dataset);\nconsole.timeEnd(nameN);\n\nsuite.add(nameQ, () =>\n  quadratAnalysis(dataset, {\n    studyBbox: smallBbox,\n    confidenceLevel: 20,\n  })\n);\nsuite.add(nameN, () => nearestNeighborAnalysis(dataset));\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-quadrat-analysis/index.ts",
    "content": "import { BBox, FeatureCollection, Point } from \"geojson\";\nimport { area } from \"@turf/area\";\nimport { bbox as turfBBox } from \"@turf/bbox\";\nimport { bboxPolygon } from \"@turf/bbox-polygon\";\nimport { getCoord } from \"@turf/invariant\";\nimport { squareGrid } from \"@turf/square-grid\";\n\ninterface QuadratAnalysisResult {\n  criticalValue: number;\n  maxAbsoluteDifference: number;\n  isRandom: boolean;\n  observedDistribution: number[];\n}\n\n/**\n * Quadrat analysis lays a set of equal-size areas(quadrat) over the study area and counts\n * the number of features in each quadrat and creates a frequency table.\n * The table lists the number of quadrats containing no features,\n * the number containing one feature, two features, and so on,\n * all the way up to the quadrat containing the most features.\n * The method then creates the frequency table for the random distribution, usually based on a Poisson distribution.\n * The method uses the distribution to calculate the probability for 0 feature occuring,\n * 1 feature occuring, 2 features, and so on,\n * and lists these probabilities in the frequency table.\n * By comparing the two frequency tables, you can see whether the features create a pattern.\n * If the table for the observed distribution has more quadrats containing many features than the\n * table for the random distribution dose, then the features create a clustered pattern.\n *\n * It is hard to judge the frequency tables are similar or different just by looking at them.\n * So, we can use serval statistical tests to find out how much the frequency tables differ.\n * We use Kolmogorov-Smirnov test.This method calculates cumulative probabilities for both distributions,\n * and then compares the cumulative probabilities at each class level and selects the largest absolute difference D.\n * Then, the test compares D to the critical value for a confidence level you specify.\n * If D is greater than the critical value, the difference between  the observed distribution and\n * the random distribution is significant. The greater the value the bigger the difference.\n *\n * Traditionally, squares are used for the shape of the quadrats, in a regular grid(square-grid).\n * Some researchers suggest that the quadrat size equal twice the size of mean area per feature,\n * which is simply the area of the study area divided by the number of features.\n *\n *\n * @function\n * @param {FeatureCollection<Point>} pointFeatureSet point set to study\n * @param {Object} [options={}] optional parameters\n * @param {[number, number, number, number]} [options.studyBbox] bbox representing the study area\n * @param {20 | 15 | 10 | 5 | 2 | 1} [options.confidenceLevel=20] a confidence level.\n * The unit is percentage . 5 means 95%, value must be in {@link K_TABLE}\n * @returns {QuadratAnalysisResult} result\n * @example\n *\n * var bbox = [-65, 40, -63, 42];\n * var dataset = turf.randomPoint(100, { bbox: bbox });\n * var result = turf.quadratAnalysis(dataset);\n *\n */\nfunction quadratAnalysis(\n  pointFeatureSet: FeatureCollection<Point>,\n  options: {\n    studyBbox?: [number, number, number, number];\n    confidenceLevel?: 20 | 15 | 10 | 5 | 2 | 1;\n  }\n): QuadratAnalysisResult {\n  options = options || {};\n  const studyBbox = options.studyBbox || turfBBox(pointFeatureSet);\n  const confidenceLevel = options.confidenceLevel || 20;\n  const points = pointFeatureSet.features;\n\n  // create square-grid\n  const numOfPoints = points.length;\n  const sizeOfArea = area(bboxPolygon(studyBbox));\n  const lengthOfSide = Math.sqrt((sizeOfArea / numOfPoints) * 2);\n  const grid = squareGrid(studyBbox, lengthOfSide, {\n    units: \"meters\",\n  });\n  const quadrats = grid.features;\n\n  // count the number of features in each quadrat\n  const quadratIdDict: { [key: string]: { box: BBox; cnt: number } } = {};\n  for (let i = 0; i < quadrats.length; i++) {\n    quadratIdDict[i] = {\n      box: turfBBox(quadrats[i]),\n      cnt: 0,\n    };\n  }\n\n  let sumOfPoint = 0;\n  for (const pt of points) {\n    for (const key of Object.keys(quadratIdDict)) {\n      const box = quadratIdDict[key].box;\n      if (inBBox(getCoord(pt), box)) {\n        quadratIdDict[key].cnt += 1;\n        sumOfPoint += 1;\n        break;\n      }\n    }\n  }\n\n  // the most amount of features in quadrat\n  let maxCnt = 0;\n  for (const key of Object.keys(quadratIdDict)) {\n    const cnt = quadratIdDict[key].cnt;\n    if (cnt > maxCnt) {\n      maxCnt = cnt;\n    }\n  }\n\n  const expectedDistribution = [];\n  const numOfQuadrat = Object.keys(quadratIdDict).length;\n  const lambda = sumOfPoint / numOfQuadrat;\n\n  // get the cumulative probability of the random distribution\n  let cumulativeProbility = 0.0;\n  for (let x = 0; x < maxCnt + 1; x++) {\n    cumulativeProbility +=\n      (Math.exp(-lambda) * Math.pow(lambda, x)) / factorial(x);\n    expectedDistribution.push(cumulativeProbility);\n  }\n\n  // get the cumulative probability of the observed distribution\n  const observedDistribution = [];\n  let cumulativeObservedQuads = 0;\n  for (let x = 0; x < maxCnt + 1; x++) {\n    for (const key of Object.keys(quadratIdDict)) {\n      if (quadratIdDict[key].cnt === x) {\n        cumulativeObservedQuads += 1;\n      }\n    }\n    const p = cumulativeObservedQuads / numOfQuadrat;\n    observedDistribution.push(p);\n  }\n\n  // get the largest absolute difference between two distributions\n  let maxDifference = 0;\n  for (let x = 0; x < maxCnt + 1; x++) {\n    const difference = Math.abs(\n      expectedDistribution[x] - observedDistribution[x]\n    );\n    if (difference > maxDifference) {\n      maxDifference = difference;\n    }\n  }\n\n  const k = K_TABLE[confidenceLevel];\n\n  // statistical test\n  const criticalValue = k / Math.sqrt(numOfQuadrat);\n  const result: QuadratAnalysisResult = {\n    criticalValue,\n    isRandom: true,\n    maxAbsoluteDifference: maxDifference,\n    observedDistribution,\n  };\n\n  if (maxDifference > criticalValue) {\n    result.isRandom = false;\n  }\n\n  return result;\n}\n\n/**\n * the confidence level\n *\n * @constant\n * @type {Object}\n * @property {number} 20 1.07275\n * @property {number} 15 1.13795\n * @property {number} 10 1.22385\n * @property {number} 5 1.3581\n * @property {number} 2 1.51743\n * @property {number} 1 1.62762\n */\nconst K_TABLE = {\n  20: 1.07275,\n  15: 1.13795,\n  10: 1.22385,\n  5: 1.3581,\n  2: 1.51743,\n  1: 1.62762,\n};\n\n/**\n * the return type of the quadratAnalysis\n *\n * @typedef {object} QuadratAnalysisResult\n * @property {number} criticalValue\n * @property {number} maxAbsoluteDifference\n * @property {boolean} isRandom\n * @property {Array<number>} observedDistribution the cumulative distribution of observed features,\n * the index represents the number of features in the quadrat.\n */\n\n/**\n * inBBox from @turf/boolean-point-in-polygon\n *\n * @private\n * @param {Array<number>} pt point [x,y]\n * @param {BBox} bbox BBox [west, south, east, north]\n * @returns {boolean} true/false if point is inside BBox\n */\nfunction inBBox(pt: number[], bbox: BBox) {\n  return (\n    bbox[0] <= pt[0] && bbox[1] <= pt[1] && bbox[2] >= pt[0] && bbox[3] >= pt[1]\n  );\n}\n\n/**\n * https://stackoverflow.com/questions/3959211/fast-factorial-function-in-javascript\n * @private\n * @param {number} num Number\n * @returns {number} the factorial of num\n */\nfunction factorial(num: number) {\n  const f: number[] = [];\n  function inner(n: number): number {\n    if (n === 0 || n === 1) {\n      return 1;\n    }\n    if (f[n] > 0) {\n      return f[n];\n    }\n    return (f[n] = inner(n - 1) * n);\n  }\n  return inner(num);\n}\n\nexport { QuadratAnalysisResult, quadratAnalysis };\nexport default quadratAnalysis;\n"
  },
  {
    "path": "packages/turf-quadrat-analysis/package.json",
    "content": "{\n  \"name\": \"@turf/quadrat-analysis\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Quadrat analysis lays a set of equal-size areas(quadrat) over the study area and counts the number of features in each quadrat and creates a frequency table.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Haoming Zhuang <@zhuang-hao-ming>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"quadrat-analysis\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/nearest-neighbor-analysis\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/area\": \"workspace:*\",\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/bbox-polygon\": \"workspace:*\",\n    \"@turf/centroid\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/point-grid\": \"workspace:*\",\n    \"@turf/random\": \"workspace:*\",\n    \"@turf/square-grid\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-quadrat-analysis/test/in/futian_bbox.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"bbox\": [\n    113.98555223500011, 22.502222996000057, 114.10006072800002, 22.590241646000038\n  ],\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [113.98555223500011, 22.502222996000057],\n        [114.10006072800002, 22.502222996000057],\n        [114.10006072800002, 22.590241646000038],\n        [113.98555223500011, 22.590241646000038],\n        [113.98555223500011, 22.502222996000057]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-quadrat-analysis/test/in/futian_grid.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [113.99105753441937, 22.505253158009698],\n            [113.99105753441937, 22.518912879006482],\n            [114.00584294787099, 22.518912879006482],\n            [114.00584294787099, 22.505253158009698],\n            [113.99105753441937, 22.505253158009698]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [113.99105753441937, 22.518912879006482],\n            [113.99105753441937, 22.532572600003267],\n            [114.00584294787099, 22.532572600003267],\n            [114.00584294787099, 22.518912879006482],\n            [113.99105753441937, 22.518912879006482]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [113.99105753441937, 22.532572600003267],\n            [113.99105753441937, 22.54623232100005],\n            [114.00584294787099, 22.54623232100005],\n            [114.00584294787099, 22.532572600003267],\n            [113.99105753441937, 22.532572600003267]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [113.99105753441937, 22.54623232100005],\n            [113.99105753441937, 22.559892041996836],\n            [114.00584294787099, 22.559892041996836],\n            [114.00584294787099, 22.54623232100005],\n            [113.99105753441937, 22.54623232100005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [113.99105753441937, 22.559892041996836],\n            [113.99105753441937, 22.57355176299362],\n            [114.00584294787099, 22.57355176299362],\n            [114.00584294787099, 22.559892041996836],\n            [113.99105753441937, 22.559892041996836]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [113.99105753441937, 22.57355176299362],\n            [113.99105753441937, 22.587211483990405],\n            [114.00584294787099, 22.587211483990405],\n            [114.00584294787099, 22.57355176299362],\n            [113.99105753441937, 22.57355176299362]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.00584294787099, 22.505253158009698],\n            [114.00584294787099, 22.518912879006482],\n            [114.02062836132261, 22.518912879006482],\n            [114.02062836132261, 22.505253158009698],\n            [114.00584294787099, 22.505253158009698]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.00584294787099, 22.518912879006482],\n            [114.00584294787099, 22.532572600003267],\n            [114.02062836132261, 22.532572600003267],\n            [114.02062836132261, 22.518912879006482],\n            [114.00584294787099, 22.518912879006482]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.00584294787099, 22.532572600003267],\n            [114.00584294787099, 22.54623232100005],\n            [114.02062836132261, 22.54623232100005],\n            [114.02062836132261, 22.532572600003267],\n            [114.00584294787099, 22.532572600003267]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.00584294787099, 22.54623232100005],\n            [114.00584294787099, 22.559892041996836],\n            [114.02062836132261, 22.559892041996836],\n            [114.02062836132261, 22.54623232100005],\n            [114.00584294787099, 22.54623232100005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.00584294787099, 22.559892041996836],\n            [114.00584294787099, 22.57355176299362],\n            [114.02062836132261, 22.57355176299362],\n            [114.02062836132261, 22.559892041996836],\n            [114.00584294787099, 22.559892041996836]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.00584294787099, 22.57355176299362],\n            [114.00584294787099, 22.587211483990405],\n            [114.02062836132261, 22.587211483990405],\n            [114.02062836132261, 22.57355176299362],\n            [114.00584294787099, 22.57355176299362]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.02062836132261, 22.505253158009698],\n            [114.02062836132261, 22.518912879006482],\n            [114.03541377477423, 22.518912879006482],\n            [114.03541377477423, 22.505253158009698],\n            [114.02062836132261, 22.505253158009698]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.02062836132261, 22.518912879006482],\n            [114.02062836132261, 22.532572600003267],\n            [114.03541377477423, 22.532572600003267],\n            [114.03541377477423, 22.518912879006482],\n            [114.02062836132261, 22.518912879006482]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.02062836132261, 22.532572600003267],\n            [114.02062836132261, 22.54623232100005],\n            [114.03541377477423, 22.54623232100005],\n            [114.03541377477423, 22.532572600003267],\n            [114.02062836132261, 22.532572600003267]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.02062836132261, 22.54623232100005],\n            [114.02062836132261, 22.559892041996836],\n            [114.03541377477423, 22.559892041996836],\n            [114.03541377477423, 22.54623232100005],\n            [114.02062836132261, 22.54623232100005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.02062836132261, 22.559892041996836],\n            [114.02062836132261, 22.57355176299362],\n            [114.03541377477423, 22.57355176299362],\n            [114.03541377477423, 22.559892041996836],\n            [114.02062836132261, 22.559892041996836]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.02062836132261, 22.57355176299362],\n            [114.02062836132261, 22.587211483990405],\n            [114.03541377477423, 22.587211483990405],\n            [114.03541377477423, 22.57355176299362],\n            [114.02062836132261, 22.57355176299362]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.03541377477423, 22.505253158009698],\n            [114.03541377477423, 22.518912879006482],\n            [114.05019918822585, 22.518912879006482],\n            [114.05019918822585, 22.505253158009698],\n            [114.03541377477423, 22.505253158009698]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.03541377477423, 22.518912879006482],\n            [114.03541377477423, 22.532572600003267],\n            [114.05019918822585, 22.532572600003267],\n            [114.05019918822585, 22.518912879006482],\n            [114.03541377477423, 22.518912879006482]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.03541377477423, 22.532572600003267],\n            [114.03541377477423, 22.54623232100005],\n            [114.05019918822585, 22.54623232100005],\n            [114.05019918822585, 22.532572600003267],\n            [114.03541377477423, 22.532572600003267]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.03541377477423, 22.54623232100005],\n            [114.03541377477423, 22.559892041996836],\n            [114.05019918822585, 22.559892041996836],\n            [114.05019918822585, 22.54623232100005],\n            [114.03541377477423, 22.54623232100005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.03541377477423, 22.559892041996836],\n            [114.03541377477423, 22.57355176299362],\n            [114.05019918822585, 22.57355176299362],\n            [114.05019918822585, 22.559892041996836],\n            [114.03541377477423, 22.559892041996836]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.03541377477423, 22.57355176299362],\n            [114.03541377477423, 22.587211483990405],\n            [114.05019918822585, 22.587211483990405],\n            [114.05019918822585, 22.57355176299362],\n            [114.03541377477423, 22.57355176299362]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.05019918822585, 22.505253158009698],\n            [114.05019918822585, 22.518912879006482],\n            [114.06498460167747, 22.518912879006482],\n            [114.06498460167747, 22.505253158009698],\n            [114.05019918822585, 22.505253158009698]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.05019918822585, 22.518912879006482],\n            [114.05019918822585, 22.532572600003267],\n            [114.06498460167747, 22.532572600003267],\n            [114.06498460167747, 22.518912879006482],\n            [114.05019918822585, 22.518912879006482]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.05019918822585, 22.532572600003267],\n            [114.05019918822585, 22.54623232100005],\n            [114.06498460167747, 22.54623232100005],\n            [114.06498460167747, 22.532572600003267],\n            [114.05019918822585, 22.532572600003267]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.05019918822585, 22.54623232100005],\n            [114.05019918822585, 22.559892041996836],\n            [114.06498460167747, 22.559892041996836],\n            [114.06498460167747, 22.54623232100005],\n            [114.05019918822585, 22.54623232100005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.05019918822585, 22.559892041996836],\n            [114.05019918822585, 22.57355176299362],\n            [114.06498460167747, 22.57355176299362],\n            [114.06498460167747, 22.559892041996836],\n            [114.05019918822585, 22.559892041996836]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.05019918822585, 22.57355176299362],\n            [114.05019918822585, 22.587211483990405],\n            [114.06498460167747, 22.587211483990405],\n            [114.06498460167747, 22.57355176299362],\n            [114.05019918822585, 22.57355176299362]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.06498460167747, 22.505253158009698],\n            [114.06498460167747, 22.518912879006482],\n            [114.07977001512909, 22.518912879006482],\n            [114.07977001512909, 22.505253158009698],\n            [114.06498460167747, 22.505253158009698]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.06498460167747, 22.518912879006482],\n            [114.06498460167747, 22.532572600003267],\n            [114.07977001512909, 22.532572600003267],\n            [114.07977001512909, 22.518912879006482],\n            [114.06498460167747, 22.518912879006482]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.06498460167747, 22.532572600003267],\n            [114.06498460167747, 22.54623232100005],\n            [114.07977001512909, 22.54623232100005],\n            [114.07977001512909, 22.532572600003267],\n            [114.06498460167747, 22.532572600003267]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.06498460167747, 22.54623232100005],\n            [114.06498460167747, 22.559892041996836],\n            [114.07977001512909, 22.559892041996836],\n            [114.07977001512909, 22.54623232100005],\n            [114.06498460167747, 22.54623232100005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.06498460167747, 22.559892041996836],\n            [114.06498460167747, 22.57355176299362],\n            [114.07977001512909, 22.57355176299362],\n            [114.07977001512909, 22.559892041996836],\n            [114.06498460167747, 22.559892041996836]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.06498460167747, 22.57355176299362],\n            [114.06498460167747, 22.587211483990405],\n            [114.07977001512909, 22.587211483990405],\n            [114.07977001512909, 22.57355176299362],\n            [114.06498460167747, 22.57355176299362]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.07977001512909, 22.505253158009698],\n            [114.07977001512909, 22.518912879006482],\n            [114.0945554285807, 22.518912879006482],\n            [114.0945554285807, 22.505253158009698],\n            [114.07977001512909, 22.505253158009698]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.07977001512909, 22.518912879006482],\n            [114.07977001512909, 22.532572600003267],\n            [114.0945554285807, 22.532572600003267],\n            [114.0945554285807, 22.518912879006482],\n            [114.07977001512909, 22.518912879006482]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.07977001512909, 22.532572600003267],\n            [114.07977001512909, 22.54623232100005],\n            [114.0945554285807, 22.54623232100005],\n            [114.0945554285807, 22.532572600003267],\n            [114.07977001512909, 22.532572600003267]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.07977001512909, 22.54623232100005],\n            [114.07977001512909, 22.559892041996836],\n            [114.0945554285807, 22.559892041996836],\n            [114.0945554285807, 22.54623232100005],\n            [114.07977001512909, 22.54623232100005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.07977001512909, 22.559892041996836],\n            [114.07977001512909, 22.57355176299362],\n            [114.0945554285807, 22.57355176299362],\n            [114.0945554285807, 22.559892041996836],\n            [114.07977001512909, 22.559892041996836]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114.07977001512909, 22.57355176299362],\n            [114.07977001512909, 22.587211483990405],\n            [114.0945554285807, 22.587211483990405],\n            [114.0945554285807, 22.57355176299362],\n            [114.07977001512909, 22.57355176299362]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-quadrat-analysis/test/in/futian_random_point.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"crs\": {\n    \"type\": \"name\",\n    \"properties\": { \"name\": \"urn:ogc:def:crs:OGC:1.3:CRS84\" }\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.012396810748868, 22.577038182860864]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.022345719876583, 22.58915225743322]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.081591202489733, 22.512875866100121]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.070288644326325, 22.580427569281504]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.084088037094048, 22.527949402615384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.061569896268708, 22.531643159230534]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.072488277565697, 22.547456588733716]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.029648321473431, 22.526964527779505]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.062150019960725, 22.535953535879997]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.084703246348823, 22.506711632963178]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.009186983623835, 22.535368584602789]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.064433895407035, 22.529029569319139]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.030455652647731, 22.557579152389284]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.088849685107959, 22.547800494706667]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.042501275117402, 22.557099305894305]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [113.993682424144652, 22.504465820602139]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.057585800702213, 22.533388548208375]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.082882677232689, 22.563222531495995]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.084750977158095, 22.548236361789854]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.029746392465796, 22.52688964901628]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.072480235302393, 22.531695697686111]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.084761444300511, 22.551393606403742]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [113.985997513023875, 22.54220645166879]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.045618276232219, 22.523814198963493]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [113.997732675890404, 22.562214267908132]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.03296580222505, 22.574014476118222]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.082432233916776, 22.582944360811339]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.015967159958251, 22.524889490687997]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.026021449055136, 22.587747595650029]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.070083600951435, 22.575219971021589]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.055764476970708, 22.571547968601735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.028768505631163, 22.580072581604412]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.009099326664995, 22.557883326830463]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.053465836401614, 22.574807437767973]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [113.996898113509303, 22.575031169231334]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.096544058781433, 22.523765090125909]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.020495417250757, 22.552711368464273]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.01057682966966, 22.531395244361597]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.009624811553678, 22.540950904901756]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [113.996228877803006, 22.553123231992306]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.03077623663836, 22.508453253115626]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.050429064467053, 22.579660547734914]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.071961407580275, 22.562150761527985]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.053733430523764, 22.508092769098212]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.069467873831712, 22.581226715851123]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.07462816181804, 22.585432523826722]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.040622894528695, 22.547378676941527]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.010488433025643, 22.58174702082114]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.07207980114552, 22.564609783692944]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.089587443004916, 22.51495811016029]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.027648012059458, 22.530039861593508]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.094278178715101, 22.556312487849652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.099281286588095, 22.561470627571943]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.089335643763349, 22.56211646092148]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.004092509061849, 22.558861131757801]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.057548116643346, 22.557516188511453]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.012162464494139, 22.5335596267808]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.08146024472768, 22.505470214536889]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.004891994411722, 22.522541255234174]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.076475441076695, 22.510657907601544]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.092190473407641, 22.577255295927134]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.027169432126243, 22.58363847375195]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.018826431979349, 22.524517859551381]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.075547902316842, 22.586892257710332]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.086673815214567, 22.517165674386639]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.038998167726703, 22.544282798209075]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.021620251887171, 22.575589802670319]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [113.996837684771208, 22.527272953051764]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.000481232525786, 22.577958178256186]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.034598917031303, 22.563489509525773]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.037669585017611, 22.572600156187132]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.097902408273242, 22.573137445791438]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.000319765309797, 22.581877064806971]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [113.991701965722257, 22.514802308872774]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.001379634770984, 22.563179801036345]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.01871982965271, 22.570104574874751]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.004114451775592, 22.576563959437632]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.002685873357009, 22.580539307052153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [113.990654651073172, 22.504383785693985]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.052911034556047, 22.502375277354993]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [113.986066110505462, 22.516677895127369]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.014249571313542, 22.564834967075466]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.030981055633561, 22.571444246880713]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.042912399516666, 22.520926062221506]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.081319259837784, 22.583650564389078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.053745555985728, 22.548966459241861]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.042646183452732, 22.520322842764937]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.021402072275208, 22.553613896727775]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.032206202499879, 22.559241083722466]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.026106233228631, 22.512460878716205]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.045601133580405, 22.568584898665947]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.079794124349945, 22.553416305219589]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.03722014949075, 22.541375170567186]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [113.997431358053774, 22.50431902560722]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.049425264123144, 22.537905215257037]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.036342840857031, 22.504620180463135]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.025496565213984, 22.537746532755957]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.049168625574509, 22.572187897545597]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.086426303502236, 22.514895589268633]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"Id\": 0 },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [114.048942077580847, 22.539033907473133]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-quadrat-analysis/test/in/shenzhen_bbox.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"bbox\": [113.74628, 22.44146568700006, 114.62397100100009, 22.86471934700006],\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [113.74628, 22.44146568700006],\n        [114.62397100100009, 22.44146568700006],\n        [114.62397100100009, 22.86471934700006],\n        [113.74628, 22.86471934700006],\n        [113.74628, 22.44146568700006]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-quadrat-analysis/test/out/bigBox.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"bbox\": [-3, -3, 3, 3],\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-3, -3],\n        [3, -3],\n        [3, 3],\n        [-3, 3],\n        [-3, -3]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-quadrat-analysis/test/out/randomPoint.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.2646228048913839, 0.6297133701660846]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4156573918201376, -0.7961308531775311]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8186893011177112, 0.6825903107541405]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.22968539892666895, 0.7389498822646203]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4205902346397479, -0.7714618931657107]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7962155799132544, 0.9049399145991561]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.15658197958954823, -0.32358292785368503]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7659609076324778, 0.42422917202736476]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9133854857941084, 0.7091251355181027]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.37192350120324, 0.46383543863322974]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.26441804595925555, -0.03178187323847492]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.26465159766419877, 0.6201264966301507]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8545239902547048, 0.5977853739880725]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9893664624030873, -0.6989838957211654]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8697133051661128, -0.4490224426657936]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6006474501320951, 0.5836620598798219]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4267483257637572, 0.39847714504839793]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8422306084123563, -0.9990371173789243]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.34404641770172883, 0.044847937943329086]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.861618555972075, 0.4438064489236617]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9504829302525808, 0.2062224606270684]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.19472861401956099, -0.8466720690912513]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7446967341953084, 0.3454527598949153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.39689075714793853, -0.9341403346984354]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8360306464873237, -0.09871090483791889]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8217393664745631, 0.2412567406645132]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2451602385984435, 0.21522901271205663]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5705272926661706, -0.5187741757611795]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.39621512154380945, -0.8266169427583714]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5998506103856229, 0.20649810838181537]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7818704039090458, -0.0534248812924103]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.36926218582566595, -0.8124735044668254]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.32331878131562686, -0.8677891483889959]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.1290449870875241, 0.07781295283624523]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4420304690684955, 0.8927212284791293]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9888291904437598, -0.3850362918656316]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.31661597893310267, 0.5802343500951346]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.21646976628371162, 0.2947411053334723]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.29128918905009993, 0.3840829629026685]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5248705620031009, 0.40693775648252073]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.03286144069348618, -0.8238026404084171]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7929793251387784, 0.38128302113881496]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7878133475037505, 0.09039732734964545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.16380545601262586, -0.11867371326988208]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.24554097037521627, 0.5817444142036949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7720122969892569, 0.7671602860822886]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4600771619614137, 0.3058074243598101]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6596743348826015, 0.24903991939697834]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6754390902665843, -0.11581579549126975]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.26037565307167654, 0.3014450810911091]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5859972313917297, -0.29574292669439073]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6547053760007455, -0.8134858098332809]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.39502496145336696, -0.07910463349409946]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6404968174679637, 0.7522585913434119]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.708737754633114, -0.10304752771339043]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.823544814990536, 0.24258697772302584]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.46134519251293815, 0.3463415950737949]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.439369879225012, 0.005079888593249482]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40737296309138227, 0.92748540167391]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.1615139329073254, -0.5191861631356667]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7753328743904291, -0.26574694974855895]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.49745416754458427, -0.06900158116717447]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6972797036554645, -0.783673684571871]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.32159746751456453, -0.563598727119424]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9237857797985622, 0.49400590784346043]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5338023771699412, -0.9919613631474586]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6212586052443347, 0.6670825361582766]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7474542629787022, -0.15955468997983324]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.06347650278672523, 0.3311952250858856]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2497714947828631, 0.8688992901635668]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9350623011869308, -0.7871248584390296]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3335841163095363, -0.7362230044862383]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.47041379988186005, -0.42406003037177564]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4121373328792437, 0.7082311719308687]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.18881515555167105, 0.8636389701429894]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.1702041867191313, 0.38801306035614713]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7018816191548902, 0.34300188972288526]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.04335784711955171, -0.49495470083861903]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.16584434819359517, -0.2021970869075611]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.38073012575233633, 0.2550246525133968]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3984401815461185, -0.48818566334822266]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7431950985416771, 0.6181293259030411]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5181922146874904, 0.4234383674571265]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.760929899255256, 0.5750313756257595]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5348592814439441, 0.7760340140063193]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.14219290100374327, 0.5226491017848889]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6368940655027089, -0.8343745815677304]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5411357085818946, 0.7506963646171472]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5515268668614826, -0.6661269431386816]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.89184927563279, -0.5490420885696579]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8426219990302926, -0.18296070153335098]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9264101024853821, -0.209160264784793]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9403547391483578, 0.1382679948560619]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9584194930089462, -0.42673990490320035]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.372040198476852, 0.8801070632814318]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.712207589472392, 0.37360990306238673]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6212104004289007, 0.6975049145474674]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6306654856676688, -0.026717306203241087]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3585068182243303, -0.32382237734922414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.47354215674392597, -0.26049350307702035]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3214969041931357, -0.7793433268031573]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.291689526488502, 0.7761923467033163]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.07529473765675165, -0.06537965954956881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4272940536750953, -0.26251784028005876]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2762133410924834, -0.5733640751919471]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.993575664519248, 0.37970688045041046]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.1608215877399961, -0.24355638133578505]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9924050084103198, 0.03647091715523443]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7157975802806034, 0.9699689404742724]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5973945285434739, -0.9366721612460895]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.2907549471410933, -0.8412185994097929]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6557849145987489, 0.03986958678365715]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.012781365496710162, 0.28313858333739983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4935366823869316, -0.75246345822501]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6790699457379641, 0.16903439731557857]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8249683341095433, 0.3686548095308311]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5447630902238818, -0.7216036466638607]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7527671448998485, -0.6846787131393621]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6391169059739594, -0.25550707673508644]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8606599855187671, 0.48303245885869384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.26634978701510104, 0.8538935113949537]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.21316527985415723, 0.24934814569995867]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.841752162773787, -0.23897766157999856]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6762778277856452, -0.5014904988772217]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4720763414299345, -0.45770043940331684]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.25497063549124777, -0.9133140825536734]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6064543353951124, -0.16019123914114042]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.1739195098881985, 0.7945203568397328]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.559488486295816, 0.22772196463029282]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.048829683014756764, 0.9768018246118526]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9050480159671528, 0.8569378906059781]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9850439930490897, 0.14766896474491276]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.42582624994509066, 0.24862769375376859]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.357319350647165, 0.4677486665250732]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.0973008608383985, -0.5808950892511295]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.48830340671918115, 0.18279503567088318]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9611833807732486, 0.08907079292911124]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5492977526077758, 0.6220576567058327]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8777408553511292, 0.4345406393752844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4775611114713718, 0.27897689813922666]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5004448012566791, -0.29060251077235444]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7820698542505791, 0.7209013367883137]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.11984006581584206, 0.9014937273761303]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.012899130043940943, 0.13698935404191603]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9731140329364063, 0.9532214557569847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7873935468343616, 0.6143622116052394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.07675467033962402, 0.0007515515922897897]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.19450603554449675, 0.025248153491577163]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8796096138837468, 0.9162253368065127]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.014266605994106119, -0.416790426816938]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7596995382216134, 0.029576074570471622]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.13167426774319102, -0.5258071539899354]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.41642019370239636, 0.9931129409451818]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.702318031018554, 0.18884427243657154]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.09701800822859363, 0.8078932526721978]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.26962708120111545, 0.07401536431574662]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3828948673191066, -0.2519389298846182]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9662930639751641, 0.07716678340956173]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6693233355344335, -0.7309061298103319]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.004205577527328419, 0.2529196135912817]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.21004856518198967, 0.057438738165112024]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9522297634183543, -0.8504122689563176]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.70610790317554, -0.06215442473006183]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.25127464448995784, -0.028908390278758578]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9965927930246741, -0.5398239445086417]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7394184740268668, -0.4761322499247762]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9564462053464462, 0.8945486105347387]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3577597759858011, 0.7407337135643424]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4325658891684667, 0.8973795273567826]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.569029675530524, -0.7495660003967344]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.12272966698869547, 0.9656504267215578]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4765791198023841, 0.6549636864327986]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.273104653619864, 0.9066903851479546]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6741197318408796, -0.5382401936493468]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.37016150505420997, -0.5932078932531306]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7111685530926244, 0.21241188561059765]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.412438638171142, 0.9259213532244646]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2694976620075047, 0.2907379265967944]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.822356130156165, -0.8096495054511661]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9171117904385198, -0.8730539985722712]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.802162631626409, -0.9497506666904711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3837293171721958, 0.6503695140354577]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.20349309212103384, 0.0254855959996525]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5869975141596551, 0.08694431220685761]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.21883659629261354, -0.8753852777751687]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6263702561333835, -0.3051242233721694]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.30391613877514345, -0.3243607477494881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.16839876086786498, 0.6530629475586269]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5183657464628499, -0.370080203192245]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.21443879236226326, -0.7133939386972492]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4701036127703695, 0.10035194550796289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.008929530802198826, -0.42834314230686266]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8886070865533644, -0.6708031913155312]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3253897748417405, -0.5940875654531896]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.31107978024711613, 0.5478423422904113]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9684917668544752, 0.965870686981837]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3448026824894561, -0.14064707419363032]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4500650548649303, 0.736984599846723]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3812392824646129, -0.6028917156016185]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.08347535381255078, 0.840134507550339]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6191701776973368, -0.1659632702883327]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.938906044016123, -0.9770902191788564]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.18268691688936478, 0.08157086615112519]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8538570907354774, -0.44774297119330964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5960198539791763, 0.6079527658068486]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7474196857283872, 0.8280491002448085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.404827949165548, 0.21358424025639433]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.013095991143042163, 0.877982133662377]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4596655005959027, -0.126778148791733]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.06759579229030743, -0.5773759251138024]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.756567401374804, -0.26147471084133356]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.857806997195643, -0.6568849992320085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6456862812573019, 0.01311245720863008]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5089804093399954, 0.050593542218491994]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.925816958628503, -0.48210082007811117]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8550034587951294, 0.18408320416432655]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4968721077635494, -0.11051876653338999]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7517565286997767, -0.6303459989277558]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.16736863731161877, 0.6729300272230812]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8584281173712127, 0.15782319463966665]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4789576160444873, 0.1569665927600008]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6318459273880799, 0.6450070824485707]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.47847232182376853, 0.1813290455636416]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7669488437759688, 0.4181878109145378]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.419121640378584, -0.13025508482129222]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7386184001208416, 0.35807901968761646]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.2689430941423385, -0.3074667768980319]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.0020544005952070066, 0.8708801820610019]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5247463767686309, -0.6712389811834485]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.22737098765849062, -0.35182620949559107]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6411939031383453, -0.532969282636822]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4912837187824479, 0.90540005369715]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8054048241057568, -0.5574842015306096]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7102571895333352, 0.22929048910929684]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6782045691350165, -0.6807906807109538]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9924152603075109, -0.9341524196454798]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.1997131634949314, 0.9735598861708286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.06624650353887374, 0.15278625913339594]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6771113678214808, 0.7273494682759485]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.2190221904877081, -0.44929802215066017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.00006564304458045456, -0.9831034644068746]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5010416038685639, 0.052456658145547674]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.18595589616088803, -0.22213525965428493]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.25397655794694485, -0.7838049158478957]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.2227256615325146, 0.8991190296910374]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.29447145789655904, 0.6747263192933031]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.03494230145311095, -0.4265645793751145]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.020409290392173318, -0.30938175144596025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7335934673327249, 0.34441580346769074]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7321534326493491, 0.3485170647918352]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7317466907679879, 0.7273609200964359]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5499365261797502, -0.5555524103649092]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.2900488904101901, 0.17574361800391314]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.621398895493912, -0.8215110591960437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6369390685500185, -0.505429662050608]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.39554566111431244, 0.3063307776457429]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3929081100639227, 0.48460909328785284]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8358842443624281, -0.7227100494076897]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7138479897539418, 0.8699487104758998]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.0723057656497752, 0.6461776565695825]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2917890585910268, 0.14715266479287292]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2247706158014764, -0.792114327320153]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7465857527178685, -0.08101569547060539]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4631725909956268, 0.5091320381781688]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6530348530671972, -0.06087124985806058]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8407153475638633, 0.8090957199479702]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.08253633180004005, 0.9227542204431596]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9656420992427366, -0.6636455443328901]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4974745204721316, -0.3143174022912163]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.12896398244104113, 0.44159779346374783]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.03186456853367492, -0.45752777975649384]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7016889192479141, -0.11321107963984467]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6390691638789594, 0.050555524113967465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5822318730972413, 0.7526994507550624]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.31162040293415316, 0.37325852170770046]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9610515420192867, -0.8112921146237815]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9356160226053918, -0.4143406821184219]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6930818325992485, 0.12103915584784586]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.44684825890050117, -0.8698047145763916]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.1478252552013739, 0.6912911452718413]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3540175801312557, 0.121334017850526]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6571441094158765, -0.9514911773989625]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.06549518634693507, 0.7486461715090473]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5353487996067878, 0.06312759738651197]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.009053305085289676, -0.4310832759965577]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4953117324690264, 0.11574003659569243]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.005585477087625801, 0.11194620607121619]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.870669594057337, 0.39969466936984777]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5103791689152009, -0.3815167585223542]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9823458094091806, -0.6939736519826449]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.1545969805537304, 0.555072185150201]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3176174608398359, 0.6054703742836565]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.42113068594290315, -0.6900521637268926]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8662300880013363, -0.3765013942370099]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8767590987628986, 0.740524541587062]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7575986084956656, 0.7602464350333813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2183856061324052, 0.7981018116823164]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.30229875572462506, 0.2567493033218269]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.36031348476769054, 0.9432008199343831]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8928844324439518, 0.8333220090930156]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6275530901748292, 0.2205866711960467]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5770369149611887, -0.6889868278622813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7436040879915518, -0.5272945742614743]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7894842115149379, 0.35182571415183705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.01820158252605486, -0.7171619603532902]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.06981517882851307, 0.6224075263544488]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.0267418187843127, 0.3776323331971492]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8672441677292384, -0.6967057334766409]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.1042785489570961, -0.1398547359381288]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.673475781526423, 0.02303081487826386]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3917209276949145, -0.16096076185649055]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.48762497607762567, 0.292922531917017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.2263517916741833, -0.651466895049603]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7323652738567215, -0.31781503745077044]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.21696818524404682, -0.9628173724124514]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8164886633745665, 0.07014573297590454]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5095636170008913, 0.8594761596687648]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6757495367689943, 0.30211526394145194]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5156749651761987, 0.859993848070916]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5456260288239965, -0.9979043443414413]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8418119714045948, 0.4212965020133388]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.42248685701898214, 0.5936273988914125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.09451522766858123, -0.5116192105248407]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8033556753616176, 0.374004110031835]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7007666506006465, 0.49526517857659025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7682335448122979, -0.008927733425842188]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.524527938076778, 0.7258813132607909]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5698226290732031, 0.7513529149483649]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6654695225591087, -0.4651584639515951]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.37704846956719473, 0.4203942642942806]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4333715038690844, 0.5934012351428279]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5470937998217131, 0.7418814021327114]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.26572054739215334, 0.019507885581563134]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.12153067406331886, 0.5505515705853776]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.22832358453606405, 0.08440667887936915]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4715901158986071, 0.7729315293363062]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.46044561182537747, -0.6553047329956678]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.563865869270892, 0.3127775225707312]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8825938277468417, -0.967428586878567]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.14318415790832884, -0.43911774160858874]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.22288032566551896, -0.9908435149416133]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.017116337831216466, -0.277822932353859]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6209247081063345, -0.8486795701477288]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.11128564629701954, -0.3065922268391166]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.15064374932397717, -0.7210954613896674]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.961837429018443, 0.23031717219096937]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.551853206899525, 0.6772131515283477]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9793627380652654, -0.24860911736444047]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8892177776227665, -0.6071060897664369]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.1747706863074514, 0.20713131212425662]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8843413179144095, -0.3226349357124718]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6058283366958306, -0.5138395427641669]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4561255350583777, -0.7611137943446735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5124926798559493, -0.378345292390986]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2905706804168249, 0.43592999905588803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8501895144064266, -0.46623846499385113]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.13611621159523724, 0.7597671494059224]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.07015232070892408, 0.3857738767534813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.25526193699802047, -0.6520527013002893]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.039663797279961166, 0.8605693829522134]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9119947825256616, -0.919685345195135]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9485318917857022, -0.8981880893736007]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.2708517216453181, 0.5999456757703756]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40258529561527334, -0.346411509324259]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9341516846909439, 0.9627294130678443]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.380987949542245, -0.36689782373986946]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10290827283385173, -0.3205633962220191]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3553882372952373, -0.7957952568101301]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6361723958951315, -0.4917701866359545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9472483687136442, 0.5324735427804215]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5532974316393049, 0.0014871376743736953]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.32510796093051564, -0.44625150047606166]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3898867697063664, 0.7557122495010522]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.47612389034956726, -0.8675433820857714]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2855443729268736, 0.47506131332245527]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7266744333780828, 0.3559576081521034]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.05553899074541091, -0.3873788013086985]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5139240499789275, -0.6397510855752797]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6383170286944755, 0.9887592774895242]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7659516993761537, 0.15481006881119885]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7734488015305949, 0.12174248621589934]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6155652394556719, 0.49428692234794314]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6892536214056277, -0.9503146865801217]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8737304778767299, -0.7599000272195489]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6864162894219374, 0.9598513226960632]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.06313214328432304, 0.2734217344805363]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8941803313231, -0.849294115617429]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9688286690561152, -0.13833772885570372]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6233837009283731, -0.8516191074829047]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9495260366291829, -0.3033288313421285]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.32774939757561317, 0.5461831964564228]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5729661035062232, -0.3119960048903456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.870745020411821, 0.8545412870841043]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.11134069085109344, -0.4246422276256925]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8148903573949031, 0.7483316037580976]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10515037621590073, -0.5242746949953236]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8205935735863661, 0.5634960996499045]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.12765005184760092, 0.2279657868737961]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3912877276412945, 0.6225492432838924]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.13801376850893599, 0.747107802328733]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-quadrat-analysis/test/out/smallBox.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"bbox\": [-1, -1, 1, 1],\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-1, -1],\n        [1, -1],\n        [1, 1],\n        [-1, 1],\n        [-1, -1]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-quadrat-analysis/test/out/smallGrid.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, -0.9511099751705248],\n            [-0.9512548706043196, -0.8509931356788906],\n            [-0.8511227789617596, -0.8509931356788906],\n            [-0.8511227789617596, -0.9511099751705248],\n            [-0.9512548706043196, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, -0.8509931356788906],\n            [-0.9512548706043196, -0.7508762961872564],\n            [-0.8511227789617596, -0.7508762961872564],\n            [-0.8511227789617596, -0.8509931356788906],\n            [-0.9512548706043196, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, -0.7508762961872564],\n            [-0.9512548706043196, -0.6507594566956222],\n            [-0.8511227789617596, -0.6507594566956222],\n            [-0.8511227789617596, -0.7508762961872564],\n            [-0.9512548706043196, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, -0.6507594566956222],\n            [-0.9512548706043196, -0.550642617203988],\n            [-0.8511227789617596, -0.550642617203988],\n            [-0.8511227789617596, -0.6507594566956222],\n            [-0.9512548706043196, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, -0.550642617203988],\n            [-0.9512548706043196, -0.4505257777123538],\n            [-0.8511227789617596, -0.4505257777123538],\n            [-0.8511227789617596, -0.550642617203988],\n            [-0.9512548706043196, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, -0.4505257777123538],\n            [-0.9512548706043196, -0.3504089382207196],\n            [-0.8511227789617596, -0.3504089382207196],\n            [-0.8511227789617596, -0.4505257777123538],\n            [-0.9512548706043196, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, -0.3504089382207196],\n            [-0.9512548706043196, -0.2502920987290854],\n            [-0.8511227789617596, -0.2502920987290854],\n            [-0.8511227789617596, -0.3504089382207196],\n            [-0.9512548706043196, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, -0.2502920987290854],\n            [-0.9512548706043196, -0.15017525923745123],\n            [-0.8511227789617596, -0.15017525923745123],\n            [-0.8511227789617596, -0.2502920987290854],\n            [-0.9512548706043196, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, -0.15017525923745123],\n            [-0.9512548706043196, -0.05005841974581704],\n            [-0.8511227789617596, -0.05005841974581704],\n            [-0.8511227789617596, -0.15017525923745123],\n            [-0.9512548706043196, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, -0.05005841974581704],\n            [-0.9512548706043196, 0.05005841974581715],\n            [-0.8511227789617596, 0.05005841974581715],\n            [-0.8511227789617596, -0.05005841974581704],\n            [-0.9512548706043196, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, 0.05005841974581715],\n            [-0.9512548706043196, 0.15017525923745134],\n            [-0.8511227789617596, 0.15017525923745134],\n            [-0.8511227789617596, 0.05005841974581715],\n            [-0.9512548706043196, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, 0.15017525923745134],\n            [-0.9512548706043196, 0.25029209872908553],\n            [-0.8511227789617596, 0.25029209872908553],\n            [-0.8511227789617596, 0.15017525923745134],\n            [-0.9512548706043196, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, 0.25029209872908553],\n            [-0.9512548706043196, 0.3504089382207197],\n            [-0.8511227789617596, 0.3504089382207197],\n            [-0.8511227789617596, 0.25029209872908553],\n            [-0.9512548706043196, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, 0.3504089382207197],\n            [-0.9512548706043196, 0.4505257777123539],\n            [-0.8511227789617596, 0.4505257777123539],\n            [-0.8511227789617596, 0.3504089382207197],\n            [-0.9512548706043196, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, 0.4505257777123539],\n            [-0.9512548706043196, 0.5506426172039881],\n            [-0.8511227789617596, 0.5506426172039881],\n            [-0.8511227789617596, 0.4505257777123539],\n            [-0.9512548706043196, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, 0.5506426172039881],\n            [-0.9512548706043196, 0.6507594566956223],\n            [-0.8511227789617596, 0.6507594566956223],\n            [-0.8511227789617596, 0.5506426172039881],\n            [-0.9512548706043196, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, 0.6507594566956223],\n            [-0.9512548706043196, 0.7508762961872565],\n            [-0.8511227789617596, 0.7508762961872565],\n            [-0.8511227789617596, 0.6507594566956223],\n            [-0.9512548706043196, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, 0.7508762961872565],\n            [-0.9512548706043196, 0.8509931356788907],\n            [-0.8511227789617596, 0.8509931356788907],\n            [-0.8511227789617596, 0.7508762961872565],\n            [-0.9512548706043196, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.9512548706043196, 0.8509931356788907],\n            [-0.9512548706043196, 0.9511099751705249],\n            [-0.8511227789617596, 0.9511099751705249],\n            [-0.8511227789617596, 0.8509931356788907],\n            [-0.9512548706043196, 0.8509931356788907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, -0.9511099751705248],\n            [-0.8511227789617596, -0.8509931356788906],\n            [-0.7509906873191996, -0.8509931356788906],\n            [-0.7509906873191996, -0.9511099751705248],\n            [-0.8511227789617596, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, -0.8509931356788906],\n            [-0.8511227789617596, -0.7508762961872564],\n            [-0.7509906873191996, -0.7508762961872564],\n            [-0.7509906873191996, -0.8509931356788906],\n            [-0.8511227789617596, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, -0.7508762961872564],\n            [-0.8511227789617596, -0.6507594566956222],\n            [-0.7509906873191996, -0.6507594566956222],\n            [-0.7509906873191996, -0.7508762961872564],\n            [-0.8511227789617596, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, -0.6507594566956222],\n            [-0.8511227789617596, -0.550642617203988],\n            [-0.7509906873191996, -0.550642617203988],\n            [-0.7509906873191996, -0.6507594566956222],\n            [-0.8511227789617596, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, -0.550642617203988],\n            [-0.8511227789617596, -0.4505257777123538],\n            [-0.7509906873191996, -0.4505257777123538],\n            [-0.7509906873191996, -0.550642617203988],\n            [-0.8511227789617596, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, -0.4505257777123538],\n            [-0.8511227789617596, -0.3504089382207196],\n            [-0.7509906873191996, -0.3504089382207196],\n            [-0.7509906873191996, -0.4505257777123538],\n            [-0.8511227789617596, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, -0.3504089382207196],\n            [-0.8511227789617596, -0.2502920987290854],\n            [-0.7509906873191996, -0.2502920987290854],\n            [-0.7509906873191996, -0.3504089382207196],\n            [-0.8511227789617596, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, -0.2502920987290854],\n            [-0.8511227789617596, -0.15017525923745123],\n            [-0.7509906873191996, -0.15017525923745123],\n            [-0.7509906873191996, -0.2502920987290854],\n            [-0.8511227789617596, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, -0.15017525923745123],\n            [-0.8511227789617596, -0.05005841974581704],\n            [-0.7509906873191996, -0.05005841974581704],\n            [-0.7509906873191996, -0.15017525923745123],\n            [-0.8511227789617596, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, -0.05005841974581704],\n            [-0.8511227789617596, 0.05005841974581715],\n            [-0.7509906873191996, 0.05005841974581715],\n            [-0.7509906873191996, -0.05005841974581704],\n            [-0.8511227789617596, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, 0.05005841974581715],\n            [-0.8511227789617596, 0.15017525923745134],\n            [-0.7509906873191996, 0.15017525923745134],\n            [-0.7509906873191996, 0.05005841974581715],\n            [-0.8511227789617596, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, 0.15017525923745134],\n            [-0.8511227789617596, 0.25029209872908553],\n            [-0.7509906873191996, 0.25029209872908553],\n            [-0.7509906873191996, 0.15017525923745134],\n            [-0.8511227789617596, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, 0.25029209872908553],\n            [-0.8511227789617596, 0.3504089382207197],\n            [-0.7509906873191996, 0.3504089382207197],\n            [-0.7509906873191996, 0.25029209872908553],\n            [-0.8511227789617596, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, 0.3504089382207197],\n            [-0.8511227789617596, 0.4505257777123539],\n            [-0.7509906873191996, 0.4505257777123539],\n            [-0.7509906873191996, 0.3504089382207197],\n            [-0.8511227789617596, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, 0.4505257777123539],\n            [-0.8511227789617596, 0.5506426172039881],\n            [-0.7509906873191996, 0.5506426172039881],\n            [-0.7509906873191996, 0.4505257777123539],\n            [-0.8511227789617596, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, 0.5506426172039881],\n            [-0.8511227789617596, 0.6507594566956223],\n            [-0.7509906873191996, 0.6507594566956223],\n            [-0.7509906873191996, 0.5506426172039881],\n            [-0.8511227789617596, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, 0.6507594566956223],\n            [-0.8511227789617596, 0.7508762961872565],\n            [-0.7509906873191996, 0.7508762961872565],\n            [-0.7509906873191996, 0.6507594566956223],\n            [-0.8511227789617596, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, 0.7508762961872565],\n            [-0.8511227789617596, 0.8509931356788907],\n            [-0.7509906873191996, 0.8509931356788907],\n            [-0.7509906873191996, 0.7508762961872565],\n            [-0.8511227789617596, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.8511227789617596, 0.8509931356788907],\n            [-0.8511227789617596, 0.9511099751705249],\n            [-0.7509906873191996, 0.9511099751705249],\n            [-0.7509906873191996, 0.8509931356788907],\n            [-0.8511227789617596, 0.8509931356788907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, -0.9511099751705248],\n            [-0.7509906873191996, -0.8509931356788906],\n            [-0.6508585956766396, -0.8509931356788906],\n            [-0.6508585956766396, -0.9511099751705248],\n            [-0.7509906873191996, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, -0.8509931356788906],\n            [-0.7509906873191996, -0.7508762961872564],\n            [-0.6508585956766396, -0.7508762961872564],\n            [-0.6508585956766396, -0.8509931356788906],\n            [-0.7509906873191996, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, -0.7508762961872564],\n            [-0.7509906873191996, -0.6507594566956222],\n            [-0.6508585956766396, -0.6507594566956222],\n            [-0.6508585956766396, -0.7508762961872564],\n            [-0.7509906873191996, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, -0.6507594566956222],\n            [-0.7509906873191996, -0.550642617203988],\n            [-0.6508585956766396, -0.550642617203988],\n            [-0.6508585956766396, -0.6507594566956222],\n            [-0.7509906873191996, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, -0.550642617203988],\n            [-0.7509906873191996, -0.4505257777123538],\n            [-0.6508585956766396, -0.4505257777123538],\n            [-0.6508585956766396, -0.550642617203988],\n            [-0.7509906873191996, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, -0.4505257777123538],\n            [-0.7509906873191996, -0.3504089382207196],\n            [-0.6508585956766396, -0.3504089382207196],\n            [-0.6508585956766396, -0.4505257777123538],\n            [-0.7509906873191996, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, -0.3504089382207196],\n            [-0.7509906873191996, -0.2502920987290854],\n            [-0.6508585956766396, -0.2502920987290854],\n            [-0.6508585956766396, -0.3504089382207196],\n            [-0.7509906873191996, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, -0.2502920987290854],\n            [-0.7509906873191996, -0.15017525923745123],\n            [-0.6508585956766396, -0.15017525923745123],\n            [-0.6508585956766396, -0.2502920987290854],\n            [-0.7509906873191996, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, -0.15017525923745123],\n            [-0.7509906873191996, -0.05005841974581704],\n            [-0.6508585956766396, -0.05005841974581704],\n            [-0.6508585956766396, -0.15017525923745123],\n            [-0.7509906873191996, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, -0.05005841974581704],\n            [-0.7509906873191996, 0.05005841974581715],\n            [-0.6508585956766396, 0.05005841974581715],\n            [-0.6508585956766396, -0.05005841974581704],\n            [-0.7509906873191996, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, 0.05005841974581715],\n            [-0.7509906873191996, 0.15017525923745134],\n            [-0.6508585956766396, 0.15017525923745134],\n            [-0.6508585956766396, 0.05005841974581715],\n            [-0.7509906873191996, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, 0.15017525923745134],\n            [-0.7509906873191996, 0.25029209872908553],\n            [-0.6508585956766396, 0.25029209872908553],\n            [-0.6508585956766396, 0.15017525923745134],\n            [-0.7509906873191996, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, 0.25029209872908553],\n            [-0.7509906873191996, 0.3504089382207197],\n            [-0.6508585956766396, 0.3504089382207197],\n            [-0.6508585956766396, 0.25029209872908553],\n            [-0.7509906873191996, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, 0.3504089382207197],\n            [-0.7509906873191996, 0.4505257777123539],\n            [-0.6508585956766396, 0.4505257777123539],\n            [-0.6508585956766396, 0.3504089382207197],\n            [-0.7509906873191996, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, 0.4505257777123539],\n            [-0.7509906873191996, 0.5506426172039881],\n            [-0.6508585956766396, 0.5506426172039881],\n            [-0.6508585956766396, 0.4505257777123539],\n            [-0.7509906873191996, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, 0.5506426172039881],\n            [-0.7509906873191996, 0.6507594566956223],\n            [-0.6508585956766396, 0.6507594566956223],\n            [-0.6508585956766396, 0.5506426172039881],\n            [-0.7509906873191996, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, 0.6507594566956223],\n            [-0.7509906873191996, 0.7508762961872565],\n            [-0.6508585956766396, 0.7508762961872565],\n            [-0.6508585956766396, 0.6507594566956223],\n            [-0.7509906873191996, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, 0.7508762961872565],\n            [-0.7509906873191996, 0.8509931356788907],\n            [-0.6508585956766396, 0.8509931356788907],\n            [-0.6508585956766396, 0.7508762961872565],\n            [-0.7509906873191996, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.7509906873191996, 0.8509931356788907],\n            [-0.7509906873191996, 0.9511099751705249],\n            [-0.6508585956766396, 0.9511099751705249],\n            [-0.6508585956766396, 0.8509931356788907],\n            [-0.7509906873191996, 0.8509931356788907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, -0.9511099751705248],\n            [-0.6508585956766396, -0.8509931356788906],\n            [-0.5507265040340796, -0.8509931356788906],\n            [-0.5507265040340796, -0.9511099751705248],\n            [-0.6508585956766396, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, -0.8509931356788906],\n            [-0.6508585956766396, -0.7508762961872564],\n            [-0.5507265040340796, -0.7508762961872564],\n            [-0.5507265040340796, -0.8509931356788906],\n            [-0.6508585956766396, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, -0.7508762961872564],\n            [-0.6508585956766396, -0.6507594566956222],\n            [-0.5507265040340796, -0.6507594566956222],\n            [-0.5507265040340796, -0.7508762961872564],\n            [-0.6508585956766396, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, -0.6507594566956222],\n            [-0.6508585956766396, -0.550642617203988],\n            [-0.5507265040340796, -0.550642617203988],\n            [-0.5507265040340796, -0.6507594566956222],\n            [-0.6508585956766396, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, -0.550642617203988],\n            [-0.6508585956766396, -0.4505257777123538],\n            [-0.5507265040340796, -0.4505257777123538],\n            [-0.5507265040340796, -0.550642617203988],\n            [-0.6508585956766396, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, -0.4505257777123538],\n            [-0.6508585956766396, -0.3504089382207196],\n            [-0.5507265040340796, -0.3504089382207196],\n            [-0.5507265040340796, -0.4505257777123538],\n            [-0.6508585956766396, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, -0.3504089382207196],\n            [-0.6508585956766396, -0.2502920987290854],\n            [-0.5507265040340796, -0.2502920987290854],\n            [-0.5507265040340796, -0.3504089382207196],\n            [-0.6508585956766396, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, -0.2502920987290854],\n            [-0.6508585956766396, -0.15017525923745123],\n            [-0.5507265040340796, -0.15017525923745123],\n            [-0.5507265040340796, -0.2502920987290854],\n            [-0.6508585956766396, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, -0.15017525923745123],\n            [-0.6508585956766396, -0.05005841974581704],\n            [-0.5507265040340796, -0.05005841974581704],\n            [-0.5507265040340796, -0.15017525923745123],\n            [-0.6508585956766396, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, -0.05005841974581704],\n            [-0.6508585956766396, 0.05005841974581715],\n            [-0.5507265040340796, 0.05005841974581715],\n            [-0.5507265040340796, -0.05005841974581704],\n            [-0.6508585956766396, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, 0.05005841974581715],\n            [-0.6508585956766396, 0.15017525923745134],\n            [-0.5507265040340796, 0.15017525923745134],\n            [-0.5507265040340796, 0.05005841974581715],\n            [-0.6508585956766396, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, 0.15017525923745134],\n            [-0.6508585956766396, 0.25029209872908553],\n            [-0.5507265040340796, 0.25029209872908553],\n            [-0.5507265040340796, 0.15017525923745134],\n            [-0.6508585956766396, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, 0.25029209872908553],\n            [-0.6508585956766396, 0.3504089382207197],\n            [-0.5507265040340796, 0.3504089382207197],\n            [-0.5507265040340796, 0.25029209872908553],\n            [-0.6508585956766396, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, 0.3504089382207197],\n            [-0.6508585956766396, 0.4505257777123539],\n            [-0.5507265040340796, 0.4505257777123539],\n            [-0.5507265040340796, 0.3504089382207197],\n            [-0.6508585956766396, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, 0.4505257777123539],\n            [-0.6508585956766396, 0.5506426172039881],\n            [-0.5507265040340796, 0.5506426172039881],\n            [-0.5507265040340796, 0.4505257777123539],\n            [-0.6508585956766396, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, 0.5506426172039881],\n            [-0.6508585956766396, 0.6507594566956223],\n            [-0.5507265040340796, 0.6507594566956223],\n            [-0.5507265040340796, 0.5506426172039881],\n            [-0.6508585956766396, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, 0.6507594566956223],\n            [-0.6508585956766396, 0.7508762961872565],\n            [-0.5507265040340796, 0.7508762961872565],\n            [-0.5507265040340796, 0.6507594566956223],\n            [-0.6508585956766396, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, 0.7508762961872565],\n            [-0.6508585956766396, 0.8509931356788907],\n            [-0.5507265040340796, 0.8509931356788907],\n            [-0.5507265040340796, 0.7508762961872565],\n            [-0.6508585956766396, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6508585956766396, 0.8509931356788907],\n            [-0.6508585956766396, 0.9511099751705249],\n            [-0.5507265040340796, 0.9511099751705249],\n            [-0.5507265040340796, 0.8509931356788907],\n            [-0.6508585956766396, 0.8509931356788907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, -0.9511099751705248],\n            [-0.5507265040340796, -0.8509931356788906],\n            [-0.45059441239151965, -0.8509931356788906],\n            [-0.45059441239151965, -0.9511099751705248],\n            [-0.5507265040340796, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, -0.8509931356788906],\n            [-0.5507265040340796, -0.7508762961872564],\n            [-0.45059441239151965, -0.7508762961872564],\n            [-0.45059441239151965, -0.8509931356788906],\n            [-0.5507265040340796, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, -0.7508762961872564],\n            [-0.5507265040340796, -0.6507594566956222],\n            [-0.45059441239151965, -0.6507594566956222],\n            [-0.45059441239151965, -0.7508762961872564],\n            [-0.5507265040340796, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, -0.6507594566956222],\n            [-0.5507265040340796, -0.550642617203988],\n            [-0.45059441239151965, -0.550642617203988],\n            [-0.45059441239151965, -0.6507594566956222],\n            [-0.5507265040340796, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, -0.550642617203988],\n            [-0.5507265040340796, -0.4505257777123538],\n            [-0.45059441239151965, -0.4505257777123538],\n            [-0.45059441239151965, -0.550642617203988],\n            [-0.5507265040340796, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, -0.4505257777123538],\n            [-0.5507265040340796, -0.3504089382207196],\n            [-0.45059441239151965, -0.3504089382207196],\n            [-0.45059441239151965, -0.4505257777123538],\n            [-0.5507265040340796, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, -0.3504089382207196],\n            [-0.5507265040340796, -0.2502920987290854],\n            [-0.45059441239151965, -0.2502920987290854],\n            [-0.45059441239151965, -0.3504089382207196],\n            [-0.5507265040340796, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, -0.2502920987290854],\n            [-0.5507265040340796, -0.15017525923745123],\n            [-0.45059441239151965, -0.15017525923745123],\n            [-0.45059441239151965, -0.2502920987290854],\n            [-0.5507265040340796, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, -0.15017525923745123],\n            [-0.5507265040340796, -0.05005841974581704],\n            [-0.45059441239151965, -0.05005841974581704],\n            [-0.45059441239151965, -0.15017525923745123],\n            [-0.5507265040340796, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, -0.05005841974581704],\n            [-0.5507265040340796, 0.05005841974581715],\n            [-0.45059441239151965, 0.05005841974581715],\n            [-0.45059441239151965, -0.05005841974581704],\n            [-0.5507265040340796, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, 0.05005841974581715],\n            [-0.5507265040340796, 0.15017525923745134],\n            [-0.45059441239151965, 0.15017525923745134],\n            [-0.45059441239151965, 0.05005841974581715],\n            [-0.5507265040340796, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, 0.15017525923745134],\n            [-0.5507265040340796, 0.25029209872908553],\n            [-0.45059441239151965, 0.25029209872908553],\n            [-0.45059441239151965, 0.15017525923745134],\n            [-0.5507265040340796, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, 0.25029209872908553],\n            [-0.5507265040340796, 0.3504089382207197],\n            [-0.45059441239151965, 0.3504089382207197],\n            [-0.45059441239151965, 0.25029209872908553],\n            [-0.5507265040340796, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, 0.3504089382207197],\n            [-0.5507265040340796, 0.4505257777123539],\n            [-0.45059441239151965, 0.4505257777123539],\n            [-0.45059441239151965, 0.3504089382207197],\n            [-0.5507265040340796, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, 0.4505257777123539],\n            [-0.5507265040340796, 0.5506426172039881],\n            [-0.45059441239151965, 0.5506426172039881],\n            [-0.45059441239151965, 0.4505257777123539],\n            [-0.5507265040340796, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, 0.5506426172039881],\n            [-0.5507265040340796, 0.6507594566956223],\n            [-0.45059441239151965, 0.6507594566956223],\n            [-0.45059441239151965, 0.5506426172039881],\n            [-0.5507265040340796, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, 0.6507594566956223],\n            [-0.5507265040340796, 0.7508762961872565],\n            [-0.45059441239151965, 0.7508762961872565],\n            [-0.45059441239151965, 0.6507594566956223],\n            [-0.5507265040340796, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, 0.7508762961872565],\n            [-0.5507265040340796, 0.8509931356788907],\n            [-0.45059441239151965, 0.8509931356788907],\n            [-0.45059441239151965, 0.7508762961872565],\n            [-0.5507265040340796, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.5507265040340796, 0.8509931356788907],\n            [-0.5507265040340796, 0.9511099751705249],\n            [-0.45059441239151965, 0.9511099751705249],\n            [-0.45059441239151965, 0.8509931356788907],\n            [-0.5507265040340796, 0.8509931356788907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, -0.9511099751705248],\n            [-0.45059441239151965, -0.8509931356788906],\n            [-0.35046232074895967, -0.8509931356788906],\n            [-0.35046232074895967, -0.9511099751705248],\n            [-0.45059441239151965, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, -0.8509931356788906],\n            [-0.45059441239151965, -0.7508762961872564],\n            [-0.35046232074895967, -0.7508762961872564],\n            [-0.35046232074895967, -0.8509931356788906],\n            [-0.45059441239151965, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, -0.7508762961872564],\n            [-0.45059441239151965, -0.6507594566956222],\n            [-0.35046232074895967, -0.6507594566956222],\n            [-0.35046232074895967, -0.7508762961872564],\n            [-0.45059441239151965, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, -0.6507594566956222],\n            [-0.45059441239151965, -0.550642617203988],\n            [-0.35046232074895967, -0.550642617203988],\n            [-0.35046232074895967, -0.6507594566956222],\n            [-0.45059441239151965, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, -0.550642617203988],\n            [-0.45059441239151965, -0.4505257777123538],\n            [-0.35046232074895967, -0.4505257777123538],\n            [-0.35046232074895967, -0.550642617203988],\n            [-0.45059441239151965, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, -0.4505257777123538],\n            [-0.45059441239151965, -0.3504089382207196],\n            [-0.35046232074895967, -0.3504089382207196],\n            [-0.35046232074895967, -0.4505257777123538],\n            [-0.45059441239151965, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, -0.3504089382207196],\n            [-0.45059441239151965, -0.2502920987290854],\n            [-0.35046232074895967, -0.2502920987290854],\n            [-0.35046232074895967, -0.3504089382207196],\n            [-0.45059441239151965, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, -0.2502920987290854],\n            [-0.45059441239151965, -0.15017525923745123],\n            [-0.35046232074895967, -0.15017525923745123],\n            [-0.35046232074895967, -0.2502920987290854],\n            [-0.45059441239151965, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, -0.15017525923745123],\n            [-0.45059441239151965, -0.05005841974581704],\n            [-0.35046232074895967, -0.05005841974581704],\n            [-0.35046232074895967, -0.15017525923745123],\n            [-0.45059441239151965, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, -0.05005841974581704],\n            [-0.45059441239151965, 0.05005841974581715],\n            [-0.35046232074895967, 0.05005841974581715],\n            [-0.35046232074895967, -0.05005841974581704],\n            [-0.45059441239151965, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, 0.05005841974581715],\n            [-0.45059441239151965, 0.15017525923745134],\n            [-0.35046232074895967, 0.15017525923745134],\n            [-0.35046232074895967, 0.05005841974581715],\n            [-0.45059441239151965, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, 0.15017525923745134],\n            [-0.45059441239151965, 0.25029209872908553],\n            [-0.35046232074895967, 0.25029209872908553],\n            [-0.35046232074895967, 0.15017525923745134],\n            [-0.45059441239151965, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, 0.25029209872908553],\n            [-0.45059441239151965, 0.3504089382207197],\n            [-0.35046232074895967, 0.3504089382207197],\n            [-0.35046232074895967, 0.25029209872908553],\n            [-0.45059441239151965, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, 0.3504089382207197],\n            [-0.45059441239151965, 0.4505257777123539],\n            [-0.35046232074895967, 0.4505257777123539],\n            [-0.35046232074895967, 0.3504089382207197],\n            [-0.45059441239151965, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, 0.4505257777123539],\n            [-0.45059441239151965, 0.5506426172039881],\n            [-0.35046232074895967, 0.5506426172039881],\n            [-0.35046232074895967, 0.4505257777123539],\n            [-0.45059441239151965, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, 0.5506426172039881],\n            [-0.45059441239151965, 0.6507594566956223],\n            [-0.35046232074895967, 0.6507594566956223],\n            [-0.35046232074895967, 0.5506426172039881],\n            [-0.45059441239151965, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, 0.6507594566956223],\n            [-0.45059441239151965, 0.7508762961872565],\n            [-0.35046232074895967, 0.7508762961872565],\n            [-0.35046232074895967, 0.6507594566956223],\n            [-0.45059441239151965, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, 0.7508762961872565],\n            [-0.45059441239151965, 0.8509931356788907],\n            [-0.35046232074895967, 0.8509931356788907],\n            [-0.35046232074895967, 0.7508762961872565],\n            [-0.45059441239151965, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.45059441239151965, 0.8509931356788907],\n            [-0.45059441239151965, 0.9511099751705249],\n            [-0.35046232074895967, 0.9511099751705249],\n            [-0.35046232074895967, 0.8509931356788907],\n            [-0.45059441239151965, 0.8509931356788907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, -0.9511099751705248],\n            [-0.35046232074895967, -0.8509931356788906],\n            [-0.2503302291063997, -0.8509931356788906],\n            [-0.2503302291063997, -0.9511099751705248],\n            [-0.35046232074895967, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, -0.8509931356788906],\n            [-0.35046232074895967, -0.7508762961872564],\n            [-0.2503302291063997, -0.7508762961872564],\n            [-0.2503302291063997, -0.8509931356788906],\n            [-0.35046232074895967, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, -0.7508762961872564],\n            [-0.35046232074895967, -0.6507594566956222],\n            [-0.2503302291063997, -0.6507594566956222],\n            [-0.2503302291063997, -0.7508762961872564],\n            [-0.35046232074895967, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, -0.6507594566956222],\n            [-0.35046232074895967, -0.550642617203988],\n            [-0.2503302291063997, -0.550642617203988],\n            [-0.2503302291063997, -0.6507594566956222],\n            [-0.35046232074895967, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, -0.550642617203988],\n            [-0.35046232074895967, -0.4505257777123538],\n            [-0.2503302291063997, -0.4505257777123538],\n            [-0.2503302291063997, -0.550642617203988],\n            [-0.35046232074895967, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, -0.4505257777123538],\n            [-0.35046232074895967, -0.3504089382207196],\n            [-0.2503302291063997, -0.3504089382207196],\n            [-0.2503302291063997, -0.4505257777123538],\n            [-0.35046232074895967, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, -0.3504089382207196],\n            [-0.35046232074895967, -0.2502920987290854],\n            [-0.2503302291063997, -0.2502920987290854],\n            [-0.2503302291063997, -0.3504089382207196],\n            [-0.35046232074895967, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, -0.2502920987290854],\n            [-0.35046232074895967, -0.15017525923745123],\n            [-0.2503302291063997, -0.15017525923745123],\n            [-0.2503302291063997, -0.2502920987290854],\n            [-0.35046232074895967, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, -0.15017525923745123],\n            [-0.35046232074895967, -0.05005841974581704],\n            [-0.2503302291063997, -0.05005841974581704],\n            [-0.2503302291063997, -0.15017525923745123],\n            [-0.35046232074895967, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, -0.05005841974581704],\n            [-0.35046232074895967, 0.05005841974581715],\n            [-0.2503302291063997, 0.05005841974581715],\n            [-0.2503302291063997, -0.05005841974581704],\n            [-0.35046232074895967, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, 0.05005841974581715],\n            [-0.35046232074895967, 0.15017525923745134],\n            [-0.2503302291063997, 0.15017525923745134],\n            [-0.2503302291063997, 0.05005841974581715],\n            [-0.35046232074895967, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, 0.15017525923745134],\n            [-0.35046232074895967, 0.25029209872908553],\n            [-0.2503302291063997, 0.25029209872908553],\n            [-0.2503302291063997, 0.15017525923745134],\n            [-0.35046232074895967, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, 0.25029209872908553],\n            [-0.35046232074895967, 0.3504089382207197],\n            [-0.2503302291063997, 0.3504089382207197],\n            [-0.2503302291063997, 0.25029209872908553],\n            [-0.35046232074895967, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, 0.3504089382207197],\n            [-0.35046232074895967, 0.4505257777123539],\n            [-0.2503302291063997, 0.4505257777123539],\n            [-0.2503302291063997, 0.3504089382207197],\n            [-0.35046232074895967, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, 0.4505257777123539],\n            [-0.35046232074895967, 0.5506426172039881],\n            [-0.2503302291063997, 0.5506426172039881],\n            [-0.2503302291063997, 0.4505257777123539],\n            [-0.35046232074895967, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, 0.5506426172039881],\n            [-0.35046232074895967, 0.6507594566956223],\n            [-0.2503302291063997, 0.6507594566956223],\n            [-0.2503302291063997, 0.5506426172039881],\n            [-0.35046232074895967, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, 0.6507594566956223],\n            [-0.35046232074895967, 0.7508762961872565],\n            [-0.2503302291063997, 0.7508762961872565],\n            [-0.2503302291063997, 0.6507594566956223],\n            [-0.35046232074895967, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, 0.7508762961872565],\n            [-0.35046232074895967, 0.8509931356788907],\n            [-0.2503302291063997, 0.8509931356788907],\n            [-0.2503302291063997, 0.7508762961872565],\n            [-0.35046232074895967, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.35046232074895967, 0.8509931356788907],\n            [-0.35046232074895967, 0.9511099751705249],\n            [-0.2503302291063997, 0.9511099751705249],\n            [-0.2503302291063997, 0.8509931356788907],\n            [-0.35046232074895967, 0.8509931356788907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, -0.9511099751705248],\n            [-0.2503302291063997, -0.8509931356788906],\n            [-0.15019813746383973, -0.8509931356788906],\n            [-0.15019813746383973, -0.9511099751705248],\n            [-0.2503302291063997, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, -0.8509931356788906],\n            [-0.2503302291063997, -0.7508762961872564],\n            [-0.15019813746383973, -0.7508762961872564],\n            [-0.15019813746383973, -0.8509931356788906],\n            [-0.2503302291063997, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, -0.7508762961872564],\n            [-0.2503302291063997, -0.6507594566956222],\n            [-0.15019813746383973, -0.6507594566956222],\n            [-0.15019813746383973, -0.7508762961872564],\n            [-0.2503302291063997, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, -0.6507594566956222],\n            [-0.2503302291063997, -0.550642617203988],\n            [-0.15019813746383973, -0.550642617203988],\n            [-0.15019813746383973, -0.6507594566956222],\n            [-0.2503302291063997, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, -0.550642617203988],\n            [-0.2503302291063997, -0.4505257777123538],\n            [-0.15019813746383973, -0.4505257777123538],\n            [-0.15019813746383973, -0.550642617203988],\n            [-0.2503302291063997, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, -0.4505257777123538],\n            [-0.2503302291063997, -0.3504089382207196],\n            [-0.15019813746383973, -0.3504089382207196],\n            [-0.15019813746383973, -0.4505257777123538],\n            [-0.2503302291063997, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, -0.3504089382207196],\n            [-0.2503302291063997, -0.2502920987290854],\n            [-0.15019813746383973, -0.2502920987290854],\n            [-0.15019813746383973, -0.3504089382207196],\n            [-0.2503302291063997, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, -0.2502920987290854],\n            [-0.2503302291063997, -0.15017525923745123],\n            [-0.15019813746383973, -0.15017525923745123],\n            [-0.15019813746383973, -0.2502920987290854],\n            [-0.2503302291063997, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, -0.15017525923745123],\n            [-0.2503302291063997, -0.05005841974581704],\n            [-0.15019813746383973, -0.05005841974581704],\n            [-0.15019813746383973, -0.15017525923745123],\n            [-0.2503302291063997, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, -0.05005841974581704],\n            [-0.2503302291063997, 0.05005841974581715],\n            [-0.15019813746383973, 0.05005841974581715],\n            [-0.15019813746383973, -0.05005841974581704],\n            [-0.2503302291063997, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, 0.05005841974581715],\n            [-0.2503302291063997, 0.15017525923745134],\n            [-0.15019813746383973, 0.15017525923745134],\n            [-0.15019813746383973, 0.05005841974581715],\n            [-0.2503302291063997, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, 0.15017525923745134],\n            [-0.2503302291063997, 0.25029209872908553],\n            [-0.15019813746383973, 0.25029209872908553],\n            [-0.15019813746383973, 0.15017525923745134],\n            [-0.2503302291063997, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, 0.25029209872908553],\n            [-0.2503302291063997, 0.3504089382207197],\n            [-0.15019813746383973, 0.3504089382207197],\n            [-0.15019813746383973, 0.25029209872908553],\n            [-0.2503302291063997, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, 0.3504089382207197],\n            [-0.2503302291063997, 0.4505257777123539],\n            [-0.15019813746383973, 0.4505257777123539],\n            [-0.15019813746383973, 0.3504089382207197],\n            [-0.2503302291063997, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, 0.4505257777123539],\n            [-0.2503302291063997, 0.5506426172039881],\n            [-0.15019813746383973, 0.5506426172039881],\n            [-0.15019813746383973, 0.4505257777123539],\n            [-0.2503302291063997, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, 0.5506426172039881],\n            [-0.2503302291063997, 0.6507594566956223],\n            [-0.15019813746383973, 0.6507594566956223],\n            [-0.15019813746383973, 0.5506426172039881],\n            [-0.2503302291063997, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, 0.6507594566956223],\n            [-0.2503302291063997, 0.7508762961872565],\n            [-0.15019813746383973, 0.7508762961872565],\n            [-0.15019813746383973, 0.6507594566956223],\n            [-0.2503302291063997, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, 0.7508762961872565],\n            [-0.2503302291063997, 0.8509931356788907],\n            [-0.15019813746383973, 0.8509931356788907],\n            [-0.15019813746383973, 0.7508762961872565],\n            [-0.2503302291063997, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.2503302291063997, 0.8509931356788907],\n            [-0.2503302291063997, 0.9511099751705249],\n            [-0.15019813746383973, 0.9511099751705249],\n            [-0.15019813746383973, 0.8509931356788907],\n            [-0.2503302291063997, 0.8509931356788907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, -0.9511099751705248],\n            [-0.15019813746383973, -0.8509931356788906],\n            [-0.05006604582127977, -0.8509931356788906],\n            [-0.05006604582127977, -0.9511099751705248],\n            [-0.15019813746383973, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, -0.8509931356788906],\n            [-0.15019813746383973, -0.7508762961872564],\n            [-0.05006604582127977, -0.7508762961872564],\n            [-0.05006604582127977, -0.8509931356788906],\n            [-0.15019813746383973, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, -0.7508762961872564],\n            [-0.15019813746383973, -0.6507594566956222],\n            [-0.05006604582127977, -0.6507594566956222],\n            [-0.05006604582127977, -0.7508762961872564],\n            [-0.15019813746383973, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, -0.6507594566956222],\n            [-0.15019813746383973, -0.550642617203988],\n            [-0.05006604582127977, -0.550642617203988],\n            [-0.05006604582127977, -0.6507594566956222],\n            [-0.15019813746383973, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, -0.550642617203988],\n            [-0.15019813746383973, -0.4505257777123538],\n            [-0.05006604582127977, -0.4505257777123538],\n            [-0.05006604582127977, -0.550642617203988],\n            [-0.15019813746383973, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, -0.4505257777123538],\n            [-0.15019813746383973, -0.3504089382207196],\n            [-0.05006604582127977, -0.3504089382207196],\n            [-0.05006604582127977, -0.4505257777123538],\n            [-0.15019813746383973, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, -0.3504089382207196],\n            [-0.15019813746383973, -0.2502920987290854],\n            [-0.05006604582127977, -0.2502920987290854],\n            [-0.05006604582127977, -0.3504089382207196],\n            [-0.15019813746383973, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, -0.2502920987290854],\n            [-0.15019813746383973, -0.15017525923745123],\n            [-0.05006604582127977, -0.15017525923745123],\n            [-0.05006604582127977, -0.2502920987290854],\n            [-0.15019813746383973, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, -0.15017525923745123],\n            [-0.15019813746383973, -0.05005841974581704],\n            [-0.05006604582127977, -0.05005841974581704],\n            [-0.05006604582127977, -0.15017525923745123],\n            [-0.15019813746383973, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, -0.05005841974581704],\n            [-0.15019813746383973, 0.05005841974581715],\n            [-0.05006604582127977, 0.05005841974581715],\n            [-0.05006604582127977, -0.05005841974581704],\n            [-0.15019813746383973, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, 0.05005841974581715],\n            [-0.15019813746383973, 0.15017525923745134],\n            [-0.05006604582127977, 0.15017525923745134],\n            [-0.05006604582127977, 0.05005841974581715],\n            [-0.15019813746383973, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, 0.15017525923745134],\n            [-0.15019813746383973, 0.25029209872908553],\n            [-0.05006604582127977, 0.25029209872908553],\n            [-0.05006604582127977, 0.15017525923745134],\n            [-0.15019813746383973, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, 0.25029209872908553],\n            [-0.15019813746383973, 0.3504089382207197],\n            [-0.05006604582127977, 0.3504089382207197],\n            [-0.05006604582127977, 0.25029209872908553],\n            [-0.15019813746383973, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, 0.3504089382207197],\n            [-0.15019813746383973, 0.4505257777123539],\n            [-0.05006604582127977, 0.4505257777123539],\n            [-0.05006604582127977, 0.3504089382207197],\n            [-0.15019813746383973, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, 0.4505257777123539],\n            [-0.15019813746383973, 0.5506426172039881],\n            [-0.05006604582127977, 0.5506426172039881],\n            [-0.05006604582127977, 0.4505257777123539],\n            [-0.15019813746383973, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, 0.5506426172039881],\n            [-0.15019813746383973, 0.6507594566956223],\n            [-0.05006604582127977, 0.6507594566956223],\n            [-0.05006604582127977, 0.5506426172039881],\n            [-0.15019813746383973, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, 0.6507594566956223],\n            [-0.15019813746383973, 0.7508762961872565],\n            [-0.05006604582127977, 0.7508762961872565],\n            [-0.05006604582127977, 0.6507594566956223],\n            [-0.15019813746383973, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, 0.7508762961872565],\n            [-0.15019813746383973, 0.8509931356788907],\n            [-0.05006604582127977, 0.8509931356788907],\n            [-0.05006604582127977, 0.7508762961872565],\n            [-0.15019813746383973, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15019813746383973, 0.8509931356788907],\n            [-0.15019813746383973, 0.9511099751705249],\n            [-0.05006604582127977, 0.9511099751705249],\n            [-0.05006604582127977, 0.8509931356788907],\n            [-0.15019813746383973, 0.8509931356788907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, -0.9511099751705248],\n            [-0.05006604582127977, -0.8509931356788906],\n            [0.050066045821280186, -0.8509931356788906],\n            [0.050066045821280186, -0.9511099751705248],\n            [-0.05006604582127977, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, -0.8509931356788906],\n            [-0.05006604582127977, -0.7508762961872564],\n            [0.050066045821280186, -0.7508762961872564],\n            [0.050066045821280186, -0.8509931356788906],\n            [-0.05006604582127977, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, -0.7508762961872564],\n            [-0.05006604582127977, -0.6507594566956222],\n            [0.050066045821280186, -0.6507594566956222],\n            [0.050066045821280186, -0.7508762961872564],\n            [-0.05006604582127977, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, -0.6507594566956222],\n            [-0.05006604582127977, -0.550642617203988],\n            [0.050066045821280186, -0.550642617203988],\n            [0.050066045821280186, -0.6507594566956222],\n            [-0.05006604582127977, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, -0.550642617203988],\n            [-0.05006604582127977, -0.4505257777123538],\n            [0.050066045821280186, -0.4505257777123538],\n            [0.050066045821280186, -0.550642617203988],\n            [-0.05006604582127977, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, -0.4505257777123538],\n            [-0.05006604582127977, -0.3504089382207196],\n            [0.050066045821280186, -0.3504089382207196],\n            [0.050066045821280186, -0.4505257777123538],\n            [-0.05006604582127977, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, -0.3504089382207196],\n            [-0.05006604582127977, -0.2502920987290854],\n            [0.050066045821280186, -0.2502920987290854],\n            [0.050066045821280186, -0.3504089382207196],\n            [-0.05006604582127977, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, -0.2502920987290854],\n            [-0.05006604582127977, -0.15017525923745123],\n            [0.050066045821280186, -0.15017525923745123],\n            [0.050066045821280186, -0.2502920987290854],\n            [-0.05006604582127977, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, -0.15017525923745123],\n            [-0.05006604582127977, -0.05005841974581704],\n            [0.050066045821280186, -0.05005841974581704],\n            [0.050066045821280186, -0.15017525923745123],\n            [-0.05006604582127977, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, -0.05005841974581704],\n            [-0.05006604582127977, 0.05005841974581715],\n            [0.050066045821280186, 0.05005841974581715],\n            [0.050066045821280186, -0.05005841974581704],\n            [-0.05006604582127977, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, 0.05005841974581715],\n            [-0.05006604582127977, 0.15017525923745134],\n            [0.050066045821280186, 0.15017525923745134],\n            [0.050066045821280186, 0.05005841974581715],\n            [-0.05006604582127977, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, 0.15017525923745134],\n            [-0.05006604582127977, 0.25029209872908553],\n            [0.050066045821280186, 0.25029209872908553],\n            [0.050066045821280186, 0.15017525923745134],\n            [-0.05006604582127977, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, 0.25029209872908553],\n            [-0.05006604582127977, 0.3504089382207197],\n            [0.050066045821280186, 0.3504089382207197],\n            [0.050066045821280186, 0.25029209872908553],\n            [-0.05006604582127977, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, 0.3504089382207197],\n            [-0.05006604582127977, 0.4505257777123539],\n            [0.050066045821280186, 0.4505257777123539],\n            [0.050066045821280186, 0.3504089382207197],\n            [-0.05006604582127977, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, 0.4505257777123539],\n            [-0.05006604582127977, 0.5506426172039881],\n            [0.050066045821280186, 0.5506426172039881],\n            [0.050066045821280186, 0.4505257777123539],\n            [-0.05006604582127977, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, 0.5506426172039881],\n            [-0.05006604582127977, 0.6507594566956223],\n            [0.050066045821280186, 0.6507594566956223],\n            [0.050066045821280186, 0.5506426172039881],\n            [-0.05006604582127977, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, 0.6507594566956223],\n            [-0.05006604582127977, 0.7508762961872565],\n            [0.050066045821280186, 0.7508762961872565],\n            [0.050066045821280186, 0.6507594566956223],\n            [-0.05006604582127977, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, 0.7508762961872565],\n            [-0.05006604582127977, 0.8509931356788907],\n            [0.050066045821280186, 0.8509931356788907],\n            [0.050066045821280186, 0.7508762961872565],\n            [-0.05006604582127977, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.05006604582127977, 0.8509931356788907],\n            [-0.05006604582127977, 0.9511099751705249],\n            [0.050066045821280186, 0.9511099751705249],\n            [0.050066045821280186, 0.8509931356788907],\n            [-0.05006604582127977, 0.8509931356788907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, -0.9511099751705248],\n            [0.050066045821280186, -0.8509931356788906],\n            [0.15019813746384014, -0.8509931356788906],\n            [0.15019813746384014, -0.9511099751705248],\n            [0.050066045821280186, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, -0.8509931356788906],\n            [0.050066045821280186, -0.7508762961872564],\n            [0.15019813746384014, -0.7508762961872564],\n            [0.15019813746384014, -0.8509931356788906],\n            [0.050066045821280186, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, -0.7508762961872564],\n            [0.050066045821280186, -0.6507594566956222],\n            [0.15019813746384014, -0.6507594566956222],\n            [0.15019813746384014, -0.7508762961872564],\n            [0.050066045821280186, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, -0.6507594566956222],\n            [0.050066045821280186, -0.550642617203988],\n            [0.15019813746384014, -0.550642617203988],\n            [0.15019813746384014, -0.6507594566956222],\n            [0.050066045821280186, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, -0.550642617203988],\n            [0.050066045821280186, -0.4505257777123538],\n            [0.15019813746384014, -0.4505257777123538],\n            [0.15019813746384014, -0.550642617203988],\n            [0.050066045821280186, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, -0.4505257777123538],\n            [0.050066045821280186, -0.3504089382207196],\n            [0.15019813746384014, -0.3504089382207196],\n            [0.15019813746384014, -0.4505257777123538],\n            [0.050066045821280186, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, -0.3504089382207196],\n            [0.050066045821280186, -0.2502920987290854],\n            [0.15019813746384014, -0.2502920987290854],\n            [0.15019813746384014, -0.3504089382207196],\n            [0.050066045821280186, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, -0.2502920987290854],\n            [0.050066045821280186, -0.15017525923745123],\n            [0.15019813746384014, -0.15017525923745123],\n            [0.15019813746384014, -0.2502920987290854],\n            [0.050066045821280186, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, -0.15017525923745123],\n            [0.050066045821280186, -0.05005841974581704],\n            [0.15019813746384014, -0.05005841974581704],\n            [0.15019813746384014, -0.15017525923745123],\n            [0.050066045821280186, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, -0.05005841974581704],\n            [0.050066045821280186, 0.05005841974581715],\n            [0.15019813746384014, 0.05005841974581715],\n            [0.15019813746384014, -0.05005841974581704],\n            [0.050066045821280186, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, 0.05005841974581715],\n            [0.050066045821280186, 0.15017525923745134],\n            [0.15019813746384014, 0.15017525923745134],\n            [0.15019813746384014, 0.05005841974581715],\n            [0.050066045821280186, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, 0.15017525923745134],\n            [0.050066045821280186, 0.25029209872908553],\n            [0.15019813746384014, 0.25029209872908553],\n            [0.15019813746384014, 0.15017525923745134],\n            [0.050066045821280186, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, 0.25029209872908553],\n            [0.050066045821280186, 0.3504089382207197],\n            [0.15019813746384014, 0.3504089382207197],\n            [0.15019813746384014, 0.25029209872908553],\n            [0.050066045821280186, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, 0.3504089382207197],\n            [0.050066045821280186, 0.4505257777123539],\n            [0.15019813746384014, 0.4505257777123539],\n            [0.15019813746384014, 0.3504089382207197],\n            [0.050066045821280186, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, 0.4505257777123539],\n            [0.050066045821280186, 0.5506426172039881],\n            [0.15019813746384014, 0.5506426172039881],\n            [0.15019813746384014, 0.4505257777123539],\n            [0.050066045821280186, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, 0.5506426172039881],\n            [0.050066045821280186, 0.6507594566956223],\n            [0.15019813746384014, 0.6507594566956223],\n            [0.15019813746384014, 0.5506426172039881],\n            [0.050066045821280186, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, 0.6507594566956223],\n            [0.050066045821280186, 0.7508762961872565],\n            [0.15019813746384014, 0.7508762961872565],\n            [0.15019813746384014, 0.6507594566956223],\n            [0.050066045821280186, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, 0.7508762961872565],\n            [0.050066045821280186, 0.8509931356788907],\n            [0.15019813746384014, 0.8509931356788907],\n            [0.15019813746384014, 0.7508762961872565],\n            [0.050066045821280186, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.050066045821280186, 0.8509931356788907],\n            [0.050066045821280186, 0.9511099751705249],\n            [0.15019813746384014, 0.9511099751705249],\n            [0.15019813746384014, 0.8509931356788907],\n            [0.050066045821280186, 0.8509931356788907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, -0.9511099751705248],\n            [0.15019813746384014, -0.8509931356788906],\n            [0.2503302291064001, -0.8509931356788906],\n            [0.2503302291064001, -0.9511099751705248],\n            [0.15019813746384014, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, -0.8509931356788906],\n            [0.15019813746384014, -0.7508762961872564],\n            [0.2503302291064001, -0.7508762961872564],\n            [0.2503302291064001, -0.8509931356788906],\n            [0.15019813746384014, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, -0.7508762961872564],\n            [0.15019813746384014, -0.6507594566956222],\n            [0.2503302291064001, -0.6507594566956222],\n            [0.2503302291064001, -0.7508762961872564],\n            [0.15019813746384014, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, -0.6507594566956222],\n            [0.15019813746384014, -0.550642617203988],\n            [0.2503302291064001, -0.550642617203988],\n            [0.2503302291064001, -0.6507594566956222],\n            [0.15019813746384014, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, -0.550642617203988],\n            [0.15019813746384014, -0.4505257777123538],\n            [0.2503302291064001, -0.4505257777123538],\n            [0.2503302291064001, -0.550642617203988],\n            [0.15019813746384014, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, -0.4505257777123538],\n            [0.15019813746384014, -0.3504089382207196],\n            [0.2503302291064001, -0.3504089382207196],\n            [0.2503302291064001, -0.4505257777123538],\n            [0.15019813746384014, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, -0.3504089382207196],\n            [0.15019813746384014, -0.2502920987290854],\n            [0.2503302291064001, -0.2502920987290854],\n            [0.2503302291064001, -0.3504089382207196],\n            [0.15019813746384014, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, -0.2502920987290854],\n            [0.15019813746384014, -0.15017525923745123],\n            [0.2503302291064001, -0.15017525923745123],\n            [0.2503302291064001, -0.2502920987290854],\n            [0.15019813746384014, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, -0.15017525923745123],\n            [0.15019813746384014, -0.05005841974581704],\n            [0.2503302291064001, -0.05005841974581704],\n            [0.2503302291064001, -0.15017525923745123],\n            [0.15019813746384014, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, -0.05005841974581704],\n            [0.15019813746384014, 0.05005841974581715],\n            [0.2503302291064001, 0.05005841974581715],\n            [0.2503302291064001, -0.05005841974581704],\n            [0.15019813746384014, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, 0.05005841974581715],\n            [0.15019813746384014, 0.15017525923745134],\n            [0.2503302291064001, 0.15017525923745134],\n            [0.2503302291064001, 0.05005841974581715],\n            [0.15019813746384014, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, 0.15017525923745134],\n            [0.15019813746384014, 0.25029209872908553],\n            [0.2503302291064001, 0.25029209872908553],\n            [0.2503302291064001, 0.15017525923745134],\n            [0.15019813746384014, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, 0.25029209872908553],\n            [0.15019813746384014, 0.3504089382207197],\n            [0.2503302291064001, 0.3504089382207197],\n            [0.2503302291064001, 0.25029209872908553],\n            [0.15019813746384014, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, 0.3504089382207197],\n            [0.15019813746384014, 0.4505257777123539],\n            [0.2503302291064001, 0.4505257777123539],\n            [0.2503302291064001, 0.3504089382207197],\n            [0.15019813746384014, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, 0.4505257777123539],\n            [0.15019813746384014, 0.5506426172039881],\n            [0.2503302291064001, 0.5506426172039881],\n            [0.2503302291064001, 0.4505257777123539],\n            [0.15019813746384014, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, 0.5506426172039881],\n            [0.15019813746384014, 0.6507594566956223],\n            [0.2503302291064001, 0.6507594566956223],\n            [0.2503302291064001, 0.5506426172039881],\n            [0.15019813746384014, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, 0.6507594566956223],\n            [0.15019813746384014, 0.7508762961872565],\n            [0.2503302291064001, 0.7508762961872565],\n            [0.2503302291064001, 0.6507594566956223],\n            [0.15019813746384014, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, 0.7508762961872565],\n            [0.15019813746384014, 0.8509931356788907],\n            [0.2503302291064001, 0.8509931356788907],\n            [0.2503302291064001, 0.7508762961872565],\n            [0.15019813746384014, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.15019813746384014, 0.8509931356788907],\n            [0.15019813746384014, 0.9511099751705249],\n            [0.2503302291064001, 0.9511099751705249],\n            [0.2503302291064001, 0.8509931356788907],\n            [0.15019813746384014, 0.8509931356788907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, -0.9511099751705248],\n            [0.2503302291064001, -0.8509931356788906],\n            [0.3504623207489601, -0.8509931356788906],\n            [0.3504623207489601, -0.9511099751705248],\n            [0.2503302291064001, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, -0.8509931356788906],\n            [0.2503302291064001, -0.7508762961872564],\n            [0.3504623207489601, -0.7508762961872564],\n            [0.3504623207489601, -0.8509931356788906],\n            [0.2503302291064001, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, -0.7508762961872564],\n            [0.2503302291064001, -0.6507594566956222],\n            [0.3504623207489601, -0.6507594566956222],\n            [0.3504623207489601, -0.7508762961872564],\n            [0.2503302291064001, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, -0.6507594566956222],\n            [0.2503302291064001, -0.550642617203988],\n            [0.3504623207489601, -0.550642617203988],\n            [0.3504623207489601, -0.6507594566956222],\n            [0.2503302291064001, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, -0.550642617203988],\n            [0.2503302291064001, -0.4505257777123538],\n            [0.3504623207489601, -0.4505257777123538],\n            [0.3504623207489601, -0.550642617203988],\n            [0.2503302291064001, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, -0.4505257777123538],\n            [0.2503302291064001, -0.3504089382207196],\n            [0.3504623207489601, -0.3504089382207196],\n            [0.3504623207489601, -0.4505257777123538],\n            [0.2503302291064001, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, -0.3504089382207196],\n            [0.2503302291064001, -0.2502920987290854],\n            [0.3504623207489601, -0.2502920987290854],\n            [0.3504623207489601, -0.3504089382207196],\n            [0.2503302291064001, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, -0.2502920987290854],\n            [0.2503302291064001, -0.15017525923745123],\n            [0.3504623207489601, -0.15017525923745123],\n            [0.3504623207489601, -0.2502920987290854],\n            [0.2503302291064001, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, -0.15017525923745123],\n            [0.2503302291064001, -0.05005841974581704],\n            [0.3504623207489601, -0.05005841974581704],\n            [0.3504623207489601, -0.15017525923745123],\n            [0.2503302291064001, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, -0.05005841974581704],\n            [0.2503302291064001, 0.05005841974581715],\n            [0.3504623207489601, 0.05005841974581715],\n            [0.3504623207489601, -0.05005841974581704],\n            [0.2503302291064001, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, 0.05005841974581715],\n            [0.2503302291064001, 0.15017525923745134],\n            [0.3504623207489601, 0.15017525923745134],\n            [0.3504623207489601, 0.05005841974581715],\n            [0.2503302291064001, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, 0.15017525923745134],\n            [0.2503302291064001, 0.25029209872908553],\n            [0.3504623207489601, 0.25029209872908553],\n            [0.3504623207489601, 0.15017525923745134],\n            [0.2503302291064001, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, 0.25029209872908553],\n            [0.2503302291064001, 0.3504089382207197],\n            [0.3504623207489601, 0.3504089382207197],\n            [0.3504623207489601, 0.25029209872908553],\n            [0.2503302291064001, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, 0.3504089382207197],\n            [0.2503302291064001, 0.4505257777123539],\n            [0.3504623207489601, 0.4505257777123539],\n            [0.3504623207489601, 0.3504089382207197],\n            [0.2503302291064001, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, 0.4505257777123539],\n            [0.2503302291064001, 0.5506426172039881],\n            [0.3504623207489601, 0.5506426172039881],\n            [0.3504623207489601, 0.4505257777123539],\n            [0.2503302291064001, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, 0.5506426172039881],\n            [0.2503302291064001, 0.6507594566956223],\n            [0.3504623207489601, 0.6507594566956223],\n            [0.3504623207489601, 0.5506426172039881],\n            [0.2503302291064001, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, 0.6507594566956223],\n            [0.2503302291064001, 0.7508762961872565],\n            [0.3504623207489601, 0.7508762961872565],\n            [0.3504623207489601, 0.6507594566956223],\n            [0.2503302291064001, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, 0.7508762961872565],\n            [0.2503302291064001, 0.8509931356788907],\n            [0.3504623207489601, 0.8509931356788907],\n            [0.3504623207489601, 0.7508762961872565],\n            [0.2503302291064001, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.2503302291064001, 0.8509931356788907],\n            [0.2503302291064001, 0.9511099751705249],\n            [0.3504623207489601, 0.9511099751705249],\n            [0.3504623207489601, 0.8509931356788907],\n            [0.2503302291064001, 0.8509931356788907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, -0.9511099751705248],\n            [0.3504623207489601, -0.8509931356788906],\n            [0.4505944123915201, -0.8509931356788906],\n            [0.4505944123915201, -0.9511099751705248],\n            [0.3504623207489601, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, -0.8509931356788906],\n            [0.3504623207489601, -0.7508762961872564],\n            [0.4505944123915201, -0.7508762961872564],\n            [0.4505944123915201, -0.8509931356788906],\n            [0.3504623207489601, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, -0.7508762961872564],\n            [0.3504623207489601, -0.6507594566956222],\n            [0.4505944123915201, -0.6507594566956222],\n            [0.4505944123915201, -0.7508762961872564],\n            [0.3504623207489601, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, -0.6507594566956222],\n            [0.3504623207489601, -0.550642617203988],\n            [0.4505944123915201, -0.550642617203988],\n            [0.4505944123915201, -0.6507594566956222],\n            [0.3504623207489601, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, -0.550642617203988],\n            [0.3504623207489601, -0.4505257777123538],\n            [0.4505944123915201, -0.4505257777123538],\n            [0.4505944123915201, -0.550642617203988],\n            [0.3504623207489601, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, -0.4505257777123538],\n            [0.3504623207489601, -0.3504089382207196],\n            [0.4505944123915201, -0.3504089382207196],\n            [0.4505944123915201, -0.4505257777123538],\n            [0.3504623207489601, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, -0.3504089382207196],\n            [0.3504623207489601, -0.2502920987290854],\n            [0.4505944123915201, -0.2502920987290854],\n            [0.4505944123915201, -0.3504089382207196],\n            [0.3504623207489601, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, -0.2502920987290854],\n            [0.3504623207489601, -0.15017525923745123],\n            [0.4505944123915201, -0.15017525923745123],\n            [0.4505944123915201, -0.2502920987290854],\n            [0.3504623207489601, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, -0.15017525923745123],\n            [0.3504623207489601, -0.05005841974581704],\n            [0.4505944123915201, -0.05005841974581704],\n            [0.4505944123915201, -0.15017525923745123],\n            [0.3504623207489601, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, -0.05005841974581704],\n            [0.3504623207489601, 0.05005841974581715],\n            [0.4505944123915201, 0.05005841974581715],\n            [0.4505944123915201, -0.05005841974581704],\n            [0.3504623207489601, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, 0.05005841974581715],\n            [0.3504623207489601, 0.15017525923745134],\n            [0.4505944123915201, 0.15017525923745134],\n            [0.4505944123915201, 0.05005841974581715],\n            [0.3504623207489601, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, 0.15017525923745134],\n            [0.3504623207489601, 0.25029209872908553],\n            [0.4505944123915201, 0.25029209872908553],\n            [0.4505944123915201, 0.15017525923745134],\n            [0.3504623207489601, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, 0.25029209872908553],\n            [0.3504623207489601, 0.3504089382207197],\n            [0.4505944123915201, 0.3504089382207197],\n            [0.4505944123915201, 0.25029209872908553],\n            [0.3504623207489601, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, 0.3504089382207197],\n            [0.3504623207489601, 0.4505257777123539],\n            [0.4505944123915201, 0.4505257777123539],\n            [0.4505944123915201, 0.3504089382207197],\n            [0.3504623207489601, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, 0.4505257777123539],\n            [0.3504623207489601, 0.5506426172039881],\n            [0.4505944123915201, 0.5506426172039881],\n            [0.4505944123915201, 0.4505257777123539],\n            [0.3504623207489601, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, 0.5506426172039881],\n            [0.3504623207489601, 0.6507594566956223],\n            [0.4505944123915201, 0.6507594566956223],\n            [0.4505944123915201, 0.5506426172039881],\n            [0.3504623207489601, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, 0.6507594566956223],\n            [0.3504623207489601, 0.7508762961872565],\n            [0.4505944123915201, 0.7508762961872565],\n            [0.4505944123915201, 0.6507594566956223],\n            [0.3504623207489601, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, 0.7508762961872565],\n            [0.3504623207489601, 0.8509931356788907],\n            [0.4505944123915201, 0.8509931356788907],\n            [0.4505944123915201, 0.7508762961872565],\n            [0.3504623207489601, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.3504623207489601, 0.8509931356788907],\n            [0.3504623207489601, 0.9511099751705249],\n            [0.4505944123915201, 0.9511099751705249],\n            [0.4505944123915201, 0.8509931356788907],\n            [0.3504623207489601, 0.8509931356788907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, -0.9511099751705248],\n            [0.4505944123915201, -0.8509931356788906],\n            [0.5507265040340801, -0.8509931356788906],\n            [0.5507265040340801, -0.9511099751705248],\n            [0.4505944123915201, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, -0.8509931356788906],\n            [0.4505944123915201, -0.7508762961872564],\n            [0.5507265040340801, -0.7508762961872564],\n            [0.5507265040340801, -0.8509931356788906],\n            [0.4505944123915201, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, -0.7508762961872564],\n            [0.4505944123915201, -0.6507594566956222],\n            [0.5507265040340801, -0.6507594566956222],\n            [0.5507265040340801, -0.7508762961872564],\n            [0.4505944123915201, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, -0.6507594566956222],\n            [0.4505944123915201, -0.550642617203988],\n            [0.5507265040340801, -0.550642617203988],\n            [0.5507265040340801, -0.6507594566956222],\n            [0.4505944123915201, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, -0.550642617203988],\n            [0.4505944123915201, -0.4505257777123538],\n            [0.5507265040340801, -0.4505257777123538],\n            [0.5507265040340801, -0.550642617203988],\n            [0.4505944123915201, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, -0.4505257777123538],\n            [0.4505944123915201, -0.3504089382207196],\n            [0.5507265040340801, -0.3504089382207196],\n            [0.5507265040340801, -0.4505257777123538],\n            [0.4505944123915201, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, -0.3504089382207196],\n            [0.4505944123915201, -0.2502920987290854],\n            [0.5507265040340801, -0.2502920987290854],\n            [0.5507265040340801, -0.3504089382207196],\n            [0.4505944123915201, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, -0.2502920987290854],\n            [0.4505944123915201, -0.15017525923745123],\n            [0.5507265040340801, -0.15017525923745123],\n            [0.5507265040340801, -0.2502920987290854],\n            [0.4505944123915201, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, -0.15017525923745123],\n            [0.4505944123915201, -0.05005841974581704],\n            [0.5507265040340801, -0.05005841974581704],\n            [0.5507265040340801, -0.15017525923745123],\n            [0.4505944123915201, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, -0.05005841974581704],\n            [0.4505944123915201, 0.05005841974581715],\n            [0.5507265040340801, 0.05005841974581715],\n            [0.5507265040340801, -0.05005841974581704],\n            [0.4505944123915201, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, 0.05005841974581715],\n            [0.4505944123915201, 0.15017525923745134],\n            [0.5507265040340801, 0.15017525923745134],\n            [0.5507265040340801, 0.05005841974581715],\n            [0.4505944123915201, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, 0.15017525923745134],\n            [0.4505944123915201, 0.25029209872908553],\n            [0.5507265040340801, 0.25029209872908553],\n            [0.5507265040340801, 0.15017525923745134],\n            [0.4505944123915201, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, 0.25029209872908553],\n            [0.4505944123915201, 0.3504089382207197],\n            [0.5507265040340801, 0.3504089382207197],\n            [0.5507265040340801, 0.25029209872908553],\n            [0.4505944123915201, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, 0.3504089382207197],\n            [0.4505944123915201, 0.4505257777123539],\n            [0.5507265040340801, 0.4505257777123539],\n            [0.5507265040340801, 0.3504089382207197],\n            [0.4505944123915201, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, 0.4505257777123539],\n            [0.4505944123915201, 0.5506426172039881],\n            [0.5507265040340801, 0.5506426172039881],\n            [0.5507265040340801, 0.4505257777123539],\n            [0.4505944123915201, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, 0.5506426172039881],\n            [0.4505944123915201, 0.6507594566956223],\n            [0.5507265040340801, 0.6507594566956223],\n            [0.5507265040340801, 0.5506426172039881],\n            [0.4505944123915201, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, 0.6507594566956223],\n            [0.4505944123915201, 0.7508762961872565],\n            [0.5507265040340801, 0.7508762961872565],\n            [0.5507265040340801, 0.6507594566956223],\n            [0.4505944123915201, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, 0.7508762961872565],\n            [0.4505944123915201, 0.8509931356788907],\n            [0.5507265040340801, 0.8509931356788907],\n            [0.5507265040340801, 0.7508762961872565],\n            [0.4505944123915201, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.4505944123915201, 0.8509931356788907],\n            [0.4505944123915201, 0.9511099751705249],\n            [0.5507265040340801, 0.9511099751705249],\n            [0.5507265040340801, 0.8509931356788907],\n            [0.4505944123915201, 0.8509931356788907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, -0.9511099751705248],\n            [0.5507265040340801, -0.8509931356788906],\n            [0.6508585956766401, -0.8509931356788906],\n            [0.6508585956766401, -0.9511099751705248],\n            [0.5507265040340801, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, -0.8509931356788906],\n            [0.5507265040340801, -0.7508762961872564],\n            [0.6508585956766401, -0.7508762961872564],\n            [0.6508585956766401, -0.8509931356788906],\n            [0.5507265040340801, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, -0.7508762961872564],\n            [0.5507265040340801, -0.6507594566956222],\n            [0.6508585956766401, -0.6507594566956222],\n            [0.6508585956766401, -0.7508762961872564],\n            [0.5507265040340801, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, -0.6507594566956222],\n            [0.5507265040340801, -0.550642617203988],\n            [0.6508585956766401, -0.550642617203988],\n            [0.6508585956766401, -0.6507594566956222],\n            [0.5507265040340801, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, -0.550642617203988],\n            [0.5507265040340801, -0.4505257777123538],\n            [0.6508585956766401, -0.4505257777123538],\n            [0.6508585956766401, -0.550642617203988],\n            [0.5507265040340801, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, -0.4505257777123538],\n            [0.5507265040340801, -0.3504089382207196],\n            [0.6508585956766401, -0.3504089382207196],\n            [0.6508585956766401, -0.4505257777123538],\n            [0.5507265040340801, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, -0.3504089382207196],\n            [0.5507265040340801, -0.2502920987290854],\n            [0.6508585956766401, -0.2502920987290854],\n            [0.6508585956766401, -0.3504089382207196],\n            [0.5507265040340801, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, -0.2502920987290854],\n            [0.5507265040340801, -0.15017525923745123],\n            [0.6508585956766401, -0.15017525923745123],\n            [0.6508585956766401, -0.2502920987290854],\n            [0.5507265040340801, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, -0.15017525923745123],\n            [0.5507265040340801, -0.05005841974581704],\n            [0.6508585956766401, -0.05005841974581704],\n            [0.6508585956766401, -0.15017525923745123],\n            [0.5507265040340801, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, -0.05005841974581704],\n            [0.5507265040340801, 0.05005841974581715],\n            [0.6508585956766401, 0.05005841974581715],\n            [0.6508585956766401, -0.05005841974581704],\n            [0.5507265040340801, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, 0.05005841974581715],\n            [0.5507265040340801, 0.15017525923745134],\n            [0.6508585956766401, 0.15017525923745134],\n            [0.6508585956766401, 0.05005841974581715],\n            [0.5507265040340801, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, 0.15017525923745134],\n            [0.5507265040340801, 0.25029209872908553],\n            [0.6508585956766401, 0.25029209872908553],\n            [0.6508585956766401, 0.15017525923745134],\n            [0.5507265040340801, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, 0.25029209872908553],\n            [0.5507265040340801, 0.3504089382207197],\n            [0.6508585956766401, 0.3504089382207197],\n            [0.6508585956766401, 0.25029209872908553],\n            [0.5507265040340801, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, 0.3504089382207197],\n            [0.5507265040340801, 0.4505257777123539],\n            [0.6508585956766401, 0.4505257777123539],\n            [0.6508585956766401, 0.3504089382207197],\n            [0.5507265040340801, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, 0.4505257777123539],\n            [0.5507265040340801, 0.5506426172039881],\n            [0.6508585956766401, 0.5506426172039881],\n            [0.6508585956766401, 0.4505257777123539],\n            [0.5507265040340801, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, 0.5506426172039881],\n            [0.5507265040340801, 0.6507594566956223],\n            [0.6508585956766401, 0.6507594566956223],\n            [0.6508585956766401, 0.5506426172039881],\n            [0.5507265040340801, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, 0.6507594566956223],\n            [0.5507265040340801, 0.7508762961872565],\n            [0.6508585956766401, 0.7508762961872565],\n            [0.6508585956766401, 0.6507594566956223],\n            [0.5507265040340801, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, 0.7508762961872565],\n            [0.5507265040340801, 0.8509931356788907],\n            [0.6508585956766401, 0.8509931356788907],\n            [0.6508585956766401, 0.7508762961872565],\n            [0.5507265040340801, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.5507265040340801, 0.8509931356788907],\n            [0.5507265040340801, 0.9511099751705249],\n            [0.6508585956766401, 0.9511099751705249],\n            [0.6508585956766401, 0.8509931356788907],\n            [0.5507265040340801, 0.8509931356788907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, -0.9511099751705248],\n            [0.6508585956766401, -0.8509931356788906],\n            [0.7509906873192, -0.8509931356788906],\n            [0.7509906873192, -0.9511099751705248],\n            [0.6508585956766401, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, -0.8509931356788906],\n            [0.6508585956766401, -0.7508762961872564],\n            [0.7509906873192, -0.7508762961872564],\n            [0.7509906873192, -0.8509931356788906],\n            [0.6508585956766401, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, -0.7508762961872564],\n            [0.6508585956766401, -0.6507594566956222],\n            [0.7509906873192, -0.6507594566956222],\n            [0.7509906873192, -0.7508762961872564],\n            [0.6508585956766401, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, -0.6507594566956222],\n            [0.6508585956766401, -0.550642617203988],\n            [0.7509906873192, -0.550642617203988],\n            [0.7509906873192, -0.6507594566956222],\n            [0.6508585956766401, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, -0.550642617203988],\n            [0.6508585956766401, -0.4505257777123538],\n            [0.7509906873192, -0.4505257777123538],\n            [0.7509906873192, -0.550642617203988],\n            [0.6508585956766401, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, -0.4505257777123538],\n            [0.6508585956766401, -0.3504089382207196],\n            [0.7509906873192, -0.3504089382207196],\n            [0.7509906873192, -0.4505257777123538],\n            [0.6508585956766401, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, -0.3504089382207196],\n            [0.6508585956766401, -0.2502920987290854],\n            [0.7509906873192, -0.2502920987290854],\n            [0.7509906873192, -0.3504089382207196],\n            [0.6508585956766401, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, -0.2502920987290854],\n            [0.6508585956766401, -0.15017525923745123],\n            [0.7509906873192, -0.15017525923745123],\n            [0.7509906873192, -0.2502920987290854],\n            [0.6508585956766401, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, -0.15017525923745123],\n            [0.6508585956766401, -0.05005841974581704],\n            [0.7509906873192, -0.05005841974581704],\n            [0.7509906873192, -0.15017525923745123],\n            [0.6508585956766401, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, -0.05005841974581704],\n            [0.6508585956766401, 0.05005841974581715],\n            [0.7509906873192, 0.05005841974581715],\n            [0.7509906873192, -0.05005841974581704],\n            [0.6508585956766401, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, 0.05005841974581715],\n            [0.6508585956766401, 0.15017525923745134],\n            [0.7509906873192, 0.15017525923745134],\n            [0.7509906873192, 0.05005841974581715],\n            [0.6508585956766401, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, 0.15017525923745134],\n            [0.6508585956766401, 0.25029209872908553],\n            [0.7509906873192, 0.25029209872908553],\n            [0.7509906873192, 0.15017525923745134],\n            [0.6508585956766401, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, 0.25029209872908553],\n            [0.6508585956766401, 0.3504089382207197],\n            [0.7509906873192, 0.3504089382207197],\n            [0.7509906873192, 0.25029209872908553],\n            [0.6508585956766401, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, 0.3504089382207197],\n            [0.6508585956766401, 0.4505257777123539],\n            [0.7509906873192, 0.4505257777123539],\n            [0.7509906873192, 0.3504089382207197],\n            [0.6508585956766401, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, 0.4505257777123539],\n            [0.6508585956766401, 0.5506426172039881],\n            [0.7509906873192, 0.5506426172039881],\n            [0.7509906873192, 0.4505257777123539],\n            [0.6508585956766401, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, 0.5506426172039881],\n            [0.6508585956766401, 0.6507594566956223],\n            [0.7509906873192, 0.6507594566956223],\n            [0.7509906873192, 0.5506426172039881],\n            [0.6508585956766401, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, 0.6507594566956223],\n            [0.6508585956766401, 0.7508762961872565],\n            [0.7509906873192, 0.7508762961872565],\n            [0.7509906873192, 0.6507594566956223],\n            [0.6508585956766401, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, 0.7508762961872565],\n            [0.6508585956766401, 0.8509931356788907],\n            [0.7509906873192, 0.8509931356788907],\n            [0.7509906873192, 0.7508762961872565],\n            [0.6508585956766401, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.6508585956766401, 0.8509931356788907],\n            [0.6508585956766401, 0.9511099751705249],\n            [0.7509906873192, 0.9511099751705249],\n            [0.7509906873192, 0.8509931356788907],\n            [0.6508585956766401, 0.8509931356788907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, -0.9511099751705248],\n            [0.7509906873192, -0.8509931356788906],\n            [0.85112277896176, -0.8509931356788906],\n            [0.85112277896176, -0.9511099751705248],\n            [0.7509906873192, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, -0.8509931356788906],\n            [0.7509906873192, -0.7508762961872564],\n            [0.85112277896176, -0.7508762961872564],\n            [0.85112277896176, -0.8509931356788906],\n            [0.7509906873192, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, -0.7508762961872564],\n            [0.7509906873192, -0.6507594566956222],\n            [0.85112277896176, -0.6507594566956222],\n            [0.85112277896176, -0.7508762961872564],\n            [0.7509906873192, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, -0.6507594566956222],\n            [0.7509906873192, -0.550642617203988],\n            [0.85112277896176, -0.550642617203988],\n            [0.85112277896176, -0.6507594566956222],\n            [0.7509906873192, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, -0.550642617203988],\n            [0.7509906873192, -0.4505257777123538],\n            [0.85112277896176, -0.4505257777123538],\n            [0.85112277896176, -0.550642617203988],\n            [0.7509906873192, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, -0.4505257777123538],\n            [0.7509906873192, -0.3504089382207196],\n            [0.85112277896176, -0.3504089382207196],\n            [0.85112277896176, -0.4505257777123538],\n            [0.7509906873192, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, -0.3504089382207196],\n            [0.7509906873192, -0.2502920987290854],\n            [0.85112277896176, -0.2502920987290854],\n            [0.85112277896176, -0.3504089382207196],\n            [0.7509906873192, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, -0.2502920987290854],\n            [0.7509906873192, -0.15017525923745123],\n            [0.85112277896176, -0.15017525923745123],\n            [0.85112277896176, -0.2502920987290854],\n            [0.7509906873192, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, -0.15017525923745123],\n            [0.7509906873192, -0.05005841974581704],\n            [0.85112277896176, -0.05005841974581704],\n            [0.85112277896176, -0.15017525923745123],\n            [0.7509906873192, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, -0.05005841974581704],\n            [0.7509906873192, 0.05005841974581715],\n            [0.85112277896176, 0.05005841974581715],\n            [0.85112277896176, -0.05005841974581704],\n            [0.7509906873192, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, 0.05005841974581715],\n            [0.7509906873192, 0.15017525923745134],\n            [0.85112277896176, 0.15017525923745134],\n            [0.85112277896176, 0.05005841974581715],\n            [0.7509906873192, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, 0.15017525923745134],\n            [0.7509906873192, 0.25029209872908553],\n            [0.85112277896176, 0.25029209872908553],\n            [0.85112277896176, 0.15017525923745134],\n            [0.7509906873192, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, 0.25029209872908553],\n            [0.7509906873192, 0.3504089382207197],\n            [0.85112277896176, 0.3504089382207197],\n            [0.85112277896176, 0.25029209872908553],\n            [0.7509906873192, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, 0.3504089382207197],\n            [0.7509906873192, 0.4505257777123539],\n            [0.85112277896176, 0.4505257777123539],\n            [0.85112277896176, 0.3504089382207197],\n            [0.7509906873192, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, 0.4505257777123539],\n            [0.7509906873192, 0.5506426172039881],\n            [0.85112277896176, 0.5506426172039881],\n            [0.85112277896176, 0.4505257777123539],\n            [0.7509906873192, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, 0.5506426172039881],\n            [0.7509906873192, 0.6507594566956223],\n            [0.85112277896176, 0.6507594566956223],\n            [0.85112277896176, 0.5506426172039881],\n            [0.7509906873192, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, 0.6507594566956223],\n            [0.7509906873192, 0.7508762961872565],\n            [0.85112277896176, 0.7508762961872565],\n            [0.85112277896176, 0.6507594566956223],\n            [0.7509906873192, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, 0.7508762961872565],\n            [0.7509906873192, 0.8509931356788907],\n            [0.85112277896176, 0.8509931356788907],\n            [0.85112277896176, 0.7508762961872565],\n            [0.7509906873192, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.7509906873192, 0.8509931356788907],\n            [0.7509906873192, 0.9511099751705249],\n            [0.85112277896176, 0.9511099751705249],\n            [0.85112277896176, 0.8509931356788907],\n            [0.7509906873192, 0.8509931356788907]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, -0.9511099751705248],\n            [0.85112277896176, -0.8509931356788906],\n            [0.95125487060432, -0.8509931356788906],\n            [0.95125487060432, -0.9511099751705248],\n            [0.85112277896176, -0.9511099751705248]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, -0.8509931356788906],\n            [0.85112277896176, -0.7508762961872564],\n            [0.95125487060432, -0.7508762961872564],\n            [0.95125487060432, -0.8509931356788906],\n            [0.85112277896176, -0.8509931356788906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, -0.7508762961872564],\n            [0.85112277896176, -0.6507594566956222],\n            [0.95125487060432, -0.6507594566956222],\n            [0.95125487060432, -0.7508762961872564],\n            [0.85112277896176, -0.7508762961872564]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, -0.6507594566956222],\n            [0.85112277896176, -0.550642617203988],\n            [0.95125487060432, -0.550642617203988],\n            [0.95125487060432, -0.6507594566956222],\n            [0.85112277896176, -0.6507594566956222]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, -0.550642617203988],\n            [0.85112277896176, -0.4505257777123538],\n            [0.95125487060432, -0.4505257777123538],\n            [0.95125487060432, -0.550642617203988],\n            [0.85112277896176, -0.550642617203988]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, -0.4505257777123538],\n            [0.85112277896176, -0.3504089382207196],\n            [0.95125487060432, -0.3504089382207196],\n            [0.95125487060432, -0.4505257777123538],\n            [0.85112277896176, -0.4505257777123538]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, -0.3504089382207196],\n            [0.85112277896176, -0.2502920987290854],\n            [0.95125487060432, -0.2502920987290854],\n            [0.95125487060432, -0.3504089382207196],\n            [0.85112277896176, -0.3504089382207196]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, -0.2502920987290854],\n            [0.85112277896176, -0.15017525923745123],\n            [0.95125487060432, -0.15017525923745123],\n            [0.95125487060432, -0.2502920987290854],\n            [0.85112277896176, -0.2502920987290854]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, -0.15017525923745123],\n            [0.85112277896176, -0.05005841974581704],\n            [0.95125487060432, -0.05005841974581704],\n            [0.95125487060432, -0.15017525923745123],\n            [0.85112277896176, -0.15017525923745123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, -0.05005841974581704],\n            [0.85112277896176, 0.05005841974581715],\n            [0.95125487060432, 0.05005841974581715],\n            [0.95125487060432, -0.05005841974581704],\n            [0.85112277896176, -0.05005841974581704]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, 0.05005841974581715],\n            [0.85112277896176, 0.15017525923745134],\n            [0.95125487060432, 0.15017525923745134],\n            [0.95125487060432, 0.05005841974581715],\n            [0.85112277896176, 0.05005841974581715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, 0.15017525923745134],\n            [0.85112277896176, 0.25029209872908553],\n            [0.95125487060432, 0.25029209872908553],\n            [0.95125487060432, 0.15017525923745134],\n            [0.85112277896176, 0.15017525923745134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, 0.25029209872908553],\n            [0.85112277896176, 0.3504089382207197],\n            [0.95125487060432, 0.3504089382207197],\n            [0.95125487060432, 0.25029209872908553],\n            [0.85112277896176, 0.25029209872908553]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, 0.3504089382207197],\n            [0.85112277896176, 0.4505257777123539],\n            [0.95125487060432, 0.4505257777123539],\n            [0.95125487060432, 0.3504089382207197],\n            [0.85112277896176, 0.3504089382207197]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, 0.4505257777123539],\n            [0.85112277896176, 0.5506426172039881],\n            [0.95125487060432, 0.5506426172039881],\n            [0.95125487060432, 0.4505257777123539],\n            [0.85112277896176, 0.4505257777123539]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, 0.5506426172039881],\n            [0.85112277896176, 0.6507594566956223],\n            [0.95125487060432, 0.6507594566956223],\n            [0.95125487060432, 0.5506426172039881],\n            [0.85112277896176, 0.5506426172039881]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, 0.6507594566956223],\n            [0.85112277896176, 0.7508762961872565],\n            [0.95125487060432, 0.7508762961872565],\n            [0.95125487060432, 0.6507594566956223],\n            [0.85112277896176, 0.6507594566956223]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, 0.7508762961872565],\n            [0.85112277896176, 0.8509931356788907],\n            [0.95125487060432, 0.8509931356788907],\n            [0.95125487060432, 0.7508762961872565],\n            [0.85112277896176, 0.7508762961872565]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.85112277896176, 0.8509931356788907],\n            [0.85112277896176, 0.9511099751705249],\n            [0.95125487060432, 0.9511099751705249],\n            [0.95125487060432, 0.8509931356788907],\n            [0.85112277896176, 0.8509931356788907]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-quadrat-analysis/test/out/uniformPoint.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9011888247830396, 0.9010515554247078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8010567331404796, 0.9010515554247078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7009246414979196, 0.9010515554247078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6007925498553597, 0.9010515554247078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5006604582127997, 0.9010515554247078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40052836657023966, 0.9010515554247078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3003962749276797, 0.9010515554247078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2002641832851197, 0.9010515554247078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10013209164255975, 0.9010515554247078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.0816681711721685e-16, 0.9010515554247078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10013209164256016, 0.9010515554247078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20026418328512013, 0.9010515554247078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3003962749276801, 0.9010515554247078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40052836657024016, 0.9010515554247078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5006604582128, 0.9010515554247078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.60079254985536, 0.9010515554247078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7009246414979201, 0.9010515554247078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8010567331404801, 0.9010515554247078]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, -0.9010515554247076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, -0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, -0.7008178764414392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, -0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, -0.5005841974581708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, -0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, -0.3003505184749025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, -0.20023367898326833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, -0.10011683949163414]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, 5.551115123125783e-17]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, 0.10011683949163425]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, 0.20023367898326844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, 0.30035051847490263]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, 0.40046735796653676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, 0.5005841974581711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, 0.6007010369498051]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, 0.7008178764414394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, 0.8009347159330735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.90118882478304, 0.9010515554247078]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-quadrat-analysis/test/randomPointSet.good.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4587656907550346, 0.5597440965712925]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9347194333321354, 0.5944938695999316]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7052307408525742, 0.8595800470950943]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.14801176758985823, -0.19117567366986332]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6123860432683488, -0.6154075629341991]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4737172759860524, -0.701958019523147]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3124166107516104, -0.1971978909332126]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.99688261872969, 0.9067484314599628]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.06540953755529166, -0.693686638513165]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8738566047425063, -0.770778855049854]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7681939444965207, -0.18543396214592045]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5453005580773644, -0.45181681621283243]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4772689928716263, 0.680661004161724]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4022905467671287, -0.5519033346602309]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3480157491920912, -0.8430150730686821]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.24572471517749772, -0.18438818766186538]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.39966708816857865, -0.4550162838410441]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.0026849594516451525, 0.4745927985456402]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7300808146677653, 0.584064562751073]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6193881398303174, -0.547358218134542]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7142339179564665, 0.5977282094591594]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5346720632004232, 0.5093507261484849]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.42914407297380164, -0.7631288975911747]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.2429118674775097, -0.040833000545521525]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5882626013991117, 0.9441458496142734]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9162509973897772, -0.07968198538198346]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6368045052159133, -0.9436592193968245]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9350306679411489, -0.47844202597059304]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.008712578973587792, -0.6679584769276401]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.29024313508242594, 0.13692042406054528]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6924858279410051, -0.697363749520838]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.34274013876437426, 0.9662142906401812]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.310692853245373, 0.9984337702070705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.28349637636646907, 0.25479603270542306]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.0745438212819538, 0.44985903847329745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5780742111385289, -0.479504537808471]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.09615803434053616, 0.2479224963280373]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.0014790480690054508, 0.2876591043080774]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.1326991805042237, -0.523585072873257]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.49438001518474994, 0.00887084251050041]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6974487073042468, -0.81419499189166]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7692482052546592, -0.5021527316138803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3600562697754448, -0.3301932253640736]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.876858223613322, 0.7906002395808418]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.09041056166314743, 0.022723216301057114]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3453057657150791, 0.7885653471666991]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5217985008753261, -0.8811297799209372]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.1560618001798706, 0.34660954719781545]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8217647461731228, -0.39113450852604226]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.09661217721714443, -0.585892449410987]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.26247694414707956, 0.22837757166806805]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3028522484233265, -0.2764662275004359]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.14116444410066586, -0.7468083064100224]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.16483858914602312, 0.07710475038289655]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2039030726339135, -0.18127190605282095]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9697935441823149, 0.6612415912604508]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7587623089736226, 0.6300086724533318]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7304944807976796, -0.18267860475608488]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5261558203651959, -0.29663969412265967]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.017925526093812483, 0.3581518031599127]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.48059712155068857, 0.9583465857169542]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.1594199717831235, 0.20643879042437296]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3811205040992731, 0.9179933377136473]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7893122134257298, -0.20424496133583636]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.034471559447748934, 0.43036575587144954]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.15637723308320695, 0.11531297659007755]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.40532604712296916, -0.10153357857862266]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2180148018770054, -0.5405952503600688]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.45731541920647656, 0.21440484673564209]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6779744543568538, -0.16253372419854673]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6355770646443606, 0.9394258834955851]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10531481716653879, 0.007581958787900689]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.602198182990211, -0.9785369181325061]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5531468303888278, -0.48339688189069063]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.49397855609818375, 0.23497757598484403]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.1475095039078469, -0.7165725610285789]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8919722395555838, -0.7953435893624383]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6152865524647195, -0.7417874243058451]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.12428179369876258, 0.7173815865174413]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9613091193290395, 0.3656972515736814]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.05016164140805568, -0.1253233620139511]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.19309915493921714, -0.26586874320345943]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.30000600513267583, 0.41229422329673904]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.37985983700355597, -0.8242366144901045]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.09006218370334285, 0.03498003491298096]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9214277322891786, -0.9386051803046476]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6024994261528538, 0.4689773235092667]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8401085385751941, 0.6558569627938327]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.25494394372138673, -0.11396742074014599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5120205727781708, -0.9890290960000989]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4109593737345585, -0.14211126435212185]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.46886339286457535, 0.8230354258927548]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7257963328293155, 0.17422827710599664]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.14005044542661604, 0.5664961793127268]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.18174080720647767, -0.8721782419674562]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.057160377787873085, 0.1999745233132284]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4271435258282019, -0.692441894723729]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.1000268186938742, 0.04861732044628031]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5515740398069138, -0.7341862643611048]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5590290696650961, -0.6322781542326634]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.2796372665728053, 0.9109297918757262]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5109888522211055, -0.6961772264221908]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8659501162936865, 0.7374901979444277]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9110040107434525, -0.6321761663180161]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.760753099867205, 0.5584724033574759]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.43874588441618734, -0.5335336373018169]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.051013703362122964, 0.6683560393224881]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6563504999805843, -0.6443082876186645]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.37631065555085375, 0.49512693024785914]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.1818064227128735, 0.575002698471895]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9120715461820481, -0.8953759220776427]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.638401307565096, -0.136007142936037]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4118318665669656, -0.24370366806571697]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.024428210543731232, -0.13162363766191998]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7600090380239766, 0.5091275430381375]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7119727178453923, -0.0625651906860405]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.78706520014899, -0.20686365033037335]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20947458960154375, -0.7802198199030448]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6460412333286758, 0.7768950889642423]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.30486168598001484, 0.4956970168501096]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.41437022154178127, 0.45475642411331085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3489567372816227, -0.7604351120156059]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2731008371765209, -0.014940919619044202]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8127598269709373, 0.6726370454065651]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6519579714049533, 0.9481613600763712]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.31079019411819875, 0.9093712968634806]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8235189270072683, 0.9142937437019794]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4083832876473821, 0.9750295304113576]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8831728900453863, -0.9687202915413673]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.49993092842828535, 0.3990213787828001]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.28955062303756396, -0.19443880114719647]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6409966795493385, 0.14009598362639775]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9923691124689249, 0.3921938269905638]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.2218206363527857, -0.3379417705229475]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.07840043569624289, 0.5359578376428433]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.12176340913930961, 0.4253175281951109]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4718216606343857, 0.6200132916836423]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4157887045260984, 0.31865735601591494]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6411826162478831, 0.9524618416980726]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6554849074417555, 0.871058409518501]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.14710037251659447, 0.7589696911715733]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.15113255443319495, 0.06698464875600596]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20815456046874115, -0.7329465894982312]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.1093152067199874, 0.28120590390650824]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.14945620031338303, -0.10513478734892479]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.46602717595907706, -0.9946506530864796]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4649178986864708, -0.5254491638154537]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4701175139615388, -0.7989848617861788]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.935805159032367, 0.9736640628683899]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.12115419368112157, -0.6830128769368549]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.2435088681301676, -0.449970973774628]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8657625239474003, 0.8156489722275162]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.59314732500073, 0.23382717520488416]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2667167297263666, -0.08465869249013691]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.034489077166337534, -0.521276522407971]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7444337367966596, -0.6632279838232167]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5782591716028525, 0.804923528716111]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6749541802298435, -0.992025182023712]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9979712582566203, 0.8094727758867553]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7120495410443399, -0.25783452603939105]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3728410004292848, -0.7140149010954775]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6856292159086372, 0.8669388017796424]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.47794711208429685, -0.03403023676293948]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8032638725381065, -0.49151710013385985]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7119058341314575, -0.42961387053796596]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7439907315658285, 0.09198686666988332]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.15198474420585395, -0.35533039810796163]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3582764679334338, 0.3667563631557962]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7892198803291142, -0.4170529829177574]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8018837657268345, 0.13652997954211488]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.1228179860834877, 0.478271808497571]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4082342323340642, -0.796139937472319]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9098907356893915, -0.6213913279604792]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.1692138478751648, 0.8742984032419834]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6117049940427575, -0.9120939177435825]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.42921007798351773, -0.7084890835713127]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7158874794753758, 0.11364377990718966]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.022904195098797153, 0.5438250992208222]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5079394639124537, -0.4333280808621045]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8594375621135772, -0.5169328196214154]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8173132494956747, -0.42538437547786323]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.49382617896975356, 0.2819460208339537]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5775143679076749, 0.9733966750983272]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9444915778830936, -0.39814359830242685]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9128391135183649, -0.29820492859836634]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10661605060994983, -0.1385745352120984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20350421041513522, 0.4027660561366848]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.17432540638361704, 0.8566624601174149]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20089599700302907, -0.1623804279122929]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8780121830173848, 0.5735472866930533]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5039038719086748, -0.9887774069569244]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.91469736023096, -0.1387456900224815]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8466156444936748, 0.2680658876970363]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8475147806217223, -0.845260294176065]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7181811671216054, -0.2328458632632433]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.0012207571093600933, 0.3286549374050671]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5899727626345177, 0.6652602448099394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.49561253360004454, -0.48780389516984046]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8987863193781092, -0.7768429088574407]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.12630212278546704, 0.0034034371674884767]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.35009139454245464, -0.3303366835157795]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.10114992639062992, 0.6091821386807892]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.44210337997768745, 0.4352747824462817]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.22793211233927346, 0.33988916976745687]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8025810272356324, -0.8038614579738321]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.15677060588166158, -0.4776642771258075]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.1539583853388149, -0.2615722269559826]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6557810592962761, -0.6846903908600392]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6721038393013847, 0.5801911839249154]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.11388959255116049, 0.25795033031131753]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.31949531338528914, 0.9647028321445812]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.039902648444571476, 0.5901907180233357]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.33741118979816687, 0.1559729457869592]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.25357832825097626, 0.33086118674549114]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.14942345670400048, -0.35445747882713574]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.23350921609807695, 0.9695547105247262]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5569128158427454, -0.6492225903023354]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9675762806703379, -0.12976663593177173]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7617656092771763, -0.10236597430896444]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.05968882588617541, -0.6184394903801427]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.03251342788335121, -0.68400874413005]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7905732901612041, -0.04566080179835774]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6597982155008566, 0.2840614412561271]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6641980755818788, 0.9579561839114925]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.14622629322607006, 0.9541286137077636]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5455574218778847, 0.04858344212637222]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5724662641500076, 0.9878665665279205]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6456789724233278, -0.06697162588128691]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.020358287424326438, -0.8294594584645001]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4199107018674453, 0.5820390182360389]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.66202076197539, 0.21517718370790284]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.3064794317375257, -0.11294095475974775]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.1963761593911011, 0.6379943424845465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8634099122683359, 0.19841870080444002]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6171758835038568, -0.7569647510600452]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8535103231129506, -0.8451767247558735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8480975799062249, -0.4471630394549102]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.27246140625715665, -0.44932016509301187]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5031595574522032, -0.317121549087779]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8376463616466836, 0.03271012794344896]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8146163293760109, 0.907400227794021]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.37720711886944125, -0.20408198092848995]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8124976626984379, 0.6504110532119176]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.2268541662827488, -0.49161697864401566]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9805283233477402, -0.9428111871332789]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6872131403993365, -0.5939862461499774]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4537772255879249, -0.5912731310947827]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.22610189272690517, -0.12983269221261118]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.1295537026435727, 0.6252475231774608]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.26430484772468565, -0.24116156903245]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9967153662623502, 0.9837225942194467]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5554562160702998, 0.4160372165025463]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9497765412524397, 0.7353276189456248]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6259667794904282, -0.2940298725237751]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.32630160779288797, 0.8361125221590444]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8505005073854828, 0.2277558790523]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.88157798871124, -0.13791096200073216]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.31177311521244633, 0.9941435371901819]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.12486215618039642, 0.3454980519676951]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8663882735704966, 0.9150223059254201]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7312724053659387, 0.2824226500119704]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.33987931698606744, -0.4754480603013769]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9407119907431625, 0.23724058742117515]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.004275536836027438, 0.8451447365669531]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5190951068076557, -0.1630205460889278]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5344549242681995, 0.6008475754784541]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.16431417831946238, -0.5047296522915605]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5698369467755251, -0.27790324014768863]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9352351695697942, -0.5031150768105213]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5727510439324708, 0.03155289857972665]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3560394950495489, 0.631176001096434]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.15253426239842494, 0.10150666506644068]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.31925766882144035, -0.19822222228524522]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7575134797520575, 0.29959890240602194]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7522760267393922, -0.2997979822546597]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6529723205545785, -0.9960118631941688]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20000403135925415, -0.6665940995214572]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.686436508701481, 0.9401605081256847]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.2928703921255953, 0.7808477271795033]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.34174798167193243, 0.5049358523198815]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6176305673394644, -0.8284058816263342]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7991821200566207, -0.9848024972713136]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8598606676896119, 0.6129601314136499]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.13407509152556285, -0.7075101191430186]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.34714629520751616, 0.9827035769484849]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6639622400013998, -0.262938610677816]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6070381932953786, 0.18749808885076513]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9146164214509036, -0.7610949245061942]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.47590887501072343, -0.5540839500363557]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4177879835352112, -0.08767867769571325]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7556636640986896, 0.023544810234534364]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.0631472875214496, 0.18130383255542393]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8201389388563696, 0.2901019704753298]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7567316712990682, -0.4239170665526055]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7881716959986345, 0.46721341327853194]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9189833798972362, -0.6433841252831956]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.012451255333035594, -0.9240723498724179]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6470635784690071, -0.2094392164874428]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7392086000267417, -0.054250297480539]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.04488828981455484, -0.695647442966933]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9736768306074866, 0.014722977102499701]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5345466796451319, -0.23222991099419987]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.34992242872382695, 0.6070909530145512]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5838925053964177, -0.5982170592913962]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5819384570438006, -0.6005774045431576]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.33773525282649164, 0.9245914385987821]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.17074947737039814, -0.3432275731349428]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4808071816858903, -0.2170477978152774]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8062208281426617, 0.2747573552807032]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.16913680569595213, -0.0005749972759465649]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5913672763671185, -0.07345801334140445]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3459675473930792, 0.07495300166063856]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4146741472477151, 0.031088650725640044]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7106890863760094, -0.07106228180725394]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.07535532648708676, -0.9379253319357357]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9293085405206001, -0.6728081338839931]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7217056719157315, 0.3299897608697786]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7194387114556244, -0.33402487348535415]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6126788326227359, 0.05185982776476772]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9676714659875865, -0.7611218952358869]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.040373209758328255, 0.3692071346100838]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.309444533707095, -0.5658670061097419]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.708423068136085, -0.16624080434540245]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.1822638877245062, -0.8699338261901697]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.1714773010438977, 0.09793662105983891]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8526961911755211, -0.3784348534998787]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.44370057655457984, -0.34860745458190356]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.23743785376544713, 0.7278914300873804]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.22755888250255119, 0.6702285802403098]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7334493202675394, -0.24243293037637859]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6732379391511394, 0.5839914047218944]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.726748170253019, -0.6359186706701636]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.12399423470493476, 0.15481715144551922]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7521886790991452, 0.1691968680870044]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.46497921792711594, -0.9622271461179683]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.08545369875434883, -0.9335161385558308]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40059022717613546, 0.12158532037493375]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.0927732670350161, -0.9234564178485543]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.15062858288134784, 0.4725060825611971]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7988590686501924, 0.6951252196318793]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.16625769809136637, 0.4770064211356737]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.16938799424656592, -0.924221723271264]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.45988277229715635, -0.3821613755830291]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9096863253772267, 0.9637131092636251]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.09598195237344687, 0.43514770327967733]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7970330398492402, 0.2507560119817529]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.03885287315976882, -0.5830896065921278]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.4908850049213438, 0.800865751729376]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.20550006823911326, 0.9958037172667402]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9214598096804565, -0.4194287650017281]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7597347186999581, -0.3601641604067609]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5134815113806868, -0.9780212467899765]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.698057741483471, 0.7639163079553652]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.37519013081441965, -0.4901516591666324]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.782418707957679, 0.4383044517560495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.9800426078079538, -0.285086364564481]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.1261158500146915, -0.7268684121544533]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.26562477944683804, -0.5060682928183109]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.4100015561433623, 0.47814745601458286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3667431699867336, -0.7459378720084646]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7688199466906163, -0.873878675313029]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.19014372480648145, 0.11665225644602195]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.0784379511119, -0.7161145514767373]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.8014790333875341, 0.9520091460000262]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5480089547021008, -0.11738173753845782]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.39260507059298755, -0.17688592161384964]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5623119146424207, -0.6143554151112598]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8918144744951961, -0.22549447385003507]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5879643804151926, -0.04871554825169877]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.518896236161519, 0.3371601258433614]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6564630840655186, 0.4109220991678719]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.10048081328883063, 0.7096812999111006]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.8641849229186338, -0.7768790342218641]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6200244997677613, 0.74040364000277]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.35276347702051547, -0.32481721561255217]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.2934860299727653, -0.8012843331546984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.44434261705860756, -0.6813014659384447]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9566975630532091, 0.22305815089498493]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5913816268654886, 0.22230129382197417]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.9182909407650146, -0.32413917731901654]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5340305796593388, -0.9939347674337422]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.5286436013733229, 0.6236908317325947]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.14199575937850106, -0.06297258477254664]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.70723170102079, -0.7211488622974618]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.23021506798945923, 0.1590209784805312]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.17894682307583487, -0.6644382101411668]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.5790439751373309, 0.6795862224587745]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.0705830062884436, 0.15782122707106483]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.7315598124694063, 0.3681895497149572]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.6546589446113789, -0.2870467078510721]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.1410436383289868, 0.767036636003914]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7624407841791281, -0.9582195346032543]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.37797252397357006, 0.7546922363051674]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.7645462293718435, -0.10521851834044416]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.06786606089931935, 0.25454005105483635]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.07752528958138827, 0.4377550049132748]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.32931699954164007, 0.03980241043933219]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0.6842496463426686, -0.7417575237213998]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.40116531193213456, -0.3120409942649869]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.3716179684004173, 0.8827762535041073]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-quadrat-analysis/test.ts",
    "content": "import test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { bbox } from \"@turf/bbox\";\nimport { centroid } from \"@turf/centroid\";\nimport { squareGrid } from \"@turf/square-grid\";\nimport { bboxPolygon } from \"@turf/bbox-polygon\";\nimport { randomPoint } from \"@turf/random\";\nimport { featureCollection } from \"@turf/helpers\";\nimport { quadratAnalysis } from \"./index.js\";\nimport fs from \"fs\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-quadrat-analysis geojson file\", (t) => {\n  const futianBboxPath = path.join(__dirname, \"test\", \"in\", \"futian_bbox.json\");\n  const futianPointPath = path.join(\n    __dirname,\n    \"test\",\n    \"in\",\n    \"futian_random_point.json\"\n  );\n  const shenzhenBboxPath = path.join(\n    __dirname,\n    \"test\",\n    \"in\",\n    \"shenzhen_bbox.json\"\n  );\n\n  const futianBbox = loadJsonFileSync(futianBboxPath);\n  const futianPoint = loadJsonFileSync(futianPointPath);\n  const shenzhenBbox = loadJsonFileSync(shenzhenBboxPath);\n\n  const resultFutian = quadratAnalysis(futianPoint, {\n    studyBbox: bbox(futianBbox),\n    confidenceLevel: 20,\n  });\n\n  const resultShenzhen = quadratAnalysis(futianPoint, {\n    studyBbox: bbox(shenzhenBbox),\n    confidenceLevel: 20,\n  });\n\n  t.ok(resultFutian.isRandom, \"ramdom pattern ok\");\n  t.ok(\n    resultFutian.maxAbsoluteDifference < resultFutian.criticalValue,\n    \"random pattern maxAbsoluteDifference < criticalValue\"\n  );\n\n  t.ok(!resultShenzhen.isRandom, \"cluster pattern ok\");\n  t.ok(\n    resultShenzhen.maxAbsoluteDifference > resultShenzhen.criticalValue,\n    \"cluster pattern maxAbsoluteDifference > criticalValue\"\n  );\n\n  t.end();\n});\n\ntest(\"turf-quadrat-analysis random point\", (t) => {\n  // random\n  const smallBbox = [-1, -1, 1, 1];\n\n  // calculate randomPointSets until we get one that passes\n  let randomPointSet = randomPoint(400, { bbox: smallBbox });\n  let result1 = quadratAnalysis(randomPointSet, {\n    studyBbox: smallBbox,\n    confidenceLevel: 20,\n  });\n\n  // Sometimes we generate a randomPointSet that doesn't come back as random.\n  // In order to keep the build passing we fall back to a set of points that\n  // we know should pass the below tests in order to prevent build flakes.\n  // Having this as the fallback allows us to keep using random inputs in most\n  // cases, but keeps the builds passing when they should.\n  if (!result1.isRandom) {\n    console.warn(\n      \"WARNING: randomPointSet was not random, this might just be a rare test flake, switching to known good points\"\n    );\n    randomPointSet = JSON.parse(\n      fs.readFileSync(path.join(\"test\", \"randomPointSet.good.json\"))\n    );\n    result1 = quadratAnalysis(randomPointSet, {\n      studyBbox: smallBbox,\n      confidenceLevel: 20,\n    });\n  }\n\n  t.ok(result1.isRandom, \"random pattern ok\");\n  t.ok(\n    result1.maxAbsoluteDifference < result1.criticalValue,\n    \"random pattern maxAbsoluteDifference < criticalValue\"\n  );\n\n  // cluster\n  const bigBbox = [-3, -3, 3, 3];\n  const result2 = quadratAnalysis(randomPointSet, {\n    studyBbox: bigBbox,\n    confidenceLevel: 20,\n  });\n\n  t.ok(!result2.isRandom, \"cluster pattern ok\");\n  t.ok(\n    result2.maxAbsoluteDifference > result2.criticalValue,\n    \"cluster pattern maxAbsoluteDifference > criticalValue\"\n  );\n\n  // uniform\n  const smallGrid = squareGrid(smallBbox, 0.1, {\n    units: \"degrees\",\n  });\n  let uniformPointSet = [];\n  smallGrid.features.map(function (feature) {\n    uniformPointSet.push(centroid(feature));\n  });\n  uniformPointSet = featureCollection(uniformPointSet);\n  const result3 = quadratAnalysis(uniformPointSet, {\n    studyBbox: smallBbox,\n    confidenceLevel: 20,\n  });\n\n  t.ok(!result3.isRandom, \"uniform pattern ok\");\n  t.ok(\n    result3.maxAbsoluteDifference > result3.criticalValue,\n    \"uniform pattern maxAbsoluteDifference > criticalValue\"\n  );\n\n  const randomPointSetPath = path.join(\n    __dirname,\n    \"test\",\n    \"out\",\n    \"randomPoint.json\"\n  );\n  const uniformPointSetPath = path.join(\n    __dirname,\n    \"test\",\n    \"out\",\n    \"uniformPoint.json\"\n  );\n  const smallBboxPath = path.join(__dirname, \"test\", \"out\", \"smallBox.json\");\n  const bigBboxPath = path.join(__dirname, \"test\", \"out\", \"bigBox.json\");\n  const smallGridPath = path.join(__dirname, \"test\", \"out\", \"smallGrid.json\");\n\n  // console.log(result1, result2, result3);\n\n  if (process.env.REGEN) {\n    writeJsonFileSync(randomPointSetPath, randomPointSet);\n    writeJsonFileSync(uniformPointSetPath, uniformPointSet);\n    writeJsonFileSync(smallBboxPath, bboxPolygon(smallBbox));\n    writeJsonFileSync(bigBboxPath, bboxPolygon(bigBbox));\n    writeJsonFileSync(smallGridPath, smallGrid);\n  }\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-quadrat-analysis/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-random/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-random/README.md",
    "content": "# @turf/random\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## randomPosition\n\nReturns a random position within a [bounding box][1].\n\n### Parameters\n\n*   `bbox` **[BBox][1]** a bounding box inside of which positions are placed. (optional, default `[-180,-90,180,90]`)\n\n### Examples\n\n```javascript\nvar position = turf.randomPosition([-180, -90, 180, 90])\n// => position\n```\n\n*   Throws **[Error][2]** if bbox is invalid\n\nReturns **[Position][3]** Position \\[longitude, latitude]\n\n## randomPoint\n\nReturns a random [point][4].\n\n### Parameters\n\n*   `count` **[number][5]** how many geometries will be generated (optional, default `1`)\n*   `options` **[Object][6]** Optional parameters (optional, default `{}`)\n\n    *   `options.bbox` **[BBox][1]** a bounding box inside of which geometries are placed. (optional, default `[-180,-90,180,90]`)\n\n### Examples\n\n```javascript\nvar points = turf.randomPoint(25, {bbox: [-180, -90, 180, 90]})\n// => points\n```\n\n*   Throws **[Error][2]** if bbox is invalid\n\nReturns **[FeatureCollection][7]<[Point][8]>** GeoJSON FeatureCollection of points\n\n## randomPolygon\n\nReturns a random [polygon][9].\n\n### Parameters\n\n*   `count` **[number][5]** how many geometries will be generated (optional, default `1`)\n*   `options` **[Object][6]** Optional parameters (optional, default `{}`)\n\n    *   `options.bbox` **[BBox][1]** a bounding box inside of which geometries are placed. (optional, default `[-180,-90,180,90]`)\n    *   `options.num_vertices` **[number][5]** is how many coordinates each LineString will contain. (optional, default `10`)\n    *   `options.max_radial_length` **[number][5]** is the maximum number of decimal degrees latitude or longitude that a\n        vertex can reach out of the center of the Polygon. (optional, default `10`)\n\n### Examples\n\n```javascript\nvar polygons = turf.randomPolygon(25, {bbox: [-180, -90, 180, 90]})\n// => polygons\n```\n\n*   Throws **[Error][2]** if bbox is invalid\n\nReturns **[FeatureCollection][7]<[Polygon][10]>** GeoJSON FeatureCollection of polygons\n\n## randomLineString\n\nReturns a random [LineString][11].\n\n### Parameters\n\n*   `count` **[number][5]** how many geometries will be generated (optional, default `1`)\n*   `options` **[Object][6]** Optional parameters (optional, default `{}`)\n\n    *   `options.bbox` **[BBox][1]** a bounding box inside of which geometries are placed. (optional, default `[-180,-90,180,90]`)\n    *   `options.num_vertices` **[number][5]** is how many coordinates each LineString will contain. (optional, default `10`)\n    *   `options.max_length` **[number][5]** is the maximum number of decimal degrees that a\n        vertex can be from its predecessor (optional, default `0.0001`)\n    *   `options.max_rotation` **[number][5]** is the maximum number of radians that a\n        line segment can turn from the previous segment. (optional, default `Math.PI/8`)\n\n### Examples\n\n```javascript\nvar lineStrings = turf.randomLineString(25, {bbox: [-180, -90, 180, 90]})\n// => lineStrings\n```\n\n*   Throws **[Error][2]** if bbox is invalid\n\nReturns **[FeatureCollection][7]<[LineString][11]>** GeoJSON FeatureCollection of linestrings\n\n[1]: https://tools.ietf.org/html/rfc7946#section-5\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error\n\n[3]: https://developer.mozilla.org/docs/Web/API/Position\n\n[4]: point\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[8]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[9]: polygon\n\n[10]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[11]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/random\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-random/bench.ts",
    "content": "import Benchmark, { Event } from \"benchmark\";\nimport { randomPolygon } from \"./index.js\";\n\nlet totalTime = 0.0;\nconst suite = new Benchmark.Suite(\"turf-random\");\n\nsuite\n  .add(\"turf-random\", () => randomPolygon(1, { num_vertices: 100000 }), {\n    onComplete: (e: Event) =>\n      (totalTime = totalTime += e.target.times?.elapsed),\n  })\n  .on(\"cycle\", (e: Event) => console.log(String(e.target)))\n  .on(\"complete\", () =>\n    console.log(`completed in ${totalTime.toFixed(2)} seconds`)\n  )\n  .run();\n"
  },
  {
    "path": "packages/turf-random/index.ts",
    "content": "import {\n  BBox,\n  FeatureCollection,\n  LineString,\n  Point,\n  Polygon,\n  Position,\n} from \"geojson\";\nimport {\n  featureCollection,\n  isNumber,\n  isObject,\n  lineString,\n  point,\n  polygon,\n  validateBBox,\n} from \"@turf/helpers\";\n\n/**\n * Returns a random position within a {@link BBox|bounding box}.\n *\n * @function\n * @param {BBox} [bbox=[-180, -90, 180, 90]] a bounding box inside of which positions are placed.\n * @returns {Position} Position [longitude, latitude]\n * @throws {Error} if bbox is invalid\n * @example\n * var position = turf.randomPosition([-180, -90, 180, 90])\n * // => position\n */\nfunction randomPosition(bbox?: BBox | { bbox: BBox }): Position {\n  checkBBox(bbox);\n  return randomPositionUnchecked(bbox);\n}\n\n// does not check bbox for validity, that is handled by the exported functions\nfunction randomPositionUnchecked(bbox?: BBox | { bbox: BBox }): Position {\n  if (Array.isArray(bbox)) {\n    return coordInBBox(bbox);\n  }\n  if (bbox && bbox.bbox) {\n    return coordInBBox(bbox.bbox);\n  }\n  return [lon(), lat()];\n}\n\nfunction checkBBox(bbox?: BBox | { bbox: BBox }) {\n  if (bbox == null) {\n    return;\n  } else if (Array.isArray(bbox)) {\n    validateBBox(bbox);\n  } else if (bbox.bbox != null) {\n    validateBBox(bbox.bbox);\n  }\n}\n\n/**\n * Returns a random {@link point}.\n *\n * @function\n * @param {number} [count=1] how many geometries will be generated\n * @param {Object} [options={}] Optional parameters\n * @param {BBox} [options.bbox=[-180, -90, 180, 90]] a bounding box inside of which geometries are placed.\n * @returns {FeatureCollection<Point>} GeoJSON FeatureCollection of points\n * @throws {Error} if bbox is invalid\n * @example\n * var points = turf.randomPoint(25, {bbox: [-180, -90, 180, 90]})\n * // => points\n */\nfunction randomPoint(\n  count?: number,\n  options: {\n    bbox?: BBox;\n  } = {}\n): FeatureCollection<Point, any> {\n  checkBBox(options.bbox);\n  if (count === undefined || count === null) {\n    count = 1;\n  }\n  const features = [];\n  for (let i = 0; i < count; i++) {\n    features.push(point(randomPositionUnchecked(options.bbox)));\n  }\n  return featureCollection(features);\n}\n\n/**\n * Returns a random {@link polygon}.\n *\n * @function\n * @param {number} [count=1] how many geometries will be generated\n * @param {Object} [options={}] Optional parameters\n * @param {BBox} [options.bbox=[-180, -90, 180, 90]] a bounding box inside of which geometries are placed.\n * @param {number} [options.num_vertices=10] is how many coordinates each LineString will contain.\n * @param {number} [options.max_radial_length=10] is the maximum number of decimal degrees latitude or longitude that a\n * vertex can reach out of the center of the Polygon.\n * @returns {FeatureCollection<Polygon>} GeoJSON FeatureCollection of polygons\n * @throws {Error} if bbox is invalid\n * @example\n * var polygons = turf.randomPolygon(25, {bbox: [-180, -90, 180, 90]})\n * // => polygons\n */\nfunction randomPolygon(\n  count?: number,\n  options: {\n    bbox?: BBox;\n    num_vertices?: number;\n    max_radial_length?: number;\n  } = {}\n): FeatureCollection<Polygon, any> {\n  checkBBox(options.bbox);\n\n  // Default param\n  if (count === undefined || count === null) {\n    count = 1;\n  }\n  if (options.bbox === undefined || options.bbox === null) {\n    options.bbox = [-180, -90, 180, 90];\n  }\n  if (!isNumber(options.num_vertices) || options.num_vertices === undefined) {\n    options.num_vertices = 10;\n  }\n  if (\n    !isNumber(options.max_radial_length) ||\n    options.max_radial_length === undefined\n  ) {\n    options.max_radial_length = 10;\n  }\n\n  const bboxWidth = Math.abs(options.bbox[0] - options.bbox[2]);\n  const bboxHeight = Math.abs(options.bbox[1] - options.bbox[3]);\n\n  const maxRadius = Math.min(bboxWidth / 2, bboxHeight / 2);\n\n  if (options.max_radial_length > maxRadius) {\n    throw new Error(\"max_radial_length is greater than the radius of the bbox\");\n  }\n\n  // Create a padded bbox to avoid the polygons to be too close to the border\n  const paddedBbox = [\n    options.bbox[0] + options.max_radial_length,\n    options.bbox[1] + options.max_radial_length,\n    options.bbox[2] - options.max_radial_length,\n    options.bbox[3] - options.max_radial_length,\n  ] as BBox;\n\n  const features = [];\n  for (let i = 0; i < count; i++) {\n    let vertices: number[][] = [];\n    const circleOffsets = [...Array(options.num_vertices + 1)].map(Math.random);\n\n    // Sum Offsets\n    circleOffsets.forEach((cur, index, arr) => {\n      arr[index] = index > 0 ? cur + arr[index - 1] : cur;\n    });\n\n    // scaleOffsets\n    circleOffsets.forEach((cur) => {\n      cur = (cur * 2 * Math.PI) / circleOffsets[circleOffsets.length - 1];\n      const radialScaler = Math.random();\n      vertices.push([\n        radialScaler * (options.max_radial_length || 10) * Math.sin(cur),\n        radialScaler * (options.max_radial_length || 10) * Math.cos(cur),\n      ]);\n    });\n    vertices[vertices.length - 1] = vertices[0]; // close the ring\n\n    // center the polygon around something\n    vertices = vertices\n      .reverse() // Make counter-clockwise to adhere to right hand rule.\n      .map(vertexToCoordinate(randomPositionUnchecked(paddedBbox)));\n    features.push(polygon([vertices]));\n  }\n  return featureCollection(features);\n}\n\n/**\n * Returns a random {@link LineString}.\n *\n * @function\n * @param {number} [count=1] how many geometries will be generated\n * @param {Object} [options={}] Optional parameters\n * @param {BBox} [options.bbox=[-180, -90, 180, 90]] a bounding box inside of which geometries are placed.\n * @param {number} [options.num_vertices=10] is how many coordinates each LineString will contain.\n * @param {number} [options.max_length=0.0001] is the maximum number of decimal degrees that a\n * vertex can be from its predecessor\n * @param {number} [options.max_rotation=Math.PI / 8] is the maximum number of radians that a\n * line segment can turn from the previous segment.\n * @returns {FeatureCollection<LineString>} GeoJSON FeatureCollection of linestrings\n * @throws {Error} if bbox is invalid\n * @example\n * var lineStrings = turf.randomLineString(25, {bbox: [-180, -90, 180, 90]})\n * // => lineStrings\n */\nfunction randomLineString(\n  count?: number,\n  options: {\n    bbox?: BBox;\n    num_vertices?: number;\n    max_length?: number;\n    max_rotation?: number;\n  } = {}\n): FeatureCollection<LineString, any> {\n  // Optional parameters\n  options = options || {};\n  if (!isObject(options)) {\n    throw new Error(\"options is invalid\");\n  }\n  const bbox = options.bbox;\n  checkBBox(bbox);\n  let num_vertices = options.num_vertices;\n  let max_length = options.max_length;\n  let max_rotation = options.max_rotation;\n  if (count === undefined || count === null) {\n    count = 1;\n  }\n\n  // Default parameters\n  if (\n    !isNumber(num_vertices) ||\n    num_vertices === undefined ||\n    num_vertices < 2\n  ) {\n    num_vertices = 10;\n  }\n  if (!isNumber(max_length) || max_length === undefined) {\n    max_length = 0.0001;\n  }\n  if (!isNumber(max_rotation) || max_rotation === undefined) {\n    max_rotation = Math.PI / 8;\n  }\n\n  const features = [];\n  for (let i = 0; i < count; i++) {\n    const startingPoint = randomPositionUnchecked(bbox);\n    const vertices = [startingPoint];\n    for (let j = 0; j < num_vertices - 1; j++) {\n      const priorAngle =\n        j === 0\n          ? Math.random() * 2 * Math.PI\n          : Math.tan(\n              (vertices[j][1] - vertices[j - 1][1]) /\n                (vertices[j][0] - vertices[j - 1][0])\n            );\n      const angle = priorAngle + (Math.random() - 0.5) * max_rotation * 2;\n      const distance = Math.random() * max_length;\n      vertices.push([\n        vertices[j][0] + distance * Math.cos(angle),\n        vertices[j][1] + distance * Math.sin(angle),\n      ]);\n    }\n    features.push(lineString(vertices));\n  }\n\n  return featureCollection(features);\n}\n\nfunction vertexToCoordinate(hub: number[]) {\n  return (cur: number[]) => {\n    return [cur[0] + hub[0], cur[1] + hub[1]];\n  };\n}\n\nfunction rnd() {\n  return Math.random() - 0.5;\n}\nfunction lon() {\n  return rnd() * 360;\n}\nfunction lat() {\n  return rnd() * 180;\n}\n\nfunction coordInBBox(bbox: BBox) {\n  return [\n    Math.random() * (bbox[2] - bbox[0]) + bbox[0],\n    Math.random() * (bbox[3] - bbox[1]) + bbox[1],\n  ];\n}\n\nexport { randomPosition, randomPoint, randomPolygon, randomLineString };\n"
  },
  {
    "path": "packages/turf-random/package.json",
    "content": "{\n  \"name\": \"@turf/random\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Generates random points, lines, or polygons for testing.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gis\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-random/test.ts",
    "content": "import test from \"tape\";\nimport {\n  randomPoint,\n  randomPolygon,\n  randomLineString,\n  randomPosition,\n} from \"./index.js\";\n\ntest(\"random(points)\", (t) => {\n  var points = randomPoint();\n  t.equal(points.type, \"FeatureCollection\", \"is a featurecollection\");\n  t.equal(points.features.length, 1, \"right number of features\");\n  t.equal(points.features[0].geometry.type, \"Point\", \"feature type correct\");\n  t.end();\n});\n\ntest(\"random(polygons)\", (t) => {\n  var points = randomPolygon();\n  t.equal(points.type, \"FeatureCollection\", \"is a featurecollection\");\n  t.equal(points.features.length, 1, \"right number of features\");\n  t.equal(points.features[0].geometry.type, \"Polygon\", \"feature type correct\");\n  t.end();\n});\n\ntest(\"random(polygons, 10)\", (t) => {\n  var points = randomPolygon(10);\n  t.equal(points.type, \"FeatureCollection\", \"is a featurecollection\");\n  t.equal(points.features.length, 10, \"right number of features\");\n  t.equal(points.features[0].geometry.type, \"Polygon\", \"feature type correct\");\n  t.end();\n});\n\ntest(\"random(polygons, 1, {num_vertices})\", (t) => {\n  var points = randomPolygon(10, { num_vertices: 23 });\n  t.equal(points.type, \"FeatureCollection\", \"is a featurecollection\");\n  t.equal(points.features.length, 10, \"right number of features\");\n  t.equal(\n    points.features[0].geometry.coordinates[0].length,\n    24,\n    \"num vertices\"\n  );\n  t.end();\n});\n\ntest(\"random(points, 10, {bbox})\", (t) => {\n  var points = randomPoint(10, { bbox: [0, 0, 0, 0] });\n  t.equal(points.type, \"FeatureCollection\", \"is a featurecollection\");\n  t.equal(points.features.length, 10, \"right number of features\");\n  t.equal(points.features[0].geometry.type, \"Point\", \"feature type correct\");\n  t.deepEqual(\n    points.features[0].geometry.coordinates,\n    [0, 0],\n    \"feature type correct\"\n  );\n  t.end();\n});\n\ntest(\"bbox input gets validated\", (t) => {\n  const bbox = [\n    [0, 0],\n    [0, 0],\n    [0, 0],\n    [0, 0],\n  ]; // this is invalid\n\n  t.throws(() => {\n    randomPoint(1, { bbox });\n  }, \"randomPoint checks bbox validity\");\n  t.throws(() => {\n    randomPolygon(1, { bbox });\n  }, \"randomPolygon checks bbox validity\");\n  t.throws(() => {\n    randomLineString(1, { bbox });\n  }, \"randomLineString checks bbox validity\");\n  t.throws(() => {\n    randomPosition(bbox);\n  }, \"randomPosition checks bbox validity\");\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-random/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-rectangle-grid/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-rectangle-grid/README.md",
    "content": "# @turf/rectangle-grid\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## rectangleGrid\n\nCreates a grid of rectangular polygons with width and height consistent in degrees\n\n### Parameters\n\n*   `bbox` **[BBox][1]** extent of grid in \\[minX, minY, maxX, maxY] order.  If the grid does not fill the bbox perfectly, it is centered.\n*   `cellWidth` **[number][2]** width of each cell, in units\n*   `cellHeight` **[number][2]** height of each cell, in units\n*   `options` **[Object][3]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** the units of the cell width and height value.\n        Supports all valid Turf [Units][4].\n        If you are looking for rectangles with equal width and height in linear units (e.g. kilometers) this is not the module for you.\n        The cellWidth and cellHeight is converted from units provided to degrees internally, so the width and height of resulting polygons will be consistent only in degrees. (optional, default `'kilometers'`)\n    *   `options.mask` **[Feature][5]<([Polygon][6] | [MultiPolygon][7])>?** if passed a Polygon or MultiPolygon,\n        the grid Points will be created only inside it\n    *   `options.properties` **[Object][3]** passed to each point of the grid (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar bbox = [-95, 30 ,-85, 40];\nvar cellWidth = 50;\nvar cellHeight = 20;\nvar options = {units: 'miles'};\n\nvar rectangleGrid = turf.rectangleGrid(bbox, cellWidth, cellHeight, options);\n\n//addToMap\nvar addToMap = [rectangleGrid]\n```\n\nReturns **[FeatureCollection][8]<[Polygon][6]>** a grid of polygons\n\n[1]: https://tools.ietf.org/html/rfc7946#section-5\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[4]: https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[8]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/rectangle-grid\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-rectangle-grid/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { rectangleGrid } from \"./index.js\";\n\nvar bbox = [-95, 30, -85, 40];\n\n/**\n * Benchmark Results\n *\n * highres -- 206310 cells x 5.99 ops/sec ±13.42% (19 runs sampled)\n * midres  -- 2006 cells x 3,388 ops/sec ±10.03% (85 runs sampled)\n * lowres  -- 15 cells x 466,370 ops/sec ±1.14% (88 runs sampled)\n */\n\nconst lowres = () => rectangleGrid(bbox, 100, 200, { units: \"miles\" });\nconst midres = () => rectangleGrid(bbox, 10, 20, { units: \"miles\" });\nconst highres = () => rectangleGrid(bbox, 1, 2, { units: \"miles\" });\nvar suite = new Benchmark.Suite(\"turf-rectangle-grid\");\nsuite\n  .add(\"highres -- \" + highres().features.length + \" cells\", highres)\n  .add(\"midres  -- \" + midres().features.length + \" cells\", midres)\n  .add(\"lowres  -- \" + lowres().features.length + \" cells\", lowres)\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-rectangle-grid/index.ts",
    "content": "import { booleanIntersects as intersect } from \"@turf/boolean-intersects\";\nimport {\n  BBox,\n  Feature,\n  FeatureCollection,\n  MultiPolygon,\n  Polygon,\n  GeoJsonProperties,\n} from \"geojson\";\nimport {\n  convertLength,\n  featureCollection,\n  polygon,\n  Units,\n} from \"@turf/helpers\";\n/**\n * Creates a grid of rectangular polygons with width and height consistent in degrees\n *\n * @function\n * @param {BBox} bbox extent of grid in [minX, minY, maxX, maxY] order.  If the grid does not fill the bbox perfectly, it is centered.\n * @param {number} cellWidth width of each cell, in units\n * @param {number} cellHeight height of each cell, in units\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units='kilometers'] the units of the cell width and height value.\n * Supports all valid Turf {@link https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md Units}.\n * If you are looking for rectangles with equal width and height in linear units (e.g. kilometers) this is not the module for you.\n * The cellWidth and cellHeight is converted from units provided to degrees internally, so the width and height of resulting polygons will be consistent only in degrees.\n * @param {Feature<Polygon|MultiPolygon>} [options.mask] if passed a Polygon or MultiPolygon,\n * the grid Points will be created only inside it\n * @param {Object} [options.properties={}] passed to each point of the grid\n * @returns {FeatureCollection<Polygon>} a grid of polygons\n * @example\n * var bbox = [-95, 30 ,-85, 40];\n * var cellWidth = 50;\n * var cellHeight = 20;\n * var options = {units: 'miles'};\n *\n * var rectangleGrid = turf.rectangleGrid(bbox, cellWidth, cellHeight, options);\n *\n * //addToMap\n * var addToMap = [rectangleGrid]\n */\nfunction rectangleGrid<P extends GeoJsonProperties = GeoJsonProperties>(\n  bbox: BBox,\n  cellWidth: number,\n  cellHeight: number,\n  options: {\n    units?: Units;\n    properties?: P;\n    mask?: Feature<Polygon | MultiPolygon> | Polygon | MultiPolygon;\n  } = {}\n): FeatureCollection<Polygon, P> {\n  // Containers\n  const results = [];\n  const west = bbox[0];\n  const south = bbox[1];\n  const east = bbox[2];\n  const north = bbox[3];\n\n  const bboxWidth = east - west;\n  const cellWidthDeg = convertLength(cellWidth, options.units, \"degrees\");\n\n  const bboxHeight = north - south;\n  const cellHeightDeg = convertLength(cellHeight, options.units, \"degrees\");\n\n  const columns = Math.floor(Math.abs(bboxWidth) / cellWidthDeg);\n  const rows = Math.floor(Math.abs(bboxHeight) / cellHeightDeg);\n\n  // if the grid does not fill the bbox perfectly, center it.\n  const deltaX = (bboxWidth - columns * cellWidthDeg) / 2;\n  const deltaY = (bboxHeight - rows * cellHeightDeg) / 2;\n\n  // iterate over columns & rows\n  let currentX = west + deltaX;\n  for (let column = 0; column < columns; column++) {\n    let currentY = south + deltaY;\n    for (let row = 0; row < rows; row++) {\n      const cellPoly = polygon(\n        [\n          [\n            [currentX, currentY],\n            [currentX, currentY + cellHeightDeg],\n            [currentX + cellWidthDeg, currentY + cellHeightDeg],\n            [currentX + cellWidthDeg, currentY],\n            [currentX, currentY],\n          ],\n        ],\n        options.properties\n      );\n      if (options.mask) {\n        if (intersect(options.mask, cellPoly)) {\n          results.push(cellPoly);\n        }\n      } else {\n        results.push(cellPoly);\n      }\n\n      currentY += cellHeightDeg;\n    }\n    currentX += cellWidthDeg;\n  }\n  return featureCollection(results);\n}\n\nexport { rectangleGrid };\nexport default rectangleGrid;\n"
  },
  {
    "path": "packages/turf-rectangle-grid/package.json",
    "content": "{\n  \"name\": \"@turf/rectangle-grid\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Creates a grid of rectangular polygons with width and height consistent in degrees.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Steve Bennett <@stevage>\",\n    \"Adam Michaleski <@adam3039>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"grid\",\n    \"regular\",\n    \"cartesian\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/bbox-polygon\": \"workspace:*\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/boolean-intersects\": \"workspace:*\",\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-rectangle-grid/test/in/10x10-1degree.json",
    "content": "{\n  \"bbox\": [-5.1, -5.1, 5.1, 5.1],\n  \"cellWidth\": 1,\n  \"cellHeight\": 1,\n  \"units\": \"degrees\"\n}\n"
  },
  {
    "path": "packages/turf-rectangle-grid/test/in/australia-mask.json",
    "content": "{\n  \"bbox\": [110, 0, 160, -50],\n  \"cellWidth\": 1,\n  \"cellHeight\": 2,\n  \"units\": \"degrees\",\n  \"mask\": {\n    \"type\": \"Feature\",\n    \"properties\": {},\n    \"geometry\": {\n      \"type\": \"Polygon\",\n      \"coordinates\": [\n        [\n          [115.13671875, -33.7243396617476],\n          [116.3671875, -35.02999636902566],\n          [118.828125, -34.59704151614416],\n          [123.74999999999999, -33.9433599465788],\n          [126.38671874999999, -32.249974455863295],\n          [131.484375, -31.12819929911196],\n          [135.35156249999997, -34.30714385628803],\n          [139.04296875, -35.24561909420681],\n          [140.2734375, -37.78808138412045],\n          [146.6015625, -38.8225909761771],\n          [150.64453125, -37.43997405227057],\n          [152.40234375, -33.504759069226075],\n          [154.072265625, -28.690587654250685],\n          [153.017578125, -25.641526373065755],\n          [146.513671875, -18.646245142670598],\n          [142.20703125, -10.055402736564224],\n          [140.537109375, -17.224758206624628],\n          [135.439453125, -14.859850400601037],\n          [137.197265625, -11.953349393643416],\n          [131.30859375, -11.178401873711772],\n          [129.0234375, -14.434680215297268],\n          [125.595703125, -14.179186142354169],\n          [120.9375, -19.559790136497398],\n          [114.873046875, -21.125497636606266],\n          [114.169921875, -26.11598592533351],\n          [115.13671875, -33.7243396617476]\n        ]\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "packages/turf-rectangle-grid/test/in/big-bbox-500x100-miles.json",
    "content": "{\n  \"bbox\": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629],\n  \"cellWidth\": 500,\n  \"cellHeight\": 100,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-rectangle-grid/test/in/fiji-10x5-miles.json",
    "content": "{\n  \"bbox\": [\n    -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812\n  ],\n  \"cellWidth\": 10,\n  \"cellHeight\": 5,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-rectangle-grid/test/in/global-grid.json",
    "content": "{\n  \"bbox\": [-180, -90, 180, 90],\n  \"cellWidth\": 10,\n  \"cellHeight\": 10,\n  \"units\": \"degrees\"\n}\n"
  },
  {
    "path": "packages/turf-rectangle-grid/test/in/victoria-20x100-km.json",
    "content": "{\n  \"bbox\": [141, -39, 150, -34],\n  \"cellWidth\": 20,\n  \"cellHeight\": 100,\n  \"units\": \"kilometers\"\n}\n"
  },
  {
    "path": "packages/turf-rectangle-grid/test/out/10x10-1degree.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-5, -5],\n            [-5, -4],\n            [-4, -4],\n            [-4, -5],\n            [-5, -5]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-5, -4],\n            [-5, -3],\n            [-4, -3],\n            [-4, -4],\n            [-5, -4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-5, -3],\n            [-5, -2],\n            [-4, -2],\n            [-4, -3],\n            [-5, -3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-5, -2],\n            [-5, -1],\n            [-4, -1],\n            [-4, -2],\n            [-5, -2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-5, -1],\n            [-5, 0],\n            [-4, 0],\n            [-4, -1],\n            [-5, -1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-5, 0],\n            [-5, 1],\n            [-4, 1],\n            [-4, 0],\n            [-5, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-5, 1],\n            [-5, 2],\n            [-4, 2],\n            [-4, 1],\n            [-5, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-5, 2],\n            [-5, 3],\n            [-4, 3],\n            [-4, 2],\n            [-5, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-5, 3],\n            [-5, 4],\n            [-4, 4],\n            [-4, 3],\n            [-5, 3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-5, 4],\n            [-5, 5],\n            [-4, 5],\n            [-4, 4],\n            [-5, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-4, -5],\n            [-4, -4],\n            [-3, -4],\n            [-3, -5],\n            [-4, -5]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-4, -4],\n            [-4, -3],\n            [-3, -3],\n            [-3, -4],\n            [-4, -4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-4, -3],\n            [-4, -2],\n            [-3, -2],\n            [-3, -3],\n            [-4, -3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-4, -2],\n            [-4, -1],\n            [-3, -1],\n            [-3, -2],\n            [-4, -2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-4, -1],\n            [-4, 0],\n            [-3, 0],\n            [-3, -1],\n            [-4, -1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-4, 0],\n            [-4, 1],\n            [-3, 1],\n            [-3, 0],\n            [-4, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-4, 1],\n            [-4, 2],\n            [-3, 2],\n            [-3, 1],\n            [-4, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-4, 2],\n            [-4, 3],\n            [-3, 3],\n            [-3, 2],\n            [-4, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-4, 3],\n            [-4, 4],\n            [-3, 4],\n            [-3, 3],\n            [-4, 3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-4, 4],\n            [-4, 5],\n            [-3, 5],\n            [-3, 4],\n            [-4, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-3, -5],\n            [-3, -4],\n            [-2, -4],\n            [-2, -5],\n            [-3, -5]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-3, -4],\n            [-3, -3],\n            [-2, -3],\n            [-2, -4],\n            [-3, -4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-3, -3],\n            [-3, -2],\n            [-2, -2],\n            [-2, -3],\n            [-3, -3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-3, -2],\n            [-3, -1],\n            [-2, -1],\n            [-2, -2],\n            [-3, -2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-3, -1],\n            [-3, 0],\n            [-2, 0],\n            [-2, -1],\n            [-3, -1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-3, 0],\n            [-3, 1],\n            [-2, 1],\n            [-2, 0],\n            [-3, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-3, 1],\n            [-3, 2],\n            [-2, 2],\n            [-2, 1],\n            [-3, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-3, 2],\n            [-3, 3],\n            [-2, 3],\n            [-2, 2],\n            [-3, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-3, 3],\n            [-3, 4],\n            [-2, 4],\n            [-2, 3],\n            [-3, 3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-3, 4],\n            [-3, 5],\n            [-2, 5],\n            [-2, 4],\n            [-3, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-2, -5],\n            [-2, -4],\n            [-1, -4],\n            [-1, -5],\n            [-2, -5]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-2, -4],\n            [-2, -3],\n            [-1, -3],\n            [-1, -4],\n            [-2, -4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-2, -3],\n            [-2, -2],\n            [-1, -2],\n            [-1, -3],\n            [-2, -3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-2, -2],\n            [-2, -1],\n            [-1, -1],\n            [-1, -2],\n            [-2, -2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-2, -1],\n            [-2, 0],\n            [-1, 0],\n            [-1, -1],\n            [-2, -1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-2, 0],\n            [-2, 1],\n            [-1, 1],\n            [-1, 0],\n            [-2, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-2, 1],\n            [-2, 2],\n            [-1, 2],\n            [-1, 1],\n            [-2, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-2, 2],\n            [-2, 3],\n            [-1, 3],\n            [-1, 2],\n            [-2, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-2, 3],\n            [-2, 4],\n            [-1, 4],\n            [-1, 3],\n            [-2, 3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-2, 4],\n            [-2, 5],\n            [-1, 5],\n            [-1, 4],\n            [-2, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, -5],\n            [-1, -4],\n            [0, -4],\n            [0, -5],\n            [-1, -5]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, -4],\n            [-1, -3],\n            [0, -3],\n            [0, -4],\n            [-1, -4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, -3],\n            [-1, -2],\n            [0, -2],\n            [0, -3],\n            [-1, -3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, -2],\n            [-1, -1],\n            [0, -1],\n            [0, -2],\n            [-1, -2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, -1],\n            [-1, 0],\n            [0, 0],\n            [0, -1],\n            [-1, -1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 0],\n            [-1, 1],\n            [0, 1],\n            [0, 0],\n            [-1, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 1],\n            [-1, 2],\n            [0, 2],\n            [0, 1],\n            [-1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 2],\n            [-1, 3],\n            [0, 3],\n            [0, 2],\n            [-1, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 3],\n            [-1, 4],\n            [0, 4],\n            [0, 3],\n            [-1, 3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-1, 4],\n            [-1, 5],\n            [0, 5],\n            [0, 4],\n            [-1, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, -5],\n            [0, -4],\n            [1, -4],\n            [1, -5],\n            [0, -5]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, -4],\n            [0, -3],\n            [1, -3],\n            [1, -4],\n            [0, -4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, -3],\n            [0, -2],\n            [1, -2],\n            [1, -3],\n            [0, -3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, -2],\n            [0, -1],\n            [1, -1],\n            [1, -2],\n            [0, -2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, -1],\n            [0, 0],\n            [1, 0],\n            [1, -1],\n            [0, -1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [0, 1],\n            [1, 1],\n            [1, 0],\n            [0, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 1],\n            [0, 2],\n            [1, 2],\n            [1, 1],\n            [0, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 2],\n            [0, 3],\n            [1, 3],\n            [1, 2],\n            [0, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 3],\n            [0, 4],\n            [1, 4],\n            [1, 3],\n            [0, 3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 4],\n            [0, 5],\n            [1, 5],\n            [1, 4],\n            [0, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, -5],\n            [1, -4],\n            [2, -4],\n            [2, -5],\n            [1, -5]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, -4],\n            [1, -3],\n            [2, -3],\n            [2, -4],\n            [1, -4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, -3],\n            [1, -2],\n            [2, -2],\n            [2, -3],\n            [1, -3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, -2],\n            [1, -1],\n            [2, -1],\n            [2, -2],\n            [1, -2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, -1],\n            [1, 0],\n            [2, 0],\n            [2, -1],\n            [1, -1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 0],\n            [1, 1],\n            [2, 1],\n            [2, 0],\n            [1, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [1, 2],\n            [2, 2],\n            [2, 1],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 2],\n            [1, 3],\n            [2, 3],\n            [2, 2],\n            [1, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 3],\n            [1, 4],\n            [2, 4],\n            [2, 3],\n            [1, 3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 4],\n            [1, 5],\n            [2, 5],\n            [2, 4],\n            [1, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2, -5],\n            [2, -4],\n            [3, -4],\n            [3, -5],\n            [2, -5]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2, -4],\n            [2, -3],\n            [3, -3],\n            [3, -4],\n            [2, -4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2, -3],\n            [2, -2],\n            [3, -2],\n            [3, -3],\n            [2, -3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2, -2],\n            [2, -1],\n            [3, -1],\n            [3, -2],\n            [2, -2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2, -1],\n            [2, 0],\n            [3, 0],\n            [3, -1],\n            [2, -1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2, 0],\n            [2, 1],\n            [3, 1],\n            [3, 0],\n            [2, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2, 1],\n            [2, 2],\n            [3, 2],\n            [3, 1],\n            [2, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2, 2],\n            [2, 3],\n            [3, 3],\n            [3, 2],\n            [2, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2, 3],\n            [2, 4],\n            [3, 4],\n            [3, 3],\n            [2, 3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2, 4],\n            [2, 5],\n            [3, 5],\n            [3, 4],\n            [2, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [3, -5],\n            [3, -4],\n            [4, -4],\n            [4, -5],\n            [3, -5]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [3, -4],\n            [3, -3],\n            [4, -3],\n            [4, -4],\n            [3, -4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [3, -3],\n            [3, -2],\n            [4, -2],\n            [4, -3],\n            [3, -3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [3, -2],\n            [3, -1],\n            [4, -1],\n            [4, -2],\n            [3, -2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [3, -1],\n            [3, 0],\n            [4, 0],\n            [4, -1],\n            [3, -1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [3, 0],\n            [3, 1],\n            [4, 1],\n            [4, 0],\n            [3, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [3, 1],\n            [3, 2],\n            [4, 2],\n            [4, 1],\n            [3, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [3, 2],\n            [3, 3],\n            [4, 3],\n            [4, 2],\n            [3, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [3, 3],\n            [3, 4],\n            [4, 4],\n            [4, 3],\n            [3, 3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [3, 4],\n            [3, 5],\n            [4, 5],\n            [4, 4],\n            [3, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4, -5],\n            [4, -4],\n            [5, -4],\n            [5, -5],\n            [4, -5]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4, -4],\n            [4, -3],\n            [5, -3],\n            [5, -4],\n            [4, -4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4, -3],\n            [4, -2],\n            [5, -2],\n            [5, -3],\n            [4, -3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4, -2],\n            [4, -1],\n            [5, -1],\n            [5, -2],\n            [4, -2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4, -1],\n            [4, 0],\n            [5, 0],\n            [5, -1],\n            [4, -1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4, 0],\n            [4, 1],\n            [5, 1],\n            [5, 0],\n            [4, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4, 1],\n            [4, 2],\n            [5, 2],\n            [5, 1],\n            [4, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4, 2],\n            [4, 3],\n            [5, 3],\n            [5, 2],\n            [4, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4, 3],\n            [4, 4],\n            [5, 4],\n            [5, 3],\n            [4, 3]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4, 4],\n            [4, 5],\n            [5, 5],\n            [5, 4],\n            [4, 4]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-5.1, -5.1, 5.1, 5.1],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-5.1, -5.1],\n            [5.1, -5.1],\n            [5.1, 5.1],\n            [-5.1, 5.1],\n            [-5.1, -5.1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rectangle-grid/test/out/australia-mask.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114, -34],\n            [114, -32],\n            [115, -32],\n            [115, -34],\n            [114, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114, -32],\n            [114, -30],\n            [115, -30],\n            [115, -32],\n            [114, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114, -30],\n            [114, -28],\n            [115, -28],\n            [115, -30],\n            [114, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114, -28],\n            [114, -26],\n            [115, -26],\n            [115, -28],\n            [114, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114, -26],\n            [114, -24],\n            [115, -24],\n            [115, -26],\n            [114, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114, -24],\n            [114, -22],\n            [115, -22],\n            [115, -24],\n            [114, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [114, -22],\n            [114, -20],\n            [115, -20],\n            [115, -22],\n            [114, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [115, -36],\n            [115, -34],\n            [116, -34],\n            [116, -36],\n            [115, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [115, -34],\n            [115, -32],\n            [116, -32],\n            [116, -34],\n            [115, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [115, -32],\n            [115, -30],\n            [116, -30],\n            [116, -32],\n            [115, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [115, -30],\n            [115, -28],\n            [116, -28],\n            [116, -30],\n            [115, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [115, -28],\n            [115, -26],\n            [116, -26],\n            [116, -28],\n            [115, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [115, -26],\n            [115, -24],\n            [116, -24],\n            [116, -26],\n            [115, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [115, -24],\n            [115, -22],\n            [116, -22],\n            [116, -24],\n            [115, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [115, -22],\n            [115, -20],\n            [116, -20],\n            [116, -22],\n            [115, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [116, -36],\n            [116, -34],\n            [117, -34],\n            [117, -36],\n            [116, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [116, -34],\n            [116, -32],\n            [117, -32],\n            [117, -34],\n            [116, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [116, -32],\n            [116, -30],\n            [117, -30],\n            [117, -32],\n            [116, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [116, -30],\n            [116, -28],\n            [117, -28],\n            [117, -30],\n            [116, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [116, -28],\n            [116, -26],\n            [117, -26],\n            [117, -28],\n            [116, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [116, -26],\n            [116, -24],\n            [117, -24],\n            [117, -26],\n            [116, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [116, -24],\n            [116, -22],\n            [117, -22],\n            [117, -24],\n            [116, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [116, -22],\n            [116, -20],\n            [117, -20],\n            [117, -22],\n            [116, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [117, -36],\n            [117, -34],\n            [118, -34],\n            [118, -36],\n            [117, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [117, -34],\n            [117, -32],\n            [118, -32],\n            [118, -34],\n            [117, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [117, -32],\n            [117, -30],\n            [118, -30],\n            [118, -32],\n            [117, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [117, -30],\n            [117, -28],\n            [118, -28],\n            [118, -30],\n            [117, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [117, -28],\n            [117, -26],\n            [118, -26],\n            [118, -28],\n            [117, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [117, -26],\n            [117, -24],\n            [118, -24],\n            [118, -26],\n            [117, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [117, -24],\n            [117, -22],\n            [118, -22],\n            [118, -24],\n            [117, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [117, -22],\n            [117, -20],\n            [118, -20],\n            [118, -22],\n            [117, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [118, -36],\n            [118, -34],\n            [119, -34],\n            [119, -36],\n            [118, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [118, -34],\n            [118, -32],\n            [119, -32],\n            [119, -34],\n            [118, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [118, -32],\n            [118, -30],\n            [119, -30],\n            [119, -32],\n            [118, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [118, -30],\n            [118, -28],\n            [119, -28],\n            [119, -30],\n            [118, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [118, -28],\n            [118, -26],\n            [119, -26],\n            [119, -28],\n            [118, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [118, -26],\n            [118, -24],\n            [119, -24],\n            [119, -26],\n            [118, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [118, -24],\n            [118, -22],\n            [119, -22],\n            [119, -24],\n            [118, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [118, -22],\n            [118, -20],\n            [119, -20],\n            [119, -22],\n            [118, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [119, -36],\n            [119, -34],\n            [120, -34],\n            [120, -36],\n            [119, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [119, -34],\n            [119, -32],\n            [120, -32],\n            [120, -34],\n            [119, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [119, -32],\n            [119, -30],\n            [120, -30],\n            [120, -32],\n            [119, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [119, -30],\n            [119, -28],\n            [120, -28],\n            [120, -30],\n            [119, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [119, -28],\n            [119, -26],\n            [120, -26],\n            [120, -28],\n            [119, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [119, -26],\n            [119, -24],\n            [120, -24],\n            [120, -26],\n            [119, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [119, -24],\n            [119, -22],\n            [120, -22],\n            [120, -24],\n            [119, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [119, -22],\n            [119, -20],\n            [120, -20],\n            [120, -22],\n            [119, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [119, -20],\n            [119, -18],\n            [120, -18],\n            [120, -20],\n            [119, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, -36],\n            [120, -34],\n            [121, -34],\n            [121, -36],\n            [120, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, -34],\n            [120, -32],\n            [121, -32],\n            [121, -34],\n            [120, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, -32],\n            [120, -30],\n            [121, -30],\n            [121, -32],\n            [120, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, -30],\n            [120, -28],\n            [121, -28],\n            [121, -30],\n            [120, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, -28],\n            [120, -26],\n            [121, -26],\n            [121, -28],\n            [120, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, -26],\n            [120, -24],\n            [121, -24],\n            [121, -26],\n            [120, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, -24],\n            [120, -22],\n            [121, -22],\n            [121, -24],\n            [120, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, -22],\n            [120, -20],\n            [121, -20],\n            [121, -22],\n            [120, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, -20],\n            [120, -18],\n            [121, -18],\n            [121, -20],\n            [120, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121, -36],\n            [121, -34],\n            [122, -34],\n            [122, -36],\n            [121, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121, -34],\n            [121, -32],\n            [122, -32],\n            [122, -34],\n            [121, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121, -32],\n            [121, -30],\n            [122, -30],\n            [122, -32],\n            [121, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121, -30],\n            [121, -28],\n            [122, -28],\n            [122, -30],\n            [121, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121, -28],\n            [121, -26],\n            [122, -26],\n            [122, -28],\n            [121, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121, -26],\n            [121, -24],\n            [122, -24],\n            [122, -26],\n            [121, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121, -24],\n            [121, -22],\n            [122, -22],\n            [122, -24],\n            [121, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121, -22],\n            [121, -20],\n            [122, -20],\n            [122, -22],\n            [121, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121, -20],\n            [121, -18],\n            [122, -18],\n            [122, -20],\n            [121, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122, -36],\n            [122, -34],\n            [123, -34],\n            [123, -36],\n            [122, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122, -34],\n            [122, -32],\n            [123, -32],\n            [123, -34],\n            [122, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122, -32],\n            [122, -30],\n            [123, -30],\n            [123, -32],\n            [122, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122, -30],\n            [122, -28],\n            [123, -28],\n            [123, -30],\n            [122, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122, -28],\n            [122, -26],\n            [123, -26],\n            [123, -28],\n            [122, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122, -26],\n            [122, -24],\n            [123, -24],\n            [123, -26],\n            [122, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122, -24],\n            [122, -22],\n            [123, -22],\n            [123, -24],\n            [122, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122, -22],\n            [122, -20],\n            [123, -20],\n            [123, -22],\n            [122, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122, -20],\n            [122, -18],\n            [123, -18],\n            [123, -20],\n            [122, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122, -18],\n            [122, -16],\n            [123, -16],\n            [123, -18],\n            [122, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [123, -36],\n            [123, -34],\n            [124, -34],\n            [124, -36],\n            [123, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [123, -34],\n            [123, -32],\n            [124, -32],\n            [124, -34],\n            [123, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [123, -32],\n            [123, -30],\n            [124, -30],\n            [124, -32],\n            [123, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [123, -30],\n            [123, -28],\n            [124, -28],\n            [124, -30],\n            [123, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [123, -28],\n            [123, -26],\n            [124, -26],\n            [124, -28],\n            [123, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [123, -26],\n            [123, -24],\n            [124, -24],\n            [124, -26],\n            [123, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [123, -24],\n            [123, -22],\n            [124, -22],\n            [124, -24],\n            [123, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [123, -22],\n            [123, -20],\n            [124, -20],\n            [124, -22],\n            [123, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [123, -20],\n            [123, -18],\n            [124, -18],\n            [124, -20],\n            [123, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [123, -18],\n            [123, -16],\n            [124, -16],\n            [124, -18],\n            [123, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [124, -34],\n            [124, -32],\n            [125, -32],\n            [125, -34],\n            [124, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [124, -32],\n            [124, -30],\n            [125, -30],\n            [125, -32],\n            [124, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [124, -30],\n            [124, -28],\n            [125, -28],\n            [125, -30],\n            [124, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [124, -28],\n            [124, -26],\n            [125, -26],\n            [125, -28],\n            [124, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [124, -26],\n            [124, -24],\n            [125, -24],\n            [125, -26],\n            [124, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [124, -24],\n            [124, -22],\n            [125, -22],\n            [125, -24],\n            [124, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [124, -22],\n            [124, -20],\n            [125, -20],\n            [125, -22],\n            [124, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [124, -20],\n            [124, -18],\n            [125, -18],\n            [125, -20],\n            [124, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [124, -18],\n            [124, -16],\n            [125, -16],\n            [125, -18],\n            [124, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [124, -16],\n            [124, -14],\n            [125, -14],\n            [125, -16],\n            [124, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [125, -34],\n            [125, -32],\n            [126, -32],\n            [126, -34],\n            [125, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [125, -32],\n            [125, -30],\n            [126, -30],\n            [126, -32],\n            [125, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [125, -30],\n            [125, -28],\n            [126, -28],\n            [126, -30],\n            [125, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [125, -28],\n            [125, -26],\n            [126, -26],\n            [126, -28],\n            [125, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [125, -26],\n            [125, -24],\n            [126, -24],\n            [126, -26],\n            [125, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [125, -24],\n            [125, -22],\n            [126, -22],\n            [126, -24],\n            [125, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [125, -22],\n            [125, -20],\n            [126, -20],\n            [126, -22],\n            [125, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [125, -20],\n            [125, -18],\n            [126, -18],\n            [126, -20],\n            [125, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [125, -18],\n            [125, -16],\n            [126, -16],\n            [126, -18],\n            [125, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [125, -16],\n            [125, -14],\n            [126, -14],\n            [126, -16],\n            [125, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126, -34],\n            [126, -32],\n            [127, -32],\n            [127, -34],\n            [126, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126, -32],\n            [126, -30],\n            [127, -30],\n            [127, -32],\n            [126, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126, -30],\n            [126, -28],\n            [127, -28],\n            [127, -30],\n            [126, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126, -28],\n            [126, -26],\n            [127, -26],\n            [127, -28],\n            [126, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126, -26],\n            [126, -24],\n            [127, -24],\n            [127, -26],\n            [126, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126, -24],\n            [126, -22],\n            [127, -22],\n            [127, -24],\n            [126, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126, -22],\n            [126, -20],\n            [127, -20],\n            [127, -22],\n            [126, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126, -20],\n            [126, -18],\n            [127, -18],\n            [127, -20],\n            [126, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126, -18],\n            [126, -16],\n            [127, -16],\n            [127, -18],\n            [126, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126, -16],\n            [126, -14],\n            [127, -14],\n            [127, -16],\n            [126, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127, -34],\n            [127, -32],\n            [128, -32],\n            [128, -34],\n            [127, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127, -32],\n            [127, -30],\n            [128, -30],\n            [128, -32],\n            [127, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127, -30],\n            [127, -28],\n            [128, -28],\n            [128, -30],\n            [127, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127, -28],\n            [127, -26],\n            [128, -26],\n            [128, -28],\n            [127, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127, -26],\n            [127, -24],\n            [128, -24],\n            [128, -26],\n            [127, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127, -24],\n            [127, -22],\n            [128, -22],\n            [128, -24],\n            [127, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127, -22],\n            [127, -20],\n            [128, -20],\n            [128, -22],\n            [127, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127, -20],\n            [127, -18],\n            [128, -18],\n            [128, -20],\n            [127, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127, -18],\n            [127, -16],\n            [128, -16],\n            [128, -18],\n            [127, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [127, -16],\n            [127, -14],\n            [128, -14],\n            [128, -16],\n            [127, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128, -32],\n            [128, -30],\n            [129, -30],\n            [129, -32],\n            [128, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128, -30],\n            [128, -28],\n            [129, -28],\n            [129, -30],\n            [128, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128, -28],\n            [128, -26],\n            [129, -26],\n            [129, -28],\n            [128, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128, -26],\n            [128, -24],\n            [129, -24],\n            [129, -26],\n            [128, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128, -24],\n            [128, -22],\n            [129, -22],\n            [129, -24],\n            [128, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128, -22],\n            [128, -20],\n            [129, -20],\n            [129, -22],\n            [128, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128, -20],\n            [128, -18],\n            [129, -18],\n            [129, -20],\n            [128, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128, -18],\n            [128, -16],\n            [129, -16],\n            [129, -18],\n            [128, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128, -16],\n            [128, -14],\n            [129, -14],\n            [129, -16],\n            [128, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [129, -32],\n            [129, -30],\n            [130, -30],\n            [130, -32],\n            [129, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [129, -30],\n            [129, -28],\n            [130, -28],\n            [130, -30],\n            [129, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [129, -28],\n            [129, -26],\n            [130, -26],\n            [130, -28],\n            [129, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [129, -26],\n            [129, -24],\n            [130, -24],\n            [130, -26],\n            [129, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [129, -24],\n            [129, -22],\n            [130, -22],\n            [130, -24],\n            [129, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [129, -22],\n            [129, -20],\n            [130, -20],\n            [130, -22],\n            [129, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [129, -20],\n            [129, -18],\n            [130, -18],\n            [130, -20],\n            [129, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [129, -18],\n            [129, -16],\n            [130, -16],\n            [130, -18],\n            [129, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [129, -16],\n            [129, -14],\n            [130, -14],\n            [130, -16],\n            [129, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [129, -14],\n            [129, -12],\n            [130, -12],\n            [130, -14],\n            [129, -14]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -32],\n            [130, -30],\n            [131, -30],\n            [131, -32],\n            [130, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -30],\n            [130, -28],\n            [131, -28],\n            [131, -30],\n            [130, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -28],\n            [130, -26],\n            [131, -26],\n            [131, -28],\n            [130, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -26],\n            [130, -24],\n            [131, -24],\n            [131, -26],\n            [130, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -24],\n            [130, -22],\n            [131, -22],\n            [131, -24],\n            [130, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -22],\n            [130, -20],\n            [131, -20],\n            [131, -22],\n            [130, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -20],\n            [130, -18],\n            [131, -18],\n            [131, -20],\n            [130, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -18],\n            [130, -16],\n            [131, -16],\n            [131, -18],\n            [130, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -16],\n            [130, -14],\n            [131, -14],\n            [131, -16],\n            [130, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -14],\n            [130, -12],\n            [131, -12],\n            [131, -14],\n            [130, -14]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -12],\n            [130, -10],\n            [131, -10],\n            [131, -12],\n            [130, -12]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [131, -32],\n            [131, -30],\n            [132, -30],\n            [132, -32],\n            [131, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [131, -30],\n            [131, -28],\n            [132, -28],\n            [132, -30],\n            [131, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [131, -28],\n            [131, -26],\n            [132, -26],\n            [132, -28],\n            [131, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [131, -26],\n            [131, -24],\n            [132, -24],\n            [132, -26],\n            [131, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [131, -24],\n            [131, -22],\n            [132, -22],\n            [132, -24],\n            [131, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [131, -22],\n            [131, -20],\n            [132, -20],\n            [132, -22],\n            [131, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [131, -20],\n            [131, -18],\n            [132, -18],\n            [132, -20],\n            [131, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [131, -18],\n            [131, -16],\n            [132, -16],\n            [132, -18],\n            [131, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [131, -16],\n            [131, -14],\n            [132, -14],\n            [132, -16],\n            [131, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [131, -14],\n            [131, -12],\n            [132, -12],\n            [132, -14],\n            [131, -14]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [131, -12],\n            [131, -10],\n            [132, -10],\n            [132, -12],\n            [131, -12]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [132, -34],\n            [132, -32],\n            [133, -32],\n            [133, -34],\n            [132, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [132, -32],\n            [132, -30],\n            [133, -30],\n            [133, -32],\n            [132, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [132, -30],\n            [132, -28],\n            [133, -28],\n            [133, -30],\n            [132, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [132, -28],\n            [132, -26],\n            [133, -26],\n            [133, -28],\n            [132, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [132, -26],\n            [132, -24],\n            [133, -24],\n            [133, -26],\n            [132, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [132, -24],\n            [132, -22],\n            [133, -22],\n            [133, -24],\n            [132, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [132, -22],\n            [132, -20],\n            [133, -20],\n            [133, -22],\n            [132, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [132, -20],\n            [132, -18],\n            [133, -18],\n            [133, -20],\n            [132, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [132, -18],\n            [132, -16],\n            [133, -16],\n            [133, -18],\n            [132, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [132, -16],\n            [132, -14],\n            [133, -14],\n            [133, -16],\n            [132, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [132, -14],\n            [132, -12],\n            [133, -12],\n            [133, -14],\n            [132, -14]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [132, -12],\n            [132, -10],\n            [133, -10],\n            [133, -12],\n            [132, -12]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [133, -34],\n            [133, -32],\n            [134, -32],\n            [134, -34],\n            [133, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [133, -32],\n            [133, -30],\n            [134, -30],\n            [134, -32],\n            [133, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [133, -30],\n            [133, -28],\n            [134, -28],\n            [134, -30],\n            [133, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [133, -28],\n            [133, -26],\n            [134, -26],\n            [134, -28],\n            [133, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [133, -26],\n            [133, -24],\n            [134, -24],\n            [134, -26],\n            [133, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [133, -24],\n            [133, -22],\n            [134, -22],\n            [134, -24],\n            [133, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [133, -22],\n            [133, -20],\n            [134, -20],\n            [134, -22],\n            [133, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [133, -20],\n            [133, -18],\n            [134, -18],\n            [134, -20],\n            [133, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [133, -18],\n            [133, -16],\n            [134, -16],\n            [134, -18],\n            [133, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [133, -16],\n            [133, -14],\n            [134, -14],\n            [134, -16],\n            [133, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [133, -14],\n            [133, -12],\n            [134, -12],\n            [134, -14],\n            [133, -14]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [133, -12],\n            [133, -10],\n            [134, -10],\n            [134, -12],\n            [133, -12]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [134, -36],\n            [134, -34],\n            [135, -34],\n            [135, -36],\n            [134, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [134, -34],\n            [134, -32],\n            [135, -32],\n            [135, -34],\n            [134, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [134, -32],\n            [134, -30],\n            [135, -30],\n            [135, -32],\n            [134, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [134, -30],\n            [134, -28],\n            [135, -28],\n            [135, -30],\n            [134, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [134, -28],\n            [134, -26],\n            [135, -26],\n            [135, -28],\n            [134, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [134, -26],\n            [134, -24],\n            [135, -24],\n            [135, -26],\n            [134, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [134, -24],\n            [134, -22],\n            [135, -22],\n            [135, -24],\n            [134, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [134, -22],\n            [134, -20],\n            [135, -20],\n            [135, -22],\n            [134, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [134, -20],\n            [134, -18],\n            [135, -18],\n            [135, -20],\n            [134, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [134, -18],\n            [134, -16],\n            [135, -16],\n            [135, -18],\n            [134, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [134, -16],\n            [134, -14],\n            [135, -14],\n            [135, -16],\n            [134, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [134, -14],\n            [134, -12],\n            [135, -12],\n            [135, -14],\n            [134, -14]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [134, -12],\n            [134, -10],\n            [135, -10],\n            [135, -12],\n            [134, -12]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [135, -36],\n            [135, -34],\n            [136, -34],\n            [136, -36],\n            [135, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [135, -34],\n            [135, -32],\n            [136, -32],\n            [136, -34],\n            [135, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [135, -32],\n            [135, -30],\n            [136, -30],\n            [136, -32],\n            [135, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [135, -30],\n            [135, -28],\n            [136, -28],\n            [136, -30],\n            [135, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [135, -28],\n            [135, -26],\n            [136, -26],\n            [136, -28],\n            [135, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [135, -26],\n            [135, -24],\n            [136, -24],\n            [136, -26],\n            [135, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [135, -24],\n            [135, -22],\n            [136, -22],\n            [136, -24],\n            [135, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [135, -22],\n            [135, -20],\n            [136, -20],\n            [136, -22],\n            [135, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [135, -20],\n            [135, -18],\n            [136, -18],\n            [136, -20],\n            [135, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [135, -18],\n            [135, -16],\n            [136, -16],\n            [136, -18],\n            [135, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [135, -16],\n            [135, -14],\n            [136, -14],\n            [136, -16],\n            [135, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [135, -14],\n            [135, -12],\n            [136, -12],\n            [136, -14],\n            [135, -14]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [135, -12],\n            [135, -10],\n            [136, -10],\n            [136, -12],\n            [135, -12]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [136, -36],\n            [136, -34],\n            [137, -34],\n            [137, -36],\n            [136, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [136, -34],\n            [136, -32],\n            [137, -32],\n            [137, -34],\n            [136, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [136, -32],\n            [136, -30],\n            [137, -30],\n            [137, -32],\n            [136, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [136, -30],\n            [136, -28],\n            [137, -28],\n            [137, -30],\n            [136, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [136, -28],\n            [136, -26],\n            [137, -26],\n            [137, -28],\n            [136, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [136, -26],\n            [136, -24],\n            [137, -24],\n            [137, -26],\n            [136, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [136, -24],\n            [136, -22],\n            [137, -22],\n            [137, -24],\n            [136, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [136, -22],\n            [136, -20],\n            [137, -20],\n            [137, -22],\n            [136, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [136, -20],\n            [136, -18],\n            [137, -18],\n            [137, -20],\n            [136, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [136, -18],\n            [136, -16],\n            [137, -16],\n            [137, -18],\n            [136, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [136, -16],\n            [136, -14],\n            [137, -14],\n            [137, -16],\n            [136, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [136, -14],\n            [136, -12],\n            [137, -12],\n            [137, -14],\n            [136, -14]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [136, -12],\n            [136, -10],\n            [137, -10],\n            [137, -12],\n            [136, -12]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [137, -36],\n            [137, -34],\n            [138, -34],\n            [138, -36],\n            [137, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [137, -34],\n            [137, -32],\n            [138, -32],\n            [138, -34],\n            [137, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [137, -32],\n            [137, -30],\n            [138, -30],\n            [138, -32],\n            [137, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [137, -30],\n            [137, -28],\n            [138, -28],\n            [138, -30],\n            [137, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [137, -28],\n            [137, -26],\n            [138, -26],\n            [138, -28],\n            [137, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [137, -26],\n            [137, -24],\n            [138, -24],\n            [138, -26],\n            [137, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [137, -24],\n            [137, -22],\n            [138, -22],\n            [138, -24],\n            [137, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [137, -22],\n            [137, -20],\n            [138, -20],\n            [138, -22],\n            [137, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [137, -20],\n            [137, -18],\n            [138, -18],\n            [138, -20],\n            [137, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [137, -18],\n            [137, -16],\n            [138, -16],\n            [138, -18],\n            [137, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [137, -16],\n            [137, -14],\n            [138, -14],\n            [138, -16],\n            [137, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [137, -14],\n            [137, -12],\n            [138, -12],\n            [138, -14],\n            [137, -14]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [137, -12],\n            [137, -10],\n            [138, -10],\n            [138, -12],\n            [137, -12]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [138, -36],\n            [138, -34],\n            [139, -34],\n            [139, -36],\n            [138, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [138, -34],\n            [138, -32],\n            [139, -32],\n            [139, -34],\n            [138, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [138, -32],\n            [138, -30],\n            [139, -30],\n            [139, -32],\n            [138, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [138, -30],\n            [138, -28],\n            [139, -28],\n            [139, -30],\n            [138, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [138, -28],\n            [138, -26],\n            [139, -26],\n            [139, -28],\n            [138, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [138, -26],\n            [138, -24],\n            [139, -24],\n            [139, -26],\n            [138, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [138, -24],\n            [138, -22],\n            [139, -22],\n            [139, -24],\n            [138, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [138, -22],\n            [138, -20],\n            [139, -20],\n            [139, -22],\n            [138, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [138, -20],\n            [138, -18],\n            [139, -18],\n            [139, -20],\n            [138, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [138, -18],\n            [138, -16],\n            [139, -16],\n            [139, -18],\n            [138, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [139, -38],\n            [139, -36],\n            [140, -36],\n            [140, -38],\n            [139, -38]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [139, -36],\n            [139, -34],\n            [140, -34],\n            [140, -36],\n            [139, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [139, -34],\n            [139, -32],\n            [140, -32],\n            [140, -34],\n            [139, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [139, -32],\n            [139, -30],\n            [140, -30],\n            [140, -32],\n            [139, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [139, -30],\n            [139, -28],\n            [140, -28],\n            [140, -30],\n            [139, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [139, -28],\n            [139, -26],\n            [140, -26],\n            [140, -28],\n            [139, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [139, -26],\n            [139, -24],\n            [140, -24],\n            [140, -26],\n            [139, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [139, -24],\n            [139, -22],\n            [140, -22],\n            [140, -24],\n            [139, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [139, -22],\n            [139, -20],\n            [140, -20],\n            [140, -22],\n            [139, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [139, -20],\n            [139, -18],\n            [140, -18],\n            [140, -20],\n            [139, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [139, -18],\n            [139, -16],\n            [140, -16],\n            [140, -18],\n            [139, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -38],\n            [140, -36],\n            [141, -36],\n            [141, -38],\n            [140, -38]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -36],\n            [140, -34],\n            [141, -34],\n            [141, -36],\n            [140, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -34],\n            [140, -32],\n            [141, -32],\n            [141, -34],\n            [140, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -32],\n            [140, -30],\n            [141, -30],\n            [141, -32],\n            [140, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -30],\n            [140, -28],\n            [141, -28],\n            [141, -30],\n            [140, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -28],\n            [140, -26],\n            [141, -26],\n            [141, -28],\n            [140, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -26],\n            [140, -24],\n            [141, -24],\n            [141, -26],\n            [140, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -24],\n            [140, -22],\n            [141, -22],\n            [141, -24],\n            [140, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -22],\n            [140, -20],\n            [141, -20],\n            [141, -22],\n            [140, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -20],\n            [140, -18],\n            [141, -18],\n            [141, -20],\n            [140, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -18],\n            [140, -16],\n            [141, -16],\n            [141, -18],\n            [140, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -16],\n            [140, -14],\n            [141, -14],\n            [141, -16],\n            [140, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141, -40],\n            [141, -38],\n            [142, -38],\n            [142, -40],\n            [141, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141, -38],\n            [141, -36],\n            [142, -36],\n            [142, -38],\n            [141, -38]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141, -36],\n            [141, -34],\n            [142, -34],\n            [142, -36],\n            [141, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141, -34],\n            [141, -32],\n            [142, -32],\n            [142, -34],\n            [141, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141, -32],\n            [141, -30],\n            [142, -30],\n            [142, -32],\n            [141, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141, -30],\n            [141, -28],\n            [142, -28],\n            [142, -30],\n            [141, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141, -28],\n            [141, -26],\n            [142, -26],\n            [142, -28],\n            [141, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141, -26],\n            [141, -24],\n            [142, -24],\n            [142, -26],\n            [141, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141, -24],\n            [141, -22],\n            [142, -22],\n            [142, -24],\n            [141, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141, -22],\n            [141, -20],\n            [142, -20],\n            [142, -22],\n            [141, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141, -20],\n            [141, -18],\n            [142, -18],\n            [142, -20],\n            [141, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141, -18],\n            [141, -16],\n            [142, -16],\n            [142, -18],\n            [141, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141, -16],\n            [141, -14],\n            [142, -14],\n            [142, -16],\n            [141, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141, -14],\n            [141, -12],\n            [142, -12],\n            [142, -14],\n            [141, -14]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141, -12],\n            [141, -10],\n            [142, -10],\n            [142, -12],\n            [141, -12]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142, -40],\n            [142, -38],\n            [143, -38],\n            [143, -40],\n            [142, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142, -38],\n            [142, -36],\n            [143, -36],\n            [143, -38],\n            [142, -38]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142, -36],\n            [142, -34],\n            [143, -34],\n            [143, -36],\n            [142, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142, -34],\n            [142, -32],\n            [143, -32],\n            [143, -34],\n            [142, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142, -32],\n            [142, -30],\n            [143, -30],\n            [143, -32],\n            [142, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142, -30],\n            [142, -28],\n            [143, -28],\n            [143, -30],\n            [142, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142, -28],\n            [142, -26],\n            [143, -26],\n            [143, -28],\n            [142, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142, -26],\n            [142, -24],\n            [143, -24],\n            [143, -26],\n            [142, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142, -24],\n            [142, -22],\n            [143, -22],\n            [143, -24],\n            [142, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142, -22],\n            [142, -20],\n            [143, -20],\n            [143, -22],\n            [142, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142, -20],\n            [142, -18],\n            [143, -18],\n            [143, -20],\n            [142, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142, -18],\n            [142, -16],\n            [143, -16],\n            [143, -18],\n            [142, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142, -16],\n            [142, -14],\n            [143, -14],\n            [143, -16],\n            [142, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142, -14],\n            [142, -12],\n            [143, -12],\n            [143, -14],\n            [142, -14]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142, -12],\n            [142, -10],\n            [143, -10],\n            [143, -12],\n            [142, -12]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143, -40],\n            [143, -38],\n            [144, -38],\n            [144, -40],\n            [143, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143, -38],\n            [143, -36],\n            [144, -36],\n            [144, -38],\n            [143, -38]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143, -36],\n            [143, -34],\n            [144, -34],\n            [144, -36],\n            [143, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143, -34],\n            [143, -32],\n            [144, -32],\n            [144, -34],\n            [143, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143, -32],\n            [143, -30],\n            [144, -30],\n            [144, -32],\n            [143, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143, -30],\n            [143, -28],\n            [144, -28],\n            [144, -30],\n            [143, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143, -28],\n            [143, -26],\n            [144, -26],\n            [144, -28],\n            [143, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143, -26],\n            [143, -24],\n            [144, -24],\n            [144, -26],\n            [143, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143, -24],\n            [143, -22],\n            [144, -22],\n            [144, -24],\n            [143, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143, -22],\n            [143, -20],\n            [144, -20],\n            [144, -22],\n            [143, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143, -20],\n            [143, -18],\n            [144, -18],\n            [144, -20],\n            [143, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143, -18],\n            [143, -16],\n            [144, -16],\n            [144, -18],\n            [143, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143, -16],\n            [143, -14],\n            [144, -14],\n            [144, -16],\n            [143, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143, -14],\n            [143, -12],\n            [144, -12],\n            [144, -14],\n            [143, -14]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143, -12],\n            [143, -10],\n            [144, -10],\n            [144, -12],\n            [143, -12]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144, -40],\n            [144, -38],\n            [145, -38],\n            [145, -40],\n            [144, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144, -38],\n            [144, -36],\n            [145, -36],\n            [145, -38],\n            [144, -38]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144, -36],\n            [144, -34],\n            [145, -34],\n            [145, -36],\n            [144, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144, -34],\n            [144, -32],\n            [145, -32],\n            [145, -34],\n            [144, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144, -32],\n            [144, -30],\n            [145, -30],\n            [145, -32],\n            [144, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144, -30],\n            [144, -28],\n            [145, -28],\n            [145, -30],\n            [144, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144, -28],\n            [144, -26],\n            [145, -26],\n            [145, -28],\n            [144, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144, -26],\n            [144, -24],\n            [145, -24],\n            [145, -26],\n            [144, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144, -24],\n            [144, -22],\n            [145, -22],\n            [145, -24],\n            [144, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144, -22],\n            [144, -20],\n            [145, -20],\n            [145, -22],\n            [144, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144, -20],\n            [144, -18],\n            [145, -18],\n            [145, -20],\n            [144, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144, -18],\n            [144, -16],\n            [145, -16],\n            [145, -18],\n            [144, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144, -16],\n            [144, -14],\n            [145, -14],\n            [145, -16],\n            [144, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144, -14],\n            [144, -12],\n            [145, -12],\n            [145, -14],\n            [144, -14]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145, -40],\n            [145, -38],\n            [146, -38],\n            [146, -40],\n            [145, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145, -38],\n            [145, -36],\n            [146, -36],\n            [146, -38],\n            [145, -38]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145, -36],\n            [145, -34],\n            [146, -34],\n            [146, -36],\n            [145, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145, -34],\n            [145, -32],\n            [146, -32],\n            [146, -34],\n            [145, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145, -32],\n            [145, -30],\n            [146, -30],\n            [146, -32],\n            [145, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145, -30],\n            [145, -28],\n            [146, -28],\n            [146, -30],\n            [145, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145, -28],\n            [145, -26],\n            [146, -26],\n            [146, -28],\n            [145, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145, -26],\n            [145, -24],\n            [146, -24],\n            [146, -26],\n            [145, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145, -24],\n            [145, -22],\n            [146, -22],\n            [146, -24],\n            [145, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145, -22],\n            [145, -20],\n            [146, -20],\n            [146, -22],\n            [145, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145, -20],\n            [145, -18],\n            [146, -18],\n            [146, -20],\n            [145, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145, -18],\n            [145, -16],\n            [146, -16],\n            [146, -18],\n            [145, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145, -16],\n            [145, -14],\n            [146, -14],\n            [146, -16],\n            [145, -16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146, -40],\n            [146, -38],\n            [147, -38],\n            [147, -40],\n            [146, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146, -38],\n            [146, -36],\n            [147, -36],\n            [147, -38],\n            [146, -38]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146, -36],\n            [146, -34],\n            [147, -34],\n            [147, -36],\n            [146, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146, -34],\n            [146, -32],\n            [147, -32],\n            [147, -34],\n            [146, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146, -32],\n            [146, -30],\n            [147, -30],\n            [147, -32],\n            [146, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146, -30],\n            [146, -28],\n            [147, -28],\n            [147, -30],\n            [146, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146, -28],\n            [146, -26],\n            [147, -26],\n            [147, -28],\n            [146, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146, -26],\n            [146, -24],\n            [147, -24],\n            [147, -26],\n            [146, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146, -24],\n            [146, -22],\n            [147, -22],\n            [147, -24],\n            [146, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146, -22],\n            [146, -20],\n            [147, -20],\n            [147, -22],\n            [146, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146, -20],\n            [146, -18],\n            [147, -18],\n            [147, -20],\n            [146, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146, -18],\n            [146, -16],\n            [147, -16],\n            [147, -18],\n            [146, -18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147, -40],\n            [147, -38],\n            [148, -38],\n            [148, -40],\n            [147, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147, -38],\n            [147, -36],\n            [148, -36],\n            [148, -38],\n            [147, -38]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147, -36],\n            [147, -34],\n            [148, -34],\n            [148, -36],\n            [147, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147, -34],\n            [147, -32],\n            [148, -32],\n            [148, -34],\n            [147, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147, -32],\n            [147, -30],\n            [148, -30],\n            [148, -32],\n            [147, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147, -30],\n            [147, -28],\n            [148, -28],\n            [148, -30],\n            [147, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147, -28],\n            [147, -26],\n            [148, -26],\n            [148, -28],\n            [147, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147, -26],\n            [147, -24],\n            [148, -24],\n            [148, -26],\n            [147, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147, -24],\n            [147, -22],\n            [148, -22],\n            [148, -24],\n            [147, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147, -22],\n            [147, -20],\n            [148, -20],\n            [148, -22],\n            [147, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147, -20],\n            [147, -18],\n            [148, -18],\n            [148, -20],\n            [147, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148, -40],\n            [148, -38],\n            [149, -38],\n            [149, -40],\n            [148, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148, -38],\n            [148, -36],\n            [149, -36],\n            [149, -38],\n            [148, -38]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148, -36],\n            [148, -34],\n            [149, -34],\n            [149, -36],\n            [148, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148, -34],\n            [148, -32],\n            [149, -32],\n            [149, -34],\n            [148, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148, -32],\n            [148, -30],\n            [149, -30],\n            [149, -32],\n            [148, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148, -30],\n            [148, -28],\n            [149, -28],\n            [149, -30],\n            [148, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148, -28],\n            [148, -26],\n            [149, -26],\n            [149, -28],\n            [148, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148, -26],\n            [148, -24],\n            [149, -24],\n            [149, -26],\n            [148, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148, -24],\n            [148, -22],\n            [149, -22],\n            [149, -24],\n            [148, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148, -22],\n            [148, -20],\n            [149, -20],\n            [149, -22],\n            [148, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149, -40],\n            [149, -38],\n            [150, -38],\n            [150, -40],\n            [149, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149, -38],\n            [149, -36],\n            [150, -36],\n            [150, -38],\n            [149, -38]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149, -36],\n            [149, -34],\n            [150, -34],\n            [150, -36],\n            [149, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149, -34],\n            [149, -32],\n            [150, -32],\n            [150, -34],\n            [149, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149, -32],\n            [149, -30],\n            [150, -30],\n            [150, -32],\n            [149, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149, -30],\n            [149, -28],\n            [150, -28],\n            [150, -30],\n            [149, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149, -28],\n            [149, -26],\n            [150, -26],\n            [150, -28],\n            [149, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149, -26],\n            [149, -24],\n            [150, -24],\n            [150, -26],\n            [149, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149, -24],\n            [149, -22],\n            [150, -22],\n            [150, -24],\n            [149, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149, -22],\n            [149, -20],\n            [150, -20],\n            [150, -22],\n            [149, -22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, -38],\n            [150, -36],\n            [151, -36],\n            [151, -38],\n            [150, -38]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, -36],\n            [150, -34],\n            [151, -34],\n            [151, -36],\n            [150, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, -34],\n            [150, -32],\n            [151, -32],\n            [151, -34],\n            [150, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, -32],\n            [150, -30],\n            [151, -30],\n            [151, -32],\n            [150, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, -30],\n            [150, -28],\n            [151, -28],\n            [151, -30],\n            [150, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, -28],\n            [150, -26],\n            [151, -26],\n            [151, -28],\n            [150, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, -26],\n            [150, -24],\n            [151, -24],\n            [151, -26],\n            [150, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, -24],\n            [150, -22],\n            [151, -22],\n            [151, -24],\n            [150, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [151, -38],\n            [151, -36],\n            [152, -36],\n            [152, -38],\n            [151, -38]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [151, -36],\n            [151, -34],\n            [152, -34],\n            [152, -36],\n            [151, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [151, -34],\n            [151, -32],\n            [152, -32],\n            [152, -34],\n            [151, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [151, -32],\n            [151, -30],\n            [152, -30],\n            [152, -32],\n            [151, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [151, -30],\n            [151, -28],\n            [152, -28],\n            [152, -30],\n            [151, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [151, -28],\n            [151, -26],\n            [152, -26],\n            [152, -28],\n            [151, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [151, -26],\n            [151, -24],\n            [152, -24],\n            [152, -26],\n            [151, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [151, -24],\n            [151, -22],\n            [152, -22],\n            [152, -24],\n            [151, -24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [152, -36],\n            [152, -34],\n            [153, -34],\n            [153, -36],\n            [152, -36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [152, -34],\n            [152, -32],\n            [153, -32],\n            [153, -34],\n            [152, -34]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [152, -32],\n            [152, -30],\n            [153, -30],\n            [153, -32],\n            [152, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [152, -30],\n            [152, -28],\n            [153, -28],\n            [153, -30],\n            [152, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [152, -28],\n            [152, -26],\n            [153, -26],\n            [153, -28],\n            [152, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [152, -26],\n            [152, -24],\n            [153, -24],\n            [153, -26],\n            [152, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [153, -32],\n            [153, -30],\n            [154, -30],\n            [154, -32],\n            [153, -32]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [153, -30],\n            [153, -28],\n            [154, -28],\n            [154, -30],\n            [153, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [153, -28],\n            [153, -26],\n            [154, -26],\n            [154, -28],\n            [153, -28]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [153, -26],\n            [153, -24],\n            [154, -24],\n            [154, -26],\n            [153, -26]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [154, -30],\n            [154, -28],\n            [155, -28],\n            [155, -30],\n            [154, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [110, 0, 160, -50],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, 0],\n            [160, 0],\n            [160, -50],\n            [110, -50],\n            [110, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [115.13671875, -33.7243396617476],\n            [116.3671875, -35.02999636902566],\n            [118.828125, -34.59704151614416],\n            [123.74999999999999, -33.9433599465788],\n            [126.38671874999999, -32.249974455863295],\n            [131.484375, -31.12819929911196],\n            [135.35156249999997, -34.30714385628803],\n            [139.04296875, -35.24561909420681],\n            [140.2734375, -37.78808138412045],\n            [146.6015625, -38.8225909761771],\n            [150.64453125, -37.43997405227057],\n            [152.40234375, -33.504759069226075],\n            [154.072265625, -28.690587654250685],\n            [153.017578125, -25.641526373065755],\n            [146.513671875, -18.646245142670598],\n            [142.20703125, -10.055402736564224],\n            [140.537109375, -17.224758206624628],\n            [135.439453125, -14.859850400601037],\n            [137.197265625, -11.953349393643416],\n            [131.30859375, -11.178401873711772],\n            [129.0234375, -14.434680215297268],\n            [125.595703125, -14.179186142354169],\n            [120.9375, -19.559790136497398],\n            [114.873046875, -21.125497636606266],\n            [114.169921875, -26.11598592533351],\n            [115.13671875, -33.7243396617476]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rectangle-grid/test/out/big-bbox-500x100-miles.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -80.027525],\n            [-219.231779, -78.580209],\n            [-211.9952, -78.580209],\n            [-211.9952, -80.027525],\n            [-219.231779, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -78.580209],\n            [-219.231779, -77.132893],\n            [-211.9952, -77.132893],\n            [-211.9952, -78.580209],\n            [-219.231779, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -77.132893],\n            [-219.231779, -75.685577],\n            [-211.9952, -75.685577],\n            [-211.9952, -77.132893],\n            [-219.231779, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -75.685577],\n            [-219.231779, -74.238262],\n            [-211.9952, -74.238262],\n            [-211.9952, -75.685577],\n            [-219.231779, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -74.238262],\n            [-219.231779, -72.790946],\n            [-211.9952, -72.790946],\n            [-211.9952, -74.238262],\n            [-219.231779, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -72.790946],\n            [-219.231779, -71.34363],\n            [-211.9952, -71.34363],\n            [-211.9952, -72.790946],\n            [-219.231779, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -71.34363],\n            [-219.231779, -69.896314],\n            [-211.9952, -69.896314],\n            [-211.9952, -71.34363],\n            [-219.231779, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -69.896314],\n            [-219.231779, -68.448998],\n            [-211.9952, -68.448998],\n            [-211.9952, -69.896314],\n            [-219.231779, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -68.448998],\n            [-219.231779, -67.001682],\n            [-211.9952, -67.001682],\n            [-211.9952, -68.448998],\n            [-219.231779, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -67.001682],\n            [-219.231779, -65.554367],\n            [-211.9952, -65.554367],\n            [-211.9952, -67.001682],\n            [-219.231779, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -65.554367],\n            [-219.231779, -64.107051],\n            [-211.9952, -64.107051],\n            [-211.9952, -65.554367],\n            [-219.231779, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -64.107051],\n            [-219.231779, -62.659735],\n            [-211.9952, -62.659735],\n            [-211.9952, -64.107051],\n            [-219.231779, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -62.659735],\n            [-219.231779, -61.212419],\n            [-211.9952, -61.212419],\n            [-211.9952, -62.659735],\n            [-219.231779, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -61.212419],\n            [-219.231779, -59.765103],\n            [-211.9952, -59.765103],\n            [-211.9952, -61.212419],\n            [-219.231779, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -59.765103],\n            [-219.231779, -58.317787],\n            [-211.9952, -58.317787],\n            [-211.9952, -59.765103],\n            [-219.231779, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -58.317787],\n            [-219.231779, -56.870472],\n            [-211.9952, -56.870472],\n            [-211.9952, -58.317787],\n            [-219.231779, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -56.870472],\n            [-219.231779, -55.423156],\n            [-211.9952, -55.423156],\n            [-211.9952, -56.870472],\n            [-219.231779, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -55.423156],\n            [-219.231779, -53.97584],\n            [-211.9952, -53.97584],\n            [-211.9952, -55.423156],\n            [-219.231779, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -53.97584],\n            [-219.231779, -52.528524],\n            [-211.9952, -52.528524],\n            [-211.9952, -53.97584],\n            [-219.231779, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -52.528524],\n            [-219.231779, -51.081208],\n            [-211.9952, -51.081208],\n            [-211.9952, -52.528524],\n            [-219.231779, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -51.081208],\n            [-219.231779, -49.633892],\n            [-211.9952, -49.633892],\n            [-211.9952, -51.081208],\n            [-219.231779, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -49.633892],\n            [-219.231779, -48.186577],\n            [-211.9952, -48.186577],\n            [-211.9952, -49.633892],\n            [-219.231779, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -48.186577],\n            [-219.231779, -46.739261],\n            [-211.9952, -46.739261],\n            [-211.9952, -48.186577],\n            [-219.231779, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -46.739261],\n            [-219.231779, -45.291945],\n            [-211.9952, -45.291945],\n            [-211.9952, -46.739261],\n            [-219.231779, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -45.291945],\n            [-219.231779, -43.844629],\n            [-211.9952, -43.844629],\n            [-211.9952, -45.291945],\n            [-219.231779, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -43.844629],\n            [-219.231779, -42.397313],\n            [-211.9952, -42.397313],\n            [-211.9952, -43.844629],\n            [-219.231779, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -42.397313],\n            [-219.231779, -40.949997],\n            [-211.9952, -40.949997],\n            [-211.9952, -42.397313],\n            [-219.231779, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -40.949997],\n            [-219.231779, -39.502682],\n            [-211.9952, -39.502682],\n            [-211.9952, -40.949997],\n            [-219.231779, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -39.502682],\n            [-219.231779, -38.055366],\n            [-211.9952, -38.055366],\n            [-211.9952, -39.502682],\n            [-219.231779, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -38.055366],\n            [-219.231779, -36.60805],\n            [-211.9952, -36.60805],\n            [-211.9952, -38.055366],\n            [-219.231779, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -36.60805],\n            [-219.231779, -35.160734],\n            [-211.9952, -35.160734],\n            [-211.9952, -36.60805],\n            [-219.231779, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -35.160734],\n            [-219.231779, -33.713418],\n            [-211.9952, -33.713418],\n            [-211.9952, -35.160734],\n            [-219.231779, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -33.713418],\n            [-219.231779, -32.266102],\n            [-211.9952, -32.266102],\n            [-211.9952, -33.713418],\n            [-219.231779, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -32.266102],\n            [-219.231779, -30.818787],\n            [-211.9952, -30.818787],\n            [-211.9952, -32.266102],\n            [-219.231779, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -30.818787],\n            [-219.231779, -29.371471],\n            [-211.9952, -29.371471],\n            [-211.9952, -30.818787],\n            [-219.231779, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -29.371471],\n            [-219.231779, -27.924155],\n            [-211.9952, -27.924155],\n            [-211.9952, -29.371471],\n            [-219.231779, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -27.924155],\n            [-219.231779, -26.476839],\n            [-211.9952, -26.476839],\n            [-211.9952, -27.924155],\n            [-219.231779, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -26.476839],\n            [-219.231779, -25.029523],\n            [-211.9952, -25.029523],\n            [-211.9952, -26.476839],\n            [-219.231779, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -25.029523],\n            [-219.231779, -23.582207],\n            [-211.9952, -23.582207],\n            [-211.9952, -25.029523],\n            [-219.231779, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -23.582207],\n            [-219.231779, -22.134892],\n            [-211.9952, -22.134892],\n            [-211.9952, -23.582207],\n            [-219.231779, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -22.134892],\n            [-219.231779, -20.687576],\n            [-211.9952, -20.687576],\n            [-211.9952, -22.134892],\n            [-219.231779, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -20.687576],\n            [-219.231779, -19.24026],\n            [-211.9952, -19.24026],\n            [-211.9952, -20.687576],\n            [-219.231779, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -19.24026],\n            [-219.231779, -17.792944],\n            [-211.9952, -17.792944],\n            [-211.9952, -19.24026],\n            [-219.231779, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -17.792944],\n            [-219.231779, -16.345628],\n            [-211.9952, -16.345628],\n            [-211.9952, -17.792944],\n            [-219.231779, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -16.345628],\n            [-219.231779, -14.898312],\n            [-211.9952, -14.898312],\n            [-211.9952, -16.345628],\n            [-219.231779, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -14.898312],\n            [-219.231779, -13.450997],\n            [-211.9952, -13.450997],\n            [-211.9952, -14.898312],\n            [-219.231779, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -13.450997],\n            [-219.231779, -12.003681],\n            [-211.9952, -12.003681],\n            [-211.9952, -13.450997],\n            [-219.231779, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -12.003681],\n            [-219.231779, -10.556365],\n            [-211.9952, -10.556365],\n            [-211.9952, -12.003681],\n            [-219.231779, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -10.556365],\n            [-219.231779, -9.109049],\n            [-211.9952, -9.109049],\n            [-211.9952, -10.556365],\n            [-219.231779, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -9.109049],\n            [-219.231779, -7.661733],\n            [-211.9952, -7.661733],\n            [-211.9952, -9.109049],\n            [-219.231779, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -7.661733],\n            [-219.231779, -6.214417],\n            [-211.9952, -6.214417],\n            [-211.9952, -7.661733],\n            [-219.231779, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -6.214417],\n            [-219.231779, -4.767102],\n            [-211.9952, -4.767102],\n            [-211.9952, -6.214417],\n            [-219.231779, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -4.767102],\n            [-219.231779, -3.319786],\n            [-211.9952, -3.319786],\n            [-211.9952, -4.767102],\n            [-219.231779, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -3.319786],\n            [-219.231779, -1.87247],\n            [-211.9952, -1.87247],\n            [-211.9952, -3.319786],\n            [-219.231779, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -1.87247],\n            [-219.231779, -0.425154],\n            [-211.9952, -0.425154],\n            [-211.9952, -1.87247],\n            [-219.231779, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -0.425154],\n            [-219.231779, 1.022162],\n            [-211.9952, 1.022162],\n            [-211.9952, -0.425154],\n            [-219.231779, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 1.022162],\n            [-219.231779, 2.469478],\n            [-211.9952, 2.469478],\n            [-211.9952, 1.022162],\n            [-219.231779, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 2.469478],\n            [-219.231779, 3.916793],\n            [-211.9952, 3.916793],\n            [-211.9952, 2.469478],\n            [-219.231779, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 3.916793],\n            [-219.231779, 5.364109],\n            [-211.9952, 5.364109],\n            [-211.9952, 3.916793],\n            [-219.231779, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 5.364109],\n            [-219.231779, 6.811425],\n            [-211.9952, 6.811425],\n            [-211.9952, 5.364109],\n            [-219.231779, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 6.811425],\n            [-219.231779, 8.258741],\n            [-211.9952, 8.258741],\n            [-211.9952, 6.811425],\n            [-219.231779, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 8.258741],\n            [-219.231779, 9.706057],\n            [-211.9952, 9.706057],\n            [-211.9952, 8.258741],\n            [-219.231779, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 9.706057],\n            [-219.231779, 11.153373],\n            [-211.9952, 11.153373],\n            [-211.9952, 9.706057],\n            [-219.231779, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 11.153373],\n            [-219.231779, 12.600688],\n            [-211.9952, 12.600688],\n            [-211.9952, 11.153373],\n            [-219.231779, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 12.600688],\n            [-219.231779, 14.048004],\n            [-211.9952, 14.048004],\n            [-211.9952, 12.600688],\n            [-219.231779, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 14.048004],\n            [-219.231779, 15.49532],\n            [-211.9952, 15.49532],\n            [-211.9952, 14.048004],\n            [-219.231779, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 15.49532],\n            [-219.231779, 16.942636],\n            [-211.9952, 16.942636],\n            [-211.9952, 15.49532],\n            [-219.231779, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 16.942636],\n            [-219.231779, 18.389952],\n            [-211.9952, 18.389952],\n            [-211.9952, 16.942636],\n            [-219.231779, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 18.389952],\n            [-219.231779, 19.837268],\n            [-211.9952, 19.837268],\n            [-211.9952, 18.389952],\n            [-219.231779, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 19.837268],\n            [-219.231779, 21.284583],\n            [-211.9952, 21.284583],\n            [-211.9952, 19.837268],\n            [-219.231779, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 21.284583],\n            [-219.231779, 22.731899],\n            [-211.9952, 22.731899],\n            [-211.9952, 21.284583],\n            [-219.231779, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 22.731899],\n            [-219.231779, 24.179215],\n            [-211.9952, 24.179215],\n            [-211.9952, 22.731899],\n            [-219.231779, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 24.179215],\n            [-219.231779, 25.626531],\n            [-211.9952, 25.626531],\n            [-211.9952, 24.179215],\n            [-219.231779, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 25.626531],\n            [-219.231779, 27.073847],\n            [-211.9952, 27.073847],\n            [-211.9952, 25.626531],\n            [-219.231779, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 27.073847],\n            [-219.231779, 28.521163],\n            [-211.9952, 28.521163],\n            [-211.9952, 27.073847],\n            [-219.231779, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 28.521163],\n            [-219.231779, 29.968478],\n            [-211.9952, 29.968478],\n            [-211.9952, 28.521163],\n            [-219.231779, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 29.968478],\n            [-219.231779, 31.415794],\n            [-211.9952, 31.415794],\n            [-211.9952, 29.968478],\n            [-219.231779, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 31.415794],\n            [-219.231779, 32.86311],\n            [-211.9952, 32.86311],\n            [-211.9952, 31.415794],\n            [-219.231779, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 32.86311],\n            [-219.231779, 34.310426],\n            [-211.9952, 34.310426],\n            [-211.9952, 32.86311],\n            [-219.231779, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 34.310426],\n            [-219.231779, 35.757742],\n            [-211.9952, 35.757742],\n            [-211.9952, 34.310426],\n            [-219.231779, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 35.757742],\n            [-219.231779, 37.205058],\n            [-211.9952, 37.205058],\n            [-211.9952, 35.757742],\n            [-219.231779, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 37.205058],\n            [-219.231779, 38.652373],\n            [-211.9952, 38.652373],\n            [-211.9952, 37.205058],\n            [-219.231779, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 38.652373],\n            [-219.231779, 40.099689],\n            [-211.9952, 40.099689],\n            [-211.9952, 38.652373],\n            [-219.231779, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 40.099689],\n            [-219.231779, 41.547005],\n            [-211.9952, 41.547005],\n            [-211.9952, 40.099689],\n            [-219.231779, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 41.547005],\n            [-219.231779, 42.994321],\n            [-211.9952, 42.994321],\n            [-211.9952, 41.547005],\n            [-219.231779, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 42.994321],\n            [-219.231779, 44.441637],\n            [-211.9952, 44.441637],\n            [-211.9952, 42.994321],\n            [-219.231779, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 44.441637],\n            [-219.231779, 45.888952],\n            [-211.9952, 45.888952],\n            [-211.9952, 44.441637],\n            [-219.231779, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 45.888952],\n            [-219.231779, 47.336268],\n            [-211.9952, 47.336268],\n            [-211.9952, 45.888952],\n            [-219.231779, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 47.336268],\n            [-219.231779, 48.783584],\n            [-211.9952, 48.783584],\n            [-211.9952, 47.336268],\n            [-219.231779, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 48.783584],\n            [-219.231779, 50.2309],\n            [-211.9952, 50.2309],\n            [-211.9952, 48.783584],\n            [-219.231779, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 50.2309],\n            [-219.231779, 51.678216],\n            [-211.9952, 51.678216],\n            [-211.9952, 50.2309],\n            [-219.231779, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 51.678216],\n            [-219.231779, 53.125532],\n            [-211.9952, 53.125532],\n            [-211.9952, 51.678216],\n            [-219.231779, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 53.125532],\n            [-219.231779, 54.572847],\n            [-211.9952, 54.572847],\n            [-211.9952, 53.125532],\n            [-219.231779, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 54.572847],\n            [-219.231779, 56.020163],\n            [-211.9952, 56.020163],\n            [-211.9952, 54.572847],\n            [-219.231779, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 56.020163],\n            [-219.231779, 57.467479],\n            [-211.9952, 57.467479],\n            [-211.9952, 56.020163],\n            [-219.231779, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 57.467479],\n            [-219.231779, 58.914795],\n            [-211.9952, 58.914795],\n            [-211.9952, 57.467479],\n            [-219.231779, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 58.914795],\n            [-219.231779, 60.362111],\n            [-211.9952, 60.362111],\n            [-211.9952, 58.914795],\n            [-219.231779, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 60.362111],\n            [-219.231779, 61.809427],\n            [-211.9952, 61.809427],\n            [-211.9952, 60.362111],\n            [-219.231779, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 61.809427],\n            [-219.231779, 63.256742],\n            [-211.9952, 63.256742],\n            [-211.9952, 61.809427],\n            [-219.231779, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 63.256742],\n            [-219.231779, 64.704058],\n            [-211.9952, 64.704058],\n            [-211.9952, 63.256742],\n            [-219.231779, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 64.704058],\n            [-219.231779, 66.151374],\n            [-211.9952, 66.151374],\n            [-211.9952, 64.704058],\n            [-219.231779, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 66.151374],\n            [-219.231779, 67.59869],\n            [-211.9952, 67.59869],\n            [-211.9952, 66.151374],\n            [-219.231779, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 67.59869],\n            [-219.231779, 69.046006],\n            [-211.9952, 69.046006],\n            [-211.9952, 67.59869],\n            [-219.231779, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 69.046006],\n            [-219.231779, 70.493322],\n            [-211.9952, 70.493322],\n            [-211.9952, 69.046006],\n            [-219.231779, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 70.493322],\n            [-219.231779, 71.940637],\n            [-211.9952, 71.940637],\n            [-211.9952, 70.493322],\n            [-219.231779, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 71.940637],\n            [-219.231779, 73.387953],\n            [-211.9952, 73.387953],\n            [-211.9952, 71.940637],\n            [-219.231779, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 73.387953],\n            [-219.231779, 74.835269],\n            [-211.9952, 74.835269],\n            [-211.9952, 73.387953],\n            [-219.231779, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 74.835269],\n            [-219.231779, 76.282585],\n            [-211.9952, 76.282585],\n            [-211.9952, 74.835269],\n            [-219.231779, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 76.282585],\n            [-219.231779, 77.729901],\n            [-211.9952, 77.729901],\n            [-211.9952, 76.282585],\n            [-219.231779, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -80.027525],\n            [-211.9952, -78.580209],\n            [-204.758621, -78.580209],\n            [-204.758621, -80.027525],\n            [-211.9952, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -78.580209],\n            [-211.9952, -77.132893],\n            [-204.758621, -77.132893],\n            [-204.758621, -78.580209],\n            [-211.9952, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -77.132893],\n            [-211.9952, -75.685577],\n            [-204.758621, -75.685577],\n            [-204.758621, -77.132893],\n            [-211.9952, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -75.685577],\n            [-211.9952, -74.238262],\n            [-204.758621, -74.238262],\n            [-204.758621, -75.685577],\n            [-211.9952, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -74.238262],\n            [-211.9952, -72.790946],\n            [-204.758621, -72.790946],\n            [-204.758621, -74.238262],\n            [-211.9952, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -72.790946],\n            [-211.9952, -71.34363],\n            [-204.758621, -71.34363],\n            [-204.758621, -72.790946],\n            [-211.9952, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -71.34363],\n            [-211.9952, -69.896314],\n            [-204.758621, -69.896314],\n            [-204.758621, -71.34363],\n            [-211.9952, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -69.896314],\n            [-211.9952, -68.448998],\n            [-204.758621, -68.448998],\n            [-204.758621, -69.896314],\n            [-211.9952, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -68.448998],\n            [-211.9952, -67.001682],\n            [-204.758621, -67.001682],\n            [-204.758621, -68.448998],\n            [-211.9952, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -67.001682],\n            [-211.9952, -65.554367],\n            [-204.758621, -65.554367],\n            [-204.758621, -67.001682],\n            [-211.9952, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -65.554367],\n            [-211.9952, -64.107051],\n            [-204.758621, -64.107051],\n            [-204.758621, -65.554367],\n            [-211.9952, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -64.107051],\n            [-211.9952, -62.659735],\n            [-204.758621, -62.659735],\n            [-204.758621, -64.107051],\n            [-211.9952, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -62.659735],\n            [-211.9952, -61.212419],\n            [-204.758621, -61.212419],\n            [-204.758621, -62.659735],\n            [-211.9952, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -61.212419],\n            [-211.9952, -59.765103],\n            [-204.758621, -59.765103],\n            [-204.758621, -61.212419],\n            [-211.9952, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -59.765103],\n            [-211.9952, -58.317787],\n            [-204.758621, -58.317787],\n            [-204.758621, -59.765103],\n            [-211.9952, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -58.317787],\n            [-211.9952, -56.870472],\n            [-204.758621, -56.870472],\n            [-204.758621, -58.317787],\n            [-211.9952, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -56.870472],\n            [-211.9952, -55.423156],\n            [-204.758621, -55.423156],\n            [-204.758621, -56.870472],\n            [-211.9952, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -55.423156],\n            [-211.9952, -53.97584],\n            [-204.758621, -53.97584],\n            [-204.758621, -55.423156],\n            [-211.9952, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -53.97584],\n            [-211.9952, -52.528524],\n            [-204.758621, -52.528524],\n            [-204.758621, -53.97584],\n            [-211.9952, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -52.528524],\n            [-211.9952, -51.081208],\n            [-204.758621, -51.081208],\n            [-204.758621, -52.528524],\n            [-211.9952, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -51.081208],\n            [-211.9952, -49.633892],\n            [-204.758621, -49.633892],\n            [-204.758621, -51.081208],\n            [-211.9952, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -49.633892],\n            [-211.9952, -48.186577],\n            [-204.758621, -48.186577],\n            [-204.758621, -49.633892],\n            [-211.9952, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -48.186577],\n            [-211.9952, -46.739261],\n            [-204.758621, -46.739261],\n            [-204.758621, -48.186577],\n            [-211.9952, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -46.739261],\n            [-211.9952, -45.291945],\n            [-204.758621, -45.291945],\n            [-204.758621, -46.739261],\n            [-211.9952, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -45.291945],\n            [-211.9952, -43.844629],\n            [-204.758621, -43.844629],\n            [-204.758621, -45.291945],\n            [-211.9952, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -43.844629],\n            [-211.9952, -42.397313],\n            [-204.758621, -42.397313],\n            [-204.758621, -43.844629],\n            [-211.9952, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -42.397313],\n            [-211.9952, -40.949997],\n            [-204.758621, -40.949997],\n            [-204.758621, -42.397313],\n            [-211.9952, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -40.949997],\n            [-211.9952, -39.502682],\n            [-204.758621, -39.502682],\n            [-204.758621, -40.949997],\n            [-211.9952, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -39.502682],\n            [-211.9952, -38.055366],\n            [-204.758621, -38.055366],\n            [-204.758621, -39.502682],\n            [-211.9952, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -38.055366],\n            [-211.9952, -36.60805],\n            [-204.758621, -36.60805],\n            [-204.758621, -38.055366],\n            [-211.9952, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -36.60805],\n            [-211.9952, -35.160734],\n            [-204.758621, -35.160734],\n            [-204.758621, -36.60805],\n            [-211.9952, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -35.160734],\n            [-211.9952, -33.713418],\n            [-204.758621, -33.713418],\n            [-204.758621, -35.160734],\n            [-211.9952, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -33.713418],\n            [-211.9952, -32.266102],\n            [-204.758621, -32.266102],\n            [-204.758621, -33.713418],\n            [-211.9952, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -32.266102],\n            [-211.9952, -30.818787],\n            [-204.758621, -30.818787],\n            [-204.758621, -32.266102],\n            [-211.9952, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -30.818787],\n            [-211.9952, -29.371471],\n            [-204.758621, -29.371471],\n            [-204.758621, -30.818787],\n            [-211.9952, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -29.371471],\n            [-211.9952, -27.924155],\n            [-204.758621, -27.924155],\n            [-204.758621, -29.371471],\n            [-211.9952, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -27.924155],\n            [-211.9952, -26.476839],\n            [-204.758621, -26.476839],\n            [-204.758621, -27.924155],\n            [-211.9952, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -26.476839],\n            [-211.9952, -25.029523],\n            [-204.758621, -25.029523],\n            [-204.758621, -26.476839],\n            [-211.9952, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -25.029523],\n            [-211.9952, -23.582207],\n            [-204.758621, -23.582207],\n            [-204.758621, -25.029523],\n            [-211.9952, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -23.582207],\n            [-211.9952, -22.134892],\n            [-204.758621, -22.134892],\n            [-204.758621, -23.582207],\n            [-211.9952, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -22.134892],\n            [-211.9952, -20.687576],\n            [-204.758621, -20.687576],\n            [-204.758621, -22.134892],\n            [-211.9952, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -20.687576],\n            [-211.9952, -19.24026],\n            [-204.758621, -19.24026],\n            [-204.758621, -20.687576],\n            [-211.9952, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -19.24026],\n            [-211.9952, -17.792944],\n            [-204.758621, -17.792944],\n            [-204.758621, -19.24026],\n            [-211.9952, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -17.792944],\n            [-211.9952, -16.345628],\n            [-204.758621, -16.345628],\n            [-204.758621, -17.792944],\n            [-211.9952, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -16.345628],\n            [-211.9952, -14.898312],\n            [-204.758621, -14.898312],\n            [-204.758621, -16.345628],\n            [-211.9952, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -14.898312],\n            [-211.9952, -13.450997],\n            [-204.758621, -13.450997],\n            [-204.758621, -14.898312],\n            [-211.9952, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -13.450997],\n            [-211.9952, -12.003681],\n            [-204.758621, -12.003681],\n            [-204.758621, -13.450997],\n            [-211.9952, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -12.003681],\n            [-211.9952, -10.556365],\n            [-204.758621, -10.556365],\n            [-204.758621, -12.003681],\n            [-211.9952, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -10.556365],\n            [-211.9952, -9.109049],\n            [-204.758621, -9.109049],\n            [-204.758621, -10.556365],\n            [-211.9952, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -9.109049],\n            [-211.9952, -7.661733],\n            [-204.758621, -7.661733],\n            [-204.758621, -9.109049],\n            [-211.9952, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -7.661733],\n            [-211.9952, -6.214417],\n            [-204.758621, -6.214417],\n            [-204.758621, -7.661733],\n            [-211.9952, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -6.214417],\n            [-211.9952, -4.767102],\n            [-204.758621, -4.767102],\n            [-204.758621, -6.214417],\n            [-211.9952, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -4.767102],\n            [-211.9952, -3.319786],\n            [-204.758621, -3.319786],\n            [-204.758621, -4.767102],\n            [-211.9952, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -3.319786],\n            [-211.9952, -1.87247],\n            [-204.758621, -1.87247],\n            [-204.758621, -3.319786],\n            [-211.9952, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -1.87247],\n            [-211.9952, -0.425154],\n            [-204.758621, -0.425154],\n            [-204.758621, -1.87247],\n            [-211.9952, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -0.425154],\n            [-211.9952, 1.022162],\n            [-204.758621, 1.022162],\n            [-204.758621, -0.425154],\n            [-211.9952, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 1.022162],\n            [-211.9952, 2.469478],\n            [-204.758621, 2.469478],\n            [-204.758621, 1.022162],\n            [-211.9952, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 2.469478],\n            [-211.9952, 3.916793],\n            [-204.758621, 3.916793],\n            [-204.758621, 2.469478],\n            [-211.9952, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 3.916793],\n            [-211.9952, 5.364109],\n            [-204.758621, 5.364109],\n            [-204.758621, 3.916793],\n            [-211.9952, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 5.364109],\n            [-211.9952, 6.811425],\n            [-204.758621, 6.811425],\n            [-204.758621, 5.364109],\n            [-211.9952, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 6.811425],\n            [-211.9952, 8.258741],\n            [-204.758621, 8.258741],\n            [-204.758621, 6.811425],\n            [-211.9952, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 8.258741],\n            [-211.9952, 9.706057],\n            [-204.758621, 9.706057],\n            [-204.758621, 8.258741],\n            [-211.9952, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 9.706057],\n            [-211.9952, 11.153373],\n            [-204.758621, 11.153373],\n            [-204.758621, 9.706057],\n            [-211.9952, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 11.153373],\n            [-211.9952, 12.600688],\n            [-204.758621, 12.600688],\n            [-204.758621, 11.153373],\n            [-211.9952, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 12.600688],\n            [-211.9952, 14.048004],\n            [-204.758621, 14.048004],\n            [-204.758621, 12.600688],\n            [-211.9952, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 14.048004],\n            [-211.9952, 15.49532],\n            [-204.758621, 15.49532],\n            [-204.758621, 14.048004],\n            [-211.9952, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 15.49532],\n            [-211.9952, 16.942636],\n            [-204.758621, 16.942636],\n            [-204.758621, 15.49532],\n            [-211.9952, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 16.942636],\n            [-211.9952, 18.389952],\n            [-204.758621, 18.389952],\n            [-204.758621, 16.942636],\n            [-211.9952, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 18.389952],\n            [-211.9952, 19.837268],\n            [-204.758621, 19.837268],\n            [-204.758621, 18.389952],\n            [-211.9952, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 19.837268],\n            [-211.9952, 21.284583],\n            [-204.758621, 21.284583],\n            [-204.758621, 19.837268],\n            [-211.9952, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 21.284583],\n            [-211.9952, 22.731899],\n            [-204.758621, 22.731899],\n            [-204.758621, 21.284583],\n            [-211.9952, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 22.731899],\n            [-211.9952, 24.179215],\n            [-204.758621, 24.179215],\n            [-204.758621, 22.731899],\n            [-211.9952, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 24.179215],\n            [-211.9952, 25.626531],\n            [-204.758621, 25.626531],\n            [-204.758621, 24.179215],\n            [-211.9952, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 25.626531],\n            [-211.9952, 27.073847],\n            [-204.758621, 27.073847],\n            [-204.758621, 25.626531],\n            [-211.9952, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 27.073847],\n            [-211.9952, 28.521163],\n            [-204.758621, 28.521163],\n            [-204.758621, 27.073847],\n            [-211.9952, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 28.521163],\n            [-211.9952, 29.968478],\n            [-204.758621, 29.968478],\n            [-204.758621, 28.521163],\n            [-211.9952, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 29.968478],\n            [-211.9952, 31.415794],\n            [-204.758621, 31.415794],\n            [-204.758621, 29.968478],\n            [-211.9952, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 31.415794],\n            [-211.9952, 32.86311],\n            [-204.758621, 32.86311],\n            [-204.758621, 31.415794],\n            [-211.9952, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 32.86311],\n            [-211.9952, 34.310426],\n            [-204.758621, 34.310426],\n            [-204.758621, 32.86311],\n            [-211.9952, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 34.310426],\n            [-211.9952, 35.757742],\n            [-204.758621, 35.757742],\n            [-204.758621, 34.310426],\n            [-211.9952, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 35.757742],\n            [-211.9952, 37.205058],\n            [-204.758621, 37.205058],\n            [-204.758621, 35.757742],\n            [-211.9952, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 37.205058],\n            [-211.9952, 38.652373],\n            [-204.758621, 38.652373],\n            [-204.758621, 37.205058],\n            [-211.9952, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 38.652373],\n            [-211.9952, 40.099689],\n            [-204.758621, 40.099689],\n            [-204.758621, 38.652373],\n            [-211.9952, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 40.099689],\n            [-211.9952, 41.547005],\n            [-204.758621, 41.547005],\n            [-204.758621, 40.099689],\n            [-211.9952, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 41.547005],\n            [-211.9952, 42.994321],\n            [-204.758621, 42.994321],\n            [-204.758621, 41.547005],\n            [-211.9952, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 42.994321],\n            [-211.9952, 44.441637],\n            [-204.758621, 44.441637],\n            [-204.758621, 42.994321],\n            [-211.9952, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 44.441637],\n            [-211.9952, 45.888952],\n            [-204.758621, 45.888952],\n            [-204.758621, 44.441637],\n            [-211.9952, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 45.888952],\n            [-211.9952, 47.336268],\n            [-204.758621, 47.336268],\n            [-204.758621, 45.888952],\n            [-211.9952, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 47.336268],\n            [-211.9952, 48.783584],\n            [-204.758621, 48.783584],\n            [-204.758621, 47.336268],\n            [-211.9952, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 48.783584],\n            [-211.9952, 50.2309],\n            [-204.758621, 50.2309],\n            [-204.758621, 48.783584],\n            [-211.9952, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 50.2309],\n            [-211.9952, 51.678216],\n            [-204.758621, 51.678216],\n            [-204.758621, 50.2309],\n            [-211.9952, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 51.678216],\n            [-211.9952, 53.125532],\n            [-204.758621, 53.125532],\n            [-204.758621, 51.678216],\n            [-211.9952, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 53.125532],\n            [-211.9952, 54.572847],\n            [-204.758621, 54.572847],\n            [-204.758621, 53.125532],\n            [-211.9952, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 54.572847],\n            [-211.9952, 56.020163],\n            [-204.758621, 56.020163],\n            [-204.758621, 54.572847],\n            [-211.9952, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 56.020163],\n            [-211.9952, 57.467479],\n            [-204.758621, 57.467479],\n            [-204.758621, 56.020163],\n            [-211.9952, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 57.467479],\n            [-211.9952, 58.914795],\n            [-204.758621, 58.914795],\n            [-204.758621, 57.467479],\n            [-211.9952, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 58.914795],\n            [-211.9952, 60.362111],\n            [-204.758621, 60.362111],\n            [-204.758621, 58.914795],\n            [-211.9952, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 60.362111],\n            [-211.9952, 61.809427],\n            [-204.758621, 61.809427],\n            [-204.758621, 60.362111],\n            [-211.9952, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 61.809427],\n            [-211.9952, 63.256742],\n            [-204.758621, 63.256742],\n            [-204.758621, 61.809427],\n            [-211.9952, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 63.256742],\n            [-211.9952, 64.704058],\n            [-204.758621, 64.704058],\n            [-204.758621, 63.256742],\n            [-211.9952, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 64.704058],\n            [-211.9952, 66.151374],\n            [-204.758621, 66.151374],\n            [-204.758621, 64.704058],\n            [-211.9952, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 66.151374],\n            [-211.9952, 67.59869],\n            [-204.758621, 67.59869],\n            [-204.758621, 66.151374],\n            [-211.9952, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 67.59869],\n            [-211.9952, 69.046006],\n            [-204.758621, 69.046006],\n            [-204.758621, 67.59869],\n            [-211.9952, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 69.046006],\n            [-211.9952, 70.493322],\n            [-204.758621, 70.493322],\n            [-204.758621, 69.046006],\n            [-211.9952, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 70.493322],\n            [-211.9952, 71.940637],\n            [-204.758621, 71.940637],\n            [-204.758621, 70.493322],\n            [-211.9952, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 71.940637],\n            [-211.9952, 73.387953],\n            [-204.758621, 73.387953],\n            [-204.758621, 71.940637],\n            [-211.9952, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 73.387953],\n            [-211.9952, 74.835269],\n            [-204.758621, 74.835269],\n            [-204.758621, 73.387953],\n            [-211.9952, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 74.835269],\n            [-211.9952, 76.282585],\n            [-204.758621, 76.282585],\n            [-204.758621, 74.835269],\n            [-211.9952, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 76.282585],\n            [-211.9952, 77.729901],\n            [-204.758621, 77.729901],\n            [-204.758621, 76.282585],\n            [-211.9952, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -80.027525],\n            [-204.758621, -78.580209],\n            [-197.522042, -78.580209],\n            [-197.522042, -80.027525],\n            [-204.758621, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -78.580209],\n            [-204.758621, -77.132893],\n            [-197.522042, -77.132893],\n            [-197.522042, -78.580209],\n            [-204.758621, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -77.132893],\n            [-204.758621, -75.685577],\n            [-197.522042, -75.685577],\n            [-197.522042, -77.132893],\n            [-204.758621, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -75.685577],\n            [-204.758621, -74.238262],\n            [-197.522042, -74.238262],\n            [-197.522042, -75.685577],\n            [-204.758621, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -74.238262],\n            [-204.758621, -72.790946],\n            [-197.522042, -72.790946],\n            [-197.522042, -74.238262],\n            [-204.758621, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -72.790946],\n            [-204.758621, -71.34363],\n            [-197.522042, -71.34363],\n            [-197.522042, -72.790946],\n            [-204.758621, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -71.34363],\n            [-204.758621, -69.896314],\n            [-197.522042, -69.896314],\n            [-197.522042, -71.34363],\n            [-204.758621, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -69.896314],\n            [-204.758621, -68.448998],\n            [-197.522042, -68.448998],\n            [-197.522042, -69.896314],\n            [-204.758621, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -68.448998],\n            [-204.758621, -67.001682],\n            [-197.522042, -67.001682],\n            [-197.522042, -68.448998],\n            [-204.758621, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -67.001682],\n            [-204.758621, -65.554367],\n            [-197.522042, -65.554367],\n            [-197.522042, -67.001682],\n            [-204.758621, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -65.554367],\n            [-204.758621, -64.107051],\n            [-197.522042, -64.107051],\n            [-197.522042, -65.554367],\n            [-204.758621, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -64.107051],\n            [-204.758621, -62.659735],\n            [-197.522042, -62.659735],\n            [-197.522042, -64.107051],\n            [-204.758621, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -62.659735],\n            [-204.758621, -61.212419],\n            [-197.522042, -61.212419],\n            [-197.522042, -62.659735],\n            [-204.758621, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -61.212419],\n            [-204.758621, -59.765103],\n            [-197.522042, -59.765103],\n            [-197.522042, -61.212419],\n            [-204.758621, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -59.765103],\n            [-204.758621, -58.317787],\n            [-197.522042, -58.317787],\n            [-197.522042, -59.765103],\n            [-204.758621, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -58.317787],\n            [-204.758621, -56.870472],\n            [-197.522042, -56.870472],\n            [-197.522042, -58.317787],\n            [-204.758621, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -56.870472],\n            [-204.758621, -55.423156],\n            [-197.522042, -55.423156],\n            [-197.522042, -56.870472],\n            [-204.758621, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -55.423156],\n            [-204.758621, -53.97584],\n            [-197.522042, -53.97584],\n            [-197.522042, -55.423156],\n            [-204.758621, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -53.97584],\n            [-204.758621, -52.528524],\n            [-197.522042, -52.528524],\n            [-197.522042, -53.97584],\n            [-204.758621, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -52.528524],\n            [-204.758621, -51.081208],\n            [-197.522042, -51.081208],\n            [-197.522042, -52.528524],\n            [-204.758621, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -51.081208],\n            [-204.758621, -49.633892],\n            [-197.522042, -49.633892],\n            [-197.522042, -51.081208],\n            [-204.758621, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -49.633892],\n            [-204.758621, -48.186577],\n            [-197.522042, -48.186577],\n            [-197.522042, -49.633892],\n            [-204.758621, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -48.186577],\n            [-204.758621, -46.739261],\n            [-197.522042, -46.739261],\n            [-197.522042, -48.186577],\n            [-204.758621, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -46.739261],\n            [-204.758621, -45.291945],\n            [-197.522042, -45.291945],\n            [-197.522042, -46.739261],\n            [-204.758621, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -45.291945],\n            [-204.758621, -43.844629],\n            [-197.522042, -43.844629],\n            [-197.522042, -45.291945],\n            [-204.758621, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -43.844629],\n            [-204.758621, -42.397313],\n            [-197.522042, -42.397313],\n            [-197.522042, -43.844629],\n            [-204.758621, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -42.397313],\n            [-204.758621, -40.949997],\n            [-197.522042, -40.949997],\n            [-197.522042, -42.397313],\n            [-204.758621, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -40.949997],\n            [-204.758621, -39.502682],\n            [-197.522042, -39.502682],\n            [-197.522042, -40.949997],\n            [-204.758621, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -39.502682],\n            [-204.758621, -38.055366],\n            [-197.522042, -38.055366],\n            [-197.522042, -39.502682],\n            [-204.758621, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -38.055366],\n            [-204.758621, -36.60805],\n            [-197.522042, -36.60805],\n            [-197.522042, -38.055366],\n            [-204.758621, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -36.60805],\n            [-204.758621, -35.160734],\n            [-197.522042, -35.160734],\n            [-197.522042, -36.60805],\n            [-204.758621, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -35.160734],\n            [-204.758621, -33.713418],\n            [-197.522042, -33.713418],\n            [-197.522042, -35.160734],\n            [-204.758621, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -33.713418],\n            [-204.758621, -32.266102],\n            [-197.522042, -32.266102],\n            [-197.522042, -33.713418],\n            [-204.758621, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -32.266102],\n            [-204.758621, -30.818787],\n            [-197.522042, -30.818787],\n            [-197.522042, -32.266102],\n            [-204.758621, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -30.818787],\n            [-204.758621, -29.371471],\n            [-197.522042, -29.371471],\n            [-197.522042, -30.818787],\n            [-204.758621, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -29.371471],\n            [-204.758621, -27.924155],\n            [-197.522042, -27.924155],\n            [-197.522042, -29.371471],\n            [-204.758621, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -27.924155],\n            [-204.758621, -26.476839],\n            [-197.522042, -26.476839],\n            [-197.522042, -27.924155],\n            [-204.758621, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -26.476839],\n            [-204.758621, -25.029523],\n            [-197.522042, -25.029523],\n            [-197.522042, -26.476839],\n            [-204.758621, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -25.029523],\n            [-204.758621, -23.582207],\n            [-197.522042, -23.582207],\n            [-197.522042, -25.029523],\n            [-204.758621, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -23.582207],\n            [-204.758621, -22.134892],\n            [-197.522042, -22.134892],\n            [-197.522042, -23.582207],\n            [-204.758621, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -22.134892],\n            [-204.758621, -20.687576],\n            [-197.522042, -20.687576],\n            [-197.522042, -22.134892],\n            [-204.758621, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -20.687576],\n            [-204.758621, -19.24026],\n            [-197.522042, -19.24026],\n            [-197.522042, -20.687576],\n            [-204.758621, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -19.24026],\n            [-204.758621, -17.792944],\n            [-197.522042, -17.792944],\n            [-197.522042, -19.24026],\n            [-204.758621, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -17.792944],\n            [-204.758621, -16.345628],\n            [-197.522042, -16.345628],\n            [-197.522042, -17.792944],\n            [-204.758621, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -16.345628],\n            [-204.758621, -14.898312],\n            [-197.522042, -14.898312],\n            [-197.522042, -16.345628],\n            [-204.758621, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -14.898312],\n            [-204.758621, -13.450997],\n            [-197.522042, -13.450997],\n            [-197.522042, -14.898312],\n            [-204.758621, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -13.450997],\n            [-204.758621, -12.003681],\n            [-197.522042, -12.003681],\n            [-197.522042, -13.450997],\n            [-204.758621, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -12.003681],\n            [-204.758621, -10.556365],\n            [-197.522042, -10.556365],\n            [-197.522042, -12.003681],\n            [-204.758621, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -10.556365],\n            [-204.758621, -9.109049],\n            [-197.522042, -9.109049],\n            [-197.522042, -10.556365],\n            [-204.758621, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -9.109049],\n            [-204.758621, -7.661733],\n            [-197.522042, -7.661733],\n            [-197.522042, -9.109049],\n            [-204.758621, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -7.661733],\n            [-204.758621, -6.214417],\n            [-197.522042, -6.214417],\n            [-197.522042, -7.661733],\n            [-204.758621, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -6.214417],\n            [-204.758621, -4.767102],\n            [-197.522042, -4.767102],\n            [-197.522042, -6.214417],\n            [-204.758621, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -4.767102],\n            [-204.758621, -3.319786],\n            [-197.522042, -3.319786],\n            [-197.522042, -4.767102],\n            [-204.758621, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -3.319786],\n            [-204.758621, -1.87247],\n            [-197.522042, -1.87247],\n            [-197.522042, -3.319786],\n            [-204.758621, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -1.87247],\n            [-204.758621, -0.425154],\n            [-197.522042, -0.425154],\n            [-197.522042, -1.87247],\n            [-204.758621, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -0.425154],\n            [-204.758621, 1.022162],\n            [-197.522042, 1.022162],\n            [-197.522042, -0.425154],\n            [-204.758621, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 1.022162],\n            [-204.758621, 2.469478],\n            [-197.522042, 2.469478],\n            [-197.522042, 1.022162],\n            [-204.758621, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 2.469478],\n            [-204.758621, 3.916793],\n            [-197.522042, 3.916793],\n            [-197.522042, 2.469478],\n            [-204.758621, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 3.916793],\n            [-204.758621, 5.364109],\n            [-197.522042, 5.364109],\n            [-197.522042, 3.916793],\n            [-204.758621, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 5.364109],\n            [-204.758621, 6.811425],\n            [-197.522042, 6.811425],\n            [-197.522042, 5.364109],\n            [-204.758621, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 6.811425],\n            [-204.758621, 8.258741],\n            [-197.522042, 8.258741],\n            [-197.522042, 6.811425],\n            [-204.758621, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 8.258741],\n            [-204.758621, 9.706057],\n            [-197.522042, 9.706057],\n            [-197.522042, 8.258741],\n            [-204.758621, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 9.706057],\n            [-204.758621, 11.153373],\n            [-197.522042, 11.153373],\n            [-197.522042, 9.706057],\n            [-204.758621, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 11.153373],\n            [-204.758621, 12.600688],\n            [-197.522042, 12.600688],\n            [-197.522042, 11.153373],\n            [-204.758621, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 12.600688],\n            [-204.758621, 14.048004],\n            [-197.522042, 14.048004],\n            [-197.522042, 12.600688],\n            [-204.758621, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 14.048004],\n            [-204.758621, 15.49532],\n            [-197.522042, 15.49532],\n            [-197.522042, 14.048004],\n            [-204.758621, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 15.49532],\n            [-204.758621, 16.942636],\n            [-197.522042, 16.942636],\n            [-197.522042, 15.49532],\n            [-204.758621, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 16.942636],\n            [-204.758621, 18.389952],\n            [-197.522042, 18.389952],\n            [-197.522042, 16.942636],\n            [-204.758621, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 18.389952],\n            [-204.758621, 19.837268],\n            [-197.522042, 19.837268],\n            [-197.522042, 18.389952],\n            [-204.758621, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 19.837268],\n            [-204.758621, 21.284583],\n            [-197.522042, 21.284583],\n            [-197.522042, 19.837268],\n            [-204.758621, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 21.284583],\n            [-204.758621, 22.731899],\n            [-197.522042, 22.731899],\n            [-197.522042, 21.284583],\n            [-204.758621, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 22.731899],\n            [-204.758621, 24.179215],\n            [-197.522042, 24.179215],\n            [-197.522042, 22.731899],\n            [-204.758621, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 24.179215],\n            [-204.758621, 25.626531],\n            [-197.522042, 25.626531],\n            [-197.522042, 24.179215],\n            [-204.758621, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 25.626531],\n            [-204.758621, 27.073847],\n            [-197.522042, 27.073847],\n            [-197.522042, 25.626531],\n            [-204.758621, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 27.073847],\n            [-204.758621, 28.521163],\n            [-197.522042, 28.521163],\n            [-197.522042, 27.073847],\n            [-204.758621, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 28.521163],\n            [-204.758621, 29.968478],\n            [-197.522042, 29.968478],\n            [-197.522042, 28.521163],\n            [-204.758621, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 29.968478],\n            [-204.758621, 31.415794],\n            [-197.522042, 31.415794],\n            [-197.522042, 29.968478],\n            [-204.758621, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 31.415794],\n            [-204.758621, 32.86311],\n            [-197.522042, 32.86311],\n            [-197.522042, 31.415794],\n            [-204.758621, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 32.86311],\n            [-204.758621, 34.310426],\n            [-197.522042, 34.310426],\n            [-197.522042, 32.86311],\n            [-204.758621, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 34.310426],\n            [-204.758621, 35.757742],\n            [-197.522042, 35.757742],\n            [-197.522042, 34.310426],\n            [-204.758621, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 35.757742],\n            [-204.758621, 37.205058],\n            [-197.522042, 37.205058],\n            [-197.522042, 35.757742],\n            [-204.758621, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 37.205058],\n            [-204.758621, 38.652373],\n            [-197.522042, 38.652373],\n            [-197.522042, 37.205058],\n            [-204.758621, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 38.652373],\n            [-204.758621, 40.099689],\n            [-197.522042, 40.099689],\n            [-197.522042, 38.652373],\n            [-204.758621, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 40.099689],\n            [-204.758621, 41.547005],\n            [-197.522042, 41.547005],\n            [-197.522042, 40.099689],\n            [-204.758621, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 41.547005],\n            [-204.758621, 42.994321],\n            [-197.522042, 42.994321],\n            [-197.522042, 41.547005],\n            [-204.758621, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 42.994321],\n            [-204.758621, 44.441637],\n            [-197.522042, 44.441637],\n            [-197.522042, 42.994321],\n            [-204.758621, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 44.441637],\n            [-204.758621, 45.888952],\n            [-197.522042, 45.888952],\n            [-197.522042, 44.441637],\n            [-204.758621, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 45.888952],\n            [-204.758621, 47.336268],\n            [-197.522042, 47.336268],\n            [-197.522042, 45.888952],\n            [-204.758621, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 47.336268],\n            [-204.758621, 48.783584],\n            [-197.522042, 48.783584],\n            [-197.522042, 47.336268],\n            [-204.758621, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 48.783584],\n            [-204.758621, 50.2309],\n            [-197.522042, 50.2309],\n            [-197.522042, 48.783584],\n            [-204.758621, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 50.2309],\n            [-204.758621, 51.678216],\n            [-197.522042, 51.678216],\n            [-197.522042, 50.2309],\n            [-204.758621, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 51.678216],\n            [-204.758621, 53.125532],\n            [-197.522042, 53.125532],\n            [-197.522042, 51.678216],\n            [-204.758621, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 53.125532],\n            [-204.758621, 54.572847],\n            [-197.522042, 54.572847],\n            [-197.522042, 53.125532],\n            [-204.758621, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 54.572847],\n            [-204.758621, 56.020163],\n            [-197.522042, 56.020163],\n            [-197.522042, 54.572847],\n            [-204.758621, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 56.020163],\n            [-204.758621, 57.467479],\n            [-197.522042, 57.467479],\n            [-197.522042, 56.020163],\n            [-204.758621, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 57.467479],\n            [-204.758621, 58.914795],\n            [-197.522042, 58.914795],\n            [-197.522042, 57.467479],\n            [-204.758621, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 58.914795],\n            [-204.758621, 60.362111],\n            [-197.522042, 60.362111],\n            [-197.522042, 58.914795],\n            [-204.758621, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 60.362111],\n            [-204.758621, 61.809427],\n            [-197.522042, 61.809427],\n            [-197.522042, 60.362111],\n            [-204.758621, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 61.809427],\n            [-204.758621, 63.256742],\n            [-197.522042, 63.256742],\n            [-197.522042, 61.809427],\n            [-204.758621, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 63.256742],\n            [-204.758621, 64.704058],\n            [-197.522042, 64.704058],\n            [-197.522042, 63.256742],\n            [-204.758621, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 64.704058],\n            [-204.758621, 66.151374],\n            [-197.522042, 66.151374],\n            [-197.522042, 64.704058],\n            [-204.758621, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 66.151374],\n            [-204.758621, 67.59869],\n            [-197.522042, 67.59869],\n            [-197.522042, 66.151374],\n            [-204.758621, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 67.59869],\n            [-204.758621, 69.046006],\n            [-197.522042, 69.046006],\n            [-197.522042, 67.59869],\n            [-204.758621, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 69.046006],\n            [-204.758621, 70.493322],\n            [-197.522042, 70.493322],\n            [-197.522042, 69.046006],\n            [-204.758621, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 70.493322],\n            [-204.758621, 71.940637],\n            [-197.522042, 71.940637],\n            [-197.522042, 70.493322],\n            [-204.758621, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 71.940637],\n            [-204.758621, 73.387953],\n            [-197.522042, 73.387953],\n            [-197.522042, 71.940637],\n            [-204.758621, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 73.387953],\n            [-204.758621, 74.835269],\n            [-197.522042, 74.835269],\n            [-197.522042, 73.387953],\n            [-204.758621, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 74.835269],\n            [-204.758621, 76.282585],\n            [-197.522042, 76.282585],\n            [-197.522042, 74.835269],\n            [-204.758621, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 76.282585],\n            [-204.758621, 77.729901],\n            [-197.522042, 77.729901],\n            [-197.522042, 76.282585],\n            [-204.758621, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -80.027525],\n            [-197.522042, -78.580209],\n            [-190.285462, -78.580209],\n            [-190.285462, -80.027525],\n            [-197.522042, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -78.580209],\n            [-197.522042, -77.132893],\n            [-190.285462, -77.132893],\n            [-190.285462, -78.580209],\n            [-197.522042, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -77.132893],\n            [-197.522042, -75.685577],\n            [-190.285462, -75.685577],\n            [-190.285462, -77.132893],\n            [-197.522042, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -75.685577],\n            [-197.522042, -74.238262],\n            [-190.285462, -74.238262],\n            [-190.285462, -75.685577],\n            [-197.522042, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -74.238262],\n            [-197.522042, -72.790946],\n            [-190.285462, -72.790946],\n            [-190.285462, -74.238262],\n            [-197.522042, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -72.790946],\n            [-197.522042, -71.34363],\n            [-190.285462, -71.34363],\n            [-190.285462, -72.790946],\n            [-197.522042, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -71.34363],\n            [-197.522042, -69.896314],\n            [-190.285462, -69.896314],\n            [-190.285462, -71.34363],\n            [-197.522042, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -69.896314],\n            [-197.522042, -68.448998],\n            [-190.285462, -68.448998],\n            [-190.285462, -69.896314],\n            [-197.522042, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -68.448998],\n            [-197.522042, -67.001682],\n            [-190.285462, -67.001682],\n            [-190.285462, -68.448998],\n            [-197.522042, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -67.001682],\n            [-197.522042, -65.554367],\n            [-190.285462, -65.554367],\n            [-190.285462, -67.001682],\n            [-197.522042, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -65.554367],\n            [-197.522042, -64.107051],\n            [-190.285462, -64.107051],\n            [-190.285462, -65.554367],\n            [-197.522042, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -64.107051],\n            [-197.522042, -62.659735],\n            [-190.285462, -62.659735],\n            [-190.285462, -64.107051],\n            [-197.522042, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -62.659735],\n            [-197.522042, -61.212419],\n            [-190.285462, -61.212419],\n            [-190.285462, -62.659735],\n            [-197.522042, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -61.212419],\n            [-197.522042, -59.765103],\n            [-190.285462, -59.765103],\n            [-190.285462, -61.212419],\n            [-197.522042, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -59.765103],\n            [-197.522042, -58.317787],\n            [-190.285462, -58.317787],\n            [-190.285462, -59.765103],\n            [-197.522042, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -58.317787],\n            [-197.522042, -56.870472],\n            [-190.285462, -56.870472],\n            [-190.285462, -58.317787],\n            [-197.522042, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -56.870472],\n            [-197.522042, -55.423156],\n            [-190.285462, -55.423156],\n            [-190.285462, -56.870472],\n            [-197.522042, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -55.423156],\n            [-197.522042, -53.97584],\n            [-190.285462, -53.97584],\n            [-190.285462, -55.423156],\n            [-197.522042, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -53.97584],\n            [-197.522042, -52.528524],\n            [-190.285462, -52.528524],\n            [-190.285462, -53.97584],\n            [-197.522042, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -52.528524],\n            [-197.522042, -51.081208],\n            [-190.285462, -51.081208],\n            [-190.285462, -52.528524],\n            [-197.522042, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -51.081208],\n            [-197.522042, -49.633892],\n            [-190.285462, -49.633892],\n            [-190.285462, -51.081208],\n            [-197.522042, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -49.633892],\n            [-197.522042, -48.186577],\n            [-190.285462, -48.186577],\n            [-190.285462, -49.633892],\n            [-197.522042, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -48.186577],\n            [-197.522042, -46.739261],\n            [-190.285462, -46.739261],\n            [-190.285462, -48.186577],\n            [-197.522042, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -46.739261],\n            [-197.522042, -45.291945],\n            [-190.285462, -45.291945],\n            [-190.285462, -46.739261],\n            [-197.522042, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -45.291945],\n            [-197.522042, -43.844629],\n            [-190.285462, -43.844629],\n            [-190.285462, -45.291945],\n            [-197.522042, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -43.844629],\n            [-197.522042, -42.397313],\n            [-190.285462, -42.397313],\n            [-190.285462, -43.844629],\n            [-197.522042, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -42.397313],\n            [-197.522042, -40.949997],\n            [-190.285462, -40.949997],\n            [-190.285462, -42.397313],\n            [-197.522042, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -40.949997],\n            [-197.522042, -39.502682],\n            [-190.285462, -39.502682],\n            [-190.285462, -40.949997],\n            [-197.522042, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -39.502682],\n            [-197.522042, -38.055366],\n            [-190.285462, -38.055366],\n            [-190.285462, -39.502682],\n            [-197.522042, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -38.055366],\n            [-197.522042, -36.60805],\n            [-190.285462, -36.60805],\n            [-190.285462, -38.055366],\n            [-197.522042, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -36.60805],\n            [-197.522042, -35.160734],\n            [-190.285462, -35.160734],\n            [-190.285462, -36.60805],\n            [-197.522042, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -35.160734],\n            [-197.522042, -33.713418],\n            [-190.285462, -33.713418],\n            [-190.285462, -35.160734],\n            [-197.522042, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -33.713418],\n            [-197.522042, -32.266102],\n            [-190.285462, -32.266102],\n            [-190.285462, -33.713418],\n            [-197.522042, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -32.266102],\n            [-197.522042, -30.818787],\n            [-190.285462, -30.818787],\n            [-190.285462, -32.266102],\n            [-197.522042, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -30.818787],\n            [-197.522042, -29.371471],\n            [-190.285462, -29.371471],\n            [-190.285462, -30.818787],\n            [-197.522042, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -29.371471],\n            [-197.522042, -27.924155],\n            [-190.285462, -27.924155],\n            [-190.285462, -29.371471],\n            [-197.522042, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -27.924155],\n            [-197.522042, -26.476839],\n            [-190.285462, -26.476839],\n            [-190.285462, -27.924155],\n            [-197.522042, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -26.476839],\n            [-197.522042, -25.029523],\n            [-190.285462, -25.029523],\n            [-190.285462, -26.476839],\n            [-197.522042, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -25.029523],\n            [-197.522042, -23.582207],\n            [-190.285462, -23.582207],\n            [-190.285462, -25.029523],\n            [-197.522042, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -23.582207],\n            [-197.522042, -22.134892],\n            [-190.285462, -22.134892],\n            [-190.285462, -23.582207],\n            [-197.522042, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -22.134892],\n            [-197.522042, -20.687576],\n            [-190.285462, -20.687576],\n            [-190.285462, -22.134892],\n            [-197.522042, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -20.687576],\n            [-197.522042, -19.24026],\n            [-190.285462, -19.24026],\n            [-190.285462, -20.687576],\n            [-197.522042, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -19.24026],\n            [-197.522042, -17.792944],\n            [-190.285462, -17.792944],\n            [-190.285462, -19.24026],\n            [-197.522042, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -17.792944],\n            [-197.522042, -16.345628],\n            [-190.285462, -16.345628],\n            [-190.285462, -17.792944],\n            [-197.522042, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -16.345628],\n            [-197.522042, -14.898312],\n            [-190.285462, -14.898312],\n            [-190.285462, -16.345628],\n            [-197.522042, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -14.898312],\n            [-197.522042, -13.450997],\n            [-190.285462, -13.450997],\n            [-190.285462, -14.898312],\n            [-197.522042, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -13.450997],\n            [-197.522042, -12.003681],\n            [-190.285462, -12.003681],\n            [-190.285462, -13.450997],\n            [-197.522042, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -12.003681],\n            [-197.522042, -10.556365],\n            [-190.285462, -10.556365],\n            [-190.285462, -12.003681],\n            [-197.522042, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -10.556365],\n            [-197.522042, -9.109049],\n            [-190.285462, -9.109049],\n            [-190.285462, -10.556365],\n            [-197.522042, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -9.109049],\n            [-197.522042, -7.661733],\n            [-190.285462, -7.661733],\n            [-190.285462, -9.109049],\n            [-197.522042, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -7.661733],\n            [-197.522042, -6.214417],\n            [-190.285462, -6.214417],\n            [-190.285462, -7.661733],\n            [-197.522042, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -6.214417],\n            [-197.522042, -4.767102],\n            [-190.285462, -4.767102],\n            [-190.285462, -6.214417],\n            [-197.522042, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -4.767102],\n            [-197.522042, -3.319786],\n            [-190.285462, -3.319786],\n            [-190.285462, -4.767102],\n            [-197.522042, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -3.319786],\n            [-197.522042, -1.87247],\n            [-190.285462, -1.87247],\n            [-190.285462, -3.319786],\n            [-197.522042, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -1.87247],\n            [-197.522042, -0.425154],\n            [-190.285462, -0.425154],\n            [-190.285462, -1.87247],\n            [-197.522042, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -0.425154],\n            [-197.522042, 1.022162],\n            [-190.285462, 1.022162],\n            [-190.285462, -0.425154],\n            [-197.522042, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 1.022162],\n            [-197.522042, 2.469478],\n            [-190.285462, 2.469478],\n            [-190.285462, 1.022162],\n            [-197.522042, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 2.469478],\n            [-197.522042, 3.916793],\n            [-190.285462, 3.916793],\n            [-190.285462, 2.469478],\n            [-197.522042, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 3.916793],\n            [-197.522042, 5.364109],\n            [-190.285462, 5.364109],\n            [-190.285462, 3.916793],\n            [-197.522042, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 5.364109],\n            [-197.522042, 6.811425],\n            [-190.285462, 6.811425],\n            [-190.285462, 5.364109],\n            [-197.522042, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 6.811425],\n            [-197.522042, 8.258741],\n            [-190.285462, 8.258741],\n            [-190.285462, 6.811425],\n            [-197.522042, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 8.258741],\n            [-197.522042, 9.706057],\n            [-190.285462, 9.706057],\n            [-190.285462, 8.258741],\n            [-197.522042, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 9.706057],\n            [-197.522042, 11.153373],\n            [-190.285462, 11.153373],\n            [-190.285462, 9.706057],\n            [-197.522042, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 11.153373],\n            [-197.522042, 12.600688],\n            [-190.285462, 12.600688],\n            [-190.285462, 11.153373],\n            [-197.522042, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 12.600688],\n            [-197.522042, 14.048004],\n            [-190.285462, 14.048004],\n            [-190.285462, 12.600688],\n            [-197.522042, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 14.048004],\n            [-197.522042, 15.49532],\n            [-190.285462, 15.49532],\n            [-190.285462, 14.048004],\n            [-197.522042, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 15.49532],\n            [-197.522042, 16.942636],\n            [-190.285462, 16.942636],\n            [-190.285462, 15.49532],\n            [-197.522042, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 16.942636],\n            [-197.522042, 18.389952],\n            [-190.285462, 18.389952],\n            [-190.285462, 16.942636],\n            [-197.522042, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 18.389952],\n            [-197.522042, 19.837268],\n            [-190.285462, 19.837268],\n            [-190.285462, 18.389952],\n            [-197.522042, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 19.837268],\n            [-197.522042, 21.284583],\n            [-190.285462, 21.284583],\n            [-190.285462, 19.837268],\n            [-197.522042, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 21.284583],\n            [-197.522042, 22.731899],\n            [-190.285462, 22.731899],\n            [-190.285462, 21.284583],\n            [-197.522042, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 22.731899],\n            [-197.522042, 24.179215],\n            [-190.285462, 24.179215],\n            [-190.285462, 22.731899],\n            [-197.522042, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 24.179215],\n            [-197.522042, 25.626531],\n            [-190.285462, 25.626531],\n            [-190.285462, 24.179215],\n            [-197.522042, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 25.626531],\n            [-197.522042, 27.073847],\n            [-190.285462, 27.073847],\n            [-190.285462, 25.626531],\n            [-197.522042, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 27.073847],\n            [-197.522042, 28.521163],\n            [-190.285462, 28.521163],\n            [-190.285462, 27.073847],\n            [-197.522042, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 28.521163],\n            [-197.522042, 29.968478],\n            [-190.285462, 29.968478],\n            [-190.285462, 28.521163],\n            [-197.522042, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 29.968478],\n            [-197.522042, 31.415794],\n            [-190.285462, 31.415794],\n            [-190.285462, 29.968478],\n            [-197.522042, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 31.415794],\n            [-197.522042, 32.86311],\n            [-190.285462, 32.86311],\n            [-190.285462, 31.415794],\n            [-197.522042, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 32.86311],\n            [-197.522042, 34.310426],\n            [-190.285462, 34.310426],\n            [-190.285462, 32.86311],\n            [-197.522042, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 34.310426],\n            [-197.522042, 35.757742],\n            [-190.285462, 35.757742],\n            [-190.285462, 34.310426],\n            [-197.522042, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 35.757742],\n            [-197.522042, 37.205058],\n            [-190.285462, 37.205058],\n            [-190.285462, 35.757742],\n            [-197.522042, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 37.205058],\n            [-197.522042, 38.652373],\n            [-190.285462, 38.652373],\n            [-190.285462, 37.205058],\n            [-197.522042, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 38.652373],\n            [-197.522042, 40.099689],\n            [-190.285462, 40.099689],\n            [-190.285462, 38.652373],\n            [-197.522042, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 40.099689],\n            [-197.522042, 41.547005],\n            [-190.285462, 41.547005],\n            [-190.285462, 40.099689],\n            [-197.522042, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 41.547005],\n            [-197.522042, 42.994321],\n            [-190.285462, 42.994321],\n            [-190.285462, 41.547005],\n            [-197.522042, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 42.994321],\n            [-197.522042, 44.441637],\n            [-190.285462, 44.441637],\n            [-190.285462, 42.994321],\n            [-197.522042, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 44.441637],\n            [-197.522042, 45.888952],\n            [-190.285462, 45.888952],\n            [-190.285462, 44.441637],\n            [-197.522042, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 45.888952],\n            [-197.522042, 47.336268],\n            [-190.285462, 47.336268],\n            [-190.285462, 45.888952],\n            [-197.522042, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 47.336268],\n            [-197.522042, 48.783584],\n            [-190.285462, 48.783584],\n            [-190.285462, 47.336268],\n            [-197.522042, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 48.783584],\n            [-197.522042, 50.2309],\n            [-190.285462, 50.2309],\n            [-190.285462, 48.783584],\n            [-197.522042, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 50.2309],\n            [-197.522042, 51.678216],\n            [-190.285462, 51.678216],\n            [-190.285462, 50.2309],\n            [-197.522042, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 51.678216],\n            [-197.522042, 53.125532],\n            [-190.285462, 53.125532],\n            [-190.285462, 51.678216],\n            [-197.522042, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 53.125532],\n            [-197.522042, 54.572847],\n            [-190.285462, 54.572847],\n            [-190.285462, 53.125532],\n            [-197.522042, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 54.572847],\n            [-197.522042, 56.020163],\n            [-190.285462, 56.020163],\n            [-190.285462, 54.572847],\n            [-197.522042, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 56.020163],\n            [-197.522042, 57.467479],\n            [-190.285462, 57.467479],\n            [-190.285462, 56.020163],\n            [-197.522042, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 57.467479],\n            [-197.522042, 58.914795],\n            [-190.285462, 58.914795],\n            [-190.285462, 57.467479],\n            [-197.522042, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 58.914795],\n            [-197.522042, 60.362111],\n            [-190.285462, 60.362111],\n            [-190.285462, 58.914795],\n            [-197.522042, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 60.362111],\n            [-197.522042, 61.809427],\n            [-190.285462, 61.809427],\n            [-190.285462, 60.362111],\n            [-197.522042, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 61.809427],\n            [-197.522042, 63.256742],\n            [-190.285462, 63.256742],\n            [-190.285462, 61.809427],\n            [-197.522042, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 63.256742],\n            [-197.522042, 64.704058],\n            [-190.285462, 64.704058],\n            [-190.285462, 63.256742],\n            [-197.522042, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 64.704058],\n            [-197.522042, 66.151374],\n            [-190.285462, 66.151374],\n            [-190.285462, 64.704058],\n            [-197.522042, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 66.151374],\n            [-197.522042, 67.59869],\n            [-190.285462, 67.59869],\n            [-190.285462, 66.151374],\n            [-197.522042, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 67.59869],\n            [-197.522042, 69.046006],\n            [-190.285462, 69.046006],\n            [-190.285462, 67.59869],\n            [-197.522042, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 69.046006],\n            [-197.522042, 70.493322],\n            [-190.285462, 70.493322],\n            [-190.285462, 69.046006],\n            [-197.522042, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 70.493322],\n            [-197.522042, 71.940637],\n            [-190.285462, 71.940637],\n            [-190.285462, 70.493322],\n            [-197.522042, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 71.940637],\n            [-197.522042, 73.387953],\n            [-190.285462, 73.387953],\n            [-190.285462, 71.940637],\n            [-197.522042, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 73.387953],\n            [-197.522042, 74.835269],\n            [-190.285462, 74.835269],\n            [-190.285462, 73.387953],\n            [-197.522042, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 74.835269],\n            [-197.522042, 76.282585],\n            [-190.285462, 76.282585],\n            [-190.285462, 74.835269],\n            [-197.522042, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 76.282585],\n            [-197.522042, 77.729901],\n            [-190.285462, 77.729901],\n            [-190.285462, 76.282585],\n            [-197.522042, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -80.027525],\n            [-190.285462, -78.580209],\n            [-183.048883, -78.580209],\n            [-183.048883, -80.027525],\n            [-190.285462, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -78.580209],\n            [-190.285462, -77.132893],\n            [-183.048883, -77.132893],\n            [-183.048883, -78.580209],\n            [-190.285462, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -77.132893],\n            [-190.285462, -75.685577],\n            [-183.048883, -75.685577],\n            [-183.048883, -77.132893],\n            [-190.285462, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -75.685577],\n            [-190.285462, -74.238262],\n            [-183.048883, -74.238262],\n            [-183.048883, -75.685577],\n            [-190.285462, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -74.238262],\n            [-190.285462, -72.790946],\n            [-183.048883, -72.790946],\n            [-183.048883, -74.238262],\n            [-190.285462, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -72.790946],\n            [-190.285462, -71.34363],\n            [-183.048883, -71.34363],\n            [-183.048883, -72.790946],\n            [-190.285462, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -71.34363],\n            [-190.285462, -69.896314],\n            [-183.048883, -69.896314],\n            [-183.048883, -71.34363],\n            [-190.285462, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -69.896314],\n            [-190.285462, -68.448998],\n            [-183.048883, -68.448998],\n            [-183.048883, -69.896314],\n            [-190.285462, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -68.448998],\n            [-190.285462, -67.001682],\n            [-183.048883, -67.001682],\n            [-183.048883, -68.448998],\n            [-190.285462, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -67.001682],\n            [-190.285462, -65.554367],\n            [-183.048883, -65.554367],\n            [-183.048883, -67.001682],\n            [-190.285462, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -65.554367],\n            [-190.285462, -64.107051],\n            [-183.048883, -64.107051],\n            [-183.048883, -65.554367],\n            [-190.285462, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -64.107051],\n            [-190.285462, -62.659735],\n            [-183.048883, -62.659735],\n            [-183.048883, -64.107051],\n            [-190.285462, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -62.659735],\n            [-190.285462, -61.212419],\n            [-183.048883, -61.212419],\n            [-183.048883, -62.659735],\n            [-190.285462, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -61.212419],\n            [-190.285462, -59.765103],\n            [-183.048883, -59.765103],\n            [-183.048883, -61.212419],\n            [-190.285462, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -59.765103],\n            [-190.285462, -58.317787],\n            [-183.048883, -58.317787],\n            [-183.048883, -59.765103],\n            [-190.285462, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -58.317787],\n            [-190.285462, -56.870472],\n            [-183.048883, -56.870472],\n            [-183.048883, -58.317787],\n            [-190.285462, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -56.870472],\n            [-190.285462, -55.423156],\n            [-183.048883, -55.423156],\n            [-183.048883, -56.870472],\n            [-190.285462, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -55.423156],\n            [-190.285462, -53.97584],\n            [-183.048883, -53.97584],\n            [-183.048883, -55.423156],\n            [-190.285462, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -53.97584],\n            [-190.285462, -52.528524],\n            [-183.048883, -52.528524],\n            [-183.048883, -53.97584],\n            [-190.285462, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -52.528524],\n            [-190.285462, -51.081208],\n            [-183.048883, -51.081208],\n            [-183.048883, -52.528524],\n            [-190.285462, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -51.081208],\n            [-190.285462, -49.633892],\n            [-183.048883, -49.633892],\n            [-183.048883, -51.081208],\n            [-190.285462, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -49.633892],\n            [-190.285462, -48.186577],\n            [-183.048883, -48.186577],\n            [-183.048883, -49.633892],\n            [-190.285462, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -48.186577],\n            [-190.285462, -46.739261],\n            [-183.048883, -46.739261],\n            [-183.048883, -48.186577],\n            [-190.285462, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -46.739261],\n            [-190.285462, -45.291945],\n            [-183.048883, -45.291945],\n            [-183.048883, -46.739261],\n            [-190.285462, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -45.291945],\n            [-190.285462, -43.844629],\n            [-183.048883, -43.844629],\n            [-183.048883, -45.291945],\n            [-190.285462, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -43.844629],\n            [-190.285462, -42.397313],\n            [-183.048883, -42.397313],\n            [-183.048883, -43.844629],\n            [-190.285462, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -42.397313],\n            [-190.285462, -40.949997],\n            [-183.048883, -40.949997],\n            [-183.048883, -42.397313],\n            [-190.285462, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -40.949997],\n            [-190.285462, -39.502682],\n            [-183.048883, -39.502682],\n            [-183.048883, -40.949997],\n            [-190.285462, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -39.502682],\n            [-190.285462, -38.055366],\n            [-183.048883, -38.055366],\n            [-183.048883, -39.502682],\n            [-190.285462, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -38.055366],\n            [-190.285462, -36.60805],\n            [-183.048883, -36.60805],\n            [-183.048883, -38.055366],\n            [-190.285462, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -36.60805],\n            [-190.285462, -35.160734],\n            [-183.048883, -35.160734],\n            [-183.048883, -36.60805],\n            [-190.285462, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -35.160734],\n            [-190.285462, -33.713418],\n            [-183.048883, -33.713418],\n            [-183.048883, -35.160734],\n            [-190.285462, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -33.713418],\n            [-190.285462, -32.266102],\n            [-183.048883, -32.266102],\n            [-183.048883, -33.713418],\n            [-190.285462, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -32.266102],\n            [-190.285462, -30.818787],\n            [-183.048883, -30.818787],\n            [-183.048883, -32.266102],\n            [-190.285462, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -30.818787],\n            [-190.285462, -29.371471],\n            [-183.048883, -29.371471],\n            [-183.048883, -30.818787],\n            [-190.285462, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -29.371471],\n            [-190.285462, -27.924155],\n            [-183.048883, -27.924155],\n            [-183.048883, -29.371471],\n            [-190.285462, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -27.924155],\n            [-190.285462, -26.476839],\n            [-183.048883, -26.476839],\n            [-183.048883, -27.924155],\n            [-190.285462, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -26.476839],\n            [-190.285462, -25.029523],\n            [-183.048883, -25.029523],\n            [-183.048883, -26.476839],\n            [-190.285462, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -25.029523],\n            [-190.285462, -23.582207],\n            [-183.048883, -23.582207],\n            [-183.048883, -25.029523],\n            [-190.285462, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -23.582207],\n            [-190.285462, -22.134892],\n            [-183.048883, -22.134892],\n            [-183.048883, -23.582207],\n            [-190.285462, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -22.134892],\n            [-190.285462, -20.687576],\n            [-183.048883, -20.687576],\n            [-183.048883, -22.134892],\n            [-190.285462, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -20.687576],\n            [-190.285462, -19.24026],\n            [-183.048883, -19.24026],\n            [-183.048883, -20.687576],\n            [-190.285462, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -19.24026],\n            [-190.285462, -17.792944],\n            [-183.048883, -17.792944],\n            [-183.048883, -19.24026],\n            [-190.285462, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -17.792944],\n            [-190.285462, -16.345628],\n            [-183.048883, -16.345628],\n            [-183.048883, -17.792944],\n            [-190.285462, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -16.345628],\n            [-190.285462, -14.898312],\n            [-183.048883, -14.898312],\n            [-183.048883, -16.345628],\n            [-190.285462, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -14.898312],\n            [-190.285462, -13.450997],\n            [-183.048883, -13.450997],\n            [-183.048883, -14.898312],\n            [-190.285462, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -13.450997],\n            [-190.285462, -12.003681],\n            [-183.048883, -12.003681],\n            [-183.048883, -13.450997],\n            [-190.285462, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -12.003681],\n            [-190.285462, -10.556365],\n            [-183.048883, -10.556365],\n            [-183.048883, -12.003681],\n            [-190.285462, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -10.556365],\n            [-190.285462, -9.109049],\n            [-183.048883, -9.109049],\n            [-183.048883, -10.556365],\n            [-190.285462, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -9.109049],\n            [-190.285462, -7.661733],\n            [-183.048883, -7.661733],\n            [-183.048883, -9.109049],\n            [-190.285462, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -7.661733],\n            [-190.285462, -6.214417],\n            [-183.048883, -6.214417],\n            [-183.048883, -7.661733],\n            [-190.285462, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -6.214417],\n            [-190.285462, -4.767102],\n            [-183.048883, -4.767102],\n            [-183.048883, -6.214417],\n            [-190.285462, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -4.767102],\n            [-190.285462, -3.319786],\n            [-183.048883, -3.319786],\n            [-183.048883, -4.767102],\n            [-190.285462, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -3.319786],\n            [-190.285462, -1.87247],\n            [-183.048883, -1.87247],\n            [-183.048883, -3.319786],\n            [-190.285462, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -1.87247],\n            [-190.285462, -0.425154],\n            [-183.048883, -0.425154],\n            [-183.048883, -1.87247],\n            [-190.285462, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -0.425154],\n            [-190.285462, 1.022162],\n            [-183.048883, 1.022162],\n            [-183.048883, -0.425154],\n            [-190.285462, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 1.022162],\n            [-190.285462, 2.469478],\n            [-183.048883, 2.469478],\n            [-183.048883, 1.022162],\n            [-190.285462, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 2.469478],\n            [-190.285462, 3.916793],\n            [-183.048883, 3.916793],\n            [-183.048883, 2.469478],\n            [-190.285462, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 3.916793],\n            [-190.285462, 5.364109],\n            [-183.048883, 5.364109],\n            [-183.048883, 3.916793],\n            [-190.285462, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 5.364109],\n            [-190.285462, 6.811425],\n            [-183.048883, 6.811425],\n            [-183.048883, 5.364109],\n            [-190.285462, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 6.811425],\n            [-190.285462, 8.258741],\n            [-183.048883, 8.258741],\n            [-183.048883, 6.811425],\n            [-190.285462, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 8.258741],\n            [-190.285462, 9.706057],\n            [-183.048883, 9.706057],\n            [-183.048883, 8.258741],\n            [-190.285462, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 9.706057],\n            [-190.285462, 11.153373],\n            [-183.048883, 11.153373],\n            [-183.048883, 9.706057],\n            [-190.285462, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 11.153373],\n            [-190.285462, 12.600688],\n            [-183.048883, 12.600688],\n            [-183.048883, 11.153373],\n            [-190.285462, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 12.600688],\n            [-190.285462, 14.048004],\n            [-183.048883, 14.048004],\n            [-183.048883, 12.600688],\n            [-190.285462, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 14.048004],\n            [-190.285462, 15.49532],\n            [-183.048883, 15.49532],\n            [-183.048883, 14.048004],\n            [-190.285462, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 15.49532],\n            [-190.285462, 16.942636],\n            [-183.048883, 16.942636],\n            [-183.048883, 15.49532],\n            [-190.285462, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 16.942636],\n            [-190.285462, 18.389952],\n            [-183.048883, 18.389952],\n            [-183.048883, 16.942636],\n            [-190.285462, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 18.389952],\n            [-190.285462, 19.837268],\n            [-183.048883, 19.837268],\n            [-183.048883, 18.389952],\n            [-190.285462, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 19.837268],\n            [-190.285462, 21.284583],\n            [-183.048883, 21.284583],\n            [-183.048883, 19.837268],\n            [-190.285462, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 21.284583],\n            [-190.285462, 22.731899],\n            [-183.048883, 22.731899],\n            [-183.048883, 21.284583],\n            [-190.285462, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 22.731899],\n            [-190.285462, 24.179215],\n            [-183.048883, 24.179215],\n            [-183.048883, 22.731899],\n            [-190.285462, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 24.179215],\n            [-190.285462, 25.626531],\n            [-183.048883, 25.626531],\n            [-183.048883, 24.179215],\n            [-190.285462, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 25.626531],\n            [-190.285462, 27.073847],\n            [-183.048883, 27.073847],\n            [-183.048883, 25.626531],\n            [-190.285462, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 27.073847],\n            [-190.285462, 28.521163],\n            [-183.048883, 28.521163],\n            [-183.048883, 27.073847],\n            [-190.285462, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 28.521163],\n            [-190.285462, 29.968478],\n            [-183.048883, 29.968478],\n            [-183.048883, 28.521163],\n            [-190.285462, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 29.968478],\n            [-190.285462, 31.415794],\n            [-183.048883, 31.415794],\n            [-183.048883, 29.968478],\n            [-190.285462, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 31.415794],\n            [-190.285462, 32.86311],\n            [-183.048883, 32.86311],\n            [-183.048883, 31.415794],\n            [-190.285462, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 32.86311],\n            [-190.285462, 34.310426],\n            [-183.048883, 34.310426],\n            [-183.048883, 32.86311],\n            [-190.285462, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 34.310426],\n            [-190.285462, 35.757742],\n            [-183.048883, 35.757742],\n            [-183.048883, 34.310426],\n            [-190.285462, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 35.757742],\n            [-190.285462, 37.205058],\n            [-183.048883, 37.205058],\n            [-183.048883, 35.757742],\n            [-190.285462, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 37.205058],\n            [-190.285462, 38.652373],\n            [-183.048883, 38.652373],\n            [-183.048883, 37.205058],\n            [-190.285462, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 38.652373],\n            [-190.285462, 40.099689],\n            [-183.048883, 40.099689],\n            [-183.048883, 38.652373],\n            [-190.285462, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 40.099689],\n            [-190.285462, 41.547005],\n            [-183.048883, 41.547005],\n            [-183.048883, 40.099689],\n            [-190.285462, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 41.547005],\n            [-190.285462, 42.994321],\n            [-183.048883, 42.994321],\n            [-183.048883, 41.547005],\n            [-190.285462, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 42.994321],\n            [-190.285462, 44.441637],\n            [-183.048883, 44.441637],\n            [-183.048883, 42.994321],\n            [-190.285462, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 44.441637],\n            [-190.285462, 45.888952],\n            [-183.048883, 45.888952],\n            [-183.048883, 44.441637],\n            [-190.285462, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 45.888952],\n            [-190.285462, 47.336268],\n            [-183.048883, 47.336268],\n            [-183.048883, 45.888952],\n            [-190.285462, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 47.336268],\n            [-190.285462, 48.783584],\n            [-183.048883, 48.783584],\n            [-183.048883, 47.336268],\n            [-190.285462, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 48.783584],\n            [-190.285462, 50.2309],\n            [-183.048883, 50.2309],\n            [-183.048883, 48.783584],\n            [-190.285462, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 50.2309],\n            [-190.285462, 51.678216],\n            [-183.048883, 51.678216],\n            [-183.048883, 50.2309],\n            [-190.285462, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 51.678216],\n            [-190.285462, 53.125532],\n            [-183.048883, 53.125532],\n            [-183.048883, 51.678216],\n            [-190.285462, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 53.125532],\n            [-190.285462, 54.572847],\n            [-183.048883, 54.572847],\n            [-183.048883, 53.125532],\n            [-190.285462, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 54.572847],\n            [-190.285462, 56.020163],\n            [-183.048883, 56.020163],\n            [-183.048883, 54.572847],\n            [-190.285462, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 56.020163],\n            [-190.285462, 57.467479],\n            [-183.048883, 57.467479],\n            [-183.048883, 56.020163],\n            [-190.285462, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 57.467479],\n            [-190.285462, 58.914795],\n            [-183.048883, 58.914795],\n            [-183.048883, 57.467479],\n            [-190.285462, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 58.914795],\n            [-190.285462, 60.362111],\n            [-183.048883, 60.362111],\n            [-183.048883, 58.914795],\n            [-190.285462, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 60.362111],\n            [-190.285462, 61.809427],\n            [-183.048883, 61.809427],\n            [-183.048883, 60.362111],\n            [-190.285462, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 61.809427],\n            [-190.285462, 63.256742],\n            [-183.048883, 63.256742],\n            [-183.048883, 61.809427],\n            [-190.285462, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 63.256742],\n            [-190.285462, 64.704058],\n            [-183.048883, 64.704058],\n            [-183.048883, 63.256742],\n            [-190.285462, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 64.704058],\n            [-190.285462, 66.151374],\n            [-183.048883, 66.151374],\n            [-183.048883, 64.704058],\n            [-190.285462, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 66.151374],\n            [-190.285462, 67.59869],\n            [-183.048883, 67.59869],\n            [-183.048883, 66.151374],\n            [-190.285462, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 67.59869],\n            [-190.285462, 69.046006],\n            [-183.048883, 69.046006],\n            [-183.048883, 67.59869],\n            [-190.285462, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 69.046006],\n            [-190.285462, 70.493322],\n            [-183.048883, 70.493322],\n            [-183.048883, 69.046006],\n            [-190.285462, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 70.493322],\n            [-190.285462, 71.940637],\n            [-183.048883, 71.940637],\n            [-183.048883, 70.493322],\n            [-190.285462, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 71.940637],\n            [-190.285462, 73.387953],\n            [-183.048883, 73.387953],\n            [-183.048883, 71.940637],\n            [-190.285462, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 73.387953],\n            [-190.285462, 74.835269],\n            [-183.048883, 74.835269],\n            [-183.048883, 73.387953],\n            [-190.285462, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 74.835269],\n            [-190.285462, 76.282585],\n            [-183.048883, 76.282585],\n            [-183.048883, 74.835269],\n            [-190.285462, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 76.282585],\n            [-190.285462, 77.729901],\n            [-183.048883, 77.729901],\n            [-183.048883, 76.282585],\n            [-190.285462, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -80.027525],\n            [-183.048883, -78.580209],\n            [-175.812304, -78.580209],\n            [-175.812304, -80.027525],\n            [-183.048883, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -78.580209],\n            [-183.048883, -77.132893],\n            [-175.812304, -77.132893],\n            [-175.812304, -78.580209],\n            [-183.048883, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -77.132893],\n            [-183.048883, -75.685577],\n            [-175.812304, -75.685577],\n            [-175.812304, -77.132893],\n            [-183.048883, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -75.685577],\n            [-183.048883, -74.238262],\n            [-175.812304, -74.238262],\n            [-175.812304, -75.685577],\n            [-183.048883, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -74.238262],\n            [-183.048883, -72.790946],\n            [-175.812304, -72.790946],\n            [-175.812304, -74.238262],\n            [-183.048883, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -72.790946],\n            [-183.048883, -71.34363],\n            [-175.812304, -71.34363],\n            [-175.812304, -72.790946],\n            [-183.048883, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -71.34363],\n            [-183.048883, -69.896314],\n            [-175.812304, -69.896314],\n            [-175.812304, -71.34363],\n            [-183.048883, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -69.896314],\n            [-183.048883, -68.448998],\n            [-175.812304, -68.448998],\n            [-175.812304, -69.896314],\n            [-183.048883, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -68.448998],\n            [-183.048883, -67.001682],\n            [-175.812304, -67.001682],\n            [-175.812304, -68.448998],\n            [-183.048883, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -67.001682],\n            [-183.048883, -65.554367],\n            [-175.812304, -65.554367],\n            [-175.812304, -67.001682],\n            [-183.048883, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -65.554367],\n            [-183.048883, -64.107051],\n            [-175.812304, -64.107051],\n            [-175.812304, -65.554367],\n            [-183.048883, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -64.107051],\n            [-183.048883, -62.659735],\n            [-175.812304, -62.659735],\n            [-175.812304, -64.107051],\n            [-183.048883, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -62.659735],\n            [-183.048883, -61.212419],\n            [-175.812304, -61.212419],\n            [-175.812304, -62.659735],\n            [-183.048883, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -61.212419],\n            [-183.048883, -59.765103],\n            [-175.812304, -59.765103],\n            [-175.812304, -61.212419],\n            [-183.048883, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -59.765103],\n            [-183.048883, -58.317787],\n            [-175.812304, -58.317787],\n            [-175.812304, -59.765103],\n            [-183.048883, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -58.317787],\n            [-183.048883, -56.870472],\n            [-175.812304, -56.870472],\n            [-175.812304, -58.317787],\n            [-183.048883, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -56.870472],\n            [-183.048883, -55.423156],\n            [-175.812304, -55.423156],\n            [-175.812304, -56.870472],\n            [-183.048883, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -55.423156],\n            [-183.048883, -53.97584],\n            [-175.812304, -53.97584],\n            [-175.812304, -55.423156],\n            [-183.048883, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -53.97584],\n            [-183.048883, -52.528524],\n            [-175.812304, -52.528524],\n            [-175.812304, -53.97584],\n            [-183.048883, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -52.528524],\n            [-183.048883, -51.081208],\n            [-175.812304, -51.081208],\n            [-175.812304, -52.528524],\n            [-183.048883, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -51.081208],\n            [-183.048883, -49.633892],\n            [-175.812304, -49.633892],\n            [-175.812304, -51.081208],\n            [-183.048883, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -49.633892],\n            [-183.048883, -48.186577],\n            [-175.812304, -48.186577],\n            [-175.812304, -49.633892],\n            [-183.048883, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -48.186577],\n            [-183.048883, -46.739261],\n            [-175.812304, -46.739261],\n            [-175.812304, -48.186577],\n            [-183.048883, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -46.739261],\n            [-183.048883, -45.291945],\n            [-175.812304, -45.291945],\n            [-175.812304, -46.739261],\n            [-183.048883, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -45.291945],\n            [-183.048883, -43.844629],\n            [-175.812304, -43.844629],\n            [-175.812304, -45.291945],\n            [-183.048883, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -43.844629],\n            [-183.048883, -42.397313],\n            [-175.812304, -42.397313],\n            [-175.812304, -43.844629],\n            [-183.048883, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -42.397313],\n            [-183.048883, -40.949997],\n            [-175.812304, -40.949997],\n            [-175.812304, -42.397313],\n            [-183.048883, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -40.949997],\n            [-183.048883, -39.502682],\n            [-175.812304, -39.502682],\n            [-175.812304, -40.949997],\n            [-183.048883, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -39.502682],\n            [-183.048883, -38.055366],\n            [-175.812304, -38.055366],\n            [-175.812304, -39.502682],\n            [-183.048883, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -38.055366],\n            [-183.048883, -36.60805],\n            [-175.812304, -36.60805],\n            [-175.812304, -38.055366],\n            [-183.048883, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -36.60805],\n            [-183.048883, -35.160734],\n            [-175.812304, -35.160734],\n            [-175.812304, -36.60805],\n            [-183.048883, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -35.160734],\n            [-183.048883, -33.713418],\n            [-175.812304, -33.713418],\n            [-175.812304, -35.160734],\n            [-183.048883, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -33.713418],\n            [-183.048883, -32.266102],\n            [-175.812304, -32.266102],\n            [-175.812304, -33.713418],\n            [-183.048883, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -32.266102],\n            [-183.048883, -30.818787],\n            [-175.812304, -30.818787],\n            [-175.812304, -32.266102],\n            [-183.048883, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -30.818787],\n            [-183.048883, -29.371471],\n            [-175.812304, -29.371471],\n            [-175.812304, -30.818787],\n            [-183.048883, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -29.371471],\n            [-183.048883, -27.924155],\n            [-175.812304, -27.924155],\n            [-175.812304, -29.371471],\n            [-183.048883, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -27.924155],\n            [-183.048883, -26.476839],\n            [-175.812304, -26.476839],\n            [-175.812304, -27.924155],\n            [-183.048883, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -26.476839],\n            [-183.048883, -25.029523],\n            [-175.812304, -25.029523],\n            [-175.812304, -26.476839],\n            [-183.048883, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -25.029523],\n            [-183.048883, -23.582207],\n            [-175.812304, -23.582207],\n            [-175.812304, -25.029523],\n            [-183.048883, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -23.582207],\n            [-183.048883, -22.134892],\n            [-175.812304, -22.134892],\n            [-175.812304, -23.582207],\n            [-183.048883, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -22.134892],\n            [-183.048883, -20.687576],\n            [-175.812304, -20.687576],\n            [-175.812304, -22.134892],\n            [-183.048883, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -20.687576],\n            [-183.048883, -19.24026],\n            [-175.812304, -19.24026],\n            [-175.812304, -20.687576],\n            [-183.048883, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -19.24026],\n            [-183.048883, -17.792944],\n            [-175.812304, -17.792944],\n            [-175.812304, -19.24026],\n            [-183.048883, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -17.792944],\n            [-183.048883, -16.345628],\n            [-175.812304, -16.345628],\n            [-175.812304, -17.792944],\n            [-183.048883, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -16.345628],\n            [-183.048883, -14.898312],\n            [-175.812304, -14.898312],\n            [-175.812304, -16.345628],\n            [-183.048883, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -14.898312],\n            [-183.048883, -13.450997],\n            [-175.812304, -13.450997],\n            [-175.812304, -14.898312],\n            [-183.048883, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -13.450997],\n            [-183.048883, -12.003681],\n            [-175.812304, -12.003681],\n            [-175.812304, -13.450997],\n            [-183.048883, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -12.003681],\n            [-183.048883, -10.556365],\n            [-175.812304, -10.556365],\n            [-175.812304, -12.003681],\n            [-183.048883, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -10.556365],\n            [-183.048883, -9.109049],\n            [-175.812304, -9.109049],\n            [-175.812304, -10.556365],\n            [-183.048883, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -9.109049],\n            [-183.048883, -7.661733],\n            [-175.812304, -7.661733],\n            [-175.812304, -9.109049],\n            [-183.048883, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -7.661733],\n            [-183.048883, -6.214417],\n            [-175.812304, -6.214417],\n            [-175.812304, -7.661733],\n            [-183.048883, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -6.214417],\n            [-183.048883, -4.767102],\n            [-175.812304, -4.767102],\n            [-175.812304, -6.214417],\n            [-183.048883, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -4.767102],\n            [-183.048883, -3.319786],\n            [-175.812304, -3.319786],\n            [-175.812304, -4.767102],\n            [-183.048883, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -3.319786],\n            [-183.048883, -1.87247],\n            [-175.812304, -1.87247],\n            [-175.812304, -3.319786],\n            [-183.048883, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -1.87247],\n            [-183.048883, -0.425154],\n            [-175.812304, -0.425154],\n            [-175.812304, -1.87247],\n            [-183.048883, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -0.425154],\n            [-183.048883, 1.022162],\n            [-175.812304, 1.022162],\n            [-175.812304, -0.425154],\n            [-183.048883, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 1.022162],\n            [-183.048883, 2.469478],\n            [-175.812304, 2.469478],\n            [-175.812304, 1.022162],\n            [-183.048883, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 2.469478],\n            [-183.048883, 3.916793],\n            [-175.812304, 3.916793],\n            [-175.812304, 2.469478],\n            [-183.048883, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 3.916793],\n            [-183.048883, 5.364109],\n            [-175.812304, 5.364109],\n            [-175.812304, 3.916793],\n            [-183.048883, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 5.364109],\n            [-183.048883, 6.811425],\n            [-175.812304, 6.811425],\n            [-175.812304, 5.364109],\n            [-183.048883, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 6.811425],\n            [-183.048883, 8.258741],\n            [-175.812304, 8.258741],\n            [-175.812304, 6.811425],\n            [-183.048883, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 8.258741],\n            [-183.048883, 9.706057],\n            [-175.812304, 9.706057],\n            [-175.812304, 8.258741],\n            [-183.048883, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 9.706057],\n            [-183.048883, 11.153373],\n            [-175.812304, 11.153373],\n            [-175.812304, 9.706057],\n            [-183.048883, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 11.153373],\n            [-183.048883, 12.600688],\n            [-175.812304, 12.600688],\n            [-175.812304, 11.153373],\n            [-183.048883, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 12.600688],\n            [-183.048883, 14.048004],\n            [-175.812304, 14.048004],\n            [-175.812304, 12.600688],\n            [-183.048883, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 14.048004],\n            [-183.048883, 15.49532],\n            [-175.812304, 15.49532],\n            [-175.812304, 14.048004],\n            [-183.048883, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 15.49532],\n            [-183.048883, 16.942636],\n            [-175.812304, 16.942636],\n            [-175.812304, 15.49532],\n            [-183.048883, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 16.942636],\n            [-183.048883, 18.389952],\n            [-175.812304, 18.389952],\n            [-175.812304, 16.942636],\n            [-183.048883, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 18.389952],\n            [-183.048883, 19.837268],\n            [-175.812304, 19.837268],\n            [-175.812304, 18.389952],\n            [-183.048883, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 19.837268],\n            [-183.048883, 21.284583],\n            [-175.812304, 21.284583],\n            [-175.812304, 19.837268],\n            [-183.048883, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 21.284583],\n            [-183.048883, 22.731899],\n            [-175.812304, 22.731899],\n            [-175.812304, 21.284583],\n            [-183.048883, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 22.731899],\n            [-183.048883, 24.179215],\n            [-175.812304, 24.179215],\n            [-175.812304, 22.731899],\n            [-183.048883, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 24.179215],\n            [-183.048883, 25.626531],\n            [-175.812304, 25.626531],\n            [-175.812304, 24.179215],\n            [-183.048883, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 25.626531],\n            [-183.048883, 27.073847],\n            [-175.812304, 27.073847],\n            [-175.812304, 25.626531],\n            [-183.048883, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 27.073847],\n            [-183.048883, 28.521163],\n            [-175.812304, 28.521163],\n            [-175.812304, 27.073847],\n            [-183.048883, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 28.521163],\n            [-183.048883, 29.968478],\n            [-175.812304, 29.968478],\n            [-175.812304, 28.521163],\n            [-183.048883, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 29.968478],\n            [-183.048883, 31.415794],\n            [-175.812304, 31.415794],\n            [-175.812304, 29.968478],\n            [-183.048883, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 31.415794],\n            [-183.048883, 32.86311],\n            [-175.812304, 32.86311],\n            [-175.812304, 31.415794],\n            [-183.048883, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 32.86311],\n            [-183.048883, 34.310426],\n            [-175.812304, 34.310426],\n            [-175.812304, 32.86311],\n            [-183.048883, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 34.310426],\n            [-183.048883, 35.757742],\n            [-175.812304, 35.757742],\n            [-175.812304, 34.310426],\n            [-183.048883, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 35.757742],\n            [-183.048883, 37.205058],\n            [-175.812304, 37.205058],\n            [-175.812304, 35.757742],\n            [-183.048883, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 37.205058],\n            [-183.048883, 38.652373],\n            [-175.812304, 38.652373],\n            [-175.812304, 37.205058],\n            [-183.048883, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 38.652373],\n            [-183.048883, 40.099689],\n            [-175.812304, 40.099689],\n            [-175.812304, 38.652373],\n            [-183.048883, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 40.099689],\n            [-183.048883, 41.547005],\n            [-175.812304, 41.547005],\n            [-175.812304, 40.099689],\n            [-183.048883, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 41.547005],\n            [-183.048883, 42.994321],\n            [-175.812304, 42.994321],\n            [-175.812304, 41.547005],\n            [-183.048883, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 42.994321],\n            [-183.048883, 44.441637],\n            [-175.812304, 44.441637],\n            [-175.812304, 42.994321],\n            [-183.048883, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 44.441637],\n            [-183.048883, 45.888952],\n            [-175.812304, 45.888952],\n            [-175.812304, 44.441637],\n            [-183.048883, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 45.888952],\n            [-183.048883, 47.336268],\n            [-175.812304, 47.336268],\n            [-175.812304, 45.888952],\n            [-183.048883, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 47.336268],\n            [-183.048883, 48.783584],\n            [-175.812304, 48.783584],\n            [-175.812304, 47.336268],\n            [-183.048883, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 48.783584],\n            [-183.048883, 50.2309],\n            [-175.812304, 50.2309],\n            [-175.812304, 48.783584],\n            [-183.048883, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 50.2309],\n            [-183.048883, 51.678216],\n            [-175.812304, 51.678216],\n            [-175.812304, 50.2309],\n            [-183.048883, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 51.678216],\n            [-183.048883, 53.125532],\n            [-175.812304, 53.125532],\n            [-175.812304, 51.678216],\n            [-183.048883, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 53.125532],\n            [-183.048883, 54.572847],\n            [-175.812304, 54.572847],\n            [-175.812304, 53.125532],\n            [-183.048883, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 54.572847],\n            [-183.048883, 56.020163],\n            [-175.812304, 56.020163],\n            [-175.812304, 54.572847],\n            [-183.048883, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 56.020163],\n            [-183.048883, 57.467479],\n            [-175.812304, 57.467479],\n            [-175.812304, 56.020163],\n            [-183.048883, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 57.467479],\n            [-183.048883, 58.914795],\n            [-175.812304, 58.914795],\n            [-175.812304, 57.467479],\n            [-183.048883, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 58.914795],\n            [-183.048883, 60.362111],\n            [-175.812304, 60.362111],\n            [-175.812304, 58.914795],\n            [-183.048883, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 60.362111],\n            [-183.048883, 61.809427],\n            [-175.812304, 61.809427],\n            [-175.812304, 60.362111],\n            [-183.048883, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 61.809427],\n            [-183.048883, 63.256742],\n            [-175.812304, 63.256742],\n            [-175.812304, 61.809427],\n            [-183.048883, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 63.256742],\n            [-183.048883, 64.704058],\n            [-175.812304, 64.704058],\n            [-175.812304, 63.256742],\n            [-183.048883, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 64.704058],\n            [-183.048883, 66.151374],\n            [-175.812304, 66.151374],\n            [-175.812304, 64.704058],\n            [-183.048883, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 66.151374],\n            [-183.048883, 67.59869],\n            [-175.812304, 67.59869],\n            [-175.812304, 66.151374],\n            [-183.048883, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 67.59869],\n            [-183.048883, 69.046006],\n            [-175.812304, 69.046006],\n            [-175.812304, 67.59869],\n            [-183.048883, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 69.046006],\n            [-183.048883, 70.493322],\n            [-175.812304, 70.493322],\n            [-175.812304, 69.046006],\n            [-183.048883, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 70.493322],\n            [-183.048883, 71.940637],\n            [-175.812304, 71.940637],\n            [-175.812304, 70.493322],\n            [-183.048883, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 71.940637],\n            [-183.048883, 73.387953],\n            [-175.812304, 73.387953],\n            [-175.812304, 71.940637],\n            [-183.048883, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 73.387953],\n            [-183.048883, 74.835269],\n            [-175.812304, 74.835269],\n            [-175.812304, 73.387953],\n            [-183.048883, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 74.835269],\n            [-183.048883, 76.282585],\n            [-175.812304, 76.282585],\n            [-175.812304, 74.835269],\n            [-183.048883, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 76.282585],\n            [-183.048883, 77.729901],\n            [-175.812304, 77.729901],\n            [-175.812304, 76.282585],\n            [-183.048883, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -80.027525],\n            [-175.812304, -78.580209],\n            [-168.575725, -78.580209],\n            [-168.575725, -80.027525],\n            [-175.812304, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -78.580209],\n            [-175.812304, -77.132893],\n            [-168.575725, -77.132893],\n            [-168.575725, -78.580209],\n            [-175.812304, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -77.132893],\n            [-175.812304, -75.685577],\n            [-168.575725, -75.685577],\n            [-168.575725, -77.132893],\n            [-175.812304, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -75.685577],\n            [-175.812304, -74.238262],\n            [-168.575725, -74.238262],\n            [-168.575725, -75.685577],\n            [-175.812304, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -74.238262],\n            [-175.812304, -72.790946],\n            [-168.575725, -72.790946],\n            [-168.575725, -74.238262],\n            [-175.812304, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -72.790946],\n            [-175.812304, -71.34363],\n            [-168.575725, -71.34363],\n            [-168.575725, -72.790946],\n            [-175.812304, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -71.34363],\n            [-175.812304, -69.896314],\n            [-168.575725, -69.896314],\n            [-168.575725, -71.34363],\n            [-175.812304, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -69.896314],\n            [-175.812304, -68.448998],\n            [-168.575725, -68.448998],\n            [-168.575725, -69.896314],\n            [-175.812304, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -68.448998],\n            [-175.812304, -67.001682],\n            [-168.575725, -67.001682],\n            [-168.575725, -68.448998],\n            [-175.812304, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -67.001682],\n            [-175.812304, -65.554367],\n            [-168.575725, -65.554367],\n            [-168.575725, -67.001682],\n            [-175.812304, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -65.554367],\n            [-175.812304, -64.107051],\n            [-168.575725, -64.107051],\n            [-168.575725, -65.554367],\n            [-175.812304, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -64.107051],\n            [-175.812304, -62.659735],\n            [-168.575725, -62.659735],\n            [-168.575725, -64.107051],\n            [-175.812304, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -62.659735],\n            [-175.812304, -61.212419],\n            [-168.575725, -61.212419],\n            [-168.575725, -62.659735],\n            [-175.812304, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -61.212419],\n            [-175.812304, -59.765103],\n            [-168.575725, -59.765103],\n            [-168.575725, -61.212419],\n            [-175.812304, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -59.765103],\n            [-175.812304, -58.317787],\n            [-168.575725, -58.317787],\n            [-168.575725, -59.765103],\n            [-175.812304, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -58.317787],\n            [-175.812304, -56.870472],\n            [-168.575725, -56.870472],\n            [-168.575725, -58.317787],\n            [-175.812304, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -56.870472],\n            [-175.812304, -55.423156],\n            [-168.575725, -55.423156],\n            [-168.575725, -56.870472],\n            [-175.812304, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -55.423156],\n            [-175.812304, -53.97584],\n            [-168.575725, -53.97584],\n            [-168.575725, -55.423156],\n            [-175.812304, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -53.97584],\n            [-175.812304, -52.528524],\n            [-168.575725, -52.528524],\n            [-168.575725, -53.97584],\n            [-175.812304, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -52.528524],\n            [-175.812304, -51.081208],\n            [-168.575725, -51.081208],\n            [-168.575725, -52.528524],\n            [-175.812304, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -51.081208],\n            [-175.812304, -49.633892],\n            [-168.575725, -49.633892],\n            [-168.575725, -51.081208],\n            [-175.812304, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -49.633892],\n            [-175.812304, -48.186577],\n            [-168.575725, -48.186577],\n            [-168.575725, -49.633892],\n            [-175.812304, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -48.186577],\n            [-175.812304, -46.739261],\n            [-168.575725, -46.739261],\n            [-168.575725, -48.186577],\n            [-175.812304, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -46.739261],\n            [-175.812304, -45.291945],\n            [-168.575725, -45.291945],\n            [-168.575725, -46.739261],\n            [-175.812304, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -45.291945],\n            [-175.812304, -43.844629],\n            [-168.575725, -43.844629],\n            [-168.575725, -45.291945],\n            [-175.812304, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -43.844629],\n            [-175.812304, -42.397313],\n            [-168.575725, -42.397313],\n            [-168.575725, -43.844629],\n            [-175.812304, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -42.397313],\n            [-175.812304, -40.949997],\n            [-168.575725, -40.949997],\n            [-168.575725, -42.397313],\n            [-175.812304, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -40.949997],\n            [-175.812304, -39.502682],\n            [-168.575725, -39.502682],\n            [-168.575725, -40.949997],\n            [-175.812304, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -39.502682],\n            [-175.812304, -38.055366],\n            [-168.575725, -38.055366],\n            [-168.575725, -39.502682],\n            [-175.812304, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -38.055366],\n            [-175.812304, -36.60805],\n            [-168.575725, -36.60805],\n            [-168.575725, -38.055366],\n            [-175.812304, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -36.60805],\n            [-175.812304, -35.160734],\n            [-168.575725, -35.160734],\n            [-168.575725, -36.60805],\n            [-175.812304, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -35.160734],\n            [-175.812304, -33.713418],\n            [-168.575725, -33.713418],\n            [-168.575725, -35.160734],\n            [-175.812304, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -33.713418],\n            [-175.812304, -32.266102],\n            [-168.575725, -32.266102],\n            [-168.575725, -33.713418],\n            [-175.812304, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -32.266102],\n            [-175.812304, -30.818787],\n            [-168.575725, -30.818787],\n            [-168.575725, -32.266102],\n            [-175.812304, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -30.818787],\n            [-175.812304, -29.371471],\n            [-168.575725, -29.371471],\n            [-168.575725, -30.818787],\n            [-175.812304, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -29.371471],\n            [-175.812304, -27.924155],\n            [-168.575725, -27.924155],\n            [-168.575725, -29.371471],\n            [-175.812304, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -27.924155],\n            [-175.812304, -26.476839],\n            [-168.575725, -26.476839],\n            [-168.575725, -27.924155],\n            [-175.812304, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -26.476839],\n            [-175.812304, -25.029523],\n            [-168.575725, -25.029523],\n            [-168.575725, -26.476839],\n            [-175.812304, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -25.029523],\n            [-175.812304, -23.582207],\n            [-168.575725, -23.582207],\n            [-168.575725, -25.029523],\n            [-175.812304, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -23.582207],\n            [-175.812304, -22.134892],\n            [-168.575725, -22.134892],\n            [-168.575725, -23.582207],\n            [-175.812304, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -22.134892],\n            [-175.812304, -20.687576],\n            [-168.575725, -20.687576],\n            [-168.575725, -22.134892],\n            [-175.812304, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -20.687576],\n            [-175.812304, -19.24026],\n            [-168.575725, -19.24026],\n            [-168.575725, -20.687576],\n            [-175.812304, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -19.24026],\n            [-175.812304, -17.792944],\n            [-168.575725, -17.792944],\n            [-168.575725, -19.24026],\n            [-175.812304, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -17.792944],\n            [-175.812304, -16.345628],\n            [-168.575725, -16.345628],\n            [-168.575725, -17.792944],\n            [-175.812304, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -16.345628],\n            [-175.812304, -14.898312],\n            [-168.575725, -14.898312],\n            [-168.575725, -16.345628],\n            [-175.812304, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -14.898312],\n            [-175.812304, -13.450997],\n            [-168.575725, -13.450997],\n            [-168.575725, -14.898312],\n            [-175.812304, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -13.450997],\n            [-175.812304, -12.003681],\n            [-168.575725, -12.003681],\n            [-168.575725, -13.450997],\n            [-175.812304, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -12.003681],\n            [-175.812304, -10.556365],\n            [-168.575725, -10.556365],\n            [-168.575725, -12.003681],\n            [-175.812304, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -10.556365],\n            [-175.812304, -9.109049],\n            [-168.575725, -9.109049],\n            [-168.575725, -10.556365],\n            [-175.812304, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -9.109049],\n            [-175.812304, -7.661733],\n            [-168.575725, -7.661733],\n            [-168.575725, -9.109049],\n            [-175.812304, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -7.661733],\n            [-175.812304, -6.214417],\n            [-168.575725, -6.214417],\n            [-168.575725, -7.661733],\n            [-175.812304, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -6.214417],\n            [-175.812304, -4.767102],\n            [-168.575725, -4.767102],\n            [-168.575725, -6.214417],\n            [-175.812304, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -4.767102],\n            [-175.812304, -3.319786],\n            [-168.575725, -3.319786],\n            [-168.575725, -4.767102],\n            [-175.812304, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -3.319786],\n            [-175.812304, -1.87247],\n            [-168.575725, -1.87247],\n            [-168.575725, -3.319786],\n            [-175.812304, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -1.87247],\n            [-175.812304, -0.425154],\n            [-168.575725, -0.425154],\n            [-168.575725, -1.87247],\n            [-175.812304, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -0.425154],\n            [-175.812304, 1.022162],\n            [-168.575725, 1.022162],\n            [-168.575725, -0.425154],\n            [-175.812304, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 1.022162],\n            [-175.812304, 2.469478],\n            [-168.575725, 2.469478],\n            [-168.575725, 1.022162],\n            [-175.812304, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 2.469478],\n            [-175.812304, 3.916793],\n            [-168.575725, 3.916793],\n            [-168.575725, 2.469478],\n            [-175.812304, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 3.916793],\n            [-175.812304, 5.364109],\n            [-168.575725, 5.364109],\n            [-168.575725, 3.916793],\n            [-175.812304, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 5.364109],\n            [-175.812304, 6.811425],\n            [-168.575725, 6.811425],\n            [-168.575725, 5.364109],\n            [-175.812304, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 6.811425],\n            [-175.812304, 8.258741],\n            [-168.575725, 8.258741],\n            [-168.575725, 6.811425],\n            [-175.812304, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 8.258741],\n            [-175.812304, 9.706057],\n            [-168.575725, 9.706057],\n            [-168.575725, 8.258741],\n            [-175.812304, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 9.706057],\n            [-175.812304, 11.153373],\n            [-168.575725, 11.153373],\n            [-168.575725, 9.706057],\n            [-175.812304, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 11.153373],\n            [-175.812304, 12.600688],\n            [-168.575725, 12.600688],\n            [-168.575725, 11.153373],\n            [-175.812304, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 12.600688],\n            [-175.812304, 14.048004],\n            [-168.575725, 14.048004],\n            [-168.575725, 12.600688],\n            [-175.812304, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 14.048004],\n            [-175.812304, 15.49532],\n            [-168.575725, 15.49532],\n            [-168.575725, 14.048004],\n            [-175.812304, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 15.49532],\n            [-175.812304, 16.942636],\n            [-168.575725, 16.942636],\n            [-168.575725, 15.49532],\n            [-175.812304, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 16.942636],\n            [-175.812304, 18.389952],\n            [-168.575725, 18.389952],\n            [-168.575725, 16.942636],\n            [-175.812304, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 18.389952],\n            [-175.812304, 19.837268],\n            [-168.575725, 19.837268],\n            [-168.575725, 18.389952],\n            [-175.812304, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 19.837268],\n            [-175.812304, 21.284583],\n            [-168.575725, 21.284583],\n            [-168.575725, 19.837268],\n            [-175.812304, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 21.284583],\n            [-175.812304, 22.731899],\n            [-168.575725, 22.731899],\n            [-168.575725, 21.284583],\n            [-175.812304, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 22.731899],\n            [-175.812304, 24.179215],\n            [-168.575725, 24.179215],\n            [-168.575725, 22.731899],\n            [-175.812304, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 24.179215],\n            [-175.812304, 25.626531],\n            [-168.575725, 25.626531],\n            [-168.575725, 24.179215],\n            [-175.812304, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 25.626531],\n            [-175.812304, 27.073847],\n            [-168.575725, 27.073847],\n            [-168.575725, 25.626531],\n            [-175.812304, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 27.073847],\n            [-175.812304, 28.521163],\n            [-168.575725, 28.521163],\n            [-168.575725, 27.073847],\n            [-175.812304, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 28.521163],\n            [-175.812304, 29.968478],\n            [-168.575725, 29.968478],\n            [-168.575725, 28.521163],\n            [-175.812304, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 29.968478],\n            [-175.812304, 31.415794],\n            [-168.575725, 31.415794],\n            [-168.575725, 29.968478],\n            [-175.812304, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 31.415794],\n            [-175.812304, 32.86311],\n            [-168.575725, 32.86311],\n            [-168.575725, 31.415794],\n            [-175.812304, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 32.86311],\n            [-175.812304, 34.310426],\n            [-168.575725, 34.310426],\n            [-168.575725, 32.86311],\n            [-175.812304, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 34.310426],\n            [-175.812304, 35.757742],\n            [-168.575725, 35.757742],\n            [-168.575725, 34.310426],\n            [-175.812304, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 35.757742],\n            [-175.812304, 37.205058],\n            [-168.575725, 37.205058],\n            [-168.575725, 35.757742],\n            [-175.812304, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 37.205058],\n            [-175.812304, 38.652373],\n            [-168.575725, 38.652373],\n            [-168.575725, 37.205058],\n            [-175.812304, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 38.652373],\n            [-175.812304, 40.099689],\n            [-168.575725, 40.099689],\n            [-168.575725, 38.652373],\n            [-175.812304, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 40.099689],\n            [-175.812304, 41.547005],\n            [-168.575725, 41.547005],\n            [-168.575725, 40.099689],\n            [-175.812304, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 41.547005],\n            [-175.812304, 42.994321],\n            [-168.575725, 42.994321],\n            [-168.575725, 41.547005],\n            [-175.812304, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 42.994321],\n            [-175.812304, 44.441637],\n            [-168.575725, 44.441637],\n            [-168.575725, 42.994321],\n            [-175.812304, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 44.441637],\n            [-175.812304, 45.888952],\n            [-168.575725, 45.888952],\n            [-168.575725, 44.441637],\n            [-175.812304, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 45.888952],\n            [-175.812304, 47.336268],\n            [-168.575725, 47.336268],\n            [-168.575725, 45.888952],\n            [-175.812304, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 47.336268],\n            [-175.812304, 48.783584],\n            [-168.575725, 48.783584],\n            [-168.575725, 47.336268],\n            [-175.812304, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 48.783584],\n            [-175.812304, 50.2309],\n            [-168.575725, 50.2309],\n            [-168.575725, 48.783584],\n            [-175.812304, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 50.2309],\n            [-175.812304, 51.678216],\n            [-168.575725, 51.678216],\n            [-168.575725, 50.2309],\n            [-175.812304, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 51.678216],\n            [-175.812304, 53.125532],\n            [-168.575725, 53.125532],\n            [-168.575725, 51.678216],\n            [-175.812304, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 53.125532],\n            [-175.812304, 54.572847],\n            [-168.575725, 54.572847],\n            [-168.575725, 53.125532],\n            [-175.812304, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 54.572847],\n            [-175.812304, 56.020163],\n            [-168.575725, 56.020163],\n            [-168.575725, 54.572847],\n            [-175.812304, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 56.020163],\n            [-175.812304, 57.467479],\n            [-168.575725, 57.467479],\n            [-168.575725, 56.020163],\n            [-175.812304, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 57.467479],\n            [-175.812304, 58.914795],\n            [-168.575725, 58.914795],\n            [-168.575725, 57.467479],\n            [-175.812304, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 58.914795],\n            [-175.812304, 60.362111],\n            [-168.575725, 60.362111],\n            [-168.575725, 58.914795],\n            [-175.812304, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 60.362111],\n            [-175.812304, 61.809427],\n            [-168.575725, 61.809427],\n            [-168.575725, 60.362111],\n            [-175.812304, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 61.809427],\n            [-175.812304, 63.256742],\n            [-168.575725, 63.256742],\n            [-168.575725, 61.809427],\n            [-175.812304, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 63.256742],\n            [-175.812304, 64.704058],\n            [-168.575725, 64.704058],\n            [-168.575725, 63.256742],\n            [-175.812304, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 64.704058],\n            [-175.812304, 66.151374],\n            [-168.575725, 66.151374],\n            [-168.575725, 64.704058],\n            [-175.812304, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 66.151374],\n            [-175.812304, 67.59869],\n            [-168.575725, 67.59869],\n            [-168.575725, 66.151374],\n            [-175.812304, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 67.59869],\n            [-175.812304, 69.046006],\n            [-168.575725, 69.046006],\n            [-168.575725, 67.59869],\n            [-175.812304, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 69.046006],\n            [-175.812304, 70.493322],\n            [-168.575725, 70.493322],\n            [-168.575725, 69.046006],\n            [-175.812304, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 70.493322],\n            [-175.812304, 71.940637],\n            [-168.575725, 71.940637],\n            [-168.575725, 70.493322],\n            [-175.812304, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 71.940637],\n            [-175.812304, 73.387953],\n            [-168.575725, 73.387953],\n            [-168.575725, 71.940637],\n            [-175.812304, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 73.387953],\n            [-175.812304, 74.835269],\n            [-168.575725, 74.835269],\n            [-168.575725, 73.387953],\n            [-175.812304, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 74.835269],\n            [-175.812304, 76.282585],\n            [-168.575725, 76.282585],\n            [-168.575725, 74.835269],\n            [-175.812304, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 76.282585],\n            [-175.812304, 77.729901],\n            [-168.575725, 77.729901],\n            [-168.575725, 76.282585],\n            [-175.812304, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -80.027525],\n            [-168.575725, -78.580209],\n            [-161.339146, -78.580209],\n            [-161.339146, -80.027525],\n            [-168.575725, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -78.580209],\n            [-168.575725, -77.132893],\n            [-161.339146, -77.132893],\n            [-161.339146, -78.580209],\n            [-168.575725, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -77.132893],\n            [-168.575725, -75.685577],\n            [-161.339146, -75.685577],\n            [-161.339146, -77.132893],\n            [-168.575725, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -75.685577],\n            [-168.575725, -74.238262],\n            [-161.339146, -74.238262],\n            [-161.339146, -75.685577],\n            [-168.575725, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -74.238262],\n            [-168.575725, -72.790946],\n            [-161.339146, -72.790946],\n            [-161.339146, -74.238262],\n            [-168.575725, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -72.790946],\n            [-168.575725, -71.34363],\n            [-161.339146, -71.34363],\n            [-161.339146, -72.790946],\n            [-168.575725, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -71.34363],\n            [-168.575725, -69.896314],\n            [-161.339146, -69.896314],\n            [-161.339146, -71.34363],\n            [-168.575725, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -69.896314],\n            [-168.575725, -68.448998],\n            [-161.339146, -68.448998],\n            [-161.339146, -69.896314],\n            [-168.575725, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -68.448998],\n            [-168.575725, -67.001682],\n            [-161.339146, -67.001682],\n            [-161.339146, -68.448998],\n            [-168.575725, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -67.001682],\n            [-168.575725, -65.554367],\n            [-161.339146, -65.554367],\n            [-161.339146, -67.001682],\n            [-168.575725, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -65.554367],\n            [-168.575725, -64.107051],\n            [-161.339146, -64.107051],\n            [-161.339146, -65.554367],\n            [-168.575725, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -64.107051],\n            [-168.575725, -62.659735],\n            [-161.339146, -62.659735],\n            [-161.339146, -64.107051],\n            [-168.575725, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -62.659735],\n            [-168.575725, -61.212419],\n            [-161.339146, -61.212419],\n            [-161.339146, -62.659735],\n            [-168.575725, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -61.212419],\n            [-168.575725, -59.765103],\n            [-161.339146, -59.765103],\n            [-161.339146, -61.212419],\n            [-168.575725, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -59.765103],\n            [-168.575725, -58.317787],\n            [-161.339146, -58.317787],\n            [-161.339146, -59.765103],\n            [-168.575725, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -58.317787],\n            [-168.575725, -56.870472],\n            [-161.339146, -56.870472],\n            [-161.339146, -58.317787],\n            [-168.575725, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -56.870472],\n            [-168.575725, -55.423156],\n            [-161.339146, -55.423156],\n            [-161.339146, -56.870472],\n            [-168.575725, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -55.423156],\n            [-168.575725, -53.97584],\n            [-161.339146, -53.97584],\n            [-161.339146, -55.423156],\n            [-168.575725, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -53.97584],\n            [-168.575725, -52.528524],\n            [-161.339146, -52.528524],\n            [-161.339146, -53.97584],\n            [-168.575725, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -52.528524],\n            [-168.575725, -51.081208],\n            [-161.339146, -51.081208],\n            [-161.339146, -52.528524],\n            [-168.575725, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -51.081208],\n            [-168.575725, -49.633892],\n            [-161.339146, -49.633892],\n            [-161.339146, -51.081208],\n            [-168.575725, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -49.633892],\n            [-168.575725, -48.186577],\n            [-161.339146, -48.186577],\n            [-161.339146, -49.633892],\n            [-168.575725, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -48.186577],\n            [-168.575725, -46.739261],\n            [-161.339146, -46.739261],\n            [-161.339146, -48.186577],\n            [-168.575725, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -46.739261],\n            [-168.575725, -45.291945],\n            [-161.339146, -45.291945],\n            [-161.339146, -46.739261],\n            [-168.575725, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -45.291945],\n            [-168.575725, -43.844629],\n            [-161.339146, -43.844629],\n            [-161.339146, -45.291945],\n            [-168.575725, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -43.844629],\n            [-168.575725, -42.397313],\n            [-161.339146, -42.397313],\n            [-161.339146, -43.844629],\n            [-168.575725, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -42.397313],\n            [-168.575725, -40.949997],\n            [-161.339146, -40.949997],\n            [-161.339146, -42.397313],\n            [-168.575725, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -40.949997],\n            [-168.575725, -39.502682],\n            [-161.339146, -39.502682],\n            [-161.339146, -40.949997],\n            [-168.575725, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -39.502682],\n            [-168.575725, -38.055366],\n            [-161.339146, -38.055366],\n            [-161.339146, -39.502682],\n            [-168.575725, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -38.055366],\n            [-168.575725, -36.60805],\n            [-161.339146, -36.60805],\n            [-161.339146, -38.055366],\n            [-168.575725, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -36.60805],\n            [-168.575725, -35.160734],\n            [-161.339146, -35.160734],\n            [-161.339146, -36.60805],\n            [-168.575725, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -35.160734],\n            [-168.575725, -33.713418],\n            [-161.339146, -33.713418],\n            [-161.339146, -35.160734],\n            [-168.575725, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -33.713418],\n            [-168.575725, -32.266102],\n            [-161.339146, -32.266102],\n            [-161.339146, -33.713418],\n            [-168.575725, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -32.266102],\n            [-168.575725, -30.818787],\n            [-161.339146, -30.818787],\n            [-161.339146, -32.266102],\n            [-168.575725, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -30.818787],\n            [-168.575725, -29.371471],\n            [-161.339146, -29.371471],\n            [-161.339146, -30.818787],\n            [-168.575725, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -29.371471],\n            [-168.575725, -27.924155],\n            [-161.339146, -27.924155],\n            [-161.339146, -29.371471],\n            [-168.575725, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -27.924155],\n            [-168.575725, -26.476839],\n            [-161.339146, -26.476839],\n            [-161.339146, -27.924155],\n            [-168.575725, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -26.476839],\n            [-168.575725, -25.029523],\n            [-161.339146, -25.029523],\n            [-161.339146, -26.476839],\n            [-168.575725, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -25.029523],\n            [-168.575725, -23.582207],\n            [-161.339146, -23.582207],\n            [-161.339146, -25.029523],\n            [-168.575725, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -23.582207],\n            [-168.575725, -22.134892],\n            [-161.339146, -22.134892],\n            [-161.339146, -23.582207],\n            [-168.575725, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -22.134892],\n            [-168.575725, -20.687576],\n            [-161.339146, -20.687576],\n            [-161.339146, -22.134892],\n            [-168.575725, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -20.687576],\n            [-168.575725, -19.24026],\n            [-161.339146, -19.24026],\n            [-161.339146, -20.687576],\n            [-168.575725, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -19.24026],\n            [-168.575725, -17.792944],\n            [-161.339146, -17.792944],\n            [-161.339146, -19.24026],\n            [-168.575725, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -17.792944],\n            [-168.575725, -16.345628],\n            [-161.339146, -16.345628],\n            [-161.339146, -17.792944],\n            [-168.575725, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -16.345628],\n            [-168.575725, -14.898312],\n            [-161.339146, -14.898312],\n            [-161.339146, -16.345628],\n            [-168.575725, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -14.898312],\n            [-168.575725, -13.450997],\n            [-161.339146, -13.450997],\n            [-161.339146, -14.898312],\n            [-168.575725, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -13.450997],\n            [-168.575725, -12.003681],\n            [-161.339146, -12.003681],\n            [-161.339146, -13.450997],\n            [-168.575725, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -12.003681],\n            [-168.575725, -10.556365],\n            [-161.339146, -10.556365],\n            [-161.339146, -12.003681],\n            [-168.575725, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -10.556365],\n            [-168.575725, -9.109049],\n            [-161.339146, -9.109049],\n            [-161.339146, -10.556365],\n            [-168.575725, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -9.109049],\n            [-168.575725, -7.661733],\n            [-161.339146, -7.661733],\n            [-161.339146, -9.109049],\n            [-168.575725, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -7.661733],\n            [-168.575725, -6.214417],\n            [-161.339146, -6.214417],\n            [-161.339146, -7.661733],\n            [-168.575725, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -6.214417],\n            [-168.575725, -4.767102],\n            [-161.339146, -4.767102],\n            [-161.339146, -6.214417],\n            [-168.575725, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -4.767102],\n            [-168.575725, -3.319786],\n            [-161.339146, -3.319786],\n            [-161.339146, -4.767102],\n            [-168.575725, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -3.319786],\n            [-168.575725, -1.87247],\n            [-161.339146, -1.87247],\n            [-161.339146, -3.319786],\n            [-168.575725, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -1.87247],\n            [-168.575725, -0.425154],\n            [-161.339146, -0.425154],\n            [-161.339146, -1.87247],\n            [-168.575725, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -0.425154],\n            [-168.575725, 1.022162],\n            [-161.339146, 1.022162],\n            [-161.339146, -0.425154],\n            [-168.575725, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 1.022162],\n            [-168.575725, 2.469478],\n            [-161.339146, 2.469478],\n            [-161.339146, 1.022162],\n            [-168.575725, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 2.469478],\n            [-168.575725, 3.916793],\n            [-161.339146, 3.916793],\n            [-161.339146, 2.469478],\n            [-168.575725, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 3.916793],\n            [-168.575725, 5.364109],\n            [-161.339146, 5.364109],\n            [-161.339146, 3.916793],\n            [-168.575725, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 5.364109],\n            [-168.575725, 6.811425],\n            [-161.339146, 6.811425],\n            [-161.339146, 5.364109],\n            [-168.575725, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 6.811425],\n            [-168.575725, 8.258741],\n            [-161.339146, 8.258741],\n            [-161.339146, 6.811425],\n            [-168.575725, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 8.258741],\n            [-168.575725, 9.706057],\n            [-161.339146, 9.706057],\n            [-161.339146, 8.258741],\n            [-168.575725, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 9.706057],\n            [-168.575725, 11.153373],\n            [-161.339146, 11.153373],\n            [-161.339146, 9.706057],\n            [-168.575725, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 11.153373],\n            [-168.575725, 12.600688],\n            [-161.339146, 12.600688],\n            [-161.339146, 11.153373],\n            [-168.575725, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 12.600688],\n            [-168.575725, 14.048004],\n            [-161.339146, 14.048004],\n            [-161.339146, 12.600688],\n            [-168.575725, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 14.048004],\n            [-168.575725, 15.49532],\n            [-161.339146, 15.49532],\n            [-161.339146, 14.048004],\n            [-168.575725, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 15.49532],\n            [-168.575725, 16.942636],\n            [-161.339146, 16.942636],\n            [-161.339146, 15.49532],\n            [-168.575725, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 16.942636],\n            [-168.575725, 18.389952],\n            [-161.339146, 18.389952],\n            [-161.339146, 16.942636],\n            [-168.575725, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 18.389952],\n            [-168.575725, 19.837268],\n            [-161.339146, 19.837268],\n            [-161.339146, 18.389952],\n            [-168.575725, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 19.837268],\n            [-168.575725, 21.284583],\n            [-161.339146, 21.284583],\n            [-161.339146, 19.837268],\n            [-168.575725, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 21.284583],\n            [-168.575725, 22.731899],\n            [-161.339146, 22.731899],\n            [-161.339146, 21.284583],\n            [-168.575725, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 22.731899],\n            [-168.575725, 24.179215],\n            [-161.339146, 24.179215],\n            [-161.339146, 22.731899],\n            [-168.575725, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 24.179215],\n            [-168.575725, 25.626531],\n            [-161.339146, 25.626531],\n            [-161.339146, 24.179215],\n            [-168.575725, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 25.626531],\n            [-168.575725, 27.073847],\n            [-161.339146, 27.073847],\n            [-161.339146, 25.626531],\n            [-168.575725, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 27.073847],\n            [-168.575725, 28.521163],\n            [-161.339146, 28.521163],\n            [-161.339146, 27.073847],\n            [-168.575725, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 28.521163],\n            [-168.575725, 29.968478],\n            [-161.339146, 29.968478],\n            [-161.339146, 28.521163],\n            [-168.575725, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 29.968478],\n            [-168.575725, 31.415794],\n            [-161.339146, 31.415794],\n            [-161.339146, 29.968478],\n            [-168.575725, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 31.415794],\n            [-168.575725, 32.86311],\n            [-161.339146, 32.86311],\n            [-161.339146, 31.415794],\n            [-168.575725, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 32.86311],\n            [-168.575725, 34.310426],\n            [-161.339146, 34.310426],\n            [-161.339146, 32.86311],\n            [-168.575725, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 34.310426],\n            [-168.575725, 35.757742],\n            [-161.339146, 35.757742],\n            [-161.339146, 34.310426],\n            [-168.575725, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 35.757742],\n            [-168.575725, 37.205058],\n            [-161.339146, 37.205058],\n            [-161.339146, 35.757742],\n            [-168.575725, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 37.205058],\n            [-168.575725, 38.652373],\n            [-161.339146, 38.652373],\n            [-161.339146, 37.205058],\n            [-168.575725, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 38.652373],\n            [-168.575725, 40.099689],\n            [-161.339146, 40.099689],\n            [-161.339146, 38.652373],\n            [-168.575725, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 40.099689],\n            [-168.575725, 41.547005],\n            [-161.339146, 41.547005],\n            [-161.339146, 40.099689],\n            [-168.575725, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 41.547005],\n            [-168.575725, 42.994321],\n            [-161.339146, 42.994321],\n            [-161.339146, 41.547005],\n            [-168.575725, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 42.994321],\n            [-168.575725, 44.441637],\n            [-161.339146, 44.441637],\n            [-161.339146, 42.994321],\n            [-168.575725, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 44.441637],\n            [-168.575725, 45.888952],\n            [-161.339146, 45.888952],\n            [-161.339146, 44.441637],\n            [-168.575725, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 45.888952],\n            [-168.575725, 47.336268],\n            [-161.339146, 47.336268],\n            [-161.339146, 45.888952],\n            [-168.575725, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 47.336268],\n            [-168.575725, 48.783584],\n            [-161.339146, 48.783584],\n            [-161.339146, 47.336268],\n            [-168.575725, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 48.783584],\n            [-168.575725, 50.2309],\n            [-161.339146, 50.2309],\n            [-161.339146, 48.783584],\n            [-168.575725, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 50.2309],\n            [-168.575725, 51.678216],\n            [-161.339146, 51.678216],\n            [-161.339146, 50.2309],\n            [-168.575725, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 51.678216],\n            [-168.575725, 53.125532],\n            [-161.339146, 53.125532],\n            [-161.339146, 51.678216],\n            [-168.575725, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 53.125532],\n            [-168.575725, 54.572847],\n            [-161.339146, 54.572847],\n            [-161.339146, 53.125532],\n            [-168.575725, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 54.572847],\n            [-168.575725, 56.020163],\n            [-161.339146, 56.020163],\n            [-161.339146, 54.572847],\n            [-168.575725, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 56.020163],\n            [-168.575725, 57.467479],\n            [-161.339146, 57.467479],\n            [-161.339146, 56.020163],\n            [-168.575725, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 57.467479],\n            [-168.575725, 58.914795],\n            [-161.339146, 58.914795],\n            [-161.339146, 57.467479],\n            [-168.575725, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 58.914795],\n            [-168.575725, 60.362111],\n            [-161.339146, 60.362111],\n            [-161.339146, 58.914795],\n            [-168.575725, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 60.362111],\n            [-168.575725, 61.809427],\n            [-161.339146, 61.809427],\n            [-161.339146, 60.362111],\n            [-168.575725, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 61.809427],\n            [-168.575725, 63.256742],\n            [-161.339146, 63.256742],\n            [-161.339146, 61.809427],\n            [-168.575725, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 63.256742],\n            [-168.575725, 64.704058],\n            [-161.339146, 64.704058],\n            [-161.339146, 63.256742],\n            [-168.575725, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 64.704058],\n            [-168.575725, 66.151374],\n            [-161.339146, 66.151374],\n            [-161.339146, 64.704058],\n            [-168.575725, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 66.151374],\n            [-168.575725, 67.59869],\n            [-161.339146, 67.59869],\n            [-161.339146, 66.151374],\n            [-168.575725, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 67.59869],\n            [-168.575725, 69.046006],\n            [-161.339146, 69.046006],\n            [-161.339146, 67.59869],\n            [-168.575725, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 69.046006],\n            [-168.575725, 70.493322],\n            [-161.339146, 70.493322],\n            [-161.339146, 69.046006],\n            [-168.575725, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 70.493322],\n            [-168.575725, 71.940637],\n            [-161.339146, 71.940637],\n            [-161.339146, 70.493322],\n            [-168.575725, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 71.940637],\n            [-168.575725, 73.387953],\n            [-161.339146, 73.387953],\n            [-161.339146, 71.940637],\n            [-168.575725, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 73.387953],\n            [-168.575725, 74.835269],\n            [-161.339146, 74.835269],\n            [-161.339146, 73.387953],\n            [-168.575725, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 74.835269],\n            [-168.575725, 76.282585],\n            [-161.339146, 76.282585],\n            [-161.339146, 74.835269],\n            [-168.575725, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 76.282585],\n            [-168.575725, 77.729901],\n            [-161.339146, 77.729901],\n            [-161.339146, 76.282585],\n            [-168.575725, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -80.027525],\n            [-161.339146, -78.580209],\n            [-154.102567, -78.580209],\n            [-154.102567, -80.027525],\n            [-161.339146, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -78.580209],\n            [-161.339146, -77.132893],\n            [-154.102567, -77.132893],\n            [-154.102567, -78.580209],\n            [-161.339146, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -77.132893],\n            [-161.339146, -75.685577],\n            [-154.102567, -75.685577],\n            [-154.102567, -77.132893],\n            [-161.339146, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -75.685577],\n            [-161.339146, -74.238262],\n            [-154.102567, -74.238262],\n            [-154.102567, -75.685577],\n            [-161.339146, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -74.238262],\n            [-161.339146, -72.790946],\n            [-154.102567, -72.790946],\n            [-154.102567, -74.238262],\n            [-161.339146, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -72.790946],\n            [-161.339146, -71.34363],\n            [-154.102567, -71.34363],\n            [-154.102567, -72.790946],\n            [-161.339146, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -71.34363],\n            [-161.339146, -69.896314],\n            [-154.102567, -69.896314],\n            [-154.102567, -71.34363],\n            [-161.339146, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -69.896314],\n            [-161.339146, -68.448998],\n            [-154.102567, -68.448998],\n            [-154.102567, -69.896314],\n            [-161.339146, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -68.448998],\n            [-161.339146, -67.001682],\n            [-154.102567, -67.001682],\n            [-154.102567, -68.448998],\n            [-161.339146, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -67.001682],\n            [-161.339146, -65.554367],\n            [-154.102567, -65.554367],\n            [-154.102567, -67.001682],\n            [-161.339146, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -65.554367],\n            [-161.339146, -64.107051],\n            [-154.102567, -64.107051],\n            [-154.102567, -65.554367],\n            [-161.339146, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -64.107051],\n            [-161.339146, -62.659735],\n            [-154.102567, -62.659735],\n            [-154.102567, -64.107051],\n            [-161.339146, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -62.659735],\n            [-161.339146, -61.212419],\n            [-154.102567, -61.212419],\n            [-154.102567, -62.659735],\n            [-161.339146, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -61.212419],\n            [-161.339146, -59.765103],\n            [-154.102567, -59.765103],\n            [-154.102567, -61.212419],\n            [-161.339146, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -59.765103],\n            [-161.339146, -58.317787],\n            [-154.102567, -58.317787],\n            [-154.102567, -59.765103],\n            [-161.339146, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -58.317787],\n            [-161.339146, -56.870472],\n            [-154.102567, -56.870472],\n            [-154.102567, -58.317787],\n            [-161.339146, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -56.870472],\n            [-161.339146, -55.423156],\n            [-154.102567, -55.423156],\n            [-154.102567, -56.870472],\n            [-161.339146, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -55.423156],\n            [-161.339146, -53.97584],\n            [-154.102567, -53.97584],\n            [-154.102567, -55.423156],\n            [-161.339146, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -53.97584],\n            [-161.339146, -52.528524],\n            [-154.102567, -52.528524],\n            [-154.102567, -53.97584],\n            [-161.339146, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -52.528524],\n            [-161.339146, -51.081208],\n            [-154.102567, -51.081208],\n            [-154.102567, -52.528524],\n            [-161.339146, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -51.081208],\n            [-161.339146, -49.633892],\n            [-154.102567, -49.633892],\n            [-154.102567, -51.081208],\n            [-161.339146, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -49.633892],\n            [-161.339146, -48.186577],\n            [-154.102567, -48.186577],\n            [-154.102567, -49.633892],\n            [-161.339146, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -48.186577],\n            [-161.339146, -46.739261],\n            [-154.102567, -46.739261],\n            [-154.102567, -48.186577],\n            [-161.339146, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -46.739261],\n            [-161.339146, -45.291945],\n            [-154.102567, -45.291945],\n            [-154.102567, -46.739261],\n            [-161.339146, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -45.291945],\n            [-161.339146, -43.844629],\n            [-154.102567, -43.844629],\n            [-154.102567, -45.291945],\n            [-161.339146, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -43.844629],\n            [-161.339146, -42.397313],\n            [-154.102567, -42.397313],\n            [-154.102567, -43.844629],\n            [-161.339146, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -42.397313],\n            [-161.339146, -40.949997],\n            [-154.102567, -40.949997],\n            [-154.102567, -42.397313],\n            [-161.339146, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -40.949997],\n            [-161.339146, -39.502682],\n            [-154.102567, -39.502682],\n            [-154.102567, -40.949997],\n            [-161.339146, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -39.502682],\n            [-161.339146, -38.055366],\n            [-154.102567, -38.055366],\n            [-154.102567, -39.502682],\n            [-161.339146, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -38.055366],\n            [-161.339146, -36.60805],\n            [-154.102567, -36.60805],\n            [-154.102567, -38.055366],\n            [-161.339146, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -36.60805],\n            [-161.339146, -35.160734],\n            [-154.102567, -35.160734],\n            [-154.102567, -36.60805],\n            [-161.339146, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -35.160734],\n            [-161.339146, -33.713418],\n            [-154.102567, -33.713418],\n            [-154.102567, -35.160734],\n            [-161.339146, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -33.713418],\n            [-161.339146, -32.266102],\n            [-154.102567, -32.266102],\n            [-154.102567, -33.713418],\n            [-161.339146, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -32.266102],\n            [-161.339146, -30.818787],\n            [-154.102567, -30.818787],\n            [-154.102567, -32.266102],\n            [-161.339146, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -30.818787],\n            [-161.339146, -29.371471],\n            [-154.102567, -29.371471],\n            [-154.102567, -30.818787],\n            [-161.339146, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -29.371471],\n            [-161.339146, -27.924155],\n            [-154.102567, -27.924155],\n            [-154.102567, -29.371471],\n            [-161.339146, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -27.924155],\n            [-161.339146, -26.476839],\n            [-154.102567, -26.476839],\n            [-154.102567, -27.924155],\n            [-161.339146, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -26.476839],\n            [-161.339146, -25.029523],\n            [-154.102567, -25.029523],\n            [-154.102567, -26.476839],\n            [-161.339146, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -25.029523],\n            [-161.339146, -23.582207],\n            [-154.102567, -23.582207],\n            [-154.102567, -25.029523],\n            [-161.339146, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -23.582207],\n            [-161.339146, -22.134892],\n            [-154.102567, -22.134892],\n            [-154.102567, -23.582207],\n            [-161.339146, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -22.134892],\n            [-161.339146, -20.687576],\n            [-154.102567, -20.687576],\n            [-154.102567, -22.134892],\n            [-161.339146, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -20.687576],\n            [-161.339146, -19.24026],\n            [-154.102567, -19.24026],\n            [-154.102567, -20.687576],\n            [-161.339146, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -19.24026],\n            [-161.339146, -17.792944],\n            [-154.102567, -17.792944],\n            [-154.102567, -19.24026],\n            [-161.339146, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -17.792944],\n            [-161.339146, -16.345628],\n            [-154.102567, -16.345628],\n            [-154.102567, -17.792944],\n            [-161.339146, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -16.345628],\n            [-161.339146, -14.898312],\n            [-154.102567, -14.898312],\n            [-154.102567, -16.345628],\n            [-161.339146, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -14.898312],\n            [-161.339146, -13.450997],\n            [-154.102567, -13.450997],\n            [-154.102567, -14.898312],\n            [-161.339146, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -13.450997],\n            [-161.339146, -12.003681],\n            [-154.102567, -12.003681],\n            [-154.102567, -13.450997],\n            [-161.339146, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -12.003681],\n            [-161.339146, -10.556365],\n            [-154.102567, -10.556365],\n            [-154.102567, -12.003681],\n            [-161.339146, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -10.556365],\n            [-161.339146, -9.109049],\n            [-154.102567, -9.109049],\n            [-154.102567, -10.556365],\n            [-161.339146, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -9.109049],\n            [-161.339146, -7.661733],\n            [-154.102567, -7.661733],\n            [-154.102567, -9.109049],\n            [-161.339146, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -7.661733],\n            [-161.339146, -6.214417],\n            [-154.102567, -6.214417],\n            [-154.102567, -7.661733],\n            [-161.339146, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -6.214417],\n            [-161.339146, -4.767102],\n            [-154.102567, -4.767102],\n            [-154.102567, -6.214417],\n            [-161.339146, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -4.767102],\n            [-161.339146, -3.319786],\n            [-154.102567, -3.319786],\n            [-154.102567, -4.767102],\n            [-161.339146, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -3.319786],\n            [-161.339146, -1.87247],\n            [-154.102567, -1.87247],\n            [-154.102567, -3.319786],\n            [-161.339146, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -1.87247],\n            [-161.339146, -0.425154],\n            [-154.102567, -0.425154],\n            [-154.102567, -1.87247],\n            [-161.339146, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -0.425154],\n            [-161.339146, 1.022162],\n            [-154.102567, 1.022162],\n            [-154.102567, -0.425154],\n            [-161.339146, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 1.022162],\n            [-161.339146, 2.469478],\n            [-154.102567, 2.469478],\n            [-154.102567, 1.022162],\n            [-161.339146, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 2.469478],\n            [-161.339146, 3.916793],\n            [-154.102567, 3.916793],\n            [-154.102567, 2.469478],\n            [-161.339146, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 3.916793],\n            [-161.339146, 5.364109],\n            [-154.102567, 5.364109],\n            [-154.102567, 3.916793],\n            [-161.339146, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 5.364109],\n            [-161.339146, 6.811425],\n            [-154.102567, 6.811425],\n            [-154.102567, 5.364109],\n            [-161.339146, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 6.811425],\n            [-161.339146, 8.258741],\n            [-154.102567, 8.258741],\n            [-154.102567, 6.811425],\n            [-161.339146, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 8.258741],\n            [-161.339146, 9.706057],\n            [-154.102567, 9.706057],\n            [-154.102567, 8.258741],\n            [-161.339146, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 9.706057],\n            [-161.339146, 11.153373],\n            [-154.102567, 11.153373],\n            [-154.102567, 9.706057],\n            [-161.339146, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 11.153373],\n            [-161.339146, 12.600688],\n            [-154.102567, 12.600688],\n            [-154.102567, 11.153373],\n            [-161.339146, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 12.600688],\n            [-161.339146, 14.048004],\n            [-154.102567, 14.048004],\n            [-154.102567, 12.600688],\n            [-161.339146, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 14.048004],\n            [-161.339146, 15.49532],\n            [-154.102567, 15.49532],\n            [-154.102567, 14.048004],\n            [-161.339146, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 15.49532],\n            [-161.339146, 16.942636],\n            [-154.102567, 16.942636],\n            [-154.102567, 15.49532],\n            [-161.339146, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 16.942636],\n            [-161.339146, 18.389952],\n            [-154.102567, 18.389952],\n            [-154.102567, 16.942636],\n            [-161.339146, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 18.389952],\n            [-161.339146, 19.837268],\n            [-154.102567, 19.837268],\n            [-154.102567, 18.389952],\n            [-161.339146, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 19.837268],\n            [-161.339146, 21.284583],\n            [-154.102567, 21.284583],\n            [-154.102567, 19.837268],\n            [-161.339146, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 21.284583],\n            [-161.339146, 22.731899],\n            [-154.102567, 22.731899],\n            [-154.102567, 21.284583],\n            [-161.339146, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 22.731899],\n            [-161.339146, 24.179215],\n            [-154.102567, 24.179215],\n            [-154.102567, 22.731899],\n            [-161.339146, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 24.179215],\n            [-161.339146, 25.626531],\n            [-154.102567, 25.626531],\n            [-154.102567, 24.179215],\n            [-161.339146, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 25.626531],\n            [-161.339146, 27.073847],\n            [-154.102567, 27.073847],\n            [-154.102567, 25.626531],\n            [-161.339146, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 27.073847],\n            [-161.339146, 28.521163],\n            [-154.102567, 28.521163],\n            [-154.102567, 27.073847],\n            [-161.339146, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 28.521163],\n            [-161.339146, 29.968478],\n            [-154.102567, 29.968478],\n            [-154.102567, 28.521163],\n            [-161.339146, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 29.968478],\n            [-161.339146, 31.415794],\n            [-154.102567, 31.415794],\n            [-154.102567, 29.968478],\n            [-161.339146, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 31.415794],\n            [-161.339146, 32.86311],\n            [-154.102567, 32.86311],\n            [-154.102567, 31.415794],\n            [-161.339146, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 32.86311],\n            [-161.339146, 34.310426],\n            [-154.102567, 34.310426],\n            [-154.102567, 32.86311],\n            [-161.339146, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 34.310426],\n            [-161.339146, 35.757742],\n            [-154.102567, 35.757742],\n            [-154.102567, 34.310426],\n            [-161.339146, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 35.757742],\n            [-161.339146, 37.205058],\n            [-154.102567, 37.205058],\n            [-154.102567, 35.757742],\n            [-161.339146, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 37.205058],\n            [-161.339146, 38.652373],\n            [-154.102567, 38.652373],\n            [-154.102567, 37.205058],\n            [-161.339146, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 38.652373],\n            [-161.339146, 40.099689],\n            [-154.102567, 40.099689],\n            [-154.102567, 38.652373],\n            [-161.339146, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 40.099689],\n            [-161.339146, 41.547005],\n            [-154.102567, 41.547005],\n            [-154.102567, 40.099689],\n            [-161.339146, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 41.547005],\n            [-161.339146, 42.994321],\n            [-154.102567, 42.994321],\n            [-154.102567, 41.547005],\n            [-161.339146, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 42.994321],\n            [-161.339146, 44.441637],\n            [-154.102567, 44.441637],\n            [-154.102567, 42.994321],\n            [-161.339146, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 44.441637],\n            [-161.339146, 45.888952],\n            [-154.102567, 45.888952],\n            [-154.102567, 44.441637],\n            [-161.339146, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 45.888952],\n            [-161.339146, 47.336268],\n            [-154.102567, 47.336268],\n            [-154.102567, 45.888952],\n            [-161.339146, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 47.336268],\n            [-161.339146, 48.783584],\n            [-154.102567, 48.783584],\n            [-154.102567, 47.336268],\n            [-161.339146, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 48.783584],\n            [-161.339146, 50.2309],\n            [-154.102567, 50.2309],\n            [-154.102567, 48.783584],\n            [-161.339146, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 50.2309],\n            [-161.339146, 51.678216],\n            [-154.102567, 51.678216],\n            [-154.102567, 50.2309],\n            [-161.339146, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 51.678216],\n            [-161.339146, 53.125532],\n            [-154.102567, 53.125532],\n            [-154.102567, 51.678216],\n            [-161.339146, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 53.125532],\n            [-161.339146, 54.572847],\n            [-154.102567, 54.572847],\n            [-154.102567, 53.125532],\n            [-161.339146, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 54.572847],\n            [-161.339146, 56.020163],\n            [-154.102567, 56.020163],\n            [-154.102567, 54.572847],\n            [-161.339146, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 56.020163],\n            [-161.339146, 57.467479],\n            [-154.102567, 57.467479],\n            [-154.102567, 56.020163],\n            [-161.339146, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 57.467479],\n            [-161.339146, 58.914795],\n            [-154.102567, 58.914795],\n            [-154.102567, 57.467479],\n            [-161.339146, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 58.914795],\n            [-161.339146, 60.362111],\n            [-154.102567, 60.362111],\n            [-154.102567, 58.914795],\n            [-161.339146, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 60.362111],\n            [-161.339146, 61.809427],\n            [-154.102567, 61.809427],\n            [-154.102567, 60.362111],\n            [-161.339146, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 61.809427],\n            [-161.339146, 63.256742],\n            [-154.102567, 63.256742],\n            [-154.102567, 61.809427],\n            [-161.339146, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 63.256742],\n            [-161.339146, 64.704058],\n            [-154.102567, 64.704058],\n            [-154.102567, 63.256742],\n            [-161.339146, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 64.704058],\n            [-161.339146, 66.151374],\n            [-154.102567, 66.151374],\n            [-154.102567, 64.704058],\n            [-161.339146, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 66.151374],\n            [-161.339146, 67.59869],\n            [-154.102567, 67.59869],\n            [-154.102567, 66.151374],\n            [-161.339146, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 67.59869],\n            [-161.339146, 69.046006],\n            [-154.102567, 69.046006],\n            [-154.102567, 67.59869],\n            [-161.339146, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 69.046006],\n            [-161.339146, 70.493322],\n            [-154.102567, 70.493322],\n            [-154.102567, 69.046006],\n            [-161.339146, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 70.493322],\n            [-161.339146, 71.940637],\n            [-154.102567, 71.940637],\n            [-154.102567, 70.493322],\n            [-161.339146, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 71.940637],\n            [-161.339146, 73.387953],\n            [-154.102567, 73.387953],\n            [-154.102567, 71.940637],\n            [-161.339146, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 73.387953],\n            [-161.339146, 74.835269],\n            [-154.102567, 74.835269],\n            [-154.102567, 73.387953],\n            [-161.339146, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 74.835269],\n            [-161.339146, 76.282585],\n            [-154.102567, 76.282585],\n            [-154.102567, 74.835269],\n            [-161.339146, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 76.282585],\n            [-161.339146, 77.729901],\n            [-154.102567, 77.729901],\n            [-154.102567, 76.282585],\n            [-161.339146, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -80.027525],\n            [-154.102567, -78.580209],\n            [-146.865987, -78.580209],\n            [-146.865987, -80.027525],\n            [-154.102567, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -78.580209],\n            [-154.102567, -77.132893],\n            [-146.865987, -77.132893],\n            [-146.865987, -78.580209],\n            [-154.102567, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -77.132893],\n            [-154.102567, -75.685577],\n            [-146.865987, -75.685577],\n            [-146.865987, -77.132893],\n            [-154.102567, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -75.685577],\n            [-154.102567, -74.238262],\n            [-146.865987, -74.238262],\n            [-146.865987, -75.685577],\n            [-154.102567, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -74.238262],\n            [-154.102567, -72.790946],\n            [-146.865987, -72.790946],\n            [-146.865987, -74.238262],\n            [-154.102567, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -72.790946],\n            [-154.102567, -71.34363],\n            [-146.865987, -71.34363],\n            [-146.865987, -72.790946],\n            [-154.102567, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -71.34363],\n            [-154.102567, -69.896314],\n            [-146.865987, -69.896314],\n            [-146.865987, -71.34363],\n            [-154.102567, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -69.896314],\n            [-154.102567, -68.448998],\n            [-146.865987, -68.448998],\n            [-146.865987, -69.896314],\n            [-154.102567, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -68.448998],\n            [-154.102567, -67.001682],\n            [-146.865987, -67.001682],\n            [-146.865987, -68.448998],\n            [-154.102567, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -67.001682],\n            [-154.102567, -65.554367],\n            [-146.865987, -65.554367],\n            [-146.865987, -67.001682],\n            [-154.102567, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -65.554367],\n            [-154.102567, -64.107051],\n            [-146.865987, -64.107051],\n            [-146.865987, -65.554367],\n            [-154.102567, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -64.107051],\n            [-154.102567, -62.659735],\n            [-146.865987, -62.659735],\n            [-146.865987, -64.107051],\n            [-154.102567, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -62.659735],\n            [-154.102567, -61.212419],\n            [-146.865987, -61.212419],\n            [-146.865987, -62.659735],\n            [-154.102567, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -61.212419],\n            [-154.102567, -59.765103],\n            [-146.865987, -59.765103],\n            [-146.865987, -61.212419],\n            [-154.102567, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -59.765103],\n            [-154.102567, -58.317787],\n            [-146.865987, -58.317787],\n            [-146.865987, -59.765103],\n            [-154.102567, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -58.317787],\n            [-154.102567, -56.870472],\n            [-146.865987, -56.870472],\n            [-146.865987, -58.317787],\n            [-154.102567, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -56.870472],\n            [-154.102567, -55.423156],\n            [-146.865987, -55.423156],\n            [-146.865987, -56.870472],\n            [-154.102567, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -55.423156],\n            [-154.102567, -53.97584],\n            [-146.865987, -53.97584],\n            [-146.865987, -55.423156],\n            [-154.102567, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -53.97584],\n            [-154.102567, -52.528524],\n            [-146.865987, -52.528524],\n            [-146.865987, -53.97584],\n            [-154.102567, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -52.528524],\n            [-154.102567, -51.081208],\n            [-146.865987, -51.081208],\n            [-146.865987, -52.528524],\n            [-154.102567, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -51.081208],\n            [-154.102567, -49.633892],\n            [-146.865987, -49.633892],\n            [-146.865987, -51.081208],\n            [-154.102567, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -49.633892],\n            [-154.102567, -48.186577],\n            [-146.865987, -48.186577],\n            [-146.865987, -49.633892],\n            [-154.102567, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -48.186577],\n            [-154.102567, -46.739261],\n            [-146.865987, -46.739261],\n            [-146.865987, -48.186577],\n            [-154.102567, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -46.739261],\n            [-154.102567, -45.291945],\n            [-146.865987, -45.291945],\n            [-146.865987, -46.739261],\n            [-154.102567, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -45.291945],\n            [-154.102567, -43.844629],\n            [-146.865987, -43.844629],\n            [-146.865987, -45.291945],\n            [-154.102567, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -43.844629],\n            [-154.102567, -42.397313],\n            [-146.865987, -42.397313],\n            [-146.865987, -43.844629],\n            [-154.102567, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -42.397313],\n            [-154.102567, -40.949997],\n            [-146.865987, -40.949997],\n            [-146.865987, -42.397313],\n            [-154.102567, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -40.949997],\n            [-154.102567, -39.502682],\n            [-146.865987, -39.502682],\n            [-146.865987, -40.949997],\n            [-154.102567, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -39.502682],\n            [-154.102567, -38.055366],\n            [-146.865987, -38.055366],\n            [-146.865987, -39.502682],\n            [-154.102567, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -38.055366],\n            [-154.102567, -36.60805],\n            [-146.865987, -36.60805],\n            [-146.865987, -38.055366],\n            [-154.102567, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -36.60805],\n            [-154.102567, -35.160734],\n            [-146.865987, -35.160734],\n            [-146.865987, -36.60805],\n            [-154.102567, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -35.160734],\n            [-154.102567, -33.713418],\n            [-146.865987, -33.713418],\n            [-146.865987, -35.160734],\n            [-154.102567, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -33.713418],\n            [-154.102567, -32.266102],\n            [-146.865987, -32.266102],\n            [-146.865987, -33.713418],\n            [-154.102567, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -32.266102],\n            [-154.102567, -30.818787],\n            [-146.865987, -30.818787],\n            [-146.865987, -32.266102],\n            [-154.102567, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -30.818787],\n            [-154.102567, -29.371471],\n            [-146.865987, -29.371471],\n            [-146.865987, -30.818787],\n            [-154.102567, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -29.371471],\n            [-154.102567, -27.924155],\n            [-146.865987, -27.924155],\n            [-146.865987, -29.371471],\n            [-154.102567, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -27.924155],\n            [-154.102567, -26.476839],\n            [-146.865987, -26.476839],\n            [-146.865987, -27.924155],\n            [-154.102567, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -26.476839],\n            [-154.102567, -25.029523],\n            [-146.865987, -25.029523],\n            [-146.865987, -26.476839],\n            [-154.102567, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -25.029523],\n            [-154.102567, -23.582207],\n            [-146.865987, -23.582207],\n            [-146.865987, -25.029523],\n            [-154.102567, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -23.582207],\n            [-154.102567, -22.134892],\n            [-146.865987, -22.134892],\n            [-146.865987, -23.582207],\n            [-154.102567, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -22.134892],\n            [-154.102567, -20.687576],\n            [-146.865987, -20.687576],\n            [-146.865987, -22.134892],\n            [-154.102567, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -20.687576],\n            [-154.102567, -19.24026],\n            [-146.865987, -19.24026],\n            [-146.865987, -20.687576],\n            [-154.102567, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -19.24026],\n            [-154.102567, -17.792944],\n            [-146.865987, -17.792944],\n            [-146.865987, -19.24026],\n            [-154.102567, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -17.792944],\n            [-154.102567, -16.345628],\n            [-146.865987, -16.345628],\n            [-146.865987, -17.792944],\n            [-154.102567, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -16.345628],\n            [-154.102567, -14.898312],\n            [-146.865987, -14.898312],\n            [-146.865987, -16.345628],\n            [-154.102567, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -14.898312],\n            [-154.102567, -13.450997],\n            [-146.865987, -13.450997],\n            [-146.865987, -14.898312],\n            [-154.102567, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -13.450997],\n            [-154.102567, -12.003681],\n            [-146.865987, -12.003681],\n            [-146.865987, -13.450997],\n            [-154.102567, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -12.003681],\n            [-154.102567, -10.556365],\n            [-146.865987, -10.556365],\n            [-146.865987, -12.003681],\n            [-154.102567, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -10.556365],\n            [-154.102567, -9.109049],\n            [-146.865987, -9.109049],\n            [-146.865987, -10.556365],\n            [-154.102567, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -9.109049],\n            [-154.102567, -7.661733],\n            [-146.865987, -7.661733],\n            [-146.865987, -9.109049],\n            [-154.102567, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -7.661733],\n            [-154.102567, -6.214417],\n            [-146.865987, -6.214417],\n            [-146.865987, -7.661733],\n            [-154.102567, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -6.214417],\n            [-154.102567, -4.767102],\n            [-146.865987, -4.767102],\n            [-146.865987, -6.214417],\n            [-154.102567, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -4.767102],\n            [-154.102567, -3.319786],\n            [-146.865987, -3.319786],\n            [-146.865987, -4.767102],\n            [-154.102567, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -3.319786],\n            [-154.102567, -1.87247],\n            [-146.865987, -1.87247],\n            [-146.865987, -3.319786],\n            [-154.102567, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -1.87247],\n            [-154.102567, -0.425154],\n            [-146.865987, -0.425154],\n            [-146.865987, -1.87247],\n            [-154.102567, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -0.425154],\n            [-154.102567, 1.022162],\n            [-146.865987, 1.022162],\n            [-146.865987, -0.425154],\n            [-154.102567, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 1.022162],\n            [-154.102567, 2.469478],\n            [-146.865987, 2.469478],\n            [-146.865987, 1.022162],\n            [-154.102567, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 2.469478],\n            [-154.102567, 3.916793],\n            [-146.865987, 3.916793],\n            [-146.865987, 2.469478],\n            [-154.102567, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 3.916793],\n            [-154.102567, 5.364109],\n            [-146.865987, 5.364109],\n            [-146.865987, 3.916793],\n            [-154.102567, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 5.364109],\n            [-154.102567, 6.811425],\n            [-146.865987, 6.811425],\n            [-146.865987, 5.364109],\n            [-154.102567, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 6.811425],\n            [-154.102567, 8.258741],\n            [-146.865987, 8.258741],\n            [-146.865987, 6.811425],\n            [-154.102567, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 8.258741],\n            [-154.102567, 9.706057],\n            [-146.865987, 9.706057],\n            [-146.865987, 8.258741],\n            [-154.102567, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 9.706057],\n            [-154.102567, 11.153373],\n            [-146.865987, 11.153373],\n            [-146.865987, 9.706057],\n            [-154.102567, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 11.153373],\n            [-154.102567, 12.600688],\n            [-146.865987, 12.600688],\n            [-146.865987, 11.153373],\n            [-154.102567, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 12.600688],\n            [-154.102567, 14.048004],\n            [-146.865987, 14.048004],\n            [-146.865987, 12.600688],\n            [-154.102567, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 14.048004],\n            [-154.102567, 15.49532],\n            [-146.865987, 15.49532],\n            [-146.865987, 14.048004],\n            [-154.102567, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 15.49532],\n            [-154.102567, 16.942636],\n            [-146.865987, 16.942636],\n            [-146.865987, 15.49532],\n            [-154.102567, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 16.942636],\n            [-154.102567, 18.389952],\n            [-146.865987, 18.389952],\n            [-146.865987, 16.942636],\n            [-154.102567, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 18.389952],\n            [-154.102567, 19.837268],\n            [-146.865987, 19.837268],\n            [-146.865987, 18.389952],\n            [-154.102567, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 19.837268],\n            [-154.102567, 21.284583],\n            [-146.865987, 21.284583],\n            [-146.865987, 19.837268],\n            [-154.102567, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 21.284583],\n            [-154.102567, 22.731899],\n            [-146.865987, 22.731899],\n            [-146.865987, 21.284583],\n            [-154.102567, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 22.731899],\n            [-154.102567, 24.179215],\n            [-146.865987, 24.179215],\n            [-146.865987, 22.731899],\n            [-154.102567, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 24.179215],\n            [-154.102567, 25.626531],\n            [-146.865987, 25.626531],\n            [-146.865987, 24.179215],\n            [-154.102567, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 25.626531],\n            [-154.102567, 27.073847],\n            [-146.865987, 27.073847],\n            [-146.865987, 25.626531],\n            [-154.102567, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 27.073847],\n            [-154.102567, 28.521163],\n            [-146.865987, 28.521163],\n            [-146.865987, 27.073847],\n            [-154.102567, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 28.521163],\n            [-154.102567, 29.968478],\n            [-146.865987, 29.968478],\n            [-146.865987, 28.521163],\n            [-154.102567, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 29.968478],\n            [-154.102567, 31.415794],\n            [-146.865987, 31.415794],\n            [-146.865987, 29.968478],\n            [-154.102567, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 31.415794],\n            [-154.102567, 32.86311],\n            [-146.865987, 32.86311],\n            [-146.865987, 31.415794],\n            [-154.102567, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 32.86311],\n            [-154.102567, 34.310426],\n            [-146.865987, 34.310426],\n            [-146.865987, 32.86311],\n            [-154.102567, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 34.310426],\n            [-154.102567, 35.757742],\n            [-146.865987, 35.757742],\n            [-146.865987, 34.310426],\n            [-154.102567, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 35.757742],\n            [-154.102567, 37.205058],\n            [-146.865987, 37.205058],\n            [-146.865987, 35.757742],\n            [-154.102567, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 37.205058],\n            [-154.102567, 38.652373],\n            [-146.865987, 38.652373],\n            [-146.865987, 37.205058],\n            [-154.102567, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 38.652373],\n            [-154.102567, 40.099689],\n            [-146.865987, 40.099689],\n            [-146.865987, 38.652373],\n            [-154.102567, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 40.099689],\n            [-154.102567, 41.547005],\n            [-146.865987, 41.547005],\n            [-146.865987, 40.099689],\n            [-154.102567, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 41.547005],\n            [-154.102567, 42.994321],\n            [-146.865987, 42.994321],\n            [-146.865987, 41.547005],\n            [-154.102567, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 42.994321],\n            [-154.102567, 44.441637],\n            [-146.865987, 44.441637],\n            [-146.865987, 42.994321],\n            [-154.102567, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 44.441637],\n            [-154.102567, 45.888952],\n            [-146.865987, 45.888952],\n            [-146.865987, 44.441637],\n            [-154.102567, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 45.888952],\n            [-154.102567, 47.336268],\n            [-146.865987, 47.336268],\n            [-146.865987, 45.888952],\n            [-154.102567, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 47.336268],\n            [-154.102567, 48.783584],\n            [-146.865987, 48.783584],\n            [-146.865987, 47.336268],\n            [-154.102567, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 48.783584],\n            [-154.102567, 50.2309],\n            [-146.865987, 50.2309],\n            [-146.865987, 48.783584],\n            [-154.102567, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 50.2309],\n            [-154.102567, 51.678216],\n            [-146.865987, 51.678216],\n            [-146.865987, 50.2309],\n            [-154.102567, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 51.678216],\n            [-154.102567, 53.125532],\n            [-146.865987, 53.125532],\n            [-146.865987, 51.678216],\n            [-154.102567, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 53.125532],\n            [-154.102567, 54.572847],\n            [-146.865987, 54.572847],\n            [-146.865987, 53.125532],\n            [-154.102567, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 54.572847],\n            [-154.102567, 56.020163],\n            [-146.865987, 56.020163],\n            [-146.865987, 54.572847],\n            [-154.102567, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 56.020163],\n            [-154.102567, 57.467479],\n            [-146.865987, 57.467479],\n            [-146.865987, 56.020163],\n            [-154.102567, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 57.467479],\n            [-154.102567, 58.914795],\n            [-146.865987, 58.914795],\n            [-146.865987, 57.467479],\n            [-154.102567, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 58.914795],\n            [-154.102567, 60.362111],\n            [-146.865987, 60.362111],\n            [-146.865987, 58.914795],\n            [-154.102567, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 60.362111],\n            [-154.102567, 61.809427],\n            [-146.865987, 61.809427],\n            [-146.865987, 60.362111],\n            [-154.102567, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 61.809427],\n            [-154.102567, 63.256742],\n            [-146.865987, 63.256742],\n            [-146.865987, 61.809427],\n            [-154.102567, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 63.256742],\n            [-154.102567, 64.704058],\n            [-146.865987, 64.704058],\n            [-146.865987, 63.256742],\n            [-154.102567, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 64.704058],\n            [-154.102567, 66.151374],\n            [-146.865987, 66.151374],\n            [-146.865987, 64.704058],\n            [-154.102567, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 66.151374],\n            [-154.102567, 67.59869],\n            [-146.865987, 67.59869],\n            [-146.865987, 66.151374],\n            [-154.102567, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 67.59869],\n            [-154.102567, 69.046006],\n            [-146.865987, 69.046006],\n            [-146.865987, 67.59869],\n            [-154.102567, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 69.046006],\n            [-154.102567, 70.493322],\n            [-146.865987, 70.493322],\n            [-146.865987, 69.046006],\n            [-154.102567, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 70.493322],\n            [-154.102567, 71.940637],\n            [-146.865987, 71.940637],\n            [-146.865987, 70.493322],\n            [-154.102567, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 71.940637],\n            [-154.102567, 73.387953],\n            [-146.865987, 73.387953],\n            [-146.865987, 71.940637],\n            [-154.102567, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 73.387953],\n            [-154.102567, 74.835269],\n            [-146.865987, 74.835269],\n            [-146.865987, 73.387953],\n            [-154.102567, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 74.835269],\n            [-154.102567, 76.282585],\n            [-146.865987, 76.282585],\n            [-146.865987, 74.835269],\n            [-154.102567, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 76.282585],\n            [-154.102567, 77.729901],\n            [-146.865987, 77.729901],\n            [-146.865987, 76.282585],\n            [-154.102567, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -80.027525],\n            [-146.865987, -78.580209],\n            [-139.629408, -78.580209],\n            [-139.629408, -80.027525],\n            [-146.865987, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -78.580209],\n            [-146.865987, -77.132893],\n            [-139.629408, -77.132893],\n            [-139.629408, -78.580209],\n            [-146.865987, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -77.132893],\n            [-146.865987, -75.685577],\n            [-139.629408, -75.685577],\n            [-139.629408, -77.132893],\n            [-146.865987, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -75.685577],\n            [-146.865987, -74.238262],\n            [-139.629408, -74.238262],\n            [-139.629408, -75.685577],\n            [-146.865987, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -74.238262],\n            [-146.865987, -72.790946],\n            [-139.629408, -72.790946],\n            [-139.629408, -74.238262],\n            [-146.865987, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -72.790946],\n            [-146.865987, -71.34363],\n            [-139.629408, -71.34363],\n            [-139.629408, -72.790946],\n            [-146.865987, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -71.34363],\n            [-146.865987, -69.896314],\n            [-139.629408, -69.896314],\n            [-139.629408, -71.34363],\n            [-146.865987, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -69.896314],\n            [-146.865987, -68.448998],\n            [-139.629408, -68.448998],\n            [-139.629408, -69.896314],\n            [-146.865987, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -68.448998],\n            [-146.865987, -67.001682],\n            [-139.629408, -67.001682],\n            [-139.629408, -68.448998],\n            [-146.865987, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -67.001682],\n            [-146.865987, -65.554367],\n            [-139.629408, -65.554367],\n            [-139.629408, -67.001682],\n            [-146.865987, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -65.554367],\n            [-146.865987, -64.107051],\n            [-139.629408, -64.107051],\n            [-139.629408, -65.554367],\n            [-146.865987, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -64.107051],\n            [-146.865987, -62.659735],\n            [-139.629408, -62.659735],\n            [-139.629408, -64.107051],\n            [-146.865987, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -62.659735],\n            [-146.865987, -61.212419],\n            [-139.629408, -61.212419],\n            [-139.629408, -62.659735],\n            [-146.865987, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -61.212419],\n            [-146.865987, -59.765103],\n            [-139.629408, -59.765103],\n            [-139.629408, -61.212419],\n            [-146.865987, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -59.765103],\n            [-146.865987, -58.317787],\n            [-139.629408, -58.317787],\n            [-139.629408, -59.765103],\n            [-146.865987, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -58.317787],\n            [-146.865987, -56.870472],\n            [-139.629408, -56.870472],\n            [-139.629408, -58.317787],\n            [-146.865987, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -56.870472],\n            [-146.865987, -55.423156],\n            [-139.629408, -55.423156],\n            [-139.629408, -56.870472],\n            [-146.865987, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -55.423156],\n            [-146.865987, -53.97584],\n            [-139.629408, -53.97584],\n            [-139.629408, -55.423156],\n            [-146.865987, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -53.97584],\n            [-146.865987, -52.528524],\n            [-139.629408, -52.528524],\n            [-139.629408, -53.97584],\n            [-146.865987, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -52.528524],\n            [-146.865987, -51.081208],\n            [-139.629408, -51.081208],\n            [-139.629408, -52.528524],\n            [-146.865987, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -51.081208],\n            [-146.865987, -49.633892],\n            [-139.629408, -49.633892],\n            [-139.629408, -51.081208],\n            [-146.865987, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -49.633892],\n            [-146.865987, -48.186577],\n            [-139.629408, -48.186577],\n            [-139.629408, -49.633892],\n            [-146.865987, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -48.186577],\n            [-146.865987, -46.739261],\n            [-139.629408, -46.739261],\n            [-139.629408, -48.186577],\n            [-146.865987, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -46.739261],\n            [-146.865987, -45.291945],\n            [-139.629408, -45.291945],\n            [-139.629408, -46.739261],\n            [-146.865987, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -45.291945],\n            [-146.865987, -43.844629],\n            [-139.629408, -43.844629],\n            [-139.629408, -45.291945],\n            [-146.865987, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -43.844629],\n            [-146.865987, -42.397313],\n            [-139.629408, -42.397313],\n            [-139.629408, -43.844629],\n            [-146.865987, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -42.397313],\n            [-146.865987, -40.949997],\n            [-139.629408, -40.949997],\n            [-139.629408, -42.397313],\n            [-146.865987, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -40.949997],\n            [-146.865987, -39.502682],\n            [-139.629408, -39.502682],\n            [-139.629408, -40.949997],\n            [-146.865987, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -39.502682],\n            [-146.865987, -38.055366],\n            [-139.629408, -38.055366],\n            [-139.629408, -39.502682],\n            [-146.865987, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -38.055366],\n            [-146.865987, -36.60805],\n            [-139.629408, -36.60805],\n            [-139.629408, -38.055366],\n            [-146.865987, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -36.60805],\n            [-146.865987, -35.160734],\n            [-139.629408, -35.160734],\n            [-139.629408, -36.60805],\n            [-146.865987, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -35.160734],\n            [-146.865987, -33.713418],\n            [-139.629408, -33.713418],\n            [-139.629408, -35.160734],\n            [-146.865987, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -33.713418],\n            [-146.865987, -32.266102],\n            [-139.629408, -32.266102],\n            [-139.629408, -33.713418],\n            [-146.865987, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -32.266102],\n            [-146.865987, -30.818787],\n            [-139.629408, -30.818787],\n            [-139.629408, -32.266102],\n            [-146.865987, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -30.818787],\n            [-146.865987, -29.371471],\n            [-139.629408, -29.371471],\n            [-139.629408, -30.818787],\n            [-146.865987, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -29.371471],\n            [-146.865987, -27.924155],\n            [-139.629408, -27.924155],\n            [-139.629408, -29.371471],\n            [-146.865987, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -27.924155],\n            [-146.865987, -26.476839],\n            [-139.629408, -26.476839],\n            [-139.629408, -27.924155],\n            [-146.865987, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -26.476839],\n            [-146.865987, -25.029523],\n            [-139.629408, -25.029523],\n            [-139.629408, -26.476839],\n            [-146.865987, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -25.029523],\n            [-146.865987, -23.582207],\n            [-139.629408, -23.582207],\n            [-139.629408, -25.029523],\n            [-146.865987, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -23.582207],\n            [-146.865987, -22.134892],\n            [-139.629408, -22.134892],\n            [-139.629408, -23.582207],\n            [-146.865987, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -22.134892],\n            [-146.865987, -20.687576],\n            [-139.629408, -20.687576],\n            [-139.629408, -22.134892],\n            [-146.865987, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -20.687576],\n            [-146.865987, -19.24026],\n            [-139.629408, -19.24026],\n            [-139.629408, -20.687576],\n            [-146.865987, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -19.24026],\n            [-146.865987, -17.792944],\n            [-139.629408, -17.792944],\n            [-139.629408, -19.24026],\n            [-146.865987, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -17.792944],\n            [-146.865987, -16.345628],\n            [-139.629408, -16.345628],\n            [-139.629408, -17.792944],\n            [-146.865987, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -16.345628],\n            [-146.865987, -14.898312],\n            [-139.629408, -14.898312],\n            [-139.629408, -16.345628],\n            [-146.865987, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -14.898312],\n            [-146.865987, -13.450997],\n            [-139.629408, -13.450997],\n            [-139.629408, -14.898312],\n            [-146.865987, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -13.450997],\n            [-146.865987, -12.003681],\n            [-139.629408, -12.003681],\n            [-139.629408, -13.450997],\n            [-146.865987, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -12.003681],\n            [-146.865987, -10.556365],\n            [-139.629408, -10.556365],\n            [-139.629408, -12.003681],\n            [-146.865987, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -10.556365],\n            [-146.865987, -9.109049],\n            [-139.629408, -9.109049],\n            [-139.629408, -10.556365],\n            [-146.865987, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -9.109049],\n            [-146.865987, -7.661733],\n            [-139.629408, -7.661733],\n            [-139.629408, -9.109049],\n            [-146.865987, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -7.661733],\n            [-146.865987, -6.214417],\n            [-139.629408, -6.214417],\n            [-139.629408, -7.661733],\n            [-146.865987, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -6.214417],\n            [-146.865987, -4.767102],\n            [-139.629408, -4.767102],\n            [-139.629408, -6.214417],\n            [-146.865987, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -4.767102],\n            [-146.865987, -3.319786],\n            [-139.629408, -3.319786],\n            [-139.629408, -4.767102],\n            [-146.865987, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -3.319786],\n            [-146.865987, -1.87247],\n            [-139.629408, -1.87247],\n            [-139.629408, -3.319786],\n            [-146.865987, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -1.87247],\n            [-146.865987, -0.425154],\n            [-139.629408, -0.425154],\n            [-139.629408, -1.87247],\n            [-146.865987, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -0.425154],\n            [-146.865987, 1.022162],\n            [-139.629408, 1.022162],\n            [-139.629408, -0.425154],\n            [-146.865987, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 1.022162],\n            [-146.865987, 2.469478],\n            [-139.629408, 2.469478],\n            [-139.629408, 1.022162],\n            [-146.865987, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 2.469478],\n            [-146.865987, 3.916793],\n            [-139.629408, 3.916793],\n            [-139.629408, 2.469478],\n            [-146.865987, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 3.916793],\n            [-146.865987, 5.364109],\n            [-139.629408, 5.364109],\n            [-139.629408, 3.916793],\n            [-146.865987, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 5.364109],\n            [-146.865987, 6.811425],\n            [-139.629408, 6.811425],\n            [-139.629408, 5.364109],\n            [-146.865987, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 6.811425],\n            [-146.865987, 8.258741],\n            [-139.629408, 8.258741],\n            [-139.629408, 6.811425],\n            [-146.865987, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 8.258741],\n            [-146.865987, 9.706057],\n            [-139.629408, 9.706057],\n            [-139.629408, 8.258741],\n            [-146.865987, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 9.706057],\n            [-146.865987, 11.153373],\n            [-139.629408, 11.153373],\n            [-139.629408, 9.706057],\n            [-146.865987, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 11.153373],\n            [-146.865987, 12.600688],\n            [-139.629408, 12.600688],\n            [-139.629408, 11.153373],\n            [-146.865987, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 12.600688],\n            [-146.865987, 14.048004],\n            [-139.629408, 14.048004],\n            [-139.629408, 12.600688],\n            [-146.865987, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 14.048004],\n            [-146.865987, 15.49532],\n            [-139.629408, 15.49532],\n            [-139.629408, 14.048004],\n            [-146.865987, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 15.49532],\n            [-146.865987, 16.942636],\n            [-139.629408, 16.942636],\n            [-139.629408, 15.49532],\n            [-146.865987, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 16.942636],\n            [-146.865987, 18.389952],\n            [-139.629408, 18.389952],\n            [-139.629408, 16.942636],\n            [-146.865987, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 18.389952],\n            [-146.865987, 19.837268],\n            [-139.629408, 19.837268],\n            [-139.629408, 18.389952],\n            [-146.865987, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 19.837268],\n            [-146.865987, 21.284583],\n            [-139.629408, 21.284583],\n            [-139.629408, 19.837268],\n            [-146.865987, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 21.284583],\n            [-146.865987, 22.731899],\n            [-139.629408, 22.731899],\n            [-139.629408, 21.284583],\n            [-146.865987, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 22.731899],\n            [-146.865987, 24.179215],\n            [-139.629408, 24.179215],\n            [-139.629408, 22.731899],\n            [-146.865987, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 24.179215],\n            [-146.865987, 25.626531],\n            [-139.629408, 25.626531],\n            [-139.629408, 24.179215],\n            [-146.865987, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 25.626531],\n            [-146.865987, 27.073847],\n            [-139.629408, 27.073847],\n            [-139.629408, 25.626531],\n            [-146.865987, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 27.073847],\n            [-146.865987, 28.521163],\n            [-139.629408, 28.521163],\n            [-139.629408, 27.073847],\n            [-146.865987, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 28.521163],\n            [-146.865987, 29.968478],\n            [-139.629408, 29.968478],\n            [-139.629408, 28.521163],\n            [-146.865987, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 29.968478],\n            [-146.865987, 31.415794],\n            [-139.629408, 31.415794],\n            [-139.629408, 29.968478],\n            [-146.865987, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 31.415794],\n            [-146.865987, 32.86311],\n            [-139.629408, 32.86311],\n            [-139.629408, 31.415794],\n            [-146.865987, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 32.86311],\n            [-146.865987, 34.310426],\n            [-139.629408, 34.310426],\n            [-139.629408, 32.86311],\n            [-146.865987, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 34.310426],\n            [-146.865987, 35.757742],\n            [-139.629408, 35.757742],\n            [-139.629408, 34.310426],\n            [-146.865987, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 35.757742],\n            [-146.865987, 37.205058],\n            [-139.629408, 37.205058],\n            [-139.629408, 35.757742],\n            [-146.865987, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 37.205058],\n            [-146.865987, 38.652373],\n            [-139.629408, 38.652373],\n            [-139.629408, 37.205058],\n            [-146.865987, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 38.652373],\n            [-146.865987, 40.099689],\n            [-139.629408, 40.099689],\n            [-139.629408, 38.652373],\n            [-146.865987, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 40.099689],\n            [-146.865987, 41.547005],\n            [-139.629408, 41.547005],\n            [-139.629408, 40.099689],\n            [-146.865987, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 41.547005],\n            [-146.865987, 42.994321],\n            [-139.629408, 42.994321],\n            [-139.629408, 41.547005],\n            [-146.865987, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 42.994321],\n            [-146.865987, 44.441637],\n            [-139.629408, 44.441637],\n            [-139.629408, 42.994321],\n            [-146.865987, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 44.441637],\n            [-146.865987, 45.888952],\n            [-139.629408, 45.888952],\n            [-139.629408, 44.441637],\n            [-146.865987, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 45.888952],\n            [-146.865987, 47.336268],\n            [-139.629408, 47.336268],\n            [-139.629408, 45.888952],\n            [-146.865987, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 47.336268],\n            [-146.865987, 48.783584],\n            [-139.629408, 48.783584],\n            [-139.629408, 47.336268],\n            [-146.865987, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 48.783584],\n            [-146.865987, 50.2309],\n            [-139.629408, 50.2309],\n            [-139.629408, 48.783584],\n            [-146.865987, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 50.2309],\n            [-146.865987, 51.678216],\n            [-139.629408, 51.678216],\n            [-139.629408, 50.2309],\n            [-146.865987, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 51.678216],\n            [-146.865987, 53.125532],\n            [-139.629408, 53.125532],\n            [-139.629408, 51.678216],\n            [-146.865987, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 53.125532],\n            [-146.865987, 54.572847],\n            [-139.629408, 54.572847],\n            [-139.629408, 53.125532],\n            [-146.865987, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 54.572847],\n            [-146.865987, 56.020163],\n            [-139.629408, 56.020163],\n            [-139.629408, 54.572847],\n            [-146.865987, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 56.020163],\n            [-146.865987, 57.467479],\n            [-139.629408, 57.467479],\n            [-139.629408, 56.020163],\n            [-146.865987, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 57.467479],\n            [-146.865987, 58.914795],\n            [-139.629408, 58.914795],\n            [-139.629408, 57.467479],\n            [-146.865987, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 58.914795],\n            [-146.865987, 60.362111],\n            [-139.629408, 60.362111],\n            [-139.629408, 58.914795],\n            [-146.865987, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 60.362111],\n            [-146.865987, 61.809427],\n            [-139.629408, 61.809427],\n            [-139.629408, 60.362111],\n            [-146.865987, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 61.809427],\n            [-146.865987, 63.256742],\n            [-139.629408, 63.256742],\n            [-139.629408, 61.809427],\n            [-146.865987, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 63.256742],\n            [-146.865987, 64.704058],\n            [-139.629408, 64.704058],\n            [-139.629408, 63.256742],\n            [-146.865987, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 64.704058],\n            [-146.865987, 66.151374],\n            [-139.629408, 66.151374],\n            [-139.629408, 64.704058],\n            [-146.865987, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 66.151374],\n            [-146.865987, 67.59869],\n            [-139.629408, 67.59869],\n            [-139.629408, 66.151374],\n            [-146.865987, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 67.59869],\n            [-146.865987, 69.046006],\n            [-139.629408, 69.046006],\n            [-139.629408, 67.59869],\n            [-146.865987, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 69.046006],\n            [-146.865987, 70.493322],\n            [-139.629408, 70.493322],\n            [-139.629408, 69.046006],\n            [-146.865987, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 70.493322],\n            [-146.865987, 71.940637],\n            [-139.629408, 71.940637],\n            [-139.629408, 70.493322],\n            [-146.865987, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 71.940637],\n            [-146.865987, 73.387953],\n            [-139.629408, 73.387953],\n            [-139.629408, 71.940637],\n            [-146.865987, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 73.387953],\n            [-146.865987, 74.835269],\n            [-139.629408, 74.835269],\n            [-139.629408, 73.387953],\n            [-146.865987, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 74.835269],\n            [-146.865987, 76.282585],\n            [-139.629408, 76.282585],\n            [-139.629408, 74.835269],\n            [-146.865987, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 76.282585],\n            [-146.865987, 77.729901],\n            [-139.629408, 77.729901],\n            [-139.629408, 76.282585],\n            [-146.865987, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -80.027525],\n            [-139.629408, -78.580209],\n            [-132.392829, -78.580209],\n            [-132.392829, -80.027525],\n            [-139.629408, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -78.580209],\n            [-139.629408, -77.132893],\n            [-132.392829, -77.132893],\n            [-132.392829, -78.580209],\n            [-139.629408, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -77.132893],\n            [-139.629408, -75.685577],\n            [-132.392829, -75.685577],\n            [-132.392829, -77.132893],\n            [-139.629408, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -75.685577],\n            [-139.629408, -74.238262],\n            [-132.392829, -74.238262],\n            [-132.392829, -75.685577],\n            [-139.629408, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -74.238262],\n            [-139.629408, -72.790946],\n            [-132.392829, -72.790946],\n            [-132.392829, -74.238262],\n            [-139.629408, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -72.790946],\n            [-139.629408, -71.34363],\n            [-132.392829, -71.34363],\n            [-132.392829, -72.790946],\n            [-139.629408, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -71.34363],\n            [-139.629408, -69.896314],\n            [-132.392829, -69.896314],\n            [-132.392829, -71.34363],\n            [-139.629408, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -69.896314],\n            [-139.629408, -68.448998],\n            [-132.392829, -68.448998],\n            [-132.392829, -69.896314],\n            [-139.629408, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -68.448998],\n            [-139.629408, -67.001682],\n            [-132.392829, -67.001682],\n            [-132.392829, -68.448998],\n            [-139.629408, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -67.001682],\n            [-139.629408, -65.554367],\n            [-132.392829, -65.554367],\n            [-132.392829, -67.001682],\n            [-139.629408, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -65.554367],\n            [-139.629408, -64.107051],\n            [-132.392829, -64.107051],\n            [-132.392829, -65.554367],\n            [-139.629408, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -64.107051],\n            [-139.629408, -62.659735],\n            [-132.392829, -62.659735],\n            [-132.392829, -64.107051],\n            [-139.629408, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -62.659735],\n            [-139.629408, -61.212419],\n            [-132.392829, -61.212419],\n            [-132.392829, -62.659735],\n            [-139.629408, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -61.212419],\n            [-139.629408, -59.765103],\n            [-132.392829, -59.765103],\n            [-132.392829, -61.212419],\n            [-139.629408, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -59.765103],\n            [-139.629408, -58.317787],\n            [-132.392829, -58.317787],\n            [-132.392829, -59.765103],\n            [-139.629408, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -58.317787],\n            [-139.629408, -56.870472],\n            [-132.392829, -56.870472],\n            [-132.392829, -58.317787],\n            [-139.629408, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -56.870472],\n            [-139.629408, -55.423156],\n            [-132.392829, -55.423156],\n            [-132.392829, -56.870472],\n            [-139.629408, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -55.423156],\n            [-139.629408, -53.97584],\n            [-132.392829, -53.97584],\n            [-132.392829, -55.423156],\n            [-139.629408, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -53.97584],\n            [-139.629408, -52.528524],\n            [-132.392829, -52.528524],\n            [-132.392829, -53.97584],\n            [-139.629408, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -52.528524],\n            [-139.629408, -51.081208],\n            [-132.392829, -51.081208],\n            [-132.392829, -52.528524],\n            [-139.629408, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -51.081208],\n            [-139.629408, -49.633892],\n            [-132.392829, -49.633892],\n            [-132.392829, -51.081208],\n            [-139.629408, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -49.633892],\n            [-139.629408, -48.186577],\n            [-132.392829, -48.186577],\n            [-132.392829, -49.633892],\n            [-139.629408, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -48.186577],\n            [-139.629408, -46.739261],\n            [-132.392829, -46.739261],\n            [-132.392829, -48.186577],\n            [-139.629408, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -46.739261],\n            [-139.629408, -45.291945],\n            [-132.392829, -45.291945],\n            [-132.392829, -46.739261],\n            [-139.629408, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -45.291945],\n            [-139.629408, -43.844629],\n            [-132.392829, -43.844629],\n            [-132.392829, -45.291945],\n            [-139.629408, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -43.844629],\n            [-139.629408, -42.397313],\n            [-132.392829, -42.397313],\n            [-132.392829, -43.844629],\n            [-139.629408, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -42.397313],\n            [-139.629408, -40.949997],\n            [-132.392829, -40.949997],\n            [-132.392829, -42.397313],\n            [-139.629408, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -40.949997],\n            [-139.629408, -39.502682],\n            [-132.392829, -39.502682],\n            [-132.392829, -40.949997],\n            [-139.629408, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -39.502682],\n            [-139.629408, -38.055366],\n            [-132.392829, -38.055366],\n            [-132.392829, -39.502682],\n            [-139.629408, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -38.055366],\n            [-139.629408, -36.60805],\n            [-132.392829, -36.60805],\n            [-132.392829, -38.055366],\n            [-139.629408, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -36.60805],\n            [-139.629408, -35.160734],\n            [-132.392829, -35.160734],\n            [-132.392829, -36.60805],\n            [-139.629408, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -35.160734],\n            [-139.629408, -33.713418],\n            [-132.392829, -33.713418],\n            [-132.392829, -35.160734],\n            [-139.629408, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -33.713418],\n            [-139.629408, -32.266102],\n            [-132.392829, -32.266102],\n            [-132.392829, -33.713418],\n            [-139.629408, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -32.266102],\n            [-139.629408, -30.818787],\n            [-132.392829, -30.818787],\n            [-132.392829, -32.266102],\n            [-139.629408, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -30.818787],\n            [-139.629408, -29.371471],\n            [-132.392829, -29.371471],\n            [-132.392829, -30.818787],\n            [-139.629408, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -29.371471],\n            [-139.629408, -27.924155],\n            [-132.392829, -27.924155],\n            [-132.392829, -29.371471],\n            [-139.629408, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -27.924155],\n            [-139.629408, -26.476839],\n            [-132.392829, -26.476839],\n            [-132.392829, -27.924155],\n            [-139.629408, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -26.476839],\n            [-139.629408, -25.029523],\n            [-132.392829, -25.029523],\n            [-132.392829, -26.476839],\n            [-139.629408, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -25.029523],\n            [-139.629408, -23.582207],\n            [-132.392829, -23.582207],\n            [-132.392829, -25.029523],\n            [-139.629408, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -23.582207],\n            [-139.629408, -22.134892],\n            [-132.392829, -22.134892],\n            [-132.392829, -23.582207],\n            [-139.629408, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -22.134892],\n            [-139.629408, -20.687576],\n            [-132.392829, -20.687576],\n            [-132.392829, -22.134892],\n            [-139.629408, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -20.687576],\n            [-139.629408, -19.24026],\n            [-132.392829, -19.24026],\n            [-132.392829, -20.687576],\n            [-139.629408, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -19.24026],\n            [-139.629408, -17.792944],\n            [-132.392829, -17.792944],\n            [-132.392829, -19.24026],\n            [-139.629408, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -17.792944],\n            [-139.629408, -16.345628],\n            [-132.392829, -16.345628],\n            [-132.392829, -17.792944],\n            [-139.629408, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -16.345628],\n            [-139.629408, -14.898312],\n            [-132.392829, -14.898312],\n            [-132.392829, -16.345628],\n            [-139.629408, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -14.898312],\n            [-139.629408, -13.450997],\n            [-132.392829, -13.450997],\n            [-132.392829, -14.898312],\n            [-139.629408, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -13.450997],\n            [-139.629408, -12.003681],\n            [-132.392829, -12.003681],\n            [-132.392829, -13.450997],\n            [-139.629408, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -12.003681],\n            [-139.629408, -10.556365],\n            [-132.392829, -10.556365],\n            [-132.392829, -12.003681],\n            [-139.629408, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -10.556365],\n            [-139.629408, -9.109049],\n            [-132.392829, -9.109049],\n            [-132.392829, -10.556365],\n            [-139.629408, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -9.109049],\n            [-139.629408, -7.661733],\n            [-132.392829, -7.661733],\n            [-132.392829, -9.109049],\n            [-139.629408, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -7.661733],\n            [-139.629408, -6.214417],\n            [-132.392829, -6.214417],\n            [-132.392829, -7.661733],\n            [-139.629408, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -6.214417],\n            [-139.629408, -4.767102],\n            [-132.392829, -4.767102],\n            [-132.392829, -6.214417],\n            [-139.629408, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -4.767102],\n            [-139.629408, -3.319786],\n            [-132.392829, -3.319786],\n            [-132.392829, -4.767102],\n            [-139.629408, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -3.319786],\n            [-139.629408, -1.87247],\n            [-132.392829, -1.87247],\n            [-132.392829, -3.319786],\n            [-139.629408, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -1.87247],\n            [-139.629408, -0.425154],\n            [-132.392829, -0.425154],\n            [-132.392829, -1.87247],\n            [-139.629408, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -0.425154],\n            [-139.629408, 1.022162],\n            [-132.392829, 1.022162],\n            [-132.392829, -0.425154],\n            [-139.629408, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 1.022162],\n            [-139.629408, 2.469478],\n            [-132.392829, 2.469478],\n            [-132.392829, 1.022162],\n            [-139.629408, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 2.469478],\n            [-139.629408, 3.916793],\n            [-132.392829, 3.916793],\n            [-132.392829, 2.469478],\n            [-139.629408, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 3.916793],\n            [-139.629408, 5.364109],\n            [-132.392829, 5.364109],\n            [-132.392829, 3.916793],\n            [-139.629408, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 5.364109],\n            [-139.629408, 6.811425],\n            [-132.392829, 6.811425],\n            [-132.392829, 5.364109],\n            [-139.629408, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 6.811425],\n            [-139.629408, 8.258741],\n            [-132.392829, 8.258741],\n            [-132.392829, 6.811425],\n            [-139.629408, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 8.258741],\n            [-139.629408, 9.706057],\n            [-132.392829, 9.706057],\n            [-132.392829, 8.258741],\n            [-139.629408, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 9.706057],\n            [-139.629408, 11.153373],\n            [-132.392829, 11.153373],\n            [-132.392829, 9.706057],\n            [-139.629408, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 11.153373],\n            [-139.629408, 12.600688],\n            [-132.392829, 12.600688],\n            [-132.392829, 11.153373],\n            [-139.629408, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 12.600688],\n            [-139.629408, 14.048004],\n            [-132.392829, 14.048004],\n            [-132.392829, 12.600688],\n            [-139.629408, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 14.048004],\n            [-139.629408, 15.49532],\n            [-132.392829, 15.49532],\n            [-132.392829, 14.048004],\n            [-139.629408, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 15.49532],\n            [-139.629408, 16.942636],\n            [-132.392829, 16.942636],\n            [-132.392829, 15.49532],\n            [-139.629408, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 16.942636],\n            [-139.629408, 18.389952],\n            [-132.392829, 18.389952],\n            [-132.392829, 16.942636],\n            [-139.629408, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 18.389952],\n            [-139.629408, 19.837268],\n            [-132.392829, 19.837268],\n            [-132.392829, 18.389952],\n            [-139.629408, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 19.837268],\n            [-139.629408, 21.284583],\n            [-132.392829, 21.284583],\n            [-132.392829, 19.837268],\n            [-139.629408, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 21.284583],\n            [-139.629408, 22.731899],\n            [-132.392829, 22.731899],\n            [-132.392829, 21.284583],\n            [-139.629408, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 22.731899],\n            [-139.629408, 24.179215],\n            [-132.392829, 24.179215],\n            [-132.392829, 22.731899],\n            [-139.629408, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 24.179215],\n            [-139.629408, 25.626531],\n            [-132.392829, 25.626531],\n            [-132.392829, 24.179215],\n            [-139.629408, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 25.626531],\n            [-139.629408, 27.073847],\n            [-132.392829, 27.073847],\n            [-132.392829, 25.626531],\n            [-139.629408, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 27.073847],\n            [-139.629408, 28.521163],\n            [-132.392829, 28.521163],\n            [-132.392829, 27.073847],\n            [-139.629408, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 28.521163],\n            [-139.629408, 29.968478],\n            [-132.392829, 29.968478],\n            [-132.392829, 28.521163],\n            [-139.629408, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 29.968478],\n            [-139.629408, 31.415794],\n            [-132.392829, 31.415794],\n            [-132.392829, 29.968478],\n            [-139.629408, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 31.415794],\n            [-139.629408, 32.86311],\n            [-132.392829, 32.86311],\n            [-132.392829, 31.415794],\n            [-139.629408, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 32.86311],\n            [-139.629408, 34.310426],\n            [-132.392829, 34.310426],\n            [-132.392829, 32.86311],\n            [-139.629408, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 34.310426],\n            [-139.629408, 35.757742],\n            [-132.392829, 35.757742],\n            [-132.392829, 34.310426],\n            [-139.629408, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 35.757742],\n            [-139.629408, 37.205058],\n            [-132.392829, 37.205058],\n            [-132.392829, 35.757742],\n            [-139.629408, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 37.205058],\n            [-139.629408, 38.652373],\n            [-132.392829, 38.652373],\n            [-132.392829, 37.205058],\n            [-139.629408, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 38.652373],\n            [-139.629408, 40.099689],\n            [-132.392829, 40.099689],\n            [-132.392829, 38.652373],\n            [-139.629408, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 40.099689],\n            [-139.629408, 41.547005],\n            [-132.392829, 41.547005],\n            [-132.392829, 40.099689],\n            [-139.629408, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 41.547005],\n            [-139.629408, 42.994321],\n            [-132.392829, 42.994321],\n            [-132.392829, 41.547005],\n            [-139.629408, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 42.994321],\n            [-139.629408, 44.441637],\n            [-132.392829, 44.441637],\n            [-132.392829, 42.994321],\n            [-139.629408, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 44.441637],\n            [-139.629408, 45.888952],\n            [-132.392829, 45.888952],\n            [-132.392829, 44.441637],\n            [-139.629408, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 45.888952],\n            [-139.629408, 47.336268],\n            [-132.392829, 47.336268],\n            [-132.392829, 45.888952],\n            [-139.629408, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 47.336268],\n            [-139.629408, 48.783584],\n            [-132.392829, 48.783584],\n            [-132.392829, 47.336268],\n            [-139.629408, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 48.783584],\n            [-139.629408, 50.2309],\n            [-132.392829, 50.2309],\n            [-132.392829, 48.783584],\n            [-139.629408, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 50.2309],\n            [-139.629408, 51.678216],\n            [-132.392829, 51.678216],\n            [-132.392829, 50.2309],\n            [-139.629408, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 51.678216],\n            [-139.629408, 53.125532],\n            [-132.392829, 53.125532],\n            [-132.392829, 51.678216],\n            [-139.629408, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 53.125532],\n            [-139.629408, 54.572847],\n            [-132.392829, 54.572847],\n            [-132.392829, 53.125532],\n            [-139.629408, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 54.572847],\n            [-139.629408, 56.020163],\n            [-132.392829, 56.020163],\n            [-132.392829, 54.572847],\n            [-139.629408, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 56.020163],\n            [-139.629408, 57.467479],\n            [-132.392829, 57.467479],\n            [-132.392829, 56.020163],\n            [-139.629408, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 57.467479],\n            [-139.629408, 58.914795],\n            [-132.392829, 58.914795],\n            [-132.392829, 57.467479],\n            [-139.629408, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 58.914795],\n            [-139.629408, 60.362111],\n            [-132.392829, 60.362111],\n            [-132.392829, 58.914795],\n            [-139.629408, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 60.362111],\n            [-139.629408, 61.809427],\n            [-132.392829, 61.809427],\n            [-132.392829, 60.362111],\n            [-139.629408, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 61.809427],\n            [-139.629408, 63.256742],\n            [-132.392829, 63.256742],\n            [-132.392829, 61.809427],\n            [-139.629408, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 63.256742],\n            [-139.629408, 64.704058],\n            [-132.392829, 64.704058],\n            [-132.392829, 63.256742],\n            [-139.629408, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 64.704058],\n            [-139.629408, 66.151374],\n            [-132.392829, 66.151374],\n            [-132.392829, 64.704058],\n            [-139.629408, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 66.151374],\n            [-139.629408, 67.59869],\n            [-132.392829, 67.59869],\n            [-132.392829, 66.151374],\n            [-139.629408, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 67.59869],\n            [-139.629408, 69.046006],\n            [-132.392829, 69.046006],\n            [-132.392829, 67.59869],\n            [-139.629408, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 69.046006],\n            [-139.629408, 70.493322],\n            [-132.392829, 70.493322],\n            [-132.392829, 69.046006],\n            [-139.629408, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 70.493322],\n            [-139.629408, 71.940637],\n            [-132.392829, 71.940637],\n            [-132.392829, 70.493322],\n            [-139.629408, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 71.940637],\n            [-139.629408, 73.387953],\n            [-132.392829, 73.387953],\n            [-132.392829, 71.940637],\n            [-139.629408, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 73.387953],\n            [-139.629408, 74.835269],\n            [-132.392829, 74.835269],\n            [-132.392829, 73.387953],\n            [-139.629408, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 74.835269],\n            [-139.629408, 76.282585],\n            [-132.392829, 76.282585],\n            [-132.392829, 74.835269],\n            [-139.629408, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 76.282585],\n            [-139.629408, 77.729901],\n            [-132.392829, 77.729901],\n            [-132.392829, 76.282585],\n            [-139.629408, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -80.027525],\n            [-132.392829, -78.580209],\n            [-125.15625, -78.580209],\n            [-125.15625, -80.027525],\n            [-132.392829, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -78.580209],\n            [-132.392829, -77.132893],\n            [-125.15625, -77.132893],\n            [-125.15625, -78.580209],\n            [-132.392829, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -77.132893],\n            [-132.392829, -75.685577],\n            [-125.15625, -75.685577],\n            [-125.15625, -77.132893],\n            [-132.392829, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -75.685577],\n            [-132.392829, -74.238262],\n            [-125.15625, -74.238262],\n            [-125.15625, -75.685577],\n            [-132.392829, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -74.238262],\n            [-132.392829, -72.790946],\n            [-125.15625, -72.790946],\n            [-125.15625, -74.238262],\n            [-132.392829, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -72.790946],\n            [-132.392829, -71.34363],\n            [-125.15625, -71.34363],\n            [-125.15625, -72.790946],\n            [-132.392829, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -71.34363],\n            [-132.392829, -69.896314],\n            [-125.15625, -69.896314],\n            [-125.15625, -71.34363],\n            [-132.392829, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -69.896314],\n            [-132.392829, -68.448998],\n            [-125.15625, -68.448998],\n            [-125.15625, -69.896314],\n            [-132.392829, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -68.448998],\n            [-132.392829, -67.001682],\n            [-125.15625, -67.001682],\n            [-125.15625, -68.448998],\n            [-132.392829, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -67.001682],\n            [-132.392829, -65.554367],\n            [-125.15625, -65.554367],\n            [-125.15625, -67.001682],\n            [-132.392829, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -65.554367],\n            [-132.392829, -64.107051],\n            [-125.15625, -64.107051],\n            [-125.15625, -65.554367],\n            [-132.392829, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -64.107051],\n            [-132.392829, -62.659735],\n            [-125.15625, -62.659735],\n            [-125.15625, -64.107051],\n            [-132.392829, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -62.659735],\n            [-132.392829, -61.212419],\n            [-125.15625, -61.212419],\n            [-125.15625, -62.659735],\n            [-132.392829, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -61.212419],\n            [-132.392829, -59.765103],\n            [-125.15625, -59.765103],\n            [-125.15625, -61.212419],\n            [-132.392829, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -59.765103],\n            [-132.392829, -58.317787],\n            [-125.15625, -58.317787],\n            [-125.15625, -59.765103],\n            [-132.392829, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -58.317787],\n            [-132.392829, -56.870472],\n            [-125.15625, -56.870472],\n            [-125.15625, -58.317787],\n            [-132.392829, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -56.870472],\n            [-132.392829, -55.423156],\n            [-125.15625, -55.423156],\n            [-125.15625, -56.870472],\n            [-132.392829, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -55.423156],\n            [-132.392829, -53.97584],\n            [-125.15625, -53.97584],\n            [-125.15625, -55.423156],\n            [-132.392829, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -53.97584],\n            [-132.392829, -52.528524],\n            [-125.15625, -52.528524],\n            [-125.15625, -53.97584],\n            [-132.392829, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -52.528524],\n            [-132.392829, -51.081208],\n            [-125.15625, -51.081208],\n            [-125.15625, -52.528524],\n            [-132.392829, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -51.081208],\n            [-132.392829, -49.633892],\n            [-125.15625, -49.633892],\n            [-125.15625, -51.081208],\n            [-132.392829, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -49.633892],\n            [-132.392829, -48.186577],\n            [-125.15625, -48.186577],\n            [-125.15625, -49.633892],\n            [-132.392829, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -48.186577],\n            [-132.392829, -46.739261],\n            [-125.15625, -46.739261],\n            [-125.15625, -48.186577],\n            [-132.392829, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -46.739261],\n            [-132.392829, -45.291945],\n            [-125.15625, -45.291945],\n            [-125.15625, -46.739261],\n            [-132.392829, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -45.291945],\n            [-132.392829, -43.844629],\n            [-125.15625, -43.844629],\n            [-125.15625, -45.291945],\n            [-132.392829, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -43.844629],\n            [-132.392829, -42.397313],\n            [-125.15625, -42.397313],\n            [-125.15625, -43.844629],\n            [-132.392829, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -42.397313],\n            [-132.392829, -40.949997],\n            [-125.15625, -40.949997],\n            [-125.15625, -42.397313],\n            [-132.392829, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -40.949997],\n            [-132.392829, -39.502682],\n            [-125.15625, -39.502682],\n            [-125.15625, -40.949997],\n            [-132.392829, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -39.502682],\n            [-132.392829, -38.055366],\n            [-125.15625, -38.055366],\n            [-125.15625, -39.502682],\n            [-132.392829, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -38.055366],\n            [-132.392829, -36.60805],\n            [-125.15625, -36.60805],\n            [-125.15625, -38.055366],\n            [-132.392829, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -36.60805],\n            [-132.392829, -35.160734],\n            [-125.15625, -35.160734],\n            [-125.15625, -36.60805],\n            [-132.392829, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -35.160734],\n            [-132.392829, -33.713418],\n            [-125.15625, -33.713418],\n            [-125.15625, -35.160734],\n            [-132.392829, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -33.713418],\n            [-132.392829, -32.266102],\n            [-125.15625, -32.266102],\n            [-125.15625, -33.713418],\n            [-132.392829, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -32.266102],\n            [-132.392829, -30.818787],\n            [-125.15625, -30.818787],\n            [-125.15625, -32.266102],\n            [-132.392829, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -30.818787],\n            [-132.392829, -29.371471],\n            [-125.15625, -29.371471],\n            [-125.15625, -30.818787],\n            [-132.392829, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -29.371471],\n            [-132.392829, -27.924155],\n            [-125.15625, -27.924155],\n            [-125.15625, -29.371471],\n            [-132.392829, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -27.924155],\n            [-132.392829, -26.476839],\n            [-125.15625, -26.476839],\n            [-125.15625, -27.924155],\n            [-132.392829, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -26.476839],\n            [-132.392829, -25.029523],\n            [-125.15625, -25.029523],\n            [-125.15625, -26.476839],\n            [-132.392829, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -25.029523],\n            [-132.392829, -23.582207],\n            [-125.15625, -23.582207],\n            [-125.15625, -25.029523],\n            [-132.392829, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -23.582207],\n            [-132.392829, -22.134892],\n            [-125.15625, -22.134892],\n            [-125.15625, -23.582207],\n            [-132.392829, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -22.134892],\n            [-132.392829, -20.687576],\n            [-125.15625, -20.687576],\n            [-125.15625, -22.134892],\n            [-132.392829, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -20.687576],\n            [-132.392829, -19.24026],\n            [-125.15625, -19.24026],\n            [-125.15625, -20.687576],\n            [-132.392829, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -19.24026],\n            [-132.392829, -17.792944],\n            [-125.15625, -17.792944],\n            [-125.15625, -19.24026],\n            [-132.392829, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -17.792944],\n            [-132.392829, -16.345628],\n            [-125.15625, -16.345628],\n            [-125.15625, -17.792944],\n            [-132.392829, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -16.345628],\n            [-132.392829, -14.898312],\n            [-125.15625, -14.898312],\n            [-125.15625, -16.345628],\n            [-132.392829, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -14.898312],\n            [-132.392829, -13.450997],\n            [-125.15625, -13.450997],\n            [-125.15625, -14.898312],\n            [-132.392829, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -13.450997],\n            [-132.392829, -12.003681],\n            [-125.15625, -12.003681],\n            [-125.15625, -13.450997],\n            [-132.392829, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -12.003681],\n            [-132.392829, -10.556365],\n            [-125.15625, -10.556365],\n            [-125.15625, -12.003681],\n            [-132.392829, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -10.556365],\n            [-132.392829, -9.109049],\n            [-125.15625, -9.109049],\n            [-125.15625, -10.556365],\n            [-132.392829, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -9.109049],\n            [-132.392829, -7.661733],\n            [-125.15625, -7.661733],\n            [-125.15625, -9.109049],\n            [-132.392829, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -7.661733],\n            [-132.392829, -6.214417],\n            [-125.15625, -6.214417],\n            [-125.15625, -7.661733],\n            [-132.392829, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -6.214417],\n            [-132.392829, -4.767102],\n            [-125.15625, -4.767102],\n            [-125.15625, -6.214417],\n            [-132.392829, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -4.767102],\n            [-132.392829, -3.319786],\n            [-125.15625, -3.319786],\n            [-125.15625, -4.767102],\n            [-132.392829, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -3.319786],\n            [-132.392829, -1.87247],\n            [-125.15625, -1.87247],\n            [-125.15625, -3.319786],\n            [-132.392829, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -1.87247],\n            [-132.392829, -0.425154],\n            [-125.15625, -0.425154],\n            [-125.15625, -1.87247],\n            [-132.392829, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -0.425154],\n            [-132.392829, 1.022162],\n            [-125.15625, 1.022162],\n            [-125.15625, -0.425154],\n            [-132.392829, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 1.022162],\n            [-132.392829, 2.469478],\n            [-125.15625, 2.469478],\n            [-125.15625, 1.022162],\n            [-132.392829, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 2.469478],\n            [-132.392829, 3.916793],\n            [-125.15625, 3.916793],\n            [-125.15625, 2.469478],\n            [-132.392829, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 3.916793],\n            [-132.392829, 5.364109],\n            [-125.15625, 5.364109],\n            [-125.15625, 3.916793],\n            [-132.392829, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 5.364109],\n            [-132.392829, 6.811425],\n            [-125.15625, 6.811425],\n            [-125.15625, 5.364109],\n            [-132.392829, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 6.811425],\n            [-132.392829, 8.258741],\n            [-125.15625, 8.258741],\n            [-125.15625, 6.811425],\n            [-132.392829, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 8.258741],\n            [-132.392829, 9.706057],\n            [-125.15625, 9.706057],\n            [-125.15625, 8.258741],\n            [-132.392829, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 9.706057],\n            [-132.392829, 11.153373],\n            [-125.15625, 11.153373],\n            [-125.15625, 9.706057],\n            [-132.392829, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 11.153373],\n            [-132.392829, 12.600688],\n            [-125.15625, 12.600688],\n            [-125.15625, 11.153373],\n            [-132.392829, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 12.600688],\n            [-132.392829, 14.048004],\n            [-125.15625, 14.048004],\n            [-125.15625, 12.600688],\n            [-132.392829, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 14.048004],\n            [-132.392829, 15.49532],\n            [-125.15625, 15.49532],\n            [-125.15625, 14.048004],\n            [-132.392829, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 15.49532],\n            [-132.392829, 16.942636],\n            [-125.15625, 16.942636],\n            [-125.15625, 15.49532],\n            [-132.392829, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 16.942636],\n            [-132.392829, 18.389952],\n            [-125.15625, 18.389952],\n            [-125.15625, 16.942636],\n            [-132.392829, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 18.389952],\n            [-132.392829, 19.837268],\n            [-125.15625, 19.837268],\n            [-125.15625, 18.389952],\n            [-132.392829, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 19.837268],\n            [-132.392829, 21.284583],\n            [-125.15625, 21.284583],\n            [-125.15625, 19.837268],\n            [-132.392829, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 21.284583],\n            [-132.392829, 22.731899],\n            [-125.15625, 22.731899],\n            [-125.15625, 21.284583],\n            [-132.392829, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 22.731899],\n            [-132.392829, 24.179215],\n            [-125.15625, 24.179215],\n            [-125.15625, 22.731899],\n            [-132.392829, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 24.179215],\n            [-132.392829, 25.626531],\n            [-125.15625, 25.626531],\n            [-125.15625, 24.179215],\n            [-132.392829, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 25.626531],\n            [-132.392829, 27.073847],\n            [-125.15625, 27.073847],\n            [-125.15625, 25.626531],\n            [-132.392829, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 27.073847],\n            [-132.392829, 28.521163],\n            [-125.15625, 28.521163],\n            [-125.15625, 27.073847],\n            [-132.392829, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 28.521163],\n            [-132.392829, 29.968478],\n            [-125.15625, 29.968478],\n            [-125.15625, 28.521163],\n            [-132.392829, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 29.968478],\n            [-132.392829, 31.415794],\n            [-125.15625, 31.415794],\n            [-125.15625, 29.968478],\n            [-132.392829, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 31.415794],\n            [-132.392829, 32.86311],\n            [-125.15625, 32.86311],\n            [-125.15625, 31.415794],\n            [-132.392829, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 32.86311],\n            [-132.392829, 34.310426],\n            [-125.15625, 34.310426],\n            [-125.15625, 32.86311],\n            [-132.392829, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 34.310426],\n            [-132.392829, 35.757742],\n            [-125.15625, 35.757742],\n            [-125.15625, 34.310426],\n            [-132.392829, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 35.757742],\n            [-132.392829, 37.205058],\n            [-125.15625, 37.205058],\n            [-125.15625, 35.757742],\n            [-132.392829, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 37.205058],\n            [-132.392829, 38.652373],\n            [-125.15625, 38.652373],\n            [-125.15625, 37.205058],\n            [-132.392829, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 38.652373],\n            [-132.392829, 40.099689],\n            [-125.15625, 40.099689],\n            [-125.15625, 38.652373],\n            [-132.392829, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 40.099689],\n            [-132.392829, 41.547005],\n            [-125.15625, 41.547005],\n            [-125.15625, 40.099689],\n            [-132.392829, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 41.547005],\n            [-132.392829, 42.994321],\n            [-125.15625, 42.994321],\n            [-125.15625, 41.547005],\n            [-132.392829, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 42.994321],\n            [-132.392829, 44.441637],\n            [-125.15625, 44.441637],\n            [-125.15625, 42.994321],\n            [-132.392829, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 44.441637],\n            [-132.392829, 45.888952],\n            [-125.15625, 45.888952],\n            [-125.15625, 44.441637],\n            [-132.392829, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 45.888952],\n            [-132.392829, 47.336268],\n            [-125.15625, 47.336268],\n            [-125.15625, 45.888952],\n            [-132.392829, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 47.336268],\n            [-132.392829, 48.783584],\n            [-125.15625, 48.783584],\n            [-125.15625, 47.336268],\n            [-132.392829, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 48.783584],\n            [-132.392829, 50.2309],\n            [-125.15625, 50.2309],\n            [-125.15625, 48.783584],\n            [-132.392829, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 50.2309],\n            [-132.392829, 51.678216],\n            [-125.15625, 51.678216],\n            [-125.15625, 50.2309],\n            [-132.392829, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 51.678216],\n            [-132.392829, 53.125532],\n            [-125.15625, 53.125532],\n            [-125.15625, 51.678216],\n            [-132.392829, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 53.125532],\n            [-132.392829, 54.572847],\n            [-125.15625, 54.572847],\n            [-125.15625, 53.125532],\n            [-132.392829, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 54.572847],\n            [-132.392829, 56.020163],\n            [-125.15625, 56.020163],\n            [-125.15625, 54.572847],\n            [-132.392829, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 56.020163],\n            [-132.392829, 57.467479],\n            [-125.15625, 57.467479],\n            [-125.15625, 56.020163],\n            [-132.392829, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 57.467479],\n            [-132.392829, 58.914795],\n            [-125.15625, 58.914795],\n            [-125.15625, 57.467479],\n            [-132.392829, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 58.914795],\n            [-132.392829, 60.362111],\n            [-125.15625, 60.362111],\n            [-125.15625, 58.914795],\n            [-132.392829, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 60.362111],\n            [-132.392829, 61.809427],\n            [-125.15625, 61.809427],\n            [-125.15625, 60.362111],\n            [-132.392829, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 61.809427],\n            [-132.392829, 63.256742],\n            [-125.15625, 63.256742],\n            [-125.15625, 61.809427],\n            [-132.392829, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 63.256742],\n            [-132.392829, 64.704058],\n            [-125.15625, 64.704058],\n            [-125.15625, 63.256742],\n            [-132.392829, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 64.704058],\n            [-132.392829, 66.151374],\n            [-125.15625, 66.151374],\n            [-125.15625, 64.704058],\n            [-132.392829, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 66.151374],\n            [-132.392829, 67.59869],\n            [-125.15625, 67.59869],\n            [-125.15625, 66.151374],\n            [-132.392829, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 67.59869],\n            [-132.392829, 69.046006],\n            [-125.15625, 69.046006],\n            [-125.15625, 67.59869],\n            [-132.392829, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 69.046006],\n            [-132.392829, 70.493322],\n            [-125.15625, 70.493322],\n            [-125.15625, 69.046006],\n            [-132.392829, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 70.493322],\n            [-132.392829, 71.940637],\n            [-125.15625, 71.940637],\n            [-125.15625, 70.493322],\n            [-132.392829, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 71.940637],\n            [-132.392829, 73.387953],\n            [-125.15625, 73.387953],\n            [-125.15625, 71.940637],\n            [-132.392829, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 73.387953],\n            [-132.392829, 74.835269],\n            [-125.15625, 74.835269],\n            [-125.15625, 73.387953],\n            [-132.392829, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 74.835269],\n            [-132.392829, 76.282585],\n            [-125.15625, 76.282585],\n            [-125.15625, 74.835269],\n            [-132.392829, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 76.282585],\n            [-132.392829, 77.729901],\n            [-125.15625, 77.729901],\n            [-125.15625, 76.282585],\n            [-132.392829, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -80.027525],\n            [-125.15625, -78.580209],\n            [-117.919671, -78.580209],\n            [-117.919671, -80.027525],\n            [-125.15625, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -78.580209],\n            [-125.15625, -77.132893],\n            [-117.919671, -77.132893],\n            [-117.919671, -78.580209],\n            [-125.15625, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -77.132893],\n            [-125.15625, -75.685577],\n            [-117.919671, -75.685577],\n            [-117.919671, -77.132893],\n            [-125.15625, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -75.685577],\n            [-125.15625, -74.238262],\n            [-117.919671, -74.238262],\n            [-117.919671, -75.685577],\n            [-125.15625, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -74.238262],\n            [-125.15625, -72.790946],\n            [-117.919671, -72.790946],\n            [-117.919671, -74.238262],\n            [-125.15625, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -72.790946],\n            [-125.15625, -71.34363],\n            [-117.919671, -71.34363],\n            [-117.919671, -72.790946],\n            [-125.15625, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -71.34363],\n            [-125.15625, -69.896314],\n            [-117.919671, -69.896314],\n            [-117.919671, -71.34363],\n            [-125.15625, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -69.896314],\n            [-125.15625, -68.448998],\n            [-117.919671, -68.448998],\n            [-117.919671, -69.896314],\n            [-125.15625, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -68.448998],\n            [-125.15625, -67.001682],\n            [-117.919671, -67.001682],\n            [-117.919671, -68.448998],\n            [-125.15625, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -67.001682],\n            [-125.15625, -65.554367],\n            [-117.919671, -65.554367],\n            [-117.919671, -67.001682],\n            [-125.15625, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -65.554367],\n            [-125.15625, -64.107051],\n            [-117.919671, -64.107051],\n            [-117.919671, -65.554367],\n            [-125.15625, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -64.107051],\n            [-125.15625, -62.659735],\n            [-117.919671, -62.659735],\n            [-117.919671, -64.107051],\n            [-125.15625, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -62.659735],\n            [-125.15625, -61.212419],\n            [-117.919671, -61.212419],\n            [-117.919671, -62.659735],\n            [-125.15625, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -61.212419],\n            [-125.15625, -59.765103],\n            [-117.919671, -59.765103],\n            [-117.919671, -61.212419],\n            [-125.15625, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -59.765103],\n            [-125.15625, -58.317787],\n            [-117.919671, -58.317787],\n            [-117.919671, -59.765103],\n            [-125.15625, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -58.317787],\n            [-125.15625, -56.870472],\n            [-117.919671, -56.870472],\n            [-117.919671, -58.317787],\n            [-125.15625, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -56.870472],\n            [-125.15625, -55.423156],\n            [-117.919671, -55.423156],\n            [-117.919671, -56.870472],\n            [-125.15625, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -55.423156],\n            [-125.15625, -53.97584],\n            [-117.919671, -53.97584],\n            [-117.919671, -55.423156],\n            [-125.15625, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -53.97584],\n            [-125.15625, -52.528524],\n            [-117.919671, -52.528524],\n            [-117.919671, -53.97584],\n            [-125.15625, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -52.528524],\n            [-125.15625, -51.081208],\n            [-117.919671, -51.081208],\n            [-117.919671, -52.528524],\n            [-125.15625, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -51.081208],\n            [-125.15625, -49.633892],\n            [-117.919671, -49.633892],\n            [-117.919671, -51.081208],\n            [-125.15625, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -49.633892],\n            [-125.15625, -48.186577],\n            [-117.919671, -48.186577],\n            [-117.919671, -49.633892],\n            [-125.15625, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -48.186577],\n            [-125.15625, -46.739261],\n            [-117.919671, -46.739261],\n            [-117.919671, -48.186577],\n            [-125.15625, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -46.739261],\n            [-125.15625, -45.291945],\n            [-117.919671, -45.291945],\n            [-117.919671, -46.739261],\n            [-125.15625, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -45.291945],\n            [-125.15625, -43.844629],\n            [-117.919671, -43.844629],\n            [-117.919671, -45.291945],\n            [-125.15625, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -43.844629],\n            [-125.15625, -42.397313],\n            [-117.919671, -42.397313],\n            [-117.919671, -43.844629],\n            [-125.15625, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -42.397313],\n            [-125.15625, -40.949997],\n            [-117.919671, -40.949997],\n            [-117.919671, -42.397313],\n            [-125.15625, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -40.949997],\n            [-125.15625, -39.502682],\n            [-117.919671, -39.502682],\n            [-117.919671, -40.949997],\n            [-125.15625, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -39.502682],\n            [-125.15625, -38.055366],\n            [-117.919671, -38.055366],\n            [-117.919671, -39.502682],\n            [-125.15625, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -38.055366],\n            [-125.15625, -36.60805],\n            [-117.919671, -36.60805],\n            [-117.919671, -38.055366],\n            [-125.15625, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -36.60805],\n            [-125.15625, -35.160734],\n            [-117.919671, -35.160734],\n            [-117.919671, -36.60805],\n            [-125.15625, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -35.160734],\n            [-125.15625, -33.713418],\n            [-117.919671, -33.713418],\n            [-117.919671, -35.160734],\n            [-125.15625, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -33.713418],\n            [-125.15625, -32.266102],\n            [-117.919671, -32.266102],\n            [-117.919671, -33.713418],\n            [-125.15625, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -32.266102],\n            [-125.15625, -30.818787],\n            [-117.919671, -30.818787],\n            [-117.919671, -32.266102],\n            [-125.15625, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -30.818787],\n            [-125.15625, -29.371471],\n            [-117.919671, -29.371471],\n            [-117.919671, -30.818787],\n            [-125.15625, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -29.371471],\n            [-125.15625, -27.924155],\n            [-117.919671, -27.924155],\n            [-117.919671, -29.371471],\n            [-125.15625, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -27.924155],\n            [-125.15625, -26.476839],\n            [-117.919671, -26.476839],\n            [-117.919671, -27.924155],\n            [-125.15625, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -26.476839],\n            [-125.15625, -25.029523],\n            [-117.919671, -25.029523],\n            [-117.919671, -26.476839],\n            [-125.15625, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -25.029523],\n            [-125.15625, -23.582207],\n            [-117.919671, -23.582207],\n            [-117.919671, -25.029523],\n            [-125.15625, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -23.582207],\n            [-125.15625, -22.134892],\n            [-117.919671, -22.134892],\n            [-117.919671, -23.582207],\n            [-125.15625, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -22.134892],\n            [-125.15625, -20.687576],\n            [-117.919671, -20.687576],\n            [-117.919671, -22.134892],\n            [-125.15625, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -20.687576],\n            [-125.15625, -19.24026],\n            [-117.919671, -19.24026],\n            [-117.919671, -20.687576],\n            [-125.15625, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -19.24026],\n            [-125.15625, -17.792944],\n            [-117.919671, -17.792944],\n            [-117.919671, -19.24026],\n            [-125.15625, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -17.792944],\n            [-125.15625, -16.345628],\n            [-117.919671, -16.345628],\n            [-117.919671, -17.792944],\n            [-125.15625, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -16.345628],\n            [-125.15625, -14.898312],\n            [-117.919671, -14.898312],\n            [-117.919671, -16.345628],\n            [-125.15625, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -14.898312],\n            [-125.15625, -13.450997],\n            [-117.919671, -13.450997],\n            [-117.919671, -14.898312],\n            [-125.15625, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -13.450997],\n            [-125.15625, -12.003681],\n            [-117.919671, -12.003681],\n            [-117.919671, -13.450997],\n            [-125.15625, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -12.003681],\n            [-125.15625, -10.556365],\n            [-117.919671, -10.556365],\n            [-117.919671, -12.003681],\n            [-125.15625, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -10.556365],\n            [-125.15625, -9.109049],\n            [-117.919671, -9.109049],\n            [-117.919671, -10.556365],\n            [-125.15625, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -9.109049],\n            [-125.15625, -7.661733],\n            [-117.919671, -7.661733],\n            [-117.919671, -9.109049],\n            [-125.15625, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -7.661733],\n            [-125.15625, -6.214417],\n            [-117.919671, -6.214417],\n            [-117.919671, -7.661733],\n            [-125.15625, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -6.214417],\n            [-125.15625, -4.767102],\n            [-117.919671, -4.767102],\n            [-117.919671, -6.214417],\n            [-125.15625, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -4.767102],\n            [-125.15625, -3.319786],\n            [-117.919671, -3.319786],\n            [-117.919671, -4.767102],\n            [-125.15625, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -3.319786],\n            [-125.15625, -1.87247],\n            [-117.919671, -1.87247],\n            [-117.919671, -3.319786],\n            [-125.15625, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -1.87247],\n            [-125.15625, -0.425154],\n            [-117.919671, -0.425154],\n            [-117.919671, -1.87247],\n            [-125.15625, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -0.425154],\n            [-125.15625, 1.022162],\n            [-117.919671, 1.022162],\n            [-117.919671, -0.425154],\n            [-125.15625, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 1.022162],\n            [-125.15625, 2.469478],\n            [-117.919671, 2.469478],\n            [-117.919671, 1.022162],\n            [-125.15625, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 2.469478],\n            [-125.15625, 3.916793],\n            [-117.919671, 3.916793],\n            [-117.919671, 2.469478],\n            [-125.15625, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 3.916793],\n            [-125.15625, 5.364109],\n            [-117.919671, 5.364109],\n            [-117.919671, 3.916793],\n            [-125.15625, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 5.364109],\n            [-125.15625, 6.811425],\n            [-117.919671, 6.811425],\n            [-117.919671, 5.364109],\n            [-125.15625, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 6.811425],\n            [-125.15625, 8.258741],\n            [-117.919671, 8.258741],\n            [-117.919671, 6.811425],\n            [-125.15625, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 8.258741],\n            [-125.15625, 9.706057],\n            [-117.919671, 9.706057],\n            [-117.919671, 8.258741],\n            [-125.15625, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 9.706057],\n            [-125.15625, 11.153373],\n            [-117.919671, 11.153373],\n            [-117.919671, 9.706057],\n            [-125.15625, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 11.153373],\n            [-125.15625, 12.600688],\n            [-117.919671, 12.600688],\n            [-117.919671, 11.153373],\n            [-125.15625, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 12.600688],\n            [-125.15625, 14.048004],\n            [-117.919671, 14.048004],\n            [-117.919671, 12.600688],\n            [-125.15625, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 14.048004],\n            [-125.15625, 15.49532],\n            [-117.919671, 15.49532],\n            [-117.919671, 14.048004],\n            [-125.15625, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 15.49532],\n            [-125.15625, 16.942636],\n            [-117.919671, 16.942636],\n            [-117.919671, 15.49532],\n            [-125.15625, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 16.942636],\n            [-125.15625, 18.389952],\n            [-117.919671, 18.389952],\n            [-117.919671, 16.942636],\n            [-125.15625, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 18.389952],\n            [-125.15625, 19.837268],\n            [-117.919671, 19.837268],\n            [-117.919671, 18.389952],\n            [-125.15625, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 19.837268],\n            [-125.15625, 21.284583],\n            [-117.919671, 21.284583],\n            [-117.919671, 19.837268],\n            [-125.15625, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 21.284583],\n            [-125.15625, 22.731899],\n            [-117.919671, 22.731899],\n            [-117.919671, 21.284583],\n            [-125.15625, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 22.731899],\n            [-125.15625, 24.179215],\n            [-117.919671, 24.179215],\n            [-117.919671, 22.731899],\n            [-125.15625, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 24.179215],\n            [-125.15625, 25.626531],\n            [-117.919671, 25.626531],\n            [-117.919671, 24.179215],\n            [-125.15625, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 25.626531],\n            [-125.15625, 27.073847],\n            [-117.919671, 27.073847],\n            [-117.919671, 25.626531],\n            [-125.15625, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 27.073847],\n            [-125.15625, 28.521163],\n            [-117.919671, 28.521163],\n            [-117.919671, 27.073847],\n            [-125.15625, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 28.521163],\n            [-125.15625, 29.968478],\n            [-117.919671, 29.968478],\n            [-117.919671, 28.521163],\n            [-125.15625, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 29.968478],\n            [-125.15625, 31.415794],\n            [-117.919671, 31.415794],\n            [-117.919671, 29.968478],\n            [-125.15625, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 31.415794],\n            [-125.15625, 32.86311],\n            [-117.919671, 32.86311],\n            [-117.919671, 31.415794],\n            [-125.15625, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 32.86311],\n            [-125.15625, 34.310426],\n            [-117.919671, 34.310426],\n            [-117.919671, 32.86311],\n            [-125.15625, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 34.310426],\n            [-125.15625, 35.757742],\n            [-117.919671, 35.757742],\n            [-117.919671, 34.310426],\n            [-125.15625, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 35.757742],\n            [-125.15625, 37.205058],\n            [-117.919671, 37.205058],\n            [-117.919671, 35.757742],\n            [-125.15625, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 37.205058],\n            [-125.15625, 38.652373],\n            [-117.919671, 38.652373],\n            [-117.919671, 37.205058],\n            [-125.15625, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 38.652373],\n            [-125.15625, 40.099689],\n            [-117.919671, 40.099689],\n            [-117.919671, 38.652373],\n            [-125.15625, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 40.099689],\n            [-125.15625, 41.547005],\n            [-117.919671, 41.547005],\n            [-117.919671, 40.099689],\n            [-125.15625, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 41.547005],\n            [-125.15625, 42.994321],\n            [-117.919671, 42.994321],\n            [-117.919671, 41.547005],\n            [-125.15625, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 42.994321],\n            [-125.15625, 44.441637],\n            [-117.919671, 44.441637],\n            [-117.919671, 42.994321],\n            [-125.15625, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 44.441637],\n            [-125.15625, 45.888952],\n            [-117.919671, 45.888952],\n            [-117.919671, 44.441637],\n            [-125.15625, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 45.888952],\n            [-125.15625, 47.336268],\n            [-117.919671, 47.336268],\n            [-117.919671, 45.888952],\n            [-125.15625, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 47.336268],\n            [-125.15625, 48.783584],\n            [-117.919671, 48.783584],\n            [-117.919671, 47.336268],\n            [-125.15625, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 48.783584],\n            [-125.15625, 50.2309],\n            [-117.919671, 50.2309],\n            [-117.919671, 48.783584],\n            [-125.15625, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 50.2309],\n            [-125.15625, 51.678216],\n            [-117.919671, 51.678216],\n            [-117.919671, 50.2309],\n            [-125.15625, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 51.678216],\n            [-125.15625, 53.125532],\n            [-117.919671, 53.125532],\n            [-117.919671, 51.678216],\n            [-125.15625, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 53.125532],\n            [-125.15625, 54.572847],\n            [-117.919671, 54.572847],\n            [-117.919671, 53.125532],\n            [-125.15625, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 54.572847],\n            [-125.15625, 56.020163],\n            [-117.919671, 56.020163],\n            [-117.919671, 54.572847],\n            [-125.15625, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 56.020163],\n            [-125.15625, 57.467479],\n            [-117.919671, 57.467479],\n            [-117.919671, 56.020163],\n            [-125.15625, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 57.467479],\n            [-125.15625, 58.914795],\n            [-117.919671, 58.914795],\n            [-117.919671, 57.467479],\n            [-125.15625, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 58.914795],\n            [-125.15625, 60.362111],\n            [-117.919671, 60.362111],\n            [-117.919671, 58.914795],\n            [-125.15625, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 60.362111],\n            [-125.15625, 61.809427],\n            [-117.919671, 61.809427],\n            [-117.919671, 60.362111],\n            [-125.15625, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 61.809427],\n            [-125.15625, 63.256742],\n            [-117.919671, 63.256742],\n            [-117.919671, 61.809427],\n            [-125.15625, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 63.256742],\n            [-125.15625, 64.704058],\n            [-117.919671, 64.704058],\n            [-117.919671, 63.256742],\n            [-125.15625, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 64.704058],\n            [-125.15625, 66.151374],\n            [-117.919671, 66.151374],\n            [-117.919671, 64.704058],\n            [-125.15625, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 66.151374],\n            [-125.15625, 67.59869],\n            [-117.919671, 67.59869],\n            [-117.919671, 66.151374],\n            [-125.15625, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 67.59869],\n            [-125.15625, 69.046006],\n            [-117.919671, 69.046006],\n            [-117.919671, 67.59869],\n            [-125.15625, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 69.046006],\n            [-125.15625, 70.493322],\n            [-117.919671, 70.493322],\n            [-117.919671, 69.046006],\n            [-125.15625, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 70.493322],\n            [-125.15625, 71.940637],\n            [-117.919671, 71.940637],\n            [-117.919671, 70.493322],\n            [-125.15625, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 71.940637],\n            [-125.15625, 73.387953],\n            [-117.919671, 73.387953],\n            [-117.919671, 71.940637],\n            [-125.15625, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 73.387953],\n            [-125.15625, 74.835269],\n            [-117.919671, 74.835269],\n            [-117.919671, 73.387953],\n            [-125.15625, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 74.835269],\n            [-125.15625, 76.282585],\n            [-117.919671, 76.282585],\n            [-117.919671, 74.835269],\n            [-125.15625, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 76.282585],\n            [-125.15625, 77.729901],\n            [-117.919671, 77.729901],\n            [-117.919671, 76.282585],\n            [-125.15625, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -80.027525],\n            [-117.919671, -78.580209],\n            [-110.683092, -78.580209],\n            [-110.683092, -80.027525],\n            [-117.919671, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -78.580209],\n            [-117.919671, -77.132893],\n            [-110.683092, -77.132893],\n            [-110.683092, -78.580209],\n            [-117.919671, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -77.132893],\n            [-117.919671, -75.685577],\n            [-110.683092, -75.685577],\n            [-110.683092, -77.132893],\n            [-117.919671, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -75.685577],\n            [-117.919671, -74.238262],\n            [-110.683092, -74.238262],\n            [-110.683092, -75.685577],\n            [-117.919671, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -74.238262],\n            [-117.919671, -72.790946],\n            [-110.683092, -72.790946],\n            [-110.683092, -74.238262],\n            [-117.919671, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -72.790946],\n            [-117.919671, -71.34363],\n            [-110.683092, -71.34363],\n            [-110.683092, -72.790946],\n            [-117.919671, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -71.34363],\n            [-117.919671, -69.896314],\n            [-110.683092, -69.896314],\n            [-110.683092, -71.34363],\n            [-117.919671, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -69.896314],\n            [-117.919671, -68.448998],\n            [-110.683092, -68.448998],\n            [-110.683092, -69.896314],\n            [-117.919671, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -68.448998],\n            [-117.919671, -67.001682],\n            [-110.683092, -67.001682],\n            [-110.683092, -68.448998],\n            [-117.919671, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -67.001682],\n            [-117.919671, -65.554367],\n            [-110.683092, -65.554367],\n            [-110.683092, -67.001682],\n            [-117.919671, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -65.554367],\n            [-117.919671, -64.107051],\n            [-110.683092, -64.107051],\n            [-110.683092, -65.554367],\n            [-117.919671, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -64.107051],\n            [-117.919671, -62.659735],\n            [-110.683092, -62.659735],\n            [-110.683092, -64.107051],\n            [-117.919671, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -62.659735],\n            [-117.919671, -61.212419],\n            [-110.683092, -61.212419],\n            [-110.683092, -62.659735],\n            [-117.919671, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -61.212419],\n            [-117.919671, -59.765103],\n            [-110.683092, -59.765103],\n            [-110.683092, -61.212419],\n            [-117.919671, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -59.765103],\n            [-117.919671, -58.317787],\n            [-110.683092, -58.317787],\n            [-110.683092, -59.765103],\n            [-117.919671, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -58.317787],\n            [-117.919671, -56.870472],\n            [-110.683092, -56.870472],\n            [-110.683092, -58.317787],\n            [-117.919671, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -56.870472],\n            [-117.919671, -55.423156],\n            [-110.683092, -55.423156],\n            [-110.683092, -56.870472],\n            [-117.919671, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -55.423156],\n            [-117.919671, -53.97584],\n            [-110.683092, -53.97584],\n            [-110.683092, -55.423156],\n            [-117.919671, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -53.97584],\n            [-117.919671, -52.528524],\n            [-110.683092, -52.528524],\n            [-110.683092, -53.97584],\n            [-117.919671, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -52.528524],\n            [-117.919671, -51.081208],\n            [-110.683092, -51.081208],\n            [-110.683092, -52.528524],\n            [-117.919671, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -51.081208],\n            [-117.919671, -49.633892],\n            [-110.683092, -49.633892],\n            [-110.683092, -51.081208],\n            [-117.919671, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -49.633892],\n            [-117.919671, -48.186577],\n            [-110.683092, -48.186577],\n            [-110.683092, -49.633892],\n            [-117.919671, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -48.186577],\n            [-117.919671, -46.739261],\n            [-110.683092, -46.739261],\n            [-110.683092, -48.186577],\n            [-117.919671, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -46.739261],\n            [-117.919671, -45.291945],\n            [-110.683092, -45.291945],\n            [-110.683092, -46.739261],\n            [-117.919671, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -45.291945],\n            [-117.919671, -43.844629],\n            [-110.683092, -43.844629],\n            [-110.683092, -45.291945],\n            [-117.919671, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -43.844629],\n            [-117.919671, -42.397313],\n            [-110.683092, -42.397313],\n            [-110.683092, -43.844629],\n            [-117.919671, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -42.397313],\n            [-117.919671, -40.949997],\n            [-110.683092, -40.949997],\n            [-110.683092, -42.397313],\n            [-117.919671, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -40.949997],\n            [-117.919671, -39.502682],\n            [-110.683092, -39.502682],\n            [-110.683092, -40.949997],\n            [-117.919671, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -39.502682],\n            [-117.919671, -38.055366],\n            [-110.683092, -38.055366],\n            [-110.683092, -39.502682],\n            [-117.919671, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -38.055366],\n            [-117.919671, -36.60805],\n            [-110.683092, -36.60805],\n            [-110.683092, -38.055366],\n            [-117.919671, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -36.60805],\n            [-117.919671, -35.160734],\n            [-110.683092, -35.160734],\n            [-110.683092, -36.60805],\n            [-117.919671, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -35.160734],\n            [-117.919671, -33.713418],\n            [-110.683092, -33.713418],\n            [-110.683092, -35.160734],\n            [-117.919671, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -33.713418],\n            [-117.919671, -32.266102],\n            [-110.683092, -32.266102],\n            [-110.683092, -33.713418],\n            [-117.919671, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -32.266102],\n            [-117.919671, -30.818787],\n            [-110.683092, -30.818787],\n            [-110.683092, -32.266102],\n            [-117.919671, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -30.818787],\n            [-117.919671, -29.371471],\n            [-110.683092, -29.371471],\n            [-110.683092, -30.818787],\n            [-117.919671, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -29.371471],\n            [-117.919671, -27.924155],\n            [-110.683092, -27.924155],\n            [-110.683092, -29.371471],\n            [-117.919671, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -27.924155],\n            [-117.919671, -26.476839],\n            [-110.683092, -26.476839],\n            [-110.683092, -27.924155],\n            [-117.919671, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -26.476839],\n            [-117.919671, -25.029523],\n            [-110.683092, -25.029523],\n            [-110.683092, -26.476839],\n            [-117.919671, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -25.029523],\n            [-117.919671, -23.582207],\n            [-110.683092, -23.582207],\n            [-110.683092, -25.029523],\n            [-117.919671, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -23.582207],\n            [-117.919671, -22.134892],\n            [-110.683092, -22.134892],\n            [-110.683092, -23.582207],\n            [-117.919671, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -22.134892],\n            [-117.919671, -20.687576],\n            [-110.683092, -20.687576],\n            [-110.683092, -22.134892],\n            [-117.919671, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -20.687576],\n            [-117.919671, -19.24026],\n            [-110.683092, -19.24026],\n            [-110.683092, -20.687576],\n            [-117.919671, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -19.24026],\n            [-117.919671, -17.792944],\n            [-110.683092, -17.792944],\n            [-110.683092, -19.24026],\n            [-117.919671, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -17.792944],\n            [-117.919671, -16.345628],\n            [-110.683092, -16.345628],\n            [-110.683092, -17.792944],\n            [-117.919671, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -16.345628],\n            [-117.919671, -14.898312],\n            [-110.683092, -14.898312],\n            [-110.683092, -16.345628],\n            [-117.919671, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -14.898312],\n            [-117.919671, -13.450997],\n            [-110.683092, -13.450997],\n            [-110.683092, -14.898312],\n            [-117.919671, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -13.450997],\n            [-117.919671, -12.003681],\n            [-110.683092, -12.003681],\n            [-110.683092, -13.450997],\n            [-117.919671, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -12.003681],\n            [-117.919671, -10.556365],\n            [-110.683092, -10.556365],\n            [-110.683092, -12.003681],\n            [-117.919671, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -10.556365],\n            [-117.919671, -9.109049],\n            [-110.683092, -9.109049],\n            [-110.683092, -10.556365],\n            [-117.919671, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -9.109049],\n            [-117.919671, -7.661733],\n            [-110.683092, -7.661733],\n            [-110.683092, -9.109049],\n            [-117.919671, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -7.661733],\n            [-117.919671, -6.214417],\n            [-110.683092, -6.214417],\n            [-110.683092, -7.661733],\n            [-117.919671, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -6.214417],\n            [-117.919671, -4.767102],\n            [-110.683092, -4.767102],\n            [-110.683092, -6.214417],\n            [-117.919671, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -4.767102],\n            [-117.919671, -3.319786],\n            [-110.683092, -3.319786],\n            [-110.683092, -4.767102],\n            [-117.919671, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -3.319786],\n            [-117.919671, -1.87247],\n            [-110.683092, -1.87247],\n            [-110.683092, -3.319786],\n            [-117.919671, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -1.87247],\n            [-117.919671, -0.425154],\n            [-110.683092, -0.425154],\n            [-110.683092, -1.87247],\n            [-117.919671, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -0.425154],\n            [-117.919671, 1.022162],\n            [-110.683092, 1.022162],\n            [-110.683092, -0.425154],\n            [-117.919671, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 1.022162],\n            [-117.919671, 2.469478],\n            [-110.683092, 2.469478],\n            [-110.683092, 1.022162],\n            [-117.919671, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 2.469478],\n            [-117.919671, 3.916793],\n            [-110.683092, 3.916793],\n            [-110.683092, 2.469478],\n            [-117.919671, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 3.916793],\n            [-117.919671, 5.364109],\n            [-110.683092, 5.364109],\n            [-110.683092, 3.916793],\n            [-117.919671, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 5.364109],\n            [-117.919671, 6.811425],\n            [-110.683092, 6.811425],\n            [-110.683092, 5.364109],\n            [-117.919671, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 6.811425],\n            [-117.919671, 8.258741],\n            [-110.683092, 8.258741],\n            [-110.683092, 6.811425],\n            [-117.919671, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 8.258741],\n            [-117.919671, 9.706057],\n            [-110.683092, 9.706057],\n            [-110.683092, 8.258741],\n            [-117.919671, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 9.706057],\n            [-117.919671, 11.153373],\n            [-110.683092, 11.153373],\n            [-110.683092, 9.706057],\n            [-117.919671, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 11.153373],\n            [-117.919671, 12.600688],\n            [-110.683092, 12.600688],\n            [-110.683092, 11.153373],\n            [-117.919671, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 12.600688],\n            [-117.919671, 14.048004],\n            [-110.683092, 14.048004],\n            [-110.683092, 12.600688],\n            [-117.919671, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 14.048004],\n            [-117.919671, 15.49532],\n            [-110.683092, 15.49532],\n            [-110.683092, 14.048004],\n            [-117.919671, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 15.49532],\n            [-117.919671, 16.942636],\n            [-110.683092, 16.942636],\n            [-110.683092, 15.49532],\n            [-117.919671, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 16.942636],\n            [-117.919671, 18.389952],\n            [-110.683092, 18.389952],\n            [-110.683092, 16.942636],\n            [-117.919671, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 18.389952],\n            [-117.919671, 19.837268],\n            [-110.683092, 19.837268],\n            [-110.683092, 18.389952],\n            [-117.919671, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 19.837268],\n            [-117.919671, 21.284583],\n            [-110.683092, 21.284583],\n            [-110.683092, 19.837268],\n            [-117.919671, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 21.284583],\n            [-117.919671, 22.731899],\n            [-110.683092, 22.731899],\n            [-110.683092, 21.284583],\n            [-117.919671, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 22.731899],\n            [-117.919671, 24.179215],\n            [-110.683092, 24.179215],\n            [-110.683092, 22.731899],\n            [-117.919671, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 24.179215],\n            [-117.919671, 25.626531],\n            [-110.683092, 25.626531],\n            [-110.683092, 24.179215],\n            [-117.919671, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 25.626531],\n            [-117.919671, 27.073847],\n            [-110.683092, 27.073847],\n            [-110.683092, 25.626531],\n            [-117.919671, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 27.073847],\n            [-117.919671, 28.521163],\n            [-110.683092, 28.521163],\n            [-110.683092, 27.073847],\n            [-117.919671, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 28.521163],\n            [-117.919671, 29.968478],\n            [-110.683092, 29.968478],\n            [-110.683092, 28.521163],\n            [-117.919671, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 29.968478],\n            [-117.919671, 31.415794],\n            [-110.683092, 31.415794],\n            [-110.683092, 29.968478],\n            [-117.919671, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 31.415794],\n            [-117.919671, 32.86311],\n            [-110.683092, 32.86311],\n            [-110.683092, 31.415794],\n            [-117.919671, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 32.86311],\n            [-117.919671, 34.310426],\n            [-110.683092, 34.310426],\n            [-110.683092, 32.86311],\n            [-117.919671, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 34.310426],\n            [-117.919671, 35.757742],\n            [-110.683092, 35.757742],\n            [-110.683092, 34.310426],\n            [-117.919671, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 35.757742],\n            [-117.919671, 37.205058],\n            [-110.683092, 37.205058],\n            [-110.683092, 35.757742],\n            [-117.919671, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 37.205058],\n            [-117.919671, 38.652373],\n            [-110.683092, 38.652373],\n            [-110.683092, 37.205058],\n            [-117.919671, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 38.652373],\n            [-117.919671, 40.099689],\n            [-110.683092, 40.099689],\n            [-110.683092, 38.652373],\n            [-117.919671, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 40.099689],\n            [-117.919671, 41.547005],\n            [-110.683092, 41.547005],\n            [-110.683092, 40.099689],\n            [-117.919671, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 41.547005],\n            [-117.919671, 42.994321],\n            [-110.683092, 42.994321],\n            [-110.683092, 41.547005],\n            [-117.919671, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 42.994321],\n            [-117.919671, 44.441637],\n            [-110.683092, 44.441637],\n            [-110.683092, 42.994321],\n            [-117.919671, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 44.441637],\n            [-117.919671, 45.888952],\n            [-110.683092, 45.888952],\n            [-110.683092, 44.441637],\n            [-117.919671, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 45.888952],\n            [-117.919671, 47.336268],\n            [-110.683092, 47.336268],\n            [-110.683092, 45.888952],\n            [-117.919671, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 47.336268],\n            [-117.919671, 48.783584],\n            [-110.683092, 48.783584],\n            [-110.683092, 47.336268],\n            [-117.919671, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 48.783584],\n            [-117.919671, 50.2309],\n            [-110.683092, 50.2309],\n            [-110.683092, 48.783584],\n            [-117.919671, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 50.2309],\n            [-117.919671, 51.678216],\n            [-110.683092, 51.678216],\n            [-110.683092, 50.2309],\n            [-117.919671, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 51.678216],\n            [-117.919671, 53.125532],\n            [-110.683092, 53.125532],\n            [-110.683092, 51.678216],\n            [-117.919671, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 53.125532],\n            [-117.919671, 54.572847],\n            [-110.683092, 54.572847],\n            [-110.683092, 53.125532],\n            [-117.919671, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 54.572847],\n            [-117.919671, 56.020163],\n            [-110.683092, 56.020163],\n            [-110.683092, 54.572847],\n            [-117.919671, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 56.020163],\n            [-117.919671, 57.467479],\n            [-110.683092, 57.467479],\n            [-110.683092, 56.020163],\n            [-117.919671, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 57.467479],\n            [-117.919671, 58.914795],\n            [-110.683092, 58.914795],\n            [-110.683092, 57.467479],\n            [-117.919671, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 58.914795],\n            [-117.919671, 60.362111],\n            [-110.683092, 60.362111],\n            [-110.683092, 58.914795],\n            [-117.919671, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 60.362111],\n            [-117.919671, 61.809427],\n            [-110.683092, 61.809427],\n            [-110.683092, 60.362111],\n            [-117.919671, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 61.809427],\n            [-117.919671, 63.256742],\n            [-110.683092, 63.256742],\n            [-110.683092, 61.809427],\n            [-117.919671, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 63.256742],\n            [-117.919671, 64.704058],\n            [-110.683092, 64.704058],\n            [-110.683092, 63.256742],\n            [-117.919671, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 64.704058],\n            [-117.919671, 66.151374],\n            [-110.683092, 66.151374],\n            [-110.683092, 64.704058],\n            [-117.919671, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 66.151374],\n            [-117.919671, 67.59869],\n            [-110.683092, 67.59869],\n            [-110.683092, 66.151374],\n            [-117.919671, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 67.59869],\n            [-117.919671, 69.046006],\n            [-110.683092, 69.046006],\n            [-110.683092, 67.59869],\n            [-117.919671, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 69.046006],\n            [-117.919671, 70.493322],\n            [-110.683092, 70.493322],\n            [-110.683092, 69.046006],\n            [-117.919671, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 70.493322],\n            [-117.919671, 71.940637],\n            [-110.683092, 71.940637],\n            [-110.683092, 70.493322],\n            [-117.919671, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 71.940637],\n            [-117.919671, 73.387953],\n            [-110.683092, 73.387953],\n            [-110.683092, 71.940637],\n            [-117.919671, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 73.387953],\n            [-117.919671, 74.835269],\n            [-110.683092, 74.835269],\n            [-110.683092, 73.387953],\n            [-117.919671, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 74.835269],\n            [-117.919671, 76.282585],\n            [-110.683092, 76.282585],\n            [-110.683092, 74.835269],\n            [-117.919671, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 76.282585],\n            [-117.919671, 77.729901],\n            [-110.683092, 77.729901],\n            [-110.683092, 76.282585],\n            [-117.919671, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -80.027525],\n            [-110.683092, -78.580209],\n            [-103.446513, -78.580209],\n            [-103.446513, -80.027525],\n            [-110.683092, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -78.580209],\n            [-110.683092, -77.132893],\n            [-103.446513, -77.132893],\n            [-103.446513, -78.580209],\n            [-110.683092, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -77.132893],\n            [-110.683092, -75.685577],\n            [-103.446513, -75.685577],\n            [-103.446513, -77.132893],\n            [-110.683092, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -75.685577],\n            [-110.683092, -74.238262],\n            [-103.446513, -74.238262],\n            [-103.446513, -75.685577],\n            [-110.683092, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -74.238262],\n            [-110.683092, -72.790946],\n            [-103.446513, -72.790946],\n            [-103.446513, -74.238262],\n            [-110.683092, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -72.790946],\n            [-110.683092, -71.34363],\n            [-103.446513, -71.34363],\n            [-103.446513, -72.790946],\n            [-110.683092, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -71.34363],\n            [-110.683092, -69.896314],\n            [-103.446513, -69.896314],\n            [-103.446513, -71.34363],\n            [-110.683092, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -69.896314],\n            [-110.683092, -68.448998],\n            [-103.446513, -68.448998],\n            [-103.446513, -69.896314],\n            [-110.683092, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -68.448998],\n            [-110.683092, -67.001682],\n            [-103.446513, -67.001682],\n            [-103.446513, -68.448998],\n            [-110.683092, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -67.001682],\n            [-110.683092, -65.554367],\n            [-103.446513, -65.554367],\n            [-103.446513, -67.001682],\n            [-110.683092, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -65.554367],\n            [-110.683092, -64.107051],\n            [-103.446513, -64.107051],\n            [-103.446513, -65.554367],\n            [-110.683092, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -64.107051],\n            [-110.683092, -62.659735],\n            [-103.446513, -62.659735],\n            [-103.446513, -64.107051],\n            [-110.683092, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -62.659735],\n            [-110.683092, -61.212419],\n            [-103.446513, -61.212419],\n            [-103.446513, -62.659735],\n            [-110.683092, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -61.212419],\n            [-110.683092, -59.765103],\n            [-103.446513, -59.765103],\n            [-103.446513, -61.212419],\n            [-110.683092, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -59.765103],\n            [-110.683092, -58.317787],\n            [-103.446513, -58.317787],\n            [-103.446513, -59.765103],\n            [-110.683092, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -58.317787],\n            [-110.683092, -56.870472],\n            [-103.446513, -56.870472],\n            [-103.446513, -58.317787],\n            [-110.683092, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -56.870472],\n            [-110.683092, -55.423156],\n            [-103.446513, -55.423156],\n            [-103.446513, -56.870472],\n            [-110.683092, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -55.423156],\n            [-110.683092, -53.97584],\n            [-103.446513, -53.97584],\n            [-103.446513, -55.423156],\n            [-110.683092, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -53.97584],\n            [-110.683092, -52.528524],\n            [-103.446513, -52.528524],\n            [-103.446513, -53.97584],\n            [-110.683092, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -52.528524],\n            [-110.683092, -51.081208],\n            [-103.446513, -51.081208],\n            [-103.446513, -52.528524],\n            [-110.683092, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -51.081208],\n            [-110.683092, -49.633892],\n            [-103.446513, -49.633892],\n            [-103.446513, -51.081208],\n            [-110.683092, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -49.633892],\n            [-110.683092, -48.186577],\n            [-103.446513, -48.186577],\n            [-103.446513, -49.633892],\n            [-110.683092, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -48.186577],\n            [-110.683092, -46.739261],\n            [-103.446513, -46.739261],\n            [-103.446513, -48.186577],\n            [-110.683092, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -46.739261],\n            [-110.683092, -45.291945],\n            [-103.446513, -45.291945],\n            [-103.446513, -46.739261],\n            [-110.683092, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -45.291945],\n            [-110.683092, -43.844629],\n            [-103.446513, -43.844629],\n            [-103.446513, -45.291945],\n            [-110.683092, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -43.844629],\n            [-110.683092, -42.397313],\n            [-103.446513, -42.397313],\n            [-103.446513, -43.844629],\n            [-110.683092, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -42.397313],\n            [-110.683092, -40.949997],\n            [-103.446513, -40.949997],\n            [-103.446513, -42.397313],\n            [-110.683092, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -40.949997],\n            [-110.683092, -39.502682],\n            [-103.446513, -39.502682],\n            [-103.446513, -40.949997],\n            [-110.683092, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -39.502682],\n            [-110.683092, -38.055366],\n            [-103.446513, -38.055366],\n            [-103.446513, -39.502682],\n            [-110.683092, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -38.055366],\n            [-110.683092, -36.60805],\n            [-103.446513, -36.60805],\n            [-103.446513, -38.055366],\n            [-110.683092, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -36.60805],\n            [-110.683092, -35.160734],\n            [-103.446513, -35.160734],\n            [-103.446513, -36.60805],\n            [-110.683092, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -35.160734],\n            [-110.683092, -33.713418],\n            [-103.446513, -33.713418],\n            [-103.446513, -35.160734],\n            [-110.683092, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -33.713418],\n            [-110.683092, -32.266102],\n            [-103.446513, -32.266102],\n            [-103.446513, -33.713418],\n            [-110.683092, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -32.266102],\n            [-110.683092, -30.818787],\n            [-103.446513, -30.818787],\n            [-103.446513, -32.266102],\n            [-110.683092, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -30.818787],\n            [-110.683092, -29.371471],\n            [-103.446513, -29.371471],\n            [-103.446513, -30.818787],\n            [-110.683092, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -29.371471],\n            [-110.683092, -27.924155],\n            [-103.446513, -27.924155],\n            [-103.446513, -29.371471],\n            [-110.683092, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -27.924155],\n            [-110.683092, -26.476839],\n            [-103.446513, -26.476839],\n            [-103.446513, -27.924155],\n            [-110.683092, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -26.476839],\n            [-110.683092, -25.029523],\n            [-103.446513, -25.029523],\n            [-103.446513, -26.476839],\n            [-110.683092, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -25.029523],\n            [-110.683092, -23.582207],\n            [-103.446513, -23.582207],\n            [-103.446513, -25.029523],\n            [-110.683092, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -23.582207],\n            [-110.683092, -22.134892],\n            [-103.446513, -22.134892],\n            [-103.446513, -23.582207],\n            [-110.683092, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -22.134892],\n            [-110.683092, -20.687576],\n            [-103.446513, -20.687576],\n            [-103.446513, -22.134892],\n            [-110.683092, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -20.687576],\n            [-110.683092, -19.24026],\n            [-103.446513, -19.24026],\n            [-103.446513, -20.687576],\n            [-110.683092, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -19.24026],\n            [-110.683092, -17.792944],\n            [-103.446513, -17.792944],\n            [-103.446513, -19.24026],\n            [-110.683092, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -17.792944],\n            [-110.683092, -16.345628],\n            [-103.446513, -16.345628],\n            [-103.446513, -17.792944],\n            [-110.683092, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -16.345628],\n            [-110.683092, -14.898312],\n            [-103.446513, -14.898312],\n            [-103.446513, -16.345628],\n            [-110.683092, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -14.898312],\n            [-110.683092, -13.450997],\n            [-103.446513, -13.450997],\n            [-103.446513, -14.898312],\n            [-110.683092, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -13.450997],\n            [-110.683092, -12.003681],\n            [-103.446513, -12.003681],\n            [-103.446513, -13.450997],\n            [-110.683092, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -12.003681],\n            [-110.683092, -10.556365],\n            [-103.446513, -10.556365],\n            [-103.446513, -12.003681],\n            [-110.683092, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -10.556365],\n            [-110.683092, -9.109049],\n            [-103.446513, -9.109049],\n            [-103.446513, -10.556365],\n            [-110.683092, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -9.109049],\n            [-110.683092, -7.661733],\n            [-103.446513, -7.661733],\n            [-103.446513, -9.109049],\n            [-110.683092, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -7.661733],\n            [-110.683092, -6.214417],\n            [-103.446513, -6.214417],\n            [-103.446513, -7.661733],\n            [-110.683092, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -6.214417],\n            [-110.683092, -4.767102],\n            [-103.446513, -4.767102],\n            [-103.446513, -6.214417],\n            [-110.683092, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -4.767102],\n            [-110.683092, -3.319786],\n            [-103.446513, -3.319786],\n            [-103.446513, -4.767102],\n            [-110.683092, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -3.319786],\n            [-110.683092, -1.87247],\n            [-103.446513, -1.87247],\n            [-103.446513, -3.319786],\n            [-110.683092, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -1.87247],\n            [-110.683092, -0.425154],\n            [-103.446513, -0.425154],\n            [-103.446513, -1.87247],\n            [-110.683092, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -0.425154],\n            [-110.683092, 1.022162],\n            [-103.446513, 1.022162],\n            [-103.446513, -0.425154],\n            [-110.683092, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 1.022162],\n            [-110.683092, 2.469478],\n            [-103.446513, 2.469478],\n            [-103.446513, 1.022162],\n            [-110.683092, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 2.469478],\n            [-110.683092, 3.916793],\n            [-103.446513, 3.916793],\n            [-103.446513, 2.469478],\n            [-110.683092, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 3.916793],\n            [-110.683092, 5.364109],\n            [-103.446513, 5.364109],\n            [-103.446513, 3.916793],\n            [-110.683092, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 5.364109],\n            [-110.683092, 6.811425],\n            [-103.446513, 6.811425],\n            [-103.446513, 5.364109],\n            [-110.683092, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 6.811425],\n            [-110.683092, 8.258741],\n            [-103.446513, 8.258741],\n            [-103.446513, 6.811425],\n            [-110.683092, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 8.258741],\n            [-110.683092, 9.706057],\n            [-103.446513, 9.706057],\n            [-103.446513, 8.258741],\n            [-110.683092, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 9.706057],\n            [-110.683092, 11.153373],\n            [-103.446513, 11.153373],\n            [-103.446513, 9.706057],\n            [-110.683092, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 11.153373],\n            [-110.683092, 12.600688],\n            [-103.446513, 12.600688],\n            [-103.446513, 11.153373],\n            [-110.683092, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 12.600688],\n            [-110.683092, 14.048004],\n            [-103.446513, 14.048004],\n            [-103.446513, 12.600688],\n            [-110.683092, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 14.048004],\n            [-110.683092, 15.49532],\n            [-103.446513, 15.49532],\n            [-103.446513, 14.048004],\n            [-110.683092, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 15.49532],\n            [-110.683092, 16.942636],\n            [-103.446513, 16.942636],\n            [-103.446513, 15.49532],\n            [-110.683092, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 16.942636],\n            [-110.683092, 18.389952],\n            [-103.446513, 18.389952],\n            [-103.446513, 16.942636],\n            [-110.683092, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 18.389952],\n            [-110.683092, 19.837268],\n            [-103.446513, 19.837268],\n            [-103.446513, 18.389952],\n            [-110.683092, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 19.837268],\n            [-110.683092, 21.284583],\n            [-103.446513, 21.284583],\n            [-103.446513, 19.837268],\n            [-110.683092, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 21.284583],\n            [-110.683092, 22.731899],\n            [-103.446513, 22.731899],\n            [-103.446513, 21.284583],\n            [-110.683092, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 22.731899],\n            [-110.683092, 24.179215],\n            [-103.446513, 24.179215],\n            [-103.446513, 22.731899],\n            [-110.683092, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 24.179215],\n            [-110.683092, 25.626531],\n            [-103.446513, 25.626531],\n            [-103.446513, 24.179215],\n            [-110.683092, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 25.626531],\n            [-110.683092, 27.073847],\n            [-103.446513, 27.073847],\n            [-103.446513, 25.626531],\n            [-110.683092, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 27.073847],\n            [-110.683092, 28.521163],\n            [-103.446513, 28.521163],\n            [-103.446513, 27.073847],\n            [-110.683092, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 28.521163],\n            [-110.683092, 29.968478],\n            [-103.446513, 29.968478],\n            [-103.446513, 28.521163],\n            [-110.683092, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 29.968478],\n            [-110.683092, 31.415794],\n            [-103.446513, 31.415794],\n            [-103.446513, 29.968478],\n            [-110.683092, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 31.415794],\n            [-110.683092, 32.86311],\n            [-103.446513, 32.86311],\n            [-103.446513, 31.415794],\n            [-110.683092, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 32.86311],\n            [-110.683092, 34.310426],\n            [-103.446513, 34.310426],\n            [-103.446513, 32.86311],\n            [-110.683092, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 34.310426],\n            [-110.683092, 35.757742],\n            [-103.446513, 35.757742],\n            [-103.446513, 34.310426],\n            [-110.683092, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 35.757742],\n            [-110.683092, 37.205058],\n            [-103.446513, 37.205058],\n            [-103.446513, 35.757742],\n            [-110.683092, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 37.205058],\n            [-110.683092, 38.652373],\n            [-103.446513, 38.652373],\n            [-103.446513, 37.205058],\n            [-110.683092, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 38.652373],\n            [-110.683092, 40.099689],\n            [-103.446513, 40.099689],\n            [-103.446513, 38.652373],\n            [-110.683092, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 40.099689],\n            [-110.683092, 41.547005],\n            [-103.446513, 41.547005],\n            [-103.446513, 40.099689],\n            [-110.683092, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 41.547005],\n            [-110.683092, 42.994321],\n            [-103.446513, 42.994321],\n            [-103.446513, 41.547005],\n            [-110.683092, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 42.994321],\n            [-110.683092, 44.441637],\n            [-103.446513, 44.441637],\n            [-103.446513, 42.994321],\n            [-110.683092, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 44.441637],\n            [-110.683092, 45.888952],\n            [-103.446513, 45.888952],\n            [-103.446513, 44.441637],\n            [-110.683092, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 45.888952],\n            [-110.683092, 47.336268],\n            [-103.446513, 47.336268],\n            [-103.446513, 45.888952],\n            [-110.683092, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 47.336268],\n            [-110.683092, 48.783584],\n            [-103.446513, 48.783584],\n            [-103.446513, 47.336268],\n            [-110.683092, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 48.783584],\n            [-110.683092, 50.2309],\n            [-103.446513, 50.2309],\n            [-103.446513, 48.783584],\n            [-110.683092, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 50.2309],\n            [-110.683092, 51.678216],\n            [-103.446513, 51.678216],\n            [-103.446513, 50.2309],\n            [-110.683092, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 51.678216],\n            [-110.683092, 53.125532],\n            [-103.446513, 53.125532],\n            [-103.446513, 51.678216],\n            [-110.683092, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 53.125532],\n            [-110.683092, 54.572847],\n            [-103.446513, 54.572847],\n            [-103.446513, 53.125532],\n            [-110.683092, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 54.572847],\n            [-110.683092, 56.020163],\n            [-103.446513, 56.020163],\n            [-103.446513, 54.572847],\n            [-110.683092, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 56.020163],\n            [-110.683092, 57.467479],\n            [-103.446513, 57.467479],\n            [-103.446513, 56.020163],\n            [-110.683092, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 57.467479],\n            [-110.683092, 58.914795],\n            [-103.446513, 58.914795],\n            [-103.446513, 57.467479],\n            [-110.683092, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 58.914795],\n            [-110.683092, 60.362111],\n            [-103.446513, 60.362111],\n            [-103.446513, 58.914795],\n            [-110.683092, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 60.362111],\n            [-110.683092, 61.809427],\n            [-103.446513, 61.809427],\n            [-103.446513, 60.362111],\n            [-110.683092, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 61.809427],\n            [-110.683092, 63.256742],\n            [-103.446513, 63.256742],\n            [-103.446513, 61.809427],\n            [-110.683092, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 63.256742],\n            [-110.683092, 64.704058],\n            [-103.446513, 64.704058],\n            [-103.446513, 63.256742],\n            [-110.683092, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 64.704058],\n            [-110.683092, 66.151374],\n            [-103.446513, 66.151374],\n            [-103.446513, 64.704058],\n            [-110.683092, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 66.151374],\n            [-110.683092, 67.59869],\n            [-103.446513, 67.59869],\n            [-103.446513, 66.151374],\n            [-110.683092, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 67.59869],\n            [-110.683092, 69.046006],\n            [-103.446513, 69.046006],\n            [-103.446513, 67.59869],\n            [-110.683092, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 69.046006],\n            [-110.683092, 70.493322],\n            [-103.446513, 70.493322],\n            [-103.446513, 69.046006],\n            [-110.683092, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 70.493322],\n            [-110.683092, 71.940637],\n            [-103.446513, 71.940637],\n            [-103.446513, 70.493322],\n            [-110.683092, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 71.940637],\n            [-110.683092, 73.387953],\n            [-103.446513, 73.387953],\n            [-103.446513, 71.940637],\n            [-110.683092, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 73.387953],\n            [-110.683092, 74.835269],\n            [-103.446513, 74.835269],\n            [-103.446513, 73.387953],\n            [-110.683092, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 74.835269],\n            [-110.683092, 76.282585],\n            [-103.446513, 76.282585],\n            [-103.446513, 74.835269],\n            [-110.683092, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 76.282585],\n            [-110.683092, 77.729901],\n            [-103.446513, 77.729901],\n            [-103.446513, 76.282585],\n            [-110.683092, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -80.027525],\n            [-103.446513, -78.580209],\n            [-96.209933, -78.580209],\n            [-96.209933, -80.027525],\n            [-103.446513, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -78.580209],\n            [-103.446513, -77.132893],\n            [-96.209933, -77.132893],\n            [-96.209933, -78.580209],\n            [-103.446513, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -77.132893],\n            [-103.446513, -75.685577],\n            [-96.209933, -75.685577],\n            [-96.209933, -77.132893],\n            [-103.446513, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -75.685577],\n            [-103.446513, -74.238262],\n            [-96.209933, -74.238262],\n            [-96.209933, -75.685577],\n            [-103.446513, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -74.238262],\n            [-103.446513, -72.790946],\n            [-96.209933, -72.790946],\n            [-96.209933, -74.238262],\n            [-103.446513, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -72.790946],\n            [-103.446513, -71.34363],\n            [-96.209933, -71.34363],\n            [-96.209933, -72.790946],\n            [-103.446513, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -71.34363],\n            [-103.446513, -69.896314],\n            [-96.209933, -69.896314],\n            [-96.209933, -71.34363],\n            [-103.446513, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -69.896314],\n            [-103.446513, -68.448998],\n            [-96.209933, -68.448998],\n            [-96.209933, -69.896314],\n            [-103.446513, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -68.448998],\n            [-103.446513, -67.001682],\n            [-96.209933, -67.001682],\n            [-96.209933, -68.448998],\n            [-103.446513, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -67.001682],\n            [-103.446513, -65.554367],\n            [-96.209933, -65.554367],\n            [-96.209933, -67.001682],\n            [-103.446513, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -65.554367],\n            [-103.446513, -64.107051],\n            [-96.209933, -64.107051],\n            [-96.209933, -65.554367],\n            [-103.446513, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -64.107051],\n            [-103.446513, -62.659735],\n            [-96.209933, -62.659735],\n            [-96.209933, -64.107051],\n            [-103.446513, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -62.659735],\n            [-103.446513, -61.212419],\n            [-96.209933, -61.212419],\n            [-96.209933, -62.659735],\n            [-103.446513, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -61.212419],\n            [-103.446513, -59.765103],\n            [-96.209933, -59.765103],\n            [-96.209933, -61.212419],\n            [-103.446513, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -59.765103],\n            [-103.446513, -58.317787],\n            [-96.209933, -58.317787],\n            [-96.209933, -59.765103],\n            [-103.446513, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -58.317787],\n            [-103.446513, -56.870472],\n            [-96.209933, -56.870472],\n            [-96.209933, -58.317787],\n            [-103.446513, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -56.870472],\n            [-103.446513, -55.423156],\n            [-96.209933, -55.423156],\n            [-96.209933, -56.870472],\n            [-103.446513, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -55.423156],\n            [-103.446513, -53.97584],\n            [-96.209933, -53.97584],\n            [-96.209933, -55.423156],\n            [-103.446513, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -53.97584],\n            [-103.446513, -52.528524],\n            [-96.209933, -52.528524],\n            [-96.209933, -53.97584],\n            [-103.446513, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -52.528524],\n            [-103.446513, -51.081208],\n            [-96.209933, -51.081208],\n            [-96.209933, -52.528524],\n            [-103.446513, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -51.081208],\n            [-103.446513, -49.633892],\n            [-96.209933, -49.633892],\n            [-96.209933, -51.081208],\n            [-103.446513, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -49.633892],\n            [-103.446513, -48.186577],\n            [-96.209933, -48.186577],\n            [-96.209933, -49.633892],\n            [-103.446513, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -48.186577],\n            [-103.446513, -46.739261],\n            [-96.209933, -46.739261],\n            [-96.209933, -48.186577],\n            [-103.446513, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -46.739261],\n            [-103.446513, -45.291945],\n            [-96.209933, -45.291945],\n            [-96.209933, -46.739261],\n            [-103.446513, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -45.291945],\n            [-103.446513, -43.844629],\n            [-96.209933, -43.844629],\n            [-96.209933, -45.291945],\n            [-103.446513, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -43.844629],\n            [-103.446513, -42.397313],\n            [-96.209933, -42.397313],\n            [-96.209933, -43.844629],\n            [-103.446513, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -42.397313],\n            [-103.446513, -40.949997],\n            [-96.209933, -40.949997],\n            [-96.209933, -42.397313],\n            [-103.446513, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -40.949997],\n            [-103.446513, -39.502682],\n            [-96.209933, -39.502682],\n            [-96.209933, -40.949997],\n            [-103.446513, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -39.502682],\n            [-103.446513, -38.055366],\n            [-96.209933, -38.055366],\n            [-96.209933, -39.502682],\n            [-103.446513, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -38.055366],\n            [-103.446513, -36.60805],\n            [-96.209933, -36.60805],\n            [-96.209933, -38.055366],\n            [-103.446513, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -36.60805],\n            [-103.446513, -35.160734],\n            [-96.209933, -35.160734],\n            [-96.209933, -36.60805],\n            [-103.446513, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -35.160734],\n            [-103.446513, -33.713418],\n            [-96.209933, -33.713418],\n            [-96.209933, -35.160734],\n            [-103.446513, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -33.713418],\n            [-103.446513, -32.266102],\n            [-96.209933, -32.266102],\n            [-96.209933, -33.713418],\n            [-103.446513, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -32.266102],\n            [-103.446513, -30.818787],\n            [-96.209933, -30.818787],\n            [-96.209933, -32.266102],\n            [-103.446513, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -30.818787],\n            [-103.446513, -29.371471],\n            [-96.209933, -29.371471],\n            [-96.209933, -30.818787],\n            [-103.446513, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -29.371471],\n            [-103.446513, -27.924155],\n            [-96.209933, -27.924155],\n            [-96.209933, -29.371471],\n            [-103.446513, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -27.924155],\n            [-103.446513, -26.476839],\n            [-96.209933, -26.476839],\n            [-96.209933, -27.924155],\n            [-103.446513, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -26.476839],\n            [-103.446513, -25.029523],\n            [-96.209933, -25.029523],\n            [-96.209933, -26.476839],\n            [-103.446513, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -25.029523],\n            [-103.446513, -23.582207],\n            [-96.209933, -23.582207],\n            [-96.209933, -25.029523],\n            [-103.446513, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -23.582207],\n            [-103.446513, -22.134892],\n            [-96.209933, -22.134892],\n            [-96.209933, -23.582207],\n            [-103.446513, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -22.134892],\n            [-103.446513, -20.687576],\n            [-96.209933, -20.687576],\n            [-96.209933, -22.134892],\n            [-103.446513, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -20.687576],\n            [-103.446513, -19.24026],\n            [-96.209933, -19.24026],\n            [-96.209933, -20.687576],\n            [-103.446513, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -19.24026],\n            [-103.446513, -17.792944],\n            [-96.209933, -17.792944],\n            [-96.209933, -19.24026],\n            [-103.446513, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -17.792944],\n            [-103.446513, -16.345628],\n            [-96.209933, -16.345628],\n            [-96.209933, -17.792944],\n            [-103.446513, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -16.345628],\n            [-103.446513, -14.898312],\n            [-96.209933, -14.898312],\n            [-96.209933, -16.345628],\n            [-103.446513, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -14.898312],\n            [-103.446513, -13.450997],\n            [-96.209933, -13.450997],\n            [-96.209933, -14.898312],\n            [-103.446513, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -13.450997],\n            [-103.446513, -12.003681],\n            [-96.209933, -12.003681],\n            [-96.209933, -13.450997],\n            [-103.446513, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -12.003681],\n            [-103.446513, -10.556365],\n            [-96.209933, -10.556365],\n            [-96.209933, -12.003681],\n            [-103.446513, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -10.556365],\n            [-103.446513, -9.109049],\n            [-96.209933, -9.109049],\n            [-96.209933, -10.556365],\n            [-103.446513, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -9.109049],\n            [-103.446513, -7.661733],\n            [-96.209933, -7.661733],\n            [-96.209933, -9.109049],\n            [-103.446513, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -7.661733],\n            [-103.446513, -6.214417],\n            [-96.209933, -6.214417],\n            [-96.209933, -7.661733],\n            [-103.446513, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -6.214417],\n            [-103.446513, -4.767102],\n            [-96.209933, -4.767102],\n            [-96.209933, -6.214417],\n            [-103.446513, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -4.767102],\n            [-103.446513, -3.319786],\n            [-96.209933, -3.319786],\n            [-96.209933, -4.767102],\n            [-103.446513, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -3.319786],\n            [-103.446513, -1.87247],\n            [-96.209933, -1.87247],\n            [-96.209933, -3.319786],\n            [-103.446513, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -1.87247],\n            [-103.446513, -0.425154],\n            [-96.209933, -0.425154],\n            [-96.209933, -1.87247],\n            [-103.446513, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -0.425154],\n            [-103.446513, 1.022162],\n            [-96.209933, 1.022162],\n            [-96.209933, -0.425154],\n            [-103.446513, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 1.022162],\n            [-103.446513, 2.469478],\n            [-96.209933, 2.469478],\n            [-96.209933, 1.022162],\n            [-103.446513, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 2.469478],\n            [-103.446513, 3.916793],\n            [-96.209933, 3.916793],\n            [-96.209933, 2.469478],\n            [-103.446513, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 3.916793],\n            [-103.446513, 5.364109],\n            [-96.209933, 5.364109],\n            [-96.209933, 3.916793],\n            [-103.446513, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 5.364109],\n            [-103.446513, 6.811425],\n            [-96.209933, 6.811425],\n            [-96.209933, 5.364109],\n            [-103.446513, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 6.811425],\n            [-103.446513, 8.258741],\n            [-96.209933, 8.258741],\n            [-96.209933, 6.811425],\n            [-103.446513, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 8.258741],\n            [-103.446513, 9.706057],\n            [-96.209933, 9.706057],\n            [-96.209933, 8.258741],\n            [-103.446513, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 9.706057],\n            [-103.446513, 11.153373],\n            [-96.209933, 11.153373],\n            [-96.209933, 9.706057],\n            [-103.446513, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 11.153373],\n            [-103.446513, 12.600688],\n            [-96.209933, 12.600688],\n            [-96.209933, 11.153373],\n            [-103.446513, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 12.600688],\n            [-103.446513, 14.048004],\n            [-96.209933, 14.048004],\n            [-96.209933, 12.600688],\n            [-103.446513, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 14.048004],\n            [-103.446513, 15.49532],\n            [-96.209933, 15.49532],\n            [-96.209933, 14.048004],\n            [-103.446513, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 15.49532],\n            [-103.446513, 16.942636],\n            [-96.209933, 16.942636],\n            [-96.209933, 15.49532],\n            [-103.446513, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 16.942636],\n            [-103.446513, 18.389952],\n            [-96.209933, 18.389952],\n            [-96.209933, 16.942636],\n            [-103.446513, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 18.389952],\n            [-103.446513, 19.837268],\n            [-96.209933, 19.837268],\n            [-96.209933, 18.389952],\n            [-103.446513, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 19.837268],\n            [-103.446513, 21.284583],\n            [-96.209933, 21.284583],\n            [-96.209933, 19.837268],\n            [-103.446513, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 21.284583],\n            [-103.446513, 22.731899],\n            [-96.209933, 22.731899],\n            [-96.209933, 21.284583],\n            [-103.446513, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 22.731899],\n            [-103.446513, 24.179215],\n            [-96.209933, 24.179215],\n            [-96.209933, 22.731899],\n            [-103.446513, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 24.179215],\n            [-103.446513, 25.626531],\n            [-96.209933, 25.626531],\n            [-96.209933, 24.179215],\n            [-103.446513, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 25.626531],\n            [-103.446513, 27.073847],\n            [-96.209933, 27.073847],\n            [-96.209933, 25.626531],\n            [-103.446513, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 27.073847],\n            [-103.446513, 28.521163],\n            [-96.209933, 28.521163],\n            [-96.209933, 27.073847],\n            [-103.446513, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 28.521163],\n            [-103.446513, 29.968478],\n            [-96.209933, 29.968478],\n            [-96.209933, 28.521163],\n            [-103.446513, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 29.968478],\n            [-103.446513, 31.415794],\n            [-96.209933, 31.415794],\n            [-96.209933, 29.968478],\n            [-103.446513, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 31.415794],\n            [-103.446513, 32.86311],\n            [-96.209933, 32.86311],\n            [-96.209933, 31.415794],\n            [-103.446513, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 32.86311],\n            [-103.446513, 34.310426],\n            [-96.209933, 34.310426],\n            [-96.209933, 32.86311],\n            [-103.446513, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 34.310426],\n            [-103.446513, 35.757742],\n            [-96.209933, 35.757742],\n            [-96.209933, 34.310426],\n            [-103.446513, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 35.757742],\n            [-103.446513, 37.205058],\n            [-96.209933, 37.205058],\n            [-96.209933, 35.757742],\n            [-103.446513, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 37.205058],\n            [-103.446513, 38.652373],\n            [-96.209933, 38.652373],\n            [-96.209933, 37.205058],\n            [-103.446513, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 38.652373],\n            [-103.446513, 40.099689],\n            [-96.209933, 40.099689],\n            [-96.209933, 38.652373],\n            [-103.446513, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 40.099689],\n            [-103.446513, 41.547005],\n            [-96.209933, 41.547005],\n            [-96.209933, 40.099689],\n            [-103.446513, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 41.547005],\n            [-103.446513, 42.994321],\n            [-96.209933, 42.994321],\n            [-96.209933, 41.547005],\n            [-103.446513, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 42.994321],\n            [-103.446513, 44.441637],\n            [-96.209933, 44.441637],\n            [-96.209933, 42.994321],\n            [-103.446513, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 44.441637],\n            [-103.446513, 45.888952],\n            [-96.209933, 45.888952],\n            [-96.209933, 44.441637],\n            [-103.446513, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 45.888952],\n            [-103.446513, 47.336268],\n            [-96.209933, 47.336268],\n            [-96.209933, 45.888952],\n            [-103.446513, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 47.336268],\n            [-103.446513, 48.783584],\n            [-96.209933, 48.783584],\n            [-96.209933, 47.336268],\n            [-103.446513, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 48.783584],\n            [-103.446513, 50.2309],\n            [-96.209933, 50.2309],\n            [-96.209933, 48.783584],\n            [-103.446513, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 50.2309],\n            [-103.446513, 51.678216],\n            [-96.209933, 51.678216],\n            [-96.209933, 50.2309],\n            [-103.446513, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 51.678216],\n            [-103.446513, 53.125532],\n            [-96.209933, 53.125532],\n            [-96.209933, 51.678216],\n            [-103.446513, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 53.125532],\n            [-103.446513, 54.572847],\n            [-96.209933, 54.572847],\n            [-96.209933, 53.125532],\n            [-103.446513, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 54.572847],\n            [-103.446513, 56.020163],\n            [-96.209933, 56.020163],\n            [-96.209933, 54.572847],\n            [-103.446513, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 56.020163],\n            [-103.446513, 57.467479],\n            [-96.209933, 57.467479],\n            [-96.209933, 56.020163],\n            [-103.446513, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 57.467479],\n            [-103.446513, 58.914795],\n            [-96.209933, 58.914795],\n            [-96.209933, 57.467479],\n            [-103.446513, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 58.914795],\n            [-103.446513, 60.362111],\n            [-96.209933, 60.362111],\n            [-96.209933, 58.914795],\n            [-103.446513, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 60.362111],\n            [-103.446513, 61.809427],\n            [-96.209933, 61.809427],\n            [-96.209933, 60.362111],\n            [-103.446513, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 61.809427],\n            [-103.446513, 63.256742],\n            [-96.209933, 63.256742],\n            [-96.209933, 61.809427],\n            [-103.446513, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 63.256742],\n            [-103.446513, 64.704058],\n            [-96.209933, 64.704058],\n            [-96.209933, 63.256742],\n            [-103.446513, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 64.704058],\n            [-103.446513, 66.151374],\n            [-96.209933, 66.151374],\n            [-96.209933, 64.704058],\n            [-103.446513, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 66.151374],\n            [-103.446513, 67.59869],\n            [-96.209933, 67.59869],\n            [-96.209933, 66.151374],\n            [-103.446513, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 67.59869],\n            [-103.446513, 69.046006],\n            [-96.209933, 69.046006],\n            [-96.209933, 67.59869],\n            [-103.446513, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 69.046006],\n            [-103.446513, 70.493322],\n            [-96.209933, 70.493322],\n            [-96.209933, 69.046006],\n            [-103.446513, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 70.493322],\n            [-103.446513, 71.940637],\n            [-96.209933, 71.940637],\n            [-96.209933, 70.493322],\n            [-103.446513, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 71.940637],\n            [-103.446513, 73.387953],\n            [-96.209933, 73.387953],\n            [-96.209933, 71.940637],\n            [-103.446513, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 73.387953],\n            [-103.446513, 74.835269],\n            [-96.209933, 74.835269],\n            [-96.209933, 73.387953],\n            [-103.446513, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 74.835269],\n            [-103.446513, 76.282585],\n            [-96.209933, 76.282585],\n            [-96.209933, 74.835269],\n            [-103.446513, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 76.282585],\n            [-103.446513, 77.729901],\n            [-96.209933, 77.729901],\n            [-96.209933, 76.282585],\n            [-103.446513, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -80.027525],\n            [-96.209933, -78.580209],\n            [-88.973354, -78.580209],\n            [-88.973354, -80.027525],\n            [-96.209933, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -78.580209],\n            [-96.209933, -77.132893],\n            [-88.973354, -77.132893],\n            [-88.973354, -78.580209],\n            [-96.209933, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -77.132893],\n            [-96.209933, -75.685577],\n            [-88.973354, -75.685577],\n            [-88.973354, -77.132893],\n            [-96.209933, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -75.685577],\n            [-96.209933, -74.238262],\n            [-88.973354, -74.238262],\n            [-88.973354, -75.685577],\n            [-96.209933, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -74.238262],\n            [-96.209933, -72.790946],\n            [-88.973354, -72.790946],\n            [-88.973354, -74.238262],\n            [-96.209933, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -72.790946],\n            [-96.209933, -71.34363],\n            [-88.973354, -71.34363],\n            [-88.973354, -72.790946],\n            [-96.209933, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -71.34363],\n            [-96.209933, -69.896314],\n            [-88.973354, -69.896314],\n            [-88.973354, -71.34363],\n            [-96.209933, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -69.896314],\n            [-96.209933, -68.448998],\n            [-88.973354, -68.448998],\n            [-88.973354, -69.896314],\n            [-96.209933, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -68.448998],\n            [-96.209933, -67.001682],\n            [-88.973354, -67.001682],\n            [-88.973354, -68.448998],\n            [-96.209933, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -67.001682],\n            [-96.209933, -65.554367],\n            [-88.973354, -65.554367],\n            [-88.973354, -67.001682],\n            [-96.209933, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -65.554367],\n            [-96.209933, -64.107051],\n            [-88.973354, -64.107051],\n            [-88.973354, -65.554367],\n            [-96.209933, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -64.107051],\n            [-96.209933, -62.659735],\n            [-88.973354, -62.659735],\n            [-88.973354, -64.107051],\n            [-96.209933, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -62.659735],\n            [-96.209933, -61.212419],\n            [-88.973354, -61.212419],\n            [-88.973354, -62.659735],\n            [-96.209933, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -61.212419],\n            [-96.209933, -59.765103],\n            [-88.973354, -59.765103],\n            [-88.973354, -61.212419],\n            [-96.209933, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -59.765103],\n            [-96.209933, -58.317787],\n            [-88.973354, -58.317787],\n            [-88.973354, -59.765103],\n            [-96.209933, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -58.317787],\n            [-96.209933, -56.870472],\n            [-88.973354, -56.870472],\n            [-88.973354, -58.317787],\n            [-96.209933, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -56.870472],\n            [-96.209933, -55.423156],\n            [-88.973354, -55.423156],\n            [-88.973354, -56.870472],\n            [-96.209933, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -55.423156],\n            [-96.209933, -53.97584],\n            [-88.973354, -53.97584],\n            [-88.973354, -55.423156],\n            [-96.209933, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -53.97584],\n            [-96.209933, -52.528524],\n            [-88.973354, -52.528524],\n            [-88.973354, -53.97584],\n            [-96.209933, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -52.528524],\n            [-96.209933, -51.081208],\n            [-88.973354, -51.081208],\n            [-88.973354, -52.528524],\n            [-96.209933, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -51.081208],\n            [-96.209933, -49.633892],\n            [-88.973354, -49.633892],\n            [-88.973354, -51.081208],\n            [-96.209933, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -49.633892],\n            [-96.209933, -48.186577],\n            [-88.973354, -48.186577],\n            [-88.973354, -49.633892],\n            [-96.209933, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -48.186577],\n            [-96.209933, -46.739261],\n            [-88.973354, -46.739261],\n            [-88.973354, -48.186577],\n            [-96.209933, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -46.739261],\n            [-96.209933, -45.291945],\n            [-88.973354, -45.291945],\n            [-88.973354, -46.739261],\n            [-96.209933, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -45.291945],\n            [-96.209933, -43.844629],\n            [-88.973354, -43.844629],\n            [-88.973354, -45.291945],\n            [-96.209933, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -43.844629],\n            [-96.209933, -42.397313],\n            [-88.973354, -42.397313],\n            [-88.973354, -43.844629],\n            [-96.209933, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -42.397313],\n            [-96.209933, -40.949997],\n            [-88.973354, -40.949997],\n            [-88.973354, -42.397313],\n            [-96.209933, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -40.949997],\n            [-96.209933, -39.502682],\n            [-88.973354, -39.502682],\n            [-88.973354, -40.949997],\n            [-96.209933, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -39.502682],\n            [-96.209933, -38.055366],\n            [-88.973354, -38.055366],\n            [-88.973354, -39.502682],\n            [-96.209933, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -38.055366],\n            [-96.209933, -36.60805],\n            [-88.973354, -36.60805],\n            [-88.973354, -38.055366],\n            [-96.209933, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -36.60805],\n            [-96.209933, -35.160734],\n            [-88.973354, -35.160734],\n            [-88.973354, -36.60805],\n            [-96.209933, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -35.160734],\n            [-96.209933, -33.713418],\n            [-88.973354, -33.713418],\n            [-88.973354, -35.160734],\n            [-96.209933, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -33.713418],\n            [-96.209933, -32.266102],\n            [-88.973354, -32.266102],\n            [-88.973354, -33.713418],\n            [-96.209933, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -32.266102],\n            [-96.209933, -30.818787],\n            [-88.973354, -30.818787],\n            [-88.973354, -32.266102],\n            [-96.209933, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -30.818787],\n            [-96.209933, -29.371471],\n            [-88.973354, -29.371471],\n            [-88.973354, -30.818787],\n            [-96.209933, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -29.371471],\n            [-96.209933, -27.924155],\n            [-88.973354, -27.924155],\n            [-88.973354, -29.371471],\n            [-96.209933, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -27.924155],\n            [-96.209933, -26.476839],\n            [-88.973354, -26.476839],\n            [-88.973354, -27.924155],\n            [-96.209933, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -26.476839],\n            [-96.209933, -25.029523],\n            [-88.973354, -25.029523],\n            [-88.973354, -26.476839],\n            [-96.209933, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -25.029523],\n            [-96.209933, -23.582207],\n            [-88.973354, -23.582207],\n            [-88.973354, -25.029523],\n            [-96.209933, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -23.582207],\n            [-96.209933, -22.134892],\n            [-88.973354, -22.134892],\n            [-88.973354, -23.582207],\n            [-96.209933, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -22.134892],\n            [-96.209933, -20.687576],\n            [-88.973354, -20.687576],\n            [-88.973354, -22.134892],\n            [-96.209933, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -20.687576],\n            [-96.209933, -19.24026],\n            [-88.973354, -19.24026],\n            [-88.973354, -20.687576],\n            [-96.209933, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -19.24026],\n            [-96.209933, -17.792944],\n            [-88.973354, -17.792944],\n            [-88.973354, -19.24026],\n            [-96.209933, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -17.792944],\n            [-96.209933, -16.345628],\n            [-88.973354, -16.345628],\n            [-88.973354, -17.792944],\n            [-96.209933, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -16.345628],\n            [-96.209933, -14.898312],\n            [-88.973354, -14.898312],\n            [-88.973354, -16.345628],\n            [-96.209933, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -14.898312],\n            [-96.209933, -13.450997],\n            [-88.973354, -13.450997],\n            [-88.973354, -14.898312],\n            [-96.209933, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -13.450997],\n            [-96.209933, -12.003681],\n            [-88.973354, -12.003681],\n            [-88.973354, -13.450997],\n            [-96.209933, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -12.003681],\n            [-96.209933, -10.556365],\n            [-88.973354, -10.556365],\n            [-88.973354, -12.003681],\n            [-96.209933, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -10.556365],\n            [-96.209933, -9.109049],\n            [-88.973354, -9.109049],\n            [-88.973354, -10.556365],\n            [-96.209933, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -9.109049],\n            [-96.209933, -7.661733],\n            [-88.973354, -7.661733],\n            [-88.973354, -9.109049],\n            [-96.209933, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -7.661733],\n            [-96.209933, -6.214417],\n            [-88.973354, -6.214417],\n            [-88.973354, -7.661733],\n            [-96.209933, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -6.214417],\n            [-96.209933, -4.767102],\n            [-88.973354, -4.767102],\n            [-88.973354, -6.214417],\n            [-96.209933, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -4.767102],\n            [-96.209933, -3.319786],\n            [-88.973354, -3.319786],\n            [-88.973354, -4.767102],\n            [-96.209933, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -3.319786],\n            [-96.209933, -1.87247],\n            [-88.973354, -1.87247],\n            [-88.973354, -3.319786],\n            [-96.209933, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -1.87247],\n            [-96.209933, -0.425154],\n            [-88.973354, -0.425154],\n            [-88.973354, -1.87247],\n            [-96.209933, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -0.425154],\n            [-96.209933, 1.022162],\n            [-88.973354, 1.022162],\n            [-88.973354, -0.425154],\n            [-96.209933, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 1.022162],\n            [-96.209933, 2.469478],\n            [-88.973354, 2.469478],\n            [-88.973354, 1.022162],\n            [-96.209933, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 2.469478],\n            [-96.209933, 3.916793],\n            [-88.973354, 3.916793],\n            [-88.973354, 2.469478],\n            [-96.209933, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 3.916793],\n            [-96.209933, 5.364109],\n            [-88.973354, 5.364109],\n            [-88.973354, 3.916793],\n            [-96.209933, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 5.364109],\n            [-96.209933, 6.811425],\n            [-88.973354, 6.811425],\n            [-88.973354, 5.364109],\n            [-96.209933, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 6.811425],\n            [-96.209933, 8.258741],\n            [-88.973354, 8.258741],\n            [-88.973354, 6.811425],\n            [-96.209933, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 8.258741],\n            [-96.209933, 9.706057],\n            [-88.973354, 9.706057],\n            [-88.973354, 8.258741],\n            [-96.209933, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 9.706057],\n            [-96.209933, 11.153373],\n            [-88.973354, 11.153373],\n            [-88.973354, 9.706057],\n            [-96.209933, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 11.153373],\n            [-96.209933, 12.600688],\n            [-88.973354, 12.600688],\n            [-88.973354, 11.153373],\n            [-96.209933, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 12.600688],\n            [-96.209933, 14.048004],\n            [-88.973354, 14.048004],\n            [-88.973354, 12.600688],\n            [-96.209933, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 14.048004],\n            [-96.209933, 15.49532],\n            [-88.973354, 15.49532],\n            [-88.973354, 14.048004],\n            [-96.209933, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 15.49532],\n            [-96.209933, 16.942636],\n            [-88.973354, 16.942636],\n            [-88.973354, 15.49532],\n            [-96.209933, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 16.942636],\n            [-96.209933, 18.389952],\n            [-88.973354, 18.389952],\n            [-88.973354, 16.942636],\n            [-96.209933, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 18.389952],\n            [-96.209933, 19.837268],\n            [-88.973354, 19.837268],\n            [-88.973354, 18.389952],\n            [-96.209933, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 19.837268],\n            [-96.209933, 21.284583],\n            [-88.973354, 21.284583],\n            [-88.973354, 19.837268],\n            [-96.209933, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 21.284583],\n            [-96.209933, 22.731899],\n            [-88.973354, 22.731899],\n            [-88.973354, 21.284583],\n            [-96.209933, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 22.731899],\n            [-96.209933, 24.179215],\n            [-88.973354, 24.179215],\n            [-88.973354, 22.731899],\n            [-96.209933, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 24.179215],\n            [-96.209933, 25.626531],\n            [-88.973354, 25.626531],\n            [-88.973354, 24.179215],\n            [-96.209933, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 25.626531],\n            [-96.209933, 27.073847],\n            [-88.973354, 27.073847],\n            [-88.973354, 25.626531],\n            [-96.209933, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 27.073847],\n            [-96.209933, 28.521163],\n            [-88.973354, 28.521163],\n            [-88.973354, 27.073847],\n            [-96.209933, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 28.521163],\n            [-96.209933, 29.968478],\n            [-88.973354, 29.968478],\n            [-88.973354, 28.521163],\n            [-96.209933, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 29.968478],\n            [-96.209933, 31.415794],\n            [-88.973354, 31.415794],\n            [-88.973354, 29.968478],\n            [-96.209933, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 31.415794],\n            [-96.209933, 32.86311],\n            [-88.973354, 32.86311],\n            [-88.973354, 31.415794],\n            [-96.209933, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 32.86311],\n            [-96.209933, 34.310426],\n            [-88.973354, 34.310426],\n            [-88.973354, 32.86311],\n            [-96.209933, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 34.310426],\n            [-96.209933, 35.757742],\n            [-88.973354, 35.757742],\n            [-88.973354, 34.310426],\n            [-96.209933, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 35.757742],\n            [-96.209933, 37.205058],\n            [-88.973354, 37.205058],\n            [-88.973354, 35.757742],\n            [-96.209933, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 37.205058],\n            [-96.209933, 38.652373],\n            [-88.973354, 38.652373],\n            [-88.973354, 37.205058],\n            [-96.209933, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 38.652373],\n            [-96.209933, 40.099689],\n            [-88.973354, 40.099689],\n            [-88.973354, 38.652373],\n            [-96.209933, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 40.099689],\n            [-96.209933, 41.547005],\n            [-88.973354, 41.547005],\n            [-88.973354, 40.099689],\n            [-96.209933, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 41.547005],\n            [-96.209933, 42.994321],\n            [-88.973354, 42.994321],\n            [-88.973354, 41.547005],\n            [-96.209933, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 42.994321],\n            [-96.209933, 44.441637],\n            [-88.973354, 44.441637],\n            [-88.973354, 42.994321],\n            [-96.209933, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 44.441637],\n            [-96.209933, 45.888952],\n            [-88.973354, 45.888952],\n            [-88.973354, 44.441637],\n            [-96.209933, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 45.888952],\n            [-96.209933, 47.336268],\n            [-88.973354, 47.336268],\n            [-88.973354, 45.888952],\n            [-96.209933, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 47.336268],\n            [-96.209933, 48.783584],\n            [-88.973354, 48.783584],\n            [-88.973354, 47.336268],\n            [-96.209933, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 48.783584],\n            [-96.209933, 50.2309],\n            [-88.973354, 50.2309],\n            [-88.973354, 48.783584],\n            [-96.209933, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 50.2309],\n            [-96.209933, 51.678216],\n            [-88.973354, 51.678216],\n            [-88.973354, 50.2309],\n            [-96.209933, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 51.678216],\n            [-96.209933, 53.125532],\n            [-88.973354, 53.125532],\n            [-88.973354, 51.678216],\n            [-96.209933, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 53.125532],\n            [-96.209933, 54.572847],\n            [-88.973354, 54.572847],\n            [-88.973354, 53.125532],\n            [-96.209933, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 54.572847],\n            [-96.209933, 56.020163],\n            [-88.973354, 56.020163],\n            [-88.973354, 54.572847],\n            [-96.209933, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 56.020163],\n            [-96.209933, 57.467479],\n            [-88.973354, 57.467479],\n            [-88.973354, 56.020163],\n            [-96.209933, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 57.467479],\n            [-96.209933, 58.914795],\n            [-88.973354, 58.914795],\n            [-88.973354, 57.467479],\n            [-96.209933, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 58.914795],\n            [-96.209933, 60.362111],\n            [-88.973354, 60.362111],\n            [-88.973354, 58.914795],\n            [-96.209933, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 60.362111],\n            [-96.209933, 61.809427],\n            [-88.973354, 61.809427],\n            [-88.973354, 60.362111],\n            [-96.209933, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 61.809427],\n            [-96.209933, 63.256742],\n            [-88.973354, 63.256742],\n            [-88.973354, 61.809427],\n            [-96.209933, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 63.256742],\n            [-96.209933, 64.704058],\n            [-88.973354, 64.704058],\n            [-88.973354, 63.256742],\n            [-96.209933, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 64.704058],\n            [-96.209933, 66.151374],\n            [-88.973354, 66.151374],\n            [-88.973354, 64.704058],\n            [-96.209933, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 66.151374],\n            [-96.209933, 67.59869],\n            [-88.973354, 67.59869],\n            [-88.973354, 66.151374],\n            [-96.209933, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 67.59869],\n            [-96.209933, 69.046006],\n            [-88.973354, 69.046006],\n            [-88.973354, 67.59869],\n            [-96.209933, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 69.046006],\n            [-96.209933, 70.493322],\n            [-88.973354, 70.493322],\n            [-88.973354, 69.046006],\n            [-96.209933, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 70.493322],\n            [-96.209933, 71.940637],\n            [-88.973354, 71.940637],\n            [-88.973354, 70.493322],\n            [-96.209933, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 71.940637],\n            [-96.209933, 73.387953],\n            [-88.973354, 73.387953],\n            [-88.973354, 71.940637],\n            [-96.209933, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 73.387953],\n            [-96.209933, 74.835269],\n            [-88.973354, 74.835269],\n            [-88.973354, 73.387953],\n            [-96.209933, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 74.835269],\n            [-96.209933, 76.282585],\n            [-88.973354, 76.282585],\n            [-88.973354, 74.835269],\n            [-96.209933, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 76.282585],\n            [-96.209933, 77.729901],\n            [-88.973354, 77.729901],\n            [-88.973354, 76.282585],\n            [-96.209933, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -80.027525],\n            [-88.973354, -78.580209],\n            [-81.736775, -78.580209],\n            [-81.736775, -80.027525],\n            [-88.973354, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -78.580209],\n            [-88.973354, -77.132893],\n            [-81.736775, -77.132893],\n            [-81.736775, -78.580209],\n            [-88.973354, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -77.132893],\n            [-88.973354, -75.685577],\n            [-81.736775, -75.685577],\n            [-81.736775, -77.132893],\n            [-88.973354, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -75.685577],\n            [-88.973354, -74.238262],\n            [-81.736775, -74.238262],\n            [-81.736775, -75.685577],\n            [-88.973354, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -74.238262],\n            [-88.973354, -72.790946],\n            [-81.736775, -72.790946],\n            [-81.736775, -74.238262],\n            [-88.973354, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -72.790946],\n            [-88.973354, -71.34363],\n            [-81.736775, -71.34363],\n            [-81.736775, -72.790946],\n            [-88.973354, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -71.34363],\n            [-88.973354, -69.896314],\n            [-81.736775, -69.896314],\n            [-81.736775, -71.34363],\n            [-88.973354, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -69.896314],\n            [-88.973354, -68.448998],\n            [-81.736775, -68.448998],\n            [-81.736775, -69.896314],\n            [-88.973354, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -68.448998],\n            [-88.973354, -67.001682],\n            [-81.736775, -67.001682],\n            [-81.736775, -68.448998],\n            [-88.973354, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -67.001682],\n            [-88.973354, -65.554367],\n            [-81.736775, -65.554367],\n            [-81.736775, -67.001682],\n            [-88.973354, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -65.554367],\n            [-88.973354, -64.107051],\n            [-81.736775, -64.107051],\n            [-81.736775, -65.554367],\n            [-88.973354, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -64.107051],\n            [-88.973354, -62.659735],\n            [-81.736775, -62.659735],\n            [-81.736775, -64.107051],\n            [-88.973354, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -62.659735],\n            [-88.973354, -61.212419],\n            [-81.736775, -61.212419],\n            [-81.736775, -62.659735],\n            [-88.973354, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -61.212419],\n            [-88.973354, -59.765103],\n            [-81.736775, -59.765103],\n            [-81.736775, -61.212419],\n            [-88.973354, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -59.765103],\n            [-88.973354, -58.317787],\n            [-81.736775, -58.317787],\n            [-81.736775, -59.765103],\n            [-88.973354, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -58.317787],\n            [-88.973354, -56.870472],\n            [-81.736775, -56.870472],\n            [-81.736775, -58.317787],\n            [-88.973354, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -56.870472],\n            [-88.973354, -55.423156],\n            [-81.736775, -55.423156],\n            [-81.736775, -56.870472],\n            [-88.973354, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -55.423156],\n            [-88.973354, -53.97584],\n            [-81.736775, -53.97584],\n            [-81.736775, -55.423156],\n            [-88.973354, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -53.97584],\n            [-88.973354, -52.528524],\n            [-81.736775, -52.528524],\n            [-81.736775, -53.97584],\n            [-88.973354, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -52.528524],\n            [-88.973354, -51.081208],\n            [-81.736775, -51.081208],\n            [-81.736775, -52.528524],\n            [-88.973354, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -51.081208],\n            [-88.973354, -49.633892],\n            [-81.736775, -49.633892],\n            [-81.736775, -51.081208],\n            [-88.973354, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -49.633892],\n            [-88.973354, -48.186577],\n            [-81.736775, -48.186577],\n            [-81.736775, -49.633892],\n            [-88.973354, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -48.186577],\n            [-88.973354, -46.739261],\n            [-81.736775, -46.739261],\n            [-81.736775, -48.186577],\n            [-88.973354, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -46.739261],\n            [-88.973354, -45.291945],\n            [-81.736775, -45.291945],\n            [-81.736775, -46.739261],\n            [-88.973354, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -45.291945],\n            [-88.973354, -43.844629],\n            [-81.736775, -43.844629],\n            [-81.736775, -45.291945],\n            [-88.973354, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -43.844629],\n            [-88.973354, -42.397313],\n            [-81.736775, -42.397313],\n            [-81.736775, -43.844629],\n            [-88.973354, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -42.397313],\n            [-88.973354, -40.949997],\n            [-81.736775, -40.949997],\n            [-81.736775, -42.397313],\n            [-88.973354, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -40.949997],\n            [-88.973354, -39.502682],\n            [-81.736775, -39.502682],\n            [-81.736775, -40.949997],\n            [-88.973354, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -39.502682],\n            [-88.973354, -38.055366],\n            [-81.736775, -38.055366],\n            [-81.736775, -39.502682],\n            [-88.973354, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -38.055366],\n            [-88.973354, -36.60805],\n            [-81.736775, -36.60805],\n            [-81.736775, -38.055366],\n            [-88.973354, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -36.60805],\n            [-88.973354, -35.160734],\n            [-81.736775, -35.160734],\n            [-81.736775, -36.60805],\n            [-88.973354, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -35.160734],\n            [-88.973354, -33.713418],\n            [-81.736775, -33.713418],\n            [-81.736775, -35.160734],\n            [-88.973354, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -33.713418],\n            [-88.973354, -32.266102],\n            [-81.736775, -32.266102],\n            [-81.736775, -33.713418],\n            [-88.973354, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -32.266102],\n            [-88.973354, -30.818787],\n            [-81.736775, -30.818787],\n            [-81.736775, -32.266102],\n            [-88.973354, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -30.818787],\n            [-88.973354, -29.371471],\n            [-81.736775, -29.371471],\n            [-81.736775, -30.818787],\n            [-88.973354, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -29.371471],\n            [-88.973354, -27.924155],\n            [-81.736775, -27.924155],\n            [-81.736775, -29.371471],\n            [-88.973354, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -27.924155],\n            [-88.973354, -26.476839],\n            [-81.736775, -26.476839],\n            [-81.736775, -27.924155],\n            [-88.973354, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -26.476839],\n            [-88.973354, -25.029523],\n            [-81.736775, -25.029523],\n            [-81.736775, -26.476839],\n            [-88.973354, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -25.029523],\n            [-88.973354, -23.582207],\n            [-81.736775, -23.582207],\n            [-81.736775, -25.029523],\n            [-88.973354, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -23.582207],\n            [-88.973354, -22.134892],\n            [-81.736775, -22.134892],\n            [-81.736775, -23.582207],\n            [-88.973354, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -22.134892],\n            [-88.973354, -20.687576],\n            [-81.736775, -20.687576],\n            [-81.736775, -22.134892],\n            [-88.973354, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -20.687576],\n            [-88.973354, -19.24026],\n            [-81.736775, -19.24026],\n            [-81.736775, -20.687576],\n            [-88.973354, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -19.24026],\n            [-88.973354, -17.792944],\n            [-81.736775, -17.792944],\n            [-81.736775, -19.24026],\n            [-88.973354, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -17.792944],\n            [-88.973354, -16.345628],\n            [-81.736775, -16.345628],\n            [-81.736775, -17.792944],\n            [-88.973354, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -16.345628],\n            [-88.973354, -14.898312],\n            [-81.736775, -14.898312],\n            [-81.736775, -16.345628],\n            [-88.973354, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -14.898312],\n            [-88.973354, -13.450997],\n            [-81.736775, -13.450997],\n            [-81.736775, -14.898312],\n            [-88.973354, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -13.450997],\n            [-88.973354, -12.003681],\n            [-81.736775, -12.003681],\n            [-81.736775, -13.450997],\n            [-88.973354, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -12.003681],\n            [-88.973354, -10.556365],\n            [-81.736775, -10.556365],\n            [-81.736775, -12.003681],\n            [-88.973354, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -10.556365],\n            [-88.973354, -9.109049],\n            [-81.736775, -9.109049],\n            [-81.736775, -10.556365],\n            [-88.973354, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -9.109049],\n            [-88.973354, -7.661733],\n            [-81.736775, -7.661733],\n            [-81.736775, -9.109049],\n            [-88.973354, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -7.661733],\n            [-88.973354, -6.214417],\n            [-81.736775, -6.214417],\n            [-81.736775, -7.661733],\n            [-88.973354, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -6.214417],\n            [-88.973354, -4.767102],\n            [-81.736775, -4.767102],\n            [-81.736775, -6.214417],\n            [-88.973354, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -4.767102],\n            [-88.973354, -3.319786],\n            [-81.736775, -3.319786],\n            [-81.736775, -4.767102],\n            [-88.973354, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -3.319786],\n            [-88.973354, -1.87247],\n            [-81.736775, -1.87247],\n            [-81.736775, -3.319786],\n            [-88.973354, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -1.87247],\n            [-88.973354, -0.425154],\n            [-81.736775, -0.425154],\n            [-81.736775, -1.87247],\n            [-88.973354, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -0.425154],\n            [-88.973354, 1.022162],\n            [-81.736775, 1.022162],\n            [-81.736775, -0.425154],\n            [-88.973354, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 1.022162],\n            [-88.973354, 2.469478],\n            [-81.736775, 2.469478],\n            [-81.736775, 1.022162],\n            [-88.973354, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 2.469478],\n            [-88.973354, 3.916793],\n            [-81.736775, 3.916793],\n            [-81.736775, 2.469478],\n            [-88.973354, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 3.916793],\n            [-88.973354, 5.364109],\n            [-81.736775, 5.364109],\n            [-81.736775, 3.916793],\n            [-88.973354, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 5.364109],\n            [-88.973354, 6.811425],\n            [-81.736775, 6.811425],\n            [-81.736775, 5.364109],\n            [-88.973354, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 6.811425],\n            [-88.973354, 8.258741],\n            [-81.736775, 8.258741],\n            [-81.736775, 6.811425],\n            [-88.973354, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 8.258741],\n            [-88.973354, 9.706057],\n            [-81.736775, 9.706057],\n            [-81.736775, 8.258741],\n            [-88.973354, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 9.706057],\n            [-88.973354, 11.153373],\n            [-81.736775, 11.153373],\n            [-81.736775, 9.706057],\n            [-88.973354, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 11.153373],\n            [-88.973354, 12.600688],\n            [-81.736775, 12.600688],\n            [-81.736775, 11.153373],\n            [-88.973354, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 12.600688],\n            [-88.973354, 14.048004],\n            [-81.736775, 14.048004],\n            [-81.736775, 12.600688],\n            [-88.973354, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 14.048004],\n            [-88.973354, 15.49532],\n            [-81.736775, 15.49532],\n            [-81.736775, 14.048004],\n            [-88.973354, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 15.49532],\n            [-88.973354, 16.942636],\n            [-81.736775, 16.942636],\n            [-81.736775, 15.49532],\n            [-88.973354, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 16.942636],\n            [-88.973354, 18.389952],\n            [-81.736775, 18.389952],\n            [-81.736775, 16.942636],\n            [-88.973354, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 18.389952],\n            [-88.973354, 19.837268],\n            [-81.736775, 19.837268],\n            [-81.736775, 18.389952],\n            [-88.973354, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 19.837268],\n            [-88.973354, 21.284583],\n            [-81.736775, 21.284583],\n            [-81.736775, 19.837268],\n            [-88.973354, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 21.284583],\n            [-88.973354, 22.731899],\n            [-81.736775, 22.731899],\n            [-81.736775, 21.284583],\n            [-88.973354, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 22.731899],\n            [-88.973354, 24.179215],\n            [-81.736775, 24.179215],\n            [-81.736775, 22.731899],\n            [-88.973354, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 24.179215],\n            [-88.973354, 25.626531],\n            [-81.736775, 25.626531],\n            [-81.736775, 24.179215],\n            [-88.973354, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 25.626531],\n            [-88.973354, 27.073847],\n            [-81.736775, 27.073847],\n            [-81.736775, 25.626531],\n            [-88.973354, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 27.073847],\n            [-88.973354, 28.521163],\n            [-81.736775, 28.521163],\n            [-81.736775, 27.073847],\n            [-88.973354, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 28.521163],\n            [-88.973354, 29.968478],\n            [-81.736775, 29.968478],\n            [-81.736775, 28.521163],\n            [-88.973354, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 29.968478],\n            [-88.973354, 31.415794],\n            [-81.736775, 31.415794],\n            [-81.736775, 29.968478],\n            [-88.973354, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 31.415794],\n            [-88.973354, 32.86311],\n            [-81.736775, 32.86311],\n            [-81.736775, 31.415794],\n            [-88.973354, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 32.86311],\n            [-88.973354, 34.310426],\n            [-81.736775, 34.310426],\n            [-81.736775, 32.86311],\n            [-88.973354, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 34.310426],\n            [-88.973354, 35.757742],\n            [-81.736775, 35.757742],\n            [-81.736775, 34.310426],\n            [-88.973354, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 35.757742],\n            [-88.973354, 37.205058],\n            [-81.736775, 37.205058],\n            [-81.736775, 35.757742],\n            [-88.973354, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 37.205058],\n            [-88.973354, 38.652373],\n            [-81.736775, 38.652373],\n            [-81.736775, 37.205058],\n            [-88.973354, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 38.652373],\n            [-88.973354, 40.099689],\n            [-81.736775, 40.099689],\n            [-81.736775, 38.652373],\n            [-88.973354, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 40.099689],\n            [-88.973354, 41.547005],\n            [-81.736775, 41.547005],\n            [-81.736775, 40.099689],\n            [-88.973354, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 41.547005],\n            [-88.973354, 42.994321],\n            [-81.736775, 42.994321],\n            [-81.736775, 41.547005],\n            [-88.973354, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 42.994321],\n            [-88.973354, 44.441637],\n            [-81.736775, 44.441637],\n            [-81.736775, 42.994321],\n            [-88.973354, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 44.441637],\n            [-88.973354, 45.888952],\n            [-81.736775, 45.888952],\n            [-81.736775, 44.441637],\n            [-88.973354, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 45.888952],\n            [-88.973354, 47.336268],\n            [-81.736775, 47.336268],\n            [-81.736775, 45.888952],\n            [-88.973354, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 47.336268],\n            [-88.973354, 48.783584],\n            [-81.736775, 48.783584],\n            [-81.736775, 47.336268],\n            [-88.973354, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 48.783584],\n            [-88.973354, 50.2309],\n            [-81.736775, 50.2309],\n            [-81.736775, 48.783584],\n            [-88.973354, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 50.2309],\n            [-88.973354, 51.678216],\n            [-81.736775, 51.678216],\n            [-81.736775, 50.2309],\n            [-88.973354, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 51.678216],\n            [-88.973354, 53.125532],\n            [-81.736775, 53.125532],\n            [-81.736775, 51.678216],\n            [-88.973354, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 53.125532],\n            [-88.973354, 54.572847],\n            [-81.736775, 54.572847],\n            [-81.736775, 53.125532],\n            [-88.973354, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 54.572847],\n            [-88.973354, 56.020163],\n            [-81.736775, 56.020163],\n            [-81.736775, 54.572847],\n            [-88.973354, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 56.020163],\n            [-88.973354, 57.467479],\n            [-81.736775, 57.467479],\n            [-81.736775, 56.020163],\n            [-88.973354, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 57.467479],\n            [-88.973354, 58.914795],\n            [-81.736775, 58.914795],\n            [-81.736775, 57.467479],\n            [-88.973354, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 58.914795],\n            [-88.973354, 60.362111],\n            [-81.736775, 60.362111],\n            [-81.736775, 58.914795],\n            [-88.973354, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 60.362111],\n            [-88.973354, 61.809427],\n            [-81.736775, 61.809427],\n            [-81.736775, 60.362111],\n            [-88.973354, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 61.809427],\n            [-88.973354, 63.256742],\n            [-81.736775, 63.256742],\n            [-81.736775, 61.809427],\n            [-88.973354, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 63.256742],\n            [-88.973354, 64.704058],\n            [-81.736775, 64.704058],\n            [-81.736775, 63.256742],\n            [-88.973354, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 64.704058],\n            [-88.973354, 66.151374],\n            [-81.736775, 66.151374],\n            [-81.736775, 64.704058],\n            [-88.973354, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 66.151374],\n            [-88.973354, 67.59869],\n            [-81.736775, 67.59869],\n            [-81.736775, 66.151374],\n            [-88.973354, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 67.59869],\n            [-88.973354, 69.046006],\n            [-81.736775, 69.046006],\n            [-81.736775, 67.59869],\n            [-88.973354, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 69.046006],\n            [-88.973354, 70.493322],\n            [-81.736775, 70.493322],\n            [-81.736775, 69.046006],\n            [-88.973354, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 70.493322],\n            [-88.973354, 71.940637],\n            [-81.736775, 71.940637],\n            [-81.736775, 70.493322],\n            [-88.973354, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 71.940637],\n            [-88.973354, 73.387953],\n            [-81.736775, 73.387953],\n            [-81.736775, 71.940637],\n            [-88.973354, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 73.387953],\n            [-88.973354, 74.835269],\n            [-81.736775, 74.835269],\n            [-81.736775, 73.387953],\n            [-88.973354, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 74.835269],\n            [-88.973354, 76.282585],\n            [-81.736775, 76.282585],\n            [-81.736775, 74.835269],\n            [-88.973354, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 76.282585],\n            [-88.973354, 77.729901],\n            [-81.736775, 77.729901],\n            [-81.736775, 76.282585],\n            [-88.973354, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -80.027525],\n            [-81.736775, -78.580209],\n            [-74.500196, -78.580209],\n            [-74.500196, -80.027525],\n            [-81.736775, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -78.580209],\n            [-81.736775, -77.132893],\n            [-74.500196, -77.132893],\n            [-74.500196, -78.580209],\n            [-81.736775, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -77.132893],\n            [-81.736775, -75.685577],\n            [-74.500196, -75.685577],\n            [-74.500196, -77.132893],\n            [-81.736775, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -75.685577],\n            [-81.736775, -74.238262],\n            [-74.500196, -74.238262],\n            [-74.500196, -75.685577],\n            [-81.736775, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -74.238262],\n            [-81.736775, -72.790946],\n            [-74.500196, -72.790946],\n            [-74.500196, -74.238262],\n            [-81.736775, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -72.790946],\n            [-81.736775, -71.34363],\n            [-74.500196, -71.34363],\n            [-74.500196, -72.790946],\n            [-81.736775, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -71.34363],\n            [-81.736775, -69.896314],\n            [-74.500196, -69.896314],\n            [-74.500196, -71.34363],\n            [-81.736775, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -69.896314],\n            [-81.736775, -68.448998],\n            [-74.500196, -68.448998],\n            [-74.500196, -69.896314],\n            [-81.736775, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -68.448998],\n            [-81.736775, -67.001682],\n            [-74.500196, -67.001682],\n            [-74.500196, -68.448998],\n            [-81.736775, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -67.001682],\n            [-81.736775, -65.554367],\n            [-74.500196, -65.554367],\n            [-74.500196, -67.001682],\n            [-81.736775, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -65.554367],\n            [-81.736775, -64.107051],\n            [-74.500196, -64.107051],\n            [-74.500196, -65.554367],\n            [-81.736775, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -64.107051],\n            [-81.736775, -62.659735],\n            [-74.500196, -62.659735],\n            [-74.500196, -64.107051],\n            [-81.736775, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -62.659735],\n            [-81.736775, -61.212419],\n            [-74.500196, -61.212419],\n            [-74.500196, -62.659735],\n            [-81.736775, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -61.212419],\n            [-81.736775, -59.765103],\n            [-74.500196, -59.765103],\n            [-74.500196, -61.212419],\n            [-81.736775, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -59.765103],\n            [-81.736775, -58.317787],\n            [-74.500196, -58.317787],\n            [-74.500196, -59.765103],\n            [-81.736775, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -58.317787],\n            [-81.736775, -56.870472],\n            [-74.500196, -56.870472],\n            [-74.500196, -58.317787],\n            [-81.736775, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -56.870472],\n            [-81.736775, -55.423156],\n            [-74.500196, -55.423156],\n            [-74.500196, -56.870472],\n            [-81.736775, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -55.423156],\n            [-81.736775, -53.97584],\n            [-74.500196, -53.97584],\n            [-74.500196, -55.423156],\n            [-81.736775, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -53.97584],\n            [-81.736775, -52.528524],\n            [-74.500196, -52.528524],\n            [-74.500196, -53.97584],\n            [-81.736775, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -52.528524],\n            [-81.736775, -51.081208],\n            [-74.500196, -51.081208],\n            [-74.500196, -52.528524],\n            [-81.736775, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -51.081208],\n            [-81.736775, -49.633892],\n            [-74.500196, -49.633892],\n            [-74.500196, -51.081208],\n            [-81.736775, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -49.633892],\n            [-81.736775, -48.186577],\n            [-74.500196, -48.186577],\n            [-74.500196, -49.633892],\n            [-81.736775, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -48.186577],\n            [-81.736775, -46.739261],\n            [-74.500196, -46.739261],\n            [-74.500196, -48.186577],\n            [-81.736775, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -46.739261],\n            [-81.736775, -45.291945],\n            [-74.500196, -45.291945],\n            [-74.500196, -46.739261],\n            [-81.736775, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -45.291945],\n            [-81.736775, -43.844629],\n            [-74.500196, -43.844629],\n            [-74.500196, -45.291945],\n            [-81.736775, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -43.844629],\n            [-81.736775, -42.397313],\n            [-74.500196, -42.397313],\n            [-74.500196, -43.844629],\n            [-81.736775, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -42.397313],\n            [-81.736775, -40.949997],\n            [-74.500196, -40.949997],\n            [-74.500196, -42.397313],\n            [-81.736775, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -40.949997],\n            [-81.736775, -39.502682],\n            [-74.500196, -39.502682],\n            [-74.500196, -40.949997],\n            [-81.736775, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -39.502682],\n            [-81.736775, -38.055366],\n            [-74.500196, -38.055366],\n            [-74.500196, -39.502682],\n            [-81.736775, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -38.055366],\n            [-81.736775, -36.60805],\n            [-74.500196, -36.60805],\n            [-74.500196, -38.055366],\n            [-81.736775, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -36.60805],\n            [-81.736775, -35.160734],\n            [-74.500196, -35.160734],\n            [-74.500196, -36.60805],\n            [-81.736775, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -35.160734],\n            [-81.736775, -33.713418],\n            [-74.500196, -33.713418],\n            [-74.500196, -35.160734],\n            [-81.736775, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -33.713418],\n            [-81.736775, -32.266102],\n            [-74.500196, -32.266102],\n            [-74.500196, -33.713418],\n            [-81.736775, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -32.266102],\n            [-81.736775, -30.818787],\n            [-74.500196, -30.818787],\n            [-74.500196, -32.266102],\n            [-81.736775, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -30.818787],\n            [-81.736775, -29.371471],\n            [-74.500196, -29.371471],\n            [-74.500196, -30.818787],\n            [-81.736775, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -29.371471],\n            [-81.736775, -27.924155],\n            [-74.500196, -27.924155],\n            [-74.500196, -29.371471],\n            [-81.736775, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -27.924155],\n            [-81.736775, -26.476839],\n            [-74.500196, -26.476839],\n            [-74.500196, -27.924155],\n            [-81.736775, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -26.476839],\n            [-81.736775, -25.029523],\n            [-74.500196, -25.029523],\n            [-74.500196, -26.476839],\n            [-81.736775, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -25.029523],\n            [-81.736775, -23.582207],\n            [-74.500196, -23.582207],\n            [-74.500196, -25.029523],\n            [-81.736775, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -23.582207],\n            [-81.736775, -22.134892],\n            [-74.500196, -22.134892],\n            [-74.500196, -23.582207],\n            [-81.736775, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -22.134892],\n            [-81.736775, -20.687576],\n            [-74.500196, -20.687576],\n            [-74.500196, -22.134892],\n            [-81.736775, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -20.687576],\n            [-81.736775, -19.24026],\n            [-74.500196, -19.24026],\n            [-74.500196, -20.687576],\n            [-81.736775, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -19.24026],\n            [-81.736775, -17.792944],\n            [-74.500196, -17.792944],\n            [-74.500196, -19.24026],\n            [-81.736775, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -17.792944],\n            [-81.736775, -16.345628],\n            [-74.500196, -16.345628],\n            [-74.500196, -17.792944],\n            [-81.736775, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -16.345628],\n            [-81.736775, -14.898312],\n            [-74.500196, -14.898312],\n            [-74.500196, -16.345628],\n            [-81.736775, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -14.898312],\n            [-81.736775, -13.450997],\n            [-74.500196, -13.450997],\n            [-74.500196, -14.898312],\n            [-81.736775, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -13.450997],\n            [-81.736775, -12.003681],\n            [-74.500196, -12.003681],\n            [-74.500196, -13.450997],\n            [-81.736775, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -12.003681],\n            [-81.736775, -10.556365],\n            [-74.500196, -10.556365],\n            [-74.500196, -12.003681],\n            [-81.736775, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -10.556365],\n            [-81.736775, -9.109049],\n            [-74.500196, -9.109049],\n            [-74.500196, -10.556365],\n            [-81.736775, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -9.109049],\n            [-81.736775, -7.661733],\n            [-74.500196, -7.661733],\n            [-74.500196, -9.109049],\n            [-81.736775, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -7.661733],\n            [-81.736775, -6.214417],\n            [-74.500196, -6.214417],\n            [-74.500196, -7.661733],\n            [-81.736775, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -6.214417],\n            [-81.736775, -4.767102],\n            [-74.500196, -4.767102],\n            [-74.500196, -6.214417],\n            [-81.736775, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -4.767102],\n            [-81.736775, -3.319786],\n            [-74.500196, -3.319786],\n            [-74.500196, -4.767102],\n            [-81.736775, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -3.319786],\n            [-81.736775, -1.87247],\n            [-74.500196, -1.87247],\n            [-74.500196, -3.319786],\n            [-81.736775, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -1.87247],\n            [-81.736775, -0.425154],\n            [-74.500196, -0.425154],\n            [-74.500196, -1.87247],\n            [-81.736775, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -0.425154],\n            [-81.736775, 1.022162],\n            [-74.500196, 1.022162],\n            [-74.500196, -0.425154],\n            [-81.736775, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 1.022162],\n            [-81.736775, 2.469478],\n            [-74.500196, 2.469478],\n            [-74.500196, 1.022162],\n            [-81.736775, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 2.469478],\n            [-81.736775, 3.916793],\n            [-74.500196, 3.916793],\n            [-74.500196, 2.469478],\n            [-81.736775, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 3.916793],\n            [-81.736775, 5.364109],\n            [-74.500196, 5.364109],\n            [-74.500196, 3.916793],\n            [-81.736775, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 5.364109],\n            [-81.736775, 6.811425],\n            [-74.500196, 6.811425],\n            [-74.500196, 5.364109],\n            [-81.736775, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 6.811425],\n            [-81.736775, 8.258741],\n            [-74.500196, 8.258741],\n            [-74.500196, 6.811425],\n            [-81.736775, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 8.258741],\n            [-81.736775, 9.706057],\n            [-74.500196, 9.706057],\n            [-74.500196, 8.258741],\n            [-81.736775, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 9.706057],\n            [-81.736775, 11.153373],\n            [-74.500196, 11.153373],\n            [-74.500196, 9.706057],\n            [-81.736775, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 11.153373],\n            [-81.736775, 12.600688],\n            [-74.500196, 12.600688],\n            [-74.500196, 11.153373],\n            [-81.736775, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 12.600688],\n            [-81.736775, 14.048004],\n            [-74.500196, 14.048004],\n            [-74.500196, 12.600688],\n            [-81.736775, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 14.048004],\n            [-81.736775, 15.49532],\n            [-74.500196, 15.49532],\n            [-74.500196, 14.048004],\n            [-81.736775, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 15.49532],\n            [-81.736775, 16.942636],\n            [-74.500196, 16.942636],\n            [-74.500196, 15.49532],\n            [-81.736775, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 16.942636],\n            [-81.736775, 18.389952],\n            [-74.500196, 18.389952],\n            [-74.500196, 16.942636],\n            [-81.736775, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 18.389952],\n            [-81.736775, 19.837268],\n            [-74.500196, 19.837268],\n            [-74.500196, 18.389952],\n            [-81.736775, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 19.837268],\n            [-81.736775, 21.284583],\n            [-74.500196, 21.284583],\n            [-74.500196, 19.837268],\n            [-81.736775, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 21.284583],\n            [-81.736775, 22.731899],\n            [-74.500196, 22.731899],\n            [-74.500196, 21.284583],\n            [-81.736775, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 22.731899],\n            [-81.736775, 24.179215],\n            [-74.500196, 24.179215],\n            [-74.500196, 22.731899],\n            [-81.736775, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 24.179215],\n            [-81.736775, 25.626531],\n            [-74.500196, 25.626531],\n            [-74.500196, 24.179215],\n            [-81.736775, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 25.626531],\n            [-81.736775, 27.073847],\n            [-74.500196, 27.073847],\n            [-74.500196, 25.626531],\n            [-81.736775, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 27.073847],\n            [-81.736775, 28.521163],\n            [-74.500196, 28.521163],\n            [-74.500196, 27.073847],\n            [-81.736775, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 28.521163],\n            [-81.736775, 29.968478],\n            [-74.500196, 29.968478],\n            [-74.500196, 28.521163],\n            [-81.736775, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 29.968478],\n            [-81.736775, 31.415794],\n            [-74.500196, 31.415794],\n            [-74.500196, 29.968478],\n            [-81.736775, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 31.415794],\n            [-81.736775, 32.86311],\n            [-74.500196, 32.86311],\n            [-74.500196, 31.415794],\n            [-81.736775, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 32.86311],\n            [-81.736775, 34.310426],\n            [-74.500196, 34.310426],\n            [-74.500196, 32.86311],\n            [-81.736775, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 34.310426],\n            [-81.736775, 35.757742],\n            [-74.500196, 35.757742],\n            [-74.500196, 34.310426],\n            [-81.736775, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 35.757742],\n            [-81.736775, 37.205058],\n            [-74.500196, 37.205058],\n            [-74.500196, 35.757742],\n            [-81.736775, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 37.205058],\n            [-81.736775, 38.652373],\n            [-74.500196, 38.652373],\n            [-74.500196, 37.205058],\n            [-81.736775, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 38.652373],\n            [-81.736775, 40.099689],\n            [-74.500196, 40.099689],\n            [-74.500196, 38.652373],\n            [-81.736775, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 40.099689],\n            [-81.736775, 41.547005],\n            [-74.500196, 41.547005],\n            [-74.500196, 40.099689],\n            [-81.736775, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 41.547005],\n            [-81.736775, 42.994321],\n            [-74.500196, 42.994321],\n            [-74.500196, 41.547005],\n            [-81.736775, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 42.994321],\n            [-81.736775, 44.441637],\n            [-74.500196, 44.441637],\n            [-74.500196, 42.994321],\n            [-81.736775, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 44.441637],\n            [-81.736775, 45.888952],\n            [-74.500196, 45.888952],\n            [-74.500196, 44.441637],\n            [-81.736775, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 45.888952],\n            [-81.736775, 47.336268],\n            [-74.500196, 47.336268],\n            [-74.500196, 45.888952],\n            [-81.736775, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 47.336268],\n            [-81.736775, 48.783584],\n            [-74.500196, 48.783584],\n            [-74.500196, 47.336268],\n            [-81.736775, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 48.783584],\n            [-81.736775, 50.2309],\n            [-74.500196, 50.2309],\n            [-74.500196, 48.783584],\n            [-81.736775, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 50.2309],\n            [-81.736775, 51.678216],\n            [-74.500196, 51.678216],\n            [-74.500196, 50.2309],\n            [-81.736775, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 51.678216],\n            [-81.736775, 53.125532],\n            [-74.500196, 53.125532],\n            [-74.500196, 51.678216],\n            [-81.736775, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 53.125532],\n            [-81.736775, 54.572847],\n            [-74.500196, 54.572847],\n            [-74.500196, 53.125532],\n            [-81.736775, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 54.572847],\n            [-81.736775, 56.020163],\n            [-74.500196, 56.020163],\n            [-74.500196, 54.572847],\n            [-81.736775, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 56.020163],\n            [-81.736775, 57.467479],\n            [-74.500196, 57.467479],\n            [-74.500196, 56.020163],\n            [-81.736775, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 57.467479],\n            [-81.736775, 58.914795],\n            [-74.500196, 58.914795],\n            [-74.500196, 57.467479],\n            [-81.736775, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 58.914795],\n            [-81.736775, 60.362111],\n            [-74.500196, 60.362111],\n            [-74.500196, 58.914795],\n            [-81.736775, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 60.362111],\n            [-81.736775, 61.809427],\n            [-74.500196, 61.809427],\n            [-74.500196, 60.362111],\n            [-81.736775, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 61.809427],\n            [-81.736775, 63.256742],\n            [-74.500196, 63.256742],\n            [-74.500196, 61.809427],\n            [-81.736775, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 63.256742],\n            [-81.736775, 64.704058],\n            [-74.500196, 64.704058],\n            [-74.500196, 63.256742],\n            [-81.736775, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 64.704058],\n            [-81.736775, 66.151374],\n            [-74.500196, 66.151374],\n            [-74.500196, 64.704058],\n            [-81.736775, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 66.151374],\n            [-81.736775, 67.59869],\n            [-74.500196, 67.59869],\n            [-74.500196, 66.151374],\n            [-81.736775, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 67.59869],\n            [-81.736775, 69.046006],\n            [-74.500196, 69.046006],\n            [-74.500196, 67.59869],\n            [-81.736775, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 69.046006],\n            [-81.736775, 70.493322],\n            [-74.500196, 70.493322],\n            [-74.500196, 69.046006],\n            [-81.736775, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 70.493322],\n            [-81.736775, 71.940637],\n            [-74.500196, 71.940637],\n            [-74.500196, 70.493322],\n            [-81.736775, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 71.940637],\n            [-81.736775, 73.387953],\n            [-74.500196, 73.387953],\n            [-74.500196, 71.940637],\n            [-81.736775, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 73.387953],\n            [-81.736775, 74.835269],\n            [-74.500196, 74.835269],\n            [-74.500196, 73.387953],\n            [-81.736775, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 74.835269],\n            [-81.736775, 76.282585],\n            [-74.500196, 76.282585],\n            [-74.500196, 74.835269],\n            [-81.736775, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 76.282585],\n            [-81.736775, 77.729901],\n            [-74.500196, 77.729901],\n            [-74.500196, 76.282585],\n            [-81.736775, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -80.027525],\n            [-74.500196, -78.580209],\n            [-67.263617, -78.580209],\n            [-67.263617, -80.027525],\n            [-74.500196, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -78.580209],\n            [-74.500196, -77.132893],\n            [-67.263617, -77.132893],\n            [-67.263617, -78.580209],\n            [-74.500196, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -77.132893],\n            [-74.500196, -75.685577],\n            [-67.263617, -75.685577],\n            [-67.263617, -77.132893],\n            [-74.500196, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -75.685577],\n            [-74.500196, -74.238262],\n            [-67.263617, -74.238262],\n            [-67.263617, -75.685577],\n            [-74.500196, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -74.238262],\n            [-74.500196, -72.790946],\n            [-67.263617, -72.790946],\n            [-67.263617, -74.238262],\n            [-74.500196, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -72.790946],\n            [-74.500196, -71.34363],\n            [-67.263617, -71.34363],\n            [-67.263617, -72.790946],\n            [-74.500196, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -71.34363],\n            [-74.500196, -69.896314],\n            [-67.263617, -69.896314],\n            [-67.263617, -71.34363],\n            [-74.500196, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -69.896314],\n            [-74.500196, -68.448998],\n            [-67.263617, -68.448998],\n            [-67.263617, -69.896314],\n            [-74.500196, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -68.448998],\n            [-74.500196, -67.001682],\n            [-67.263617, -67.001682],\n            [-67.263617, -68.448998],\n            [-74.500196, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -67.001682],\n            [-74.500196, -65.554367],\n            [-67.263617, -65.554367],\n            [-67.263617, -67.001682],\n            [-74.500196, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -65.554367],\n            [-74.500196, -64.107051],\n            [-67.263617, -64.107051],\n            [-67.263617, -65.554367],\n            [-74.500196, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -64.107051],\n            [-74.500196, -62.659735],\n            [-67.263617, -62.659735],\n            [-67.263617, -64.107051],\n            [-74.500196, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -62.659735],\n            [-74.500196, -61.212419],\n            [-67.263617, -61.212419],\n            [-67.263617, -62.659735],\n            [-74.500196, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -61.212419],\n            [-74.500196, -59.765103],\n            [-67.263617, -59.765103],\n            [-67.263617, -61.212419],\n            [-74.500196, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -59.765103],\n            [-74.500196, -58.317787],\n            [-67.263617, -58.317787],\n            [-67.263617, -59.765103],\n            [-74.500196, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -58.317787],\n            [-74.500196, -56.870472],\n            [-67.263617, -56.870472],\n            [-67.263617, -58.317787],\n            [-74.500196, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -56.870472],\n            [-74.500196, -55.423156],\n            [-67.263617, -55.423156],\n            [-67.263617, -56.870472],\n            [-74.500196, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -55.423156],\n            [-74.500196, -53.97584],\n            [-67.263617, -53.97584],\n            [-67.263617, -55.423156],\n            [-74.500196, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -53.97584],\n            [-74.500196, -52.528524],\n            [-67.263617, -52.528524],\n            [-67.263617, -53.97584],\n            [-74.500196, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -52.528524],\n            [-74.500196, -51.081208],\n            [-67.263617, -51.081208],\n            [-67.263617, -52.528524],\n            [-74.500196, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -51.081208],\n            [-74.500196, -49.633892],\n            [-67.263617, -49.633892],\n            [-67.263617, -51.081208],\n            [-74.500196, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -49.633892],\n            [-74.500196, -48.186577],\n            [-67.263617, -48.186577],\n            [-67.263617, -49.633892],\n            [-74.500196, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -48.186577],\n            [-74.500196, -46.739261],\n            [-67.263617, -46.739261],\n            [-67.263617, -48.186577],\n            [-74.500196, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -46.739261],\n            [-74.500196, -45.291945],\n            [-67.263617, -45.291945],\n            [-67.263617, -46.739261],\n            [-74.500196, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -45.291945],\n            [-74.500196, -43.844629],\n            [-67.263617, -43.844629],\n            [-67.263617, -45.291945],\n            [-74.500196, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -43.844629],\n            [-74.500196, -42.397313],\n            [-67.263617, -42.397313],\n            [-67.263617, -43.844629],\n            [-74.500196, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -42.397313],\n            [-74.500196, -40.949997],\n            [-67.263617, -40.949997],\n            [-67.263617, -42.397313],\n            [-74.500196, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -40.949997],\n            [-74.500196, -39.502682],\n            [-67.263617, -39.502682],\n            [-67.263617, -40.949997],\n            [-74.500196, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -39.502682],\n            [-74.500196, -38.055366],\n            [-67.263617, -38.055366],\n            [-67.263617, -39.502682],\n            [-74.500196, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -38.055366],\n            [-74.500196, -36.60805],\n            [-67.263617, -36.60805],\n            [-67.263617, -38.055366],\n            [-74.500196, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -36.60805],\n            [-74.500196, -35.160734],\n            [-67.263617, -35.160734],\n            [-67.263617, -36.60805],\n            [-74.500196, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -35.160734],\n            [-74.500196, -33.713418],\n            [-67.263617, -33.713418],\n            [-67.263617, -35.160734],\n            [-74.500196, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -33.713418],\n            [-74.500196, -32.266102],\n            [-67.263617, -32.266102],\n            [-67.263617, -33.713418],\n            [-74.500196, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -32.266102],\n            [-74.500196, -30.818787],\n            [-67.263617, -30.818787],\n            [-67.263617, -32.266102],\n            [-74.500196, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -30.818787],\n            [-74.500196, -29.371471],\n            [-67.263617, -29.371471],\n            [-67.263617, -30.818787],\n            [-74.500196, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -29.371471],\n            [-74.500196, -27.924155],\n            [-67.263617, -27.924155],\n            [-67.263617, -29.371471],\n            [-74.500196, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -27.924155],\n            [-74.500196, -26.476839],\n            [-67.263617, -26.476839],\n            [-67.263617, -27.924155],\n            [-74.500196, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -26.476839],\n            [-74.500196, -25.029523],\n            [-67.263617, -25.029523],\n            [-67.263617, -26.476839],\n            [-74.500196, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -25.029523],\n            [-74.500196, -23.582207],\n            [-67.263617, -23.582207],\n            [-67.263617, -25.029523],\n            [-74.500196, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -23.582207],\n            [-74.500196, -22.134892],\n            [-67.263617, -22.134892],\n            [-67.263617, -23.582207],\n            [-74.500196, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -22.134892],\n            [-74.500196, -20.687576],\n            [-67.263617, -20.687576],\n            [-67.263617, -22.134892],\n            [-74.500196, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -20.687576],\n            [-74.500196, -19.24026],\n            [-67.263617, -19.24026],\n            [-67.263617, -20.687576],\n            [-74.500196, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -19.24026],\n            [-74.500196, -17.792944],\n            [-67.263617, -17.792944],\n            [-67.263617, -19.24026],\n            [-74.500196, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -17.792944],\n            [-74.500196, -16.345628],\n            [-67.263617, -16.345628],\n            [-67.263617, -17.792944],\n            [-74.500196, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -16.345628],\n            [-74.500196, -14.898312],\n            [-67.263617, -14.898312],\n            [-67.263617, -16.345628],\n            [-74.500196, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -14.898312],\n            [-74.500196, -13.450997],\n            [-67.263617, -13.450997],\n            [-67.263617, -14.898312],\n            [-74.500196, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -13.450997],\n            [-74.500196, -12.003681],\n            [-67.263617, -12.003681],\n            [-67.263617, -13.450997],\n            [-74.500196, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -12.003681],\n            [-74.500196, -10.556365],\n            [-67.263617, -10.556365],\n            [-67.263617, -12.003681],\n            [-74.500196, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -10.556365],\n            [-74.500196, -9.109049],\n            [-67.263617, -9.109049],\n            [-67.263617, -10.556365],\n            [-74.500196, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -9.109049],\n            [-74.500196, -7.661733],\n            [-67.263617, -7.661733],\n            [-67.263617, -9.109049],\n            [-74.500196, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -7.661733],\n            [-74.500196, -6.214417],\n            [-67.263617, -6.214417],\n            [-67.263617, -7.661733],\n            [-74.500196, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -6.214417],\n            [-74.500196, -4.767102],\n            [-67.263617, -4.767102],\n            [-67.263617, -6.214417],\n            [-74.500196, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -4.767102],\n            [-74.500196, -3.319786],\n            [-67.263617, -3.319786],\n            [-67.263617, -4.767102],\n            [-74.500196, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -3.319786],\n            [-74.500196, -1.87247],\n            [-67.263617, -1.87247],\n            [-67.263617, -3.319786],\n            [-74.500196, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -1.87247],\n            [-74.500196, -0.425154],\n            [-67.263617, -0.425154],\n            [-67.263617, -1.87247],\n            [-74.500196, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -0.425154],\n            [-74.500196, 1.022162],\n            [-67.263617, 1.022162],\n            [-67.263617, -0.425154],\n            [-74.500196, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 1.022162],\n            [-74.500196, 2.469478],\n            [-67.263617, 2.469478],\n            [-67.263617, 1.022162],\n            [-74.500196, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 2.469478],\n            [-74.500196, 3.916793],\n            [-67.263617, 3.916793],\n            [-67.263617, 2.469478],\n            [-74.500196, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 3.916793],\n            [-74.500196, 5.364109],\n            [-67.263617, 5.364109],\n            [-67.263617, 3.916793],\n            [-74.500196, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 5.364109],\n            [-74.500196, 6.811425],\n            [-67.263617, 6.811425],\n            [-67.263617, 5.364109],\n            [-74.500196, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 6.811425],\n            [-74.500196, 8.258741],\n            [-67.263617, 8.258741],\n            [-67.263617, 6.811425],\n            [-74.500196, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 8.258741],\n            [-74.500196, 9.706057],\n            [-67.263617, 9.706057],\n            [-67.263617, 8.258741],\n            [-74.500196, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 9.706057],\n            [-74.500196, 11.153373],\n            [-67.263617, 11.153373],\n            [-67.263617, 9.706057],\n            [-74.500196, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 11.153373],\n            [-74.500196, 12.600688],\n            [-67.263617, 12.600688],\n            [-67.263617, 11.153373],\n            [-74.500196, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 12.600688],\n            [-74.500196, 14.048004],\n            [-67.263617, 14.048004],\n            [-67.263617, 12.600688],\n            [-74.500196, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 14.048004],\n            [-74.500196, 15.49532],\n            [-67.263617, 15.49532],\n            [-67.263617, 14.048004],\n            [-74.500196, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 15.49532],\n            [-74.500196, 16.942636],\n            [-67.263617, 16.942636],\n            [-67.263617, 15.49532],\n            [-74.500196, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 16.942636],\n            [-74.500196, 18.389952],\n            [-67.263617, 18.389952],\n            [-67.263617, 16.942636],\n            [-74.500196, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 18.389952],\n            [-74.500196, 19.837268],\n            [-67.263617, 19.837268],\n            [-67.263617, 18.389952],\n            [-74.500196, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 19.837268],\n            [-74.500196, 21.284583],\n            [-67.263617, 21.284583],\n            [-67.263617, 19.837268],\n            [-74.500196, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 21.284583],\n            [-74.500196, 22.731899],\n            [-67.263617, 22.731899],\n            [-67.263617, 21.284583],\n            [-74.500196, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 22.731899],\n            [-74.500196, 24.179215],\n            [-67.263617, 24.179215],\n            [-67.263617, 22.731899],\n            [-74.500196, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 24.179215],\n            [-74.500196, 25.626531],\n            [-67.263617, 25.626531],\n            [-67.263617, 24.179215],\n            [-74.500196, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 25.626531],\n            [-74.500196, 27.073847],\n            [-67.263617, 27.073847],\n            [-67.263617, 25.626531],\n            [-74.500196, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 27.073847],\n            [-74.500196, 28.521163],\n            [-67.263617, 28.521163],\n            [-67.263617, 27.073847],\n            [-74.500196, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 28.521163],\n            [-74.500196, 29.968478],\n            [-67.263617, 29.968478],\n            [-67.263617, 28.521163],\n            [-74.500196, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 29.968478],\n            [-74.500196, 31.415794],\n            [-67.263617, 31.415794],\n            [-67.263617, 29.968478],\n            [-74.500196, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 31.415794],\n            [-74.500196, 32.86311],\n            [-67.263617, 32.86311],\n            [-67.263617, 31.415794],\n            [-74.500196, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 32.86311],\n            [-74.500196, 34.310426],\n            [-67.263617, 34.310426],\n            [-67.263617, 32.86311],\n            [-74.500196, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 34.310426],\n            [-74.500196, 35.757742],\n            [-67.263617, 35.757742],\n            [-67.263617, 34.310426],\n            [-74.500196, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 35.757742],\n            [-74.500196, 37.205058],\n            [-67.263617, 37.205058],\n            [-67.263617, 35.757742],\n            [-74.500196, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 37.205058],\n            [-74.500196, 38.652373],\n            [-67.263617, 38.652373],\n            [-67.263617, 37.205058],\n            [-74.500196, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 38.652373],\n            [-74.500196, 40.099689],\n            [-67.263617, 40.099689],\n            [-67.263617, 38.652373],\n            [-74.500196, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 40.099689],\n            [-74.500196, 41.547005],\n            [-67.263617, 41.547005],\n            [-67.263617, 40.099689],\n            [-74.500196, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 41.547005],\n            [-74.500196, 42.994321],\n            [-67.263617, 42.994321],\n            [-67.263617, 41.547005],\n            [-74.500196, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 42.994321],\n            [-74.500196, 44.441637],\n            [-67.263617, 44.441637],\n            [-67.263617, 42.994321],\n            [-74.500196, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 44.441637],\n            [-74.500196, 45.888952],\n            [-67.263617, 45.888952],\n            [-67.263617, 44.441637],\n            [-74.500196, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 45.888952],\n            [-74.500196, 47.336268],\n            [-67.263617, 47.336268],\n            [-67.263617, 45.888952],\n            [-74.500196, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 47.336268],\n            [-74.500196, 48.783584],\n            [-67.263617, 48.783584],\n            [-67.263617, 47.336268],\n            [-74.500196, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 48.783584],\n            [-74.500196, 50.2309],\n            [-67.263617, 50.2309],\n            [-67.263617, 48.783584],\n            [-74.500196, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 50.2309],\n            [-74.500196, 51.678216],\n            [-67.263617, 51.678216],\n            [-67.263617, 50.2309],\n            [-74.500196, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 51.678216],\n            [-74.500196, 53.125532],\n            [-67.263617, 53.125532],\n            [-67.263617, 51.678216],\n            [-74.500196, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 53.125532],\n            [-74.500196, 54.572847],\n            [-67.263617, 54.572847],\n            [-67.263617, 53.125532],\n            [-74.500196, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 54.572847],\n            [-74.500196, 56.020163],\n            [-67.263617, 56.020163],\n            [-67.263617, 54.572847],\n            [-74.500196, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 56.020163],\n            [-74.500196, 57.467479],\n            [-67.263617, 57.467479],\n            [-67.263617, 56.020163],\n            [-74.500196, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 57.467479],\n            [-74.500196, 58.914795],\n            [-67.263617, 58.914795],\n            [-67.263617, 57.467479],\n            [-74.500196, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 58.914795],\n            [-74.500196, 60.362111],\n            [-67.263617, 60.362111],\n            [-67.263617, 58.914795],\n            [-74.500196, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 60.362111],\n            [-74.500196, 61.809427],\n            [-67.263617, 61.809427],\n            [-67.263617, 60.362111],\n            [-74.500196, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 61.809427],\n            [-74.500196, 63.256742],\n            [-67.263617, 63.256742],\n            [-67.263617, 61.809427],\n            [-74.500196, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 63.256742],\n            [-74.500196, 64.704058],\n            [-67.263617, 64.704058],\n            [-67.263617, 63.256742],\n            [-74.500196, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 64.704058],\n            [-74.500196, 66.151374],\n            [-67.263617, 66.151374],\n            [-67.263617, 64.704058],\n            [-74.500196, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 66.151374],\n            [-74.500196, 67.59869],\n            [-67.263617, 67.59869],\n            [-67.263617, 66.151374],\n            [-74.500196, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 67.59869],\n            [-74.500196, 69.046006],\n            [-67.263617, 69.046006],\n            [-67.263617, 67.59869],\n            [-74.500196, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 69.046006],\n            [-74.500196, 70.493322],\n            [-67.263617, 70.493322],\n            [-67.263617, 69.046006],\n            [-74.500196, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 70.493322],\n            [-74.500196, 71.940637],\n            [-67.263617, 71.940637],\n            [-67.263617, 70.493322],\n            [-74.500196, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 71.940637],\n            [-74.500196, 73.387953],\n            [-67.263617, 73.387953],\n            [-67.263617, 71.940637],\n            [-74.500196, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 73.387953],\n            [-74.500196, 74.835269],\n            [-67.263617, 74.835269],\n            [-67.263617, 73.387953],\n            [-74.500196, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 74.835269],\n            [-74.500196, 76.282585],\n            [-67.263617, 76.282585],\n            [-67.263617, 74.835269],\n            [-74.500196, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 76.282585],\n            [-74.500196, 77.729901],\n            [-67.263617, 77.729901],\n            [-67.263617, 76.282585],\n            [-74.500196, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -80.027525],\n            [-67.263617, -78.580209],\n            [-60.027038, -78.580209],\n            [-60.027038, -80.027525],\n            [-67.263617, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -78.580209],\n            [-67.263617, -77.132893],\n            [-60.027038, -77.132893],\n            [-60.027038, -78.580209],\n            [-67.263617, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -77.132893],\n            [-67.263617, -75.685577],\n            [-60.027038, -75.685577],\n            [-60.027038, -77.132893],\n            [-67.263617, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -75.685577],\n            [-67.263617, -74.238262],\n            [-60.027038, -74.238262],\n            [-60.027038, -75.685577],\n            [-67.263617, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -74.238262],\n            [-67.263617, -72.790946],\n            [-60.027038, -72.790946],\n            [-60.027038, -74.238262],\n            [-67.263617, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -72.790946],\n            [-67.263617, -71.34363],\n            [-60.027038, -71.34363],\n            [-60.027038, -72.790946],\n            [-67.263617, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -71.34363],\n            [-67.263617, -69.896314],\n            [-60.027038, -69.896314],\n            [-60.027038, -71.34363],\n            [-67.263617, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -69.896314],\n            [-67.263617, -68.448998],\n            [-60.027038, -68.448998],\n            [-60.027038, -69.896314],\n            [-67.263617, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -68.448998],\n            [-67.263617, -67.001682],\n            [-60.027038, -67.001682],\n            [-60.027038, -68.448998],\n            [-67.263617, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -67.001682],\n            [-67.263617, -65.554367],\n            [-60.027038, -65.554367],\n            [-60.027038, -67.001682],\n            [-67.263617, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -65.554367],\n            [-67.263617, -64.107051],\n            [-60.027038, -64.107051],\n            [-60.027038, -65.554367],\n            [-67.263617, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -64.107051],\n            [-67.263617, -62.659735],\n            [-60.027038, -62.659735],\n            [-60.027038, -64.107051],\n            [-67.263617, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -62.659735],\n            [-67.263617, -61.212419],\n            [-60.027038, -61.212419],\n            [-60.027038, -62.659735],\n            [-67.263617, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -61.212419],\n            [-67.263617, -59.765103],\n            [-60.027038, -59.765103],\n            [-60.027038, -61.212419],\n            [-67.263617, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -59.765103],\n            [-67.263617, -58.317787],\n            [-60.027038, -58.317787],\n            [-60.027038, -59.765103],\n            [-67.263617, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -58.317787],\n            [-67.263617, -56.870472],\n            [-60.027038, -56.870472],\n            [-60.027038, -58.317787],\n            [-67.263617, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -56.870472],\n            [-67.263617, -55.423156],\n            [-60.027038, -55.423156],\n            [-60.027038, -56.870472],\n            [-67.263617, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -55.423156],\n            [-67.263617, -53.97584],\n            [-60.027038, -53.97584],\n            [-60.027038, -55.423156],\n            [-67.263617, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -53.97584],\n            [-67.263617, -52.528524],\n            [-60.027038, -52.528524],\n            [-60.027038, -53.97584],\n            [-67.263617, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -52.528524],\n            [-67.263617, -51.081208],\n            [-60.027038, -51.081208],\n            [-60.027038, -52.528524],\n            [-67.263617, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -51.081208],\n            [-67.263617, -49.633892],\n            [-60.027038, -49.633892],\n            [-60.027038, -51.081208],\n            [-67.263617, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -49.633892],\n            [-67.263617, -48.186577],\n            [-60.027038, -48.186577],\n            [-60.027038, -49.633892],\n            [-67.263617, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -48.186577],\n            [-67.263617, -46.739261],\n            [-60.027038, -46.739261],\n            [-60.027038, -48.186577],\n            [-67.263617, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -46.739261],\n            [-67.263617, -45.291945],\n            [-60.027038, -45.291945],\n            [-60.027038, -46.739261],\n            [-67.263617, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -45.291945],\n            [-67.263617, -43.844629],\n            [-60.027038, -43.844629],\n            [-60.027038, -45.291945],\n            [-67.263617, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -43.844629],\n            [-67.263617, -42.397313],\n            [-60.027038, -42.397313],\n            [-60.027038, -43.844629],\n            [-67.263617, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -42.397313],\n            [-67.263617, -40.949997],\n            [-60.027038, -40.949997],\n            [-60.027038, -42.397313],\n            [-67.263617, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -40.949997],\n            [-67.263617, -39.502682],\n            [-60.027038, -39.502682],\n            [-60.027038, -40.949997],\n            [-67.263617, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -39.502682],\n            [-67.263617, -38.055366],\n            [-60.027038, -38.055366],\n            [-60.027038, -39.502682],\n            [-67.263617, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -38.055366],\n            [-67.263617, -36.60805],\n            [-60.027038, -36.60805],\n            [-60.027038, -38.055366],\n            [-67.263617, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -36.60805],\n            [-67.263617, -35.160734],\n            [-60.027038, -35.160734],\n            [-60.027038, -36.60805],\n            [-67.263617, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -35.160734],\n            [-67.263617, -33.713418],\n            [-60.027038, -33.713418],\n            [-60.027038, -35.160734],\n            [-67.263617, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -33.713418],\n            [-67.263617, -32.266102],\n            [-60.027038, -32.266102],\n            [-60.027038, -33.713418],\n            [-67.263617, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -32.266102],\n            [-67.263617, -30.818787],\n            [-60.027038, -30.818787],\n            [-60.027038, -32.266102],\n            [-67.263617, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -30.818787],\n            [-67.263617, -29.371471],\n            [-60.027038, -29.371471],\n            [-60.027038, -30.818787],\n            [-67.263617, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -29.371471],\n            [-67.263617, -27.924155],\n            [-60.027038, -27.924155],\n            [-60.027038, -29.371471],\n            [-67.263617, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -27.924155],\n            [-67.263617, -26.476839],\n            [-60.027038, -26.476839],\n            [-60.027038, -27.924155],\n            [-67.263617, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -26.476839],\n            [-67.263617, -25.029523],\n            [-60.027038, -25.029523],\n            [-60.027038, -26.476839],\n            [-67.263617, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -25.029523],\n            [-67.263617, -23.582207],\n            [-60.027038, -23.582207],\n            [-60.027038, -25.029523],\n            [-67.263617, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -23.582207],\n            [-67.263617, -22.134892],\n            [-60.027038, -22.134892],\n            [-60.027038, -23.582207],\n            [-67.263617, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -22.134892],\n            [-67.263617, -20.687576],\n            [-60.027038, -20.687576],\n            [-60.027038, -22.134892],\n            [-67.263617, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -20.687576],\n            [-67.263617, -19.24026],\n            [-60.027038, -19.24026],\n            [-60.027038, -20.687576],\n            [-67.263617, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -19.24026],\n            [-67.263617, -17.792944],\n            [-60.027038, -17.792944],\n            [-60.027038, -19.24026],\n            [-67.263617, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -17.792944],\n            [-67.263617, -16.345628],\n            [-60.027038, -16.345628],\n            [-60.027038, -17.792944],\n            [-67.263617, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -16.345628],\n            [-67.263617, -14.898312],\n            [-60.027038, -14.898312],\n            [-60.027038, -16.345628],\n            [-67.263617, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -14.898312],\n            [-67.263617, -13.450997],\n            [-60.027038, -13.450997],\n            [-60.027038, -14.898312],\n            [-67.263617, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -13.450997],\n            [-67.263617, -12.003681],\n            [-60.027038, -12.003681],\n            [-60.027038, -13.450997],\n            [-67.263617, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -12.003681],\n            [-67.263617, -10.556365],\n            [-60.027038, -10.556365],\n            [-60.027038, -12.003681],\n            [-67.263617, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -10.556365],\n            [-67.263617, -9.109049],\n            [-60.027038, -9.109049],\n            [-60.027038, -10.556365],\n            [-67.263617, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -9.109049],\n            [-67.263617, -7.661733],\n            [-60.027038, -7.661733],\n            [-60.027038, -9.109049],\n            [-67.263617, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -7.661733],\n            [-67.263617, -6.214417],\n            [-60.027038, -6.214417],\n            [-60.027038, -7.661733],\n            [-67.263617, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -6.214417],\n            [-67.263617, -4.767102],\n            [-60.027038, -4.767102],\n            [-60.027038, -6.214417],\n            [-67.263617, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -4.767102],\n            [-67.263617, -3.319786],\n            [-60.027038, -3.319786],\n            [-60.027038, -4.767102],\n            [-67.263617, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -3.319786],\n            [-67.263617, -1.87247],\n            [-60.027038, -1.87247],\n            [-60.027038, -3.319786],\n            [-67.263617, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -1.87247],\n            [-67.263617, -0.425154],\n            [-60.027038, -0.425154],\n            [-60.027038, -1.87247],\n            [-67.263617, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -0.425154],\n            [-67.263617, 1.022162],\n            [-60.027038, 1.022162],\n            [-60.027038, -0.425154],\n            [-67.263617, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 1.022162],\n            [-67.263617, 2.469478],\n            [-60.027038, 2.469478],\n            [-60.027038, 1.022162],\n            [-67.263617, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 2.469478],\n            [-67.263617, 3.916793],\n            [-60.027038, 3.916793],\n            [-60.027038, 2.469478],\n            [-67.263617, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 3.916793],\n            [-67.263617, 5.364109],\n            [-60.027038, 5.364109],\n            [-60.027038, 3.916793],\n            [-67.263617, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 5.364109],\n            [-67.263617, 6.811425],\n            [-60.027038, 6.811425],\n            [-60.027038, 5.364109],\n            [-67.263617, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 6.811425],\n            [-67.263617, 8.258741],\n            [-60.027038, 8.258741],\n            [-60.027038, 6.811425],\n            [-67.263617, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 8.258741],\n            [-67.263617, 9.706057],\n            [-60.027038, 9.706057],\n            [-60.027038, 8.258741],\n            [-67.263617, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 9.706057],\n            [-67.263617, 11.153373],\n            [-60.027038, 11.153373],\n            [-60.027038, 9.706057],\n            [-67.263617, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 11.153373],\n            [-67.263617, 12.600688],\n            [-60.027038, 12.600688],\n            [-60.027038, 11.153373],\n            [-67.263617, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 12.600688],\n            [-67.263617, 14.048004],\n            [-60.027038, 14.048004],\n            [-60.027038, 12.600688],\n            [-67.263617, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 14.048004],\n            [-67.263617, 15.49532],\n            [-60.027038, 15.49532],\n            [-60.027038, 14.048004],\n            [-67.263617, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 15.49532],\n            [-67.263617, 16.942636],\n            [-60.027038, 16.942636],\n            [-60.027038, 15.49532],\n            [-67.263617, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 16.942636],\n            [-67.263617, 18.389952],\n            [-60.027038, 18.389952],\n            [-60.027038, 16.942636],\n            [-67.263617, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 18.389952],\n            [-67.263617, 19.837268],\n            [-60.027038, 19.837268],\n            [-60.027038, 18.389952],\n            [-67.263617, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 19.837268],\n            [-67.263617, 21.284583],\n            [-60.027038, 21.284583],\n            [-60.027038, 19.837268],\n            [-67.263617, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 21.284583],\n            [-67.263617, 22.731899],\n            [-60.027038, 22.731899],\n            [-60.027038, 21.284583],\n            [-67.263617, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 22.731899],\n            [-67.263617, 24.179215],\n            [-60.027038, 24.179215],\n            [-60.027038, 22.731899],\n            [-67.263617, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 24.179215],\n            [-67.263617, 25.626531],\n            [-60.027038, 25.626531],\n            [-60.027038, 24.179215],\n            [-67.263617, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 25.626531],\n            [-67.263617, 27.073847],\n            [-60.027038, 27.073847],\n            [-60.027038, 25.626531],\n            [-67.263617, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 27.073847],\n            [-67.263617, 28.521163],\n            [-60.027038, 28.521163],\n            [-60.027038, 27.073847],\n            [-67.263617, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 28.521163],\n            [-67.263617, 29.968478],\n            [-60.027038, 29.968478],\n            [-60.027038, 28.521163],\n            [-67.263617, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 29.968478],\n            [-67.263617, 31.415794],\n            [-60.027038, 31.415794],\n            [-60.027038, 29.968478],\n            [-67.263617, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 31.415794],\n            [-67.263617, 32.86311],\n            [-60.027038, 32.86311],\n            [-60.027038, 31.415794],\n            [-67.263617, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 32.86311],\n            [-67.263617, 34.310426],\n            [-60.027038, 34.310426],\n            [-60.027038, 32.86311],\n            [-67.263617, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 34.310426],\n            [-67.263617, 35.757742],\n            [-60.027038, 35.757742],\n            [-60.027038, 34.310426],\n            [-67.263617, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 35.757742],\n            [-67.263617, 37.205058],\n            [-60.027038, 37.205058],\n            [-60.027038, 35.757742],\n            [-67.263617, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 37.205058],\n            [-67.263617, 38.652373],\n            [-60.027038, 38.652373],\n            [-60.027038, 37.205058],\n            [-67.263617, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 38.652373],\n            [-67.263617, 40.099689],\n            [-60.027038, 40.099689],\n            [-60.027038, 38.652373],\n            [-67.263617, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 40.099689],\n            [-67.263617, 41.547005],\n            [-60.027038, 41.547005],\n            [-60.027038, 40.099689],\n            [-67.263617, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 41.547005],\n            [-67.263617, 42.994321],\n            [-60.027038, 42.994321],\n            [-60.027038, 41.547005],\n            [-67.263617, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 42.994321],\n            [-67.263617, 44.441637],\n            [-60.027038, 44.441637],\n            [-60.027038, 42.994321],\n            [-67.263617, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 44.441637],\n            [-67.263617, 45.888952],\n            [-60.027038, 45.888952],\n            [-60.027038, 44.441637],\n            [-67.263617, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 45.888952],\n            [-67.263617, 47.336268],\n            [-60.027038, 47.336268],\n            [-60.027038, 45.888952],\n            [-67.263617, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 47.336268],\n            [-67.263617, 48.783584],\n            [-60.027038, 48.783584],\n            [-60.027038, 47.336268],\n            [-67.263617, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 48.783584],\n            [-67.263617, 50.2309],\n            [-60.027038, 50.2309],\n            [-60.027038, 48.783584],\n            [-67.263617, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 50.2309],\n            [-67.263617, 51.678216],\n            [-60.027038, 51.678216],\n            [-60.027038, 50.2309],\n            [-67.263617, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 51.678216],\n            [-67.263617, 53.125532],\n            [-60.027038, 53.125532],\n            [-60.027038, 51.678216],\n            [-67.263617, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 53.125532],\n            [-67.263617, 54.572847],\n            [-60.027038, 54.572847],\n            [-60.027038, 53.125532],\n            [-67.263617, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 54.572847],\n            [-67.263617, 56.020163],\n            [-60.027038, 56.020163],\n            [-60.027038, 54.572847],\n            [-67.263617, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 56.020163],\n            [-67.263617, 57.467479],\n            [-60.027038, 57.467479],\n            [-60.027038, 56.020163],\n            [-67.263617, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 57.467479],\n            [-67.263617, 58.914795],\n            [-60.027038, 58.914795],\n            [-60.027038, 57.467479],\n            [-67.263617, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 58.914795],\n            [-67.263617, 60.362111],\n            [-60.027038, 60.362111],\n            [-60.027038, 58.914795],\n            [-67.263617, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 60.362111],\n            [-67.263617, 61.809427],\n            [-60.027038, 61.809427],\n            [-60.027038, 60.362111],\n            [-67.263617, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 61.809427],\n            [-67.263617, 63.256742],\n            [-60.027038, 63.256742],\n            [-60.027038, 61.809427],\n            [-67.263617, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 63.256742],\n            [-67.263617, 64.704058],\n            [-60.027038, 64.704058],\n            [-60.027038, 63.256742],\n            [-67.263617, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 64.704058],\n            [-67.263617, 66.151374],\n            [-60.027038, 66.151374],\n            [-60.027038, 64.704058],\n            [-67.263617, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 66.151374],\n            [-67.263617, 67.59869],\n            [-60.027038, 67.59869],\n            [-60.027038, 66.151374],\n            [-67.263617, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 67.59869],\n            [-67.263617, 69.046006],\n            [-60.027038, 69.046006],\n            [-60.027038, 67.59869],\n            [-67.263617, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 69.046006],\n            [-67.263617, 70.493322],\n            [-60.027038, 70.493322],\n            [-60.027038, 69.046006],\n            [-67.263617, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 70.493322],\n            [-67.263617, 71.940637],\n            [-60.027038, 71.940637],\n            [-60.027038, 70.493322],\n            [-67.263617, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 71.940637],\n            [-67.263617, 73.387953],\n            [-60.027038, 73.387953],\n            [-60.027038, 71.940637],\n            [-67.263617, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 73.387953],\n            [-67.263617, 74.835269],\n            [-60.027038, 74.835269],\n            [-60.027038, 73.387953],\n            [-67.263617, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 74.835269],\n            [-67.263617, 76.282585],\n            [-60.027038, 76.282585],\n            [-60.027038, 74.835269],\n            [-67.263617, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 76.282585],\n            [-67.263617, 77.729901],\n            [-60.027038, 77.729901],\n            [-60.027038, 76.282585],\n            [-67.263617, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -80.027525],\n            [-60.027038, -78.580209],\n            [-52.790458, -78.580209],\n            [-52.790458, -80.027525],\n            [-60.027038, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -78.580209],\n            [-60.027038, -77.132893],\n            [-52.790458, -77.132893],\n            [-52.790458, -78.580209],\n            [-60.027038, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -77.132893],\n            [-60.027038, -75.685577],\n            [-52.790458, -75.685577],\n            [-52.790458, -77.132893],\n            [-60.027038, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -75.685577],\n            [-60.027038, -74.238262],\n            [-52.790458, -74.238262],\n            [-52.790458, -75.685577],\n            [-60.027038, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -74.238262],\n            [-60.027038, -72.790946],\n            [-52.790458, -72.790946],\n            [-52.790458, -74.238262],\n            [-60.027038, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -72.790946],\n            [-60.027038, -71.34363],\n            [-52.790458, -71.34363],\n            [-52.790458, -72.790946],\n            [-60.027038, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -71.34363],\n            [-60.027038, -69.896314],\n            [-52.790458, -69.896314],\n            [-52.790458, -71.34363],\n            [-60.027038, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -69.896314],\n            [-60.027038, -68.448998],\n            [-52.790458, -68.448998],\n            [-52.790458, -69.896314],\n            [-60.027038, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -68.448998],\n            [-60.027038, -67.001682],\n            [-52.790458, -67.001682],\n            [-52.790458, -68.448998],\n            [-60.027038, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -67.001682],\n            [-60.027038, -65.554367],\n            [-52.790458, -65.554367],\n            [-52.790458, -67.001682],\n            [-60.027038, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -65.554367],\n            [-60.027038, -64.107051],\n            [-52.790458, -64.107051],\n            [-52.790458, -65.554367],\n            [-60.027038, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -64.107051],\n            [-60.027038, -62.659735],\n            [-52.790458, -62.659735],\n            [-52.790458, -64.107051],\n            [-60.027038, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -62.659735],\n            [-60.027038, -61.212419],\n            [-52.790458, -61.212419],\n            [-52.790458, -62.659735],\n            [-60.027038, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -61.212419],\n            [-60.027038, -59.765103],\n            [-52.790458, -59.765103],\n            [-52.790458, -61.212419],\n            [-60.027038, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -59.765103],\n            [-60.027038, -58.317787],\n            [-52.790458, -58.317787],\n            [-52.790458, -59.765103],\n            [-60.027038, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -58.317787],\n            [-60.027038, -56.870472],\n            [-52.790458, -56.870472],\n            [-52.790458, -58.317787],\n            [-60.027038, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -56.870472],\n            [-60.027038, -55.423156],\n            [-52.790458, -55.423156],\n            [-52.790458, -56.870472],\n            [-60.027038, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -55.423156],\n            [-60.027038, -53.97584],\n            [-52.790458, -53.97584],\n            [-52.790458, -55.423156],\n            [-60.027038, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -53.97584],\n            [-60.027038, -52.528524],\n            [-52.790458, -52.528524],\n            [-52.790458, -53.97584],\n            [-60.027038, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -52.528524],\n            [-60.027038, -51.081208],\n            [-52.790458, -51.081208],\n            [-52.790458, -52.528524],\n            [-60.027038, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -51.081208],\n            [-60.027038, -49.633892],\n            [-52.790458, -49.633892],\n            [-52.790458, -51.081208],\n            [-60.027038, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -49.633892],\n            [-60.027038, -48.186577],\n            [-52.790458, -48.186577],\n            [-52.790458, -49.633892],\n            [-60.027038, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -48.186577],\n            [-60.027038, -46.739261],\n            [-52.790458, -46.739261],\n            [-52.790458, -48.186577],\n            [-60.027038, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -46.739261],\n            [-60.027038, -45.291945],\n            [-52.790458, -45.291945],\n            [-52.790458, -46.739261],\n            [-60.027038, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -45.291945],\n            [-60.027038, -43.844629],\n            [-52.790458, -43.844629],\n            [-52.790458, -45.291945],\n            [-60.027038, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -43.844629],\n            [-60.027038, -42.397313],\n            [-52.790458, -42.397313],\n            [-52.790458, -43.844629],\n            [-60.027038, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -42.397313],\n            [-60.027038, -40.949997],\n            [-52.790458, -40.949997],\n            [-52.790458, -42.397313],\n            [-60.027038, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -40.949997],\n            [-60.027038, -39.502682],\n            [-52.790458, -39.502682],\n            [-52.790458, -40.949997],\n            [-60.027038, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -39.502682],\n            [-60.027038, -38.055366],\n            [-52.790458, -38.055366],\n            [-52.790458, -39.502682],\n            [-60.027038, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -38.055366],\n            [-60.027038, -36.60805],\n            [-52.790458, -36.60805],\n            [-52.790458, -38.055366],\n            [-60.027038, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -36.60805],\n            [-60.027038, -35.160734],\n            [-52.790458, -35.160734],\n            [-52.790458, -36.60805],\n            [-60.027038, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -35.160734],\n            [-60.027038, -33.713418],\n            [-52.790458, -33.713418],\n            [-52.790458, -35.160734],\n            [-60.027038, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -33.713418],\n            [-60.027038, -32.266102],\n            [-52.790458, -32.266102],\n            [-52.790458, -33.713418],\n            [-60.027038, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -32.266102],\n            [-60.027038, -30.818787],\n            [-52.790458, -30.818787],\n            [-52.790458, -32.266102],\n            [-60.027038, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -30.818787],\n            [-60.027038, -29.371471],\n            [-52.790458, -29.371471],\n            [-52.790458, -30.818787],\n            [-60.027038, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -29.371471],\n            [-60.027038, -27.924155],\n            [-52.790458, -27.924155],\n            [-52.790458, -29.371471],\n            [-60.027038, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -27.924155],\n            [-60.027038, -26.476839],\n            [-52.790458, -26.476839],\n            [-52.790458, -27.924155],\n            [-60.027038, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -26.476839],\n            [-60.027038, -25.029523],\n            [-52.790458, -25.029523],\n            [-52.790458, -26.476839],\n            [-60.027038, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -25.029523],\n            [-60.027038, -23.582207],\n            [-52.790458, -23.582207],\n            [-52.790458, -25.029523],\n            [-60.027038, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -23.582207],\n            [-60.027038, -22.134892],\n            [-52.790458, -22.134892],\n            [-52.790458, -23.582207],\n            [-60.027038, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -22.134892],\n            [-60.027038, -20.687576],\n            [-52.790458, -20.687576],\n            [-52.790458, -22.134892],\n            [-60.027038, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -20.687576],\n            [-60.027038, -19.24026],\n            [-52.790458, -19.24026],\n            [-52.790458, -20.687576],\n            [-60.027038, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -19.24026],\n            [-60.027038, -17.792944],\n            [-52.790458, -17.792944],\n            [-52.790458, -19.24026],\n            [-60.027038, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -17.792944],\n            [-60.027038, -16.345628],\n            [-52.790458, -16.345628],\n            [-52.790458, -17.792944],\n            [-60.027038, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -16.345628],\n            [-60.027038, -14.898312],\n            [-52.790458, -14.898312],\n            [-52.790458, -16.345628],\n            [-60.027038, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -14.898312],\n            [-60.027038, -13.450997],\n            [-52.790458, -13.450997],\n            [-52.790458, -14.898312],\n            [-60.027038, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -13.450997],\n            [-60.027038, -12.003681],\n            [-52.790458, -12.003681],\n            [-52.790458, -13.450997],\n            [-60.027038, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -12.003681],\n            [-60.027038, -10.556365],\n            [-52.790458, -10.556365],\n            [-52.790458, -12.003681],\n            [-60.027038, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -10.556365],\n            [-60.027038, -9.109049],\n            [-52.790458, -9.109049],\n            [-52.790458, -10.556365],\n            [-60.027038, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -9.109049],\n            [-60.027038, -7.661733],\n            [-52.790458, -7.661733],\n            [-52.790458, -9.109049],\n            [-60.027038, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -7.661733],\n            [-60.027038, -6.214417],\n            [-52.790458, -6.214417],\n            [-52.790458, -7.661733],\n            [-60.027038, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -6.214417],\n            [-60.027038, -4.767102],\n            [-52.790458, -4.767102],\n            [-52.790458, -6.214417],\n            [-60.027038, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -4.767102],\n            [-60.027038, -3.319786],\n            [-52.790458, -3.319786],\n            [-52.790458, -4.767102],\n            [-60.027038, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -3.319786],\n            [-60.027038, -1.87247],\n            [-52.790458, -1.87247],\n            [-52.790458, -3.319786],\n            [-60.027038, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -1.87247],\n            [-60.027038, -0.425154],\n            [-52.790458, -0.425154],\n            [-52.790458, -1.87247],\n            [-60.027038, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -0.425154],\n            [-60.027038, 1.022162],\n            [-52.790458, 1.022162],\n            [-52.790458, -0.425154],\n            [-60.027038, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 1.022162],\n            [-60.027038, 2.469478],\n            [-52.790458, 2.469478],\n            [-52.790458, 1.022162],\n            [-60.027038, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 2.469478],\n            [-60.027038, 3.916793],\n            [-52.790458, 3.916793],\n            [-52.790458, 2.469478],\n            [-60.027038, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 3.916793],\n            [-60.027038, 5.364109],\n            [-52.790458, 5.364109],\n            [-52.790458, 3.916793],\n            [-60.027038, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 5.364109],\n            [-60.027038, 6.811425],\n            [-52.790458, 6.811425],\n            [-52.790458, 5.364109],\n            [-60.027038, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 6.811425],\n            [-60.027038, 8.258741],\n            [-52.790458, 8.258741],\n            [-52.790458, 6.811425],\n            [-60.027038, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 8.258741],\n            [-60.027038, 9.706057],\n            [-52.790458, 9.706057],\n            [-52.790458, 8.258741],\n            [-60.027038, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 9.706057],\n            [-60.027038, 11.153373],\n            [-52.790458, 11.153373],\n            [-52.790458, 9.706057],\n            [-60.027038, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 11.153373],\n            [-60.027038, 12.600688],\n            [-52.790458, 12.600688],\n            [-52.790458, 11.153373],\n            [-60.027038, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 12.600688],\n            [-60.027038, 14.048004],\n            [-52.790458, 14.048004],\n            [-52.790458, 12.600688],\n            [-60.027038, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 14.048004],\n            [-60.027038, 15.49532],\n            [-52.790458, 15.49532],\n            [-52.790458, 14.048004],\n            [-60.027038, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 15.49532],\n            [-60.027038, 16.942636],\n            [-52.790458, 16.942636],\n            [-52.790458, 15.49532],\n            [-60.027038, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 16.942636],\n            [-60.027038, 18.389952],\n            [-52.790458, 18.389952],\n            [-52.790458, 16.942636],\n            [-60.027038, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 18.389952],\n            [-60.027038, 19.837268],\n            [-52.790458, 19.837268],\n            [-52.790458, 18.389952],\n            [-60.027038, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 19.837268],\n            [-60.027038, 21.284583],\n            [-52.790458, 21.284583],\n            [-52.790458, 19.837268],\n            [-60.027038, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 21.284583],\n            [-60.027038, 22.731899],\n            [-52.790458, 22.731899],\n            [-52.790458, 21.284583],\n            [-60.027038, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 22.731899],\n            [-60.027038, 24.179215],\n            [-52.790458, 24.179215],\n            [-52.790458, 22.731899],\n            [-60.027038, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 24.179215],\n            [-60.027038, 25.626531],\n            [-52.790458, 25.626531],\n            [-52.790458, 24.179215],\n            [-60.027038, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 25.626531],\n            [-60.027038, 27.073847],\n            [-52.790458, 27.073847],\n            [-52.790458, 25.626531],\n            [-60.027038, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 27.073847],\n            [-60.027038, 28.521163],\n            [-52.790458, 28.521163],\n            [-52.790458, 27.073847],\n            [-60.027038, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 28.521163],\n            [-60.027038, 29.968478],\n            [-52.790458, 29.968478],\n            [-52.790458, 28.521163],\n            [-60.027038, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 29.968478],\n            [-60.027038, 31.415794],\n            [-52.790458, 31.415794],\n            [-52.790458, 29.968478],\n            [-60.027038, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 31.415794],\n            [-60.027038, 32.86311],\n            [-52.790458, 32.86311],\n            [-52.790458, 31.415794],\n            [-60.027038, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 32.86311],\n            [-60.027038, 34.310426],\n            [-52.790458, 34.310426],\n            [-52.790458, 32.86311],\n            [-60.027038, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 34.310426],\n            [-60.027038, 35.757742],\n            [-52.790458, 35.757742],\n            [-52.790458, 34.310426],\n            [-60.027038, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 35.757742],\n            [-60.027038, 37.205058],\n            [-52.790458, 37.205058],\n            [-52.790458, 35.757742],\n            [-60.027038, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 37.205058],\n            [-60.027038, 38.652373],\n            [-52.790458, 38.652373],\n            [-52.790458, 37.205058],\n            [-60.027038, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 38.652373],\n            [-60.027038, 40.099689],\n            [-52.790458, 40.099689],\n            [-52.790458, 38.652373],\n            [-60.027038, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 40.099689],\n            [-60.027038, 41.547005],\n            [-52.790458, 41.547005],\n            [-52.790458, 40.099689],\n            [-60.027038, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 41.547005],\n            [-60.027038, 42.994321],\n            [-52.790458, 42.994321],\n            [-52.790458, 41.547005],\n            [-60.027038, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 42.994321],\n            [-60.027038, 44.441637],\n            [-52.790458, 44.441637],\n            [-52.790458, 42.994321],\n            [-60.027038, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 44.441637],\n            [-60.027038, 45.888952],\n            [-52.790458, 45.888952],\n            [-52.790458, 44.441637],\n            [-60.027038, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 45.888952],\n            [-60.027038, 47.336268],\n            [-52.790458, 47.336268],\n            [-52.790458, 45.888952],\n            [-60.027038, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 47.336268],\n            [-60.027038, 48.783584],\n            [-52.790458, 48.783584],\n            [-52.790458, 47.336268],\n            [-60.027038, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 48.783584],\n            [-60.027038, 50.2309],\n            [-52.790458, 50.2309],\n            [-52.790458, 48.783584],\n            [-60.027038, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 50.2309],\n            [-60.027038, 51.678216],\n            [-52.790458, 51.678216],\n            [-52.790458, 50.2309],\n            [-60.027038, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 51.678216],\n            [-60.027038, 53.125532],\n            [-52.790458, 53.125532],\n            [-52.790458, 51.678216],\n            [-60.027038, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 53.125532],\n            [-60.027038, 54.572847],\n            [-52.790458, 54.572847],\n            [-52.790458, 53.125532],\n            [-60.027038, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 54.572847],\n            [-60.027038, 56.020163],\n            [-52.790458, 56.020163],\n            [-52.790458, 54.572847],\n            [-60.027038, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 56.020163],\n            [-60.027038, 57.467479],\n            [-52.790458, 57.467479],\n            [-52.790458, 56.020163],\n            [-60.027038, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 57.467479],\n            [-60.027038, 58.914795],\n            [-52.790458, 58.914795],\n            [-52.790458, 57.467479],\n            [-60.027038, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 58.914795],\n            [-60.027038, 60.362111],\n            [-52.790458, 60.362111],\n            [-52.790458, 58.914795],\n            [-60.027038, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 60.362111],\n            [-60.027038, 61.809427],\n            [-52.790458, 61.809427],\n            [-52.790458, 60.362111],\n            [-60.027038, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 61.809427],\n            [-60.027038, 63.256742],\n            [-52.790458, 63.256742],\n            [-52.790458, 61.809427],\n            [-60.027038, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 63.256742],\n            [-60.027038, 64.704058],\n            [-52.790458, 64.704058],\n            [-52.790458, 63.256742],\n            [-60.027038, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 64.704058],\n            [-60.027038, 66.151374],\n            [-52.790458, 66.151374],\n            [-52.790458, 64.704058],\n            [-60.027038, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 66.151374],\n            [-60.027038, 67.59869],\n            [-52.790458, 67.59869],\n            [-52.790458, 66.151374],\n            [-60.027038, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 67.59869],\n            [-60.027038, 69.046006],\n            [-52.790458, 69.046006],\n            [-52.790458, 67.59869],\n            [-60.027038, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 69.046006],\n            [-60.027038, 70.493322],\n            [-52.790458, 70.493322],\n            [-52.790458, 69.046006],\n            [-60.027038, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 70.493322],\n            [-60.027038, 71.940637],\n            [-52.790458, 71.940637],\n            [-52.790458, 70.493322],\n            [-60.027038, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 71.940637],\n            [-60.027038, 73.387953],\n            [-52.790458, 73.387953],\n            [-52.790458, 71.940637],\n            [-60.027038, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 73.387953],\n            [-60.027038, 74.835269],\n            [-52.790458, 74.835269],\n            [-52.790458, 73.387953],\n            [-60.027038, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 74.835269],\n            [-60.027038, 76.282585],\n            [-52.790458, 76.282585],\n            [-52.790458, 74.835269],\n            [-60.027038, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 76.282585],\n            [-60.027038, 77.729901],\n            [-52.790458, 77.729901],\n            [-52.790458, 76.282585],\n            [-60.027038, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -80.027525],\n            [-52.790458, -78.580209],\n            [-45.553879, -78.580209],\n            [-45.553879, -80.027525],\n            [-52.790458, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -78.580209],\n            [-52.790458, -77.132893],\n            [-45.553879, -77.132893],\n            [-45.553879, -78.580209],\n            [-52.790458, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -77.132893],\n            [-52.790458, -75.685577],\n            [-45.553879, -75.685577],\n            [-45.553879, -77.132893],\n            [-52.790458, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -75.685577],\n            [-52.790458, -74.238262],\n            [-45.553879, -74.238262],\n            [-45.553879, -75.685577],\n            [-52.790458, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -74.238262],\n            [-52.790458, -72.790946],\n            [-45.553879, -72.790946],\n            [-45.553879, -74.238262],\n            [-52.790458, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -72.790946],\n            [-52.790458, -71.34363],\n            [-45.553879, -71.34363],\n            [-45.553879, -72.790946],\n            [-52.790458, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -71.34363],\n            [-52.790458, -69.896314],\n            [-45.553879, -69.896314],\n            [-45.553879, -71.34363],\n            [-52.790458, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -69.896314],\n            [-52.790458, -68.448998],\n            [-45.553879, -68.448998],\n            [-45.553879, -69.896314],\n            [-52.790458, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -68.448998],\n            [-52.790458, -67.001682],\n            [-45.553879, -67.001682],\n            [-45.553879, -68.448998],\n            [-52.790458, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -67.001682],\n            [-52.790458, -65.554367],\n            [-45.553879, -65.554367],\n            [-45.553879, -67.001682],\n            [-52.790458, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -65.554367],\n            [-52.790458, -64.107051],\n            [-45.553879, -64.107051],\n            [-45.553879, -65.554367],\n            [-52.790458, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -64.107051],\n            [-52.790458, -62.659735],\n            [-45.553879, -62.659735],\n            [-45.553879, -64.107051],\n            [-52.790458, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -62.659735],\n            [-52.790458, -61.212419],\n            [-45.553879, -61.212419],\n            [-45.553879, -62.659735],\n            [-52.790458, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -61.212419],\n            [-52.790458, -59.765103],\n            [-45.553879, -59.765103],\n            [-45.553879, -61.212419],\n            [-52.790458, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -59.765103],\n            [-52.790458, -58.317787],\n            [-45.553879, -58.317787],\n            [-45.553879, -59.765103],\n            [-52.790458, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -58.317787],\n            [-52.790458, -56.870472],\n            [-45.553879, -56.870472],\n            [-45.553879, -58.317787],\n            [-52.790458, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -56.870472],\n            [-52.790458, -55.423156],\n            [-45.553879, -55.423156],\n            [-45.553879, -56.870472],\n            [-52.790458, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -55.423156],\n            [-52.790458, -53.97584],\n            [-45.553879, -53.97584],\n            [-45.553879, -55.423156],\n            [-52.790458, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -53.97584],\n            [-52.790458, -52.528524],\n            [-45.553879, -52.528524],\n            [-45.553879, -53.97584],\n            [-52.790458, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -52.528524],\n            [-52.790458, -51.081208],\n            [-45.553879, -51.081208],\n            [-45.553879, -52.528524],\n            [-52.790458, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -51.081208],\n            [-52.790458, -49.633892],\n            [-45.553879, -49.633892],\n            [-45.553879, -51.081208],\n            [-52.790458, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -49.633892],\n            [-52.790458, -48.186577],\n            [-45.553879, -48.186577],\n            [-45.553879, -49.633892],\n            [-52.790458, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -48.186577],\n            [-52.790458, -46.739261],\n            [-45.553879, -46.739261],\n            [-45.553879, -48.186577],\n            [-52.790458, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -46.739261],\n            [-52.790458, -45.291945],\n            [-45.553879, -45.291945],\n            [-45.553879, -46.739261],\n            [-52.790458, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -45.291945],\n            [-52.790458, -43.844629],\n            [-45.553879, -43.844629],\n            [-45.553879, -45.291945],\n            [-52.790458, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -43.844629],\n            [-52.790458, -42.397313],\n            [-45.553879, -42.397313],\n            [-45.553879, -43.844629],\n            [-52.790458, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -42.397313],\n            [-52.790458, -40.949997],\n            [-45.553879, -40.949997],\n            [-45.553879, -42.397313],\n            [-52.790458, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -40.949997],\n            [-52.790458, -39.502682],\n            [-45.553879, -39.502682],\n            [-45.553879, -40.949997],\n            [-52.790458, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -39.502682],\n            [-52.790458, -38.055366],\n            [-45.553879, -38.055366],\n            [-45.553879, -39.502682],\n            [-52.790458, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -38.055366],\n            [-52.790458, -36.60805],\n            [-45.553879, -36.60805],\n            [-45.553879, -38.055366],\n            [-52.790458, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -36.60805],\n            [-52.790458, -35.160734],\n            [-45.553879, -35.160734],\n            [-45.553879, -36.60805],\n            [-52.790458, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -35.160734],\n            [-52.790458, -33.713418],\n            [-45.553879, -33.713418],\n            [-45.553879, -35.160734],\n            [-52.790458, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -33.713418],\n            [-52.790458, -32.266102],\n            [-45.553879, -32.266102],\n            [-45.553879, -33.713418],\n            [-52.790458, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -32.266102],\n            [-52.790458, -30.818787],\n            [-45.553879, -30.818787],\n            [-45.553879, -32.266102],\n            [-52.790458, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -30.818787],\n            [-52.790458, -29.371471],\n            [-45.553879, -29.371471],\n            [-45.553879, -30.818787],\n            [-52.790458, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -29.371471],\n            [-52.790458, -27.924155],\n            [-45.553879, -27.924155],\n            [-45.553879, -29.371471],\n            [-52.790458, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -27.924155],\n            [-52.790458, -26.476839],\n            [-45.553879, -26.476839],\n            [-45.553879, -27.924155],\n            [-52.790458, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -26.476839],\n            [-52.790458, -25.029523],\n            [-45.553879, -25.029523],\n            [-45.553879, -26.476839],\n            [-52.790458, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -25.029523],\n            [-52.790458, -23.582207],\n            [-45.553879, -23.582207],\n            [-45.553879, -25.029523],\n            [-52.790458, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -23.582207],\n            [-52.790458, -22.134892],\n            [-45.553879, -22.134892],\n            [-45.553879, -23.582207],\n            [-52.790458, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -22.134892],\n            [-52.790458, -20.687576],\n            [-45.553879, -20.687576],\n            [-45.553879, -22.134892],\n            [-52.790458, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -20.687576],\n            [-52.790458, -19.24026],\n            [-45.553879, -19.24026],\n            [-45.553879, -20.687576],\n            [-52.790458, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -19.24026],\n            [-52.790458, -17.792944],\n            [-45.553879, -17.792944],\n            [-45.553879, -19.24026],\n            [-52.790458, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -17.792944],\n            [-52.790458, -16.345628],\n            [-45.553879, -16.345628],\n            [-45.553879, -17.792944],\n            [-52.790458, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -16.345628],\n            [-52.790458, -14.898312],\n            [-45.553879, -14.898312],\n            [-45.553879, -16.345628],\n            [-52.790458, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -14.898312],\n            [-52.790458, -13.450997],\n            [-45.553879, -13.450997],\n            [-45.553879, -14.898312],\n            [-52.790458, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -13.450997],\n            [-52.790458, -12.003681],\n            [-45.553879, -12.003681],\n            [-45.553879, -13.450997],\n            [-52.790458, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -12.003681],\n            [-52.790458, -10.556365],\n            [-45.553879, -10.556365],\n            [-45.553879, -12.003681],\n            [-52.790458, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -10.556365],\n            [-52.790458, -9.109049],\n            [-45.553879, -9.109049],\n            [-45.553879, -10.556365],\n            [-52.790458, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -9.109049],\n            [-52.790458, -7.661733],\n            [-45.553879, -7.661733],\n            [-45.553879, -9.109049],\n            [-52.790458, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -7.661733],\n            [-52.790458, -6.214417],\n            [-45.553879, -6.214417],\n            [-45.553879, -7.661733],\n            [-52.790458, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -6.214417],\n            [-52.790458, -4.767102],\n            [-45.553879, -4.767102],\n            [-45.553879, -6.214417],\n            [-52.790458, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -4.767102],\n            [-52.790458, -3.319786],\n            [-45.553879, -3.319786],\n            [-45.553879, -4.767102],\n            [-52.790458, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -3.319786],\n            [-52.790458, -1.87247],\n            [-45.553879, -1.87247],\n            [-45.553879, -3.319786],\n            [-52.790458, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -1.87247],\n            [-52.790458, -0.425154],\n            [-45.553879, -0.425154],\n            [-45.553879, -1.87247],\n            [-52.790458, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -0.425154],\n            [-52.790458, 1.022162],\n            [-45.553879, 1.022162],\n            [-45.553879, -0.425154],\n            [-52.790458, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 1.022162],\n            [-52.790458, 2.469478],\n            [-45.553879, 2.469478],\n            [-45.553879, 1.022162],\n            [-52.790458, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 2.469478],\n            [-52.790458, 3.916793],\n            [-45.553879, 3.916793],\n            [-45.553879, 2.469478],\n            [-52.790458, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 3.916793],\n            [-52.790458, 5.364109],\n            [-45.553879, 5.364109],\n            [-45.553879, 3.916793],\n            [-52.790458, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 5.364109],\n            [-52.790458, 6.811425],\n            [-45.553879, 6.811425],\n            [-45.553879, 5.364109],\n            [-52.790458, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 6.811425],\n            [-52.790458, 8.258741],\n            [-45.553879, 8.258741],\n            [-45.553879, 6.811425],\n            [-52.790458, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 8.258741],\n            [-52.790458, 9.706057],\n            [-45.553879, 9.706057],\n            [-45.553879, 8.258741],\n            [-52.790458, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 9.706057],\n            [-52.790458, 11.153373],\n            [-45.553879, 11.153373],\n            [-45.553879, 9.706057],\n            [-52.790458, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 11.153373],\n            [-52.790458, 12.600688],\n            [-45.553879, 12.600688],\n            [-45.553879, 11.153373],\n            [-52.790458, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 12.600688],\n            [-52.790458, 14.048004],\n            [-45.553879, 14.048004],\n            [-45.553879, 12.600688],\n            [-52.790458, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 14.048004],\n            [-52.790458, 15.49532],\n            [-45.553879, 15.49532],\n            [-45.553879, 14.048004],\n            [-52.790458, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 15.49532],\n            [-52.790458, 16.942636],\n            [-45.553879, 16.942636],\n            [-45.553879, 15.49532],\n            [-52.790458, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 16.942636],\n            [-52.790458, 18.389952],\n            [-45.553879, 18.389952],\n            [-45.553879, 16.942636],\n            [-52.790458, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 18.389952],\n            [-52.790458, 19.837268],\n            [-45.553879, 19.837268],\n            [-45.553879, 18.389952],\n            [-52.790458, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 19.837268],\n            [-52.790458, 21.284583],\n            [-45.553879, 21.284583],\n            [-45.553879, 19.837268],\n            [-52.790458, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 21.284583],\n            [-52.790458, 22.731899],\n            [-45.553879, 22.731899],\n            [-45.553879, 21.284583],\n            [-52.790458, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 22.731899],\n            [-52.790458, 24.179215],\n            [-45.553879, 24.179215],\n            [-45.553879, 22.731899],\n            [-52.790458, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 24.179215],\n            [-52.790458, 25.626531],\n            [-45.553879, 25.626531],\n            [-45.553879, 24.179215],\n            [-52.790458, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 25.626531],\n            [-52.790458, 27.073847],\n            [-45.553879, 27.073847],\n            [-45.553879, 25.626531],\n            [-52.790458, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 27.073847],\n            [-52.790458, 28.521163],\n            [-45.553879, 28.521163],\n            [-45.553879, 27.073847],\n            [-52.790458, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 28.521163],\n            [-52.790458, 29.968478],\n            [-45.553879, 29.968478],\n            [-45.553879, 28.521163],\n            [-52.790458, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 29.968478],\n            [-52.790458, 31.415794],\n            [-45.553879, 31.415794],\n            [-45.553879, 29.968478],\n            [-52.790458, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 31.415794],\n            [-52.790458, 32.86311],\n            [-45.553879, 32.86311],\n            [-45.553879, 31.415794],\n            [-52.790458, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 32.86311],\n            [-52.790458, 34.310426],\n            [-45.553879, 34.310426],\n            [-45.553879, 32.86311],\n            [-52.790458, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 34.310426],\n            [-52.790458, 35.757742],\n            [-45.553879, 35.757742],\n            [-45.553879, 34.310426],\n            [-52.790458, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 35.757742],\n            [-52.790458, 37.205058],\n            [-45.553879, 37.205058],\n            [-45.553879, 35.757742],\n            [-52.790458, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 37.205058],\n            [-52.790458, 38.652373],\n            [-45.553879, 38.652373],\n            [-45.553879, 37.205058],\n            [-52.790458, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 38.652373],\n            [-52.790458, 40.099689],\n            [-45.553879, 40.099689],\n            [-45.553879, 38.652373],\n            [-52.790458, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 40.099689],\n            [-52.790458, 41.547005],\n            [-45.553879, 41.547005],\n            [-45.553879, 40.099689],\n            [-52.790458, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 41.547005],\n            [-52.790458, 42.994321],\n            [-45.553879, 42.994321],\n            [-45.553879, 41.547005],\n            [-52.790458, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 42.994321],\n            [-52.790458, 44.441637],\n            [-45.553879, 44.441637],\n            [-45.553879, 42.994321],\n            [-52.790458, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 44.441637],\n            [-52.790458, 45.888952],\n            [-45.553879, 45.888952],\n            [-45.553879, 44.441637],\n            [-52.790458, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 45.888952],\n            [-52.790458, 47.336268],\n            [-45.553879, 47.336268],\n            [-45.553879, 45.888952],\n            [-52.790458, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 47.336268],\n            [-52.790458, 48.783584],\n            [-45.553879, 48.783584],\n            [-45.553879, 47.336268],\n            [-52.790458, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 48.783584],\n            [-52.790458, 50.2309],\n            [-45.553879, 50.2309],\n            [-45.553879, 48.783584],\n            [-52.790458, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 50.2309],\n            [-52.790458, 51.678216],\n            [-45.553879, 51.678216],\n            [-45.553879, 50.2309],\n            [-52.790458, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 51.678216],\n            [-52.790458, 53.125532],\n            [-45.553879, 53.125532],\n            [-45.553879, 51.678216],\n            [-52.790458, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 53.125532],\n            [-52.790458, 54.572847],\n            [-45.553879, 54.572847],\n            [-45.553879, 53.125532],\n            [-52.790458, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 54.572847],\n            [-52.790458, 56.020163],\n            [-45.553879, 56.020163],\n            [-45.553879, 54.572847],\n            [-52.790458, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 56.020163],\n            [-52.790458, 57.467479],\n            [-45.553879, 57.467479],\n            [-45.553879, 56.020163],\n            [-52.790458, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 57.467479],\n            [-52.790458, 58.914795],\n            [-45.553879, 58.914795],\n            [-45.553879, 57.467479],\n            [-52.790458, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 58.914795],\n            [-52.790458, 60.362111],\n            [-45.553879, 60.362111],\n            [-45.553879, 58.914795],\n            [-52.790458, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 60.362111],\n            [-52.790458, 61.809427],\n            [-45.553879, 61.809427],\n            [-45.553879, 60.362111],\n            [-52.790458, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 61.809427],\n            [-52.790458, 63.256742],\n            [-45.553879, 63.256742],\n            [-45.553879, 61.809427],\n            [-52.790458, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 63.256742],\n            [-52.790458, 64.704058],\n            [-45.553879, 64.704058],\n            [-45.553879, 63.256742],\n            [-52.790458, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 64.704058],\n            [-52.790458, 66.151374],\n            [-45.553879, 66.151374],\n            [-45.553879, 64.704058],\n            [-52.790458, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 66.151374],\n            [-52.790458, 67.59869],\n            [-45.553879, 67.59869],\n            [-45.553879, 66.151374],\n            [-52.790458, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 67.59869],\n            [-52.790458, 69.046006],\n            [-45.553879, 69.046006],\n            [-45.553879, 67.59869],\n            [-52.790458, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 69.046006],\n            [-52.790458, 70.493322],\n            [-45.553879, 70.493322],\n            [-45.553879, 69.046006],\n            [-52.790458, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 70.493322],\n            [-52.790458, 71.940637],\n            [-45.553879, 71.940637],\n            [-45.553879, 70.493322],\n            [-52.790458, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 71.940637],\n            [-52.790458, 73.387953],\n            [-45.553879, 73.387953],\n            [-45.553879, 71.940637],\n            [-52.790458, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 73.387953],\n            [-52.790458, 74.835269],\n            [-45.553879, 74.835269],\n            [-45.553879, 73.387953],\n            [-52.790458, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 74.835269],\n            [-52.790458, 76.282585],\n            [-45.553879, 76.282585],\n            [-45.553879, 74.835269],\n            [-52.790458, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 76.282585],\n            [-52.790458, 77.729901],\n            [-45.553879, 77.729901],\n            [-45.553879, 76.282585],\n            [-52.790458, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -80.027525],\n            [-45.553879, -78.580209],\n            [-38.3173, -78.580209],\n            [-38.3173, -80.027525],\n            [-45.553879, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -78.580209],\n            [-45.553879, -77.132893],\n            [-38.3173, -77.132893],\n            [-38.3173, -78.580209],\n            [-45.553879, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -77.132893],\n            [-45.553879, -75.685577],\n            [-38.3173, -75.685577],\n            [-38.3173, -77.132893],\n            [-45.553879, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -75.685577],\n            [-45.553879, -74.238262],\n            [-38.3173, -74.238262],\n            [-38.3173, -75.685577],\n            [-45.553879, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -74.238262],\n            [-45.553879, -72.790946],\n            [-38.3173, -72.790946],\n            [-38.3173, -74.238262],\n            [-45.553879, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -72.790946],\n            [-45.553879, -71.34363],\n            [-38.3173, -71.34363],\n            [-38.3173, -72.790946],\n            [-45.553879, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -71.34363],\n            [-45.553879, -69.896314],\n            [-38.3173, -69.896314],\n            [-38.3173, -71.34363],\n            [-45.553879, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -69.896314],\n            [-45.553879, -68.448998],\n            [-38.3173, -68.448998],\n            [-38.3173, -69.896314],\n            [-45.553879, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -68.448998],\n            [-45.553879, -67.001682],\n            [-38.3173, -67.001682],\n            [-38.3173, -68.448998],\n            [-45.553879, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -67.001682],\n            [-45.553879, -65.554367],\n            [-38.3173, -65.554367],\n            [-38.3173, -67.001682],\n            [-45.553879, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -65.554367],\n            [-45.553879, -64.107051],\n            [-38.3173, -64.107051],\n            [-38.3173, -65.554367],\n            [-45.553879, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -64.107051],\n            [-45.553879, -62.659735],\n            [-38.3173, -62.659735],\n            [-38.3173, -64.107051],\n            [-45.553879, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -62.659735],\n            [-45.553879, -61.212419],\n            [-38.3173, -61.212419],\n            [-38.3173, -62.659735],\n            [-45.553879, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -61.212419],\n            [-45.553879, -59.765103],\n            [-38.3173, -59.765103],\n            [-38.3173, -61.212419],\n            [-45.553879, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -59.765103],\n            [-45.553879, -58.317787],\n            [-38.3173, -58.317787],\n            [-38.3173, -59.765103],\n            [-45.553879, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -58.317787],\n            [-45.553879, -56.870472],\n            [-38.3173, -56.870472],\n            [-38.3173, -58.317787],\n            [-45.553879, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -56.870472],\n            [-45.553879, -55.423156],\n            [-38.3173, -55.423156],\n            [-38.3173, -56.870472],\n            [-45.553879, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -55.423156],\n            [-45.553879, -53.97584],\n            [-38.3173, -53.97584],\n            [-38.3173, -55.423156],\n            [-45.553879, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -53.97584],\n            [-45.553879, -52.528524],\n            [-38.3173, -52.528524],\n            [-38.3173, -53.97584],\n            [-45.553879, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -52.528524],\n            [-45.553879, -51.081208],\n            [-38.3173, -51.081208],\n            [-38.3173, -52.528524],\n            [-45.553879, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -51.081208],\n            [-45.553879, -49.633892],\n            [-38.3173, -49.633892],\n            [-38.3173, -51.081208],\n            [-45.553879, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -49.633892],\n            [-45.553879, -48.186577],\n            [-38.3173, -48.186577],\n            [-38.3173, -49.633892],\n            [-45.553879, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -48.186577],\n            [-45.553879, -46.739261],\n            [-38.3173, -46.739261],\n            [-38.3173, -48.186577],\n            [-45.553879, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -46.739261],\n            [-45.553879, -45.291945],\n            [-38.3173, -45.291945],\n            [-38.3173, -46.739261],\n            [-45.553879, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -45.291945],\n            [-45.553879, -43.844629],\n            [-38.3173, -43.844629],\n            [-38.3173, -45.291945],\n            [-45.553879, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -43.844629],\n            [-45.553879, -42.397313],\n            [-38.3173, -42.397313],\n            [-38.3173, -43.844629],\n            [-45.553879, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -42.397313],\n            [-45.553879, -40.949997],\n            [-38.3173, -40.949997],\n            [-38.3173, -42.397313],\n            [-45.553879, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -40.949997],\n            [-45.553879, -39.502682],\n            [-38.3173, -39.502682],\n            [-38.3173, -40.949997],\n            [-45.553879, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -39.502682],\n            [-45.553879, -38.055366],\n            [-38.3173, -38.055366],\n            [-38.3173, -39.502682],\n            [-45.553879, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -38.055366],\n            [-45.553879, -36.60805],\n            [-38.3173, -36.60805],\n            [-38.3173, -38.055366],\n            [-45.553879, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -36.60805],\n            [-45.553879, -35.160734],\n            [-38.3173, -35.160734],\n            [-38.3173, -36.60805],\n            [-45.553879, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -35.160734],\n            [-45.553879, -33.713418],\n            [-38.3173, -33.713418],\n            [-38.3173, -35.160734],\n            [-45.553879, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -33.713418],\n            [-45.553879, -32.266102],\n            [-38.3173, -32.266102],\n            [-38.3173, -33.713418],\n            [-45.553879, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -32.266102],\n            [-45.553879, -30.818787],\n            [-38.3173, -30.818787],\n            [-38.3173, -32.266102],\n            [-45.553879, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -30.818787],\n            [-45.553879, -29.371471],\n            [-38.3173, -29.371471],\n            [-38.3173, -30.818787],\n            [-45.553879, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -29.371471],\n            [-45.553879, -27.924155],\n            [-38.3173, -27.924155],\n            [-38.3173, -29.371471],\n            [-45.553879, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -27.924155],\n            [-45.553879, -26.476839],\n            [-38.3173, -26.476839],\n            [-38.3173, -27.924155],\n            [-45.553879, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -26.476839],\n            [-45.553879, -25.029523],\n            [-38.3173, -25.029523],\n            [-38.3173, -26.476839],\n            [-45.553879, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -25.029523],\n            [-45.553879, -23.582207],\n            [-38.3173, -23.582207],\n            [-38.3173, -25.029523],\n            [-45.553879, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -23.582207],\n            [-45.553879, -22.134892],\n            [-38.3173, -22.134892],\n            [-38.3173, -23.582207],\n            [-45.553879, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -22.134892],\n            [-45.553879, -20.687576],\n            [-38.3173, -20.687576],\n            [-38.3173, -22.134892],\n            [-45.553879, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -20.687576],\n            [-45.553879, -19.24026],\n            [-38.3173, -19.24026],\n            [-38.3173, -20.687576],\n            [-45.553879, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -19.24026],\n            [-45.553879, -17.792944],\n            [-38.3173, -17.792944],\n            [-38.3173, -19.24026],\n            [-45.553879, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -17.792944],\n            [-45.553879, -16.345628],\n            [-38.3173, -16.345628],\n            [-38.3173, -17.792944],\n            [-45.553879, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -16.345628],\n            [-45.553879, -14.898312],\n            [-38.3173, -14.898312],\n            [-38.3173, -16.345628],\n            [-45.553879, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -14.898312],\n            [-45.553879, -13.450997],\n            [-38.3173, -13.450997],\n            [-38.3173, -14.898312],\n            [-45.553879, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -13.450997],\n            [-45.553879, -12.003681],\n            [-38.3173, -12.003681],\n            [-38.3173, -13.450997],\n            [-45.553879, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -12.003681],\n            [-45.553879, -10.556365],\n            [-38.3173, -10.556365],\n            [-38.3173, -12.003681],\n            [-45.553879, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -10.556365],\n            [-45.553879, -9.109049],\n            [-38.3173, -9.109049],\n            [-38.3173, -10.556365],\n            [-45.553879, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -9.109049],\n            [-45.553879, -7.661733],\n            [-38.3173, -7.661733],\n            [-38.3173, -9.109049],\n            [-45.553879, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -7.661733],\n            [-45.553879, -6.214417],\n            [-38.3173, -6.214417],\n            [-38.3173, -7.661733],\n            [-45.553879, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -6.214417],\n            [-45.553879, -4.767102],\n            [-38.3173, -4.767102],\n            [-38.3173, -6.214417],\n            [-45.553879, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -4.767102],\n            [-45.553879, -3.319786],\n            [-38.3173, -3.319786],\n            [-38.3173, -4.767102],\n            [-45.553879, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -3.319786],\n            [-45.553879, -1.87247],\n            [-38.3173, -1.87247],\n            [-38.3173, -3.319786],\n            [-45.553879, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -1.87247],\n            [-45.553879, -0.425154],\n            [-38.3173, -0.425154],\n            [-38.3173, -1.87247],\n            [-45.553879, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -0.425154],\n            [-45.553879, 1.022162],\n            [-38.3173, 1.022162],\n            [-38.3173, -0.425154],\n            [-45.553879, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 1.022162],\n            [-45.553879, 2.469478],\n            [-38.3173, 2.469478],\n            [-38.3173, 1.022162],\n            [-45.553879, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 2.469478],\n            [-45.553879, 3.916793],\n            [-38.3173, 3.916793],\n            [-38.3173, 2.469478],\n            [-45.553879, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 3.916793],\n            [-45.553879, 5.364109],\n            [-38.3173, 5.364109],\n            [-38.3173, 3.916793],\n            [-45.553879, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 5.364109],\n            [-45.553879, 6.811425],\n            [-38.3173, 6.811425],\n            [-38.3173, 5.364109],\n            [-45.553879, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 6.811425],\n            [-45.553879, 8.258741],\n            [-38.3173, 8.258741],\n            [-38.3173, 6.811425],\n            [-45.553879, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 8.258741],\n            [-45.553879, 9.706057],\n            [-38.3173, 9.706057],\n            [-38.3173, 8.258741],\n            [-45.553879, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 9.706057],\n            [-45.553879, 11.153373],\n            [-38.3173, 11.153373],\n            [-38.3173, 9.706057],\n            [-45.553879, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 11.153373],\n            [-45.553879, 12.600688],\n            [-38.3173, 12.600688],\n            [-38.3173, 11.153373],\n            [-45.553879, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 12.600688],\n            [-45.553879, 14.048004],\n            [-38.3173, 14.048004],\n            [-38.3173, 12.600688],\n            [-45.553879, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 14.048004],\n            [-45.553879, 15.49532],\n            [-38.3173, 15.49532],\n            [-38.3173, 14.048004],\n            [-45.553879, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 15.49532],\n            [-45.553879, 16.942636],\n            [-38.3173, 16.942636],\n            [-38.3173, 15.49532],\n            [-45.553879, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 16.942636],\n            [-45.553879, 18.389952],\n            [-38.3173, 18.389952],\n            [-38.3173, 16.942636],\n            [-45.553879, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 18.389952],\n            [-45.553879, 19.837268],\n            [-38.3173, 19.837268],\n            [-38.3173, 18.389952],\n            [-45.553879, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 19.837268],\n            [-45.553879, 21.284583],\n            [-38.3173, 21.284583],\n            [-38.3173, 19.837268],\n            [-45.553879, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 21.284583],\n            [-45.553879, 22.731899],\n            [-38.3173, 22.731899],\n            [-38.3173, 21.284583],\n            [-45.553879, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 22.731899],\n            [-45.553879, 24.179215],\n            [-38.3173, 24.179215],\n            [-38.3173, 22.731899],\n            [-45.553879, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 24.179215],\n            [-45.553879, 25.626531],\n            [-38.3173, 25.626531],\n            [-38.3173, 24.179215],\n            [-45.553879, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 25.626531],\n            [-45.553879, 27.073847],\n            [-38.3173, 27.073847],\n            [-38.3173, 25.626531],\n            [-45.553879, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 27.073847],\n            [-45.553879, 28.521163],\n            [-38.3173, 28.521163],\n            [-38.3173, 27.073847],\n            [-45.553879, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 28.521163],\n            [-45.553879, 29.968478],\n            [-38.3173, 29.968478],\n            [-38.3173, 28.521163],\n            [-45.553879, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 29.968478],\n            [-45.553879, 31.415794],\n            [-38.3173, 31.415794],\n            [-38.3173, 29.968478],\n            [-45.553879, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 31.415794],\n            [-45.553879, 32.86311],\n            [-38.3173, 32.86311],\n            [-38.3173, 31.415794],\n            [-45.553879, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 32.86311],\n            [-45.553879, 34.310426],\n            [-38.3173, 34.310426],\n            [-38.3173, 32.86311],\n            [-45.553879, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 34.310426],\n            [-45.553879, 35.757742],\n            [-38.3173, 35.757742],\n            [-38.3173, 34.310426],\n            [-45.553879, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 35.757742],\n            [-45.553879, 37.205058],\n            [-38.3173, 37.205058],\n            [-38.3173, 35.757742],\n            [-45.553879, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 37.205058],\n            [-45.553879, 38.652373],\n            [-38.3173, 38.652373],\n            [-38.3173, 37.205058],\n            [-45.553879, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 38.652373],\n            [-45.553879, 40.099689],\n            [-38.3173, 40.099689],\n            [-38.3173, 38.652373],\n            [-45.553879, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 40.099689],\n            [-45.553879, 41.547005],\n            [-38.3173, 41.547005],\n            [-38.3173, 40.099689],\n            [-45.553879, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 41.547005],\n            [-45.553879, 42.994321],\n            [-38.3173, 42.994321],\n            [-38.3173, 41.547005],\n            [-45.553879, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 42.994321],\n            [-45.553879, 44.441637],\n            [-38.3173, 44.441637],\n            [-38.3173, 42.994321],\n            [-45.553879, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 44.441637],\n            [-45.553879, 45.888952],\n            [-38.3173, 45.888952],\n            [-38.3173, 44.441637],\n            [-45.553879, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 45.888952],\n            [-45.553879, 47.336268],\n            [-38.3173, 47.336268],\n            [-38.3173, 45.888952],\n            [-45.553879, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 47.336268],\n            [-45.553879, 48.783584],\n            [-38.3173, 48.783584],\n            [-38.3173, 47.336268],\n            [-45.553879, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 48.783584],\n            [-45.553879, 50.2309],\n            [-38.3173, 50.2309],\n            [-38.3173, 48.783584],\n            [-45.553879, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 50.2309],\n            [-45.553879, 51.678216],\n            [-38.3173, 51.678216],\n            [-38.3173, 50.2309],\n            [-45.553879, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 51.678216],\n            [-45.553879, 53.125532],\n            [-38.3173, 53.125532],\n            [-38.3173, 51.678216],\n            [-45.553879, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 53.125532],\n            [-45.553879, 54.572847],\n            [-38.3173, 54.572847],\n            [-38.3173, 53.125532],\n            [-45.553879, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 54.572847],\n            [-45.553879, 56.020163],\n            [-38.3173, 56.020163],\n            [-38.3173, 54.572847],\n            [-45.553879, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 56.020163],\n            [-45.553879, 57.467479],\n            [-38.3173, 57.467479],\n            [-38.3173, 56.020163],\n            [-45.553879, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 57.467479],\n            [-45.553879, 58.914795],\n            [-38.3173, 58.914795],\n            [-38.3173, 57.467479],\n            [-45.553879, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 58.914795],\n            [-45.553879, 60.362111],\n            [-38.3173, 60.362111],\n            [-38.3173, 58.914795],\n            [-45.553879, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 60.362111],\n            [-45.553879, 61.809427],\n            [-38.3173, 61.809427],\n            [-38.3173, 60.362111],\n            [-45.553879, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 61.809427],\n            [-45.553879, 63.256742],\n            [-38.3173, 63.256742],\n            [-38.3173, 61.809427],\n            [-45.553879, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 63.256742],\n            [-45.553879, 64.704058],\n            [-38.3173, 64.704058],\n            [-38.3173, 63.256742],\n            [-45.553879, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 64.704058],\n            [-45.553879, 66.151374],\n            [-38.3173, 66.151374],\n            [-38.3173, 64.704058],\n            [-45.553879, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 66.151374],\n            [-45.553879, 67.59869],\n            [-38.3173, 67.59869],\n            [-38.3173, 66.151374],\n            [-45.553879, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 67.59869],\n            [-45.553879, 69.046006],\n            [-38.3173, 69.046006],\n            [-38.3173, 67.59869],\n            [-45.553879, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 69.046006],\n            [-45.553879, 70.493322],\n            [-38.3173, 70.493322],\n            [-38.3173, 69.046006],\n            [-45.553879, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 70.493322],\n            [-45.553879, 71.940637],\n            [-38.3173, 71.940637],\n            [-38.3173, 70.493322],\n            [-45.553879, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 71.940637],\n            [-45.553879, 73.387953],\n            [-38.3173, 73.387953],\n            [-38.3173, 71.940637],\n            [-45.553879, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 73.387953],\n            [-45.553879, 74.835269],\n            [-38.3173, 74.835269],\n            [-38.3173, 73.387953],\n            [-45.553879, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 74.835269],\n            [-45.553879, 76.282585],\n            [-38.3173, 76.282585],\n            [-38.3173, 74.835269],\n            [-45.553879, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 76.282585],\n            [-45.553879, 77.729901],\n            [-38.3173, 77.729901],\n            [-38.3173, 76.282585],\n            [-45.553879, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -80.027525],\n            [-38.3173, -78.580209],\n            [-31.080721, -78.580209],\n            [-31.080721, -80.027525],\n            [-38.3173, -80.027525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -78.580209],\n            [-38.3173, -77.132893],\n            [-31.080721, -77.132893],\n            [-31.080721, -78.580209],\n            [-38.3173, -78.580209]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -77.132893],\n            [-38.3173, -75.685577],\n            [-31.080721, -75.685577],\n            [-31.080721, -77.132893],\n            [-38.3173, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -75.685577],\n            [-38.3173, -74.238262],\n            [-31.080721, -74.238262],\n            [-31.080721, -75.685577],\n            [-38.3173, -75.685577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -74.238262],\n            [-38.3173, -72.790946],\n            [-31.080721, -72.790946],\n            [-31.080721, -74.238262],\n            [-38.3173, -74.238262]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -72.790946],\n            [-38.3173, -71.34363],\n            [-31.080721, -71.34363],\n            [-31.080721, -72.790946],\n            [-38.3173, -72.790946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -71.34363],\n            [-38.3173, -69.896314],\n            [-31.080721, -69.896314],\n            [-31.080721, -71.34363],\n            [-38.3173, -71.34363]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -69.896314],\n            [-38.3173, -68.448998],\n            [-31.080721, -68.448998],\n            [-31.080721, -69.896314],\n            [-38.3173, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -68.448998],\n            [-38.3173, -67.001682],\n            [-31.080721, -67.001682],\n            [-31.080721, -68.448998],\n            [-38.3173, -68.448998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -67.001682],\n            [-38.3173, -65.554367],\n            [-31.080721, -65.554367],\n            [-31.080721, -67.001682],\n            [-38.3173, -67.001682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -65.554367],\n            [-38.3173, -64.107051],\n            [-31.080721, -64.107051],\n            [-31.080721, -65.554367],\n            [-38.3173, -65.554367]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -64.107051],\n            [-38.3173, -62.659735],\n            [-31.080721, -62.659735],\n            [-31.080721, -64.107051],\n            [-38.3173, -64.107051]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -62.659735],\n            [-38.3173, -61.212419],\n            [-31.080721, -61.212419],\n            [-31.080721, -62.659735],\n            [-38.3173, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -61.212419],\n            [-38.3173, -59.765103],\n            [-31.080721, -59.765103],\n            [-31.080721, -61.212419],\n            [-38.3173, -61.212419]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -59.765103],\n            [-38.3173, -58.317787],\n            [-31.080721, -58.317787],\n            [-31.080721, -59.765103],\n            [-38.3173, -59.765103]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -58.317787],\n            [-38.3173, -56.870472],\n            [-31.080721, -56.870472],\n            [-31.080721, -58.317787],\n            [-38.3173, -58.317787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -56.870472],\n            [-38.3173, -55.423156],\n            [-31.080721, -55.423156],\n            [-31.080721, -56.870472],\n            [-38.3173, -56.870472]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -55.423156],\n            [-38.3173, -53.97584],\n            [-31.080721, -53.97584],\n            [-31.080721, -55.423156],\n            [-38.3173, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -53.97584],\n            [-38.3173, -52.528524],\n            [-31.080721, -52.528524],\n            [-31.080721, -53.97584],\n            [-38.3173, -53.97584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -52.528524],\n            [-38.3173, -51.081208],\n            [-31.080721, -51.081208],\n            [-31.080721, -52.528524],\n            [-38.3173, -52.528524]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -51.081208],\n            [-38.3173, -49.633892],\n            [-31.080721, -49.633892],\n            [-31.080721, -51.081208],\n            [-38.3173, -51.081208]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -49.633892],\n            [-38.3173, -48.186577],\n            [-31.080721, -48.186577],\n            [-31.080721, -49.633892],\n            [-38.3173, -49.633892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -48.186577],\n            [-38.3173, -46.739261],\n            [-31.080721, -46.739261],\n            [-31.080721, -48.186577],\n            [-38.3173, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -46.739261],\n            [-38.3173, -45.291945],\n            [-31.080721, -45.291945],\n            [-31.080721, -46.739261],\n            [-38.3173, -46.739261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -45.291945],\n            [-38.3173, -43.844629],\n            [-31.080721, -43.844629],\n            [-31.080721, -45.291945],\n            [-38.3173, -45.291945]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -43.844629],\n            [-38.3173, -42.397313],\n            [-31.080721, -42.397313],\n            [-31.080721, -43.844629],\n            [-38.3173, -43.844629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -42.397313],\n            [-38.3173, -40.949997],\n            [-31.080721, -40.949997],\n            [-31.080721, -42.397313],\n            [-38.3173, -42.397313]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -40.949997],\n            [-38.3173, -39.502682],\n            [-31.080721, -39.502682],\n            [-31.080721, -40.949997],\n            [-38.3173, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -39.502682],\n            [-38.3173, -38.055366],\n            [-31.080721, -38.055366],\n            [-31.080721, -39.502682],\n            [-38.3173, -39.502682]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -38.055366],\n            [-38.3173, -36.60805],\n            [-31.080721, -36.60805],\n            [-31.080721, -38.055366],\n            [-38.3173, -38.055366]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -36.60805],\n            [-38.3173, -35.160734],\n            [-31.080721, -35.160734],\n            [-31.080721, -36.60805],\n            [-38.3173, -36.60805]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -35.160734],\n            [-38.3173, -33.713418],\n            [-31.080721, -33.713418],\n            [-31.080721, -35.160734],\n            [-38.3173, -35.160734]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -33.713418],\n            [-38.3173, -32.266102],\n            [-31.080721, -32.266102],\n            [-31.080721, -33.713418],\n            [-38.3173, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -32.266102],\n            [-38.3173, -30.818787],\n            [-31.080721, -30.818787],\n            [-31.080721, -32.266102],\n            [-38.3173, -32.266102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -30.818787],\n            [-38.3173, -29.371471],\n            [-31.080721, -29.371471],\n            [-31.080721, -30.818787],\n            [-38.3173, -30.818787]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -29.371471],\n            [-38.3173, -27.924155],\n            [-31.080721, -27.924155],\n            [-31.080721, -29.371471],\n            [-38.3173, -29.371471]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -27.924155],\n            [-38.3173, -26.476839],\n            [-31.080721, -26.476839],\n            [-31.080721, -27.924155],\n            [-38.3173, -27.924155]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -26.476839],\n            [-38.3173, -25.029523],\n            [-31.080721, -25.029523],\n            [-31.080721, -26.476839],\n            [-38.3173, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -25.029523],\n            [-38.3173, -23.582207],\n            [-31.080721, -23.582207],\n            [-31.080721, -25.029523],\n            [-38.3173, -25.029523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -23.582207],\n            [-38.3173, -22.134892],\n            [-31.080721, -22.134892],\n            [-31.080721, -23.582207],\n            [-38.3173, -23.582207]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -22.134892],\n            [-38.3173, -20.687576],\n            [-31.080721, -20.687576],\n            [-31.080721, -22.134892],\n            [-38.3173, -22.134892]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -20.687576],\n            [-38.3173, -19.24026],\n            [-31.080721, -19.24026],\n            [-31.080721, -20.687576],\n            [-38.3173, -20.687576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -19.24026],\n            [-38.3173, -17.792944],\n            [-31.080721, -17.792944],\n            [-31.080721, -19.24026],\n            [-38.3173, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -17.792944],\n            [-38.3173, -16.345628],\n            [-31.080721, -16.345628],\n            [-31.080721, -17.792944],\n            [-38.3173, -17.792944]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -16.345628],\n            [-38.3173, -14.898312],\n            [-31.080721, -14.898312],\n            [-31.080721, -16.345628],\n            [-38.3173, -16.345628]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -14.898312],\n            [-38.3173, -13.450997],\n            [-31.080721, -13.450997],\n            [-31.080721, -14.898312],\n            [-38.3173, -14.898312]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -13.450997],\n            [-38.3173, -12.003681],\n            [-31.080721, -12.003681],\n            [-31.080721, -13.450997],\n            [-38.3173, -13.450997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -12.003681],\n            [-38.3173, -10.556365],\n            [-31.080721, -10.556365],\n            [-31.080721, -12.003681],\n            [-38.3173, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -10.556365],\n            [-38.3173, -9.109049],\n            [-31.080721, -9.109049],\n            [-31.080721, -10.556365],\n            [-38.3173, -10.556365]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -9.109049],\n            [-38.3173, -7.661733],\n            [-31.080721, -7.661733],\n            [-31.080721, -9.109049],\n            [-38.3173, -9.109049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -7.661733],\n            [-38.3173, -6.214417],\n            [-31.080721, -6.214417],\n            [-31.080721, -7.661733],\n            [-38.3173, -7.661733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -6.214417],\n            [-38.3173, -4.767102],\n            [-31.080721, -4.767102],\n            [-31.080721, -6.214417],\n            [-38.3173, -6.214417]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -4.767102],\n            [-38.3173, -3.319786],\n            [-31.080721, -3.319786],\n            [-31.080721, -4.767102],\n            [-38.3173, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -3.319786],\n            [-38.3173, -1.87247],\n            [-31.080721, -1.87247],\n            [-31.080721, -3.319786],\n            [-38.3173, -3.319786]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -1.87247],\n            [-38.3173, -0.425154],\n            [-31.080721, -0.425154],\n            [-31.080721, -1.87247],\n            [-38.3173, -1.87247]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -0.425154],\n            [-38.3173, 1.022162],\n            [-31.080721, 1.022162],\n            [-31.080721, -0.425154],\n            [-38.3173, -0.425154]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 1.022162],\n            [-38.3173, 2.469478],\n            [-31.080721, 2.469478],\n            [-31.080721, 1.022162],\n            [-38.3173, 1.022162]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 2.469478],\n            [-38.3173, 3.916793],\n            [-31.080721, 3.916793],\n            [-31.080721, 2.469478],\n            [-38.3173, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 3.916793],\n            [-38.3173, 5.364109],\n            [-31.080721, 5.364109],\n            [-31.080721, 3.916793],\n            [-38.3173, 3.916793]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 5.364109],\n            [-38.3173, 6.811425],\n            [-31.080721, 6.811425],\n            [-31.080721, 5.364109],\n            [-38.3173, 5.364109]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 6.811425],\n            [-38.3173, 8.258741],\n            [-31.080721, 8.258741],\n            [-31.080721, 6.811425],\n            [-38.3173, 6.811425]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 8.258741],\n            [-38.3173, 9.706057],\n            [-31.080721, 9.706057],\n            [-31.080721, 8.258741],\n            [-38.3173, 8.258741]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 9.706057],\n            [-38.3173, 11.153373],\n            [-31.080721, 11.153373],\n            [-31.080721, 9.706057],\n            [-38.3173, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 11.153373],\n            [-38.3173, 12.600688],\n            [-31.080721, 12.600688],\n            [-31.080721, 11.153373],\n            [-38.3173, 11.153373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 12.600688],\n            [-38.3173, 14.048004],\n            [-31.080721, 14.048004],\n            [-31.080721, 12.600688],\n            [-38.3173, 12.600688]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 14.048004],\n            [-38.3173, 15.49532],\n            [-31.080721, 15.49532],\n            [-31.080721, 14.048004],\n            [-38.3173, 14.048004]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 15.49532],\n            [-38.3173, 16.942636],\n            [-31.080721, 16.942636],\n            [-31.080721, 15.49532],\n            [-38.3173, 15.49532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 16.942636],\n            [-38.3173, 18.389952],\n            [-31.080721, 18.389952],\n            [-31.080721, 16.942636],\n            [-38.3173, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 18.389952],\n            [-38.3173, 19.837268],\n            [-31.080721, 19.837268],\n            [-31.080721, 18.389952],\n            [-38.3173, 18.389952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 19.837268],\n            [-38.3173, 21.284583],\n            [-31.080721, 21.284583],\n            [-31.080721, 19.837268],\n            [-38.3173, 19.837268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 21.284583],\n            [-38.3173, 22.731899],\n            [-31.080721, 22.731899],\n            [-31.080721, 21.284583],\n            [-38.3173, 21.284583]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 22.731899],\n            [-38.3173, 24.179215],\n            [-31.080721, 24.179215],\n            [-31.080721, 22.731899],\n            [-38.3173, 22.731899]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 24.179215],\n            [-38.3173, 25.626531],\n            [-31.080721, 25.626531],\n            [-31.080721, 24.179215],\n            [-38.3173, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 25.626531],\n            [-38.3173, 27.073847],\n            [-31.080721, 27.073847],\n            [-31.080721, 25.626531],\n            [-38.3173, 25.626531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 27.073847],\n            [-38.3173, 28.521163],\n            [-31.080721, 28.521163],\n            [-31.080721, 27.073847],\n            [-38.3173, 27.073847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 28.521163],\n            [-38.3173, 29.968478],\n            [-31.080721, 29.968478],\n            [-31.080721, 28.521163],\n            [-38.3173, 28.521163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 29.968478],\n            [-38.3173, 31.415794],\n            [-31.080721, 31.415794],\n            [-31.080721, 29.968478],\n            [-38.3173, 29.968478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 31.415794],\n            [-38.3173, 32.86311],\n            [-31.080721, 32.86311],\n            [-31.080721, 31.415794],\n            [-38.3173, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 32.86311],\n            [-38.3173, 34.310426],\n            [-31.080721, 34.310426],\n            [-31.080721, 32.86311],\n            [-38.3173, 32.86311]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 34.310426],\n            [-38.3173, 35.757742],\n            [-31.080721, 35.757742],\n            [-31.080721, 34.310426],\n            [-38.3173, 34.310426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 35.757742],\n            [-38.3173, 37.205058],\n            [-31.080721, 37.205058],\n            [-31.080721, 35.757742],\n            [-38.3173, 35.757742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 37.205058],\n            [-38.3173, 38.652373],\n            [-31.080721, 38.652373],\n            [-31.080721, 37.205058],\n            [-38.3173, 37.205058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 38.652373],\n            [-38.3173, 40.099689],\n            [-31.080721, 40.099689],\n            [-31.080721, 38.652373],\n            [-38.3173, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 40.099689],\n            [-38.3173, 41.547005],\n            [-31.080721, 41.547005],\n            [-31.080721, 40.099689],\n            [-38.3173, 40.099689]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 41.547005],\n            [-38.3173, 42.994321],\n            [-31.080721, 42.994321],\n            [-31.080721, 41.547005],\n            [-38.3173, 41.547005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 42.994321],\n            [-38.3173, 44.441637],\n            [-31.080721, 44.441637],\n            [-31.080721, 42.994321],\n            [-38.3173, 42.994321]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 44.441637],\n            [-38.3173, 45.888952],\n            [-31.080721, 45.888952],\n            [-31.080721, 44.441637],\n            [-38.3173, 44.441637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 45.888952],\n            [-38.3173, 47.336268],\n            [-31.080721, 47.336268],\n            [-31.080721, 45.888952],\n            [-38.3173, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 47.336268],\n            [-38.3173, 48.783584],\n            [-31.080721, 48.783584],\n            [-31.080721, 47.336268],\n            [-38.3173, 47.336268]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 48.783584],\n            [-38.3173, 50.2309],\n            [-31.080721, 50.2309],\n            [-31.080721, 48.783584],\n            [-38.3173, 48.783584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 50.2309],\n            [-38.3173, 51.678216],\n            [-31.080721, 51.678216],\n            [-31.080721, 50.2309],\n            [-38.3173, 50.2309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 51.678216],\n            [-38.3173, 53.125532],\n            [-31.080721, 53.125532],\n            [-31.080721, 51.678216],\n            [-38.3173, 51.678216]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 53.125532],\n            [-38.3173, 54.572847],\n            [-31.080721, 54.572847],\n            [-31.080721, 53.125532],\n            [-38.3173, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 54.572847],\n            [-38.3173, 56.020163],\n            [-31.080721, 56.020163],\n            [-31.080721, 54.572847],\n            [-38.3173, 54.572847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 56.020163],\n            [-38.3173, 57.467479],\n            [-31.080721, 57.467479],\n            [-31.080721, 56.020163],\n            [-38.3173, 56.020163]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 57.467479],\n            [-38.3173, 58.914795],\n            [-31.080721, 58.914795],\n            [-31.080721, 57.467479],\n            [-38.3173, 57.467479]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 58.914795],\n            [-38.3173, 60.362111],\n            [-31.080721, 60.362111],\n            [-31.080721, 58.914795],\n            [-38.3173, 58.914795]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 60.362111],\n            [-38.3173, 61.809427],\n            [-31.080721, 61.809427],\n            [-31.080721, 60.362111],\n            [-38.3173, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 61.809427],\n            [-38.3173, 63.256742],\n            [-31.080721, 63.256742],\n            [-31.080721, 61.809427],\n            [-38.3173, 61.809427]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 63.256742],\n            [-38.3173, 64.704058],\n            [-31.080721, 64.704058],\n            [-31.080721, 63.256742],\n            [-38.3173, 63.256742]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 64.704058],\n            [-38.3173, 66.151374],\n            [-31.080721, 66.151374],\n            [-31.080721, 64.704058],\n            [-38.3173, 64.704058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 66.151374],\n            [-38.3173, 67.59869],\n            [-31.080721, 67.59869],\n            [-31.080721, 66.151374],\n            [-38.3173, 66.151374]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 67.59869],\n            [-38.3173, 69.046006],\n            [-31.080721, 69.046006],\n            [-31.080721, 67.59869],\n            [-38.3173, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 69.046006],\n            [-38.3173, 70.493322],\n            [-31.080721, 70.493322],\n            [-31.080721, 69.046006],\n            [-38.3173, 69.046006]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 70.493322],\n            [-38.3173, 71.940637],\n            [-31.080721, 71.940637],\n            [-31.080721, 70.493322],\n            [-38.3173, 70.493322]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 71.940637],\n            [-38.3173, 73.387953],\n            [-31.080721, 73.387953],\n            [-31.080721, 71.940637],\n            [-38.3173, 71.940637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 73.387953],\n            [-38.3173, 74.835269],\n            [-31.080721, 74.835269],\n            [-31.080721, 73.387953],\n            [-38.3173, 73.387953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 74.835269],\n            [-38.3173, 76.282585],\n            [-31.080721, 76.282585],\n            [-31.080721, 74.835269],\n            [-38.3173, 74.835269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 76.282585],\n            [-38.3173, 77.729901],\n            [-31.080721, 77.729901],\n            [-31.080721, 76.282585],\n            [-38.3173, 76.282585]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -80.64703474739618],\n            [-29.53125, -80.64703474739618],\n            [-29.53125, 78.34941069014629],\n            [-220.78125, 78.34941069014629],\n            [-220.78125, -80.64703474739618]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rectangle-grid/test/out/fiji-10x5-miles.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.323377, -17.150912],\n            [-180.323377, -17.078546],\n            [-180.178645, -17.078546],\n            [-180.178645, -17.150912],\n            [-180.323377, -17.150912]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.323377, -17.078546],\n            [-180.323377, -17.00618],\n            [-180.178645, -17.00618],\n            [-180.178645, -17.078546],\n            [-180.323377, -17.078546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.323377, -17.00618],\n            [-180.323377, -16.933815],\n            [-180.178645, -16.933815],\n            [-180.178645, -17.00618],\n            [-180.323377, -17.00618]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.323377, -16.933815],\n            [-180.323377, -16.861449],\n            [-180.178645, -16.861449],\n            [-180.178645, -16.933815],\n            [-180.323377, -16.933815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.323377, -16.861449],\n            [-180.323377, -16.789083],\n            [-180.178645, -16.789083],\n            [-180.178645, -16.861449],\n            [-180.323377, -16.861449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.323377, -16.789083],\n            [-180.323377, -16.716717],\n            [-180.178645, -16.716717],\n            [-180.178645, -16.789083],\n            [-180.323377, -16.789083]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.323377, -16.716717],\n            [-180.323377, -16.644352],\n            [-180.178645, -16.644352],\n            [-180.178645, -16.716717],\n            [-180.323377, -16.716717]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.323377, -16.644352],\n            [-180.323377, -16.571986],\n            [-180.178645, -16.571986],\n            [-180.178645, -16.644352],\n            [-180.323377, -16.644352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.323377, -16.571986],\n            [-180.323377, -16.49962],\n            [-180.178645, -16.49962],\n            [-180.178645, -16.571986],\n            [-180.323377, -16.571986]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.178645, -17.150912],\n            [-180.178645, -17.078546],\n            [-180.033914, -17.078546],\n            [-180.033914, -17.150912],\n            [-180.178645, -17.150912]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.178645, -17.078546],\n            [-180.178645, -17.00618],\n            [-180.033914, -17.00618],\n            [-180.033914, -17.078546],\n            [-180.178645, -17.078546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.178645, -17.00618],\n            [-180.178645, -16.933815],\n            [-180.033914, -16.933815],\n            [-180.033914, -17.00618],\n            [-180.178645, -17.00618]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.178645, -16.933815],\n            [-180.178645, -16.861449],\n            [-180.033914, -16.861449],\n            [-180.033914, -16.933815],\n            [-180.178645, -16.933815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.178645, -16.861449],\n            [-180.178645, -16.789083],\n            [-180.033914, -16.789083],\n            [-180.033914, -16.861449],\n            [-180.178645, -16.861449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.178645, -16.789083],\n            [-180.178645, -16.716717],\n            [-180.033914, -16.716717],\n            [-180.033914, -16.789083],\n            [-180.178645, -16.789083]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.178645, -16.716717],\n            [-180.178645, -16.644352],\n            [-180.033914, -16.644352],\n            [-180.033914, -16.716717],\n            [-180.178645, -16.716717]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.178645, -16.644352],\n            [-180.178645, -16.571986],\n            [-180.033914, -16.571986],\n            [-180.033914, -16.644352],\n            [-180.178645, -16.644352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.178645, -16.571986],\n            [-180.178645, -16.49962],\n            [-180.033914, -16.49962],\n            [-180.033914, -16.571986],\n            [-180.178645, -16.571986]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.033914, -17.150912],\n            [-180.033914, -17.078546],\n            [-179.889182, -17.078546],\n            [-179.889182, -17.150912],\n            [-180.033914, -17.150912]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.033914, -17.078546],\n            [-180.033914, -17.00618],\n            [-179.889182, -17.00618],\n            [-179.889182, -17.078546],\n            [-180.033914, -17.078546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.033914, -17.00618],\n            [-180.033914, -16.933815],\n            [-179.889182, -16.933815],\n            [-179.889182, -17.00618],\n            [-180.033914, -17.00618]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.033914, -16.933815],\n            [-180.033914, -16.861449],\n            [-179.889182, -16.861449],\n            [-179.889182, -16.933815],\n            [-180.033914, -16.933815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.033914, -16.861449],\n            [-180.033914, -16.789083],\n            [-179.889182, -16.789083],\n            [-179.889182, -16.861449],\n            [-180.033914, -16.861449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.033914, -16.789083],\n            [-180.033914, -16.716717],\n            [-179.889182, -16.716717],\n            [-179.889182, -16.789083],\n            [-180.033914, -16.789083]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.033914, -16.716717],\n            [-180.033914, -16.644352],\n            [-179.889182, -16.644352],\n            [-179.889182, -16.716717],\n            [-180.033914, -16.716717]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.033914, -16.644352],\n            [-180.033914, -16.571986],\n            [-179.889182, -16.571986],\n            [-179.889182, -16.644352],\n            [-180.033914, -16.644352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.033914, -16.571986],\n            [-180.033914, -16.49962],\n            [-179.889182, -16.49962],\n            [-179.889182, -16.571986],\n            [-180.033914, -16.571986]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.889182, -17.150912],\n            [-179.889182, -17.078546],\n            [-179.74445, -17.078546],\n            [-179.74445, -17.150912],\n            [-179.889182, -17.150912]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.889182, -17.078546],\n            [-179.889182, -17.00618],\n            [-179.74445, -17.00618],\n            [-179.74445, -17.078546],\n            [-179.889182, -17.078546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.889182, -17.00618],\n            [-179.889182, -16.933815],\n            [-179.74445, -16.933815],\n            [-179.74445, -17.00618],\n            [-179.889182, -17.00618]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.889182, -16.933815],\n            [-179.889182, -16.861449],\n            [-179.74445, -16.861449],\n            [-179.74445, -16.933815],\n            [-179.889182, -16.933815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.889182, -16.861449],\n            [-179.889182, -16.789083],\n            [-179.74445, -16.789083],\n            [-179.74445, -16.861449],\n            [-179.889182, -16.861449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.889182, -16.789083],\n            [-179.889182, -16.716717],\n            [-179.74445, -16.716717],\n            [-179.74445, -16.789083],\n            [-179.889182, -16.789083]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.889182, -16.716717],\n            [-179.889182, -16.644352],\n            [-179.74445, -16.644352],\n            [-179.74445, -16.716717],\n            [-179.889182, -16.716717]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.889182, -16.644352],\n            [-179.889182, -16.571986],\n            [-179.74445, -16.571986],\n            [-179.74445, -16.644352],\n            [-179.889182, -16.644352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.889182, -16.571986],\n            [-179.889182, -16.49962],\n            [-179.74445, -16.49962],\n            [-179.74445, -16.571986],\n            [-179.889182, -16.571986]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.74445, -17.150912],\n            [-179.74445, -17.078546],\n            [-179.599719, -17.078546],\n            [-179.599719, -17.150912],\n            [-179.74445, -17.150912]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.74445, -17.078546],\n            [-179.74445, -17.00618],\n            [-179.599719, -17.00618],\n            [-179.599719, -17.078546],\n            [-179.74445, -17.078546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.74445, -17.00618],\n            [-179.74445, -16.933815],\n            [-179.599719, -16.933815],\n            [-179.599719, -17.00618],\n            [-179.74445, -17.00618]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.74445, -16.933815],\n            [-179.74445, -16.861449],\n            [-179.599719, -16.861449],\n            [-179.599719, -16.933815],\n            [-179.74445, -16.933815]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.74445, -16.861449],\n            [-179.74445, -16.789083],\n            [-179.599719, -16.789083],\n            [-179.599719, -16.861449],\n            [-179.74445, -16.861449]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.74445, -16.789083],\n            [-179.74445, -16.716717],\n            [-179.599719, -16.716717],\n            [-179.599719, -16.789083],\n            [-179.74445, -16.789083]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.74445, -16.716717],\n            [-179.74445, -16.644352],\n            [-179.599719, -16.644352],\n            [-179.599719, -16.716717],\n            [-179.74445, -16.716717]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.74445, -16.644352],\n            [-179.74445, -16.571986],\n            [-179.599719, -16.571986],\n            [-179.599719, -16.644352],\n            [-179.74445, -16.644352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.74445, -16.571986],\n            [-179.74445, -16.49962],\n            [-179.599719, -16.49962],\n            [-179.599719, -16.571986],\n            [-179.74445, -16.571986]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [\n        -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812\n      ],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.3460693359375, -17.16703442146408],\n            [-179.5770263671875, -17.16703442146408],\n            [-179.5770263671875, -16.48349760264812],\n            [-180.3460693359375, -16.48349760264812],\n            [-180.3460693359375, -17.16703442146408]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rectangle-grid/test/out/global-grid.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, -90],\n            [-180, -80],\n            [-170, -80],\n            [-170, -90],\n            [-180, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, -80],\n            [-180, -70],\n            [-170, -70],\n            [-170, -80],\n            [-180, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, -70],\n            [-180, -60],\n            [-170, -60],\n            [-170, -70],\n            [-180, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, -60],\n            [-180, -50],\n            [-170, -50],\n            [-170, -60],\n            [-180, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, -50],\n            [-180, -40],\n            [-170, -40],\n            [-170, -50],\n            [-180, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, -40],\n            [-180, -30],\n            [-170, -30],\n            [-170, -40],\n            [-180, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, -30],\n            [-180, -20],\n            [-170, -20],\n            [-170, -30],\n            [-180, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, -20],\n            [-180, -10],\n            [-170, -10],\n            [-170, -20],\n            [-180, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, -10],\n            [-180, 0],\n            [-170, 0],\n            [-170, -10],\n            [-180, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, 0],\n            [-180, 10],\n            [-170, 10],\n            [-170, 0],\n            [-180, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, 10],\n            [-180, 20],\n            [-170, 20],\n            [-170, 10],\n            [-180, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, 20],\n            [-180, 30],\n            [-170, 30],\n            [-170, 20],\n            [-180, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, 30],\n            [-180, 40],\n            [-170, 40],\n            [-170, 30],\n            [-180, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, 40],\n            [-180, 50],\n            [-170, 50],\n            [-170, 40],\n            [-180, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, 50],\n            [-180, 60],\n            [-170, 60],\n            [-170, 50],\n            [-180, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, 60],\n            [-180, 70],\n            [-170, 70],\n            [-170, 60],\n            [-180, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, 70],\n            [-180, 80],\n            [-170, 80],\n            [-170, 70],\n            [-180, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, 80],\n            [-180, 90],\n            [-170, 90],\n            [-170, 80],\n            [-180, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-170, -90],\n            [-170, -80],\n            [-160, -80],\n            [-160, -90],\n            [-170, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-170, -80],\n            [-170, -70],\n            [-160, -70],\n            [-160, -80],\n            [-170, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-170, -70],\n            [-170, -60],\n            [-160, -60],\n            [-160, -70],\n            [-170, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-170, -60],\n            [-170, -50],\n            [-160, -50],\n            [-160, -60],\n            [-170, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-170, -50],\n            [-170, -40],\n            [-160, -40],\n            [-160, -50],\n            [-170, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-170, -40],\n            [-170, -30],\n            [-160, -30],\n            [-160, -40],\n            [-170, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-170, -30],\n            [-170, -20],\n            [-160, -20],\n            [-160, -30],\n            [-170, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-170, -20],\n            [-170, -10],\n            [-160, -10],\n            [-160, -20],\n            [-170, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-170, -10],\n            [-170, 0],\n            [-160, 0],\n            [-160, -10],\n            [-170, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-170, 0],\n            [-170, 10],\n            [-160, 10],\n            [-160, 0],\n            [-170, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-170, 10],\n            [-170, 20],\n            [-160, 20],\n            [-160, 10],\n            [-170, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-170, 20],\n            [-170, 30],\n            [-160, 30],\n            [-160, 20],\n            [-170, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-170, 30],\n            [-170, 40],\n            [-160, 40],\n            [-160, 30],\n            [-170, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-170, 40],\n            [-170, 50],\n            [-160, 50],\n            [-160, 40],\n            [-170, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-170, 50],\n            [-170, 60],\n            [-160, 60],\n            [-160, 50],\n            [-170, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-170, 60],\n            [-170, 70],\n            [-160, 70],\n            [-160, 60],\n            [-170, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-170, 70],\n            [-170, 80],\n            [-160, 80],\n            [-160, 70],\n            [-170, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-170, 80],\n            [-170, 90],\n            [-160, 90],\n            [-160, 80],\n            [-170, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160, -90],\n            [-160, -80],\n            [-150, -80],\n            [-150, -90],\n            [-160, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160, -80],\n            [-160, -70],\n            [-150, -70],\n            [-150, -80],\n            [-160, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160, -70],\n            [-160, -60],\n            [-150, -60],\n            [-150, -70],\n            [-160, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160, -60],\n            [-160, -50],\n            [-150, -50],\n            [-150, -60],\n            [-160, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160, -50],\n            [-160, -40],\n            [-150, -40],\n            [-150, -50],\n            [-160, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160, -40],\n            [-160, -30],\n            [-150, -30],\n            [-150, -40],\n            [-160, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160, -30],\n            [-160, -20],\n            [-150, -20],\n            [-150, -30],\n            [-160, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160, -20],\n            [-160, -10],\n            [-150, -10],\n            [-150, -20],\n            [-160, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160, -10],\n            [-160, 0],\n            [-150, 0],\n            [-150, -10],\n            [-160, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160, 0],\n            [-160, 10],\n            [-150, 10],\n            [-150, 0],\n            [-160, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160, 10],\n            [-160, 20],\n            [-150, 20],\n            [-150, 10],\n            [-160, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160, 20],\n            [-160, 30],\n            [-150, 30],\n            [-150, 20],\n            [-160, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160, 30],\n            [-160, 40],\n            [-150, 40],\n            [-150, 30],\n            [-160, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160, 40],\n            [-160, 50],\n            [-150, 50],\n            [-150, 40],\n            [-160, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160, 50],\n            [-160, 60],\n            [-150, 60],\n            [-150, 50],\n            [-160, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160, 60],\n            [-160, 70],\n            [-150, 70],\n            [-150, 60],\n            [-160, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160, 70],\n            [-160, 80],\n            [-150, 80],\n            [-150, 70],\n            [-160, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160, 80],\n            [-160, 90],\n            [-150, 90],\n            [-150, 80],\n            [-160, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-150, -90],\n            [-150, -80],\n            [-140, -80],\n            [-140, -90],\n            [-150, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-150, -80],\n            [-150, -70],\n            [-140, -70],\n            [-140, -80],\n            [-150, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-150, -70],\n            [-150, -60],\n            [-140, -60],\n            [-140, -70],\n            [-150, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-150, -60],\n            [-150, -50],\n            [-140, -50],\n            [-140, -60],\n            [-150, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-150, -50],\n            [-150, -40],\n            [-140, -40],\n            [-140, -50],\n            [-150, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-150, -40],\n            [-150, -30],\n            [-140, -30],\n            [-140, -40],\n            [-150, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-150, -30],\n            [-150, -20],\n            [-140, -20],\n            [-140, -30],\n            [-150, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-150, -20],\n            [-150, -10],\n            [-140, -10],\n            [-140, -20],\n            [-150, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-150, -10],\n            [-150, 0],\n            [-140, 0],\n            [-140, -10],\n            [-150, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-150, 0],\n            [-150, 10],\n            [-140, 10],\n            [-140, 0],\n            [-150, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-150, 10],\n            [-150, 20],\n            [-140, 20],\n            [-140, 10],\n            [-150, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-150, 20],\n            [-150, 30],\n            [-140, 30],\n            [-140, 20],\n            [-150, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-150, 30],\n            [-150, 40],\n            [-140, 40],\n            [-140, 30],\n            [-150, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-150, 40],\n            [-150, 50],\n            [-140, 50],\n            [-140, 40],\n            [-150, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-150, 50],\n            [-150, 60],\n            [-140, 60],\n            [-140, 50],\n            [-150, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-150, 60],\n            [-150, 70],\n            [-140, 70],\n            [-140, 60],\n            [-150, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-150, 70],\n            [-150, 80],\n            [-140, 80],\n            [-140, 70],\n            [-150, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-150, 80],\n            [-150, 90],\n            [-140, 90],\n            [-140, 80],\n            [-150, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-140, -90],\n            [-140, -80],\n            [-130, -80],\n            [-130, -90],\n            [-140, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-140, -80],\n            [-140, -70],\n            [-130, -70],\n            [-130, -80],\n            [-140, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-140, -70],\n            [-140, -60],\n            [-130, -60],\n            [-130, -70],\n            [-140, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-140, -60],\n            [-140, -50],\n            [-130, -50],\n            [-130, -60],\n            [-140, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-140, -50],\n            [-140, -40],\n            [-130, -40],\n            [-130, -50],\n            [-140, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-140, -40],\n            [-140, -30],\n            [-130, -30],\n            [-130, -40],\n            [-140, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-140, -30],\n            [-140, -20],\n            [-130, -20],\n            [-130, -30],\n            [-140, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-140, -20],\n            [-140, -10],\n            [-130, -10],\n            [-130, -20],\n            [-140, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-140, -10],\n            [-140, 0],\n            [-130, 0],\n            [-130, -10],\n            [-140, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-140, 0],\n            [-140, 10],\n            [-130, 10],\n            [-130, 0],\n            [-140, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-140, 10],\n            [-140, 20],\n            [-130, 20],\n            [-130, 10],\n            [-140, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-140, 20],\n            [-140, 30],\n            [-130, 30],\n            [-130, 20],\n            [-140, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-140, 30],\n            [-140, 40],\n            [-130, 40],\n            [-130, 30],\n            [-140, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-140, 40],\n            [-140, 50],\n            [-130, 50],\n            [-130, 40],\n            [-140, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-140, 50],\n            [-140, 60],\n            [-130, 60],\n            [-130, 50],\n            [-140, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-140, 60],\n            [-140, 70],\n            [-130, 70],\n            [-130, 60],\n            [-140, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-140, 70],\n            [-140, 80],\n            [-130, 80],\n            [-130, 70],\n            [-140, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-140, 80],\n            [-140, 90],\n            [-130, 90],\n            [-130, 80],\n            [-140, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-130, -90],\n            [-130, -80],\n            [-120, -80],\n            [-120, -90],\n            [-130, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-130, -80],\n            [-130, -70],\n            [-120, -70],\n            [-120, -80],\n            [-130, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-130, -70],\n            [-130, -60],\n            [-120, -60],\n            [-120, -70],\n            [-130, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-130, -60],\n            [-130, -50],\n            [-120, -50],\n            [-120, -60],\n            [-130, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-130, -50],\n            [-130, -40],\n            [-120, -40],\n            [-120, -50],\n            [-130, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-130, -40],\n            [-130, -30],\n            [-120, -30],\n            [-120, -40],\n            [-130, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-130, -30],\n            [-130, -20],\n            [-120, -20],\n            [-120, -30],\n            [-130, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-130, -20],\n            [-130, -10],\n            [-120, -10],\n            [-120, -20],\n            [-130, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-130, -10],\n            [-130, 0],\n            [-120, 0],\n            [-120, -10],\n            [-130, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-130, 0],\n            [-130, 10],\n            [-120, 10],\n            [-120, 0],\n            [-130, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-130, 10],\n            [-130, 20],\n            [-120, 20],\n            [-120, 10],\n            [-130, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-130, 20],\n            [-130, 30],\n            [-120, 30],\n            [-120, 20],\n            [-130, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-130, 30],\n            [-130, 40],\n            [-120, 40],\n            [-120, 30],\n            [-130, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-130, 40],\n            [-130, 50],\n            [-120, 50],\n            [-120, 40],\n            [-130, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-130, 50],\n            [-130, 60],\n            [-120, 60],\n            [-120, 50],\n            [-130, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-130, 60],\n            [-130, 70],\n            [-120, 70],\n            [-120, 60],\n            [-130, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-130, 70],\n            [-130, 80],\n            [-120, 80],\n            [-120, 70],\n            [-130, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-130, 80],\n            [-130, 90],\n            [-120, 90],\n            [-120, 80],\n            [-130, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-120, -90],\n            [-120, -80],\n            [-110, -80],\n            [-110, -90],\n            [-120, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-120, -80],\n            [-120, -70],\n            [-110, -70],\n            [-110, -80],\n            [-120, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-120, -70],\n            [-120, -60],\n            [-110, -60],\n            [-110, -70],\n            [-120, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-120, -60],\n            [-120, -50],\n            [-110, -50],\n            [-110, -60],\n            [-120, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-120, -50],\n            [-120, -40],\n            [-110, -40],\n            [-110, -50],\n            [-120, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-120, -40],\n            [-120, -30],\n            [-110, -30],\n            [-110, -40],\n            [-120, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-120, -30],\n            [-120, -20],\n            [-110, -20],\n            [-110, -30],\n            [-120, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-120, -20],\n            [-120, -10],\n            [-110, -10],\n            [-110, -20],\n            [-120, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-120, -10],\n            [-120, 0],\n            [-110, 0],\n            [-110, -10],\n            [-120, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-120, 0],\n            [-120, 10],\n            [-110, 10],\n            [-110, 0],\n            [-120, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-120, 10],\n            [-120, 20],\n            [-110, 20],\n            [-110, 10],\n            [-120, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-120, 20],\n            [-120, 30],\n            [-110, 30],\n            [-110, 20],\n            [-120, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-120, 30],\n            [-120, 40],\n            [-110, 40],\n            [-110, 30],\n            [-120, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-120, 40],\n            [-120, 50],\n            [-110, 50],\n            [-110, 40],\n            [-120, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-120, 50],\n            [-120, 60],\n            [-110, 60],\n            [-110, 50],\n            [-120, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-120, 60],\n            [-120, 70],\n            [-110, 70],\n            [-110, 60],\n            [-120, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-120, 70],\n            [-120, 80],\n            [-110, 80],\n            [-110, 70],\n            [-120, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-120, 80],\n            [-120, 90],\n            [-110, 90],\n            [-110, 80],\n            [-120, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110, -90],\n            [-110, -80],\n            [-100, -80],\n            [-100, -90],\n            [-110, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110, -80],\n            [-110, -70],\n            [-100, -70],\n            [-100, -80],\n            [-110, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110, -70],\n            [-110, -60],\n            [-100, -60],\n            [-100, -70],\n            [-110, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110, -60],\n            [-110, -50],\n            [-100, -50],\n            [-100, -60],\n            [-110, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110, -50],\n            [-110, -40],\n            [-100, -40],\n            [-100, -50],\n            [-110, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110, -40],\n            [-110, -30],\n            [-100, -30],\n            [-100, -40],\n            [-110, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110, -30],\n            [-110, -20],\n            [-100, -20],\n            [-100, -30],\n            [-110, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110, -20],\n            [-110, -10],\n            [-100, -10],\n            [-100, -20],\n            [-110, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110, -10],\n            [-110, 0],\n            [-100, 0],\n            [-100, -10],\n            [-110, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110, 0],\n            [-110, 10],\n            [-100, 10],\n            [-100, 0],\n            [-110, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110, 10],\n            [-110, 20],\n            [-100, 20],\n            [-100, 10],\n            [-110, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110, 20],\n            [-110, 30],\n            [-100, 30],\n            [-100, 20],\n            [-110, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110, 30],\n            [-110, 40],\n            [-100, 40],\n            [-100, 30],\n            [-110, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110, 40],\n            [-110, 50],\n            [-100, 50],\n            [-100, 40],\n            [-110, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110, 50],\n            [-110, 60],\n            [-100, 60],\n            [-100, 50],\n            [-110, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110, 60],\n            [-110, 70],\n            [-100, 70],\n            [-100, 60],\n            [-110, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110, 70],\n            [-110, 80],\n            [-100, 80],\n            [-100, 70],\n            [-110, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110, 80],\n            [-110, 90],\n            [-100, 90],\n            [-100, 80],\n            [-110, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-100, -90],\n            [-100, -80],\n            [-90, -80],\n            [-90, -90],\n            [-100, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-100, -80],\n            [-100, -70],\n            [-90, -70],\n            [-90, -80],\n            [-100, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-100, -70],\n            [-100, -60],\n            [-90, -60],\n            [-90, -70],\n            [-100, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-100, -60],\n            [-100, -50],\n            [-90, -50],\n            [-90, -60],\n            [-100, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-100, -50],\n            [-100, -40],\n            [-90, -40],\n            [-90, -50],\n            [-100, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-100, -40],\n            [-100, -30],\n            [-90, -30],\n            [-90, -40],\n            [-100, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-100, -30],\n            [-100, -20],\n            [-90, -20],\n            [-90, -30],\n            [-100, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-100, -20],\n            [-100, -10],\n            [-90, -10],\n            [-90, -20],\n            [-100, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-100, -10],\n            [-100, 0],\n            [-90, 0],\n            [-90, -10],\n            [-100, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-100, 0],\n            [-100, 10],\n            [-90, 10],\n            [-90, 0],\n            [-100, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-100, 10],\n            [-100, 20],\n            [-90, 20],\n            [-90, 10],\n            [-100, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-100, 20],\n            [-100, 30],\n            [-90, 30],\n            [-90, 20],\n            [-100, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-100, 30],\n            [-100, 40],\n            [-90, 40],\n            [-90, 30],\n            [-100, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-100, 40],\n            [-100, 50],\n            [-90, 50],\n            [-90, 40],\n            [-100, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-100, 50],\n            [-100, 60],\n            [-90, 60],\n            [-90, 50],\n            [-100, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-100, 60],\n            [-100, 70],\n            [-90, 70],\n            [-90, 60],\n            [-100, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-100, 70],\n            [-100, 80],\n            [-90, 80],\n            [-90, 70],\n            [-100, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-100, 80],\n            [-100, 90],\n            [-90, 90],\n            [-90, 80],\n            [-100, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90, -90],\n            [-90, -80],\n            [-80, -80],\n            [-80, -90],\n            [-90, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90, -80],\n            [-90, -70],\n            [-80, -70],\n            [-80, -80],\n            [-90, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90, -70],\n            [-90, -60],\n            [-80, -60],\n            [-80, -70],\n            [-90, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90, -60],\n            [-90, -50],\n            [-80, -50],\n            [-80, -60],\n            [-90, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90, -50],\n            [-90, -40],\n            [-80, -40],\n            [-80, -50],\n            [-90, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90, -40],\n            [-90, -30],\n            [-80, -30],\n            [-80, -40],\n            [-90, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90, -30],\n            [-90, -20],\n            [-80, -20],\n            [-80, -30],\n            [-90, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90, -20],\n            [-90, -10],\n            [-80, -10],\n            [-80, -20],\n            [-90, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90, -10],\n            [-90, 0],\n            [-80, 0],\n            [-80, -10],\n            [-90, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90, 0],\n            [-90, 10],\n            [-80, 10],\n            [-80, 0],\n            [-90, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90, 10],\n            [-90, 20],\n            [-80, 20],\n            [-80, 10],\n            [-90, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90, 20],\n            [-90, 30],\n            [-80, 30],\n            [-80, 20],\n            [-90, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90, 30],\n            [-90, 40],\n            [-80, 40],\n            [-80, 30],\n            [-90, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90, 40],\n            [-90, 50],\n            [-80, 50],\n            [-80, 40],\n            [-90, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90, 50],\n            [-90, 60],\n            [-80, 60],\n            [-80, 50],\n            [-90, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90, 60],\n            [-90, 70],\n            [-80, 70],\n            [-80, 60],\n            [-90, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90, 70],\n            [-90, 80],\n            [-80, 80],\n            [-80, 70],\n            [-90, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-90, 80],\n            [-90, 90],\n            [-80, 90],\n            [-80, 80],\n            [-90, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80, -90],\n            [-80, -80],\n            [-70, -80],\n            [-70, -90],\n            [-80, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80, -80],\n            [-80, -70],\n            [-70, -70],\n            [-70, -80],\n            [-80, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80, -70],\n            [-80, -60],\n            [-70, -60],\n            [-70, -70],\n            [-80, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80, -60],\n            [-80, -50],\n            [-70, -50],\n            [-70, -60],\n            [-80, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80, -50],\n            [-80, -40],\n            [-70, -40],\n            [-70, -50],\n            [-80, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80, -40],\n            [-80, -30],\n            [-70, -30],\n            [-70, -40],\n            [-80, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80, -30],\n            [-80, -20],\n            [-70, -20],\n            [-70, -30],\n            [-80, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80, -20],\n            [-80, -10],\n            [-70, -10],\n            [-70, -20],\n            [-80, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80, -10],\n            [-80, 0],\n            [-70, 0],\n            [-70, -10],\n            [-80, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80, 0],\n            [-80, 10],\n            [-70, 10],\n            [-70, 0],\n            [-80, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80, 10],\n            [-80, 20],\n            [-70, 20],\n            [-70, 10],\n            [-80, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80, 20],\n            [-80, 30],\n            [-70, 30],\n            [-70, 20],\n            [-80, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80, 30],\n            [-80, 40],\n            [-70, 40],\n            [-70, 30],\n            [-80, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80, 40],\n            [-80, 50],\n            [-70, 50],\n            [-70, 40],\n            [-80, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80, 50],\n            [-80, 60],\n            [-70, 60],\n            [-70, 50],\n            [-80, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80, 60],\n            [-80, 70],\n            [-70, 70],\n            [-70, 60],\n            [-80, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80, 70],\n            [-80, 80],\n            [-70, 80],\n            [-70, 70],\n            [-80, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80, 80],\n            [-80, 90],\n            [-70, 90],\n            [-70, 80],\n            [-80, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70, -90],\n            [-70, -80],\n            [-60, -80],\n            [-60, -90],\n            [-70, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70, -80],\n            [-70, -70],\n            [-60, -70],\n            [-60, -80],\n            [-70, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70, -70],\n            [-70, -60],\n            [-60, -60],\n            [-60, -70],\n            [-70, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70, -60],\n            [-70, -50],\n            [-60, -50],\n            [-60, -60],\n            [-70, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70, -50],\n            [-70, -40],\n            [-60, -40],\n            [-60, -50],\n            [-70, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70, -40],\n            [-70, -30],\n            [-60, -30],\n            [-60, -40],\n            [-70, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70, -30],\n            [-70, -20],\n            [-60, -20],\n            [-60, -30],\n            [-70, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70, -20],\n            [-70, -10],\n            [-60, -10],\n            [-60, -20],\n            [-70, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70, -10],\n            [-70, 0],\n            [-60, 0],\n            [-60, -10],\n            [-70, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70, 0],\n            [-70, 10],\n            [-60, 10],\n            [-60, 0],\n            [-70, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70, 10],\n            [-70, 20],\n            [-60, 20],\n            [-60, 10],\n            [-70, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70, 20],\n            [-70, 30],\n            [-60, 30],\n            [-60, 20],\n            [-70, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70, 30],\n            [-70, 40],\n            [-60, 40],\n            [-60, 30],\n            [-70, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70, 40],\n            [-70, 50],\n            [-60, 50],\n            [-60, 40],\n            [-70, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70, 50],\n            [-70, 60],\n            [-60, 60],\n            [-60, 50],\n            [-70, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70, 60],\n            [-70, 70],\n            [-60, 70],\n            [-60, 60],\n            [-70, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70, 70],\n            [-70, 80],\n            [-60, 80],\n            [-60, 70],\n            [-70, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-70, 80],\n            [-70, 90],\n            [-60, 90],\n            [-60, 80],\n            [-70, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60, -90],\n            [-60, -80],\n            [-50, -80],\n            [-50, -90],\n            [-60, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60, -80],\n            [-60, -70],\n            [-50, -70],\n            [-50, -80],\n            [-60, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60, -70],\n            [-60, -60],\n            [-50, -60],\n            [-50, -70],\n            [-60, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60, -60],\n            [-60, -50],\n            [-50, -50],\n            [-50, -60],\n            [-60, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60, -50],\n            [-60, -40],\n            [-50, -40],\n            [-50, -50],\n            [-60, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60, -40],\n            [-60, -30],\n            [-50, -30],\n            [-50, -40],\n            [-60, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60, -30],\n            [-60, -20],\n            [-50, -20],\n            [-50, -30],\n            [-60, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60, -20],\n            [-60, -10],\n            [-50, -10],\n            [-50, -20],\n            [-60, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60, -10],\n            [-60, 0],\n            [-50, 0],\n            [-50, -10],\n            [-60, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60, 0],\n            [-60, 10],\n            [-50, 10],\n            [-50, 0],\n            [-60, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60, 10],\n            [-60, 20],\n            [-50, 20],\n            [-50, 10],\n            [-60, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60, 20],\n            [-60, 30],\n            [-50, 30],\n            [-50, 20],\n            [-60, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60, 30],\n            [-60, 40],\n            [-50, 40],\n            [-50, 30],\n            [-60, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60, 40],\n            [-60, 50],\n            [-50, 50],\n            [-50, 40],\n            [-60, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60, 50],\n            [-60, 60],\n            [-50, 60],\n            [-50, 50],\n            [-60, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60, 60],\n            [-60, 70],\n            [-50, 70],\n            [-50, 60],\n            [-60, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60, 70],\n            [-60, 80],\n            [-50, 80],\n            [-50, 70],\n            [-60, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60, 80],\n            [-60, 90],\n            [-50, 90],\n            [-50, 80],\n            [-60, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, -90],\n            [-50, -80],\n            [-40, -80],\n            [-40, -90],\n            [-50, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, -80],\n            [-50, -70],\n            [-40, -70],\n            [-40, -80],\n            [-50, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, -70],\n            [-50, -60],\n            [-40, -60],\n            [-40, -70],\n            [-50, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, -60],\n            [-50, -50],\n            [-40, -50],\n            [-40, -60],\n            [-50, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, -50],\n            [-50, -40],\n            [-40, -40],\n            [-40, -50],\n            [-50, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, -40],\n            [-50, -30],\n            [-40, -30],\n            [-40, -40],\n            [-50, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, -30],\n            [-50, -20],\n            [-40, -20],\n            [-40, -30],\n            [-50, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, -20],\n            [-50, -10],\n            [-40, -10],\n            [-40, -20],\n            [-50, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, -10],\n            [-50, 0],\n            [-40, 0],\n            [-40, -10],\n            [-50, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, 0],\n            [-50, 10],\n            [-40, 10],\n            [-40, 0],\n            [-50, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, 10],\n            [-50, 20],\n            [-40, 20],\n            [-40, 10],\n            [-50, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, 20],\n            [-50, 30],\n            [-40, 30],\n            [-40, 20],\n            [-50, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, 30],\n            [-50, 40],\n            [-40, 40],\n            [-40, 30],\n            [-50, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, 40],\n            [-50, 50],\n            [-40, 50],\n            [-40, 40],\n            [-50, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, 50],\n            [-50, 60],\n            [-40, 60],\n            [-40, 50],\n            [-50, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, 60],\n            [-50, 70],\n            [-40, 70],\n            [-40, 60],\n            [-50, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, 70],\n            [-50, 80],\n            [-40, 80],\n            [-40, 70],\n            [-50, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-50, 80],\n            [-50, 90],\n            [-40, 90],\n            [-40, 80],\n            [-50, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40, -90],\n            [-40, -80],\n            [-30, -80],\n            [-30, -90],\n            [-40, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40, -80],\n            [-40, -70],\n            [-30, -70],\n            [-30, -80],\n            [-40, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40, -70],\n            [-40, -60],\n            [-30, -60],\n            [-30, -70],\n            [-40, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40, -60],\n            [-40, -50],\n            [-30, -50],\n            [-30, -60],\n            [-40, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40, -50],\n            [-40, -40],\n            [-30, -40],\n            [-30, -50],\n            [-40, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40, -40],\n            [-40, -30],\n            [-30, -30],\n            [-30, -40],\n            [-40, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40, -30],\n            [-40, -20],\n            [-30, -20],\n            [-30, -30],\n            [-40, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40, -20],\n            [-40, -10],\n            [-30, -10],\n            [-30, -20],\n            [-40, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40, -10],\n            [-40, 0],\n            [-30, 0],\n            [-30, -10],\n            [-40, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40, 0],\n            [-40, 10],\n            [-30, 10],\n            [-30, 0],\n            [-40, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40, 10],\n            [-40, 20],\n            [-30, 20],\n            [-30, 10],\n            [-40, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40, 20],\n            [-40, 30],\n            [-30, 30],\n            [-30, 20],\n            [-40, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40, 30],\n            [-40, 40],\n            [-30, 40],\n            [-30, 30],\n            [-40, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40, 40],\n            [-40, 50],\n            [-30, 50],\n            [-30, 40],\n            [-40, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40, 50],\n            [-40, 60],\n            [-30, 60],\n            [-30, 50],\n            [-40, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40, 60],\n            [-40, 70],\n            [-30, 70],\n            [-30, 60],\n            [-40, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40, 70],\n            [-40, 80],\n            [-30, 80],\n            [-30, 70],\n            [-40, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-40, 80],\n            [-40, 90],\n            [-30, 90],\n            [-30, 80],\n            [-40, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30, -90],\n            [-30, -80],\n            [-20, -80],\n            [-20, -90],\n            [-30, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30, -80],\n            [-30, -70],\n            [-20, -70],\n            [-20, -80],\n            [-30, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30, -70],\n            [-30, -60],\n            [-20, -60],\n            [-20, -70],\n            [-30, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30, -60],\n            [-30, -50],\n            [-20, -50],\n            [-20, -60],\n            [-30, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30, -50],\n            [-30, -40],\n            [-20, -40],\n            [-20, -50],\n            [-30, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30, -40],\n            [-30, -30],\n            [-20, -30],\n            [-20, -40],\n            [-30, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30, -30],\n            [-30, -20],\n            [-20, -20],\n            [-20, -30],\n            [-30, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30, -20],\n            [-30, -10],\n            [-20, -10],\n            [-20, -20],\n            [-30, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30, -10],\n            [-30, 0],\n            [-20, 0],\n            [-20, -10],\n            [-30, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30, 0],\n            [-30, 10],\n            [-20, 10],\n            [-20, 0],\n            [-30, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30, 10],\n            [-30, 20],\n            [-20, 20],\n            [-20, 10],\n            [-30, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30, 20],\n            [-30, 30],\n            [-20, 30],\n            [-20, 20],\n            [-30, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30, 30],\n            [-30, 40],\n            [-20, 40],\n            [-20, 30],\n            [-30, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30, 40],\n            [-30, 50],\n            [-20, 50],\n            [-20, 40],\n            [-30, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30, 50],\n            [-30, 60],\n            [-20, 60],\n            [-20, 50],\n            [-30, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30, 60],\n            [-30, 70],\n            [-20, 70],\n            [-20, 60],\n            [-30, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30, 70],\n            [-30, 80],\n            [-20, 80],\n            [-20, 70],\n            [-30, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-30, 80],\n            [-30, 90],\n            [-20, 90],\n            [-20, 80],\n            [-30, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-20, -90],\n            [-20, -80],\n            [-10, -80],\n            [-10, -90],\n            [-20, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-20, -80],\n            [-20, -70],\n            [-10, -70],\n            [-10, -80],\n            [-20, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-20, -70],\n            [-20, -60],\n            [-10, -60],\n            [-10, -70],\n            [-20, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-20, -60],\n            [-20, -50],\n            [-10, -50],\n            [-10, -60],\n            [-20, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-20, -50],\n            [-20, -40],\n            [-10, -40],\n            [-10, -50],\n            [-20, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-20, -40],\n            [-20, -30],\n            [-10, -30],\n            [-10, -40],\n            [-20, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-20, -30],\n            [-20, -20],\n            [-10, -20],\n            [-10, -30],\n            [-20, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-20, -20],\n            [-20, -10],\n            [-10, -10],\n            [-10, -20],\n            [-20, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-20, -10],\n            [-20, 0],\n            [-10, 0],\n            [-10, -10],\n            [-20, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-20, 0],\n            [-20, 10],\n            [-10, 10],\n            [-10, 0],\n            [-20, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-20, 10],\n            [-20, 20],\n            [-10, 20],\n            [-10, 10],\n            [-20, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-20, 20],\n            [-20, 30],\n            [-10, 30],\n            [-10, 20],\n            [-20, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-20, 30],\n            [-20, 40],\n            [-10, 40],\n            [-10, 30],\n            [-20, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-20, 40],\n            [-20, 50],\n            [-10, 50],\n            [-10, 40],\n            [-20, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-20, 50],\n            [-20, 60],\n            [-10, 60],\n            [-10, 50],\n            [-20, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-20, 60],\n            [-20, 70],\n            [-10, 70],\n            [-10, 60],\n            [-20, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-20, 70],\n            [-20, 80],\n            [-10, 80],\n            [-10, 70],\n            [-20, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-20, 80],\n            [-20, 90],\n            [-10, 90],\n            [-10, 80],\n            [-20, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-10, -90],\n            [-10, -80],\n            [0, -80],\n            [0, -90],\n            [-10, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-10, -80],\n            [-10, -70],\n            [0, -70],\n            [0, -80],\n            [-10, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-10, -70],\n            [-10, -60],\n            [0, -60],\n            [0, -70],\n            [-10, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-10, -60],\n            [-10, -50],\n            [0, -50],\n            [0, -60],\n            [-10, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-10, -50],\n            [-10, -40],\n            [0, -40],\n            [0, -50],\n            [-10, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-10, -40],\n            [-10, -30],\n            [0, -30],\n            [0, -40],\n            [-10, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-10, -30],\n            [-10, -20],\n            [0, -20],\n            [0, -30],\n            [-10, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-10, -20],\n            [-10, -10],\n            [0, -10],\n            [0, -20],\n            [-10, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-10, -10],\n            [-10, 0],\n            [0, 0],\n            [0, -10],\n            [-10, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-10, 0],\n            [-10, 10],\n            [0, 10],\n            [0, 0],\n            [-10, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-10, 10],\n            [-10, 20],\n            [0, 20],\n            [0, 10],\n            [-10, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-10, 20],\n            [-10, 30],\n            [0, 30],\n            [0, 20],\n            [-10, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-10, 30],\n            [-10, 40],\n            [0, 40],\n            [0, 30],\n            [-10, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-10, 40],\n            [-10, 50],\n            [0, 50],\n            [0, 40],\n            [-10, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-10, 50],\n            [-10, 60],\n            [0, 60],\n            [0, 50],\n            [-10, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-10, 60],\n            [-10, 70],\n            [0, 70],\n            [0, 60],\n            [-10, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-10, 70],\n            [-10, 80],\n            [0, 80],\n            [0, 70],\n            [-10, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-10, 80],\n            [-10, 90],\n            [0, 90],\n            [0, 80],\n            [-10, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, -90],\n            [0, -80],\n            [10, -80],\n            [10, -90],\n            [0, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, -80],\n            [0, -70],\n            [10, -70],\n            [10, -80],\n            [0, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, -70],\n            [0, -60],\n            [10, -60],\n            [10, -70],\n            [0, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, -60],\n            [0, -50],\n            [10, -50],\n            [10, -60],\n            [0, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, -50],\n            [0, -40],\n            [10, -40],\n            [10, -50],\n            [0, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, -40],\n            [0, -30],\n            [10, -30],\n            [10, -40],\n            [0, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, -30],\n            [0, -20],\n            [10, -20],\n            [10, -30],\n            [0, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, -20],\n            [0, -10],\n            [10, -10],\n            [10, -20],\n            [0, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, -10],\n            [0, 0],\n            [10, 0],\n            [10, -10],\n            [0, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [0, 10],\n            [10, 10],\n            [10, 0],\n            [0, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 10],\n            [0, 20],\n            [10, 20],\n            [10, 10],\n            [0, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 20],\n            [0, 30],\n            [10, 30],\n            [10, 20],\n            [0, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 30],\n            [0, 40],\n            [10, 40],\n            [10, 30],\n            [0, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 40],\n            [0, 50],\n            [10, 50],\n            [10, 40],\n            [0, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 50],\n            [0, 60],\n            [10, 60],\n            [10, 50],\n            [0, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 60],\n            [0, 70],\n            [10, 70],\n            [10, 60],\n            [0, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 70],\n            [0, 80],\n            [10, 80],\n            [10, 70],\n            [0, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 80],\n            [0, 90],\n            [10, 90],\n            [10, 80],\n            [0, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, -90],\n            [10, -80],\n            [20, -80],\n            [20, -90],\n            [10, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, -80],\n            [10, -70],\n            [20, -70],\n            [20, -80],\n            [10, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, -70],\n            [10, -60],\n            [20, -60],\n            [20, -70],\n            [10, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, -60],\n            [10, -50],\n            [20, -50],\n            [20, -60],\n            [10, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, -50],\n            [10, -40],\n            [20, -40],\n            [20, -50],\n            [10, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, -40],\n            [10, -30],\n            [20, -30],\n            [20, -40],\n            [10, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, -30],\n            [10, -20],\n            [20, -20],\n            [20, -30],\n            [10, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, -20],\n            [10, -10],\n            [20, -10],\n            [20, -20],\n            [10, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, -10],\n            [10, 0],\n            [20, 0],\n            [20, -10],\n            [10, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, 0],\n            [10, 10],\n            [20, 10],\n            [20, 0],\n            [10, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, 10],\n            [10, 20],\n            [20, 20],\n            [20, 10],\n            [10, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, 20],\n            [10, 30],\n            [20, 30],\n            [20, 20],\n            [10, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, 30],\n            [10, 40],\n            [20, 40],\n            [20, 30],\n            [10, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, 40],\n            [10, 50],\n            [20, 50],\n            [20, 40],\n            [10, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, 50],\n            [10, 60],\n            [20, 60],\n            [20, 50],\n            [10, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, 60],\n            [10, 70],\n            [20, 70],\n            [20, 60],\n            [10, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, 70],\n            [10, 80],\n            [20, 80],\n            [20, 70],\n            [10, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [10, 80],\n            [10, 90],\n            [20, 90],\n            [20, 80],\n            [10, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20, -90],\n            [20, -80],\n            [30, -80],\n            [30, -90],\n            [20, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20, -80],\n            [20, -70],\n            [30, -70],\n            [30, -80],\n            [20, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20, -70],\n            [20, -60],\n            [30, -60],\n            [30, -70],\n            [20, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20, -60],\n            [20, -50],\n            [30, -50],\n            [30, -60],\n            [20, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20, -50],\n            [20, -40],\n            [30, -40],\n            [30, -50],\n            [20, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20, -40],\n            [20, -30],\n            [30, -30],\n            [30, -40],\n            [20, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20, -30],\n            [20, -20],\n            [30, -20],\n            [30, -30],\n            [20, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20, -20],\n            [20, -10],\n            [30, -10],\n            [30, -20],\n            [20, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20, -10],\n            [20, 0],\n            [30, 0],\n            [30, -10],\n            [20, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20, 0],\n            [20, 10],\n            [30, 10],\n            [30, 0],\n            [20, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20, 10],\n            [20, 20],\n            [30, 20],\n            [30, 10],\n            [20, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20, 20],\n            [20, 30],\n            [30, 30],\n            [30, 20],\n            [20, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20, 30],\n            [20, 40],\n            [30, 40],\n            [30, 30],\n            [20, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20, 40],\n            [20, 50],\n            [30, 50],\n            [30, 40],\n            [20, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20, 50],\n            [20, 60],\n            [30, 60],\n            [30, 50],\n            [20, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20, 60],\n            [20, 70],\n            [30, 70],\n            [30, 60],\n            [20, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20, 70],\n            [20, 80],\n            [30, 80],\n            [30, 70],\n            [20, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20, 80],\n            [20, 90],\n            [30, 90],\n            [30, 80],\n            [20, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30, -90],\n            [30, -80],\n            [40, -80],\n            [40, -90],\n            [30, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30, -80],\n            [30, -70],\n            [40, -70],\n            [40, -80],\n            [30, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30, -70],\n            [30, -60],\n            [40, -60],\n            [40, -70],\n            [30, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30, -60],\n            [30, -50],\n            [40, -50],\n            [40, -60],\n            [30, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30, -50],\n            [30, -40],\n            [40, -40],\n            [40, -50],\n            [30, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30, -40],\n            [30, -30],\n            [40, -30],\n            [40, -40],\n            [30, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30, -30],\n            [30, -20],\n            [40, -20],\n            [40, -30],\n            [30, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30, -20],\n            [30, -10],\n            [40, -10],\n            [40, -20],\n            [30, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30, -10],\n            [30, 0],\n            [40, 0],\n            [40, -10],\n            [30, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30, 0],\n            [30, 10],\n            [40, 10],\n            [40, 0],\n            [30, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30, 10],\n            [30, 20],\n            [40, 20],\n            [40, 10],\n            [30, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30, 20],\n            [30, 30],\n            [40, 30],\n            [40, 20],\n            [30, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30, 30],\n            [30, 40],\n            [40, 40],\n            [40, 30],\n            [30, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30, 40],\n            [30, 50],\n            [40, 50],\n            [40, 40],\n            [30, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30, 50],\n            [30, 60],\n            [40, 60],\n            [40, 50],\n            [30, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30, 60],\n            [30, 70],\n            [40, 70],\n            [40, 60],\n            [30, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30, 70],\n            [30, 80],\n            [40, 80],\n            [40, 70],\n            [30, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30, 80],\n            [30, 90],\n            [40, 90],\n            [40, 80],\n            [30, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [40, -90],\n            [40, -80],\n            [50, -80],\n            [50, -90],\n            [40, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [40, -80],\n            [40, -70],\n            [50, -70],\n            [50, -80],\n            [40, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [40, -70],\n            [40, -60],\n            [50, -60],\n            [50, -70],\n            [40, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [40, -60],\n            [40, -50],\n            [50, -50],\n            [50, -60],\n            [40, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [40, -50],\n            [40, -40],\n            [50, -40],\n            [50, -50],\n            [40, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [40, -40],\n            [40, -30],\n            [50, -30],\n            [50, -40],\n            [40, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [40, -30],\n            [40, -20],\n            [50, -20],\n            [50, -30],\n            [40, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [40, -20],\n            [40, -10],\n            [50, -10],\n            [50, -20],\n            [40, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [40, -10],\n            [40, 0],\n            [50, 0],\n            [50, -10],\n            [40, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [40, 0],\n            [40, 10],\n            [50, 10],\n            [50, 0],\n            [40, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [40, 10],\n            [40, 20],\n            [50, 20],\n            [50, 10],\n            [40, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [40, 20],\n            [40, 30],\n            [50, 30],\n            [50, 20],\n            [40, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [40, 30],\n            [40, 40],\n            [50, 40],\n            [50, 30],\n            [40, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [40, 40],\n            [40, 50],\n            [50, 50],\n            [50, 40],\n            [40, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [40, 50],\n            [40, 60],\n            [50, 60],\n            [50, 50],\n            [40, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [40, 60],\n            [40, 70],\n            [50, 70],\n            [50, 60],\n            [40, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [40, 70],\n            [40, 80],\n            [50, 80],\n            [50, 70],\n            [40, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [40, 80],\n            [40, 90],\n            [50, 90],\n            [50, 80],\n            [40, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50, -90],\n            [50, -80],\n            [60, -80],\n            [60, -90],\n            [50, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50, -80],\n            [50, -70],\n            [60, -70],\n            [60, -80],\n            [50, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50, -70],\n            [50, -60],\n            [60, -60],\n            [60, -70],\n            [50, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50, -60],\n            [50, -50],\n            [60, -50],\n            [60, -60],\n            [50, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50, -50],\n            [50, -40],\n            [60, -40],\n            [60, -50],\n            [50, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50, -40],\n            [50, -30],\n            [60, -30],\n            [60, -40],\n            [50, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50, -30],\n            [50, -20],\n            [60, -20],\n            [60, -30],\n            [50, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50, -20],\n            [50, -10],\n            [60, -10],\n            [60, -20],\n            [50, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50, -10],\n            [50, 0],\n            [60, 0],\n            [60, -10],\n            [50, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50, 0],\n            [50, 10],\n            [60, 10],\n            [60, 0],\n            [50, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50, 10],\n            [50, 20],\n            [60, 20],\n            [60, 10],\n            [50, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50, 20],\n            [50, 30],\n            [60, 30],\n            [60, 20],\n            [50, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50, 30],\n            [50, 40],\n            [60, 40],\n            [60, 30],\n            [50, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50, 40],\n            [50, 50],\n            [60, 50],\n            [60, 40],\n            [50, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50, 50],\n            [50, 60],\n            [60, 60],\n            [60, 50],\n            [50, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50, 60],\n            [50, 70],\n            [60, 70],\n            [60, 60],\n            [50, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50, 70],\n            [50, 80],\n            [60, 80],\n            [60, 70],\n            [50, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50, 80],\n            [50, 90],\n            [60, 90],\n            [60, 80],\n            [50, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [60, -90],\n            [60, -80],\n            [70, -80],\n            [70, -90],\n            [60, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [60, -80],\n            [60, -70],\n            [70, -70],\n            [70, -80],\n            [60, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [60, -70],\n            [60, -60],\n            [70, -60],\n            [70, -70],\n            [60, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [60, -60],\n            [60, -50],\n            [70, -50],\n            [70, -60],\n            [60, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [60, -50],\n            [60, -40],\n            [70, -40],\n            [70, -50],\n            [60, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [60, -40],\n            [60, -30],\n            [70, -30],\n            [70, -40],\n            [60, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [60, -30],\n            [60, -20],\n            [70, -20],\n            [70, -30],\n            [60, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [60, -20],\n            [60, -10],\n            [70, -10],\n            [70, -20],\n            [60, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [60, -10],\n            [60, 0],\n            [70, 0],\n            [70, -10],\n            [60, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [60, 0],\n            [60, 10],\n            [70, 10],\n            [70, 0],\n            [60, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [60, 10],\n            [60, 20],\n            [70, 20],\n            [70, 10],\n            [60, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [60, 20],\n            [60, 30],\n            [70, 30],\n            [70, 20],\n            [60, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [60, 30],\n            [60, 40],\n            [70, 40],\n            [70, 30],\n            [60, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [60, 40],\n            [60, 50],\n            [70, 50],\n            [70, 40],\n            [60, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [60, 50],\n            [60, 60],\n            [70, 60],\n            [70, 50],\n            [60, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [60, 60],\n            [60, 70],\n            [70, 70],\n            [70, 60],\n            [60, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [60, 70],\n            [60, 80],\n            [70, 80],\n            [70, 70],\n            [60, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [60, 80],\n            [60, 90],\n            [70, 90],\n            [70, 80],\n            [60, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70, -90],\n            [70, -80],\n            [80, -80],\n            [80, -90],\n            [70, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70, -80],\n            [70, -70],\n            [80, -70],\n            [80, -80],\n            [70, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70, -70],\n            [70, -60],\n            [80, -60],\n            [80, -70],\n            [70, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70, -60],\n            [70, -50],\n            [80, -50],\n            [80, -60],\n            [70, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70, -50],\n            [70, -40],\n            [80, -40],\n            [80, -50],\n            [70, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70, -40],\n            [70, -30],\n            [80, -30],\n            [80, -40],\n            [70, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70, -30],\n            [70, -20],\n            [80, -20],\n            [80, -30],\n            [70, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70, -20],\n            [70, -10],\n            [80, -10],\n            [80, -20],\n            [70, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70, -10],\n            [70, 0],\n            [80, 0],\n            [80, -10],\n            [70, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70, 0],\n            [70, 10],\n            [80, 10],\n            [80, 0],\n            [70, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70, 10],\n            [70, 20],\n            [80, 20],\n            [80, 10],\n            [70, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70, 20],\n            [70, 30],\n            [80, 30],\n            [80, 20],\n            [70, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70, 30],\n            [70, 40],\n            [80, 40],\n            [80, 30],\n            [70, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70, 40],\n            [70, 50],\n            [80, 50],\n            [80, 40],\n            [70, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70, 50],\n            [70, 60],\n            [80, 60],\n            [80, 50],\n            [70, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70, 60],\n            [70, 70],\n            [80, 70],\n            [80, 60],\n            [70, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70, 70],\n            [70, 80],\n            [80, 80],\n            [80, 70],\n            [70, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70, 80],\n            [70, 90],\n            [80, 90],\n            [80, 80],\n            [70, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [80, -90],\n            [80, -80],\n            [90, -80],\n            [90, -90],\n            [80, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [80, -80],\n            [80, -70],\n            [90, -70],\n            [90, -80],\n            [80, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [80, -70],\n            [80, -60],\n            [90, -60],\n            [90, -70],\n            [80, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [80, -60],\n            [80, -50],\n            [90, -50],\n            [90, -60],\n            [80, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [80, -50],\n            [80, -40],\n            [90, -40],\n            [90, -50],\n            [80, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [80, -40],\n            [80, -30],\n            [90, -30],\n            [90, -40],\n            [80, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [80, -30],\n            [80, -20],\n            [90, -20],\n            [90, -30],\n            [80, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [80, -20],\n            [80, -10],\n            [90, -10],\n            [90, -20],\n            [80, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [80, -10],\n            [80, 0],\n            [90, 0],\n            [90, -10],\n            [80, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [80, 0],\n            [80, 10],\n            [90, 10],\n            [90, 0],\n            [80, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [80, 10],\n            [80, 20],\n            [90, 20],\n            [90, 10],\n            [80, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [80, 20],\n            [80, 30],\n            [90, 30],\n            [90, 20],\n            [80, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [80, 30],\n            [80, 40],\n            [90, 40],\n            [90, 30],\n            [80, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [80, 40],\n            [80, 50],\n            [90, 50],\n            [90, 40],\n            [80, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [80, 50],\n            [80, 60],\n            [90, 60],\n            [90, 50],\n            [80, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [80, 60],\n            [80, 70],\n            [90, 70],\n            [90, 60],\n            [80, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [80, 70],\n            [80, 80],\n            [90, 80],\n            [90, 70],\n            [80, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [80, 80],\n            [80, 90],\n            [90, 90],\n            [90, 80],\n            [80, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [90, -90],\n            [90, -80],\n            [100, -80],\n            [100, -90],\n            [90, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [90, -80],\n            [90, -70],\n            [100, -70],\n            [100, -80],\n            [90, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [90, -70],\n            [90, -60],\n            [100, -60],\n            [100, -70],\n            [90, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [90, -60],\n            [90, -50],\n            [100, -50],\n            [100, -60],\n            [90, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [90, -50],\n            [90, -40],\n            [100, -40],\n            [100, -50],\n            [90, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [90, -40],\n            [90, -30],\n            [100, -30],\n            [100, -40],\n            [90, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [90, -30],\n            [90, -20],\n            [100, -20],\n            [100, -30],\n            [90, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [90, -20],\n            [90, -10],\n            [100, -10],\n            [100, -20],\n            [90, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [90, -10],\n            [90, 0],\n            [100, 0],\n            [100, -10],\n            [90, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [90, 0],\n            [90, 10],\n            [100, 10],\n            [100, 0],\n            [90, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [90, 10],\n            [90, 20],\n            [100, 20],\n            [100, 10],\n            [90, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [90, 20],\n            [90, 30],\n            [100, 30],\n            [100, 20],\n            [90, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [90, 30],\n            [90, 40],\n            [100, 40],\n            [100, 30],\n            [90, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [90, 40],\n            [90, 50],\n            [100, 50],\n            [100, 40],\n            [90, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [90, 50],\n            [90, 60],\n            [100, 60],\n            [100, 50],\n            [90, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [90, 60],\n            [90, 70],\n            [100, 70],\n            [100, 60],\n            [90, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [90, 70],\n            [90, 80],\n            [100, 80],\n            [100, 70],\n            [90, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [90, 80],\n            [90, 90],\n            [100, 90],\n            [100, 80],\n            [90, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, -90],\n            [100, -80],\n            [110, -80],\n            [110, -90],\n            [100, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, -80],\n            [100, -70],\n            [110, -70],\n            [110, -80],\n            [100, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, -70],\n            [100, -60],\n            [110, -60],\n            [110, -70],\n            [100, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, -60],\n            [100, -50],\n            [110, -50],\n            [110, -60],\n            [100, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, -50],\n            [100, -40],\n            [110, -40],\n            [110, -50],\n            [100, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, -40],\n            [100, -30],\n            [110, -30],\n            [110, -40],\n            [100, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, -30],\n            [100, -20],\n            [110, -20],\n            [110, -30],\n            [100, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, -20],\n            [100, -10],\n            [110, -10],\n            [110, -20],\n            [100, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, -10],\n            [100, 0],\n            [110, 0],\n            [110, -10],\n            [100, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, 0],\n            [100, 10],\n            [110, 10],\n            [110, 0],\n            [100, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, 10],\n            [100, 20],\n            [110, 20],\n            [110, 10],\n            [100, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, 20],\n            [100, 30],\n            [110, 30],\n            [110, 20],\n            [100, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, 30],\n            [100, 40],\n            [110, 40],\n            [110, 30],\n            [100, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, 40],\n            [100, 50],\n            [110, 50],\n            [110, 40],\n            [100, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, 50],\n            [100, 60],\n            [110, 60],\n            [110, 50],\n            [100, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, 60],\n            [100, 70],\n            [110, 70],\n            [110, 60],\n            [100, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, 70],\n            [100, 80],\n            [110, 80],\n            [110, 70],\n            [100, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100, 80],\n            [100, 90],\n            [110, 90],\n            [110, 80],\n            [100, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, -90],\n            [110, -80],\n            [120, -80],\n            [120, -90],\n            [110, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, -80],\n            [110, -70],\n            [120, -70],\n            [120, -80],\n            [110, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, -70],\n            [110, -60],\n            [120, -60],\n            [120, -70],\n            [110, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, -60],\n            [110, -50],\n            [120, -50],\n            [120, -60],\n            [110, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, -50],\n            [110, -40],\n            [120, -40],\n            [120, -50],\n            [110, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, -40],\n            [110, -30],\n            [120, -30],\n            [120, -40],\n            [110, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, -30],\n            [110, -20],\n            [120, -20],\n            [120, -30],\n            [110, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, -20],\n            [110, -10],\n            [120, -10],\n            [120, -20],\n            [110, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, -10],\n            [110, 0],\n            [120, 0],\n            [120, -10],\n            [110, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, 0],\n            [110, 10],\n            [120, 10],\n            [120, 0],\n            [110, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, 10],\n            [110, 20],\n            [120, 20],\n            [120, 10],\n            [110, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, 20],\n            [110, 30],\n            [120, 30],\n            [120, 20],\n            [110, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, 30],\n            [110, 40],\n            [120, 40],\n            [120, 30],\n            [110, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, 40],\n            [110, 50],\n            [120, 50],\n            [120, 40],\n            [110, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, 50],\n            [110, 60],\n            [120, 60],\n            [120, 50],\n            [110, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, 60],\n            [110, 70],\n            [120, 70],\n            [120, 60],\n            [110, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, 70],\n            [110, 80],\n            [120, 80],\n            [120, 70],\n            [110, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [110, 80],\n            [110, 90],\n            [120, 90],\n            [120, 80],\n            [110, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, -90],\n            [120, -80],\n            [130, -80],\n            [130, -90],\n            [120, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, -80],\n            [120, -70],\n            [130, -70],\n            [130, -80],\n            [120, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, -70],\n            [120, -60],\n            [130, -60],\n            [130, -70],\n            [120, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, -60],\n            [120, -50],\n            [130, -50],\n            [130, -60],\n            [120, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, -50],\n            [120, -40],\n            [130, -40],\n            [130, -50],\n            [120, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, -40],\n            [120, -30],\n            [130, -30],\n            [130, -40],\n            [120, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, -30],\n            [120, -20],\n            [130, -20],\n            [130, -30],\n            [120, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, -20],\n            [120, -10],\n            [130, -10],\n            [130, -20],\n            [120, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, -10],\n            [120, 0],\n            [130, 0],\n            [130, -10],\n            [120, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, 0],\n            [120, 10],\n            [130, 10],\n            [130, 0],\n            [120, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, 10],\n            [120, 20],\n            [130, 20],\n            [130, 10],\n            [120, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, 20],\n            [120, 30],\n            [130, 30],\n            [130, 20],\n            [120, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, 30],\n            [120, 40],\n            [130, 40],\n            [130, 30],\n            [120, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, 40],\n            [120, 50],\n            [130, 50],\n            [130, 40],\n            [120, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, 50],\n            [120, 60],\n            [130, 60],\n            [130, 50],\n            [120, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, 60],\n            [120, 70],\n            [130, 70],\n            [130, 60],\n            [120, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, 70],\n            [120, 80],\n            [130, 80],\n            [130, 70],\n            [120, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [120, 80],\n            [120, 90],\n            [130, 90],\n            [130, 80],\n            [120, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -90],\n            [130, -80],\n            [140, -80],\n            [140, -90],\n            [130, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -80],\n            [130, -70],\n            [140, -70],\n            [140, -80],\n            [130, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -70],\n            [130, -60],\n            [140, -60],\n            [140, -70],\n            [130, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -60],\n            [130, -50],\n            [140, -50],\n            [140, -60],\n            [130, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -50],\n            [130, -40],\n            [140, -40],\n            [140, -50],\n            [130, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -40],\n            [130, -30],\n            [140, -30],\n            [140, -40],\n            [130, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -30],\n            [130, -20],\n            [140, -20],\n            [140, -30],\n            [130, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -20],\n            [130, -10],\n            [140, -10],\n            [140, -20],\n            [130, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, -10],\n            [130, 0],\n            [140, 0],\n            [140, -10],\n            [130, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, 0],\n            [130, 10],\n            [140, 10],\n            [140, 0],\n            [130, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, 10],\n            [130, 20],\n            [140, 20],\n            [140, 10],\n            [130, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, 20],\n            [130, 30],\n            [140, 30],\n            [140, 20],\n            [130, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, 30],\n            [130, 40],\n            [140, 40],\n            [140, 30],\n            [130, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, 40],\n            [130, 50],\n            [140, 50],\n            [140, 40],\n            [130, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, 50],\n            [130, 60],\n            [140, 60],\n            [140, 50],\n            [130, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, 60],\n            [130, 70],\n            [140, 70],\n            [140, 60],\n            [130, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, 70],\n            [130, 80],\n            [140, 80],\n            [140, 70],\n            [130, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130, 80],\n            [130, 90],\n            [140, 90],\n            [140, 80],\n            [130, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -90],\n            [140, -80],\n            [150, -80],\n            [150, -90],\n            [140, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -80],\n            [140, -70],\n            [150, -70],\n            [150, -80],\n            [140, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -70],\n            [140, -60],\n            [150, -60],\n            [150, -70],\n            [140, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -60],\n            [140, -50],\n            [150, -50],\n            [150, -60],\n            [140, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -50],\n            [140, -40],\n            [150, -40],\n            [150, -50],\n            [140, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -40],\n            [140, -30],\n            [150, -30],\n            [150, -40],\n            [140, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -30],\n            [140, -20],\n            [150, -20],\n            [150, -30],\n            [140, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -20],\n            [140, -10],\n            [150, -10],\n            [150, -20],\n            [140, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -10],\n            [140, 0],\n            [150, 0],\n            [150, -10],\n            [140, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, 0],\n            [140, 10],\n            [150, 10],\n            [150, 0],\n            [140, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, 10],\n            [140, 20],\n            [150, 20],\n            [150, 10],\n            [140, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, 20],\n            [140, 30],\n            [150, 30],\n            [150, 20],\n            [140, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, 30],\n            [140, 40],\n            [150, 40],\n            [150, 30],\n            [140, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, 40],\n            [140, 50],\n            [150, 50],\n            [150, 40],\n            [140, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, 50],\n            [140, 60],\n            [150, 60],\n            [150, 50],\n            [140, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, 60],\n            [140, 70],\n            [150, 70],\n            [150, 60],\n            [140, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, 70],\n            [140, 80],\n            [150, 80],\n            [150, 70],\n            [140, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, 80],\n            [140, 90],\n            [150, 90],\n            [150, 80],\n            [140, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, -90],\n            [150, -80],\n            [160, -80],\n            [160, -90],\n            [150, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, -80],\n            [150, -70],\n            [160, -70],\n            [160, -80],\n            [150, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, -70],\n            [150, -60],\n            [160, -60],\n            [160, -70],\n            [150, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, -60],\n            [150, -50],\n            [160, -50],\n            [160, -60],\n            [150, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, -50],\n            [150, -40],\n            [160, -40],\n            [160, -50],\n            [150, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, -40],\n            [150, -30],\n            [160, -30],\n            [160, -40],\n            [150, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, -30],\n            [150, -20],\n            [160, -20],\n            [160, -30],\n            [150, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, -20],\n            [150, -10],\n            [160, -10],\n            [160, -20],\n            [150, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, -10],\n            [150, 0],\n            [160, 0],\n            [160, -10],\n            [150, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, 0],\n            [150, 10],\n            [160, 10],\n            [160, 0],\n            [150, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, 10],\n            [150, 20],\n            [160, 20],\n            [160, 10],\n            [150, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, 20],\n            [150, 30],\n            [160, 30],\n            [160, 20],\n            [150, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, 30],\n            [150, 40],\n            [160, 40],\n            [160, 30],\n            [150, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, 40],\n            [150, 50],\n            [160, 50],\n            [160, 40],\n            [150, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, 50],\n            [150, 60],\n            [160, 60],\n            [160, 50],\n            [150, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, 60],\n            [150, 70],\n            [160, 70],\n            [160, 60],\n            [150, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, 70],\n            [150, 80],\n            [160, 80],\n            [160, 70],\n            [150, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [150, 80],\n            [150, 90],\n            [160, 90],\n            [160, 80],\n            [150, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [160, -90],\n            [160, -80],\n            [170, -80],\n            [170, -90],\n            [160, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [160, -80],\n            [160, -70],\n            [170, -70],\n            [170, -80],\n            [160, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [160, -70],\n            [160, -60],\n            [170, -60],\n            [170, -70],\n            [160, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [160, -60],\n            [160, -50],\n            [170, -50],\n            [170, -60],\n            [160, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [160, -50],\n            [160, -40],\n            [170, -40],\n            [170, -50],\n            [160, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [160, -40],\n            [160, -30],\n            [170, -30],\n            [170, -40],\n            [160, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [160, -30],\n            [160, -20],\n            [170, -20],\n            [170, -30],\n            [160, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [160, -20],\n            [160, -10],\n            [170, -10],\n            [170, -20],\n            [160, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [160, -10],\n            [160, 0],\n            [170, 0],\n            [170, -10],\n            [160, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [160, 0],\n            [160, 10],\n            [170, 10],\n            [170, 0],\n            [160, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [160, 10],\n            [160, 20],\n            [170, 20],\n            [170, 10],\n            [160, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [160, 20],\n            [160, 30],\n            [170, 30],\n            [170, 20],\n            [160, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [160, 30],\n            [160, 40],\n            [170, 40],\n            [170, 30],\n            [160, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [160, 40],\n            [160, 50],\n            [170, 50],\n            [170, 40],\n            [160, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [160, 50],\n            [160, 60],\n            [170, 60],\n            [170, 50],\n            [160, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [160, 60],\n            [160, 70],\n            [170, 70],\n            [170, 60],\n            [160, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [160, 70],\n            [160, 80],\n            [170, 80],\n            [170, 70],\n            [160, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [160, 80],\n            [160, 90],\n            [170, 90],\n            [170, 80],\n            [160, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [170, -90],\n            [170, -80],\n            [180, -80],\n            [180, -90],\n            [170, -90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [170, -80],\n            [170, -70],\n            [180, -70],\n            [180, -80],\n            [170, -80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [170, -70],\n            [170, -60],\n            [180, -60],\n            [180, -70],\n            [170, -70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [170, -60],\n            [170, -50],\n            [180, -50],\n            [180, -60],\n            [170, -60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [170, -50],\n            [170, -40],\n            [180, -40],\n            [180, -50],\n            [170, -50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [170, -40],\n            [170, -30],\n            [180, -30],\n            [180, -40],\n            [170, -40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [170, -30],\n            [170, -20],\n            [180, -20],\n            [180, -30],\n            [170, -30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [170, -20],\n            [170, -10],\n            [180, -10],\n            [180, -20],\n            [170, -20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [170, -10],\n            [170, 0],\n            [180, 0],\n            [180, -10],\n            [170, -10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [170, 0],\n            [170, 10],\n            [180, 10],\n            [180, 0],\n            [170, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [170, 10],\n            [170, 20],\n            [180, 20],\n            [180, 10],\n            [170, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [170, 20],\n            [170, 30],\n            [180, 30],\n            [180, 20],\n            [170, 20]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [170, 30],\n            [170, 40],\n            [180, 40],\n            [180, 30],\n            [170, 30]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [170, 40],\n            [170, 50],\n            [180, 50],\n            [180, 40],\n            [170, 40]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [170, 50],\n            [170, 60],\n            [180, 60],\n            [180, 50],\n            [170, 50]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [170, 60],\n            [170, 70],\n            [180, 70],\n            [180, 60],\n            [170, 60]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [170, 70],\n            [170, 80],\n            [180, 80],\n            [180, 70],\n            [170, 70]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [170, 80],\n            [170, 90],\n            [180, 90],\n            [180, 80],\n            [170, 80]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-180, -90, 180, 90],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, -90],\n            [180, -90],\n            [180, 90],\n            [-180, 90],\n            [-180, -90]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rectangle-grid/test/out/victoria-20x100-km.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.003398, -38.748301],\n            [141.003398, -37.848981],\n            [141.183262, -37.848981],\n            [141.183262, -38.748301],\n            [141.003398, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.003398, -37.848981],\n            [141.003398, -36.94966],\n            [141.183262, -36.94966],\n            [141.183262, -37.848981],\n            [141.003398, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.003398, -36.94966],\n            [141.003398, -36.05034],\n            [141.183262, -36.05034],\n            [141.183262, -36.94966],\n            [141.003398, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.003398, -36.05034],\n            [141.003398, -35.151019],\n            [141.183262, -35.151019],\n            [141.183262, -36.05034],\n            [141.003398, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.003398, -35.151019],\n            [141.003398, -34.251699],\n            [141.183262, -34.251699],\n            [141.183262, -35.151019],\n            [141.003398, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.183262, -38.748301],\n            [141.183262, -37.848981],\n            [141.363126, -37.848981],\n            [141.363126, -38.748301],\n            [141.183262, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.183262, -37.848981],\n            [141.183262, -36.94966],\n            [141.363126, -36.94966],\n            [141.363126, -37.848981],\n            [141.183262, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.183262, -36.94966],\n            [141.183262, -36.05034],\n            [141.363126, -36.05034],\n            [141.363126, -36.94966],\n            [141.183262, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.183262, -36.05034],\n            [141.183262, -35.151019],\n            [141.363126, -35.151019],\n            [141.363126, -36.05034],\n            [141.183262, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.183262, -35.151019],\n            [141.183262, -34.251699],\n            [141.363126, -34.251699],\n            [141.363126, -35.151019],\n            [141.183262, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.363126, -38.748301],\n            [141.363126, -37.848981],\n            [141.54299, -37.848981],\n            [141.54299, -38.748301],\n            [141.363126, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.363126, -37.848981],\n            [141.363126, -36.94966],\n            [141.54299, -36.94966],\n            [141.54299, -37.848981],\n            [141.363126, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.363126, -36.94966],\n            [141.363126, -36.05034],\n            [141.54299, -36.05034],\n            [141.54299, -36.94966],\n            [141.363126, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.363126, -36.05034],\n            [141.363126, -35.151019],\n            [141.54299, -35.151019],\n            [141.54299, -36.05034],\n            [141.363126, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.363126, -35.151019],\n            [141.363126, -34.251699],\n            [141.54299, -34.251699],\n            [141.54299, -35.151019],\n            [141.363126, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.54299, -38.748301],\n            [141.54299, -37.848981],\n            [141.722854, -37.848981],\n            [141.722854, -38.748301],\n            [141.54299, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.54299, -37.848981],\n            [141.54299, -36.94966],\n            [141.722854, -36.94966],\n            [141.722854, -37.848981],\n            [141.54299, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.54299, -36.94966],\n            [141.54299, -36.05034],\n            [141.722854, -36.05034],\n            [141.722854, -36.94966],\n            [141.54299, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.54299, -36.05034],\n            [141.54299, -35.151019],\n            [141.722854, -35.151019],\n            [141.722854, -36.05034],\n            [141.54299, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.54299, -35.151019],\n            [141.54299, -34.251699],\n            [141.722854, -34.251699],\n            [141.722854, -35.151019],\n            [141.54299, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.722854, -38.748301],\n            [141.722854, -37.848981],\n            [141.902719, -37.848981],\n            [141.902719, -38.748301],\n            [141.722854, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.722854, -37.848981],\n            [141.722854, -36.94966],\n            [141.902719, -36.94966],\n            [141.902719, -37.848981],\n            [141.722854, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.722854, -36.94966],\n            [141.722854, -36.05034],\n            [141.902719, -36.05034],\n            [141.902719, -36.94966],\n            [141.722854, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.722854, -36.05034],\n            [141.722854, -35.151019],\n            [141.902719, -35.151019],\n            [141.902719, -36.05034],\n            [141.722854, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.722854, -35.151019],\n            [141.722854, -34.251699],\n            [141.902719, -34.251699],\n            [141.902719, -35.151019],\n            [141.722854, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.902719, -38.748301],\n            [141.902719, -37.848981],\n            [142.082583, -37.848981],\n            [142.082583, -38.748301],\n            [141.902719, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.902719, -37.848981],\n            [141.902719, -36.94966],\n            [142.082583, -36.94966],\n            [142.082583, -37.848981],\n            [141.902719, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.902719, -36.94966],\n            [141.902719, -36.05034],\n            [142.082583, -36.05034],\n            [142.082583, -36.94966],\n            [141.902719, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.902719, -36.05034],\n            [141.902719, -35.151019],\n            [142.082583, -35.151019],\n            [142.082583, -36.05034],\n            [141.902719, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141.902719, -35.151019],\n            [141.902719, -34.251699],\n            [142.082583, -34.251699],\n            [142.082583, -35.151019],\n            [141.902719, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.082583, -38.748301],\n            [142.082583, -37.848981],\n            [142.262447, -37.848981],\n            [142.262447, -38.748301],\n            [142.082583, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.082583, -37.848981],\n            [142.082583, -36.94966],\n            [142.262447, -36.94966],\n            [142.262447, -37.848981],\n            [142.082583, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.082583, -36.94966],\n            [142.082583, -36.05034],\n            [142.262447, -36.05034],\n            [142.262447, -36.94966],\n            [142.082583, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.082583, -36.05034],\n            [142.082583, -35.151019],\n            [142.262447, -35.151019],\n            [142.262447, -36.05034],\n            [142.082583, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.082583, -35.151019],\n            [142.082583, -34.251699],\n            [142.262447, -34.251699],\n            [142.262447, -35.151019],\n            [142.082583, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.262447, -38.748301],\n            [142.262447, -37.848981],\n            [142.442311, -37.848981],\n            [142.442311, -38.748301],\n            [142.262447, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.262447, -37.848981],\n            [142.262447, -36.94966],\n            [142.442311, -36.94966],\n            [142.442311, -37.848981],\n            [142.262447, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.262447, -36.94966],\n            [142.262447, -36.05034],\n            [142.442311, -36.05034],\n            [142.442311, -36.94966],\n            [142.262447, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.262447, -36.05034],\n            [142.262447, -35.151019],\n            [142.442311, -35.151019],\n            [142.442311, -36.05034],\n            [142.262447, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.262447, -35.151019],\n            [142.262447, -34.251699],\n            [142.442311, -34.251699],\n            [142.442311, -35.151019],\n            [142.262447, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.442311, -38.748301],\n            [142.442311, -37.848981],\n            [142.622175, -37.848981],\n            [142.622175, -38.748301],\n            [142.442311, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.442311, -37.848981],\n            [142.442311, -36.94966],\n            [142.622175, -36.94966],\n            [142.622175, -37.848981],\n            [142.442311, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.442311, -36.94966],\n            [142.442311, -36.05034],\n            [142.622175, -36.05034],\n            [142.622175, -36.94966],\n            [142.442311, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.442311, -36.05034],\n            [142.442311, -35.151019],\n            [142.622175, -35.151019],\n            [142.622175, -36.05034],\n            [142.442311, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.442311, -35.151019],\n            [142.442311, -34.251699],\n            [142.622175, -34.251699],\n            [142.622175, -35.151019],\n            [142.442311, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.622175, -38.748301],\n            [142.622175, -37.848981],\n            [142.802039, -37.848981],\n            [142.802039, -38.748301],\n            [142.622175, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.622175, -37.848981],\n            [142.622175, -36.94966],\n            [142.802039, -36.94966],\n            [142.802039, -37.848981],\n            [142.622175, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.622175, -36.94966],\n            [142.622175, -36.05034],\n            [142.802039, -36.05034],\n            [142.802039, -36.94966],\n            [142.622175, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.622175, -36.05034],\n            [142.622175, -35.151019],\n            [142.802039, -35.151019],\n            [142.802039, -36.05034],\n            [142.622175, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.622175, -35.151019],\n            [142.622175, -34.251699],\n            [142.802039, -34.251699],\n            [142.802039, -35.151019],\n            [142.622175, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.802039, -38.748301],\n            [142.802039, -37.848981],\n            [142.981903, -37.848981],\n            [142.981903, -38.748301],\n            [142.802039, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.802039, -37.848981],\n            [142.802039, -36.94966],\n            [142.981903, -36.94966],\n            [142.981903, -37.848981],\n            [142.802039, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.802039, -36.94966],\n            [142.802039, -36.05034],\n            [142.981903, -36.05034],\n            [142.981903, -36.94966],\n            [142.802039, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.802039, -36.05034],\n            [142.802039, -35.151019],\n            [142.981903, -35.151019],\n            [142.981903, -36.05034],\n            [142.802039, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.802039, -35.151019],\n            [142.802039, -34.251699],\n            [142.981903, -34.251699],\n            [142.981903, -35.151019],\n            [142.802039, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.981903, -38.748301],\n            [142.981903, -37.848981],\n            [143.161767, -37.848981],\n            [143.161767, -38.748301],\n            [142.981903, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.981903, -37.848981],\n            [142.981903, -36.94966],\n            [143.161767, -36.94966],\n            [143.161767, -37.848981],\n            [142.981903, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.981903, -36.94966],\n            [142.981903, -36.05034],\n            [143.161767, -36.05034],\n            [143.161767, -36.94966],\n            [142.981903, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.981903, -36.05034],\n            [142.981903, -35.151019],\n            [143.161767, -35.151019],\n            [143.161767, -36.05034],\n            [142.981903, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [142.981903, -35.151019],\n            [142.981903, -34.251699],\n            [143.161767, -34.251699],\n            [143.161767, -35.151019],\n            [142.981903, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.161767, -38.748301],\n            [143.161767, -37.848981],\n            [143.341631, -37.848981],\n            [143.341631, -38.748301],\n            [143.161767, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.161767, -37.848981],\n            [143.161767, -36.94966],\n            [143.341631, -36.94966],\n            [143.341631, -37.848981],\n            [143.161767, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.161767, -36.94966],\n            [143.161767, -36.05034],\n            [143.341631, -36.05034],\n            [143.341631, -36.94966],\n            [143.161767, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.161767, -36.05034],\n            [143.161767, -35.151019],\n            [143.341631, -35.151019],\n            [143.341631, -36.05034],\n            [143.161767, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.161767, -35.151019],\n            [143.161767, -34.251699],\n            [143.341631, -34.251699],\n            [143.341631, -35.151019],\n            [143.161767, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.341631, -38.748301],\n            [143.341631, -37.848981],\n            [143.521495, -37.848981],\n            [143.521495, -38.748301],\n            [143.341631, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.341631, -37.848981],\n            [143.341631, -36.94966],\n            [143.521495, -36.94966],\n            [143.521495, -37.848981],\n            [143.341631, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.341631, -36.94966],\n            [143.341631, -36.05034],\n            [143.521495, -36.05034],\n            [143.521495, -36.94966],\n            [143.341631, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.341631, -36.05034],\n            [143.341631, -35.151019],\n            [143.521495, -35.151019],\n            [143.521495, -36.05034],\n            [143.341631, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.341631, -35.151019],\n            [143.341631, -34.251699],\n            [143.521495, -34.251699],\n            [143.521495, -35.151019],\n            [143.341631, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.521495, -38.748301],\n            [143.521495, -37.848981],\n            [143.701359, -37.848981],\n            [143.701359, -38.748301],\n            [143.521495, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.521495, -37.848981],\n            [143.521495, -36.94966],\n            [143.701359, -36.94966],\n            [143.701359, -37.848981],\n            [143.521495, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.521495, -36.94966],\n            [143.521495, -36.05034],\n            [143.701359, -36.05034],\n            [143.701359, -36.94966],\n            [143.521495, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.521495, -36.05034],\n            [143.521495, -35.151019],\n            [143.701359, -35.151019],\n            [143.701359, -36.05034],\n            [143.521495, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.521495, -35.151019],\n            [143.521495, -34.251699],\n            [143.701359, -34.251699],\n            [143.701359, -35.151019],\n            [143.521495, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.701359, -38.748301],\n            [143.701359, -37.848981],\n            [143.881223, -37.848981],\n            [143.881223, -38.748301],\n            [143.701359, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.701359, -37.848981],\n            [143.701359, -36.94966],\n            [143.881223, -36.94966],\n            [143.881223, -37.848981],\n            [143.701359, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.701359, -36.94966],\n            [143.701359, -36.05034],\n            [143.881223, -36.05034],\n            [143.881223, -36.94966],\n            [143.701359, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.701359, -36.05034],\n            [143.701359, -35.151019],\n            [143.881223, -35.151019],\n            [143.881223, -36.05034],\n            [143.701359, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.701359, -35.151019],\n            [143.701359, -34.251699],\n            [143.881223, -34.251699],\n            [143.881223, -35.151019],\n            [143.701359, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.881223, -38.748301],\n            [143.881223, -37.848981],\n            [144.061087, -37.848981],\n            [144.061087, -38.748301],\n            [143.881223, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.881223, -37.848981],\n            [143.881223, -36.94966],\n            [144.061087, -36.94966],\n            [144.061087, -37.848981],\n            [143.881223, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.881223, -36.94966],\n            [143.881223, -36.05034],\n            [144.061087, -36.05034],\n            [144.061087, -36.94966],\n            [143.881223, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.881223, -36.05034],\n            [143.881223, -35.151019],\n            [144.061087, -35.151019],\n            [144.061087, -36.05034],\n            [143.881223, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143.881223, -35.151019],\n            [143.881223, -34.251699],\n            [144.061087, -34.251699],\n            [144.061087, -35.151019],\n            [143.881223, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.061087, -38.748301],\n            [144.061087, -37.848981],\n            [144.240951, -37.848981],\n            [144.240951, -38.748301],\n            [144.061087, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.061087, -37.848981],\n            [144.061087, -36.94966],\n            [144.240951, -36.94966],\n            [144.240951, -37.848981],\n            [144.061087, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.061087, -36.94966],\n            [144.061087, -36.05034],\n            [144.240951, -36.05034],\n            [144.240951, -36.94966],\n            [144.061087, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.061087, -36.05034],\n            [144.061087, -35.151019],\n            [144.240951, -35.151019],\n            [144.240951, -36.05034],\n            [144.061087, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.061087, -35.151019],\n            [144.061087, -34.251699],\n            [144.240951, -34.251699],\n            [144.240951, -35.151019],\n            [144.061087, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.240951, -38.748301],\n            [144.240951, -37.848981],\n            [144.420816, -37.848981],\n            [144.420816, -38.748301],\n            [144.240951, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.240951, -37.848981],\n            [144.240951, -36.94966],\n            [144.420816, -36.94966],\n            [144.420816, -37.848981],\n            [144.240951, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.240951, -36.94966],\n            [144.240951, -36.05034],\n            [144.420816, -36.05034],\n            [144.420816, -36.94966],\n            [144.240951, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.240951, -36.05034],\n            [144.240951, -35.151019],\n            [144.420816, -35.151019],\n            [144.420816, -36.05034],\n            [144.240951, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.240951, -35.151019],\n            [144.240951, -34.251699],\n            [144.420816, -34.251699],\n            [144.420816, -35.151019],\n            [144.240951, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.420816, -38.748301],\n            [144.420816, -37.848981],\n            [144.60068, -37.848981],\n            [144.60068, -38.748301],\n            [144.420816, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.420816, -37.848981],\n            [144.420816, -36.94966],\n            [144.60068, -36.94966],\n            [144.60068, -37.848981],\n            [144.420816, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.420816, -36.94966],\n            [144.420816, -36.05034],\n            [144.60068, -36.05034],\n            [144.60068, -36.94966],\n            [144.420816, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.420816, -36.05034],\n            [144.420816, -35.151019],\n            [144.60068, -35.151019],\n            [144.60068, -36.05034],\n            [144.420816, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.420816, -35.151019],\n            [144.420816, -34.251699],\n            [144.60068, -34.251699],\n            [144.60068, -35.151019],\n            [144.420816, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.60068, -38.748301],\n            [144.60068, -37.848981],\n            [144.780544, -37.848981],\n            [144.780544, -38.748301],\n            [144.60068, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.60068, -37.848981],\n            [144.60068, -36.94966],\n            [144.780544, -36.94966],\n            [144.780544, -37.848981],\n            [144.60068, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.60068, -36.94966],\n            [144.60068, -36.05034],\n            [144.780544, -36.05034],\n            [144.780544, -36.94966],\n            [144.60068, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.60068, -36.05034],\n            [144.60068, -35.151019],\n            [144.780544, -35.151019],\n            [144.780544, -36.05034],\n            [144.60068, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.60068, -35.151019],\n            [144.60068, -34.251699],\n            [144.780544, -34.251699],\n            [144.780544, -35.151019],\n            [144.60068, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.780544, -38.748301],\n            [144.780544, -37.848981],\n            [144.960408, -37.848981],\n            [144.960408, -38.748301],\n            [144.780544, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.780544, -37.848981],\n            [144.780544, -36.94966],\n            [144.960408, -36.94966],\n            [144.960408, -37.848981],\n            [144.780544, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.780544, -36.94966],\n            [144.780544, -36.05034],\n            [144.960408, -36.05034],\n            [144.960408, -36.94966],\n            [144.780544, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.780544, -36.05034],\n            [144.780544, -35.151019],\n            [144.960408, -35.151019],\n            [144.960408, -36.05034],\n            [144.780544, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.780544, -35.151019],\n            [144.780544, -34.251699],\n            [144.960408, -34.251699],\n            [144.960408, -35.151019],\n            [144.780544, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.960408, -38.748301],\n            [144.960408, -37.848981],\n            [145.140272, -37.848981],\n            [145.140272, -38.748301],\n            [144.960408, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.960408, -37.848981],\n            [144.960408, -36.94966],\n            [145.140272, -36.94966],\n            [145.140272, -37.848981],\n            [144.960408, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.960408, -36.94966],\n            [144.960408, -36.05034],\n            [145.140272, -36.05034],\n            [145.140272, -36.94966],\n            [144.960408, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.960408, -36.05034],\n            [144.960408, -35.151019],\n            [145.140272, -35.151019],\n            [145.140272, -36.05034],\n            [144.960408, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.960408, -35.151019],\n            [144.960408, -34.251699],\n            [145.140272, -34.251699],\n            [145.140272, -35.151019],\n            [144.960408, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.140272, -38.748301],\n            [145.140272, -37.848981],\n            [145.320136, -37.848981],\n            [145.320136, -38.748301],\n            [145.140272, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.140272, -37.848981],\n            [145.140272, -36.94966],\n            [145.320136, -36.94966],\n            [145.320136, -37.848981],\n            [145.140272, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.140272, -36.94966],\n            [145.140272, -36.05034],\n            [145.320136, -36.05034],\n            [145.320136, -36.94966],\n            [145.140272, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.140272, -36.05034],\n            [145.140272, -35.151019],\n            [145.320136, -35.151019],\n            [145.320136, -36.05034],\n            [145.140272, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.140272, -35.151019],\n            [145.140272, -34.251699],\n            [145.320136, -34.251699],\n            [145.320136, -35.151019],\n            [145.140272, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.320136, -38.748301],\n            [145.320136, -37.848981],\n            [145.5, -37.848981],\n            [145.5, -38.748301],\n            [145.320136, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.320136, -37.848981],\n            [145.320136, -36.94966],\n            [145.5, -36.94966],\n            [145.5, -37.848981],\n            [145.320136, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.320136, -36.94966],\n            [145.320136, -36.05034],\n            [145.5, -36.05034],\n            [145.5, -36.94966],\n            [145.320136, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.320136, -36.05034],\n            [145.320136, -35.151019],\n            [145.5, -35.151019],\n            [145.5, -36.05034],\n            [145.320136, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.320136, -35.151019],\n            [145.320136, -34.251699],\n            [145.5, -34.251699],\n            [145.5, -35.151019],\n            [145.320136, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.5, -38.748301],\n            [145.5, -37.848981],\n            [145.679864, -37.848981],\n            [145.679864, -38.748301],\n            [145.5, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.5, -37.848981],\n            [145.5, -36.94966],\n            [145.679864, -36.94966],\n            [145.679864, -37.848981],\n            [145.5, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.5, -36.94966],\n            [145.5, -36.05034],\n            [145.679864, -36.05034],\n            [145.679864, -36.94966],\n            [145.5, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.5, -36.05034],\n            [145.5, -35.151019],\n            [145.679864, -35.151019],\n            [145.679864, -36.05034],\n            [145.5, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.5, -35.151019],\n            [145.5, -34.251699],\n            [145.679864, -34.251699],\n            [145.679864, -35.151019],\n            [145.5, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.679864, -38.748301],\n            [145.679864, -37.848981],\n            [145.859728, -37.848981],\n            [145.859728, -38.748301],\n            [145.679864, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.679864, -37.848981],\n            [145.679864, -36.94966],\n            [145.859728, -36.94966],\n            [145.859728, -37.848981],\n            [145.679864, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.679864, -36.94966],\n            [145.679864, -36.05034],\n            [145.859728, -36.05034],\n            [145.859728, -36.94966],\n            [145.679864, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.679864, -36.05034],\n            [145.679864, -35.151019],\n            [145.859728, -35.151019],\n            [145.859728, -36.05034],\n            [145.679864, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.679864, -35.151019],\n            [145.679864, -34.251699],\n            [145.859728, -34.251699],\n            [145.859728, -35.151019],\n            [145.679864, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.859728, -38.748301],\n            [145.859728, -37.848981],\n            [146.039592, -37.848981],\n            [146.039592, -38.748301],\n            [145.859728, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.859728, -37.848981],\n            [145.859728, -36.94966],\n            [146.039592, -36.94966],\n            [146.039592, -37.848981],\n            [145.859728, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.859728, -36.94966],\n            [145.859728, -36.05034],\n            [146.039592, -36.05034],\n            [146.039592, -36.94966],\n            [145.859728, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.859728, -36.05034],\n            [145.859728, -35.151019],\n            [146.039592, -35.151019],\n            [146.039592, -36.05034],\n            [145.859728, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.859728, -35.151019],\n            [145.859728, -34.251699],\n            [146.039592, -34.251699],\n            [146.039592, -35.151019],\n            [145.859728, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.039592, -38.748301],\n            [146.039592, -37.848981],\n            [146.219456, -37.848981],\n            [146.219456, -38.748301],\n            [146.039592, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.039592, -37.848981],\n            [146.039592, -36.94966],\n            [146.219456, -36.94966],\n            [146.219456, -37.848981],\n            [146.039592, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.039592, -36.94966],\n            [146.039592, -36.05034],\n            [146.219456, -36.05034],\n            [146.219456, -36.94966],\n            [146.039592, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.039592, -36.05034],\n            [146.039592, -35.151019],\n            [146.219456, -35.151019],\n            [146.219456, -36.05034],\n            [146.039592, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.039592, -35.151019],\n            [146.039592, -34.251699],\n            [146.219456, -34.251699],\n            [146.219456, -35.151019],\n            [146.039592, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.219456, -38.748301],\n            [146.219456, -37.848981],\n            [146.39932, -37.848981],\n            [146.39932, -38.748301],\n            [146.219456, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.219456, -37.848981],\n            [146.219456, -36.94966],\n            [146.39932, -36.94966],\n            [146.39932, -37.848981],\n            [146.219456, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.219456, -36.94966],\n            [146.219456, -36.05034],\n            [146.39932, -36.05034],\n            [146.39932, -36.94966],\n            [146.219456, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.219456, -36.05034],\n            [146.219456, -35.151019],\n            [146.39932, -35.151019],\n            [146.39932, -36.05034],\n            [146.219456, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.219456, -35.151019],\n            [146.219456, -34.251699],\n            [146.39932, -34.251699],\n            [146.39932, -35.151019],\n            [146.219456, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.39932, -38.748301],\n            [146.39932, -37.848981],\n            [146.579184, -37.848981],\n            [146.579184, -38.748301],\n            [146.39932, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.39932, -37.848981],\n            [146.39932, -36.94966],\n            [146.579184, -36.94966],\n            [146.579184, -37.848981],\n            [146.39932, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.39932, -36.94966],\n            [146.39932, -36.05034],\n            [146.579184, -36.05034],\n            [146.579184, -36.94966],\n            [146.39932, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.39932, -36.05034],\n            [146.39932, -35.151019],\n            [146.579184, -35.151019],\n            [146.579184, -36.05034],\n            [146.39932, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.39932, -35.151019],\n            [146.39932, -34.251699],\n            [146.579184, -34.251699],\n            [146.579184, -35.151019],\n            [146.39932, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.579184, -38.748301],\n            [146.579184, -37.848981],\n            [146.759049, -37.848981],\n            [146.759049, -38.748301],\n            [146.579184, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.579184, -37.848981],\n            [146.579184, -36.94966],\n            [146.759049, -36.94966],\n            [146.759049, -37.848981],\n            [146.579184, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.579184, -36.94966],\n            [146.579184, -36.05034],\n            [146.759049, -36.05034],\n            [146.759049, -36.94966],\n            [146.579184, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.579184, -36.05034],\n            [146.579184, -35.151019],\n            [146.759049, -35.151019],\n            [146.759049, -36.05034],\n            [146.579184, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.579184, -35.151019],\n            [146.579184, -34.251699],\n            [146.759049, -34.251699],\n            [146.759049, -35.151019],\n            [146.579184, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.759049, -38.748301],\n            [146.759049, -37.848981],\n            [146.938913, -37.848981],\n            [146.938913, -38.748301],\n            [146.759049, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.759049, -37.848981],\n            [146.759049, -36.94966],\n            [146.938913, -36.94966],\n            [146.938913, -37.848981],\n            [146.759049, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.759049, -36.94966],\n            [146.759049, -36.05034],\n            [146.938913, -36.05034],\n            [146.938913, -36.94966],\n            [146.759049, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.759049, -36.05034],\n            [146.759049, -35.151019],\n            [146.938913, -35.151019],\n            [146.938913, -36.05034],\n            [146.759049, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.759049, -35.151019],\n            [146.759049, -34.251699],\n            [146.938913, -34.251699],\n            [146.938913, -35.151019],\n            [146.759049, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.938913, -38.748301],\n            [146.938913, -37.848981],\n            [147.118777, -37.848981],\n            [147.118777, -38.748301],\n            [146.938913, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.938913, -37.848981],\n            [146.938913, -36.94966],\n            [147.118777, -36.94966],\n            [147.118777, -37.848981],\n            [146.938913, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.938913, -36.94966],\n            [146.938913, -36.05034],\n            [147.118777, -36.05034],\n            [147.118777, -36.94966],\n            [146.938913, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.938913, -36.05034],\n            [146.938913, -35.151019],\n            [147.118777, -35.151019],\n            [147.118777, -36.05034],\n            [146.938913, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146.938913, -35.151019],\n            [146.938913, -34.251699],\n            [147.118777, -34.251699],\n            [147.118777, -35.151019],\n            [146.938913, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.118777, -38.748301],\n            [147.118777, -37.848981],\n            [147.298641, -37.848981],\n            [147.298641, -38.748301],\n            [147.118777, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.118777, -37.848981],\n            [147.118777, -36.94966],\n            [147.298641, -36.94966],\n            [147.298641, -37.848981],\n            [147.118777, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.118777, -36.94966],\n            [147.118777, -36.05034],\n            [147.298641, -36.05034],\n            [147.298641, -36.94966],\n            [147.118777, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.118777, -36.05034],\n            [147.118777, -35.151019],\n            [147.298641, -35.151019],\n            [147.298641, -36.05034],\n            [147.118777, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.118777, -35.151019],\n            [147.118777, -34.251699],\n            [147.298641, -34.251699],\n            [147.298641, -35.151019],\n            [147.118777, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.298641, -38.748301],\n            [147.298641, -37.848981],\n            [147.478505, -37.848981],\n            [147.478505, -38.748301],\n            [147.298641, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.298641, -37.848981],\n            [147.298641, -36.94966],\n            [147.478505, -36.94966],\n            [147.478505, -37.848981],\n            [147.298641, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.298641, -36.94966],\n            [147.298641, -36.05034],\n            [147.478505, -36.05034],\n            [147.478505, -36.94966],\n            [147.298641, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.298641, -36.05034],\n            [147.298641, -35.151019],\n            [147.478505, -35.151019],\n            [147.478505, -36.05034],\n            [147.298641, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.298641, -35.151019],\n            [147.298641, -34.251699],\n            [147.478505, -34.251699],\n            [147.478505, -35.151019],\n            [147.298641, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.478505, -38.748301],\n            [147.478505, -37.848981],\n            [147.658369, -37.848981],\n            [147.658369, -38.748301],\n            [147.478505, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.478505, -37.848981],\n            [147.478505, -36.94966],\n            [147.658369, -36.94966],\n            [147.658369, -37.848981],\n            [147.478505, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.478505, -36.94966],\n            [147.478505, -36.05034],\n            [147.658369, -36.05034],\n            [147.658369, -36.94966],\n            [147.478505, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.478505, -36.05034],\n            [147.478505, -35.151019],\n            [147.658369, -35.151019],\n            [147.658369, -36.05034],\n            [147.478505, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.478505, -35.151019],\n            [147.478505, -34.251699],\n            [147.658369, -34.251699],\n            [147.658369, -35.151019],\n            [147.478505, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.658369, -38.748301],\n            [147.658369, -37.848981],\n            [147.838233, -37.848981],\n            [147.838233, -38.748301],\n            [147.658369, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.658369, -37.848981],\n            [147.658369, -36.94966],\n            [147.838233, -36.94966],\n            [147.838233, -37.848981],\n            [147.658369, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.658369, -36.94966],\n            [147.658369, -36.05034],\n            [147.838233, -36.05034],\n            [147.838233, -36.94966],\n            [147.658369, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.658369, -36.05034],\n            [147.658369, -35.151019],\n            [147.838233, -35.151019],\n            [147.838233, -36.05034],\n            [147.658369, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.658369, -35.151019],\n            [147.658369, -34.251699],\n            [147.838233, -34.251699],\n            [147.838233, -35.151019],\n            [147.658369, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.838233, -38.748301],\n            [147.838233, -37.848981],\n            [148.018097, -37.848981],\n            [148.018097, -38.748301],\n            [147.838233, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.838233, -37.848981],\n            [147.838233, -36.94966],\n            [148.018097, -36.94966],\n            [148.018097, -37.848981],\n            [147.838233, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.838233, -36.94966],\n            [147.838233, -36.05034],\n            [148.018097, -36.05034],\n            [148.018097, -36.94966],\n            [147.838233, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.838233, -36.05034],\n            [147.838233, -35.151019],\n            [148.018097, -35.151019],\n            [148.018097, -36.05034],\n            [147.838233, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [147.838233, -35.151019],\n            [147.838233, -34.251699],\n            [148.018097, -34.251699],\n            [148.018097, -35.151019],\n            [147.838233, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.018097, -38.748301],\n            [148.018097, -37.848981],\n            [148.197961, -37.848981],\n            [148.197961, -38.748301],\n            [148.018097, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.018097, -37.848981],\n            [148.018097, -36.94966],\n            [148.197961, -36.94966],\n            [148.197961, -37.848981],\n            [148.018097, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.018097, -36.94966],\n            [148.018097, -36.05034],\n            [148.197961, -36.05034],\n            [148.197961, -36.94966],\n            [148.018097, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.018097, -36.05034],\n            [148.018097, -35.151019],\n            [148.197961, -35.151019],\n            [148.197961, -36.05034],\n            [148.018097, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.018097, -35.151019],\n            [148.018097, -34.251699],\n            [148.197961, -34.251699],\n            [148.197961, -35.151019],\n            [148.018097, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.197961, -38.748301],\n            [148.197961, -37.848981],\n            [148.377825, -37.848981],\n            [148.377825, -38.748301],\n            [148.197961, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.197961, -37.848981],\n            [148.197961, -36.94966],\n            [148.377825, -36.94966],\n            [148.377825, -37.848981],\n            [148.197961, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.197961, -36.94966],\n            [148.197961, -36.05034],\n            [148.377825, -36.05034],\n            [148.377825, -36.94966],\n            [148.197961, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.197961, -36.05034],\n            [148.197961, -35.151019],\n            [148.377825, -35.151019],\n            [148.377825, -36.05034],\n            [148.197961, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.197961, -35.151019],\n            [148.197961, -34.251699],\n            [148.377825, -34.251699],\n            [148.377825, -35.151019],\n            [148.197961, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.377825, -38.748301],\n            [148.377825, -37.848981],\n            [148.557689, -37.848981],\n            [148.557689, -38.748301],\n            [148.377825, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.377825, -37.848981],\n            [148.377825, -36.94966],\n            [148.557689, -36.94966],\n            [148.557689, -37.848981],\n            [148.377825, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.377825, -36.94966],\n            [148.377825, -36.05034],\n            [148.557689, -36.05034],\n            [148.557689, -36.94966],\n            [148.377825, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.377825, -36.05034],\n            [148.377825, -35.151019],\n            [148.557689, -35.151019],\n            [148.557689, -36.05034],\n            [148.377825, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.377825, -35.151019],\n            [148.377825, -34.251699],\n            [148.557689, -34.251699],\n            [148.557689, -35.151019],\n            [148.377825, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.557689, -38.748301],\n            [148.557689, -37.848981],\n            [148.737553, -37.848981],\n            [148.737553, -38.748301],\n            [148.557689, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.557689, -37.848981],\n            [148.557689, -36.94966],\n            [148.737553, -36.94966],\n            [148.737553, -37.848981],\n            [148.557689, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.557689, -36.94966],\n            [148.557689, -36.05034],\n            [148.737553, -36.05034],\n            [148.737553, -36.94966],\n            [148.557689, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.557689, -36.05034],\n            [148.557689, -35.151019],\n            [148.737553, -35.151019],\n            [148.737553, -36.05034],\n            [148.557689, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.557689, -35.151019],\n            [148.557689, -34.251699],\n            [148.737553, -34.251699],\n            [148.737553, -35.151019],\n            [148.557689, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.737553, -38.748301],\n            [148.737553, -37.848981],\n            [148.917417, -37.848981],\n            [148.917417, -38.748301],\n            [148.737553, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.737553, -37.848981],\n            [148.737553, -36.94966],\n            [148.917417, -36.94966],\n            [148.917417, -37.848981],\n            [148.737553, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.737553, -36.94966],\n            [148.737553, -36.05034],\n            [148.917417, -36.05034],\n            [148.917417, -36.94966],\n            [148.737553, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.737553, -36.05034],\n            [148.737553, -35.151019],\n            [148.917417, -35.151019],\n            [148.917417, -36.05034],\n            [148.737553, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.737553, -35.151019],\n            [148.737553, -34.251699],\n            [148.917417, -34.251699],\n            [148.917417, -35.151019],\n            [148.737553, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.917417, -38.748301],\n            [148.917417, -37.848981],\n            [149.097281, -37.848981],\n            [149.097281, -38.748301],\n            [148.917417, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.917417, -37.848981],\n            [148.917417, -36.94966],\n            [149.097281, -36.94966],\n            [149.097281, -37.848981],\n            [148.917417, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.917417, -36.94966],\n            [148.917417, -36.05034],\n            [149.097281, -36.05034],\n            [149.097281, -36.94966],\n            [148.917417, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.917417, -36.05034],\n            [148.917417, -35.151019],\n            [149.097281, -35.151019],\n            [149.097281, -36.05034],\n            [148.917417, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [148.917417, -35.151019],\n            [148.917417, -34.251699],\n            [149.097281, -34.251699],\n            [149.097281, -35.151019],\n            [148.917417, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.097281, -38.748301],\n            [149.097281, -37.848981],\n            [149.277146, -37.848981],\n            [149.277146, -38.748301],\n            [149.097281, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.097281, -37.848981],\n            [149.097281, -36.94966],\n            [149.277146, -36.94966],\n            [149.277146, -37.848981],\n            [149.097281, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.097281, -36.94966],\n            [149.097281, -36.05034],\n            [149.277146, -36.05034],\n            [149.277146, -36.94966],\n            [149.097281, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.097281, -36.05034],\n            [149.097281, -35.151019],\n            [149.277146, -35.151019],\n            [149.277146, -36.05034],\n            [149.097281, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.097281, -35.151019],\n            [149.097281, -34.251699],\n            [149.277146, -34.251699],\n            [149.277146, -35.151019],\n            [149.097281, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.277146, -38.748301],\n            [149.277146, -37.848981],\n            [149.45701, -37.848981],\n            [149.45701, -38.748301],\n            [149.277146, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.277146, -37.848981],\n            [149.277146, -36.94966],\n            [149.45701, -36.94966],\n            [149.45701, -37.848981],\n            [149.277146, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.277146, -36.94966],\n            [149.277146, -36.05034],\n            [149.45701, -36.05034],\n            [149.45701, -36.94966],\n            [149.277146, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.277146, -36.05034],\n            [149.277146, -35.151019],\n            [149.45701, -35.151019],\n            [149.45701, -36.05034],\n            [149.277146, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.277146, -35.151019],\n            [149.277146, -34.251699],\n            [149.45701, -34.251699],\n            [149.45701, -35.151019],\n            [149.277146, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.45701, -38.748301],\n            [149.45701, -37.848981],\n            [149.636874, -37.848981],\n            [149.636874, -38.748301],\n            [149.45701, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.45701, -37.848981],\n            [149.45701, -36.94966],\n            [149.636874, -36.94966],\n            [149.636874, -37.848981],\n            [149.45701, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.45701, -36.94966],\n            [149.45701, -36.05034],\n            [149.636874, -36.05034],\n            [149.636874, -36.94966],\n            [149.45701, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.45701, -36.05034],\n            [149.45701, -35.151019],\n            [149.636874, -35.151019],\n            [149.636874, -36.05034],\n            [149.45701, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.45701, -35.151019],\n            [149.45701, -34.251699],\n            [149.636874, -34.251699],\n            [149.636874, -35.151019],\n            [149.45701, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.636874, -38.748301],\n            [149.636874, -37.848981],\n            [149.816738, -37.848981],\n            [149.816738, -38.748301],\n            [149.636874, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.636874, -37.848981],\n            [149.636874, -36.94966],\n            [149.816738, -36.94966],\n            [149.816738, -37.848981],\n            [149.636874, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.636874, -36.94966],\n            [149.636874, -36.05034],\n            [149.816738, -36.05034],\n            [149.816738, -36.94966],\n            [149.636874, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.636874, -36.05034],\n            [149.636874, -35.151019],\n            [149.816738, -35.151019],\n            [149.816738, -36.05034],\n            [149.636874, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.636874, -35.151019],\n            [149.636874, -34.251699],\n            [149.816738, -34.251699],\n            [149.816738, -35.151019],\n            [149.636874, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.816738, -38.748301],\n            [149.816738, -37.848981],\n            [149.996602, -37.848981],\n            [149.996602, -38.748301],\n            [149.816738, -38.748301]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.816738, -37.848981],\n            [149.816738, -36.94966],\n            [149.996602, -36.94966],\n            [149.996602, -37.848981],\n            [149.816738, -37.848981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.816738, -36.94966],\n            [149.816738, -36.05034],\n            [149.996602, -36.05034],\n            [149.996602, -36.94966],\n            [149.816738, -36.94966]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.816738, -36.05034],\n            [149.816738, -35.151019],\n            [149.996602, -35.151019],\n            [149.996602, -36.05034],\n            [149.816738, -36.05034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.816738, -35.151019],\n            [149.816738, -34.251699],\n            [149.996602, -34.251699],\n            [149.996602, -35.151019],\n            [149.816738, -35.151019]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [141, -39, 150, -34],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [141, -39],\n            [150, -39],\n            [150, -34],\n            [141, -34],\n            [141, -39]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rectangle-grid/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { bboxPolygon as bboxPoly } from \"@turf/bbox-polygon\";\nimport { truncate } from \"@turf/truncate\";\nimport { rectangleGrid } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nlet fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    json: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"rectangle-grid\", (t) => {\n  for (const { name, json } of fixtures) {\n    const { bbox, cellWidth, cellHeight, units, properties, mask } = json;\n    const options = {\n      mask,\n      units,\n      properties,\n    };\n    const result = truncate(\n      rectangleGrid(bbox, cellWidth, cellHeight, options)\n    );\n\n    // Add styled GeoJSON to the result\n    const poly = bboxPoly(bbox);\n    poly.properties = {\n      stroke: \"#F00\",\n      \"stroke-width\": 6,\n      \"fill-opacity\": 0,\n    };\n    result.features.push(poly);\n    if (options.mask) {\n      options.mask.properties = {\n        stroke: \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0,\n      };\n      result.features.push(options.mask);\n    }\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + name + \".geojson\", result);\n    t.deepEqual(\n      result,\n      loadJsonFileSync(directories.out + name + \".geojson\"),\n      name\n    );\n  }\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-rectangle-grid/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-rewind/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-rewind/README.md",
    "content": "# @turf/rewind\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## rewind\n\nRewind [(Multi)LineString][1] or [(Multi)Polygon][2] outer ring counterclockwise and inner rings clockwise (Uses [Shoelace Formula][3]).\n\n### Parameters\n\n*   `geojson` **[GeoJSON][4]** input GeoJSON Polygon\n*   `options` **[Object][5]** Optional parameters (optional, default `{}`)\n\n    *   `options.reverse` **[boolean][6]** enable reverse winding (optional, default `false`)\n    *   `options.mutate` **[boolean][6]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`)\n\n### Examples\n\n```javascript\nvar polygon = turf.polygon([[[121, -29], [138, -29], [138, -18], [121, -18], [121, -29]]]);\n\nvar rewind = turf.rewind(polygon);\n\n//addToMap\nvar addToMap = [rewind];\n```\n\nReturns **[GeoJSON][4]** rewind Polygon\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[3]: http://en.wikipedia.org/wiki/Shoelace_formula\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/rewind\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-rewind/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { rewind } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nlet fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n// fixtures = fixtures.filter(fixture => fixture.name === 'polygons');\n\n/**\n * Benchmark Results\n *\n * feature-collection x 2,476,533 ops/sec ±2.44% (80 runs sampled)\n * geometry-polygon-counter-clockwise x 7,422,622 ops/sec ±1.79% (87 runs sampled)\n * line-clockwise x 5,845,725 ops/sec ±1.55% (86 runs sampled)\n * line-counter-clockwise x 5,889,989 ops/sec ±1.03% (88 runs sampled)\n * polygon-clockwise x 4,898,849 ops/sec ±8.02% (75 runs sampled)\n * polygon-counter-clockwise x 6,586,601 ops/sec ±6.10% (82 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-rewind\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => rewind(geojson, false, true));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-rewind/index.ts",
    "content": "import type {\n  Feature,\n  Position,\n  GeometryCollection,\n  Geometry,\n  LineString,\n  MultiLineString,\n  MultiPolygon,\n  Polygon,\n  FeatureCollection,\n} from \"geojson\";\nimport { clone } from \"@turf/clone\";\nimport { booleanClockwise } from \"@turf/boolean-clockwise\";\nimport { geomEach, featureEach } from \"@turf/meta\";\nimport { getCoords } from \"@turf/invariant\";\nimport { featureCollection, isObject } from \"@turf/helpers\";\nimport type { AllGeoJSON } from \"@turf/helpers\";\n\n/**\n * Rewind {@link LineString|(Multi)LineString} or {@link Polygon|(Multi)Polygon} outer ring counterclockwise and inner rings clockwise (Uses {@link http://en.wikipedia.org/wiki/Shoelace_formula|Shoelace Formula}).\n *\n * @function\n * @param {GeoJSON} geojson input GeoJSON Polygon\n * @param {Object} [options={}] Optional parameters\n * @param {boolean} [options.reverse=false] enable reverse winding\n * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true)\n * @returns {GeoJSON} rewind Polygon\n * @example\n * var polygon = turf.polygon([[[121, -29], [138, -29], [138, -18], [121, -18], [121, -29]]]);\n *\n * var rewind = turf.rewind(polygon);\n *\n * //addToMap\n * var addToMap = [rewind];\n */\nfunction rewind<T extends AllGeoJSON>(\n  geojson: T,\n  options: {\n    reverse?: boolean;\n    mutate?: boolean;\n  } = {}\n): Geometry | Feature | FeatureCollection {\n  // Optional parameters\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  const mutate = options.mutate ?? false;\n  const reverse = options.reverse ?? false;\n\n  // validation\n  if (!geojson) throw new Error(\"<geojson> is required\");\n  if (typeof reverse !== \"boolean\")\n    throw new Error(\"<reverse> must be a boolean\");\n  if (typeof mutate !== \"boolean\")\n    throw new Error(\"<mutate> must be a boolean\");\n\n  // Prevent input mutation if requested and necessary.\n  if (!mutate && geojson.type !== \"Point\" && geojson.type !== \"MultiPoint\") {\n    geojson = clone(geojson);\n  }\n\n  // Support Feature Collection or Geometry Collection\n  const results: Feature[] = [];\n  switch (geojson.type) {\n    case \"GeometryCollection\":\n      geomEach(geojson, function (geometry) {\n        rewindFeature(geometry, reverse);\n      });\n      return geojson;\n    case \"FeatureCollection\":\n      featureEach(geojson, function (feature) {\n        const rewoundFeature = rewindFeature(feature, reverse) as Feature;\n        featureEach(rewoundFeature, function (result) {\n          results.push(result);\n        });\n      });\n      return featureCollection(results);\n  }\n  // Support Feature or Geometry Objects\n  return rewindFeature(geojson, reverse);\n}\n\n/**\n * Rewind\n *\n * @private\n * @param {Geometry|Feature<any>} geojson Geometry or Feature\n * @param {Boolean} [reverse=false] enable reverse winding\n * @returns {Geometry|Feature<any>} rewind Geometry or Feature\n */\nfunction rewindFeature(\n  geojson: Geometry | GeometryCollection | Feature,\n  reverse: boolean\n) {\n  const type =\n    geojson.type === \"Feature\" ? geojson.geometry.type : geojson.type;\n\n  // Support all GeoJSON Geometry Objects\n  switch (type) {\n    case \"GeometryCollection\":\n      geomEach(geojson, function (geometry) {\n        rewindFeature(geometry, reverse);\n      });\n      return geojson;\n    case \"LineString\":\n      rewindLineString(getCoords(geojson as LineString), reverse);\n      return geojson;\n    case \"Polygon\":\n      rewindPolygon(getCoords(geojson as Polygon), reverse);\n      return geojson;\n    case \"MultiLineString\":\n      getCoords(geojson as MultiLineString).forEach(function (lineCoords) {\n        rewindLineString(lineCoords, reverse);\n      });\n      return geojson;\n    case \"MultiPolygon\":\n      getCoords(geojson as MultiPolygon).forEach(function (lineCoords) {\n        rewindPolygon(lineCoords, reverse);\n      });\n      return geojson;\n    case \"Point\":\n    case \"MultiPoint\":\n      // noop\n      return geojson;\n  }\n}\n\n/**\n * Rewind LineString - outer ring clockwise\n *\n * @private\n * @param {Array<Array<number>>} coords GeoJSON LineString geometry coordinates\n * @param {Boolean} [reverse=false] enable reverse winding\n * @returns {void} mutates coordinates\n */\nfunction rewindLineString(coords: Position[], reverse: boolean) {\n  if (booleanClockwise(coords) === reverse) coords.reverse();\n}\n\n/**\n * Rewind Polygon - outer ring counterclockwise and inner rings clockwise.\n *\n * @private\n * @param {Array<Array<Array<number>>>} coords GeoJSON Polygon geometry coordinates\n * @param {Boolean} [reverse=false] enable reverse winding\n * @returns {void} mutates coordinates\n */\nfunction rewindPolygon(coords: Position[][], reverse: boolean) {\n  // outer ring\n  if (booleanClockwise(coords[0]) !== reverse) {\n    coords[0].reverse();\n  }\n  // inner rings\n  for (let i = 1; i < coords.length; i++) {\n    if (booleanClockwise(coords[i]) === reverse) {\n      coords[i].reverse();\n    }\n  }\n}\n\nexport { rewind };\nexport default rewind;\n"
  },
  {
    "path": "packages/turf-rewind/package.json",
    "content": "{\n  \"name\": \"@turf/rewind\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Rewind using Shoelace Formula.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Abel Vázquez Montoro <@AbelVM>\",\n    \"Tom MacWright <@tmcw>\",\n    \"Denis Carriere <@DenisCarriere>\",\n    \"Morgan Herlocker <@morganherlocker>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"polygon\",\n    \"rewind\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/boolean-clockwise\": \"workspace:*\",\n    \"@turf/clone\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-rewind/test/in/feature-collection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130.1220703125, -16.383391123608387],\n            [126.38671874999999, -17.518344187852207],\n            [123.79394531249999, -21.248422235627014],\n            [123.96972656249999, -26.431228064506424],\n            [127.2216796875, -29.80251790576445],\n            [132.5830078125, -30.637912028341113],\n            [137.3291015625, -28.92163128242129],\n            [140.09765625, -25.403584973186703],\n            [140.18554687499997, -20.097206227083888],\n            [137.1533203125, -16.804541076383455],\n            [130.1220703125, -16.383391123608387]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rewind/test/in/geometry-polygon-counter-clockwise.geojson",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [121.9921875, -29.22889003019423],\n      [138.515625, -29.22889003019423],\n      [138.515625, -18.312810846425442],\n      [121.9921875, -18.312810846425442],\n      [121.9921875, -29.22889003019423]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rewind/test/in/line-clockwise.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [122.87109375, -20.13847031245114],\n      [126.21093749999999, -15.792253570362446],\n      [129.5947265625, -14.604847155053898],\n      [134.560546875, -15.834535741221552],\n      [138.73535156249997, -20.014645445341355],\n      [139.833984375, -25.799891182088306],\n      [134.12109375, -30.183121842195504],\n      [131.8798828125, -30.221101852485987],\n      [128.49609375, -29.878755346037963],\n      [124.4091796875, -27.839076094777802]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-rewind/test/in/line-counter-clockwise.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [124.4091796875, -27.839076094777802],\n      [128.49609375, -29.878755346037963],\n      [131.8798828125, -30.221101852485987],\n      [134.12109375, -30.183121842195504],\n      [139.833984375, -25.799891182088306],\n      [138.73535156249997, -20.014645445341355],\n      [134.560546875, -15.834535741221552],\n      [129.5947265625, -14.604847155053898],\n      [126.21093749999999, -15.792253570362446],\n      [122.87109375, -20.13847031245114]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-rewind/test/in/polygon-clockwise.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [0, 0],\n        [1, 1],\n        [1, 0],\n        [0, 0]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-rewind/test/in/polygon-counter-clockwise.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [0, 0],\n        [1, 0],\n        [1, 1],\n        [0, 0]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-rewind/test/out/feature-collection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [130.1220703125, -16.383391123608387],\n            [126.38671874999999, -17.518344187852207],\n            [123.79394531249999, -21.248422235627014],\n            [123.96972656249999, -26.431228064506424],\n            [127.2216796875, -29.80251790576445],\n            [132.5830078125, -30.637912028341113],\n            [137.3291015625, -28.92163128242129],\n            [140.09765625, -25.403584973186703],\n            [140.18554687499997, -20.097206227083888],\n            [137.1533203125, -16.804541076383455],\n            [130.1220703125, -16.383391123608387]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rewind/test/out/geometry-polygon-counter-clockwise.geojson",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [121.9921875, -29.22889003019423],\n      [138.515625, -29.22889003019423],\n      [138.515625, -18.312810846425442],\n      [121.9921875, -18.312810846425442],\n      [121.9921875, -29.22889003019423]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rewind/test/out/line-clockwise.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [122.87109375, -20.13847031245114],\n      [126.21093749999999, -15.792253570362446],\n      [129.5947265625, -14.604847155053898],\n      [134.560546875, -15.834535741221552],\n      [138.73535156249997, -20.014645445341355],\n      [139.833984375, -25.799891182088306],\n      [134.12109375, -30.183121842195504],\n      [131.8798828125, -30.221101852485987],\n      [128.49609375, -29.878755346037963],\n      [124.4091796875, -27.839076094777802]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-rewind/test/out/line-counter-clockwise.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [122.87109375, -20.13847031245114],\n      [126.21093749999999, -15.792253570362446],\n      [129.5947265625, -14.604847155053898],\n      [134.560546875, -15.834535741221552],\n      [138.73535156249997, -20.014645445341355],\n      [139.833984375, -25.799891182088306],\n      [134.12109375, -30.183121842195504],\n      [131.8798828125, -30.221101852485987],\n      [128.49609375, -29.878755346037963],\n      [124.4091796875, -27.839076094777802]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-rewind/test/out/polygon-clockwise.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [0, 0],\n        [1, 0],\n        [1, 1],\n        [0, 0]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-rewind/test/out/polygon-counter-clockwise.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [0, 0],\n        [1, 0],\n        [1, 1],\n        [0, 0]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-rewind/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport {\n  polygon,\n  lineString,\n  featureCollection,\n  geometryCollection,\n} from \"@turf/helpers\";\nimport { rewind } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nlet fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n// fixtures = fixtures.filter(fixture => fixture.name === 'polygon-clockwise');\n\ntest(\"turf-rewind\", (t) => {\n  for (const { filename, name, geojson } of fixtures) {\n    const { reverse } = geojson.properties || {};\n    const results = rewind(geojson, reverse);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEqual(results, loadJsonFileSync(directories.out + filename), name);\n  }\n  t.end();\n});\n\ntest(\"turf-buffer - Support Geometry Objects\", (t) => {\n  const line = lineString([\n    [11, 0],\n    [22, 4],\n    [31, 0],\n    [31, 11],\n  ]);\n  const poly = polygon([\n    [\n      [11, 0],\n      [22, 4],\n      [31, 0],\n      [31, 11],\n      [21, 15],\n      [11, 11],\n      [11, 0],\n    ],\n  ]);\n  const gc = geometryCollection([poly.geometry, line.geometry]);\n  const fc = featureCollection([poly, line]);\n\n  t.assert(rewind(line.geometry), \"support LineString Geometry\");\n  t.assert(rewind(poly.geometry), \"support Polygon Geometry\");\n  t.assert(rewind(fc), \"support Feature Collection\");\n  t.assert(rewind(gc), \"support Geometry Collection\");\n  t.end();\n});\n\ntest(\"turf-buffer - Prevent Input Mutation\", (t) => {\n  const line = lineString([\n    [11, 0],\n    [22, 4],\n    [31, 0],\n    [31, 11],\n  ]);\n  const poly = polygon([\n    [\n      [11, 0],\n      [22, 4],\n      [31, 0],\n      [31, 11],\n      [21, 15],\n      [11, 11],\n      [11, 0],\n    ],\n  ]);\n  const beforePoly = JSON.parse(JSON.stringify(poly));\n  const beforeLine = JSON.parse(JSON.stringify(line));\n  rewind(poly);\n  rewind(line);\n\n  t.deepEqual(poly, beforePoly, \"poly should not mutate\");\n  t.deepEqual(line, beforeLine, \"line should not mutate\");\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-rewind/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-rewind/types.ts",
    "content": "import {\n  polygon,\n  lineString,\n  multiLineString,\n  multiPolygon,\n} from \"@turf/helpers\";\nimport { rewind } from \"./index.js\";\n\nconst coords = [\n  [121, -29],\n  [138, -29],\n  [138, -18],\n  [121, -18],\n  [121, -29],\n];\nconst poly = polygon([coords]);\nconst line = lineString(coords);\nconst multiPoly = multiPolygon([[coords], [coords]]);\nconst multiLine = multiLineString([coords, coords]);\n\nrewind(line);\nrewind(poly);\nrewind(multiPoly);\nrewind(multiLine);\nrewind(poly, { mutate: true });\nrewind(poly, { mutate: true, reverse: true });\n"
  },
  {
    "path": "packages/turf-rhumb-bearing/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-rhumb-bearing/README.md",
    "content": "# @turf/rhumb-bearing\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## rhumbBearing\n\nTakes two [points][1] and finds the bearing angle between them along a Rhumb line\ni.e. the angle measured in degrees start the north line (0 degrees)\n\n### Parameters\n\n*   `start` **[Coord][2]** starting Point\n*   `end` **[Coord][2]** ending Point\n*   `options` **[Object][3]?** Optional parameters (optional, default `{}`)\n\n    *   `options.final` **[boolean][4]** calculates the final bearing if true (optional, default `false`)\n\n### Examples\n\n```javascript\nvar point1 = turf.point([-75.343, 39.984], {\"marker-color\": \"#F00\"});\nvar point2 = turf.point([-75.534, 39.123], {\"marker-color\": \"#00F\"});\n\nvar bearing = turf.rhumbBearing(point1, point2);\n\n//addToMap\nvar addToMap = [point1, point2];\npoint1.properties.bearing = bearing;\npoint2.properties.bearing = bearing;\n```\n\nReturns **[number][5]** bearing from north in decimal degrees, between -180 and 180 degrees (positive clockwise)\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/rhumb-bearing\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-rhumb-bearing/bench.ts",
    "content": "import { point } from \"@turf/helpers\";\nimport Benchmark from \"benchmark\";\nimport { rhumbBearing } from \"./index.js\";\n\nvar start = point([-75.4, 39.4]);\nvar end = point([-75.534, 39.123]);\n\n/**\n * Benchmark Results\n *\n * initial bearing x 1,108,233 ops/sec ±3.22% (86 runs sampled)\n * final bearing x 1,144,822 ops/sec ±2.01% (88 runs sampled)\n */\nvar suite = new Benchmark.Suite(\"turf-rhumb-bearing\");\nsuite\n  .add(\"initial bearing\", () => rhumbBearing(start, end))\n  .add(\"final bearing\", () => rhumbBearing(start, end, true))\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-rhumb-bearing/index.ts",
    "content": "// https://en.wikipedia.org/wiki/Rhumb_line\nimport { Coord, degreesToRadians, radiansToDegrees } from \"@turf/helpers\";\nimport { getCoord } from \"@turf/invariant\";\n\n/**\n * Takes two {@link Point|points} and finds the bearing angle between them along a Rhumb line\n * i.e. the angle measured in degrees start the north line (0 degrees)\n *\n * @function\n * @param {Coord} start starting Point\n * @param {Coord} end ending Point\n * @param {Object} [options] Optional parameters\n * @param {boolean} [options.final=false] calculates the final bearing if true\n * @returns {number} bearing from north in decimal degrees, between -180 and 180 degrees (positive clockwise)\n * @example\n * var point1 = turf.point([-75.343, 39.984], {\"marker-color\": \"#F00\"});\n * var point2 = turf.point([-75.534, 39.123], {\"marker-color\": \"#00F\"});\n *\n * var bearing = turf.rhumbBearing(point1, point2);\n *\n * //addToMap\n * var addToMap = [point1, point2];\n * point1.properties.bearing = bearing;\n * point2.properties.bearing = bearing;\n */\nfunction rhumbBearing(\n  start: Coord,\n  end: Coord,\n  options: { final?: boolean } = {}\n): number {\n  let bear360;\n  if (options.final) {\n    bear360 = calculateRhumbBearing(getCoord(end), getCoord(start));\n  } else {\n    bear360 = calculateRhumbBearing(getCoord(start), getCoord(end));\n  }\n\n  const bear180 = bear360 > 180 ? -(360 - bear360) : bear360;\n\n  return bear180;\n}\n\n/**\n * Returns the bearing from ‘this’ point to destination point along a rhumb line.\n * Adapted from Geodesy: https://github.com/chrisveness/geodesy/blob/master/latlon-spherical.js\n *\n * @private\n * @param   {Array<number>} from - origin point.\n * @param   {Array<number>} to - destination point.\n * @returns {number} Bearing in degrees from north.\n * @example\n * var p1 = new LatLon(51.127, 1.338);\n * var p2 = new LatLon(50.964, 1.853);\n * var d = p1.rhumbBearingTo(p2); // 116.7 m\n */\nfunction calculateRhumbBearing(from: number[], to: number[]) {\n  // φ => phi\n  // Δλ => deltaLambda\n  // Δψ => deltaPsi\n  // θ => theta\n  const phi1 = degreesToRadians(from[1]);\n  const phi2 = degreesToRadians(to[1]);\n  let deltaLambda = degreesToRadians(to[0] - from[0]);\n  // if deltaLambdaon over 180° take shorter rhumb line across the anti-meridian:\n  if (deltaLambda > Math.PI) {\n    deltaLambda -= 2 * Math.PI;\n  }\n  if (deltaLambda < -Math.PI) {\n    deltaLambda += 2 * Math.PI;\n  }\n\n  const deltaPsi = Math.log(\n    Math.tan(phi2 / 2 + Math.PI / 4) / Math.tan(phi1 / 2 + Math.PI / 4)\n  );\n\n  const theta = Math.atan2(deltaLambda, deltaPsi);\n\n  return (radiansToDegrees(theta) + 360) % 360;\n}\n\nexport { rhumbBearing };\nexport default rhumbBearing;\n"
  },
  {
    "path": "packages/turf-rhumb-bearing/package.json",
    "content": "{\n  \"name\": \"@turf/rhumb-bearing\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes two points and finds the bearing angle between them along a Rhumb line.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Chris Veness <@chrisveness>\",\n    \"Stefano Borghi <@stebogit>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"bearing\",\n    \"loxodrome\",\n    \"rhumb\",\n    \"rhumb line\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/destination\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-rhumb-bearing/test/in/pair1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75, 45]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [20, 60]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rhumb-bearing/test/out/pair1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75, 45]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [20, 60]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-75, 45],\n          [-66.10068737769872, 51.79325008492101]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [20, 60],\n          [2.3844816279733956, 63.440396381483744]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rhumb-bearing/test/out/pair1.json",
    "content": "{\n  \"initialBearing\": 75.28061364784332,\n  \"finalBearing\": -104.7193863521567\n}\n"
  },
  {
    "path": "packages/turf-rhumb-bearing/test.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { point } from \"@turf/helpers\";\nimport { rhumbBearing } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nlet fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"bearing\", (t) => {\n  fixtures.forEach((fixture) => {\n    const name = fixture.name;\n    const geojson = fixture.geojson;\n\n    const start = geojson.features[0];\n    const end = geojson.features[1];\n\n    const initialBearing = rhumbBearing(start, end);\n    const finalBearing = rhumbBearing(start, end, { final: true });\n\n    const result = {\n      initialBearing: initialBearing,\n      finalBearing: finalBearing,\n    };\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + name + \".json\", result);\n    t.deepEqual(\n      loadJsonFileSync(directories.out + name + \".json\"),\n      result,\n      name\n    );\n  });\n\n  t.throws(() => {\n    rhumbBearing(point([12, -54]), \"point\");\n  }, \"invalid point\");\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-rhumb-bearing/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-rhumb-destination/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-rhumb-destination/README.md",
    "content": "# @turf/rhumb-destination\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## rhumbDestination\n\nReturns the destination [Point][1] having travelled the given distance along a Rhumb line from the\norigin Point with the (varant) given bearing.\n\n### Parameters\n\n*   `origin` **[Coord][2]** starting point\n*   `distance` **[number][3]** distance from the starting point\n*   `bearing` **[number][3]** varant bearing angle ranging from -180 to 180 degrees from north\n*   `options` **[Object][4]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** Supports all valid Turf [Units][5] (optional, default `'kilometers'`)\n    *   `options.properties` **[Object][4]** translate properties to destination point (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar pt = turf.point([-75.343, 39.984], {\"marker-color\": \"F00\"});\nvar distance = 50;\nvar bearing = 90;\nvar options = {units: 'miles'};\n\nvar destination = turf.rhumbDestination(pt, distance, bearing, options);\n\n//addToMap\nvar addToMap = [pt, destination]\ndestination.properties['marker-color'] = '#00F';\n```\n\nReturns **[Feature][6]<[Point][1]>** Destination point.\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[5]: https://turfjs.org/docs/api/types/Units\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/rhumb-destination\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-rhumb-destination/bench.ts",
    "content": "import { point } from \"@turf/helpers\";\nimport Benchmark from \"benchmark\";\nimport { rhumbDestination as destination } from \"./index.js\";\n\nconst pt1 = point([-75.0, 39.0]);\nconst distance = 100;\nconst bearing = 180;\n\n/**\n * Benchmark Results\n *\n * turf-rhumb-destination x 1,183,462 ops/sec ±3.56% (84 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-rhumb-destination\");\nsuite\n  .add(\"turf-rhumb-destination\", () =>\n    destination(pt1, distance, bearing, \"kilometers\")\n  )\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-rhumb-destination/index.ts",
    "content": "// https://en.wikipedia.org/wiki/Rhumb_line\nimport { Feature, Point, GeoJsonProperties } from \"geojson\";\nimport {\n  convertLength,\n  Coord,\n  degreesToRadians,\n  earthRadius,\n  point,\n  Units,\n} from \"@turf/helpers\";\nimport { getCoord } from \"@turf/invariant\";\n\n/**\n * Returns the destination {@link Point} having travelled the given distance along a Rhumb line from the\n * origin Point with the (varant) given bearing.\n *\n * @function\n * @param {Coord} origin starting point\n * @param {number} distance distance from the starting point\n * @param {number} bearing varant bearing angle ranging from -180 to 180 degrees from north\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}\n * @param {Object} [options.properties={}] translate properties to destination point\n * @returns {Feature<Point>} Destination point.\n * @example\n * var pt = turf.point([-75.343, 39.984], {\"marker-color\": \"F00\"});\n * var distance = 50;\n * var bearing = 90;\n * var options = {units: 'miles'};\n *\n * var destination = turf.rhumbDestination(pt, distance, bearing, options);\n *\n * //addToMap\n * var addToMap = [pt, destination]\n * destination.properties['marker-color'] = '#00F';\n */\nfunction rhumbDestination<P extends GeoJsonProperties = GeoJsonProperties>(\n  origin: Coord,\n  distance: number,\n  bearing: number,\n  options: {\n    units?: Units;\n    properties?: P;\n  } = {}\n): Feature<Point, P> {\n  const wasNegativeDistance = distance < 0;\n  let distanceInMeters = convertLength(\n    Math.abs(distance),\n    options.units,\n    \"meters\"\n  );\n  if (wasNegativeDistance) distanceInMeters = -Math.abs(distanceInMeters);\n  const coords = getCoord(origin);\n  const destination = calculateRhumbDestination(\n    coords,\n    distanceInMeters,\n    bearing\n  );\n\n  // compensate the crossing of the 180th meridian (https://macwright.org/2016/09/26/the-180th-meridian.html)\n  // solution from https://github.com/mapbox/mapbox-gl-js/issues/3250#issuecomment-294887678\n  destination[0] +=\n    destination[0] - coords[0] > 180\n      ? -360\n      : coords[0] - destination[0] > 180\n        ? 360\n        : 0;\n  return point(destination, options.properties);\n}\n\n/**\n * Returns the destination point having travelled along a rhumb line from origin point the given\n * distance on the  given bearing.\n * Adapted from Geodesy: http://www.movable-type.co.uk/scripts/latlong.html#rhumblines\n *\n * @private\n * @param   {Array<number>} origin - point\n * @param   {number} distance - Distance travelled, in same units as earth radius (default: metres).\n * @param   {number} bearing - Bearing in degrees from north.\n * @param   {number} [radius=6371e3] - (Mean) radius of earth (defaults to radius in metres).\n * @returns {Array<number>} Destination point.\n */\nfunction calculateRhumbDestination(\n  origin: number[],\n  distance: number,\n  bearing: number,\n  radius?: number\n) {\n  // φ => phi\n  // λ => lambda\n  // ψ => psi\n  // Δ => Delta\n  // δ => delta\n  // θ => theta\n\n  radius = radius === undefined ? earthRadius : Number(radius);\n\n  const delta = distance / radius; // angular distance in radians\n  const lambda1 = (origin[0] * Math.PI) / 180; // to radians, but without normalize to 𝜋\n  const phi1 = degreesToRadians(origin[1]);\n  const theta = degreesToRadians(bearing);\n\n  const DeltaPhi = delta * Math.cos(theta);\n  let phi2 = phi1 + DeltaPhi;\n\n  // check for some daft bugger going past the pole, normalise latitude if so\n  if (Math.abs(phi2) > Math.PI / 2) {\n    phi2 = phi2 > 0 ? Math.PI - phi2 : -Math.PI - phi2;\n  }\n\n  const DeltaPsi = Math.log(\n    Math.tan(phi2 / 2 + Math.PI / 4) / Math.tan(phi1 / 2 + Math.PI / 4)\n  );\n  // E-W course becomes ill-conditioned with 0/0\n  const q = Math.abs(DeltaPsi) > 10e-12 ? DeltaPhi / DeltaPsi : Math.cos(phi1);\n\n  const DeltaLambda = (delta * Math.sin(theta)) / q;\n  const lambda2 = lambda1 + DeltaLambda;\n\n  return [\n    (((lambda2 * 180) / Math.PI + 540) % 360) - 180,\n    (phi2 * 180) / Math.PI,\n  ]; // normalise to −180..+180°\n}\n\nexport { rhumbDestination };\nexport default rhumbDestination;\n"
  },
  {
    "path": "packages/turf-rhumb-destination/package.json",
    "content": "{\n  \"name\": \"@turf/rhumb-destination\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Calculates the destination point having travelled the given distance along a Rhumb line.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Chris Veness <@chrisveness>\",\n    \"Stefano Borghi <@stebogit>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"distance\",\n    \"destination\",\n    \"bearing\",\n    \"loxodrome\",\n    \"rhumb\",\n    \"rhumb line\",\n    \"miles\",\n    \"km\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-rhumb-destination/test/in/fiji-east-west-539-lng.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"bearing\": -90,\n    \"dist\": 100\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-539.5, -16.5]\n  }\n}\n"
  },
  {
    "path": "packages/turf-rhumb-destination/test/in/fiji-east-west.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"bearing\": -90,\n    \"dist\": 100\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-179.5, -16.5]\n  }\n}\n"
  },
  {
    "path": "packages/turf-rhumb-destination/test/in/fiji-west-east.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"bearing\": 120,\n    \"dist\": 150\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [179.5, -16.5]\n  }\n}\n"
  },
  {
    "path": "packages/turf-rhumb-destination/test/in/point-0.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"bearing\": 0\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-75, 38.10096062273525]\n  }\n}\n"
  },
  {
    "path": "packages/turf-rhumb-destination/test/in/point-180.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-75, 39]\n  }\n}\n"
  },
  {
    "path": "packages/turf-rhumb-destination/test/in/point-90.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"bearing\": 90\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-75, 39]\n  }\n}\n"
  },
  {
    "path": "packages/turf-rhumb-destination/test/in/point-way-far-away.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"bearing\": 90,\n    \"dist\": 5000,\n    \"units\": \"miles\"\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-75, 39]\n  }\n}\n"
  },
  {
    "path": "packages/turf-rhumb-destination/test/out/fiji-east-west-539-lng.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-539.5, -16.5],\n          [-540.437945, -16.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"bearing\": -90,\n        \"dist\": 100,\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-539.5, -16.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-540.4379451955566, -16.5]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rhumb-destination/test/out/fiji-east-west.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-179.5, -16.5],\n          [-180.437945, -16.5]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"bearing\": -90,\n        \"dist\": 100,\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.5, -16.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.43794519555667, -16.5]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rhumb-destination/test/out/fiji-west-east.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [179.5, -16.5],\n          [180.720584, -17.17449]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"bearing\": 120,\n        \"dist\": 150,\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [179.5, -16.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [180.72058412338447, -17.174490272793403]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rhumb-destination/test/out/point-0.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-75, 38.100961],\n          [-75, 39.000281]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"bearing\": 0,\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75, 38.10096062273525]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75, 39.00028098645979]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rhumb-destination/test/out/point-180.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-75, 39],\n          [-75, 38.10068]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75, 39]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75, 38.10067963627546]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rhumb-destination/test/out/point-90.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-75, 39],\n          [-73.842791, 39]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"bearing\": 90,\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75, 39]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.84279091917494, 39]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rhumb-destination/test/out/point-way-far-away.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-75, 39],\n          [18.117375, 39]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"bearing\": 90,\n        \"dist\": 5000,\n        \"units\": \"miles\",\n        \"marker-color\": \"#F00\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75, 39]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [18.117374548567227, 39]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rhumb-destination/test.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { truncate } from \"@turf/truncate\";\nimport { getCoords } from \"@turf/invariant\";\nimport { featureCollection, lineString, point } from \"@turf/helpers\";\nimport { rhumbDestination } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-rhumb-destination\", (t) => {\n  for (const { filename, name, geojson } of fixtures) {\n    let { bearing, dist, units } = geojson.properties || {};\n    bearing = bearing !== undefined ? bearing : 180;\n    dist = dist !== undefined ? dist : 100;\n\n    const destinationPoint = rhumbDestination(geojson, dist, bearing, {\n      units: units,\n    });\n    const line = truncate(\n      lineString([getCoords(geojson), getCoords(destinationPoint)], {\n        stroke: \"#F00\",\n        \"stroke-width\": 4,\n      })\n    );\n    geojson.properties[\"marker-color\"] = \"#F00\";\n    const result = featureCollection([line, geojson, destinationPoint]);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, result);\n    t.deepEqual(result, loadJsonFileSync(directories.out + filename), name);\n  }\n  t.end();\n});\n\ntest(\"turf-rhumb-destintation -- throws error\", (t) => {\n  const pt = point([12, -54]);\n  t.assert(\n    rhumbDestination(pt, 0, 45).geometry.coordinates[0],\n    \"0 distance is valid\"\n  );\n  t.assert(\n    rhumbDestination(pt, 100, 0).geometry.coordinates[0],\n    \"0 bearing is valid\"\n  );\n  // t.throws(() => rhumbDestination(pt, 100, 45, 'blah'), 'unknown option given to units');\n  // t.throws(() => rhumbDestination(pt, null, 75), 'missing distance');\n  // t.throws(() => rhumbDestination(pt, 'foo', 75), 'invalid distance - units param switched to distance');\n  // t.throws(() => rhumbDestination('foo', 200, 75, {units: 'miles'}), 'invalid point');\n  t.end();\n});\n\ntest(\"turf-rhumb-destintation -- add properties\", (t) => {\n  const properties = { foo: \"bar\" };\n  const pt = point([12, -54], properties);\n\n  t.deepEqual(\n    rhumbDestination(pt, 0, 45, { properties }).properties,\n    properties,\n    \"add properties\"\n  );\n  t.end();\n});\n\ntest(\"turf-rhumb-destintation -- allows negative distance\", (t) => {\n  const pt = point([12, -54]);\n  const out = rhumbDestination(pt, -100, 45);\n  t.deepEqual(\n    out.geometry.coordinates,\n    [10.90974456038191, -54.63591552764877]\n  );\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-rhumb-destination/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-rhumb-distance/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-rhumb-distance/README.md",
    "content": "# @turf/rhumb-distance\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## rhumbDistance\n\nCalculates the distance along a rhumb line between two [points][1] in [Units][2]\n\n### Parameters\n\n*   `from` **[Coord][3]** origin point\n*   `to` **[Coord][3]** destination point\n*   `options` **[Object][4]?** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** Supports all valid Turf [Units][2] (optional, default `'kilometers'`)\n\n### Examples\n\n```javascript\nvar from = turf.point([-75.343, 39.984]);\nvar to = turf.point([-75.534, 39.123]);\nvar options = {units: 'miles'};\n\nvar distance = turf.rhumbDistance(from, to, options);\n\n//addToMap\nvar addToMap = [from, to];\nfrom.properties.distance = distance;\nto.properties.distance = distance;\n```\n\nReturns **[number][5]** distance between the two points\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[2]: https://turfjs.org/docs/api/types/Units\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/rhumb-distance\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-rhumb-distance/bench.ts",
    "content": "import { point } from \"@turf/helpers\";\nimport Benchmark from \"benchmark\";\nimport { rhumbDistance as distance } from \"./index.js\";\n\nconst pt1 = point([-75.4, 39.4]);\nconst pt2 = point([-75.534, 39.123]);\n\n/**\n * Benchmark Results\n *\n * turf-rhumb-distance x 1,721,401 ops/sec ±0.86% (89 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-rhumb-distance\");\nsuite\n  .add(\"turf-rhumb-distance\", () => distance(pt1, pt2, \"miles\"))\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-rhumb-distance/index.ts",
    "content": "// https://en.wikipedia.org/wiki/Rhumb_line\nimport { convertLength, Coord, earthRadius, Units } from \"@turf/helpers\";\nimport { getCoord } from \"@turf/invariant\";\n\n/**\n * Calculates the distance along a rhumb line between two {@link Point|points} in {@link https://turfjs.org/docs/api/types/Units Units}\n *\n * @function\n * @param {Coord} from origin point\n * @param {Coord} to destination point\n * @param {Object} [options] Optional parameters\n * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}\n * @returns {number} distance between the two points\n * @example\n * var from = turf.point([-75.343, 39.984]);\n * var to = turf.point([-75.534, 39.123]);\n * var options = {units: 'miles'};\n *\n * var distance = turf.rhumbDistance(from, to, options);\n *\n * //addToMap\n * var addToMap = [from, to];\n * from.properties.distance = distance;\n * to.properties.distance = distance;\n */\nfunction rhumbDistance(\n  from: Coord,\n  to: Coord,\n  options: {\n    units?: Units;\n  } = {}\n): number {\n  const origin = getCoord(from);\n  const destination = getCoord(to);\n\n  // compensate the crossing of the 180th meridian (https://macwright.org/2016/09/26/the-180th-meridian.html)\n  // solution from https://github.com/mapbox/mapbox-gl-js/issues/3250#issuecomment-294887678\n  destination[0] +=\n    destination[0] - origin[0] > 180\n      ? -360\n      : origin[0] - destination[0] > 180\n        ? 360\n        : 0;\n  const distanceInMeters = calculateRhumbDistance(origin, destination);\n  const distance = convertLength(distanceInMeters, \"meters\", options.units);\n  return distance;\n}\n\n/**\n * Returns the distance travelling from ‘this’ point to destination point along a rhumb line.\n * Adapted from Geodesy: https://github.com/chrisveness/geodesy/blob/master/latlon-spherical.js\n *\n * @private\n * @param   {Array<number>} origin point.\n * @param   {Array<number>} destination point.\n * @param   {number} [radius=6371e3] - (Mean) radius of earth (defaults to radius in metres).\n * @returns {number} Distance in km between this point and destination point (same units as radius).\n *\n * @example\n *     var p1 = new LatLon(51.127, 1.338);\n *     var p2 = new LatLon(50.964, 1.853);\n *     var d = p1.distanceTo(p2); // 40.31 km\n */\nfunction calculateRhumbDistance(\n  origin: number[],\n  destination: number[],\n  radius?: number\n) {\n  // φ => phi\n  // λ => lambda\n  // ψ => psi\n  // Δ => Delta\n  // δ => delta\n  // θ => theta\n\n  radius = radius === undefined ? earthRadius : Number(radius);\n  // see www.edwilliams.org/avform.htm#Rhumb\n\n  const R = radius;\n  const phi1 = (origin[1] * Math.PI) / 180;\n  const phi2 = (destination[1] * Math.PI) / 180;\n  const DeltaPhi = phi2 - phi1;\n  let DeltaLambda = (Math.abs(destination[0] - origin[0]) * Math.PI) / 180;\n  // if dLon over 180° take shorter rhumb line across the anti-meridian:\n  if (DeltaLambda > Math.PI) {\n    DeltaLambda -= 2 * Math.PI;\n  }\n\n  // on Mercator projection, longitude distances shrink by latitude; q is the 'stretch factor'\n  // q becomes ill-conditioned along E-W line (0/0); use empirical tolerance to avoid it\n  const DeltaPsi = Math.log(\n    Math.tan(phi2 / 2 + Math.PI / 4) / Math.tan(phi1 / 2 + Math.PI / 4)\n  );\n  const q = Math.abs(DeltaPsi) > 10e-12 ? DeltaPhi / DeltaPsi : Math.cos(phi1);\n\n  // distance is pythagoras on 'stretched' Mercator projection\n  const delta = Math.sqrt(\n    DeltaPhi * DeltaPhi + q * q * DeltaLambda * DeltaLambda\n  ); // angular distance in radians\n  const dist = delta * R;\n\n  return dist;\n}\n\nexport { rhumbDistance };\nexport default rhumbDistance;\n"
  },
  {
    "path": "packages/turf-rhumb-distance/package.json",
    "content": "{\n  \"name\": \"@turf/rhumb-distance\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Calculates the distance along a rhumb line between two points.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Chris Veness <@chrisveness>\",\n    \"Stefano Borghi <@stebogit>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"distance\",\n    \"rhumb line\",\n    \"rhumb\",\n    \"loxodrome\",\n    \"miles\",\n    \"km\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/distance\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-rhumb-distance/test/in/fiji-539-lng.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-539.5, -16.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-541.5, -18.5]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rhumb-distance/test/in/points-fiji.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-179.5, -16.5]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [178.5, -16.5]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rhumb-distance/test/in/points1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.343, 39.984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.534, 39.123]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rhumb-distance/test/in/points2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-119.17968749999999, 35.60371874069731]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-67.5, 46.92025531537451]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-rhumb-distance/test/out/fiji-539-lng.json",
    "content": "{\n  \"miles\": 190.951278,\n  \"nauticalmiles\": 165.932124,\n  \"kilometers\": 307.306293,\n  \"greatCircleDistance\": 307.304881,\n  \"radians\": 0.048235,\n  \"degrees\": 2.763668\n}\n"
  },
  {
    "path": "packages/turf-rhumb-distance/test/out/points-fiji.json",
    "content": "{\n  \"miles\": 132.496268,\n  \"nauticalmiles\": 115.136109,\n  \"kilometers\": 213.232075,\n  \"greatCircleDistance\": 213.231201,\n  \"radians\": 0.033469,\n  \"degrees\": 1.917639\n}\n"
  },
  {
    "path": "packages/turf-rhumb-distance/test/out/points1.json",
    "content": "{\n  \"miles\": 60.353311,\n  \"nauticalmiles\": 52.445594,\n  \"kilometers\": 97.129239,\n  \"greatCircleDistance\": 97.129221,\n  \"radians\": 0.015246,\n  \"degrees\": 0.873503\n}\n"
  },
  {
    "path": "packages/turf-rhumb-distance/test/out/points2.json",
    "content": "{\n  \"miles\": 2785.013176,\n  \"nauticalmiles\": 2420.110283,\n  \"kilometers\": 4482.044244,\n  \"greatCircleDistance\": 4412.81774,\n  \"radians\": 0.703506,\n  \"degrees\": 40.307937\n}\n"
  },
  {
    "path": "packages/turf-rhumb-distance/test.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { distance } from \"@turf/distance\";\nimport { point, round } from \"@turf/helpers\";\nimport { rhumbDistance } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"rhumb-distance\", (t) => {\n  fixtures.forEach((fixture) => {\n    const name = fixture.name;\n    const geojson = fixture.geojson;\n    const pt1 = geojson.features[0];\n    const pt2 = geojson.features[1];\n\n    const distances = {\n      miles: round(rhumbDistance(pt1, pt2, { units: \"miles\" }), 6),\n      nauticalmiles: round(\n        rhumbDistance(pt1, pt2, { units: \"nauticalmiles\" }),\n        6\n      ),\n      kilometers: round(rhumbDistance(pt1, pt2, { units: \"kilometers\" }), 6),\n      greatCircleDistance: round(\n        distance(pt1, pt2, { units: \"kilometers\" }),\n        6\n      ),\n      radians: round(rhumbDistance(pt1, pt2, { units: \"radians\" }), 6),\n      degrees: round(rhumbDistance(pt1, pt2, { units: \"degrees\" }), 6),\n    };\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + name + \".json\", distances);\n    t.deepEqual(\n      distances,\n      loadJsonFileSync(directories.out + name + \".json\"),\n      name\n    );\n  });\n\n  // Now fails due to approximation error\n  // TODO: to be added once earth radius is updated to 6371km\n  // t.ok(distances.kilometers > distances.greatCircleDistance, name + ' distance comparison');\n\n  t.throws(\n    () => rhumbDistance(point([0, 0]), point([1, 1]), { units: \"foo\" }),\n    \"unknown option given to units\"\n  );\n  t.throws(() => rhumbDistance(null, point([1, 1])), \"null point\");\n  t.throws(() => rhumbDistance(point([1, 1]), \"point\"), \"invalid point\");\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-rhumb-distance/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-sample/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-sample/README.md",
    "content": "# @turf/sample\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## sample\n\nTakes a [FeatureCollection][1] and returns a FeatureCollection with given number of [features][2] at random.\n\n### Parameters\n\n*   `fc` **[FeatureCollection][1]\\<T>**&#x20;\n*   `num` **[number][3]** number of features to select\n*   `featurecollection` **[FeatureCollection][1]** set of input features\n\n### Examples\n\n```javascript\nvar points = turf.randomPoint(100, {bbox: [-80, 30, -60, 60]});\n\nvar sample = turf.sample(points, 5);\n\n//addToMap\nvar addToMap = [points, sample]\nturf.featureEach(sample, function (currentFeature) {\n  currentFeature.properties['marker-size'] = 'large';\n  currentFeature.properties['marker-color'] = '#000';\n});\n```\n\nReturns **[FeatureCollection][1]** a FeatureCollection with `n` features\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/sample\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-sample/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { point, featureCollection } from \"@turf/helpers\";\nimport { sample } from \"./index.js\";\n\nvar points = featureCollection([\n  point(1, 2, { team: \"Red Sox\" }),\n  point(2, 1, { team: \"Yankees\" }),\n  point(3, 1, { team: \"Nationals\" }),\n  point(2, 2, { team: \"Yankees\" }),\n  point(2, 3, { team: \"Red Sox\" }),\n  point(4, 2, { team: \"Yankees\" }),\n]);\n\nnew Benchmark.Suite(\"turf-sample\")\n  .add(\"turf-sample\", function () {\n    sample(points, 4);\n  })\n  .on(\"cycle\", function (event) {\n    console.log(String(event.target));\n  })\n  .run();\n"
  },
  {
    "path": "packages/turf-sample/index.ts",
    "content": "// http://stackoverflow.com/questions/11935175/sampling-a-random-subset-from-an-array\nimport { Feature, FeatureCollection, Geometry, GeometryObject } from \"geojson\";\nimport { featureCollection } from \"@turf/helpers\";\n\n/**\n * Takes a {@link FeatureCollection} and returns a FeatureCollection with given number of {@link Feature|features} at random.\n *\n * @function\n * @param {FeatureCollection} featurecollection set of input features\n * @param {number} num number of features to select\n * @returns {FeatureCollection} a FeatureCollection with `n` features\n * @example\n * var points = turf.randomPoint(100, {bbox: [-80, 30, -60, 60]});\n *\n * var sample = turf.sample(points, 5);\n *\n * //addToMap\n * var addToMap = [points, sample]\n * turf.featureEach(sample, function (currentFeature) {\n *   currentFeature.properties['marker-size'] = 'large';\n *   currentFeature.properties['marker-color'] = '#000';\n * });\n */\nfunction sample<T extends GeometryObject>(\n  fc: FeatureCollection<T>,\n  num: number\n): FeatureCollection<T> {\n  if (!fc) throw new Error(\"fc is required\");\n  if (num === null || num === undefined) throw new Error(\"num is required\");\n  if (typeof num !== \"number\") throw new Error(\"num must be a number\");\n  var outFC = featureCollection(getRandomSubarray(fc.features, num));\n  return outFC;\n}\n\nfunction getRandomSubarray<T extends Geometry>(\n  arr: Feature<T>[],\n  size: number\n) {\n  var shuffled = arr.slice(0),\n    i = arr.length,\n    min = i - size,\n    temp,\n    index;\n  while (i-- > min) {\n    index = Math.floor((i + 1) * Math.random());\n    temp = shuffled[index];\n    shuffled[index] = shuffled[i];\n    shuffled[i] = temp;\n  }\n  return shuffled.slice(min);\n}\n\nexport { sample };\nexport default sample;\n"
  },
  {
    "path": "packages/turf-sample/package.json",
    "content": "{\n  \"name\": \"@turf/sample\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a FeatureCollection and returns a FeatureCollection with given number of features at random.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"geojson\",\n    \"stats\",\n    \"sample\",\n    \"turf\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-sample/test.ts",
    "content": "import test from \"tape\";\nimport { point } from \"@turf/helpers\";\nimport { featureCollection } from \"@turf/helpers\";\nimport { sample } from \"./index.js\";\n\ntest(\"remove\", function (t) {\n  var points = featureCollection([\n    point([1, 2], { team: \"Red Sox\" }),\n    point([2, 1], { team: \"Yankees\" }),\n    point([3, 1], { team: \"Nationals\" }),\n    point([2, 2], { team: \"Yankees\" }),\n    point([2, 3], { team: \"Red Sox\" }),\n    point([4, 2], { team: \"Yankees\" }),\n  ]);\n\n  const results = sample(points, 4);\n\n  t.equal(results.features.length, 4, \"should sample 4 features\");\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-sample/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-sector/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-sector/README.md",
    "content": "# @turf/sector\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## sector\n\nCreates a circular sector of a circle of given radius and center [Point][1],\nbetween (clockwise) bearing1 and bearing2; 0 bearing is North of center point, positive clockwise.\n\n### Parameters\n\n*   `center` **[Coord][2]** center point\n*   `radius` **[number][3]** radius of the circle\n*   `bearing1` **[number][3]** angle, in decimal degrees, of the first radius of the sector\n*   `bearing2` **[number][3]** angle, in decimal degrees, of the second radius of the sector\n*   `options` **[Object][4]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** Supports all valid Turf [Units][5] (optional, default `'kilometers'`)\n    *   `options.steps` **[number][3]** number of steps (optional, default `64`)\n    *   `options.properties` **Properties** Translate properties to Feature Polygon (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar center = turf.point([-75, 40]);\nvar radius = 5;\nvar bearing1 = 25;\nvar bearing2 = 45;\n\nvar sector = turf.sector(center, radius, bearing1, bearing2);\n\n//addToMap\nvar addToMap = [center, sector];\n```\n\nReturns **[Feature][6]<[Polygon][7]>** sector polygon\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[5]: https://turfjs.org/docs/api/types/Units\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/sector\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-sector/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { sector } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Benchmark Results\n *\n * sector-full-360 x 29,179 ops/sec ±2.42% (76 runs sampled)\n * sector-greater-360 x 296,103 ops/sec ±10.92% (65 runs sampled)\n * sector1 x 189,709 ops/sec ±3.46% (75 runs sampled)\n * sector2 x 72,365 ops/sec ±2.11% (77 runs sampled)\n * sector3 x 38,093 ops/sec ±2.97% (77 runs sampled)\n * sector4 x 210,468 ops/sec ±2.58% (78 runs sampled)\n * sector5 x 26,438 ops/sec ±9.98% (70 runs sampled)\n * sector6 x 29,032 ops/sec ±2.36% (70 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-sector\");\nfor (const { name, geojson } of fixtures) {\n  const { radius, bearing1, bearing2 } = geojson.properties;\n  suite.add(name, () => sector(geojson, radius, bearing1, bearing2));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-sector/index.ts",
    "content": "import { Feature, Polygon, GeoJsonProperties } from \"geojson\";\nimport { circle } from \"@turf/circle\";\nimport { lineArc } from \"@turf/line-arc\";\nimport { coordEach } from \"@turf/meta\";\nimport { Units, Coord, isObject, polygon } from \"@turf/helpers\";\nimport { getCoords } from \"@turf/invariant\";\n\n/**\n * Creates a circular sector of a circle of given radius and center {@link Point},\n * between (clockwise) bearing1 and bearing2; 0 bearing is North of center point, positive clockwise.\n *\n * @function\n * @param {Coord} center center point\n * @param {number} radius radius of the circle\n * @param {number} bearing1 angle, in decimal degrees, of the first radius of the sector\n * @param {number} bearing2 angle, in decimal degrees, of the second radius of the sector\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}\n * @param {number} [options.steps=64] number of steps\n * @param {Properties} [options.properties={}] Translate properties to Feature Polygon\n * @returns {Feature<Polygon>} sector polygon\n * @example\n * var center = turf.point([-75, 40]);\n * var radius = 5;\n * var bearing1 = 25;\n * var bearing2 = 45;\n *\n * var sector = turf.sector(center, radius, bearing1, bearing2);\n *\n * //addToMap\n * var addToMap = [center, sector];\n */\nfunction sector(\n  center: Coord,\n  radius: number,\n  bearing1: number,\n  bearing2: number,\n  options: {\n    steps?: number;\n    units?: Units;\n    properties?: GeoJsonProperties;\n  } = {}\n): Feature<Polygon> {\n  // Optional parameters\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  // Most options only for passing through to circle()\n  const properties = options.properties;\n\n  // validation\n  if (!center) throw new Error(\"center is required\");\n  if (bearing1 === undefined || bearing1 === null)\n    throw new Error(\"bearing1 is required\");\n  if (bearing2 === undefined || bearing2 === null)\n    throw new Error(\"bearing2 is required\");\n  if (!radius) throw new Error(\"radius is required\");\n  if (typeof options !== \"object\") throw new Error(\"options must be an object\");\n\n  if (convertAngleTo360(bearing1) === convertAngleTo360(bearing2)) {\n    return circle(center, radius, options);\n  }\n  const coords = getCoords(center);\n  const arc = lineArc(center, radius, bearing1, bearing2, options);\n  const sliceCoords = [[coords]];\n  coordEach(arc, function (currentCoords) {\n    sliceCoords[0].push(currentCoords);\n  });\n  sliceCoords[0].push(coords);\n\n  return polygon(sliceCoords, properties);\n}\n\n/**\n * Takes any angle in degrees\n * and returns a valid angle between 0-360 degrees\n *\n * @private\n * @param {number} alpha angle between -180-180 degrees\n * @returns {number} angle between 0-360 degrees\n */\nfunction convertAngleTo360(alpha: number) {\n  let beta = alpha % 360;\n  if (beta < 0) {\n    beta += 360;\n  }\n  return beta;\n}\n\nexport { sector };\nexport default sector;\n"
  },
  {
    "path": "packages/turf-sector/package.json",
    "content": "{\n  \"name\": \"@turf/sector\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Creates a circular sector of a circle.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gif\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/circle\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/line-arc\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-sector/test/in/pacman.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 165,\n    \"bearing1\": 125,\n    \"bearing2\": 55\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [176.868896484375, -17.821915515968843]\n  }\n}\n"
  },
  {
    "path": "packages/turf-sector/test/in/sector-full-360.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 5,\n    \"bearing1\": 180,\n    \"bearing2\": -180\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-sector/test/in/sector-greater-360.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 5,\n    \"bearing1\": 0,\n    \"bearing2\": 380\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-sector/test/in/sector1.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 5,\n    \"bearing1\": 20,\n    \"bearing2\": 60\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-sector/test/in/sector2.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 5,\n    \"bearing1\": 90,\n    \"bearing2\": -135\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-sector/test/in/sector3.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 5,\n    \"bearing1\": 45,\n    \"bearing2\": -45\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-sector/test/in/sector4.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 5,\n    \"bearing1\": -50,\n    \"bearing2\": -15\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-sector/test/in/sector5.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 5,\n    \"bearing1\": -15,\n    \"bearing2\": -50\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-sector/test/in/sector6.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"radius\": 5,\n    \"bearing1\": 60,\n    \"bearing2\": 20\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [11.343, 44.495]\n  }\n}\n"
  },
  {
    "path": "packages/turf-sector/test/out/pacman.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 165,\n        \"bearing1\": 125,\n        \"bearing2\": 55\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [176.868896484375, -17.821915515968843]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#000000\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#FF0\",\n        \"fill-opacity\": 0.8\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [176.868896, -17.821916],\n            [178.151889, -18.668804],\n            [178.077565, -18.762645],\n            [177.995563, -18.850599],\n            [177.906393, -18.932108],\n            [177.810611, -19.006651],\n            [177.708821, -19.073754],\n            [177.601663, -19.132988],\n            [177.489819, -19.183974],\n            [177.373999, -19.226385],\n            [177.254942, -19.25995],\n            [177.13341, -19.284453],\n            [177.010181, -19.299738],\n            [176.886045, -19.305705],\n            [176.7618, -19.302317],\n            [176.638241, -19.289596],\n            [176.516163, -19.267622],\n            [176.396346, -19.236538],\n            [176.279558, -19.196542],\n            [176.166545, -19.147892],\n            [176.058025, -19.090898],\n            [175.954688, -19.025925],\n            [175.857187, -18.953388],\n            [175.766135, -18.873751],\n            [175.682103, -18.787521],\n            [175.605613, -18.695246],\n            [175.537137, -18.597512],\n            [175.477096, -18.494939],\n            [175.425853, -18.388176],\n            [175.383715, -18.277896],\n            [175.350929, -18.164796],\n            [175.327683, -18.049587],\n            [175.314104, -17.932991],\n            [175.310257, -17.815739],\n            [175.316147, -17.698564],\n            [175.331719, -17.582197],\n            [175.356857, -17.467363],\n            [175.391387, -17.354776],\n            [175.435078, -17.245134],\n            [175.487644, -17.139116],\n            [175.548744, -17.037379],\n            [175.617989, -16.940549],\n            [175.694941, -16.849225],\n            [175.779113, -16.763968],\n            [175.869982, -16.685303],\n            [175.96698, -16.613713],\n            [176.069507, -16.549637],\n            [176.17693, -16.493468],\n            [176.288587, -16.445549],\n            [176.403793, -16.406175],\n            [176.521842, -16.375586],\n            [176.64201, -16.353969],\n            [176.763565, -16.341457],\n            [176.885762, -16.338124],\n            [177.007856, -16.343994],\n            [177.129102, -16.359028],\n            [177.248759, -16.383135],\n            [177.366095, -16.416169],\n            [177.480392, -16.457926],\n            [177.590948, -16.508152],\n            [177.697086, -16.566539],\n            [177.79815, -16.632729],\n            [177.893515, -16.706317],\n            [177.982592, -16.786851],\n            [178.064823, -16.873835],\n            [178.139695, -16.966736],\n            [176.868896, -17.821916]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-sector/test/out/sector-full-360.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": 180,\n        \"bearing2\": -180\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#000000\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#FF0\",\n        \"fill-opacity\": 0.8\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [11.343, 44.539966],\n            [11.336816, 44.539749],\n            [11.330693, 44.539101],\n            [11.324687, 44.538028],\n            [11.318859, 44.536541],\n            [11.313264, 44.534653],\n            [11.307955, 44.532383],\n            [11.302985, 44.529752],\n            [11.298401, 44.526787],\n            [11.294247, 44.523516],\n            [11.290563, 44.51997],\n            [11.287385, 44.516183],\n            [11.284743, 44.512193],\n            [11.282663, 44.508037],\n            [11.281164, 44.503756],\n            [11.28026, 44.49939],\n            [11.279962, 44.494983],\n            [11.28027, 44.490575],\n            [11.281182, 44.486211],\n            [11.28269, 44.481931],\n            [11.284777, 44.477777],\n            [11.287425, 44.47379],\n            [11.290608, 44.470006],\n            [11.294294, 44.466464],\n            [11.298449, 44.463196],\n            [11.303033, 44.460234],\n            [11.308, 44.457607],\n            [11.313304, 44.45534],\n            [11.318893, 44.453454],\n            [11.324714, 44.451969],\n            [11.330711, 44.450897],\n            [11.336826, 44.45025],\n            [11.343, 44.450034],\n            [11.349174, 44.45025],\n            [11.355289, 44.450897],\n            [11.361286, 44.451969],\n            [11.367107, 44.453454],\n            [11.372696, 44.45534],\n            [11.378, 44.457607],\n            [11.382967, 44.460234],\n            [11.387551, 44.463196],\n            [11.391706, 44.466464],\n            [11.395392, 44.470006],\n            [11.398575, 44.47379],\n            [11.401223, 44.477777],\n            [11.40331, 44.481931],\n            [11.404818, 44.486211],\n            [11.40573, 44.490575],\n            [11.406038, 44.494983],\n            [11.40574, 44.49939],\n            [11.404836, 44.503756],\n            [11.403337, 44.508037],\n            [11.401257, 44.512193],\n            [11.398615, 44.516183],\n            [11.395437, 44.51997],\n            [11.391753, 44.523516],\n            [11.387599, 44.526787],\n            [11.383015, 44.529752],\n            [11.378045, 44.532383],\n            [11.372736, 44.534653],\n            [11.367141, 44.536541],\n            [11.361313, 44.538028],\n            [11.355307, 44.539101],\n            [11.349184, 44.539749],\n            [11.343, 44.539966]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-sector/test/out/sector-greater-360.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": 0,\n        \"bearing2\": 380\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#000000\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#FF0\",\n        \"fill-opacity\": 0.8\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [11.343, 44.495],\n            [11.343, 44.539966],\n            [11.343344, 44.539965],\n            [11.343688, 44.539963],\n            [11.344032, 44.53996],\n            [11.344376, 44.539955],\n            [11.34472, 44.539949],\n            [11.345064, 44.539942],\n            [11.345408, 44.539933],\n            [11.345752, 44.539923],\n            [11.346096, 44.539912],\n            [11.346439, 44.539899],\n            [11.346783, 44.539885],\n            [11.347126, 44.53987],\n            [11.347469, 44.539853],\n            [11.347813, 44.539835],\n            [11.348156, 44.539816],\n            [11.348498, 44.539795],\n            [11.348841, 44.539773],\n            [11.349184, 44.539749],\n            [11.349526, 44.539725],\n            [11.349868, 44.539699],\n            [11.35021, 44.539671],\n            [11.350552, 44.539642],\n            [11.350893, 44.539612],\n            [11.351234, 44.539581],\n            [11.351575, 44.539548],\n            [11.351916, 44.539514],\n            [11.352257, 44.539479],\n            [11.352597, 44.539442],\n            [11.352937, 44.539404],\n            [11.353276, 44.539365],\n            [11.353616, 44.539324],\n            [11.353955, 44.539282],\n            [11.354294, 44.539239],\n            [11.354632, 44.539194],\n            [11.35497, 44.539149],\n            [11.355307, 44.539101],\n            [11.355645, 44.539053],\n            [11.355982, 44.539003],\n            [11.356318, 44.538952],\n            [11.356654, 44.538899],\n            [11.35699, 44.538846],\n            [11.357325, 44.53879],\n            [11.35766, 44.538734],\n            [11.357995, 44.538676],\n            [11.358329, 44.538617],\n            [11.358662, 44.538557],\n            [11.358995, 44.538496],\n            [11.359328, 44.538433],\n            [11.35966, 44.538369],\n            [11.359991, 44.538303],\n            [11.360322, 44.538236],\n            [11.360653, 44.538168],\n            [11.360983, 44.538099],\n            [11.361313, 44.538028],\n            [11.361642, 44.537956],\n            [11.36197, 44.537883],\n            [11.362298, 44.537809],\n            [11.362625, 44.537733],\n            [11.362952, 44.537656],\n            [11.363278, 44.537578],\n            [11.363603, 44.537498],\n            [11.363928, 44.537418],\n            [11.364252, 44.537336],\n            [11.364576, 44.537252],\n            [11.343, 44.495]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-sector/test/out/sector1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": 20,\n        \"bearing2\": 60\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#000000\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#FF0\",\n        \"fill-opacity\": 0.8\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [11.343, 44.495],\n            [11.364576, 44.537252],\n            [11.365221, 44.537082],\n            [11.365864, 44.536906],\n            [11.366504, 44.536726],\n            [11.367141, 44.536541],\n            [11.367775, 44.53635],\n            [11.368406, 44.536155],\n            [11.369035, 44.535955],\n            [11.36966, 44.53575],\n            [11.370282, 44.53554],\n            [11.3709, 44.535325],\n            [11.371516, 44.535106],\n            [11.372128, 44.534882],\n            [11.372736, 44.534653],\n            [11.373341, 44.534419],\n            [11.373943, 44.53418],\n            [11.37454, 44.533937],\n            [11.375134, 44.53369],\n            [11.375724, 44.533437],\n            [11.37631, 44.53318],\n            [11.376893, 44.532919],\n            [11.377471, 44.532653],\n            [11.378045, 44.532383],\n            [11.378615, 44.532108],\n            [11.37918, 44.531828],\n            [11.379741, 44.531545],\n            [11.380298, 44.531257],\n            [11.380851, 44.530964],\n            [11.381399, 44.530668],\n            [11.381942, 44.530367],\n            [11.382481, 44.530062],\n            [11.383015, 44.529752],\n            [11.383544, 44.529439],\n            [11.384069, 44.529121],\n            [11.384588, 44.5288],\n            [11.385103, 44.528474],\n            [11.385612, 44.528145],\n            [11.386117, 44.527811],\n            [11.386616, 44.527474],\n            [11.38711, 44.527132],\n            [11.387599, 44.526787],\n            [11.388083, 44.526438],\n            [11.388561, 44.526086],\n            [11.389034, 44.525729],\n            [11.389501, 44.525369],\n            [11.389963, 44.525006],\n            [11.390419, 44.524638],\n            [11.390869, 44.524268],\n            [11.391314, 44.523893],\n            [11.391753, 44.523516],\n            [11.392186, 44.523135],\n            [11.392614, 44.52275],\n            [11.393035, 44.522363],\n            [11.393451, 44.521972],\n            [11.39386, 44.521578],\n            [11.394264, 44.52118],\n            [11.394661, 44.52078],\n            [11.395052, 44.520376],\n            [11.395437, 44.51997],\n            [11.395816, 44.51956],\n            [11.396188, 44.519148],\n            [11.396554, 44.518733],\n            [11.396914, 44.518314],\n            [11.397267, 44.517894],\n            [11.397614, 44.51747],\n            [11.343, 44.495]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-sector/test/out/sector2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": 90,\n        \"bearing2\": -135\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#000000\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#FF0\",\n        \"fill-opacity\": 0.8\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [11.343, 44.495],\n            [11.406038, 44.494983],\n            [11.405994, 44.493328],\n            [11.405864, 44.491675],\n            [11.405649, 44.490027],\n            [11.405349, 44.488385],\n            [11.404965, 44.486753],\n            [11.404496, 44.485131],\n            [11.403945, 44.483524],\n            [11.40331, 44.481931],\n            [11.402595, 44.480357],\n            [11.401798, 44.478802],\n            [11.400922, 44.477269],\n            [11.399967, 44.47576],\n            [11.398936, 44.474278],\n            [11.397828, 44.472823],\n            [11.396646, 44.471399],\n            [11.395392, 44.470006],\n            [11.394067, 44.468648],\n            [11.392673, 44.467325],\n            [11.391211, 44.466039],\n            [11.389684, 44.464793],\n            [11.388094, 44.463588],\n            [11.386443, 44.462425],\n            [11.384734, 44.461307],\n            [11.382967, 44.460234],\n            [11.381147, 44.459208],\n            [11.379275, 44.458231],\n            [11.377354, 44.457303],\n            [11.375387, 44.456427],\n            [11.373376, 44.455603],\n            [11.371323, 44.454832],\n            [11.369233, 44.454115],\n            [11.367107, 44.453454],\n            [11.364948, 44.452849],\n            [11.36276, 44.452302],\n            [11.360544, 44.451812],\n            [11.358306, 44.451381],\n            [11.356046, 44.451008],\n            [11.353769, 44.450695],\n            [11.351477, 44.450443],\n            [11.349174, 44.45025],\n            [11.346863, 44.450119],\n            [11.344546, 44.450048],\n            [11.342227, 44.450037],\n            [11.339909, 44.450088],\n            [11.337596, 44.4502],\n            [11.335289, 44.450372],\n            [11.332993, 44.450605],\n            [11.330711, 44.450897],\n            [11.328445, 44.45125],\n            [11.326199, 44.451662],\n            [11.323976, 44.452132],\n            [11.321778, 44.452661],\n            [11.31961, 44.453246],\n            [11.317472, 44.453889],\n            [11.315369, 44.454587],\n            [11.313304, 44.45534],\n            [11.311279, 44.456146],\n            [11.309297, 44.457005],\n            [11.30736, 44.457916],\n            [11.305471, 44.458877],\n            [11.303634, 44.459887],\n            [11.301849, 44.460944],\n            [11.30012, 44.462047],\n            [11.298449, 44.463196],\n            [11.343, 44.495]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-sector/test/out/sector3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": 45,\n        \"bearing2\": -45\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#000000\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#FF0\",\n        \"fill-opacity\": 0.8\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [11.343, 44.495],\n            [11.387599, 44.526787],\n            [11.390757, 44.524361],\n            [11.393656, 44.521775],\n            [11.39628, 44.519044],\n            [11.398615, 44.516183],\n            [11.400648, 44.513208],\n            [11.402369, 44.510133],\n            [11.403767, 44.506977],\n            [11.404836, 44.503756],\n            [11.40557, 44.500487],\n            [11.405965, 44.497189],\n            [11.406018, 44.493879],\n            [11.40573, 44.490575],\n            [11.405102, 44.487296],\n            [11.404138, 44.484058],\n            [11.402842, 44.480879],\n            [11.401223, 44.477777],\n            [11.399288, 44.474769],\n            [11.397048, 44.47187],\n            [11.394516, 44.469097],\n            [11.391706, 44.466464],\n            [11.388631, 44.463985],\n            [11.38531, 44.461675],\n            [11.38176, 44.459545],\n            [11.378, 44.457607],\n            [11.374051, 44.455871],\n            [11.369934, 44.454348],\n            [11.365671, 44.453045],\n            [11.361286, 44.451969],\n            [11.356801, 44.451126],\n            [11.352243, 44.45052],\n            [11.347634, 44.450156],\n            [11.343, 44.450034],\n            [11.338366, 44.450156],\n            [11.333757, 44.45052],\n            [11.329199, 44.451126],\n            [11.324714, 44.451969],\n            [11.320329, 44.453045],\n            [11.316066, 44.454348],\n            [11.311949, 44.455871],\n            [11.308, 44.457607],\n            [11.30424, 44.459545],\n            [11.30069, 44.461675],\n            [11.297369, 44.463985],\n            [11.294294, 44.466464],\n            [11.291484, 44.469097],\n            [11.288952, 44.47187],\n            [11.286712, 44.474769],\n            [11.284777, 44.477777],\n            [11.283158, 44.480879],\n            [11.281862, 44.484058],\n            [11.280898, 44.487296],\n            [11.28027, 44.490575],\n            [11.279982, 44.493879],\n            [11.280035, 44.497189],\n            [11.28043, 44.500487],\n            [11.281164, 44.503756],\n            [11.282233, 44.506977],\n            [11.283631, 44.510133],\n            [11.285352, 44.513208],\n            [11.287385, 44.516183],\n            [11.28972, 44.519044],\n            [11.292344, 44.521775],\n            [11.295243, 44.524361],\n            [11.298401, 44.526787],\n            [11.343, 44.495]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-sector/test/out/sector4.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": -50,\n        \"bearing2\": -15\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#000000\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#FF0\",\n        \"fill-opacity\": 0.8\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [11.343, 44.495],\n            [11.294686, 44.523893],\n            [11.295075, 44.524221],\n            [11.295468, 44.524546],\n            [11.295866, 44.524868],\n            [11.296267, 44.525188],\n            [11.296674, 44.525505],\n            [11.297084, 44.525819],\n            [11.297499, 44.52613],\n            [11.297917, 44.526438],\n            [11.29834, 44.526744],\n            [11.298767, 44.527046],\n            [11.299198, 44.527346],\n            [11.299633, 44.527643],\n            [11.300072, 44.527937],\n            [11.300515, 44.528227],\n            [11.300961, 44.528515],\n            [11.301412, 44.5288],\n            [11.301866, 44.529081],\n            [11.302324, 44.52936],\n            [11.302786, 44.529635],\n            [11.303251, 44.529907],\n            [11.303721, 44.530176],\n            [11.304193, 44.530442],\n            [11.304669, 44.530705],\n            [11.305149, 44.530964],\n            [11.305632, 44.53122],\n            [11.306119, 44.531473],\n            [11.306609, 44.531722],\n            [11.307102, 44.531969],\n            [11.307599, 44.532211],\n            [11.308098, 44.532451],\n            [11.308601, 44.532686],\n            [11.309107, 44.532919],\n            [11.309617, 44.533148],\n            [11.310129, 44.533374],\n            [11.310644, 44.533596],\n            [11.311162, 44.533814],\n            [11.311683, 44.534029],\n            [11.312207, 44.534241],\n            [11.312734, 44.534448],\n            [11.313264, 44.534653],\n            [11.313796, 44.534853],\n            [11.314331, 44.53505],\n            [11.314868, 44.535244],\n            [11.315408, 44.535433],\n            [11.315951, 44.535619],\n            [11.316496, 44.535802],\n            [11.317044, 44.53598],\n            [11.317594, 44.536155],\n            [11.318146, 44.536326],\n            [11.3187, 44.536494],\n            [11.319257, 44.536657],\n            [11.319816, 44.536817],\n            [11.320377, 44.536973],\n            [11.32094, 44.537125],\n            [11.321505, 44.537273],\n            [11.322072, 44.537418],\n            [11.322641, 44.537558],\n            [11.323212, 44.537695],\n            [11.323784, 44.537828],\n            [11.324358, 44.537956],\n            [11.324934, 44.538081],\n            [11.325512, 44.538202],\n            [11.326091, 44.53832],\n            [11.326672, 44.538433],\n            [11.343, 44.495]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-sector/test/out/sector5.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": -15,\n        \"bearing2\": -50\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#000000\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#FF0\",\n        \"fill-opacity\": 0.8\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [11.343, 44.495],\n            [11.326672, 44.538433],\n            [11.33213, 44.539293],\n            [11.337673, 44.539805],\n            [11.343258, 44.539966],\n            [11.348841, 44.539773],\n            [11.354378, 44.539228],\n            [11.359826, 44.538336],\n            [11.365141, 44.537103],\n            [11.370282, 44.53554],\n            [11.375208, 44.533658],\n            [11.379881, 44.531473],\n            [11.384264, 44.529001],\n            [11.388323, 44.526262],\n            [11.392025, 44.523278],\n            [11.395341, 44.520072],\n            [11.398247, 44.516669],\n            [11.400718, 44.513095],\n            [11.402735, 44.50938],\n            [11.404284, 44.505552],\n            [11.405351, 44.501642],\n            [11.405928, 44.497679],\n            [11.406011, 44.493695],\n            [11.4056, 44.489722],\n            [11.404697, 44.48579],\n            [11.40331, 44.481931],\n            [11.401451, 44.478175],\n            [11.399132, 44.47455],\n            [11.396374, 44.471086],\n            [11.393197, 44.46781],\n            [11.389626, 44.464748],\n            [11.385691, 44.461923],\n            [11.38142, 44.459357],\n            [11.376848, 44.457071],\n            [11.372012, 44.455083],\n            [11.366948, 44.453408],\n            [11.361696, 44.452059],\n            [11.356298, 44.451047],\n            [11.350796, 44.450379],\n            [11.345233, 44.450062],\n            [11.339652, 44.450097],\n            [11.334097, 44.450485],\n            [11.328613, 44.451222],\n            [11.32324, 44.452302],\n            [11.318023, 44.453717],\n            [11.313001, 44.455456],\n            [11.308215, 44.457505],\n            [11.303701, 44.459848],\n            [11.299495, 44.462468],\n            [11.295629, 44.465342],\n            [11.292135, 44.468449],\n            [11.28904, 44.471765],\n            [11.286368, 44.475263],\n            [11.28414, 44.478916],\n            [11.282374, 44.482696],\n            [11.281083, 44.486572],\n            [11.280278, 44.490514],\n            [11.279966, 44.494492],\n            [11.280148, 44.498474],\n            [11.280824, 44.502429],\n            [11.281988, 44.506325],\n            [11.283631, 44.510133],\n            [11.285741, 44.513822],\n            [11.2883, 44.517364],\n            [11.29129, 44.52073],\n            [11.294686, 44.523893],\n            [11.343, 44.495]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-sector/test/out/sector6.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"radius\": 5,\n        \"bearing1\": 60,\n        \"bearing2\": 20\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.343, 44.495]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#000000\",\n        \"stroke-width\": 10,\n        \"stroke-opacity\": 1,\n        \"fill\": \"#FF0\",\n        \"fill-opacity\": 0.8\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [11.343, 44.495],\n            [11.397614, 44.51747],\n            [11.400151, 44.513989],\n            [11.402252, 44.510364],\n            [11.403903, 44.506622],\n            [11.405089, 44.502791],\n            [11.405803, 44.498902],\n            [11.406038, 44.494983],\n            [11.405794, 44.491064],\n            [11.405072, 44.487175],\n            [11.403878, 44.483346],\n            [11.402221, 44.479605],\n            [11.400114, 44.475982],\n            [11.397572, 44.472504],\n            [11.394615, 44.469197],\n            [11.391266, 44.466086],\n            [11.387551, 44.463196],\n            [11.383496, 44.460547],\n            [11.379135, 44.45816],\n            [11.374498, 44.456054],\n            [11.369623, 44.454244],\n            [11.364545, 44.452744],\n            [11.359303, 44.451565],\n            [11.353938, 44.450717],\n            [11.34849, 44.450205],\n            [11.343, 44.450034],\n            [11.33751, 44.450205],\n            [11.332062, 44.450717],\n            [11.326697, 44.451565],\n            [11.321455, 44.452744],\n            [11.316377, 44.454244],\n            [11.311502, 44.456054],\n            [11.306865, 44.45816],\n            [11.302504, 44.460547],\n            [11.298449, 44.463196],\n            [11.294734, 44.466086],\n            [11.291385, 44.469197],\n            [11.288428, 44.472504],\n            [11.285886, 44.475982],\n            [11.283779, 44.479605],\n            [11.282122, 44.483346],\n            [11.280928, 44.487175],\n            [11.280206, 44.491064],\n            [11.279962, 44.494983],\n            [11.280197, 44.498902],\n            [11.280911, 44.502791],\n            [11.282097, 44.506622],\n            [11.283748, 44.510364],\n            [11.285849, 44.513989],\n            [11.288386, 44.51747],\n            [11.291339, 44.52078],\n            [11.294686, 44.523893],\n            [11.298401, 44.526787],\n            [11.302456, 44.529439],\n            [11.30682, 44.531828],\n            [11.31146, 44.533937],\n            [11.31634, 44.53575],\n            [11.321424, 44.537252],\n            [11.326672, 44.538433],\n            [11.332045, 44.539282],\n            [11.337502, 44.539795],\n            [11.343, 44.539966],\n            [11.348498, 44.539795],\n            [11.353955, 44.539282],\n            [11.359328, 44.538433],\n            [11.364576, 44.537252],\n            [11.343, 44.495]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-sector/test.ts",
    "content": "import test from \"tape\";\nimport fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { truncate } from \"@turf/truncate\";\nimport { featureCollection } from \"@turf/helpers\";\nimport { sector } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-sector\", (t) => {\n  for (const { filename, name, geojson } of fixtures) {\n    const { radius, bearing1, bearing2 } = geojson.properties;\n    const sectored = colorize(\n      truncate(sector(geojson, radius, bearing1, bearing2))\n    );\n    const results = featureCollection([geojson, sectored]);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEquals(results, loadJsonFileSync(directories.out + filename), name);\n  }\n  t.end();\n});\n\nfunction colorize(feature, color = \"#FF0\", width = 10) {\n  feature.properties = {\n    stroke: \"#000000\",\n    \"stroke-width\": width,\n    \"stroke-opacity\": 1,\n    fill: color,\n    \"fill-opacity\": 0.8,\n  };\n  return feature;\n}\n"
  },
  {
    "path": "packages/turf-sector/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-sector/types.ts",
    "content": "import { point } from \"@turf/helpers\";\nimport { sector } from \"./index.js\";\n\nconst center = point([-75.343, 39.984]);\nconst units = \"kilometers\";\nconst bearing1 = 10;\nconst bearing2 = -30;\nconst radius = 5;\nconst steps = 10;\n\nsector(center, radius, bearing1, bearing2);\nsector(center, radius, bearing1, bearing2, { steps });\nsector(center, radius, bearing1, bearing2, { steps, units });\n"
  },
  {
    "path": "packages/turf-shortest-path/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-shortest-path/README.md",
    "content": "# @turf/shortest-path\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## shortestPath\n\nReturns the shortest [path][1] from [start][2] to [end][2] without colliding with\nany [Feature][3] in obstacles [FeatureCollection][4]<[Polygon][5]>\n\n### Parameters\n\n*   `start` **[Coord][6]** point\n*   `end` **[Coord][6]** point\n*   `options` **[Object][7]** optional parameters (optional, default `{}`)\n\n    *   `options.obstacles` **([Polygon][5] | [Feature][3]<[Polygon][5]> | [FeatureCollection][4]<[Polygon][5]>)?** areas which path cannot travel\n    *   `options.units` **Units** unit in which resolution & minimum distance will be expressed in; Supports all valid Turf [Units][8]. (optional, default `'kilometers'`)\n    *   `options.resolution` **[number][9]** distance between matrix points on which the path will be calculated (optional, default `100`)\n\n### Examples\n\n```javascript\nvar start = [-5, -6];\nvar end = [9, -6];\nvar options = {\n  obstacles: turf.polygon([[[0, -7], [5, -7], [5, -3], [0, -3], [0, -7]]]).geometry\n};\n\nvar path = turf.shortestPath(start, end, options);\n\n//addToMap\nvar addToMap = [start, end, options.obstacles, path];\n```\n\nReturns **[Feature][3]<[LineString][1]>** shortest path between start and end\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.4\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[8]: https://turfjs.org/docs/api/types/Units\n\n[9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/shortest-path\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-shortest-path/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { shortestPath } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  const geojson = loadJsonFileSync(directory + filename);\n  return {\n    name: path.parse(filename).name,\n    start: geojson.features.shift(),\n    end: geojson.features.shift(),\n    options: Object.assign({}, geojson.properties, { obstacles: geojson }),\n  };\n});\n\n/**\n * Single Process Benchmark\n *\n * simple: 57.895ms\n */\nfor (const { name, start, end, options } of fixtures) {\n  console.time(name);\n  shortestPath(start, end, options);\n  console.timeEnd(name);\n}\n\n/**\n * Benchmark Results\n *\n * simple x 129 ops/sec ±4.53% (65 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-shortest-path\");\nfor (const { name, start, end, options } of fixtures) {\n  suite.add(name, () => shortestPath(start, end, options));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-shortest-path/index.ts",
    "content": "import {\n  Polygon,\n  Feature,\n  FeatureCollection,\n  LineString,\n  Geometry,\n  Point,\n} from \"geojson\";\nimport { bbox } from \"@turf/bbox\";\nimport { booleanPointInPolygon } from \"@turf/boolean-point-in-polygon\";\nimport { distance } from \"@turf/distance\";\nimport { transformScale as scale } from \"@turf/transform-scale\";\nimport { cleanCoords } from \"@turf/clean-coords\";\nimport { bboxPolygon } from \"@turf/bbox-polygon\";\nimport { getCoord, getGeom } from \"@turf/invariant\";\nimport {\n  Coord,\n  Units,\n  point,\n  isNumber,\n  lineString,\n  isObject,\n  featureCollection,\n  feature,\n} from \"@turf/helpers\";\nimport { Graph, GridNode, astar } from \"./lib/javascript-astar.js\";\n\n/**\n * Returns the shortest {@link LineString|path} from {@link Point|start} to {@link Point|end} without colliding with\n * any {@link Feature} in obstacles {@link FeatureCollection}<{@link Polygon}>\n *\n * @function\n * @param {Coord} start point\n * @param {Coord} end point\n * @param {Object} [options={}] optional parameters\n * @param {Polygon|Feature<Polygon>|FeatureCollection<Polygon>} [options.obstacles] areas which path cannot travel\n * @param {Units} [options.units='kilometers'] unit in which resolution & minimum distance will be expressed in; Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}.\n * @param {number} [options.resolution=100] distance between matrix points on which the path will be calculated\n * @returns {Feature<LineString>} shortest path between start and end\n * @example\n * var start = [-5, -6];\n * var end = [9, -6];\n * var options = {\n *   obstacles: turf.polygon([[[0, -7], [5, -7], [5, -3], [0, -3], [0, -7]]]).geometry\n * };\n *\n * var path = turf.shortestPath(start, end, options);\n *\n * //addToMap\n * var addToMap = [start, end, options.obstacles, path];\n */\nfunction shortestPath(\n  start: Coord,\n  end: Coord,\n  options: {\n    obstacles?: Polygon | Feature<Polygon> | FeatureCollection<Polygon>;\n    units?: Units;\n    resolution?: number;\n  } = {}\n): Feature<LineString> {\n  // Optional parameters\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  let obstacles = options.obstacles || featureCollection([]);\n  let resolution = options.resolution || 100;\n\n  // validation\n  if (!start) throw new Error(\"start is required\");\n  if (!end) throw new Error(\"end is required\");\n  if (resolution && (!isNumber(resolution) || resolution <= 0))\n    throw new Error(\"options.resolution must be a number, greater than 0\");\n\n  // Normalize Inputs\n  const startCoord = getCoord(start);\n  const endCoord = getCoord(end);\n  start = point(startCoord);\n  end = point(endCoord);\n\n  // Handle obstacles\n  if (obstacles.type === \"FeatureCollection\") {\n    if (obstacles.features.length === 0) {\n      return lineString([startCoord, endCoord]);\n    }\n  } else if (\n    obstacles.type === \"Feature\" &&\n    obstacles.geometry.type === \"Polygon\"\n  ) {\n    obstacles = featureCollection([obstacles]);\n  } else if (obstacles.type === \"Polygon\") {\n    obstacles = featureCollection([feature(getGeom(obstacles))]);\n  } else {\n    throw new Error(\"invalid obstacles\");\n  }\n\n  // define path grid area\n  const collection: FeatureCollection<Geometry> = obstacles;\n  collection.features.push(start);\n  collection.features.push(end);\n  const box = bbox(scale(bboxPolygon(bbox(collection)), 1.15)); // extend 15%\n  const [west, south, east, north] = box;\n\n  collection.features.pop();\n  collection.features.pop();\n\n  const columnsWithFraction =\n    distance([west, south], [east, south], options) / resolution;\n  const cellWidth = (east - west) / columnsWithFraction;\n\n  const rowsWithFraction =\n    distance([west, south], [west, north], options) / resolution;\n  const cellHeight = (north - south) / rowsWithFraction;\n\n  // adjust origin of the grid\n  const deltaX = ((columnsWithFraction % 1) * cellWidth) / 2;\n  const deltaY = ((rowsWithFraction % 1) * cellHeight) / 2;\n\n  // loop through points only once to speed up process\n  // define matrix grid for A-star algorithm\n  const pointMatrix: string[][] = [];\n  const matrix: number[][] = [];\n\n  let closestToStart: { x: number; y: number };\n  let closestToEnd: { x: number; y: number };\n  let minDistStart = Infinity;\n  let minDistEnd = Infinity;\n  let currentY = north - deltaY;\n  let r = 0;\n  while (currentY >= south) {\n    // var currentY = south + deltaY;\n    const matrixRow = [];\n    const pointMatrixRow = [];\n    let currentX = west + deltaX;\n    let c = 0;\n    while (currentX <= east) {\n      const pt = point([currentX, currentY]);\n      const isInsideObstacle = isInside(pt, obstacles);\n      // feed obstacles matrix\n      matrixRow.push(isInsideObstacle ? 0 : 1); // with javascript-astar\n      // matrixRow.push(isInsideObstacle ? 1 : 0); // with astar-andrea\n      // map point's coords\n      pointMatrixRow.push(currentX + \"|\" + currentY);\n      // set closest points\n      const distStart = distance(pt, start);\n      // if (distStart < minDistStart) {\n      if (!isInsideObstacle && distStart < minDistStart) {\n        minDistStart = distStart;\n        closestToStart = { x: c, y: r };\n      }\n      const distEnd = distance(pt, end);\n      // if (distEnd < minDistEnd) {\n      if (!isInsideObstacle && distEnd < minDistEnd) {\n        minDistEnd = distEnd;\n        closestToEnd = { x: c, y: r };\n      }\n      currentX += cellWidth;\n      c++;\n    }\n    matrix.push(matrixRow);\n    pointMatrix.push(pointMatrixRow);\n    currentY -= cellHeight;\n    r++;\n  }\n\n  // find path on matrix grid\n\n  // javascript-astar ----------------------\n  const graph = new Graph(matrix, { diagonal: true });\n  const startOnMatrix = graph.grid[closestToStart!.y][closestToStart!.x];\n  const endOnMatrix = graph.grid[closestToEnd!.y][closestToEnd!.x];\n  const result: GridNode[] = astar.search(graph, startOnMatrix, endOnMatrix);\n\n  const path = [startCoord];\n  result.forEach(function (coord) {\n    const coords = pointMatrix[coord.x][coord.y].split(\"|\");\n    path.push([+coords[0], +coords[1]]); // make sure coords are numbers\n  });\n  path.push(endCoord);\n  // ---------------------------------------\n\n  // astar-andrea ------------------------\n  // var result = aStar(matrix, [closestToStart.x, closestToStart.y], [closestToEnd.x, closestToEnd.y], 'DiagonalFree');\n  // var path = [start.geometry.coordinates];\n  // result.forEach(function (coord) {\n  //     var coords = pointMatrix[coord[1]][coord[0]].split('|');\n  //     path.push([+coords[0], +coords[1]]); // make sure coords are numbers\n  // });\n  // path.push(end.geometry.coordinates);\n  // ---------------------------------------\n\n  return cleanCoords(lineString(path));\n}\n\n/**\n * Checks if Point is inside any of the Polygons\n *\n * @private\n * @param {Feature<Point>} pt to check\n * @param {FeatureCollection<Polygon>} polygons features\n * @returns {boolean} if inside or not\n */\nfunction isInside(pt: Feature<Point>, polygons: FeatureCollection<Polygon>) {\n  for (let i = 0; i < polygons.features.length; i++) {\n    if (booleanPointInPolygon(pt, polygons.features[i])) {\n      return true;\n    }\n  }\n  return false;\n}\n\nexport { shortestPath };\nexport default shortestPath;\n"
  },
  {
    "path": "packages/turf-shortest-path/lib/javascript-astar.ts",
    "content": "// javascript-astar 0.4.1\n// http://github.com/bgrins/javascript-astar\n// Freely distributable under the MIT License.\n// Implements the astar search algorithm in javascript using a Binary Heap.\n// Includes Binary Heap (with modifications) from Marijn Haverbeke.\n// http://eloquentjavascript.net/appendix2.html\n\nfunction pathTo(node: GridNode) {\n  var curr = node,\n    path = [];\n  while (curr.parent) {\n    path.unshift(curr);\n    curr = curr.parent;\n  }\n  return path;\n}\n\nfunction getHeap() {\n  return new BinaryHeap<GridNode>(function (node) {\n    return node.f;\n  });\n}\n\n/**\n * Astar\n * @private\n */\nexport var astar = {\n  /**\n   * Perform an A* Search on a graph given a start and end node.\n   *\n   * @private\n   * @memberof astar\n   * @param {Graph} graph Graph\n   * @param {GridNode} start Start\n   * @param {GridNode} end End\n   * @param {Object} [options] Options\n   * @param {bool} [options.closest] Specifies whether to return the path to the closest node if the target is unreachable.\n   * @param {Function} [options.heuristic] Heuristic function (see astar.heuristics).\n   * @returns {Object} Search\n   */\n  search: function (\n    graph: Graph,\n    start: GridNode,\n    end: GridNode,\n    options: {\n      closest?: boolean;\n    } = {}\n  ) {\n    graph.cleanDirty();\n    options = options || {};\n    var heuristic = astar.heuristics.manhattan,\n      closest = options.closest ?? false;\n\n    var openHeap = getHeap(),\n      closestNode = start; // set the start node to be the closest if required\n\n    start.h = heuristic(start, end);\n\n    openHeap.push(start);\n\n    while (openHeap.size() > 0) {\n      // Grab the lowest f(x) to process next.  Heap keeps this sorted for us.\n      var currentNode = openHeap.pop();\n\n      // End case -- result has been found, return the traced path.\n      if (currentNode === end) {\n        return pathTo(currentNode);\n      }\n\n      // Normal case -- move currentNode from open to closed, process each of its neighbors.\n      currentNode.closed = true;\n\n      // Find all neighbors for the current node.\n      var neighbors = graph.neighbors(currentNode);\n\n      for (var i = 0, il = neighbors.length; i < il; ++i) {\n        var neighbor = neighbors[i];\n\n        if (neighbor.closed || neighbor.isWall()) {\n          // Not a valid node to process, skip to next neighbor.\n          continue;\n        }\n\n        // The g score is the shortest distance from start to current node.\n        // We need to check if the path we have arrived at this neighbor is the shortest one we have seen yet.\n        var gScore = currentNode.g + neighbor.getCost(currentNode),\n          beenVisited = neighbor.visited;\n\n        if (!beenVisited || gScore < neighbor.g) {\n          // Found an optimal (so far) path to this node.  Take score for node to see how good it is.\n          neighbor.visited = true;\n          neighbor.parent = currentNode;\n          neighbor.h = neighbor.h || heuristic(neighbor, end);\n          neighbor.g = gScore;\n          neighbor.f = neighbor.g + neighbor.h;\n          graph.markDirty(neighbor);\n          if (closest) {\n            // If the neighbour is closer than the current closestNode or if it's equally close but has\n            // a cheaper path than the current closest node then it becomes the closest node\n            if (\n              neighbor.h < closestNode.h ||\n              (neighbor.h === closestNode.h && neighbor.g < closestNode.g)\n            ) {\n              closestNode = neighbor;\n            }\n          }\n\n          if (!beenVisited) {\n            // Pushing to heap will put it in proper place based on the 'f' value.\n            openHeap.push(neighbor);\n          } else {\n            // Already seen the node, but since it has been rescored we need to reorder it in the heap\n            openHeap.rescoreElement(neighbor);\n          }\n        }\n      }\n    }\n\n    if (closest) {\n      return pathTo(closestNode);\n    }\n\n    // No result was found - empty array signifies failure to find path.\n    return [];\n  },\n  // See list of heuristics: http://theory.stanford.edu/~amitp/GameProgramming/Heuristics.html\n  heuristics: {\n    manhattan: function (\n      pos0: { x: number; y: number },\n      pos1: { x: number; y: number }\n    ) {\n      var d1 = Math.abs(pos1.x - pos0.x);\n      var d2 = Math.abs(pos1.y - pos0.y);\n      return d1 + d2;\n    },\n    diagonal: function (\n      pos0: { x: number; y: number },\n      pos1: { x: number; y: number }\n    ) {\n      var D = 1;\n      var D2 = Math.sqrt(2);\n      var d1 = Math.abs(pos1.x - pos0.x);\n      var d2 = Math.abs(pos1.y - pos0.y);\n      return D * (d1 + d2) + (D2 - 2 * D) * Math.min(d1, d2);\n    },\n  },\n  cleanNode: function (node: GridNode) {\n    node.f = 0;\n    node.g = 0;\n    node.h = 0;\n    node.visited = false;\n    node.closed = false;\n    node.parent = undefined;\n  },\n};\n\n/**\n * A graph memory structure\n *\n * @private\n * @param {Array} gridIn 2D array of input weights\n * @param {Object} [options] Options\n * @param {boolean} [options.diagonal] Specifies whether diagonal moves are allowed\n * @returns {void} Graph\n */\nexport class Graph {\n  nodes: GridNode[] = [];\n  diagonal: boolean;\n  grid: GridNode[][] = [];\n  dirtyNodes: GridNode[] = [];\n\n  constructor(gridIn: number[][], options: { diagonal?: boolean } = {}) {\n    this.diagonal = !!options.diagonal;\n    for (var x = 0; x < gridIn.length; x++) {\n      this.grid[x] = [];\n\n      for (var y = 0, row = gridIn[x]; y < row.length; y++) {\n        var node = new GridNode(x, y, row[y]);\n        this.grid[x][y] = node;\n        this.nodes.push(node);\n      }\n    }\n    this.init();\n  }\n\n  init() {\n    this.dirtyNodes = [];\n    for (var i = 0; i < this.nodes.length; i++) {\n      astar.cleanNode(this.nodes[i]);\n    }\n  }\n\n  cleanDirty() {\n    for (var i = 0; i < this.dirtyNodes.length; i++) {\n      astar.cleanNode(this.dirtyNodes[i]);\n    }\n    this.dirtyNodes = [];\n  }\n\n  markDirty(node: GridNode) {\n    this.dirtyNodes.push(node);\n  }\n\n  neighbors(node: GridNode) {\n    var ret = [],\n      x = node.x,\n      y = node.y,\n      grid = this.grid;\n\n    // West\n    if (grid[x - 1] && grid[x - 1][y]) {\n      ret.push(grid[x - 1][y]);\n    }\n\n    // East\n    if (grid[x + 1] && grid[x + 1][y]) {\n      ret.push(grid[x + 1][y]);\n    }\n\n    // South\n    if (grid[x] && grid[x][y - 1]) {\n      ret.push(grid[x][y - 1]);\n    }\n\n    // North\n    if (grid[x] && grid[x][y + 1]) {\n      ret.push(grid[x][y + 1]);\n    }\n\n    if (this.diagonal) {\n      // Southwest\n      if (grid[x - 1] && grid[x - 1][y - 1]) {\n        ret.push(grid[x - 1][y - 1]);\n      }\n\n      // Southeast\n      if (grid[x + 1] && grid[x + 1][y - 1]) {\n        ret.push(grid[x + 1][y - 1]);\n      }\n\n      // Northwest\n      if (grid[x - 1] && grid[x - 1][y + 1]) {\n        ret.push(grid[x - 1][y + 1]);\n      }\n\n      // Northeast\n      if (grid[x + 1] && grid[x + 1][y + 1]) {\n        ret.push(grid[x + 1][y + 1]);\n      }\n    }\n\n    return ret;\n  }\n\n  toString() {\n    var graphString = [],\n      nodes = this.grid, // when using grid\n      rowDebug,\n      row,\n      y,\n      l;\n    for (var x = 0, len = nodes.length; x < len; x++) {\n      rowDebug = [];\n      row = nodes[x];\n      for (y = 0, l = row.length; y < l; y++) {\n        rowDebug.push(row[y].weight);\n      }\n      graphString.push(rowDebug.join(\" \"));\n    }\n    return graphString.join(\"\\n\");\n  }\n}\n\nexport class GridNode {\n  x: number;\n  y: number;\n  weight: number;\n\n  visited: boolean = false;\n  parent?: GridNode;\n  h: number = 0;\n  g: number = 0;\n  f: number = 0;\n  closed: boolean = false;\n\n  constructor(x: number, y: number, weight: number) {\n    this.x = x;\n    this.y = y;\n    this.weight = weight;\n  }\n  toString() {\n    return \"[\" + this.x + \" \" + this.y + \"]\";\n  }\n\n  getCost(fromNeighbor: GridNode) {\n    // Take diagonal weight into consideration.\n    if (\n      fromNeighbor &&\n      fromNeighbor.x !== this.x &&\n      fromNeighbor.y !== this.y\n    ) {\n      return this.weight * 1.41421;\n    }\n    return this.weight;\n  }\n\n  isWall() {\n    return this.weight === 0;\n  }\n}\n\nclass BinaryHeap<T> {\n  content: T[] = [];\n  scoreFunction: (o: T) => number;\n\n  constructor(scoreFunction: (o: T) => number) {\n    this.scoreFunction = scoreFunction;\n  }\n\n  push(element: T) {\n    // Add the new element to the end of the array.\n    this.content.push(element);\n\n    // Allow it to sink down.\n    this.sinkDown(this.content.length - 1);\n  }\n\n  pop() {\n    // Store the first element so we can return it later.\n    var result = this.content[0];\n    // Get the element at the end of the array.\n    var end = this.content.pop();\n    // If there are any elements left, put the end element at the\n    // start, and let it bubble up.\n    if (this.content.length > 0) {\n      this.content[0] = end!;\n      this.bubbleUp(0);\n    }\n    return result;\n  }\n\n  remove(node: T) {\n    var i = this.content.indexOf(node);\n\n    // When it is found, the process seen in 'pop' is repeated\n    // to fill up the hole.\n    var end = this.content.pop()!;\n\n    if (i !== this.content.length - 1) {\n      this.content[i] = end;\n\n      if (this.scoreFunction(end) < this.scoreFunction(node)) {\n        this.sinkDown(i);\n      } else {\n        this.bubbleUp(i);\n      }\n    }\n  }\n\n  size() {\n    return this.content.length;\n  }\n\n  rescoreElement(node: T) {\n    this.sinkDown(this.content.indexOf(node));\n  }\n\n  sinkDown(n: number) {\n    // Fetch the element that has to be sunk.\n    var element = this.content[n];\n\n    // When at 0, an element can not sink any further.\n    while (n > 0) {\n      // Compute the parent element's index, and fetch it.\n      var parentN = ((n + 1) >> 1) - 1,\n        parent = this.content[parentN];\n      // Swap the elements if the parent is greater.\n      if (this.scoreFunction(element) < this.scoreFunction(parent)) {\n        this.content[parentN] = element;\n        this.content[n] = parent;\n        // Update 'n' to continue at the new position.\n        n = parentN;\n        // Found a parent that is less, no need to sink any further.\n      } else {\n        break;\n      }\n    }\n  }\n\n  bubbleUp(n: number) {\n    // Look up the target element and its score.\n    var length = this.content.length,\n      element = this.content[n],\n      elemScore = this.scoreFunction(element);\n\n    while (true) {\n      // Compute the indices of the child elements.\n      var child2N = (n + 1) << 1,\n        child1N = child2N - 1;\n      // This is used to store the new position of the element, if any.\n      var swap = null,\n        child1Score;\n      // If the first child exists (is inside the array)...\n      if (child1N < length) {\n        // Look it up and compute its score.\n        var child1 = this.content[child1N];\n        child1Score = this.scoreFunction(child1);\n\n        // If the score is less than our element's, we need to swap.\n        if (child1Score < elemScore) {\n          swap = child1N;\n        }\n      }\n\n      // Do the same checks for the other child.\n      if (child2N < length) {\n        var child2 = this.content[child2N],\n          child2Score = this.scoreFunction(child2);\n        if (child2Score < (swap === null ? elemScore : child1Score)!) {\n          swap = child2N;\n        }\n      }\n\n      // If the element needs to be moved, swap it, and continue.\n      if (swap !== null) {\n        this.content[n] = this.content[swap];\n        this.content[swap] = element;\n        n = swap;\n        // Otherwise, we are done.\n      } else {\n        break;\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "packages/turf-shortest-path/package.json",
    "content": "{\n  \"name\": \"@turf/shortest-path\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Returns the shortest path from start to end without colliding with any Feature in obstacles.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Stefano Borghi <@stebogit>\",\n    \"Denis Carriere <@DenisCarriere>\",\n    \"Daniel Ziegler <@ziegler-daniel>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"shortest-path\",\n    \"path\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/bbox-polygon\": \"workspace:*\",\n    \"@turf/boolean-point-in-polygon\": \"workspace:*\",\n    \"@turf/clean-coords\": \"workspace:*\",\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@turf/transform-scale\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-shortest-path/test/in/bermuda-triangle.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"resolution\": 20,\n    \"units\": \"kilometers\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"type\": \"start\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-60.925, 22.335]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"type\": \"end\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.991, 29.965]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.19, 25.774],\n            [-66.118, 18.466],\n            [-64.757, 32.321],\n            [-80.19, 25.774]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-shortest-path/test/in/farmland.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"resolution\": 10,\n    \"units\": \"meters\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"start\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [13.811772, 52.151878]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"end\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [13.807807, 52.157116]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"obstacle\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [13.809135, 52.153309],\n            [13.809135, 52.152021],\n            [13.813001, 52.152021],\n            [13.813001, 52.153309],\n            [13.809135, 52.153309]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-shortest-path/test/in/multiple-obstacles.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"resolution\": 10,\n    \"units\": \"centimeters\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"type\": \"start\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.158503, 51.50751]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"type\": \"end\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.156938, 51.50724]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"obstacle 1\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.158656, 51.507437],\n            [-0.157762, 51.506957],\n            [-0.157403, 51.507497],\n            [-0.158402, 51.507721],\n            [-0.158385, 51.507443],\n            [-0.158656, 51.507437]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"obstacle 2\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.157216, 51.507531],\n            [-0.157216, 51.507311],\n            [-0.156869, 51.507311],\n            [-0.156869, 51.507531],\n            [-0.157216, 51.507531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"obstacle 3\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.157414, 51.507373],\n            [-0.157527, 51.507013],\n            [-0.157171, 51.506986],\n            [-0.156902, 51.507049],\n            [-0.157192, 51.507232],\n            [-0.157414, 51.507373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"obstacle 4\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15781, 51.507865],\n            [-0.157319, 51.507501],\n            [-0.157231, 51.507728],\n            [-0.15781, 51.507865]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-shortest-path/test/in/simple.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"resolution\": 10,\n    \"units\": \"kilometers\"\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"type\": \"start\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5.625, 40.763]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"type\": \"end\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.931, 39.147]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.206787, 40.730608],\n            [8.569335, 39.892879],\n            [8.349609, 39.257778],\n            [8.843994, 38.908132],\n            [9.085693, 39.257778],\n            [9.591064, 39.164141],\n            [9.591064, 40.271143],\n            [9.821777, 40.472024],\n            [9.283447, 41.253032],\n            [8.206787, 40.730608]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-shortest-path/test/out/bermuda-triangle.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.19, 25.774],\n            [-66.118, 18.466],\n            [-64.757, 32.321],\n            [-80.19, 25.774]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"type\": \"start\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-60.925, 22.335]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"type\": \"end\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.991, 29.965]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 5\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-60.925, 22.335],\n          [-61.126249, 22.515675],\n          [-62.257999, 23.594859],\n          [-62.257999, 29.890102],\n          [-64.521499, 32.048471],\n          [-64.898749, 32.408199],\n          [-65.087374, 32.228335],\n          [-65.275999, 32.228335],\n          [-65.464624, 32.048471],\n          [-65.653249, 32.048471],\n          [-65.841874, 31.868607],\n          [-66.219125, 31.868607],\n          [-66.40775, 31.688743],\n          [-66.596375, 31.688743],\n          [-66.785, 31.508878],\n          [-66.973625, 31.508878],\n          [-67.16225, 31.329014],\n          [-67.350875, 31.329014],\n          [-67.5395, 31.14915],\n          [-67.91675, 31.14915],\n          [-68.105375, 30.969286],\n          [-68.294, 30.969286],\n          [-68.482625, 30.789422],\n          [-68.67125, 30.789422],\n          [-68.859875, 30.609558],\n          [-69.0485, 30.609558],\n          [-69.237125, 30.429694],\n          [-69.614375, 30.429694],\n          [-69.803, 30.24983],\n          [-69.991625, 30.24983],\n          [-70.18025, 30.069966],\n          [-70.368875, 30.069966],\n          [-70.5575, 29.890102],\n          [-79.988751, 29.890102],\n          [-79.991, 29.965]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-shortest-path/test/out/farmland.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"obstacle\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [13.809135, 52.153309],\n            [13.809135, 52.152021],\n            [13.813001, 52.152021],\n            [13.813001, 52.153309],\n            [13.809135, 52.153309]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"start\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [13.811772, 52.151878]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"end\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [13.807807, 52.157116]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 5\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [13.811772, 52.151878],\n          [13.811577, 52.151979],\n          [13.809231, 52.151979],\n          [13.807766, 52.152878],\n          [13.807766, 52.157105],\n          [13.807807, 52.157116]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-shortest-path/test/out/multiple-obstacles.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"obstacle 1\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.158656, 51.507437],\n            [-0.157762, 51.506957],\n            [-0.157403, 51.507497],\n            [-0.158402, 51.507721],\n            [-0.158385, 51.507443],\n            [-0.158656, 51.507437]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"obstacle 2\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.157216, 51.507531],\n            [-0.157216, 51.507311],\n            [-0.156869, 51.507311],\n            [-0.156869, 51.507531],\n            [-0.157216, 51.507531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"obstacle 3\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.157414, 51.507373],\n            [-0.157527, 51.507013],\n            [-0.157171, 51.506986],\n            [-0.156902, 51.507049],\n            [-0.157192, 51.507232],\n            [-0.157414, 51.507373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"name\": \"obstacle 4\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.15781, 51.507865],\n            [-0.157319, 51.507501],\n            [-0.157231, 51.507728],\n            [-0.15781, 51.507865]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"type\": \"start\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.158503, 51.50751]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"type\": \"end\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-0.156938, 51.50724]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 5\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [-0.158503, 51.50751],\n          [-0.158502, 51.507511],\n          [-0.158502, 51.507512],\n          [-0.158499, 51.507514],\n          [-0.158499, 51.507537],\n          [-0.158466, 51.507558],\n          [-0.158466, 51.507559],\n          [-0.158403, 51.507599],\n          [-0.158403, 51.50772],\n          [-0.158401, 51.507721],\n          [-0.158398, 51.507721],\n          [-0.158397, 51.50772],\n          [-0.158394, 51.50772],\n          [-0.158392, 51.507719],\n          [-0.15839, 51.507719],\n          [-0.158388, 51.507718],\n          [-0.158385, 51.507718],\n          [-0.158384, 51.507717],\n          [-0.158382, 51.507717],\n          [-0.158381, 51.507716],\n          [-0.158378, 51.507716],\n          [-0.158377, 51.507715],\n          [-0.158374, 51.507715],\n          [-0.158372, 51.507715],\n          [-0.158369, 51.507715],\n          [-0.158368, 51.507714],\n          [-0.158366, 51.507714],\n          [-0.158365, 51.507713],\n          [-0.158362, 51.507713],\n          [-0.158361, 51.507712],\n          [-0.158358, 51.507712],\n          [-0.158356, 51.507711],\n          [-0.158353, 51.507711],\n          [-0.158352, 51.50771],\n          [-0.158349, 51.50771],\n          [-0.158348, 51.507709],\n          [-0.158346, 51.507709],\n          [-0.158345, 51.507708],\n          [-0.158342, 51.507708],\n          [-0.15834, 51.507707],\n          [-0.158338, 51.507707],\n          [-0.158336, 51.507706],\n          [-0.158333, 51.507706],\n          [-0.158332, 51.507706],\n          [-0.15833, 51.507706],\n          [-0.158329, 51.507705],\n          [-0.158326, 51.507705],\n          [-0.158325, 51.507704],\n          [-0.158322, 51.507704],\n          [-0.15832, 51.507703],\n          [-0.158317, 51.507703],\n          [-0.158316, 51.507702],\n          [-0.158313, 51.507702],\n          [-0.158312, 51.507701],\n          [-0.15831, 51.507701],\n          [-0.158309, 51.5077],\n          [-0.158306, 51.5077],\n          [-0.158304, 51.507699],\n          [-0.158301, 51.507699],\n          [-0.1583, 51.507698],\n          [-0.158297, 51.507698],\n          [-0.158296, 51.507697],\n          [-0.158294, 51.507697],\n          [-0.158293, 51.507697],\n          [-0.15829, 51.507697],\n          [-0.158288, 51.507696],\n          [-0.158286, 51.507696],\n          [-0.158284, 51.507695],\n          [-0.158281, 51.507695],\n          [-0.15828, 51.507694],\n          [-0.158277, 51.507694],\n          [-0.158275, 51.507693],\n          [-0.158274, 51.507693],\n          [-0.158273, 51.507692],\n          [-0.15827, 51.507692],\n          [-0.158268, 51.507691],\n          [-0.158265, 51.507691],\n          [-0.158264, 51.50769],\n          [-0.158261, 51.50769],\n          [-0.15826, 51.507689],\n          [-0.158258, 51.507689],\n          [-0.158257, 51.507688],\n          [-0.158254, 51.507688],\n          [-0.158252, 51.507688],\n          [-0.158249, 51.507688],\n          [-0.158248, 51.507687],\n          [-0.158245, 51.507687],\n          [-0.158244, 51.507686],\n          [-0.158241, 51.507686],\n          [-0.158239, 51.507685],\n          [-0.158238, 51.507685],\n          [-0.158236, 51.507684],\n          [-0.158234, 51.507684],\n          [-0.158232, 51.507683],\n          [-0.158229, 51.507683],\n          [-0.158228, 51.507682],\n          [-0.158225, 51.507682],\n          [-0.158223, 51.507681],\n          [-0.158222, 51.507681],\n          [-0.158221, 51.50768],\n          [-0.158218, 51.50768],\n          [-0.158216, 51.507679],\n          [-0.158213, 51.507679],\n          [-0.158212, 51.507679],\n          [-0.158209, 51.507679],\n          [-0.158208, 51.507678],\n          [-0.158206, 51.507678],\n          [-0.158205, 51.507677],\n          [-0.158202, 51.507677],\n          [-0.1582, 51.507676],\n          [-0.158197, 51.507676],\n          [-0.158196, 51.507675],\n          [-0.158193, 51.507675],\n          [-0.158192, 51.507674],\n          [-0.158189, 51.507674],\n          [-0.158187, 51.507673],\n          [-0.158186, 51.507673],\n          [-0.158184, 51.507672],\n          [-0.158182, 51.507672],\n          [-0.15818, 51.507671],\n          [-0.158177, 51.507671],\n          [-0.158176, 51.50767],\n          [-0.158173, 51.50767],\n          [-0.158171, 51.50767],\n          [-0.15817, 51.50767],\n          [-0.158169, 51.507669],\n          [-0.158166, 51.507669],\n          [-0.158164, 51.507668],\n          [-0.158161, 51.507668],\n          [-0.15816, 51.507667],\n          [-0.158157, 51.507667],\n          [-0.158156, 51.507666],\n          [-0.158153, 51.507666],\n          [-0.158151, 51.507665],\n          [-0.15815, 51.507665],\n          [-0.158148, 51.507664],\n          [-0.158145, 51.507664],\n          [-0.158144, 51.507663],\n          [-0.158141, 51.507663],\n          [-0.15814, 51.507662],\n          [-0.158137, 51.507662],\n          [-0.158135, 51.507661],\n          [-0.158134, 51.507661],\n          [-0.158132, 51.507661],\n          [-0.158129, 51.507661],\n          [-0.158128, 51.50766],\n          [-0.158125, 51.50766],\n          [-0.158124, 51.507659],\n          [-0.158121, 51.507659],\n          [-0.158119, 51.507658],\n          [-0.158116, 51.507658],\n          [-0.158115, 51.507657],\n          [-0.158114, 51.507657],\n          [-0.158112, 51.507656],\n          [-0.158109, 51.507656],\n          [-0.158108, 51.507655],\n          [-0.158105, 51.507655],\n          [-0.158103, 51.507654],\n          [-0.158101, 51.507654],\n          [-0.158099, 51.507653],\n          [-0.158098, 51.507653],\n          [-0.158096, 51.507652],\n          [-0.158093, 51.507652],\n          [-0.158092, 51.507652],\n          [-0.158089, 51.507652],\n          [-0.158088, 51.507651],\n          [-0.158085, 51.507651],\n          [-0.158083, 51.50765],\n          [-0.15808, 51.50765],\n          [-0.158079, 51.507649],\n          [-0.158077, 51.507649],\n          [-0.158076, 51.507648],\n          [-0.158073, 51.507648],\n          [-0.158072, 51.507647],\n          [-0.158069, 51.507647],\n          [-0.158067, 51.507646],\n          [-0.158064, 51.507646],\n          [-0.158063, 51.507645],\n          [-0.158062, 51.507645],\n          [-0.15806, 51.507644],\n          [-0.158057, 51.507644],\n          [-0.158056, 51.507643],\n          [-0.158053, 51.507643],\n          [-0.158051, 51.507643],\n          [-0.158049, 51.507643],\n          [-0.158047, 51.507642],\n          [-0.158044, 51.507642],\n          [-0.158043, 51.507641],\n          [-0.158041, 51.507641],\n          [-0.15804, 51.50764],\n          [-0.158037, 51.50764],\n          [-0.158036, 51.507639],\n          [-0.158033, 51.507639],\n          [-0.158031, 51.507638],\n          [-0.158028, 51.507638],\n          [-0.158027, 51.507637],\n          [-0.158025, 51.507637],\n          [-0.158024, 51.507636],\n          [-0.158021, 51.507636],\n          [-0.15802, 51.507635],\n          [-0.158017, 51.507635],\n          [-0.158015, 51.507634],\n          [-0.158012, 51.507634],\n          [-0.158011, 51.507634],\n          [-0.158008, 51.507634],\n          [-0.158007, 51.507633],\n          [-0.158005, 51.507633],\n          [-0.158004, 51.507632],\n          [-0.158001, 51.507632],\n          [-0.157999, 51.507631],\n          [-0.157997, 51.507631],\n          [-0.157995, 51.50763],\n          [-0.157992, 51.50763],\n          [-0.157991, 51.507629],\n          [-0.157989, 51.507629],\n          [-0.157988, 51.507628],\n          [-0.157985, 51.507628],\n          [-0.157984, 51.507627],\n          [-0.157981, 51.507627],\n          [-0.157979, 51.507626],\n          [-0.157976, 51.507626],\n          [-0.157975, 51.507625],\n          [-0.157973, 51.507625],\n          [-0.157972, 51.507625],\n          [-0.157969, 51.507625],\n          [-0.157968, 51.507624],\n          [-0.157965, 51.507624],\n          [-0.157963, 51.507623],\n          [-0.15796, 51.507623],\n          [-0.157959, 51.507622],\n          [-0.157956, 51.507622],\n          [-0.157955, 51.507621],\n          [-0.157953, 51.507621],\n          [-0.157952, 51.50762],\n          [-0.157949, 51.50762],\n          [-0.157947, 51.507619],\n          [-0.157945, 51.507619],\n          [-0.157943, 51.507618],\n          [-0.15794, 51.507618],\n          [-0.157939, 51.507617],\n          [-0.157937, 51.507617],\n          [-0.157936, 51.507616],\n          [-0.157933, 51.507616],\n          [-0.157932, 51.507616],\n          [-0.157929, 51.507616],\n          [-0.157927, 51.507615],\n          [-0.157924, 51.507615],\n          [-0.157923, 51.507614],\n          [-0.15792, 51.507614],\n          [-0.157919, 51.507613],\n          [-0.157917, 51.507613],\n          [-0.157916, 51.507612],\n          [-0.157913, 51.507612],\n          [-0.157911, 51.507611],\n          [-0.157908, 51.507611],\n          [-0.157907, 51.50761],\n          [-0.157904, 51.50761],\n          [-0.157903, 51.507609],\n          [-0.157901, 51.507609],\n          [-0.1579, 51.507608],\n          [-0.157897, 51.507608],\n          [-0.157895, 51.507608],\n          [-0.157893, 51.507608],\n          [-0.157891, 51.507607],\n          [-0.157888, 51.507607],\n          [-0.157887, 51.507606],\n          [-0.157884, 51.507606],\n          [-0.157882, 51.507605],\n          [-0.157881, 51.507605],\n          [-0.15788, 51.507604],\n          [-0.157877, 51.507604],\n          [-0.157875, 51.507603],\n          [-0.157872, 51.507603],\n          [-0.157871, 51.507602],\n          [-0.157868, 51.507602],\n          [-0.157867, 51.507601],\n          [-0.157865, 51.507601],\n          [-0.157864, 51.5076],\n          [-0.157861, 51.5076],\n          [-0.157859, 51.507599],\n          [-0.157856, 51.507599],\n          [-0.157855, 51.507599],\n          [-0.157852, 51.507599],\n          [-0.157851, 51.507598],\n          [-0.157848, 51.507598],\n          [-0.157846, 51.507597],\n          [-0.157845, 51.507597],\n          [-0.157843, 51.507596],\n          [-0.157841, 51.507596],\n          [-0.157839, 51.507595],\n          [-0.157836, 51.507595],\n          [-0.157835, 51.507594],\n          [-0.157832, 51.507594],\n          [-0.15783, 51.507593],\n          [-0.157829, 51.507593],\n          [-0.157828, 51.507592],\n          [-0.157825, 51.507592],\n          [-0.157823, 51.507591],\n          [-0.15782, 51.507591],\n          [-0.157819, 51.50759],\n          [-0.157816, 51.50759],\n          [-0.157815, 51.50759],\n          [-0.157812, 51.50759],\n          [-0.15781, 51.507589],\n          [-0.157809, 51.507589],\n          [-0.157807, 51.507588],\n          [-0.157804, 51.507588],\n          [-0.157803, 51.507587],\n          [-0.1578, 51.507587],\n          [-0.157799, 51.507586],\n          [-0.157796, 51.507586],\n          [-0.157794, 51.507585],\n          [-0.157793, 51.507585],\n          [-0.157791, 51.507584],\n          [-0.157789, 51.507584],\n          [-0.157787, 51.507583],\n          [-0.157784, 51.507583],\n          [-0.157783, 51.507582],\n          [-0.15778, 51.507582],\n          [-0.157778, 51.507581],\n          [-0.157776, 51.507581],\n          [-0.157774, 51.507581],\n          [-0.157773, 51.507581],\n          [-0.157771, 51.50758],\n          [-0.157768, 51.50758],\n          [-0.157767, 51.507579],\n          [-0.157764, 51.507579],\n          [-0.157762, 51.507578],\n          [-0.15776, 51.507578],\n          [-0.157758, 51.507577],\n          [-0.157757, 51.507577],\n          [-0.157755, 51.507576],\n          [-0.157752, 51.507576],\n          [-0.157751, 51.507575],\n          [-0.157748, 51.507575],\n          [-0.157747, 51.507574],\n          [-0.157744, 51.507574],\n          [-0.157742, 51.507573],\n          [-0.157741, 51.507573],\n          [-0.157739, 51.507572],\n          [-0.157736, 51.507572],\n          [-0.157735, 51.507572],\n          [-0.157732, 51.507572],\n          [-0.157731, 51.507571],\n          [-0.157728, 51.507571],\n          [-0.157726, 51.50757],\n          [-0.157723, 51.50757],\n          [-0.157722, 51.507569],\n          [-0.157721, 51.507569],\n          [-0.157719, 51.507568],\n          [-0.157716, 51.507568],\n          [-0.157715, 51.507567],\n          [-0.157712, 51.507567],\n          [-0.15771, 51.507566],\n          [-0.157708, 51.507566],\n          [-0.157706, 51.507565],\n          [-0.157705, 51.507565],\n          [-0.157703, 51.507564],\n          [-0.1577, 51.507564],\n          [-0.157699, 51.507563],\n          [-0.157696, 51.507563],\n          [-0.157695, 51.507563],\n          [-0.157692, 51.507563],\n          [-0.15769, 51.507562],\n          [-0.157687, 51.507562],\n          [-0.157686, 51.507561],\n          [-0.157684, 51.507561],\n          [-0.157683, 51.50756],\n          [-0.15768, 51.50756],\n          [-0.157679, 51.507559],\n          [-0.157676, 51.507559],\n          [-0.157674, 51.507558],\n          [-0.157671, 51.507558],\n          [-0.15767, 51.507557],\n          [-0.157669, 51.507557],\n          [-0.157667, 51.507556],\n          [-0.157664, 51.507556],\n          [-0.157663, 51.507555],\n          [-0.15766, 51.507555],\n          [-0.157658, 51.507554],\n          [-0.157656, 51.507554],\n          [-0.157654, 51.507554],\n          [-0.157651, 51.507554],\n          [-0.15765, 51.507553],\n          [-0.157648, 51.507553],\n          [-0.157647, 51.507552],\n          [-0.157644, 51.507552],\n          [-0.157643, 51.507551],\n          [-0.15764, 51.507551],\n          [-0.157638, 51.50755],\n          [-0.157635, 51.50755],\n          [-0.157634, 51.507549],\n          [-0.157632, 51.507549],\n          [-0.157631, 51.507548],\n          [-0.157628, 51.507548],\n          [-0.157627, 51.507547],\n          [-0.157624, 51.507547],\n          [-0.157622, 51.507546],\n          [-0.157619, 51.507546],\n          [-0.157618, 51.507545],\n          [-0.157615, 51.507545],\n          [-0.157614, 51.507545],\n          [-0.157612, 51.507545],\n          [-0.157611, 51.507544],\n          [-0.157608, 51.507544],\n          [-0.157606, 51.507543],\n          [-0.157604, 51.507543],\n          [-0.157602, 51.507542],\n          [-0.157599, 51.507542],\n          [-0.157598, 51.507541],\n          [-0.157596, 51.507541],\n          [-0.157595, 51.50754],\n          [-0.157592, 51.50754],\n          [-0.157591, 51.507539],\n          [-0.157588, 51.507539],\n          [-0.157586, 51.507538],\n          [-0.157583, 51.507538],\n          [-0.157582, 51.507537],\n          [-0.157579, 51.507537],\n          [-0.157578, 51.507536],\n          [-0.157576, 51.507536],\n          [-0.157575, 51.507536],\n          [-0.157572, 51.507536],\n          [-0.15757, 51.507535],\n          [-0.157567, 51.507535],\n          [-0.157566, 51.507534],\n          [-0.157563, 51.507534],\n          [-0.157562, 51.507533],\n          [-0.15756, 51.507533],\n          [-0.157559, 51.507532],\n          [-0.157556, 51.507532],\n          [-0.157554, 51.507531],\n          [-0.157552, 51.507531],\n          [-0.15755, 51.50753],\n          [-0.157547, 51.50753],\n          [-0.157546, 51.507529],\n          [-0.157543, 51.507529],\n          [-0.157541, 51.507528],\n          [-0.15754, 51.507528],\n          [-0.157539, 51.507527],\n          [-0.157536, 51.507527],\n          [-0.157534, 51.507527],\n          [-0.157531, 51.507527],\n          [-0.15753, 51.507526],\n          [-0.157527, 51.507526],\n          [-0.157526, 51.507525],\n          [-0.157524, 51.507525],\n          [-0.157523, 51.507524],\n          [-0.15752, 51.507524],\n          [-0.157518, 51.507523],\n          [-0.157515, 51.507523],\n          [-0.157514, 51.507522],\n          [-0.157511, 51.507522],\n          [-0.15751, 51.507521],\n          [-0.157508, 51.507521],\n          [-0.157507, 51.50752],\n          [-0.157504, 51.50752],\n          [-0.157502, 51.507519],\n          [-0.1575, 51.507519],\n          [-0.157498, 51.507518],\n          [-0.157495, 51.507518],\n          [-0.157494, 51.507518],\n          [-0.157491, 51.507518],\n          [-0.157489, 51.507517],\n          [-0.157488, 51.507517],\n          [-0.157487, 51.507516],\n          [-0.157484, 51.507516],\n          [-0.157482, 51.507515],\n          [-0.157479, 51.507515],\n          [-0.157478, 51.507514],\n          [-0.157475, 51.507514],\n          [-0.157474, 51.507513],\n          [-0.157472, 51.507513],\n          [-0.157471, 51.507512],\n          [-0.157468, 51.507512],\n          [-0.157466, 51.507511],\n          [-0.157463, 51.507511],\n          [-0.157462, 51.50751],\n          [-0.157459, 51.50751],\n          [-0.157458, 51.507509],\n          [-0.157455, 51.507509],\n          [-0.157453, 51.507509],\n          [-0.157452, 51.507509],\n          [-0.15745, 51.507508],\n          [-0.157448, 51.507508],\n          [-0.157446, 51.507507],\n          [-0.157443, 51.507507],\n          [-0.157442, 51.507506],\n          [-0.157439, 51.507506],\n          [-0.157437, 51.507505],\n          [-0.157436, 51.507505],\n          [-0.157435, 51.507504],\n          [-0.157432, 51.507504],\n          [-0.15743, 51.507503],\n          [-0.157427, 51.507503],\n          [-0.157426, 51.507502],\n          [-0.157423, 51.507502],\n          [-0.157422, 51.507501],\n          [-0.157419, 51.507501],\n          [-0.157417, 51.5075],\n          [-0.157416, 51.5075],\n          [-0.157414, 51.5075],\n          [-0.157411, 51.5075],\n          [-0.15741, 51.507499],\n          [-0.157407, 51.507499],\n          [-0.157406, 51.507498],\n          [-0.157404, 51.507498],\n          [-0.157216, 51.507381],\n          [-0.157216, 51.507312],\n          [-0.157101, 51.50724],\n          [-0.156937, 51.50724],\n          [-0.156938, 51.50724]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-shortest-path/test/out/simple.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.206787, 40.730608],\n            [8.569335, 39.892879],\n            [8.349609, 39.257778],\n            [8.843994, 38.908132],\n            [9.085693, 39.257778],\n            [9.591064, 39.164141],\n            [9.591064, 40.271143],\n            [9.821777, 40.472024],\n            [9.283447, 41.253032],\n            [8.206787, 40.730608]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"type\": \"start\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [5.625, 40.763]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"type\": \"end\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.931, 39.147]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 5\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [5.625, 40.763],\n          [5.77978, 40.66514],\n          [7.740155, 39.136296],\n          [8.432052, 39.136296],\n          [8.778, 38.8665],\n          [9.123948, 39.136296],\n          [11.891536, 39.136296],\n          [11.931, 39.147]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-shortest-path/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { truncate } from \"@turf/truncate\";\nimport { featureCollection, point } from \"@turf/helpers\";\nimport { getCoord } from \"@turf/invariant\";\nimport { featureEach } from \"@turf/meta\";\nimport { shortestPath } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"turf-shortest-path\", (t) => {\n  for (const { filename, name, geojson } of fixtures) {\n    // First two features from Collection are Start & End Points\n    const start = geojson.features.shift();\n    const end = geojson.features.shift();\n    // Any remaining features from Collection are obstacles\n    const obstacles = geojson;\n    const options = geojson.properties;\n    options.obstacles = obstacles;\n\n    const path = truncate(shortestPath(start, end, options));\n    path.properties[\"stroke\"] = \"#F00\";\n    path.properties[\"stroke-width\"] = 5;\n\n    const results = featureCollection([]);\n    if (obstacles) {\n      featureEach(obstacles, (obstacle) => {\n        results.features.push(obstacle);\n      });\n    }\n    results.features.push(point(getCoord(start), start.properties));\n    results.features.push(point(getCoord(end), end.properties));\n    results.features.push(path);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEqual(results, loadJsonFileSync(directories.out + filename), name);\n  }\n  t.end();\n});\n\ntest(\"turf-shortest-path -- with polygon feature as obstacle\", (t) => {\n  const filename = \"simple.json\";\n  const geojson = loadJsonFileSync(directories.in + filename);\n\n  const start = geojson.features.shift();\n  const end = geojson.features.shift();\n  const obstacle = geojson.features.shift();\n\n  const path = truncate(\n    shortestPath(start, end, {\n      ...geojson.properties,\n      obstacles: obstacle,\n    })\n  );\n  path.properties[\"stroke\"] = \"#F00\";\n  path.properties[\"stroke-width\"] = 5;\n\n  const results = featureCollection([]);\n  results.features.push(obstacle);\n  results.features.push(point(getCoord(start), start.properties));\n  results.features.push(point(getCoord(end), end.properties));\n  results.features.push(path);\n\n  t.deepEqual(results, loadJsonFileSync(directories.out + filename), \"simple\");\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-shortest-path/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-shortest-path/types.ts",
    "content": "import { point, feature, featureCollection, polygon } from \"@turf/helpers\";\nimport { shortestPath } from \"./index.js\";\n\nconst start = point([-5, -6]);\nconst end = point([9, -6]);\n\nshortestPath(start.geometry, end.geometry.coordinates);\nshortestPath(start, end);\nshortestPath(start, end, {\n  obstacles: polygon([\n    [\n      [0, -7],\n      [5, -7],\n      [5, -3],\n      [0, -3],\n      [0, -7],\n    ],\n  ]).geometry,\n});\nshortestPath(start, end, {\n  obstacles: polygon([\n    [\n      [0, -7],\n      [5, -7],\n      [5, -3],\n      [0, -3],\n      [0, -7],\n    ],\n  ]),\n});\nshortestPath(start, end, {\n  obstacles: featureCollection([\n    polygon([\n      [\n        [0, -7],\n        [5, -7],\n        [5, -3],\n        [0, -3],\n        [0, -7],\n      ],\n    ]),\n  ]),\n});\nshortestPath(start, end, {\n  resolution: 1000,\n});\n"
  },
  {
    "path": "packages/turf-simplify/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-simplify/README.md",
    "content": "# @turf/simplify\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## simplify\n\nSimplifies the geometries in a GeoJSON object. Uses the 2d version of\n[simplify-js][1].\n\n### Parameters\n\n*   `geojson` **[GeoJSON][2]** GeoJSON object to be simplified\n*   `options` **[Object][3]** Optional parameters (optional, default `{}`)\n\n    *   `options.tolerance` **[number][4]** Simplification tolerance (optional, default `1`)\n    *   `options.highQuality` **[boolean][5]** Produce a higher-quality simplification using a slower algorithm (optional, default `false`)\n    *   `options.mutate` **[boolean][5]** Allow GeoJSON input to be mutated (significant performance improvement if true) (optional, default `false`)\n\n### Examples\n\n```javascript\nconst geojson = turf.polygon([[\n  [-70.603637, -33.399918],\n  [-70.614624, -33.395332],\n  [-70.639343, -33.392466],\n  [-70.659942, -33.394759],\n  [-70.683975, -33.404504],\n  [-70.697021, -33.419406],\n  [-70.701141, -33.434306],\n  [-70.700454, -33.446339],\n  [-70.694274, -33.458369],\n  [-70.682601, -33.465816],\n  [-70.668869, -33.472117],\n  [-70.646209, -33.473835],\n  [-70.624923, -33.472117],\n  [-70.609817, -33.468107],\n  [-70.595397, -33.458369],\n  [-70.587158, -33.442901],\n  [-70.587158, -33.426283],\n  [-70.590591, -33.414248],\n  [-70.594711, -33.406224],\n  [-70.603637, -33.399918]\n]]);\nconst result0_01 = turf.simplify(geojson, {tolerance: 0.01 });\nconst result0_005 = turf.simplify(geojson, {tolerance: 0.005 });\n\n//addToMap\nconst addToMap = [geojson, result0_01, result0_005]\n```\n\nReturns **[GeoJSON][2]** Simplified GeoJSON\n\n[1]: https://mourner.github.io/simplify-js/\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/simplify\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-simplify/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { simplify } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n\n/**\n * Single Process Benchmark\n *\n * argentina: 4.695ms\n * featurecollection: 1.647ms\n * fiji-hiQ: 0.461ms\n * geometrycollection: 3.332ms\n * linestring: 0.460ms\n * multilinestring: 0.657ms\n * multipoint: 0.193ms\n * multipolygon: 6.108ms\n * point: 0.032ms\n * poly-issue#555-5: 4.956ms\n * polygon: 0.675ms\n * simple-polygon: 2.735ms\n */\nfor (const { name, geojson } of fixtures) {\n  let { tolerance, highQuality } = geojson.properties || {};\n  tolerance = tolerance || 0.01;\n  highQuality = highQuality || false;\n  console.time(name);\n  simplify(geojson, { tolerance, highQuality });\n  console.timeEnd(name);\n}\n\n/**\n * Benchmark Results\n *\n * argentina x 13,380 ops/sec ±4.31% (72 runs sampled)\n * featurecollection x 4,709 ops/sec ±2.24% (76 runs sampled)\n * fiji-hiQ x 41,197 ops/sec ±1.96% (80 runs sampled)\n * geometrycollection x 4,690 ops/sec ±2.25% (78 runs sampled)\n * linestring x 29,737 ops/sec ±2.26% (77 runs sampled)\n * multilinestring x 20,530 ops/sec ±2.08% (77 runs sampled)\n * multipoint x 394,980 ops/sec ±2.35% (77 runs sampled)\n * multipolygon x 809 ops/sec ±3.32% (70 runs sampled)\n * point x 5,157,027 ops/sec ±8.79% (72 runs sampled)\n * poly-issue#555-5 x 1,816 ops/sec ±2.43% (66 runs sampled)\n * polygon x 2,996 ops/sec ±2.85% (74 runs sampled)\n * simple-polygon x 369 ops/sec ±7.55% (66 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-transform-simplify\");\nfor (const { name, geojson } of fixtures) {\n  let { tolerance, highQuality } = geojson.properties || {};\n  tolerance = tolerance || 0.01;\n  highQuality = highQuality || false;\n  suite.add(name, () => simplify(geojson, { tolerance, highQuality }));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-simplify/index.ts",
    "content": "import { Geometry, Position } from \"geojson\";\nimport { cleanCoords } from \"@turf/clean-coords\";\nimport { clone } from \"@turf/clone\";\nimport { geomEach } from \"@turf/meta\";\nimport { AllGeoJSON, isObject } from \"@turf/helpers\";\nimport { simplify as simplifyJS } from \"./lib/simplify.js\";\n\n/**\n * Simplifies the geometries in a GeoJSON object. Uses the 2d version of\n * [simplify-js](https://mourner.github.io/simplify-js/).\n *\n * @function\n * @param {GeoJSON} geojson GeoJSON object to be simplified\n * @param {Object} [options={}] Optional parameters\n * @param {number} [options.tolerance=1] Simplification tolerance\n * @param {boolean} [options.highQuality=false] Produce a higher-quality simplification using a slower algorithm\n * @param {boolean} [options.mutate=false] Allow GeoJSON input to be mutated (significant performance improvement if true)\n * @returns {GeoJSON} Simplified GeoJSON\n * @example\n * const geojson = turf.polygon([[\n *   [-70.603637, -33.399918],\n *   [-70.614624, -33.395332],\n *   [-70.639343, -33.392466],\n *   [-70.659942, -33.394759],\n *   [-70.683975, -33.404504],\n *   [-70.697021, -33.419406],\n *   [-70.701141, -33.434306],\n *   [-70.700454, -33.446339],\n *   [-70.694274, -33.458369],\n *   [-70.682601, -33.465816],\n *   [-70.668869, -33.472117],\n *   [-70.646209, -33.473835],\n *   [-70.624923, -33.472117],\n *   [-70.609817, -33.468107],\n *   [-70.595397, -33.458369],\n *   [-70.587158, -33.442901],\n *   [-70.587158, -33.426283],\n *   [-70.590591, -33.414248],\n *   [-70.594711, -33.406224],\n *   [-70.603637, -33.399918]\n * ]]);\n * const result0_01 = turf.simplify(geojson, {tolerance: 0.01 });\n * const result0_005 = turf.simplify(geojson, {tolerance: 0.005 });\n *\n * //addToMap\n * const addToMap = [geojson, result0_01, result0_005]\n */\nfunction simplify<T extends AllGeoJSON>(\n  geojson: T,\n  options: {\n    tolerance?: number;\n    highQuality?: boolean;\n    mutate?: boolean;\n  } = {}\n): T {\n  // Optional parameters\n  options = options ?? {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  const tolerance = options.tolerance ?? 1;\n  const highQuality = options.highQuality ?? false;\n  const mutate = options.mutate ?? false;\n\n  if (!geojson) throw new Error(\"geojson is required\");\n  if (tolerance && tolerance < 0) throw new Error(\"invalid tolerance\");\n\n  // Clone geojson to avoid side effects\n  if (mutate !== true) geojson = clone(geojson);\n\n  geomEach(geojson, function (geom) {\n    simplifyGeom(geom, tolerance, highQuality);\n  });\n  return geojson;\n}\n\n/**\n * Simplifies a feature's coordinates\n *\n * @private\n * @param {Geometry} geometry to be simplified\n * @param {number} [tolerance=1] simplification tolerance\n * @param {boolean} [highQuality=false] whether or not to spend more time to create a higher-quality simplification with a different algorithm\n * @returns {Geometry} output\n */\nfunction simplifyGeom(\n  geometry: Geometry,\n  tolerance: number,\n  highQuality: boolean\n) {\n  const type = geometry.type;\n\n  // \"unsimplyfiable\" geometry types\n  if (type === \"Point\" || type === \"MultiPoint\") return geometry;\n\n  // Remove any extra coordinates\n  cleanCoords(geometry, { mutate: true });\n\n  if (type !== \"GeometryCollection\") {\n    // TODO should this cater for GeometryCollections too?\n    switch (type) {\n      case \"LineString\":\n        geometry.coordinates = simplifyJS(\n          geometry.coordinates,\n          tolerance,\n          highQuality\n        );\n        break;\n      case \"MultiLineString\":\n        geometry.coordinates = geometry.coordinates.map((lines) =>\n          simplifyJS(lines, tolerance, highQuality)\n        );\n        break;\n      case \"Polygon\":\n        geometry.coordinates = simplifyPolygon(\n          geometry.coordinates,\n          tolerance,\n          highQuality\n        );\n        break;\n      case \"MultiPolygon\":\n        geometry.coordinates = geometry.coordinates.map((rings) =>\n          simplifyPolygon(rings, tolerance, highQuality)\n        );\n    }\n  }\n\n  return geometry;\n}\n\n/**\n * Simplifies the coordinates of a Polygon with simplify-js\n *\n * @private\n * @param {Array<number>} coordinates to be processed\n * @param {number} tolerance simplification tolerance\n * @param {boolean} highQuality whether or not to spend more time to create a higher-quality\n * @returns {Array<Array<Array<number>>>} simplified coords\n */\nfunction simplifyPolygon(\n  coordinates: Position[][],\n  tolerance: number,\n  highQuality: boolean\n) {\n  return coordinates.map(function (ring) {\n    if (ring.length < 4) {\n      throw new Error(\"invalid polygon\");\n    }\n    let ringTolerance = tolerance;\n    let simpleRing = simplifyJS(ring, ringTolerance, highQuality);\n\n    // If simplified ring isn't valid (has been over simplified) reduce the\n    // tolerance by 1% and try again.\n    while (!checkValidity(simpleRing) && ringTolerance >= Number.EPSILON) {\n      ringTolerance -= ringTolerance * 0.01;\n      simpleRing = simplifyJS(ring, ringTolerance, highQuality);\n    }\n\n    // If ring wasn't able to be simplified in a valid way, return it unchanged.\n    if (!checkValidity(simpleRing)) {\n      return ring;\n    }\n\n    // Close the ring if it wasn't already.\n    if (\n      simpleRing[simpleRing.length - 1][0] !== simpleRing[0][0] ||\n      simpleRing[simpleRing.length - 1][1] !== simpleRing[0][1]\n    ) {\n      simpleRing.push(simpleRing[0]);\n    }\n    return simpleRing;\n  });\n}\n\n/**\n * Returns true if ring has at least 3 coordinates and its first coordinate is the same as its last\n *\n * @private\n * @param {Array<number>} ring coordinates to be checked\n * @returns {boolean} true if valid\n */\nfunction checkValidity(ring: Position[]) {\n  if (ring.length < 3) return false;\n  //if the last point is the same as the first, it's not a triangle\n  return !(\n    ring.length === 3 &&\n    ring[2][0] === ring[0][0] &&\n    ring[2][1] === ring[0][1]\n  );\n}\n\nexport { simplify };\nexport default simplify;\n"
  },
  {
    "path": "packages/turf-simplify/lib/simplify.ts",
    "content": "/*\n (c) 2013, Vladimir Agafonkin\n Simplify.js, a high-performance JS polyline simplification library\n mourner.github.io/simplify-js\n*/\n\n// to suit your point format, run search/replace for '.x' and '.y';\n// for 3D version, see 3d branch (configurability would draw significant performance overhead)\n\n// square distance between 2 points\nfunction getSqDist(p1: number[], p2: number[]) {\n  var dx = p1[0] - p2[0],\n    dy = p1[1] - p2[1];\n\n  return dx * dx + dy * dy;\n}\n\n// square distance from a point to a segment\nfunction getSqSegDist(p: number[], p1: number[], p2: number[]) {\n  var x = p1[0],\n    y = p1[1],\n    dx = p2[0] - x,\n    dy = p2[1] - y;\n\n  if (dx !== 0 || dy !== 0) {\n    var t = ((p[0] - x) * dx + (p[1] - y) * dy) / (dx * dx + dy * dy);\n\n    if (t > 1) {\n      x = p2[0];\n      y = p2[1];\n    } else if (t > 0) {\n      x += dx * t;\n      y += dy * t;\n    }\n  }\n\n  dx = p[0] - x;\n  dy = p[1] - y;\n\n  return dx * dx + dy * dy;\n}\n// rest of the code doesn't care about point format\n\n// basic distance-based simplification\nfunction simplifyRadialDist(points: number[][], sqTolerance: number) {\n  var prevPoint = points[0],\n    newPoints = [prevPoint],\n    point;\n\n  for (var i = 1, len = points.length; i < len; i++) {\n    point = points[i];\n\n    if (getSqDist(point, prevPoint) > sqTolerance) {\n      newPoints.push(point);\n      prevPoint = point;\n    }\n  }\n\n  if (prevPoint !== point) newPoints.push(point!);\n\n  return newPoints;\n}\n\nfunction simplifyDPStep(\n  points: number[][],\n  first: number,\n  last: number,\n  sqTolerance: number,\n  simplified: number[][]\n) {\n  var maxSqDist = sqTolerance,\n    index;\n\n  for (var i = first + 1; i < last; i++) {\n    var sqDist = getSqSegDist(points[i], points[first], points[last]);\n\n    if (sqDist > maxSqDist) {\n      index = i;\n      maxSqDist = sqDist;\n    }\n  }\n\n  if (maxSqDist > sqTolerance) {\n    if (index! - first > 1)\n      simplifyDPStep(points, first, index!, sqTolerance, simplified);\n    simplified.push(points[index!]);\n    if (last - index! > 1)\n      simplifyDPStep(points, index!, last, sqTolerance, simplified);\n  }\n}\n\n// simplification using Ramer-Douglas-Peucker algorithm\nfunction simplifyDouglasPeucker(points: number[][], sqTolerance: number) {\n  var last = points.length - 1;\n\n  var simplified = [points[0]];\n  simplifyDPStep(points, 0, last, sqTolerance, simplified);\n  simplified.push(points[last]);\n\n  return simplified;\n}\n\n// both algorithms combined for awesome performance\nexport function simplify(\n  points: number[][],\n  tolerance: number,\n  highestQuality: boolean\n) {\n  if (points.length <= 2) return points;\n\n  var sqTolerance = tolerance !== undefined ? tolerance * tolerance : 1;\n\n  points = highestQuality ? points : simplifyRadialDist(points, sqTolerance);\n  points = simplifyDouglasPeucker(points, sqTolerance);\n\n  return points;\n}\n"
  },
  {
    "path": "packages/turf-simplify/package.json",
    "content": "{\n  \"name\": \"@turf/simplify\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Reduces the number of points in a shape while keeping its overall look.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Vladimir Agafonkin <@mourner>\",\n    \"Stefano Borghi <@stebogit>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gis\",\n    \"simplify\",\n    \"Ramer-Douglas-Peucker\",\n    \"algorithm\",\n    \"peucker\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/clean-coords\": \"workspace:*\",\n    \"@turf/clone\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/in/argentina.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"id\": \"ARG\",\n  \"properties\": {\n    \"tolerance\": 0.1,\n    \"name\": \"Argentina\"\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-64.964892, -22.075862],\n        [-64.377021, -22.798091],\n        [-63.986838, -21.993644],\n        [-62.846468, -22.034985],\n        [-62.685057, -22.249029],\n        [-60.846565, -23.880713],\n        [-60.028966, -24.032796],\n        [-58.807128, -24.771459],\n        [-57.777217, -25.16234],\n        [-57.63366, -25.603657],\n        [-58.618174, -27.123719],\n        [-57.60976, -27.395899],\n        [-56.486702, -27.548499],\n        [-55.695846, -27.387837],\n        [-54.788795, -26.621786],\n        [-54.625291, -25.739255],\n        [-54.13005, -25.547639],\n        [-53.628349, -26.124865],\n        [-53.648735, -26.923473],\n        [-54.490725, -27.474757],\n        [-55.162286, -27.881915],\n        [-56.2909, -28.852761],\n        [-57.625133, -30.216295],\n        [-57.874937, -31.016556],\n        [-58.14244, -32.044504],\n        [-58.132648, -33.040567],\n        [-58.349611, -33.263189],\n        [-58.427074, -33.909454],\n        [-58.495442, -34.43149],\n        [-57.22583, -35.288027],\n        [-57.362359, -35.97739],\n        [-56.737487, -36.413126],\n        [-56.788285, -36.901572],\n        [-57.749157, -38.183871],\n        [-59.231857, -38.72022],\n        [-61.237445, -38.928425],\n        [-62.335957, -38.827707],\n        [-62.125763, -39.424105],\n        [-62.330531, -40.172586],\n        [-62.145994, -40.676897],\n        [-62.745803, -41.028761],\n        [-63.770495, -41.166789],\n        [-64.73209, -40.802677],\n        [-65.118035, -41.064315],\n        [-64.978561, -42.058001],\n        [-64.303408, -42.359016],\n        [-63.755948, -42.043687],\n        [-63.458059, -42.563138],\n        [-64.378804, -42.873558],\n        [-65.181804, -43.495381],\n        [-65.328823, -44.501366],\n        [-65.565269, -45.036786],\n        [-66.509966, -45.039628],\n        [-67.293794, -45.551896],\n        [-67.580546, -46.301773],\n        [-66.597066, -47.033925],\n        [-65.641027, -47.236135],\n        [-65.985088, -48.133289],\n        [-67.166179, -48.697337],\n        [-67.816088, -49.869669],\n        [-68.728745, -50.264218],\n        [-69.138539, -50.73251],\n        [-68.815561, -51.771104],\n        [-68.149995, -52.349983],\n        [-68.571545, -52.299444],\n        [-69.498362, -52.142761],\n        [-71.914804, -52.009022],\n        [-72.329404, -51.425956],\n        [-72.309974, -50.67701],\n        [-72.975747, -50.74145],\n        [-73.328051, -50.378785],\n        [-73.415436, -49.318436],\n        [-72.648247, -48.878618],\n        [-72.331161, -48.244238],\n        [-72.447355, -47.738533],\n        [-71.917258, -46.884838],\n        [-71.552009, -45.560733],\n        [-71.659316, -44.973689],\n        [-71.222779, -44.784243],\n        [-71.329801, -44.407522],\n        [-71.793623, -44.207172],\n        [-71.464056, -43.787611],\n        [-71.915424, -43.408565],\n        [-72.148898, -42.254888],\n        [-71.746804, -42.051386],\n        [-71.915734, -40.832339],\n        [-71.680761, -39.808164],\n        [-71.413517, -38.916022],\n        [-70.814664, -38.552995],\n        [-71.118625, -37.576827],\n        [-71.121881, -36.658124],\n        [-70.364769, -36.005089],\n        [-70.388049, -35.169688],\n        [-69.817309, -34.193571],\n        [-69.814777, -33.273886],\n        [-70.074399, -33.09121],\n        [-70.535069, -31.36501],\n        [-69.919008, -30.336339],\n        [-70.01355, -29.367923],\n        [-69.65613, -28.459141],\n        [-69.001235, -27.521214],\n        [-68.295542, -26.89934],\n        [-68.5948, -26.506909],\n        [-68.386001, -26.185016],\n        [-68.417653, -24.518555],\n        [-67.328443, -24.025303],\n        [-66.985234, -22.986349],\n        [-67.106674, -22.735925],\n        [-66.273339, -21.83231],\n        [-64.964892, -22.075862]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/in/featurecollection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"tolerance\": 0.01\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"id\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [27.977542877197266, -26.17500493262446],\n          [27.975482940673828, -26.17870225771557],\n          [27.969818115234375, -26.177931991326645],\n          [27.967071533203125, -26.177623883345735],\n          [27.966899871826172, -26.1810130263384],\n          [27.967758178710938, -26.1853263385099],\n          [27.97290802001953, -26.1853263385099],\n          [27.97496795654297, -26.18270756087535],\n          [27.97840118408203, -26.1810130263384],\n          [27.98011779785156, -26.183323749143113],\n          [27.98011779785156, -26.18655868408986],\n          [27.978744506835938, -26.18933141398614],\n          [27.97496795654297, -26.19025564262006],\n          [27.97119140625, -26.19040968001282],\n          [27.969303131103516, -26.1899475672235],\n          [27.96741485595703, -26.189639491012183],\n          [27.9656982421875, -26.187945057286793],\n          [27.965354919433594, -26.18563442612686],\n          [27.96432495117187, -26.183015655416536]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"id\": 2\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [27.972049713134762, -26.199035448897074],\n            [27.9741096496582, -26.196108920345292],\n            [27.977371215820312, -26.197495179879635],\n            [27.978572845458984, -26.20042167359348],\n            [27.980976104736328, -26.200729721284862],\n            [27.982349395751953, -26.197803235312957],\n            [27.982177734375, -26.194414580727656],\n            [27.982177734375, -26.19256618212382],\n            [27.98406600952148, -26.192258112838022],\n            [27.985267639160156, -26.191950042737417],\n            [27.986125946044922, -26.19426054863105],\n            [27.986984252929688, -26.196416979445644],\n            [27.987327575683594, -26.198881422912123],\n            [27.98715591430664, -26.201345814222698],\n            [27.985095977783203, -26.20381015337393],\n            [27.983036041259766, -26.20550435628209],\n            [27.979946136474606, -26.20550435628209],\n            [27.97719955444336, -26.20488828535003],\n            [27.97445297241211, -26.203656133705152],\n            [27.972564697265625, -26.201961903900578],\n            [27.972049713134762, -26.199035448897074]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"id\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [27.946643829345703, -26.170845301716803],\n            [27.94269561767578, -26.183631842055114],\n            [27.935657501220703, -26.183323749143113],\n            [27.92741775512695, -26.17685360983018],\n            [27.926902770996094, -26.171153427614488],\n            [27.928619384765625, -26.165298896316028],\n            [27.936859130859375, -26.161292995018652],\n            [27.94509887695312, -26.158981835530525],\n            [27.950420379638672, -26.161601146157146],\n            [27.951793670654297, -26.166223315536712],\n            [27.954025268554688, -26.173464345889972],\n            [27.954025268554688, -26.179626570662702],\n            [27.951278686523438, -26.187945057286793],\n            [27.944583892822266, -26.19395248382672],\n            [27.936172485351562, -26.194876675795218],\n            [27.930850982666016, -26.19379845111899],\n            [27.925701141357422, -26.190563717201886],\n            [27.92278289794922, -26.18655868408986],\n            [27.92072296142578, -26.180858976522302],\n            [27.917118072509766, -26.174080583026957],\n            [27.916603088378906, -26.16683959094609],\n            [27.917118072509766, -26.162987816205614],\n            [27.920207977294922, -26.162987816205614],\n            [27.920894622802734, -26.166069246175482],\n            [27.9217529296875, -26.17146155269785],\n            [27.923297882080078, -26.177469829049862],\n            [27.92673110961914, -26.184248025435295],\n            [27.930335998535156, -26.18856121785662],\n            [27.936687469482422, -26.18871525748988],\n            [27.942352294921875, -26.187945057286793],\n            [27.94647216796875, -26.184248025435295],\n            [27.946815490722653, -26.178548204845022],\n            [27.946643829345703, -26.170845301716803]\n          ],\n          [\n            [27.936859130859375, -26.16591517661071],\n            [27.934799194335938, -26.16945872510008],\n            [27.93497085571289, -26.173926524048102],\n            [27.93874740600586, -26.175621161617432],\n            [27.94149398803711, -26.17007498340995],\n            [27.94321060180664, -26.166223315536712],\n            [27.939090728759762, -26.164528541367826],\n            [27.937545776367188, -26.16406632595636],\n            [27.936859130859375, -26.16591517661071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"id\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [27.95642852783203, -26.152510345365126]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/in/fiji-hiQ.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"tolerance\": 0.005,\n    \"highQuality\": true\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [179.97528076171875, -16.514770282237],\n        [179.97665405273438, -16.519707611417825],\n        [179.97390747070312, -16.523986527973733],\n        [179.98043060302734, -16.539126548282127],\n        [179.985237121582, -16.536822708755626],\n        [179.98695373535156, -16.531227555400562],\n        [179.99073028564453, -16.531556686558297],\n        [180.00205993652344, -16.525632239869275],\n        [180.00686645507812, -16.525961380565427],\n        [180.01029968261716, -16.523328239288848],\n        [180.01304626464844, -16.524644814414863],\n        [180.01235961914062, -16.526619660274722],\n        [180.00995635986328, -16.52694879928784],\n        [180.00823974609372, -16.532873205577378],\n        [180.00755310058594, -16.534847967269407],\n        [180.01819610595703, -16.539126548282127],\n        [180.02334594726562, -16.537810071920884],\n        [180.02437591552734, -16.534189715617043],\n        [180.03707885742188, -16.534189715617043],\n        [180.04188537597656, -16.526619660274722],\n        [180.0487518310547, -16.52826534972986],\n        [180.0497817993164, -16.525632239869275],\n        [180.054931640625, -16.52727793773992],\n        [180.05939483642578, -16.52497395679397],\n        [180.06145477294922, -16.525632239869275],\n        [180.06488800048825, -16.515757758166256],\n        [180.0666046142578, -16.513124477808333],\n        [180.0655746459961, -16.5108203280625],\n        [180.06454467773438, -16.507528637922594],\n        [180.05596160888672, -16.490410945973114],\n        [180.0542449951172, -16.485802077854263],\n        [180.0494384765625, -16.484814448981634],\n        [180.04669189453125, -16.482839176122972],\n        [180.04634857177734, -16.479547009916406],\n        [180.05390167236328, -16.47460865568325],\n        [180.05596160888672, -16.47526711018803],\n        [180.0597381591797, -16.470987115907786],\n        [180.0600814819336, -16.467365508451035],\n        [180.06282806396482, -16.46110984528612],\n        [180.07347106933594, -16.455183241385555],\n        [180.07930755615232, -16.45057353538345],\n        [180.08686065673828, -16.44761009512282],\n        [180.08411407470703, -16.441353794870704],\n        [180.06832122802734, -16.437402343465862],\n        [180.05561828613278, -16.439707366557357],\n        [180.04806518554688, -16.448597913571174],\n        [180.0398254394531, -16.45057353538345],\n        [180.02609252929688, -16.46473156961583],\n        [180.02094268798828, -16.4624268437789],\n        [180.01441955566406, -16.464073079315213],\n        [180.00961303710935, -16.468682464447188],\n        [180.00446319580078, -16.476584012483762],\n        [179.99725341796875, -16.48250996202084],\n        [179.99553680419922, -16.487118908513903],\n        [179.99176025390625, -16.48975254296043],\n        [179.99038696289062, -16.49271533887906],\n        [179.9883270263672, -16.49403212250543],\n        [179.98661041259763, -16.50226181712924],\n        [179.98111724853516, -16.50489524545779],\n        [179.97940063476562, -16.50719946582597],\n        [179.97528076171875, -16.514770282237]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/in/geometrycollection.geojson",
    "content": "{\n  \"type\": \"GeometryCollection\",\n  \"properties\": {\n    \"tolerance\": 0.01\n  },\n  \"geometries\": [\n    {\n      \"type\": \"LineString\",\n      \"coordinates\": [\n        [27.977542877197266, -26.17500493262446],\n        [27.975482940673828, -26.17870225771557],\n        [27.969818115234375, -26.177931991326645],\n        [27.967071533203125, -26.177623883345735],\n        [27.966899871826172, -26.1810130263384],\n        [27.967758178710938, -26.1853263385099],\n        [27.97290802001953, -26.1853263385099],\n        [27.97496795654297, -26.18270756087535],\n        [27.97840118408203, -26.1810130263384],\n        [27.98011779785156, -26.183323749143113],\n        [27.98011779785156, -26.18655868408986],\n        [27.978744506835938, -26.18933141398614],\n        [27.97496795654297, -26.19025564262006],\n        [27.97119140625, -26.19040968001282],\n        [27.969303131103516, -26.1899475672235],\n        [27.96741485595703, -26.189639491012183],\n        [27.9656982421875, -26.187945057286793],\n        [27.965354919433594, -26.18563442612686],\n        [27.96432495117187, -26.183015655416536]\n      ]\n    },\n    {\n      \"type\": \"Polygon\",\n      \"coordinates\": [\n        [\n          [27.972049713134762, -26.199035448897074],\n          [27.9741096496582, -26.196108920345292],\n          [27.977371215820312, -26.197495179879635],\n          [27.978572845458984, -26.20042167359348],\n          [27.980976104736328, -26.200729721284862],\n          [27.982349395751953, -26.197803235312957],\n          [27.982177734375, -26.194414580727656],\n          [27.982177734375, -26.19256618212382],\n          [27.98406600952148, -26.192258112838022],\n          [27.985267639160156, -26.191950042737417],\n          [27.986125946044922, -26.19426054863105],\n          [27.986984252929688, -26.196416979445644],\n          [27.987327575683594, -26.198881422912123],\n          [27.98715591430664, -26.201345814222698],\n          [27.985095977783203, -26.20381015337393],\n          [27.983036041259766, -26.20550435628209],\n          [27.979946136474606, -26.20550435628209],\n          [27.97719955444336, -26.20488828535003],\n          [27.97445297241211, -26.203656133705152],\n          [27.972564697265625, -26.201961903900578],\n          [27.972049713134762, -26.199035448897074]\n        ]\n      ]\n    },\n    {\n      \"type\": \"Polygon\",\n      \"coordinates\": [\n        [\n          [27.946643829345703, -26.170845301716803],\n          [27.94269561767578, -26.183631842055114],\n          [27.935657501220703, -26.183323749143113],\n          [27.92741775512695, -26.17685360983018],\n          [27.926902770996094, -26.171153427614488],\n          [27.928619384765625, -26.165298896316028],\n          [27.936859130859375, -26.161292995018652],\n          [27.94509887695312, -26.158981835530525],\n          [27.950420379638672, -26.161601146157146],\n          [27.951793670654297, -26.166223315536712],\n          [27.954025268554688, -26.173464345889972],\n          [27.954025268554688, -26.179626570662702],\n          [27.951278686523438, -26.187945057286793],\n          [27.944583892822266, -26.19395248382672],\n          [27.936172485351562, -26.194876675795218],\n          [27.930850982666016, -26.19379845111899],\n          [27.925701141357422, -26.190563717201886],\n          [27.92278289794922, -26.18655868408986],\n          [27.92072296142578, -26.180858976522302],\n          [27.917118072509766, -26.174080583026957],\n          [27.916603088378906, -26.16683959094609],\n          [27.917118072509766, -26.162987816205614],\n          [27.920207977294922, -26.162987816205614],\n          [27.920894622802734, -26.166069246175482],\n          [27.9217529296875, -26.17146155269785],\n          [27.923297882080078, -26.177469829049862],\n          [27.92673110961914, -26.184248025435295],\n          [27.930335998535156, -26.18856121785662],\n          [27.936687469482422, -26.18871525748988],\n          [27.942352294921875, -26.187945057286793],\n          [27.94647216796875, -26.184248025435295],\n          [27.946815490722653, -26.178548204845022],\n          [27.946643829345703, -26.170845301716803]\n        ],\n        [\n          [27.936859130859375, -26.16591517661071],\n          [27.934799194335938, -26.16945872510008],\n          [27.93497085571289, -26.173926524048102],\n          [27.93874740600586, -26.175621161617432],\n          [27.94149398803711, -26.17007498340995],\n          [27.94321060180664, -26.166223315536712],\n          [27.939090728759762, -26.164528541367826],\n          [27.937545776367188, -26.16406632595636],\n          [27.936859130859375, -26.16591517661071]\n        ]\n      ]\n    },\n    {\n      \"type\": \"Point\",\n      \"coordinates\": [27.95642852783203, -26.152510345365126]\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/in/issue-#1144.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-70.603637, -33.399918],\n        [-70.614624, -33.395332],\n        [-70.639343, -33.392466],\n        [-70.659942, -33.394759],\n        [-70.683975, -33.404504],\n        [-70.697021, -33.419406],\n        [-70.701141, -33.434306],\n        [-70.700454, -33.446339],\n        [-70.694274, -33.458369],\n        [-70.682601, -33.465816],\n        [-70.668869, -33.472117],\n        [-70.646209, -33.473835],\n        [-70.624923, -33.472117],\n        [-70.609817, -33.468107],\n        [-70.595397, -33.458369],\n        [-70.587158, -33.442901],\n        [-70.587158, -33.426283],\n        [-70.590591, -33.414248],\n        [-70.594711, -33.406224],\n        [-70.603637, -33.399918]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/in/linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-80.51399230957031, 28.069556808283608],\n      [-80.51193237304688, 28.057438520876673],\n      [-80.49819946289062, 28.05622661698537],\n      [-80.5023193359375, 28.04471284867091],\n      [-80.48583984375, 28.042288740362853],\n      [-80.50575256347656, 28.028349057505775],\n      [-80.50163269042969, 28.02168161433489],\n      [-80.49476623535156, 28.021075462659883],\n      [-80.48652648925781, 28.021075462659883],\n      [-80.47691345214844, 28.021075462659883],\n      [-80.46936035156249, 28.015619944017807],\n      [-80.47760009765624, 28.007133032319448],\n      [-80.49201965332031, 27.998039170620494],\n      [-80.46730041503906, 27.962262536875905],\n      [-80.46524047851562, 27.91980029694533],\n      [-80.40550231933594, 27.930114089618602],\n      [-80.39657592773438, 27.980455528671527],\n      [-80.41305541992188, 27.982274659104082],\n      [-80.42953491210938, 27.990763528690582],\n      [-80.4144287109375, 28.00955793247135],\n      [-80.3594970703125, 27.972572275562527],\n      [-80.36224365234375, 27.948919060105453],\n      [-80.38215637207031, 27.913732900444284],\n      [-80.41786193847656, 27.881570017022806],\n      [-80.40550231933594, 27.860932192608534],\n      [-80.39382934570312, 27.85425440786446],\n      [-80.37803649902344, 27.86336037597851],\n      [-80.38215637207031, 27.880963078302393],\n      [-80.36842346191405, 27.888246118437756],\n      [-80.35743713378906, 27.882176952341734],\n      [-80.35469055175781, 27.86882358965466],\n      [-80.3594970703125, 27.8421119273228],\n      [-80.37940979003906, 27.83300417483936],\n      [-80.39932250976561, 27.82511017099003],\n      [-80.40069580078125, 27.79352841586229],\n      [-80.36155700683594, 27.786846483587688],\n      [-80.35537719726562, 27.794743268514615],\n      [-80.36705017089844, 27.800209937418252],\n      [-80.36889553070068, 27.801918215058347],\n      [-80.3690242767334, 27.803930152059845],\n      [-80.36713600158691, 27.805942051806845],\n      [-80.36584854125977, 27.805524490772143],\n      [-80.36563396453857, 27.80465140342285],\n      [-80.36619186401367, 27.803095012921272],\n      [-80.36623477935791, 27.801842292177923],\n      [-80.36524772644043, 27.80127286888392],\n      [-80.36224365234375, 27.801158983867033],\n      [-80.36065578460693, 27.802639479776524],\n      [-80.36138534545898, 27.803740348273823],\n      [-80.36220073699951, 27.804803245204976],\n      [-80.36190032958984, 27.806625330038287],\n      [-80.3609561920166, 27.80742248254359],\n      [-80.35932540893555, 27.806853088493792],\n      [-80.35889625549315, 27.806321651354835],\n      [-80.35902500152588, 27.805448570411585],\n      [-80.35863876342773, 27.804461600896783],\n      [-80.35739421844482, 27.804461600896783],\n      [-80.35700798034668, 27.805334689771293],\n      [-80.35696506500244, 27.80673920932572],\n      [-80.35726547241211, 27.80772615814989],\n      [-80.35808086395264, 27.808295547623707],\n      [-80.3585958480835, 27.80928248230861],\n      [-80.35653591156006, 27.80943431761813],\n      [-80.35572052001953, 27.808637179875486],\n      [-80.3555917739868, 27.80772615814989],\n      [-80.3555917739868, 27.806055931810487],\n      [-80.35572052001953, 27.803778309057556],\n      [-80.35537719726562, 27.801804330717825],\n      [-80.3554630279541, 27.799564581098746],\n      [-80.35670757293701, 27.799564581098746],\n      [-80.35499095916748, 27.796831264786892],\n      [-80.34610748291016, 27.79478123244122],\n      [-80.34404754638672, 27.802070060660014],\n      [-80.34748077392578, 27.804955086774896],\n      [-80.3433609008789, 27.805790211616266],\n      [-80.34353256225586, 27.8101555324401],\n      [-80.33499240875244, 27.810079615315917],\n      [-80.33383369445801, 27.805676331334084],\n      [-80.33022880554199, 27.801652484744796],\n      [-80.32872676849365, 27.80848534345178]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/in/multilinestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [-80.51399230957031, 28.069556808283608],\n        [-80.51193237304688, 28.057438520876673],\n        [-80.49819946289062, 28.05622661698537],\n        [-80.5023193359375, 28.04471284867091],\n        [-80.48583984375, 28.042288740362853],\n        [-80.50575256347656, 28.028349057505775],\n        [-80.50163269042969, 28.02168161433489],\n        [-80.49476623535156, 28.021075462659883],\n        [-80.48652648925781, 28.021075462659883],\n        [-80.47691345214844, 28.021075462659883],\n        [-80.46936035156249, 28.015619944017807],\n        [-80.47760009765624, 28.007133032319448],\n        [-80.49201965332031, 27.998039170620494],\n        [-80.46730041503906, 27.962262536875905],\n        [-80.46524047851562, 27.91980029694533],\n        [-80.40550231933594, 27.930114089618602],\n        [-80.39657592773438, 27.980455528671527],\n        [-80.41305541992188, 27.982274659104082],\n        [-80.42953491210938, 27.990763528690582],\n        [-80.4144287109375, 28.00955793247135],\n        [-80.3594970703125, 27.972572275562527],\n        [-80.36224365234375, 27.948919060105453],\n        [-80.38215637207031, 27.913732900444284],\n        [-80.41786193847656, 27.881570017022806],\n        [-80.40550231933594, 27.860932192608534],\n        [-80.39382934570312, 27.85425440786446],\n        [-80.37803649902344, 27.86336037597851],\n        [-80.38215637207031, 27.880963078302393],\n        [-80.36842346191405, 27.888246118437756],\n        [-80.35743713378906, 27.882176952341734],\n        [-80.35469055175781, 27.86882358965466],\n        [-80.3594970703125, 27.8421119273228],\n        [-80.37940979003906, 27.83300417483936],\n        [-80.39932250976561, 27.82511017099003],\n        [-80.40069580078125, 27.79352841586229],\n        [-80.36155700683594, 27.786846483587688],\n        [-80.35537719726562, 27.794743268514615],\n        [-80.36705017089844, 27.800209937418252],\n        [-80.36889553070068, 27.801918215058347],\n        [-80.3690242767334, 27.803930152059845],\n        [-80.36713600158691, 27.805942051806845],\n        [-80.36584854125977, 27.805524490772143],\n        [-80.36563396453857, 27.80465140342285],\n        [-80.36619186401367, 27.803095012921272],\n        [-80.36623477935791, 27.801842292177923],\n        [-80.36524772644043, 27.80127286888392],\n        [-80.36224365234375, 27.801158983867033],\n        [-80.36065578460693, 27.802639479776524],\n        [-80.36138534545898, 27.803740348273823],\n        [-80.36220073699951, 27.804803245204976],\n        [-80.36190032958984, 27.806625330038287],\n        [-80.3609561920166, 27.80742248254359],\n        [-80.35932540893555, 27.806853088493792],\n        [-80.35889625549315, 27.806321651354835],\n        [-80.35902500152588, 27.805448570411585],\n        [-80.35863876342773, 27.804461600896783],\n        [-80.35739421844482, 27.804461600896783],\n        [-80.35700798034668, 27.805334689771293],\n        [-80.35696506500244, 27.80673920932572],\n        [-80.35726547241211, 27.80772615814989],\n        [-80.35808086395264, 27.808295547623707],\n        [-80.3585958480835, 27.80928248230861],\n        [-80.35653591156006, 27.80943431761813],\n        [-80.35572052001953, 27.808637179875486],\n        [-80.3555917739868, 27.80772615814989],\n        [-80.3555917739868, 27.806055931810487],\n        [-80.35572052001953, 27.803778309057556],\n        [-80.35537719726562, 27.801804330717825],\n        [-80.3554630279541, 27.799564581098746],\n        [-80.35670757293701, 27.799564581098746],\n        [-80.35499095916748, 27.796831264786892],\n        [-80.34610748291016, 27.79478123244122],\n        [-80.34404754638672, 27.802070060660014],\n        [-80.34748077392578, 27.804955086774896],\n        [-80.3433609008789, 27.805790211616266],\n        [-80.34353256225586, 27.8101555324401],\n        [-80.33499240875244, 27.810079615315917],\n        [-80.33383369445801, 27.805676331334084],\n        [-80.33022880554199, 27.801652484744796],\n        [-80.32872676849365, 27.80848534345178]\n      ],\n      [\n        [-80.51193237304688, 28.091366281406945],\n        [-80.47760009765624, 28.074403740607135],\n        [-80.47210693359375, 28.058650411105386],\n        [-80.46936035156249, 28.01016414897993],\n        [-80.45425415039061, 27.99682659773872],\n        [-80.44464111328125, 28.02956127552927],\n        [-80.43228149414062, 28.024712321517228],\n        [-80.40069580078125, 28.01743848094423],\n        [-80.3704833984375, 28.004101830368654],\n        [-80.35537719726562, 27.991976169784156],\n        [-80.3485107421875, 27.947099367319762],\n        [-80.32379150390625, 27.937393821330247],\n        [-80.34027099609375, 27.879142241732627],\n        [-80.35263061523436, 27.90948552034696],\n        [-80.36773681640625, 27.858503954841247],\n        [-80.34027099609375, 27.822073862795612],\n        [-80.29220581054688, 27.853647316127383],\n        [-80.30319213867188, 27.860932192608534],\n        [-80.30319213867188, 27.88278388425912],\n        [-80.2935791015625, 27.894921808206057]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/in/multipoint.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPoint\",\n    \"coordinates\": [\n      [0, 0],\n      [1, 2]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/in/multipolygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"country\": \"South Africa\",\n    \"tolerance\": 0.01\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [19.418070002000036, -34.68667999799993],\n          [19.418070002000036, -34.686830002999955],\n          [19.41808000000003, -34.686920002999955],\n          [19.418110010000078, -34.68702000099995],\n          [19.418210000000045, -34.68706000199995],\n          [19.418250001000047, -34.68711000099995],\n          [19.41821999900003, -34.68724999999995],\n          [19.41820000200005, -34.687349996999956],\n          [19.41808000000003, -34.687349996999956],\n          [19.41799000000003, -34.687330000999964],\n          [19.41794999900003, -34.687370001999966],\n          [19.41794999900003, -34.68747999799996],\n          [19.417999998000028, -34.68754000299998],\n          [19.418110010000078, -34.68764000099998],\n          [19.418179998000028, -34.68774999699997],\n          [19.41814999500002, -34.68786000099993],\n          [19.418070002000036, -34.68785000299994],\n          [19.41800999700007, -34.687810001999935],\n          [19.41799000000003, -34.687869991999946],\n          [19.41795999800007, -34.68794000299994],\n          [19.417890002000036, -34.68796999799997],\n          [19.417770000000075, -34.68791999899997],\n          [19.417729999000073, -34.68796999799997],\n          [19.41770000400004, -34.68804000099993],\n          [19.417819999000073, -34.68810999599998],\n          [19.41791999700007, -34.68825000299995],\n          [19.41791999700007, -34.68838000299996],\n          [19.41786999800007, -34.68844000099995],\n          [19.417710003000025, -34.688399999999945],\n          [19.417670002000023, -34.68844000099995],\n          [19.417729999000073, -34.68853999899994],\n          [19.417779990000042, -34.68862999799995],\n          [19.417760002000023, -34.68879999999996],\n          [19.417729999000073, -34.688849990999984],\n          [19.417670002000023, -34.68891000399998],\n          [19.41755999800006, -34.68891000399998],\n          [19.41750999900006, -34.68887000299998],\n          [19.417490002000022, -34.688830001999975],\n          [19.417460000000062, -34.68878000299998],\n          [19.417299997000043, -34.68878000299998],\n          [19.41724000000005, -34.688830001999975],\n          [19.417249990000073, -34.688920001999975],\n          [19.417230001000064, -34.68906000099997],\n          [19.41715000000005, -34.68911999799997],\n          [19.417109999000047, -34.68915999899997],\n          [19.41701000100005, -34.68915999899997],\n          [19.416929999000047, -34.68912999599996],\n          [19.416889999000034, -34.68906000099997],\n          [19.41683000200004, -34.68906000099997],\n          [19.41679999100006, -34.68910999999997],\n          [19.416690003000042, -34.68910999999997],\n          [19.416640012000073, -34.68903999599996],\n          [19.41654999600007, -34.68903999599996],\n          [19.416489999000078, -34.68910999999997],\n          [19.416390001000025, -34.68919000099993],\n          [19.416300001000025, -34.68920999799997],\n          [19.416250002000027, -34.68912999599996],\n          [19.41620000300003, -34.68910999999997],\n          [19.416110011000058, -34.689149999999984],\n          [19.41600999800005, -34.68924999799998],\n          [19.415900001000068, -34.68924999799998],\n          [19.415860001000055, -34.68920999799997],\n          [19.415810002000057, -34.68923000199993],\n          [19.415730000000053, -34.68927000299993],\n          [19.415640000000053, -34.68928000099993],\n          [19.415590001000055, -34.68930000499995],\n          [19.415659997000034, -34.689439995999976],\n          [19.415730000000053, -34.689490002999946],\n          [19.41571000400006, -34.68959000099994],\n          [19.41564999900004, -34.689630001999944],\n          [19.415590001000055, -34.68977000099994],\n          [19.41549000300006, -34.68990999899995],\n          [19.41542000000004, -34.689969995999945],\n          [19.415299998000023, -34.69004999799995],\n          [19.415219996000076, -34.69000999699995],\n          [19.41515000100003, -34.689869990999966],\n          [19.414989998000067, -34.689869990999966],\n          [19.41498000000007, -34.68994000199996],\n          [19.414960003000033, -34.689990000999956],\n          [19.414909996000063, -34.69004999799995],\n          [19.41479999200004, -34.690039999999954],\n          [19.41476000700004, -34.689969995999945],\n          [19.414700002000075, -34.68991999799994],\n          [19.414610002000074, -34.68991999799994],\n          [19.41454999700005, -34.689969995999945],\n          [19.414520003000064, -34.690059995999945],\n          [19.414449999000055, -34.69008999899995],\n          [19.41427999800004, -34.690059995999945],\n          [19.41423000700007, -34.68999999899995],\n          [19.414139999000042, -34.689969995999945],\n          [19.41396000000003, -34.689879996999935],\n          [19.413889996000023, -34.68980000299996],\n          [19.41379999700007, -34.689739997999936],\n          [19.413699999000073, -34.68974999599993],\n          [19.41369000000003, -34.689810000999955],\n          [19.41369000000003, -34.68991999799994],\n          [19.413609999000073, -34.689969995999945],\n          [19.413500003000024, -34.689969995999945],\n          [19.413359996000054, -34.68998000299996],\n          [19.413289993000035, -34.689869990999966],\n          [19.413230003000024, -34.68985999999995],\n          [19.41316000000006, -34.68990999899995],\n          [19.41314000400007, -34.68999999899995],\n          [19.413169998000058, -34.690150003999975],\n          [19.413110001000064, -34.69028000399993],\n          [19.412899999000047, -34.69028000399993],\n          [19.412840002000053, -34.69032000499993],\n          [19.412840002000053, -34.69035998999993],\n          [19.412750002000053, -34.69042000299993],\n          [19.412649996000027, -34.69046000399993],\n          [19.41253000200004, -34.69046000399993],\n          [19.412419998000075, -34.69043000099998],\n          [19.412369999000077, -34.69032000499993],\n          [19.41233999600007, -34.69021000099997],\n          [19.412220002000026, -34.690219998999964],\n          [19.41208000300003, -34.690219998999964],\n          [19.412029996000058, -34.690150003999975],\n          [19.412059999000064, -34.69003000199996],\n          [19.41206999700006, -34.68985999999995],\n          [19.41197999700006, -34.68977999899994],\n          [19.41183999800006, -34.68979000499996],\n          [19.411700000000053, -34.68977000099994],\n          [19.411600002000057, -34.68968000099994],\n          [19.411579997000047, -34.689559997999936],\n          [19.41161999800005, -34.689400002999946],\n          [19.411539997000034, -34.689349995999976],\n          [19.411470001000055, -34.689400002999946],\n          [19.411430000000053, -34.68951999799998],\n          [19.411309998000036, -34.68953000399995],\n          [19.411240003000046, -34.689490002999946],\n          [19.411200002000044, -34.689349995999976],\n          [19.411139997000078, -34.68923000199993],\n          [19.411099996000075, -34.68924999799998],\n          [19.410990000000027, -34.689239999999984],\n          [19.410810000000026, -34.68918000299993],\n          [19.41085000100003, -34.68905000299998],\n          [19.410930003000033, -34.68897000099997],\n          [19.410990000000027, -34.68888000099997],\n          [19.410959997000077, -34.68878000299998],\n          [19.410909998000022, -34.68861000199996],\n          [19.410840003000033, -34.688579998999955],\n          [19.41077000000007, -34.688669998999956],\n          [19.410720001000072, -34.688719997999954],\n          [19.410559998000053, -34.688740001999975],\n          [19.41050000000007, -34.68869001099995],\n          [19.410429989000022, -34.68862999799995],\n          [19.41033999700005, -34.68867999699995],\n          [19.410170004000065, -34.68876999699995],\n          [19.410060000000044, -34.688669998999956],\n          [19.410100001000046, -34.68853999899994],\n          [19.410050002000048, -34.68843000199996],\n          [19.409960002000048, -34.68830000199995],\n          [19.409870002000048, -34.68816000299995],\n          [19.409880000000044, -34.68804999899993],\n          [19.409929999000042, -34.68798000399994],\n          [19.41000000300005, -34.68795999899993],\n          [19.410130003000063, -34.68799999999993],\n          [19.410239999000055, -34.68804999899993],\n          [19.410379998000053, -34.68803000299994],\n          [19.41050000000007, -34.68795999899993],\n          [19.410620003000076, -34.68794000299994],\n          [19.410689998000066, -34.68795999899993],\n          [19.41077000000007, -34.68804000099993],\n          [19.410810000000026, -34.68814999699998],\n          [19.41081999900007, -34.68823999699998],\n          [19.410930003000033, -34.68832999699998],\n          [19.411190004000048, -34.68826999899994],\n          [19.411240003000046, -34.688189997999984],\n          [19.411359997000034, -34.688189997999984],\n          [19.41146000300006, -34.68830000199995],\n          [19.411510002000057, -34.688399999999945],\n          [19.41147999900005, -34.68854999699994],\n          [19.411430000000053, -34.688600003999966],\n          [19.41147999900005, -34.688719997999954],\n          [19.411610000000053, -34.68879000099997],\n          [19.411690001000068, -34.68885999699995],\n          [19.411759997000047, -34.68888000099997],\n          [19.411929998000062, -34.68885999699995],\n          [19.41200000200007, -34.68881000599998],\n          [19.41205000100007, -34.68885999699995],\n          [19.41206999700006, -34.68894999699995],\n          [19.412040002000026, -34.68901999999997],\n          [19.412040002000026, -34.689079996999965],\n          [19.41206999700006, -34.689149999999984],\n          [19.41215999700006, -34.689149999999984],\n          [19.41226000300003, -34.68915999899997],\n          [19.412379997000073, -34.689220011999964],\n          [19.412400001000037, -34.68928999899998],\n          [19.412469997000073, -34.689310003999935],\n          [19.412580001000038, -34.689349995999976],\n          [19.412760008000078, -34.68941000199993],\n          [19.412809999000046, -34.68946000099993],\n          [19.413060002000066, -34.68946000099993],\n          [19.413269996000054, -34.68941000199993],\n          [19.413320003000024, -34.689349995999976],\n          [19.413280002000022, -34.68924999799998],\n          [19.413269996000054, -34.68920999799997],\n          [19.413280002000022, -34.689149999999984],\n          [19.413380000000075, -34.68911999799997],\n          [19.413470000000075, -34.68911999799997],\n          [19.413560000000075, -34.689169996999965],\n          [19.413630003000037, -34.689239999999984],\n          [19.41370999700007, -34.68924999799998],\n          [19.41374999800007, -34.689149999999984],\n          [19.41374999800007, -34.68901999999997],\n          [19.413789998000027, -34.68893999799997],\n          [19.41385000400004, -34.68893999799997],\n          [19.413950001000046, -34.68900000399998],\n          [19.413969998000027, -34.68906000099997],\n          [19.414019997000025, -34.689149999999984],\n          [19.41408000200005, -34.68919000099993],\n          [19.414139999000042, -34.68918000299993],\n          [19.41418999800004, -34.68911999799997],\n          [19.41417000200005, -34.688989996999965],\n          [19.41418999800004, -34.688920001999975],\n          [19.41427999800004, -34.688920001999975],\n          [19.414340003000063, -34.68892999999997],\n          [19.41439000200006, -34.68903999599996],\n          [19.414470004000066, -34.68901999999997],\n          [19.414539999000056, -34.68891000399998],\n          [19.414580000000058, -34.68885999699995],\n          [19.414610002000074, -34.688830001999975],\n          [19.414660001000072, -34.688830001999975],\n          [19.41472999700005, -34.68893999799997],\n          [19.41472999700005, -34.68901999999997],\n          [19.414740003000077, -34.68910999999997],\n          [19.41476000700004, -34.689149999999984],\n          [19.41479999200004, -34.689169996999965],\n          [19.41489000000007, -34.689169996999965],\n          [19.41493999900007, -34.689149999999984],\n          [19.41492000200003, -34.68906000099997],\n          [19.414899998000067, -34.68900000399998],\n          [19.414899998000067, -34.688920001999975],\n          [19.41492000200003, -34.688830001999975],\n          [19.41498000000007, -34.68883999999997],\n          [19.415069999000025, -34.68879999999996],\n          [19.415090004000035, -34.68875000099996],\n          [19.41510000200003, -34.68867999699995],\n          [19.415159999000025, -34.68862999799995],\n          [19.415230002000044, -34.68862999799995],\n          [19.41533000000004, -34.68861000199996],\n          [19.41540000400005, -34.68853999899994],\n          [19.41540000400005, -34.68844000099995],\n          [19.41542000000004, -34.68835000099995],\n          [19.41549000300006, -34.68835000099995],\n          [19.415569997000034, -34.68838000299996],\n          [19.415609998000036, -34.68847000299996],\n          [19.415680001000055, -34.68867999699995],\n          [19.415779991000022, -34.68867999699995],\n          [19.415900001000068, -34.68862999799995],\n          [19.415980003000072, -34.68858999799994],\n          [19.41603000200007, -34.688489999999945],\n          [19.416040000000066, -34.68844000099995],\n          [19.416089999000064, -34.688419995999936],\n          [19.416179999000065, -34.68848000099996],\n          [19.416260000000023, -34.68852999999996],\n          [19.416319998000063, -34.68854999699994],\n          [19.416399999000078, -34.68853999899994],\n          [19.416520001000038, -34.688489999999945],\n          [19.416610001000038, -34.68845999699994],\n          [19.416660000000036, -34.688489999999945],\n          [19.416700001000038, -34.68853999899994],\n          [19.41675999000006, -34.68849999799994],\n          [19.41675999000006, -34.68844000099995],\n          [19.416780003000042, -34.68838000299996],\n          [19.41679999100006, -34.68835999099997],\n          [19.41692000100005, -34.688399999999945],\n          [19.41698999700003, -34.688419995999936],\n          [19.417040004000057, -34.68844000099995],\n          [19.417140002000053, -34.688399999999945],\n          [19.417140002000053, -34.68834000299995],\n          [19.41710000100005, -34.68825000299995],\n          [19.41710000100005, -34.68814999699998],\n          [19.417180002000066, -34.68808999999993],\n          [19.417230001000064, -34.68808999999993],\n          [19.41740000300007, -34.688099997999984],\n          [19.41740000300007, -34.68805999699998],\n          [19.417360002000066, -34.68796999799997],\n          [19.417370000000062, -34.687869991999946],\n          [19.417440003000024, -34.687779999999975],\n          [19.417500001000064, -34.687709996999956],\n          [19.41750999900006, -34.68764000099998],\n          [19.417609997000056, -34.68755999999996],\n          [19.417630001000077, -34.687489995999954],\n          [19.417550000000062, -34.68746999999996],\n          [19.417440003000024, -34.68746999999996],\n          [19.417370000000062, -34.68742999899996],\n          [19.417360002000066, -34.687349996999956],\n          [19.417389996000054, -34.68720999899995],\n          [19.417530003000024, -34.68717999599994],\n          [19.41755999800006, -34.68714000299997],\n          [19.417530003000024, -34.68706000199995],\n          [19.417440003000024, -34.68702000099995],\n          [19.417370000000062, -34.686989997999945],\n          [19.417339997000056, -34.686899998999934],\n          [19.417370000000062, -34.686779995999984],\n          [19.41741999900006, -34.68672999699993],\n          [19.417530003000024, -34.686759999999936],\n          [19.417630001000077, -34.686779995999984],\n          [19.41774000500004, -34.686779995999984],\n          [19.417770000000075, -34.68667999799993],\n          [19.417750003000037, -34.68653999999998],\n          [19.417800002000035, -34.68649000099998],\n          [19.41791999700007, -34.68649000099998],\n          [19.41800999700007, -34.68653000099994],\n          [19.41806000300005, -34.68658999899998],\n          [19.418070002000036, -34.68667999799993]\n        ]\n      ],\n      [\n        [\n          [19.418799998000054, -34.67816000099998],\n          [19.418900004000022, -34.67817999699997],\n          [19.419050001000073, -34.67804999699996],\n          [19.419119996000063, -34.677899999999966],\n          [19.41916999500006, -34.67786999699996],\n          [19.419279999000025, -34.67786999699996],\n          [19.419379997000078, -34.67792000399993],\n          [19.41945000100003, -34.67802000199998],\n          [19.419390003000046, -34.67813999599997],\n          [19.419329998000023, -34.67820999999998],\n          [19.419279999000025, -34.67826999699997],\n          [19.419260003000034, -34.67833000199994],\n          [19.419329998000023, -34.67838999899993],\n          [19.419379997000078, -34.67839999699993],\n          [19.41945000100003, -34.67848999699993],\n          [19.419459999000026, -34.678590002999954],\n          [19.419530002000045, -34.678609998999946],\n          [19.419670001000043, -34.678590002999954],\n          [19.41967999900004, -34.678410002999954],\n          [19.419670001000043, -34.67829999899993],\n          [19.419710002000045, -34.67820999999998],\n          [19.419819998000037, -34.67816999899998],\n          [19.419999997000048, -34.67820999999998],\n          [19.420160000000067, -34.678219997999975],\n          [19.420179997000048, -34.67829999899993],\n          [19.420179997000048, -34.67838999899993],\n          [19.42024000200007, -34.67842000199994],\n          [19.42035999600006, -34.67839999699993],\n          [19.420430000000067, -34.67829999899993],\n          [19.420519999000078, -34.67829999899993],\n          [19.420650000000023, -34.67828000299994],\n          [19.420709997000074, -34.67829999899993],\n          [19.420759988000043, -34.67838999899993],\n          [19.420780000000036, -34.67846000199995],\n          [19.420839998000076, -34.678539995999984],\n          [19.420960000000036, -34.67852999799993],\n          [19.42101999700003, -34.67848999699993],\n          [19.421050000000037, -34.67834999799993],\n          [19.421139999000047, -34.67834999799993],\n          [19.421279998000045, -34.678410002999954],\n          [19.421300002000066, -34.67848999699993],\n          [19.421329997000043, -34.678590002999954],\n          [19.42137999600004, -34.67864000199995],\n          [19.42147000400007, -34.678590002999954],\n          [19.42153999900006, -34.67851999199996],\n          [19.421639997000057, -34.67851000099995],\n          [19.421759999000074, -34.678539995999984],\n          [19.421819997000057, -34.67860000099995],\n          [19.421840001000078, -34.678680002999954],\n          [19.421830003000025, -34.67878000099995],\n          [19.421830003000025, -34.67884999599994],\n          [19.42194999700007, -34.67882999999995],\n          [19.421999996000068, -34.67878000099995],\n          [19.42203999700007, -34.67873000199995],\n          [19.422190002000036, -34.67873000199995],\n          [19.42223000300004, -34.67875999599994],\n          [19.422280002000036, -34.67890000299997],\n          [19.422259997000026, -34.67897000599993],\n          [19.422259997000026, -34.67905999799996],\n          [19.42233999900003, -34.679040001999965],\n          [19.42241000200005, -34.678929997999944],\n          [19.422439997000026, -34.67886999999996],\n          [19.422559999000043, -34.67886999999996],\n          [19.422690000000046, -34.67891999899996],\n          [19.42274999700004, -34.67899000299997],\n          [19.422710004000066, -34.67908000199998],\n          [19.42265999700004, -34.67917000199998],\n          [19.422619996000037, -34.67925000399998],\n          [19.42259000200005, -34.67935000199998],\n          [19.42268000100006, -34.679400000999976],\n          [19.422760003000064, -34.67930000299998],\n          [19.422810002000062, -34.67922999899997],\n          [19.422850003000065, -34.67917000199998],\n          [19.42295000100006, -34.67915999599995],\n          [19.42300000000006, -34.67921000299998],\n          [19.423030002000075, -34.67927999799997],\n          [19.42300000000006, -34.679400000999976],\n          [19.422959999000057, -34.67948999999993],\n          [19.42300000000006, -34.679539991999945],\n          [19.423120002000076, -34.679520002999936],\n          [19.423210002000076, -34.67948999999993],\n          [19.42334000200003, -34.679520002999936],\n          [19.423420004000036, -34.67954999799997],\n          [19.423459997000066, -34.67963999699998],\n          [19.423399999000026, -34.67972999699998],\n          [19.423329996000064, -34.67980000099993],\n          [19.423290003000034, -34.67985999799998],\n          [19.423279997000066, -34.67992000299995],\n          [19.423279997000066, -34.680020000999946],\n          [19.423350000000028, -34.680089995999936],\n          [19.423420004000036, -34.68014000299996],\n          [19.423420004000036, -34.68024000099996],\n          [19.423329996000064, -34.68029999799995],\n          [19.423170001000074, -34.68024000099996],\n          [19.423099998000055, -34.680180003999965],\n          [19.423020004000023, -34.68015000099996],\n          [19.422980003000077, -34.680159999999944],\n          [19.42300000000006, -34.68020999899994],\n          [19.42295000100006, -34.68029999799995],\n          [19.42295000100006, -34.68038999799995],\n          [19.423030002000075, -34.680429998999955],\n          [19.42304000000007, -34.680540002999976],\n          [19.42300000000006, -34.68061999699995],\n          [19.422890003000077, -34.68061999699995],\n          [19.422810002000062, -34.680500001999974],\n          [19.422760003000064, -34.68049000399998],\n          [19.42273000000006, -34.68058000399998],\n          [19.42274999700004, -34.680680001999974],\n          [19.422690000000046, -34.680749996999964],\n          [19.42251999800004, -34.680770000999985],\n          [19.422439997000026, -34.680680001999974],\n          [19.422460001000047, -34.680540002999976],\n          [19.422380000000032, -34.680500001999974],\n          [19.422280002000036, -34.68052999699995],\n          [19.422280002000036, -34.680590001999974],\n          [19.42209000400004, -34.680680001999974],\n          [19.421999996000068, -34.68072000199993],\n          [19.421989998000072, -34.68091999799998],\n          [19.421930001000078, -34.68097000499995],\n          [19.421880002000023, -34.68097000499995],\n          [19.42180999800007, -34.68091999799998],\n          [19.421759999000074, -34.68085001099996],\n          [19.42167999800006, -34.680749996999964],\n          [19.421619993000036, -34.68073000099997],\n          [19.421570002000067, -34.680749996999964],\n          [19.421530001000065, -34.68086999899998],\n          [19.42153999900006, -34.68097000499995],\n          [19.42152000300007, -34.68108999999998],\n          [19.42144999900006, -34.68108999999998],\n          [19.42137999600004, -34.68103000199994],\n          [19.42134000300007, -34.68094000299993],\n          [19.421279998000045, -34.68099999999998],\n          [19.421260002000054, -34.68114999699998],\n          [19.421239997000043, -34.68127999699993],\n          [19.421149998000033, -34.681300001999944],\n          [19.421129993000022, -34.681229997999935],\n          [19.421099999000035, -34.68112999999994],\n          [19.42101999700003, -34.68112999999994],\n          [19.421009999000034, -34.681229997999935],\n          [19.421030003000055, -34.681319997999935],\n          [19.421120003000055, -34.68148999899995],\n          [19.421099999000035, -34.68161000199996],\n          [19.42100000100004, -34.681660000999955],\n          [19.42092999700003, -34.681660000999955],\n          [19.420850004000044, -34.68174000199997],\n          [19.420759988000043, -34.681749999999965],\n          [19.420709997000074, -34.68188000099997],\n          [19.420659998000076, -34.68198998899993],\n          [19.420619997000074, -34.68203999599996],\n          [19.420519999000078, -34.68201000199997],\n          [19.420439998000063, -34.68197000099997],\n          [19.42039999700006, -34.68198998899993],\n          [19.420389999000065, -34.68205000199998],\n          [19.420389999000065, -34.68213000399993],\n          [19.42035999600006, -34.68223000199998],\n          [19.42020000100007, -34.682249997999975],\n          [19.420089997000048, -34.68222000399993],\n          [19.41997000300006, -34.68218000299993],\n          [19.419930002000058, -34.68228000099998],\n          [19.41997000300006, -34.68237999899998],\n          [19.41997000300006, -34.68249000299994],\n          [19.419890001000056, -34.682549999999935],\n          [19.419890001000056, -34.682620002999954],\n          [19.41989999900005, -34.68269999699993],\n          [19.41983000400006, -34.682800002999954],\n          [19.419710002000045, -34.682800002999954],\n          [19.419620010000074, -34.68268000099994],\n          [19.41949999900004, -34.682659995999984],\n          [19.41949999900004, -34.68273999799993],\n          [19.41952000400005, -34.68285000999998],\n          [19.419490001000042, -34.68294000199995],\n          [19.41936000100003, -34.68290000099995],\n          [19.41931000200003, -34.682800002999954],\n          [19.419210004000035, -34.68276000199995],\n          [19.41914999900007, -34.68294000199995],\n          [19.419119996000063, -34.68308999899995],\n          [19.418950003000077, -34.68316999999996],\n          [19.418860003000077, -34.68309999699994],\n          [19.418709998000054, -34.68297000399997],\n          [19.418639995000035, -34.68303000099996],\n          [19.41865000100006, -34.68311000299997],\n          [19.418669997000052, -34.68325999999996],\n          [19.418619998000054, -34.683319996999955],\n          [19.418520000000058, -34.68330999899996],\n          [19.418430001000047, -34.68324000299998],\n          [19.418370003000064, -34.683160001999966],\n          [19.41829000200005, -34.68321999899996],\n          [19.418259999000043, -34.68330999899996],\n          [19.41829000200005, -34.683409996999956],\n          [19.41829000200005, -34.68352999899997],\n          [19.418170000000032, -34.68352999899997],\n          [19.41806000300005, -34.683479999999975],\n          [19.417980002000036, -34.68336999599995],\n          [19.41782999700007, -34.68337999399995],\n          [19.417810001000078, -34.68347000199998],\n          [19.41788000400004, -34.683600001999935],\n          [19.41790000000003, -34.683690001999935],\n          [19.417890002000036, -34.68378999999993],\n          [19.417810001000078, -34.68383999899993],\n          [19.417670002000023, -34.68378999999993],\n          [19.417570004000027, -34.68371999699997],\n          [19.417540001000077, -34.683780001999935],\n          [19.417590000000075, -34.68386999399996],\n          [19.417609997000056, -34.68404000299995],\n          [19.41755999800006, -34.68409000199995],\n          [19.41750999900006, -34.684009999999944],\n          [19.417429997000056, -34.68393999699998],\n          [19.417370000000062, -34.683889997999984],\n          [19.41726000400007, -34.68392999899993],\n          [19.417249990000073, -34.68405999899994],\n          [19.417299997000043, -34.68418000199995],\n          [19.417299997000043, -34.68426000299996],\n          [19.417230001000064, -34.68426000299996],\n          [19.41716999600004, -34.684189999999944],\n          [19.41707999600004, -34.68413000299995],\n          [19.417019999000047, -34.68404000299995],\n          [19.416929999000047, -34.68404000299995],\n          [19.41692000100005, -34.68413000299995],\n          [19.416950004000057, -34.68422000299995],\n          [19.416960002000053, -34.68428999799994],\n          [19.41689999700003, -34.68432000799993],\n          [19.41679999100006, -34.684279999999944],\n          [19.41666999800003, -34.68418000199995],\n          [19.41656000200004, -34.684230000999946],\n          [19.41651000300004, -34.684299995999936],\n          [19.41656000200004, -34.68446999699995],\n          [19.416610001000038, -34.68458000199996],\n          [19.416579999000078, -34.684660002999976],\n          [19.41645999600007, -34.684639998999955],\n          [19.416359998000075, -34.68458000199996],\n          [19.416250002000027, -34.68450999799995],\n          [19.416160002000026, -34.68441999799995],\n          [19.41600999800005, -34.68440999999996],\n          [19.41594000200007, -34.68446999699995],\n          [19.41600999800005, -34.68458000199996],\n          [19.416070003000073, -34.68467999999996],\n          [19.41608000100007, -34.68476000099997],\n          [19.41600999800005, -34.684819997999966],\n          [19.41608000100007, -34.68494000099997],\n          [19.416160002000026, -34.685010003999935],\n          [19.416179999000065, -34.68507999899998],\n          [19.416179999000065, -34.68517999699998],\n          [19.416059997000048, -34.685229995999975],\n          [19.41594000200007, -34.68512999799998],\n          [19.41586999900005, -34.68512999799998],\n          [19.41585000200007, -34.685190002999946],\n          [19.415980003000072, -34.68532000399995],\n          [19.41599000100007, -34.68541000399995],\n          [19.41594000200007, -34.685510001999944],\n          [19.415749997000034, -34.685420001999944],\n          [19.41560000000004, -34.68541000399995],\n          [19.41551000000004, -34.68547000099994],\n          [19.41551000000004, -34.68565999899994],\n          [19.415450003000046, -34.68569999899995],\n          [19.415320002000044, -34.68565999899994],\n          [19.415180003000046, -34.685619997999936],\n          [19.415129996000076, -34.68569999899995],\n          [19.415129996000076, -34.685849995999945],\n          [19.415079998000067, -34.68597999699995],\n          [19.415050003000033, -34.68601999799995],\n          [19.41519000200003, -34.686189998999964],\n          [19.415169997000078, -34.68628999699996],\n          [19.41510000200003, -34.68632999799996],\n          [19.41501000200003, -34.68628999699996],\n          [19.41484999900007, -34.686189998999964],\n          [19.41472000600004, -34.68618000099997],\n          [19.41472000600004, -34.68623999799996],\n          [19.414819996000062, -34.68637999699996],\n          [19.414859997000065, -34.68648000299993],\n          [19.414819996000062, -34.686549997999975],\n          [19.414670000000058, -34.68652000299994],\n          [19.414580000000058, -34.68644999999998],\n          [19.41444000100006, -34.68649000099998],\n          [19.41445999700005, -34.686669999999935],\n          [19.41441999700004, -34.686740003999944],\n          [19.414319999000043, -34.686740003999944],\n          [19.414220001000047, -34.686650003999944],\n          [19.41418999800004, -34.68644999999998],\n          [19.414059998000027, -34.68641999699997],\n          [19.41394000300005, -34.68652000299994],\n          [19.413770002000035, -34.68659999699997],\n          [19.413640001000033, -34.68652000299994],\n          [19.41361999700007, -34.68639000299993],\n          [19.413699999000073, -34.68628999699996],\n          [19.413789998000027, -34.68621000299993],\n          [19.413770002000035, -34.68606999699995],\n          [19.413630003000037, -34.686099998999964],\n          [19.41352999700007, -34.686189998999964],\n          [19.413460002000022, -34.68617000199998],\n          [19.413439998000058, -34.68601999799995],\n          [19.413439998000058, -34.68591000099997],\n          [19.413370002000022, -34.68578999899995],\n          [19.413230003000024, -34.685759996999934],\n          [19.413150002000066, -34.68586999299998],\n          [19.41307000000006, -34.68591000099997],\n          [19.412949998000045, -34.68586000199997],\n          [19.412949998000045, -34.68572000399996],\n          [19.41289000100005, -34.68556999899994],\n          [19.412769999000034, -34.68551999999994],\n          [19.41259999700003, -34.685619997999936],\n          [19.412490001000037, -34.68573000199996],\n          [19.41224999600007, -34.685690000999955],\n          [19.41224999600007, -34.68556999899994],\n          [19.41226000300003, -34.68547999899994],\n          [19.412199997000073, -34.68537999299997],\n          [19.412059999000064, -34.68541000399995],\n          [19.411929998000062, -34.685510001999944],\n          [19.41177999300004, -34.68551999999994],\n          [19.411700000000053, -34.68542999999994],\n          [19.411680003000072, -34.68530999799998],\n          [19.411579997000047, -34.68521999799998],\n          [19.411439999000038, -34.68520000199993],\n          [19.411340001000042, -34.68517999699998],\n          [19.411340001000042, -34.68507000099993],\n          [19.411439999000038, -34.685010003999935],\n          [19.411489998000036, -34.68494999899997],\n          [19.41139000000004, -34.68485999899997],\n          [19.41130000000004, -34.68481000799994],\n          [19.41131999600003, -34.684729997999966],\n          [19.41139000000004, -34.68471999999997],\n          [19.41152999800005, -34.68454000099996],\n          [19.411690001000068, -34.684549998999955],\n          [19.41181999400004, -34.68450999799995],\n          [19.41181999400004, -34.68440999999996],\n          [19.411680003000072, -34.68428999799994],\n          [19.411579997000047, -34.68423999899994],\n          [19.411579997000047, -34.684099999999944],\n          [19.411629996000045, -34.68400000199995],\n          [19.411770003000072, -34.68400000199995],\n          [19.411870001000068, -34.684050000999946],\n          [19.411969999000064, -34.684050000999946],\n          [19.41208000300003, -34.68398998799995],\n          [19.412029996000058, -34.68386000399994],\n          [19.41191000200007, -34.68375999799997],\n          [19.41188999700006, -34.683659999999975],\n          [19.411960001000068, -34.683569999999975],\n          [19.41206999700006, -34.683569999999975],\n          [19.412140000000022, -34.68362999699997],\n          [19.412239998000075, -34.68366999799997],\n          [19.41233999600007, -34.68366999799997],\n          [19.41239000300004, -34.683569999999975],\n          [19.41233999600007, -34.68349998899998],\n          [19.41239000300004, -34.68339999899996],\n          [19.412490001000037, -34.68335999799996],\n          [19.412559996000027, -34.68334000899995],\n          [19.41250999700003, -34.68321999899996],\n          [19.41239000300004, -34.68315000399997],\n          [19.41233999600007, -34.68299999899995],\n          [19.41244000200004, -34.68285999999995],\n          [19.41253000200004, -34.682869997999944],\n          [19.412660002000052, -34.68299000099995],\n          [19.41271000100005, -34.68297000399997],\n          [19.41271000100005, -34.682869997999944],\n          [19.412679999000034, -34.68277999899993],\n          [19.41271000100005, -34.68268000099994],\n          [19.412750002000053, -34.68263000199994],\n          [19.41281999800003, -34.68268000099994],\n          [19.412920003000067, -34.682729999999935],\n          [19.41311999900006, -34.68268000099994],\n          [19.413129998000045, -34.682569995999984],\n          [19.413129998000045, -34.68250000099994],\n          [19.413179997000043, -34.68241999999998],\n          [19.413240002000066, -34.68241000099994],\n          [19.413399997000056, -34.682479988999944],\n          [19.413560000000075, -34.682479988999944],\n          [19.413550002000022, -34.68234999599997],\n          [19.413550002000022, -34.682159997999975],\n          [19.41365999800007, -34.68213000399993],\n          [19.413699999000073, -34.682159997999975],\n          [19.41385000400004, -34.68236000999997],\n          [19.41394000300005, -34.68236000999997],\n          [19.414040001000046, -34.68234999599997],\n          [19.414090000000044, -34.68223000199998],\n          [19.414090000000044, -34.68206000099997],\n          [19.414109997000025, -34.68193999799996],\n          [19.414160004000053, -34.68193999799996],\n          [19.414250003000063, -34.68197000099997],\n          [19.414319999000043, -34.68202999799996],\n          [19.41439000200006, -34.68210999899998],\n          [19.41441999700004, -34.68229999699997],\n          [19.414610002000074, -34.68236000999997],\n          [19.414660001000072, -34.68229999699997],\n          [19.414700002000075, -34.68220999699997],\n          [19.414880002000075, -34.68220999699997],\n          [19.41489000000007, -34.68205000199998],\n          [19.41492000200003, -34.68189999699996],\n          [19.41493999900007, -34.681870010999944],\n          [19.415039997000065, -34.681870010999944],\n          [19.415079998000067, -34.681979998999964],\n          [19.415159999000025, -34.68206000099997],\n          [19.415280001000042, -34.682090002999985],\n          [19.415349997000078, -34.68192000199997],\n          [19.415370001000042, -34.681820003999974],\n          [19.415469999000038, -34.681729995999945],\n          [19.41542000000004, -34.681589996999946],\n          [19.415429998000036, -34.68148999899995],\n          [19.415540002000057, -34.68147000299996],\n          [19.415609998000036, -34.68153999799995],\n          [19.415699998000036, -34.681589996999946],\n          [19.41585000200007, -34.68156000299996],\n          [19.41585000200007, -34.68147000299996],\n          [19.41594000200007, -34.68137999499993],\n          [19.41600999800005, -34.68135000099994],\n          [19.41608000100007, -34.681409997999936],\n          [19.416250002000027, -34.68139999999994],\n          [19.416319998000063, -34.68135000099994],\n          [19.41638000300003, -34.68117999899994],\n          [19.416409997000073, -34.68104999899998],\n          [19.41654999600007, -34.680980002999945],\n          [19.41654999600007, -34.680770000999985],\n          [19.41666999800003, -34.68067000299993],\n          [19.416820003000055, -34.68068999999997],\n          [19.416889999000034, -34.680770000999985],\n          [19.41698999700003, -34.68072000199993],\n          [19.41701000100005, -34.68061999699995],\n          [19.41710000100005, -34.68058000399998],\n          [19.41716999600004, -34.68059999999997],\n          [19.417270002000066, -34.68070999599996],\n          [19.41740000300007, -34.68076000299993],\n          [19.417389996000054, -34.68073000099997],\n          [19.41740000300007, -34.680590001999974],\n          [19.417429997000056, -34.680500001999974],\n          [19.417479996000054, -34.68051999099998],\n          [19.417519997000056, -34.68048000599998],\n          [19.417550000000062, -34.68037000199996],\n          [19.417519997000056, -34.680270003999965],\n          [19.417570004000027, -34.68019000199996],\n          [19.41770000400004, -34.680180003999965],\n          [19.417789996000067, -34.68023000299996],\n          [19.417860000000076, -34.680339998999955],\n          [19.41794999900003, -34.68039999599995],\n          [19.41808000000003, -34.680410001999974],\n          [19.418190004000053, -34.68036001099995],\n          [19.41824000300005, -34.68029999799995],\n          [19.41824000300005, -34.680180003999965],\n          [19.418210000000045, -34.68002999099997],\n          [19.418089998000028, -34.67985999799998],\n          [19.41790000000003, -34.67971000099993],\n          [19.417630001000077, -34.67958999799998],\n          [19.41732999900006, -34.67941999699997],\n          [19.417140002000053, -34.67932999699997],\n          [19.41688000000005, -34.67915999599995],\n          [19.416750000000036, -34.67905999799996],\n          [19.416709999000034, -34.67895999999996],\n          [19.416709999000034, -34.67882999999995],\n          [19.416790001000038, -34.67875999599994],\n          [19.416859996000028, -34.67878000099995],\n          [19.41689999700003, -34.67890000299997],\n          [19.416979998000045, -34.67897000599993],\n          [19.41707999600004, -34.67897000599993],\n          [19.41713001100004, -34.67891999899996],\n          [19.41710000100005, -34.67882999999995],\n          [19.417119997000043, -34.67870999699994],\n          [19.41724000000005, -34.67864000199995],\n          [19.41731000300007, -34.67866999699993],\n          [19.417379998000058, -34.67873999999995],\n          [19.417379998000058, -34.67879999699994],\n          [19.417450002000066, -34.67882999999995],\n          [19.417500001000064, -34.67882999999995],\n          [19.417570004000027, -34.67878000099995],\n          [19.417609997000056, -34.67864000199995],\n          [19.417620011000054, -34.67855999999995],\n          [19.417710003000025, -34.67851999199996],\n          [19.417760002000023, -34.678539995999984],\n          [19.417819999000073, -34.67864000199995],\n          [19.417860000000076, -34.67866999699993],\n          [19.41794999900003, -34.67866999699993],\n          [19.41799000000003, -34.678590002999954],\n          [19.41791999700007, -34.67848999699993],\n          [19.41791999700007, -34.67839999699993],\n          [19.417980002000036, -34.67829999899993],\n          [19.418089998000028, -34.67833000199994],\n          [19.418190004000053, -34.67834999799993],\n          [19.418259999000043, -34.67825999899998],\n          [19.41824000300005, -34.67816000099998],\n          [19.41824000300005, -34.67802999199995],\n          [19.418319997000026, -34.67793000199998],\n          [19.418319997000026, -34.67782999599996],\n          [19.418430001000047, -34.67776000099997],\n          [19.418520000000058, -34.67777999699996],\n          [19.418569999000056, -34.67786999699996],\n          [19.418619998000054, -34.677970002999984],\n          [19.418709998000054, -34.67810000299994],\n          [19.418799998000054, -34.67816000099998]\n        ]\n      ],\n      [\n        [\n          [19.456289997000056, -34.39274000199998],\n          [19.495130001000064, -34.39983000199993],\n          [19.499409998000033, -34.398500000999945],\n          [19.514840003000074, -34.39353000199998],\n          [19.524470000000065, -34.390319998999985],\n          [19.555989999000076, -34.38973999999996],\n          [19.548930006000035, -34.395770004999974],\n          [19.68811000100004, -34.765320000999964],\n          [19.687989999000024, -34.76540000199998],\n          [19.687920003000045, -34.76536999999996],\n          [19.687819997000076, -34.76535000299998],\n          [19.687819997000076, -34.765429996999956],\n          [19.687869996000074, -34.765499999999975],\n          [19.687920003000045, -34.765589999999975],\n          [19.687970002000043, -34.76567000199998],\n          [19.68793000100004, -34.76573999699997],\n          [19.68776999800008, -34.76579000399994],\n          [19.68762999200004, -34.76573999699997],\n          [19.687599997000063, -34.76568999799997],\n          [19.68752000300003, -34.76563999899997],\n          [19.687440002000073, -34.76563999899997],\n          [19.687340004000077, -34.76567000199998],\n          [19.687239998000052, -34.765589999999975],\n          [19.687050000000056, -34.765589999999975],\n          [19.686900003000062, -34.76553000299998],\n          [19.686759997000024, -34.76545000899995],\n          [19.686640002000047, -34.76540000199998],\n          [19.686280003000036, -34.76540000199998],\n          [19.68603999900006, -34.76529999599995],\n          [19.685890002000065, -34.76519999899995],\n          [19.685710002000064, -34.76510999899995],\n          [19.685459999000045, -34.76510999899995],\n          [19.685249997000028, -34.765180001999965],\n          [19.685019999000076, -34.76529999599995],\n          [19.684790000000078, -34.765499999999975],\n          [19.68457999800006, -34.76562000299998],\n          [19.68435000000005, -34.76580999999993],\n          [19.684159994000026, -34.76607999999993],\n          [19.68396999600003, -34.76629000199995],\n          [19.683749988000045, -34.76653999699994],\n          [19.683590009000056, -34.76690000399998],\n          [19.683500001000027, -34.767159996999965],\n          [19.68343999600006, -34.767480002999946],\n          [19.683479997000063, -34.76780999899995],\n          [19.683599999000023, -34.76808999699995],\n          [19.683680001000027, -34.76829000099997],\n          [19.683770000000038, -34.768389998999965],\n          [19.683919997000032, -34.76845000399993],\n          [19.68405999600003, -34.76852999699997],\n          [19.684120009000026, -34.76863000299994],\n          [19.677619999000058, -34.78188000299997],\n          [19.677619999000058, -34.781980000999965],\n          [19.677629997000054, -34.78206000299997],\n          [19.677629997000054, -34.782160000999966],\n          [19.677600002000077, -34.78221999799996],\n          [19.67748000000006, -34.78221999799996],\n          [19.677380002000064, -34.78227000499993],\n          [19.67739000000006, -34.78233000199998],\n          [19.67748000000006, -34.78237000299998],\n          [19.677640003000022, -34.78237000299998],\n          [19.677750007000043, -34.78239999699997],\n          [19.671800002000055, -34.783570001999976],\n          [19.671639998000046, -34.78359999699995],\n          [19.67151999600003, -34.78359999699995],\n          [19.67141999000006, -34.783549997999955],\n          [19.671329998000033, -34.78353999899997],\n          [19.671230000000037, -34.783549997999955],\n          [19.671090002000028, -34.78357999999997],\n          [19.671029997000062, -34.783639996999966],\n          [19.670799998000064, -34.78367999799997],\n          [19.67071999700005, -34.78375000199998],\n          [19.67056000100007, -34.78385999799997],\n          [19.670499996000046, -34.78390999699997],\n          [19.670340001000056, -34.784010002999935],\n          [19.670210001000044, -34.78405000299995],\n          [19.67017000000004, -34.784100001999946],\n          [19.67017000000004, -34.784259996999936],\n          [19.67012999900004, -34.78436000299996],\n          [19.669999999000026, -34.784399995999934],\n          [19.669890002000045, -34.784399995999934],\n          [19.669840003000047, -34.784330000999944],\n          [19.669800003000034, -34.784330000999944],\n          [19.669750004000036, -34.78442999899994],\n          [19.669660004000036, -34.784529996999936],\n          [19.669530003000034, -34.78455000099996],\n          [19.669410001000074, -34.784509999999955],\n          [19.669360002000076, -34.78429999799994],\n          [19.66937000000007, -34.78420999799994],\n          [19.669339998000055, -34.78418000399995],\n          [19.66924000000006, -34.78418000399995],\n          [19.669220003000078, -34.78427000399995],\n          [19.66919000100006, -34.784370001999946],\n          [19.669069998000055, -34.78447999799994],\n          [19.668979999000044, -34.784529996999936],\n          [19.668870003000052, -34.78456999799994],\n          [19.66874000200005, -34.78456999799994],\n          [19.668610001000047, -34.78455000099996],\n          [19.66857999900003, -34.784529996999936],\n          [19.66843999200006, -34.78445000299996],\n          [19.66840000700006, -34.78447999799994],\n          [19.668200003000038, -34.78456999799994],\n          [19.668030002000023, -34.78455000099996],\n          [19.667940002000023, -34.78456999799994],\n          [19.667910008000035, -34.784670002999974],\n          [19.667910008000035, -34.78477000099997],\n          [19.667879997000057, -34.78486000099997],\n          [19.667810002000067, -34.78490999999997],\n          [19.66769000000005, -34.78487999799995],\n          [19.638179999000045, -34.779159997999955],\n          [19.638340002000064, -34.77919999899996],\n          [19.638429994000035, -34.77937999799997],\n          [19.63854998900007, -34.77938999699995],\n          [19.63888999900007, -34.77920999699995],\n          [19.639079997000067, -34.779069997999954],\n          [19.639249998000025, -34.778929999999946],\n          [19.63950999900004, -34.77870999899994],\n          [19.63968999900004, -34.77854999599998],\n          [19.63999000000007, -34.77849999699998],\n          [19.640179998000065, -34.778430001999936],\n          [19.64033000300003, -34.77826000099998],\n          [19.640550003000044, -34.77807000299998],\n          [19.64083000100004, -34.77778000699993],\n          [19.641130003000058, -34.77750999999995],\n          [19.641289998000047, -34.77714000299994],\n          [19.641409992000035, -34.776859996999974],\n          [19.641530002000025, -34.77654999699996],\n          [19.641609996000057, -34.776089999999954],\n          [19.641660003000027, -34.77556999799998],\n          [19.641760001000023, -34.775060001999975],\n          [19.641850001000023, -34.77449999999993],\n          [19.641940000000034, -34.77408000299994],\n          [19.61252999800007, -34.75730999899997],\n          [19.612379993000047, -34.75735999799997],\n          [19.612250001000064, -34.757330002999936],\n          [19.612219998000057, -34.757259999999974],\n          [19.612160001000063, -34.757259999999974],\n          [19.612060003000067, -34.757369995999966],\n          [19.611869997000042, -34.75735999799997],\n          [19.611790004000056, -34.75726999799997],\n          [19.61168999800003, -34.75725000199998],\n          [19.61159999800003, -34.75731999699997],\n          [19.60039999600008, -34.74716999799995],\n          [19.600429999000028, -34.747289999999964],\n          [19.60033000100003, -34.74741999999998],\n          [19.60016999000004, -34.74747999799996],\n          [19.60006000100003, -34.74751999799997],\n          [19.59989999800007, -34.747559998999975],\n          [19.599830003000022, -34.74755000099998],\n          [19.599819997000054, -34.74745000299998],\n          [19.599689996000052, -34.74734999699996],\n          [19.599470004000068, -34.74733999899996],\n          [19.59940000100005, -34.74729999799996],\n          [19.599319999000045, -34.74727000399997],\n          [19.59917000200005, -34.74727000399997],\n          [19.599090001000036, -34.747379999999964],\n          [19.59896999800003, -34.74742999899996],\n          [19.598839998000074, -34.74738999799996],\n          [19.598780000000033, -34.747309995999956],\n          [19.59872000300004, -34.74718000399997],\n          [19.598590003000027, -34.74716999799995],\n          [19.598540012000058, -34.74725999699996],\n          [19.59843999800006, -34.74733999899996],\n          [19.598290001000066, -34.747379999999964],\n          [19.598219998000047, -34.74729999799996],\n          [19.598150002000068, -34.74725999699996],\n          [19.598049996000043, -34.74723000299997],\n          [19.597949998000047, -34.74729999799996],\n          [19.597949998000047, -34.74742999899996],\n          [19.597819998000034, -34.74751999799997],\n          [19.597689997000032, -34.74752999699996],\n          [19.597559997000076, -34.74750999999998],\n          [19.597520012000075, -34.74745000299998],\n          [19.597480003000044, -34.74742999899996],\n          [19.597379997000075, -34.74738999799996],\n          [19.59711999600006, -34.74745000299998],\n          [19.596990004000077, -34.747399987999984],\n          [19.596860003000074, -34.74733999899996],\n          [19.594120002000068, -34.73309000399996],\n          [19.594120002000068, -34.73297999899995],\n          [19.594110004000072, -34.73292999999995],\n          [19.594080001000066, -34.732719997999936],\n          [19.59408999900006, -34.73267999799998],\n          [19.594120002000068, -34.73262999899998],\n          [19.59420999400004, -34.732560002999946],\n          [19.594310000000064, -34.73254999699998],\n          [19.594330004000028, -34.73253000099993],\n          [19.594330004000028, -34.732470003999936],\n          [19.594279997000058, -34.732419996999965],\n          [19.59420999400004, -34.732380003999936],\n          [19.594120002000068, -34.73234000299993],\n          [19.59408999900006, -34.73230000199993],\n          [19.571799999000064, -34.72350999699995],\n          [19.571880001000068, -34.723430003999965],\n          [19.572020000000066, -34.72337999699994],\n          [19.572119990000033, -34.72339000299996],\n          [19.57222000400003, -34.72344000199996],\n          [19.572280001000024, -34.72335999999996],\n          [19.572289999000077, -34.72328999699994],\n          [19.57231000300004, -34.72319000699997],\n          [19.572379999000077, -34.72313000199995],\n          [19.57252999600007, -34.72310999699994],\n          [19.572640000000035, -34.72304000199995],\n          [19.572730000000035, -34.72304000199995],\n          [19.572850002000052, -34.72313000199995],\n          [19.57296999600004, -34.723159995999936],\n          [19.57306000400007, -34.72321000299996],\n          [19.57310000500007, -34.72337999699994],\n          [19.572999999000047, -34.72344000199996],\n          [19.57301999500004, -34.72354999799995],\n          [19.573120001000063, -34.723589998999955],\n          [19.573229997000055, -34.72368999699995],\n          [19.57321999900006, -34.72375999199994],\n          [19.573279996000053, -34.723819996999964],\n          [19.57338000200002, -34.72380000099997],\n          [19.57339999900006, -34.72372000699994],\n          [19.573480000000075, -34.72365000399998],\n          [19.573570000000075, -34.723660001999974],\n          [19.573690002000035, -34.723750001999974],\n          [19.57374999900003, -34.72384999999997],\n          [19.573830001000033, -34.72392000299993],\n          [19.57392999900003, -34.72389000099997],\n          [19.573989996000023, -34.72380000099997],\n          [19.537649997000074, -34.69208999799997],\n          [19.537469997000073, -34.69211999999993],\n          [19.537400002000027, -34.69217999699998],\n          [19.537220002000026, -34.692219997999985],\n          [19.537090010000043, -34.69219000399994],\n          [19.537010000000066, -34.69208999799997],\n          [19.537059999000064, -34.69195999699997],\n          [19.537040003000072, -34.69180000199998],\n          [19.537149999000064, -34.691720000999965],\n          [19.53724998900003, -34.69171000999995],\n          [19.537310002000027, -34.69162000299997],\n          [19.53726000300003, -34.69148000399997],\n          [19.537149999000064, -34.69136999999995],\n          [19.537100000000066, -34.69125999599993],\n          [19.536990004000074, -34.69114999899995],\n          [19.536830001000055, -34.69111999699993],\n          [19.536759990000064, -34.69100000199995],\n          [19.536690002000057, -34.69093999699993],\n          [19.536720005000063, -34.690839998999934],\n          [19.536920001000055, -34.69074999999998],\n          [19.536970000000053, -34.69065999999998],\n          [19.536939997000047, -34.69056999999998],\n          [19.536880000000053, -34.69052000099998],\n          [19.536780002000057, -34.69047999999998],\n          [19.536759990000064, -34.69039000099997],\n          [19.53677000400006, -34.69032000499993],\n          [19.536780002000057, -34.690239995999946],\n          [19.536740001000055, -34.69012000099997],\n          [19.53660001000003, -34.690080000999956],\n          [19.53646000400005, -34.69007000199997],\n          [19.536399999000025, -34.69016000199997],\n          [19.536190004000048, -34.69013999799995],\n          [19.536049998000067, -34.69013999799995],\n          [19.535959998000067, -34.69007000199997],\n          [19.535890003000077, -34.68994999999995],\n          [19.535779998000066, -34.68993000399996],\n          [19.53563000200006, -34.68994999999995],\n          [19.535599999000056, -34.69007000199997],\n          [19.535640000000058, -34.690200010999945],\n          [19.535599999000056, -34.69030000099997],\n          [19.53545000200006, -34.69033000299993],\n          [19.53533999800004, -34.69025999999997],\n          [19.53529999700004, -34.690150003999975],\n          [19.53523000200005, -34.69002000299997],\n          [19.535129996000023, -34.689990000999956],\n          [19.535039996000023, -34.68990999899995],\n          [19.53485999700007, -34.68985999999995],\n          [19.53484000000003, -34.68998000299996],\n          [19.534849998000027, -34.690059995999945],\n          [19.534690003000037, -34.69011000299997],\n          [19.534510004000026, -34.69011000299997],\n          [19.495539999000073, -34.671620004999966],\n          [19.495570002000022, -34.671779999999956],\n          [19.495490000000075, -34.67186000199996],\n          [19.495360008000034, -34.671850003999964],\n          [19.49531999900006, -34.671779999999956],\n          [19.495189999000047, -34.67173000099996],\n          [19.495130001000064, -34.67181000299996],\n          [19.495099999000047, -34.67191000099996],\n          [19.494990003000055, -34.67191000099996],\n          [19.494940004000057, -34.672009998999954],\n          [19.494860002000053, -34.67206999599995],\n          [19.49470999700003, -34.67208999999997],\n          [19.494579997000073, -34.67201999699995],\n          [19.494489997000073, -34.671869999999956],\n          [19.49455000200004, -34.67173000099996],\n          [19.494489997000073, -34.671620004999966],\n          [19.494399997000073, -34.67165998999997],\n          [19.494379993000052, -34.67174999799994],\n          [19.494309997000073, -34.67186000199996],\n          [19.494219998000062, -34.671869999999956],\n          [19.494129998000062, -34.67181000299996],\n          [19.49399999700006, -34.671690000999945],\n          [19.494030000000066, -34.67153999599998],\n          [19.49392999400004, -34.67146999999994],\n          [19.49381999800005, -34.67152999799998],\n          [19.493530002000057, -34.67156999799994],\n          [19.49339000300006, -34.67146000199995],\n          [19.493350003000046, -34.67137000199995],\n          [19.493260003000046, -34.67126999699997],\n          [19.493220002000044, -34.67111000099993],\n          [19.493329998000036, -34.671070000999975],\n          [19.493440002000057, -34.671049995999965],\n          [19.493339997000078, -34.67094999799997],\n          [19.49336000900007, -34.67084999999997],\n          [19.493490001000055, -34.670819997999956],\n          [19.493549999000038, -34.67083000399998],\n          [19.493620002000057, -34.67076999899996],\n          [19.496010002000048, -34.66878999599993],\n          [19.496079998000027, -34.668869997999934],\n          [19.496129997000025, -34.66897000399996],\n          [19.49620999800004, -34.66900999699993],\n          [19.496330001000047, -34.66900999699993],\n          [19.49643999700004, -34.66898999999995],\n          [19.496510000000058, -34.66906000299997],\n          [19.496649999000056, -34.66900999699993],\n          [19.49677999900007, -34.668869997999934],\n          [19.496969997000065, -34.66873999699993],\n          [19.496990002000075, -34.66864999799998],\n          [19.496900002000075, -34.668620002999944],\n          [19.496739999000056, -34.66858999999994],\n          [19.492300000000057, -34.668410000999984],\n          [19.492210001000046, -34.66846999799998],\n          [19.492139997000038, -34.66858999999994],\n          [19.491940001000046, -34.66858999999994],\n          [19.49177000000003, -34.668570003999946],\n          [19.456289997000056, -34.39274000199998]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/in/point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [5, 1]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/in/poly-issue#555-5.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"tolerance\": 0.00005\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-75.788024, 45.345283],\n        [-75.788012, 45.345262],\n        [-75.787966, 45.345274],\n        [-75.787959, 45.345262],\n        [-75.787947, 45.345266],\n        [-75.787931, 45.345237],\n        [-75.787943, 45.345234],\n        [-75.787928, 45.345207],\n        [-75.787999, 45.345187],\n        [-75.787975, 45.345143],\n        [-75.787906, 45.345162],\n        [-75.7879, 45.345151],\n        [-75.787897, 45.345152],\n        [-75.787882, 45.345125],\n        [-75.787872, 45.345128],\n        [-75.787855, 45.345099],\n        [-75.787866, 45.345096],\n        [-75.787862, 45.345088],\n        [-75.787855, 45.34509],\n        [-75.787832, 45.345086],\n        [-75.787825, 45.345069],\n        [-75.787842, 45.345056],\n        [-75.787867, 45.34506],\n        [-75.787872, 45.345081],\n        [-75.787903, 45.345073],\n        [-75.787897, 45.345052],\n        [-75.787913, 45.345048],\n        [-75.78792, 45.345059],\n        [-75.787928, 45.345056],\n        [-75.787928, 45.345055],\n        [-75.788023, 45.345028],\n        [-75.78814, 45.345236],\n        [-75.788044, 45.345263],\n        [-75.788043, 45.345262],\n        [-75.78804, 45.345263],\n        [-75.788032, 45.345265],\n        [-75.78804, 45.345279],\n        [-75.788024, 45.345283]\n      ],\n      [\n        [-75.787933, 45.345065],\n        [-75.78793, 45.34506],\n        [-75.78793, 45.345066],\n        [-75.787933, 45.345065]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/in/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"tolerance\": 1,\n    \"elevation\": 25\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-75.51527029981442, 39.11245],\n        [-75.39282224024916, 39.12823474024917],\n        [-75.3770375, 39.135447305104925],\n        [-75.35235519043113, 39.13713230956888],\n        [-75.34721355956887, 39.13713230956888],\n        [-75.32253125, 39.139083755473514],\n        [-75.29670096335326, 39.141125963353275],\n        [-75.29326540004632, 39.14171584995367],\n        [-75.268025, 39.14408623760705],\n        [-75.25277832507136, 39.15170957507138],\n        [-75.24515498760704, 39.166956250000005],\n        [-75.23985410433178, 39.1932916043318],\n        [-75.23985410433178, 39.19512714566821],\n        [-75.23607469121049, 39.2214625],\n        [-75.23324391324394, 39.24118766324395],\n        [-75.23324391324394, 39.25624358675606],\n        [-75.23104443417348, 39.27596875],\n        [-75.22621125895654, 39.28866125895655],\n        [-75.21351874999999, 39.30405720540773],\n        [-75.19590688693847, 39.31286313693849],\n        [-75.18710095540773, 39.33047500000001],\n        [-75.18476066926435, 39.35622316926436],\n        [-75.18476066926435, 39.359233080735656],\n        [-75.1827803677246, 39.38498125],\n        [-75.18108292305178, 39.407051673051775],\n        [-75.18108292305178, 39.41741707694823],\n        [-75.17961177196392, 39.439487500000006],\n        [-75.17842510611122, 39.4589001061112],\n        [-75.17842510611122, 39.474581143888805],\n        [-75.1773677140917, 39.49399375],\n        [-75.17806096906195, 39.513042219061944],\n        [-75.17806096906195, 39.52945153093805],\n        [-75.17880864635877, 39.548500000000004],\n        [-75.17436569692443, 39.56385319692442],\n        [-75.1590125, 39.57861883514683],\n        [-75.14275422343123, 39.586747973431216],\n        [-75.13462508514682, 39.60300625000001],\n        [-75.13199158752832, 39.630027162471684],\n        [-75.13192154096123, 39.63042154096124],\n        [-75.12971192190646, 39.6575125],\n        [-75.12958254641065, 39.68258879641065],\n        [-75.12958254641065, 39.68694245358936],\n        [-75.12945449224796, 39.712018750000006],\n        [-75.13075282512311, 39.73826532512311],\n        [-75.13075282512311, 39.74027842487689],\n        [-75.13219370977114, 39.766525],\n        [-75.13492951020307, 39.79060798979694],\n        [-75.13711471606355, 39.799133466063545],\n        [-75.14033360353974, 39.821031250000004],\n        [-75.1408737447648, 39.839170005235225],\n        [-75.14206588619443, 39.85859088619443],\n        [-75.14260248550531, 39.87553750000001],\n        [-75.14807249033687, 39.88647750966314],\n        [-75.1590125, 39.8919475144947],\n        [-75.17435420501783, 39.89087920501784],\n        [-75.20237093707816, 39.886685312921855],\n        [-75.21351874999999, 39.88578343964871],\n        [-75.22299781995783, 39.88501656995784],\n        [-75.26614108689465, 39.87742141310536],\n        [-75.268025, 39.877239581040996],\n        [-75.26957725960418, 39.87708975960419],\n        [-75.27684240189953, 39.87553750000001],\n        [-75.28419540106952, 39.85936709893049],\n        [-75.29112392832597, 39.84413017832599],\n        [-75.30162746500874, 39.821031250000004],\n        [-75.30816161875036, 39.806661618750354],\n        [-75.32253125, 39.77506054072003],\n        [-75.32519930917472, 39.76919305917473],\n        [-75.32641252811797, 39.766525],\n        [-75.3296491997708, 39.75940705022919],\n        [-75.34223699959911, 39.73172449959911],\n        [-75.35119759122719, 39.712018750000006],\n        [-75.36046052535204, 39.69544177535203],\n        [-75.3754130206531, 39.659136979346904],\n        [-75.37616437518106, 39.6575125],\n        [-75.3766762492428, 39.65715124924281],\n        [-75.3770375, 39.65615200822954],\n        [-75.39832547007784, 39.62429422007785],\n        [-75.4082395514723, 39.60300625000001],\n        [-75.4215797545908, 39.5930422545908],\n        [-75.43154375, 39.56834216367474],\n        [-75.45835566060614, 39.57531191060614],\n        [-75.45895426960922, 39.5755957303908],\n        [-75.48605, 39.57947734440668],\n        [-75.48898805047145, 39.60006819952855],\n        [-75.48994051537133, 39.60300625],\n        [-75.49123821601205, 39.60819446601205],\n        [-75.49220788576012, 39.651354614239885],\n        [-75.49509104207014, 39.6575125],\n        [-75.50305100880664, 39.67451350880663],\n        [-75.50416029911807, 39.69390845088193],\n        [-75.52933401544658, 39.70079651544659],\n        [-75.54055625, 39.707797525000004],\n        [-75.5417414003631, 39.71083359963691],\n        [-75.54210361986804, 39.71201875000001],\n        [-75.5424789600527, 39.71394146005272],\n        [-75.5438968233805, 39.76318442661949],\n        [-75.54488896795854, 39.766525],\n        [-75.54664835702378, 39.77261710702379],\n        [-75.54776976280363, 39.81381773719638],\n        [-75.55227698676161, 39.821031250000004],\n        [-75.56289470095811, 39.84336970095812],\n        [-75.56358754189749, 39.852506208102504],\n        [-75.57539756961809, 39.8558725696181],\n        [-75.59506249999998, 39.868174228685255],\n        [-75.59931300492002, 39.871286995079984],\n        [-75.60432992735852, 39.87553750000001],\n        [-75.63504292712292, 39.89006332287709],\n        [-75.64956874999999, 39.89284139354837],\n        [-75.66838020678718, 39.89434895678719],\n        [-75.68308195946902, 39.896530540530996],\n        [-75.704075, 39.89798053092993],\n        [-75.72818318448331, 39.89964568448332],\n        [-75.73375331940231, 39.9003654305977],\n        [-75.75858125, 39.901872157624666],\n        [-75.78514101585267, 39.90348398414733],\n        [-75.78652773414733, 39.90348398414733],\n        [-75.8130875, 39.904921352207175],\n        [-75.83722610887358, 39.905905141126446],\n        [-75.84345514112644, 39.905905141126446],\n        [-75.86759375, 39.906814783587755],\n        [-75.88844527239183, 39.89638902239184],\n        [-75.89887103358774, 39.87553750000001],\n        [-75.89854841478977, 39.85198591478977],\n        [-75.89854841478977, 39.84458283521024],\n        [-75.89821670830216, 39.821031250000004],\n        [-75.89787552465965, 39.79680677465965],\n        [-75.89787552465965, 39.79074947534036],\n        [-75.89752445181962, 39.766525],\n        [-75.89716305350223, 39.74158805350222],\n        [-75.89716305350223, 39.73695569649778],\n        [-75.89679086738143, 39.712018750000006],\n        [-75.89640740311208, 39.686326153112084],\n        [-75.89640740311208, 39.683205096887924],\n        [-75.89601214017446, 39.6575125],\n        [-75.89560452551711, 39.63101702551712],\n        [-75.89560452551711, 39.6295017244829],\n        [-75.8951839709748, 39.60300625000001],\n        [-75.89475288239396, 39.57584711760604],\n        [-75.8947466163539, 39.57565286635391],\n        [-75.89430149673764, 39.548500000000004],\n        [-75.89387073552223, 39.52222301447779],\n        [-75.89380341704393, 39.520203417043916],\n        [-75.8933591950366, 39.49399375],\n        [-75.89292978011362, 39.468657719886366],\n        [-75.89279284789451, 39.46468659789453],\n        [-75.89235076838531, 39.439487500000006],\n        [-75.8913260472361, 39.4157552027639],\n        [-75.89062746202809, 39.408014962028105],\n        [-75.88953890003162, 39.38498125],\n        [-75.88715925199065, 39.365415748009355],\n        [-75.88127062628152, 39.34415187628153],\n        [-75.87907248368842, 39.33047500000001],\n        [-75.87748307496805, 39.32058567503195],\n        [-75.86759375, 39.29476457315633],\n        [-75.85538716547042, 39.288175334529576],\n        [-75.8282870350059, 39.275968750000004],\n        [-75.8173286270748, 39.27172762292521],\n        [-75.8130875, 39.25578472660005],\n        [-75.79794874486377, 39.236601255136236],\n        [-75.79760439720079, 39.2214625],\n        [-75.7676722437337, 39.2123715062663],\n        [-75.75858125, 39.21117295929072],\n        [-75.74836987958975, 39.21125112958973],\n        [-75.7137522708571, 39.21178522914291],\n        [-75.704075, 39.21186046264999],\n        [-75.67996146438593, 39.19734896438593],\n        [-75.66694581884633, 39.20408543115368],\n        [-75.67566107970288, 39.193048579702875],\n        [-75.67054949218115, 39.166956250000005],\n        [-75.6635559114541, 39.15296908854591],\n        [-75.64956874999999, 39.145975507818854],\n        [-75.62914609464218, 39.14653359464219],\n        [-75.61467186011258, 39.14734688988742],\n        [-75.5950625, 39.14791373192817],\n        [-75.57631446045869, 39.148208210458705],\n        [-75.5587435012753, 39.148768998724705],\n        [-75.54055625, 39.14906393405724],\n        [-75.52104203854152, 39.13196421145847],\n        [-75.51527029981442, 39.11245]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/in/simple-polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"tolerance\": 100\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [26.148429528000065, -28.29755210099995],\n        [26.148582685000065, -28.29778390599995],\n        [26.149207731000047, -28.29773837299996],\n        [26.14925541100007, -28.297771688999944],\n        [26.149255844000038, -28.297773261999964],\n        [26.149276505000046, -28.29784835099997],\n        [26.14928482700003, -28.29787859399994],\n        [26.14928916200006, -28.29800647199994],\n        [26.14931069800008, -28.298641791999955],\n        [26.149339971000074, -28.298641232999955],\n        [26.151298488000066, -28.29860385099994],\n        [26.151290002000053, -28.298628995999934],\n        [26.151417002000073, -28.299308003999954],\n        [26.15159000400007, -28.299739003999946],\n        [26.151951998000072, -28.30051100299994],\n        [26.15206407200003, -28.30076885099993],\n        [26.152066543000046, -28.30077453499996],\n        [26.151987021000025, -28.300799009999935],\n        [26.149896693000073, -28.301442350999935],\n        [26.150354333000053, -28.30260575099993],\n        [26.14914131000006, -28.302975170999957],\n        [26.14836387300005, -28.302853868999932],\n        [26.147575408000023, -28.30269948399996],\n        [26.146257624000043, -28.302462392999928],\n        [26.14557943400007, -28.302181192999967],\n        [26.145492669000078, -28.302154609999945],\n        [26.144921243000056, -28.303395982999973],\n        [26.14482272200007, -28.30455853999996],\n        [26.14431040900007, -28.30451913099995],\n        [26.14429070400007, -28.304144747999942],\n        [26.143837504000032, -28.304144747999942],\n        [26.143613499000026, -28.304592757999956],\n        [26.14346312200007, -28.304893512999968],\n        [26.143260178000048, -28.304893512999968],\n        [26.143246374000057, -28.304893512999968],\n        [26.143147852000027, -28.304893512999968],\n        [26.14295080900007, -28.304834399999947],\n        [26.14200500000004, -28.30449942699994],\n        [26.14198529600003, -28.304420608999976],\n        [26.141525339000054, -28.304298579999966],\n        [26.141019783000047, -28.30416445299994],\n        [26.141118305000077, -28.304637356999933],\n        [26.140940966000073, -28.30512996599998],\n        [26.140376789000072, -28.306172836999963],\n        [26.140476282000066, -28.30621363399996],\n        [26.14041675800007, -28.306326533999936],\n        [26.140146555000058, -28.30640398099996],\n        [26.140073975000064, -28.306410747999962],\n        [26.137315367000042, -28.305189078999945],\n        [26.136645419000047, -28.304854104999947],\n        [26.135719315000074, -28.30451913099995],\n        [26.135515376000058, -28.304330879999952],\n        [26.13546315800005, -28.304282678999982],\n        [26.13558800000004, -28.30419999999998],\n        [26.137463000000025, -28.30242899999996],\n        [26.13794500000006, -28.30202799999995],\n        [26.13796479100006, -28.30201049699997],\n        [26.13798299700005, -28.302025000999947],\n        [26.139450004000025, -28.30074499999995],\n        [26.141302000000053, -28.29914199999996],\n        [26.141913997000074, -28.29862600399997],\n        [26.14212216900006, -28.29845037299998],\n        [26.144304360000035, -28.296499429999983],\n        [26.144799071000023, -28.29614006399993],\n        [26.145209090000037, -28.295759748999956],\n        [26.145465732000048, -28.295507246999932],\n        [26.14575028200005, -28.295352539999953],\n        [26.14589208800004, -28.295275441999934],\n        [26.146584820000044, -28.295135245999973],\n        [26.146587504000024, -28.295134702999974],\n        [26.146827588000065, -28.295606591999956],\n        [26.14685742000006, -28.29565372899998],\n        [26.14691261200005, -28.29574093599996],\n        [26.147077344000024, -28.296001226999977],\n        [26.147117344000037, -28.296041226999932],\n        [26.147907966000048, -28.29696016899993],\n        [26.147913396000035, -28.296966331999954],\n        [26.148429528000065, -28.29755210099995]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/out/argentina.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"id\": \"ARG\",\n  \"properties\": {\n    \"tolerance\": 0.1,\n    \"name\": \"Argentina\"\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-64.964892, -22.075862],\n        [-64.377021, -22.798091],\n        [-63.986838, -21.993644],\n        [-62.846468, -22.034985],\n        [-60.846565, -23.880713],\n        [-60.028966, -24.032796],\n        [-58.807128, -24.771459],\n        [-57.777217, -25.16234],\n        [-57.63366, -25.603657],\n        [-58.618174, -27.123719],\n        [-56.486702, -27.548499],\n        [-55.695846, -27.387837],\n        [-54.788795, -26.621786],\n        [-54.625291, -25.739255],\n        [-54.13005, -25.547639],\n        [-53.628349, -26.124865],\n        [-53.648735, -26.923473],\n        [-55.162286, -27.881915],\n        [-57.625133, -30.216295],\n        [-58.14244, -32.044504],\n        [-58.132648, -33.040567],\n        [-58.349611, -33.263189],\n        [-58.495442, -34.43149],\n        [-57.22583, -35.288027],\n        [-57.362359, -35.97739],\n        [-56.737487, -36.413126],\n        [-56.788285, -36.901572],\n        [-57.749157, -38.183871],\n        [-59.231857, -38.72022],\n        [-61.237445, -38.928425],\n        [-62.335957, -38.827707],\n        [-62.125763, -39.424105],\n        [-62.330531, -40.172586],\n        [-62.145994, -40.676897],\n        [-62.745803, -41.028761],\n        [-63.770495, -41.166789],\n        [-64.73209, -40.802677],\n        [-65.118035, -41.064315],\n        [-64.978561, -42.058001],\n        [-64.303408, -42.359016],\n        [-63.755948, -42.043687],\n        [-63.458059, -42.563138],\n        [-64.378804, -42.873558],\n        [-65.181804, -43.495381],\n        [-65.328823, -44.501366],\n        [-65.565269, -45.036786],\n        [-66.509966, -45.039628],\n        [-67.293794, -45.551896],\n        [-67.580546, -46.301773],\n        [-66.597066, -47.033925],\n        [-65.641027, -47.236135],\n        [-65.985088, -48.133289],\n        [-67.166179, -48.697337],\n        [-67.816088, -49.869669],\n        [-68.728745, -50.264218],\n        [-69.138539, -50.73251],\n        [-68.815561, -51.771104],\n        [-68.149995, -52.349983],\n        [-71.914804, -52.009022],\n        [-72.329404, -51.425956],\n        [-72.309974, -50.67701],\n        [-72.975747, -50.74145],\n        [-73.328051, -50.378785],\n        [-73.415436, -49.318436],\n        [-72.648247, -48.878618],\n        [-72.331161, -48.244238],\n        [-72.447355, -47.738533],\n        [-71.917258, -46.884838],\n        [-71.552009, -45.560733],\n        [-71.659316, -44.973689],\n        [-71.222779, -44.784243],\n        [-71.329801, -44.407522],\n        [-71.793623, -44.207172],\n        [-71.464056, -43.787611],\n        [-71.915424, -43.408565],\n        [-72.148898, -42.254888],\n        [-71.746804, -42.051386],\n        [-71.915734, -40.832339],\n        [-71.413517, -38.916022],\n        [-70.814664, -38.552995],\n        [-71.118625, -37.576827],\n        [-71.121881, -36.658124],\n        [-70.364769, -36.005089],\n        [-70.388049, -35.169688],\n        [-69.817309, -34.193571],\n        [-69.814777, -33.273886],\n        [-70.074399, -33.09121],\n        [-70.535069, -31.36501],\n        [-69.919008, -30.336339],\n        [-70.01355, -29.367923],\n        [-69.65613, -28.459141],\n        [-69.001235, -27.521214],\n        [-68.295542, -26.89934],\n        [-68.5948, -26.506909],\n        [-68.386001, -26.185016],\n        [-68.417653, -24.518555],\n        [-67.328443, -24.025303],\n        [-66.985234, -22.986349],\n        [-67.106674, -22.735925],\n        [-66.273339, -21.83231],\n        [-64.964892, -22.075862]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/out/featurecollection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"properties\": {\n    \"tolerance\": 0.01\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"id\": 1\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [27.977543, -26.175005],\n          [27.964325, -26.183016]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"id\": 2\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [27.97205, -26.199035],\n            [27.984066, -26.192258],\n            [27.987156, -26.201346],\n            [27.97205, -26.199035]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"id\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [27.946644, -26.170845],\n            [27.942696, -26.183632],\n            [27.928619, -26.165299],\n            [27.945099, -26.158982],\n            [27.954025, -26.173464],\n            [27.936172, -26.194877],\n            [27.916603, -26.16684],\n            [27.930336, -26.188561],\n            [27.946644, -26.170845]\n          ],\n          [\n            [27.936859, -26.165915],\n            [27.934971, -26.173927],\n            [27.941494, -26.170075],\n            [27.936859, -26.165915]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"id\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [27.956429, -26.15251]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/out/fiji-hiQ.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"tolerance\": 0.005,\n    \"highQuality\": true\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [179.975281, -16.51477],\n        [179.980431, -16.539127],\n        [180.0103, -16.523328],\n        [180.007553, -16.534848],\n        [180.018196, -16.539127],\n        [180.061455, -16.525632],\n        [180.066605, -16.513124],\n        [180.046349, -16.479547],\n        [180.086861, -16.44761],\n        [180.084114, -16.441354],\n        [180.055618, -16.439707],\n        [180.026093, -16.464732],\n        [180.01442, -16.464073],\n        [179.975281, -16.51477]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/out/geometrycollection.geojson",
    "content": "{\n  \"type\": \"GeometryCollection\",\n  \"geometries\": [\n    {\n      \"type\": \"LineString\",\n      \"coordinates\": [\n        [27.977543, -26.175005],\n        [27.964325, -26.183016]\n      ]\n    },\n    {\n      \"type\": \"Polygon\",\n      \"coordinates\": [\n        [\n          [27.97205, -26.199035],\n          [27.984066, -26.192258],\n          [27.987156, -26.201346],\n          [27.97205, -26.199035]\n        ]\n      ]\n    },\n    {\n      \"type\": \"Polygon\",\n      \"coordinates\": [\n        [\n          [27.946644, -26.170845],\n          [27.942696, -26.183632],\n          [27.928619, -26.165299],\n          [27.945099, -26.158982],\n          [27.954025, -26.173464],\n          [27.936172, -26.194877],\n          [27.916603, -26.16684],\n          [27.930336, -26.188561],\n          [27.946644, -26.170845]\n        ],\n        [\n          [27.936859, -26.165915],\n          [27.934971, -26.173927],\n          [27.941494, -26.170075],\n          [27.936859, -26.165915]\n        ]\n      ]\n    },\n    {\n      \"type\": \"Point\",\n      \"coordinates\": [27.956429, -26.15251]\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/out/issue-#1144.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-70.603637, -33.399918],\n        [-70.683975, -33.404504],\n        [-70.701141, -33.434306],\n        [-70.694274, -33.458369],\n        [-70.668869, -33.472117],\n        [-70.609817, -33.468107],\n        [-70.587158, -33.442901],\n        [-70.603637, -33.399918]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/out/linestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [-80.513992, 28.069557],\n      [-80.48584, 28.042289],\n      [-80.505753, 28.028349],\n      [-80.476913, 28.021075],\n      [-80.49202, 27.998039],\n      [-80.4673, 27.962263],\n      [-80.46524, 27.9198],\n      [-80.405502, 27.930114],\n      [-80.396576, 27.980456],\n      [-80.429535, 27.990764],\n      [-80.414429, 28.009558],\n      [-80.359497, 27.972572],\n      [-80.382156, 27.913733],\n      [-80.417862, 27.88157],\n      [-80.393829, 27.854254],\n      [-80.368423, 27.888246],\n      [-80.354691, 27.868824],\n      [-80.359497, 27.842112],\n      [-80.399323, 27.82511],\n      [-80.400696, 27.793528],\n      [-80.361557, 27.786846],\n      [-80.359325, 27.806853],\n      [-80.354991, 27.796831],\n      [-80.328727, 27.808485]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/out/multilinestring.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [-80.513992, 28.069557],\n        [-80.48584, 28.042289],\n        [-80.505753, 28.028349],\n        [-80.476913, 28.021075],\n        [-80.49202, 27.998039],\n        [-80.4673, 27.962263],\n        [-80.46524, 27.9198],\n        [-80.405502, 27.930114],\n        [-80.396576, 27.980456],\n        [-80.429535, 27.990764],\n        [-80.414429, 28.009558],\n        [-80.359497, 27.972572],\n        [-80.382156, 27.913733],\n        [-80.417862, 27.88157],\n        [-80.393829, 27.854254],\n        [-80.368423, 27.888246],\n        [-80.354691, 27.868824],\n        [-80.359497, 27.842112],\n        [-80.399323, 27.82511],\n        [-80.400696, 27.793528],\n        [-80.361557, 27.786846],\n        [-80.359325, 27.806853],\n        [-80.354991, 27.796831],\n        [-80.328727, 27.808485]\n      ],\n      [\n        [-80.511932, 28.091366],\n        [-80.4776, 28.074404],\n        [-80.46936, 28.010164],\n        [-80.454254, 27.996827],\n        [-80.444641, 28.029561],\n        [-80.355377, 27.991976],\n        [-80.348511, 27.947099],\n        [-80.323792, 27.937394],\n        [-80.340271, 27.879142],\n        [-80.352631, 27.909486],\n        [-80.367737, 27.858504],\n        [-80.340271, 27.822074],\n        [-80.292206, 27.853647],\n        [-80.303192, 27.860932],\n        [-80.293579, 27.894922]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/out/multipoint.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPoint\",\n    \"coordinates\": [\n      [0, 0],\n      [1, 2]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/out/multipolygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"country\": \"South Africa\",\n    \"tolerance\": 0.01\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [19.41807, -34.68668],\n          [19.41455, -34.68997],\n          [19.40993, -34.68798],\n          [19.41807, -34.68668]\n        ]\n      ],\n      [\n        [\n          [19.4188, -34.67816],\n          [19.42342, -34.68024],\n          [19.41508, -34.68598],\n          [19.4188, -34.67816]\n        ]\n      ],\n      [\n        [\n          [19.45629, -34.39274],\n          [19.55599, -34.38974],\n          [19.68811, -34.76532],\n          [19.67762, -34.78188],\n          [19.63818, -34.77916],\n          [19.59412, -34.73309],\n          [19.49554, -34.67162],\n          [19.45629, -34.39274]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/out/point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [5, 1]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/out/poly-issue#555-5.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"tolerance\": 0.00005\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-75.788024, 45.345283],\n        [-75.787931, 45.345237],\n        [-75.787975, 45.345143],\n        [-75.787855, 45.345099],\n        [-75.788023, 45.345028],\n        [-75.78814, 45.345236],\n        [-75.788024, 45.345283]\n      ],\n      [\n        [-75.787933, 45.345065],\n        [-75.78793, 45.34506],\n        [-75.78793, 45.345066],\n        [-75.787933, 45.345065]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/out/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"tolerance\": 1,\n    \"elevation\": 25\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-75.51527, 39.11245],\n        [-75.142602, 39.875538],\n        [-75.813087, 39.904921],\n        [-75.51527, 39.11245]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test/out/simple-polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"tolerance\": 100\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [26.14843, -28.297552],\n        [26.150354, -28.302606],\n        [26.135463, -28.304283],\n        [26.14843, -28.297552]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-simplify/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { truncate } from \"@turf/truncate\";\nimport { polygon, multiPolygon } from \"@turf/helpers\";\nimport { simplify } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nlet fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n// fixtures = fixtures.filter(({name}) => name.includes('#555'));\n\ntest(\"simplify\", (t) => {\n  for (const { filename, name, geojson } of fixtures) {\n    let { tolerance, highQuality } = geojson.properties || {};\n    tolerance = tolerance || 0.01;\n    highQuality = highQuality || false;\n\n    const simplified = truncate(\n      simplify(geojson, {\n        tolerance: tolerance,\n        highQuality: highQuality,\n      })\n    );\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, simplified);\n    t.deepEqual(simplified, loadJsonFileSync(directories.out + filename), name);\n  }\n\n  t.end();\n});\n\ntest(\"simplify -- throw\", (t) => {\n  const poly = polygon([\n    [\n      [0, 0],\n      [2, 2],\n      [2, 0],\n      [0, 0],\n    ],\n  ]);\n  t.throws(() => simplify(null), /geojson is required/, \"missing geojson\");\n  t.throws(\n    () => simplify(poly, { tolerance: -1 }),\n    /invalid tolerance/,\n    \"negative tolerance\"\n  );\n  t.end();\n});\n\ntest(\"simplify -- removes ID & BBox from properties\", (t) => {\n  const properties = { foo: \"bar\" };\n  const id = 12345;\n  const bbox = [0, 0, 2, 2];\n  const poly = polygon(\n    [\n      [\n        [0, 0],\n        [2, 2],\n        [2, 0],\n        [0, 0],\n      ],\n    ],\n    properties,\n    { bbox, id }\n  );\n  const simple = simplify(poly, { tolerance: 0.1 });\n\n  t.equal(simple.id, id);\n  t.deepEqual(simple.bbox, bbox);\n  t.deepEqual(simple.properties, properties);\n  t.end();\n});\n\ntest(\"simplify -- issue #555\", (t) => {\n  // polygons from issue #555\n  const poly1 = polygon([\n    [\n      [-75.693254, 45.431144],\n      [-75.693335, 45.431109],\n      [-75.693335, 45.431109],\n      [-75.693254, 45.431144],\n    ],\n  ]);\n  const poly2 = polygon([\n    [\n      [-75.627178, 45.438106],\n      [-75.627179, 45.438106],\n      [-75.62718, 45.438106],\n      [-75.627178, 45.438106],\n    ],\n  ]);\n  const poly3 = polygon([\n    [\n      [-75.684722, 45.410083],\n      [-75.684641, 45.409989],\n      [-75.684641, 45.409989],\n      [-75.684722, 45.410083],\n      [-75.684722, 45.410083],\n    ],\n  ]);\n  const poly4 = polygon([\n    [\n      [-75.885634, 45.272762],\n      [-75.885482, 45.272641],\n      [-75.885554, 45.272596],\n      [-75.885534, 45.272581],\n      [-75.885581, 45.272551],\n      [-75.885703, 45.272647],\n      [-75.885706, 45.272645],\n      [-75.885709, 45.272647],\n      [-75.885767, 45.272693],\n      [-75.885759, 45.272698],\n      [-75.885716, 45.272728],\n      [-75.885716, 45.272728],\n      [-75.885712, 45.272731],\n      [-75.885712, 45.272731],\n      [-75.885708, 45.272734],\n      [-75.885684, 45.272749],\n      [-75.885671, 45.272739],\n      [-75.885634, 45.272762],\n    ],\n    [\n      [-75.885708, 45.27273],\n      [-75.885708, 45.272729],\n      [-75.885708, 45.272729],\n      [-75.885708, 45.27273],\n    ],\n  ]);\n  const options = { tolerance: 0.000001, highQuality: true };\n\n  t.throws(() => simplify(poly1, options), /invalid polygon/);\n  t.throws(() => simplify(poly2, options), /invalid polygon/);\n  t.throws(() => simplify(poly3, options), /invalid polygon/);\n  t.throws(() => simplify(poly4, options), /invalid polygon/);\n  t.end();\n});\n\ntest(\"simplify -- issue #918\", (t) => {\n  // simplify hangs on this input #918\n  t.throws(\n    () =>\n      simplify(\n        multiPolygon([\n          [\n            [\n              [0, 90],\n              [0, 90],\n              [0, 90],\n              [0, 90],\n              [0, 90],\n              [0, 90],\n              [0, 90],\n              [0, 90],\n              [0, 90],\n              [0, 90],\n              [0, 90],\n            ],\n          ],\n        ])\n      ),\n    /invalid polygon/,\n    \"invalid polygon\"\n  );\n  t.throws(\n    () =>\n      simplify(\n        multiPolygon([\n          [\n            [\n              [0, 1],\n              [0, 2],\n              [0, 3],\n              [0, 2.5],\n              [0, 1],\n            ],\n          ],\n        ])\n      ),\n    /invalid polygon/,\n    \"invalid polygon\"\n  );\n  t.throws(\n    () =>\n      simplify(\n        multiPolygon([\n          [\n            [\n              [0, 1],\n              [0, 1],\n              [1, 2],\n              [0, 1],\n            ],\n          ],\n        ])\n      ),\n    /invalid polygon/,\n    \"invalid polygon\"\n  );\n  t.end();\n});\n\ntest(\"simplify - issue 1788 - infinite loop\", (t) => {\n  // For particularly small polygons simplify was getting stuck in an\n  // infinite loop.\n\n  // https://github.com/Turfjs/turf/issues/1788#issue-521052548\n  const poly1 = polygon([\n    [\n      [11.662180661499999, 50.1081498005],\n      [11.662192661499999, 50.108041800500004],\n      [11.6621866615, 50.1080958005],\n      [11.662180661499999, 50.1081498005],\n    ],\n  ]);\n  simplify(poly1, {\n    tolerance: 0.000001,\n    highQuality: true,\n    mutate: false,\n  });\n  t.pass(\"issue 1788 test 1 didn't hang\");\n\n  // https://github.com/Turfjs/turf/issues/1788#issuecomment-951109683\n  const poly2 = polygon([\n    [\n      [4.0881641, 6.8121605],\n      [4.0881639, 6.8121607],\n      [4.0881638, 6.8121608],\n      [4.0881641, 6.8121605],\n    ],\n  ]);\n  simplify(poly2);\n  t.pass(\"issue 1788 test 2 didn't hang\");\n\n  // https://github.com/Turfjs/turf/issues/1788#issuecomment-1362073785\n  const poly3 = multiPolygon([\n    [\n      [\n        [-10.06762725, -17.428977611],\n        [-10.067626613, -17.428977323],\n        [-10.067625943, -17.428976957],\n        [-10.06762725, -17.428977611],\n      ],\n    ],\n    [\n      [\n        [-10.067625943, -17.428976957],\n        [-10.067599027, -17.428963499],\n        [-10.067625941, -17.428976956],\n        [-10.067625943, -17.428976957],\n      ],\n    ],\n  ]);\n  simplify(poly3, { tolerance: 0.00001, highQuality: true });\n  t.pass(\"issue 1788 test 3 didn't hang\");\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-simplify/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-simplify/types.ts",
    "content": "import { Feature, Polygon } from \"geojson\";\nimport { polygon } from \"@turf/helpers\";\nimport { simplify } from \"./index.js\";\n\nconst poly = polygon([\n  [\n    [0, 0],\n    [10, 10],\n    [20, 20],\n    [0, 0],\n  ],\n]);\n\n// Output type is the same as Input type\nconst simple: Feature<Polygon> = simplify(poly);\n\n// Extra params\nsimplify(poly, { tolerance: 1 });\nsimplify(poly, { tolerance: 1, highQuality: true });\n"
  },
  {
    "path": "packages/turf-square/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-square/README.md",
    "content": "# @turf/square\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## square\n\nTakes a bounding box and calculates the minimum square bounding box that\nwould contain the input.\n\n### Parameters\n\n*   `bbox` **[BBox][1]** extent in \\[west, south, east, north] order\n\n### Examples\n\n```javascript\nconst bbox = [-20, -20, -15, 0];\nconst squared = turf.square(bbox);\n\n//addToMap\nconst addToMap = [turf.bboxPolygon(bbox), turf.bboxPolygon(squared)]\n```\n\nReturns **[BBox][1]** a square surrounding `bbox`\n\n[1]: https://tools.ietf.org/html/rfc7946#section-5\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/square\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-square/bench.ts",
    "content": "import { BBox } from \"geojson\";\nimport Benchmark, { Event } from \"benchmark\";\nimport { square } from \"./index.js\";\n\nconst bbox: BBox = [0, 0, 5, 10];\n\nconst suite = new Benchmark.Suite(\"turf-square\");\nsuite\n  .add(\"turf-square\", function () {\n    square(bbox);\n  })\n  .on(\"cycle\", function (event: Event) {\n    console.log(String(event.target));\n  })\n  .run();\n"
  },
  {
    "path": "packages/turf-square/index.ts",
    "content": "import { distance } from \"@turf/distance\";\nimport { BBox } from \"geojson\";\n\n/**\n * Takes a bounding box and calculates the minimum square bounding box that\n * would contain the input.\n *\n * @function\n * @param {BBox} bbox extent in [west, south, east, north] order\n * @returns {BBox} a square surrounding `bbox`\n * @example\n * const bbox = [-20, -20, -15, 0];\n * const squared = turf.square(bbox);\n *\n * //addToMap\n * const addToMap = [turf.bboxPolygon(bbox), turf.bboxPolygon(squared)]\n */\nfunction square(bbox: BBox): BBox {\n  var west = bbox[0];\n  var south = bbox[1];\n  var east = bbox[2];\n  var north = bbox[3];\n\n  var horizontalDistance = distance(bbox.slice(0, 2), [east, south]);\n  var verticalDistance = distance(bbox.slice(0, 2), [west, north]);\n  if (horizontalDistance >= verticalDistance) {\n    var verticalMidpoint = (south + north) / 2;\n    return [\n      west,\n      verticalMidpoint - (east - west) / 2,\n      east,\n      verticalMidpoint + (east - west) / 2,\n    ];\n  } else {\n    var horizontalMidpoint = (west + east) / 2;\n    return [\n      horizontalMidpoint - (north - south) / 2,\n      south,\n      horizontalMidpoint + (north - south) / 2,\n      north,\n    ];\n  }\n}\n\nexport { square };\nexport default square;\n"
  },
  {
    "path": "packages/turf-square/package.json",
    "content": "{\n  \"name\": \"@turf/square\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a bounding box and calculates the minimum square bounding box that would contain the input.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gis\",\n    \"geojson\",\n    \"extent\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-square/test.ts",
    "content": "import { BBox } from \"geojson\";\nimport test from \"tape\";\nimport { square } from \"./index.js\";\n\ntest(\"square\", function (t) {\n  const bbox1: BBox = [0, 0, 5, 10];\n  const bbox2: BBox = [0, 0, 10, 5];\n\n  const sq1 = square(bbox1);\n  const sq2 = square(bbox2);\n\n  t.deepEqual(sq1, [-2.5, 0, 7.5, 10]);\n  t.deepEqual(sq2, [0, -2.5, 10, 7.5]);\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-square/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-square-grid/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-square-grid/README.md",
    "content": "# @turf/square-grid\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## squareGrid\n\nCreates a grid of square polygons with cell length consistent in degrees\n\n### Parameters\n\n*   `bbox` **[BBox][1]** extent of grid in \\[minX, minY, maxX, maxY] order.  If the grid does not fill the bbox perfectly, it is centered.\n*   `cellSide` **[number][2]** length of each cell side.\n*   `options` **[Object][3]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** the units of the cellSide value.\n        Supports all valid Turf [Units][4].\n        If you are looking for squares with sides of equal lengths in linear units (e.g. kilometers) this is not the module for you.\n        The cellSide is converted from units provided to degrees internally, so the width and height of resulting polygons will be consistent only in degrees. (optional, default `'kilometers'`)\n    *   `options.mask` **[Feature][5]<([Polygon][6] | [MultiPolygon][7])>?** if passed a Polygon or MultiPolygon,\n        the grid Points will be created only inside it\n    *   `options.properties` **[Object][3]** passed to each point of the grid (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar bbox = [-95, 30 ,-85, 40];\nvar cellSide = 50;\nvar options = {units: 'miles'};\n\nvar squareGrid = turf.squareGrid(bbox, cellSide, options);\n\n//addToMap\nvar addToMap = [squareGrid]\n```\n\nReturns **[FeatureCollection][8]<[Polygon][6]>** a grid of polygons with equal width and height in degrees.\n\n[1]: https://tools.ietf.org/html/rfc7946#section-5\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[4]: https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[8]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/square-grid\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-square-grid/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { squareGrid } from \"./index.js\";\n\nvar bbox = [-95, 30, -85, 40];\n\n/**\n * Benchmark Results\n *\n * highres -- 30 cells x 136,441 ops/sec ±0.68% (93 runs sampled)\n * midres  -- 4071 cells x 981 ops/sec ±2.43% (77 runs sampled)\n * lowres  -- 412620 cells x 1.18 ops/sec ±9.27% (7 runs sampled)\n */\n\nvar highres = squareGrid(bbox, 100, { units: \"miles\" }).features.length;\nvar midres = squareGrid(bbox, 10, { units: \"miles\" }).features.length;\nvar lowres = squareGrid(bbox, 1, { units: \"miles\" }).features.length;\nvar suite = new Benchmark.Suite(\"turf-square-grid\");\nsuite\n  .add(\"highres -- \" + highres + \" cells\", () =>\n    squareGrid(bbox, 100, { units: \"miles\" })\n  )\n  .add(\"midres  -- \" + midres + \" cells\", () =>\n    squareGrid(bbox, 10, { units: \"miles\" })\n  )\n  .add(\"lowres  -- \" + lowres + \" cells\", () =>\n    squareGrid(bbox, 1, { units: \"miles\" })\n  )\n  .on(\"cycle\", (e) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-square-grid/index.ts",
    "content": "import {\n  FeatureCollection,\n  Polygon,\n  BBox,\n  Feature,\n  MultiPolygon,\n  GeoJsonProperties,\n} from \"geojson\";\nimport { Units } from \"@turf/helpers\";\nimport { rectangleGrid } from \"@turf/rectangle-grid\";\n\n/**\n * Creates a grid of square polygons with cell length consistent in degrees\n *\n * @function\n * @param {BBox} bbox extent of grid in [minX, minY, maxX, maxY] order.  If the grid does not fill the bbox perfectly, it is centered.\n * @param {number} cellSide length of each cell side.\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units='kilometers'] the units of the cellSide value.\n * Supports all valid Turf {@link https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md Units}.\n * If you are looking for squares with sides of equal lengths in linear units (e.g. kilometers) this is not the module for you.\n * The cellSide is converted from units provided to degrees internally, so the width and height of resulting polygons will be consistent only in degrees.\n * @param {Feature<Polygon|MultiPolygon>} [options.mask] if passed a Polygon or MultiPolygon,\n * the grid Points will be created only inside it\n * @param {Object} [options.properties={}] passed to each point of the grid\n * @returns {FeatureCollection<Polygon>} a grid of polygons with equal width and height in degrees.\n * @example\n * var bbox = [-95, 30 ,-85, 40];\n * var cellSide = 50;\n * var options = {units: 'miles'};\n *\n * var squareGrid = turf.squareGrid(bbox, cellSide, options);\n *\n * //addToMap\n * var addToMap = [squareGrid]\n */\n\nfunction squareGrid<P extends GeoJsonProperties = GeoJsonProperties>(\n  bbox: BBox,\n  cellSide: number,\n  options: {\n    units?: Units;\n    properties?: P;\n    mask?: Feature<Polygon | MultiPolygon> | Polygon | MultiPolygon;\n  } = {}\n): FeatureCollection<Polygon, P> {\n  return rectangleGrid(bbox, cellSide, cellSide, options);\n}\n\nexport { squareGrid };\nexport default squareGrid;\n"
  },
  {
    "path": "packages/turf-square-grid/package.json",
    "content": "{\n  \"name\": \"@turf/square-grid\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Creates a square grid within a bounding box.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"grid\",\n    \"regular\",\n    \"cartesian\",\n    \"grid\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/bbox-polygon\": \"workspace:*\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/rectangle-grid\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-square-grid/test/in/big-bbox.json",
    "content": "{\n  \"bbox\": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629],\n  \"cellSide\": 500,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-square-grid/test/in/fiji-10-miles.json",
    "content": "{\n  \"bbox\": [\n    -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812\n  ],\n  \"cellSide\": 10,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-square-grid/test/in/issue-1215.geojson",
    "content": "{\n  \"bbox\": [37.69975662231445, 55.55151096909941, 37.70958423614502, 55.55615949302079],\n  \"cellSide\": 0.01,\n  \"units\": \"kilometers\",\n  \"mask\": {\n    \"type\": \"Feature\",\n    \"properties\": {\n      \"stroke\": \"#00F\",\n      \"stroke-width\": 6,\n      \"fill-opacity\": 0.3,\n      \"fill\": \"#00F\"\n    },\n    \"geometry\": {\n      \"type\": \"Polygon\",\n      \"coordinates\": [\n        [\n          [37.70651578903198, 55.55151096909941],\n          [37.70958423614502, 55.555297797727704],\n          [37.709230184555054, 55.555850013083],\n          [37.70885467529296, 55.55615949302079],\n          [37.70013213157654, 55.55376247689539],\n          [37.69975662231445, 55.55329519343182],\n          [37.70651578903198, 55.55151096909941]\n        ]\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "packages/turf-square-grid/test/in/london-20-miles.json",
    "content": "{\n  \"bbox\": [-0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154],\n  \"cellSide\": 20,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-square-grid/test/in/piedemont-mask.json",
    "content": "{\n  \"bbox\": [6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049],\n  \"cellSide\": 12.5,\n  \"units\": \"miles\",\n  \"mask\": {\n    \"type\": \"Feature\",\n    \"properties\": {\n      \"stroke\": \"#00F\",\n      \"stroke-width\": 6,\n      \"fill-opacity\": 0.3,\n      \"fill\": \"#00F\"\n    },\n    \"geometry\": {\n      \"type\": \"Polygon\",\n      \"coordinates\": [\n        [\n          [8.382568359375012, 46.456781428126554],\n          [8.313903808593762, 46.41892578708079],\n          [8.31939697265626, 46.379149058330775],\n          [8.099670410156264, 46.26913887119718],\n          [8.171081542968762, 46.1893382140708],\n          [7.8799438476562615, 45.94160076422079],\n          [7.907409667968761, 45.627484212338246],\n          [7.7247619628906365, 45.55444852652113],\n          [7.5833129882812615, 45.5900172453615],\n          [7.484436035156261, 45.58136746810096],\n          [7.347106933593762, 45.527516684421215],\n          [7.116394042968763, 45.46976215263039],\n          [7.176818847656262, 45.408092022812276],\n          [7.094421386718762, 45.222677199620094],\n          [6.980438232421887, 45.20719857986464],\n          [6.9515991210937615, 45.17332441090049],\n          [6.900787353515638, 45.166547157856016],\n          [6.900787353515638, 45.14621056019852],\n          [6.854095458984387, 45.1278045274732],\n          [6.7813110351562615, 45.164610651725425],\n          [6.749725341796888, 45.1394300814679],\n          [6.687927246093762, 45.1394300814679],\n          [6.6302490234375, 45.10987715527803],\n          [6.65496826171875, 45.069156265623505],\n          [6.6741943359375, 45.02015580433459],\n          [6.755218505859382, 45.0182143279711],\n          [6.749725341796875, 44.90744135615697],\n          [6.815643310546875, 44.872415981701394],\n          [6.900787353515625, 44.84515927771909],\n          [6.946105957031258, 44.86560301534198],\n          [7.017517089843757, 44.8344477567128],\n          [7.002410888671875, 44.78378451819761],\n          [7.032623291015625, 44.73210119404699],\n          [7.0751953125, 44.68330096401701],\n          [6.990051269531262, 44.69404054463802],\n          [6.8637084960937615, 44.51021754644927],\n          [6.9021606445312615, 44.36509667482153],\n          [7.055969238281263, 44.219615400229195],\n          [7.3965454101562615, 44.125056482685174],\n          [7.6712036132812615, 44.180234276372886],\n          [7.7151489257812615, 44.09350315285844],\n          [7.770080566406262, 44.136884638560495],\n          [8.02825927734376, 44.140826830775524],\n          [8.08868408203126, 44.321883129398586],\n          [8.247985839843762, 44.52196830685208],\n          [8.357849121093762, 44.48670891691767],\n          [8.599548339843762, 44.537632301346086],\n          [8.665466308593762, 44.58851118961441],\n          [8.802795410156264, 44.51805165000559],\n          [8.912658691406264, 44.592423107178654],\n          [8.912658691406264, 44.67841867818858],\n          [9.017028808593762, 44.6725593921204],\n          [9.139251708984387, 44.57970841241188],\n          [9.213409423828137, 44.6061127451739],\n          [9.221649169921887, 44.75453548416007],\n          [9.066467285156264, 44.85002749260048],\n          [8.896179199218762, 45.05606124274412],\n          [8.775329589843762, 45.01530198999206],\n          [8.659973144531262, 45.02695045318543],\n          [8.522644042968764, 45.28841433167348],\n          [8.550109863281262, 45.3617951914213],\n          [8.63800048828126, 45.34828480683997],\n          [8.676452636718762, 45.30773430004872],\n          [8.76983642578126, 45.35407536661812],\n          [8.734130859375014, 45.38494834654319],\n          [8.846740722656262, 45.40423540168332],\n          [8.725891113281262, 45.51789504294005],\n          [8.654479980468762, 45.70809729528788],\n          [8.56109619140626, 45.79242458189573],\n          [8.599548339843762, 45.832626782661585],\n          [8.580322265625012, 45.90529985724794],\n          [8.725891113281262, 46.02557483126793],\n          [8.717651367187512, 46.0998999106273],\n          [8.610534667968762, 46.14178273759229],\n          [8.539123535156262, 46.221652456379104],\n          [8.451232910156262, 46.25774588045678],\n          [8.445739746093764, 46.30899569419854],\n          [8.47045898437501, 46.34313560260196],\n          [8.462219238281264, 46.462457505996056],\n          [8.382568359375012, 46.456781428126554]\n        ]\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "packages/turf-square-grid/test/in/properties.json",
    "content": "{\n  \"bbox\": [2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261],\n  \"properties\": {\n    \"marker-color\": \"#0ff\"\n  },\n  \"cellSide\": 1,\n  \"mask\": {\n    \"type\": \"Feature\",\n    \"properties\": {},\n    \"geometry\": {\n      \"type\": \"Polygon\",\n      \"coordinates\": [\n        [\n          [2.223186492919922, 41.416856461155575],\n          [2.1716880798339844, 41.44182560856202],\n          [2.1636199951171875, 41.41608406639095],\n          [2.1334075927734375, 41.407200866420744],\n          [2.1845626831054683, 41.37977115211044],\n          [2.223186492919922, 41.416856461155575]\n        ]\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "packages/turf-square-grid/test/in/resolute.json",
    "content": "{\n  \"bbox\": [-95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785],\n  \"cellSide\": 12.5,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-square-grid/test/out/big-bbox.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -77.132893],\n            [-219.231779, -69.896314],\n            [-211.9952, -69.896314],\n            [-211.9952, -77.132893],\n            [-219.231779, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -69.896314],\n            [-219.231779, -62.659735],\n            [-211.9952, -62.659735],\n            [-211.9952, -69.896314],\n            [-219.231779, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -62.659735],\n            [-219.231779, -55.423156],\n            [-211.9952, -55.423156],\n            [-211.9952, -62.659735],\n            [-219.231779, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -55.423156],\n            [-219.231779, -48.186577],\n            [-211.9952, -48.186577],\n            [-211.9952, -55.423156],\n            [-219.231779, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -48.186577],\n            [-219.231779, -40.949997],\n            [-211.9952, -40.949997],\n            [-211.9952, -48.186577],\n            [-219.231779, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -40.949997],\n            [-219.231779, -33.713418],\n            [-211.9952, -33.713418],\n            [-211.9952, -40.949997],\n            [-219.231779, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -33.713418],\n            [-219.231779, -26.476839],\n            [-211.9952, -26.476839],\n            [-211.9952, -33.713418],\n            [-219.231779, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -26.476839],\n            [-219.231779, -19.24026],\n            [-211.9952, -19.24026],\n            [-211.9952, -26.476839],\n            [-219.231779, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -19.24026],\n            [-219.231779, -12.003681],\n            [-211.9952, -12.003681],\n            [-211.9952, -19.24026],\n            [-219.231779, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -12.003681],\n            [-219.231779, -4.767102],\n            [-211.9952, -4.767102],\n            [-211.9952, -12.003681],\n            [-219.231779, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, -4.767102],\n            [-219.231779, 2.469478],\n            [-211.9952, 2.469478],\n            [-211.9952, -4.767102],\n            [-219.231779, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 2.469478],\n            [-219.231779, 9.706057],\n            [-211.9952, 9.706057],\n            [-211.9952, 2.469478],\n            [-219.231779, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 9.706057],\n            [-219.231779, 16.942636],\n            [-211.9952, 16.942636],\n            [-211.9952, 9.706057],\n            [-219.231779, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 16.942636],\n            [-219.231779, 24.179215],\n            [-211.9952, 24.179215],\n            [-211.9952, 16.942636],\n            [-219.231779, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 24.179215],\n            [-219.231779, 31.415794],\n            [-211.9952, 31.415794],\n            [-211.9952, 24.179215],\n            [-219.231779, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 31.415794],\n            [-219.231779, 38.652373],\n            [-211.9952, 38.652373],\n            [-211.9952, 31.415794],\n            [-219.231779, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 38.652373],\n            [-219.231779, 45.888952],\n            [-211.9952, 45.888952],\n            [-211.9952, 38.652373],\n            [-219.231779, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 45.888952],\n            [-219.231779, 53.125532],\n            [-211.9952, 53.125532],\n            [-211.9952, 45.888952],\n            [-219.231779, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 53.125532],\n            [-219.231779, 60.362111],\n            [-211.9952, 60.362111],\n            [-211.9952, 53.125532],\n            [-219.231779, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 60.362111],\n            [-219.231779, 67.59869],\n            [-211.9952, 67.59869],\n            [-211.9952, 60.362111],\n            [-219.231779, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-219.231779, 67.59869],\n            [-219.231779, 74.835269],\n            [-211.9952, 74.835269],\n            [-211.9952, 67.59869],\n            [-219.231779, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -77.132893],\n            [-211.9952, -69.896314],\n            [-204.758621, -69.896314],\n            [-204.758621, -77.132893],\n            [-211.9952, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -69.896314],\n            [-211.9952, -62.659735],\n            [-204.758621, -62.659735],\n            [-204.758621, -69.896314],\n            [-211.9952, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -62.659735],\n            [-211.9952, -55.423156],\n            [-204.758621, -55.423156],\n            [-204.758621, -62.659735],\n            [-211.9952, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -55.423156],\n            [-211.9952, -48.186577],\n            [-204.758621, -48.186577],\n            [-204.758621, -55.423156],\n            [-211.9952, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -48.186577],\n            [-211.9952, -40.949997],\n            [-204.758621, -40.949997],\n            [-204.758621, -48.186577],\n            [-211.9952, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -40.949997],\n            [-211.9952, -33.713418],\n            [-204.758621, -33.713418],\n            [-204.758621, -40.949997],\n            [-211.9952, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -33.713418],\n            [-211.9952, -26.476839],\n            [-204.758621, -26.476839],\n            [-204.758621, -33.713418],\n            [-211.9952, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -26.476839],\n            [-211.9952, -19.24026],\n            [-204.758621, -19.24026],\n            [-204.758621, -26.476839],\n            [-211.9952, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -19.24026],\n            [-211.9952, -12.003681],\n            [-204.758621, -12.003681],\n            [-204.758621, -19.24026],\n            [-211.9952, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -12.003681],\n            [-211.9952, -4.767102],\n            [-204.758621, -4.767102],\n            [-204.758621, -12.003681],\n            [-211.9952, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, -4.767102],\n            [-211.9952, 2.469478],\n            [-204.758621, 2.469478],\n            [-204.758621, -4.767102],\n            [-211.9952, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 2.469478],\n            [-211.9952, 9.706057],\n            [-204.758621, 9.706057],\n            [-204.758621, 2.469478],\n            [-211.9952, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 9.706057],\n            [-211.9952, 16.942636],\n            [-204.758621, 16.942636],\n            [-204.758621, 9.706057],\n            [-211.9952, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 16.942636],\n            [-211.9952, 24.179215],\n            [-204.758621, 24.179215],\n            [-204.758621, 16.942636],\n            [-211.9952, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 24.179215],\n            [-211.9952, 31.415794],\n            [-204.758621, 31.415794],\n            [-204.758621, 24.179215],\n            [-211.9952, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 31.415794],\n            [-211.9952, 38.652373],\n            [-204.758621, 38.652373],\n            [-204.758621, 31.415794],\n            [-211.9952, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 38.652373],\n            [-211.9952, 45.888952],\n            [-204.758621, 45.888952],\n            [-204.758621, 38.652373],\n            [-211.9952, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 45.888952],\n            [-211.9952, 53.125532],\n            [-204.758621, 53.125532],\n            [-204.758621, 45.888952],\n            [-211.9952, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 53.125532],\n            [-211.9952, 60.362111],\n            [-204.758621, 60.362111],\n            [-204.758621, 53.125532],\n            [-211.9952, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 60.362111],\n            [-211.9952, 67.59869],\n            [-204.758621, 67.59869],\n            [-204.758621, 60.362111],\n            [-211.9952, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-211.9952, 67.59869],\n            [-211.9952, 74.835269],\n            [-204.758621, 74.835269],\n            [-204.758621, 67.59869],\n            [-211.9952, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -77.132893],\n            [-204.758621, -69.896314],\n            [-197.522042, -69.896314],\n            [-197.522042, -77.132893],\n            [-204.758621, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -69.896314],\n            [-204.758621, -62.659735],\n            [-197.522042, -62.659735],\n            [-197.522042, -69.896314],\n            [-204.758621, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -62.659735],\n            [-204.758621, -55.423156],\n            [-197.522042, -55.423156],\n            [-197.522042, -62.659735],\n            [-204.758621, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -55.423156],\n            [-204.758621, -48.186577],\n            [-197.522042, -48.186577],\n            [-197.522042, -55.423156],\n            [-204.758621, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -48.186577],\n            [-204.758621, -40.949997],\n            [-197.522042, -40.949997],\n            [-197.522042, -48.186577],\n            [-204.758621, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -40.949997],\n            [-204.758621, -33.713418],\n            [-197.522042, -33.713418],\n            [-197.522042, -40.949997],\n            [-204.758621, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -33.713418],\n            [-204.758621, -26.476839],\n            [-197.522042, -26.476839],\n            [-197.522042, -33.713418],\n            [-204.758621, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -26.476839],\n            [-204.758621, -19.24026],\n            [-197.522042, -19.24026],\n            [-197.522042, -26.476839],\n            [-204.758621, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -19.24026],\n            [-204.758621, -12.003681],\n            [-197.522042, -12.003681],\n            [-197.522042, -19.24026],\n            [-204.758621, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -12.003681],\n            [-204.758621, -4.767102],\n            [-197.522042, -4.767102],\n            [-197.522042, -12.003681],\n            [-204.758621, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, -4.767102],\n            [-204.758621, 2.469478],\n            [-197.522042, 2.469478],\n            [-197.522042, -4.767102],\n            [-204.758621, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 2.469478],\n            [-204.758621, 9.706057],\n            [-197.522042, 9.706057],\n            [-197.522042, 2.469478],\n            [-204.758621, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 9.706057],\n            [-204.758621, 16.942636],\n            [-197.522042, 16.942636],\n            [-197.522042, 9.706057],\n            [-204.758621, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 16.942636],\n            [-204.758621, 24.179215],\n            [-197.522042, 24.179215],\n            [-197.522042, 16.942636],\n            [-204.758621, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 24.179215],\n            [-204.758621, 31.415794],\n            [-197.522042, 31.415794],\n            [-197.522042, 24.179215],\n            [-204.758621, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 31.415794],\n            [-204.758621, 38.652373],\n            [-197.522042, 38.652373],\n            [-197.522042, 31.415794],\n            [-204.758621, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 38.652373],\n            [-204.758621, 45.888952],\n            [-197.522042, 45.888952],\n            [-197.522042, 38.652373],\n            [-204.758621, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 45.888952],\n            [-204.758621, 53.125532],\n            [-197.522042, 53.125532],\n            [-197.522042, 45.888952],\n            [-204.758621, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 53.125532],\n            [-204.758621, 60.362111],\n            [-197.522042, 60.362111],\n            [-197.522042, 53.125532],\n            [-204.758621, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 60.362111],\n            [-204.758621, 67.59869],\n            [-197.522042, 67.59869],\n            [-197.522042, 60.362111],\n            [-204.758621, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-204.758621, 67.59869],\n            [-204.758621, 74.835269],\n            [-197.522042, 74.835269],\n            [-197.522042, 67.59869],\n            [-204.758621, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -77.132893],\n            [-197.522042, -69.896314],\n            [-190.285462, -69.896314],\n            [-190.285462, -77.132893],\n            [-197.522042, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -69.896314],\n            [-197.522042, -62.659735],\n            [-190.285462, -62.659735],\n            [-190.285462, -69.896314],\n            [-197.522042, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -62.659735],\n            [-197.522042, -55.423156],\n            [-190.285462, -55.423156],\n            [-190.285462, -62.659735],\n            [-197.522042, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -55.423156],\n            [-197.522042, -48.186577],\n            [-190.285462, -48.186577],\n            [-190.285462, -55.423156],\n            [-197.522042, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -48.186577],\n            [-197.522042, -40.949997],\n            [-190.285462, -40.949997],\n            [-190.285462, -48.186577],\n            [-197.522042, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -40.949997],\n            [-197.522042, -33.713418],\n            [-190.285462, -33.713418],\n            [-190.285462, -40.949997],\n            [-197.522042, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -33.713418],\n            [-197.522042, -26.476839],\n            [-190.285462, -26.476839],\n            [-190.285462, -33.713418],\n            [-197.522042, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -26.476839],\n            [-197.522042, -19.24026],\n            [-190.285462, -19.24026],\n            [-190.285462, -26.476839],\n            [-197.522042, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -19.24026],\n            [-197.522042, -12.003681],\n            [-190.285462, -12.003681],\n            [-190.285462, -19.24026],\n            [-197.522042, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -12.003681],\n            [-197.522042, -4.767102],\n            [-190.285462, -4.767102],\n            [-190.285462, -12.003681],\n            [-197.522042, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, -4.767102],\n            [-197.522042, 2.469478],\n            [-190.285462, 2.469478],\n            [-190.285462, -4.767102],\n            [-197.522042, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 2.469478],\n            [-197.522042, 9.706057],\n            [-190.285462, 9.706057],\n            [-190.285462, 2.469478],\n            [-197.522042, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 9.706057],\n            [-197.522042, 16.942636],\n            [-190.285462, 16.942636],\n            [-190.285462, 9.706057],\n            [-197.522042, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 16.942636],\n            [-197.522042, 24.179215],\n            [-190.285462, 24.179215],\n            [-190.285462, 16.942636],\n            [-197.522042, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 24.179215],\n            [-197.522042, 31.415794],\n            [-190.285462, 31.415794],\n            [-190.285462, 24.179215],\n            [-197.522042, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 31.415794],\n            [-197.522042, 38.652373],\n            [-190.285462, 38.652373],\n            [-190.285462, 31.415794],\n            [-197.522042, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 38.652373],\n            [-197.522042, 45.888952],\n            [-190.285462, 45.888952],\n            [-190.285462, 38.652373],\n            [-197.522042, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 45.888952],\n            [-197.522042, 53.125532],\n            [-190.285462, 53.125532],\n            [-190.285462, 45.888952],\n            [-197.522042, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 53.125532],\n            [-197.522042, 60.362111],\n            [-190.285462, 60.362111],\n            [-190.285462, 53.125532],\n            [-197.522042, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 60.362111],\n            [-197.522042, 67.59869],\n            [-190.285462, 67.59869],\n            [-190.285462, 60.362111],\n            [-197.522042, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-197.522042, 67.59869],\n            [-197.522042, 74.835269],\n            [-190.285462, 74.835269],\n            [-190.285462, 67.59869],\n            [-197.522042, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -77.132893],\n            [-190.285462, -69.896314],\n            [-183.048883, -69.896314],\n            [-183.048883, -77.132893],\n            [-190.285462, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -69.896314],\n            [-190.285462, -62.659735],\n            [-183.048883, -62.659735],\n            [-183.048883, -69.896314],\n            [-190.285462, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -62.659735],\n            [-190.285462, -55.423156],\n            [-183.048883, -55.423156],\n            [-183.048883, -62.659735],\n            [-190.285462, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -55.423156],\n            [-190.285462, -48.186577],\n            [-183.048883, -48.186577],\n            [-183.048883, -55.423156],\n            [-190.285462, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -48.186577],\n            [-190.285462, -40.949997],\n            [-183.048883, -40.949997],\n            [-183.048883, -48.186577],\n            [-190.285462, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -40.949997],\n            [-190.285462, -33.713418],\n            [-183.048883, -33.713418],\n            [-183.048883, -40.949997],\n            [-190.285462, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -33.713418],\n            [-190.285462, -26.476839],\n            [-183.048883, -26.476839],\n            [-183.048883, -33.713418],\n            [-190.285462, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -26.476839],\n            [-190.285462, -19.24026],\n            [-183.048883, -19.24026],\n            [-183.048883, -26.476839],\n            [-190.285462, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -19.24026],\n            [-190.285462, -12.003681],\n            [-183.048883, -12.003681],\n            [-183.048883, -19.24026],\n            [-190.285462, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -12.003681],\n            [-190.285462, -4.767102],\n            [-183.048883, -4.767102],\n            [-183.048883, -12.003681],\n            [-190.285462, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, -4.767102],\n            [-190.285462, 2.469478],\n            [-183.048883, 2.469478],\n            [-183.048883, -4.767102],\n            [-190.285462, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 2.469478],\n            [-190.285462, 9.706057],\n            [-183.048883, 9.706057],\n            [-183.048883, 2.469478],\n            [-190.285462, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 9.706057],\n            [-190.285462, 16.942636],\n            [-183.048883, 16.942636],\n            [-183.048883, 9.706057],\n            [-190.285462, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 16.942636],\n            [-190.285462, 24.179215],\n            [-183.048883, 24.179215],\n            [-183.048883, 16.942636],\n            [-190.285462, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 24.179215],\n            [-190.285462, 31.415794],\n            [-183.048883, 31.415794],\n            [-183.048883, 24.179215],\n            [-190.285462, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 31.415794],\n            [-190.285462, 38.652373],\n            [-183.048883, 38.652373],\n            [-183.048883, 31.415794],\n            [-190.285462, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 38.652373],\n            [-190.285462, 45.888952],\n            [-183.048883, 45.888952],\n            [-183.048883, 38.652373],\n            [-190.285462, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 45.888952],\n            [-190.285462, 53.125532],\n            [-183.048883, 53.125532],\n            [-183.048883, 45.888952],\n            [-190.285462, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 53.125532],\n            [-190.285462, 60.362111],\n            [-183.048883, 60.362111],\n            [-183.048883, 53.125532],\n            [-190.285462, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 60.362111],\n            [-190.285462, 67.59869],\n            [-183.048883, 67.59869],\n            [-183.048883, 60.362111],\n            [-190.285462, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-190.285462, 67.59869],\n            [-190.285462, 74.835269],\n            [-183.048883, 74.835269],\n            [-183.048883, 67.59869],\n            [-190.285462, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -77.132893],\n            [-183.048883, -69.896314],\n            [-175.812304, -69.896314],\n            [-175.812304, -77.132893],\n            [-183.048883, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -69.896314],\n            [-183.048883, -62.659735],\n            [-175.812304, -62.659735],\n            [-175.812304, -69.896314],\n            [-183.048883, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -62.659735],\n            [-183.048883, -55.423156],\n            [-175.812304, -55.423156],\n            [-175.812304, -62.659735],\n            [-183.048883, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -55.423156],\n            [-183.048883, -48.186577],\n            [-175.812304, -48.186577],\n            [-175.812304, -55.423156],\n            [-183.048883, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -48.186577],\n            [-183.048883, -40.949997],\n            [-175.812304, -40.949997],\n            [-175.812304, -48.186577],\n            [-183.048883, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -40.949997],\n            [-183.048883, -33.713418],\n            [-175.812304, -33.713418],\n            [-175.812304, -40.949997],\n            [-183.048883, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -33.713418],\n            [-183.048883, -26.476839],\n            [-175.812304, -26.476839],\n            [-175.812304, -33.713418],\n            [-183.048883, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -26.476839],\n            [-183.048883, -19.24026],\n            [-175.812304, -19.24026],\n            [-175.812304, -26.476839],\n            [-183.048883, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -19.24026],\n            [-183.048883, -12.003681],\n            [-175.812304, -12.003681],\n            [-175.812304, -19.24026],\n            [-183.048883, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -12.003681],\n            [-183.048883, -4.767102],\n            [-175.812304, -4.767102],\n            [-175.812304, -12.003681],\n            [-183.048883, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, -4.767102],\n            [-183.048883, 2.469478],\n            [-175.812304, 2.469478],\n            [-175.812304, -4.767102],\n            [-183.048883, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 2.469478],\n            [-183.048883, 9.706057],\n            [-175.812304, 9.706057],\n            [-175.812304, 2.469478],\n            [-183.048883, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 9.706057],\n            [-183.048883, 16.942636],\n            [-175.812304, 16.942636],\n            [-175.812304, 9.706057],\n            [-183.048883, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 16.942636],\n            [-183.048883, 24.179215],\n            [-175.812304, 24.179215],\n            [-175.812304, 16.942636],\n            [-183.048883, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 24.179215],\n            [-183.048883, 31.415794],\n            [-175.812304, 31.415794],\n            [-175.812304, 24.179215],\n            [-183.048883, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 31.415794],\n            [-183.048883, 38.652373],\n            [-175.812304, 38.652373],\n            [-175.812304, 31.415794],\n            [-183.048883, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 38.652373],\n            [-183.048883, 45.888952],\n            [-175.812304, 45.888952],\n            [-175.812304, 38.652373],\n            [-183.048883, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 45.888952],\n            [-183.048883, 53.125532],\n            [-175.812304, 53.125532],\n            [-175.812304, 45.888952],\n            [-183.048883, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 53.125532],\n            [-183.048883, 60.362111],\n            [-175.812304, 60.362111],\n            [-175.812304, 53.125532],\n            [-183.048883, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 60.362111],\n            [-183.048883, 67.59869],\n            [-175.812304, 67.59869],\n            [-175.812304, 60.362111],\n            [-183.048883, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-183.048883, 67.59869],\n            [-183.048883, 74.835269],\n            [-175.812304, 74.835269],\n            [-175.812304, 67.59869],\n            [-183.048883, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -77.132893],\n            [-175.812304, -69.896314],\n            [-168.575725, -69.896314],\n            [-168.575725, -77.132893],\n            [-175.812304, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -69.896314],\n            [-175.812304, -62.659735],\n            [-168.575725, -62.659735],\n            [-168.575725, -69.896314],\n            [-175.812304, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -62.659735],\n            [-175.812304, -55.423156],\n            [-168.575725, -55.423156],\n            [-168.575725, -62.659735],\n            [-175.812304, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -55.423156],\n            [-175.812304, -48.186577],\n            [-168.575725, -48.186577],\n            [-168.575725, -55.423156],\n            [-175.812304, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -48.186577],\n            [-175.812304, -40.949997],\n            [-168.575725, -40.949997],\n            [-168.575725, -48.186577],\n            [-175.812304, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -40.949997],\n            [-175.812304, -33.713418],\n            [-168.575725, -33.713418],\n            [-168.575725, -40.949997],\n            [-175.812304, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -33.713418],\n            [-175.812304, -26.476839],\n            [-168.575725, -26.476839],\n            [-168.575725, -33.713418],\n            [-175.812304, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -26.476839],\n            [-175.812304, -19.24026],\n            [-168.575725, -19.24026],\n            [-168.575725, -26.476839],\n            [-175.812304, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -19.24026],\n            [-175.812304, -12.003681],\n            [-168.575725, -12.003681],\n            [-168.575725, -19.24026],\n            [-175.812304, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -12.003681],\n            [-175.812304, -4.767102],\n            [-168.575725, -4.767102],\n            [-168.575725, -12.003681],\n            [-175.812304, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, -4.767102],\n            [-175.812304, 2.469478],\n            [-168.575725, 2.469478],\n            [-168.575725, -4.767102],\n            [-175.812304, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 2.469478],\n            [-175.812304, 9.706057],\n            [-168.575725, 9.706057],\n            [-168.575725, 2.469478],\n            [-175.812304, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 9.706057],\n            [-175.812304, 16.942636],\n            [-168.575725, 16.942636],\n            [-168.575725, 9.706057],\n            [-175.812304, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 16.942636],\n            [-175.812304, 24.179215],\n            [-168.575725, 24.179215],\n            [-168.575725, 16.942636],\n            [-175.812304, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 24.179215],\n            [-175.812304, 31.415794],\n            [-168.575725, 31.415794],\n            [-168.575725, 24.179215],\n            [-175.812304, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 31.415794],\n            [-175.812304, 38.652373],\n            [-168.575725, 38.652373],\n            [-168.575725, 31.415794],\n            [-175.812304, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 38.652373],\n            [-175.812304, 45.888952],\n            [-168.575725, 45.888952],\n            [-168.575725, 38.652373],\n            [-175.812304, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 45.888952],\n            [-175.812304, 53.125532],\n            [-168.575725, 53.125532],\n            [-168.575725, 45.888952],\n            [-175.812304, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 53.125532],\n            [-175.812304, 60.362111],\n            [-168.575725, 60.362111],\n            [-168.575725, 53.125532],\n            [-175.812304, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 60.362111],\n            [-175.812304, 67.59869],\n            [-168.575725, 67.59869],\n            [-168.575725, 60.362111],\n            [-175.812304, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-175.812304, 67.59869],\n            [-175.812304, 74.835269],\n            [-168.575725, 74.835269],\n            [-168.575725, 67.59869],\n            [-175.812304, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -77.132893],\n            [-168.575725, -69.896314],\n            [-161.339146, -69.896314],\n            [-161.339146, -77.132893],\n            [-168.575725, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -69.896314],\n            [-168.575725, -62.659735],\n            [-161.339146, -62.659735],\n            [-161.339146, -69.896314],\n            [-168.575725, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -62.659735],\n            [-168.575725, -55.423156],\n            [-161.339146, -55.423156],\n            [-161.339146, -62.659735],\n            [-168.575725, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -55.423156],\n            [-168.575725, -48.186577],\n            [-161.339146, -48.186577],\n            [-161.339146, -55.423156],\n            [-168.575725, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -48.186577],\n            [-168.575725, -40.949997],\n            [-161.339146, -40.949997],\n            [-161.339146, -48.186577],\n            [-168.575725, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -40.949997],\n            [-168.575725, -33.713418],\n            [-161.339146, -33.713418],\n            [-161.339146, -40.949997],\n            [-168.575725, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -33.713418],\n            [-168.575725, -26.476839],\n            [-161.339146, -26.476839],\n            [-161.339146, -33.713418],\n            [-168.575725, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -26.476839],\n            [-168.575725, -19.24026],\n            [-161.339146, -19.24026],\n            [-161.339146, -26.476839],\n            [-168.575725, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -19.24026],\n            [-168.575725, -12.003681],\n            [-161.339146, -12.003681],\n            [-161.339146, -19.24026],\n            [-168.575725, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -12.003681],\n            [-168.575725, -4.767102],\n            [-161.339146, -4.767102],\n            [-161.339146, -12.003681],\n            [-168.575725, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, -4.767102],\n            [-168.575725, 2.469478],\n            [-161.339146, 2.469478],\n            [-161.339146, -4.767102],\n            [-168.575725, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 2.469478],\n            [-168.575725, 9.706057],\n            [-161.339146, 9.706057],\n            [-161.339146, 2.469478],\n            [-168.575725, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 9.706057],\n            [-168.575725, 16.942636],\n            [-161.339146, 16.942636],\n            [-161.339146, 9.706057],\n            [-168.575725, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 16.942636],\n            [-168.575725, 24.179215],\n            [-161.339146, 24.179215],\n            [-161.339146, 16.942636],\n            [-168.575725, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 24.179215],\n            [-168.575725, 31.415794],\n            [-161.339146, 31.415794],\n            [-161.339146, 24.179215],\n            [-168.575725, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 31.415794],\n            [-168.575725, 38.652373],\n            [-161.339146, 38.652373],\n            [-161.339146, 31.415794],\n            [-168.575725, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 38.652373],\n            [-168.575725, 45.888952],\n            [-161.339146, 45.888952],\n            [-161.339146, 38.652373],\n            [-168.575725, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 45.888952],\n            [-168.575725, 53.125532],\n            [-161.339146, 53.125532],\n            [-161.339146, 45.888952],\n            [-168.575725, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 53.125532],\n            [-168.575725, 60.362111],\n            [-161.339146, 60.362111],\n            [-161.339146, 53.125532],\n            [-168.575725, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 60.362111],\n            [-168.575725, 67.59869],\n            [-161.339146, 67.59869],\n            [-161.339146, 60.362111],\n            [-168.575725, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-168.575725, 67.59869],\n            [-168.575725, 74.835269],\n            [-161.339146, 74.835269],\n            [-161.339146, 67.59869],\n            [-168.575725, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -77.132893],\n            [-161.339146, -69.896314],\n            [-154.102567, -69.896314],\n            [-154.102567, -77.132893],\n            [-161.339146, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -69.896314],\n            [-161.339146, -62.659735],\n            [-154.102567, -62.659735],\n            [-154.102567, -69.896314],\n            [-161.339146, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -62.659735],\n            [-161.339146, -55.423156],\n            [-154.102567, -55.423156],\n            [-154.102567, -62.659735],\n            [-161.339146, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -55.423156],\n            [-161.339146, -48.186577],\n            [-154.102567, -48.186577],\n            [-154.102567, -55.423156],\n            [-161.339146, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -48.186577],\n            [-161.339146, -40.949997],\n            [-154.102567, -40.949997],\n            [-154.102567, -48.186577],\n            [-161.339146, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -40.949997],\n            [-161.339146, -33.713418],\n            [-154.102567, -33.713418],\n            [-154.102567, -40.949997],\n            [-161.339146, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -33.713418],\n            [-161.339146, -26.476839],\n            [-154.102567, -26.476839],\n            [-154.102567, -33.713418],\n            [-161.339146, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -26.476839],\n            [-161.339146, -19.24026],\n            [-154.102567, -19.24026],\n            [-154.102567, -26.476839],\n            [-161.339146, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -19.24026],\n            [-161.339146, -12.003681],\n            [-154.102567, -12.003681],\n            [-154.102567, -19.24026],\n            [-161.339146, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -12.003681],\n            [-161.339146, -4.767102],\n            [-154.102567, -4.767102],\n            [-154.102567, -12.003681],\n            [-161.339146, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, -4.767102],\n            [-161.339146, 2.469478],\n            [-154.102567, 2.469478],\n            [-154.102567, -4.767102],\n            [-161.339146, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 2.469478],\n            [-161.339146, 9.706057],\n            [-154.102567, 9.706057],\n            [-154.102567, 2.469478],\n            [-161.339146, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 9.706057],\n            [-161.339146, 16.942636],\n            [-154.102567, 16.942636],\n            [-154.102567, 9.706057],\n            [-161.339146, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 16.942636],\n            [-161.339146, 24.179215],\n            [-154.102567, 24.179215],\n            [-154.102567, 16.942636],\n            [-161.339146, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 24.179215],\n            [-161.339146, 31.415794],\n            [-154.102567, 31.415794],\n            [-154.102567, 24.179215],\n            [-161.339146, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 31.415794],\n            [-161.339146, 38.652373],\n            [-154.102567, 38.652373],\n            [-154.102567, 31.415794],\n            [-161.339146, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 38.652373],\n            [-161.339146, 45.888952],\n            [-154.102567, 45.888952],\n            [-154.102567, 38.652373],\n            [-161.339146, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 45.888952],\n            [-161.339146, 53.125532],\n            [-154.102567, 53.125532],\n            [-154.102567, 45.888952],\n            [-161.339146, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 53.125532],\n            [-161.339146, 60.362111],\n            [-154.102567, 60.362111],\n            [-154.102567, 53.125532],\n            [-161.339146, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 60.362111],\n            [-161.339146, 67.59869],\n            [-154.102567, 67.59869],\n            [-154.102567, 60.362111],\n            [-161.339146, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-161.339146, 67.59869],\n            [-161.339146, 74.835269],\n            [-154.102567, 74.835269],\n            [-154.102567, 67.59869],\n            [-161.339146, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -77.132893],\n            [-154.102567, -69.896314],\n            [-146.865987, -69.896314],\n            [-146.865987, -77.132893],\n            [-154.102567, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -69.896314],\n            [-154.102567, -62.659735],\n            [-146.865987, -62.659735],\n            [-146.865987, -69.896314],\n            [-154.102567, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -62.659735],\n            [-154.102567, -55.423156],\n            [-146.865987, -55.423156],\n            [-146.865987, -62.659735],\n            [-154.102567, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -55.423156],\n            [-154.102567, -48.186577],\n            [-146.865987, -48.186577],\n            [-146.865987, -55.423156],\n            [-154.102567, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -48.186577],\n            [-154.102567, -40.949997],\n            [-146.865987, -40.949997],\n            [-146.865987, -48.186577],\n            [-154.102567, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -40.949997],\n            [-154.102567, -33.713418],\n            [-146.865987, -33.713418],\n            [-146.865987, -40.949997],\n            [-154.102567, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -33.713418],\n            [-154.102567, -26.476839],\n            [-146.865987, -26.476839],\n            [-146.865987, -33.713418],\n            [-154.102567, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -26.476839],\n            [-154.102567, -19.24026],\n            [-146.865987, -19.24026],\n            [-146.865987, -26.476839],\n            [-154.102567, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -19.24026],\n            [-154.102567, -12.003681],\n            [-146.865987, -12.003681],\n            [-146.865987, -19.24026],\n            [-154.102567, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -12.003681],\n            [-154.102567, -4.767102],\n            [-146.865987, -4.767102],\n            [-146.865987, -12.003681],\n            [-154.102567, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, -4.767102],\n            [-154.102567, 2.469478],\n            [-146.865987, 2.469478],\n            [-146.865987, -4.767102],\n            [-154.102567, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 2.469478],\n            [-154.102567, 9.706057],\n            [-146.865987, 9.706057],\n            [-146.865987, 2.469478],\n            [-154.102567, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 9.706057],\n            [-154.102567, 16.942636],\n            [-146.865987, 16.942636],\n            [-146.865987, 9.706057],\n            [-154.102567, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 16.942636],\n            [-154.102567, 24.179215],\n            [-146.865987, 24.179215],\n            [-146.865987, 16.942636],\n            [-154.102567, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 24.179215],\n            [-154.102567, 31.415794],\n            [-146.865987, 31.415794],\n            [-146.865987, 24.179215],\n            [-154.102567, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 31.415794],\n            [-154.102567, 38.652373],\n            [-146.865987, 38.652373],\n            [-146.865987, 31.415794],\n            [-154.102567, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 38.652373],\n            [-154.102567, 45.888952],\n            [-146.865987, 45.888952],\n            [-146.865987, 38.652373],\n            [-154.102567, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 45.888952],\n            [-154.102567, 53.125532],\n            [-146.865987, 53.125532],\n            [-146.865987, 45.888952],\n            [-154.102567, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 53.125532],\n            [-154.102567, 60.362111],\n            [-146.865987, 60.362111],\n            [-146.865987, 53.125532],\n            [-154.102567, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 60.362111],\n            [-154.102567, 67.59869],\n            [-146.865987, 67.59869],\n            [-146.865987, 60.362111],\n            [-154.102567, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-154.102567, 67.59869],\n            [-154.102567, 74.835269],\n            [-146.865987, 74.835269],\n            [-146.865987, 67.59869],\n            [-154.102567, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -77.132893],\n            [-146.865987, -69.896314],\n            [-139.629408, -69.896314],\n            [-139.629408, -77.132893],\n            [-146.865987, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -69.896314],\n            [-146.865987, -62.659735],\n            [-139.629408, -62.659735],\n            [-139.629408, -69.896314],\n            [-146.865987, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -62.659735],\n            [-146.865987, -55.423156],\n            [-139.629408, -55.423156],\n            [-139.629408, -62.659735],\n            [-146.865987, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -55.423156],\n            [-146.865987, -48.186577],\n            [-139.629408, -48.186577],\n            [-139.629408, -55.423156],\n            [-146.865987, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -48.186577],\n            [-146.865987, -40.949997],\n            [-139.629408, -40.949997],\n            [-139.629408, -48.186577],\n            [-146.865987, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -40.949997],\n            [-146.865987, -33.713418],\n            [-139.629408, -33.713418],\n            [-139.629408, -40.949997],\n            [-146.865987, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -33.713418],\n            [-146.865987, -26.476839],\n            [-139.629408, -26.476839],\n            [-139.629408, -33.713418],\n            [-146.865987, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -26.476839],\n            [-146.865987, -19.24026],\n            [-139.629408, -19.24026],\n            [-139.629408, -26.476839],\n            [-146.865987, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -19.24026],\n            [-146.865987, -12.003681],\n            [-139.629408, -12.003681],\n            [-139.629408, -19.24026],\n            [-146.865987, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -12.003681],\n            [-146.865987, -4.767102],\n            [-139.629408, -4.767102],\n            [-139.629408, -12.003681],\n            [-146.865987, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, -4.767102],\n            [-146.865987, 2.469478],\n            [-139.629408, 2.469478],\n            [-139.629408, -4.767102],\n            [-146.865987, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 2.469478],\n            [-146.865987, 9.706057],\n            [-139.629408, 9.706057],\n            [-139.629408, 2.469478],\n            [-146.865987, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 9.706057],\n            [-146.865987, 16.942636],\n            [-139.629408, 16.942636],\n            [-139.629408, 9.706057],\n            [-146.865987, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 16.942636],\n            [-146.865987, 24.179215],\n            [-139.629408, 24.179215],\n            [-139.629408, 16.942636],\n            [-146.865987, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 24.179215],\n            [-146.865987, 31.415794],\n            [-139.629408, 31.415794],\n            [-139.629408, 24.179215],\n            [-146.865987, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 31.415794],\n            [-146.865987, 38.652373],\n            [-139.629408, 38.652373],\n            [-139.629408, 31.415794],\n            [-146.865987, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 38.652373],\n            [-146.865987, 45.888952],\n            [-139.629408, 45.888952],\n            [-139.629408, 38.652373],\n            [-146.865987, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 45.888952],\n            [-146.865987, 53.125532],\n            [-139.629408, 53.125532],\n            [-139.629408, 45.888952],\n            [-146.865987, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 53.125532],\n            [-146.865987, 60.362111],\n            [-139.629408, 60.362111],\n            [-139.629408, 53.125532],\n            [-146.865987, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 60.362111],\n            [-146.865987, 67.59869],\n            [-139.629408, 67.59869],\n            [-139.629408, 60.362111],\n            [-146.865987, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.865987, 67.59869],\n            [-146.865987, 74.835269],\n            [-139.629408, 74.835269],\n            [-139.629408, 67.59869],\n            [-146.865987, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -77.132893],\n            [-139.629408, -69.896314],\n            [-132.392829, -69.896314],\n            [-132.392829, -77.132893],\n            [-139.629408, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -69.896314],\n            [-139.629408, -62.659735],\n            [-132.392829, -62.659735],\n            [-132.392829, -69.896314],\n            [-139.629408, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -62.659735],\n            [-139.629408, -55.423156],\n            [-132.392829, -55.423156],\n            [-132.392829, -62.659735],\n            [-139.629408, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -55.423156],\n            [-139.629408, -48.186577],\n            [-132.392829, -48.186577],\n            [-132.392829, -55.423156],\n            [-139.629408, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -48.186577],\n            [-139.629408, -40.949997],\n            [-132.392829, -40.949997],\n            [-132.392829, -48.186577],\n            [-139.629408, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -40.949997],\n            [-139.629408, -33.713418],\n            [-132.392829, -33.713418],\n            [-132.392829, -40.949997],\n            [-139.629408, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -33.713418],\n            [-139.629408, -26.476839],\n            [-132.392829, -26.476839],\n            [-132.392829, -33.713418],\n            [-139.629408, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -26.476839],\n            [-139.629408, -19.24026],\n            [-132.392829, -19.24026],\n            [-132.392829, -26.476839],\n            [-139.629408, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -19.24026],\n            [-139.629408, -12.003681],\n            [-132.392829, -12.003681],\n            [-132.392829, -19.24026],\n            [-139.629408, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -12.003681],\n            [-139.629408, -4.767102],\n            [-132.392829, -4.767102],\n            [-132.392829, -12.003681],\n            [-139.629408, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, -4.767102],\n            [-139.629408, 2.469478],\n            [-132.392829, 2.469478],\n            [-132.392829, -4.767102],\n            [-139.629408, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 2.469478],\n            [-139.629408, 9.706057],\n            [-132.392829, 9.706057],\n            [-132.392829, 2.469478],\n            [-139.629408, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 9.706057],\n            [-139.629408, 16.942636],\n            [-132.392829, 16.942636],\n            [-132.392829, 9.706057],\n            [-139.629408, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 16.942636],\n            [-139.629408, 24.179215],\n            [-132.392829, 24.179215],\n            [-132.392829, 16.942636],\n            [-139.629408, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 24.179215],\n            [-139.629408, 31.415794],\n            [-132.392829, 31.415794],\n            [-132.392829, 24.179215],\n            [-139.629408, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 31.415794],\n            [-139.629408, 38.652373],\n            [-132.392829, 38.652373],\n            [-132.392829, 31.415794],\n            [-139.629408, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 38.652373],\n            [-139.629408, 45.888952],\n            [-132.392829, 45.888952],\n            [-132.392829, 38.652373],\n            [-139.629408, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 45.888952],\n            [-139.629408, 53.125532],\n            [-132.392829, 53.125532],\n            [-132.392829, 45.888952],\n            [-139.629408, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 53.125532],\n            [-139.629408, 60.362111],\n            [-132.392829, 60.362111],\n            [-132.392829, 53.125532],\n            [-139.629408, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 60.362111],\n            [-139.629408, 67.59869],\n            [-132.392829, 67.59869],\n            [-132.392829, 60.362111],\n            [-139.629408, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-139.629408, 67.59869],\n            [-139.629408, 74.835269],\n            [-132.392829, 74.835269],\n            [-132.392829, 67.59869],\n            [-139.629408, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -77.132893],\n            [-132.392829, -69.896314],\n            [-125.15625, -69.896314],\n            [-125.15625, -77.132893],\n            [-132.392829, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -69.896314],\n            [-132.392829, -62.659735],\n            [-125.15625, -62.659735],\n            [-125.15625, -69.896314],\n            [-132.392829, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -62.659735],\n            [-132.392829, -55.423156],\n            [-125.15625, -55.423156],\n            [-125.15625, -62.659735],\n            [-132.392829, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -55.423156],\n            [-132.392829, -48.186577],\n            [-125.15625, -48.186577],\n            [-125.15625, -55.423156],\n            [-132.392829, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -48.186577],\n            [-132.392829, -40.949997],\n            [-125.15625, -40.949997],\n            [-125.15625, -48.186577],\n            [-132.392829, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -40.949997],\n            [-132.392829, -33.713418],\n            [-125.15625, -33.713418],\n            [-125.15625, -40.949997],\n            [-132.392829, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -33.713418],\n            [-132.392829, -26.476839],\n            [-125.15625, -26.476839],\n            [-125.15625, -33.713418],\n            [-132.392829, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -26.476839],\n            [-132.392829, -19.24026],\n            [-125.15625, -19.24026],\n            [-125.15625, -26.476839],\n            [-132.392829, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -19.24026],\n            [-132.392829, -12.003681],\n            [-125.15625, -12.003681],\n            [-125.15625, -19.24026],\n            [-132.392829, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -12.003681],\n            [-132.392829, -4.767102],\n            [-125.15625, -4.767102],\n            [-125.15625, -12.003681],\n            [-132.392829, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, -4.767102],\n            [-132.392829, 2.469478],\n            [-125.15625, 2.469478],\n            [-125.15625, -4.767102],\n            [-132.392829, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 2.469478],\n            [-132.392829, 9.706057],\n            [-125.15625, 9.706057],\n            [-125.15625, 2.469478],\n            [-132.392829, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 9.706057],\n            [-132.392829, 16.942636],\n            [-125.15625, 16.942636],\n            [-125.15625, 9.706057],\n            [-132.392829, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 16.942636],\n            [-132.392829, 24.179215],\n            [-125.15625, 24.179215],\n            [-125.15625, 16.942636],\n            [-132.392829, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 24.179215],\n            [-132.392829, 31.415794],\n            [-125.15625, 31.415794],\n            [-125.15625, 24.179215],\n            [-132.392829, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 31.415794],\n            [-132.392829, 38.652373],\n            [-125.15625, 38.652373],\n            [-125.15625, 31.415794],\n            [-132.392829, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 38.652373],\n            [-132.392829, 45.888952],\n            [-125.15625, 45.888952],\n            [-125.15625, 38.652373],\n            [-132.392829, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 45.888952],\n            [-132.392829, 53.125532],\n            [-125.15625, 53.125532],\n            [-125.15625, 45.888952],\n            [-132.392829, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 53.125532],\n            [-132.392829, 60.362111],\n            [-125.15625, 60.362111],\n            [-125.15625, 53.125532],\n            [-132.392829, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 60.362111],\n            [-132.392829, 67.59869],\n            [-125.15625, 67.59869],\n            [-125.15625, 60.362111],\n            [-132.392829, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-132.392829, 67.59869],\n            [-132.392829, 74.835269],\n            [-125.15625, 74.835269],\n            [-125.15625, 67.59869],\n            [-132.392829, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -77.132893],\n            [-125.15625, -69.896314],\n            [-117.919671, -69.896314],\n            [-117.919671, -77.132893],\n            [-125.15625, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -69.896314],\n            [-125.15625, -62.659735],\n            [-117.919671, -62.659735],\n            [-117.919671, -69.896314],\n            [-125.15625, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -62.659735],\n            [-125.15625, -55.423156],\n            [-117.919671, -55.423156],\n            [-117.919671, -62.659735],\n            [-125.15625, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -55.423156],\n            [-125.15625, -48.186577],\n            [-117.919671, -48.186577],\n            [-117.919671, -55.423156],\n            [-125.15625, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -48.186577],\n            [-125.15625, -40.949997],\n            [-117.919671, -40.949997],\n            [-117.919671, -48.186577],\n            [-125.15625, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -40.949997],\n            [-125.15625, -33.713418],\n            [-117.919671, -33.713418],\n            [-117.919671, -40.949997],\n            [-125.15625, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -33.713418],\n            [-125.15625, -26.476839],\n            [-117.919671, -26.476839],\n            [-117.919671, -33.713418],\n            [-125.15625, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -26.476839],\n            [-125.15625, -19.24026],\n            [-117.919671, -19.24026],\n            [-117.919671, -26.476839],\n            [-125.15625, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -19.24026],\n            [-125.15625, -12.003681],\n            [-117.919671, -12.003681],\n            [-117.919671, -19.24026],\n            [-125.15625, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -12.003681],\n            [-125.15625, -4.767102],\n            [-117.919671, -4.767102],\n            [-117.919671, -12.003681],\n            [-125.15625, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, -4.767102],\n            [-125.15625, 2.469478],\n            [-117.919671, 2.469478],\n            [-117.919671, -4.767102],\n            [-125.15625, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 2.469478],\n            [-125.15625, 9.706057],\n            [-117.919671, 9.706057],\n            [-117.919671, 2.469478],\n            [-125.15625, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 9.706057],\n            [-125.15625, 16.942636],\n            [-117.919671, 16.942636],\n            [-117.919671, 9.706057],\n            [-125.15625, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 16.942636],\n            [-125.15625, 24.179215],\n            [-117.919671, 24.179215],\n            [-117.919671, 16.942636],\n            [-125.15625, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 24.179215],\n            [-125.15625, 31.415794],\n            [-117.919671, 31.415794],\n            [-117.919671, 24.179215],\n            [-125.15625, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 31.415794],\n            [-125.15625, 38.652373],\n            [-117.919671, 38.652373],\n            [-117.919671, 31.415794],\n            [-125.15625, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 38.652373],\n            [-125.15625, 45.888952],\n            [-117.919671, 45.888952],\n            [-117.919671, 38.652373],\n            [-125.15625, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 45.888952],\n            [-125.15625, 53.125532],\n            [-117.919671, 53.125532],\n            [-117.919671, 45.888952],\n            [-125.15625, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 53.125532],\n            [-125.15625, 60.362111],\n            [-117.919671, 60.362111],\n            [-117.919671, 53.125532],\n            [-125.15625, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 60.362111],\n            [-125.15625, 67.59869],\n            [-117.919671, 67.59869],\n            [-117.919671, 60.362111],\n            [-125.15625, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-125.15625, 67.59869],\n            [-125.15625, 74.835269],\n            [-117.919671, 74.835269],\n            [-117.919671, 67.59869],\n            [-125.15625, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -77.132893],\n            [-117.919671, -69.896314],\n            [-110.683092, -69.896314],\n            [-110.683092, -77.132893],\n            [-117.919671, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -69.896314],\n            [-117.919671, -62.659735],\n            [-110.683092, -62.659735],\n            [-110.683092, -69.896314],\n            [-117.919671, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -62.659735],\n            [-117.919671, -55.423156],\n            [-110.683092, -55.423156],\n            [-110.683092, -62.659735],\n            [-117.919671, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -55.423156],\n            [-117.919671, -48.186577],\n            [-110.683092, -48.186577],\n            [-110.683092, -55.423156],\n            [-117.919671, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -48.186577],\n            [-117.919671, -40.949997],\n            [-110.683092, -40.949997],\n            [-110.683092, -48.186577],\n            [-117.919671, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -40.949997],\n            [-117.919671, -33.713418],\n            [-110.683092, -33.713418],\n            [-110.683092, -40.949997],\n            [-117.919671, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -33.713418],\n            [-117.919671, -26.476839],\n            [-110.683092, -26.476839],\n            [-110.683092, -33.713418],\n            [-117.919671, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -26.476839],\n            [-117.919671, -19.24026],\n            [-110.683092, -19.24026],\n            [-110.683092, -26.476839],\n            [-117.919671, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -19.24026],\n            [-117.919671, -12.003681],\n            [-110.683092, -12.003681],\n            [-110.683092, -19.24026],\n            [-117.919671, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -12.003681],\n            [-117.919671, -4.767102],\n            [-110.683092, -4.767102],\n            [-110.683092, -12.003681],\n            [-117.919671, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, -4.767102],\n            [-117.919671, 2.469478],\n            [-110.683092, 2.469478],\n            [-110.683092, -4.767102],\n            [-117.919671, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 2.469478],\n            [-117.919671, 9.706057],\n            [-110.683092, 9.706057],\n            [-110.683092, 2.469478],\n            [-117.919671, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 9.706057],\n            [-117.919671, 16.942636],\n            [-110.683092, 16.942636],\n            [-110.683092, 9.706057],\n            [-117.919671, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 16.942636],\n            [-117.919671, 24.179215],\n            [-110.683092, 24.179215],\n            [-110.683092, 16.942636],\n            [-117.919671, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 24.179215],\n            [-117.919671, 31.415794],\n            [-110.683092, 31.415794],\n            [-110.683092, 24.179215],\n            [-117.919671, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 31.415794],\n            [-117.919671, 38.652373],\n            [-110.683092, 38.652373],\n            [-110.683092, 31.415794],\n            [-117.919671, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 38.652373],\n            [-117.919671, 45.888952],\n            [-110.683092, 45.888952],\n            [-110.683092, 38.652373],\n            [-117.919671, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 45.888952],\n            [-117.919671, 53.125532],\n            [-110.683092, 53.125532],\n            [-110.683092, 45.888952],\n            [-117.919671, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 53.125532],\n            [-117.919671, 60.362111],\n            [-110.683092, 60.362111],\n            [-110.683092, 53.125532],\n            [-117.919671, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 60.362111],\n            [-117.919671, 67.59869],\n            [-110.683092, 67.59869],\n            [-110.683092, 60.362111],\n            [-117.919671, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.919671, 67.59869],\n            [-117.919671, 74.835269],\n            [-110.683092, 74.835269],\n            [-110.683092, 67.59869],\n            [-117.919671, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -77.132893],\n            [-110.683092, -69.896314],\n            [-103.446513, -69.896314],\n            [-103.446513, -77.132893],\n            [-110.683092, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -69.896314],\n            [-110.683092, -62.659735],\n            [-103.446513, -62.659735],\n            [-103.446513, -69.896314],\n            [-110.683092, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -62.659735],\n            [-110.683092, -55.423156],\n            [-103.446513, -55.423156],\n            [-103.446513, -62.659735],\n            [-110.683092, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -55.423156],\n            [-110.683092, -48.186577],\n            [-103.446513, -48.186577],\n            [-103.446513, -55.423156],\n            [-110.683092, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -48.186577],\n            [-110.683092, -40.949997],\n            [-103.446513, -40.949997],\n            [-103.446513, -48.186577],\n            [-110.683092, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -40.949997],\n            [-110.683092, -33.713418],\n            [-103.446513, -33.713418],\n            [-103.446513, -40.949997],\n            [-110.683092, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -33.713418],\n            [-110.683092, -26.476839],\n            [-103.446513, -26.476839],\n            [-103.446513, -33.713418],\n            [-110.683092, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -26.476839],\n            [-110.683092, -19.24026],\n            [-103.446513, -19.24026],\n            [-103.446513, -26.476839],\n            [-110.683092, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -19.24026],\n            [-110.683092, -12.003681],\n            [-103.446513, -12.003681],\n            [-103.446513, -19.24026],\n            [-110.683092, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -12.003681],\n            [-110.683092, -4.767102],\n            [-103.446513, -4.767102],\n            [-103.446513, -12.003681],\n            [-110.683092, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, -4.767102],\n            [-110.683092, 2.469478],\n            [-103.446513, 2.469478],\n            [-103.446513, -4.767102],\n            [-110.683092, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 2.469478],\n            [-110.683092, 9.706057],\n            [-103.446513, 9.706057],\n            [-103.446513, 2.469478],\n            [-110.683092, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 9.706057],\n            [-110.683092, 16.942636],\n            [-103.446513, 16.942636],\n            [-103.446513, 9.706057],\n            [-110.683092, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 16.942636],\n            [-110.683092, 24.179215],\n            [-103.446513, 24.179215],\n            [-103.446513, 16.942636],\n            [-110.683092, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 24.179215],\n            [-110.683092, 31.415794],\n            [-103.446513, 31.415794],\n            [-103.446513, 24.179215],\n            [-110.683092, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 31.415794],\n            [-110.683092, 38.652373],\n            [-103.446513, 38.652373],\n            [-103.446513, 31.415794],\n            [-110.683092, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 38.652373],\n            [-110.683092, 45.888952],\n            [-103.446513, 45.888952],\n            [-103.446513, 38.652373],\n            [-110.683092, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 45.888952],\n            [-110.683092, 53.125532],\n            [-103.446513, 53.125532],\n            [-103.446513, 45.888952],\n            [-110.683092, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 53.125532],\n            [-110.683092, 60.362111],\n            [-103.446513, 60.362111],\n            [-103.446513, 53.125532],\n            [-110.683092, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 60.362111],\n            [-110.683092, 67.59869],\n            [-103.446513, 67.59869],\n            [-103.446513, 60.362111],\n            [-110.683092, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-110.683092, 67.59869],\n            [-110.683092, 74.835269],\n            [-103.446513, 74.835269],\n            [-103.446513, 67.59869],\n            [-110.683092, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -77.132893],\n            [-103.446513, -69.896314],\n            [-96.209933, -69.896314],\n            [-96.209933, -77.132893],\n            [-103.446513, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -69.896314],\n            [-103.446513, -62.659735],\n            [-96.209933, -62.659735],\n            [-96.209933, -69.896314],\n            [-103.446513, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -62.659735],\n            [-103.446513, -55.423156],\n            [-96.209933, -55.423156],\n            [-96.209933, -62.659735],\n            [-103.446513, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -55.423156],\n            [-103.446513, -48.186577],\n            [-96.209933, -48.186577],\n            [-96.209933, -55.423156],\n            [-103.446513, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -48.186577],\n            [-103.446513, -40.949997],\n            [-96.209933, -40.949997],\n            [-96.209933, -48.186577],\n            [-103.446513, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -40.949997],\n            [-103.446513, -33.713418],\n            [-96.209933, -33.713418],\n            [-96.209933, -40.949997],\n            [-103.446513, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -33.713418],\n            [-103.446513, -26.476839],\n            [-96.209933, -26.476839],\n            [-96.209933, -33.713418],\n            [-103.446513, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -26.476839],\n            [-103.446513, -19.24026],\n            [-96.209933, -19.24026],\n            [-96.209933, -26.476839],\n            [-103.446513, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -19.24026],\n            [-103.446513, -12.003681],\n            [-96.209933, -12.003681],\n            [-96.209933, -19.24026],\n            [-103.446513, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -12.003681],\n            [-103.446513, -4.767102],\n            [-96.209933, -4.767102],\n            [-96.209933, -12.003681],\n            [-103.446513, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, -4.767102],\n            [-103.446513, 2.469478],\n            [-96.209933, 2.469478],\n            [-96.209933, -4.767102],\n            [-103.446513, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 2.469478],\n            [-103.446513, 9.706057],\n            [-96.209933, 9.706057],\n            [-96.209933, 2.469478],\n            [-103.446513, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 9.706057],\n            [-103.446513, 16.942636],\n            [-96.209933, 16.942636],\n            [-96.209933, 9.706057],\n            [-103.446513, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 16.942636],\n            [-103.446513, 24.179215],\n            [-96.209933, 24.179215],\n            [-96.209933, 16.942636],\n            [-103.446513, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 24.179215],\n            [-103.446513, 31.415794],\n            [-96.209933, 31.415794],\n            [-96.209933, 24.179215],\n            [-103.446513, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 31.415794],\n            [-103.446513, 38.652373],\n            [-96.209933, 38.652373],\n            [-96.209933, 31.415794],\n            [-103.446513, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 38.652373],\n            [-103.446513, 45.888952],\n            [-96.209933, 45.888952],\n            [-96.209933, 38.652373],\n            [-103.446513, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 45.888952],\n            [-103.446513, 53.125532],\n            [-96.209933, 53.125532],\n            [-96.209933, 45.888952],\n            [-103.446513, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 53.125532],\n            [-103.446513, 60.362111],\n            [-96.209933, 60.362111],\n            [-96.209933, 53.125532],\n            [-103.446513, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 60.362111],\n            [-103.446513, 67.59869],\n            [-96.209933, 67.59869],\n            [-96.209933, 60.362111],\n            [-103.446513, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-103.446513, 67.59869],\n            [-103.446513, 74.835269],\n            [-96.209933, 74.835269],\n            [-96.209933, 67.59869],\n            [-103.446513, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -77.132893],\n            [-96.209933, -69.896314],\n            [-88.973354, -69.896314],\n            [-88.973354, -77.132893],\n            [-96.209933, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -69.896314],\n            [-96.209933, -62.659735],\n            [-88.973354, -62.659735],\n            [-88.973354, -69.896314],\n            [-96.209933, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -62.659735],\n            [-96.209933, -55.423156],\n            [-88.973354, -55.423156],\n            [-88.973354, -62.659735],\n            [-96.209933, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -55.423156],\n            [-96.209933, -48.186577],\n            [-88.973354, -48.186577],\n            [-88.973354, -55.423156],\n            [-96.209933, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -48.186577],\n            [-96.209933, -40.949997],\n            [-88.973354, -40.949997],\n            [-88.973354, -48.186577],\n            [-96.209933, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -40.949997],\n            [-96.209933, -33.713418],\n            [-88.973354, -33.713418],\n            [-88.973354, -40.949997],\n            [-96.209933, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -33.713418],\n            [-96.209933, -26.476839],\n            [-88.973354, -26.476839],\n            [-88.973354, -33.713418],\n            [-96.209933, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -26.476839],\n            [-96.209933, -19.24026],\n            [-88.973354, -19.24026],\n            [-88.973354, -26.476839],\n            [-96.209933, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -19.24026],\n            [-96.209933, -12.003681],\n            [-88.973354, -12.003681],\n            [-88.973354, -19.24026],\n            [-96.209933, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -12.003681],\n            [-96.209933, -4.767102],\n            [-88.973354, -4.767102],\n            [-88.973354, -12.003681],\n            [-96.209933, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, -4.767102],\n            [-96.209933, 2.469478],\n            [-88.973354, 2.469478],\n            [-88.973354, -4.767102],\n            [-96.209933, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 2.469478],\n            [-96.209933, 9.706057],\n            [-88.973354, 9.706057],\n            [-88.973354, 2.469478],\n            [-96.209933, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 9.706057],\n            [-96.209933, 16.942636],\n            [-88.973354, 16.942636],\n            [-88.973354, 9.706057],\n            [-96.209933, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 16.942636],\n            [-96.209933, 24.179215],\n            [-88.973354, 24.179215],\n            [-88.973354, 16.942636],\n            [-96.209933, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 24.179215],\n            [-96.209933, 31.415794],\n            [-88.973354, 31.415794],\n            [-88.973354, 24.179215],\n            [-96.209933, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 31.415794],\n            [-96.209933, 38.652373],\n            [-88.973354, 38.652373],\n            [-88.973354, 31.415794],\n            [-96.209933, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 38.652373],\n            [-96.209933, 45.888952],\n            [-88.973354, 45.888952],\n            [-88.973354, 38.652373],\n            [-96.209933, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 45.888952],\n            [-96.209933, 53.125532],\n            [-88.973354, 53.125532],\n            [-88.973354, 45.888952],\n            [-96.209933, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 53.125532],\n            [-96.209933, 60.362111],\n            [-88.973354, 60.362111],\n            [-88.973354, 53.125532],\n            [-96.209933, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 60.362111],\n            [-96.209933, 67.59869],\n            [-88.973354, 67.59869],\n            [-88.973354, 60.362111],\n            [-96.209933, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-96.209933, 67.59869],\n            [-96.209933, 74.835269],\n            [-88.973354, 74.835269],\n            [-88.973354, 67.59869],\n            [-96.209933, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -77.132893],\n            [-88.973354, -69.896314],\n            [-81.736775, -69.896314],\n            [-81.736775, -77.132893],\n            [-88.973354, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -69.896314],\n            [-88.973354, -62.659735],\n            [-81.736775, -62.659735],\n            [-81.736775, -69.896314],\n            [-88.973354, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -62.659735],\n            [-88.973354, -55.423156],\n            [-81.736775, -55.423156],\n            [-81.736775, -62.659735],\n            [-88.973354, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -55.423156],\n            [-88.973354, -48.186577],\n            [-81.736775, -48.186577],\n            [-81.736775, -55.423156],\n            [-88.973354, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -48.186577],\n            [-88.973354, -40.949997],\n            [-81.736775, -40.949997],\n            [-81.736775, -48.186577],\n            [-88.973354, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -40.949997],\n            [-88.973354, -33.713418],\n            [-81.736775, -33.713418],\n            [-81.736775, -40.949997],\n            [-88.973354, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -33.713418],\n            [-88.973354, -26.476839],\n            [-81.736775, -26.476839],\n            [-81.736775, -33.713418],\n            [-88.973354, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -26.476839],\n            [-88.973354, -19.24026],\n            [-81.736775, -19.24026],\n            [-81.736775, -26.476839],\n            [-88.973354, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -19.24026],\n            [-88.973354, -12.003681],\n            [-81.736775, -12.003681],\n            [-81.736775, -19.24026],\n            [-88.973354, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -12.003681],\n            [-88.973354, -4.767102],\n            [-81.736775, -4.767102],\n            [-81.736775, -12.003681],\n            [-88.973354, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, -4.767102],\n            [-88.973354, 2.469478],\n            [-81.736775, 2.469478],\n            [-81.736775, -4.767102],\n            [-88.973354, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 2.469478],\n            [-88.973354, 9.706057],\n            [-81.736775, 9.706057],\n            [-81.736775, 2.469478],\n            [-88.973354, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 9.706057],\n            [-88.973354, 16.942636],\n            [-81.736775, 16.942636],\n            [-81.736775, 9.706057],\n            [-88.973354, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 16.942636],\n            [-88.973354, 24.179215],\n            [-81.736775, 24.179215],\n            [-81.736775, 16.942636],\n            [-88.973354, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 24.179215],\n            [-88.973354, 31.415794],\n            [-81.736775, 31.415794],\n            [-81.736775, 24.179215],\n            [-88.973354, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 31.415794],\n            [-88.973354, 38.652373],\n            [-81.736775, 38.652373],\n            [-81.736775, 31.415794],\n            [-88.973354, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 38.652373],\n            [-88.973354, 45.888952],\n            [-81.736775, 45.888952],\n            [-81.736775, 38.652373],\n            [-88.973354, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 45.888952],\n            [-88.973354, 53.125532],\n            [-81.736775, 53.125532],\n            [-81.736775, 45.888952],\n            [-88.973354, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 53.125532],\n            [-88.973354, 60.362111],\n            [-81.736775, 60.362111],\n            [-81.736775, 53.125532],\n            [-88.973354, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 60.362111],\n            [-88.973354, 67.59869],\n            [-81.736775, 67.59869],\n            [-81.736775, 60.362111],\n            [-88.973354, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-88.973354, 67.59869],\n            [-88.973354, 74.835269],\n            [-81.736775, 74.835269],\n            [-81.736775, 67.59869],\n            [-88.973354, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -77.132893],\n            [-81.736775, -69.896314],\n            [-74.500196, -69.896314],\n            [-74.500196, -77.132893],\n            [-81.736775, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -69.896314],\n            [-81.736775, -62.659735],\n            [-74.500196, -62.659735],\n            [-74.500196, -69.896314],\n            [-81.736775, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -62.659735],\n            [-81.736775, -55.423156],\n            [-74.500196, -55.423156],\n            [-74.500196, -62.659735],\n            [-81.736775, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -55.423156],\n            [-81.736775, -48.186577],\n            [-74.500196, -48.186577],\n            [-74.500196, -55.423156],\n            [-81.736775, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -48.186577],\n            [-81.736775, -40.949997],\n            [-74.500196, -40.949997],\n            [-74.500196, -48.186577],\n            [-81.736775, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -40.949997],\n            [-81.736775, -33.713418],\n            [-74.500196, -33.713418],\n            [-74.500196, -40.949997],\n            [-81.736775, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -33.713418],\n            [-81.736775, -26.476839],\n            [-74.500196, -26.476839],\n            [-74.500196, -33.713418],\n            [-81.736775, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -26.476839],\n            [-81.736775, -19.24026],\n            [-74.500196, -19.24026],\n            [-74.500196, -26.476839],\n            [-81.736775, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -19.24026],\n            [-81.736775, -12.003681],\n            [-74.500196, -12.003681],\n            [-74.500196, -19.24026],\n            [-81.736775, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -12.003681],\n            [-81.736775, -4.767102],\n            [-74.500196, -4.767102],\n            [-74.500196, -12.003681],\n            [-81.736775, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, -4.767102],\n            [-81.736775, 2.469478],\n            [-74.500196, 2.469478],\n            [-74.500196, -4.767102],\n            [-81.736775, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 2.469478],\n            [-81.736775, 9.706057],\n            [-74.500196, 9.706057],\n            [-74.500196, 2.469478],\n            [-81.736775, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 9.706057],\n            [-81.736775, 16.942636],\n            [-74.500196, 16.942636],\n            [-74.500196, 9.706057],\n            [-81.736775, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 16.942636],\n            [-81.736775, 24.179215],\n            [-74.500196, 24.179215],\n            [-74.500196, 16.942636],\n            [-81.736775, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 24.179215],\n            [-81.736775, 31.415794],\n            [-74.500196, 31.415794],\n            [-74.500196, 24.179215],\n            [-81.736775, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 31.415794],\n            [-81.736775, 38.652373],\n            [-74.500196, 38.652373],\n            [-74.500196, 31.415794],\n            [-81.736775, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 38.652373],\n            [-81.736775, 45.888952],\n            [-74.500196, 45.888952],\n            [-74.500196, 38.652373],\n            [-81.736775, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 45.888952],\n            [-81.736775, 53.125532],\n            [-74.500196, 53.125532],\n            [-74.500196, 45.888952],\n            [-81.736775, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 53.125532],\n            [-81.736775, 60.362111],\n            [-74.500196, 60.362111],\n            [-74.500196, 53.125532],\n            [-81.736775, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 60.362111],\n            [-81.736775, 67.59869],\n            [-74.500196, 67.59869],\n            [-74.500196, 60.362111],\n            [-81.736775, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-81.736775, 67.59869],\n            [-81.736775, 74.835269],\n            [-74.500196, 74.835269],\n            [-74.500196, 67.59869],\n            [-81.736775, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -77.132893],\n            [-74.500196, -69.896314],\n            [-67.263617, -69.896314],\n            [-67.263617, -77.132893],\n            [-74.500196, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -69.896314],\n            [-74.500196, -62.659735],\n            [-67.263617, -62.659735],\n            [-67.263617, -69.896314],\n            [-74.500196, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -62.659735],\n            [-74.500196, -55.423156],\n            [-67.263617, -55.423156],\n            [-67.263617, -62.659735],\n            [-74.500196, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -55.423156],\n            [-74.500196, -48.186577],\n            [-67.263617, -48.186577],\n            [-67.263617, -55.423156],\n            [-74.500196, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -48.186577],\n            [-74.500196, -40.949997],\n            [-67.263617, -40.949997],\n            [-67.263617, -48.186577],\n            [-74.500196, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -40.949997],\n            [-74.500196, -33.713418],\n            [-67.263617, -33.713418],\n            [-67.263617, -40.949997],\n            [-74.500196, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -33.713418],\n            [-74.500196, -26.476839],\n            [-67.263617, -26.476839],\n            [-67.263617, -33.713418],\n            [-74.500196, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -26.476839],\n            [-74.500196, -19.24026],\n            [-67.263617, -19.24026],\n            [-67.263617, -26.476839],\n            [-74.500196, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -19.24026],\n            [-74.500196, -12.003681],\n            [-67.263617, -12.003681],\n            [-67.263617, -19.24026],\n            [-74.500196, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -12.003681],\n            [-74.500196, -4.767102],\n            [-67.263617, -4.767102],\n            [-67.263617, -12.003681],\n            [-74.500196, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, -4.767102],\n            [-74.500196, 2.469478],\n            [-67.263617, 2.469478],\n            [-67.263617, -4.767102],\n            [-74.500196, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 2.469478],\n            [-74.500196, 9.706057],\n            [-67.263617, 9.706057],\n            [-67.263617, 2.469478],\n            [-74.500196, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 9.706057],\n            [-74.500196, 16.942636],\n            [-67.263617, 16.942636],\n            [-67.263617, 9.706057],\n            [-74.500196, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 16.942636],\n            [-74.500196, 24.179215],\n            [-67.263617, 24.179215],\n            [-67.263617, 16.942636],\n            [-74.500196, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 24.179215],\n            [-74.500196, 31.415794],\n            [-67.263617, 31.415794],\n            [-67.263617, 24.179215],\n            [-74.500196, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 31.415794],\n            [-74.500196, 38.652373],\n            [-67.263617, 38.652373],\n            [-67.263617, 31.415794],\n            [-74.500196, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 38.652373],\n            [-74.500196, 45.888952],\n            [-67.263617, 45.888952],\n            [-67.263617, 38.652373],\n            [-74.500196, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 45.888952],\n            [-74.500196, 53.125532],\n            [-67.263617, 53.125532],\n            [-67.263617, 45.888952],\n            [-74.500196, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 53.125532],\n            [-74.500196, 60.362111],\n            [-67.263617, 60.362111],\n            [-67.263617, 53.125532],\n            [-74.500196, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 60.362111],\n            [-74.500196, 67.59869],\n            [-67.263617, 67.59869],\n            [-67.263617, 60.362111],\n            [-74.500196, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.500196, 67.59869],\n            [-74.500196, 74.835269],\n            [-67.263617, 74.835269],\n            [-67.263617, 67.59869],\n            [-74.500196, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -77.132893],\n            [-67.263617, -69.896314],\n            [-60.027038, -69.896314],\n            [-60.027038, -77.132893],\n            [-67.263617, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -69.896314],\n            [-67.263617, -62.659735],\n            [-60.027038, -62.659735],\n            [-60.027038, -69.896314],\n            [-67.263617, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -62.659735],\n            [-67.263617, -55.423156],\n            [-60.027038, -55.423156],\n            [-60.027038, -62.659735],\n            [-67.263617, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -55.423156],\n            [-67.263617, -48.186577],\n            [-60.027038, -48.186577],\n            [-60.027038, -55.423156],\n            [-67.263617, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -48.186577],\n            [-67.263617, -40.949997],\n            [-60.027038, -40.949997],\n            [-60.027038, -48.186577],\n            [-67.263617, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -40.949997],\n            [-67.263617, -33.713418],\n            [-60.027038, -33.713418],\n            [-60.027038, -40.949997],\n            [-67.263617, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -33.713418],\n            [-67.263617, -26.476839],\n            [-60.027038, -26.476839],\n            [-60.027038, -33.713418],\n            [-67.263617, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -26.476839],\n            [-67.263617, -19.24026],\n            [-60.027038, -19.24026],\n            [-60.027038, -26.476839],\n            [-67.263617, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -19.24026],\n            [-67.263617, -12.003681],\n            [-60.027038, -12.003681],\n            [-60.027038, -19.24026],\n            [-67.263617, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -12.003681],\n            [-67.263617, -4.767102],\n            [-60.027038, -4.767102],\n            [-60.027038, -12.003681],\n            [-67.263617, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, -4.767102],\n            [-67.263617, 2.469478],\n            [-60.027038, 2.469478],\n            [-60.027038, -4.767102],\n            [-67.263617, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 2.469478],\n            [-67.263617, 9.706057],\n            [-60.027038, 9.706057],\n            [-60.027038, 2.469478],\n            [-67.263617, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 9.706057],\n            [-67.263617, 16.942636],\n            [-60.027038, 16.942636],\n            [-60.027038, 9.706057],\n            [-67.263617, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 16.942636],\n            [-67.263617, 24.179215],\n            [-60.027038, 24.179215],\n            [-60.027038, 16.942636],\n            [-67.263617, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 24.179215],\n            [-67.263617, 31.415794],\n            [-60.027038, 31.415794],\n            [-60.027038, 24.179215],\n            [-67.263617, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 31.415794],\n            [-67.263617, 38.652373],\n            [-60.027038, 38.652373],\n            [-60.027038, 31.415794],\n            [-67.263617, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 38.652373],\n            [-67.263617, 45.888952],\n            [-60.027038, 45.888952],\n            [-60.027038, 38.652373],\n            [-67.263617, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 45.888952],\n            [-67.263617, 53.125532],\n            [-60.027038, 53.125532],\n            [-60.027038, 45.888952],\n            [-67.263617, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 53.125532],\n            [-67.263617, 60.362111],\n            [-60.027038, 60.362111],\n            [-60.027038, 53.125532],\n            [-67.263617, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 60.362111],\n            [-67.263617, 67.59869],\n            [-60.027038, 67.59869],\n            [-60.027038, 60.362111],\n            [-67.263617, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-67.263617, 67.59869],\n            [-67.263617, 74.835269],\n            [-60.027038, 74.835269],\n            [-60.027038, 67.59869],\n            [-67.263617, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -77.132893],\n            [-60.027038, -69.896314],\n            [-52.790458, -69.896314],\n            [-52.790458, -77.132893],\n            [-60.027038, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -69.896314],\n            [-60.027038, -62.659735],\n            [-52.790458, -62.659735],\n            [-52.790458, -69.896314],\n            [-60.027038, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -62.659735],\n            [-60.027038, -55.423156],\n            [-52.790458, -55.423156],\n            [-52.790458, -62.659735],\n            [-60.027038, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -55.423156],\n            [-60.027038, -48.186577],\n            [-52.790458, -48.186577],\n            [-52.790458, -55.423156],\n            [-60.027038, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -48.186577],\n            [-60.027038, -40.949997],\n            [-52.790458, -40.949997],\n            [-52.790458, -48.186577],\n            [-60.027038, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -40.949997],\n            [-60.027038, -33.713418],\n            [-52.790458, -33.713418],\n            [-52.790458, -40.949997],\n            [-60.027038, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -33.713418],\n            [-60.027038, -26.476839],\n            [-52.790458, -26.476839],\n            [-52.790458, -33.713418],\n            [-60.027038, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -26.476839],\n            [-60.027038, -19.24026],\n            [-52.790458, -19.24026],\n            [-52.790458, -26.476839],\n            [-60.027038, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -19.24026],\n            [-60.027038, -12.003681],\n            [-52.790458, -12.003681],\n            [-52.790458, -19.24026],\n            [-60.027038, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -12.003681],\n            [-60.027038, -4.767102],\n            [-52.790458, -4.767102],\n            [-52.790458, -12.003681],\n            [-60.027038, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, -4.767102],\n            [-60.027038, 2.469478],\n            [-52.790458, 2.469478],\n            [-52.790458, -4.767102],\n            [-60.027038, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 2.469478],\n            [-60.027038, 9.706057],\n            [-52.790458, 9.706057],\n            [-52.790458, 2.469478],\n            [-60.027038, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 9.706057],\n            [-60.027038, 16.942636],\n            [-52.790458, 16.942636],\n            [-52.790458, 9.706057],\n            [-60.027038, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 16.942636],\n            [-60.027038, 24.179215],\n            [-52.790458, 24.179215],\n            [-52.790458, 16.942636],\n            [-60.027038, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 24.179215],\n            [-60.027038, 31.415794],\n            [-52.790458, 31.415794],\n            [-52.790458, 24.179215],\n            [-60.027038, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 31.415794],\n            [-60.027038, 38.652373],\n            [-52.790458, 38.652373],\n            [-52.790458, 31.415794],\n            [-60.027038, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 38.652373],\n            [-60.027038, 45.888952],\n            [-52.790458, 45.888952],\n            [-52.790458, 38.652373],\n            [-60.027038, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 45.888952],\n            [-60.027038, 53.125532],\n            [-52.790458, 53.125532],\n            [-52.790458, 45.888952],\n            [-60.027038, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 53.125532],\n            [-60.027038, 60.362111],\n            [-52.790458, 60.362111],\n            [-52.790458, 53.125532],\n            [-60.027038, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 60.362111],\n            [-60.027038, 67.59869],\n            [-52.790458, 67.59869],\n            [-52.790458, 60.362111],\n            [-60.027038, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.027038, 67.59869],\n            [-60.027038, 74.835269],\n            [-52.790458, 74.835269],\n            [-52.790458, 67.59869],\n            [-60.027038, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -77.132893],\n            [-52.790458, -69.896314],\n            [-45.553879, -69.896314],\n            [-45.553879, -77.132893],\n            [-52.790458, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -69.896314],\n            [-52.790458, -62.659735],\n            [-45.553879, -62.659735],\n            [-45.553879, -69.896314],\n            [-52.790458, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -62.659735],\n            [-52.790458, -55.423156],\n            [-45.553879, -55.423156],\n            [-45.553879, -62.659735],\n            [-52.790458, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -55.423156],\n            [-52.790458, -48.186577],\n            [-45.553879, -48.186577],\n            [-45.553879, -55.423156],\n            [-52.790458, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -48.186577],\n            [-52.790458, -40.949997],\n            [-45.553879, -40.949997],\n            [-45.553879, -48.186577],\n            [-52.790458, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -40.949997],\n            [-52.790458, -33.713418],\n            [-45.553879, -33.713418],\n            [-45.553879, -40.949997],\n            [-52.790458, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -33.713418],\n            [-52.790458, -26.476839],\n            [-45.553879, -26.476839],\n            [-45.553879, -33.713418],\n            [-52.790458, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -26.476839],\n            [-52.790458, -19.24026],\n            [-45.553879, -19.24026],\n            [-45.553879, -26.476839],\n            [-52.790458, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -19.24026],\n            [-52.790458, -12.003681],\n            [-45.553879, -12.003681],\n            [-45.553879, -19.24026],\n            [-52.790458, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -12.003681],\n            [-52.790458, -4.767102],\n            [-45.553879, -4.767102],\n            [-45.553879, -12.003681],\n            [-52.790458, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, -4.767102],\n            [-52.790458, 2.469478],\n            [-45.553879, 2.469478],\n            [-45.553879, -4.767102],\n            [-52.790458, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 2.469478],\n            [-52.790458, 9.706057],\n            [-45.553879, 9.706057],\n            [-45.553879, 2.469478],\n            [-52.790458, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 9.706057],\n            [-52.790458, 16.942636],\n            [-45.553879, 16.942636],\n            [-45.553879, 9.706057],\n            [-52.790458, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 16.942636],\n            [-52.790458, 24.179215],\n            [-45.553879, 24.179215],\n            [-45.553879, 16.942636],\n            [-52.790458, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 24.179215],\n            [-52.790458, 31.415794],\n            [-45.553879, 31.415794],\n            [-45.553879, 24.179215],\n            [-52.790458, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 31.415794],\n            [-52.790458, 38.652373],\n            [-45.553879, 38.652373],\n            [-45.553879, 31.415794],\n            [-52.790458, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 38.652373],\n            [-52.790458, 45.888952],\n            [-45.553879, 45.888952],\n            [-45.553879, 38.652373],\n            [-52.790458, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 45.888952],\n            [-52.790458, 53.125532],\n            [-45.553879, 53.125532],\n            [-45.553879, 45.888952],\n            [-52.790458, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 53.125532],\n            [-52.790458, 60.362111],\n            [-45.553879, 60.362111],\n            [-45.553879, 53.125532],\n            [-52.790458, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 60.362111],\n            [-52.790458, 67.59869],\n            [-45.553879, 67.59869],\n            [-45.553879, 60.362111],\n            [-52.790458, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-52.790458, 67.59869],\n            [-52.790458, 74.835269],\n            [-45.553879, 74.835269],\n            [-45.553879, 67.59869],\n            [-52.790458, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -77.132893],\n            [-45.553879, -69.896314],\n            [-38.3173, -69.896314],\n            [-38.3173, -77.132893],\n            [-45.553879, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -69.896314],\n            [-45.553879, -62.659735],\n            [-38.3173, -62.659735],\n            [-38.3173, -69.896314],\n            [-45.553879, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -62.659735],\n            [-45.553879, -55.423156],\n            [-38.3173, -55.423156],\n            [-38.3173, -62.659735],\n            [-45.553879, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -55.423156],\n            [-45.553879, -48.186577],\n            [-38.3173, -48.186577],\n            [-38.3173, -55.423156],\n            [-45.553879, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -48.186577],\n            [-45.553879, -40.949997],\n            [-38.3173, -40.949997],\n            [-38.3173, -48.186577],\n            [-45.553879, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -40.949997],\n            [-45.553879, -33.713418],\n            [-38.3173, -33.713418],\n            [-38.3173, -40.949997],\n            [-45.553879, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -33.713418],\n            [-45.553879, -26.476839],\n            [-38.3173, -26.476839],\n            [-38.3173, -33.713418],\n            [-45.553879, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -26.476839],\n            [-45.553879, -19.24026],\n            [-38.3173, -19.24026],\n            [-38.3173, -26.476839],\n            [-45.553879, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -19.24026],\n            [-45.553879, -12.003681],\n            [-38.3173, -12.003681],\n            [-38.3173, -19.24026],\n            [-45.553879, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -12.003681],\n            [-45.553879, -4.767102],\n            [-38.3173, -4.767102],\n            [-38.3173, -12.003681],\n            [-45.553879, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, -4.767102],\n            [-45.553879, 2.469478],\n            [-38.3173, 2.469478],\n            [-38.3173, -4.767102],\n            [-45.553879, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 2.469478],\n            [-45.553879, 9.706057],\n            [-38.3173, 9.706057],\n            [-38.3173, 2.469478],\n            [-45.553879, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 9.706057],\n            [-45.553879, 16.942636],\n            [-38.3173, 16.942636],\n            [-38.3173, 9.706057],\n            [-45.553879, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 16.942636],\n            [-45.553879, 24.179215],\n            [-38.3173, 24.179215],\n            [-38.3173, 16.942636],\n            [-45.553879, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 24.179215],\n            [-45.553879, 31.415794],\n            [-38.3173, 31.415794],\n            [-38.3173, 24.179215],\n            [-45.553879, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 31.415794],\n            [-45.553879, 38.652373],\n            [-38.3173, 38.652373],\n            [-38.3173, 31.415794],\n            [-45.553879, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 38.652373],\n            [-45.553879, 45.888952],\n            [-38.3173, 45.888952],\n            [-38.3173, 38.652373],\n            [-45.553879, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 45.888952],\n            [-45.553879, 53.125532],\n            [-38.3173, 53.125532],\n            [-38.3173, 45.888952],\n            [-45.553879, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 53.125532],\n            [-45.553879, 60.362111],\n            [-38.3173, 60.362111],\n            [-38.3173, 53.125532],\n            [-45.553879, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 60.362111],\n            [-45.553879, 67.59869],\n            [-38.3173, 67.59869],\n            [-38.3173, 60.362111],\n            [-45.553879, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-45.553879, 67.59869],\n            [-45.553879, 74.835269],\n            [-38.3173, 74.835269],\n            [-38.3173, 67.59869],\n            [-45.553879, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -77.132893],\n            [-38.3173, -69.896314],\n            [-31.080721, -69.896314],\n            [-31.080721, -77.132893],\n            [-38.3173, -77.132893]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -69.896314],\n            [-38.3173, -62.659735],\n            [-31.080721, -62.659735],\n            [-31.080721, -69.896314],\n            [-38.3173, -69.896314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -62.659735],\n            [-38.3173, -55.423156],\n            [-31.080721, -55.423156],\n            [-31.080721, -62.659735],\n            [-38.3173, -62.659735]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -55.423156],\n            [-38.3173, -48.186577],\n            [-31.080721, -48.186577],\n            [-31.080721, -55.423156],\n            [-38.3173, -55.423156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -48.186577],\n            [-38.3173, -40.949997],\n            [-31.080721, -40.949997],\n            [-31.080721, -48.186577],\n            [-38.3173, -48.186577]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -40.949997],\n            [-38.3173, -33.713418],\n            [-31.080721, -33.713418],\n            [-31.080721, -40.949997],\n            [-38.3173, -40.949997]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -33.713418],\n            [-38.3173, -26.476839],\n            [-31.080721, -26.476839],\n            [-31.080721, -33.713418],\n            [-38.3173, -33.713418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -26.476839],\n            [-38.3173, -19.24026],\n            [-31.080721, -19.24026],\n            [-31.080721, -26.476839],\n            [-38.3173, -26.476839]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -19.24026],\n            [-38.3173, -12.003681],\n            [-31.080721, -12.003681],\n            [-31.080721, -19.24026],\n            [-38.3173, -19.24026]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -12.003681],\n            [-38.3173, -4.767102],\n            [-31.080721, -4.767102],\n            [-31.080721, -12.003681],\n            [-38.3173, -12.003681]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, -4.767102],\n            [-38.3173, 2.469478],\n            [-31.080721, 2.469478],\n            [-31.080721, -4.767102],\n            [-38.3173, -4.767102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 2.469478],\n            [-38.3173, 9.706057],\n            [-31.080721, 9.706057],\n            [-31.080721, 2.469478],\n            [-38.3173, 2.469478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 9.706057],\n            [-38.3173, 16.942636],\n            [-31.080721, 16.942636],\n            [-31.080721, 9.706057],\n            [-38.3173, 9.706057]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 16.942636],\n            [-38.3173, 24.179215],\n            [-31.080721, 24.179215],\n            [-31.080721, 16.942636],\n            [-38.3173, 16.942636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 24.179215],\n            [-38.3173, 31.415794],\n            [-31.080721, 31.415794],\n            [-31.080721, 24.179215],\n            [-38.3173, 24.179215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 31.415794],\n            [-38.3173, 38.652373],\n            [-31.080721, 38.652373],\n            [-31.080721, 31.415794],\n            [-38.3173, 31.415794]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 38.652373],\n            [-38.3173, 45.888952],\n            [-31.080721, 45.888952],\n            [-31.080721, 38.652373],\n            [-38.3173, 38.652373]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 45.888952],\n            [-38.3173, 53.125532],\n            [-31.080721, 53.125532],\n            [-31.080721, 45.888952],\n            [-38.3173, 45.888952]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 53.125532],\n            [-38.3173, 60.362111],\n            [-31.080721, 60.362111],\n            [-31.080721, 53.125532],\n            [-38.3173, 53.125532]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 60.362111],\n            [-38.3173, 67.59869],\n            [-31.080721, 67.59869],\n            [-31.080721, 60.362111],\n            [-38.3173, 60.362111]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-38.3173, 67.59869],\n            [-38.3173, 74.835269],\n            [-31.080721, 74.835269],\n            [-31.080721, 67.59869],\n            [-38.3173, 67.59869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -80.64703474739618],\n            [-29.53125, -80.64703474739618],\n            [-29.53125, 78.34941069014629],\n            [-220.78125, 78.34941069014629],\n            [-220.78125, -80.64703474739618]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-square-grid/test/out/fiji-10-miles.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.323377, -17.114729],\n            [-180.323377, -16.969998],\n            [-180.178645, -16.969998],\n            [-180.178645, -17.114729],\n            [-180.323377, -17.114729]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.323377, -16.969998],\n            [-180.323377, -16.825266],\n            [-180.178645, -16.825266],\n            [-180.178645, -16.969998],\n            [-180.323377, -16.969998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.323377, -16.825266],\n            [-180.323377, -16.680534],\n            [-180.178645, -16.680534],\n            [-180.178645, -16.825266],\n            [-180.323377, -16.825266]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.323377, -16.680534],\n            [-180.323377, -16.535803],\n            [-180.178645, -16.535803],\n            [-180.178645, -16.680534],\n            [-180.323377, -16.680534]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.178645, -17.114729],\n            [-180.178645, -16.969998],\n            [-180.033914, -16.969998],\n            [-180.033914, -17.114729],\n            [-180.178645, -17.114729]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.178645, -16.969998],\n            [-180.178645, -16.825266],\n            [-180.033914, -16.825266],\n            [-180.033914, -16.969998],\n            [-180.178645, -16.969998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.178645, -16.825266],\n            [-180.178645, -16.680534],\n            [-180.033914, -16.680534],\n            [-180.033914, -16.825266],\n            [-180.178645, -16.825266]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.178645, -16.680534],\n            [-180.178645, -16.535803],\n            [-180.033914, -16.535803],\n            [-180.033914, -16.680534],\n            [-180.178645, -16.680534]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.033914, -17.114729],\n            [-180.033914, -16.969998],\n            [-179.889182, -16.969998],\n            [-179.889182, -17.114729],\n            [-180.033914, -17.114729]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.033914, -16.969998],\n            [-180.033914, -16.825266],\n            [-179.889182, -16.825266],\n            [-179.889182, -16.969998],\n            [-180.033914, -16.969998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.033914, -16.825266],\n            [-180.033914, -16.680534],\n            [-179.889182, -16.680534],\n            [-179.889182, -16.825266],\n            [-180.033914, -16.825266]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.033914, -16.680534],\n            [-180.033914, -16.535803],\n            [-179.889182, -16.535803],\n            [-179.889182, -16.680534],\n            [-180.033914, -16.680534]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.889182, -17.114729],\n            [-179.889182, -16.969998],\n            [-179.74445, -16.969998],\n            [-179.74445, -17.114729],\n            [-179.889182, -17.114729]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.889182, -16.969998],\n            [-179.889182, -16.825266],\n            [-179.74445, -16.825266],\n            [-179.74445, -16.969998],\n            [-179.889182, -16.969998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.889182, -16.825266],\n            [-179.889182, -16.680534],\n            [-179.74445, -16.680534],\n            [-179.74445, -16.825266],\n            [-179.889182, -16.825266]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.889182, -16.680534],\n            [-179.889182, -16.535803],\n            [-179.74445, -16.535803],\n            [-179.74445, -16.680534],\n            [-179.889182, -16.680534]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.74445, -17.114729],\n            [-179.74445, -16.969998],\n            [-179.599719, -16.969998],\n            [-179.599719, -17.114729],\n            [-179.74445, -17.114729]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.74445, -16.969998],\n            [-179.74445, -16.825266],\n            [-179.599719, -16.825266],\n            [-179.599719, -16.969998],\n            [-179.74445, -16.969998]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.74445, -16.825266],\n            [-179.74445, -16.680534],\n            [-179.599719, -16.680534],\n            [-179.599719, -16.825266],\n            [-179.74445, -16.825266]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.74445, -16.680534],\n            [-179.74445, -16.535803],\n            [-179.599719, -16.535803],\n            [-179.599719, -16.680534],\n            [-179.74445, -16.680534]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [\n        -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812\n      ],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.3460693359375, -17.16703442146408],\n            [-179.5770263671875, -17.16703442146408],\n            [-179.5770263671875, -16.48349760264812],\n            [-180.3460693359375, -16.48349760264812],\n            [-180.3460693359375, -17.16703442146408]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-square-grid/test/out/issue-1215.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.699769, 55.553251],\n            [37.699769, 55.553341],\n            [37.699859, 55.553341],\n            [37.699859, 55.553251],\n            [37.699769, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.699769, 55.553341],\n            [37.699769, 55.553431],\n            [37.699859, 55.553431],\n            [37.699859, 55.553341],\n            [37.699769, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.699859, 55.553161],\n            [37.699859, 55.553251],\n            [37.699949, 55.553251],\n            [37.699949, 55.553161],\n            [37.699859, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.699859, 55.553251],\n            [37.699859, 55.553341],\n            [37.699949, 55.553341],\n            [37.699949, 55.553251],\n            [37.699859, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.699859, 55.553341],\n            [37.699859, 55.553431],\n            [37.699949, 55.553431],\n            [37.699949, 55.553341],\n            [37.699859, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.699859, 55.553431],\n            [37.699859, 55.55352],\n            [37.699949, 55.55352],\n            [37.699949, 55.553431],\n            [37.699859, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.699859, 55.55352],\n            [37.699859, 55.55361],\n            [37.699949, 55.55361],\n            [37.699949, 55.55352],\n            [37.699859, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.699949, 55.553161],\n            [37.699949, 55.553251],\n            [37.700039, 55.553251],\n            [37.700039, 55.553161],\n            [37.699949, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.699949, 55.553251],\n            [37.699949, 55.553341],\n            [37.700039, 55.553341],\n            [37.700039, 55.553251],\n            [37.699949, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.699949, 55.553341],\n            [37.699949, 55.553431],\n            [37.700039, 55.553431],\n            [37.700039, 55.553341],\n            [37.699949, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.699949, 55.553431],\n            [37.699949, 55.55352],\n            [37.700039, 55.55352],\n            [37.700039, 55.553431],\n            [37.699949, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.699949, 55.55352],\n            [37.699949, 55.55361],\n            [37.700039, 55.55361],\n            [37.700039, 55.55352],\n            [37.699949, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.699949, 55.55361],\n            [37.699949, 55.5537],\n            [37.700039, 55.5537],\n            [37.700039, 55.55361],\n            [37.699949, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700039, 55.553161],\n            [37.700039, 55.553251],\n            [37.700129, 55.553251],\n            [37.700129, 55.553161],\n            [37.700039, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700039, 55.553251],\n            [37.700039, 55.553341],\n            [37.700129, 55.553341],\n            [37.700129, 55.553251],\n            [37.700039, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700039, 55.553341],\n            [37.700039, 55.553431],\n            [37.700129, 55.553431],\n            [37.700129, 55.553341],\n            [37.700039, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700039, 55.553431],\n            [37.700039, 55.55352],\n            [37.700129, 55.55352],\n            [37.700129, 55.553431],\n            [37.700039, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700039, 55.55352],\n            [37.700039, 55.55361],\n            [37.700129, 55.55361],\n            [37.700129, 55.55352],\n            [37.700039, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700039, 55.55361],\n            [37.700039, 55.5537],\n            [37.700129, 55.5537],\n            [37.700129, 55.55361],\n            [37.700039, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700039, 55.5537],\n            [37.700039, 55.55379],\n            [37.700129, 55.55379],\n            [37.700129, 55.5537],\n            [37.700039, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700129, 55.553161],\n            [37.700129, 55.553251],\n            [37.700219, 55.553251],\n            [37.700219, 55.553161],\n            [37.700129, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700129, 55.553251],\n            [37.700129, 55.553341],\n            [37.700219, 55.553341],\n            [37.700219, 55.553251],\n            [37.700129, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700129, 55.553341],\n            [37.700129, 55.553431],\n            [37.700219, 55.553431],\n            [37.700219, 55.553341],\n            [37.700129, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700129, 55.553431],\n            [37.700129, 55.55352],\n            [37.700219, 55.55352],\n            [37.700219, 55.553431],\n            [37.700129, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700129, 55.55352],\n            [37.700129, 55.55361],\n            [37.700219, 55.55361],\n            [37.700219, 55.55352],\n            [37.700129, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700129, 55.55361],\n            [37.700129, 55.5537],\n            [37.700219, 55.5537],\n            [37.700219, 55.55361],\n            [37.700129, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700129, 55.5537],\n            [37.700129, 55.55379],\n            [37.700219, 55.55379],\n            [37.700219, 55.5537],\n            [37.700129, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700219, 55.553071],\n            [37.700219, 55.553161],\n            [37.700309, 55.553161],\n            [37.700309, 55.553071],\n            [37.700219, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700219, 55.553161],\n            [37.700219, 55.553251],\n            [37.700309, 55.553251],\n            [37.700309, 55.553161],\n            [37.700219, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700219, 55.553251],\n            [37.700219, 55.553341],\n            [37.700309, 55.553341],\n            [37.700309, 55.553251],\n            [37.700219, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700219, 55.553341],\n            [37.700219, 55.553431],\n            [37.700309, 55.553431],\n            [37.700309, 55.553341],\n            [37.700219, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700219, 55.553431],\n            [37.700219, 55.55352],\n            [37.700309, 55.55352],\n            [37.700309, 55.553431],\n            [37.700219, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700219, 55.55352],\n            [37.700219, 55.55361],\n            [37.700309, 55.55361],\n            [37.700309, 55.55352],\n            [37.700219, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700219, 55.55361],\n            [37.700219, 55.5537],\n            [37.700309, 55.5537],\n            [37.700309, 55.55361],\n            [37.700219, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700219, 55.5537],\n            [37.700219, 55.55379],\n            [37.700309, 55.55379],\n            [37.700309, 55.5537],\n            [37.700219, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700219, 55.55379],\n            [37.700219, 55.55388],\n            [37.700309, 55.55388],\n            [37.700309, 55.55379],\n            [37.700219, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700309, 55.553071],\n            [37.700309, 55.553161],\n            [37.700399, 55.553161],\n            [37.700399, 55.553071],\n            [37.700309, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700309, 55.553161],\n            [37.700309, 55.553251],\n            [37.700399, 55.553251],\n            [37.700399, 55.553161],\n            [37.700309, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700309, 55.553251],\n            [37.700309, 55.553341],\n            [37.700399, 55.553341],\n            [37.700399, 55.553251],\n            [37.700309, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700309, 55.553341],\n            [37.700309, 55.553431],\n            [37.700399, 55.553431],\n            [37.700399, 55.553341],\n            [37.700309, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700309, 55.553431],\n            [37.700309, 55.55352],\n            [37.700399, 55.55352],\n            [37.700399, 55.553431],\n            [37.700309, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700309, 55.55352],\n            [37.700309, 55.55361],\n            [37.700399, 55.55361],\n            [37.700399, 55.55352],\n            [37.700309, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700309, 55.55361],\n            [37.700309, 55.5537],\n            [37.700399, 55.5537],\n            [37.700399, 55.55361],\n            [37.700309, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700309, 55.5537],\n            [37.700309, 55.55379],\n            [37.700399, 55.55379],\n            [37.700399, 55.5537],\n            [37.700309, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700309, 55.55379],\n            [37.700309, 55.55388],\n            [37.700399, 55.55388],\n            [37.700399, 55.55379],\n            [37.700309, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700399, 55.553071],\n            [37.700399, 55.553161],\n            [37.700489, 55.553161],\n            [37.700489, 55.553071],\n            [37.700399, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700399, 55.553161],\n            [37.700399, 55.553251],\n            [37.700489, 55.553251],\n            [37.700489, 55.553161],\n            [37.700399, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700399, 55.553251],\n            [37.700399, 55.553341],\n            [37.700489, 55.553341],\n            [37.700489, 55.553251],\n            [37.700399, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700399, 55.553341],\n            [37.700399, 55.553431],\n            [37.700489, 55.553431],\n            [37.700489, 55.553341],\n            [37.700399, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700399, 55.553431],\n            [37.700399, 55.55352],\n            [37.700489, 55.55352],\n            [37.700489, 55.553431],\n            [37.700399, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700399, 55.55352],\n            [37.700399, 55.55361],\n            [37.700489, 55.55361],\n            [37.700489, 55.55352],\n            [37.700399, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700399, 55.55361],\n            [37.700399, 55.5537],\n            [37.700489, 55.5537],\n            [37.700489, 55.55361],\n            [37.700399, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700399, 55.5537],\n            [37.700399, 55.55379],\n            [37.700489, 55.55379],\n            [37.700489, 55.5537],\n            [37.700399, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700399, 55.55379],\n            [37.700399, 55.55388],\n            [37.700489, 55.55388],\n            [37.700489, 55.55379],\n            [37.700399, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700489, 55.553071],\n            [37.700489, 55.553161],\n            [37.700579, 55.553161],\n            [37.700579, 55.553071],\n            [37.700489, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700489, 55.553161],\n            [37.700489, 55.553251],\n            [37.700579, 55.553251],\n            [37.700579, 55.553161],\n            [37.700489, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700489, 55.553251],\n            [37.700489, 55.553341],\n            [37.700579, 55.553341],\n            [37.700579, 55.553251],\n            [37.700489, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700489, 55.553341],\n            [37.700489, 55.553431],\n            [37.700579, 55.553431],\n            [37.700579, 55.553341],\n            [37.700489, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700489, 55.553431],\n            [37.700489, 55.55352],\n            [37.700579, 55.55352],\n            [37.700579, 55.553431],\n            [37.700489, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700489, 55.55352],\n            [37.700489, 55.55361],\n            [37.700579, 55.55361],\n            [37.700579, 55.55352],\n            [37.700489, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700489, 55.55361],\n            [37.700489, 55.5537],\n            [37.700579, 55.5537],\n            [37.700579, 55.55361],\n            [37.700489, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700489, 55.5537],\n            [37.700489, 55.55379],\n            [37.700579, 55.55379],\n            [37.700579, 55.5537],\n            [37.700489, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700489, 55.55379],\n            [37.700489, 55.55388],\n            [37.700579, 55.55388],\n            [37.700579, 55.55379],\n            [37.700489, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700489, 55.55388],\n            [37.700489, 55.55397],\n            [37.700579, 55.55397],\n            [37.700579, 55.55388],\n            [37.700489, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700579, 55.552981],\n            [37.700579, 55.553071],\n            [37.700668, 55.553071],\n            [37.700668, 55.552981],\n            [37.700579, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700579, 55.553071],\n            [37.700579, 55.553161],\n            [37.700668, 55.553161],\n            [37.700668, 55.553071],\n            [37.700579, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700579, 55.553161],\n            [37.700579, 55.553251],\n            [37.700668, 55.553251],\n            [37.700668, 55.553161],\n            [37.700579, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700579, 55.553251],\n            [37.700579, 55.553341],\n            [37.700668, 55.553341],\n            [37.700668, 55.553251],\n            [37.700579, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700579, 55.553341],\n            [37.700579, 55.553431],\n            [37.700668, 55.553431],\n            [37.700668, 55.553341],\n            [37.700579, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700579, 55.553431],\n            [37.700579, 55.55352],\n            [37.700668, 55.55352],\n            [37.700668, 55.553431],\n            [37.700579, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700579, 55.55352],\n            [37.700579, 55.55361],\n            [37.700668, 55.55361],\n            [37.700668, 55.55352],\n            [37.700579, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700579, 55.55361],\n            [37.700579, 55.5537],\n            [37.700668, 55.5537],\n            [37.700668, 55.55361],\n            [37.700579, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700579, 55.5537],\n            [37.700579, 55.55379],\n            [37.700668, 55.55379],\n            [37.700668, 55.5537],\n            [37.700579, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700579, 55.55379],\n            [37.700579, 55.55388],\n            [37.700668, 55.55388],\n            [37.700668, 55.55379],\n            [37.700579, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700579, 55.55388],\n            [37.700579, 55.55397],\n            [37.700668, 55.55397],\n            [37.700668, 55.55388],\n            [37.700579, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700668, 55.552981],\n            [37.700668, 55.553071],\n            [37.700758, 55.553071],\n            [37.700758, 55.552981],\n            [37.700668, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700668, 55.553071],\n            [37.700668, 55.553161],\n            [37.700758, 55.553161],\n            [37.700758, 55.553071],\n            [37.700668, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700668, 55.553161],\n            [37.700668, 55.553251],\n            [37.700758, 55.553251],\n            [37.700758, 55.553161],\n            [37.700668, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700668, 55.553251],\n            [37.700668, 55.553341],\n            [37.700758, 55.553341],\n            [37.700758, 55.553251],\n            [37.700668, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700668, 55.553341],\n            [37.700668, 55.553431],\n            [37.700758, 55.553431],\n            [37.700758, 55.553341],\n            [37.700668, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700668, 55.553431],\n            [37.700668, 55.55352],\n            [37.700758, 55.55352],\n            [37.700758, 55.553431],\n            [37.700668, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700668, 55.55352],\n            [37.700668, 55.55361],\n            [37.700758, 55.55361],\n            [37.700758, 55.55352],\n            [37.700668, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700668, 55.55361],\n            [37.700668, 55.5537],\n            [37.700758, 55.5537],\n            [37.700758, 55.55361],\n            [37.700668, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700668, 55.5537],\n            [37.700668, 55.55379],\n            [37.700758, 55.55379],\n            [37.700758, 55.5537],\n            [37.700668, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700668, 55.55379],\n            [37.700668, 55.55388],\n            [37.700758, 55.55388],\n            [37.700758, 55.55379],\n            [37.700668, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700668, 55.55388],\n            [37.700668, 55.55397],\n            [37.700758, 55.55397],\n            [37.700758, 55.55388],\n            [37.700668, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700758, 55.552981],\n            [37.700758, 55.553071],\n            [37.700848, 55.553071],\n            [37.700848, 55.552981],\n            [37.700758, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700758, 55.553071],\n            [37.700758, 55.553161],\n            [37.700848, 55.553161],\n            [37.700848, 55.553071],\n            [37.700758, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700758, 55.553161],\n            [37.700758, 55.553251],\n            [37.700848, 55.553251],\n            [37.700848, 55.553161],\n            [37.700758, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700758, 55.553251],\n            [37.700758, 55.553341],\n            [37.700848, 55.553341],\n            [37.700848, 55.553251],\n            [37.700758, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700758, 55.553341],\n            [37.700758, 55.553431],\n            [37.700848, 55.553431],\n            [37.700848, 55.553341],\n            [37.700758, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700758, 55.553431],\n            [37.700758, 55.55352],\n            [37.700848, 55.55352],\n            [37.700848, 55.553431],\n            [37.700758, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700758, 55.55352],\n            [37.700758, 55.55361],\n            [37.700848, 55.55361],\n            [37.700848, 55.55352],\n            [37.700758, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700758, 55.55361],\n            [37.700758, 55.5537],\n            [37.700848, 55.5537],\n            [37.700848, 55.55361],\n            [37.700758, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700758, 55.5537],\n            [37.700758, 55.55379],\n            [37.700848, 55.55379],\n            [37.700848, 55.5537],\n            [37.700758, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700758, 55.55379],\n            [37.700758, 55.55388],\n            [37.700848, 55.55388],\n            [37.700848, 55.55379],\n            [37.700758, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700758, 55.55388],\n            [37.700758, 55.55397],\n            [37.700848, 55.55397],\n            [37.700848, 55.55388],\n            [37.700758, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700848, 55.552981],\n            [37.700848, 55.553071],\n            [37.700938, 55.553071],\n            [37.700938, 55.552981],\n            [37.700848, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700848, 55.553071],\n            [37.700848, 55.553161],\n            [37.700938, 55.553161],\n            [37.700938, 55.553071],\n            [37.700848, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700848, 55.553161],\n            [37.700848, 55.553251],\n            [37.700938, 55.553251],\n            [37.700938, 55.553161],\n            [37.700848, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700848, 55.553251],\n            [37.700848, 55.553341],\n            [37.700938, 55.553341],\n            [37.700938, 55.553251],\n            [37.700848, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700848, 55.553341],\n            [37.700848, 55.553431],\n            [37.700938, 55.553431],\n            [37.700938, 55.553341],\n            [37.700848, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700848, 55.553431],\n            [37.700848, 55.55352],\n            [37.700938, 55.55352],\n            [37.700938, 55.553431],\n            [37.700848, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700848, 55.55352],\n            [37.700848, 55.55361],\n            [37.700938, 55.55361],\n            [37.700938, 55.55352],\n            [37.700848, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700848, 55.55361],\n            [37.700848, 55.5537],\n            [37.700938, 55.5537],\n            [37.700938, 55.55361],\n            [37.700848, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700848, 55.5537],\n            [37.700848, 55.55379],\n            [37.700938, 55.55379],\n            [37.700938, 55.5537],\n            [37.700848, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700848, 55.55379],\n            [37.700848, 55.55388],\n            [37.700938, 55.55388],\n            [37.700938, 55.55379],\n            [37.700848, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700848, 55.55388],\n            [37.700848, 55.55397],\n            [37.700938, 55.55397],\n            [37.700938, 55.55388],\n            [37.700848, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700848, 55.55397],\n            [37.700848, 55.55406],\n            [37.700938, 55.55406],\n            [37.700938, 55.55397],\n            [37.700848, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700938, 55.552891],\n            [37.700938, 55.552981],\n            [37.701028, 55.552981],\n            [37.701028, 55.552891],\n            [37.700938, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700938, 55.552981],\n            [37.700938, 55.553071],\n            [37.701028, 55.553071],\n            [37.701028, 55.552981],\n            [37.700938, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700938, 55.553071],\n            [37.700938, 55.553161],\n            [37.701028, 55.553161],\n            [37.701028, 55.553071],\n            [37.700938, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700938, 55.553161],\n            [37.700938, 55.553251],\n            [37.701028, 55.553251],\n            [37.701028, 55.553161],\n            [37.700938, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700938, 55.553251],\n            [37.700938, 55.553341],\n            [37.701028, 55.553341],\n            [37.701028, 55.553251],\n            [37.700938, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700938, 55.553341],\n            [37.700938, 55.553431],\n            [37.701028, 55.553431],\n            [37.701028, 55.553341],\n            [37.700938, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700938, 55.553431],\n            [37.700938, 55.55352],\n            [37.701028, 55.55352],\n            [37.701028, 55.553431],\n            [37.700938, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700938, 55.55352],\n            [37.700938, 55.55361],\n            [37.701028, 55.55361],\n            [37.701028, 55.55352],\n            [37.700938, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700938, 55.55361],\n            [37.700938, 55.5537],\n            [37.701028, 55.5537],\n            [37.701028, 55.55361],\n            [37.700938, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700938, 55.5537],\n            [37.700938, 55.55379],\n            [37.701028, 55.55379],\n            [37.701028, 55.5537],\n            [37.700938, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700938, 55.55379],\n            [37.700938, 55.55388],\n            [37.701028, 55.55388],\n            [37.701028, 55.55379],\n            [37.700938, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700938, 55.55388],\n            [37.700938, 55.55397],\n            [37.701028, 55.55397],\n            [37.701028, 55.55388],\n            [37.700938, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.700938, 55.55397],\n            [37.700938, 55.55406],\n            [37.701028, 55.55406],\n            [37.701028, 55.55397],\n            [37.700938, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701028, 55.552891],\n            [37.701028, 55.552981],\n            [37.701118, 55.552981],\n            [37.701118, 55.552891],\n            [37.701028, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701028, 55.552981],\n            [37.701028, 55.553071],\n            [37.701118, 55.553071],\n            [37.701118, 55.552981],\n            [37.701028, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701028, 55.553071],\n            [37.701028, 55.553161],\n            [37.701118, 55.553161],\n            [37.701118, 55.553071],\n            [37.701028, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701028, 55.553161],\n            [37.701028, 55.553251],\n            [37.701118, 55.553251],\n            [37.701118, 55.553161],\n            [37.701028, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701028, 55.553251],\n            [37.701028, 55.553341],\n            [37.701118, 55.553341],\n            [37.701118, 55.553251],\n            [37.701028, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701028, 55.553341],\n            [37.701028, 55.553431],\n            [37.701118, 55.553431],\n            [37.701118, 55.553341],\n            [37.701028, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701028, 55.553431],\n            [37.701028, 55.55352],\n            [37.701118, 55.55352],\n            [37.701118, 55.553431],\n            [37.701028, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701028, 55.55352],\n            [37.701028, 55.55361],\n            [37.701118, 55.55361],\n            [37.701118, 55.55352],\n            [37.701028, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701028, 55.55361],\n            [37.701028, 55.5537],\n            [37.701118, 55.5537],\n            [37.701118, 55.55361],\n            [37.701028, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701028, 55.5537],\n            [37.701028, 55.55379],\n            [37.701118, 55.55379],\n            [37.701118, 55.5537],\n            [37.701028, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701028, 55.55379],\n            [37.701028, 55.55388],\n            [37.701118, 55.55388],\n            [37.701118, 55.55379],\n            [37.701028, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701028, 55.55388],\n            [37.701028, 55.55397],\n            [37.701118, 55.55397],\n            [37.701118, 55.55388],\n            [37.701028, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701028, 55.55397],\n            [37.701028, 55.55406],\n            [37.701118, 55.55406],\n            [37.701118, 55.55397],\n            [37.701028, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701118, 55.552891],\n            [37.701118, 55.552981],\n            [37.701208, 55.552981],\n            [37.701208, 55.552891],\n            [37.701118, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701118, 55.552981],\n            [37.701118, 55.553071],\n            [37.701208, 55.553071],\n            [37.701208, 55.552981],\n            [37.701118, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701118, 55.553071],\n            [37.701118, 55.553161],\n            [37.701208, 55.553161],\n            [37.701208, 55.553071],\n            [37.701118, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701118, 55.553161],\n            [37.701118, 55.553251],\n            [37.701208, 55.553251],\n            [37.701208, 55.553161],\n            [37.701118, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701118, 55.553251],\n            [37.701118, 55.553341],\n            [37.701208, 55.553341],\n            [37.701208, 55.553251],\n            [37.701118, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701118, 55.553341],\n            [37.701118, 55.553431],\n            [37.701208, 55.553431],\n            [37.701208, 55.553341],\n            [37.701118, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701118, 55.553431],\n            [37.701118, 55.55352],\n            [37.701208, 55.55352],\n            [37.701208, 55.553431],\n            [37.701118, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701118, 55.55352],\n            [37.701118, 55.55361],\n            [37.701208, 55.55361],\n            [37.701208, 55.55352],\n            [37.701118, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701118, 55.55361],\n            [37.701118, 55.5537],\n            [37.701208, 55.5537],\n            [37.701208, 55.55361],\n            [37.701118, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701118, 55.5537],\n            [37.701118, 55.55379],\n            [37.701208, 55.55379],\n            [37.701208, 55.5537],\n            [37.701118, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701118, 55.55379],\n            [37.701118, 55.55388],\n            [37.701208, 55.55388],\n            [37.701208, 55.55379],\n            [37.701118, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701118, 55.55388],\n            [37.701118, 55.55397],\n            [37.701208, 55.55397],\n            [37.701208, 55.55388],\n            [37.701118, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701118, 55.55397],\n            [37.701118, 55.55406],\n            [37.701208, 55.55406],\n            [37.701208, 55.55397],\n            [37.701118, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701208, 55.552801],\n            [37.701208, 55.552891],\n            [37.701298, 55.552891],\n            [37.701298, 55.552801],\n            [37.701208, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701208, 55.552891],\n            [37.701208, 55.552981],\n            [37.701298, 55.552981],\n            [37.701298, 55.552891],\n            [37.701208, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701208, 55.552981],\n            [37.701208, 55.553071],\n            [37.701298, 55.553071],\n            [37.701298, 55.552981],\n            [37.701208, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701208, 55.553071],\n            [37.701208, 55.553161],\n            [37.701298, 55.553161],\n            [37.701298, 55.553071],\n            [37.701208, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701208, 55.553161],\n            [37.701208, 55.553251],\n            [37.701298, 55.553251],\n            [37.701298, 55.553161],\n            [37.701208, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701208, 55.553251],\n            [37.701208, 55.553341],\n            [37.701298, 55.553341],\n            [37.701298, 55.553251],\n            [37.701208, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701208, 55.553341],\n            [37.701208, 55.553431],\n            [37.701298, 55.553431],\n            [37.701298, 55.553341],\n            [37.701208, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701208, 55.553431],\n            [37.701208, 55.55352],\n            [37.701298, 55.55352],\n            [37.701298, 55.553431],\n            [37.701208, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701208, 55.55352],\n            [37.701208, 55.55361],\n            [37.701298, 55.55361],\n            [37.701298, 55.55352],\n            [37.701208, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701208, 55.55361],\n            [37.701208, 55.5537],\n            [37.701298, 55.5537],\n            [37.701298, 55.55361],\n            [37.701208, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701208, 55.5537],\n            [37.701208, 55.55379],\n            [37.701298, 55.55379],\n            [37.701298, 55.5537],\n            [37.701208, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701208, 55.55379],\n            [37.701208, 55.55388],\n            [37.701298, 55.55388],\n            [37.701298, 55.55379],\n            [37.701208, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701208, 55.55388],\n            [37.701208, 55.55397],\n            [37.701298, 55.55397],\n            [37.701298, 55.55388],\n            [37.701208, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701208, 55.55397],\n            [37.701208, 55.55406],\n            [37.701298, 55.55406],\n            [37.701298, 55.55397],\n            [37.701208, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701208, 55.55406],\n            [37.701208, 55.55415],\n            [37.701298, 55.55415],\n            [37.701298, 55.55406],\n            [37.701208, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701298, 55.552801],\n            [37.701298, 55.552891],\n            [37.701388, 55.552891],\n            [37.701388, 55.552801],\n            [37.701298, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701298, 55.552891],\n            [37.701298, 55.552981],\n            [37.701388, 55.552981],\n            [37.701388, 55.552891],\n            [37.701298, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701298, 55.552981],\n            [37.701298, 55.553071],\n            [37.701388, 55.553071],\n            [37.701388, 55.552981],\n            [37.701298, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701298, 55.553071],\n            [37.701298, 55.553161],\n            [37.701388, 55.553161],\n            [37.701388, 55.553071],\n            [37.701298, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701298, 55.553161],\n            [37.701298, 55.553251],\n            [37.701388, 55.553251],\n            [37.701388, 55.553161],\n            [37.701298, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701298, 55.553251],\n            [37.701298, 55.553341],\n            [37.701388, 55.553341],\n            [37.701388, 55.553251],\n            [37.701298, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701298, 55.553341],\n            [37.701298, 55.553431],\n            [37.701388, 55.553431],\n            [37.701388, 55.553341],\n            [37.701298, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701298, 55.553431],\n            [37.701298, 55.55352],\n            [37.701388, 55.55352],\n            [37.701388, 55.553431],\n            [37.701298, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701298, 55.55352],\n            [37.701298, 55.55361],\n            [37.701388, 55.55361],\n            [37.701388, 55.55352],\n            [37.701298, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701298, 55.55361],\n            [37.701298, 55.5537],\n            [37.701388, 55.5537],\n            [37.701388, 55.55361],\n            [37.701298, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701298, 55.5537],\n            [37.701298, 55.55379],\n            [37.701388, 55.55379],\n            [37.701388, 55.5537],\n            [37.701298, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701298, 55.55379],\n            [37.701298, 55.55388],\n            [37.701388, 55.55388],\n            [37.701388, 55.55379],\n            [37.701298, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701298, 55.55388],\n            [37.701298, 55.55397],\n            [37.701388, 55.55397],\n            [37.701388, 55.55388],\n            [37.701298, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701298, 55.55397],\n            [37.701298, 55.55406],\n            [37.701388, 55.55406],\n            [37.701388, 55.55397],\n            [37.701298, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701298, 55.55406],\n            [37.701298, 55.55415],\n            [37.701388, 55.55415],\n            [37.701388, 55.55406],\n            [37.701298, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701388, 55.552801],\n            [37.701388, 55.552891],\n            [37.701478, 55.552891],\n            [37.701478, 55.552801],\n            [37.701388, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701388, 55.552891],\n            [37.701388, 55.552981],\n            [37.701478, 55.552981],\n            [37.701478, 55.552891],\n            [37.701388, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701388, 55.552981],\n            [37.701388, 55.553071],\n            [37.701478, 55.553071],\n            [37.701478, 55.552981],\n            [37.701388, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701388, 55.553071],\n            [37.701388, 55.553161],\n            [37.701478, 55.553161],\n            [37.701478, 55.553071],\n            [37.701388, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701388, 55.553161],\n            [37.701388, 55.553251],\n            [37.701478, 55.553251],\n            [37.701478, 55.553161],\n            [37.701388, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701388, 55.553251],\n            [37.701388, 55.553341],\n            [37.701478, 55.553341],\n            [37.701478, 55.553251],\n            [37.701388, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701388, 55.553341],\n            [37.701388, 55.553431],\n            [37.701478, 55.553431],\n            [37.701478, 55.553341],\n            [37.701388, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701388, 55.553431],\n            [37.701388, 55.55352],\n            [37.701478, 55.55352],\n            [37.701478, 55.553431],\n            [37.701388, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701388, 55.55352],\n            [37.701388, 55.55361],\n            [37.701478, 55.55361],\n            [37.701478, 55.55352],\n            [37.701388, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701388, 55.55361],\n            [37.701388, 55.5537],\n            [37.701478, 55.5537],\n            [37.701478, 55.55361],\n            [37.701388, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701388, 55.5537],\n            [37.701388, 55.55379],\n            [37.701478, 55.55379],\n            [37.701478, 55.5537],\n            [37.701388, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701388, 55.55379],\n            [37.701388, 55.55388],\n            [37.701478, 55.55388],\n            [37.701478, 55.55379],\n            [37.701388, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701388, 55.55388],\n            [37.701388, 55.55397],\n            [37.701478, 55.55397],\n            [37.701478, 55.55388],\n            [37.701388, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701388, 55.55397],\n            [37.701388, 55.55406],\n            [37.701478, 55.55406],\n            [37.701478, 55.55397],\n            [37.701388, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701388, 55.55406],\n            [37.701388, 55.55415],\n            [37.701478, 55.55415],\n            [37.701478, 55.55406],\n            [37.701388, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701478, 55.552801],\n            [37.701478, 55.552891],\n            [37.701568, 55.552891],\n            [37.701568, 55.552801],\n            [37.701478, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701478, 55.552891],\n            [37.701478, 55.552981],\n            [37.701568, 55.552981],\n            [37.701568, 55.552891],\n            [37.701478, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701478, 55.552981],\n            [37.701478, 55.553071],\n            [37.701568, 55.553071],\n            [37.701568, 55.552981],\n            [37.701478, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701478, 55.553071],\n            [37.701478, 55.553161],\n            [37.701568, 55.553161],\n            [37.701568, 55.553071],\n            [37.701478, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701478, 55.553161],\n            [37.701478, 55.553251],\n            [37.701568, 55.553251],\n            [37.701568, 55.553161],\n            [37.701478, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701478, 55.553251],\n            [37.701478, 55.553341],\n            [37.701568, 55.553341],\n            [37.701568, 55.553251],\n            [37.701478, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701478, 55.553341],\n            [37.701478, 55.553431],\n            [37.701568, 55.553431],\n            [37.701568, 55.553341],\n            [37.701478, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701478, 55.553431],\n            [37.701478, 55.55352],\n            [37.701568, 55.55352],\n            [37.701568, 55.553431],\n            [37.701478, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701478, 55.55352],\n            [37.701478, 55.55361],\n            [37.701568, 55.55361],\n            [37.701568, 55.55352],\n            [37.701478, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701478, 55.55361],\n            [37.701478, 55.5537],\n            [37.701568, 55.5537],\n            [37.701568, 55.55361],\n            [37.701478, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701478, 55.5537],\n            [37.701478, 55.55379],\n            [37.701568, 55.55379],\n            [37.701568, 55.5537],\n            [37.701478, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701478, 55.55379],\n            [37.701478, 55.55388],\n            [37.701568, 55.55388],\n            [37.701568, 55.55379],\n            [37.701478, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701478, 55.55388],\n            [37.701478, 55.55397],\n            [37.701568, 55.55397],\n            [37.701568, 55.55388],\n            [37.701478, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701478, 55.55397],\n            [37.701478, 55.55406],\n            [37.701568, 55.55406],\n            [37.701568, 55.55397],\n            [37.701478, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701478, 55.55406],\n            [37.701478, 55.55415],\n            [37.701568, 55.55415],\n            [37.701568, 55.55406],\n            [37.701478, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701478, 55.55415],\n            [37.701478, 55.55424],\n            [37.701568, 55.55424],\n            [37.701568, 55.55415],\n            [37.701478, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701568, 55.552711],\n            [37.701568, 55.552801],\n            [37.701658, 55.552801],\n            [37.701658, 55.552711],\n            [37.701568, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701568, 55.552801],\n            [37.701568, 55.552891],\n            [37.701658, 55.552891],\n            [37.701658, 55.552801],\n            [37.701568, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701568, 55.552891],\n            [37.701568, 55.552981],\n            [37.701658, 55.552981],\n            [37.701658, 55.552891],\n            [37.701568, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701568, 55.552981],\n            [37.701568, 55.553071],\n            [37.701658, 55.553071],\n            [37.701658, 55.552981],\n            [37.701568, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701568, 55.553071],\n            [37.701568, 55.553161],\n            [37.701658, 55.553161],\n            [37.701658, 55.553071],\n            [37.701568, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701568, 55.553161],\n            [37.701568, 55.553251],\n            [37.701658, 55.553251],\n            [37.701658, 55.553161],\n            [37.701568, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701568, 55.553251],\n            [37.701568, 55.553341],\n            [37.701658, 55.553341],\n            [37.701658, 55.553251],\n            [37.701568, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701568, 55.553341],\n            [37.701568, 55.553431],\n            [37.701658, 55.553431],\n            [37.701658, 55.553341],\n            [37.701568, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701568, 55.553431],\n            [37.701568, 55.55352],\n            [37.701658, 55.55352],\n            [37.701658, 55.553431],\n            [37.701568, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701568, 55.55352],\n            [37.701568, 55.55361],\n            [37.701658, 55.55361],\n            [37.701658, 55.55352],\n            [37.701568, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701568, 55.55361],\n            [37.701568, 55.5537],\n            [37.701658, 55.5537],\n            [37.701658, 55.55361],\n            [37.701568, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701568, 55.5537],\n            [37.701568, 55.55379],\n            [37.701658, 55.55379],\n            [37.701658, 55.5537],\n            [37.701568, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701568, 55.55379],\n            [37.701568, 55.55388],\n            [37.701658, 55.55388],\n            [37.701658, 55.55379],\n            [37.701568, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701568, 55.55388],\n            [37.701568, 55.55397],\n            [37.701658, 55.55397],\n            [37.701658, 55.55388],\n            [37.701568, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701568, 55.55397],\n            [37.701568, 55.55406],\n            [37.701658, 55.55406],\n            [37.701658, 55.55397],\n            [37.701568, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701568, 55.55406],\n            [37.701568, 55.55415],\n            [37.701658, 55.55415],\n            [37.701658, 55.55406],\n            [37.701568, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701568, 55.55415],\n            [37.701568, 55.55424],\n            [37.701658, 55.55424],\n            [37.701658, 55.55415],\n            [37.701568, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701658, 55.552711],\n            [37.701658, 55.552801],\n            [37.701748, 55.552801],\n            [37.701748, 55.552711],\n            [37.701658, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701658, 55.552801],\n            [37.701658, 55.552891],\n            [37.701748, 55.552891],\n            [37.701748, 55.552801],\n            [37.701658, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701658, 55.552891],\n            [37.701658, 55.552981],\n            [37.701748, 55.552981],\n            [37.701748, 55.552891],\n            [37.701658, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701658, 55.552981],\n            [37.701658, 55.553071],\n            [37.701748, 55.553071],\n            [37.701748, 55.552981],\n            [37.701658, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701658, 55.553071],\n            [37.701658, 55.553161],\n            [37.701748, 55.553161],\n            [37.701748, 55.553071],\n            [37.701658, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701658, 55.553161],\n            [37.701658, 55.553251],\n            [37.701748, 55.553251],\n            [37.701748, 55.553161],\n            [37.701658, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701658, 55.553251],\n            [37.701658, 55.553341],\n            [37.701748, 55.553341],\n            [37.701748, 55.553251],\n            [37.701658, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701658, 55.553341],\n            [37.701658, 55.553431],\n            [37.701748, 55.553431],\n            [37.701748, 55.553341],\n            [37.701658, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701658, 55.553431],\n            [37.701658, 55.55352],\n            [37.701748, 55.55352],\n            [37.701748, 55.553431],\n            [37.701658, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701658, 55.55352],\n            [37.701658, 55.55361],\n            [37.701748, 55.55361],\n            [37.701748, 55.55352],\n            [37.701658, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701658, 55.55361],\n            [37.701658, 55.5537],\n            [37.701748, 55.5537],\n            [37.701748, 55.55361],\n            [37.701658, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701658, 55.5537],\n            [37.701658, 55.55379],\n            [37.701748, 55.55379],\n            [37.701748, 55.5537],\n            [37.701658, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701658, 55.55379],\n            [37.701658, 55.55388],\n            [37.701748, 55.55388],\n            [37.701748, 55.55379],\n            [37.701658, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701658, 55.55388],\n            [37.701658, 55.55397],\n            [37.701748, 55.55397],\n            [37.701748, 55.55388],\n            [37.701658, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701658, 55.55397],\n            [37.701658, 55.55406],\n            [37.701748, 55.55406],\n            [37.701748, 55.55397],\n            [37.701658, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701658, 55.55406],\n            [37.701658, 55.55415],\n            [37.701748, 55.55415],\n            [37.701748, 55.55406],\n            [37.701658, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701658, 55.55415],\n            [37.701658, 55.55424],\n            [37.701748, 55.55424],\n            [37.701748, 55.55415],\n            [37.701658, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701748, 55.552711],\n            [37.701748, 55.552801],\n            [37.701838, 55.552801],\n            [37.701838, 55.552711],\n            [37.701748, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701748, 55.552801],\n            [37.701748, 55.552891],\n            [37.701838, 55.552891],\n            [37.701838, 55.552801],\n            [37.701748, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701748, 55.552891],\n            [37.701748, 55.552981],\n            [37.701838, 55.552981],\n            [37.701838, 55.552891],\n            [37.701748, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701748, 55.552981],\n            [37.701748, 55.553071],\n            [37.701838, 55.553071],\n            [37.701838, 55.552981],\n            [37.701748, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701748, 55.553071],\n            [37.701748, 55.553161],\n            [37.701838, 55.553161],\n            [37.701838, 55.553071],\n            [37.701748, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701748, 55.553161],\n            [37.701748, 55.553251],\n            [37.701838, 55.553251],\n            [37.701838, 55.553161],\n            [37.701748, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701748, 55.553251],\n            [37.701748, 55.553341],\n            [37.701838, 55.553341],\n            [37.701838, 55.553251],\n            [37.701748, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701748, 55.553341],\n            [37.701748, 55.553431],\n            [37.701838, 55.553431],\n            [37.701838, 55.553341],\n            [37.701748, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701748, 55.553431],\n            [37.701748, 55.55352],\n            [37.701838, 55.55352],\n            [37.701838, 55.553431],\n            [37.701748, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701748, 55.55352],\n            [37.701748, 55.55361],\n            [37.701838, 55.55361],\n            [37.701838, 55.55352],\n            [37.701748, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701748, 55.55361],\n            [37.701748, 55.5537],\n            [37.701838, 55.5537],\n            [37.701838, 55.55361],\n            [37.701748, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701748, 55.5537],\n            [37.701748, 55.55379],\n            [37.701838, 55.55379],\n            [37.701838, 55.5537],\n            [37.701748, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701748, 55.55379],\n            [37.701748, 55.55388],\n            [37.701838, 55.55388],\n            [37.701838, 55.55379],\n            [37.701748, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701748, 55.55388],\n            [37.701748, 55.55397],\n            [37.701838, 55.55397],\n            [37.701838, 55.55388],\n            [37.701748, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701748, 55.55397],\n            [37.701748, 55.55406],\n            [37.701838, 55.55406],\n            [37.701838, 55.55397],\n            [37.701748, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701748, 55.55406],\n            [37.701748, 55.55415],\n            [37.701838, 55.55415],\n            [37.701838, 55.55406],\n            [37.701748, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701748, 55.55415],\n            [37.701748, 55.55424],\n            [37.701838, 55.55424],\n            [37.701838, 55.55415],\n            [37.701748, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701838, 55.552711],\n            [37.701838, 55.552801],\n            [37.701928, 55.552801],\n            [37.701928, 55.552711],\n            [37.701838, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701838, 55.552801],\n            [37.701838, 55.552891],\n            [37.701928, 55.552891],\n            [37.701928, 55.552801],\n            [37.701838, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701838, 55.552891],\n            [37.701838, 55.552981],\n            [37.701928, 55.552981],\n            [37.701928, 55.552891],\n            [37.701838, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701838, 55.552981],\n            [37.701838, 55.553071],\n            [37.701928, 55.553071],\n            [37.701928, 55.552981],\n            [37.701838, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701838, 55.553071],\n            [37.701838, 55.553161],\n            [37.701928, 55.553161],\n            [37.701928, 55.553071],\n            [37.701838, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701838, 55.553161],\n            [37.701838, 55.553251],\n            [37.701928, 55.553251],\n            [37.701928, 55.553161],\n            [37.701838, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701838, 55.553251],\n            [37.701838, 55.553341],\n            [37.701928, 55.553341],\n            [37.701928, 55.553251],\n            [37.701838, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701838, 55.553341],\n            [37.701838, 55.553431],\n            [37.701928, 55.553431],\n            [37.701928, 55.553341],\n            [37.701838, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701838, 55.553431],\n            [37.701838, 55.55352],\n            [37.701928, 55.55352],\n            [37.701928, 55.553431],\n            [37.701838, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701838, 55.55352],\n            [37.701838, 55.55361],\n            [37.701928, 55.55361],\n            [37.701928, 55.55352],\n            [37.701838, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701838, 55.55361],\n            [37.701838, 55.5537],\n            [37.701928, 55.5537],\n            [37.701928, 55.55361],\n            [37.701838, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701838, 55.5537],\n            [37.701838, 55.55379],\n            [37.701928, 55.55379],\n            [37.701928, 55.5537],\n            [37.701838, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701838, 55.55379],\n            [37.701838, 55.55388],\n            [37.701928, 55.55388],\n            [37.701928, 55.55379],\n            [37.701838, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701838, 55.55388],\n            [37.701838, 55.55397],\n            [37.701928, 55.55397],\n            [37.701928, 55.55388],\n            [37.701838, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701838, 55.55397],\n            [37.701838, 55.55406],\n            [37.701928, 55.55406],\n            [37.701928, 55.55397],\n            [37.701838, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701838, 55.55406],\n            [37.701838, 55.55415],\n            [37.701928, 55.55415],\n            [37.701928, 55.55406],\n            [37.701838, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701838, 55.55415],\n            [37.701838, 55.55424],\n            [37.701928, 55.55424],\n            [37.701928, 55.55415],\n            [37.701838, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701838, 55.55424],\n            [37.701838, 55.55433],\n            [37.701928, 55.55433],\n            [37.701928, 55.55424],\n            [37.701838, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.552621],\n            [37.701928, 55.552711],\n            [37.702017, 55.552711],\n            [37.702017, 55.552621],\n            [37.701928, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.552711],\n            [37.701928, 55.552801],\n            [37.702017, 55.552801],\n            [37.702017, 55.552711],\n            [37.701928, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.552801],\n            [37.701928, 55.552891],\n            [37.702017, 55.552891],\n            [37.702017, 55.552801],\n            [37.701928, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.552891],\n            [37.701928, 55.552981],\n            [37.702017, 55.552981],\n            [37.702017, 55.552891],\n            [37.701928, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.552981],\n            [37.701928, 55.553071],\n            [37.702017, 55.553071],\n            [37.702017, 55.552981],\n            [37.701928, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.553071],\n            [37.701928, 55.553161],\n            [37.702017, 55.553161],\n            [37.702017, 55.553071],\n            [37.701928, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.553161],\n            [37.701928, 55.553251],\n            [37.702017, 55.553251],\n            [37.702017, 55.553161],\n            [37.701928, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.553251],\n            [37.701928, 55.553341],\n            [37.702017, 55.553341],\n            [37.702017, 55.553251],\n            [37.701928, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.553341],\n            [37.701928, 55.553431],\n            [37.702017, 55.553431],\n            [37.702017, 55.553341],\n            [37.701928, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.553431],\n            [37.701928, 55.55352],\n            [37.702017, 55.55352],\n            [37.702017, 55.553431],\n            [37.701928, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.55352],\n            [37.701928, 55.55361],\n            [37.702017, 55.55361],\n            [37.702017, 55.55352],\n            [37.701928, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.55361],\n            [37.701928, 55.5537],\n            [37.702017, 55.5537],\n            [37.702017, 55.55361],\n            [37.701928, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.5537],\n            [37.701928, 55.55379],\n            [37.702017, 55.55379],\n            [37.702017, 55.5537],\n            [37.701928, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.55379],\n            [37.701928, 55.55388],\n            [37.702017, 55.55388],\n            [37.702017, 55.55379],\n            [37.701928, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.55388],\n            [37.701928, 55.55397],\n            [37.702017, 55.55397],\n            [37.702017, 55.55388],\n            [37.701928, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.55397],\n            [37.701928, 55.55406],\n            [37.702017, 55.55406],\n            [37.702017, 55.55397],\n            [37.701928, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.55406],\n            [37.701928, 55.55415],\n            [37.702017, 55.55415],\n            [37.702017, 55.55406],\n            [37.701928, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.55415],\n            [37.701928, 55.55424],\n            [37.702017, 55.55424],\n            [37.702017, 55.55415],\n            [37.701928, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.701928, 55.55424],\n            [37.701928, 55.55433],\n            [37.702017, 55.55433],\n            [37.702017, 55.55424],\n            [37.701928, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.552621],\n            [37.702017, 55.552711],\n            [37.702107, 55.552711],\n            [37.702107, 55.552621],\n            [37.702017, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.552711],\n            [37.702017, 55.552801],\n            [37.702107, 55.552801],\n            [37.702107, 55.552711],\n            [37.702017, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.552801],\n            [37.702017, 55.552891],\n            [37.702107, 55.552891],\n            [37.702107, 55.552801],\n            [37.702017, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.552891],\n            [37.702017, 55.552981],\n            [37.702107, 55.552981],\n            [37.702107, 55.552891],\n            [37.702017, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.552981],\n            [37.702017, 55.553071],\n            [37.702107, 55.553071],\n            [37.702107, 55.552981],\n            [37.702017, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.553071],\n            [37.702017, 55.553161],\n            [37.702107, 55.553161],\n            [37.702107, 55.553071],\n            [37.702017, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.553161],\n            [37.702017, 55.553251],\n            [37.702107, 55.553251],\n            [37.702107, 55.553161],\n            [37.702017, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.553251],\n            [37.702017, 55.553341],\n            [37.702107, 55.553341],\n            [37.702107, 55.553251],\n            [37.702017, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.553341],\n            [37.702017, 55.553431],\n            [37.702107, 55.553431],\n            [37.702107, 55.553341],\n            [37.702017, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.553431],\n            [37.702017, 55.55352],\n            [37.702107, 55.55352],\n            [37.702107, 55.553431],\n            [37.702017, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.55352],\n            [37.702017, 55.55361],\n            [37.702107, 55.55361],\n            [37.702107, 55.55352],\n            [37.702017, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.55361],\n            [37.702017, 55.5537],\n            [37.702107, 55.5537],\n            [37.702107, 55.55361],\n            [37.702017, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.5537],\n            [37.702017, 55.55379],\n            [37.702107, 55.55379],\n            [37.702107, 55.5537],\n            [37.702017, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.55379],\n            [37.702017, 55.55388],\n            [37.702107, 55.55388],\n            [37.702107, 55.55379],\n            [37.702017, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.55388],\n            [37.702017, 55.55397],\n            [37.702107, 55.55397],\n            [37.702107, 55.55388],\n            [37.702017, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.55397],\n            [37.702017, 55.55406],\n            [37.702107, 55.55406],\n            [37.702107, 55.55397],\n            [37.702017, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.55406],\n            [37.702017, 55.55415],\n            [37.702107, 55.55415],\n            [37.702107, 55.55406],\n            [37.702017, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.55415],\n            [37.702017, 55.55424],\n            [37.702107, 55.55424],\n            [37.702107, 55.55415],\n            [37.702017, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702017, 55.55424],\n            [37.702017, 55.55433],\n            [37.702107, 55.55433],\n            [37.702107, 55.55424],\n            [37.702017, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.552621],\n            [37.702107, 55.552711],\n            [37.702197, 55.552711],\n            [37.702197, 55.552621],\n            [37.702107, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.552711],\n            [37.702107, 55.552801],\n            [37.702197, 55.552801],\n            [37.702197, 55.552711],\n            [37.702107, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.552801],\n            [37.702107, 55.552891],\n            [37.702197, 55.552891],\n            [37.702197, 55.552801],\n            [37.702107, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.552891],\n            [37.702107, 55.552981],\n            [37.702197, 55.552981],\n            [37.702197, 55.552891],\n            [37.702107, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.552981],\n            [37.702107, 55.553071],\n            [37.702197, 55.553071],\n            [37.702197, 55.552981],\n            [37.702107, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.553071],\n            [37.702107, 55.553161],\n            [37.702197, 55.553161],\n            [37.702197, 55.553071],\n            [37.702107, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.553161],\n            [37.702107, 55.553251],\n            [37.702197, 55.553251],\n            [37.702197, 55.553161],\n            [37.702107, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.553251],\n            [37.702107, 55.553341],\n            [37.702197, 55.553341],\n            [37.702197, 55.553251],\n            [37.702107, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.553341],\n            [37.702107, 55.553431],\n            [37.702197, 55.553431],\n            [37.702197, 55.553341],\n            [37.702107, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.553431],\n            [37.702107, 55.55352],\n            [37.702197, 55.55352],\n            [37.702197, 55.553431],\n            [37.702107, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.55352],\n            [37.702107, 55.55361],\n            [37.702197, 55.55361],\n            [37.702197, 55.55352],\n            [37.702107, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.55361],\n            [37.702107, 55.5537],\n            [37.702197, 55.5537],\n            [37.702197, 55.55361],\n            [37.702107, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.5537],\n            [37.702107, 55.55379],\n            [37.702197, 55.55379],\n            [37.702197, 55.5537],\n            [37.702107, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.55379],\n            [37.702107, 55.55388],\n            [37.702197, 55.55388],\n            [37.702197, 55.55379],\n            [37.702107, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.55388],\n            [37.702107, 55.55397],\n            [37.702197, 55.55397],\n            [37.702197, 55.55388],\n            [37.702107, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.55397],\n            [37.702107, 55.55406],\n            [37.702197, 55.55406],\n            [37.702197, 55.55397],\n            [37.702107, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.55406],\n            [37.702107, 55.55415],\n            [37.702197, 55.55415],\n            [37.702197, 55.55406],\n            [37.702107, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.55415],\n            [37.702107, 55.55424],\n            [37.702197, 55.55424],\n            [37.702197, 55.55415],\n            [37.702107, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.55424],\n            [37.702107, 55.55433],\n            [37.702197, 55.55433],\n            [37.702197, 55.55424],\n            [37.702107, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702107, 55.55433],\n            [37.702107, 55.55442],\n            [37.702197, 55.55442],\n            [37.702197, 55.55433],\n            [37.702107, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.552621],\n            [37.702197, 55.552711],\n            [37.702287, 55.552711],\n            [37.702287, 55.552621],\n            [37.702197, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.552711],\n            [37.702197, 55.552801],\n            [37.702287, 55.552801],\n            [37.702287, 55.552711],\n            [37.702197, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.552801],\n            [37.702197, 55.552891],\n            [37.702287, 55.552891],\n            [37.702287, 55.552801],\n            [37.702197, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.552891],\n            [37.702197, 55.552981],\n            [37.702287, 55.552981],\n            [37.702287, 55.552891],\n            [37.702197, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.552981],\n            [37.702197, 55.553071],\n            [37.702287, 55.553071],\n            [37.702287, 55.552981],\n            [37.702197, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.553071],\n            [37.702197, 55.553161],\n            [37.702287, 55.553161],\n            [37.702287, 55.553071],\n            [37.702197, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.553161],\n            [37.702197, 55.553251],\n            [37.702287, 55.553251],\n            [37.702287, 55.553161],\n            [37.702197, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.553251],\n            [37.702197, 55.553341],\n            [37.702287, 55.553341],\n            [37.702287, 55.553251],\n            [37.702197, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.553341],\n            [37.702197, 55.553431],\n            [37.702287, 55.553431],\n            [37.702287, 55.553341],\n            [37.702197, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.553431],\n            [37.702197, 55.55352],\n            [37.702287, 55.55352],\n            [37.702287, 55.553431],\n            [37.702197, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.55352],\n            [37.702197, 55.55361],\n            [37.702287, 55.55361],\n            [37.702287, 55.55352],\n            [37.702197, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.55361],\n            [37.702197, 55.5537],\n            [37.702287, 55.5537],\n            [37.702287, 55.55361],\n            [37.702197, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.5537],\n            [37.702197, 55.55379],\n            [37.702287, 55.55379],\n            [37.702287, 55.5537],\n            [37.702197, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.55379],\n            [37.702197, 55.55388],\n            [37.702287, 55.55388],\n            [37.702287, 55.55379],\n            [37.702197, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.55388],\n            [37.702197, 55.55397],\n            [37.702287, 55.55397],\n            [37.702287, 55.55388],\n            [37.702197, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.55397],\n            [37.702197, 55.55406],\n            [37.702287, 55.55406],\n            [37.702287, 55.55397],\n            [37.702197, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.55406],\n            [37.702197, 55.55415],\n            [37.702287, 55.55415],\n            [37.702287, 55.55406],\n            [37.702197, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.55415],\n            [37.702197, 55.55424],\n            [37.702287, 55.55424],\n            [37.702287, 55.55415],\n            [37.702197, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.55424],\n            [37.702197, 55.55433],\n            [37.702287, 55.55433],\n            [37.702287, 55.55424],\n            [37.702197, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702197, 55.55433],\n            [37.702197, 55.55442],\n            [37.702287, 55.55442],\n            [37.702287, 55.55433],\n            [37.702197, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.552531],\n            [37.702287, 55.552621],\n            [37.702377, 55.552621],\n            [37.702377, 55.552531],\n            [37.702287, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.552621],\n            [37.702287, 55.552711],\n            [37.702377, 55.552711],\n            [37.702377, 55.552621],\n            [37.702287, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.552711],\n            [37.702287, 55.552801],\n            [37.702377, 55.552801],\n            [37.702377, 55.552711],\n            [37.702287, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.552801],\n            [37.702287, 55.552891],\n            [37.702377, 55.552891],\n            [37.702377, 55.552801],\n            [37.702287, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.552891],\n            [37.702287, 55.552981],\n            [37.702377, 55.552981],\n            [37.702377, 55.552891],\n            [37.702287, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.552981],\n            [37.702287, 55.553071],\n            [37.702377, 55.553071],\n            [37.702377, 55.552981],\n            [37.702287, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.553071],\n            [37.702287, 55.553161],\n            [37.702377, 55.553161],\n            [37.702377, 55.553071],\n            [37.702287, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.553161],\n            [37.702287, 55.553251],\n            [37.702377, 55.553251],\n            [37.702377, 55.553161],\n            [37.702287, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.553251],\n            [37.702287, 55.553341],\n            [37.702377, 55.553341],\n            [37.702377, 55.553251],\n            [37.702287, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.553341],\n            [37.702287, 55.553431],\n            [37.702377, 55.553431],\n            [37.702377, 55.553341],\n            [37.702287, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.553431],\n            [37.702287, 55.55352],\n            [37.702377, 55.55352],\n            [37.702377, 55.553431],\n            [37.702287, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.55352],\n            [37.702287, 55.55361],\n            [37.702377, 55.55361],\n            [37.702377, 55.55352],\n            [37.702287, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.55361],\n            [37.702287, 55.5537],\n            [37.702377, 55.5537],\n            [37.702377, 55.55361],\n            [37.702287, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.5537],\n            [37.702287, 55.55379],\n            [37.702377, 55.55379],\n            [37.702377, 55.5537],\n            [37.702287, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.55379],\n            [37.702287, 55.55388],\n            [37.702377, 55.55388],\n            [37.702377, 55.55379],\n            [37.702287, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.55388],\n            [37.702287, 55.55397],\n            [37.702377, 55.55397],\n            [37.702377, 55.55388],\n            [37.702287, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.55397],\n            [37.702287, 55.55406],\n            [37.702377, 55.55406],\n            [37.702377, 55.55397],\n            [37.702287, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.55406],\n            [37.702287, 55.55415],\n            [37.702377, 55.55415],\n            [37.702377, 55.55406],\n            [37.702287, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.55415],\n            [37.702287, 55.55424],\n            [37.702377, 55.55424],\n            [37.702377, 55.55415],\n            [37.702287, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.55424],\n            [37.702287, 55.55433],\n            [37.702377, 55.55433],\n            [37.702377, 55.55424],\n            [37.702287, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702287, 55.55433],\n            [37.702287, 55.55442],\n            [37.702377, 55.55442],\n            [37.702377, 55.55433],\n            [37.702287, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.552531],\n            [37.702377, 55.552621],\n            [37.702467, 55.552621],\n            [37.702467, 55.552531],\n            [37.702377, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.552621],\n            [37.702377, 55.552711],\n            [37.702467, 55.552711],\n            [37.702467, 55.552621],\n            [37.702377, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.552711],\n            [37.702377, 55.552801],\n            [37.702467, 55.552801],\n            [37.702467, 55.552711],\n            [37.702377, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.552801],\n            [37.702377, 55.552891],\n            [37.702467, 55.552891],\n            [37.702467, 55.552801],\n            [37.702377, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.552891],\n            [37.702377, 55.552981],\n            [37.702467, 55.552981],\n            [37.702467, 55.552891],\n            [37.702377, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.552981],\n            [37.702377, 55.553071],\n            [37.702467, 55.553071],\n            [37.702467, 55.552981],\n            [37.702377, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.553071],\n            [37.702377, 55.553161],\n            [37.702467, 55.553161],\n            [37.702467, 55.553071],\n            [37.702377, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.553161],\n            [37.702377, 55.553251],\n            [37.702467, 55.553251],\n            [37.702467, 55.553161],\n            [37.702377, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.553251],\n            [37.702377, 55.553341],\n            [37.702467, 55.553341],\n            [37.702467, 55.553251],\n            [37.702377, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.553341],\n            [37.702377, 55.553431],\n            [37.702467, 55.553431],\n            [37.702467, 55.553341],\n            [37.702377, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.553431],\n            [37.702377, 55.55352],\n            [37.702467, 55.55352],\n            [37.702467, 55.553431],\n            [37.702377, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.55352],\n            [37.702377, 55.55361],\n            [37.702467, 55.55361],\n            [37.702467, 55.55352],\n            [37.702377, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.55361],\n            [37.702377, 55.5537],\n            [37.702467, 55.5537],\n            [37.702467, 55.55361],\n            [37.702377, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.5537],\n            [37.702377, 55.55379],\n            [37.702467, 55.55379],\n            [37.702467, 55.5537],\n            [37.702377, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.55379],\n            [37.702377, 55.55388],\n            [37.702467, 55.55388],\n            [37.702467, 55.55379],\n            [37.702377, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.55388],\n            [37.702377, 55.55397],\n            [37.702467, 55.55397],\n            [37.702467, 55.55388],\n            [37.702377, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.55397],\n            [37.702377, 55.55406],\n            [37.702467, 55.55406],\n            [37.702467, 55.55397],\n            [37.702377, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.55406],\n            [37.702377, 55.55415],\n            [37.702467, 55.55415],\n            [37.702467, 55.55406],\n            [37.702377, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.55415],\n            [37.702377, 55.55424],\n            [37.702467, 55.55424],\n            [37.702467, 55.55415],\n            [37.702377, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.55424],\n            [37.702377, 55.55433],\n            [37.702467, 55.55433],\n            [37.702467, 55.55424],\n            [37.702377, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702377, 55.55433],\n            [37.702377, 55.55442],\n            [37.702467, 55.55442],\n            [37.702467, 55.55433],\n            [37.702377, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.552531],\n            [37.702467, 55.552621],\n            [37.702557, 55.552621],\n            [37.702557, 55.552531],\n            [37.702467, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.552621],\n            [37.702467, 55.552711],\n            [37.702557, 55.552711],\n            [37.702557, 55.552621],\n            [37.702467, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.552711],\n            [37.702467, 55.552801],\n            [37.702557, 55.552801],\n            [37.702557, 55.552711],\n            [37.702467, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.552801],\n            [37.702467, 55.552891],\n            [37.702557, 55.552891],\n            [37.702557, 55.552801],\n            [37.702467, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.552891],\n            [37.702467, 55.552981],\n            [37.702557, 55.552981],\n            [37.702557, 55.552891],\n            [37.702467, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.552981],\n            [37.702467, 55.553071],\n            [37.702557, 55.553071],\n            [37.702557, 55.552981],\n            [37.702467, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.553071],\n            [37.702467, 55.553161],\n            [37.702557, 55.553161],\n            [37.702557, 55.553071],\n            [37.702467, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.553161],\n            [37.702467, 55.553251],\n            [37.702557, 55.553251],\n            [37.702557, 55.553161],\n            [37.702467, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.553251],\n            [37.702467, 55.553341],\n            [37.702557, 55.553341],\n            [37.702557, 55.553251],\n            [37.702467, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.553341],\n            [37.702467, 55.553431],\n            [37.702557, 55.553431],\n            [37.702557, 55.553341],\n            [37.702467, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.553431],\n            [37.702467, 55.55352],\n            [37.702557, 55.55352],\n            [37.702557, 55.553431],\n            [37.702467, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.55352],\n            [37.702467, 55.55361],\n            [37.702557, 55.55361],\n            [37.702557, 55.55352],\n            [37.702467, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.55361],\n            [37.702467, 55.5537],\n            [37.702557, 55.5537],\n            [37.702557, 55.55361],\n            [37.702467, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.5537],\n            [37.702467, 55.55379],\n            [37.702557, 55.55379],\n            [37.702557, 55.5537],\n            [37.702467, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.55379],\n            [37.702467, 55.55388],\n            [37.702557, 55.55388],\n            [37.702557, 55.55379],\n            [37.702467, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.55388],\n            [37.702467, 55.55397],\n            [37.702557, 55.55397],\n            [37.702557, 55.55388],\n            [37.702467, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.55397],\n            [37.702467, 55.55406],\n            [37.702557, 55.55406],\n            [37.702557, 55.55397],\n            [37.702467, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.55406],\n            [37.702467, 55.55415],\n            [37.702557, 55.55415],\n            [37.702557, 55.55406],\n            [37.702467, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.55415],\n            [37.702467, 55.55424],\n            [37.702557, 55.55424],\n            [37.702557, 55.55415],\n            [37.702467, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.55424],\n            [37.702467, 55.55433],\n            [37.702557, 55.55433],\n            [37.702557, 55.55424],\n            [37.702467, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.55433],\n            [37.702467, 55.55442],\n            [37.702557, 55.55442],\n            [37.702557, 55.55433],\n            [37.702467, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702467, 55.55442],\n            [37.702467, 55.55451],\n            [37.702557, 55.55451],\n            [37.702557, 55.55442],\n            [37.702467, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.552531],\n            [37.702557, 55.552621],\n            [37.702647, 55.552621],\n            [37.702647, 55.552531],\n            [37.702557, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.552621],\n            [37.702557, 55.552711],\n            [37.702647, 55.552711],\n            [37.702647, 55.552621],\n            [37.702557, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.552711],\n            [37.702557, 55.552801],\n            [37.702647, 55.552801],\n            [37.702647, 55.552711],\n            [37.702557, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.552801],\n            [37.702557, 55.552891],\n            [37.702647, 55.552891],\n            [37.702647, 55.552801],\n            [37.702557, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.552891],\n            [37.702557, 55.552981],\n            [37.702647, 55.552981],\n            [37.702647, 55.552891],\n            [37.702557, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.552981],\n            [37.702557, 55.553071],\n            [37.702647, 55.553071],\n            [37.702647, 55.552981],\n            [37.702557, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.553071],\n            [37.702557, 55.553161],\n            [37.702647, 55.553161],\n            [37.702647, 55.553071],\n            [37.702557, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.553161],\n            [37.702557, 55.553251],\n            [37.702647, 55.553251],\n            [37.702647, 55.553161],\n            [37.702557, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.553251],\n            [37.702557, 55.553341],\n            [37.702647, 55.553341],\n            [37.702647, 55.553251],\n            [37.702557, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.553341],\n            [37.702557, 55.553431],\n            [37.702647, 55.553431],\n            [37.702647, 55.553341],\n            [37.702557, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.553431],\n            [37.702557, 55.55352],\n            [37.702647, 55.55352],\n            [37.702647, 55.553431],\n            [37.702557, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.55352],\n            [37.702557, 55.55361],\n            [37.702647, 55.55361],\n            [37.702647, 55.55352],\n            [37.702557, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.55361],\n            [37.702557, 55.5537],\n            [37.702647, 55.5537],\n            [37.702647, 55.55361],\n            [37.702557, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.5537],\n            [37.702557, 55.55379],\n            [37.702647, 55.55379],\n            [37.702647, 55.5537],\n            [37.702557, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.55379],\n            [37.702557, 55.55388],\n            [37.702647, 55.55388],\n            [37.702647, 55.55379],\n            [37.702557, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.55388],\n            [37.702557, 55.55397],\n            [37.702647, 55.55397],\n            [37.702647, 55.55388],\n            [37.702557, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.55397],\n            [37.702557, 55.55406],\n            [37.702647, 55.55406],\n            [37.702647, 55.55397],\n            [37.702557, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.55406],\n            [37.702557, 55.55415],\n            [37.702647, 55.55415],\n            [37.702647, 55.55406],\n            [37.702557, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.55415],\n            [37.702557, 55.55424],\n            [37.702647, 55.55424],\n            [37.702647, 55.55415],\n            [37.702557, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.55424],\n            [37.702557, 55.55433],\n            [37.702647, 55.55433],\n            [37.702647, 55.55424],\n            [37.702557, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.55433],\n            [37.702557, 55.55442],\n            [37.702647, 55.55442],\n            [37.702647, 55.55433],\n            [37.702557, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702557, 55.55442],\n            [37.702557, 55.55451],\n            [37.702647, 55.55451],\n            [37.702647, 55.55442],\n            [37.702557, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.552441],\n            [37.702647, 55.552531],\n            [37.702737, 55.552531],\n            [37.702737, 55.552441],\n            [37.702647, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.552531],\n            [37.702647, 55.552621],\n            [37.702737, 55.552621],\n            [37.702737, 55.552531],\n            [37.702647, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.552621],\n            [37.702647, 55.552711],\n            [37.702737, 55.552711],\n            [37.702737, 55.552621],\n            [37.702647, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.552711],\n            [37.702647, 55.552801],\n            [37.702737, 55.552801],\n            [37.702737, 55.552711],\n            [37.702647, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.552801],\n            [37.702647, 55.552891],\n            [37.702737, 55.552891],\n            [37.702737, 55.552801],\n            [37.702647, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.552891],\n            [37.702647, 55.552981],\n            [37.702737, 55.552981],\n            [37.702737, 55.552891],\n            [37.702647, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.552981],\n            [37.702647, 55.553071],\n            [37.702737, 55.553071],\n            [37.702737, 55.552981],\n            [37.702647, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.553071],\n            [37.702647, 55.553161],\n            [37.702737, 55.553161],\n            [37.702737, 55.553071],\n            [37.702647, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.553161],\n            [37.702647, 55.553251],\n            [37.702737, 55.553251],\n            [37.702737, 55.553161],\n            [37.702647, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.553251],\n            [37.702647, 55.553341],\n            [37.702737, 55.553341],\n            [37.702737, 55.553251],\n            [37.702647, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.553341],\n            [37.702647, 55.553431],\n            [37.702737, 55.553431],\n            [37.702737, 55.553341],\n            [37.702647, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.553431],\n            [37.702647, 55.55352],\n            [37.702737, 55.55352],\n            [37.702737, 55.553431],\n            [37.702647, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.55352],\n            [37.702647, 55.55361],\n            [37.702737, 55.55361],\n            [37.702737, 55.55352],\n            [37.702647, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.55361],\n            [37.702647, 55.5537],\n            [37.702737, 55.5537],\n            [37.702737, 55.55361],\n            [37.702647, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.5537],\n            [37.702647, 55.55379],\n            [37.702737, 55.55379],\n            [37.702737, 55.5537],\n            [37.702647, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.55379],\n            [37.702647, 55.55388],\n            [37.702737, 55.55388],\n            [37.702737, 55.55379],\n            [37.702647, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.55388],\n            [37.702647, 55.55397],\n            [37.702737, 55.55397],\n            [37.702737, 55.55388],\n            [37.702647, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.55397],\n            [37.702647, 55.55406],\n            [37.702737, 55.55406],\n            [37.702737, 55.55397],\n            [37.702647, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.55406],\n            [37.702647, 55.55415],\n            [37.702737, 55.55415],\n            [37.702737, 55.55406],\n            [37.702647, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.55415],\n            [37.702647, 55.55424],\n            [37.702737, 55.55424],\n            [37.702737, 55.55415],\n            [37.702647, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.55424],\n            [37.702647, 55.55433],\n            [37.702737, 55.55433],\n            [37.702737, 55.55424],\n            [37.702647, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.55433],\n            [37.702647, 55.55442],\n            [37.702737, 55.55442],\n            [37.702737, 55.55433],\n            [37.702647, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702647, 55.55442],\n            [37.702647, 55.55451],\n            [37.702737, 55.55451],\n            [37.702737, 55.55442],\n            [37.702647, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.552441],\n            [37.702737, 55.552531],\n            [37.702827, 55.552531],\n            [37.702827, 55.552441],\n            [37.702737, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.552531],\n            [37.702737, 55.552621],\n            [37.702827, 55.552621],\n            [37.702827, 55.552531],\n            [37.702737, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.552621],\n            [37.702737, 55.552711],\n            [37.702827, 55.552711],\n            [37.702827, 55.552621],\n            [37.702737, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.552711],\n            [37.702737, 55.552801],\n            [37.702827, 55.552801],\n            [37.702827, 55.552711],\n            [37.702737, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.552801],\n            [37.702737, 55.552891],\n            [37.702827, 55.552891],\n            [37.702827, 55.552801],\n            [37.702737, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.552891],\n            [37.702737, 55.552981],\n            [37.702827, 55.552981],\n            [37.702827, 55.552891],\n            [37.702737, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.552981],\n            [37.702737, 55.553071],\n            [37.702827, 55.553071],\n            [37.702827, 55.552981],\n            [37.702737, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.553071],\n            [37.702737, 55.553161],\n            [37.702827, 55.553161],\n            [37.702827, 55.553071],\n            [37.702737, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.553161],\n            [37.702737, 55.553251],\n            [37.702827, 55.553251],\n            [37.702827, 55.553161],\n            [37.702737, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.553251],\n            [37.702737, 55.553341],\n            [37.702827, 55.553341],\n            [37.702827, 55.553251],\n            [37.702737, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.553341],\n            [37.702737, 55.553431],\n            [37.702827, 55.553431],\n            [37.702827, 55.553341],\n            [37.702737, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.553431],\n            [37.702737, 55.55352],\n            [37.702827, 55.55352],\n            [37.702827, 55.553431],\n            [37.702737, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.55352],\n            [37.702737, 55.55361],\n            [37.702827, 55.55361],\n            [37.702827, 55.55352],\n            [37.702737, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.55361],\n            [37.702737, 55.5537],\n            [37.702827, 55.5537],\n            [37.702827, 55.55361],\n            [37.702737, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.5537],\n            [37.702737, 55.55379],\n            [37.702827, 55.55379],\n            [37.702827, 55.5537],\n            [37.702737, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.55379],\n            [37.702737, 55.55388],\n            [37.702827, 55.55388],\n            [37.702827, 55.55379],\n            [37.702737, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.55388],\n            [37.702737, 55.55397],\n            [37.702827, 55.55397],\n            [37.702827, 55.55388],\n            [37.702737, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.55397],\n            [37.702737, 55.55406],\n            [37.702827, 55.55406],\n            [37.702827, 55.55397],\n            [37.702737, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.55406],\n            [37.702737, 55.55415],\n            [37.702827, 55.55415],\n            [37.702827, 55.55406],\n            [37.702737, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.55415],\n            [37.702737, 55.55424],\n            [37.702827, 55.55424],\n            [37.702827, 55.55415],\n            [37.702737, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.55424],\n            [37.702737, 55.55433],\n            [37.702827, 55.55433],\n            [37.702827, 55.55424],\n            [37.702737, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.55433],\n            [37.702737, 55.55442],\n            [37.702827, 55.55442],\n            [37.702827, 55.55433],\n            [37.702737, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702737, 55.55442],\n            [37.702737, 55.55451],\n            [37.702827, 55.55451],\n            [37.702827, 55.55442],\n            [37.702737, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.552441],\n            [37.702827, 55.552531],\n            [37.702917, 55.552531],\n            [37.702917, 55.552441],\n            [37.702827, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.552531],\n            [37.702827, 55.552621],\n            [37.702917, 55.552621],\n            [37.702917, 55.552531],\n            [37.702827, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.552621],\n            [37.702827, 55.552711],\n            [37.702917, 55.552711],\n            [37.702917, 55.552621],\n            [37.702827, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.552711],\n            [37.702827, 55.552801],\n            [37.702917, 55.552801],\n            [37.702917, 55.552711],\n            [37.702827, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.552801],\n            [37.702827, 55.552891],\n            [37.702917, 55.552891],\n            [37.702917, 55.552801],\n            [37.702827, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.552891],\n            [37.702827, 55.552981],\n            [37.702917, 55.552981],\n            [37.702917, 55.552891],\n            [37.702827, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.552981],\n            [37.702827, 55.553071],\n            [37.702917, 55.553071],\n            [37.702917, 55.552981],\n            [37.702827, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.553071],\n            [37.702827, 55.553161],\n            [37.702917, 55.553161],\n            [37.702917, 55.553071],\n            [37.702827, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.553161],\n            [37.702827, 55.553251],\n            [37.702917, 55.553251],\n            [37.702917, 55.553161],\n            [37.702827, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.553251],\n            [37.702827, 55.553341],\n            [37.702917, 55.553341],\n            [37.702917, 55.553251],\n            [37.702827, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.553341],\n            [37.702827, 55.553431],\n            [37.702917, 55.553431],\n            [37.702917, 55.553341],\n            [37.702827, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.553431],\n            [37.702827, 55.55352],\n            [37.702917, 55.55352],\n            [37.702917, 55.553431],\n            [37.702827, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.55352],\n            [37.702827, 55.55361],\n            [37.702917, 55.55361],\n            [37.702917, 55.55352],\n            [37.702827, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.55361],\n            [37.702827, 55.5537],\n            [37.702917, 55.5537],\n            [37.702917, 55.55361],\n            [37.702827, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.5537],\n            [37.702827, 55.55379],\n            [37.702917, 55.55379],\n            [37.702917, 55.5537],\n            [37.702827, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.55379],\n            [37.702827, 55.55388],\n            [37.702917, 55.55388],\n            [37.702917, 55.55379],\n            [37.702827, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.55388],\n            [37.702827, 55.55397],\n            [37.702917, 55.55397],\n            [37.702917, 55.55388],\n            [37.702827, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.55397],\n            [37.702827, 55.55406],\n            [37.702917, 55.55406],\n            [37.702917, 55.55397],\n            [37.702827, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.55406],\n            [37.702827, 55.55415],\n            [37.702917, 55.55415],\n            [37.702917, 55.55406],\n            [37.702827, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.55415],\n            [37.702827, 55.55424],\n            [37.702917, 55.55424],\n            [37.702917, 55.55415],\n            [37.702827, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.55424],\n            [37.702827, 55.55433],\n            [37.702917, 55.55433],\n            [37.702917, 55.55424],\n            [37.702827, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.55433],\n            [37.702827, 55.55442],\n            [37.702917, 55.55442],\n            [37.702917, 55.55433],\n            [37.702827, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.55442],\n            [37.702827, 55.55451],\n            [37.702917, 55.55451],\n            [37.702917, 55.55442],\n            [37.702827, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702827, 55.55451],\n            [37.702827, 55.5546],\n            [37.702917, 55.5546],\n            [37.702917, 55.55451],\n            [37.702827, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.552351],\n            [37.702917, 55.552441],\n            [37.703007, 55.552441],\n            [37.703007, 55.552351],\n            [37.702917, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.552441],\n            [37.702917, 55.552531],\n            [37.703007, 55.552531],\n            [37.703007, 55.552441],\n            [37.702917, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.552531],\n            [37.702917, 55.552621],\n            [37.703007, 55.552621],\n            [37.703007, 55.552531],\n            [37.702917, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.552621],\n            [37.702917, 55.552711],\n            [37.703007, 55.552711],\n            [37.703007, 55.552621],\n            [37.702917, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.552711],\n            [37.702917, 55.552801],\n            [37.703007, 55.552801],\n            [37.703007, 55.552711],\n            [37.702917, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.552801],\n            [37.702917, 55.552891],\n            [37.703007, 55.552891],\n            [37.703007, 55.552801],\n            [37.702917, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.552891],\n            [37.702917, 55.552981],\n            [37.703007, 55.552981],\n            [37.703007, 55.552891],\n            [37.702917, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.552981],\n            [37.702917, 55.553071],\n            [37.703007, 55.553071],\n            [37.703007, 55.552981],\n            [37.702917, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.553071],\n            [37.702917, 55.553161],\n            [37.703007, 55.553161],\n            [37.703007, 55.553071],\n            [37.702917, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.553161],\n            [37.702917, 55.553251],\n            [37.703007, 55.553251],\n            [37.703007, 55.553161],\n            [37.702917, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.553251],\n            [37.702917, 55.553341],\n            [37.703007, 55.553341],\n            [37.703007, 55.553251],\n            [37.702917, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.553341],\n            [37.702917, 55.553431],\n            [37.703007, 55.553431],\n            [37.703007, 55.553341],\n            [37.702917, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.553431],\n            [37.702917, 55.55352],\n            [37.703007, 55.55352],\n            [37.703007, 55.553431],\n            [37.702917, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.55352],\n            [37.702917, 55.55361],\n            [37.703007, 55.55361],\n            [37.703007, 55.55352],\n            [37.702917, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.55361],\n            [37.702917, 55.5537],\n            [37.703007, 55.5537],\n            [37.703007, 55.55361],\n            [37.702917, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.5537],\n            [37.702917, 55.55379],\n            [37.703007, 55.55379],\n            [37.703007, 55.5537],\n            [37.702917, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.55379],\n            [37.702917, 55.55388],\n            [37.703007, 55.55388],\n            [37.703007, 55.55379],\n            [37.702917, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.55388],\n            [37.702917, 55.55397],\n            [37.703007, 55.55397],\n            [37.703007, 55.55388],\n            [37.702917, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.55397],\n            [37.702917, 55.55406],\n            [37.703007, 55.55406],\n            [37.703007, 55.55397],\n            [37.702917, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.55406],\n            [37.702917, 55.55415],\n            [37.703007, 55.55415],\n            [37.703007, 55.55406],\n            [37.702917, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.55415],\n            [37.702917, 55.55424],\n            [37.703007, 55.55424],\n            [37.703007, 55.55415],\n            [37.702917, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.55424],\n            [37.702917, 55.55433],\n            [37.703007, 55.55433],\n            [37.703007, 55.55424],\n            [37.702917, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.55433],\n            [37.702917, 55.55442],\n            [37.703007, 55.55442],\n            [37.703007, 55.55433],\n            [37.702917, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.55442],\n            [37.702917, 55.55451],\n            [37.703007, 55.55451],\n            [37.703007, 55.55442],\n            [37.702917, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.702917, 55.55451],\n            [37.702917, 55.5546],\n            [37.703007, 55.5546],\n            [37.703007, 55.55451],\n            [37.702917, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.552351],\n            [37.703007, 55.552441],\n            [37.703097, 55.552441],\n            [37.703097, 55.552351],\n            [37.703007, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.552441],\n            [37.703007, 55.552531],\n            [37.703097, 55.552531],\n            [37.703097, 55.552441],\n            [37.703007, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.552531],\n            [37.703007, 55.552621],\n            [37.703097, 55.552621],\n            [37.703097, 55.552531],\n            [37.703007, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.552621],\n            [37.703007, 55.552711],\n            [37.703097, 55.552711],\n            [37.703097, 55.552621],\n            [37.703007, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.552711],\n            [37.703007, 55.552801],\n            [37.703097, 55.552801],\n            [37.703097, 55.552711],\n            [37.703007, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.552801],\n            [37.703007, 55.552891],\n            [37.703097, 55.552891],\n            [37.703097, 55.552801],\n            [37.703007, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.552891],\n            [37.703007, 55.552981],\n            [37.703097, 55.552981],\n            [37.703097, 55.552891],\n            [37.703007, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.552981],\n            [37.703007, 55.553071],\n            [37.703097, 55.553071],\n            [37.703097, 55.552981],\n            [37.703007, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.553071],\n            [37.703007, 55.553161],\n            [37.703097, 55.553161],\n            [37.703097, 55.553071],\n            [37.703007, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.553161],\n            [37.703007, 55.553251],\n            [37.703097, 55.553251],\n            [37.703097, 55.553161],\n            [37.703007, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.553251],\n            [37.703007, 55.553341],\n            [37.703097, 55.553341],\n            [37.703097, 55.553251],\n            [37.703007, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.553341],\n            [37.703007, 55.553431],\n            [37.703097, 55.553431],\n            [37.703097, 55.553341],\n            [37.703007, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.553431],\n            [37.703007, 55.55352],\n            [37.703097, 55.55352],\n            [37.703097, 55.553431],\n            [37.703007, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.55352],\n            [37.703007, 55.55361],\n            [37.703097, 55.55361],\n            [37.703097, 55.55352],\n            [37.703007, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.55361],\n            [37.703007, 55.5537],\n            [37.703097, 55.5537],\n            [37.703097, 55.55361],\n            [37.703007, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.5537],\n            [37.703007, 55.55379],\n            [37.703097, 55.55379],\n            [37.703097, 55.5537],\n            [37.703007, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.55379],\n            [37.703007, 55.55388],\n            [37.703097, 55.55388],\n            [37.703097, 55.55379],\n            [37.703007, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.55388],\n            [37.703007, 55.55397],\n            [37.703097, 55.55397],\n            [37.703097, 55.55388],\n            [37.703007, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.55397],\n            [37.703007, 55.55406],\n            [37.703097, 55.55406],\n            [37.703097, 55.55397],\n            [37.703007, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.55406],\n            [37.703007, 55.55415],\n            [37.703097, 55.55415],\n            [37.703097, 55.55406],\n            [37.703007, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.55415],\n            [37.703007, 55.55424],\n            [37.703097, 55.55424],\n            [37.703097, 55.55415],\n            [37.703007, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.55424],\n            [37.703007, 55.55433],\n            [37.703097, 55.55433],\n            [37.703097, 55.55424],\n            [37.703007, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.55433],\n            [37.703007, 55.55442],\n            [37.703097, 55.55442],\n            [37.703097, 55.55433],\n            [37.703007, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.55442],\n            [37.703007, 55.55451],\n            [37.703097, 55.55451],\n            [37.703097, 55.55442],\n            [37.703007, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703007, 55.55451],\n            [37.703007, 55.5546],\n            [37.703097, 55.5546],\n            [37.703097, 55.55451],\n            [37.703007, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.552351],\n            [37.703097, 55.552441],\n            [37.703187, 55.552441],\n            [37.703187, 55.552351],\n            [37.703097, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.552441],\n            [37.703097, 55.552531],\n            [37.703187, 55.552531],\n            [37.703187, 55.552441],\n            [37.703097, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.552531],\n            [37.703097, 55.552621],\n            [37.703187, 55.552621],\n            [37.703187, 55.552531],\n            [37.703097, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.552621],\n            [37.703097, 55.552711],\n            [37.703187, 55.552711],\n            [37.703187, 55.552621],\n            [37.703097, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.552711],\n            [37.703097, 55.552801],\n            [37.703187, 55.552801],\n            [37.703187, 55.552711],\n            [37.703097, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.552801],\n            [37.703097, 55.552891],\n            [37.703187, 55.552891],\n            [37.703187, 55.552801],\n            [37.703097, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.552891],\n            [37.703097, 55.552981],\n            [37.703187, 55.552981],\n            [37.703187, 55.552891],\n            [37.703097, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.552981],\n            [37.703097, 55.553071],\n            [37.703187, 55.553071],\n            [37.703187, 55.552981],\n            [37.703097, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.553071],\n            [37.703097, 55.553161],\n            [37.703187, 55.553161],\n            [37.703187, 55.553071],\n            [37.703097, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.553161],\n            [37.703097, 55.553251],\n            [37.703187, 55.553251],\n            [37.703187, 55.553161],\n            [37.703097, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.553251],\n            [37.703097, 55.553341],\n            [37.703187, 55.553341],\n            [37.703187, 55.553251],\n            [37.703097, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.553341],\n            [37.703097, 55.553431],\n            [37.703187, 55.553431],\n            [37.703187, 55.553341],\n            [37.703097, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.553431],\n            [37.703097, 55.55352],\n            [37.703187, 55.55352],\n            [37.703187, 55.553431],\n            [37.703097, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.55352],\n            [37.703097, 55.55361],\n            [37.703187, 55.55361],\n            [37.703187, 55.55352],\n            [37.703097, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.55361],\n            [37.703097, 55.5537],\n            [37.703187, 55.5537],\n            [37.703187, 55.55361],\n            [37.703097, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.5537],\n            [37.703097, 55.55379],\n            [37.703187, 55.55379],\n            [37.703187, 55.5537],\n            [37.703097, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.55379],\n            [37.703097, 55.55388],\n            [37.703187, 55.55388],\n            [37.703187, 55.55379],\n            [37.703097, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.55388],\n            [37.703097, 55.55397],\n            [37.703187, 55.55397],\n            [37.703187, 55.55388],\n            [37.703097, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.55397],\n            [37.703097, 55.55406],\n            [37.703187, 55.55406],\n            [37.703187, 55.55397],\n            [37.703097, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.55406],\n            [37.703097, 55.55415],\n            [37.703187, 55.55415],\n            [37.703187, 55.55406],\n            [37.703097, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.55415],\n            [37.703097, 55.55424],\n            [37.703187, 55.55424],\n            [37.703187, 55.55415],\n            [37.703097, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.55424],\n            [37.703097, 55.55433],\n            [37.703187, 55.55433],\n            [37.703187, 55.55424],\n            [37.703097, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.55433],\n            [37.703097, 55.55442],\n            [37.703187, 55.55442],\n            [37.703187, 55.55433],\n            [37.703097, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.55442],\n            [37.703097, 55.55451],\n            [37.703187, 55.55451],\n            [37.703187, 55.55442],\n            [37.703097, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.55451],\n            [37.703097, 55.5546],\n            [37.703187, 55.5546],\n            [37.703187, 55.55451],\n            [37.703097, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703097, 55.5546],\n            [37.703097, 55.55469],\n            [37.703187, 55.55469],\n            [37.703187, 55.5546],\n            [37.703097, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.552351],\n            [37.703187, 55.552441],\n            [37.703276, 55.552441],\n            [37.703276, 55.552351],\n            [37.703187, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.552441],\n            [37.703187, 55.552531],\n            [37.703276, 55.552531],\n            [37.703276, 55.552441],\n            [37.703187, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.552531],\n            [37.703187, 55.552621],\n            [37.703276, 55.552621],\n            [37.703276, 55.552531],\n            [37.703187, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.552621],\n            [37.703187, 55.552711],\n            [37.703276, 55.552711],\n            [37.703276, 55.552621],\n            [37.703187, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.552711],\n            [37.703187, 55.552801],\n            [37.703276, 55.552801],\n            [37.703276, 55.552711],\n            [37.703187, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.552801],\n            [37.703187, 55.552891],\n            [37.703276, 55.552891],\n            [37.703276, 55.552801],\n            [37.703187, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.552891],\n            [37.703187, 55.552981],\n            [37.703276, 55.552981],\n            [37.703276, 55.552891],\n            [37.703187, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.552981],\n            [37.703187, 55.553071],\n            [37.703276, 55.553071],\n            [37.703276, 55.552981],\n            [37.703187, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.553071],\n            [37.703187, 55.553161],\n            [37.703276, 55.553161],\n            [37.703276, 55.553071],\n            [37.703187, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.553161],\n            [37.703187, 55.553251],\n            [37.703276, 55.553251],\n            [37.703276, 55.553161],\n            [37.703187, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.553251],\n            [37.703187, 55.553341],\n            [37.703276, 55.553341],\n            [37.703276, 55.553251],\n            [37.703187, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.553341],\n            [37.703187, 55.553431],\n            [37.703276, 55.553431],\n            [37.703276, 55.553341],\n            [37.703187, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.553431],\n            [37.703187, 55.55352],\n            [37.703276, 55.55352],\n            [37.703276, 55.553431],\n            [37.703187, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.55352],\n            [37.703187, 55.55361],\n            [37.703276, 55.55361],\n            [37.703276, 55.55352],\n            [37.703187, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.55361],\n            [37.703187, 55.5537],\n            [37.703276, 55.5537],\n            [37.703276, 55.55361],\n            [37.703187, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.5537],\n            [37.703187, 55.55379],\n            [37.703276, 55.55379],\n            [37.703276, 55.5537],\n            [37.703187, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.55379],\n            [37.703187, 55.55388],\n            [37.703276, 55.55388],\n            [37.703276, 55.55379],\n            [37.703187, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.55388],\n            [37.703187, 55.55397],\n            [37.703276, 55.55397],\n            [37.703276, 55.55388],\n            [37.703187, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.55397],\n            [37.703187, 55.55406],\n            [37.703276, 55.55406],\n            [37.703276, 55.55397],\n            [37.703187, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.55406],\n            [37.703187, 55.55415],\n            [37.703276, 55.55415],\n            [37.703276, 55.55406],\n            [37.703187, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.55415],\n            [37.703187, 55.55424],\n            [37.703276, 55.55424],\n            [37.703276, 55.55415],\n            [37.703187, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.55424],\n            [37.703187, 55.55433],\n            [37.703276, 55.55433],\n            [37.703276, 55.55424],\n            [37.703187, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.55433],\n            [37.703187, 55.55442],\n            [37.703276, 55.55442],\n            [37.703276, 55.55433],\n            [37.703187, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.55442],\n            [37.703187, 55.55451],\n            [37.703276, 55.55451],\n            [37.703276, 55.55442],\n            [37.703187, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.55451],\n            [37.703187, 55.5546],\n            [37.703276, 55.5546],\n            [37.703276, 55.55451],\n            [37.703187, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703187, 55.5546],\n            [37.703187, 55.55469],\n            [37.703276, 55.55469],\n            [37.703276, 55.5546],\n            [37.703187, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.552261],\n            [37.703276, 55.552351],\n            [37.703366, 55.552351],\n            [37.703366, 55.552261],\n            [37.703276, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.552351],\n            [37.703276, 55.552441],\n            [37.703366, 55.552441],\n            [37.703366, 55.552351],\n            [37.703276, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.552441],\n            [37.703276, 55.552531],\n            [37.703366, 55.552531],\n            [37.703366, 55.552441],\n            [37.703276, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.552531],\n            [37.703276, 55.552621],\n            [37.703366, 55.552621],\n            [37.703366, 55.552531],\n            [37.703276, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.552621],\n            [37.703276, 55.552711],\n            [37.703366, 55.552711],\n            [37.703366, 55.552621],\n            [37.703276, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.552711],\n            [37.703276, 55.552801],\n            [37.703366, 55.552801],\n            [37.703366, 55.552711],\n            [37.703276, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.552801],\n            [37.703276, 55.552891],\n            [37.703366, 55.552891],\n            [37.703366, 55.552801],\n            [37.703276, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.552891],\n            [37.703276, 55.552981],\n            [37.703366, 55.552981],\n            [37.703366, 55.552891],\n            [37.703276, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.552981],\n            [37.703276, 55.553071],\n            [37.703366, 55.553071],\n            [37.703366, 55.552981],\n            [37.703276, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.553071],\n            [37.703276, 55.553161],\n            [37.703366, 55.553161],\n            [37.703366, 55.553071],\n            [37.703276, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.553161],\n            [37.703276, 55.553251],\n            [37.703366, 55.553251],\n            [37.703366, 55.553161],\n            [37.703276, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.553251],\n            [37.703276, 55.553341],\n            [37.703366, 55.553341],\n            [37.703366, 55.553251],\n            [37.703276, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.553341],\n            [37.703276, 55.553431],\n            [37.703366, 55.553431],\n            [37.703366, 55.553341],\n            [37.703276, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.553431],\n            [37.703276, 55.55352],\n            [37.703366, 55.55352],\n            [37.703366, 55.553431],\n            [37.703276, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.55352],\n            [37.703276, 55.55361],\n            [37.703366, 55.55361],\n            [37.703366, 55.55352],\n            [37.703276, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.55361],\n            [37.703276, 55.5537],\n            [37.703366, 55.5537],\n            [37.703366, 55.55361],\n            [37.703276, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.5537],\n            [37.703276, 55.55379],\n            [37.703366, 55.55379],\n            [37.703366, 55.5537],\n            [37.703276, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.55379],\n            [37.703276, 55.55388],\n            [37.703366, 55.55388],\n            [37.703366, 55.55379],\n            [37.703276, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.55388],\n            [37.703276, 55.55397],\n            [37.703366, 55.55397],\n            [37.703366, 55.55388],\n            [37.703276, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.55397],\n            [37.703276, 55.55406],\n            [37.703366, 55.55406],\n            [37.703366, 55.55397],\n            [37.703276, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.55406],\n            [37.703276, 55.55415],\n            [37.703366, 55.55415],\n            [37.703366, 55.55406],\n            [37.703276, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.55415],\n            [37.703276, 55.55424],\n            [37.703366, 55.55424],\n            [37.703366, 55.55415],\n            [37.703276, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.55424],\n            [37.703276, 55.55433],\n            [37.703366, 55.55433],\n            [37.703366, 55.55424],\n            [37.703276, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.55433],\n            [37.703276, 55.55442],\n            [37.703366, 55.55442],\n            [37.703366, 55.55433],\n            [37.703276, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.55442],\n            [37.703276, 55.55451],\n            [37.703366, 55.55451],\n            [37.703366, 55.55442],\n            [37.703276, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.55451],\n            [37.703276, 55.5546],\n            [37.703366, 55.5546],\n            [37.703366, 55.55451],\n            [37.703276, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703276, 55.5546],\n            [37.703276, 55.55469],\n            [37.703366, 55.55469],\n            [37.703366, 55.5546],\n            [37.703276, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.552261],\n            [37.703366, 55.552351],\n            [37.703456, 55.552351],\n            [37.703456, 55.552261],\n            [37.703366, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.552351],\n            [37.703366, 55.552441],\n            [37.703456, 55.552441],\n            [37.703456, 55.552351],\n            [37.703366, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.552441],\n            [37.703366, 55.552531],\n            [37.703456, 55.552531],\n            [37.703456, 55.552441],\n            [37.703366, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.552531],\n            [37.703366, 55.552621],\n            [37.703456, 55.552621],\n            [37.703456, 55.552531],\n            [37.703366, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.552621],\n            [37.703366, 55.552711],\n            [37.703456, 55.552711],\n            [37.703456, 55.552621],\n            [37.703366, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.552711],\n            [37.703366, 55.552801],\n            [37.703456, 55.552801],\n            [37.703456, 55.552711],\n            [37.703366, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.552801],\n            [37.703366, 55.552891],\n            [37.703456, 55.552891],\n            [37.703456, 55.552801],\n            [37.703366, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.552891],\n            [37.703366, 55.552981],\n            [37.703456, 55.552981],\n            [37.703456, 55.552891],\n            [37.703366, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.552981],\n            [37.703366, 55.553071],\n            [37.703456, 55.553071],\n            [37.703456, 55.552981],\n            [37.703366, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.553071],\n            [37.703366, 55.553161],\n            [37.703456, 55.553161],\n            [37.703456, 55.553071],\n            [37.703366, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.553161],\n            [37.703366, 55.553251],\n            [37.703456, 55.553251],\n            [37.703456, 55.553161],\n            [37.703366, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.553251],\n            [37.703366, 55.553341],\n            [37.703456, 55.553341],\n            [37.703456, 55.553251],\n            [37.703366, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.553341],\n            [37.703366, 55.553431],\n            [37.703456, 55.553431],\n            [37.703456, 55.553341],\n            [37.703366, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.553431],\n            [37.703366, 55.55352],\n            [37.703456, 55.55352],\n            [37.703456, 55.553431],\n            [37.703366, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.55352],\n            [37.703366, 55.55361],\n            [37.703456, 55.55361],\n            [37.703456, 55.55352],\n            [37.703366, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.55361],\n            [37.703366, 55.5537],\n            [37.703456, 55.5537],\n            [37.703456, 55.55361],\n            [37.703366, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.5537],\n            [37.703366, 55.55379],\n            [37.703456, 55.55379],\n            [37.703456, 55.5537],\n            [37.703366, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.55379],\n            [37.703366, 55.55388],\n            [37.703456, 55.55388],\n            [37.703456, 55.55379],\n            [37.703366, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.55388],\n            [37.703366, 55.55397],\n            [37.703456, 55.55397],\n            [37.703456, 55.55388],\n            [37.703366, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.55397],\n            [37.703366, 55.55406],\n            [37.703456, 55.55406],\n            [37.703456, 55.55397],\n            [37.703366, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.55406],\n            [37.703366, 55.55415],\n            [37.703456, 55.55415],\n            [37.703456, 55.55406],\n            [37.703366, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.55415],\n            [37.703366, 55.55424],\n            [37.703456, 55.55424],\n            [37.703456, 55.55415],\n            [37.703366, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.55424],\n            [37.703366, 55.55433],\n            [37.703456, 55.55433],\n            [37.703456, 55.55424],\n            [37.703366, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.55433],\n            [37.703366, 55.55442],\n            [37.703456, 55.55442],\n            [37.703456, 55.55433],\n            [37.703366, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.55442],\n            [37.703366, 55.55451],\n            [37.703456, 55.55451],\n            [37.703456, 55.55442],\n            [37.703366, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.55451],\n            [37.703366, 55.5546],\n            [37.703456, 55.5546],\n            [37.703456, 55.55451],\n            [37.703366, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703366, 55.5546],\n            [37.703366, 55.55469],\n            [37.703456, 55.55469],\n            [37.703456, 55.5546],\n            [37.703366, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.552261],\n            [37.703456, 55.552351],\n            [37.703546, 55.552351],\n            [37.703546, 55.552261],\n            [37.703456, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.552351],\n            [37.703456, 55.552441],\n            [37.703546, 55.552441],\n            [37.703546, 55.552351],\n            [37.703456, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.552441],\n            [37.703456, 55.552531],\n            [37.703546, 55.552531],\n            [37.703546, 55.552441],\n            [37.703456, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.552531],\n            [37.703456, 55.552621],\n            [37.703546, 55.552621],\n            [37.703546, 55.552531],\n            [37.703456, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.552621],\n            [37.703456, 55.552711],\n            [37.703546, 55.552711],\n            [37.703546, 55.552621],\n            [37.703456, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.552711],\n            [37.703456, 55.552801],\n            [37.703546, 55.552801],\n            [37.703546, 55.552711],\n            [37.703456, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.552801],\n            [37.703456, 55.552891],\n            [37.703546, 55.552891],\n            [37.703546, 55.552801],\n            [37.703456, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.552891],\n            [37.703456, 55.552981],\n            [37.703546, 55.552981],\n            [37.703546, 55.552891],\n            [37.703456, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.552981],\n            [37.703456, 55.553071],\n            [37.703546, 55.553071],\n            [37.703546, 55.552981],\n            [37.703456, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.553071],\n            [37.703456, 55.553161],\n            [37.703546, 55.553161],\n            [37.703546, 55.553071],\n            [37.703456, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.553161],\n            [37.703456, 55.553251],\n            [37.703546, 55.553251],\n            [37.703546, 55.553161],\n            [37.703456, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.553251],\n            [37.703456, 55.553341],\n            [37.703546, 55.553341],\n            [37.703546, 55.553251],\n            [37.703456, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.553341],\n            [37.703456, 55.553431],\n            [37.703546, 55.553431],\n            [37.703546, 55.553341],\n            [37.703456, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.553431],\n            [37.703456, 55.55352],\n            [37.703546, 55.55352],\n            [37.703546, 55.553431],\n            [37.703456, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.55352],\n            [37.703456, 55.55361],\n            [37.703546, 55.55361],\n            [37.703546, 55.55352],\n            [37.703456, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.55361],\n            [37.703456, 55.5537],\n            [37.703546, 55.5537],\n            [37.703546, 55.55361],\n            [37.703456, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.5537],\n            [37.703456, 55.55379],\n            [37.703546, 55.55379],\n            [37.703546, 55.5537],\n            [37.703456, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.55379],\n            [37.703456, 55.55388],\n            [37.703546, 55.55388],\n            [37.703546, 55.55379],\n            [37.703456, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.55388],\n            [37.703456, 55.55397],\n            [37.703546, 55.55397],\n            [37.703546, 55.55388],\n            [37.703456, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.55397],\n            [37.703456, 55.55406],\n            [37.703546, 55.55406],\n            [37.703546, 55.55397],\n            [37.703456, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.55406],\n            [37.703456, 55.55415],\n            [37.703546, 55.55415],\n            [37.703546, 55.55406],\n            [37.703456, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.55415],\n            [37.703456, 55.55424],\n            [37.703546, 55.55424],\n            [37.703546, 55.55415],\n            [37.703456, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.55424],\n            [37.703456, 55.55433],\n            [37.703546, 55.55433],\n            [37.703546, 55.55424],\n            [37.703456, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.55433],\n            [37.703456, 55.55442],\n            [37.703546, 55.55442],\n            [37.703546, 55.55433],\n            [37.703456, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.55442],\n            [37.703456, 55.55451],\n            [37.703546, 55.55451],\n            [37.703546, 55.55442],\n            [37.703456, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.55451],\n            [37.703456, 55.5546],\n            [37.703546, 55.5546],\n            [37.703546, 55.55451],\n            [37.703456, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.5546],\n            [37.703456, 55.55469],\n            [37.703546, 55.55469],\n            [37.703546, 55.5546],\n            [37.703456, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703456, 55.55469],\n            [37.703456, 55.55478],\n            [37.703546, 55.55478],\n            [37.703546, 55.55469],\n            [37.703456, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.552261],\n            [37.703546, 55.552351],\n            [37.703636, 55.552351],\n            [37.703636, 55.552261],\n            [37.703546, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.552351],\n            [37.703546, 55.552441],\n            [37.703636, 55.552441],\n            [37.703636, 55.552351],\n            [37.703546, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.552441],\n            [37.703546, 55.552531],\n            [37.703636, 55.552531],\n            [37.703636, 55.552441],\n            [37.703546, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.552531],\n            [37.703546, 55.552621],\n            [37.703636, 55.552621],\n            [37.703636, 55.552531],\n            [37.703546, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.552621],\n            [37.703546, 55.552711],\n            [37.703636, 55.552711],\n            [37.703636, 55.552621],\n            [37.703546, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.552711],\n            [37.703546, 55.552801],\n            [37.703636, 55.552801],\n            [37.703636, 55.552711],\n            [37.703546, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.552801],\n            [37.703546, 55.552891],\n            [37.703636, 55.552891],\n            [37.703636, 55.552801],\n            [37.703546, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.552891],\n            [37.703546, 55.552981],\n            [37.703636, 55.552981],\n            [37.703636, 55.552891],\n            [37.703546, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.552981],\n            [37.703546, 55.553071],\n            [37.703636, 55.553071],\n            [37.703636, 55.552981],\n            [37.703546, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.553071],\n            [37.703546, 55.553161],\n            [37.703636, 55.553161],\n            [37.703636, 55.553071],\n            [37.703546, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.553161],\n            [37.703546, 55.553251],\n            [37.703636, 55.553251],\n            [37.703636, 55.553161],\n            [37.703546, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.553251],\n            [37.703546, 55.553341],\n            [37.703636, 55.553341],\n            [37.703636, 55.553251],\n            [37.703546, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.553341],\n            [37.703546, 55.553431],\n            [37.703636, 55.553431],\n            [37.703636, 55.553341],\n            [37.703546, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.553431],\n            [37.703546, 55.55352],\n            [37.703636, 55.55352],\n            [37.703636, 55.553431],\n            [37.703546, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.55352],\n            [37.703546, 55.55361],\n            [37.703636, 55.55361],\n            [37.703636, 55.55352],\n            [37.703546, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.55361],\n            [37.703546, 55.5537],\n            [37.703636, 55.5537],\n            [37.703636, 55.55361],\n            [37.703546, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.5537],\n            [37.703546, 55.55379],\n            [37.703636, 55.55379],\n            [37.703636, 55.5537],\n            [37.703546, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.55379],\n            [37.703546, 55.55388],\n            [37.703636, 55.55388],\n            [37.703636, 55.55379],\n            [37.703546, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.55388],\n            [37.703546, 55.55397],\n            [37.703636, 55.55397],\n            [37.703636, 55.55388],\n            [37.703546, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.55397],\n            [37.703546, 55.55406],\n            [37.703636, 55.55406],\n            [37.703636, 55.55397],\n            [37.703546, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.55406],\n            [37.703546, 55.55415],\n            [37.703636, 55.55415],\n            [37.703636, 55.55406],\n            [37.703546, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.55415],\n            [37.703546, 55.55424],\n            [37.703636, 55.55424],\n            [37.703636, 55.55415],\n            [37.703546, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.55424],\n            [37.703546, 55.55433],\n            [37.703636, 55.55433],\n            [37.703636, 55.55424],\n            [37.703546, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.55433],\n            [37.703546, 55.55442],\n            [37.703636, 55.55442],\n            [37.703636, 55.55433],\n            [37.703546, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.55442],\n            [37.703546, 55.55451],\n            [37.703636, 55.55451],\n            [37.703636, 55.55442],\n            [37.703546, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.55451],\n            [37.703546, 55.5546],\n            [37.703636, 55.5546],\n            [37.703636, 55.55451],\n            [37.703546, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.5546],\n            [37.703546, 55.55469],\n            [37.703636, 55.55469],\n            [37.703636, 55.5546],\n            [37.703546, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703546, 55.55469],\n            [37.703546, 55.55478],\n            [37.703636, 55.55478],\n            [37.703636, 55.55469],\n            [37.703546, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.552171],\n            [37.703636, 55.552261],\n            [37.703726, 55.552261],\n            [37.703726, 55.552171],\n            [37.703636, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.552261],\n            [37.703636, 55.552351],\n            [37.703726, 55.552351],\n            [37.703726, 55.552261],\n            [37.703636, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.552351],\n            [37.703636, 55.552441],\n            [37.703726, 55.552441],\n            [37.703726, 55.552351],\n            [37.703636, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.552441],\n            [37.703636, 55.552531],\n            [37.703726, 55.552531],\n            [37.703726, 55.552441],\n            [37.703636, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.552531],\n            [37.703636, 55.552621],\n            [37.703726, 55.552621],\n            [37.703726, 55.552531],\n            [37.703636, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.552621],\n            [37.703636, 55.552711],\n            [37.703726, 55.552711],\n            [37.703726, 55.552621],\n            [37.703636, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.552711],\n            [37.703636, 55.552801],\n            [37.703726, 55.552801],\n            [37.703726, 55.552711],\n            [37.703636, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.552801],\n            [37.703636, 55.552891],\n            [37.703726, 55.552891],\n            [37.703726, 55.552801],\n            [37.703636, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.552891],\n            [37.703636, 55.552981],\n            [37.703726, 55.552981],\n            [37.703726, 55.552891],\n            [37.703636, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.552981],\n            [37.703636, 55.553071],\n            [37.703726, 55.553071],\n            [37.703726, 55.552981],\n            [37.703636, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.553071],\n            [37.703636, 55.553161],\n            [37.703726, 55.553161],\n            [37.703726, 55.553071],\n            [37.703636, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.553161],\n            [37.703636, 55.553251],\n            [37.703726, 55.553251],\n            [37.703726, 55.553161],\n            [37.703636, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.553251],\n            [37.703636, 55.553341],\n            [37.703726, 55.553341],\n            [37.703726, 55.553251],\n            [37.703636, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.553341],\n            [37.703636, 55.553431],\n            [37.703726, 55.553431],\n            [37.703726, 55.553341],\n            [37.703636, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.553431],\n            [37.703636, 55.55352],\n            [37.703726, 55.55352],\n            [37.703726, 55.553431],\n            [37.703636, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.55352],\n            [37.703636, 55.55361],\n            [37.703726, 55.55361],\n            [37.703726, 55.55352],\n            [37.703636, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.55361],\n            [37.703636, 55.5537],\n            [37.703726, 55.5537],\n            [37.703726, 55.55361],\n            [37.703636, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.5537],\n            [37.703636, 55.55379],\n            [37.703726, 55.55379],\n            [37.703726, 55.5537],\n            [37.703636, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.55379],\n            [37.703636, 55.55388],\n            [37.703726, 55.55388],\n            [37.703726, 55.55379],\n            [37.703636, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.55388],\n            [37.703636, 55.55397],\n            [37.703726, 55.55397],\n            [37.703726, 55.55388],\n            [37.703636, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.55397],\n            [37.703636, 55.55406],\n            [37.703726, 55.55406],\n            [37.703726, 55.55397],\n            [37.703636, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.55406],\n            [37.703636, 55.55415],\n            [37.703726, 55.55415],\n            [37.703726, 55.55406],\n            [37.703636, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.55415],\n            [37.703636, 55.55424],\n            [37.703726, 55.55424],\n            [37.703726, 55.55415],\n            [37.703636, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.55424],\n            [37.703636, 55.55433],\n            [37.703726, 55.55433],\n            [37.703726, 55.55424],\n            [37.703636, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.55433],\n            [37.703636, 55.55442],\n            [37.703726, 55.55442],\n            [37.703726, 55.55433],\n            [37.703636, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.55442],\n            [37.703636, 55.55451],\n            [37.703726, 55.55451],\n            [37.703726, 55.55442],\n            [37.703636, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.55451],\n            [37.703636, 55.5546],\n            [37.703726, 55.5546],\n            [37.703726, 55.55451],\n            [37.703636, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.5546],\n            [37.703636, 55.55469],\n            [37.703726, 55.55469],\n            [37.703726, 55.5546],\n            [37.703636, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703636, 55.55469],\n            [37.703636, 55.55478],\n            [37.703726, 55.55478],\n            [37.703726, 55.55469],\n            [37.703636, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.552171],\n            [37.703726, 55.552261],\n            [37.703816, 55.552261],\n            [37.703816, 55.552171],\n            [37.703726, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.552261],\n            [37.703726, 55.552351],\n            [37.703816, 55.552351],\n            [37.703816, 55.552261],\n            [37.703726, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.552351],\n            [37.703726, 55.552441],\n            [37.703816, 55.552441],\n            [37.703816, 55.552351],\n            [37.703726, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.552441],\n            [37.703726, 55.552531],\n            [37.703816, 55.552531],\n            [37.703816, 55.552441],\n            [37.703726, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.552531],\n            [37.703726, 55.552621],\n            [37.703816, 55.552621],\n            [37.703816, 55.552531],\n            [37.703726, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.552621],\n            [37.703726, 55.552711],\n            [37.703816, 55.552711],\n            [37.703816, 55.552621],\n            [37.703726, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.552711],\n            [37.703726, 55.552801],\n            [37.703816, 55.552801],\n            [37.703816, 55.552711],\n            [37.703726, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.552801],\n            [37.703726, 55.552891],\n            [37.703816, 55.552891],\n            [37.703816, 55.552801],\n            [37.703726, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.552891],\n            [37.703726, 55.552981],\n            [37.703816, 55.552981],\n            [37.703816, 55.552891],\n            [37.703726, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.552981],\n            [37.703726, 55.553071],\n            [37.703816, 55.553071],\n            [37.703816, 55.552981],\n            [37.703726, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.553071],\n            [37.703726, 55.553161],\n            [37.703816, 55.553161],\n            [37.703816, 55.553071],\n            [37.703726, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.553161],\n            [37.703726, 55.553251],\n            [37.703816, 55.553251],\n            [37.703816, 55.553161],\n            [37.703726, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.553251],\n            [37.703726, 55.553341],\n            [37.703816, 55.553341],\n            [37.703816, 55.553251],\n            [37.703726, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.553341],\n            [37.703726, 55.553431],\n            [37.703816, 55.553431],\n            [37.703816, 55.553341],\n            [37.703726, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.553431],\n            [37.703726, 55.55352],\n            [37.703816, 55.55352],\n            [37.703816, 55.553431],\n            [37.703726, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.55352],\n            [37.703726, 55.55361],\n            [37.703816, 55.55361],\n            [37.703816, 55.55352],\n            [37.703726, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.55361],\n            [37.703726, 55.5537],\n            [37.703816, 55.5537],\n            [37.703816, 55.55361],\n            [37.703726, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.5537],\n            [37.703726, 55.55379],\n            [37.703816, 55.55379],\n            [37.703816, 55.5537],\n            [37.703726, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.55379],\n            [37.703726, 55.55388],\n            [37.703816, 55.55388],\n            [37.703816, 55.55379],\n            [37.703726, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.55388],\n            [37.703726, 55.55397],\n            [37.703816, 55.55397],\n            [37.703816, 55.55388],\n            [37.703726, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.55397],\n            [37.703726, 55.55406],\n            [37.703816, 55.55406],\n            [37.703816, 55.55397],\n            [37.703726, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.55406],\n            [37.703726, 55.55415],\n            [37.703816, 55.55415],\n            [37.703816, 55.55406],\n            [37.703726, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.55415],\n            [37.703726, 55.55424],\n            [37.703816, 55.55424],\n            [37.703816, 55.55415],\n            [37.703726, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.55424],\n            [37.703726, 55.55433],\n            [37.703816, 55.55433],\n            [37.703816, 55.55424],\n            [37.703726, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.55433],\n            [37.703726, 55.55442],\n            [37.703816, 55.55442],\n            [37.703816, 55.55433],\n            [37.703726, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.55442],\n            [37.703726, 55.55451],\n            [37.703816, 55.55451],\n            [37.703816, 55.55442],\n            [37.703726, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.55451],\n            [37.703726, 55.5546],\n            [37.703816, 55.5546],\n            [37.703816, 55.55451],\n            [37.703726, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.5546],\n            [37.703726, 55.55469],\n            [37.703816, 55.55469],\n            [37.703816, 55.5546],\n            [37.703726, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703726, 55.55469],\n            [37.703726, 55.55478],\n            [37.703816, 55.55478],\n            [37.703816, 55.55469],\n            [37.703726, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.552171],\n            [37.703816, 55.552261],\n            [37.703906, 55.552261],\n            [37.703906, 55.552171],\n            [37.703816, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.552261],\n            [37.703816, 55.552351],\n            [37.703906, 55.552351],\n            [37.703906, 55.552261],\n            [37.703816, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.552351],\n            [37.703816, 55.552441],\n            [37.703906, 55.552441],\n            [37.703906, 55.552351],\n            [37.703816, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.552441],\n            [37.703816, 55.552531],\n            [37.703906, 55.552531],\n            [37.703906, 55.552441],\n            [37.703816, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.552531],\n            [37.703816, 55.552621],\n            [37.703906, 55.552621],\n            [37.703906, 55.552531],\n            [37.703816, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.552621],\n            [37.703816, 55.552711],\n            [37.703906, 55.552711],\n            [37.703906, 55.552621],\n            [37.703816, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.552711],\n            [37.703816, 55.552801],\n            [37.703906, 55.552801],\n            [37.703906, 55.552711],\n            [37.703816, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.552801],\n            [37.703816, 55.552891],\n            [37.703906, 55.552891],\n            [37.703906, 55.552801],\n            [37.703816, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.552891],\n            [37.703816, 55.552981],\n            [37.703906, 55.552981],\n            [37.703906, 55.552891],\n            [37.703816, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.552981],\n            [37.703816, 55.553071],\n            [37.703906, 55.553071],\n            [37.703906, 55.552981],\n            [37.703816, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.553071],\n            [37.703816, 55.553161],\n            [37.703906, 55.553161],\n            [37.703906, 55.553071],\n            [37.703816, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.553161],\n            [37.703816, 55.553251],\n            [37.703906, 55.553251],\n            [37.703906, 55.553161],\n            [37.703816, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.553251],\n            [37.703816, 55.553341],\n            [37.703906, 55.553341],\n            [37.703906, 55.553251],\n            [37.703816, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.553341],\n            [37.703816, 55.553431],\n            [37.703906, 55.553431],\n            [37.703906, 55.553341],\n            [37.703816, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.553431],\n            [37.703816, 55.55352],\n            [37.703906, 55.55352],\n            [37.703906, 55.553431],\n            [37.703816, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.55352],\n            [37.703816, 55.55361],\n            [37.703906, 55.55361],\n            [37.703906, 55.55352],\n            [37.703816, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.55361],\n            [37.703816, 55.5537],\n            [37.703906, 55.5537],\n            [37.703906, 55.55361],\n            [37.703816, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.5537],\n            [37.703816, 55.55379],\n            [37.703906, 55.55379],\n            [37.703906, 55.5537],\n            [37.703816, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.55379],\n            [37.703816, 55.55388],\n            [37.703906, 55.55388],\n            [37.703906, 55.55379],\n            [37.703816, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.55388],\n            [37.703816, 55.55397],\n            [37.703906, 55.55397],\n            [37.703906, 55.55388],\n            [37.703816, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.55397],\n            [37.703816, 55.55406],\n            [37.703906, 55.55406],\n            [37.703906, 55.55397],\n            [37.703816, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.55406],\n            [37.703816, 55.55415],\n            [37.703906, 55.55415],\n            [37.703906, 55.55406],\n            [37.703816, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.55415],\n            [37.703816, 55.55424],\n            [37.703906, 55.55424],\n            [37.703906, 55.55415],\n            [37.703816, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.55424],\n            [37.703816, 55.55433],\n            [37.703906, 55.55433],\n            [37.703906, 55.55424],\n            [37.703816, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.55433],\n            [37.703816, 55.55442],\n            [37.703906, 55.55442],\n            [37.703906, 55.55433],\n            [37.703816, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.55442],\n            [37.703816, 55.55451],\n            [37.703906, 55.55451],\n            [37.703906, 55.55442],\n            [37.703816, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.55451],\n            [37.703816, 55.5546],\n            [37.703906, 55.5546],\n            [37.703906, 55.55451],\n            [37.703816, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.5546],\n            [37.703816, 55.55469],\n            [37.703906, 55.55469],\n            [37.703906, 55.5546],\n            [37.703816, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.55469],\n            [37.703816, 55.55478],\n            [37.703906, 55.55478],\n            [37.703906, 55.55469],\n            [37.703816, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703816, 55.55478],\n            [37.703816, 55.554869],\n            [37.703906, 55.554869],\n            [37.703906, 55.55478],\n            [37.703816, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.552171],\n            [37.703906, 55.552261],\n            [37.703996, 55.552261],\n            [37.703996, 55.552171],\n            [37.703906, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.552261],\n            [37.703906, 55.552351],\n            [37.703996, 55.552351],\n            [37.703996, 55.552261],\n            [37.703906, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.552351],\n            [37.703906, 55.552441],\n            [37.703996, 55.552441],\n            [37.703996, 55.552351],\n            [37.703906, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.552441],\n            [37.703906, 55.552531],\n            [37.703996, 55.552531],\n            [37.703996, 55.552441],\n            [37.703906, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.552531],\n            [37.703906, 55.552621],\n            [37.703996, 55.552621],\n            [37.703996, 55.552531],\n            [37.703906, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.552621],\n            [37.703906, 55.552711],\n            [37.703996, 55.552711],\n            [37.703996, 55.552621],\n            [37.703906, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.552711],\n            [37.703906, 55.552801],\n            [37.703996, 55.552801],\n            [37.703996, 55.552711],\n            [37.703906, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.552801],\n            [37.703906, 55.552891],\n            [37.703996, 55.552891],\n            [37.703996, 55.552801],\n            [37.703906, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.552891],\n            [37.703906, 55.552981],\n            [37.703996, 55.552981],\n            [37.703996, 55.552891],\n            [37.703906, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.552981],\n            [37.703906, 55.553071],\n            [37.703996, 55.553071],\n            [37.703996, 55.552981],\n            [37.703906, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.553071],\n            [37.703906, 55.553161],\n            [37.703996, 55.553161],\n            [37.703996, 55.553071],\n            [37.703906, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.553161],\n            [37.703906, 55.553251],\n            [37.703996, 55.553251],\n            [37.703996, 55.553161],\n            [37.703906, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.553251],\n            [37.703906, 55.553341],\n            [37.703996, 55.553341],\n            [37.703996, 55.553251],\n            [37.703906, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.553341],\n            [37.703906, 55.553431],\n            [37.703996, 55.553431],\n            [37.703996, 55.553341],\n            [37.703906, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.553431],\n            [37.703906, 55.55352],\n            [37.703996, 55.55352],\n            [37.703996, 55.553431],\n            [37.703906, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.55352],\n            [37.703906, 55.55361],\n            [37.703996, 55.55361],\n            [37.703996, 55.55352],\n            [37.703906, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.55361],\n            [37.703906, 55.5537],\n            [37.703996, 55.5537],\n            [37.703996, 55.55361],\n            [37.703906, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.5537],\n            [37.703906, 55.55379],\n            [37.703996, 55.55379],\n            [37.703996, 55.5537],\n            [37.703906, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.55379],\n            [37.703906, 55.55388],\n            [37.703996, 55.55388],\n            [37.703996, 55.55379],\n            [37.703906, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.55388],\n            [37.703906, 55.55397],\n            [37.703996, 55.55397],\n            [37.703996, 55.55388],\n            [37.703906, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.55397],\n            [37.703906, 55.55406],\n            [37.703996, 55.55406],\n            [37.703996, 55.55397],\n            [37.703906, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.55406],\n            [37.703906, 55.55415],\n            [37.703996, 55.55415],\n            [37.703996, 55.55406],\n            [37.703906, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.55415],\n            [37.703906, 55.55424],\n            [37.703996, 55.55424],\n            [37.703996, 55.55415],\n            [37.703906, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.55424],\n            [37.703906, 55.55433],\n            [37.703996, 55.55433],\n            [37.703996, 55.55424],\n            [37.703906, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.55433],\n            [37.703906, 55.55442],\n            [37.703996, 55.55442],\n            [37.703996, 55.55433],\n            [37.703906, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.55442],\n            [37.703906, 55.55451],\n            [37.703996, 55.55451],\n            [37.703996, 55.55442],\n            [37.703906, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.55451],\n            [37.703906, 55.5546],\n            [37.703996, 55.5546],\n            [37.703996, 55.55451],\n            [37.703906, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.5546],\n            [37.703906, 55.55469],\n            [37.703996, 55.55469],\n            [37.703996, 55.5546],\n            [37.703906, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.55469],\n            [37.703906, 55.55478],\n            [37.703996, 55.55478],\n            [37.703996, 55.55469],\n            [37.703906, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703906, 55.55478],\n            [37.703906, 55.554869],\n            [37.703996, 55.554869],\n            [37.703996, 55.55478],\n            [37.703906, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.552082],\n            [37.703996, 55.552171],\n            [37.704086, 55.552171],\n            [37.704086, 55.552082],\n            [37.703996, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.552171],\n            [37.703996, 55.552261],\n            [37.704086, 55.552261],\n            [37.704086, 55.552171],\n            [37.703996, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.552261],\n            [37.703996, 55.552351],\n            [37.704086, 55.552351],\n            [37.704086, 55.552261],\n            [37.703996, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.552351],\n            [37.703996, 55.552441],\n            [37.704086, 55.552441],\n            [37.704086, 55.552351],\n            [37.703996, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.552441],\n            [37.703996, 55.552531],\n            [37.704086, 55.552531],\n            [37.704086, 55.552441],\n            [37.703996, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.552531],\n            [37.703996, 55.552621],\n            [37.704086, 55.552621],\n            [37.704086, 55.552531],\n            [37.703996, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.552621],\n            [37.703996, 55.552711],\n            [37.704086, 55.552711],\n            [37.704086, 55.552621],\n            [37.703996, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.552711],\n            [37.703996, 55.552801],\n            [37.704086, 55.552801],\n            [37.704086, 55.552711],\n            [37.703996, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.552801],\n            [37.703996, 55.552891],\n            [37.704086, 55.552891],\n            [37.704086, 55.552801],\n            [37.703996, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.552891],\n            [37.703996, 55.552981],\n            [37.704086, 55.552981],\n            [37.704086, 55.552891],\n            [37.703996, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.552981],\n            [37.703996, 55.553071],\n            [37.704086, 55.553071],\n            [37.704086, 55.552981],\n            [37.703996, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.553071],\n            [37.703996, 55.553161],\n            [37.704086, 55.553161],\n            [37.704086, 55.553071],\n            [37.703996, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.553161],\n            [37.703996, 55.553251],\n            [37.704086, 55.553251],\n            [37.704086, 55.553161],\n            [37.703996, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.553251],\n            [37.703996, 55.553341],\n            [37.704086, 55.553341],\n            [37.704086, 55.553251],\n            [37.703996, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.553341],\n            [37.703996, 55.553431],\n            [37.704086, 55.553431],\n            [37.704086, 55.553341],\n            [37.703996, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.553431],\n            [37.703996, 55.55352],\n            [37.704086, 55.55352],\n            [37.704086, 55.553431],\n            [37.703996, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.55352],\n            [37.703996, 55.55361],\n            [37.704086, 55.55361],\n            [37.704086, 55.55352],\n            [37.703996, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.55361],\n            [37.703996, 55.5537],\n            [37.704086, 55.5537],\n            [37.704086, 55.55361],\n            [37.703996, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.5537],\n            [37.703996, 55.55379],\n            [37.704086, 55.55379],\n            [37.704086, 55.5537],\n            [37.703996, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.55379],\n            [37.703996, 55.55388],\n            [37.704086, 55.55388],\n            [37.704086, 55.55379],\n            [37.703996, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.55388],\n            [37.703996, 55.55397],\n            [37.704086, 55.55397],\n            [37.704086, 55.55388],\n            [37.703996, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.55397],\n            [37.703996, 55.55406],\n            [37.704086, 55.55406],\n            [37.704086, 55.55397],\n            [37.703996, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.55406],\n            [37.703996, 55.55415],\n            [37.704086, 55.55415],\n            [37.704086, 55.55406],\n            [37.703996, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.55415],\n            [37.703996, 55.55424],\n            [37.704086, 55.55424],\n            [37.704086, 55.55415],\n            [37.703996, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.55424],\n            [37.703996, 55.55433],\n            [37.704086, 55.55433],\n            [37.704086, 55.55424],\n            [37.703996, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.55433],\n            [37.703996, 55.55442],\n            [37.704086, 55.55442],\n            [37.704086, 55.55433],\n            [37.703996, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.55442],\n            [37.703996, 55.55451],\n            [37.704086, 55.55451],\n            [37.704086, 55.55442],\n            [37.703996, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.55451],\n            [37.703996, 55.5546],\n            [37.704086, 55.5546],\n            [37.704086, 55.55451],\n            [37.703996, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.5546],\n            [37.703996, 55.55469],\n            [37.704086, 55.55469],\n            [37.704086, 55.5546],\n            [37.703996, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.55469],\n            [37.703996, 55.55478],\n            [37.704086, 55.55478],\n            [37.704086, 55.55469],\n            [37.703996, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.703996, 55.55478],\n            [37.703996, 55.554869],\n            [37.704086, 55.554869],\n            [37.704086, 55.55478],\n            [37.703996, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.552082],\n            [37.704086, 55.552171],\n            [37.704176, 55.552171],\n            [37.704176, 55.552082],\n            [37.704086, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.552171],\n            [37.704086, 55.552261],\n            [37.704176, 55.552261],\n            [37.704176, 55.552171],\n            [37.704086, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.552261],\n            [37.704086, 55.552351],\n            [37.704176, 55.552351],\n            [37.704176, 55.552261],\n            [37.704086, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.552351],\n            [37.704086, 55.552441],\n            [37.704176, 55.552441],\n            [37.704176, 55.552351],\n            [37.704086, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.552441],\n            [37.704086, 55.552531],\n            [37.704176, 55.552531],\n            [37.704176, 55.552441],\n            [37.704086, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.552531],\n            [37.704086, 55.552621],\n            [37.704176, 55.552621],\n            [37.704176, 55.552531],\n            [37.704086, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.552621],\n            [37.704086, 55.552711],\n            [37.704176, 55.552711],\n            [37.704176, 55.552621],\n            [37.704086, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.552711],\n            [37.704086, 55.552801],\n            [37.704176, 55.552801],\n            [37.704176, 55.552711],\n            [37.704086, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.552801],\n            [37.704086, 55.552891],\n            [37.704176, 55.552891],\n            [37.704176, 55.552801],\n            [37.704086, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.552891],\n            [37.704086, 55.552981],\n            [37.704176, 55.552981],\n            [37.704176, 55.552891],\n            [37.704086, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.552981],\n            [37.704086, 55.553071],\n            [37.704176, 55.553071],\n            [37.704176, 55.552981],\n            [37.704086, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.553071],\n            [37.704086, 55.553161],\n            [37.704176, 55.553161],\n            [37.704176, 55.553071],\n            [37.704086, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.553161],\n            [37.704086, 55.553251],\n            [37.704176, 55.553251],\n            [37.704176, 55.553161],\n            [37.704086, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.553251],\n            [37.704086, 55.553341],\n            [37.704176, 55.553341],\n            [37.704176, 55.553251],\n            [37.704086, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.553341],\n            [37.704086, 55.553431],\n            [37.704176, 55.553431],\n            [37.704176, 55.553341],\n            [37.704086, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.553431],\n            [37.704086, 55.55352],\n            [37.704176, 55.55352],\n            [37.704176, 55.553431],\n            [37.704086, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.55352],\n            [37.704086, 55.55361],\n            [37.704176, 55.55361],\n            [37.704176, 55.55352],\n            [37.704086, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.55361],\n            [37.704086, 55.5537],\n            [37.704176, 55.5537],\n            [37.704176, 55.55361],\n            [37.704086, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.5537],\n            [37.704086, 55.55379],\n            [37.704176, 55.55379],\n            [37.704176, 55.5537],\n            [37.704086, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.55379],\n            [37.704086, 55.55388],\n            [37.704176, 55.55388],\n            [37.704176, 55.55379],\n            [37.704086, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.55388],\n            [37.704086, 55.55397],\n            [37.704176, 55.55397],\n            [37.704176, 55.55388],\n            [37.704086, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.55397],\n            [37.704086, 55.55406],\n            [37.704176, 55.55406],\n            [37.704176, 55.55397],\n            [37.704086, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.55406],\n            [37.704086, 55.55415],\n            [37.704176, 55.55415],\n            [37.704176, 55.55406],\n            [37.704086, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.55415],\n            [37.704086, 55.55424],\n            [37.704176, 55.55424],\n            [37.704176, 55.55415],\n            [37.704086, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.55424],\n            [37.704086, 55.55433],\n            [37.704176, 55.55433],\n            [37.704176, 55.55424],\n            [37.704086, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.55433],\n            [37.704086, 55.55442],\n            [37.704176, 55.55442],\n            [37.704176, 55.55433],\n            [37.704086, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.55442],\n            [37.704086, 55.55451],\n            [37.704176, 55.55451],\n            [37.704176, 55.55442],\n            [37.704086, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.55451],\n            [37.704086, 55.5546],\n            [37.704176, 55.5546],\n            [37.704176, 55.55451],\n            [37.704086, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.5546],\n            [37.704086, 55.55469],\n            [37.704176, 55.55469],\n            [37.704176, 55.5546],\n            [37.704086, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.55469],\n            [37.704086, 55.55478],\n            [37.704176, 55.55478],\n            [37.704176, 55.55469],\n            [37.704086, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.55478],\n            [37.704086, 55.554869],\n            [37.704176, 55.554869],\n            [37.704176, 55.55478],\n            [37.704086, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704086, 55.554869],\n            [37.704086, 55.554959],\n            [37.704176, 55.554959],\n            [37.704176, 55.554869],\n            [37.704086, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.552082],\n            [37.704176, 55.552171],\n            [37.704266, 55.552171],\n            [37.704266, 55.552082],\n            [37.704176, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.552171],\n            [37.704176, 55.552261],\n            [37.704266, 55.552261],\n            [37.704266, 55.552171],\n            [37.704176, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.552261],\n            [37.704176, 55.552351],\n            [37.704266, 55.552351],\n            [37.704266, 55.552261],\n            [37.704176, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.552351],\n            [37.704176, 55.552441],\n            [37.704266, 55.552441],\n            [37.704266, 55.552351],\n            [37.704176, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.552441],\n            [37.704176, 55.552531],\n            [37.704266, 55.552531],\n            [37.704266, 55.552441],\n            [37.704176, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.552531],\n            [37.704176, 55.552621],\n            [37.704266, 55.552621],\n            [37.704266, 55.552531],\n            [37.704176, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.552621],\n            [37.704176, 55.552711],\n            [37.704266, 55.552711],\n            [37.704266, 55.552621],\n            [37.704176, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.552711],\n            [37.704176, 55.552801],\n            [37.704266, 55.552801],\n            [37.704266, 55.552711],\n            [37.704176, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.552801],\n            [37.704176, 55.552891],\n            [37.704266, 55.552891],\n            [37.704266, 55.552801],\n            [37.704176, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.552891],\n            [37.704176, 55.552981],\n            [37.704266, 55.552981],\n            [37.704266, 55.552891],\n            [37.704176, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.552981],\n            [37.704176, 55.553071],\n            [37.704266, 55.553071],\n            [37.704266, 55.552981],\n            [37.704176, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.553071],\n            [37.704176, 55.553161],\n            [37.704266, 55.553161],\n            [37.704266, 55.553071],\n            [37.704176, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.553161],\n            [37.704176, 55.553251],\n            [37.704266, 55.553251],\n            [37.704266, 55.553161],\n            [37.704176, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.553251],\n            [37.704176, 55.553341],\n            [37.704266, 55.553341],\n            [37.704266, 55.553251],\n            [37.704176, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.553341],\n            [37.704176, 55.553431],\n            [37.704266, 55.553431],\n            [37.704266, 55.553341],\n            [37.704176, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.553431],\n            [37.704176, 55.55352],\n            [37.704266, 55.55352],\n            [37.704266, 55.553431],\n            [37.704176, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.55352],\n            [37.704176, 55.55361],\n            [37.704266, 55.55361],\n            [37.704266, 55.55352],\n            [37.704176, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.55361],\n            [37.704176, 55.5537],\n            [37.704266, 55.5537],\n            [37.704266, 55.55361],\n            [37.704176, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.5537],\n            [37.704176, 55.55379],\n            [37.704266, 55.55379],\n            [37.704266, 55.5537],\n            [37.704176, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.55379],\n            [37.704176, 55.55388],\n            [37.704266, 55.55388],\n            [37.704266, 55.55379],\n            [37.704176, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.55388],\n            [37.704176, 55.55397],\n            [37.704266, 55.55397],\n            [37.704266, 55.55388],\n            [37.704176, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.55397],\n            [37.704176, 55.55406],\n            [37.704266, 55.55406],\n            [37.704266, 55.55397],\n            [37.704176, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.55406],\n            [37.704176, 55.55415],\n            [37.704266, 55.55415],\n            [37.704266, 55.55406],\n            [37.704176, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.55415],\n            [37.704176, 55.55424],\n            [37.704266, 55.55424],\n            [37.704266, 55.55415],\n            [37.704176, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.55424],\n            [37.704176, 55.55433],\n            [37.704266, 55.55433],\n            [37.704266, 55.55424],\n            [37.704176, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.55433],\n            [37.704176, 55.55442],\n            [37.704266, 55.55442],\n            [37.704266, 55.55433],\n            [37.704176, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.55442],\n            [37.704176, 55.55451],\n            [37.704266, 55.55451],\n            [37.704266, 55.55442],\n            [37.704176, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.55451],\n            [37.704176, 55.5546],\n            [37.704266, 55.5546],\n            [37.704266, 55.55451],\n            [37.704176, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.5546],\n            [37.704176, 55.55469],\n            [37.704266, 55.55469],\n            [37.704266, 55.5546],\n            [37.704176, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.55469],\n            [37.704176, 55.55478],\n            [37.704266, 55.55478],\n            [37.704266, 55.55469],\n            [37.704176, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.55478],\n            [37.704176, 55.554869],\n            [37.704266, 55.554869],\n            [37.704266, 55.55478],\n            [37.704176, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704176, 55.554869],\n            [37.704176, 55.554959],\n            [37.704266, 55.554959],\n            [37.704266, 55.554869],\n            [37.704176, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.551992],\n            [37.704266, 55.552082],\n            [37.704356, 55.552082],\n            [37.704356, 55.551992],\n            [37.704266, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.552082],\n            [37.704266, 55.552171],\n            [37.704356, 55.552171],\n            [37.704356, 55.552082],\n            [37.704266, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.552171],\n            [37.704266, 55.552261],\n            [37.704356, 55.552261],\n            [37.704356, 55.552171],\n            [37.704266, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.552261],\n            [37.704266, 55.552351],\n            [37.704356, 55.552351],\n            [37.704356, 55.552261],\n            [37.704266, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.552351],\n            [37.704266, 55.552441],\n            [37.704356, 55.552441],\n            [37.704356, 55.552351],\n            [37.704266, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.552441],\n            [37.704266, 55.552531],\n            [37.704356, 55.552531],\n            [37.704356, 55.552441],\n            [37.704266, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.552531],\n            [37.704266, 55.552621],\n            [37.704356, 55.552621],\n            [37.704356, 55.552531],\n            [37.704266, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.552621],\n            [37.704266, 55.552711],\n            [37.704356, 55.552711],\n            [37.704356, 55.552621],\n            [37.704266, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.552711],\n            [37.704266, 55.552801],\n            [37.704356, 55.552801],\n            [37.704356, 55.552711],\n            [37.704266, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.552801],\n            [37.704266, 55.552891],\n            [37.704356, 55.552891],\n            [37.704356, 55.552801],\n            [37.704266, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.552891],\n            [37.704266, 55.552981],\n            [37.704356, 55.552981],\n            [37.704356, 55.552891],\n            [37.704266, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.552981],\n            [37.704266, 55.553071],\n            [37.704356, 55.553071],\n            [37.704356, 55.552981],\n            [37.704266, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.553071],\n            [37.704266, 55.553161],\n            [37.704356, 55.553161],\n            [37.704356, 55.553071],\n            [37.704266, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.553161],\n            [37.704266, 55.553251],\n            [37.704356, 55.553251],\n            [37.704356, 55.553161],\n            [37.704266, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.553251],\n            [37.704266, 55.553341],\n            [37.704356, 55.553341],\n            [37.704356, 55.553251],\n            [37.704266, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.553341],\n            [37.704266, 55.553431],\n            [37.704356, 55.553431],\n            [37.704356, 55.553341],\n            [37.704266, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.553431],\n            [37.704266, 55.55352],\n            [37.704356, 55.55352],\n            [37.704356, 55.553431],\n            [37.704266, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.55352],\n            [37.704266, 55.55361],\n            [37.704356, 55.55361],\n            [37.704356, 55.55352],\n            [37.704266, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.55361],\n            [37.704266, 55.5537],\n            [37.704356, 55.5537],\n            [37.704356, 55.55361],\n            [37.704266, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.5537],\n            [37.704266, 55.55379],\n            [37.704356, 55.55379],\n            [37.704356, 55.5537],\n            [37.704266, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.55379],\n            [37.704266, 55.55388],\n            [37.704356, 55.55388],\n            [37.704356, 55.55379],\n            [37.704266, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.55388],\n            [37.704266, 55.55397],\n            [37.704356, 55.55397],\n            [37.704356, 55.55388],\n            [37.704266, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.55397],\n            [37.704266, 55.55406],\n            [37.704356, 55.55406],\n            [37.704356, 55.55397],\n            [37.704266, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.55406],\n            [37.704266, 55.55415],\n            [37.704356, 55.55415],\n            [37.704356, 55.55406],\n            [37.704266, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.55415],\n            [37.704266, 55.55424],\n            [37.704356, 55.55424],\n            [37.704356, 55.55415],\n            [37.704266, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.55424],\n            [37.704266, 55.55433],\n            [37.704356, 55.55433],\n            [37.704356, 55.55424],\n            [37.704266, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.55433],\n            [37.704266, 55.55442],\n            [37.704356, 55.55442],\n            [37.704356, 55.55433],\n            [37.704266, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.55442],\n            [37.704266, 55.55451],\n            [37.704356, 55.55451],\n            [37.704356, 55.55442],\n            [37.704266, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.55451],\n            [37.704266, 55.5546],\n            [37.704356, 55.5546],\n            [37.704356, 55.55451],\n            [37.704266, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.5546],\n            [37.704266, 55.55469],\n            [37.704356, 55.55469],\n            [37.704356, 55.5546],\n            [37.704266, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.55469],\n            [37.704266, 55.55478],\n            [37.704356, 55.55478],\n            [37.704356, 55.55469],\n            [37.704266, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.55478],\n            [37.704266, 55.554869],\n            [37.704356, 55.554869],\n            [37.704356, 55.55478],\n            [37.704266, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704266, 55.554869],\n            [37.704266, 55.554959],\n            [37.704356, 55.554959],\n            [37.704356, 55.554869],\n            [37.704266, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.551992],\n            [37.704356, 55.552082],\n            [37.704446, 55.552082],\n            [37.704446, 55.551992],\n            [37.704356, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.552082],\n            [37.704356, 55.552171],\n            [37.704446, 55.552171],\n            [37.704446, 55.552082],\n            [37.704356, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.552171],\n            [37.704356, 55.552261],\n            [37.704446, 55.552261],\n            [37.704446, 55.552171],\n            [37.704356, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.552261],\n            [37.704356, 55.552351],\n            [37.704446, 55.552351],\n            [37.704446, 55.552261],\n            [37.704356, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.552351],\n            [37.704356, 55.552441],\n            [37.704446, 55.552441],\n            [37.704446, 55.552351],\n            [37.704356, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.552441],\n            [37.704356, 55.552531],\n            [37.704446, 55.552531],\n            [37.704446, 55.552441],\n            [37.704356, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.552531],\n            [37.704356, 55.552621],\n            [37.704446, 55.552621],\n            [37.704446, 55.552531],\n            [37.704356, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.552621],\n            [37.704356, 55.552711],\n            [37.704446, 55.552711],\n            [37.704446, 55.552621],\n            [37.704356, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.552711],\n            [37.704356, 55.552801],\n            [37.704446, 55.552801],\n            [37.704446, 55.552711],\n            [37.704356, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.552801],\n            [37.704356, 55.552891],\n            [37.704446, 55.552891],\n            [37.704446, 55.552801],\n            [37.704356, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.552891],\n            [37.704356, 55.552981],\n            [37.704446, 55.552981],\n            [37.704446, 55.552891],\n            [37.704356, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.552981],\n            [37.704356, 55.553071],\n            [37.704446, 55.553071],\n            [37.704446, 55.552981],\n            [37.704356, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.553071],\n            [37.704356, 55.553161],\n            [37.704446, 55.553161],\n            [37.704446, 55.553071],\n            [37.704356, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.553161],\n            [37.704356, 55.553251],\n            [37.704446, 55.553251],\n            [37.704446, 55.553161],\n            [37.704356, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.553251],\n            [37.704356, 55.553341],\n            [37.704446, 55.553341],\n            [37.704446, 55.553251],\n            [37.704356, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.553341],\n            [37.704356, 55.553431],\n            [37.704446, 55.553431],\n            [37.704446, 55.553341],\n            [37.704356, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.553431],\n            [37.704356, 55.55352],\n            [37.704446, 55.55352],\n            [37.704446, 55.553431],\n            [37.704356, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.55352],\n            [37.704356, 55.55361],\n            [37.704446, 55.55361],\n            [37.704446, 55.55352],\n            [37.704356, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.55361],\n            [37.704356, 55.5537],\n            [37.704446, 55.5537],\n            [37.704446, 55.55361],\n            [37.704356, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.5537],\n            [37.704356, 55.55379],\n            [37.704446, 55.55379],\n            [37.704446, 55.5537],\n            [37.704356, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.55379],\n            [37.704356, 55.55388],\n            [37.704446, 55.55388],\n            [37.704446, 55.55379],\n            [37.704356, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.55388],\n            [37.704356, 55.55397],\n            [37.704446, 55.55397],\n            [37.704446, 55.55388],\n            [37.704356, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.55397],\n            [37.704356, 55.55406],\n            [37.704446, 55.55406],\n            [37.704446, 55.55397],\n            [37.704356, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.55406],\n            [37.704356, 55.55415],\n            [37.704446, 55.55415],\n            [37.704446, 55.55406],\n            [37.704356, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.55415],\n            [37.704356, 55.55424],\n            [37.704446, 55.55424],\n            [37.704446, 55.55415],\n            [37.704356, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.55424],\n            [37.704356, 55.55433],\n            [37.704446, 55.55433],\n            [37.704446, 55.55424],\n            [37.704356, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.55433],\n            [37.704356, 55.55442],\n            [37.704446, 55.55442],\n            [37.704446, 55.55433],\n            [37.704356, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.55442],\n            [37.704356, 55.55451],\n            [37.704446, 55.55451],\n            [37.704446, 55.55442],\n            [37.704356, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.55451],\n            [37.704356, 55.5546],\n            [37.704446, 55.5546],\n            [37.704446, 55.55451],\n            [37.704356, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.5546],\n            [37.704356, 55.55469],\n            [37.704446, 55.55469],\n            [37.704446, 55.5546],\n            [37.704356, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.55469],\n            [37.704356, 55.55478],\n            [37.704446, 55.55478],\n            [37.704446, 55.55469],\n            [37.704356, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.55478],\n            [37.704356, 55.554869],\n            [37.704446, 55.554869],\n            [37.704446, 55.55478],\n            [37.704356, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704356, 55.554869],\n            [37.704356, 55.554959],\n            [37.704446, 55.554959],\n            [37.704446, 55.554869],\n            [37.704356, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.551992],\n            [37.704446, 55.552082],\n            [37.704536, 55.552082],\n            [37.704536, 55.551992],\n            [37.704446, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.552082],\n            [37.704446, 55.552171],\n            [37.704536, 55.552171],\n            [37.704536, 55.552082],\n            [37.704446, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.552171],\n            [37.704446, 55.552261],\n            [37.704536, 55.552261],\n            [37.704536, 55.552171],\n            [37.704446, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.552261],\n            [37.704446, 55.552351],\n            [37.704536, 55.552351],\n            [37.704536, 55.552261],\n            [37.704446, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.552351],\n            [37.704446, 55.552441],\n            [37.704536, 55.552441],\n            [37.704536, 55.552351],\n            [37.704446, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.552441],\n            [37.704446, 55.552531],\n            [37.704536, 55.552531],\n            [37.704536, 55.552441],\n            [37.704446, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.552531],\n            [37.704446, 55.552621],\n            [37.704536, 55.552621],\n            [37.704536, 55.552531],\n            [37.704446, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.552621],\n            [37.704446, 55.552711],\n            [37.704536, 55.552711],\n            [37.704536, 55.552621],\n            [37.704446, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.552711],\n            [37.704446, 55.552801],\n            [37.704536, 55.552801],\n            [37.704536, 55.552711],\n            [37.704446, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.552801],\n            [37.704446, 55.552891],\n            [37.704536, 55.552891],\n            [37.704536, 55.552801],\n            [37.704446, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.552891],\n            [37.704446, 55.552981],\n            [37.704536, 55.552981],\n            [37.704536, 55.552891],\n            [37.704446, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.552981],\n            [37.704446, 55.553071],\n            [37.704536, 55.553071],\n            [37.704536, 55.552981],\n            [37.704446, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.553071],\n            [37.704446, 55.553161],\n            [37.704536, 55.553161],\n            [37.704536, 55.553071],\n            [37.704446, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.553161],\n            [37.704446, 55.553251],\n            [37.704536, 55.553251],\n            [37.704536, 55.553161],\n            [37.704446, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.553251],\n            [37.704446, 55.553341],\n            [37.704536, 55.553341],\n            [37.704536, 55.553251],\n            [37.704446, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.553341],\n            [37.704446, 55.553431],\n            [37.704536, 55.553431],\n            [37.704536, 55.553341],\n            [37.704446, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.553431],\n            [37.704446, 55.55352],\n            [37.704536, 55.55352],\n            [37.704536, 55.553431],\n            [37.704446, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.55352],\n            [37.704446, 55.55361],\n            [37.704536, 55.55361],\n            [37.704536, 55.55352],\n            [37.704446, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.55361],\n            [37.704446, 55.5537],\n            [37.704536, 55.5537],\n            [37.704536, 55.55361],\n            [37.704446, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.5537],\n            [37.704446, 55.55379],\n            [37.704536, 55.55379],\n            [37.704536, 55.5537],\n            [37.704446, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.55379],\n            [37.704446, 55.55388],\n            [37.704536, 55.55388],\n            [37.704536, 55.55379],\n            [37.704446, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.55388],\n            [37.704446, 55.55397],\n            [37.704536, 55.55397],\n            [37.704536, 55.55388],\n            [37.704446, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.55397],\n            [37.704446, 55.55406],\n            [37.704536, 55.55406],\n            [37.704536, 55.55397],\n            [37.704446, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.55406],\n            [37.704446, 55.55415],\n            [37.704536, 55.55415],\n            [37.704536, 55.55406],\n            [37.704446, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.55415],\n            [37.704446, 55.55424],\n            [37.704536, 55.55424],\n            [37.704536, 55.55415],\n            [37.704446, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.55424],\n            [37.704446, 55.55433],\n            [37.704536, 55.55433],\n            [37.704536, 55.55424],\n            [37.704446, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.55433],\n            [37.704446, 55.55442],\n            [37.704536, 55.55442],\n            [37.704536, 55.55433],\n            [37.704446, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.55442],\n            [37.704446, 55.55451],\n            [37.704536, 55.55451],\n            [37.704536, 55.55442],\n            [37.704446, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.55451],\n            [37.704446, 55.5546],\n            [37.704536, 55.5546],\n            [37.704536, 55.55451],\n            [37.704446, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.5546],\n            [37.704446, 55.55469],\n            [37.704536, 55.55469],\n            [37.704536, 55.5546],\n            [37.704446, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.55469],\n            [37.704446, 55.55478],\n            [37.704536, 55.55478],\n            [37.704536, 55.55469],\n            [37.704446, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.55478],\n            [37.704446, 55.554869],\n            [37.704536, 55.554869],\n            [37.704536, 55.55478],\n            [37.704446, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.554869],\n            [37.704446, 55.554959],\n            [37.704536, 55.554959],\n            [37.704536, 55.554869],\n            [37.704446, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704446, 55.554959],\n            [37.704446, 55.555049],\n            [37.704536, 55.555049],\n            [37.704536, 55.554959],\n            [37.704446, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.551992],\n            [37.704536, 55.552082],\n            [37.704625, 55.552082],\n            [37.704625, 55.551992],\n            [37.704536, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.552082],\n            [37.704536, 55.552171],\n            [37.704625, 55.552171],\n            [37.704625, 55.552082],\n            [37.704536, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.552171],\n            [37.704536, 55.552261],\n            [37.704625, 55.552261],\n            [37.704625, 55.552171],\n            [37.704536, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.552261],\n            [37.704536, 55.552351],\n            [37.704625, 55.552351],\n            [37.704625, 55.552261],\n            [37.704536, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.552351],\n            [37.704536, 55.552441],\n            [37.704625, 55.552441],\n            [37.704625, 55.552351],\n            [37.704536, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.552441],\n            [37.704536, 55.552531],\n            [37.704625, 55.552531],\n            [37.704625, 55.552441],\n            [37.704536, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.552531],\n            [37.704536, 55.552621],\n            [37.704625, 55.552621],\n            [37.704625, 55.552531],\n            [37.704536, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.552621],\n            [37.704536, 55.552711],\n            [37.704625, 55.552711],\n            [37.704625, 55.552621],\n            [37.704536, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.552711],\n            [37.704536, 55.552801],\n            [37.704625, 55.552801],\n            [37.704625, 55.552711],\n            [37.704536, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.552801],\n            [37.704536, 55.552891],\n            [37.704625, 55.552891],\n            [37.704625, 55.552801],\n            [37.704536, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.552891],\n            [37.704536, 55.552981],\n            [37.704625, 55.552981],\n            [37.704625, 55.552891],\n            [37.704536, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.552981],\n            [37.704536, 55.553071],\n            [37.704625, 55.553071],\n            [37.704625, 55.552981],\n            [37.704536, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.553071],\n            [37.704536, 55.553161],\n            [37.704625, 55.553161],\n            [37.704625, 55.553071],\n            [37.704536, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.553161],\n            [37.704536, 55.553251],\n            [37.704625, 55.553251],\n            [37.704625, 55.553161],\n            [37.704536, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.553251],\n            [37.704536, 55.553341],\n            [37.704625, 55.553341],\n            [37.704625, 55.553251],\n            [37.704536, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.553341],\n            [37.704536, 55.553431],\n            [37.704625, 55.553431],\n            [37.704625, 55.553341],\n            [37.704536, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.553431],\n            [37.704536, 55.55352],\n            [37.704625, 55.55352],\n            [37.704625, 55.553431],\n            [37.704536, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.55352],\n            [37.704536, 55.55361],\n            [37.704625, 55.55361],\n            [37.704625, 55.55352],\n            [37.704536, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.55361],\n            [37.704536, 55.5537],\n            [37.704625, 55.5537],\n            [37.704625, 55.55361],\n            [37.704536, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.5537],\n            [37.704536, 55.55379],\n            [37.704625, 55.55379],\n            [37.704625, 55.5537],\n            [37.704536, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.55379],\n            [37.704536, 55.55388],\n            [37.704625, 55.55388],\n            [37.704625, 55.55379],\n            [37.704536, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.55388],\n            [37.704536, 55.55397],\n            [37.704625, 55.55397],\n            [37.704625, 55.55388],\n            [37.704536, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.55397],\n            [37.704536, 55.55406],\n            [37.704625, 55.55406],\n            [37.704625, 55.55397],\n            [37.704536, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.55406],\n            [37.704536, 55.55415],\n            [37.704625, 55.55415],\n            [37.704625, 55.55406],\n            [37.704536, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.55415],\n            [37.704536, 55.55424],\n            [37.704625, 55.55424],\n            [37.704625, 55.55415],\n            [37.704536, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.55424],\n            [37.704536, 55.55433],\n            [37.704625, 55.55433],\n            [37.704625, 55.55424],\n            [37.704536, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.55433],\n            [37.704536, 55.55442],\n            [37.704625, 55.55442],\n            [37.704625, 55.55433],\n            [37.704536, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.55442],\n            [37.704536, 55.55451],\n            [37.704625, 55.55451],\n            [37.704625, 55.55442],\n            [37.704536, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.55451],\n            [37.704536, 55.5546],\n            [37.704625, 55.5546],\n            [37.704625, 55.55451],\n            [37.704536, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.5546],\n            [37.704536, 55.55469],\n            [37.704625, 55.55469],\n            [37.704625, 55.5546],\n            [37.704536, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.55469],\n            [37.704536, 55.55478],\n            [37.704625, 55.55478],\n            [37.704625, 55.55469],\n            [37.704536, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.55478],\n            [37.704536, 55.554869],\n            [37.704625, 55.554869],\n            [37.704625, 55.55478],\n            [37.704536, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.554869],\n            [37.704536, 55.554959],\n            [37.704625, 55.554959],\n            [37.704625, 55.554869],\n            [37.704536, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704536, 55.554959],\n            [37.704536, 55.555049],\n            [37.704625, 55.555049],\n            [37.704625, 55.554959],\n            [37.704536, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.551902],\n            [37.704625, 55.551992],\n            [37.704715, 55.551992],\n            [37.704715, 55.551902],\n            [37.704625, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.551992],\n            [37.704625, 55.552082],\n            [37.704715, 55.552082],\n            [37.704715, 55.551992],\n            [37.704625, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.552082],\n            [37.704625, 55.552171],\n            [37.704715, 55.552171],\n            [37.704715, 55.552082],\n            [37.704625, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.552171],\n            [37.704625, 55.552261],\n            [37.704715, 55.552261],\n            [37.704715, 55.552171],\n            [37.704625, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.552261],\n            [37.704625, 55.552351],\n            [37.704715, 55.552351],\n            [37.704715, 55.552261],\n            [37.704625, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.552351],\n            [37.704625, 55.552441],\n            [37.704715, 55.552441],\n            [37.704715, 55.552351],\n            [37.704625, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.552441],\n            [37.704625, 55.552531],\n            [37.704715, 55.552531],\n            [37.704715, 55.552441],\n            [37.704625, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.552531],\n            [37.704625, 55.552621],\n            [37.704715, 55.552621],\n            [37.704715, 55.552531],\n            [37.704625, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.552621],\n            [37.704625, 55.552711],\n            [37.704715, 55.552711],\n            [37.704715, 55.552621],\n            [37.704625, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.552711],\n            [37.704625, 55.552801],\n            [37.704715, 55.552801],\n            [37.704715, 55.552711],\n            [37.704625, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.552801],\n            [37.704625, 55.552891],\n            [37.704715, 55.552891],\n            [37.704715, 55.552801],\n            [37.704625, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.552891],\n            [37.704625, 55.552981],\n            [37.704715, 55.552981],\n            [37.704715, 55.552891],\n            [37.704625, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.552981],\n            [37.704625, 55.553071],\n            [37.704715, 55.553071],\n            [37.704715, 55.552981],\n            [37.704625, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.553071],\n            [37.704625, 55.553161],\n            [37.704715, 55.553161],\n            [37.704715, 55.553071],\n            [37.704625, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.553161],\n            [37.704625, 55.553251],\n            [37.704715, 55.553251],\n            [37.704715, 55.553161],\n            [37.704625, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.553251],\n            [37.704625, 55.553341],\n            [37.704715, 55.553341],\n            [37.704715, 55.553251],\n            [37.704625, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.553341],\n            [37.704625, 55.553431],\n            [37.704715, 55.553431],\n            [37.704715, 55.553341],\n            [37.704625, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.553431],\n            [37.704625, 55.55352],\n            [37.704715, 55.55352],\n            [37.704715, 55.553431],\n            [37.704625, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.55352],\n            [37.704625, 55.55361],\n            [37.704715, 55.55361],\n            [37.704715, 55.55352],\n            [37.704625, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.55361],\n            [37.704625, 55.5537],\n            [37.704715, 55.5537],\n            [37.704715, 55.55361],\n            [37.704625, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.5537],\n            [37.704625, 55.55379],\n            [37.704715, 55.55379],\n            [37.704715, 55.5537],\n            [37.704625, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.55379],\n            [37.704625, 55.55388],\n            [37.704715, 55.55388],\n            [37.704715, 55.55379],\n            [37.704625, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.55388],\n            [37.704625, 55.55397],\n            [37.704715, 55.55397],\n            [37.704715, 55.55388],\n            [37.704625, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.55397],\n            [37.704625, 55.55406],\n            [37.704715, 55.55406],\n            [37.704715, 55.55397],\n            [37.704625, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.55406],\n            [37.704625, 55.55415],\n            [37.704715, 55.55415],\n            [37.704715, 55.55406],\n            [37.704625, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.55415],\n            [37.704625, 55.55424],\n            [37.704715, 55.55424],\n            [37.704715, 55.55415],\n            [37.704625, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.55424],\n            [37.704625, 55.55433],\n            [37.704715, 55.55433],\n            [37.704715, 55.55424],\n            [37.704625, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.55433],\n            [37.704625, 55.55442],\n            [37.704715, 55.55442],\n            [37.704715, 55.55433],\n            [37.704625, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.55442],\n            [37.704625, 55.55451],\n            [37.704715, 55.55451],\n            [37.704715, 55.55442],\n            [37.704625, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.55451],\n            [37.704625, 55.5546],\n            [37.704715, 55.5546],\n            [37.704715, 55.55451],\n            [37.704625, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.5546],\n            [37.704625, 55.55469],\n            [37.704715, 55.55469],\n            [37.704715, 55.5546],\n            [37.704625, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.55469],\n            [37.704625, 55.55478],\n            [37.704715, 55.55478],\n            [37.704715, 55.55469],\n            [37.704625, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.55478],\n            [37.704625, 55.554869],\n            [37.704715, 55.554869],\n            [37.704715, 55.55478],\n            [37.704625, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.554869],\n            [37.704625, 55.554959],\n            [37.704715, 55.554959],\n            [37.704715, 55.554869],\n            [37.704625, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704625, 55.554959],\n            [37.704625, 55.555049],\n            [37.704715, 55.555049],\n            [37.704715, 55.554959],\n            [37.704625, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.551902],\n            [37.704715, 55.551992],\n            [37.704805, 55.551992],\n            [37.704805, 55.551902],\n            [37.704715, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.551992],\n            [37.704715, 55.552082],\n            [37.704805, 55.552082],\n            [37.704805, 55.551992],\n            [37.704715, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.552082],\n            [37.704715, 55.552171],\n            [37.704805, 55.552171],\n            [37.704805, 55.552082],\n            [37.704715, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.552171],\n            [37.704715, 55.552261],\n            [37.704805, 55.552261],\n            [37.704805, 55.552171],\n            [37.704715, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.552261],\n            [37.704715, 55.552351],\n            [37.704805, 55.552351],\n            [37.704805, 55.552261],\n            [37.704715, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.552351],\n            [37.704715, 55.552441],\n            [37.704805, 55.552441],\n            [37.704805, 55.552351],\n            [37.704715, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.552441],\n            [37.704715, 55.552531],\n            [37.704805, 55.552531],\n            [37.704805, 55.552441],\n            [37.704715, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.552531],\n            [37.704715, 55.552621],\n            [37.704805, 55.552621],\n            [37.704805, 55.552531],\n            [37.704715, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.552621],\n            [37.704715, 55.552711],\n            [37.704805, 55.552711],\n            [37.704805, 55.552621],\n            [37.704715, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.552711],\n            [37.704715, 55.552801],\n            [37.704805, 55.552801],\n            [37.704805, 55.552711],\n            [37.704715, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.552801],\n            [37.704715, 55.552891],\n            [37.704805, 55.552891],\n            [37.704805, 55.552801],\n            [37.704715, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.552891],\n            [37.704715, 55.552981],\n            [37.704805, 55.552981],\n            [37.704805, 55.552891],\n            [37.704715, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.552981],\n            [37.704715, 55.553071],\n            [37.704805, 55.553071],\n            [37.704805, 55.552981],\n            [37.704715, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.553071],\n            [37.704715, 55.553161],\n            [37.704805, 55.553161],\n            [37.704805, 55.553071],\n            [37.704715, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.553161],\n            [37.704715, 55.553251],\n            [37.704805, 55.553251],\n            [37.704805, 55.553161],\n            [37.704715, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.553251],\n            [37.704715, 55.553341],\n            [37.704805, 55.553341],\n            [37.704805, 55.553251],\n            [37.704715, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.553341],\n            [37.704715, 55.553431],\n            [37.704805, 55.553431],\n            [37.704805, 55.553341],\n            [37.704715, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.553431],\n            [37.704715, 55.55352],\n            [37.704805, 55.55352],\n            [37.704805, 55.553431],\n            [37.704715, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.55352],\n            [37.704715, 55.55361],\n            [37.704805, 55.55361],\n            [37.704805, 55.55352],\n            [37.704715, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.55361],\n            [37.704715, 55.5537],\n            [37.704805, 55.5537],\n            [37.704805, 55.55361],\n            [37.704715, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.5537],\n            [37.704715, 55.55379],\n            [37.704805, 55.55379],\n            [37.704805, 55.5537],\n            [37.704715, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.55379],\n            [37.704715, 55.55388],\n            [37.704805, 55.55388],\n            [37.704805, 55.55379],\n            [37.704715, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.55388],\n            [37.704715, 55.55397],\n            [37.704805, 55.55397],\n            [37.704805, 55.55388],\n            [37.704715, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.55397],\n            [37.704715, 55.55406],\n            [37.704805, 55.55406],\n            [37.704805, 55.55397],\n            [37.704715, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.55406],\n            [37.704715, 55.55415],\n            [37.704805, 55.55415],\n            [37.704805, 55.55406],\n            [37.704715, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.55415],\n            [37.704715, 55.55424],\n            [37.704805, 55.55424],\n            [37.704805, 55.55415],\n            [37.704715, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.55424],\n            [37.704715, 55.55433],\n            [37.704805, 55.55433],\n            [37.704805, 55.55424],\n            [37.704715, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.55433],\n            [37.704715, 55.55442],\n            [37.704805, 55.55442],\n            [37.704805, 55.55433],\n            [37.704715, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.55442],\n            [37.704715, 55.55451],\n            [37.704805, 55.55451],\n            [37.704805, 55.55442],\n            [37.704715, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.55451],\n            [37.704715, 55.5546],\n            [37.704805, 55.5546],\n            [37.704805, 55.55451],\n            [37.704715, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.5546],\n            [37.704715, 55.55469],\n            [37.704805, 55.55469],\n            [37.704805, 55.5546],\n            [37.704715, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.55469],\n            [37.704715, 55.55478],\n            [37.704805, 55.55478],\n            [37.704805, 55.55469],\n            [37.704715, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.55478],\n            [37.704715, 55.554869],\n            [37.704805, 55.554869],\n            [37.704805, 55.55478],\n            [37.704715, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.554869],\n            [37.704715, 55.554959],\n            [37.704805, 55.554959],\n            [37.704805, 55.554869],\n            [37.704715, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704715, 55.554959],\n            [37.704715, 55.555049],\n            [37.704805, 55.555049],\n            [37.704805, 55.554959],\n            [37.704715, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.551902],\n            [37.704805, 55.551992],\n            [37.704895, 55.551992],\n            [37.704895, 55.551902],\n            [37.704805, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.551992],\n            [37.704805, 55.552082],\n            [37.704895, 55.552082],\n            [37.704895, 55.551992],\n            [37.704805, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.552082],\n            [37.704805, 55.552171],\n            [37.704895, 55.552171],\n            [37.704895, 55.552082],\n            [37.704805, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.552171],\n            [37.704805, 55.552261],\n            [37.704895, 55.552261],\n            [37.704895, 55.552171],\n            [37.704805, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.552261],\n            [37.704805, 55.552351],\n            [37.704895, 55.552351],\n            [37.704895, 55.552261],\n            [37.704805, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.552351],\n            [37.704805, 55.552441],\n            [37.704895, 55.552441],\n            [37.704895, 55.552351],\n            [37.704805, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.552441],\n            [37.704805, 55.552531],\n            [37.704895, 55.552531],\n            [37.704895, 55.552441],\n            [37.704805, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.552531],\n            [37.704805, 55.552621],\n            [37.704895, 55.552621],\n            [37.704895, 55.552531],\n            [37.704805, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.552621],\n            [37.704805, 55.552711],\n            [37.704895, 55.552711],\n            [37.704895, 55.552621],\n            [37.704805, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.552711],\n            [37.704805, 55.552801],\n            [37.704895, 55.552801],\n            [37.704895, 55.552711],\n            [37.704805, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.552801],\n            [37.704805, 55.552891],\n            [37.704895, 55.552891],\n            [37.704895, 55.552801],\n            [37.704805, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.552891],\n            [37.704805, 55.552981],\n            [37.704895, 55.552981],\n            [37.704895, 55.552891],\n            [37.704805, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.552981],\n            [37.704805, 55.553071],\n            [37.704895, 55.553071],\n            [37.704895, 55.552981],\n            [37.704805, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.553071],\n            [37.704805, 55.553161],\n            [37.704895, 55.553161],\n            [37.704895, 55.553071],\n            [37.704805, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.553161],\n            [37.704805, 55.553251],\n            [37.704895, 55.553251],\n            [37.704895, 55.553161],\n            [37.704805, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.553251],\n            [37.704805, 55.553341],\n            [37.704895, 55.553341],\n            [37.704895, 55.553251],\n            [37.704805, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.553341],\n            [37.704805, 55.553431],\n            [37.704895, 55.553431],\n            [37.704895, 55.553341],\n            [37.704805, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.553431],\n            [37.704805, 55.55352],\n            [37.704895, 55.55352],\n            [37.704895, 55.553431],\n            [37.704805, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.55352],\n            [37.704805, 55.55361],\n            [37.704895, 55.55361],\n            [37.704895, 55.55352],\n            [37.704805, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.55361],\n            [37.704805, 55.5537],\n            [37.704895, 55.5537],\n            [37.704895, 55.55361],\n            [37.704805, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.5537],\n            [37.704805, 55.55379],\n            [37.704895, 55.55379],\n            [37.704895, 55.5537],\n            [37.704805, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.55379],\n            [37.704805, 55.55388],\n            [37.704895, 55.55388],\n            [37.704895, 55.55379],\n            [37.704805, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.55388],\n            [37.704805, 55.55397],\n            [37.704895, 55.55397],\n            [37.704895, 55.55388],\n            [37.704805, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.55397],\n            [37.704805, 55.55406],\n            [37.704895, 55.55406],\n            [37.704895, 55.55397],\n            [37.704805, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.55406],\n            [37.704805, 55.55415],\n            [37.704895, 55.55415],\n            [37.704895, 55.55406],\n            [37.704805, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.55415],\n            [37.704805, 55.55424],\n            [37.704895, 55.55424],\n            [37.704895, 55.55415],\n            [37.704805, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.55424],\n            [37.704805, 55.55433],\n            [37.704895, 55.55433],\n            [37.704895, 55.55424],\n            [37.704805, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.55433],\n            [37.704805, 55.55442],\n            [37.704895, 55.55442],\n            [37.704895, 55.55433],\n            [37.704805, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.55442],\n            [37.704805, 55.55451],\n            [37.704895, 55.55451],\n            [37.704895, 55.55442],\n            [37.704805, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.55451],\n            [37.704805, 55.5546],\n            [37.704895, 55.5546],\n            [37.704895, 55.55451],\n            [37.704805, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.5546],\n            [37.704805, 55.55469],\n            [37.704895, 55.55469],\n            [37.704895, 55.5546],\n            [37.704805, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.55469],\n            [37.704805, 55.55478],\n            [37.704895, 55.55478],\n            [37.704895, 55.55469],\n            [37.704805, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.55478],\n            [37.704805, 55.554869],\n            [37.704895, 55.554869],\n            [37.704895, 55.55478],\n            [37.704805, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.554869],\n            [37.704805, 55.554959],\n            [37.704895, 55.554959],\n            [37.704895, 55.554869],\n            [37.704805, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.554959],\n            [37.704805, 55.555049],\n            [37.704895, 55.555049],\n            [37.704895, 55.554959],\n            [37.704805, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704805, 55.555049],\n            [37.704805, 55.555139],\n            [37.704895, 55.555139],\n            [37.704895, 55.555049],\n            [37.704805, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.551902],\n            [37.704895, 55.551992],\n            [37.704985, 55.551992],\n            [37.704985, 55.551902],\n            [37.704895, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.551992],\n            [37.704895, 55.552082],\n            [37.704985, 55.552082],\n            [37.704985, 55.551992],\n            [37.704895, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.552082],\n            [37.704895, 55.552171],\n            [37.704985, 55.552171],\n            [37.704985, 55.552082],\n            [37.704895, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.552171],\n            [37.704895, 55.552261],\n            [37.704985, 55.552261],\n            [37.704985, 55.552171],\n            [37.704895, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.552261],\n            [37.704895, 55.552351],\n            [37.704985, 55.552351],\n            [37.704985, 55.552261],\n            [37.704895, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.552351],\n            [37.704895, 55.552441],\n            [37.704985, 55.552441],\n            [37.704985, 55.552351],\n            [37.704895, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.552441],\n            [37.704895, 55.552531],\n            [37.704985, 55.552531],\n            [37.704985, 55.552441],\n            [37.704895, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.552531],\n            [37.704895, 55.552621],\n            [37.704985, 55.552621],\n            [37.704985, 55.552531],\n            [37.704895, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.552621],\n            [37.704895, 55.552711],\n            [37.704985, 55.552711],\n            [37.704985, 55.552621],\n            [37.704895, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.552711],\n            [37.704895, 55.552801],\n            [37.704985, 55.552801],\n            [37.704985, 55.552711],\n            [37.704895, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.552801],\n            [37.704895, 55.552891],\n            [37.704985, 55.552891],\n            [37.704985, 55.552801],\n            [37.704895, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.552891],\n            [37.704895, 55.552981],\n            [37.704985, 55.552981],\n            [37.704985, 55.552891],\n            [37.704895, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.552981],\n            [37.704895, 55.553071],\n            [37.704985, 55.553071],\n            [37.704985, 55.552981],\n            [37.704895, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.553071],\n            [37.704895, 55.553161],\n            [37.704985, 55.553161],\n            [37.704985, 55.553071],\n            [37.704895, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.553161],\n            [37.704895, 55.553251],\n            [37.704985, 55.553251],\n            [37.704985, 55.553161],\n            [37.704895, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.553251],\n            [37.704895, 55.553341],\n            [37.704985, 55.553341],\n            [37.704985, 55.553251],\n            [37.704895, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.553341],\n            [37.704895, 55.553431],\n            [37.704985, 55.553431],\n            [37.704985, 55.553341],\n            [37.704895, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.553431],\n            [37.704895, 55.55352],\n            [37.704985, 55.55352],\n            [37.704985, 55.553431],\n            [37.704895, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.55352],\n            [37.704895, 55.55361],\n            [37.704985, 55.55361],\n            [37.704985, 55.55352],\n            [37.704895, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.55361],\n            [37.704895, 55.5537],\n            [37.704985, 55.5537],\n            [37.704985, 55.55361],\n            [37.704895, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.5537],\n            [37.704895, 55.55379],\n            [37.704985, 55.55379],\n            [37.704985, 55.5537],\n            [37.704895, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.55379],\n            [37.704895, 55.55388],\n            [37.704985, 55.55388],\n            [37.704985, 55.55379],\n            [37.704895, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.55388],\n            [37.704895, 55.55397],\n            [37.704985, 55.55397],\n            [37.704985, 55.55388],\n            [37.704895, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.55397],\n            [37.704895, 55.55406],\n            [37.704985, 55.55406],\n            [37.704985, 55.55397],\n            [37.704895, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.55406],\n            [37.704895, 55.55415],\n            [37.704985, 55.55415],\n            [37.704985, 55.55406],\n            [37.704895, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.55415],\n            [37.704895, 55.55424],\n            [37.704985, 55.55424],\n            [37.704985, 55.55415],\n            [37.704895, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.55424],\n            [37.704895, 55.55433],\n            [37.704985, 55.55433],\n            [37.704985, 55.55424],\n            [37.704895, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.55433],\n            [37.704895, 55.55442],\n            [37.704985, 55.55442],\n            [37.704985, 55.55433],\n            [37.704895, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.55442],\n            [37.704895, 55.55451],\n            [37.704985, 55.55451],\n            [37.704985, 55.55442],\n            [37.704895, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.55451],\n            [37.704895, 55.5546],\n            [37.704985, 55.5546],\n            [37.704985, 55.55451],\n            [37.704895, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.5546],\n            [37.704895, 55.55469],\n            [37.704985, 55.55469],\n            [37.704985, 55.5546],\n            [37.704895, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.55469],\n            [37.704895, 55.55478],\n            [37.704985, 55.55478],\n            [37.704985, 55.55469],\n            [37.704895, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.55478],\n            [37.704895, 55.554869],\n            [37.704985, 55.554869],\n            [37.704985, 55.55478],\n            [37.704895, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.554869],\n            [37.704895, 55.554959],\n            [37.704985, 55.554959],\n            [37.704985, 55.554869],\n            [37.704895, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.554959],\n            [37.704895, 55.555049],\n            [37.704985, 55.555049],\n            [37.704985, 55.554959],\n            [37.704895, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704895, 55.555049],\n            [37.704895, 55.555139],\n            [37.704985, 55.555139],\n            [37.704985, 55.555049],\n            [37.704895, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.551812],\n            [37.704985, 55.551902],\n            [37.705075, 55.551902],\n            [37.705075, 55.551812],\n            [37.704985, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.551902],\n            [37.704985, 55.551992],\n            [37.705075, 55.551992],\n            [37.705075, 55.551902],\n            [37.704985, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.551992],\n            [37.704985, 55.552082],\n            [37.705075, 55.552082],\n            [37.705075, 55.551992],\n            [37.704985, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.552082],\n            [37.704985, 55.552171],\n            [37.705075, 55.552171],\n            [37.705075, 55.552082],\n            [37.704985, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.552171],\n            [37.704985, 55.552261],\n            [37.705075, 55.552261],\n            [37.705075, 55.552171],\n            [37.704985, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.552261],\n            [37.704985, 55.552351],\n            [37.705075, 55.552351],\n            [37.705075, 55.552261],\n            [37.704985, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.552351],\n            [37.704985, 55.552441],\n            [37.705075, 55.552441],\n            [37.705075, 55.552351],\n            [37.704985, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.552441],\n            [37.704985, 55.552531],\n            [37.705075, 55.552531],\n            [37.705075, 55.552441],\n            [37.704985, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.552531],\n            [37.704985, 55.552621],\n            [37.705075, 55.552621],\n            [37.705075, 55.552531],\n            [37.704985, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.552621],\n            [37.704985, 55.552711],\n            [37.705075, 55.552711],\n            [37.705075, 55.552621],\n            [37.704985, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.552711],\n            [37.704985, 55.552801],\n            [37.705075, 55.552801],\n            [37.705075, 55.552711],\n            [37.704985, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.552801],\n            [37.704985, 55.552891],\n            [37.705075, 55.552891],\n            [37.705075, 55.552801],\n            [37.704985, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.552891],\n            [37.704985, 55.552981],\n            [37.705075, 55.552981],\n            [37.705075, 55.552891],\n            [37.704985, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.552981],\n            [37.704985, 55.553071],\n            [37.705075, 55.553071],\n            [37.705075, 55.552981],\n            [37.704985, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.553071],\n            [37.704985, 55.553161],\n            [37.705075, 55.553161],\n            [37.705075, 55.553071],\n            [37.704985, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.553161],\n            [37.704985, 55.553251],\n            [37.705075, 55.553251],\n            [37.705075, 55.553161],\n            [37.704985, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.553251],\n            [37.704985, 55.553341],\n            [37.705075, 55.553341],\n            [37.705075, 55.553251],\n            [37.704985, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.553341],\n            [37.704985, 55.553431],\n            [37.705075, 55.553431],\n            [37.705075, 55.553341],\n            [37.704985, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.553431],\n            [37.704985, 55.55352],\n            [37.705075, 55.55352],\n            [37.705075, 55.553431],\n            [37.704985, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.55352],\n            [37.704985, 55.55361],\n            [37.705075, 55.55361],\n            [37.705075, 55.55352],\n            [37.704985, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.55361],\n            [37.704985, 55.5537],\n            [37.705075, 55.5537],\n            [37.705075, 55.55361],\n            [37.704985, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.5537],\n            [37.704985, 55.55379],\n            [37.705075, 55.55379],\n            [37.705075, 55.5537],\n            [37.704985, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.55379],\n            [37.704985, 55.55388],\n            [37.705075, 55.55388],\n            [37.705075, 55.55379],\n            [37.704985, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.55388],\n            [37.704985, 55.55397],\n            [37.705075, 55.55397],\n            [37.705075, 55.55388],\n            [37.704985, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.55397],\n            [37.704985, 55.55406],\n            [37.705075, 55.55406],\n            [37.705075, 55.55397],\n            [37.704985, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.55406],\n            [37.704985, 55.55415],\n            [37.705075, 55.55415],\n            [37.705075, 55.55406],\n            [37.704985, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.55415],\n            [37.704985, 55.55424],\n            [37.705075, 55.55424],\n            [37.705075, 55.55415],\n            [37.704985, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.55424],\n            [37.704985, 55.55433],\n            [37.705075, 55.55433],\n            [37.705075, 55.55424],\n            [37.704985, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.55433],\n            [37.704985, 55.55442],\n            [37.705075, 55.55442],\n            [37.705075, 55.55433],\n            [37.704985, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.55442],\n            [37.704985, 55.55451],\n            [37.705075, 55.55451],\n            [37.705075, 55.55442],\n            [37.704985, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.55451],\n            [37.704985, 55.5546],\n            [37.705075, 55.5546],\n            [37.705075, 55.55451],\n            [37.704985, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.5546],\n            [37.704985, 55.55469],\n            [37.705075, 55.55469],\n            [37.705075, 55.5546],\n            [37.704985, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.55469],\n            [37.704985, 55.55478],\n            [37.705075, 55.55478],\n            [37.705075, 55.55469],\n            [37.704985, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.55478],\n            [37.704985, 55.554869],\n            [37.705075, 55.554869],\n            [37.705075, 55.55478],\n            [37.704985, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.554869],\n            [37.704985, 55.554959],\n            [37.705075, 55.554959],\n            [37.705075, 55.554869],\n            [37.704985, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.554959],\n            [37.704985, 55.555049],\n            [37.705075, 55.555049],\n            [37.705075, 55.554959],\n            [37.704985, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.704985, 55.555049],\n            [37.704985, 55.555139],\n            [37.705075, 55.555139],\n            [37.705075, 55.555049],\n            [37.704985, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.551812],\n            [37.705075, 55.551902],\n            [37.705165, 55.551902],\n            [37.705165, 55.551812],\n            [37.705075, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.551902],\n            [37.705075, 55.551992],\n            [37.705165, 55.551992],\n            [37.705165, 55.551902],\n            [37.705075, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.551992],\n            [37.705075, 55.552082],\n            [37.705165, 55.552082],\n            [37.705165, 55.551992],\n            [37.705075, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.552082],\n            [37.705075, 55.552171],\n            [37.705165, 55.552171],\n            [37.705165, 55.552082],\n            [37.705075, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.552171],\n            [37.705075, 55.552261],\n            [37.705165, 55.552261],\n            [37.705165, 55.552171],\n            [37.705075, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.552261],\n            [37.705075, 55.552351],\n            [37.705165, 55.552351],\n            [37.705165, 55.552261],\n            [37.705075, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.552351],\n            [37.705075, 55.552441],\n            [37.705165, 55.552441],\n            [37.705165, 55.552351],\n            [37.705075, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.552441],\n            [37.705075, 55.552531],\n            [37.705165, 55.552531],\n            [37.705165, 55.552441],\n            [37.705075, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.552531],\n            [37.705075, 55.552621],\n            [37.705165, 55.552621],\n            [37.705165, 55.552531],\n            [37.705075, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.552621],\n            [37.705075, 55.552711],\n            [37.705165, 55.552711],\n            [37.705165, 55.552621],\n            [37.705075, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.552711],\n            [37.705075, 55.552801],\n            [37.705165, 55.552801],\n            [37.705165, 55.552711],\n            [37.705075, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.552801],\n            [37.705075, 55.552891],\n            [37.705165, 55.552891],\n            [37.705165, 55.552801],\n            [37.705075, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.552891],\n            [37.705075, 55.552981],\n            [37.705165, 55.552981],\n            [37.705165, 55.552891],\n            [37.705075, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.552981],\n            [37.705075, 55.553071],\n            [37.705165, 55.553071],\n            [37.705165, 55.552981],\n            [37.705075, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.553071],\n            [37.705075, 55.553161],\n            [37.705165, 55.553161],\n            [37.705165, 55.553071],\n            [37.705075, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.553161],\n            [37.705075, 55.553251],\n            [37.705165, 55.553251],\n            [37.705165, 55.553161],\n            [37.705075, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.553251],\n            [37.705075, 55.553341],\n            [37.705165, 55.553341],\n            [37.705165, 55.553251],\n            [37.705075, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.553341],\n            [37.705075, 55.553431],\n            [37.705165, 55.553431],\n            [37.705165, 55.553341],\n            [37.705075, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.553431],\n            [37.705075, 55.55352],\n            [37.705165, 55.55352],\n            [37.705165, 55.553431],\n            [37.705075, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.55352],\n            [37.705075, 55.55361],\n            [37.705165, 55.55361],\n            [37.705165, 55.55352],\n            [37.705075, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.55361],\n            [37.705075, 55.5537],\n            [37.705165, 55.5537],\n            [37.705165, 55.55361],\n            [37.705075, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.5537],\n            [37.705075, 55.55379],\n            [37.705165, 55.55379],\n            [37.705165, 55.5537],\n            [37.705075, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.55379],\n            [37.705075, 55.55388],\n            [37.705165, 55.55388],\n            [37.705165, 55.55379],\n            [37.705075, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.55388],\n            [37.705075, 55.55397],\n            [37.705165, 55.55397],\n            [37.705165, 55.55388],\n            [37.705075, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.55397],\n            [37.705075, 55.55406],\n            [37.705165, 55.55406],\n            [37.705165, 55.55397],\n            [37.705075, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.55406],\n            [37.705075, 55.55415],\n            [37.705165, 55.55415],\n            [37.705165, 55.55406],\n            [37.705075, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.55415],\n            [37.705075, 55.55424],\n            [37.705165, 55.55424],\n            [37.705165, 55.55415],\n            [37.705075, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.55424],\n            [37.705075, 55.55433],\n            [37.705165, 55.55433],\n            [37.705165, 55.55424],\n            [37.705075, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.55433],\n            [37.705075, 55.55442],\n            [37.705165, 55.55442],\n            [37.705165, 55.55433],\n            [37.705075, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.55442],\n            [37.705075, 55.55451],\n            [37.705165, 55.55451],\n            [37.705165, 55.55442],\n            [37.705075, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.55451],\n            [37.705075, 55.5546],\n            [37.705165, 55.5546],\n            [37.705165, 55.55451],\n            [37.705075, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.5546],\n            [37.705075, 55.55469],\n            [37.705165, 55.55469],\n            [37.705165, 55.5546],\n            [37.705075, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.55469],\n            [37.705075, 55.55478],\n            [37.705165, 55.55478],\n            [37.705165, 55.55469],\n            [37.705075, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.55478],\n            [37.705075, 55.554869],\n            [37.705165, 55.554869],\n            [37.705165, 55.55478],\n            [37.705075, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.554869],\n            [37.705075, 55.554959],\n            [37.705165, 55.554959],\n            [37.705165, 55.554869],\n            [37.705075, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.554959],\n            [37.705075, 55.555049],\n            [37.705165, 55.555049],\n            [37.705165, 55.554959],\n            [37.705075, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.555049],\n            [37.705075, 55.555139],\n            [37.705165, 55.555139],\n            [37.705165, 55.555049],\n            [37.705075, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705075, 55.555139],\n            [37.705075, 55.555229],\n            [37.705165, 55.555229],\n            [37.705165, 55.555139],\n            [37.705075, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.551812],\n            [37.705165, 55.551902],\n            [37.705255, 55.551902],\n            [37.705255, 55.551812],\n            [37.705165, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.551902],\n            [37.705165, 55.551992],\n            [37.705255, 55.551992],\n            [37.705255, 55.551902],\n            [37.705165, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.551992],\n            [37.705165, 55.552082],\n            [37.705255, 55.552082],\n            [37.705255, 55.551992],\n            [37.705165, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.552082],\n            [37.705165, 55.552171],\n            [37.705255, 55.552171],\n            [37.705255, 55.552082],\n            [37.705165, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.552171],\n            [37.705165, 55.552261],\n            [37.705255, 55.552261],\n            [37.705255, 55.552171],\n            [37.705165, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.552261],\n            [37.705165, 55.552351],\n            [37.705255, 55.552351],\n            [37.705255, 55.552261],\n            [37.705165, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.552351],\n            [37.705165, 55.552441],\n            [37.705255, 55.552441],\n            [37.705255, 55.552351],\n            [37.705165, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.552441],\n            [37.705165, 55.552531],\n            [37.705255, 55.552531],\n            [37.705255, 55.552441],\n            [37.705165, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.552531],\n            [37.705165, 55.552621],\n            [37.705255, 55.552621],\n            [37.705255, 55.552531],\n            [37.705165, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.552621],\n            [37.705165, 55.552711],\n            [37.705255, 55.552711],\n            [37.705255, 55.552621],\n            [37.705165, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.552711],\n            [37.705165, 55.552801],\n            [37.705255, 55.552801],\n            [37.705255, 55.552711],\n            [37.705165, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.552801],\n            [37.705165, 55.552891],\n            [37.705255, 55.552891],\n            [37.705255, 55.552801],\n            [37.705165, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.552891],\n            [37.705165, 55.552981],\n            [37.705255, 55.552981],\n            [37.705255, 55.552891],\n            [37.705165, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.552981],\n            [37.705165, 55.553071],\n            [37.705255, 55.553071],\n            [37.705255, 55.552981],\n            [37.705165, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.553071],\n            [37.705165, 55.553161],\n            [37.705255, 55.553161],\n            [37.705255, 55.553071],\n            [37.705165, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.553161],\n            [37.705165, 55.553251],\n            [37.705255, 55.553251],\n            [37.705255, 55.553161],\n            [37.705165, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.553251],\n            [37.705165, 55.553341],\n            [37.705255, 55.553341],\n            [37.705255, 55.553251],\n            [37.705165, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.553341],\n            [37.705165, 55.553431],\n            [37.705255, 55.553431],\n            [37.705255, 55.553341],\n            [37.705165, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.553431],\n            [37.705165, 55.55352],\n            [37.705255, 55.55352],\n            [37.705255, 55.553431],\n            [37.705165, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.55352],\n            [37.705165, 55.55361],\n            [37.705255, 55.55361],\n            [37.705255, 55.55352],\n            [37.705165, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.55361],\n            [37.705165, 55.5537],\n            [37.705255, 55.5537],\n            [37.705255, 55.55361],\n            [37.705165, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.5537],\n            [37.705165, 55.55379],\n            [37.705255, 55.55379],\n            [37.705255, 55.5537],\n            [37.705165, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.55379],\n            [37.705165, 55.55388],\n            [37.705255, 55.55388],\n            [37.705255, 55.55379],\n            [37.705165, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.55388],\n            [37.705165, 55.55397],\n            [37.705255, 55.55397],\n            [37.705255, 55.55388],\n            [37.705165, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.55397],\n            [37.705165, 55.55406],\n            [37.705255, 55.55406],\n            [37.705255, 55.55397],\n            [37.705165, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.55406],\n            [37.705165, 55.55415],\n            [37.705255, 55.55415],\n            [37.705255, 55.55406],\n            [37.705165, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.55415],\n            [37.705165, 55.55424],\n            [37.705255, 55.55424],\n            [37.705255, 55.55415],\n            [37.705165, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.55424],\n            [37.705165, 55.55433],\n            [37.705255, 55.55433],\n            [37.705255, 55.55424],\n            [37.705165, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.55433],\n            [37.705165, 55.55442],\n            [37.705255, 55.55442],\n            [37.705255, 55.55433],\n            [37.705165, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.55442],\n            [37.705165, 55.55451],\n            [37.705255, 55.55451],\n            [37.705255, 55.55442],\n            [37.705165, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.55451],\n            [37.705165, 55.5546],\n            [37.705255, 55.5546],\n            [37.705255, 55.55451],\n            [37.705165, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.5546],\n            [37.705165, 55.55469],\n            [37.705255, 55.55469],\n            [37.705255, 55.5546],\n            [37.705165, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.55469],\n            [37.705165, 55.55478],\n            [37.705255, 55.55478],\n            [37.705255, 55.55469],\n            [37.705165, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.55478],\n            [37.705165, 55.554869],\n            [37.705255, 55.554869],\n            [37.705255, 55.55478],\n            [37.705165, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.554869],\n            [37.705165, 55.554959],\n            [37.705255, 55.554959],\n            [37.705255, 55.554869],\n            [37.705165, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.554959],\n            [37.705165, 55.555049],\n            [37.705255, 55.555049],\n            [37.705255, 55.554959],\n            [37.705165, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.555049],\n            [37.705165, 55.555139],\n            [37.705255, 55.555139],\n            [37.705255, 55.555049],\n            [37.705165, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705165, 55.555139],\n            [37.705165, 55.555229],\n            [37.705255, 55.555229],\n            [37.705255, 55.555139],\n            [37.705165, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.551812],\n            [37.705255, 55.551902],\n            [37.705345, 55.551902],\n            [37.705345, 55.551812],\n            [37.705255, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.551902],\n            [37.705255, 55.551992],\n            [37.705345, 55.551992],\n            [37.705345, 55.551902],\n            [37.705255, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.551992],\n            [37.705255, 55.552082],\n            [37.705345, 55.552082],\n            [37.705345, 55.551992],\n            [37.705255, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.552082],\n            [37.705255, 55.552171],\n            [37.705345, 55.552171],\n            [37.705345, 55.552082],\n            [37.705255, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.552171],\n            [37.705255, 55.552261],\n            [37.705345, 55.552261],\n            [37.705345, 55.552171],\n            [37.705255, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.552261],\n            [37.705255, 55.552351],\n            [37.705345, 55.552351],\n            [37.705345, 55.552261],\n            [37.705255, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.552351],\n            [37.705255, 55.552441],\n            [37.705345, 55.552441],\n            [37.705345, 55.552351],\n            [37.705255, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.552441],\n            [37.705255, 55.552531],\n            [37.705345, 55.552531],\n            [37.705345, 55.552441],\n            [37.705255, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.552531],\n            [37.705255, 55.552621],\n            [37.705345, 55.552621],\n            [37.705345, 55.552531],\n            [37.705255, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.552621],\n            [37.705255, 55.552711],\n            [37.705345, 55.552711],\n            [37.705345, 55.552621],\n            [37.705255, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.552711],\n            [37.705255, 55.552801],\n            [37.705345, 55.552801],\n            [37.705345, 55.552711],\n            [37.705255, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.552801],\n            [37.705255, 55.552891],\n            [37.705345, 55.552891],\n            [37.705345, 55.552801],\n            [37.705255, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.552891],\n            [37.705255, 55.552981],\n            [37.705345, 55.552981],\n            [37.705345, 55.552891],\n            [37.705255, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.552981],\n            [37.705255, 55.553071],\n            [37.705345, 55.553071],\n            [37.705345, 55.552981],\n            [37.705255, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.553071],\n            [37.705255, 55.553161],\n            [37.705345, 55.553161],\n            [37.705345, 55.553071],\n            [37.705255, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.553161],\n            [37.705255, 55.553251],\n            [37.705345, 55.553251],\n            [37.705345, 55.553161],\n            [37.705255, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.553251],\n            [37.705255, 55.553341],\n            [37.705345, 55.553341],\n            [37.705345, 55.553251],\n            [37.705255, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.553341],\n            [37.705255, 55.553431],\n            [37.705345, 55.553431],\n            [37.705345, 55.553341],\n            [37.705255, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.553431],\n            [37.705255, 55.55352],\n            [37.705345, 55.55352],\n            [37.705345, 55.553431],\n            [37.705255, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.55352],\n            [37.705255, 55.55361],\n            [37.705345, 55.55361],\n            [37.705345, 55.55352],\n            [37.705255, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.55361],\n            [37.705255, 55.5537],\n            [37.705345, 55.5537],\n            [37.705345, 55.55361],\n            [37.705255, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.5537],\n            [37.705255, 55.55379],\n            [37.705345, 55.55379],\n            [37.705345, 55.5537],\n            [37.705255, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.55379],\n            [37.705255, 55.55388],\n            [37.705345, 55.55388],\n            [37.705345, 55.55379],\n            [37.705255, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.55388],\n            [37.705255, 55.55397],\n            [37.705345, 55.55397],\n            [37.705345, 55.55388],\n            [37.705255, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.55397],\n            [37.705255, 55.55406],\n            [37.705345, 55.55406],\n            [37.705345, 55.55397],\n            [37.705255, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.55406],\n            [37.705255, 55.55415],\n            [37.705345, 55.55415],\n            [37.705345, 55.55406],\n            [37.705255, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.55415],\n            [37.705255, 55.55424],\n            [37.705345, 55.55424],\n            [37.705345, 55.55415],\n            [37.705255, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.55424],\n            [37.705255, 55.55433],\n            [37.705345, 55.55433],\n            [37.705345, 55.55424],\n            [37.705255, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.55433],\n            [37.705255, 55.55442],\n            [37.705345, 55.55442],\n            [37.705345, 55.55433],\n            [37.705255, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.55442],\n            [37.705255, 55.55451],\n            [37.705345, 55.55451],\n            [37.705345, 55.55442],\n            [37.705255, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.55451],\n            [37.705255, 55.5546],\n            [37.705345, 55.5546],\n            [37.705345, 55.55451],\n            [37.705255, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.5546],\n            [37.705255, 55.55469],\n            [37.705345, 55.55469],\n            [37.705345, 55.5546],\n            [37.705255, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.55469],\n            [37.705255, 55.55478],\n            [37.705345, 55.55478],\n            [37.705345, 55.55469],\n            [37.705255, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.55478],\n            [37.705255, 55.554869],\n            [37.705345, 55.554869],\n            [37.705345, 55.55478],\n            [37.705255, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.554869],\n            [37.705255, 55.554959],\n            [37.705345, 55.554959],\n            [37.705345, 55.554869],\n            [37.705255, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.554959],\n            [37.705255, 55.555049],\n            [37.705345, 55.555049],\n            [37.705345, 55.554959],\n            [37.705255, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.555049],\n            [37.705255, 55.555139],\n            [37.705345, 55.555139],\n            [37.705345, 55.555049],\n            [37.705255, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705255, 55.555139],\n            [37.705255, 55.555229],\n            [37.705345, 55.555229],\n            [37.705345, 55.555139],\n            [37.705255, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.551722],\n            [37.705345, 55.551812],\n            [37.705435, 55.551812],\n            [37.705435, 55.551722],\n            [37.705345, 55.551722]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.551812],\n            [37.705345, 55.551902],\n            [37.705435, 55.551902],\n            [37.705435, 55.551812],\n            [37.705345, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.551902],\n            [37.705345, 55.551992],\n            [37.705435, 55.551992],\n            [37.705435, 55.551902],\n            [37.705345, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.551992],\n            [37.705345, 55.552082],\n            [37.705435, 55.552082],\n            [37.705435, 55.551992],\n            [37.705345, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.552082],\n            [37.705345, 55.552171],\n            [37.705435, 55.552171],\n            [37.705435, 55.552082],\n            [37.705345, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.552171],\n            [37.705345, 55.552261],\n            [37.705435, 55.552261],\n            [37.705435, 55.552171],\n            [37.705345, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.552261],\n            [37.705345, 55.552351],\n            [37.705435, 55.552351],\n            [37.705435, 55.552261],\n            [37.705345, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.552351],\n            [37.705345, 55.552441],\n            [37.705435, 55.552441],\n            [37.705435, 55.552351],\n            [37.705345, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.552441],\n            [37.705345, 55.552531],\n            [37.705435, 55.552531],\n            [37.705435, 55.552441],\n            [37.705345, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.552531],\n            [37.705345, 55.552621],\n            [37.705435, 55.552621],\n            [37.705435, 55.552531],\n            [37.705345, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.552621],\n            [37.705345, 55.552711],\n            [37.705435, 55.552711],\n            [37.705435, 55.552621],\n            [37.705345, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.552711],\n            [37.705345, 55.552801],\n            [37.705435, 55.552801],\n            [37.705435, 55.552711],\n            [37.705345, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.552801],\n            [37.705345, 55.552891],\n            [37.705435, 55.552891],\n            [37.705435, 55.552801],\n            [37.705345, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.552891],\n            [37.705345, 55.552981],\n            [37.705435, 55.552981],\n            [37.705435, 55.552891],\n            [37.705345, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.552981],\n            [37.705345, 55.553071],\n            [37.705435, 55.553071],\n            [37.705435, 55.552981],\n            [37.705345, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.553071],\n            [37.705345, 55.553161],\n            [37.705435, 55.553161],\n            [37.705435, 55.553071],\n            [37.705345, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.553161],\n            [37.705345, 55.553251],\n            [37.705435, 55.553251],\n            [37.705435, 55.553161],\n            [37.705345, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.553251],\n            [37.705345, 55.553341],\n            [37.705435, 55.553341],\n            [37.705435, 55.553251],\n            [37.705345, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.553341],\n            [37.705345, 55.553431],\n            [37.705435, 55.553431],\n            [37.705435, 55.553341],\n            [37.705345, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.553431],\n            [37.705345, 55.55352],\n            [37.705435, 55.55352],\n            [37.705435, 55.553431],\n            [37.705345, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.55352],\n            [37.705345, 55.55361],\n            [37.705435, 55.55361],\n            [37.705435, 55.55352],\n            [37.705345, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.55361],\n            [37.705345, 55.5537],\n            [37.705435, 55.5537],\n            [37.705435, 55.55361],\n            [37.705345, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.5537],\n            [37.705345, 55.55379],\n            [37.705435, 55.55379],\n            [37.705435, 55.5537],\n            [37.705345, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.55379],\n            [37.705345, 55.55388],\n            [37.705435, 55.55388],\n            [37.705435, 55.55379],\n            [37.705345, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.55388],\n            [37.705345, 55.55397],\n            [37.705435, 55.55397],\n            [37.705435, 55.55388],\n            [37.705345, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.55397],\n            [37.705345, 55.55406],\n            [37.705435, 55.55406],\n            [37.705435, 55.55397],\n            [37.705345, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.55406],\n            [37.705345, 55.55415],\n            [37.705435, 55.55415],\n            [37.705435, 55.55406],\n            [37.705345, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.55415],\n            [37.705345, 55.55424],\n            [37.705435, 55.55424],\n            [37.705435, 55.55415],\n            [37.705345, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.55424],\n            [37.705345, 55.55433],\n            [37.705435, 55.55433],\n            [37.705435, 55.55424],\n            [37.705345, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.55433],\n            [37.705345, 55.55442],\n            [37.705435, 55.55442],\n            [37.705435, 55.55433],\n            [37.705345, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.55442],\n            [37.705345, 55.55451],\n            [37.705435, 55.55451],\n            [37.705435, 55.55442],\n            [37.705345, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.55451],\n            [37.705345, 55.5546],\n            [37.705435, 55.5546],\n            [37.705435, 55.55451],\n            [37.705345, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.5546],\n            [37.705345, 55.55469],\n            [37.705435, 55.55469],\n            [37.705435, 55.5546],\n            [37.705345, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.55469],\n            [37.705345, 55.55478],\n            [37.705435, 55.55478],\n            [37.705435, 55.55469],\n            [37.705345, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.55478],\n            [37.705345, 55.554869],\n            [37.705435, 55.554869],\n            [37.705435, 55.55478],\n            [37.705345, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.554869],\n            [37.705345, 55.554959],\n            [37.705435, 55.554959],\n            [37.705435, 55.554869],\n            [37.705345, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.554959],\n            [37.705345, 55.555049],\n            [37.705435, 55.555049],\n            [37.705435, 55.554959],\n            [37.705345, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.555049],\n            [37.705345, 55.555139],\n            [37.705435, 55.555139],\n            [37.705435, 55.555049],\n            [37.705345, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705345, 55.555139],\n            [37.705345, 55.555229],\n            [37.705435, 55.555229],\n            [37.705435, 55.555139],\n            [37.705345, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.551722],\n            [37.705435, 55.551812],\n            [37.705525, 55.551812],\n            [37.705525, 55.551722],\n            [37.705435, 55.551722]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.551812],\n            [37.705435, 55.551902],\n            [37.705525, 55.551902],\n            [37.705525, 55.551812],\n            [37.705435, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.551902],\n            [37.705435, 55.551992],\n            [37.705525, 55.551992],\n            [37.705525, 55.551902],\n            [37.705435, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.551992],\n            [37.705435, 55.552082],\n            [37.705525, 55.552082],\n            [37.705525, 55.551992],\n            [37.705435, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.552082],\n            [37.705435, 55.552171],\n            [37.705525, 55.552171],\n            [37.705525, 55.552082],\n            [37.705435, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.552171],\n            [37.705435, 55.552261],\n            [37.705525, 55.552261],\n            [37.705525, 55.552171],\n            [37.705435, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.552261],\n            [37.705435, 55.552351],\n            [37.705525, 55.552351],\n            [37.705525, 55.552261],\n            [37.705435, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.552351],\n            [37.705435, 55.552441],\n            [37.705525, 55.552441],\n            [37.705525, 55.552351],\n            [37.705435, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.552441],\n            [37.705435, 55.552531],\n            [37.705525, 55.552531],\n            [37.705525, 55.552441],\n            [37.705435, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.552531],\n            [37.705435, 55.552621],\n            [37.705525, 55.552621],\n            [37.705525, 55.552531],\n            [37.705435, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.552621],\n            [37.705435, 55.552711],\n            [37.705525, 55.552711],\n            [37.705525, 55.552621],\n            [37.705435, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.552711],\n            [37.705435, 55.552801],\n            [37.705525, 55.552801],\n            [37.705525, 55.552711],\n            [37.705435, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.552801],\n            [37.705435, 55.552891],\n            [37.705525, 55.552891],\n            [37.705525, 55.552801],\n            [37.705435, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.552891],\n            [37.705435, 55.552981],\n            [37.705525, 55.552981],\n            [37.705525, 55.552891],\n            [37.705435, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.552981],\n            [37.705435, 55.553071],\n            [37.705525, 55.553071],\n            [37.705525, 55.552981],\n            [37.705435, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.553071],\n            [37.705435, 55.553161],\n            [37.705525, 55.553161],\n            [37.705525, 55.553071],\n            [37.705435, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.553161],\n            [37.705435, 55.553251],\n            [37.705525, 55.553251],\n            [37.705525, 55.553161],\n            [37.705435, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.553251],\n            [37.705435, 55.553341],\n            [37.705525, 55.553341],\n            [37.705525, 55.553251],\n            [37.705435, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.553341],\n            [37.705435, 55.553431],\n            [37.705525, 55.553431],\n            [37.705525, 55.553341],\n            [37.705435, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.553431],\n            [37.705435, 55.55352],\n            [37.705525, 55.55352],\n            [37.705525, 55.553431],\n            [37.705435, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.55352],\n            [37.705435, 55.55361],\n            [37.705525, 55.55361],\n            [37.705525, 55.55352],\n            [37.705435, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.55361],\n            [37.705435, 55.5537],\n            [37.705525, 55.5537],\n            [37.705525, 55.55361],\n            [37.705435, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.5537],\n            [37.705435, 55.55379],\n            [37.705525, 55.55379],\n            [37.705525, 55.5537],\n            [37.705435, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.55379],\n            [37.705435, 55.55388],\n            [37.705525, 55.55388],\n            [37.705525, 55.55379],\n            [37.705435, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.55388],\n            [37.705435, 55.55397],\n            [37.705525, 55.55397],\n            [37.705525, 55.55388],\n            [37.705435, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.55397],\n            [37.705435, 55.55406],\n            [37.705525, 55.55406],\n            [37.705525, 55.55397],\n            [37.705435, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.55406],\n            [37.705435, 55.55415],\n            [37.705525, 55.55415],\n            [37.705525, 55.55406],\n            [37.705435, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.55415],\n            [37.705435, 55.55424],\n            [37.705525, 55.55424],\n            [37.705525, 55.55415],\n            [37.705435, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.55424],\n            [37.705435, 55.55433],\n            [37.705525, 55.55433],\n            [37.705525, 55.55424],\n            [37.705435, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.55433],\n            [37.705435, 55.55442],\n            [37.705525, 55.55442],\n            [37.705525, 55.55433],\n            [37.705435, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.55442],\n            [37.705435, 55.55451],\n            [37.705525, 55.55451],\n            [37.705525, 55.55442],\n            [37.705435, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.55451],\n            [37.705435, 55.5546],\n            [37.705525, 55.5546],\n            [37.705525, 55.55451],\n            [37.705435, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.5546],\n            [37.705435, 55.55469],\n            [37.705525, 55.55469],\n            [37.705525, 55.5546],\n            [37.705435, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.55469],\n            [37.705435, 55.55478],\n            [37.705525, 55.55478],\n            [37.705525, 55.55469],\n            [37.705435, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.55478],\n            [37.705435, 55.554869],\n            [37.705525, 55.554869],\n            [37.705525, 55.55478],\n            [37.705435, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.554869],\n            [37.705435, 55.554959],\n            [37.705525, 55.554959],\n            [37.705525, 55.554869],\n            [37.705435, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.554959],\n            [37.705435, 55.555049],\n            [37.705525, 55.555049],\n            [37.705525, 55.554959],\n            [37.705435, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.555049],\n            [37.705435, 55.555139],\n            [37.705525, 55.555139],\n            [37.705525, 55.555049],\n            [37.705435, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.555139],\n            [37.705435, 55.555229],\n            [37.705525, 55.555229],\n            [37.705525, 55.555139],\n            [37.705435, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705435, 55.555229],\n            [37.705435, 55.555319],\n            [37.705525, 55.555319],\n            [37.705525, 55.555229],\n            [37.705435, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.551722],\n            [37.705525, 55.551812],\n            [37.705615, 55.551812],\n            [37.705615, 55.551722],\n            [37.705525, 55.551722]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.551812],\n            [37.705525, 55.551902],\n            [37.705615, 55.551902],\n            [37.705615, 55.551812],\n            [37.705525, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.551902],\n            [37.705525, 55.551992],\n            [37.705615, 55.551992],\n            [37.705615, 55.551902],\n            [37.705525, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.551992],\n            [37.705525, 55.552082],\n            [37.705615, 55.552082],\n            [37.705615, 55.551992],\n            [37.705525, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.552082],\n            [37.705525, 55.552171],\n            [37.705615, 55.552171],\n            [37.705615, 55.552082],\n            [37.705525, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.552171],\n            [37.705525, 55.552261],\n            [37.705615, 55.552261],\n            [37.705615, 55.552171],\n            [37.705525, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.552261],\n            [37.705525, 55.552351],\n            [37.705615, 55.552351],\n            [37.705615, 55.552261],\n            [37.705525, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.552351],\n            [37.705525, 55.552441],\n            [37.705615, 55.552441],\n            [37.705615, 55.552351],\n            [37.705525, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.552441],\n            [37.705525, 55.552531],\n            [37.705615, 55.552531],\n            [37.705615, 55.552441],\n            [37.705525, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.552531],\n            [37.705525, 55.552621],\n            [37.705615, 55.552621],\n            [37.705615, 55.552531],\n            [37.705525, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.552621],\n            [37.705525, 55.552711],\n            [37.705615, 55.552711],\n            [37.705615, 55.552621],\n            [37.705525, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.552711],\n            [37.705525, 55.552801],\n            [37.705615, 55.552801],\n            [37.705615, 55.552711],\n            [37.705525, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.552801],\n            [37.705525, 55.552891],\n            [37.705615, 55.552891],\n            [37.705615, 55.552801],\n            [37.705525, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.552891],\n            [37.705525, 55.552981],\n            [37.705615, 55.552981],\n            [37.705615, 55.552891],\n            [37.705525, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.552981],\n            [37.705525, 55.553071],\n            [37.705615, 55.553071],\n            [37.705615, 55.552981],\n            [37.705525, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.553071],\n            [37.705525, 55.553161],\n            [37.705615, 55.553161],\n            [37.705615, 55.553071],\n            [37.705525, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.553161],\n            [37.705525, 55.553251],\n            [37.705615, 55.553251],\n            [37.705615, 55.553161],\n            [37.705525, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.553251],\n            [37.705525, 55.553341],\n            [37.705615, 55.553341],\n            [37.705615, 55.553251],\n            [37.705525, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.553341],\n            [37.705525, 55.553431],\n            [37.705615, 55.553431],\n            [37.705615, 55.553341],\n            [37.705525, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.553431],\n            [37.705525, 55.55352],\n            [37.705615, 55.55352],\n            [37.705615, 55.553431],\n            [37.705525, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.55352],\n            [37.705525, 55.55361],\n            [37.705615, 55.55361],\n            [37.705615, 55.55352],\n            [37.705525, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.55361],\n            [37.705525, 55.5537],\n            [37.705615, 55.5537],\n            [37.705615, 55.55361],\n            [37.705525, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.5537],\n            [37.705525, 55.55379],\n            [37.705615, 55.55379],\n            [37.705615, 55.5537],\n            [37.705525, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.55379],\n            [37.705525, 55.55388],\n            [37.705615, 55.55388],\n            [37.705615, 55.55379],\n            [37.705525, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.55388],\n            [37.705525, 55.55397],\n            [37.705615, 55.55397],\n            [37.705615, 55.55388],\n            [37.705525, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.55397],\n            [37.705525, 55.55406],\n            [37.705615, 55.55406],\n            [37.705615, 55.55397],\n            [37.705525, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.55406],\n            [37.705525, 55.55415],\n            [37.705615, 55.55415],\n            [37.705615, 55.55406],\n            [37.705525, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.55415],\n            [37.705525, 55.55424],\n            [37.705615, 55.55424],\n            [37.705615, 55.55415],\n            [37.705525, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.55424],\n            [37.705525, 55.55433],\n            [37.705615, 55.55433],\n            [37.705615, 55.55424],\n            [37.705525, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.55433],\n            [37.705525, 55.55442],\n            [37.705615, 55.55442],\n            [37.705615, 55.55433],\n            [37.705525, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.55442],\n            [37.705525, 55.55451],\n            [37.705615, 55.55451],\n            [37.705615, 55.55442],\n            [37.705525, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.55451],\n            [37.705525, 55.5546],\n            [37.705615, 55.5546],\n            [37.705615, 55.55451],\n            [37.705525, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.5546],\n            [37.705525, 55.55469],\n            [37.705615, 55.55469],\n            [37.705615, 55.5546],\n            [37.705525, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.55469],\n            [37.705525, 55.55478],\n            [37.705615, 55.55478],\n            [37.705615, 55.55469],\n            [37.705525, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.55478],\n            [37.705525, 55.554869],\n            [37.705615, 55.554869],\n            [37.705615, 55.55478],\n            [37.705525, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.554869],\n            [37.705525, 55.554959],\n            [37.705615, 55.554959],\n            [37.705615, 55.554869],\n            [37.705525, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.554959],\n            [37.705525, 55.555049],\n            [37.705615, 55.555049],\n            [37.705615, 55.554959],\n            [37.705525, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.555049],\n            [37.705525, 55.555139],\n            [37.705615, 55.555139],\n            [37.705615, 55.555049],\n            [37.705525, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.555139],\n            [37.705525, 55.555229],\n            [37.705615, 55.555229],\n            [37.705615, 55.555139],\n            [37.705525, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705525, 55.555229],\n            [37.705525, 55.555319],\n            [37.705615, 55.555319],\n            [37.705615, 55.555229],\n            [37.705525, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.551722],\n            [37.705615, 55.551812],\n            [37.705705, 55.551812],\n            [37.705705, 55.551722],\n            [37.705615, 55.551722]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.551812],\n            [37.705615, 55.551902],\n            [37.705705, 55.551902],\n            [37.705705, 55.551812],\n            [37.705615, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.551902],\n            [37.705615, 55.551992],\n            [37.705705, 55.551992],\n            [37.705705, 55.551902],\n            [37.705615, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.551992],\n            [37.705615, 55.552082],\n            [37.705705, 55.552082],\n            [37.705705, 55.551992],\n            [37.705615, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.552082],\n            [37.705615, 55.552171],\n            [37.705705, 55.552171],\n            [37.705705, 55.552082],\n            [37.705615, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.552171],\n            [37.705615, 55.552261],\n            [37.705705, 55.552261],\n            [37.705705, 55.552171],\n            [37.705615, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.552261],\n            [37.705615, 55.552351],\n            [37.705705, 55.552351],\n            [37.705705, 55.552261],\n            [37.705615, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.552351],\n            [37.705615, 55.552441],\n            [37.705705, 55.552441],\n            [37.705705, 55.552351],\n            [37.705615, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.552441],\n            [37.705615, 55.552531],\n            [37.705705, 55.552531],\n            [37.705705, 55.552441],\n            [37.705615, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.552531],\n            [37.705615, 55.552621],\n            [37.705705, 55.552621],\n            [37.705705, 55.552531],\n            [37.705615, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.552621],\n            [37.705615, 55.552711],\n            [37.705705, 55.552711],\n            [37.705705, 55.552621],\n            [37.705615, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.552711],\n            [37.705615, 55.552801],\n            [37.705705, 55.552801],\n            [37.705705, 55.552711],\n            [37.705615, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.552801],\n            [37.705615, 55.552891],\n            [37.705705, 55.552891],\n            [37.705705, 55.552801],\n            [37.705615, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.552891],\n            [37.705615, 55.552981],\n            [37.705705, 55.552981],\n            [37.705705, 55.552891],\n            [37.705615, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.552981],\n            [37.705615, 55.553071],\n            [37.705705, 55.553071],\n            [37.705705, 55.552981],\n            [37.705615, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.553071],\n            [37.705615, 55.553161],\n            [37.705705, 55.553161],\n            [37.705705, 55.553071],\n            [37.705615, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.553161],\n            [37.705615, 55.553251],\n            [37.705705, 55.553251],\n            [37.705705, 55.553161],\n            [37.705615, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.553251],\n            [37.705615, 55.553341],\n            [37.705705, 55.553341],\n            [37.705705, 55.553251],\n            [37.705615, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.553341],\n            [37.705615, 55.553431],\n            [37.705705, 55.553431],\n            [37.705705, 55.553341],\n            [37.705615, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.553431],\n            [37.705615, 55.55352],\n            [37.705705, 55.55352],\n            [37.705705, 55.553431],\n            [37.705615, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.55352],\n            [37.705615, 55.55361],\n            [37.705705, 55.55361],\n            [37.705705, 55.55352],\n            [37.705615, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.55361],\n            [37.705615, 55.5537],\n            [37.705705, 55.5537],\n            [37.705705, 55.55361],\n            [37.705615, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.5537],\n            [37.705615, 55.55379],\n            [37.705705, 55.55379],\n            [37.705705, 55.5537],\n            [37.705615, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.55379],\n            [37.705615, 55.55388],\n            [37.705705, 55.55388],\n            [37.705705, 55.55379],\n            [37.705615, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.55388],\n            [37.705615, 55.55397],\n            [37.705705, 55.55397],\n            [37.705705, 55.55388],\n            [37.705615, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.55397],\n            [37.705615, 55.55406],\n            [37.705705, 55.55406],\n            [37.705705, 55.55397],\n            [37.705615, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.55406],\n            [37.705615, 55.55415],\n            [37.705705, 55.55415],\n            [37.705705, 55.55406],\n            [37.705615, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.55415],\n            [37.705615, 55.55424],\n            [37.705705, 55.55424],\n            [37.705705, 55.55415],\n            [37.705615, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.55424],\n            [37.705615, 55.55433],\n            [37.705705, 55.55433],\n            [37.705705, 55.55424],\n            [37.705615, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.55433],\n            [37.705615, 55.55442],\n            [37.705705, 55.55442],\n            [37.705705, 55.55433],\n            [37.705615, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.55442],\n            [37.705615, 55.55451],\n            [37.705705, 55.55451],\n            [37.705705, 55.55442],\n            [37.705615, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.55451],\n            [37.705615, 55.5546],\n            [37.705705, 55.5546],\n            [37.705705, 55.55451],\n            [37.705615, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.5546],\n            [37.705615, 55.55469],\n            [37.705705, 55.55469],\n            [37.705705, 55.5546],\n            [37.705615, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.55469],\n            [37.705615, 55.55478],\n            [37.705705, 55.55478],\n            [37.705705, 55.55469],\n            [37.705615, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.55478],\n            [37.705615, 55.554869],\n            [37.705705, 55.554869],\n            [37.705705, 55.55478],\n            [37.705615, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.554869],\n            [37.705615, 55.554959],\n            [37.705705, 55.554959],\n            [37.705705, 55.554869],\n            [37.705615, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.554959],\n            [37.705615, 55.555049],\n            [37.705705, 55.555049],\n            [37.705705, 55.554959],\n            [37.705615, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.555049],\n            [37.705615, 55.555139],\n            [37.705705, 55.555139],\n            [37.705705, 55.555049],\n            [37.705615, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.555139],\n            [37.705615, 55.555229],\n            [37.705705, 55.555229],\n            [37.705705, 55.555139],\n            [37.705615, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705615, 55.555229],\n            [37.705615, 55.555319],\n            [37.705705, 55.555319],\n            [37.705705, 55.555229],\n            [37.705615, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.551632],\n            [37.705705, 55.551722],\n            [37.705795, 55.551722],\n            [37.705795, 55.551632],\n            [37.705705, 55.551632]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.551722],\n            [37.705705, 55.551812],\n            [37.705795, 55.551812],\n            [37.705795, 55.551722],\n            [37.705705, 55.551722]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.551812],\n            [37.705705, 55.551902],\n            [37.705795, 55.551902],\n            [37.705795, 55.551812],\n            [37.705705, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.551902],\n            [37.705705, 55.551992],\n            [37.705795, 55.551992],\n            [37.705795, 55.551902],\n            [37.705705, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.551992],\n            [37.705705, 55.552082],\n            [37.705795, 55.552082],\n            [37.705795, 55.551992],\n            [37.705705, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.552082],\n            [37.705705, 55.552171],\n            [37.705795, 55.552171],\n            [37.705795, 55.552082],\n            [37.705705, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.552171],\n            [37.705705, 55.552261],\n            [37.705795, 55.552261],\n            [37.705795, 55.552171],\n            [37.705705, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.552261],\n            [37.705705, 55.552351],\n            [37.705795, 55.552351],\n            [37.705795, 55.552261],\n            [37.705705, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.552351],\n            [37.705705, 55.552441],\n            [37.705795, 55.552441],\n            [37.705795, 55.552351],\n            [37.705705, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.552441],\n            [37.705705, 55.552531],\n            [37.705795, 55.552531],\n            [37.705795, 55.552441],\n            [37.705705, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.552531],\n            [37.705705, 55.552621],\n            [37.705795, 55.552621],\n            [37.705795, 55.552531],\n            [37.705705, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.552621],\n            [37.705705, 55.552711],\n            [37.705795, 55.552711],\n            [37.705795, 55.552621],\n            [37.705705, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.552711],\n            [37.705705, 55.552801],\n            [37.705795, 55.552801],\n            [37.705795, 55.552711],\n            [37.705705, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.552801],\n            [37.705705, 55.552891],\n            [37.705795, 55.552891],\n            [37.705795, 55.552801],\n            [37.705705, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.552891],\n            [37.705705, 55.552981],\n            [37.705795, 55.552981],\n            [37.705795, 55.552891],\n            [37.705705, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.552981],\n            [37.705705, 55.553071],\n            [37.705795, 55.553071],\n            [37.705795, 55.552981],\n            [37.705705, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.553071],\n            [37.705705, 55.553161],\n            [37.705795, 55.553161],\n            [37.705795, 55.553071],\n            [37.705705, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.553161],\n            [37.705705, 55.553251],\n            [37.705795, 55.553251],\n            [37.705795, 55.553161],\n            [37.705705, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.553251],\n            [37.705705, 55.553341],\n            [37.705795, 55.553341],\n            [37.705795, 55.553251],\n            [37.705705, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.553341],\n            [37.705705, 55.553431],\n            [37.705795, 55.553431],\n            [37.705795, 55.553341],\n            [37.705705, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.553431],\n            [37.705705, 55.55352],\n            [37.705795, 55.55352],\n            [37.705795, 55.553431],\n            [37.705705, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.55352],\n            [37.705705, 55.55361],\n            [37.705795, 55.55361],\n            [37.705795, 55.55352],\n            [37.705705, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.55361],\n            [37.705705, 55.5537],\n            [37.705795, 55.5537],\n            [37.705795, 55.55361],\n            [37.705705, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.5537],\n            [37.705705, 55.55379],\n            [37.705795, 55.55379],\n            [37.705795, 55.5537],\n            [37.705705, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.55379],\n            [37.705705, 55.55388],\n            [37.705795, 55.55388],\n            [37.705795, 55.55379],\n            [37.705705, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.55388],\n            [37.705705, 55.55397],\n            [37.705795, 55.55397],\n            [37.705795, 55.55388],\n            [37.705705, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.55397],\n            [37.705705, 55.55406],\n            [37.705795, 55.55406],\n            [37.705795, 55.55397],\n            [37.705705, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.55406],\n            [37.705705, 55.55415],\n            [37.705795, 55.55415],\n            [37.705795, 55.55406],\n            [37.705705, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.55415],\n            [37.705705, 55.55424],\n            [37.705795, 55.55424],\n            [37.705795, 55.55415],\n            [37.705705, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.55424],\n            [37.705705, 55.55433],\n            [37.705795, 55.55433],\n            [37.705795, 55.55424],\n            [37.705705, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.55433],\n            [37.705705, 55.55442],\n            [37.705795, 55.55442],\n            [37.705795, 55.55433],\n            [37.705705, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.55442],\n            [37.705705, 55.55451],\n            [37.705795, 55.55451],\n            [37.705795, 55.55442],\n            [37.705705, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.55451],\n            [37.705705, 55.5546],\n            [37.705795, 55.5546],\n            [37.705795, 55.55451],\n            [37.705705, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.5546],\n            [37.705705, 55.55469],\n            [37.705795, 55.55469],\n            [37.705795, 55.5546],\n            [37.705705, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.55469],\n            [37.705705, 55.55478],\n            [37.705795, 55.55478],\n            [37.705795, 55.55469],\n            [37.705705, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.55478],\n            [37.705705, 55.554869],\n            [37.705795, 55.554869],\n            [37.705795, 55.55478],\n            [37.705705, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.554869],\n            [37.705705, 55.554959],\n            [37.705795, 55.554959],\n            [37.705795, 55.554869],\n            [37.705705, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.554959],\n            [37.705705, 55.555049],\n            [37.705795, 55.555049],\n            [37.705795, 55.554959],\n            [37.705705, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.555049],\n            [37.705705, 55.555139],\n            [37.705795, 55.555139],\n            [37.705795, 55.555049],\n            [37.705705, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.555139],\n            [37.705705, 55.555229],\n            [37.705795, 55.555229],\n            [37.705795, 55.555139],\n            [37.705705, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705705, 55.555229],\n            [37.705705, 55.555319],\n            [37.705795, 55.555319],\n            [37.705795, 55.555229],\n            [37.705705, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.551632],\n            [37.705795, 55.551722],\n            [37.705885, 55.551722],\n            [37.705885, 55.551632],\n            [37.705795, 55.551632]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.551722],\n            [37.705795, 55.551812],\n            [37.705885, 55.551812],\n            [37.705885, 55.551722],\n            [37.705795, 55.551722]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.551812],\n            [37.705795, 55.551902],\n            [37.705885, 55.551902],\n            [37.705885, 55.551812],\n            [37.705795, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.551902],\n            [37.705795, 55.551992],\n            [37.705885, 55.551992],\n            [37.705885, 55.551902],\n            [37.705795, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.551992],\n            [37.705795, 55.552082],\n            [37.705885, 55.552082],\n            [37.705885, 55.551992],\n            [37.705795, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.552082],\n            [37.705795, 55.552171],\n            [37.705885, 55.552171],\n            [37.705885, 55.552082],\n            [37.705795, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.552171],\n            [37.705795, 55.552261],\n            [37.705885, 55.552261],\n            [37.705885, 55.552171],\n            [37.705795, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.552261],\n            [37.705795, 55.552351],\n            [37.705885, 55.552351],\n            [37.705885, 55.552261],\n            [37.705795, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.552351],\n            [37.705795, 55.552441],\n            [37.705885, 55.552441],\n            [37.705885, 55.552351],\n            [37.705795, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.552441],\n            [37.705795, 55.552531],\n            [37.705885, 55.552531],\n            [37.705885, 55.552441],\n            [37.705795, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.552531],\n            [37.705795, 55.552621],\n            [37.705885, 55.552621],\n            [37.705885, 55.552531],\n            [37.705795, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.552621],\n            [37.705795, 55.552711],\n            [37.705885, 55.552711],\n            [37.705885, 55.552621],\n            [37.705795, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.552711],\n            [37.705795, 55.552801],\n            [37.705885, 55.552801],\n            [37.705885, 55.552711],\n            [37.705795, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.552801],\n            [37.705795, 55.552891],\n            [37.705885, 55.552891],\n            [37.705885, 55.552801],\n            [37.705795, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.552891],\n            [37.705795, 55.552981],\n            [37.705885, 55.552981],\n            [37.705885, 55.552891],\n            [37.705795, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.552981],\n            [37.705795, 55.553071],\n            [37.705885, 55.553071],\n            [37.705885, 55.552981],\n            [37.705795, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.553071],\n            [37.705795, 55.553161],\n            [37.705885, 55.553161],\n            [37.705885, 55.553071],\n            [37.705795, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.553161],\n            [37.705795, 55.553251],\n            [37.705885, 55.553251],\n            [37.705885, 55.553161],\n            [37.705795, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.553251],\n            [37.705795, 55.553341],\n            [37.705885, 55.553341],\n            [37.705885, 55.553251],\n            [37.705795, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.553341],\n            [37.705795, 55.553431],\n            [37.705885, 55.553431],\n            [37.705885, 55.553341],\n            [37.705795, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.553431],\n            [37.705795, 55.55352],\n            [37.705885, 55.55352],\n            [37.705885, 55.553431],\n            [37.705795, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.55352],\n            [37.705795, 55.55361],\n            [37.705885, 55.55361],\n            [37.705885, 55.55352],\n            [37.705795, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.55361],\n            [37.705795, 55.5537],\n            [37.705885, 55.5537],\n            [37.705885, 55.55361],\n            [37.705795, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.5537],\n            [37.705795, 55.55379],\n            [37.705885, 55.55379],\n            [37.705885, 55.5537],\n            [37.705795, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.55379],\n            [37.705795, 55.55388],\n            [37.705885, 55.55388],\n            [37.705885, 55.55379],\n            [37.705795, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.55388],\n            [37.705795, 55.55397],\n            [37.705885, 55.55397],\n            [37.705885, 55.55388],\n            [37.705795, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.55397],\n            [37.705795, 55.55406],\n            [37.705885, 55.55406],\n            [37.705885, 55.55397],\n            [37.705795, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.55406],\n            [37.705795, 55.55415],\n            [37.705885, 55.55415],\n            [37.705885, 55.55406],\n            [37.705795, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.55415],\n            [37.705795, 55.55424],\n            [37.705885, 55.55424],\n            [37.705885, 55.55415],\n            [37.705795, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.55424],\n            [37.705795, 55.55433],\n            [37.705885, 55.55433],\n            [37.705885, 55.55424],\n            [37.705795, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.55433],\n            [37.705795, 55.55442],\n            [37.705885, 55.55442],\n            [37.705885, 55.55433],\n            [37.705795, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.55442],\n            [37.705795, 55.55451],\n            [37.705885, 55.55451],\n            [37.705885, 55.55442],\n            [37.705795, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.55451],\n            [37.705795, 55.5546],\n            [37.705885, 55.5546],\n            [37.705885, 55.55451],\n            [37.705795, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.5546],\n            [37.705795, 55.55469],\n            [37.705885, 55.55469],\n            [37.705885, 55.5546],\n            [37.705795, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.55469],\n            [37.705795, 55.55478],\n            [37.705885, 55.55478],\n            [37.705885, 55.55469],\n            [37.705795, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.55478],\n            [37.705795, 55.554869],\n            [37.705885, 55.554869],\n            [37.705885, 55.55478],\n            [37.705795, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.554869],\n            [37.705795, 55.554959],\n            [37.705885, 55.554959],\n            [37.705885, 55.554869],\n            [37.705795, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.554959],\n            [37.705795, 55.555049],\n            [37.705885, 55.555049],\n            [37.705885, 55.554959],\n            [37.705795, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.555049],\n            [37.705795, 55.555139],\n            [37.705885, 55.555139],\n            [37.705885, 55.555049],\n            [37.705795, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.555139],\n            [37.705795, 55.555229],\n            [37.705885, 55.555229],\n            [37.705885, 55.555139],\n            [37.705795, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.555229],\n            [37.705795, 55.555319],\n            [37.705885, 55.555319],\n            [37.705885, 55.555229],\n            [37.705795, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705795, 55.555319],\n            [37.705795, 55.555409],\n            [37.705885, 55.555409],\n            [37.705885, 55.555319],\n            [37.705795, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.551632],\n            [37.705885, 55.551722],\n            [37.705974, 55.551722],\n            [37.705974, 55.551632],\n            [37.705885, 55.551632]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.551722],\n            [37.705885, 55.551812],\n            [37.705974, 55.551812],\n            [37.705974, 55.551722],\n            [37.705885, 55.551722]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.551812],\n            [37.705885, 55.551902],\n            [37.705974, 55.551902],\n            [37.705974, 55.551812],\n            [37.705885, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.551902],\n            [37.705885, 55.551992],\n            [37.705974, 55.551992],\n            [37.705974, 55.551902],\n            [37.705885, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.551992],\n            [37.705885, 55.552082],\n            [37.705974, 55.552082],\n            [37.705974, 55.551992],\n            [37.705885, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.552082],\n            [37.705885, 55.552171],\n            [37.705974, 55.552171],\n            [37.705974, 55.552082],\n            [37.705885, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.552171],\n            [37.705885, 55.552261],\n            [37.705974, 55.552261],\n            [37.705974, 55.552171],\n            [37.705885, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.552261],\n            [37.705885, 55.552351],\n            [37.705974, 55.552351],\n            [37.705974, 55.552261],\n            [37.705885, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.552351],\n            [37.705885, 55.552441],\n            [37.705974, 55.552441],\n            [37.705974, 55.552351],\n            [37.705885, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.552441],\n            [37.705885, 55.552531],\n            [37.705974, 55.552531],\n            [37.705974, 55.552441],\n            [37.705885, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.552531],\n            [37.705885, 55.552621],\n            [37.705974, 55.552621],\n            [37.705974, 55.552531],\n            [37.705885, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.552621],\n            [37.705885, 55.552711],\n            [37.705974, 55.552711],\n            [37.705974, 55.552621],\n            [37.705885, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.552711],\n            [37.705885, 55.552801],\n            [37.705974, 55.552801],\n            [37.705974, 55.552711],\n            [37.705885, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.552801],\n            [37.705885, 55.552891],\n            [37.705974, 55.552891],\n            [37.705974, 55.552801],\n            [37.705885, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.552891],\n            [37.705885, 55.552981],\n            [37.705974, 55.552981],\n            [37.705974, 55.552891],\n            [37.705885, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.552981],\n            [37.705885, 55.553071],\n            [37.705974, 55.553071],\n            [37.705974, 55.552981],\n            [37.705885, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.553071],\n            [37.705885, 55.553161],\n            [37.705974, 55.553161],\n            [37.705974, 55.553071],\n            [37.705885, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.553161],\n            [37.705885, 55.553251],\n            [37.705974, 55.553251],\n            [37.705974, 55.553161],\n            [37.705885, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.553251],\n            [37.705885, 55.553341],\n            [37.705974, 55.553341],\n            [37.705974, 55.553251],\n            [37.705885, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.553341],\n            [37.705885, 55.553431],\n            [37.705974, 55.553431],\n            [37.705974, 55.553341],\n            [37.705885, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.553431],\n            [37.705885, 55.55352],\n            [37.705974, 55.55352],\n            [37.705974, 55.553431],\n            [37.705885, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.55352],\n            [37.705885, 55.55361],\n            [37.705974, 55.55361],\n            [37.705974, 55.55352],\n            [37.705885, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.55361],\n            [37.705885, 55.5537],\n            [37.705974, 55.5537],\n            [37.705974, 55.55361],\n            [37.705885, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.5537],\n            [37.705885, 55.55379],\n            [37.705974, 55.55379],\n            [37.705974, 55.5537],\n            [37.705885, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.55379],\n            [37.705885, 55.55388],\n            [37.705974, 55.55388],\n            [37.705974, 55.55379],\n            [37.705885, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.55388],\n            [37.705885, 55.55397],\n            [37.705974, 55.55397],\n            [37.705974, 55.55388],\n            [37.705885, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.55397],\n            [37.705885, 55.55406],\n            [37.705974, 55.55406],\n            [37.705974, 55.55397],\n            [37.705885, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.55406],\n            [37.705885, 55.55415],\n            [37.705974, 55.55415],\n            [37.705974, 55.55406],\n            [37.705885, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.55415],\n            [37.705885, 55.55424],\n            [37.705974, 55.55424],\n            [37.705974, 55.55415],\n            [37.705885, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.55424],\n            [37.705885, 55.55433],\n            [37.705974, 55.55433],\n            [37.705974, 55.55424],\n            [37.705885, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.55433],\n            [37.705885, 55.55442],\n            [37.705974, 55.55442],\n            [37.705974, 55.55433],\n            [37.705885, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.55442],\n            [37.705885, 55.55451],\n            [37.705974, 55.55451],\n            [37.705974, 55.55442],\n            [37.705885, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.55451],\n            [37.705885, 55.5546],\n            [37.705974, 55.5546],\n            [37.705974, 55.55451],\n            [37.705885, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.5546],\n            [37.705885, 55.55469],\n            [37.705974, 55.55469],\n            [37.705974, 55.5546],\n            [37.705885, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.55469],\n            [37.705885, 55.55478],\n            [37.705974, 55.55478],\n            [37.705974, 55.55469],\n            [37.705885, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.55478],\n            [37.705885, 55.554869],\n            [37.705974, 55.554869],\n            [37.705974, 55.55478],\n            [37.705885, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.554869],\n            [37.705885, 55.554959],\n            [37.705974, 55.554959],\n            [37.705974, 55.554869],\n            [37.705885, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.554959],\n            [37.705885, 55.555049],\n            [37.705974, 55.555049],\n            [37.705974, 55.554959],\n            [37.705885, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.555049],\n            [37.705885, 55.555139],\n            [37.705974, 55.555139],\n            [37.705974, 55.555049],\n            [37.705885, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.555139],\n            [37.705885, 55.555229],\n            [37.705974, 55.555229],\n            [37.705974, 55.555139],\n            [37.705885, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.555229],\n            [37.705885, 55.555319],\n            [37.705974, 55.555319],\n            [37.705974, 55.555229],\n            [37.705885, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705885, 55.555319],\n            [37.705885, 55.555409],\n            [37.705974, 55.555409],\n            [37.705974, 55.555319],\n            [37.705885, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.551542],\n            [37.705974, 55.551632],\n            [37.706064, 55.551632],\n            [37.706064, 55.551542],\n            [37.705974, 55.551542]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.551632],\n            [37.705974, 55.551722],\n            [37.706064, 55.551722],\n            [37.706064, 55.551632],\n            [37.705974, 55.551632]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.551722],\n            [37.705974, 55.551812],\n            [37.706064, 55.551812],\n            [37.706064, 55.551722],\n            [37.705974, 55.551722]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.551812],\n            [37.705974, 55.551902],\n            [37.706064, 55.551902],\n            [37.706064, 55.551812],\n            [37.705974, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.551902],\n            [37.705974, 55.551992],\n            [37.706064, 55.551992],\n            [37.706064, 55.551902],\n            [37.705974, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.551992],\n            [37.705974, 55.552082],\n            [37.706064, 55.552082],\n            [37.706064, 55.551992],\n            [37.705974, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.552082],\n            [37.705974, 55.552171],\n            [37.706064, 55.552171],\n            [37.706064, 55.552082],\n            [37.705974, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.552171],\n            [37.705974, 55.552261],\n            [37.706064, 55.552261],\n            [37.706064, 55.552171],\n            [37.705974, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.552261],\n            [37.705974, 55.552351],\n            [37.706064, 55.552351],\n            [37.706064, 55.552261],\n            [37.705974, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.552351],\n            [37.705974, 55.552441],\n            [37.706064, 55.552441],\n            [37.706064, 55.552351],\n            [37.705974, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.552441],\n            [37.705974, 55.552531],\n            [37.706064, 55.552531],\n            [37.706064, 55.552441],\n            [37.705974, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.552531],\n            [37.705974, 55.552621],\n            [37.706064, 55.552621],\n            [37.706064, 55.552531],\n            [37.705974, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.552621],\n            [37.705974, 55.552711],\n            [37.706064, 55.552711],\n            [37.706064, 55.552621],\n            [37.705974, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.552711],\n            [37.705974, 55.552801],\n            [37.706064, 55.552801],\n            [37.706064, 55.552711],\n            [37.705974, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.552801],\n            [37.705974, 55.552891],\n            [37.706064, 55.552891],\n            [37.706064, 55.552801],\n            [37.705974, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.552891],\n            [37.705974, 55.552981],\n            [37.706064, 55.552981],\n            [37.706064, 55.552891],\n            [37.705974, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.552981],\n            [37.705974, 55.553071],\n            [37.706064, 55.553071],\n            [37.706064, 55.552981],\n            [37.705974, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.553071],\n            [37.705974, 55.553161],\n            [37.706064, 55.553161],\n            [37.706064, 55.553071],\n            [37.705974, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.553161],\n            [37.705974, 55.553251],\n            [37.706064, 55.553251],\n            [37.706064, 55.553161],\n            [37.705974, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.553251],\n            [37.705974, 55.553341],\n            [37.706064, 55.553341],\n            [37.706064, 55.553251],\n            [37.705974, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.553341],\n            [37.705974, 55.553431],\n            [37.706064, 55.553431],\n            [37.706064, 55.553341],\n            [37.705974, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.553431],\n            [37.705974, 55.55352],\n            [37.706064, 55.55352],\n            [37.706064, 55.553431],\n            [37.705974, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.55352],\n            [37.705974, 55.55361],\n            [37.706064, 55.55361],\n            [37.706064, 55.55352],\n            [37.705974, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.55361],\n            [37.705974, 55.5537],\n            [37.706064, 55.5537],\n            [37.706064, 55.55361],\n            [37.705974, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.5537],\n            [37.705974, 55.55379],\n            [37.706064, 55.55379],\n            [37.706064, 55.5537],\n            [37.705974, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.55379],\n            [37.705974, 55.55388],\n            [37.706064, 55.55388],\n            [37.706064, 55.55379],\n            [37.705974, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.55388],\n            [37.705974, 55.55397],\n            [37.706064, 55.55397],\n            [37.706064, 55.55388],\n            [37.705974, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.55397],\n            [37.705974, 55.55406],\n            [37.706064, 55.55406],\n            [37.706064, 55.55397],\n            [37.705974, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.55406],\n            [37.705974, 55.55415],\n            [37.706064, 55.55415],\n            [37.706064, 55.55406],\n            [37.705974, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.55415],\n            [37.705974, 55.55424],\n            [37.706064, 55.55424],\n            [37.706064, 55.55415],\n            [37.705974, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.55424],\n            [37.705974, 55.55433],\n            [37.706064, 55.55433],\n            [37.706064, 55.55424],\n            [37.705974, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.55433],\n            [37.705974, 55.55442],\n            [37.706064, 55.55442],\n            [37.706064, 55.55433],\n            [37.705974, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.55442],\n            [37.705974, 55.55451],\n            [37.706064, 55.55451],\n            [37.706064, 55.55442],\n            [37.705974, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.55451],\n            [37.705974, 55.5546],\n            [37.706064, 55.5546],\n            [37.706064, 55.55451],\n            [37.705974, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.5546],\n            [37.705974, 55.55469],\n            [37.706064, 55.55469],\n            [37.706064, 55.5546],\n            [37.705974, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.55469],\n            [37.705974, 55.55478],\n            [37.706064, 55.55478],\n            [37.706064, 55.55469],\n            [37.705974, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.55478],\n            [37.705974, 55.554869],\n            [37.706064, 55.554869],\n            [37.706064, 55.55478],\n            [37.705974, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.554869],\n            [37.705974, 55.554959],\n            [37.706064, 55.554959],\n            [37.706064, 55.554869],\n            [37.705974, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.554959],\n            [37.705974, 55.555049],\n            [37.706064, 55.555049],\n            [37.706064, 55.554959],\n            [37.705974, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.555049],\n            [37.705974, 55.555139],\n            [37.706064, 55.555139],\n            [37.706064, 55.555049],\n            [37.705974, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.555139],\n            [37.705974, 55.555229],\n            [37.706064, 55.555229],\n            [37.706064, 55.555139],\n            [37.705974, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.555229],\n            [37.705974, 55.555319],\n            [37.706064, 55.555319],\n            [37.706064, 55.555229],\n            [37.705974, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.705974, 55.555319],\n            [37.705974, 55.555409],\n            [37.706064, 55.555409],\n            [37.706064, 55.555319],\n            [37.705974, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.551542],\n            [37.706064, 55.551632],\n            [37.706154, 55.551632],\n            [37.706154, 55.551542],\n            [37.706064, 55.551542]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.551632],\n            [37.706064, 55.551722],\n            [37.706154, 55.551722],\n            [37.706154, 55.551632],\n            [37.706064, 55.551632]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.551722],\n            [37.706064, 55.551812],\n            [37.706154, 55.551812],\n            [37.706154, 55.551722],\n            [37.706064, 55.551722]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.551812],\n            [37.706064, 55.551902],\n            [37.706154, 55.551902],\n            [37.706154, 55.551812],\n            [37.706064, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.551902],\n            [37.706064, 55.551992],\n            [37.706154, 55.551992],\n            [37.706154, 55.551902],\n            [37.706064, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.551992],\n            [37.706064, 55.552082],\n            [37.706154, 55.552082],\n            [37.706154, 55.551992],\n            [37.706064, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.552082],\n            [37.706064, 55.552171],\n            [37.706154, 55.552171],\n            [37.706154, 55.552082],\n            [37.706064, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.552171],\n            [37.706064, 55.552261],\n            [37.706154, 55.552261],\n            [37.706154, 55.552171],\n            [37.706064, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.552261],\n            [37.706064, 55.552351],\n            [37.706154, 55.552351],\n            [37.706154, 55.552261],\n            [37.706064, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.552351],\n            [37.706064, 55.552441],\n            [37.706154, 55.552441],\n            [37.706154, 55.552351],\n            [37.706064, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.552441],\n            [37.706064, 55.552531],\n            [37.706154, 55.552531],\n            [37.706154, 55.552441],\n            [37.706064, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.552531],\n            [37.706064, 55.552621],\n            [37.706154, 55.552621],\n            [37.706154, 55.552531],\n            [37.706064, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.552621],\n            [37.706064, 55.552711],\n            [37.706154, 55.552711],\n            [37.706154, 55.552621],\n            [37.706064, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.552711],\n            [37.706064, 55.552801],\n            [37.706154, 55.552801],\n            [37.706154, 55.552711],\n            [37.706064, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.552801],\n            [37.706064, 55.552891],\n            [37.706154, 55.552891],\n            [37.706154, 55.552801],\n            [37.706064, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.552891],\n            [37.706064, 55.552981],\n            [37.706154, 55.552981],\n            [37.706154, 55.552891],\n            [37.706064, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.552981],\n            [37.706064, 55.553071],\n            [37.706154, 55.553071],\n            [37.706154, 55.552981],\n            [37.706064, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.553071],\n            [37.706064, 55.553161],\n            [37.706154, 55.553161],\n            [37.706154, 55.553071],\n            [37.706064, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.553161],\n            [37.706064, 55.553251],\n            [37.706154, 55.553251],\n            [37.706154, 55.553161],\n            [37.706064, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.553251],\n            [37.706064, 55.553341],\n            [37.706154, 55.553341],\n            [37.706154, 55.553251],\n            [37.706064, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.553341],\n            [37.706064, 55.553431],\n            [37.706154, 55.553431],\n            [37.706154, 55.553341],\n            [37.706064, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.553431],\n            [37.706064, 55.55352],\n            [37.706154, 55.55352],\n            [37.706154, 55.553431],\n            [37.706064, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.55352],\n            [37.706064, 55.55361],\n            [37.706154, 55.55361],\n            [37.706154, 55.55352],\n            [37.706064, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.55361],\n            [37.706064, 55.5537],\n            [37.706154, 55.5537],\n            [37.706154, 55.55361],\n            [37.706064, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.5537],\n            [37.706064, 55.55379],\n            [37.706154, 55.55379],\n            [37.706154, 55.5537],\n            [37.706064, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.55379],\n            [37.706064, 55.55388],\n            [37.706154, 55.55388],\n            [37.706154, 55.55379],\n            [37.706064, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.55388],\n            [37.706064, 55.55397],\n            [37.706154, 55.55397],\n            [37.706154, 55.55388],\n            [37.706064, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.55397],\n            [37.706064, 55.55406],\n            [37.706154, 55.55406],\n            [37.706154, 55.55397],\n            [37.706064, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.55406],\n            [37.706064, 55.55415],\n            [37.706154, 55.55415],\n            [37.706154, 55.55406],\n            [37.706064, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.55415],\n            [37.706064, 55.55424],\n            [37.706154, 55.55424],\n            [37.706154, 55.55415],\n            [37.706064, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.55424],\n            [37.706064, 55.55433],\n            [37.706154, 55.55433],\n            [37.706154, 55.55424],\n            [37.706064, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.55433],\n            [37.706064, 55.55442],\n            [37.706154, 55.55442],\n            [37.706154, 55.55433],\n            [37.706064, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.55442],\n            [37.706064, 55.55451],\n            [37.706154, 55.55451],\n            [37.706154, 55.55442],\n            [37.706064, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.55451],\n            [37.706064, 55.5546],\n            [37.706154, 55.5546],\n            [37.706154, 55.55451],\n            [37.706064, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.5546],\n            [37.706064, 55.55469],\n            [37.706154, 55.55469],\n            [37.706154, 55.5546],\n            [37.706064, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.55469],\n            [37.706064, 55.55478],\n            [37.706154, 55.55478],\n            [37.706154, 55.55469],\n            [37.706064, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.55478],\n            [37.706064, 55.554869],\n            [37.706154, 55.554869],\n            [37.706154, 55.55478],\n            [37.706064, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.554869],\n            [37.706064, 55.554959],\n            [37.706154, 55.554959],\n            [37.706154, 55.554869],\n            [37.706064, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.554959],\n            [37.706064, 55.555049],\n            [37.706154, 55.555049],\n            [37.706154, 55.554959],\n            [37.706064, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.555049],\n            [37.706064, 55.555139],\n            [37.706154, 55.555139],\n            [37.706154, 55.555049],\n            [37.706064, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.555139],\n            [37.706064, 55.555229],\n            [37.706154, 55.555229],\n            [37.706154, 55.555139],\n            [37.706064, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.555229],\n            [37.706064, 55.555319],\n            [37.706154, 55.555319],\n            [37.706154, 55.555229],\n            [37.706064, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.555319],\n            [37.706064, 55.555409],\n            [37.706154, 55.555409],\n            [37.706154, 55.555319],\n            [37.706064, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706064, 55.555409],\n            [37.706064, 55.555499],\n            [37.706154, 55.555499],\n            [37.706154, 55.555409],\n            [37.706064, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.551542],\n            [37.706154, 55.551632],\n            [37.706244, 55.551632],\n            [37.706244, 55.551542],\n            [37.706154, 55.551542]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.551632],\n            [37.706154, 55.551722],\n            [37.706244, 55.551722],\n            [37.706244, 55.551632],\n            [37.706154, 55.551632]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.551722],\n            [37.706154, 55.551812],\n            [37.706244, 55.551812],\n            [37.706244, 55.551722],\n            [37.706154, 55.551722]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.551812],\n            [37.706154, 55.551902],\n            [37.706244, 55.551902],\n            [37.706244, 55.551812],\n            [37.706154, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.551902],\n            [37.706154, 55.551992],\n            [37.706244, 55.551992],\n            [37.706244, 55.551902],\n            [37.706154, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.551992],\n            [37.706154, 55.552082],\n            [37.706244, 55.552082],\n            [37.706244, 55.551992],\n            [37.706154, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.552082],\n            [37.706154, 55.552171],\n            [37.706244, 55.552171],\n            [37.706244, 55.552082],\n            [37.706154, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.552171],\n            [37.706154, 55.552261],\n            [37.706244, 55.552261],\n            [37.706244, 55.552171],\n            [37.706154, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.552261],\n            [37.706154, 55.552351],\n            [37.706244, 55.552351],\n            [37.706244, 55.552261],\n            [37.706154, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.552351],\n            [37.706154, 55.552441],\n            [37.706244, 55.552441],\n            [37.706244, 55.552351],\n            [37.706154, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.552441],\n            [37.706154, 55.552531],\n            [37.706244, 55.552531],\n            [37.706244, 55.552441],\n            [37.706154, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.552531],\n            [37.706154, 55.552621],\n            [37.706244, 55.552621],\n            [37.706244, 55.552531],\n            [37.706154, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.552621],\n            [37.706154, 55.552711],\n            [37.706244, 55.552711],\n            [37.706244, 55.552621],\n            [37.706154, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.552711],\n            [37.706154, 55.552801],\n            [37.706244, 55.552801],\n            [37.706244, 55.552711],\n            [37.706154, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.552801],\n            [37.706154, 55.552891],\n            [37.706244, 55.552891],\n            [37.706244, 55.552801],\n            [37.706154, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.552891],\n            [37.706154, 55.552981],\n            [37.706244, 55.552981],\n            [37.706244, 55.552891],\n            [37.706154, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.552981],\n            [37.706154, 55.553071],\n            [37.706244, 55.553071],\n            [37.706244, 55.552981],\n            [37.706154, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.553071],\n            [37.706154, 55.553161],\n            [37.706244, 55.553161],\n            [37.706244, 55.553071],\n            [37.706154, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.553161],\n            [37.706154, 55.553251],\n            [37.706244, 55.553251],\n            [37.706244, 55.553161],\n            [37.706154, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.553251],\n            [37.706154, 55.553341],\n            [37.706244, 55.553341],\n            [37.706244, 55.553251],\n            [37.706154, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.553341],\n            [37.706154, 55.553431],\n            [37.706244, 55.553431],\n            [37.706244, 55.553341],\n            [37.706154, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.553431],\n            [37.706154, 55.55352],\n            [37.706244, 55.55352],\n            [37.706244, 55.553431],\n            [37.706154, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.55352],\n            [37.706154, 55.55361],\n            [37.706244, 55.55361],\n            [37.706244, 55.55352],\n            [37.706154, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.55361],\n            [37.706154, 55.5537],\n            [37.706244, 55.5537],\n            [37.706244, 55.55361],\n            [37.706154, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.5537],\n            [37.706154, 55.55379],\n            [37.706244, 55.55379],\n            [37.706244, 55.5537],\n            [37.706154, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.55379],\n            [37.706154, 55.55388],\n            [37.706244, 55.55388],\n            [37.706244, 55.55379],\n            [37.706154, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.55388],\n            [37.706154, 55.55397],\n            [37.706244, 55.55397],\n            [37.706244, 55.55388],\n            [37.706154, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.55397],\n            [37.706154, 55.55406],\n            [37.706244, 55.55406],\n            [37.706244, 55.55397],\n            [37.706154, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.55406],\n            [37.706154, 55.55415],\n            [37.706244, 55.55415],\n            [37.706244, 55.55406],\n            [37.706154, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.55415],\n            [37.706154, 55.55424],\n            [37.706244, 55.55424],\n            [37.706244, 55.55415],\n            [37.706154, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.55424],\n            [37.706154, 55.55433],\n            [37.706244, 55.55433],\n            [37.706244, 55.55424],\n            [37.706154, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.55433],\n            [37.706154, 55.55442],\n            [37.706244, 55.55442],\n            [37.706244, 55.55433],\n            [37.706154, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.55442],\n            [37.706154, 55.55451],\n            [37.706244, 55.55451],\n            [37.706244, 55.55442],\n            [37.706154, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.55451],\n            [37.706154, 55.5546],\n            [37.706244, 55.5546],\n            [37.706244, 55.55451],\n            [37.706154, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.5546],\n            [37.706154, 55.55469],\n            [37.706244, 55.55469],\n            [37.706244, 55.5546],\n            [37.706154, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.55469],\n            [37.706154, 55.55478],\n            [37.706244, 55.55478],\n            [37.706244, 55.55469],\n            [37.706154, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.55478],\n            [37.706154, 55.554869],\n            [37.706244, 55.554869],\n            [37.706244, 55.55478],\n            [37.706154, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.554869],\n            [37.706154, 55.554959],\n            [37.706244, 55.554959],\n            [37.706244, 55.554869],\n            [37.706154, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.554959],\n            [37.706154, 55.555049],\n            [37.706244, 55.555049],\n            [37.706244, 55.554959],\n            [37.706154, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.555049],\n            [37.706154, 55.555139],\n            [37.706244, 55.555139],\n            [37.706244, 55.555049],\n            [37.706154, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.555139],\n            [37.706154, 55.555229],\n            [37.706244, 55.555229],\n            [37.706244, 55.555139],\n            [37.706154, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.555229],\n            [37.706154, 55.555319],\n            [37.706244, 55.555319],\n            [37.706244, 55.555229],\n            [37.706154, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.555319],\n            [37.706154, 55.555409],\n            [37.706244, 55.555409],\n            [37.706244, 55.555319],\n            [37.706154, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706154, 55.555409],\n            [37.706154, 55.555499],\n            [37.706244, 55.555499],\n            [37.706244, 55.555409],\n            [37.706154, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.551542],\n            [37.706244, 55.551632],\n            [37.706334, 55.551632],\n            [37.706334, 55.551542],\n            [37.706244, 55.551542]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.551632],\n            [37.706244, 55.551722],\n            [37.706334, 55.551722],\n            [37.706334, 55.551632],\n            [37.706244, 55.551632]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.551722],\n            [37.706244, 55.551812],\n            [37.706334, 55.551812],\n            [37.706334, 55.551722],\n            [37.706244, 55.551722]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.551812],\n            [37.706244, 55.551902],\n            [37.706334, 55.551902],\n            [37.706334, 55.551812],\n            [37.706244, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.551902],\n            [37.706244, 55.551992],\n            [37.706334, 55.551992],\n            [37.706334, 55.551902],\n            [37.706244, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.551992],\n            [37.706244, 55.552082],\n            [37.706334, 55.552082],\n            [37.706334, 55.551992],\n            [37.706244, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.552082],\n            [37.706244, 55.552171],\n            [37.706334, 55.552171],\n            [37.706334, 55.552082],\n            [37.706244, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.552171],\n            [37.706244, 55.552261],\n            [37.706334, 55.552261],\n            [37.706334, 55.552171],\n            [37.706244, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.552261],\n            [37.706244, 55.552351],\n            [37.706334, 55.552351],\n            [37.706334, 55.552261],\n            [37.706244, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.552351],\n            [37.706244, 55.552441],\n            [37.706334, 55.552441],\n            [37.706334, 55.552351],\n            [37.706244, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.552441],\n            [37.706244, 55.552531],\n            [37.706334, 55.552531],\n            [37.706334, 55.552441],\n            [37.706244, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.552531],\n            [37.706244, 55.552621],\n            [37.706334, 55.552621],\n            [37.706334, 55.552531],\n            [37.706244, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.552621],\n            [37.706244, 55.552711],\n            [37.706334, 55.552711],\n            [37.706334, 55.552621],\n            [37.706244, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.552711],\n            [37.706244, 55.552801],\n            [37.706334, 55.552801],\n            [37.706334, 55.552711],\n            [37.706244, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.552801],\n            [37.706244, 55.552891],\n            [37.706334, 55.552891],\n            [37.706334, 55.552801],\n            [37.706244, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.552891],\n            [37.706244, 55.552981],\n            [37.706334, 55.552981],\n            [37.706334, 55.552891],\n            [37.706244, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.552981],\n            [37.706244, 55.553071],\n            [37.706334, 55.553071],\n            [37.706334, 55.552981],\n            [37.706244, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.553071],\n            [37.706244, 55.553161],\n            [37.706334, 55.553161],\n            [37.706334, 55.553071],\n            [37.706244, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.553161],\n            [37.706244, 55.553251],\n            [37.706334, 55.553251],\n            [37.706334, 55.553161],\n            [37.706244, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.553251],\n            [37.706244, 55.553341],\n            [37.706334, 55.553341],\n            [37.706334, 55.553251],\n            [37.706244, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.553341],\n            [37.706244, 55.553431],\n            [37.706334, 55.553431],\n            [37.706334, 55.553341],\n            [37.706244, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.553431],\n            [37.706244, 55.55352],\n            [37.706334, 55.55352],\n            [37.706334, 55.553431],\n            [37.706244, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.55352],\n            [37.706244, 55.55361],\n            [37.706334, 55.55361],\n            [37.706334, 55.55352],\n            [37.706244, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.55361],\n            [37.706244, 55.5537],\n            [37.706334, 55.5537],\n            [37.706334, 55.55361],\n            [37.706244, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.5537],\n            [37.706244, 55.55379],\n            [37.706334, 55.55379],\n            [37.706334, 55.5537],\n            [37.706244, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.55379],\n            [37.706244, 55.55388],\n            [37.706334, 55.55388],\n            [37.706334, 55.55379],\n            [37.706244, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.55388],\n            [37.706244, 55.55397],\n            [37.706334, 55.55397],\n            [37.706334, 55.55388],\n            [37.706244, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.55397],\n            [37.706244, 55.55406],\n            [37.706334, 55.55406],\n            [37.706334, 55.55397],\n            [37.706244, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.55406],\n            [37.706244, 55.55415],\n            [37.706334, 55.55415],\n            [37.706334, 55.55406],\n            [37.706244, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.55415],\n            [37.706244, 55.55424],\n            [37.706334, 55.55424],\n            [37.706334, 55.55415],\n            [37.706244, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.55424],\n            [37.706244, 55.55433],\n            [37.706334, 55.55433],\n            [37.706334, 55.55424],\n            [37.706244, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.55433],\n            [37.706244, 55.55442],\n            [37.706334, 55.55442],\n            [37.706334, 55.55433],\n            [37.706244, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.55442],\n            [37.706244, 55.55451],\n            [37.706334, 55.55451],\n            [37.706334, 55.55442],\n            [37.706244, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.55451],\n            [37.706244, 55.5546],\n            [37.706334, 55.5546],\n            [37.706334, 55.55451],\n            [37.706244, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.5546],\n            [37.706244, 55.55469],\n            [37.706334, 55.55469],\n            [37.706334, 55.5546],\n            [37.706244, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.55469],\n            [37.706244, 55.55478],\n            [37.706334, 55.55478],\n            [37.706334, 55.55469],\n            [37.706244, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.55478],\n            [37.706244, 55.554869],\n            [37.706334, 55.554869],\n            [37.706334, 55.55478],\n            [37.706244, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.554869],\n            [37.706244, 55.554959],\n            [37.706334, 55.554959],\n            [37.706334, 55.554869],\n            [37.706244, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.554959],\n            [37.706244, 55.555049],\n            [37.706334, 55.555049],\n            [37.706334, 55.554959],\n            [37.706244, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.555049],\n            [37.706244, 55.555139],\n            [37.706334, 55.555139],\n            [37.706334, 55.555049],\n            [37.706244, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.555139],\n            [37.706244, 55.555229],\n            [37.706334, 55.555229],\n            [37.706334, 55.555139],\n            [37.706244, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.555229],\n            [37.706244, 55.555319],\n            [37.706334, 55.555319],\n            [37.706334, 55.555229],\n            [37.706244, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.555319],\n            [37.706244, 55.555409],\n            [37.706334, 55.555409],\n            [37.706334, 55.555319],\n            [37.706244, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706244, 55.555409],\n            [37.706244, 55.555499],\n            [37.706334, 55.555499],\n            [37.706334, 55.555409],\n            [37.706244, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.551542],\n            [37.706334, 55.551632],\n            [37.706424, 55.551632],\n            [37.706424, 55.551542],\n            [37.706334, 55.551542]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.551632],\n            [37.706334, 55.551722],\n            [37.706424, 55.551722],\n            [37.706424, 55.551632],\n            [37.706334, 55.551632]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.551722],\n            [37.706334, 55.551812],\n            [37.706424, 55.551812],\n            [37.706424, 55.551722],\n            [37.706334, 55.551722]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.551812],\n            [37.706334, 55.551902],\n            [37.706424, 55.551902],\n            [37.706424, 55.551812],\n            [37.706334, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.551902],\n            [37.706334, 55.551992],\n            [37.706424, 55.551992],\n            [37.706424, 55.551902],\n            [37.706334, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.551992],\n            [37.706334, 55.552082],\n            [37.706424, 55.552082],\n            [37.706424, 55.551992],\n            [37.706334, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.552082],\n            [37.706334, 55.552171],\n            [37.706424, 55.552171],\n            [37.706424, 55.552082],\n            [37.706334, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.552171],\n            [37.706334, 55.552261],\n            [37.706424, 55.552261],\n            [37.706424, 55.552171],\n            [37.706334, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.552261],\n            [37.706334, 55.552351],\n            [37.706424, 55.552351],\n            [37.706424, 55.552261],\n            [37.706334, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.552351],\n            [37.706334, 55.552441],\n            [37.706424, 55.552441],\n            [37.706424, 55.552351],\n            [37.706334, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.552441],\n            [37.706334, 55.552531],\n            [37.706424, 55.552531],\n            [37.706424, 55.552441],\n            [37.706334, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.552531],\n            [37.706334, 55.552621],\n            [37.706424, 55.552621],\n            [37.706424, 55.552531],\n            [37.706334, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.552621],\n            [37.706334, 55.552711],\n            [37.706424, 55.552711],\n            [37.706424, 55.552621],\n            [37.706334, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.552711],\n            [37.706334, 55.552801],\n            [37.706424, 55.552801],\n            [37.706424, 55.552711],\n            [37.706334, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.552801],\n            [37.706334, 55.552891],\n            [37.706424, 55.552891],\n            [37.706424, 55.552801],\n            [37.706334, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.552891],\n            [37.706334, 55.552981],\n            [37.706424, 55.552981],\n            [37.706424, 55.552891],\n            [37.706334, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.552981],\n            [37.706334, 55.553071],\n            [37.706424, 55.553071],\n            [37.706424, 55.552981],\n            [37.706334, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.553071],\n            [37.706334, 55.553161],\n            [37.706424, 55.553161],\n            [37.706424, 55.553071],\n            [37.706334, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.553161],\n            [37.706334, 55.553251],\n            [37.706424, 55.553251],\n            [37.706424, 55.553161],\n            [37.706334, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.553251],\n            [37.706334, 55.553341],\n            [37.706424, 55.553341],\n            [37.706424, 55.553251],\n            [37.706334, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.553341],\n            [37.706334, 55.553431],\n            [37.706424, 55.553431],\n            [37.706424, 55.553341],\n            [37.706334, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.553431],\n            [37.706334, 55.55352],\n            [37.706424, 55.55352],\n            [37.706424, 55.553431],\n            [37.706334, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.55352],\n            [37.706334, 55.55361],\n            [37.706424, 55.55361],\n            [37.706424, 55.55352],\n            [37.706334, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.55361],\n            [37.706334, 55.5537],\n            [37.706424, 55.5537],\n            [37.706424, 55.55361],\n            [37.706334, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.5537],\n            [37.706334, 55.55379],\n            [37.706424, 55.55379],\n            [37.706424, 55.5537],\n            [37.706334, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.55379],\n            [37.706334, 55.55388],\n            [37.706424, 55.55388],\n            [37.706424, 55.55379],\n            [37.706334, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.55388],\n            [37.706334, 55.55397],\n            [37.706424, 55.55397],\n            [37.706424, 55.55388],\n            [37.706334, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.55397],\n            [37.706334, 55.55406],\n            [37.706424, 55.55406],\n            [37.706424, 55.55397],\n            [37.706334, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.55406],\n            [37.706334, 55.55415],\n            [37.706424, 55.55415],\n            [37.706424, 55.55406],\n            [37.706334, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.55415],\n            [37.706334, 55.55424],\n            [37.706424, 55.55424],\n            [37.706424, 55.55415],\n            [37.706334, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.55424],\n            [37.706334, 55.55433],\n            [37.706424, 55.55433],\n            [37.706424, 55.55424],\n            [37.706334, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.55433],\n            [37.706334, 55.55442],\n            [37.706424, 55.55442],\n            [37.706424, 55.55433],\n            [37.706334, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.55442],\n            [37.706334, 55.55451],\n            [37.706424, 55.55451],\n            [37.706424, 55.55442],\n            [37.706334, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.55451],\n            [37.706334, 55.5546],\n            [37.706424, 55.5546],\n            [37.706424, 55.55451],\n            [37.706334, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.5546],\n            [37.706334, 55.55469],\n            [37.706424, 55.55469],\n            [37.706424, 55.5546],\n            [37.706334, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.55469],\n            [37.706334, 55.55478],\n            [37.706424, 55.55478],\n            [37.706424, 55.55469],\n            [37.706334, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.55478],\n            [37.706334, 55.554869],\n            [37.706424, 55.554869],\n            [37.706424, 55.55478],\n            [37.706334, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.554869],\n            [37.706334, 55.554959],\n            [37.706424, 55.554959],\n            [37.706424, 55.554869],\n            [37.706334, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.554959],\n            [37.706334, 55.555049],\n            [37.706424, 55.555049],\n            [37.706424, 55.554959],\n            [37.706334, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.555049],\n            [37.706334, 55.555139],\n            [37.706424, 55.555139],\n            [37.706424, 55.555049],\n            [37.706334, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.555139],\n            [37.706334, 55.555229],\n            [37.706424, 55.555229],\n            [37.706424, 55.555139],\n            [37.706334, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.555229],\n            [37.706334, 55.555319],\n            [37.706424, 55.555319],\n            [37.706424, 55.555229],\n            [37.706334, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.555319],\n            [37.706334, 55.555409],\n            [37.706424, 55.555409],\n            [37.706424, 55.555319],\n            [37.706334, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706334, 55.555409],\n            [37.706334, 55.555499],\n            [37.706424, 55.555499],\n            [37.706424, 55.555409],\n            [37.706334, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.551542],\n            [37.706424, 55.551632],\n            [37.706514, 55.551632],\n            [37.706514, 55.551542],\n            [37.706424, 55.551542]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.551632],\n            [37.706424, 55.551722],\n            [37.706514, 55.551722],\n            [37.706514, 55.551632],\n            [37.706424, 55.551632]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.551722],\n            [37.706424, 55.551812],\n            [37.706514, 55.551812],\n            [37.706514, 55.551722],\n            [37.706424, 55.551722]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.551812],\n            [37.706424, 55.551902],\n            [37.706514, 55.551902],\n            [37.706514, 55.551812],\n            [37.706424, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.551902],\n            [37.706424, 55.551992],\n            [37.706514, 55.551992],\n            [37.706514, 55.551902],\n            [37.706424, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.551992],\n            [37.706424, 55.552082],\n            [37.706514, 55.552082],\n            [37.706514, 55.551992],\n            [37.706424, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.552082],\n            [37.706424, 55.552171],\n            [37.706514, 55.552171],\n            [37.706514, 55.552082],\n            [37.706424, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.552171],\n            [37.706424, 55.552261],\n            [37.706514, 55.552261],\n            [37.706514, 55.552171],\n            [37.706424, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.552261],\n            [37.706424, 55.552351],\n            [37.706514, 55.552351],\n            [37.706514, 55.552261],\n            [37.706424, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.552351],\n            [37.706424, 55.552441],\n            [37.706514, 55.552441],\n            [37.706514, 55.552351],\n            [37.706424, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.552441],\n            [37.706424, 55.552531],\n            [37.706514, 55.552531],\n            [37.706514, 55.552441],\n            [37.706424, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.552531],\n            [37.706424, 55.552621],\n            [37.706514, 55.552621],\n            [37.706514, 55.552531],\n            [37.706424, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.552621],\n            [37.706424, 55.552711],\n            [37.706514, 55.552711],\n            [37.706514, 55.552621],\n            [37.706424, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.552711],\n            [37.706424, 55.552801],\n            [37.706514, 55.552801],\n            [37.706514, 55.552711],\n            [37.706424, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.552801],\n            [37.706424, 55.552891],\n            [37.706514, 55.552891],\n            [37.706514, 55.552801],\n            [37.706424, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.552891],\n            [37.706424, 55.552981],\n            [37.706514, 55.552981],\n            [37.706514, 55.552891],\n            [37.706424, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.552981],\n            [37.706424, 55.553071],\n            [37.706514, 55.553071],\n            [37.706514, 55.552981],\n            [37.706424, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.553071],\n            [37.706424, 55.553161],\n            [37.706514, 55.553161],\n            [37.706514, 55.553071],\n            [37.706424, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.553161],\n            [37.706424, 55.553251],\n            [37.706514, 55.553251],\n            [37.706514, 55.553161],\n            [37.706424, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.553251],\n            [37.706424, 55.553341],\n            [37.706514, 55.553341],\n            [37.706514, 55.553251],\n            [37.706424, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.553341],\n            [37.706424, 55.553431],\n            [37.706514, 55.553431],\n            [37.706514, 55.553341],\n            [37.706424, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.553431],\n            [37.706424, 55.55352],\n            [37.706514, 55.55352],\n            [37.706514, 55.553431],\n            [37.706424, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.55352],\n            [37.706424, 55.55361],\n            [37.706514, 55.55361],\n            [37.706514, 55.55352],\n            [37.706424, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.55361],\n            [37.706424, 55.5537],\n            [37.706514, 55.5537],\n            [37.706514, 55.55361],\n            [37.706424, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.5537],\n            [37.706424, 55.55379],\n            [37.706514, 55.55379],\n            [37.706514, 55.5537],\n            [37.706424, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.55379],\n            [37.706424, 55.55388],\n            [37.706514, 55.55388],\n            [37.706514, 55.55379],\n            [37.706424, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.55388],\n            [37.706424, 55.55397],\n            [37.706514, 55.55397],\n            [37.706514, 55.55388],\n            [37.706424, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.55397],\n            [37.706424, 55.55406],\n            [37.706514, 55.55406],\n            [37.706514, 55.55397],\n            [37.706424, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.55406],\n            [37.706424, 55.55415],\n            [37.706514, 55.55415],\n            [37.706514, 55.55406],\n            [37.706424, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.55415],\n            [37.706424, 55.55424],\n            [37.706514, 55.55424],\n            [37.706514, 55.55415],\n            [37.706424, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.55424],\n            [37.706424, 55.55433],\n            [37.706514, 55.55433],\n            [37.706514, 55.55424],\n            [37.706424, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.55433],\n            [37.706424, 55.55442],\n            [37.706514, 55.55442],\n            [37.706514, 55.55433],\n            [37.706424, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.55442],\n            [37.706424, 55.55451],\n            [37.706514, 55.55451],\n            [37.706514, 55.55442],\n            [37.706424, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.55451],\n            [37.706424, 55.5546],\n            [37.706514, 55.5546],\n            [37.706514, 55.55451],\n            [37.706424, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.5546],\n            [37.706424, 55.55469],\n            [37.706514, 55.55469],\n            [37.706514, 55.5546],\n            [37.706424, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.55469],\n            [37.706424, 55.55478],\n            [37.706514, 55.55478],\n            [37.706514, 55.55469],\n            [37.706424, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.55478],\n            [37.706424, 55.554869],\n            [37.706514, 55.554869],\n            [37.706514, 55.55478],\n            [37.706424, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.554869],\n            [37.706424, 55.554959],\n            [37.706514, 55.554959],\n            [37.706514, 55.554869],\n            [37.706424, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.554959],\n            [37.706424, 55.555049],\n            [37.706514, 55.555049],\n            [37.706514, 55.554959],\n            [37.706424, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.555049],\n            [37.706424, 55.555139],\n            [37.706514, 55.555139],\n            [37.706514, 55.555049],\n            [37.706424, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.555139],\n            [37.706424, 55.555229],\n            [37.706514, 55.555229],\n            [37.706514, 55.555139],\n            [37.706424, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.555229],\n            [37.706424, 55.555319],\n            [37.706514, 55.555319],\n            [37.706514, 55.555229],\n            [37.706424, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.555319],\n            [37.706424, 55.555409],\n            [37.706514, 55.555409],\n            [37.706514, 55.555319],\n            [37.706424, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.555409],\n            [37.706424, 55.555499],\n            [37.706514, 55.555499],\n            [37.706514, 55.555409],\n            [37.706424, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706424, 55.555499],\n            [37.706424, 55.555589],\n            [37.706514, 55.555589],\n            [37.706514, 55.555499],\n            [37.706424, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.551542],\n            [37.706514, 55.551632],\n            [37.706604, 55.551632],\n            [37.706604, 55.551542],\n            [37.706514, 55.551542]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.551632],\n            [37.706514, 55.551722],\n            [37.706604, 55.551722],\n            [37.706604, 55.551632],\n            [37.706514, 55.551632]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.551722],\n            [37.706514, 55.551812],\n            [37.706604, 55.551812],\n            [37.706604, 55.551722],\n            [37.706514, 55.551722]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.551812],\n            [37.706514, 55.551902],\n            [37.706604, 55.551902],\n            [37.706604, 55.551812],\n            [37.706514, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.551902],\n            [37.706514, 55.551992],\n            [37.706604, 55.551992],\n            [37.706604, 55.551902],\n            [37.706514, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.551992],\n            [37.706514, 55.552082],\n            [37.706604, 55.552082],\n            [37.706604, 55.551992],\n            [37.706514, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.552082],\n            [37.706514, 55.552171],\n            [37.706604, 55.552171],\n            [37.706604, 55.552082],\n            [37.706514, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.552171],\n            [37.706514, 55.552261],\n            [37.706604, 55.552261],\n            [37.706604, 55.552171],\n            [37.706514, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.552261],\n            [37.706514, 55.552351],\n            [37.706604, 55.552351],\n            [37.706604, 55.552261],\n            [37.706514, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.552351],\n            [37.706514, 55.552441],\n            [37.706604, 55.552441],\n            [37.706604, 55.552351],\n            [37.706514, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.552441],\n            [37.706514, 55.552531],\n            [37.706604, 55.552531],\n            [37.706604, 55.552441],\n            [37.706514, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.552531],\n            [37.706514, 55.552621],\n            [37.706604, 55.552621],\n            [37.706604, 55.552531],\n            [37.706514, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.552621],\n            [37.706514, 55.552711],\n            [37.706604, 55.552711],\n            [37.706604, 55.552621],\n            [37.706514, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.552711],\n            [37.706514, 55.552801],\n            [37.706604, 55.552801],\n            [37.706604, 55.552711],\n            [37.706514, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.552801],\n            [37.706514, 55.552891],\n            [37.706604, 55.552891],\n            [37.706604, 55.552801],\n            [37.706514, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.552891],\n            [37.706514, 55.552981],\n            [37.706604, 55.552981],\n            [37.706604, 55.552891],\n            [37.706514, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.552981],\n            [37.706514, 55.553071],\n            [37.706604, 55.553071],\n            [37.706604, 55.552981],\n            [37.706514, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.553071],\n            [37.706514, 55.553161],\n            [37.706604, 55.553161],\n            [37.706604, 55.553071],\n            [37.706514, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.553161],\n            [37.706514, 55.553251],\n            [37.706604, 55.553251],\n            [37.706604, 55.553161],\n            [37.706514, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.553251],\n            [37.706514, 55.553341],\n            [37.706604, 55.553341],\n            [37.706604, 55.553251],\n            [37.706514, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.553341],\n            [37.706514, 55.553431],\n            [37.706604, 55.553431],\n            [37.706604, 55.553341],\n            [37.706514, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.553431],\n            [37.706514, 55.55352],\n            [37.706604, 55.55352],\n            [37.706604, 55.553431],\n            [37.706514, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.55352],\n            [37.706514, 55.55361],\n            [37.706604, 55.55361],\n            [37.706604, 55.55352],\n            [37.706514, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.55361],\n            [37.706514, 55.5537],\n            [37.706604, 55.5537],\n            [37.706604, 55.55361],\n            [37.706514, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.5537],\n            [37.706514, 55.55379],\n            [37.706604, 55.55379],\n            [37.706604, 55.5537],\n            [37.706514, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.55379],\n            [37.706514, 55.55388],\n            [37.706604, 55.55388],\n            [37.706604, 55.55379],\n            [37.706514, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.55388],\n            [37.706514, 55.55397],\n            [37.706604, 55.55397],\n            [37.706604, 55.55388],\n            [37.706514, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.55397],\n            [37.706514, 55.55406],\n            [37.706604, 55.55406],\n            [37.706604, 55.55397],\n            [37.706514, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.55406],\n            [37.706514, 55.55415],\n            [37.706604, 55.55415],\n            [37.706604, 55.55406],\n            [37.706514, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.55415],\n            [37.706514, 55.55424],\n            [37.706604, 55.55424],\n            [37.706604, 55.55415],\n            [37.706514, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.55424],\n            [37.706514, 55.55433],\n            [37.706604, 55.55433],\n            [37.706604, 55.55424],\n            [37.706514, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.55433],\n            [37.706514, 55.55442],\n            [37.706604, 55.55442],\n            [37.706604, 55.55433],\n            [37.706514, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.55442],\n            [37.706514, 55.55451],\n            [37.706604, 55.55451],\n            [37.706604, 55.55442],\n            [37.706514, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.55451],\n            [37.706514, 55.5546],\n            [37.706604, 55.5546],\n            [37.706604, 55.55451],\n            [37.706514, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.5546],\n            [37.706514, 55.55469],\n            [37.706604, 55.55469],\n            [37.706604, 55.5546],\n            [37.706514, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.55469],\n            [37.706514, 55.55478],\n            [37.706604, 55.55478],\n            [37.706604, 55.55469],\n            [37.706514, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.55478],\n            [37.706514, 55.554869],\n            [37.706604, 55.554869],\n            [37.706604, 55.55478],\n            [37.706514, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.554869],\n            [37.706514, 55.554959],\n            [37.706604, 55.554959],\n            [37.706604, 55.554869],\n            [37.706514, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.554959],\n            [37.706514, 55.555049],\n            [37.706604, 55.555049],\n            [37.706604, 55.554959],\n            [37.706514, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.555049],\n            [37.706514, 55.555139],\n            [37.706604, 55.555139],\n            [37.706604, 55.555049],\n            [37.706514, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.555139],\n            [37.706514, 55.555229],\n            [37.706604, 55.555229],\n            [37.706604, 55.555139],\n            [37.706514, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.555229],\n            [37.706514, 55.555319],\n            [37.706604, 55.555319],\n            [37.706604, 55.555229],\n            [37.706514, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.555319],\n            [37.706514, 55.555409],\n            [37.706604, 55.555409],\n            [37.706604, 55.555319],\n            [37.706514, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.555409],\n            [37.706514, 55.555499],\n            [37.706604, 55.555499],\n            [37.706604, 55.555409],\n            [37.706514, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706514, 55.555499],\n            [37.706514, 55.555589],\n            [37.706604, 55.555589],\n            [37.706604, 55.555499],\n            [37.706514, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.551542],\n            [37.706604, 55.551632],\n            [37.706694, 55.551632],\n            [37.706694, 55.551542],\n            [37.706604, 55.551542]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.551632],\n            [37.706604, 55.551722],\n            [37.706694, 55.551722],\n            [37.706694, 55.551632],\n            [37.706604, 55.551632]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.551722],\n            [37.706604, 55.551812],\n            [37.706694, 55.551812],\n            [37.706694, 55.551722],\n            [37.706604, 55.551722]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.551812],\n            [37.706604, 55.551902],\n            [37.706694, 55.551902],\n            [37.706694, 55.551812],\n            [37.706604, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.551902],\n            [37.706604, 55.551992],\n            [37.706694, 55.551992],\n            [37.706694, 55.551902],\n            [37.706604, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.551992],\n            [37.706604, 55.552082],\n            [37.706694, 55.552082],\n            [37.706694, 55.551992],\n            [37.706604, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.552082],\n            [37.706604, 55.552171],\n            [37.706694, 55.552171],\n            [37.706694, 55.552082],\n            [37.706604, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.552171],\n            [37.706604, 55.552261],\n            [37.706694, 55.552261],\n            [37.706694, 55.552171],\n            [37.706604, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.552261],\n            [37.706604, 55.552351],\n            [37.706694, 55.552351],\n            [37.706694, 55.552261],\n            [37.706604, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.552351],\n            [37.706604, 55.552441],\n            [37.706694, 55.552441],\n            [37.706694, 55.552351],\n            [37.706604, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.552441],\n            [37.706604, 55.552531],\n            [37.706694, 55.552531],\n            [37.706694, 55.552441],\n            [37.706604, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.552531],\n            [37.706604, 55.552621],\n            [37.706694, 55.552621],\n            [37.706694, 55.552531],\n            [37.706604, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.552621],\n            [37.706604, 55.552711],\n            [37.706694, 55.552711],\n            [37.706694, 55.552621],\n            [37.706604, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.552711],\n            [37.706604, 55.552801],\n            [37.706694, 55.552801],\n            [37.706694, 55.552711],\n            [37.706604, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.552801],\n            [37.706604, 55.552891],\n            [37.706694, 55.552891],\n            [37.706694, 55.552801],\n            [37.706604, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.552891],\n            [37.706604, 55.552981],\n            [37.706694, 55.552981],\n            [37.706694, 55.552891],\n            [37.706604, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.552981],\n            [37.706604, 55.553071],\n            [37.706694, 55.553071],\n            [37.706694, 55.552981],\n            [37.706604, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.553071],\n            [37.706604, 55.553161],\n            [37.706694, 55.553161],\n            [37.706694, 55.553071],\n            [37.706604, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.553161],\n            [37.706604, 55.553251],\n            [37.706694, 55.553251],\n            [37.706694, 55.553161],\n            [37.706604, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.553251],\n            [37.706604, 55.553341],\n            [37.706694, 55.553341],\n            [37.706694, 55.553251],\n            [37.706604, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.553341],\n            [37.706604, 55.553431],\n            [37.706694, 55.553431],\n            [37.706694, 55.553341],\n            [37.706604, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.553431],\n            [37.706604, 55.55352],\n            [37.706694, 55.55352],\n            [37.706694, 55.553431],\n            [37.706604, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.55352],\n            [37.706604, 55.55361],\n            [37.706694, 55.55361],\n            [37.706694, 55.55352],\n            [37.706604, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.55361],\n            [37.706604, 55.5537],\n            [37.706694, 55.5537],\n            [37.706694, 55.55361],\n            [37.706604, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.5537],\n            [37.706604, 55.55379],\n            [37.706694, 55.55379],\n            [37.706694, 55.5537],\n            [37.706604, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.55379],\n            [37.706604, 55.55388],\n            [37.706694, 55.55388],\n            [37.706694, 55.55379],\n            [37.706604, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.55388],\n            [37.706604, 55.55397],\n            [37.706694, 55.55397],\n            [37.706694, 55.55388],\n            [37.706604, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.55397],\n            [37.706604, 55.55406],\n            [37.706694, 55.55406],\n            [37.706694, 55.55397],\n            [37.706604, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.55406],\n            [37.706604, 55.55415],\n            [37.706694, 55.55415],\n            [37.706694, 55.55406],\n            [37.706604, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.55415],\n            [37.706604, 55.55424],\n            [37.706694, 55.55424],\n            [37.706694, 55.55415],\n            [37.706604, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.55424],\n            [37.706604, 55.55433],\n            [37.706694, 55.55433],\n            [37.706694, 55.55424],\n            [37.706604, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.55433],\n            [37.706604, 55.55442],\n            [37.706694, 55.55442],\n            [37.706694, 55.55433],\n            [37.706604, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.55442],\n            [37.706604, 55.55451],\n            [37.706694, 55.55451],\n            [37.706694, 55.55442],\n            [37.706604, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.55451],\n            [37.706604, 55.5546],\n            [37.706694, 55.5546],\n            [37.706694, 55.55451],\n            [37.706604, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.5546],\n            [37.706604, 55.55469],\n            [37.706694, 55.55469],\n            [37.706694, 55.5546],\n            [37.706604, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.55469],\n            [37.706604, 55.55478],\n            [37.706694, 55.55478],\n            [37.706694, 55.55469],\n            [37.706604, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.55478],\n            [37.706604, 55.554869],\n            [37.706694, 55.554869],\n            [37.706694, 55.55478],\n            [37.706604, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.554869],\n            [37.706604, 55.554959],\n            [37.706694, 55.554959],\n            [37.706694, 55.554869],\n            [37.706604, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.554959],\n            [37.706604, 55.555049],\n            [37.706694, 55.555049],\n            [37.706694, 55.554959],\n            [37.706604, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.555049],\n            [37.706604, 55.555139],\n            [37.706694, 55.555139],\n            [37.706694, 55.555049],\n            [37.706604, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.555139],\n            [37.706604, 55.555229],\n            [37.706694, 55.555229],\n            [37.706694, 55.555139],\n            [37.706604, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.555229],\n            [37.706604, 55.555319],\n            [37.706694, 55.555319],\n            [37.706694, 55.555229],\n            [37.706604, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.555319],\n            [37.706604, 55.555409],\n            [37.706694, 55.555409],\n            [37.706694, 55.555319],\n            [37.706604, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.555409],\n            [37.706604, 55.555499],\n            [37.706694, 55.555499],\n            [37.706694, 55.555409],\n            [37.706604, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706604, 55.555499],\n            [37.706604, 55.555589],\n            [37.706694, 55.555589],\n            [37.706694, 55.555499],\n            [37.706604, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.551722],\n            [37.706694, 55.551812],\n            [37.706784, 55.551812],\n            [37.706784, 55.551722],\n            [37.706694, 55.551722]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.551812],\n            [37.706694, 55.551902],\n            [37.706784, 55.551902],\n            [37.706784, 55.551812],\n            [37.706694, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.551902],\n            [37.706694, 55.551992],\n            [37.706784, 55.551992],\n            [37.706784, 55.551902],\n            [37.706694, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.551992],\n            [37.706694, 55.552082],\n            [37.706784, 55.552082],\n            [37.706784, 55.551992],\n            [37.706694, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.552082],\n            [37.706694, 55.552171],\n            [37.706784, 55.552171],\n            [37.706784, 55.552082],\n            [37.706694, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.552171],\n            [37.706694, 55.552261],\n            [37.706784, 55.552261],\n            [37.706784, 55.552171],\n            [37.706694, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.552261],\n            [37.706694, 55.552351],\n            [37.706784, 55.552351],\n            [37.706784, 55.552261],\n            [37.706694, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.552351],\n            [37.706694, 55.552441],\n            [37.706784, 55.552441],\n            [37.706784, 55.552351],\n            [37.706694, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.552441],\n            [37.706694, 55.552531],\n            [37.706784, 55.552531],\n            [37.706784, 55.552441],\n            [37.706694, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.552531],\n            [37.706694, 55.552621],\n            [37.706784, 55.552621],\n            [37.706784, 55.552531],\n            [37.706694, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.552621],\n            [37.706694, 55.552711],\n            [37.706784, 55.552711],\n            [37.706784, 55.552621],\n            [37.706694, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.552711],\n            [37.706694, 55.552801],\n            [37.706784, 55.552801],\n            [37.706784, 55.552711],\n            [37.706694, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.552801],\n            [37.706694, 55.552891],\n            [37.706784, 55.552891],\n            [37.706784, 55.552801],\n            [37.706694, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.552891],\n            [37.706694, 55.552981],\n            [37.706784, 55.552981],\n            [37.706784, 55.552891],\n            [37.706694, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.552981],\n            [37.706694, 55.553071],\n            [37.706784, 55.553071],\n            [37.706784, 55.552981],\n            [37.706694, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.553071],\n            [37.706694, 55.553161],\n            [37.706784, 55.553161],\n            [37.706784, 55.553071],\n            [37.706694, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.553161],\n            [37.706694, 55.553251],\n            [37.706784, 55.553251],\n            [37.706784, 55.553161],\n            [37.706694, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.553251],\n            [37.706694, 55.553341],\n            [37.706784, 55.553341],\n            [37.706784, 55.553251],\n            [37.706694, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.553341],\n            [37.706694, 55.553431],\n            [37.706784, 55.553431],\n            [37.706784, 55.553341],\n            [37.706694, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.553431],\n            [37.706694, 55.55352],\n            [37.706784, 55.55352],\n            [37.706784, 55.553431],\n            [37.706694, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.55352],\n            [37.706694, 55.55361],\n            [37.706784, 55.55361],\n            [37.706784, 55.55352],\n            [37.706694, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.55361],\n            [37.706694, 55.5537],\n            [37.706784, 55.5537],\n            [37.706784, 55.55361],\n            [37.706694, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.5537],\n            [37.706694, 55.55379],\n            [37.706784, 55.55379],\n            [37.706784, 55.5537],\n            [37.706694, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.55379],\n            [37.706694, 55.55388],\n            [37.706784, 55.55388],\n            [37.706784, 55.55379],\n            [37.706694, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.55388],\n            [37.706694, 55.55397],\n            [37.706784, 55.55397],\n            [37.706784, 55.55388],\n            [37.706694, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.55397],\n            [37.706694, 55.55406],\n            [37.706784, 55.55406],\n            [37.706784, 55.55397],\n            [37.706694, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.55406],\n            [37.706694, 55.55415],\n            [37.706784, 55.55415],\n            [37.706784, 55.55406],\n            [37.706694, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.55415],\n            [37.706694, 55.55424],\n            [37.706784, 55.55424],\n            [37.706784, 55.55415],\n            [37.706694, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.55424],\n            [37.706694, 55.55433],\n            [37.706784, 55.55433],\n            [37.706784, 55.55424],\n            [37.706694, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.55433],\n            [37.706694, 55.55442],\n            [37.706784, 55.55442],\n            [37.706784, 55.55433],\n            [37.706694, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.55442],\n            [37.706694, 55.55451],\n            [37.706784, 55.55451],\n            [37.706784, 55.55442],\n            [37.706694, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.55451],\n            [37.706694, 55.5546],\n            [37.706784, 55.5546],\n            [37.706784, 55.55451],\n            [37.706694, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.5546],\n            [37.706694, 55.55469],\n            [37.706784, 55.55469],\n            [37.706784, 55.5546],\n            [37.706694, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.55469],\n            [37.706694, 55.55478],\n            [37.706784, 55.55478],\n            [37.706784, 55.55469],\n            [37.706694, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.55478],\n            [37.706694, 55.554869],\n            [37.706784, 55.554869],\n            [37.706784, 55.55478],\n            [37.706694, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.554869],\n            [37.706694, 55.554959],\n            [37.706784, 55.554959],\n            [37.706784, 55.554869],\n            [37.706694, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.554959],\n            [37.706694, 55.555049],\n            [37.706784, 55.555049],\n            [37.706784, 55.554959],\n            [37.706694, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.555049],\n            [37.706694, 55.555139],\n            [37.706784, 55.555139],\n            [37.706784, 55.555049],\n            [37.706694, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.555139],\n            [37.706694, 55.555229],\n            [37.706784, 55.555229],\n            [37.706784, 55.555139],\n            [37.706694, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.555229],\n            [37.706694, 55.555319],\n            [37.706784, 55.555319],\n            [37.706784, 55.555229],\n            [37.706694, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.555319],\n            [37.706694, 55.555409],\n            [37.706784, 55.555409],\n            [37.706784, 55.555319],\n            [37.706694, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.555409],\n            [37.706694, 55.555499],\n            [37.706784, 55.555499],\n            [37.706784, 55.555409],\n            [37.706694, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.555499],\n            [37.706694, 55.555589],\n            [37.706784, 55.555589],\n            [37.706784, 55.555499],\n            [37.706694, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706694, 55.555589],\n            [37.706694, 55.555679],\n            [37.706784, 55.555679],\n            [37.706784, 55.555589],\n            [37.706694, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.551812],\n            [37.706784, 55.551902],\n            [37.706874, 55.551902],\n            [37.706874, 55.551812],\n            [37.706784, 55.551812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.551902],\n            [37.706784, 55.551992],\n            [37.706874, 55.551992],\n            [37.706874, 55.551902],\n            [37.706784, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.551992],\n            [37.706784, 55.552082],\n            [37.706874, 55.552082],\n            [37.706874, 55.551992],\n            [37.706784, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.552082],\n            [37.706784, 55.552171],\n            [37.706874, 55.552171],\n            [37.706874, 55.552082],\n            [37.706784, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.552171],\n            [37.706784, 55.552261],\n            [37.706874, 55.552261],\n            [37.706874, 55.552171],\n            [37.706784, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.552261],\n            [37.706784, 55.552351],\n            [37.706874, 55.552351],\n            [37.706874, 55.552261],\n            [37.706784, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.552351],\n            [37.706784, 55.552441],\n            [37.706874, 55.552441],\n            [37.706874, 55.552351],\n            [37.706784, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.552441],\n            [37.706784, 55.552531],\n            [37.706874, 55.552531],\n            [37.706874, 55.552441],\n            [37.706784, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.552531],\n            [37.706784, 55.552621],\n            [37.706874, 55.552621],\n            [37.706874, 55.552531],\n            [37.706784, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.552621],\n            [37.706784, 55.552711],\n            [37.706874, 55.552711],\n            [37.706874, 55.552621],\n            [37.706784, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.552711],\n            [37.706784, 55.552801],\n            [37.706874, 55.552801],\n            [37.706874, 55.552711],\n            [37.706784, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.552801],\n            [37.706784, 55.552891],\n            [37.706874, 55.552891],\n            [37.706874, 55.552801],\n            [37.706784, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.552891],\n            [37.706784, 55.552981],\n            [37.706874, 55.552981],\n            [37.706874, 55.552891],\n            [37.706784, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.552981],\n            [37.706784, 55.553071],\n            [37.706874, 55.553071],\n            [37.706874, 55.552981],\n            [37.706784, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.553071],\n            [37.706784, 55.553161],\n            [37.706874, 55.553161],\n            [37.706874, 55.553071],\n            [37.706784, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.553161],\n            [37.706784, 55.553251],\n            [37.706874, 55.553251],\n            [37.706874, 55.553161],\n            [37.706784, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.553251],\n            [37.706784, 55.553341],\n            [37.706874, 55.553341],\n            [37.706874, 55.553251],\n            [37.706784, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.553341],\n            [37.706784, 55.553431],\n            [37.706874, 55.553431],\n            [37.706874, 55.553341],\n            [37.706784, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.553431],\n            [37.706784, 55.55352],\n            [37.706874, 55.55352],\n            [37.706874, 55.553431],\n            [37.706784, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.55352],\n            [37.706784, 55.55361],\n            [37.706874, 55.55361],\n            [37.706874, 55.55352],\n            [37.706784, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.55361],\n            [37.706784, 55.5537],\n            [37.706874, 55.5537],\n            [37.706874, 55.55361],\n            [37.706784, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.5537],\n            [37.706784, 55.55379],\n            [37.706874, 55.55379],\n            [37.706874, 55.5537],\n            [37.706784, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.55379],\n            [37.706784, 55.55388],\n            [37.706874, 55.55388],\n            [37.706874, 55.55379],\n            [37.706784, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.55388],\n            [37.706784, 55.55397],\n            [37.706874, 55.55397],\n            [37.706874, 55.55388],\n            [37.706784, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.55397],\n            [37.706784, 55.55406],\n            [37.706874, 55.55406],\n            [37.706874, 55.55397],\n            [37.706784, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.55406],\n            [37.706784, 55.55415],\n            [37.706874, 55.55415],\n            [37.706874, 55.55406],\n            [37.706784, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.55415],\n            [37.706784, 55.55424],\n            [37.706874, 55.55424],\n            [37.706874, 55.55415],\n            [37.706784, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.55424],\n            [37.706784, 55.55433],\n            [37.706874, 55.55433],\n            [37.706874, 55.55424],\n            [37.706784, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.55433],\n            [37.706784, 55.55442],\n            [37.706874, 55.55442],\n            [37.706874, 55.55433],\n            [37.706784, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.55442],\n            [37.706784, 55.55451],\n            [37.706874, 55.55451],\n            [37.706874, 55.55442],\n            [37.706784, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.55451],\n            [37.706784, 55.5546],\n            [37.706874, 55.5546],\n            [37.706874, 55.55451],\n            [37.706784, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.5546],\n            [37.706784, 55.55469],\n            [37.706874, 55.55469],\n            [37.706874, 55.5546],\n            [37.706784, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.55469],\n            [37.706784, 55.55478],\n            [37.706874, 55.55478],\n            [37.706874, 55.55469],\n            [37.706784, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.55478],\n            [37.706784, 55.554869],\n            [37.706874, 55.554869],\n            [37.706874, 55.55478],\n            [37.706784, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.554869],\n            [37.706784, 55.554959],\n            [37.706874, 55.554959],\n            [37.706874, 55.554869],\n            [37.706784, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.554959],\n            [37.706784, 55.555049],\n            [37.706874, 55.555049],\n            [37.706874, 55.554959],\n            [37.706784, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.555049],\n            [37.706784, 55.555139],\n            [37.706874, 55.555139],\n            [37.706874, 55.555049],\n            [37.706784, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.555139],\n            [37.706784, 55.555229],\n            [37.706874, 55.555229],\n            [37.706874, 55.555139],\n            [37.706784, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.555229],\n            [37.706784, 55.555319],\n            [37.706874, 55.555319],\n            [37.706874, 55.555229],\n            [37.706784, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.555319],\n            [37.706784, 55.555409],\n            [37.706874, 55.555409],\n            [37.706874, 55.555319],\n            [37.706784, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.555409],\n            [37.706784, 55.555499],\n            [37.706874, 55.555499],\n            [37.706874, 55.555409],\n            [37.706784, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.555499],\n            [37.706784, 55.555589],\n            [37.706874, 55.555589],\n            [37.706874, 55.555499],\n            [37.706784, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706784, 55.555589],\n            [37.706784, 55.555679],\n            [37.706874, 55.555679],\n            [37.706874, 55.555589],\n            [37.706784, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.551902],\n            [37.706874, 55.551992],\n            [37.706964, 55.551992],\n            [37.706964, 55.551902],\n            [37.706874, 55.551902]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.551992],\n            [37.706874, 55.552082],\n            [37.706964, 55.552082],\n            [37.706964, 55.551992],\n            [37.706874, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.552082],\n            [37.706874, 55.552171],\n            [37.706964, 55.552171],\n            [37.706964, 55.552082],\n            [37.706874, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.552171],\n            [37.706874, 55.552261],\n            [37.706964, 55.552261],\n            [37.706964, 55.552171],\n            [37.706874, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.552261],\n            [37.706874, 55.552351],\n            [37.706964, 55.552351],\n            [37.706964, 55.552261],\n            [37.706874, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.552351],\n            [37.706874, 55.552441],\n            [37.706964, 55.552441],\n            [37.706964, 55.552351],\n            [37.706874, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.552441],\n            [37.706874, 55.552531],\n            [37.706964, 55.552531],\n            [37.706964, 55.552441],\n            [37.706874, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.552531],\n            [37.706874, 55.552621],\n            [37.706964, 55.552621],\n            [37.706964, 55.552531],\n            [37.706874, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.552621],\n            [37.706874, 55.552711],\n            [37.706964, 55.552711],\n            [37.706964, 55.552621],\n            [37.706874, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.552711],\n            [37.706874, 55.552801],\n            [37.706964, 55.552801],\n            [37.706964, 55.552711],\n            [37.706874, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.552801],\n            [37.706874, 55.552891],\n            [37.706964, 55.552891],\n            [37.706964, 55.552801],\n            [37.706874, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.552891],\n            [37.706874, 55.552981],\n            [37.706964, 55.552981],\n            [37.706964, 55.552891],\n            [37.706874, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.552981],\n            [37.706874, 55.553071],\n            [37.706964, 55.553071],\n            [37.706964, 55.552981],\n            [37.706874, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.553071],\n            [37.706874, 55.553161],\n            [37.706964, 55.553161],\n            [37.706964, 55.553071],\n            [37.706874, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.553161],\n            [37.706874, 55.553251],\n            [37.706964, 55.553251],\n            [37.706964, 55.553161],\n            [37.706874, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.553251],\n            [37.706874, 55.553341],\n            [37.706964, 55.553341],\n            [37.706964, 55.553251],\n            [37.706874, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.553341],\n            [37.706874, 55.553431],\n            [37.706964, 55.553431],\n            [37.706964, 55.553341],\n            [37.706874, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.553431],\n            [37.706874, 55.55352],\n            [37.706964, 55.55352],\n            [37.706964, 55.553431],\n            [37.706874, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.55352],\n            [37.706874, 55.55361],\n            [37.706964, 55.55361],\n            [37.706964, 55.55352],\n            [37.706874, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.55361],\n            [37.706874, 55.5537],\n            [37.706964, 55.5537],\n            [37.706964, 55.55361],\n            [37.706874, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.5537],\n            [37.706874, 55.55379],\n            [37.706964, 55.55379],\n            [37.706964, 55.5537],\n            [37.706874, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.55379],\n            [37.706874, 55.55388],\n            [37.706964, 55.55388],\n            [37.706964, 55.55379],\n            [37.706874, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.55388],\n            [37.706874, 55.55397],\n            [37.706964, 55.55397],\n            [37.706964, 55.55388],\n            [37.706874, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.55397],\n            [37.706874, 55.55406],\n            [37.706964, 55.55406],\n            [37.706964, 55.55397],\n            [37.706874, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.55406],\n            [37.706874, 55.55415],\n            [37.706964, 55.55415],\n            [37.706964, 55.55406],\n            [37.706874, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.55415],\n            [37.706874, 55.55424],\n            [37.706964, 55.55424],\n            [37.706964, 55.55415],\n            [37.706874, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.55424],\n            [37.706874, 55.55433],\n            [37.706964, 55.55433],\n            [37.706964, 55.55424],\n            [37.706874, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.55433],\n            [37.706874, 55.55442],\n            [37.706964, 55.55442],\n            [37.706964, 55.55433],\n            [37.706874, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.55442],\n            [37.706874, 55.55451],\n            [37.706964, 55.55451],\n            [37.706964, 55.55442],\n            [37.706874, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.55451],\n            [37.706874, 55.5546],\n            [37.706964, 55.5546],\n            [37.706964, 55.55451],\n            [37.706874, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.5546],\n            [37.706874, 55.55469],\n            [37.706964, 55.55469],\n            [37.706964, 55.5546],\n            [37.706874, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.55469],\n            [37.706874, 55.55478],\n            [37.706964, 55.55478],\n            [37.706964, 55.55469],\n            [37.706874, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.55478],\n            [37.706874, 55.554869],\n            [37.706964, 55.554869],\n            [37.706964, 55.55478],\n            [37.706874, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.554869],\n            [37.706874, 55.554959],\n            [37.706964, 55.554959],\n            [37.706964, 55.554869],\n            [37.706874, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.554959],\n            [37.706874, 55.555049],\n            [37.706964, 55.555049],\n            [37.706964, 55.554959],\n            [37.706874, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.555049],\n            [37.706874, 55.555139],\n            [37.706964, 55.555139],\n            [37.706964, 55.555049],\n            [37.706874, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.555139],\n            [37.706874, 55.555229],\n            [37.706964, 55.555229],\n            [37.706964, 55.555139],\n            [37.706874, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.555229],\n            [37.706874, 55.555319],\n            [37.706964, 55.555319],\n            [37.706964, 55.555229],\n            [37.706874, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.555319],\n            [37.706874, 55.555409],\n            [37.706964, 55.555409],\n            [37.706964, 55.555319],\n            [37.706874, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.555409],\n            [37.706874, 55.555499],\n            [37.706964, 55.555499],\n            [37.706964, 55.555409],\n            [37.706874, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.555499],\n            [37.706874, 55.555589],\n            [37.706964, 55.555589],\n            [37.706964, 55.555499],\n            [37.706874, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706874, 55.555589],\n            [37.706874, 55.555679],\n            [37.706964, 55.555679],\n            [37.706964, 55.555589],\n            [37.706874, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.551992],\n            [37.706964, 55.552082],\n            [37.707054, 55.552082],\n            [37.707054, 55.551992],\n            [37.706964, 55.551992]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.552082],\n            [37.706964, 55.552171],\n            [37.707054, 55.552171],\n            [37.707054, 55.552082],\n            [37.706964, 55.552082]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.552171],\n            [37.706964, 55.552261],\n            [37.707054, 55.552261],\n            [37.707054, 55.552171],\n            [37.706964, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.552261],\n            [37.706964, 55.552351],\n            [37.707054, 55.552351],\n            [37.707054, 55.552261],\n            [37.706964, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.552351],\n            [37.706964, 55.552441],\n            [37.707054, 55.552441],\n            [37.707054, 55.552351],\n            [37.706964, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.552441],\n            [37.706964, 55.552531],\n            [37.707054, 55.552531],\n            [37.707054, 55.552441],\n            [37.706964, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.552531],\n            [37.706964, 55.552621],\n            [37.707054, 55.552621],\n            [37.707054, 55.552531],\n            [37.706964, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.552621],\n            [37.706964, 55.552711],\n            [37.707054, 55.552711],\n            [37.707054, 55.552621],\n            [37.706964, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.552711],\n            [37.706964, 55.552801],\n            [37.707054, 55.552801],\n            [37.707054, 55.552711],\n            [37.706964, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.552801],\n            [37.706964, 55.552891],\n            [37.707054, 55.552891],\n            [37.707054, 55.552801],\n            [37.706964, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.552891],\n            [37.706964, 55.552981],\n            [37.707054, 55.552981],\n            [37.707054, 55.552891],\n            [37.706964, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.552981],\n            [37.706964, 55.553071],\n            [37.707054, 55.553071],\n            [37.707054, 55.552981],\n            [37.706964, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.553071],\n            [37.706964, 55.553161],\n            [37.707054, 55.553161],\n            [37.707054, 55.553071],\n            [37.706964, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.553161],\n            [37.706964, 55.553251],\n            [37.707054, 55.553251],\n            [37.707054, 55.553161],\n            [37.706964, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.553251],\n            [37.706964, 55.553341],\n            [37.707054, 55.553341],\n            [37.707054, 55.553251],\n            [37.706964, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.553341],\n            [37.706964, 55.553431],\n            [37.707054, 55.553431],\n            [37.707054, 55.553341],\n            [37.706964, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.553431],\n            [37.706964, 55.55352],\n            [37.707054, 55.55352],\n            [37.707054, 55.553431],\n            [37.706964, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.55352],\n            [37.706964, 55.55361],\n            [37.707054, 55.55361],\n            [37.707054, 55.55352],\n            [37.706964, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.55361],\n            [37.706964, 55.5537],\n            [37.707054, 55.5537],\n            [37.707054, 55.55361],\n            [37.706964, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.5537],\n            [37.706964, 55.55379],\n            [37.707054, 55.55379],\n            [37.707054, 55.5537],\n            [37.706964, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.55379],\n            [37.706964, 55.55388],\n            [37.707054, 55.55388],\n            [37.707054, 55.55379],\n            [37.706964, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.55388],\n            [37.706964, 55.55397],\n            [37.707054, 55.55397],\n            [37.707054, 55.55388],\n            [37.706964, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.55397],\n            [37.706964, 55.55406],\n            [37.707054, 55.55406],\n            [37.707054, 55.55397],\n            [37.706964, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.55406],\n            [37.706964, 55.55415],\n            [37.707054, 55.55415],\n            [37.707054, 55.55406],\n            [37.706964, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.55415],\n            [37.706964, 55.55424],\n            [37.707054, 55.55424],\n            [37.707054, 55.55415],\n            [37.706964, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.55424],\n            [37.706964, 55.55433],\n            [37.707054, 55.55433],\n            [37.707054, 55.55424],\n            [37.706964, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.55433],\n            [37.706964, 55.55442],\n            [37.707054, 55.55442],\n            [37.707054, 55.55433],\n            [37.706964, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.55442],\n            [37.706964, 55.55451],\n            [37.707054, 55.55451],\n            [37.707054, 55.55442],\n            [37.706964, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.55451],\n            [37.706964, 55.5546],\n            [37.707054, 55.5546],\n            [37.707054, 55.55451],\n            [37.706964, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.5546],\n            [37.706964, 55.55469],\n            [37.707054, 55.55469],\n            [37.707054, 55.5546],\n            [37.706964, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.55469],\n            [37.706964, 55.55478],\n            [37.707054, 55.55478],\n            [37.707054, 55.55469],\n            [37.706964, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.55478],\n            [37.706964, 55.554869],\n            [37.707054, 55.554869],\n            [37.707054, 55.55478],\n            [37.706964, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.554869],\n            [37.706964, 55.554959],\n            [37.707054, 55.554959],\n            [37.707054, 55.554869],\n            [37.706964, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.554959],\n            [37.706964, 55.555049],\n            [37.707054, 55.555049],\n            [37.707054, 55.554959],\n            [37.706964, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.555049],\n            [37.706964, 55.555139],\n            [37.707054, 55.555139],\n            [37.707054, 55.555049],\n            [37.706964, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.555139],\n            [37.706964, 55.555229],\n            [37.707054, 55.555229],\n            [37.707054, 55.555139],\n            [37.706964, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.555229],\n            [37.706964, 55.555319],\n            [37.707054, 55.555319],\n            [37.707054, 55.555229],\n            [37.706964, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.555319],\n            [37.706964, 55.555409],\n            [37.707054, 55.555409],\n            [37.707054, 55.555319],\n            [37.706964, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.555409],\n            [37.706964, 55.555499],\n            [37.707054, 55.555499],\n            [37.707054, 55.555409],\n            [37.706964, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.555499],\n            [37.706964, 55.555589],\n            [37.707054, 55.555589],\n            [37.707054, 55.555499],\n            [37.706964, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.706964, 55.555589],\n            [37.706964, 55.555679],\n            [37.707054, 55.555679],\n            [37.707054, 55.555589],\n            [37.706964, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.552171],\n            [37.707054, 55.552261],\n            [37.707144, 55.552261],\n            [37.707144, 55.552171],\n            [37.707054, 55.552171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.552261],\n            [37.707054, 55.552351],\n            [37.707144, 55.552351],\n            [37.707144, 55.552261],\n            [37.707054, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.552351],\n            [37.707054, 55.552441],\n            [37.707144, 55.552441],\n            [37.707144, 55.552351],\n            [37.707054, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.552441],\n            [37.707054, 55.552531],\n            [37.707144, 55.552531],\n            [37.707144, 55.552441],\n            [37.707054, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.552531],\n            [37.707054, 55.552621],\n            [37.707144, 55.552621],\n            [37.707144, 55.552531],\n            [37.707054, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.552621],\n            [37.707054, 55.552711],\n            [37.707144, 55.552711],\n            [37.707144, 55.552621],\n            [37.707054, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.552711],\n            [37.707054, 55.552801],\n            [37.707144, 55.552801],\n            [37.707144, 55.552711],\n            [37.707054, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.552801],\n            [37.707054, 55.552891],\n            [37.707144, 55.552891],\n            [37.707144, 55.552801],\n            [37.707054, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.552891],\n            [37.707054, 55.552981],\n            [37.707144, 55.552981],\n            [37.707144, 55.552891],\n            [37.707054, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.552981],\n            [37.707054, 55.553071],\n            [37.707144, 55.553071],\n            [37.707144, 55.552981],\n            [37.707054, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.553071],\n            [37.707054, 55.553161],\n            [37.707144, 55.553161],\n            [37.707144, 55.553071],\n            [37.707054, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.553161],\n            [37.707054, 55.553251],\n            [37.707144, 55.553251],\n            [37.707144, 55.553161],\n            [37.707054, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.553251],\n            [37.707054, 55.553341],\n            [37.707144, 55.553341],\n            [37.707144, 55.553251],\n            [37.707054, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.553341],\n            [37.707054, 55.553431],\n            [37.707144, 55.553431],\n            [37.707144, 55.553341],\n            [37.707054, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.553431],\n            [37.707054, 55.55352],\n            [37.707144, 55.55352],\n            [37.707144, 55.553431],\n            [37.707054, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.55352],\n            [37.707054, 55.55361],\n            [37.707144, 55.55361],\n            [37.707144, 55.55352],\n            [37.707054, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.55361],\n            [37.707054, 55.5537],\n            [37.707144, 55.5537],\n            [37.707144, 55.55361],\n            [37.707054, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.5537],\n            [37.707054, 55.55379],\n            [37.707144, 55.55379],\n            [37.707144, 55.5537],\n            [37.707054, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.55379],\n            [37.707054, 55.55388],\n            [37.707144, 55.55388],\n            [37.707144, 55.55379],\n            [37.707054, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.55388],\n            [37.707054, 55.55397],\n            [37.707144, 55.55397],\n            [37.707144, 55.55388],\n            [37.707054, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.55397],\n            [37.707054, 55.55406],\n            [37.707144, 55.55406],\n            [37.707144, 55.55397],\n            [37.707054, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.55406],\n            [37.707054, 55.55415],\n            [37.707144, 55.55415],\n            [37.707144, 55.55406],\n            [37.707054, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.55415],\n            [37.707054, 55.55424],\n            [37.707144, 55.55424],\n            [37.707144, 55.55415],\n            [37.707054, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.55424],\n            [37.707054, 55.55433],\n            [37.707144, 55.55433],\n            [37.707144, 55.55424],\n            [37.707054, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.55433],\n            [37.707054, 55.55442],\n            [37.707144, 55.55442],\n            [37.707144, 55.55433],\n            [37.707054, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.55442],\n            [37.707054, 55.55451],\n            [37.707144, 55.55451],\n            [37.707144, 55.55442],\n            [37.707054, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.55451],\n            [37.707054, 55.5546],\n            [37.707144, 55.5546],\n            [37.707144, 55.55451],\n            [37.707054, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.5546],\n            [37.707054, 55.55469],\n            [37.707144, 55.55469],\n            [37.707144, 55.5546],\n            [37.707054, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.55469],\n            [37.707054, 55.55478],\n            [37.707144, 55.55478],\n            [37.707144, 55.55469],\n            [37.707054, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.55478],\n            [37.707054, 55.554869],\n            [37.707144, 55.554869],\n            [37.707144, 55.55478],\n            [37.707054, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.554869],\n            [37.707054, 55.554959],\n            [37.707144, 55.554959],\n            [37.707144, 55.554869],\n            [37.707054, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.554959],\n            [37.707054, 55.555049],\n            [37.707144, 55.555049],\n            [37.707144, 55.554959],\n            [37.707054, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.555049],\n            [37.707054, 55.555139],\n            [37.707144, 55.555139],\n            [37.707144, 55.555049],\n            [37.707054, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.555139],\n            [37.707054, 55.555229],\n            [37.707144, 55.555229],\n            [37.707144, 55.555139],\n            [37.707054, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.555229],\n            [37.707054, 55.555319],\n            [37.707144, 55.555319],\n            [37.707144, 55.555229],\n            [37.707054, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.555319],\n            [37.707054, 55.555409],\n            [37.707144, 55.555409],\n            [37.707144, 55.555319],\n            [37.707054, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.555409],\n            [37.707054, 55.555499],\n            [37.707144, 55.555499],\n            [37.707144, 55.555409],\n            [37.707054, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.555499],\n            [37.707054, 55.555589],\n            [37.707144, 55.555589],\n            [37.707144, 55.555499],\n            [37.707054, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.555589],\n            [37.707054, 55.555679],\n            [37.707144, 55.555679],\n            [37.707144, 55.555589],\n            [37.707054, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707054, 55.555679],\n            [37.707054, 55.555769],\n            [37.707144, 55.555769],\n            [37.707144, 55.555679],\n            [37.707054, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.552261],\n            [37.707144, 55.552351],\n            [37.707233, 55.552351],\n            [37.707233, 55.552261],\n            [37.707144, 55.552261]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.552351],\n            [37.707144, 55.552441],\n            [37.707233, 55.552441],\n            [37.707233, 55.552351],\n            [37.707144, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.552441],\n            [37.707144, 55.552531],\n            [37.707233, 55.552531],\n            [37.707233, 55.552441],\n            [37.707144, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.552531],\n            [37.707144, 55.552621],\n            [37.707233, 55.552621],\n            [37.707233, 55.552531],\n            [37.707144, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.552621],\n            [37.707144, 55.552711],\n            [37.707233, 55.552711],\n            [37.707233, 55.552621],\n            [37.707144, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.552711],\n            [37.707144, 55.552801],\n            [37.707233, 55.552801],\n            [37.707233, 55.552711],\n            [37.707144, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.552801],\n            [37.707144, 55.552891],\n            [37.707233, 55.552891],\n            [37.707233, 55.552801],\n            [37.707144, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.552891],\n            [37.707144, 55.552981],\n            [37.707233, 55.552981],\n            [37.707233, 55.552891],\n            [37.707144, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.552981],\n            [37.707144, 55.553071],\n            [37.707233, 55.553071],\n            [37.707233, 55.552981],\n            [37.707144, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.553071],\n            [37.707144, 55.553161],\n            [37.707233, 55.553161],\n            [37.707233, 55.553071],\n            [37.707144, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.553161],\n            [37.707144, 55.553251],\n            [37.707233, 55.553251],\n            [37.707233, 55.553161],\n            [37.707144, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.553251],\n            [37.707144, 55.553341],\n            [37.707233, 55.553341],\n            [37.707233, 55.553251],\n            [37.707144, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.553341],\n            [37.707144, 55.553431],\n            [37.707233, 55.553431],\n            [37.707233, 55.553341],\n            [37.707144, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.553431],\n            [37.707144, 55.55352],\n            [37.707233, 55.55352],\n            [37.707233, 55.553431],\n            [37.707144, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.55352],\n            [37.707144, 55.55361],\n            [37.707233, 55.55361],\n            [37.707233, 55.55352],\n            [37.707144, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.55361],\n            [37.707144, 55.5537],\n            [37.707233, 55.5537],\n            [37.707233, 55.55361],\n            [37.707144, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.5537],\n            [37.707144, 55.55379],\n            [37.707233, 55.55379],\n            [37.707233, 55.5537],\n            [37.707144, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.55379],\n            [37.707144, 55.55388],\n            [37.707233, 55.55388],\n            [37.707233, 55.55379],\n            [37.707144, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.55388],\n            [37.707144, 55.55397],\n            [37.707233, 55.55397],\n            [37.707233, 55.55388],\n            [37.707144, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.55397],\n            [37.707144, 55.55406],\n            [37.707233, 55.55406],\n            [37.707233, 55.55397],\n            [37.707144, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.55406],\n            [37.707144, 55.55415],\n            [37.707233, 55.55415],\n            [37.707233, 55.55406],\n            [37.707144, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.55415],\n            [37.707144, 55.55424],\n            [37.707233, 55.55424],\n            [37.707233, 55.55415],\n            [37.707144, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.55424],\n            [37.707144, 55.55433],\n            [37.707233, 55.55433],\n            [37.707233, 55.55424],\n            [37.707144, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.55433],\n            [37.707144, 55.55442],\n            [37.707233, 55.55442],\n            [37.707233, 55.55433],\n            [37.707144, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.55442],\n            [37.707144, 55.55451],\n            [37.707233, 55.55451],\n            [37.707233, 55.55442],\n            [37.707144, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.55451],\n            [37.707144, 55.5546],\n            [37.707233, 55.5546],\n            [37.707233, 55.55451],\n            [37.707144, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.5546],\n            [37.707144, 55.55469],\n            [37.707233, 55.55469],\n            [37.707233, 55.5546],\n            [37.707144, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.55469],\n            [37.707144, 55.55478],\n            [37.707233, 55.55478],\n            [37.707233, 55.55469],\n            [37.707144, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.55478],\n            [37.707144, 55.554869],\n            [37.707233, 55.554869],\n            [37.707233, 55.55478],\n            [37.707144, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.554869],\n            [37.707144, 55.554959],\n            [37.707233, 55.554959],\n            [37.707233, 55.554869],\n            [37.707144, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.554959],\n            [37.707144, 55.555049],\n            [37.707233, 55.555049],\n            [37.707233, 55.554959],\n            [37.707144, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.555049],\n            [37.707144, 55.555139],\n            [37.707233, 55.555139],\n            [37.707233, 55.555049],\n            [37.707144, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.555139],\n            [37.707144, 55.555229],\n            [37.707233, 55.555229],\n            [37.707233, 55.555139],\n            [37.707144, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.555229],\n            [37.707144, 55.555319],\n            [37.707233, 55.555319],\n            [37.707233, 55.555229],\n            [37.707144, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.555319],\n            [37.707144, 55.555409],\n            [37.707233, 55.555409],\n            [37.707233, 55.555319],\n            [37.707144, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.555409],\n            [37.707144, 55.555499],\n            [37.707233, 55.555499],\n            [37.707233, 55.555409],\n            [37.707144, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.555499],\n            [37.707144, 55.555589],\n            [37.707233, 55.555589],\n            [37.707233, 55.555499],\n            [37.707144, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.555589],\n            [37.707144, 55.555679],\n            [37.707233, 55.555679],\n            [37.707233, 55.555589],\n            [37.707144, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707144, 55.555679],\n            [37.707144, 55.555769],\n            [37.707233, 55.555769],\n            [37.707233, 55.555679],\n            [37.707144, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.552351],\n            [37.707233, 55.552441],\n            [37.707323, 55.552441],\n            [37.707323, 55.552351],\n            [37.707233, 55.552351]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.552441],\n            [37.707233, 55.552531],\n            [37.707323, 55.552531],\n            [37.707323, 55.552441],\n            [37.707233, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.552531],\n            [37.707233, 55.552621],\n            [37.707323, 55.552621],\n            [37.707323, 55.552531],\n            [37.707233, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.552621],\n            [37.707233, 55.552711],\n            [37.707323, 55.552711],\n            [37.707323, 55.552621],\n            [37.707233, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.552711],\n            [37.707233, 55.552801],\n            [37.707323, 55.552801],\n            [37.707323, 55.552711],\n            [37.707233, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.552801],\n            [37.707233, 55.552891],\n            [37.707323, 55.552891],\n            [37.707323, 55.552801],\n            [37.707233, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.552891],\n            [37.707233, 55.552981],\n            [37.707323, 55.552981],\n            [37.707323, 55.552891],\n            [37.707233, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.552981],\n            [37.707233, 55.553071],\n            [37.707323, 55.553071],\n            [37.707323, 55.552981],\n            [37.707233, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.553071],\n            [37.707233, 55.553161],\n            [37.707323, 55.553161],\n            [37.707323, 55.553071],\n            [37.707233, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.553161],\n            [37.707233, 55.553251],\n            [37.707323, 55.553251],\n            [37.707323, 55.553161],\n            [37.707233, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.553251],\n            [37.707233, 55.553341],\n            [37.707323, 55.553341],\n            [37.707323, 55.553251],\n            [37.707233, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.553341],\n            [37.707233, 55.553431],\n            [37.707323, 55.553431],\n            [37.707323, 55.553341],\n            [37.707233, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.553431],\n            [37.707233, 55.55352],\n            [37.707323, 55.55352],\n            [37.707323, 55.553431],\n            [37.707233, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.55352],\n            [37.707233, 55.55361],\n            [37.707323, 55.55361],\n            [37.707323, 55.55352],\n            [37.707233, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.55361],\n            [37.707233, 55.5537],\n            [37.707323, 55.5537],\n            [37.707323, 55.55361],\n            [37.707233, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.5537],\n            [37.707233, 55.55379],\n            [37.707323, 55.55379],\n            [37.707323, 55.5537],\n            [37.707233, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.55379],\n            [37.707233, 55.55388],\n            [37.707323, 55.55388],\n            [37.707323, 55.55379],\n            [37.707233, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.55388],\n            [37.707233, 55.55397],\n            [37.707323, 55.55397],\n            [37.707323, 55.55388],\n            [37.707233, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.55397],\n            [37.707233, 55.55406],\n            [37.707323, 55.55406],\n            [37.707323, 55.55397],\n            [37.707233, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.55406],\n            [37.707233, 55.55415],\n            [37.707323, 55.55415],\n            [37.707323, 55.55406],\n            [37.707233, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.55415],\n            [37.707233, 55.55424],\n            [37.707323, 55.55424],\n            [37.707323, 55.55415],\n            [37.707233, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.55424],\n            [37.707233, 55.55433],\n            [37.707323, 55.55433],\n            [37.707323, 55.55424],\n            [37.707233, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.55433],\n            [37.707233, 55.55442],\n            [37.707323, 55.55442],\n            [37.707323, 55.55433],\n            [37.707233, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.55442],\n            [37.707233, 55.55451],\n            [37.707323, 55.55451],\n            [37.707323, 55.55442],\n            [37.707233, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.55451],\n            [37.707233, 55.5546],\n            [37.707323, 55.5546],\n            [37.707323, 55.55451],\n            [37.707233, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.5546],\n            [37.707233, 55.55469],\n            [37.707323, 55.55469],\n            [37.707323, 55.5546],\n            [37.707233, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.55469],\n            [37.707233, 55.55478],\n            [37.707323, 55.55478],\n            [37.707323, 55.55469],\n            [37.707233, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.55478],\n            [37.707233, 55.554869],\n            [37.707323, 55.554869],\n            [37.707323, 55.55478],\n            [37.707233, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.554869],\n            [37.707233, 55.554959],\n            [37.707323, 55.554959],\n            [37.707323, 55.554869],\n            [37.707233, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.554959],\n            [37.707233, 55.555049],\n            [37.707323, 55.555049],\n            [37.707323, 55.554959],\n            [37.707233, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.555049],\n            [37.707233, 55.555139],\n            [37.707323, 55.555139],\n            [37.707323, 55.555049],\n            [37.707233, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.555139],\n            [37.707233, 55.555229],\n            [37.707323, 55.555229],\n            [37.707323, 55.555139],\n            [37.707233, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.555229],\n            [37.707233, 55.555319],\n            [37.707323, 55.555319],\n            [37.707323, 55.555229],\n            [37.707233, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.555319],\n            [37.707233, 55.555409],\n            [37.707323, 55.555409],\n            [37.707323, 55.555319],\n            [37.707233, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.555409],\n            [37.707233, 55.555499],\n            [37.707323, 55.555499],\n            [37.707323, 55.555409],\n            [37.707233, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.555499],\n            [37.707233, 55.555589],\n            [37.707323, 55.555589],\n            [37.707323, 55.555499],\n            [37.707233, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.555589],\n            [37.707233, 55.555679],\n            [37.707323, 55.555679],\n            [37.707323, 55.555589],\n            [37.707233, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707233, 55.555679],\n            [37.707233, 55.555769],\n            [37.707323, 55.555769],\n            [37.707323, 55.555679],\n            [37.707233, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.552441],\n            [37.707323, 55.552531],\n            [37.707413, 55.552531],\n            [37.707413, 55.552441],\n            [37.707323, 55.552441]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.552531],\n            [37.707323, 55.552621],\n            [37.707413, 55.552621],\n            [37.707413, 55.552531],\n            [37.707323, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.552621],\n            [37.707323, 55.552711],\n            [37.707413, 55.552711],\n            [37.707413, 55.552621],\n            [37.707323, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.552711],\n            [37.707323, 55.552801],\n            [37.707413, 55.552801],\n            [37.707413, 55.552711],\n            [37.707323, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.552801],\n            [37.707323, 55.552891],\n            [37.707413, 55.552891],\n            [37.707413, 55.552801],\n            [37.707323, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.552891],\n            [37.707323, 55.552981],\n            [37.707413, 55.552981],\n            [37.707413, 55.552891],\n            [37.707323, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.552981],\n            [37.707323, 55.553071],\n            [37.707413, 55.553071],\n            [37.707413, 55.552981],\n            [37.707323, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.553071],\n            [37.707323, 55.553161],\n            [37.707413, 55.553161],\n            [37.707413, 55.553071],\n            [37.707323, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.553161],\n            [37.707323, 55.553251],\n            [37.707413, 55.553251],\n            [37.707413, 55.553161],\n            [37.707323, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.553251],\n            [37.707323, 55.553341],\n            [37.707413, 55.553341],\n            [37.707413, 55.553251],\n            [37.707323, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.553341],\n            [37.707323, 55.553431],\n            [37.707413, 55.553431],\n            [37.707413, 55.553341],\n            [37.707323, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.553431],\n            [37.707323, 55.55352],\n            [37.707413, 55.55352],\n            [37.707413, 55.553431],\n            [37.707323, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.55352],\n            [37.707323, 55.55361],\n            [37.707413, 55.55361],\n            [37.707413, 55.55352],\n            [37.707323, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.55361],\n            [37.707323, 55.5537],\n            [37.707413, 55.5537],\n            [37.707413, 55.55361],\n            [37.707323, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.5537],\n            [37.707323, 55.55379],\n            [37.707413, 55.55379],\n            [37.707413, 55.5537],\n            [37.707323, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.55379],\n            [37.707323, 55.55388],\n            [37.707413, 55.55388],\n            [37.707413, 55.55379],\n            [37.707323, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.55388],\n            [37.707323, 55.55397],\n            [37.707413, 55.55397],\n            [37.707413, 55.55388],\n            [37.707323, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.55397],\n            [37.707323, 55.55406],\n            [37.707413, 55.55406],\n            [37.707413, 55.55397],\n            [37.707323, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.55406],\n            [37.707323, 55.55415],\n            [37.707413, 55.55415],\n            [37.707413, 55.55406],\n            [37.707323, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.55415],\n            [37.707323, 55.55424],\n            [37.707413, 55.55424],\n            [37.707413, 55.55415],\n            [37.707323, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.55424],\n            [37.707323, 55.55433],\n            [37.707413, 55.55433],\n            [37.707413, 55.55424],\n            [37.707323, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.55433],\n            [37.707323, 55.55442],\n            [37.707413, 55.55442],\n            [37.707413, 55.55433],\n            [37.707323, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.55442],\n            [37.707323, 55.55451],\n            [37.707413, 55.55451],\n            [37.707413, 55.55442],\n            [37.707323, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.55451],\n            [37.707323, 55.5546],\n            [37.707413, 55.5546],\n            [37.707413, 55.55451],\n            [37.707323, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.5546],\n            [37.707323, 55.55469],\n            [37.707413, 55.55469],\n            [37.707413, 55.5546],\n            [37.707323, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.55469],\n            [37.707323, 55.55478],\n            [37.707413, 55.55478],\n            [37.707413, 55.55469],\n            [37.707323, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.55478],\n            [37.707323, 55.554869],\n            [37.707413, 55.554869],\n            [37.707413, 55.55478],\n            [37.707323, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.554869],\n            [37.707323, 55.554959],\n            [37.707413, 55.554959],\n            [37.707413, 55.554869],\n            [37.707323, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.554959],\n            [37.707323, 55.555049],\n            [37.707413, 55.555049],\n            [37.707413, 55.554959],\n            [37.707323, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.555049],\n            [37.707323, 55.555139],\n            [37.707413, 55.555139],\n            [37.707413, 55.555049],\n            [37.707323, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.555139],\n            [37.707323, 55.555229],\n            [37.707413, 55.555229],\n            [37.707413, 55.555139],\n            [37.707323, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.555229],\n            [37.707323, 55.555319],\n            [37.707413, 55.555319],\n            [37.707413, 55.555229],\n            [37.707323, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.555319],\n            [37.707323, 55.555409],\n            [37.707413, 55.555409],\n            [37.707413, 55.555319],\n            [37.707323, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.555409],\n            [37.707323, 55.555499],\n            [37.707413, 55.555499],\n            [37.707413, 55.555409],\n            [37.707323, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.555499],\n            [37.707323, 55.555589],\n            [37.707413, 55.555589],\n            [37.707413, 55.555499],\n            [37.707323, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.555589],\n            [37.707323, 55.555679],\n            [37.707413, 55.555679],\n            [37.707413, 55.555589],\n            [37.707323, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707323, 55.555679],\n            [37.707323, 55.555769],\n            [37.707413, 55.555769],\n            [37.707413, 55.555679],\n            [37.707323, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.552531],\n            [37.707413, 55.552621],\n            [37.707503, 55.552621],\n            [37.707503, 55.552531],\n            [37.707413, 55.552531]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.552621],\n            [37.707413, 55.552711],\n            [37.707503, 55.552711],\n            [37.707503, 55.552621],\n            [37.707413, 55.552621]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.552711],\n            [37.707413, 55.552801],\n            [37.707503, 55.552801],\n            [37.707503, 55.552711],\n            [37.707413, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.552801],\n            [37.707413, 55.552891],\n            [37.707503, 55.552891],\n            [37.707503, 55.552801],\n            [37.707413, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.552891],\n            [37.707413, 55.552981],\n            [37.707503, 55.552981],\n            [37.707503, 55.552891],\n            [37.707413, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.552981],\n            [37.707413, 55.553071],\n            [37.707503, 55.553071],\n            [37.707503, 55.552981],\n            [37.707413, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.553071],\n            [37.707413, 55.553161],\n            [37.707503, 55.553161],\n            [37.707503, 55.553071],\n            [37.707413, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.553161],\n            [37.707413, 55.553251],\n            [37.707503, 55.553251],\n            [37.707503, 55.553161],\n            [37.707413, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.553251],\n            [37.707413, 55.553341],\n            [37.707503, 55.553341],\n            [37.707503, 55.553251],\n            [37.707413, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.553341],\n            [37.707413, 55.553431],\n            [37.707503, 55.553431],\n            [37.707503, 55.553341],\n            [37.707413, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.553431],\n            [37.707413, 55.55352],\n            [37.707503, 55.55352],\n            [37.707503, 55.553431],\n            [37.707413, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.55352],\n            [37.707413, 55.55361],\n            [37.707503, 55.55361],\n            [37.707503, 55.55352],\n            [37.707413, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.55361],\n            [37.707413, 55.5537],\n            [37.707503, 55.5537],\n            [37.707503, 55.55361],\n            [37.707413, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.5537],\n            [37.707413, 55.55379],\n            [37.707503, 55.55379],\n            [37.707503, 55.5537],\n            [37.707413, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.55379],\n            [37.707413, 55.55388],\n            [37.707503, 55.55388],\n            [37.707503, 55.55379],\n            [37.707413, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.55388],\n            [37.707413, 55.55397],\n            [37.707503, 55.55397],\n            [37.707503, 55.55388],\n            [37.707413, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.55397],\n            [37.707413, 55.55406],\n            [37.707503, 55.55406],\n            [37.707503, 55.55397],\n            [37.707413, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.55406],\n            [37.707413, 55.55415],\n            [37.707503, 55.55415],\n            [37.707503, 55.55406],\n            [37.707413, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.55415],\n            [37.707413, 55.55424],\n            [37.707503, 55.55424],\n            [37.707503, 55.55415],\n            [37.707413, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.55424],\n            [37.707413, 55.55433],\n            [37.707503, 55.55433],\n            [37.707503, 55.55424],\n            [37.707413, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.55433],\n            [37.707413, 55.55442],\n            [37.707503, 55.55442],\n            [37.707503, 55.55433],\n            [37.707413, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.55442],\n            [37.707413, 55.55451],\n            [37.707503, 55.55451],\n            [37.707503, 55.55442],\n            [37.707413, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.55451],\n            [37.707413, 55.5546],\n            [37.707503, 55.5546],\n            [37.707503, 55.55451],\n            [37.707413, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.5546],\n            [37.707413, 55.55469],\n            [37.707503, 55.55469],\n            [37.707503, 55.5546],\n            [37.707413, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.55469],\n            [37.707413, 55.55478],\n            [37.707503, 55.55478],\n            [37.707503, 55.55469],\n            [37.707413, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.55478],\n            [37.707413, 55.554869],\n            [37.707503, 55.554869],\n            [37.707503, 55.55478],\n            [37.707413, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.554869],\n            [37.707413, 55.554959],\n            [37.707503, 55.554959],\n            [37.707503, 55.554869],\n            [37.707413, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.554959],\n            [37.707413, 55.555049],\n            [37.707503, 55.555049],\n            [37.707503, 55.554959],\n            [37.707413, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.555049],\n            [37.707413, 55.555139],\n            [37.707503, 55.555139],\n            [37.707503, 55.555049],\n            [37.707413, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.555139],\n            [37.707413, 55.555229],\n            [37.707503, 55.555229],\n            [37.707503, 55.555139],\n            [37.707413, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.555229],\n            [37.707413, 55.555319],\n            [37.707503, 55.555319],\n            [37.707503, 55.555229],\n            [37.707413, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.555319],\n            [37.707413, 55.555409],\n            [37.707503, 55.555409],\n            [37.707503, 55.555319],\n            [37.707413, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.555409],\n            [37.707413, 55.555499],\n            [37.707503, 55.555499],\n            [37.707503, 55.555409],\n            [37.707413, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.555499],\n            [37.707413, 55.555589],\n            [37.707503, 55.555589],\n            [37.707503, 55.555499],\n            [37.707413, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.555589],\n            [37.707413, 55.555679],\n            [37.707503, 55.555679],\n            [37.707503, 55.555589],\n            [37.707413, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.555679],\n            [37.707413, 55.555769],\n            [37.707503, 55.555769],\n            [37.707503, 55.555679],\n            [37.707413, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707413, 55.555769],\n            [37.707413, 55.555859],\n            [37.707503, 55.555859],\n            [37.707503, 55.555769],\n            [37.707413, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.552711],\n            [37.707503, 55.552801],\n            [37.707593, 55.552801],\n            [37.707593, 55.552711],\n            [37.707503, 55.552711]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.552801],\n            [37.707503, 55.552891],\n            [37.707593, 55.552891],\n            [37.707593, 55.552801],\n            [37.707503, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.552891],\n            [37.707503, 55.552981],\n            [37.707593, 55.552981],\n            [37.707593, 55.552891],\n            [37.707503, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.552981],\n            [37.707503, 55.553071],\n            [37.707593, 55.553071],\n            [37.707593, 55.552981],\n            [37.707503, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.553071],\n            [37.707503, 55.553161],\n            [37.707593, 55.553161],\n            [37.707593, 55.553071],\n            [37.707503, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.553161],\n            [37.707503, 55.553251],\n            [37.707593, 55.553251],\n            [37.707593, 55.553161],\n            [37.707503, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.553251],\n            [37.707503, 55.553341],\n            [37.707593, 55.553341],\n            [37.707593, 55.553251],\n            [37.707503, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.553341],\n            [37.707503, 55.553431],\n            [37.707593, 55.553431],\n            [37.707593, 55.553341],\n            [37.707503, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.553431],\n            [37.707503, 55.55352],\n            [37.707593, 55.55352],\n            [37.707593, 55.553431],\n            [37.707503, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.55352],\n            [37.707503, 55.55361],\n            [37.707593, 55.55361],\n            [37.707593, 55.55352],\n            [37.707503, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.55361],\n            [37.707503, 55.5537],\n            [37.707593, 55.5537],\n            [37.707593, 55.55361],\n            [37.707503, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.5537],\n            [37.707503, 55.55379],\n            [37.707593, 55.55379],\n            [37.707593, 55.5537],\n            [37.707503, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.55379],\n            [37.707503, 55.55388],\n            [37.707593, 55.55388],\n            [37.707593, 55.55379],\n            [37.707503, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.55388],\n            [37.707503, 55.55397],\n            [37.707593, 55.55397],\n            [37.707593, 55.55388],\n            [37.707503, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.55397],\n            [37.707503, 55.55406],\n            [37.707593, 55.55406],\n            [37.707593, 55.55397],\n            [37.707503, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.55406],\n            [37.707503, 55.55415],\n            [37.707593, 55.55415],\n            [37.707593, 55.55406],\n            [37.707503, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.55415],\n            [37.707503, 55.55424],\n            [37.707593, 55.55424],\n            [37.707593, 55.55415],\n            [37.707503, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.55424],\n            [37.707503, 55.55433],\n            [37.707593, 55.55433],\n            [37.707593, 55.55424],\n            [37.707503, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.55433],\n            [37.707503, 55.55442],\n            [37.707593, 55.55442],\n            [37.707593, 55.55433],\n            [37.707503, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.55442],\n            [37.707503, 55.55451],\n            [37.707593, 55.55451],\n            [37.707593, 55.55442],\n            [37.707503, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.55451],\n            [37.707503, 55.5546],\n            [37.707593, 55.5546],\n            [37.707593, 55.55451],\n            [37.707503, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.5546],\n            [37.707503, 55.55469],\n            [37.707593, 55.55469],\n            [37.707593, 55.5546],\n            [37.707503, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.55469],\n            [37.707503, 55.55478],\n            [37.707593, 55.55478],\n            [37.707593, 55.55469],\n            [37.707503, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.55478],\n            [37.707503, 55.554869],\n            [37.707593, 55.554869],\n            [37.707593, 55.55478],\n            [37.707503, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.554869],\n            [37.707503, 55.554959],\n            [37.707593, 55.554959],\n            [37.707593, 55.554869],\n            [37.707503, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.554959],\n            [37.707503, 55.555049],\n            [37.707593, 55.555049],\n            [37.707593, 55.554959],\n            [37.707503, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.555049],\n            [37.707503, 55.555139],\n            [37.707593, 55.555139],\n            [37.707593, 55.555049],\n            [37.707503, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.555139],\n            [37.707503, 55.555229],\n            [37.707593, 55.555229],\n            [37.707593, 55.555139],\n            [37.707503, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.555229],\n            [37.707503, 55.555319],\n            [37.707593, 55.555319],\n            [37.707593, 55.555229],\n            [37.707503, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.555319],\n            [37.707503, 55.555409],\n            [37.707593, 55.555409],\n            [37.707593, 55.555319],\n            [37.707503, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.555409],\n            [37.707503, 55.555499],\n            [37.707593, 55.555499],\n            [37.707593, 55.555409],\n            [37.707503, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.555499],\n            [37.707503, 55.555589],\n            [37.707593, 55.555589],\n            [37.707593, 55.555499],\n            [37.707503, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.555589],\n            [37.707503, 55.555679],\n            [37.707593, 55.555679],\n            [37.707593, 55.555589],\n            [37.707503, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.555679],\n            [37.707503, 55.555769],\n            [37.707593, 55.555769],\n            [37.707593, 55.555679],\n            [37.707503, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707503, 55.555769],\n            [37.707503, 55.555859],\n            [37.707593, 55.555859],\n            [37.707593, 55.555769],\n            [37.707503, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.552801],\n            [37.707593, 55.552891],\n            [37.707683, 55.552891],\n            [37.707683, 55.552801],\n            [37.707593, 55.552801]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.552891],\n            [37.707593, 55.552981],\n            [37.707683, 55.552981],\n            [37.707683, 55.552891],\n            [37.707593, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.552981],\n            [37.707593, 55.553071],\n            [37.707683, 55.553071],\n            [37.707683, 55.552981],\n            [37.707593, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.553071],\n            [37.707593, 55.553161],\n            [37.707683, 55.553161],\n            [37.707683, 55.553071],\n            [37.707593, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.553161],\n            [37.707593, 55.553251],\n            [37.707683, 55.553251],\n            [37.707683, 55.553161],\n            [37.707593, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.553251],\n            [37.707593, 55.553341],\n            [37.707683, 55.553341],\n            [37.707683, 55.553251],\n            [37.707593, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.553341],\n            [37.707593, 55.553431],\n            [37.707683, 55.553431],\n            [37.707683, 55.553341],\n            [37.707593, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.553431],\n            [37.707593, 55.55352],\n            [37.707683, 55.55352],\n            [37.707683, 55.553431],\n            [37.707593, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.55352],\n            [37.707593, 55.55361],\n            [37.707683, 55.55361],\n            [37.707683, 55.55352],\n            [37.707593, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.55361],\n            [37.707593, 55.5537],\n            [37.707683, 55.5537],\n            [37.707683, 55.55361],\n            [37.707593, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.5537],\n            [37.707593, 55.55379],\n            [37.707683, 55.55379],\n            [37.707683, 55.5537],\n            [37.707593, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.55379],\n            [37.707593, 55.55388],\n            [37.707683, 55.55388],\n            [37.707683, 55.55379],\n            [37.707593, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.55388],\n            [37.707593, 55.55397],\n            [37.707683, 55.55397],\n            [37.707683, 55.55388],\n            [37.707593, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.55397],\n            [37.707593, 55.55406],\n            [37.707683, 55.55406],\n            [37.707683, 55.55397],\n            [37.707593, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.55406],\n            [37.707593, 55.55415],\n            [37.707683, 55.55415],\n            [37.707683, 55.55406],\n            [37.707593, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.55415],\n            [37.707593, 55.55424],\n            [37.707683, 55.55424],\n            [37.707683, 55.55415],\n            [37.707593, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.55424],\n            [37.707593, 55.55433],\n            [37.707683, 55.55433],\n            [37.707683, 55.55424],\n            [37.707593, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.55433],\n            [37.707593, 55.55442],\n            [37.707683, 55.55442],\n            [37.707683, 55.55433],\n            [37.707593, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.55442],\n            [37.707593, 55.55451],\n            [37.707683, 55.55451],\n            [37.707683, 55.55442],\n            [37.707593, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.55451],\n            [37.707593, 55.5546],\n            [37.707683, 55.5546],\n            [37.707683, 55.55451],\n            [37.707593, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.5546],\n            [37.707593, 55.55469],\n            [37.707683, 55.55469],\n            [37.707683, 55.5546],\n            [37.707593, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.55469],\n            [37.707593, 55.55478],\n            [37.707683, 55.55478],\n            [37.707683, 55.55469],\n            [37.707593, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.55478],\n            [37.707593, 55.554869],\n            [37.707683, 55.554869],\n            [37.707683, 55.55478],\n            [37.707593, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.554869],\n            [37.707593, 55.554959],\n            [37.707683, 55.554959],\n            [37.707683, 55.554869],\n            [37.707593, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.554959],\n            [37.707593, 55.555049],\n            [37.707683, 55.555049],\n            [37.707683, 55.554959],\n            [37.707593, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.555049],\n            [37.707593, 55.555139],\n            [37.707683, 55.555139],\n            [37.707683, 55.555049],\n            [37.707593, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.555139],\n            [37.707593, 55.555229],\n            [37.707683, 55.555229],\n            [37.707683, 55.555139],\n            [37.707593, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.555229],\n            [37.707593, 55.555319],\n            [37.707683, 55.555319],\n            [37.707683, 55.555229],\n            [37.707593, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.555319],\n            [37.707593, 55.555409],\n            [37.707683, 55.555409],\n            [37.707683, 55.555319],\n            [37.707593, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.555409],\n            [37.707593, 55.555499],\n            [37.707683, 55.555499],\n            [37.707683, 55.555409],\n            [37.707593, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.555499],\n            [37.707593, 55.555589],\n            [37.707683, 55.555589],\n            [37.707683, 55.555499],\n            [37.707593, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.555589],\n            [37.707593, 55.555679],\n            [37.707683, 55.555679],\n            [37.707683, 55.555589],\n            [37.707593, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.555679],\n            [37.707593, 55.555769],\n            [37.707683, 55.555769],\n            [37.707683, 55.555679],\n            [37.707593, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707593, 55.555769],\n            [37.707593, 55.555859],\n            [37.707683, 55.555859],\n            [37.707683, 55.555769],\n            [37.707593, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.552891],\n            [37.707683, 55.552981],\n            [37.707773, 55.552981],\n            [37.707773, 55.552891],\n            [37.707683, 55.552891]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.552981],\n            [37.707683, 55.553071],\n            [37.707773, 55.553071],\n            [37.707773, 55.552981],\n            [37.707683, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.553071],\n            [37.707683, 55.553161],\n            [37.707773, 55.553161],\n            [37.707773, 55.553071],\n            [37.707683, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.553161],\n            [37.707683, 55.553251],\n            [37.707773, 55.553251],\n            [37.707773, 55.553161],\n            [37.707683, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.553251],\n            [37.707683, 55.553341],\n            [37.707773, 55.553341],\n            [37.707773, 55.553251],\n            [37.707683, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.553341],\n            [37.707683, 55.553431],\n            [37.707773, 55.553431],\n            [37.707773, 55.553341],\n            [37.707683, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.553431],\n            [37.707683, 55.55352],\n            [37.707773, 55.55352],\n            [37.707773, 55.553431],\n            [37.707683, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.55352],\n            [37.707683, 55.55361],\n            [37.707773, 55.55361],\n            [37.707773, 55.55352],\n            [37.707683, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.55361],\n            [37.707683, 55.5537],\n            [37.707773, 55.5537],\n            [37.707773, 55.55361],\n            [37.707683, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.5537],\n            [37.707683, 55.55379],\n            [37.707773, 55.55379],\n            [37.707773, 55.5537],\n            [37.707683, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.55379],\n            [37.707683, 55.55388],\n            [37.707773, 55.55388],\n            [37.707773, 55.55379],\n            [37.707683, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.55388],\n            [37.707683, 55.55397],\n            [37.707773, 55.55397],\n            [37.707773, 55.55388],\n            [37.707683, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.55397],\n            [37.707683, 55.55406],\n            [37.707773, 55.55406],\n            [37.707773, 55.55397],\n            [37.707683, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.55406],\n            [37.707683, 55.55415],\n            [37.707773, 55.55415],\n            [37.707773, 55.55406],\n            [37.707683, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.55415],\n            [37.707683, 55.55424],\n            [37.707773, 55.55424],\n            [37.707773, 55.55415],\n            [37.707683, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.55424],\n            [37.707683, 55.55433],\n            [37.707773, 55.55433],\n            [37.707773, 55.55424],\n            [37.707683, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.55433],\n            [37.707683, 55.55442],\n            [37.707773, 55.55442],\n            [37.707773, 55.55433],\n            [37.707683, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.55442],\n            [37.707683, 55.55451],\n            [37.707773, 55.55451],\n            [37.707773, 55.55442],\n            [37.707683, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.55451],\n            [37.707683, 55.5546],\n            [37.707773, 55.5546],\n            [37.707773, 55.55451],\n            [37.707683, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.5546],\n            [37.707683, 55.55469],\n            [37.707773, 55.55469],\n            [37.707773, 55.5546],\n            [37.707683, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.55469],\n            [37.707683, 55.55478],\n            [37.707773, 55.55478],\n            [37.707773, 55.55469],\n            [37.707683, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.55478],\n            [37.707683, 55.554869],\n            [37.707773, 55.554869],\n            [37.707773, 55.55478],\n            [37.707683, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.554869],\n            [37.707683, 55.554959],\n            [37.707773, 55.554959],\n            [37.707773, 55.554869],\n            [37.707683, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.554959],\n            [37.707683, 55.555049],\n            [37.707773, 55.555049],\n            [37.707773, 55.554959],\n            [37.707683, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.555049],\n            [37.707683, 55.555139],\n            [37.707773, 55.555139],\n            [37.707773, 55.555049],\n            [37.707683, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.555139],\n            [37.707683, 55.555229],\n            [37.707773, 55.555229],\n            [37.707773, 55.555139],\n            [37.707683, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.555229],\n            [37.707683, 55.555319],\n            [37.707773, 55.555319],\n            [37.707773, 55.555229],\n            [37.707683, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.555319],\n            [37.707683, 55.555409],\n            [37.707773, 55.555409],\n            [37.707773, 55.555319],\n            [37.707683, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.555409],\n            [37.707683, 55.555499],\n            [37.707773, 55.555499],\n            [37.707773, 55.555409],\n            [37.707683, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.555499],\n            [37.707683, 55.555589],\n            [37.707773, 55.555589],\n            [37.707773, 55.555499],\n            [37.707683, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.555589],\n            [37.707683, 55.555679],\n            [37.707773, 55.555679],\n            [37.707773, 55.555589],\n            [37.707683, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.555679],\n            [37.707683, 55.555769],\n            [37.707773, 55.555769],\n            [37.707773, 55.555679],\n            [37.707683, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.555769],\n            [37.707683, 55.555859],\n            [37.707773, 55.555859],\n            [37.707773, 55.555769],\n            [37.707683, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707683, 55.555859],\n            [37.707683, 55.555949],\n            [37.707773, 55.555949],\n            [37.707773, 55.555859],\n            [37.707683, 55.555859]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.552981],\n            [37.707773, 55.553071],\n            [37.707863, 55.553071],\n            [37.707863, 55.552981],\n            [37.707773, 55.552981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.553071],\n            [37.707773, 55.553161],\n            [37.707863, 55.553161],\n            [37.707863, 55.553071],\n            [37.707773, 55.553071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.553161],\n            [37.707773, 55.553251],\n            [37.707863, 55.553251],\n            [37.707863, 55.553161],\n            [37.707773, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.553251],\n            [37.707773, 55.553341],\n            [37.707863, 55.553341],\n            [37.707863, 55.553251],\n            [37.707773, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.553341],\n            [37.707773, 55.553431],\n            [37.707863, 55.553431],\n            [37.707863, 55.553341],\n            [37.707773, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.553431],\n            [37.707773, 55.55352],\n            [37.707863, 55.55352],\n            [37.707863, 55.553431],\n            [37.707773, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.55352],\n            [37.707773, 55.55361],\n            [37.707863, 55.55361],\n            [37.707863, 55.55352],\n            [37.707773, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.55361],\n            [37.707773, 55.5537],\n            [37.707863, 55.5537],\n            [37.707863, 55.55361],\n            [37.707773, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.5537],\n            [37.707773, 55.55379],\n            [37.707863, 55.55379],\n            [37.707863, 55.5537],\n            [37.707773, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.55379],\n            [37.707773, 55.55388],\n            [37.707863, 55.55388],\n            [37.707863, 55.55379],\n            [37.707773, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.55388],\n            [37.707773, 55.55397],\n            [37.707863, 55.55397],\n            [37.707863, 55.55388],\n            [37.707773, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.55397],\n            [37.707773, 55.55406],\n            [37.707863, 55.55406],\n            [37.707863, 55.55397],\n            [37.707773, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.55406],\n            [37.707773, 55.55415],\n            [37.707863, 55.55415],\n            [37.707863, 55.55406],\n            [37.707773, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.55415],\n            [37.707773, 55.55424],\n            [37.707863, 55.55424],\n            [37.707863, 55.55415],\n            [37.707773, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.55424],\n            [37.707773, 55.55433],\n            [37.707863, 55.55433],\n            [37.707863, 55.55424],\n            [37.707773, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.55433],\n            [37.707773, 55.55442],\n            [37.707863, 55.55442],\n            [37.707863, 55.55433],\n            [37.707773, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.55442],\n            [37.707773, 55.55451],\n            [37.707863, 55.55451],\n            [37.707863, 55.55442],\n            [37.707773, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.55451],\n            [37.707773, 55.5546],\n            [37.707863, 55.5546],\n            [37.707863, 55.55451],\n            [37.707773, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.5546],\n            [37.707773, 55.55469],\n            [37.707863, 55.55469],\n            [37.707863, 55.5546],\n            [37.707773, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.55469],\n            [37.707773, 55.55478],\n            [37.707863, 55.55478],\n            [37.707863, 55.55469],\n            [37.707773, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.55478],\n            [37.707773, 55.554869],\n            [37.707863, 55.554869],\n            [37.707863, 55.55478],\n            [37.707773, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.554869],\n            [37.707773, 55.554959],\n            [37.707863, 55.554959],\n            [37.707863, 55.554869],\n            [37.707773, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.554959],\n            [37.707773, 55.555049],\n            [37.707863, 55.555049],\n            [37.707863, 55.554959],\n            [37.707773, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.555049],\n            [37.707773, 55.555139],\n            [37.707863, 55.555139],\n            [37.707863, 55.555049],\n            [37.707773, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.555139],\n            [37.707773, 55.555229],\n            [37.707863, 55.555229],\n            [37.707863, 55.555139],\n            [37.707773, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.555229],\n            [37.707773, 55.555319],\n            [37.707863, 55.555319],\n            [37.707863, 55.555229],\n            [37.707773, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.555319],\n            [37.707773, 55.555409],\n            [37.707863, 55.555409],\n            [37.707863, 55.555319],\n            [37.707773, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.555409],\n            [37.707773, 55.555499],\n            [37.707863, 55.555499],\n            [37.707863, 55.555409],\n            [37.707773, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.555499],\n            [37.707773, 55.555589],\n            [37.707863, 55.555589],\n            [37.707863, 55.555499],\n            [37.707773, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.555589],\n            [37.707773, 55.555679],\n            [37.707863, 55.555679],\n            [37.707863, 55.555589],\n            [37.707773, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.555679],\n            [37.707773, 55.555769],\n            [37.707863, 55.555769],\n            [37.707863, 55.555679],\n            [37.707773, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.555769],\n            [37.707773, 55.555859],\n            [37.707863, 55.555859],\n            [37.707863, 55.555769],\n            [37.707773, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707773, 55.555859],\n            [37.707773, 55.555949],\n            [37.707863, 55.555949],\n            [37.707863, 55.555859],\n            [37.707773, 55.555859]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.553161],\n            [37.707863, 55.553251],\n            [37.707953, 55.553251],\n            [37.707953, 55.553161],\n            [37.707863, 55.553161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.553251],\n            [37.707863, 55.553341],\n            [37.707953, 55.553341],\n            [37.707953, 55.553251],\n            [37.707863, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.553341],\n            [37.707863, 55.553431],\n            [37.707953, 55.553431],\n            [37.707953, 55.553341],\n            [37.707863, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.553431],\n            [37.707863, 55.55352],\n            [37.707953, 55.55352],\n            [37.707953, 55.553431],\n            [37.707863, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.55352],\n            [37.707863, 55.55361],\n            [37.707953, 55.55361],\n            [37.707953, 55.55352],\n            [37.707863, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.55361],\n            [37.707863, 55.5537],\n            [37.707953, 55.5537],\n            [37.707953, 55.55361],\n            [37.707863, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.5537],\n            [37.707863, 55.55379],\n            [37.707953, 55.55379],\n            [37.707953, 55.5537],\n            [37.707863, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.55379],\n            [37.707863, 55.55388],\n            [37.707953, 55.55388],\n            [37.707953, 55.55379],\n            [37.707863, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.55388],\n            [37.707863, 55.55397],\n            [37.707953, 55.55397],\n            [37.707953, 55.55388],\n            [37.707863, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.55397],\n            [37.707863, 55.55406],\n            [37.707953, 55.55406],\n            [37.707953, 55.55397],\n            [37.707863, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.55406],\n            [37.707863, 55.55415],\n            [37.707953, 55.55415],\n            [37.707953, 55.55406],\n            [37.707863, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.55415],\n            [37.707863, 55.55424],\n            [37.707953, 55.55424],\n            [37.707953, 55.55415],\n            [37.707863, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.55424],\n            [37.707863, 55.55433],\n            [37.707953, 55.55433],\n            [37.707953, 55.55424],\n            [37.707863, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.55433],\n            [37.707863, 55.55442],\n            [37.707953, 55.55442],\n            [37.707953, 55.55433],\n            [37.707863, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.55442],\n            [37.707863, 55.55451],\n            [37.707953, 55.55451],\n            [37.707953, 55.55442],\n            [37.707863, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.55451],\n            [37.707863, 55.5546],\n            [37.707953, 55.5546],\n            [37.707953, 55.55451],\n            [37.707863, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.5546],\n            [37.707863, 55.55469],\n            [37.707953, 55.55469],\n            [37.707953, 55.5546],\n            [37.707863, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.55469],\n            [37.707863, 55.55478],\n            [37.707953, 55.55478],\n            [37.707953, 55.55469],\n            [37.707863, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.55478],\n            [37.707863, 55.554869],\n            [37.707953, 55.554869],\n            [37.707953, 55.55478],\n            [37.707863, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.554869],\n            [37.707863, 55.554959],\n            [37.707953, 55.554959],\n            [37.707953, 55.554869],\n            [37.707863, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.554959],\n            [37.707863, 55.555049],\n            [37.707953, 55.555049],\n            [37.707953, 55.554959],\n            [37.707863, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.555049],\n            [37.707863, 55.555139],\n            [37.707953, 55.555139],\n            [37.707953, 55.555049],\n            [37.707863, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.555139],\n            [37.707863, 55.555229],\n            [37.707953, 55.555229],\n            [37.707953, 55.555139],\n            [37.707863, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.555229],\n            [37.707863, 55.555319],\n            [37.707953, 55.555319],\n            [37.707953, 55.555229],\n            [37.707863, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.555319],\n            [37.707863, 55.555409],\n            [37.707953, 55.555409],\n            [37.707953, 55.555319],\n            [37.707863, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.555409],\n            [37.707863, 55.555499],\n            [37.707953, 55.555499],\n            [37.707953, 55.555409],\n            [37.707863, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.555499],\n            [37.707863, 55.555589],\n            [37.707953, 55.555589],\n            [37.707953, 55.555499],\n            [37.707863, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.555589],\n            [37.707863, 55.555679],\n            [37.707953, 55.555679],\n            [37.707953, 55.555589],\n            [37.707863, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.555679],\n            [37.707863, 55.555769],\n            [37.707953, 55.555769],\n            [37.707953, 55.555679],\n            [37.707863, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.555769],\n            [37.707863, 55.555859],\n            [37.707953, 55.555859],\n            [37.707953, 55.555769],\n            [37.707863, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707863, 55.555859],\n            [37.707863, 55.555949],\n            [37.707953, 55.555949],\n            [37.707953, 55.555859],\n            [37.707863, 55.555859]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.553251],\n            [37.707953, 55.553341],\n            [37.708043, 55.553341],\n            [37.708043, 55.553251],\n            [37.707953, 55.553251]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.553341],\n            [37.707953, 55.553431],\n            [37.708043, 55.553431],\n            [37.708043, 55.553341],\n            [37.707953, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.553431],\n            [37.707953, 55.55352],\n            [37.708043, 55.55352],\n            [37.708043, 55.553431],\n            [37.707953, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.55352],\n            [37.707953, 55.55361],\n            [37.708043, 55.55361],\n            [37.708043, 55.55352],\n            [37.707953, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.55361],\n            [37.707953, 55.5537],\n            [37.708043, 55.5537],\n            [37.708043, 55.55361],\n            [37.707953, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.5537],\n            [37.707953, 55.55379],\n            [37.708043, 55.55379],\n            [37.708043, 55.5537],\n            [37.707953, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.55379],\n            [37.707953, 55.55388],\n            [37.708043, 55.55388],\n            [37.708043, 55.55379],\n            [37.707953, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.55388],\n            [37.707953, 55.55397],\n            [37.708043, 55.55397],\n            [37.708043, 55.55388],\n            [37.707953, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.55397],\n            [37.707953, 55.55406],\n            [37.708043, 55.55406],\n            [37.708043, 55.55397],\n            [37.707953, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.55406],\n            [37.707953, 55.55415],\n            [37.708043, 55.55415],\n            [37.708043, 55.55406],\n            [37.707953, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.55415],\n            [37.707953, 55.55424],\n            [37.708043, 55.55424],\n            [37.708043, 55.55415],\n            [37.707953, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.55424],\n            [37.707953, 55.55433],\n            [37.708043, 55.55433],\n            [37.708043, 55.55424],\n            [37.707953, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.55433],\n            [37.707953, 55.55442],\n            [37.708043, 55.55442],\n            [37.708043, 55.55433],\n            [37.707953, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.55442],\n            [37.707953, 55.55451],\n            [37.708043, 55.55451],\n            [37.708043, 55.55442],\n            [37.707953, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.55451],\n            [37.707953, 55.5546],\n            [37.708043, 55.5546],\n            [37.708043, 55.55451],\n            [37.707953, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.5546],\n            [37.707953, 55.55469],\n            [37.708043, 55.55469],\n            [37.708043, 55.5546],\n            [37.707953, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.55469],\n            [37.707953, 55.55478],\n            [37.708043, 55.55478],\n            [37.708043, 55.55469],\n            [37.707953, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.55478],\n            [37.707953, 55.554869],\n            [37.708043, 55.554869],\n            [37.708043, 55.55478],\n            [37.707953, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.554869],\n            [37.707953, 55.554959],\n            [37.708043, 55.554959],\n            [37.708043, 55.554869],\n            [37.707953, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.554959],\n            [37.707953, 55.555049],\n            [37.708043, 55.555049],\n            [37.708043, 55.554959],\n            [37.707953, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.555049],\n            [37.707953, 55.555139],\n            [37.708043, 55.555139],\n            [37.708043, 55.555049],\n            [37.707953, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.555139],\n            [37.707953, 55.555229],\n            [37.708043, 55.555229],\n            [37.708043, 55.555139],\n            [37.707953, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.555229],\n            [37.707953, 55.555319],\n            [37.708043, 55.555319],\n            [37.708043, 55.555229],\n            [37.707953, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.555319],\n            [37.707953, 55.555409],\n            [37.708043, 55.555409],\n            [37.708043, 55.555319],\n            [37.707953, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.555409],\n            [37.707953, 55.555499],\n            [37.708043, 55.555499],\n            [37.708043, 55.555409],\n            [37.707953, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.555499],\n            [37.707953, 55.555589],\n            [37.708043, 55.555589],\n            [37.708043, 55.555499],\n            [37.707953, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.555589],\n            [37.707953, 55.555679],\n            [37.708043, 55.555679],\n            [37.708043, 55.555589],\n            [37.707953, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.555679],\n            [37.707953, 55.555769],\n            [37.708043, 55.555769],\n            [37.708043, 55.555679],\n            [37.707953, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.555769],\n            [37.707953, 55.555859],\n            [37.708043, 55.555859],\n            [37.708043, 55.555769],\n            [37.707953, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.707953, 55.555859],\n            [37.707953, 55.555949],\n            [37.708043, 55.555949],\n            [37.708043, 55.555859],\n            [37.707953, 55.555859]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.553341],\n            [37.708043, 55.553431],\n            [37.708133, 55.553431],\n            [37.708133, 55.553341],\n            [37.708043, 55.553341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.553431],\n            [37.708043, 55.55352],\n            [37.708133, 55.55352],\n            [37.708133, 55.553431],\n            [37.708043, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.55352],\n            [37.708043, 55.55361],\n            [37.708133, 55.55361],\n            [37.708133, 55.55352],\n            [37.708043, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.55361],\n            [37.708043, 55.5537],\n            [37.708133, 55.5537],\n            [37.708133, 55.55361],\n            [37.708043, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.5537],\n            [37.708043, 55.55379],\n            [37.708133, 55.55379],\n            [37.708133, 55.5537],\n            [37.708043, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.55379],\n            [37.708043, 55.55388],\n            [37.708133, 55.55388],\n            [37.708133, 55.55379],\n            [37.708043, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.55388],\n            [37.708043, 55.55397],\n            [37.708133, 55.55397],\n            [37.708133, 55.55388],\n            [37.708043, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.55397],\n            [37.708043, 55.55406],\n            [37.708133, 55.55406],\n            [37.708133, 55.55397],\n            [37.708043, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.55406],\n            [37.708043, 55.55415],\n            [37.708133, 55.55415],\n            [37.708133, 55.55406],\n            [37.708043, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.55415],\n            [37.708043, 55.55424],\n            [37.708133, 55.55424],\n            [37.708133, 55.55415],\n            [37.708043, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.55424],\n            [37.708043, 55.55433],\n            [37.708133, 55.55433],\n            [37.708133, 55.55424],\n            [37.708043, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.55433],\n            [37.708043, 55.55442],\n            [37.708133, 55.55442],\n            [37.708133, 55.55433],\n            [37.708043, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.55442],\n            [37.708043, 55.55451],\n            [37.708133, 55.55451],\n            [37.708133, 55.55442],\n            [37.708043, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.55451],\n            [37.708043, 55.5546],\n            [37.708133, 55.5546],\n            [37.708133, 55.55451],\n            [37.708043, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.5546],\n            [37.708043, 55.55469],\n            [37.708133, 55.55469],\n            [37.708133, 55.5546],\n            [37.708043, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.55469],\n            [37.708043, 55.55478],\n            [37.708133, 55.55478],\n            [37.708133, 55.55469],\n            [37.708043, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.55478],\n            [37.708043, 55.554869],\n            [37.708133, 55.554869],\n            [37.708133, 55.55478],\n            [37.708043, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.554869],\n            [37.708043, 55.554959],\n            [37.708133, 55.554959],\n            [37.708133, 55.554869],\n            [37.708043, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.554959],\n            [37.708043, 55.555049],\n            [37.708133, 55.555049],\n            [37.708133, 55.554959],\n            [37.708043, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.555049],\n            [37.708043, 55.555139],\n            [37.708133, 55.555139],\n            [37.708133, 55.555049],\n            [37.708043, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.555139],\n            [37.708043, 55.555229],\n            [37.708133, 55.555229],\n            [37.708133, 55.555139],\n            [37.708043, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.555229],\n            [37.708043, 55.555319],\n            [37.708133, 55.555319],\n            [37.708133, 55.555229],\n            [37.708043, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.555319],\n            [37.708043, 55.555409],\n            [37.708133, 55.555409],\n            [37.708133, 55.555319],\n            [37.708043, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.555409],\n            [37.708043, 55.555499],\n            [37.708133, 55.555499],\n            [37.708133, 55.555409],\n            [37.708043, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.555499],\n            [37.708043, 55.555589],\n            [37.708133, 55.555589],\n            [37.708133, 55.555499],\n            [37.708043, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.555589],\n            [37.708043, 55.555679],\n            [37.708133, 55.555679],\n            [37.708133, 55.555589],\n            [37.708043, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.555679],\n            [37.708043, 55.555769],\n            [37.708133, 55.555769],\n            [37.708133, 55.555679],\n            [37.708043, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.555769],\n            [37.708043, 55.555859],\n            [37.708133, 55.555859],\n            [37.708133, 55.555769],\n            [37.708043, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.555859],\n            [37.708043, 55.555949],\n            [37.708133, 55.555949],\n            [37.708133, 55.555859],\n            [37.708043, 55.555859]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708043, 55.555949],\n            [37.708043, 55.556039],\n            [37.708133, 55.556039],\n            [37.708133, 55.555949],\n            [37.708043, 55.555949]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.553431],\n            [37.708133, 55.55352],\n            [37.708223, 55.55352],\n            [37.708223, 55.553431],\n            [37.708133, 55.553431]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.55352],\n            [37.708133, 55.55361],\n            [37.708223, 55.55361],\n            [37.708223, 55.55352],\n            [37.708133, 55.55352]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.55361],\n            [37.708133, 55.5537],\n            [37.708223, 55.5537],\n            [37.708223, 55.55361],\n            [37.708133, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.5537],\n            [37.708133, 55.55379],\n            [37.708223, 55.55379],\n            [37.708223, 55.5537],\n            [37.708133, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.55379],\n            [37.708133, 55.55388],\n            [37.708223, 55.55388],\n            [37.708223, 55.55379],\n            [37.708133, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.55388],\n            [37.708133, 55.55397],\n            [37.708223, 55.55397],\n            [37.708223, 55.55388],\n            [37.708133, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.55397],\n            [37.708133, 55.55406],\n            [37.708223, 55.55406],\n            [37.708223, 55.55397],\n            [37.708133, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.55406],\n            [37.708133, 55.55415],\n            [37.708223, 55.55415],\n            [37.708223, 55.55406],\n            [37.708133, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.55415],\n            [37.708133, 55.55424],\n            [37.708223, 55.55424],\n            [37.708223, 55.55415],\n            [37.708133, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.55424],\n            [37.708133, 55.55433],\n            [37.708223, 55.55433],\n            [37.708223, 55.55424],\n            [37.708133, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.55433],\n            [37.708133, 55.55442],\n            [37.708223, 55.55442],\n            [37.708223, 55.55433],\n            [37.708133, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.55442],\n            [37.708133, 55.55451],\n            [37.708223, 55.55451],\n            [37.708223, 55.55442],\n            [37.708133, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.55451],\n            [37.708133, 55.5546],\n            [37.708223, 55.5546],\n            [37.708223, 55.55451],\n            [37.708133, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.5546],\n            [37.708133, 55.55469],\n            [37.708223, 55.55469],\n            [37.708223, 55.5546],\n            [37.708133, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.55469],\n            [37.708133, 55.55478],\n            [37.708223, 55.55478],\n            [37.708223, 55.55469],\n            [37.708133, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.55478],\n            [37.708133, 55.554869],\n            [37.708223, 55.554869],\n            [37.708223, 55.55478],\n            [37.708133, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.554869],\n            [37.708133, 55.554959],\n            [37.708223, 55.554959],\n            [37.708223, 55.554869],\n            [37.708133, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.554959],\n            [37.708133, 55.555049],\n            [37.708223, 55.555049],\n            [37.708223, 55.554959],\n            [37.708133, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.555049],\n            [37.708133, 55.555139],\n            [37.708223, 55.555139],\n            [37.708223, 55.555049],\n            [37.708133, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.555139],\n            [37.708133, 55.555229],\n            [37.708223, 55.555229],\n            [37.708223, 55.555139],\n            [37.708133, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.555229],\n            [37.708133, 55.555319],\n            [37.708223, 55.555319],\n            [37.708223, 55.555229],\n            [37.708133, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.555319],\n            [37.708133, 55.555409],\n            [37.708223, 55.555409],\n            [37.708223, 55.555319],\n            [37.708133, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.555409],\n            [37.708133, 55.555499],\n            [37.708223, 55.555499],\n            [37.708223, 55.555409],\n            [37.708133, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.555499],\n            [37.708133, 55.555589],\n            [37.708223, 55.555589],\n            [37.708223, 55.555499],\n            [37.708133, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.555589],\n            [37.708133, 55.555679],\n            [37.708223, 55.555679],\n            [37.708223, 55.555589],\n            [37.708133, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.555679],\n            [37.708133, 55.555769],\n            [37.708223, 55.555769],\n            [37.708223, 55.555679],\n            [37.708133, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.555769],\n            [37.708133, 55.555859],\n            [37.708223, 55.555859],\n            [37.708223, 55.555769],\n            [37.708133, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.555859],\n            [37.708133, 55.555949],\n            [37.708223, 55.555949],\n            [37.708223, 55.555859],\n            [37.708133, 55.555859]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708133, 55.555949],\n            [37.708133, 55.556039],\n            [37.708223, 55.556039],\n            [37.708223, 55.555949],\n            [37.708133, 55.555949]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.55361],\n            [37.708223, 55.5537],\n            [37.708313, 55.5537],\n            [37.708313, 55.55361],\n            [37.708223, 55.55361]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.5537],\n            [37.708223, 55.55379],\n            [37.708313, 55.55379],\n            [37.708313, 55.5537],\n            [37.708223, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.55379],\n            [37.708223, 55.55388],\n            [37.708313, 55.55388],\n            [37.708313, 55.55379],\n            [37.708223, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.55388],\n            [37.708223, 55.55397],\n            [37.708313, 55.55397],\n            [37.708313, 55.55388],\n            [37.708223, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.55397],\n            [37.708223, 55.55406],\n            [37.708313, 55.55406],\n            [37.708313, 55.55397],\n            [37.708223, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.55406],\n            [37.708223, 55.55415],\n            [37.708313, 55.55415],\n            [37.708313, 55.55406],\n            [37.708223, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.55415],\n            [37.708223, 55.55424],\n            [37.708313, 55.55424],\n            [37.708313, 55.55415],\n            [37.708223, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.55424],\n            [37.708223, 55.55433],\n            [37.708313, 55.55433],\n            [37.708313, 55.55424],\n            [37.708223, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.55433],\n            [37.708223, 55.55442],\n            [37.708313, 55.55442],\n            [37.708313, 55.55433],\n            [37.708223, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.55442],\n            [37.708223, 55.55451],\n            [37.708313, 55.55451],\n            [37.708313, 55.55442],\n            [37.708223, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.55451],\n            [37.708223, 55.5546],\n            [37.708313, 55.5546],\n            [37.708313, 55.55451],\n            [37.708223, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.5546],\n            [37.708223, 55.55469],\n            [37.708313, 55.55469],\n            [37.708313, 55.5546],\n            [37.708223, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.55469],\n            [37.708223, 55.55478],\n            [37.708313, 55.55478],\n            [37.708313, 55.55469],\n            [37.708223, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.55478],\n            [37.708223, 55.554869],\n            [37.708313, 55.554869],\n            [37.708313, 55.55478],\n            [37.708223, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.554869],\n            [37.708223, 55.554959],\n            [37.708313, 55.554959],\n            [37.708313, 55.554869],\n            [37.708223, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.554959],\n            [37.708223, 55.555049],\n            [37.708313, 55.555049],\n            [37.708313, 55.554959],\n            [37.708223, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.555049],\n            [37.708223, 55.555139],\n            [37.708313, 55.555139],\n            [37.708313, 55.555049],\n            [37.708223, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.555139],\n            [37.708223, 55.555229],\n            [37.708313, 55.555229],\n            [37.708313, 55.555139],\n            [37.708223, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.555229],\n            [37.708223, 55.555319],\n            [37.708313, 55.555319],\n            [37.708313, 55.555229],\n            [37.708223, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.555319],\n            [37.708223, 55.555409],\n            [37.708313, 55.555409],\n            [37.708313, 55.555319],\n            [37.708223, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.555409],\n            [37.708223, 55.555499],\n            [37.708313, 55.555499],\n            [37.708313, 55.555409],\n            [37.708223, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.555499],\n            [37.708223, 55.555589],\n            [37.708313, 55.555589],\n            [37.708313, 55.555499],\n            [37.708223, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.555589],\n            [37.708223, 55.555679],\n            [37.708313, 55.555679],\n            [37.708313, 55.555589],\n            [37.708223, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.555679],\n            [37.708223, 55.555769],\n            [37.708313, 55.555769],\n            [37.708313, 55.555679],\n            [37.708223, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.555769],\n            [37.708223, 55.555859],\n            [37.708313, 55.555859],\n            [37.708313, 55.555769],\n            [37.708223, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.555859],\n            [37.708223, 55.555949],\n            [37.708313, 55.555949],\n            [37.708313, 55.555859],\n            [37.708223, 55.555859]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708223, 55.555949],\n            [37.708223, 55.556039],\n            [37.708313, 55.556039],\n            [37.708313, 55.555949],\n            [37.708223, 55.555949]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.5537],\n            [37.708313, 55.55379],\n            [37.708403, 55.55379],\n            [37.708403, 55.5537],\n            [37.708313, 55.5537]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.55379],\n            [37.708313, 55.55388],\n            [37.708403, 55.55388],\n            [37.708403, 55.55379],\n            [37.708313, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.55388],\n            [37.708313, 55.55397],\n            [37.708403, 55.55397],\n            [37.708403, 55.55388],\n            [37.708313, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.55397],\n            [37.708313, 55.55406],\n            [37.708403, 55.55406],\n            [37.708403, 55.55397],\n            [37.708313, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.55406],\n            [37.708313, 55.55415],\n            [37.708403, 55.55415],\n            [37.708403, 55.55406],\n            [37.708313, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.55415],\n            [37.708313, 55.55424],\n            [37.708403, 55.55424],\n            [37.708403, 55.55415],\n            [37.708313, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.55424],\n            [37.708313, 55.55433],\n            [37.708403, 55.55433],\n            [37.708403, 55.55424],\n            [37.708313, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.55433],\n            [37.708313, 55.55442],\n            [37.708403, 55.55442],\n            [37.708403, 55.55433],\n            [37.708313, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.55442],\n            [37.708313, 55.55451],\n            [37.708403, 55.55451],\n            [37.708403, 55.55442],\n            [37.708313, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.55451],\n            [37.708313, 55.5546],\n            [37.708403, 55.5546],\n            [37.708403, 55.55451],\n            [37.708313, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.5546],\n            [37.708313, 55.55469],\n            [37.708403, 55.55469],\n            [37.708403, 55.5546],\n            [37.708313, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.55469],\n            [37.708313, 55.55478],\n            [37.708403, 55.55478],\n            [37.708403, 55.55469],\n            [37.708313, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.55478],\n            [37.708313, 55.554869],\n            [37.708403, 55.554869],\n            [37.708403, 55.55478],\n            [37.708313, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.554869],\n            [37.708313, 55.554959],\n            [37.708403, 55.554959],\n            [37.708403, 55.554869],\n            [37.708313, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.554959],\n            [37.708313, 55.555049],\n            [37.708403, 55.555049],\n            [37.708403, 55.554959],\n            [37.708313, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.555049],\n            [37.708313, 55.555139],\n            [37.708403, 55.555139],\n            [37.708403, 55.555049],\n            [37.708313, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.555139],\n            [37.708313, 55.555229],\n            [37.708403, 55.555229],\n            [37.708403, 55.555139],\n            [37.708313, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.555229],\n            [37.708313, 55.555319],\n            [37.708403, 55.555319],\n            [37.708403, 55.555229],\n            [37.708313, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.555319],\n            [37.708313, 55.555409],\n            [37.708403, 55.555409],\n            [37.708403, 55.555319],\n            [37.708313, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.555409],\n            [37.708313, 55.555499],\n            [37.708403, 55.555499],\n            [37.708403, 55.555409],\n            [37.708313, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.555499],\n            [37.708313, 55.555589],\n            [37.708403, 55.555589],\n            [37.708403, 55.555499],\n            [37.708313, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.555589],\n            [37.708313, 55.555679],\n            [37.708403, 55.555679],\n            [37.708403, 55.555589],\n            [37.708313, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.555679],\n            [37.708313, 55.555769],\n            [37.708403, 55.555769],\n            [37.708403, 55.555679],\n            [37.708313, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.555769],\n            [37.708313, 55.555859],\n            [37.708403, 55.555859],\n            [37.708403, 55.555769],\n            [37.708313, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.555859],\n            [37.708313, 55.555949],\n            [37.708403, 55.555949],\n            [37.708403, 55.555859],\n            [37.708313, 55.555859]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708313, 55.555949],\n            [37.708313, 55.556039],\n            [37.708403, 55.556039],\n            [37.708403, 55.555949],\n            [37.708313, 55.555949]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.55379],\n            [37.708403, 55.55388],\n            [37.708493, 55.55388],\n            [37.708493, 55.55379],\n            [37.708403, 55.55379]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.55388],\n            [37.708403, 55.55397],\n            [37.708493, 55.55397],\n            [37.708493, 55.55388],\n            [37.708403, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.55397],\n            [37.708403, 55.55406],\n            [37.708493, 55.55406],\n            [37.708493, 55.55397],\n            [37.708403, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.55406],\n            [37.708403, 55.55415],\n            [37.708493, 55.55415],\n            [37.708493, 55.55406],\n            [37.708403, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.55415],\n            [37.708403, 55.55424],\n            [37.708493, 55.55424],\n            [37.708493, 55.55415],\n            [37.708403, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.55424],\n            [37.708403, 55.55433],\n            [37.708493, 55.55433],\n            [37.708493, 55.55424],\n            [37.708403, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.55433],\n            [37.708403, 55.55442],\n            [37.708493, 55.55442],\n            [37.708493, 55.55433],\n            [37.708403, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.55442],\n            [37.708403, 55.55451],\n            [37.708493, 55.55451],\n            [37.708493, 55.55442],\n            [37.708403, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.55451],\n            [37.708403, 55.5546],\n            [37.708493, 55.5546],\n            [37.708493, 55.55451],\n            [37.708403, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.5546],\n            [37.708403, 55.55469],\n            [37.708493, 55.55469],\n            [37.708493, 55.5546],\n            [37.708403, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.55469],\n            [37.708403, 55.55478],\n            [37.708493, 55.55478],\n            [37.708493, 55.55469],\n            [37.708403, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.55478],\n            [37.708403, 55.554869],\n            [37.708493, 55.554869],\n            [37.708493, 55.55478],\n            [37.708403, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.554869],\n            [37.708403, 55.554959],\n            [37.708493, 55.554959],\n            [37.708493, 55.554869],\n            [37.708403, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.554959],\n            [37.708403, 55.555049],\n            [37.708493, 55.555049],\n            [37.708493, 55.554959],\n            [37.708403, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.555049],\n            [37.708403, 55.555139],\n            [37.708493, 55.555139],\n            [37.708493, 55.555049],\n            [37.708403, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.555139],\n            [37.708403, 55.555229],\n            [37.708493, 55.555229],\n            [37.708493, 55.555139],\n            [37.708403, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.555229],\n            [37.708403, 55.555319],\n            [37.708493, 55.555319],\n            [37.708493, 55.555229],\n            [37.708403, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.555319],\n            [37.708403, 55.555409],\n            [37.708493, 55.555409],\n            [37.708493, 55.555319],\n            [37.708403, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.555409],\n            [37.708403, 55.555499],\n            [37.708493, 55.555499],\n            [37.708493, 55.555409],\n            [37.708403, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.555499],\n            [37.708403, 55.555589],\n            [37.708493, 55.555589],\n            [37.708493, 55.555499],\n            [37.708403, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.555589],\n            [37.708403, 55.555679],\n            [37.708493, 55.555679],\n            [37.708493, 55.555589],\n            [37.708403, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.555679],\n            [37.708403, 55.555769],\n            [37.708493, 55.555769],\n            [37.708493, 55.555679],\n            [37.708403, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.555769],\n            [37.708403, 55.555859],\n            [37.708493, 55.555859],\n            [37.708493, 55.555769],\n            [37.708403, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.555859],\n            [37.708403, 55.555949],\n            [37.708493, 55.555949],\n            [37.708493, 55.555859],\n            [37.708403, 55.555859]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.555949],\n            [37.708403, 55.556039],\n            [37.708493, 55.556039],\n            [37.708493, 55.555949],\n            [37.708403, 55.555949]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708403, 55.556039],\n            [37.708403, 55.556128],\n            [37.708493, 55.556128],\n            [37.708493, 55.556039],\n            [37.708403, 55.556039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.55388],\n            [37.708493, 55.55397],\n            [37.708582, 55.55397],\n            [37.708582, 55.55388],\n            [37.708493, 55.55388]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.55397],\n            [37.708493, 55.55406],\n            [37.708582, 55.55406],\n            [37.708582, 55.55397],\n            [37.708493, 55.55397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.55406],\n            [37.708493, 55.55415],\n            [37.708582, 55.55415],\n            [37.708582, 55.55406],\n            [37.708493, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.55415],\n            [37.708493, 55.55424],\n            [37.708582, 55.55424],\n            [37.708582, 55.55415],\n            [37.708493, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.55424],\n            [37.708493, 55.55433],\n            [37.708582, 55.55433],\n            [37.708582, 55.55424],\n            [37.708493, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.55433],\n            [37.708493, 55.55442],\n            [37.708582, 55.55442],\n            [37.708582, 55.55433],\n            [37.708493, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.55442],\n            [37.708493, 55.55451],\n            [37.708582, 55.55451],\n            [37.708582, 55.55442],\n            [37.708493, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.55451],\n            [37.708493, 55.5546],\n            [37.708582, 55.5546],\n            [37.708582, 55.55451],\n            [37.708493, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.5546],\n            [37.708493, 55.55469],\n            [37.708582, 55.55469],\n            [37.708582, 55.5546],\n            [37.708493, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.55469],\n            [37.708493, 55.55478],\n            [37.708582, 55.55478],\n            [37.708582, 55.55469],\n            [37.708493, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.55478],\n            [37.708493, 55.554869],\n            [37.708582, 55.554869],\n            [37.708582, 55.55478],\n            [37.708493, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.554869],\n            [37.708493, 55.554959],\n            [37.708582, 55.554959],\n            [37.708582, 55.554869],\n            [37.708493, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.554959],\n            [37.708493, 55.555049],\n            [37.708582, 55.555049],\n            [37.708582, 55.554959],\n            [37.708493, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.555049],\n            [37.708493, 55.555139],\n            [37.708582, 55.555139],\n            [37.708582, 55.555049],\n            [37.708493, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.555139],\n            [37.708493, 55.555229],\n            [37.708582, 55.555229],\n            [37.708582, 55.555139],\n            [37.708493, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.555229],\n            [37.708493, 55.555319],\n            [37.708582, 55.555319],\n            [37.708582, 55.555229],\n            [37.708493, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.555319],\n            [37.708493, 55.555409],\n            [37.708582, 55.555409],\n            [37.708582, 55.555319],\n            [37.708493, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.555409],\n            [37.708493, 55.555499],\n            [37.708582, 55.555499],\n            [37.708582, 55.555409],\n            [37.708493, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.555499],\n            [37.708493, 55.555589],\n            [37.708582, 55.555589],\n            [37.708582, 55.555499],\n            [37.708493, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.555589],\n            [37.708493, 55.555679],\n            [37.708582, 55.555679],\n            [37.708582, 55.555589],\n            [37.708493, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.555679],\n            [37.708493, 55.555769],\n            [37.708582, 55.555769],\n            [37.708582, 55.555679],\n            [37.708493, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.555769],\n            [37.708493, 55.555859],\n            [37.708582, 55.555859],\n            [37.708582, 55.555769],\n            [37.708493, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.555859],\n            [37.708493, 55.555949],\n            [37.708582, 55.555949],\n            [37.708582, 55.555859],\n            [37.708493, 55.555859]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.555949],\n            [37.708493, 55.556039],\n            [37.708582, 55.556039],\n            [37.708582, 55.555949],\n            [37.708493, 55.555949]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708493, 55.556039],\n            [37.708493, 55.556128],\n            [37.708582, 55.556128],\n            [37.708582, 55.556039],\n            [37.708493, 55.556039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.55406],\n            [37.708582, 55.55415],\n            [37.708672, 55.55415],\n            [37.708672, 55.55406],\n            [37.708582, 55.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.55415],\n            [37.708582, 55.55424],\n            [37.708672, 55.55424],\n            [37.708672, 55.55415],\n            [37.708582, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.55424],\n            [37.708582, 55.55433],\n            [37.708672, 55.55433],\n            [37.708672, 55.55424],\n            [37.708582, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.55433],\n            [37.708582, 55.55442],\n            [37.708672, 55.55442],\n            [37.708672, 55.55433],\n            [37.708582, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.55442],\n            [37.708582, 55.55451],\n            [37.708672, 55.55451],\n            [37.708672, 55.55442],\n            [37.708582, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.55451],\n            [37.708582, 55.5546],\n            [37.708672, 55.5546],\n            [37.708672, 55.55451],\n            [37.708582, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.5546],\n            [37.708582, 55.55469],\n            [37.708672, 55.55469],\n            [37.708672, 55.5546],\n            [37.708582, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.55469],\n            [37.708582, 55.55478],\n            [37.708672, 55.55478],\n            [37.708672, 55.55469],\n            [37.708582, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.55478],\n            [37.708582, 55.554869],\n            [37.708672, 55.554869],\n            [37.708672, 55.55478],\n            [37.708582, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.554869],\n            [37.708582, 55.554959],\n            [37.708672, 55.554959],\n            [37.708672, 55.554869],\n            [37.708582, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.554959],\n            [37.708582, 55.555049],\n            [37.708672, 55.555049],\n            [37.708672, 55.554959],\n            [37.708582, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.555049],\n            [37.708582, 55.555139],\n            [37.708672, 55.555139],\n            [37.708672, 55.555049],\n            [37.708582, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.555139],\n            [37.708582, 55.555229],\n            [37.708672, 55.555229],\n            [37.708672, 55.555139],\n            [37.708582, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.555229],\n            [37.708582, 55.555319],\n            [37.708672, 55.555319],\n            [37.708672, 55.555229],\n            [37.708582, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.555319],\n            [37.708582, 55.555409],\n            [37.708672, 55.555409],\n            [37.708672, 55.555319],\n            [37.708582, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.555409],\n            [37.708582, 55.555499],\n            [37.708672, 55.555499],\n            [37.708672, 55.555409],\n            [37.708582, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.555499],\n            [37.708582, 55.555589],\n            [37.708672, 55.555589],\n            [37.708672, 55.555499],\n            [37.708582, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.555589],\n            [37.708582, 55.555679],\n            [37.708672, 55.555679],\n            [37.708672, 55.555589],\n            [37.708582, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.555679],\n            [37.708582, 55.555769],\n            [37.708672, 55.555769],\n            [37.708672, 55.555679],\n            [37.708582, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.555769],\n            [37.708582, 55.555859],\n            [37.708672, 55.555859],\n            [37.708672, 55.555769],\n            [37.708582, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.555859],\n            [37.708582, 55.555949],\n            [37.708672, 55.555949],\n            [37.708672, 55.555859],\n            [37.708582, 55.555859]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.555949],\n            [37.708582, 55.556039],\n            [37.708672, 55.556039],\n            [37.708672, 55.555949],\n            [37.708582, 55.555949]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708582, 55.556039],\n            [37.708582, 55.556128],\n            [37.708672, 55.556128],\n            [37.708672, 55.556039],\n            [37.708582, 55.556039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.55415],\n            [37.708672, 55.55424],\n            [37.708762, 55.55424],\n            [37.708762, 55.55415],\n            [37.708672, 55.55415]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.55424],\n            [37.708672, 55.55433],\n            [37.708762, 55.55433],\n            [37.708762, 55.55424],\n            [37.708672, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.55433],\n            [37.708672, 55.55442],\n            [37.708762, 55.55442],\n            [37.708762, 55.55433],\n            [37.708672, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.55442],\n            [37.708672, 55.55451],\n            [37.708762, 55.55451],\n            [37.708762, 55.55442],\n            [37.708672, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.55451],\n            [37.708672, 55.5546],\n            [37.708762, 55.5546],\n            [37.708762, 55.55451],\n            [37.708672, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.5546],\n            [37.708672, 55.55469],\n            [37.708762, 55.55469],\n            [37.708762, 55.5546],\n            [37.708672, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.55469],\n            [37.708672, 55.55478],\n            [37.708762, 55.55478],\n            [37.708762, 55.55469],\n            [37.708672, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.55478],\n            [37.708672, 55.554869],\n            [37.708762, 55.554869],\n            [37.708762, 55.55478],\n            [37.708672, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.554869],\n            [37.708672, 55.554959],\n            [37.708762, 55.554959],\n            [37.708762, 55.554869],\n            [37.708672, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.554959],\n            [37.708672, 55.555049],\n            [37.708762, 55.555049],\n            [37.708762, 55.554959],\n            [37.708672, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.555049],\n            [37.708672, 55.555139],\n            [37.708762, 55.555139],\n            [37.708762, 55.555049],\n            [37.708672, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.555139],\n            [37.708672, 55.555229],\n            [37.708762, 55.555229],\n            [37.708762, 55.555139],\n            [37.708672, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.555229],\n            [37.708672, 55.555319],\n            [37.708762, 55.555319],\n            [37.708762, 55.555229],\n            [37.708672, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.555319],\n            [37.708672, 55.555409],\n            [37.708762, 55.555409],\n            [37.708762, 55.555319],\n            [37.708672, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.555409],\n            [37.708672, 55.555499],\n            [37.708762, 55.555499],\n            [37.708762, 55.555409],\n            [37.708672, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.555499],\n            [37.708672, 55.555589],\n            [37.708762, 55.555589],\n            [37.708762, 55.555499],\n            [37.708672, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.555589],\n            [37.708672, 55.555679],\n            [37.708762, 55.555679],\n            [37.708762, 55.555589],\n            [37.708672, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.555679],\n            [37.708672, 55.555769],\n            [37.708762, 55.555769],\n            [37.708762, 55.555679],\n            [37.708672, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.555769],\n            [37.708672, 55.555859],\n            [37.708762, 55.555859],\n            [37.708762, 55.555769],\n            [37.708672, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.555859],\n            [37.708672, 55.555949],\n            [37.708762, 55.555949],\n            [37.708762, 55.555859],\n            [37.708672, 55.555859]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.555949],\n            [37.708672, 55.556039],\n            [37.708762, 55.556039],\n            [37.708762, 55.555949],\n            [37.708672, 55.555949]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708672, 55.556039],\n            [37.708672, 55.556128],\n            [37.708762, 55.556128],\n            [37.708762, 55.556039],\n            [37.708672, 55.556039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.55424],\n            [37.708762, 55.55433],\n            [37.708852, 55.55433],\n            [37.708852, 55.55424],\n            [37.708762, 55.55424]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.55433],\n            [37.708762, 55.55442],\n            [37.708852, 55.55442],\n            [37.708852, 55.55433],\n            [37.708762, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.55442],\n            [37.708762, 55.55451],\n            [37.708852, 55.55451],\n            [37.708852, 55.55442],\n            [37.708762, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.55451],\n            [37.708762, 55.5546],\n            [37.708852, 55.5546],\n            [37.708852, 55.55451],\n            [37.708762, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.5546],\n            [37.708762, 55.55469],\n            [37.708852, 55.55469],\n            [37.708852, 55.5546],\n            [37.708762, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.55469],\n            [37.708762, 55.55478],\n            [37.708852, 55.55478],\n            [37.708852, 55.55469],\n            [37.708762, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.55478],\n            [37.708762, 55.554869],\n            [37.708852, 55.554869],\n            [37.708852, 55.55478],\n            [37.708762, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.554869],\n            [37.708762, 55.554959],\n            [37.708852, 55.554959],\n            [37.708852, 55.554869],\n            [37.708762, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.554959],\n            [37.708762, 55.555049],\n            [37.708852, 55.555049],\n            [37.708852, 55.554959],\n            [37.708762, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.555049],\n            [37.708762, 55.555139],\n            [37.708852, 55.555139],\n            [37.708852, 55.555049],\n            [37.708762, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.555139],\n            [37.708762, 55.555229],\n            [37.708852, 55.555229],\n            [37.708852, 55.555139],\n            [37.708762, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.555229],\n            [37.708762, 55.555319],\n            [37.708852, 55.555319],\n            [37.708852, 55.555229],\n            [37.708762, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.555319],\n            [37.708762, 55.555409],\n            [37.708852, 55.555409],\n            [37.708852, 55.555319],\n            [37.708762, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.555409],\n            [37.708762, 55.555499],\n            [37.708852, 55.555499],\n            [37.708852, 55.555409],\n            [37.708762, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.555499],\n            [37.708762, 55.555589],\n            [37.708852, 55.555589],\n            [37.708852, 55.555499],\n            [37.708762, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.555589],\n            [37.708762, 55.555679],\n            [37.708852, 55.555679],\n            [37.708852, 55.555589],\n            [37.708762, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.555679],\n            [37.708762, 55.555769],\n            [37.708852, 55.555769],\n            [37.708852, 55.555679],\n            [37.708762, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.555769],\n            [37.708762, 55.555859],\n            [37.708852, 55.555859],\n            [37.708852, 55.555769],\n            [37.708762, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.555859],\n            [37.708762, 55.555949],\n            [37.708852, 55.555949],\n            [37.708852, 55.555859],\n            [37.708762, 55.555859]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.555949],\n            [37.708762, 55.556039],\n            [37.708852, 55.556039],\n            [37.708852, 55.555949],\n            [37.708762, 55.555949]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708762, 55.556039],\n            [37.708762, 55.556128],\n            [37.708852, 55.556128],\n            [37.708852, 55.556039],\n            [37.708762, 55.556039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.55433],\n            [37.708852, 55.55442],\n            [37.708942, 55.55442],\n            [37.708942, 55.55433],\n            [37.708852, 55.55433]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.55442],\n            [37.708852, 55.55451],\n            [37.708942, 55.55451],\n            [37.708942, 55.55442],\n            [37.708852, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.55451],\n            [37.708852, 55.5546],\n            [37.708942, 55.5546],\n            [37.708942, 55.55451],\n            [37.708852, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.5546],\n            [37.708852, 55.55469],\n            [37.708942, 55.55469],\n            [37.708942, 55.5546],\n            [37.708852, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.55469],\n            [37.708852, 55.55478],\n            [37.708942, 55.55478],\n            [37.708942, 55.55469],\n            [37.708852, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.55478],\n            [37.708852, 55.554869],\n            [37.708942, 55.554869],\n            [37.708942, 55.55478],\n            [37.708852, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.554869],\n            [37.708852, 55.554959],\n            [37.708942, 55.554959],\n            [37.708942, 55.554869],\n            [37.708852, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.554959],\n            [37.708852, 55.555049],\n            [37.708942, 55.555049],\n            [37.708942, 55.554959],\n            [37.708852, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.555049],\n            [37.708852, 55.555139],\n            [37.708942, 55.555139],\n            [37.708942, 55.555049],\n            [37.708852, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.555139],\n            [37.708852, 55.555229],\n            [37.708942, 55.555229],\n            [37.708942, 55.555139],\n            [37.708852, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.555229],\n            [37.708852, 55.555319],\n            [37.708942, 55.555319],\n            [37.708942, 55.555229],\n            [37.708852, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.555319],\n            [37.708852, 55.555409],\n            [37.708942, 55.555409],\n            [37.708942, 55.555319],\n            [37.708852, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.555409],\n            [37.708852, 55.555499],\n            [37.708942, 55.555499],\n            [37.708942, 55.555409],\n            [37.708852, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.555499],\n            [37.708852, 55.555589],\n            [37.708942, 55.555589],\n            [37.708942, 55.555499],\n            [37.708852, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.555589],\n            [37.708852, 55.555679],\n            [37.708942, 55.555679],\n            [37.708942, 55.555589],\n            [37.708852, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.555679],\n            [37.708852, 55.555769],\n            [37.708942, 55.555769],\n            [37.708942, 55.555679],\n            [37.708852, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.555769],\n            [37.708852, 55.555859],\n            [37.708942, 55.555859],\n            [37.708942, 55.555769],\n            [37.708852, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.555859],\n            [37.708852, 55.555949],\n            [37.708942, 55.555949],\n            [37.708942, 55.555859],\n            [37.708852, 55.555859]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.555949],\n            [37.708852, 55.556039],\n            [37.708942, 55.556039],\n            [37.708942, 55.555949],\n            [37.708852, 55.555949]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708852, 55.556039],\n            [37.708852, 55.556128],\n            [37.708942, 55.556128],\n            [37.708942, 55.556039],\n            [37.708852, 55.556039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.55442],\n            [37.708942, 55.55451],\n            [37.709032, 55.55451],\n            [37.709032, 55.55442],\n            [37.708942, 55.55442]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.55451],\n            [37.708942, 55.5546],\n            [37.709032, 55.5546],\n            [37.709032, 55.55451],\n            [37.708942, 55.55451]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.5546],\n            [37.708942, 55.55469],\n            [37.709032, 55.55469],\n            [37.709032, 55.5546],\n            [37.708942, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.55469],\n            [37.708942, 55.55478],\n            [37.709032, 55.55478],\n            [37.709032, 55.55469],\n            [37.708942, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.55478],\n            [37.708942, 55.554869],\n            [37.709032, 55.554869],\n            [37.709032, 55.55478],\n            [37.708942, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.554869],\n            [37.708942, 55.554959],\n            [37.709032, 55.554959],\n            [37.709032, 55.554869],\n            [37.708942, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.554959],\n            [37.708942, 55.555049],\n            [37.709032, 55.555049],\n            [37.709032, 55.554959],\n            [37.708942, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.555049],\n            [37.708942, 55.555139],\n            [37.709032, 55.555139],\n            [37.709032, 55.555049],\n            [37.708942, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.555139],\n            [37.708942, 55.555229],\n            [37.709032, 55.555229],\n            [37.709032, 55.555139],\n            [37.708942, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.555229],\n            [37.708942, 55.555319],\n            [37.709032, 55.555319],\n            [37.709032, 55.555229],\n            [37.708942, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.555319],\n            [37.708942, 55.555409],\n            [37.709032, 55.555409],\n            [37.709032, 55.555319],\n            [37.708942, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.555409],\n            [37.708942, 55.555499],\n            [37.709032, 55.555499],\n            [37.709032, 55.555409],\n            [37.708942, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.555499],\n            [37.708942, 55.555589],\n            [37.709032, 55.555589],\n            [37.709032, 55.555499],\n            [37.708942, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.555589],\n            [37.708942, 55.555679],\n            [37.709032, 55.555679],\n            [37.709032, 55.555589],\n            [37.708942, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.555679],\n            [37.708942, 55.555769],\n            [37.709032, 55.555769],\n            [37.709032, 55.555679],\n            [37.708942, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.555769],\n            [37.708942, 55.555859],\n            [37.709032, 55.555859],\n            [37.709032, 55.555769],\n            [37.708942, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.555859],\n            [37.708942, 55.555949],\n            [37.709032, 55.555949],\n            [37.709032, 55.555859],\n            [37.708942, 55.555859]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.555949],\n            [37.708942, 55.556039],\n            [37.709032, 55.556039],\n            [37.709032, 55.555949],\n            [37.708942, 55.555949]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.708942, 55.556039],\n            [37.708942, 55.556128],\n            [37.709032, 55.556128],\n            [37.709032, 55.556039],\n            [37.708942, 55.556039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709032, 55.5546],\n            [37.709032, 55.55469],\n            [37.709122, 55.55469],\n            [37.709122, 55.5546],\n            [37.709032, 55.5546]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709032, 55.55469],\n            [37.709032, 55.55478],\n            [37.709122, 55.55478],\n            [37.709122, 55.55469],\n            [37.709032, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709032, 55.55478],\n            [37.709032, 55.554869],\n            [37.709122, 55.554869],\n            [37.709122, 55.55478],\n            [37.709032, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709032, 55.554869],\n            [37.709032, 55.554959],\n            [37.709122, 55.554959],\n            [37.709122, 55.554869],\n            [37.709032, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709032, 55.554959],\n            [37.709032, 55.555049],\n            [37.709122, 55.555049],\n            [37.709122, 55.554959],\n            [37.709032, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709032, 55.555049],\n            [37.709032, 55.555139],\n            [37.709122, 55.555139],\n            [37.709122, 55.555049],\n            [37.709032, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709032, 55.555139],\n            [37.709032, 55.555229],\n            [37.709122, 55.555229],\n            [37.709122, 55.555139],\n            [37.709032, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709032, 55.555229],\n            [37.709032, 55.555319],\n            [37.709122, 55.555319],\n            [37.709122, 55.555229],\n            [37.709032, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709032, 55.555319],\n            [37.709032, 55.555409],\n            [37.709122, 55.555409],\n            [37.709122, 55.555319],\n            [37.709032, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709032, 55.555409],\n            [37.709032, 55.555499],\n            [37.709122, 55.555499],\n            [37.709122, 55.555409],\n            [37.709032, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709032, 55.555499],\n            [37.709032, 55.555589],\n            [37.709122, 55.555589],\n            [37.709122, 55.555499],\n            [37.709032, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709032, 55.555589],\n            [37.709032, 55.555679],\n            [37.709122, 55.555679],\n            [37.709122, 55.555589],\n            [37.709032, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709032, 55.555679],\n            [37.709032, 55.555769],\n            [37.709122, 55.555769],\n            [37.709122, 55.555679],\n            [37.709032, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709032, 55.555769],\n            [37.709032, 55.555859],\n            [37.709122, 55.555859],\n            [37.709122, 55.555769],\n            [37.709032, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709032, 55.555859],\n            [37.709032, 55.555949],\n            [37.709122, 55.555949],\n            [37.709122, 55.555859],\n            [37.709032, 55.555859]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709032, 55.555949],\n            [37.709032, 55.556039],\n            [37.709122, 55.556039],\n            [37.709122, 55.555949],\n            [37.709032, 55.555949]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709122, 55.55469],\n            [37.709122, 55.55478],\n            [37.709212, 55.55478],\n            [37.709212, 55.55469],\n            [37.709122, 55.55469]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709122, 55.55478],\n            [37.709122, 55.554869],\n            [37.709212, 55.554869],\n            [37.709212, 55.55478],\n            [37.709122, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709122, 55.554869],\n            [37.709122, 55.554959],\n            [37.709212, 55.554959],\n            [37.709212, 55.554869],\n            [37.709122, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709122, 55.554959],\n            [37.709122, 55.555049],\n            [37.709212, 55.555049],\n            [37.709212, 55.554959],\n            [37.709122, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709122, 55.555049],\n            [37.709122, 55.555139],\n            [37.709212, 55.555139],\n            [37.709212, 55.555049],\n            [37.709122, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709122, 55.555139],\n            [37.709122, 55.555229],\n            [37.709212, 55.555229],\n            [37.709212, 55.555139],\n            [37.709122, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709122, 55.555229],\n            [37.709122, 55.555319],\n            [37.709212, 55.555319],\n            [37.709212, 55.555229],\n            [37.709122, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709122, 55.555319],\n            [37.709122, 55.555409],\n            [37.709212, 55.555409],\n            [37.709212, 55.555319],\n            [37.709122, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709122, 55.555409],\n            [37.709122, 55.555499],\n            [37.709212, 55.555499],\n            [37.709212, 55.555409],\n            [37.709122, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709122, 55.555499],\n            [37.709122, 55.555589],\n            [37.709212, 55.555589],\n            [37.709212, 55.555499],\n            [37.709122, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709122, 55.555589],\n            [37.709122, 55.555679],\n            [37.709212, 55.555679],\n            [37.709212, 55.555589],\n            [37.709122, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709122, 55.555679],\n            [37.709122, 55.555769],\n            [37.709212, 55.555769],\n            [37.709212, 55.555679],\n            [37.709122, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709122, 55.555769],\n            [37.709122, 55.555859],\n            [37.709212, 55.555859],\n            [37.709212, 55.555769],\n            [37.709122, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709122, 55.555859],\n            [37.709122, 55.555949],\n            [37.709212, 55.555949],\n            [37.709212, 55.555859],\n            [37.709122, 55.555859]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709212, 55.55478],\n            [37.709212, 55.554869],\n            [37.709302, 55.554869],\n            [37.709302, 55.55478],\n            [37.709212, 55.55478]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709212, 55.554869],\n            [37.709212, 55.554959],\n            [37.709302, 55.554959],\n            [37.709302, 55.554869],\n            [37.709212, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709212, 55.554959],\n            [37.709212, 55.555049],\n            [37.709302, 55.555049],\n            [37.709302, 55.554959],\n            [37.709212, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709212, 55.555049],\n            [37.709212, 55.555139],\n            [37.709302, 55.555139],\n            [37.709302, 55.555049],\n            [37.709212, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709212, 55.555139],\n            [37.709212, 55.555229],\n            [37.709302, 55.555229],\n            [37.709302, 55.555139],\n            [37.709212, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709212, 55.555229],\n            [37.709212, 55.555319],\n            [37.709302, 55.555319],\n            [37.709302, 55.555229],\n            [37.709212, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709212, 55.555319],\n            [37.709212, 55.555409],\n            [37.709302, 55.555409],\n            [37.709302, 55.555319],\n            [37.709212, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709212, 55.555409],\n            [37.709212, 55.555499],\n            [37.709302, 55.555499],\n            [37.709302, 55.555409],\n            [37.709212, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709212, 55.555499],\n            [37.709212, 55.555589],\n            [37.709302, 55.555589],\n            [37.709302, 55.555499],\n            [37.709212, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709212, 55.555589],\n            [37.709212, 55.555679],\n            [37.709302, 55.555679],\n            [37.709302, 55.555589],\n            [37.709212, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709212, 55.555679],\n            [37.709212, 55.555769],\n            [37.709302, 55.555769],\n            [37.709302, 55.555679],\n            [37.709212, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709212, 55.555769],\n            [37.709212, 55.555859],\n            [37.709302, 55.555859],\n            [37.709302, 55.555769],\n            [37.709212, 55.555769]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709212, 55.555859],\n            [37.709212, 55.555949],\n            [37.709302, 55.555949],\n            [37.709302, 55.555859],\n            [37.709212, 55.555859]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709302, 55.554869],\n            [37.709302, 55.554959],\n            [37.709392, 55.554959],\n            [37.709392, 55.554869],\n            [37.709302, 55.554869]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709302, 55.554959],\n            [37.709302, 55.555049],\n            [37.709392, 55.555049],\n            [37.709392, 55.554959],\n            [37.709302, 55.554959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709302, 55.555049],\n            [37.709302, 55.555139],\n            [37.709392, 55.555139],\n            [37.709392, 55.555049],\n            [37.709302, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709302, 55.555139],\n            [37.709302, 55.555229],\n            [37.709392, 55.555229],\n            [37.709392, 55.555139],\n            [37.709302, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709302, 55.555229],\n            [37.709302, 55.555319],\n            [37.709392, 55.555319],\n            [37.709392, 55.555229],\n            [37.709302, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709302, 55.555319],\n            [37.709302, 55.555409],\n            [37.709392, 55.555409],\n            [37.709392, 55.555319],\n            [37.709302, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709302, 55.555409],\n            [37.709302, 55.555499],\n            [37.709392, 55.555499],\n            [37.709392, 55.555409],\n            [37.709302, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709302, 55.555499],\n            [37.709302, 55.555589],\n            [37.709392, 55.555589],\n            [37.709392, 55.555499],\n            [37.709302, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709302, 55.555589],\n            [37.709302, 55.555679],\n            [37.709392, 55.555679],\n            [37.709392, 55.555589],\n            [37.709302, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709302, 55.555679],\n            [37.709302, 55.555769],\n            [37.709392, 55.555769],\n            [37.709392, 55.555679],\n            [37.709302, 55.555679]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709392, 55.555049],\n            [37.709392, 55.555139],\n            [37.709482, 55.555139],\n            [37.709482, 55.555049],\n            [37.709392, 55.555049]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709392, 55.555139],\n            [37.709392, 55.555229],\n            [37.709482, 55.555229],\n            [37.709482, 55.555139],\n            [37.709392, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709392, 55.555229],\n            [37.709392, 55.555319],\n            [37.709482, 55.555319],\n            [37.709482, 55.555229],\n            [37.709392, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709392, 55.555319],\n            [37.709392, 55.555409],\n            [37.709482, 55.555409],\n            [37.709482, 55.555319],\n            [37.709392, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709392, 55.555409],\n            [37.709392, 55.555499],\n            [37.709482, 55.555499],\n            [37.709482, 55.555409],\n            [37.709392, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709392, 55.555499],\n            [37.709392, 55.555589],\n            [37.709482, 55.555589],\n            [37.709482, 55.555499],\n            [37.709392, 55.555499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709392, 55.555589],\n            [37.709392, 55.555679],\n            [37.709482, 55.555679],\n            [37.709482, 55.555589],\n            [37.709392, 55.555589]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709482, 55.555139],\n            [37.709482, 55.555229],\n            [37.709572, 55.555229],\n            [37.709572, 55.555139],\n            [37.709482, 55.555139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709482, 55.555229],\n            [37.709482, 55.555319],\n            [37.709572, 55.555319],\n            [37.709572, 55.555229],\n            [37.709482, 55.555229]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709482, 55.555319],\n            [37.709482, 55.555409],\n            [37.709572, 55.555409],\n            [37.709572, 55.555319],\n            [37.709482, 55.555319]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.709482, 55.555409],\n            [37.709482, 55.555499],\n            [37.709572, 55.555499],\n            [37.709572, 55.555409],\n            [37.709482, 55.555409]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [\n        37.69975662231445, 55.55151096909941, 37.70958423614502, 55.55615949302079\n      ],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.69975662231445, 55.55151096909941],\n            [37.70958423614502, 55.55151096909941],\n            [37.70958423614502, 55.55615949302079],\n            [37.69975662231445, 55.55615949302079],\n            [37.69975662231445, 55.55151096909941]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [37.70651578903198, 55.55151096909941],\n            [37.70958423614502, 55.555297797727704],\n            [37.709230184555054, 55.555850013083],\n            [37.70885467529296, 55.55615949302079],\n            [37.70013213157654, 55.55376247689539],\n            [37.69975662231445, 55.55329519343182],\n            [37.70651578903198, 55.55151096909941]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-square-grid/test/out/london-20-miles.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.524832, 51.358112],\n            [-0.524832, 51.647575],\n            [-0.235369, 51.647575],\n            [-0.235369, 51.358112],\n            [-0.524832, 51.358112]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.235369, 51.358112],\n            [-0.235369, 51.647575],\n            [0.054094, 51.647575],\n            [0.054094, 51.358112],\n            [-0.235369, 51.358112]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.054094, 51.358112],\n            [0.054094, 51.647575],\n            [0.343558, 51.647575],\n            [0.343558, 51.358112],\n            [0.054094, 51.358112]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6207275390625, 51.23784668914442],\n            [0.439453125, 51.23784668914442],\n            [0.439453125, 51.767839887322154],\n            [-0.6207275390625, 51.767839887322154],\n            [-0.6207275390625, 51.23784668914442]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-square-grid/test/out/piedemont-mask.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.460094, 45.009611],\n            [6.460094, 45.190526],\n            [6.641008, 45.190526],\n            [6.641008, 45.009611],\n            [6.460094, 45.009611]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.641008, 44.828697],\n            [6.641008, 45.009611],\n            [6.821923, 45.009611],\n            [6.821923, 44.828697],\n            [6.641008, 44.828697]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.641008, 45.009611],\n            [6.641008, 45.190526],\n            [6.821923, 45.190526],\n            [6.821923, 45.009611],\n            [6.641008, 45.009611]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.821923, 44.105039],\n            [6.821923, 44.285953],\n            [7.002837, 44.285953],\n            [7.002837, 44.105039],\n            [6.821923, 44.105039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.821923, 44.285953],\n            [6.821923, 44.466868],\n            [7.002837, 44.466868],\n            [7.002837, 44.285953],\n            [6.821923, 44.285953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.821923, 44.466868],\n            [6.821923, 44.647782],\n            [7.002837, 44.647782],\n            [7.002837, 44.466868],\n            [6.821923, 44.466868]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.821923, 44.647782],\n            [6.821923, 44.828697],\n            [7.002837, 44.828697],\n            [7.002837, 44.647782],\n            [6.821923, 44.647782]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.821923, 44.828697],\n            [6.821923, 45.009611],\n            [7.002837, 45.009611],\n            [7.002837, 44.828697],\n            [6.821923, 44.828697]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.821923, 45.009611],\n            [6.821923, 45.190526],\n            [7.002837, 45.190526],\n            [7.002837, 45.009611],\n            [6.821923, 45.009611]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.821923, 45.190526],\n            [6.821923, 45.37144],\n            [7.002837, 45.37144],\n            [7.002837, 45.190526],\n            [6.821923, 45.190526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.002837, 44.105039],\n            [7.002837, 44.285953],\n            [7.183752, 44.285953],\n            [7.183752, 44.105039],\n            [7.002837, 44.105039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.002837, 44.285953],\n            [7.002837, 44.466868],\n            [7.183752, 44.466868],\n            [7.183752, 44.285953],\n            [7.002837, 44.285953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.002837, 44.466868],\n            [7.002837, 44.647782],\n            [7.183752, 44.647782],\n            [7.183752, 44.466868],\n            [7.002837, 44.466868]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.002837, 44.647782],\n            [7.002837, 44.828697],\n            [7.183752, 44.828697],\n            [7.183752, 44.647782],\n            [7.002837, 44.647782]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.002837, 44.828697],\n            [7.002837, 45.009611],\n            [7.183752, 45.009611],\n            [7.183752, 44.828697],\n            [7.002837, 44.828697]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.002837, 45.009611],\n            [7.002837, 45.190526],\n            [7.183752, 45.190526],\n            [7.183752, 45.009611],\n            [7.002837, 45.009611]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.002837, 45.190526],\n            [7.002837, 45.37144],\n            [7.183752, 45.37144],\n            [7.183752, 45.190526],\n            [7.002837, 45.190526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.002837, 45.37144],\n            [7.002837, 45.552355],\n            [7.183752, 45.552355],\n            [7.183752, 45.37144],\n            [7.002837, 45.37144]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.183752, 44.105039],\n            [7.183752, 44.285953],\n            [7.364666, 44.285953],\n            [7.364666, 44.105039],\n            [7.183752, 44.105039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.183752, 44.285953],\n            [7.183752, 44.466868],\n            [7.364666, 44.466868],\n            [7.364666, 44.285953],\n            [7.183752, 44.285953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.183752, 44.466868],\n            [7.183752, 44.647782],\n            [7.364666, 44.647782],\n            [7.364666, 44.466868],\n            [7.183752, 44.466868]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.183752, 44.647782],\n            [7.183752, 44.828697],\n            [7.364666, 44.828697],\n            [7.364666, 44.647782],\n            [7.183752, 44.647782]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.183752, 44.828697],\n            [7.183752, 45.009611],\n            [7.364666, 45.009611],\n            [7.364666, 44.828697],\n            [7.183752, 44.828697]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.183752, 45.009611],\n            [7.183752, 45.190526],\n            [7.364666, 45.190526],\n            [7.364666, 45.009611],\n            [7.183752, 45.009611]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.183752, 45.190526],\n            [7.183752, 45.37144],\n            [7.364666, 45.37144],\n            [7.364666, 45.190526],\n            [7.183752, 45.190526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.183752, 45.37144],\n            [7.183752, 45.552355],\n            [7.364666, 45.552355],\n            [7.364666, 45.37144],\n            [7.183752, 45.37144]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.364666, 44.105039],\n            [7.364666, 44.285953],\n            [7.545581, 44.285953],\n            [7.545581, 44.105039],\n            [7.364666, 44.105039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.364666, 44.285953],\n            [7.364666, 44.466868],\n            [7.545581, 44.466868],\n            [7.545581, 44.285953],\n            [7.364666, 44.285953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.364666, 44.466868],\n            [7.364666, 44.647782],\n            [7.545581, 44.647782],\n            [7.545581, 44.466868],\n            [7.364666, 44.466868]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.364666, 44.647782],\n            [7.364666, 44.828697],\n            [7.545581, 44.828697],\n            [7.545581, 44.647782],\n            [7.364666, 44.647782]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.364666, 44.828697],\n            [7.364666, 45.009611],\n            [7.545581, 45.009611],\n            [7.545581, 44.828697],\n            [7.364666, 44.828697]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.364666, 45.009611],\n            [7.364666, 45.190526],\n            [7.545581, 45.190526],\n            [7.545581, 45.009611],\n            [7.364666, 45.009611]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.364666, 45.190526],\n            [7.364666, 45.37144],\n            [7.545581, 45.37144],\n            [7.545581, 45.190526],\n            [7.364666, 45.190526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.364666, 45.37144],\n            [7.364666, 45.552355],\n            [7.545581, 45.552355],\n            [7.545581, 45.37144],\n            [7.364666, 45.37144]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.364666, 45.552355],\n            [7.364666, 45.733269],\n            [7.545581, 45.733269],\n            [7.545581, 45.552355],\n            [7.364666, 45.552355]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.545581, 44.105039],\n            [7.545581, 44.285953],\n            [7.726495, 44.285953],\n            [7.726495, 44.105039],\n            [7.545581, 44.105039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.545581, 44.285953],\n            [7.545581, 44.466868],\n            [7.726495, 44.466868],\n            [7.726495, 44.285953],\n            [7.545581, 44.285953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.545581, 44.466868],\n            [7.545581, 44.647782],\n            [7.726495, 44.647782],\n            [7.726495, 44.466868],\n            [7.545581, 44.466868]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.545581, 44.647782],\n            [7.545581, 44.828697],\n            [7.726495, 44.828697],\n            [7.726495, 44.647782],\n            [7.545581, 44.647782]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.545581, 44.828697],\n            [7.545581, 45.009611],\n            [7.726495, 45.009611],\n            [7.726495, 44.828697],\n            [7.545581, 44.828697]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.545581, 45.009611],\n            [7.545581, 45.190526],\n            [7.726495, 45.190526],\n            [7.726495, 45.009611],\n            [7.545581, 45.009611]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.545581, 45.190526],\n            [7.545581, 45.37144],\n            [7.726495, 45.37144],\n            [7.726495, 45.190526],\n            [7.545581, 45.190526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.545581, 45.37144],\n            [7.545581, 45.552355],\n            [7.726495, 45.552355],\n            [7.726495, 45.37144],\n            [7.545581, 45.37144]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.545581, 45.552355],\n            [7.545581, 45.733269],\n            [7.726495, 45.733269],\n            [7.726495, 45.552355],\n            [7.545581, 45.552355]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.726495, 44.105039],\n            [7.726495, 44.285953],\n            [7.90741, 44.285953],\n            [7.90741, 44.105039],\n            [7.726495, 44.105039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.726495, 44.285953],\n            [7.726495, 44.466868],\n            [7.90741, 44.466868],\n            [7.90741, 44.285953],\n            [7.726495, 44.285953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.726495, 44.466868],\n            [7.726495, 44.647782],\n            [7.90741, 44.647782],\n            [7.90741, 44.466868],\n            [7.726495, 44.466868]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.726495, 44.647782],\n            [7.726495, 44.828697],\n            [7.90741, 44.828697],\n            [7.90741, 44.647782],\n            [7.726495, 44.647782]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.726495, 44.828697],\n            [7.726495, 45.009611],\n            [7.90741, 45.009611],\n            [7.90741, 44.828697],\n            [7.726495, 44.828697]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.726495, 45.009611],\n            [7.726495, 45.190526],\n            [7.90741, 45.190526],\n            [7.90741, 45.009611],\n            [7.726495, 45.009611]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.726495, 45.190526],\n            [7.726495, 45.37144],\n            [7.90741, 45.37144],\n            [7.90741, 45.190526],\n            [7.726495, 45.190526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.726495, 45.37144],\n            [7.726495, 45.552355],\n            [7.90741, 45.552355],\n            [7.90741, 45.37144],\n            [7.726495, 45.37144]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.726495, 45.552355],\n            [7.726495, 45.733269],\n            [7.90741, 45.733269],\n            [7.90741, 45.552355],\n            [7.726495, 45.552355]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.726495, 45.733269],\n            [7.726495, 45.914184],\n            [7.90741, 45.914184],\n            [7.90741, 45.733269],\n            [7.726495, 45.733269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.726495, 45.914184],\n            [7.726495, 46.095098],\n            [7.90741, 46.095098],\n            [7.90741, 45.914184],\n            [7.726495, 45.914184]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.90741, 44.105039],\n            [7.90741, 44.285953],\n            [8.088324, 44.285953],\n            [8.088324, 44.105039],\n            [7.90741, 44.105039]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.90741, 44.285953],\n            [7.90741, 44.466868],\n            [8.088324, 44.466868],\n            [8.088324, 44.285953],\n            [7.90741, 44.285953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.90741, 44.466868],\n            [7.90741, 44.647782],\n            [8.088324, 44.647782],\n            [8.088324, 44.466868],\n            [7.90741, 44.466868]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.90741, 44.647782],\n            [7.90741, 44.828697],\n            [8.088324, 44.828697],\n            [8.088324, 44.647782],\n            [7.90741, 44.647782]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.90741, 44.828697],\n            [7.90741, 45.009611],\n            [8.088324, 45.009611],\n            [8.088324, 44.828697],\n            [7.90741, 44.828697]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.90741, 45.009611],\n            [7.90741, 45.190526],\n            [8.088324, 45.190526],\n            [8.088324, 45.009611],\n            [7.90741, 45.009611]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.90741, 45.190526],\n            [7.90741, 45.37144],\n            [8.088324, 45.37144],\n            [8.088324, 45.190526],\n            [7.90741, 45.190526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.90741, 45.37144],\n            [7.90741, 45.552355],\n            [8.088324, 45.552355],\n            [8.088324, 45.37144],\n            [7.90741, 45.37144]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.90741, 45.552355],\n            [7.90741, 45.733269],\n            [8.088324, 45.733269],\n            [8.088324, 45.552355],\n            [7.90741, 45.552355]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.90741, 45.733269],\n            [7.90741, 45.914184],\n            [8.088324, 45.914184],\n            [8.088324, 45.733269],\n            [7.90741, 45.733269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.90741, 45.914184],\n            [7.90741, 46.095098],\n            [8.088324, 46.095098],\n            [8.088324, 45.914184],\n            [7.90741, 45.914184]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.90741, 46.095098],\n            [7.90741, 46.276013],\n            [8.088324, 46.276013],\n            [8.088324, 46.095098],\n            [7.90741, 46.095098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.088324, 44.285953],\n            [8.088324, 44.466868],\n            [8.269239, 44.466868],\n            [8.269239, 44.285953],\n            [8.088324, 44.285953]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.088324, 44.466868],\n            [8.088324, 44.647782],\n            [8.269239, 44.647782],\n            [8.269239, 44.466868],\n            [8.088324, 44.466868]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.088324, 44.647782],\n            [8.088324, 44.828697],\n            [8.269239, 44.828697],\n            [8.269239, 44.647782],\n            [8.088324, 44.647782]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.088324, 44.828697],\n            [8.088324, 45.009611],\n            [8.269239, 45.009611],\n            [8.269239, 44.828697],\n            [8.088324, 44.828697]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.088324, 45.009611],\n            [8.088324, 45.190526],\n            [8.269239, 45.190526],\n            [8.269239, 45.009611],\n            [8.088324, 45.009611]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.088324, 45.190526],\n            [8.088324, 45.37144],\n            [8.269239, 45.37144],\n            [8.269239, 45.190526],\n            [8.088324, 45.190526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.088324, 45.37144],\n            [8.088324, 45.552355],\n            [8.269239, 45.552355],\n            [8.269239, 45.37144],\n            [8.088324, 45.37144]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.088324, 45.552355],\n            [8.088324, 45.733269],\n            [8.269239, 45.733269],\n            [8.269239, 45.552355],\n            [8.088324, 45.552355]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.088324, 45.733269],\n            [8.088324, 45.914184],\n            [8.269239, 45.914184],\n            [8.269239, 45.733269],\n            [8.088324, 45.733269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.088324, 45.914184],\n            [8.088324, 46.095098],\n            [8.269239, 46.095098],\n            [8.269239, 45.914184],\n            [8.088324, 45.914184]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.088324, 46.095098],\n            [8.088324, 46.276013],\n            [8.269239, 46.276013],\n            [8.269239, 46.095098],\n            [8.088324, 46.095098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.088324, 46.276013],\n            [8.088324, 46.456927],\n            [8.269239, 46.456927],\n            [8.269239, 46.276013],\n            [8.088324, 46.276013]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.269239, 44.466868],\n            [8.269239, 44.647782],\n            [8.450153, 44.647782],\n            [8.450153, 44.466868],\n            [8.269239, 44.466868]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.269239, 44.647782],\n            [8.269239, 44.828697],\n            [8.450153, 44.828697],\n            [8.450153, 44.647782],\n            [8.269239, 44.647782]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.269239, 44.828697],\n            [8.269239, 45.009611],\n            [8.450153, 45.009611],\n            [8.450153, 44.828697],\n            [8.269239, 44.828697]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.269239, 45.009611],\n            [8.269239, 45.190526],\n            [8.450153, 45.190526],\n            [8.450153, 45.009611],\n            [8.269239, 45.009611]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.269239, 45.190526],\n            [8.269239, 45.37144],\n            [8.450153, 45.37144],\n            [8.450153, 45.190526],\n            [8.269239, 45.190526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.269239, 45.37144],\n            [8.269239, 45.552355],\n            [8.450153, 45.552355],\n            [8.450153, 45.37144],\n            [8.269239, 45.37144]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.269239, 45.552355],\n            [8.269239, 45.733269],\n            [8.450153, 45.733269],\n            [8.450153, 45.552355],\n            [8.269239, 45.552355]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.269239, 45.733269],\n            [8.269239, 45.914184],\n            [8.450153, 45.914184],\n            [8.450153, 45.733269],\n            [8.269239, 45.733269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.269239, 45.914184],\n            [8.269239, 46.095098],\n            [8.450153, 46.095098],\n            [8.450153, 45.914184],\n            [8.269239, 45.914184]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.269239, 46.095098],\n            [8.269239, 46.276013],\n            [8.450153, 46.276013],\n            [8.450153, 46.095098],\n            [8.269239, 46.095098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.269239, 46.276013],\n            [8.269239, 46.456927],\n            [8.450153, 46.456927],\n            [8.450153, 46.276013],\n            [8.269239, 46.276013]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.450153, 44.466868],\n            [8.450153, 44.647782],\n            [8.631068, 44.647782],\n            [8.631068, 44.466868],\n            [8.450153, 44.466868]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.450153, 44.647782],\n            [8.450153, 44.828697],\n            [8.631068, 44.828697],\n            [8.631068, 44.647782],\n            [8.450153, 44.647782]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.450153, 44.828697],\n            [8.450153, 45.009611],\n            [8.631068, 45.009611],\n            [8.631068, 44.828697],\n            [8.450153, 44.828697]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.450153, 45.009611],\n            [8.450153, 45.190526],\n            [8.631068, 45.190526],\n            [8.631068, 45.009611],\n            [8.450153, 45.009611]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.450153, 45.190526],\n            [8.450153, 45.37144],\n            [8.631068, 45.37144],\n            [8.631068, 45.190526],\n            [8.450153, 45.190526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.450153, 45.37144],\n            [8.450153, 45.552355],\n            [8.631068, 45.552355],\n            [8.631068, 45.37144],\n            [8.450153, 45.37144]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.450153, 45.552355],\n            [8.450153, 45.733269],\n            [8.631068, 45.733269],\n            [8.631068, 45.552355],\n            [8.450153, 45.552355]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.450153, 45.733269],\n            [8.450153, 45.914184],\n            [8.631068, 45.914184],\n            [8.631068, 45.733269],\n            [8.450153, 45.733269]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.450153, 45.914184],\n            [8.450153, 46.095098],\n            [8.631068, 46.095098],\n            [8.631068, 45.914184],\n            [8.450153, 45.914184]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.450153, 46.095098],\n            [8.450153, 46.276013],\n            [8.631068, 46.276013],\n            [8.631068, 46.095098],\n            [8.450153, 46.095098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.450153, 46.276013],\n            [8.450153, 46.456927],\n            [8.631068, 46.456927],\n            [8.631068, 46.276013],\n            [8.450153, 46.276013]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.631068, 44.466868],\n            [8.631068, 44.647782],\n            [8.811982, 44.647782],\n            [8.811982, 44.466868],\n            [8.631068, 44.466868]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.631068, 44.647782],\n            [8.631068, 44.828697],\n            [8.811982, 44.828697],\n            [8.811982, 44.647782],\n            [8.631068, 44.647782]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.631068, 44.828697],\n            [8.631068, 45.009611],\n            [8.811982, 45.009611],\n            [8.811982, 44.828697],\n            [8.631068, 44.828697]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.631068, 45.009611],\n            [8.631068, 45.190526],\n            [8.811982, 45.190526],\n            [8.811982, 45.009611],\n            [8.631068, 45.009611]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.631068, 45.190526],\n            [8.631068, 45.37144],\n            [8.811982, 45.37144],\n            [8.811982, 45.190526],\n            [8.631068, 45.190526]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.631068, 45.37144],\n            [8.631068, 45.552355],\n            [8.811982, 45.552355],\n            [8.811982, 45.37144],\n            [8.631068, 45.37144]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.631068, 45.552355],\n            [8.631068, 45.733269],\n            [8.811982, 45.733269],\n            [8.811982, 45.552355],\n            [8.631068, 45.552355]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.631068, 45.914184],\n            [8.631068, 46.095098],\n            [8.811982, 46.095098],\n            [8.811982, 45.914184],\n            [8.631068, 45.914184]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.631068, 46.095098],\n            [8.631068, 46.276013],\n            [8.811982, 46.276013],\n            [8.811982, 46.095098],\n            [8.631068, 46.095098]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.811982, 44.466868],\n            [8.811982, 44.647782],\n            [8.992897, 44.647782],\n            [8.992897, 44.466868],\n            [8.811982, 44.466868]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.811982, 44.647782],\n            [8.811982, 44.828697],\n            [8.992897, 44.828697],\n            [8.992897, 44.647782],\n            [8.811982, 44.647782]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.811982, 44.828697],\n            [8.811982, 45.009611],\n            [8.992897, 45.009611],\n            [8.992897, 44.828697],\n            [8.811982, 44.828697]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.811982, 45.009611],\n            [8.811982, 45.190526],\n            [8.992897, 45.190526],\n            [8.992897, 45.009611],\n            [8.811982, 45.009611]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.811982, 45.37144],\n            [8.811982, 45.552355],\n            [8.992897, 45.552355],\n            [8.992897, 45.37144],\n            [8.811982, 45.37144]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.992897, 44.466868],\n            [8.992897, 44.647782],\n            [9.173811, 44.647782],\n            [9.173811, 44.466868],\n            [8.992897, 44.466868]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.992897, 44.647782],\n            [8.992897, 44.828697],\n            [9.173811, 44.828697],\n            [9.173811, 44.647782],\n            [8.992897, 44.647782]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.992897, 44.828697],\n            [8.992897, 45.009611],\n            [9.173811, 45.009611],\n            [9.173811, 44.828697],\n            [8.992897, 44.828697]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.173811, 44.466868],\n            [9.173811, 44.647782],\n            [9.354725, 44.647782],\n            [9.354725, 44.466868],\n            [9.173811, 44.466868]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.173811, 44.647782],\n            [9.173811, 44.828697],\n            [9.354725, 44.828697],\n            [9.354725, 44.647782],\n            [9.173811, 44.647782]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.3775634765625, 44.05601169578525],\n            [9.437255859375, 44.05601169578525],\n            [9.437255859375, 46.50595444552049],\n            [6.3775634765625, 46.50595444552049],\n            [6.3775634765625, 44.05601169578525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.382568359375012, 46.456781428126554],\n            [8.313903808593762, 46.41892578708079],\n            [8.31939697265626, 46.379149058330775],\n            [8.099670410156264, 46.26913887119718],\n            [8.171081542968762, 46.1893382140708],\n            [7.8799438476562615, 45.94160076422079],\n            [7.907409667968761, 45.627484212338246],\n            [7.7247619628906365, 45.55444852652113],\n            [7.5833129882812615, 45.5900172453615],\n            [7.484436035156261, 45.58136746810096],\n            [7.347106933593762, 45.527516684421215],\n            [7.116394042968763, 45.46976215263039],\n            [7.176818847656262, 45.408092022812276],\n            [7.094421386718762, 45.222677199620094],\n            [6.980438232421887, 45.20719857986464],\n            [6.9515991210937615, 45.17332441090049],\n            [6.900787353515638, 45.166547157856016],\n            [6.900787353515638, 45.14621056019852],\n            [6.854095458984387, 45.1278045274732],\n            [6.7813110351562615, 45.164610651725425],\n            [6.749725341796888, 45.1394300814679],\n            [6.687927246093762, 45.1394300814679],\n            [6.6302490234375, 45.10987715527803],\n            [6.65496826171875, 45.069156265623505],\n            [6.6741943359375, 45.02015580433459],\n            [6.755218505859382, 45.0182143279711],\n            [6.749725341796875, 44.90744135615697],\n            [6.815643310546875, 44.872415981701394],\n            [6.900787353515625, 44.84515927771909],\n            [6.946105957031258, 44.86560301534198],\n            [7.017517089843757, 44.8344477567128],\n            [7.002410888671875, 44.78378451819761],\n            [7.032623291015625, 44.73210119404699],\n            [7.0751953125, 44.68330096401701],\n            [6.990051269531262, 44.69404054463802],\n            [6.8637084960937615, 44.51021754644927],\n            [6.9021606445312615, 44.36509667482153],\n            [7.055969238281263, 44.219615400229195],\n            [7.3965454101562615, 44.125056482685174],\n            [7.6712036132812615, 44.180234276372886],\n            [7.7151489257812615, 44.09350315285844],\n            [7.770080566406262, 44.136884638560495],\n            [8.02825927734376, 44.140826830775524],\n            [8.08868408203126, 44.321883129398586],\n            [8.247985839843762, 44.52196830685208],\n            [8.357849121093762, 44.48670891691767],\n            [8.599548339843762, 44.537632301346086],\n            [8.665466308593762, 44.58851118961441],\n            [8.802795410156264, 44.51805165000559],\n            [8.912658691406264, 44.592423107178654],\n            [8.912658691406264, 44.67841867818858],\n            [9.017028808593762, 44.6725593921204],\n            [9.139251708984387, 44.57970841241188],\n            [9.213409423828137, 44.6061127451739],\n            [9.221649169921887, 44.75453548416007],\n            [9.066467285156264, 44.85002749260048],\n            [8.896179199218762, 45.05606124274412],\n            [8.775329589843762, 45.01530198999206],\n            [8.659973144531262, 45.02695045318543],\n            [8.522644042968764, 45.28841433167348],\n            [8.550109863281262, 45.3617951914213],\n            [8.63800048828126, 45.34828480683997],\n            [8.676452636718762, 45.30773430004872],\n            [8.76983642578126, 45.35407536661812],\n            [8.734130859375014, 45.38494834654319],\n            [8.846740722656262, 45.40423540168332],\n            [8.725891113281262, 45.51789504294005],\n            [8.654479980468762, 45.70809729528788],\n            [8.56109619140626, 45.79242458189573],\n            [8.599548339843762, 45.832626782661585],\n            [8.580322265625012, 45.90529985724794],\n            [8.725891113281262, 46.02557483126793],\n            [8.717651367187512, 46.0998999106273],\n            [8.610534667968762, 46.14178273759229],\n            [8.539123535156262, 46.221652456379104],\n            [8.451232910156262, 46.25774588045678],\n            [8.445739746093764, 46.30899569419854],\n            [8.47045898437501, 46.34313560260196],\n            [8.462219238281264, 46.462457505996056],\n            [8.382568359375012, 46.456781428126554]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-square-grid/test/out/properties.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.134018, 41.39763],\n            [2.134018, 41.406623],\n            [2.143011, 41.406623],\n            [2.143011, 41.39763],\n            [2.134018, 41.39763]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.134018, 41.406623],\n            [2.134018, 41.415616],\n            [2.143011, 41.415616],\n            [2.143011, 41.406623],\n            [2.134018, 41.406623]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.143011, 41.388636],\n            [2.143011, 41.39763],\n            [2.152004, 41.39763],\n            [2.152004, 41.388636],\n            [2.143011, 41.388636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.143011, 41.39763],\n            [2.143011, 41.406623],\n            [2.152004, 41.406623],\n            [2.152004, 41.39763],\n            [2.143011, 41.39763]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.143011, 41.406623],\n            [2.143011, 41.415616],\n            [2.152004, 41.415616],\n            [2.152004, 41.406623],\n            [2.143011, 41.406623]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.152004, 41.388636],\n            [2.152004, 41.39763],\n            [2.160997, 41.39763],\n            [2.160997, 41.388636],\n            [2.152004, 41.388636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.152004, 41.39763],\n            [2.152004, 41.406623],\n            [2.160997, 41.406623],\n            [2.160997, 41.39763],\n            [2.152004, 41.39763]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.152004, 41.406623],\n            [2.152004, 41.415616],\n            [2.160997, 41.415616],\n            [2.160997, 41.406623],\n            [2.152004, 41.406623]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.160997, 41.379643],\n            [2.160997, 41.388636],\n            [2.16999, 41.388636],\n            [2.16999, 41.379643],\n            [2.160997, 41.379643]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.160997, 41.388636],\n            [2.160997, 41.39763],\n            [2.16999, 41.39763],\n            [2.16999, 41.388636],\n            [2.160997, 41.388636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.160997, 41.39763],\n            [2.160997, 41.406623],\n            [2.16999, 41.406623],\n            [2.16999, 41.39763],\n            [2.160997, 41.39763]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.160997, 41.406623],\n            [2.160997, 41.415616],\n            [2.16999, 41.415616],\n            [2.16999, 41.406623],\n            [2.160997, 41.406623]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.160997, 41.415616],\n            [2.160997, 41.424609],\n            [2.16999, 41.424609],\n            [2.16999, 41.415616],\n            [2.160997, 41.415616]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.160997, 41.424609],\n            [2.160997, 41.433602],\n            [2.16999, 41.433602],\n            [2.16999, 41.424609],\n            [2.160997, 41.424609]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.160997, 41.433602],\n            [2.160997, 41.442596],\n            [2.16999, 41.442596],\n            [2.16999, 41.433602],\n            [2.160997, 41.433602]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.16999, 41.379643],\n            [2.16999, 41.388636],\n            [2.178984, 41.388636],\n            [2.178984, 41.379643],\n            [2.16999, 41.379643]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.16999, 41.388636],\n            [2.16999, 41.39763],\n            [2.178984, 41.39763],\n            [2.178984, 41.388636],\n            [2.16999, 41.388636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.16999, 41.39763],\n            [2.16999, 41.406623],\n            [2.178984, 41.406623],\n            [2.178984, 41.39763],\n            [2.16999, 41.39763]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.16999, 41.406623],\n            [2.16999, 41.415616],\n            [2.178984, 41.415616],\n            [2.178984, 41.406623],\n            [2.16999, 41.406623]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.16999, 41.415616],\n            [2.16999, 41.424609],\n            [2.178984, 41.424609],\n            [2.178984, 41.415616],\n            [2.16999, 41.415616]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.16999, 41.424609],\n            [2.16999, 41.433602],\n            [2.178984, 41.433602],\n            [2.178984, 41.424609],\n            [2.16999, 41.424609]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.16999, 41.433602],\n            [2.16999, 41.442596],\n            [2.178984, 41.442596],\n            [2.178984, 41.433602],\n            [2.16999, 41.433602]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.178984, 41.379643],\n            [2.178984, 41.388636],\n            [2.187977, 41.388636],\n            [2.187977, 41.379643],\n            [2.178984, 41.379643]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.178984, 41.388636],\n            [2.178984, 41.39763],\n            [2.187977, 41.39763],\n            [2.187977, 41.388636],\n            [2.178984, 41.388636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.178984, 41.39763],\n            [2.178984, 41.406623],\n            [2.187977, 41.406623],\n            [2.187977, 41.39763],\n            [2.178984, 41.39763]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.178984, 41.406623],\n            [2.178984, 41.415616],\n            [2.187977, 41.415616],\n            [2.187977, 41.406623],\n            [2.178984, 41.406623]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.178984, 41.415616],\n            [2.178984, 41.424609],\n            [2.187977, 41.424609],\n            [2.187977, 41.415616],\n            [2.178984, 41.415616]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.178984, 41.424609],\n            [2.178984, 41.433602],\n            [2.187977, 41.433602],\n            [2.187977, 41.424609],\n            [2.178984, 41.424609]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.178984, 41.433602],\n            [2.178984, 41.442596],\n            [2.187977, 41.442596],\n            [2.187977, 41.433602],\n            [2.178984, 41.433602]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.187977, 41.379643],\n            [2.187977, 41.388636],\n            [2.19697, 41.388636],\n            [2.19697, 41.379643],\n            [2.187977, 41.379643]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.187977, 41.388636],\n            [2.187977, 41.39763],\n            [2.19697, 41.39763],\n            [2.19697, 41.388636],\n            [2.187977, 41.388636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.187977, 41.39763],\n            [2.187977, 41.406623],\n            [2.19697, 41.406623],\n            [2.19697, 41.39763],\n            [2.187977, 41.39763]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.187977, 41.406623],\n            [2.187977, 41.415616],\n            [2.19697, 41.415616],\n            [2.19697, 41.406623],\n            [2.187977, 41.406623]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.187977, 41.415616],\n            [2.187977, 41.424609],\n            [2.19697, 41.424609],\n            [2.19697, 41.415616],\n            [2.187977, 41.415616]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.187977, 41.424609],\n            [2.187977, 41.433602],\n            [2.19697, 41.433602],\n            [2.19697, 41.424609],\n            [2.187977, 41.424609]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.187977, 41.433602],\n            [2.187977, 41.442596],\n            [2.19697, 41.442596],\n            [2.19697, 41.433602],\n            [2.187977, 41.433602]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.19697, 41.388636],\n            [2.19697, 41.39763],\n            [2.205963, 41.39763],\n            [2.205963, 41.388636],\n            [2.19697, 41.388636]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.19697, 41.39763],\n            [2.19697, 41.406623],\n            [2.205963, 41.406623],\n            [2.205963, 41.39763],\n            [2.19697, 41.39763]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.19697, 41.406623],\n            [2.19697, 41.415616],\n            [2.205963, 41.415616],\n            [2.205963, 41.406623],\n            [2.19697, 41.406623]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.19697, 41.415616],\n            [2.19697, 41.424609],\n            [2.205963, 41.424609],\n            [2.205963, 41.415616],\n            [2.19697, 41.415616]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.19697, 41.424609],\n            [2.19697, 41.433602],\n            [2.205963, 41.433602],\n            [2.205963, 41.424609],\n            [2.19697, 41.424609]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.205963, 41.39763],\n            [2.205963, 41.406623],\n            [2.214957, 41.406623],\n            [2.214957, 41.39763],\n            [2.205963, 41.39763]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.205963, 41.406623],\n            [2.205963, 41.415616],\n            [2.214957, 41.415616],\n            [2.214957, 41.406623],\n            [2.205963, 41.406623]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.205963, 41.415616],\n            [2.205963, 41.424609],\n            [2.214957, 41.424609],\n            [2.214957, 41.415616],\n            [2.205963, 41.415616]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.205963, 41.424609],\n            [2.205963, 41.433602],\n            [2.214957, 41.433602],\n            [2.214957, 41.424609],\n            [2.205963, 41.424609]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.214957, 41.406623],\n            [2.214957, 41.415616],\n            [2.22395, 41.415616],\n            [2.22395, 41.406623],\n            [2.214957, 41.406623]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.214957, 41.415616],\n            [2.214957, 41.424609],\n            [2.22395, 41.424609],\n            [2.22395, 41.415616],\n            [2.214957, 41.415616]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [\n        2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261\n      ],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.131519317626953, 41.37835427979543],\n            [2.2264480590820312, 41.37835427979543],\n            [2.2264480590820312, 41.44388449101261],\n            [2.131519317626953, 41.44388449101261],\n            [2.131519317626953, 41.37835427979543]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.223186492919922, 41.416856461155575],\n            [2.1716880798339844, 41.44182560856202],\n            [2.1636199951171875, 41.41608406639095],\n            [2.1334075927734375, 41.407200866420744],\n            [2.1845626831054683, 41.37977115211044],\n            [2.223186492919922, 41.416856461155575]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-square-grid/test/out/resolute.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.859406, 74.504464],\n            [-95.859406, 74.685378],\n            [-95.678492, 74.685378],\n            [-95.678492, 74.504464],\n            [-95.859406, 74.504464]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.859406, 74.685378],\n            [-95.859406, 74.866293],\n            [-95.678492, 74.866293],\n            [-95.678492, 74.685378],\n            [-95.859406, 74.685378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.678492, 74.504464],\n            [-95.678492, 74.685378],\n            [-95.497577, 74.685378],\n            [-95.497577, 74.504464],\n            [-95.678492, 74.504464]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.678492, 74.685378],\n            [-95.678492, 74.866293],\n            [-95.497577, 74.866293],\n            [-95.497577, 74.685378],\n            [-95.678492, 74.685378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.497577, 74.504464],\n            [-95.497577, 74.685378],\n            [-95.316663, 74.685378],\n            [-95.316663, 74.504464],\n            [-95.497577, 74.504464]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.497577, 74.685378],\n            [-95.497577, 74.866293],\n            [-95.316663, 74.866293],\n            [-95.316663, 74.685378],\n            [-95.497577, 74.685378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.316663, 74.504464],\n            [-95.316663, 74.685378],\n            [-95.135748, 74.685378],\n            [-95.135748, 74.504464],\n            [-95.316663, 74.504464]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.316663, 74.685378],\n            [-95.316663, 74.866293],\n            [-95.135748, 74.866293],\n            [-95.135748, 74.685378],\n            [-95.316663, 74.685378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.135748, 74.504464],\n            [-95.135748, 74.685378],\n            [-94.954834, 74.685378],\n            [-94.954834, 74.504464],\n            [-95.135748, 74.504464]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.135748, 74.685378],\n            [-95.135748, 74.866293],\n            [-94.954834, 74.866293],\n            [-94.954834, 74.685378],\n            [-95.135748, 74.685378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.954834, 74.504464],\n            [-94.954834, 74.685378],\n            [-94.77392, 74.685378],\n            [-94.77392, 74.504464],\n            [-94.954834, 74.504464]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.954834, 74.685378],\n            [-94.954834, 74.866293],\n            [-94.77392, 74.866293],\n            [-94.77392, 74.685378],\n            [-94.954834, 74.685378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.77392, 74.504464],\n            [-94.77392, 74.685378],\n            [-94.593005, 74.685378],\n            [-94.593005, 74.504464],\n            [-94.77392, 74.504464]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.77392, 74.685378],\n            [-94.77392, 74.866293],\n            [-94.593005, 74.866293],\n            [-94.593005, 74.685378],\n            [-94.77392, 74.685378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.593005, 74.504464],\n            [-94.593005, 74.685378],\n            [-94.412091, 74.685378],\n            [-94.412091, 74.504464],\n            [-94.593005, 74.504464]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.593005, 74.685378],\n            [-94.593005, 74.866293],\n            [-94.412091, 74.866293],\n            [-94.412091, 74.685378],\n            [-94.593005, 74.685378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.412091, 74.504464],\n            [-94.412091, 74.685378],\n            [-94.231176, 74.685378],\n            [-94.231176, 74.504464],\n            [-94.412091, 74.504464]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.412091, 74.685378],\n            [-94.412091, 74.866293],\n            [-94.231176, 74.866293],\n            [-94.231176, 74.685378],\n            [-94.412091, 74.685378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.231176, 74.504464],\n            [-94.231176, 74.685378],\n            [-94.050262, 74.685378],\n            [-94.050262, 74.504464],\n            [-94.231176, 74.504464]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.231176, 74.685378],\n            [-94.231176, 74.866293],\n            [-94.050262, 74.866293],\n            [-94.050262, 74.685378],\n            [-94.231176, 74.685378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.877685546875, 74.46849062193377],\n            [-94.031982421875, 74.46849062193377],\n            [-94.031982421875, 74.90226611990785],\n            [-95.877685546875, 74.90226611990785],\n            [-95.877685546875, 74.46849062193377]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-square-grid/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { bboxPolygon as bboxPoly } from \"@turf/bbox-polygon\";\nimport { truncate } from \"@turf/truncate\";\nimport { squareGrid } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nlet fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    json: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"square-grid\", (t) => {\n  for (const { name, json } of fixtures) {\n    const { bbox, cellSide, units, properties, mask } = json;\n    const options = {\n      mask,\n      units,\n      properties,\n    };\n    const result = truncate(squareGrid(bbox, cellSide, options));\n\n    // Add styled GeoJSON to the result\n    const poly = bboxPoly(bbox);\n    poly.properties = {\n      stroke: \"#F00\",\n      \"stroke-width\": 6,\n      \"fill-opacity\": 0,\n    };\n    result.features.push(poly);\n    if (options.mask) {\n      options.mask.properties = {\n        stroke: \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0,\n      };\n      result.features.push(options.mask);\n    }\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + name + \".geojson\", result);\n    t.deepEqual(\n      result,\n      loadJsonFileSync(directories.out + name + \".geojson\"),\n      name\n    );\n  }\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-square-grid/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-standard-deviational-ellipse/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-standard-deviational-ellipse/README.md",
    "content": "# @turf/standard-deviational-ellipse\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## standardDeviationalEllipse\n\nTakes a collection of features and returns a standard deviational ellipse,\nalso known as a “directional distribution.” The standard deviational ellipse\naims to show the direction and the distribution of a dataset by drawing\nan ellipse that contains about one standard deviation’s worth (\\~ 70%) of the\ndata.\n\nThis module mirrors the functionality of [Directional Distribution][1]\nin ArcGIS and the [QGIS Standard Deviational Ellipse Plugin][2]\n\n**Bibliography**\n\n• Robert S. Yuill, “The Standard Deviational Ellipse; An Updated Tool for\nSpatial Description,” *Geografiska Annaler* 53, no. 1 (1971): 28–39,\ndoi:{@link [https://doi.org/10.2307/490885|10.2307/490885}][3].\n\n• Paul Hanly Furfey, “A Note on Lefever’s “Standard Deviational Ellipse,”\n*American Journal of Sociology* 33, no. 1 (1927): 94—98,\ndoi:{@link [https://doi.org/10.1086/214336|10.1086/214336}][4].\n\n### Parameters\n\n*   `points` **[FeatureCollection][5]<[Point][6]>** GeoJSON points\n*   `options` **[Object][7]** Optional parameters (optional, default `{}`)\n\n    *   `options.weight` **[string][8]?** the property name used to weight the center\n    *   `options.steps` **[number][9]** number of steps for the polygon (optional, default `64`)\n    *   `options.properties` **[Object][7]** properties to pass to the resulting ellipse (optional, default `{}`)\n\n### Examples\n\n```javascript\nconst bbox = [-74, 40.72, -73.98, 40.74];\nconst points = turf.randomPoint(400, {bbox: bbox});\nconst sdEllipse = turf.standardDeviationalEllipse(points);\n\n//addToMap\nconst addToMap = [points, sdEllipse];\n```\n\nReturns **[Feature][10]<[Polygon][11]>** an elliptical Polygon that includes approximately 1 SD of the dataset within it.\n\n[1]: http://desktop.arcgis.com/en/arcmap/10.3/tools/spatial-statistics-toolbox/directional-distribution.htm\n\n[2]: http://arken.nmbu.no/~havatv/gis/qgisplugins/SDEllipse/\n\n[3]: https://doi.org/10.2307/490885|10.2307/490885}\n\n[4]: https://doi.org/10.1086/214336|10.1086/214336}\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n[9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[10]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[11]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/standard-deviational-ellipse\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-standard-deviational-ellipse/bench.ts",
    "content": "import { BBox } from \"geojson\";\nimport { randomPoint } from \"@turf/random\";\nimport { standardDeviationalEllipse } from \"./index.js\";\nimport Benchmark, { Event } from \"benchmark\";\n\n/**\n * Benchmark Results\n *\n * turf-standard-deviational-ellipse - 150 points x 1,874 ops/sec ±5.89% (89 runs sampled)\n * turf-standard-deviational-ellipse - 300 points x 1,092 ops/sec ±0.79% (93 runs sampled)\n * turf-standard-deviational-ellipse - 600 points x 574 ops/sec ±1.14% (92 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-standard-deviational-ellipse\");\nconst properties: { bbox: BBox } = { bbox: [-10, -10, 10, 10] };\nsuite\n  .add(\"turf-standard-deviational-ellipse - 150 points\", () =>\n    standardDeviationalEllipse(randomPoint(150, properties))\n  )\n  .add(\"turf-standard-deviational-ellipse - 300 points\", () =>\n    standardDeviationalEllipse(randomPoint(300, properties))\n  )\n  .add(\"turf-standard-deviational-ellipse - 600 points\", () =>\n    standardDeviationalEllipse(randomPoint(600, properties))\n  )\n  .on(\"cycle\", (e: Event) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-standard-deviational-ellipse/index.ts",
    "content": "import {\n  FeatureCollection,\n  Feature,\n  Position,\n  Polygon,\n  GeoJsonProperties,\n  Point,\n} from \"geojson\";\nimport { coordAll, featureEach } from \"@turf/meta\";\nimport { getCoords } from \"@turf/invariant\";\nimport { featureCollection, isObject, isNumber } from \"@turf/helpers\";\nimport { centerMean } from \"@turf/center-mean\";\nimport { pointsWithinPolygon } from \"@turf/points-within-polygon\";\nimport { ellipse } from \"@turf/ellipse\";\n\ndeclare interface SDEProps {\n  meanCenterCoordinates: Position;\n  semiMajorAxis: number;\n  semiMinorAxis: number;\n  numberOfFeatures: number;\n  angle: number;\n  percentageWithinEllipse: number;\n}\n\ndeclare interface StandardDeviationalEllipse extends Feature<Polygon> {\n  properties: {\n    standardDeviationalEllipse: SDEProps;\n    [key: string]: any;\n  } | null;\n}\n\n/**\n * Takes a collection of features and returns a standard deviational ellipse,\n * also known as a “directional distribution.” The standard deviational ellipse\n * aims to show the direction and the distribution of a dataset by drawing\n * an ellipse that contains about one standard deviation’s worth (~ 70%) of the\n * data.\n *\n * This module mirrors the functionality of {@link http://desktop.arcgis.com/en/arcmap/10.3/tools/spatial-statistics-toolbox/directional-distribution.htm|Directional Distribution}\n * in ArcGIS and the {@link http://arken.nmbu.no/~havatv/gis/qgisplugins/SDEllipse/|QGIS Standard Deviational Ellipse Plugin}\n *\n * **Bibliography**\n *\n * • Robert S. Yuill, “The Standard Deviational Ellipse; An Updated Tool for\n * Spatial Description,” _Geografiska Annaler_ 53, no. 1 (1971): 28–39,\n * doi:{@link https://doi.org/10.2307/490885|10.2307/490885}.\n *\n * • Paul Hanly Furfey, “A Note on Lefever’s “Standard Deviational Ellipse,”\n * _American Journal of Sociology_ 33, no. 1 (1927): 94—98,\n * doi:{@link https://doi.org/10.1086/214336|10.1086/214336}.\n *\n *\n * @function\n * @param {FeatureCollection<Point>} points GeoJSON points\n * @param {Object} [options={}] Optional parameters\n * @param {string} [options.weight] the property name used to weight the center\n * @param {number} [options.steps=64] number of steps for the polygon\n * @param {Object} [options.properties={}] properties to pass to the resulting ellipse\n * @returns {Feature<Polygon>} an elliptical Polygon that includes approximately 1 SD of the dataset within it.\n * @example\n *\n * const bbox = [-74, 40.72, -73.98, 40.74];\n * const points = turf.randomPoint(400, {bbox: bbox});\n * const sdEllipse = turf.standardDeviationalEllipse(points);\n *\n * //addToMap\n * const addToMap = [points, sdEllipse];\n *\n */\nfunction standardDeviationalEllipse(\n  points: FeatureCollection<Point>,\n  options?: {\n    properties?: GeoJsonProperties;\n    weight?: string;\n    steps?: number;\n  }\n): StandardDeviationalEllipse {\n  // Optional params\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  const steps = options.steps || 64;\n  const weightTerm = options.weight;\n  const properties = options.properties || {};\n\n  // Validation:\n  if (!isNumber(steps)) throw new Error(\"steps must be a number\");\n  if (!isObject(properties)) throw new Error(\"properties must be a number\");\n\n  // Calculate mean center & number of features:\n  const numberOfFeatures = coordAll(points).length;\n  const meanCenter = centerMean(points, { weight: weightTerm });\n\n  // Calculate angle of rotation:\n  // [X, Y] = mean center of all [x, y].\n  // theta = arctan( (A + B) / C )\n  // A = sum((x - X)^2) - sum((y - Y)^2)\n  // B = sqrt(A^2 + 4(sum((x - X)(y - Y))^2))\n  // C = 2(sum((x - X)(y - Y)))\n\n  let xDeviationSquaredSum = 0;\n  let yDeviationSquaredSum = 0;\n  let xyDeviationSum = 0;\n\n  featureEach(points, function (point) {\n    // weightTerm or point.properties might be undefined, hence this check.\n    const weight = weightTerm ? point.properties?.[weightTerm] || 1 : 1;\n    const deviation = getDeviations(getCoords(point), getCoords(meanCenter));\n    xDeviationSquaredSum += Math.pow(deviation.x, 2) * weight;\n    yDeviationSquaredSum += Math.pow(deviation.y, 2) * weight;\n    xyDeviationSum += deviation.x * deviation.y * weight;\n  });\n\n  const bigA = xDeviationSquaredSum - yDeviationSquaredSum;\n  const bigB = Math.sqrt(Math.pow(bigA, 2) + 4 * Math.pow(xyDeviationSum, 2));\n  const bigC = 2 * xyDeviationSum;\n  const theta = Math.atan((bigA + bigB) / bigC);\n  const thetaDeg = (theta * 180) / Math.PI;\n\n  // Calculate axes:\n  // sigmaX = sqrt((1 / n - 2) * sum((((x - X) * cos(theta)) - ((y - Y) * sin(theta)))^2))\n  // sigmaY = sqrt((1 / n - 2) * sum((((x - X) * sin(theta)) - ((y - Y) * cos(theta)))^2))\n  let sigmaXsum = 0;\n  let sigmaYsum = 0;\n  let weightsum = 0;\n  featureEach(points, function (point) {\n    // weightTerm or point.properties might be undefined, hence this check.\n    const weight = weightTerm ? point.properties?.[weightTerm] || 1 : 1;\n    const deviation = getDeviations(getCoords(point), getCoords(meanCenter));\n    sigmaXsum +=\n      Math.pow(\n        deviation.x * Math.cos(theta) - deviation.y * Math.sin(theta),\n        2\n      ) * weight;\n    sigmaYsum +=\n      Math.pow(\n        deviation.x * Math.sin(theta) + deviation.y * Math.cos(theta),\n        2\n      ) * weight;\n    weightsum += weight;\n  });\n\n  const sigmaX = Math.sqrt((2 * sigmaXsum) / weightsum);\n  const sigmaY = Math.sqrt((2 * sigmaYsum) / weightsum);\n\n  const theEllipse: Feature<Polygon> = ellipse(meanCenter, sigmaX, sigmaY, {\n    units: \"degrees\",\n    angle: thetaDeg,\n    steps: steps,\n    properties: properties,\n  });\n  const pointsWithinEllipse = pointsWithinPolygon(\n    points,\n    featureCollection([theEllipse])\n  );\n  const standardDeviationalEllipseProperties = {\n    meanCenterCoordinates: getCoords(meanCenter),\n    semiMajorAxis: sigmaX,\n    semiMinorAxis: sigmaY,\n    numberOfFeatures: numberOfFeatures,\n    angle: thetaDeg,\n    percentageWithinEllipse:\n      (100 * coordAll(pointsWithinEllipse).length) / numberOfFeatures,\n  };\n  // Make sure properties object exists.\n  theEllipse.properties = theEllipse.properties ?? {};\n  theEllipse.properties.standardDeviationalEllipse =\n    standardDeviationalEllipseProperties;\n\n  // We have added the StandardDeviationalEllipse specific properties, so\n  // confirm this to Typescript with a cast.\n  return theEllipse as StandardDeviationalEllipse;\n}\n\n/**\n * Get x_i - X and y_i - Y\n *\n * @private\n * @param {Position} coordinates Array of [x_i, y_i]\n * @param {Position} center Array of [X, Y]\n * @returns {Object} { x: n, y: m }\n */\nfunction getDeviations(coordinates: Position, center: Position) {\n  return {\n    x: coordinates[0] - center[0],\n    y: coordinates[1] - center[1],\n  };\n}\n\nexport { standardDeviationalEllipse, SDEProps, StandardDeviationalEllipse };\nexport default standardDeviationalEllipse;\n"
  },
  {
    "path": "packages/turf-standard-deviational-ellipse/package.json",
    "content": "{\n  \"name\": \"@turf/standard-deviational-ellipse\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a collection of features and returns a standard deviational ellipse.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Moacir P. de Sá Pereira <@muziejus>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"standard-deviational-ellipse\",\n    \"geostatistics\",\n    \"directional distribution\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/random\": \"workspace:*\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/center-mean\": \"workspace:*\",\n    \"@turf/ellipse\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@turf/points-within-polygon\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-standard-deviational-ellipse/test/in/mta-stations-unweighted.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"options\": {\n    \"weight\": null\n  },\n  \"esriEllipse\": {\n    \"type\": \"Feature\",\n    \"properties\": {\n      \"CenterX\": -73.937241989100002,\n      \"CenterY\": 40.729767710399997,\n      \"XStdDist\": 0.076118465941399996,\n      \"YStdDist\": 0.111162799783,\n      \"Rotation\": 16.480452681300001\n    },\n    \"geometry\": {\n      \"type\": \"Polygon\",\n      \"coordinates\": [\n        [\n          [-73.937242, 40.836186],\n          [-73.95061, 40.832464],\n          [-73.962925, 40.827467],\n          [-73.974045, 40.821573],\n          [-73.983949, 40.815099],\n          [-73.992697, 40.808283],\n          [-74.00039, 40.801291],\n          [-74.007142, 40.794228],\n          [-74.013069, 40.787155],\n          [-74.018273, 40.780095],\n          [-74.022843, 40.773051],\n          [-74.026852, 40.76601],\n          [-74.030356, 40.758945],\n          [-74.033397, 40.751824],\n          [-74.035999, 40.744608],\n          [-74.038172, 40.737256],\n          [-74.039907, 40.729722],\n          [-74.041179, 40.721963],\n          [-74.041939, 40.713935],\n          [-74.042117, 40.705603],\n          [-74.041611, 40.696944],\n          [-74.04029, 40.687956],\n          [-74.037986, 40.678674],\n          [-74.034501, 40.669186],\n          [-74.029617, 40.659656],\n          [-74.023121, 40.650342],\n          [-74.01485, 40.641608],\n          [-74.004753, 40.633898],\n          [-73.992947, 40.627687],\n          [-73.979755, 40.623387],\n          [-73.96568, 40.621247],\n          [-73.951317, 40.621297],\n          [-73.937242, 40.62335],\n          [-73.923915, 40.62707],\n          [-73.911634, 40.632063],\n          [-73.90054, 40.637951],\n          [-73.890654, 40.644418],\n          [-73.881917, 40.651226],\n          [-73.87423, 40.65821],\n          [-73.867477, 40.665265],\n          [-73.861546, 40.672331],\n          [-73.856334, 40.679384],\n          [-73.851753, 40.686421],\n          [-73.84773, 40.693457],\n          [-73.844209, 40.700516],\n          [-73.841151, 40.707632],\n          [-73.838529, 40.714843],\n          [-73.836335, 40.722192],\n          [-73.834577, 40.729722],\n          [-73.833281, 40.737479],\n          [-73.832495, 40.745506],\n          [-73.832291, 40.753837],\n          [-73.83277, 40.762497],\n          [-73.834065, 40.771488],\n          [-73.836343, 40.780774],\n          [-73.839806, 40.790268],\n          [-73.844672, 40.799806],\n          [-73.851158, 40.809129],\n          [-73.859428, 40.817876],\n          [-73.869536, 40.825598],\n          [-73.881366, 40.831822],\n          [-73.894592, 40.836133],\n          [-73.908711, 40.838281],\n          [-73.923121, 40.838237],\n          [-73.937242, 40.836186]\n        ]\n      ]\n    }\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 13\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.991069, 40.730054]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 13\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.000192, 40.718803]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.983848, 40.761727]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.974999, 40.680862]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.894885, 40.664714]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.90087, 40.884667]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.958066, 40.800581]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.940858, 40.679918]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.898788, 40.749719]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.929018, 40.75196]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.987409, 40.718306]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.891657, 40.678028]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.879625, 40.68152]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.844435, 40.695165]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 9\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.98177, 40.690648]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.82758, 40.583268]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.813651, 40.588091]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.891752, 40.829987]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.896617, 40.822142]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.90074, 40.856092]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.910136, 40.845899]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.918432, 40.833768]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.845624, 40.754621]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.869527, 40.749144]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.83003, 40.759599]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.832569, 40.846809]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.926138, 40.810476]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.851221, 40.834254]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 15\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.004131, 40.713064]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.847035, 40.836488]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 15\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.976713, 40.751807]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 13\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.982076, 40.74608]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 13\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.95107, 40.785671]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 13\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.959873, 40.77362]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.910383, 40.682851]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.983109, 40.677315]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.882034, 40.74237]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.920785, 40.678822]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.86748, 40.857192]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.866134, 40.877839]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.854315, 40.898286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.958099, 40.670765]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.893066, 40.823976]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.868356, 40.848768]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.950079, 40.656659]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.889404, 40.665517]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.927384, 40.818303]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.925691, 40.82823]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 15\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.967967, 40.762526]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.904097, 40.812117]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.874515, 40.829521]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.886282, 40.826525]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.867617, 40.831509]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.902984, 40.74563]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.755404, 40.603995]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.976336, 40.775519]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.964602, 40.791618]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.93956, 40.840718]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.893509, 40.866977]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.98459, 40.754184]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.962031, 40.661633]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.995348, 40.631478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.817012, 40.702898]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.83037, 40.714034]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.808004, 40.700382]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.946054, 40.747768]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.85286, 40.726505]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.87722, 40.736813]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.978171, 40.636118]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.95999, 40.688889]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.950312, 40.706126]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.950247, 40.714072]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.901916, 40.669145]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.903958, 40.688866]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.916638, 40.686415]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.947354, 40.703844]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.011515, 40.63497]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.929861, 40.756442]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.925822, 40.761431]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.986768, 40.754611]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.979188, 40.752768]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.957624, 40.674771]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.832162, 40.684331]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.000308, 40.732254]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 13\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.97192, 40.757106]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.976217, 40.788644]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.857362, 40.893143]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.982208, 40.77344]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.890549, 40.820947]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.006277, 40.722853]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.836321, 40.843863]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 13\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.986599, 40.739864]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.945264, 40.747022]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.981929, 40.768247]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.948916, 40.742215]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.995657, 40.74408]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.005367, 40.728251]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.837683, 40.681711]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.815832, 40.608402]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.9685, 40.576311]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.95358, 40.742625]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 13\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.96387, 40.768141]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 15\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.940163, 40.750635]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.843852, 40.680428]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 15\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.98995, 40.734673]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.953522, 40.689627]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.979735, 40.660035]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.980251, 40.666244]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.975775, 40.650781]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.979721, 40.644272]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.964357, 40.643904]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.962882, 40.650493]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.962694, 40.635141]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.961453, 40.655073]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.970956, 40.675294]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.977549, 40.68442]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.911945, 40.678339]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.975374, 40.687118]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.966795, 40.688094]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.972852, 40.677102]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.976783, 40.684488]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.978809, 40.683665]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.990151, 40.692403]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.835918, 40.672096]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.860495, 40.854363]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.855359, 40.858984]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.950426, 40.680438]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.980406, 40.68831]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.964222, 40.672032]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.948847, 40.645123]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.949455, 40.65086]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.948299, 40.639991]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.947541, 40.632842]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.950728, 40.662772]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.932932, 40.668978]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.942159, 40.669481]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.951183, 40.724479]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.954425, 40.731266]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.957832, 40.708383]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.953488, 40.706889]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.929848, 40.813223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.975248, 40.760086]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.969072, 40.757468]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.988698, 40.745453]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.987936, 40.749644]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.98168, 40.730974]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.986228, 40.755983]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.951423, 40.712774]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.940496, 40.711576]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.943943, 40.714575]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.956664, 40.717173]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.939792, 40.707391]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.943815, 40.746305]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.949599, 40.744128]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.932851, 40.752763]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.950359, 40.82655]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.944889, 40.834041]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.972322, 40.793919]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.968378, 40.799446]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.951822, 40.799074]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.96137, 40.79606]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.98197, 40.778453]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.972097, 40.781346]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.836923, 40.718044]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.968828, 40.785823]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.966847, 40.803966]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.964109, 40.807722]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.945495, 40.807753]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.94077, 40.814229]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.949625, 40.802097]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.905227, 40.850409]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.953676, 40.822007]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.936244, 40.82042]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.911793, 40.84848]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.907684, 40.853453]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.913399, 40.839305]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.940132, 40.840555]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.933595, 40.849504]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.929411, 40.855225]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.939703, 40.847391]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.776012, 40.592942]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.788521, 40.592374]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.82052, 40.585385]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.83559, 40.580955]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.768174, 40.595398]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.761352, 40.600066]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.803289, 40.707571]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.793474, 40.710517]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.862699, 40.749865]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.855333, 40.751729]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.861618, 40.729763]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.865049, 40.677044]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.979917, 40.783933]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.903096, 40.675344]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.002905, 40.733422]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.825797, 40.68595]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.98769, 40.755477]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.975957, 40.576033]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.993365, 40.747214]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 13\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.984264, 40.743069]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.828121, 40.852461]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.842951, 40.839892]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.997871, 40.741039]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.976041, 40.751431]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.796923, 40.590927]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.000495, 40.732337]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.860087, 40.692426]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.852051, 40.693703]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.836793, 40.697114]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.828349, 40.700481]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.903934, 40.695518]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.910975, 40.699471]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.88411, 40.666314]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.890358, 40.672709]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.885194, 40.679777]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.900562, 40.664057]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.902448, 40.663589]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.908958, 40.662617]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.90185, 40.646653]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.899547, 40.650468]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.91633, 40.661529]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.922521, 40.664766]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.899277, 40.658914]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.904289, 40.679366]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.898526, 40.676998]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.880749, 40.67413]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.873929, 40.683152]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.873321, 40.689616]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.867287, 40.69129]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.896402, 40.746324]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.891205, 40.746867]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.869432, 40.733097]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.912178, 40.699454]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.907581, 40.702918]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.918232, 40.703692]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.912548, 40.744149]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.913521, 40.756316]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.906065, 40.752824]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.918435, 40.743132]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.883697, 40.747658]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.876612, 40.748408]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.830301, 40.660476]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.834057, 40.668234]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.820692, 40.709161]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.844516, 40.721594]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.810832, 40.705417]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.801096, 40.702067]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.860214, 40.888028]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.879158, 40.828584]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.896434, 40.816103]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.918095, 40.770036]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.912034, 40.775035]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.907701, 40.816437]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.901777, 40.819487]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.914041, 40.805368]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.887693, 40.837195]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.867234, 40.865483]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.907656, 40.808719]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.897174, 40.86776]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.890064, 40.873411]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.93647, 40.82388]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.914684, 40.844434]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.897749, 40.861295]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.91779, 40.840074]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.887137, 40.873243]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.90983, 40.87456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.904834, 40.878855]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.915278, 40.869443]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.918819, 40.864614]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.919899, 40.868071]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.898583, 40.889248]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.879961, 40.840207]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.862509, 40.883887]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.884654, 40.879749]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.878854, 40.874811]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.867053, 40.871258]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.83859, 40.878663]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.830834, 40.888299]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.783817, 40.712645]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.850619, 40.903125]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.959244, 40.670342]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.905261, 40.68286]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.903117, 40.678456]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.846384, 40.869525]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.873346, 40.841863]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.925536, 40.860531]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.958372, 40.81558]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.955827, 40.680595]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.926722, 40.81833]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.917791, 40.816029]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.921399, 40.835536]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.919239, 40.807565]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.930996, 40.744586]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.924015, 40.743781]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.944087, 40.824766]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.938208, 40.830134]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.92565, 40.827904]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.930728, 40.679363]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.920526, 40.756987]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.928508, 40.693172]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.922156, 40.689583]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.927242, 40.697873]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.91972, 40.69866]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.921479, 40.766778]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.922913, 40.706606]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.933147, 40.706151]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.937138, 40.748917]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.97697, 40.629754]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.025509, 40.629741]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.023376, 40.634966]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.994658, 40.63626]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.005351, 40.631385]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.986829, 40.597703]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.993676, 40.60195]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.984521, 40.617108]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.990453, 40.620686]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.030876, 40.616621]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.028397, 40.622686]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.000582, 40.613158]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.99884, 40.619258]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.998174, 40.604676]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.001592, 40.607735]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.996857, 40.626224]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.996353, 40.624841]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.973376, 40.595924]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.972355, 40.603258]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.961353, 40.57771]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.954057, 40.586547]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.955811, 40.599308]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.957608, 40.608638]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.979084, 40.597235]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.980373, 40.604058]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.974592, 40.580738]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.974265, 40.589449]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.983765, 40.58884]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.978188, 40.592465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.973002, 40.608842]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.974048, 40.614356]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.975256, 40.620731]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.959243, 40.617397]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.98178, 40.611455]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.976069, 40.625017]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.960693, 40.625022]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.961517, 40.629208]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.955078, 40.595321]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.941937, 40.753739]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.985984, 40.762455]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.981697, 40.76297]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.981331, 40.758641]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.977368, 40.764085]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.966089, 40.764618]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.953234, 40.759171]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.981648, 40.768249]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.984209, 40.759801]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.980729, 40.764565]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.973347, 40.76481]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.967375, 40.762708]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.991056, 40.750373]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.987495, 40.755289]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.007623, 40.710162]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.008584, 40.714111]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.989735, 40.757307]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.949066, 40.694618]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.950234, 40.700376]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.992765, 40.742954]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.987771, 40.749789]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.985036, 40.688408]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.987218, 40.69247]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.990177, 40.713855]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.988078, 40.71868]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.989938, 40.723401]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.941377, 40.700404]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.935623, 40.697195]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.989778, 40.670271]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.995891, 40.673641]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.990756, 40.68611]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.986056, 40.692255]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.991818, 40.694196]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.990538, 40.735872]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.989344, 40.741302]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.992872, 40.665413]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.988301, 40.670846]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.98575, 40.73269]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.990669, 40.734763]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.896548, 40.674541]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.905316, 40.678333]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.01788, 40.641361]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.010006, 40.648938]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.003548, 40.655143]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.994448, 40.646484]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.014033, 40.645068]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.994202, 40.640912]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.99809, 40.660396]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.994946, 40.680273]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.003738, 40.726227]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.937969, 40.851694]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.934179, 40.859021]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.954797, 40.805058]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.952247, 40.811071]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.997702, 40.724328]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.992507, 40.730464]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.00657, 40.709415]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.00881, 40.71305]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.009266, 40.715478]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.985063, 40.690544]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.989997, 40.693218]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.903879, 40.858407]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.901033, 40.862802]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.009744, 40.712563]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.005229, 40.720824]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.941514, 40.830517]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.939892, 40.836012]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.007938, 40.710022]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.003406, 40.713233]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.999826, 40.718173]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.006985, 40.713272]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.001826, 40.719465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.013168, 40.70173]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.014007, 40.704913]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.011861, 40.707557]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.013007, 40.703142]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.012974, 40.707744]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.895898, 40.706225]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.889577, 40.711431]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.013783, 40.707512]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.012188, 40.711835]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.009508, 40.710367]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.011055, 40.706476]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.011131, 40.710512]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.009099, 40.70682]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.92727, 40.86549]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.993752, 40.718266]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.996203, 40.725296]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.993806, 40.720246]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.001054, 40.718814]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.998041, 40.745905]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.99339, 40.752287]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.891298, 40.746539]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.000201, 40.737825]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.947534, 40.817905]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.996208, 40.738227]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.99775, 40.737741]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.002578, 40.739776]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.001689, 40.740893]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.950426, 40.669938]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.993085, 40.697465]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.956848, 40.681379]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.965837, 40.683262]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.903075, 40.704412]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 13\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.944249, 40.79502]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 15\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.955588, 40.779491]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.986884, 40.699742]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.990531, 40.699336]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.973945, 40.686113]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.950589, 40.667883]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.87875, 40.886037]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 13\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.994659, 40.725914]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 13\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.947478, 40.7906]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 5\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.872106, 40.675376]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.85147, 40.679843]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.96379, 40.64094]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 13\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.941616, 40.798629]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.860816, 40.833225]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.006886, 40.719318]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 3\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.858992, 40.679371]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.981962, 40.753821]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 13\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.997141, 40.7223]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 15\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.937594, 40.804138]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 7\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.981235, 40.577281]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 11\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-74.002197, 40.755446]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.958361, 40.768802]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.95177, 40.777861]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"weight\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-73.947066, 40.784236]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-standard-deviational-ellipse/test/in/mta-stations-weighted.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"options\": {\n    \"weight\": \"weight\"\n  },\n  \"esriEllipse\": {\n    \"type\": \"Feature\",\n    \"properties\": {\n      \"CenterX\": -73.943062056800002,\n      \"CenterY\": 40.741053779799998,\n      \"XStdDist\": 0.070694780293799997,\n      \"YStdDist\": 0.095782853119499994,\n      \"Rotation\": 29.231047966799999\n    },\n    \"geometry\": {\n      \"type\": \"Polygon\",\n      \"coordinates\": [\n        [\n          [-73.943062, 40.828517],\n          [-73.954059, 40.825539],\n          [-73.964297, 40.821839],\n          [-73.973743, 40.817592],\n          [-73.982408, 40.812939],\n          [-73.990332, 40.807982],\n          [-73.997572, 40.802794],\n          [-74.004185, 40.79742],\n          [-74.010229, 40.791885],\n          [-74.015753, 40.786199],\n          [-74.020799, 40.780359],\n          [-74.025399, 40.774353],\n          [-74.029572, 40.76816],\n          [-74.033324, 40.761758],\n          [-74.036647, 40.755117],\n          [-74.039516, 40.748211],\n          [-74.041886, 40.741012],\n          [-74.043691, 40.7335],\n          [-74.044837, 40.725667],\n          [-74.045205, 40.717524],\n          [-74.044648, 40.709112],\n          [-74.042995, 40.700515],\n          [-74.040065, 40.691868],\n          [-74.035686, 40.683373],\n          [-74.02973, 40.675291],\n          [-74.022154, 40.667927],\n          [-74.013031, 40.661598],\n          [-74.00257, 40.656579],\n          [-73.991101, 40.653056],\n          [-73.979028, 40.651095],\n          [-73.966766, 40.65064],\n          [-73.954682, 40.651541],\n          [-73.943062, 40.65359],\n          [-73.932093, 40.656568],\n          [-73.921879, 40.660265],\n          [-73.912452, 40.664507],\n          [-73.903802, 40.669155],\n          [-73.895887, 40.674106],\n          [-73.888653, 40.679288],\n          [-73.882042, 40.684655],\n          [-73.875998, 40.690183],\n          [-73.87047, 40.695863],\n          [-73.865417, 40.701696],\n          [-73.860808, 40.707696],\n          [-73.856623, 40.713883],\n          [-73.852857, 40.72028],\n          [-73.849517, 40.726915],\n          [-73.846629, 40.733817],\n          [-73.844238, 40.741012],\n          [-73.842411, 40.74852],\n          [-73.84124, 40.756351],\n          [-73.840847, 40.764493],\n          [-73.841378, 40.772906],\n          [-73.843007, 40.781506],\n          [-73.845916, 40.790158],\n          [-73.850278, 40.79866],\n          [-73.856222, 40.806752],\n          [-73.863796, 40.814126],\n          [-73.872926, 40.820467],\n          [-73.883402, 40.825498],\n          [-73.894896, 40.829032],\n          [-73.906999, 40.831002],\n          [-73.919294, 40.831463],\n          [-73.93141, 40.830566],\n          [-73.943062, 40.828517]\n        ]\n      ]\n    }\n  },\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 13 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.991069, 40.730054] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 13 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.000192, 40.718803] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.983848, 40.761727] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.974999, 40.680862] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.894885, 40.664714] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.90087, 40.884667] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.958066, 40.800581] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.940858, 40.679918] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.898788, 40.749719] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.929018, 40.75196] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.987409, 40.718306] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.891657, 40.678028] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.879625, 40.68152] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.844435, 40.695165] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 9 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.98177, 40.690648] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.82758, 40.583268] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.813651, 40.588091] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.891752, 40.829987] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.896617, 40.822142] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.90074, 40.856092] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.910136, 40.845899] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.918432, 40.833768] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.845624, 40.754621] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.869527, 40.749144] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.83003, 40.759599] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.832569, 40.846809] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.926138, 40.810476] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.851221, 40.834254] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 15 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.004131, 40.713064] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.847035, 40.836488] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 15 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.976713, 40.751807] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 13 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.982076, 40.74608] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 13 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.95107, 40.785671] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 13 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.959873, 40.77362] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.910383, 40.682851] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.983109, 40.677315] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.882034, 40.74237] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.920785, 40.678822] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.86748, 40.857192] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.866134, 40.877839] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.854315, 40.898286] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.958099, 40.670765] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.893066, 40.823976] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.868356, 40.848768] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.950079, 40.656659] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.889404, 40.665517] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.927384, 40.818303] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.925691, 40.82823] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 15 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.967967, 40.762526] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.904097, 40.812117] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.874515, 40.829521] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.886282, 40.826525] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.867617, 40.831509] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.902984, 40.74563] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.755404, 40.603995] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.976336, 40.775519] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.964602, 40.791618] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.93956, 40.840718] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.893509, 40.866977] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.98459, 40.754184] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.962031, 40.661633] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.995348, 40.631478] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.817012, 40.702898] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.83037, 40.714034] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.808004, 40.700382] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.946054, 40.747768] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.85286, 40.726505] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.87722, 40.736813] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.978171, 40.636118] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.95999, 40.688889] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.950312, 40.706126] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.950247, 40.714072] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.901916, 40.669145] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.903958, 40.688866] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.916638, 40.686415] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.947354, 40.703844] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.011515, 40.63497] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.929861, 40.756442] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.925822, 40.761431] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.986768, 40.754611] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.979188, 40.752768] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.957624, 40.674771] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.832162, 40.684331] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.000308, 40.732254] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 13 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.97192, 40.757106] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.976217, 40.788644] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.857362, 40.893143] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.982208, 40.77344] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.890549, 40.820947] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.006277, 40.722853] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.836321, 40.843863] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 13 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.986599, 40.739864] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.945264, 40.747022] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.981929, 40.768247] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.948916, 40.742215] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.995657, 40.74408] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.005367, 40.728251] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.837683, 40.681711] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.815832, 40.608402] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.9685, 40.576311] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.95358, 40.742625] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 13 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.96387, 40.768141] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 15 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.940163, 40.750635] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.843852, 40.680428] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 15 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.98995, 40.734673] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.953522, 40.689627] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.979735, 40.660035] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.980251, 40.666244] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.975775, 40.650781] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.979721, 40.644272] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.964357, 40.643904] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.962882, 40.650493] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.962694, 40.635141] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.961453, 40.655073] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.970956, 40.675294] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.977549, 40.68442] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.911945, 40.678339] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.975374, 40.687118] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.966795, 40.688094] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.972852, 40.677102] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.976783, 40.684488] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.978809, 40.683665] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.990151, 40.692403] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.835918, 40.672096] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.860495, 40.854363] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.855359, 40.858984] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.950426, 40.680438] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.980406, 40.68831] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.964222, 40.672032] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.948847, 40.645123] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.949455, 40.65086] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.948299, 40.639991] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.947541, 40.632842] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.950728, 40.662772] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.932932, 40.668978] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.942159, 40.669481] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.951183, 40.724479] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.954425, 40.731266] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.957832, 40.708383] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.953488, 40.706889] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.929848, 40.813223] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.975248, 40.760086] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.969072, 40.757468] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.988698, 40.745453] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.987936, 40.749644] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.98168, 40.730974] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.986228, 40.755983] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.951423, 40.712774] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.940496, 40.711576] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.943943, 40.714575] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.956664, 40.717173] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.939792, 40.707391] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.943815, 40.746305] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.949599, 40.744128] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.932851, 40.752763] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.950359, 40.82655] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.944889, 40.834041] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.972322, 40.793919] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.968378, 40.799446] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.951822, 40.799074] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.96137, 40.79606] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.98197, 40.778453] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.972097, 40.781346] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.836923, 40.718044] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.968828, 40.785823] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.966847, 40.803966] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.964109, 40.807722] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.945495, 40.807753] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.94077, 40.814229] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.949625, 40.802097] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.905227, 40.850409] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.953676, 40.822007] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.936244, 40.82042] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.911793, 40.84848] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.907684, 40.853453] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.913399, 40.839305] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.940132, 40.840555] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.933595, 40.849504] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.929411, 40.855225] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.939703, 40.847391] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.776012, 40.592942] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.788521, 40.592374] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.82052, 40.585385] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.83559, 40.580955] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.768174, 40.595398] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.761352, 40.600066] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.803289, 40.707571] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.793474, 40.710517] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.862699, 40.749865] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.855333, 40.751729] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.861618, 40.729763] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.865049, 40.677044] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.979917, 40.783933] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.903096, 40.675344] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.002905, 40.733422] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.825797, 40.68595] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.98769, 40.755477] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.975957, 40.576033] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.993365, 40.747214] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 13 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.984264, 40.743069] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.828121, 40.852461] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.842951, 40.839892] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.997871, 40.741039] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.976041, 40.751431] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.796923, 40.590927] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.000495, 40.732337] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.860087, 40.692426] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.852051, 40.693703] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.836793, 40.697114] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.828349, 40.700481] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.903934, 40.695518] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.910975, 40.699471] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.88411, 40.666314] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.890358, 40.672709] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.885194, 40.679777] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.900562, 40.664057] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.902448, 40.663589] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.908958, 40.662617] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.90185, 40.646653] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.899547, 40.650468] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.91633, 40.661529] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.922521, 40.664766] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.899277, 40.658914] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.904289, 40.679366] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.898526, 40.676998] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.880749, 40.67413] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.873929, 40.683152] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.873321, 40.689616] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.867287, 40.69129] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.896402, 40.746324] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.891205, 40.746867] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.869432, 40.733097] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.912178, 40.699454] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.907581, 40.702918] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.918232, 40.703692] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.912548, 40.744149] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.913521, 40.756316] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.906065, 40.752824] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.918435, 40.743132] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.883697, 40.747658] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.876612, 40.748408] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.830301, 40.660476] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.834057, 40.668234] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.820692, 40.709161] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.844516, 40.721594] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.810832, 40.705417] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.801096, 40.702067] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.860214, 40.888028] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.879158, 40.828584] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.896434, 40.816103] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.918095, 40.770036] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.912034, 40.775035] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.907701, 40.816437] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.901777, 40.819487] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.914041, 40.805368] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.887693, 40.837195] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.867234, 40.865483] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.907656, 40.808719] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.897174, 40.86776] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.890064, 40.873411] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.93647, 40.82388] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.914684, 40.844434] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.897749, 40.861295] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.91779, 40.840074] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.887137, 40.873243] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.90983, 40.87456] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.904834, 40.878855] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.915278, 40.869443] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.918819, 40.864614] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.919899, 40.868071] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.898583, 40.889248] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.879961, 40.840207] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.862509, 40.883887] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.884654, 40.879749] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.878854, 40.874811] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.867053, 40.871258] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.83859, 40.878663] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.830834, 40.888299] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.783817, 40.712645] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.850619, 40.903125] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.959244, 40.670342] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.905261, 40.68286] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.903117, 40.678456] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.846384, 40.869525] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.873346, 40.841863] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.925536, 40.860531] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.958372, 40.81558] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.955827, 40.680595] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.926722, 40.81833] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.917791, 40.816029] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.921399, 40.835536] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.919239, 40.807565] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.930996, 40.744586] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.924015, 40.743781] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.944087, 40.824766] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.938208, 40.830134] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.92565, 40.827904] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.930728, 40.679363] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.920526, 40.756987] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.928508, 40.693172] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.922156, 40.689583] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.927242, 40.697873] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.91972, 40.69866] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.921479, 40.766778] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.922913, 40.706606] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.933147, 40.706151] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.937138, 40.748917] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.97697, 40.629754] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.025509, 40.629741] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.023376, 40.634966] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.994658, 40.63626] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.005351, 40.631385] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.986829, 40.597703] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.993676, 40.60195] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.984521, 40.617108] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.990453, 40.620686] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.030876, 40.616621] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.028397, 40.622686] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.000582, 40.613158] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.99884, 40.619258] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.998174, 40.604676] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.001592, 40.607735] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.996857, 40.626224] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.996353, 40.624841] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.973376, 40.595924] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.972355, 40.603258] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.961353, 40.57771] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.954057, 40.586547] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.955811, 40.599308] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.957608, 40.608638] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.979084, 40.597235] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.980373, 40.604058] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.974592, 40.580738] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.974265, 40.589449] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.983765, 40.58884] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.978188, 40.592465] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.973002, 40.608842] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.974048, 40.614356] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.975256, 40.620731] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.959243, 40.617397] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.98178, 40.611455] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.976069, 40.625017] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.960693, 40.625022] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.961517, 40.629208] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.955078, 40.595321] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.941937, 40.753739] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.985984, 40.762455] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.981697, 40.76297] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.981331, 40.758641] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.977368, 40.764085] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.966089, 40.764618] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.953234, 40.759171] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.981648, 40.768249] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.984209, 40.759801] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.980729, 40.764565] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.973347, 40.76481] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.967375, 40.762708] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.991056, 40.750373] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.987495, 40.755289] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.007623, 40.710162] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.008584, 40.714111] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.989735, 40.757307] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.949066, 40.694618] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.950234, 40.700376] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.992765, 40.742954] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.987771, 40.749789] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.985036, 40.688408] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.987218, 40.69247] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.990177, 40.713855] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.988078, 40.71868] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.989938, 40.723401] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.941377, 40.700404] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.935623, 40.697195] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.989778, 40.670271] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.995891, 40.673641] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.990756, 40.68611] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.986056, 40.692255] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.991818, 40.694196] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.990538, 40.735872] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.989344, 40.741302] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.992872, 40.665413] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.988301, 40.670846] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.98575, 40.73269] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.990669, 40.734763] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.896548, 40.674541] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.905316, 40.678333] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.01788, 40.641361] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.010006, 40.648938] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.003548, 40.655143] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.994448, 40.646484] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.014033, 40.645068] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.994202, 40.640912] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.99809, 40.660396] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.994946, 40.680273] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.003738, 40.726227] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.937969, 40.851694] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.934179, 40.859021] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.954797, 40.805058] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.952247, 40.811071] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.997702, 40.724328] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.992507, 40.730464] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.00657, 40.709415] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.00881, 40.71305] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.009266, 40.715478] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.985063, 40.690544] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.989997, 40.693218] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.903879, 40.858407] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.901033, 40.862802] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.009744, 40.712563] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.005229, 40.720824] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.941514, 40.830517] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.939892, 40.836012] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.007938, 40.710022] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.003406, 40.713233] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.999826, 40.718173] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.006985, 40.713272] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.001826, 40.719465] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.013168, 40.70173] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.014007, 40.704913] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.011861, 40.707557] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.013007, 40.703142] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.012974, 40.707744] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.895898, 40.706225] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.889577, 40.711431] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.013783, 40.707512] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.012188, 40.711835] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.009508, 40.710367] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.011055, 40.706476] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.011131, 40.710512] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.009099, 40.70682] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.92727, 40.86549] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.993752, 40.718266] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.996203, 40.725296] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.993806, 40.720246] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.001054, 40.718814] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.998041, 40.745905] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.99339, 40.752287] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.891298, 40.746539] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.000201, 40.737825] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.947534, 40.817905] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.996208, 40.738227] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.99775, 40.737741] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.002578, 40.739776] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.001689, 40.740893] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.950426, 40.669938] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.993085, 40.697465] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.956848, 40.681379] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.965837, 40.683262] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.903075, 40.704412] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 13 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.944249, 40.79502] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 15 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.955588, 40.779491] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.986884, 40.699742] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.990531, 40.699336] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.973945, 40.686113] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.950589, 40.667883] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.87875, 40.886037] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 13 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.994659, 40.725914] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 13 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.947478, 40.7906] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 5 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.872106, 40.675376] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.85147, 40.679843] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.96379, 40.64094] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 13 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.941616, 40.798629] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.860816, 40.833225] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.006886, 40.719318] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 3 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.858992, 40.679371] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.981962, 40.753821] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 13 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.997141, 40.7223] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 15 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.937594, 40.804138] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 7 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.981235, 40.577281] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 11 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-74.002197, 40.755446] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.958361, 40.768802] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.95177, 40.777861] }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"weight\": 1 },\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-73.947066, 40.784236] }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-standard-deviational-ellipse/test/out/mta-stations-unweighted.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"CenterX\": -73.9372419891,\n        \"CenterY\": 40.7297677104,\n        \"XStdDist\": 0.0761184659414,\n        \"YStdDist\": 0.111162799783,\n        \"Rotation\": 16.4804526813,\n        \"fill\": \"#A00\",\n        \"stroke\": \"#A00\",\n        \"stroke-width\": 3,\n        \"stroke-opacity\": 1,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.937242, 40.836186],\n            [-73.95061, 40.832464],\n            [-73.962925, 40.827467],\n            [-73.974045, 40.821573],\n            [-73.983949, 40.815099],\n            [-73.992697, 40.808283],\n            [-74.00039, 40.801291],\n            [-74.007142, 40.794228],\n            [-74.013069, 40.787155],\n            [-74.018273, 40.780095],\n            [-74.022843, 40.773051],\n            [-74.026852, 40.76601],\n            [-74.030356, 40.758945],\n            [-74.033397, 40.751824],\n            [-74.035999, 40.744608],\n            [-74.038172, 40.737256],\n            [-74.039907, 40.729722],\n            [-74.041179, 40.721963],\n            [-74.041939, 40.713935],\n            [-74.042117, 40.705603],\n            [-74.041611, 40.696944],\n            [-74.04029, 40.687956],\n            [-74.037986, 40.678674],\n            [-74.034501, 40.669186],\n            [-74.029617, 40.659656],\n            [-74.023121, 40.650342],\n            [-74.01485, 40.641608],\n            [-74.004753, 40.633898],\n            [-73.992947, 40.627687],\n            [-73.979755, 40.623387],\n            [-73.96568, 40.621247],\n            [-73.951317, 40.621297],\n            [-73.937242, 40.62335],\n            [-73.923915, 40.62707],\n            [-73.911634, 40.632063],\n            [-73.90054, 40.637951],\n            [-73.890654, 40.644418],\n            [-73.881917, 40.651226],\n            [-73.87423, 40.65821],\n            [-73.867477, 40.665265],\n            [-73.861546, 40.672331],\n            [-73.856334, 40.679384],\n            [-73.851753, 40.686421],\n            [-73.84773, 40.693457],\n            [-73.844209, 40.700516],\n            [-73.841151, 40.707632],\n            [-73.838529, 40.714843],\n            [-73.836335, 40.722192],\n            [-73.834577, 40.729722],\n            [-73.833281, 40.737479],\n            [-73.832495, 40.745506],\n            [-73.832291, 40.753837],\n            [-73.83277, 40.762497],\n            [-73.834065, 40.771488],\n            [-73.836343, 40.780774],\n            [-73.839806, 40.790268],\n            [-73.844672, 40.799806],\n            [-73.851158, 40.809129],\n            [-73.859428, 40.817876],\n            [-73.869536, 40.825598],\n            [-73.881366, 40.831822],\n            [-73.894592, 40.836133],\n            [-73.908711, 40.838281],\n            [-73.923121, 40.838237],\n            [-73.937242, 40.836186]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"standardDeviationalEllipse\": {\n          \"meanCenterCoordinates\": [-73.93724145877376, 40.72976717758984],\n          \"semiMajorAxis\": 0.07611848164718067,\n          \"semiMinorAxis\": 0.11116279583689635,\n          \"numberOfFeatures\": 473,\n          \"angle\": 16.480444767293083,\n          \"percentageWithinEllipse\": 71.88160676532769\n        },\n        \"fill\": \"#FFF\",\n        \"stroke\": \"#0A0\",\n        \"stroke-width\": 3,\n        \"stroke-opacity\": 1,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.03359324546851, 40.75132103218129],\n            [-74.02980293400115, 40.76012863103802],\n            [-74.02528552411586, 40.76887197102854],\n            [-74.0200350928131, 40.777482909918255],\n            [-74.01405082863232, 40.7858879763643],\n            [-74.00733773756559, 40.79400823663968],\n            [-73.99990742755185, 40.801759182943094],\n            [-73.99177898248347, 40.80905064919711],\n            [-73.98297993893047, 40.81578676164539],\n            [-73.97354738172352, 40.821865933378426],\n            [-73.96352917838684, 40.82718091429612],\n            [-73.9529853775278, 40.8316189111703],\n            [-73.94198980319563, 40.835061796717234],\n            [-73.93063188669697, 40.8373864324002],\n            [-73.919018790595, 40.8384651377768],\n            [-73.90727789847813, 40.83816635070532],\n            [-73.89555977154562, 40.83635553942771],\n            [-73.88443014504873, 40.83304344443191],\n            [-73.87437098343747, 40.82845426835252],\n            [-73.86541133661937, 40.82276283715078],\n            [-73.85756288120297, 40.8161319079139],\n            [-73.8508231008489, 40.80871263328326],\n            [-73.84517788429955, 40.80064504272652],\n            [-73.8406036708805, 40.79205853130578],\n            [-73.83706923820884, 40.78307234930186],\n            [-73.83453720269986, 40.77379608793092],\n            [-73.83296528646396, 40.76433015771664],\n            [-73.83230739197033, 40.75476625704031],\n            [-73.83251451691409, 40.74518782909243],\n            [-73.8335355350701, 40.73567050597184],\n            [-73.83531786388474, 40.72628253907192],\n            [-73.83780803569908, 40.71708521519108],\n            [-73.84095218649749, 40.70813325803411],\n            [-73.84476451396527, 40.699331854062216],\n            [-73.84930090197322, 40.690595566053084],\n            [-73.85456655089425, 40.68199237410667],\n            [-73.86056159765634, 40.67359555113398],\n            [-73.86728043775769, 40.66548379754552],\n            [-73.87471097122668, 40.657741355762894],\n            [-73.88283376112537, 40.650458098876975],\n            [-73.89162109071555, 40.64372958637409],\n            [-73.90103590221698, 40.63765707803131],\n            [-73.91103059593168, 40.63234749469166],\n            [-73.92154566302204, 40.62791331145134],\n            [-73.93250811787672, 40.624472364501344],\n            [-73.94382968598299, 40.6221475469883],\n            [-73.95540468933167, 40.62106636106392],\n            [-73.9671075517279, 40.62136028164354],\n            [-73.97878981795107, 40.62316387047818],\n            [-73.98988907748351, 40.626466916318215],\n            [-73.99992569571032, 40.63104607657647],\n            [-74.00887104266555, 40.63672711589932],\n            [-74.01671341138922, 40.64334780103107],\n            [-74.02345492440752, 40.65075742560566],\n            [-74.02910901786136, 40.658816323886754],\n            [-74.0336983714282, 40.667395381445],\n            [-74.03725318812609, 40.67637554829524],\n            [-74.03980975286483, 40.68564735834254],\n            [-74.04140921605757, 40.69511045782774],\n            [-74.04209656113622, 40.704673144647536],\n            [-74.04191972396667, 40.71425191984239],\n            [-74.0409288389554, 40.723771052124086],\n            [-74.03917559175294, 40.73316215600696],\n            [-74.03671266236184, 40.742363783879206],\n            [-74.03359324546851, 40.75132103218129]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-standard-deviational-ellipse/test/out/mta-stations-weighted.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"CenterX\": -73.9430620568,\n        \"CenterY\": 40.7410537798,\n        \"XStdDist\": 0.0706947802938,\n        \"YStdDist\": 0.0957828531195,\n        \"Rotation\": 29.2310479668,\n        \"fill\": \"#A00\",\n        \"stroke\": \"#A00\",\n        \"stroke-width\": 3,\n        \"stroke-opacity\": 1,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-73.943062, 40.828517],\n            [-73.954059, 40.825539],\n            [-73.964297, 40.821839],\n            [-73.973743, 40.817592],\n            [-73.982408, 40.812939],\n            [-73.990332, 40.807982],\n            [-73.997572, 40.802794],\n            [-74.004185, 40.79742],\n            [-74.010229, 40.791885],\n            [-74.015753, 40.786199],\n            [-74.020799, 40.780359],\n            [-74.025399, 40.774353],\n            [-74.029572, 40.76816],\n            [-74.033324, 40.761758],\n            [-74.036647, 40.755117],\n            [-74.039516, 40.748211],\n            [-74.041886, 40.741012],\n            [-74.043691, 40.7335],\n            [-74.044837, 40.725667],\n            [-74.045205, 40.717524],\n            [-74.044648, 40.709112],\n            [-74.042995, 40.700515],\n            [-74.040065, 40.691868],\n            [-74.035686, 40.683373],\n            [-74.02973, 40.675291],\n            [-74.022154, 40.667927],\n            [-74.013031, 40.661598],\n            [-74.00257, 40.656579],\n            [-73.991101, 40.653056],\n            [-73.979028, 40.651095],\n            [-73.966766, 40.65064],\n            [-73.954682, 40.651541],\n            [-73.943062, 40.65359],\n            [-73.932093, 40.656568],\n            [-73.921879, 40.660265],\n            [-73.912452, 40.664507],\n            [-73.903802, 40.669155],\n            [-73.895887, 40.674106],\n            [-73.888653, 40.679288],\n            [-73.882042, 40.684655],\n            [-73.875998, 40.690183],\n            [-73.87047, 40.695863],\n            [-73.865417, 40.701696],\n            [-73.860808, 40.707696],\n            [-73.856623, 40.713883],\n            [-73.852857, 40.72028],\n            [-73.849517, 40.726915],\n            [-73.846629, 40.733817],\n            [-73.844238, 40.741012],\n            [-73.842411, 40.74852],\n            [-73.84124, 40.756351],\n            [-73.840847, 40.764493],\n            [-73.841378, 40.772906],\n            [-73.843007, 40.781506],\n            [-73.845916, 40.790158],\n            [-73.850278, 40.79866],\n            [-73.856222, 40.806752],\n            [-73.863796, 40.814126],\n            [-73.872926, 40.820467],\n            [-73.883402, 40.825498],\n            [-73.894896, 40.829032],\n            [-73.906999, 40.831002],\n            [-73.919294, 40.831463],\n            [-73.93141, 40.830566],\n            [-73.943062, 40.828517]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"standardDeviationalEllipse\": {\n          \"meanCenterCoordinates\": [-73.94306156958916, 40.74105326364194],\n          \"semiMajorAxis\": 0.07069482381164381,\n          \"semiMinorAxis\": 0.095782813512421,\n          \"numberOfFeatures\": 473,\n          \"angle\": 29.231003681507175,\n          \"percentageWithinEllipse\": 60.46511627906977\n        },\n        \"fill\": \"#FFF\",\n        \"stroke\": \"#0A0\",\n        \"stroke-width\": 3,\n        \"stroke-opacity\": 1,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-74.02452801068807, 40.775547173294186],\n            [-74.01893422646326, 40.78259752726428],\n            [-74.01268414445943, 40.78943811380472],\n            [-74.00579638065156, 40.796006107373],\n            [-73.99829617235616, 40.80223594694747],\n            [-73.99021592245862, 40.80805957219015],\n            [-73.98159576262077, 40.8134067167014],\n            [-73.9724841338293, 40.81820526653445],\n            [-73.9629383821334, 40.82238169342446],\n            [-73.95302536680158, 40.8258615737414],\n            [-73.94282207737366, 40.82857020607593],\n            [-73.93241625516164, 40.83043334270903],\n            [-73.92190701361201, 40.831378053136305],\n            [-73.91140545051374, 40.83133374149704],\n            [-73.90103524323057, 40.83023334445488],\n            [-73.89093321581471, 40.82801474214651],\n            [-73.88124986383536, 40.82462242277314],\n            [-73.87237279234334, 40.82014233496311],\n            [-73.86460097509195, 40.81477985802708],\n            [-73.85795003463295, 40.80866105611467],\n            [-73.85242093101229, 40.80190655870187],\n            [-73.84800215245467, 40.79463104771375],\n            [-73.84467163625422, 40.786942903004004],\n            [-73.84239845801515, 40.77894397546494],\n            [-73.84114432030273, 40.77072946332155],\n            [-73.84086486634928, 40.76238787196388],\n            [-73.84151084025547, 40.75400104139124],\n            [-73.8430291118138, 40.7456442282593],\n            [-73.84536358143308, 40.73738623183474],\n            [-73.84845597849838, 40.72928955501612],\n            [-73.85224656474314, 40.72141059307866],\n            [-73.85667475275184, 40.71379984402171],\n            [-73.86167964848912, 40.70650213540208],\n            [-73.86728368644258, 40.69945937985531],\n            [-73.87354025396233, 40.69262664020811],\n            [-73.88043036281451, 40.68606650975553],\n            [-73.88792850688942, 40.67984429861887],\n            [-73.89600213853876, 40.67402780376825],\n            [-73.90461112478266, 40.668687023307626],\n            [-73.91370718412121, 40.66389380684423],\n            [-73.92323330506247, 40.659721432427446],\n            [-73.93312314796478, 40.656244098923295],\n            [-73.94330043241949, 40.653536320714245],\n            [-73.953678313213, 40.65167220918066],\n            [-73.96415874896458, 40.65072462239258],\n            [-73.9746318689202, 40.650764160635475],\n            [-73.98497534519998, 40.651857980554134],\n            [-73.99505378020882, 40.65406839446653],\n            [-74.00471812214236, 40.657451213261425],\n            [-74.01358239966163, 40.66192116955677],\n            [-74.02134836223475, 40.66727365770246],\n            [-74.02800018349505, 40.67338307986641],\n            [-74.03353641529728, 40.68012919335254],\n            [-74.03796786068695, 40.687397618451094],\n            [-74.04131571419732, 40.695080192396205],\n            [-74.04360992940073, 40.70307519921561],\n            [-74.04488778136994, 40.7112874990724],\n            [-74.04519259763617, 40.71962857599848],\n            [-74.04457263584214, 40.72801651930139],\n            [-74.04308008991914, 40.73637595110584],\n            [-74.04077020950417, 40.744637910270065],\n            [-74.03770051963454, 40.75273970114755],\n            [-74.03393012963858, 40.76062471424352],\n            [-74.02951912168086, 40.76824222466161],\n            [-74.02452801068807, 40.775547173294186]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-standard-deviational-ellipse/test.ts",
    "content": "import { Feature, FeatureCollection, Point } from \"geojson\";\nimport test from \"tape\";\nimport { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { featureCollection } from \"@turf/helpers\";\nimport { standardDeviationalEllipse } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-standard-deviational-ellipse\", (t) => {\n  glob\n    .sync(path.join(__dirname, \"test\", \"in\", \"*.json\"))\n    .forEach((filepath) => {\n      // Define params\n      const { name } = path.parse(filepath);\n      const geojson = loadJsonFileSync(filepath) as FeatureCollection<Point> & {\n        options: any;\n        esriEllipse: any;\n      }; // Non-standard FeatureCollection options used for testing.\n      const options = geojson.options;\n      // Optional: ESRI Polygon in GeoJSON test/in to compare results\n      const esriEllipse = geojson.esriEllipse;\n\n      // Colorized results\n      const results = featureCollection([\n        colorize(standardDeviationalEllipse(geojson, options)),\n      ]);\n      if (esriEllipse)\n        results.features.unshift(colorize(esriEllipse, \"#A00\", \"#A00\", 0.5));\n\n      // Save to file\n      const out = filepath.replace(\n        path.join(\"test\", \"in\"),\n        path.join(\"test\", \"out\")\n      );\n      if (process.env.REGEN) writeJsonFileSync(out, results);\n      t.deepEqual(results, loadJsonFileSync(out), name);\n    });\n  t.end();\n});\n\nfunction colorize(\n  feature: Feature,\n  stroke = \"#0A0\",\n  fill = \"#FFF\",\n  opacity = 0\n) {\n  const properties = {\n    fill,\n    stroke,\n    \"stroke-width\": 3,\n    \"stroke-opacity\": 1,\n    \"fill-opacity\": opacity,\n  };\n  // Make sure feature properties is defined.\n  feature.properties = feature.properties ?? {};\n  Object.assign(feature.properties, properties);\n  return feature;\n}\n"
  },
  {
    "path": "packages/turf-standard-deviational-ellipse/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-standard-deviational-ellipse/types.ts",
    "content": "import { points } from \"@turf/helpers\";\nimport { standardDeviationalEllipse } from \"./index.js\";\n\nconst pts = points([\n  [10, 10],\n  [0, 5],\n]);\nconst stdEllipse = standardDeviationalEllipse(pts);\n\n// Access custom properties\n// It's correct to use optional chaining here ?. as even though the function\n// *always* adds properties, that does not change the overall optional nature of\n// the containing properties attribute.\nstdEllipse.properties?.standardDeviationalEllipse.meanCenterCoordinates;\n"
  },
  {
    "path": "packages/turf-tag/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-tag/README.md",
    "content": "# @turf/tag\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## tag\n\nTakes a set of [points][1] and a set of [polygons][2] and/or [multipolygons][3] and performs a spatial join.\n\n### Parameters\n\n*   `points` **[FeatureCollection][4]<[Point][1]>** input points\n*   `polygons` **[FeatureCollection][4]<([Polygon][2] | [MultiPolygon][3])>** input (multi)polygons\n*   `field` **[string][5]** property in `polygons` to add to joined {<Point>} features\n*   `outField` **[string][5]** property in `points` in which to store joined property from `polygons`\n\n### Examples\n\n```javascript\nvar pt1 = turf.point([-77, 44]);\nvar pt2 = turf.point([-77, 38]);\nvar poly1 = turf.polygon([[\n  [-81, 41],\n  [-81, 47],\n  [-72, 47],\n  [-72, 41],\n  [-81, 41]\n]], {pop: 3000});\nvar poly2 = turf.polygon([[\n  [-81, 35],\n  [-81, 41],\n  [-72, 41],\n  [-72, 35],\n  [-81, 35]\n]], {pop: 1000});\n\nvar points = turf.featureCollection([pt1, pt2]);\nvar polygons = turf.featureCollection([poly1, poly2]);\n\nvar tagged = turf.tag(points, polygons, 'pop', 'population');\n\n//addToMap\nvar addToMap = [tagged, polygons]\n```\n\nReturns **[FeatureCollection][4]<[Point][1]>** points with `containingPolyId` property containing values from `polyId`\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/tag\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-tag/bench.ts",
    "content": "import fs from \"fs\";\nimport Benchmark from \"benchmark\";\nimport { tag } from \"./index.js\";\n\nvar points = JSON.parse(fs.readFileSync(\"./test/tagPoints.geojson\"));\nvar polygons = JSON.parse(fs.readFileSync(\"./test/tagPolygons.geojson\"));\n\nvar suite = new Benchmark.Suite(\"turf-tag\");\nsuite\n  .add(\"turf-tag\", function () {\n    tag(points, polygons, \"polyID\", \"containingPolyID\");\n  })\n  .on(\"cycle\", function (event) {\n    console.log(String(event.target));\n  })\n  .run();\n"
  },
  {
    "path": "packages/turf-tag/index.ts",
    "content": "import { Point, FeatureCollection, Polygon, MultiPolygon } from \"geojson\";\nimport { booleanPointInPolygon } from \"@turf/boolean-point-in-polygon\";\nimport { clone } from \"@turf/clone\";\nimport { featureEach } from \"@turf/meta\";\n\n/**\n * Takes a set of {@link Point|points} and a set of {@link Polygon|polygons} and/or {@link MultiPolygon|multipolygons} and performs a spatial join.\n *\n * @function\n * @param {FeatureCollection<Point>} points input points\n * @param {FeatureCollection<Polygon|MultiPolygon>} polygons input (multi)polygons\n * @param {string} field property in `polygons` to add to joined {<Point>} features\n * @param {string} outField property in `points` in which to store joined property from `polygons`\n * @returns {FeatureCollection<Point>} points with `containingPolyId` property containing values from `polyId`\n * @example\n * var pt1 = turf.point([-77, 44]);\n * var pt2 = turf.point([-77, 38]);\n * var poly1 = turf.polygon([[\n *   [-81, 41],\n *   [-81, 47],\n *   [-72, 47],\n *   [-72, 41],\n *   [-81, 41]\n * ]], {pop: 3000});\n * var poly2 = turf.polygon([[\n *   [-81, 35],\n *   [-81, 41],\n *   [-72, 41],\n *   [-72, 35],\n *   [-81, 35]\n * ]], {pop: 1000});\n *\n * var points = turf.featureCollection([pt1, pt2]);\n * var polygons = turf.featureCollection([poly1, poly2]);\n *\n * var tagged = turf.tag(points, polygons, 'pop', 'population');\n *\n * //addToMap\n * var addToMap = [tagged, polygons]\n */\nfunction tag(\n  points: FeatureCollection<Point>,\n  polygons: FeatureCollection<Polygon | MultiPolygon>,\n  field: string,\n  outField: string\n): FeatureCollection<Point> {\n  // prevent mutations\n  points = clone(points);\n  polygons = clone(polygons);\n  featureEach(points, function (pt) {\n    if (!pt.properties) pt.properties = {};\n    featureEach(polygons, function (poly) {\n      if (pt.properties && poly.properties) {\n        if (pt.properties[outField] === undefined) {\n          if (booleanPointInPolygon(pt, poly))\n            pt.properties[outField] = poly.properties[field];\n        }\n      }\n    });\n  });\n  return points;\n}\n\nexport { tag };\nexport default tag;\n"
  },
  {
    "path": "packages/turf-tag/package.json",
    "content": "{\n  \"name\": \"@turf/tag\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a set of points and a set of polygons and/or multipolygons and performs a spatial join.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"geojson\",\n    \"turf\",\n    \"tag\",\n    \"polygon\",\n    \"featurecollection\",\n    \"point\",\n    \"data\",\n    \"analysis\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/boolean-point-in-polygon\": \"workspace:*\",\n    \"@turf/clone\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-tag/test/tagMultiPolygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"polyID\": 1\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [149.12554264068604, -35.30367340303379],\n              [149.129319190979, -35.30601992579261],\n              [149.13966178894043, -35.301852174285195],\n              [149.13820266723633, -35.29898015335499],\n              [149.13094997406006, -35.29470695796296],\n              [149.12691593170166, -35.29421657684743],\n              [149.12554264068604, -35.30367340303379]\n            ]\n          ],\n          [\n            [\n              [149.1247272491455, -35.303813495854975],\n              [149.12163734436035, -35.304373864714066],\n              [149.12026405334473, -35.30601992579261],\n              [149.11949157714844, -35.30763093186632],\n              [149.11983489990234, -35.310012360341524],\n              [149.12228107452393, -35.31183340540136],\n              [149.1256284713745, -35.312008503727334],\n              [149.1277313232422, -35.31113300830699],\n              [149.1289758682251, -35.30938198903829],\n              [149.12940502166745, -35.30742080245862],\n              [149.12850379943848, -35.30577476988212],\n              [149.1269588470459, -35.304513956322424],\n              [149.12477016448972, -35.3036383797906],\n              [149.1247272491455, -35.303813495854975]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"polyID\": 2\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [149.1418933868408, -35.310782807485545],\n            [149.1456699371338, -35.31638583868518],\n            [149.14772987365723, -35.315720499040026],\n            [149.14875984191895, -35.311308108149134],\n            [149.1476011276245, -35.30959211335184],\n            [149.1454553604126, -35.310152442186244],\n            [149.14283752441406, -35.3094870512633],\n            [149.1418933868408, -35.310782807485545]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-tag/test/tagMultiPolygonsPoints.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [149.14446830749512, -35.311378147979866]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [149.1457986831665, -35.31365440946375]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [149.12734508514404, -35.30020602841594]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [149.12288188934326, -35.31785657005635]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [149.1247272491455, -35.30892671781984]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-tag/test/tagPoints.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.26959228515624, 37.82768377181361]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.31216430664061, 37.72782336496339]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.21397399902344, 37.77722770873696]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.20230102539062, 37.72890952922229]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.12333679199219, 37.688167468408025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.17140197753905, 37.75334401310656]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.16796875, 37.688167468408025]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.16728210449219, 37.72673718477409]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.43370056152344, 37.761487048570935]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.36022949218749, 37.83093781796035]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.17483520507811, 37.837445479729666]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.11647033691406, 37.6327223292973]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.07389831542969, 37.627828123247475]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.24349975585938, 37.795678008523424]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.09587097167967, 37.81737834565083]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.05398559570312, 37.773428545820956]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.26821899414061, 37.71533133102705]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.06497192382811, 37.70663997801686]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.06771850585939, 37.58594229860422]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-122.33413696289064, 37.93011726880927]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-tag/test/tagPolygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"polyID\": 1 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.32040405273438, 37.83202246811909],\n            [-122.37327575683594, 37.77722770873696],\n            [-122.31285095214842, 37.722392304715854],\n            [-122.25448608398436, 37.73379707124429],\n            [-122.32040405273438, 37.83202246811909]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"polyID\": 2 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.32040405273438, 37.83202246811909],\n            [-122.33207702636717, 37.89002800137124],\n            [-122.38632202148438, 37.90411590881245],\n            [-122.3272705078125, 37.92686760148135],\n            [-122.21466064453125, 37.823344820392535],\n            [-122.32040405273438, 37.83202246811909]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"polyID\": 3 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.31971740722656, 37.83202246811909],\n            [-122.09861755371092, 37.81792077237497],\n            [-122.08694458007812, 37.69305769827658],\n            [-122.16590881347656, 37.769629187677],\n            [-122.21466064453125, 37.7652868250379],\n            [-122.31971740722656, 37.83202246811909]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"polyID\": 4 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.32040405273438, 37.82931081282506],\n            [-122.20779418945311, 37.66588567407962],\n            [-122.16316223144531, 37.60280825923639],\n            [-122.03201293945311, 37.62347744729925],\n            [-122.08694458007812, 37.69305769827658],\n            [-122.32040405273438, 37.82931081282506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": { \"polyID\": 5 },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.08831787109375, 37.69523103025956],\n            [-122.16659545898438, 37.76908640629127],\n            [-122.21466064453125, 37.76637243960176],\n            [-122.08831787109375, 37.69523103025956]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-tag/test.ts",
    "content": "import path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { tag } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"tag\", (t) => {\n  const points = loadJsonFileSync(\n    path.join(__dirname, \"test\", \"tagPoints.geojson\")\n  );\n  const polygons = loadJsonFileSync(\n    path.join(__dirname, \"test\", \"tagPolygons.geojson\")\n  );\n\n  const taggedPoints = tag(points, polygons, \"polyID\", \"containingPolyID\");\n\n  t.ok(taggedPoints.features, \"features should be ok\");\n  t.equal(\n    taggedPoints.features.length,\n    points.features.length,\n    \"tagged points should have the same length as the input points\"\n  );\n\n  const count = taggedPoints.features.filter(\n    (pt) => pt.properties.containingPolyID === 4\n  ).length;\n  t.equal(count, 6, \"polygon 4 should have tagged 6 points\");\n  t.end();\n});\n\ntest(\"tag -- multipolygon support\", (t) => {\n  const points = loadJsonFileSync(\n    path.join(__dirname, \"test\", \"tagMultiPolygonsPoints.geojson\")\n  );\n  const polygons = loadJsonFileSync(\n    path.join(__dirname, \"test\", \"tagMultiPolygons.geojson\")\n  );\n\n  const taggedPoints = tag(points, polygons, \"polyID\", \"containingPolyID\");\n  t.ok(taggedPoints.features, \"features should be ok\");\n\n  t.equal(\n    taggedPoints.features.length,\n    points.features.length,\n    \"tagged points should have the same length as the input points\"\n  );\n\n  const count1 = taggedPoints.features.filter(\n    (pt) => pt.properties.containingPolyID === 1\n  ).length;\n  t.equal(count1, 2, \"polygon 1 should have 2 points\");\n\n  const countUndefined = taggedPoints.features.filter(\n    (pt) =>\n      !Object.prototype.hasOwnProperty.call(pt.properties, \"containingPolyID\")\n  ).length;\n  t.equal(countUndefined, 1, \"1 point should have no containingPolyID\");\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-tag/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-tesselate/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-tesselate/README.md",
    "content": "# @turf/tesselate\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## tesselate\n\nTesselates a polygon or multipolygon into a collection of triangle polygons\nusing [earcut][1].\n\n### Parameters\n\n*   `poly` **[Feature][2]<([Polygon][3] | [MultiPolygon][4])>** the polygon to tesselate\n\n### Examples\n\n```javascript\nconst poly = turf.polygon([[[11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0]]]);\nconst triangles = turf.tesselate(poly);\n\n//addToMap\nconst addToMap = [poly, triangles]\n```\n\nReturns **[FeatureCollection][5]<[Polygon][3]>** collection of polygon tesselations\n\n[1]: https://github.com/mapbox/earcut\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/tesselate\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-tesselate/bench.ts",
    "content": "import Benchmark, { Event } from \"benchmark\";\nimport { polygon } from \"@turf/helpers\";\nimport { tesselate } from \"./index.js\";\n\nvar poly = polygon([\n  [\n    [11, 0],\n    [22, 4],\n    [31, 0],\n    [31, 11],\n    [21, 15],\n    [11, 11],\n    [11, 0],\n  ],\n]);\n\n/**\n * Benchmark Results\n *\n */\nnew Benchmark.Suite(\"turf-tesselate\")\n  .add(\"polygon\", () => tesselate(poly))\n  .on(\"cycle\", (e: Event) => console.log(String(e.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-tesselate/earcut.d.ts",
    "content": "declare module \"earcut\" {\n  declare function earcut(\n    vertices: number[],\n    holes: number[],\n    dimensions: number\n  );\n\n  export default earcut;\n}\n"
  },
  {
    "path": "packages/turf-tesselate/index.ts",
    "content": "import {\n  Feature,\n  FeatureCollection,\n  MultiPolygon,\n  Polygon,\n  Position,\n} from \"geojson\";\nimport earcut from \"earcut\";\nimport { polygon } from \"@turf/helpers\";\n\n/**\n * Tesselates a polygon or multipolygon into a collection of triangle polygons\n * using [earcut](https://github.com/mapbox/earcut).\n *\n * @function\n * @param {Feature<Polygon|MultiPolygon>} poly the polygon to tesselate\n * @returns {FeatureCollection<Polygon>} collection of polygon tesselations\n * @example\n * const poly = turf.polygon([[[11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0]]]);\n * const triangles = turf.tesselate(poly);\n *\n * //addToMap\n * const addToMap = [poly, triangles]\n */\nfunction tesselate(\n  poly: Feature<Polygon | MultiPolygon>\n): FeatureCollection<Polygon> {\n  if (\n    !poly.geometry ||\n    (poly.geometry.type !== \"Polygon\" && poly.geometry.type !== \"MultiPolygon\")\n  ) {\n    throw new Error(\"input must be a Polygon or MultiPolygon\");\n  }\n\n  const fc: FeatureCollection<Polygon> = {\n    type: \"FeatureCollection\",\n    features: [],\n  };\n\n  if (poly.geometry.type === \"Polygon\") {\n    fc.features = processPolygon(poly.geometry.coordinates);\n  } else {\n    poly.geometry.coordinates.forEach(function (coordinates) {\n      fc.features = fc.features.concat(processPolygon(coordinates));\n    });\n  }\n\n  return fc;\n}\n\nfunction processPolygon(coordinates: Position[][]) {\n  const data = flattenCoords(coordinates);\n  // coordinates are normalized to 3 dimensions by passing through original elevation value, or padding with undefined\n  const dim = 3;\n  const result = earcut(data.vertices, data.holes, dim);\n\n  const features: Feature<Polygon>[] = [];\n  const vertices: Position[] = [];\n\n  result.forEach(function (vert: any, i: number) {\n    const index = result[i];\n    // if elevation component is included in the original coordinate, include it in the output coordinate\n    if (data.vertices[index * dim + 2] !== undefined) {\n      vertices.push([\n        data.vertices[index * dim],\n        data.vertices[index * dim + 1],\n        data.vertices[index * dim + 2],\n      ]);\n    } else {\n      vertices.push([\n        data.vertices[index * dim],\n        data.vertices[index * dim + 1],\n      ]);\n    }\n  });\n\n  for (var i = 0; i < vertices.length; i += 3) {\n    const coords = vertices.slice(i, i + 3);\n    coords.push(vertices[i]);\n    features.push(polygon([coords]));\n  }\n\n  return features;\n}\n\nfunction flattenCoords(data: Position[][]) {\n  // coordinates are normalized to 3 dimensions by passing through original elevation value, or padding with undefined\n  const dim = 3,\n    result: { vertices: number[]; holes: number[]; dimensions: number } = {\n      vertices: [],\n      holes: [],\n      dimensions: dim,\n    };\n  let holeIndex = 0;\n\n  for (let i = 0; i < data.length; i++) {\n    for (let j = 0; j < data[i].length; j++) {\n      // elevation member is either included, or undefined is put in its place\n      for (let d = 0; d < dim; d++) result.vertices.push(data[i][j][d]);\n    }\n    if (i > 0) {\n      holeIndex += data[i - 1].length;\n      result.holes.push(holeIndex);\n    }\n  }\n\n  return result;\n}\n\nexport { tesselate };\nexport default tesselate;\n"
  },
  {
    "path": "packages/turf-tesselate/package.json",
    "content": "{\n  \"name\": \"@turf/tesselate\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Tesselates a polygon or multipolygon into a collection of triangle polygons using earcut.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Abel Vázquez <@AbelVM>\",\n    \"Morgan Herlocker <@morganherlocker>\",\n    \"Tom MacWright <@tmcw>\",\n    \"Vladimir Agafonkin <@mourner>\",\n    \"Pavel Rozvora <@prozvora>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"turfjs\",\n    \"tesselation\",\n    \"earcut\",\n    \"polygon\",\n    \"triangles\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"earcut\": \"^2.2.4\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-tesselate/test.ts",
    "content": "import test from \"tape\";\nimport { tesselate } from \"./index.js\";\nimport { featureCollection as featurecollection } from \"@turf/helpers\";\nimport { point } from \"@turf/helpers\";\n\ntest(\"tesselate\", function (t) {\n  var polygon = {\n    type: \"Feature\",\n    id: \"USA-CA\",\n    properties: { fips: \"06\", name: \"California\" },\n    geometry: {\n      type: \"Polygon\",\n      coordinates: [\n        [\n          [-123.233256, 42.006186],\n          [-122.378853, 42.011663],\n          [-121.037003, 41.995232],\n          [-120.001861, 41.995232],\n          [-119.996384, 40.264519],\n          [-120.001861, 38.999346],\n          [-118.71478, 38.101128],\n          [-117.498899, 37.21934],\n          [-116.540435, 36.501861],\n          [-115.85034, 35.970598],\n          [-114.634459, 35.00118],\n          [-114.634459, 34.87521],\n          [-114.470151, 34.710902],\n          [-114.333228, 34.448009],\n          [-114.136058, 34.305608],\n          [-114.256551, 34.174162],\n          [-114.415382, 34.108438],\n          [-114.535874, 33.933176],\n          [-114.497536, 33.697668],\n          [-114.524921, 33.54979],\n          [-114.727567, 33.40739],\n          [-114.661844, 33.034958],\n          [-114.524921, 33.029481],\n          [-114.470151, 32.843265],\n          [-114.524921, 32.755634],\n          [-114.72209, 32.717295],\n          [-116.04751, 32.624187],\n          [-117.126467, 32.536556],\n          [-117.24696, 32.668003],\n          [-117.252437, 32.876127],\n          [-117.329114, 33.122589],\n          [-117.471515, 33.297851],\n          [-117.7837, 33.538836],\n          [-118.183517, 33.763391],\n          [-118.260194, 33.703145],\n          [-118.413548, 33.741483],\n          [-118.391641, 33.840068],\n          [-118.566903, 34.042715],\n          [-118.802411, 33.998899],\n          [-119.218659, 34.146777],\n          [-119.278905, 34.26727],\n          [-119.558229, 34.415147],\n          [-119.875891, 34.40967],\n          [-120.138784, 34.475393],\n          [-120.472878, 34.448009],\n          [-120.64814, 34.579455],\n          [-120.609801, 34.858779],\n          [-120.670048, 34.902595],\n          [-120.631709, 35.099764],\n          [-120.894602, 35.247642],\n          [-120.905556, 35.450289],\n          [-121.004141, 35.461243],\n          [-121.168449, 35.636505],\n          [-121.283465, 35.674843],\n          [-121.332757, 35.784382],\n          [-121.716143, 36.195153],\n          [-121.896882, 36.315645],\n          [-121.935221, 36.638785],\n          [-121.858544, 36.6114],\n          [-121.787344, 36.803093],\n          [-121.929744, 36.978355],\n          [-122.105006, 36.956447],\n          [-122.335038, 37.115279],\n          [-122.417192, 37.241248],\n          [-122.400761, 37.361741],\n          [-122.515777, 37.520572],\n          [-122.515777, 37.783465],\n          [-122.329561, 37.783465],\n          [-122.406238, 38.15042],\n          [-122.488392, 38.112082],\n          [-122.504823, 37.931343],\n          [-122.701993, 37.893004],\n          [-122.937501, 38.029928],\n          [-122.97584, 38.265436],\n          [-123.129194, 38.451652],\n          [-123.331841, 38.566668],\n          [-123.44138, 38.698114],\n          [-123.737134, 38.95553],\n          [-123.687842, 39.032208],\n          [-123.824765, 39.366301],\n          [-123.764519, 39.552517],\n          [-123.85215, 39.831841],\n          [-124.109566, 40.105688],\n          [-124.361506, 40.259042],\n          [-124.410798, 40.439781],\n          [-124.158859, 40.877937],\n          [-124.109566, 41.025814],\n          [-124.158859, 41.14083],\n          [-124.065751, 41.442061],\n          [-124.147905, 41.715908],\n          [-124.257444, 41.781632],\n          [-124.213628, 42.000709],\n          [-123.233256, 42.006186],\n        ],\n      ],\n    },\n  };\n\n  var triangles = tesselate(polygon);\n\n  t.equal(\n    triangles.type,\n    \"FeatureCollection\",\n    \"Polygon returns a FeatureCollection\"\n  );\n  t.equal(\n    triangles.features[0].geometry.type,\n    \"Polygon\",\n    \"contains at least 1 triangle\"\n  );\n  t.equal(\n    triangles.features[0].geometry.coordinates[0].length,\n    4,\n    \"triangle is valid\"\n  );\n\n  var multipolygon = {\n    type: \"Feature\",\n    properties: { name: \"Michigan\" },\n    geometry: {\n      type: \"MultiPolygon\",\n      coordinates: [\n        [\n          [\n            [-88.684434, 48.115785],\n            [-88.675628, 48.120444],\n            [-88.676395, 48.124876],\n            [-88.674192, 48.127165],\n            [-88.656915, 48.139225],\n            [-88.614026, 48.154797],\n            [-88.578413, 48.16237],\n            [-88.547033, 48.174891],\n            [-88.524753, 48.165291],\n            [-88.501088, 48.168181],\n            [-88.491961, 48.175466],\n            [-88.482039, 48.179915],\n            [-88.459735, 48.183807],\n            [-88.447236, 48.182916],\n            [-88.422601, 48.190975],\n            [-88.418244, 48.18037],\n            [-88.419875, 48.170731],\n            [-88.427373, 48.166764],\n            [-88.449502, 48.163312],\n            [-88.459697, 48.158551],\n            [-88.469573, 48.152879],\n            [-88.4857, 48.137683],\n            [-88.511902, 48.121699],\n            [-88.566938, 48.093719],\n            [-88.578053, 48.084373],\n            [-88.578395, 48.078003],\n            [-88.575869, 48.075166],\n            [-88.573924, 48.068861],\n            [-88.575048, 48.064154],\n            [-88.579784, 48.058669],\n            [-88.670073, 48.011446],\n            [-88.718555, 47.995134],\n            [-88.772357, 47.981126],\n            [-88.791959, 47.978938],\n            [-88.832063, 47.965213],\n            [-88.852923, 47.965322],\n            [-88.899184, 47.9533],\n            [-88.918029, 47.945605],\n            [-88.923573, 47.937976],\n            [-88.962664, 47.923512],\n            [-88.968903, 47.909474],\n            [-88.968903, 47.901675],\n            [-88.957985, 47.895436],\n            [-88.942387, 47.895436],\n            [-88.899698, 47.902445],\n            [-88.898986, 47.900685],\n            [-88.911665, 47.891344],\n            [-88.998939, 47.86749],\n            [-89.022736, 47.858532],\n            [-89.044463, 47.85575],\n            [-89.056412, 47.852598],\n            [-89.107991, 47.835705],\n            [-89.124134, 47.828616],\n            [-89.157738, 47.824015],\n            [-89.19017, 47.831603],\n            [-89.192681, 47.83343],\n            [-89.192207, 47.84106],\n            [-89.201812, 47.850243],\n            [-89.234533, 47.851718],\n            [-89.235552, 47.853774],\n            [-89.234535, 47.855373],\n            [-89.228507, 47.858039],\n            [-89.246774, 47.871016],\n            [-89.250936, 47.870377],\n            [-89.255202, 47.876102],\n            [-89.247127, 47.888503],\n            [-89.226327, 47.895438],\n            [-89.22071, 47.90085],\n            [-89.221332, 47.908069],\n            [-89.214499, 47.913895],\n            [-89.179154, 47.93503],\n            [-89.095207, 47.967922],\n            [-89.018303, 47.992525],\n            [-88.994163, 48.00229],\n            [-88.940886, 48.01959],\n            [-88.931487, 48.021637],\n            [-88.927529, 48.019615],\n            [-88.915032, 48.020681],\n            [-88.895069, 48.029059],\n            [-88.896327, 48.031801],\n            [-88.893701, 48.03477],\n            [-88.835714, 48.056752],\n            [-88.816084, 48.057006],\n            [-88.810461, 48.055247],\n            [-88.787556, 48.063035],\n            [-88.772077, 48.070502],\n            [-88.77183, 48.079457],\n            [-88.764256, 48.085189],\n            [-88.744458, 48.092769],\n            [-88.728198, 48.101914],\n            [-88.705586, 48.111013],\n            [-88.695353, 48.110549],\n            [-88.684434, 48.115785],\n          ],\n        ],\n        [\n          [\n            [-85.566441, 45.760222],\n            [-85.54956, 45.757266],\n            [-85.54375, 45.751413],\n            [-85.53562, 45.750394],\n            [-85.525237, 45.750462],\n            [-85.506133, 45.754715],\n            [-85.501267, 45.754415],\n            [-85.497656, 45.746246],\n            [-85.503758, 45.742771],\n            [-85.508818, 45.742358],\n            [-85.510091, 45.742888],\n            [-85.508522, 45.744991],\n            [-85.50904, 45.748488],\n            [-85.515145, 45.749451],\n            [-85.520569, 45.744745],\n            [-85.521911, 45.739419],\n            [-85.520803, 45.737247],\n            [-85.510895, 45.734414],\n            [-85.498777, 45.726291],\n            [-85.494154, 45.705378],\n            [-85.494016, 45.698476],\n            [-85.5028, 45.690998],\n            [-85.506104, 45.681148],\n            [-85.503767, 45.670472],\n            [-85.500451, 45.664298],\n            [-85.490252, 45.652122],\n            [-85.487026, 45.621211],\n            [-85.491347, 45.609665],\n            [-85.509276, 45.596475],\n            [-85.518038, 45.592912],\n            [-85.526895, 45.59159],\n            [-85.530273, 45.589253],\n            [-85.534064, 45.578198],\n            [-85.541129, 45.575045],\n            [-85.561634, 45.572213],\n            [-85.618049, 45.582647],\n            [-85.622741, 45.586028],\n            [-85.630016, 45.598166],\n            [-85.61985, 45.624547],\n            [-85.608653, 45.632008],\n            [-85.604521, 45.639256],\n            [-85.604951, 45.647599],\n            [-85.609295, 45.658067],\n            [-85.604881, 45.681932],\n            [-85.600842, 45.68886],\n            [-85.590769, 45.698051],\n            [-85.583724, 45.700796],\n            [-85.572309, 45.711449],\n            [-85.565132, 45.730719],\n            [-85.564774, 45.745462],\n            [-85.567128, 45.750419],\n            [-85.567781, 45.757655],\n            [-85.566441, 45.760222],\n          ],\n        ],\n        [\n          [\n            [-87.590208, 45.095264],\n            [-87.59188, 45.094689],\n            [-87.614897, 45.100064],\n            [-87.621609, 45.102399],\n            [-87.62764, 45.103328],\n            [-87.628829, 45.104039],\n            [-87.629571, 45.105324],\n            [-87.631535, 45.106224],\n            [-87.63611, 45.105918],\n            [-87.648191, 45.106368],\n            [-87.652512, 45.108633],\n            [-87.657135, 45.107568],\n            [-87.659952, 45.107512],\n            [-87.661211, 45.108279],\n            [-87.661296, 45.112566],\n            [-87.667102, 45.118109],\n            [-87.671, 45.120069],\n            [-87.672447, 45.121294],\n            [-87.678209, 45.130084],\n            [-87.678511, 45.131204],\n            [-87.676024, 45.134089],\n            [-87.675816, 45.135059],\n            [-87.683902, 45.144135],\n            [-87.688425, 45.147433],\n            [-87.692375, 45.149505],\n            [-87.695055, 45.150522],\n            [-87.700618, 45.151188],\n            [-87.703492, 45.152206],\n            [-87.707391, 45.154679],\n            [-87.708134, 45.156004],\n            [-87.711322, 45.158946],\n            [-87.717945, 45.161156],\n            [-87.723121, 45.165141],\n            [-87.724601, 45.167452],\n            [-87.727768, 45.169596],\n            [-87.730866, 45.170913],\n            [-87.735135, 45.171538],\n            [-87.736104, 45.172244],\n            [-87.736509, 45.173389],\n            [-87.73521, 45.177642],\n            [-87.741805, 45.197051],\n            [-87.741732, 45.198201],\n            [-87.739492, 45.202126],\n            [-87.736339, 45.204653],\n            [-87.72796, 45.207956],\n            [-87.726198, 45.209391],\n            [-87.726175, 45.21264],\n            [-87.727276, 45.216129],\n            [-87.726952, 45.218949],\n            [-87.722473, 45.223309],\n            [-87.721354, 45.226847],\n            [-87.721935, 45.228444],\n            [-87.72492, 45.229977],\n            [-87.725205, 45.231539],\n            [-87.724156, 45.233236],\n            [-87.718264, 45.238333],\n            [-87.717051, 45.238743],\n            [-87.713398, 45.238564],\n            [-87.712184, 45.239014],\n            [-87.711339, 45.239965],\n            [-87.71148, 45.245224],\n            [-87.709145, 45.254649],\n            [-87.707779, 45.258343],\n            [-87.709137, 45.260341],\n            [-87.703053, 45.267041],\n            [-87.69878, 45.26942],\n            [-87.698456, 45.272072],\n            [-87.699492, 45.276659],\n            [-87.698248, 45.281512],\n            [-87.693468, 45.287675],\n            [-87.690364, 45.29027],\n            [-87.687578, 45.296283],\n            [-87.687498, 45.298055],\n            [-87.679085, 45.305841],\n            [-87.675328, 45.307907],\n            [-87.667423, 45.31636],\n            [-87.665243, 45.317115],\n            [-87.663666, 45.318257],\n            [-87.6615, 45.321386],\n            [-87.662029, 45.326434],\n            [-87.661603, 45.327608],\n            [-87.65983, 45.329144],\n            [-87.655775, 45.330847],\n            [-87.648126, 45.339396],\n            [-87.647454, 45.345232],\n            [-87.647729, 45.350721],\n            [-87.648476, 45.352243],\n            [-87.650661, 45.353798],\n            [-87.653568, 45.354204],\n            [-87.656632, 45.358617],\n            [-87.655807, 45.362706],\n            [-87.656624, 45.367295],\n            [-87.657349, 45.368752],\n            [-87.673513, 45.376946],\n            [-87.674403, 45.378065],\n            [-87.67455, 45.381649],\n            [-87.675017, 45.382454],\n            [-87.682866, 45.38495],\n            [-87.685934, 45.388711],\n            [-87.690281, 45.389822],\n            [-87.693956, 45.389893],\n            [-87.699797, 45.387927],\n            [-87.704337, 45.385462],\n            [-87.706767, 45.383827],\n            [-87.708329, 45.381218],\n            [-87.718891, 45.377462],\n            [-87.733409, 45.364432],\n            [-87.737801, 45.359635],\n            [-87.738352, 45.358243],\n            [-87.750928, 45.355037],\n            [-87.751626, 45.354169],\n            [-87.751452, 45.351755],\n            [-87.754104, 45.349442],\n            [-87.762128, 45.348401],\n            [-87.769172, 45.351195],\n            [-87.771384, 45.35121],\n            [-87.773901, 45.351226],\n            [-87.783076, 45.349725],\n            [-87.787967, 45.352612],\n            [-87.790324, 45.353444],\n            [-87.800464, 45.353608],\n            [-87.810076, 45.351269],\n            [-87.823028, 45.35265],\n            [-87.823554, 45.351637],\n            [-87.824855, 45.350713],\n            [-87.826918, 45.350538],\n            [-87.829775, 45.352005],\n            [-87.832612, 45.352249],\n            [-87.835303, 45.35098],\n            [-87.836782, 45.346451],\n            [-87.838141, 45.345101],\n            [-87.848368, 45.340676],\n            [-87.850133, 45.340435],\n            [-87.851318, 45.341346],\n            [-87.851475, 45.342335],\n            [-87.849899, 45.344651],\n            [-87.850418, 45.347492],\n            [-87.852784, 45.349497],\n            [-87.858617, 45.350378],\n            [-87.860871, 45.351192],\n            [-87.863489, 45.35302],\n            [-87.864873, 45.354767],\n            [-87.865274, 45.355969],\n            [-87.865675, 45.358213],\n            [-87.867037, 45.360137],\n            [-87.86856, 45.360537],\n            [-87.870243, 45.360617],\n            [-87.871204, 45.360056],\n            [-87.871285, 45.358614],\n            [-87.871124, 45.357011],\n            [-87.871685, 45.355729],\n            [-87.873529, 45.354286],\n            [-87.879835, 45.35149],\n            [-87.881114, 45.351278],\n            [-87.88517, 45.351736],\n            [-87.886949, 45.35311],\n            [-87.888052, 45.354697],\n            [-87.887828, 45.358122],\n            [-87.884855, 45.362792],\n            [-87.876862, 45.368535],\n            [-87.871485, 45.371546],\n            [-87.871789, 45.373557],\n            [-87.875692, 45.377052],\n            [-87.875424, 45.379373],\n            [-87.873568, 45.381357],\n            [-87.870905, 45.383116],\n            [-87.864677, 45.385232],\n            [-87.859418, 45.388227],\n            [-87.85683, 45.393106],\n            [-87.859603, 45.396409],\n            [-87.859773, 45.397278],\n            [-87.859131, 45.398967],\n            [-87.850969, 45.401925],\n            [-87.849322, 45.403872],\n            [-87.849668, 45.409518],\n            [-87.850533, 45.411685],\n            [-87.85181, 45.413103],\n            [-87.856216, 45.416101],\n            [-87.860432, 45.423504],\n            [-87.860127, 45.429584],\n            [-87.86195, 45.433072],\n            [-87.861697, 45.434473],\n            [-87.855298, 45.441379],\n            [-87.847429, 45.444177],\n            [-87.844815, 45.448411],\n            [-87.836008, 45.450877],\n            [-87.833042, 45.453596],\n            [-87.832456, 45.45502],\n            [-87.82743, 45.458076],\n            [-87.821057, 45.459955],\n            [-87.812976, 45.464159],\n            [-87.812971, 45.4661],\n            [-87.811469, 45.467991],\n            [-87.805773, 45.473139],\n            [-87.805873, 45.47438],\n            [-87.807388, 45.477031],\n            [-87.806891, 45.479092],\n            [-87.79896, 45.485147],\n            [-87.798362, 45.486564],\n            [-87.797824, 45.491468],\n            [-87.796409, 45.494679],\n            [-87.793447, 45.498372],\n            [-87.792769, 45.499967],\n            [-87.793215, 45.505028],\n            [-87.798794, 45.506287],\n            [-87.802267, 45.514233],\n            [-87.804203, 45.524676],\n            [-87.80472, 45.531244],\n            [-87.804528, 45.534373],\n            [-87.803364, 45.537016],\n            [-87.80339, 45.538272],\n            [-87.807159, 45.543523],\n            [-87.813737, 45.548616],\n            [-87.818791, 45.5521],\n            [-87.827215, 45.55562],\n            [-87.832296, 45.558767],\n            [-87.832968, 45.559461],\n            [-87.833591, 45.562529],\n            [-87.831689, 45.568035],\n            [-87.829346, 45.568776],\n            [-87.813745, 45.565175],\n            [-87.806104, 45.562863],\n            [-87.797536, 45.562124],\n            [-87.792372, 45.563055],\n            [-87.790874, 45.564096],\n            [-87.788798, 45.565947],\n            [-87.788326, 45.567941],\n            [-87.787292, 45.574906],\n            [-87.787534, 45.581376],\n            [-87.786767, 45.58283],\n            [-87.785647, 45.58396],\n            [-87.781255, 45.585682],\n            [-87.777199, 45.588499],\n            [-87.776238, 45.597797],\n            [-87.777671, 45.609204],\n            [-87.780845, 45.614599],\n            [-87.792016, 45.616756],\n            [-87.79588, 45.618846],\n            [-87.796179, 45.622074],\n            [-87.796983, 45.623613],\n            [-87.804481, 45.628933],\n            [-87.810194, 45.638732],\n            [-87.817277, 45.643926],\n            [-87.821818, 45.645589],\n            [-87.824102, 45.647138],\n            [-87.824676, 45.653211],\n            [-87.822693, 45.656077],\n            [-87.822425, 45.658012],\n            [-87.823672, 45.659817],\n            [-87.823868, 45.66192],\n            [-87.823164, 45.662732],\n            [-87.80329, 45.666494],\n            [-87.798903, 45.67014],\n            [-87.795355, 45.671334],\n            [-87.781623, 45.67328],\n            [-87.781007, 45.673934],\n            [-87.780737, 45.675458],\n            [-87.780808, 45.680349],\n            [-87.782226, 45.683053],\n            [-87.787727, 45.68718],\n            [-87.80188, 45.693862],\n            [-87.804993, 45.695796],\n            [-87.809075, 45.699717],\n            [-87.809181, 45.700337],\n            [-87.805076, 45.703556],\n            [-87.805081, 45.704974],\n            [-87.805867, 45.706841],\n            [-87.810144, 45.71023],\n            [-87.812338, 45.711303],\n            [-87.831442, 45.714938],\n            [-87.837343, 45.716919],\n            [-87.85548, 45.726943],\n            [-87.86432, 45.737139],\n            [-87.863874, 45.74266],\n            [-87.86305, 45.74309],\n            [-87.864141, 45.745697],\n            [-87.868111, 45.749477],\n            [-87.873339, 45.750439],\n            [-87.875813, 45.753888],\n            [-87.879812, 45.754843],\n            [-87.882261, 45.754779],\n            [-87.891905, 45.754055],\n            [-87.896032, 45.752285],\n            [-87.898363, 45.752503],\n            [-87.900005, 45.753497],\n            [-87.901299, 45.756553],\n            [-87.902707, 45.757932],\n            [-87.904657, 45.759163],\n            [-87.905873, 45.759364],\n            [-87.907771, 45.75928],\n            [-87.908933, 45.758297],\n            [-87.921999, 45.756989],\n            [-87.926611, 45.75959],\n            [-87.92913, 45.760364],\n            [-87.934585, 45.758094],\n            [-87.944113, 45.757422],\n            [-87.954459, 45.758414],\n            [-87.959277, 45.757367],\n            [-87.963452, 45.75822],\n            [-87.964725, 45.759461],\n            [-87.963996, 45.760794],\n            [-87.96697, 45.764021],\n            [-87.972451, 45.766319],\n            [-87.976835, 45.767015],\n            [-87.986429, 45.769596],\n            [-87.989656, 45.772025],\n            [-87.989829, 45.772945],\n            [-87.985597, 45.774926],\n            [-87.983392, 45.774696],\n            [-87.981789, 45.775081],\n            [-87.98087, 45.776977],\n            [-87.982617, 45.782944],\n            [-87.987942, 45.793075],\n            [-87.989831, 45.794827],\n            [-87.991447, 45.795393],\n            [-87.995876, 45.795435],\n            [-88.001593, 45.794091],\n            [-88.007043, 45.792192],\n            [-88.017588, 45.792455],\n            [-88.0236, 45.790094],\n            [-88.027228, 45.78919],\n            [-88.031124, 45.789233],\n            [-88.033568, 45.789816],\n            [-88.039729, 45.789626],\n            [-88.040221, 45.789236],\n            [-88.040892, 45.786452],\n            [-88.044697, 45.783718],\n            [-88.048514, 45.782549],\n            [-88.050634, 45.780972],\n            [-88.072091, 45.780261],\n            [-88.076375, 45.781606],\n            [-88.078361, 45.784249],\n            [-88.079764, 45.78495],\n            [-88.08859, 45.784697],\n            [-88.094047, 45.785658],\n            [-88.099616, 45.790186],\n            [-88.103247, 45.791361],\n            [-88.106351, 45.797573],\n            [-88.105518, 45.798839],\n            [-88.105355, 45.800104],\n            [-88.107506, 45.802668],\n            [-88.109506, 45.803584],\n            [-88.116024, 45.804079],\n            [-88.129461, 45.809288],\n            [-88.131834, 45.811312],\n            [-88.13611, 45.819029],\n            [-88.135067, 45.821694],\n            [-88.13364, 45.823128],\n            [-88.127808, 45.827173],\n            [-88.122947, 45.829565],\n            [-88.120723, 45.832995],\n            [-88.114267, 45.837891],\n            [-88.111726, 45.839196],\n            [-88.109089, 45.839492],\n            [-88.106622, 45.841072],\n            [-88.098326, 45.850142],\n            [-88.088825, 45.85586],\n            [-88.087419, 45.857459],\n            [-88.084985, 45.862443],\n            [-88.08259, 45.864944],\n            [-88.081641, 45.865087],\n            [-88.077534, 45.863825],\n            [-88.075146, 45.864832],\n            [-88.073134, 45.871952],\n            [-88.073944, 45.875593],\n            [-88.081781, 45.880516],\n            [-88.083965, 45.881186],\n            [-88.095841, 45.880042],\n            [-88.100218, 45.881205],\n            [-88.101814, 45.883504],\n            [-88.105447, 45.896593],\n            [-88.105981, 45.897091],\n            [-88.106136, 45.900811],\n            [-88.105677, 45.904387],\n            [-88.104576, 45.906847],\n            [-88.101973, 45.91055],\n            [-88.099172, 45.912362],\n            [-88.095354, 45.913895],\n            [-88.095409, 45.915175],\n            [-88.096496, 45.917273],\n            [-88.102908, 45.921869],\n            [-88.104686, 45.922121],\n            [-88.115346, 45.922211],\n            [-88.118507, 45.92114],\n            [-88.121864, 45.92075],\n            [-88.126382, 45.921499],\n            [-88.127594, 45.922414],\n            [-88.12743, 45.923214],\n            [-88.126122, 45.924639],\n            [-88.127428, 45.926153],\n            [-88.141001, 45.930608],\n            [-88.145928, 45.933646],\n            [-88.146419, 45.934194],\n            [-88.146352, 45.935314],\n            [-88.158704, 45.939064],\n            [-88.163105, 45.939043],\n            [-88.163959, 45.93834],\n            [-88.170096, 45.93947],\n            [-88.172628, 45.941015],\n            [-88.175532, 45.944897],\n            [-88.178008, 45.947111],\n            [-88.189789, 45.952208],\n            [-88.191991, 45.95274],\n            [-88.196316, 45.953311],\n            [-88.197627, 45.953082],\n            [-88.202116, 45.949836],\n            [-88.201852, 45.945173],\n            [-88.209585, 45.94428],\n            [-88.211158, 45.944531],\n            [-88.215025, 45.946976],\n            [-88.222167, 45.948513],\n            [-88.223773, 45.948712],\n            [-88.227988, 45.947688],\n            [-88.23314, 45.947405],\n            [-88.239672, 45.948982],\n            [-88.242518, 45.950363],\n            [-88.244452, 45.952142],\n            [-88.245752, 45.954147],\n            [-88.246579, 45.956597],\n            [-88.245937, 45.958726],\n            [-88.246307, 45.962983],\n            [-88.249117, 45.963663],\n            [-88.250133, 45.963572],\n            [-88.250133, 45.963147],\n            [-88.254816, 45.963538],\n            [-88.256455, 45.962739],\n            [-88.259343, 45.959494],\n            [-88.26839, 45.957486],\n            [-88.283335, 45.955091],\n            [-88.292381, 45.951115],\n            [-88.295264, 45.951253],\n            [-88.296968, 45.953767],\n            [-88.300965, 45.956168],\n            [-88.30952, 45.959369],\n            [-88.316894, 45.960969],\n            [-88.320531, 45.959963],\n            [-88.326003, 45.9553],\n            [-88.326953, 45.955071],\n            [-88.330296, 45.956625],\n            [-88.327872, 45.958934],\n            [-88.328333, 45.964054],\n            [-88.330137, 45.965951],\n            [-88.334628, 45.968808],\n            [-88.380183, 45.991654],\n            [-88.385234, 45.990239],\n            [-88.384318, 45.988113],\n            [-88.388847, 45.982675],\n            [-88.395308, 45.980391],\n            [-88.399046, 45.980278],\n            [-88.402848, 45.981194],\n            [-88.409864, 45.979688],\n            [-88.411077, 45.979139],\n            [-88.414849, 45.975483],\n            [-88.416914, 45.975323],\n            [-88.420356, 45.976764],\n            [-88.423044, 45.978547],\n            [-88.422322, 45.98017],\n            [-88.423437, 45.98193],\n            [-88.426125, 45.984102],\n            [-88.43406, 45.986205],\n            [-88.435798, 45.988125],\n            [-88.439733, 45.990456],\n            [-88.443078, 45.990685],\n            [-88.448751, 45.98977],\n            [-88.450325, 45.990181],\n            [-88.454261, 45.993426],\n            [-88.453868, 45.996169],\n            [-88.454361, 45.997518],\n            [-88.458658, 45.999391],\n            [-88.465542, 46.000685],\n            [-88.470855, 46.001004],\n            [-88.474695, 45.99877],\n            [-88.475152, 45.996598],\n            [-88.474036, 45.994655],\n            [-88.476002, 45.992826],\n            [-88.478984, 45.991797],\n            [-88.486755, 45.990949],\n            [-88.492495, 45.992157],\n            [-88.497417, 45.995149],\n            [-88.498108, 45.99636],\n            [-88.496897, 45.998281],\n            [-88.496898, 45.999012],\n            [-88.498765, 46.000393],\n            [-88.500133, 46.000457],\n            [-88.505946, 46.013385],\n            [-88.506205, 46.017134],\n            [-88.507188, 46.0183],\n            [-88.509516, 46.019169],\n            [-88.514601, 46.019926],\n            [-88.523131, 46.019518],\n            [-88.526673, 46.020822],\n            [-88.532414, 46.021212],\n            [-88.533825, 46.020915],\n            [-88.53353, 46.019932],\n            [-88.534876, 46.018104],\n            [-88.539011, 46.014791],\n            [-88.541078, 46.013763],\n            [-88.550756, 46.012896],\n            [-88.554987, 46.014977],\n            [-88.565485, 46.015708],\n            [-88.571553, 46.013811],\n            [-88.572995, 46.011799],\n            [-88.58067, 46.006975],\n            [-88.589, 46.005077],\n            [-88.589755, 46.005602],\n            [-88.592874, 46.01159],\n            [-88.593302, 46.014447],\n            [-88.59386, 46.015132],\n            [-88.598093, 46.017623],\n            [-88.60144, 46.017599],\n            [-88.603965, 46.016181],\n            [-88.607438, 46.010991],\n            [-88.611466, 46.003332],\n            [-88.611563, 45.99881],\n            [-88.613063, 45.990627],\n            [-88.614176, 45.988775],\n            [-88.616405, 45.9877],\n            [-88.623947, 45.988633],\n            [-88.634055, 45.987999],\n            [-88.634842, 45.987565],\n            [-88.635598, 45.985119],\n            [-88.6375, 45.98496],\n            [-88.65776, 45.989287],\n            [-88.661312, 45.988819],\n            [-88.662902, 45.98873],\n            [-88.663697, 45.989084],\n            [-88.664802, 45.989835],\n            [-88.66436, 45.991337],\n            [-88.663609, 45.992397],\n            [-88.663923, 45.993242],\n            [-88.667464, 45.995048],\n            [-88.671267, 45.999026],\n            [-88.670939, 45.999957],\n            [-88.670115, 45.999957],\n            [-88.671458, 46.005104],\n            [-88.674606, 46.010567],\n            [-88.679132, 46.013538],\n            [-88.691662, 46.015435],\n            [-88.698716, 46.017903],\n            [-88.704687, 46.018154],\n            [-88.710328, 46.016303],\n            [-88.713049, 46.012668],\n            [-88.718397, 46.013284],\n            [-88.721319, 46.018608],\n            [-88.721125, 46.022013],\n            [-88.724801, 46.024503],\n            [-88.730675, 46.026535],\n            [-88.739994, 46.027308],\n            [-88.746422, 46.025798],\n            [-88.752176, 46.023584],\n            [-88.754033, 46.02246],\n            [-88.756295, 46.020173],\n            [-88.758618, 46.019542],\n            [-88.760044, 46.019815],\n            [-88.763767, 46.021943],\n            [-88.765208, 46.022086],\n            [-88.766156, 46.022149],\n            [-88.767104, 46.021896],\n            [-88.76761, 46.021643],\n            [-88.768305, 46.021201],\n            [-88.768692, 46.020571],\n            [-88.769712, 46.018968],\n            [-88.776187, 46.015931],\n            [-88.779915, 46.015436],\n            [-88.782104, 46.016558],\n            [-88.783891, 46.020934],\n            [-88.784007, 46.022984],\n            [-88.783635, 46.024357],\n            [-88.778734, 46.028875],\n            [-88.778628, 46.031271],\n            [-88.779221, 46.031869],\n            [-88.784411, 46.032709],\n            [-88.791796, 46.032057],\n            [-88.796182, 46.033712],\n            [-88.80067, 46.030036],\n            [-88.796242, 46.026853],\n            [-88.79579, 46.024864],\n            [-88.79646, 46.023605],\n            [-88.801761, 46.023737],\n            [-88.811948, 46.021609],\n            [-88.815629, 46.02232],\n            [-88.815427, 46.022954],\n            [-88.816489, 46.023924],\n            [-88.820592, 46.026261],\n            [-88.831544, 46.02962],\n            [-88.835249, 46.03033],\n            [-88.837991, 46.030176],\n            [-88.840584, 46.031112],\n            [-88.843903, 46.03305],\n            [-88.847599, 46.037161],\n            [-88.848464, 46.038858],\n            [-88.85027, 46.040274],\n            [-88.943279, 46.077943],\n            [-88.948698, 46.080205],\n            [-88.990807, 46.097298],\n            [-89.09163, 46.138505],\n            [-89.125136, 46.144531],\n            [-89.161757, 46.151816],\n            [-89.166887, 46.152868],\n            [-89.194508, 46.157942],\n            [-89.201283, 46.159426],\n            [-89.203289, 46.16002],\n            [-89.205657, 46.160408],\n            [-89.218156, 46.162988],\n            [-89.219964, 46.163319],\n            [-89.276489, 46.174047],\n            [-89.276883, 46.174116],\n            [-89.495723, 46.216301],\n            [-89.533801, 46.224119],\n            [-89.638416, 46.243804],\n            [-89.667617, 46.249797],\n            [-89.764506, 46.268082],\n            [-89.908196, 46.296037],\n            [-89.90991, 46.296402],\n            [-89.918798, 46.297741],\n            [-90.120489, 46.336852],\n            [-90.121248, 46.337217],\n            [-90.12138, 46.338131],\n            [-90.121084, 46.338656],\n            [-90.119468, 46.3397],\n            [-90.118791, 46.342253],\n            [-90.119572, 46.34418],\n            [-90.120198, 46.345066],\n            [-90.120614, 46.34642],\n            [-90.119729, 46.348504],\n            [-90.117466, 46.349487],\n            [-90.116741, 46.350652],\n            [-90.116844, 46.355153],\n            [-90.118827, 46.359241],\n            [-90.119691, 46.359755],\n            [-90.119757, 46.359748],\n            [-90.120973, 46.35972],\n            [-90.122287, 46.360139],\n            [-90.122785, 46.361259],\n            [-90.122757, 46.362621],\n            [-90.122923, 46.363603],\n            [-90.126517, 46.366889],\n            [-90.131036, 46.369199],\n            [-90.133871, 46.371828],\n            [-90.134663, 46.374947],\n            [-90.134656, 46.374979],\n            [-90.13225, 46.381249],\n            [-90.133966, 46.382118],\n            [-90.135253, 46.38221],\n            [-90.13941, 46.384999],\n            [-90.144359, 46.390255],\n            [-90.146816, 46.397205],\n            [-90.148347, 46.399258],\n            [-90.152936, 46.401293],\n            [-90.157851, 46.409291],\n            [-90.158972, 46.413769],\n            [-90.158241, 46.420485],\n            [-90.158603, 46.422656],\n            [-90.163422, 46.434605],\n            [-90.166526, 46.437576],\n            [-90.166909, 46.439311],\n            [-90.166919, 46.439851],\n            [-90.174556, 46.439656],\n            [-90.17786, 46.440548],\n            [-90.179212, 46.45309],\n            [-90.180336, 46.456746],\n            [-90.189162, 46.459054],\n            [-90.190749, 46.460173],\n            [-90.193294, 46.463143],\n            [-90.192005, 46.465611],\n            [-90.189426, 46.467004],\n            [-90.188633, 46.468101],\n            [-90.188996, 46.469015],\n            [-90.193394, 46.472487],\n            [-90.201727, 46.476074],\n            [-90.204009, 46.478175],\n            [-90.211753, 46.490351],\n            [-90.214843, 46.498181],\n            [-90.214866, 46.499947],\n            [-90.216594, 46.501759],\n            [-90.220532, 46.503403],\n            [-90.222351, 46.50338],\n            [-90.228735, 46.501573],\n            [-90.230324, 46.501732],\n            [-90.23102, 46.503354],\n            [-90.230921, 46.504656],\n            [-90.229402, 46.507992],\n            [-90.230363, 46.509705],\n            [-90.231587, 46.509842],\n            [-90.236283, 46.507121],\n            [-90.243395, 46.505245],\n            [-90.246043, 46.504832],\n            [-90.248194, 46.505357],\n            [-90.25716, 46.504716],\n            [-90.25865, 46.503483],\n            [-90.260504, 46.502822],\n            [-90.263018, 46.502777],\n            [-90.265269, 46.503829],\n            [-90.265143, 46.505089],\n            [-90.265143, 46.506222],\n            [-90.266528, 46.507356],\n            [-90.26848, 46.507167],\n            [-90.27018, 46.507356],\n            [-90.270684, 46.508237],\n            [-90.270558, 46.50956],\n            [-90.270432, 46.510756],\n            [-90.270422, 46.51169],\n            [-90.274721, 46.515416],\n            [-90.271971, 46.519756],\n            [-90.272599, 46.521127],\n            [-90.277131, 46.524487],\n            [-90.278356, 46.523847],\n            [-90.27892, 46.522271],\n            [-90.283423, 46.518868],\n            [-90.285707, 46.518846],\n            [-90.292854, 46.520972],\n            [-90.294311, 46.519876],\n            [-90.294411, 46.518848],\n            [-90.298284, 46.51782],\n            [-90.303546, 46.517432],\n            [-90.306558, 46.518484],\n            [-90.307716, 46.518392],\n            [-90.312581, 46.517113],\n            [-90.313839, 46.516199],\n            [-90.313894, 46.516199],\n            [-90.316983, 46.517319],\n            [-90.317777, 46.521637],\n            [-90.314434, 46.523784],\n            [-90.311886, 46.528695],\n            [-90.310329, 46.536852],\n            [-90.310859, 46.539365],\n            [-90.320428, 46.546287],\n            [-90.324699, 46.545602],\n            [-90.326686, 46.54615],\n            [-90.328044, 46.548046],\n            [-90.327548, 46.550262],\n            [-90.331887, 46.553278],\n            [-90.336921, 46.554076],\n            [-90.344338, 46.552087],\n            [-90.347514, 46.547083],\n            [-90.349462, 46.53808],\n            [-90.350121, 46.537337],\n            [-90.35158, 46.537074],\n            [-90.353534, 46.537553],\n            [-90.355689, 46.540317],\n            [-90.357014, 46.540591],\n            [-90.357676, 46.540271],\n            [-90.3616, 46.541434],\n            [-90.369964, 46.540549],\n            [-90.374461, 46.539212],\n            [-90.387228, 46.533663],\n            [-90.39332, 46.532615],\n            [-90.395272, 46.533941],\n            [-90.395568, 46.536317],\n            [-90.398742, 46.542738],\n            [-90.400041, 46.544384],\n            [-90.400429, 46.544384],\n            [-90.402019, 46.544384],\n            [-90.405593, 46.547584],\n            [-90.407775, 46.552246],\n            [-90.414464, 46.55732],\n            [-90.414596, 46.55732],\n            [-90.41562, 46.563169],\n            [-90.418136, 46.566094],\n            [-90.348407, 46.600635],\n            [-90.327626, 46.607744],\n            [-90.306609, 46.602741],\n            [-90.265294, 46.618516],\n            [-90.237609, 46.624485],\n            [-90.164026, 46.645515],\n            [-90.100695, 46.655132],\n            [-90.04542, 46.668272],\n            [-90.028392, 46.67439],\n            [-89.996034, 46.693225],\n            [-89.985817, 46.70319],\n            [-89.973803, 46.710322],\n            [-89.957101, 46.716929],\n            [-89.918466, 46.740324],\n            [-89.892355, 46.763088],\n            [-89.848652, 46.795711],\n            [-89.831956, 46.804053],\n            [-89.790663, 46.818469],\n            [-89.720277, 46.830413],\n            [-89.673375, 46.833229],\n            [-89.660625, 46.831056],\n            [-89.642255, 46.82534],\n            [-89.634938, 46.819488],\n            [-89.619329, 46.81889],\n            [-89.569808, 46.831859],\n            [-89.535683, 46.835878],\n            [-89.513938, 46.841835],\n            [-89.49908, 46.841621],\n            [-89.491252, 46.838448],\n            [-89.47154, 46.837359],\n            [-89.437047, 46.839512],\n            [-89.415154, 46.843983],\n            [-89.372032, 46.857386],\n            [-89.249143, 46.903326],\n            [-89.227914, 46.912954],\n            [-89.201511, 46.931149],\n            [-89.168244, 46.965536],\n            [-89.142595, 46.984859],\n            [-89.128698, 46.992599],\n            [-89.118339, 46.99422],\n            [-89.113158, 46.989356],\n            [-89.106277, 46.98648],\n            [-89.086742, 46.985298],\n            [-89.063103, 46.988522],\n            [-89.03949, 46.999419],\n            [-89.02893, 47.00114],\n            [-89.022994, 46.99512],\n            [-88.998417, 46.995314],\n            [-88.987197, 46.997239],\n            [-88.972802, 47.002096],\n            [-88.959409, 47.008496],\n            [-88.944045, 47.020129],\n            [-88.924492, 47.042156],\n            [-88.914189, 47.059246],\n            [-88.903706, 47.086161],\n            [-88.88914, 47.100575],\n            [-88.855372, 47.114263],\n            [-88.848176, 47.115065],\n            [-88.814834, 47.141399],\n            [-88.789813, 47.150925],\n            [-88.778022, 47.150465],\n            [-88.764351, 47.155762],\n            [-88.729688, 47.185834],\n            [-88.69966, 47.204831],\n            [-88.672395, 47.219137],\n            [-88.656359, 47.225624],\n            [-88.640323, 47.226784],\n            [-88.623579, 47.232352],\n            [-88.60983, 47.238894],\n            [-88.584912, 47.242361],\n            [-88.573997, 47.245989],\n            [-88.50078, 47.293503],\n            [-88.477733, 47.31346],\n            [-88.470484, 47.327653],\n            [-88.459262, 47.339903],\n            [-88.418673, 47.371188],\n            [-88.389459, 47.384431],\n            [-88.324083, 47.403542],\n            [-88.303447, 47.412204],\n            [-88.285195, 47.422392],\n            [-88.239161, 47.429969],\n            [-88.227446, 47.435093],\n            [-88.218424, 47.441585],\n            [-88.216977, 47.445493],\n            [-88.217822, 47.448738],\n            [-88.18182, 47.457657],\n            [-88.150571, 47.460093],\n            [-88.139651, 47.462693],\n            [-88.085252, 47.468961],\n            [-88.076388, 47.467752],\n            [-88.049326, 47.469785],\n            [-88.048226, 47.470008],\n            [-88.048077, 47.474973],\n            [-88.040291, 47.475999],\n            [-87.978934, 47.47942],\n            [-87.929269, 47.478737],\n            [-87.902416, 47.477045],\n            [-87.898036, 47.474872],\n            [-87.816958, 47.471998],\n            [-87.801184, 47.473301],\n            [-87.756739, 47.460717],\n            [-87.730804, 47.449112],\n            [-87.715942, 47.439816],\n            [-87.710471, 47.4062],\n            [-87.712421, 47.4014],\n            [-87.721274, 47.401032],\n            [-87.742417, 47.405823],\n            [-87.75138, 47.405066],\n            [-87.759057, 47.403013],\n            [-87.765019, 47.398652],\n            [-87.800294, 47.392148],\n            [-87.815371, 47.38479],\n            [-87.827115, 47.38616],\n            [-87.834822, 47.390478],\n            [-87.848252, 47.394864],\n            [-87.8567, 47.395387],\n            [-87.882245, 47.395588],\n            [-87.941613, 47.390073],\n            [-87.957058, 47.38726],\n            [-87.965063, 47.37443],\n            [-87.965598, 47.368645],\n            [-87.962567, 47.362543],\n            [-87.954796, 47.356809],\n            [-87.947397, 47.355461],\n            [-87.938787, 47.346777],\n            [-87.93825, 47.342299],\n            [-87.94336, 47.335899],\n            [-87.946352, 47.334254],\n            [-87.958386, 47.334435],\n            [-87.968604, 47.332582],\n            [-87.989133, 47.322633],\n            [-88.016478, 47.306275],\n            [-88.054849, 47.29824],\n            [-88.06009, 47.295796],\n            [-88.071476, 47.286768],\n            [-88.096851, 47.261351],\n            [-88.108833, 47.259131],\n            [-88.117456, 47.255174],\n            [-88.131943, 47.239554],\n            [-88.163059, 47.216278],\n            [-88.194218, 47.209242],\n            [-88.204849, 47.210498],\n            [-88.212361, 47.209423],\n            [-88.228987, 47.199042],\n            [-88.236892, 47.189236],\n            [-88.242006, 47.174767],\n            [-88.24266, 47.158426],\n            [-88.23947, 47.151137],\n            [-88.236721, 47.149287],\n            [-88.231797, 47.149609],\n            [-88.232164, 47.145975],\n            [-88.239895, 47.139436],\n            [-88.247628, 47.135981],\n            [-88.249571, 47.136231],\n            [-88.250785, 47.140209],\n            [-88.255303, 47.14364],\n            [-88.262972, 47.145174],\n            [-88.272017, 47.143511],\n            [-88.281701, 47.138212],\n            [-88.28904, 47.129689],\n            [-88.289543, 47.126604],\n            [-88.28787, 47.125374],\n            [-88.287173, 47.12042],\n            [-88.288347, 47.114547],\n            [-88.297625, 47.098505],\n            [-88.340052, 47.080494],\n            [-88.346709, 47.079372],\n            [-88.349952, 47.076377],\n            [-88.353191, 47.069063],\n            [-88.353952, 47.058047],\n            [-88.359054, 47.039739],\n            [-88.367624, 47.019213],\n            [-88.373966, 47.012262],\n            [-88.385606, 47.004522],\n            [-88.404498, 46.983353],\n            [-88.411145, 46.977984],\n            [-88.443901, 46.972251],\n            [-88.44857, 46.946769],\n            [-88.455404, 46.923321],\n            [-88.475859, 46.886042],\n            [-88.477935, 46.85056],\n            [-88.483748, 46.831727],\n            [-88.482579, 46.826197],\n            [-88.473342, 46.806226],\n            [-88.462349, 46.786711],\n            [-88.438427, 46.786714],\n            [-88.433835, 46.793502],\n            [-88.415225, 46.811715],\n            [-88.38141, 46.838466],\n            [-88.382204, 46.844477],\n            [-88.382052, 46.845437],\n            [-88.390135, 46.851595],\n            [-88.404008, 46.848331],\n            [-88.389727, 46.8671],\n            [-88.372591, 46.872812],\n            [-88.375855, 46.863428],\n            [-88.369848, 46.857568],\n            [-88.368767, 46.857313],\n            [-88.360868, 46.856202],\n            [-88.35194, 46.857028],\n            [-88.31029, 46.889748],\n            [-88.281244, 46.906632],\n            [-88.261593, 46.915516],\n            [-88.244437, 46.929612],\n            [-88.167227, 46.958855],\n            [-88.155374, 46.965069],\n            [-88.143688, 46.966665],\n            [-88.132876, 46.962204],\n            [-88.150114, 46.94363],\n            [-88.187522, 46.918999],\n            [-88.175197, 46.90458],\n            [-88.161913, 46.904941],\n            [-88.126927, 46.90984],\n            [-88.101315, 46.917207],\n            [-88.08187, 46.920458],\n            [-88.065192, 46.918563],\n            [-88.032408, 46.90889],\n            [-88.004298, 46.906982],\n            [-87.986113, 46.905957],\n            [-87.956, 46.909051],\n            [-87.900339, 46.909686],\n            [-87.874538, 46.892578],\n            [-87.846195, 46.883905],\n            [-87.841228, 46.884363],\n            [-87.827162, 46.889713],\n            [-87.816794, 46.891154],\n            [-87.813226, 46.888023],\n            [-87.793194, 46.880822],\n            [-87.782461, 46.879859],\n            [-87.77693, 46.876726],\n            [-87.776313, 46.872591],\n            [-87.778752, 46.870422],\n            [-87.776804, 46.866823],\n            [-87.765989, 46.861316],\n            [-87.755868, 46.860453],\n            [-87.746646, 46.865427],\n            [-87.741014, 46.865247],\n            [-87.73487, 46.85012],\n            [-87.736732, 46.847216],\n            [-87.734325, 46.836955],\n            [-87.731522, 46.831196],\n            [-87.727358, 46.827656],\n            [-87.713737, 46.825534],\n            [-87.69459, 46.827182],\n            [-87.685698, 46.83253],\n            [-87.68793, 46.839159],\n            [-87.687164, 46.841742],\n            [-87.680668, 46.842496],\n            [-87.674541, 46.836964],\n            [-87.673177, 46.827593],\n            [-87.674345, 46.82405],\n            [-87.672015, 46.820415],\n            [-87.662261, 46.815157],\n            [-87.65151, 46.812411],\n            [-87.641887, 46.813733],\n            [-87.6333, 46.812107],\n            [-87.628081, 46.805157],\n            [-87.607988, 46.788408],\n            [-87.595307, 46.78295],\n            [-87.590767, 46.753009],\n            [-87.582745, 46.730527],\n            [-87.573203, 46.720471],\n            [-87.523308, 46.688488],\n            [-87.524444, 46.677586],\n            [-87.503025, 46.647497],\n            [-87.49286, 46.642561],\n            [-87.467965, 46.635623],\n            [-87.466537, 46.631555],\n            [-87.467563, 46.626228],\n            [-87.464108, 46.614811],\n            [-87.451368, 46.605923],\n            [-87.442612, 46.602776],\n            [-87.411167, 46.601669],\n            [-87.403275, 46.595215],\n            [-87.383961, 46.59307],\n            [-87.381649, 46.580059],\n            [-87.392974, 46.572523],\n            [-87.392828, 46.570852],\n            [-87.382206, 46.553681],\n            [-87.375613, 46.54714],\n            [-87.3903, 46.542577],\n            [-87.393985, 46.533183],\n            [-87.38929, 46.524472],\n            [-87.381349, 46.517292],\n            [-87.366767, 46.507303],\n            [-87.351071, 46.500749],\n            [-87.310755, 46.492017],\n            [-87.258732, 46.488255],\n            [-87.202404, 46.490827],\n            [-87.175065, 46.497548],\n            [-87.12744, 46.494014],\n            [-87.107559, 46.496124],\n            [-87.09876, 46.503609],\n            [-87.077279, 46.515339],\n            [-87.046022, 46.519956],\n            [-87.029892, 46.525599],\n            [-87.017136, 46.53355],\n            [-87.008724, 46.532723],\n            [-86.976958, 46.526581],\n            [-86.964534, 46.516549],\n            [-86.962842, 46.509646],\n            [-86.94698, 46.484567],\n            [-86.946218, 46.479059],\n            [-86.949526, 46.476315],\n            [-86.947077, 46.472064],\n            [-86.927725, 46.464566],\n            [-86.903742, 46.466138],\n            [-86.889094, 46.458499],\n            [-86.883976, 46.450976],\n            [-86.883919, 46.441514],\n            [-86.875151, 46.43728],\n            [-86.850111, 46.434114],\n            [-86.837448, 46.434186],\n            [-86.816026, 46.437892],\n            [-86.810967, 46.449663],\n            [-86.808817, 46.460611],\n            [-86.803557, 46.466669],\n            [-86.787905, 46.477729],\n            [-86.768516, 46.479072],\n            [-86.750157, 46.479109],\n            [-86.735929, 46.475231],\n            [-86.731096, 46.47176],\n            [-86.730829, 46.468057],\n            [-86.710573, 46.444908],\n            [-86.70323, 46.439378],\n            [-86.698139, 46.438624],\n            [-86.686412, 46.454965],\n            [-86.688816, 46.463152],\n            [-86.686468, 46.471655],\n            [-86.683819, 46.498079],\n            [-86.696001, 46.50316],\n            [-86.701929, 46.511571],\n            [-86.709325, 46.543914],\n            [-86.695645, 46.555026],\n            [-86.678182, 46.561039],\n            [-86.675764, 46.557061],\n            [-86.670927, 46.556489],\n            [-86.656479, 46.558453],\n            [-86.652865, 46.560555],\n            [-86.62738, 46.53371],\n            [-86.629086, 46.518144],\n            [-86.632109, 46.508865],\n            [-86.63453, 46.504523],\n            [-86.641088, 46.500438],\n            [-86.645528, 46.492039],\n            [-86.646393, 46.485776],\n            [-86.636671, 46.478298],\n            [-86.627441, 46.47754],\n            [-86.620603, 46.483873],\n            [-86.618061, 46.489452],\n            [-86.612173, 46.493295],\n            [-86.609393, 46.492976],\n            [-86.606932, 46.478531],\n            [-86.609039, 46.470239],\n            [-86.586168, 46.463324],\n            [-86.557731, 46.487434],\n            [-86.524959, 46.505381],\n            [-86.495054, 46.524874],\n            [-86.484003, 46.535965],\n            [-86.481956, 46.542709],\n            [-86.469306, 46.551422],\n            [-86.45993, 46.551928],\n            [-86.44439, 46.548137],\n            [-86.437167, 46.54896],\n            [-86.390409, 46.563194],\n            [-86.34989, 46.578035],\n            [-86.188024, 46.654008],\n            [-86.161681, 46.669475],\n            [-86.138295, 46.672935],\n            [-86.119862, 46.657256],\n            [-86.112126, 46.655044],\n            [-86.099843, 46.654615],\n            [-86.074219, 46.657799],\n            [-86.036969, 46.667627],\n            [-85.995044, 46.673676],\n            [-85.95367, 46.676869],\n            [-85.924047, 46.684733],\n            [-85.877908, 46.690914],\n            [-85.841057, 46.688896],\n            [-85.794923, 46.681083],\n            [-85.750606, 46.677368],\n            [-85.714415, 46.677156],\n            [-85.668753, 46.680404],\n            [-85.624573, 46.678862],\n            [-85.587345, 46.674627],\n            [-85.542517, 46.674263],\n            [-85.50951, 46.675786],\n            [-85.482096, 46.680432],\n            [-85.369805, 46.713754],\n            [-85.289846, 46.744644],\n            [-85.25686, 46.75338],\n            [-85.173042, 46.763634],\n            [-85.063556, 46.757856],\n            [-85.036286, 46.760435],\n            [-85.00924, 46.769224],\n            [-84.989497, 46.772403],\n            [-84.964652, 46.772845],\n            [-84.954009, 46.771362],\n            [-84.95158, 46.769488],\n            [-84.987539, 46.745483],\n            [-85.007616, 46.728339],\n            [-85.020159, 46.712463],\n            [-85.027513, 46.697451],\n            [-85.030078, 46.684769],\n            [-85.028291, 46.675125],\n            [-85.035504, 46.625021],\n            [-85.037056, 46.600995],\n            [-85.035476, 46.581547],\n            [-85.031507, 46.568703],\n            [-85.029594, 46.554419],\n            [-85.027374, 46.553756],\n            [-85.025491, 46.546397],\n            [-85.027083, 46.543038],\n            [-85.045534, 46.537694],\n            [-85.052954, 46.532827],\n            [-85.056133, 46.52652],\n            [-85.054943, 46.51475],\n            [-85.049847, 46.503963],\n            [-85.033766, 46.48767],\n            [-85.025598, 46.483028],\n            [-85.015211, 46.479712],\n            [-84.969464, 46.47629],\n            [-84.955307, 46.480269],\n            [-84.947269, 46.487399],\n            [-84.937145, 46.489252],\n            [-84.934432, 46.480315],\n            [-84.921931, 46.469962],\n            [-84.915184, 46.467515],\n            [-84.893423, 46.465406],\n            [-84.87507, 46.466781],\n            [-84.861448, 46.46993],\n            [-84.849767, 46.460245],\n            [-84.843907, 46.448661],\n            [-84.829491, 46.444071],\n            [-84.800101, 46.446219],\n            [-84.769151, 46.453523],\n            [-84.723338, 46.468266],\n            [-84.689672, 46.483923],\n            [-84.678423, 46.487694],\n            [-84.65388, 46.48225],\n            [-84.63102, 46.484868],\n            [-84.616489, 46.47187],\n            [-84.607945, 46.456747],\n            [-84.584167, 46.43941],\n            [-84.573522, 46.427895],\n            [-84.551496, 46.418522],\n            [-84.503719, 46.43919],\n            [-84.493401, 46.440313],\n            [-84.479513, 46.432573],\n            [-84.471848, 46.434289],\n            [-84.462597, 46.44094],\n            [-84.455527, 46.453897],\n            [-84.455256, 46.462785],\n            [-84.463322, 46.467435],\n            [-84.445149, 46.489016],\n            [-84.420274, 46.501077],\n            [-84.394725, 46.499242],\n            [-84.37504, 46.508669],\n            [-84.373968, 46.509098],\n            [-84.343599, 46.507713],\n            [-84.337732, 46.505577],\n            [-84.325371, 46.500021],\n            [-84.293016, 46.492803],\n            [-84.275814, 46.492821],\n            [-84.265391, 46.494393],\n            [-84.264266, 46.495055],\n            [-84.254434, 46.500821],\n            [-84.226131, 46.53392],\n            [-84.193729, 46.53992],\n            [-84.177428, 46.52692],\n            [-84.166028, 46.52622],\n            [-84.153027, 46.52832],\n            [-84.146526, 46.531119],\n            [-84.139426, 46.532219],\n            [-84.128925, 46.530119],\n            [-84.123325, 46.520919],\n            [-84.117925, 46.517619],\n            [-84.111225, 46.504119],\n            [-84.125026, 46.470143],\n            [-84.146172, 46.41852],\n            [-84.138906, 46.372221],\n            [-84.119122, 46.337014],\n            [-84.106247, 46.321963],\n            [-84.119629, 46.315013],\n            [-84.115563, 46.268225],\n            [-84.097766, 46.256512],\n            [-84.108089, 46.241238],\n            [-84.118175, 46.233968],\n            [-84.125024, 46.232885],\n            [-84.134652, 46.23214],\n            [-84.14595, 46.224995],\n            [-84.14715, 46.224184],\n            [-84.14922, 46.223808],\n            [-84.150725, 46.223808],\n            [-84.151666, 46.224184],\n            [-84.152042, 46.224937],\n            [-84.15223, 46.226254],\n            [-84.152499, 46.227875],\n            [-84.159485, 46.233233],\n            [-84.182732, 46.23545],\n            [-84.219494, 46.231992],\n            [-84.233117, 46.224037],\n            [-84.249164, 46.206461],\n            [-84.245233, 46.192571],\n            [-84.247687, 46.17989],\n            [-84.251424, 46.175888],\n            [-84.221001, 46.163062],\n            [-84.196669, 46.16615],\n            [-84.177298, 46.183993],\n            [-84.17164, 46.181731],\n            [-84.125022, 46.180209],\n            [-84.114941, 46.174114],\n            [-84.113259, 46.16886],\n            [-84.100126, 46.15077],\n            [-84.095818, 46.147733],\n            [-84.089309, 46.146432],\n            [-84.060383, 46.146138],\n            [-84.026536, 46.131648],\n            [-84.031036, 46.123186],\n            [-84.038696, 46.12562],\n            [-84.0519, 46.11981],\n            [-84.061329, 46.113482],\n            [-84.069147, 46.103978],\n            [-84.072398, 46.09669],\n            [-84.071741, 46.092441],\n            [-84.066257, 46.087438],\n            [-84.051712, 46.079189],\n            [-84.027861, 46.054784],\n            [-84.006082, 46.044586],\n            [-83.989526, 46.032823],\n            [-83.963808, 46.027833],\n            [-83.95141, 46.029042],\n            [-83.943933, 46.031465],\n            [-83.939012, 46.029226],\n            [-83.93547, 46.020385],\n            [-83.931175, 46.017871],\n            [-83.908583, 46.011471],\n            [-83.900535, 45.998918],\n            [-83.896489, 45.989194],\n            [-83.898594, 45.97953],\n            [-83.901942, 45.97264],\n            [-83.903923, 45.96621],\n            [-83.916168, 45.955326],\n            [-83.921257, 45.958075],\n            [-83.952183, 45.965498],\n            [-83.985141, 45.967133],\n            [-83.996471, 45.961461],\n            [-84.000033, 45.948452],\n            [-84.017565, 45.959046],\n            [-84.080071, 45.970822],\n            [-84.090391, 45.967256],\n            [-84.10537, 45.972948],\n            [-84.107204, 45.977161],\n            [-84.111174, 45.978675],\n            [-84.140816, 45.975308],\n            [-84.17225, 45.966072],\n            [-84.17806, 45.969175],\n            [-84.238174, 45.967595],\n            [-84.254952, 45.956068],\n            [-84.330021, 45.956247],\n            [-84.353272, 45.941663],\n            [-84.376429, 45.931962],\n            [-84.428689, 45.958371],\n            [-84.437633, 45.97375],\n            [-84.443138, 45.977863],\n            [-84.463128, 45.968925],\n            [-84.480436, 45.977764],\n            [-84.483062, 45.982242],\n            [-84.482442, 45.985441],\n            [-84.484009, 45.98825],\n            [-84.507201, 45.991169],\n            [-84.514123, 45.987242],\n            [-84.514071, 45.971292],\n            [-84.525052, 45.968578],\n            [-84.532392, 45.969448],\n            [-84.534422, 45.972762],\n            [-84.534648, 45.978132],\n            [-84.530444, 45.991385],\n            [-84.533426, 46.00572],\n            [-84.540995, 46.019501],\n            [-84.544405, 46.02286],\n            [-84.563891, 46.032459],\n            [-84.581081, 46.031041],\n            [-84.586592, 46.026584],\n            [-84.609063, 46.026418],\n            [-84.647609, 46.049704],\n            [-84.656567, 46.052654],\n            [-84.66671, 46.050486],\n            [-84.675835, 46.046009],\n            [-84.687322, 46.03488],\n            [-84.692735, 46.027019],\n            [-84.6927, 46.016963],\n            [-84.686269, 45.979144],\n            [-84.684368, 45.977499],\n            [-84.685254, 45.973454],\n            [-84.687712, 45.97126],\n            [-84.703948, 45.970901],\n            [-84.723039, 45.967279],\n            [-84.730179, 45.961198],\n            [-84.738849, 45.945792],\n            [-84.73937, 45.941816],\n            [-84.733041, 45.932837],\n            [-84.718955, 45.927449],\n            [-84.713614, 45.920366],\n            [-84.713251, 45.916047],\n            [-84.734002, 45.907026],\n            [-84.721276, 45.873908],\n            [-84.715481, 45.865934],\n            [-84.701183, 45.853092],\n            [-84.702295, 45.850464],\n            [-84.706383, 45.848658],\n            [-84.720836, 45.848107],\n            [-84.722764, 45.846621],\n            [-84.725734, 45.837045],\n            [-84.746985, 45.835597],\n            [-84.792763, 45.858691],\n            [-84.831396, 45.872038],\n            [-84.838472, 45.881512],\n            [-84.837624, 45.889054],\n            [-84.842243, 45.898194],\n            [-84.852916, 45.900111],\n            [-84.873254, 45.909815],\n            [-84.879835, 45.915847],\n            [-84.902913, 45.923673],\n            [-84.917484, 45.93067],\n            [-84.937134, 45.955949],\n            [-84.973556, 45.986134],\n            [-85.003597, 46.00613],\n            [-85.01399, 46.010774],\n            [-85.055581, 46.023148],\n            [-85.088818, 46.028378],\n            [-85.102899, 46.032488],\n            [-85.130433, 46.046076],\n            [-85.140835, 46.049601],\n            [-85.152027, 46.050725],\n            [-85.19063, 46.047622],\n            [-85.197523, 46.044878],\n            [-85.222511, 46.060689],\n            [-85.266385, 46.065779],\n            [-85.287693, 46.072276],\n            [-85.316264, 46.086608],\n            [-85.335911, 46.092595],\n            [-85.356214, 46.092086],\n            [-85.366622, 46.086778],\n            [-85.381394, 46.082044],\n            [-85.393832, 46.095465],\n            [-85.412064, 46.101437],\n            [-85.426916, 46.101964],\n            [-85.441932, 46.095793],\n            [-85.442293, 46.093941],\n            [-85.440191, 46.092593],\n            [-85.44699, 46.085164],\n            [-85.480603, 46.096379],\n            [-85.5001, 46.09694],\n            [-85.512696, 46.094727],\n            [-85.52157, 46.091257],\n            [-85.540858, 46.079581],\n            [-85.603785, 46.030363],\n            [-85.617709, 46.008458],\n            [-85.648581, 45.983695],\n            [-85.654686, 45.973686],\n            [-85.663966, 45.967013],\n            [-85.697203, 45.960158],\n            [-85.724246, 45.965409],\n            [-85.743618, 45.965173],\n            [-85.770938, 45.971349],\n            [-85.790639, 45.977594],\n            [-85.810442, 45.980087],\n            [-85.817558, 45.979447],\n            [-85.825819, 45.976292],\n            [-85.832603, 45.967742],\n            [-85.842404, 45.965247],\n            [-85.861157, 45.968167],\n            [-85.882442, 45.96862],\n            [-85.893196, 45.967253],\n            [-85.9091, 45.959074],\n            [-85.922737, 45.948287],\n            [-85.926213, 45.938093],\n            [-85.926017, 45.932104],\n            [-85.917238, 45.927782],\n            [-85.910264, 45.922112],\n            [-85.913769, 45.919439],\n            [-85.920581, 45.920994],\n            [-85.954063, 45.936629],\n            [-85.998868, 45.950968],\n            [-86.050956, 45.962205],\n            [-86.072067, 45.965313],\n            [-86.094753, 45.966704],\n            [-86.123567, 45.964748],\n            [-86.145714, 45.957372],\n            [-86.150173, 45.954494],\n            [-86.159415, 45.953765],\n            [-86.196618, 45.963185],\n            [-86.208255, 45.962978],\n            [-86.220546, 45.958883],\n            [-86.22906, 45.94857],\n            [-86.233613, 45.945802],\n            [-86.248008, 45.944849],\n            [-86.254768, 45.94864],\n            [-86.278007, 45.942057],\n            [-86.315981, 45.915247],\n            [-86.324232, 45.90608],\n            [-86.332625, 45.851813],\n            [-86.349134, 45.83416],\n            [-86.355062, 45.805355],\n            [-86.351658, 45.798132],\n            [-86.363808, 45.790057],\n            [-86.369918, 45.789254],\n            [-86.395809, 45.78974],\n            [-86.401656, 45.795412],\n            [-86.415971, 45.793793],\n            [-86.424828, 45.789747],\n            [-86.428423, 45.785587],\n            [-86.428946, 45.782524],\n            [-86.427183, 45.77905],\n            [-86.428294, 45.77562],\n            [-86.431921, 45.767756],\n            [-86.439661, 45.760669],\n            [-86.455534, 45.75685],\n            [-86.466039, 45.759741],\n            [-86.47905, 45.757416],\n            [-86.486028, 45.746608],\n            [-86.496251, 45.749255],\n            [-86.504216, 45.75423],\n            [-86.51457, 45.752337],\n            [-86.518281, 45.747688],\n            [-86.523197, 45.736498],\n            [-86.525166, 45.720797],\n            [-86.53328, 45.710849],\n            [-86.537258, 45.708361],\n            [-86.54143, 45.70811],\n            [-86.570627, 45.716412],\n            [-86.580936, 45.71192],\n            [-86.585847, 45.704922],\n            [-86.584771, 45.682007],\n            [-86.587528, 45.666456],\n            [-86.593613, 45.665625],\n            [-86.611306, 45.669733],\n            [-86.62043, 45.667098],\n            [-86.625132, 45.663819],\n            [-86.627938, 45.659293],\n            [-86.616972, 45.620581],\n            [-86.60418, 45.606457],\n            [-86.613803, 45.599583],\n            [-86.616893, 45.606796],\n            [-86.62387, 45.613262],\n            [-86.633224, 45.618249],\n            [-86.648439, 45.615992],\n            [-86.666127, 45.621689],\n            [-86.687208, 45.634253],\n            [-86.688772, 45.639969],\n            [-86.695275, 45.648175],\n            [-86.708038, 45.649202],\n            [-86.717828, 45.668106],\n            [-86.718191, 45.67732],\n            [-86.715781, 45.683949],\n            [-86.705184, 45.690901],\n            [-86.689102, 45.687862],\n            [-86.676184, 45.691862],\n            [-86.665677, 45.702217],\n            [-86.665511, 45.70903],\n            [-86.669263, 45.71086],\n            [-86.67148, 45.72053],\n            [-86.662762, 45.728964],\n            [-86.647319, 45.732618],\n            [-86.633138, 45.747654],\n            [-86.634902, 45.763536],\n            [-86.631018, 45.782019],\n            [-86.617336, 45.783538],\n            [-86.612137, 45.779356],\n            [-86.597661, 45.775385],\n            [-86.583391, 45.778242],\n            [-86.576869, 45.788502],\n            [-86.581071, 45.791802],\n            [-86.581759, 45.794797],\n            [-86.576858, 45.801473],\n            [-86.571172, 45.805452],\n            [-86.563392, 45.804469],\n            [-86.557215, 45.808172],\n            [-86.555547, 45.813499],\n            [-86.559044, 45.822323],\n            [-86.555186, 45.831696],\n            [-86.549723, 45.836039],\n            [-86.545602, 45.836495],\n            [-86.538831, 45.840083],\n            [-86.529208, 45.853043],\n            [-86.528224, 45.856974],\n            [-86.529573, 45.874974],\n            [-86.532989, 45.882665],\n            [-86.541464, 45.890234],\n            [-86.553608, 45.896476],\n            [-86.567719, 45.9005],\n            [-86.583304, 45.898784],\n            [-86.593184, 45.88511],\n            [-86.603293, 45.876626],\n            [-86.613536, 45.875982],\n            [-86.625736, 45.868295],\n            [-86.633168, 45.860068],\n            [-86.632478, 45.843309],\n            [-86.645998, 45.833888],\n            [-86.721113, 45.845431],\n            [-86.72852, 45.848759],\n            [-86.742466, 45.864719],\n            [-86.749638, 45.867796],\n            [-86.758449, 45.867274],\n            [-86.78208, 45.860195],\n            [-86.784177, 45.854641],\n            [-86.782259, 45.82995],\n            [-86.777225, 45.827183],\n            [-86.774612, 45.821696],\n            [-86.773279, 45.811385],\n            [-86.785722, 45.794517],\n            [-86.805524, 45.791275],\n            [-86.801476, 45.780027],\n            [-86.821523, 45.770356],\n            [-86.823743, 45.765486],\n            [-86.820868, 45.760776],\n            [-86.821814, 45.757164],\n            [-86.838658, 45.741831],\n            [-86.841818, 45.729051],\n            [-86.838746, 45.722307],\n            [-86.870392, 45.710087],\n            [-86.876904, 45.711891],\n            [-86.895342, 45.711464],\n            [-86.904089, 45.709546],\n            [-86.92106, 45.697868],\n            [-86.944158, 45.695833],\n            [-86.964275, 45.672761],\n            [-86.966885, 45.675001],\n            [-86.967315, 45.684923],\n            [-86.969765, 45.691895],\n            [-86.981349, 45.696463],\n            [-86.984588, 45.705812],\n            [-86.982413, 45.719873],\n            [-86.977655, 45.728768],\n            [-86.975224, 45.75313],\n            [-86.981341, 45.76616],\n            [-86.981624, 45.792221],\n            [-86.988438, 45.810621],\n            [-87.00508, 45.831718],\n            [-87.018902, 45.838886],\n            [-87.031435, 45.837238],\n            [-87.039842, 45.834245],\n            [-87.052043, 45.821879],\n            [-87.057439, 45.812483],\n            [-87.058844, 45.80151],\n            [-87.058127, 45.779152],\n            [-87.063975, 45.76651],\n            [-87.064302, 45.758828],\n            [-87.062406, 45.753296],\n            [-87.05555, 45.751535],\n            [-87.052908, 45.747983],\n            [-87.057444, 45.736822],\n            [-87.061721, 45.732821],\n            [-87.070442, 45.718779],\n            [-87.059533, 45.708497],\n            [-87.095455, 45.701039],\n            [-87.099401, 45.698614],\n            [-87.099725, 45.695231],\n            [-87.111638, 45.685905],\n            [-87.129412, 45.68171],\n            [-87.172241, 45.661788],\n            [-87.196852, 45.636275],\n            [-87.223647, 45.599338],\n            [-87.234612, 45.588817],\n            [-87.263488, 45.552032],\n            [-87.288726, 45.501606],\n            [-87.306122, 45.475513],\n            [-87.319703, 45.464929],\n            [-87.333147, 45.447208],\n            [-87.334249, 45.442315],\n            [-87.33324, 45.436897],\n            [-87.329958, 45.431937],\n            [-87.325834, 45.43004],\n            [-87.327749, 45.425307],\n            [-87.336152, 45.41536],\n            [-87.350852, 45.407743],\n            [-87.359512, 45.399829],\n            [-87.364368, 45.388532],\n            [-87.3925, 45.369028],\n            [-87.399973, 45.349322],\n            [-87.431684, 45.316383],\n            [-87.437257, 45.3055],\n            [-87.438908, 45.293405],\n            [-87.465201, 45.273351],\n            [-87.512336, 45.224252],\n            [-87.548964, 45.191591],\n            [-87.563417, 45.18407],\n            [-87.585651, 45.166394],\n            [-87.600796, 45.146842],\n            [-87.60928, 45.13232],\n            [-87.612019, 45.123377],\n            [-87.610073, 45.114141],\n            [-87.60012, 45.103011],\n            [-87.59027, 45.096406],\n            [-87.581969, 45.097206],\n            [-87.590208, 45.095264],\n          ],\n        ],\n        [\n          [\n            [-86.033174, 45.15842],\n            [-86.005946, 45.155751],\n            [-85.993194, 45.152805],\n            [-85.989412, 45.151069],\n            [-85.976803, 45.138363],\n            [-85.976434, 45.120706],\n            [-85.980433, 45.113046],\n            [-85.984095, 45.087073],\n            [-85.982799, 45.080787],\n            [-85.977082, 45.072993],\n            [-85.96059, 45.062223],\n            [-85.95976, 45.058486],\n            [-85.976883, 45.06266],\n            [-85.99736, 45.055929],\n            [-86.013073, 45.063774],\n            [-86.019874, 45.071665],\n            [-86.037129, 45.086576],\n            [-86.052424, 45.095311],\n            [-86.058653, 45.100776],\n            [-86.060396, 45.104617],\n            [-86.065016, 45.140266],\n            [-86.059393, 45.152291],\n            [-86.050473, 45.158418],\n            [-86.04443, 45.159582],\n            [-86.033174, 45.15842],\n          ],\n        ],\n        [\n          [\n            [-86.093536, 45.007838],\n            [-86.115699, 44.999093],\n            [-86.133655, 44.996874],\n            [-86.154824, 45.002394],\n            [-86.156689, 45.010535],\n            [-86.154557, 45.018102],\n            [-86.141644, 45.040251],\n            [-86.138095, 45.043038],\n            [-86.117908, 45.048478],\n            [-86.093166, 45.041492],\n            [-86.079103, 45.030795],\n            [-86.093451, 45.03166],\n            [-86.097094, 45.030128],\n            [-86.100315, 45.02624],\n            [-86.101894, 45.022811],\n            [-86.101214, 45.018101],\n            [-86.093536, 45.007838],\n          ],\n        ],\n        [\n          [\n            [-82.415937, 43.005555],\n            [-82.422586, 43.000029],\n            [-82.424206, 42.996938],\n            [-82.42455, 42.993393],\n            [-82.423086, 42.988728],\n            [-82.420346, 42.984451],\n            [-82.412965, 42.977041],\n            [-82.416737, 42.966613],\n            [-82.428603, 42.952001],\n            [-82.447142, 42.937752],\n            [-82.455027, 42.926866],\n            [-82.46404, 42.901456],\n            [-82.469912, 42.887459],\n            [-82.470032, 42.881421],\n            [-82.46822, 42.859107],\n            [-82.468961, 42.852314],\n            [-82.472681, 42.836784],\n            [-82.47864, 42.825187],\n            [-82.482045, 42.808629],\n            [-82.481576, 42.805519],\n            [-82.480394, 42.802272],\n            [-82.471159, 42.784002],\n            [-82.467394, 42.769298],\n            [-82.467483, 42.76191],\n            [-82.483604, 42.733624],\n            [-82.48387, 42.71798],\n            [-82.494491, 42.700823],\n            [-82.510533, 42.665172],\n            [-82.509935, 42.637294],\n            [-82.518782, 42.613888],\n            [-82.523337, 42.607486],\n            [-82.548169, 42.591848],\n            [-82.549717, 42.590338],\n            [-82.554236, 42.583981],\n            [-82.555938, 42.582425],\n            [-82.569801, 42.573551],\n            [-82.57738, 42.567078],\n            [-82.579205, 42.56534],\n            [-82.583996, 42.554041],\n            [-82.589779, 42.550678],\n            [-82.604686, 42.548592],\n            [-82.607068, 42.548843],\n            [-82.611059, 42.550419],\n            [-82.616848, 42.554601],\n            [-82.624907, 42.557229],\n            [-82.633491, 42.557051],\n            [-82.640916, 42.554973],\n            [-82.64268, 42.554333],\n            [-82.648776, 42.550401],\n            [-82.661677, 42.541875],\n            [-82.666596, 42.535084],\n            [-82.679059, 42.52221],\n            [-82.686417, 42.518597],\n            [-82.685397, 42.528659],\n            [-82.679522, 42.53552],\n            [-82.670956, 42.537989],\n            [-82.664335, 42.546244],\n            [-82.680758, 42.557909],\n            [-82.681036, 42.574695],\n            [-82.688061, 42.588417],\n            [-82.701152, 42.585991],\n            [-82.711151, 42.590884],\n            [-82.713042, 42.597904],\n            [-82.700818, 42.606687],\n            [-82.683482, 42.609433],\n            [-82.681593, 42.618672],\n            [-82.690124, 42.625033],\n            [-82.689836, 42.627148],\n            [-82.669103, 42.637225],\n            [-82.645715, 42.631145],\n            [-82.630922, 42.64211],\n            [-82.626396, 42.647385],\n            [-82.623043, 42.655951],\n            [-82.623797, 42.665395],\n            [-82.630851, 42.673341],\n            [-82.635262, 42.675552],\n            [-82.659781, 42.678618],\n            [-82.674287, 42.687049],\n            [-82.6855, 42.690036],\n            [-82.700964, 42.689548],\n            [-82.706135, 42.683578],\n            [-82.726366, 42.682768],\n            [-82.753317, 42.669732],\n            [-82.765583, 42.655725],\n            [-82.780817, 42.652232],\n            [-82.792418, 42.655132],\n            [-82.797318, 42.654032],\n            [-82.813518, 42.640833],\n            [-82.820118, 42.626333],\n            [-82.819017, 42.616333],\n            [-82.811017, 42.610933],\n            [-82.789017, 42.603434],\n            [-82.771844, 42.595517],\n            [-82.76959, 42.59338],\n            [-82.788612, 42.588501],\n            [-82.788116, 42.582835],\n            [-82.781514, 42.571634],\n            [-82.782414, 42.564834],\n            [-82.784514, 42.563634],\n            [-82.789114, 42.568434],\n            [-82.796715, 42.571034],\n            [-82.821016, 42.570734],\n            [-82.834216, 42.567849],\n            [-82.845916, 42.560634],\n            [-82.849316, 42.555734],\n            [-82.851016, 42.548935],\n            [-82.859316, 42.541935],\n            [-82.874416, 42.523535],\n            [-82.882316, 42.501035],\n            [-82.883915, 42.471836],\n            [-82.870347, 42.450888],\n            [-82.886113, 42.408137],\n            [-82.888413, 42.398237],\n            [-82.894013, 42.389437],\n            [-82.898413, 42.385437],\n            [-82.915114, 42.378137],\n            [-82.919114, 42.374437],\n            [-82.928815, 42.359437],\n            [-82.92397, 42.352068],\n            [-82.945415, 42.347337],\n            [-82.959416, 42.339638],\n            [-82.988619, 42.332439],\n            [-83.01832, 42.329739],\n            [-83.064121, 42.317738],\n            [-83.079721, 42.308638],\n            [-83.096521, 42.290138],\n            [-83.110922, 42.260638],\n            [-83.128022, 42.238839],\n            [-83.133923, 42.17474],\n            [-83.121323, 42.125742],\n            [-83.133511, 42.088143],\n            [-83.157624, 42.085542],\n            [-83.168759, 42.073601],\n            [-83.188598, 42.066431],\n            [-83.189115, 42.061853],\n            [-83.186877, 42.061206],\n            [-83.185526, 42.052243],\n            [-83.18824, 42.031329],\n            [-83.185858, 42.029451],\n            [-83.17089, 42.022403],\n            [-83.17089, 42.015185],\n            [-83.193918, 41.997656],\n            [-83.212479, 41.98872],\n            [-83.216897, 41.988561],\n            [-83.223354, 41.989191],\n            [-83.228502, 41.987291],\n            [-83.249204, 41.972402],\n            [-83.257009, 41.959686],\n            [-83.257292, 41.950745],\n            [-83.253552, 41.944897],\n            [-83.26455, 41.929086],\n            [-83.270484, 41.939335],\n            [-83.28713, 41.944397],\n            [-83.295982, 41.944742],\n            [-83.302904, 41.943073],\n            [-83.315859, 41.935893],\n            [-83.326024, 41.924961],\n            [-83.333642, 41.907261],\n            [-83.335961, 41.889721],\n            [-83.341557, 41.879956],\n            [-83.359467, 41.867849],\n            [-83.366187, 41.865505],\n            [-83.372445, 41.874477],\n            [-83.381955, 41.870877],\n            [-83.39622, 41.852965],\n            [-83.409596, 41.830325],\n            [-83.422316, 41.822278],\n            [-83.434204, 41.818562],\n            [-83.439612, 41.813162],\n            [-83.441668, 41.808646],\n            [-83.443364, 41.789118],\n            [-83.437516, 41.769694],\n            [-83.427308, 41.750214],\n            [-83.424076, 41.740738],\n            [-83.43436, 41.737058],\n            [-83.451897, 41.734486],\n            [-83.453832, 41.732647],\n            [-83.497733, 41.731847],\n            [-83.499733, 41.731647],\n            [-83.503433, 41.731547],\n            [-83.504334, 41.731547],\n            [-83.585235, 41.729348],\n            [-83.593835, 41.729148],\n            [-83.595235, 41.729148],\n            [-83.636636, 41.727849],\n            [-83.639636, 41.727749],\n            [-83.665937, 41.726949],\n            [-83.685337, 41.726449],\n            [-83.708937, 41.72515],\n            [-83.763038, 41.72355],\n            [-83.859541, 41.72125],\n            [-83.880539, 41.720081],\n            [-83.899764, 41.719961],\n            [-83.998849, 41.716822],\n            [-84.019373, 41.716668],\n            [-84.134417, 41.712931],\n            [-84.360546, 41.706621],\n            [-84.396547, 41.705935],\n            [-84.438067, 41.704903],\n            [-84.749955, 41.698245],\n            [-84.806082, 41.696089],\n            [-84.806018, 41.707485],\n            [-84.806042, 41.720544],\n            [-84.806065, 41.732909],\n            [-84.806074, 41.737603],\n            [-84.806134, 41.743115],\n            [-84.805883, 41.760216],\n            [-84.818873, 41.760059],\n            [-84.825196, 41.75999],\n            [-84.932484, 41.759691],\n            [-84.96086, 41.759438],\n            [-84.961562, 41.759552],\n            [-84.971551, 41.759527],\n            [-84.972803, 41.759366],\n            [-85.037817, 41.759801],\n            [-85.039436, 41.759985],\n            [-85.117267, 41.7597],\n            [-85.123102, 41.759743],\n            [-85.17223, 41.759618],\n            [-85.196637, 41.759735],\n            [-85.232835, 41.759839],\n            [-85.272216, 41.759999],\n            [-85.272951, 41.759911],\n            [-85.273713, 41.75977],\n            [-85.292099, 41.759962],\n            [-85.298365, 41.760028],\n            [-85.30814, 41.760097],\n            [-85.318129, 41.759983],\n            [-85.330623, 41.759982],\n            [-85.350174, 41.759908],\n            [-85.379133, 41.759875],\n            [-85.427553, 41.759706],\n            [-85.432471, 41.759684],\n            [-85.515959, 41.759352],\n            [-85.518251, 41.759513],\n            [-85.607548, 41.759079],\n            [-85.608312, 41.759193],\n            [-85.622608, 41.759049],\n            [-85.624987, 41.759093],\n            [-85.632714, 41.759164],\n            [-85.647683, 41.759125],\n            [-85.650738, 41.759103],\n            [-85.724534, 41.759085],\n            [-85.749992, 41.759091],\n            [-85.750469, 41.75909],\n            [-85.775039, 41.759147],\n            [-85.791363, 41.759051],\n            [-85.872041, 41.759365],\n            [-85.874997, 41.759341],\n            [-85.888825, 41.759422],\n            [-85.974901, 41.759849],\n            [-85.97498, 41.759849],\n            [-85.991302, 41.759949],\n            [-86.041027, 41.760512],\n            [-86.12506, 41.760576],\n            [-86.12546, 41.76056],\n            [-86.127844, 41.760592],\n            [-86.21759, 41.760016],\n            [-86.22607, 41.760016],\n            [-86.265496, 41.760207],\n            [-86.501773, 41.759553],\n            [-86.519318, 41.759447],\n            [-86.640044, 41.759671],\n            [-86.641186, 41.759633],\n            [-86.746521, 41.759982],\n            [-86.748096, 41.759967],\n            [-86.800611, 41.760251],\n            [-86.800707, 41.76024],\n            [-86.801578, 41.76024],\n            [-86.804427, 41.76024],\n            [-86.823628, 41.76024],\n            [-86.824828, 41.76024],\n            [-86.777227, 41.78474],\n            [-86.717037, 41.819349],\n            [-86.679355, 41.844793],\n            [-86.619442, 41.893827],\n            [-86.597899, 41.918291],\n            [-86.582197, 41.942241],\n            [-86.556421, 42.000042],\n            [-86.501322, 42.08454],\n            [-86.490122, 42.105139],\n            [-86.485223, 42.118239],\n            [-86.466262, 42.134406],\n            [-86.404146, 42.196379],\n            [-86.385179, 42.217279],\n            [-86.356218, 42.254166],\n            [-86.321803, 42.310743],\n            [-86.297168, 42.358207],\n            [-86.284448, 42.394563],\n            [-86.284969, 42.401814],\n            [-86.276878, 42.413317],\n            [-86.261573, 42.443894],\n            [-86.24971, 42.480212],\n            [-86.240642, 42.54],\n            [-86.23528, 42.564958],\n            [-86.228082, 42.583397],\n            [-86.225613, 42.594765],\n            [-86.22905, 42.637693],\n            [-86.226638, 42.644922],\n            [-86.21602, 42.664413],\n            [-86.208654, 42.69209],\n            [-86.206834, 42.719424],\n            [-86.208309, 42.762789],\n            [-86.210863, 42.783832],\n            [-86.211815, 42.833236],\n            [-86.210737, 42.859128],\n            [-86.214138, 42.883555],\n            [-86.216209, 42.919007],\n            [-86.226305, 42.988284],\n            [-86.232707, 43.015762],\n            [-86.244277, 43.049681],\n            [-86.250069, 43.057489],\n            [-86.250517, 43.066993],\n            [-86.254646, 43.083409],\n            [-86.280756, 43.136015],\n            [-86.316259, 43.195114],\n            [-86.39575, 43.316225],\n            [-86.407832, 43.338436],\n            [-86.435124, 43.396702],\n            [-86.448743, 43.432013],\n            [-86.468747, 43.491963],\n            [-86.479276, 43.515335],\n            [-86.520205, 43.576718],\n            [-86.529507, 43.593462],\n            [-86.538497, 43.617501],\n            [-86.540916, 43.633158],\n            [-86.540787, 43.644593],\n            [-86.538482, 43.658795],\n            [-86.529179, 43.677889],\n            [-86.510319, 43.698625],\n            [-86.481854, 43.725135],\n            [-86.461554, 43.746685],\n            [-86.445123, 43.771564],\n            [-86.437391, 43.789334],\n            [-86.431043, 43.815975],\n            [-86.431198, 43.84072],\n            [-86.433915, 43.855608],\n            [-86.445455, 43.889726],\n            [-86.447915, 43.918089],\n            [-86.463136, 43.970976],\n            [-86.483331, 44.001179],\n            [-86.501738, 44.021912],\n            [-86.508827, 44.032755],\n            [-86.514742, 44.04792],\n            [-86.514702, 44.058119],\n            [-86.508764, 44.067881],\n            [-86.500453, 44.075607],\n            [-86.446883, 44.10597],\n            [-86.429871, 44.119782],\n            [-86.421108, 44.12948],\n            [-86.400645, 44.156848],\n            [-86.380062, 44.189472],\n            [-86.362847, 44.208113],\n            [-86.351638, 44.229429],\n            [-86.343793, 44.249608],\n            [-86.327287, 44.263057],\n            [-86.316025, 44.28421],\n            [-86.300264, 44.308197],\n            [-86.26871, 44.345324],\n            [-86.251926, 44.400984],\n            [-86.248083, 44.420946],\n            [-86.24832, 44.434758],\n            [-86.251843, 44.451632],\n            [-86.251605, 44.465443],\n            [-86.248914, 44.483004],\n            [-86.243745, 44.488929],\n            [-86.238743, 44.501682],\n            [-86.223788, 44.549043],\n            [-86.220697, 44.566742],\n            [-86.22545, 44.59459],\n            [-86.231828, 44.609107],\n            [-86.25395, 44.64808],\n            [-86.259029, 44.663654],\n            [-86.256796, 44.686769],\n            [-86.254996, 44.691935],\n            [-86.248474, 44.699046],\n            [-86.232482, 44.70605],\n            [-86.172201, 44.720623],\n            [-86.160268, 44.728189],\n            [-86.121125, 44.727972],\n            [-86.106182, 44.731088],\n            [-86.089186, 44.741496],\n            [-86.077933, 44.758234],\n            [-86.073506, 44.769803],\n            [-86.071746, 44.804717],\n            [-86.065966, 44.821522],\n            [-86.066031, 44.834852],\n            [-86.071112, 44.86542],\n            [-86.072468, 44.884788],\n            [-86.07099, 44.895876],\n            [-86.066745, 44.905685],\n            [-86.058862, 44.911012],\n            [-86.038332, 44.915696],\n            [-86.031194, 44.907349],\n            [-86.021513, 44.902774],\n            [-86.009355, 44.899454],\n            [-85.992535, 44.900026],\n            [-85.980219, 44.906136],\n            [-85.972824, 44.914781],\n            [-85.967169, 44.929484],\n            [-85.961603, 44.935567],\n            [-85.952721, 44.940758],\n            [-85.942099, 44.954317],\n            [-85.938589, 44.964559],\n            [-85.9316, 44.968788],\n            [-85.915851, 44.968307],\n            [-85.897626, 44.962014],\n            [-85.891543, 44.957783],\n            [-85.879934, 44.943305],\n            [-85.869852, 44.939031],\n            [-85.854304, 44.938147],\n            [-85.83615, 44.940256],\n            [-85.815451, 44.945631],\n            [-85.807403, 44.949814],\n            [-85.780439, 44.977932],\n            [-85.778278, 44.983075],\n            [-85.776207, 45.000574],\n            [-85.771395, 45.015181],\n            [-85.761943, 45.023454],\n            [-85.746444, 45.051229],\n            [-85.740836, 45.055575],\n            [-85.712262, 45.065622],\n            [-85.695715, 45.076461],\n            [-85.681096, 45.092693],\n            [-85.675671, 45.10554],\n            [-85.674861, 45.116216],\n            [-85.656024, 45.145788],\n            [-85.618639, 45.186771],\n            [-85.613174, 45.184624],\n            [-85.611684, 45.181104],\n            [-85.606963, 45.178477],\n            [-85.593064, 45.178527],\n            [-85.585986, 45.180381],\n            [-85.564654, 45.192546],\n            [-85.561809, 45.200524],\n            [-85.551072, 45.210742],\n            [-85.540497, 45.210169],\n            [-85.526734, 45.189316],\n            [-85.531461, 45.177247],\n            [-85.536892, 45.173385],\n            [-85.552179, 45.167352],\n            [-85.56168, 45.15894],\n            [-85.554083, 45.142568],\n            [-85.558373, 45.133209],\n            [-85.564612, 45.137498],\n            [-85.564612, 45.147247],\n            [-85.570178, 45.155145],\n            [-85.573893, 45.155488],\n            [-85.590434, 45.153175],\n            [-85.599801, 45.149286],\n            [-85.614319, 45.127562],\n            [-85.609266, 45.11351],\n            [-85.595029, 45.103962],\n            [-85.597496, 45.094454],\n            [-85.583198, 45.071304],\n            [-85.573353, 45.068382],\n            [-85.566066, 45.059201],\n            [-85.56613, 45.043633],\n            [-85.57016, 45.041278],\n            [-85.573976, 45.043361],\n            [-85.597181, 45.040547],\n            [-85.599652, 45.021749],\n            [-85.609123, 45.013103],\n            [-85.621878, 45.004529],\n            [-85.606588, 44.990662],\n            [-85.604301, 44.990983],\n            [-85.602356, 44.974272],\n            [-85.602034, 44.926743],\n            [-85.621403, 44.923123],\n            [-85.625497, 44.921107],\n            [-85.639842, 44.890255],\n            [-85.645456, 44.883645],\n            [-85.648932, 44.87401],\n            [-85.652355, 44.849092],\n            [-85.651435, 44.831624],\n            [-85.641652, 44.810816],\n            [-85.637, 44.790078],\n            [-85.640781, 44.775561],\n            [-85.636097, 44.771329],\n            [-85.627982, 44.767508],\n            [-85.610776, 44.76516],\n            [-85.599256, 44.765919],\n            [-85.593571, 44.768783],\n            [-85.590985, 44.783914],\n            [-85.581717, 44.807784],\n            [-85.545891, 44.864024],\n            [-85.532931, 44.87319],\n            [-85.530649, 44.889763],\n            [-85.553509, 44.890924],\n            [-85.559524, 44.888113],\n            [-85.564509, 44.895246],\n            [-85.539703, 44.916779],\n            [-85.533553, 44.925762],\n            [-85.520205, 44.960347],\n            [-85.5221, 44.966727],\n            [-85.520034, 44.973996],\n            [-85.4926, 44.989834],\n            [-85.475204, 44.991053],\n            [-85.470462, 44.980745],\n            [-85.464944, 44.961062],\n            [-85.46665, 44.958844],\n            [-85.472258, 44.959391],\n            [-85.48574, 44.953626],\n            [-85.491286, 44.927585],\n            [-85.49249, 44.90822],\n            [-85.488624, 44.901707],\n            [-85.498007, 44.865451],\n            [-85.502182, 44.855802],\n            [-85.508617, 44.847872],\n            [-85.519096, 44.845339],\n            [-85.539924, 44.834166],\n            [-85.555894, 44.818256],\n            [-85.560231, 44.810072],\n            [-85.560488, 44.789679],\n            [-85.576566, 44.760208],\n            [-85.571301, 44.755293],\n            [-85.554326, 44.748744],\n            [-85.538285, 44.746821],\n            [-85.527216, 44.748235],\n            [-85.504775, 44.768082],\n            [-85.503935, 44.772951],\n            [-85.505244, 44.781594],\n            [-85.509251, 44.787334],\n            [-85.499591, 44.803838],\n            [-85.474796, 44.814959],\n            [-85.462916, 44.825067],\n            [-85.460445, 44.835667],\n            [-85.425804, 44.881646],\n            [-85.423003, 44.895019],\n            [-85.406173, 44.911773],\n            [-85.3958, 44.931018],\n            [-85.378286, 44.998587],\n            [-85.381654, 45.018407],\n            [-85.380659, 45.046319],\n            [-85.377586, 45.055713],\n            [-85.366412, 45.069023],\n            [-85.366908, 45.116938],\n            [-85.372571, 45.126241],\n            [-85.376948, 45.142881],\n            [-85.380464, 45.180876],\n            [-85.386726, 45.189497],\n            [-85.388593, 45.23524],\n            [-85.371593, 45.270834],\n            [-85.355478, 45.282774],\n            [-85.335016, 45.294027],\n            [-85.323941, 45.303355],\n            [-85.307646, 45.31314],\n            [-85.294848, 45.316408],\n            [-85.289568, 45.314052],\n            [-85.273789, 45.315443],\n            [-85.262996, 45.319507],\n            [-85.25505, 45.325675],\n            [-85.252193, 45.330863],\n            [-85.235629, 45.339374],\n            [-85.209673, 45.356937],\n            [-85.196704, 45.360641],\n            [-85.182471, 45.360824],\n            [-85.143651, 45.370369],\n            [-85.054805, 45.364091],\n            [-85.043101, 45.361506],\n            [-85.032813, 45.361251],\n            [-85.022234, 45.366701],\n            [-84.959119, 45.375973],\n            [-84.91585, 45.393115],\n            [-84.912537, 45.402828],\n            [-84.912956, 45.409776],\n            [-84.916165, 45.417639],\n            [-84.922006, 45.421914],\n            [-84.980953, 45.429382],\n            [-84.990041, 45.427618],\n            [-84.990785, 45.425264],\n            [-84.983836, 45.420764],\n            [-84.977116, 45.420035],\n            [-84.978608, 45.418663],\n            [-85.040936, 45.436701],\n            [-85.069573, 45.459239],\n            [-85.088386, 45.476928],\n            [-85.109252, 45.521626],\n            [-85.115479, 45.539406],\n            [-85.119737, 45.569026],\n            [-85.118637, 45.575175],\n            [-85.111909, 45.585829],\n            [-85.093525, 45.600121],\n            [-85.079528, 45.617083],\n            [-85.075686, 45.623688],\n            [-85.07491, 45.629242],\n            [-85.061488, 45.639505],\n            [-85.015341, 45.651564],\n            [-85.007026, 45.65636],\n            [-85.001154, 45.661225],\n            [-84.996336, 45.669685],\n            [-84.992958, 45.679983],\n            [-84.987847, 45.682997],\n            [-84.975768, 45.683174],\n            [-84.97095, 45.686334],\n            [-84.943756, 45.71029],\n            [-84.940526, 45.721832],\n            [-84.942125, 45.72846],\n            [-84.95084, 45.736893],\n            [-84.982328, 45.75196],\n            [-85.002914, 45.75394],\n            [-85.048441, 45.760807],\n            [-85.074563, 45.762182],\n            [-85.077313, 45.765619],\n            [-85.049129, 45.770431],\n            [-85.030568, 45.769056],\n            [-85.00741, 45.763168],\n            [-84.995105, 45.759855],\n            [-84.938312, 45.759892],\n            [-84.924664, 45.756897],\n            [-84.910398, 45.75001],\n            [-84.866976, 45.752066],\n            [-84.840981, 45.744751],\n            [-84.806642, 45.746171],\n            [-84.799558, 45.74713],\n            [-84.788821, 45.752283],\n            [-84.781373, 45.76108],\n            [-84.7798, 45.76965],\n            [-84.792337, 45.778497],\n            [-84.793153, 45.780463],\n            [-84.780313, 45.787224],\n            [-84.772765, 45.789301],\n            [-84.751571, 45.782733],\n            [-84.742, 45.784134],\n            [-84.734065, 45.788205],\n            [-84.726192, 45.786905],\n            [-84.718904, 45.777599],\n            [-84.715996, 45.766174],\n            [-84.681967, 45.756197],\n            [-84.679546, 45.749095],\n            [-84.644822, 45.73999],\n            [-84.604712, 45.721668],\n            [-84.573631, 45.710381],\n            [-84.555496, 45.702268],\n            [-84.553311, 45.698566],\n            [-84.538998, 45.690383],\n            [-84.46168, 45.652404],\n            [-84.442348, 45.654771],\n            [-84.435415, 45.664106],\n            [-84.427495, 45.669201],\n            [-84.413642, 45.669427],\n            [-84.400283, 45.663345],\n            [-84.376403, 45.655565],\n            [-84.329537, 45.66438],\n            [-84.289685, 45.653296],\n            [-84.270238, 45.64479],\n            [-84.215268, 45.634767],\n            [-84.196043, 45.621456],\n            [-84.180514, 45.604639],\n            [-84.157121, 45.585305],\n            [-84.139462, 45.573714],\n            [-84.128867, 45.562284],\n            [-84.126532, 45.556616],\n            [-84.126971, 45.542428],\n            [-84.122309, 45.523788],\n            [-84.116687, 45.51305],\n            [-84.109238, 45.505171],\n            [-84.095905, 45.497298],\n            [-84.075792, 45.490537],\n            [-84.056138, 45.489349],\n            [-84.039958, 45.493733],\n            [-84.036286, 45.496245],\n            [-84.028813, 45.497225],\n            [-84.009582, 45.495069],\n            [-83.99835, 45.491158],\n            [-83.978017, 45.494138],\n            [-83.939261, 45.493189],\n            [-83.909472, 45.485784],\n            [-83.881813, 45.467907],\n            [-83.85856, 45.446865],\n            [-83.841543, 45.435287],\n            [-83.806622, 45.419159],\n            [-83.788777, 45.416415],\n            [-83.773171, 45.417302],\n            [-83.755569, 45.411034],\n            [-83.737321, 45.410943],\n            [-83.721815, 45.413304],\n            [-83.697316, 45.396239],\n            [-83.667934, 45.384675],\n            [-83.64379, 45.37171],\n            [-83.599273, 45.352561],\n            [-83.570361, 45.347198],\n            [-83.550268, 45.350832],\n            [-83.546799, 45.352637],\n            [-83.545729, 45.358397],\n            [-83.538306, 45.358167],\n            [-83.520258, 45.347239],\n            [-83.514717, 45.34646],\n            [-83.496704, 45.357536],\n            [-83.488826, 45.355872],\n            [-83.477794, 45.341891],\n            [-83.445672, 45.310612],\n            [-83.43304, 45.303688],\n            [-83.42514, 45.296808],\n            [-83.422389, 45.290775],\n            [-83.401091, 45.279572],\n            [-83.388274, 45.276916],\n            [-83.385104, 45.274195],\n            [-83.381743, 45.268983],\n            [-83.388034, 45.254976],\n            [-83.412569, 45.245807],\n            [-83.41241, 45.238905],\n            [-83.405914, 45.227157],\n            [-83.384265, 45.203472],\n            [-83.381647, 45.203357],\n            [-83.368896, 45.182168],\n            [-83.368046, 45.172478],\n            [-83.363678, 45.166469],\n            [-83.359895, 45.16302],\n            [-83.348684, 45.161516],\n            [-83.337822, 45.14712],\n            [-83.316118, 45.141958],\n            [-83.315924, 45.139992],\n            [-83.319315, 45.137684],\n            [-83.318442, 45.12893],\n            [-83.30788, 45.099093],\n            [-83.298275, 45.090483],\n            [-83.290827, 45.069157],\n            [-83.291346, 45.062597],\n            [-83.280272, 45.045962],\n            [-83.277037, 45.044767],\n            [-83.271464, 45.038114],\n            [-83.265896, 45.026844],\n            [-83.271506, 45.023417],\n            [-83.287974, 45.026462],\n            [-83.302153, 45.032315],\n            [-83.340257, 45.041545],\n            [-83.357609, 45.050613],\n            [-83.36747, 45.062268],\n            [-83.399255, 45.070364],\n            [-83.433798, 45.057616],\n            [-83.442052, 45.051056],\n            [-83.453363, 45.035331],\n            [-83.454168, 45.03188],\n            [-83.446342, 45.016655],\n            [-83.435249, 45.011883],\n            [-83.431254, 45.007998],\n            [-83.435822, 45.000012],\n            [-83.438948, 45.000011],\n            [-83.450013, 44.990219],\n            [-83.443718, 44.952247],\n            [-83.438856, 44.940843],\n            [-83.433032, 44.93289],\n            [-83.425311, 44.926741],\n            [-83.404596, 44.918761],\n            [-83.398879, 44.906417],\n            [-83.39396, 44.903056],\n            [-83.352815, 44.886164],\n            [-83.320503, 44.880571],\n            [-83.312903, 44.884191],\n            [-83.314966, 44.86838],\n            [-83.321241, 44.852962],\n            [-83.314429, 44.84222],\n            [-83.300648, 44.829831],\n            [-83.299736, 44.823359],\n            [-83.290906, 44.807888],\n            [-83.295718, 44.784516],\n            [-83.288844, 44.765955],\n            [-83.298287, 44.754907],\n            [-83.2973, 44.746134],\n            [-83.290665, 44.729265],\n            [-83.284128, 44.721766],\n            [-83.273393, 44.713901],\n            [-83.276836, 44.689354],\n            [-83.289442, 44.652968],\n            [-83.307504, 44.629816],\n            [-83.314517, 44.608725],\n            [-83.315603, 44.595079],\n            [-83.313649, 44.564588],\n            [-83.308918, 44.54836],\n            [-83.308471, 44.539902],\n            [-83.318279, 44.514416],\n            [-83.31761, 44.486058],\n            [-83.326824, 44.444411],\n            [-83.327171, 44.429234],\n            [-83.324616, 44.415039],\n            [-83.321553, 44.409119],\n            [-83.321648, 44.404502],\n            [-83.333757, 44.372486],\n            [-83.335248, 44.357995],\n            [-83.332533, 44.340464],\n            [-83.336988, 44.332919],\n            [-83.343738, 44.329763],\n            [-83.352115, 44.332366],\n            [-83.364312, 44.33259],\n            [-83.373607, 44.327784],\n            [-83.401822, 44.301831],\n            [-83.414301, 44.294543],\n            [-83.419236, 44.2878],\n            [-83.425762, 44.272487],\n            [-83.445176, 44.252823],\n            [-83.465111, 44.245949],\n            [-83.442731, 44.265361],\n            [-83.445805, 44.273378],\n            [-83.463049, 44.278838],\n            [-83.479531, 44.28009],\n            [-83.500392, 44.27661],\n            [-83.508839, 44.273711],\n            [-83.524817, 44.261558],\n            [-83.53771, 44.248171],\n            [-83.549096, 44.227282],\n            [-83.552872, 44.210718],\n            [-83.553834, 44.197956],\n            [-83.567744, 44.155899],\n            [-83.568915, 44.126734],\n            [-83.567714, 44.119652],\n            [-83.573071, 44.101298],\n            [-83.588004, 44.086758],\n            [-83.591361, 44.079237],\n            [-83.590437, 44.069569],\n            [-83.58409, 44.056748],\n            [-83.601173, 44.054686],\n            [-83.621078, 44.056186],\n            [-83.650116, 44.052404],\n            [-83.679654, 44.036365],\n            [-83.687892, 44.020709],\n            [-83.680108, 43.994196],\n            [-83.743806, 43.991529],\n            [-83.746779, 43.988807],\n            [-83.763774, 43.985158],\n            [-83.787863, 43.985279],\n            [-83.829077, 43.989095],\n            [-83.848276, 43.981594],\n            [-83.85493, 43.977067],\n            [-83.856128, 43.972632],\n            [-83.869406, 43.960719],\n            [-83.877694, 43.959235],\n            [-83.885328, 43.946691],\n            [-83.890145, 43.934672],\n            [-83.890912, 43.923314],\n            [-83.907388, 43.918062],\n            [-83.916815, 43.89905],\n            [-83.917875, 43.856509],\n            [-83.926345, 43.787398],\n            [-83.929375, 43.777091],\n            [-83.945426, 43.759946],\n            [-83.954792, 43.760932],\n            [-83.956021, 43.759286],\n            [-83.954347, 43.750647],\n            [-83.939297, 43.715369],\n            [-83.909479, 43.672622],\n            [-83.897078, 43.664022],\n            [-83.852076, 43.644922],\n            [-83.844118, 43.652896],\n            [-83.83816, 43.654384],\n            [-83.814674, 43.643022],\n            [-83.806774, 43.641221],\n            [-83.778919, 43.630056],\n            [-83.770693, 43.628691],\n            [-83.769886, 43.634924],\n            [-83.725793, 43.618691],\n            [-83.703446, 43.597646],\n            [-83.669795, 43.59079],\n            [-83.666052, 43.591292],\n            [-83.654192, 43.59929],\n            [-83.618602, 43.628891],\n            [-83.595579, 43.650249],\n            [-83.563157, 43.684564],\n            [-83.553707, 43.685432],\n            [-83.549044, 43.693798],\n            [-83.55147, 43.699901],\n            [-83.540187, 43.708746],\n            [-83.524837, 43.716948],\n            [-83.515853, 43.718157],\n            [-83.513461, 43.714607],\n            [-83.506657, 43.710907],\n            [-83.48007, 43.714636],\n            [-83.470053, 43.723418],\n            [-83.46508, 43.733843],\n            [-83.459628, 43.740931],\n            [-83.440171, 43.761694],\n            [-83.438878, 43.767135],\n            [-83.441591, 43.770175],\n            [-83.446752, 43.77186],\n            [-83.438311, 43.786846],\n            [-83.426068, 43.799915],\n            [-83.416378, 43.801034],\n            [-83.411453, 43.805033],\n            [-83.410663, 43.80773],\n            [-83.428481, 43.817907],\n            [-83.442917, 43.811033],\n            [-83.471788, 43.789723],\n            [-83.480725, 43.791786],\n            [-83.448416, 43.861902],\n            [-83.427794, 43.861215],\n            [-83.425732, 43.849529],\n            [-83.417483, 43.841967],\n            [-83.404422, 43.84128],\n            [-83.384487, 43.85434],\n            [-83.358869, 43.857395],\n            [-83.33227, 43.880522],\n            [-83.331788, 43.893901],\n            [-83.333532, 43.89852],\n            [-83.340976, 43.904541],\n            [-83.403047, 43.910709],\n            [-83.400985, 43.916208],\n            [-83.338067, 43.915687],\n            [-83.318656, 43.91762],\n            [-83.30569, 43.922489],\n            [-83.28231, 43.938031],\n            [-83.26898, 43.956132],\n            [-83.26185, 43.969021],\n            [-83.26153, 43.973525],\n            [-83.227093, 43.981003],\n            [-83.195688, 43.983137],\n            [-83.180618, 43.982109],\n            [-83.145407, 43.989441],\n            [-83.134881, 43.993147],\n            [-83.120659, 44.00095],\n            [-83.10782, 44.003245],\n            [-83.079297, 44.001079],\n            [-83.066026, 44.003366],\n            [-83.058741, 44.006224],\n            [-83.046577, 44.01571],\n            [-83.029868, 44.041175],\n            [-83.024604, 44.045174],\n            [-82.999283, 44.04651],\n            [-82.990728, 44.048846],\n            [-82.967439, 44.066138],\n            [-82.958688, 44.065774],\n            [-82.956658, 44.063306],\n            [-82.947368, 44.062187],\n            [-82.928884, 44.069389],\n            [-82.915976, 44.070503],\n            [-82.889831, 44.050952],\n            [-82.875889, 44.045046],\n            [-82.833103, 44.036851],\n            [-82.793205, 44.023247],\n            [-82.788298, 44.013712],\n            [-82.783198, 44.009366],\n            [-82.765018, 44.006845],\n            [-82.746255, 43.996037],\n            [-82.738992, 43.989506],\n            [-82.728528, 43.972615],\n            [-82.712235, 43.94961],\n            [-82.709839, 43.948226],\n            [-82.693505, 43.91798],\n            [-82.678642, 43.88373],\n            [-82.65545, 43.867883],\n            [-82.643166, 43.852468],\n            [-82.642899, 43.846419],\n            [-82.647467, 43.84449],\n            [-82.647784, 43.842684],\n            [-82.644345, 43.837539],\n            [-82.633641, 43.831224],\n            [-82.617955, 43.768596],\n            [-82.619079, 43.756088],\n            [-82.617213, 43.746788],\n            [-82.612224, 43.739771],\n            [-82.60483, 43.678884],\n            [-82.605783, 43.669489],\n            [-82.6005, 43.602935],\n            [-82.597911, 43.590016],\n            [-82.593785, 43.581467],\n            [-82.585654, 43.543969],\n            [-82.565691, 43.502904],\n            [-82.565505, 43.497063],\n            [-82.55354, 43.464111],\n            [-82.539517, 43.437539],\n            [-82.538578, 43.431594],\n            [-82.53993, 43.422378],\n            [-82.535627, 43.368062],\n            [-82.536794, 43.34851],\n            [-82.530128, 43.333805],\n            [-82.529416, 43.316243],\n            [-82.532396, 43.30577],\n            [-82.523086, 43.225361],\n            [-82.519123, 43.212737],\n            [-82.508881, 43.196748],\n            [-82.501656, 43.161656],\n            [-82.494194, 43.143736],\n            [-82.490614, 43.118172],\n            [-82.486042, 43.102486],\n            [-82.471053, 43.087581],\n            [-82.457221, 43.061285],\n            [-82.422768, 43.007956],\n            [-82.415937, 43.005555],\n          ],\n        ],\n        [\n          [\n            [-83.436745, 44.021656],\n            [-83.442245, 44.02853],\n            [-83.441551, 44.038841],\n            [-83.425743, 44.02853],\n            [-83.436745, 44.021656],\n          ],\n        ],\n        [\n          [\n            [-83.414047, 43.877026],\n            [-83.427109, 43.877026],\n            [-83.436729, 43.882526],\n            [-83.43261, 43.885273],\n            [-83.414047, 43.877026],\n          ],\n        ],\n        [\n          [\n            [-87.600342, 47.407711],\n            [-87.617531, 47.407711],\n            [-87.629898, 47.415272],\n            [-87.65052, 47.416649],\n            [-87.623718, 47.42696],\n            [-87.585907, 47.419399],\n            [-87.600342, 47.407711],\n          ],\n        ],\n        [\n          [\n            [-83.761154, 46.086082],\n            [-83.784348, 46.090248],\n            [-83.805168, 46.092033],\n            [-83.821236, 46.091438],\n            [-83.828964, 46.09679],\n            [-83.828964, 46.102741],\n            [-83.81707, 46.111069],\n            [-83.803978, 46.109879],\n            [-83.787323, 46.108093],\n            [-83.774239, 46.09798],\n            [-83.763527, 46.093815],\n            [-83.758179, 46.090248],\n            [-83.761154, 46.086082],\n          ],\n        ],\n        [\n          [\n            [-83.97345, 46.065285],\n            [-84.003006, 46.079033],\n            [-84.012634, 46.08728],\n            [-84.00576, 46.097591],\n            [-83.987885, 46.103779],\n            [-83.974136, 46.073532],\n            [-83.97345, 46.065285],\n          ],\n        ],\n        [\n          [\n            [-83.853355, 46.050987],\n            [-83.858116, 46.055149],\n            [-83.858116, 46.062885],\n            [-83.858711, 46.067047],\n            [-83.865845, 46.069427],\n            [-83.871201, 46.07597],\n            [-83.864059, 46.083702],\n            [-83.85276, 46.085487],\n            [-83.847404, 46.082516],\n            [-83.840271, 46.071808],\n            [-83.839081, 46.064072],\n            [-83.846214, 46.051582],\n            [-83.853355, 46.050987],\n          ],\n        ],\n        [\n          [\n            [-83.749252, 46.034328],\n            [-83.758774, 46.036114],\n            [-83.763527, 46.043846],\n            [-83.77018, 46.043228],\n            [-83.773781, 46.051472],\n            [-83.764122, 46.065857],\n            [-83.749847, 46.065857],\n            [-83.733192, 46.053364],\n            [-83.732002, 46.048012],\n            [-83.737358, 46.043846],\n            [-83.743896, 46.035519],\n            [-83.749252, 46.034328],\n          ],\n        ],\n        [\n          [\n            [-84.638847, 45.955563],\n            [-84.640915, 45.971375],\n            [-84.639633, 45.977913],\n            [-84.634041, 45.980309],\n            [-84.613937, 45.973629],\n            [-84.60775, 45.967918],\n            [-84.608704, 45.964111],\n            [-84.619171, 45.957447],\n            [-84.638847, 45.955563],\n          ],\n        ],\n        [\n          [\n            [-84.568253, 45.950787],\n            [-84.582527, 45.958874],\n            [-84.583954, 45.963634],\n            [-84.579674, 45.968391],\n            [-84.575386, 45.970299],\n            [-84.563492, 45.967442],\n            [-84.559212, 45.958401],\n            [-84.564919, 45.95126],\n            [-84.568253, 45.950787],\n          ],\n        ],\n        [\n          [\n            [-83.561836, 45.912563],\n            [-83.583054, 45.91592],\n            [-83.63221, 45.932285],\n            [-83.657661, 45.945461],\n            [-83.687691, 45.93539],\n            [-83.719429, 45.934078],\n            [-83.732986, 45.937641],\n            [-83.742775, 45.938004],\n            [-83.766235, 45.935223],\n            [-83.768852, 45.932068],\n            [-83.78611, 45.933376],\n            [-83.801041, 45.93758],\n            [-83.803329, 45.943363],\n            [-83.808144, 45.945694],\n            [-83.822807, 45.943985],\n            [-83.827568, 45.941235],\n            [-83.835503, 45.941841],\n            [-83.840866, 45.952724],\n            [-83.846436, 45.953182],\n            [-83.864861, 45.959465],\n            [-83.881058, 45.968185],\n            [-83.884827, 45.977165],\n            [-83.873146, 45.993427],\n            [-83.868233, 45.995075],\n            [-83.845398, 46.025681],\n            [-83.830147, 46.022324],\n            [-83.818199, 46.002426],\n            [-83.794052, 45.9958],\n            [-83.776436, 46.004204],\n            [-83.765274, 46.018364],\n            [-83.765259, 46.024681],\n            [-83.759369, 46.027191],\n            [-83.746872, 46.024811],\n            [-83.735573, 46.026596],\n            [-83.727837, 46.034924],\n            [-83.711777, 46.040279],\n            [-83.692146, 46.039089],\n            [-83.686195, 46.046227],\n            [-83.679657, 46.057529],\n            [-83.677872, 46.064667],\n            [-83.682632, 46.071808],\n            [-83.699883, 46.075375],\n            [-83.719513, 46.081326],\n            [-83.731407, 46.086678],\n            [-83.723297, 46.093811],\n            [-83.719788, 46.101032],\n            [-83.703857, 46.103367],\n            [-83.661163, 46.100258],\n            [-83.634979, 46.103954],\n            [-83.625557, 46.102211],\n            [-83.615341, 46.095978],\n            [-83.59861, 46.090084],\n            [-83.581314, 46.089615],\n            [-83.576088, 46.083511],\n            [-83.572639, 46.074921],\n            [-83.572571, 46.069897],\n            [-83.565353, 46.061897],\n            [-83.554062, 46.058884],\n            [-83.547203, 46.047867],\n            [-83.543365, 46.037197],\n            [-83.540848, 46.021248],\n            [-83.532913, 46.01133],\n            [-83.494843, 45.999542],\n            [-83.48835, 45.999542],\n            [-83.480637, 45.996162],\n            [-83.473946, 45.98856],\n            [-83.473221, 45.984421],\n            [-83.481766, 45.971874],\n            [-83.488808, 45.968739],\n            [-83.51062, 45.929325],\n            [-83.517242, 45.923615],\n            [-83.526344, 45.918636],\n            [-83.561836, 45.912563],\n          ],\n        ],\n        [\n          [\n            [-84.861969, 45.851276],\n            [-84.88121, 45.860901],\n            [-84.87915, 45.868462],\n            [-84.861969, 45.860214],\n            [-84.861969, 45.851276],\n          ],\n        ],\n        [\n          [\n            [-84.617607, 45.844925],\n            [-84.638428, 45.850872],\n            [-84.650917, 45.859798],\n            [-84.651512, 45.86277],\n            [-84.645561, 45.874668],\n            [-84.647346, 45.884186],\n            [-84.644974, 45.885376],\n            [-84.624153, 45.88002],\n            [-84.602142, 45.852062],\n            [-84.607491, 45.8479],\n            [-84.617607, 45.844925],\n          ],\n        ],\n        [\n          [\n            [-85.590889, 45.833141],\n            [-85.595177, 45.835522],\n            [-85.593811, 45.839809],\n            [-85.581467, 45.841042],\n            [-85.584709, 45.834095],\n            [-85.590889, 45.833141],\n          ],\n        ],\n        [\n          [\n            [-84.595001, 45.821129],\n            [-84.609871, 45.82589],\n            [-84.613441, 45.834217],\n            [-84.612846, 45.836002],\n            [-84.596786, 45.833622],\n            [-84.58905, 45.827675],\n            [-84.589645, 45.821724],\n            [-84.595001, 45.821129],\n          ],\n        ],\n        [\n          [\n            [-85.611832, 45.806015],\n            [-85.617538, 45.810776],\n            [-85.617538, 45.814106],\n            [-85.612305, 45.81601],\n            [-85.606598, 45.81506],\n            [-85.603264, 45.813156],\n            [-85.601837, 45.811253],\n            [-85.611832, 45.806015],\n          ],\n        ],\n        [\n          [\n            [-85.683296, 45.769455],\n            [-85.690704, 45.769455],\n            [-85.696259, 45.774391],\n            [-85.691933, 45.777477],\n            [-85.683296, 45.769455],\n          ],\n        ],\n        [\n          [\n            [-85.377129, 45.769012],\n            [-85.396172, 45.774723],\n            [-85.394264, 45.77853],\n            [-85.379036, 45.789951],\n            [-85.379036, 45.802326],\n            [-85.377129, 45.812794],\n            [-85.370468, 45.818504],\n            [-85.360954, 45.817554],\n            [-85.35334, 45.806133],\n            [-85.351433, 45.795662],\n            [-85.359047, 45.776627],\n            [-85.377129, 45.769012],\n          ],\n        ],\n        [\n          [\n            [-85.462578, 45.765865],\n            [-85.495575, 45.772739],\n            [-85.507263, 45.778236],\n            [-85.532013, 45.798172],\n            [-85.529259, 45.818108],\n            [-85.524445, 45.829792],\n            [-85.496948, 45.822231],\n            [-85.45433, 45.800236],\n            [-85.450203, 45.796677],\n            [-85.44783, 45.790134],\n            [-85.450203, 45.776451],\n            [-85.455559, 45.768719],\n            [-85.462578, 45.765865],\n          ],\n        ],\n        [\n          [\n            [-84.420113, 45.718815],\n            [-84.431412, 45.724762],\n            [-84.434387, 45.726547],\n            [-84.442719, 45.726547],\n            [-84.452827, 45.725952],\n            [-84.472458, 45.731304],\n            [-84.481384, 45.729523],\n            [-84.50042, 45.736065],\n            [-84.510529, 45.75034],\n            [-84.512314, 45.7551],\n            [-84.525406, 45.761047],\n            [-84.558716, 45.793766],\n            [-84.580727, 45.801498],\n            [-84.588455, 45.807449],\n            [-84.59024, 45.812801],\n            [-84.58905, 45.816372],\n            [-84.580727, 45.819939],\n            [-84.5718, 45.819347],\n            [-84.550385, 45.811016],\n            [-84.525406, 45.80864],\n            [-84.511124, 45.811611],\n            [-84.504585, 45.811611],\n            [-84.50042, 45.811016],\n            [-84.490303, 45.804474],\n            [-84.439148, 45.789604],\n            [-84.433197, 45.787819],\n            [-84.427841, 45.790195],\n            [-84.423088, 45.792576],\n            [-84.421303, 45.796146],\n            [-84.423088, 45.805069],\n            [-84.427246, 45.811611],\n            [-84.418922, 45.811611],\n            [-84.408211, 45.795551],\n            [-84.402267, 45.787224],\n            [-84.398697, 45.785439],\n            [-84.390961, 45.785439],\n            [-84.375496, 45.777706],\n            [-84.357056, 45.77235],\n            [-84.35408, 45.770565],\n            [-84.35408, 45.767593],\n            [-84.364197, 45.75629],\n            [-84.37133, 45.746773],\n            [-84.379662, 45.739635],\n            [-84.390366, 45.734875],\n            [-84.392151, 45.729523],\n            [-84.399292, 45.722977],\n            [-84.409996, 45.720005],\n            [-84.420113, 45.718815],\n          ],\n        ],\n        [\n          [\n            [-85.672188, 45.696632],\n            [-85.696869, 45.69725],\n            [-85.696259, 45.712063],\n            [-85.69529, 45.724697],\n            [-85.701813, 45.73613],\n            [-85.68885, 45.747238],\n            [-85.651863, 45.743141],\n            [-85.649353, 45.722553],\n            [-85.672188, 45.696632],\n          ],\n        ],\n        [\n          [\n            [-85.84375, 45.69046],\n            [-85.84375, 45.710209],\n            [-85.835114, 45.711445],\n            [-85.83326, 45.696632],\n            [-85.84375, 45.69046],\n          ],\n        ],\n        [\n          [\n            [-86.682877, 45.594818],\n            [-86.691704, 45.595818],\n            [-86.702019, 45.602692],\n            [-86.712326, 45.610939],\n            [-86.69239, 45.617126],\n            [-86.677269, 45.613689],\n            [-86.669022, 45.609566],\n            [-86.665749, 45.606239],\n            [-86.670982, 45.600529],\n            [-86.682877, 45.594818],\n          ],\n        ],\n        [\n          [\n            [-86.636894, 45.542053],\n            [-86.648788, 45.543243],\n            [-86.654144, 45.555737],\n            [-86.661285, 45.574177],\n            [-86.661285, 45.582504],\n            [-86.658905, 45.586075],\n            [-86.654739, 45.587856],\n            [-86.644035, 45.58548],\n            [-86.62619, 45.573582],\n            [-86.620239, 45.562279],\n            [-86.622025, 45.556332],\n            [-86.630348, 45.546814],\n            [-86.636894, 45.542053],\n          ],\n        ],\n        [\n          [\n            [-86.66069, 45.520042],\n            [-86.666641, 45.520042],\n            [-86.669609, 45.524208],\n            [-86.670204, 45.52956],\n            [-86.667236, 45.53194],\n            [-86.6595, 45.532536],\n            [-86.656525, 45.525993],\n            [-86.66069, 45.520042],\n          ],\n        ],\n        [\n          [\n            [-86.71508, 45.497517],\n            [-86.728142, 45.522949],\n            [-86.723328, 45.520889],\n            [-86.715767, 45.509201],\n            [-86.71508, 45.497517],\n          ],\n        ],\n        [\n          [\n            [-86.758385, 45.476204],\n            [-86.782448, 45.487206],\n            [-86.782448, 45.506451],\n            [-86.774193, 45.511951],\n            [-86.756325, 45.50164],\n            [-86.758385, 45.476204],\n          ],\n        ],\n        [\n          [\n            [-85.770958, 45.461353],\n            [-85.792961, 45.481976],\n            [-85.782646, 45.491596],\n            [-85.770958, 45.487473],\n            [-85.766838, 45.475788],\n            [-85.770958, 45.461353],\n          ],\n        ],\n        [\n          [\n            [-85.833519, 45.378174],\n            [-85.87339, 45.421482],\n            [-85.883011, 45.443478],\n            [-85.858261, 45.440041],\n            [-85.834892, 45.428356],\n            [-85.825958, 45.404297],\n            [-85.833519, 45.378174],\n          ],\n        ],\n        [\n          [\n            [-83.322464, 45.186062],\n            [-83.338272, 45.189499],\n            [-83.334145, 45.199123],\n            [-83.31971, 45.194313],\n            [-83.322464, 45.186062],\n          ],\n        ],\n        [\n          [\n            [-83.190582, 45.033356],\n            [-83.229767, 45.039539],\n            [-83.233894, 45.054665],\n            [-83.231827, 45.058102],\n            [-83.213959, 45.056728],\n            [-83.201584, 45.046413],\n            [-83.190582, 45.033356],\n          ],\n        ],\n        [\n          [\n            [-85.582054, 44.859333],\n            [-85.583755, 44.861454],\n            [-85.581207, 44.869938],\n            [-85.569328, 44.873333],\n            [-85.569756, 44.863152],\n            [-85.582054, 44.859333],\n          ],\n        ],\n        [\n          [\n            [-83.829224, 43.662632],\n            [-83.831284, 43.669506],\n            [-83.821663, 43.677067],\n            [-83.816162, 43.672943],\n            [-83.816162, 43.666756],\n            [-83.829224, 43.662632],\n          ],\n        ],\n      ],\n    },\n  };\n\n  var multiTriangles = tesselate(multipolygon);\n\n  t.equal(\n    multiTriangles.type,\n    \"FeatureCollection\",\n    \"MultiPolygon returns a FeatureCollection\"\n  );\n  t.equal(\n    multiTriangles.features[0].geometry.type,\n    \"Polygon\",\n    \"contains at least 1 triangle\"\n  );\n  t.equal(\n    multiTriangles.features[0].geometry.coordinates[0].length,\n    4,\n    \"triangle is valid\"\n  );\n\n  t.throws(function () {\n    tesselate(point([0, 0]));\n  }, /input must be a Polygon or MultiPolygon/);\n\n  t.throws(function () {\n    tesselate(featurecollection([]));\n  }, /input must be a Polygon or MultiPolygon/);\n\n  var simplePolygonWithElevation = {\n    type: \"Feature\",\n    id: \"CoordsWithElevation\",\n    properties: { name: \"CoordsWithElevation\" },\n    geometry: {\n      type: \"Polygon\",\n      coordinates: [\n        [\n          [-123.233256, 42.006186, 130],\n          [-114.634459, 35.00118, 130],\n          [-118.183517, 33.763391, 130],\n          [-124.213628, 42.000709, 130],\n          [-123.233256, 42.006186, 130],\n        ],\n      ],\n    },\n  };\n\n  var simpleTrianglesWithElevation = tesselate(simplePolygonWithElevation);\n  t.equal(\n    simpleTrianglesWithElevation.type,\n    \"FeatureCollection\",\n    \"Polygon returns a FeatureCollection\"\n  );\n  t.equal(\n    simpleTrianglesWithElevation.features[0].geometry.type,\n    \"Polygon\",\n    \"contains at least 1 triangle\"\n  );\n  t.equal(\n    simpleTrianglesWithElevation.features[0].geometry.coordinates[0].length,\n    4,\n    \"triangle is valid\"\n  );\n  t.equal(\n    simpleTrianglesWithElevation.features[0].geometry.coordinates[0][0][2],\n    130,\n    \"triangle coordinates contain elevation\"\n  );\n\n  var simpleSquareWithVariableElevation = {\n    type: \"Feature\",\n    id: \"SquareWithVariableElevation\",\n    properties: { name: \"SquareWithVariableElevation\" },\n    geometry: {\n      type: \"Polygon\",\n      coordinates: [\n        [\n          [1, 1],\n          [1, 2, 50],\n          [2, 2, 75],\n          [2, 1],\n          [1, 1],\n        ],\n      ],\n    },\n  };\n\n  var simpleVariableElevationTriangles = tesselate(\n    simpleSquareWithVariableElevation\n  );\n\n  t.equal(\n    simpleVariableElevationTriangles.type,\n    \"FeatureCollection\",\n    \"Polygon returns a FeatureCollection\"\n  );\n\n  t.deepEqual(\n    simpleVariableElevationTriangles.features[0].geometry.coordinates,\n    [\n      [\n        [1, 2, 50],\n        [1, 1],\n        [2, 1],\n        [1, 2, 50],\n      ],\n    ],\n    \"first triangle coordinates contain original elevations\"\n  );\n  t.deepEqual(\n    simpleVariableElevationTriangles.features[1].geometry.coordinates,\n    [\n      [\n        [2, 1],\n        [2, 2, 75],\n        [1, 2, 50],\n        [2, 1],\n      ],\n    ],\n    \"second triangle coordinates contain original elevations\"\n  );\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-tesselate/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-tin/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-tin/README.md",
    "content": "# @turf/tin\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## tin\n\nTakes a set of [points][1] and creates a\n[Triangulated Irregular Network][2],\nor a TIN for short, returned as a collection of Polygons. These are often used\nfor developing elevation contour maps or stepped heat visualizations.\n\nIf an optional z-value property is provided then it is added as properties called `a`, `b`,\nand `c` representing its value at each of the points that represent the corners of the\ntriangle.\n\n### Parameters\n\n*   `points` **[FeatureCollection][3]<[Point][1]>** input points\n*   `z` **[String][4]?** name of the property from which to pull z values\n    This is optional: if not given, then there will be no extra data added to the derived triangles.\n\n### Examples\n\n```javascript\n// generate some random point data\nvar points = turf.randomPoint(30, {bbox: [50, 30, 70, 50]});\n\n// add a random property to each point between 0 and 9\nfor (var i = 0; i < points.features.length; i++) {\n  points.features[i].properties.z = ~~(Math.random() * 9);\n}\nvar tin = turf.tin(points, 'z');\n\n//addToMap\nvar addToMap = [tin, points]\nfor (var i = 0; i < tin.features.length; i++) {\n  var properties  = tin.features[i].properties;\n  properties.fill = '#' + properties.a + properties.b + properties.c;\n}\n```\n\nReturns **[FeatureCollection][3]<[Polygon][5]>** TIN output\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[2]: http://en.wikipedia.org/wiki/Triangulated_irregular_network\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/tin\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-tin/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport Benchmark from \"benchmark\";\nimport { tin } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst points = JSON.parse(\n  fs.readFileSync(path.join(__dirname, \"test\", \"Points.json\"))\n);\n\nconst suite = new Benchmark.Suite(\"turf-tin\");\nsuite\n  .add(\"turf-tin\", () => tin(points, \"elevation\"))\n  .on(\"cycle\", (event) => console.log(String(event.target)))\n  .run();\n"
  },
  {
    "path": "packages/turf-tin/index.ts",
    "content": "// http://en.wikipedia.org/wiki/Delaunay_triangulation\n// https://github.com/ironwallaby/delaunay\nimport { FeatureCollection, Point, Polygon } from \"geojson\";\nimport { featureCollection, polygon } from \"@turf/helpers\";\n\ninterface Pt {\n  x: number;\n  y: number;\n  z?: number;\n  __sentinel?: boolean;\n}\ninterface Vertice {\n  x: number;\n  y: number;\n}\n\n/**\n * Takes a set of {@link Point|points} and creates a\n * [Triangulated Irregular Network](http://en.wikipedia.org/wiki/Triangulated_irregular_network),\n * or a TIN for short, returned as a collection of Polygons. These are often used\n * for developing elevation contour maps or stepped heat visualizations.\n *\n * If an optional z-value property is provided then it is added as properties called `a`, `b`,\n * and `c` representing its value at each of the points that represent the corners of the\n * triangle.\n *\n * @function\n * @param {FeatureCollection<Point>} points input points\n * @param {String} [z] name of the property from which to pull z values\n * This is optional: if not given, then there will be no extra data added to the derived triangles.\n * @returns {FeatureCollection<Polygon>} TIN output\n * @example\n * // generate some random point data\n * var points = turf.randomPoint(30, {bbox: [50, 30, 70, 50]});\n *\n * // add a random property to each point between 0 and 9\n * for (var i = 0; i < points.features.length; i++) {\n *   points.features[i].properties.z = ~~(Math.random() * 9);\n * }\n * var tin = turf.tin(points, 'z');\n *\n * //addToMap\n * var addToMap = [tin, points]\n * for (var i = 0; i < tin.features.length; i++) {\n *   var properties  = tin.features[i].properties;\n *   properties.fill = '#' + properties.a + properties.b + properties.c;\n * }\n */\nfunction tin(\n  points: FeatureCollection<Point, any>,\n  z?: string\n): FeatureCollection<Polygon> {\n  // break down points\n  let isPointZ = false;\n  return featureCollection(\n    triangulate(\n      points.features.map((p) => {\n        const point: Pt = {\n          x: p.geometry.coordinates[0],\n          y: p.geometry.coordinates[1],\n        };\n        if (z) {\n          point.z = p.properties[z];\n        } else if (p.geometry.coordinates.length === 3) {\n          isPointZ = true;\n          point.z = p.geometry.coordinates[2];\n        }\n        return point;\n      })\n    ).map((triangle: any) => {\n      const a = [triangle.a.x, triangle.a.y];\n      const b = [triangle.b.x, triangle.b.y];\n      const c = [triangle.c.x, triangle.c.y];\n      let properties = {};\n\n      // Add z coordinates to triangle points if user passed\n      // them in that way otherwise add it as a property.\n      if (isPointZ) {\n        a.push(triangle.a.z);\n        b.push(triangle.b.z);\n        c.push(triangle.c.z);\n      } else {\n        properties = {\n          a: triangle.a.z,\n          b: triangle.b.z,\n          c: triangle.c.z,\n        };\n      }\n\n      return polygon([[a, b, c, a]], properties);\n    })\n  );\n}\n\nclass Triangle {\n  public a: Pt;\n  public b: Pt;\n  public c: Pt;\n  public x: number;\n  public y: number;\n  public r: number;\n\n  constructor(a: Pt, b: Pt, c: Pt) {\n    this.a = a;\n    this.b = b;\n    this.c = c;\n\n    const A = b.x - a.x;\n    const B = b.y - a.y;\n    const C = c.x - a.x;\n    const D = c.y - a.y;\n    const E = A * (a.x + b.x) + B * (a.y + b.y);\n    const F = C * (a.x + c.x) + D * (a.y + c.y);\n    const G = 2 * (A * (c.y - b.y) - B * (c.x - b.x));\n    let dx;\n    let dy;\n\n    // If the points of the triangle are collinear, then just find the\n    // extremes and use the midpoint as the center of the circumcircle.\n    this.x = (D * E - B * F) / G;\n    this.y = (A * F - C * E) / G;\n    dx = this.x - a.x;\n    dy = this.y - a.y;\n    this.r = dx * dx + dy * dy;\n  }\n}\n\nfunction byX(a: Pt, b: Pt) {\n  return b.x - a.x;\n}\n\nfunction dedup(edges: number[]) {\n  let j = edges.length;\n  let a;\n  let b;\n  let i;\n  let m;\n  let n;\n\n  outer: while (j) {\n    b = edges[--j];\n    a = edges[--j];\n    i = j;\n    while (i) {\n      n = edges[--i];\n      m = edges[--i];\n      if ((a === m && b === n) || (a === n && b === m)) {\n        edges.splice(j, 2);\n        edges.splice(i, 2);\n        j -= 2;\n        continue outer;\n      }\n    }\n  }\n}\n\nfunction triangulate(vertices: Vertice[]) {\n  // Bail if there aren't enough vertices to form any triangles.\n  if (vertices.length < 3) {\n    return [];\n  }\n\n  // Ensure the vertex array is in order of descending X coordinate\n  // (which is needed to ensure a subquadratic runtime), and then find\n  // the bounding box around the points.\n  vertices.sort(byX);\n\n  let i = vertices.length - 1;\n  const xmin = vertices[i].x;\n  const xmax = vertices[0].x;\n  let ymin = vertices[i].y;\n  let ymax = ymin;\n  const epsilon = 1e-12;\n\n  let a;\n  let b;\n  let c;\n  let A;\n  let B;\n  let G;\n\n  while (i--) {\n    if (vertices[i].y < ymin) {\n      ymin = vertices[i].y;\n    }\n    if (vertices[i].y > ymax) {\n      ymax = vertices[i].y;\n    }\n  }\n\n  // Find a supertriangle, which is a triangle that surrounds all the\n  // vertices. This is used like something of a sentinel value to remove\n  // cases in the main algorithm, and is removed before we return any\n  // results.\n\n  // Once found, put it in the \"open\" list. (The \"open\" list is for\n  // triangles who may still need to be considered; the \"closed\" list is\n  // for triangles which do not.)\n  let dx = xmax - xmin;\n  let dy = ymax - ymin;\n  const dmax = dx > dy ? dx : dy;\n  const xmid = (xmax + xmin) * 0.5;\n  const ymid = (ymax + ymin) * 0.5;\n  const open = [\n    new Triangle(\n      {\n        __sentinel: true,\n        x: xmid - 20 * dmax,\n        y: ymid - dmax,\n      },\n      {\n        __sentinel: true,\n        x: xmid,\n        y: ymid + 20 * dmax,\n      },\n      {\n        __sentinel: true,\n        x: xmid + 20 * dmax,\n        y: ymid - dmax,\n      }\n    ),\n  ];\n  const closed = [];\n  const edges: any = [];\n  let j;\n\n  // Incrementally add each vertex to the mesh.\n  i = vertices.length;\n  while (i--) {\n    // For each open triangle, check to see if the current point is\n    // inside it's circumcircle. If it is, remove the triangle and add\n    // it's edges to an edge list.\n    edges.length = 0;\n    j = open.length;\n    while (j--) {\n      // If this point is to the right of this triangle's circumcircle,\n      // then this triangle should never get checked again. Remove it\n      // from the open list, add it to the closed list, and skip.\n      dx = vertices[i].x - open[j].x;\n      if (dx > 0 && dx * dx > open[j].r) {\n        closed.push(open[j]);\n        open.splice(j, 1);\n        continue;\n      }\n\n      // If not, skip this triangle.\n      dy = vertices[i].y - open[j].y;\n      if (dx * dx + dy * dy > open[j].r) {\n        continue;\n      }\n\n      // Remove the triangle and add it's edges to the edge list.\n      edges.push(\n        open[j].a,\n        open[j].b,\n        open[j].b,\n        open[j].c,\n        open[j].c,\n        open[j].a\n      );\n      open.splice(j, 1);\n    }\n\n    // Remove any doubled edges.\n    dedup(edges);\n\n    // Add a new triangle for each edge.\n    j = edges.length;\n    while (j) {\n      b = edges[--j];\n      a = edges[--j];\n      c = vertices[i];\n      // Avoid adding colinear triangles (which have error-prone\n      // circumcircles)\n      A = b.x - a.x;\n      B = b.y - a.y;\n      G = 2 * (A * (c.y - b.y) - B * (c.x - b.x));\n      if (Math.abs(G) > epsilon) {\n        open.push(new Triangle(a, b, c));\n      }\n    }\n  }\n\n  // Copy any remaining open triangles to the closed list, and then\n  // remove any triangles that share a vertex with the supertriangle.\n  Array.prototype.push.apply(closed, open);\n\n  i = closed.length;\n  while (i--) {\n    if (\n      closed[i].a.__sentinel ||\n      closed[i].b.__sentinel ||\n      closed[i].c.__sentinel\n    ) {\n      closed.splice(i, 1);\n    }\n  }\n\n  return closed;\n}\n\nexport { Pt, Vertice, tin };\nexport default tin;\n"
  },
  {
    "path": "packages/turf-tin/package.json",
    "content": "{\n  \"name\": \"@turf/tin\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a set of points and creates a Triangulated Irregular Network.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"tin\",\n    \"triangulate\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-tin/test/Points.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.833, 39.284, 25] },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 25\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.6, 39.984, 23] },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 23\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.221, 39.125, 29] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 29\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.358, 39.987, 12] },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 12\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.9221, 39.27, 11] },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 11\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.534, 39.123, 49] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 49\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.21, 39.12, 50] },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 50\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.22, 39.33, 90] },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 90\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.44, 39.55, 22] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 22\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.77, 39.66, 99] },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 99\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.44, 39.11, 55] },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 55\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.05, 39.92, 41] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 41\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.88, 39.98, 52] },\n      \"properties\": {\n        \"name\": \"Location A\",\n        \"category\": \"Store\",\n        \"elevation\": 52\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.55, 39.55, 143] },\n      \"properties\": {\n        \"name\": \"Location B\",\n        \"category\": \"House\",\n        \"elevation\": 143\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.33, 39.44, 76] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 76\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.56, 39.24, 18] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 18\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"geometry\": { \"type\": \"Point\", \"coordinates\": [-75.56, 39.36, 52] },\n      \"properties\": {\n        \"name\": \"Location C\",\n        \"category\": \"Office\",\n        \"elevation\": 52\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-tin/test/Tin-z.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.9221, 39.27, 11],\n            [-75.88, 39.98, 52],\n            [-75.77, 39.66, 99],\n            [-75.9221, 39.27, 11]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.833, 39.284, 25],\n            [-75.9221, 39.27, 11],\n            [-75.77, 39.66, 99],\n            [-75.833, 39.284, 25]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.833, 39.284, 25],\n            [-75.56, 39.36, 52],\n            [-75.56, 39.24, 18],\n            [-75.833, 39.284, 25]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.77, 39.66, 99],\n            [-75.88, 39.98, 52],\n            [-75.6, 39.984, 23],\n            [-75.77, 39.66, 99]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.9221, 39.27, 11],\n            [-75.833, 39.284, 25],\n            [-75.534, 39.123, 49],\n            [-75.9221, 39.27, 11]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.833, 39.284, 25],\n            [-75.56, 39.24, 18],\n            [-75.534, 39.123, 49],\n            [-75.833, 39.284, 25]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.56, 39.36, 52],\n            [-75.77, 39.66, 99],\n            [-75.55, 39.55, 143],\n            [-75.56, 39.36, 52]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.833, 39.284, 25],\n            [-75.77, 39.66, 99],\n            [-75.56, 39.36, 52],\n            [-75.833, 39.284, 25]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.56, 39.36, 52],\n            [-75.55, 39.55, 143],\n            [-75.44, 39.55, 22],\n            [-75.56, 39.36, 52]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.534, 39.123, 49],\n            [-75.56, 39.24, 18],\n            [-75.44, 39.11, 55],\n            [-75.534, 39.123, 49]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.77, 39.66, 99],\n            [-75.6, 39.984, 23],\n            [-75.55, 39.55, 143],\n            [-75.77, 39.66, 99]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.56, 39.36, 52],\n            [-75.44, 39.55, 22],\n            [-75.33, 39.44, 76],\n            [-75.56, 39.36, 52]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.56, 39.24, 18],\n            [-75.56, 39.36, 52],\n            [-75.33, 39.44, 76],\n            [-75.56, 39.24, 18]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.44, 39.55, 22],\n            [-75.6, 39.984, 23],\n            [-75.358, 39.987, 12],\n            [-75.44, 39.55, 22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.55, 39.55, 143],\n            [-75.6, 39.984, 23],\n            [-75.44, 39.55, 22],\n            [-75.55, 39.55, 143]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.44, 39.11, 55],\n            [-75.33, 39.44, 76],\n            [-75.22, 39.33, 90],\n            [-75.44, 39.11, 55]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.44, 39.11, 55],\n            [-75.56, 39.24, 18],\n            [-75.33, 39.44, 76],\n            [-75.44, 39.11, 55]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.221, 39.125, 29],\n            [-75.22, 39.33, 90],\n            [-75.21, 39.12, 50],\n            [-75.221, 39.125, 29]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.44, 39.11, 55],\n            [-75.221, 39.125, 29],\n            [-75.21, 39.12, 50],\n            [-75.44, 39.11, 55]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.221, 39.125, 29],\n            [-75.44, 39.11, 55],\n            [-75.22, 39.33, 90],\n            [-75.221, 39.125, 29]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.33, 39.44, 76],\n            [-75.44, 39.55, 22],\n            [-75.05, 39.92, 41],\n            [-75.33, 39.44, 76]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.44, 39.55, 22],\n            [-75.358, 39.987, 12],\n            [-75.05, 39.92, 41],\n            [-75.44, 39.55, 22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.22, 39.33, 90],\n            [-75.33, 39.44, 76],\n            [-75.05, 39.92, 41],\n            [-75.22, 39.33, 90]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.21, 39.12, 50],\n            [-75.22, 39.33, 90],\n            [-75.05, 39.92, 41],\n            [-75.21, 39.12, 50]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-tin/test/Tin.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 11,\n        \"b\": 52,\n        \"c\": 99\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.9221, 39.27],\n            [-75.88, 39.98],\n            [-75.77, 39.66],\n            [-75.9221, 39.27]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 25,\n        \"b\": 11,\n        \"c\": 99\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.833, 39.284],\n            [-75.9221, 39.27],\n            [-75.77, 39.66],\n            [-75.833, 39.284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 25,\n        \"b\": 52,\n        \"c\": 18\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.833, 39.284],\n            [-75.56, 39.36],\n            [-75.56, 39.24],\n            [-75.833, 39.284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 99,\n        \"b\": 52,\n        \"c\": 23\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.77, 39.66],\n            [-75.88, 39.98],\n            [-75.6, 39.984],\n            [-75.77, 39.66]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 11,\n        \"b\": 25,\n        \"c\": 49\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.9221, 39.27],\n            [-75.833, 39.284],\n            [-75.534, 39.123],\n            [-75.9221, 39.27]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 25,\n        \"b\": 18,\n        \"c\": 49\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.833, 39.284],\n            [-75.56, 39.24],\n            [-75.534, 39.123],\n            [-75.833, 39.284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 52,\n        \"b\": 99,\n        \"c\": 143\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.56, 39.36],\n            [-75.77, 39.66],\n            [-75.55, 39.55],\n            [-75.56, 39.36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 25,\n        \"b\": 99,\n        \"c\": 52\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.833, 39.284],\n            [-75.77, 39.66],\n            [-75.56, 39.36],\n            [-75.833, 39.284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 52,\n        \"b\": 143,\n        \"c\": 22\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.56, 39.36],\n            [-75.55, 39.55],\n            [-75.44, 39.55],\n            [-75.56, 39.36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 49,\n        \"b\": 18,\n        \"c\": 55\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.534, 39.123],\n            [-75.56, 39.24],\n            [-75.44, 39.11],\n            [-75.534, 39.123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 99,\n        \"b\": 23,\n        \"c\": 143\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.77, 39.66],\n            [-75.6, 39.984],\n            [-75.55, 39.55],\n            [-75.77, 39.66]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 52,\n        \"b\": 22,\n        \"c\": 76\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.56, 39.36],\n            [-75.44, 39.55],\n            [-75.33, 39.44],\n            [-75.56, 39.36]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 18,\n        \"b\": 52,\n        \"c\": 76\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.56, 39.24],\n            [-75.56, 39.36],\n            [-75.33, 39.44],\n            [-75.56, 39.24]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 22,\n        \"b\": 23,\n        \"c\": 12\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.44, 39.55],\n            [-75.6, 39.984],\n            [-75.358, 39.987],\n            [-75.44, 39.55]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 143,\n        \"b\": 23,\n        \"c\": 22\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.55, 39.55],\n            [-75.6, 39.984],\n            [-75.44, 39.55],\n            [-75.55, 39.55]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 55,\n        \"b\": 76,\n        \"c\": 90\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.44, 39.11],\n            [-75.33, 39.44],\n            [-75.22, 39.33],\n            [-75.44, 39.11]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 55,\n        \"b\": 18,\n        \"c\": 76\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.44, 39.11],\n            [-75.56, 39.24],\n            [-75.33, 39.44],\n            [-75.44, 39.11]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 29,\n        \"b\": 90,\n        \"c\": 50\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.221, 39.125],\n            [-75.22, 39.33],\n            [-75.21, 39.12],\n            [-75.221, 39.125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 55,\n        \"b\": 29,\n        \"c\": 50\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.44, 39.11],\n            [-75.221, 39.125],\n            [-75.21, 39.12],\n            [-75.44, 39.11]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 29,\n        \"b\": 55,\n        \"c\": 90\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.221, 39.125],\n            [-75.44, 39.11],\n            [-75.22, 39.33],\n            [-75.221, 39.125]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 76,\n        \"b\": 22,\n        \"c\": 41\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.33, 39.44],\n            [-75.44, 39.55],\n            [-75.05, 39.92],\n            [-75.33, 39.44]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 22,\n        \"b\": 12,\n        \"c\": 41\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.44, 39.55],\n            [-75.358, 39.987],\n            [-75.05, 39.92],\n            [-75.44, 39.55]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 90,\n        \"b\": 76,\n        \"c\": 41\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.22, 39.33],\n            [-75.33, 39.44],\n            [-75.05, 39.92],\n            [-75.22, 39.33]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"a\": 50,\n        \"b\": 90,\n        \"c\": 41\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.21, 39.12],\n            [-75.22, 39.33],\n            [-75.05, 39.92],\n            [-75.21, 39.12]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-tin/test.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { tin } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst points = loadJsonFileSync(path.join(__dirname, \"test\", \"Points.json\"));\n\ntest(\"tin - z property\", (t) => {\n  const expected = loadJsonFileSync(path.join(__dirname, \"test\", \"Tin.json\"));\n  const tinned = tin(points, \"elevation\");\n  t.equal(tinned.features[0].geometry.type, \"Polygon\");\n  t.equal(tinned.features.length, 24);\n  t.deepEqual(tinned, expected, \"tinned polygons match\");\n  if (process.env.REGEN) {\n    fs.writeFileSync(\n      path.join(__dirname, \"test\", \"Tin.json\"),\n      JSON.stringify(tinned, null, 2)\n    );\n  }\n  t.end();\n});\n\ntest(\"tin - z coordinate\", (t) => {\n  const expected = loadJsonFileSync(path.join(__dirname, \"test\", \"Tin-z.json\"));\n  const tinned = tin(points);\n  t.equal(tinned.features[0].geometry.type, \"Polygon\");\n  t.equal(tinned.features.length, 24);\n  t.deepEqual(tinned, expected, \"tinned polygons match\");\n  if (process.env.REGEN) {\n    fs.writeFileSync(\n      path.join(__dirname, \"test\", \"Tin-z.json\"),\n      JSON.stringify(tinned, null, 2)\n    );\n  }\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-tin/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-tin/types.ts",
    "content": "import { featureCollection, point } from \"@turf/helpers\";\nimport { tin } from \"./index.js\";\n\nconst points = featureCollection([\n  point([0, 0], { elevation: 20 }),\n  point([10, 10], { elevation: 10 }),\n  point([30, 30], { elevation: 50 }),\n]);\ntin(points);\ntin(points, \"elevation\");\n"
  },
  {
    "path": "packages/turf-transform-rotate/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-transform-rotate/README.md",
    "content": "# @turf/transform-rotate\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## transformRotate\n\nRotates any geojson Feature or Geometry of a specified angle, around its `centroid` or a given `pivot` point.\n\n### Parameters\n\n*   `geojson` **[GeoJSON][1]** object to be rotated\n*   `angle` **[number][2]** of rotation in decimal degrees, positive clockwise\n*   `options` **[Object][3]** Optional parameters (optional, default `{}`)\n\n    *   `options.pivot` **[Coord][4]** point around which the rotation will be performed (optional, default `'centroid'`)\n    *   `options.mutate` **[boolean][5]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`)\n\n### Examples\n\n```javascript\nconst poly = turf.polygon([[[0,29],[3.5,29],[2.5,32],[0,29]]]);\nconst options = {pivot: [0, 25]};\nconst rotatedPoly = turf.transformRotate(poly, 10, options);\n\n//addToMap\nconst addToMap = [poly, rotatedPoly];\nrotatedPoly.properties = {stroke: '#F00', 'stroke-width': 4};\n```\n\nReturns **[GeoJSON][1]** the rotated GeoJSON feature\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/transform-rotate\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-transform-rotate/bench.ts",
    "content": "import { Feature } from \"geojson\";\nimport fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark, { Event } from \"benchmark\";\nimport { transformRotate as rotate } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename) as Feature,\n  };\n});\n\n/**\n * Single Process Benchmark\n *\n * line: 3.145ms\n * multiLine: 0.148ms\n * multiPoint: 1.137ms\n * multiPolygon: 5.770ms\n * no-rotation: 0.009ms\n * point: 0.032ms\n * polygon-with-hole: 0.823ms\n * polygon: 0.045ms\n * z-coord: 0.053ms\n */\nfor (const { name, geojson } of fixtures) {\n  const { angle, pivot } = geojson.properties || {};\n  console.time(name);\n  rotate(geojson, angle, { pivot, mutate: true });\n  console.timeEnd(name);\n}\n\n/**\n * Benchmark Results\n *\n * line x 66,571 ops/sec ±2.07% (86 runs sampled)\n * multiLine x 136,950 ops/sec ±2.39% (87 runs sampled)\n * multiPoint x 190,062 ops/sec ±1.96% (85 runs sampled)\n * multiPolygon x 9,588 ops/sec ±0.92% (91 runs sampled)\n * no-rotation x 35,080,702 ops/sec ±1.17% (87 runs sampled)\n * point x 732,603 ops/sec ±1.75% (83 runs sampled)\n * polygon-with-hole x 20,217 ops/sec ±4.15% (83 runs sampled)\n * polygon x 198,680 ops/sec ±3.38% (81 runs sampled)\n * z-coord x 139,558 ops/sec ±1.61% (86 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-transform-rotate\");\nfor (const { name, geojson } of fixtures) {\n  const { angle, pivot } = geojson.properties || {};\n  suite.add(name, () => rotate(geojson, angle, { pivot, mutate: true }));\n}\n\nsuite.on(\"cycle\", (e: Event) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-transform-rotate/index.ts",
    "content": "import { GeoJSON, GeometryCollection } from \"geojson\";\nimport { centroid } from \"@turf/centroid\";\nimport { rhumbBearing } from \"@turf/rhumb-bearing\";\nimport { rhumbDistance } from \"@turf/rhumb-distance\";\nimport { rhumbDestination } from \"@turf/rhumb-destination\";\nimport { clone } from \"@turf/clone\";\nimport { coordEach } from \"@turf/meta\";\nimport { getCoords } from \"@turf/invariant\";\nimport { isObject, Coord } from \"@turf/helpers\";\n\n/**\n * Rotates any geojson Feature or Geometry of a specified angle, around its `centroid` or a given `pivot` point.\n *\n * @function\n * @param {GeoJSON} geojson object to be rotated\n * @param {number} angle of rotation in decimal degrees, positive clockwise\n * @param {Object} [options={}] Optional parameters\n * @param {Coord} [options.pivot='centroid'] point around which the rotation will be performed\n * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true)\n * @returns {GeoJSON} the rotated GeoJSON feature\n * @example\n * const poly = turf.polygon([[[0,29],[3.5,29],[2.5,32],[0,29]]]);\n * const options = {pivot: [0, 25]};\n * const rotatedPoly = turf.transformRotate(poly, 10, options);\n *\n * //addToMap\n * const addToMap = [poly, rotatedPoly];\n * rotatedPoly.properties = {stroke: '#F00', 'stroke-width': 4};\n */\nfunction transformRotate<T extends GeoJSON | GeometryCollection>(\n  geojson: T,\n  angle: number,\n  options?: {\n    pivot?: Coord;\n    mutate?: boolean;\n  }\n): T {\n  // Optional parameters\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  const pivot = options.pivot;\n  const mutate = options.mutate;\n\n  // Input validation\n  if (!geojson) throw new Error(\"geojson is required\");\n  if (angle === undefined || angle === null || isNaN(angle))\n    throw new Error(\"angle is required\");\n\n  // Shortcut no-rotation\n  if (angle === 0) return geojson;\n\n  // Use centroid of GeoJSON if pivot is not provided\n  const pivotCoord = pivot ?? centroid(geojson);\n\n  // Clone geojson to avoid side effects\n  if (mutate === false || mutate === undefined) geojson = clone(geojson);\n\n  // Rotate each coordinate\n  coordEach(geojson, function (pointCoords) {\n    const initialAngle = rhumbBearing(pivotCoord, pointCoords);\n    const finalAngle = initialAngle + angle;\n    const distance = rhumbDistance(pivotCoord, pointCoords);\n    const newCoords = getCoords(\n      rhumbDestination(pivotCoord, distance, finalAngle)\n    );\n    pointCoords[0] = newCoords[0];\n    pointCoords[1] = newCoords[1];\n  });\n  return geojson;\n}\n\nexport { transformRotate };\nexport default transformRotate;\n"
  },
  {
    "path": "packages/turf-transform-rotate/package.json",
    "content": "{\n  \"name\": \"@turf/transform-rotate\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Rotates a geometry around its center or a given point.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Stefano Borghi <@stebogit>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"transform\",\n    \"transformation\",\n    \"rotate\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/centroid\": \"workspace:*\",\n    \"@turf/clone\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@turf/rhumb-bearing\": \"workspace:*\",\n    \"@turf/rhumb-destination\": \"workspace:*\",\n    \"@turf/rhumb-distance\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/in/line.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"angle\": 30\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [11.259269714355469, 44.48450449695473],\n      [11.268196105957031, 44.48866833139464],\n      [11.272315979003906, 44.5063000997406],\n      [11.286735534667969, 44.52343698529045],\n      [11.306304931640625, 44.52515039667307],\n      [11.325874328613281, 44.53298249265435],\n      [11.347160339355469, 44.5302903284497],\n      [11.37359619140625, 44.51878604321948],\n      [11.381149291992186, 44.50948304524639],\n      [11.381492614746094, 44.503606702401854],\n      [11.392478942871094, 44.49185223953622],\n      [11.406898498535156, 44.48548424944496]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/in/multiLine.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"angle\": 90,\n    \"pivot\": [-98.9, 19.15]\n  },\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [-99.2, 19.1],\n        [-99.1, 19.17],\n        [-99, 19.1]\n      ],\n      [\n        [-99.2, 19.16],\n        [-99.1, 19.23],\n        [-99, 19.16]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/in/multiPoint.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"angle\": -110\n  },\n  \"geometry\": {\n    \"type\": \"MultiPoint\",\n    \"coordinates\": [\n      [100.0, 0.0],\n      [101.0, 1.0],\n      [101.15, -0.86],\n      [99.8, 1.8]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/in/multiPolygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"angle\": -35\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [-80.83740234375, -33.75146241858857],\n          [-80.8267593383789, -33.76316538009658],\n          [-80.83036422729492, -33.77643631739436],\n          [-80.79448699951172, -33.81181543283183],\n          [-80.77629089355469, -33.8159515518711],\n          [-80.76066970825195, -33.805254282102595],\n          [-80.75637817382812, -33.76587681391894],\n          [-80.77457427978516, -33.723197462817026],\n          [-80.80615997314453, -33.724054113439884],\n          [-80.83740234375, -33.75146241858857]\n        ]\n      ],\n      [\n        [\n          [-78.87805938720703, -33.60575555447342],\n          [-78.88629913330078, -33.61318971884082],\n          [-78.87943267822264, -33.63034303571294],\n          [-78.89350891113281, -33.64520648119226],\n          [-78.90380859375, -33.64720713369291],\n          [-78.90827178955078, -33.64434904445886],\n          [-78.9151382446289, -33.64606390938584],\n          [-78.92166137695312, -33.65206566761678],\n          [-78.92303466796875, -33.65492350063952],\n          [-78.93024444580078, -33.65749546922024],\n          [-78.94020080566406, -33.66778257479216],\n          [-78.93573760986328, -33.67092561169521],\n          [-78.93882751464844, -33.674354248232504],\n          [-78.94191741943358, -33.67292566628718],\n          [-78.94878387451172, -33.67692563592954],\n          [-78.94123077392578, -33.682353868548184],\n          [-78.93539428710938, -33.68321092658006],\n          [-78.93814086914062, -33.678639851675534],\n          [-78.93848419189453, -33.675782806445994],\n          [-78.93299102783203, -33.671497060610534],\n          [-78.92406463623047, -33.671211336627486],\n          [-78.92131805419922, -33.6652109137176],\n          [-78.92406463623047, -33.66178191269289],\n          [-78.914794921875, -33.65578083204094],\n          [-78.90758514404297, -33.662924928220384],\n          [-78.90449523925781, -33.660353121928814],\n          [-78.90552520751953, -33.657209698729595],\n          [-78.89934539794922, -33.652637241813174],\n          [-78.89213562011719, -33.66006736092875],\n          [-78.88458251953125, -33.65606660727672],\n          [-78.87428283691406, -33.644920669896656],\n          [-78.8656997680664, -33.64520648119226],\n          [-78.86089324951172, -33.66549665763364],\n          [-78.82793426513672, -33.66092464108171],\n          [-78.78398895263672, -33.6794969467326],\n          [-78.76922607421875, -33.670639885813706],\n          [-78.7771224975586, -33.662067667998414],\n          [-78.77918243408203, -33.655495055856136],\n          [-78.79051208496094, -33.641490860339054],\n          [-78.81351470947266, -33.64063338660099],\n          [-78.81729125976561, -33.64434904445886],\n          [-78.83068084716797, -33.640919212129155],\n          [-78.83033752441406, -33.63148646875166],\n          [-78.84819030761717, -33.618621971969276],\n          [-78.848876953125, -33.61347563543629],\n          [-78.86295318603516, -33.6071852512562],\n          [-78.87805938720703, -33.60575555447342]\n        ]\n      ],\n      [\n        [\n          [-78.95161628723145, -33.69528025294664],\n          [-78.95530700683594, -33.70006466462807],\n          [-78.9521312713623, -33.70163560737423],\n          [-78.9506721496582, -33.700278885784996],\n          [-78.94861221313477, -33.701207171292374],\n          [-78.94972801208496, -33.70306371221516],\n          [-78.95075798034668, -33.70284949800254],\n          [-78.95178794860838, -33.7045631967461],\n          [-78.9480972290039, -33.70784769044128],\n          [-78.94947052001952, -33.70934709145684],\n          [-78.94303321838379, -33.71377374172037],\n          [-78.93917083740234, -33.71363095011231],\n          [-78.93771171569824, -33.71455909132016],\n          [-78.93874168395996, -33.7163439500602],\n          [-78.93659591674805, -33.714987460801574],\n          [-78.93685340881348, -33.7134881582668],\n          [-78.93479347229004, -33.714916066036416],\n          [-78.93410682678223, -33.71355955421924],\n          [-78.93075942993164, -33.71355955421924],\n          [-78.92475128173828, -33.715201644740844],\n          [-78.92380714416502, -33.714773276327996],\n          [-78.92483711242676, -33.71377374172037],\n          [-78.92706871032715, -33.712988384937574],\n          [-78.92998695373535, -33.712845592023534],\n          [-78.92998695373535, -33.71170324016297],\n          [-78.93118858337402, -33.70970408784028],\n          [-78.93393516540527, -33.70998968387856],\n          [-78.93625259399414, -33.70791909108323],\n          [-78.9378833770752, -33.708276093402596],\n          [-78.93925666809082, -33.7064196651371],\n          [-78.9411449432373, -33.706205459293635],\n          [-78.94020080566406, -33.70506301910626],\n          [-78.94140243530273, -33.704206178993886],\n          [-78.94037246704102, -33.70263528325574],\n          [-78.94208908081055, -33.69792242367998],\n          [-78.94320487976074, -33.69742255977288],\n          [-78.94569396972656, -33.699350590247136],\n          [-78.94929885864258, -33.69799383257217],\n          [-78.94981384277342, -33.69649423337286],\n          [-78.9492130279541, -33.695922950602935],\n          [-78.95015716552734, -33.69513743059241],\n          [-78.95092964172363, -33.69578012931697],\n          [-78.95161628723145, -33.69528025294664]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/in/no-rotation.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"angle\": 0\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [128.84, -25.76],\n        [128.18, -25.6],\n        [127.96, -25.52],\n        [127.88, -25.52],\n        [127.7, -25.6],\n        [127.26, -25.79],\n        [126.6, -26.11],\n        [126.16, -26.78],\n        [126.12, -27.68],\n        [126.21, -28.42],\n        [126.69, -29.49],\n        [127.74, -29.8],\n        [128.8, -29.72],\n        [129.41, -29.03],\n        [129.72, -27.95],\n        [129.68, -27.21],\n        [129.33, -26.23],\n        [128.84, -25.76]\n      ],\n      [\n        [128.45, -27.44],\n        [128.32, -26.94],\n        [127.7, -26.82],\n        [127.35, -27.05],\n        [127.17, -27.8],\n        [127.57, -28.22],\n        [128.1, -28.42],\n        [128.49, -27.8],\n        [128.45, -27.44]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/in/point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"angle\": 80,\n    \"pivot\": [-75.6, 45.3]\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-75.69926351308823, 45.43145021122502]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/in/polygon-fiji.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"angle\": 90\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [-179.6319580078125, -16.762467717941593],\n          [-179.659423828125, -16.64671805097192],\n          [-179.725341796875, -16.578287608637478],\n          [-179.99450683593747, -16.641455036937753],\n          [-180.1702880859375, -16.935960102864705],\n          [-180.1373291015625, -17.056784609942543],\n          [-179.93408203125, -17.00951473208515],\n          [-179.6319580078125, -16.762467717941593]\n        ]\n      ],\n      [\n        [\n          [-180.06591796875, -16.509832826905836],\n          [-179.79125976562497, -16.093320185359257],\n          [-180.0933837890625, -16.0352548623504],\n          [-180.7086181640625, -16.0774858690887],\n          [-181.63146972656247, -16.525632239869275],\n          [-181.6644287109375, -16.836089974560213],\n          [-181.4996337890625, -17.06728740376787],\n          [-181.219482421875, -17.06728740376787],\n          [-180.9503173828125, -16.956978651248072],\n          [-180.59326171875, -16.914939206301646],\n          [-180.1922607421875, -16.867633616803836],\n          [-180.06591796875, -16.509832826905836]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/in/polygon-resolute-bay.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"angle\": 45\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-95.174560546875, 75.60953172351893],\n        [-96.03149414062499, 75.4282153667069],\n        [-96.492919921875, 75.16048677152294],\n        [-96.6357421875, 75.03617629075062],\n        [-95.723876953125, 74.80466599405533],\n        [-94.910888671875, 74.66582807452669],\n        [-94.317626953125, 74.62218784846145],\n        [-93.49365234375, 74.66292249033842],\n        [-93.438720703125, 74.86788912917916],\n        [-93.515625, 75.03901279805076],\n        [-93.55957031249999, 75.3060980061604],\n        [-94.163818359375, 75.52189820596192],\n        [-94.449462890625, 75.60953172351893],\n        [-94.82299804687499, 75.63681056594325],\n        [-95.174560546875, 75.60953172351893]\n      ],\n      [\n        [-95.108642578125, 75.40054889588245],\n        [-95.6634521484375, 75.22926698530169],\n        [-95.614013671875, 75.01062406678055],\n        [-94.647216796875, 74.84061980605131],\n        [-94.0264892578125, 74.83774656082585],\n        [-94.0155029296875, 75.17876503868581],\n        [-94.5867919921875, 75.3700564253908],\n        [-95.108642578125, 75.40054889588245]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/in/polygon-with-hole.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"angle\": 120,\n    \"name\": \"Bled Lake\",\n    \"area\": \"1.45\",\n    \"area-unit\": \"km2\",\n    \"volume\": \"0.0257\",\n    \"volume-unit\": \"km3\",\n    \"picture\": \"https://en.wikipedia.org/wiki/Lake_Bled#/media/File:Lake_Bled_from_the_Mountain.jpg\"\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [14.086918830871582, 46.368163916782294],\n        [14.085588455200194, 46.3670386292829],\n        [14.086060523986816, 46.36644636339309],\n        [14.08374309539795, 46.36366262769442],\n        [14.081940650939941, 46.362714940623896],\n        [14.082798957824707, 46.36155992478001],\n        [14.084773063659668, 46.36188570095187],\n        [14.08473014831543, 46.36016795016414],\n        [14.085588455200194, 46.35895364547403],\n        [14.089837074279785, 46.3583020562222],\n        [14.090909957885742, 46.35856861640076],\n        [14.091768264770508, 46.35936828913414],\n        [14.093270301818846, 46.35996063176163],\n        [14.09816265106201, 46.35978292964766],\n        [14.099278450012207, 46.36022718384896],\n        [14.098892211914062, 46.36215224364764],\n        [14.106316566467285, 46.36499528482401],\n        [14.108591079711914, 46.36840081645984],\n        [14.106273651123047, 46.36958529943602],\n        [14.103312492370605, 46.36937801676938],\n        [14.09996509552002, 46.36854887823657],\n        [14.097347259521484, 46.368163916782294],\n        [14.095587730407715, 46.36801585396206],\n        [14.094429016113281, 46.36733475981976],\n        [14.092626571655273, 46.36724592082726],\n        [14.086918830871582, 46.368163916782294]\n      ],\n      [\n        [14.089826345443726, 46.36308513284238],\n        [14.08948302268982, 46.362611286353214],\n        [14.089547395706177, 46.362026376425554],\n        [14.089912176132202, 46.36157473282996],\n        [14.090116024017334, 46.36154511672605],\n        [14.09022331237793, 46.36160434891784],\n        [14.090287685394287, 46.36172281310876],\n        [14.090502262115479, 46.36203378038783],\n        [14.090588092803955, 46.36238916939662],\n        [14.090534448623657, 46.36260388246917],\n        [14.089933633804321, 46.36306292138001],\n        [14.089826345443726, 46.36308513284238]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/in/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"angle\": 200,\n    \"pivot\": [2.48291015625, 27.819644755099446]\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [0, 29],\n        [3.5, 29],\n        [2.5, 32],\n        [0, 29]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/in/z-coord.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"angle\": 50\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [121.46484375, -23.88583769986199, 10],\n        [125.5078125, -27.488781168937983, 10],\n        [129.638671875, -25.562265014427492, 10],\n        [129.2431640625, -22.06527806776582, 10],\n        [124.93652343749999, -20.385825381874263, 10],\n        [121.46484375, -23.88583769986199, 10]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/out/line.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": 30,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [11.252453, 44.514161],\n          [11.263107, 44.514583],\n          [11.27904, 44.52838],\n          [11.30355, 44.538077],\n          [11.321702, 44.532583],\n          [11.344144, 44.532389],\n          [11.360688, 44.522469],\n          [11.37551, 44.50308],\n          [11.375528, 44.492329],\n          [11.371706, 44.487117],\n          [11.37298, 44.473017],\n          [11.381001, 44.462359]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": 30\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [11.259269714355469, 44.48450449695473],\n          [11.268196105957031, 44.48866833139464],\n          [11.272315979003906, 44.5063000997406],\n          [11.286735534667969, 44.52343698529045],\n          [11.306304931640625, 44.52515039667307],\n          [11.325874328613281, 44.53298249265435],\n          [11.347160339355469, 44.5302903284497],\n          [11.37359619140625, 44.51878604321948],\n          [11.381149291992186, 44.50948304524639],\n          [11.381492614746094, 44.503606702401854],\n          [11.392478942871094, 44.49185223953622],\n          [11.406898498535156, 44.48548424944496]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.333456039428711, 44.50837878425054]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/out/multiLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": 90,\n        \"pivot\": [-98.9, 19.15],\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-98.952975, 19.433442],\n            [-98.878816, 19.338921],\n            [-98.952944, 19.244481]\n          ],\n          [\n            [-98.889405, 19.43339],\n            [-98.815265, 19.338887],\n            [-98.889411, 19.244463]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": 90,\n        \"pivot\": [-98.9, 19.15]\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-99.2, 19.1],\n            [-99.1, 19.17],\n            [-99, 19.1]\n          ],\n          [\n            [-99.2, 19.16],\n            [-99.1, 19.23],\n            [-99, 19.16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-98.9, 19.15]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/out/multiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": -110,\n        \"marker-color\": \"#F00\",\n        \"marker-symbol\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [101.109995, 0.192785],\n          [99.828247, 0.79041],\n          [101.524987, 1.567546],\n          [99.486875, -0.610653]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": -110\n      },\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [100, 0],\n          [101, 1],\n          [101.15, -0.86],\n          [99.8, 1.8]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100.4875, 0.485]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/out/multiPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": -35,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-80.483378, -34.57529],\n              [-80.466447, -34.579743],\n              [-80.460209, -34.592269],\n              [-80.405962, -34.603968],\n              [-80.388046, -34.598658],\n              [-80.382565, -34.582496],\n              [-80.406368, -34.548376],\n              [-80.451046, -34.522296],\n              [-80.476572, -34.538065],\n              [-80.483378, -34.57529]\n            ]\n          ],\n          [\n            [\n              [-78.972099, -33.521085],\n              [-78.973726, -33.531113],\n              [-78.956299, -33.541895],\n              [-78.957586, -33.560799],\n              [-78.964638, -33.567356],\n              [-78.970259, -33.567144],\n              [-78.974698, -33.571827],\n              [-78.975904, -33.57986],\n              [-78.97506, -33.582858],\n              [-78.97919, -33.588408],\n              [-78.980255, -33.601591],\n              [-78.974436, -33.602037],\n              [-78.974604, -33.606321],\n              [-78.978117, -33.606625],\n              [-78.980982, -33.613181],\n              [-78.97106, -33.614025],\n              [-78.965693, -33.611941],\n              [-78.97109, -33.609506],\n              [-78.973339, -33.607328],\n              [-78.971795, -33.601194],\n              [-78.964686, -33.596699],\n              [-78.96657, -33.59047],\n              [-78.97118, -33.588971],\n              [-78.967726, -33.579627],\n              [-78.956905, -33.582042],\n              [-78.956147, -33.578459],\n              [-78.959155, -33.576374],\n              [-78.957246, -33.569676],\n              [-78.946229, -33.572325],\n              [-78.942803, -33.56544],\n              [-78.942049, -33.551387],\n              [-78.934829, -33.547524],\n              [-78.916926, -33.561862],\n              [-78.89311, -33.542382],\n              [-78.84438, -33.536635],\n              [-78.838404, -33.522326],\n              [-78.850762, -33.519065],\n              [-78.85697, -33.514659],\n              [-78.875875, -33.508584],\n              [-78.895281, -33.518862],\n              [-78.895813, -33.523712],\n              [-78.909128, -33.527291],\n              [-78.915339, -33.519394],\n              [-78.9388, -33.517371],\n              [-78.942904, -33.513479],\n              [-78.958752, -33.515044],\n              [-78.972099, -33.521085]\n            ]\n          ],\n          [\n            [\n              [-78.970655, -33.629575],\n              [-78.97038, -33.635257],\n              [-78.966698, -33.635029],\n              [-78.966438, -33.633221],\n              [-78.964113, -33.632998],\n              [-78.963747, -33.635052],\n              [-78.964737, -33.635368],\n              [-78.9644, -33.637264],\n              [-78.959116, -33.638195],\n              [-78.959206, -33.640079],\n              [-78.950887, -33.640635],\n              [-78.947825, -33.638675],\n              [-78.945991, -33.638739],\n              [-78.945604, -33.640694],\n              [-78.944783, -33.638558],\n              [-78.946026, -33.637452],\n              [-78.943357, -33.637639],\n              [-78.943729, -33.6362],\n              [-78.94099, -33.634603],\n              [-78.934942, -33.633081],\n              [-78.934464, -33.63228],\n              [-78.935996, -33.631952],\n              [-78.938363, -33.632373],\n              [-78.94085, -33.633649],\n              [-78.941637, -33.632713],\n              [-78.943998, -33.631648],\n              [-78.946049, -33.633192],\n              [-78.949372, -33.632601],\n              [-78.950461, -33.633672],\n              [-78.952864, -33.632806],\n              [-78.954557, -33.633531],\n              [-78.954571, -33.632144],\n              [-78.956145, -33.632016],\n              [-78.956385, -33.630237],\n              [-78.961037, -33.627193],\n              [-78.962295, -33.627316],\n              [-78.963003, -33.630084],\n              [-78.966889, -33.630693],\n              [-78.968344, -33.62971],\n              [-78.968245, -33.628955],\n              [-78.969559, -33.628761],\n              [-78.969749, -33.629657],\n              [-78.970655, -33.629575]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": -35\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-80.83740234375, -33.75146241858857],\n              [-80.8267593383789, -33.76316538009658],\n              [-80.83036422729492, -33.77643631739436],\n              [-80.79448699951172, -33.81181543283183],\n              [-80.77629089355469, -33.8159515518711],\n              [-80.76066970825195, -33.805254282102595],\n              [-80.75637817382812, -33.76587681391894],\n              [-80.77457427978516, -33.723197462817026],\n              [-80.80615997314453, -33.724054113439884],\n              [-80.83740234375, -33.75146241858857]\n            ]\n          ],\n          [\n            [\n              [-78.87805938720703, -33.60575555447342],\n              [-78.88629913330078, -33.61318971884082],\n              [-78.87943267822264, -33.63034303571294],\n              [-78.89350891113281, -33.64520648119226],\n              [-78.90380859375, -33.64720713369291],\n              [-78.90827178955078, -33.64434904445886],\n              [-78.9151382446289, -33.64606390938584],\n              [-78.92166137695312, -33.65206566761678],\n              [-78.92303466796875, -33.65492350063952],\n              [-78.93024444580078, -33.65749546922024],\n              [-78.94020080566406, -33.66778257479216],\n              [-78.93573760986328, -33.67092561169521],\n              [-78.93882751464844, -33.674354248232504],\n              [-78.94191741943358, -33.67292566628718],\n              [-78.94878387451172, -33.67692563592954],\n              [-78.94123077392578, -33.682353868548184],\n              [-78.93539428710938, -33.68321092658006],\n              [-78.93814086914062, -33.678639851675534],\n              [-78.93848419189453, -33.675782806445994],\n              [-78.93299102783203, -33.671497060610534],\n              [-78.92406463623047, -33.671211336627486],\n              [-78.92131805419922, -33.6652109137176],\n              [-78.92406463623047, -33.66178191269289],\n              [-78.914794921875, -33.65578083204094],\n              [-78.90758514404297, -33.662924928220384],\n              [-78.90449523925781, -33.660353121928814],\n              [-78.90552520751953, -33.657209698729595],\n              [-78.89934539794922, -33.652637241813174],\n              [-78.89213562011719, -33.66006736092875],\n              [-78.88458251953125, -33.65606660727672],\n              [-78.87428283691406, -33.644920669896656],\n              [-78.8656997680664, -33.64520648119226],\n              [-78.86089324951172, -33.66549665763364],\n              [-78.82793426513672, -33.66092464108171],\n              [-78.78398895263672, -33.6794969467326],\n              [-78.76922607421875, -33.670639885813706],\n              [-78.7771224975586, -33.662067667998414],\n              [-78.77918243408203, -33.655495055856136],\n              [-78.79051208496094, -33.641490860339054],\n              [-78.81351470947266, -33.64063338660099],\n              [-78.81729125976561, -33.64434904445886],\n              [-78.83068084716797, -33.640919212129155],\n              [-78.83033752441406, -33.63148646875166],\n              [-78.84819030761717, -33.618621971969276],\n              [-78.848876953125, -33.61347563543629],\n              [-78.86295318603516, -33.6071852512562],\n              [-78.87805938720703, -33.60575555447342]\n            ]\n          ],\n          [\n            [\n              [-78.95161628723145, -33.69528025294664],\n              [-78.95530700683594, -33.70006466462807],\n              [-78.9521312713623, -33.70163560737423],\n              [-78.9506721496582, -33.700278885784996],\n              [-78.94861221313477, -33.701207171292374],\n              [-78.94972801208496, -33.70306371221516],\n              [-78.95075798034668, -33.70284949800254],\n              [-78.95178794860838, -33.7045631967461],\n              [-78.9480972290039, -33.70784769044128],\n              [-78.94947052001952, -33.70934709145684],\n              [-78.94303321838379, -33.71377374172037],\n              [-78.93917083740234, -33.71363095011231],\n              [-78.93771171569824, -33.71455909132016],\n              [-78.93874168395996, -33.7163439500602],\n              [-78.93659591674805, -33.714987460801574],\n              [-78.93685340881348, -33.7134881582668],\n              [-78.93479347229004, -33.714916066036416],\n              [-78.93410682678223, -33.71355955421924],\n              [-78.93075942993164, -33.71355955421924],\n              [-78.92475128173828, -33.715201644740844],\n              [-78.92380714416502, -33.714773276327996],\n              [-78.92483711242676, -33.71377374172037],\n              [-78.92706871032715, -33.712988384937574],\n              [-78.92998695373535, -33.712845592023534],\n              [-78.92998695373535, -33.71170324016297],\n              [-78.93118858337402, -33.70970408784028],\n              [-78.93393516540527, -33.70998968387856],\n              [-78.93625259399414, -33.70791909108323],\n              [-78.9378833770752, -33.708276093402596],\n              [-78.93925666809082, -33.7064196651371],\n              [-78.9411449432373, -33.706205459293635],\n              [-78.94020080566406, -33.70506301910626],\n              [-78.94140243530273, -33.704206178993886],\n              [-78.94037246704102, -33.70263528325574],\n              [-78.94208908081055, -33.69792242367998],\n              [-78.94320487976074, -33.69742255977288],\n              [-78.94569396972656, -33.699350590247136],\n              [-78.94929885864258, -33.69799383257217],\n              [-78.94981384277342, -33.69649423337286],\n              [-78.9492130279541, -33.695922950602935],\n              [-78.95015716552734, -33.69513743059241],\n              [-78.95092964172363, -33.69578012931697],\n              [-78.95161628723145, -33.69528025294664]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.08634303771343, -33.68749020845278]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/out/no-rotation.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": 0,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128.84, -25.76],\n            [128.18, -25.6],\n            [127.96, -25.52],\n            [127.88, -25.52],\n            [127.7, -25.6],\n            [127.26, -25.79],\n            [126.6, -26.11],\n            [126.16, -26.78],\n            [126.12, -27.68],\n            [126.21, -28.42],\n            [126.69, -29.49],\n            [127.74, -29.8],\n            [128.8, -29.72],\n            [129.41, -29.03],\n            [129.72, -27.95],\n            [129.68, -27.21],\n            [129.33, -26.23],\n            [128.84, -25.76]\n          ],\n          [\n            [128.45, -27.44],\n            [128.32, -26.94],\n            [127.7, -26.82],\n            [127.35, -27.05],\n            [127.17, -27.8],\n            [127.57, -28.22],\n            [128.1, -28.42],\n            [128.49, -27.8],\n            [128.45, -27.44]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128.84, -25.76],\n            [128.18, -25.6],\n            [127.96, -25.52],\n            [127.88, -25.52],\n            [127.7, -25.6],\n            [127.26, -25.79],\n            [126.6, -26.11],\n            [126.16, -26.78],\n            [126.12, -27.68],\n            [126.21, -28.42],\n            [126.69, -29.49],\n            [127.74, -29.8],\n            [128.8, -29.72],\n            [129.41, -29.03],\n            [129.72, -27.95],\n            [129.68, -27.21],\n            [129.33, -26.23],\n            [128.84, -25.76]\n          ],\n          [\n            [128.45, -27.44],\n            [128.32, -26.94],\n            [127.7, -26.82],\n            [127.35, -27.05],\n            [127.17, -27.8],\n            [127.57, -28.22],\n            [128.1, -28.42],\n            [128.49, -27.8],\n            [128.45, -27.44]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [127.89720000000001, -27.307999999999993]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/out/point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": 80,\n        \"pivot\": [-75.6, 45.3],\n        \"marker-color\": \"#F00\",\n        \"marker-symbol\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.433041, 45.391507]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": 80,\n        \"pivot\": [-75.6, 45.3]\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.69926351308823, 45.43145021122502]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6, 45.3]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/out/polygon-fiji.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": 90,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-180.492063, -17.459212],\n              [-180.370976, -17.433132],\n              [-180.299414, -17.370105],\n              [-180.365522, -17.112142],\n              [-180.673219, -16.943559],\n              [-180.799476, -16.97502],\n              [-180.750256, -17.169571],\n              [-180.492063, -17.459212]\n            ]\n          ],\n          [\n            [\n              [-180.22799, -17.04385],\n              [-179.792297, -17.307707],\n              [-179.732114, -17.017918],\n              [-179.777245, -16.427649],\n              [-180.245198, -15.543629],\n              [-180.56836, -15.51301],\n              [-180.809159, -15.671427],\n              [-180.809418, -15.939503],\n              [-180.694654, -16.196919],\n              [-180.651019, -16.538667],\n              [-180.601828, -16.922566],\n              [-180.22799, -17.04385]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": 90\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-179.6319580078125, -16.762467717941593],\n              [-179.659423828125, -16.64671805097192],\n              [-179.725341796875, -16.578287608637478],\n              [-179.99450683593747, -16.641455036937753],\n              [-180.1702880859375, -16.935960102864705],\n              [-180.1373291015625, -17.056784609942543],\n              [-179.93408203125, -17.00951473208515],\n              [-179.6319580078125, -16.762467717941593]\n            ]\n          ],\n          [\n            [\n              [-180.06591796875, -16.509832826905836],\n              [-179.79125976562497, -16.093320185359257],\n              [-180.0933837890625, -16.0352548623504],\n              [-180.7086181640625, -16.0774858690887],\n              [-181.63146972656247, -16.525632239869275],\n              [-181.6644287109375, -16.836089974560213],\n              [-181.4996337890625, -17.06728740376787],\n              [-181.219482421875, -17.06728740376787],\n              [-180.9503173828125, -16.956978651248072],\n              [-180.59326171875, -16.914939206301646],\n              [-180.1922607421875, -16.867633616803836],\n              [-180.06591796875, -16.509832826905836]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.42572021484375, -16.69905167218912]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/out/polygon-resolute-bay.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": 45,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-93.733309, 75.540938],\n            [-94.849869, 75.567104],\n            [-95.933141, 75.46343],\n            [-96.383707, 75.402789],\n            [-96.362684, 75.074432],\n            [-96.154, 74.827292],\n            [-95.846124, 74.687046],\n            [-95.151349, 74.564184],\n            [-94.563287, 74.700624],\n            [-94.154507, 74.836985],\n            [-93.455303, 75.035786],\n            [-93.27606, 75.298173],\n            [-93.228527, 75.411469],\n            [-93.411057, 75.497447],\n            [-93.733309, 75.540938]\n          ],\n          [\n            [-94.274994, 75.381808],\n            [-95.14635, 75.361361],\n            [-95.717624, 75.198903],\n            [-95.491872, 74.902463],\n            [-95.058838, 74.786731],\n            [-94.122584, 75.027407],\n            [-93.993843, 75.266376],\n            [-94.274994, 75.381808]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": 45\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.174560546875, 75.60953172351893],\n            [-96.03149414062499, 75.4282153667069],\n            [-96.492919921875, 75.16048677152294],\n            [-96.6357421875, 75.03617629075062],\n            [-95.723876953125, 74.80466599405533],\n            [-94.910888671875, 74.66582807452669],\n            [-94.317626953125, 74.62218784846145],\n            [-93.49365234375, 74.66292249033842],\n            [-93.438720703125, 74.86788912917916],\n            [-93.515625, 75.03901279805076],\n            [-93.55957031249999, 75.3060980061604],\n            [-94.163818359375, 75.52189820596192],\n            [-94.449462890625, 75.60953172351893],\n            [-94.82299804687499, 75.63681056594325],\n            [-95.174560546875, 75.60953172351893]\n          ],\n          [\n            [-95.108642578125, 75.40054889588245],\n            [-95.6634521484375, 75.22926698530169],\n            [-95.614013671875, 75.01062406678055],\n            [-94.647216796875, 74.84061980605131],\n            [-94.0264892578125, 74.83774656082585],\n            [-94.0155029296875, 75.17876503868581],\n            [-94.5867919921875, 75.3700564253908],\n            [-95.108642578125, 75.40054889588245]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-94.78062220982143, 75.13518489369591]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/out/polygon-with-hole.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": 120,\n        \"name\": \"Bled Lake\",\n        \"area\": \"1.45\",\n        \"area-unit\": \"km2\",\n        \"volume\": \"0.0257\",\n        \"volume-unit\": \"km3\",\n        \"picture\": \"https://en.wikipedia.org/wiki/Lake_Bled#/media/File:Lake_Bled_from_the_Mountain.jpg\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [14.100752, 46.364285],\n            [14.100005, 46.365643],\n            [14.099026, 46.365657],\n            [14.096691, 46.368434],\n            [14.096403, 46.369985],\n            [14.094524, 46.37005],\n            [14.093946, 46.368707],\n            [14.091812, 46.369592],\n            [14.089859, 46.369686],\n            [14.086916, 46.367472],\n            [14.086714, 46.366698],\n            [14.087289, 46.365785],\n            [14.087281, 46.364591],\n            [14.084612, 46.361756],\n            [14.084612, 46.360867],\n            [14.087221, 46.360136],\n            [14.087077, 46.354277],\n            [14.090214, 46.351215],\n            [14.092859, 46.352008],\n            [14.094079, 46.353881],\n            [14.094712, 46.356296],\n            [14.095538, 46.358053],\n            [14.096232, 46.359179],\n            [14.095956, 46.360212],\n            [14.096746, 46.361333],\n            [14.100752, 46.364285]\n          ],\n          [\n            [14.092924, 46.365087],\n            [14.092501, 46.365529],\n            [14.091735, 46.365783],\n            [14.090986, 46.365791],\n            [14.090847, 46.365684],\n            [14.090868, 46.36559],\n            [14.090984, 46.365493],\n            [14.091267, 46.365209],\n            [14.09167, 46.36498],\n            [14.091966, 46.364905],\n            [14.092843, 46.365034],\n            [14.092924, 46.365087]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": 120,\n        \"name\": \"Bled Lake\",\n        \"area\": \"1.45\",\n        \"area-unit\": \"km2\",\n        \"volume\": \"0.0257\",\n        \"volume-unit\": \"km3\",\n        \"picture\": \"https://en.wikipedia.org/wiki/Lake_Bled#/media/File:Lake_Bled_from_the_Mountain.jpg\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [14.086918830871582, 46.368163916782294],\n            [14.085588455200194, 46.3670386292829],\n            [14.086060523986816, 46.36644636339309],\n            [14.08374309539795, 46.36366262769442],\n            [14.081940650939941, 46.362714940623896],\n            [14.082798957824707, 46.36155992478001],\n            [14.084773063659668, 46.36188570095187],\n            [14.08473014831543, 46.36016795016414],\n            [14.085588455200194, 46.35895364547403],\n            [14.089837074279785, 46.3583020562222],\n            [14.090909957885742, 46.35856861640076],\n            [14.091768264770508, 46.35936828913414],\n            [14.093270301818846, 46.35996063176163],\n            [14.09816265106201, 46.35978292964766],\n            [14.099278450012207, 46.36022718384896],\n            [14.098892211914062, 46.36215224364764],\n            [14.106316566467285, 46.36499528482401],\n            [14.108591079711914, 46.36840081645984],\n            [14.106273651123047, 46.36958529943602],\n            [14.103312492370605, 46.36937801676938],\n            [14.09996509552002, 46.36854887823657],\n            [14.097347259521484, 46.368163916782294],\n            [14.095587730407715, 46.36801585396206],\n            [14.094429016113281, 46.36733475981976],\n            [14.092626571655273, 46.36724592082726],\n            [14.086918830871582, 46.368163916782294]\n          ],\n          [\n            [14.089826345443726, 46.36308513284238],\n            [14.08948302268982, 46.362611286353214],\n            [14.089547395706177, 46.362026376425554],\n            [14.089912176132202, 46.36157473282996],\n            [14.090116024017334, 46.36154511672605],\n            [14.09022331237793, 46.36160434891784],\n            [14.090287685394287, 46.36172281310876],\n            [14.090502262115479, 46.36203378038783],\n            [14.090588092803955, 46.36238916939662],\n            [14.090534448623657, 46.36260388246917],\n            [14.089933633804321, 46.36306292138001],\n            [14.089826345443726, 46.36308513284238]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [14.092212915420532, 46.36346899882679]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/out/polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": 200,\n        \"pivot\": [2.48291015625, 27.819644755099446],\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.331318, 25.963562],\n            [1.0811, 27.016436],\n            [0.878141, 23.89646],\n            [4.331318, 25.963562]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": 200,\n        \"pivot\": [2.48291015625, 27.819644755099446]\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 29],\n            [3.5, 29],\n            [2.5, 32],\n            [0, 29]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2.48291015625, 27.819644755099446]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test/out/z-coord.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": 50,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [123.17066, -20.595392, 10],\n            [122.695301, -25.749925, 10],\n            [126.980874, -27.382228, 10],\n            [129.68694, -24.888351, 10],\n            [128.263897, -20.766401, 10],\n            [123.17066, -20.595392, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"angle\": 50\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121.46484375, -23.88583769986199, 10],\n            [125.5078125, -27.488781168937983, 10],\n            [129.638671875, -25.562265014427492, 10],\n            [129.2431640625, -22.06527806776582, 10],\n            [124.93652343749999, -20.385825381874263, 10],\n            [121.46484375, -23.88583769986199, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [126.158203125, -23.87759746657351]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/test.ts",
    "content": "import { Feature, GeoJSON, GeometryCollection } from \"geojson\";\nimport fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { centroid } from \"@turf/centroid\";\nimport { truncate } from \"@turf/truncate\";\nimport { getCoord } from \"@turf/invariant\";\nimport {\n  point,\n  lineString,\n  featureCollection,\n  geometryCollection,\n  Coord,\n} from \"@turf/helpers\";\nimport { transformRotate as rotate } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename) as Feature,\n  };\n});\n\ntest(\"rotate\", (t) => {\n  for (const { filename, name, geojson } of fixtures) {\n    const { angle, pivot } = geojson.properties || {};\n\n    const rotated = rotate(geojson, angle, { pivot: pivot });\n    const result = featureCollection([\n      colorize(truncate(rotated, { precision: 6, coordinates: 3 })),\n      geojson,\n      makePivot(pivot, geojson),\n    ]);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, result);\n    t.deepEqual(result, loadJsonFileSync(directories.out + filename), name);\n  }\n\n  t.end();\n});\n\ntest(\"rotate -- throws\", (t) => {\n  const line = lineString([\n    [10, 10],\n    [12, 15],\n  ]);\n\n  // @ts-expect-error testing JS runtime for mis-typed option\n  t.throws(() => rotate(null, 100), /geojson is required/, \"missing geojson\");\n  // @ts-expect-error testing JS runtime for mis-typed option\n  t.throws(() => rotate(line, null), /angle is required/, \"missing angle\");\n  t.throws(\n    // @ts-expect-error testing JS runtime for mis-typed option\n    () => rotate(line, 56, { pivot: \"notApoint\" }),\n    /coord must be GeoJSON Point or an Array of numbers/,\n    \"coord must be GeoJSON Point or an Array of numbers\"\n  );\n  t.end();\n});\n\ntest(\"rotate -- mutated input\", (t) => {\n  const line = lineString([\n    [10, 10],\n    [12, 15],\n  ]);\n  const lineBefore = JSON.parse(JSON.stringify(line));\n\n  rotate(line, 100);\n  t.deepEqual(line, lineBefore, \"input should NOT be mutated\");\n\n  rotate(line, 100, { mutate: true });\n  t.deepEqual(\n    truncate(line, { precision: 1 }),\n    lineString([\n      [8.6, 13.9],\n      [13.3, 11.1],\n    ]),\n    \"input should be mutated\"\n  );\n  t.end();\n});\n\ntest(\"rotate -- geometry support\", (t) => {\n  const line = lineString([\n    [10, 10],\n    [12, 15],\n  ]);\n  const pt = point([10, 10]);\n\n  t.assert(\n    rotate(geometryCollection([line.geometry]), 100),\n    \"geometryCollection support\"\n  );\n  t.assert(\n    rotate(geometryCollection([line.geometry]).geometry, 100),\n    \"geometryCollection support\"\n  );\n  t.assert(rotate(featureCollection([line]), 100), \"featureCollection support\");\n  t.assert(rotate(line.geometry, 100), \"geometry line support\");\n  t.assert(\n    rotate(line.geometry, 100, { pivot: pt.geometry }),\n    \"geometry pt support\"\n  );\n  t.assert(\n    rotate(line.geometry, 100, { pivot: pt.geometry.coordinates }),\n    \"pt coordinate support\"\n  );\n  t.end();\n});\n\n// style result\nfunction colorize(geojson: Feature) {\n  // We are going to add some properties, so make sure properties attribute is\n  // present.\n  geojson.properties = geojson.properties ?? {};\n  if (\n    geojson.geometry.type === \"Point\" ||\n    geojson.geometry.type === \"MultiPoint\"\n  ) {\n    geojson.properties[\"marker-color\"] = \"#F00\";\n    geojson.properties[\"marker-symbol\"] = \"star\";\n  } else {\n    geojson.properties[\"stroke\"] = \"#F00\";\n    geojson.properties[\"stroke-width\"] = 4;\n  }\n  return geojson;\n}\n\nfunction makePivot(pivot: Coord, geojson: GeoJSON | GeometryCollection) {\n  if (!pivot) {\n    const pt = centroid(geojson);\n    pt.properties = pt.properties ?? {};\n    pt.properties[\"marker-symbol\"] = \"circle\";\n    return pt;\n  }\n  return point(getCoord(pivot), { \"marker-symbol\": \"circle\" });\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-transform-rotate/types.ts",
    "content": "import { Point, Feature, Polygon, FeatureCollection } from \"geojson\";\nimport {\n  polygon,\n  point,\n  featureCollection,\n  geometryCollection,\n} from \"@turf/helpers\";\nimport { transformRotate as rotate } from \"./index.js\";\n\nconst pt = point([15, 15]);\nconst poly = polygon([\n  [\n    [0, 29],\n    [3.5, 29],\n    [2.5, 32],\n    [0, 29],\n  ],\n]);\n\n// Does not mutate Geometry type\nconst rotatedPoly: Feature<Polygon> = rotate(poly, 100, { pivot: pt });\nconst rotatedFCPoly: FeatureCollection<Polygon> = rotate(\n  featureCollection([poly]),\n  100,\n  { pivot: pt }\n);\n\n// Different Geometry Inputs\nrotate(poly, 100, { pivot: pt });\nrotate(poly, 100, { pivot: pt.geometry });\nrotate(poly.geometry, 100, { pivot: pt.geometry.coordinates });\nrotate(featureCollection([poly]), 100, { pivot: pt.geometry });\nrotate(featureCollection<Polygon | Point>([poly, pt]), 100, { pivot: pt });\nrotate(geometryCollection([poly.geometry]).geometry, 100, {\n  pivot: pt.geometry,\n});\nrotate(geometryCollection([poly.geometry]), 100, { pivot: pt.geometry });\nrotate(geometryCollection([poly.geometry, pt.geometry]), 100, { pivot: pt });\n\n// Allow mutating\nrotate(poly, 100, { pivot: pt, mutate: true });\n"
  },
  {
    "path": "packages/turf-transform-scale/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-transform-scale/README.md",
    "content": "# @turf/transform-scale\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## transformScale\n\nScale GeoJSON objects from a given point by a scaling factor e.g. factor=2\nwould make each object 200% larger.\nIf a FeatureCollection is provided, the origin point will be calculated\nbased on each individual feature *unless* an exact\n\n### Parameters\n\n*   `geojson` **([GeoJSON][1] | [GeometryCollection][2])** objects to be scaled\n*   `factor` **[number][3]** of scaling, positive values greater than 0. Numbers between 0 and 1 will shrink the geojson, numbers greater than 1 will expand it, a factor of 1 will not change the geojson.\n*   `options` **[Object][4]** Optional parameters (optional, default `{}`)\n\n    *   `options.origin` **(Corners | [Coord][5])** Point from which the scaling will occur (string options: sw/se/nw/ne/center/centroid) (optional, default `'centroid'`)\n    *   `options.mutate` **[boolean][6]** allows GeoJSON input to be mutated (significant performance improvement if true) (optional, default `false`)\n\n### Examples\n\n```javascript\nconst poly = turf.polygon([[[0,29],[3.5,29],[2.5,32],[0,29]]]);\nconst scaledPoly = turf.transformScale(poly, 3);\n\n//addToMap\nconst addToMap = [poly, scaledPoly];\nscaledPoly.properties = {stroke: '#F00', 'stroke-width': 4};\n```\n\nReturns **([GeoJSON][1] | [GeometryCollection][2])** scaled GeoJSON\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.8\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.1.1\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/transform-scale\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-transform-scale/bench.ts",
    "content": "import { Feature, FeatureCollection } from \"geojson\";\nimport fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark, { Event } from \"benchmark\";\nimport { Coord, Corners } from \"@turf/helpers\";\nimport { transformScale as scale } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename) as\n      | FeatureCollection\n      | Feature,\n  };\n});\n\n/**\n * Single Process Benchmark\n *\n * line: 3.586ms\n * multiLine: 0.228ms\n * multiPoint: 3.490ms\n * multiPolygon: 2.211ms\n * no-scale: 0.336ms\n * point: 0.038ms\n * poly-double: 2.511ms\n * poly-half: 0.176ms\n * polygon-with-hole: 1.094ms\n * polygon: 0.143ms\n * z-scaling: 0.237ms\n */\nfor (const { name, geojson } of fixtures) {\n  let factor: number = 2,\n    origin: Coord | Corners = \"centroid\";\n  if (geojson.type === \"Feature\") {\n    // Override any test options specified in the feature's properties.\n    factor = geojson.properties?.factor ?? factor;\n    origin = geojson.properties?.origin ?? origin;\n  }\n\n  console.time(name);\n  scale(geojson, factor || 2, { origin, mutate: true });\n  console.timeEnd(name);\n}\n\n/**\n * Benchmark Results\n *\n * line x 15,591 ops/sec ±2.38% (77 runs sampled)\n * multiLine x 27,635 ops/sec ±2.27% (78 runs sampled)\n * multiPoint x 19,728 ops/sec ±2.18% (76 runs sampled)\n * multiPolygon x 2,178 ops/sec ±2.31% (77 runs sampled)\n * no-scale x 28,279 ops/sec ±2.48% (76 runs sampled)\n * point x 138,281 ops/sec ±2.48% (76 runs sampled)\n * poly-double x 34,934 ops/sec ±2.05% (76 runs sampled)\n * poly-half x 33,563 ops/sec ±2.49% (74 runs sampled)\n * polygon-with-hole x 5,046 ops/sec ±3.55% (75 runs sampled)\n * polygon x 35,747 ops/sec ±2.65% (77 runs sampled)\n * z-scaling x 26,205 ops/sec ±2.05% (75 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-transform-scale\");\nfor (const { name, geojson } of fixtures) {\n  let factor: number = 2,\n    origin: Coord | Corners = \"centroid\";\n  if (geojson.type === \"Feature\") {\n    // Override any test options specified in the feature's properties.\n    factor = geojson.properties?.factor ?? factor;\n    origin = geojson.properties?.origin ?? origin;\n  }\n\n  suite.add(name, () => scale(geojson, factor || 2, { origin }));\n}\n\nsuite.on(\"cycle\", (e: Event) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-transform-scale/index.ts",
    "content": "import { Corners, Coord } from \"@turf/helpers\";\nimport { FeatureCollection, GeoJSON, GeometryCollection } from \"geojson\";\nimport { clone } from \"@turf/clone\";\nimport { center } from \"@turf/center\";\nimport { centroid } from \"@turf/centroid\";\nimport { bbox as turfBBox } from \"@turf/bbox\";\nimport { rhumbBearing } from \"@turf/rhumb-bearing\";\nimport { rhumbDistance } from \"@turf/rhumb-distance\";\nimport { rhumbDestination } from \"@turf/rhumb-destination\";\nimport { coordEach, featureEach } from \"@turf/meta\";\nimport { point, isObject } from \"@turf/helpers\";\nimport { getCoord, getCoords, getType } from \"@turf/invariant\";\n\n/**\n * Scale GeoJSON objects from a given point by a scaling factor e.g. factor=2\n * would make each object 200% larger.\n * If a FeatureCollection is provided, the origin point will be calculated\n * based on each individual feature _unless_ an exact\n *\n * @function\n * @param {GeoJSON|GeometryCollection} geojson objects to be scaled\n * @param {number} factor of scaling, positive values greater than 0. Numbers between 0 and 1 will shrink the geojson, numbers greater than 1 will expand it, a factor of 1 will not change the geojson.\n * @param {Object} [options={}] Optional parameters\n * @param {Corners|Coord} [options.origin='centroid'] Point from which the scaling will occur (string options: sw/se/nw/ne/center/centroid)\n * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance improvement if true)\n * @returns {GeoJSON|GeometryCollection} scaled GeoJSON\n * @example\n * const poly = turf.polygon([[[0,29],[3.5,29],[2.5,32],[0,29]]]);\n * const scaledPoly = turf.transformScale(poly, 3);\n *\n * //addToMap\n * const addToMap = [poly, scaledPoly];\n * scaledPoly.properties = {stroke: '#F00', 'stroke-width': 4};\n */\nfunction transformScale<T extends GeoJSON | GeometryCollection>(\n  geojson: T,\n  factor: number,\n  options?: {\n    origin?: Corners | Coord;\n    mutate?: boolean;\n  }\n): T {\n  // Optional parameters\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  const origin = options.origin || \"centroid\";\n  const mutate = options.mutate || false;\n\n  // Input validation\n  if (!geojson) throw new Error(\"geojson required\");\n  if (typeof factor !== \"number\" || factor <= 0)\n    throw new Error(\"invalid factor\");\n  const originIsPoint = Array.isArray(origin) || typeof origin === \"object\";\n\n  // Clone geojson to avoid side effects\n  if (mutate !== true) geojson = clone(geojson);\n\n  // Scale each Feature separately if a feature collection AND the user didn't\n  // pass a single explicit point to scale the whole collection from.\n  if (geojson.type === \"FeatureCollection\" && !originIsPoint) {\n    featureEach(geojson, function (feature, index) {\n      // The type guard above is not recognised in the callback so we have to\n      // cast to accept responsibility.\n      (geojson as FeatureCollection).features[index] = scale(\n        feature,\n        factor,\n        origin\n      );\n    });\n    return geojson;\n  }\n  // Scale Feature/Geometry\n  return scale(geojson, factor, origin);\n}\n\n/**\n * Scale Feature/Geometry\n *\n * @private\n * @param {GeoJSON|GeometryCollection} feature feature or geometry collection to scale\n * @param {number} factor of scaling, positive or negative values greater than 0\n * @param {Corners|Coord} [origin=\"centroid\"] Point from which the scaling will occur (string options: sw/se/nw/ne/center/centroid)\n * @returns {GeoJSON|GeometryCollection} scaled GeoJSON Feature/Geometry\n */\nfunction scale<T extends GeoJSON | GeometryCollection>(\n  feature: T,\n  factor: number,\n  origin: Corners | Coord\n): T {\n  // Default params\n  const isPoint = getType(feature) === \"Point\";\n  // Work with a Coord equivalent of the origin from here on.\n  const originCoord: Coord = defineOrigin(feature, origin);\n\n  // Shortcut no-scaling\n  if (factor === 1 || isPoint) return feature;\n\n  // Scale each coordinate\n  coordEach(feature, function (coord) {\n    const originalDistance = rhumbDistance(originCoord, coord);\n    const bearing = rhumbBearing(originCoord, coord);\n    const newDistance = originalDistance * factor;\n    const newCoord = getCoords(\n      rhumbDestination(originCoord, newDistance, bearing)\n    );\n    coord[0] = newCoord[0];\n    coord[1] = newCoord[1];\n    if (coord.length === 3) coord[2] *= factor;\n  });\n\n  delete feature.bbox;\n\n  return feature;\n}\n\n/**\n * Define Origin\n *\n * @private\n * @param {GeoJSON|GeometryCollection} geojson GeoJSON\n * @param {Corners|Coord} origin sw/se/nw/ne/center/centroid\n * @returns {Feature<Point>} Point origin\n */\nfunction defineOrigin(\n  geojson: GeoJSON | GeometryCollection,\n  origin: Corners | Coord\n): Coord {\n  // Default params\n  if (origin === undefined || origin === null) origin = \"centroid\";\n\n  // Input Coord\n  if (Array.isArray(origin) || typeof origin === \"object\")\n    return getCoord(origin);\n\n  // Define BBox\n  const bbox = geojson.bbox\n    ? geojson.bbox\n    : turfBBox(geojson, { recompute: true });\n  const west = bbox[0];\n  const south = bbox[1];\n  const east = bbox[2];\n  const north = bbox[3];\n\n  // Having to disable eslint below for lines which fail the no-fallthrough\n  // rule, though only because of the ts-expect-error rules. Once we remove\n  // southeast, bottomright, rightbottom, etc we should be able to remove all\n  // these supressions.\n  /* eslint-disable no-fallthrough */\n  switch (origin) {\n    case \"sw\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"southwest\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"westsouth\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"bottomleft\":\n      return point([west, south]);\n    case \"se\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"southeast\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"eastsouth\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"bottomright\":\n      return point([east, south]);\n    case \"nw\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"northwest\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"westnorth\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"topleft\":\n      return point([west, north]);\n    case \"ne\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"northeast\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"eastnorth\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"topright\":\n      return point([east, north]);\n    case \"center\":\n      return center(geojson);\n    case undefined:\n    case null:\n    case \"centroid\":\n      return centroid(geojson);\n    default:\n      throw new Error(\"invalid origin\");\n  }\n  /* eslint-enable no-fallthrough */\n}\n\nexport { transformScale };\nexport default transformScale;\n"
  },
  {
    "path": "packages/turf-transform-scale/package.json",
    "content": "{\n  \"name\": \"@turf/transform-scale\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Changes the size of a geometry by scaling it up or down.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Stefano Borghi <@stebogit>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"transform\",\n    \"transformation\",\n    \"scale\",\n    \"enlarge\",\n    \"contract\",\n    \"zoom-in\",\n    \"zoom-out\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/bbox-polygon\": \"workspace:*\",\n    \"@turf/hex-grid\": \"workspace:*\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/bbox\": \"workspace:*\",\n    \"@turf/center\": \"workspace:*\",\n    \"@turf/centroid\": \"workspace:*\",\n    \"@turf/clone\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@turf/rhumb-bearing\": \"workspace:*\",\n    \"@turf/rhumb-destination\": \"workspace:*\",\n    \"@turf/rhumb-distance\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/in/feature-collection-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#0F0\",\n        \"factor\": 0.8,\n        \"origin\": \"center\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.83740234375, -33.75146241858857],\n            [-80.8267593383789, -33.76316538009658],\n            [-80.83036422729492, -33.77643631739436],\n            [-80.79448699951172, -33.81181543283183],\n            [-80.77629089355469, -33.8159515518711],\n            [-80.76066970825195, -33.805254282102595],\n            [-80.75637817382812, -33.76587681391894],\n            [-80.77457427978516, -33.723197462817026],\n            [-80.80615997314453, -33.724054113439884],\n            [-80.83740234375, -33.75146241858857]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"factor\": 0.8,\n        \"origin\": \"center\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-78.87805938720703, -33.60575555447342],\n              [-78.88629913330078, -33.61318971884082],\n              [-78.87943267822264, -33.63034303571294],\n              [-78.89350891113281, -33.64520648119226],\n              [-78.90380859375, -33.64720713369291],\n              [-78.90827178955078, -33.64434904445886],\n              [-78.9151382446289, -33.64606390938584],\n              [-78.92166137695312, -33.65206566761678],\n              [-78.92303466796875, -33.65492350063952],\n              [-78.93024444580078, -33.65749546922024],\n              [-78.94020080566406, -33.66778257479216],\n              [-78.93573760986328, -33.67092561169521],\n              [-78.93882751464844, -33.674354248232504],\n              [-78.94191741943358, -33.67292566628718],\n              [-78.94878387451172, -33.67692563592954],\n              [-78.94123077392578, -33.682353868548184],\n              [-78.93539428710938, -33.68321092658006],\n              [-78.93814086914062, -33.678639851675534],\n              [-78.93848419189453, -33.675782806445994],\n              [-78.93299102783203, -33.671497060610534],\n              [-78.92406463623047, -33.671211336627486],\n              [-78.92131805419922, -33.6652109137176],\n              [-78.92406463623047, -33.66178191269289],\n              [-78.914794921875, -33.65578083204094],\n              [-78.90758514404297, -33.662924928220384],\n              [-78.90449523925781, -33.660353121928814],\n              [-78.90552520751953, -33.657209698729595],\n              [-78.89934539794922, -33.652637241813174],\n              [-78.89213562011719, -33.66006736092875],\n              [-78.88458251953125, -33.65606660727672],\n              [-78.87428283691406, -33.644920669896656],\n              [-78.8656997680664, -33.64520648119226],\n              [-78.86089324951172, -33.66549665763364],\n              [-78.82793426513672, -33.66092464108171],\n              [-78.78398895263672, -33.6794969467326],\n              [-78.76922607421875, -33.670639885813706],\n              [-78.7771224975586, -33.662067667998414],\n              [-78.77918243408203, -33.655495055856136],\n              [-78.79051208496094, -33.641490860339054],\n              [-78.81351470947266, -33.64063338660099],\n              [-78.81729125976561, -33.64434904445886],\n              [-78.83068084716797, -33.640919212129155],\n              [-78.83033752441406, -33.63148646875166],\n              [-78.84819030761717, -33.618621971969276],\n              [-78.848876953125, -33.61347563543629],\n              [-78.86295318603516, -33.6071852512562],\n              [-78.87805938720703, -33.60575555447342]\n            ]\n          ],\n          [\n            [\n              [-78.95161628723145, -33.69528025294664],\n              [-78.95530700683594, -33.70006466462807],\n              [-78.9521312713623, -33.70163560737423],\n              [-78.9506721496582, -33.700278885784996],\n              [-78.94861221313477, -33.701207171292374],\n              [-78.94972801208496, -33.70306371221516],\n              [-78.95075798034668, -33.70284949800254],\n              [-78.95178794860838, -33.7045631967461],\n              [-78.9480972290039, -33.70784769044128],\n              [-78.94947052001952, -33.70934709145684],\n              [-78.94303321838379, -33.71377374172037],\n              [-78.93917083740234, -33.71363095011231],\n              [-78.93771171569824, -33.71455909132016],\n              [-78.93874168395996, -33.7163439500602],\n              [-78.93659591674805, -33.714987460801574],\n              [-78.93685340881348, -33.7134881582668],\n              [-78.93479347229004, -33.714916066036416],\n              [-78.93410682678223, -33.71355955421924],\n              [-78.93075942993164, -33.71355955421924],\n              [-78.92475128173828, -33.715201644740844],\n              [-78.92380714416502, -33.714773276327996],\n              [-78.92483711242676, -33.71377374172037],\n              [-78.92706871032715, -33.712988384937574],\n              [-78.92998695373535, -33.712845592023534],\n              [-78.92998695373535, -33.71170324016297],\n              [-78.93118858337402, -33.70970408784028],\n              [-78.93393516540527, -33.70998968387856],\n              [-78.93625259399414, -33.70791909108323],\n              [-78.9378833770752, -33.708276093402596],\n              [-78.93925666809082, -33.7064196651371],\n              [-78.9411449432373, -33.706205459293635],\n              [-78.94020080566406, -33.70506301910626],\n              [-78.94140243530273, -33.704206178993886],\n              [-78.94037246704102, -33.70263528325574],\n              [-78.94208908081055, -33.69792242367998],\n              [-78.94320487976074, -33.69742255977288],\n              [-78.94569396972656, -33.699350590247136],\n              [-78.94929885864258, -33.69799383257217],\n              [-78.94981384277342, -33.69649423337286],\n              [-78.9492130279541, -33.695922950602935],\n              [-78.95015716552734, -33.69513743059241],\n              [-78.95092964172363, -33.69578012931697],\n              [-78.95161628723145, -33.69528025294664]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/in/issue-#1059.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"factor\": 2,\n    \"name\": \"Europe\"\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-26.19140625, 33.87041555094183],\n        [42.01171875, 33.87041555094183],\n        [42.01171875, 71.52490903732816],\n        [-26.19140625, 71.52490903732816],\n        [-26.19140625, 33.87041555094183]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/in/line.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"factor\": 1.5\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [11.259269714355469, 44.48450449695473],\n      [11.268196105957031, 44.48866833139464],\n      [11.272315979003906, 44.5063000997406],\n      [11.286735534667969, 44.52343698529045],\n      [11.306304931640625, 44.52515039667307],\n      [11.325874328613281, 44.53298249265435],\n      [11.347160339355469, 44.5302903284497],\n      [11.37359619140625, 44.51878604321948],\n      [11.381149291992186, 44.50948304524639],\n      [11.381492614746094, 44.503606702401854],\n      [11.392478942871094, 44.49185223953622],\n      [11.406898498535156, 44.48548424944496]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/in/multiLine.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"factor\": 1.8,\n    \"origin\": \"topleft\"\n  },\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [-99.2, 19.1],\n        [-99.1, 19.17],\n        [-99, 19.1]\n      ],\n      [\n        [-99.2, 19.16],\n        [-99.1, 19.23],\n        [-99, 19.16]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/in/multiPoint.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"factor\": 1.3,\n    \"origin\": \"center\"\n  },\n  \"geometry\": {\n    \"type\": \"MultiPoint\",\n    \"coordinates\": [\n      [100, 0],\n      [101, 1],\n      [101.15, -0.86],\n      [99.8, 1.8],\n      [99.73, 0.75],\n      [100.8, 1.46],\n      [100.09, 1.08],\n      [101.71, 0.51],\n      [101.3, 0.28]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/in/multiPolygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"factor\": 0.8,\n    \"origin\": \"center\"\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [-80.83740234375, -33.75146241858857],\n          [-80.8267593383789, -33.76316538009658],\n          [-80.83036422729492, -33.77643631739436],\n          [-80.79448699951172, -33.81181543283183],\n          [-80.77629089355469, -33.8159515518711],\n          [-80.76066970825195, -33.805254282102595],\n          [-80.75637817382812, -33.76587681391894],\n          [-80.77457427978516, -33.723197462817026],\n          [-80.80615997314453, -33.724054113439884],\n          [-80.83740234375, -33.75146241858857]\n        ]\n      ],\n      [\n        [\n          [-78.87805938720703, -33.60575555447342],\n          [-78.88629913330078, -33.61318971884082],\n          [-78.87943267822264, -33.63034303571294],\n          [-78.89350891113281, -33.64520648119226],\n          [-78.90380859375, -33.64720713369291],\n          [-78.90827178955078, -33.64434904445886],\n          [-78.9151382446289, -33.64606390938584],\n          [-78.92166137695312, -33.65206566761678],\n          [-78.92303466796875, -33.65492350063952],\n          [-78.93024444580078, -33.65749546922024],\n          [-78.94020080566406, -33.66778257479216],\n          [-78.93573760986328, -33.67092561169521],\n          [-78.93882751464844, -33.674354248232504],\n          [-78.94191741943358, -33.67292566628718],\n          [-78.94878387451172, -33.67692563592954],\n          [-78.94123077392578, -33.682353868548184],\n          [-78.93539428710938, -33.68321092658006],\n          [-78.93814086914062, -33.678639851675534],\n          [-78.93848419189453, -33.675782806445994],\n          [-78.93299102783203, -33.671497060610534],\n          [-78.92406463623047, -33.671211336627486],\n          [-78.92131805419922, -33.6652109137176],\n          [-78.92406463623047, -33.66178191269289],\n          [-78.914794921875, -33.65578083204094],\n          [-78.90758514404297, -33.662924928220384],\n          [-78.90449523925781, -33.660353121928814],\n          [-78.90552520751953, -33.657209698729595],\n          [-78.89934539794922, -33.652637241813174],\n          [-78.89213562011719, -33.66006736092875],\n          [-78.88458251953125, -33.65606660727672],\n          [-78.87428283691406, -33.644920669896656],\n          [-78.8656997680664, -33.64520648119226],\n          [-78.86089324951172, -33.66549665763364],\n          [-78.82793426513672, -33.66092464108171],\n          [-78.78398895263672, -33.6794969467326],\n          [-78.76922607421875, -33.670639885813706],\n          [-78.7771224975586, -33.662067667998414],\n          [-78.77918243408203, -33.655495055856136],\n          [-78.79051208496094, -33.641490860339054],\n          [-78.81351470947266, -33.64063338660099],\n          [-78.81729125976561, -33.64434904445886],\n          [-78.83068084716797, -33.640919212129155],\n          [-78.83033752441406, -33.63148646875166],\n          [-78.84819030761717, -33.618621971969276],\n          [-78.848876953125, -33.61347563543629],\n          [-78.86295318603516, -33.6071852512562],\n          [-78.87805938720703, -33.60575555447342]\n        ]\n      ],\n      [\n        [\n          [-78.95161628723145, -33.69528025294664],\n          [-78.95530700683594, -33.70006466462807],\n          [-78.9521312713623, -33.70163560737423],\n          [-78.9506721496582, -33.700278885784996],\n          [-78.94861221313477, -33.701207171292374],\n          [-78.94972801208496, -33.70306371221516],\n          [-78.95075798034668, -33.70284949800254],\n          [-78.95178794860838, -33.7045631967461],\n          [-78.9480972290039, -33.70784769044128],\n          [-78.94947052001952, -33.70934709145684],\n          [-78.94303321838379, -33.71377374172037],\n          [-78.93917083740234, -33.71363095011231],\n          [-78.93771171569824, -33.71455909132016],\n          [-78.93874168395996, -33.7163439500602],\n          [-78.93659591674805, -33.714987460801574],\n          [-78.93685340881348, -33.7134881582668],\n          [-78.93479347229004, -33.714916066036416],\n          [-78.93410682678223, -33.71355955421924],\n          [-78.93075942993164, -33.71355955421924],\n          [-78.92475128173828, -33.715201644740844],\n          [-78.92380714416502, -33.714773276327996],\n          [-78.92483711242676, -33.71377374172037],\n          [-78.92706871032715, -33.712988384937574],\n          [-78.92998695373535, -33.712845592023534],\n          [-78.92998695373535, -33.71170324016297],\n          [-78.93118858337402, -33.70970408784028],\n          [-78.93393516540527, -33.70998968387856],\n          [-78.93625259399414, -33.70791909108323],\n          [-78.9378833770752, -33.708276093402596],\n          [-78.93925666809082, -33.7064196651371],\n          [-78.9411449432373, -33.706205459293635],\n          [-78.94020080566406, -33.70506301910626],\n          [-78.94140243530273, -33.704206178993886],\n          [-78.94037246704102, -33.70263528325574],\n          [-78.94208908081055, -33.69792242367998],\n          [-78.94320487976074, -33.69742255977288],\n          [-78.94569396972656, -33.699350590247136],\n          [-78.94929885864258, -33.69799383257217],\n          [-78.94981384277342, -33.69649423337286],\n          [-78.9492130279541, -33.695922950602935],\n          [-78.95015716552734, -33.69513743059241],\n          [-78.95092964172363, -33.69578012931697],\n          [-78.95161628723145, -33.69528025294664]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/in/no-scale.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"factor\": 1,\n    \"origin\": \"ne\"\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [128.84, -25.76],\n        [128.18, -25.6],\n        [127.96, -25.52],\n        [127.88, -25.52],\n        [127.7, -25.6],\n        [127.26, -25.79],\n        [126.6, -26.11],\n        [126.16, -26.78],\n        [126.12, -27.68],\n        [126.21, -28.42],\n        [126.69, -29.49],\n        [127.74, -29.8],\n        [128.8, -29.72],\n        [129.41, -29.03],\n        [129.72, -27.95],\n        [129.68, -27.21],\n        [129.33, -26.23],\n        [128.84, -25.76]\n      ],\n      [\n        [128.45, -27.44],\n        [128.32, -26.94],\n        [127.7, -26.82],\n        [127.35, -27.05],\n        [127.17, -27.8],\n        [127.57, -28.22],\n        [128.1, -28.42],\n        [128.49, -27.8],\n        [128.45, -27.44]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/in/origin-inside-bbox.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"factor\": 1.8,\n    \"origin\": [-127.59384155273438, 50.198001033269506]\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-127.66113281249999, 50.5064398321055],\n        [-127.4029541015625, 50.35597574998605],\n        [-127.46337890625001, 50.162824333817284],\n        [-127.04040527343749, 50.0923932109388],\n        [-126.78771972656249, 50.391010070956696],\n        [-127.144775390625, 50.56579378237965],\n        [-127.66113281249999, 50.5064398321055]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/in/origin-inside-feature.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"factor\": 1.8,\n    \"origin\": [-127.35351562499999, 50.2682767372753]\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-127.66113281249999, 50.5064398321055],\n        [-127.4029541015625, 50.35597574998605],\n        [-127.46337890625001, 50.162824333817284],\n        [-127.04040527343749, 50.0923932109388],\n        [-126.78771972656249, 50.391010070956696],\n        [-127.144775390625, 50.56579378237965],\n        [-127.66113281249999, 50.5064398321055]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/in/origin-outside-bbox.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"factor\": 1.8,\n    \"origin\": [-128.12530517578125, 50.27178780378988]\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-127.66113281249999, 50.5064398321055],\n        [-127.4029541015625, 50.35597574998605],\n        [-127.46337890625001, 50.162824333817284],\n        [-127.04040527343749, 50.0923932109388],\n        [-126.78771972656249, 50.391010070956696],\n        [-127.144775390625, 50.56579378237965],\n        [-127.66113281249999, 50.5064398321055]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/in/point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"factor\": 5,\n    \"origin\": \"southwest\"\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-75.69926351308823, 45.43145021122502]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/in/poly-double.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"factor\": 2,\n    \"origin\": \"bottomleft\"\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [0, 0],\n        [2, 0],\n        [2, 1],\n        [0, 1],\n        [0, 0]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/in/poly-half.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"factor\": 0.5,\n    \"origin\": \"bottomleft\"\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [0, 0],\n        [2, 0],\n        [2, 1],\n        [0, 1],\n        [0, 0]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/in/polygon-fiji.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [-179.6319580078125, -16.762467717941593],\n          [-179.659423828125, -16.64671805097192],\n          [-179.725341796875, -16.578287608637478],\n          [-179.99450683593747, -16.641455036937753],\n          [-180.1702880859375, -16.935960102864705],\n          [-180.1373291015625, -17.056784609942543],\n          [-179.93408203125, -17.00951473208515],\n          [-179.6319580078125, -16.762467717941593]\n        ]\n      ],\n      [\n        [\n          [-180.06591796875, -16.509832826905836],\n          [-179.79125976562497, -16.093320185359257],\n          [-180.0933837890625, -16.0352548623504],\n          [-180.7086181640625, -16.0774858690887],\n          [-181.63146972656247, -16.525632239869275],\n          [-181.6644287109375, -16.836089974560213],\n          [-181.4996337890625, -17.06728740376787],\n          [-181.219482421875, -17.06728740376787],\n          [-180.9503173828125, -16.956978651248072],\n          [-180.59326171875, -16.914939206301646],\n          [-180.1922607421875, -16.867633616803836],\n          [-180.06591796875, -16.509832826905836]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/in/polygon-resolute-bay.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"factor\": 2.5\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-95.174560546875, 75.60953172351893],\n        [-96.03149414062499, 75.4282153667069],\n        [-96.492919921875, 75.16048677152294],\n        [-96.6357421875, 75.03617629075062],\n        [-95.723876953125, 74.80466599405533],\n        [-94.910888671875, 74.66582807452669],\n        [-94.317626953125, 74.62218784846145],\n        [-93.49365234375, 74.66292249033842],\n        [-93.438720703125, 74.86788912917916],\n        [-93.515625, 75.03901279805076],\n        [-93.55957031249999, 75.3060980061604],\n        [-94.163818359375, 75.52189820596192],\n        [-94.449462890625, 75.60953172351893],\n        [-94.82299804687499, 75.63681056594325],\n        [-95.174560546875, 75.60953172351893]\n      ],\n      [\n        [-95.108642578125, 75.40054889588245],\n        [-95.6634521484375, 75.22926698530169],\n        [-95.614013671875, 75.01062406678055],\n        [-94.647216796875, 74.84061980605131],\n        [-94.0264892578125, 74.83774656082585],\n        [-94.0155029296875, 75.17876503868581],\n        [-94.5867919921875, 75.3700564253908],\n        [-95.108642578125, 75.40054889588245]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/in/polygon-with-hole.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"factor\": 5,\n    \"origin\": \"sw\",\n    \"name\": \"Bled Lake\",\n    \"area\": \"1.45\",\n    \"area-unit\": \"km2\",\n    \"volume\": \"0.0257\",\n    \"volume-unit\": \"km3\",\n    \"picture\": \"https://en.wikipedia.org/wiki/Lake_Bled#/media/File:Lake_Bled_from_the_Mountain.jpg\"\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [14.086918830871582, 46.368163916782294],\n        [14.085588455200194, 46.3670386292829],\n        [14.086060523986816, 46.36644636339309],\n        [14.08374309539795, 46.36366262769442],\n        [14.081940650939941, 46.362714940623896],\n        [14.082798957824707, 46.36155992478001],\n        [14.084773063659668, 46.36188570095187],\n        [14.08473014831543, 46.36016795016414],\n        [14.085588455200194, 46.35895364547403],\n        [14.089837074279785, 46.3583020562222],\n        [14.090909957885742, 46.35856861640076],\n        [14.091768264770508, 46.35936828913414],\n        [14.093270301818846, 46.35996063176163],\n        [14.09816265106201, 46.35978292964766],\n        [14.099278450012207, 46.36022718384896],\n        [14.098892211914062, 46.36215224364764],\n        [14.106316566467285, 46.36499528482401],\n        [14.108591079711914, 46.36840081645984],\n        [14.106273651123047, 46.36958529943602],\n        [14.103312492370605, 46.36937801676938],\n        [14.09996509552002, 46.36854887823657],\n        [14.097347259521484, 46.368163916782294],\n        [14.095587730407715, 46.36801585396206],\n        [14.094429016113281, 46.36733475981976],\n        [14.092626571655273, 46.36724592082726],\n        [14.086918830871582, 46.368163916782294]\n      ],\n      [\n        [14.089826345443726, 46.36308513284238],\n        [14.08948302268982, 46.362611286353214],\n        [14.089547395706177, 46.362026376425554],\n        [14.089912176132202, 46.36157473282996],\n        [14.090116024017334, 46.36154511672605],\n        [14.09022331237793, 46.36160434891784],\n        [14.090287685394287, 46.36172281310876],\n        [14.090502262115479, 46.36203378038783],\n        [14.090588092803955, 46.36238916939662],\n        [14.090534448623657, 46.36260388246917],\n        [14.089933633804321, 46.36306292138001],\n        [14.089826345443726, 46.36308513284238]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/in/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"factor\": 0.1\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [0, 29],\n        [3.5, 29],\n        [2.5, 32],\n        [0, 29]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/in/z-scaling.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"factor\": 2.3\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [121.46484375, -23.88583769986199, 10],\n        [125.5078125, -27.488781168937983, 11],\n        [129.638671875, -25.562265014427492, 12],\n        [129.2431640625, -22.06527806776582, 13],\n        [124.93652343749999, -20.385825381874263, 14],\n        [121.46484375, -23.88583769986199, 10]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/feature-collection-polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#0F0\",\n        \"factor\": 0.8,\n        \"origin\": \"center\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.878897, -33.732123],\n            [-80.857617, -33.755529],\n            [-80.864832, -33.782071],\n            [-80.793075, -33.852829],\n            [-80.756673, -33.861102],\n            [-80.725427, -33.839707],\n            [-80.71686, -33.760952],\n            [-80.753262, -33.675593],\n            [-80.816416, -33.677307],\n            [-80.878897, -33.732123]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"factor\": 0.8,\n        \"origin\": \"center\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-78.844645, -33.532541],\n              [-78.861115, -33.54741],\n              [-78.847381, -33.581716],\n              [-78.875523, -33.611443],\n              [-78.896118, -33.615445],\n              [-78.905043, -33.609728],\n              [-78.918773, -33.613158],\n              [-78.931817, -33.625162],\n              [-78.934564, -33.630877],\n              [-78.948982, -33.636021],\n              [-78.968896, -33.656595],\n              [-78.959971, -33.662881],\n              [-78.966151, -33.669739],\n              [-78.972331, -33.666882],\n              [-78.986065, -33.674882],\n              [-78.970961, -33.685738],\n              [-78.959288, -33.687452],\n              [-78.964779, -33.67831],\n              [-78.965465, -33.672596],\n              [-78.954478, -33.664024],\n              [-78.936626, -33.663453],\n              [-78.931132, -33.651452],\n              [-78.936625, -33.644594],\n              [-78.918087, -33.632592],\n              [-78.903669, -33.64688],\n              [-78.89749, -33.641737],\n              [-78.89955, -33.63545],\n              [-78.887192, -33.626305],\n              [-78.872773, -33.641165],\n              [-78.85767, -33.633163],\n              [-78.837078, -33.610872],\n              [-78.819915, -33.611443],\n              [-78.810292, -33.652024],\n              [-78.744384, -33.64288],\n              [-78.656475, -33.680024],\n              [-78.626964, -33.66231],\n              [-78.642769, -33.645166],\n              [-78.646899, -33.63202],\n              [-78.669575, -33.604012],\n              [-78.715571, -33.602297],\n              [-78.723118, -33.609728],\n              [-78.749895, -33.602869],\n              [-78.749218, -33.584003],\n              [-78.784923, -33.558274],\n              [-78.786299, -33.547982],\n              [-78.814445, -33.535401],\n              [-78.844645, -33.532541]\n            ]\n          ],\n          [\n            [\n              [-78.991738, -33.711591],\n              [-78.999123, -33.72116],\n              [-78.992771, -33.724301],\n              [-78.989852, -33.721588],\n              [-78.985732, -33.723445],\n              [-78.987965, -33.727158],\n              [-78.990025, -33.726729],\n              [-78.992086, -33.730157],\n              [-78.984705, -33.736726],\n              [-78.987452, -33.739724],\n              [-78.974577, -33.748578],\n              [-78.966851, -33.748292],\n              [-78.963932, -33.750148],\n              [-78.965993, -33.753718],\n              [-78.9617, -33.751005],\n              [-78.962215, -33.748007],\n              [-78.958095, -33.750862],\n              [-78.956721, -33.748149],\n              [-78.950024, -33.748149],\n              [-78.938006, -33.751434],\n              [-78.936117, -33.750577],\n              [-78.938177, -33.748578],\n              [-78.942641, -33.747007],\n              [-78.948479, -33.746721],\n              [-78.948479, -33.744437],\n              [-78.950882, -33.740438],\n              [-78.956376, -33.74101],\n              [-78.961011, -33.736868],\n              [-78.964274, -33.737582],\n              [-78.96702, -33.73387],\n              [-78.970797, -33.733441],\n              [-78.968908, -33.731156],\n              [-78.971312, -33.729443],\n              [-78.969251, -33.726301],\n              [-78.972683, -33.716875],\n              [-78.974914, -33.715875],\n              [-78.979894, -33.719731],\n              [-78.987104, -33.717018],\n              [-78.988133, -33.714019],\n              [-78.986931, -33.712876],\n              [-78.988819, -33.711305],\n              [-78.990365, -33.712591],\n              [-78.991738, -33.711591]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#0F0\",\n        \"factor\": 0.8,\n        \"origin\": \"center\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.83740234375, -33.75146241858857],\n            [-80.8267593383789, -33.76316538009658],\n            [-80.83036422729492, -33.77643631739436],\n            [-80.79448699951172, -33.81181543283183],\n            [-80.77629089355469, -33.8159515518711],\n            [-80.76066970825195, -33.805254282102595],\n            [-80.75637817382812, -33.76587681391894],\n            [-80.77457427978516, -33.723197462817026],\n            [-80.80615997314453, -33.724054113439884],\n            [-80.83740234375, -33.75146241858857]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"fill\": \"#00F\",\n        \"factor\": 0.8,\n        \"origin\": \"center\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-78.87805938720703, -33.60575555447342],\n              [-78.88629913330078, -33.61318971884082],\n              [-78.87943267822264, -33.63034303571294],\n              [-78.89350891113281, -33.64520648119226],\n              [-78.90380859375, -33.64720713369291],\n              [-78.90827178955078, -33.64434904445886],\n              [-78.9151382446289, -33.64606390938584],\n              [-78.92166137695312, -33.65206566761678],\n              [-78.92303466796875, -33.65492350063952],\n              [-78.93024444580078, -33.65749546922024],\n              [-78.94020080566406, -33.66778257479216],\n              [-78.93573760986328, -33.67092561169521],\n              [-78.93882751464844, -33.674354248232504],\n              [-78.94191741943358, -33.67292566628718],\n              [-78.94878387451172, -33.67692563592954],\n              [-78.94123077392578, -33.682353868548184],\n              [-78.93539428710938, -33.68321092658006],\n              [-78.93814086914062, -33.678639851675534],\n              [-78.93848419189453, -33.675782806445994],\n              [-78.93299102783203, -33.671497060610534],\n              [-78.92406463623047, -33.671211336627486],\n              [-78.92131805419922, -33.6652109137176],\n              [-78.92406463623047, -33.66178191269289],\n              [-78.914794921875, -33.65578083204094],\n              [-78.90758514404297, -33.662924928220384],\n              [-78.90449523925781, -33.660353121928814],\n              [-78.90552520751953, -33.657209698729595],\n              [-78.89934539794922, -33.652637241813174],\n              [-78.89213562011719, -33.66006736092875],\n              [-78.88458251953125, -33.65606660727672],\n              [-78.87428283691406, -33.644920669896656],\n              [-78.8656997680664, -33.64520648119226],\n              [-78.86089324951172, -33.66549665763364],\n              [-78.82793426513672, -33.66092464108171],\n              [-78.78398895263672, -33.6794969467326],\n              [-78.76922607421875, -33.670639885813706],\n              [-78.7771224975586, -33.662067667998414],\n              [-78.77918243408203, -33.655495055856136],\n              [-78.79051208496094, -33.641490860339054],\n              [-78.81351470947266, -33.64063338660099],\n              [-78.81729125976561, -33.64434904445886],\n              [-78.83068084716797, -33.640919212129155],\n              [-78.83033752441406, -33.63148646875166],\n              [-78.84819030761717, -33.618621971969276],\n              [-78.848876953125, -33.61347563543629],\n              [-78.86295318603516, -33.6071852512562],\n              [-78.87805938720703, -33.60575555447342]\n            ]\n          ],\n          [\n            [\n              [-78.95161628723145, -33.69528025294664],\n              [-78.95530700683594, -33.70006466462807],\n              [-78.9521312713623, -33.70163560737423],\n              [-78.9506721496582, -33.700278885784996],\n              [-78.94861221313477, -33.701207171292374],\n              [-78.94972801208496, -33.70306371221516],\n              [-78.95075798034668, -33.70284949800254],\n              [-78.95178794860838, -33.7045631967461],\n              [-78.9480972290039, -33.70784769044128],\n              [-78.94947052001952, -33.70934709145684],\n              [-78.94303321838379, -33.71377374172037],\n              [-78.93917083740234, -33.71363095011231],\n              [-78.93771171569824, -33.71455909132016],\n              [-78.93874168395996, -33.7163439500602],\n              [-78.93659591674805, -33.714987460801574],\n              [-78.93685340881348, -33.7134881582668],\n              [-78.93479347229004, -33.714916066036416],\n              [-78.93410682678223, -33.71355955421924],\n              [-78.93075942993164, -33.71355955421924],\n              [-78.92475128173828, -33.715201644740844],\n              [-78.92380714416502, -33.714773276327996],\n              [-78.92483711242676, -33.71377374172037],\n              [-78.92706871032715, -33.712988384937574],\n              [-78.92998695373535, -33.712845592023534],\n              [-78.92998695373535, -33.71170324016297],\n              [-78.93118858337402, -33.70970408784028],\n              [-78.93393516540527, -33.70998968387856],\n              [-78.93625259399414, -33.70791909108323],\n              [-78.9378833770752, -33.708276093402596],\n              [-78.93925666809082, -33.7064196651371],\n              [-78.9411449432373, -33.706205459293635],\n              [-78.94020080566406, -33.70506301910626],\n              [-78.94140243530273, -33.704206178993886],\n              [-78.94037246704102, -33.70263528325574],\n              [-78.94208908081055, -33.69792242367998],\n              [-78.94320487976074, -33.69742255977288],\n              [-78.94569396972656, -33.699350590247136],\n              [-78.94929885864258, -33.69799383257217],\n              [-78.94981384277342, -33.69649423337286],\n              [-78.9492130279541, -33.695922950602935],\n              [-78.95015716552734, -33.69513743059241],\n              [-78.95092964172363, -33.69578012931697],\n              [-78.95161628723145, -33.69528025294664]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-80.7958984375, -33.770801530340094]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.91150214455344, -33.67896973235066]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/issue-#1059.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 2,\n        \"name\": \"Europe\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.292048, 15.043169],\n            [69.112361, 15.043169],\n            [-132.621875, 89.647844],\n            [148.442187, 89.647844],\n            [-53.292048, 15.043169]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 2,\n        \"name\": \"Europe\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-26.19140625, 33.87041555094183],\n            [42.01171875, 33.87041555094183],\n            [42.01171875, 71.52490903732816],\n            [-26.19140625, 71.52490903732816],\n            [-26.19140625, 33.87041555094183]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [7.91015625, 52.697662294134986]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/issue-#895.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.84359383762614, 45.42809052672104],\n            [-122.85186614854638, 45.43811782493964],\n            [-122.86840636065244, 45.43811782493964],\n            [-122.87667867157268, 45.42809052672104],\n            [-122.86840856465221, 45.41806322850245],\n            [-122.85186394454661, 45.41806322850245],\n            [-122.84359383762614, 45.42809052672104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.83532262913945, 45.47822701781403],\n            [-122.84773054633155, 45.49326796514193],\n            [-122.87254196286727, 45.49326796514193],\n            [-122.88494988005937, 45.47822701781403],\n            [-122.87254417072825, 45.463186070486124],\n            [-122.84772833847057, 45.463186070486124],\n            [-122.83532262913945, 45.47822701781403]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.84359383762614, 45.52836350890701],\n            [-122.85186615241241, 45.53839080712561],\n            [-122.86840635678641, 45.53839080712561],\n            [-122.87667867157268, 45.52836350890701],\n            [-122.86840856851524, 45.51833621068842],\n            [-122.85186394068364, 45.51833621068842],\n            [-122.84359383762614, 45.52836350890701]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.83532262913945, 45.5785],\n            [-122.84773055020491, 45.59354094732789],\n            [-122.8725419589939, 45.59354094732789],\n            [-122.88494988005937, 45.5785],\n            [-122.87254417459769, 45.5634590526721],\n            [-122.84772833460113, 45.5634590526721],\n            [-122.83532262913945, 45.5785]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.84359383762614, 45.62863649109298],\n            [-122.8518661562922, 45.638663789311586],\n            [-122.86840635290662, 45.638663789311586],\n            [-122.87667867157268, 45.62863649109298],\n            [-122.86840857239201, 45.61860919287439],\n            [-122.85186393680681, 45.61860919287439],\n            [-122.84359383762614, 45.62863649109298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.83532262913945, 45.678772982185976],\n            [-122.8477305540921, 45.693813929513865],\n            [-122.87254195510673, 45.693813929513865],\n            [-122.88494988005937, 45.678772982185976],\n            [-122.87254417848095, 45.66373203485807],\n            [-122.84772833071787, 45.66373203485807],\n            [-122.83532262913945, 45.678772982185976]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.84359383762614, 45.728909473278954],\n            [-122.85186616018592, 45.73893677149755],\n            [-122.8684063490129, 45.73893677149755],\n            [-122.87667867157268, 45.728909473278954],\n            [-122.86840857628272, 45.71888217506035],\n            [-122.8518639329161, 45.71888217506035],\n            [-122.84359383762614, 45.728909473278954]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.77328856548962, 45.45315877226753],\n            [-122.78569648171549, 45.46819971959543],\n            [-122.81050790018361, 45.46819971959543],\n            [-122.82291581640948, 45.45315877226753],\n            [-122.81051010611316, 45.43811782493964],\n            [-122.785694275786, 45.43811782493964],\n            [-122.77328856548962, 45.45315877226753]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.78155977397626, 45.50329526336053],\n            [-122.78983208779476, 45.513322561579116],\n            [-122.80637229410439, 45.513322561579116],\n            [-122.8146446079229, 45.50329526336053],\n            [-122.80637450389833, 45.49326796514193],\n            [-122.78982987800077, 45.49326796514193],\n            [-122.78155977397626, 45.50329526336053]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.77328856548962, 45.553431754453506],\n            [-122.78569648558539, 45.5684727017814],\n            [-122.81050789631371, 45.5684727017814],\n            [-122.82291581640948, 45.553431754453506],\n            [-122.81051010997913, 45.53839080712561],\n            [-122.78569427191997, 45.53839080712561],\n            [-122.77328856548962, 45.553431754453506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.78155977397626, 45.60356824554649],\n            [-122.78983209167109, 45.613595543765086],\n            [-122.80637229022801, 45.613595543765086],\n            [-122.8146446079229, 45.60356824554649],\n            [-122.8063745077717, 45.59354094732789],\n            [-122.78982987412746, 45.59354094732789],\n            [-122.78155977397626, 45.60356824554649]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.77328856548962, 45.653704736639476],\n            [-122.78569648946916, 45.66874568396738],\n            [-122.81050789243, 45.66874568396738],\n            [-122.82291581640948, 45.653704736639476],\n            [-122.81051011385898, 45.638663789311586],\n            [-122.78569426804017, 45.638663789311586],\n            [-122.77328856548962, 45.653704736639476]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.78155977397626, 45.70384122773246],\n            [-122.78983209556134, 45.71386852595106],\n            [-122.80637228633776, 45.71386852595106],\n            [-122.8146446079229, 45.70384122773246],\n            [-122.80637451165887, 45.693813929513865],\n            [-122.78982987024023, 45.693813929513865],\n            [-122.78155977397626, 45.70384122773246]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.71125450183973, 45.42809052672104],\n            [-122.72366241710034, 45.44313147404894],\n            [-122.74847383749909, 45.44313147404894],\n            [-122.76088175275964, 45.42809052672104],\n            [-122.74847604149892, 45.413049579393146],\n            [-122.72366021310046, 45.413049579393146],\n            [-122.71125450183973, 45.42809052672104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.71952571032642, 45.47822701781403],\n            [-122.72779802317797, 45.48825431603263],\n            [-122.74433823142147, 45.48825431603263],\n            [-122.75261054427301, 45.47822701781403],\n            [-122.74434043928227, 45.46819971959543],\n            [-122.72779581531711, 45.46819971959543],\n            [-122.71952571032642, 45.47822701781403]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.71125450183973, 45.52836350890701],\n            [-122.72366242096678, 45.54340445623491],\n            [-122.7484738336326, 45.54340445623491],\n            [-122.76088175275964, 45.52836350890701],\n            [-122.74847604536154, 45.513322561579116],\n            [-122.72366020923789, 45.513322561579116],\n            [-122.71125450183973, 45.52836350890701]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.71952571032642, 45.5785],\n            [-122.72779802705082, 45.588527298218594],\n            [-122.74433822754855, 45.588527298218594],\n            [-122.75261054427301, 45.5785],\n            [-122.74434044315217, 45.5684727017814],\n            [-122.72779581144721, 45.5684727017814],\n            [-122.71952571032642, 45.5785]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.71125450183973, 45.62863649109298],\n            [-122.72366242484702, 45.64367743842088],\n            [-122.74847382975236, 45.64367743842088],\n            [-122.76088175275964, 45.62863649109298],\n            [-122.74847604923787, 45.613595543765086],\n            [-122.72366020536151, 45.613595543765086],\n            [-122.71125450183973, 45.62863649109298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.71952571032642, 45.678772982185976],\n            [-122.7277980309376, 45.68880028040457],\n            [-122.74433822366177, 45.68880028040457],\n            [-122.75261054427301, 45.678772982185976],\n            [-122.74434044703594, 45.66874568396738],\n            [-122.72779580756344, 45.66874568396738],\n            [-122.71952571032642, 45.678772982185976]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.71125450183973, 45.728909473278954],\n            [-122.72366242874125, 45.74395042060685],\n            [-122.74847382585818, 45.74395042060685],\n            [-122.76088175275964, 45.728909473278954],\n            [-122.74847605312812, 45.71386852595106],\n            [-122.72366020147132, 45.71386852595106],\n            [-122.71125450183973, 45.728909473278954]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.65749164667659, 45.45315877226753],\n            [-122.66576395856202, 45.463186070486124],\n            [-122.68230416873769, 45.463186070486124],\n            [-122.69057648062318, 45.45315877226753],\n            [-122.68230637466712, 45.44313147404894],\n            [-122.66576175263265, 45.44313147404894],\n            [-122.65749164667659, 45.45315877226753]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.6492204381899, 45.50329526336053],\n            [-122.66162835634907, 45.51833621068842],\n            [-122.6864397709507, 45.51833621068842],\n            [-122.69884768910981, 45.50329526336053],\n            [-122.68644198074475, 45.48825431603263],\n            [-122.66162614655502, 45.48825431603263],\n            [-122.6492204381899, 45.50329526336053]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.65749164667659, 45.553431754453506],\n            [-122.66576396243147, 45.5634590526721],\n            [-122.68230416486824, 45.5634590526721],\n            [-122.69057648062318, 45.553431754453506],\n            [-122.68230637853355, 45.54340445623491],\n            [-122.66576174876616, 45.54340445623491],\n            [-122.65749164667659, 45.553431754453506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.6492204381899, 45.60356824554649],\n            [-122.66162836022585, 45.61860919287439],\n            [-122.68643976707392, 45.61860919287439],\n            [-122.69884768910981, 45.60356824554649],\n            [-122.68644198461766, 45.588527298218594],\n            [-122.66162614268211, 45.588527298218594],\n            [-122.6492204381899, 45.60356824554649]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.65749164667659, 45.653704736639476],\n            [-122.66576396631478, 45.66373203485807],\n            [-122.68230416098498, 45.66373203485807],\n            [-122.69057648062318, 45.653704736639476],\n            [-122.68230638241386, 45.64367743842088],\n            [-122.66576174488591, 45.64367743842088],\n            [-122.65749164667659, 45.653704736639476]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.6492204381899, 45.70384122773246],\n            [-122.66162836411655, 45.71888217506035],\n            [-122.68643976318316, 45.71888217506035],\n            [-122.69884768910981, 45.70384122773246],\n            [-122.68644198850438, 45.68880028040457],\n            [-122.66162613879533, 45.68880028040457],\n            [-122.6492204381899, 45.70384122773246]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.5954575830267, 45.42809052672104],\n            [-122.60372989394699, 45.43811782493964],\n            [-122.620270106053, 45.43811782493964],\n            [-122.62854241697329, 45.42809052672104],\n            [-122.62027231005277, 45.41806322850245],\n            [-122.60372768994722, 45.41806322850245],\n            [-122.5954575830267, 45.42809052672104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.58718637454007, 45.47822701781403],\n            [-122.59959429173216, 45.49326796514193],\n            [-122.62440570826783, 45.49326796514193],\n            [-122.63681362545992, 45.47822701781403],\n            [-122.6244079161288, 45.463186070486124],\n            [-122.59959208387119, 45.463186070486124],\n            [-122.58718637454007, 45.47822701781403]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.5954575830267, 45.52836350890701],\n            [-122.60372989781297, 45.53839080712561],\n            [-122.62027010218702, 45.53839080712561],\n            [-122.62854241697329, 45.52836350890701],\n            [-122.62027231391579, 45.51833621068842],\n            [-122.6037276860842, 45.51833621068842],\n            [-122.5954575830267, 45.52836350890701]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.58718637454007, 45.5785],\n            [-122.59959429560547, 45.59354094732789],\n            [-122.62440570439452, 45.59354094732789],\n            [-122.63681362545992, 45.5785],\n            [-122.62440791999825, 45.5634590526721],\n            [-122.59959208000174, 45.5634590526721],\n            [-122.58718637454007, 45.5785]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.5954575830267, 45.62863649109298],\n            [-122.60372990169276, 45.638663789311586],\n            [-122.62027009830723, 45.638663789311586],\n            [-122.62854241697329, 45.62863649109298],\n            [-122.62027231779257, 45.61860919287439],\n            [-122.60372768220736, 45.61860919287439],\n            [-122.5954575830267, 45.62863649109298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.58718637454007, 45.678772982185976],\n            [-122.59959429949265, 45.693813929513865],\n            [-122.62440570050728, 45.693813929513865],\n            [-122.63681362545992, 45.678772982185976],\n            [-122.6244079238815, 45.66373203485807],\n            [-122.59959207611848, 45.66373203485807],\n            [-122.58718637454007, 45.678772982185976]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.5954575830267, 45.728909473278954],\n            [-122.60372990558653, 45.73893677149755],\n            [-122.62027009441351, 45.73893677149755],\n            [-122.62854241697329, 45.728909473278954],\n            [-122.62027232168327, 45.71888217506035],\n            [-122.60372767831666, 45.71888217506035],\n            [-122.5954575830267, 45.728909473278954]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.52515231089023, 45.45315877226753],\n            [-122.5375602271161, 45.46819971959543],\n            [-122.56237164558422, 45.46819971959543],\n            [-122.57477956181009, 45.45315877226753],\n            [-122.56237385151371, 45.43811782493964],\n            [-122.53755802118656, 45.43811782493964],\n            [-122.52515231089023, 45.45315877226753]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.53342351937687, 45.50329526336053],\n            [-122.54169583319538, 45.513322561579116],\n            [-122.55823603950495, 45.513322561579116],\n            [-122.56650835332346, 45.50329526336053],\n            [-122.55823824929894, 45.49326796514193],\n            [-122.54169362340139, 45.49326796514193],\n            [-122.53342351937687, 45.50329526336053]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.52515231089023, 45.553431754453506],\n            [-122.537560230986, 45.5684727017814],\n            [-122.56237164171432, 45.5684727017814],\n            [-122.57477956181009, 45.553431754453506],\n            [-122.56237385537975, 45.53839080712561],\n            [-122.53755801732058, 45.53839080712561],\n            [-122.52515231089023, 45.553431754453506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.53342351937687, 45.60356824554649],\n            [-122.54169583707164, 45.613595543765086],\n            [-122.55823603562862, 45.613595543765086],\n            [-122.56650835332346, 45.60356824554649],\n            [-122.55823825317225, 45.59354094732789],\n            [-122.54169361952802, 45.59354094732789],\n            [-122.53342351937687, 45.60356824554649]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.52515231089023, 45.653704736639476],\n            [-122.53756023486972, 45.66874568396738],\n            [-122.56237163783055, 45.66874568396738],\n            [-122.57477956181009, 45.653704736639476],\n            [-122.56237385925954, 45.638663789311586],\n            [-122.53755801344073, 45.638663789311586],\n            [-122.52515231089023, 45.653704736639476]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.53342351937687, 45.70384122773246],\n            [-122.54169584096195, 45.71386852595106],\n            [-122.55823603173837, 45.71386852595106],\n            [-122.56650835332346, 45.70384122773246],\n            [-122.55823825705949, 45.693813929513865],\n            [-122.54169361564084, 45.693813929513865],\n            [-122.53342351937687, 45.70384122773246]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.46311824724035, 45.42809052672104],\n            [-122.4755261625009, 45.44313147404894],\n            [-122.50033758289965, 45.44313147404894],\n            [-122.51274549816026, 45.42809052672104],\n            [-122.50033978689953, 45.413049579393146],\n            [-122.47552395850101, 45.413049579393146],\n            [-122.46311824724035, 45.42809052672104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.47138945572698, 45.47822701781403],\n            [-122.47966176857852, 45.48825431603263],\n            [-122.49620197682202, 45.48825431603263],\n            [-122.50447428967357, 45.47822701781403],\n            [-122.49620418468288, 45.46819971959543],\n            [-122.47965956071772, 45.46819971959543],\n            [-122.47138945572698, 45.47822701781403]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.46311824724035, 45.52836350890701],\n            [-122.47552616636739, 45.54340445623491],\n            [-122.50033757903321, 45.54340445623491],\n            [-122.51274549816026, 45.52836350890701],\n            [-122.5003397907621, 45.513322561579116],\n            [-122.47552395463845, 45.513322561579116],\n            [-122.46311824724035, 45.52836350890701]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.47138945572698, 45.5785],\n            [-122.47966177245144, 45.588527298218594],\n            [-122.49620197294911, 45.588527298218594],\n            [-122.50447428967357, 45.5785],\n            [-122.49620418855278, 45.5684727017814],\n            [-122.47965955684782, 45.5684727017814],\n            [-122.47138945572698, 45.5785]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.46311824724035, 45.62863649109298],\n            [-122.47552617024763, 45.64367743842088],\n            [-122.50033757515291, 45.64367743842088],\n            [-122.51274549816026, 45.62863649109298],\n            [-122.50033979463842, 45.613595543765086],\n            [-122.47552395076212, 45.613595543765086],\n            [-122.46311824724035, 45.62863649109298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.47138945572698, 45.678772982185976],\n            [-122.47966177633816, 45.68880028040457],\n            [-122.49620196906238, 45.68880028040457],\n            [-122.50447428967357, 45.678772982185976],\n            [-122.4962041924365, 45.66874568396738],\n            [-122.47965955296411, 45.66874568396738],\n            [-122.47138945572698, 45.678772982185976]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.46311824724035, 45.728909473278954],\n            [-122.4755261741418, 45.74395042060685],\n            [-122.50033757125874, 45.74395042060685],\n            [-122.51274549816026, 45.728909473278954],\n            [-122.50033979852867, 45.71386852595106],\n            [-122.47552394687187, 45.71386852595106],\n            [-122.46311824724035, 45.728909473278954]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.40935539207715, 45.45315877226753],\n            [-122.41762770396258, 45.463186070486124],\n            [-122.43416791413824, 45.463186070486124],\n            [-122.44244022602373, 45.45315877226753],\n            [-122.43417012006768, 45.44313147404894],\n            [-122.4176254980332, 45.44313147404894],\n            [-122.40935539207715, 45.45315877226753]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.40108418359046, 45.50329526336053],\n            [-122.41349210174963, 45.51833621068842],\n            [-122.43830351635125, 45.51833621068842],\n            [-122.45071143451037, 45.50329526336053],\n            [-122.43830572614536, 45.48825431603263],\n            [-122.41348989195552, 45.48825431603263],\n            [-122.40108418359046, 45.50329526336053]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.40935539207715, 45.553431754453506],\n            [-122.41762770783203, 45.5634590526721],\n            [-122.4341679102688, 45.5634590526721],\n            [-122.44244022602373, 45.553431754453506],\n            [-122.43417012393411, 45.54340445623491],\n            [-122.41762549416671, 45.54340445623491],\n            [-122.40935539207715, 45.553431754453506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.40108418359046, 45.60356824554649],\n            [-122.4134921056264, 45.61860919287439],\n            [-122.43830351247448, 45.61860919287439],\n            [-122.45071143451037, 45.60356824554649],\n            [-122.43830573001821, 45.588527298218594],\n            [-122.41348988808267, 45.588527298218594],\n            [-122.40108418359046, 45.60356824554649]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.40935539207715, 45.653704736639476],\n            [-122.41762771171534, 45.66373203485807],\n            [-122.43416790638548, 45.66373203485807],\n            [-122.44244022602373, 45.653704736639476],\n            [-122.43417012781441, 45.64367743842088],\n            [-122.41762549028647, 45.64367743842088],\n            [-122.40935539207715, 45.653704736639476]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.40108418359046, 45.70384122773246],\n            [-122.41349210951711, 45.71888217506035],\n            [-122.43830350858377, 45.71888217506035],\n            [-122.45071143451037, 45.70384122773246],\n            [-122.43830573390494, 45.68880028040457],\n            [-122.41348988419588, 45.68880028040457],\n            [-122.40108418359046, 45.70384122773246]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.34732132842726, 45.42809052672104],\n            [-122.3555936393476, 45.43811782493964],\n            [-122.37213385145355, 45.43811782493964],\n            [-122.3804061623739, 45.42809052672104],\n            [-122.37213605545332, 45.41806322850245],\n            [-122.35559143534783, 45.41806322850245],\n            [-122.34732132842726, 45.42809052672104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.33905011994062, 45.47822701781403],\n            [-122.35145803713272, 45.49326796514193],\n            [-122.37626945366844, 45.49326796514193],\n            [-122.38867737086053, 45.47822701781403],\n            [-122.37627166152936, 45.463186070486124],\n            [-122.3514558292718, 45.463186070486124],\n            [-122.33905011994062, 45.47822701781403]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.34732132842726, 45.52836350890701],\n            [-122.35559364321352, 45.53839080712561],\n            [-122.37213384758763, 45.53839080712561],\n            [-122.3804061623739, 45.52836350890701],\n            [-122.3721360593164, 45.51833621068842],\n            [-122.35559143148475, 45.51833621068842],\n            [-122.34732132842726, 45.52836350890701]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.33905011994062, 45.5785],\n            [-122.35145804100608, 45.59354094732789],\n            [-122.37626944979507, 45.59354094732789],\n            [-122.38867737086053, 45.5785],\n            [-122.3762716653988, 45.5634590526721],\n            [-122.35145582540235, 45.5634590526721],\n            [-122.33905011994062, 45.5785]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.34732132842726, 45.62863649109298],\n            [-122.35559364709337, 45.638663789311586],\n            [-122.37213384370779, 45.638663789311586],\n            [-122.3804061623739, 45.62863649109298],\n            [-122.37213606319318, 45.61860919287439],\n            [-122.35559142760798, 45.61860919287439],\n            [-122.34732132842726, 45.62863649109298]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.33905011994062, 45.678772982185976],\n            [-122.35145804489332, 45.693813929513865],\n            [-122.37626944590784, 45.693813929513865],\n            [-122.38867737086053, 45.678772982185976],\n            [-122.37627166928212, 45.66373203485807],\n            [-122.35145582151904, 45.66373203485807],\n            [-122.33905011994062, 45.678772982185976]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.34732132842726, 45.728909473278954],\n            [-122.35559365098709, 45.73893677149755],\n            [-122.37213383981407, 45.73893677149755],\n            [-122.3804061623739, 45.728909473278954],\n            [-122.37213606708389, 45.71888217506035],\n            [-122.35559142371727, 45.71888217506035],\n            [-122.34732132842726, 45.728909473278954]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-122.93, 45.385, -122.294, 45.772],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-122.93, 45.385],\n            [-122.294, 45.385],\n            [-122.294, 45.772],\n            [-122.93, 45.772],\n            [-122.93, 45.385]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/line.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 1.5,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [11.222188, 44.472567],\n          [11.235574, 44.478813],\n          [11.241747, 44.505261],\n          [11.263371, 44.530966],\n          [11.292726, 44.533536],\n          [11.322082, 44.545284],\n          [11.354014, 44.541246],\n          [11.393669, 44.52399],\n          [11.404996, 44.510035],\n          [11.405509, 44.501221],\n          [11.421984, 44.483589],\n          [11.443609, 44.474037]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 1.5\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [11.259269714355469, 44.48450449695473],\n          [11.268196105957031, 44.48866833139464],\n          [11.272315979003906, 44.5063000997406],\n          [11.286735534667969, 44.52343698529045],\n          [11.306304931640625, 44.52515039667307],\n          [11.325874328613281, 44.53298249265435],\n          [11.347160339355469, 44.5302903284497],\n          [11.37359619140625, 44.51878604321948],\n          [11.381149291992186, 44.50948304524639],\n          [11.381492614746094, 44.503606702401854],\n          [11.392478942871094, 44.49185223953622],\n          [11.406898498535156, 44.48548424944496]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [11.333456039428711, 44.50837878425054]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/multiLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 1.8,\n        \"origin\": \"topleft\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-99.2, 18.996],\n            [-99.020026, 19.122],\n            [-98.840113, 18.996]\n          ],\n          [\n            [-99.2, 19.104],\n            [-99.02, 19.23],\n            [-98.840061, 19.104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 1.8,\n        \"origin\": \"topleft\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-99.2, 19.1],\n            [-99.1, 19.17],\n            [-99, 19.1]\n          ],\n          [\n            [-99.2, 19.16],\n            [-99.1, 19.23],\n            [-99, 19.16]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-99.2, 19.23]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/multiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 1.3,\n        \"origin\": \"center\",\n        \"marker-color\": \"#F00\",\n        \"marker-symbol\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [99.784002, -0.141],\n          [101.084008, 1.159],\n          [101.279019, -1.259],\n          [99.523892, 2.199],\n          [99.432989, 0.834],\n          [100.824006, 1.757],\n          [99.900979, 1.263],\n          [102.007001, 0.522],\n          [101.473998, 0.223]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 1.3,\n        \"origin\": \"center\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [100, 0],\n          [101, 1],\n          [101.15, -0.86],\n          [99.8, 1.8],\n          [99.73, 0.75],\n          [100.8, 1.46],\n          [100.09, 1.08],\n          [101.71, 0.51],\n          [101.3, 0.28]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [100.72, 0.47000000000000003]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/multiPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 0.8,\n        \"origin\": \"center\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-80.630546, -33.743341],\n              [-80.62202, -33.752703],\n              [-80.624891, -33.76332],\n              [-80.596159, -33.791623],\n              [-80.5816, -33.794932],\n              [-80.569114, -33.786374],\n              [-80.565716, -33.754872],\n              [-80.580311, -33.720729],\n              [-80.605578, -33.721414],\n              [-80.630546, -33.743341]\n            ]\n          ],\n          [\n            [\n              [-79.06302, -33.626775],\n              [-79.069619, -33.632722],\n              [-79.06414, -33.646445],\n              [-79.075414, -33.658336],\n              [-79.083656, -33.659936],\n              [-79.087225, -33.65765],\n              [-79.09272, -33.659022],\n              [-79.097944, -33.663823],\n              [-79.099045, -33.66611],\n              [-79.104815, -33.668167],\n              [-79.112789, -33.676397],\n              [-79.109221, -33.678911],\n              [-79.111695, -33.681654],\n              [-79.114166, -33.680511],\n              [-79.119663, -33.683711],\n              [-79.113625, -33.688054],\n              [-79.108956, -33.688739],\n              [-79.11115, -33.685083],\n              [-79.111422, -33.682797],\n              [-79.107024, -33.679368],\n              [-79.099882, -33.67914],\n              [-79.09768, -33.674339],\n              [-79.099874, -33.671596],\n              [-79.092453, -33.666795],\n              [-79.086691, -33.672511],\n              [-79.084217, -33.670453],\n              [-79.085038, -33.667938],\n              [-79.08009, -33.664281],\n              [-79.074328, -33.670225],\n              [-79.068282, -33.667024],\n              [-79.060032, -33.658107],\n              [-79.053165, -33.658336],\n              [-79.049338, -33.674568],\n              [-79.022965, -33.67091],\n              [-78.987824, -33.685768],\n              [-78.976005, -33.678683],\n              [-78.982314, -33.671825],\n              [-78.983956, -33.666567],\n              [-78.993007, -33.655363],\n              [-79.01141, -33.654677],\n              [-79.014435, -33.65765],\n              [-79.025144, -33.654906],\n              [-79.024861, -33.64736],\n              [-79.039133, -33.637068],\n              [-79.039678, -33.632951],\n              [-79.050935, -33.627919],\n              [-79.06302, -33.626775]\n            ]\n          ],\n          [\n            [\n              [-79.121944, -33.698395],\n              [-79.1249, -33.702222],\n              [-79.122361, -33.703479],\n              [-79.121192, -33.702394],\n              [-79.119545, -33.703136],\n              [-79.120439, -33.704622],\n              [-79.121263, -33.70445],\n              [-79.122088, -33.705821],\n              [-79.119138, -33.708449],\n              [-79.120238, -33.709648],\n              [-79.115092, -33.71319],\n              [-79.112002, -33.713075],\n              [-79.110835, -33.713818],\n              [-79.111661, -33.715246],\n              [-79.109943, -33.714161],\n              [-79.110148, -33.712961],\n              [-79.108501, -33.714104],\n              [-79.10795, -33.713018],\n              [-79.105273, -33.713018],\n              [-79.100467, -33.714332],\n              [-79.099712, -33.713989],\n              [-79.100535, -33.71319],\n              [-79.10232, -33.712561],\n              [-79.104654, -33.712447],\n              [-79.104653, -33.711533],\n              [-79.105613, -33.709934],\n              [-79.10781, -33.710162],\n              [-79.109663, -33.708506],\n              [-79.110967, -33.708792],\n              [-79.112065, -33.707306],\n              [-79.113575, -33.707135],\n              [-79.112819, -33.706221],\n              [-79.113779, -33.705536],\n              [-79.112954, -33.704279],\n              [-79.114324, -33.700509],\n              [-79.115216, -33.700109],\n              [-79.117209, -33.701651],\n              [-79.120092, -33.700566],\n              [-79.120503, -33.699366],\n              [-79.120021, -33.698909],\n              [-79.120776, -33.698281],\n              [-79.121395, -33.698795],\n              [-79.121944, -33.698395]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 0.8,\n        \"origin\": \"center\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-80.83740234375, -33.75146241858857],\n              [-80.8267593383789, -33.76316538009658],\n              [-80.83036422729492, -33.77643631739436],\n              [-80.79448699951172, -33.81181543283183],\n              [-80.77629089355469, -33.8159515518711],\n              [-80.76066970825195, -33.805254282102595],\n              [-80.75637817382812, -33.76587681391894],\n              [-80.77457427978516, -33.723197462817026],\n              [-80.80615997314453, -33.724054113439884],\n              [-80.83740234375, -33.75146241858857]\n            ]\n          ],\n          [\n            [\n              [-78.87805938720703, -33.60575555447342],\n              [-78.88629913330078, -33.61318971884082],\n              [-78.87943267822264, -33.63034303571294],\n              [-78.89350891113281, -33.64520648119226],\n              [-78.90380859375, -33.64720713369291],\n              [-78.90827178955078, -33.64434904445886],\n              [-78.9151382446289, -33.64606390938584],\n              [-78.92166137695312, -33.65206566761678],\n              [-78.92303466796875, -33.65492350063952],\n              [-78.93024444580078, -33.65749546922024],\n              [-78.94020080566406, -33.66778257479216],\n              [-78.93573760986328, -33.67092561169521],\n              [-78.93882751464844, -33.674354248232504],\n              [-78.94191741943358, -33.67292566628718],\n              [-78.94878387451172, -33.67692563592954],\n              [-78.94123077392578, -33.682353868548184],\n              [-78.93539428710938, -33.68321092658006],\n              [-78.93814086914062, -33.678639851675534],\n              [-78.93848419189453, -33.675782806445994],\n              [-78.93299102783203, -33.671497060610534],\n              [-78.92406463623047, -33.671211336627486],\n              [-78.92131805419922, -33.6652109137176],\n              [-78.92406463623047, -33.66178191269289],\n              [-78.914794921875, -33.65578083204094],\n              [-78.90758514404297, -33.662924928220384],\n              [-78.90449523925781, -33.660353121928814],\n              [-78.90552520751953, -33.657209698729595],\n              [-78.89934539794922, -33.652637241813174],\n              [-78.89213562011719, -33.66006736092875],\n              [-78.88458251953125, -33.65606660727672],\n              [-78.87428283691406, -33.644920669896656],\n              [-78.8656997680664, -33.64520648119226],\n              [-78.86089324951172, -33.66549665763364],\n              [-78.82793426513672, -33.66092464108171],\n              [-78.78398895263672, -33.6794969467326],\n              [-78.76922607421875, -33.670639885813706],\n              [-78.7771224975586, -33.662067667998414],\n              [-78.77918243408203, -33.655495055856136],\n              [-78.79051208496094, -33.641490860339054],\n              [-78.81351470947266, -33.64063338660099],\n              [-78.81729125976561, -33.64434904445886],\n              [-78.83068084716797, -33.640919212129155],\n              [-78.83033752441406, -33.63148646875166],\n              [-78.84819030761717, -33.618621971969276],\n              [-78.848876953125, -33.61347563543629],\n              [-78.86295318603516, -33.6071852512562],\n              [-78.87805938720703, -33.60575555447342]\n            ]\n          ],\n          [\n            [\n              [-78.95161628723145, -33.69528025294664],\n              [-78.95530700683594, -33.70006466462807],\n              [-78.9521312713623, -33.70163560737423],\n              [-78.9506721496582, -33.700278885784996],\n              [-78.94861221313477, -33.701207171292374],\n              [-78.94972801208496, -33.70306371221516],\n              [-78.95075798034668, -33.70284949800254],\n              [-78.95178794860838, -33.7045631967461],\n              [-78.9480972290039, -33.70784769044128],\n              [-78.94947052001952, -33.70934709145684],\n              [-78.94303321838379, -33.71377374172037],\n              [-78.93917083740234, -33.71363095011231],\n              [-78.93771171569824, -33.71455909132016],\n              [-78.93874168395996, -33.7163439500602],\n              [-78.93659591674805, -33.714987460801574],\n              [-78.93685340881348, -33.7134881582668],\n              [-78.93479347229004, -33.714916066036416],\n              [-78.93410682678223, -33.71355955421924],\n              [-78.93075942993164, -33.71355955421924],\n              [-78.92475128173828, -33.715201644740844],\n              [-78.92380714416502, -33.714773276327996],\n              [-78.92483711242676, -33.71377374172037],\n              [-78.92706871032715, -33.712988384937574],\n              [-78.92998695373535, -33.712845592023534],\n              [-78.92998695373535, -33.71170324016297],\n              [-78.93118858337402, -33.70970408784028],\n              [-78.93393516540527, -33.70998968387856],\n              [-78.93625259399414, -33.70791909108323],\n              [-78.9378833770752, -33.708276093402596],\n              [-78.93925666809082, -33.7064196651371],\n              [-78.9411449432373, -33.706205459293635],\n              [-78.94020080566406, -33.70506301910626],\n              [-78.94140243530273, -33.704206178993886],\n              [-78.94037246704102, -33.70263528325574],\n              [-78.94208908081055, -33.69792242367998],\n              [-78.94320487976074, -33.69742255977288],\n              [-78.94569396972656, -33.699350590247136],\n              [-78.94929885864258, -33.69799383257217],\n              [-78.94981384277342, -33.69649423337286],\n              [-78.9492130279541, -33.695922950602935],\n              [-78.95015716552734, -33.69513743059241],\n              [-78.95092964172363, -33.69578012931697],\n              [-78.95161628723145, -33.69528025294664]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-79.80331420898438, -33.71085355317226]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/no-scale.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 1,\n        \"origin\": \"ne\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128.84, -25.76],\n            [128.18, -25.6],\n            [127.96, -25.52],\n            [127.88, -25.52],\n            [127.7, -25.6],\n            [127.26, -25.79],\n            [126.6, -26.11],\n            [126.16, -26.78],\n            [126.12, -27.68],\n            [126.21, -28.42],\n            [126.69, -29.49],\n            [127.74, -29.8],\n            [128.8, -29.72],\n            [129.41, -29.03],\n            [129.72, -27.95],\n            [129.68, -27.21],\n            [129.33, -26.23],\n            [128.84, -25.76]\n          ],\n          [\n            [128.45, -27.44],\n            [128.32, -26.94],\n            [127.7, -26.82],\n            [127.35, -27.05],\n            [127.17, -27.8],\n            [127.57, -28.22],\n            [128.1, -28.42],\n            [128.49, -27.8],\n            [128.45, -27.44]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 1,\n        \"origin\": \"ne\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128.84, -25.76],\n            [128.18, -25.6],\n            [127.96, -25.52],\n            [127.88, -25.52],\n            [127.7, -25.6],\n            [127.26, -25.79],\n            [126.6, -26.11],\n            [126.16, -26.78],\n            [126.12, -27.68],\n            [126.21, -28.42],\n            [126.69, -29.49],\n            [127.74, -29.8],\n            [128.8, -29.72],\n            [129.41, -29.03],\n            [129.72, -27.95],\n            [129.68, -27.21],\n            [129.33, -26.23],\n            [128.84, -25.76]\n          ],\n          [\n            [128.45, -27.44],\n            [128.32, -26.94],\n            [127.7, -26.82],\n            [127.35, -27.05],\n            [127.17, -27.8],\n            [127.57, -28.22],\n            [128.1, -28.42],\n            [128.49, -27.8],\n            [128.45, -27.44]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [129.72, -25.52]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/origin-inside-bbox.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 1.8,\n        \"origin\": [-127.59384155273438, 50.198001033269506],\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-127.715283, 50.753191],\n            [-127.249786, 50.482356],\n            [-127.359078, 50.134683],\n            [-126.598534, 50.007907],\n            [-126.140457, 50.545417],\n            [-126.782992, 50.860028],\n            [-127.715283, 50.753191]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 1.8,\n        \"origin\": [-127.59384155273438, 50.198001033269506]\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-127.66113281249999, 50.5064398321055],\n            [-127.4029541015625, 50.35597574998605],\n            [-127.46337890625001, 50.162824333817284],\n            [-127.04040527343749, 50.0923932109388],\n            [-126.78771972656249, 50.391010070956696],\n            [-127.144775390625, 50.56579378237965],\n            [-127.66113281249999, 50.5064398321055]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-127.59384155273438, 50.198001033269506]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/origin-inside-feature.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 1.8,\n        \"origin\": [-127.35351562499999, 50.2682767372753],\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-127.908345, 50.69697],\n            [-127.442571, 50.426135],\n            [-127.551095, 50.078462],\n            [-126.790743, 49.951686],\n            [-126.334028, 50.489197],\n            [-126.976832, 50.803807],\n            [-127.908345, 50.69697]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 1.8,\n        \"origin\": [-127.35351562499999, 50.2682767372753]\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-127.66113281249999, 50.5064398321055],\n            [-127.4029541015625, 50.35597574998605],\n            [-127.46337890625001, 50.162824333817284],\n            [-127.04040527343749, 50.0923932109388],\n            [-126.78771972656249, 50.391010070956696],\n            [-127.144775390625, 50.56579378237965],\n            [-127.66113281249999, 50.5064398321055]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-127.35351562499999, 50.2682767372753]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/origin-outside-bbox.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 1.8,\n        \"origin\": [-128.12530517578125, 50.27178780378988],\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-127.288131, 50.694161],\n            [-126.82415, 50.423326],\n            [-126.934924, 50.075654],\n            [-126.175406, 49.948878],\n            [-125.715228, 50.486388],\n            [-126.355938, 50.800999],\n            [-127.288131, 50.694161]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 1.8,\n        \"origin\": [-128.12530517578125, 50.27178780378988]\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-127.66113281249999, 50.5064398321055],\n            [-127.4029541015625, 50.35597574998605],\n            [-127.46337890625001, 50.162824333817284],\n            [-127.04040527343749, 50.0923932109388],\n            [-126.78771972656249, 50.391010070956696],\n            [-127.144775390625, 50.56579378237965],\n            [-127.66113281249999, 50.5064398321055]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-128.12530517578125, 50.27178780378988]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 5,\n        \"origin\": \"southwest\",\n        \"marker-color\": \"#F00\",\n        \"marker-symbol\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.699264, 45.43145]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 5,\n        \"origin\": \"southwest\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.69926351308823, 45.43145021122502]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.69926351308823, 45.43145021122502]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/poly-double.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 2,\n        \"origin\": \"bottomleft\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [4, 0],\n            [4.000609, 2],\n            [0, 2],\n            [0, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 2,\n        \"origin\": \"bottomleft\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [2, 0],\n            [2, 1],\n            [0, 1],\n            [0, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/poly-half.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 0.5,\n        \"origin\": \"bottomleft\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [1, 0],\n            [0.999962, 0.5],\n            [0, 0.5],\n            [0, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 0.5,\n        \"origin\": \"bottomleft\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [2, 0],\n            [2, 1],\n            [0, 1],\n            [0, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [0, 0]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/polygon-fiji.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-178.837931, -16.825884],\n              [-178.893337, -16.594384],\n              [-179.025403, -16.457524],\n              [-179.563423, -16.583858],\n              [-179.914534, -17.172869],\n              [-179.848385, -17.414518],\n              [-179.441628, -17.319978],\n              [-178.837931, -16.825884]\n            ]\n          ],\n          [\n            [\n              [-179.706468, -16.320614],\n              [-179.158732, -15.487589],\n              [-179.762152, -15.371458],\n              [-180.990633, -15.45592],\n              [-182.836137, -16.352213],\n              [-182.904034, -16.973128],\n              [-182.575668, -17.435523],\n              [-182.014812, -17.435523],\n              [-181.475635, -17.214906],\n              [-180.760995, -17.130827],\n              [-179.958593, -17.036216],\n              [-179.706468, -16.320614]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-179.6319580078125, -16.762467717941593],\n              [-179.659423828125, -16.64671805097192],\n              [-179.725341796875, -16.578287608637478],\n              [-179.99450683593747, -16.641455036937753],\n              [-180.1702880859375, -16.935960102864705],\n              [-180.1373291015625, -17.056784609942543],\n              [-179.93408203125, -17.00951473208515],\n              [-179.6319580078125, -16.762467717941593]\n            ]\n          ],\n          [\n            [\n              [-180.06591796875, -16.509832826905836],\n              [-179.79125976562497, -16.093320185359257],\n              [-180.0933837890625, -16.0352548623504],\n              [-180.7086181640625, -16.0774858690887],\n              [-181.63146972656247, -16.525632239869275],\n              [-181.6644287109375, -16.836089974560213],\n              [-181.4996337890625, -17.06728740376787],\n              [-181.219482421875, -17.06728740376787],\n              [-180.9503173828125, -16.956978651248072],\n              [-180.59326171875, -16.914939206301646],\n              [-180.1922607421875, -16.867633616803836],\n              [-180.06591796875, -16.509832826905836]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-180.42572021484375, -16.69905167218912]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/polygon-resolute-bay.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 2.5,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.789976, 76.321052],\n            [-97.95473, 75.867761],\n            [-99.066725, 75.19844],\n            [-99.396055, 74.887663],\n            [-97.101854, 74.308888],\n            [-95.09917, 73.961793],\n            [-93.650646, 73.852692],\n            [-91.633938, 73.954529],\n            [-91.468654, 74.466945],\n            [-91.632949, 74.894755],\n            [-91.701695, 75.562468],\n            [-93.207694, 76.101968],\n            [-93.932121, 76.321052],\n            [-94.88936, 76.389249],\n            [-95.789976, 76.321052]\n          ],\n          [\n            [-95.611777, 75.798595],\n            [-96.998061, 75.37039],\n            [-96.8515, 74.823783],\n            [-94.451781, 74.398772],\n            [-92.921949, 74.391589],\n            [-92.86369, 75.244135],\n            [-94.290262, 75.722364],\n            [-95.611777, 75.798595]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 2.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.174560546875, 75.60953172351893],\n            [-96.03149414062499, 75.4282153667069],\n            [-96.492919921875, 75.16048677152294],\n            [-96.6357421875, 75.03617629075062],\n            [-95.723876953125, 74.80466599405533],\n            [-94.910888671875, 74.66582807452669],\n            [-94.317626953125, 74.62218784846145],\n            [-93.49365234375, 74.66292249033842],\n            [-93.438720703125, 74.86788912917916],\n            [-93.515625, 75.03901279805076],\n            [-93.55957031249999, 75.3060980061604],\n            [-94.163818359375, 75.52189820596192],\n            [-94.449462890625, 75.60953172351893],\n            [-94.82299804687499, 75.63681056594325],\n            [-95.174560546875, 75.60953172351893]\n          ],\n          [\n            [-95.108642578125, 75.40054889588245],\n            [-95.6634521484375, 75.22926698530169],\n            [-95.614013671875, 75.01062406678055],\n            [-94.647216796875, 74.84061980605131],\n            [-94.0264892578125, 74.83774656082585],\n            [-94.0155029296875, 75.17876503868581],\n            [-94.5867919921875, 75.3700564253908],\n            [-95.108642578125, 75.40054889588245]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-94.78062220982143, 75.13518489369591]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/polygon-with-hole.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 5,\n        \"origin\": \"sw\",\n        \"name\": \"Bled Lake\",\n        \"area\": \"1.45\",\n        \"area-unit\": \"km2\",\n        \"volume\": \"0.0257\",\n        \"volume-unit\": \"km3\",\n        \"picture\": \"https://en.wikipedia.org/wiki/Lake_Bled#/media/File:Lake_Bled_from_the_Mountain.jpg\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [14.106841, 46.407611],\n            [14.100186, 46.401985],\n            [14.102546, 46.399024],\n            [14.090955, 46.385105],\n            [14.081941, 46.380366],\n            [14.086233, 46.374591],\n            [14.096105, 46.37622],\n            [14.095889, 46.367632],\n            [14.10018, 46.36156],\n            [14.121423, 46.358302],\n            [14.126788, 46.359635],\n            [14.131081, 46.363633],\n            [14.138592, 46.366595],\n            [14.163055, 46.365706],\n            [14.168636, 46.367928],\n            [14.16671, 46.377553],\n            [14.20385, 46.391768],\n            [14.215242, 46.408796],\n            [14.203656, 46.414718],\n            [14.188843, 46.413682],\n            [14.172097, 46.409536],\n            [14.159002, 46.407611],\n            [14.1502, 46.406871],\n            [14.144403, 46.403466],\n            [14.135388, 46.403021],\n            [14.106841, 46.407611]\n          ],\n          [\n            [14.121376, 46.382217],\n            [14.119658, 46.379848],\n            [14.11998, 46.376924],\n            [14.121803, 46.374665],\n            [14.122822, 46.374517],\n            [14.123359, 46.374814],\n            [14.123681, 46.375406],\n            [14.124755, 46.376961],\n            [14.125184, 46.378738],\n            [14.124916, 46.379811],\n            [14.121913, 46.382106],\n            [14.121376, 46.382217]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 5,\n        \"origin\": \"sw\",\n        \"name\": \"Bled Lake\",\n        \"area\": \"1.45\",\n        \"area-unit\": \"km2\",\n        \"volume\": \"0.0257\",\n        \"volume-unit\": \"km3\",\n        \"picture\": \"https://en.wikipedia.org/wiki/Lake_Bled#/media/File:Lake_Bled_from_the_Mountain.jpg\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [14.086918830871582, 46.368163916782294],\n            [14.085588455200194, 46.3670386292829],\n            [14.086060523986816, 46.36644636339309],\n            [14.08374309539795, 46.36366262769442],\n            [14.081940650939941, 46.362714940623896],\n            [14.082798957824707, 46.36155992478001],\n            [14.084773063659668, 46.36188570095187],\n            [14.08473014831543, 46.36016795016414],\n            [14.085588455200194, 46.35895364547403],\n            [14.089837074279785, 46.3583020562222],\n            [14.090909957885742, 46.35856861640076],\n            [14.091768264770508, 46.35936828913414],\n            [14.093270301818846, 46.35996063176163],\n            [14.09816265106201, 46.35978292964766],\n            [14.099278450012207, 46.36022718384896],\n            [14.098892211914062, 46.36215224364764],\n            [14.106316566467285, 46.36499528482401],\n            [14.108591079711914, 46.36840081645984],\n            [14.106273651123047, 46.36958529943602],\n            [14.103312492370605, 46.36937801676938],\n            [14.09996509552002, 46.36854887823657],\n            [14.097347259521484, 46.368163916782294],\n            [14.095587730407715, 46.36801585396206],\n            [14.094429016113281, 46.36733475981976],\n            [14.092626571655273, 46.36724592082726],\n            [14.086918830871582, 46.368163916782294]\n          ],\n          [\n            [14.089826345443726, 46.36308513284238],\n            [14.08948302268982, 46.362611286353214],\n            [14.089547395706177, 46.362026376425554],\n            [14.089912176132202, 46.36157473282996],\n            [14.090116024017334, 46.36154511672605],\n            [14.09022331237793, 46.36160434891784],\n            [14.090287685394287, 46.36172281310876],\n            [14.090502262115479, 46.36203378038783],\n            [14.090588092803955, 46.36238916939662],\n            [14.090534448623657, 46.36260388246917],\n            [14.089933633804321, 46.36306292138001],\n            [14.089826345443726, 46.36308513284238]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [14.081940650939941, 46.3583020562222]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 0.1,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1.799105, 29.9],\n            [2.150671, 29.9],\n            [2.049534, 30.2],\n            [1.799105, 29.9]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 0.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 29],\n            [3.5, 29],\n            [2.5, 32],\n            [0, 29]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [2, 30]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test/out/z-scaling.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 2.3,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [115.36303, -23.89655, 23],\n            [124.629212, -32.18332, 25.3],\n            [134.23767, -27.752333, 27.6],\n            [133.195438, -19.709263, 29.9],\n            [123.388452, -15.846522, 32.2],\n            [115.36303, -23.89655, 23]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"factor\": 2.3\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121.46484375, -23.88583769986199, 10],\n            [125.5078125, -27.488781168937983, 11],\n            [129.638671875, -25.562265014427492, 12],\n            [129.2431640625, -22.06527806776582, 13],\n            [124.93652343749999, -20.385825381874263, 14],\n            [121.46484375, -23.88583769986199, 10]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#00F\",\n        \"marker-symbol\": \"circle\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [126.158203125, -23.87759746657351]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/test.ts",
    "content": "import { BBox, Feature, FeatureCollection } from \"geojson\";\nimport fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { center } from \"@turf/center\";\nimport { hexGrid } from \"@turf/hex-grid\";\nimport { truncate } from \"@turf/truncate\";\nimport { bbox as turfBBox } from \"@turf/bbox\";\nimport { bboxPolygon } from \"@turf/bbox-polygon\";\nimport { centroid } from \"@turf/centroid\";\nimport { featureEach } from \"@turf/meta\";\nimport { getCoord } from \"@turf/invariant\";\nimport {\n  point,\n  lineString,\n  geometryCollection,\n  featureCollection,\n  Coord,\n  Corners,\n} from \"@turf/helpers\";\nimport { transformScale as scale } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename) as\n      | FeatureCollection\n      | Feature,\n  };\n});\n\ntest(\"scale\", (t) => {\n  for (const { filename, name, geojson } of fixtures) {\n    let factor: number = 2,\n      origin: Coord | Corners = \"centroid\",\n      mutate = false;\n    if (geojson.type === \"Feature\") {\n      // Override any test options specified in the feature's properties.\n      factor = geojson.properties?.factor ?? factor;\n      origin = geojson.properties?.origin ?? origin;\n      mutate = geojson.properties?.mutate ?? mutate;\n    }\n\n    const scaled = scale(geojson, factor, {\n      origin: origin,\n      mutate: mutate,\n    });\n    const result = featureCollection([]);\n    featureEach(\n      colorize(truncate(scaled, { precision: 6, coordinates: 3 })),\n      (feature) => result.features.push(feature)\n    );\n    featureEach(geojson, (feature) => result.features.push(feature));\n    featureEach(geojson, (feature) =>\n      result.features.push(markedOrigin(feature, origin))\n    );\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, result);\n    t.deepEqual(result, loadJsonFileSync(directories.out + filename), name);\n  }\n\n  t.end();\n});\n\ntest(\"scale -- throws\", (t) => {\n  const line = lineString([\n    [10, 10],\n    [12, 15],\n  ]);\n\n  // @ts-expect-error testing JS runtime for mis-typed option\n  t.throws(() => scale(null, 1.5), /geojson required/);\n  // @ts-expect-error testing JS runtime for mis-typed option\n  t.throws(() => scale(line, null), /invalid factor/);\n  t.throws(() => scale(line, 0), /invalid factor/);\n  // @ts-expect-error testing JS runtime for mis-typed option\n  t.throws(() => scale(line, 1.5, { origin: \"foobar\" }), /invalid origin/);\n  // @ts-expect-error testing JS runtime for mis-typed option\n  t.throws(() => scale(line, 1.5, { origin: 2 }), /invalid origin/);\n\n  t.end();\n});\n\ntest(\"scale -- additional params\", (t) => {\n  const line = lineString([\n    [10, 10],\n    [12, 15],\n  ]);\n  const bbox: BBox = [-180, -90, 180, 90];\n\n  t.assert(scale(line, 1.5, { origin: \"sw\" }));\n  t.assert(scale(line, 1.5, { origin: \"se\" }));\n  t.assert(scale(line, 1.5, { origin: \"nw\" }));\n  t.assert(scale(line, 1.5, { origin: \"ne\" }));\n  t.assert(scale(line, 1.5, { origin: \"center\" }));\n  t.assert(scale(line, 1.5, { origin: \"centroid\" }));\n  // @ts-expect-error testing JS runtime for mis-typed option\n  t.assert(scale(line, 1.5, { origin: null }));\n  line.bbox = bbox;\n  t.assert(scale(line, 1.5));\n  t.end();\n});\n\ntest(\"scale -- bbox provided\", (t) => {\n  const line = lineString([\n    [10, 10],\n    [12, 15],\n  ]);\n  line.bbox = [-180, -90, 180, 90];\n\n  t.assert(scale(line, 1.5));\n  t.end();\n});\n\ntest(\"scale -- mutated input\", (t) => {\n  const line = lineString([\n    [10, 10],\n    [12, 15],\n  ]);\n  const lineBefore = JSON.parse(JSON.stringify(line));\n\n  scale(line, 1.5);\n  t.deepEqual(\n    line,\n    lineBefore,\n    \"mutate = undefined - input should NOT be mutated\"\n  );\n  scale(line, 1.5, { origin: \"centroid\", mutate: false });\n  t.deepEqual(line, lineBefore, \"mutate = false - input should NOT be mutated\");\n  // @ts-expect-error testing JS runtime for mis-typed option\n  scale(line, 1.5, { origin: \"centroid\", mutate: \"nonBoolean\" });\n  t.deepEqual(\n    line,\n    lineBefore,\n    \"non-boolean mutate - input should NOT be mutated\"\n  );\n\n  scale(line, 1.5, { origin: \"centroid\", mutate: true });\n  t.deepEqual(\n    truncate(line, { precision: 1 }),\n    lineString([\n      [9.5, 8.8],\n      [12.5, 16.2],\n    ]),\n    \"mutate = true - input should be mutated\"\n  );\n  t.end();\n});\n\ntest(\"scale -- mutated FeatureCollection\", (t) => {\n  const line = featureCollection([\n    lineString([\n      [10, 10],\n      [12, 15],\n    ]),\n    lineString([\n      [15, 15],\n      [22, 35],\n    ]),\n    lineString([\n      [30, 30],\n      [42, 45],\n    ]),\n  ]);\n  const lineBefore = JSON.parse(JSON.stringify(line));\n  scale(line, 1.5);\n  t.deepEqual(\n    line,\n    lineBefore,\n    \"mutate = undefined - input should NOT be mutated\"\n  );\n  scale(line, 1.5, { origin: \"centroid\", mutate: false });\n  t.deepEqual(line, lineBefore, \"mutate = false - input should NOT be mutated\");\n  // @ts-expect-error testing JS runtime for mis-typed option\n  scale(line, 1.5, { origin: \"centroid\", mutate: \"nonBoolean\" });\n  t.deepEqual(\n    line,\n    lineBefore,\n    \"non-boolean mutate - input should NOT be mutated\"\n  );\n  t.end();\n});\n\ntest(\"scale -- Issue #895\", (t) => {\n  const bbox: BBox = [-122.93, 45.385, -122.294, 45.772];\n  const grid = hexGrid(bbox, 2, { units: \"miles\" });\n  featureEach(grid, (feature, index) => {\n    const factor = index % 2 === 0 ? 0.4 : 0.6;\n    scale(feature, factor, { origin: \"centroid\", mutate: true });\n  });\n  // Add styled GeoJSON to the result\n  const poly = bboxPolygon(bbox);\n  poly.properties = {\n    stroke: \"#F00\",\n    \"stroke-width\": 6,\n    \"fill-opacity\": 0,\n  };\n  grid.features.push(poly);\n  const output = directories.out + \"issue-#895.geojson\";\n  if (process.env.REGEN) writeJsonFileSync(output, grid);\n  t.deepEqual(grid, loadJsonFileSync(output));\n  t.end();\n});\n\ntest(\"scale -- geometry support\", (t) => {\n  const pt = point([10, 10]);\n  const line = lineString([\n    [10, 10],\n    [12, 15],\n  ]);\n\n  t.assert(\n    scale(geometryCollection([line.geometry]), 1.5),\n    \"geometryCollection support\"\n  );\n  t.assert(\n    scale(geometryCollection([line.geometry]).geometry, 1.5),\n    \"geometryCollection support\"\n  );\n  t.assert(scale(featureCollection([line]), 1.5), \"featureCollection support\");\n  t.assert(scale(line.geometry, 1.5), \"geometry line support\");\n  t.assert(scale(pt.geometry, 1.5), \"geometry point support\");\n  t.assert(scale(pt, 1.5), \"geometry point support\");\n  t.assert(scale(pt, 1.5, { origin: pt }), \"feature point support\");\n  t.assert(scale(pt, 1.5, { origin: pt.geometry }), \"geometry point support\");\n  t.assert(\n    scale(pt, 1.5, { origin: pt.geometry.coordinates }),\n    \"coordinate point support\"\n  );\n\n  t.end();\n});\n\ntest(\"scale -- factor 0 or less throws error\", (t) => {\n  const pt = point([10, 10]);\n  t.throws(() => {\n    scale(pt, 0);\n  }, \"should throw for zero\");\n\n  t.throws(() => {\n    scale(pt, -1);\n  }, \"should throw for negative\");\n\n  t.end();\n});\n\n// style result\nfunction colorize(geojson: FeatureCollection | Feature) {\n  featureEach(geojson, (feature, index) => {\n    // We are going to add some properties, so make sure properties attribute is\n    // present.\n    feature.properties = feature.properties ?? {};\n    if (\n      feature.geometry.type === \"Point\" ||\n      feature.geometry.type === \"MultiPoint\"\n    ) {\n      feature.properties[\"marker-color\"] = \"#F00\";\n      feature.properties[\"marker-symbol\"] = \"star\";\n    } else {\n      feature.properties[\"stroke\"] = \"#F00\";\n      feature.properties[\"stroke-width\"] = 4;\n    }\n    if (geojson.type === \"Feature\") return feature;\n    geojson.features[index] = feature;\n  });\n  return geojson;\n}\n\n// define origin, as defined in transform-scale, and style it\nfunction markedOrigin(\n  geojson: Feature,\n  origin: Corners | Coord | undefined,\n  properties = { \"marker-color\": \"#00F\", \"marker-symbol\": \"circle\" }\n) {\n  // Input Geometry|Feature<Point>|Array<number>\n  if (Array.isArray(origin) || typeof origin === \"object\")\n    return point(getCoord(origin), properties);\n\n  // Define BBox\n  const [west, south, east, north] = geojson.bbox\n    ? geojson.bbox\n    : turfBBox(geojson);\n\n  // Having to disable eslint below for lines which fail the no-fallthrough\n  // rule, though only because of the ts-expect-error rules. Once we remove\n  // southeast, bottomright, rightbottom, etc we should be able to remove all\n  // these supressions.\n  /* eslint-disable no-fallthrough */\n  switch (origin) {\n    case \"sw\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"southwest\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"westsouth\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"bottomleft\":\n      return point([west, south], properties);\n    case \"se\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"southeast\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"eastsouth\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"bottomright\":\n      return point([east, south], properties);\n    case \"nw\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"northwest\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"westnorth\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"topleft\":\n      return point([west, north], properties);\n    case \"ne\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"northeast\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"eastnorth\":\n    // @ts-expect-error undocumented, to be removed for v8 #techdebt\n    case \"topright\":\n      return point([east, north], properties);\n    case \"center\":\n      var cr = center(geojson);\n      cr.properties = properties;\n      return cr;\n    default:\n      var cid = centroid(geojson);\n      cid.properties = properties;\n      return cid;\n  }\n  /* eslint-enable no-fallthrough */\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-transform-scale/types.ts",
    "content": "import { LineString, Feature, Polygon } from \"geojson\";\nimport { lineString, polygon, featureCollection } from \"@turf/helpers\";\nimport { transformScale as scale } from \"./index.js\";\n\nconst line = lineString([\n  [0, 0],\n  [10, 29],\n]);\nconst poly = polygon([\n  [\n    [0, 29],\n    [3.5, 29],\n    [2.5, 32],\n    [0, 29],\n  ],\n]);\n\n// Does not mutate Geometry type\nconst scaledPt: LineString = scale(line.geometry, 1.5);\nconst scaledPoly: Feature<Polygon> = scale(poly, 1.5);\n\n// Diferent Geometry inputs\nscale(line.geometry, 1.5);\nscale(poly.geometry, 1.5);\nscale(featureCollection([poly]), 1.5);\n\n// All params\nscale(poly, 1.5);\nscale(poly, 1.5, { origin: [10, 10] });\nscale(poly, 1.5, { origin: \"ne\", mutate: true });\n"
  },
  {
    "path": "packages/turf-transform-translate/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-transform-translate/README.md",
    "content": "# @turf/transform-translate\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## transformTranslate\n\nMoves any geojson Feature or Geometry of a specified distance along a Rhumb Line\non the provided direction angle.\n\nNote that this moves the points of your shape individually and can therefore change\nthe overall shape. How noticable this is depends on the distance and the used projection.\n\n### Parameters\n\n*   `geojson` **([GeoJSON][1] | [GeometryCollection][2])** object to be translated\n*   `distance` **[number][3]** length of the motion; negative values determine motion in opposite direction\n*   `direction` **[number][3]** of the motion; angle from North in decimal degrees, positive clockwise\n*   `options` **[Object][4]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** in which `distance` will be expressed; Supports all valid Turf [Units][5] (optional, default `'kilometers'`)\n    *   `options.zTranslation` **[number][3]** length of the vertical motion, same unit of distance (optional, default `0`)\n    *   `options.mutate` **[boolean][6]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`)\n\n### Examples\n\n```javascript\nvar poly = turf.polygon([[[0,29],[3.5,29],[2.5,32],[0,29]]]);\nvar translatedPoly = turf.transformTranslate(poly, 100, 35);\n\n//addToMap\nvar addToMap = [poly, translatedPoly];\ntranslatedPoly.properties = {stroke: '#F00', 'stroke-width': 4};\n```\n\nReturns **([GeoJSON][1] | [GeometryCollection][2])** the translated GeoJSON object\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.8\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[5]: https://turfjs.org/docs/api/types/Units\n\n[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/transform-translate\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-transform-translate/bench.ts",
    "content": "import { Feature } from \"geojson\";\nimport fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark, { Event } from \"benchmark\";\nimport { transformTranslate as translate } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename) as Feature,\n  };\n});\n\n/**\n * Single Process Benchmark\n *\n * line: 1.364ms\n * multiLine: 0.072ms\n * multiPoint: 0.053ms\n * multiPolygon: 1.482ms\n * no-motion: 1.352ms\n * point: 0.022ms\n * polygon-with-hole: 0.100ms\n * polygon: 0.018ms\n * z-translation: 0.073ms\n */\nfor (const { name, geojson } of fixtures) {\n  const { distance, direction, units, zTranslation } = geojson.properties || {};\n  console.time(name);\n  translate(geojson, distance, direction, {\n    units,\n    zTranslation,\n    mutate: true,\n  });\n  console.timeEnd(name);\n}\n\n/**\n * Benchmark Results\n *\n * line x 26,602 ops/sec ±2.77% (77 runs sampled)\n * multiLine x 56,968 ops/sec ±2.22% (79 runs sampled)\n * multiPoint x 55,514 ops/sec ±18.05% (58 runs sampled)\n * multiPolygon x 3,685 ops/sec ±2.36% (74 runs sampled)\n * no-motion x 17,622 ops/sec ±3.22% (75 runs sampled)\n * point x 121,712 ops/sec ±2.02% (79 runs sampled)\n * polygon-with-hole x 9,527 ops/sec ±2.52% (75 runs sampled)\n * polygon x 73,538 ops/sec ±5.07% (72 runs sampled)\n * z-translation x 44,638 ops/sec ±3.09% (78 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-transform-translate\");\nfor (const { name, geojson } of fixtures) {\n  const { distance, direction, units, zTranslation } = geojson.properties || {};\n  suite.add(name, () =>\n    translate(geojson, distance, direction, { units, zTranslation })\n  );\n}\n\nsuite.on(\"cycle\", (e: Event) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-transform-translate/index.ts",
    "content": "import { GeoJSON, GeometryCollection } from \"geojson\";\nimport { coordEach } from \"@turf/meta\";\nimport { isObject, Units } from \"@turf/helpers\";\nimport { getCoords } from \"@turf/invariant\";\nimport { clone } from \"@turf/clone\";\nimport { rhumbDestination } from \"@turf/rhumb-destination\";\n\n/**\n * Moves any geojson Feature or Geometry of a specified distance along a Rhumb Line\n * on the provided direction angle.\n *\n * Note that this moves the points of your shape individually and can therefore change\n * the overall shape. How noticable this is depends on the distance and the used projection.\n *\n * @function\n * @param {GeoJSON|GeometryCollection} geojson object to be translated\n * @param {number} distance length of the motion; negative values determine motion in opposite direction\n * @param {number} direction of the motion; angle from North in decimal degrees, positive clockwise\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units='kilometers'] in which `distance` will be expressed; Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}\n * @param {number} [options.zTranslation=0] length of the vertical motion, same unit of distance\n * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true)\n * @returns {GeoJSON|GeometryCollection} the translated GeoJSON object\n * @example\n * var poly = turf.polygon([[[0,29],[3.5,29],[2.5,32],[0,29]]]);\n * var translatedPoly = turf.transformTranslate(poly, 100, 35);\n *\n * //addToMap\n * var addToMap = [poly, translatedPoly];\n * translatedPoly.properties = {stroke: '#F00', 'stroke-width': 4};\n */\nfunction transformTranslate<T extends GeoJSON | GeometryCollection>(\n  geojson: T,\n  distance: number,\n  direction: number,\n  options?: {\n    units?: Units;\n    zTranslation?: number;\n    mutate?: boolean;\n  }\n): T {\n  // Optional parameters\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  var units = options.units;\n  var zTranslation = options.zTranslation;\n  var mutate = options.mutate;\n\n  // Input validation\n  if (!geojson) throw new Error(\"geojson is required\");\n  if (distance === undefined || distance === null || isNaN(distance))\n    throw new Error(\"distance is required\");\n  if (zTranslation && typeof zTranslation !== \"number\" && isNaN(zTranslation))\n    throw new Error(\"zTranslation is not a number\");\n\n  // Shortcut no-motion\n  zTranslation = zTranslation !== undefined ? zTranslation : 0;\n  if (distance === 0 && zTranslation === 0) return geojson;\n\n  if (direction === undefined || direction === null || isNaN(direction))\n    throw new Error(\"direction is required\");\n\n  // Invert with negative distances\n  if (distance < 0) {\n    distance = -distance;\n    direction = direction + 180;\n  }\n\n  // Clone geojson to avoid side effects\n  if (mutate === false || mutate === undefined) geojson = clone(geojson);\n\n  // Translate each coordinate\n  coordEach(geojson, function (pointCoords) {\n    var newCoords = getCoords(\n      rhumbDestination(pointCoords, distance, direction, { units: units })\n    );\n    pointCoords[0] = newCoords[0];\n    pointCoords[1] = newCoords[1];\n    if (zTranslation && pointCoords.length === 3)\n      pointCoords[2] += zTranslation;\n  });\n  return geojson;\n}\n\nexport { transformTranslate };\nexport default transformTranslate;\n"
  },
  {
    "path": "packages/turf-transform-translate/package.json",
    "content": "{\n  \"name\": \"@turf/transform-translate\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Moves a shape or location in a specific direction.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Stefano Borghi <@stebogit>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"transform\",\n    \"transformation\",\n    \"translate\",\n    \"move\",\n    \"shift\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/clone\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@turf/rhumb-destination\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/in/line.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"distance\": 3,\n    \"units\": \"miles\",\n    \"direction\": 175\n  },\n  \"geometry\": {\n    \"type\": \"LineString\",\n    \"coordinates\": [\n      [11.259269714355469, 44.48450449695473],\n      [11.268196105957031, 44.48866833139464],\n      [11.272315979003906, 44.5063000997406],\n      [11.286735534667969, 44.52343698529045],\n      [11.306304931640625, 44.52515039667307],\n      [11.325874328613281, 44.53298249265435],\n      [11.347160339355469, 44.5302903284497],\n      [11.37359619140625, 44.51878604321948],\n      [11.381149291992186, 44.50948304524639],\n      [11.381492614746094, 44.503606702401854],\n      [11.392478942871094, 44.49185223953622],\n      [11.406898498535156, 44.48548424944496]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/in/multiLine.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"distance\": 13.45,\n    \"direction\": 0\n  },\n  \"geometry\": {\n    \"type\": \"MultiLineString\",\n    \"coordinates\": [\n      [\n        [-99.2, 19.1],\n        [-99.1, 19.17],\n        [-99, 19.1]\n      ],\n      [\n        [-99.2, 19.16],\n        [-99.1, 19.23],\n        [-99, 19.16]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/in/multiPoint.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"distance\": -10,\n    \"units\": \"miles\",\n    \"direction\": 90\n  },\n  \"geometry\": {\n    \"type\": \"MultiPoint\",\n    \"coordinates\": [\n      [100.0, 0.0],\n      [101.0, 1.0],\n      [101.15, -0.86],\n      [99.8, 1.8]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/in/multiPolygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"distance\": 40,\n    \"units\": \"miles\",\n    \"direction\": -35\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [-80.83740234375, -33.75146241858857],\n          [-80.8267593383789, -33.76316538009658],\n          [-80.83036422729492, -33.77643631739436],\n          [-80.79448699951172, -33.81181543283183],\n          [-80.77629089355469, -33.8159515518711],\n          [-80.76066970825195, -33.805254282102595],\n          [-80.75637817382812, -33.76587681391894],\n          [-80.77457427978516, -33.723197462817026],\n          [-80.80615997314453, -33.724054113439884],\n          [-80.83740234375, -33.75146241858857]\n        ]\n      ],\n      [\n        [\n          [-78.87805938720703, -33.60575555447342],\n          [-78.88629913330078, -33.61318971884082],\n          [-78.87943267822264, -33.63034303571294],\n          [-78.89350891113281, -33.64520648119226],\n          [-78.90380859375, -33.64720713369291],\n          [-78.90827178955078, -33.64434904445886],\n          [-78.9151382446289, -33.64606390938584],\n          [-78.92166137695312, -33.65206566761678],\n          [-78.92303466796875, -33.65492350063952],\n          [-78.93024444580078, -33.65749546922024],\n          [-78.94020080566406, -33.66778257479216],\n          [-78.93573760986328, -33.67092561169521],\n          [-78.93882751464844, -33.674354248232504],\n          [-78.94191741943358, -33.67292566628718],\n          [-78.94878387451172, -33.67692563592954],\n          [-78.94123077392578, -33.682353868548184],\n          [-78.93539428710938, -33.68321092658006],\n          [-78.93814086914062, -33.678639851675534],\n          [-78.93848419189453, -33.675782806445994],\n          [-78.93299102783203, -33.671497060610534],\n          [-78.92406463623047, -33.671211336627486],\n          [-78.92131805419922, -33.6652109137176],\n          [-78.92406463623047, -33.66178191269289],\n          [-78.914794921875, -33.65578083204094],\n          [-78.90758514404297, -33.662924928220384],\n          [-78.90449523925781, -33.660353121928814],\n          [-78.90552520751953, -33.657209698729595],\n          [-78.89934539794922, -33.652637241813174],\n          [-78.89213562011719, -33.66006736092875],\n          [-78.88458251953125, -33.65606660727672],\n          [-78.87428283691406, -33.644920669896656],\n          [-78.8656997680664, -33.64520648119226],\n          [-78.86089324951172, -33.66549665763364],\n          [-78.82793426513672, -33.66092464108171],\n          [-78.78398895263672, -33.6794969467326],\n          [-78.76922607421875, -33.670639885813706],\n          [-78.7771224975586, -33.662067667998414],\n          [-78.77918243408203, -33.655495055856136],\n          [-78.79051208496094, -33.641490860339054],\n          [-78.81351470947266, -33.64063338660099],\n          [-78.81729125976561, -33.64434904445886],\n          [-78.83068084716797, -33.640919212129155],\n          [-78.83033752441406, -33.63148646875166],\n          [-78.84819030761717, -33.618621971969276],\n          [-78.848876953125, -33.61347563543629],\n          [-78.86295318603516, -33.6071852512562],\n          [-78.87805938720703, -33.60575555447342]\n        ]\n      ],\n      [\n        [\n          [-78.95161628723145, -33.69528025294664],\n          [-78.95530700683594, -33.70006466462807],\n          [-78.9521312713623, -33.70163560737423],\n          [-78.9506721496582, -33.700278885784996],\n          [-78.94861221313477, -33.701207171292374],\n          [-78.94972801208496, -33.70306371221516],\n          [-78.95075798034668, -33.70284949800254],\n          [-78.95178794860838, -33.7045631967461],\n          [-78.9480972290039, -33.70784769044128],\n          [-78.94947052001952, -33.70934709145684],\n          [-78.94303321838379, -33.71377374172037],\n          [-78.93917083740234, -33.71363095011231],\n          [-78.93771171569824, -33.71455909132016],\n          [-78.93874168395996, -33.7163439500602],\n          [-78.93659591674805, -33.714987460801574],\n          [-78.93685340881348, -33.7134881582668],\n          [-78.93479347229004, -33.714916066036416],\n          [-78.93410682678223, -33.71355955421924],\n          [-78.93075942993164, -33.71355955421924],\n          [-78.92475128173828, -33.715201644740844],\n          [-78.92380714416502, -33.714773276327996],\n          [-78.92483711242676, -33.71377374172037],\n          [-78.92706871032715, -33.712988384937574],\n          [-78.92998695373535, -33.712845592023534],\n          [-78.92998695373535, -33.71170324016297],\n          [-78.93118858337402, -33.70970408784028],\n          [-78.93393516540527, -33.70998968387856],\n          [-78.93625259399414, -33.70791909108323],\n          [-78.9378833770752, -33.708276093402596],\n          [-78.93925666809082, -33.7064196651371],\n          [-78.9411449432373, -33.706205459293635],\n          [-78.94020080566406, -33.70506301910626],\n          [-78.94140243530273, -33.704206178993886],\n          [-78.94037246704102, -33.70263528325574],\n          [-78.94208908081055, -33.69792242367998],\n          [-78.94320487976074, -33.69742255977288],\n          [-78.94569396972656, -33.699350590247136],\n          [-78.94929885864258, -33.69799383257217],\n          [-78.94981384277342, -33.69649423337286],\n          [-78.9492130279541, -33.695922950602935],\n          [-78.95015716552734, -33.69513743059241],\n          [-78.95092964172363, -33.69578012931697],\n          [-78.95161628723145, -33.69528025294664]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/in/no-motion.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"distance\": 0,\n    \"direction\": 45\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [128.84, -25.76],\n        [128.18, -25.6],\n        [127.96, -25.52],\n        [127.88, -25.52],\n        [127.7, -25.6],\n        [127.26, -25.79],\n        [126.6, -26.11],\n        [126.16, -26.78],\n        [126.12, -27.68],\n        [126.21, -28.42],\n        [126.69, -29.49],\n        [127.74, -29.8],\n        [128.8, -29.72],\n        [129.41, -29.03],\n        [129.72, -27.95],\n        [129.68, -27.21],\n        [129.33, -26.23],\n        [128.84, -25.76]\n      ],\n      [\n        [128.45, -27.44],\n        [128.32, -26.94],\n        [127.7, -26.82],\n        [127.35, -27.05],\n        [127.17, -27.8],\n        [127.57, -28.22],\n        [128.1, -28.42],\n        [128.49, -27.8],\n        [128.45, -27.44]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/in/point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"distance\": 20,\n    \"units\": \"miles\",\n    \"direction\": 45\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-75.69926351308823, 45.43145021122502]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/in/polygon-fiji.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"distance\": 15,\n    \"units\": \"miles\",\n    \"direction\": 100\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [-179.6319580078125, -16.762467717941593],\n          [-179.659423828125, -16.64671805097192],\n          [-179.725341796875, -16.578287608637478],\n          [-179.99450683593747, -16.641455036937753],\n          [-180.1702880859375, -16.935960102864705],\n          [-180.1373291015625, -17.056784609942543],\n          [-179.93408203125, -17.00951473208515],\n          [-179.6319580078125, -16.762467717941593]\n        ]\n      ],\n      [\n        [\n          [-180.06591796875, -16.509832826905836],\n          [-179.79125976562497, -16.093320185359257],\n          [-180.0933837890625, -16.0352548623504],\n          [-180.7086181640625, -16.0774858690887],\n          [-181.63146972656247, -16.525632239869275],\n          [-181.6644287109375, -16.836089974560213],\n          [-181.4996337890625, -17.06728740376787],\n          [-181.219482421875, -17.06728740376787],\n          [-180.9503173828125, -16.956978651248072],\n          [-180.59326171875, -16.914939206301646],\n          [-180.1922607421875, -16.867633616803836],\n          [-180.06591796875, -16.509832826905836]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/in/polygon-resolute-bay.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"distance\": 15,\n    \"units\": \"miles\",\n    \"direction\": 45\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-95.174560546875, 75.60953172351893],\n        [-96.03149414062499, 75.4282153667069],\n        [-96.492919921875, 75.16048677152294],\n        [-96.6357421875, 75.03617629075062],\n        [-95.723876953125, 74.80466599405533],\n        [-94.910888671875, 74.66582807452669],\n        [-94.317626953125, 74.62218784846145],\n        [-93.49365234375, 74.66292249033842],\n        [-93.438720703125, 74.86788912917916],\n        [-93.515625, 75.03901279805076],\n        [-93.55957031249999, 75.3060980061604],\n        [-94.163818359375, 75.52189820596192],\n        [-94.449462890625, 75.60953172351893],\n        [-94.82299804687499, 75.63681056594325],\n        [-95.174560546875, 75.60953172351893]\n      ],\n      [\n        [-95.108642578125, 75.40054889588245],\n        [-95.6634521484375, 75.22926698530169],\n        [-95.614013671875, 75.01062406678055],\n        [-94.647216796875, 74.84061980605131],\n        [-94.0264892578125, 74.83774656082585],\n        [-94.0155029296875, 75.17876503868581],\n        [-94.5867919921875, 75.3700564253908],\n        [-95.108642578125, 75.40054889588245]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/in/polygon-with-hole.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"distance\": 15,\n    \"direction\": -195,\n    \"name\": \"Bled Lake\",\n    \"area\": \"1.45\",\n    \"area-unit\": \"km2\",\n    \"volume\": \"0.0257\",\n    \"volume-unit\": \"km3\",\n    \"picture\": \"https://en.wikipedia.org/wiki/Lake_Bled#/media/File:Lake_Bled_from_the_Mountain.jpg\"\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [14.086918830871582, 46.368163916782294],\n        [14.085588455200194, 46.3670386292829],\n        [14.086060523986816, 46.36644636339309],\n        [14.08374309539795, 46.36366262769442],\n        [14.081940650939941, 46.362714940623896],\n        [14.082798957824707, 46.36155992478001],\n        [14.084773063659668, 46.36188570095187],\n        [14.08473014831543, 46.36016795016414],\n        [14.085588455200194, 46.35895364547403],\n        [14.089837074279785, 46.3583020562222],\n        [14.090909957885742, 46.35856861640076],\n        [14.091768264770508, 46.35936828913414],\n        [14.093270301818846, 46.35996063176163],\n        [14.09816265106201, 46.35978292964766],\n        [14.099278450012207, 46.36022718384896],\n        [14.098892211914062, 46.36215224364764],\n        [14.106316566467285, 46.36499528482401],\n        [14.108591079711914, 46.36840081645984],\n        [14.106273651123047, 46.36958529943602],\n        [14.103312492370605, 46.36937801676938],\n        [14.09996509552002, 46.36854887823657],\n        [14.097347259521484, 46.368163916782294],\n        [14.095587730407715, 46.36801585396206],\n        [14.094429016113281, 46.36733475981976],\n        [14.092626571655273, 46.36724592082726],\n        [14.086918830871582, 46.368163916782294]\n      ],\n      [\n        [14.089826345443726, 46.36308513284238],\n        [14.08948302268982, 46.362611286353214],\n        [14.089547395706177, 46.362026376425554],\n        [14.089912176132202, 46.36157473282996],\n        [14.090116024017334, 46.36154511672605],\n        [14.09022331237793, 46.36160434891784],\n        [14.090287685394287, 46.36172281310876],\n        [14.090502262115479, 46.36203378038783],\n        [14.090588092803955, 46.36238916939662],\n        [14.090534448623657, 46.36260388246917],\n        [14.089933633804321, 46.36306292138001],\n        [14.089826345443726, 46.36308513284238]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/in/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"direction\": 70,\n    \"distance\": 300\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [0, 29],\n        [3.5, 29],\n        [2.5, 32],\n        [0, 29]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/in/z-translation.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"distance\": 120,\n    \"units\": \"miles\",\n    \"direction\": 165,\n    \"zTranslation\": 15\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [121.46484375, -23.88583769986199, 10],\n        [125.5078125, -27.488781168937983, 11],\n        [129.638671875, -25.562265014427492, 12],\n        [129.2431640625, -22.06527806776582, 13],\n        [124.93652343749999, -20.385825381874263, 14],\n        [121.46484375, -23.88583769986199, 10]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/out/line.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": 3,\n        \"units\": \"miles\",\n        \"direction\": 175,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [11.264572, 44.44125],\n          [11.273499, 44.445414],\n          [11.27762, 44.463046],\n          [11.292041, 44.480183],\n          [11.311611, 44.481896],\n          [11.331181, 44.489728],\n          [11.352467, 44.487036],\n          [11.378902, 44.475532],\n          [11.386454, 44.466229],\n          [11.386797, 44.460352],\n          [11.397782, 44.448598],\n          [11.412201, 44.44223]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": 3,\n        \"units\": \"miles\",\n        \"direction\": 175\n      },\n      \"geometry\": {\n        \"type\": \"LineString\",\n        \"coordinates\": [\n          [11.259269714355469, 44.48450449695473],\n          [11.268196105957031, 44.48866833139464],\n          [11.272315979003906, 44.5063000997406],\n          [11.286735534667969, 44.52343698529045],\n          [11.306304931640625, 44.52515039667307],\n          [11.325874328613281, 44.53298249265435],\n          [11.347160339355469, 44.5302903284497],\n          [11.37359619140625, 44.51878604321948],\n          [11.381149291992186, 44.50948304524639],\n          [11.381492614746094, 44.503606702401854],\n          [11.392478942871094, 44.49185223953622],\n          [11.406898498535156, 44.48548424944496]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/out/multiLine.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": 13.45,\n        \"direction\": 0,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-99.2, 19.220959],\n            [-99.1, 19.290959],\n            [-99, 19.220959]\n          ],\n          [\n            [-99.2, 19.280959],\n            [-99.1, 19.350959],\n            [-99, 19.280959]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": 13.45,\n        \"direction\": 0\n      },\n      \"geometry\": {\n        \"type\": \"MultiLineString\",\n        \"coordinates\": [\n          [\n            [-99.2, 19.1],\n            [-99.1, 19.17],\n            [-99, 19.1]\n          ],\n          [\n            [-99.2, 19.16],\n            [-99.1, 19.23],\n            [-99, 19.16]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/out/multiPoint.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": -10,\n        \"units\": \"miles\",\n        \"direction\": 90,\n        \"marker-color\": \"#F00\",\n        \"marker-symbol\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [99.855268, 0],\n          [100.855246, 1],\n          [101.005252, -0.86],\n          [99.655197, 1.8]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": -10,\n        \"units\": \"miles\",\n        \"direction\": 90\n      },\n      \"geometry\": {\n        \"type\": \"MultiPoint\",\n        \"coordinates\": [\n          [100, 0],\n          [101, 1],\n          [101.15, -0.86],\n          [99.8, 1.8]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/out/multiPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": 40,\n        \"units\": \"miles\",\n        \"direction\": -35,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-81.235677, -33.277234],\n              [-81.225088, -33.288937],\n              [-81.228754, -33.302208],\n              [-81.19304, -33.337587],\n              [-81.174863, -33.341723],\n              [-81.159192, -33.331026],\n              [-81.154719, -33.291648],\n              [-81.172719, -33.248969],\n              [-81.204308, -33.249825],\n              [-81.235677, -33.277234]\n            ]\n          ],\n          [\n            [\n              [-79.275665, -33.131527],\n              [-79.283939, -33.138961],\n              [-79.277151, -33.156114],\n              [-79.291295, -33.170978],\n              [-79.301604, -33.172978],\n              [-79.306054, -33.17012],\n              [-79.312929, -33.171835],\n              [-79.319479, -33.177837],\n              [-79.320866, -33.180695],\n              [-79.328087, -33.183267],\n              [-79.338091, -33.193554],\n              [-79.333642, -33.196697],\n              [-79.336748, -33.200126],\n              [-79.339831, -33.198697],\n              [-79.346716, -33.202697],\n              [-79.339188, -33.208125],\n              [-79.333355, -33.208982],\n              [-79.336081, -33.204411],\n              [-79.336411, -33.201554],\n              [-79.330898, -33.197268],\n              [-79.32197, -33.196983],\n              [-79.319196, -33.190982],\n              [-79.321927, -33.187553],\n              [-79.31263, -33.181552],\n              [-79.305453, -33.188696],\n              [-79.302351, -33.186124],\n              [-79.303367, -33.182981],\n              [-79.297166, -33.178409],\n              [-79.28999, -33.185839],\n              [-79.282419, -33.181838],\n              [-79.272068, -33.170692],\n              [-79.263486, -33.170978],\n              [-79.258773, -33.191268],\n              [-79.225793, -33.186696],\n              [-79.181933, -33.205268],\n              [-79.167129, -33.196411],\n              [-79.174986, -33.187839],\n              [-79.177016, -33.181266],\n              [-79.188282, -33.167262],\n              [-79.21128, -33.166405],\n              [-79.215074, -33.17012],\n              [-79.228448, -33.166691],\n              [-79.228061, -33.157258],\n              [-79.245855, -33.144393],\n              [-79.246518, -33.139247],\n              [-79.260566, -33.132957],\n              [-79.275665, -33.131527]\n            ]\n          ],\n          [\n            [\n              [-79.349632, -33.221052],\n              [-79.353345, -33.225836],\n              [-79.350177, -33.227407],\n              [-79.348711, -33.22605],\n              [-79.346656, -33.226978],\n              [-79.34778, -33.228835],\n              [-79.348809, -33.228621],\n              [-79.349847, -33.230335],\n              [-79.346171, -33.233619],\n              [-79.347551, -33.235118],\n              [-79.341134, -33.239545],\n              [-79.337271, -33.239402],\n              [-79.335816, -33.24033],\n              [-79.336855, -33.242115],\n              [-79.334703, -33.240759],\n              [-79.334953, -33.239259],\n              [-79.3329, -33.240687],\n              [-79.332207, -33.239331],\n              [-79.328859, -33.239331],\n              [-79.322859, -33.240973],\n              [-79.321913, -33.240545],\n              [-79.322938, -33.239545],\n              [-79.325166, -33.23876],\n              [-79.328084, -33.238617],\n              [-79.328078, -33.237475],\n              [-79.329271, -33.235475],\n              [-79.332019, -33.235761],\n              [-79.334327, -33.23369],\n              [-79.335959, -33.234047],\n              [-79.337324, -33.232191],\n              [-79.339211, -33.231977],\n              [-79.338262, -33.230834],\n              [-79.33946, -33.229977],\n              [-79.338422, -33.228407],\n              [-79.340117, -33.223694],\n              [-79.341231, -33.223194],\n              [-79.343729, -33.225122],\n              [-79.347327, -33.223765],\n              [-79.347835, -33.222266],\n              [-79.347232, -33.221694],\n              [-79.348173, -33.220909],\n              [-79.348948, -33.221551],\n              [-79.349632, -33.221052]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": 40,\n        \"units\": \"miles\",\n        \"direction\": -35\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-80.83740234375, -33.75146241858857],\n              [-80.8267593383789, -33.76316538009658],\n              [-80.83036422729492, -33.77643631739436],\n              [-80.79448699951172, -33.81181543283183],\n              [-80.77629089355469, -33.8159515518711],\n              [-80.76066970825195, -33.805254282102595],\n              [-80.75637817382812, -33.76587681391894],\n              [-80.77457427978516, -33.723197462817026],\n              [-80.80615997314453, -33.724054113439884],\n              [-80.83740234375, -33.75146241858857]\n            ]\n          ],\n          [\n            [\n              [-78.87805938720703, -33.60575555447342],\n              [-78.88629913330078, -33.61318971884082],\n              [-78.87943267822264, -33.63034303571294],\n              [-78.89350891113281, -33.64520648119226],\n              [-78.90380859375, -33.64720713369291],\n              [-78.90827178955078, -33.64434904445886],\n              [-78.9151382446289, -33.64606390938584],\n              [-78.92166137695312, -33.65206566761678],\n              [-78.92303466796875, -33.65492350063952],\n              [-78.93024444580078, -33.65749546922024],\n              [-78.94020080566406, -33.66778257479216],\n              [-78.93573760986328, -33.67092561169521],\n              [-78.93882751464844, -33.674354248232504],\n              [-78.94191741943358, -33.67292566628718],\n              [-78.94878387451172, -33.67692563592954],\n              [-78.94123077392578, -33.682353868548184],\n              [-78.93539428710938, -33.68321092658006],\n              [-78.93814086914062, -33.678639851675534],\n              [-78.93848419189453, -33.675782806445994],\n              [-78.93299102783203, -33.671497060610534],\n              [-78.92406463623047, -33.671211336627486],\n              [-78.92131805419922, -33.6652109137176],\n              [-78.92406463623047, -33.66178191269289],\n              [-78.914794921875, -33.65578083204094],\n              [-78.90758514404297, -33.662924928220384],\n              [-78.90449523925781, -33.660353121928814],\n              [-78.90552520751953, -33.657209698729595],\n              [-78.89934539794922, -33.652637241813174],\n              [-78.89213562011719, -33.66006736092875],\n              [-78.88458251953125, -33.65606660727672],\n              [-78.87428283691406, -33.644920669896656],\n              [-78.8656997680664, -33.64520648119226],\n              [-78.86089324951172, -33.66549665763364],\n              [-78.82793426513672, -33.66092464108171],\n              [-78.78398895263672, -33.6794969467326],\n              [-78.76922607421875, -33.670639885813706],\n              [-78.7771224975586, -33.662067667998414],\n              [-78.77918243408203, -33.655495055856136],\n              [-78.79051208496094, -33.641490860339054],\n              [-78.81351470947266, -33.64063338660099],\n              [-78.81729125976561, -33.64434904445886],\n              [-78.83068084716797, -33.640919212129155],\n              [-78.83033752441406, -33.63148646875166],\n              [-78.84819030761717, -33.618621971969276],\n              [-78.848876953125, -33.61347563543629],\n              [-78.86295318603516, -33.6071852512562],\n              [-78.87805938720703, -33.60575555447342]\n            ]\n          ],\n          [\n            [\n              [-78.95161628723145, -33.69528025294664],\n              [-78.95530700683594, -33.70006466462807],\n              [-78.9521312713623, -33.70163560737423],\n              [-78.9506721496582, -33.700278885784996],\n              [-78.94861221313477, -33.701207171292374],\n              [-78.94972801208496, -33.70306371221516],\n              [-78.95075798034668, -33.70284949800254],\n              [-78.95178794860838, -33.7045631967461],\n              [-78.9480972290039, -33.70784769044128],\n              [-78.94947052001952, -33.70934709145684],\n              [-78.94303321838379, -33.71377374172037],\n              [-78.93917083740234, -33.71363095011231],\n              [-78.93771171569824, -33.71455909132016],\n              [-78.93874168395996, -33.7163439500602],\n              [-78.93659591674805, -33.714987460801574],\n              [-78.93685340881348, -33.7134881582668],\n              [-78.93479347229004, -33.714916066036416],\n              [-78.93410682678223, -33.71355955421924],\n              [-78.93075942993164, -33.71355955421924],\n              [-78.92475128173828, -33.715201644740844],\n              [-78.92380714416502, -33.714773276327996],\n              [-78.92483711242676, -33.71377374172037],\n              [-78.92706871032715, -33.712988384937574],\n              [-78.92998695373535, -33.712845592023534],\n              [-78.92998695373535, -33.71170324016297],\n              [-78.93118858337402, -33.70970408784028],\n              [-78.93393516540527, -33.70998968387856],\n              [-78.93625259399414, -33.70791909108323],\n              [-78.9378833770752, -33.708276093402596],\n              [-78.93925666809082, -33.7064196651371],\n              [-78.9411449432373, -33.706205459293635],\n              [-78.94020080566406, -33.70506301910626],\n              [-78.94140243530273, -33.704206178993886],\n              [-78.94037246704102, -33.70263528325574],\n              [-78.94208908081055, -33.69792242367998],\n              [-78.94320487976074, -33.69742255977288],\n              [-78.94569396972656, -33.699350590247136],\n              [-78.94929885864258, -33.69799383257217],\n              [-78.94981384277342, -33.69649423337286],\n              [-78.9492130279541, -33.695922950602935],\n              [-78.95015716552734, -33.69513743059241],\n              [-78.95092964172363, -33.69578012931697],\n              [-78.95161628723145, -33.69528025294664]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/out/no-motion.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": 0,\n        \"direction\": 45,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128.84, -25.76],\n            [128.18, -25.6],\n            [127.96, -25.52],\n            [127.88, -25.52],\n            [127.7, -25.6],\n            [127.26, -25.79],\n            [126.6, -26.11],\n            [126.16, -26.78],\n            [126.12, -27.68],\n            [126.21, -28.42],\n            [126.69, -29.49],\n            [127.74, -29.8],\n            [128.8, -29.72],\n            [129.41, -29.03],\n            [129.72, -27.95],\n            [129.68, -27.21],\n            [129.33, -26.23],\n            [128.84, -25.76]\n          ],\n          [\n            [128.45, -27.44],\n            [128.32, -26.94],\n            [127.7, -26.82],\n            [127.35, -27.05],\n            [127.17, -27.8],\n            [127.57, -28.22],\n            [128.1, -28.42],\n            [128.49, -27.8],\n            [128.45, -27.44]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": 0,\n        \"direction\": 45\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128.84, -25.76],\n            [128.18, -25.6],\n            [127.96, -25.52],\n            [127.88, -25.52],\n            [127.7, -25.6],\n            [127.26, -25.79],\n            [126.6, -26.11],\n            [126.16, -26.78],\n            [126.12, -27.68],\n            [126.21, -28.42],\n            [126.69, -29.49],\n            [127.74, -29.8],\n            [128.8, -29.72],\n            [129.41, -29.03],\n            [129.72, -27.95],\n            [129.68, -27.21],\n            [129.33, -26.23],\n            [128.84, -25.76]\n          ],\n          [\n            [128.45, -27.44],\n            [128.32, -26.94],\n            [127.7, -26.82],\n            [127.35, -27.05],\n            [127.17, -27.8],\n            [127.57, -28.22],\n            [128.1, -28.42],\n            [128.49, -27.8],\n            [128.45, -27.44]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/out/point.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": 20,\n        \"units\": \"miles\",\n        \"direction\": 45,\n        \"marker-color\": \"#F00\",\n        \"marker-symbol\": \"star\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.407065, 45.636132]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": 20,\n        \"units\": \"miles\",\n        \"direction\": 45\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.69926351308823, 45.43145021122502]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/out/polygon-fiji.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": 15,\n        \"units\": \"miles\",\n        \"direction\": 100,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-179.408649, -16.800166],\n              [-179.43625, -16.684417],\n              [-179.502248, -16.615986],\n              [-179.771339, -16.679154],\n              [-179.946774, -16.973659],\n              [-179.913671, -17.094483],\n              [-179.71048, -17.047213],\n              [-179.408649, -16.800166]\n            ]\n          ],\n          [\n            [\n              [-179.842903, -16.547531],\n              [-179.568719, -16.131019],\n              [-179.870908, -16.072953],\n              [-180.486095, -16.115184],\n              [-181.408437, -16.563331],\n              [-181.441033, -16.873789],\n              [-181.275963, -17.104986],\n              [-180.995811, -17.104986],\n              [-180.726778, -16.994677],\n              [-180.369772, -16.952638],\n              [-179.968828, -16.905332],\n              [-179.842903, -16.547531]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": 15,\n        \"units\": \"miles\",\n        \"direction\": 100\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-179.6319580078125, -16.762467717941593],\n              [-179.659423828125, -16.64671805097192],\n              [-179.725341796875, -16.578287608637478],\n              [-179.99450683593747, -16.641455036937753],\n              [-180.1702880859375, -16.935960102864705],\n              [-180.1373291015625, -17.056784609942543],\n              [-179.93408203125, -17.00951473208515],\n              [-179.6319580078125, -16.762467717941593]\n            ]\n          ],\n          [\n            [\n              [-180.06591796875, -16.509832826905836],\n              [-179.79125976562497, -16.093320185359257],\n              [-180.0933837890625, -16.0352548623504],\n              [-180.7086181640625, -16.0774858690887],\n              [-181.63146972656247, -16.525632239869275],\n              [-181.6644287109375, -16.836089974560213],\n              [-181.4996337890625, -17.06728740376787],\n              [-181.219482421875, -17.06728740376787],\n              [-180.9503173828125, -16.956978651248072],\n              [-180.59326171875, -16.914939206301646],\n              [-180.1922607421875, -16.867633616803836],\n              [-180.06591796875, -16.509832826905836]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/out/polygon-resolute-bay.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": 15,\n        \"units\": \"miles\",\n        \"direction\": 45,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.553633, 75.763043],\n            [-95.418171, 75.581726],\n            [-95.890479, 75.313998],\n            [-96.038219, 75.189687],\n            [-95.135296, 74.958177],\n            [-94.327538, 74.819339],\n            [-93.7359, 74.775699],\n            [-92.91041, 74.816434],\n            [-92.847725, 75.0214],\n            [-92.917991, 75.192524],\n            [-92.951261, 75.459609],\n            [-93.54659, 75.675409],\n            [-93.828535, 75.763043],\n            [-94.20091, 75.790322],\n            [-94.553633, 75.763043]\n          ],\n          [\n            [-94.496462, 75.55406],\n            [-95.058254, 75.382778],\n            [-95.017492, 75.164135],\n            [-94.057265, 74.994131],\n            [-93.436647, 74.991258],\n            [-93.412332, 75.332276],\n            [-93.975867, 75.523567],\n            [-94.496462, 75.55406]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": 15,\n        \"units\": \"miles\",\n        \"direction\": 45\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.174560546875, 75.60953172351893],\n            [-96.03149414062499, 75.4282153667069],\n            [-96.492919921875, 75.16048677152294],\n            [-96.6357421875, 75.03617629075062],\n            [-95.723876953125, 74.80466599405533],\n            [-94.910888671875, 74.66582807452669],\n            [-94.317626953125, 74.62218784846145],\n            [-93.49365234375, 74.66292249033842],\n            [-93.438720703125, 74.86788912917916],\n            [-93.515625, 75.03901279805076],\n            [-93.55957031249999, 75.3060980061604],\n            [-94.163818359375, 75.52189820596192],\n            [-94.449462890625, 75.60953172351893],\n            [-94.82299804687499, 75.63681056594325],\n            [-95.174560546875, 75.60953172351893]\n          ],\n          [\n            [-95.108642578125, 75.40054889588245],\n            [-95.6634521484375, 75.22926698530169],\n            [-95.614013671875, 75.01062406678055],\n            [-94.647216796875, 74.84061980605131],\n            [-94.0264892578125, 74.83774656082585],\n            [-94.0155029296875, 75.17876503868581],\n            [-94.5867919921875, 75.3700564253908],\n            [-95.108642578125, 75.40054889588245]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/out/polygon-with-hole.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": 15,\n        \"direction\": -195,\n        \"name\": \"Bled Lake\",\n        \"area\": \"1.45\",\n        \"area-unit\": \"km2\",\n        \"volume\": \"0.0257\",\n        \"volume-unit\": \"km3\",\n        \"picture\": \"https://en.wikipedia.org/wiki/Lake_Bled#/media/File:Lake_Bled_from_the_Mountain.jpg\",\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [14.137457, 46.237862],\n            [14.136126, 46.236737],\n            [14.136597, 46.236145],\n            [14.134277, 46.233361],\n            [14.132474, 46.232413],\n            [14.133331, 46.231258],\n            [14.135306, 46.231584],\n            [14.135261, 46.229866],\n            [14.136118, 46.228652],\n            [14.140366, 46.228001],\n            [14.14144, 46.228267],\n            [14.142299, 46.229067],\n            [14.143801, 46.229659],\n            [14.148693, 46.229481],\n            [14.14981, 46.229926],\n            [14.149425, 46.231851],\n            [14.156852, 46.234694],\n            [14.15913, 46.238099],\n            [14.156813, 46.239284],\n            [14.153852, 46.239077],\n            [14.150504, 46.238247],\n            [14.147886, 46.237862],\n            [14.146126, 46.237714],\n            [14.144967, 46.237033],\n            [14.143164, 46.236944],\n            [14.137457, 46.237862]\n          ],\n          [\n            [14.14036, 46.232784],\n            [14.140016, 46.23231],\n            [14.14008, 46.231725],\n            [14.140445, 46.231273],\n            [14.140648, 46.231244],\n            [14.140756, 46.231303],\n            [14.14082, 46.231421],\n            [14.141035, 46.231732],\n            [14.141121, 46.232088],\n            [14.141068, 46.232302],\n            [14.140467, 46.232761],\n            [14.14036, 46.232784]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": 15,\n        \"direction\": -195,\n        \"name\": \"Bled Lake\",\n        \"area\": \"1.45\",\n        \"area-unit\": \"km2\",\n        \"volume\": \"0.0257\",\n        \"volume-unit\": \"km3\",\n        \"picture\": \"https://en.wikipedia.org/wiki/Lake_Bled#/media/File:Lake_Bled_from_the_Mountain.jpg\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [14.086918830871582, 46.368163916782294],\n            [14.085588455200194, 46.3670386292829],\n            [14.086060523986816, 46.36644636339309],\n            [14.08374309539795, 46.36366262769442],\n            [14.081940650939941, 46.362714940623896],\n            [14.082798957824707, 46.36155992478001],\n            [14.084773063659668, 46.36188570095187],\n            [14.08473014831543, 46.36016795016414],\n            [14.085588455200194, 46.35895364547403],\n            [14.089837074279785, 46.3583020562222],\n            [14.090909957885742, 46.35856861640076],\n            [14.091768264770508, 46.35936828913414],\n            [14.093270301818846, 46.35996063176163],\n            [14.09816265106201, 46.35978292964766],\n            [14.099278450012207, 46.36022718384896],\n            [14.098892211914062, 46.36215224364764],\n            [14.106316566467285, 46.36499528482401],\n            [14.108591079711914, 46.36840081645984],\n            [14.106273651123047, 46.36958529943602],\n            [14.103312492370605, 46.36937801676938],\n            [14.09996509552002, 46.36854887823657],\n            [14.097347259521484, 46.368163916782294],\n            [14.095587730407715, 46.36801585396206],\n            [14.094429016113281, 46.36733475981976],\n            [14.092626571655273, 46.36724592082726],\n            [14.086918830871582, 46.368163916782294]\n          ],\n          [\n            [14.089826345443726, 46.36308513284238],\n            [14.08948302268982, 46.362611286353214],\n            [14.089547395706177, 46.362026376425554],\n            [14.089912176132202, 46.36157473282996],\n            [14.090116024017334, 46.36154511672605],\n            [14.09022331237793, 46.36160434891784],\n            [14.090287685394287, 46.36172281310876],\n            [14.090502262115479, 46.36203378038783],\n            [14.090588092803955, 46.36238916939662],\n            [14.090534448623657, 46.36260388246917],\n            [14.089933633804321, 46.36306292138001],\n            [14.089826345443726, 46.36308513284238]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/out/polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"direction\": 70,\n        \"distance\": 300,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.911836, 29.922757],\n            [6.411836, 29.922757],\n            [5.504792, 32.922757],\n            [2.911836, 29.922757]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"direction\": 70,\n        \"distance\": 300\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 29],\n            [3.5, 29],\n            [2.5, 32],\n            [0, 29]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test/out/z-translation.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": 120,\n        \"units\": \"miles\",\n        \"direction\": 165,\n        \"zTranslation\": 15,\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 4\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121.959747, -25.563437, 25],\n            [126.018505, -29.166381, 26],\n            [130.140552, -27.239865, 27],\n            [129.731173, -23.742878, 28],\n            [125.418767, -22.063425, 29],\n            [121.959747, -25.563437, 25]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"distance\": 120,\n        \"units\": \"miles\",\n        \"direction\": 165,\n        \"zTranslation\": 15\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121.46484375, -23.88583769986199, 10],\n            [125.5078125, -27.488781168937983, 11],\n            [129.638671875, -25.562265014427492, 12],\n            [129.2431640625, -22.06527806776582, 13],\n            [124.93652343749999, -20.385825381874263, 14],\n            [121.46484375, -23.88583769986199, 10]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/test.ts",
    "content": "import { Feature } from \"geojson\";\nimport fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { truncate } from \"@turf/truncate\";\nimport {\n  point,\n  lineString,\n  geometryCollection,\n  featureCollection,\n} from \"@turf/helpers\";\nimport { transformTranslate as translate } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename) as Feature,\n  };\n});\n\ntest(\"translate\", (t) => {\n  for (const { filename, name, geojson } of fixtures) {\n    let { distance, direction, units, zTranslation } = geojson.properties || {};\n\n    const translated = translate(geojson, distance, direction, {\n      units,\n      zTranslation,\n    });\n    const result = featureCollection([\n      colorize(truncate(translated, { precision: 6, coordinates: 3 })),\n      geojson,\n    ]);\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, result);\n    t.deepLooseEqual(\n      result,\n      loadJsonFileSync(directories.out + filename),\n      name\n    );\n  }\n\n  t.end();\n});\n\ntest(\"translate -- throws\", (t) => {\n  const pt = point([-70.823364, -33.553984]);\n\n  // @ts-expect-error intentional invalid parameter\n  t.throws(() => translate(null, 100, -29), \"missing geojson\");\n  // @ts-expect-error intentional invalid parameter\n  t.throws(() => translate(pt, null, 98), \"missing distance\");\n  // @ts-expect-error intentional invalid parameter\n  t.throws(() => translate(pt, 23, null), \"missing direction\");\n  // @ts-expect-error intentional invalid parameter\n  t.throws(() => translate(pt, 56, 57, { units: \"foo\" }), \"invalid units\");\n  t.throws(\n    // @ts-expect-error intentional invalid parameter\n    () => translate(pt, 56, 57, { zTranslation: \"foo\" }),\n    \"invalid zTranslation\"\n  );\n\n  t.end();\n});\n\ntest(\"negative distance handling\", (t) => {\n  const result = translate(point([0, 0]), 10, 0);\n  const result2 = translate(point([0, 0]), -10, 0);\n  t.deepEqual(result, {\n    type: \"Feature\",\n    properties: {},\n    geometry: { type: \"Point\", coordinates: [0, 0.08993203637245381] },\n  });\n  t.deepEqual(result2, {\n    type: \"Feature\",\n    properties: {},\n    geometry: { type: \"Point\", coordinates: [0, -0.08993203637245381] },\n  });\n  t.end();\n});\n\ntest(\"rotate -- mutated input\", (t) => {\n  const line = lineString([\n    [10, 10],\n    [12, 15],\n  ]);\n  const lineBefore = JSON.parse(JSON.stringify(line));\n\n  translate(line, 100, 50);\n  t.deepEqual(line, lineBefore, \"input should NOT be mutated\");\n\n  translate(line, 100, 50, { units: \"kilometers\", mutate: true });\n  t.deepEqual(\n    truncate(line, { precision: 1 }),\n    lineString([\n      [10.7, 10.6],\n      [12.7, 15.6],\n    ]),\n    \"input should be mutated\"\n  );\n  t.end();\n});\n\ntest(\"rotate -- geometry support\", (t) => {\n  const line = lineString([\n    [10, 10],\n    [12, 15],\n  ]);\n  t.assert(\n    translate(geometryCollection([line.geometry]), 100, 50),\n    \"geometryCollection support\"\n  );\n  t.assert(\n    translate(geometryCollection([line.geometry]).geometry, 100, 50),\n    \"geometryCollection support\"\n  );\n  t.assert(\n    translate(featureCollection([line]), 100, 50),\n    \"featureCollection support\"\n  );\n  t.assert(translate(line.geometry, 100, 50), \"geometry line support\");\n  t.assert(translate(line.geometry, 100, 50), \"geometry pt support\");\n  t.assert(translate(line, 0, 100), \"shortcut no-motion\");\n  t.end();\n});\n\n// style result\nfunction colorize(geojson: Feature) {\n  // We are going to add some properties, so make sure properties attribute is\n  // present.\n  geojson.properties = geojson.properties ?? {};\n  if (\n    geojson.geometry.type === \"Point\" ||\n    geojson.geometry.type === \"MultiPoint\"\n  ) {\n    geojson.properties[\"marker-color\"] = \"#F00\";\n    geojson.properties[\"marker-symbol\"] = \"star\";\n  } else {\n    geojson.properties[\"stroke\"] = \"#F00\";\n    geojson.properties[\"stroke-width\"] = 4;\n  }\n  return geojson;\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-transform-translate/types.ts",
    "content": "import { Point, Feature, Polygon } from \"geojson\";\nimport { point, polygon, featureCollection } from \"@turf/helpers\";\nimport { transformTranslate as translate } from \"./index.js\";\n\nconst pt = point([0, 0]);\nconst poly = polygon([\n  [\n    [0, 29],\n    [3.5, 29],\n    [2.5, 32],\n    [0, 29],\n  ],\n]);\n\n// Does not mutate Geometry type\nconst translatedPt: Point = translate(pt.geometry, 100, 35);\nconst translatedPoly: Feature<Polygon> = translate(poly, 100, 35);\n\n// Diferent Geometry inputs\ntranslate(pt.geometry, 100, 35);\ntranslate(poly.geometry, 100, 35);\ntranslate(featureCollection([poly]), 100, 35);\n\n// All params\ntranslate(poly, 100, 35, { units: \"kilometers\" });\ntranslate(poly, 100, 35, { units: \"kilometers\", zTranslation: 10 });\ntranslate(poly, 100, 35, {\n  units: \"kilometers\",\n  zTranslation: 10,\n  mutate: true,\n});\n"
  },
  {
    "path": "packages/turf-triangle-grid/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-triangle-grid/README.md",
    "content": "# @turf/triangle-grid\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## triangleGrid\n\nCreates a grid of triangular polygons.\n\n### Parameters\n\n*   `bbox` **[BBox][1]** extent of grid in \\[minX, minY, maxX, maxY] order\n*   `cellSide` **[number][2]** dimension of each grid cell.  Two triangles are created in each cell.\n*   `options` **[Object][3]** Optional parameters (optional, default `{}`)\n\n    *   `options.units` **Units** used in calculating cellSide.  Supports all valid Turf [Units][4] (optional, default `'kilometers'`)\n    *   `options.mask` **[Feature][5]<[Polygon][6]>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it\n    *   `options.properties` **[Object][3]** passed to each point of the grid (optional, default `{}`)\n\n### Examples\n\n```javascript\nvar bbox = [-95, 30 ,-85, 40];\nvar cellSide = 50;\nvar options = {units: 'miles'};\n\nvar triangleGrid = turf.triangleGrid(bbox, cellSide, options);\n\n//addToMap\nvar addToMap = [triangleGrid];\n```\n\nReturns **[FeatureCollection][7]<[Polygon][6]>** grid of polygons\n\n[1]: https://tools.ietf.org/html/rfc7946#section-5\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[4]: https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n[6]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[7]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/triangle-grid\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-triangle-grid/bench.ts",
    "content": "import Benchmark from \"benchmark\";\nimport { triangleGrid as grid } from \"./index.js\";\n\n// prettier-ignore\nvar bbox1 = [\n  -96.6357421875,\n  31.12819929911196,\n  -84.9462890625,\n  40.58058466412764,\n];\n\nvar highres = grid(bbox1, 100, \"miles\").features.length;\nvar midres = grid(bbox1, 10, \"miles\").features.length;\nvar lowres = grid(bbox1, 1, \"miles\").features.length;\nvar suite = new Benchmark.Suite(\"turf-triangle-grid\");\nsuite\n  .add(\"turf-triangle-grid -- \" + highres + \" cells\", function () {\n    grid(bbox1, 100, \"miles\");\n  })\n  .add(\"turf-triangle-grid -- \" + midres + \" cells\", function () {\n    grid(bbox1, 10, \"miles\");\n  })\n  .add(\"turf-triangle-grid -- \" + lowres + \" cells\", function () {\n    grid(bbox1, 1, \"miles\");\n  })\n  .on(\"cycle\", function (event) {\n    console.log(String(event.target));\n  })\n  .run();\n"
  },
  {
    "path": "packages/turf-triangle-grid/index.ts",
    "content": "import {\n  BBox,\n  Feature,\n  Polygon,\n  FeatureCollection,\n  GeoJsonProperties,\n} from \"geojson\";\nimport { distance } from \"@turf/distance\";\nimport { intersect } from \"@turf/intersect\";\nimport { polygon, featureCollection, Units } from \"@turf/helpers\";\n\n/**\n * Creates a grid of triangular polygons.\n *\n * @function\n * @param {BBox} bbox extent of grid in [minX, minY, maxX, maxY] order\n * @param {number} cellSide dimension of each grid cell.  Two triangles are created in each cell.\n * @param {Object} [options={}] Optional parameters\n * @param {Units} [options.units='kilometers'] used in calculating cellSide.  Supports all valid Turf {@link https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md Units}\n * @param {Feature<Polygon>} [options.mask] if passed a Polygon or MultiPolygon, the grid Points will be created only inside it\n * @param {Object} [options.properties={}] passed to each point of the grid\n * @returns {FeatureCollection<Polygon>} grid of polygons\n * @example\n * var bbox = [-95, 30 ,-85, 40];\n * var cellSide = 50;\n * var options = {units: 'miles'};\n *\n * var triangleGrid = turf.triangleGrid(bbox, cellSide, options);\n *\n * //addToMap\n * var addToMap = [triangleGrid];\n */\nfunction triangleGrid<P extends GeoJsonProperties = GeoJsonProperties>(\n  bbox: BBox,\n  cellSide: number,\n  options: {\n    units?: Units;\n    properties?: P;\n    mask?: Feature<Polygon>;\n  } = {}\n): FeatureCollection<Polygon, P> {\n  // Containers\n  var results: Feature<Polygon, P>[] = [];\n\n  // Input Validation is being handled by Typescript\n\n  // if (cellSide === null || cellSide === undefined) throw new Error('cellSide is required');\n  // if (!isNumber(cellSide)) throw new Error('cellSide is invalid');\n  // if (!bbox) throw new Error('bbox is required');\n  // if (!Array.isArray(bbox)) throw new Error('bbox must be array');\n  // if (bbox.length !== 4) throw new Error('bbox must contain 4 numbers');\n  // if (mask && ['Polygon', 'MultiPolygon'].indexOf(getType(mask)) === -1) throw new Error('options.mask must be a (Multi)Polygon');\n\n  // Main\n  var xFraction =\n    cellSide / distance([bbox[0], bbox[1]], [bbox[2], bbox[1]], options);\n  var cellWidth = xFraction * (bbox[2] - bbox[0]);\n  var yFraction =\n    cellSide / distance([bbox[0], bbox[1]], [bbox[0], bbox[3]], options);\n  var cellHeight = yFraction * (bbox[3] - bbox[1]);\n\n  var xi = 0;\n  var currentX = bbox[0];\n  while (currentX <= bbox[2]) {\n    var yi = 0;\n    var currentY = bbox[1];\n    while (currentY <= bbox[3]) {\n      var cellTriangle1 = null;\n      var cellTriangle2 = null;\n\n      if (xi % 2 === 0 && yi % 2 === 0) {\n        cellTriangle1 = polygon(\n          [\n            [\n              [currentX, currentY],\n              [currentX, currentY + cellHeight],\n              [currentX + cellWidth, currentY],\n              [currentX, currentY],\n            ],\n          ],\n          options.properties\n        );\n        cellTriangle2 = polygon(\n          [\n            [\n              [currentX, currentY + cellHeight],\n              [currentX + cellWidth, currentY + cellHeight],\n              [currentX + cellWidth, currentY],\n              [currentX, currentY + cellHeight],\n            ],\n          ],\n          options.properties\n        );\n      } else if (xi % 2 === 0 && yi % 2 === 1) {\n        cellTriangle1 = polygon(\n          [\n            [\n              [currentX, currentY],\n              [currentX + cellWidth, currentY + cellHeight],\n              [currentX + cellWidth, currentY],\n              [currentX, currentY],\n            ],\n          ],\n          options.properties\n        );\n        cellTriangle2 = polygon(\n          [\n            [\n              [currentX, currentY],\n              [currentX, currentY + cellHeight],\n              [currentX + cellWidth, currentY + cellHeight],\n              [currentX, currentY],\n            ],\n          ],\n          options.properties\n        );\n      } else if (yi % 2 === 0 && xi % 2 === 1) {\n        cellTriangle1 = polygon(\n          [\n            [\n              [currentX, currentY],\n              [currentX, currentY + cellHeight],\n              [currentX + cellWidth, currentY + cellHeight],\n              [currentX, currentY],\n            ],\n          ],\n          options.properties\n        );\n        cellTriangle2 = polygon(\n          [\n            [\n              [currentX, currentY],\n              [currentX + cellWidth, currentY + cellHeight],\n              [currentX + cellWidth, currentY],\n              [currentX, currentY],\n            ],\n          ],\n          options.properties\n        );\n      } else if (yi % 2 === 1 && xi % 2 === 1) {\n        cellTriangle1 = polygon(\n          [\n            [\n              [currentX, currentY],\n              [currentX, currentY + cellHeight],\n              [currentX + cellWidth, currentY],\n              [currentX, currentY],\n            ],\n          ],\n          options.properties\n        );\n        cellTriangle2 = polygon(\n          [\n            [\n              [currentX, currentY + cellHeight],\n              [currentX + cellWidth, currentY + cellHeight],\n              [currentX + cellWidth, currentY],\n              [currentX, currentY + cellHeight],\n            ],\n          ],\n          options.properties\n        );\n      }\n      if (options.mask) {\n        if (intersect(featureCollection([options.mask, cellTriangle1!])))\n          results.push(cellTriangle1!);\n        if (intersect(featureCollection([options.mask, cellTriangle2!])))\n          results.push(cellTriangle2!);\n      } else {\n        results.push(cellTriangle1!);\n        results.push(cellTriangle2!);\n      }\n\n      currentY += cellHeight;\n      yi++;\n    }\n    xi++;\n    currentX += cellWidth;\n  }\n  return featureCollection(results);\n}\n\nexport { triangleGrid };\nexport default triangleGrid;\n"
  },
  {
    "path": "packages/turf-triangle-grid/package.json",
    "content": "{\n  \"name\": \"@turf/triangle-grid\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Creates a triangular grid within a bounding box.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"triangle\",\n    \"grid\",\n    \"polygons\",\n    \"analysis\",\n    \"gis\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/bbox-polygon\": \"workspace:*\",\n    \"@turf/truncate\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/distance\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/intersect\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-triangle-grid/test/in/big-bbox.json",
    "content": "{\n  \"bbox\": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629],\n  \"cellSide\": 500,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-triangle-grid/test/in/fiji-10-miles.json",
    "content": "{\n  \"bbox\": [\n    -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812\n  ],\n  \"cellSide\": 10,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-triangle-grid/test/in/london-20-miles.json",
    "content": "{\n  \"bbox\": [-0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154],\n  \"cellSide\": 20,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-triangle-grid/test/in/piedemont-mask.json",
    "content": "{\n  \"bbox\": [6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049],\n  \"cellSide\": 12.5,\n  \"units\": \"miles\",\n  \"mask\": {\n    \"type\": \"Feature\",\n    \"properties\": {\n      \"stroke\": \"#00F\",\n      \"stroke-width\": 6,\n      \"fill-opacity\": 0.3,\n      \"fill\": \"#00F\"\n    },\n    \"geometry\": {\n      \"type\": \"Polygon\",\n      \"coordinates\": [\n        [\n          [8.382568359375012, 46.456781428126554],\n          [8.313903808593762, 46.41892578708079],\n          [8.31939697265626, 46.379149058330775],\n          [8.099670410156264, 46.26913887119718],\n          [8.171081542968762, 46.1893382140708],\n          [7.8799438476562615, 45.94160076422079],\n          [7.907409667968761, 45.627484212338246],\n          [7.7247619628906365, 45.55444852652113],\n          [7.5833129882812615, 45.5900172453615],\n          [7.484436035156261, 45.58136746810096],\n          [7.347106933593762, 45.527516684421215],\n          [7.116394042968763, 45.46976215263039],\n          [7.176818847656262, 45.408092022812276],\n          [7.094421386718762, 45.222677199620094],\n          [6.980438232421887, 45.20719857986464],\n          [6.9515991210937615, 45.17332441090049],\n          [6.900787353515638, 45.166547157856016],\n          [6.900787353515638, 45.14621056019852],\n          [6.854095458984387, 45.1278045274732],\n          [6.7813110351562615, 45.164610651725425],\n          [6.749725341796888, 45.1394300814679],\n          [6.687927246093762, 45.1394300814679],\n          [6.6302490234375, 45.10987715527803],\n          [6.65496826171875, 45.069156265623505],\n          [6.6741943359375, 45.02015580433459],\n          [6.755218505859382, 45.0182143279711],\n          [6.749725341796875, 44.90744135615697],\n          [6.815643310546875, 44.872415981701394],\n          [6.900787353515625, 44.84515927771909],\n          [6.946105957031258, 44.86560301534198],\n          [7.017517089843757, 44.8344477567128],\n          [7.002410888671875, 44.78378451819761],\n          [7.032623291015625, 44.73210119404699],\n          [7.0751953125, 44.68330096401701],\n          [6.990051269531262, 44.69404054463802],\n          [6.8637084960937615, 44.51021754644927],\n          [6.9021606445312615, 44.36509667482153],\n          [7.055969238281263, 44.219615400229195],\n          [7.3965454101562615, 44.125056482685174],\n          [7.6712036132812615, 44.180234276372886],\n          [7.7151489257812615, 44.09350315285844],\n          [7.770080566406262, 44.136884638560495],\n          [8.02825927734376, 44.140826830775524],\n          [8.08868408203126, 44.321883129398586],\n          [8.247985839843762, 44.52196830685208],\n          [8.357849121093762, 44.48670891691767],\n          [8.599548339843762, 44.537632301346086],\n          [8.665466308593762, 44.58851118961441],\n          [8.802795410156264, 44.51805165000559],\n          [8.912658691406264, 44.592423107178654],\n          [8.912658691406264, 44.67841867818858],\n          [9.017028808593762, 44.6725593921204],\n          [9.139251708984387, 44.57970841241188],\n          [9.213409423828137, 44.6061127451739],\n          [9.221649169921887, 44.75453548416007],\n          [9.066467285156264, 44.85002749260048],\n          [8.896179199218762, 45.05606124274412],\n          [8.775329589843762, 45.01530198999206],\n          [8.659973144531262, 45.02695045318543],\n          [8.522644042968764, 45.28841433167348],\n          [8.550109863281262, 45.3617951914213],\n          [8.63800048828126, 45.34828480683997],\n          [8.676452636718762, 45.30773430004872],\n          [8.76983642578126, 45.35407536661812],\n          [8.734130859375014, 45.38494834654319],\n          [8.846740722656262, 45.40423540168332],\n          [8.725891113281262, 45.51789504294005],\n          [8.654479980468762, 45.70809729528788],\n          [8.56109619140626, 45.79242458189573],\n          [8.599548339843762, 45.832626782661585],\n          [8.580322265625012, 45.90529985724794],\n          [8.725891113281262, 46.02557483126793],\n          [8.717651367187512, 46.0998999106273],\n          [8.610534667968762, 46.14178273759229],\n          [8.539123535156262, 46.221652456379104],\n          [8.451232910156262, 46.25774588045678],\n          [8.445739746093764, 46.30899569419854],\n          [8.47045898437501, 46.34313560260196],\n          [8.462219238281264, 46.462457505996056],\n          [8.382568359375012, 46.456781428126554]\n        ]\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "packages/turf-triangle-grid/test/in/properties.json",
    "content": "{\n  \"bbox\": [2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261],\n  \"properties\": {\n    \"marker-color\": \"#0ff\"\n  },\n  \"cellSide\": 1,\n  \"mask\": {\n    \"type\": \"Feature\",\n    \"properties\": {},\n    \"geometry\": {\n      \"type\": \"Polygon\",\n      \"coordinates\": [\n        [\n          [2.223186492919922, 41.416856461155575],\n          [2.1716880798339844, 41.44182560856202],\n          [2.1636199951171875, 41.41608406639095],\n          [2.1334075927734375, 41.407200866420744],\n          [2.1845626831054683, 41.37977115211044],\n          [2.223186492919922, 41.416856461155575]\n        ]\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "packages/turf-triangle-grid/test/in/resolute.json",
    "content": "{\n  \"bbox\": [-95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785],\n  \"cellSide\": 12.5,\n  \"units\": \"miles\"\n}\n"
  },
  {
    "path": "packages/turf-triangle-grid/test/out/big-bbox.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -80.647035],\n            [-220.78125, -73.410456],\n            [-146.433048, -80.647035],\n            [-220.78125, -80.647035]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -73.410456],\n            [-146.433048, -73.410456],\n            [-146.433048, -80.647035],\n            [-220.78125, -73.410456]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -73.410456],\n            [-146.433048, -66.173876],\n            [-146.433048, -73.410456],\n            [-220.78125, -73.410456]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -73.410456],\n            [-220.78125, -66.173876],\n            [-146.433048, -66.173876],\n            [-220.78125, -73.410456]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -66.173876],\n            [-220.78125, -58.937297],\n            [-146.433048, -66.173876],\n            [-220.78125, -66.173876]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -58.937297],\n            [-146.433048, -58.937297],\n            [-146.433048, -66.173876],\n            [-220.78125, -58.937297]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -58.937297],\n            [-146.433048, -51.700718],\n            [-146.433048, -58.937297],\n            [-220.78125, -58.937297]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -58.937297],\n            [-220.78125, -51.700718],\n            [-146.433048, -51.700718],\n            [-220.78125, -58.937297]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -51.700718],\n            [-220.78125, -44.464139],\n            [-146.433048, -51.700718],\n            [-220.78125, -51.700718]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -44.464139],\n            [-146.433048, -44.464139],\n            [-146.433048, -51.700718],\n            [-220.78125, -44.464139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -44.464139],\n            [-146.433048, -37.22756],\n            [-146.433048, -44.464139],\n            [-220.78125, -44.464139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -44.464139],\n            [-220.78125, -37.22756],\n            [-146.433048, -37.22756],\n            [-220.78125, -44.464139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -37.22756],\n            [-220.78125, -29.990981],\n            [-146.433048, -37.22756],\n            [-220.78125, -37.22756]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -29.990981],\n            [-146.433048, -29.990981],\n            [-146.433048, -37.22756],\n            [-220.78125, -29.990981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -29.990981],\n            [-146.433048, -22.754401],\n            [-146.433048, -29.990981],\n            [-220.78125, -29.990981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -29.990981],\n            [-220.78125, -22.754401],\n            [-146.433048, -22.754401],\n            [-220.78125, -29.990981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -22.754401],\n            [-220.78125, -15.517822],\n            [-146.433048, -22.754401],\n            [-220.78125, -22.754401]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -15.517822],\n            [-146.433048, -15.517822],\n            [-146.433048, -22.754401],\n            [-220.78125, -15.517822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -15.517822],\n            [-146.433048, -8.281243],\n            [-146.433048, -15.517822],\n            [-220.78125, -15.517822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -15.517822],\n            [-220.78125, -8.281243],\n            [-146.433048, -8.281243],\n            [-220.78125, -15.517822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -8.281243],\n            [-220.78125, -1.044664],\n            [-146.433048, -8.281243],\n            [-220.78125, -8.281243]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -1.044664],\n            [-146.433048, -1.044664],\n            [-146.433048, -8.281243],\n            [-220.78125, -1.044664]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -1.044664],\n            [-146.433048, 6.191915],\n            [-146.433048, -1.044664],\n            [-220.78125, -1.044664]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -1.044664],\n            [-220.78125, 6.191915],\n            [-146.433048, 6.191915],\n            [-220.78125, -1.044664]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 6.191915],\n            [-220.78125, 13.428494],\n            [-146.433048, 6.191915],\n            [-220.78125, 6.191915]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 13.428494],\n            [-146.433048, 13.428494],\n            [-146.433048, 6.191915],\n            [-220.78125, 13.428494]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 13.428494],\n            [-146.433048, 20.665073],\n            [-146.433048, 13.428494],\n            [-220.78125, 13.428494]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 13.428494],\n            [-220.78125, 20.665073],\n            [-146.433048, 20.665073],\n            [-220.78125, 13.428494]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 20.665073],\n            [-220.78125, 27.901653],\n            [-146.433048, 20.665073],\n            [-220.78125, 20.665073]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 27.901653],\n            [-146.433048, 27.901653],\n            [-146.433048, 20.665073],\n            [-220.78125, 27.901653]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 27.901653],\n            [-146.433048, 35.138232],\n            [-146.433048, 27.901653],\n            [-220.78125, 27.901653]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 27.901653],\n            [-220.78125, 35.138232],\n            [-146.433048, 35.138232],\n            [-220.78125, 27.901653]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 35.138232],\n            [-220.78125, 42.374811],\n            [-146.433048, 35.138232],\n            [-220.78125, 35.138232]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 42.374811],\n            [-146.433048, 42.374811],\n            [-146.433048, 35.138232],\n            [-220.78125, 42.374811]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 42.374811],\n            [-146.433048, 49.61139],\n            [-146.433048, 42.374811],\n            [-220.78125, 42.374811]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 42.374811],\n            [-220.78125, 49.61139],\n            [-146.433048, 49.61139],\n            [-220.78125, 42.374811]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 49.61139],\n            [-220.78125, 56.847969],\n            [-146.433048, 49.61139],\n            [-220.78125, 49.61139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 56.847969],\n            [-146.433048, 56.847969],\n            [-146.433048, 49.61139],\n            [-220.78125, 56.847969]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 56.847969],\n            [-146.433048, 64.084548],\n            [-146.433048, 56.847969],\n            [-220.78125, 56.847969]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 56.847969],\n            [-220.78125, 64.084548],\n            [-146.433048, 64.084548],\n            [-220.78125, 56.847969]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 64.084548],\n            [-220.78125, 71.321128],\n            [-146.433048, 64.084548],\n            [-220.78125, 64.084548]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 71.321128],\n            [-146.433048, 71.321128],\n            [-146.433048, 64.084548],\n            [-220.78125, 71.321128]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 71.321128],\n            [-146.433048, 78.557707],\n            [-146.433048, 71.321128],\n            [-220.78125, 71.321128]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, 71.321128],\n            [-220.78125, 78.557707],\n            [-146.433048, 78.557707],\n            [-220.78125, 71.321128]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -80.647035],\n            [-146.433048, -73.410456],\n            [-72.084846, -73.410456],\n            [-146.433048, -80.647035]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -80.647035],\n            [-72.084846, -73.410456],\n            [-72.084846, -80.647035],\n            [-146.433048, -80.647035]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -73.410456],\n            [-146.433048, -66.173876],\n            [-72.084846, -73.410456],\n            [-146.433048, -73.410456]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -66.173876],\n            [-72.084846, -66.173876],\n            [-72.084846, -73.410456],\n            [-146.433048, -66.173876]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -66.173876],\n            [-146.433048, -58.937297],\n            [-72.084846, -58.937297],\n            [-146.433048, -66.173876]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -66.173876],\n            [-72.084846, -58.937297],\n            [-72.084846, -66.173876],\n            [-146.433048, -66.173876]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -58.937297],\n            [-146.433048, -51.700718],\n            [-72.084846, -58.937297],\n            [-146.433048, -58.937297]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -51.700718],\n            [-72.084846, -51.700718],\n            [-72.084846, -58.937297],\n            [-146.433048, -51.700718]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -51.700718],\n            [-146.433048, -44.464139],\n            [-72.084846, -44.464139],\n            [-146.433048, -51.700718]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -51.700718],\n            [-72.084846, -44.464139],\n            [-72.084846, -51.700718],\n            [-146.433048, -51.700718]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -44.464139],\n            [-146.433048, -37.22756],\n            [-72.084846, -44.464139],\n            [-146.433048, -44.464139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -37.22756],\n            [-72.084846, -37.22756],\n            [-72.084846, -44.464139],\n            [-146.433048, -37.22756]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -37.22756],\n            [-146.433048, -29.990981],\n            [-72.084846, -29.990981],\n            [-146.433048, -37.22756]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -37.22756],\n            [-72.084846, -29.990981],\n            [-72.084846, -37.22756],\n            [-146.433048, -37.22756]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -29.990981],\n            [-146.433048, -22.754401],\n            [-72.084846, -29.990981],\n            [-146.433048, -29.990981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -22.754401],\n            [-72.084846, -22.754401],\n            [-72.084846, -29.990981],\n            [-146.433048, -22.754401]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -22.754401],\n            [-146.433048, -15.517822],\n            [-72.084846, -15.517822],\n            [-146.433048, -22.754401]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -22.754401],\n            [-72.084846, -15.517822],\n            [-72.084846, -22.754401],\n            [-146.433048, -22.754401]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -15.517822],\n            [-146.433048, -8.281243],\n            [-72.084846, -15.517822],\n            [-146.433048, -15.517822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -8.281243],\n            [-72.084846, -8.281243],\n            [-72.084846, -15.517822],\n            [-146.433048, -8.281243]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -8.281243],\n            [-146.433048, -1.044664],\n            [-72.084846, -1.044664],\n            [-146.433048, -8.281243]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -8.281243],\n            [-72.084846, -1.044664],\n            [-72.084846, -8.281243],\n            [-146.433048, -8.281243]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, -1.044664],\n            [-146.433048, 6.191915],\n            [-72.084846, -1.044664],\n            [-146.433048, -1.044664]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 6.191915],\n            [-72.084846, 6.191915],\n            [-72.084846, -1.044664],\n            [-146.433048, 6.191915]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 6.191915],\n            [-146.433048, 13.428494],\n            [-72.084846, 13.428494],\n            [-146.433048, 6.191915]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 6.191915],\n            [-72.084846, 13.428494],\n            [-72.084846, 6.191915],\n            [-146.433048, 6.191915]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 13.428494],\n            [-146.433048, 20.665073],\n            [-72.084846, 13.428494],\n            [-146.433048, 13.428494]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 20.665073],\n            [-72.084846, 20.665073],\n            [-72.084846, 13.428494],\n            [-146.433048, 20.665073]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 20.665073],\n            [-146.433048, 27.901653],\n            [-72.084846, 27.901653],\n            [-146.433048, 20.665073]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 20.665073],\n            [-72.084846, 27.901653],\n            [-72.084846, 20.665073],\n            [-146.433048, 20.665073]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 27.901653],\n            [-146.433048, 35.138232],\n            [-72.084846, 27.901653],\n            [-146.433048, 27.901653]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 35.138232],\n            [-72.084846, 35.138232],\n            [-72.084846, 27.901653],\n            [-146.433048, 35.138232]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 35.138232],\n            [-146.433048, 42.374811],\n            [-72.084846, 42.374811],\n            [-146.433048, 35.138232]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 35.138232],\n            [-72.084846, 42.374811],\n            [-72.084846, 35.138232],\n            [-146.433048, 35.138232]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 42.374811],\n            [-146.433048, 49.61139],\n            [-72.084846, 42.374811],\n            [-146.433048, 42.374811]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 49.61139],\n            [-72.084846, 49.61139],\n            [-72.084846, 42.374811],\n            [-146.433048, 49.61139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 49.61139],\n            [-146.433048, 56.847969],\n            [-72.084846, 56.847969],\n            [-146.433048, 49.61139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 49.61139],\n            [-72.084846, 56.847969],\n            [-72.084846, 49.61139],\n            [-146.433048, 49.61139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 56.847969],\n            [-146.433048, 64.084548],\n            [-72.084846, 56.847969],\n            [-146.433048, 56.847969]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 64.084548],\n            [-72.084846, 64.084548],\n            [-72.084846, 56.847969],\n            [-146.433048, 64.084548]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 64.084548],\n            [-146.433048, 71.321128],\n            [-72.084846, 71.321128],\n            [-146.433048, 64.084548]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 64.084548],\n            [-72.084846, 71.321128],\n            [-72.084846, 64.084548],\n            [-146.433048, 64.084548]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 71.321128],\n            [-146.433048, 78.557707],\n            [-72.084846, 71.321128],\n            [-146.433048, 71.321128]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-146.433048, 78.557707],\n            [-72.084846, 78.557707],\n            [-72.084846, 71.321128],\n            [-146.433048, 78.557707]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -80.647035],\n            [-72.084846, -73.410456],\n            [2.263356, -80.647035],\n            [-72.084846, -80.647035]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -73.410456],\n            [2.263356, -73.410456],\n            [2.263356, -80.647035],\n            [-72.084846, -73.410456]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -73.410456],\n            [2.263356, -66.173876],\n            [2.263356, -73.410456],\n            [-72.084846, -73.410456]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -73.410456],\n            [-72.084846, -66.173876],\n            [2.263356, -66.173876],\n            [-72.084846, -73.410456]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -66.173876],\n            [-72.084846, -58.937297],\n            [2.263356, -66.173876],\n            [-72.084846, -66.173876]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -58.937297],\n            [2.263356, -58.937297],\n            [2.263356, -66.173876],\n            [-72.084846, -58.937297]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -58.937297],\n            [2.263356, -51.700718],\n            [2.263356, -58.937297],\n            [-72.084846, -58.937297]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -58.937297],\n            [-72.084846, -51.700718],\n            [2.263356, -51.700718],\n            [-72.084846, -58.937297]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -51.700718],\n            [-72.084846, -44.464139],\n            [2.263356, -51.700718],\n            [-72.084846, -51.700718]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -44.464139],\n            [2.263356, -44.464139],\n            [2.263356, -51.700718],\n            [-72.084846, -44.464139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -44.464139],\n            [2.263356, -37.22756],\n            [2.263356, -44.464139],\n            [-72.084846, -44.464139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -44.464139],\n            [-72.084846, -37.22756],\n            [2.263356, -37.22756],\n            [-72.084846, -44.464139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -37.22756],\n            [-72.084846, -29.990981],\n            [2.263356, -37.22756],\n            [-72.084846, -37.22756]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -29.990981],\n            [2.263356, -29.990981],\n            [2.263356, -37.22756],\n            [-72.084846, -29.990981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -29.990981],\n            [2.263356, -22.754401],\n            [2.263356, -29.990981],\n            [-72.084846, -29.990981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -29.990981],\n            [-72.084846, -22.754401],\n            [2.263356, -22.754401],\n            [-72.084846, -29.990981]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -22.754401],\n            [-72.084846, -15.517822],\n            [2.263356, -22.754401],\n            [-72.084846, -22.754401]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -15.517822],\n            [2.263356, -15.517822],\n            [2.263356, -22.754401],\n            [-72.084846, -15.517822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -15.517822],\n            [2.263356, -8.281243],\n            [2.263356, -15.517822],\n            [-72.084846, -15.517822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -15.517822],\n            [-72.084846, -8.281243],\n            [2.263356, -8.281243],\n            [-72.084846, -15.517822]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -8.281243],\n            [-72.084846, -1.044664],\n            [2.263356, -8.281243],\n            [-72.084846, -8.281243]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -1.044664],\n            [2.263356, -1.044664],\n            [2.263356, -8.281243],\n            [-72.084846, -1.044664]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -1.044664],\n            [2.263356, 6.191915],\n            [2.263356, -1.044664],\n            [-72.084846, -1.044664]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, -1.044664],\n            [-72.084846, 6.191915],\n            [2.263356, 6.191915],\n            [-72.084846, -1.044664]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 6.191915],\n            [-72.084846, 13.428494],\n            [2.263356, 6.191915],\n            [-72.084846, 6.191915]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 13.428494],\n            [2.263356, 13.428494],\n            [2.263356, 6.191915],\n            [-72.084846, 13.428494]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 13.428494],\n            [2.263356, 20.665073],\n            [2.263356, 13.428494],\n            [-72.084846, 13.428494]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 13.428494],\n            [-72.084846, 20.665073],\n            [2.263356, 20.665073],\n            [-72.084846, 13.428494]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 20.665073],\n            [-72.084846, 27.901653],\n            [2.263356, 20.665073],\n            [-72.084846, 20.665073]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 27.901653],\n            [2.263356, 27.901653],\n            [2.263356, 20.665073],\n            [-72.084846, 27.901653]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 27.901653],\n            [2.263356, 35.138232],\n            [2.263356, 27.901653],\n            [-72.084846, 27.901653]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 27.901653],\n            [-72.084846, 35.138232],\n            [2.263356, 35.138232],\n            [-72.084846, 27.901653]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 35.138232],\n            [-72.084846, 42.374811],\n            [2.263356, 35.138232],\n            [-72.084846, 35.138232]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 42.374811],\n            [2.263356, 42.374811],\n            [2.263356, 35.138232],\n            [-72.084846, 42.374811]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 42.374811],\n            [2.263356, 49.61139],\n            [2.263356, 42.374811],\n            [-72.084846, 42.374811]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 42.374811],\n            [-72.084846, 49.61139],\n            [2.263356, 49.61139],\n            [-72.084846, 42.374811]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 49.61139],\n            [-72.084846, 56.847969],\n            [2.263356, 49.61139],\n            [-72.084846, 49.61139]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 56.847969],\n            [2.263356, 56.847969],\n            [2.263356, 49.61139],\n            [-72.084846, 56.847969]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 56.847969],\n            [2.263356, 64.084548],\n            [2.263356, 56.847969],\n            [-72.084846, 56.847969]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 56.847969],\n            [-72.084846, 64.084548],\n            [2.263356, 64.084548],\n            [-72.084846, 56.847969]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 64.084548],\n            [-72.084846, 71.321128],\n            [2.263356, 64.084548],\n            [-72.084846, 64.084548]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 71.321128],\n            [2.263356, 71.321128],\n            [2.263356, 64.084548],\n            [-72.084846, 71.321128]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 71.321128],\n            [2.263356, 78.557707],\n            [2.263356, 71.321128],\n            [-72.084846, 71.321128]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-72.084846, 71.321128],\n            [-72.084846, 78.557707],\n            [2.263356, 78.557707],\n            [-72.084846, 71.321128]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-220.78125, -80.64703474739618],\n            [-29.53125, -80.64703474739618],\n            [-29.53125, 78.34941069014629],\n            [-220.78125, 78.34941069014629],\n            [-220.78125, -80.64703474739618]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-triangle-grid/test/out/fiji-10-miles.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.346069, -17.167034],\n            [-180.346069, -17.022303],\n            [-180.194589, -17.167034],\n            [-180.346069, -17.167034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.346069, -17.022303],\n            [-180.194589, -17.022303],\n            [-180.194589, -17.167034],\n            [-180.346069, -17.022303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.346069, -17.022303],\n            [-180.194589, -16.877571],\n            [-180.194589, -17.022303],\n            [-180.346069, -17.022303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.346069, -17.022303],\n            [-180.346069, -16.877571],\n            [-180.194589, -16.877571],\n            [-180.346069, -17.022303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.346069, -16.877571],\n            [-180.346069, -16.73284],\n            [-180.194589, -16.877571],\n            [-180.346069, -16.877571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.346069, -16.73284],\n            [-180.194589, -16.73284],\n            [-180.194589, -16.877571],\n            [-180.346069, -16.73284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.346069, -16.73284],\n            [-180.194589, -16.588108],\n            [-180.194589, -16.73284],\n            [-180.346069, -16.73284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.346069, -16.73284],\n            [-180.346069, -16.588108],\n            [-180.194589, -16.588108],\n            [-180.346069, -16.73284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.346069, -16.588108],\n            [-180.346069, -16.443377],\n            [-180.194589, -16.588108],\n            [-180.346069, -16.588108]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.346069, -16.443377],\n            [-180.194589, -16.443377],\n            [-180.194589, -16.588108],\n            [-180.346069, -16.443377]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.194589, -17.167034],\n            [-180.194589, -17.022303],\n            [-180.043109, -17.022303],\n            [-180.194589, -17.167034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.194589, -17.167034],\n            [-180.043109, -17.022303],\n            [-180.043109, -17.167034],\n            [-180.194589, -17.167034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.194589, -17.022303],\n            [-180.194589, -16.877571],\n            [-180.043109, -17.022303],\n            [-180.194589, -17.022303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.194589, -16.877571],\n            [-180.043109, -16.877571],\n            [-180.043109, -17.022303],\n            [-180.194589, -16.877571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.194589, -16.877571],\n            [-180.194589, -16.73284],\n            [-180.043109, -16.73284],\n            [-180.194589, -16.877571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.194589, -16.877571],\n            [-180.043109, -16.73284],\n            [-180.043109, -16.877571],\n            [-180.194589, -16.877571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.194589, -16.73284],\n            [-180.194589, -16.588108],\n            [-180.043109, -16.73284],\n            [-180.194589, -16.73284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.194589, -16.588108],\n            [-180.043109, -16.588108],\n            [-180.043109, -16.73284],\n            [-180.194589, -16.588108]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.194589, -16.588108],\n            [-180.194589, -16.443377],\n            [-180.043109, -16.443377],\n            [-180.194589, -16.588108]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.194589, -16.588108],\n            [-180.043109, -16.443377],\n            [-180.043109, -16.588108],\n            [-180.194589, -16.588108]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.043109, -17.167034],\n            [-180.043109, -17.022303],\n            [-179.891628, -17.167034],\n            [-180.043109, -17.167034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.043109, -17.022303],\n            [-179.891628, -17.022303],\n            [-179.891628, -17.167034],\n            [-180.043109, -17.022303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.043109, -17.022303],\n            [-179.891628, -16.877571],\n            [-179.891628, -17.022303],\n            [-180.043109, -17.022303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.043109, -17.022303],\n            [-180.043109, -16.877571],\n            [-179.891628, -16.877571],\n            [-180.043109, -17.022303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.043109, -16.877571],\n            [-180.043109, -16.73284],\n            [-179.891628, -16.877571],\n            [-180.043109, -16.877571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.043109, -16.73284],\n            [-179.891628, -16.73284],\n            [-179.891628, -16.877571],\n            [-180.043109, -16.73284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.043109, -16.73284],\n            [-179.891628, -16.588108],\n            [-179.891628, -16.73284],\n            [-180.043109, -16.73284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.043109, -16.73284],\n            [-180.043109, -16.588108],\n            [-179.891628, -16.588108],\n            [-180.043109, -16.73284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.043109, -16.588108],\n            [-180.043109, -16.443377],\n            [-179.891628, -16.588108],\n            [-180.043109, -16.588108]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.043109, -16.443377],\n            [-179.891628, -16.443377],\n            [-179.891628, -16.588108],\n            [-180.043109, -16.443377]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.891628, -17.167034],\n            [-179.891628, -17.022303],\n            [-179.740148, -17.022303],\n            [-179.891628, -17.167034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.891628, -17.167034],\n            [-179.740148, -17.022303],\n            [-179.740148, -17.167034],\n            [-179.891628, -17.167034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.891628, -17.022303],\n            [-179.891628, -16.877571],\n            [-179.740148, -17.022303],\n            [-179.891628, -17.022303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.891628, -16.877571],\n            [-179.740148, -16.877571],\n            [-179.740148, -17.022303],\n            [-179.891628, -16.877571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.891628, -16.877571],\n            [-179.891628, -16.73284],\n            [-179.740148, -16.73284],\n            [-179.891628, -16.877571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.891628, -16.877571],\n            [-179.740148, -16.73284],\n            [-179.740148, -16.877571],\n            [-179.891628, -16.877571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.891628, -16.73284],\n            [-179.891628, -16.588108],\n            [-179.740148, -16.73284],\n            [-179.891628, -16.73284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.891628, -16.588108],\n            [-179.740148, -16.588108],\n            [-179.740148, -16.73284],\n            [-179.891628, -16.588108]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.891628, -16.588108],\n            [-179.891628, -16.443377],\n            [-179.740148, -16.443377],\n            [-179.891628, -16.588108]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.891628, -16.588108],\n            [-179.740148, -16.443377],\n            [-179.740148, -16.588108],\n            [-179.891628, -16.588108]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.740148, -17.167034],\n            [-179.740148, -17.022303],\n            [-179.588667, -17.167034],\n            [-179.740148, -17.167034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.740148, -17.022303],\n            [-179.588667, -17.022303],\n            [-179.588667, -17.167034],\n            [-179.740148, -17.022303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.740148, -17.022303],\n            [-179.588667, -16.877571],\n            [-179.588667, -17.022303],\n            [-179.740148, -17.022303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.740148, -17.022303],\n            [-179.740148, -16.877571],\n            [-179.588667, -16.877571],\n            [-179.740148, -17.022303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.740148, -16.877571],\n            [-179.740148, -16.73284],\n            [-179.588667, -16.877571],\n            [-179.740148, -16.877571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.740148, -16.73284],\n            [-179.588667, -16.73284],\n            [-179.588667, -16.877571],\n            [-179.740148, -16.73284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.740148, -16.73284],\n            [-179.588667, -16.588108],\n            [-179.588667, -16.73284],\n            [-179.740148, -16.73284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.740148, -16.73284],\n            [-179.740148, -16.588108],\n            [-179.588667, -16.588108],\n            [-179.740148, -16.73284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.740148, -16.588108],\n            [-179.740148, -16.443377],\n            [-179.588667, -16.588108],\n            [-179.740148, -16.588108]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.740148, -16.443377],\n            [-179.588667, -16.443377],\n            [-179.588667, -16.588108],\n            [-179.740148, -16.443377]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.588667, -17.167034],\n            [-179.588667, -17.022303],\n            [-179.437187, -17.022303],\n            [-179.588667, -17.167034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.588667, -17.167034],\n            [-179.437187, -17.022303],\n            [-179.437187, -17.167034],\n            [-179.588667, -17.167034]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.588667, -17.022303],\n            [-179.588667, -16.877571],\n            [-179.437187, -17.022303],\n            [-179.588667, -17.022303]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.588667, -16.877571],\n            [-179.437187, -16.877571],\n            [-179.437187, -17.022303],\n            [-179.588667, -16.877571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.588667, -16.877571],\n            [-179.588667, -16.73284],\n            [-179.437187, -16.73284],\n            [-179.588667, -16.877571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.588667, -16.877571],\n            [-179.437187, -16.73284],\n            [-179.437187, -16.877571],\n            [-179.588667, -16.877571]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.588667, -16.73284],\n            [-179.588667, -16.588108],\n            [-179.437187, -16.73284],\n            [-179.588667, -16.73284]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.588667, -16.588108],\n            [-179.437187, -16.588108],\n            [-179.437187, -16.73284],\n            [-179.588667, -16.588108]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.588667, -16.588108],\n            [-179.588667, -16.443377],\n            [-179.437187, -16.443377],\n            [-179.588667, -16.588108]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-179.588667, -16.588108],\n            [-179.437187, -16.443377],\n            [-179.437187, -16.588108],\n            [-179.588667, -16.588108]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [\n        -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812\n      ],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180.3460693359375, -17.16703442146408],\n            [-179.5770263671875, -17.16703442146408],\n            [-179.5770263671875, -16.48349760264812],\n            [-180.3460693359375, -16.48349760264812],\n            [-180.3460693359375, -17.16703442146408]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-triangle-grid/test/out/london-20-miles.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.620728, 51.237847],\n            [-0.620728, 51.52731],\n            [-0.158388, 51.237847],\n            [-0.620728, 51.237847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.620728, 51.52731],\n            [-0.158388, 51.52731],\n            [-0.158388, 51.237847],\n            [-0.620728, 51.52731]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.620728, 51.52731],\n            [-0.158388, 51.816773],\n            [-0.158388, 51.52731],\n            [-0.620728, 51.52731]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.620728, 51.52731],\n            [-0.620728, 51.816773],\n            [-0.158388, 51.816773],\n            [-0.620728, 51.52731]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.158388, 51.237847],\n            [-0.158388, 51.52731],\n            [0.303952, 51.52731],\n            [-0.158388, 51.237847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.158388, 51.237847],\n            [0.303952, 51.52731],\n            [0.303952, 51.237847],\n            [-0.158388, 51.237847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.158388, 51.52731],\n            [-0.158388, 51.816773],\n            [0.303952, 51.52731],\n            [-0.158388, 51.52731]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.158388, 51.816773],\n            [0.303952, 51.816773],\n            [0.303952, 51.52731],\n            [-0.158388, 51.816773]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.303952, 51.237847],\n            [0.303952, 51.52731],\n            [0.766291, 51.237847],\n            [0.303952, 51.237847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.303952, 51.52731],\n            [0.766291, 51.52731],\n            [0.766291, 51.237847],\n            [0.303952, 51.52731]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.303952, 51.52731],\n            [0.766291, 51.816773],\n            [0.766291, 51.52731],\n            [0.303952, 51.52731]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.303952, 51.52731],\n            [0.303952, 51.816773],\n            [0.766291, 51.816773],\n            [0.303952, 51.52731]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-0.6207275390625, 51.23784668914442],\n            [0.439453125, 51.23784668914442],\n            [0.439453125, 51.767839887322154],\n            [-0.6207275390625, 51.767839887322154],\n            [-0.6207275390625, 51.23784668914442]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-triangle-grid/test/out/piedemont-mask.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.629316, 44.417841],\n            [6.881069, 44.598755],\n            [6.881069, 44.417841],\n            [6.629316, 44.417841]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.629316, 44.77967],\n            [6.629316, 44.960584],\n            [6.881069, 44.960584],\n            [6.629316, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.629316, 44.77967],\n            [6.881069, 44.960584],\n            [6.881069, 44.77967],\n            [6.629316, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.629316, 44.960584],\n            [6.629316, 45.141499],\n            [6.881069, 44.960584],\n            [6.629316, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.629316, 45.141499],\n            [6.881069, 45.141499],\n            [6.881069, 44.960584],\n            [6.629316, 45.141499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.629316, 45.141499],\n            [6.881069, 45.322413],\n            [6.881069, 45.141499],\n            [6.629316, 45.141499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.881069, 44.236926],\n            [7.132822, 44.236926],\n            [7.132822, 44.056012],\n            [6.881069, 44.236926]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.881069, 44.236926],\n            [7.132822, 44.417841],\n            [7.132822, 44.236926],\n            [6.881069, 44.236926]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.881069, 44.236926],\n            [6.881069, 44.417841],\n            [7.132822, 44.417841],\n            [6.881069, 44.236926]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.881069, 44.417841],\n            [6.881069, 44.598755],\n            [7.132822, 44.417841],\n            [6.881069, 44.417841]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.881069, 44.598755],\n            [7.132822, 44.598755],\n            [7.132822, 44.417841],\n            [6.881069, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.881069, 44.598755],\n            [7.132822, 44.77967],\n            [7.132822, 44.598755],\n            [6.881069, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.881069, 44.598755],\n            [6.881069, 44.77967],\n            [7.132822, 44.77967],\n            [6.881069, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.881069, 44.77967],\n            [6.881069, 44.960584],\n            [7.132822, 44.77967],\n            [6.881069, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.881069, 44.960584],\n            [7.132822, 44.960584],\n            [7.132822, 44.77967],\n            [6.881069, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.881069, 44.960584],\n            [7.132822, 45.141499],\n            [7.132822, 44.960584],\n            [6.881069, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.881069, 44.960584],\n            [6.881069, 45.141499],\n            [7.132822, 45.141499],\n            [6.881069, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.881069, 45.141499],\n            [6.881069, 45.322413],\n            [7.132822, 45.141499],\n            [6.881069, 45.141499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.881069, 45.322413],\n            [7.132822, 45.322413],\n            [7.132822, 45.141499],\n            [6.881069, 45.322413]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.881069, 45.322413],\n            [7.132822, 45.503328],\n            [7.132822, 45.322413],\n            [6.881069, 45.322413]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.132822, 44.056012],\n            [7.132822, 44.236926],\n            [7.384575, 44.236926],\n            [7.132822, 44.056012]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.132822, 44.056012],\n            [7.384575, 44.236926],\n            [7.384575, 44.056012],\n            [7.132822, 44.056012]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.132822, 44.236926],\n            [7.132822, 44.417841],\n            [7.384575, 44.236926],\n            [7.132822, 44.236926]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.132822, 44.417841],\n            [7.384575, 44.417841],\n            [7.384575, 44.236926],\n            [7.132822, 44.417841]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.132822, 44.417841],\n            [7.132822, 44.598755],\n            [7.384575, 44.598755],\n            [7.132822, 44.417841]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.132822, 44.417841],\n            [7.384575, 44.598755],\n            [7.384575, 44.417841],\n            [7.132822, 44.417841]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.132822, 44.598755],\n            [7.132822, 44.77967],\n            [7.384575, 44.598755],\n            [7.132822, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.132822, 44.77967],\n            [7.384575, 44.77967],\n            [7.384575, 44.598755],\n            [7.132822, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.132822, 44.77967],\n            [7.132822, 44.960584],\n            [7.384575, 44.960584],\n            [7.132822, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.132822, 44.77967],\n            [7.384575, 44.960584],\n            [7.384575, 44.77967],\n            [7.132822, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.132822, 44.960584],\n            [7.132822, 45.141499],\n            [7.384575, 44.960584],\n            [7.132822, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.132822, 45.141499],\n            [7.384575, 45.141499],\n            [7.384575, 44.960584],\n            [7.132822, 45.141499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.132822, 45.141499],\n            [7.132822, 45.322413],\n            [7.384575, 45.322413],\n            [7.132822, 45.141499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.132822, 45.141499],\n            [7.384575, 45.322413],\n            [7.384575, 45.141499],\n            [7.132822, 45.141499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.132822, 45.322413],\n            [7.132822, 45.503328],\n            [7.384575, 45.322413],\n            [7.132822, 45.322413]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.132822, 45.503328],\n            [7.384575, 45.503328],\n            [7.384575, 45.322413],\n            [7.132822, 45.503328]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.132822, 45.503328],\n            [7.384575, 45.684242],\n            [7.384575, 45.503328],\n            [7.132822, 45.503328]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.384575, 44.056012],\n            [7.384575, 44.236926],\n            [7.636328, 44.056012],\n            [7.384575, 44.056012]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.384575, 44.236926],\n            [7.636328, 44.236926],\n            [7.636328, 44.056012],\n            [7.384575, 44.236926]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.384575, 44.236926],\n            [7.636328, 44.417841],\n            [7.636328, 44.236926],\n            [7.384575, 44.236926]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.384575, 44.236926],\n            [7.384575, 44.417841],\n            [7.636328, 44.417841],\n            [7.384575, 44.236926]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.384575, 44.417841],\n            [7.384575, 44.598755],\n            [7.636328, 44.417841],\n            [7.384575, 44.417841]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.384575, 44.598755],\n            [7.636328, 44.598755],\n            [7.636328, 44.417841],\n            [7.384575, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.384575, 44.598755],\n            [7.636328, 44.77967],\n            [7.636328, 44.598755],\n            [7.384575, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.384575, 44.598755],\n            [7.384575, 44.77967],\n            [7.636328, 44.77967],\n            [7.384575, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.384575, 44.77967],\n            [7.384575, 44.960584],\n            [7.636328, 44.77967],\n            [7.384575, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.384575, 44.960584],\n            [7.636328, 44.960584],\n            [7.636328, 44.77967],\n            [7.384575, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.384575, 44.960584],\n            [7.636328, 45.141499],\n            [7.636328, 44.960584],\n            [7.384575, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.384575, 44.960584],\n            [7.384575, 45.141499],\n            [7.636328, 45.141499],\n            [7.384575, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.384575, 45.141499],\n            [7.384575, 45.322413],\n            [7.636328, 45.141499],\n            [7.384575, 45.141499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.384575, 45.322413],\n            [7.636328, 45.322413],\n            [7.636328, 45.141499],\n            [7.384575, 45.322413]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.384575, 45.322413],\n            [7.636328, 45.503328],\n            [7.636328, 45.322413],\n            [7.384575, 45.322413]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.384575, 45.322413],\n            [7.384575, 45.503328],\n            [7.636328, 45.503328],\n            [7.384575, 45.322413]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.384575, 45.503328],\n            [7.384575, 45.684242],\n            [7.636328, 45.503328],\n            [7.384575, 45.503328]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.384575, 45.684242],\n            [7.636328, 45.684242],\n            [7.636328, 45.503328],\n            [7.384575, 45.684242]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 44.056012],\n            [7.636328, 44.236926],\n            [7.888081, 44.236926],\n            [7.636328, 44.056012]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 44.056012],\n            [7.888081, 44.236926],\n            [7.888081, 44.056012],\n            [7.636328, 44.056012]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 44.236926],\n            [7.636328, 44.417841],\n            [7.888081, 44.236926],\n            [7.636328, 44.236926]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 44.417841],\n            [7.888081, 44.417841],\n            [7.888081, 44.236926],\n            [7.636328, 44.417841]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 44.417841],\n            [7.636328, 44.598755],\n            [7.888081, 44.598755],\n            [7.636328, 44.417841]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 44.417841],\n            [7.888081, 44.598755],\n            [7.888081, 44.417841],\n            [7.636328, 44.417841]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 44.598755],\n            [7.636328, 44.77967],\n            [7.888081, 44.598755],\n            [7.636328, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 44.77967],\n            [7.888081, 44.77967],\n            [7.888081, 44.598755],\n            [7.636328, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 44.77967],\n            [7.636328, 44.960584],\n            [7.888081, 44.960584],\n            [7.636328, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 44.77967],\n            [7.888081, 44.960584],\n            [7.888081, 44.77967],\n            [7.636328, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 44.960584],\n            [7.636328, 45.141499],\n            [7.888081, 44.960584],\n            [7.636328, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 45.141499],\n            [7.888081, 45.141499],\n            [7.888081, 44.960584],\n            [7.636328, 45.141499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 45.141499],\n            [7.636328, 45.322413],\n            [7.888081, 45.322413],\n            [7.636328, 45.141499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 45.141499],\n            [7.888081, 45.322413],\n            [7.888081, 45.141499],\n            [7.636328, 45.141499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 45.322413],\n            [7.636328, 45.503328],\n            [7.888081, 45.322413],\n            [7.636328, 45.322413]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 45.503328],\n            [7.888081, 45.503328],\n            [7.888081, 45.322413],\n            [7.636328, 45.503328]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 45.503328],\n            [7.636328, 45.684242],\n            [7.888081, 45.684242],\n            [7.636328, 45.503328]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 45.503328],\n            [7.888081, 45.684242],\n            [7.888081, 45.503328],\n            [7.636328, 45.503328]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 45.865156],\n            [7.888081, 45.865156],\n            [7.888081, 45.684242],\n            [7.636328, 45.865156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.636328, 45.865156],\n            [7.888081, 46.046071],\n            [7.888081, 45.865156],\n            [7.636328, 45.865156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 44.056012],\n            [7.888081, 44.236926],\n            [8.139834, 44.056012],\n            [7.888081, 44.056012]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 44.236926],\n            [8.139834, 44.236926],\n            [8.139834, 44.056012],\n            [7.888081, 44.236926]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 44.236926],\n            [8.139834, 44.417841],\n            [8.139834, 44.236926],\n            [7.888081, 44.236926]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 44.236926],\n            [7.888081, 44.417841],\n            [8.139834, 44.417841],\n            [7.888081, 44.236926]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 44.417841],\n            [7.888081, 44.598755],\n            [8.139834, 44.417841],\n            [7.888081, 44.417841]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 44.598755],\n            [8.139834, 44.598755],\n            [8.139834, 44.417841],\n            [7.888081, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 44.598755],\n            [8.139834, 44.77967],\n            [8.139834, 44.598755],\n            [7.888081, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 44.598755],\n            [7.888081, 44.77967],\n            [8.139834, 44.77967],\n            [7.888081, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 44.77967],\n            [7.888081, 44.960584],\n            [8.139834, 44.77967],\n            [7.888081, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 44.960584],\n            [8.139834, 44.960584],\n            [8.139834, 44.77967],\n            [7.888081, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 44.960584],\n            [8.139834, 45.141499],\n            [8.139834, 44.960584],\n            [7.888081, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 44.960584],\n            [7.888081, 45.141499],\n            [8.139834, 45.141499],\n            [7.888081, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 45.141499],\n            [7.888081, 45.322413],\n            [8.139834, 45.141499],\n            [7.888081, 45.141499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 45.322413],\n            [8.139834, 45.322413],\n            [8.139834, 45.141499],\n            [7.888081, 45.322413]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 45.322413],\n            [8.139834, 45.503328],\n            [8.139834, 45.322413],\n            [7.888081, 45.322413]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 45.322413],\n            [7.888081, 45.503328],\n            [8.139834, 45.503328],\n            [7.888081, 45.322413]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 45.503328],\n            [7.888081, 45.684242],\n            [8.139834, 45.503328],\n            [7.888081, 45.503328]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 45.684242],\n            [8.139834, 45.684242],\n            [8.139834, 45.503328],\n            [7.888081, 45.684242]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 45.684242],\n            [8.139834, 45.865156],\n            [8.139834, 45.684242],\n            [7.888081, 45.684242]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 45.684242],\n            [7.888081, 45.865156],\n            [8.139834, 45.865156],\n            [7.888081, 45.684242]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 45.865156],\n            [7.888081, 46.046071],\n            [8.139834, 45.865156],\n            [7.888081, 45.865156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 46.046071],\n            [8.139834, 46.046071],\n            [8.139834, 45.865156],\n            [7.888081, 46.046071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 46.046071],\n            [8.139834, 46.226985],\n            [8.139834, 46.046071],\n            [7.888081, 46.046071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 46.046071],\n            [7.888081, 46.226985],\n            [8.139834, 46.226985],\n            [7.888081, 46.046071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 46.226985],\n            [7.888081, 46.4079],\n            [8.139834, 46.226985],\n            [7.888081, 46.226985]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [7.888081, 46.4079],\n            [8.139834, 46.4079],\n            [8.139834, 46.226985],\n            [7.888081, 46.4079]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 44.236926],\n            [8.139834, 44.417841],\n            [8.391587, 44.236926],\n            [8.139834, 44.236926]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 44.417841],\n            [8.391587, 44.417841],\n            [8.391587, 44.236926],\n            [8.139834, 44.417841]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 44.417841],\n            [8.139834, 44.598755],\n            [8.391587, 44.598755],\n            [8.139834, 44.417841]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 44.417841],\n            [8.391587, 44.598755],\n            [8.391587, 44.417841],\n            [8.139834, 44.417841]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 44.598755],\n            [8.139834, 44.77967],\n            [8.391587, 44.598755],\n            [8.139834, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 44.77967],\n            [8.391587, 44.77967],\n            [8.391587, 44.598755],\n            [8.139834, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 44.77967],\n            [8.139834, 44.960584],\n            [8.391587, 44.960584],\n            [8.139834, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 44.77967],\n            [8.391587, 44.960584],\n            [8.391587, 44.77967],\n            [8.139834, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 44.960584],\n            [8.139834, 45.141499],\n            [8.391587, 44.960584],\n            [8.139834, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 45.141499],\n            [8.391587, 45.141499],\n            [8.391587, 44.960584],\n            [8.139834, 45.141499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 45.141499],\n            [8.139834, 45.322413],\n            [8.391587, 45.322413],\n            [8.139834, 45.141499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 45.141499],\n            [8.391587, 45.322413],\n            [8.391587, 45.141499],\n            [8.139834, 45.141499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 45.322413],\n            [8.139834, 45.503328],\n            [8.391587, 45.322413],\n            [8.139834, 45.322413]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 45.503328],\n            [8.391587, 45.503328],\n            [8.391587, 45.322413],\n            [8.139834, 45.503328]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 45.503328],\n            [8.139834, 45.684242],\n            [8.391587, 45.684242],\n            [8.139834, 45.503328]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 45.503328],\n            [8.391587, 45.684242],\n            [8.391587, 45.503328],\n            [8.139834, 45.503328]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 45.684242],\n            [8.139834, 45.865156],\n            [8.391587, 45.684242],\n            [8.139834, 45.684242]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 45.865156],\n            [8.391587, 45.865156],\n            [8.391587, 45.684242],\n            [8.139834, 45.865156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 45.865156],\n            [8.139834, 46.046071],\n            [8.391587, 46.046071],\n            [8.139834, 45.865156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 45.865156],\n            [8.391587, 46.046071],\n            [8.391587, 45.865156],\n            [8.139834, 45.865156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 46.046071],\n            [8.139834, 46.226985],\n            [8.391587, 46.046071],\n            [8.139834, 46.046071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 46.226985],\n            [8.391587, 46.226985],\n            [8.391587, 46.046071],\n            [8.139834, 46.226985]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 46.226985],\n            [8.139834, 46.4079],\n            [8.391587, 46.4079],\n            [8.139834, 46.226985]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 46.226985],\n            [8.391587, 46.4079],\n            [8.391587, 46.226985],\n            [8.139834, 46.226985]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 46.4079],\n            [8.139834, 46.588814],\n            [8.391587, 46.4079],\n            [8.139834, 46.4079]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.139834, 46.588814],\n            [8.391587, 46.588814],\n            [8.391587, 46.4079],\n            [8.139834, 46.588814]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 44.417841],\n            [8.391587, 44.598755],\n            [8.64334, 44.417841],\n            [8.391587, 44.417841]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 44.598755],\n            [8.64334, 44.598755],\n            [8.64334, 44.417841],\n            [8.391587, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 44.598755],\n            [8.64334, 44.77967],\n            [8.64334, 44.598755],\n            [8.391587, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 44.598755],\n            [8.391587, 44.77967],\n            [8.64334, 44.77967],\n            [8.391587, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 44.77967],\n            [8.391587, 44.960584],\n            [8.64334, 44.77967],\n            [8.391587, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 44.960584],\n            [8.64334, 44.960584],\n            [8.64334, 44.77967],\n            [8.391587, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 44.960584],\n            [8.64334, 45.141499],\n            [8.64334, 44.960584],\n            [8.391587, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 44.960584],\n            [8.391587, 45.141499],\n            [8.64334, 45.141499],\n            [8.391587, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 45.141499],\n            [8.391587, 45.322413],\n            [8.64334, 45.141499],\n            [8.391587, 45.141499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 45.322413],\n            [8.64334, 45.322413],\n            [8.64334, 45.141499],\n            [8.391587, 45.322413]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 45.322413],\n            [8.64334, 45.503328],\n            [8.64334, 45.322413],\n            [8.391587, 45.322413]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 45.322413],\n            [8.391587, 45.503328],\n            [8.64334, 45.503328],\n            [8.391587, 45.322413]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 45.503328],\n            [8.391587, 45.684242],\n            [8.64334, 45.503328],\n            [8.391587, 45.503328]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 45.684242],\n            [8.64334, 45.684242],\n            [8.64334, 45.503328],\n            [8.391587, 45.684242]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 45.684242],\n            [8.64334, 45.865156],\n            [8.64334, 45.684242],\n            [8.391587, 45.684242]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 45.684242],\n            [8.391587, 45.865156],\n            [8.64334, 45.865156],\n            [8.391587, 45.684242]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 45.865156],\n            [8.391587, 46.046071],\n            [8.64334, 45.865156],\n            [8.391587, 45.865156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 46.046071],\n            [8.64334, 46.046071],\n            [8.64334, 45.865156],\n            [8.391587, 46.046071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 46.046071],\n            [8.64334, 46.226985],\n            [8.64334, 46.046071],\n            [8.391587, 46.046071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 46.046071],\n            [8.391587, 46.226985],\n            [8.64334, 46.226985],\n            [8.391587, 46.046071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 46.226985],\n            [8.391587, 46.4079],\n            [8.64334, 46.226985],\n            [8.391587, 46.226985]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 46.4079],\n            [8.64334, 46.4079],\n            [8.64334, 46.226985],\n            [8.391587, 46.4079]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 46.4079],\n            [8.64334, 46.588814],\n            [8.64334, 46.4079],\n            [8.391587, 46.4079]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.391587, 46.4079],\n            [8.391587, 46.588814],\n            [8.64334, 46.588814],\n            [8.391587, 46.4079]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.64334, 44.417841],\n            [8.64334, 44.598755],\n            [8.895093, 44.598755],\n            [8.64334, 44.417841]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.64334, 44.417841],\n            [8.895093, 44.598755],\n            [8.895093, 44.417841],\n            [8.64334, 44.417841]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.64334, 44.598755],\n            [8.64334, 44.77967],\n            [8.895093, 44.598755],\n            [8.64334, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.64334, 44.77967],\n            [8.895093, 44.77967],\n            [8.895093, 44.598755],\n            [8.64334, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.64334, 44.77967],\n            [8.64334, 44.960584],\n            [8.895093, 44.960584],\n            [8.64334, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.64334, 44.77967],\n            [8.895093, 44.960584],\n            [8.895093, 44.77967],\n            [8.64334, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.64334, 44.960584],\n            [8.64334, 45.141499],\n            [8.895093, 44.960584],\n            [8.64334, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.64334, 45.141499],\n            [8.895093, 45.141499],\n            [8.895093, 44.960584],\n            [8.64334, 45.141499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.64334, 45.141499],\n            [8.64334, 45.322413],\n            [8.895093, 45.322413],\n            [8.64334, 45.141499]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.64334, 45.322413],\n            [8.64334, 45.503328],\n            [8.895093, 45.322413],\n            [8.64334, 45.322413]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.64334, 45.503328],\n            [8.895093, 45.503328],\n            [8.895093, 45.322413],\n            [8.64334, 45.503328]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.64334, 45.503328],\n            [8.64334, 45.684242],\n            [8.895093, 45.684242],\n            [8.64334, 45.503328]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.64334, 45.503328],\n            [8.895093, 45.684242],\n            [8.895093, 45.503328],\n            [8.64334, 45.503328]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.64334, 45.684242],\n            [8.64334, 45.865156],\n            [8.895093, 45.684242],\n            [8.64334, 45.684242]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.64334, 45.865156],\n            [8.64334, 46.046071],\n            [8.895093, 46.046071],\n            [8.64334, 45.865156]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.64334, 46.046071],\n            [8.64334, 46.226985],\n            [8.895093, 46.046071],\n            [8.64334, 46.046071]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.895093, 44.417841],\n            [8.895093, 44.598755],\n            [9.146846, 44.417841],\n            [8.895093, 44.417841]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.895093, 44.598755],\n            [9.146846, 44.598755],\n            [9.146846, 44.417841],\n            [8.895093, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.895093, 44.598755],\n            [9.146846, 44.77967],\n            [9.146846, 44.598755],\n            [8.895093, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.895093, 44.598755],\n            [8.895093, 44.77967],\n            [9.146846, 44.77967],\n            [8.895093, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.895093, 44.77967],\n            [8.895093, 44.960584],\n            [9.146846, 44.77967],\n            [8.895093, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.895093, 44.960584],\n            [9.146846, 44.960584],\n            [9.146846, 44.77967],\n            [8.895093, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.895093, 44.960584],\n            [9.146846, 45.141499],\n            [9.146846, 44.960584],\n            [8.895093, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.895093, 44.960584],\n            [8.895093, 45.141499],\n            [9.146846, 45.141499],\n            [8.895093, 44.960584]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.146846, 44.417841],\n            [9.146846, 44.598755],\n            [9.398599, 44.598755],\n            [9.146846, 44.417841]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.146846, 44.598755],\n            [9.146846, 44.77967],\n            [9.398599, 44.598755],\n            [9.146846, 44.598755]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.146846, 44.77967],\n            [9.398599, 44.77967],\n            [9.398599, 44.598755],\n            [9.146846, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.146846, 44.77967],\n            [9.146846, 44.960584],\n            [9.398599, 44.960584],\n            [9.146846, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.146846, 44.77967],\n            [9.398599, 44.960584],\n            [9.398599, 44.77967],\n            [9.146846, 44.77967]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.3775634765625, 44.05601169578525],\n            [9.437255859375, 44.05601169578525],\n            [9.437255859375, 46.50595444552049],\n            [6.3775634765625, 46.50595444552049],\n            [6.3775634765625, 44.05601169578525]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [8.382568359375012, 46.456781428126554],\n            [8.313903808593762, 46.41892578708079],\n            [8.31939697265626, 46.379149058330775],\n            [8.099670410156264, 46.26913887119718],\n            [8.171081542968762, 46.1893382140708],\n            [7.8799438476562615, 45.94160076422079],\n            [7.907409667968761, 45.627484212338246],\n            [7.7247619628906365, 45.55444852652113],\n            [7.5833129882812615, 45.5900172453615],\n            [7.484436035156261, 45.58136746810096],\n            [7.347106933593762, 45.527516684421215],\n            [7.116394042968763, 45.46976215263039],\n            [7.176818847656262, 45.408092022812276],\n            [7.094421386718762, 45.222677199620094],\n            [6.980438232421887, 45.20719857986464],\n            [6.9515991210937615, 45.17332441090049],\n            [6.900787353515638, 45.166547157856016],\n            [6.900787353515638, 45.14621056019852],\n            [6.854095458984387, 45.1278045274732],\n            [6.7813110351562615, 45.164610651725425],\n            [6.749725341796888, 45.1394300814679],\n            [6.687927246093762, 45.1394300814679],\n            [6.6302490234375, 45.10987715527803],\n            [6.65496826171875, 45.069156265623505],\n            [6.6741943359375, 45.02015580433459],\n            [6.755218505859382, 45.0182143279711],\n            [6.749725341796875, 44.90744135615697],\n            [6.815643310546875, 44.872415981701394],\n            [6.900787353515625, 44.84515927771909],\n            [6.946105957031258, 44.86560301534198],\n            [7.017517089843757, 44.8344477567128],\n            [7.002410888671875, 44.78378451819761],\n            [7.032623291015625, 44.73210119404699],\n            [7.0751953125, 44.68330096401701],\n            [6.990051269531262, 44.69404054463802],\n            [6.8637084960937615, 44.51021754644927],\n            [6.9021606445312615, 44.36509667482153],\n            [7.055969238281263, 44.219615400229195],\n            [7.3965454101562615, 44.125056482685174],\n            [7.6712036132812615, 44.180234276372886],\n            [7.7151489257812615, 44.09350315285844],\n            [7.770080566406262, 44.136884638560495],\n            [8.02825927734376, 44.140826830775524],\n            [8.08868408203126, 44.321883129398586],\n            [8.247985839843762, 44.52196830685208],\n            [8.357849121093762, 44.48670891691767],\n            [8.599548339843762, 44.537632301346086],\n            [8.665466308593762, 44.58851118961441],\n            [8.802795410156264, 44.51805165000559],\n            [8.912658691406264, 44.592423107178654],\n            [8.912658691406264, 44.67841867818858],\n            [9.017028808593762, 44.6725593921204],\n            [9.139251708984387, 44.57970841241188],\n            [9.213409423828137, 44.6061127451739],\n            [9.221649169921887, 44.75453548416007],\n            [9.066467285156264, 44.85002749260048],\n            [8.896179199218762, 45.05606124274412],\n            [8.775329589843762, 45.01530198999206],\n            [8.659973144531262, 45.02695045318543],\n            [8.522644042968764, 45.28841433167348],\n            [8.550109863281262, 45.3617951914213],\n            [8.63800048828126, 45.34828480683997],\n            [8.676452636718762, 45.30773430004872],\n            [8.76983642578126, 45.35407536661812],\n            [8.734130859375014, 45.38494834654319],\n            [8.846740722656262, 45.40423540168332],\n            [8.725891113281262, 45.51789504294005],\n            [8.654479980468762, 45.70809729528788],\n            [8.56109619140626, 45.79242458189573],\n            [8.599548339843762, 45.832626782661585],\n            [8.580322265625012, 45.90529985724794],\n            [8.725891113281262, 46.02557483126793],\n            [8.717651367187512, 46.0998999106273],\n            [8.610534667968762, 46.14178273759229],\n            [8.539123535156262, 46.221652456379104],\n            [8.451232910156262, 46.25774588045678],\n            [8.445739746093764, 46.30899569419854],\n            [8.47045898437501, 46.34313560260196],\n            [8.462219238281264, 46.462457505996056],\n            [8.382568359375012, 46.456781428126554]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-triangle-grid/test/out/properties.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.131519, 41.405334],\n            [2.143504, 41.405334],\n            [2.143504, 41.396341],\n            [2.131519, 41.405334]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.131519, 41.405334],\n            [2.143504, 41.414327],\n            [2.143504, 41.405334],\n            [2.131519, 41.405334]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.131519, 41.405334],\n            [2.131519, 41.414327],\n            [2.143504, 41.414327],\n            [2.131519, 41.405334]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.143504, 41.396341],\n            [2.15549, 41.396341],\n            [2.15549, 41.387347],\n            [2.143504, 41.396341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.143504, 41.396341],\n            [2.143504, 41.405334],\n            [2.15549, 41.405334],\n            [2.143504, 41.396341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.143504, 41.396341],\n            [2.15549, 41.405334],\n            [2.15549, 41.396341],\n            [2.143504, 41.396341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.143504, 41.405334],\n            [2.143504, 41.414327],\n            [2.15549, 41.405334],\n            [2.143504, 41.405334]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.143504, 41.414327],\n            [2.15549, 41.414327],\n            [2.15549, 41.405334],\n            [2.143504, 41.414327]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.15549, 41.387347],\n            [2.167475, 41.396341],\n            [2.167475, 41.387347],\n            [2.15549, 41.387347]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.15549, 41.387347],\n            [2.15549, 41.396341],\n            [2.167475, 41.396341],\n            [2.15549, 41.387347]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.15549, 41.396341],\n            [2.15549, 41.405334],\n            [2.167475, 41.396341],\n            [2.15549, 41.396341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.15549, 41.405334],\n            [2.167475, 41.405334],\n            [2.167475, 41.396341],\n            [2.15549, 41.405334]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.15549, 41.405334],\n            [2.167475, 41.414327],\n            [2.167475, 41.405334],\n            [2.15549, 41.405334]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.15549, 41.405334],\n            [2.15549, 41.414327],\n            [2.167475, 41.414327],\n            [2.15549, 41.405334]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.15549, 41.414327],\n            [2.15549, 41.42332],\n            [2.167475, 41.414327],\n            [2.15549, 41.414327]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.15549, 41.42332],\n            [2.167475, 41.42332],\n            [2.167475, 41.414327],\n            [2.15549, 41.42332]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.15549, 41.42332],\n            [2.167475, 41.432314],\n            [2.167475, 41.42332],\n            [2.15549, 41.42332]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.167475, 41.378354],\n            [2.167475, 41.387347],\n            [2.17946, 41.387347],\n            [2.167475, 41.378354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.167475, 41.378354],\n            [2.17946, 41.387347],\n            [2.17946, 41.378354],\n            [2.167475, 41.378354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.167475, 41.387347],\n            [2.167475, 41.396341],\n            [2.17946, 41.387347],\n            [2.167475, 41.387347]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.167475, 41.396341],\n            [2.17946, 41.396341],\n            [2.17946, 41.387347],\n            [2.167475, 41.396341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.167475, 41.396341],\n            [2.167475, 41.405334],\n            [2.17946, 41.405334],\n            [2.167475, 41.396341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.167475, 41.396341],\n            [2.17946, 41.405334],\n            [2.17946, 41.396341],\n            [2.167475, 41.396341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.167475, 41.405334],\n            [2.167475, 41.414327],\n            [2.17946, 41.405334],\n            [2.167475, 41.405334]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.167475, 41.414327],\n            [2.17946, 41.414327],\n            [2.17946, 41.405334],\n            [2.167475, 41.414327]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.167475, 41.414327],\n            [2.167475, 41.42332],\n            [2.17946, 41.42332],\n            [2.167475, 41.414327]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.167475, 41.414327],\n            [2.17946, 41.42332],\n            [2.17946, 41.414327],\n            [2.167475, 41.414327]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.167475, 41.42332],\n            [2.167475, 41.432314],\n            [2.17946, 41.42332],\n            [2.167475, 41.42332]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.167475, 41.432314],\n            [2.17946, 41.432314],\n            [2.17946, 41.42332],\n            [2.167475, 41.432314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.167475, 41.432314],\n            [2.167475, 41.441307],\n            [2.17946, 41.441307],\n            [2.167475, 41.432314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.167475, 41.432314],\n            [2.17946, 41.441307],\n            [2.17946, 41.432314],\n            [2.167475, 41.432314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.167475, 41.441307],\n            [2.167475, 41.4503],\n            [2.17946, 41.441307],\n            [2.167475, 41.441307]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.17946, 41.378354],\n            [2.17946, 41.387347],\n            [2.191445, 41.378354],\n            [2.17946, 41.378354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.17946, 41.387347],\n            [2.191445, 41.387347],\n            [2.191445, 41.378354],\n            [2.17946, 41.387347]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.17946, 41.387347],\n            [2.191445, 41.396341],\n            [2.191445, 41.387347],\n            [2.17946, 41.387347]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.17946, 41.387347],\n            [2.17946, 41.396341],\n            [2.191445, 41.396341],\n            [2.17946, 41.387347]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.17946, 41.396341],\n            [2.17946, 41.405334],\n            [2.191445, 41.396341],\n            [2.17946, 41.396341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.17946, 41.405334],\n            [2.191445, 41.405334],\n            [2.191445, 41.396341],\n            [2.17946, 41.405334]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.17946, 41.405334],\n            [2.191445, 41.414327],\n            [2.191445, 41.405334],\n            [2.17946, 41.405334]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.17946, 41.405334],\n            [2.17946, 41.414327],\n            [2.191445, 41.414327],\n            [2.17946, 41.405334]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.17946, 41.414327],\n            [2.17946, 41.42332],\n            [2.191445, 41.414327],\n            [2.17946, 41.414327]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.17946, 41.42332],\n            [2.191445, 41.42332],\n            [2.191445, 41.414327],\n            [2.17946, 41.42332]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.17946, 41.42332],\n            [2.191445, 41.432314],\n            [2.191445, 41.42332],\n            [2.17946, 41.42332]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.17946, 41.42332],\n            [2.17946, 41.432314],\n            [2.191445, 41.432314],\n            [2.17946, 41.42332]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.17946, 41.432314],\n            [2.17946, 41.441307],\n            [2.191445, 41.432314],\n            [2.17946, 41.432314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.191445, 41.378354],\n            [2.191445, 41.387347],\n            [2.20343, 41.387347],\n            [2.191445, 41.378354]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.191445, 41.387347],\n            [2.191445, 41.396341],\n            [2.20343, 41.387347],\n            [2.191445, 41.387347]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.191445, 41.396341],\n            [2.20343, 41.396341],\n            [2.20343, 41.387347],\n            [2.191445, 41.396341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.191445, 41.396341],\n            [2.191445, 41.405334],\n            [2.20343, 41.405334],\n            [2.191445, 41.396341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.191445, 41.396341],\n            [2.20343, 41.405334],\n            [2.20343, 41.396341],\n            [2.191445, 41.396341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.191445, 41.405334],\n            [2.191445, 41.414327],\n            [2.20343, 41.405334],\n            [2.191445, 41.405334]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.191445, 41.414327],\n            [2.20343, 41.414327],\n            [2.20343, 41.405334],\n            [2.191445, 41.414327]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.191445, 41.414327],\n            [2.191445, 41.42332],\n            [2.20343, 41.42332],\n            [2.191445, 41.414327]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.191445, 41.414327],\n            [2.20343, 41.42332],\n            [2.20343, 41.414327],\n            [2.191445, 41.414327]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.191445, 41.42332],\n            [2.191445, 41.432314],\n            [2.20343, 41.42332],\n            [2.191445, 41.42332]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.191445, 41.432314],\n            [2.20343, 41.432314],\n            [2.20343, 41.42332],\n            [2.191445, 41.432314]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.20343, 41.396341],\n            [2.20343, 41.405334],\n            [2.215416, 41.396341],\n            [2.20343, 41.396341]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.20343, 41.405334],\n            [2.215416, 41.405334],\n            [2.215416, 41.396341],\n            [2.20343, 41.405334]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.20343, 41.405334],\n            [2.215416, 41.414327],\n            [2.215416, 41.405334],\n            [2.20343, 41.405334]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.20343, 41.405334],\n            [2.20343, 41.414327],\n            [2.215416, 41.414327],\n            [2.20343, 41.405334]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.20343, 41.414327],\n            [2.20343, 41.42332],\n            [2.215416, 41.414327],\n            [2.20343, 41.414327]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.20343, 41.42332],\n            [2.215416, 41.42332],\n            [2.215416, 41.414327],\n            [2.20343, 41.42332]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.20343, 41.42332],\n            [2.215416, 41.432314],\n            [2.215416, 41.42332],\n            [2.20343, 41.42332]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.20343, 41.42332],\n            [2.20343, 41.432314],\n            [2.215416, 41.432314],\n            [2.20343, 41.42332]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.215416, 41.405334],\n            [2.215416, 41.414327],\n            [2.227401, 41.405334],\n            [2.215416, 41.405334]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.215416, 41.414327],\n            [2.227401, 41.414327],\n            [2.227401, 41.405334],\n            [2.215416, 41.414327]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.215416, 41.414327],\n            [2.215416, 41.42332],\n            [2.227401, 41.42332],\n            [2.215416, 41.414327]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"marker-color\": \"#0ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.215416, 41.414327],\n            [2.227401, 41.42332],\n            [2.227401, 41.414327],\n            [2.215416, 41.414327]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [\n        2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261\n      ],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.131519317626953, 41.37835427979543],\n            [2.2264480590820312, 41.37835427979543],\n            [2.2264480590820312, 41.44388449101261],\n            [2.131519317626953, 41.44388449101261],\n            [2.131519317626953, 41.37835427979543]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.223186492919922, 41.416856461155575],\n            [2.1716880798339844, 41.44182560856202],\n            [2.1636199951171875, 41.41608406639095],\n            [2.1334075927734375, 41.407200866420744],\n            [2.1845626831054683, 41.37977115211044],\n            [2.223186492919922, 41.416856461155575]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-triangle-grid/test/out/resolute.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.877686, 74.468491],\n            [-95.877686, 74.649405],\n            [-95.20202, 74.468491],\n            [-95.877686, 74.468491]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.877686, 74.649405],\n            [-95.20202, 74.649405],\n            [-95.20202, 74.468491],\n            [-95.877686, 74.649405]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.877686, 74.649405],\n            [-95.20202, 74.83032],\n            [-95.20202, 74.649405],\n            [-95.877686, 74.649405]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.877686, 74.649405],\n            [-95.877686, 74.83032],\n            [-95.20202, 74.83032],\n            [-95.877686, 74.649405]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.877686, 74.83032],\n            [-95.877686, 75.011234],\n            [-95.20202, 74.83032],\n            [-95.877686, 74.83032]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.877686, 75.011234],\n            [-95.20202, 75.011234],\n            [-95.20202, 74.83032],\n            [-95.877686, 75.011234]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.20202, 74.468491],\n            [-95.20202, 74.649405],\n            [-94.526355, 74.649405],\n            [-95.20202, 74.468491]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.20202, 74.468491],\n            [-94.526355, 74.649405],\n            [-94.526355, 74.468491],\n            [-95.20202, 74.468491]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.20202, 74.649405],\n            [-95.20202, 74.83032],\n            [-94.526355, 74.649405],\n            [-95.20202, 74.649405]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.20202, 74.83032],\n            [-94.526355, 74.83032],\n            [-94.526355, 74.649405],\n            [-95.20202, 74.83032]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.20202, 74.83032],\n            [-95.20202, 75.011234],\n            [-94.526355, 75.011234],\n            [-95.20202, 74.83032]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.20202, 74.83032],\n            [-94.526355, 75.011234],\n            [-94.526355, 74.83032],\n            [-95.20202, 74.83032]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.526355, 74.468491],\n            [-94.526355, 74.649405],\n            [-93.85069, 74.468491],\n            [-94.526355, 74.468491]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.526355, 74.649405],\n            [-93.85069, 74.649405],\n            [-93.85069, 74.468491],\n            [-94.526355, 74.649405]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.526355, 74.649405],\n            [-93.85069, 74.83032],\n            [-93.85069, 74.649405],\n            [-94.526355, 74.649405]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.526355, 74.649405],\n            [-94.526355, 74.83032],\n            [-93.85069, 74.83032],\n            [-94.526355, 74.649405]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.526355, 74.83032],\n            [-94.526355, 75.011234],\n            [-93.85069, 74.83032],\n            [-94.526355, 74.83032]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-94.526355, 75.011234],\n            [-93.85069, 75.011234],\n            [-93.85069, 74.83032],\n            [-94.526355, 75.011234]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"bbox\": [-95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785],\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-95.877685546875, 74.46849062193377],\n            [-94.031982421875, 74.46849062193377],\n            [-94.031982421875, 74.90226611990785],\n            [-95.877685546875, 74.90226611990785],\n            [-95.877685546875, 74.46849062193377]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-triangle-grid/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { bboxPolygon as bboxPoly } from \"@turf/bbox-polygon\";\nimport { truncate } from \"@turf/truncate\";\nimport { triangleGrid } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nlet fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    json: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"triangle-grid\", (t) => {\n  for (const { name, json } of fixtures) {\n    const { bbox, cellSide } = json;\n    const options = json;\n    const result = truncate(triangleGrid(bbox, cellSide, options));\n\n    // Add styled GeoJSON to the result\n    const poly = bboxPoly(bbox);\n    poly.properties = {\n      stroke: \"#F00\",\n      \"stroke-width\": 6,\n      \"fill-opacity\": 0,\n    };\n    result.features.push(poly);\n    if (options.mask) {\n      options.mask.properties = {\n        stroke: \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0,\n      };\n      result.features.push(options.mask);\n    }\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + name + \".geojson\", result);\n    t.deepEqual(\n      result,\n      loadJsonFileSync(directories.out + name + \".geojson\"),\n      name\n    );\n  }\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-triangle-grid/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-triangle-grid/types.ts",
    "content": "import { BBox } from \"geojson\";\nimport { triangleGrid } from \"./index.js\";\n\n// prettier-ignore\nconst bbox: BBox = [\n  -96.6357421875,\n  31.12819929911196,\n  -84.9462890625,\n  40.58058466412764,\n];\nconst grid = triangleGrid(bbox, 50, {\n  units: \"miles\",\n  properties: { foo: \"bar\" },\n});\ngrid.features[0].properties.foo;\n// grid.features[0].properties.bar // [ts] Property 'bar' does not exist on type '{ 'foo': string; }'.\n"
  },
  {
    "path": "packages/turf-truncate/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-truncate/README.md",
    "content": "# @turf/truncate\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## truncate\n\nTakes a GeoJSON Feature or FeatureCollection and truncates the precision of the geometry.\n\n### Parameters\n\n*   `geojson` **[GeoJSON][1]** any GeoJSON Feature, FeatureCollection, Geometry or GeometryCollection.\n*   `options` **[Object][2]** Optional parameters (optional, default `{}`)\n\n    *   `options.precision` **[number][3]** coordinate decimal precision (optional, default `6`)\n    *   `options.coordinates` **[number][3]** maximum number of coordinates (primarly used to remove z coordinates) (optional, default `3`)\n    *   `options.mutate` **[boolean][4]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`)\n\n### Examples\n\n```javascript\nvar point = turf.point([\n    70.46923055566859,\n    58.11088890802906,\n    1508\n]);\nvar options = {precision: 3, coordinates: 2};\nvar truncated = turf.truncate(point, options);\n//=truncated.geometry.coordinates => [70.469, 58.111]\n\n//addToMap\nvar addToMap = [truncated];\n```\n\nReturns **[GeoJSON][1]** layer with truncated geometry\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3\n\n[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/truncate\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-truncate/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { truncate } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nlet fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename),\n  };\n});\n// fixtures = fixtures.filter(fixture => fixture.name === 'polygons');\n\n/**\n * Single Process Benchmark\n *\n * geometry-collection: 0.563ms\n * linestring-geometry: 0.076ms\n * point-elevation: 0.046ms\n * point-geometry: 0.012ms\n * point: 0.022ms\n * points: 0.028ms\n * polygon: 0.030ms\n * polygons: 0.030ms\n */\nfor (const { name, geojson } of fixtures) {\n  console.time(name);\n  truncate(geojson, 6, 2, true);\n  console.timeEnd(name);\n}\n\n/**\n * Benchmark Results\n *\n * geometry-collection x 3,720,722 ops/sec ±7.27% (73 runs sampled)\n * linestring-geometry x 3,752,722 ops/sec ±3.22% (81 runs sampled)\n * point-elevation x 3,972,732 ops/sec ±1.55% (85 runs sampled)\n * point-geometry x 4,279,585 ops/sec ±1.13% (84 runs sampled)\n * point x 4,239,752 ops/sec ±1.42% (88 runs sampled)\n * points x 4,235,613 ops/sec ±1.74% (88 runs sampled)\n * polygon x 2,854,454 ops/sec ±0.76% (84 runs sampled)\n * polygons x 1,565,315 ops/sec ±1.89% (85 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-truncate\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => truncate(geojson, 6, 2, true));\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-truncate/index.ts",
    "content": "import { coordEach } from \"@turf/meta\";\nimport { AllGeoJSON, isObject } from \"@turf/helpers\";\n\n/**\n * Takes a GeoJSON Feature or FeatureCollection and truncates the precision of the geometry.\n *\n * @function\n * @param {GeoJSON} geojson any GeoJSON Feature, FeatureCollection, Geometry or GeometryCollection.\n * @param {Object} [options={}] Optional parameters\n * @param {number} [options.precision=6] coordinate decimal precision\n * @param {number} [options.coordinates=3] maximum number of coordinates (primarly used to remove z coordinates)\n * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true)\n * @returns {GeoJSON} layer with truncated geometry\n * @example\n * var point = turf.point([\n *     70.46923055566859,\n *     58.11088890802906,\n *     1508\n * ]);\n * var options = {precision: 3, coordinates: 2};\n * var truncated = turf.truncate(point, options);\n * //=truncated.geometry.coordinates => [70.469, 58.111]\n *\n * //addToMap\n * var addToMap = [truncated];\n */\nfunction truncate<T extends AllGeoJSON>(\n  geojson: T,\n  options?: {\n    precision?: number;\n    coordinates?: number;\n    mutate?: boolean;\n  }\n): T {\n  // Optional parameters\n  options = options ?? {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  var precision = options.precision;\n  var coordinates = options.coordinates;\n  var mutate = options.mutate;\n\n  // default params\n  precision =\n    precision === undefined || precision === null || isNaN(precision)\n      ? 6\n      : precision;\n  coordinates =\n    coordinates === undefined || coordinates === null || isNaN(coordinates)\n      ? 3\n      : coordinates;\n\n  // validation\n  if (!geojson) throw new Error(\"<geojson> is required\");\n  if (typeof precision !== \"number\")\n    throw new Error(\"<precision> must be a number\");\n  if (typeof coordinates !== \"number\")\n    throw new Error(\"<coordinates> must be a number\");\n\n  // prevent input mutation\n  if (mutate === false || mutate === undefined)\n    geojson = JSON.parse(JSON.stringify(geojson));\n\n  var factor = Math.pow(10, precision);\n\n  // Truncate Coordinates\n  coordEach(geojson, function (coords) {\n    truncateCoords(coords, factor, coordinates!);\n  });\n  return geojson;\n}\n\n/**\n * Truncate Coordinates - Mutates coordinates in place\n *\n * @private\n * @param {Array<any>} coords Geometry Coordinates\n * @param {number} factor rounding factor for coordinate decimal precision\n * @param {number} coordinates maximum number of coordinates (primarly used to remove z coordinates)\n * @returns {Array<any>} mutated coordinates\n */\nfunction truncateCoords(coords: number[], factor: number, coordinates: number) {\n  // Remove extra coordinates (usually elevation coordinates and more)\n  if (coords.length > coordinates) coords.splice(coordinates, coords.length);\n\n  // Truncate coordinate decimals\n  for (var i = 0; i < coords.length; i++) {\n    coords[i] = Math.round(coords[i] * factor) / factor;\n  }\n  return coords;\n}\n\nexport { truncate };\nexport default truncate;\n"
  },
  {
    "path": "packages/turf-truncate/package.json",
    "content": "{\n  \"name\": \"@turf/truncate\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Truncates precision of GeoJSON coordinates.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geojson\",\n    \"gis\",\n    \"truncate\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-truncate/test/in/geometry-collection.geojson",
    "content": "{\n  \"type\": \"GeometryCollection\",\n  \"geometries\": [\n    {\n      \"type\": \"Point\",\n      \"coordinates\": [-75.69992065429688, 45.42509718349142]\n    },\n    {\n      \"type\": \"Point\",\n      \"coordinates\": [-75.6917667388916, 45.42226585577467]\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-truncate/test/in/linestring-geometry.geojson",
    "content": "{\n  \"type\": \"LineString\",\n  \"coordinates\": [\n    [33.046875, 12.554563528593656],\n    [31.9921875, 20.632784250388028],\n    [43.2421875, 27.371767300523047]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-truncate/test/in/point-elevation.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"precision\": 4,\n    \"coordinates\": 2\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-75.69992065429688, 45.42509718349142, 2312.132]\n  }\n}\n"
  },
  {
    "path": "packages/turf-truncate/test/in/point-geometry.geojson",
    "content": "{\n  \"type\": \"Point\",\n  \"coordinates\": [-75.69992065429688, 45.42509718349142]\n}\n"
  },
  {
    "path": "packages/turf-truncate/test/in/point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"precision\": 3\n  },\n  \"id\": 12345,\n  \"bbox\": [1, 2, 3, 4],\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-75.69992065429688, 45.42509718349142]\n  }\n}\n"
  },
  {
    "path": "packages/turf-truncate/test/in/points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"id\": 12345,\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.69992065429688, 45.42509718349142]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.6917667388916, 45.42226585577467]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-truncate/test/in/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-75.74506759643555, 45.383622119671905],\n        [-75.74506759643555, 45.437128742131435],\n        [-75.6547737121582, 45.437128742131435],\n        [-75.6547737121582, 45.383622119671905],\n        [-75.74506759643555, 45.383622119671905]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-truncate/test/in/polygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.74506759643555, 45.383622119671905],\n            [-75.74506759643555, 45.437128742131435],\n            [-75.6547737121582, 45.437128742131435],\n            [-75.6547737121582, 45.383622119671905],\n            [-75.74506759643555, 45.383622119671905]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.76927185058594, 45.441826226418996],\n            [-75.76927185058594, 45.48059563971866],\n            [-75.68000793457031, 45.48059563971866],\n            [-75.68000793457031, 45.441826226418996],\n            [-75.76927185058594, 45.441826226418996]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-truncate/test/out/geometry-collection.geojson",
    "content": "{\n  \"type\": \"GeometryCollection\",\n  \"geometries\": [\n    {\n      \"type\": \"Point\",\n      \"coordinates\": [-75.699921, 45.425097]\n    },\n    {\n      \"type\": \"Point\",\n      \"coordinates\": [-75.691767, 45.422266]\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-truncate/test/out/linestring-geometry.geojson",
    "content": "{\n  \"type\": \"LineString\",\n  \"coordinates\": [\n    [33.046875, 12.554564],\n    [31.992188, 20.632784],\n    [43.242188, 27.371767]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-truncate/test/out/point-elevation.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"precision\": 4,\n    \"coordinates\": 2\n  },\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-75.6999, 45.4251]\n  }\n}\n"
  },
  {
    "path": "packages/turf-truncate/test/out/point-geometry.geojson",
    "content": "{\n  \"type\": \"Point\",\n  \"coordinates\": [-75.699921, 45.425097]\n}\n"
  },
  {
    "path": "packages/turf-truncate/test/out/point.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"precision\": 3\n  },\n  \"id\": 12345,\n  \"bbox\": [1, 2, 3, 4],\n  \"geometry\": {\n    \"type\": \"Point\",\n    \"coordinates\": [-75.7, 45.425]\n  }\n}\n"
  },
  {
    "path": "packages/turf-truncate/test/out/points.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"id\": 12345,\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.699921, 45.425097]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-75.691767, 45.422266]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-truncate/test/out/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-75.745068, 45.383622],\n        [-75.745068, 45.437129],\n        [-75.654774, 45.437129],\n        [-75.654774, 45.383622],\n        [-75.745068, 45.383622]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-truncate/test/out/polygons.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.745068, 45.383622],\n            [-75.745068, 45.437129],\n            [-75.654774, 45.437129],\n            [-75.654774, 45.383622],\n            [-75.745068, 45.383622]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.769272, 45.441826],\n            [-75.769272, 45.480596],\n            [-75.680008, 45.480596],\n            [-75.680008, 45.441826],\n            [-75.769272, 45.441826]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-truncate/test.ts",
    "content": "import fs from \"fs\";\nimport test from \"tape\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { point } from \"@turf/helpers\";\nimport { truncate } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nlet fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n// fixtures = fixtures.filter(fixture => fixture.name === 'points');\n\ntest(\"turf-truncate\", (t) => {\n  for (const { filename, name, geojson } of fixtures) {\n    const { precision, coordinates } = geojson.properties || {};\n    const results = truncate(geojson, {\n      precision: precision,\n      coordinates: coordinates,\n    });\n\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, results);\n    t.deepEqual(results, loadJsonFileSync(directories.out + filename), name);\n  }\n  t.end();\n});\n\ntest(\"turf-truncate - precision & coordinates\", (t) => {\n  t.deepEqual(\n    truncate(point([50.1234567, 40.1234567]), { precision: 3 }).geometry\n      .coordinates,\n    [50.123, 40.123],\n    \"precision 3\"\n  );\n  t.deepEqual(\n    truncate(point([50.1234567, 40.1234567]), { precision: 0 }).geometry\n      .coordinates,\n    [50, 40],\n    \"precision 0\"\n  );\n  t.deepEqual(\n    truncate(point([50, 40, 1100]), { precision: 6 }).geometry.coordinates,\n    [50, 40, 1100],\n    \"coordinates default to 3\"\n  );\n  t.deepEqual(\n    truncate(point([50, 40, 1100]), { precision: 6, coordinates: 2 }).geometry\n      .coordinates,\n    [50, 40],\n    \"coordinates 2\"\n  );\n  t.end();\n});\n\ntest(\"turf-truncate - prevent input mutation\", (t) => {\n  const pt = point([120.123, 40.123, 3000]);\n  const ptBefore = JSON.parse(JSON.stringify(pt));\n\n  truncate(pt, { precision: 0 });\n  t.deepEqual(ptBefore, pt, \"does not mutate input\");\n\n  truncate(pt, { precision: 0, coordinates: 2, mutate: true });\n  t.deepEqual(pt, point([120, 40]), \"does mutate input\");\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-truncate/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-truncate/types.ts",
    "content": "import {\n  featureCollection,\n  point,\n  lineString,\n  geometryCollection,\n} from \"@turf/helpers\";\nimport { truncate } from \"./index.js\";\n\nconst pt = point([120.1234567, 40.1234567]);\nconst ptGeom = pt.geometry;\nconst line = lineString([\n  [20, 80],\n  [50, 40],\n]);\nconst lineGeom = line.geometry;\nconst points = featureCollection([pt]);\nconst lines = featureCollection([line]);\nconst geomCollection = geometryCollection([ptGeom, lineGeom]);\n\ntruncate(pt);\ntruncate(ptGeom);\ntruncate(line);\ntruncate(lineGeom);\ntruncate(lines);\ntruncate(points);\ntruncate(geomCollection);\ntruncate(pt, { precision: 6 });\ntruncate(pt, { precision: 3, coordinates: 2 });\ntruncate(pt, { precision: 3, coordinates: 2, mutate: false });\n"
  },
  {
    "path": "packages/turf-union/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-union/README.md",
    "content": "# @turf/union\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## union\n\nTakes a collection of input polygons and returns a combined polygon. If the\ninput polygons are not contiguous, this function returns a multi-polygon\nfeature.\n\n### Parameters\n\n*   `features` **[FeatureCollection][1]<([Polygon][2] | [MultiPolygon][3])>** input polygon features\n*   `options` **[Object][4]** Optional Parameters (optional, default `{}`)\n\n    *   `options.properties` **[GeoJsonProperties][5]** properties to assign to output feature (optional, default `{}`)\n\n### Examples\n\n```javascript\nconst poly1 = turf.polygon(\n  [\n    [\n      [-82.574787, 35.594087],\n      [-82.574787, 35.615581],\n      [-82.545261, 35.615581],\n      [-82.545261, 35.594087],\n      [-82.574787, 35.594087],\n    ],\n  ],\n  { fill: \"#0f0\" }\n);\n\nconst poly2 = turf.polygon(\n  [\n    [\n      [-82.560024, 35.585153],\n      [-82.560024, 35.602602],\n      [-82.52964, 35.602602],\n      [-82.52964, 35.585153],\n      [-82.560024, 35.585153],\n    ],\n  ],\n);\n\nconst union = turf.union(turf.featureCollection([poly1, poly2]));\n\n//addToMap\nconst addToMap = { poly1, poly2, union };\n\npoly1.properties.fill = \"#0f0\";\npoly2.properties.fill = \"#00f\";\nunion.properties.stroke = \"red\";\nunion.properties[\"stroke-width\"] = 4;\nunion.properties.fill = \"transparent\";\n```\n\nReturns **([Feature][5]<([Polygon][2] | [MultiPolygon][3])> | null)** a combined polygon or multi-polygon feature, or null if there were no input polygons to combine\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/union\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-union/bench.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark from \"benchmark\";\nimport { union } from \"./index.js\";\nimport { featureCollection } from \"@turf/helpers\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\nconst suite = new Benchmark.Suite(\"turf-union\");\n\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => {\n    union(featureCollection(geojson.features));\n  });\n}\n\nsuite.on(\"cycle\", (e) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-union/index.ts",
    "content": "import * as polyclip from \"polyclip-ts\";\nimport { multiPolygon, polygon } from \"@turf/helpers\";\nimport { geomEach } from \"@turf/meta\";\nimport {\n  FeatureCollection,\n  Feature,\n  Polygon,\n  MultiPolygon,\n  GeoJsonProperties,\n} from \"geojson\";\n\n/**\n * Takes a collection of input polygons and returns a combined polygon. If the\n * input polygons are not contiguous, this function returns a multi-polygon\n * feature.\n *\n * @function\n * @param {FeatureCollection<Polygon|MultiPolygon>} features input polygon features\n * @param {Object} [options={}] Optional Parameters\n * @param {GeoJsonProperties} [options.properties={}] properties to assign to output feature\n * @returns {Feature<(Polygon|MultiPolygon)>|null} a combined polygon or multi-polygon feature, or null if there were no input polygons to combine\n * @example\n *\n * const poly1 = turf.polygon(\n *   [\n *     [\n *       [-82.574787, 35.594087],\n *       [-82.574787, 35.615581],\n *       [-82.545261, 35.615581],\n *       [-82.545261, 35.594087],\n *       [-82.574787, 35.594087],\n *     ],\n *   ],\n *   { fill: \"#0f0\" }\n * );\n *\n * const poly2 = turf.polygon(\n *   [\n *     [\n *       [-82.560024, 35.585153],\n *       [-82.560024, 35.602602],\n *       [-82.52964, 35.602602],\n *       [-82.52964, 35.585153],\n *       [-82.560024, 35.585153],\n *     ],\n *   ],\n * );\n *\n * const union = turf.union(turf.featureCollection([poly1, poly2]));\n *\n * //addToMap\n * const addToMap = { poly1, poly2, union };\n *\n * poly1.properties.fill = \"#0f0\";\n * poly2.properties.fill = \"#00f\";\n * union.properties.stroke = \"red\";\n * union.properties[\"stroke-width\"] = 4;\n * union.properties.fill = \"transparent\";\n */\nfunction union<P extends GeoJsonProperties = GeoJsonProperties>(\n  features: FeatureCollection<Polygon | MultiPolygon>,\n  options: { properties?: P } = {}\n): Feature<Polygon | MultiPolygon, P> | null {\n  const geoms: polyclip.Geom[] = [];\n  geomEach(features, (geom) => {\n    geoms.push(geom.coordinates as polyclip.Geom);\n  });\n\n  if (geoms.length < 2) {\n    throw new Error(\"Must have at least 2 geometries\");\n  }\n\n  const unioned = polyclip.union(geoms[0], ...geoms.slice(1));\n  if (unioned.length === 0) return null;\n  if (unioned.length === 1) return polygon(unioned[0], options.properties);\n  else return multiPolygon(unioned, options.properties);\n}\n\nexport { union };\nexport default union;\n"
  },
  {
    "path": "packages/turf-union/package.json",
    "content": "{\n  \"name\": \"@turf/union\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Combines two or more polygons into a single polygon.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"gif\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"polyclip-ts\": \"^0.16.8\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-union/test/in/maximum-callstack-size-exceeded-2317.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-83.675399, 36.600791],\n              [-83.675018, 36.600817],\n              [-83.674722, 36.600814],\n              [-83.673837, 36.600805],\n              [-83.673542, 36.600803],\n              [-83.670824, 36.600803],\n              [-83.670145, 36.600804],\n              [-83.670142, 36.600797],\n              [-83.670134, 36.600777],\n              [-83.670132, 36.600771],\n              [-83.670046, 36.60077],\n              [-83.669789, 36.600767],\n              [-83.669704, 36.600766],\n              [-83.669686, 36.600765],\n              [-83.669564, 36.600765],\n              [-83.669519, 36.600764],\n              [-83.669385, 36.600763],\n              [-83.669341, 36.600763],\n              [-83.668306, 36.600753],\n              [-83.668287, 36.600752],\n              [-83.668232, 36.600749],\n              [-83.668214, 36.600748],\n              [-83.666969, 36.600683],\n              [-83.663237, 36.600488],\n              [-83.661993, 36.600424],\n              [-83.661985, 36.600423],\n              [-83.661847, 36.600421],\n              [-83.661409, 36.600418],\n              [-83.661264, 36.600417],\n              [-83.661086, 36.600415],\n              [-83.660551, 36.60041],\n              [-83.660374, 36.600409],\n              [-83.659427, 36.600403],\n              [-83.659417, 36.600403],\n              [-83.658543, 36.600376],\n              [-83.65659, 36.60032],\n              [-83.655645, 36.600294],\n              [-83.655632, 36.600294],\n              [-83.655406, 36.600288],\n              [-83.649726, 36.600126],\n              [-83.64559, 36.600009],\n              [-83.644991, 36.59996],\n              [-83.644378, 36.599909],\n              [-83.642543, 36.599759],\n              [-83.641931, 36.599709],\n              [-83.6419, 36.599706],\n              [-83.641809, 36.599699],\n              [-83.641779, 36.599697],\n              [-83.641761, 36.599695],\n              [-83.641709, 36.599691],\n              [-83.641692, 36.59969],\n              [-83.640972, 36.59963],\n              [-83.640793, 36.599616],\n              [-83.63928, 36.599492],\n              [-83.637834, 36.599375],\n              [-83.634739, 36.599147],\n              [-83.633226, 36.599036],\n              [-83.632887, 36.599011],\n              [-83.632529, 36.598985],\n              [-83.631872, 36.598922],\n              [-83.631535, 36.598891],\n              [-83.631495, 36.598887],\n              [-83.631378, 36.598875],\n              [-83.631339, 36.598872],\n              [-83.630895, 36.598829],\n              [-83.629578, 36.598705],\n              [-83.629565, 36.598704],\n              [-83.629122, 36.598669],\n              [-83.626262, 36.598445],\n              [-83.625768, 36.598407],\n              [-83.625547, 36.598402],\n              [-83.625172, 36.598394],\n              [-83.624916, 36.59839],\n              [-83.624737, 36.598365],\n              [-83.624056, 36.598269],\n              [-83.623685, 36.598217],\n              [-83.623652, 36.598212],\n              [-83.623601, 36.598204],\n              [-83.623461, 36.598185],\n              [-83.623182, 36.598145],\n              [-83.622888, 36.598104],\n              [-83.622698, 36.598078],\n              [-83.622072, 36.597991],\n              [-83.622055, 36.597989],\n              [-83.622044, 36.597987],\n              [-83.621989, 36.597987],\n              [-83.620898, 36.597979],\n              [-83.617628, 36.597957],\n              [-83.616538, 36.59795],\n              [-83.60925, 36.597902],\n              [-83.608832, 36.597901],\n              [-83.60881, 36.597901],\n              [-83.608751, 36.597899],\n              [-83.608714, 36.597899],\n              [-83.608656, 36.597897],\n              [-83.607239, 36.597888],\n              [-83.601408, 36.597828],\n              [-83.599452, 36.597808],\n              [-83.599089, 36.597804],\n              [-83.598003, 36.597792],\n              [-83.597667, 36.597789],\n              [-83.597641, 36.597789],\n              [-83.597383, 36.597786],\n              [-83.597175, 36.597784],\n              [-83.596609, 36.597778],\n              [-83.596369, 36.597776],\n              [-83.596351, 36.597776],\n              [-83.596149, 36.597773],\n              [-83.595542, 36.597767],\n              [-83.595341, 36.597765],\n              [-83.595317, 36.597764],\n              [-83.595221, 36.597764],\n              [-83.595197, 36.597763],\n              [-83.595102, 36.597763],\n              [-83.592193, 36.597732],\n              [-83.591869, 36.597728],\n              [-83.58333, 36.59764],\n              [-83.583276, 36.597639],\n              [-83.583147, 36.597638],\n              [-83.574587, 36.59755],\n              [-83.574532, 36.597549],\n              [-83.574505, 36.597549],\n              [-83.574369, 36.597556],\n              [-83.574315, 36.597559],\n              [-83.574288, 36.59756],\n              [-83.574244, 36.597562],\n              [-83.573846, 36.597557],\n              [-83.572439, 36.597542],\n              [-83.571971, 36.597537],\n              [-83.571351, 36.59753],\n              [-83.569494, 36.59751],\n              [-83.568875, 36.597504],\n              [-83.567807, 36.597496],\n              [-83.567541, 36.597495],\n              [-83.566414, 36.597483],\n              [-83.563036, 36.597449],\n              [-83.561954, 36.597439],\n              [-83.56191, 36.597438],\n              [-83.561824, 36.597438],\n              [-83.561723, 36.597436],\n              [-83.561678, 36.597436],\n              [-83.561421, 36.597433],\n              [-83.561321, 36.597432],\n              [-83.556926, 36.597392],\n              [-83.553058, 36.59738],\n              [-83.552091, 36.597378],\n              [-83.552018, 36.597377],\n              [-83.551668, 36.597377],\n              [-83.550303, 36.597373],\n              [-83.546208, 36.597363],\n              [-83.544843, 36.59736],\n              [-83.544646, 36.59736],\n              [-83.544438, 36.597359],\n              [-83.544029, 36.597357],\n              [-83.54218, 36.597352],\n              [-83.541564, 36.597351],\n              [-83.541444, 36.597351],\n              [-83.541108, 36.59735],\n              [-83.540103, 36.597347],\n              [-83.539768, 36.597347],\n              [-83.536848, 36.597339],\n              [-83.536119, 36.597337],\n              [-83.53594, 36.597337],\n              [-83.535437, 36.597335],\n              [-83.533929, 36.597331],\n              [-83.533427, 36.59733],\n              [-83.531307, 36.597324],\n              [-83.52495, 36.597307],\n              [-83.522831, 36.597302],\n              [-83.522597, 36.597302],\n              [-83.522156, 36.5973],\n              [-83.520835, 36.597297],\n              [-83.520395, 36.597296],\n              [-83.517709, 36.597288],\n              [-83.506965, 36.59726],\n              [-83.506835, 36.597259],\n              [-83.506446, 36.597258],\n              [-83.506317, 36.597258],\n              [-83.50621, 36.597257],\n              [-83.505783, 36.597257],\n              [-83.505751, 36.597256],\n              [-83.505623, 36.597256],\n              [-83.503111, 36.597249],\n              [-83.499913, 36.597241],\n              [-83.495575, 36.597248],\n              [-83.493063, 36.597253],\n              [-83.488829, 36.59726],\n              [-83.488817, 36.59726],\n              [-83.488566, 36.597261],\n              [-83.488323, 36.597261],\n              [-83.48318, 36.597271],\n              [-83.482826, 36.597271],\n              [-83.481765, 36.597273],\n              [-83.481412, 36.597274],\n              [-83.481149, 36.597274],\n              [-83.480363, 36.597275],\n              [-83.480102, 36.597276],\n              [-83.472112, 36.597291],\n              [-83.455512, 36.59732],\n              [-83.447796, 36.597335],\n              [-83.447579, 36.597335],\n              [-83.446051, 36.597338],\n              [-83.445335, 36.597339],\n              [-83.445332, 36.597339],\n              [-83.443175, 36.597342],\n              [-83.442457, 36.597344],\n              [-83.440579, 36.597347],\n              [-83.426615, 36.597371],\n              [-83.426569, 36.597371],\n              [-83.425769, 36.597372],\n              [-83.425648, 36.597373],\n              [-83.42503, 36.597373],\n              [-83.424907, 36.597374],\n              [-83.415109, 36.597392],\n              [-83.405142, 36.597392],\n              [-83.385712, 36.597393],\n              [-83.374902, 36.597393],\n              [-83.372647, 36.597413],\n              [-83.371896, 36.59742],\n              [-83.371647, 36.597422],\n              [-83.370903, 36.597429],\n              [-83.370655, 36.597432],\n              [-83.370324, 36.597435],\n              [-83.356564, 36.597559],\n              [-83.356532, 36.59756],\n              [-83.356292, 36.597562],\n              [-83.34692, 36.597647],\n              [-83.34682, 36.597648],\n              [-83.34679, 36.597648],\n              [-83.346283, 36.597653],\n              [-83.346208, 36.597653],\n              [-83.346133, 36.597654],\n              [-83.346033, 36.597655],\n              [-83.34602, 36.597655],\n              [-83.338354, 36.597724],\n              [-83.334831, 36.597757],\n              [-83.33468, 36.597759],\n              [-83.330903, 36.597793],\n              [-83.325051, 36.597835],\n              [-83.324969, 36.597837],\n              [-83.324963, 36.597837],\n              [-83.324699, 36.597838],\n              [-83.31119, 36.597938],\n              [-83.311183, 36.597938],\n              [-83.308539, 36.597958],\n              [-83.308416, 36.597959],\n              [-83.308292, 36.59796],\n              [-83.308136, 36.597961],\n              [-83.307957, 36.597962],\n              [-83.305661, 36.597979],\n              [-83.304185, 36.597989],\n              [-83.29976, 36.598022],\n              [-83.298308, 36.598033],\n              [-83.298285, 36.598033],\n              [-83.298012, 36.598034],\n              [-83.297196, 36.598041],\n              [-83.296924, 36.598043],\n              [-83.295943, 36.598049],\n              [-83.293001, 36.598071],\n              [-83.292021, 36.598078],\n              [-83.290598, 36.598088],\n              [-83.28633, 36.598119],\n              [-83.284908, 36.59813],\n              [-83.284761, 36.59813],\n              [-83.284322, 36.598134],\n              [-83.284176, 36.598136],\n              [-83.284007, 36.598136],\n              [-83.283965, 36.598137],\n              [-83.283873, 36.598137],\n              [-83.283741, 36.598138],\n              [-83.283697, 36.598139],\n              [-83.282218, 36.598149],\n              [-83.277782, 36.598183],\n              [-83.276304, 36.598194],\n              [-83.274892, 36.597794],\n              [-83.274539, 36.597695],\n              [-83.271933, 36.596957],\n              [-83.264116, 36.594746],\n              [-83.261511, 36.594009],\n              [-83.261355, 36.593965],\n              [-83.261317, 36.593954],\n              [-83.261274, 36.593942],\n              [-83.261258, 36.593938],\n              [-83.261145, 36.593906],\n              [-83.261103, 36.593894],\n              [-83.261003, 36.593894],\n              [-83.252633, 36.593932],\n              [-83.252538, 36.593932],\n              [-83.251675, 36.593936],\n              [-83.250335, 36.593942],\n              [-83.250204, 36.593938],\n              [-83.250148, 36.593932],\n              [-83.250082, 36.593921],\n              [-83.249903, 36.593905],\n              [-83.249698, 36.593889],\n              [-83.248937, 36.593834],\n              [-83.248545, 36.593837],\n              [-83.248161, 36.593841],\n              [-83.248053, 36.593841],\n              [-83.247729, 36.593845],\n              [-83.247622, 36.593846],\n              [-83.246978, 36.593851],\n              [-83.245046, 36.593868],\n              [-83.244403, 36.593874],\n              [-83.244201, 36.593875],\n              [-83.243595, 36.593881],\n              [-83.243394, 36.593883],\n              [-83.242385, 36.593892],\n              [-83.242234, 36.593894],\n              [-83.241554, 36.593899],\n              [-83.24137, 36.593933],\n              [-83.239618, 36.593916],\n              [-83.237299, 36.593937],\n              [-83.237128, 36.593936],\n              [-83.236446, 36.593936],\n              [-83.228263, 36.593931],\n              [-83.225448, 36.593929],\n              [-83.225436, 36.59393],\n              [-83.225361, 36.593929],\n              [-83.222994, 36.593927],\n              [-83.222594, 36.593927],\n              [-83.22095, 36.593926],\n              [-83.220891, 36.593926],\n              [-83.214814, 36.593922],\n              [-83.21445, 36.593921],\n              [-83.212212, 36.593919],\n              [-83.211586, 36.593919],\n              [-83.211137, 36.593918],\n              [-83.210517, 36.593918],\n              [-83.192566, 36.593906],\n              [-83.191466, 36.593905],\n              [-83.188169, 36.593902],\n              [-83.18707, 36.593902],\n              [-83.184824, 36.5939],\n              [-83.178088, 36.593895],\n              [-83.1766, 36.593895],\n              [-83.175843, 36.593897],\n              [-83.175581, 36.593897],\n              [-83.174798, 36.593901],\n              [-83.174537, 36.593902],\n              [-83.17227, 36.593911],\n              [-83.165469, 36.593939],\n              [-83.165022, 36.593941],\n              [-83.163202, 36.593948],\n              [-83.16039, 36.593958],\n              [-83.156893, 36.593972],\n              [-83.151955, 36.59399],\n              [-83.149144, 36.594001],\n              [-83.148946, 36.594001],\n              [-83.148897, 36.594002],\n              [-83.146362, 36.594011],\n              [-83.144707, 36.594018],\n              [-83.144671, 36.594019],\n              [-83.144073, 36.594021],\n              [-83.139566, 36.594039],\n              [-83.139494, 36.594039],\n              [-83.135111, 36.594056],\n              [-83.124897, 36.594096],\n              [-83.121963, 36.594089],\n              [-83.117581, 36.594081],\n              [-83.116461, 36.594078],\n              [-83.113101, 36.59407],\n              [-83.111981, 36.594068],\n              [-83.110323, 36.594064],\n              [-83.105352, 36.594054],\n              [-83.103906, 36.594051],\n              [-83.103695, 36.594051],\n              [-83.103261, 36.59405],\n              [-83.101961, 36.594047],\n              [-83.101528, 36.594046],\n              [-83.10149, 36.594046],\n              [-83.076418, 36.593993],\n              [-83.076279, 36.593993],\n              [-83.075832, 36.593995],\n              [-83.075433, 36.593995],\n              [-83.071048, 36.593987],\n              [-83.07092, 36.593987],\n              [-83.070142, 36.593985],\n              [-83.069483, 36.593983],\n              [-83.067508, 36.593979],\n              [-83.067146, 36.593979],\n              [-83.06685, 36.593978],\n              [-83.065517, 36.593975],\n              [-83.061518, 36.593967],\n              [-83.060185, 36.593965],\n              [-83.056849, 36.593957],\n              [-83.056016, 36.593956],\n              [-83.055105, 36.593954],\n              [-83.052374, 36.593948],\n              [-83.051464, 36.593947],\n              [-83.048752, 36.593941],\n              [-83.040619, 36.593924],\n              [-83.037908, 36.593919],\n              [-83.036376, 36.593916],\n              [-83.035998, 36.593915],\n              [-83.03027, 36.593903],\n              [-83.028361, 36.5939],\n              [-83.028139, 36.59389],\n              [-83.027475, 36.593863],\n              [-83.027254, 36.593854],\n              [-83.027061, 36.593863],\n              [-83.026482, 36.593891],\n              [-83.026312, 36.5939],\n              [-83.02629, 36.5939],\n              [-83.02249, 36.593892],\n              [-83.02154, 36.593891],\n              [-83.018305, 36.593891],\n              [-83.017168, 36.593885],\n              [-83.016076, 36.593881],\n              [-83.013386, 36.593875],\n              [-83.013173, 36.593875],\n              [-83.012704, 36.593873],\n              [-83.005331, 36.593858],\n              [-83.005305, 36.593859],\n              [-82.999892, 36.593792],\n              [-82.998549, 36.593728],\n              [-82.998057, 36.593727],\n              [-82.994517, 36.593721],\n              [-82.992286, 36.593722],\n              [-82.991963, 36.593722],\n              [-82.990947, 36.593723],\n              [-82.989071, 36.593723],\n              [-82.986081, 36.593733],\n              [-82.985128, 36.593736],\n              [-82.984994, 36.593736],\n              [-82.984878, 36.593737],\n              [-82.984804, 36.593737],\n              [-82.98473, 36.593738],\n              [-82.98071, 36.593752],\n              [-82.975282, 36.593778],\n              [-82.96839, 36.593797],\n              [-82.966239, 36.593802],\n              [-82.961779, 36.593789],\n              [-82.961745, 36.593785],\n              [-82.961707, 36.593785],\n              [-82.961673, 36.593781],\n              [-82.956798, 36.593777],\n              [-82.954498, 36.593774],\n              [-82.946743, 36.593758],\n              [-82.939004, 36.593721],\n              [-82.93293, 36.593692],\n              [-82.930019, 36.593678],\n              [-82.929774, 36.593677],\n              [-82.929723, 36.593677],\n              [-82.929678, 36.593684],\n              [-82.929606, 36.593686],\n              [-82.929428, 36.593685],\n              [-82.928208, 36.593683],\n              [-82.924549, 36.593677],\n              [-82.92333, 36.593675],\n              [-82.919738, 36.593668],\n              [-82.914063, 36.593638],\n              [-82.913694, 36.593637],\n              [-82.910007, 36.593616],\n              [-82.909676, 36.593617],\n              [-82.909621, 36.593617],\n              [-82.907058, 36.593603],\n              [-82.905583, 36.593596],\n              [-82.899372, 36.593549],\n              [-82.89681, 36.593531],\n              [-82.895536, 36.593521],\n              [-82.891716, 36.593494],\n              [-82.890443, 36.593485],\n              [-82.890377, 36.593484],\n              [-82.890182, 36.593482],\n              [-82.890117, 36.593482],\n              [-82.89008, 36.593481],\n              [-82.889936, 36.593481],\n              [-82.889879, 36.59348],\n              [-82.889794, 36.59348],\n              [-82.88971, 36.593479],\n              [-82.889654, 36.593479],\n              [-82.889547, 36.593478],\n              [-82.88944, 36.593478],\n              [-82.889322, 36.593476],\n              [-82.889203, 36.593476],\n              [-82.888928, 36.593475],\n              [-82.888919, 36.593475],\n              [-82.88795, 36.593468],\n              [-82.885121, 36.593476],\n              [-82.885044, 36.593476],\n              [-82.88326, 36.593481],\n              [-82.877908, 36.593497],\n              [-82.876125, 36.593503],\n              [-82.874903, 36.593504],\n              [-82.858137, 36.593659],\n              [-82.854737, 36.593686],\n              [-82.852319, 36.593705],\n              [-82.852274, 36.593705],\n              [-82.848674, 36.593734],\n              [-82.843876, 36.593754],\n              [-82.843373, 36.593755],\n              [-82.841865, 36.59376],\n              [-82.841363, 36.593762],\n              [-82.839177, 36.593771],\n              [-82.834657, 36.59379],\n              [-82.832622, 36.593779],\n              [-82.830437, 36.593768],\n              [-82.83001, 36.593765],\n              [-82.82873, 36.593759],\n              [-82.828304, 36.593757],\n              [-82.826844, 36.593749],\n              [-82.822466, 36.593728],\n              [-82.821007, 36.593721],\n              [-82.820739, 36.59372],\n              [-82.819937, 36.593717],\n              [-82.81967, 36.593716],\n              [-82.819264, 36.593714],\n              [-82.818047, 36.593708],\n              [-82.817642, 36.593707],\n              [-82.817395, 36.593705],\n              [-82.816411, 36.593701],\n              [-82.815801, 36.593698],\n              [-82.815281, 36.593696],\n              [-82.813972, 36.593688],\n              [-82.81342, 36.593685],\n              [-82.813364, 36.593693],\n              [-82.813296, 36.593704],\n              [-82.813065, 36.593705],\n              [-82.812849, 36.593706],\n              [-82.812165, 36.593709],\n              [-82.811866, 36.593711],\n              [-82.811503, 36.593712],\n              [-82.810417, 36.593719],\n              [-82.810055, 36.593721],\n              [-82.808086, 36.593731],\n              [-82.802181, 36.593765],\n              [-82.800462, 36.593775],\n              [-82.800213, 36.593774],\n              [-82.800171, 36.593773],\n              [-82.800046, 36.593771],\n              [-82.800005, 36.593771],\n              [-82.799984, 36.593759],\n              [-82.799368, 36.593757],\n              [-82.797448, 36.593754],\n              [-82.796809, 36.593753],\n              [-82.796786, 36.593753],\n              [-82.796719, 36.593755],\n              [-82.796697, 36.593756],\n              [-82.795559, 36.59376],\n              [-82.792624, 36.593771],\n              [-82.792146, 36.59377],\n              [-82.791009, 36.593768],\n              [-82.790796, 36.593767],\n              [-82.790156, 36.593766],\n              [-82.789944, 36.593766],\n              [-82.789342, 36.593764],\n              [-82.787538, 36.593761],\n              [-82.786937, 36.593761],\n              [-82.786621, 36.59376],\n              [-82.785674, 36.593757],\n              [-82.785359, 36.593757],\n              [-82.785335, 36.593751],\n              [-82.785259, 36.593752],\n              [-82.78496, 36.593757],\n              [-82.784908, 36.593758],\n              [-82.784861, 36.593758],\n              [-82.783997, 36.593756],\n              [-82.781406, 36.593751],\n              [-82.780837, 36.59375],\n              [-82.780543, 36.593746],\n              [-82.780355, 36.593746],\n              [-82.779791, 36.593749],\n              [-82.779604, 36.59375],\n              [-82.778201, 36.593749],\n              [-82.772589, 36.593749],\n              [-82.772584, 36.593748],\n              [-82.772569, 36.593746],\n              [-82.772564, 36.593746],\n              [-82.771865, 36.593747],\n              [-82.769768, 36.593751],\n              [-82.76907, 36.593753],\n              [-82.76816, 36.593753],\n              [-82.765432, 36.593754],\n              [-82.764523, 36.593755],\n              [-82.762813, 36.593741],\n              [-82.757685, 36.593701],\n              [-82.755976, 36.593688],\n              [-82.755396, 36.593683],\n              [-82.753659, 36.59367],\n              [-82.75308, 36.593666],\n              [-82.75142, 36.593661],\n              [-82.749845, 36.593652],\n              [-82.74512, 36.593626],\n              [-82.743545, 36.593618],\n              [-82.742773, 36.593615],\n              [-82.740457, 36.593607],\n              [-82.739686, 36.593605],\n              [-82.739372, 36.593604],\n              [-82.73783, 36.593604],\n              [-82.736964, 36.593606],\n              [-82.736676, 36.593608],\n              [-82.73585, 36.59361],\n              [-82.733374, 36.593616],\n              [-82.732549, 36.593619],\n              [-82.731433, 36.593622],\n              [-82.728087, 36.59363],\n              [-82.726972, 36.593634],\n              [-82.726025, 36.593636],\n              [-82.723186, 36.593643],\n              [-82.72224, 36.593646],\n              [-82.721978, 36.593646],\n              [-82.721193, 36.593648],\n              [-82.720932, 36.593649],\n              [-82.720729, 36.593649],\n              [-82.720121, 36.59365],\n              [-82.719919, 36.593651],\n              [-82.719046, 36.593653],\n              [-82.71643, 36.593661],\n              [-82.715558, 36.593664],\n              [-82.715144, 36.593664],\n              [-82.713904, 36.593666],\n              [-82.713491, 36.593668],\n              [-82.713344, 36.593668],\n              [-82.712906, 36.593669],\n              [-82.712761, 36.59367],\n              [-82.712041, 36.593672],\n              [-82.70988, 36.593678],\n              [-82.709161, 36.593681],\n              [-82.708913, 36.593681],\n              [-82.708169, 36.593683],\n              [-82.707922, 36.593685],\n              [-82.707853, 36.593684],\n              [-82.707646, 36.593682],\n              [-82.707577, 36.593682],\n              [-82.706676, 36.593684],\n              [-82.703973, 36.593692],\n              [-82.703073, 36.593695],\n              [-82.702368, 36.593696],\n              [-82.700253, 36.593701],\n              [-82.699549, 36.593704],\n              [-82.699298, 36.593704],\n              [-82.699236, 36.593705],\n              [-82.695785, 36.593705],\n              [-82.695057, 36.593687],\n              [-82.694145, 36.593703],\n              [-82.691807, 36.593742],\n              [-82.688147, 36.593738],\n              [-82.682284, 36.593715],\n              [-82.681803, 36.593713],\n              [-82.680878, 36.59371],\n              [-82.680671, 36.593709],\n              [-82.680363, 36.593707],\n              [-82.679884, 36.593706],\n              [-82.679831, 36.593705],\n              [-82.675883, 36.593705],\n              [-82.674911, 36.593709],\n              [-82.671996, 36.59372],\n              [-82.671025, 36.593725],\n              [-82.669436, 36.593709],\n              [-82.664671, 36.593662],\n              [-82.663495, 36.593651],\n              [-82.663286, 36.593657],\n              [-82.663084, 36.593675],\n              [-82.662458, 36.59373],\n              [-82.662064, 36.593765],\n              [-82.660576, 36.593775],\n              [-82.659949, 36.59378],\n              [-82.656482, 36.593805],\n              [-82.654378, 36.593805],\n              [-82.654055, 36.593806],\n              [-82.65381, 36.593805],\n              [-82.650861, 36.593806],\n              [-82.649928, 36.593805],\n              [-82.646482, 36.593806],\n              [-82.644485, 36.593805],\n              [-82.643182, 36.593806],\n              [-82.636282, 36.593791],\n              [-82.632704, 36.593806],\n              [-82.632681, 36.593806],\n              [-82.632264, 36.593805],\n              [-82.630505, 36.593805],\n              [-82.627345, 36.593806],\n              [-82.624881, 36.593807],\n              [-82.62363, 36.593826],\n              [-82.622607, 36.593804],\n              [-82.621249, 36.593857],\n              [-82.620288, 36.593895],\n              [-82.619556, 36.593949],\n              [-82.61864, 36.593987],\n              [-82.617873, 36.593992],\n              [-82.614715, 36.594017],\n              [-82.614438, 36.594019],\n              [-82.609849, 36.594056],\n              [-82.609639, 36.594033],\n              [-82.60948, 36.594017],\n              [-82.60938, 36.594006],\n              [-82.60918, 36.594106],\n              [-82.60888, 36.594106],\n              [-82.608174, 36.594111],\n              [-82.607583, 36.594116],\n              [-82.600512, 36.594169],\n              [-82.59688, 36.594206],\n              [-82.593615, 36.59427],\n              [-82.592959, 36.594283],\n              [-82.589688, 36.594344],\n              [-82.588111, 36.594374],\n              [-82.588045, 36.594375],\n              [-82.58718, 36.594406],\n              [-82.586262, 36.594389],\n              [-82.585956, 36.594383],\n              [-82.585909, 36.594382],\n              [-82.585579, 36.594406],\n              [-82.582485, 36.594446],\n              [-82.580187, 36.594475],\n              [-82.578179, 36.594507],\n              [-82.578124, 36.594507],\n              [-82.57774, 36.594514],\n              [-82.577719, 36.594514],\n              [-82.576388, 36.594536],\n              [-82.572389, 36.594602],\n              [-82.572261, 36.594604],\n              [-82.572164, 36.594606],\n              [-82.572027, 36.594606],\n              [-82.571879, 36.594607],\n              [-82.571122, 36.594612],\n              [-82.568864, 36.594673],\n              [-82.566625, 36.594716],\n              [-82.566466, 36.594719],\n              [-82.565293, 36.594742],\n              [-82.564284, 36.594762],\n              [-82.563028, 36.594779],\n              [-82.562206, 36.594804],\n              [-82.562186, 36.594805],\n              [-82.562079, 36.594807],\n              [-82.561685, 36.594735],\n              [-82.561428, 36.594688],\n              [-82.561269, 36.594664],\n              [-82.561186, 36.594705],\n              [-82.56109, 36.594734],\n              [-82.56098, 36.594748],\n              [-82.560773, 36.594767],\n              [-82.560436, 36.594798],\n              [-82.560214, 36.594816],\n              [-82.559815, 36.594836],\n              [-82.559682, 36.59486],\n              [-82.559587, 36.594835],\n              [-82.559487, 36.594825],\n              [-82.557911, 36.594819],\n              [-82.557732, 36.594818],\n              [-82.557313, 36.594817],\n              [-82.55699, 36.594819],\n              [-82.556625, 36.594817],\n              [-82.55653, 36.594817],\n              [-82.556341, 36.594798],\n              [-82.555934, 36.594797],\n              [-82.555277, 36.594809],\n              [-82.554721, 36.594802],\n              [-82.554437, 36.594817],\n              [-82.554105, 36.594822],\n              [-82.554054, 36.594812],\n              [-82.554005, 36.594786],\n              [-82.549177, 36.594955],\n              [-82.545648, 36.595004],\n              [-82.545603, 36.595005],\n              [-82.545587, 36.595006],\n              [-82.539636, 36.595104],\n              [-82.536158, 36.595152],\n              [-82.53442, 36.595179],\n              [-82.527827, 36.595277],\n              [-82.522487, 36.595301],\n              [-82.518335, 36.595354],\n              [-82.517275, 36.595398],\n              [-82.517191, 36.595402],\n              [-82.517074, 36.595407],\n              [-82.516825, 36.595385],\n              [-82.512918, 36.5954],\n              [-82.509635, 36.595434],\n              [-82.509257, 36.595438],\n              [-82.505245, 36.595423],\n              [-82.503663, 36.595447],\n              [-82.503209, 36.595456],\n              [-82.502433, 36.595466],\n              [-82.501828, 36.595475],\n              [-82.499876, 36.595535],\n              [-82.497226, 36.595577],\n              [-82.496553, 36.59558],\n              [-82.496452, 36.595581],\n              [-82.496352, 36.595581],\n              [-82.49624, 36.595578],\n              [-82.496155, 36.595582],\n              [-82.495814, 36.595584],\n              [-82.494121, 36.595591],\n              [-82.493822, 36.595592],\n              [-82.493807, 36.595592],\n              [-82.492848, 36.595608],\n              [-82.491747, 36.595635],\n              [-82.491662, 36.595638],\n              [-82.49165, 36.595638],\n              [-82.489956, 36.595688],\n              [-82.489572, 36.595708],\n              [-82.489556, 36.595709],\n              [-82.487242, 36.595828],\n              [-82.486998, 36.595829],\n              [-82.486934, 36.595829],\n              [-82.484742, 36.595833],\n              [-82.481528, 36.595764],\n              [-82.478677, 36.595595],\n              [-82.475449, 36.595242],\n              [-82.471868, 36.594848],\n              [-82.469337, 36.594647],\n              [-82.46658, 36.594487],\n              [-82.465921, 36.59449],\n              [-82.465659, 36.594492],\n              [-82.465585, 36.594492],\n              [-82.465062, 36.594494],\n              [-82.463202, 36.594501],\n              [-82.459946, 36.594587],\n              [-82.459731, 36.594593],\n              [-82.457826, 36.594642],\n              [-82.450767, 36.594771],\n              [-82.450687, 36.594772],\n              [-82.442861, 36.594885],\n              [-82.44286, 36.594885],\n              [-82.441877, 36.594899],\n              [-82.441874, 36.594899],\n              [-82.427958, 36.595014],\n              [-82.423399, 36.595017],\n              [-82.416561, 36.595022],\n              [-82.416292, 36.595022],\n              [-82.410254, 36.595026],\n              [-82.4073, 36.595022],\n              [-82.406062, 36.595019],\n              [-82.406022, 36.595019],\n              [-82.400384, 36.59501],\n              [-82.399087, 36.595007],\n              [-82.387403, 36.594989],\n              [-82.387342, 36.594989],\n              [-82.387248, 36.594987],\n              [-82.387208, 36.595],\n              [-82.386913, 36.595023],\n              [-82.386756, 36.595036],\n              [-82.383513, 36.595028],\n              [-82.37487, 36.595008],\n              [-82.368472, 36.595022],\n              [-82.368461, 36.595022],\n              [-82.356398, 36.595176],\n              [-82.356254, 36.595178],\n              [-82.355111, 36.595192],\n              [-82.349711, 36.595248],\n              [-82.33879, 36.595361],\n              [-82.326486, 36.595481],\n              [-82.326481, 36.595482],\n              [-82.324545, 36.5955],\n              [-82.312615, 36.595614],\n              [-82.311115, 36.595616],\n              [-82.309725, 36.595618],\n              [-82.303919, 36.595666],\n              [-82.303118, 36.595674],\n              [-82.30306, 36.595674],\n              [-82.293818, 36.595706],\n              [-82.293843, 36.595706],\n              [-82.294153, 36.595708],\n              [-82.295683, 36.598299],\n              [-82.299017, 36.603947],\n              [-82.299367, 36.604528],\n              [-82.299375, 36.604541],\n              [-82.299549, 36.60483],\n              [-82.299694, 36.605079],\n              [-82.299698, 36.605085],\n              [-82.300243, 36.606008],\n              [-82.302225, 36.609448],\n              [-82.302392, 36.609738],\n              [-82.30243, 36.609804],\n              [-82.302442, 36.609824],\n              [-82.302531, 36.609979],\n              [-82.302545, 36.610003],\n              [-82.302571, 36.610048],\n              [-82.302591, 36.610083],\n              [-82.302597, 36.610093],\n              [-82.302609, 36.610114],\n              [-82.302615, 36.610124],\n              [-82.302621, 36.610136],\n              [-82.302629, 36.61015],\n              [-82.302707, 36.610286],\n              [-82.305037, 36.614329],\n              [-82.305172, 36.614563],\n              [-82.305177, 36.614571],\n              [-82.306269, 36.616467],\n              [-82.306511, 36.616887],\n              [-82.306682, 36.617184],\n              [-82.306688, 36.617194],\n              [-82.306851, 36.617477],\n              [-82.306863, 36.617498],\n              [-82.307251, 36.618203],\n              [-82.307387, 36.61845],\n              [-82.307403, 36.618479],\n              [-82.307408, 36.618487],\n              [-82.307412, 36.618495],\n              [-82.30744, 36.618546],\n              [-82.307494, 36.618644],\n              [-82.307684, 36.618989],\n              [-82.307752, 36.619113],\n              [-82.307762, 36.61913],\n              [-82.307765, 36.619136],\n              [-82.30778, 36.61916],\n              [-82.307893, 36.619349],\n              [-82.307924, 36.6194],\n              [-82.307968, 36.619472],\n              [-82.308, 36.619525],\n              [-82.308004, 36.619532],\n              [-82.308053, 36.61971],\n              [-82.308062, 36.619741],\n              [-82.308833, 36.622455],\n              [-82.309254, 36.624794],\n              [-82.309316, 36.625134],\n              [-82.309562, 36.626202],\n              [-82.309623, 36.626461],\n              [-82.310178, 36.628744],\n              [-82.310575, 36.630354],\n              [-82.310736, 36.631012],\n              [-82.310826, 36.631375],\n              [-82.311003, 36.632093],\n              [-82.311363, 36.63347],\n              [-82.311395, 36.633592],\n              [-82.311413, 36.63366],\n              [-82.311437, 36.633751],\n              [-82.311455, 36.63382],\n              [-82.311456, 36.633825],\n              [-82.311458, 36.633833],\n              [-82.31146, 36.63384],\n              [-82.311567, 36.634252],\n              [-82.311947, 36.635688],\n              [-82.311971, 36.63578],\n              [-82.312035, 36.636023],\n              [-82.312041, 36.636048],\n              [-82.312043, 36.636055],\n              [-82.312192, 36.636665],\n              [-82.312902, 36.639561],\n              [-82.313488, 36.642031],\n              [-82.313644, 36.642686],\n              [-82.313896, 36.643605],\n              [-82.314568, 36.646055],\n              [-82.315313, 36.649071],\n              [-82.315374, 36.649313],\n              [-82.315587, 36.650171],\n              [-82.315608, 36.650253],\n              [-82.315616, 36.650284],\n              [-82.315619, 36.650296],\n              [-82.315622, 36.650309],\n              [-82.315627, 36.650326],\n              [-82.315631, 36.650341],\n              [-82.315716, 36.650674],\n              [-82.315985, 36.651717],\n              [-82.316358, 36.653161],\n              [-82.317289, 36.656815],\n              [-82.318303, 36.660919],\n              [-82.319252, 36.664339],\n              [-82.320191, 36.668047],\n              [-82.320215, 36.668141],\n              [-82.320264, 36.668326],\n              [-82.320273, 36.66836],\n              [-82.32028, 36.668388],\n              [-82.320426, 36.668946],\n              [-82.320431, 36.668964],\n              [-82.320439, 36.668996],\n              [-82.321252, 36.672217],\n              [-82.323145, 36.679545],\n              [-82.323235, 36.679891],\n              [-82.32336, 36.680361],\n              [-82.323501, 36.680851],\n              [-82.324758, 36.685598],\n              [-82.324764, 36.685619],\n              [-82.324799, 36.685759],\n              [-82.324802, 36.68577],\n              [-82.324888, 36.686109],\n              [-82.324996, 36.68651],\n              [-82.32505, 36.686711],\n              [-82.325072, 36.686791],\n              [-82.325093, 36.686871],\n              [-82.325118, 36.686965],\n              [-82.325142, 36.68706],\n              [-82.325242, 36.687446],\n              [-82.32607, 36.690661],\n              [-82.326079, 36.690697],\n              [-82.32614, 36.690932],\n              [-82.326182, 36.691095],\n              [-82.326317, 36.691618],\n              [-82.326503, 36.692342],\n              [-82.326528, 36.692418],\n              [-82.32653, 36.692424],\n              [-82.326579, 36.69257],\n              [-82.326756, 36.69309],\n              [-82.326865, 36.693409],\n              [-82.326877, 36.693444],\n              [-82.326881, 36.693456],\n              [-82.327025, 36.693879],\n              [-82.327087, 36.694062],\n              [-82.327103, 36.694093],\n              [-82.327522, 36.695315],\n              [-82.329017, 36.699677],\n              [-82.330873, 36.705521],\n              [-82.332014, 36.709114],\n              [-82.332076, 36.709308],\n              [-82.332093, 36.709362],\n              [-82.331792, 36.709316],\n              [-82.331434, 36.709503],\n              [-82.331175, 36.709698],\n              [-82.330936, 36.709957],\n              [-82.330708, 36.710273],\n              [-82.330411, 36.710573],\n              [-82.330132, 36.7108],\n              [-82.329407, 36.711409],\n              [-82.329038, 36.711637],\n              [-82.328422, 36.712213],\n              [-82.328224, 36.712448],\n              [-82.327926, 36.712772],\n              [-82.327379, 36.713122],\n              [-82.326832, 36.713553],\n              [-82.326126, 36.714145],\n              [-82.325411, 36.714786],\n              [-82.324692, 36.715081],\n              [-82.324133, 36.715213],\n              [-82.323697, 36.715739],\n              [-82.32315, 36.716162],\n              [-82.322381, 36.716425],\n              [-82.322317, 36.716477],\n              [-82.322053, 36.716693],\n              [-82.321937, 36.717178],\n              [-82.32158, 36.717679],\n              [-82.320783, 36.718087],\n              [-82.320124, 36.718341],\n              [-82.319556, 36.718618],\n              [-82.318939, 36.719073],\n              [-82.318303, 36.719617],\n              [-82.317935, 36.719926],\n              [-82.317629, 36.720435],\n              [-82.316882, 36.720899],\n              [-82.316192, 36.721096],\n              [-82.315983, 36.721194],\n              [-82.315735, 36.721526],\n              [-82.315468, 36.721923],\n              [-82.315191, 36.722247],\n              [-82.314621, 36.722379],\n              [-82.314012, 36.722568],\n              [-82.313655, 36.722997],\n              [-82.313208, 36.723411],\n              [-82.312039, 36.723748],\n              [-82.311561, 36.724082],\n              [-82.311145, 36.72456],\n              [-82.310818, 36.725053],\n              [-82.310109, 36.725243],\n              [-82.309317, 36.725776],\n              [-82.309082, 36.725934],\n              [-82.308786, 36.726451],\n              [-82.308418, 36.726671],\n              [-82.307658, 36.726877],\n              [-82.30711, 36.727195],\n              [-82.306891, 36.727236],\n              [-82.306539, 36.7273],\n              [-82.30606, 36.727516],\n              [-82.305427, 36.727838],\n              [-82.305422, 36.727841],\n              [-82.305221, 36.727943],\n              [-82.304918, 36.727908],\n              [-82.304905, 36.727906],\n              [-82.304891, 36.727905],\n              [-82.304769, 36.727891],\n              [-82.304284, 36.727985],\n              [-82.304234, 36.727995],\n              [-82.30415, 36.728011],\n              [-82.303294, 36.728024],\n              [-82.30279, 36.728244],\n              [-82.302742, 36.728278],\n              [-82.302654, 36.728339],\n              [-82.301533, 36.729198],\n              [-82.301511, 36.729214],\n              [-82.301396, 36.729301],\n              [-82.300825, 36.729973],\n              [-82.300803, 36.729999],\n              [-82.300548, 36.730373],\n              [-82.300541, 36.730383],\n              [-82.300537, 36.730389],\n              [-82.300287, 36.730756],\n              [-82.299878, 36.731],\n              [-82.299671, 36.730996],\n              [-82.299644, 36.730996],\n              [-82.299605, 36.730995],\n              [-82.299517, 36.730993],\n              [-82.299433, 36.730991],\n              [-82.299347, 36.730989],\n              [-82.299308, 36.730988],\n              [-82.298751, 36.730914],\n              [-82.298371, 36.731062],\n              [-82.29806, 36.731183],\n              [-82.298043, 36.73119],\n              [-82.297998, 36.731208],\n              [-82.297989, 36.731211],\n              [-82.297982, 36.731214],\n              [-82.297794, 36.731286],\n              [-82.297148, 36.731607],\n              [-82.296873, 36.731877],\n              [-82.296855, 36.731895],\n              [-82.296689, 36.732058],\n              [-82.296534, 36.73216],\n              [-82.296471, 36.732202],\n              [-82.296037, 36.73249],\n              [-82.294971, 36.733104],\n              [-82.294192, 36.733345],\n              [-82.293741, 36.733188],\n              [-82.29269, 36.733355],\n              [-82.2917, 36.733514],\n              [-82.290911, 36.733825],\n              [-82.290243, 36.734216],\n              [-82.289315, 36.734656],\n              [-82.288519, 36.735249],\n              [-82.287641, 36.735738],\n              [-82.286992, 36.735935],\n              [-82.286222, 36.736044],\n              [-82.285504, 36.736403],\n              [-82.285105, 36.736711],\n              [-82.283938, 36.737282],\n              [-82.283052, 36.737964],\n              [-82.281634, 36.738423],\n              [-82.281324, 36.738611],\n              [-82.280747, 36.73896],\n              [-82.279937, 36.739198],\n              [-82.279199, 36.739581],\n              [-82.27852, 36.739843],\n              [-82.27738, 36.740003],\n              [-82.276329, 36.740097],\n              [-82.275946, 36.740203],\n              [-82.27576, 36.740254],\n              [-82.275142, 36.740741],\n              [-82.27456, 36.741076],\n              [-82.274437, 36.741147],\n              [-82.273348, 36.741774],\n              [-82.272608, 36.74194],\n              [-82.271738, 36.742235],\n              [-82.271068, 36.742328],\n              [-82.26913, 36.743027],\n              [-82.26905, 36.743056],\n              [-82.267793, 36.743732],\n              [-82.266557, 36.744497],\n              [-82.265101, 36.745295],\n              [-82.264414, 36.745783],\n              [-82.264175, 36.745953],\n              [-82.262826, 36.746379],\n              [-82.261815, 36.746497],\n              [-82.260768, 36.747083],\n              [-82.25899, 36.747673],\n              [-82.257271, 36.748287],\n              [-82.25659, 36.748251],\n              [-82.255941, 36.74844],\n              [-82.255232, 36.748806],\n              [-82.254542, 36.749084],\n              [-82.254261, 36.749029],\n              [-82.253307, 36.748841],\n              [-82.252437, 36.748813],\n              [-82.252352, 36.748806],\n              [-82.251805, 36.74876],\n              [-82.251236, 36.748981],\n              [-82.250968, 36.749329],\n              [-82.250751, 36.749757],\n              [-82.250758, 36.750111],\n              [-82.250589, 36.750564],\n              [-82.250485, 36.750969],\n              [-82.250409, 36.751229],\n              [-82.25032, 36.751351],\n              [-82.250162, 36.751498],\n              [-82.249864, 36.751735],\n              [-82.249864, 36.751364],\n              [-82.249448, 36.751466],\n              [-82.248911, 36.751561],\n              [-82.248715, 36.751748],\n              [-82.248486, 36.751832],\n              [-82.248174, 36.752198],\n              [-82.248059, 36.752449],\n              [-82.247458, 36.752883],\n              [-82.246985, 36.753218],\n              [-82.246277, 36.753291],\n              [-82.245677, 36.753258],\n              [-82.245158, 36.753265],\n              [-82.244408, 36.753193],\n              [-82.243794, 36.753442],\n              [-82.243485, 36.753462],\n              [-82.242743, 36.753326],\n              [-82.241764, 36.753306],\n              [-82.241198, 36.753441],\n              [-82.240297, 36.753895],\n              [-82.239752, 36.754634],\n              [-82.239332, 36.755163],\n              [-82.238895, 36.755788],\n              [-82.238536, 36.756388],\n              [-82.237889, 36.757024],\n              [-82.237374, 36.757263],\n              [-82.236587, 36.757321],\n              [-82.235759, 36.757387],\n              [-82.235119, 36.757339],\n              [-82.234481, 36.757371],\n              [-82.233585, 36.757518],\n              [-82.233185, 36.757483],\n              [-82.232771, 36.75777],\n              [-82.231997, 36.758117],\n              [-82.231414, 36.758454],\n              [-82.230742, 36.758832],\n              [-82.230214, 36.758887],\n              [-82.229043, 36.75982],\n              [-82.22868, 36.760154],\n              [-82.228264, 36.760369],\n              [-82.227383, 36.760758],\n              [-82.226641, 36.761137],\n              [-82.225577, 36.761922],\n              [-82.225164, 36.762314],\n              [-82.22488, 36.762623],\n              [-82.224544, 36.762804],\n              [-82.223884, 36.762732],\n              [-82.223245, 36.762739],\n              [-82.222746, 36.762777],\n              [-82.222246, 36.762727],\n              [-82.221905, 36.762667],\n              [-82.221411, 36.762938],\n              [-82.221338, 36.762959],\n              [-82.220497, 36.763199],\n              [-82.219669, 36.763257],\n              [-82.219126, 36.763577],\n              [-82.21826, 36.764272],\n              [-82.217293, 36.76438],\n              [-82.216589, 36.764662],\n              [-82.215992, 36.764774],\n              [-82.215403, 36.764748],\n              [-82.214847, 36.76494],\n              [-82.214383, 36.765244],\n              [-82.213822, 36.765685],\n              [-82.213158, 36.765959],\n              [-82.212636, 36.766383],\n              [-82.212034, 36.766753],\n              [-82.211428, 36.766929],\n              [-82.210619, 36.766939],\n              [-82.21033, 36.766982],\n              [-82.21001, 36.767501],\n              [-82.209705, 36.767738],\n              [-82.209335, 36.767767],\n              [-82.208746, 36.767814],\n              [-82.207971, 36.768024],\n              [-82.207117, 36.768252],\n              [-82.205369, 36.768812],\n              [-82.204776, 36.769133],\n              [-82.204405, 36.769604],\n              [-82.203923, 36.770028],\n              [-82.203237, 36.770173],\n              [-82.202273, 36.770442],\n              [-82.201361, 36.770848],\n              [-82.200622, 36.77084],\n              [-82.19954, 36.770676],\n              [-82.198801, 36.770668],\n              [-82.197484, 36.770708],\n              [-82.197304, 36.770835],\n              [-82.197284, 36.770849],\n              [-82.197265, 36.770863],\n              [-82.197259, 36.770867],\n              [-82.197232, 36.770886],\n              [-82.197222, 36.770893],\n              [-82.19701, 36.771043],\n              [-82.19657, 36.771532],\n              [-82.195559, 36.771986],\n              [-82.195508, 36.77201],\n              [-82.194896, 36.772308],\n              [-82.194178, 36.77292],\n              [-82.193627, 36.773394],\n              [-82.193102, 36.773625],\n              [-82.192277, 36.773836],\n              [-82.191642, 36.774085],\n              [-82.190679, 36.774402],\n              [-82.189782, 36.774533],\n              [-82.189113, 36.774509],\n              [-82.188552, 36.774444],\n              [-82.188173, 36.774465],\n              [-82.187674, 36.774462],\n              [-82.187109, 36.774203],\n              [-82.186238, 36.774093],\n              [-82.185325, 36.774433],\n              [-82.184743, 36.774859],\n              [-82.184144, 36.775445],\n              [-82.183648, 36.77562],\n              [-82.182631, 36.775728],\n              [-82.182245, 36.775902],\n              [-82.181591, 36.776223],\n              [-82.180768, 36.776507],\n              [-82.179864, 36.776807],\n              [-82.17925, 36.77708],\n              [-82.178103, 36.777737],\n              [-82.177365, 36.77781],\n              [-82.176467, 36.777861],\n              [-82.175499, 36.77792],\n              [-82.175033, 36.778127],\n              [-82.174501, 36.778527],\n              [-82.173792, 36.778544],\n              [-82.173164, 36.778591],\n              [-82.172679, 36.778886],\n              [-82.172073, 36.77903],\n              [-82.171133, 36.778993],\n              [-82.170274, 36.77897],\n              [-82.169795, 36.778992],\n              [-82.169352, 36.778788],\n              [-82.168713, 36.778835],\n              [-82.167936, 36.778941],\n              [-82.167203, 36.779263],\n              [-82.166777, 36.77951],\n              [-82.165447, 36.779976],\n              [-82.164813, 36.780329],\n              [-82.164088, 36.780539],\n              [-82.163359, 36.780579],\n              [-82.16258, 36.780596],\n              [-82.161493, 36.780657],\n              [-82.160615, 36.780739],\n              [-82.160078, 36.780882],\n              [-82.159644, 36.781161],\n              [-82.159269, 36.781439],\n              [-82.158483, 36.781625],\n              [-82.157676, 36.781747],\n              [-82.15694, 36.781908],\n              [-82.156466, 36.782244],\n              [-82.155809, 36.782348],\n              [-82.155122, 36.782468],\n              [-82.154597, 36.782748],\n              [-82.154071, 36.782947],\n              [-82.153405, 36.783124],\n              [-82.152068, 36.783179],\n              [-82.151614, 36.783531],\n              [-82.150992, 36.783948],\n              [-82.150317, 36.784149],\n              [-82.149159, 36.784235],\n              [-82.148358, 36.784662],\n              [-82.147702, 36.784847],\n              [-82.146951, 36.785314],\n              [-82.146357, 36.785644],\n              [-82.145682, 36.785885],\n              [-82.144494, 36.785939],\n              [-82.143799, 36.786188],\n              [-82.143095, 36.786494],\n              [-82.142198, 36.786657],\n              [-82.140573, 36.787432],\n              [-82.139776, 36.787521],\n              [-82.138704, 36.787388],\n              [-82.138032, 36.787235],\n              [-82.136975, 36.787295],\n              [-82.136121, 36.787603],\n              [-82.135512, 36.788213],\n              [-82.134836, 36.78843],\n              [-82.134283, 36.788799],\n              [-82.13384, 36.78915],\n              [-82.13313, 36.789085],\n              [-82.132411, 36.789109],\n              [-82.131776, 36.789358],\n              [-82.13097, 36.789552],\n              [-82.130162, 36.789642],\n              [-82.129853, 36.789648],\n              [-82.129323, 36.789659],\n              [-82.129267, 36.789658],\n              [-82.128854, 36.789656],\n              [-82.128197, 36.789816],\n              [-82.127356, 36.790293],\n              [-82.126777, 36.790863],\n              [-82.126443, 36.791245],\n              [-82.126381, 36.791656],\n              [-82.126056, 36.791974],\n              [-82.125482, 36.792238],\n              [-82.125157, 36.792555],\n              [-82.124859, 36.792707],\n              [-82.124499, 36.792756],\n              [-82.12409, 36.792803],\n              [-82.123566, 36.793077],\n              [-82.123059, 36.793214],\n              [-82.122529, 36.793198],\n              [-82.122235, 36.793073],\n              [-82.121767, 36.793145],\n              [-82.121264, 36.793499],\n              [-82.120256, 36.794006],\n              [-82.119569, 36.794146],\n              [-82.119067, 36.794081],\n              [-82.118261, 36.794222],\n              [-82.117466, 36.794444],\n              [-82.116147, 36.794932],\n              [-82.115366, 36.795347],\n              [-82.1147, 36.795502],\n              [-82.11414, 36.795543],\n              [-82.113915, 36.795724],\n              [-82.113767, 36.796234],\n              [-82.113378, 36.796707],\n              [-82.112821, 36.796861],\n              [-82.112041, 36.796841],\n              [-82.110937, 36.796712],\n              [-82.109031, 36.796508],\n              [-82.107618, 36.796392],\n              [-82.107231, 36.796519],\n              [-82.106435, 36.797144],\n              [-82.105574, 36.797536],\n              [-82.104295, 36.79841],\n              [-82.104059, 36.798591],\n              [-82.103973, 36.798753],\n              [-82.104078, 36.798953],\n              [-82.104263, 36.79916],\n              [-82.104443, 36.799577],\n              [-82.104711, 36.799935],\n              [-82.105344, 36.800442],\n              [-82.106216, 36.800928],\n              [-82.1067, 36.80109],\n              [-82.10713, 36.801495],\n              [-82.107484, 36.801683],\n              [-82.1083, 36.801913],\n              [-82.108829, 36.802259],\n              [-82.109327, 36.803034],\n              [-82.109758, 36.803866],\n              [-82.110458, 36.805129],\n              [-82.110954, 36.805363],\n              [-82.111317, 36.805898],\n              [-82.111714, 36.806602],\n              [-82.11217, 36.807264],\n              [-82.112299, 36.807653],\n              [-82.112414, 36.808357],\n              [-82.11253, 36.808891],\n              [-82.112533, 36.808906],\n              [-82.112575, 36.809099],\n              [-82.112578, 36.809158],\n              [-82.112602, 36.809637],\n              [-82.112619, 36.810136],\n              [-82.113133, 36.811197],\n              [-82.113729, 36.81194],\n              [-82.114227, 36.812841],\n              [-82.114536, 36.813553],\n              [-82.115034, 36.814117],\n              [-82.115045, 36.814224],\n              [-82.115046, 36.814229],\n              [-82.115067, 36.814428],\n              [-82.114969, 36.814792],\n              [-82.114963, 36.814814],\n              [-82.114962, 36.814819],\n              [-82.11496, 36.814824],\n              [-82.114958, 36.814832],\n              [-82.11485, 36.81523],\n              [-82.114847, 36.81552],\n              [-82.114847, 36.815527],\n              [-82.114846, 36.815616],\n              [-82.114843, 36.81577],\n              [-82.114843, 36.815777],\n              [-82.114842, 36.815798],\n              [-82.114841, 36.815803],\n              [-82.114835, 36.815927],\n              [-82.115351, 36.816618],\n              [-82.115993, 36.817107],\n              [-82.116594, 36.817705],\n              [-82.116753, 36.818023],\n              [-82.116679, 36.818154],\n              [-82.11667, 36.81817],\n              [-82.116667, 36.818176],\n              [-82.116659, 36.81819],\n              [-82.116623, 36.818252],\n              [-82.11657, 36.818384],\n              [-82.116487, 36.818592],\n              [-82.116426, 36.819017],\n              [-82.116476, 36.819371],\n              [-82.116481, 36.819408],\n              [-82.116484, 36.819432],\n              [-82.116487, 36.819452],\n              [-82.116491, 36.81948],\n              [-82.116544, 36.81986],\n              [-82.116473, 36.820119],\n              [-82.115726, 36.820898],\n              [-82.115721, 36.820904],\n              [-82.115712, 36.820913],\n              [-82.115027, 36.821586],\n              [-82.114946, 36.821719],\n              [-82.114941, 36.821727],\n              [-82.114629, 36.822236],\n              [-82.114631, 36.822241],\n              [-82.114866, 36.82295],\n              [-82.115082, 36.823292],\n              [-82.115104, 36.823327],\n              [-82.115114, 36.823342],\n              [-82.115117, 36.823347],\n              [-82.115396, 36.823792],\n              [-82.115313, 36.824233],\n              [-82.115198, 36.824424],\n              [-82.115194, 36.824431],\n              [-82.115185, 36.824446],\n              [-82.115178, 36.824457],\n              [-82.115057, 36.824659],\n              [-82.114802, 36.825305],\n              [-82.114735, 36.825737],\n              [-82.114732, 36.825754],\n              [-82.11473, 36.825767],\n              [-82.114729, 36.825772],\n              [-82.114729, 36.825777],\n              [-82.114726, 36.825796],\n              [-82.114684, 36.826064],\n              [-82.114637, 36.826226],\n              [-82.114634, 36.826238],\n              [-82.114628, 36.826258],\n              [-82.114625, 36.826267],\n              [-82.114609, 36.826323],\n              [-82.114572, 36.826452],\n              [-82.114094, 36.826772],\n              [-82.113861, 36.827069],\n              [-82.113658, 36.827328],\n              [-82.113652, 36.827333],\n              [-82.113635, 36.827347],\n              [-82.113148, 36.827742],\n              [-82.111859, 36.828385],\n              [-82.111529, 36.828573],\n              [-82.111512, 36.828583],\n              [-82.111491, 36.828595],\n              [-82.111471, 36.828606],\n              [-82.111044, 36.828849],\n              [-82.111038, 36.828856],\n              [-82.110907, 36.829011],\n              [-82.110854, 36.829074],\n              [-82.110808, 36.829128],\n              [-82.110776, 36.829166],\n              [-82.11077, 36.829173],\n              [-82.110565, 36.829413],\n              [-82.110537, 36.829797],\n              [-82.110534, 36.829841],\n              [-82.110512, 36.830135],\n              [-82.110443, 36.830741],\n              [-82.110155, 36.831156],\n              [-82.109928, 36.831574],\n              [-82.109909, 36.831609],\n              [-82.109905, 36.831617],\n              [-82.109884, 36.831656],\n              [-82.109869, 36.831684],\n              [-82.109854, 36.831711],\n              [-82.109757, 36.831888],\n              [-82.109604, 36.832138],\n              [-82.109044, 36.833047],\n              [-82.108363, 36.834283],\n              [-82.107786, 36.835244],\n              [-82.107016, 36.835732],\n              [-82.106165, 36.836108],\n              [-82.105687, 36.836228],\n              [-82.104658, 36.836324],\n              [-82.104007, 36.836705],\n              [-82.103345, 36.837078],\n              [-82.102833, 36.837448],\n              [-82.102092, 36.837838],\n              [-82.101392, 36.837849],\n              [-82.101055, 36.837991],\n              [-82.101069, 36.838612],\n              [-82.100928, 36.839404],\n              [-82.10032, 36.840365],\n              [-82.099744, 36.840962],\n              [-82.099194, 36.841438],\n              [-82.098787, 36.842024],\n              [-82.097794, 36.842765],\n              [-82.097147, 36.842944],\n              [-82.096169, 36.843475],\n              [-82.095661, 36.844007],\n              [-82.09552, 36.844396],\n              [-82.095163, 36.844949],\n              [-82.094377, 36.845171],\n              [-82.093476, 36.845563],\n              [-82.092677, 36.846067],\n              [-82.091956, 36.846473],\n              [-82.091271, 36.84675],\n              [-82.090857, 36.847425],\n              [-82.090354, 36.848174],\n              [-82.089613, 36.848581],\n              [-82.088929, 36.848889],\n              [-82.088696, 36.848927],\n              [-82.088112, 36.849022],\n              [-82.087731, 36.849423],\n              [-82.087222, 36.849915],\n              [-82.086446, 36.850112],\n              [-82.085964, 36.850498],\n              [-82.085763, 36.850872],\n              [-82.085191, 36.851259],\n              [-82.084341, 36.851272],\n              [-82.083822, 36.851377],\n              [-82.083668, 36.851613],\n              [-82.083359, 36.852117],\n              [-82.082754, 36.85236],\n              [-82.082309, 36.852165],\n              [-82.081896, 36.852042],\n              [-82.081324, 36.85197],\n              [-82.080576, 36.852522],\n              [-82.080217, 36.853003],\n              [-82.079888, 36.853508],\n              [-82.079199, 36.854002],\n              [-82.078599, 36.854502],\n              [-82.07794, 36.855012],\n              [-82.077458, 36.855085],\n              [-82.077242, 36.855119],\n              [-82.076793, 36.85519],\n              [-82.076093, 36.855225],\n              [-82.075796, 36.855367],\n              [-82.075564, 36.855741],\n              [-82.074682, 36.856093],\n              [-82.074135, 36.856009],\n              [-82.073627, 36.855931],\n              [-82.072584, 36.85589],\n              [-82.071628, 36.856082],\n              [-82.070943, 36.856366],\n              [-82.070512, 36.856735],\n              [-82.069888, 36.857051],\n              [-82.069014, 36.856935],\n              [-82.067811, 36.856864],\n              [-82.066922, 36.856926],\n              [-82.066314, 36.857064],\n              [-82.066119, 36.8573],\n              [-82.065563, 36.857889],\n              [-82.064479, 36.858236],\n              [-82.063264, 36.858504],\n              [-82.062704, 36.858513],\n              [-82.061684, 36.858577],\n              [-82.061001, 36.858498],\n              [-82.060341, 36.85854],\n              [-82.059553, 36.859092],\n              [-82.058873, 36.859561],\n              [-82.058373, 36.859561],\n              [-82.057876, 36.859334],\n              [-82.057284, 36.859303],\n              [-82.056121, 36.859658],\n              [-82.05486, 36.860137],\n              [-82.053312, 36.860716],\n              [-82.052607, 36.860984],\n              [-82.051821, 36.861197],\n              [-82.051337, 36.861454],\n              [-82.051162, 36.861683],\n              [-82.050756, 36.861906],\n              [-82.049786, 36.861969],\n              [-82.048976, 36.861997],\n              [-82.048403, 36.861909],\n              [-82.047838, 36.862127],\n              [-82.047464, 36.86243],\n              [-82.046613, 36.862419],\n              [-82.04586, 36.862341],\n              [-82.044367, 36.862726],\n              [-82.042672, 36.863476],\n              [-82.042106, 36.863694],\n              [-82.041971, 36.863882],\n              [-82.041832, 36.864375],\n              [-82.041628, 36.864653],\n              [-82.041216, 36.86461],\n              [-82.040339, 36.864776],\n              [-82.039554, 36.865054],\n              [-82.038702, 36.865453],\n              [-82.037845, 36.865675],\n              [-82.037263, 36.865603],\n              [-82.036519, 36.865461],\n              [-82.035712, 36.86565],\n              [-82.03498, 36.866048],\n              [-82.034644, 36.866246],\n              [-82.034249, 36.866478],\n              [-82.033493, 36.866698],\n              [-82.032723, 36.866758],\n              [-82.03206, 36.867066],\n              [-82.031464, 36.867276],\n              [-82.030922, 36.867227],\n              [-82.030148, 36.86711],\n              [-82.029249, 36.867195],\n              [-82.028312, 36.867394],\n              [-82.027398, 36.867722],\n              [-82.026597, 36.867718],\n              [-82.02581, 36.867906],\n              [-82.024592, 36.868472],\n              [-82.023905, 36.868684],\n              [-82.022744, 36.868709],\n              [-82.021018, 36.868992],\n              [-82.019942, 36.869217],\n              [-82.018437, 36.869545],\n              [-82.016783, 36.86994],\n              [-82.015806, 36.870551],\n              [-82.015138, 36.870674],\n              [-82.014241, 36.870896],\n              [-82.013408, 36.871247],\n              [-82.01205, 36.871412],\n              [-82.00982, 36.872016],\n              [-82.008812, 36.872135],\n              [-82.007746, 36.872385],\n              [-82.007136, 36.872853],\n              [-82.006443, 36.873218],\n              [-82.005373, 36.873297],\n              [-82.0046, 36.87322],\n              [-82.003603, 36.873387],\n              [-82.002758, 36.873698],\n              [-82.002336, 36.874083],\n              [-82.001567, 36.874158],\n              [-82.001046, 36.874133],\n              [-82.000656, 36.874163],\n              [-82.000232, 36.874476],\n              [-81.999853, 36.874626],\n              [-81.997567, 36.874771],\n              [-81.996606, 36.874872],\n              [-81.996482, 36.875117],\n              [-81.996443, 36.875215],\n              [-81.996262, 36.875273],\n              [-81.996082, 36.875314],\n              [-81.995861, 36.875348],\n              [-81.99556, 36.875381],\n              [-81.995259, 36.875399],\n              [-81.994917, 36.875368],\n              [-81.994605, 36.875321],\n              [-81.994353, 36.87525],\n              [-81.993941, 36.875228],\n              [-81.993489, 36.875286],\n              [-81.993104, 36.875315],\n              [-81.992952, 36.875417],\n              [-81.992752, 36.875517],\n              [-81.992452, 36.876117],\n              [-81.992252, 36.876417],\n              [-81.992152, 36.876517],\n              [-81.992052, 36.876517],\n              [-81.991752, 36.876617],\n              [-81.991252, 36.876617],\n              [-81.991152, 36.876717],\n              [-81.990752, 36.876917],\n              [-81.990652, 36.877117],\n              [-81.990552, 36.877117],\n              [-81.990352, 36.877217],\n              [-81.990252, 36.877117],\n              [-81.989152, 36.877117],\n              [-81.988752, 36.877017],\n              [-81.988252, 36.877217],\n              [-81.987952, 36.877417],\n              [-81.987952, 36.877517],\n              [-81.987852, 36.877517],\n              [-81.987652, 36.877617],\n              [-81.987052, 36.877617],\n              [-81.986552, 36.877717],\n              [-81.986252, 36.877917],\n              [-81.985852, 36.878117],\n              [-81.985052, 36.878117],\n              [-81.984752, 36.878317],\n              [-81.984252, 36.878517],\n              [-81.983652, 36.878917],\n              [-81.983252, 36.879017],\n              [-81.983152, 36.879117],\n              [-81.982752, 36.879117],\n              [-81.982052, 36.879217],\n              [-81.981352, 36.879217],\n              [-81.981152, 36.879017],\n              [-81.980852, 36.878817],\n              [-81.980752, 36.878617],\n              [-81.980652, 36.878517],\n              [-81.980652, 36.878117],\n              [-81.980839, 36.877227],\n              [-81.980852, 36.877117],\n              [-81.980752, 36.877017],\n              [-81.980752, 36.876917],\n              [-81.980652, 36.876817],\n              [-81.980552, 36.876617],\n              [-81.980552, 36.876417],\n              [-81.980452, 36.876217],\n              [-81.980352, 36.875917],\n              [-81.980252, 36.875817],\n              [-81.980152, 36.875517],\n              [-81.980052, 36.875417],\n              [-81.980052, 36.875317],\n              [-81.979952, 36.875117],\n              [-81.979323, 36.874682],\n              [-81.978652, 36.874217],\n              [-81.978352, 36.873917],\n              [-81.978252, 36.873717],\n              [-81.978252, 36.873317],\n              [-81.978352, 36.873117],\n              [-81.978452, 36.872817],\n              [-81.978539, 36.872555],\n              [-81.978552, 36.872517],\n              [-81.978652, 36.872317],\n              [-81.978552, 36.872017],\n              [-81.977952, 36.871417],\n              [-81.977352, 36.871117],\n              [-81.976952, 36.870717],\n              [-81.976652, 36.870217],\n              [-81.976052, 36.869617],\n              [-81.975993, 36.869607],\n              [-81.975452, 36.869517],\n              [-81.974752, 36.869617],\n              [-81.974252, 36.869817],\n              [-81.973652, 36.869917],\n              [-81.972952, 36.870117],\n              [-81.972452, 36.870317],\n              [-81.971752, 36.870417],\n              [-81.970852, 36.870617],\n              [-81.967952, 36.870617],\n              [-81.967452, 36.870517],\n              [-81.967252, 36.870417],\n              [-81.965052, 36.870117],\n              [-81.964551, 36.870217],\n              [-81.964151, 36.870217],\n              [-81.963551, 36.869917],\n              [-81.962651, 36.869317],\n              [-81.962574, 36.869255],\n              [-81.962158, 36.86892],\n              [-81.961949, 36.868712],\n              [-81.96145, 36.868513],\n              [-81.961251, 36.868315],\n              [-81.961153, 36.867917],\n              [-81.960996, 36.867607],\n              [-81.960957, 36.86753],\n              [-81.960925, 36.867466],\n              [-81.960899, 36.867412],\n              [-81.960767, 36.867144],\n              [-81.960551, 36.866614],\n              [-81.960257, 36.866121],\n              [-81.959956, 36.865715],\n              [-81.959455, 36.865316],\n              [-81.958954, 36.865216],\n              [-81.958332, 36.865216],\n              [-81.957756, 36.865213],\n              [-81.95731, 36.865328],\n              [-81.956567, 36.86551],\n              [-81.955532, 36.865923],\n              [-81.95532, 36.866013],\n              [-81.954359, 36.866413],\n              [-81.953662, 36.866513],\n              [-81.953149, 36.866617],\n              [-81.952762, 36.866521],\n              [-81.952469, 36.866462],\n              [-81.952249, 36.866417],\n              [-81.951544, 36.866016],\n              [-81.951332, 36.865854],\n              [-81.951317, 36.865843],\n              [-81.951152, 36.865716],\n              [-81.950926, 36.865493],\n              [-81.95085, 36.865418],\n              [-81.950709, 36.865361],\n              [-81.950356, 36.865219],\n              [-81.949956, 36.864818],\n              [-81.949454, 36.864518],\n              [-81.949155, 36.864416],\n              [-81.948247, 36.864416],\n              [-81.947258, 36.864717],\n              [-81.947094, 36.864781],\n              [-81.947087, 36.864784],\n              [-81.947057, 36.864796],\n              [-81.947051, 36.864798],\n              [-81.946999, 36.864818],\n              [-81.946989, 36.864822],\n              [-81.946945, 36.864839],\n              [-81.946926, 36.864847],\n              [-81.946909, 36.864854],\n              [-81.946895, 36.864864],\n              [-81.946751, 36.864918],\n              [-81.946474, 36.865142],\n              [-81.943651, 36.867418],\n              [-81.941651, 36.867618],\n              [-81.935175, 36.871061],\n              [-81.933752, 36.871818],\n              [-81.933617, 36.871836],\n              [-81.933575, 36.871842],\n              [-81.933528, 36.871848],\n              [-81.933518, 36.871849],\n              [-81.933487, 36.871853],\n              [-81.933405, 36.871864],\n              [-81.932115, 36.872037],\n              [-81.92855, 36.872518],\n              [-81.927994, 36.872769],\n              [-81.926063, 36.873643],\n              [-81.92595, 36.873694],\n              [-81.925875, 36.873728],\n              [-81.925846, 36.873741],\n              [-81.925824, 36.873751],\n              [-81.925816, 36.873755],\n              [-81.925803, 36.873761],\n              [-81.922801, 36.87512],\n              [-81.920616, 36.876139],\n              [-81.920052, 36.876421],\n              [-81.918852, 36.876921],\n              [-81.917952, 36.877321],\n              [-81.917252, 36.877721],\n              [-81.916252, 36.87812],\n              [-81.915452, 36.87852],\n              [-81.914151, 36.87902],\n              [-81.911751, 36.88022],\n              [-81.911651, 36.88032],\n              [-81.910751, 36.88032],\n              [-81.910251, 36.88042],\n              [-81.909851, 36.88042],\n              [-81.909751, 36.88052],\n              [-81.909351, 36.88072],\n              [-81.908251, 36.881219],\n              [-81.907051, 36.881719],\n              [-81.90615, 36.882119],\n              [-81.90475, 36.882819],\n              [-81.90425, 36.883019],\n              [-81.90385, 36.883319],\n              [-81.90285, 36.883819],\n              [-81.902149, 36.883919],\n              [-81.901349, 36.884119],\n              [-81.900649, 36.884319],\n              [-81.899549, 36.884618],\n              [-81.898449, 36.885019],\n              [-81.897649, 36.885319],\n              [-81.896549, 36.885819],\n              [-81.895849, 36.886019],\n              [-81.89568, 36.886075],\n              [-81.895205, 36.886234],\n              [-81.894649, 36.886419],\n              [-81.893549, 36.886719],\n              [-81.892904, 36.886961],\n              [-81.892749, 36.887019],\n              [-81.891549, 36.887319],\n              [-81.88962, 36.888032],\n              [-81.888849, 36.888219],\n              [-81.888749, 36.888319],\n              [-81.888649, 36.888319],\n              [-81.888349, 36.888519],\n              [-81.887449, 36.888719],\n              [-81.886349, 36.889119],\n              [-81.885649, 36.889319],\n              [-81.885249, 36.889419],\n              [-81.885049, 36.889519],\n              [-81.884949, 36.889519],\n              [-81.884849, 36.889619],\n              [-81.884749, 36.889619],\n              [-81.884549, 36.889719],\n              [-81.882979, 36.890919],\n              [-81.882849, 36.891019],\n              [-81.881849, 36.891819],\n              [-81.881149, 36.892419],\n              [-81.881094, 36.89246],\n              [-81.879848, 36.893419],\n              [-81.878648, 36.894219],\n              [-81.877248, 36.895219],\n              [-81.876548, 36.895819],\n              [-81.875548, 36.896619],\n              [-81.875348, 36.896819],\n              [-81.875181, 36.896903],\n              [-81.875148, 36.896919],\n              [-81.875048, 36.897019],\n              [-81.874948, 36.897019],\n              [-81.874848, 36.896969],\n              [-81.872666, 36.898533],\n              [-81.871318, 36.899499],\n              [-81.87021, 36.900294],\n              [-81.866556, 36.902912],\n              [-81.865778, 36.903471],\n              [-81.865572, 36.903619],\n              [-81.863487, 36.905116],\n              [-81.861797, 36.906324],\n              [-81.860548, 36.907219],\n              [-81.859048, 36.908219],\n              [-81.853502, 36.914117],\n              [-81.85343, 36.914192],\n              [-81.853415, 36.914208],\n              [-81.85341, 36.914214],\n              [-81.853402, 36.914222],\n              [-81.853378, 36.914247],\n              [-81.853231, 36.914401],\n              [-81.853183, 36.91445],\n              [-81.853176, 36.914457],\n              [-81.852904, 36.914733],\n              [-81.852718, 36.914936],\n              [-81.849124, 36.918755],\n              [-81.843346, 36.92492],\n              [-81.83953, 36.927463],\n              [-81.839462, 36.927508],\n              [-81.839197, 36.927777],\n              [-81.839194, 36.927784],\n              [-81.839116, 36.927893],\n              [-81.839084, 36.927914],\n              [-81.838987, 36.928028],\n              [-81.838847, 36.92812],\n              [-81.838747, 36.92802],\n              [-81.838247, 36.92822],\n              [-81.837064, 36.928896],\n              [-81.836846, 36.92902],\n              [-81.836195, 36.928361],\n              [-81.823788, 36.915802],\n              [-81.823645, 36.915658],\n              [-81.817635, 36.909575],\n              [-81.81759, 36.909529],\n              [-81.815329, 36.90724],\n              [-81.812609, 36.904487],\n              [-81.808215, 36.900037],\n              [-81.807913, 36.899733],\n              [-81.804797, 36.896581],\n              [-81.803282, 36.89487],\n              [-81.803099, 36.894663],\n              [-81.802879, 36.894415],\n              [-81.802874, 36.894411],\n              [-81.801184, 36.892924],\n              [-81.801009, 36.892747],\n              [-81.800949, 36.892686],\n              [-81.796293, 36.887974],\n              [-81.796211, 36.887891],\n              [-81.791327, 36.882945],\n              [-81.790397, 36.882004],\n              [-81.79027, 36.881876],\n              [-81.788965, 36.880555],\n              [-81.788781, 36.880369],\n              [-81.788015, 36.879594],\n              [-81.78796, 36.879539],\n              [-81.787905, 36.879483],\n              [-81.787841, 36.879417],\n              [-81.787811, 36.879387],\n              [-81.787776, 36.879351],\n              [-81.787772, 36.879347],\n              [-81.783581, 36.875105],\n              [-81.781359, 36.872833],\n              [-81.779138, 36.870561],\n              [-81.778889, 36.870305],\n              [-81.778449, 36.869856],\n              [-81.778404, 36.86981],\n              [-81.778123, 36.869523],\n              [-81.776244, 36.8676],\n              [-81.775092, 36.866422],\n              [-81.772334, 36.863603],\n              [-81.771996, 36.863257],\n              [-81.769782, 36.860992],\n              [-81.769741, 36.86095],\n              [-81.769548, 36.860754],\n              [-81.769356, 36.860558],\n              [-81.768921, 36.860075],\n              [-81.768485, 36.859592],\n              [-81.768419, 36.859517],\n              [-81.768033, 36.859069],\n              [-81.762713, 36.853868],\n              [-81.762151, 36.853317],\n              [-81.761588, 36.852765],\n              [-81.761003, 36.85218],\n              [-81.757846, 36.849025],\n              [-81.756854, 36.848],\n              [-81.752467, 36.843478],\n              [-81.752302, 36.843308],\n              [-81.752185, 36.843188],\n              [-81.752141, 36.84315],\n              [-81.752117, 36.843125],\n              [-81.751637, 36.842622],\n              [-81.749846, 36.840773],\n              [-81.749144, 36.840121],\n              [-81.743114, 36.832796],\n              [-81.742813, 36.832431],\n              [-81.741453, 36.831212],\n              [-81.740898, 36.830715],\n              [-81.740748, 36.830572],\n              [-81.739956, 36.829818],\n              [-81.7399, 36.829765],\n              [-81.739576, 36.829456],\n              [-81.729791, 36.820133],\n              [-81.727837, 36.818272],\n              [-81.727764, 36.818055],\n              [-81.72767, 36.817775],\n              [-81.727626, 36.817747],\n              [-81.727312, 36.817617],\n              [-81.721906, 36.811895],\n              [-81.718821, 36.808511],\n              [-81.713544, 36.802721],\n              [-81.712886, 36.80211],\n              [-81.712752, 36.801985],\n              [-81.711627, 36.80094],\n              [-81.710368, 36.79977],\n              [-81.710208, 36.799621],\n              [-81.705248, 36.795013],\n              [-81.705055, 36.794833],\n              [-81.704861, 36.794653],\n              [-81.704715, 36.794517],\n              [-81.704569, 36.794382],\n              [-81.703488, 36.793378],\n              [-81.702428, 36.792393],\n              [-81.699705, 36.789863],\n              [-81.69969, 36.789849],\n              [-81.699622, 36.789786],\n              [-81.699444, 36.789621],\n              [-81.699309, 36.789433],\n              [-81.699096, 36.789135],\n              [-81.698944, 36.788921],\n              [-81.69881, 36.788623],\n              [-81.698744, 36.788475],\n              [-81.698678, 36.788328],\n              [-81.698181, 36.787219],\n              [-81.697683, 36.786109],\n              [-81.697605, 36.785935],\n              [-81.697526, 36.78576],\n              [-81.697121, 36.784864],\n              [-81.696717, 36.783968],\n              [-81.696669, 36.783862],\n              [-81.696624, 36.783763],\n              [-81.696461, 36.7834],\n              [-81.694844, 36.779821],\n              [-81.690531, 36.772045],\n              [-81.690501, 36.771992],\n              [-81.687744, 36.767021],\n              [-81.687154, 36.765838],\n              [-81.687049, 36.765627],\n              [-81.685319, 36.762169],\n              [-81.685182, 36.761896],\n              [-81.68506, 36.761652],\n              [-81.684125, 36.759783],\n              [-81.684099, 36.759731],\n              [-81.683989, 36.759512],\n              [-81.683044, 36.757621],\n              [-81.682892, 36.757309],\n              [-81.682856, 36.757235],\n              [-81.679393, 36.750121],\n              [-81.678268, 36.74798],\n              [-81.678143, 36.747742],\n              [-81.678059, 36.747582],\n              [-81.678013, 36.747495],\n              [-81.677967, 36.747407],\n              [-81.675499, 36.742714],\n              [-81.675258, 36.742256],\n              [-81.673093, 36.738139],\n              [-81.672586, 36.737173],\n              [-81.672196, 36.736432],\n              [-81.671388, 36.734895],\n              [-81.670962, 36.734084],\n              [-81.670492, 36.73319],\n              [-81.669618, 36.731527],\n              [-81.664165, 36.721157],\n              [-81.662043, 36.717122],\n              [-81.660577, 36.714307],\n              [-81.660177, 36.713539],\n              [-81.657159, 36.707746],\n              [-81.656737, 36.706937],\n              [-81.656426, 36.70634],\n              [-81.655743, 36.705028],\n              [-81.648832, 36.691761],\n              [-81.648825, 36.691747],\n              [-81.648745, 36.691593],\n              [-81.648378, 36.690888],\n              [-81.647042, 36.688323],\n              [-81.646334, 36.686963],\n              [-81.645951, 36.686228],\n              [-81.645385, 36.685141],\n              [-81.645368, 36.685109],\n              [-81.645329, 36.685034],\n              [-81.64523, 36.684844],\n              [-81.64511, 36.684614],\n              [-81.636772, 36.668605],\n              [-81.636701, 36.668469],\n              [-81.63657, 36.668217],\n              [-81.635993, 36.66711],\n              [-81.635741, 36.666624],\n              [-81.635613, 36.666374],\n              [-81.635537, 36.666225],\n              [-81.634775, 36.664741],\n              [-81.634372, 36.663955],\n              [-81.634361, 36.663933],\n              [-81.631571, 36.658495],\n              [-81.630406, 36.656224],\n              [-81.630179, 36.655781],\n              [-81.629978, 36.65539],\n              [-81.62484, 36.645374],\n              [-81.623097, 36.641995],\n              [-81.621321, 36.638554],\n              [-81.621281, 36.638481],\n              [-81.621213, 36.638345],\n              [-81.620955, 36.637846],\n              [-81.619139, 36.634325],\n              [-81.615498, 36.635471],\n              [-81.613739, 36.636025],\n              [-81.612605, 36.636412],\n              [-81.610143, 36.637251],\n              [-81.609478, 36.637477],\n              [-81.608697, 36.637742],\n              [-81.608356, 36.63786],\n              [-81.608242, 36.637899],\n              [-81.605838, 36.638724],\n              [-81.605739, 36.638625],\n              [-81.605762, 36.63853],\n              [-81.60584, 36.638228],\n              [-81.605839, 36.638106],\n              [-81.605839, 36.637624],\n              [-81.60581, 36.637508],\n              [-81.605809, 36.637503],\n              [-81.605794, 36.637443],\n              [-81.605788, 36.63742],\n              [-81.60564, 36.636829],\n              [-81.605565, 36.636565],\n              [-81.605548, 36.636505],\n              [-81.605541, 36.63648],\n              [-81.605539, 36.636474],\n              [-81.605531, 36.636446],\n              [-81.605515, 36.636388],\n              [-81.605503, 36.636344],\n              [-81.605493, 36.636309],\n              [-81.60549, 36.6363],\n              [-81.605478, 36.636258],\n              [-81.605447, 36.636151],\n              [-81.605445, 36.636144],\n              [-81.605439, 36.636122],\n              [-81.605436, 36.636104],\n              [-81.605397, 36.635881],\n              [-81.605379, 36.635771],\n              [-81.605373, 36.635735],\n              [-81.605372, 36.635728],\n              [-81.605371, 36.635719],\n              [-81.605339, 36.635525],\n              [-81.605338, 36.635511],\n              [-81.605338, 36.635141],\n              [-81.605339, 36.634732],\n              [-81.605339, 36.634218],\n              [-81.605344, 36.634184],\n              [-81.605345, 36.634179],\n              [-81.605346, 36.63417],\n              [-81.605348, 36.634155],\n              [-81.605351, 36.634131],\n              [-81.605353, 36.634114],\n              [-81.60536, 36.63406],\n              [-81.605402, 36.633721],\n              [-81.605407, 36.63368],\n              [-81.605409, 36.633666],\n              [-81.605411, 36.63365],\n              [-81.605412, 36.633643],\n              [-81.605412, 36.633637],\n              [-81.605438, 36.633427],\n              [-81.60564, 36.632823],\n              [-81.605665, 36.63267],\n              [-81.605671, 36.632632],\n              [-81.605679, 36.632584],\n              [-81.605738, 36.632225],\n              [-81.605882, 36.63189],\n              [-81.606039, 36.631522],\n              [-81.606139, 36.631124],\n              [-81.606238, 36.630825],\n              [-81.606239, 36.630428],\n              [-81.606339, 36.630225],\n              [-81.606239, 36.629218],\n              [-81.606239, 36.628725],\n              [-81.606338, 36.628328],\n              [-81.606369, 36.628177],\n              [-81.606384, 36.628101],\n              [-81.606445, 36.627802],\n              [-81.606541, 36.627415],\n              [-81.606743, 36.627119],\n              [-81.607458, 36.626228],\n              [-81.60747, 36.626212],\n              [-81.607473, 36.626207],\n              [-81.60748, 36.626198],\n              [-81.607839, 36.625722],\n              [-81.607937, 36.625322],\n              [-81.608035, 36.625224],\n              [-81.608039, 36.625119],\n              [-81.60806, 36.625068],\n              [-81.608062, 36.625063],\n              [-81.608065, 36.625057],\n              [-81.608118, 36.624927],\n              [-81.608337, 36.624333],\n              [-81.608429, 36.624149],\n              [-81.608534, 36.623925],\n              [-81.608635, 36.623627],\n              [-81.608537, 36.623526],\n              [-81.608461, 36.623213],\n              [-81.60846, 36.623208],\n              [-81.608459, 36.623202],\n              [-81.608457, 36.623195],\n              [-81.608442, 36.623134],\n              [-81.608445, 36.622483],\n              [-81.608445, 36.622116],\n              [-81.608589, 36.621745],\n              [-81.608677, 36.621529],\n              [-81.608692, 36.621492],\n              [-81.608699, 36.621475],\n              [-81.608792, 36.621249],\n              [-81.609006, 36.620719],\n              [-81.609037, 36.62063],\n              [-81.609042, 36.620615],\n              [-81.609143, 36.620326],\n              [-81.60935, 36.62001],\n              [-81.609468, 36.619789],\n              [-81.609614, 36.619561],\n              [-81.609646, 36.619511],\n              [-81.609652, 36.619502],\n              [-81.609671, 36.619472],\n              [-81.609953, 36.619002],\n              [-81.610139, 36.618625],\n              [-81.610222, 36.618376],\n              [-81.610343, 36.618017],\n              [-81.610338, 36.61788],\n              [-81.610336, 36.617825],\n              [-81.610371, 36.617759],\n              [-81.61038, 36.617742],\n              [-81.610445, 36.617617],\n              [-81.610438, 36.617412],\n              [-81.610435, 36.617324],\n              [-81.610453, 36.617295],\n              [-81.610524, 36.617178],\n              [-81.610528, 36.617172],\n              [-81.610588, 36.617074],\n              [-81.610666, 36.61692],\n              [-81.610724, 36.616919],\n              [-81.611474, 36.616905],\n              [-81.611663, 36.61689],\n              [-81.61185, 36.616859],\n              [-81.612134, 36.616798],\n              [-81.612389, 36.616726],\n              [-81.613271, 36.616432],\n              [-81.614006, 36.6162],\n              [-81.615773, 36.615623],\n              [-81.616655, 36.615326],\n              [-81.616776, 36.615279],\n              [-81.617003, 36.615169],\n              [-81.617119, 36.615099],\n              [-81.617224, 36.615017],\n              [-81.617266, 36.614978],\n              [-81.617388, 36.614867],\n              [-81.617548, 36.614744],\n              [-81.617605, 36.614709],\n              [-81.617682, 36.614685],\n              [-81.617723, 36.614683],\n              [-81.617827, 36.614622],\n              [-81.617873, 36.614595],\n              [-81.618073, 36.614598],\n              [-81.618724, 36.614608],\n              [-81.618725, 36.614613],\n              [-81.618738, 36.614722],\n              [-81.61875, 36.61482],\n              [-81.618786, 36.614849],\n              [-81.619191, 36.615175],\n              [-81.619258, 36.615229],\n              [-81.619632, 36.615317],\n              [-81.619721, 36.615379],\n              [-81.619922, 36.615519],\n              [-81.620224, 36.615622],\n              [-81.620823, 36.615923],\n              [-81.62104, 36.616124],\n              [-81.621138, 36.616124],\n              [-81.621235, 36.615928],\n              [-81.621421, 36.615147],\n              [-81.621428, 36.61512],\n              [-81.621584, 36.614903],\n              [-81.62163, 36.614838],\n              [-81.621634, 36.614833],\n              [-81.621639, 36.614825],\n              [-81.622036, 36.614625],\n              [-81.622338, 36.614525],\n              [-81.622738, 36.614225],\n              [-81.622817, 36.614187],\n              [-81.62294, 36.614124],\n              [-81.623339, 36.613725],\n              [-81.623738, 36.613524],\n              [-81.623938, 36.613591],\n              [-81.624038, 36.613625],\n              [-81.624068, 36.613656],\n              [-81.624139, 36.613725],\n              [-81.624339, 36.613725],\n              [-81.624438, 36.613626],\n              [-81.624536, 36.613626],\n              [-81.62466, 36.613523],\n              [-81.624672, 36.613513],\n              [-81.624681, 36.613506],\n              [-81.624841, 36.613373],\n              [-81.625033, 36.613402],\n              [-81.625074, 36.613408],\n              [-81.625087, 36.61341],\n              [-81.625098, 36.613412],\n              [-81.625118, 36.613415],\n              [-81.625145, 36.613419],\n              [-81.625257, 36.613436],\n              [-81.626011, 36.613489],\n              [-81.626404, 36.61351],\n              [-81.626569, 36.613516],\n              [-81.62677, 36.613524],\n              [-81.626777, 36.613524],\n              [-81.62681, 36.613526],\n              [-81.62689, 36.613529],\n              [-81.626897, 36.613529],\n              [-81.62768, 36.61356],\n              [-81.627948, 36.61352],\n              [-81.628051, 36.613405],\n              [-81.628006, 36.613309],\n              [-81.628003, 36.613303],\n              [-81.627935, 36.613158],\n              [-81.627758, 36.612869],\n              [-81.627621, 36.61234],\n              [-81.627614, 36.612313],\n              [-81.62756, 36.612106],\n              [-81.62756, 36.612088],\n              [-81.627559, 36.612067],\n              [-81.627554, 36.611834],\n              [-81.627785, 36.611836],\n              [-81.631384, 36.611863],\n              [-81.636984, 36.611905],\n              [-81.637661, 36.611913],\n              [-81.639376, 36.61193],\n              [-81.641543, 36.611939],\n              [-81.643511, 36.611963],\n              [-81.644147, 36.612005],\n              [-81.645076, 36.611978],\n              [-81.645836, 36.611956],\n              [-81.646903, 36.611925],\n              [-81.64813, 36.610975],\n              [-81.648584, 36.610623],\n              [-81.649945, 36.609569],\n              [-81.6504, 36.609218],\n              [-81.651512, 36.60835],\n              [-81.654849, 36.605747],\n              [-81.655962, 36.60488],\n              [-81.656943, 36.604114],\n              [-81.659887, 36.601818],\n              [-81.660869, 36.601053],\n              [-81.662373, 36.599879],\n              [-81.666887, 36.596359],\n              [-81.668392, 36.595186],\n              [-81.669202, 36.594553],\n              [-81.671634, 36.592657],\n              [-81.672445, 36.592025],\n              [-81.673435, 36.591252],\n              [-81.676405, 36.588935],\n              [-81.677396, 36.588163],\n              [-81.669264, 36.588031],\n              [-81.667632, 36.588003],\n              [-81.667577, 36.588002],\n              [-81.667523, 36.588001],\n              [-81.667472, 36.588],\n              [-81.667455, 36.587999],\n              [-81.667434, 36.587999],\n              [-81.666018, 36.587965],\n              [-81.665743, 36.587959],\n              [-81.662822, 36.587914],\n              [-81.661926, 36.587895],\n              [-81.656493, 36.587783],\n              [-81.650933, 36.5877],\n              [-81.650874, 36.587794],\n              [-81.650492, 36.587795],\n              [-81.64977, 36.587781],\n              [-81.645539, 36.587482],\n              [-81.636485, 36.587482],\n              [-81.636474, 36.587481],\n              [-81.635405, 36.587481],\n              [-81.627591, 36.587478],\n              [-81.627513, 36.587479],\n              [-81.627419, 36.587481],\n              [-81.625024, 36.587456],\n              [-81.62252, 36.58743],\n              [-81.62136, 36.587447],\n              [-81.618176, 36.587194],\n              [-81.617889, 36.587171],\n              [-81.61787, 36.587169],\n              [-81.617846, 36.587166],\n              [-81.617834, 36.587165],\n              [-81.61755, 36.587144],\n              [-81.617538, 36.587143],\n              [-81.617443, 36.587136],\n              [-81.617336, 36.587134],\n              [-81.614821, 36.587098],\n              [-81.609474, 36.587019],\n              [-81.608749, 36.587006],\n              [-81.608321, 36.586999],\n              [-81.608185, 36.586997],\n              [-81.608071, 36.586995],\n              [-81.607904, 36.586993],\n              [-81.607889, 36.586993],\n              [-81.607769, 36.586991],\n              [-81.606981, 36.586977],\n              [-81.606573, 36.586968],\n              [-81.606309, 36.586966],\n              [-81.600104, 36.586858],\n              [-81.596892, 36.586548],\n              [-81.596728, 36.586532],\n              [-81.596694, 36.586529],\n              [-81.596589, 36.586519],\n              [-81.595979, 36.58646],\n              [-81.592408, 36.586114],\n              [-81.588395, 36.585725],\n              [-81.588385, 36.585724],\n              [-81.588367, 36.585722],\n              [-81.586426, 36.585621],\n              [-81.586388, 36.585619],\n              [-81.583342, 36.585458],\n              [-81.583014, 36.585441],\n              [-81.581149, 36.585342],\n              [-81.577629, 36.585068],\n              [-81.576275, 36.584963],\n              [-81.576259, 36.584962],\n              [-81.569233, 36.584395],\n              [-81.565395, 36.584085],\n              [-81.564502, 36.584013],\n              [-81.564382, 36.584003],\n              [-81.564372, 36.584002],\n              [-81.564365, 36.584001],\n              [-81.564348, 36.584],\n              [-81.564191, 36.583987],\n              [-81.564076, 36.583978],\n              [-81.56369, 36.583947],\n              [-81.563354, 36.58392],\n              [-81.563301, 36.583916],\n              [-81.559669, 36.583621],\n              [-81.559086, 36.583582],\n              [-81.558939, 36.583572],\n              [-81.556274, 36.583396],\n              [-81.554252, 36.583172],\n              [-81.553362, 36.583113],\n              [-81.551194, 36.582969],\n              [-81.549178, 36.582835],\n              [-81.548764, 36.582808],\n              [-81.5431, 36.582316],\n              [-81.543069, 36.582313],\n              [-81.541191, 36.58215],\n              [-81.541047, 36.582137],\n              [-81.54003, 36.582029],\n              [-81.537987, 36.581813],\n              [-81.537965, 36.581811],\n              [-81.537944, 36.581809],\n              [-81.537754, 36.581789],\n              [-81.537522, 36.581765],\n              [-81.536174, 36.581623],\n              [-81.535471, 36.581549],\n              [-81.535215, 36.581522],\n              [-81.534768, 36.581475],\n              [-81.534497, 36.581437],\n              [-81.534479, 36.581434],\n              [-81.534442, 36.581429],\n              [-81.532899, 36.581277],\n              [-81.532663, 36.581252],\n              [-81.524028, 36.580705],\n              [-81.522868, 36.580631],\n              [-81.522771, 36.580625],\n              [-81.522718, 36.580622],\n              [-81.522674, 36.580619],\n              [-81.521885, 36.580569],\n              [-81.520875, 36.580505],\n              [-81.520855, 36.580504],\n              [-81.520122, 36.580456],\n              [-81.520102, 36.580456],\n              [-81.518615, 36.580482],\n              [-81.518596, 36.580482],\n              [-81.518556, 36.580483],\n              [-81.518489, 36.580484],\n              [-81.518412, 36.580485],\n              [-81.518194, 36.580489],\n              [-81.518158, 36.58049],\n              [-81.518119, 36.580491],\n              [-81.518045, 36.580492],\n              [-81.517943, 36.580494],\n              [-81.517841, 36.580495],\n              [-81.517803, 36.580495],\n              [-81.51776, 36.580496],\n              [-81.517599, 36.580498],\n              [-81.507614, 36.580161],\n              [-81.507505, 36.580157],\n              [-81.507416, 36.580154],\n              [-81.507351, 36.580151],\n              [-81.507322, 36.58015],\n              [-81.507299, 36.580149],\n              [-81.506958, 36.580138],\n              [-81.506892, 36.580136],\n              [-81.506872, 36.580136],\n              [-81.506845, 36.580135],\n              [-81.506814, 36.580134],\n              [-81.506778, 36.580132],\n              [-81.506679, 36.580128],\n              [-81.503021, 36.579986],\n              [-81.500147, 36.579937],\n              [-81.497554, 36.579957],\n              [-81.497527, 36.579957],\n              [-81.497415, 36.579964],\n              [-81.497408, 36.579965],\n              [-81.497366, 36.579965],\n              [-81.496219, 36.579976],\n              [-81.496074, 36.579977],\n              [-81.494538, 36.579716],\n              [-81.492673, 36.5794],\n              [-81.491739, 36.579284],\n              [-81.490117, 36.579117],\n              [-81.489913, 36.579096],\n              [-81.489902, 36.579095],\n              [-81.489644, 36.579069],\n              [-81.489523, 36.579077],\n              [-81.489488, 36.579079],\n              [-81.489203, 36.579097],\n              [-81.487856, 36.579183],\n              [-81.486225, 36.579289],\n              [-81.486004, 36.579303],\n              [-81.476714, 36.58025],\n              [-81.476675, 36.580246],\n              [-81.476497, 36.58023],\n              [-81.476449, 36.580224],\n              [-81.47644, 36.580223],\n              [-81.476391, 36.580216],\n              [-81.476365, 36.580213],\n              [-81.476289, 36.580203],\n              [-81.475078, 36.580103],\n              [-81.470454, 36.579692],\n              [-81.47035, 36.579683],\n              [-81.466579, 36.579348],\n              [-81.466163, 36.579311],\n              [-81.466113, 36.579307],\n              [-81.466101, 36.579306],\n              [-81.46609, 36.579305],\n              [-81.46558, 36.57926],\n              [-81.463247, 36.579053],\n              [-81.462939, 36.579019],\n              [-81.462927, 36.579018],\n              [-81.462844, 36.579009],\n              [-81.462814, 36.579006],\n              [-81.462785, 36.579003],\n              [-81.462658, 36.578989],\n              [-81.462565, 36.578979],\n              [-81.462524, 36.578975],\n              [-81.462514, 36.578974],\n              [-81.462455, 36.578968],\n              [-81.462317, 36.578953],\n              [-81.46231, 36.578952],\n              [-81.460333, 36.578741],\n              [-81.458357, 36.578531],\n              [-81.458332, 36.578528],\n              [-81.458226, 36.578517],\n              [-81.458039, 36.578497],\n              [-81.457637, 36.578454],\n              [-81.457557, 36.578446],\n              [-81.455979, 36.578277],\n              [-81.455811, 36.578259],\n              [-81.455772, 36.578255],\n              [-81.455758, 36.578253],\n              [-81.455674, 36.578244],\n              [-81.453709, 36.578034],\n              [-81.451898, 36.577842],\n              [-81.446049, 36.577171],\n              [-81.445995, 36.577165],\n              [-81.44589, 36.577153],\n              [-81.445833, 36.577147],\n              [-81.445775, 36.57714],\n              [-81.445731, 36.577135],\n              [-81.444823, 36.577031],\n              [-81.444584, 36.577004],\n              [-81.444224, 36.576962],\n              [-81.443982, 36.576925],\n              [-81.443931, 36.576918],\n              [-81.443874, 36.576909],\n              [-81.443785, 36.576895],\n              [-81.443581, 36.576831],\n              [-81.443051, 36.576793],\n              [-81.442855, 36.576787],\n              [-81.440492, 36.576713],\n              [-81.437469, 36.576618],\n              [-81.435197, 36.576543],\n              [-81.434896, 36.576534],\n              [-81.43435, 36.576518],\n              [-81.43108, 36.576421],\n              [-81.427766, 36.576328],\n              [-81.42753, 36.576321],\n              [-81.427517, 36.576321],\n              [-81.427443, 36.576319],\n              [-81.427311, 36.576315],\n              [-81.424193, 36.576228],\n              [-81.418522, 36.576041],\n              [-81.417783, 36.576057],\n              [-81.4164, 36.575994],\n              [-81.414246, 36.575897],\n              [-81.414237, 36.575897],\n              [-81.412043, 36.575834],\n              [-81.410173, 36.575781],\n              [-81.410096, 36.575779],\n              [-81.410006, 36.575776],\n              [-81.409981, 36.575773],\n              [-81.409935, 36.575768],\n              [-81.409923, 36.57577],\n              [-81.409904, 36.575773],\n              [-81.407471, 36.575704],\n              [-81.402892, 36.575574],\n              [-81.402825, 36.575572],\n              [-81.401964, 36.575547],\n              [-81.40194, 36.575655],\n              [-81.401178, 36.575613],\n              [-81.400072, 36.575573],\n              [-81.399007, 36.575527],\n              [-81.398395, 36.575491],\n              [-81.398284, 36.575495],\n              [-81.39815, 36.575483],\n              [-81.398125, 36.575481],\n              [-81.398017, 36.575472],\n              [-81.39764, 36.575461],\n              [-81.397608, 36.57546],\n              [-81.39757, 36.575421],\n              [-81.397551, 36.575353],\n              [-81.397429, 36.575351],\n              [-81.397214, 36.575348],\n              [-81.396418, 36.57534],\n              [-81.396297, 36.575334],\n              [-81.395501, 36.575297],\n              [-81.395085, 36.575284],\n              [-81.394885, 36.575274],\n              [-81.39481, 36.575275],\n              [-81.39477, 36.575276],\n              [-81.394727, 36.575276],\n              [-81.393714, 36.575227],\n              [-81.393568, 36.57522],\n              [-81.393463, 36.575267],\n              [-81.393345, 36.57529],\n              [-81.393177, 36.575264],\n              [-81.393079, 36.575188],\n              [-81.390899, 36.575086],\n              [-81.389309, 36.57502],\n              [-81.388912, 36.575018],\n              [-81.3889, 36.575017],\n              [-81.388892, 36.575017],\n              [-81.388713, 36.575009],\n              [-81.388549, 36.575002],\n              [-81.386703, 36.574941],\n              [-81.384916, 36.574927],\n              [-81.383689, 36.574917],\n              [-81.382528, 36.574894],\n              [-81.379455, 36.574834],\n              [-81.376383, 36.574774],\n              [-81.374776, 36.574743],\n              [-81.374785, 36.574237],\n              [-81.374774, 36.573867],\n              [-81.374652, 36.57333],\n              [-81.374457, 36.573302],\n              [-81.374328, 36.573269],\n              [-81.374083, 36.573185],\n              [-81.37396, 36.573138],\n              [-81.373829, 36.573141],\n              [-81.373714, 36.573157],\n              [-81.373648, 36.573193],\n              [-81.372323, 36.57411],\n              [-81.368701, 36.574151],\n              [-81.368737, 36.57424],\n              [-81.36886, 36.57455],\n              [-81.366752, 36.574084],\n              [-81.366585, 36.574579],\n              [-81.366074, 36.574605],\n              [-81.364213, 36.574678],\n              [-81.364036, 36.576016],\n              [-81.36165, 36.57539],\n              [-81.361414, 36.575331],\n              [-81.361331, 36.575306],\n              [-81.361306, 36.575298],\n              [-81.361198, 36.575265],\n              [-81.358915, 36.574671],\n              [-81.358886, 36.574623],\n              [-81.357714, 36.574637],\n              [-81.354038, 36.57468],\n              [-81.353911, 36.574682],\n              [-81.353709, 36.574684],\n              [-81.35361, 36.574685],\n              [-81.353547, 36.574685],\n              [-81.353172, 36.574688],\n              [-81.348376, 36.574762],\n              [-81.348252, 36.574761],\n              [-81.345155, 36.574812],\n              [-81.342619, 36.574834],\n              [-81.340827, 36.574859],\n              [-81.338239, 36.574814],\n              [-81.337312, 36.574811],\n              [-81.335395, 36.574865],\n              [-81.33488, 36.574879],\n              [-81.334754, 36.574882],\n              [-81.334732, 36.574883],\n              [-81.33469, 36.574885],\n              [-81.334677, 36.574886],\n              [-81.334644, 36.574887],\n              [-81.334614, 36.574888],\n              [-81.333742, 36.574928],\n              [-81.333437, 36.574939],\n              [-81.333061, 36.574952],\n              [-81.330279, 36.575067],\n              [-81.327377, 36.575194],\n              [-81.324854, 36.57535],\n              [-81.324428, 36.575369],\n              [-81.324347, 36.575372],\n              [-81.324328, 36.575373],\n              [-81.32359, 36.575366],\n              [-81.323307, 36.57536],\n              [-81.322486, 36.575343],\n              [-81.321192, 36.575325],\n              [-81.3184, 36.575277],\n              [-81.317065, 36.575258],\n              [-81.316837, 36.575255],\n              [-81.315339, 36.575157],\n              [-81.313906, 36.575133],\n              [-81.312175, 36.575123],\n              [-81.309472, 36.575074],\n              [-81.307944, 36.575055],\n              [-81.307495, 36.57505],\n              [-81.30561, 36.575039],\n              [-81.301822, 36.575017],\n              [-81.299741, 36.574986],\n              [-81.297324, 36.574983],\n              [-81.295665, 36.574971],\n              [-81.294724, 36.574964],\n              [-81.293656, 36.574947],\n              [-81.292413, 36.574941],\n              [-81.291898, 36.574935],\n              [-81.291173, 36.574987],\n              [-81.290702, 36.575013],\n              [-81.289313, 36.575045],\n              [-81.28728, 36.57508],\n              [-81.286847, 36.575097],\n              [-81.285697, 36.574916],\n              [-81.284737, 36.574752],\n              [-81.283589, 36.574682],\n              [-81.282693, 36.574614],\n              [-81.281483, 36.574592],\n              [-81.278579, 36.574719],\n              [-81.277837, 36.574826],\n              [-81.277745, 36.574839],\n              [-81.275667, 36.574218],\n              [-81.273195, 36.57409],\n              [-81.272055, 36.574016],\n              [-81.271619, 36.574014],\n              [-81.270583, 36.574008],\n              [-81.270432, 36.574011],\n              [-81.266084, 36.574004],\n              [-81.262598, 36.573817],\n              [-81.262302, 36.573794],\n              [-81.260055, 36.573675],\n              [-81.255354, 36.573418],\n              [-81.252929, 36.573276],\n              [-81.252735, 36.573276],\n              [-81.250246, 36.573275],\n              [-81.249874, 36.573257],\n              [-81.249232, 36.573226],\n              [-81.249015, 36.573216],\n              [-81.243998, 36.573027],\n              [-81.242215, 36.572969],\n              [-81.241892, 36.572957],\n              [-81.235404, 36.572733],\n              [-81.226787, 36.572484],\n              [-81.225948, 36.57246],\n              [-81.216966, 36.5722],\n              [-81.215932, 36.57217],\n              [-81.213076, 36.572084],\n              [-81.212089, 36.572064],\n              [-81.210184, 36.572025],\n              [-81.207231, 36.571987],\n              [-81.206574, 36.571979],\n              [-81.206511, 36.57199],\n              [-81.206458, 36.571978],\n              [-81.205567, 36.571968],\n              [-81.204786, 36.571953],\n              [-81.20432, 36.571945],\n              [-81.203936, 36.571936],\n              [-81.203764, 36.571933],\n              [-81.203591, 36.571929],\n              [-81.202387, 36.571907],\n              [-81.202075, 36.5719],\n              [-81.201431, 36.571888],\n              [-81.201287, 36.571885],\n              [-81.200983, 36.57188],\n              [-81.197901, 36.571829],\n              [-81.196926, 36.571813],\n              [-81.193625, 36.571746],\n              [-81.192833, 36.571725],\n              [-81.190978, 36.571676],\n              [-81.189889, 36.571647],\n              [-81.186898, 36.571558],\n              [-81.185057, 36.571491],\n              [-81.184304, 36.571464],\n              [-81.180363, 36.571314],\n              [-81.180166, 36.571306],\n              [-81.178996, 36.571285],\n              [-81.176766, 36.571217],\n              [-81.171224, 36.571049],\n              [-81.170962, 36.571041],\n              [-81.169624, 36.571004],\n              [-81.169063, 36.570988],\n              [-81.168471, 36.570975],\n              [-81.164403, 36.570604],\n              [-81.16408, 36.570573],\n              [-81.16394, 36.570559],\n              [-81.1638, 36.570544],\n              [-81.163449, 36.570515],\n              [-81.163432, 36.570514],\n              [-81.163243, 36.570498],\n              [-81.163009, 36.570477],\n              [-81.162774, 36.570455],\n              [-81.162039, 36.570388],\n              [-81.160242, 36.570327],\n              [-81.15752, 36.570215],\n              [-81.156959, 36.570189],\n              [-81.15365, 36.570058],\n              [-81.153589, 36.570052],\n              [-81.153566, 36.570052],\n              [-81.153528, 36.570053],\n              [-81.153487, 36.570051],\n              [-81.153442, 36.570049],\n              [-81.153427, 36.570049],\n              [-81.153178, 36.570039],\n              [-81.153166, 36.570039],\n              [-81.153158, 36.570038],\n              [-81.15314, 36.570038],\n              [-81.152654, 36.570018],\n              [-81.152418, 36.570008],\n              [-81.151341, 36.569964],\n              [-81.150795, 36.569943],\n              [-81.150489, 36.569931],\n              [-81.150182, 36.56992],\n              [-81.149949, 36.569911],\n              [-81.146588, 36.569785],\n              [-81.146455, 36.56978],\n              [-81.146385, 36.569777],\n              [-81.14631, 36.569772],\n              [-81.145362, 36.569739],\n              [-81.144895, 36.569735],\n              [-81.140857, 36.569602],\n              [-81.139705, 36.569565],\n              [-81.139637, 36.569562],\n              [-81.139364, 36.56955],\n              [-81.139015, 36.569541],\n              [-81.138316, 36.569519],\n              [-81.137616, 36.569497],\n              [-81.13655, 36.569461],\n              [-81.135616, 36.569429],\n              [-81.13525, 36.569418],\n              [-81.127854, 36.569187],\n              [-81.122646, 36.569002],\n              [-81.122215, 36.568987],\n              [-81.119808, 36.568917],\n              [-81.119451, 36.568887],\n              [-81.114898, 36.568658],\n              [-81.11244, 36.568538],\n              [-81.111639, 36.568491],\n              [-81.111004, 36.568454],\n              [-81.110807, 36.568437],\n              [-81.107781, 36.568229],\n              [-81.107234, 36.568191],\n              [-81.105109, 36.56803],\n              [-81.104813, 36.568008],\n              [-81.103679, 36.567922],\n              [-81.103413, 36.567902],\n              [-81.102932, 36.567869],\n              [-81.102377, 36.567832],\n              [-81.100055, 36.567676],\n              [-81.098721, 36.567581],\n              [-81.097562, 36.567496],\n              [-81.097046, 36.567461],\n              [-81.095175, 36.567454],\n              [-81.09225, 36.567402],\n              [-81.088991, 36.567355],\n              [-81.085493, 36.567312],\n              [-81.083209, 36.567276],\n              [-81.080992, 36.567242],\n              [-81.079408, 36.567223],\n              [-81.078717, 36.567215],\n              [-81.078268, 36.56721],\n              [-81.077797, 36.567195],\n              [-81.076144, 36.567157],\n              [-81.074862, 36.567129],\n              [-81.07358, 36.567102],\n              [-81.069688, 36.567018],\n              [-81.069177, 36.567007],\n              [-81.062212, 36.566839],\n              [-81.062182, 36.566839],\n              [-81.05856, 36.566882],\n              [-81.050908, 36.566972],\n              [-81.048783, 36.566863],\n              [-81.047926, 36.566828],\n              [-81.046855, 36.566778],\n              [-81.046166, 36.566743],\n              [-81.044833, 36.566673],\n              [-81.04444, 36.566643],\n              [-81.043852, 36.566605],\n              [-81.042646, 36.566527],\n              [-81.039848, 36.566504],\n              [-81.037614, 36.566373],\n              [-81.037229, 36.56635],\n              [-81.035939, 36.566273],\n              [-81.035839, 36.566267],\n              [-81.028977, 36.565858],\n              [-81.028904, 36.565854],\n              [-81.028831, 36.565849],\n              [-81.028754, 36.565845],\n              [-81.028677, 36.56584],\n              [-81.027952, 36.565796],\n              [-81.02789, 36.565793],\n              [-81.027117, 36.565749],\n              [-81.025961, 36.565677],\n              [-81.024344, 36.565576],\n              [-81.022916, 36.565486],\n              [-81.021047, 36.565381],\n              [-81.020999, 36.565384],\n              [-81.020176, 36.565293],\n              [-81.019974, 36.565265],\n              [-81.019641, 36.565227],\n              [-81.019479, 36.565209],\n              [-81.019316, 36.56519],\n              [-81.019151, 36.565171],\n              [-81.018986, 36.565153],\n              [-81.017046, 36.564933],\n              [-81.01672, 36.564894],\n              [-81.016297, 36.564848],\n              [-81.01626, 36.564844],\n              [-81.013904, 36.564577],\n              [-81.01389, 36.564575],\n              [-81.013796, 36.564564],\n              [-81.012395, 36.564405],\n              [-81.012301, 36.564394],\n              [-81.012208, 36.564384],\n              [-81.012164, 36.564379],\n              [-81.011983, 36.564357],\n              [-81.01173, 36.564329],\n              [-81.011297, 36.56428],\n              [-81.00956, 36.564083],\n              [-81.00853, 36.563966],\n              [-81.007685, 36.563954],\n              [-81.007338, 36.563949],\n              [-81.006917, 36.563944],\n              [-81.003936, 36.563904],\n              [-81.003794, 36.563902],\n              [-80.998761, 36.563814],\n              [-80.9957, 36.563741],\n              [-80.994093, 36.563721],\n              [-80.99261, 36.563708],\n              [-80.990956, 36.56368],\n              [-80.988838, 36.563644],\n              [-80.985668, 36.563602],\n              [-80.985355, 36.563594],\n              [-80.984729, 36.563563],\n              [-80.984703, 36.563562],\n              [-80.984527, 36.563554],\n              [-80.983749, 36.56352],\n              [-80.97854, 36.563305],\n              [-80.978239, 36.563293],\n              [-80.976348, 36.563203],\n              [-80.975425, 36.563169],\n              [-80.973415, 36.563101],\n              [-80.97179, 36.563044],\n              [-80.967266, 36.56291],\n              [-80.96459, 36.563214],\n              [-80.961944, 36.563515],\n              [-80.961512, 36.56358],\n              [-80.957176, 36.563492],\n              [-80.95338, 36.563425],\n              [-80.953213, 36.56343],\n              [-80.952971, 36.563418],\n              [-80.952494, 36.563393],\n              [-80.952017, 36.56337],\n              [-80.950084, 36.563279],\n              [-80.949865, 36.563269],\n              [-80.949279, 36.563248],\n              [-80.948615, 36.563231],\n              [-80.947504, 36.563191],\n              [-80.946505, 36.563239],\n              [-80.946489, 36.56324],\n              [-80.946351, 36.56319],\n              [-80.94629, 36.563172],\n              [-80.946173, 36.563142],\n              [-80.946001, 36.563117],\n              [-80.945796, 36.563102],\n              [-80.944716, 36.563056],\n              [-80.944473, 36.563039],\n              [-80.944235, 36.563026],\n              [-80.942037, 36.562999],\n              [-80.940406, 36.563007],\n              [-80.938972, 36.562984],\n              [-80.935793, 36.562951],\n              [-80.933016, 36.562938],\n              [-80.931771, 36.562479],\n              [-80.925468, 36.562343],\n              [-80.915162, 36.562163],\n              [-80.913156, 36.562126],\n              [-80.912603, 36.562119],\n              [-80.908511, 36.56205],\n              [-80.906306, 36.562006],\n              [-80.904095, 36.561939],\n              [-80.903391, 36.561918],\n              [-80.901735, 36.561842],\n              [-80.901706, 36.561863],\n              [-80.899383, 36.56175],\n              [-80.898644, 36.561689],\n              [-80.898456, 36.561681],\n              [-80.892936, 36.561435],\n              [-80.892198, 36.561403],\n              [-80.889123, 36.561267],\n              [-80.882199, 36.560961],\n              [-80.877639, 36.560778],\n              [-80.8748, 36.560662],\n              [-80.873326, 36.560599],\n              [-80.869842, 36.560447],\n              [-80.861115, 36.560088],\n              [-80.852683, 36.559732],\n              [-80.842964, 36.559317],\n              [-80.840337, 36.559206],\n              [-80.837957, 36.55915],\n              [-80.837774, 36.559145],\n              [-80.837743, 36.559119],\n              [-80.837664, 36.55909],\n              [-80.837577, 36.559084],\n              [-80.83749, 36.559103],\n              [-80.83737, 36.559151],\n              [-80.834887, 36.559264],\n              [-80.834242, 36.559249],\n              [-80.833123, 36.559309],\n              [-80.830285, 36.55946],\n              [-80.827241, 36.559576],\n              [-80.823934, 36.559715],\n              [-80.823916, 36.559716],\n              [-80.823894, 36.559716],\n              [-80.823276, 36.559732],\n              [-80.823246, 36.559734],\n              [-80.823022, 36.559748],\n              [-80.820517, 36.559915],\n              [-80.815778, 36.560173],\n              [-80.813516, 36.560297],\n              [-80.803911, 36.560823],\n              [-80.801635, 36.560963],\n              [-80.800453, 36.561037],\n              [-80.799787, 36.56108],\n              [-80.799641, 36.56107],\n              [-80.799588, 36.561067],\n              [-80.799522, 36.561062],\n              [-80.799355, 36.561051],\n              [-80.798525, 36.560978],\n              [-80.797483, 36.560878],\n              [-80.796674, 36.560815],\n              [-80.794165, 36.560637],\n              [-80.792744, 36.560554],\n              [-80.792044, 36.560513],\n              [-80.790493, 36.560502],\n              [-80.790191, 36.560499],\n              [-80.789975, 36.560498],\n              [-80.789888, 36.560497],\n              [-80.788295, 36.560484],\n              [-80.786081, 36.560466],\n              [-80.779378, 36.560423],\n              [-80.777451, 36.560381],\n              [-80.774162, 36.560312],\n              [-80.773583, 36.560317],\n              [-80.773095, 36.560337],\n              [-80.772798, 36.560348],\n              [-80.772211, 36.560368],\n              [-80.771496, 36.560391],\n              [-80.771263, 36.560402],\n              [-80.7677, 36.560567],\n              [-80.766807, 36.560607],\n              [-80.761063, 36.560871],\n              [-80.760717, 36.560887],\n              [-80.758837, 36.560973],\n              [-80.756874, 36.561067],\n              [-80.756661, 36.561076],\n              [-80.755972, 36.561104],\n              [-80.754314, 36.561178],\n              [-80.750924, 36.561334],\n              [-80.750846, 36.561338],\n              [-80.750498, 36.561356],\n              [-80.750246, 36.561366],\n              [-80.749803, 36.561387],\n              [-80.749439, 36.561496],\n              [-80.748571, 36.561534],\n              [-80.748557, 36.561534],\n              [-80.747157, 36.561557],\n              [-80.746801, 36.561568],\n              [-80.745425, 36.561632],\n              [-80.745055, 36.56165],\n              [-80.744736, 36.561664],\n              [-80.744192, 36.56169],\n              [-80.74379, 36.561708],\n              [-80.741331, 36.56183],\n              [-80.741016, 36.561843],\n              [-80.730388, 36.562355],\n              [-80.73006, 36.562357],\n              [-80.724386, 36.562326],\n              [-80.717286, 36.562292],\n              [-80.717022, 36.562292],\n              [-80.71417, 36.562287],\n              [-80.712112, 36.56227],\n              [-80.711508, 36.562275],\n              [-80.70504, 36.562327],\n              [-80.704756, 36.562322],\n              [-80.704608, 36.562325],\n              [-80.700274, 36.56217],\n              [-80.696229, 36.561983],\n              [-80.696017, 36.561975],\n              [-80.692602, 36.561856],\n              [-80.689674, 36.561609],\n              [-80.688202, 36.561475],\n              [-80.687573, 36.561419],\n              [-80.68648, 36.561342],\n              [-80.685493, 36.561273],\n              [-80.683316, 36.561124],\n              [-80.682535, 36.561068],\n              [-80.679248, 36.560844],\n              [-80.67734, 36.560706],\n              [-80.676663, 36.560664],\n              [-80.671858, 36.560369],\n              [-80.667472, 36.560102],\n              [-80.66371, 36.559868],\n              [-80.662936, 36.55982],\n              [-80.660216, 36.559651],\n              [-80.659324, 36.559596],\n              [-80.658474, 36.559543],\n              [-80.653382, 36.559235],\n              [-80.64728, 36.559041],\n              [-80.64711, 36.55903],\n              [-80.641339, 36.558845],\n              [-80.638502, 36.558712],\n              [-80.637653, 36.558694],\n              [-80.637567, 36.558692],\n              [-80.63603, 36.558656],\n              [-80.632936, 36.558585],\n              [-80.628872, 36.558499],\n              [-80.62479, 36.558412],\n              [-80.623922, 36.558372],\n              [-80.61491, 36.557957],\n              [-80.614769, 36.557951],\n              [-80.612031, 36.55784],\n              [-80.610454, 36.557767],\n              [-80.607565, 36.557643],\n              [-80.600549, 36.557338],\n              [-80.600477, 36.557335],\n              [-80.59789, 36.557232],\n              [-80.597818, 36.557229],\n              [-80.597222, 36.557206],\n              [-80.592513, 36.557018],\n              [-80.591366, 36.556973],\n              [-80.587478, 36.556818],\n              [-80.582801, 36.556631],\n              [-80.581388, 36.556574],\n              [-80.581338, 36.556572],\n              [-80.577198, 36.556407],\n              [-80.570992, 36.556159],\n              [-80.5685, 36.556059],\n              [-80.563831, 36.555873],\n              [-80.560668, 36.555746],\n              [-80.558915, 36.555677],\n              [-80.548592, 36.555286],\n              [-80.548552, 36.555284],\n              [-80.548456, 36.55528],\n              [-80.544755, 36.555131],\n              [-80.540771, 36.55497],\n              [-80.539404, 36.554913],\n              [-80.534663, 36.554724],\n              [-80.532438, 36.554634],\n              [-80.52792, 36.554452],\n              [-80.526379, 36.554389],\n              [-80.522269, 36.554224],\n              [-80.520035, 36.554134],\n              [-80.518292, 36.554064],\n              [-80.51181, 36.553805],\n              [-80.511618, 36.553797],\n              [-80.51094, 36.553769],\n              [-80.510434, 36.553749],\n              [-80.510066, 36.553734],\n              [-80.509087, 36.553693],\n              [-80.507066, 36.553613],\n              [-80.507038, 36.553612],\n              [-80.505565, 36.553554],\n              [-80.505541, 36.553553],\n              [-80.505138, 36.553537],\n              [-80.499787, 36.553323],\n              [-80.487761, 36.552956],\n              [-80.483998, 36.552773],\n              [-80.480473, 36.552601],\n              [-80.480176, 36.55258],\n              [-80.478525, 36.552502],\n              [-80.470506, 36.55211],\n              [-80.470173, 36.552094],\n              [-80.466716, 36.551926],\n              [-80.460945, 36.551648],\n              [-80.451719, 36.551198],\n              [-80.451389, 36.551183],\n              [-80.451332, 36.551181],\n              [-80.451276, 36.551178],\n              [-80.448704, 36.551053],\n              [-80.448456, 36.551041],\n              [-80.443294, 36.550791],\n              [-80.440103, 36.550637],\n              [-80.434705, 36.550373],\n              [-80.433506, 36.550331],\n              [-80.433497, 36.550329],\n              [-80.433155, 36.550262],\n              [-80.432948, 36.550229],\n              [-80.432715, 36.550199],\n              [-80.432601, 36.550184],\n              [-80.432218, 36.550148],\n              [-80.432065, 36.550139],\n              [-80.431957, 36.550133],\n              [-80.431696, 36.550132],\n              [-80.431599, 36.550137],\n              [-80.431435, 36.550145],\n              [-80.431305, 36.550179],\n              [-80.431218, 36.550209],\n              [-80.430397, 36.550177],\n              [-80.430333, 36.550175],\n              [-80.427762, 36.550053],\n              [-80.427611, 36.550046],\n              [-80.427448, 36.55005],\n              [-80.426486, 36.549995],\n              [-80.424113, 36.549885],\n              [-80.424013, 36.54988],\n              [-80.423914, 36.549876],\n              [-80.421755, 36.549793],\n              [-80.421677, 36.549773],\n              [-80.421593, 36.549769],\n              [-80.409743, 36.549208],\n              [-80.408736, 36.54916],\n              [-80.407814, 36.549117],\n              [-80.407768, 36.549115],\n              [-80.399204, 36.548679],\n              [-80.39632, 36.548532],\n              [-80.396284, 36.54853],\n              [-80.39443, 36.54844],\n              [-80.391074, 36.548284],\n              [-80.387296, 36.548106],\n              [-80.385669, 36.548028],\n              [-80.383646, 36.547932],\n              [-80.383234, 36.547912],\n              [-80.382617, 36.547884],\n              [-80.380444, 36.547782],\n              [-80.379966, 36.547782],\n              [-80.378032, 36.547739],\n              [-80.374889, 36.547752],\n              [-80.370189, 36.547484],\n              [-80.370174, 36.547483],\n              [-80.369187, 36.547435],\n              [-80.369179, 36.547435],\n              [-80.369171, 36.547434],\n              [-80.369156, 36.547433],\n              [-80.369149, 36.547433],\n              [-80.369131, 36.547432],\n              [-80.369109, 36.547431],\n              [-80.367818, 36.547368],\n              [-80.363976, 36.547181],\n              [-80.363967, 36.547181],\n              [-80.360301, 36.547013],\n              [-80.356634, 36.546845],\n              [-80.354117, 36.54673],\n              [-80.351519, 36.546611],\n              [-80.346075, 36.546368],\n              [-80.344256, 36.546272],\n              [-80.337051, 36.545923],\n              [-80.336988, 36.54592],\n              [-80.333965, 36.545781],\n              [-80.333863, 36.545776],\n              [-80.333624, 36.545765],\n              [-80.333151, 36.545743],\n              [-80.332998, 36.545736],\n              [-80.33299, 36.545736],\n              [-80.332975, 36.545735],\n              [-80.332822, 36.545728],\n              [-80.332025, 36.545691],\n              [-80.328989, 36.54555],\n              [-80.328843, 36.545543],\n              [-80.328836, 36.545542],\n              [-80.328829, 36.545542],\n              [-80.328811, 36.545541],\n              [-80.328763, 36.545539],\n              [-80.3287, 36.545536],\n              [-80.328635, 36.545533],\n              [-80.328612, 36.545532],\n              [-80.325021, 36.545363],\n              [-80.310938, 36.54471],\n              [-80.295431, 36.543985],\n              [-80.295097, 36.543985],\n              [-80.295084, 36.543984],\n              [-80.294795, 36.543964],\n              [-80.290921, 36.543979],\n              [-80.290893, 36.543979],\n              [-80.280072, 36.544022],\n              [-80.278303, 36.544029],\n              [-80.276533, 36.544036],\n              [-80.276272, 36.544049],\n              [-80.276042, 36.544049],\n              [-80.275758, 36.544039],\n              [-80.27211, 36.544055],\n              [-80.27209, 36.544055],\n              [-80.263249, 36.544071],\n              [-80.260832, 36.544031],\n              [-80.259016, 36.544017],\n              [-80.258567, 36.544014],\n              [-80.254722, 36.543989],\n              [-80.250499, 36.544005],\n              [-80.249682, 36.544014],\n              [-80.247676, 36.543995],\n              [-80.243735, 36.54396],\n              [-80.243727, 36.54396],\n              [-80.24329, 36.543957],\n              [-80.243274, 36.543957],\n              [-80.243125, 36.543956],\n              [-80.243029, 36.543955],\n              [-80.242777, 36.543953],\n              [-80.241687, 36.543943],\n              [-80.239417, 36.543924],\n              [-80.236941, 36.543913],\n              [-80.235213, 36.543905],\n              [-80.231009, 36.543886],\n              [-80.229637, 36.54388],\n              [-80.228049, 36.543977],\n              [-80.227562, 36.543881],\n              [-80.225342, 36.543754],\n              [-80.225331, 36.543754],\n              [-80.218951, 36.543693],\n              [-80.214738, 36.543661],\n              [-80.199151, 36.543542],\n              [-80.193292, 36.543488],\n              [-80.19309, 36.543485],\n              [-80.19159, 36.543464],\n              [-80.183819, 36.543354],\n              [-80.181569, 36.54333],\n              [-80.179641, 36.543309],\n              [-80.172936, 36.543278],\n              [-80.17292, 36.543278],\n              [-80.171632, 36.543244],\n              [-80.171438, 36.543227],\n              [-80.171198, 36.543203],\n              [-80.170846, 36.543168],\n              [-80.170686, 36.543145],\n              [-80.17052, 36.54313],\n              [-80.17032, 36.543125],\n              [-80.170157, 36.543131],\n              [-80.169932, 36.543151],\n              [-80.169817, 36.543171],\n              [-80.169751, 36.543183],\n              [-80.169677, 36.543202],\n              [-80.169523, 36.543198],\n              [-80.169515, 36.543198],\n              [-80.169499, 36.543197],\n              [-80.16949, 36.543197],\n              [-80.16941, 36.543195],\n              [-80.169329, 36.543194],\n              [-80.167898, 36.543176],\n              [-80.167881, 36.543176],\n              [-80.167576, 36.543172],\n              [-80.167541, 36.543172],\n              [-80.167534, 36.543171],\n              [-80.167513, 36.543171],\n              [-80.166373, 36.543156],\n              [-80.166308, 36.543155],\n              [-80.159643, 36.543074],\n              [-80.158681, 36.543063],\n              [-80.158395, 36.543059],\n              [-80.157147, 36.543043],\n              [-80.155149, 36.543019],\n              [-80.15315, 36.542994],\n              [-80.150248, 36.542966],\n              [-80.150232, 36.542966],\n              [-80.142571, 36.542882],\n              [-80.142017, 36.542877],\n              [-80.138823, 36.542807],\n              [-80.1387, 36.542804],\n              [-80.138676, 36.542804],\n              [-80.136512, 36.542757],\n              [-80.136485, 36.542756],\n              [-80.13644, 36.542756],\n              [-80.136426, 36.542755],\n              [-80.136419, 36.542755],\n              [-80.136312, 36.54275],\n              [-80.129544, 36.542715],\n              [-80.129469, 36.542715],\n              [-80.126377, 36.542697],\n              [-80.125791, 36.542694],\n              [-80.125784, 36.542693],\n              [-80.125706, 36.542693],\n              [-80.122176, 36.542657],\n              [-80.117072, 36.542639],\n              [-80.113343, 36.542613],\n              [-80.103816, 36.542596],\n              [-80.101693, 36.542592],\n              [-80.097225, 36.542584],\n              [-80.097032, 36.542584],\n              [-80.097025, 36.542583],\n              [-80.096978, 36.542583],\n              [-80.09675, 36.542582],\n              [-80.096718, 36.542582],\n              [-80.096132, 36.542577],\n              [-80.095719, 36.542575],\n              [-80.091156, 36.542567],\n              [-80.083026, 36.542551],\n              [-80.074897, 36.542534],\n              [-80.064179, 36.542513],\n              [-80.053463, 36.542492],\n              [-80.052367, 36.542466],\n              [-80.042439, 36.542479],\n              [-80.037606, 36.542454],\n              [-80.036044, 36.54249],\n              [-80.027272, 36.542502],\n              [-80.026159, 36.542504],\n              [-80.026133, 36.542504],\n              [-80.026127, 36.542502],\n              [-80.013716, 36.542504],\n              [-80.013333, 36.542504],\n              [-80.008736, 36.542505],\n              [-80.006702, 36.542505],\n              [-80.004925, 36.542507],\n              [-80.004427, 36.542508],\n              [-80.004319, 36.542508],\n              [-80.004173, 36.542485],\n              [-80.002988, 36.542556],\n              [-80.00298, 36.542559],\n              [-80.002969, 36.542563],\n              [-80.000477, 36.542378],\n              [-80.00047, 36.542378],\n              [-80.00045, 36.542376],\n              [-80.000382, 36.542371],\n              [-79.999328, 36.542298],\n              [-79.992309, 36.542289],\n              [-79.988157, 36.54234],\n              [-79.986018, 36.542371],\n              [-79.982852, 36.542417],\n              [-79.982822, 36.542417],\n              [-79.97949, 36.542422],\n              [-79.975483, 36.542446],\n              [-79.967755, 36.542507],\n              [-79.967514, 36.542508],\n              [-79.967356, 36.542501],\n              [-79.966982, 36.542482],\n              [-79.963326, 36.542667],\n              [-79.963303, 36.542666],\n              [-79.960085, 36.542511],\n              [-79.960022, 36.542512],\n              [-79.952489, 36.54261],\n              [-79.951772, 36.542616],\n              [-79.951464, 36.542619],\n              [-79.949619, 36.542634],\n              [-79.933344, 36.54263],\n              [-79.931166, 36.542545],\n              [-79.930947, 36.542553],\n              [-79.930833, 36.542557],\n              [-79.928532, 36.542643],\n              [-79.928056, 36.542629],\n              [-79.927412, 36.542612],\n              [-79.925159, 36.542537],\n              [-79.925062, 36.542534],\n              [-79.920241, 36.542755],\n              [-79.917718, 36.542502],\n              [-79.912676, 36.542539],\n              [-79.911189, 36.542707],\n              [-79.911003, 36.542657],\n              [-79.910984, 36.542652],\n              [-79.910978, 36.54265],\n              [-79.91073, 36.542586],\n              [-79.909382, 36.542498],\n              [-79.904896, 36.542535],\n              [-79.891574, 36.542746],\n              [-79.889683, 36.542801],\n              [-79.887251, 36.542872],\n              [-79.874654, 36.542703],\n              [-79.869657, 36.542739],\n              [-79.865604, 36.542603],\n              [-79.865365, 36.542603],\n              [-79.860732, 36.542607],\n              [-79.856896, 36.54261],\n              [-79.852199, 36.542586],\n              [-79.845542, 36.542552],\n              [-79.842898, 36.542622],\n              [-79.841325, 36.542624],\n              [-79.83709, 36.542628],\n              [-79.836871, 36.54263],\n              [-79.831071, 36.542686],\n              [-79.829174, 36.542635],\n              [-79.817199, 36.542464],\n              [-79.807601, 36.542236],\n              [-79.807581, 36.542238],\n              [-79.80462, 36.542502],\n              [-79.777107, 36.542287],\n              [-79.775217, 36.542018],\n              [-79.774293, 36.542272],\n              [-79.772388, 36.542286],\n              [-79.771502, 36.542295],\n              [-79.765394, 36.542374],\n              [-79.762724, 36.542272],\n              [-79.759788, 36.542161],\n              [-79.759672, 36.54216],\n              [-79.75908, 36.542156],\n              [-79.758945, 36.542155],\n              [-79.758919, 36.542155],\n              [-79.758758, 36.542154],\n              [-79.758339, 36.542151],\n              [-79.758177, 36.54215],\n              [-79.758025, 36.542149],\n              [-79.757983, 36.542149],\n              [-79.757845, 36.542148],\n              [-79.757792, 36.542148],\n              [-79.757778, 36.542147],\n              [-79.757745, 36.542147],\n              [-79.757454, 36.542145],\n              [-79.757116, 36.542143],\n              [-79.756932, 36.542142],\n              [-79.75213, 36.54211],\n              [-79.74976, 36.542095],\n              [-79.747903, 36.542087],\n              [-79.745162, 36.542075],\n              [-79.745118, 36.542075],\n              [-79.741429, 36.542059],\n              [-79.736272, 36.541983],\n              [-79.735936, 36.541983],\n              [-79.732776, 36.541986],\n              [-79.732455, 36.541986],\n              [-79.732448, 36.541987],\n              [-79.731903, 36.541987],\n              [-79.714858, 36.541945],\n              [-79.692277, 36.541878],\n              [-79.690801, 36.541912],\n              [-79.690462, 36.541918],\n              [-79.676883, 36.541817],\n              [-79.675127, 36.541831],\n              [-79.672534, 36.541817],\n              [-79.667128, 36.541778],\n              [-79.666993, 36.541799],\n              [-79.66683, 36.541799],\n              [-79.666404, 36.5418],\n              [-79.666354, 36.5418],\n              [-79.664526, 36.541803],\n              [-79.66391, 36.5418],\n              [-79.66221, 36.541798],\n              [-79.660032, 36.542106],\n              [-79.659914, 36.542123],\n              [-79.646716, 36.541913],\n              [-79.636656, 36.541638],\n              [-79.633093, 36.5416],\n              [-79.628987, 36.541554],\n              [-79.627081, 36.541653],\n              [-79.627049, 36.541655],\n              [-79.627042, 36.541655],\n              [-79.627034, 36.541656],\n              [-79.626877, 36.541664],\n              [-79.626803, 36.541668],\n              [-79.626715, 36.541672],\n              [-79.626639, 36.541676],\n              [-79.626605, 36.541678],\n              [-79.626489, 36.541684],\n              [-79.625555, 36.541733],\n              [-79.625531, 36.541734],\n              [-79.625476, 36.541737],\n              [-79.625456, 36.541738],\n              [-79.625448, 36.541738],\n              [-79.625438, 36.541739],\n              [-79.625404, 36.541741],\n              [-79.625377, 36.541742],\n              [-79.625268, 36.541732],\n              [-79.624845, 36.541702],\n              [-79.62476, 36.541696],\n              [-79.623613, 36.541659],\n              [-79.621297, 36.541585],\n              [-79.620048, 36.541654],\n              [-79.615147, 36.541571],\n              [-79.607433, 36.541503],\n              [-79.605372, 36.541475],\n              [-79.605211, 36.541494],\n              [-79.605157, 36.541496],\n              [-79.605042, 36.541501],\n              [-79.60474, 36.541514],\n              [-79.604483, 36.541525],\n              [-79.599783, 36.541436],\n              [-79.599514, 36.541435],\n              [-79.598943, 36.541425],\n              [-79.584832, 36.541205],\n              [-79.581135, 36.541194],\n              [-79.576249, 36.541175],\n              [-79.575677, 36.541173],\n              [-79.574839, 36.541169],\n              [-79.574783, 36.541169],\n              [-79.572545, 36.541142],\n              [-79.572401, 36.54114],\n              [-79.569763, 36.541073],\n              [-79.563481, 36.541016],\n              [-79.551352, 36.540968],\n              [-79.546544, 36.540948],\n              [-79.546457, 36.540948],\n              [-79.54446, 36.540936],\n              [-79.543086, 36.540938],\n              [-79.542174, 36.540932],\n              [-79.531422, 36.540864],\n              [-79.526728, 36.540837],\n              [-79.526206, 36.540834],\n              [-79.526073, 36.540833],\n              [-79.518379, 36.540786],\n              [-79.517806, 36.540791],\n              [-79.517385, 36.540784],\n              [-79.515621, 36.540773],\n              [-79.514462, 36.540766],\n              [-79.51434, 36.540766],\n              [-79.51097, 36.54079],\n              [-79.508065, 36.540823],\n              [-79.507891, 36.540825],\n              [-79.500503, 36.540919],\n              [-79.49975, 36.540929],\n              [-79.497315, 36.540794],\n              [-79.497251, 36.54079],\n              [-79.496366, 36.540813],\n              [-79.495819, 36.540792],\n              [-79.495756, 36.540789],\n              [-79.489711, 36.540819],\n              [-79.48246, 36.540829],\n              [-79.47845, 36.540844],\n              [-79.478007, 36.540842],\n              [-79.476897, 36.540837],\n              [-79.47576, 36.540835],\n              [-79.47235, 36.54083],\n              [-79.472234, 36.54083],\n              [-79.471214, 36.540829],\n              [-79.468701, 36.540829],\n              [-79.466336, 36.54083],\n              [-79.465835, 36.54083],\n              [-79.465631, 36.540829],\n              [-79.465316, 36.540829],\n              [-79.464976, 36.540835],\n              [-79.464398, 36.540844],\n              [-79.462968, 36.540843],\n              [-79.460121, 36.540841],\n              [-79.459628, 36.540846],\n              [-79.458264, 36.540852],\n              [-79.458015, 36.540857],\n              [-79.456706, 36.540874],\n              [-79.456456, 36.540885],\n              [-79.451916, 36.54108],\n              [-79.445964, 36.541202],\n              [-79.44569, 36.541225],\n              [-79.445679, 36.541225],\n              [-79.445486, 36.541228],\n              [-79.445186, 36.541233],\n              [-79.443129, 36.54126],\n              [-79.442895, 36.541265],\n              [-79.440463, 36.541279],\n              [-79.429848, 36.541345],\n              [-79.428656, 36.541346],\n              [-79.425461, 36.541349],\n              [-79.412223, 36.541364],\n              [-79.411942, 36.541364],\n              [-79.410361, 36.541375],\n              [-79.405945, 36.541404],\n              [-79.405856, 36.541405],\n              [-79.405617, 36.541407],\n              [-79.405378, 36.541408],\n              [-79.405377, 36.541408],\n              [-79.400789, 36.541439],\n              [-79.400767, 36.541439],\n              [-79.400022, 36.541441],\n              [-79.40002, 36.541441],\n              [-79.397532, 36.541453],\n              [-79.397139, 36.54145],\n              [-79.390219, 36.541383],\n              [-79.389316, 36.541375],\n              [-79.388959, 36.541372],\n              [-79.388159, 36.541362],\n              [-79.386617, 36.541353],\n              [-79.384745, 36.541341],\n              [-79.374746, 36.541336],\n              [-79.373247, 36.541429],\n              [-79.373246, 36.541429],\n              [-79.372928, 36.541449],\n              [-79.366514, 36.541426],\n              [-79.36444, 36.54142],\n              [-79.362949, 36.541415],\n              [-79.353156, 36.541389],\n              [-79.347345, 36.541382],\n              [-79.347205, 36.541382],\n              [-79.343287, 36.541375],\n              [-79.343004, 36.541374],\n              [-79.342962, 36.541374],\n              [-79.342825, 36.541373],\n              [-79.342571, 36.541373],\n              [-79.342569, 36.541372],\n              [-79.337478, 36.541361],\n              [-79.33443, 36.541355],\n              [-79.326952, 36.541333],\n              [-79.326604, 36.541333],\n              [-79.322188, 36.541327],\n              [-79.316802, 36.54131],\n              [-79.311201, 36.541292],\n              [-79.307081, 36.541283],\n              [-79.29933, 36.541263],\n              [-79.299323, 36.541262],\n              [-79.298896, 36.541264],\n              [-79.295251, 36.541255],\n              [-79.294106, 36.541253],\n              [-79.28639, 36.541235],\n              [-79.283938, 36.541228],\n              [-79.280223, 36.541217],\n              [-79.279512, 36.541217],\n              [-79.278586, 36.541216],\n              [-79.278044, 36.541216],\n              [-79.274296, 36.541206],\n              [-79.273829, 36.541205],\n              [-79.269296, 36.541193],\n              [-79.269212, 36.541193],\n              [-79.26814, 36.541191],\n              [-79.267992, 36.541191],\n              [-79.266158, 36.541186],\n              [-79.26443, 36.541182],\n              [-79.263085, 36.541179],\n              [-79.263061, 36.541179],\n              [-79.262057, 36.541175],\n              [-79.261806, 36.541175],\n              [-79.259547, 36.541168],\n              [-79.252771, 36.541149],\n              [-79.250513, 36.541143],\n              [-79.250477, 36.541148],\n              [-79.249833, 36.541146],\n              [-79.244964, 36.541224],\n              [-79.239127, 36.541318],\n              [-79.237968, 36.541336],\n              [-79.23481, 36.541386],\n              [-79.228359, 36.54149],\n              [-79.218641, 36.541646],\n              [-79.217857, 36.541647],\n              [-79.217625, 36.541647],\n              [-79.216093, 36.541648],\n              [-79.214326, 36.54165],\n              [-79.214144, 36.541647],\n              [-79.214039, 36.541648],\n              [-79.213933, 36.541649],\n              [-79.213775, 36.54165],\n              [-79.213616, 36.541651],\n              [-79.213008, 36.541651],\n              [-79.212161, 36.541652],\n              [-79.209557, 36.541602],\n              [-79.208689, 36.541578],\n              [-79.207158, 36.541648],\n              [-79.207067, 36.541652],\n              [-79.206979, 36.541656],\n              [-79.20684, 36.541656],\n              [-79.198353, 36.541664],\n              [-79.196447, 36.541666],\n              [-79.190878, 36.541671],\n              [-79.190703, 36.541671],\n              [-79.18907, 36.541675],\n              [-79.187791, 36.541679],\n              [-79.187467, 36.541679],\n              [-79.185185, 36.541682],\n              [-79.183774, 36.541683],\n              [-79.180724, 36.541687],\n              [-79.17964, 36.541688],\n              [-79.17592, 36.541691],\n              [-79.171665, 36.541697],\n              [-79.16459, 36.541704],\n              [-79.162957, 36.541706],\n              [-79.161619, 36.541707],\n              [-79.15537, 36.541716],\n              [-79.154873, 36.541723],\n              [-79.15462, 36.541716],\n              [-79.148671, 36.541722],\n              [-79.146789, 36.541725],\n              [-79.14165, 36.541731],\n              [-79.138424, 36.541744],\n              [-79.138318, 36.541743],\n              [-79.138095, 36.541745],\n              [-79.137939, 36.541746],\n              [-79.137485, 36.541737],\n              [-79.136125, 36.541711],\n              [-79.135672, 36.541703],\n              [-79.133753, 36.54167],\n              [-79.127999, 36.541572],\n              [-79.126081, 36.54154],\n              [-79.125956, 36.541558],\n              [-79.125636, 36.541605],\n              [-79.125581, 36.541612],\n              [-79.125457, 36.541631],\n              [-79.125049, 36.541599],\n              [-79.124739, 36.541575],\n              [-79.122326, 36.541612],\n              [-79.117441, 36.541645],\n              [-79.117287, 36.541646],\n              [-79.104439, 36.541646],\n              [-79.100165, 36.541694],\n              [-79.098674, 36.541711],\n              [-79.095056, 36.541752],\n              [-79.091119, 36.541797],\n              [-79.089463, 36.541816],\n              [-79.08684, 36.541846],\n              [-79.085282, 36.541865],\n              [-79.079645, 36.54193],\n              [-79.070099, 36.542041],\n              [-79.069492, 36.542046],\n              [-79.069299, 36.542046],\n              [-79.066316, 36.542047],\n              [-79.062121, 36.542046],\n              [-79.055896, 36.542043],\n              [-79.048238, 36.542044],\n              [-79.044358, 36.542046],\n              [-79.020638, 36.542046],\n              [-79.017333, 36.542061],\n              [-79.017333, 36.542062],\n              [-79.014759, 36.542075],\n              [-79.013926, 36.542077],\n              [-79.013924, 36.542077],\n              [-79.006392, 36.542097],\n              [-79.00639, 36.542097],\n              [-78.999736, 36.542114],\n              [-78.994928, 36.542111],\n              [-78.994598, 36.542112],\n              [-78.993609, 36.542117],\n              [-78.99328, 36.542119],\n              [-78.992673, 36.542118],\n              [-78.990245, 36.542118],\n              [-78.983569, 36.542114],\n              [-78.979197, 36.542111],\n              [-78.973923, 36.542125],\n              [-78.971817, 36.54213],\n              [-78.971569, 36.542136],\n              [-78.970827, 36.542154],\n              [-78.97058, 36.542161],\n              [-78.964608, 36.542145],\n              [-78.964534, 36.542145],\n              [-78.964402, 36.542144],\n              [-78.964109, 36.542143],\n              [-78.963428, 36.542141],\n              [-78.963354, 36.542138],\n              [-78.962111, 36.542083],\n              [-78.961729, 36.542086],\n              [-78.961653, 36.542086],\n              [-78.961578, 36.542088],\n              [-78.961432, 36.542088],\n              [-78.954942, 36.54213],\n              [-78.954675, 36.542129],\n              [-78.949406, 36.54211],\n              [-78.949331, 36.542109],\n              [-78.94915, 36.542109],\n              [-78.946198, 36.542099],\n              [-78.942363, 36.542085],\n              [-78.942259, 36.542086],\n              [-78.942011, 36.542121],\n              [-78.942007, 36.54212],\n              [-78.941791, 36.542119],\n              [-78.9416, 36.542116],\n              [-78.941572, 36.542117],\n              [-78.941516, 36.542111],\n              [-78.941503, 36.542116],\n              [-78.941503, 36.542117],\n              [-78.941261, 36.542117],\n              [-78.939691, 36.54211],\n              [-78.939207, 36.542108],\n              [-78.937394, 36.542101],\n              [-78.933673, 36.542087],\n              [-78.933481, 36.542085],\n              [-78.930676, 36.542072],\n              [-78.927944, 36.542063],\n              [-78.92729, 36.54206],\n              [-78.92533, 36.542054],\n              [-78.924677, 36.542052],\n              [-78.920214, 36.542036],\n              [-78.917052, 36.542024],\n              [-78.916354, 36.542022],\n              [-78.916078, 36.54201],\n              [-78.914283, 36.54202],\n              [-78.914184, 36.541981],\n              [-78.913149, 36.541984],\n              [-78.91303, 36.541985],\n              [-78.902773, 36.542002],\n              [-78.901703, 36.542],\n              [-78.901417, 36.541999],\n              [-78.893589, 36.542027],\n              [-78.888366, 36.542035],\n              [-78.888126, 36.542035],\n              [-78.880725, 36.542049],\n              [-78.874759, 36.542034],\n              [-78.871776, 36.542079],\n              [-78.866187, 36.542081],\n              [-78.856253, 36.542089],\n              [-78.848272, 36.542095],\n              [-78.847967, 36.542095],\n              [-78.845652, 36.542097],\n              [-78.83535, 36.54204],\n              [-78.835247, 36.542039],\n              [-78.834453, 36.542034],\n              [-78.832071, 36.542021],\n              [-78.83176, 36.54202],\n              [-78.831278, 36.542003],\n              [-78.83085, 36.541987],\n              [-78.829566, 36.541941],\n              [-78.829138, 36.541926],\n              [-78.828627, 36.541928],\n              [-78.827094, 36.541935],\n              [-78.826584, 36.541938],\n              [-78.826502, 36.541938],\n              [-78.821312, 36.541964],\n              [-78.82067, 36.541972],\n              [-78.820628, 36.541973],\n              [-78.818708, 36.541876],\n              [-78.818578, 36.541877],\n              [-78.81227, 36.541899],\n              [-78.808823, 36.541912],\n              [-78.808822, 36.541912],\n              [-78.807651, 36.541916],\n              [-78.801679, 36.541876],\n              [-78.801272, 36.541865],\n              [-78.796363, 36.54172],\n              [-78.796303, 36.54172],\n              [-78.794741, 36.54173],\n              [-78.794054, 36.541734],\n              [-78.787308, 36.541776],\n              [-78.786695, 36.54178],\n              [-78.78506, 36.541761],\n              [-78.77899, 36.541693],\n              [-78.7776, 36.541681],\n              [-78.775871, 36.541669],\n              [-78.77461, 36.541675],\n              [-78.773556, 36.541681],\n              [-78.772706, 36.541685],\n              [-78.770156, 36.541698],\n              [-78.769307, 36.541703],\n              [-78.768868, 36.541705],\n              [-78.76755, 36.541712],\n              [-78.767112, 36.541715],\n              [-78.767057, 36.541715],\n              [-78.767044, 36.541716],\n              [-78.766677, 36.541718],\n              [-78.766282, 36.54176],\n              [-78.765424, 36.541724],\n              [-78.765149, 36.541739],\n              [-78.764377, 36.541753],\n              [-78.762492, 36.541787],\n              [-78.762262, 36.541781],\n              [-78.761935, 36.541776],\n              [-78.760702, 36.541782],\n              [-78.758389, 36.541856],\n              [-78.758076, 36.541721],\n              [-78.754522, 36.541766],\n              [-78.753319, 36.541781],\n              [-78.749713, 36.541828],\n              [-78.749658, 36.541829],\n              [-78.748512, 36.541882],\n              [-78.747927, 36.541892],\n              [-78.746172, 36.541921],\n              [-78.745588, 36.541932],\n              [-78.74329, 36.541971],\n              [-78.743103, 36.541974],\n              [-78.742739, 36.541982],\n              [-78.742554, 36.541982],\n              [-78.742338, 36.541983],\n              [-78.742142, 36.54198],\n              [-78.740359, 36.54195],\n              [-78.739415, 36.541935],\n              [-78.734125, 36.541954],\n              [-78.732176, 36.541962],\n              [-78.724347, 36.542031],\n              [-78.724155, 36.542033],\n              [-78.709783, 36.542047],\n              [-78.704179, 36.542054],\n              [-78.704067, 36.542054],\n              [-78.703884, 36.541999],\n              [-78.703792, 36.541972],\n              [-78.695336, 36.54206],\n              [-78.69497, 36.542064],\n              [-78.694397, 36.54207],\n              [-78.692949, 36.542069],\n              [-78.691269, 36.542068],\n              [-78.687731, 36.542067],\n              [-78.685614, 36.542066],\n              [-78.685438, 36.542072],\n              [-78.683916, 36.542126],\n              [-78.682891, 36.542047],\n              [-78.682833, 36.542043],\n              [-78.682098, 36.542075],\n              [-78.681427, 36.542105],\n              [-78.67834, 36.542127],\n              [-78.675028, 36.542134],\n              [-78.674573, 36.542119],\n              [-78.672471, 36.542085],\n              [-78.671268, 36.542067],\n              [-78.671268, 36.542079],\n              [-78.670978, 36.542092],\n              [-78.670367, 36.542108],\n              [-78.669305, 36.542119],\n              [-78.668954, 36.542129],\n              [-78.667912, 36.542138],\n              [-78.66713, 36.542151],\n              [-78.666618, 36.542152],\n              [-78.665184, 36.542142],\n              [-78.664832, 36.542128],\n              [-78.664497, 36.54212],\n              [-78.66414, 36.542098],\n              [-78.663945, 36.54208],\n              [-78.663609, 36.54205],\n              [-78.663302, 36.542022],\n              [-78.661833, 36.542022],\n              [-78.660143, 36.54199],\n              [-78.655751, 36.541893],\n              [-78.65487, 36.541873],\n              [-78.649654, 36.541758],\n              [-78.637476, 36.541488],\n              [-78.637255, 36.541483],\n              [-78.637024, 36.541483],\n              [-78.632383, 36.541484],\n              [-78.626011, 36.541382],\n              [-78.624727, 36.541361],\n              [-78.620977, 36.5413],\n              [-78.620775, 36.541299],\n              [-78.618648, 36.541295],\n              [-78.611326, 36.541278],\n              [-78.609083, 36.541273],\n              [-78.607201, 36.541269],\n              [-78.605345, 36.541102],\n              [-78.605307, 36.541098],\n              [-78.596214, 36.541207],\n              [-78.59605, 36.54121],\n              [-78.595153, 36.541221],\n              [-78.594388, 36.541221],\n              [-78.592156, 36.541218],\n              [-78.591313, 36.541225],\n              [-78.585953, 36.541213],\n              [-78.585118, 36.541211],\n              [-78.584334, 36.541209],\n              [-78.578412, 36.541192],\n              [-78.578235, 36.541192],\n              [-78.575406, 36.541184],\n              [-78.575086, 36.541184],\n              [-78.57492, 36.541183],\n              [-78.574752, 36.541183],\n              [-78.572859, 36.541179],\n              [-78.565797, 36.541174],\n              [-78.56508, 36.541173],\n              [-78.564806, 36.541266],\n              [-78.564643, 36.541265],\n              [-78.552554, 36.541144],\n              [-78.539868, 36.541108],\n              [-78.53918, 36.541098],\n              [-78.538966, 36.541095],\n              [-78.537284, 36.541071],\n              [-78.534928, 36.541038],\n              [-78.533063, 36.541011],\n              [-78.532533, 36.541015],\n              [-78.529601, 36.541017],\n              [-78.529205, 36.540994],\n              [-78.52874, 36.540947],\n              [-78.528709, 36.540947],\n              [-78.524582, 36.541076],\n              [-78.516673, 36.540974],\n              [-78.516614, 36.540973],\n              [-78.516492, 36.540972],\n              [-78.515431, 36.54096],\n              [-78.512766, 36.541051],\n              [-78.511319, 36.540958],\n              [-78.511282, 36.540961],\n              [-78.509967, 36.541072],\n              [-78.507198, 36.54115],\n              [-78.504859, 36.541243],\n              [-78.50344, 36.54131],\n              [-78.501413, 36.541401],\n              [-78.501254, 36.541408],\n              [-78.499723, 36.541477],\n              [-78.49599, 36.54155],\n              [-78.493892, 36.541592],\n              [-78.487707, 36.541769],\n              [-78.485146, 36.541895],\n              [-78.482345, 36.542036],\n              [-78.480873, 36.542107],\n              [-78.479669, 36.542125],\n              [-78.477568, 36.542195],\n              [-78.476752, 36.542201],\n              [-78.474169, 36.542218],\n              [-78.473915, 36.542222],\n              [-78.473909, 36.542225],\n              [-78.473771, 36.542226],\n              [-78.471024, 36.542314],\n              [-78.470794, 36.542323],\n              [-78.469872, 36.542332],\n              [-78.46906, 36.54234],\n              [-78.468716, 36.542343],\n              [-78.467497, 36.542356],\n              [-78.464529, 36.542368],\n              [-78.464403, 36.542372],\n              [-78.463331, 36.542453],\n              [-78.463213, 36.542457],\n              [-78.46303, 36.542463],\n              [-78.462159, 36.542465],\n              [-78.461993, 36.542466],\n              [-78.45969, 36.542472],\n              [-78.456972, 36.542481],\n              [-78.456337, 36.542484],\n              [-78.455933, 36.542486],\n              [-78.45264, 36.542528],\n              [-78.449319, 36.542571],\n              [-78.443888, 36.542642],\n              [-78.441379, 36.542691],\n              [-78.441326, 36.542636],\n              [-78.441277, 36.542607],\n              [-78.44122, 36.54259],\n              [-78.441045, 36.542591],\n              [-78.439789, 36.542647],\n              [-78.439512, 36.542657],\n              [-78.438886, 36.542636],\n              [-78.438136, 36.542636],\n              [-78.436828, 36.542651],\n              [-78.436662, 36.542636],\n              [-78.43663, 36.542641],\n              [-78.436608, 36.542655],\n              [-78.436532, 36.542747],\n              [-78.435084, 36.54273],\n              [-78.429267, 36.542782],\n              [-78.428525, 36.542792],\n              [-78.427807, 36.542802],\n              [-78.426728, 36.542819],\n              [-78.417229, 36.542911],\n              [-78.41722, 36.542911],\n              [-78.416374, 36.542919],\n              [-78.410356, 36.542986],\n              [-78.409828, 36.542981],\n              [-78.407892, 36.543027],\n              [-78.406668, 36.543057],\n              [-78.406179, 36.543053],\n              [-78.404069, 36.543038],\n              [-78.403849, 36.543039],\n              [-78.396345, 36.543104],\n              [-78.395397, 36.543112],\n              [-78.388284, 36.543172],\n              [-78.38828, 36.543172],\n              [-78.383694, 36.543211],\n              [-78.383691, 36.543211],\n              [-78.38304, 36.543217],\n              [-78.381469, 36.543223],\n              [-78.379701, 36.543273],\n              [-78.379402, 36.543278],\n              [-78.377073, 36.543266],\n              [-78.375404, 36.543269],\n              [-78.374721, 36.543342],\n              [-78.369189, 36.543416],\n              [-78.369101, 36.543415],\n              [-78.369092, 36.543414],\n              [-78.36786, 36.543393],\n              [-78.367548, 36.543387],\n              [-78.362927, 36.543433],\n              [-78.362926, 36.543433],\n              [-78.361182, 36.54345],\n              [-78.3608, 36.543454],\n              [-78.360402, 36.543458],\n              [-78.358695, 36.543474],\n              [-78.35857, 36.543475],\n              [-78.345586, 36.543603],\n              [-78.323914, 36.543816],\n              [-78.317962, 36.543875],\n              [-78.317223, 36.543882],\n              [-78.313003, 36.543924],\n              [-78.3103, 36.543951],\n              [-78.298997, 36.544064],\n              [-78.297079, 36.544089],\n              [-78.296893, 36.544091],\n              [-78.296811, 36.544092],\n              [-78.29678, 36.544092],\n              [-78.296695, 36.544093],\n              [-78.296179, 36.5441],\n              [-78.296125, 36.544101],\n              [-78.296036, 36.544102],\n              [-78.295942, 36.544102],\n              [-78.292265, 36.544122],\n              [-78.292245, 36.544122],\n              [-78.288678, 36.54414],\n              [-78.288628, 36.54414],\n              [-78.2886, 36.544141],\n              [-78.28853, 36.544141],\n              [-78.287934, 36.544144],\n              [-78.287901, 36.544144],\n              [-78.286218, 36.544156],\n              [-78.284677, 36.544166],\n              [-78.284668, 36.544166],\n              [-78.277288, 36.544224],\n              [-78.273882, 36.544239],\n              [-78.271554, 36.544258],\n              [-78.27149, 36.544259],\n              [-78.271451, 36.544259],\n              [-78.271444, 36.54426],\n              [-78.271216, 36.544266],\n              [-78.270489, 36.544271],\n              [-78.270332, 36.544273],\n              [-78.264331, 36.544321],\n              [-78.264308, 36.544321],\n              [-78.259816, 36.544359],\n              [-78.258546, 36.54437],\n              [-78.258429, 36.544371],\n              [-78.258302, 36.544372],\n              [-78.257416, 36.544381],\n              [-78.257402, 36.54438],\n              [-78.257385, 36.54438],\n              [-78.25728, 36.544381],\n              [-78.25724, 36.544381],\n              [-78.257232, 36.544382],\n              [-78.257211, 36.544382],\n              [-78.251136, 36.544447],\n              [-78.249796, 36.544466],\n              [-78.24693, 36.544357],\n              [-78.246917, 36.544357],\n              [-78.24669, 36.544348],\n              [-78.246682, 36.544348],\n              [-78.245464, 36.544418],\n              [-78.235824, 36.544377],\n              [-78.234685, 36.544372],\n              [-78.225851, 36.544334],\n              [-78.225664, 36.544333],\n              [-78.2256, 36.544333],\n              [-78.225364, 36.544332],\n              [-78.225271, 36.544332],\n              [-78.225236, 36.544331],\n              [-78.225159, 36.544331],\n              [-78.224779, 36.544329],\n              [-78.223354, 36.544323],\n              [-78.21769, 36.544299],\n              [-78.211825, 36.544273],\n              [-78.203374, 36.544237],\n              [-78.201784, 36.54423],\n              [-78.199189, 36.544219],\n              [-78.199152, 36.544219],\n              [-78.19834, 36.544215],\n              [-78.197257, 36.544211],\n              [-78.194101, 36.544198],\n              [-78.188475, 36.544173],\n              [-78.188376, 36.544173],\n              [-78.187317, 36.544181],\n              [-78.187273, 36.544181],\n              [-78.187168, 36.544182],\n              [-78.187107, 36.544183],\n              [-78.187009, 36.544184],\n              [-78.184866, 36.544202],\n              [-78.184566, 36.5442],\n              [-78.184077, 36.544196],\n              [-78.179289, 36.544165],\n              [-78.174204, 36.544156],\n              [-78.170216, 36.544119],\n              [-78.167386, 36.544092],\n              [-78.165859, 36.544078],\n              [-78.16106, 36.543996],\n              [-78.161029, 36.543996],\n              [-78.161013, 36.543995],\n              [-78.160998, 36.543995],\n              [-78.160826, 36.543992],\n              [-78.160741, 36.543991],\n              [-78.160268, 36.543983],\n              [-78.1601, 36.54398],\n              [-78.160077, 36.54398],\n              [-78.159848, 36.543976],\n              [-78.159751, 36.543974],\n              [-78.159601, 36.543971],\n              [-78.158469, 36.543954],\n              [-78.158208, 36.543951],\n              [-78.158182, 36.543951],\n              [-78.157814, 36.543947],\n              [-78.157536, 36.543944],\n              [-78.142877, 36.543686],\n              [-78.141532, 36.543708],\n              [-78.14152, 36.543708],\n              [-78.141467, 36.543709],\n              [-78.138924, 36.543729],\n              [-78.138222, 36.543735],\n              [-78.1341, 36.543814],\n              [-78.133396, 36.543851],\n              [-78.133325, 36.543854],\n              [-78.133163, 36.543834],\n              [-78.132913, 36.543818],\n              [-78.132629, 36.543844],\n              [-78.131356, 36.543869],\n              [-78.130933, 36.543877],\n              [-78.129681, 36.543903],\n              [-78.129544, 36.543906],\n              [-78.128892, 36.543904],\n              [-78.123307, 36.543827],\n              [-78.122295, 36.543827],\n              [-78.118533, 36.54383],\n              [-78.106755, 36.543878],\n              [-78.105338, 36.543883],\n              [-78.096952, 36.543919],\n              [-78.096726, 36.543919],\n              [-78.090001, 36.543947],\n              [-78.088197, 36.543955],\n              [-78.087192, 36.543959],\n              [-78.085644, 36.543965],\n              [-78.085622, 36.543965],\n              [-78.082642, 36.543977],\n              [-78.082624, 36.543977],\n              [-78.082196, 36.543979],\n              [-78.082155, 36.543979],\n              [-78.081566, 36.543982],\n              [-78.078612, 36.543994],\n              [-78.078588, 36.543994],\n              [-78.07694, 36.544001],\n              [-78.076198, 36.544004],\n              [-78.075365, 36.544007],\n              [-78.074565, 36.544008],\n              [-78.074556, 36.544008],\n              [-78.072499, 36.544019],\n              [-78.072476, 36.544019],\n              [-78.071031, 36.544024],\n              [-78.071021, 36.544024],\n              [-78.062663, 36.544072],\n              [-78.062483, 36.544073],\n              [-78.062411, 36.544073],\n              [-78.062401, 36.544074],\n              [-78.062326, 36.544074],\n              [-78.05952, 36.54409],\n              [-78.059472, 36.54409],\n              [-78.059216, 36.544092],\n              [-78.059201, 36.544092],\n              [-78.057987, 36.544095],\n              [-78.0578, 36.544096],\n              [-78.056091, 36.544102],\n              [-78.05516, 36.544107],\n              [-78.05514, 36.544107],\n              [-78.05399, 36.544133],\n              [-78.053366, 36.544138],\n              [-78.053351, 36.544138],\n              [-78.05333, 36.544139],\n              [-78.05319, 36.544139],\n              [-78.046205, 36.544163],\n              [-78.045376, 36.544166],\n              [-78.043492, 36.544173],\n              [-78.043036, 36.544178],\n              [-78.043, 36.544178],\n              [-78.04292, 36.544179],\n              [-78.042787, 36.544181],\n              [-78.041322, 36.544199],\n              [-78.041314, 36.544199],\n              [-78.039451, 36.544195],\n              [-78.039422, 36.544195],\n              [-78.039006, 36.544182],\n              [-78.03894, 36.54418],\n              [-78.035396, 36.544202],\n              [-78.035011, 36.544201],\n              [-78.034583, 36.544199],\n              [-78.032859, 36.544204],\n              [-78.03259, 36.544205],\n              [-78.031827, 36.544207],\n              [-78.031568, 36.544207],\n              [-78.030645, 36.544209],\n              [-78.029013, 36.544213],\n              [-78.027341, 36.544222],\n              [-78.02619, 36.544225],\n              [-78.025157, 36.544228],\n              [-78.024222, 36.544231],\n              [-78.024215, 36.544231],\n              [-78.022212, 36.544241],\n              [-78.021935, 36.544242],\n              [-78.02192, 36.544243],\n              [-78.0218, 36.544243],\n              [-78.021652, 36.544244],\n              [-78.014775, 36.54428],\n              [-78.013332, 36.544284],\n              [-78.013233, 36.544284],\n              [-78.01271, 36.544285],\n              [-78.01204, 36.544286],\n              [-78.011349, 36.544288],\n              [-78.009144, 36.544294],\n              [-78.009137, 36.544294],\n              [-78.007898, 36.544298],\n              [-78.007891, 36.544298],\n              [-77.99972, 36.544402],\n              [-77.999617, 36.544402],\n              [-77.995134, 36.544414],\n              [-77.984345, 36.544444],\n              [-77.983319, 36.544447],\n              [-77.982791, 36.544449],\n              [-77.981049, 36.544472],\n              [-77.975466, 36.544486],\n              [-77.970971, 36.544499],\n              [-77.969423, 36.544453],\n              [-77.964256, 36.544468],\n              [-77.964145, 36.544468],\n              [-77.955778, 36.544497],\n              [-77.942805, 36.544539],\n              [-77.942782, 36.544539],\n              [-77.931654, 36.544577],\n              [-77.930648, 36.54458],\n              [-77.930017, 36.544582],\n              [-77.924077, 36.544602],\n              [-77.922977, 36.544606],\n              [-77.922289, 36.544608],\n              [-77.920009, 36.544615],\n              [-77.918579, 36.544596],\n              [-77.916209, 36.544604],\n              [-77.913975, 36.544612],\n              [-77.913967, 36.544612],\n              [-77.907005, 36.544641],\n              [-77.906925, 36.544641],\n              [-77.906841, 36.544642],\n              [-77.906797, 36.544642],\n              [-77.906342, 36.544644],\n              [-77.906227, 36.544644],\n              [-77.905724, 36.544646],\n              [-77.900744, 36.544666],\n              [-77.899773, 36.54467],\n              [-77.897264, 36.544681],\n              [-77.89331, 36.544697],\n              [-77.89318, 36.544698],\n              [-77.893054, 36.544699],\n              [-77.891467, 36.544705],\n              [-77.887254, 36.544722],\n              [-77.886966, 36.544723],\n              [-77.886775, 36.544725],\n              [-77.882259, 36.544462],\n              [-77.882169, 36.544479],\n              [-77.882048, 36.544502],\n              [-77.8795, 36.544539],\n              [-77.878112, 36.54457],\n              [-77.877581, 36.544577],\n              [-77.875477, 36.544577],\n              [-77.875324, 36.544574],\n              [-77.875289, 36.544573],\n              [-77.875247, 36.544571],\n              [-77.874697, 36.544698],\n              [-77.874417, 36.544732],\n              [-77.873225, 36.544843],\n              [-77.871877, 36.544854],\n              [-77.871197, 36.544859],\n              [-77.870861, 36.544862],\n              [-77.870729, 36.544863],\n              [-77.870342, 36.544866],\n              [-77.868682, 36.544879],\n              [-77.86849, 36.544881],\n              [-77.867985, 36.544885],\n              [-77.862939, 36.544927],\n              [-77.862044, 36.54493],\n              [-77.860908, 36.544934],\n              [-77.859223, 36.544939],\n              [-77.858597, 36.544941],\n              [-77.858594, 36.544941],\n              [-77.854464, 36.544955],\n              [-77.852875, 36.54496],\n              [-77.852314, 36.544962],\n              [-77.851885, 36.544963],\n              [-77.850889, 36.544967],\n              [-77.850806, 36.544967],\n              [-77.849573, 36.544971],\n              [-77.847598, 36.544978],\n              [-77.846915, 36.544982],\n              [-77.833082, 36.545058],\n              [-77.832994, 36.545058],\n              [-77.832834, 36.545059],\n              [-77.829181, 36.545079],\n              [-77.828796, 36.545082],\n              [-77.827828, 36.545088],\n              [-77.827666, 36.545089],\n              [-77.819562, 36.545134],\n              [-77.818356, 36.545141],\n              [-77.818321, 36.545141],\n              [-77.815708, 36.545156],\n              [-77.811175, 36.545181],\n              [-77.809762, 36.545189],\n              [-77.802336, 36.54523],\n              [-77.795646, 36.545267],\n              [-77.784783, 36.545328],\n              [-77.784583, 36.545329],\n              [-77.783021, 36.545338],\n              [-77.780429, 36.545352],\n              [-77.776246, 36.545376],\n              [-77.772718, 36.545396],\n              [-77.772253, 36.545399],\n              [-77.767392, 36.545428],\n              [-77.767119, 36.545429],\n              [-77.759134, 36.545468],\n              [-77.757167, 36.545485],\n              [-77.756436, 36.545489],\n              [-77.749907, 36.545525],\n              [-77.749708, 36.545527],\n              [-77.749301, 36.545514],\n              [-77.745584, 36.545502],\n              [-77.738773, 36.54548],\n              [-77.737777, 36.54547],\n              [-77.736457, 36.545466],\n              [-77.736293, 36.545465],\n              [-77.732291, 36.54545],\n              [-77.722486, 36.545414],\n              [-77.719707, 36.545404],\n              [-77.712319, 36.545377],\n              [-77.710252, 36.54537],\n              [-77.705624, 36.545406],\n              [-77.696915, 36.545387],\n              [-77.695646, 36.545382],\n              [-77.694428, 36.54538],\n              [-77.694377, 36.54538],\n              [-77.692321, 36.545376],\n              [-77.689002, 36.545371],\n              [-77.686204, 36.545363],\n              [-77.684543, 36.545358],\n              [-77.680422, 36.545343],\n              [-77.677091, 36.54534],\n              [-77.677008, 36.54534],\n              [-77.676712, 36.545339],\n              [-77.675345, 36.545336],\n              [-77.672546, 36.545331],\n              [-77.672537, 36.545331],\n              [-77.672412, 36.545327],\n              [-77.672376, 36.545326],\n              [-77.663992, 36.545309],\n              [-77.649291, 36.545275],\n              [-77.649105, 36.545275],\n              [-77.646759, 36.545269],\n              [-77.645868, 36.545268],\n              [-77.645837, 36.545271],\n              [-77.645561, 36.545272],\n              [-77.641696, 36.545251],\n              [-77.640333, 36.545244],\n              [-77.624755, 36.545218],\n              [-77.619402, 36.545119],\n              [-77.619335, 36.545118],\n              [-77.619159, 36.545114],\n              [-77.618157, 36.545104],\n              [-77.614356, 36.54504],\n              [-77.612264, 36.545064],\n              [-77.60976, 36.54512],\n              [-77.609468, 36.545126],\n              [-77.6093, 36.54513],\n              [-77.609221, 36.545132],\n              [-77.608476, 36.545159],\n              [-77.608277, 36.545162],\n              [-77.607893, 36.545169],\n              [-77.603687, 36.54527],\n              [-77.601623, 36.54532],\n              [-77.598416, 36.54532],\n              [-77.597834, 36.545331],\n              [-77.597476, 36.545328],\n              [-77.59087, 36.545287],\n              [-77.587087, 36.545264],\n              [-77.576408, 36.545197],\n              [-77.576374, 36.545197],\n              [-77.576164, 36.545196],\n              [-77.576077, 36.545196],\n              [-77.57482, 36.545189],\n              [-77.573604, 36.545182],\n              [-77.570052, 36.545165],\n              [-77.568841, 36.545164],\n              [-77.568812, 36.545164],\n              [-77.559172, 36.54515],\n              [-77.556518, 36.545148],\n              [-77.553664, 36.545144],\n              [-77.548961, 36.545184],\n              [-77.544099, 36.545189],\n              [-77.536574, 36.545197],\n              [-77.533045, 36.5452],\n              [-77.530342, 36.545203],\n              [-77.530029, 36.545202],\n              [-77.528199, 36.545203],\n              [-77.52759, 36.545202],\n              [-77.517979, 36.545202],\n              [-77.510638, 36.545224],\n              [-77.50973, 36.54522],\n              [-77.504233, 36.545207],\n              [-77.499695, 36.545209],\n              [-77.498711, 36.545036],\n              [-77.498612, 36.545036],\n              [-77.497643, 36.545037],\n              [-77.49008, 36.545029],\n              [-77.482435, 36.54502],\n              [-77.479646, 36.544961],\n              [-77.478443, 36.544956],\n              [-77.474452, 36.54494],\n              [-77.466049, 36.544908],\n              [-77.463313, 36.544902],\n              [-77.459414, 36.544903],\n              [-77.458669, 36.544915],\n              [-77.458236, 36.544921],\n              [-77.45736, 36.544919],\n              [-77.449214, 36.544846],\n              [-77.448012, 36.544845],\n              [-77.446592, 36.544846],\n              [-77.431996, 36.544847],\n              [-77.412507, 36.544792],\n              [-77.412429, 36.544792],\n              [-77.401109, 36.54477],\n              [-77.400888, 36.544768],\n              [-77.40084, 36.544767],\n              [-77.400695, 36.544763],\n              [-77.392126, 36.544735],\n              [-77.374697, 36.544686],\n              [-77.372746, 36.544646],\n              [-77.372353, 36.54465],\n              [-77.367295, 36.544695],\n              [-77.341781, 36.544923],\n              [-77.337356, 36.544971],\n              [-77.33634, 36.544966],\n              [-77.331457, 36.544941],\n              [-77.329578, 36.544932],\n              [-77.327177, 36.544917],\n              [-77.325891, 36.544911],\n              [-77.321931, 36.544911],\n              [-77.3204, 36.544912],\n              [-77.319897, 36.54491],\n              [-77.318888, 36.544914],\n              [-77.305368, 36.544847],\n              [-77.300918, 36.544835],\n              [-77.296877, 36.544822],\n              [-77.294905, 36.544858],\n              [-77.28989, 36.544845],\n              [-77.283788, 36.544833],\n              [-77.279382, 36.544825],\n              [-77.26624, 36.54479],\n              [-77.266196, 36.544792],\n              [-77.253057, 36.544759],\n              [-77.252982, 36.544759],\n              [-77.251797, 36.544756],\n              [-77.24974, 36.544752],\n              [-77.24841, 36.544736],\n              [-77.247877, 36.54473],\n              [-77.24435, 36.544688],\n              [-77.236204, 36.544696],\n              [-77.228605, 36.544658],\n              [-77.226184, 36.544659],\n              [-77.22154, 36.544655],\n              [-77.219835, 36.544654],\n              [-77.214997, 36.544631],\n              [-77.212786, 36.544621],\n              [-77.210206, 36.54461],\n              [-77.204972, 36.544608],\n              [-77.20355, 36.54476],\n              [-77.198605, 36.545289],\n              [-77.191577, 36.546044],\n              [-77.191497, 36.546049],\n              [-77.190111, 36.546177],\n              [-77.183985, 36.546561],\n              [-77.182413, 36.546606],\n              [-77.169662, 36.547322],\n              [-77.169336, 36.547259],\n              [-77.16883, 36.547162],\n              [-77.164502, 36.546337],\n              [-77.15941, 36.545368],\n              [-77.152663, 36.544085],\n              [-77.143984, 36.544055],\n              [-77.138802, 36.544038],\n              [-77.136269, 36.544029],\n              [-77.128672, 36.544005],\n              [-77.12614, 36.543997],\n              [-77.125874, 36.543996],\n              [-77.125079, 36.543993],\n              [-77.124814, 36.543993],\n              [-77.124789, 36.543994],\n              [-77.124713, 36.543996],\n              [-77.124689, 36.543998],\n              [-77.124689, 36.544073],\n              [-77.124454, 36.544081],\n              [-77.123749, 36.544106],\n              [-77.123515, 36.544115],\n              [-77.123384, 36.544114],\n              [-77.122862, 36.544114],\n              [-77.12026, 36.544172],\n              [-77.112458, 36.544348],\n              [-77.109857, 36.544407],\n              [-77.108492, 36.544437],\n              [-77.104399, 36.54453],\n              [-77.103035, 36.544561],\n              [-77.10144, 36.544584],\n              [-77.09891, 36.544621],\n              [-77.096658, 36.544628],\n              [-77.095064, 36.544633],\n              [-77.09146, 36.544623],\n              [-77.080651, 36.544594],\n              [-77.077048, 36.544585],\n              [-77.075489, 36.544584],\n              [-77.070814, 36.544581],\n              [-77.069256, 36.544581],\n              [-77.060875, 36.544511],\n              [-77.049736, 36.54442],\n              [-77.035732, 36.544366],\n              [-77.034646, 36.544362],\n              [-77.027351, 36.544334],\n              [-77.021916, 36.544314],\n              [-77.01979, 36.544305],\n              [-77.013414, 36.544281],\n              [-77.011289, 36.544273],\n              [-77.010468, 36.54427],\n              [-77.008005, 36.544263],\n              [-77.007184, 36.544261],\n              [-77.00656, 36.544253],\n              [-77.004688, 36.54423],\n              [-77.00411, 36.544224],\n              [-77.004065, 36.544223],\n              [-77.001443, 36.544137],\n              [-76.999687, 36.544081],\n              [-76.993576, 36.544066],\n              [-76.990954, 36.54406],\n              [-76.98664, 36.544049],\n              [-76.9737, 36.544017],\n              [-76.969387, 36.544007],\n              [-76.969031, 36.544005],\n              [-76.967964, 36.543999],\n              [-76.967609, 36.543998],\n              [-76.966889, 36.543958],\n              [-76.966173, 36.543983],\n              [-76.964025, 36.544062],\n              [-76.96331, 36.544088],\n              [-76.958451, 36.544062],\n              [-76.943875, 36.543985],\n              [-76.939017, 36.54396],\n              [-76.922735, 36.543886],\n              [-76.922693, 36.543886],\n              [-76.921426, 36.543879],\n              [-76.921246, 36.543878],\n              [-76.921233, 36.543877],\n              [-76.920493, 36.543875],\n              [-76.920113, 36.543872],\n              [-76.91974, 36.543871],\n              [-76.919466, 36.54387],\n              [-76.919115, 36.54386],\n              [-76.917242, 36.543808],\n              [-76.916794, 36.543796],\n              [-76.916618, 36.543802],\n              [-76.916447, 36.543808],\n              [-76.916003, 36.543825],\n              [-76.916125, 36.5439],\n              [-76.916173, 36.543931],\n              [-76.9162, 36.543947],\n              [-76.916375, 36.544091],\n              [-76.916666, 36.544453],\n              [-76.917167, 36.545241],\n              [-76.917319, 36.546054],\n              [-76.917201, 36.547053],\n              [-76.917169, 36.547169],\n              [-76.916974, 36.547867],\n              [-76.916871, 36.548271],\n              [-76.916776, 36.54864],\n              [-76.916767, 36.549059],\n              [-76.916869, 36.549421],\n              [-76.917019, 36.550202],\n              [-76.91699, 36.55075],\n              [-76.916967, 36.550798],\n              [-76.916762, 36.551217],\n              [-76.916529, 36.551455],\n              [-76.915899, 36.5521],\n              [-76.915874, 36.5521],\n              [-76.915564, 36.552096],\n              [-76.915432, 36.552094],\n              [-76.911849, 36.55205],\n              [-76.904118, 36.551956],\n              [-76.902138, 36.551931],\n              [-76.898342, 36.551885],\n              [-76.897935, 36.55188],\n              [-76.897898, 36.55188],\n              [-76.89412, 36.551835],\n              [-76.891854, 36.551807],\n              [-76.889018, 36.551773],\n              [-76.886479, 36.551742],\n              [-76.876674, 36.551625],\n              [-76.876065, 36.551617],\n              [-76.874683, 36.551601],\n              [-76.870958, 36.551446],\n              [-76.865839, 36.551368],\n              [-76.862721, 36.551328],\n              [-76.856008, 36.551242],\n              [-76.85582, 36.55124],\n              [-76.850744, 36.551176],\n              [-76.844715, 36.551099],\n              [-76.842432, 36.55107],\n              [-76.839341, 36.551029],\n              [-76.826139, 36.550871],\n              [-76.823101, 36.550823],\n              [-76.821965, 36.550806],\n              [-76.820062, 36.550782],\n              [-76.819736, 36.550778],\n              [-76.816464, 36.550734],\n              [-76.816296, 36.550732],\n              [-76.80708, 36.550613],\n              [-76.802633, 36.550557],\n              [-76.802153, 36.550559],\n              [-76.795955, 36.550565],\n              [-76.795811, 36.550565],\n              [-76.795073, 36.55057],\n              [-76.790963, 36.550599],\n              [-76.781337, 36.550666],\n              [-76.781297, 36.550666],\n              [-76.780969, 36.55073],\n              [-76.780406, 36.550724],\n              [-76.774077, 36.550655],\n              [-76.773819, 36.550652],\n              [-76.766589, 36.550573],\n              [-76.759111, 36.550491],\n              [-76.755293, 36.550449],\n              [-76.755079, 36.550447],\n              [-76.74968, 36.550388],\n              [-76.738331, 36.550992],\n              [-76.736727, 36.550987],\n              [-76.735517, 36.550985],\n              [-76.733995, 36.55098],\n              [-76.732503, 36.550976],\n              [-76.732292, 36.550975],\n              [-76.727802, 36.550961],\n              [-76.727707, 36.550961],\n              [-76.725889, 36.550956],\n              [-76.718281, 36.550933],\n              [-76.715116, 36.550924],\n              [-76.714816, 36.550923],\n              [-76.698812, 36.550875],\n              [-76.69683, 36.550869],\n              [-76.695024, 36.550864],\n              [-76.694754, 36.550863],\n              [-76.694752, 36.550863],\n              [-76.686784, 36.550854],\n              [-76.683688, 36.550845],\n              [-76.683552, 36.550845],\n              [-76.683266, 36.550844],\n              [-76.670854, 36.55081],\n              [-76.670598, 36.550809],\n              [-76.670443, 36.550809],\n              [-76.66538, 36.550794],\n              [-76.659828, 36.550779],\n              [-76.65942, 36.550778],\n              [-76.658194, 36.550775],\n              [-76.658076, 36.550775],\n              [-76.655561, 36.550768],\n              [-76.655513, 36.550768],\n              [-76.651293, 36.550753],\n              [-76.649912, 36.55075],\n              [-76.640606, 36.550724],\n              [-76.634752, 36.550708],\n              [-76.632866, 36.550703],\n              [-76.632742, 36.550703],\n              [-76.632499, 36.550702],\n              [-76.624628, 36.550679],\n              [-76.617418, 36.550779],\n              [-76.617327, 36.550779],\n              [-76.601998, 36.550752],\n              [-76.600605, 36.550749],\n              [-76.575527, 36.550751],\n              [-76.575498, 36.550751],\n              [-76.561485, 36.55043],\n              [-76.561369, 36.550427],\n              [-76.558074, 36.550351],\n              [-76.558047, 36.550352],\n              [-76.550276, 36.550413],\n              [-76.541601, 36.550482],\n              [-76.491499, 36.550648],\n              [-76.467698, 36.550639],\n              [-76.465277, 36.550638],\n              [-76.446674, 36.550631],\n              [-76.44654, 36.550631],\n              [-76.42643, 36.550623],\n              [-76.426274, 36.550623],\n              [-76.408466, 36.550617],\n              [-76.408282, 36.550617],\n              [-76.379331, 36.550606],\n              [-76.379093, 36.550606],\n              [-76.377762, 36.550605],\n              [-76.37729, 36.550605],\n              [-76.376636, 36.550603],\n              [-76.376438, 36.550603],\n              [-76.376266, 36.550605],\n              [-76.350837, 36.550595],\n              [-76.313227, 36.550581],\n              [-76.311565, 36.550577],\n              [-76.309598, 36.550572],\n              [-76.29297, 36.550558],\n              [-76.288879, 36.550558],\n              [-76.288608, 36.550559],\n              [-76.287063, 36.550558],\n              [-76.244381, 36.550558],\n              [-76.233334, 36.550555],\n              [-76.233222, 36.550555],\n              [-76.231274, 36.550559],\n              [-76.229811, 36.550559],\n              [-76.215128, 36.550557],\n              [-76.205046, 36.550557],\n              [-76.202679, 36.550558],\n              [-76.200475, 36.550559],\n              [-76.193148, 36.55056],\n              [-76.192693, 36.55056],\n              [-76.192555, 36.550559],\n              [-76.192547, 36.550558],\n              [-76.19067, 36.550457],\n              [-76.190622, 36.550454],\n              [-76.164699, 36.550526],\n              [-76.152157, 36.550559],\n              [-76.149257, 36.550559],\n              [-76.138649, 36.550656],\n              [-76.138357, 36.550659],\n              [-76.131156, 36.550559],\n              [-76.122356, 36.550559],\n              [-76.116666, 36.550595],\n              [-76.114474, 36.550618],\n              [-76.114467, 36.550619],\n              [-76.114424, 36.550619],\n              [-76.114315, 36.55062],\n              [-76.114274, 36.55062],\n              [-76.113984, 36.550623],\n              [-76.111752, 36.550639],\n              [-76.105705, 36.550611],\n              [-76.105643, 36.550611],\n              [-76.105636, 36.55061],\n              [-76.105569, 36.55061],\n              [-76.10488, 36.550606],\n              [-76.10167, 36.550592],\n              [-76.094446, 36.550556],\n              [-76.090243, 36.550556],\n              [-76.08201, 36.550555],\n              [-76.075733, 36.550554],\n              [-76.075719, 36.550554],\n              [-76.071593, 36.550555],\n              [-76.071585, 36.550555],\n              [-76.059454, 36.550558],\n              [-76.051538, 36.55056],\n              [-76.050953, 36.55056],\n              [-76.046483, 36.550588],\n              [-76.037997, 36.55064],\n              [-76.036615, 36.550649],\n              [-76.034753, 36.55066],\n              [-76.026752, 36.55056],\n              [-76.013352, 36.55056],\n              [-76.010854, 36.550535],\n              [-76.010182, 36.550528],\n              [-76.007602, 36.550499],\n              [-76.007573, 36.550499],\n              [-76.007429, 36.550498],\n              [-76.007156, 36.550497],\n              [-76.007101, 36.550497],\n              [-76.006752, 36.550491],\n              [-76.006686, 36.55049],\n              [-76.006485, 36.550488],\n              [-76.006329, 36.550486],\n              [-76.005467, 36.550478],\n              [-76.00515, 36.550475],\n              [-76.004012, 36.550468],\n              [-76.003967, 36.550467],\n              [-76.003507, 36.55046],\n              [-75.996951, 36.55046],\n              [-75.983851, 36.55056],\n              [-75.96341, 36.550463],\n              [-75.96285, 36.55046],\n              [-75.95765, 36.55056],\n              [-75.95715, 36.55046],\n              [-75.95695, 36.55046],\n              [-75.95655, 36.55056],\n              [-75.952849, 36.55056],\n              [-75.92804, 36.550755],\n              [-75.92798, 36.550754],\n              [-75.922048, 36.550661],\n              [-75.903447, 36.550661],\n              [-75.901847, 36.550861],\n              [-75.901064, 36.550851],\n              [-75.894838, 36.55077],\n              [-75.894147, 36.550761],\n              [-75.893247, 36.550661],\n              [-75.89201, 36.550756],\n              [-75.891947, 36.550761],\n              [-75.867046, 36.550761],\n              [-75.854461, 36.550929],\n              [-75.797499, 36.550923],\n              [-75.800437, 36.562747],\n              [-75.819827, 36.62516],\n              [-75.82362, 36.632302],\n              [-75.82976, 36.644639],\n              [-75.83404, 36.654579],\n              [-75.843993, 36.67978],\n              [-75.849816, 36.690791],\n              [-75.862121, 36.714058],\n              [-75.862939, 36.716033],\n              [-75.870467, 36.734214],\n              [-75.874649, 36.744312],\n              [-75.877285, 36.754014],\n              [-75.878945, 36.760124],\n              [-75.879182, 36.760997],\n              [-75.887375, 36.791155],\n              [-75.901041, 36.841458],\n              [-75.905265, 36.857005],\n              [-75.909332, 36.871977],\n              [-75.914019, 36.889227],\n              [-75.926852, 36.936464],\n              [-75.926849, 36.936469],\n              [-75.928309, 36.938186],\n              [-75.909493, 36.990715],\n              [-75.905751, 37.000151],\n              [-75.889678, 37.054522],\n              [-75.874653, 37.067568],\n              [-75.869411, 37.073958],\n              [-75.854549, 37.079356],\n              [-75.835633, 37.095013],\n              [-75.827527, 37.10527],\n              [-75.824149, 37.110129],\n              [-75.805909, 37.116068],\n              [-75.797037, 37.125152],\n              [-75.781589, 37.137123],\n              [-75.766051, 37.154939],\n              [-75.749645, 37.175104],\n              [-75.744641, 37.182356],\n              [-75.742833, 37.192914],\n              [-75.740121, 37.196993],\n              [-75.729273, 37.216908],\n              [-75.728369, 37.235624],\n              [-75.732286, 37.245701],\n              [-75.727823, 37.250148],\n              [-75.726987, 37.251477],\n              [-75.721861, 37.259649],\n              [-75.718846, 37.264449],\n              [-75.718394, 37.265174],\n              [-75.715379, 37.269979],\n              [-75.715517, 37.275694],\n              [-75.691848, 37.300166],\n              [-75.678966, 37.312584],\n              [-75.656592, 37.323921],\n              [-75.644388, 37.342277],\n              [-75.64032, 37.363873],\n              [-75.643458, 37.372872],\n              [-75.624647, 37.396959],\n              [-75.618255, 37.402271],\n              [-75.604028, 37.422032],\n              [-75.603961, 37.432598],\n              [-75.597443, 37.450996],\n              [-75.596048, 37.453141],\n              [-75.596046, 37.461195],\n              [-75.595644, 37.465592],\n              [-75.592501, 37.470906],\n              [-75.589112, 37.477865],\n              [-75.583238, 37.486511],\n              [-75.579641, 37.494645],\n              [-75.574653, 37.500143],\n              [-75.555063, 37.526685],\n              [-75.553462, 37.527304],\n              [-75.552878, 37.528016],\n              [-75.552247, 37.528426],\n              [-75.551787, 37.528867],\n              [-75.551075, 37.529547],\n              [-75.550192, 37.530059],\n              [-75.548769, 37.531519],\n              [-75.547719, 37.532234],\n              [-75.546922, 37.532914],\n              [-75.545916, 37.533798],\n              [-75.54491, 37.534681],\n              [-75.544284, 37.535528],\n              [-75.543404, 37.536344],\n              [-75.542482, 37.537126],\n              [-75.541936, 37.537568],\n              [-75.54131, 37.538348],\n              [-75.540808, 37.538958],\n              [-75.540056, 37.539907],\n              [-75.53943, 37.54072],\n              [-75.538345, 37.542143],\n              [-75.537843, 37.542686],\n              [-75.537258, 37.543432],\n              [-75.536633, 37.544447],\n              [-75.535924, 37.545396],\n              [-75.535298, 37.546209],\n              [-75.534591, 37.547427],\n              [-75.533968, 37.548611],\n              [-75.533595, 37.549388],\n              [-75.532971, 37.550471],\n              [-75.532639, 37.551147],\n              [-75.532226, 37.552127],\n              [-75.531771, 37.553174],\n              [-75.531147, 37.554257],\n              [-75.530691, 37.555203],\n              [-75.530319, 37.556014],\n              [-75.529903, 37.556725],\n              [-75.5297, 37.557669],\n              [-75.529328, 37.55848],\n              [-75.529039, 37.559257],\n              [-75.528835, 37.56],\n              [-75.528713, 37.560506],\n              [-75.528425, 37.561316],\n              [-75.528347, 37.561956],\n              [-75.528189, 37.563135],\n              [-75.528069, 37.563877],\n              [-75.52795, 37.564619],\n              [-75.527788, 37.565394],\n              [-75.527586, 37.566373],\n              [-75.52734, 37.567183],\n              [-75.527224, 37.56816],\n              [-75.527189, 37.568901],\n              [-75.527027, 37.569643],\n              [-75.526915, 37.571092],\n              [-75.526924, 37.572035],\n              [-75.526931, 37.572775],\n              [-75.526854, 37.573483],\n              [-75.526945, 37.574223],\n              [-75.526952, 37.57493],\n              [-75.526917, 37.575671],\n              [-75.527097, 37.576713],\n              [-75.527063, 37.577555],\n              [-75.527282, 37.578328],\n              [-75.527418, 37.579202],\n              [-75.527469, 37.580111],\n              [-75.527603, 37.580783],\n              [-75.52778, 37.581623],\n              [-75.527998, 37.582295],\n              [-75.528058, 37.582763],\n              [-75.528136, 37.583371],\n              [-75.528447, 37.584884],\n              [-75.528878, 37.585621],\n              [-75.529143, 37.586797],\n              [-75.52932, 37.587537],\n              [-75.529751, 37.588375],\n              [-75.530101, 37.589448],\n              [-75.53075, 37.590925],\n              [-75.531098, 37.591831],\n              [-75.531742, 37.592768],\n              [-75.532044, 37.593406],\n              [-75.532475, 37.594176],\n              [-75.532947, 37.594812],\n              [-75.53325, 37.595449],\n              [-75.533893, 37.59632],\n              [-75.534282, 37.597057],\n              [-75.534711, 37.59766],\n              [-75.535054, 37.598061],\n              [-75.535355, 37.598563],\n              [-75.535742, 37.599133],\n              [-75.536214, 37.599802],\n              [-75.536684, 37.600303],\n              [-75.537325, 37.600837],\n              [-75.537501, 37.601509],\n              [-75.538227, 37.602142],\n              [-75.538734, 37.60266],\n              [-75.538783, 37.60271],\n              [-75.539254, 37.603312],\n              [-75.539896, 37.603947],\n              [-75.540668, 37.604917],\n              [-75.541781, 37.606153],\n              [-75.534649, 37.62514],\n              [-75.533185, 37.629892],\n              [-75.532055, 37.630706],\n              [-75.530884, 37.631721],\n              [-75.529632, 37.632939],\n              [-75.528545, 37.633953],\n              [-75.527713, 37.634933],\n              [-75.526501, 37.636116],\n              [-75.525377, 37.637467],\n              [-75.524174, 37.639289],\n              [-75.52243, 37.641886],\n              [-75.520895, 37.644313],\n              [-75.520235, 37.645661],\n              [-75.519698, 37.646739],\n              [-75.518998, 37.648289],\n              [-75.518462, 37.649434],\n              [-75.518137, 37.650611],\n              [-75.517645, 37.651891],\n              [-75.517197, 37.653338],\n              [-75.516927, 37.654841],\n              [-75.516916, 37.654888],\n              [-75.516266, 37.657038],\n              [-75.515979, 37.659341],\n              [-75.515719, 37.660972],\n              [-75.515616, 37.662988],\n              [-75.515547, 37.664366],\n              [-75.515439, 37.666113],\n              [-75.515579, 37.667322],\n              [-75.515638, 37.668799],\n              [-75.515694, 37.67004],\n              [-75.515964, 37.671546],\n              [-75.51522, 37.673134],\n              [-75.514309, 37.674681],\n              [-75.513691, 37.676234],\n              [-75.51299, 37.677544],\n              [-75.512163, 37.679368],\n              [-75.51088, 37.681863],\n              [-75.509933, 37.683467],\n              [-75.509228, 37.685167],\n              [-75.50816, 37.68741],\n              [-75.507748, 37.688662],\n              [-75.50675, 37.689635],\n              [-75.505497, 37.691405],\n              [-75.504158, 37.693194],\n              [-75.50325, 37.694326],\n              [-75.502208, 37.695987],\n              [-75.50146, 37.697376],\n              [-75.500675, 37.69872],\n              [-75.499647, 37.700739],\n              [-75.499402, 37.701654],\n              [-75.498735, 37.703041],\n              [-75.49832, 37.703677],\n              [-75.497903, 37.7048],\n              [-75.497365, 37.70625],\n              [-75.497118, 37.707053],\n              [-75.496153, 37.708102],\n              [-75.495566, 37.708949],\n              [-75.49515, 37.709861],\n              [-75.494691, 37.710604],\n              [-75.494101, 37.711347],\n              [-75.493603, 37.712156],\n              [-75.493015, 37.712899],\n              [-75.492555, 37.713609],\n              [-75.492094, 37.714251],\n              [-75.491594, 37.715264],\n              [-75.490925, 37.716278],\n              [-75.490341, 37.71746],\n              [-75.489883, 37.718338],\n              [-75.489425, 37.71935],\n              [-75.48897, 37.720599],\n              [-75.488596, 37.721476],\n              [-75.48814, 37.722451],\n              [-75.487851, 37.723467],\n              [-75.487227, 37.724885],\n              [-75.486468, 37.725428],\n              [-75.485963, 37.725902],\n              [-75.485203, 37.726377],\n              [-75.484571, 37.72692],\n              [-75.483813, 37.727563],\n              [-75.483013, 37.728275],\n              [-75.482382, 37.728918],\n              [-75.481625, 37.729696],\n              [-75.480995, 37.73044],\n              [-75.480196, 37.73132],\n              [-75.479061, 37.732505],\n              [-75.478346, 37.733249],\n              [-75.477928, 37.733992],\n              [-75.477552, 37.734634],\n              [-75.477049, 37.735378],\n              [-75.476376, 37.736055],\n              [-75.475956, 37.736562],\n              [-75.475623, 37.737305],\n              [-75.475204, 37.737879],\n              [-75.474954, 37.738419],\n              [-75.474409, 37.739197],\n              [-75.474075, 37.739838],\n              [-75.473407, 37.741054],\n              [-75.473073, 37.74173],\n              [-75.472867, 37.742371],\n              [-75.472448, 37.74308],\n              [-75.472198, 37.743586],\n              [-75.471908, 37.744464],\n              [-75.471617, 37.745104],\n              [-75.471283, 37.745712],\n              [-75.471118, 37.746218],\n              [-75.470826, 37.746859],\n              [-75.470495, 37.747737],\n              [-75.470347, 37.748196],\n              [-75.470288, 37.748378],\n              [-75.470123, 37.748918],\n              [-75.470114, 37.748929],\n              [-75.470068, 37.750133],\n              [-75.469072, 37.752834],\n              [-75.467281, 37.756282],\n              [-75.464768, 37.759671],\n              [-75.46341, 37.763994],\n              [-75.461669, 37.768259],\n              [-75.460935, 37.771364],\n              [-75.444906, 37.789525],\n              [-75.417075, 37.821058],\n              [-75.409287, 37.820927],\n              [-75.40501, 37.81854],\n              [-75.399288, 37.815733],\n              [-75.39369, 37.813524],\n              [-75.386953, 37.811732],\n              [-75.380176, 37.810412],\n              [-75.374645, 37.810328],\n              [-75.366859, 37.809797],\n              [-75.360127, 37.810194],\n              [-75.34947, 37.81199],\n              [-75.337981, 37.81524],\n              [-75.327912, 37.820677],\n              [-75.320966, 37.824987],\n              [-75.312211, 37.83062],\n              [-75.303134, 37.838177],\n              [-75.296083, 37.845678],\n              [-75.296006, 37.84576],\n              [-75.291242, 37.852627],\n              [-75.288071, 37.857632],\n              [-75.285058, 37.86159],\n              [-75.281624, 37.865853],\n              [-75.278737, 37.869676],\n              [-75.274983, 37.875132],\n              [-75.270446, 37.88261],\n              [-75.265918, 37.891134],\n              [-75.263058, 37.897096],\n              [-75.259193, 37.90434],\n              [-75.256814, 37.907879],\n              [-75.25306, 37.913744],\n              [-75.249638, 37.918636],\n              [-75.24176, 37.93154],\n              [-75.238075, 37.935398],\n              [-75.188005, 38.000129],\n              [-75.17708, 38.013428],\n              [-75.166437, 38.027842],\n              [-75.168351, 38.027942],\n              [-75.223764, 38.027358],\n              [-75.240399, 38.027071],\n              [-75.242125, 38.027042],\n              [-75.24244, 38.027037],\n              [-75.242463, 38.027036],\n              [-75.242471, 38.027036],\n              [-75.249611, 38.026723],\n              [-75.250374, 38.026659],\n              [-75.250406, 38.026656],\n              [-75.250744, 38.02663],\n              [-75.251113, 38.0266],\n              [-75.252028, 38.026526],\n              [-75.252104, 38.02652],\n              [-75.252137, 38.026517],\n              [-75.252144, 38.026516],\n              [-75.252166, 38.026514],\n              [-75.252181, 38.026513],\n              [-75.252713, 38.026469],\n              [-75.254405, 38.026334],\n              [-75.254592, 38.026319],\n              [-75.254712, 38.026309],\n              [-75.255047, 38.026282],\n              [-75.255236, 38.026267],\n              [-75.255268, 38.026265],\n              [-75.255278, 38.026264],\n              [-75.255304, 38.026262],\n              [-75.255913, 38.026214],\n              [-75.256073, 38.0262],\n              [-75.25608, 38.026199],\n              [-75.256097, 38.026198],\n              [-75.256879, 38.026098],\n              [-75.260654, 38.02577],\n              [-75.260663, 38.025769],\n              [-75.26069, 38.025767],\n              [-75.262024, 38.025664],\n              [-75.262108, 38.025657],\n              [-75.262484, 38.025624],\n              [-75.262704, 38.025605],\n              [-75.263327, 38.02555],\n              [-75.263364, 38.025547],\n              [-75.263409, 38.025543],\n              [-75.263431, 38.025541],\n              [-75.263446, 38.025539],\n              [-75.263456, 38.025538],\n              [-75.263506, 38.025534],\n              [-75.263799, 38.025508],\n              [-75.263848, 38.025504],\n              [-75.267209, 38.025214],\n              [-75.270619, 38.024921],\n              [-75.270715, 38.024913],\n              [-75.270952, 38.02489],\n              [-75.271019, 38.024884],\n              [-75.27269, 38.024742],\n              [-75.274362, 38.0246],\n              [-75.283357, 38.02378],\n              [-75.321184, 38.020346],\n              [-75.323159, 38.020163],\n              [-75.325364, 38.019965],\n              [-75.374643, 38.015467],\n              [-75.375127, 38.015422],\n              [-75.377092, 38.015244],\n              [-75.377175, 38.015236],\n              [-75.377217, 38.015232],\n              [-75.377325, 38.015222],\n              [-75.377855, 38.015173],\n              [-75.378552, 38.015103],\n              [-75.378563, 38.015102],\n              [-75.378594, 38.015099],\n              [-75.378712, 38.015087],\n              [-75.379732, 38.014984],\n              [-75.379832, 38.014974],\n              [-75.380216, 38.014944],\n              [-75.380564, 38.014916],\n              [-75.380757, 38.014899],\n              [-75.381038, 38.014874],\n              [-75.38132, 38.014849],\n              [-75.381576, 38.014827],\n              [-75.381641, 38.014822],\n              [-75.381662, 38.01482],\n              [-75.381696, 38.014817],\n              [-75.381716, 38.014815],\n              [-75.381748, 38.014812],\n              [-75.382014, 38.014788],\n              [-75.382281, 38.014765],\n              [-75.382334, 38.01476],\n              [-75.382364, 38.014757],\n              [-75.382616, 38.014736],\n              [-75.382744, 38.014725],\n              [-75.382871, 38.014714],\n              [-75.383248, 38.014681],\n              [-75.383626, 38.014648],\n              [-75.386134, 38.014431],\n              [-75.386205, 38.014425],\n              [-75.38622, 38.014424],\n              [-75.386292, 38.014418],\n              [-75.386312, 38.014416],\n              [-75.388498, 38.01422],\n              [-75.389902, 38.014083],\n              [-75.392503, 38.013839],\n              [-75.393624, 38.013785],\n              [-75.393838, 38.013751],\n              [-75.394174, 38.013701],\n              [-75.396059, 38.013533],\n              [-75.396714, 38.013476],\n              [-75.396981, 38.013446],\n              [-75.397766, 38.013071],\n              [-75.39788, 38.013109],\n              [-75.397938, 38.013128],\n              [-75.398014, 38.013149],\n              [-75.398142, 38.013184],\n              [-75.398152, 38.013187],\n              [-75.398222, 38.013201],\n              [-75.398316, 38.01322],\n              [-75.398389, 38.013235],\n              [-75.39846, 38.013261],\n              [-75.3985, 38.013266],\n              [-75.39863, 38.013263],\n              [-75.398996, 38.013251],\n              [-75.399399, 38.013228],\n              [-75.399896, 38.013194],\n              [-75.400369, 38.013163],\n              [-75.400873, 38.013121],\n              [-75.401391, 38.013083],\n              [-75.401917, 38.013045],\n              [-75.402443, 38.013003],\n              [-75.402986, 38.012961],\n              [-75.403528, 38.012919],\n              [-75.404069, 38.012881],\n              [-75.404619, 38.012839],\n              [-75.405145, 38.01279],\n              [-75.405656, 38.012748],\n              [-75.406084, 38.012709],\n              [-75.406609, 38.012675],\n              [-75.410088, 38.012385],\n              [-75.410852, 38.01232],\n              [-75.411303, 38.01228],\n              [-75.411497, 38.012263],\n              [-75.415308, 38.011952],\n              [-75.41649, 38.011855],\n              [-75.419626, 38.011592],\n              [-75.41989, 38.011569],\n              [-75.419947, 38.011565],\n              [-75.422059, 38.011398],\n              [-75.422546, 38.011355],\n              [-75.425457, 38.011103],\n              [-75.42569, 38.011084],\n              [-75.426332, 38.011031],\n              [-75.426965, 38.010989],\n              [-75.42753, 38.010947],\n              [-75.42769, 38.010936],\n              [-75.428018, 38.010897],\n              [-75.428621, 38.010848],\n              [-75.428734, 38.010844],\n              [-75.428803, 38.010855],\n              [-75.428873, 38.010878],\n              [-75.428887, 38.010897],\n              [-75.429078, 38.010897],\n              [-75.429414, 38.010878],\n              [-75.430055, 38.01084],\n              [-75.430696, 38.010806],\n              [-75.431932, 38.010699],\n              [-75.43255, 38.010646],\n              [-75.433739, 38.010543],\n              [-75.434312, 38.010493],\n              [-75.434869, 38.010447],\n              [-75.435402, 38.010398],\n              [-75.435655, 38.010382],\n              [-75.435799, 38.010375],\n              [-75.43596, 38.010375],\n              [-75.436283, 38.0103],\n              [-75.43667, 38.010214],\n              [-75.438234, 38.010096],\n              [-75.438304, 38.010094],\n              [-75.438722, 38.010077],\n              [-75.439329, 38.010032],\n              [-75.440385, 38.009974],\n              [-75.442026, 38.009883],\n              [-75.448681, 38.009337],\n              [-75.448846, 38.009323],\n              [-75.448864, 38.009322],\n              [-75.448982, 38.009312],\n              [-75.449043, 38.009307],\n              [-75.449052, 38.009307],\n              [-75.449063, 38.009306],\n              [-75.449086, 38.009304],\n              [-75.449119, 38.009301],\n              [-75.449365, 38.009281],\n              [-75.44941, 38.009277],\n              [-75.457642, 38.008614],\n              [-75.45965, 38.008437],\n              [-75.461328, 38.008284],\n              [-75.462282, 38.008204],\n              [-75.467339, 38.007754],\n              [-75.468117, 38.007705],\n              [-75.46982, 38.007586],\n              [-75.474084, 38.007201],\n              [-75.479571, 38.006724],\n              [-75.482988, 38.006427],\n              [-75.486229, 38.00611],\n              [-75.488149, 38.005944],\n              [-75.488663, 38.0059],\n              [-75.490121, 38.00579],\n              [-75.493057, 38.005549],\n              [-75.495645, 38.005336],\n              [-75.499506, 38.005034],\n              [-75.499972, 38.004993],\n              [-75.502762, 38.004748],\n              [-75.502772, 38.004747],\n              [-75.502785, 38.004746],\n              [-75.504404, 38.004607],\n              [-75.508595, 38.004237],\n              [-75.508638, 38.004233],\n              [-75.509403, 38.00417],\n              [-75.510088, 38.004113],\n              [-75.51014, 38.004109],\n              [-75.510153, 38.004107],\n              [-75.510166, 38.004106],\n              [-75.510313, 38.004094],\n              [-75.515494, 38.003662],\n              [-75.517401, 38.003505],\n              [-75.519403, 38.003341],\n              [-75.522014, 38.003121],\n              [-75.524042, 38.002951],\n              [-75.530298, 38.002421],\n              [-75.530321, 38.002419],\n              [-75.530521, 38.002402],\n              [-75.530698, 38.002385],\n              [-75.530712, 38.002384],\n              [-75.530727, 38.002383],\n              [-75.530766, 38.002379],\n              [-75.535869, 38.001801],\n              [-75.538302, 38.001526],\n              [-75.538915, 38.001457],\n              [-75.539944, 38.001345],\n              [-75.540001, 38.001344],\n              [-75.540084, 38.001347],\n              [-75.541741, 38.001372],\n              [-75.541813, 38.00137],\n              [-75.541939, 38.001366],\n              [-75.541953, 38.001366],\n              [-75.543231, 38.001274],\n              [-75.545061, 38.001143],\n              [-75.545133, 38.001136],\n              [-75.548349, 38.000842],\n              [-75.548399, 38.000838],\n              [-75.552466, 38.000474],\n              [-75.552473, 38.000473],\n              [-75.552496, 38.000471],\n              [-75.552762, 38.000447],\n              [-75.556316, 38.000129],\n              [-75.556881, 38.000097],\n              [-75.556888, 38.000097],\n              [-75.556903, 38.000096],\n              [-75.556956, 38.000093],\n              [-75.557024, 38.000089],\n              [-75.557312, 38.000073],\n              [-75.559549, 37.999945],\n              [-75.563263, 37.999601],\n              [-75.56327, 37.9996],\n              [-75.563281, 37.999599],\n              [-75.563313, 37.999596],\n              [-75.563453, 37.999583],\n              [-75.563522, 37.999577],\n              [-75.563852, 37.999547],\n              [-75.564053, 37.999528],\n              [-75.564152, 37.999519],\n              [-75.564171, 37.999517],\n              [-75.564223, 37.999513],\n              [-75.564274, 37.999508],\n              [-75.565099, 37.999433],\n              [-75.566362, 37.999316],\n              [-75.566957, 37.999266],\n              [-75.567705, 37.999194],\n              [-75.567783, 37.999186],\n              [-75.56793, 37.999172],\n              [-75.568069, 37.999158],\n              [-75.568188, 37.999146],\n              [-75.568234, 37.999141],\n              [-75.568308, 37.999134],\n              [-75.568315, 37.999133],\n              [-75.568339, 37.999131],\n              [-75.568352, 37.99913],\n              [-75.568365, 37.999128],\n              [-75.568643, 37.999102],\n              [-75.570361, 37.998971],\n              [-75.57058, 37.998954],\n              [-75.572015, 37.998858],\n              [-75.575109, 37.998594],\n              [-75.58133, 37.998011],\n              [-75.581385, 37.998006],\n              [-75.581663, 37.997983],\n              [-75.581805, 37.997971],\n              [-75.58198, 37.997957],\n              [-75.582695, 37.997899],\n              [-75.582709, 37.997898],\n              [-75.586366, 37.997584],\n              [-75.588387, 37.997413],\n              [-75.594582, 37.996878],\n              [-75.596132, 37.996753],\n              [-75.597314, 37.996653],\n              [-75.597621, 37.996625],\n              [-75.598745, 37.996524],\n              [-75.598753, 37.996523],\n              [-75.598764, 37.996522],\n              [-75.598772, 37.996522],\n              [-75.598826, 37.996518],\n              [-75.5989, 37.996512],\n              [-75.598921, 37.99651],\n              [-75.598979, 37.996505],\n              [-75.599027, 37.996501],\n              [-75.599036, 37.9965],\n              [-75.599049, 37.996499],\n              [-75.599226, 37.996486],\n              [-75.599443, 37.996476],\n              [-75.599491, 37.996474],\n              [-75.599501, 37.996474],\n              [-75.59954, 37.996472],\n              [-75.599659, 37.996463],\n              [-75.599684, 37.996461],\n              [-75.599691, 37.99646],\n              [-75.599705, 37.996459],\n              [-75.599722, 37.996458],\n              [-75.599737, 37.996457],\n              [-75.599778, 37.996454],\n              [-75.599882, 37.996446],\n              [-75.599985, 37.996439],\n              [-75.600038, 37.996435],\n              [-75.600438, 37.996405],\n              [-75.600452, 37.996404],\n              [-75.600453, 37.996404],\n              [-75.600508, 37.996401],\n              [-75.600517, 37.996401],\n              [-75.600532, 37.9964],\n              [-75.600544, 37.996399],\n              [-75.600608, 37.996395],\n              [-75.600693, 37.996385],\n              [-75.600768, 37.996376],\n              [-75.600795, 37.996373],\n              [-75.600808, 37.996371],\n              [-75.600817, 37.99637],\n              [-75.600842, 37.996367],\n              [-75.600843, 37.996367],\n              [-75.600903, 37.99636],\n              [-75.600922, 37.996358],\n              [-75.600937, 37.996356],\n              [-75.600976, 37.996353],\n              [-75.601223, 37.996326],\n              [-75.601354, 37.996312],\n              [-75.601448, 37.996302],\n              [-75.601532, 37.996293],\n              [-75.60159, 37.996287],\n              [-75.601653, 37.99628],\n              [-75.601665, 37.996279],\n              [-75.601679, 37.996277],\n              [-75.602069, 37.996234],\n              [-75.602183, 37.996223],\n              [-75.602226, 37.996219],\n              [-75.602247, 37.996217],\n              [-75.602264, 37.996216],\n              [-75.602275, 37.996215],\n              [-75.602899, 37.996156],\n              [-75.604679, 37.995988],\n              [-75.609758, 37.99551],\n              [-75.609872, 37.995499],\n              [-75.611603, 37.995406],\n              [-75.611698, 37.995399],\n              [-75.611708, 37.995398],\n              [-75.611721, 37.995397],\n              [-75.611803, 37.995391],\n              [-75.612579, 37.995351],\n              [-75.612651, 37.995348],\n              [-75.612751, 37.995342],\n              [-75.612825, 37.995337],\n              [-75.612946, 37.99533],\n              [-75.614066, 37.995263],\n              [-75.614416, 37.995226],\n              [-75.614507, 37.995217],\n              [-75.614524, 37.995215],\n              [-75.614628, 37.995204],\n              [-75.615448, 37.995117],\n              [-75.616292, 37.995035],\n              [-75.616396, 37.995025],\n              [-75.620653, 37.994593],\n              [-75.621346, 37.994532],\n              [-75.622483, 37.994391],\n              [-75.623371, 37.994345],\n              [-75.624305, 37.994221],\n              [-75.624345, 37.994216],\n              [-75.624451, 37.994203],\n              [-75.624495, 37.993829],\n              [-75.624498, 37.993804],\n              [-75.624499, 37.993795],\n              [-75.624501, 37.993774],\n              [-75.624509, 37.993706],\n              [-75.624558, 37.993289],\n              [-75.624565, 37.99323],\n              [-75.624567, 37.993212],\n              [-75.624568, 37.993207],\n              [-75.624571, 37.993183],\n              [-75.624575, 37.993147],\n              [-75.624591, 37.993013],\n              [-75.624622, 37.992749],\n              [-75.624636, 37.992628],\n              [-75.62465, 37.992508],\n              [-75.624724, 37.99208],\n              [-75.624797, 37.991653],\n              [-75.62483, 37.991458],\n              [-75.625086, 37.990585],\n              [-75.625613, 37.989806],\n              [-75.626204, 37.989293],\n              [-75.626657, 37.9889],\n              [-75.627609, 37.988527],\n              [-75.62935, 37.988362],\n              [-75.63087, 37.987824],\n              [-75.631277, 37.987549],\n              [-75.631494, 37.987402],\n              [-75.631565, 37.987354],\n              [-75.631612, 37.987322],\n              [-75.631649, 37.987297],\n              [-75.631662, 37.987289],\n              [-75.631669, 37.987284],\n              [-75.631712, 37.987255],\n              [-75.632534, 37.986699],\n              [-75.633414, 37.985436],\n              [-75.633834, 37.984525],\n              [-75.633981, 37.983561],\n              [-75.633714, 37.983063],\n              [-75.632596, 37.98174],\n              [-75.631435, 37.980505],\n              [-75.630163, 37.979248],\n              [-75.629956, 37.979044],\n              [-75.629095, 37.978252],\n              [-75.628855, 37.977803],\n              [-75.628841, 37.976795],\n              [-75.629534, 37.975971],\n              [-75.630044, 37.975805],\n              [-75.630298, 37.975722],\n              [-75.630501, 37.975708],\n              [-75.630993, 37.975673],\n              [-75.631408, 37.97577],\n              [-75.631433, 37.97578],\n              [-75.63156, 37.975833],\n              [-75.631671, 37.975881],\n              [-75.63201, 37.976026],\n              [-75.632777, 37.976591],\n              [-75.633532, 37.977165],\n              [-75.634211, 37.977678],\n              [-75.634357, 37.977921],\n              [-75.634475, 37.978119],\n              [-75.634789, 37.978645],\n              [-75.634953, 37.978817],\n              [-75.634997, 37.978863],\n              [-75.635007, 37.978874],\n              [-75.635064, 37.978934],\n              [-75.635092, 37.978964],\n              [-75.635163, 37.979039],\n              [-75.635264, 37.979146],\n              [-75.635487, 37.979382],\n              [-75.635658, 37.979491],\n              [-75.635676, 37.979503],\n              [-75.63569, 37.979512],\n              [-75.635737, 37.979542],\n              [-75.63628, 37.979641],\n              [-75.636308, 37.979645],\n              [-75.636679, 37.979693],\n              [-75.637321, 37.979731],\n              [-75.637734, 37.979576],\n              [-75.638224, 37.979403],\n              [-75.63852, 37.979216],\n              [-75.639304, 37.978723],\n              [-75.640136, 37.977951],\n              [-75.640916, 37.977243],\n              [-75.640921, 37.977236],\n              [-75.641355, 37.976628],\n              [-75.641818, 37.975982],\n              [-75.642583, 37.974669],\n              [-75.642608, 37.974626],\n              [-75.642624, 37.974598],\n              [-75.642636, 37.974578],\n              [-75.642641, 37.97457],\n              [-75.642654, 37.974548],\n              [-75.642835, 37.974237],\n              [-75.642993, 37.973733],\n              [-75.64303, 37.973614],\n              [-75.643119, 37.97333],\n              [-75.643741, 37.971345],\n              [-75.644257, 37.970528],\n              [-75.644727, 37.969783],\n              [-75.645844, 37.968691],\n              [-75.646262, 37.968378],\n              [-75.646351, 37.968311],\n              [-75.646393, 37.96828],\n              [-75.646398, 37.968276],\n              [-75.646404, 37.968272],\n              [-75.64667, 37.968073],\n              [-75.647042, 37.967794],\n              [-75.647418, 37.967473],\n              [-75.64823, 37.966779],\n              [-75.648199, 37.96665],\n              [-75.648184, 37.966589],\n              [-75.648165, 37.966512],\n              [-75.648161, 37.966494],\n              [-75.648147, 37.96538],\n              [-75.64814, 37.964843],\n              [-75.648138, 37.964706],\n              [-75.648138, 37.964679],\n              [-75.648137, 37.964626],\n              [-75.648137, 37.964594],\n              [-75.648136, 37.964582],\n              [-75.648135, 37.964472],\n              [-75.648105, 37.962229],\n              [-75.64809, 37.961836],\n              [-75.647932, 37.957676],\n              [-75.647927, 37.957542],\n              [-75.647924, 37.957474],\n              [-75.647924, 37.957467],\n              [-75.647922, 37.957429],\n              [-75.647771, 37.953583],\n              [-75.647766, 37.953205],\n              [-75.647766, 37.953168],\n              [-75.647765, 37.95313],\n              [-75.647764, 37.953093],\n              [-75.647763, 37.953055],\n              [-75.6477, 37.950615],\n              [-75.647608, 37.947033],\n              [-75.647702, 37.946971],\n              [-75.648216, 37.94687],\n              [-75.652171, 37.946099],\n              [-75.655066, 37.945517],\n              [-75.655683, 37.945441],\n              [-75.657029, 37.946043],\n              [-75.658697, 37.94674],\n              [-75.659789, 37.947195],\n              [-75.661334, 37.947838],\n              [-75.662956, 37.948421],\n              [-75.665013, 37.949393],\n              [-75.665225, 37.949484],\n              [-75.665277, 37.949506],\n              [-75.665288, 37.949511],\n              [-75.6653, 37.949514],\n              [-75.667807, 37.950099],\n              [-75.669832, 37.950572],\n              [-75.670451, 37.950715],\n              [-75.673062, 37.951348],\n              [-75.677391, 37.952329],\n              [-75.6823, 37.95351],\n              [-75.683449, 37.953777],\n              [-75.686978, 37.954533],\n              [-75.690353, 37.955241],\n              [-75.691323, 37.955504],\n              [-75.693164, 37.95539],\n              [-75.695648, 37.955265],\n              [-75.699002, 37.955046],\n              [-75.701199, 37.95494],\n              [-75.703797, 37.954801],\n              [-75.704636, 37.954706],\n              [-75.705871, 37.954401],\n              [-75.709945, 37.953471],\n              [-75.71444, 37.952421],\n              [-75.717116, 37.951736],\n              [-75.721839, 37.950578],\n              [-75.727641, 37.949224],\n              [-75.735386, 37.947378],\n              [-75.739911, 37.946327],\n              [-75.742295, 37.945829],\n              [-75.742502, 37.945781],\n              [-75.749654, 37.944134],\n              [-75.761644, 37.941374],\n              [-75.783965, 37.924918],\n              [-75.801211, 37.912199],\n              [-75.801242, 37.912182],\n              [-75.813909, 37.912047],\n              [-75.874656, 37.911405],\n              [-75.882941, 37.911343],\n              [-75.895913, 37.910505],\n              [-75.902678, 37.910068],\n              [-75.927355, 37.908473],\n              [-75.952674, 37.906835],\n              [-75.943695, 37.946141],\n              [-75.983274, 37.952004],\n              [-75.987982, 37.952701],\n              [-75.99334, 37.953495],\n              [-75.994742, 37.953468],\n              [-75.994743, 37.953468],\n              [-75.995211, 37.953459],\n              [-75.996881, 37.953493],\n              [-75.999284, 37.953471],\n              [-75.999658, 37.95353],\n              [-76.001011, 37.953546],\n              [-76.001267, 37.953555],\n              [-76.001445, 37.953561],\n              [-76.001634, 37.953567],\n              [-76.001837, 37.953573],\n              [-76.002965, 37.953611],\n              [-76.003511, 37.95361],\n              [-76.00581, 37.953607],\n              [-76.005874, 37.953607],\n              [-76.00876, 37.953647],\n              [-76.0116, 37.953628],\n              [-76.011731, 37.953628],\n              [-76.017564, 37.953625],\n              [-76.020836, 37.953813],\n              [-76.020804, 37.953648],\n              [-76.020774, 37.953563],\n              [-76.020776, 37.953498],\n              [-76.020843, 37.953478],\n              [-76.020988, 37.9535],\n              [-76.021204, 37.953551],\n              [-76.021433, 37.953569],\n              [-76.021708, 37.953563],\n              [-76.022113, 37.953575],\n              [-76.022251, 37.953678],\n              [-76.022313, 37.953818],\n              [-76.024413, 37.953703],\n              [-76.025353, 37.953728],\n              [-76.026681, 37.95372],\n              [-76.02721, 37.95373],\n              [-76.028135, 37.95371],\n              [-76.028634, 37.953743],\n              [-76.029407, 37.953783],\n              [-76.029982, 37.953735],\n              [-76.030123, 37.953661],\n              [-76.038026, 37.953983],\n              [-76.039305, 37.953992],\n              [-76.040462, 37.954],\n              [-76.041469, 37.954018],\n              [-76.041553, 37.953934],\n              [-76.04168, 37.953966],\n              [-76.041693, 37.954005],\n              [-76.043285, 37.953869],\n              [-76.045543, 37.953648],\n              [-76.050257, 37.953589],\n              [-76.050719, 37.953588],\n              [-76.051966, 37.953586],\n              [-76.052023, 37.953586],\n              [-76.124663, 37.928716],\n              [-76.233417, 37.887646],\n              [-76.235741, 37.886856],\n              [-76.23646, 37.886613],\n              [-76.236208, 37.888097],\n              [-76.236176, 37.888286],\n              [-76.236143, 37.888476],\n              [-76.236394, 37.888549],\n              [-76.236491, 37.888577],\n              [-76.236731, 37.888647],\n              [-76.236778, 37.888667],\n              [-76.236729, 37.888803],\n              [-76.23673, 37.889179],\n              [-76.236721, 37.889233],\n              [-76.236718, 37.889253],\n              [-76.236713, 37.889287],\n              [-76.236711, 37.889302],\n              [-76.236702, 37.889353],\n              [-76.236691, 37.88942],\n              [-76.236665, 37.88958],\n              [-76.23666, 37.889613],\n              [-76.236635, 37.88977],\n              [-76.236619, 37.889873],\n              [-76.236596, 37.890014],\n              [-76.236574, 37.890154],\n              [-76.237251, 37.889751],\n              [-76.237312, 37.889715],\n              [-76.237416, 37.889746],\n              [-76.237618, 37.889799],\n              [-76.238007, 37.889861],\n              [-76.239399, 37.890182],\n              [-76.240048, 37.890378],\n              [-76.240291, 37.890452],\n              [-76.240654, 37.890586],\n              [-76.240779, 37.890634],\n              [-76.242072, 37.891247],\n              [-76.242268, 37.891327],\n              [-76.242256, 37.89147],\n              [-76.242281, 37.891602],\n              [-76.242287, 37.891635],\n              [-76.242484, 37.891808],\n              [-76.24317, 37.892219],\n              [-76.24328, 37.892248],\n              [-76.243607, 37.892332],\n              [-76.243845, 37.892393],\n              [-76.244062, 37.892484],\n              [-76.244371, 37.89275],\n              [-76.244696, 37.892964],\n              [-76.24496, 37.893139],\n              [-76.245502, 37.893606],\n              [-76.246674, 37.894429],\n              [-76.246799, 37.894477],\n              [-76.246891, 37.894564],\n              [-76.247288, 37.894686],\n              [-76.247618, 37.894908],\n              [-76.247736, 37.894912],\n              [-76.247908, 37.894877],\n              [-76.248564, 37.895518],\n              [-76.249627, 37.896696],\n              [-76.24966, 37.896732],\n              [-76.249659, 37.896946],\n              [-76.249804, 37.897099],\n              [-76.251175, 37.898582],\n              [-76.251216, 37.898627],\n              [-76.251925, 37.89957],\n              [-76.252458, 37.900279],\n              [-76.253351, 37.901033],\n              [-76.253993, 37.901669],\n              [-76.25427, 37.902474],\n              [-76.254405, 37.902676],\n              [-76.254596, 37.90286],\n              [-76.254904, 37.90306],\n              [-76.254937, 37.903075],\n              [-76.255274, 37.903227],\n              [-76.255302, 37.903253],\n              [-76.255422, 37.903362],\n              [-76.255551, 37.903523],\n              [-76.255656, 37.903655],\n              [-76.255762, 37.903787],\n              [-76.255946, 37.904005],\n              [-76.25633, 37.904392],\n              [-76.256497, 37.90456],\n              [-76.256632, 37.90474],\n              [-76.257529, 37.905746],\n              [-76.257628, 37.905828],\n              [-76.258306, 37.906145],\n              [-76.258566, 37.906367],\n              [-76.25873, 37.906556],\n              [-76.259545, 37.906866],\n              [-76.260313, 37.907522],\n              [-76.260673, 37.90783],\n              [-76.260823, 37.907956],\n              [-76.261814, 37.908794],\n              [-76.262117, 37.908798],\n              [-76.263174, 37.909394],\n              [-76.263463, 37.909592],\n              [-76.263783, 37.90981],\n              [-76.263903, 37.909892],\n              [-76.264442, 37.91015],\n              [-76.264778, 37.910339],\n              [-76.265249, 37.910652],\n              [-76.265851, 37.911052],\n              [-76.266193, 37.911241],\n              [-76.266378, 37.911343],\n              [-76.267028, 37.911701],\n              [-76.267874, 37.912168],\n              [-76.269035, 37.912727],\n              [-76.269524, 37.912936],\n              [-76.269635, 37.912957],\n              [-76.271934, 37.913948],\n              [-76.272131, 37.914138],\n              [-76.272243, 37.914187],\n              [-76.272347, 37.914191],\n              [-76.272423, 37.914152],\n              [-76.273148, 37.914402],\n              [-76.273265, 37.914627],\n              [-76.273295, 37.914654],\n              [-76.27334, 37.914686],\n              [-76.273727, 37.914834],\n              [-76.273804, 37.914863],\n              [-76.274008, 37.914941],\n              [-76.274061, 37.914961],\n              [-76.275498, 37.915509],\n              [-76.276769, 37.916011],\n              [-76.277165, 37.916106],\n              [-76.278045, 37.916437],\n              [-76.27856, 37.916558],\n              [-76.279721, 37.917122],\n              [-76.280716, 37.917721],\n              [-76.281031, 37.917849],\n              [-76.281254, 37.917907],\n              [-76.28191, 37.918142],\n              [-76.28441, 37.919137],\n              [-76.285011, 37.919461],\n              [-76.285092, 37.919505],\n              [-76.285285, 37.919609],\n              [-76.285369, 37.919654],\n              [-76.286543, 37.920168],\n              [-76.287544, 37.920696],\n              [-76.288824, 37.92133],\n              [-76.28922, 37.9215],\n              [-76.2896, 37.921662],\n              [-76.290014, 37.921811],\n              [-76.290165, 37.921865],\n              [-76.290434, 37.922075],\n              [-76.290883, 37.922557],\n              [-76.292024, 37.923136],\n              [-76.292955, 37.92358],\n              [-76.293634, 37.923756],\n              [-76.294918, 37.924381],\n              [-76.295101, 37.92447],\n              [-76.295765, 37.924759],\n              [-76.295945, 37.924848],\n              [-76.296494, 37.925122],\n              [-76.297159, 37.925453],\n              [-76.29754, 37.925642],\n              [-76.298661, 37.9262],\n              [-76.299974, 37.926669],\n              [-76.300114, 37.926766],\n              [-76.300102, 37.926783],\n              [-76.300085, 37.926808],\n              [-76.300019, 37.926904],\n              [-76.300138, 37.926958],\n              [-76.300226, 37.926859],\n              [-76.300247, 37.926835],\n              [-76.300498, 37.926899],\n              [-76.300579, 37.926954],\n              [-76.300633, 37.926974],\n              [-76.300707, 37.926946],\n              [-76.300832, 37.926989],\n              [-76.301405, 37.92725],\n              [-76.301755, 37.92741],\n              [-76.30224, 37.927631],\n              [-76.302385, 37.927697],\n              [-76.303036, 37.928041],\n              [-76.303643, 37.928276],\n              [-76.304435, 37.928729],\n              [-76.306092, 37.929463],\n              [-76.306949, 37.929885],\n              [-76.307695, 37.930252],\n              [-76.308954, 37.930871],\n              [-76.30899, 37.930819],\n              [-76.309027, 37.930837],\n              [-76.309618, 37.93112],\n              [-76.310402, 37.931506],\n              [-76.310816, 37.93171],\n              [-76.311086, 37.931844],\n              [-76.311356, 37.931977],\n              [-76.31178, 37.932188],\n              [-76.312203, 37.932399],\n              [-76.312597, 37.932594],\n              [-76.312754, 37.932684],\n              [-76.313265, 37.932974],\n              [-76.313772, 37.933265],\n              [-76.314499, 37.933682],\n              [-76.314965, 37.933921],\n              [-76.315261, 37.934058],\n              [-76.315515, 37.934023],\n              [-76.315804, 37.934173],\n              [-76.315962, 37.934305],\n              [-76.316071, 37.934396],\n              [-76.316186, 37.93445],\n              [-76.316897, 37.934782],\n              [-76.317043, 37.934868],\n              [-76.317436, 37.9351],\n              [-76.317821, 37.935283],\n              [-76.31796, 37.935298],\n              [-76.317997, 37.935287],\n              [-76.318236, 37.935218],\n              [-76.318379, 37.935436],\n              [-76.318423, 37.935475],\n              [-76.318527, 37.935566],\n              [-76.321391, 37.937072],\n              [-76.321493, 37.937126],\n              [-76.321852, 37.937315],\n              [-76.322367, 37.937586],\n              [-76.322883, 37.937858],\n              [-76.323191, 37.938014],\n              [-76.323499, 37.938169],\n              [-76.324395, 37.938659],\n              [-76.325118, 37.939009],\n              [-76.3257, 37.939292],\n              [-76.326033, 37.939454],\n              [-76.326355, 37.939493],\n              [-76.326485, 37.939509],\n              [-76.327243, 37.939909],\n              [-76.327585, 37.94009],\n              [-76.328684, 37.940638],\n              [-76.329411, 37.940954],\n              [-76.329472, 37.94099],\n              [-76.329614, 37.941073],\n              [-76.330215, 37.941367],\n              [-76.330643, 37.941577],\n              [-76.331203, 37.941851],\n              [-76.331369, 37.941947],\n              [-76.331652, 37.94211],\n              [-76.331918, 37.942244],\n              [-76.332011, 37.942293],\n              [-76.332506, 37.942556],\n              [-76.332974, 37.942754],\n              [-76.333374, 37.942964],\n              [-76.333674, 37.943076],\n              [-76.33436, 37.943403],\n              [-76.336129, 37.944169],\n              [-76.336402, 37.944309],\n              [-76.336875, 37.944506],\n              [-76.337954, 37.944956],\n              [-76.338619, 37.945294],\n              [-76.339709, 37.945727],\n              [-76.340463, 37.945955],\n              [-76.341616, 37.946447],\n              [-76.344382, 37.94747],\n              [-76.344779, 37.947595],\n              [-76.346314, 37.948079],\n              [-76.347174, 37.94835],\n              [-76.347621, 37.948543],\n              [-76.348025, 37.948691],\n              [-76.34825, 37.948774],\n              [-76.348711, 37.948943],\n              [-76.349285, 37.949208],\n              [-76.349781, 37.949436],\n              [-76.349949, 37.949489],\n              [-76.350032, 37.949477],\n              [-76.350052, 37.949444],\n              [-76.350225, 37.949403],\n              [-76.350369, 37.949374],\n              [-76.350432, 37.949362],\n              [-76.350592, 37.949425],\n              [-76.350752, 37.949489],\n              [-76.351754, 37.949888],\n              [-76.351921, 37.949955],\n              [-76.353315, 37.950318],\n              [-76.354303, 37.950538],\n              [-76.355238, 37.950747],\n              [-76.355455, 37.950832],\n              [-76.355616, 37.950897],\n              [-76.355749, 37.950947],\n              [-76.355825, 37.950977],\n              [-76.355959, 37.951038],\n              [-76.355961, 37.951039],\n              [-76.356452, 37.951232],\n              [-76.357067, 37.951482],\n              [-76.357078, 37.951487],\n              [-76.357585, 37.951694],\n              [-76.359327, 37.952281],\n              [-76.36115, 37.952591],\n              [-76.362711, 37.952859],\n              [-76.362953, 37.952901],\n              [-76.364208, 37.953116],\n              [-76.365611, 37.953562],\n              [-76.366019, 37.953511],\n              [-76.36706, 37.953692],\n              [-76.368231, 37.953975],\n              [-76.368774, 37.954084],\n              [-76.370688, 37.954386],\n              [-76.371461, 37.954553],\n              [-76.373187, 37.954846],\n              [-76.37393, 37.954989],\n              [-76.374673, 37.955131],\n              [-76.37476, 37.955152],\n              [-76.374944, 37.955185],\n              [-76.375537, 37.955292],\n              [-76.375722, 37.955325],\n              [-76.376056, 37.955386],\n              [-76.37639, 37.955446],\n              [-76.37662, 37.955487],\n              [-76.37685, 37.955529],\n              [-76.37689, 37.955542],\n              [-76.376946, 37.95556],\n              [-76.377041, 37.955592],\n              [-76.37787, 37.955864],\n              [-76.378699, 37.956137],\n              [-76.378736, 37.956149],\n              [-76.378972, 37.956227],\n              [-76.379619, 37.956413],\n              [-76.379627, 37.956415],\n              [-76.379821, 37.956471],\n              [-76.380158, 37.956533],\n              [-76.380404, 37.956578],\n              [-76.380651, 37.956623],\n              [-76.380705, 37.956632],\n              [-76.380758, 37.956643],\n              [-76.38091, 37.956671],\n              [-76.381061, 37.956699],\n              [-76.38114, 37.956731],\n              [-76.381168, 37.956734],\n              [-76.381408, 37.956763],\n              [-76.381588, 37.956796],\n              [-76.381767, 37.956829],\n              [-76.382042, 37.95688],\n              [-76.38273, 37.957007],\n              [-76.383567, 37.957161],\n              [-76.388021, 37.95814],\n              [-76.388107, 37.958237],\n              [-76.388239, 37.95824],\n              [-76.388342, 37.95821],\n              [-76.388726, 37.958294],\n              [-76.389014, 37.958358],\n              [-76.389772, 37.958564],\n              [-76.389898, 37.958666],\n              [-76.390177, 37.958712],\n              [-76.390286, 37.958704],\n              [-76.390679, 37.958811],\n              [-76.391113, 37.958985],\n              [-76.391738, 37.959275],\n              [-76.392445, 37.959453],\n              [-76.412936, 37.96634],\n              [-76.415295, 37.968149],\n              [-76.419372, 37.971277],\n              [-76.42056, 37.972517],\n              [-76.421677, 37.973674],\n              [-76.422695, 37.974743],\n              [-76.423848, 37.975651],\n              [-76.425132, 37.976561],\n              [-76.425462, 37.976879],\n              [-76.426319, 37.977384],\n              [-76.433902, 37.981855],\n              [-76.43397, 37.981945],\n              [-76.435581, 37.984091],\n              [-76.435755, 37.984335],\n              [-76.436913, 37.985959],\n              [-76.43699, 37.986067],\n              [-76.438069, 37.987119],\n              [-76.439472, 37.988263],\n              [-76.441264, 37.989259],\n              [-76.442173, 37.989592],\n              [-76.443664, 37.991165],\n              [-76.446614, 37.994279],\n              [-76.452282, 38.000151],\n              [-76.46501, 38.013228],\n              [-76.465313, 38.013267],\n              [-76.466092, 38.013314],\n              [-76.466476, 38.013394],\n              [-76.467061, 38.013511],\n              [-76.467248, 38.013692],\n              [-76.467802, 38.014147],\n              [-76.468055, 38.014449],\n              [-76.468417, 38.014577],\n              [-76.472002, 38.015222],\n              [-76.47252, 38.015489],\n              [-76.472775, 38.015752],\n              [-76.473111, 38.016057],\n              [-76.473399, 38.01624],\n              [-76.47352, 38.01621],\n              [-76.473881, 38.016121],\n              [-76.47417, 38.015941],\n              [-76.474299, 38.015765],\n              [-76.474421, 38.015691],\n              [-76.474541, 38.015614],\n              [-76.474889, 38.0154],\n              [-76.475091, 38.015412],\n              [-76.475378, 38.015556],\n              [-76.475402, 38.015568],\n              [-76.475752, 38.0157],\n              [-76.475996, 38.015671],\n              [-76.476459, 38.015574],\n              [-76.476698, 38.015524],\n              [-76.476937, 38.015473],\n              [-76.477677, 38.015436],\n              [-76.477969, 38.015432],\n              [-76.478433, 38.015352],\n              [-76.478607, 38.015338],\n              [-76.479814, 38.01524],\n              [-76.480432, 38.015319],\n              [-76.480896, 38.015285],\n              [-76.481978, 38.015375],\n              [-76.482504, 38.01551],\n              [-76.482509, 38.015511],\n              [-76.483441, 38.015749],\n              [-76.483931, 38.015874],\n              [-76.484421, 38.015998],\n              [-76.484721, 38.015996],\n              [-76.485474, 38.016261],\n              [-76.487491, 38.017019],\n              [-76.48857, 38.01725],\n              [-76.48861, 38.017255],\n              [-76.488756, 38.017269],\n              [-76.489953, 38.017417],\n              [-76.489978, 38.01742],\n              [-76.490181, 38.017444],\n              [-76.490395, 38.01747],\n              [-76.491222, 38.01757],\n              [-76.491349, 38.017595],\n              [-76.491978, 38.017722],\n              [-76.492545, 38.017872],\n              [-76.492546, 38.017913],\n              [-76.492807, 38.018091],\n              [-76.493524, 38.018168],\n              [-76.493531, 38.018169],\n              [-76.493588, 38.018148],\n              [-76.494624, 38.018423],\n              [-76.495527, 38.018662],\n              [-76.495592, 38.018679],\n              [-76.495659, 38.018697],\n              [-76.495778, 38.018728],\n              [-76.495896, 38.01876],\n              [-76.496126, 38.018821],\n              [-76.496593, 38.018945],\n              [-76.496816, 38.019072],\n              [-76.497011, 38.019184],\n              [-76.497039, 38.0192],\n              [-76.497189, 38.019286],\n              [-76.497499, 38.019422],\n              [-76.497831, 38.019547],\n              [-76.497951, 38.019592],\n              [-76.498392, 38.019762],\n              [-76.498549, 38.01988],\n              [-76.498577, 38.019899],\n              [-76.499149, 38.019996],\n              [-76.499378, 38.020064],\n              [-76.499508, 38.020077],\n              [-76.499593, 38.020086],\n              [-76.499678, 38.020094],\n              [-76.500752, 38.020528],\n              [-76.501076, 38.020728],\n              [-76.501538, 38.020894],\n              [-76.5017, 38.020952],\n              [-76.502258, 38.021151],\n              [-76.503062, 38.021377],\n              [-76.504048, 38.021716],\n              [-76.504501, 38.021815],\n              [-76.505389, 38.0221],\n              [-76.506748, 38.022649],\n              [-76.507091, 38.02282],\n              [-76.507855, 38.023134],\n              [-76.508365, 38.02332],\n              [-76.509537, 38.023887],\n              [-76.510191, 38.024275],\n              [-76.512021, 38.025114],\n              [-76.513071, 38.025529],\n              [-76.514064, 38.025867],\n              [-76.514716, 38.026145],\n              [-76.515355, 38.026457],\n              [-76.515649, 38.0266],\n              [-76.515936, 38.026733],\n              [-76.516097, 38.026775],\n              [-76.516556, 38.026802],\n              [-76.516611, 38.026791],\n              [-76.516526, 38.029187],\n              [-76.51644, 38.031583],\n              [-76.516406, 38.033157],\n              [-76.516371, 38.034732],\n              [-76.516828, 38.034745],\n              [-76.51685, 38.034746],\n              [-76.519388, 38.034818],\n              [-76.519536, 38.034822],\n              [-76.522444, 38.034901],\n              [-76.524958, 38.034968],\n              [-76.525496, 38.034982],\n              [-76.529021, 38.034391],\n              [-76.53708, 38.032456],\n              [-76.538566, 38.032099],\n              [-76.538929, 38.031959],\n              [-76.539116, 38.031887],\n              [-76.539302, 38.031815],\n              [-76.540541, 38.031335],\n              [-76.5427, 38.029654],\n              [-76.542715, 38.029642],\n              [-76.542728, 38.029632],\n              [-76.543819, 38.028786],\n              [-76.547481, 38.026765],\n              [-76.548225, 38.026577],\n              [-76.549956, 38.026139],\n              [-76.550783, 38.02598],\n              [-76.553052, 38.025543],\n              [-76.553632, 38.025613],\n              [-76.55365, 38.025619],\n              [-76.555222, 38.026137],\n              [-76.556356, 38.026518],\n              [-76.557634, 38.02643],\n              [-76.557692, 38.026427],\n              [-76.558503, 38.026629],\n              [-76.558648, 38.026724],\n              [-76.559188, 38.027078],\n              [-76.559541, 38.027151],\n              [-76.55961, 38.027165],\n              [-76.56013, 38.027272],\n              [-76.560416, 38.027332],\n              [-76.560567, 38.027319],\n              [-76.561192, 38.02727],\n              [-76.562467, 38.027168],\n              [-76.563097, 38.026977],\n              [-76.564207, 38.026642],\n              [-76.565194, 38.026344],\n              [-76.565251, 38.026327],\n              [-76.566129, 38.026215],\n              [-76.569407, 38.026718],\n              [-76.569503, 38.026733],\n              [-76.569604, 38.026749],\n              [-76.570965, 38.02693],\n              [-76.571901, 38.027054],\n              [-76.57214, 38.027006],\n              [-76.572205, 38.026993],\n              [-76.572395, 38.026954],\n              [-76.573045, 38.026824],\n              [-76.573098, 38.02677],\n              [-76.573449, 38.026417],\n              [-76.573432, 38.026106],\n              [-76.573427, 38.026017],\n              [-76.573418, 38.025854],\n              [-76.573384, 38.025443],\n              [-76.573445, 38.025238],\n              [-76.573514, 38.025009],\n              [-76.573845, 38.024707],\n              [-76.574067, 38.02455],\n              [-76.574649, 38.024143],\n              [-76.574642, 38.023371],\n              [-76.574598, 38.023334],\n              [-76.57434, 38.023118],\n              [-76.573924, 38.023042],\n              [-76.572997, 38.023072],\n              [-76.572924, 38.023068],\n              [-76.572735, 38.023061],\n              [-76.57205, 38.023031],\n              [-76.571818, 38.022916],\n              [-76.571691, 38.022568],\n              [-76.57229, 38.021655],\n              [-76.572345, 38.021573],\n              [-76.572582, 38.021211],\n              [-76.57282, 38.020849],\n              [-76.573064, 38.020312],\n              [-76.573019, 38.019943],\n              [-76.573014, 38.019918],\n              [-76.572917, 38.019322],\n              [-76.572774, 38.018773],\n              [-76.572779, 38.018493],\n              [-76.572693, 38.018368],\n              [-76.572697, 38.018203],\n              [-76.572778, 38.01812],\n              [-76.572834, 38.018106],\n              [-76.572855, 38.01802],\n              [-76.572858, 38.018009],\n              [-76.573221, 38.017659],\n              [-76.57367, 38.017583],\n              [-76.575003, 38.017653],\n              [-76.575532, 38.017682],\n              [-76.576095, 38.017543],\n              [-76.576683, 38.017098],\n              [-76.576833, 38.016907],\n              [-76.577151, 38.016499],\n              [-76.577396, 38.016423],\n              [-76.577888, 38.016257],\n              [-76.57868, 38.015798],\n              [-76.578992, 38.015415],\n              [-76.579584, 38.01472],\n              [-76.579674, 38.01457],\n              [-76.579825, 38.01432],\n              [-76.58017, 38.014162],\n              [-76.580462, 38.014029],\n              [-76.580911, 38.013929],\n              [-76.581201, 38.013682],\n              [-76.581359, 38.013329],\n              [-76.581204, 38.012893],\n              [-76.581208, 38.012779],\n              [-76.581225, 38.012225],\n              [-76.581515, 38.011922],\n              [-76.582063, 38.011461],\n              [-76.5823, 38.011377],\n              [-76.582332, 38.011366],\n              [-76.582483, 38.011312],\n              [-76.583078, 38.011069],\n              [-76.583354, 38.010929],\n              [-76.583375, 38.010919],\n              [-76.583644, 38.010688],\n              [-76.584481, 38.009948],\n              [-76.584496, 38.009706],\n              [-76.584273, 38.009004],\n              [-76.58429, 38.008826],\n              [-76.584299, 38.008726],\n              [-76.584311, 38.008594],\n              [-76.585108, 38.007797],\n              [-76.586558, 38.006958],\n              [-76.586938, 38.006716],\n              [-76.587102, 38.006613],\n              [-76.587265, 38.00651],\n              [-76.587274, 38.006504],\n              [-76.587597, 38.0063],\n              [-76.587612, 38.006226],\n              [-76.587653, 38.006035],\n              [-76.587659, 38.005641],\n              [-76.587806, 38.005401],\n              [-76.588167, 38.005139],\n              [-76.589735, 38.004502],\n              [-76.590157, 38.004265],\n              [-76.590485, 38.004036],\n              [-76.590493, 38.004031],\n              [-76.590919, 38.003733],\n              [-76.591562, 38.003611],\n              [-76.592436, 38.003764],\n              [-76.5926, 38.003766],\n              [-76.592812, 38.003734],\n              [-76.593026, 38.003718],\n              [-76.593033, 38.003717],\n              [-76.593078, 38.003714],\n              [-76.593835, 38.003457],\n              [-76.593841, 38.003455],\n              [-76.593936, 38.003423],\n              [-76.594055, 38.003389],\n              [-76.594063, 38.003386],\n              [-76.594117, 38.003364],\n              [-76.594125, 38.003361],\n              [-76.594151, 38.00335],\n              [-76.59423, 38.003323],\n              [-76.594257, 38.003314],\n              [-76.594342, 38.003285],\n              [-76.594428, 38.003256],\n              [-76.594554, 38.003274],\n              [-76.594624, 38.003285],\n              [-76.594821, 38.003315],\n              [-76.594891, 38.003325],\n              [-76.595019, 38.003273],\n              [-76.594999, 38.003061],\n              [-76.595007, 38.002925],\n              [-76.595043, 38.002876],\n              [-76.595064, 38.002848],\n              [-76.595064, 38.002798],\n              [-76.595146, 38.002734],\n              [-76.595209, 38.002684],\n              [-76.595393, 38.002657],\n              [-76.595442, 38.002715],\n              [-76.595676, 38.002824],\n              [-76.595835, 38.002821],\n              [-76.595874, 38.002844],\n              [-76.596253, 38.00291],\n              [-76.596375, 38.003066],\n              [-76.5965, 38.00339],\n              [-76.596746, 38.003642],\n              [-76.596947, 38.003689],\n              [-76.597162, 38.003551],\n              [-76.597177, 38.003552],\n              [-76.597184, 38.003553],\n              [-76.597196, 38.003554],\n              [-76.597261, 38.003561],\n              [-76.597336, 38.003566],\n              [-76.597386, 38.003573],\n              [-76.597407, 38.003576],\n              [-76.598072, 38.003187],\n              [-76.598247, 38.00317],\n              [-76.598304, 38.003164],\n              [-76.59863, 38.003311],\n              [-76.598709, 38.003347],\n              [-76.598917, 38.003306],\n              [-76.599003, 38.003289],\n              [-76.599102, 38.003269],\n              [-76.599183, 38.003253],\n              [-76.599287, 38.003232],\n              [-76.599287, 38.003118],\n              [-76.600415, 38.002682],\n              [-76.600948, 38.002631],\n              [-76.601068, 38.002619],\n              [-76.601089, 38.002617],\n              [-76.601229, 38.002604],\n              [-76.601369, 38.00259],\n              [-76.601472, 38.002548],\n              [-76.601576, 38.002505],\n              [-76.601949, 38.002353],\n              [-76.602277, 38.002187],\n              [-76.60256, 38.002082],\n              [-76.602636, 38.002054],\n              [-76.602712, 38.002027],\n              [-76.602757, 38.00201],\n              [-76.602799, 38.001995],\n              [-76.603066, 38.001897],\n              [-76.60388, 38.001759],\n              [-76.603924, 38.001752],\n              [-76.604912, 38.001722],\n              [-76.605477, 38.00167],\n              [-76.605524, 38.001666],\n              [-76.605565, 38.001654],\n              [-76.606342, 38.001478],\n              [-76.606799, 38.001507],\n              [-76.607662, 38.001668],\n              [-76.608374, 38.001731],\n              [-76.60862, 38.001629],\n              [-76.608836, 38.001519],\n              [-76.60904, 38.001488],\n              [-76.609293, 38.001596],\n              [-76.609666, 38.0018],\n              [-76.609861, 38.00187],\n              [-76.610071, 38.001945],\n              [-76.610344, 38.00204],\n              [-76.610696, 38.002066],\n              [-76.610948, 38.002085],\n              [-76.611076, 38.002096],\n              [-76.611605, 38.002125],\n              [-76.612615, 38.00203],\n              [-76.612647, 38.002027],\n              [-76.612952, 38.001995],\n              [-76.613125, 38.001979],\n              [-76.613229, 38.001985],\n              [-76.613562, 38.002004],\n              [-76.613745, 38.002017],\n              [-76.614127, 38.002039],\n              [-76.614485, 38.00206],\n              [-76.614662, 38.002159],\n              [-76.614674, 38.0022],\n              [-76.614678, 38.002214],\n              [-76.614617, 38.002286],\n              [-76.614626, 38.002287],\n              [-76.614798, 38.002311],\n              [-76.61495, 38.00227],\n              [-76.615078, 38.002104],\n              [-76.615089, 38.001988],\n              [-76.615247, 38.00192],\n              [-76.615441, 38.001901],\n              [-76.615693, 38.001958],\n              [-76.615873, 38.001933],\n              [-76.616296, 38.001631],\n              [-76.616454, 38.001557],\n              [-76.616542, 38.001419],\n              [-76.616444, 38.00108],\n              [-76.616492, 38.00104],\n              [-76.616561, 38.001034],\n              [-76.616715, 38.001081],\n              [-76.616874, 38.001063],\n              [-76.617058, 38.000895],\n              [-76.617641, 38.000585],\n              [-76.617783, 38.000413],\n              [-76.617728, 38.000139],\n              [-76.617744, 38.000105],\n              [-76.617894, 37.999785],\n              [-76.61793, 37.999603],\n              [-76.617975, 37.999372],\n              [-76.617975, 37.999244],\n              [-76.617976, 37.999111],\n              [-76.617976, 37.999086],\n              [-76.618061, 37.998848],\n              [-76.618104, 37.998774],\n              [-76.618128, 37.998733],\n              [-76.618422, 37.99852],\n              [-76.618785, 37.998323],\n              [-76.619196, 37.998031],\n              [-76.619283, 37.997926],\n              [-76.619255, 37.997558],\n              [-76.619307, 37.997123],\n              [-76.619592, 37.996504],\n              [-76.620113, 37.995535],\n              [-76.620167, 37.995161],\n              [-76.620372, 37.994713],\n              [-76.620404, 37.994586],\n              [-76.620687, 37.994198],\n              [-76.621441, 37.993457],\n              [-76.621814, 37.993023],\n              [-76.621887, 37.992879],\n              [-76.621965, 37.992631],\n              [-76.622072, 37.992481],\n              [-76.62251, 37.992173],\n              [-76.622673, 37.992012],\n              [-76.622746, 37.991868],\n              [-76.622799, 37.991741],\n              [-76.622829, 37.991537],\n              [-76.622774, 37.991247],\n              [-76.622595, 37.990667],\n              [-76.622621, 37.989969],\n              [-76.622694, 37.989803],\n              [-76.623061, 37.989457],\n              [-76.624057, 37.988691],\n              [-76.624686, 37.987924],\n              [-76.625436, 37.986991],\n              [-76.62585, 37.986584],\n              [-76.626089, 37.986405],\n              [-76.62655, 37.985899],\n              [-76.626782, 37.985714],\n              [-76.627115, 37.985385],\n              [-76.627786, 37.984645],\n              [-76.627886, 37.984452],\n              [-76.627962, 37.984165],\n              [-76.627911, 37.983413],\n              [-76.627774, 37.982844],\n              [-76.62793, 37.982704],\n              [-76.628038, 37.982549],\n              [-76.628144, 37.982322],\n              [-76.628182, 37.982184],\n              [-76.628179, 37.982042],\n              [-76.628273, 37.981557],\n              [-76.628411, 37.981231],\n              [-76.628653, 37.980848],\n              [-76.628767, 37.980698],\n              [-76.628821, 37.980645],\n              [-76.629019, 37.980453],\n              [-76.629072, 37.980354],\n              [-76.629478, 37.979865],\n              [-76.629606, 37.979692],\n              [-76.62979, 37.979553],\n              [-76.629926, 37.97943],\n              [-76.630118, 37.979341],\n              [-76.63027, 37.979271],\n              [-76.6304, 37.979187],\n              [-76.63052, 37.979141],\n              [-76.630765, 37.97905],\n              [-76.630788, 37.979045],\n              [-76.630836, 37.978999],\n              [-76.631, 37.97885],\n              [-76.631179, 37.978688],\n              [-76.631878, 37.977799],\n              [-76.631935, 37.977097],\n              [-76.63236, 37.972275],\n              [-76.632422, 37.971567],\n              [-76.632435, 37.971422],\n              [-76.632832, 37.97037],\n              [-76.633936, 37.969558],\n              [-76.634185, 37.969319],\n              [-76.634549, 37.968551],\n              [-76.634513, 37.968088],\n              [-76.634186, 37.967117],\n              [-76.634194, 37.967024],\n              [-76.634227, 37.96668],\n              [-76.634232, 37.966638],\n              [-76.634241, 37.966637],\n              [-76.634273, 37.966635],\n              [-76.634344, 37.966632],\n              [-76.634795, 37.966614],\n              [-76.635388, 37.966678],\n              [-76.635623, 37.966677],\n              [-76.635898, 37.966676],\n              [-76.638268, 37.96557],\n              [-76.639256, 37.965567],\n              [-76.640182, 37.966231],\n              [-76.640789, 37.966574],\n              [-76.641541, 37.966665],\n              [-76.64287, 37.966779],\n              [-76.643796, 37.967237],\n              [-76.645935, 37.967969],\n              [-76.647959, 37.968266],\n              [-76.648084, 37.968404],\n              [-76.648335, 37.968678],\n              [-76.648335, 37.969364],\n              [-76.64822, 37.969776],\n              [-76.648249, 37.970806],\n              [-76.648539, 37.971538],\n              [-76.648915, 37.971996],\n              [-76.649869, 37.972614],\n              [-76.65013, 37.973117],\n              [-76.650246, 37.974079],\n              [-76.650332, 37.974124],\n              [-76.650477, 37.974994],\n              [-76.650709, 37.975635],\n              [-76.651635, 37.976916],\n              [-76.651838, 37.977625],\n              [-76.652127, 37.978015],\n              [-76.653891, 37.979364],\n              [-76.654759, 37.980234],\n              [-76.655164, 37.980989],\n              [-76.655309, 37.981446],\n              [-76.655396, 37.981469],\n              [-76.655425, 37.981675],\n              [-76.655627, 37.981813],\n              [-76.655888, 37.981929],\n              [-76.656294, 37.982177],\n              [-76.657094, 37.982305],\n              [-76.661495, 37.98301],\n              [-76.662626, 37.983701],\n              [-76.662957, 37.983849],\n              [-76.663193, 37.983938],\n              [-76.66353, 37.983996],\n              [-76.663853, 37.983988],\n              [-76.663984, 37.983953],\n              [-76.664043, 37.983915],\n              [-76.66459, 37.983839],\n              [-76.664708, 37.983823],\n              [-76.665691, 37.984052],\n              [-76.666386, 37.984418],\n              [-76.666733, 37.984509],\n              [-76.667803, 37.984417],\n              [-76.670463, 37.984805],\n              [-76.670897, 37.985011],\n              [-76.671504, 37.98501],\n              [-76.671618, 37.984919],\n              [-76.67184, 37.98479],\n              [-76.672394, 37.984591],\n              [-76.672737, 37.984521],\n              [-76.672792, 37.984525],\n              [-76.672842, 37.984528],\n              [-76.672897, 37.984532],\n              [-76.673151, 37.98455],\n              [-76.676073, 37.984549],\n              [-76.678042, 37.98416],\n              [-76.67885, 37.983842],\n              [-76.67969, 37.983402],\n              [-76.681101, 37.982877],\n              [-76.681475, 37.982602],\n              [-76.681566, 37.982371],\n              [-76.681711, 37.981413],\n              [-76.681846, 37.981136],\n              [-76.681856, 37.981114],\n              [-76.681926, 37.981065],\n              [-76.681971, 37.981518],\n              [-76.682116, 37.981881],\n              [-76.68268, 37.982026],\n              [-76.68313, 37.982727],\n              [-76.683886, 37.982829],\n              [-76.684748, 37.982924],\n              [-76.686045, 37.983419],\n              [-76.68725, 37.983258],\n              [-76.688219, 37.983361],\n              [-76.688273, 37.98373],\n              [-76.688425, 37.98394],\n              [-76.688585, 37.98409],\n              [-76.689257, 37.984955],\n              [-76.693458, 37.984809],\n              [-76.69369, 37.984801],\n              [-76.700571, 37.984553],\n              [-76.717708, 37.993381],\n              [-76.717847, 37.993452],\n              [-76.717897, 37.993478],\n              [-76.717923, 37.993492],\n              [-76.717945, 37.993503],\n              [-76.718004, 37.993537],\n              [-76.722689, 37.996312],\n              [-76.722931, 37.996424],\n              [-76.723321, 37.996604],\n              [-76.723647, 37.996746],\n              [-76.728555, 37.998998],\n              [-76.728724, 37.999076],\n              [-76.728773, 37.999098],\n              [-76.728991, 37.999198],\n              [-76.729351, 37.999208],\n              [-76.729609, 37.999216],\n              [-76.73336, 37.999053],\n              [-76.733546, 37.999045],\n              [-76.743586, 37.998712],\n              [-76.743619, 37.998711],\n              [-76.743962, 37.998114],\n              [-76.743989, 37.997199],\n              [-76.744191, 37.99697],\n              [-76.744538, 37.996763],\n              [-76.745752, 37.996693],\n              [-76.74607, 37.996624],\n              [-76.748007, 37.995821],\n              [-76.748873, 37.994905],\n              [-76.749328, 37.995022],\n              [-76.749683, 37.99511],\n              [-76.750458, 37.99535],\n              [-76.750684, 37.995517],\n              [-76.75092, 37.995693],\n              [-76.751094, 37.995831],\n              [-76.751788, 37.995877],\n              [-76.752134, 37.996015],\n              [-76.752452, 37.996221],\n              [-76.753088, 37.996519],\n              [-76.754042, 37.996635],\n              [-76.754592, 37.996887],\n              [-76.755286, 37.997048],\n              [-76.756182, 37.997346],\n              [-76.757166, 37.997965],\n              [-76.7576, 37.997966],\n              [-76.757975, 37.997851],\n              [-76.758351, 37.997989],\n              [-76.758931, 37.998493],\n              [-76.759539, 37.998745],\n              [-76.760233, 37.99941],\n              [-76.760609, 37.999547],\n              [-76.761419, 37.999663],\n              [-76.762025, 38.000146],\n              [-76.762904, 38.000687],\n              [-76.763003, 38.000748],\n              [-76.763676, 38.001162],\n              [-76.764487, 38.001873],\n              [-76.764718, 38.001987],\n              [-76.765413, 38.001644],\n              [-76.765963, 38.001554],\n              [-76.765966, 38.001577],\n              [-76.766008, 38.001829],\n              [-76.766016, 38.001919],\n              [-76.765875, 38.00192],\n              [-76.765614, 38.002171],\n              [-76.76518, 38.002606],\n              [-76.76486, 38.003704],\n              [-76.764657, 38.004161],\n              [-76.764454, 38.004298],\n              [-76.761357, 38.005577],\n              [-76.760923, 38.006057],\n              [-76.760372, 38.006606],\n              [-76.760256, 38.007064],\n              [-76.759822, 38.007429],\n              [-76.759791, 38.008413],\n              [-76.760051, 38.008688],\n              [-76.760051, 38.009077],\n              [-76.759819, 38.009283],\n              [-76.759587, 38.009786],\n              [-76.758862, 38.010633],\n              [-76.758833, 38.011044],\n              [-76.758977, 38.011113],\n              [-76.759381, 38.011823],\n              [-76.759554, 38.012304],\n              [-76.760217, 38.013632],\n              [-76.760071, 38.014891],\n              [-76.759693, 38.01576],\n              [-76.759751, 38.015989],\n              [-76.760097, 38.016424],\n              [-76.759921, 38.017911],\n              [-76.760181, 38.018369],\n              [-76.76018, 38.019125],\n              [-76.759919, 38.019353],\n              [-76.759513, 38.020017],\n              [-76.758789, 38.020336],\n              [-76.758645, 38.020519],\n              [-76.758546, 38.020907],\n              [-76.75847, 38.021206],\n              [-76.757948, 38.021869],\n              [-76.757658, 38.02212],\n              [-76.756992, 38.023035],\n              [-76.756383, 38.023584],\n              [-76.756267, 38.023904],\n              [-76.756468, 38.024637],\n              [-76.755976, 38.025139],\n              [-76.755648, 38.025266],\n              [-76.75561, 38.025622],\n              [-76.755869, 38.026105],\n              [-76.756326, 38.026414],\n              [-76.75683, 38.026654],\n              [-76.75709, 38.02706],\n              [-76.757151, 38.027569],\n              [-76.757273, 38.027982],\n              [-76.757448, 38.02833],\n              [-76.757112, 38.028824],\n              [-76.756884, 38.029304],\n              [-76.757046, 38.029962],\n              [-76.757334, 38.030684],\n              [-76.757876, 38.031206],\n              [-76.758971, 38.03203],\n              [-76.759003, 38.032054],\n              [-76.759581, 38.032329],\n              [-76.760507, 38.032513],\n              [-76.761664, 38.032515],\n              [-76.762387, 38.032904],\n              [-76.763313, 38.033134],\n              [-76.764354, 38.033272],\n              [-76.765309, 38.033205],\n              [-76.765917, 38.03348],\n              [-76.766697, 38.034007],\n              [-76.768143, 38.034557],\n              [-76.768432, 38.034764],\n              [-76.768315, 38.035633],\n              [-76.768893, 38.036137],\n              [-76.769412, 38.037374],\n              [-76.770221, 38.038358],\n              [-76.770713, 38.038771],\n              [-76.770828, 38.03916],\n              [-76.771724, 38.03955],\n              [-76.773228, 38.040787],\n              [-76.775049, 38.041773],\n              [-76.775396, 38.042139],\n              [-76.775668, 38.042285],\n              [-76.776293, 38.04262],\n              [-76.777074, 38.042804],\n              [-76.777547, 38.042991],\n              [-76.777628, 38.043039],\n              [-76.778481, 38.043892],\n              [-76.780216, 38.044168],\n              [-76.780593, 38.04461],\n              [-76.781163, 38.045356],\n              [-76.781619, 38.045954],\n              [-76.781758, 38.046081],\n              [-76.782539, 38.046745],\n              [-76.782741, 38.04702],\n              [-76.782798, 38.047294],\n              [-76.782914, 38.047569],\n              [-76.783145, 38.047775],\n              [-76.78381, 38.047959],\n              [-76.784938, 38.048829],\n              [-76.786124, 38.049128],\n              [-76.786789, 38.049792],\n              [-76.787802, 38.050022],\n              [-76.78812, 38.050205],\n              [-76.788901, 38.051007],\n              [-76.789565, 38.051808],\n              [-76.790839, 38.051877],\n              [-76.790875, 38.051894],\n              [-76.791721, 38.052287],\n              [-76.792517, 38.052657],\n              [-76.793702, 38.053619],\n              [-76.793876, 38.053825],\n              [-76.794454, 38.054397],\n              [-76.794945, 38.055107],\n              [-76.795061, 38.055451],\n              [-76.795495, 38.055909],\n              [-76.795986, 38.05687],\n              [-76.796188, 38.057191],\n              [-76.796824, 38.05774],\n              [-76.797229, 38.058313],\n              [-76.797576, 38.058565],\n              [-76.80018, 38.059322],\n              [-76.800788, 38.059459],\n              [-76.801107, 38.059437],\n              [-76.801917, 38.059643],\n              [-76.803624, 38.060285],\n              [-76.804116, 38.060285],\n              [-76.804695, 38.060034],\n              [-76.805911, 38.060034],\n              [-76.806171, 38.059897],\n              [-76.806982, 38.059692],\n              [-76.807967, 38.058754],\n              [-76.80843, 38.058571],\n              [-76.809028, 38.058486],\n              [-76.809067, 38.05848],\n              [-76.81037, 38.05871],\n              [-76.812714, 38.058619],\n              [-76.812946, 38.058825],\n              [-76.814248, 38.059009],\n              [-76.81437, 38.058891],\n              [-76.814364, 38.058952],\n              [-76.814333, 38.059291],\n              [-76.814463, 38.059748],\n              [-76.81444, 38.060032],\n              [-76.814424, 38.06029],\n              [-76.814913, 38.06098],\n              [-76.815417, 38.061748],\n              [-76.815775, 38.062621],\n              [-76.816073, 38.063229],\n              [-76.816607, 38.063554],\n              [-76.817499, 38.064036],\n              [-76.818155, 38.064382],\n              [-76.818796, 38.064466],\n              [-76.819651, 38.064183],\n              [-76.820238, 38.063953],\n              [-76.820841, 38.063948],\n              [-76.821497, 38.064348],\n              [-76.821841, 38.064581],\n              [-76.821864, 38.064596],\n              [-76.822845, 38.065185],\n              [-76.822924, 38.065232],\n              [-76.822945, 38.065251],\n              [-76.825372, 38.06747],\n              [-76.825402, 38.067498],\n              [-76.829274, 38.071021],\n              [-76.829294, 38.07104],\n              [-76.833141, 38.074534],\n              [-76.833231, 38.074615],\n              [-76.833312, 38.074688],\n              [-76.833376, 38.074747],\n              [-76.833966, 38.075285],\n              [-76.834379, 38.075662],\n              [-76.835859, 38.077011],\n              [-76.839788, 38.080594],\n              [-76.839822, 38.080625],\n              [-76.842908, 38.083447],\n              [-76.84305, 38.083576],\n              [-76.849715, 38.089608],\n              [-76.850632, 38.090414],\n              [-76.851501, 38.091225],\n              [-76.85155, 38.091221],\n              [-76.851582, 38.091321],\n              [-76.851666, 38.091588],\n              [-76.851694, 38.091931],\n              [-76.852071, 38.092412],\n              [-76.852447, 38.092663],\n              [-76.853403, 38.093144],\n              [-76.854358, 38.093785],\n              [-76.854445, 38.093945],\n              [-76.854706, 38.094128],\n              [-76.855372, 38.094334],\n              [-76.855603, 38.094586],\n              [-76.856095, 38.095822],\n              [-76.856095, 38.096486],\n              [-76.856327, 38.096943],\n              [-76.85679, 38.097561],\n              [-76.857051, 38.098362],\n              [-76.857804, 38.098889],\n              [-76.858006, 38.099186],\n              [-76.858498, 38.09937],\n              [-76.858759, 38.09969],\n              [-76.859599, 38.09985],\n              [-76.860439, 38.100514],\n              [-76.861047, 38.100812],\n              [-76.862263, 38.101681],\n              [-76.862496, 38.102049],\n              [-76.862582, 38.102185],\n              [-76.863392, 38.102643],\n              [-76.863624, 38.103169],\n              [-76.863827, 38.103489],\n              [-76.864348, 38.104267],\n              [-76.864927, 38.106441],\n              [-76.865391, 38.107059],\n              [-76.865941, 38.107654],\n              [-76.866144, 38.108364],\n              [-76.866346, 38.108707],\n              [-76.866433, 38.109234],\n              [-76.866897, 38.110172],\n              [-76.867013, 38.111522],\n              [-76.866839, 38.112254],\n              [-76.866607, 38.113032],\n              [-76.866983, 38.113536],\n              [-76.867997, 38.114474],\n              [-76.868142, 38.115527],\n              [-76.868113, 38.115824],\n              [-76.8682, 38.11658],\n              [-76.868663, 38.117289],\n              [-76.869504, 38.117976],\n              [-76.870373, 38.11793],\n              [-76.871444, 38.118273],\n              [-76.871821, 38.118662],\n              [-76.871908, 38.118937],\n              [-76.87214, 38.119829],\n              [-76.872516, 38.120287],\n              [-76.872574, 38.120401],\n              [-76.87269, 38.120424],\n              [-76.872835, 38.121202],\n              [-76.872893, 38.122095],\n              [-76.873762, 38.122827],\n              [-76.874602, 38.123262],\n              [-76.876399, 38.123903],\n              [-76.87692, 38.124246],\n              [-76.876891, 38.124452],\n              [-76.877064, 38.124366],\n              [-76.888492, 38.115987],\n              [-76.88862, 38.115893],\n              [-76.89028, 38.114684],\n              [-76.89335, 38.112443],\n              [-76.89478, 38.1114],\n              [-76.894827, 38.111365],\n              [-76.895436, 38.110922],\n              [-76.899026, 38.108303],\n              [-76.899045, 38.10829],\n              [-76.901797, 38.106092],\n              [-76.901888, 38.106019],\n              [-76.903963, 38.105278],\n              [-76.904734, 38.104936],\n              [-76.905786, 38.104203],\n              [-76.906221, 38.103507],\n              [-76.90671, 38.10271],\n              [-76.908281, 38.101139],\n              [-76.909037, 38.100253],\n              [-76.909273, 38.099663],\n              [-76.90938, 38.099445],\n              [-76.909647, 38.099333],\n              [-76.909922, 38.099049],\n              [-76.910593, 38.098407],\n              [-76.911394, 38.097443],\n              [-76.912103, 38.097188],\n              [-76.913434, 38.097166],\n              [-76.914506, 38.097371],\n              [-76.914911, 38.097211],\n              [-76.915201, 38.096913],\n              [-76.916069, 38.095815],\n              [-76.916792, 38.095082],\n              [-76.918153, 38.094349],\n              [-76.918964, 38.094212],\n              [-76.919774, 38.093616],\n              [-76.921222, 38.093387],\n              [-76.921922, 38.093067],\n              [-76.921974, 38.093043],\n              [-76.922553, 38.092608],\n              [-76.92345, 38.091532],\n              [-76.924288, 38.089861],\n              [-76.925649, 38.089494],\n              [-76.92892, 38.088326],\n              [-76.929673, 38.087799],\n              [-76.93028, 38.087181],\n              [-76.930859, 38.086746],\n              [-76.931206, 38.086563],\n              [-76.932364, 38.086585],\n              [-76.932885, 38.086402],\n              [-76.93358, 38.086127],\n              [-76.934651, 38.085874],\n              [-76.935317, 38.085485],\n              [-76.935885, 38.085116],\n              [-76.936445, 38.084752],\n              [-76.936735, 38.08466],\n              [-76.937922, 38.084911],\n              [-76.937863, 38.083904],\n              [-76.937979, 38.083721],\n              [-76.938008, 38.08347],\n              [-76.937805, 38.083241],\n              [-76.937457, 38.082692],\n              [-76.936878, 38.082532],\n              [-76.935691, 38.082578],\n              [-76.934938, 38.082464],\n              [-76.934706, 38.082121],\n              [-76.93459, 38.081847],\n              [-76.935429, 38.08164],\n              [-76.935458, 38.081343],\n              [-76.935226, 38.081137],\n              [-76.935168, 38.080885],\n              [-76.935226, 38.080725],\n              [-76.935251, 38.080656],\n              [-76.935265, 38.080616],\n              [-76.935333, 38.08059],\n              [-76.935517, 38.080482],\n              [-76.935923, 38.080235],\n              [-76.936159, 38.079889],\n              [-76.936563, 38.078468],\n              [-76.936813, 38.077588],\n              [-76.936886, 38.077335],\n              [-76.936961, 38.077082],\n              [-76.939266, 38.077619],\n              [-76.94157, 38.078156],\n              [-76.942681, 38.078413],\n              [-76.942825, 38.07845],\n              [-76.947912, 38.079645],\n              [-76.95569, 38.081337],\n              [-76.966374, 38.083662],\n              [-76.977059, 38.085987],\n              [-76.977414, 38.086064],\n              [-76.977769, 38.086142],\n              [-76.98402, 38.087502],\n              [-76.989288, 38.091634],\n              [-76.989618, 38.092343],\n              [-76.989617, 38.092569],\n              [-76.989877, 38.092902],\n              [-76.990124, 38.093432],\n              [-76.990613, 38.09429],\n              [-76.990473, 38.096096],\n              [-76.988095, 38.100344],\n              [-76.987734, 38.10236],\n              [-76.987875, 38.102998],\n              [-76.988046, 38.103776],\n              [-76.98899, 38.106066],\n              [-76.989514, 38.106738],\n              [-76.989589, 38.106834],\n              [-76.993487, 38.108673],\n              [-76.995319, 38.109561],\n              [-76.999696, 38.110308],\n              [-76.999795, 38.11024],\n              [-77.002195, 38.11024],\n              [-77.002595, 38.11014],\n              [-77.002695, 38.11014],\n              [-77.002995, 38.10994],\n              [-77.003395, 38.10974],\n              [-77.003795, 38.10924],\n              [-77.004295, 38.10874],\n              [-77.004795, 38.10834],\n              [-77.005095, 38.10794],\n              [-77.005495, 38.10734],\n              [-77.005895, 38.10664],\n              [-77.006495, 38.10574],\n              [-77.007295, 38.10414],\n              [-77.007795, 38.10324],\n              [-77.008995, 38.10084],\n              [-77.009295, 38.09994],\n              [-77.009487, 38.099508],\n              [-77.00949, 38.099502],\n              [-77.009659, 38.099094],\n              [-77.009908, 38.098563],\n              [-77.009995, 38.09844],\n              [-77.010103, 38.098296],\n              [-77.010482, 38.097795],\n              [-77.010862, 38.097258],\n              [-77.011093, 38.096929],\n              [-77.011295, 38.09664],\n              [-77.011795, 38.09604],\n              [-77.012112, 38.095786],\n              [-77.012295, 38.09564],\n              [-77.012459, 38.095421],\n              [-77.012595, 38.09524],\n              [-77.012992, 38.094937],\n              [-77.013095, 38.09484],\n              [-77.013489, 38.094525],\n              [-77.013595, 38.09444],\n              [-77.014195, 38.09384],\n              [-77.014695, 38.09354],\n              [-77.015557, 38.093315],\n              [-77.015921, 38.093225],\n              [-77.016596, 38.093041],\n              [-77.017448, 38.092859],\n              [-77.017996, 38.092741],\n              [-77.018596, 38.092541],\n              [-77.019496, 38.092441],\n              [-77.020296, 38.092241],\n              [-77.021596, 38.092041],\n              [-77.022796, 38.091841],\n              [-77.022885, 38.091831],\n              [-77.022904, 38.091829],\n              [-77.023696, 38.091741],\n              [-77.024894, 38.091372],\n              [-77.024912, 38.091366],\n              [-77.024996, 38.091341],\n              [-77.026796, 38.091041],\n              [-77.028096, 38.090841],\n              [-77.028996, 38.090741],\n              [-77.030096, 38.090741],\n              [-77.030996, 38.090941],\n              [-77.031296, 38.091041],\n              [-77.031677, 38.091269],\n              [-77.031691, 38.091277],\n              [-77.031796, 38.091341],\n              [-77.032396, 38.091741],\n              [-77.032996, 38.092241],\n              [-77.033296, 38.092541],\n              [-77.033496, 38.092841],\n              [-77.033496, 38.09294],\n              [-77.033596, 38.09304],\n              [-77.033696, 38.09324],\n              [-77.033696, 38.09354],\n              [-77.033796, 38.09364],\n              [-77.033796, 38.09384],\n              [-77.033996, 38.09444],\n              [-77.033996, 38.09484],\n              [-77.034096, 38.09534],\n              [-77.034096, 38.09594],\n              [-77.034183, 38.096721],\n              [-77.034185, 38.096735],\n              [-77.034196, 38.09684],\n              [-77.034096, 38.09754],\n              [-77.034096, 38.09824],\n              [-77.034013, 38.098988],\n              [-77.034012, 38.099001],\n              [-77.033996, 38.09914],\n              [-77.033996, 38.10024],\n              [-77.034196, 38.10084],\n              [-77.034285, 38.101018],\n              [-77.03429, 38.101029],\n              [-77.034396, 38.10124],\n              [-77.034696, 38.10154],\n              [-77.035096, 38.10204],\n              [-77.035496, 38.10244],\n              [-77.036496, 38.10324],\n              [-77.036996, 38.10354],\n              [-77.037396, 38.10394],\n              [-77.03758, 38.104032],\n              [-77.037589, 38.104036],\n              [-77.037796, 38.10414],\n              [-77.038296, 38.10444],\n              [-77.039196, 38.10494],\n              [-77.039896, 38.10524],\n              [-77.040596, 38.10564],\n              [-77.041396, 38.10604],\n              [-77.042196, 38.10654],\n              [-77.042896, 38.10694],\n              [-77.042961, 38.106977],\n              [-77.04356, 38.107319],\n              [-77.043703, 38.107401],\n              [-77.044296, 38.10774],\n              [-77.045097, 38.10814],\n              [-77.045797, 38.10844],\n              [-77.046497, 38.10864],\n              [-77.047197, 38.10894],\n              [-77.047882, 38.109168],\n              [-77.047888, 38.10917],\n              [-77.048097, 38.10924],\n              [-77.049697, 38.10984],\n              [-77.049745, 38.109878],\n              [-77.04975, 38.109882],\n              [-77.050197, 38.11024],\n              [-77.050411, 38.110411],\n              [-77.050697, 38.11064],\n              [-77.051197, 38.11104],\n              [-77.051597, 38.11174],\n              [-77.051722, 38.112022],\n              [-77.051997, 38.11264],\n              [-77.052297, 38.11354],\n              [-77.052297, 38.11404],\n              [-77.052197, 38.11464],\n              [-77.051697, 38.11614],\n              [-77.051297, 38.11794],\n              [-77.050997, 38.11894],\n              [-77.050697, 38.11984],\n              [-77.050597, 38.12084],\n              [-77.050633, 38.120985],\n              [-77.050797, 38.12164],\n              [-77.051197, 38.12224],\n              [-77.051497, 38.12304],\n              [-77.051897, 38.12394],\n              [-77.051997, 38.12484],\n              [-77.051947, 38.12514],\n              [-77.052489, 38.129838],\n              [-77.052514, 38.130057],\n              [-77.05254, 38.130276],\n              [-77.052618, 38.130958],\n              [-77.052697, 38.13164],\n              [-77.052697, 38.13254],\n              [-77.052797, 38.13304],\n              [-77.052897, 38.13344],\n              [-77.052797, 38.13384],\n              [-77.052697, 38.134339],\n              [-77.052497, 38.134939],\n              [-77.052297, 38.135939],\n              [-77.052297, 38.136539],\n              [-77.052197, 38.137239],\n              [-77.052197, 38.137739],\n              [-77.052097, 38.138139],\n              [-77.051997, 38.138639],\n              [-77.051797, 38.139039],\n              [-77.051797, 38.140539],\n              [-77.051897, 38.141139],\n              [-77.051897, 38.141839],\n              [-77.052097, 38.143039],\n              [-77.052097, 38.143739],\n              [-77.052197, 38.144339],\n              [-77.052497, 38.144839],\n              [-77.052597, 38.145139],\n              [-77.052697, 38.145639],\n              [-77.052897, 38.146239],\n              [-77.053097, 38.146939],\n              [-77.053397, 38.147639],\n              [-77.053786, 38.14832],\n              [-77.053797, 38.148339],\n              [-77.053997, 38.148839],\n              [-77.054297, 38.149439],\n              [-77.054697, 38.150039],\n              [-77.054997, 38.150439],\n              [-77.055197, 38.150939],\n              [-77.055397, 38.151539],\n              [-77.055597, 38.152539],\n              [-77.055597, 38.153339],\n              [-77.055997, 38.154139],\n              [-77.056024, 38.154176],\n              [-77.056297, 38.154539],\n              [-77.056497, 38.154939],\n              [-77.056597, 38.155439],\n              [-77.056697, 38.156039],\n              [-77.056797, 38.156539],\n              [-77.056883, 38.156711],\n              [-77.05692, 38.156764],\n              [-77.057199, 38.157339],\n              [-77.057497, 38.157639],\n              [-77.057697, 38.158039],\n              [-77.057897, 38.158539],\n              [-77.058197, 38.158939],\n              [-77.058297, 38.159239],\n              [-77.058497, 38.159539],\n              [-77.058897, 38.159739],\n              [-77.059197, 38.160139],\n              [-77.059997, 38.160739],\n              [-77.060297, 38.161039],\n              [-77.060697, 38.161239],\n              [-77.060897, 38.161239],\n              [-77.061297, 38.161439],\n              [-77.061445, 38.161488],\n              [-77.061597, 38.161539],\n              [-77.061697, 38.161639],\n              [-77.061684, 38.161651],\n              [-77.061645, 38.16169],\n              [-77.061633, 38.161703],\n              [-77.06161, 38.161725],\n              [-77.061597, 38.161739],\n              [-77.061562, 38.161808],\n              [-77.061548, 38.161837],\n              [-77.061497, 38.161939],\n              [-77.061492, 38.16204],\n              [-77.061456, 38.16204],\n              [-77.061472, 38.162172],\n              [-77.061585, 38.162272],\n              [-77.06161, 38.162389],\n              [-77.061762, 38.162705],\n              [-77.061836, 38.162903],\n              [-77.061851, 38.162954],\n              [-77.061839, 38.163343],\n              [-77.061851, 38.163445],\n              [-77.061863, 38.163524],\n              [-77.061878, 38.163542],\n              [-77.061919, 38.16359],\n              [-77.061929, 38.163596],\n              [-77.061995, 38.16364],\n              [-77.062134, 38.163684],\n              [-77.062225, 38.163783],\n              [-77.062256, 38.16385],\n              [-77.062273, 38.163887],\n              [-77.062343, 38.163958],\n              [-77.062447, 38.164019],\n              [-77.062642, 38.164101],\n              [-77.062698, 38.164161],\n              [-77.062712, 38.1642],\n              [-77.062698, 38.164233],\n              [-77.062663, 38.164266],\n              [-77.062579, 38.16431],\n              [-77.062343, 38.164392],\n              [-77.062315, 38.164452],\n              [-77.062336, 38.164568],\n              [-77.062329, 38.164585],\n              [-77.062287, 38.164694],\n              [-77.062364, 38.16476],\n              [-77.062531, 38.164854],\n              [-77.062579, 38.164881],\n              [-77.062694, 38.164975],\n              [-77.062781, 38.165046],\n              [-77.062865, 38.165068],\n              [-77.062927, 38.165051],\n              [-77.063219, 38.164858],\n              [-77.063261, 38.164831],\n              [-77.063275, 38.164799],\n              [-77.063257, 38.164681],\n              [-77.063254, 38.164661],\n              [-77.063282, 38.164595],\n              [-77.063311, 38.164574],\n              [-77.063359, 38.16454],\n              [-77.063484, 38.164535],\n              [-77.063682, 38.164556],\n              [-77.063685, 38.164557],\n              [-77.063805, 38.164595],\n              [-77.063847, 38.164608],\n              [-77.063929, 38.164634],\n              [-77.063967, 38.16466],\n              [-77.064004, 38.164685],\n              [-77.064026, 38.1647],\n              [-77.064068, 38.164755],\n              [-77.06407, 38.164782],\n              [-77.064075, 38.164831],\n              [-77.064033, 38.164919],\n              [-77.063908, 38.165057],\n              [-77.063895, 38.16509],\n              [-77.063873, 38.165155],\n              [-77.063873, 38.165238],\n              [-77.063943, 38.16532],\n              [-77.06404, 38.165403],\n              [-77.064228, 38.165485],\n              [-77.064353, 38.16549],\n              [-77.06452, 38.165468],\n              [-77.064562, 38.16549],\n              [-77.064625, 38.165556],\n              [-77.064722, 38.165798],\n              [-77.064715, 38.165864],\n              [-77.064673, 38.165902],\n              [-77.064562, 38.165968],\n              [-77.064513, 38.166073],\n              [-77.064541, 38.16616],\n              [-77.064673, 38.166386],\n              [-77.064722, 38.166517],\n              [-77.064715, 38.166572],\n              [-77.064708, 38.166644],\n              [-77.06466, 38.166748],\n              [-77.064548, 38.166869],\n              [-77.064284, 38.167061],\n              [-77.064221, 38.167122],\n              [-77.064207, 38.167171],\n              [-77.064381, 38.167528],\n              [-77.064388, 38.167627],\n              [-77.064374, 38.167671],\n              [-77.064333, 38.167704],\n              [-77.064249, 38.167731],\n              [-77.06404, 38.167759],\n              [-77.06395, 38.167814],\n              [-77.063922, 38.167857],\n              [-77.063839, 38.168127],\n              [-77.063797, 38.16844],\n              [-77.063825, 38.168555],\n              [-77.063881, 38.168698],\n              [-77.063873, 38.16889],\n              [-77.063915, 38.169044],\n              [-77.064207, 38.169576],\n              [-77.064249, 38.16973],\n              [-77.064284, 38.169966],\n              [-77.06427, 38.170235],\n              [-77.064277, 38.170411],\n              [-77.064402, 38.170658],\n              [-77.064409, 38.170697],\n              [-77.064395, 38.170763],\n              [-77.064298, 38.171021],\n              [-77.064291, 38.17107],\n              [-77.064305, 38.171191],\n              [-77.064305, 38.171389],\n              [-77.06427, 38.171564],\n              [-77.064291, 38.171674],\n              [-77.064249, 38.171812],\n              [-77.064131, 38.172004],\n              [-77.064128, 38.172007],\n              [-77.063895, 38.172306],\n              [-77.063547, 38.172597],\n              [-77.063498, 38.17263],\n              [-77.063428, 38.172646],\n              [-77.063366, 38.172679],\n              [-77.063317, 38.172723],\n              [-77.063331, 38.172817],\n              [-77.063359, 38.172888],\n              [-77.063352, 38.172921],\n              [-77.063282, 38.17302],\n              [-77.063157, 38.17313],\n              [-77.063088, 38.173163],\n              [-77.06299, 38.173152],\n              [-77.062914, 38.173163],\n              [-77.062865, 38.173179],\n              [-77.062795, 38.173234],\n              [-77.062735, 38.173305],\n              [-77.062642, 38.173415],\n              [-77.062474, 38.173568],\n              [-77.062378, 38.173657],\n              [-77.062302, 38.173794],\n              [-77.062302, 38.174074],\n              [-77.062357, 38.174431],\n              [-77.062315, 38.174525],\n              [-77.062238, 38.174552],\n              [-77.062148, 38.174585],\n              [-77.062023, 38.17459],\n              [-77.061879, 38.174548],\n              [-77.061689, 38.174492],\n              [-77.061555, 38.174474],\n              [-77.061522, 38.17447],\n              [-77.061063, 38.174536],\n              [-77.06082, 38.17453],\n              [-77.060604, 38.174514],\n              [-77.060561, 38.174521],\n              [-77.060472, 38.174536],\n              [-77.060237, 38.174594],\n              [-77.060187, 38.174607],\n              [-77.059953, 38.174628],\n              [-77.059887, 38.174635],\n              [-77.059741, 38.174678],\n              [-77.059393, 38.174882],\n              [-77.059261, 38.174926],\n              [-77.059165, 38.174923],\n              [-77.059059, 38.17492],\n              [-77.058883, 38.174886],\n              [-77.058831, 38.174876],\n              [-77.058802, 38.174871],\n              [-77.058684, 38.174882],\n              [-77.058677, 38.174885],\n              [-77.05863, 38.174907],\n              [-77.05861, 38.174916],\n              [-77.058566, 38.174937],\n              [-77.05855, 38.174945],\n              [-77.058532, 38.174957],\n              [-77.058507, 38.174971],\n              [-77.058432, 38.175014],\n              [-77.058408, 38.175029],\n              [-77.058322, 38.175079],\n              [-77.058155, 38.17514],\n              [-77.058127, 38.175144],\n              [-77.05803, 38.175162],\n              [-77.057814, 38.175233],\n              [-77.057696, 38.175316],\n              [-77.057411, 38.17564],\n              [-77.057401, 38.175648],\n              [-77.057251, 38.175782],\n              [-77.057195, 38.17587],\n              [-77.057077, 38.17598],\n              [-77.056986, 38.17603],\n              [-77.056938, 38.176057],\n              [-77.056722, 38.176123],\n              [-77.056516, 38.176163],\n              [-77.056304, 38.176205],\n              [-77.056218, 38.176217],\n              [-77.055957, 38.176256],\n              [-77.055664, 38.176299],\n              [-77.055414, 38.176299],\n              [-77.055167, 38.176265],\n              [-77.054725, 38.176205],\n              [-77.054141, 38.176178],\n              [-77.053619, 38.176101],\n              [-77.052797, 38.176004],\n              [-77.052777, 38.176002],\n              [-77.052673, 38.17598],\n              [-77.052464, 38.175991],\n              [-77.05204, 38.176123],\n              [-77.052026, 38.176127],\n              [-77.051843, 38.176173],\n              [-77.051741, 38.176199],\n              [-77.051643, 38.176254],\n              [-77.051483, 38.176419],\n              [-77.05142, 38.176507],\n              [-77.051412, 38.176513],\n              [-77.051269, 38.176636],\n              [-77.051247, 38.176655],\n              [-77.051076, 38.176768],\n              [-77.050718, 38.177007],\n              [-77.050537, 38.17716],\n              [-77.050519, 38.177189],\n              [-77.050363, 38.177462],\n              [-77.050293, 38.177688],\n              [-77.050168, 38.177819],\n              [-77.050217, 38.177924],\n              [-77.050592, 38.178259],\n              [-77.050857, 38.17861],\n              [-77.050872, 38.178633],\n              [-77.050899, 38.178676],\n              [-77.050899, 38.178726],\n              [-77.051114, 38.178852],\n              [-77.05142, 38.178995],\n              [-77.051671, 38.17916],\n              [-77.051831, 38.179291],\n              [-77.051879, 38.179407],\n              [-77.051859, 38.179533],\n              [-77.051685, 38.180148],\n              [-77.051636, 38.180686],\n              [-77.051587, 38.18078],\n              [-77.051524, 38.180829],\n              [-77.051434, 38.180868],\n              [-77.051323, 38.180961],\n              [-77.051232, 38.181126],\n              [-77.051107, 38.181252],\n              [-77.050912, 38.181367],\n              [-77.050759, 38.181433],\n              [-77.050383, 38.18173],\n              [-77.050251, 38.181812],\n              [-77.049974, 38.181944],\n              [-77.049757, 38.182048],\n              [-77.049632, 38.182098],\n              [-77.049576, 38.182092],\n              [-77.049334, 38.18218],\n              [-77.049214, 38.182224],\n              [-77.048964, 38.182301],\n              [-77.048727, 38.182345],\n              [-77.048484, 38.182452],\n              [-77.048194, 38.184687],\n              [-77.048182, 38.184762],\n              [-77.048184, 38.185057],\n              [-77.048293, 38.186615],\n              [-77.048275, 38.187012],\n              [-77.048221, 38.188204],\n              [-77.048216, 38.188335],\n              [-77.048195, 38.188601],\n              [-77.048181, 38.188888],\n              [-77.048142, 38.189748],\n              [-77.048129, 38.190036],\n              [-77.048051, 38.191606],\n              [-77.047819, 38.196319],\n              [-77.047742, 38.19789],\n              [-77.047732, 38.19809],\n              [-77.047703, 38.19869],\n              [-77.047694, 38.198891],\n              [-77.047681, 38.199161],\n              [-77.047641, 38.199972],\n              [-77.047629, 38.200243],\n              [-77.047618, 38.200465],\n              [-77.047584, 38.201133],\n              [-77.047574, 38.201356],\n              [-77.047572, 38.201403],\n              [-77.04755, 38.201835],\n              [-77.04748, 38.203274],\n              [-77.047457, 38.203754],\n              [-77.047456, 38.203762],\n              [-77.047455, 38.203787],\n              [-77.047455, 38.203796],\n              [-77.047452, 38.203856],\n              [-77.04745, 38.203904],\n              [-77.047443, 38.204037],\n              [-77.04744, 38.204098],\n              [-77.047435, 38.204178],\n              [-77.04743, 38.2043],\n              [-77.047423, 38.204421],\n              [-77.04742, 38.204503],\n              [-77.047411, 38.204677],\n              [-77.047386, 38.205201],\n              [-77.047378, 38.205376],\n              [-77.047373, 38.205473],\n              [-77.047371, 38.205501],\n              [-77.047352, 38.205876],\n              [-77.047347, 38.206002],\n              [-77.04734, 38.206124],\n              [-77.047332, 38.206309],\n              [-77.047322, 38.206493],\n              [-77.047317, 38.206617],\n              [-77.047315, 38.206654],\n              [-77.047313, 38.20671],\n              [-77.047309, 38.206765],\n              [-77.047308, 38.206803],\n              [-77.047071, 38.21173],\n              [-77.046761, 38.218039],\n              [-77.04676, 38.218061],\n              [-77.046725, 38.218768],\n              [-77.046622, 38.220889],\n              [-77.046591, 38.221539],\n              [-77.046588, 38.221596],\n              [-77.046488, 38.223638],\n              [-77.04619, 38.229767],\n              [-77.046091, 38.23181],\n              [-77.046087, 38.231879],\n              [-77.046077, 38.232085],\n              [-77.046074, 38.232155],\n              [-77.046065, 38.232339],\n              [-77.046053, 38.232582],\n              [-77.04599, 38.233865],\n              [-77.04597, 38.234293],\n              [-77.045866, 38.236418],\n              [-77.045555, 38.242794],\n              [-77.045452, 38.24492],\n              [-77.045425, 38.245463],\n              [-77.045346, 38.247091],\n              [-77.04532, 38.247635],\n              [-77.045245, 38.248478],\n              [-77.045098, 38.250137],\n              [-77.045097, 38.250836],\n              [-77.045074, 38.251011],\n              [-77.044966, 38.251852],\n              [-77.044929, 38.252125],\n              [-77.044821, 38.252947],\n              [-77.044797, 38.253136],\n              [-77.044819, 38.253219],\n              [-77.04483, 38.253262],\n              [-77.044832, 38.253273],\n              [-77.044872, 38.253436],\n              [-77.044886, 38.253491],\n              [-77.044898, 38.253537],\n              [-77.044896, 38.253609],\n              [-77.044891, 38.253968],\n              [-77.04489, 38.254088],\n              [-77.044883, 38.254502],\n              [-77.044865, 38.255745],\n              [-77.044862, 38.256013],\n              [-77.044859, 38.25616],\n              [-77.044859, 38.256186],\n              [-77.044848, 38.256928],\n              [-77.044814, 38.259233],\n              [-77.044803, 38.260002],\n              [-77.044803, 38.260155],\n              [-77.044801, 38.260332],\n              [-77.044801, 38.260415],\n              [-77.044736, 38.260419],\n              [-77.044614, 38.260429],\n              [-77.044548, 38.260454],\n              [-77.044488, 38.260478],\n              [-77.044431, 38.2605],\n              [-77.04426, 38.260567],\n              [-77.044204, 38.26059],\n              [-77.044146, 38.260613],\n              [-77.044097, 38.260627],\n              [-77.043897, 38.260689],\n              [-77.043769, 38.260711],\n              [-77.043658, 38.260731],\n              [-77.043626, 38.260736],\n              [-77.043585, 38.260744],\n              [-77.043538, 38.26077],\n              [-77.043511, 38.260787],\n              [-77.043401, 38.26085],\n              [-77.043119, 38.261015],\n              [-77.043066, 38.26103],\n              [-77.042944, 38.261066],\n              [-77.042903, 38.261077],\n              [-77.042835, 38.261097],\n              [-77.042781, 38.261101],\n              [-77.04274, 38.261105],\n              [-77.04271, 38.261107],\n              [-77.042621, 38.261115],\n              [-77.042592, 38.261118],\n              [-77.042555, 38.261109],\n              [-77.042446, 38.261085],\n              [-77.04241, 38.261077],\n              [-77.042371, 38.261016],\n              [-77.042315, 38.26093],\n              [-77.042216, 38.260878],\n              [-77.042153, 38.260845],\n              [-77.042046, 38.260832],\n              [-77.041985, 38.260826],\n              [-77.041725, 38.260828],\n              [-77.041618, 38.260829],\n              [-77.041546, 38.260829],\n              [-77.041505, 38.260826],\n              [-77.041478, 38.260824],\n              [-77.041396, 38.260818],\n              [-77.041295, 38.260811],\n              [-77.041155, 38.260771],\n              [-77.041077, 38.260749],\n              [-77.040731, 38.260837],\n              [-77.04064, 38.260836],\n              [-77.040132, 38.260831],\n              [-77.039786, 38.260909],\n              [-77.039509, 38.260985],\n              [-77.039317, 38.260992],\n              [-77.039258, 38.260995],\n              [-77.039135, 38.260977],\n              [-77.038874, 38.260941],\n              [-77.03869, 38.260829],\n              [-77.03862, 38.260779],\n              [-77.038559, 38.260718],\n              [-77.038504, 38.260586],\n              [-77.038464, 38.260471],\n              [-77.038445, 38.260349],\n              [-77.038451, 38.260284],\n              [-77.037998, 38.260009],\n              [-77.037992, 38.259985],\n              [-77.037919, 38.259947],\n              [-77.037857, 38.25985],\n              [-77.037766, 38.259831],\n              [-77.037664, 38.259646],\n              [-77.037426, 38.259451],\n              [-77.037044, 38.259194],\n              [-77.036716, 38.259013],\n              [-77.036675, 38.258933],\n              [-77.036627, 38.258906],\n              [-77.036563, 38.258871],\n              [-77.035583, 38.258599],\n              [-77.035119, 38.258625],\n              [-77.034931, 38.258634],\n              [-77.034674, 38.258734],\n              [-77.034421, 38.259156],\n              [-77.034473, 38.25922],\n              [-77.034486, 38.259237],\n              [-77.034565, 38.259335],\n              [-77.034602, 38.259395],\n              [-77.03459, 38.259477],\n              [-77.03446, 38.259567],\n              [-77.034175, 38.25982],\n              [-77.03393, 38.260049],\n              [-77.033816, 38.260319],\n              [-77.033795, 38.260395],\n              [-77.033941, 38.260455],\n              [-77.034243, 38.260528],\n              [-77.034273, 38.260603],\n              [-77.034541, 38.260731],\n              [-77.034612, 38.260791],\n              [-77.034756, 38.260914],\n              [-77.034823, 38.261094],\n              [-77.034813, 38.261226],\n              [-77.034712, 38.261348],\n              [-77.034657, 38.261348],\n              [-77.034415, 38.261352],\n              [-77.034238, 38.261354],\n              [-77.034213, 38.261347],\n              [-77.033796, 38.261243],\n              [-77.03362, 38.261225],\n              [-77.033419, 38.261205],\n              [-77.033342, 38.261197],\n              [-77.033286, 38.261192],\n              [-77.033111, 38.261194],\n              [-77.033034, 38.261196],\n              [-77.032987, 38.261197],\n              [-77.03297, 38.261198],\n              [-77.032779, 38.261221],\n              [-77.032716, 38.261229],\n              [-77.032525, 38.261359],\n              [-77.032577, 38.261419],\n              [-77.032573, 38.261434],\n              [-77.032517, 38.261414],\n              [-77.032508, 38.261473],\n              [-77.032489, 38.261601],\n              [-77.032593, 38.261953],\n              [-77.032626, 38.262031],\n              [-77.032686, 38.262171],\n              [-77.032701, 38.262207],\n              [-77.032698, 38.262267],\n              [-77.032691, 38.262448],\n              [-77.032689, 38.262509],\n              [-77.032628, 38.262586],\n              [-77.032448, 38.262817],\n              [-77.032388, 38.262895],\n              [-77.032379, 38.262906],\n              [-77.032368, 38.262921],\n              [-77.032355, 38.262943],\n              [-77.032349, 38.262957],\n              [-77.032326, 38.263],\n              [-77.032279, 38.263088],\n              [-77.03221, 38.263218],\n              [-77.032269, 38.263474],\n              [-77.032289, 38.263562],\n              [-77.03235, 38.263647],\n              [-77.032469, 38.263813],\n              [-77.032618, 38.263759],\n              [-77.03285, 38.263774],\n              [-77.033109, 38.263826],\n              [-77.03341, 38.26387],\n              [-77.033722, 38.264185],\n              [-77.033646, 38.264435],\n              [-77.033486, 38.264548],\n              [-77.032974, 38.264913],\n              [-77.032842, 38.264951],\n              [-77.032781, 38.264993],\n              [-77.032451, 38.265222],\n              [-77.032025, 38.265244],\n              [-77.031761, 38.265303],\n              [-77.031392, 38.265417],\n              [-77.031003, 38.265607],\n              [-77.029593, 38.26609],\n              [-77.029426, 38.266112],\n              [-77.02936, 38.266149],\n              [-77.029325, 38.266199],\n              [-77.029222, 38.266348],\n              [-77.029188, 38.266399],\n              [-77.029095, 38.266492],\n              [-77.029073, 38.266516],\n              [-77.028997, 38.266836],\n              [-77.028997, 38.267836],\n              [-77.028797, 38.268136],\n              [-77.028197, 38.268536],\n              [-77.027777, 38.268619],\n              [-77.027697, 38.268636],\n              [-77.027079, 38.268527],\n              [-77.026697, 38.268336],\n              [-77.025697, 38.268536],\n              [-77.025593, 38.268587],\n              [-77.025297, 38.268736],\n              [-77.025239, 38.268748],\n              [-77.024855, 38.268824],\n              [-77.024797, 38.268836],\n              [-77.023997, 38.268836],\n              [-77.023697, 38.268736],\n              [-77.023397, 38.268736],\n              [-77.023197, 38.268636],\n              [-77.022897, 38.268636],\n              [-77.022497, 38.268736],\n              [-77.022319, 38.268824],\n              [-77.022297, 38.268836],\n              [-77.021797, 38.269336],\n              [-77.021597, 38.269436],\n              [-77.021518, 38.269488],\n              [-77.021297, 38.269636],\n              [-77.020997, 38.269636],\n              [-77.020697, 38.269736],\n              [-77.019897, 38.269736],\n              [-77.019297, 38.269836],\n              [-77.018597, 38.269836],\n              [-77.018435, 38.269816],\n              [-77.017797, 38.269736],\n              [-77.017397, 38.269536],\n              [-77.017097, 38.269436],\n              [-77.016297, 38.269236],\n              [-77.015897, 38.269336],\n              [-77.014897, 38.269336],\n              [-77.014551, 38.269422],\n              [-77.014497, 38.269436],\n              [-77.014197, 38.269636],\n              [-77.013997, 38.269736],\n              [-77.013941, 38.269903],\n              [-77.013897, 38.270036],\n              [-77.013997, 38.270236],\n              [-77.013997, 38.270636],\n              [-77.013897, 38.271036],\n              [-77.013886, 38.271062],\n              [-77.013698, 38.271533],\n              [-77.013697, 38.271536],\n              [-77.013597, 38.271736],\n              [-77.013397, 38.271936],\n              [-77.012897, 38.272036],\n              [-77.012497, 38.272236],\n              [-77.011597, 38.272236],\n              [-77.011197, 38.272336],\n              [-77.010597, 38.272536],\n              [-77.010576, 38.272544],\n              [-77.010097, 38.272736],\n              [-77.009497, 38.272936],\n              [-77.009197, 38.273136],\n              [-77.008797, 38.273336],\n              [-77.008297, 38.273836],\n              [-77.007697, 38.274636],\n              [-77.007525, 38.275151],\n              [-77.007497, 38.275236],\n              [-77.007397, 38.275736],\n              [-77.007397, 38.276036],\n              [-77.007497, 38.276436],\n              [-77.007526, 38.276522],\n              [-77.007597, 38.276736],\n              [-77.007597, 38.277136],\n              [-77.007397, 38.277336],\n              [-77.007364, 38.277352],\n              [-77.007197, 38.277436],\n              [-77.006397, 38.277436],\n              [-77.006097, 38.277536],\n              [-77.005997, 38.277436],\n              [-77.005697, 38.277436],\n              [-77.005397, 38.277236],\n              [-77.005097, 38.277136],\n              [-77.004897, 38.277036],\n              [-77.004297, 38.276436],\n              [-77.004098, 38.276235],\n              [-77.003966, 38.276137],\n              [-77.003697, 38.275936],\n              [-77.003551, 38.275888],\n              [-77.003396, 38.275837],\n              [-77.00325, 38.275836],\n              [-77.003097, 38.275836],\n              [-77.003029, 38.275822],\n              [-77.002818, 38.27578],\n              [-77.002675, 38.275752],\n              [-77.002621, 38.275741],\n              [-77.002597, 38.275736],\n              [-77.002462, 38.275769],\n              [-77.002409, 38.275783],\n              [-77.002221, 38.275829],\n              [-77.002197, 38.275836],\n              [-77.001897, 38.275936],\n              [-77.001671, 38.276011],\n              [-77.001597, 38.276036],\n              [-77.001486, 38.276064],\n              [-77.00138, 38.27609],\n              [-77.001197, 38.276136],\n              [-77.00095, 38.276136],\n              [-77.000695, 38.276232],\n              [-77.000329, 38.276371],\n              [-76.999956, 38.276573],\n              [-76.99988, 38.276615],\n              [-76.999697, 38.276644],\n              [-76.997672, 38.278054],\n              [-76.999697, 38.279349],\n              [-76.999987, 38.279515],\n              [-77.00086, 38.280015],\n              [-77.001152, 38.280182],\n              [-77.001269, 38.280345],\n              [-77.001304, 38.280393],\n              [-77.001499, 38.280714],\n              [-77.001541, 38.280843],\n              [-77.001537, 38.280876],\n              [-77.001519, 38.281077],\n              [-77.001533, 38.281438],\n              [-77.001544, 38.281488],\n              [-77.001605, 38.281751],\n              [-77.00177, 38.281927],\n              [-77.002415, 38.282262],\n              [-77.002782, 38.282453],\n              [-77.004528, 38.284919],\n              [-77.005169, 38.285606],\n              [-77.005415, 38.28587],\n              [-77.006179, 38.286692],\n              [-77.008711, 38.288969],\n              [-77.009505, 38.290864],\n              [-77.010666, 38.292775],\n              [-77.012838, 38.294377],\n              [-77.013879, 38.29539],\n              [-77.014592, 38.296084],\n              [-77.016451, 38.298845],\n              [-77.016891, 38.299195],\n              [-77.018296, 38.300311],\n              [-77.018519, 38.300382],\n              [-77.021027, 38.301188],\n              [-77.02351, 38.301463],\n              [-77.025355, 38.302817],\n              [-77.025594, 38.303076],\n              [-77.027007, 38.304613],\n              [-77.027425, 38.304895],\n              [-77.028133, 38.305325],\n              [-77.028215, 38.305843],\n              [-77.028508, 38.306699],\n              [-77.028541, 38.307125],\n              [-77.028504, 38.308098],\n              [-77.028415, 38.308758],\n              [-77.028335, 38.309301],\n              [-77.028459, 38.309554],\n              [-77.028708, 38.310397],\n              [-77.028739, 38.310888],\n              [-77.028767, 38.31139],\n              [-77.028914, 38.311521],\n              [-77.028975, 38.311541],\n              [-77.02906, 38.31157],\n              [-77.029185, 38.311558],\n              [-77.029312, 38.311546],\n              [-77.029489, 38.311531],\n              [-77.029626, 38.311374],\n              [-77.029711, 38.311278],\n              [-77.029908, 38.311342],\n              [-77.030418, 38.31151],\n              [-77.030495, 38.311544],\n              [-77.030685, 38.31163],\n              [-77.03047, 38.311909],\n              [-77.029826, 38.312748],\n              [-77.029612, 38.313028],\n              [-77.02859, 38.314361],\n              [-77.027567, 38.315695],\n              [-77.026973, 38.316469],\n              [-77.02615, 38.317542],\n              [-77.024734, 38.31939],\n              [-77.024456, 38.319751],\n              [-77.021691, 38.323359],\n              [-77.019057, 38.326792],\n              [-77.018647, 38.327328],\n              [-77.016419, 38.330234],\n              [-77.016094, 38.330662],\n              [-77.015122, 38.331946],\n              [-77.014798, 38.332375],\n              [-77.014745, 38.332424],\n              [-77.014586, 38.332575],\n              [-77.014534, 38.332625],\n              [-77.014529, 38.332642],\n              [-77.014516, 38.332697],\n              [-77.014512, 38.332715],\n              [-77.014403, 38.33318],\n              [-77.01468, 38.333509],\n              [-77.014957, 38.33391],\n              [-77.015061, 38.334175],\n              [-77.015068, 38.33432],\n              [-77.015072, 38.334392],\n              [-77.015055, 38.335253],\n              [-77.014801, 38.335704],\n              [-77.014376, 38.336525],\n              [-77.014337, 38.337047],\n              [-77.01435, 38.337731],\n              [-77.014852, 38.338188],\n              [-77.015468, 38.338717],\n              [-77.015717, 38.339033],\n              [-77.016125, 38.339551],\n              [-77.016383, 38.340009],\n              [-77.016499, 38.340639],\n              [-77.016539, 38.340853],\n              [-77.016786, 38.341627],\n              [-77.016809, 38.341696],\n              [-77.01671, 38.342436],\n              [-77.016693, 38.343353],\n              [-77.016453, 38.344615],\n              [-77.016417, 38.344677],\n              [-77.015904, 38.345571],\n              [-77.01579, 38.346832],\n              [-77.015739, 38.347407],\n              [-77.015531, 38.350622],\n              [-77.01545, 38.351886],\n              [-77.015137, 38.35282],\n              [-77.014972, 38.353248],\n              [-77.014844, 38.353584],\n              [-77.01465, 38.354051],\n              [-77.014694, 38.354469],\n              [-77.014718, 38.355313],\n              [-77.014771, 38.355916],\n              [-77.014855, 38.356246],\n              [-77.014838, 38.357138],\n              [-77.014801, 38.357501],\n              [-77.01469, 38.358594],\n              [-77.014656, 38.358938],\n              [-77.014645, 38.359041],\n              [-77.014615, 38.359352],\n              [-77.014605, 38.359456],\n              [-77.014603, 38.359478],\n              [-77.0146, 38.359546],\n              [-77.0146, 38.359569],\n              [-77.014559, 38.36027],\n              [-77.014537, 38.360659],\n              [-77.014602, 38.361397],\n              [-77.014473, 38.362225],\n              [-77.0145, 38.362364],\n              [-77.014576, 38.362748],\n              [-77.014598, 38.363059],\n              [-77.01461, 38.36323],\n              [-77.014787, 38.363856],\n              [-77.014832, 38.36503],\n              [-77.014949, 38.365809],\n              [-77.014989, 38.365937],\n              [-77.015094, 38.366275],\n              [-77.015088, 38.367087],\n              [-77.015172, 38.367674],\n              [-77.015493, 38.368469],\n              [-77.01572, 38.369007],\n              [-77.015834, 38.369288],\n              [-77.015913, 38.371032],\n              [-77.01568, 38.371306],\n              [-77.015538, 38.371547],\n              [-77.015274, 38.372046],\n              [-77.014582, 38.372747],\n              [-77.013747, 38.373352],\n              [-77.013494, 38.373492],\n              [-77.013053, 38.373739],\n              [-77.01189, 38.374345],\n              [-77.011656, 38.374394],\n              [-77.011466, 38.374433],\n              [-77.011508, 38.374569],\n              [-77.011995, 38.374771],\n              [-77.012024, 38.374788],\n              [-77.012112, 38.374841],\n              [-77.012142, 38.374859],\n              [-77.012134, 38.374913],\n              [-77.012112, 38.375077],\n              [-77.012105, 38.375132],\n              [-77.012328, 38.375488],\n              [-77.012335, 38.375494],\n              [-77.013356, 38.376411],\n              [-77.013835, 38.37696],\n              [-77.013888, 38.377018],\n              [-77.01464, 38.377842],\n              [-77.015016, 38.378472],\n              [-77.015698, 38.379111],\n              [-77.017655, 38.38106],\n              [-77.018021, 38.381609],\n              [-77.0185, 38.381949],\n              [-77.019358, 38.382339],\n              [-77.019442, 38.382382],\n              [-77.021103, 38.383224],\n              [-77.021368, 38.383515],\n              [-77.021654, 38.383725],\n              [-77.021743, 38.383879],\n              [-77.021766, 38.383919],\n              [-77.021888, 38.384057],\n              [-77.021959, 38.384162],\n              [-77.022122, 38.384235],\n              [-77.022286, 38.384308],\n              [-77.022602, 38.384511],\n              [-77.02305, 38.385047],\n              [-77.024221, 38.38645],\n              [-77.025188, 38.38746],\n              [-77.025932, 38.388237],\n              [-77.026473, 38.388634],\n              [-77.026761, 38.38874],\n              [-77.027351, 38.388959],\n              [-77.028107, 38.389309],\n              [-77.028984, 38.3899],\n              [-77.029296, 38.390178],\n              [-77.030027, 38.39083],\n              [-77.031124, 38.391809],\n              [-77.031544, 38.392053],\n              [-77.032114, 38.392722],\n              [-77.032277, 38.39287],\n              [-77.033735, 38.394195],\n              [-77.034551, 38.39489],\n              [-77.036559, 38.396743],\n              [-77.037477, 38.397527],\n              [-77.039168, 38.398912],\n              [-77.039344, 38.399057],\n              [-77.040914, 38.400311],\n              [-77.041507, 38.4007],\n              [-77.041612, 38.400733],\n              [-77.042016, 38.40086],\n              [-77.042284, 38.400945],\n              [-77.043272, 38.401004],\n              [-77.043696, 38.40103],\n              [-77.044679, 38.400736],\n              [-77.045253, 38.4005],\n              [-77.046001, 38.400193],\n              [-77.047476, 38.399714],\n              [-77.04846, 38.399436],\n              [-77.049218, 38.399282],\n              [-77.049822, 38.399159],\n              [-77.049989, 38.399189],\n              [-77.050629, 38.399307],\n              [-77.051622, 38.399222],\n              [-77.053422, 38.398821],\n              [-77.056785, 38.396208],\n              [-77.057181, 38.395751],\n              [-77.058708, 38.393994],\n              [-77.061231, 38.388869],\n              [-77.068198, 38.380926],\n              [-77.069179, 38.379771],\n              [-77.070552, 38.378159],\n              [-77.074002, 38.375132],\n              [-77.074652, 38.374393],\n              [-77.075467, 38.373852],\n              [-77.076892, 38.372771],\n              [-77.078176, 38.372012],\n              [-77.078874, 38.371613],\n              [-77.081376, 38.370186],\n              [-77.084058, 38.369109],\n              [-77.08424, 38.368747],\n              [-77.08668, 38.367936],\n              [-77.090091, 38.367283],\n              [-77.091563, 38.367351],\n              [-77.093536, 38.367305],\n              [-77.093706, 38.367391],\n              [-77.094438, 38.36776],\n              [-77.095855, 38.368123],\n              [-77.096823, 38.368372],\n              [-77.098124, 38.368834],\n              [-77.101723, 38.369537],\n              [-77.103863, 38.369733],\n              [-77.104061, 38.369737],\n              [-77.104876, 38.369754],\n              [-77.106318, 38.36975],\n              [-77.107288, 38.369731],\n              [-77.107994, 38.369672],\n              [-77.108872, 38.369549],\n              [-77.109669, 38.369426],\n              [-77.110619, 38.369294],\n              [-77.111069, 38.369236],\n              [-77.111834, 38.369138],\n              [-77.112457, 38.369039],\n              [-77.113213, 38.368876],\n              [-77.113383, 38.368845],\n              [-77.113743, 38.368778],\n              [-77.113772, 38.368771],\n              [-77.114183, 38.36868],\n              [-77.114907, 38.368525],\n              [-77.115039, 38.368525],\n              [-77.115326, 38.368475],\n              [-77.116184, 38.368328],\n              [-77.116685, 38.368319],\n              [-77.117105, 38.368086],\n              [-77.117255, 38.368003],\n              [-77.117755, 38.367833],\n              [-77.119205, 38.367595],\n              [-77.120819, 38.367301],\n              [-77.122559, 38.367162],\n              [-77.123863, 38.367058],\n              [-77.124405, 38.367008],\n              [-77.124701, 38.366768],\n              [-77.127097, 38.367232],\n              [-77.128858, 38.36725],\n              [-77.130149, 38.367406],\n              [-77.133282, 38.367846],\n              [-77.134275, 38.367923],\n              [-77.137736, 38.368031],\n              [-77.138226, 38.367924],\n              [-77.138698, 38.367755],\n              [-77.13918, 38.367583],\n              [-77.13994, 38.366945],\n              [-77.140325, 38.366623],\n              [-77.143287, 38.363738],\n              [-77.143827, 38.363236],\n              [-77.144744, 38.362402],\n              [-77.145514, 38.361705],\n              [-77.145771, 38.361471],\n              [-77.146217, 38.360841],\n              [-77.148827, 38.357478],\n              [-77.149263, 38.356864],\n              [-77.151386, 38.354486],\n              [-77.155193, 38.351054],\n              [-77.15742, 38.349269],\n              [-77.158369, 38.34851],\n              [-77.158518, 38.348418],\n              [-77.16159, 38.346515],\n              [-77.162594, 38.346047],\n              [-77.162614, 38.346037],\n              [-77.162673, 38.34601],\n              [-77.162694, 38.346001],\n              [-77.163221, 38.345831],\n              [-77.164222, 38.345646],\n              [-77.164745, 38.345551],\n              [-77.167485, 38.345298],\n              [-77.168898, 38.345061],\n              [-77.169017, 38.345042],\n              [-77.169733, 38.344922],\n              [-77.170449, 38.344803],\n              [-77.176063, 38.342983],\n              [-77.179341, 38.341922],\n              [-77.182729, 38.342013],\n              [-77.190497, 38.341045],\n              [-77.193539, 38.341123],\n              [-77.194166, 38.34114],\n              [-77.194497, 38.341149],\n              [-77.199435, 38.340897],\n              [-77.199439, 38.340896],\n              [-77.199459, 38.340896],\n              [-77.199865, 38.340876],\n              [-77.200041, 38.340901],\n              [-77.201778, 38.341151],\n              [-77.202357, 38.341235],\n              [-77.202467, 38.341251],\n              [-77.204157, 38.341139],\n              [-77.204696, 38.341104],\n              [-77.206839, 38.340212],\n              [-77.207022, 38.340136],\n              [-77.208066, 38.34018],\n              [-77.209293, 38.340166],\n              [-77.209374, 38.340144],\n              [-77.210764, 38.339784],\n              [-77.211122, 38.339691],\n              [-77.214676, 38.338797],\n              [-77.21595, 38.33829],\n              [-77.217524, 38.337665],\n              [-77.218573, 38.337248],\n              [-77.221653, 38.336784],\n              [-77.22172, 38.336774],\n              [-77.226229, 38.33536],\n              [-77.228759, 38.334567],\n              [-77.230405, 38.33405],\n              [-77.23131, 38.333767],\n              [-77.233104, 38.333204],\n              [-77.234743, 38.332689],\n              [-77.2349, 38.332641],\n              [-77.23506, 38.332591],\n              [-77.23521, 38.332544],\n              [-77.236435, 38.332307],\n              [-77.240073, 38.331605],\n              [-77.240114, 38.331604],\n              [-77.241079, 38.331595],\n              [-77.24125, 38.331593],\n              [-77.241363, 38.331592],\n              [-77.243031, 38.331574],\n              [-77.247151, 38.331531],\n              [-77.248035, 38.331566],\n              [-77.249703, 38.331632],\n              [-77.250473, 38.331702],\n              [-77.258009, 38.332387],\n              [-77.265297, 38.333172],\n              [-77.266885, 38.333835],\n              [-77.267217, 38.333974],\n              [-77.267547, 38.334112],\n              [-77.271409, 38.335923],\n              [-77.276583, 38.337889],\n              [-77.277053, 38.338478],\n              [-77.277798, 38.338943],\n              [-77.277994, 38.339066],\n              [-77.283035, 38.342805],\n              [-77.283798, 38.342863],\n              [-77.284125, 38.343427],\n              [-77.286204, 38.347032],\n              [-77.286504, 38.347032],\n              [-77.286704, 38.347132],\n              [-77.286904, 38.347132],\n              [-77.287204, 38.347332],\n              [-77.287504, 38.347432],\n              [-77.287804, 38.347632],\n              [-77.288204, 38.348032],\n              [-77.289204, 38.348532],\n              [-77.289504, 38.348532],\n              [-77.289565, 38.348552],\n              [-77.289804, 38.348632],\n              [-77.291304, 38.348632],\n              [-77.292304, 38.348432],\n              [-77.292804, 38.348232],\n              [-77.293304, 38.348132],\n              [-77.293504, 38.348032],\n              [-77.293649, 38.347959],\n              [-77.293704, 38.347932],\n              [-77.293804, 38.347932],\n              [-77.294204, 38.347732],\n              [-77.294804, 38.347532],\n              [-77.295304, 38.347332],\n              [-77.296204, 38.347132],\n              [-77.296417, 38.347047],\n              [-77.296705, 38.346933],\n              [-77.297105, 38.346833],\n              [-77.297605, 38.346633],\n              [-77.298005, 38.346533],\n              [-77.298505, 38.346433],\n              [-77.299205, 38.346433],\n              [-77.299806, 38.346333],\n              [-77.300905, 38.346333],\n              [-77.301505, 38.346433],\n              [-77.302105, 38.346433],\n              [-77.302405, 38.346531],\n              [-77.302601, 38.346532],\n              [-77.302605, 38.346533],\n              [-77.302805, 38.346633],\n              [-77.303105, 38.346733],\n              [-77.303151, 38.346742],\n              [-77.303345, 38.346781],\n              [-77.303605, 38.346833],\n              [-77.304505, 38.346833],\n              [-77.305005, 38.346933],\n              [-77.305405, 38.346833],\n              [-77.305605, 38.346833],\n              [-77.305905, 38.346733],\n              [-77.305908, 38.34673],\n              [-77.306305, 38.346433],\n              [-77.306505, 38.346233],\n              [-77.306805, 38.346033],\n              [-77.307206, 38.345833],\n              [-77.307342, 38.34573],\n              [-77.307606, 38.345533],\n              [-77.308206, 38.345333],\n              [-77.308606, 38.345234],\n              [-77.309806, 38.344834],\n              [-77.310206, 38.344734],\n              [-77.310466, 38.344681],\n              [-77.310706, 38.344634],\n              [-77.311306, 38.344634],\n              [-77.311906, 38.344534],\n              [-77.312406, 38.344434],\n              [-77.312706, 38.344434],\n              [-77.312906, 38.344334],\n              [-77.313106, 38.344334],\n              [-77.313306, 38.344434],\n              [-77.314306, 38.344634],\n              [-77.314606, 38.344834],\n              [-77.315006, 38.344934],\n              [-77.315406, 38.345134],\n              [-77.315706, 38.345234],\n              [-77.316105, 38.345533],\n              [-77.316305, 38.345733],\n              [-77.316605, 38.345733],\n              [-77.317005, 38.345833],\n              [-77.317205, 38.345933],\n              [-77.317405, 38.345933],\n              [-77.317605, 38.346033],\n              [-77.318105, 38.346033],\n              [-77.318605, 38.345933],\n              [-77.319605, 38.345933],\n              [-77.320005, 38.345733],\n              [-77.320505, 38.345533],\n              [-77.320905, 38.345433],\n              [-77.321105, 38.345333],\n              [-77.321405, 38.345234],\n              [-77.32144, 38.343817],\n              [-77.321546, 38.339566],\n              [-77.321582, 38.33815],\n              [-77.321599, 38.33813],\n              [-77.32165, 38.338074],\n              [-77.321668, 38.338055],\n              [-77.321751, 38.337965],\n              [-77.321764, 38.337962],\n              [-77.322164, 38.337881],\n              [-77.322298, 38.337854],\n              [-77.322451, 38.337823],\n              [-77.322562, 38.337801],\n              [-77.322881, 38.337641],\n              [-77.323022, 38.337572],\n              [-77.323111, 38.337515],\n              [-77.323138, 38.337498],\n              [-77.323413, 38.337422],\n              [-77.323442, 38.337415],\n              [-77.323518, 38.337412],\n              [-77.32359, 38.337408],\n              [-77.323808, 38.337399],\n              [-77.323881, 38.337396],\n              [-77.324051, 38.3374],\n              [-77.324111, 38.337402],\n              [-77.324339, 38.337343],\n              [-77.324396, 38.337358],\n              [-77.324549, 38.337321],\n              [-77.324672, 38.337292],\n              [-77.324713, 38.337275],\n              [-77.324755, 38.337257],\n              [-77.324775, 38.337241],\n              [-77.324943, 38.337109],\n              [-77.325, 38.337066],\n              [-77.325171, 38.336964],\n              [-77.325303, 38.336939],\n              [-77.325568, 38.336939],\n              [-77.325755, 38.336908],\n              [-77.325831, 38.336885],\n              [-77.326131, 38.336681],\n              [-77.32631, 38.336595],\n              [-77.326658, 38.336572],\n              [-77.327006, 38.336522],\n              [-77.327067, 38.336514],\n              [-77.327522, 38.336393],\n              [-77.327648, 38.33636],\n              [-77.327806, 38.3363],\n              [-77.327958, 38.336244],\n              [-77.328184, 38.336102],\n              [-77.328446, 38.335778],\n              [-77.328489, 38.335744],\n              [-77.328726, 38.33556],\n              [-77.328779, 38.335519],\n              [-77.329054, 38.335398],\n              [-77.329062, 38.335395],\n              [-77.329641, 38.335227],\n              [-77.329799, 38.335152],\n              [-77.330069, 38.335087],\n              [-77.330138, 38.335059],\n              [-77.330386, 38.334959],\n              [-77.330467, 38.334886],\n              [-77.33047, 38.334761],\n              [-77.330474, 38.334661],\n              [-77.330435, 38.334541],\n              [-77.330435, 38.334392],\n              [-77.330436, 38.334332],\n              [-77.33045, 38.334269],\n              [-77.330466, 38.334194],\n              [-77.330544, 38.334017],\n              [-77.330549, 38.333946],\n              [-77.330559, 38.333836],\n              [-77.330503, 38.333381],\n              [-77.330456, 38.333211],\n              [-77.33032, 38.33297],\n              [-77.330248, 38.332842],\n              [-77.330127, 38.332691],\n              [-77.330045, 38.332588],\n              [-77.329894, 38.332443],\n              [-77.329647, 38.332151],\n              [-77.329282, 38.33185],\n              [-77.329036, 38.331575],\n              [-77.328924, 38.331336],\n              [-77.328816, 38.331025],\n              [-77.328689, 38.330753],\n              [-77.328647, 38.330539],\n              [-77.328473, 38.330109],\n              [-77.328196, 38.329499],\n              [-77.328166, 38.329408],\n              [-77.328117, 38.329263],\n              [-77.32788, 38.328808],\n              [-77.327804, 38.328612],\n              [-77.327784, 38.328524],\n              [-77.327771, 38.328468],\n              [-77.327735, 38.328179],\n              [-77.327758, 38.328036],\n              [-77.327851, 38.327798],\n              [-77.327961, 38.327516],\n              [-77.327997, 38.327427],\n              [-77.328026, 38.327239],\n              [-77.328183, 38.326934],\n              [-77.328267, 38.326713],\n              [-77.328268, 38.326672],\n              [-77.32828, 38.32637],\n              [-77.328282, 38.326312],\n              [-77.328236, 38.326197],\n              [-77.328126, 38.326116],\n              [-77.327915, 38.325962],\n              [-77.327792, 38.325827],\n              [-77.327723, 38.325631],\n              [-77.32759, 38.32536],\n              [-77.327537, 38.32525],\n              [-77.327487, 38.325061],\n              [-77.327481, 38.325037],\n              [-77.327462, 38.324657],\n              [-77.327462, 38.324653],\n              [-77.327477, 38.324465],\n              [-77.327576, 38.324063],\n              [-77.327666, 38.32383],\n              [-77.327642, 38.323512],\n              [-77.327645, 38.323475],\n              [-77.327668, 38.323259],\n              [-77.327655, 38.323073],\n              [-77.327636, 38.322796],\n              [-77.327604, 38.322326],\n              [-77.327635, 38.321967],\n              [-77.327659, 38.321691],\n              [-77.32766, 38.321677],\n              [-77.327624, 38.321435],\n              [-77.327606, 38.321315],\n              [-77.327588, 38.320964],\n              [-77.327518, 38.320746],\n              [-77.327508, 38.320675],\n              [-77.32749, 38.320532],\n              [-77.327432, 38.320435],\n              [-77.327451, 38.320385],\n              [-77.327399, 38.320269],\n              [-77.32718, 38.319776],\n              [-77.327107, 38.319612],\n              [-77.32709, 38.319573],\n              [-77.327061, 38.319399],\n              [-77.327053, 38.319346],\n              [-77.327038, 38.31925],\n              [-77.327041, 38.31913],\n              [-77.327063, 38.319],\n              [-77.327088, 38.318854],\n              [-77.327329, 38.318322],\n              [-77.327481, 38.318046],\n              [-77.327547, 38.317928],\n              [-77.327702, 38.317782],\n              [-77.327903, 38.31775],\n              [-77.327993, 38.31771],\n              [-77.328061, 38.317654],\n              [-77.328313, 38.317372],\n              [-77.328458, 38.317212],\n              [-77.328675, 38.317032],\n              [-77.32884, 38.316941],\n              [-77.329179, 38.316884],\n              [-77.329309, 38.316788],\n              [-77.329531, 38.316548],\n              [-77.329703, 38.316473],\n              [-77.329849, 38.316443],\n              [-77.329986, 38.316391],\n              [-77.330184, 38.316266],\n              [-77.330236, 38.316219],\n              [-77.330517, 38.315974],\n              [-77.330797, 38.315787],\n              [-77.330829, 38.315776],\n              [-77.330854, 38.315774],\n              [-77.330869, 38.315762],\n              [-77.330925, 38.315742],\n              [-77.331066, 38.315693],\n              [-77.33115, 38.315673],\n              [-77.331227, 38.315656],\n              [-77.331335, 38.315631],\n              [-77.331619, 38.315567],\n              [-77.331657, 38.315552],\n              [-77.331762, 38.315515],\n              [-77.331778, 38.315509],\n              [-77.332045, 38.315366],\n              [-77.33218, 38.31527],\n              [-77.332277, 38.315202],\n              [-77.332771, 38.314753],\n              [-77.333337, 38.314393],\n              [-77.333468, 38.314311],\n              [-77.333611, 38.314193],\n              [-77.333685, 38.314068],\n              [-77.333763, 38.313937],\n              [-77.33393, 38.313795],\n              [-77.334075, 38.313673],\n              [-77.334121, 38.313578],\n              [-77.334269, 38.313411],\n              [-77.334419, 38.3131],\n              [-77.334555, 38.312971],\n              [-77.334589, 38.312917],\n              [-77.334761, 38.312648],\n              [-77.334782, 38.3126],\n              [-77.334794, 38.312571],\n              [-77.334832, 38.312488],\n              [-77.334845, 38.31246],\n              [-77.33483, 38.312304],\n              [-77.334813, 38.312114],\n              [-77.334751, 38.311843],\n              [-77.33474, 38.311792],\n              [-77.334688, 38.311702],\n              [-77.334526, 38.311423],\n              [-77.334503, 38.311359],\n              [-77.334388, 38.31103],\n              [-77.334232, 38.31072],\n              [-77.334094, 38.310267],\n              [-77.334083, 38.310228],\n              [-77.334055, 38.30988],\n              [-77.334052, 38.309856],\n              [-77.334046, 38.309787],\n              [-77.334045, 38.309764],\n              [-77.334037, 38.309664],\n              [-77.333953, 38.30944],\n              [-77.333938, 38.309313],\n              [-77.333926, 38.309198],\n              [-77.333912, 38.309071],\n              [-77.333904, 38.308996],\n              [-77.33392, 38.30882],\n              [-77.333896, 38.308733],\n              [-77.333876, 38.308697],\n              [-77.333815, 38.308586],\n              [-77.333804, 38.308537],\n              [-77.333782, 38.308433],\n              [-77.333762, 38.308396],\n              [-77.33374, 38.308353],\n              [-77.333663, 38.308208],\n              [-77.333626, 38.308139],\n              [-77.333599, 38.307727],\n              [-77.333598, 38.307711],\n              [-77.333538, 38.307577],\n              [-77.333872, 38.307125],\n              [-77.333921, 38.307061],\n              [-77.334659, 38.306344],\n              [-77.334933, 38.305838],\n              [-77.334933, 38.305837],\n              [-77.335305, 38.305415],\n              [-77.335504, 38.30457],\n              [-77.335385, 38.304277],\n              [-77.33542, 38.303947],\n              [-77.33605, 38.302658],\n              [-77.336193, 38.302368],\n              [-77.336503, 38.302507],\n              [-77.337082, 38.302781],\n              [-77.337667, 38.303006],\n              [-77.338225, 38.303165],\n              [-77.338706, 38.303099],\n              [-77.339012, 38.302968],\n              [-77.33927, 38.302731],\n              [-77.339346, 38.302374],\n              [-77.339395, 38.301507],\n              [-77.33945, 38.301024],\n              [-77.339791, 38.300145],\n              [-77.339659, 38.299667],\n              [-77.339554, 38.299475],\n              [-77.339429, 38.299321],\n              [-77.339038, 38.299041],\n              [-77.338906, 38.298888],\n              [-77.338899, 38.29875],\n              [-77.338906, 38.298673],\n              [-77.338912, 38.298552],\n              [-77.338913, 38.298542],\n              [-77.339045, 38.298388],\n              [-77.339031, 38.298344],\n              [-77.339115, 38.297976],\n              [-77.339267, 38.297403],\n              [-77.339372, 38.297015],\n              [-77.339393, 38.296795],\n              [-77.33949, 38.296433],\n              [-77.339817, 38.295439],\n              [-77.339887, 38.295148],\n              [-77.340151, 38.294496],\n              [-77.340221, 38.294324],\n              [-77.340409, 38.293934],\n              [-77.340472, 38.293542],\n              [-77.340485, 38.293462],\n              [-77.340476, 38.293444],\n              [-77.34043, 38.293347],\n              [-77.340418, 38.293153],\n              [-77.340416, 38.293116],\n              [-77.340383, 38.293062],\n              [-77.34036, 38.293023],\n              [-77.34032, 38.292884],\n              [-77.340318, 38.292875],\n              [-77.340346, 38.292809],\n              [-77.340004, 38.292461],\n              [-77.339941, 38.292397],\n              [-77.339881, 38.292319],\n              [-77.33975, 38.292147],\n              [-77.339656, 38.292024],\n              [-77.339551, 38.291826],\n              [-77.339586, 38.29159],\n              [-77.339585, 38.29156],\n              [-77.33958, 38.291345],\n              [-77.339579, 38.291304],\n              [-77.339574, 38.291286],\n              [-77.339526, 38.291116],\n              [-77.339511, 38.29106],\n              [-77.339488, 38.29098],\n              [-77.339379, 38.29072],\n              [-77.339216, 38.290327],\n              [-77.339153, 38.290069],\n              [-77.339111, 38.289706],\n              [-77.339116, 38.28967],\n              [-77.33916, 38.28936],\n              [-77.339132, 38.289317],\n              [-77.339142, 38.289212],\n              [-77.339176, 38.288899],\n              [-77.339187, 38.288795],\n              [-77.339153, 38.288745],\n              [-77.33918, 38.288543],\n              [-77.339278, 38.287823],\n              [-77.33929, 38.287758],\n              [-77.339343, 38.2875],\n              [-77.339361, 38.287411],\n              [-77.339389, 38.287093],\n              [-77.339493, 38.286824],\n              [-77.339626, 38.286483],\n              [-77.339716, 38.286192],\n              [-77.339804, 38.285867],\n              [-77.339994, 38.285171],\n              [-77.340073, 38.284816],\n              [-77.340147, 38.28449],\n              [-77.340273, 38.284149],\n              [-77.340321, 38.284023],\n              [-77.340419, 38.283891],\n              [-77.340572, 38.28354],\n              [-77.340593, 38.283435],\n              [-77.340582, 38.28334],\n              [-77.340565, 38.283188],\n              [-77.340586, 38.283133],\n              [-77.340655, 38.283084],\n              [-77.340829, 38.283128],\n              [-77.340906, 38.283128],\n              [-77.340983, 38.283073],\n              [-77.341031, 38.283012],\n              [-77.341052, 38.282935],\n              [-77.341052, 38.282826],\n              [-77.341, 38.282679],\n              [-77.340982, 38.282628],\n              [-77.341038, 38.282535],\n              [-77.341407, 38.282276],\n              [-77.341547, 38.282112],\n              [-77.341769, 38.281716],\n              [-77.342298, 38.281156],\n              [-77.342619, 38.280771],\n              [-77.342786, 38.280618],\n              [-77.342946, 38.280574],\n              [-77.343161, 38.280429],\n              [-77.343225, 38.280387],\n              [-77.343406, 38.280228],\n              [-77.343566, 38.280046],\n              [-77.343691, 38.279755],\n              [-77.34374, 38.279569],\n              [-77.34374, 38.279459],\n              [-77.343678, 38.279254],\n              [-77.343655, 38.279177],\n              [-77.343607, 38.279019],\n              [-77.343595, 38.278919],\n              [-77.343593, 38.278893],\n              [-77.343468, 38.278635],\n              [-77.343433, 38.278509],\n              [-77.343454, 38.27835],\n              [-77.343514, 38.278167],\n              [-77.343586, 38.277954],\n              [-77.343592, 38.277914],\n              [-77.343606, 38.277808],\n              [-77.343621, 38.277707],\n              [-77.343676, 38.277499],\n              [-77.34369, 38.277449],\n              [-77.343713, 38.2774],\n              [-77.343941, 38.276905],\n              [-77.344108, 38.276625],\n              [-77.344324, 38.276307],\n              [-77.344386, 38.27624],\n              [-77.344658, 38.27595],\n              [-77.344985, 38.275713],\n              [-77.345688, 38.275384],\n              [-77.34603, 38.275126],\n              [-77.346211, 38.274961],\n              [-77.3466, 38.274554],\n              [-77.346754, 38.27428],\n              [-77.346809, 38.274109],\n              [-77.346976, 38.273753],\n              [-77.347011, 38.273511],\n              [-77.347053, 38.273425],\n              [-77.347317, 38.272896],\n              [-77.347463, 38.272462],\n              [-77.347463, 38.272385],\n              [-77.347561, 38.272187],\n              [-77.347484, 38.271479],\n              [-77.347344, 38.271007],\n              [-77.347315, 38.270967],\n              [-77.347184, 38.270782],\n              [-77.346933, 38.270529],\n              [-77.346675, 38.27031],\n              [-77.346584, 38.270255],\n              [-77.34648, 38.270227],\n              [-77.346299, 38.270118],\n              [-77.346006, 38.269821],\n              [-77.345616, 38.269558],\n              [-77.345372, 38.269475],\n              [-77.345191, 38.269432],\n              [-77.344989, 38.269349],\n              [-77.344404, 38.269256],\n              [-77.344167, 38.269152],\n              [-77.344158, 38.269145],\n              [-77.343909, 38.26896],\n              [-77.343707, 38.268746],\n              [-77.343533, 38.268509],\n              [-77.343366, 38.268197],\n              [-77.343361, 38.268118],\n              [-77.343359, 38.268076],\n              [-77.343314, 38.267888],\n              [-77.343297, 38.267812],\n              [-77.343273, 38.267712],\n              [-77.343268, 38.267691],\n              [-77.343255, 38.267476],\n              [-77.343247, 38.267334],\n              [-77.343259, 38.267305],\n              [-77.343285, 38.267243],\n              [-77.343351, 38.267087],\n              [-77.343353, 38.267055],\n              [-77.34336, 38.266989],\n              [-77.343365, 38.266928],\n              [-77.343253, 38.266675],\n              [-77.343225, 38.266561],\n              [-77.343212, 38.266505],\n              [-77.34319, 38.266176],\n              [-77.343281, 38.265879],\n              [-77.343406, 38.26561],\n              [-77.343385, 38.26555],\n              [-77.34342, 38.265445],\n              [-77.343455, 38.265385],\n              [-77.343545, 38.265303],\n              [-77.343548, 38.265301],\n              [-77.343754, 38.265198],\n              [-77.343803, 38.265149],\n              [-77.343888, 38.265018],\n              [-77.343907, 38.264989],\n              [-77.344054, 38.264837],\n              [-77.344137, 38.264753],\n              [-77.3442, 38.26466],\n              [-77.344234, 38.264429],\n              [-77.3442, 38.26432],\n              [-77.34422, 38.264161],\n              [-77.344241, 38.264001],\n              [-77.344234, 38.263952],\n              [-77.344212, 38.263925],\n              [-77.344165, 38.263869],\n              [-77.344137, 38.263748],\n              [-77.344166, 38.263578],\n              [-77.344171, 38.263556],\n              [-77.344311, 38.263353],\n              [-77.344673, 38.263051],\n              [-77.344805, 38.262881],\n              [-77.344867, 38.262744],\n              [-77.345007, 38.262441],\n              [-77.345016, 38.262407],\n              [-77.345055, 38.262249],\n              [-77.345139, 38.262178],\n              [-77.345355, 38.262095],\n              [-77.345417, 38.262035],\n              [-77.345466, 38.261914],\n              [-77.345466, 38.261859],\n              [-77.345431, 38.261777],\n              [-77.345445, 38.261711],\n              [-77.34564, 38.261513],\n              [-77.34573, 38.261398],\n              [-77.345626, 38.261206],\n              [-77.345528, 38.261107],\n              [-77.345173, 38.260981],\n              [-77.345034, 38.260887],\n              [-77.344894, 38.260706],\n              [-77.344769, 38.260596],\n              [-77.34456, 38.26052],\n              [-77.344268, 38.260509],\n              [-77.344114, 38.26052],\n              [-77.343355, 38.260646],\n              [-77.343216, 38.260685],\n              [-77.343139, 38.260729],\n              [-77.343014, 38.260844],\n              [-77.342944, 38.260866],\n              [-77.342777, 38.26074],\n              [-77.342513, 38.260894],\n              [-77.342311, 38.260877],\n              [-77.342185, 38.260921],\n              [-77.342123, 38.260916],\n              [-77.341949, 38.260762],\n              [-77.341823, 38.260767],\n              [-77.341628, 38.260839],\n              [-77.341434, 38.260669],\n              [-77.341429, 38.260666],\n              [-77.341362, 38.260608],\n              [-77.341202, 38.260557],\n              [-77.341189, 38.260553],\n              [-77.340939, 38.260542],\n              [-77.340841, 38.260515],\n              [-77.340771, 38.260466],\n              [-77.340702, 38.260378],\n              [-77.340674, 38.260273],\n              [-77.340695, 38.260175],\n              [-77.340715, 38.26014],\n              [-77.340827, 38.259938],\n              [-77.340834, 38.259768],\n              [-77.340792, 38.259598],\n              [-77.340687, 38.259488],\n              [-77.340374, 38.259219],\n              [-77.340269, 38.259159],\n              [-77.340158, 38.259126],\n              [-77.339859, 38.259071],\n              [-77.339712, 38.259082],\n              [-77.339532, 38.259125],\n              [-77.339462, 38.259143],\n              [-77.339037, 38.259296],\n              [-77.338661, 38.259329],\n              [-77.338424, 38.259302],\n              [-77.338285, 38.259253],\n              [-77.338187, 38.259203],\n              [-77.337936, 38.259006],\n              [-77.337902, 38.25889],\n              [-77.337734, 38.258544],\n              [-77.337665, 38.258457],\n              [-77.337574, 38.258396],\n              [-77.337511, 38.258303],\n              [-77.337483, 38.25822],\n              [-77.33749, 38.258111],\n              [-77.337532, 38.258034],\n              [-77.337539, 38.257924],\n              [-77.337504, 38.257853],\n              [-77.337434, 38.25777],\n              [-77.337302, 38.257677],\n              [-77.336717, 38.257408],\n              [-77.336494, 38.257199],\n              [-77.336362, 38.25693],\n              [-77.336376, 38.256667],\n              [-77.336306, 38.25659],\n              [-77.336181, 38.256535],\n              [-77.336062, 38.256425],\n              [-77.335986, 38.256403],\n              [-77.335895, 38.256359],\n              [-77.335777, 38.256249],\n              [-77.335568, 38.2562],\n              [-77.335324, 38.256077],\n              [-77.335317, 38.256074],\n              [-77.335052, 38.256112],\n              [-77.334899, 38.256145],\n              [-77.334823, 38.256195],\n              [-77.334676, 38.256211],\n              [-77.334565, 38.256206],\n              [-77.334029, 38.256052],\n              [-77.333973, 38.256019],\n              [-77.333847, 38.255992],\n              [-77.333792, 38.255997],\n              [-77.333736, 38.25597],\n              [-77.333687, 38.255937],\n              [-77.333652, 38.255767],\n              [-77.333607, 38.255645],\n              [-77.333597, 38.255618],\n              [-77.333589, 38.255612],\n              [-77.333501, 38.255539],\n              [-77.333472, 38.255515],\n              [-77.33343, 38.255481],\n              [-77.333332, 38.255432],\n              [-77.333318, 38.255344],\n              [-77.333402, 38.255168],\n              [-77.333395, 38.255091],\n              [-77.333325, 38.254982],\n              [-77.333311, 38.254899],\n              [-77.333249, 38.254846],\n              [-77.333241, 38.254839],\n              [-77.333186, 38.254756],\n              [-77.332879, 38.254548],\n              [-77.332621, 38.254504],\n              [-77.332524, 38.254465],\n              [-77.331946, 38.254389],\n              [-77.331834, 38.254339],\n              [-77.331528, 38.254301],\n              [-77.331382, 38.254257],\n              [-77.330937, 38.254262],\n              [-77.330915, 38.254263],\n              [-77.330811, 38.254257],\n              [-77.330692, 38.254219],\n              [-77.330351, 38.254015],\n              [-77.330213, 38.253915],\n              [-77.330163, 38.253879],\n              [-77.330079, 38.253818],\n              [-77.330048, 38.253744],\n              [-77.330038, 38.253719],\n              [-77.330047, 38.253686],\n              [-77.330078, 38.253575],\n              [-77.330086, 38.253549],\n              [-77.330051, 38.253483],\n              [-77.329975, 38.253412],\n              [-77.329844, 38.253362],\n              [-77.329843, 38.253362],\n              [-77.32973, 38.253371],\n              [-77.329641, 38.253377],\n              [-77.32955, 38.253384],\n              [-77.329285, 38.253384],\n              [-77.32923, 38.253368],\n              [-77.328868, 38.253082],\n              [-77.328805, 38.252983],\n              [-77.328763, 38.252841],\n              [-77.3287, 38.252808],\n              [-77.328652, 38.252753],\n              [-77.328582, 38.25272],\n              [-77.328498, 38.252681],\n              [-77.328338, 38.252555],\n              [-77.328255, 38.252445],\n              [-77.32779, 38.252123],\n              [-77.327697, 38.251973],\n              [-77.327672, 38.251739],\n              [-77.327859, 38.251556],\n              [-77.328044, 38.251317],\n              [-77.328035, 38.251041],\n              [-77.327848, 38.250673],\n              [-77.32762, 38.250139],\n              [-77.32768, 38.249471],\n              [-77.327689, 38.249138],\n              [-77.327665, 38.2491],\n              [-77.327399, 38.248679],\n              [-77.3272, 38.248266],\n              [-77.327246, 38.248098],\n              [-77.327349, 38.247736],\n              [-77.32735, 38.247264],\n              [-77.327351, 38.247164],\n              [-77.327265, 38.246632],\n              [-77.327016, 38.245898],\n              [-77.326866, 38.245452],\n              [-77.326822, 38.245395],\n              [-77.326692, 38.245227],\n              [-77.326677, 38.245207],\n              [-77.326689, 38.245163],\n              [-77.32669, 38.245159],\n              [-77.326692, 38.245147],\n              [-77.326694, 38.245144],\n              [-77.326895, 38.244451],\n              [-77.328246, 38.24483],\n              [-77.329364, 38.245068],\n              [-77.330687, 38.245317],\n              [-77.332062, 38.245657],\n              [-77.33274, 38.245848],\n              [-77.333528, 38.24626],\n              [-77.334765, 38.24733],\n              [-77.335417, 38.247999],\n              [-77.335491, 38.248403],\n              [-77.335618, 38.248566],\n              [-77.33599, 38.249046],\n              [-77.336156, 38.249467],\n              [-77.336648, 38.250136],\n              [-77.33668, 38.250137],\n              [-77.336986, 38.250505],\n              [-77.337258, 38.250791],\n              [-77.337528, 38.250966],\n              [-77.337753, 38.251142],\n              [-77.337997, 38.251333],\n              [-77.338374, 38.251743],\n              [-77.338862, 38.252101],\n              [-77.340625, 38.252624],\n              [-77.342003, 38.25275],\n              [-77.343301, 38.252703],\n              [-77.343433, 38.252699],\n              [-77.345933, 38.252235],\n              [-77.34803, 38.251355],\n              [-77.349291, 38.250675],\n              [-77.350006, 38.250136],\n              [-77.35019, 38.249688],\n              [-77.350534, 38.249272],\n              [-77.351031, 38.248883],\n              [-77.35163, 38.24847],\n              [-77.352353, 38.248026],\n              [-77.353198, 38.247528],\n              [-77.35424, 38.246926],\n              [-77.354726, 38.246585],\n              [-77.355409, 38.24602],\n              [-77.356093, 38.245439],\n              [-77.356538, 38.245081],\n              [-77.357988, 38.24388],\n              [-77.359115, 38.243094],\n              [-77.359845, 38.242755],\n              [-77.360402, 38.242431],\n              [-77.361262, 38.242319],\n              [-77.362192, 38.242233],\n              [-77.362885, 38.242265],\n              [-77.363568, 38.242361],\n              [-77.364372, 38.242491],\n              [-77.36543, 38.24268],\n              [-77.366058, 38.242945],\n              [-77.366824, 38.243363],\n              [-77.366932, 38.243422],\n              [-77.367039, 38.24348],\n              [-77.367455, 38.243774],\n              [-77.367605, 38.24388],\n              [-77.367755, 38.243987],\n              [-77.368678, 38.244901],\n              [-77.369005, 38.245282],\n              [-77.369214, 38.245526],\n              [-77.369422, 38.24577],\n              [-77.369799, 38.24621],\n              [-77.370303, 38.246584],\n              [-77.37031, 38.246578],\n              [-77.370367, 38.24653],\n              [-77.370425, 38.246481],\n              [-77.371337, 38.245757],\n              [-77.371342, 38.245753],\n              [-77.374672, 38.243107],\n              [-77.374687, 38.243092],\n              [-77.37488, 38.242903],\n              [-77.374892, 38.242891],\n              [-77.375316, 38.242474],\n              [-77.375455, 38.242345],\n              [-77.37708, 38.240838],\n              [-77.377784, 38.240195],\n              [-77.37933, 38.238782],\n              [-77.379359, 38.238755],\n              [-77.379376, 38.238736],\n              [-77.379381, 38.238731],\n              [-77.379475, 38.238631],\n              [-77.379684, 38.238432],\n              [-77.379696, 38.238421],\n              [-77.384405, 38.233785],\n              [-77.384868, 38.233307],\n              [-77.40031, 38.21742],\n              [-77.402354, 38.215317],\n              [-77.403134, 38.214564],\n              [-77.40632, 38.211492],\n              [-77.408548, 38.209343],\n              [-77.416743, 38.20144],\n              [-77.418605, 38.199635],\n              [-77.419067, 38.199146],\n              [-77.424336, 38.19358],\n              [-77.428491, 38.189191],\n              [-77.433478, 38.18415],\n              [-77.433499, 38.18413],\n              [-77.437347, 38.18024],\n              [-77.437543, 38.180042],\n              [-77.440231, 38.177326],\n              [-77.441131, 38.176529],\n              [-77.442338, 38.175463],\n              [-77.444516, 38.173537],\n              [-77.445682, 38.172506],\n              [-77.45275, 38.166256],\n              [-77.455476, 38.163844],\n              [-77.455772, 38.163582],\n              [-77.456492, 38.162946],\n              [-77.457031, 38.162468],\n              [-77.457354, 38.162183],\n              [-77.459003, 38.160725],\n              [-77.46266, 38.157293],\n              [-77.465581, 38.154554],\n              [-77.465731, 38.154416],\n              [-77.465972, 38.154212],\n              [-77.466417, 38.153873],\n              [-77.466484, 38.153791],\n              [-77.466537, 38.153695],\n              [-77.466935, 38.153334],\n              [-77.467055, 38.153226],\n              [-77.467126, 38.153162],\n              [-77.467169, 38.153135],\n              [-77.467404, 38.152911],\n              [-77.468129, 38.152248],\n              [-77.468587, 38.151817],\n              [-77.468975, 38.151475],\n              [-77.469415, 38.151073],\n              [-77.471163, 38.149477],\n              [-77.473063, 38.147742],\n              [-77.479917, 38.14118],\n              [-77.480016, 38.141085],\n              [-77.480084, 38.141019],\n              [-77.485041, 38.136273],\n              [-77.492556, 38.129082],\n              [-77.492605, 38.129045],\n              [-77.494678, 38.126958],\n              [-77.496621, 38.125136],\n              [-77.504161, 38.118067],\n              [-77.506042, 38.116303],\n              [-77.510051, 38.112543],\n              [-77.510114, 38.112484],\n              [-77.510156, 38.112445],\n              [-77.51079, 38.111851],\n              [-77.512155, 38.110564],\n              [-77.517618, 38.105428],\n              [-77.518181, 38.104898],\n              [-77.52142, 38.101852],\n              [-77.523833, 38.09957],\n              [-77.527605, 38.096004],\n              [-77.530112, 38.093636],\n              [-77.531372, 38.092442],\n              [-77.536646, 38.087454],\n              [-77.537913, 38.086257],\n              [-77.539296, 38.084948],\n              [-77.540585, 38.083728],\n              [-77.541087, 38.083255],\n              [-77.546339, 38.07851],\n              [-77.547345, 38.077606],\n              [-77.548738, 38.076343],\n              [-77.550603, 38.074574],\n              [-77.551613, 38.073617],\n              [-77.554772, 38.070623],\n              [-77.56033, 38.065355],\n              [-77.563062, 38.062734],\n              [-77.567383, 38.058592],\n              [-77.567535, 38.058446],\n              [-77.570661, 38.055449],\n              [-77.572659, 38.053534],\n              [-77.574496, 38.051688],\n              [-77.579828, 38.046772],\n              [-77.586015, 38.041068],\n              [-77.588322, 38.039036],\n              [-77.590779, 38.036874],\n              [-77.591434, 38.036197],\n              [-77.591822, 38.035796],\n              [-77.59279, 38.034791],\n              [-77.593121, 38.034455],\n              [-77.59394, 38.03361],\n              [-77.595106, 38.032577],\n              [-77.59521, 38.032462],\n              [-77.595362, 38.032319],\n              [-77.595626, 38.032127],\n              [-77.595682, 38.032105],\n              [-77.596133, 38.031748],\n              [-77.596181, 38.031709],\n              [-77.597954, 38.02997],\n              [-77.600198, 38.027771],\n              [-77.603937, 38.024276],\n              [-77.606126, 38.022229],\n              [-77.610903, 38.017765],\n              [-77.61222, 38.016511],\n              [-77.612655, 38.016109],\n              [-77.617635, 38.011751],\n              [-77.620189, 38.009518],\n              [-77.622844, 38.006841],\n              [-77.62496, 38.004707],\n              [-77.626221, 38.003437],\n              [-77.629875, 38.000801],\n              [-77.635521, 37.996137],\n              [-77.639932, 37.992591],\n              [-77.642038, 37.991055],\n              [-77.642202, 37.990936],\n              [-77.642154, 37.991165],\n              [-77.642137, 37.991248],\n              [-77.642148, 37.991816],\n              [-77.64232, 37.992292],\n              [-77.642528, 37.992478],\n              [-77.6429, 37.992684],\n              [-77.643366, 37.992862],\n              [-77.64368, 37.992983],\n              [-77.645028, 37.993326],\n              [-77.647165, 37.993956],\n              [-77.647529, 37.994011],\n              [-77.648107, 37.994099],\n              [-77.648298, 37.994112],\n              [-77.649203, 37.994176],\n              [-77.649478, 37.994161],\n              [-77.651705, 37.993925],\n              [-77.652338, 37.993837],\n              [-77.652786, 37.993776],\n              [-77.653672, 37.993603],\n              [-77.65503, 37.993275],\n              [-77.655833, 37.993017],\n              [-77.656938, 37.992513],\n              [-77.657918, 37.991872],\n              [-77.658219, 37.9918],\n              [-77.6593, 37.991931],\n              [-77.659556, 37.992002],\n              [-77.6597, 37.99209],\n              [-77.660278, 37.993012],\n              [-77.660471, 37.993734],\n              [-77.660412, 37.994831],\n              [-77.660646, 37.996124],\n              [-77.660604, 37.997153],\n              [-77.66075, 37.997449],\n              [-77.660935, 37.997592],\n              [-77.661263, 37.997717],\n              [-77.661751, 37.997807],\n              [-77.66234, 37.997772],\n              [-77.66379, 37.99735],\n              [-77.664781, 37.99691],\n              [-77.665362, 37.996848],\n              [-77.666365, 37.996827],\n              [-77.666843, 37.996948],\n              [-77.667162, 37.997087],\n              [-77.667456, 37.997311],\n              [-77.667813, 37.997721],\n              [-77.667904, 37.997921],\n              [-77.667987, 37.998387],\n              [-77.66798, 37.998585],\n              [-77.667923, 38.000128],\n              [-77.668203, 38.000829],\n              [-77.668376, 38.001119],\n              [-77.668794, 38.001628],\n              [-77.6709, 38.003777],\n              [-77.671557, 38.004163],\n              [-77.672847, 38.004731],\n              [-77.674818, 38.005569],\n              [-77.67662, 38.006417],\n              [-77.676938, 38.006533],\n              [-77.676959, 38.006541],\n              [-77.677863, 38.00687],\n              [-77.680594, 38.007595],\n              [-77.682387, 38.007879],\n              [-77.684067, 38.008291],\n              [-77.684635, 38.008172],\n              [-77.685193, 38.007936],\n              [-77.685548, 38.007873],\n              [-77.686418, 38.007908],\n              [-77.687089, 38.007993],\n              [-77.687118, 38.007997],\n              [-77.687184, 38.008005],\n              [-77.687296, 38.008019],\n              [-77.68746, 38.00804],\n              [-77.687667, 38.008057],\n              [-77.688643, 38.008137],\n              [-77.692062, 38.007951],\n              [-77.692357, 38.007855],\n              [-77.692618, 38.00771],\n              [-77.69323, 38.007566],\n              [-77.693895, 38.007188],\n              [-77.694161, 38.007135],\n              [-77.694548, 38.007126],\n              [-77.694572, 38.007125],\n              [-77.695551, 38.007308],\n              [-77.696027, 38.007521],\n              [-77.696981, 38.008475],\n              [-77.697344, 38.008905],\n              [-77.698206, 38.009955],\n              [-77.698854, 38.011166],\n              [-77.699323, 38.011831],\n              [-77.699364, 38.012003],\n              [-77.699668, 38.012312],\n              [-77.7, 38.012556],\n              [-77.700244, 38.01264],\n              [-77.700405, 38.012703],\n              [-77.700861, 38.012691],\n              [-77.701341, 38.012752],\n              [-77.701359, 38.012754],\n              [-77.701583, 38.012783],\n              [-77.70217, 38.012765],\n              [-77.702636, 38.01275],\n              [-77.703303, 38.012701],\n              [-77.703664, 38.012735],\n              [-77.703873, 38.012822],\n              [-77.703882, 38.012826],\n              [-77.704229, 38.01297],\n              [-77.7053, 38.013519],\n              [-77.705608, 38.013582],\n              [-77.706686, 38.013424],\n              [-77.708152, 38.013415],\n              [-77.708606, 38.01337],\n              [-77.709066, 38.013213],\n              [-77.70987, 38.012744],\n              [-77.710294, 38.012609],\n              [-77.710521, 38.012583],\n              [-77.710578, 38.012585],\n              [-77.711023, 38.012606],\n              [-77.711527, 38.012779],\n              [-77.7117, 38.012755],\n              [-77.711892, 38.012729],\n              [-77.711882, 38.012977],\n              [-77.712028, 38.013019],\n              [-77.71247, 38.013835],\n              [-77.712575, 38.014015],\n              [-77.712732, 38.014306],\n              [-77.712849, 38.014564],\n              [-77.712854, 38.014574],\n              [-77.712866, 38.014602],\n              [-77.713259, 38.014849],\n              [-77.713954, 38.015245],\n              [-77.714714, 38.015446],\n              [-77.715714, 38.015946],\n              [-77.716575, 38.016277],\n              [-77.717014, 38.016446],\n              [-77.717914, 38.016546],\n              [-77.718614, 38.016446],\n              [-77.719314, 38.016646],\n              [-77.719814, 38.017046],\n              [-77.720014, 38.017346],\n              [-77.720014, 38.018146],\n              [-77.719814, 38.018646],\n              [-77.719714, 38.018746],\n              [-77.719214, 38.019746],\n              [-77.719114, 38.020246],\n              [-77.719314, 38.020646],\n              [-77.719814, 38.020846],\n              [-77.720414, 38.021246],\n              [-77.720914, 38.021946],\n              [-77.721214, 38.022446],\n              [-77.721714, 38.022946],\n              [-77.722214, 38.023246],\n              [-77.723414, 38.023446],\n              [-77.724314, 38.023346],\n              [-77.725614, 38.023146],\n              [-77.726314, 38.022946],\n              [-77.727114, 38.022646],\n              [-77.727514, 38.022346],\n              [-77.728214, 38.021946],\n              [-77.728541, 38.02175],\n              [-77.729214, 38.021346],\n              [-77.729714, 38.021046],\n              [-77.730614, 38.020846],\n              [-77.731314, 38.021246],\n              [-77.731515, 38.021546],\n              [-77.731515, 38.021846],\n              [-77.731314, 38.022546],\n              [-77.731114, 38.023846],\n              [-77.731095, 38.024034],\n              [-77.731014, 38.024846],\n              [-77.730814, 38.025046],\n              [-77.730514, 38.025246],\n              [-77.730314, 38.025246],\n              [-77.730114, 38.025346],\n              [-77.729814, 38.025646],\n              [-77.729514, 38.025746],\n              [-77.728914, 38.025846],\n              [-77.728514, 38.025946],\n              [-77.728314, 38.026046],\n              [-77.728114, 38.026446],\n              [-77.728114, 38.027146],\n              [-77.728214, 38.027546],\n              [-77.728314, 38.027746],\n              [-77.72953, 38.028557],\n              [-77.729814, 38.028746],\n              [-77.730214, 38.029246],\n              [-77.73032, 38.029564],\n              [-77.730515, 38.030145],\n              [-77.730615, 38.030445],\n              [-77.731015, 38.031045],\n              [-77.731815, 38.031445],\n              [-77.732315, 38.031645],\n              [-77.733415, 38.031745],\n              [-77.733815, 38.031845],\n              [-77.734815, 38.031845],\n              [-77.736315, 38.032045],\n              [-77.737615, 38.032445],\n              [-77.738215, 38.032645],\n              [-77.738915, 38.032945],\n              [-77.739515, 38.033046],\n              [-77.739815, 38.032946],\n              [-77.740215, 38.032646],\n              [-77.740515, 38.032046],\n              [-77.740715, 38.031246],\n              [-77.740715, 38.029646],\n              [-77.740915, 38.029246],\n              [-77.741515, 38.028446],\n              [-77.742315, 38.027446],\n              [-77.743015, 38.026746],\n              [-77.743515, 38.026346],\n              [-77.743915, 38.025846],\n              [-77.744215, 38.025546],\n              [-77.744515, 38.025146],\n              [-77.744515, 38.024646],\n              [-77.744415, 38.024346],\n              [-77.744615, 38.023946],\n              [-77.744915, 38.023746],\n              [-77.745415, 38.023646],\n              [-77.746215, 38.023546],\n              [-77.746915, 38.023646],\n              [-77.747315, 38.023946],\n              [-77.747715, 38.024346],\n              [-77.747715, 38.025746],\n              [-77.747615, 38.026346],\n              [-77.747715, 38.026746],\n              [-77.747815, 38.027246],\n              [-77.748315, 38.028446],\n              [-77.748515, 38.028746],\n              [-77.748515, 38.029546],\n              [-77.748415, 38.030146],\n              [-77.748115, 38.031046],\n              [-77.747815, 38.031746],\n              [-77.747615, 38.032946],\n              [-77.747715, 38.033346],\n              [-77.748015, 38.033846],\n              [-77.748315, 38.034246],\n              [-77.748515, 38.034546],\n              [-77.748815, 38.035146],\n              [-77.748815, 38.036745],\n              [-77.748615, 38.037145],\n              [-77.748315, 38.037345],\n              [-77.747915, 38.037645],\n              [-77.746615, 38.038245],\n              [-77.745515, 38.038445],\n              [-77.744815, 38.038745],\n              [-77.744015, 38.039045],\n              [-77.743415, 38.039245],\n              [-77.743115, 38.039245],\n              [-77.742915, 38.038845],\n              [-77.742915, 38.037945],\n              [-77.742715, 38.037445],\n              [-77.742315, 38.037145],\n              [-77.741915, 38.037045],\n              [-77.741315, 38.037245],\n              [-77.740915, 38.037745],\n              [-77.740915, 38.038245],\n              [-77.741115, 38.038545],\n              [-77.741315, 38.039045],\n              [-77.741615, 38.039645],\n              [-77.742215, 38.040245],\n              [-77.742915, 38.040745],\n              [-77.743815, 38.040945],\n              [-77.744515, 38.040845],\n              [-77.745215, 38.040845],\n              [-77.745715, 38.040945],\n              [-77.746715, 38.041445],\n              [-77.747415, 38.041645],\n              [-77.748015, 38.042045],\n              [-77.748215, 38.042145],\n              [-77.748415, 38.043145],\n              [-77.748415, 38.043445],\n              [-77.748115, 38.044445],\n              [-77.747815, 38.044945],\n              [-77.747515, 38.045545],\n              [-77.747515, 38.045845],\n              [-77.747615, 38.047045],\n              [-77.747715, 38.047645],\n              [-77.747815, 38.047945],\n              [-77.747715, 38.048345],\n              [-77.747615, 38.048645],\n              [-77.747415, 38.048945],\n              [-77.747215, 38.049145],\n              [-77.746615, 38.049545],\n              [-77.745915, 38.050045],\n              [-77.745215, 38.050845],\n              [-77.745215, 38.051145],\n              [-77.745515, 38.051345],\n              [-77.746215, 38.051445],\n              [-77.746615, 38.051845],\n              [-77.747315, 38.052245],\n              [-77.747815, 38.052545],\n              [-77.748615, 38.052845],\n              [-77.749515, 38.052845],\n              [-77.749715, 38.052695],\n              [-77.749815, 38.052545],\n              [-77.750215, 38.052545],\n              [-77.750415, 38.052445],\n              [-77.750615, 38.052445],\n              [-77.750715, 38.052345],\n              [-77.751115, 38.052145],\n              [-77.751333, 38.052],\n              [-77.751415, 38.051945],\n              [-77.751515, 38.051745],\n              [-77.751615, 38.051345],\n              [-77.752315, 38.050945],\n              [-77.752815, 38.050645],\n              [-77.753615, 38.050345],\n              [-77.754115, 38.049945],\n              [-77.754915, 38.049445],\n              [-77.755415, 38.048845],\n              [-77.755715, 38.048645],\n              [-77.755915, 38.048345],\n              [-77.756115, 38.048245],\n              [-77.756515, 38.048445],\n              [-77.757015, 38.048645],\n              [-77.757615, 38.048845],\n              [-77.758215, 38.048945],\n              [-77.758515, 38.048945],\n              [-77.758816, 38.049045],\n              [-77.759016, 38.049145],\n              [-77.759116, 38.049145],\n              [-77.759316, 38.049345],\n              [-77.759616, 38.049445],\n              [-77.759716, 38.049545],\n              [-77.762516, 38.050545],\n              [-77.762916, 38.050845],\n              [-77.763316, 38.051245],\n              [-77.763316, 38.052645],\n              [-77.763516, 38.052845],\n              [-77.763816, 38.053045],\n              [-77.763916, 38.053145],\n              [-77.764116, 38.053145],\n              [-77.765116, 38.053445],\n              [-77.766116, 38.053345],\n              [-77.766493, 38.053062],\n              [-77.766516, 38.053045],\n              [-77.767316, 38.052645],\n              [-77.767816, 38.051945],\n              [-77.768116, 38.051745],\n              [-77.768516, 38.051745],\n              [-77.769016, 38.052045],\n              [-77.769816, 38.052545],\n              [-77.770716, 38.053145],\n              [-77.771416, 38.053745],\n              [-77.771716, 38.054245],\n              [-77.771716, 38.054745],\n              [-77.771416, 38.055245],\n              [-77.771405, 38.055263],\n              [-77.771116, 38.055745],\n              [-77.770916, 38.056345],\n              [-77.771016, 38.056745],\n              [-77.771687, 38.057267],\n              [-77.771916, 38.057445],\n              [-77.77196, 38.057457],\n              [-77.773416, 38.057845],\n              [-77.774216, 38.057845],\n              [-77.775816, 38.058245],\n              [-77.776916, 38.058445],\n              [-77.777816, 38.058445],\n              [-77.778516, 38.058745],\n              [-77.779216, 38.059445],\n              [-77.780216, 38.060345],\n              [-77.781116, 38.061545],\n              [-77.781716, 38.062645],\n              [-77.782616, 38.063245],\n              [-77.783016, 38.063245],\n              [-77.784216, 38.063145],\n              [-77.784516, 38.063345],\n              [-77.784616, 38.064245],\n              [-77.784916, 38.065145],\n              [-77.784616, 38.065645],\n              [-77.784116, 38.065945],\n              [-77.783405, 38.06623],\n              [-77.783116, 38.066345],\n              [-77.782616, 38.067145],\n              [-77.782516, 38.067545],\n              [-77.782616, 38.068545],\n              [-77.782916, 38.069445],\n              [-77.783916, 38.070445],\n              [-77.784175, 38.070661],\n              [-77.784516, 38.070945],\n              [-77.784616, 38.071545],\n              [-77.784516, 38.071845],\n              [-77.784716, 38.072445],\n              [-77.785116, 38.073245],\n              [-77.785616, 38.073845],\n              [-77.785816, 38.074545],\n              [-77.785816, 38.074845],\n              [-77.786316, 38.075445],\n              [-77.786616, 38.076045],\n              [-77.786616, 38.076345],\n              [-77.787416, 38.076345],\n              [-77.787916, 38.076145],\n              [-77.788416, 38.076045],\n              [-77.78925, 38.075952],\n              [-77.789316, 38.075945],\n              [-77.790016, 38.076145],\n              [-77.790716, 38.076945],\n              [-77.791616, 38.077445],\n              [-77.793717, 38.078545],\n              [-77.79404, 38.078583],\n              [-77.794362, 38.078621],\n              [-77.795417, 38.078745],\n              [-77.796417, 38.078545],\n              [-77.796717, 38.078545],\n              [-77.797617, 38.078695],\n              [-77.798192, 38.078745],\n              [-77.798817, 38.078745],\n              [-77.799517, 38.078545],\n              [-77.800117, 38.078245],\n              [-77.801317, 38.078245],\n              [-77.802717, 38.078345],\n              [-77.803817, 38.078545],\n              [-77.804817, 38.078545],\n              [-77.805517, 38.078445],\n              [-77.806017, 38.078445],\n              [-77.806517, 38.078545],\n              [-77.807617, 38.078945],\n              [-77.808517, 38.079145],\n              [-77.808609, 38.079156],\n              [-77.809317, 38.079245],\n              [-77.810617, 38.079445],\n              [-77.810917, 38.079545],\n              [-77.811123, 38.0797],\n              [-77.811317, 38.079845],\n              [-77.81144, 38.079933],\n              [-77.812017, 38.080346],\n              [-77.812284, 38.080746],\n              [-77.812418, 38.080946],\n              [-77.812618, 38.081246],\n              [-77.812718, 38.081947],\n              [-77.812718, 38.082846],\n              [-77.812684, 38.083117],\n              [-77.812618, 38.083647],\n              [-77.812419, 38.084347],\n              [-77.812718, 38.085145],\n              [-77.812895, 38.085304],\n              [-77.812919, 38.085326],\n              [-77.813519, 38.085848],\n              [-77.814219, 38.086248],\n              [-77.814437, 38.086385],\n              [-77.815019, 38.086748],\n              [-77.815219, 38.086848],\n              [-77.815319, 38.086848],\n              [-77.815819, 38.086548],\n              [-77.815919, 38.086248],\n              [-77.816119, 38.085948],\n              [-77.816519, 38.085548],\n              [-77.816919, 38.085448],\n              [-77.817619, 38.085648],\n              [-77.817819, 38.085848],\n              [-77.818219, 38.086348],\n              [-77.819719, 38.087848],\n              [-77.820019, 38.088548],\n              [-77.820299, 38.089201],\n              [-77.820315, 38.08924],\n              [-77.820319, 38.089248],\n              [-77.820225, 38.089716],\n              [-77.820219, 38.089748],\n              [-77.820219, 38.090248],\n              [-77.820119, 38.090748],\n              [-77.819919, 38.091348],\n              [-77.819519, 38.091848],\n              [-77.819718, 38.092444],\n              [-77.820619, 38.092847],\n              [-77.821219, 38.093047],\n              [-77.822019, 38.093347],\n              [-77.823019, 38.093547],\n              [-77.823418, 38.093547],\n              [-77.823462, 38.093791],\n              [-77.823619, 38.094647],\n              [-77.823742, 38.094875],\n              [-77.823988, 38.095333],\n              [-77.824198, 38.095722],\n              [-77.824235, 38.095791],\n              [-77.824238, 38.095797],\n              [-77.824241, 38.095802],\n              [-77.824318, 38.095945],\n              [-77.824384, 38.096002],\n              [-77.824388, 38.096006],\n              [-77.825019, 38.096547],\n              [-77.826519, 38.097147],\n              [-77.827119, 38.097247],\n              [-77.828919, 38.097247],\n              [-77.830019, 38.097547],\n              [-77.830045, 38.097564],\n              [-77.830318, 38.097746],\n              [-77.830419, 38.098047],\n              [-77.830618, 38.098944],\n              [-77.830919, 38.099247],\n              [-77.831033, 38.099309],\n              [-77.832019, 38.099847],\n              [-77.833219, 38.100447],\n              [-77.833919, 38.100647],\n              [-77.834986, 38.100799],\n              [-77.835319, 38.100847],\n              [-77.836219, 38.101147],\n              [-77.836518, 38.101744],\n              [-77.836282, 38.102162],\n              [-77.836119, 38.102447],\n              [-77.836214, 38.103114],\n              [-77.836219, 38.103146],\n              [-77.836238, 38.103194],\n              [-77.836419, 38.103647],\n              [-77.836119, 38.103847],\n              [-77.836318, 38.104345],\n              [-77.836319, 38.104447],\n              [-77.837019, 38.104647],\n              [-77.837218, 38.104647],\n              [-77.837219, 38.104746],\n              [-77.837418, 38.105045],\n              [-77.837319, 38.105347],\n              [-77.837418, 38.105744],\n              [-77.837719, 38.106047],\n              [-77.838219, 38.106247],\n              [-77.838538, 38.105927],\n              [-77.838568, 38.105925],\n              [-77.839218, 38.105844],\n              [-77.839719, 38.106046],\n              [-77.840919, 38.105746],\n              [-77.842119, 38.105146],\n              [-77.842719, 38.105046],\n              [-77.843419, 38.105046],\n              [-77.844919, 38.104746],\n              [-77.845519, 38.104346],\n              [-77.845319, 38.103846],\n              [-77.844919, 38.103346],\n              [-77.844119, 38.102846],\n              [-77.843219, 38.101946],\n              [-77.842919, 38.101446],\n              [-77.843019, 38.101046],\n              [-77.843219, 38.100546],\n              [-77.843319, 38.100346],\n              [-77.843719, 38.099946],\n              [-77.843819, 38.099946],\n              [-77.844019, 38.099746],\n              [-77.844819, 38.099046],\n              [-77.845419, 38.098546],\n              [-77.846219, 38.098346],\n              [-77.847019, 38.098446],\n              [-77.847419, 38.098746],\n              [-77.847818, 38.099444],\n              [-77.847819, 38.099793],\n              [-77.847819, 38.100446],\n              [-77.8479, 38.100689],\n              [-77.848119, 38.101345],\n              [-77.848418, 38.101844],\n              [-77.849009, 38.101993],\n              [-77.849219, 38.102046],\n              [-77.849719, 38.102146],\n              [-77.850619, 38.102746],\n              [-77.851019, 38.102946],\n              [-77.851518, 38.103445],\n              [-77.851419, 38.104046],\n              [-77.85122, 38.104345],\n              [-77.851519, 38.104446],\n              [-77.852619, 38.104546],\n              [-77.853135, 38.104442],\n              [-77.854119, 38.104245],\n              [-77.854519, 38.103945],\n              [-77.854819, 38.103245],\n              [-77.854819, 38.102645],\n              [-77.854694, 38.102582],\n              [-77.854419, 38.102445],\n              [-77.854219, 38.101745],\n              [-77.854419, 38.100945],\n              [-77.854719, 38.100945],\n              [-77.855119, 38.100745],\n              [-77.855919, 38.099945],\n              [-77.856119, 38.099845],\n              [-77.856419, 38.099945],\n              [-77.857219, 38.100045],\n              [-77.858119, 38.100345],\n              [-77.858718, 38.100844],\n              [-77.858776, 38.101136],\n              [-77.858819, 38.101345],\n              [-77.858519, 38.102545],\n              [-77.858219, 38.103045],\n              [-77.858419, 38.103245],\n              [-77.858912, 38.103739],\n              [-77.859118, 38.103945],\n              [-77.859318, 38.104445],\n              [-77.859418, 38.104745],\n              [-77.859818, 38.105245],\n              [-77.860035, 38.105326],\n              [-77.860618, 38.105545],\n              [-77.862318, 38.105545],\n              [-77.863718, 38.105845],\n              [-77.864408, 38.106104],\n              [-77.864518, 38.106145],\n              [-77.865111, 38.106194],\n              [-77.865718, 38.106245],\n              [-77.866618, 38.106245],\n              [-77.867918, 38.105945],\n              [-77.869119, 38.105645],\n              [-77.869419, 38.105745],\n              [-77.870119, 38.105945],\n              [-77.871019, 38.106245],\n              [-77.871538, 38.106467],\n              [-77.871719, 38.106545],\n              [-77.871913, 38.106517],\n              [-77.872419, 38.106445],\n              [-77.873119, 38.106344],\n              [-77.873919, 38.106344],\n              [-77.874219, 38.106444],\n              [-77.874319, 38.106744],\n              [-77.874719, 38.107194],\n              [-77.875119, 38.107444],\n              [-77.875319, 38.107444],\n              [-77.875619, 38.107544],\n              [-77.875819, 38.107544],\n              [-77.876003, 38.107483],\n              [-77.876008, 38.107481],\n              [-77.876119, 38.107444],\n              [-77.876319, 38.107444],\n              [-77.876619, 38.107644],\n              [-77.877019, 38.107844],\n              [-77.877619, 38.108044],\n              [-77.878119, 38.108244],\n              [-77.878619, 38.108344],\n              [-77.879019, 38.108444],\n              [-77.879719, 38.108444],\n              [-77.880419, 38.108544],\n              [-77.880819, 38.108644],\n              [-77.881319, 38.108744],\n              [-77.881719, 38.108744],\n              [-77.882119, 38.108844],\n              [-77.882319, 38.108944],\n              [-77.882619, 38.109144],\n              [-77.882719, 38.109244],\n              [-77.882719, 38.109644],\n              [-77.882919, 38.109944],\n              [-77.883119, 38.110144],\n              [-77.883419, 38.110244],\n              [-77.883767, 38.110383],\n              [-77.883919, 38.110444],\n              [-77.884119, 38.110544],\n              [-77.884319, 38.110544],\n              [-77.884619, 38.110444],\n              [-77.885019, 38.110444],\n              [-77.885319, 38.110644],\n              [-77.885434, 38.110702],\n              [-77.885441, 38.110705],\n              [-77.885452, 38.110711],\n              [-77.885518, 38.110744],\n              [-77.885818, 38.111044],\n              [-77.885918, 38.111244],\n              [-77.88609, 38.111501],\n              [-77.886118, 38.111544],\n              [-77.886118, 38.111944],\n              [-77.886318, 38.112244],\n              [-77.886496, 38.112244],\n              [-77.886531, 38.112243],\n              [-77.886895, 38.112338],\n              [-77.886918, 38.112344],\n              [-77.887418, 38.112444],\n              [-77.887718, 38.112544],\n              [-77.888118, 38.112944],\n              [-77.888418, 38.113144],\n              [-77.889018, 38.113144],\n              [-77.889318, 38.113044],\n              [-77.890118, 38.112444],\n              [-77.890418, 38.112244],\n              [-77.890518, 38.112044],\n              [-77.890518, 38.111444],\n              [-77.891418, 38.111444],\n              [-77.891918, 38.111544],\n              [-77.892618, 38.111444],\n              [-77.893018, 38.111344],\n              [-77.893218, 38.111244],\n              [-77.893418, 38.111044],\n              [-77.893818, 38.111044],\n              [-77.894218, 38.110944],\n              [-77.894818, 38.110744],\n              [-77.895018, 38.110544],\n              [-77.895218, 38.110244],\n              [-77.895318, 38.110144],\n              [-77.895618, 38.110044],\n              [-77.896118, 38.110044],\n              [-77.896518, 38.110144],\n              [-77.896818, 38.110444],\n              [-77.896918, 38.110644],\n              [-77.896918, 38.111044],\n              [-77.896818, 38.111244],\n              [-77.896818, 38.111444],\n              [-77.896918, 38.111544],\n              [-77.897218, 38.111644],\n              [-77.897418, 38.111644],\n              [-77.898018, 38.111444],\n              [-77.898318, 38.111244],\n              [-77.898318, 38.110744],\n              [-77.898418, 38.110544],\n              [-77.898318, 38.110244],\n              [-77.898318, 38.110044],\n              [-77.898418, 38.109744],\n              [-77.898718, 38.109444],\n              [-77.898918, 38.109344],\n              [-77.899618, 38.109344],\n              [-77.899919, 38.109444],\n              [-77.900219, 38.109444],\n              [-77.900519, 38.109144],\n              [-77.900594, 38.108918],\n              [-77.900619, 38.108844],\n              [-77.900819, 38.108544],\n              [-77.901119, 38.108344],\n              [-77.901519, 38.108244],\n              [-77.901819, 38.108144],\n              [-77.902419, 38.108144],\n              [-77.902719, 38.108344],\n              [-77.903019, 38.108444],\n              [-77.903219, 38.108844],\n              [-77.903219, 38.109144],\n              [-77.903316, 38.109436],\n              [-77.903519, 38.109744],\n              [-77.904119, 38.110144],\n              [-77.904619, 38.110444],\n              [-77.905019, 38.110644],\n              [-77.905519, 38.110744],\n              [-77.905919, 38.110844],\n              [-77.906119, 38.110944],\n              [-77.907119, 38.111144],\n              [-77.907419, 38.111444],\n              [-77.907519, 38.111644],\n              [-77.907719, 38.111844],\n              [-77.90802, 38.111944],\n              [-77.90862, 38.111944],\n              [-77.90872, 38.112044],\n              [-77.90922, 38.111944],\n              [-77.90942, 38.112044],\n              [-77.90992, 38.112144],\n              [-77.910062, 38.112179],\n              [-77.91032, 38.112244],\n              [-77.91072, 38.112244],\n              [-77.91102, 38.112144],\n              [-77.911094, 38.112095],\n              [-77.91132, 38.111944],\n              [-77.911659, 38.11174],\n              [-77.91182, 38.111644],\n              [-77.91202, 38.111644],\n              [-77.91252, 38.111544],\n              [-77.91272, 38.111744],\n              [-77.91302, 38.112144],\n              [-77.91302, 38.112644],\n              [-77.91312, 38.113044],\n              [-77.91322, 38.113544],\n              [-77.91332, 38.113944],\n              [-77.91332, 38.114044],\n              [-77.913267, 38.114204],\n              [-77.91322, 38.114344],\n              [-77.91312, 38.114544],\n              [-77.91322, 38.114744],\n              [-77.91362, 38.115344],\n              [-77.91372, 38.115644],\n              [-77.91372, 38.115844],\n              [-77.913702, 38.115881],\n              [-77.91362, 38.116044],\n              [-77.91372, 38.116244],\n              [-77.91372, 38.116444],\n              [-77.91392, 38.116644],\n              [-77.91402, 38.116944],\n              [-77.91402, 38.117044],\n              [-77.91412, 38.117144],\n              [-77.914333, 38.11725],\n              [-77.91452, 38.117344],\n              [-77.91492, 38.117544],\n              [-77.91502, 38.117544],\n              [-77.91592, 38.118144],\n              [-77.91672, 38.118344],\n              [-77.91692, 38.118344],\n              [-77.91712, 38.118244],\n              [-77.91742, 38.118144],\n              [-77.91762, 38.118044],\n              [-77.91792, 38.117844],\n              [-77.91802, 38.117644],\n              [-77.91822, 38.117444],\n              [-77.91862, 38.117344],\n              [-77.91902, 38.117344],\n              [-77.91922, 38.117444],\n              [-77.91962, 38.117244],\n              [-77.91992, 38.117144],\n              [-77.920146, 38.117069],\n              [-77.92022, 38.117044],\n              [-77.92032, 38.116944],\n              [-77.92032, 38.116544],\n              [-77.92042, 38.116344],\n              [-77.92092, 38.116144],\n              [-77.92122, 38.115944],\n              [-77.92152, 38.115844],\n              [-77.92172, 38.115544],\n              [-77.92182, 38.115444],\n              [-77.92192, 38.115244],\n              [-77.92202, 38.115244],\n              [-77.92232, 38.115144],\n              [-77.92262, 38.115144],\n              [-77.92272, 38.114944],\n              [-77.92272, 38.114844],\n              [-77.92312, 38.114744],\n              [-77.92342, 38.114744],\n              [-77.92372, 38.114544],\n              [-77.923812, 38.114552],\n              [-77.923903, 38.11456],\n              [-77.923971, 38.114566],\n              [-77.92427, 38.114466],\n              [-77.924469, 38.114465],\n              [-77.924568, 38.114664],\n              [-77.924668, 38.114763],\n              [-77.924668, 38.114863],\n              [-77.924866, 38.115062],\n              [-77.925165, 38.114961],\n              [-77.925364, 38.11496],\n              [-77.926061, 38.115056],\n              [-77.926395, 38.114971],\n              [-77.926441, 38.114958],\n              [-77.926459, 38.114954],\n              [-77.926942, 38.114861],\n              [-77.926963, 38.114849],\n              [-77.927079, 38.11479],\n              [-77.927355, 38.11465],\n              [-77.927554, 38.114549],\n              [-77.928051, 38.114446],\n              [-77.928449, 38.114444],\n              [-77.928648, 38.114343],\n              [-77.928748, 38.114242],\n              [-77.928847, 38.114142],\n              [-77.928947, 38.113941],\n              [-77.929345, 38.113739],\n              [-77.929743, 38.113737],\n              [-77.930141, 38.113835],\n              [-77.930439, 38.113934],\n              [-77.930937, 38.114031],\n              [-77.931634, 38.113927],\n              [-77.931733, 38.113927],\n              [-77.931932, 38.114026],\n              [-77.932131, 38.114025],\n              [-77.93243, 38.113923],\n              [-77.932728, 38.113922],\n              [-77.933524, 38.114118],\n              [-77.934022, 38.114115],\n              [-77.934221, 38.114114],\n              [-77.93432, 38.114014],\n              [-77.93452, 38.114113],\n              [-77.934719, 38.114212],\n              [-77.934868, 38.114331],\n              [-77.935216, 38.114609],\n              [-77.935614, 38.114907],\n              [-77.935913, 38.115105],\n              [-77.936012, 38.115205],\n              [-77.936012, 38.115905],\n              [-77.936111, 38.115904],\n              [-77.936509, 38.115902],\n              [-77.936509, 38.116002],\n              [-77.936708, 38.116201],\n              [-77.936907, 38.1165],\n              [-77.936939, 38.116511],\n              [-77.937206, 38.116598],\n              [-77.937305, 38.116697],\n              [-77.937603, 38.116796],\n              [-77.937902, 38.116794],\n              [-77.938001, 38.116894],\n              [-77.938499, 38.117291],\n              [-77.938897, 38.117488],\n              [-77.939055, 38.117488],\n              [-77.93912, 38.117487],\n              [-77.939494, 38.117485],\n              [-77.939593, 38.117584],\n              [-77.939792, 38.117683],\n              [-77.939891, 38.117982],\n              [-77.939891, 38.118182],\n              [-77.93999, 38.118381],\n              [-77.940189, 38.11858],\n              [-77.940488, 38.118778],\n              [-77.940587, 38.118877],\n              [-77.940886, 38.118876],\n              [-77.940985, 38.118875],\n              [-77.941365, 38.118779],\n              [-77.941401, 38.118767],\n              [-77.941682, 38.118672],\n              [-77.941981, 38.118671],\n              [-77.94218, 38.11867],\n              [-77.942279, 38.118669],\n              [-77.942578, 38.118767],\n              [-77.942777, 38.118866],\n              [-77.943075, 38.118965],\n              [-77.943175, 38.118964],\n              [-77.943453, 38.118963],\n              [-77.943473, 38.118963],\n              [-77.943672, 38.119062],\n              [-77.943771, 38.119161],\n              [-77.944169, 38.119459],\n              [-77.944368, 38.119558],\n              [-77.944567, 38.119457],\n              [-77.944767, 38.119356],\n              [-77.944866, 38.119355],\n              [-77.945165, 38.119354],\n              [-77.945463, 38.119252],\n              [-77.945861, 38.11915],\n              [-77.94606, 38.119249],\n              [-77.946245, 38.119341],\n              [-77.946263, 38.119352],\n              [-77.946271, 38.119357],\n              [-77.946458, 38.119547],\n              [-77.946657, 38.119746],\n              [-77.946757, 38.119845],\n              [-77.947056, 38.120043],\n              [-77.94715, 38.120024],\n              [-77.947554, 38.119941],\n              [-77.947952, 38.119739],\n              [-77.948093, 38.119597],\n              [-77.948251, 38.119438],\n              [-77.948251, 38.118739],\n              [-77.948152, 38.118439],\n              [-77.948252, 38.118239],\n              [-77.948451, 38.118038],\n              [-77.94875, 38.117837],\n              [-77.949148, 38.117835],\n              [-77.949546, 38.117733],\n              [-77.949679, 38.117709],\n              [-77.950143, 38.11763],\n              [-77.950342, 38.117729],\n              [-77.95064, 38.117827],\n              [-77.95074, 38.117827],\n              [-77.951038, 38.118025],\n              [-77.951138, 38.118025],\n              [-77.951337, 38.118023],\n              [-77.951436, 38.118023],\n              [-77.951735, 38.118021],\n              [-77.951834, 38.118121],\n              [-77.951899, 38.118153],\n              [-77.952232, 38.118319],\n              [-77.952232, 38.118618],\n              [-77.95263, 38.118616],\n              [-77.95273, 38.118716],\n              [-77.953028, 38.118614],\n              [-77.953327, 38.118513],\n              [-77.953362, 38.118477],\n              [-77.953426, 38.118412],\n              [-77.953426, 38.11822],\n              [-77.953524, 38.118137],\n              [-77.954378, 38.117753],\n              [-77.954821, 38.117445],\n              [-77.953573, 38.118567],\n              [-77.952372, 38.119648],\n              [-77.947546, 38.124067],\n              [-77.946627, 38.124908],\n              [-77.946398, 38.125119],\n              [-77.944577, 38.126731],\n              [-77.938751, 38.13189],\n              [-77.938702, 38.131933],\n              [-77.935031, 38.135185],\n              [-77.93439, 38.135753],\n              [-77.932596, 38.137347],\n              [-77.930881, 38.138862],\n              [-77.929499, 38.140084],\n              [-77.929489, 38.140093],\n              [-77.929483, 38.140098],\n              [-77.929469, 38.14011],\n              [-77.929436, 38.140139],\n              [-77.929416, 38.140157],\n              [-77.929208, 38.140341],\n              [-77.928886, 38.140626],\n              [-77.92689, 38.142391],\n              [-77.926609, 38.142642],\n              [-77.9266, 38.14265],\n              [-77.926596, 38.142654],\n              [-77.926587, 38.142662],\n              [-77.925967, 38.143216],\n              [-77.925407, 38.143718],\n              [-77.924702, 38.144353],\n              [-77.924242, 38.144759],\n              [-77.921958, 38.146772],\n              [-77.917833, 38.150414],\n              [-77.916843, 38.151308],\n              [-77.915042, 38.152928],\n              [-77.908399, 38.158908],\n              [-77.90698, 38.160181],\n              [-77.904953, 38.162006],\n              [-77.904562, 38.162356],\n              [-77.902894, 38.163858],\n              [-77.902363, 38.164333],\n              [-77.899196, 38.167186],\n              [-77.896021, 38.170045],\n              [-77.89319, 38.17259],\n              [-77.889731, 38.175683],\n              [-77.889422, 38.175957],\n              [-77.889071, 38.176269],\n              [-77.884938, 38.179961],\n              [-77.881313, 38.183198],\n              [-77.876205, 38.187761],\n              [-77.875736, 38.188181],\n              [-77.874778, 38.189039],\n              [-77.872181, 38.191563],\n              [-77.872123, 38.19162],\n              [-77.869763, 38.193937],\n              [-77.866582, 38.19706],\n              [-77.865098, 38.198517],\n              [-77.858041, 38.205571],\n              [-77.856035, 38.207575],\n              [-77.853574, 38.210035],\n              [-77.852286, 38.211323],\n              [-77.846902, 38.216706],\n              [-77.845973, 38.217633],\n              [-77.845562, 38.218045],\n              [-77.84173, 38.221874],\n              [-77.840033, 38.223571],\n              [-77.837005, 38.226593],\n              [-77.836435, 38.227166],\n              [-77.835743, 38.227854],\n              [-77.834097, 38.229498],\n              [-77.82987, 38.233045],\n              [-77.827629, 38.234913],\n              [-77.826809, 38.235597],\n              [-77.826772, 38.235628],\n              [-77.820078, 38.24121],\n              [-77.819149, 38.241985],\n              [-77.818526, 38.242504],\n              [-77.817855, 38.243063],\n              [-77.817417, 38.243429],\n              [-77.815901, 38.244694],\n              [-77.814042, 38.246244],\n              [-77.812299, 38.247637],\n              [-77.809368, 38.250137],\n              [-77.807464, 38.25174],\n              [-77.80602, 38.252954],\n              [-77.801566, 38.256698],\n              [-77.798571, 38.259213],\n              [-77.798533, 38.259245],\n              [-77.798321, 38.25943],\n              [-77.7983, 38.259448],\n              [-77.793984, 38.263186],\n              [-77.789503, 38.266911],\n              [-77.786394, 38.269445],\n              [-77.785812, 38.269936],\n              [-77.783527, 38.271873],\n              [-77.7835, 38.271896],\n              [-77.783264, 38.272098],\n              [-77.780507, 38.274689],\n              [-77.777867, 38.27717],\n              [-77.773299, 38.281455],\n              [-77.772244, 38.282446],\n              [-77.769463, 38.285061],\n              [-77.766253, 38.288078],\n              [-77.761298, 38.292741],\n              [-77.758601, 38.295265],\n              [-77.757204, 38.296574],\n              [-77.751336, 38.302092],\n              [-77.751229, 38.302191],\n              [-77.74972, 38.30361],\n              [-77.749583, 38.303731],\n              [-77.748419, 38.304817],\n              [-77.748307, 38.304918],\n              [-77.748167, 38.305044],\n              [-77.746672, 38.306366],\n              [-77.744695, 38.308092],\n              [-77.744534, 38.308232],\n              [-77.744524, 38.308241],\n              [-77.744454, 38.308302],\n              [-77.742004, 38.310441],\n              [-77.742, 38.310445],\n              [-77.740558, 38.311707],\n              [-77.740035, 38.312164],\n              [-77.739019, 38.313051],\n              [-77.738362, 38.313621],\n              [-77.736611, 38.315151],\n              [-77.731793, 38.319358],\n              [-77.730211, 38.320743],\n              [-77.729265, 38.32157],\n              [-77.729199, 38.321625],\n              [-77.729172, 38.321703],\n              [-77.729086, 38.321779],\n              [-77.72749, 38.323201],\n              [-77.727486, 38.323205],\n              [-77.727481, 38.323209],\n              [-77.727475, 38.323214],\n              [-77.726691, 38.323913],\n              [-77.72669, 38.323942],\n              [-77.726689, 38.323973],\n              [-77.726424, 38.3245],\n              [-77.726344, 38.324804],\n              [-77.726264, 38.32511],\n              [-77.726243, 38.325215],\n              [-77.726225, 38.325309],\n              [-77.726188, 38.3255],\n              [-77.726133, 38.325567],\n              [-77.725993, 38.325736],\n              [-77.725937, 38.325928],\n              [-77.725932, 38.325962],\n              [-77.725909, 38.32612],\n              [-77.725693, 38.326434],\n              [-77.72554, 38.326658],\n              [-77.725401, 38.326905],\n              [-77.72529, 38.327048],\n              [-77.725227, 38.327257],\n              [-77.725025, 38.327751],\n              [-77.724865, 38.327971],\n              [-77.724684, 38.328174],\n              [-77.724475, 38.328531],\n              [-77.724315, 38.328761],\n              [-77.723883, 38.329305],\n              [-77.723792, 38.329481],\n              [-77.723284, 38.330233],\n              [-77.723082, 38.330601],\n              [-77.722977, 38.330756],\n              [-77.722915, 38.330848],\n              [-77.722678, 38.331062],\n              [-77.722532, 38.331298],\n              [-77.722128, 38.331743],\n              [-77.721989, 38.331963],\n              [-77.721877, 38.332089],\n              [-77.721696, 38.332529],\n              [-77.721648, 38.33283],\n              [-77.721585, 38.333023],\n              [-77.721488, 38.333215],\n              [-77.721377, 38.33338],\n              [-77.721341, 38.333434],\n              [-77.721265, 38.333566],\n              [-77.721195, 38.333934],\n              [-77.721105, 38.334055],\n              [-77.720944, 38.334137],\n              [-77.720728, 38.33411],\n              [-77.720533, 38.334126],\n              [-77.720213, 38.334264],\n              [-77.720108, 38.33428],\n              [-77.719808, 38.334248],\n              [-77.719439, 38.334522],\n              [-77.71939, 38.334659],\n              [-77.719892, 38.335148],\n              [-77.719885, 38.335302],\n              [-77.71984, 38.335404],\n              [-77.719837, 38.335411],\n              [-77.719739, 38.335516],\n              [-77.7196, 38.335565],\n              [-77.719286, 38.335582],\n              [-77.718259, 38.335484],\n              [-77.718248, 38.335483],\n              [-77.71802, 38.335486],\n              [-77.718007, 38.335486],\n              [-77.717999, 38.335487],\n              [-77.717949, 38.335487],\n              [-77.717836, 38.335489],\n              [-77.717279, 38.335549],\n              [-77.717113, 38.335587],\n              [-77.716993, 38.335615],\n              [-77.716735, 38.335632],\n              [-77.716561, 38.335594],\n              [-77.716303, 38.335506],\n              [-77.71608, 38.335495],\n              [-77.71594, 38.335517],\n              [-77.715655, 38.335605],\n              [-77.715383, 38.33572],\n              [-77.715278, 38.335748],\n              [-77.715139, 38.335825],\n              [-77.714818, 38.336077],\n              [-77.714714, 38.33639],\n              [-77.714679, 38.336582],\n              [-77.7147, 38.336698],\n              [-77.714861, 38.337005],\n              [-77.715035, 38.337142],\n              [-77.715121, 38.33721],\n              [-77.71523, 38.337296],\n              [-77.715425, 38.337378],\n              [-77.715544, 38.337466],\n              [-77.715921, 38.337845],\n              [-77.716043, 38.33799],\n              [-77.716111, 38.338072],\n              [-77.716151, 38.338119],\n              [-77.716367, 38.338295],\n              [-77.71653, 38.338397],\n              [-77.717057, 38.338728],\n              [-77.717476, 38.33903],\n              [-77.717803, 38.339217],\n              [-77.718068, 38.339464],\n              [-77.718208, 38.339656],\n              [-77.718591, 38.339947],\n              [-77.718675, 38.340122],\n              [-77.718752, 38.340441],\n              [-77.718815, 38.340572],\n              [-77.718745, 38.341292],\n              [-77.718648, 38.34161],\n              [-77.718411, 38.341846],\n              [-77.718091, 38.342022],\n              [-77.717958, 38.342071],\n              [-77.717428, 38.342198],\n              [-77.717247, 38.342308],\n              [-77.716982, 38.342884],\n              [-77.71685, 38.343071],\n              [-77.716767, 38.343269],\n              [-77.716697, 38.343335],\n              [-77.716691, 38.343337],\n              [-77.71646, 38.343411],\n              [-77.715979, 38.343494],\n              [-77.715923, 38.343565],\n              [-77.715903, 38.343645],\n              [-77.715833, 38.343933],\n              [-77.715756, 38.344016],\n              [-77.715512, 38.344147],\n              [-77.715303, 38.344175],\n              [-77.715059, 38.344164],\n              [-77.71492, 38.344137],\n              [-77.714564, 38.344029],\n              [-77.714376, 38.343972],\n              [-77.714257, 38.343972],\n              [-77.714123, 38.344027],\n              [-77.714116, 38.344027],\n              [-77.714097, 38.344038],\n              [-77.713797, 38.344055],\n              [-77.713546, 38.344274],\n              [-77.713379, 38.344587],\n              [-77.713219, 38.344686],\n              [-77.713087, 38.34473],\n              [-77.712884, 38.344906],\n              [-77.712641, 38.345241],\n              [-77.712452, 38.345455],\n              [-77.712418, 38.345697],\n              [-77.712383, 38.345801],\n              [-77.712397, 38.346026],\n              [-77.712453, 38.346152],\n              [-77.71269, 38.346525],\n              [-77.712948, 38.347085],\n              [-77.713039, 38.347173],\n              [-77.713171, 38.347371],\n              [-77.713262, 38.347475],\n              [-77.713422, 38.347596],\n              [-77.713562, 38.347673],\n              [-77.714085, 38.347898],\n              [-77.714329, 38.347974],\n              [-77.714399, 38.348046],\n              [-77.714492, 38.348189],\n              [-77.714531, 38.348249],\n              [-77.714671, 38.348441],\n              [-77.714706, 38.348611],\n              [-77.714667, 38.348959],\n              [-77.714664, 38.348985],\n              [-77.714601, 38.349166],\n              [-77.714253, 38.349567],\n              [-77.714037, 38.349742],\n              [-77.713786, 38.349836],\n              [-77.713312, 38.35005],\n              [-77.713264, 38.350084],\n              [-77.713096, 38.350204],\n              [-77.71311, 38.350286],\n              [-77.713192, 38.350455],\n              [-77.713256, 38.350588],\n              [-77.713249, 38.350654],\n              [-77.713189, 38.350725],\n              [-77.713033, 38.350907],\n              [-77.713006, 38.351082],\n              [-77.713043, 38.351172],\n              [-77.71311, 38.351335],\n              [-77.713089, 38.351395],\n              [-77.713034, 38.351439],\n              [-77.712657, 38.351379],\n              [-77.712357, 38.351242],\n              [-77.711981, 38.351165],\n              [-77.711723, 38.351028],\n              [-77.7115, 38.350934],\n              [-77.711199, 38.350873],\n              [-77.711018, 38.350836],\n              [-77.710851, 38.350951],\n              [-77.710782, 38.351077],\n              [-77.710768, 38.351549],\n              [-77.710705, 38.351786],\n              [-77.710726, 38.351895],\n              [-77.710998, 38.352428],\n              [-77.710999, 38.352449],\n              [-77.711005, 38.352603],\n              [-77.710949, 38.352642],\n              [-77.710071, 38.352499],\n              [-77.709325, 38.35245],\n              [-77.708997, 38.352395],\n              [-77.708267, 38.352245],\n              [-77.70796, 38.352344],\n              [-77.707708, 38.352597],\n              [-77.707637, 38.352877],\n              [-77.70783, 38.353233],\n              [-77.70796, 38.353834],\n              [-77.70828, 38.354246],\n              [-77.708478, 38.354364],\n              [-77.708689, 38.35449],\n              [-77.709162, 38.35467],\n              [-77.709591, 38.355116],\n              [-77.709465, 38.355333],\n              [-77.709086, 38.355531],\n              [-77.70758, 38.355341],\n              [-77.706536, 38.355002],\n              [-77.705493, 38.354845],\n              [-77.705213, 38.355021],\n              [-77.705151, 38.355258],\n              [-77.705134, 38.355366],\n              [-77.705109, 38.355466],\n              [-77.705082, 38.355531],\n              [-77.704955, 38.355548],\n              [-77.705064, 38.355624],\n              [-77.705146, 38.355847],\n              [-77.705584, 38.356349],\n              [-77.705522, 38.356594],\n              [-77.705324, 38.356819],\n              [-77.705299, 38.357106],\n              [-77.705661, 38.357161],\n              [-77.70615, 38.357089],\n              [-77.706686, 38.357206],\n              [-77.706941, 38.357499],\n              [-77.707016, 38.357764],\n              [-77.7078, 38.358573],\n              [-77.707765, 38.358713],\n              [-77.707548, 38.358826],\n              [-77.707077, 38.358828],\n              [-77.706669, 38.358766],\n              [-77.705987, 38.358482],\n              [-77.705533, 38.358414],\n              [-77.705271, 38.35852],\n              [-77.704737, 38.358585],\n              [-77.704529, 38.358663],\n              [-77.70374, 38.358617],\n              [-77.703578, 38.358701],\n              [-77.703542, 38.358841],\n              [-77.704154, 38.359588],\n              [-77.704066, 38.359938],\n              [-77.703466, 38.360357],\n              [-77.703458, 38.360362],\n              [-77.703451, 38.360367],\n              [-77.703209, 38.360536],\n              [-77.703197, 38.36058],\n              [-77.703191, 38.360606],\n              [-77.702, 38.360368],\n              [-77.701894, 38.360347],\n              [-77.701301, 38.360155],\n              [-77.701244, 38.360137],\n              [-77.701038, 38.36007],\n              [-77.700328, 38.359586],\n              [-77.697592, 38.357077],\n              [-77.697111, 38.356731],\n              [-77.696786, 38.356655],\n              [-77.695785, 38.356473],\n              [-77.695473, 38.356429],\n              [-77.694619, 38.356501],\n              [-77.694116, 38.356629],\n              [-77.693231, 38.357125],\n              [-77.692963, 38.357351],\n              [-77.691846, 38.35816],\n              [-77.690704, 38.35873],\n              [-77.690672, 38.358721],\n              [-77.688953, 38.359189],\n              [-77.688274, 38.359269],\n              [-77.688111, 38.359353],\n              [-77.687495, 38.359369],\n              [-77.687224, 38.35951],\n              [-77.686444, 38.359429],\n              [-77.685983, 38.359578],\n              [-77.685899, 38.359622],\n              [-77.685793, 38.359677],\n              [-77.685681, 38.359651],\n              [-77.685548, 38.359621],\n              [-77.685168, 38.359819],\n              [-77.684643, 38.359849],\n              [-77.68341, 38.359699],\n              [-77.683065, 38.359756],\n              [-77.682282, 38.359744],\n              [-77.681987, 38.359739],\n              [-77.68177, 38.359852],\n              [-77.681362, 38.359791],\n              [-77.681018, 38.359848],\n              [-77.680555, 38.359814],\n              [-77.680293, 38.35992],\n              [-77.679885, 38.359859],\n              [-77.679541, 38.359916],\n              [-77.679338, 38.360021],\n              [-77.679107, 38.360141],\n              [-77.678629, 38.360542],\n              [-77.678288, 38.361145],\n              [-77.678213, 38.362188],\n              [-77.678037, 38.363071],\n              [-77.678075, 38.363295],\n              [-77.677764, 38.364339],\n              [-77.67762, 38.364535],\n              [-77.677647, 38.364612],\n              [-77.677467, 38.364767],\n              [-77.677144, 38.3653],\n              [-77.676657, 38.365735],\n              [-77.675863, 38.36627],\n              [-77.67449, 38.367045],\n              [-77.674192, 38.367291],\n              [-77.673995, 38.367697],\n              [-77.673796, 38.367827],\n              [-77.673769, 38.367845],\n              [-77.673688, 38.367978],\n              [-77.673466, 38.368672],\n              [-77.673088, 38.369233],\n              [-77.67244, 38.369935],\n              [-77.671799, 38.37033],\n              [-77.671609, 38.370428],\n              [-77.671446, 38.370513],\n              [-77.671364, 38.370464],\n              [-77.67093, 38.370508],\n              [-77.670514, 38.370663],\n              [-77.670332, 38.370636],\n              [-77.670169, 38.37072],\n              [-77.66988, 38.370749],\n              [-77.668346, 38.370482],\n              [-77.668066, 38.370658],\n              [-77.667794, 38.370616],\n              [-77.667713, 38.370659],\n              [-77.667077, 38.370472],\n              [-77.666507, 38.370677],\n              [-77.66619, 38.370629],\n              [-77.665719, 38.370813],\n              [-77.665583, 38.370792],\n              [-77.664716, 38.371243],\n              [-77.663271, 38.372207],\n              [-77.661906, 38.372855],\n              [-77.66167, 38.372856],\n              [-77.661245, 38.373047],\n              [-77.661055, 38.373054],\n              [-77.660513, 38.373336],\n              [-77.660331, 38.373309],\n              [-77.660006, 38.373478],\n              [-77.659862, 38.373674],\n              [-77.659482, 38.373871],\n              [-77.65933, 38.374103],\n              [-77.659113, 38.374228],\n              [-77.658778, 38.37442],\n              [-77.658633, 38.374434],\n              [-77.657657, 38.374942],\n              [-77.657633, 38.375008],\n              [-77.657622, 38.375108],\n              [-77.656935, 38.375404],\n              [-77.656572, 38.37535],\n              [-77.65612, 38.375554],\n              [-77.655655, 38.375491],\n              [-77.65561, 38.375485],\n              [-77.655601, 38.375484],\n              [-77.655587, 38.375482],\n              [-77.655572, 38.37548],\n              [-77.655229, 38.375434],\n              [-77.654959, 38.375397],\n              [-77.65485, 38.375453],\n              [-77.654569, 38.375447],\n              [-77.653608, 38.375339],\n              [-77.653391, 38.375451],\n              [-77.653028, 38.375397],\n              [-77.652774, 38.375467],\n              [-77.652013, 38.375781],\n              [-77.651933, 38.375813],\n              [-77.65159, 38.376004],\n              [-77.650234, 38.376757],\n              [-77.64933, 38.377166],\n              [-77.649194, 38.377145],\n              [-77.648236, 38.377582],\n              [-77.6481, 38.377562],\n              [-77.647948, 38.377641],\n              [-77.647666, 38.377787],\n              [-77.647257, 38.377725],\n              [-77.646959, 38.377789],\n              [-77.646687, 38.37793],\n              [-77.646071, 38.377946],\n              [-77.645746, 38.378115],\n              [-77.645097, 38.378017],\n              [-77.644748, 38.377965],\n              [-77.644514, 38.377875],\n              [-77.644275, 38.377784],\n              [-77.642969, 38.377551],\n              [-77.64285, 38.37746],\n              [-77.642487, 38.377405],\n              [-77.642325, 38.37749],\n              [-77.642097, 38.377481],\n              [-77.641998, 38.377477],\n              [-77.641689, 38.377394],\n              [-77.641667, 38.377378],\n              [-77.641407, 38.377206],\n              [-77.641364, 38.377199],\n              [-77.641181, 38.377171],\n              [-77.641084, 38.377065],\n              [-77.64015, 38.376034],\n              [-77.64005, 38.376055],\n              [-77.639312, 38.375253],\n              [-77.639185, 38.375197],\n              [-77.639075, 38.375072],\n              [-77.639092, 38.375009],\n              [-77.639083, 38.374828],\n              [-77.638517, 38.374088],\n              [-77.638516, 38.373906],\n              [-77.638086, 38.373187],\n              [-77.638112, 38.373081],\n              [-77.637145, 38.371881],\n              [-77.637107, 38.371657],\n              [-77.637196, 38.371307],\n              [-77.637494, 38.371061],\n              [-77.638253, 38.370666],\n              [-77.638697, 38.370588],\n              [-77.63906, 38.370643],\n              [-77.639794, 38.370535],\n              [-77.640119, 38.370366],\n              [-77.641196, 38.37002],\n              [-77.642443, 38.369372],\n              [-77.642741, 38.369126],\n              [-77.643571, 38.368144],\n              [-77.643614, 38.368094],\n              [-77.644, 38.367316],\n              [-77.644214, 38.366658],\n              [-77.644505, 38.365138],\n              [-77.644522, 38.365068],\n              [-77.644482, 38.364298],\n              [-77.644588, 38.363878],\n              [-77.644524, 38.363759],\n              [-77.644586, 38.363514],\n              [-77.644503, 38.363283],\n              [-77.644509, 38.362702],\n              [-77.644413, 38.362453],\n              [-77.644169, 38.361815],\n              [-77.643858, 38.361368],\n              [-77.643731, 38.361312],\n              [-77.643476, 38.361019],\n              [-77.643158, 38.360971],\n              [-77.642849, 38.360706],\n              [-77.641995, 38.360359],\n              [-77.641849, 38.360192],\n              [-77.641532, 38.360144],\n              [-77.641177, 38.359872],\n              [-77.640541, 38.359594],\n              [-77.640358, 38.359385],\n              [-77.640086, 38.359343],\n              [-77.63985, 38.359162],\n              [-77.639504, 38.359037],\n              [-77.638552, 38.358893],\n              [-77.638262, 38.358922],\n              [-77.6381, 38.359007],\n              [-77.637991, 38.359063],\n              [-77.637719, 38.359022],\n              [-77.637321, 38.359107],\n              [-77.637104, 38.35922],\n              [-77.636696, 38.359158],\n              [-77.636297, 38.359244],\n              [-77.63608, 38.359356],\n              [-77.635573, 38.359316],\n              [-77.635193, 38.359513],\n              [-77.634966, 38.359479],\n              [-77.634089, 38.359783],\n              [-77.63342, 38.360191],\n              [-77.633096, 38.360542],\n              [-77.632925, 38.360843],\n              [-77.632817, 38.3609],\n              [-77.632448, 38.361426],\n              [-77.632152, 38.362035],\n              [-77.631424, 38.363053],\n              [-77.631137, 38.363627],\n              [-77.630995, 38.36437],\n              [-77.630887, 38.364426],\n              [-77.630663, 38.364938],\n              [-77.630383, 38.365305],\n              [-77.630349, 38.36535],\n              [-77.63024, 38.365492],\n              [-77.630023, 38.365605],\n              [-77.629825, 38.365829],\n              [-77.629646, 38.366348],\n              [-77.62943, 38.366642],\n              [-77.629142, 38.366853],\n              [-77.628974, 38.367066],\n              [-77.628947, 38.367101],\n              [-77.62892, 38.367135],\n              [-77.62887, 38.367199],\n              [-77.628814, 38.36727],\n              [-77.628655, 38.367471],\n              [-77.628575, 38.367786],\n              [-77.628359, 38.36808],\n              [-77.627248, 38.368749],\n              [-77.626795, 38.368862],\n              [-77.62656, 38.368863],\n              [-77.625979, 38.368739],\n              [-77.625795, 38.368642],\n              [-77.625634, 38.368558],\n              [-77.625397, 38.368433],\n              [-77.625236, 38.368409],\n              [-77.624989, 38.368371],\n              [-77.624881, 38.368427],\n              [-77.624731, 38.368404],\n              [-77.624723, 38.368403],\n              [-77.624695, 38.368399],\n              [-77.624605, 38.368385],\n              [-77.624518, 38.368372],\n              [-77.624406, 38.368396],\n              [-77.624233, 38.368433],\n              [-77.623197, 38.368436],\n              [-77.623079, 38.368473],\n              [-77.622859, 38.36846],\n              [-77.622779, 38.36844],\n              [-77.622107, 38.368269],\n              [-77.62192, 38.368221],\n              [-77.621907, 38.368218],\n              [-77.621884, 38.368213],\n              [-77.621634, 38.368158],\n              [-77.620704, 38.368061],\n              [-77.620165, 38.368038],\n              [-77.619973, 38.368031],\n              [-77.619477, 38.36801],\n              [-77.619197, 38.367948],\n              [-77.618918, 38.367885],\n              [-77.618811, 38.367861],\n              [-77.618729, 38.367843],\n              [-77.618748, 38.367912],\n              [-77.618766, 38.367982],\n              [-77.618835, 38.36825],\n              [-77.618849, 38.368275],\n              [-77.619123, 38.368704],\n              [-77.619187, 38.368946],\n              [-77.619296, 38.36942],\n              [-77.619212, 38.369748],\n              [-77.619112, 38.370446],\n              [-77.619121, 38.371147],\n              [-77.619497, 38.371877],\n              [-77.61986, 38.372374],\n              [-77.620145, 38.372724],\n              [-77.620246, 38.37312],\n              [-77.62028, 38.373329],\n              [-77.620115, 38.373814],\n              [-77.61978, 38.374406],\n              [-77.619459, 38.374675],\n              [-77.619261, 38.374842],\n              [-77.619063, 38.375008],\n              [-77.619012, 38.37505],\n              [-77.618962, 38.375093],\n              [-77.618912, 38.375135],\n              [-77.619112, 38.375335],\n              [-77.619012, 38.375535],\n              [-77.618912, 38.375835],\n              [-77.619012, 38.376135],\n              [-77.619012, 38.376835],\n              [-77.619212, 38.377635],\n              [-77.619612, 38.378235],\n              [-77.620212, 38.379035],\n              [-77.620712, 38.379735],\n              [-77.620912, 38.380035],\n              [-77.621012, 38.380935],\n              [-77.621112, 38.381635],\n              [-77.620912, 38.382235],\n              [-77.620812, 38.382635],\n              [-77.620812, 38.383435],\n              [-77.620712, 38.384035],\n              [-77.620512, 38.384635],\n              [-77.620512, 38.385635],\n              [-77.620812, 38.386235],\n              [-77.621012, 38.386735],\n              [-77.621112, 38.387135],\n              [-77.621112, 38.387535],\n              [-77.621212, 38.388135],\n              [-77.621412, 38.388735],\n              [-77.621812, 38.389235],\n              [-77.622312, 38.389835],\n              [-77.623312, 38.390635],\n              [-77.623912, 38.390835],\n              [-77.624412, 38.391035],\n              [-77.624712, 38.391297],\n              [-77.628254, 38.391749],\n              [-77.628983, 38.391842],\n              [-77.629709, 38.391935],\n              [-77.630312, 38.392135],\n              [-77.630912, 38.392235],\n              [-77.631512, 38.392435],\n              [-77.632012, 38.392435],\n              [-77.632412, 38.392535],\n              [-77.632712, 38.392635],\n              [-77.632912, 38.392735],\n              [-77.633112, 38.392935],\n              [-77.633198, 38.393106],\n              [-77.633212, 38.393135],\n              [-77.633253, 38.393251],\n              [-77.633298, 38.393435],\n              [-77.633324, 38.393618],\n              [-77.633377, 38.393993],\n              [-77.633378, 38.394],\n              [-77.633389, 38.394081],\n              [-77.633368, 38.394371],\n              [-77.633278, 38.394797],\n              [-77.633148, 38.395279],\n              [-77.633012, 38.395735],\n              [-77.632812, 38.396135],\n              [-77.632612, 38.396335],\n              [-77.632512, 38.396535],\n              [-77.632312, 38.396735],\n              [-77.63239, 38.396971],\n              [-77.632397, 38.396992],\n              [-77.632413, 38.397008],\n              [-77.63243, 38.397026],\n              [-77.632456, 38.397053],\n              [-77.632607, 38.397144],\n              [-77.632799, 38.397381],\n              [-77.632826, 38.397414],\n              [-77.632831, 38.39742],\n              [-77.632836, 38.397427],\n              [-77.632954, 38.397577],\n              [-77.633256, 38.397891],\n              [-77.633374, 38.397987],\n              [-77.633474, 38.398023],\n              [-77.633481, 38.398026],\n              [-77.633494, 38.39803],\n              [-77.633501, 38.398032],\n              [-77.633519, 38.398038],\n              [-77.633797, 38.398161],\n              [-77.634049, 38.398251],\n              [-77.634061, 38.398257],\n              [-77.634078, 38.398261],\n              [-77.634123, 38.398298],\n              [-77.634129, 38.398303],\n              [-77.634212, 38.398369],\n              [-77.634218, 38.398374],\n              [-77.634261, 38.398452],\n              [-77.634279, 38.398496],\n              [-77.634391, 38.398741],\n              [-77.634499, 38.399128],\n              [-77.634477, 38.399488],\n              [-77.634431, 38.399714],\n              [-77.634353, 38.400027],\n              [-77.634343, 38.400241],\n              [-77.634341, 38.400248],\n              [-77.634312, 38.400335],\n              [-77.634112, 38.401135],\n              [-77.634012, 38.401635],\n              [-77.634012, 38.402035],\n              [-77.634112, 38.402435],\n              [-77.634112, 38.402735],\n              [-77.634066, 38.402908],\n              [-77.634023, 38.403134],\n              [-77.633868, 38.403526],\n              [-77.633714, 38.403864],\n              [-77.63347, 38.404293],\n              [-77.633321, 38.404694],\n              [-77.633207, 38.405003],\n              [-77.633094, 38.405207],\n              [-77.63309, 38.405214],\n              [-77.632911, 38.405931],\n              [-77.632738, 38.4064],\n              [-77.632651, 38.406601],\n              [-77.632608, 38.406768],\n              [-77.632564, 38.406902],\n              [-77.632554, 38.406917],\n              [-77.632518, 38.406969],\n              [-77.632512, 38.407003],\n              [-77.632495, 38.407093],\n              [-77.632459, 38.407281],\n              [-77.632456, 38.407297],\n              [-77.63244, 38.407378],\n              [-77.632503, 38.407592],\n              [-77.632507, 38.407605],\n              [-77.632511, 38.407619],\n              [-77.632514, 38.407627],\n              [-77.632516, 38.407635],\n              [-77.632525, 38.407665],\n              [-77.632607, 38.40794],\n              [-77.632643, 38.408064],\n              [-77.632926, 38.408434],\n              [-77.63313, 38.408811],\n              [-77.633202, 38.408945],\n              [-77.633212, 38.408963],\n              [-77.633247, 38.409027],\n              [-77.633341, 38.409136],\n              [-77.633423, 38.40923],\n              [-77.633521, 38.409342],\n              [-77.633526, 38.409348],\n              [-77.633575, 38.409404],\n              [-77.63364, 38.409432],\n              [-77.633891, 38.409542],\n              [-77.633957, 38.409571],\n              [-77.634021, 38.409581],\n              [-77.634198, 38.409608],\n              [-77.634256, 38.409617],\n              [-77.634277, 38.40962],\n              [-77.63429, 38.409622],\n              [-77.634293, 38.409622],\n              [-77.634364, 38.409633],\n              [-77.634384, 38.409636],\n              [-77.634411, 38.40964],\n              [-77.634422, 38.409647],\n              [-77.634451, 38.409664],\n              [-77.634458, 38.409668],\n              [-77.634476, 38.409679],\n              [-77.634594, 38.409693],\n              [-77.634837, 38.409721],\n              [-77.634834, 38.40975],\n              [-77.63483, 38.409789],\n              [-77.634826, 38.409825],\n              [-77.634822, 38.409864],\n              [-77.634821, 38.409871],\n              [-77.63482, 38.409883],\n              [-77.634904, 38.409999],\n              [-77.634943, 38.410053],\n              [-77.634944, 38.410068],\n              [-77.63495, 38.410129],\n              [-77.634936, 38.4103],\n              [-77.634914, 38.410481],\n              [-77.63488, 38.410623],\n              [-77.634818, 38.410794],\n              [-77.634816, 38.410799],\n              [-77.634782, 38.410892],\n              [-77.634687, 38.411091],\n              [-77.634656, 38.411156],\n              [-77.634509, 38.411381],\n              [-77.634342, 38.411606],\n              [-77.633957, 38.411974],\n              [-77.633839, 38.412182],\n              [-77.633832, 38.412207],\n              [-77.633828, 38.412221],\n              [-77.633811, 38.412281],\n              [-77.633825, 38.412336],\n              [-77.633866, 38.412418],\n              [-77.634027, 38.412693],\n              [-77.634103, 38.412858],\n              [-77.634152, 38.412995],\n              [-77.634208, 38.413495],\n              [-77.634214, 38.413742],\n              [-77.634256, 38.413961],\n              [-77.634312, 38.414175],\n              [-77.634361, 38.414313],\n              [-77.634416, 38.414395],\n              [-77.634681, 38.414686],\n              [-77.634918, 38.4149],\n              [-77.635002, 38.414944],\n              [-77.635107, 38.415016],\n              [-77.635239, 38.415175],\n              [-77.635252, 38.415249],\n              [-77.635267, 38.415329],\n              [-77.635253, 38.415395],\n              [-77.635218, 38.415472],\n              [-77.635085, 38.41562],\n              [-77.635016, 38.41573],\n              [-77.634932, 38.415922],\n              [-77.634785, 38.416059],\n              [-77.634701, 38.416114],\n              [-77.634555, 38.41624],\n              [-77.634359, 38.41647],\n              [-77.63424, 38.416668],\n              [-77.634219, 38.416767],\n              [-77.634219, 38.416844],\n              [-77.63424, 38.416954],\n              [-77.634316, 38.417224],\n              [-77.634364, 38.417392],\n              [-77.6344, 38.417519],\n              [-77.634525, 38.418057],\n              [-77.634483, 38.418216],\n              [-77.634407, 38.41842],\n              [-77.634211, 38.419172],\n              [-77.634155, 38.419314],\n              [-77.634099, 38.419408],\n              [-77.634061, 38.419451],\n              [-77.634022, 38.419495],\n              [-77.633875, 38.419616],\n              [-77.633847, 38.419627],\n              [-77.633722, 38.419644],\n              [-77.633247, 38.419835],\n              [-77.632828, 38.419967],\n              [-77.632437, 38.420121],\n              [-77.632193, 38.420175],\n              [-77.631886, 38.420258],\n              [-77.631559, 38.420352],\n              [-77.631519, 38.420364],\n              [-77.631258, 38.420439],\n              [-77.631193, 38.42045],\n              [-77.63113, 38.420461],\n              [-77.631006, 38.420482],\n              [-77.630888, 38.420521],\n              [-77.630783, 38.420581],\n              [-77.630553, 38.420762],\n              [-77.630441, 38.420905],\n              [-77.630418, 38.420941],\n              [-77.63038, 38.421001],\n              [-77.630371, 38.421015],\n              [-77.630342, 38.421082],\n              [-77.63021, 38.421386],\n              [-77.630203, 38.421402],\n              [-77.630034, 38.421787],\n              [-77.629958, 38.421964],\n              [-77.629804, 38.42227],\n              [-77.629777, 38.422324],\n              [-77.62977, 38.422337],\n              [-77.629707, 38.422486],\n              [-77.6297, 38.422535],\n              [-77.629707, 38.42259],\n              [-77.62979, 38.422755],\n              [-77.630153, 38.423342],\n              [-77.630257, 38.423469],\n              [-77.630425, 38.423606],\n              [-77.630488, 38.423672],\n              [-77.630627, 38.423831],\n              [-77.630766, 38.424034],\n              [-77.630808, 38.424232],\n              [-77.630792, 38.424347],\n              [-77.630787, 38.42438],\n              [-77.630703, 38.424671],\n              [-77.630696, 38.424863],\n              [-77.63071, 38.424935],\n              [-77.630773, 38.4251],\n              [-77.631044, 38.425649],\n              [-77.631156, 38.425929],\n              [-77.631163, 38.426006],\n              [-77.631156, 38.426072],\n              [-77.631114, 38.426137],\n              [-77.630953, 38.426302],\n              [-77.630925, 38.42634],\n              [-77.630911, 38.426406],\n              [-77.630939, 38.4265],\n              [-77.63112, 38.426714],\n              [-77.631148, 38.426791],\n              [-77.631141, 38.426835],\n              [-77.631009, 38.42695],\n              [-77.630939, 38.427032],\n              [-77.630925, 38.427076],\n              [-77.630925, 38.427126],\n              [-77.630973, 38.427362],\n              [-77.631036, 38.427582],\n              [-77.631037, 38.427587],\n              [-77.63105, 38.427631],\n              [-77.631175, 38.427872],\n              [-77.631231, 38.427933],\n              [-77.631427, 38.428076],\n              [-77.631643, 38.428158],\n              [-77.631706, 38.428191],\n              [-77.631754, 38.42823],\n              [-77.631789, 38.428317],\n              [-77.631733, 38.428449],\n              [-77.631384, 38.428828],\n              [-77.630979, 38.429239],\n              [-77.630867, 38.429333],\n              [-77.630742, 38.42942],\n              [-77.630497, 38.429656],\n              [-77.630343, 38.429788],\n              [-77.630225, 38.42987],\n              [-77.629876, 38.430079],\n              [-77.629771, 38.430117],\n              [-77.62968, 38.430139],\n              [-77.629561, 38.430139],\n              [-77.629524, 38.430135],\n              [-77.629449, 38.430127],\n              [-77.62915, 38.430095],\n              [-77.629115, 38.4301],\n              [-77.629045, 38.430144],\n              [-77.62902, 38.430182],\n              [-77.628928, 38.430323],\n              [-77.628877, 38.430402],\n              [-77.628689, 38.430638],\n              [-77.628605, 38.430775],\n              [-77.628535, 38.431017],\n              [-77.628521, 38.43127],\n              [-77.628492, 38.431489],\n              [-77.628464, 38.431643],\n              [-77.628422, 38.43178],\n              [-77.628371, 38.431843],\n              [-77.62833, 38.431932],\n              [-77.628281, 38.432118],\n              [-77.628285, 38.432172],\n              [-77.628289, 38.432218],\n              [-77.6283, 38.432268],\n              [-77.628359, 38.432274],\n              [-77.628416, 38.432335],\n              [-77.62843, 38.43235],\n              [-77.6284, 38.432343],\n              [-77.628312, 38.432321],\n              [-77.628282, 38.432314],\n              [-77.628311, 38.432755],\n              [-77.628132, 38.433092],\n              [-77.628093, 38.433356],\n              [-77.628065, 38.433427],\n              [-77.628072, 38.433487],\n              [-77.628226, 38.433811],\n              [-77.628302, 38.434113],\n              [-77.628344, 38.434223],\n              [-77.628407, 38.434344],\n              [-77.628595, 38.434613],\n              [-77.628909, 38.434959],\n              [-77.628964, 38.435036],\n              [-77.628978, 38.435097],\n              [-77.628985, 38.435173],\n              [-77.628845, 38.435728],\n              [-77.628782, 38.436205],\n              [-77.628775, 38.436304],\n              [-77.628803, 38.436623],\n              [-77.62876, 38.437089],\n              [-77.628781, 38.437309],\n              [-77.628907, 38.437567],\n              [-77.628928, 38.437649],\n              [-77.628934, 38.437831],\n              [-77.628927, 38.438094],\n              [-77.628892, 38.438451],\n              [-77.628909, 38.438529],\n              [-77.628927, 38.43861],\n              [-77.628969, 38.438687],\n              [-77.629045, 38.438792],\n              [-77.629115, 38.438846],\n              [-77.62931, 38.438973],\n              [-77.629834, 38.439275],\n              [-77.630266, 38.439517],\n              [-77.630343, 38.439533],\n              [-77.630469, 38.439605],\n              [-77.631083, 38.439896],\n              [-77.631181, 38.439956],\n              [-77.63139, 38.440143],\n              [-77.631599, 38.440363],\n              [-77.631725, 38.440533],\n              [-77.631892, 38.440896],\n              [-77.632038, 38.441093],\n              [-77.632157, 38.441203],\n              [-77.63238, 38.441368],\n              [-77.633204, 38.441857],\n              [-77.633287, 38.441885],\n              [-77.633371, 38.441956],\n              [-77.633776, 38.442192],\n              [-77.633846, 38.442253],\n              [-77.633894, 38.442329],\n              [-77.633901, 38.442384],\n              [-77.633894, 38.44245],\n              [-77.633854, 38.442561],\n              [-77.633842, 38.442594],\n              [-77.633817, 38.442665],\n              [-77.633803, 38.442703],\n              [-77.633793, 38.442755],\n              [-77.633782, 38.442818],\n              [-77.633803, 38.443003],\n              [-77.633804, 38.443016],\n              [-77.63381, 38.443065],\n              [-77.633803, 38.443191],\n              [-77.633761, 38.443384],\n              [-77.633691, 38.443614],\n              [-77.633649, 38.443707],\n              [-77.633509, 38.443905],\n              [-77.633488, 38.443982],\n              [-77.633481, 38.444081],\n              [-77.633516, 38.444245],\n              [-77.633614, 38.44452],\n              [-77.633638, 38.444576],\n              [-77.633656, 38.444617],\n              [-77.633676, 38.444663],\n              [-77.633683, 38.444729],\n              [-77.633781, 38.444877],\n              [-77.633823, 38.44502],\n              [-77.633823, 38.445047],\n              [-77.633802, 38.445091],\n              [-77.633725, 38.445212],\n              [-77.633599, 38.445245],\n              [-77.632824, 38.445277],\n              [-77.63272, 38.445288],\n              [-77.632559, 38.445327],\n              [-77.632405, 38.445343],\n              [-77.632231, 38.445343],\n              [-77.63207, 38.445321],\n              [-77.631966, 38.445299],\n              [-77.6317, 38.445205],\n              [-77.631589, 38.4452],\n              [-77.631351, 38.445222],\n              [-77.631198, 38.44526],\n              [-77.631054, 38.445305],\n              [-77.630883, 38.445359],\n              [-77.630339, 38.445666],\n              [-77.630185, 38.445781],\n              [-77.629968, 38.445968],\n              [-77.629843, 38.446171],\n              [-77.629717, 38.446577],\n              [-77.62971, 38.446698],\n              [-77.629717, 38.446786],\n              [-77.629793, 38.446961],\n              [-77.629961, 38.447198],\n              [-77.630086, 38.447439],\n              [-77.630121, 38.447692],\n              [-77.630118, 38.44774],\n              [-77.630107, 38.447917],\n              [-77.630065, 38.448219],\n              [-77.630014, 38.448371],\n              [-77.62999, 38.448445],\n              [-77.629889, 38.448987],\n              [-77.629854, 38.449081],\n              [-77.629785, 38.449147],\n              [-77.629666, 38.449212],\n              [-77.629414, 38.449295],\n              [-77.629226, 38.449377],\n              [-77.629023, 38.449514],\n              [-77.62887, 38.449585],\n              [-77.628786, 38.449618],\n              [-77.628402, 38.449689],\n              [-77.628283, 38.449722],\n              [-77.62815, 38.449805],\n              [-77.628101, 38.449854],\n              [-77.628074, 38.44992],\n              [-77.628073, 38.449997],\n              [-77.628118, 38.450154],\n              [-77.628129, 38.450194],\n              [-77.628172, 38.450299],\n              [-77.628373, 38.450788],\n              [-77.62861, 38.451249],\n              [-77.628617, 38.451424],\n              [-77.6286, 38.451488],\n              [-77.628596, 38.451501],\n              [-77.628573, 38.451562],\n              [-77.628547, 38.451633],\n              [-77.628428, 38.451847],\n              [-77.628407, 38.451935],\n              [-77.62841, 38.451979],\n              [-77.628414, 38.452028],\n              [-77.628435, 38.452083],\n              [-77.628464, 38.452118],\n              [-77.628558, 38.452231],\n              [-77.628658, 38.452353],\n              [-77.628694, 38.452396],\n              [-77.628721, 38.452429],\n              [-77.628812, 38.452517],\n              [-77.62923, 38.452819],\n              [-77.629426, 38.453039],\n              [-77.629586, 38.453187],\n              [-77.629698, 38.45327],\n              [-77.629802, 38.453363],\n              [-77.629914, 38.453495],\n              [-77.630087, 38.453776],\n              [-77.630137, 38.453857],\n              [-77.630179, 38.454044],\n              [-77.630202, 38.454075],\n              [-77.630207, 38.454082],\n              [-77.630266, 38.454139],\n              [-77.630332, 38.454203],\n              [-77.630479, 38.454407],\n              [-77.630528, 38.454445],\n              [-77.630821, 38.454566],\n              [-77.630891, 38.454604],\n              [-77.630995, 38.454709],\n              [-77.631081, 38.454854],\n              [-77.631085, 38.454861],\n              [-77.631184, 38.455027],\n              [-77.631253, 38.455175],\n              [-77.63133, 38.455269],\n              [-77.631526, 38.455423],\n              [-77.631595, 38.455489],\n              [-77.631686, 38.455604],\n              [-77.631763, 38.455824],\n              [-77.631797, 38.45612],\n              [-77.63179, 38.456466],\n              [-77.631699, 38.457169],\n              [-77.631587, 38.457498],\n              [-77.631405, 38.457866],\n              [-77.631363, 38.457981],\n              [-77.631265, 38.458327],\n              [-77.631223, 38.458673],\n              [-77.631167, 38.458903],\n              [-77.631111, 38.459068],\n              [-77.631146, 38.459249],\n              [-77.631188, 38.459326],\n              [-77.631278, 38.459463],\n              [-77.631397, 38.459595],\n              [-77.631435, 38.459626],\n              [-77.631557, 38.459727],\n              [-77.631739, 38.459897],\n              [-77.631864, 38.460002],\n              [-77.631971, 38.46007],\n              [-77.632081, 38.460139],\n              [-77.632167, 38.460185],\n              [-77.632174, 38.460189],\n              [-77.632234, 38.460221],\n              [-77.632325, 38.460249],\n              [-77.632472, 38.460266],\n              [-77.632814, 38.460282],\n              [-77.632926, 38.460304],\n              [-77.633016, 38.46037],\n              [-77.633117, 38.460538],\n              [-77.633167, 38.460623],\n              [-77.633177, 38.460639],\n              [-77.633254, 38.4607],\n              [-77.633456, 38.460815],\n              [-77.633533, 38.460903],\n              [-77.63357, 38.460959],\n              [-77.633586, 38.460983],\n              [-77.633609, 38.461018],\n              [-77.633637, 38.461101],\n              [-77.63363, 38.461127],\n              [-77.633626, 38.461144],\n              [-77.633616, 38.461183],\n              [-77.633581, 38.461249],\n              [-77.633532, 38.461309],\n              [-77.633414, 38.461391],\n              [-77.633267, 38.461468],\n              [-77.632876, 38.461572],\n              [-77.632282, 38.461693],\n              [-77.63215, 38.461748],\n              [-77.632003, 38.461836],\n              [-77.631898, 38.461918],\n              [-77.631849, 38.462011],\n              [-77.631758, 38.462291],\n              [-77.631751, 38.462357],\n              [-77.631758, 38.462428],\n              [-77.631786, 38.462478],\n              [-77.63181, 38.462502],\n              [-77.631815, 38.462508],\n              [-77.631838, 38.462531],\n              [-77.631866, 38.46256],\n              [-77.632051, 38.462752],\n              [-77.632198, 38.462868],\n              [-77.632344, 38.462934],\n              [-77.632498, 38.462989],\n              [-77.6327, 38.463038],\n              [-77.632999, 38.463082],\n              [-77.633029, 38.463086],\n              [-77.633224, 38.463115],\n              [-77.633336, 38.463154],\n              [-77.633468, 38.463225],\n              [-77.633594, 38.463341],\n              [-77.633685, 38.463439],\n              [-77.633901, 38.463769],\n              [-77.633985, 38.46395],\n              [-77.634131, 38.464318],\n              [-77.634152, 38.4644],\n              [-77.634159, 38.464516],\n              [-77.634047, 38.464785],\n              [-77.633949, 38.465213],\n              [-77.633942, 38.465356],\n              [-77.633949, 38.465455],\n              [-77.634025, 38.465877],\n              [-77.634053, 38.466174],\n              [-77.634018, 38.466278],\n              [-77.633948, 38.46636],\n              [-77.633843, 38.466563],\n              [-77.633822, 38.466618],\n              [-77.633822, 38.466701],\n              [-77.6332, 38.467123],\n              [-77.632949, 38.46731],\n              [-77.632817, 38.467364],\n              [-77.632757, 38.467388],\n              [-77.632655, 38.46743],\n              [-77.632599, 38.467463],\n              [-77.632544, 38.467524],\n              [-77.632488, 38.467606],\n              [-77.63246, 38.467672],\n              [-77.632453, 38.467831],\n              [-77.632519, 38.46804],\n              [-77.632521, 38.468046],\n              [-77.632557, 38.468161],\n              [-77.632606, 38.468259],\n              [-77.632669, 38.468441],\n              [-77.632697, 38.468605],\n              [-77.632682, 38.468704],\n              [-77.632571, 38.468984],\n              [-77.632298, 38.469385],\n              [-77.632053, 38.46967],\n              [-77.631907, 38.469818],\n              [-77.631725, 38.469967],\n              [-77.631616, 38.470068],\n              [-77.627698, 38.470252],\n              [-77.627688, 38.470252],\n              [-77.627297, 38.47027],\n              [-77.627294, 38.470281],\n              [-77.626641, 38.472963],\n              [-77.626435, 38.47381],\n              [-77.625878, 38.475483],\n              [-77.623691, 38.475361],\n              [-77.618802, 38.479386],\n              [-77.615087, 38.482445],\n              [-77.612817, 38.484314],\n              [-77.612649, 38.484453],\n              [-77.612638, 38.484462],\n              [-77.611061, 38.485766],\n              [-77.608424, 38.487947],\n              [-77.602127, 38.493158],\n              [-77.602096, 38.493184],\n              [-77.601886, 38.493358],\n              [-77.601548, 38.493637],\n              [-77.601542, 38.493642],\n              [-77.601536, 38.493648],\n              [-77.601525, 38.493657],\n              [-77.601508, 38.493671],\n              [-77.601479, 38.493695],\n              [-77.601446, 38.493722],\n              [-77.60144, 38.493727],\n              [-77.601435, 38.493731],\n              [-77.601356, 38.493796],\n              [-77.60129, 38.493851],\n              [-77.600439, 38.494555],\n              [-77.600274, 38.494692],\n              [-77.600087, 38.494847],\n              [-77.599821, 38.495067],\n              [-77.59952, 38.495316],\n              [-77.599335, 38.495469],\n              [-77.599289, 38.495507],\n              [-77.596093, 38.498169],\n              [-77.594865, 38.499192],\n              [-77.594701, 38.499329],\n              [-77.594573, 38.499436],\n              [-77.594508, 38.49949],\n              [-77.59449, 38.499505],\n              [-77.594482, 38.499511],\n              [-77.594476, 38.499516],\n              [-77.594393, 38.499585],\n              [-77.592888, 38.500839],\n              [-77.588935, 38.504135],\n              [-77.588653, 38.50437],\n              [-77.583061, 38.508929],\n              [-77.583031, 38.508954],\n              [-77.582759, 38.509176],\n              [-77.582677, 38.509243],\n              [-77.582656, 38.50926],\n              [-77.582649, 38.509265],\n              [-77.582638, 38.509274],\n              [-77.582541, 38.509353],\n              [-77.582436, 38.509439],\n              [-77.581764, 38.509987],\n              [-77.581674, 38.510061],\n              [-77.581479, 38.51022],\n              [-77.581015, 38.510599],\n              [-77.580623, 38.510919],\n              [-77.580593, 38.510943],\n              [-77.580586, 38.510949],\n              [-77.580574, 38.510959],\n              [-77.580205, 38.51126],\n              [-77.579715, 38.51166],\n              [-77.579664, 38.511704],\n              [-77.579149, 38.512062],\n              [-77.579136, 38.512071],\n              [-77.579052, 38.512132],\n              [-77.579014, 38.512158],\n              [-77.578867, 38.512258],\n              [-77.578365, 38.512603],\n              [-77.577723, 38.513089],\n              [-77.577078, 38.513577],\n              [-77.576968, 38.51366],\n              [-77.576826, 38.513768],\n              [-77.576821, 38.513772],\n              [-77.576813, 38.513778],\n              [-77.576763, 38.513816],\n              [-77.576739, 38.513834],\n              [-77.57278, 38.516841],\n              [-77.572175, 38.517294],\n              [-77.571167, 38.51805],\n              [-77.571132, 38.518076],\n              [-77.571046, 38.518141],\n              [-77.571004, 38.518173],\n              [-77.568351, 38.520185],\n              [-77.56562, 38.522665],\n              [-77.565523, 38.522753],\n              [-77.562341, 38.525643],\n              [-77.560869, 38.52706],\n              [-77.560838, 38.52709],\n              [-77.554598, 38.533107],\n              [-77.549182, 38.538326],\n              [-77.549171, 38.538336],\n              [-77.549164, 38.538342],\n              [-77.549104, 38.538395],\n              [-77.549032, 38.538465],\n              [-77.548771, 38.538721],\n              [-77.548591, 38.538901],\n              [-77.546491, 38.540997],\n              [-77.543387, 38.544094],\n              [-77.539108, 38.548364],\n              [-77.536317, 38.55115],\n              [-77.536133, 38.551313],\n              [-77.533422, 38.553716],\n              [-77.530916, 38.555937],\n              [-77.530909, 38.555943],\n              [-77.530085, 38.556609],\n              [-77.529535, 38.557062],\n              [-77.529191, 38.557345],\n              [-77.529076, 38.557439],\n              [-77.528939, 38.55755],\n              [-77.527454, 38.558747],\n              [-77.525242, 38.560531],\n              [-77.517442, 38.566819],\n              [-77.51681, 38.567329],\n              [-77.515835, 38.568104],\n              [-77.513914, 38.569624],\n              [-77.50481, 38.577629],\n              [-77.504675, 38.577749],\n              [-77.503966, 38.578379],\n              [-77.50391, 38.578429],\n              [-77.497525, 38.582947],\n              [-77.497464, 38.583043],\n              [-77.497216, 38.583355],\n              [-77.497039, 38.583502],\n              [-77.49687, 38.583681],\n              [-77.496863, 38.584082],\n              [-77.496891, 38.58428],\n              [-77.496886, 38.584543],\n              [-77.496768, 38.58498],\n              [-77.496733, 38.585173],\n              [-77.496767, 38.585556],\n              [-77.496655, 38.585746],\n              [-77.496598, 38.585928],\n              [-77.496648, 38.586169],\n              [-77.496651, 38.586438],\n              [-77.496585, 38.586565],\n              [-77.496465, 38.586727],\n              [-77.496289, 38.586907],\n              [-77.495985, 38.587232],\n              [-77.495412, 38.58765],\n              [-77.495187, 38.587826],\n              [-77.494957, 38.58805],\n              [-77.494878, 38.588195],\n              [-77.494809, 38.588416],\n              [-77.494754, 38.588648],\n              [-77.494646, 38.58876],\n              [-77.494521, 38.588795],\n              [-77.494353, 38.588794],\n              [-77.493802, 38.588641],\n              [-77.493641, 38.588644],\n              [-77.493587, 38.5887],\n              [-77.493589, 38.588766],\n              [-77.493608, 38.588892],\n              [-77.493599, 38.589035],\n              [-77.493448, 38.589137],\n              [-77.493221, 38.58923],\n              [-77.493032, 38.589256],\n              [-77.492718, 38.589284],\n              [-77.492567, 38.589353],\n              [-77.492444, 38.589427],\n              [-77.492316, 38.589573],\n              [-77.492163, 38.589807],\n              [-77.491826, 38.590385],\n              [-77.49174, 38.59075],\n              [-77.491667, 38.590856],\n              [-77.491571, 38.590907],\n              [-77.491342, 38.59095],\n              [-77.490393, 38.591047],\n              [-77.490072, 38.591065],\n              [-77.489515, 38.59116],\n              [-77.488995, 38.591302],\n              [-77.488721, 38.591462],\n              [-77.488279, 38.591625],\n              [-77.488043, 38.59168],\n              [-77.487829, 38.591783],\n              [-77.487533, 38.591905],\n              [-77.487318, 38.591964],\n              [-77.486822, 38.592013],\n              [-77.486506, 38.591959],\n              [-77.486153, 38.591874],\n              [-77.485977, 38.591861],\n              [-77.485639, 38.591994],\n              [-77.485513, 38.591992],\n              [-77.485359, 38.591978],\n              [-77.485184, 38.591999],\n              [-77.485012, 38.592068],\n              [-77.4849, 38.592082],\n              [-77.484765, 38.592024],\n              [-77.484622, 38.591928],\n              [-77.483894, 38.591526],\n              [-77.483793, 38.591418],\n              [-77.483684, 38.591316],\n              [-77.483572, 38.591302],\n              [-77.483405, 38.59135],\n              [-77.483228, 38.591474],\n              [-77.483058, 38.591626],\n              [-77.482969, 38.591689],\n              [-77.48283, 38.591703],\n              [-77.482652, 38.591624],\n              [-77.482568, 38.591631],\n              [-77.482465, 38.591666],\n              [-77.482377, 38.591756],\n              [-77.482198, 38.591859],\n              [-77.482045, 38.591868],\n              [-77.48192, 38.591909],\n              [-77.481797, 38.59201],\n              [-77.481739, 38.592127],\n              [-77.481709, 38.592287],\n              [-77.481684, 38.592364],\n              [-77.481594, 38.59241],\n              [-77.48149, 38.59244],\n              [-77.48128, 38.592433],\n              [-77.480884, 38.592507],\n              [-77.480806, 38.592471],\n              [-77.48064, 38.592348],\n              [-77.480487, 38.592164],\n              [-77.480114, 38.591903],\n              [-77.479951, 38.59184],\n              [-77.479545, 38.591833],\n              [-77.479252, 38.591861],\n              [-77.478761, 38.591827],\n              [-77.478515, 38.591789],\n              [-77.478208, 38.591839],\n              [-77.478048, 38.591842],\n              [-77.477893, 38.591813],\n              [-77.477725, 38.591827],\n              [-77.477601, 38.59189],\n              [-77.477427, 38.592103],\n              [-77.477344, 38.592143],\n              [-77.477288, 38.592144],\n              [-77.477141, 38.592125],\n              [-77.477109, 38.592136],\n              [-77.477051, 38.592155],\n              [-77.476919, 38.592185],\n              [-77.476772, 38.592199],\n              [-77.476659, 38.592152],\n              [-77.476621, 38.592065],\n              [-77.47652, 38.591996],\n              [-77.476387, 38.591982],\n              [-77.476115, 38.59201],\n              [-77.475974, 38.591787],\n              [-77.47588, 38.591685],\n              [-77.47578, 38.591638],\n              [-77.475667, 38.591618],\n              [-77.475547, 38.591582],\n              [-77.475409, 38.591437],\n              [-77.475246, 38.591369],\n              [-77.475041, 38.591307],\n              [-77.474954, 38.59121],\n              [-77.474852, 38.590916],\n              [-77.474756, 38.590753],\n              [-77.47459, 38.590597],\n              [-77.474425, 38.590496],\n              [-77.474057, 38.590367],\n              [-77.47373, 38.59022],\n              [-77.473569, 38.590234],\n              [-77.473417, 38.590271],\n              [-77.473222, 38.590297],\n              [-77.473068, 38.5903],\n              [-77.472948, 38.59027],\n              [-77.47284, 38.5902],\n              [-77.472379, 38.589798],\n              [-77.472165, 38.589682],\n              [-77.471769, 38.589575],\n              [-77.471417, 38.589522],\n              [-77.47131, 38.589442],\n              [-77.47124, 38.589246],\n              [-77.471212, 38.589054],\n              [-77.471166, 38.588912],\n              [-77.47107, 38.588788],\n              [-77.470875, 38.5886],\n              [-77.470854, 38.588391],\n              [-77.470919, 38.587852],\n              [-77.470965, 38.587746],\n              [-77.4711, 38.587623],\n              [-77.471146, 38.587523],\n              [-77.471026, 38.587278],\n              [-77.471008, 38.587174],\n              [-77.47101, 38.587021],\n              [-77.470929, 38.586907],\n              [-77.470762, 38.586729],\n              [-77.470584, 38.586656],\n              [-77.470313, 38.586491],\n              [-77.470226, 38.586405],\n              [-77.470189, 38.586346],\n              [-77.47015, 38.586248],\n              [-77.470179, 38.586071],\n              [-77.47018, 38.585879],\n              [-77.470091, 38.585749],\n              [-77.469955, 38.585648],\n              [-77.469734, 38.585543],\n              [-77.469444, 38.58545],\n              [-77.468937, 38.585356],\n              [-77.468816, 38.585287],\n              [-77.468675, 38.585274],\n              [-77.468404, 38.585307],\n              [-77.468248, 38.585255],\n              [-77.468176, 38.585202],\n              [-77.46811, 38.585121],\n              [-77.468127, 38.585],\n              [-77.468275, 38.584821],\n              [-77.468464, 38.584625],\n              [-77.46857, 38.584447],\n              [-77.468585, 38.58426],\n              [-77.468509, 38.584085],\n              [-77.468305, 38.583848],\n              [-77.468141, 38.583769],\n              [-77.467782, 38.5837],\n              [-77.467502, 38.583513],\n              [-77.467336, 38.583363],\n              [-77.467197, 38.583168],\n              [-77.467023, 38.582985],\n              [-77.466824, 38.582693],\n              [-77.466642, 38.582493],\n              [-77.466495, 38.582288],\n              [-77.466491, 38.582167],\n              [-77.466538, 38.582117],\n              [-77.466635, 38.582082],\n              [-77.466823, 38.58205],\n              [-77.466912, 38.581999],\n              [-77.466916, 38.581906],\n              [-77.466711, 38.581641],\n              [-77.466472, 38.58142],\n              [-77.466153, 38.581301],\n              [-77.46592, 38.581245],\n              [-77.465737, 38.581216],\n              [-77.465617, 38.581164],\n              [-77.46543, 38.581009],\n              [-77.465382, 38.580642],\n              [-77.465295, 38.580545],\n              [-77.465159, 38.580465],\n              [-77.465094, 38.5804],\n              [-77.46502, 38.580276],\n              [-77.464986, 38.580123],\n              [-77.464975, 38.579986],\n              [-77.464857, 38.579823],\n              [-77.464591, 38.579604],\n              [-77.464552, 38.579506],\n              [-77.464566, 38.579291],\n              [-77.464459, 38.579024],\n              [-77.464377, 38.578889],\n              [-77.464247, 38.578771],\n              [-77.464119, 38.578713],\n              [-77.463951, 38.578694],\n              [-77.463722, 38.578765],\n              [-77.463454, 38.578886],\n              [-77.462961, 38.579204],\n              [-77.462829, 38.57924],\n              [-77.46271, 38.579231],\n              [-77.462519, 38.579175],\n              [-77.4624, 38.579172],\n              [-77.462201, 38.579302],\n              [-77.462077, 38.579355],\n              [-77.46182, 38.579404],\n              [-77.461583, 38.579425],\n              [-77.461421, 38.579412],\n              [-77.461323, 38.579184],\n              [-77.461258, 38.579136],\n              [-77.461019, 38.579097],\n              [-77.460781, 38.579102],\n              [-77.460546, 38.579183],\n              [-77.460367, 38.57927],\n              [-77.460174, 38.579351],\n              [-77.460076, 38.579364],\n              [-77.459908, 38.579362],\n              [-77.459646, 38.579466],\n              [-77.459471, 38.579453],\n              [-77.459365, 38.579434],\n              [-77.459202, 38.579371],\n              [-77.459105, 38.579406],\n              [-77.458955, 38.579503],\n              [-77.458884, 38.579685],\n              [-77.458821, 38.579901],\n              [-77.458747, 38.579996],\n              [-77.458631, 38.580059],\n              [-77.458456, 38.580068],\n              [-77.458226, 38.580095],\n              [-77.458139, 38.580206],\n              [-77.458036, 38.580263],\n              [-77.457876, 38.5803],\n              [-77.457729, 38.580286],\n              [-77.457425, 38.580205],\n              [-77.457251, 38.58023],\n              [-77.45701, 38.580225],\n              [-77.456992, 38.580225],\n              [-77.456897, 38.58023],\n              [-77.456817, 38.580234],\n              [-77.45662, 38.580392],\n              [-77.456488, 38.580411],\n              [-77.456341, 38.580425],\n              [-77.456189, 38.580467],\n              [-77.456113, 38.580507],\n              [-77.45606, 38.580585],\n              [-77.455992, 38.58085],\n              [-77.455868, 38.580929],\n              [-77.455743, 38.580954],\n              [-77.455645, 38.58094],\n              [-77.455546, 38.580903],\n              [-77.455449, 38.580933],\n              [-77.455305, 38.581029],\n              [-77.455165, 38.581038],\n              [-77.45496, 38.580971],\n              [-77.454819, 38.580941],\n              [-77.454718, 38.580833],\n              [-77.454572, 38.580666],\n              [-77.454423, 38.580592],\n              [-77.453426, 38.580508],\n              [-77.45316, 38.580503],\n              [-77.452919, 38.580607],\n              [-77.452806, 38.580598],\n              [-77.452687, 38.580579],\n              [-77.452583, 38.580614],\n              [-77.452473, 38.580677],\n              [-77.452369, 38.580695],\n              [-77.452278, 38.580686],\n              [-77.452193, 38.580666],\n              [-77.452138, 38.580684],\n              [-77.452097, 38.580723],\n              [-77.452093, 38.580811],\n              [-77.452166, 38.580903],\n              [-77.452154, 38.580969],\n              [-77.452066, 38.581053],\n              [-77.451817, 38.581141],\n              [-77.451572, 38.581146],\n              [-77.451204, 38.581],\n              [-77.451056, 38.580981],\n              [-77.450882, 38.581012],\n              [-77.450758, 38.581053],\n              [-77.450556, 38.58109],\n              [-77.45038, 38.581061],\n              [-77.449932, 38.580851],\n              [-77.449785, 38.580843],\n              [-77.449577, 38.580891],\n              [-77.449069, 38.581193],\n              [-77.448945, 38.581239],\n              [-77.44884, 38.581247],\n              [-77.448762, 38.581227],\n              [-77.448711, 38.581151],\n              [-77.448673, 38.581069],\n              [-77.448719, 38.580986],\n              [-77.448722, 38.580876],\n              [-77.448685, 38.5808],\n              [-77.448556, 38.580731],\n              [-77.448422, 38.580696],\n              [-77.448262, 38.580704],\n              [-77.447924, 38.580635],\n              [-77.447567, 38.580428],\n              [-77.447414, 38.580261],\n              [-77.447306, 38.580164],\n              [-77.447192, 38.580112],\n              [-77.447134, 38.580052],\n              [-77.447088, 38.579949],\n              [-77.447008, 38.579852],\n              [-77.446929, 38.579782],\n              [-77.44687, 38.579701],\n              [-77.446818, 38.579603],\n              [-77.446738, 38.579522],\n              [-77.446643, 38.579404],\n              [-77.44657, 38.579323],\n              [-77.446533, 38.579252],\n              [-77.446564, 38.579131],\n              [-77.446687, 38.578826],\n              [-77.446736, 38.578622],\n              [-77.446745, 38.578484],\n              [-77.446691, 38.578348],\n              [-77.44658, 38.578158],\n              [-77.446541, 38.578038],\n              [-77.446543, 38.577895],\n              [-77.446642, 38.577509],\n              [-77.446615, 38.577328],\n              [-77.446519, 38.577204],\n              [-77.446218, 38.576979],\n              [-77.445953, 38.576804],\n              [-77.445781, 38.576675],\n              [-77.445632, 38.576607],\n              [-77.445552, 38.576526],\n              [-77.445511, 38.576346],\n              [-77.44545, 38.576193],\n              [-77.445303, 38.575988],\n              [-77.445108, 38.575827],\n              [-77.444695, 38.575605],\n              [-77.444255, 38.575411],\n              [-77.444133, 38.575337],\n              [-77.444032, 38.575251],\n              [-77.44389, 38.575193],\n              [-77.443742, 38.575164],\n              [-77.443339, 38.575232],\n              [-77.443122, 38.575237],\n              [-77.442869, 38.575193],\n              [-77.442697, 38.575081],\n              [-77.442589, 38.574984],\n              [-77.442487, 38.574866],\n              [-77.442408, 38.574801],\n              [-77.442309, 38.574771],\n              [-77.442176, 38.574773],\n              [-77.442029, 38.574765],\n              [-77.441672, 38.574564],\n              [-77.441551, 38.57449],\n              [-77.441322, 38.574404],\n              [-77.441253, 38.574378],\n              [-77.441217, 38.574365],\n              [-77.441179, 38.574358],\n              [-77.441105, 38.574345],\n              [-77.44097, 38.574277],\n              [-77.440855, 38.574197],\n              [-77.440754, 38.574105],\n              [-77.440695, 38.574024],\n              [-77.440627, 38.573883],\n              [-77.440569, 38.573818],\n              [-77.440383, 38.573674],\n              [-77.440216, 38.573513],\n              [-77.440024, 38.573407],\n              [-77.439875, 38.573349],\n              [-77.439671, 38.573326],\n              [-77.439295, 38.573383],\n              [-77.439143, 38.573431],\n              [-77.439052, 38.573432],\n              [-77.438979, 38.573352],\n              [-77.438899, 38.573249],\n              [-77.438819, 38.573179],\n              [-77.43872, 38.573132],\n              [-77.438594, 38.573129],\n              [-77.438463, 38.573186],\n              [-77.438271, 38.573295],\n              [-77.438148, 38.573407],\n              [-77.437996, 38.57346],\n              [-77.437857, 38.573479],\n              [-77.437702, 38.573444],\n              [-77.437545, 38.573343],\n              [-77.43745, 38.573246],\n              [-77.437124, 38.573116],\n              [-77.437003, 38.573041],\n              [-77.436902, 38.57295],\n              [-77.436727, 38.57275],\n              [-77.436659, 38.572603],\n              [-77.436619, 38.572445],\n              [-77.436561, 38.57238],\n              [-77.436447, 38.572328],\n              [-77.436381, 38.572252],\n              [-77.436312, 38.57205],\n              [-77.435939, 38.571591],\n              [-77.43587, 38.571395],\n              [-77.435804, 38.571309],\n              [-77.435733, 38.571068],\n              [-77.435579, 38.570874],\n              [-77.435512, 38.570743],\n              [-77.43547, 38.570552],\n              [-77.435338, 38.570373],\n              [-77.435182, 38.570305],\n              [-77.435077, 38.570302],\n              [-77.434905, 38.570388],\n              [-77.434714, 38.570546],\n              [-77.434612, 38.570614],\n              [-77.434438, 38.570639],\n              [-77.434149, 38.570569],\n              [-77.433914, 38.570447],\n              [-77.43354, 38.570153],\n              [-77.43344, 38.5701],\n              [-77.43316, 38.5701],\n              [-77.43306, 38.570036],\n              [-77.432816, 38.569437],\n              [-77.432524, 38.568861],\n              [-77.43241, 38.568594],\n              [-77.432316, 38.568091],\n              [-77.43219, 38.567885],\n              [-77.431999, 38.567614],\n              [-77.431744, 38.567328],\n              [-77.431569, 38.567107],\n              [-77.431353, 38.566936],\n              [-77.431223, 38.566812],\n              [-77.43081, 38.56637],\n              [-77.430608, 38.566215],\n              [-77.430346, 38.566105],\n              [-77.430077, 38.566028],\n              [-77.429838, 38.565973],\n              [-77.428817, 38.565796],\n              [-77.428569, 38.565686],\n              [-77.428304, 38.565521],\n              [-77.427816, 38.565147],\n              [-77.42756, 38.565032],\n              [-77.427185, 38.564902],\n              [-77.426804, 38.564806],\n              [-77.426615, 38.564804],\n              [-77.426381, 38.564908],\n              [-77.426181, 38.565011],\n              [-77.426002, 38.565075],\n              [-77.425975, 38.565079],\n              [-77.425859, 38.565097],\n              [-77.425842, 38.5651],\n              [-77.425644, 38.56506],\n              [-77.425446, 38.564993],\n              [-77.42521, 38.564817],\n              [-77.425155, 38.56479],\n              [-77.424882, 38.564653],\n              [-77.424636, 38.564625],\n              [-77.424378, 38.564631],\n              [-77.423981, 38.564677],\n              [-77.42372, 38.564639],\n              [-77.423501, 38.564572],\n              [-77.423415, 38.564497],\n              [-77.423363, 38.564399],\n              [-77.423495, 38.563979],\n              [-77.423504, 38.563814],\n              [-77.423426, 38.563568],\n              [-77.423321, 38.563373],\n              [-77.423227, 38.563292],\n              [-77.423093, 38.563251],\n              [-77.422892, 38.563294],\n              [-77.422539, 38.563422],\n              [-77.422201, 38.563566],\n              [-77.421968, 38.563697],\n              [-77.421794, 38.563734],\n              [-77.421508, 38.563762],\n              [-77.421172, 38.563763],\n              [-77.421015, 38.563739],\n              [-77.420948, 38.563729],\n              [-77.420833, 38.563666],\n              [-77.420844, 38.563561],\n              [-77.421217, 38.563213],\n              [-77.421372, 38.56304],\n              [-77.421516, 38.562751],\n              [-77.421626, 38.56248],\n              [-77.421792, 38.562218],\n              [-77.421906, 38.562062],\n              [-77.422082, 38.561888],\n              [-77.422147, 38.561733],\n              [-77.422109, 38.56164],\n              [-77.421996, 38.561615],\n              [-77.421822, 38.561657],\n              [-77.42146, 38.561709],\n              [-77.421124, 38.56171],\n              [-77.420878, 38.561671],\n              [-77.420511, 38.561558],\n              [-77.420247, 38.561421],\n              [-77.419925, 38.561202],\n              [-77.419759, 38.561041],\n              [-77.419659, 38.560966],\n              [-77.419589, 38.560358],\n              [-77.4195, 38.560211],\n              [-77.419363, 38.560093],\n              [-77.419035, 38.559897],\n              [-77.418948, 38.559794],\n              [-77.418889, 38.55951],\n              [-77.418811, 38.559264],\n              [-77.418719, 38.559036],\n              [-77.41866, 38.558932],\n              [-77.418574, 38.558885],\n              [-77.418462, 38.558882],\n              [-77.418247, 38.558919],\n              [-77.418135, 38.558916],\n              [-77.417994, 38.558886],\n              [-77.417892, 38.558778],\n              [-77.417661, 38.558568],\n              [-77.417595, 38.558471],\n              [-77.417516, 38.558198],\n              [-77.417005, 38.558176],\n              [-77.416501, 38.55817],\n              [-77.416262, 38.558147],\n              [-77.416001, 38.558081],\n              [-77.415823, 38.557975],\n              [-77.415713, 38.557818],\n              [-77.415631, 38.557468],\n              [-77.41564, 38.557325],\n              [-77.415587, 38.557211],\n              [-77.4153, 38.556975],\n              [-77.41507, 38.556595],\n              [-77.415023, 38.556448],\n              [-77.414865, 38.556325],\n              [-77.414367, 38.556077],\n              [-77.414037, 38.556029],\n              [-77.413829, 38.556105],\n              [-77.413426, 38.556184],\n              [-77.413066, 38.55629],\n              [-77.412516, 38.556565],\n              [-77.412364, 38.556629],\n              [-77.412182, 38.556638],\n              [-77.412034, 38.556581],\n              [-77.411911, 38.556479],\n              [-77.411677, 38.556374],\n              [-77.411386, 38.556259],\n              [-77.410922, 38.555983],\n              [-77.410365, 38.555632],\n              [-77.41012, 38.555401],\n              [-77.409833, 38.554978],\n              [-77.40968, 38.554822],\n              [-77.409542, 38.554649],\n              [-77.409465, 38.554442],\n              [-77.409491, 38.554184],\n              [-77.409505, 38.55376],\n              [-77.4095, 38.553618],\n              [-77.409448, 38.553525],\n              [-77.409342, 38.553495],\n              [-77.409181, 38.553481],\n              [-77.409036, 38.553528],\n              [-77.408822, 38.553632],\n              [-77.408658, 38.55375],\n              [-77.408336, 38.553938],\n              [-77.408074, 38.554059],\n              [-77.407817, 38.554097],\n              [-77.40762, 38.554085],\n              [-77.407267, 38.553982],\n              [-77.406898, 38.553831],\n              [-77.406584, 38.553639],\n              [-77.406298, 38.553431],\n              [-77.405962, 38.55324],\n              [-77.405498, 38.552937],\n              [-77.404692, 38.552492],\n              [-77.404336, 38.552279],\n              [-77.403757, 38.551929],\n              [-77.403431, 38.551798],\n              [-77.403317, 38.551724],\n              [-77.403158, 38.551578],\n              [-77.402977, 38.55139],\n              [-77.402765, 38.551125],\n              [-77.402582, 38.550871],\n              [-77.402344, 38.550661],\n              [-77.402214, 38.550527],\n              [-77.401935, 38.55034],\n              [-77.401579, 38.550144],\n              [-77.401414, 38.550038],\n              [-77.401293, 38.54998],\n              [-77.40097, 38.549932],\n              [-77.400779, 38.54987],\n              [-77.400572, 38.549742],\n              [-77.400376, 38.549532],\n              [-77.40027, 38.549292],\n              [-77.400237, 38.549145],\n              [-77.4003, 38.54894],\n              [-77.400416, 38.548855],\n              [-77.400514, 38.548698],\n              [-77.400575, 38.5486],\n              [-77.400589, 38.548577],\n              [-77.40073, 38.548393],\n              [-77.401062, 38.547878],\n              [-77.401135, 38.547765],\n              [-77.401355, 38.547425],\n              [-77.40126, 38.547289],\n              [-77.400844, 38.547402],\n              [-77.399998, 38.547826],\n              [-77.399282, 38.547956],\n              [-77.397607, 38.547458],\n              [-77.396006, 38.545999],\n              [-77.395826, 38.545835],\n              [-77.394785, 38.54439],\n              [-77.394816, 38.543659],\n              [-77.395778, 38.543337],\n              [-77.396088, 38.54299],\n              [-77.396045, 38.542733],\n              [-77.395408, 38.541241],\n              [-77.394866, 38.540505],\n              [-77.394383, 38.540301],\n              [-77.393057, 38.539984],\n              [-77.392543, 38.539861],\n              [-77.392569, 38.538937],\n              [-77.392779, 38.538318],\n              [-77.392645, 38.537859],\n              [-77.392013, 38.537169],\n              [-77.391813, 38.536874],\n              [-77.391734, 38.536757],\n              [-77.391645, 38.53665],\n              [-77.391472, 38.536444],\n              [-77.391386, 38.536397],\n              [-77.391255, 38.536325],\n              [-77.391066, 38.536222],\n              [-77.39076, 38.536074],\n              [-77.390363, 38.535912],\n              [-77.38981, 38.53566],\n              [-77.389098, 38.535295],\n              [-77.388857, 38.535185],\n              [-77.3887, 38.535089],\n              [-77.388607, 38.53502],\n              [-77.388561, 38.534911],\n              [-77.388563, 38.534757],\n              [-77.388626, 38.534536],\n              [-77.388676, 38.534172],\n              [-77.388675, 38.533931],\n              [-77.388611, 38.533685],\n              [-77.388515, 38.533527],\n              [-77.388363, 38.53336],\n              [-77.38824, 38.533253],\n              [-77.388077, 38.533174],\n              [-77.387895, 38.533156],\n              [-77.387615, 38.533167],\n              [-77.387225, 38.533213],\n              [-77.386794, 38.533277],\n              [-77.386378, 38.533328],\n              [-77.386312, 38.533336],\n              [-77.386129, 38.533358],\n              [-77.386097, 38.533362],\n              [-77.385887, 38.53335],\n              [-77.385857, 38.533345],\n              [-77.385676, 38.533316],\n              [-77.385389, 38.533311],\n              [-77.385095, 38.533284],\n              [-77.384904, 38.533222],\n              [-77.384614, 38.533113],\n              [-77.384428, 38.532996],\n              [-77.384347, 38.532865],\n              [-77.384348, 38.532695],\n              [-77.384417, 38.532463],\n              [-77.38447, 38.532352],\n              [-77.384758, 38.531995],\n              [-77.385002, 38.531753],\n              [-77.38521, 38.531486],\n              [-77.385232, 38.531438],\n              [-77.385282, 38.531325],\n              [-77.385284, 38.531182],\n              [-77.385239, 38.531084],\n              [-77.385187, 38.531003],\n              [-77.385072, 38.530906],\n              [-77.384301, 38.530636],\n              [-77.383981, 38.530535],\n              [-77.383891, 38.530507],\n              [-77.383171, 38.530308],\n              [-77.382826, 38.530227],\n              [-77.38276, 38.530202],\n              [-77.382609, 38.530146],\n              [-77.382536, 38.530118],\n              [-77.382055, 38.529957],\n              [-77.381624, 38.529839],\n              [-77.381185, 38.529667],\n              [-77.381063, 38.529571],\n              [-77.381002, 38.529413],\n              [-77.381045, 38.529242],\n              [-77.381575, 38.528775],\n              [-77.382011, 38.528439],\n              [-77.38238, 38.528154],\n              [-77.382537, 38.528052],\n              [-77.382633, 38.527973],\n              [-77.382684, 38.527824],\n              [-77.382571, 38.527376],\n              [-77.38248, 38.526955],\n              [-77.382524, 38.526591],\n              [-77.382421, 38.526423],\n              [-77.382181, 38.526357],\n              [-77.381936, 38.526356],\n              [-77.381515, 38.52631],\n              [-77.381275, 38.526238],\n              [-77.381051, 38.526226],\n              [-77.380696, 38.526283],\n              [-77.380448, 38.526381],\n              [-77.380316, 38.526422],\n              [-77.380176, 38.52642],\n              [-77.379648, 38.526309],\n              [-77.379543, 38.526306],\n              [-77.379378, 38.526381],\n              [-77.379036, 38.526399],\n              [-77.378768, 38.526338],\n              [-77.378401, 38.52623],\n              [-77.378163, 38.526241],\n              [-77.377963, 38.5263],\n              [-77.377935, 38.526317],\n              [-77.377771, 38.526419],\n              [-77.377614, 38.526543],\n              [-77.377519, 38.526627],\n              [-77.377409, 38.52669],\n              [-77.377313, 38.52673],\n              [-77.377194, 38.526738],\n              [-77.377067, 38.526702],\n              [-77.376923, 38.526573],\n              [-77.376805, 38.526406],\n              [-77.376692, 38.526348],\n              [-77.376496, 38.52634],\n              [-77.376184, 38.526435],\n              [-77.375982, 38.52645],\n              [-77.375869, 38.526408],\n              [-77.37579, 38.52636],\n              [-77.375726, 38.526323],\n              [-77.375609, 38.526172],\n              [-77.375513, 38.52602],\n              [-77.375419, 38.525923],\n              [-77.375249, 38.525844],\n              [-77.374864, 38.525616],\n              [-77.374701, 38.525559],\n              [-77.374227, 38.525376],\n              [-77.374142, 38.525141],\n              [-77.374137, 38.525004],\n              [-77.374094, 38.524763],\n              [-77.373897, 38.524498],\n              [-77.373593, 38.524197],\n              [-77.373235, 38.523929],\n              [-77.373115, 38.523668],\n              [-77.373186, 38.523508],\n              [-77.373323, 38.523422],\n              [-77.373404, 38.523327],\n              [-77.373526, 38.523215],\n              [-77.373518, 38.523177],\n              [-77.373528, 38.523098],\n              [-77.373549, 38.522936],\n              [-77.373551, 38.522918],\n              [-77.37346, 38.522695],\n              [-77.372833, 38.522323],\n              [-77.372222, 38.522039],\n              [-77.371898, 38.521759],\n              [-77.371624, 38.521555],\n              [-77.37149, 38.521455],\n              [-77.37126, 38.521273],\n              [-77.370905, 38.52089],\n              [-77.370825, 38.520809],\n              [-77.37071, 38.520696],\n              [-77.370672, 38.520658],\n              [-77.370623, 38.52061],\n              [-77.370491, 38.520415],\n              [-77.370313, 38.520122],\n              [-77.370144, 38.519873],\n              [-77.370015, 38.519765],\n              [-77.369808, 38.519632],\n              [-77.36947, 38.519557],\n              [-77.369249, 38.519446],\n              [-77.368833, 38.519344],\n              [-77.368432, 38.519259],\n              [-77.368242, 38.519219],\n              [-77.368102, 38.519194],\n              [-77.367487, 38.519223],\n              [-77.367219, 38.51935],\n              [-77.36694, 38.519388],\n              [-77.366857, 38.519401],\n              [-77.365968, 38.519375],\n              [-77.365697, 38.51943],\n              [-77.365669, 38.51943],\n              [-77.36527, 38.519625],\n              [-77.364976, 38.519834],\n              [-77.364732, 38.520075],\n              [-77.364564, 38.520255],\n              [-77.36438, 38.520423],\n              [-77.364274, 38.520585],\n              [-77.364342, 38.520737],\n              [-77.364205, 38.520844],\n              [-77.363934, 38.520877],\n              [-77.362956, 38.520913],\n              [-77.362731, 38.520879],\n              [-77.362416, 38.520847],\n              [-77.362233, 38.520823],\n              [-77.361987, 38.520779],\n              [-77.361832, 38.520738],\n              [-77.361514, 38.52064],\n              [-77.361336, 38.520556],\n              [-77.361158, 38.520439],\n              [-77.361032, 38.520361],\n              [-77.360879, 38.520268],\n              [-77.360708, 38.520151],\n              [-77.360577, 38.520011],\n              [-77.360183, 38.519711],\n              [-77.359997, 38.519578],\n              [-77.359735, 38.519473],\n              [-77.359312, 38.519355],\n              [-77.359079, 38.519289],\n              [-77.358704, 38.518961],\n              [-77.358731, 38.518691],\n              [-77.358687, 38.518418],\n              [-77.358593, 38.518348],\n              [-77.358452, 38.518291],\n              [-77.358289, 38.518217],\n              [-77.358019, 38.518085],\n              [-77.357841, 38.518012],\n              [-77.357678, 38.517933],\n              [-77.357521, 38.517832],\n              [-77.357345, 38.517802],\n              [-77.357135, 38.517795],\n              [-77.356898, 38.5178],\n              [-77.356709, 38.517787],\n              [-77.356567, 38.51773],\n              [-77.3564, 38.517557],\n              [-77.356319, 38.517411],\n              [-77.356217, 38.517292],\n              [-77.356052, 38.516944],\n              [-77.355987, 38.516885],\n              [-77.355838, 38.516827],\n              [-77.355521, 38.516735],\n              [-77.354918, 38.516697],\n              [-77.354588, 38.516666],\n              [-77.354239, 38.516684],\n              [-77.353786, 38.51672],\n              [-77.353425, 38.516804],\n              [-77.353066, 38.516943],\n              [-77.352817, 38.517003],\n              [-77.352454, 38.517038],\n              [-77.351945, 38.51707],\n              [-77.351758, 38.517118],\n              [-77.351285, 38.517188],\n              [-77.350496, 38.517215],\n              [-77.350195, 38.517204],\n              [-77.349704, 38.517176],\n              [-77.349407, 38.517072],\n              [-77.348938, 38.516818],\n              [-77.348593, 38.516544],\n              [-77.348286, 38.516336],\n              [-77.34802, 38.516127],\n              [-77.347978, 38.516128],\n              [-77.347726, 38.516111],\n              [-77.347397, 38.516096],\n              [-77.347074, 38.516064],\n              [-77.346805, 38.51596],\n              [-77.346568, 38.515767],\n              [-77.346318, 38.51559],\n              [-77.346073, 38.515584],\n              [-77.346003, 38.515586],\n              [-77.345781, 38.515623],\n              [-77.345391, 38.515669],\n              [-77.345251, 38.515672],\n              [-77.345026, 38.515638],\n              [-77.344068, 38.515399],\n              [-77.343497, 38.515262],\n              [-77.343229, 38.51518],\n              [-77.341505, 38.514632],\n              [-77.341294, 38.514587],\n              [-77.340771, 38.514422],\n              [-77.340322, 38.51437],\n              [-77.340148, 38.514385],\n              [-77.339707, 38.514371],\n              [-77.339437, 38.514229],\n              [-77.339226, 38.514211],\n              [-77.339012, 38.514303],\n              [-77.338754, 38.514517],\n              [-77.338018, 38.514894],\n              [-77.337408, 38.515044],\n              [-77.336733, 38.515145],\n              [-77.336601, 38.514955],\n              [-77.336493, 38.51488],\n              [-77.336458, 38.514865],\n              [-77.336422, 38.51485],\n              [-77.33638, 38.514833],\n              [-77.33626, 38.514839],\n              [-77.336213, 38.514842],\n              [-77.336065, 38.514834],\n              [-77.336053, 38.514832],\n              [-77.335876, 38.51481],\n              [-77.335728, 38.51478],\n              [-77.335553, 38.514762],\n              [-77.335222, 38.514692],\n              [-77.335122, 38.514663],\n              [-77.33506, 38.514645],\n              [-77.334904, 38.514577],\n              [-77.334814, 38.514392],\n              [-77.334829, 38.514253],\n              [-77.33483, 38.514244],\n              [-77.334717, 38.513977],\n              [-77.334662, 38.513866],\n              [-77.334657, 38.513857],\n              [-77.334543, 38.513793],\n              [-77.334407, 38.513697],\n              [-77.33436, 38.513653],\n              [-77.334345, 38.513639],\n              [-77.334299, 38.513595],\n              [-77.332442, 38.510837],\n              [-77.33157, 38.510315],\n              [-77.331147, 38.510106],\n              [-77.330892, 38.509981],\n              [-77.330391, 38.509734],\n              [-77.329853, 38.509374],\n              [-77.32981, 38.509348],\n              [-77.327057, 38.507667],\n              [-77.325647, 38.505722],\n              [-77.323879, 38.504895],\n              [-77.323377, 38.504661],\n              [-77.323159, 38.504559],\n              [-77.320825, 38.50478],\n              [-77.320261, 38.504559],\n              [-77.319166, 38.503801],\n              [-77.319142, 38.503788],\n              [-77.319042, 38.503731],\n              [-77.31892, 38.503629],\n              [-77.318768, 38.503458],\n              [-77.318704, 38.503415],\n              [-77.318641, 38.503416],\n              [-77.318066, 38.503067],\n              [-77.317785, 38.502897],\n              [-77.316733, 38.502326],\n              [-77.316394, 38.50217],\n              [-77.315056, 38.50166],\n              [-77.314473, 38.501456],\n              [-77.313247, 38.501029],\n              [-77.313183, 38.500992],\n              [-77.31297, 38.500919],\n              [-77.312658, 38.500809],\n              [-77.312123, 38.50071],\n              [-77.311218, 38.500359],\n              [-77.310872, 38.500225],\n              [-77.310762, 38.500183],\n              [-77.310539, 38.500122],\n              [-77.310233, 38.50004],\n              [-77.309732, 38.49987],\n              [-77.309093, 38.499732],\n              [-77.308454, 38.49968],\n              [-77.30814, 38.499707],\n              [-77.308016, 38.50013],\n              [-77.307956, 38.500401],\n              [-77.307916, 38.500949],\n              [-77.307936, 38.501093],\n              [-77.307834, 38.501117],\n              [-77.307793, 38.501194],\n              [-77.307793, 38.501311],\n              [-77.307988, 38.501467],\n              [-77.30893, 38.502098],\n              [-77.309026, 38.502162],\n              [-77.309481, 38.502468],\n              [-77.309621, 38.502561],\n              [-77.309693, 38.502591],\n              [-77.309774, 38.502625],\n              [-77.310071, 38.50275],\n              [-77.310427, 38.503287],\n              [-77.310916, 38.504252],\n              [-77.310958, 38.504601],\n              [-77.310814, 38.504952],\n              [-77.31053, 38.505297],\n              [-77.309904, 38.505628],\n              [-77.309467, 38.505629],\n              [-77.308449, 38.505629],\n              [-77.307895, 38.505798],\n              [-77.307466, 38.505952],\n              [-77.306283, 38.506027],\n              [-77.305281, 38.505835],\n              [-77.304608, 38.505524],\n              [-77.303607, 38.505098],\n              [-77.302075, 38.504555],\n              [-77.301647, 38.504476],\n              [-77.300993, 38.504553],\n              [-77.300531, 38.504708],\n              [-77.300299, 38.504784],\n              [-77.299776, 38.50505],\n              [-77.299423, 38.505321],\n              [-77.299011, 38.505894],\n              [-77.298728, 38.506287],\n              [-77.298482, 38.507138],\n              [-77.298523, 38.508148],\n              [-77.298727, 38.508535],\n              [-77.299217, 38.509348],\n              [-77.299399, 38.509849],\n              [-77.299445, 38.510184],\n              [-77.29924, 38.510461],\n              [-77.298666, 38.510816],\n              [-77.297767, 38.511472],\n              [-77.296828, 38.511895],\n              [-77.296399, 38.511972],\n              [-77.296051, 38.511973],\n              [-77.295888, 38.511818],\n              [-77.295408, 38.509247],\n              [-77.295046, 38.509792],\n              [-77.294981, 38.50989],\n              [-77.294948, 38.509939],\n              [-77.294888, 38.51003],\n              [-77.294885, 38.510035],\n              [-77.294873, 38.510053],\n              [-77.294832, 38.510115],\n              [-77.294685, 38.510337],\n              [-77.292888, 38.513043],\n              [-77.291105, 38.515728],\n              [-77.29109, 38.515751],\n              [-77.290894, 38.515716],\n              [-77.290722, 38.515724],\n              [-77.28974, 38.518064],\n              [-77.28862, 38.519159],\n              [-77.288231, 38.519194],\n              [-77.288165, 38.51927],\n              [-77.28791, 38.519565],\n              [-77.287887, 38.519592],\n              [-77.287876, 38.519598],\n              [-77.287496, 38.519814],\n              [-77.287213, 38.520265],\n              [-77.287123, 38.520409],\n              [-77.285641, 38.51996],\n              [-77.28569, 38.519767],\n              [-77.285526, 38.519739],\n              [-77.285311, 38.519703],\n              [-77.285008, 38.520285],\n              [-77.285367, 38.520383],\n              [-77.285532, 38.520286],\n              [-77.287474, 38.520913],\n              [-77.287338, 38.521245],\n              [-77.287296, 38.521471],\n              [-77.287062, 38.521805],\n              [-77.286676, 38.521961],\n              [-77.286388, 38.522159],\n              [-77.286133, 38.522274],\n              [-77.286115, 38.522356],\n              [-77.286061, 38.522649],\n              [-77.285889, 38.523157],\n              [-77.285793, 38.523439],\n              [-77.284614, 38.524638],\n              [-77.284421, 38.52474],\n              [-77.284305, 38.524808],\n              [-77.284204, 38.524844],\n              [-77.284012, 38.524915],\n              [-77.283766, 38.525001],\n              [-77.283752, 38.525006],\n              [-77.283412, 38.525106],\n              [-77.283331, 38.525196],\n              [-77.283217, 38.525363],\n              [-77.283102, 38.525425],\n              [-77.283039, 38.525459],\n              [-77.282916, 38.525566],\n              [-77.282811, 38.525788],\n              [-77.282761, 38.525965],\n              [-77.282756, 38.526261],\n              [-77.282631, 38.527593],\n              [-77.282717, 38.527699],\n              [-77.281805, 38.529127],\n              [-77.281501, 38.529688],\n              [-77.281197, 38.530252],\n              [-77.281074, 38.53048],\n              [-77.281052, 38.530521],\n              [-77.281048, 38.53053],\n              [-77.280927, 38.530754],\n              [-77.280919, 38.530768],\n              [-77.280822, 38.530948],\n              [-77.280466, 38.531608],\n              [-77.279795, 38.532849],\n              [-77.27979, 38.53286],\n              [-77.279816, 38.532942],\n              [-77.280131, 38.533915],\n              [-77.279963, 38.533927],\n              [-77.279929, 38.533929],\n              [-77.279424, 38.533955],\n              [-77.279413, 38.533956],\n              [-77.279191, 38.533975],\n              [-77.279001, 38.533991],\n              [-77.279134, 38.534208],\n              [-77.279192, 38.534268],\n              [-77.279264, 38.534354],\n              [-77.279309, 38.534458],\n              [-77.279299, 38.534568],\n              [-77.279206, 38.534723],\n              [-77.279115, 38.53553],\n              [-77.279114, 38.535543],\n              [-77.279015, 38.53643],\n              [-77.278976, 38.536518],\n              [-77.278923, 38.536618],\n              [-77.278582, 38.536883],\n              [-77.278277, 38.537208],\n              [-77.277937, 38.537494],\n              [-77.277775, 38.53769],\n              [-77.277648, 38.537874],\n              [-77.277452, 38.538081],\n              [-77.27729, 38.53826],\n              [-77.276737, 38.539155],\n              [-77.276676, 38.539211],\n              [-77.276566, 38.539268],\n              [-77.276463, 38.539314],\n              [-77.276381, 38.539387],\n              [-77.276341, 38.539453],\n              [-77.276222, 38.540093],\n              [-77.276158, 38.540314],\n              [-77.276069, 38.540568],\n              [-77.276038, 38.540712],\n              [-77.276035, 38.540822],\n              [-77.276003, 38.540932],\n              [-77.275929, 38.541032],\n              [-77.275833, 38.541754],\n              [-77.275776, 38.542612],\n              [-77.275725, 38.543189],\n              [-77.275802, 38.543419],\n              [-77.276071, 38.543979],\n              [-77.276229, 38.544328],\n              [-77.276399, 38.544841],\n              [-77.276556, 38.546271],\n              [-77.276493, 38.546492],\n              [-77.276366, 38.546901],\n              [-77.276362, 38.546921],\n              [-77.276357, 38.546945],\n              [-77.276336, 38.547045],\n              [-77.276305, 38.54716],\n              [-77.276183, 38.547306],\n              [-77.276124, 38.547428],\n              [-77.276008, 38.547523],\n              [-77.275866, 38.547669],\n              [-77.275763, 38.547737],\n              [-77.275572, 38.547872],\n              [-77.275356, 38.548135],\n              [-77.275222, 38.548313],\n              [-77.275015, 38.548416],\n              [-77.274872, 38.548523],\n              [-77.274465, 38.548937],\n              [-77.274401, 38.549103],\n              [-77.27422, 38.54981],\n              [-77.274035, 38.55016],\n              [-77.273898, 38.55025],\n              [-77.273579, 38.550558],\n              [-77.27295, 38.551252],\n              [-77.272586, 38.551446],\n              [-77.272381, 38.551598],\n              [-77.272064, 38.551747],\n              [-77.271686, 38.551974],\n              [-77.271611, 38.55203],\n              [-77.271482, 38.552148],\n              [-77.270491, 38.552667],\n              [-77.269904, 38.552926],\n              [-77.269531, 38.553059],\n              [-77.269351, 38.553112],\n              [-77.269053, 38.553217],\n              [-77.268577, 38.553407],\n              [-77.268218, 38.553568],\n              [-77.267827, 38.553806],\n              [-77.26746, 38.553929],\n              [-77.267039, 38.554107],\n              [-77.266723, 38.5543],\n              [-77.265685, 38.554864],\n              [-77.265358, 38.555055],\n              [-77.265334, 38.555069],\n              [-77.264843, 38.555226],\n              [-77.264579, 38.555297],\n              [-77.264252, 38.555359],\n              [-77.26403, 38.555407],\n              [-77.263828, 38.555444],\n              [-77.263591, 38.555465],\n              [-77.263382, 38.555507],\n              [-77.263334, 38.555526],\n              [-77.263203, 38.555577],\n              [-77.263113, 38.555622],\n              [-77.263017, 38.555685],\n              [-77.262928, 38.555768],\n              [-77.262922, 38.555774],\n              [-77.262813, 38.555864],\n              [-77.262663, 38.555977],\n              [-77.26241, 38.556087],\n              [-77.2622, 38.556178],\n              [-77.261975, 38.556342],\n              [-77.261811, 38.556482],\n              [-77.261636, 38.5567],\n              [-77.261545, 38.556921],\n              [-77.261487, 38.557296],\n              [-77.261496, 38.558032],\n              [-77.261592, 38.558849],\n              [-77.261541, 38.559025],\n              [-77.261441, 38.559164],\n              [-77.261251, 38.559366],\n              [-77.26075, 38.559672],\n              [-77.260352, 38.559838],\n              [-77.260322, 38.559851],\n              [-77.259655, 38.560023],\n              [-77.259644, 38.560026],\n              [-77.259625, 38.560031],\n              [-77.259612, 38.560034],\n              [-77.259581, 38.560042],\n              [-77.259571, 38.560045],\n              [-77.259554, 38.560049],\n              [-77.259546, 38.560051],\n              [-77.259517, 38.560059],\n              [-77.258837, 38.560225],\n              [-77.257798, 38.560355],\n              [-77.257611, 38.560369],\n              [-77.257372, 38.560386],\n              [-77.257046, 38.560458],\n              [-77.256955, 38.56047],\n              [-77.256906, 38.56046],\n              [-77.256731, 38.560464],\n              [-77.256523, 38.560501],\n              [-77.256456, 38.560595],\n              [-77.25646, 38.560738],\n              [-77.256576, 38.560857],\n              [-77.256847, 38.561016],\n              [-77.256968, 38.56114],\n              [-77.257032, 38.561205],\n              [-77.255705, 38.563326],\n              [-77.255056, 38.56525],\n              [-77.254418, 38.567142],\n              [-77.254408, 38.567173],\n              [-77.254379, 38.567259],\n              [-77.250609, 38.57844],\n              [-77.246905, 38.589424],\n              [-77.246598, 38.590971],\n              [-77.246444, 38.592936],\n              [-77.246364, 38.593449],\n              [-77.244482, 38.594583],\n              [-77.241323, 38.596485],\n              [-77.238105, 38.598425],\n              [-77.232443, 38.60166],\n              [-77.228809, 38.603737],\n              [-77.225505, 38.605625],\n              [-77.216197, 38.610983],\n              [-77.206906, 38.616333],\n              [-77.205293, 38.617262],\n              [-77.204307, 38.617829],\n              [-77.203698, 38.61818],\n              [-77.20359, 38.618104],\n              [-77.203501, 38.618056],\n              [-77.203345, 38.617955],\n              [-77.20305, 38.61782],\n              [-77.203011, 38.617817],\n              [-77.202882, 38.617779],\n              [-77.2028, 38.617767],\n              [-77.202775, 38.617754],\n              [-77.202769, 38.617736],\n              [-77.202768, 38.617713],\n              [-77.202755, 38.617685],\n              [-77.202716, 38.617687],\n              [-77.20268, 38.617716],\n              [-77.20265, 38.617717],\n              [-77.20262, 38.617709],\n              [-77.20258, 38.617692],\n              [-77.202516, 38.617692],\n              [-77.202454, 38.617684],\n              [-77.202307, 38.617679],\n              [-77.202289, 38.617651],\n              [-77.20221, 38.617653],\n              [-77.201971, 38.617683],\n              [-77.201908, 38.617696],\n              [-77.201874, 38.617723],\n              [-77.201778, 38.617746],\n              [-77.201736, 38.617767],\n              [-77.201698, 38.617801],\n              [-77.201661, 38.61785],\n              [-77.201635, 38.617902],\n              [-77.201571, 38.618006],\n              [-77.201549, 38.61811],\n              [-77.201517, 38.618167],\n              [-77.201481, 38.618213],\n              [-77.201453, 38.618228],\n              [-77.201352, 38.618234],\n              [-77.201324, 38.618248],\n              [-77.201199, 38.618359],\n              [-77.20113, 38.618405],\n              [-77.201074, 38.618454],\n              [-77.201008, 38.618494],\n              [-77.200937, 38.618517],\n              [-77.200823, 38.618566],\n              [-77.200706, 38.618579],\n              [-77.200687, 38.61859],\n              [-77.200649, 38.618624],\n              [-77.200582, 38.618669],\n              [-77.200538, 38.618708],\n              [-77.200492, 38.618733],\n              [-77.200359, 38.618823],\n              [-77.200304, 38.618855],\n              [-77.200266, 38.618893],\n              [-77.200181, 38.618937],\n              [-77.200121, 38.618953],\n              [-77.19991, 38.618967],\n              [-77.199802, 38.618968],\n              [-77.199771, 38.618973],\n              [-77.199781, 38.618998],\n              [-77.199757, 38.619026],\n              [-77.199673, 38.619055],\n              [-77.199611, 38.619076],\n              [-77.199506, 38.619126],\n              [-77.199429, 38.619156],\n              [-77.199348, 38.619174],\n              [-77.199279, 38.61919],\n              [-77.199169, 38.619206],\n              [-77.199076, 38.61921],\n              [-77.198975, 38.61922],\n              [-77.198924, 38.619221],\n              [-77.198783, 38.619268],\n              [-77.19877, 38.619289],\n              [-77.198709, 38.619306],\n              [-77.198637, 38.619322],\n              [-77.198567, 38.619337],\n              [-77.198519, 38.619354],\n              [-77.198377, 38.619366],\n              [-77.198321, 38.619379],\n              [-77.198227, 38.619393],\n              [-77.198144, 38.619394],\n              [-77.198058, 38.619395],\n              [-77.198004, 38.619402],\n              [-77.197941, 38.619404],\n              [-77.197889, 38.619421],\n              [-77.19785, 38.61944],\n              [-77.197639, 38.61945],\n              [-77.197467, 38.619451],\n              [-77.197329, 38.619459],\n              [-77.197269, 38.619458],\n              [-77.197185, 38.619467],\n              [-77.197067, 38.619503],\n              [-77.197029, 38.619539],\n              [-77.196983, 38.619548],\n              [-77.196804, 38.619547],\n              [-77.196704, 38.619547],\n              [-77.196463, 38.619535],\n              [-77.196368, 38.619529],\n              [-77.196222, 38.619521],\n              [-77.195997, 38.619508],\n              [-77.195872, 38.619501],\n              [-77.195829, 38.619504],\n              [-77.195809, 38.619519],\n              [-77.19576, 38.61953],\n              [-77.195637, 38.619524],\n              [-77.195512, 38.619517],\n              [-77.195449, 38.619498],\n              [-77.195337, 38.619493],\n              [-77.195167, 38.619486],\n              [-77.195097, 38.619495],\n              [-77.195063, 38.619503],\n              [-77.194953, 38.619502],\n              [-77.194664, 38.619469],\n              [-77.194476, 38.61946],\n              [-77.19429, 38.619435],\n              [-77.194162, 38.619433],\n              [-77.194122, 38.619438],\n              [-77.193992, 38.619438],\n              [-77.193825, 38.619445],\n              [-77.193583, 38.619441],\n              [-77.193529, 38.619427],\n              [-77.193376, 38.619414],\n              [-77.193316, 38.619405],\n              [-77.193251, 38.6194],\n              [-77.192821, 38.619333],\n              [-77.192654, 38.61932],\n              [-77.192599, 38.619311],\n              [-77.19257, 38.619307],\n              [-77.192308, 38.619276],\n              [-77.19165, 38.619176],\n              [-77.191558, 38.619175],\n              [-77.191489, 38.619183],\n              [-77.191449, 38.619205],\n              [-77.191421, 38.619235],\n              [-77.191408, 38.619263],\n              [-77.191361, 38.619323],\n              [-77.191329, 38.619343],\n              [-77.191288, 38.619352],\n              [-77.191236, 38.619385],\n              [-77.19104, 38.619466],\n              [-77.190979, 38.619478],\n              [-77.190871, 38.619519],\n              [-77.190841, 38.619527],\n              [-77.190772, 38.619537],\n              [-77.190709, 38.619552],\n              [-77.190449, 38.61958],\n              [-77.190406, 38.619599],\n              [-77.19035, 38.619648],\n              [-77.190305, 38.619722],\n              [-77.190238, 38.619832],\n              [-77.190131, 38.619991],\n              [-77.190112, 38.620022],\n              [-77.190087, 38.620062],\n              [-77.190048, 38.620126],\n              [-77.189951, 38.620249],\n              [-77.189913, 38.620314],\n              [-77.189887, 38.620358],\n              [-77.189823, 38.6204],\n              [-77.189645, 38.620551],\n              [-77.189561, 38.620581],\n              [-77.189492, 38.620599],\n              [-77.189306, 38.620668],\n              [-77.188812, 38.620749],\n              [-77.188747, 38.620753],\n              [-77.188559, 38.620753],\n              [-77.188499, 38.620758],\n              [-77.188468, 38.620786],\n              [-77.188243, 38.62081],\n              [-77.188165, 38.620825],\n              [-77.188133, 38.620841],\n              [-77.188125, 38.620866],\n              [-77.188086, 38.620895],\n              [-77.187938, 38.620955],\n              [-77.187681, 38.620989],\n              [-77.187488, 38.621006],\n              [-77.187431, 38.621007],\n              [-77.187353, 38.621038],\n              [-77.187319, 38.621057],\n              [-77.187322, 38.621075],\n              [-77.187289, 38.621093],\n              [-77.187266, 38.621098],\n              [-77.187229, 38.621099],\n              [-77.187215, 38.621132],\n              [-77.187041, 38.621162],\n              [-77.186914, 38.621214],\n              [-77.186889, 38.621233],\n              [-77.186858, 38.621271],\n              [-77.186798, 38.621316],\n              [-77.186745, 38.621338],\n              [-77.186732, 38.621354],\n              [-77.186572, 38.621416],\n              [-77.18634, 38.621457],\n              [-77.185905, 38.621524],\n              [-77.185761, 38.621536],\n              [-77.185664, 38.621538],\n              [-77.185643, 38.621547],\n              [-77.18563, 38.621575],\n              [-77.185607, 38.621587],\n              [-77.185578, 38.62159],\n              [-77.185555, 38.621587],\n              [-77.185429, 38.621628],\n              [-77.185289, 38.621687],\n              [-77.185211, 38.621694],\n              [-77.184439, 38.621654],\n              [-77.184379, 38.621651],\n              [-77.184044, 38.621656],\n              [-77.183891, 38.621676],\n              [-77.183804, 38.621692],\n              [-77.183435, 38.621702],\n              [-77.183052, 38.621738],\n              [-77.182612, 38.6218],\n              [-77.182567, 38.621819],\n              [-77.182534, 38.621872],\n              [-77.182514, 38.621884],\n              [-77.182461, 38.621903],\n              [-77.182398, 38.621953],\n              [-77.18238, 38.62196],\n              [-77.182364, 38.621966],\n              [-77.182223, 38.621988],\n              [-77.182103, 38.622006],\n              [-77.182001, 38.622031],\n              [-77.181828, 38.622098],\n              [-77.18173, 38.62214],\n              [-77.181606, 38.622187],\n              [-77.181542, 38.622217],\n              [-77.181481, 38.622251],\n              [-77.181254, 38.622396],\n              [-77.181164, 38.622449],\n              [-77.181123, 38.622486],\n              [-77.181002, 38.622613],\n              [-77.18093, 38.622699],\n              [-77.1809, 38.62274],\n              [-77.180881, 38.622767],\n              [-77.180848, 38.622798],\n              [-77.180779, 38.622849],\n              [-77.18072, 38.622883],\n              [-77.180677, 38.622946],\n              [-77.180624, 38.62298],\n              [-77.180558, 38.623066],\n              [-77.180536, 38.623082],\n              [-77.180499, 38.623101],\n              [-77.180455, 38.623152],\n              [-77.180385, 38.623199],\n              [-77.180274, 38.623254],\n              [-77.180209, 38.62327],\n              [-77.179873, 38.623282],\n              [-77.179821, 38.6233],\n              [-77.179779, 38.623344],\n              [-77.179702, 38.623364],\n              [-77.179661, 38.623385],\n              [-77.179413, 38.623406],\n              [-77.179158, 38.623446],\n              [-77.179064, 38.623453],\n              [-77.179006, 38.623471],\n              [-77.178876, 38.623529],\n              [-77.178784, 38.62355],\n              [-77.178684, 38.623562],\n              [-77.178391, 38.623555],\n              [-77.178119, 38.623583],\n              [-77.178091, 38.623596],\n              [-77.178004, 38.623612],\n              [-77.177713, 38.623692],\n              [-77.177601, 38.623699],\n              [-77.177579, 38.623707],\n              [-77.177558, 38.623723],\n              [-77.177102, 38.623861],\n              [-77.17708, 38.623868],\n              [-77.176796, 38.623954],\n              [-77.176493, 38.624048],\n              [-77.176299, 38.624087],\n              [-77.175947, 38.62412],\n              [-77.175722, 38.624117],\n              [-77.175448, 38.624103],\n              [-77.175221, 38.624092],\n              [-77.175049, 38.624128],\n              [-77.174963, 38.624166],\n              [-77.174897, 38.624216],\n              [-77.174854, 38.624248],\n              [-77.174733, 38.624291],\n              [-77.174629, 38.62429],\n              [-77.17454, 38.624289],\n              [-77.174325, 38.624276],\n              [-77.17385, 38.624263],\n              [-77.173702, 38.62427],\n              [-77.173573, 38.624255],\n              [-77.173372, 38.624248],\n              [-77.173268, 38.624248],\n              [-77.173151, 38.624255],\n              [-77.168431, 38.624853],\n              [-77.166367, 38.625114],\n              [-77.162556, 38.626112],\n              [-77.162525, 38.62612],\n              [-77.162297, 38.62618],\n              [-77.162154, 38.626217],\n              [-77.160101, 38.626755],\n              [-77.159929, 38.6268],\n              [-77.149818, 38.629447],\n              [-77.147559, 38.630038],\n              [-77.147348, 38.630093],\n              [-77.136358, 38.632967],\n              [-77.136253, 38.632994],\n              [-77.130279, 38.634556],\n              [-77.129684, 38.634712],\n              [-77.129721, 38.63479],\n              [-77.129875, 38.635112],\n              [-77.130092, 38.635454],\n              [-77.130145, 38.635535],\n              [-77.130193, 38.635594],\n              [-77.130244, 38.635664],\n              [-77.130296, 38.635735],\n              [-77.1303, 38.635741],\n              [-77.130371, 38.635828],\n              [-77.130801, 38.636359],\n              [-77.130923, 38.636537],\n              [-77.131021, 38.636728],\n              [-77.131094, 38.636892],\n              [-77.131186, 38.637176],\n              [-77.131257, 38.637491],\n              [-77.131306, 38.637675],\n              [-77.13134, 38.637799],\n              [-77.13137, 38.637885],\n              [-77.131405, 38.637959],\n              [-77.131474, 38.638182],\n              [-77.13148, 38.638205],\n              [-77.131481, 38.638236],\n              [-77.131458, 38.638407],\n              [-77.13146, 38.63844],\n              [-77.131466, 38.638462],\n              [-77.131496, 38.638569],\n              [-77.131505, 38.638627],\n              [-77.131489, 38.638684],\n              [-77.131531, 38.638786],\n              [-77.131603, 38.638892],\n              [-77.131672, 38.639015],\n              [-77.13186, 38.639386],\n              [-77.131898, 38.639446],\n              [-77.131925, 38.639511],\n              [-77.131951, 38.639638],\n              [-77.131913, 38.639838],\n              [-77.131887, 38.639872],\n              [-77.131883, 38.639901],\n              [-77.131901, 38.639932],\n              [-77.131941, 38.63997],\n              [-77.132016, 38.640015],\n              [-77.132029, 38.640023],\n              [-77.132154, 38.640099],\n              [-77.132231, 38.640146],\n              [-77.13229, 38.640183],\n              [-77.13234, 38.640226],\n              [-77.132369, 38.64026],\n              [-77.132391, 38.640308],\n              [-77.132419, 38.640368],\n              [-77.132444, 38.640423],\n              [-77.132484, 38.64047],\n              [-77.132545, 38.640543],\n              [-77.132599, 38.640613],\n              [-77.132636, 38.640662],\n              [-77.132686, 38.640743],\n              [-77.132784, 38.640863],\n              [-77.132829, 38.640918],\n              [-77.132891, 38.641008],\n              [-77.132894, 38.641013],\n              [-77.132968, 38.64112],\n              [-77.133058, 38.641279],\n              [-77.133073, 38.641323],\n              [-77.133084, 38.641383],\n              [-77.133084, 38.641414],\n              [-77.133081, 38.641433],\n              [-77.133053, 38.641575],\n              [-77.133038, 38.641722],\n              [-77.133027, 38.641747],\n              [-77.133043, 38.641856],\n              [-77.133093, 38.641972],\n              [-77.133183, 38.642105],\n              [-77.133383, 38.642374],\n              [-77.133447, 38.642474],\n              [-77.133509, 38.642533],\n              [-77.13353, 38.642634],\n              [-77.133528, 38.642663],\n              [-77.133523, 38.642685],\n              [-77.13352, 38.642796],\n              [-77.133499, 38.642881],\n              [-77.133436, 38.643008],\n              [-77.133398, 38.643044],\n              [-77.133232, 38.643289],\n              [-77.13323, 38.643323],\n              [-77.133255, 38.64346],\n              [-77.133249, 38.643542],\n              [-77.133237, 38.643588],\n              [-77.133207, 38.643661],\n              [-77.13319, 38.643721],\n              [-77.133186, 38.643757],\n              [-77.133111, 38.64379],\n              [-77.133108, 38.643808],\n              [-77.133096, 38.64383],\n              [-77.133061, 38.643846],\n              [-77.133033, 38.643868],\n              [-77.133, 38.643921],\n              [-77.132962, 38.644084],\n              [-77.132934, 38.644104],\n              [-77.132921, 38.644156],\n              [-77.132881, 38.644184],\n              [-77.132847, 38.644174],\n              [-77.132814, 38.644225],\n              [-77.132806, 38.64432],\n              [-77.132809, 38.644392],\n              [-77.132812, 38.644479],\n              [-77.132832, 38.644506],\n              [-77.132889, 38.64453],\n              [-77.132909, 38.64461],\n              [-77.132934, 38.644723],\n              [-77.13309, 38.644908],\n              [-77.133399, 38.645257],\n              [-77.13382, 38.645501],\n              [-77.134252, 38.645722],\n              [-77.134339, 38.645748],\n              [-77.1345, 38.64582],\n              [-77.134607, 38.64586],\n              [-77.135, 38.646092],\n              [-77.135112, 38.646149],\n              [-77.135211, 38.64621],\n              [-77.135281, 38.646245],\n              [-77.135351, 38.646298],\n              [-77.135419, 38.646343],\n              [-77.135485, 38.646381],\n              [-77.135535, 38.646445],\n              [-77.135621, 38.646516],\n              [-77.135682, 38.646552],\n              [-77.135722, 38.646587],\n              [-77.13579, 38.646666],\n              [-77.13602, 38.646901],\n              [-77.13608, 38.647011],\n              [-77.136254, 38.647176],\n              [-77.136275, 38.647209],\n              [-77.136295, 38.647239],\n              [-77.136308, 38.647288],\n              [-77.136316, 38.647353],\n              [-77.136346, 38.647466],\n              [-77.136355, 38.647557],\n              [-77.136318, 38.647672],\n              [-77.136368, 38.647826],\n              [-77.136354, 38.647885],\n              [-77.136358, 38.647945],\n              [-77.136352, 38.648011],\n              [-77.136285, 38.648382],\n              [-77.136246, 38.64851],\n              [-77.136241, 38.648579],\n              [-77.136243, 38.648637],\n              [-77.136262, 38.648768],\n              [-77.136266, 38.648822],\n              [-77.136276, 38.648876],\n              [-77.136268, 38.648989],\n              [-77.136256, 38.649067],\n              [-77.136252, 38.649172],\n              [-77.136231, 38.649285],\n              [-77.136258, 38.649405],\n              [-77.136262, 38.649457],\n              [-77.136273, 38.649585],\n              [-77.136275, 38.649652],\n              [-77.136277, 38.649729],\n              [-77.136282, 38.649737],\n              [-77.136295, 38.64976],\n              [-77.136286, 38.649782],\n              [-77.136278, 38.649803],\n              [-77.136276, 38.649809],\n              [-77.13628, 38.649816],\n              [-77.136291, 38.649835],\n              [-77.136318, 38.649917],\n              [-77.136352, 38.650057],\n              [-77.136355, 38.650074],\n              [-77.136374, 38.650184],\n              [-77.136385, 38.650203],\n              [-77.136425, 38.650234],\n              [-77.136423, 38.650244],\n              [-77.1359, 38.652782],\n              [-77.135349, 38.656194],\n              [-77.134734, 38.660014],\n              [-77.133857, 38.665469],\n              [-77.133627, 38.666792],\n              [-77.133448, 38.667825],\n              [-77.133047, 38.670133],\n              [-77.132466, 38.673989],\n              [-77.132459, 38.674034],\n              [-77.132441, 38.674151],\n              [-77.132343, 38.6742],\n              [-77.132228, 38.674285],\n              [-77.132072, 38.674426],\n              [-77.131945, 38.674549],\n              [-77.131907, 38.674576],\n              [-77.131828, 38.67465],\n              [-77.131761, 38.674702],\n              [-77.13171, 38.674754],\n              [-77.131595, 38.674873],\n              [-77.13153, 38.67492],\n              [-77.131525, 38.674924],\n              [-77.131481, 38.674955],\n              [-77.131431, 38.675016],\n              [-77.131279, 38.675201],\n              [-77.131195, 38.675271],\n              [-77.131165, 38.675302],\n              [-77.131089, 38.675358],\n              [-77.131037, 38.675389],\n              [-77.130946, 38.675418],\n              [-77.130718, 38.675549],\n              [-77.13056, 38.675658],\n              [-77.130446, 38.67576],\n              [-77.130342, 38.675838],\n              [-77.130264, 38.675888],\n              [-77.130166, 38.675964],\n              [-77.130075, 38.676067],\n              [-77.13, 38.676185],\n              [-77.129971, 38.676248],\n              [-77.129904, 38.676365],\n              [-77.129879, 38.676399],\n              [-77.129835, 38.676459],\n              [-77.129816, 38.676476],\n              [-77.129731, 38.676551],\n              [-77.129718, 38.676586],\n              [-77.129681, 38.676626],\n              [-77.129654, 38.676672],\n              [-77.129577, 38.67677],\n              [-77.129555, 38.676777],\n              [-77.129516, 38.676797],\n              [-77.129486, 38.676837],\n              [-77.129407, 38.676875],\n              [-77.129364, 38.676913],\n              [-77.129241, 38.676994],\n              [-77.129184, 38.677036],\n              [-77.129139, 38.677076],\n              [-77.129086, 38.677107],\n              [-77.129082, 38.677111],\n              [-77.129076, 38.677115],\n              [-77.129067, 38.677125],\n              [-77.128999, 38.677201],\n              [-77.128951, 38.677231],\n              [-77.128945, 38.677235],\n              [-77.128916, 38.677264],\n              [-77.128907, 38.677272],\n              [-77.128745, 38.677392],\n              [-77.128635, 38.677455],\n              [-77.128616, 38.67747],\n              [-77.128584, 38.677506],\n              [-77.12858, 38.67751],\n              [-77.128535, 38.677546],\n              [-77.128494, 38.67758],\n              [-77.12843, 38.677669],\n              [-77.128409, 38.677717],\n              [-77.128362, 38.677785],\n              [-77.128302, 38.67783],\n              [-77.12823, 38.677932],\n              [-77.128161, 38.678002],\n              [-77.12811, 38.678048],\n              [-77.12808, 38.678075],\n              [-77.128015, 38.678117],\n              [-77.127941, 38.678165],\n              [-77.12792, 38.678186],\n              [-77.12785, 38.678228],\n              [-77.127796, 38.67827],\n              [-77.127743, 38.678305],\n              [-77.127701, 38.67834],\n              [-77.127662, 38.678358],\n              [-77.127568, 38.678423],\n              [-77.127519, 38.678466],\n              [-77.127465, 38.678502],\n              [-77.127384, 38.678572],\n              [-77.12732, 38.67861],\n              [-77.127313, 38.678637],\n              [-77.127267, 38.678689],\n              [-77.127263, 38.678768],\n              [-77.127246, 38.678826],\n              [-77.127182, 38.678963],\n              [-77.127114, 38.679057],\n              [-77.127063, 38.679171],\n              [-77.127045, 38.679195],\n              [-77.126969, 38.679237],\n              [-77.126951, 38.679268],\n              [-77.126915, 38.679264],\n              [-77.126891, 38.679281],\n              [-77.12691, 38.679323],\n              [-77.126909, 38.679341],\n              [-77.126901, 38.679362],\n              [-77.126799, 38.679494],\n              [-77.126698, 38.679593],\n              [-77.126647, 38.679669],\n              [-77.126596, 38.679717],\n              [-77.126577, 38.679742],\n              [-77.126478, 38.679833],\n              [-77.126422, 38.679936],\n              [-77.126289, 38.680149],\n              [-77.126266, 38.680206],\n              [-77.126228, 38.680261],\n              [-77.126152, 38.680342],\n              [-77.126115, 38.680396],\n              [-77.126072, 38.680484],\n              [-77.125953, 38.680649],\n              [-77.125925, 38.68068],\n              [-77.125806, 38.680812],\n              [-77.125752, 38.680872],\n              [-77.12562, 38.680986],\n              [-77.125419, 38.681151],\n              [-77.125328, 38.681211],\n              [-77.125321, 38.681216],\n              [-77.125295, 38.681234],\n              [-77.125253, 38.681271],\n              [-77.125224, 38.681297],\n              [-77.125196, 38.681319],\n              [-77.125191, 38.681323],\n              [-77.12504, 38.681443],\n              [-77.125005, 38.681491],\n              [-77.124973, 38.68152],\n              [-77.124937, 38.681576],\n              [-77.124906, 38.681648],\n              [-77.124721, 38.681978],\n              [-77.124699, 38.682038],\n              [-77.124558, 38.682433],\n              [-77.124496, 38.682606],\n              [-77.124444, 38.682653],\n              [-77.124393, 38.682712],\n              [-77.12426, 38.682934],\n              [-77.124182, 38.683021],\n              [-77.124112, 38.683121],\n              [-77.124057, 38.683213],\n              [-77.12398, 38.683273],\n              [-77.12382, 38.68343],\n              [-77.123791, 38.683497],\n              [-77.123703, 38.683586],\n              [-77.123594, 38.683683],\n              [-77.12356, 38.68372],\n              [-77.123526, 38.683795],\n              [-77.123522, 38.683824],\n              [-77.123531, 38.683845],\n              [-77.123526, 38.683915],\n              [-77.123484, 38.684009],\n              [-77.123445, 38.684098],\n              [-77.123437, 38.684132],\n              [-77.12341, 38.684239],\n              [-77.123377, 38.68432],\n              [-77.123279, 38.684479],\n              [-77.123172, 38.684601],\n              [-77.123152, 38.684632],\n              [-77.123041, 38.684767],\n              [-77.122933, 38.684877],\n              [-77.122892, 38.68493],\n              [-77.122888, 38.684935],\n              [-77.122634, 38.685264],\n              [-77.122532, 38.685332],\n              [-77.122085, 38.685628],\n              [-77.116642, 38.689243],\n              [-77.116605, 38.689268],\n              [-77.108677, 38.694532],\n              [-77.108627, 38.694569],\n              [-77.108596, 38.694572],\n              [-77.105676, 38.696426],\n              [-77.104724, 38.697051],\n              [-77.10431, 38.697322],\n              [-77.104235, 38.697356],\n              [-77.104162, 38.697399],\n              [-77.104082, 38.697437],\n              [-77.1041, 38.697476],\n              [-77.104031, 38.697497],\n              [-77.104008, 38.697526],\n              [-77.103918, 38.697605],\n              [-77.103866, 38.697679],\n              [-77.103841, 38.697716],\n              [-77.103839, 38.697734],\n              [-77.103858, 38.697771],\n              [-77.103863, 38.697794],\n              [-77.103865, 38.697801],\n              [-77.103853, 38.697817],\n              [-77.103767, 38.697868],\n              [-77.103713, 38.697878],\n              [-77.103671, 38.697881],\n              [-77.103647, 38.697883],\n              [-77.103613, 38.697861],\n              [-77.103563, 38.697863],\n              [-77.103598, 38.697915],\n              [-77.103603, 38.697923],\n              [-77.103579, 38.697934],\n              [-77.103573, 38.697926],\n              [-77.103536, 38.69788],\n              [-77.103391, 38.697922],\n              [-77.103307, 38.697941],\n              [-77.103228, 38.697965],\n              [-77.102543, 38.698112],\n              [-77.102473, 38.698133],\n              [-77.102412, 38.698168],\n              [-77.102381, 38.698196],\n              [-77.102275, 38.698203],\n              [-77.102248, 38.698183],\n              [-77.102195, 38.69817],\n              [-77.1021, 38.698182],\n              [-77.102009, 38.698184],\n              [-77.101936, 38.698178],\n              [-77.101761, 38.698146],\n              [-77.101588, 38.69812],\n              [-77.101512, 38.6981],\n              [-77.101431, 38.69807],\n              [-77.101393, 38.698064],\n              [-77.101325, 38.698066],\n              [-77.101252, 38.698077],\n              [-77.10113, 38.698074],\n              [-77.101064, 38.698076],\n              [-77.101022, 38.698081],\n              [-77.100881, 38.698114],\n              [-77.100854, 38.698126],\n              [-77.100751, 38.698185],\n              [-77.100646, 38.698239],\n              [-77.100556, 38.698265],\n              [-77.100448, 38.698315],\n              [-77.100368, 38.698346],\n              [-77.100311, 38.698362],\n              [-77.099836, 38.698468],\n              [-77.099741, 38.698507],\n              [-77.099676, 38.698539],\n              [-77.099574, 38.698576],\n              [-77.099323, 38.698666],\n              [-77.099213, 38.6987],\n              [-77.099187, 38.698717],\n              [-77.098957, 38.698792],\n              [-77.098828, 38.698844],\n              [-77.098548, 38.698942],\n              [-77.098431, 38.698999],\n              [-77.098405, 38.699019],\n              [-77.098341, 38.699045],\n              [-77.098324, 38.699052],\n              [-77.098274, 38.699061],\n              [-77.098045, 38.699222],\n              [-77.098004, 38.699246],\n              [-77.097806, 38.699335],\n              [-77.097746, 38.699383],\n              [-77.097674, 38.699472],\n              [-77.097607, 38.699555],\n              [-77.097438, 38.699694],\n              [-77.097311, 38.699778],\n              [-77.097242, 38.699818],\n              [-77.097155, 38.69986],\n              [-77.097027, 38.699978],\n              [-77.09697, 38.700018],\n              [-77.096777, 38.700126],\n              [-77.096772, 38.700173],\n              [-77.096748, 38.700199],\n              [-77.096579, 38.700316],\n              [-77.096529, 38.700334],\n              [-77.096268, 38.700384],\n              [-77.096252, 38.700397],\n              [-77.096252, 38.700417],\n              [-77.096272, 38.700438],\n              [-77.096328, 38.700453],\n              [-77.096332, 38.700473],\n              [-77.09633, 38.700529],\n              [-77.096261, 38.700489],\n              [-77.096233, 38.70049],\n              [-77.096101, 38.700524],\n              [-77.095985, 38.700579],\n              [-77.095971, 38.700564],\n              [-77.095951, 38.700542],\n              [-77.095852, 38.700584],\n              [-77.095879, 38.700623],\n              [-77.095872, 38.700648],\n              [-77.095798, 38.700748],\n              [-77.095767, 38.700816],\n              [-77.095675, 38.700919],\n              [-77.09548, 38.701103],\n              [-77.095437, 38.701139],\n              [-77.095249, 38.701297],\n              [-77.095233, 38.70131],\n              [-77.095183, 38.701352],\n              [-77.09513, 38.701443],\n              [-77.095072, 38.7015],\n              [-77.094922, 38.701619],\n              [-77.094703, 38.70177],\n              [-77.094522, 38.701873],\n              [-77.09446, 38.7019],\n              [-77.094264, 38.701972],\n              [-77.094242, 38.701959],\n              [-77.094172, 38.701994],\n              [-77.094027, 38.702083],\n              [-77.093933, 38.702152],\n              [-77.093864, 38.702101],\n              [-77.093806, 38.702131],\n              [-77.093726, 38.702171],\n              [-77.093715, 38.702177],\n              [-77.093707, 38.702184],\n              [-77.093643, 38.702237],\n              [-77.093583, 38.702287],\n              [-77.093577, 38.702321],\n              [-77.093559, 38.702414],\n              [-77.093427, 38.702558],\n              [-77.093386, 38.702664],\n              [-77.093351, 38.702701],\n              [-77.0933, 38.702727],\n              [-77.09316, 38.702765],\n              [-77.093102, 38.702787],\n              [-77.093053, 38.702811],\n              [-77.092891, 38.702905],\n              [-77.092307, 38.703184],\n              [-77.092242, 38.703208],\n              [-77.092046, 38.703263],\n              [-77.092003, 38.703275],\n              [-77.091909, 38.703307],\n              [-77.091513, 38.703381],\n              [-77.091452, 38.703381],\n              [-77.091428, 38.703394],\n              [-77.091399, 38.70343],\n              [-77.091169, 38.703547],\n              [-77.091015, 38.703632],\n              [-77.090978, 38.703656],\n              [-77.090615, 38.703892],\n              [-77.090452, 38.704027],\n              [-77.090402, 38.704057],\n              [-77.09036, 38.704076],\n              [-77.090267, 38.704134],\n              [-77.090154, 38.704232],\n              [-77.090017, 38.704341],\n              [-77.089952, 38.704405],\n              [-77.089876, 38.704463],\n              [-77.089811, 38.704503],\n              [-77.089735, 38.704537],\n              [-77.089671, 38.704555],\n              [-77.089526, 38.704661],\n              [-77.089413, 38.704743],\n              [-77.089381, 38.704768],\n              [-77.089261, 38.704861],\n              [-77.089205, 38.704904],\n              [-77.088963, 38.705092],\n              [-77.088742, 38.705133],\n              [-77.088692, 38.705159],\n              [-77.088664, 38.705194],\n              [-77.088314, 38.70519],\n              [-77.08828, 38.705127],\n              [-77.088138, 38.704868],\n              [-77.088156, 38.704824],\n              [-77.088119, 38.704763],\n              [-77.087987, 38.704715],\n              [-77.087948, 38.704826],\n              [-77.087996, 38.70489],\n              [-77.088045, 38.704895],\n              [-77.088115, 38.70503],\n              [-77.088195, 38.705183],\n              [-77.088217, 38.705225],\n              [-77.088038, 38.705384],\n              [-77.087855, 38.705532],\n              [-77.08773, 38.705614],\n              [-77.087609, 38.705679],\n              [-77.086893, 38.706022],\n              [-77.086393, 38.706235],\n              [-77.086082, 38.706368],\n              [-77.085796, 38.706479],\n              [-77.085755, 38.706493],\n              [-77.084853, 38.706809],\n              [-77.084809, 38.706813],\n              [-77.084298, 38.706828],\n              [-77.084142, 38.706842],\n              [-77.08365, 38.707003],\n              [-77.083399, 38.70707],\n              [-77.083246, 38.707125],\n              [-77.083225, 38.707142],\n              [-77.08317, 38.70721],\n              [-77.083179, 38.707228],\n              [-77.08315, 38.707244],\n              [-77.083118, 38.707256],\n              [-77.083032, 38.707338],\n              [-77.082999, 38.707363],\n              [-77.082873, 38.707419],\n              [-77.082736, 38.707457],\n              [-77.082675, 38.70749],\n              [-77.082605, 38.707514],\n              [-77.082574, 38.707538],\n              [-77.082487, 38.707571],\n              [-77.082394, 38.707601],\n              [-77.082347, 38.707607],\n              [-77.082248, 38.707636],\n              [-77.082148, 38.707688],\n              [-77.082089, 38.707708],\n              [-77.082048, 38.707729],\n              [-77.082003, 38.707739],\n              [-77.081965, 38.70776],\n              [-77.081933, 38.707768],\n              [-77.081845, 38.70782],\n              [-77.081773, 38.707847],\n              [-77.081679, 38.707907],\n              [-77.08164, 38.707919],\n              [-77.081616, 38.707934],\n              [-77.081609, 38.707983],\n              [-77.081558, 38.708025],\n              [-77.081552, 38.708056],\n              [-77.081467, 38.708108],\n              [-77.081423, 38.708151],\n              [-77.081331, 38.708215],\n              [-77.081256, 38.708277],\n              [-77.081172, 38.708331],\n              [-77.081108, 38.708356],\n              [-77.081048, 38.708393],\n              [-77.080928, 38.708457],\n              [-77.080911, 38.708478],\n              [-77.080871, 38.708509],\n              [-77.080779, 38.70856],\n              [-77.080607, 38.708634],\n              [-77.080414, 38.708748],\n              [-77.080346, 38.708777],\n              [-77.080268, 38.70883],\n              [-77.080039, 38.708932],\n              [-77.080006, 38.708955],\n              [-77.07998, 38.708996],\n              [-77.07995, 38.709018],\n              [-77.07993, 38.709072],\n              [-77.079947, 38.709105],\n              [-77.079947, 38.709148],\n              [-77.079956, 38.709177],\n              [-77.079985, 38.709201],\n              [-77.080029, 38.709305],\n              [-77.080046, 38.709361],\n              [-77.080082, 38.709399],\n              [-77.080122, 38.709412],\n              [-77.080166, 38.709566],\n              [-77.080169, 38.709595],\n              [-77.080164, 38.709623],\n              [-77.080139, 38.709687],\n              [-77.080133, 38.70972],\n              [-77.080142, 38.709774],\n              [-77.080192, 38.709871],\n              [-77.080218, 38.709995],\n              [-77.08025, 38.710037],\n              [-77.08028, 38.710063],\n              [-77.080318, 38.710083],\n              [-77.080366, 38.710134],\n              [-77.080408, 38.710159],\n              [-77.080623, 38.710175],\n              [-77.080683, 38.710199],\n              [-77.080733, 38.710228],\n              [-77.080779, 38.710265],\n              [-77.080804, 38.710316],\n              [-77.080832, 38.710391],\n              [-77.080818, 38.710425],\n              [-77.080812, 38.710461],\n              [-77.080835, 38.710548],\n              [-77.080819, 38.710672],\n              [-77.080823, 38.710762],\n              [-77.080819, 38.710801],\n              [-77.080824, 38.710832],\n              [-77.080807, 38.710915],\n              [-77.080811, 38.710947],\n              [-77.080794, 38.710987],\n              [-77.080793, 38.711026],\n              [-77.080803, 38.711056],\n              [-77.080802, 38.711133],\n              [-77.080798, 38.711151],\n              [-77.080761, 38.711207],\n              [-77.080726, 38.711285],\n              [-77.080616, 38.711434],\n              [-77.080576, 38.711474],\n              [-77.080531, 38.711508],\n              [-77.080509, 38.711534],\n              [-77.080497, 38.711563],\n              [-77.08044, 38.711621],\n              [-77.080374, 38.711657],\n              [-77.080271, 38.711763],\n              [-77.080243, 38.711782],\n              [-77.080185, 38.711802],\n              [-77.080107, 38.711873],\n              [-77.07999, 38.711936],\n              [-77.079933, 38.711991],\n              [-77.07987, 38.712088],\n              [-77.079842, 38.712193],\n              [-77.079822, 38.712217],\n              [-77.079798, 38.712299],\n              [-77.079775, 38.712407],\n              [-77.079779, 38.712472],\n              [-77.079803, 38.712496],\n              [-77.079808, 38.712527],\n              [-77.079802, 38.712564],\n              [-77.079815, 38.712638],\n              [-77.079816, 38.71268],\n              [-77.079805, 38.712703],\n              [-77.079777, 38.712723],\n              [-77.079703, 38.712749],\n              [-77.079639, 38.712802],\n              [-77.079565, 38.712843],\n              [-77.079494, 38.712895],\n              [-77.07947, 38.712902],\n              [-77.07935, 38.712969],\n              [-77.079297, 38.713004],\n              [-77.079234, 38.71306],\n              [-77.079056, 38.713124],\n              [-77.078957, 38.713165],\n              [-77.078916, 38.713167],\n              [-77.078858, 38.713206],\n              [-77.078774, 38.713242],\n              [-77.078688, 38.713267],\n              [-77.078646, 38.713268],\n              [-77.07859, 38.713283],\n              [-77.078526, 38.713317],\n              [-77.078482, 38.71333],\n              [-77.078403, 38.713335],\n              [-77.07838, 38.713335],\n              [-77.078347, 38.713344],\n              [-77.078342, 38.713362],\n              [-77.078312, 38.713383],\n              [-77.078271, 38.713399],\n              [-77.0782, 38.713417],\n              [-77.078064, 38.713435],\n              [-77.077925, 38.713466],\n              [-77.077828, 38.713465],\n              [-77.077707, 38.713473],\n              [-77.077476, 38.713471],\n              [-77.077435, 38.713462],\n              [-77.077415, 38.713448],\n              [-77.077338, 38.713431],\n              [-77.07727, 38.7134],\n              [-77.077276, 38.713382],\n              [-77.077315, 38.713383],\n              [-77.077336, 38.713374],\n              [-77.077382, 38.713378],\n              [-77.077376, 38.713329],\n              [-77.077364, 38.713303],\n              [-77.077342, 38.713287],\n              [-77.077221, 38.713225],\n              [-77.077182, 38.713197],\n              [-77.077166, 38.713176],\n              [-77.077173, 38.713121],\n              [-77.07711, 38.713099],\n              [-77.077059, 38.713121],\n              [-77.076959, 38.713115],\n              [-77.076908, 38.71309],\n              [-77.076878, 38.713085],\n              [-77.07685, 38.713072],\n              [-77.076779, 38.713082],\n              [-77.076687, 38.71306],\n              [-77.076654, 38.713048],\n              [-77.076643, 38.713018],\n              [-77.076614, 38.713],\n              [-77.07658, 38.71299],\n              [-77.076529, 38.712986],\n              [-77.07637, 38.712992],\n              [-77.076232, 38.712924],\n              [-77.076186, 38.712913],\n              [-77.076104, 38.712875],\n              [-77.076056, 38.712877],\n              [-77.075833, 38.712865],\n              [-77.075767, 38.712839],\n              [-77.075685, 38.71283],\n              [-77.075656, 38.71284],\n              [-77.075622, 38.712826],\n              [-77.075529, 38.7128],\n              [-77.075486, 38.712801],\n              [-77.075457, 38.712797],\n              [-77.075381, 38.712759],\n              [-77.075345, 38.712746],\n              [-77.075323, 38.712717],\n              [-77.075298, 38.712699],\n              [-77.075228, 38.712682],\n              [-77.075194, 38.712663],\n              [-77.075166, 38.71263],\n              [-77.075134, 38.712611],\n              [-77.075095, 38.712612],\n              [-77.075046, 38.712662],\n              [-77.07498, 38.7127],\n              [-77.074836, 38.712713],\n              [-77.074805, 38.712724],\n              [-77.074742, 38.712732],\n              [-77.074696, 38.712732],\n              [-77.07467, 38.712716],\n              [-77.074639, 38.712725],\n              [-77.074604, 38.712747],\n              [-77.074586, 38.712766],\n              [-77.074509, 38.712805],\n              [-77.074425, 38.71286],\n              [-77.074341, 38.7129],\n              [-77.074306, 38.71291],\n              [-77.074188, 38.712832],\n              [-77.074159, 38.712812],\n              [-77.074143, 38.712796],\n              [-77.074159, 38.712779],\n              [-77.074168, 38.712746],\n              [-77.074198, 38.71269],\n              [-77.074211, 38.712619],\n              [-77.074192, 38.712418],\n              [-77.074164, 38.712331],\n              [-77.07413, 38.712271],\n              [-77.074115, 38.712216],\n              [-77.074123, 38.712199],\n              [-77.074169, 38.712145],\n              [-77.074192, 38.712124],\n              [-77.074224, 38.712109],\n              [-77.074229, 38.712091],\n              [-77.074225, 38.712043],\n              [-77.074251, 38.712021],\n              [-77.074257, 38.711993],\n              [-77.074235, 38.711985],\n              [-77.074208, 38.711995],\n              [-77.074185, 38.711995],\n              [-77.074157, 38.711974],\n              [-77.074147, 38.711953],\n              [-77.074148, 38.711932],\n              [-77.074135, 38.71191],\n              [-77.074094, 38.7119],\n              [-77.074046, 38.711868],\n              [-77.074022, 38.711844],\n              [-77.073991, 38.711828],\n              [-77.073919, 38.711767],\n              [-77.073887, 38.711732],\n              [-77.073874, 38.7117],\n              [-77.073826, 38.711663],\n              [-77.073824, 38.711645],\n              [-77.073747, 38.711596],\n              [-77.073692, 38.71157],\n              [-77.073688, 38.711544],\n              [-77.073623, 38.711444],\n              [-77.07353, 38.71134],\n              [-77.073503, 38.711322],\n              [-77.073435, 38.711252],\n              [-77.07341, 38.71122],\n              [-77.073354, 38.711181],\n              [-77.073338, 38.711151],\n              [-77.073293, 38.711098],\n              [-77.073274, 38.711069],\n              [-77.073275, 38.711047],\n              [-77.073262, 38.711026],\n              [-77.07325, 38.710988],\n              [-77.073231, 38.710918],\n              [-77.07321, 38.710884],\n              [-77.073159, 38.710819],\n              [-77.073012, 38.71071],\n              [-77.072861, 38.710632],\n              [-77.072832, 38.710591],\n              [-77.072805, 38.710576],\n              [-77.072699, 38.710537],\n              [-77.072651, 38.710501],\n              [-77.072584, 38.710463],\n              [-77.072518, 38.710427],\n              [-77.072453, 38.710379],\n              [-77.072407, 38.710351],\n              [-77.072367, 38.710335],\n              [-77.072331, 38.710306],\n              [-77.072228, 38.710261],\n              [-77.072109, 38.710215],\n              [-77.072006, 38.710182],\n              [-77.071896, 38.710129],\n              [-77.071836, 38.710093],\n              [-77.071633, 38.710034],\n              [-77.071505, 38.71002],\n              [-77.071435, 38.709989],\n              [-77.071379, 38.709982],\n              [-77.071323, 38.709981],\n              [-77.071241, 38.709989],\n              [-77.071198, 38.709981],\n              [-77.071145, 38.709978],\n              [-77.071091, 38.709981],\n              [-77.071034, 38.709996],\n              [-77.070961, 38.709995],\n              [-77.070898, 38.710003],\n              [-77.070851, 38.709993],\n              [-77.070747, 38.710014],\n              [-77.070682, 38.710005],\n              [-77.070439, 38.710015],\n              [-77.070282, 38.710034],\n              [-77.070241, 38.710014],\n              [-77.070183, 38.710033],\n              [-77.070007, 38.710032],\n              [-77.06982, 38.710051],\n              [-77.069636, 38.710053],\n              [-77.069595, 38.710061],\n              [-77.069404, 38.710053],\n              [-77.069239, 38.710074],\n              [-77.06912, 38.71009],\n              [-77.069082, 38.71009],\n              [-77.068965, 38.710077],\n              [-77.068887, 38.710061],\n              [-77.068775, 38.710026],\n              [-77.068732, 38.710018],\n              [-77.068583, 38.71002],\n              [-77.068541, 38.710015],\n              [-77.068483, 38.71],\n              [-77.068386, 38.710001],\n              [-77.068316, 38.709991],\n              [-77.068288, 38.709994],\n              [-77.068158, 38.709985],\n              [-77.067984, 38.709952],\n              [-77.06777, 38.709976],\n              [-77.067683, 38.709963],\n              [-77.067328, 38.709967],\n              [-77.067273, 38.70996],\n              [-77.067246, 38.709951],\n              [-77.067163, 38.709945],\n              [-77.066988, 38.709957],\n              [-77.066938, 38.709955],\n              [-77.066807, 38.709934],\n              [-77.066767, 38.709934],\n              [-77.066745, 38.709941],\n              [-77.066601, 38.709936],\n              [-77.06651, 38.709943],\n              [-77.066469, 38.709939],\n              [-77.066235, 38.709945],\n              [-77.06609, 38.709936],\n              [-77.065954, 38.709936],\n              [-77.065813, 38.709928],\n              [-77.065767, 38.709935],\n              [-77.06565, 38.709922],\n              [-77.06554, 38.70992],\n              [-77.065451, 38.70991],\n              [-77.065288, 38.709909],\n              [-77.065269, 38.709921],\n              [-77.065151, 38.709925],\n              [-77.064795, 38.709925],\n              [-77.064076, 38.709899],\n              [-77.063601, 38.709865],\n              [-77.063539, 38.709856],\n              [-77.063161, 38.709834],\n              [-77.0631, 38.709821],\n              [-77.063041, 38.709815],\n              [-77.062836, 38.709822],\n              [-77.062806, 38.709817],\n              [-77.062707, 38.709819],\n              [-77.062641, 38.709808],\n              [-77.062427, 38.709819],\n              [-77.062392, 38.709813],\n              [-77.062331, 38.709811],\n              [-77.062271, 38.709815],\n              [-77.062225, 38.709825],\n              [-77.062198, 38.709837],\n              [-77.062164, 38.709854],\n              [-77.062119, 38.709856],\n              [-77.062099, 38.709865],\n              [-77.062061, 38.709872],\n              [-77.061963, 38.709861],\n              [-77.061928, 38.709851],\n              [-77.061899, 38.709831],\n              [-77.06186, 38.709821],\n              [-77.061794, 38.709818],\n              [-77.061482, 38.709833],\n              [-77.061414, 38.709852],\n              [-77.06139, 38.709845],\n              [-77.061326, 38.709842],\n              [-77.061315, 38.709841],\n              [-77.061206, 38.709858],\n              [-77.061178, 38.709862],\n              [-77.060851, 38.709881],\n              [-77.059918, 38.709936],\n              [-77.059685, 38.709946],\n              [-77.059271, 38.709956],\n              [-77.059214, 38.709974],\n              [-77.0592, 38.709989],\n              [-77.059172, 38.710071],\n              [-77.059138, 38.710056],\n              [-77.059125, 38.710009],\n              [-77.059102, 38.710008],\n              [-77.059068, 38.710027],\n              [-77.058985, 38.710033],\n              [-77.058902, 38.710031],\n              [-77.058837, 38.710023],\n              [-77.058773, 38.710027],\n              [-77.058712, 38.710018],\n              [-77.05853, 38.710026],\n              [-77.058468, 38.710035],\n              [-77.058406, 38.710025],\n              [-77.058366, 38.710038],\n              [-77.058314, 38.710007],\n              [-77.058241, 38.71001],\n              [-77.058203, 38.710001],\n              [-77.058161, 38.709977],\n              [-77.058123, 38.70994],\n              [-77.058104, 38.709929],\n              [-77.058067, 38.709923],\n              [-77.057985, 38.709921],\n              [-77.05795, 38.709904],\n              [-77.057882, 38.70991],\n              [-77.057796, 38.709906],\n              [-77.05764, 38.709924],\n              [-77.057527, 38.709951],\n              [-77.057369, 38.710006],\n              [-77.05722, 38.710037],\n              [-77.05712, 38.710084],\n              [-77.057058, 38.710106],\n              [-77.056993, 38.710123],\n              [-77.056952, 38.710126],\n              [-77.056706, 38.710198],\n              [-77.05661, 38.710205],\n              [-77.05651, 38.710224],\n              [-77.056382, 38.710191],\n              [-77.0563, 38.710192],\n              [-77.056109, 38.710159],\n              [-77.05589, 38.71009],\n              [-77.055814, 38.710074],\n              [-77.055777, 38.710094],\n              [-77.055726, 38.710099],\n              [-77.055681, 38.710093],\n              [-77.055658, 38.710098],\n              [-77.055624, 38.710087],\n              [-77.055523, 38.710074],\n              [-77.055492, 38.710059],\n              [-77.055401, 38.71005],\n              [-77.055353, 38.710035],\n              [-77.05528, 38.710001],\n              [-77.055243, 38.710003],\n              [-77.055205, 38.710015],\n              [-77.055158, 38.710018],\n              [-77.05511, 38.710013],\n              [-77.055059, 38.709995],\n              [-77.055016, 38.709993],\n              [-77.054993, 38.709984],\n              [-77.054842, 38.709954],\n              [-77.054783, 38.709927],\n              [-77.054722, 38.709929],\n              [-77.054611, 38.709905],\n              [-77.054554, 38.709904],\n              [-77.054479, 38.709874],\n              [-77.054376, 38.709875],\n              [-77.054324, 38.709865],\n              [-77.054203, 38.709866],\n              [-77.054055, 38.709845],\n              [-77.053958, 38.709836],\n              [-77.053732, 38.709831],\n              [-77.053681, 38.709833],\n              [-77.053658, 38.709841],\n              [-77.053635, 38.70984],\n              [-77.053575, 38.709824],\n              [-77.053547, 38.70981],\n              [-77.053524, 38.709812],\n              [-77.053506, 38.709824],\n              [-77.053458, 38.709835],\n              [-77.053361, 38.709842],\n              [-77.053323, 38.709858],\n              [-77.053144, 38.709899],\n              [-77.05307, 38.70993],\n              [-77.053019, 38.70994],\n              [-77.052899, 38.71002],\n              [-77.052846, 38.710063],\n              [-77.052828, 38.710096],\n              [-77.052783, 38.710134],\n              [-77.052701, 38.710215],\n              [-77.05267, 38.710264],\n              [-77.05261, 38.710298],\n              [-77.052578, 38.710343],\n              [-77.052561, 38.710415],\n              [-77.05255, 38.710434],\n              [-77.052507, 38.71047],\n              [-77.052474, 38.710514],\n              [-77.052436, 38.710535],\n              [-77.052436, 38.710584],\n              [-77.052353, 38.710667],\n              [-77.052334, 38.710694],\n              [-77.052309, 38.710764],\n              [-77.052291, 38.710792],\n              [-77.052266, 38.710816],\n              [-77.052098, 38.710936],\n              [-77.052053, 38.710982],\n              [-77.051973, 38.711035],\n              [-77.051898, 38.711095],\n              [-77.051775, 38.711156],\n              [-77.051738, 38.711186],\n              [-77.051654, 38.711235],\n              [-77.051497, 38.711304],\n              [-77.051319, 38.711396],\n              [-77.051271, 38.711417],\n              [-77.051141, 38.711455],\n              [-77.051034, 38.71151],\n              [-77.050921, 38.711549],\n              [-77.050893, 38.711575],\n              [-77.050885, 38.711592],\n              [-77.050783, 38.711638],\n              [-77.050683, 38.711698],\n              [-77.050519, 38.711766],\n              [-77.05043, 38.711809],\n              [-77.050403, 38.711836],\n              [-77.050339, 38.711857],\n              [-77.05031, 38.711882],\n              [-77.050263, 38.71189],\n              [-77.050091, 38.712015],\n              [-77.050047, 38.712029],\n              [-77.050028, 38.712046],\n              [-77.049899, 38.7121],\n              [-77.049809, 38.712145],\n              [-77.049783, 38.712152],\n              [-77.049745, 38.712175],\n              [-77.049699, 38.712191],\n              [-77.049618, 38.712246],\n              [-77.049492, 38.712309],\n              [-77.049414, 38.712336],\n              [-77.049326, 38.71238],\n              [-77.049035, 38.712495],\n              [-77.048892, 38.712567],\n              [-77.048859, 38.71257],\n              [-77.048823, 38.712607],\n              [-77.048781, 38.712635],\n              [-77.048735, 38.712658],\n              [-77.04867, 38.712677],\n              [-77.048621, 38.712698],\n              [-77.04858, 38.712728],\n              [-77.048456, 38.712764],\n              [-77.048411, 38.712781],\n              [-77.048383, 38.712798],\n              [-77.048337, 38.712805],\n              [-77.048317, 38.712815],\n              [-77.048264, 38.712887],\n              [-77.048235, 38.7129],\n              [-77.048132, 38.712932],\n              [-77.048093, 38.712981],\n              [-77.048073, 38.712991],\n              [-77.048018, 38.713068],\n              [-77.047975, 38.713105],\n              [-77.047885, 38.713165],\n              [-77.047842, 38.713214],\n              [-77.047813, 38.713268],\n              [-77.047808, 38.713299],\n              [-77.047784, 38.713323],\n              [-77.047754, 38.713339],\n              [-77.047683, 38.713412],\n              [-77.047606, 38.713464],\n              [-77.04756, 38.713489],\n              [-77.047443, 38.713584],\n              [-77.047354, 38.713664],\n              [-77.047309, 38.713693],\n              [-77.047235, 38.713759],\n              [-77.047166, 38.71383],\n              [-77.046973, 38.714],\n              [-77.046921, 38.714037],\n              [-77.046758, 38.714135],\n              [-77.046681, 38.71417],\n              [-77.046584, 38.714229],\n              [-77.046417, 38.714309],\n              [-77.046198, 38.714439],\n              [-77.046182, 38.714454],\n              [-77.046167, 38.714468],\n              [-77.046145, 38.714503],\n              [-77.046134, 38.714531],\n              [-77.0461, 38.714576],\n              [-77.046077, 38.714619],\n              [-77.046067, 38.714679],\n              [-77.046041, 38.714736],\n              [-77.046038, 38.714813],\n              [-77.045992, 38.714977],\n              [-77.045952, 38.715025],\n              [-77.045916, 38.715053],\n              [-77.045905, 38.715095],\n              [-77.045885, 38.715123],\n              [-77.045877, 38.715162],\n              [-77.045839, 38.715205],\n              [-77.045803, 38.715263],\n              [-77.045769, 38.715287],\n              [-77.045728, 38.71535],\n              [-77.045647, 38.715441],\n              [-77.045631, 38.715474],\n              [-77.045598, 38.715519],\n              [-77.045561, 38.71556],\n              [-77.045543, 38.715573],\n              [-77.045474, 38.715586],\n              [-77.045494, 38.715627],\n              [-77.045472, 38.715715],\n              [-77.045445, 38.715774],\n              [-77.045361, 38.715882],\n              [-77.0453, 38.715941],\n              [-77.045282, 38.715981],\n              [-77.045209, 38.716057],\n              [-77.045136, 38.71615],\n              [-77.045097, 38.716184],\n              [-77.045092, 38.716205],\n              [-77.045044, 38.716279],\n              [-77.044958, 38.71638],\n              [-77.044931, 38.716436],\n              [-77.044887, 38.716485],\n              [-77.044849, 38.716512],\n              [-77.044819, 38.716546],\n              [-77.044777, 38.716607],\n              [-77.044701, 38.716693],\n              [-77.044684, 38.716732],\n              [-77.044638, 38.716787],\n              [-77.044563, 38.71689],\n              [-77.044513, 38.716941],\n              [-77.044467, 38.717015],\n              [-77.044385, 38.717093],\n              [-77.044345, 38.717148],\n              [-77.044309, 38.71718],\n              [-77.04422, 38.717281],\n              [-77.044175, 38.71735],\n              [-77.044154, 38.717425],\n              [-77.044095, 38.717467],\n              [-77.044016, 38.717559],\n              [-77.044012, 38.717563],\n              [-77.044006, 38.71757],\n              [-77.044003, 38.717574],\n              [-77.043967, 38.717616],\n              [-77.043894, 38.717663],\n              [-77.043879, 38.717682],\n              [-77.04386, 38.717719],\n              [-77.04385, 38.717751],\n              [-77.043801, 38.717807],\n              [-77.0438, 38.717842],\n              [-77.043785, 38.717894],\n              [-77.043761, 38.717927],\n              [-77.04373, 38.717955],\n              [-77.043687, 38.717977],\n              [-77.043679, 38.718003],\n              [-77.043689, 38.71802],\n              [-77.043697, 38.718076],\n              [-77.043683, 38.718109],\n              [-77.043644, 38.718115],\n              [-77.043624, 38.718126],\n              [-77.043612, 38.718155],\n              [-77.043608, 38.718215],\n              [-77.043597, 38.718234],\n              [-77.043551, 38.718281],\n              [-77.043459, 38.718337],\n              [-77.043411, 38.718389],\n              [-77.043386, 38.718443],\n              [-77.043346, 38.718448],\n              [-77.04334, 38.718476],\n              [-77.043368, 38.718543],\n              [-77.043326, 38.718587],\n              [-77.0433, 38.71868],\n              [-77.043253, 38.718724],\n              [-77.043248, 38.718742],\n              [-77.043291, 38.718773],\n              [-77.043296, 38.718793],\n              [-77.043291, 38.718871],\n              [-77.043304, 38.718952],\n              [-77.043303, 38.718989],\n              [-77.043294, 38.719007],\n              [-77.043256, 38.719019],\n              [-77.043252, 38.719037],\n              [-77.043292, 38.719038],\n              [-77.043342, 38.719005],\n              [-77.043396, 38.718997],\n              [-77.043449, 38.718999],\n              [-77.043475, 38.719006],\n              [-77.04353, 38.719003],\n              [-77.043572, 38.719016],\n              [-77.04361, 38.71904],\n              [-77.043627, 38.719065],\n              [-77.043628, 38.719083],\n              [-77.043647, 38.719107],\n              [-77.043723, 38.719168],\n              [-77.043724, 38.719198],\n              [-77.043715, 38.719229],\n              [-77.043695, 38.719238],\n              [-77.043659, 38.719217],\n              [-77.043595, 38.719204],\n              [-77.043581, 38.719189],\n              [-77.043569, 38.719149],\n              [-77.04351, 38.719098],\n              [-77.043442, 38.719102],\n              [-77.043381, 38.719122],\n              [-77.04336, 38.719137],\n              [-77.043353, 38.719166],\n              [-77.043314, 38.719181],\n              [-77.043299, 38.719242],\n              [-77.043265, 38.719283],\n              [-77.043219, 38.719287],\n              [-77.043189, 38.719329],\n              [-77.043181, 38.719357],\n              [-77.043189, 38.719388],\n              [-77.04323, 38.719452],\n              [-77.043232, 38.71947],\n              [-77.043206, 38.719573],\n              [-77.043192, 38.719731],\n              [-77.04318, 38.719787],\n              [-77.043084, 38.719991],\n              [-77.043072, 38.720046],\n              [-77.04304, 38.720104],\n              [-77.043021, 38.720163],\n              [-77.043018, 38.720203],\n              [-77.042995, 38.720269],\n              [-77.042992, 38.720288],\n              [-77.042986, 38.720322],\n              [-77.04297, 38.720348],\n              [-77.042941, 38.720373],\n              [-77.042885, 38.72059],\n              [-77.042853, 38.720662],\n              [-77.042838, 38.720812],\n              [-77.042762, 38.720998],\n              [-77.042712, 38.721032],\n              [-77.04268, 38.721066],\n              [-77.042666, 38.721244],\n              [-77.042648, 38.721318],\n              [-77.042625, 38.721371],\n              [-77.04262, 38.721413],\n              [-77.042625, 38.721455],\n              [-77.042637, 38.721492],\n              [-77.042638, 38.721531],\n              [-77.042614, 38.721561],\n              [-77.042575, 38.721662],\n              [-77.042569, 38.721777],\n              [-77.042556, 38.721813],\n              [-77.042538, 38.721827],\n              [-77.042536, 38.721851],\n              [-77.042546, 38.721883],\n              [-77.042526, 38.722027],\n              [-77.042494, 38.722086],\n              [-77.042478, 38.722143],\n              [-77.042475, 38.722206],\n              [-77.042442, 38.722281],\n              [-77.042434, 38.722346],\n              [-77.042436, 38.722472],\n              [-77.042423, 38.72255],\n              [-77.042395, 38.722639],\n              [-77.042388, 38.722678],\n              [-77.042399, 38.722778],\n              [-77.04232, 38.723223],\n              [-77.042298, 38.723449],\n              [-77.04229, 38.723593],\n              [-77.04227, 38.723735],\n              [-77.042153, 38.724263],\n              [-77.042067, 38.724506],\n              [-77.042055, 38.7246],\n              [-77.042023, 38.724685],\n              [-77.041897, 38.724935],\n              [-77.041828, 38.725045],\n              [-77.041805, 38.725105],\n              [-77.041748, 38.725317],\n              [-77.041727, 38.725377],\n              [-77.041702, 38.725435],\n              [-77.041664, 38.725525],\n              [-77.041636, 38.72557],\n              [-77.041528, 38.725706],\n              [-77.041497, 38.725746],\n              [-77.041487, 38.725773],\n              [-77.041481, 38.725829],\n              [-77.041471, 38.725855],\n              [-77.041489, 38.725918],\n              [-77.041551, 38.72627],\n              [-77.041625, 38.726504],\n              [-77.041635, 38.726549],\n              [-77.041672, 38.726907],\n              [-77.041678, 38.727129],\n              [-77.041665, 38.72722],\n              [-77.041635, 38.727726],\n              [-77.041632, 38.727887],\n              [-77.041636, 38.728004],\n              [-77.041658, 38.728219],\n              [-77.041671, 38.728429],\n              [-77.041686, 38.728544],\n              [-77.04169, 38.728572],\n              [-77.04169, 38.728575],\n              [-77.041696, 38.728622],\n              [-77.041712, 38.728818],\n              [-77.041706, 38.729057],\n              [-77.041688, 38.729335],\n              [-77.041658, 38.729818],\n              [-77.04166, 38.729837],\n              [-77.04168, 38.730031],\n              [-77.041682, 38.730202],\n              [-77.041665, 38.730396],\n              [-77.041712, 38.730645],\n              [-77.041748, 38.730835],\n              [-77.041752, 38.73086],\n              [-77.041696, 38.731069],\n              [-77.041665, 38.73137],\n              [-77.041709, 38.731521],\n              [-77.041744, 38.732269],\n              [-77.041763, 38.732331],\n              [-77.041767, 38.732466],\n              [-77.041734, 38.732942],\n              [-77.041692, 38.733116],\n              [-77.04166, 38.733246],\n              [-77.041616, 38.733515],\n              [-77.041608, 38.73367],\n              [-77.041625, 38.733819],\n              [-77.04162, 38.733887],\n              [-77.041623, 38.733971],\n              [-77.04168, 38.734293],\n              [-77.041683, 38.734433],\n              [-77.041701, 38.734531],\n              [-77.041736, 38.734635],\n              [-77.041736, 38.73466],\n              [-77.041716, 38.734682],\n              [-77.041655, 38.734695],\n              [-77.041698, 38.735254],\n              [-77.041714, 38.735316],\n              [-77.041766, 38.735436],\n              [-77.041763, 38.735523],\n              [-77.041752, 38.735551],\n              [-77.041743, 38.7356],\n              [-77.041744, 38.735728],\n              [-77.041755, 38.735788],\n              [-77.041772, 38.735821],\n              [-77.041797, 38.735896],\n              [-77.0418, 38.736068],\n              [-77.041816, 38.736234],\n              [-77.041818, 38.736309],\n              [-77.041833, 38.736361],\n              [-77.041842, 38.736421],\n              [-77.041836, 38.736442],\n              [-77.041766, 38.73653],\n              [-77.041708, 38.736641],\n              [-77.041639, 38.736713],\n              [-77.041609, 38.736751],\n              [-77.04159, 38.736795],\n              [-77.041592, 38.736825],\n              [-77.04164, 38.736946],\n              [-77.041743, 38.737128],\n              [-77.041754, 38.737147],\n              [-77.041767, 38.737171],\n              [-77.041829, 38.737259],\n              [-77.041891, 38.737334],\n              [-77.042157, 38.737601],\n              [-77.042281, 38.737685],\n              [-77.04231, 38.737709],\n              [-77.042384, 38.737793],\n              [-77.042568, 38.738061],\n              [-77.042532, 38.738081],\n              [-77.042652, 38.738214],\n              [-77.042811, 38.738391],\n              [-77.042837, 38.738384],\n              [-77.042858, 38.738415],\n              [-77.042958, 38.738515],\n              [-77.043127, 38.738651],\n              [-77.043233, 38.73872],\n              [-77.043297, 38.73878],\n              [-77.043301, 38.738786],\n              [-77.043312, 38.738803],\n              [-77.043313, 38.738804],\n              [-77.043355, 38.738868],\n              [-77.043422, 38.739012],\n              [-77.043469, 38.739155],\n              [-77.04348, 38.739249],\n              [-77.043467, 38.73936],\n              [-77.043454, 38.739409],\n              [-77.043423, 38.739471],\n              [-77.043356, 38.739546],\n              [-77.043313, 38.739582],\n              [-77.043243, 38.739669],\n              [-77.043186, 38.739707],\n              [-77.043135, 38.73975],\n              [-77.043081, 38.739805],\n              [-77.043035, 38.739852],\n              [-77.042974, 38.739915],\n              [-77.042822, 38.740053],\n              [-77.042726, 38.74017],\n              [-77.042334, 38.740878],\n              [-77.042292, 38.741032],\n              [-77.04227, 38.741163],\n              [-77.042284, 38.741293],\n              [-77.042174, 38.743514],\n              [-77.042043, 38.74617],\n              [-77.042024, 38.746729],\n              [-77.041911, 38.750123],\n              [-77.04185, 38.751814],\n              [-77.04185, 38.751819],\n              [-77.041587, 38.759106],\n              [-77.041569, 38.759589],\n              [-77.041562, 38.759793],\n              [-77.041562, 38.759795],\n              [-77.041516, 38.761046],\n              [-77.04141, 38.764011],\n              [-77.041366, 38.765682],\n              [-77.041366, 38.768562],\n              [-77.041364, 38.785423],\n              [-77.040252, 38.785224],\n              [-77.040097, 38.78992],\n              [-77.040467, 38.790413],\n              [-77.040048, 38.79044],\n              [-77.03983, 38.790456],\n              [-77.039633, 38.790475],\n              [-77.039549, 38.790493],\n              [-77.039472, 38.790747],\n              [-77.039428, 38.790817],\n              [-77.039447, 38.790886],\n              [-77.03944, 38.791094],\n              [-77.039364, 38.791175],\n              [-77.039392, 38.791326],\n              [-77.039394, 38.791333],\n              [-77.039386, 38.791462],\n              [-77.039373, 38.791529],\n              [-77.039362, 38.791583],\n              [-77.039368, 38.791598],\n              [-77.039008, 38.791653],\n              [-77.038976, 38.793187],\n              [-77.038979, 38.793297],\n              [-77.03899, 38.793681],\n              [-77.038991, 38.793709],\n              [-77.039011, 38.794418],\n              [-77.039012, 38.794549],\n              [-77.039017, 38.794742],\n              [-77.039076, 38.796884],\n              [-77.039076, 38.796911],\n              [-77.039082, 38.797168],\n              [-77.039086, 38.797296],\n              [-77.039094, 38.797579],\n              [-77.039096, 38.797597],\n              [-77.0391, 38.797657],\n              [-77.039116, 38.798177],\n              [-77.03916, 38.799515],\n              [-77.039166, 38.79975],\n              [-77.039178, 38.800042],\n              [-77.039186, 38.800308],\n              [-77.039193, 38.800504],\n              [-77.039132, 38.800825],\n              [-77.038969, 38.801685],\n              [-77.038968, 38.801685],\n              [-77.038622, 38.803488],\n              [-77.038415, 38.804563],\n              [-77.03838, 38.804747],\n              [-77.038318, 38.805052],\n              [-77.038185, 38.80571],\n              [-77.038002, 38.806589],\n              [-77.037722, 38.808152],\n              [-77.037644, 38.808582],\n              [-77.03729, 38.810535],\n              [-77.037308, 38.812245],\n              [-77.03734, 38.813413],\n              [-77.037358, 38.814195],\n              [-77.03736, 38.814485],\n              [-77.037358, 38.814543],\n              [-77.037345, 38.814643],\n              [-77.037364, 38.814712],\n              [-77.037391, 38.814747],\n              [-77.037419, 38.814794],\n              [-77.037429, 38.81486],\n              [-77.037439, 38.814947],\n              [-77.037475, 38.815005],\n              [-77.037525, 38.815052],\n              [-77.037596, 38.815097],\n              [-77.037675, 38.815151],\n              [-77.037743, 38.815191],\n              [-77.037828, 38.815256],\n              [-77.037909, 38.815329],\n              [-77.038028, 38.815444],\n              [-77.038081, 38.815522],\n              [-77.038148, 38.815621],\n              [-77.038225, 38.81578],\n              [-77.038276, 38.815881],\n              [-77.038317, 38.815977],\n              [-77.038353, 38.816037],\n              [-77.03838, 38.816079],\n              [-77.038414, 38.816098],\n              [-77.038423, 38.816147],\n              [-77.038428, 38.816207],\n              [-77.038433, 38.816216],\n              [-77.038434, 38.81622],\n              [-77.038449, 38.816249],\n              [-77.03846, 38.816301],\n              [-77.038489, 38.816523],\n              [-77.038508, 38.816629],\n              [-77.038525, 38.816723],\n              [-77.038542, 38.816819],\n              [-77.038555, 38.816906],\n              [-77.038561, 38.816986],\n              [-77.038568, 38.817057],\n              [-77.038542, 38.817072],\n              [-77.038546, 38.817087],\n              [-77.03857, 38.817097],\n              [-77.038578, 38.817116],\n              [-77.038609, 38.817191],\n              [-77.038633, 38.817276],\n              [-77.038662, 38.817348],\n              [-77.038677, 38.817415],\n              [-77.038693, 38.817465],\n              [-77.038706, 38.817521],\n              [-77.038713, 38.817568],\n              [-77.038702, 38.817597],\n              [-77.038704, 38.817604],\n              [-77.038713, 38.817651],\n              [-77.038745, 38.817643],\n              [-77.038779, 38.817693],\n              [-77.038754, 38.817713],\n              [-77.038753, 38.817744],\n              [-77.03878, 38.817816],\n              [-77.038791, 38.817863],\n              [-77.038828, 38.817883],\n              [-77.038839, 38.81793],\n              [-77.038814, 38.817954],\n              [-77.038802, 38.817986],\n              [-77.038811, 38.818009],\n              [-77.038858, 38.818045],\n              [-77.038846, 38.818122],\n              [-77.038823, 38.818144],\n              [-77.038822, 38.818145],\n              [-77.038858, 38.818173],\n              [-77.038869, 38.818216],\n              [-77.038871, 38.818253],\n              [-77.038875, 38.818329],\n              [-77.038884, 38.818386],\n              [-77.0389, 38.818436],\n              [-77.038911, 38.818477],\n              [-77.038929, 38.81852],\n              [-77.038953, 38.818585],\n              [-77.03897, 38.818633],\n              [-77.038979, 38.818676],\n              [-77.038987, 38.81869],\n              [-77.038994, 38.818708],\n              [-77.038993, 38.818734],\n              [-77.038983, 38.818763],\n              [-77.038972, 38.818787],\n              [-77.039085, 38.818828],\n              [-77.039063, 38.818873],\n              [-77.039122, 38.818893],\n              [-77.039103, 38.818947],\n              [-77.03904, 38.818929],\n              [-77.039032, 38.818937],\n              [-77.039008, 38.818959],\n              [-77.038987, 38.818984],\n              [-77.038955, 38.819019],\n              [-77.038927, 38.819044],\n              [-77.038909, 38.81907],\n              [-77.038888, 38.819097],\n              [-77.038874, 38.819133],\n              [-77.038864, 38.819175],\n              [-77.038866, 38.819267],\n              [-77.038869, 38.819337],\n              [-77.038901, 38.819376],\n              [-77.038907, 38.819406],\n              [-77.038894, 38.819435],\n              [-77.038922, 38.819481],\n              [-77.038921, 38.819507],\n              [-77.038925, 38.819512],\n              [-77.038944, 38.819541],\n              [-77.038962, 38.819544],\n              [-77.038985, 38.819547],\n              [-77.039027, 38.819534],\n              [-77.039134, 38.819614],\n              [-77.039218, 38.819677],\n              [-77.039279, 38.819734],\n              [-77.039342, 38.819797],\n              [-77.039376, 38.819825],\n              [-77.039431, 38.819853],\n              [-77.039498, 38.819875],\n              [-77.039557, 38.819883],\n              [-77.039609, 38.819896],\n              [-77.039667, 38.819899],\n              [-77.039731, 38.819893],\n              [-77.039815, 38.819982],\n              [-77.039902, 38.820081],\n              [-77.039907, 38.820143],\n              [-77.039974, 38.820262],\n              [-77.039937, 38.820469],\n              [-77.039972, 38.820509],\n              [-77.039997, 38.820534],\n              [-77.04001, 38.820571],\n              [-77.040015, 38.820597],\n              [-77.040042, 38.820622],\n              [-77.040046, 38.820661],\n              [-77.040031, 38.820684],\n              [-77.04, 38.820706],\n              [-77.039984, 38.820736],\n              [-77.03997, 38.820773],\n              [-77.039957, 38.820816],\n              [-77.039936, 38.820866],\n              [-77.0399, 38.82091],\n              [-77.039847, 38.820957],\n              [-77.039804, 38.821014],\n              [-77.039742, 38.821069],\n              [-77.039675, 38.821099],\n              [-77.039623, 38.821129],\n              [-77.03957, 38.821148],\n              [-77.039555, 38.82117],\n              [-77.039549, 38.821216],\n              [-77.039546, 38.821263],\n              [-77.039544, 38.821284],\n              [-77.039518, 38.821299],\n              [-77.039518, 38.821322],\n              [-77.03951, 38.821344],\n              [-77.0395, 38.821368],\n              [-77.039488, 38.821412],\n              [-77.039461, 38.82144],\n              [-77.039446, 38.821464],\n              [-77.039461, 38.821565],\n              [-77.039494, 38.821592],\n              [-77.03949, 38.821612],\n              [-77.039498, 38.821664],\n              [-77.039556, 38.821707],\n              [-77.039586, 38.821713],\n              [-77.039636, 38.82174],\n              [-77.03966, 38.821776],\n              [-77.039713, 38.821825],\n              [-77.039766, 38.821832],\n              [-77.039819, 38.821852],\n              [-77.039891, 38.82186],\n              [-77.039938, 38.821889],\n              [-77.040061, 38.821903],\n              [-77.040106, 38.821924],\n              [-77.040238, 38.821978],\n              [-77.04039, 38.821999],\n              [-77.040525, 38.821976],\n              [-77.0406, 38.821998],\n              [-77.040652, 38.822031],\n              [-77.040688, 38.822045],\n              [-77.04074, 38.822091],\n              [-77.04076, 38.822098],\n              [-77.040828, 38.822184],\n              [-77.040869, 38.822244],\n              [-77.040875, 38.822347],\n              [-77.040916, 38.822424],\n              [-77.040983, 38.822567],\n              [-77.040984, 38.822598],\n              [-77.040999, 38.822616],\n              [-77.041006, 38.822673],\n              [-77.041041, 38.822726],\n              [-77.041088, 38.822893],\n              [-77.04109, 38.822935],\n              [-77.041109, 38.822948],\n              [-77.041096, 38.823057],\n              [-77.041101, 38.82309],\n              [-77.041082, 38.823199],\n              [-77.04107, 38.823237],\n              [-77.041069, 38.823265],\n              [-77.041046, 38.823302],\n              [-77.041021, 38.823324],\n              [-77.040984, 38.823345],\n              [-77.040955, 38.82338],\n              [-77.040902, 38.823388],\n              [-77.040892, 38.823391],\n              [-77.040797, 38.823454],\n              [-77.040782, 38.823491],\n              [-77.040688, 38.823562],\n              [-77.040652, 38.823575],\n              [-77.040631, 38.823597],\n              [-77.04062, 38.823612],\n              [-77.040595, 38.823623],\n              [-77.040533, 38.823627],\n              [-77.040519, 38.823644],\n              [-77.04044, 38.823646],\n              [-77.04042, 38.823662],\n              [-77.040386, 38.82367],\n              [-77.040344, 38.82369],\n              [-77.040291, 38.82369],\n              [-77.040265, 38.823715],\n              [-77.040198, 38.823721],\n              [-77.04017, 38.823731],\n              [-77.040139, 38.823729],\n              [-77.040111, 38.823744],\n              [-77.040068, 38.823754],\n              [-77.040051, 38.82376],\n              [-77.040015, 38.82376],\n              [-77.039973, 38.823752],\n              [-77.039817, 38.823747],\n              [-77.039797, 38.823759],\n              [-77.039771, 38.823759],\n              [-77.039751, 38.823774],\n              [-77.03972, 38.823789],\n              [-77.039698, 38.823798],\n              [-77.039678, 38.823815],\n              [-77.039675, 38.823837],\n              [-77.039674, 38.823852],\n              [-77.039683, 38.823865],\n              [-77.039688, 38.823879],\n              [-77.039671, 38.823896],\n              [-77.03967, 38.823935],\n              [-77.039644, 38.823961],\n              [-77.039602, 38.823972],\n              [-77.039602, 38.823991],\n              [-77.039537, 38.824015],\n              [-77.039511, 38.824034],\n              [-77.039461, 38.824033],\n              [-77.039413, 38.82405],\n              [-77.039376, 38.82405],\n              [-77.039337, 38.824067],\n              [-77.039258, 38.82407],\n              [-77.039219, 38.824094],\n              [-77.039184, 38.824096],\n              [-77.039129, 38.824099],\n              [-77.039087, 38.824112],\n              [-77.03907, 38.824132],\n              [-77.039052, 38.824151],\n              [-77.039032, 38.824177],\n              [-77.039014, 38.824236],\n              [-77.038979, 38.82428],\n              [-77.038942, 38.824324],\n              [-77.038902, 38.824366],\n              [-77.038883, 38.824379],\n              [-77.038873, 38.824416],\n              [-77.038838, 38.82443],\n              [-77.038803, 38.824452],\n              [-77.038786, 38.824481],\n              [-77.038791, 38.824514],\n              [-77.038804, 38.824543],\n              [-77.038812, 38.82456],\n              [-77.03884, 38.824566],\n              [-77.038829, 38.824596],\n              [-77.038813, 38.82462],\n              [-77.038793, 38.824651],\n              [-77.038801, 38.824701],\n              [-77.038766, 38.82475],\n              [-77.038751, 38.824898],\n              [-77.038762, 38.824982],\n              [-77.038667, 38.825074],\n              [-77.038628, 38.825427],\n              [-77.038618, 38.825512],\n              [-77.038657, 38.825576],\n              [-77.038668, 38.82568],\n              [-77.03863, 38.825776],\n              [-77.03861, 38.82593],\n              [-77.038541, 38.826044],\n              [-77.03858, 38.826097],\n              [-77.038564, 38.826201],\n              [-77.038522, 38.826265],\n              [-77.038508, 38.826357],\n              [-77.038466, 38.82645],\n              [-77.038451, 38.826534],\n              [-77.038404, 38.826836],\n              [-77.038339, 38.826931],\n              [-77.038305, 38.827106],\n              [-77.038336, 38.827135],\n              [-77.038384, 38.82718],\n              [-77.038369, 38.827274],\n              [-77.038314, 38.827324],\n              [-77.038304, 38.82736],\n              [-77.038288, 38.827425],\n              [-77.038274, 38.82749],\n              [-77.038279, 38.827511],\n              [-77.03828, 38.827516],\n              [-77.038265, 38.827531],\n              [-77.038238, 38.827555],\n              [-77.038207, 38.827578],\n              [-77.038198, 38.827599],\n              [-77.038191, 38.827622],\n              [-77.038181, 38.827644],\n              [-77.038172, 38.827656],\n              [-77.038153, 38.827671],\n              [-77.038143, 38.827688],\n              [-77.038137, 38.827701],\n              [-77.038138, 38.827719],\n              [-77.038143, 38.827737],\n              [-77.038147, 38.82775],\n              [-77.038144, 38.82776],\n              [-77.038143, 38.827779],\n              [-77.038144, 38.827791],\n              [-77.038153, 38.827808],\n              [-77.038158, 38.827821],\n              [-77.038162, 38.827844],\n              [-77.038164, 38.827869],\n              [-77.038158, 38.827881],\n              [-77.038154, 38.827902],\n              [-77.038149, 38.827944],\n              [-77.038133, 38.827958],\n              [-77.038133, 38.82801],\n              [-77.038127, 38.828031],\n              [-77.038117, 38.82805],\n              [-77.038096, 38.828065],\n              [-77.038089, 38.828075],\n              [-77.03808, 38.828083],\n              [-77.038072, 38.828096],\n              [-77.038065, 38.828113],\n              [-77.038058, 38.828125],\n              [-77.038058, 38.828134],\n              [-77.03806, 38.828149],\n              [-77.038067, 38.828163],\n              [-77.038073, 38.828174],\n              [-77.038074, 38.828186],\n              [-77.038066, 38.828204],\n              [-77.038058, 38.828217],\n              [-77.038043, 38.828235],\n              [-77.03803, 38.828253],\n              [-77.038023, 38.828268],\n              [-77.038021, 38.828297],\n              [-77.038036, 38.828341],\n              [-77.038045, 38.828356],\n              [-77.038052, 38.828373],\n              [-77.038051, 38.828388],\n              [-77.038033, 38.8284],\n              [-77.038009, 38.828426],\n              [-77.03801, 38.828443],\n              [-77.038019, 38.828463],\n              [-77.038016, 38.828477],\n              [-77.038008, 38.828484],\n              [-77.037976, 38.828582],\n              [-77.037971, 38.8286],\n              [-77.037983, 38.828625],\n              [-77.037985, 38.828644],\n              [-77.037986, 38.828661],\n              [-77.037977, 38.828682],\n              [-77.037967, 38.828709],\n              [-77.037956, 38.82873],\n              [-77.037949, 38.82876],\n              [-77.037949, 38.828781],\n              [-77.037956, 38.828806],\n              [-77.03795, 38.828829],\n              [-77.037941, 38.82884],\n              [-77.037934, 38.828851],\n              [-77.037915, 38.828902],\n              [-77.037888, 38.828954],\n              [-77.037882, 38.828978],\n              [-77.037867, 38.828983],\n              [-77.037856, 38.828988],\n              [-77.037845, 38.829003],\n              [-77.037839, 38.829019],\n              [-77.037838, 38.829036],\n              [-77.037852, 38.829064],\n              [-77.037851, 38.82909],\n              [-77.037828, 38.829149],\n              [-77.037808, 38.829172],\n              [-77.037788, 38.829189],\n              [-77.037775, 38.829205],\n              [-77.037766, 38.829221],\n              [-77.037764, 38.829237],\n              [-77.037765, 38.829247],\n              [-77.037771, 38.829256],\n              [-77.03779, 38.829281],\n              [-77.037807, 38.829304],\n              [-77.037806, 38.829323],\n              [-77.037794, 38.829334],\n              [-77.037757, 38.82939],\n              [-77.037763, 38.829426],\n              [-77.037771, 38.829441],\n              [-77.037767, 38.829458],\n              [-77.037732, 38.829476],\n              [-77.037701, 38.829508],\n              [-77.037715, 38.82955],\n              [-77.037718, 38.829604],\n              [-77.037748, 38.82964],\n              [-77.037745, 38.82975],\n              [-77.037772, 38.82978],\n              [-77.037778, 38.829819],\n              [-77.037743, 38.829857],\n              [-77.037739, 38.829872],\n              [-77.03775, 38.82992],\n              [-77.037741, 38.830012],\n              [-77.037751, 38.830039],\n              [-77.037757, 38.830146],\n              [-77.037786, 38.830188],\n              [-77.037801, 38.830203],\n              [-77.037828, 38.830204],\n              [-77.037827, 38.830225],\n              [-77.037824, 38.83025],\n              [-77.037817, 38.830299],\n              [-77.03784, 38.830323],\n              [-77.037847, 38.83035],\n              [-77.037846, 38.83035],\n              [-77.037828, 38.830411],\n              [-77.03786, 38.830466],\n              [-77.037883, 38.83049],\n              [-77.037865, 38.830503],\n              [-77.03787, 38.830547],\n              [-77.037968, 38.830625],\n              [-77.038024, 38.830677],\n              [-77.038026, 38.830725],\n              [-77.038007, 38.830748],\n              [-77.038081, 38.830832],\n              [-77.038141, 38.830899],\n              [-77.038152, 38.830935],\n              [-77.038204, 38.830998],\n              [-77.038245, 38.831043],\n              [-77.03826, 38.831055],\n              [-77.038262, 38.831118],\n              [-77.038287, 38.83118],\n              [-77.038351, 38.83122],\n              [-77.038419, 38.831248],\n              [-77.038415, 38.831301],\n              [-77.038481, 38.831388],\n              [-77.0385, 38.831415],\n              [-77.038537, 38.831437],\n              [-77.038548, 38.831485],\n              [-77.038566, 38.831521],\n              [-77.038623, 38.831556],\n              [-77.03863, 38.83156],\n              [-77.038621, 38.831604],\n              [-77.038648, 38.831617],\n              [-77.038686, 38.831638],\n              [-77.038711, 38.831707],\n              [-77.03876, 38.83174],\n              [-77.038798, 38.831741],\n              [-77.038824, 38.831762],\n              [-77.03882, 38.831783],\n              [-77.038857, 38.831819],\n              [-77.038861, 38.831837],\n              [-77.038898, 38.831864],\n              [-77.038901, 38.831894],\n              [-77.038954, 38.831936],\n              [-77.039006, 38.831964],\n              [-77.039041, 38.832041],\n              [-77.039118, 38.832108],\n              [-77.039174, 38.832156],\n              [-77.039231, 38.832202],\n              [-77.039339, 38.832275],\n              [-77.039559, 38.832397],\n              [-77.039685, 38.832482],\n              [-77.039715, 38.832524],\n              [-77.039741, 38.832542],\n              [-77.039775, 38.832557],\n              [-77.039783, 38.83256],\n              [-77.039858, 38.832579],\n              [-77.03993, 38.832589],\n              [-77.039961, 38.832598],\n              [-77.040412, 38.832878],\n              [-77.040469, 38.832884],\n              [-77.040544, 38.832942],\n              [-77.040604, 38.832978],\n              [-77.040646, 38.832991],\n              [-77.040708, 38.833039],\n              [-77.04077, 38.83307],\n              [-77.04083, 38.833121],\n              [-77.040831, 38.833122],\n              [-77.040913, 38.833164],\n              [-77.041003, 38.833213],\n              [-77.041714, 38.833642],\n              [-77.041789, 38.833684],\n              [-77.041891, 38.833718],\n              [-77.042009, 38.833729],\n              [-77.042038, 38.833726],\n              [-77.04212, 38.833718],\n              [-77.042196, 38.833701],\n              [-77.042281, 38.833669],\n              [-77.042377, 38.83362],\n              [-77.042458, 38.833555],\n              [-77.042528, 38.833485],\n              [-77.042564, 38.833414],\n              [-77.042581, 38.83334],\n              [-77.042579, 38.833247],\n              [-77.042554, 38.833172],\n              [-77.04256, 38.833133],\n              [-77.042532, 38.833089],\n              [-77.042526, 38.833056],\n              [-77.042537, 38.833037],\n              [-77.042504, 38.832984],\n              [-77.042497, 38.83296],\n              [-77.042464, 38.832918],\n              [-77.042437, 38.832845],\n              [-77.042399, 38.8327],\n              [-77.042347, 38.832672],\n              [-77.042349, 38.83263],\n              [-77.042335, 38.832603],\n              [-77.042295, 38.832571],\n              [-77.042297, 38.832514],\n              [-77.042275, 38.832479],\n              [-77.042245, 38.832418],\n              [-77.042244, 38.832383],\n              [-77.042217, 38.832325],\n              [-77.042222, 38.832251],\n              [-77.042196, 38.832227],\n              [-77.042201, 38.832173],\n              [-77.042153, 38.832095],\n              [-77.042149, 38.831973],\n              [-77.042089, 38.831853],\n              [-77.042062, 38.831843],\n              [-77.042037, 38.831796],\n              [-77.042023, 38.831751],\n              [-77.041997, 38.831682],\n              [-77.042002, 38.831641],\n              [-77.041991, 38.831614],\n              [-77.041961, 38.831595],\n              [-77.041981, 38.831575],\n              [-77.041974, 38.831527],\n              [-77.041986, 38.831492],\n              [-77.042014, 38.831453],\n              [-77.042044, 38.831439],\n              [-77.04209, 38.831433],\n              [-77.042117, 38.831419],\n              [-77.042106, 38.831383],\n              [-77.042111, 38.831341],\n              [-77.042276, 38.831281],\n              [-77.042391, 38.831232],\n              [-77.042425, 38.831235],\n              [-77.042463, 38.831256],\n              [-77.042513, 38.831254],\n              [-77.042551, 38.831225],\n              [-77.042807, 38.831198],\n              [-77.042887, 38.831214],\n              [-77.042913, 38.831232],\n              [-77.043, 38.831257],\n              [-77.043049, 38.831299],\n              [-77.043101, 38.831356],\n              [-77.043131, 38.83136],\n              [-77.04315, 38.831378],\n              [-77.043186, 38.831431],\n              [-77.043209, 38.831438],\n              [-77.043276, 38.831517],\n              [-77.04328, 38.83154],\n              [-77.04332, 38.831624],\n              [-77.043316, 38.831648],\n              [-77.043342, 38.831687],\n              [-77.04334, 38.831721],\n              [-77.043359, 38.831741],\n              [-77.043372, 38.831854],\n              [-77.043414, 38.831876],\n              [-77.043466, 38.831909],\n              [-77.043477, 38.832093],\n              [-77.043504, 38.832133],\n              [-77.043508, 38.832198],\n              [-77.043525, 38.832225],\n              [-77.04355, 38.832315],\n              [-77.043545, 38.832378],\n              [-77.043574, 38.832435],\n              [-77.043603, 38.832477],\n              [-77.043601, 38.832576],\n              [-77.043616, 38.832602],\n              [-77.043613, 38.832654],\n              [-77.043644, 38.832706],\n              [-77.043666, 38.832763],\n              [-77.043673, 38.832859],\n              [-77.04369, 38.832901],\n              [-77.043716, 38.832952],\n              [-77.043738, 38.832973],\n              [-77.043748, 38.833029],\n              [-77.043793, 38.833084],\n              [-77.043788, 38.833116],\n              [-77.043757, 38.833151],\n              [-77.04377, 38.833187],\n              [-77.043844, 38.833203],\n              [-77.043843, 38.833236],\n              [-77.043797, 38.833259],\n              [-77.043799, 38.833325],\n              [-77.043776, 38.833369],\n              [-77.043794, 38.83339],\n              [-77.043836, 38.833418],\n              [-77.043915, 38.833448],\n              [-77.04393, 38.833478],\n              [-77.043974, 38.833524],\n              [-77.044058, 38.833534],\n              [-77.044169, 38.833529],\n              [-77.044195, 38.833538],\n              [-77.044217, 38.833568],\n              [-77.04424, 38.833592],\n              [-77.044258, 38.833599],\n              [-77.044307, 38.833629],\n              [-77.044348, 38.833695],\n              [-77.0444, 38.833755],\n              [-77.044444, 38.833827],\n              [-77.044458, 38.833893],\n              [-77.044488, 38.833938],\n              [-77.044546, 38.834064],\n              [-77.044536, 38.834107],\n              [-77.044579, 38.834148],\n              [-77.044638, 38.834238],\n              [-77.044637, 38.834262],\n              [-77.044651, 38.834345],\n              [-77.044669, 38.834372],\n              [-77.044702, 38.834453],\n              [-77.044728, 38.83448],\n              [-77.044734, 38.834584],\n              [-77.044786, 38.834651],\n              [-77.04478, 38.834722],\n              [-77.044821, 38.834767],\n              [-77.044818, 38.834808],\n              [-77.044861, 38.834887],\n              [-77.044867, 38.834946],\n              [-77.044885, 38.83499],\n              [-77.044896, 38.835012],\n              [-77.044898, 38.83505],\n              [-77.044907, 38.835066],\n              [-77.044903, 38.835088],\n              [-77.04491, 38.835102],\n              [-77.044915, 38.835194],\n              [-77.044953, 38.83521],\n              [-77.044966, 38.83527],\n              [-77.044993, 38.835302],\n              [-77.044995, 38.835389],\n              [-77.04501, 38.835419],\n              [-77.04502, 38.835478],\n              [-77.04502, 38.83553],\n              [-77.045026, 38.835547],\n              [-77.045031, 38.835616],\n              [-77.045047, 38.835634],\n              [-77.04505, 38.835681],\n              [-77.045048, 38.835783],\n              [-77.045089, 38.835834],\n              [-77.045105, 38.835869],\n              [-77.045132, 38.83589],\n              [-77.04522, 38.835936],\n              [-77.045196, 38.835967],\n              [-77.045111, 38.836032],\n              [-77.045055, 38.836086],\n              [-77.045057, 38.836126],\n              [-77.045082, 38.836173],\n              [-77.045126, 38.836184],\n              [-77.045144, 38.83625],\n              [-77.045153, 38.836323],\n              [-77.045154, 38.836389],\n              [-77.045149, 38.836454],\n              [-77.045197, 38.836511],\n              [-77.045208, 38.836535],\n              [-77.045226, 38.836595],\n              [-77.045214, 38.836634],\n              [-77.045232, 38.836664],\n              [-77.045243, 38.836696],\n              [-77.04522, 38.836744],\n              [-77.045251, 38.836854],\n              [-77.045269, 38.836932],\n              [-77.045263, 38.836976],\n              [-77.045286, 38.837022],\n              [-77.045283, 38.83705],\n              [-77.04531, 38.837153],\n              [-77.045332, 38.837189],\n              [-77.045319, 38.837254],\n              [-77.0453, 38.837272],\n              [-77.045277, 38.837281],\n              [-77.045268, 38.837319],\n              [-77.045272, 38.837343],\n              [-77.045331, 38.837427],\n              [-77.045326, 38.837677],\n              [-77.045329, 38.837725],\n              [-77.045359, 38.837755],\n              [-77.045396, 38.837779],\n              [-77.045429, 38.837836],\n              [-77.045433, 38.837851],\n              [-77.045444, 38.837878],\n              [-77.045447, 38.837902],\n              [-77.045431, 38.837941],\n              [-77.04543, 38.837976],\n              [-77.045438, 38.837991],\n              [-77.045436, 38.838051],\n              [-77.045442, 38.838137],\n              [-77.045426, 38.838164],\n              [-77.045418, 38.838194],\n              [-77.045422, 38.838215],\n              [-77.045405, 38.838268],\n              [-77.045359, 38.838303],\n              [-77.045347, 38.83833],\n              [-77.045323, 38.838365],\n              [-77.045292, 38.838424],\n              [-77.045275, 38.838484],\n              [-77.045317, 38.838502],\n              [-77.04533, 38.838538],\n              [-77.045338, 38.838598],\n              [-77.045375, 38.838658],\n              [-77.045381, 38.8387],\n              [-77.045411, 38.838754],\n              [-77.045467, 38.838775],\n              [-77.045516, 38.838803],\n              [-77.045545, 38.838846],\n              [-77.04559, 38.838872],\n              [-77.045635, 38.838883],\n              [-77.045681, 38.838863],\n              [-77.045765, 38.83894],\n              [-77.04592, 38.839004],\n              [-77.045958, 38.839055],\n              [-77.046016, 38.839092],\n              [-77.04606, 38.839184],\n              [-77.046064, 38.839214],\n              [-77.046184, 38.839296],\n              [-77.04621, 38.839323],\n              [-77.046213, 38.839362],\n              [-77.046198, 38.83938],\n              [-77.046178, 38.839406],\n              [-77.046204, 38.839445],\n              [-77.046215, 38.839454],\n              [-77.046253, 38.839467],\n              [-77.04626, 38.839503],\n              [-77.046309, 38.839545],\n              [-77.046305, 38.839667],\n              [-77.046347, 38.839697],\n              [-77.046362, 38.839729],\n              [-77.046396, 38.839761],\n              [-77.04642, 38.839781],\n              [-77.04641, 38.839823],\n              [-77.046424, 38.839847],\n              [-77.046485, 38.839872],\n              [-77.046515, 38.839902],\n              [-77.046503, 38.839929],\n              [-77.046476, 38.839949],\n              [-77.046479, 38.839973],\n              [-77.046456, 38.839982],\n              [-77.046443, 38.840053],\n              [-77.046421, 38.840057],\n              [-77.046414, 38.840082],\n              [-77.046375, 38.840076],\n              [-77.046336, 38.840081],\n              [-77.046309, 38.840101],\n              [-77.04625, 38.84009],\n              [-77.046135, 38.840007],\n              [-77.04607, 38.839981],\n              [-77.045992, 38.839964],\n              [-77.045965, 38.84001],\n              [-77.045854, 38.840019],\n              [-77.045846, 38.840055],\n              [-77.045872, 38.840156],\n              [-77.045981, 38.840333],\n              [-77.046121, 38.840422],\n              [-77.046193, 38.840437],\n              [-77.046207, 38.84044],\n              [-77.04627, 38.840453],\n              [-77.046433, 38.840543],\n              [-77.046738, 38.84064],\n              [-77.047021, 38.840667],\n              [-77.047455, 38.840667],\n              [-77.047491, 38.840663],\n              [-77.047629, 38.840835],\n              [-77.047753, 38.84097],\n              [-77.048023, 38.841264],\n              [-77.048027, 38.841267],\n              [-77.048011, 38.841274],\n              [-77.047971, 38.841275],\n              [-77.047936, 38.841278],\n              [-77.047893, 38.841282],\n              [-77.047861, 38.841285],\n              [-77.047819, 38.841289],\n              [-77.047786, 38.841293],\n              [-77.047761, 38.841297],\n              [-77.04773, 38.8413],\n              [-77.047707, 38.841304],\n              [-77.047683, 38.84131],\n              [-77.047641, 38.841315],\n              [-77.047607, 38.841317],\n              [-77.047567, 38.841316],\n              [-77.047527, 38.841314],\n              [-77.047485, 38.841316],\n              [-77.047443, 38.841316],\n              [-77.047407, 38.841318],\n              [-77.047366, 38.841319],\n              [-77.047332, 38.84132],\n              [-77.047291, 38.841322],\n              [-77.047257, 38.841322],\n              [-77.047213, 38.841324],\n              [-77.047176, 38.841328],\n              [-77.047131, 38.841328],\n              [-77.047093, 38.841327],\n              [-77.047053, 38.841324],\n              [-77.047013, 38.841322],\n              [-77.046973, 38.841319],\n              [-77.046948, 38.841318],\n              [-77.04691, 38.841315],\n              [-77.046868, 38.841313],\n              [-77.046831, 38.841311],\n              [-77.046799, 38.841307],\n              [-77.04676, 38.841303],\n              [-77.04673, 38.841298],\n              [-77.046693, 38.841293],\n              [-77.046658, 38.841287],\n              [-77.046629, 38.841277],\n              [-77.046594, 38.841271],\n              [-77.046558, 38.841269],\n              [-77.046526, 38.841263],\n              [-77.04649, 38.841255],\n              [-77.046425, 38.841242],\n              [-77.04639, 38.841232],\n              [-77.046361, 38.841224],\n              [-77.046329, 38.841216],\n              [-77.046295, 38.841206],\n              [-77.046268, 38.841196],\n              [-77.04624, 38.841188],\n              [-77.04621, 38.84118],\n              [-77.046183, 38.841173],\n              [-77.046148, 38.841191],\n              [-77.046143, 38.841163],\n              [-77.046114, 38.841155],\n              [-77.046083, 38.841146],\n              [-77.046053, 38.841137],\n              [-77.046022, 38.841126],\n              [-77.04599, 38.841114],\n              [-77.045962, 38.841103],\n              [-77.045928, 38.841091],\n              [-77.045896, 38.841081],\n              [-77.045865, 38.84107],\n              [-77.045831, 38.841059],\n              [-77.0458, 38.841045],\n              [-77.04577, 38.841029],\n              [-77.045737, 38.841012],\n              [-77.045711, 38.840997],\n              [-77.045687, 38.840989],\n              [-77.045663, 38.841002],\n              [-77.045643, 38.840992],\n              [-77.045651, 38.84097],\n              [-77.04562, 38.840957],\n              [-77.045596, 38.840943],\n              [-77.04557, 38.840928],\n              [-77.045541, 38.840909],\n              [-77.045514, 38.840892],\n              [-77.045487, 38.840876],\n              [-77.045457, 38.840855],\n              [-77.045429, 38.840836],\n              [-77.045401, 38.840818],\n              [-77.045376, 38.840797],\n              [-77.045348, 38.840776],\n              [-77.045294, 38.84074],\n              [-77.045267, 38.840717],\n              [-77.045242, 38.840698],\n              [-77.045213, 38.840682],\n              [-77.045189, 38.840661],\n              [-77.045164, 38.840639],\n              [-77.045137, 38.840617],\n              [-77.045111, 38.840592],\n              [-77.045091, 38.840569],\n              [-77.04507, 38.840547],\n              [-77.045022, 38.840503],\n              [-77.045001, 38.840482],\n              [-77.044985, 38.84046],\n              [-77.044968, 38.840439],\n              [-77.044949, 38.840418],\n              [-77.044931, 38.840396],\n              [-77.04491, 38.840376],\n              [-77.044891, 38.840358],\n              [-77.044879, 38.840337],\n              [-77.044866, 38.840318],\n              [-77.044853, 38.840298],\n              [-77.044837, 38.840277],\n              [-77.044814, 38.840259],\n              [-77.044791, 38.840242],\n              [-77.044769, 38.840229],\n              [-77.044741, 38.840222],\n              [-77.04471, 38.840219],\n              [-77.044681, 38.840218],\n              [-77.044646, 38.840217],\n              [-77.044615, 38.840215],\n              [-77.044583, 38.84021],\n              [-77.044552, 38.840205],\n              [-77.044525, 38.8402],\n              [-77.044496, 38.840194],\n              [-77.044457, 38.84019],\n              [-77.04442, 38.840182],\n              [-77.044376, 38.840178],\n              [-77.044338, 38.840177],\n              [-77.044297, 38.840182],\n              [-77.044256, 38.840186],\n              [-77.044223, 38.840193],\n              [-77.044186, 38.840202],\n              [-77.044154, 38.840213],\n              [-77.044121, 38.840223],\n              [-77.04409, 38.84023],\n              [-77.04406, 38.840234],\n              [-77.044029, 38.840233],\n              [-77.044003, 38.840224],\n              [-77.043976, 38.840212],\n              [-77.043941, 38.840205],\n              [-77.043906, 38.840206],\n              [-77.04388, 38.840216],\n              [-77.043849, 38.840231],\n              [-77.043821, 38.840242],\n              [-77.043795, 38.840253],\n              [-77.04377, 38.840268],\n              [-77.043746, 38.840285],\n              [-77.04372, 38.840303],\n              [-77.043692, 38.840319],\n              [-77.04367, 38.840334],\n              [-77.043634, 38.84037],\n              [-77.043614, 38.840391],\n              [-77.043596, 38.84041],\n              [-77.04358, 38.840431],\n              [-77.04356, 38.84045],\n              [-77.043523, 38.840487],\n              [-77.043503, 38.840504],\n              [-77.043477, 38.840519],\n              [-77.043453, 38.840534],\n              [-77.043434, 38.840551],\n              [-77.043408, 38.840566],\n              [-77.043385, 38.840558],\n              [-77.043388, 38.84053],\n              [-77.043401, 38.840514],\n              [-77.043403, 38.840492],\n              [-77.0434, 38.840473],\n              [-77.043388, 38.84045],\n              [-77.04337, 38.840416],\n              [-77.04336, 38.840398],\n              [-77.043347, 38.840381],\n              [-77.043338, 38.840362],\n              [-77.043334, 38.84034],\n              [-77.043326, 38.840319],\n              [-77.043294, 38.840289],\n              [-77.043287, 38.840269],\n              [-77.043283, 38.840244],\n              [-77.043283, 38.840222],\n              [-77.043289, 38.840204],\n              [-77.043295, 38.840167],\n              [-77.043287, 38.840148],\n              [-77.043273, 38.840131],\n              [-77.04326, 38.840111],\n              [-77.043246, 38.840094],\n              [-77.043235, 38.840074],\n              [-77.043229, 38.840049],\n              [-77.043223, 38.840029],\n              [-77.043211, 38.840013],\n              [-77.043195, 38.839996],\n              [-77.043177, 38.839976],\n              [-77.043156, 38.839957],\n              [-77.043137, 38.83994],\n              [-77.043124, 38.839923],\n              [-77.04312, 38.839904],\n              [-77.043117, 38.839881],\n              [-77.043108, 38.83986],\n              [-77.043095, 38.83984],\n              [-77.043081, 38.839819],\n              [-77.043067, 38.839803],\n              [-77.043011, 38.839771],\n              [-77.042989, 38.839763],\n              [-77.042962, 38.839753],\n              [-77.042934, 38.839742],\n              [-77.04291, 38.839736],\n              [-77.042882, 38.839728],\n              [-77.042858, 38.839721],\n              [-77.042833, 38.839713],\n              [-77.042806, 38.839703],\n              [-77.042778, 38.839695],\n              [-77.042748, 38.839689],\n              [-77.042714, 38.839685],\n              [-77.042686, 38.839679],\n              [-77.042663, 38.839673],\n              [-77.042636, 38.839668],\n              [-77.04261, 38.839664],\n              [-77.042583, 38.839662],\n              [-77.042558, 38.839658],\n              [-77.042529, 38.839654],\n              [-77.042499, 38.83965],\n              [-77.042473, 38.839647],\n              [-77.042441, 38.839645],\n              [-77.042411, 38.83964],\n              [-77.042382, 38.839636],\n              [-77.04235, 38.839633],\n              [-77.042321, 38.839629],\n              [-77.042298, 38.839625],\n              [-77.042269, 38.839618],\n              [-77.042238, 38.839615],\n              [-77.042213, 38.839611],\n              [-77.042184, 38.839607],\n              [-77.042154, 38.8396],\n              [-77.042127, 38.839595],\n              [-77.042104, 38.83959],\n              [-77.042077, 38.839585],\n              [-77.042049, 38.83958],\n              [-77.042022, 38.839575],\n              [-77.041993, 38.83957],\n              [-77.041965, 38.839566],\n              [-77.041939, 38.839562],\n              [-77.041914, 38.839557],\n              [-77.041886, 38.83955],\n              [-77.041862, 38.839546],\n              [-77.041838, 38.83954],\n              [-77.041812, 38.83953],\n              [-77.041786, 38.839524],\n              [-77.04176, 38.839522],\n              [-77.041736, 38.83952],\n              [-77.041681, 38.83952],\n              [-77.041655, 38.839521],\n              [-77.041625, 38.839522],\n              [-77.041596, 38.839521],\n              [-77.041572, 38.839523],\n              [-77.041545, 38.839524],\n              [-77.041516, 38.839526],\n              [-77.041491, 38.839528],\n              [-77.041457, 38.839528],\n              [-77.04143, 38.83953],\n              [-77.041404, 38.839531],\n              [-77.04138, 38.839533],\n              [-77.041351, 38.839537],\n              [-77.041326, 38.839539],\n              [-77.041301, 38.839542],\n              [-77.041276, 38.839544],\n              [-77.041252, 38.839547],\n              [-77.041227, 38.839549],\n              [-77.041203, 38.839553],\n              [-77.041178, 38.839559],\n              [-77.041154, 38.839568],\n              [-77.041134, 38.839578],\n              [-77.041111, 38.839596],\n              [-77.041094, 38.839616],\n              [-77.041054, 38.839622],\n              [-77.040943, 38.839585],\n              [-77.040919, 38.839566],\n              [-77.040898, 38.839546],\n              [-77.040873, 38.839531],\n              [-77.040795, 38.839504],\n              [-77.040771, 38.839494],\n              [-77.040739, 38.839487],\n              [-77.040708, 38.839476],\n              [-77.040685, 38.839464],\n              [-77.040637, 38.839443],\n              [-77.04061, 38.839429],\n              [-77.040584, 38.839419],\n              [-77.040558, 38.839411],\n              [-77.040536, 38.8394],\n              [-77.040508, 38.839388],\n              [-77.040479, 38.839381],\n              [-77.040456, 38.839374],\n              [-77.040396, 38.839349],\n              [-77.040382, 38.839331],\n              [-77.040321, 38.839327],\n              [-77.040296, 38.839329],\n              [-77.0402, 38.839319],\n              [-77.040177, 38.839314],\n              [-77.040152, 38.83931],\n              [-77.040129, 38.839301],\n              [-77.039977, 38.839285],\n              [-77.039953, 38.839286],\n              [-77.039887, 38.839291],\n              [-77.039827, 38.839287],\n              [-77.039792, 38.839289],\n              [-77.039762, 38.839288],\n              [-77.039709, 38.839283],\n              [-77.03967, 38.839284],\n              [-77.039619, 38.839288],\n              [-77.039593, 38.839292],\n              [-77.039516, 38.839295],\n              [-77.039467, 38.839295],\n              [-77.03941, 38.839293],\n              [-77.039354, 38.839289],\n              [-77.039267, 38.839278],\n              [-77.039201, 38.839274],\n              [-77.039177, 38.839275],\n              [-77.039127, 38.83927],\n              [-77.039094, 38.839269],\n              [-77.039031, 38.839263],\n              [-77.038998, 38.839261],\n              [-77.038968, 38.839258],\n              [-77.038937, 38.839256],\n              [-77.038905, 38.839256],\n              [-77.038665, 38.839273],\n              [-77.038636, 38.839267],\n              [-77.038603, 38.839264],\n              [-77.038551, 38.83927],\n              [-77.03846, 38.839279],\n              [-77.038385, 38.839285],\n              [-77.038358, 38.839288],\n              [-77.038272, 38.839294],\n              [-77.038208, 38.839304],\n              [-77.038181, 38.839299],\n              [-77.038157, 38.839286],\n              [-77.038113, 38.839282],\n              [-77.038059, 38.839288],\n              [-77.03803, 38.839293],\n              [-77.037973, 38.8393],\n              [-77.037918, 38.839309],\n              [-77.037829, 38.839318],\n              [-77.037783, 38.839321],\n              [-77.037722, 38.839328],\n              [-77.037632, 38.839336],\n              [-77.03757, 38.83934],\n              [-77.03754, 38.839341],\n              [-77.037487, 38.839345],\n              [-77.037436, 38.839353],\n              [-77.03742, 38.839367],\n              [-77.037401, 38.839382],\n              [-77.037317, 38.839376],\n              [-77.037285, 38.839375],\n              [-77.037219, 38.839376],\n              [-77.037045, 38.839388],\n              [-77.03697, 38.839394],\n              [-77.036806, 38.839413],\n              [-77.036781, 38.839421],\n              [-77.036757, 38.839432],\n              [-77.036735, 38.839448],\n              [-77.036698, 38.839482],\n              [-77.036658, 38.839513],\n              [-77.036634, 38.839537],\n              [-77.036635, 38.83956],\n              [-77.036618, 38.839579],\n              [-77.036585, 38.839581],\n              [-77.036551, 38.839572],\n              [-77.036512, 38.839566],\n              [-77.036481, 38.83956],\n              [-77.036434, 38.839556],\n              [-77.036353, 38.839556],\n              [-77.036322, 38.839554],\n              [-77.036265, 38.839556],\n              [-77.036205, 38.839563],\n              [-77.036176, 38.839568],\n              [-77.036119, 38.839586],\n              [-77.036091, 38.839594],\n              [-77.036061, 38.839605],\n              [-77.036037, 38.839617],\n              [-77.036013, 38.839632],\n              [-77.035985, 38.839646],\n              [-77.03596, 38.839661],\n              [-77.035933, 38.839675],\n              [-77.035904, 38.839687],\n              [-77.035877, 38.839695],\n              [-77.03582, 38.83971],\n              [-77.035794, 38.839718],\n              [-77.035768, 38.839724],\n              [-77.035742, 38.839734],\n              [-77.03572, 38.839747],\n              [-77.035675, 38.83976],\n              [-77.035652, 38.839762],\n              [-77.035614, 38.839756],\n              [-77.035573, 38.839751],\n              [-77.035527, 38.839756],\n              [-77.035503, 38.839762],\n              [-77.035479, 38.83977],\n              [-77.035431, 38.839791],\n              [-77.035376, 38.839809],\n              [-77.035301, 38.839846],\n              [-77.035278, 38.839856],\n              [-77.035227, 38.839874],\n              [-77.035203, 38.839881],\n              [-77.035151, 38.839891],\n              [-77.035125, 38.839901],\n              [-77.035039, 38.839944],\n              [-77.035008, 38.839956],\n              [-77.034974, 38.839966],\n              [-77.034873, 38.839989],\n              [-77.034842, 38.839998],\n              [-77.03481, 38.840009],\n              [-77.03478, 38.840018],\n              [-77.034695, 38.840035],\n              [-77.03467, 38.840042],\n              [-77.034646, 38.840052],\n              [-77.034626, 38.840068],\n              [-77.034595, 38.840109],\n              [-77.034582, 38.840128],\n              [-77.034572, 38.840149],\n              [-77.034556, 38.840191],\n              [-77.034553, 38.840212],\n              [-77.034551, 38.840257],\n              [-77.034551, 38.840277],\n              [-77.034555, 38.840322],\n              [-77.034552, 38.840366],\n              [-77.034545, 38.840409],\n              [-77.034543, 38.84046],\n              [-77.034543, 38.840481],\n              [-77.034552, 38.840581],\n              [-77.034554, 38.84063],\n              [-77.03456, 38.840724],\n              [-77.034557, 38.840765],\n              [-77.034552, 38.840787],\n              [-77.034545, 38.840807],\n              [-77.034533, 38.840823],\n              [-77.034518, 38.840839],\n              [-77.034502, 38.840852],\n              [-77.034427, 38.840881],\n              [-77.034387, 38.840892],\n              [-77.034354, 38.840896],\n              [-77.034289, 38.840885],\n              [-77.034258, 38.840883],\n              [-77.034232, 38.84089],\n              [-77.034214, 38.840877],\n              [-77.034212, 38.840904],\n              [-77.034201, 38.840926],\n              [-77.034195, 38.840945],\n              [-77.034196, 38.840965],\n              [-77.03421, 38.840991],\n              [-77.034254, 38.841043],\n              [-77.034268, 38.841074],\n              [-77.034277, 38.8411],\n              [-77.034281, 38.841129],\n              [-77.034277, 38.841155],\n              [-77.034268, 38.841177],\n              [-77.034253, 38.841196],\n              [-77.034235, 38.841212],\n              [-77.034214, 38.84122],\n              [-77.034187, 38.841237],\n              [-77.034173, 38.841261],\n              [-77.03416, 38.841325],\n              [-77.034145, 38.841408],\n              [-77.034142, 38.841437],\n              [-77.034135, 38.841489],\n              [-77.034131, 38.841557],\n              [-77.034132, 38.841576],\n              [-77.034138, 38.841596],\n              [-77.034109, 38.84161],\n              [-77.034078, 38.841621],\n              [-77.03405, 38.841638],\n              [-77.034032, 38.841661],\n              [-77.034019, 38.841698],\n              [-77.034014, 38.841718],\n              [-77.034012, 38.84174],\n              [-77.034014, 38.841765],\n              [-77.034016, 38.841787],\n              [-77.034018, 38.84181],\n              [-77.034018, 38.841836],\n              [-77.034015, 38.841858],\n              [-77.034011, 38.841882],\n              [-77.034006, 38.841908],\n              [-77.033999, 38.841929],\n              [-77.033995, 38.841953],\n              [-77.033992, 38.841979],\n              [-77.033989, 38.842003],\n              [-77.033985, 38.842053],\n              [-77.033984, 38.842076],\n              [-77.033982, 38.842102],\n              [-77.03398, 38.842125],\n              [-77.033977, 38.842149],\n              [-77.033975, 38.842175],\n              [-77.033972, 38.842198],\n              [-77.033966, 38.842246],\n              [-77.033963, 38.842268],\n              [-77.033961, 38.84229],\n              [-77.03396, 38.842313],\n              [-77.033956, 38.842357],\n              [-77.033956, 38.84238],\n              [-77.033957, 38.842402],\n              [-77.033957, 38.842445],\n              [-77.033955, 38.842466],\n              [-77.033949, 38.842508],\n              [-77.033947, 38.842527],\n              [-77.033945, 38.842556],\n              [-77.033946, 38.842581],\n              [-77.033948, 38.8426],\n              [-77.033948, 38.842622],\n              [-77.033945, 38.842654],\n              [-77.033936, 38.842685],\n              [-77.033927, 38.842719],\n              [-77.033922, 38.842753],\n              [-77.033915, 38.842785],\n              [-77.033904, 38.842818],\n              [-77.033889, 38.84285],\n              [-77.033872, 38.842882],\n              [-77.033856, 38.842918],\n              [-77.033849, 38.842936],\n              [-77.033833, 38.842972],\n              [-77.033823, 38.842989],\n              [-77.03381, 38.843004],\n              [-77.033796, 38.84302],\n              [-77.033784, 38.843036],\n              [-77.033751, 38.843084],\n              [-77.033742, 38.843103],\n              [-77.033731, 38.843122],\n              [-77.03372, 38.843142],\n              [-77.03371, 38.843162],\n              [-77.033694, 38.843202],\n              [-77.033685, 38.843223],\n              [-77.033678, 38.843243],\n              [-77.033672, 38.843264],\n              [-77.033664, 38.843286],\n              [-77.033654, 38.843308],\n              [-77.033645, 38.843328],\n              [-77.033637, 38.843349],\n              [-77.033625, 38.84337],\n              [-77.033613, 38.843392],\n              [-77.033602, 38.843414],\n              [-77.033591, 38.843437],\n              [-77.033577, 38.84346],\n              [-77.033543, 38.843502],\n              [-77.033528, 38.843524],\n              [-77.033515, 38.843545],\n              [-77.033507, 38.843566],\n              [-77.0335, 38.843588],\n              [-77.033497, 38.843609],\n              [-77.033492, 38.84363],\n              [-77.033483, 38.843652],\n              [-77.033472, 38.843675],\n              [-77.033458, 38.843696],\n              [-77.033445, 38.843717],\n              [-77.033435, 38.843738],\n              [-77.033424, 38.843759],\n              [-77.033413, 38.843781],\n              [-77.033403, 38.843804],\n              [-77.033392, 38.843827],\n              [-77.033372, 38.843875],\n              [-77.033364, 38.843897],\n              [-77.033357, 38.84392],\n              [-77.033348, 38.843943],\n              [-77.033338, 38.843967],\n              [-77.033328, 38.84399],\n              [-77.033317, 38.844012],\n              [-77.033308, 38.844034],\n              [-77.033298, 38.844056],\n              [-77.033292, 38.844079],\n              [-77.033286, 38.844101],\n              [-77.033278, 38.844123],\n              [-77.033269, 38.844147],\n              [-77.03326, 38.844169],\n              [-77.03325, 38.844192],\n              [-77.033238, 38.844216],\n              [-77.033224, 38.844239],\n              [-77.033209, 38.844262],\n              [-77.033195, 38.844284],\n              [-77.033184, 38.844305],\n              [-77.033175, 38.844326],\n              [-77.033169, 38.844347],\n              [-77.033162, 38.844369],\n              [-77.033158, 38.844391],\n              [-77.033161, 38.844409],\n              [-77.033132, 38.84449],\n              [-77.033105, 38.844503],\n              [-77.033081, 38.844524],\n              [-77.033068, 38.844557],\n              [-77.033066, 38.844578],\n              [-77.033065, 38.844598],\n              [-77.033064, 38.84462],\n              [-77.033059, 38.844642],\n              [-77.033053, 38.844664],\n              [-77.033044, 38.844685],\n              [-77.033035, 38.844707],\n              [-77.033029, 38.84473],\n              [-77.033023, 38.844752],\n              [-77.033019, 38.844774],\n              [-77.033015, 38.844799],\n              [-77.033009, 38.844849],\n              [-77.033004, 38.844874],\n              [-77.032998, 38.844898],\n              [-77.032992, 38.844925],\n              [-77.032987, 38.84495],\n              [-77.032981, 38.844975],\n              [-77.032975, 38.845002],\n              [-77.032968, 38.845028],\n              [-77.03296, 38.845054],\n              [-77.032956, 38.84508],\n              [-77.032952, 38.845103],\n              [-77.032946, 38.845153],\n              [-77.032941, 38.845178],\n              [-77.032936, 38.845205],\n              [-77.03293, 38.845231],\n              [-77.032921, 38.845256],\n              [-77.032912, 38.845282],\n              [-77.032905, 38.845304],\n              [-77.032896, 38.845327],\n              [-77.032888, 38.845352],\n              [-77.032882, 38.845377],\n              [-77.032877, 38.845403],\n              [-77.032873, 38.845429],\n              [-77.032869, 38.845454],\n              [-77.032865, 38.845481],\n              [-77.032859, 38.845507],\n              [-77.032855, 38.845526],\n              [-77.032851, 38.845555],\n              [-77.032848, 38.845574],\n              [-77.032843, 38.845594],\n              [-77.032836, 38.845614],\n              [-77.03283, 38.845635],\n              [-77.032826, 38.845656],\n              [-77.032824, 38.845681],\n              [-77.032821, 38.845705],\n              [-77.032816, 38.845729],\n              [-77.032811, 38.845752],\n              [-77.032808, 38.845773],\n              [-77.032806, 38.845792],\n              [-77.03281, 38.84582],\n              [-77.032798, 38.845864],\n              [-77.032781, 38.845891],\n              [-77.032775, 38.845925],\n              [-77.032773, 38.845944],\n              [-77.032763, 38.845984],\n              [-77.032757, 38.846003],\n              [-77.03275, 38.846024],\n              [-77.032734, 38.846066],\n              [-77.032728, 38.846087],\n              [-77.032724, 38.846109],\n              [-77.032719, 38.84613],\n              [-77.032711, 38.846168],\n              [-77.032706, 38.846187],\n              [-77.0327, 38.846205],\n              [-77.032695, 38.846223],\n              [-77.032689, 38.846241],\n              [-77.032684, 38.84626],\n              [-77.032679, 38.84628],\n              [-77.032671, 38.846322],\n              [-77.032667, 38.846342],\n              [-77.032663, 38.846363],\n              [-77.032658, 38.846388],\n              [-77.03265, 38.846417],\n              [-77.032644, 38.846438],\n              [-77.032636, 38.84648],\n              [-77.032629, 38.846502],\n              [-77.032622, 38.846526],\n              [-77.032617, 38.846551],\n              [-77.032611, 38.846576],\n              [-77.032607, 38.846603],\n              [-77.032601, 38.846628],\n              [-77.032594, 38.846656],\n              [-77.032587, 38.846681],\n              [-77.032579, 38.846709],\n              [-77.032572, 38.846735],\n              [-77.032563, 38.846758],\n              [-77.032553, 38.846784],\n              [-77.032545, 38.846809],\n              [-77.032538, 38.846835],\n              [-77.032532, 38.846863],\n              [-77.032529, 38.84689],\n              [-77.032527, 38.846917],\n              [-77.032525, 38.846943],\n              [-77.032522, 38.84697],\n              [-77.032519, 38.846996],\n              [-77.032515, 38.84702],\n              [-77.03251, 38.847045],\n              [-77.032502, 38.847071],\n              [-77.032495, 38.847097],\n              [-77.032488, 38.847122],\n              [-77.032482, 38.847149],\n              [-77.032478, 38.847176],\n              [-77.032477, 38.847202],\n              [-77.032475, 38.847226],\n              [-77.032467, 38.847274],\n              [-77.032462, 38.847296],\n              [-77.032457, 38.847317],\n              [-77.032452, 38.847337],\n              [-77.032449, 38.847358],\n              [-77.032445, 38.847378],\n              [-77.032442, 38.8474],\n              [-77.032438, 38.84742],\n              [-77.032427, 38.847451],\n              [-77.032416, 38.847474],\n              [-77.032418, 38.847497],\n              [-77.032415, 38.847524],\n              [-77.032408, 38.847549],\n              [-77.032396, 38.84757],\n              [-77.032392, 38.847601],\n              [-77.032392, 38.847622],\n              [-77.032391, 38.847644],\n              [-77.032388, 38.847668],\n              [-77.032384, 38.847718],\n              [-77.032383, 38.847744],\n              [-77.03238, 38.847769],\n              [-77.032376, 38.847821],\n              [-77.032375, 38.847847],\n              [-77.032373, 38.847873],\n              [-77.032269, 38.848024],\n              [-77.032303, 38.848144],\n              [-77.032297, 38.848196],\n              [-77.032296, 38.848214],\n              [-77.032298, 38.848233],\n              [-77.0323, 38.848254],\n              [-77.032301, 38.848275],\n              [-77.032302, 38.848295],\n              [-77.032305, 38.848314],\n              [-77.032306, 38.848334],\n              [-77.032308, 38.848357],\n              [-77.032309, 38.848379],\n              [-77.03231, 38.848409],\n              [-77.032311, 38.848427],\n              [-77.032311, 38.848445],\n              [-77.03231, 38.848464],\n              [-77.03231, 38.848505],\n              [-77.032305, 38.848533],\n              [-77.032304, 38.848602],\n              [-77.032299, 38.848702],\n              [-77.032294, 38.848797],\n              [-77.032294, 38.848816],\n              [-77.032293, 38.848839],\n              [-77.032292, 38.848864],\n              [-77.03229, 38.84889],\n              [-77.032289, 38.848919],\n              [-77.032288, 38.848949],\n              [-77.032288, 38.84898],\n              [-77.032286, 38.849012],\n              [-77.032283, 38.849044],\n              [-77.032281, 38.849077],\n              [-77.03228, 38.849111],\n              [-77.03228, 38.849146],\n              [-77.032279, 38.849182],\n              [-77.032275, 38.849249],\n              [-77.032276, 38.849277],\n              [-77.032275, 38.849301],\n              [-77.032273, 38.849328],\n              [-77.032271, 38.849353],\n              [-77.032271, 38.849432],\n              [-77.032272, 38.849457],\n              [-77.032271, 38.849475],\n              [-77.032269, 38.849515],\n              [-77.032267, 38.849534],\n              [-77.032266, 38.849556],\n              [-77.032265, 38.84958],\n              [-77.032261, 38.84963],\n              [-77.032257, 38.849656],\n              [-77.032251, 38.849684],\n              [-77.032247, 38.849713],\n              [-77.032244, 38.849742],\n              [-77.03224, 38.849771],\n              [-77.032235, 38.849801],\n              [-77.03223, 38.849826],\n              [-77.032223, 38.849849],\n              [-77.032214, 38.84987],\n              [-77.032202, 38.849888],\n              [-77.032188, 38.850082],\n              [-77.032198, 38.850104],\n              [-77.032145, 38.850295],\n              [-77.032149, 38.850321],\n              [-77.032153, 38.850348],\n              [-77.032156, 38.850374],\n              [-77.03216, 38.850402],\n              [-77.032165, 38.85043],\n              [-77.032169, 38.850459],\n              [-77.032173, 38.850489],\n              [-77.032178, 38.850517],\n              [-77.032183, 38.850548],\n              [-77.032188, 38.850578],\n              [-77.032204, 38.850702],\n              [-77.032213, 38.850795],\n              [-77.032215, 38.850825],\n              [-77.032216, 38.850855],\n              [-77.032218, 38.850876],\n              [-77.032222, 38.850908],\n              [-77.032224, 38.850934],\n              [-77.032225, 38.850962],\n              [-77.032224, 38.850992],\n              [-77.032222, 38.851023],\n              [-77.03222, 38.851055],\n              [-77.03222, 38.851086],\n              [-77.032219, 38.851116],\n              [-77.032218, 38.851147],\n              [-77.032218, 38.851178],\n              [-77.032222, 38.851238],\n              [-77.03222, 38.851268],\n              [-77.032216, 38.8513],\n              [-77.032211, 38.851333],\n              [-77.032206, 38.851364],\n              [-77.032202, 38.851396],\n              [-77.0322, 38.851427],\n              [-77.0322, 38.851458],\n              [-77.032201, 38.85149],\n              [-77.032204, 38.851521],\n              [-77.032208, 38.851583],\n              [-77.03221, 38.851616],\n              [-77.032211, 38.851648],\n              [-77.032213, 38.85168],\n              [-77.032216, 38.85171],\n              [-77.032221, 38.851739],\n              [-77.032225, 38.85177],\n              [-77.032231, 38.851802],\n              [-77.032237, 38.851828],\n              [-77.032243, 38.851853],\n              [-77.03225, 38.851878],\n              [-77.032254, 38.851903],\n              [-77.032259, 38.851931],\n              [-77.032264, 38.851961],\n              [-77.032271, 38.851993],\n              [-77.032275, 38.852026],\n              [-77.03228, 38.852059],\n              [-77.032283, 38.852092],\n              [-77.032285, 38.852122],\n              [-77.032285, 38.852153],\n              [-77.032281, 38.85218],\n              [-77.032275, 38.852206],\n              [-77.032269, 38.85223],\n              [-77.032264, 38.852253],\n              [-77.032265, 38.852278],\n              [-77.032267, 38.852302],\n              [-77.032271, 38.852326],\n              [-77.032281, 38.852351],\n              [-77.032295, 38.852374],\n              [-77.032309, 38.852399],\n              [-77.032321, 38.852424],\n              [-77.032329, 38.852452],\n              [-77.032338, 38.852481],\n              [-77.032347, 38.852511],\n              [-77.032357, 38.852541],\n              [-77.032368, 38.85257],\n              [-77.032377, 38.852602],\n              [-77.032386, 38.852633],\n              [-77.032395, 38.852665],\n              [-77.032405, 38.852697],\n              [-77.032414, 38.852727],\n              [-77.032422, 38.852759],\n              [-77.032431, 38.85279],\n              [-77.032441, 38.852822],\n              [-77.032451, 38.852853],\n              [-77.032459, 38.852886],\n              [-77.032465, 38.852917],\n              [-77.032479, 38.852983],\n              [-77.032485, 38.853017],\n              [-77.032495, 38.853085],\n              [-77.032505, 38.853151],\n              [-77.032512, 38.853183],\n              [-77.032519, 38.853217],\n              [-77.032525, 38.85325],\n              [-77.03253, 38.853282],\n              [-77.032536, 38.853314],\n              [-77.032541, 38.853348],\n              [-77.032546, 38.85338],\n              [-77.032552, 38.85341],\n              [-77.032562, 38.853468],\n              [-77.032567, 38.853496],\n              [-77.032572, 38.853525],\n              [-77.032578, 38.853553],\n              [-77.032587, 38.85358],\n              [-77.032596, 38.853606],\n              [-77.032604, 38.853635],\n              [-77.032618, 38.853695],\n              [-77.032624, 38.853725],\n              [-77.032631, 38.853754],\n              [-77.032637, 38.853781],\n              [-77.032643, 38.853809],\n              [-77.032648, 38.853835],\n              [-77.032654, 38.853859],\n              [-77.032657, 38.853879],\n              [-77.03266, 38.853901],\n              [-77.032665, 38.853934],\n              [-77.032668, 38.853955],\n              [-77.03267, 38.85398],\n              [-77.032666, 38.854006],\n              [-77.032661, 38.854031],\n              [-77.032657, 38.854054],\n              [-77.032656, 38.854079],\n              [-77.032661, 38.854104],\n              [-77.032669, 38.854131],\n              [-77.032677, 38.854157],\n              [-77.032683, 38.854185],\n              [-77.032688, 38.854213],\n              [-77.032694, 38.854241],\n              [-77.032699, 38.854269],\n              [-77.032706, 38.854294],\n              [-77.032724, 38.854346],\n              [-77.032734, 38.854372],\n              [-77.032745, 38.854399],\n              [-77.032754, 38.854427],\n              [-77.032761, 38.854451],\n              [-77.032767, 38.85447],\n              [-77.032773, 38.85449],\n              [-77.032777, 38.854508],\n              [-77.032791, 38.854554],\n              [-77.032805, 38.854606],\n              [-77.032811, 38.854633],\n              [-77.032818, 38.854659],\n              [-77.032824, 38.854685],\n              [-77.03283, 38.854709],\n              [-77.032835, 38.854733],\n              [-77.032843, 38.854783],\n              [-77.032845, 38.854807],\n              [-77.032843, 38.854831],\n              [-77.032838, 38.854856],\n              [-77.032835, 38.854883],\n              [-77.032834, 38.854909],\n              [-77.032836, 38.854936],\n              [-77.032838, 38.85499],\n              [-77.032841, 38.855014],\n              [-77.032845, 38.855035],\n              [-77.032851, 38.855053],\n              [-77.032865, 38.855085],\n              [-77.032879, 38.855108],\n              [-77.032894, 38.85514],\n              [-77.032937, 38.855233],\n              [-77.03295, 38.855256],\n              [-77.032969, 38.855284],\n              [-77.03298, 38.8553],\n              [-77.03299, 38.855319],\n              [-77.033002, 38.85534],\n              [-77.033013, 38.855359],\n              [-77.033033, 38.855395],\n              [-77.033043, 38.855414],\n              [-77.033053, 38.855435],\n              [-77.033066, 38.855455],\n              [-77.033081, 38.855473],\n              [-77.033093, 38.855493],\n              [-77.033102, 38.855516],\n              [-77.033112, 38.855537],\n              [-77.033122, 38.855557],\n              [-77.033133, 38.855578],\n              [-77.033144, 38.855601],\n              [-77.033155, 38.855622],\n              [-77.033167, 38.855643],\n              [-77.033181, 38.855664],\n              [-77.033194, 38.855688],\n              [-77.033205, 38.85571],\n              [-77.033217, 38.85573],\n              [-77.033231, 38.855752],\n              [-77.033244, 38.855776],\n              [-77.033259, 38.855797],\n              [-77.033276, 38.855815],\n              [-77.033291, 38.855833],\n              [-77.033303, 38.855855],\n              [-77.033313, 38.855877],\n              [-77.033323, 38.855897],\n              [-77.033335, 38.855917],\n              [-77.033365, 38.855961],\n              [-77.033377, 38.855981],\n              [-77.033388, 38.856002],\n              [-77.0334, 38.856025],\n              [-77.033411, 38.856048],\n              [-77.033421, 38.856067],\n              [-77.033431, 38.856087],\n              [-77.033442, 38.85611],\n              [-77.033452, 38.856133],\n              [-77.033462, 38.856153],\n              [-77.033473, 38.856173],\n              [-77.033486, 38.856196],\n              [-77.033501, 38.856219],\n              [-77.033513, 38.85624],\n              [-77.033525, 38.85626],\n              [-77.033536, 38.856284],\n              [-77.033547, 38.856307],\n              [-77.033558, 38.856328],\n              [-77.033566, 38.856348],\n              [-77.033575, 38.856371],\n              [-77.033585, 38.856393],\n              [-77.033605, 38.856433],\n              [-77.033615, 38.856455],\n              [-77.033628, 38.856477],\n              [-77.033642, 38.856496],\n              [-77.033659, 38.856516],\n              [-77.033673, 38.856538],\n              [-77.033685, 38.856561],\n              [-77.033697, 38.85658],\n              [-77.03371, 38.856599],\n              [-77.033722, 38.856619],\n              [-77.033734, 38.856643],\n              [-77.033744, 38.856664],\n              [-77.033755, 38.856683],\n              [-77.033767, 38.856706],\n              [-77.033782, 38.856729],\n              [-77.033795, 38.85675],\n              [-77.033805, 38.85677],\n              [-77.033814, 38.856794],\n              [-77.033824, 38.856818],\n              [-77.033842, 38.856856],\n              [-77.033853, 38.856877],\n              [-77.033865, 38.856898],\n              [-77.033876, 38.856919],\n              [-77.033887, 38.856938],\n              [-77.033899, 38.856957],\n              [-77.033911, 38.856979],\n              [-77.033921, 38.857001],\n              [-77.033931, 38.857022],\n              [-77.033943, 38.857043],\n              [-77.033969, 38.857087],\n              [-77.033981, 38.857108],\n              [-77.033994, 38.857128],\n              [-77.034006, 38.85715],\n              [-77.034017, 38.85717],\n              [-77.034025, 38.85719],\n              [-77.034034, 38.857209],\n              [-77.034043, 38.857231],\n              [-77.034052, 38.857254],\n              [-77.034062, 38.857275],\n              [-77.034072, 38.857295],\n              [-77.034082, 38.857317],\n              [-77.034089, 38.85734],\n              [-77.034093, 38.857361],\n              [-77.034097, 38.857381],\n              [-77.034103, 38.857404],\n              [-77.034112, 38.857428],\n              [-77.034119, 38.857446],\n              [-77.034124, 38.857465],\n              [-77.034128, 38.857487],\n              [-77.034132, 38.857511],\n              [-77.034137, 38.857533],\n              [-77.034141, 38.857552],\n              [-77.034146, 38.857572],\n              [-77.03415, 38.857592],\n              [-77.034155, 38.857611],\n              [-77.034157, 38.857632],\n              [-77.034161, 38.85766],\n              [-77.034172, 38.857688],\n              [-77.034199, 38.857715],\n              [-77.034219, 38.857744],\n              [-77.03423, 38.857762],\n              [-77.034242, 38.857778],\n              [-77.034267, 38.857808],\n              [-77.034281, 38.857823],\n              [-77.034297, 38.857839],\n              [-77.034315, 38.857855],\n              [-77.03433, 38.857871],\n              [-77.034359, 38.857897],\n              [-77.034374, 38.857911],\n              [-77.034389, 38.857928],\n              [-77.034405, 38.857944],\n              [-77.034419, 38.857959],\n              [-77.034432, 38.857974],\n              [-77.034444, 38.85799],\n              [-77.034455, 38.858008],\n              [-77.034464, 38.858027],\n              [-77.034482, 38.858057],\n              [-77.034491, 38.858074],\n              [-77.034504, 38.858091],\n              [-77.034516, 38.858112],\n              [-77.034526, 38.858131],\n              [-77.034546, 38.858161],\n              [-77.034557, 38.858179],\n              [-77.03457, 38.858198],\n              [-77.034588, 38.858229],\n              [-77.0346, 38.858266],\n              [-77.034607, 38.858287],\n              [-77.034616, 38.858304],\n              [-77.034635, 38.858335],\n              [-77.034644, 38.858354],\n              [-77.034653, 38.858372],\n              [-77.034661, 38.858389],\n              [-77.03468, 38.858422],\n              [-77.03469, 38.858441],\n              [-77.0347, 38.858463],\n              [-77.034709, 38.85848],\n              [-77.034727, 38.858512],\n              [-77.034737, 38.858531],\n              [-77.034746, 38.858551],\n              [-77.034755, 38.858568],\n              [-77.034774, 38.858601],\n              [-77.034782, 38.858622],\n              [-77.03479, 38.858641],\n              [-77.034798, 38.858658],\n              [-77.034819, 38.858692],\n              [-77.034828, 38.858711],\n              [-77.034836, 38.85873],\n              [-77.034851, 38.858762],\n              [-77.03486, 38.85878],\n              [-77.034869, 38.858801],\n              [-77.034878, 38.858818],\n              [-77.034895, 38.858847],\n              [-77.034903, 38.858864],\n              [-77.03491, 38.858884],\n              [-77.034918, 38.858903],\n              [-77.034935, 38.858933],\n              [-77.034951, 38.858969],\n              [-77.03496, 38.858987],\n              [-77.034977, 38.859017],\n              [-77.034986, 38.859034],\n              [-77.034994, 38.859052],\n              [-77.035001, 38.85907],\n              [-77.035013, 38.859102],\n              [-77.035019, 38.85912],\n              [-77.035025, 38.859139],\n              [-77.035032, 38.859157],\n              [-77.035044, 38.859186],\n              [-77.03505, 38.859223],\n              [-77.035051, 38.859243],\n              [-77.035054, 38.859274],\n              [-77.035057, 38.859307],\n              [-77.03506, 38.859325],\n              [-77.035067, 38.859356],\n              [-77.035086, 38.859384],\n              [-77.035102, 38.859399],\n              [-77.035118, 38.859416],\n              [-77.035132, 38.859432],\n              [-77.035156, 38.85946],\n              [-77.035168, 38.859476],\n              [-77.035182, 38.859492],\n              [-77.035206, 38.85952],\n              [-77.035228, 38.85955],\n              [-77.035239, 38.859568],\n              [-77.035252, 38.859584],\n              [-77.035275, 38.859611],\n              [-77.035298, 38.859643],\n              [-77.03531, 38.859662],\n              [-77.035321, 38.859678],\n              [-77.035334, 38.859693],\n              [-77.035361, 38.859723],\n              [-77.035376, 38.859741],\n              [-77.035389, 38.859757],\n              [-77.035414, 38.859781],\n              [-77.035442, 38.859802],\n              [-77.035477, 38.859824],\n              [-77.035515, 38.859842],\n              [-77.03555, 38.859861],\n              [-77.035583, 38.859881],\n              [-77.035616, 38.859903],\n              [-77.035647, 38.859925],\n              [-77.035679, 38.859946],\n              [-77.035695, 38.85996],\n              [-77.035714, 38.859973],\n              [-77.035731, 38.859987],\n              [-77.035746, 38.860001],\n              [-77.035762, 38.860014],\n              [-77.035793, 38.860039],\n              [-77.035809, 38.860054],\n              [-77.035839, 38.860082],\n              [-77.035869, 38.860106],\n              [-77.035897, 38.860135],\n              [-77.035912, 38.860151],\n              [-77.035927, 38.860166],\n              [-77.035946, 38.860182],\n              [-77.035965, 38.860202],\n              [-77.035986, 38.860223],\n              [-77.036012, 38.860245],\n              [-77.036037, 38.860271],\n              [-77.036063, 38.860295],\n              [-77.036089, 38.860316],\n              [-77.036116, 38.860338],\n              [-77.036147, 38.860362],\n              [-77.036177, 38.860385],\n              [-77.036207, 38.860404],\n              [-77.036263, 38.86045],\n              [-77.036293, 38.860473],\n              [-77.036323, 38.860497],\n              [-77.03634, 38.86051],\n              [-77.03637, 38.860533],\n              [-77.036402, 38.860556],\n              [-77.036433, 38.86058],\n              [-77.036467, 38.860602],\n              [-77.036498, 38.860623],\n              [-77.036527, 38.860645],\n              [-77.036558, 38.860667],\n              [-77.03659, 38.860691],\n              [-77.036619, 38.860714],\n              [-77.036649, 38.860735],\n              [-77.036665, 38.860749],\n              [-77.036693, 38.860776],\n              [-77.036723, 38.860801],\n              [-77.036751, 38.860827],\n              [-77.036776, 38.860855],\n              [-77.036797, 38.860884],\n              [-77.036817, 38.860913],\n              [-77.036831, 38.860943],\n              [-77.036842, 38.860968],\n              [-77.036845, 38.860994],\n              [-77.036846, 38.861017],\n              [-77.036832, 38.861033],\n              [-77.036808, 38.861047],\n              [-77.036787, 38.86106],\n              [-77.036781, 38.861082],\n              [-77.036787, 38.861105],\n              [-77.036807, 38.861119],\n              [-77.036835, 38.86113],\n              [-77.036866, 38.861143],\n              [-77.0369, 38.861151],\n              [-77.036939, 38.861157],\n              [-77.036976, 38.861163],\n              [-77.037015, 38.861166],\n              [-77.037059, 38.861167],\n              [-77.0371, 38.861167],\n              [-77.037141, 38.861165],\n              [-77.037183, 38.861163],\n              [-77.037223, 38.861163],\n              [-77.037261, 38.86116],\n              [-77.037303, 38.861156],\n              [-77.037338, 38.861154],\n              [-77.037374, 38.861155],\n              [-77.037405, 38.86116],\n              [-77.037432, 38.861168],\n              [-77.037462, 38.861177],\n              [-77.037488, 38.861189],\n              [-77.037515, 38.861209],\n              [-77.037545, 38.861231],\n              [-77.037566, 38.861249],\n              [-77.037587, 38.861273],\n              [-77.037606, 38.861302],\n              [-77.037622, 38.861326],\n              [-77.037633, 38.861345],\n              [-77.037635, 38.861369],\n              [-77.037635, 38.861392],\n              [-77.037637, 38.861418],\n              [-77.03764, 38.861443],\n              [-77.037649, 38.861471],\n              [-77.037661, 38.861498],\n              [-77.037673, 38.861532],\n              [-77.037685, 38.861563],\n              [-77.037697, 38.861588],\n              [-77.0377, 38.861608],\n              [-77.03769, 38.861625],\n              [-77.037681, 38.861648],\n              [-77.037691, 38.861671],\n              [-77.037717, 38.861678],\n              [-77.037734, 38.861699],\n              [-77.037744, 38.86173],\n              [-77.03775, 38.861749],\n              [-77.037756, 38.861767],\n              [-77.037768, 38.861802],\n              [-77.037774, 38.86182],\n              [-77.037779, 38.861839],\n              [-77.037784, 38.861857],\n              [-77.037794, 38.86189],\n              [-77.037805, 38.861924],\n              [-77.037813, 38.861956],\n              [-77.03782, 38.861989],\n              [-77.037825, 38.862008],\n              [-77.037828, 38.862026],\n              [-77.037834, 38.862057],\n              [-77.037842, 38.862091],\n              [-77.03785, 38.862124],\n              [-77.037856, 38.862156],\n              [-77.03786, 38.862174],\n              [-77.037863, 38.862192],\n              [-77.037868, 38.862225],\n              [-77.037872, 38.86226],\n              [-77.037875, 38.862279],\n              [-77.037878, 38.862297],\n              [-77.03788, 38.862315],\n              [-77.037885, 38.86235],\n              [-77.037887, 38.862368],\n              [-77.037891, 38.8624],\n              [-77.037895, 38.862435],\n              [-77.037898, 38.862455],\n              [-77.037901, 38.862473],\n              [-77.037905, 38.862505],\n              [-77.037908, 38.862523],\n              [-77.03791, 38.862543],\n              [-77.037917, 38.862576],\n              [-77.037922, 38.862611],\n              [-77.03793, 38.862645],\n              [-77.037937, 38.862675],\n              [-77.037946, 38.86271],\n              [-77.037954, 38.862742],\n              [-77.037962, 38.862771],\n              [-77.037966, 38.862806],\n              [-77.037966, 38.862836],\n              [-77.037969, 38.862865],\n              [-77.037973, 38.862898],\n              [-77.037978, 38.862928],\n              [-77.037984, 38.862957],\n              [-77.037993, 38.862988],\n              [-77.037998, 38.863015],\n              [-77.038002, 38.863043],\n              [-77.038006, 38.863078],\n              [-77.038005, 38.863106],\n              [-77.038002, 38.863135],\n              [-77.038, 38.863167],\n              [-77.038003, 38.863195],\n              [-77.03801, 38.863222],\n              [-77.038023, 38.863247],\n              [-77.038042, 38.863265],\n              [-77.038062, 38.863283],\n              [-77.038084, 38.863301],\n              [-77.038111, 38.86331],\n              [-77.038133, 38.863318],\n              [-77.038149, 38.863337],\n              [-77.038166, 38.86335],\n              [-77.038185, 38.863362],\n              [-77.038209, 38.86337],\n              [-77.038238, 38.863376],\n              [-77.038273, 38.86338],\n              [-77.038309, 38.863383],\n              [-77.038344, 38.863383],\n              [-77.038382, 38.863379],\n              [-77.038422, 38.863376],\n              [-77.03846, 38.863372],\n              [-77.038491, 38.863367],\n              [-77.038522, 38.863363],\n              [-77.038557, 38.863359],\n              [-77.038586, 38.863357],\n              [-77.038615, 38.863363],\n              [-77.038641, 38.863364],\n              [-77.038674, 38.863361],\n              [-77.038703, 38.863358],\n              [-77.038738, 38.863353],\n              [-77.038768, 38.863347],\n              [-77.038806, 38.863346],\n              [-77.038849, 38.863346],\n              [-77.038873, 38.863345],\n              [-77.038918, 38.863345],\n              [-77.038956, 38.863346],\n              [-77.038986, 38.863343],\n              [-77.039031, 38.863341],\n              [-77.039078, 38.863339],\n              [-77.039108, 38.863339],\n              [-77.03914, 38.863337],\n              [-77.039168, 38.863337],\n              [-77.039193, 38.863336],\n              [-77.039225, 38.863334],\n              [-77.03926, 38.863332],\n              [-77.039287, 38.863331],\n              [-77.039313, 38.863328],\n              [-77.039379, 38.863324],\n              [-77.039405, 38.863322],\n              [-77.039431, 38.863321],\n              [-77.039464, 38.863319],\n              [-77.039492, 38.863317],\n              [-77.039532, 38.863313],\n              [-77.039574, 38.863301],\n              [-77.039596, 38.863295],\n              [-77.039633, 38.863282],\n              [-77.039669, 38.863271],\n              [-77.039706, 38.86326],\n              [-77.03974, 38.863249],\n              [-77.039769, 38.863237],\n              [-77.039794, 38.863227],\n              [-77.039807, 38.863208],\n              [-77.039811, 38.863177],\n              [-77.039811, 38.86311],\n              [-77.03981, 38.863092],\n              [-77.039811, 38.863065],\n              [-77.03981, 38.863042],\n              [-77.039812, 38.863005],\n              [-77.039814, 38.862984],\n              [-77.039814, 38.862964],\n              [-77.039815, 38.862944],\n              [-77.039816, 38.862923],\n              [-77.039817, 38.8629],\n              [-77.039818, 38.86288],\n              [-77.039818, 38.862828],\n              [-77.039821, 38.862803],\n              [-77.039823, 38.862785],\n              [-77.03983, 38.862755],\n              [-77.039844, 38.862724],\n              [-77.03986, 38.862698],\n              [-77.039884, 38.86267],\n              [-77.039912, 38.862643],\n              [-77.039936, 38.862616],\n              [-77.039964, 38.862593],\n              [-77.039981, 38.86258],\n              [-77.039997, 38.862567],\n              [-77.040029, 38.862543],\n              [-77.040062, 38.862521],\n              [-77.040095, 38.862504],\n              [-77.04012, 38.862484],\n              [-77.040142, 38.862464],\n              [-77.040169, 38.862445],\n              [-77.040202, 38.862428],\n              [-77.040233, 38.862414],\n              [-77.040261, 38.862405],\n              [-77.04029, 38.862396],\n              [-77.040314, 38.862386],\n              [-77.040337, 38.862383],\n              [-77.040372, 38.862383],\n              [-77.040404, 38.862393],\n              [-77.040443, 38.862409],\n              [-77.04048, 38.862429],\n              [-77.0405, 38.862439],\n              [-77.04054, 38.862456],\n              [-77.040561, 38.862466],\n              [-77.040583, 38.862475],\n              [-77.040604, 38.862484],\n              [-77.040626, 38.862494],\n              [-77.040647, 38.862504],\n              [-77.040667, 38.862515],\n              [-77.040688, 38.862525],\n              [-77.040725, 38.862545],\n              [-77.040745, 38.862555],\n              [-77.040766, 38.862567],\n              [-77.040788, 38.862579],\n              [-77.040808, 38.862592],\n              [-77.040842, 38.862614],\n              [-77.040878, 38.862633],\n              [-77.040912, 38.862657],\n              [-77.040927, 38.862671],\n              [-77.040954, 38.862695],\n              [-77.040979, 38.862716],\n              [-77.041008, 38.86274],\n              [-77.041038, 38.862761],\n              [-77.04106, 38.862779],\n              [-77.04108, 38.862796],\n              [-77.04111, 38.862819],\n              [-77.04114, 38.862838],\n              [-77.041166, 38.862852],\n              [-77.041196, 38.862862],\n              [-77.041222, 38.862869],\n              [-77.041247, 38.86288],\n              [-77.041267, 38.862897],\n              [-77.041284, 38.862914],\n              [-77.041305, 38.862938],\n              [-77.041326, 38.86296],\n              [-77.041342, 38.862974],\n              [-77.041427, 38.863036],\n              [-77.041455, 38.863059],\n              [-77.041471, 38.863074],\n              [-77.041489, 38.863087],\n              [-77.041523, 38.863113],\n              [-77.041539, 38.863126],\n              [-77.041569, 38.863152],\n              [-77.0416, 38.863174],\n              [-77.041633, 38.863195],\n              [-77.041667, 38.863215],\n              [-77.041686, 38.863226],\n              [-77.041727, 38.863244],\n              [-77.041768, 38.863258],\n              [-77.041803, 38.863274],\n              [-77.041842, 38.86329],\n              [-77.041881, 38.8633],\n              [-77.041922, 38.86331],\n              [-77.041962, 38.86332],\n              [-77.041997, 38.863331],\n              [-77.042065, 38.863365],\n              [-77.0421, 38.863378],\n              [-77.042133, 38.863388],\n              [-77.042164, 38.863402],\n              [-77.042197, 38.863416],\n              [-77.042233, 38.863425],\n              [-77.04227, 38.863436],\n              [-77.042308, 38.863447],\n              [-77.042348, 38.863454],\n              [-77.042393, 38.86346],\n              [-77.042433, 38.863465],\n              [-77.04247, 38.863468],\n              [-77.042502, 38.863465],\n              [-77.042524, 38.863454],\n              [-77.042545, 38.863441],\n              [-77.042566, 38.863426],\n              [-77.04258, 38.863407],\n              [-77.04259, 38.863386],\n              [-77.042597, 38.863366],\n              [-77.042607, 38.863348],\n              [-77.04266, 38.863315],\n              [-77.042765, 38.86338],\n              [-77.042738, 38.863433],\n              [-77.042721, 38.863446],\n              [-77.042703, 38.863473],\n              [-77.042677, 38.863493],\n              [-77.04265, 38.863512],\n              [-77.042635, 38.863532],\n              [-77.042636, 38.863555],\n              [-77.042652, 38.863568],\n              [-77.042454, 38.863953],\n              [-77.042531, 38.863709],\n              [-77.042507, 38.863692],\n              [-77.042477, 38.863691],\n              [-77.042436, 38.863694],\n              [-77.042397, 38.863697],\n              [-77.042366, 38.863706],\n              [-77.042338, 38.863719],\n              [-77.042308, 38.863728],\n              [-77.042276, 38.863732],\n              [-77.042242, 38.863735],\n              [-77.042219, 38.863749],\n              [-77.042186, 38.863762],\n              [-77.042138, 38.863769],\n              [-77.042114, 38.863768],\n              [-77.042071, 38.863761],\n              [-77.042032, 38.863753],\n              [-77.041995, 38.863744],\n              [-77.041964, 38.863734],\n              [-77.041935, 38.86372],\n              [-77.041902, 38.863708],\n              [-77.041865, 38.863706],\n              [-77.04183, 38.863695],\n              [-77.041804, 38.86369],\n              [-77.041777, 38.863685],\n              [-77.041749, 38.863682],\n              [-77.041721, 38.86368],\n              [-77.041695, 38.863677],\n              [-77.041671, 38.863675],\n              [-77.041629, 38.863677],\n              [-77.04159, 38.863681],\n              [-77.04155, 38.863686],\n              [-77.041509, 38.863683],\n              [-77.041464, 38.863683],\n              [-77.041422, 38.863688],\n              [-77.041387, 38.863695],\n              [-77.041353, 38.863697],\n              [-77.041321, 38.86369],\n              [-77.041298, 38.863699],\n              [-77.041289, 38.863716],\n              [-77.041227, 38.863744],\n              [-77.041198, 38.863743],\n              [-77.041167, 38.863744],\n              [-77.041137, 38.863743],\n              [-77.041101, 38.863743],\n              [-77.041069, 38.863744],\n              [-77.040996, 38.863744],\n              [-77.040976, 38.863683],\n              [-77.040934, 38.863658],\n              [-77.040898, 38.863663],\n              [-77.040865, 38.863672],\n              [-77.04083, 38.86367],\n              [-77.040789, 38.863668],\n              [-77.040763, 38.863672],\n              [-77.040735, 38.863676],\n              [-77.040706, 38.86368],\n              [-77.040677, 38.863685],\n              [-77.040619, 38.863691],\n              [-77.040591, 38.863694],\n              [-77.040535, 38.863698],\n              [-77.040479, 38.8637],\n              [-77.040449, 38.863702],\n              [-77.040418, 38.863704],\n              [-77.040388, 38.863709],\n              [-77.040359, 38.863713],\n              [-77.040333, 38.863717],\n              [-77.040238, 38.863734],\n              [-77.040216, 38.86374],\n              [-77.04018, 38.863758],\n              [-77.040139, 38.86377],\n              [-77.040114, 38.863774],\n              [-77.040088, 38.863779],\n              [-77.040064, 38.863783],\n              [-77.04004, 38.863788],\n              [-77.039972, 38.863801],\n              [-77.039931, 38.86381],\n              [-77.039891, 38.863818],\n              [-77.039854, 38.863827],\n              [-77.039814, 38.863837],\n              [-77.039775, 38.863849],\n              [-77.039745, 38.863858],\n              [-77.039688, 38.863877],\n              [-77.039646, 38.86388],\n              [-77.039621, 38.863879],\n              [-77.039575, 38.86388],\n              [-77.039551, 38.863882],\n              [-77.039507, 38.86389],\n              [-77.039467, 38.863898],\n              [-77.039423, 38.863897],\n              [-77.039396, 38.863895],\n              [-77.039372, 38.863896],\n              [-77.039347, 38.863898],\n              [-77.039322, 38.863901],\n              [-77.039296, 38.863903],\n              [-77.039272, 38.863905],\n              [-77.039249, 38.863907],\n              [-77.039221, 38.86391],\n              [-77.039195, 38.863912],\n              [-77.039166, 38.863914],\n              [-77.039091, 38.86392],\n              [-77.039067, 38.863919],\n              [-77.039042, 38.86392],\n              [-77.038971, 38.863924],\n              [-77.038928, 38.863927],\n              [-77.038886, 38.863932],\n              [-77.038841, 38.863943],\n              [-77.038772, 38.863952],\n              [-77.038748, 38.863955],\n              [-77.038722, 38.863959],\n              [-77.0387, 38.863965],\n              [-77.038678, 38.863972],\n              [-77.038656, 38.863978],\n              [-77.038618, 38.863993],\n              [-77.038583, 38.864008],\n              [-77.038541, 38.864008],\n              [-77.038499, 38.864002],\n              [-77.038457, 38.864005],\n              [-77.038414, 38.864015],\n              [-77.03837, 38.86402],\n              [-77.038323, 38.864021],\n              [-77.038276, 38.864029],\n              [-77.038254, 38.864036],\n              [-77.038212, 38.864055],\n              [-77.038132, 38.864095],\n              [-77.038112, 38.864107],\n              [-77.038096, 38.86412],\n              [-77.038073, 38.864146],\n              [-77.038045, 38.864171],\n              [-77.038011, 38.864199],\n              [-77.037993, 38.864213],\n              [-77.037964, 38.864243],\n              [-77.037949, 38.864259],\n              [-77.037937, 38.864275],\n              [-77.037926, 38.864292],\n              [-77.037908, 38.86433],\n              [-77.037899, 38.864347],\n              [-77.037892, 38.864365],\n              [-77.037886, 38.864383],\n              [-77.037881, 38.864403],\n              [-77.037874, 38.864421],\n              [-77.037862, 38.864455],\n              [-77.037847, 38.864488],\n              [-77.037834, 38.86452],\n              [-77.037823, 38.864552],\n              [-77.037814, 38.864569],\n              [-77.037805, 38.864587],\n              [-77.037798, 38.864605],\n              [-77.03779, 38.864622],\n              [-77.037778, 38.864652],\n              [-77.037765, 38.864695],\n              [-77.037757, 38.864726],\n              [-77.037748, 38.864757],\n              [-77.037741, 38.864789],\n              [-77.037737, 38.864836],\n              [-77.037736, 38.864858],\n              [-77.037736, 38.86488],\n              [-77.037735, 38.864903],\n              [-77.037737, 38.864927],\n              [-77.03774, 38.864952],\n              [-77.037744, 38.864973],\n              [-77.03774, 38.865031],\n              [-77.037736, 38.865053],\n              [-77.037736, 38.865074],\n              [-77.037737, 38.865095],\n              [-77.037737, 38.865114],\n              [-77.037739, 38.865155],\n              [-77.037742, 38.865192],\n              [-77.037746, 38.865229],\n              [-77.03775, 38.865265],\n              [-77.03776, 38.865339],\n              [-77.037766, 38.865376],\n              [-77.03777, 38.865404],\n              [-77.037774, 38.865431],\n              [-77.037779, 38.865458],\n              [-77.037785, 38.865512],\n              [-77.037787, 38.865546],\n              [-77.037787, 38.865575],\n              [-77.037788, 38.865604],\n              [-77.037799, 38.865659],\n              [-77.037813, 38.865684],\n              [-77.037832, 38.865716],\n              [-77.037839, 38.865745],\n              [-77.03784, 38.865775],\n              [-77.037839, 38.865805],\n              [-77.037839, 38.865836],\n              [-77.037843, 38.865866],\n              [-77.037849, 38.865899],\n              [-77.037857, 38.865937],\n              [-77.037861, 38.865957],\n              [-77.037864, 38.865976],\n              [-77.037868, 38.865995],\n              [-77.037875, 38.866038],\n              [-77.037879, 38.86609],\n              [-77.037881, 38.866142],\n              [-77.037886, 38.866186],\n              [-77.037892, 38.866223],\n              [-77.0379, 38.86626],\n              [-77.037927, 38.866371],\n              [-77.037934, 38.866408],\n              [-77.037945, 38.866456],\n              [-77.037955, 38.866488],\n              [-77.037966, 38.866521],\n              [-77.037977, 38.866553],\n              [-77.037987, 38.866585],\n              [-77.037993, 38.866618],\n              [-77.038, 38.866672],\n              [-77.038009, 38.866701],\n              [-77.038019, 38.866729],\n              [-77.038031, 38.866757],\n              [-77.038043, 38.866784],\n              [-77.038054, 38.866812],\n              [-77.038069, 38.866847],\n              [-77.038085, 38.866881],\n              [-77.038102, 38.866915],\n              [-77.038117, 38.866949],\n              [-77.038129, 38.866983],\n              [-77.038137, 38.867018],\n              [-77.038142, 38.867051],\n              [-77.038149, 38.867075],\n              [-77.038157, 38.867099],\n              [-77.038177, 38.867147],\n              [-77.038187, 38.86717],\n              [-77.038204, 38.867207],\n              [-77.03823, 38.867255],\n              [-77.038241, 38.86728],\n              [-77.038251, 38.867304],\n              [-77.038258, 38.86733],\n              [-77.038264, 38.867359],\n              [-77.038269, 38.867382],\n              [-77.038276, 38.867405],\n              [-77.038284, 38.867427],\n              [-77.038293, 38.86745],\n              [-77.038339, 38.867535],\n              [-77.038351, 38.867559],\n              [-77.038364, 38.867583],\n              [-77.038387, 38.867633],\n              [-77.038413, 38.867684],\n              [-77.038434, 38.867718],\n              [-77.038457, 38.867752],\n              [-77.038479, 38.867785],\n              [-77.038498, 38.86782],\n              [-77.038512, 38.867856],\n              [-77.038529, 38.867904],\n              [-77.038545, 38.867937],\n              [-77.038563, 38.867969],\n              [-77.03858, 38.868002],\n              [-77.038593, 38.868035],\n              [-77.038601, 38.868069],\n              [-77.038608, 38.868107],\n              [-77.038618, 38.868132],\n              [-77.038631, 38.868156],\n              [-77.038644, 38.868181],\n              [-77.038654, 38.868205],\n              [-77.038661, 38.868231],\n              [-77.03867, 38.868271],\n              [-77.038686, 38.868296],\n              [-77.038722, 38.868346],\n              [-77.038737, 38.868372],\n              [-77.038744, 38.868399],\n              [-77.038752, 38.868438],\n              [-77.038767, 38.868469],\n              [-77.038787, 38.868499],\n              [-77.03881, 38.868529],\n              [-77.038832, 38.868559],\n              [-77.038852, 38.86859],\n              [-77.038875, 38.868628],\n              [-77.038899, 38.868667],\n              [-77.038922, 38.868705],\n              [-77.038945, 38.868744],\n              [-77.038966, 38.868783],\n              [-77.038986, 38.868823],\n              [-77.03901, 38.868876],\n              [-77.039027, 38.868912],\n              [-77.039046, 38.868948],\n              [-77.039064, 38.868983],\n              [-77.039083, 38.869019],\n              [-77.039102, 38.869054],\n              [-77.039116, 38.869079],\n              [-77.039132, 38.869104],\n              [-77.039147, 38.869129],\n              [-77.039161, 38.869154],\n              [-77.039174, 38.86918],\n              [-77.039185, 38.869206],\n              [-77.039197, 38.869239],\n              [-77.03923, 38.869305],\n              [-77.039242, 38.869327],\n              [-77.039253, 38.869348],\n              [-77.039316, 38.86947],\n              [-77.039332, 38.869496],\n              [-77.039378, 38.869579],\n              [-77.039393, 38.869603],\n              [-77.039409, 38.869625],\n              [-77.039425, 38.869646],\n              [-77.039438, 38.869668],\n              [-77.039442, 38.869687],\n              [-77.039466, 38.86974],\n              [-77.039483, 38.869762],\n              [-77.039498, 38.869784],\n              [-77.03951, 38.869805],\n              [-77.03952, 38.869824],\n              [-77.039529, 38.869844],\n              [-77.03954, 38.869865],\n              [-77.039552, 38.869886],\n              [-77.039564, 38.869908],\n              [-77.039576, 38.869928],\n              [-77.039589, 38.869945],\n              [-77.039605, 38.869962],\n              [-77.039622, 38.869981],\n              [-77.039638, 38.870001],\n              [-77.039654, 38.870023],\n              [-77.039667, 38.870044],\n              [-77.039679, 38.870062],\n              [-77.039692, 38.87008],\n              [-77.039705, 38.870097],\n              [-77.039717, 38.870115],\n              [-77.03973, 38.870135],\n              [-77.039746, 38.870155],\n              [-77.039761, 38.870176],\n              [-77.039776, 38.870198],\n              [-77.039841, 38.870323],\n              [-77.039855, 38.870342],\n              [-77.039867, 38.870364],\n              [-77.03988, 38.870392],\n              [-77.039891, 38.870419],\n              [-77.039903, 38.870445],\n              [-77.03992, 38.870469],\n              [-77.039935, 38.870496],\n              [-77.039952, 38.870524],\n              [-77.039973, 38.870548],\n              [-77.039993, 38.870569],\n              [-77.040012, 38.870589],\n              [-77.040032, 38.87061],\n              [-77.040053, 38.870635],\n              [-77.04007, 38.870662],\n              [-77.040083, 38.870684],\n              [-77.040098, 38.870709],\n              [-77.040107, 38.870729],\n              [-77.040122, 38.870752],\n              [-77.040137, 38.870778],\n              [-77.040173, 38.870832],\n              [-77.04019, 38.87086],\n              [-77.040209, 38.870888],\n              [-77.040229, 38.870916],\n              [-77.040253, 38.870937],\n              [-77.040276, 38.870956],\n              [-77.040298, 38.870975],\n              [-77.040322, 38.870992],\n              [-77.040346, 38.871012],\n              [-77.040366, 38.871036],\n              [-77.040381, 38.871064],\n              [-77.040398, 38.87109],\n              [-77.040414, 38.871115],\n              [-77.040431, 38.871141],\n              [-77.040447, 38.87117],\n              [-77.040468, 38.871198],\n              [-77.040489, 38.871223],\n              [-77.040509, 38.871248],\n              [-77.040533, 38.871271],\n              [-77.040562, 38.871293],\n              [-77.040589, 38.871315],\n              [-77.040609, 38.871339],\n              [-77.040645, 38.871395],\n              [-77.040665, 38.871422],\n              [-77.040686, 38.871449],\n              [-77.040708, 38.871472],\n              [-77.040731, 38.871495],\n              [-77.040754, 38.871519],\n              [-77.04078, 38.871542],\n              [-77.040807, 38.871564],\n              [-77.040837, 38.871585],\n              [-77.040868, 38.871607],\n              [-77.040895, 38.87163],\n              [-77.040916, 38.871654],\n              [-77.040936, 38.871678],\n              [-77.040961, 38.871699],\n              [-77.04098, 38.871715],\n              [-77.041013, 38.871753],\n              [-77.041042, 38.871787],\n              [-77.041065, 38.871816],\n              [-77.041105, 38.87186],\n              [-77.041183, 38.871952],\n              [-77.041256, 38.87204],\n              [-77.041292, 38.872081],\n              [-77.041332, 38.872127],\n              [-77.041408, 38.872217],\n              [-77.041431, 38.872243],\n              [-77.041444, 38.872258],\n              [-77.041476, 38.872295],\n              [-77.041527, 38.872354],\n              [-77.041565, 38.872399],\n              [-77.041639, 38.872485],\n              [-77.041673, 38.872538],\n              [-77.041674, 38.872541],\n              [-77.041712, 38.87258],\n              [-77.041764, 38.872617],\n              [-77.041821, 38.872652],\n              [-77.041879, 38.872686],\n              [-77.041931, 38.872723],\n              [-77.041983, 38.872757],\n              [-77.042041, 38.872791],\n              [-77.042098, 38.872825],\n              [-77.042149, 38.872859],\n              [-77.042169, 38.87288],\n              [-77.042188, 38.872899],\n              [-77.042207, 38.872946],\n              [-77.042214, 38.872965],\n              [-77.042284, 38.873059],\n              [-77.042337, 38.873126],\n              [-77.042393, 38.873182],\n              [-77.042489, 38.873261],\n              [-77.042577, 38.873337],\n              [-77.042657, 38.873416],\n              [-77.042692, 38.873452],\n              [-77.04273, 38.873489],\n              [-77.042765, 38.873525],\n              [-77.042802, 38.873562],\n              [-77.042836, 38.873601],\n              [-77.042866, 38.873638],\n              [-77.042917, 38.873692],\n              [-77.042967, 38.873748],\n              [-77.043016, 38.873802],\n              [-77.043067, 38.873852],\n              [-77.043119, 38.873905],\n              [-77.04317, 38.873955],\n              [-77.043276, 38.874061],\n              [-77.043336, 38.874118],\n              [-77.043396, 38.874167],\n              [-77.043504, 38.874245],\n              [-77.043869, 38.874285],\n              [-77.043937, 38.87433],\n              [-77.043992, 38.87437],\n              [-77.044052, 38.874414],\n              [-77.04411, 38.874459],\n              [-77.04417, 38.874503],\n              [-77.044229, 38.874547],\n              [-77.044289, 38.874591],\n              [-77.04435, 38.874634],\n              [-77.044405, 38.874673],\n              [-77.044462, 38.874713],\n              [-77.044517, 38.874752],\n              [-77.044573, 38.874791],\n              [-77.044631, 38.874829],\n              [-77.044687, 38.874869],\n              [-77.044724, 38.874896],\n              [-77.044763, 38.874922],\n              [-77.044837, 38.874974],\n              [-77.044874, 38.875002],\n              [-77.044912, 38.875028],\n              [-77.044961, 38.875067],\n              [-77.045009, 38.875106],\n              [-77.045058, 38.875144],\n              [-77.045106, 38.875184],\n              [-77.045154, 38.875223],\n              [-77.045203, 38.875261],\n              [-77.045237, 38.875285],\n              [-77.045272, 38.875309],\n              [-77.045307, 38.875332],\n              [-77.045341, 38.875356],\n              [-77.045376, 38.87538],\n              [-77.045406, 38.875408],\n              [-77.045422, 38.875423],\n              [-77.045441, 38.875439],\n              [-77.045476, 38.875462],\n              [-77.045513, 38.875482],\n              [-77.045554, 38.875504],\n              [-77.045577, 38.875513],\n              [-77.045601, 38.875523],\n              [-77.045625, 38.875532],\n              [-77.045646, 38.875545],\n              [-77.045665, 38.875558],\n              [-77.045693, 38.875578],\n              [-77.045736, 38.87559],\n              [-77.045761, 38.875594],\n              [-77.045784, 38.875598],\n              [-77.045809, 38.875604],\n              [-77.045839, 38.875615],\n              [-77.045871, 38.875621],\n              [-77.045903, 38.875624],\n              [-77.045971, 38.875624],\n              [-77.046007, 38.875625],\n              [-77.046044, 38.875625],\n              [-77.046084, 38.875622],\n              [-77.046125, 38.875618],\n              [-77.046165, 38.875613],\n              [-77.046203, 38.875608],\n              [-77.046241, 38.875602],\n              [-77.046278, 38.875595],\n              [-77.046301, 38.875588],\n              [-77.046332, 38.875575],\n              [-77.046358, 38.875564],\n              [-77.046383, 38.875555],\n              [-77.046405, 38.875547],\n              [-77.046436, 38.875535],\n              [-77.04646, 38.875522],\n              [-77.046483, 38.875509],\n              [-77.046505, 38.875498],\n              [-77.046538, 38.875483],\n              [-77.046596, 38.875455],\n              [-77.046628, 38.87544],\n              [-77.046664, 38.875423],\n              [-77.046699, 38.875406],\n              [-77.046745, 38.875385],\n              [-77.046773, 38.875373],\n              [-77.046803, 38.87536],\n              [-77.046831, 38.875347],\n              [-77.046919, 38.875292],\n              [-77.047002, 38.875239],\n              [-77.047059, 38.875184],\n              [-77.047075, 38.875165],\n              [-77.047107, 38.875142],\n              [-77.047137, 38.875117],\n              [-77.04715, 38.875101],\n              [-77.047161, 38.875081],\n              [-77.047173, 38.875061],\n              [-77.047199, 38.875027],\n              [-77.04721, 38.875007],\n              [-77.047216, 38.874988],\n              [-77.047221, 38.874966],\n              [-77.047226, 38.87493],\n              [-77.047226, 38.874907],\n              [-77.047225, 38.874884],\n              [-77.047221, 38.874865],\n              [-77.047215, 38.874844],\n              [-77.0472, 38.874807],\n              [-77.047191, 38.874786],\n              [-77.047183, 38.874766],\n              [-77.047174, 38.874744],\n              [-77.047165, 38.874727],\n              [-77.047159, 38.874708],\n              [-77.047153, 38.874691],\n              [-77.047145, 38.874669],\n              [-77.047135, 38.87465],\n              [-77.047122, 38.874626],\n              [-77.047078, 38.874565],\n              [-77.047064, 38.87455],\n              [-77.047051, 38.874535],\n              [-77.047029, 38.874518],\n              [-77.046991, 38.874493],\n              [-77.046974, 38.87448],\n              [-77.046955, 38.874468],\n              [-77.046937, 38.874453],\n              [-77.046919, 38.874436],\n              [-77.046905, 38.874419],\n              [-77.04689, 38.874402],\n              [-77.046876, 38.874386],\n              [-77.046848, 38.874356],\n              [-77.046831, 38.874337],\n              [-77.046813, 38.874319],\n              [-77.046796, 38.874303],\n              [-77.046779, 38.874286],\n              [-77.046762, 38.87427],\n              [-77.046744, 38.874252],\n              [-77.046728, 38.874235],\n              [-77.046712, 38.87422],\n              [-77.046693, 38.874203],\n              [-77.046676, 38.874188],\n              [-77.046643, 38.874149],\n              [-77.046613, 38.874113],\n              [-77.046596, 38.874096],\n              [-77.046581, 38.87408],\n              [-77.046567, 38.874065],\n              [-77.046551, 38.87405],\n              [-77.046481, 38.874035],\n              [-77.046457, 38.874031],\n              [-77.046433, 38.874024],\n              [-77.046412, 38.874012],\n              [-77.046402, 38.873994],\n              [-77.046396, 38.873974],\n              [-77.046394, 38.873953],\n              [-77.046393, 38.873932],\n              [-77.046391, 38.873911],\n              [-77.046389, 38.873886],\n              [-77.046388, 38.873865],\n              [-77.046385, 38.873827],\n              [-77.046383, 38.873804],\n              [-77.046382, 38.873739],\n              [-77.046385, 38.87372],\n              [-77.046387, 38.873702],\n              [-77.046389, 38.87368],\n              [-77.046392, 38.873661],\n              [-77.046402, 38.873623],\n              [-77.04641, 38.873601],\n              [-77.046419, 38.873579],\n              [-77.046427, 38.873558],\n              [-77.046434, 38.873539],\n              [-77.046442, 38.873517],\n              [-77.04645, 38.8735],\n              [-77.046459, 38.873479],\n              [-77.046486, 38.873417],\n              [-77.046494, 38.873398],\n              [-77.046505, 38.873377],\n              [-77.046513, 38.873358],\n              [-77.046519, 38.873339],\n              [-77.046525, 38.873316],\n              [-77.04653, 38.873296],\n              [-77.046533, 38.873277],\n              [-77.046537, 38.873258],\n              [-77.046542, 38.87324],\n              [-77.046546, 38.873221],\n              [-77.046548, 38.873203],\n              [-77.046549, 38.873185],\n              [-77.046549, 38.873164],\n              [-77.046546, 38.873096],\n              [-77.046542, 38.873054],\n              [-77.046534, 38.873018],\n              [-77.046527, 38.872994],\n              [-77.046519, 38.872971],\n              [-77.046512, 38.872953],\n              [-77.046504, 38.872935],\n              [-77.046494, 38.872917],\n              [-77.046484, 38.8729],\n              [-77.046472, 38.872879],\n              [-77.046459, 38.872859],\n              [-77.046448, 38.872842],\n              [-77.046438, 38.872824],\n              [-77.046428, 38.872803],\n              [-77.04642, 38.872784],\n              [-77.046411, 38.872764],\n              [-77.046403, 38.872743],\n              [-77.046395, 38.872726],\n              [-77.046372, 38.872689],\n              [-77.046361, 38.872673],\n              [-77.046348, 38.872654],\n              [-77.046336, 38.872633],\n              [-77.046324, 38.872614],\n              [-77.046312, 38.872593],\n              [-77.046301, 38.872572],\n              [-77.04629, 38.872554],\n              [-77.046279, 38.872535],\n              [-77.046268, 38.872518],\n              [-77.046258, 38.8725],\n              [-77.046249, 38.872481],\n              [-77.046242, 38.872463],\n              [-77.046251, 38.872368],\n              [-77.046264, 38.872349],\n              [-77.046278, 38.872329],\n              [-77.046302, 38.872297],\n              [-77.046316, 38.872279],\n              [-77.046331, 38.87226],\n              [-77.046344, 38.872244],\n              [-77.04636, 38.872225],\n              [-77.046373, 38.872209],\n              [-77.046403, 38.872175],\n              [-77.046419, 38.87216],\n              [-77.046438, 38.872145],\n              [-77.046459, 38.872129],\n              [-77.046478, 38.872111],\n              [-77.046492, 38.872096],\n              [-77.046504, 38.872081],\n              [-77.046519, 38.872065],\n              [-77.046537, 38.872049],\n              [-77.046554, 38.872035],\n              [-77.046575, 38.87202],\n              [-77.046594, 38.872007],\n              [-77.046618, 38.871993],\n              [-77.046657, 38.871963],\n              [-77.046718, 38.871918],\n              [-77.046754, 38.871894],\n              [-77.046809, 38.871862],\n              [-77.04683, 38.871853],\n              [-77.046854, 38.871845],\n              [-77.04688, 38.871838],\n              [-77.046906, 38.871832],\n              [-77.046928, 38.871827],\n              [-77.04695, 38.87182],\n              [-77.046975, 38.871813],\n              [-77.047001, 38.871806],\n              [-77.047028, 38.871801],\n              [-77.047052, 38.871799],\n              [-77.047078, 38.871797],\n              [-77.047106, 38.871793],\n              [-77.047133, 38.871788],\n              [-77.047157, 38.871782],\n              [-77.047183, 38.871777],\n              [-77.047213, 38.871771],\n              [-77.047244, 38.871765],\n              [-77.047272, 38.87176],\n              [-77.047362, 38.871744],\n              [-77.047391, 38.871741],\n              [-77.047418, 38.871738],\n              [-77.047449, 38.871734],\n              [-77.047482, 38.871727],\n              [-77.04751, 38.871721],\n              [-77.047537, 38.871714],\n              [-77.047566, 38.871707],\n              [-77.047597, 38.8717],\n              [-77.047624, 38.871695],\n              [-77.047651, 38.871689],\n              [-77.047683, 38.871683],\n              [-77.047716, 38.871679],\n              [-77.047772, 38.871672],\n              [-77.047805, 38.871668],\n              [-77.047834, 38.871663],\n              [-77.047859, 38.871659],\n              [-77.047885, 38.871654],\n              [-77.047921, 38.871647],\n              [-77.047963, 38.871637],\n              [-77.047986, 38.87163],\n              [-77.048076, 38.8716],\n              [-77.048119, 38.871591],\n              [-77.048144, 38.871587],\n              [-77.048166, 38.871584],\n              [-77.048217, 38.871575],\n              [-77.048285, 38.871561],\n              [-77.048324, 38.871553],\n              [-77.048364, 38.871543],\n              [-77.048424, 38.871527],\n              [-77.048464, 38.871514],\n              [-77.048501, 38.871499],\n              [-77.048537, 38.871489],\n              [-77.048567, 38.871485],\n              [-77.048636, 38.871467],\n              [-77.048672, 38.871457],\n              [-77.048705, 38.871449],\n              [-77.048734, 38.871441],\n              [-77.048759, 38.871434],\n              [-77.04879, 38.871424],\n              [-77.048816, 38.871413],\n              [-77.048837, 38.871401],\n              [-77.048917, 38.871362],\n              [-77.048935, 38.871348],\n              [-77.048977, 38.871367],\n              [-77.049031, 38.871354],\n              [-77.049055, 38.871348],\n              [-77.049084, 38.871343],\n              [-77.049122, 38.871333],\n              [-77.049156, 38.871322],\n              [-77.049185, 38.87132],\n              [-77.049215, 38.871319],\n              [-77.049249, 38.871318],\n              [-77.049283, 38.871322],\n              [-77.049345, 38.871332],\n              [-77.049389, 38.871339],\n              [-77.049435, 38.87135],\n              [-77.049461, 38.871357],\n              [-77.049486, 38.871363],\n              [-77.049509, 38.871372],\n              [-77.049531, 38.87138],\n              [-77.049554, 38.871389],\n              [-77.049579, 38.871399],\n              [-77.049601, 38.871408],\n              [-77.049643, 38.871428],\n              [-77.049666, 38.871436],\n              [-77.049693, 38.871445],\n              [-77.04974, 38.871465],\n              [-77.049763, 38.871475],\n              [-77.049787, 38.871485],\n              [-77.049813, 38.871494],\n              [-77.049835, 38.871504],\n              [-77.049856, 38.871514],\n              [-77.049877, 38.871525],\n              [-77.049897, 38.871535],\n              [-77.04992, 38.871545],\n              [-77.049943, 38.871554],\n              [-77.049965, 38.871563],\n              [-77.049986, 38.871573],\n              [-77.050024, 38.871595],\n              [-77.050046, 38.871607],\n              [-77.050067, 38.871617],\n              [-77.050089, 38.871627],\n              [-77.05011, 38.871637],\n              [-77.050132, 38.871646],\n              [-77.050157, 38.871655],\n              [-77.050234, 38.871703],\n              [-77.050256, 38.871715],\n              [-77.050277, 38.871727],\n              [-77.050315, 38.87176],\n              [-77.050331, 38.871775],\n              [-77.050359, 38.871801],\n              [-77.050375, 38.871815],\n              [-77.050406, 38.871842],\n              [-77.050451, 38.871887],\n              [-77.050463, 38.871904],\n              [-77.050481, 38.871922],\n              [-77.050501, 38.871941],\n              [-77.050538, 38.871974],\n              [-77.050554, 38.87199],\n              [-77.05057, 38.872009],\n              [-77.050586, 38.87203],\n              [-77.050604, 38.872051],\n              [-77.050619, 38.872068],\n              [-77.050706, 38.872183],\n              [-77.050786, 38.87235],\n              [-77.050805, 38.872387],\n              [-77.051037, 38.872736],\n              [-77.051222, 38.873026],\n              [-77.051411, 38.873325],\n              [-77.051424, 38.873362],\n              [-77.051451, 38.87337],\n              [-77.051492, 38.873448],\n              [-77.051506, 38.873472],\n              [-77.051521, 38.873502],\n              [-77.051531, 38.87353],\n              [-77.051568, 38.873589],\n              [-77.051604, 38.873674],\n              [-77.051628, 38.873747],\n              [-77.051638, 38.87379],\n              [-77.051645, 38.87381],\n              [-77.051661, 38.873852],\n              [-77.051669, 38.873875],\n              [-77.051677, 38.873895],\n              [-77.051684, 38.873914],\n              [-77.051687, 38.873933],\n              [-77.051688, 38.873952],\n              [-77.051688, 38.87397],\n              [-77.051691, 38.874003],\n              [-77.051691, 38.874027],\n              [-77.05169, 38.874049],\n              [-77.051691, 38.87407],\n              [-77.051693, 38.874091],\n              [-77.051696, 38.874117],\n              [-77.051696, 38.87414],\n              [-77.051695, 38.874162],\n              [-77.051694, 38.874186],\n              [-77.051694, 38.874213],\n              [-77.051693, 38.874237],\n              [-77.051694, 38.87426],\n              [-77.051696, 38.874285],\n              [-77.051697, 38.874313],\n              [-77.051695, 38.874359],\n              [-77.051693, 38.874386],\n              [-77.051694, 38.874411],\n              [-77.051701, 38.87448],\n              [-77.051702, 38.874504],\n              [-77.051706, 38.874548],\n              [-77.051708, 38.874575],\n              [-77.05171, 38.874598],\n              [-77.05171, 38.874619],\n              [-77.051709, 38.874642],\n              [-77.051707, 38.874668],\n              [-77.051704, 38.874691],\n              [-77.051702, 38.874712],\n              [-77.051699, 38.874736],\n              [-77.051695, 38.874763],\n              [-77.051692, 38.874787],\n              [-77.051688, 38.87481],\n              [-77.051685, 38.874837],\n              [-77.051681, 38.874865],\n              [-77.051677, 38.874889],\n              [-77.051674, 38.874915],\n              [-77.051671, 38.874944],\n              [-77.051668, 38.874969],\n              [-77.051664, 38.874993],\n              [-77.051659, 38.875019],\n              [-77.051654, 38.875046],\n              [-77.05165, 38.875067],\n              [-77.051647, 38.875087],\n              [-77.051645, 38.875109],\n              [-77.051641, 38.87513],\n              [-77.051634, 38.875149],\n              [-77.051627, 38.875167],\n              [-77.051615, 38.875215],\n              [-77.051612, 38.875233],\n              [-77.051608, 38.875269],\n              [-77.051604, 38.875288],\n              [-77.051557, 38.875303],\n              [-77.051555, 38.875321],\n              [-77.051554, 38.875339],\n              [-77.051552, 38.875358],\n              [-77.05155, 38.875378],\n              [-77.051548, 38.875396],\n              [-77.051545, 38.87543],\n              [-77.051543, 38.875451],\n              [-77.051541, 38.875476],\n              [-77.051538, 38.875505],\n              [-77.051535, 38.875535],\n              [-77.051531, 38.875579],\n              [-77.051567, 38.875625],\n              [-77.051543, 38.875668],\n              [-77.051533, 38.875699],\n              [-77.051526, 38.875733],\n              [-77.051519, 38.875768],\n              [-77.051514, 38.8758],\n              [-77.051508, 38.875826],\n              [-77.051501, 38.875851],\n              [-77.051496, 38.875875],\n              [-77.051491, 38.875896],\n              [-77.051485, 38.875914],\n              [-77.051476, 38.87594],\n              [-77.051469, 38.875969],\n              [-77.051459, 38.875996],\n              [-77.051445, 38.876022],\n              [-77.051432, 38.876047],\n              [-77.051427, 38.876071],\n              [-77.051425, 38.876094],\n              [-77.051422, 38.876115],\n              [-77.051422, 38.876137],\n              [-77.051423, 38.876161],\n              [-77.051427, 38.876187],\n              [-77.051431, 38.876216],\n              [-77.051436, 38.876245],\n              [-77.05144, 38.876273],\n              [-77.051444, 38.876299],\n              [-77.051448, 38.876324],\n              [-77.051454, 38.876348],\n              [-77.051465, 38.876371],\n              [-77.051474, 38.876394],\n              [-77.051481, 38.876416],\n              [-77.05149, 38.876439],\n              [-77.051499, 38.876464],\n              [-77.051507, 38.876492],\n              [-77.051515, 38.876521],\n              [-77.051523, 38.876548],\n              [-77.051533, 38.876572],\n              [-77.051545, 38.876595],\n              [-77.051561, 38.876617],\n              [-77.051578, 38.87664],\n              [-77.051594, 38.876663],\n              [-77.051607, 38.876686],\n              [-77.051621, 38.876708],\n              [-77.05164, 38.87673],\n              [-77.051656, 38.876754],\n              [-77.051668, 38.876775],\n              [-77.05168, 38.876797],\n              [-77.051693, 38.87682],\n              [-77.051706, 38.87684],\n              [-77.05172, 38.876856],\n              [-77.051733, 38.876877],\n              [-77.05175, 38.876904],\n              [-77.051768, 38.876927],\n              [-77.051791, 38.876947],\n              [-77.051815, 38.876964],\n              [-77.051841, 38.87698],\n              [-77.051864, 38.876998],\n              [-77.051906, 38.877034],\n              [-77.051927, 38.877056],\n              [-77.051949, 38.877078],\n              [-77.05197, 38.877098],\n              [-77.051988, 38.87712],\n              [-77.052005, 38.877147],\n              [-77.052029, 38.877176],\n              [-77.052056, 38.877203],\n              [-77.052082, 38.87723],\n              [-77.052105, 38.877259],\n              [-77.052125, 38.877292],\n              [-77.052148, 38.877324],\n              [-77.052172, 38.877354],\n              [-77.052196, 38.877381],\n              [-77.05222, 38.877406],\n              [-77.052242, 38.877432],\n              [-77.052265, 38.877459],\n              [-77.052286, 38.877485],\n              [-77.052309, 38.877512],\n              [-77.052363, 38.877564],\n              [-77.052388, 38.877593],\n              [-77.052411, 38.87762],\n              [-77.052431, 38.877648],\n              [-77.05245, 38.877674],\n              [-77.05247, 38.877701],\n              [-77.052492, 38.877724],\n              [-77.052516, 38.877746],\n              [-77.052536, 38.877769],\n              [-77.052554, 38.877794],\n              [-77.052572, 38.87782],\n              [-77.052592, 38.877846],\n              [-77.052612, 38.87787],\n              [-77.052634, 38.877895],\n              [-77.052656, 38.877918],\n              [-77.052677, 38.877941],\n              [-77.052698, 38.877965],\n              [-77.052719, 38.877988],\n              [-77.052743, 38.878014],\n              [-77.052772, 38.87804],\n              [-77.052804, 38.878064],\n              [-77.052835, 38.878089],\n              [-77.052864, 38.878116],\n              [-77.052892, 38.878144],\n              [-77.05292, 38.878171],\n              [-77.052947, 38.878197],\n              [-77.052973, 38.878223],\n              [-77.052999, 38.878248],\n              [-77.053026, 38.878272],\n              [-77.053056, 38.878297],\n              [-77.053091, 38.878321],\n              [-77.053121, 38.878346],\n              [-77.053147, 38.878371],\n              [-77.053174, 38.878396],\n              [-77.053196, 38.87842],\n              [-77.053216, 38.878443],\n              [-77.053175, 38.878525],\n              [-77.053245, 38.878554],\n              [-77.053302, 38.87858],\n              [-77.053337, 38.878606],\n              [-77.05335, 38.878623],\n              [-77.053364, 38.878641],\n              [-77.053378, 38.878664],\n              [-77.053394, 38.878692],\n              [-77.053411, 38.87872],\n              [-77.053429, 38.878746],\n              [-77.053463, 38.878798],\n              [-77.053478, 38.878821],\n              [-77.053493, 38.878845],\n              [-77.053507, 38.878868],\n              [-77.053518, 38.878892],\n              [-77.053524, 38.878917],\n              [-77.053531, 38.878942],\n              [-77.053538, 38.878963],\n              [-77.053541, 38.878992],\n              [-77.053542, 38.879014],\n              [-77.053578, 38.879017],\n              [-77.053609, 38.878996],\n              [-77.053619, 38.878979],\n              [-77.05363, 38.878962],\n              [-77.053638, 38.878934],\n              [-77.053638, 38.878875],\n              [-77.053637, 38.878856],\n              [-77.053654, 38.878836],\n              [-77.053691, 38.878834],\n              [-77.05371, 38.878845],\n              [-77.053732, 38.878863],\n              [-77.053753, 38.878884],\n              [-77.053768, 38.878909],\n              [-77.053778, 38.878933],\n              [-77.05378, 38.878953],\n              [-77.053776, 38.878972],\n              [-77.05376, 38.879004],\n              [-77.053739, 38.879029],\n              [-77.053715, 38.87903],\n              [-77.053696, 38.879047],\n              [-77.053682, 38.879073],\n              [-77.053665, 38.879097],\n              [-77.05366, 38.879115],\n              [-77.053664, 38.879134],\n              [-77.05368, 38.879152],\n              [-77.053702, 38.879185],\n              [-77.05371, 38.879202],\n              [-77.053718, 38.879229],\n              [-77.053731, 38.879244],\n              [-77.053751, 38.879266],\n              [-77.053766, 38.879285],\n              [-77.053791, 38.879317],\n              [-77.053826, 38.879355],\n              [-77.053864, 38.879405],\n              [-77.053901, 38.879456],\n              [-77.053915, 38.879471],\n              [-77.053939, 38.879499],\n              [-77.053964, 38.879531],\n              [-77.053993, 38.879561],\n              [-77.054025, 38.879593],\n              [-77.054053, 38.879624],\n              [-77.054082, 38.879656],\n              [-77.054114, 38.879689],\n              [-77.054143, 38.87972],\n              [-77.054175, 38.87975],\n              [-77.054205, 38.879777],\n              [-77.054242, 38.879805],\n              [-77.054281, 38.879833],\n              [-77.054318, 38.879865],\n              [-77.054357, 38.879892],\n              [-77.054395, 38.879921],\n              [-77.054455, 38.87996],\n              [-77.054504, 38.879993],\n              [-77.054527, 38.880008],\n              [-77.054573, 38.880039],\n              [-77.054609, 38.880061],\n              [-77.054674, 38.880094],\n              [-77.054715, 38.88012],\n              [-77.054759, 38.880142],\n              [-77.054802, 38.880163],\n              [-77.054844, 38.880182],\n              [-77.054888, 38.880198],\n              [-77.054936, 38.88021],\n              [-77.054981, 38.880223],\n              [-77.055025, 38.880235],\n              [-77.055072, 38.880249],\n              [-77.055123, 38.880261],\n              [-77.05515, 38.880267],\n              [-77.055214, 38.880282],\n              [-77.055255, 38.880292],\n              [-77.05529, 38.880297],\n              [-77.055314, 38.880301],\n              [-77.055341, 38.880293],\n              [-77.055331, 38.880273],\n              [-77.055314, 38.880251],\n              [-77.055285, 38.880223],\n              [-77.055332, 38.88023],\n              [-77.055359, 38.88024],\n              [-77.055384, 38.880253],\n              [-77.055411, 38.880267],\n              [-77.05547, 38.880257],\n              [-77.055502, 38.880283],\n              [-77.05552, 38.880299],\n              [-77.055583, 38.88035],\n              [-77.055652, 38.88034],\n              [-77.05571, 38.880332],\n              [-77.055733, 38.880329],\n              [-77.055776, 38.880367],\n              [-77.055818, 38.880375],\n              [-77.055863, 38.880381],\n              [-77.05591, 38.880386],\n              [-77.055939, 38.88039],\n              [-77.056001, 38.880396],\n              [-77.056032, 38.880397],\n              [-77.056076, 38.880399],\n              [-77.056129, 38.880402],\n              [-77.056179, 38.880404],\n              [-77.056228, 38.880406],\n              [-77.056282, 38.880407],\n              [-77.056334, 38.880406],\n              [-77.056406, 38.880433],\n              [-77.056459, 38.880397],\n              [-77.056497, 38.880371],\n              [-77.056554, 38.88039],\n              [-77.056602, 38.880385],\n              [-77.056658, 38.880379],\n              [-77.056709, 38.880376],\n              [-77.056771, 38.88037],\n              [-77.056805, 38.880366],\n              [-77.056828, 38.880363],\n              [-77.056876, 38.880358],\n              [-77.056954, 38.88035],\n              [-77.057049, 38.880335],\n              [-77.057154, 38.880322],\n              [-77.057221, 38.880313],\n              [-77.05731, 38.880301],\n              [-77.057411, 38.880288],\n              [-77.057473, 38.88028],\n              [-77.057517, 38.880273],\n              [-77.057587, 38.880267],\n              [-77.057636, 38.880264],\n              [-77.057668, 38.880262],\n              [-77.057733, 38.880261],\n              [-77.05779, 38.88026],\n              [-77.057844, 38.880261],\n              [-77.057909, 38.880265],\n              [-77.057933, 38.88027],\n              [-77.057997, 38.880286],\n              [-77.058064, 38.880307],\n              [-77.058145, 38.880332],\n              [-77.058202, 38.880352],\n              [-77.058263, 38.880372],\n              [-77.058317, 38.880388],\n              [-77.058352, 38.880397],\n              [-77.058409, 38.880411],\n              [-77.058519, 38.880438],\n              [-77.058599, 38.88046],\n              [-77.058641, 38.880472],\n              [-77.058683, 38.880486],\n              [-77.058711, 38.880501],\n              [-77.058733, 38.880522],\n              [-77.05876, 38.880547],\n              [-77.058783, 38.88057],\n              [-77.058801, 38.880587],\n              [-77.058843, 38.880628],\n              [-77.058863, 38.880649],\n              [-77.058893, 38.880677],\n              [-77.058913, 38.880697],\n              [-77.058936, 38.880719],\n              [-77.059015, 38.880798],\n              [-77.059047, 38.880828],\n              [-77.05908, 38.88086],\n              [-77.05911, 38.880891],\n              [-77.059143, 38.880922],\n              [-77.059202, 38.880993],\n              [-77.059238, 38.881068],\n              [-77.059248, 38.881087],\n              [-77.059262, 38.881109],\n              [-77.059277, 38.881133],\n              [-77.059291, 38.881155],\n              [-77.059307, 38.881181],\n              [-77.059324, 38.881208],\n              [-77.059341, 38.881236],\n              [-77.059361, 38.881271],\n              [-77.059427, 38.881358],\n              [-77.059448, 38.881387],\n              [-77.059485, 38.881446],\n              [-77.059514, 38.881495],\n              [-77.059531, 38.881524],\n              [-77.059554, 38.881562],\n              [-77.059574, 38.881595],\n              [-77.059606, 38.881629],\n              [-77.059642, 38.881666],\n              [-77.05967, 38.881704],\n              [-77.059685, 38.881727],\n              [-77.059701, 38.881751],\n              [-77.059714, 38.881777],\n              [-77.059723, 38.8818],\n              [-77.059732, 38.881822],\n              [-77.059742, 38.881841],\n              [-77.059763, 38.881873],\n              [-77.059783, 38.881893],\n              [-77.059799, 38.881915],\n              [-77.05982, 38.881948],\n              [-77.059833, 38.881972],\n              [-77.059859, 38.882018],\n              [-77.059877, 38.882049],\n              [-77.05989, 38.882076],\n              [-77.059898, 38.8821],\n              [-77.059913, 38.882123],\n              [-77.059935, 38.88215],\n              [-77.059949, 38.882174],\n              [-77.059962, 38.882198],\n              [-77.059976, 38.882219],\n              [-77.05999, 38.882244],\n              [-77.060011, 38.882286],\n              [-77.060019, 38.882306],\n              [-77.060026, 38.882332],\n              [-77.060034, 38.882355],\n              [-77.06005, 38.882394],\n              [-77.060066, 38.882425],\n              [-77.060081, 38.882456],\n              [-77.060097, 38.882484],\n              [-77.060115, 38.882513],\n              [-77.060132, 38.88254],\n              [-77.060149, 38.88257],\n              [-77.060169, 38.882605],\n              [-77.060188, 38.882635],\n              [-77.060206, 38.882669],\n              [-77.06024, 38.882726],\n              [-77.060258, 38.882756],\n              [-77.060276, 38.882784],\n              [-77.060287, 38.882805],\n              [-77.060307, 38.882842],\n              [-77.060342, 38.882912],\n              [-77.060356, 38.882937],\n              [-77.060368, 38.88296],\n              [-77.060401, 38.883007],\n              [-77.060417, 38.883032],\n              [-77.060428, 38.883052],\n              [-77.060456, 38.8831],\n              [-77.060471, 38.883131],\n              [-77.060488, 38.883165],\n              [-77.060501, 38.883192],\n              [-77.060515, 38.883229],\n              [-77.060525, 38.883247],\n              [-77.060537, 38.88327],\n              [-77.060554, 38.883297],\n              [-77.060587, 38.883337],\n              [-77.060609, 38.883366],\n              [-77.060636, 38.883401],\n              [-77.060657, 38.883431],\n              [-77.060675, 38.883465],\n              [-77.060692, 38.883504],\n              [-77.060709, 38.883541],\n              [-77.060728, 38.883576],\n              [-77.060749, 38.883615],\n              [-77.060766, 38.883653],\n              [-77.060774, 38.88367],\n              [-77.06079, 38.883705],\n              [-77.060803, 38.883733],\n              [-77.06081, 38.883751],\n              [-77.060835, 38.883805],\n              [-77.060849, 38.88383],\n              [-77.060862, 38.883849],\n              [-77.060878, 38.883868],\n              [-77.060892, 38.883885],\n              [-77.060911, 38.8839],\n              [-77.060936, 38.88391],\n              [-77.060964, 38.883918],\n              [-77.060991, 38.883924],\n              [-77.060904, 38.883926],\n              [-77.060877, 38.883931],\n              [-77.060873, 38.883949],\n              [-77.060875, 38.883977],\n              [-77.060899, 38.883989],\n              [-77.060907, 38.884011],\n              [-77.060943, 38.884029],\n              [-77.060977, 38.88404],\n              [-77.060987, 38.88406],\n              [-77.060999, 38.88408],\n              [-77.061029, 38.884117],\n              [-77.06105, 38.884148],\n              [-77.061067, 38.884172],\n              [-77.061096, 38.884209],\n              [-77.061119, 38.884239],\n              [-77.061146, 38.884272],\n              [-77.061168, 38.8843],\n              [-77.061189, 38.884325],\n              [-77.061221, 38.884359],\n              [-77.061246, 38.884387],\n              [-77.061274, 38.884427],\n              [-77.061313, 38.884488],\n              [-77.061345, 38.884536],\n              [-77.061363, 38.884571],\n              [-77.061376, 38.884608],\n              [-77.061392, 38.884642],\n              [-77.061409, 38.884674],\n              [-77.061427, 38.884706],\n              [-77.061446, 38.88474],\n              [-77.061467, 38.88477],\n              [-77.061484, 38.884786],\n              [-77.06151, 38.884812],\n              [-77.061536, 38.884832],\n              [-77.06156, 38.884849],\n              [-77.06158, 38.884868],\n              [-77.0616, 38.884891],\n              [-77.061622, 38.884926],\n              [-77.061648, 38.884971],\n              [-77.061734, 38.885085],\n              [-77.061807, 38.885186],\n              [-77.061816, 38.885203],\n              [-77.061845, 38.885245],\n              [-77.061865, 38.885274],\n              [-77.061876, 38.88529],\n              [-77.061895, 38.885321],\n              [-77.061906, 38.885337],\n              [-77.061919, 38.885358],\n              [-77.061941, 38.885389],\n              [-77.061959, 38.88542],\n              [-77.061993, 38.885469],\n              [-77.062009, 38.885495],\n              [-77.062026, 38.88552],\n              [-77.062047, 38.885553],\n              [-77.062066, 38.885582],\n              [-77.062097, 38.885627],\n              [-77.062119, 38.885663],\n              [-77.06214, 38.885694],\n              [-77.062156, 38.88572],\n              [-77.062177, 38.885751],\n              [-77.062197, 38.885782],\n              [-77.062213, 38.88581],\n              [-77.062232, 38.885834],\n              [-77.062257, 38.885877],\n              [-77.062274, 38.885902],\n              [-77.062295, 38.885933],\n              [-77.06231, 38.885958],\n              [-77.062329, 38.885988],\n              [-77.062344, 38.886011],\n              [-77.062356, 38.886034],\n              [-77.062377, 38.886065],\n              [-77.062395, 38.886093],\n              [-77.06241, 38.886118],\n              [-77.062436, 38.886157],\n              [-77.062453, 38.886184],\n              [-77.062467, 38.886212],\n              [-77.06248, 38.886229],\n              [-77.062503, 38.886272],\n              [-77.062524, 38.886306],\n              [-77.062542, 38.886336],\n              [-77.062558, 38.886364],\n              [-77.062568, 38.886379],\n              [-77.062594, 38.88642],\n              [-77.062615, 38.886453],\n              [-77.062633, 38.88648],\n              [-77.062648, 38.886501],\n              [-77.062663, 38.886525],\n              [-77.06269, 38.886563],\n              [-77.06271, 38.886595],\n              [-77.062742, 38.88664],\n              [-77.062757, 38.886662],\n              [-77.062776, 38.886692],\n              [-77.062786, 38.886712],\n              [-77.062799, 38.886733],\n              [-77.062809, 38.88675],\n              [-77.062831, 38.886786],\n              [-77.062852, 38.886814],\n              [-77.062863, 38.886831],\n              [-77.062889, 38.886869],\n              [-77.062904, 38.886891],\n              [-77.062919, 38.886919],\n              [-77.062934, 38.88694],\n              [-77.062948, 38.886962],\n              [-77.062959, 38.88698],\n              [-77.062972, 38.886997],\n              [-77.062985, 38.887013],\n              [-77.063, 38.887035],\n              [-77.063012, 38.887052],\n              [-77.063024, 38.887072],\n              [-77.063044, 38.887099],\n              [-77.063067, 38.887133],\n              [-77.063078, 38.887152],\n              [-77.063099, 38.88718],\n              [-77.063116, 38.887203],\n              [-77.063129, 38.887224],\n              [-77.063145, 38.887244],\n              [-77.063157, 38.887262],\n              [-77.063166, 38.887276],\n              [-77.063174, 38.887292],\n              [-77.06319, 38.887315],\n              [-77.06321, 38.887344],\n              [-77.063228, 38.887371],\n              [-77.063239, 38.887388],\n              [-77.063257, 38.887416],\n              [-77.063295, 38.887476],\n              [-77.063304, 38.887494],\n              [-77.06331, 38.887507],\n              [-77.063333, 38.887546],\n              [-77.063356, 38.887579],\n              [-77.063367, 38.887593],\n              [-77.063381, 38.887613],\n              [-77.063397, 38.887637],\n              [-77.063415, 38.887665],\n              [-77.063425, 38.88768],\n              [-77.063435, 38.887697],\n              [-77.063449, 38.887718],\n              [-77.063459, 38.887728],\n              [-77.063461, 38.887733],\n              [-77.063467, 38.887741],\n              [-77.063467, 38.887739],\n              [-77.063469, 38.887741],\n              [-77.063471, 38.887742],\n              [-77.063488, 38.88777],\n              [-77.063499, 38.887789],\n              [-77.063511, 38.887807],\n              [-77.063533, 38.887843],\n              [-77.063549, 38.887866],\n              [-77.06356, 38.887884],\n              [-77.063572, 38.887899],\n              [-77.063577, 38.887911],\n              [-77.063592, 38.88793],\n              [-77.063599, 38.887944],\n              [-77.06361, 38.887959],\n              [-77.063627, 38.887983],\n              [-77.063633, 38.887994],\n              [-77.063643, 38.888011],\n              [-77.06366, 38.888034],\n              [-77.063688, 38.888076],\n              [-77.063698, 38.888097],\n              [-77.063706, 38.888107],\n              [-77.063715, 38.888123],\n              [-77.063736, 38.888152],\n              [-77.063744, 38.888166],\n              [-77.063762, 38.888193],\n              [-77.063773, 38.888211],\n              [-77.063787, 38.888233],\n              [-77.063803, 38.888256],\n              [-77.06382, 38.888283],\n              [-77.063839, 38.888311],\n              [-77.063858, 38.888342],\n              [-77.063886, 38.888386],\n              [-77.063899, 38.888404],\n              [-77.063913, 38.888424],\n              [-77.063931, 38.888452],\n              [-77.063952, 38.888485],\n              [-77.063966, 38.888506],\n              [-77.063985, 38.888535],\n              [-77.064011, 38.888576],\n              [-77.064027, 38.888601],\n              [-77.064041, 38.888623],\n              [-77.064059, 38.88865],\n              [-77.064074, 38.888673],\n              [-77.064087, 38.888693],\n              [-77.064096, 38.888707],\n              [-77.064109, 38.888727],\n              [-77.064135, 38.888769],\n              [-77.064183, 38.888841],\n              [-77.064253, 38.888964],\n              [-77.064313, 38.889112],\n              [-77.064327, 38.889154],\n              [-77.064356, 38.889263],\n              [-77.064367, 38.889295],\n              [-77.064379, 38.889333],\n              [-77.064386, 38.889368],\n              [-77.064395, 38.889416],\n              [-77.064404, 38.88945],\n              [-77.064411, 38.889481],\n              [-77.064416, 38.88951],\n              [-77.06442, 38.889543],\n              [-77.064417, 38.889579],\n              [-77.064411, 38.889606],\n              [-77.064391, 38.889651],\n              [-77.06438, 38.889667],\n              [-77.064365, 38.889685],\n              [-77.064341, 38.88972],\n              [-77.06432, 38.889749],\n              [-77.064298, 38.889769],\n              [-77.064271, 38.889789],\n              [-77.064242, 38.889809],\n              [-77.064225, 38.889822],\n              [-77.064188, 38.889867],\n              [-77.064133, 38.889918],\n              [-77.064091, 38.889954],\n              [-77.064061, 38.889976],\n              [-77.064028, 38.889997],\n              [-77.064005, 38.890008],\n              [-77.063948, 38.890037],\n              [-77.063906, 38.890054],\n              [-77.063847, 38.890086],\n              [-77.063825, 38.890106],\n              [-77.063807, 38.890127],\n              [-77.06379, 38.890151],\n              [-77.06378, 38.890173],\n              [-77.063775, 38.890198],\n              [-77.063787, 38.890263],\n              [-77.063801, 38.890298],\n              [-77.063818, 38.890324],\n              [-77.063847, 38.890351],\n              [-77.063879, 38.890367],\n              [-77.06391, 38.890391],\n              [-77.063929, 38.890422],\n              [-77.063942, 38.890459],\n              [-77.063954, 38.890496],\n              [-77.063976, 38.890537],\n              [-77.063997, 38.890571],\n              [-77.064025, 38.89061],\n              [-77.064044, 38.890639],\n              [-77.064067, 38.890679],\n              [-77.064078, 38.890766],\n              [-77.06406, 38.890827],\n              [-77.064019, 38.890888],\n              [-77.064, 38.890911],\n              [-77.063992, 38.890952],\n              [-77.064012, 38.890998],\n              [-77.064039, 38.89102],\n              [-77.064068, 38.891034],\n              [-77.064105, 38.891051],\n              [-77.064142, 38.891081],\n              [-77.064161, 38.891101],\n              [-77.064185, 38.891129],\n              [-77.064204, 38.891163],\n              [-77.064225, 38.8912],\n              [-77.064248, 38.891243],\n              [-77.064277, 38.891305],\n              [-77.064291, 38.891343],\n              [-77.064304, 38.891379],\n              [-77.064326, 38.891415],\n              [-77.064345, 38.891421],\n              [-77.064394, 38.891421],\n              [-77.064419, 38.891422],\n              [-77.064437, 38.891431],\n              [-77.064456, 38.891457],\n              [-77.064465, 38.891478],\n              [-77.064474, 38.891496],\n              [-77.064491, 38.891517],\n              [-77.064532, 38.891555],\n              [-77.06454, 38.891565],\n              [-77.06455, 38.891585],\n              [-77.064557, 38.891598],\n              [-77.06457, 38.891623],\n              [-77.064591, 38.891652],\n              [-77.064603, 38.891669],\n              [-77.064645, 38.891723],\n              [-77.064698, 38.89186],\n              [-77.064705, 38.891892],\n              [-77.064702, 38.891903],\n              [-77.064694, 38.891931],\n              [-77.064691, 38.891946],\n              [-77.064692, 38.891962],\n              [-77.064693, 38.891977],\n              [-77.064694, 38.891986],\n              [-77.064695, 38.892023],\n              [-77.064694, 38.892043],\n              [-77.064696, 38.892059],\n              [-77.064701, 38.892084],\n              [-77.064707, 38.892108],\n              [-77.06471, 38.892122],\n              [-77.064714, 38.892148],\n              [-77.064729, 38.892235],\n              [-77.064747, 38.892264],\n              [-77.064749, 38.892293],\n              [-77.064735, 38.892329],\n              [-77.064704, 38.892364],\n              [-77.064698, 38.892384],\n              [-77.064722, 38.892487],\n              [-77.064758, 38.892592],\n              [-77.064775, 38.892615],\n              [-77.064796, 38.892631],\n              [-77.064817, 38.892652],\n              [-77.064829, 38.892673],\n              [-77.06484, 38.892697],\n              [-77.064844, 38.89272],\n              [-77.064837, 38.892757],\n              [-77.064841, 38.892788],\n              [-77.064857, 38.892837],\n              [-77.064863, 38.892859],\n              [-77.064872, 38.892884],\n              [-77.064911, 38.893003],\n              [-77.064954, 38.893115],\n              [-77.065002, 38.893261],\n              [-77.065017, 38.893303],\n              [-77.065033, 38.893339],\n              [-77.065051, 38.893382],\n              [-77.06507, 38.893419],\n              [-77.065088, 38.893455],\n              [-77.065104, 38.89349],\n              [-77.065114, 38.893513],\n              [-77.065126, 38.89354],\n              [-77.065135, 38.893565],\n              [-77.065159, 38.893613],\n              [-77.065181, 38.893645],\n              [-77.065201, 38.893675],\n              [-77.065231, 38.893737],\n              [-77.065249, 38.893761],\n              [-77.06527, 38.893783],\n              [-77.065286, 38.8938],\n              [-77.065308, 38.893817],\n              [-77.065335, 38.893852],\n              [-77.065344, 38.893876],\n              [-77.065362, 38.89391],\n              [-77.065382, 38.893941],\n              [-77.065399, 38.893973],\n              [-77.065468, 38.894061],\n              [-77.065518, 38.894146],\n              [-77.06557, 38.894234],\n              [-77.065616, 38.894308],\n              [-77.065702, 38.894467],\n              [-77.065793, 38.894547],\n              [-77.065817, 38.894562],\n              [-77.065856, 38.894568],\n              [-77.065891, 38.89456],\n              [-77.065917, 38.894545],\n              [-77.066007, 38.894538],\n              [-77.065991, 38.894609],\n              [-77.065954, 38.894636],\n              [-77.065935, 38.89465],\n              [-77.06591, 38.894671],\n              [-77.065889, 38.894698],\n              [-77.06588, 38.894726],\n              [-77.065907, 38.894841],\n              [-77.06595, 38.894895],\n              [-77.066027, 38.894996],\n              [-77.066108, 38.895112],\n              [-77.066175, 38.895229],\n              [-77.066198, 38.895269],\n              [-77.066215, 38.895299],\n              [-77.066233, 38.89533],\n              [-77.066263, 38.895384],\n              [-77.066278, 38.89541],\n              [-77.066292, 38.895438],\n              [-77.06631, 38.895476],\n              [-77.06632, 38.8955],\n              [-77.066332, 38.895525],\n              [-77.066343, 38.895548],\n              [-77.066349, 38.895568],\n              [-77.066357, 38.895585],\n              [-77.06637, 38.895639],\n              [-77.066376, 38.895658],\n              [-77.066384, 38.895681],\n              [-77.066404, 38.895728],\n              [-77.066434, 38.895779],\n              [-77.066445, 38.895805],\n              [-77.066459, 38.895837],\n              [-77.066467, 38.895858],\n              [-77.066482, 38.895887],\n              [-77.066506, 38.895909],\n              [-77.066533, 38.895949],\n              [-77.066546, 38.895976],\n              [-77.066555, 38.895993],\n              [-77.066611, 38.896081],\n              [-77.06663, 38.896113],\n              [-77.066646, 38.896144],\n              [-77.066667, 38.896186],\n              [-77.066689, 38.896221],\n              [-77.066717, 38.896277],\n              [-77.06674, 38.896322],\n              [-77.066759, 38.896359],\n              [-77.066785, 38.896413],\n              [-77.066805, 38.896452],\n              [-77.066824, 38.896485],\n              [-77.066837, 38.896505],\n              [-77.066862, 38.896542],\n              [-77.066895, 38.896594],\n              [-77.066914, 38.896626],\n              [-77.066925, 38.896644],\n              [-77.066936, 38.896663],\n              [-77.066948, 38.896682],\n              [-77.06697, 38.89673],\n              [-77.06698, 38.896753],\n              [-77.067002, 38.896797],\n              [-77.067014, 38.89682],\n              [-77.067027, 38.896845],\n              [-77.067041, 38.896867],\n              [-77.067054, 38.89689],\n              [-77.067084, 38.896936],\n              [-77.067097, 38.896959],\n              [-77.06711, 38.896983],\n              [-77.067124, 38.897008],\n              [-77.06714, 38.897031],\n              [-77.067155, 38.897054],\n              [-77.067167, 38.897078],\n              [-77.067177, 38.897099],\n              [-77.067185, 38.897117],\n              [-77.067197, 38.89714],\n              [-77.067208, 38.897157],\n              [-77.067226, 38.897169],\n              [-77.06722, 38.897235],\n              [-77.067252, 38.897302],\n              [-77.067258, 38.897321],\n              [-77.067263, 38.89734],\n              [-77.067269, 38.89736],\n              [-77.067274, 38.897379],\n              [-77.067278, 38.897399],\n              [-77.067284, 38.897418],\n              [-77.067289, 38.897438],\n              [-77.067294, 38.89746],\n              [-77.067299, 38.897481],\n              [-77.067303, 38.8975],\n              [-77.067307, 38.897534],\n              [-77.067309, 38.897554],\n              [-77.067315, 38.897592],\n              [-77.067316, 38.897611],\n              [-77.067319, 38.897643],\n              [-77.067323, 38.897672],\n              [-77.067325, 38.897726],\n              [-77.067331, 38.897757],\n              [-77.067339, 38.89779],\n              [-77.067348, 38.897826],\n              [-77.067352, 38.897845],\n              [-77.067357, 38.897863],\n              [-77.067371, 38.897896],\n              [-77.067391, 38.897923],\n              [-77.067409, 38.897947],\n              [-77.067423, 38.897971],\n              [-77.067432, 38.897991],\n              [-77.067446, 38.898007],\n              [-77.06746, 38.89803],\n              [-77.067463, 38.898058],\n              [-77.067466, 38.898089],\n              [-77.067471, 38.898107],\n              [-77.067498, 38.898108],\n              [-77.067509, 38.898091],\n              [-77.067527, 38.898077],\n              [-77.067552, 38.898065],\n              [-77.067575, 38.898056],\n              [-77.067597, 38.898102],\n              [-77.067532, 38.898128],\n              [-77.067495, 38.898142],\n              [-77.067478, 38.89816],\n              [-77.067472, 38.89819],\n              [-77.067467, 38.898222],\n              [-77.067472, 38.89824],\n              [-77.067478, 38.898258],\n              [-77.067484, 38.898278],\n              [-77.067488, 38.898296],\n              [-77.067499, 38.89833],\n              [-77.067514, 38.898365],\n              [-77.067522, 38.898384],\n              [-77.067531, 38.898403],\n              [-77.067541, 38.898421],\n              [-77.06755, 38.898438],\n              [-77.067562, 38.89847],\n              [-77.067572, 38.898501],\n              [-77.067582, 38.89853],\n              [-77.06759, 38.898564],\n              [-77.067594, 38.898582],\n              [-77.067599, 38.898613],\n              [-77.067603, 38.898648],\n              [-77.067608, 38.898682],\n              [-77.067611, 38.8987],\n              [-77.067614, 38.898731],\n              [-77.067615, 38.898763],\n              [-77.067616, 38.898782],\n              [-77.067618, 38.898801],\n              [-77.067621, 38.898835],\n              [-77.067621, 38.898854],\n              [-77.067623, 38.898883],\n              [-77.067624, 38.898916],\n              [-77.067618, 38.898951],\n              [-77.067609, 38.89897],\n              [-77.067599, 38.898989],\n              [-77.06759, 38.899006],\n              [-77.067573, 38.899036],\n              [-77.067555, 38.899064],\n              [-77.06754, 38.899087],\n              [-77.067538, 38.899136],\n              [-77.067574, 38.899237],\n              [-77.067586, 38.899255],\n              [-77.067608, 38.899291],\n              [-77.067621, 38.899311],\n              [-77.067633, 38.899332],\n              [-77.067644, 38.899353],\n              [-77.067655, 38.899373],\n              [-77.067666, 38.899394],\n              [-77.067677, 38.899414],\n              [-77.067686, 38.899432],\n              [-77.067693, 38.89945],\n              [-77.067701, 38.899469],\n              [-77.067712, 38.899488],\n              [-77.067722, 38.899507],\n              [-77.067744, 38.899543],\n              [-77.067828, 38.899615],\n              [-77.06785, 38.899627],\n              [-77.067873, 38.899638],\n              [-77.067896, 38.899648],\n              [-77.067948, 38.899668],\n              [-77.067974, 38.899676],\n              [-77.067997, 38.899684],\n              [-77.068019, 38.899692],\n              [-77.068055, 38.899715],\n              [-77.068072, 38.89973],\n              [-77.068086, 38.899746],\n              [-77.068099, 38.899761],\n              [-77.068117, 38.899784],\n              [-77.068134, 38.899804],\n              [-77.068151, 38.899823],\n              [-77.068161, 38.899841],\n              [-77.068163, 38.899862],\n              [-77.068164, 38.899882],\n              [-77.068163, 38.899901],\n              [-77.068166, 38.899929],\n              [-77.06821, 38.899958],\n              [-77.068247, 38.899973],\n              [-77.068266, 38.899985],\n              [-77.068286, 38.899997],\n              [-77.068306, 38.90001],\n              [-77.068326, 38.900025],\n              [-77.068343, 38.90004],\n              [-77.068356, 38.900057],\n              [-77.06837, 38.900074],\n              [-77.068384, 38.90009],\n              [-77.068401, 38.900106],\n              [-77.068417, 38.900122],\n              [-77.068434, 38.900138],\n              [-77.068452, 38.900154],\n              [-77.068471, 38.90017],\n              [-77.068493, 38.900186],\n              [-77.068517, 38.900202],\n              [-77.068539, 38.900218],\n              [-77.068561, 38.900233],\n              [-77.068621, 38.900281],\n              [-77.068643, 38.900296],\n              [-77.068694, 38.90033],\n              [-77.068721, 38.900347],\n              [-77.068746, 38.900362],\n              [-77.068772, 38.900378],\n              [-77.068796, 38.900395],\n              [-77.068822, 38.900412],\n              [-77.068849, 38.900429],\n              [-77.068877, 38.900444],\n              [-77.068901, 38.900459],\n              [-77.068923, 38.900473],\n              [-77.068946, 38.900483],\n              [-77.068968, 38.900492],\n              [-77.069011, 38.900506],\n              [-77.069034, 38.900511],\n              [-77.069058, 38.900515],\n              [-77.069102, 38.900522],\n              [-77.069125, 38.900528],\n              [-77.069162, 38.900542],\n              [-77.069195, 38.900558],\n              [-77.069271, 38.90059],\n              [-77.069347, 38.900602],\n              [-77.069378, 38.900606],\n              [-77.069409, 38.900611],\n              [-77.069443, 38.900621],\n              [-77.069467, 38.900631],\n              [-77.069493, 38.900643],\n              [-77.06952, 38.900656],\n              [-77.069549, 38.900669],\n              [-77.069582, 38.900682],\n              [-77.069614, 38.900695],\n              [-77.069647, 38.900709],\n              [-77.069679, 38.900724],\n              [-77.069706, 38.900738],\n              [-77.069732, 38.90075],\n              [-77.06976, 38.900763],\n              [-77.069788, 38.900777],\n              [-77.069842, 38.900807],\n              [-77.06987, 38.90082],\n              [-77.069897, 38.900832],\n              [-77.069921, 38.900844],\n              [-77.069955, 38.900859],\n              [-77.069983, 38.900871],\n              [-77.070011, 38.900882],\n              [-77.070038, 38.900892],\n              [-77.070066, 38.900903],\n              [-77.070093, 38.900916],\n              [-77.07012, 38.900928],\n              [-77.070144, 38.90094],\n              [-77.070166, 38.90095],\n              [-77.070189, 38.900959],\n              [-77.070212, 38.900967],\n              [-77.070235, 38.900976],\n              [-77.070259, 38.900985],\n              [-77.070285, 38.900993],\n              [-77.070308, 38.901001],\n              [-77.070328, 38.901017],\n              [-77.070362, 38.901042],\n              [-77.070471, 38.901112],\n              [-77.070585, 38.901186],\n              [-77.070659, 38.901203],\n              [-77.070689, 38.901202],\n              [-77.07072, 38.901201],\n              [-77.070746, 38.9012],\n              [-77.07077, 38.901194],\n              [-77.070818, 38.901174],\n              [-77.070842, 38.901167],\n              [-77.070882, 38.901163],\n              [-77.070926, 38.901158],\n              [-77.070949, 38.901154],\n              [-77.070997, 38.901152],\n              [-77.071023, 38.901152],\n              [-77.071048, 38.901151],\n              [-77.071075, 38.90115],\n              [-77.071101, 38.901149],\n              [-77.071125, 38.901148],\n              [-77.07115, 38.901147],\n              [-77.071175, 38.901147],\n              [-77.071204, 38.901146],\n              [-77.071311, 38.901149],\n              [-77.071343, 38.901148],\n              [-77.071377, 38.901147],\n              [-77.071413, 38.901146],\n              [-77.071447, 38.901145],\n              [-77.071476, 38.901145],\n              [-77.071503, 38.901143],\n              [-77.071531, 38.90114],\n              [-77.071618, 38.901128],\n              [-77.071644, 38.901124],\n              [-77.071667, 38.901118],\n              [-77.071689, 38.901112],\n              [-77.071712, 38.901106],\n              [-77.071738, 38.901101],\n              [-77.071768, 38.901095],\n              [-77.071798, 38.901091],\n              [-77.071828, 38.901088],\n              [-77.071857, 38.901087],\n              [-77.071888, 38.901086],\n              [-77.071921, 38.901084],\n              [-77.071953, 38.901083],\n              [-77.071984, 38.901082],\n              [-77.072013, 38.901081],\n              [-77.072073, 38.901079],\n              [-77.072104, 38.901078],\n              [-77.072134, 38.901078],\n              [-77.072162, 38.901077],\n              [-77.072187, 38.901077],\n              [-77.072211, 38.901076],\n              [-77.072237, 38.901076],\n              [-77.072264, 38.901077],\n              [-77.072294, 38.901077],\n              [-77.072324, 38.901076],\n              [-77.072353, 38.901076],\n              [-77.072411, 38.901074],\n              [-77.072441, 38.901073],\n              [-77.07247, 38.901073],\n              [-77.072495, 38.901072],\n              [-77.072519, 38.901071],\n              [-77.072543, 38.901071],\n              [-77.072568, 38.90107],\n              [-77.072594, 38.90107],\n              [-77.072622, 38.901069],\n              [-77.07265, 38.901069],\n              [-77.072674, 38.901068],\n              [-77.072713, 38.901069],\n              [-77.072752, 38.901072],\n              [-77.072777, 38.901074],\n              [-77.072805, 38.901076],\n              [-77.072851, 38.90108],\n              [-77.072896, 38.901087],\n              [-77.072922, 38.901091],\n              [-77.072953, 38.901095],\n              [-77.072987, 38.901099],\n              [-77.073022, 38.901102],\n              [-77.073053, 38.901104],\n              [-77.073085, 38.901107],\n              [-77.073118, 38.90111],\n              [-77.073155, 38.901112],\n              [-77.073188, 38.901115],\n              [-77.073217, 38.901118],\n              [-77.073245, 38.90112],\n              [-77.073272, 38.901122],\n              [-77.073299, 38.901125],\n              [-77.073324, 38.901126],\n              [-77.073349, 38.901128],\n              [-77.073375, 38.901131],\n              [-77.073402, 38.901136],\n              [-77.07343, 38.901143],\n              [-77.073461, 38.901151],\n              [-77.073494, 38.901159],\n              [-77.07353, 38.901167],\n              [-77.073563, 38.901176],\n              [-77.073593, 38.901184],\n              [-77.073622, 38.901192],\n              [-77.073652, 38.901198],\n              [-77.073679, 38.901204],\n              [-77.073704, 38.901211],\n              [-77.073728, 38.901217],\n              [-77.073804, 38.901241],\n              [-77.07385, 38.901253],\n              [-77.073878, 38.901259],\n              [-77.073905, 38.901266],\n              [-77.073928, 38.901273],\n              [-77.073953, 38.901281],\n              [-77.073977, 38.90129],\n              [-77.074002, 38.9013],\n              [-77.074027, 38.901309],\n              [-77.074053, 38.901317],\n              [-77.074079, 38.901324],\n              [-77.074131, 38.901334],\n              [-77.074158, 38.90134],\n              [-77.074188, 38.901347],\n              [-77.074258, 38.901361],\n              [-77.074291, 38.901369],\n              [-77.074322, 38.901379],\n              [-77.074355, 38.901388],\n              [-77.074392, 38.901396],\n              [-77.074428, 38.901404],\n              [-77.074459, 38.901412],\n              [-77.074489, 38.90142],\n              [-77.074521, 38.901427],\n              [-77.074557, 38.901433],\n              [-77.074593, 38.901438],\n              [-77.074626, 38.901443],\n              [-77.074657, 38.901448],\n              [-77.07469, 38.901453],\n              [-77.074729, 38.901459],\n              [-77.074768, 38.901466],\n              [-77.074802, 38.901472],\n              [-77.075036, 38.90153],\n              [-77.075177, 38.901569],\n              [-77.075222, 38.901581],\n              [-77.075256, 38.901587],\n              [-77.075291, 38.901594],\n              [-77.075324, 38.901602],\n              [-77.075354, 38.90161],\n              [-77.075418, 38.901626],\n              [-77.075449, 38.901634],\n              [-77.075479, 38.901644],\n              [-77.075508, 38.901655],\n              [-77.075539, 38.901666],\n              [-77.075569, 38.901676],\n              [-77.075598, 38.901686],\n              [-77.075627, 38.901695],\n              [-77.075656, 38.901703],\n              [-77.075683, 38.90171],\n              [-77.075739, 38.901724],\n              [-77.075764, 38.901734],\n              [-77.075787, 38.901746],\n              [-77.075811, 38.901758],\n              [-77.075859, 38.90178],\n              [-77.075881, 38.90179],\n              [-77.075902, 38.901798],\n              [-77.075942, 38.901809],\n              [-77.075979, 38.901817],\n              [-77.076006, 38.901819],\n              [-77.076031, 38.901815],\n              [-77.07607, 38.901818],\n              [-77.076116, 38.901826],\n              [-77.076145, 38.901837],\n              [-77.076222, 38.901861],\n              [-77.076253, 38.90187],\n              [-77.076285, 38.901878],\n              [-77.076316, 38.901886],\n              [-77.076346, 38.901892],\n              [-77.076374, 38.901898],\n              [-77.076406, 38.901909],\n              [-77.07644, 38.901921],\n              [-77.076468, 38.901933],\n              [-77.076494, 38.901945],\n              [-77.076521, 38.901955],\n              [-77.076548, 38.901962],\n              [-77.076577, 38.901967],\n              [-77.07661, 38.901967],\n              [-77.076646, 38.901969],\n              [-77.076682, 38.901973],\n              [-77.076717, 38.901978],\n              [-77.07675, 38.901986],\n              [-77.076783, 38.901997],\n              [-77.076809, 38.902011],\n              [-77.076832, 38.902028],\n              [-77.076859, 38.902044],\n              [-77.076889, 38.902057],\n              [-77.076922, 38.902072],\n              [-77.076961, 38.902088],\n              [-77.076997, 38.902103],\n              [-77.077034, 38.902114],\n              [-77.07707, 38.902123],\n              [-77.077108, 38.90213],\n              [-77.077152, 38.902138],\n              [-77.077192, 38.902147],\n              [-77.077232, 38.902153],\n              [-77.077276, 38.902158],\n              [-77.077324, 38.902163],\n              [-77.077369, 38.902165],\n              [-77.077411, 38.902168],\n              [-77.077451, 38.902172],\n              [-77.07749, 38.902177],\n              [-77.077524, 38.902181],\n              [-77.077552, 38.90219],\n              [-77.077569, 38.902206],\n              [-77.07758, 38.902226],\n              [-77.077613, 38.902256],\n              [-77.07764, 38.902265],\n              [-77.077666, 38.902267],\n              [-77.077693, 38.902263],\n              [-77.077721, 38.902257],\n              [-77.077752, 38.902253],\n              [-77.077785, 38.902252],\n              [-77.077824, 38.902254],\n              [-77.077864, 38.902258],\n              [-77.077901, 38.902262],\n              [-77.077935, 38.902264],\n              [-77.077969, 38.902268],\n              [-77.078003, 38.902276],\n              [-77.078035, 38.902285],\n              [-77.078064, 38.902295],\n              [-77.078118, 38.902317],\n              [-77.078141, 38.902331],\n              [-77.078162, 38.902344],\n              [-77.078181, 38.902356],\n              [-77.07825, 38.902376],\n              [-77.078275, 38.902378],\n              [-77.078301, 38.902377],\n              [-77.07833, 38.902374],\n              [-77.078358, 38.902369],\n              [-77.078381, 38.902362],\n              [-77.078431, 38.902352],\n              [-77.078455, 38.902346],\n              [-77.078486, 38.902341],\n              [-77.078526, 38.902339],\n              [-77.078567, 38.902336],\n              [-77.078607, 38.902334],\n              [-77.078644, 38.902328],\n              [-77.078686, 38.902324],\n              [-77.078726, 38.902321],\n              [-77.07876, 38.902318],\n              [-77.078796, 38.902313],\n              [-77.078834, 38.902308],\n              [-77.078876, 38.902307],\n              [-77.078914, 38.902309],\n              [-77.07895, 38.902313],\n              [-77.078982, 38.902317],\n              [-77.079019, 38.902326],\n              [-77.079054, 38.902336],\n              [-77.079082, 38.902346],\n              [-77.079105, 38.902354],\n              [-77.079138, 38.902371],\n              [-77.079158, 38.902398],\n              [-77.079165, 38.902427],\n              [-77.079175, 38.902446],\n              [-77.079217, 38.902462],\n              [-77.079254, 38.902467],\n              [-77.079284, 38.902448],\n              [-77.079315, 38.902426],\n              [-77.079363, 38.90241],\n              [-77.079387, 38.902406],\n              [-77.079466, 38.902406],\n              [-77.079492, 38.902405],\n              [-77.079524, 38.902405],\n              [-77.079558, 38.902404],\n              [-77.079588, 38.902398],\n              [-77.07962, 38.902388],\n              [-77.07965, 38.902378],\n              [-77.079684, 38.902368],\n              [-77.07977, 38.90235],\n              [-77.079807, 38.902344],\n              [-77.079844, 38.902337],\n              [-77.079884, 38.902331],\n              [-77.079926, 38.902326],\n              [-77.079966, 38.902323],\n              [-77.080004, 38.902318],\n              [-77.080039, 38.902313],\n              [-77.080075, 38.902308],\n              [-77.080108, 38.902306],\n              [-77.080168, 38.902305],\n              [-77.080196, 38.902309],\n              [-77.080227, 38.902316],\n              [-77.080259, 38.902323],\n              [-77.080292, 38.902329],\n              [-77.080328, 38.902331],\n              [-77.080363, 38.902332],\n              [-77.080404, 38.902331],\n              [-77.08045, 38.902332],\n              [-77.080496, 38.902334],\n              [-77.080537, 38.902336],\n              [-77.080622, 38.902336],\n              [-77.08069, 38.90233],\n              [-77.080758, 38.90233],\n              [-77.080783, 38.902333],\n              [-77.080863, 38.902333],\n              [-77.080892, 38.902332],\n              [-77.080923, 38.90233],\n              [-77.080955, 38.90233],\n              [-77.080986, 38.902329],\n              [-77.08101, 38.902327],\n              [-77.081036, 38.902327],\n              [-77.081084, 38.902325],\n              [-77.081109, 38.902325],\n              [-77.081135, 38.902326],\n              [-77.08116, 38.902325],\n              [-77.081194, 38.902327],\n              [-77.081241, 38.902327],\n              [-77.081274, 38.902326],\n              [-77.081312, 38.902325],\n              [-77.081343, 38.902324],\n              [-77.081365, 38.902323],\n              [-77.081433, 38.902323],\n              [-77.081467, 38.902322],\n              [-77.081501, 38.902319],\n              [-77.081528, 38.902321],\n              [-77.08154, 38.902319],\n              [-77.081617, 38.902319],\n              [-77.081647, 38.902318],\n              [-77.08168, 38.902316],\n              [-77.081758, 38.902316],\n              [-77.081788, 38.902315],\n              [-77.081816, 38.902313],\n              [-77.081878, 38.902313],\n              [-77.081916, 38.902312],\n              [-77.08196, 38.902311],\n              [-77.081988, 38.902311],\n              [-77.082015, 38.90231],\n              [-77.082053, 38.902309],\n              [-77.082083, 38.902309],\n              [-77.082114, 38.902308],\n              [-77.082143, 38.902307],\n              [-77.082169, 38.902307],\n              [-77.082227, 38.902305],\n              [-77.082261, 38.902305],\n              [-77.082297, 38.902304],\n              [-77.082317, 38.902304],\n              [-77.082336, 38.902302],\n              [-77.082407, 38.902302],\n              [-77.082445, 38.902301],\n              [-77.08248, 38.902299],\n              [-77.08253, 38.902299],\n              [-77.082559, 38.902298],\n              [-77.082592, 38.902298],\n              [-77.082645, 38.902288],\n              [-77.082658, 38.902282],\n              [-77.082764, 38.902317],\n              [-77.082778, 38.902322],\n              [-77.0828, 38.90233],\n              [-77.082824, 38.902343],\n              [-77.082857, 38.902361],\n              [-77.08289, 38.902374],\n              [-77.082925, 38.902386],\n              [-77.082963, 38.9024],\n              [-77.082998, 38.902409],\n              [-77.083034, 38.902423],\n              [-77.083069, 38.902437],\n              [-77.083091, 38.902444],\n              [-77.083111, 38.902448],\n              [-77.083149, 38.902456],\n              [-77.083182, 38.902457],\n              [-77.083217, 38.902469],\n              [-77.083249, 38.902479],\n              [-77.083289, 38.902493],\n              [-77.083311, 38.9025],\n              [-77.083349, 38.902512],\n              [-77.083383, 38.902524],\n              [-77.083403, 38.90253],\n              [-77.08344, 38.902541],\n              [-77.083474, 38.902554],\n              [-77.083505, 38.902564],\n              [-77.083541, 38.902575],\n              [-77.083565, 38.902583],\n              [-77.083594, 38.902592],\n              [-77.083629, 38.902605],\n              [-77.083668, 38.902617],\n              [-77.083705, 38.90263],\n              [-77.083747, 38.902644],\n              [-77.083781, 38.902654],\n              [-77.083811, 38.902665],\n              [-77.083842, 38.902675],\n              [-77.083868, 38.902683],\n              [-77.083886, 38.90269],\n              [-77.083912, 38.902699],\n              [-77.083944, 38.902708],\n              [-77.083977, 38.90272],\n              [-77.084, 38.902727],\n              [-77.084019, 38.902733],\n              [-77.084051, 38.902744],\n              [-77.084084, 38.902755],\n              [-77.084113, 38.902765],\n              [-77.084137, 38.902772],\n              [-77.084158, 38.90278],\n              [-77.084178, 38.902786],\n              [-77.084191, 38.902791],\n              [-77.084212, 38.902797],\n              [-77.084242, 38.902808],\n              [-77.084275, 38.902819],\n              [-77.084301, 38.902827],\n              [-77.084324, 38.902834],\n              [-77.084351, 38.902843],\n              [-77.084383, 38.902854],\n              [-77.084411, 38.902863],\n              [-77.084441, 38.902873],\n              [-77.084466, 38.902882],\n              [-77.08451, 38.902896],\n              [-77.084532, 38.902902],\n              [-77.084555, 38.90291],\n              [-77.084577, 38.902918],\n              [-77.084601, 38.902925],\n              [-77.084623, 38.902932],\n              [-77.084659, 38.902945],\n              [-77.084687, 38.902955],\n              [-77.084715, 38.902963],\n              [-77.084737, 38.90297],\n              [-77.084763, 38.90298],\n              [-77.084805, 38.902994],\n              [-77.084822, 38.902999],\n              [-77.084841, 38.903006],\n              [-77.08487, 38.903014],\n              [-77.084894, 38.903023],\n              [-77.084916, 38.90303],\n              [-77.08494, 38.903038],\n              [-77.084974, 38.90305],\n              [-77.084996, 38.903056],\n              [-77.085019, 38.903064],\n              [-77.085047, 38.903074],\n              [-77.085068, 38.903081],\n              [-77.085096, 38.90309],\n              [-77.085125, 38.903099],\n              [-77.08516, 38.903111],\n              [-77.085199, 38.903124],\n              [-77.085236, 38.903136],\n              [-77.085255, 38.903141],\n              [-77.085289, 38.903154],\n              [-77.08532, 38.903163],\n              [-77.085343, 38.903172],\n              [-77.085368, 38.90318],\n              [-77.085396, 38.903189],\n              [-77.085418, 38.903195],\n              [-77.085452, 38.903208],\n              [-77.085491, 38.90322],\n              [-77.085525, 38.903232],\n              [-77.085564, 38.903245],\n              [-77.085587, 38.903251],\n              [-77.085612, 38.903259],\n              [-77.085649, 38.903273],\n              [-77.085687, 38.903285],\n              [-77.085726, 38.903298],\n              [-77.085758, 38.903309],\n              [-77.085792, 38.903319],\n              [-77.085824, 38.903329],\n              [-77.085858, 38.903341],\n              [-77.085874, 38.903346],\n              [-77.085916, 38.903361],\n              [-77.085972, 38.903379],\n              [-77.086004, 38.90339],\n              [-77.086029, 38.903397],\n              [-77.086059, 38.903408],\n              [-77.086094, 38.90342],\n              [-77.086139, 38.903435],\n              [-77.086161, 38.903442],\n              [-77.086201, 38.903455],\n              [-77.086235, 38.903465],\n              [-77.086271, 38.903478],\n              [-77.086306, 38.90349],\n              [-77.086333, 38.903499],\n              [-77.086351, 38.903504],\n              [-77.086385, 38.903515],\n              [-77.086409, 38.903523],\n              [-77.08643, 38.903531],\n              [-77.086459, 38.90354],\n              [-77.086482, 38.903548],\n              [-77.086519, 38.90356],\n              [-77.086542, 38.903568],\n              [-77.086561, 38.903574],\n              [-77.086592, 38.903583],\n              [-77.086625, 38.903594],\n              [-77.086648, 38.903602],\n              [-77.086672, 38.903611],\n              [-77.086691, 38.903616],\n              [-77.086721, 38.903626],\n              [-77.086728, 38.903628],\n              [-77.086752, 38.903636],\n              [-77.086775, 38.903644],\n              [-77.0868, 38.903652],\n              [-77.086839, 38.903665],\n              [-77.086859, 38.903672],\n              [-77.086887, 38.903681],\n              [-77.086908, 38.903688],\n              [-77.086958, 38.903704],\n              [-77.087, 38.903718],\n              [-77.087031, 38.903728],\n              [-77.087053, 38.903736],\n              [-77.087073, 38.903742],\n              [-77.087101, 38.903752],\n              [-77.087157, 38.90377],\n              [-77.087192, 38.903782],\n              [-77.087229, 38.903794],\n              [-77.087268, 38.903807],\n              [-77.087308, 38.90382],\n              [-77.087346, 38.903832],\n              [-77.08738, 38.903844],\n              [-77.087449, 38.903867],\n              [-77.087466, 38.903872],\n              [-77.087478, 38.903876],\n              [-77.08749, 38.903881],\n              [-77.087501, 38.903884],\n              [-77.087529, 38.903893],\n              [-77.087563, 38.903905],\n              [-77.087589, 38.903914],\n              [-77.087624, 38.903925],\n              [-77.087647, 38.903933],\n              [-77.087681, 38.903944],\n              [-77.087718, 38.903957],\n              [-77.087748, 38.903967],\n              [-77.087777, 38.903976],\n              [-77.087815, 38.903988],\n              [-77.087872, 38.904007],\n              [-77.087906, 38.904019],\n              [-77.087946, 38.904032],\n              [-77.087966, 38.904038],\n              [-77.088002, 38.90405],\n              [-77.088041, 38.904064],\n              [-77.088058, 38.904069],\n              [-77.088096, 38.904081],\n              [-77.088134, 38.904094],\n              [-77.088171, 38.904106],\n              [-77.088205, 38.904117],\n              [-77.088241, 38.904129],\n              [-77.088261, 38.904136],\n              [-77.088287, 38.904145],\n              [-77.088308, 38.904151],\n              [-77.088344, 38.904164],\n              [-77.088367, 38.904171],\n              [-77.088383, 38.904176],\n              [-77.088401, 38.904182],\n              [-77.088435, 38.904193],\n              [-77.088469, 38.904205],\n              [-77.088495, 38.904213],\n              [-77.088542, 38.904229],\n              [-77.088582, 38.904243],\n              [-77.088616, 38.904254],\n              [-77.088655, 38.904266],\n              [-77.088674, 38.904272],\n              [-77.088702, 38.904282],\n              [-77.088737, 38.904294],\n              [-77.088775, 38.904306],\n              [-77.08881, 38.904317],\n              [-77.088841, 38.904328],\n              [-77.088867, 38.904337],\n              [-77.088885, 38.904342],\n              [-77.088913, 38.904351],\n              [-77.089015, 38.904385],\n              [-77.089055, 38.904399],\n              [-77.089091, 38.90441],\n              [-77.089125, 38.904421],\n              [-77.089148, 38.904429],\n              [-77.089167, 38.904435],\n              [-77.089207, 38.904449],\n              [-77.089243, 38.90446],\n              [-77.089278, 38.904472],\n              [-77.089319, 38.904486],\n              [-77.089342, 38.904493],\n              [-77.089364, 38.9045],\n              [-77.089406, 38.904514],\n              [-77.089437, 38.904525],\n              [-77.08948, 38.904539],\n              [-77.089499, 38.904545],\n              [-77.089524, 38.904553],\n              [-77.089584, 38.904573],\n              [-77.089609, 38.904582],\n              [-77.089684, 38.904607],\n              [-77.089707, 38.904614],\n              [-77.089728, 38.904621],\n              [-77.089753, 38.904629],\n              [-77.089775, 38.904637],\n              [-77.089798, 38.904645],\n              [-77.089822, 38.904652],\n              [-77.089845, 38.904659],\n              [-77.089863, 38.904666],\n              [-77.089899, 38.904677],\n              [-77.089933, 38.904689],\n              [-77.089966, 38.9047],\n              [-77.089993, 38.904708],\n              [-77.090034, 38.904722],\n              [-77.090066, 38.904733],\n              [-77.090085, 38.904739],\n              [-77.090129, 38.904753],\n              [-77.090147, 38.904759],\n              [-77.090172, 38.904767],\n              [-77.090274, 38.904801],\n              [-77.090314, 38.904815],\n              [-77.090338, 38.904823],\n              [-77.090364, 38.904831],\n              [-77.090394, 38.904841],\n              [-77.090414, 38.904848],\n              [-77.090465, 38.904865],\n              [-77.090483, 38.90487],\n              [-77.090504, 38.904877],\n              [-77.090532, 38.904886],\n              [-77.090554, 38.904894],\n              [-77.090565, 38.904897],\n              [-77.090585, 38.904904],\n              [-77.09061, 38.904913],\n              [-77.090627, 38.904918],\n              [-77.090647, 38.904925],\n              [-77.09067, 38.904932],\n              [-77.090692, 38.904939],\n              [-77.090713, 38.904947],\n              [-77.09074, 38.904956],\n              [-77.090766, 38.904964],\n              [-77.090794, 38.904973],\n              [-77.090826, 38.904984],\n              [-77.090852, 38.904993],\n              [-77.090904, 38.905009],\n              [-77.090937, 38.905021],\n              [-77.090961, 38.905028],\n              [-77.090983, 38.905035],\n              [-77.090994, 38.905039],\n              [-77.090996, 38.90504],\n              [-77.091049, 38.905057],\n              [-77.091091, 38.905071],\n              [-77.091113, 38.905079],\n              [-77.091146, 38.90509],\n              [-77.091164, 38.905095],\n              [-77.091185, 38.905102],\n              [-77.09121, 38.905112],\n              [-77.091244, 38.905122],\n              [-77.09127, 38.90513],\n              [-77.091303, 38.905141],\n              [-77.091329, 38.90515],\n              [-77.091354, 38.905158],\n              [-77.091377, 38.905166],\n              [-77.09141, 38.905177],\n              [-77.091433, 38.905184],\n              [-77.091464, 38.905195],\n              [-77.091494, 38.905204],\n              [-77.091542, 38.90522],\n              [-77.091559, 38.905226],\n              [-77.091591, 38.905237],\n              [-77.091624, 38.905247],\n              [-77.091661, 38.90526],\n              [-77.091694, 38.905271],\n              [-77.091736, 38.905284],\n              [-77.091772, 38.905296],\n              [-77.091807, 38.905308],\n              [-77.091841, 38.905319],\n              [-77.091878, 38.905332],\n              [-77.091918, 38.905344],\n              [-77.091942, 38.905353],\n              [-77.091978, 38.905364],\n              [-77.092062, 38.905392],\n              [-77.092091, 38.905402],\n              [-77.092114, 38.905409],\n              [-77.092153, 38.905423],\n              [-77.092172, 38.905429],\n              [-77.092193, 38.905436],\n              [-77.092216, 38.905443],\n              [-77.092238, 38.90545],\n              [-77.092278, 38.905464],\n              [-77.0923, 38.905471],\n              [-77.092319, 38.905477],\n              [-77.092341, 38.905484],\n              [-77.092383, 38.905498],\n              [-77.092403, 38.905505],\n              [-77.092425, 38.905512],\n              [-77.092443, 38.905519],\n              [-77.092464, 38.905526],\n              [-77.092488, 38.905533],\n              [-77.092511, 38.905541],\n              [-77.092531, 38.905547],\n              [-77.092555, 38.905555],\n              [-77.092578, 38.905563],\n              [-77.0926, 38.905571],\n              [-77.092645, 38.905586],\n              [-77.092667, 38.905592],\n              [-77.092691, 38.9056],\n              [-77.092708, 38.905606],\n              [-77.092736, 38.905615],\n              [-77.092758, 38.905623],\n              [-77.092781, 38.90563],\n              [-77.092806, 38.905639],\n              [-77.092831, 38.905647],\n              [-77.092853, 38.905654],\n              [-77.092876, 38.905662],\n              [-77.092893, 38.905668],\n              [-77.092925, 38.905678],\n              [-77.092947, 38.905686],\n              [-77.092971, 38.905693],\n              [-77.092997, 38.905702],\n              [-77.093042, 38.905717],\n              [-77.093064, 38.905724],\n              [-77.093089, 38.905733],\n              [-77.093106, 38.905738],\n              [-77.09313, 38.905746],\n              [-77.093156, 38.905755],\n              [-77.093179, 38.905762],\n              [-77.093218, 38.905775],\n              [-77.093251, 38.905796],\n              [-77.093314, 38.905819],\n              [-77.093344, 38.905837],\n              [-77.093365, 38.905847],\n              [-77.093383, 38.905857],\n              [-77.09342, 38.905876],\n              [-77.093451, 38.905893],\n              [-77.093479, 38.905907],\n              [-77.093512, 38.905927],\n              [-77.093544, 38.905943],\n              [-77.093582, 38.905975],\n              [-77.093584, 38.905978],\n              [-77.093586, 38.905976],\n              [-77.093597, 38.905986],\n              [-77.093625, 38.906011],\n              [-77.093673, 38.90605],\n              [-77.093701, 38.90607],\n              [-77.093717, 38.906082],\n              [-77.093738, 38.906097],\n              [-77.093771, 38.90612],\n              [-77.093807, 38.906146],\n              [-77.093828, 38.90616],\n              [-77.09385, 38.906176],\n              [-77.093867, 38.906188],\n              [-77.093887, 38.9062],\n              [-77.093906, 38.906214],\n              [-77.093929, 38.906228],\n              [-77.093949, 38.906241],\n              [-77.093968, 38.906253],\n              [-77.093993, 38.906266],\n              [-77.094013, 38.906279],\n              [-77.094034, 38.90629],\n              [-77.094052, 38.906301],\n              [-77.094072, 38.906315],\n              [-77.094092, 38.906328],\n              [-77.094126, 38.906354],\n              [-77.094142, 38.906365],\n              [-77.094158, 38.906377],\n              [-77.094193, 38.906402],\n              [-77.094213, 38.906416],\n              [-77.094229, 38.906428],\n              [-77.094249, 38.906442],\n              [-77.094264, 38.906453],\n              [-77.094288, 38.90647],\n              [-77.094306, 38.906484],\n              [-77.094327, 38.906498],\n              [-77.094345, 38.906511],\n              [-77.094366, 38.906526],\n              [-77.094385, 38.90654],\n              [-77.094405, 38.906554],\n              [-77.094423, 38.906567],\n              [-77.094445, 38.906583],\n              [-77.094464, 38.906597],\n              [-77.094484, 38.906611],\n              [-77.094505, 38.906626],\n              [-77.094523, 38.906639],\n              [-77.094553, 38.906661],\n              [-77.094592, 38.906689],\n              [-77.094624, 38.906712],\n              [-77.094648, 38.906729],\n              [-77.094674, 38.906748],\n              [-77.094722, 38.906782],\n              [-77.094745, 38.906799],\n              [-77.094773, 38.906819],\n              [-77.094805, 38.906842],\n              [-77.094832, 38.906861],\n              [-77.094858, 38.906881],\n              [-77.094886, 38.9069],\n              [-77.094952, 38.906948],\n              [-77.09498, 38.906968],\n              [-77.095013, 38.906992],\n              [-77.095031, 38.907005],\n              [-77.095075, 38.907037],\n              [-77.095104, 38.907058],\n              [-77.095132, 38.907078],\n              [-77.095158, 38.907097],\n              [-77.095173, 38.907109],\n              [-77.095198, 38.907126],\n              [-77.095221, 38.907143],\n              [-77.095241, 38.907158],\n              [-77.09526, 38.907171],\n              [-77.095274, 38.907182],\n              [-77.095299, 38.907199],\n              [-77.095322, 38.907216],\n              [-77.095347, 38.907233],\n              [-77.095367, 38.907248],\n              [-77.095392, 38.907266],\n              [-77.095414, 38.907281],\n              [-77.095432, 38.907294],\n              [-77.095449, 38.907308],\n              [-77.095466, 38.90732],\n              [-77.095493, 38.907338],\n              [-77.095521, 38.907358],\n              [-77.095544, 38.907375],\n              [-77.095567, 38.907393],\n              [-77.095589, 38.90741],\n              [-77.095623, 38.907432],\n              [-77.095651, 38.907454],\n              [-77.095678, 38.907471],\n              [-77.095696, 38.907486],\n              [-77.095719, 38.907503],\n              [-77.095747, 38.907523],\n              [-77.095769, 38.907539],\n              [-77.095798, 38.907559],\n              [-77.095822, 38.907576],\n              [-77.095847, 38.907593],\n              [-77.095868, 38.907609],\n              [-77.095888, 38.907624],\n              [-77.095914, 38.907642],\n              [-77.095958, 38.907674],\n              [-77.095982, 38.907691],\n              [-77.096, 38.907705],\n              [-77.096017, 38.907717],\n              [-77.096039, 38.907732],\n              [-77.096062, 38.907749],\n              [-77.09609, 38.90777],\n              [-77.096123, 38.907793],\n              [-77.096147, 38.90781],\n              [-77.096173, 38.907829],\n              [-77.096205, 38.907852],\n              [-77.096235, 38.907874],\n              [-77.096291, 38.907914],\n              [-77.09631, 38.907928],\n              [-77.096332, 38.907944],\n              [-77.096355, 38.90796],\n              [-77.096377, 38.907977],\n              [-77.096399, 38.907992],\n              [-77.096416, 38.908004],\n              [-77.096434, 38.908018],\n              [-77.096455, 38.908032],\n              [-77.096478, 38.908049],\n              [-77.096496, 38.908063],\n              [-77.096522, 38.908081],\n              [-77.096545, 38.908097],\n              [-77.096567, 38.908113],\n              [-77.096603, 38.908139],\n              [-77.096622, 38.908153],\n              [-77.096646, 38.90817],\n              [-77.096664, 38.908184],\n              [-77.096685, 38.908198],\n              [-77.096709, 38.908217],\n              [-77.096731, 38.908231],\n              [-77.096751, 38.908246],\n              [-77.096775, 38.908263],\n              [-77.096796, 38.908278],\n              [-77.096814, 38.908291],\n              [-77.096833, 38.908305],\n              [-77.096856, 38.908322],\n              [-77.096876, 38.908336],\n              [-77.096901, 38.908354],\n              [-77.096918, 38.908367],\n              [-77.096939, 38.908381],\n              [-77.096961, 38.908397],\n              [-77.096972, 38.908406],\n              [-77.096993, 38.90842],\n              [-77.097008, 38.908431],\n              [-77.097029, 38.908446],\n              [-77.097047, 38.908461],\n              [-77.097063, 38.908471],\n              [-77.097087, 38.908488],\n              [-77.097132, 38.908521],\n              [-77.097164, 38.908544],\n              [-77.097191, 38.908564],\n              [-77.097205, 38.908575],\n              [-77.097225, 38.908589],\n              [-77.097252, 38.908608],\n              [-77.097276, 38.908625],\n              [-77.097301, 38.908644],\n              [-77.097343, 38.908673],\n              [-77.097357, 38.908685],\n              [-77.097378, 38.908699],\n              [-77.097398, 38.908713],\n              [-77.097413, 38.908724],\n              [-77.097451, 38.908752],\n              [-77.097472, 38.908767],\n              [-77.09749, 38.90878],\n              [-77.097507, 38.908792],\n              [-77.097526, 38.908806],\n              [-77.097546, 38.90882],\n              [-77.097559, 38.908831],\n              [-77.097581, 38.908845],\n              [-77.097599, 38.908859],\n              [-77.097619, 38.908873],\n              [-77.097638, 38.908887],\n              [-77.09766, 38.908902],\n              [-77.097682, 38.908918],\n              [-77.097702, 38.908933],\n              [-77.097723, 38.908949],\n              [-77.097748, 38.908966],\n              [-77.097771, 38.908983],\n              [-77.097795, 38.909],\n              [-77.097824, 38.909021],\n              [-77.097845, 38.909037],\n              [-77.097869, 38.909054],\n              [-77.097894, 38.909072],\n              [-77.097914, 38.909087],\n              [-77.097939, 38.909104],\n              [-77.097962, 38.909121],\n              [-77.097986, 38.909138],\n              [-77.098004, 38.909152],\n              [-77.098027, 38.909169],\n              [-77.098052, 38.909186],\n              [-77.098076, 38.909203],\n              [-77.0981, 38.909221],\n              [-77.098142, 38.909251],\n              [-77.098164, 38.909267],\n              [-77.098188, 38.909284],\n              [-77.098211, 38.909301],\n              [-77.098237, 38.90932],\n              [-77.098257, 38.909335],\n              [-77.09828, 38.909351],\n              [-77.098305, 38.909369],\n              [-77.098327, 38.909385],\n              [-77.098351, 38.909402],\n              [-77.098374, 38.909419],\n              [-77.098398, 38.909436],\n              [-77.098421, 38.909453],\n              [-77.098445, 38.90947],\n              [-77.098464, 38.909484],\n              [-77.098482, 38.909497],\n              [-77.098507, 38.909514],\n              [-77.09853, 38.909531],\n              [-77.098554, 38.909548],\n              [-77.09858, 38.909567],\n              [-77.098603, 38.909584],\n              [-77.098659, 38.909624],\n              [-77.098682, 38.909641],\n              [-77.098732, 38.909677],\n              [-77.098759, 38.909697],\n              [-77.098786, 38.909715],\n              [-77.098811, 38.909734],\n              [-77.098836, 38.909752],\n              [-77.098859, 38.909768],\n              [-77.098887, 38.909788],\n              [-77.098941, 38.909828],\n              [-77.098965, 38.909845],\n              [-77.098978, 38.909854],\n              [-77.098994, 38.909866],\n              [-77.099011, 38.909878],\n              [-77.099028, 38.909891],\n              [-77.099045, 38.909903],\n              [-77.099065, 38.909918],\n              [-77.099083, 38.90993],\n              [-77.099125, 38.90996],\n              [-77.099163, 38.909988],\n              [-77.099185, 38.910004],\n              [-77.099204, 38.910018],\n              [-77.099242, 38.910044],\n              [-77.099264, 38.91006],\n              [-77.099283, 38.910075],\n              [-77.099304, 38.910089],\n              [-77.099323, 38.910103],\n              [-77.099345, 38.91012],\n              [-77.099367, 38.910134],\n              [-77.099393, 38.910154],\n              [-77.099413, 38.910168],\n              [-77.099432, 38.910181],\n              [-77.099459, 38.910201],\n              [-77.099483, 38.91022],\n              [-77.099511, 38.910238],\n              [-77.099599, 38.910302],\n              [-77.099619, 38.910317],\n              [-77.099641, 38.910332],\n              [-77.099663, 38.910348],\n              [-77.099682, 38.910362],\n              [-77.099707, 38.91038],\n              [-77.099736, 38.910401],\n              [-77.099764, 38.910421],\n              [-77.099783, 38.910435],\n              [-77.099819, 38.910461],\n              [-77.099833, 38.910472],\n              [-77.099861, 38.910491],\n              [-77.099888, 38.910511],\n              [-77.099911, 38.910528],\n              [-77.09993, 38.910541],\n              [-77.099958, 38.910562],\n              [-77.099974, 38.910573],\n              [-77.099992, 38.910586],\n              [-77.100002, 38.910593],\n              [-77.100017, 38.910604],\n              [-77.10005, 38.91063],\n              [-77.100066, 38.91064],\n              [-77.100079, 38.910649],\n              [-77.100102, 38.910666],\n              [-77.100125, 38.910682],\n              [-77.100154, 38.910703],\n              [-77.100201, 38.910738],\n              [-77.100204, 38.910737],\n              [-77.100218, 38.910747],\n              [-77.100254, 38.910773],\n              [-77.100268, 38.910784],\n              [-77.100286, 38.910797],\n              [-77.100312, 38.910815],\n              [-77.100319, 38.91082],\n              [-77.100341, 38.910836],\n              [-77.100362, 38.910851],\n              [-77.100384, 38.910867],\n              [-77.100404, 38.910882],\n              [-77.100462, 38.910925],\n              [-77.100464, 38.910925],\n              [-77.10049, 38.910944],\n              [-77.100512, 38.91096],\n              [-77.100529, 38.910971],\n              [-77.100559, 38.910993],\n              [-77.100588, 38.911014],\n              [-77.10059, 38.911015],\n              [-77.100615, 38.911033],\n              [-77.100637, 38.911049],\n              [-77.100643, 38.911053],\n              [-77.100714, 38.91111],\n              [-77.100715, 38.911121],\n              [-77.100725, 38.911129],\n              [-77.100749, 38.911146],\n              [-77.100777, 38.911161],\n              [-77.100813, 38.91117],\n              [-77.100838, 38.911188],\n              [-77.100861, 38.911217],\n              [-77.100899, 38.911233],\n              [-77.100924, 38.911241],\n              [-77.100949, 38.911252],\n              [-77.100973, 38.911265],\n              [-77.100995, 38.911279],\n              [-77.101017, 38.911291],\n              [-77.101039, 38.911304],\n              [-77.10106, 38.911316],\n              [-77.101092, 38.911336],\n              [-77.101109, 38.911356],\n              [-77.101107, 38.911376],\n              [-77.101143, 38.91138],\n              [-77.101165, 38.911393],\n              [-77.101189, 38.911409],\n              [-77.101216, 38.911407],\n              [-77.10125, 38.911424],\n              [-77.101275, 38.911442],\n              [-77.101308, 38.911452],\n              [-77.101336, 38.911463],\n              [-77.101346, 38.91149],\n              [-77.101365, 38.911514],\n              [-77.101386, 38.911538],\n              [-77.101409, 38.911548],\n              [-77.101434, 38.911557],\n              [-77.101446, 38.911573],\n              [-77.101462, 38.911589],\n              [-77.101477, 38.911575],\n              [-77.101498, 38.911562],\n              [-77.101525, 38.911557],\n              [-77.101555, 38.91157],\n              [-77.101576, 38.911583],\n              [-77.101596, 38.911597],\n              [-77.101614, 38.911611],\n              [-77.101632, 38.911626],\n              [-77.101659, 38.911648],\n              [-77.10168, 38.911663],\n              [-77.101714, 38.911687],\n              [-77.101732, 38.9117],\n              [-77.101748, 38.911713],\n              [-77.101768, 38.911734],\n              [-77.101776, 38.911755],\n              [-77.101789, 38.911772],\n              [-77.101818, 38.911775],\n              [-77.101848, 38.911793],\n              [-77.101881, 38.911813],\n              [-77.101899, 38.911826],\n              [-77.10192, 38.911843],\n              [-77.101941, 38.911856],\n              [-77.101965, 38.911878],\n              [-77.101984, 38.911902],\n              [-77.102006, 38.911914],\n              [-77.102034, 38.911924],\n              [-77.102052, 38.91194],\n              [-77.10207, 38.911957],\n              [-77.102087, 38.911973],\n              [-77.102102, 38.912002],\n              [-77.102114, 38.912029],\n              [-77.102144, 38.912044],\n              [-77.102159, 38.91206],\n              [-77.102188, 38.912063],\n              [-77.102208, 38.912085],\n              [-77.102228, 38.912108],\n              [-77.102247, 38.912132],\n              [-77.102269, 38.912157],\n              [-77.102292, 38.912181],\n              [-77.102313, 38.912203],\n              [-77.102333, 38.912225],\n              [-77.102351, 38.912248],\n              [-77.102369, 38.91227],\n              [-77.102385, 38.912292],\n              [-77.102399, 38.912312],\n              [-77.102413, 38.91233],\n              [-77.102431, 38.912343],\n              [-77.102467, 38.912351],\n              [-77.102491, 38.912351],\n              [-77.102519, 38.912355],\n              [-77.102545, 38.912362],\n              [-77.102569, 38.912374],\n              [-77.102589, 38.91239],\n              [-77.102611, 38.912411],\n              [-77.102634, 38.912434],\n              [-77.102654, 38.912455],\n              [-77.102672, 38.912476],\n              [-77.102686, 38.912494],\n              [-77.102693, 38.912513],\n              [-77.102694, 38.912531],\n              [-77.102691, 38.912563],\n              [-77.102718, 38.912586],\n              [-77.102757, 38.912607],\n              [-77.102781, 38.912615],\n              [-77.102805, 38.912624],\n              [-77.102835, 38.912631],\n              [-77.102867, 38.91264],\n              [-77.102893, 38.912649],\n              [-77.10292, 38.912661],\n              [-77.10295, 38.912676],\n              [-77.102981, 38.912697],\n              [-77.103007, 38.912716],\n              [-77.103032, 38.912738],\n              [-77.103055, 38.91276],\n              [-77.103075, 38.912787],\n              [-77.103091, 38.912813],\n              [-77.103106, 38.91284],\n              [-77.103125, 38.912869],\n              [-77.103147, 38.912898],\n              [-77.103169, 38.912925],\n              [-77.103189, 38.912954],\n              [-77.103209, 38.912982],\n              [-77.103226, 38.913009],\n              [-77.103245, 38.913038],\n              [-77.103265, 38.913066],\n              [-77.103284, 38.913093],\n              [-77.103304, 38.913121],\n              [-77.103322, 38.91315],\n              [-77.103342, 38.913177],\n              [-77.103362, 38.913205],\n              [-77.103383, 38.913235],\n              [-77.1034, 38.913261],\n              [-77.103417, 38.913289],\n              [-77.10343, 38.913316],\n              [-77.103434, 38.91333],\n              [-77.103438, 38.91334],\n              [-77.103441, 38.913364],\n              [-77.103442, 38.913392],\n              [-77.103449, 38.913418],\n              [-77.103461, 38.91344],\n              [-77.103472, 38.913463],\n              [-77.103476, 38.913489],\n              [-77.103476, 38.913538],\n              [-77.103475, 38.913569],\n              [-77.103473, 38.9136],\n              [-77.103471, 38.913629],\n              [-77.103469, 38.913661],\n              [-77.103469, 38.913691],\n              [-77.103473, 38.913786],\n              [-77.103476, 38.913813],\n              [-77.103482, 38.913832],\n              [-77.103489, 38.913851],\n              [-77.103499, 38.913885],\n              [-77.103504, 38.91392],\n              [-77.103505, 38.913949],\n              [-77.103506, 38.913968],\n              [-77.103506, 38.914004],\n              [-77.103505, 38.914026],\n              [-77.103503, 38.914045],\n              [-77.103503, 38.914064],\n              [-77.1035, 38.914084],\n              [-77.103499, 38.914108],\n              [-77.103499, 38.914129],\n              [-77.103496, 38.914148],\n              [-77.103493, 38.914166],\n              [-77.103492, 38.914187],\n              [-77.103494, 38.914209],\n              [-77.103496, 38.914229],\n              [-77.103499, 38.914249],\n              [-77.103503, 38.914269],\n              [-77.103507, 38.914292],\n              [-77.10351, 38.914312],\n              [-77.103514, 38.914331],\n              [-77.103522, 38.914351],\n              [-77.103531, 38.914373],\n              [-77.10354, 38.914393],\n              [-77.103549, 38.914412],\n              [-77.103563, 38.914452],\n              [-77.103582, 38.91449],\n              [-77.10359, 38.914507],\n              [-77.103595, 38.914526],\n              [-77.103598, 38.914547],\n              [-77.103599, 38.914566],\n              [-77.103603, 38.914601],\n              [-77.103607, 38.91462],\n              [-77.103612, 38.914642],\n              [-77.103614, 38.914661],\n              [-77.103616, 38.914681],\n              [-77.103619, 38.914701],\n              [-77.103624, 38.914724],\n              [-77.103632, 38.914745],\n              [-77.10364, 38.914765],\n              [-77.103649, 38.914786],\n              [-77.103656, 38.914808],\n              [-77.103665, 38.914829],\n              [-77.103677, 38.914849],\n              [-77.103688, 38.91487],\n              [-77.103697, 38.914893],\n              [-77.103706, 38.914915],\n              [-77.103718, 38.914935],\n              [-77.10373, 38.914954],\n              [-77.103741, 38.914972],\n              [-77.10375, 38.914994],\n              [-77.103757, 38.915014],\n              [-77.103766, 38.915035],\n              [-77.103776, 38.915056],\n              [-77.103787, 38.915079],\n              [-77.103796, 38.915099],\n              [-77.103806, 38.915118],\n              [-77.103819, 38.915138],\n              [-77.103833, 38.915158],\n              [-77.103847, 38.915179],\n              [-77.103861, 38.915198],\n              [-77.103874, 38.915216],\n              [-77.10389, 38.915232],\n              [-77.103906, 38.915252],\n              [-77.10392, 38.915272],\n              [-77.103939, 38.91531],\n              [-77.103973, 38.915374],\n              [-77.103985, 38.91541],\n              [-77.10399, 38.915432],\n              [-77.103993, 38.915452],\n              [-77.103997, 38.915471],\n              [-77.103999, 38.91549],\n              [-77.104002, 38.91551],\n              [-77.104003, 38.91553],\n              [-77.104005, 38.91555],\n              [-77.104008, 38.915569],\n              [-77.104009, 38.915589],\n              [-77.104012, 38.915611],\n              [-77.104018, 38.915631],\n              [-77.104023, 38.91565],\n              [-77.104029, 38.915668],\n              [-77.104037, 38.915685],\n              [-77.104046, 38.915704],\n              [-77.104062, 38.915738],\n              [-77.104073, 38.915773],\n              [-77.10408, 38.915794],\n              [-77.104088, 38.915813],\n              [-77.104096, 38.915833],\n              [-77.104105, 38.915852],\n              [-77.104113, 38.915873],\n              [-77.10412, 38.915893],\n              [-77.104127, 38.915912],\n              [-77.104136, 38.915931],\n              [-77.104146, 38.91595],\n              [-77.104159, 38.915969],\n              [-77.104173, 38.915987],\n              [-77.104187, 38.916003],\n              [-77.104198, 38.91602],\n              [-77.104209, 38.916039],\n              [-77.104218, 38.916057],\n              [-77.104235, 38.916086],\n              [-77.104244, 38.91611],\n              [-77.10425, 38.916144],\n              [-77.104263, 38.916161],\n              [-77.10428, 38.916177],\n              [-77.104299, 38.916191],\n              [-77.104316, 38.916205],\n              [-77.104332, 38.91622],\n              [-77.104346, 38.916236],\n              [-77.104359, 38.916251],\n              [-77.104373, 38.916268],\n              [-77.104384, 38.916284],\n              [-77.104397, 38.916301],\n              [-77.104411, 38.916318],\n              [-77.104427, 38.916332],\n              [-77.104444, 38.916347],\n              [-77.104461, 38.916363],\n              [-77.104474, 38.916379],\n              [-77.10449, 38.916396],\n              [-77.104508, 38.916413],\n              [-77.104528, 38.916431],\n              [-77.104547, 38.916447],\n              [-77.104565, 38.916463],\n              [-77.10458, 38.916478],\n              [-77.104592, 38.916495],\n              [-77.104621, 38.916525],\n              [-77.104653, 38.916555],\n              [-77.104675, 38.916584],\n              [-77.10469, 38.916602],\n              [-77.104703, 38.916626],\n              [-77.104722, 38.91665],\n              [-77.104745, 38.916675],\n              [-77.10477, 38.9167],\n              [-77.104792, 38.916727],\n              [-77.104816, 38.916751],\n              [-77.104828, 38.916774],\n              [-77.104846, 38.916799],\n              [-77.104888, 38.916857],\n              [-77.104911, 38.916885],\n              [-77.104932, 38.916915],\n              [-77.104972, 38.916963],\n              [-77.104998, 38.91699],\n              [-77.105013, 38.917007],\n              [-77.105026, 38.917023],\n              [-77.105045, 38.917052],\n              [-77.105062, 38.917079],\n              [-77.105075, 38.917095],\n              [-77.105095, 38.917118],\n              [-77.105103, 38.917144],\n              [-77.105101, 38.917171],\n              [-77.105115, 38.917196],\n              [-77.105146, 38.917208],\n              [-77.105168, 38.917232],\n              [-77.10517, 38.917256],\n              [-77.105159, 38.917279],\n              [-77.105146, 38.917298],\n              [-77.105163, 38.917313],\n              [-77.105169, 38.917339],\n              [-77.105194, 38.917354],\n              [-77.105222, 38.917355],\n              [-77.105243, 38.917344],\n              [-77.105268, 38.917346],\n              [-77.105296, 38.917349],\n              [-77.105316, 38.917366],\n              [-77.105337, 38.91738],\n              [-77.105352, 38.917397],\n              [-77.105355, 38.917421],\n              [-77.105359, 38.917455],\n              [-77.105373, 38.917471],\n              [-77.105395, 38.917461],\n              [-77.105419, 38.917461],\n              [-77.105441, 38.917472],\n              [-77.105448, 38.917492],\n              [-77.105452, 38.917514],\n              [-77.10547, 38.917534],\n              [-77.105493, 38.917553],\n              [-77.105512, 38.917571],\n              [-77.105519, 38.917592],\n              [-77.105531, 38.917613],\n              [-77.105556, 38.917627],\n              [-77.105589, 38.917638],\n              [-77.105593, 38.917664],\n              [-77.105588, 38.917685],\n              [-77.105609, 38.917703],\n              [-77.1056, 38.917722],\n              [-77.105598, 38.91774],\n              [-77.105598, 38.917759],\n              [-77.105615, 38.917773],\n              [-77.10562, 38.917806],\n              [-77.105626, 38.917825],\n              [-77.105622, 38.917843],\n              [-77.105624, 38.917863],\n              [-77.105634, 38.917885],\n              [-77.105638, 38.917904],\n              [-77.10566, 38.917918],\n              [-77.105688, 38.917926],\n              [-77.105672, 38.917947],\n              [-77.105685, 38.917964],\n              [-77.105671, 38.917987],\n              [-77.105675, 38.918005],\n              [-77.105711, 38.918014],\n              [-77.105714, 38.918036],\n              [-77.105706, 38.918053],\n              [-77.105718, 38.918072],\n              [-77.105732, 38.918095],\n              [-77.105746, 38.91812],\n              [-77.105728, 38.918142],\n              [-77.105739, 38.918158],\n              [-77.105726, 38.918178],\n              [-77.105725, 38.918202],\n              [-77.105738, 38.918225],\n              [-77.105747, 38.91825],\n              [-77.10573, 38.918262],\n              [-77.10573, 38.918285],\n              [-77.105736, 38.91831],\n              [-77.105754, 38.918325],\n              [-77.10577, 38.91831],\n              [-77.105786, 38.918324],\n              [-77.105815, 38.918337],\n              [-77.105825, 38.918354],\n              [-77.105836, 38.918372],\n              [-77.105839, 38.918396],\n              [-77.10584, 38.918417],\n              [-77.105841, 38.918439],\n              [-77.10586, 38.918456],\n              [-77.105866, 38.91848],\n              [-77.105872, 38.9185],\n              [-77.10588, 38.918521],\n              [-77.105903, 38.918533],\n              [-77.105928, 38.91854],\n              [-77.105945, 38.918553],\n              [-77.105943, 38.918573],\n              [-77.105946, 38.918592],\n              [-77.105963, 38.91861],\n              [-77.105988, 38.918613],\n              [-77.106011, 38.918611],\n              [-77.106025, 38.91863],\n              [-77.106041, 38.918648],\n              [-77.106045, 38.918672],\n              [-77.106063, 38.918687],\n              [-77.106079, 38.918707],\n              [-77.106101, 38.91873],\n              [-77.106123, 38.918755],\n              [-77.106142, 38.918788],\n              [-77.106152, 38.918807],\n              [-77.106162, 38.918824],\n              [-77.106169, 38.918841],\n              [-77.106177, 38.918859],\n              [-77.106191, 38.918894],\n              [-77.106196, 38.918912],\n              [-77.106201, 38.918931],\n              [-77.10622, 38.918963],\n              [-77.106227, 38.918983],\n              [-77.106234, 38.919015],\n              [-77.10622, 38.919042],\n              [-77.106212, 38.919072],\n              [-77.106229, 38.919094],\n              [-77.106247, 38.919109],\n              [-77.106265, 38.919127],\n              [-77.106277, 38.919148],\n              [-77.106268, 38.919172],\n              [-77.106277, 38.919193],\n              [-77.106302, 38.919195],\n              [-77.106333, 38.919212],\n              [-77.106342, 38.919236],\n              [-77.106343, 38.919266],\n              [-77.106348, 38.919284],\n              [-77.10637, 38.919301],\n              [-77.106399, 38.919312],\n              [-77.106421, 38.919326],\n              [-77.106445, 38.919333],\n              [-77.106468, 38.919355],\n              [-77.106477, 38.919377],\n              [-77.106471, 38.919399],\n              [-77.10648, 38.919426],\n              [-77.106499, 38.91945],\n              [-77.106521, 38.919472],\n              [-77.106545, 38.919485],\n              [-77.106573, 38.919497],\n              [-77.106579, 38.919519],\n              [-77.106574, 38.919545],\n              [-77.106586, 38.919562],\n              [-77.10661, 38.919548],\n              [-77.106637, 38.919553],\n              [-77.106661, 38.919564],\n              [-77.10667, 38.919592],\n              [-77.106678, 38.919609],\n              [-77.106694, 38.919641],\n              [-77.106708, 38.919668],\n              [-77.106729, 38.919695],\n              [-77.106751, 38.919723],\n              [-77.106774, 38.919748],\n              [-77.106798, 38.919773],\n              [-77.106821, 38.919799],\n              [-77.106837, 38.919821],\n              [-77.106853, 38.919847],\n              [-77.10687, 38.91987],\n              [-77.10688, 38.919897],\n              [-77.106874, 38.919916],\n              [-77.106828, 38.919946],\n              [-77.106811, 38.919965],\n              [-77.106802, 38.919989],\n              [-77.106796, 38.920013],\n              [-77.106803, 38.920034],\n              [-77.10683, 38.920041],\n              [-77.106854, 38.920039],\n              [-77.106875, 38.920024],\n              [-77.106897, 38.92001],\n              [-77.10692, 38.919997],\n              [-77.106951, 38.919984],\n              [-77.106977, 38.919991],\n              [-77.106993, 38.92001],\n              [-77.107003, 38.920038],\n              [-77.107012, 38.920065],\n              [-77.107021, 38.920091],\n              [-77.107035, 38.920114],\n              [-77.107046, 38.920132],\n              [-77.107063, 38.920154],\n              [-77.107088, 38.920171],\n              [-77.107091, 38.920173],\n              [-77.107113, 38.920183],\n              [-77.107132, 38.920194],\n              [-77.107165, 38.920183],\n              [-77.107222, 38.920235],\n              [-77.10726, 38.920265],\n              [-77.107247, 38.920284],\n              [-77.107263, 38.920305],\n              [-77.107286, 38.920319],\n              [-77.107312, 38.920336],\n              [-77.107341, 38.920349],\n              [-77.107368, 38.920363],\n              [-77.107393, 38.92038],\n              [-77.10742, 38.920396],\n              [-77.107449, 38.920419],\n              [-77.107478, 38.920441],\n              [-77.1075, 38.920467],\n              [-77.107519, 38.920496],\n              [-77.107537, 38.920523],\n              [-77.107555, 38.920551],\n              [-77.107567, 38.92058],\n              [-77.107582, 38.92061],\n              [-77.107605, 38.920641],\n              [-77.107628, 38.920669],\n              [-77.107648, 38.920695],\n              [-77.107656, 38.920725],\n              [-77.10767, 38.920747],\n              [-77.107681, 38.920766],\n              [-77.107671, 38.920789],\n              [-77.107694, 38.920791],\n              [-77.107719, 38.920782],\n              [-77.107738, 38.920799],\n              [-77.107741, 38.920824],\n              [-77.107758, 38.920843],\n              [-77.10778, 38.920864],\n              [-77.107804, 38.920874],\n              [-77.107829, 38.920882],\n              [-77.107842, 38.9209],\n              [-77.107872, 38.920907],\n              [-77.107899, 38.92092],\n              [-77.107921, 38.920933],\n              [-77.107941, 38.920949],\n              [-77.107973, 38.920957],\n              [-77.107995, 38.920966],\n              [-77.108017, 38.920986],\n              [-77.108048, 38.921007],\n              [-77.108062, 38.921022],\n              [-77.108085, 38.921047],\n              [-77.108114, 38.921067],\n              [-77.108136, 38.921087],\n              [-77.108148, 38.921109],\n              [-77.108172, 38.921126],\n              [-77.108188, 38.921148],\n              [-77.108201, 38.921178],\n              [-77.108207, 38.921211],\n              [-77.10821, 38.921241],\n              [-77.108206, 38.921263],\n              [-77.10821, 38.921285],\n              [-77.108237, 38.921287],\n              [-77.108255, 38.9213],\n              [-77.10828, 38.921325],\n              [-77.108293, 38.921344],\n              [-77.108325, 38.921347],\n              [-77.108355, 38.921357],\n              [-77.108375, 38.921377],\n              [-77.108389, 38.921396],\n              [-77.108411, 38.921417],\n              [-77.10843, 38.921438],\n              [-77.10843, 38.921466],\n              [-77.108445, 38.921486],\n              [-77.108461, 38.921498],\n              [-77.108478, 38.921526],\n              [-77.108492, 38.921546],\n              [-77.108487, 38.921568],\n              [-77.108489, 38.921589],\n              [-77.108515, 38.921602],\n              [-77.108531, 38.921625],\n              [-77.108515, 38.921644],\n              [-77.108533, 38.921656],\n              [-77.108555, 38.921649],\n              [-77.108573, 38.921634],\n              [-77.108594, 38.921618],\n              [-77.108617, 38.921636],\n              [-77.108634, 38.921654],\n              [-77.108654, 38.921671],\n              [-77.108671, 38.921687],\n              [-77.108683, 38.921709],\n              [-77.108705, 38.921725],\n              [-77.108729, 38.921728],\n              [-77.108757, 38.921732],\n              [-77.10876, 38.921752],\n              [-77.108757, 38.921775],\n              [-77.108748, 38.921798],\n              [-77.108748, 38.921821],\n              [-77.108769, 38.921836],\n              [-77.108792, 38.921842],\n              [-77.108819, 38.921831],\n              [-77.10885, 38.921836],\n              [-77.108847, 38.921856],\n              [-77.108848, 38.921879],\n              [-77.108878, 38.921878],\n              [-77.108904, 38.921867],\n              [-77.108929, 38.921873],\n              [-77.108957, 38.921864],\n              [-77.108976, 38.921848],\n              [-77.109001, 38.921864],\n              [-77.109008, 38.921886],\n              [-77.109024, 38.921901],\n              [-77.109046, 38.921913],\n              [-77.10907, 38.921922],\n              [-77.109095, 38.921933],\n              [-77.109116, 38.921948],\n              [-77.109131, 38.921966],\n              [-77.10914, 38.921989],\n              [-77.109143, 38.922009],\n              [-77.10916, 38.922024],\n              [-77.10918, 38.922047],\n              [-77.109194, 38.922062],\n              [-77.109216, 38.922076],\n              [-77.10924, 38.922083],\n              [-77.109262, 38.922093],\n              [-77.109286, 38.922105],\n              [-77.109321, 38.922117],\n              [-77.109346, 38.922137],\n              [-77.109383, 38.922174],\n              [-77.10939, 38.922197],\n              [-77.10938, 38.922216],\n              [-77.109369, 38.922234],\n              [-77.109369, 38.922255],\n              [-77.10939, 38.922247],\n              [-77.109404, 38.922231],\n              [-77.109428, 38.922236],\n              [-77.109456, 38.922248],\n              [-77.109491, 38.922257],\n              [-77.109517, 38.922272],\n              [-77.109547, 38.922293],\n              [-77.10958, 38.922312],\n              [-77.109614, 38.922331],\n              [-77.109655, 38.922344],\n              [-77.10969, 38.922364],\n              [-77.109714, 38.922389],\n              [-77.109721, 38.922411],\n              [-77.109737, 38.922425],\n              [-77.109775, 38.922434],\n              [-77.109812, 38.922453],\n              [-77.109844, 38.922466],\n              [-77.10987, 38.922486],\n              [-77.109891, 38.922514],\n              [-77.109899, 38.922531],\n              [-77.109907, 38.922563],\n              [-77.109913, 38.922592],\n              [-77.109924, 38.92262],\n              [-77.109941, 38.92264],\n              [-77.109968, 38.922653],\n              [-77.109998, 38.922666],\n              [-77.11002, 38.922682],\n              [-77.110023, 38.922706],\n              [-77.110039, 38.922722],\n              [-77.110067, 38.922721],\n              [-77.110098, 38.922724],\n              [-77.110124, 38.92274],\n              [-77.110136, 38.922763],\n              [-77.110157, 38.922774],\n              [-77.110188, 38.922786],\n              [-77.11021, 38.922803],\n              [-77.110234, 38.922816],\n              [-77.110257, 38.922813],\n              [-77.110283, 38.922821],\n              [-77.110301, 38.922838],\n              [-77.110318, 38.922862],\n              [-77.110342, 38.922876],\n              [-77.110359, 38.922901],\n              [-77.110374, 38.922925],\n              [-77.110386, 38.922943],\n              [-77.110388, 38.922964],\n              [-77.110407, 38.922981],\n              [-77.110431, 38.922969],\n              [-77.110456, 38.922987],\n              [-77.11048, 38.923001],\n              [-77.110511, 38.923012],\n              [-77.110544, 38.923023],\n              [-77.11057, 38.923039],\n              [-77.110585, 38.923072],\n              [-77.110605, 38.923104],\n              [-77.110631, 38.923134],\n              [-77.110646, 38.923161],\n              [-77.110648, 38.923182],\n              [-77.110676, 38.923196],\n              [-77.110694, 38.923217],\n              [-77.110717, 38.923226],\n              [-77.110746, 38.923242],\n              [-77.110778, 38.923259],\n              [-77.110807, 38.923278],\n              [-77.110837, 38.923296],\n              [-77.110863, 38.92332],\n              [-77.110885, 38.923348],\n              [-77.110904, 38.923374],\n              [-77.110906, 38.923401],\n              [-77.110896, 38.923423],\n              [-77.110911, 38.92344],\n              [-77.110942, 38.923434],\n              [-77.110967, 38.923434],\n              [-77.110975, 38.923455],\n              [-77.111001, 38.923468],\n              [-77.111031, 38.923477],\n              [-77.111064, 38.923486],\n              [-77.11109, 38.923491],\n              [-77.111113, 38.923501],\n              [-77.111136, 38.923509],\n              [-77.111165, 38.923518],\n              [-77.111177, 38.923543],\n              [-77.111186, 38.923564],\n              [-77.111216, 38.923575],\n              [-77.111227, 38.923592],\n              [-77.111254, 38.923593],\n              [-77.111275, 38.923607],\n              [-77.11127, 38.923632],\n              [-77.11128, 38.923657],\n              [-77.111298, 38.923677],\n              [-77.111322, 38.923674],\n              [-77.111346, 38.923688],\n              [-77.11136, 38.923715],\n              [-77.111383, 38.923746],\n              [-77.111395, 38.923763],\n              [-77.111404, 38.923794],\n              [-77.111407, 38.92382],\n              [-77.111419, 38.923846],\n              [-77.111452, 38.923843],\n              [-77.111475, 38.923856],\n              [-77.1115, 38.923861],\n              [-77.111527, 38.92387],\n              [-77.111555, 38.923879],\n              [-77.111557, 38.923904],\n              [-77.111588, 38.923912],\n              [-77.111614, 38.923927],\n              [-77.111633, 38.923943],\n              [-77.111662, 38.923948],\n              [-77.111681, 38.92396],\n              [-77.111694, 38.92398],\n              [-77.111721, 38.923992],\n              [-77.111746, 38.924003],\n              [-77.111774, 38.924012],\n              [-77.1118, 38.924022],\n              [-77.111827, 38.924032],\n              [-77.111837, 38.92405],\n              [-77.111829, 38.924073],\n              [-77.111838, 38.924103],\n              [-77.111866, 38.924109],\n              [-77.111897, 38.924101],\n              [-77.111918, 38.924119],\n              [-77.111947, 38.924125],\n              [-77.111964, 38.924139],\n              [-77.11198, 38.92416],\n              [-77.111976, 38.924193],\n              [-77.111973, 38.924211],\n              [-77.111989, 38.924224],\n              [-77.11201, 38.924232],\n              [-77.112013, 38.924252],\n              [-77.112021, 38.924271],\n              [-77.112054, 38.924266],\n              [-77.112089, 38.924265],\n              [-77.112094, 38.924284],\n              [-77.112113, 38.924296],\n              [-77.112137, 38.924295],\n              [-77.112169, 38.924299],\n              [-77.112176, 38.924322],\n              [-77.112183, 38.924346],\n              [-77.112196, 38.924363],\n              [-77.112222, 38.924377],\n              [-77.112233, 38.924407],\n              [-77.112254, 38.92443],\n              [-77.112275, 38.924448],\n              [-77.112297, 38.924459],\n              [-77.112325, 38.92445],\n              [-77.11236, 38.924445],\n              [-77.112398, 38.924452],\n              [-77.112426, 38.924467],\n              [-77.112434, 38.924491],\n              [-77.112439, 38.924514],\n              [-77.112463, 38.924525],\n              [-77.112484, 38.924541],\n              [-77.11251, 38.924553],\n              [-77.112527, 38.924577],\n              [-77.11254, 38.924599],\n              [-77.112565, 38.924615],\n              [-77.112588, 38.924635],\n              [-77.112614, 38.924651],\n              [-77.11264, 38.924655],\n              [-77.112661, 38.924665],\n              [-77.11268, 38.924696],\n              [-77.112704, 38.924728],\n              [-77.112717, 38.924745],\n              [-77.112729, 38.924761],\n              [-77.112753, 38.924799],\n              [-77.112769, 38.924816],\n              [-77.112785, 38.924832],\n              [-77.1128, 38.92486],\n              [-77.112798, 38.924881],\n              [-77.112772, 38.924885],\n              [-77.112747, 38.924889],\n              [-77.112742, 38.924911],\n              [-77.112751, 38.924928],\n              [-77.112758, 38.924947],\n              [-77.112786, 38.92495],\n              [-77.112808, 38.924958],\n              [-77.112831, 38.924969],\n              [-77.112848, 38.924993],\n              [-77.112861, 38.925015],\n              [-77.112842, 38.925033],\n              [-77.112856, 38.925053],\n              [-77.112881, 38.925053],\n              [-77.112896, 38.925076],\n              [-77.112911, 38.925093],\n              [-77.112922, 38.92507],\n              [-77.11295, 38.925067],\n              [-77.112969, 38.92509],\n              [-77.112993, 38.925119],\n              [-77.113016, 38.925134],\n              [-77.113034, 38.925155],\n              [-77.11303, 38.925178],\n              [-77.113032, 38.9252],\n              [-77.113065, 38.925204],\n              [-77.113087, 38.925216],\n              [-77.113094, 38.925235],\n              [-77.1131, 38.925249],\n              [-77.113102, 38.925248],\n              [-77.113106, 38.925257],\n              [-77.113122, 38.925273],\n              [-77.113149, 38.925262],\n              [-77.113166, 38.925281],\n              [-77.113176, 38.925297],\n              [-77.113189, 38.925321],\n              [-77.113218, 38.925324],\n              [-77.113233, 38.925338],\n              [-77.113248, 38.925358],\n              [-77.11327, 38.925368],\n              [-77.113295, 38.925373],\n              [-77.11333, 38.925371],\n              [-77.113353, 38.925376],\n              [-77.11337, 38.925392],\n              [-77.113382, 38.925411],\n              [-77.113408, 38.925426],\n              [-77.113408, 38.92548],\n              [-77.113427, 38.925495],\n              [-77.113428, 38.925515],\n              [-77.113436, 38.925537],\n              [-77.11345, 38.925562],\n              [-77.113472, 38.925584],\n              [-77.113489, 38.925606],\n              [-77.113508, 38.925627],\n              [-77.11352, 38.925645],\n              [-77.113532, 38.925664],\n              [-77.113548, 38.925679],\n              [-77.113554, 38.925707],\n              [-77.113555, 38.92574],\n              [-77.113568, 38.925762],\n              [-77.113593, 38.925758],\n              [-77.113619, 38.925749],\n              [-77.113634, 38.925774],\n              [-77.113655, 38.92579],\n              [-77.113663, 38.925814],\n              [-77.113666, 38.925834],\n              [-77.113684, 38.925854],\n              [-77.113699, 38.925873],\n              [-77.113717, 38.92586],\n              [-77.113741, 38.925854],\n              [-77.11376, 38.925877],\n              [-77.11376, 38.925902],\n              [-77.113759, 38.925923],\n              [-77.113758, 38.925949],\n              [-77.11376, 38.925976],\n              [-77.113782, 38.925994],\n              [-77.113806, 38.926008],\n              [-77.113832, 38.926013],\n              [-77.113863, 38.926024],\n              [-77.113881, 38.926039],\n              [-77.113901, 38.926062],\n              [-77.113926, 38.92608],\n              [-77.113943, 38.9261],\n              [-77.113955, 38.92612],\n              [-77.113956, 38.926141],\n              [-77.11398, 38.926138],\n              [-77.114005, 38.926147],\n              [-77.114023, 38.926169],\n              [-77.114024, 38.926196],\n              [-77.114025, 38.926218],\n              [-77.114022, 38.926239],\n              [-77.114024, 38.926266],\n              [-77.11404, 38.926287],\n              [-77.114071, 38.926287],\n              [-77.114086, 38.926301],\n              [-77.114103, 38.926318],\n              [-77.114119, 38.926339],\n              [-77.114127, 38.926367],\n              [-77.114133, 38.926394],\n              [-77.114138, 38.926422],\n              [-77.114154, 38.926445],\n              [-77.114172, 38.926468],\n              [-77.114182, 38.926493],\n              [-77.114197, 38.926512],\n              [-77.114215, 38.926531],\n              [-77.114231, 38.926549],\n              [-77.114251, 38.926571],\n              [-77.114252, 38.926593],\n              [-77.114253, 38.926616],\n              [-77.114279, 38.926625],\n              [-77.114298, 38.926613],\n              [-77.114321, 38.92663],\n              [-77.11435, 38.926641],\n              [-77.114372, 38.926657],\n              [-77.11439, 38.926673],\n              [-77.114406, 38.926697],\n              [-77.114408, 38.926722],\n              [-77.114423, 38.926744],\n              [-77.114436, 38.92677],\n              [-77.114451, 38.926793],\n              [-77.114464, 38.926816],\n              [-77.114483, 38.926833],\n              [-77.114493, 38.926859],\n              [-77.114517, 38.926876],\n              [-77.114528, 38.926895],\n              [-77.114524, 38.926919],\n              [-77.11453, 38.926943],\n              [-77.114552, 38.926956],\n              [-77.114589, 38.926968],\n              [-77.114624, 38.926985],\n              [-77.114641, 38.927013],\n              [-77.114644, 38.927041],\n              [-77.11467, 38.927063],\n              [-77.114702, 38.927065],\n              [-77.114737, 38.927075],\n              [-77.114764, 38.927097],\n              [-77.114784, 38.927126],\n              [-77.114787, 38.927158],\n              [-77.114789, 38.927177],\n              [-77.11478, 38.927197],\n              [-77.114762, 38.92721],\n              [-77.114776, 38.92723],\n              [-77.114798, 38.927222],\n              [-77.114824, 38.92722],\n              [-77.114803, 38.927245],\n              [-77.114816, 38.92726],\n              [-77.11483, 38.927284],\n              [-77.114843, 38.927306],\n              [-77.114864, 38.927327],\n              [-77.114887, 38.927329],\n              [-77.114905, 38.927347],\n              [-77.114901, 38.927366],\n              [-77.114905, 38.927384],\n              [-77.114931, 38.927396],\n              [-77.114955, 38.927386],\n              [-77.114946, 38.927367],\n              [-77.114943, 38.927349],\n              [-77.114971, 38.927364],\n              [-77.114997, 38.927372],\n              [-77.115057, 38.92738],\n              [-77.115086, 38.927398],\n              [-77.115122, 38.927409],\n              [-77.11515, 38.927417],\n              [-77.115179, 38.927442],\n              [-77.115204, 38.927468],\n              [-77.11522, 38.927495],\n              [-77.115238, 38.927518],\n              [-77.115261, 38.927538],\n              [-77.115279, 38.927565],\n              [-77.115288, 38.927591],\n              [-77.115308, 38.927608],\n              [-77.115329, 38.92763],\n              [-77.115332, 38.927654],\n              [-77.115337, 38.927675],\n              [-77.115367, 38.927664],\n              [-77.11539, 38.927649],\n              [-77.115415, 38.927658],\n              [-77.115443, 38.927676],\n              [-77.11545, 38.927701],\n              [-77.115471, 38.927721],\n              [-77.115496, 38.927722],\n              [-77.11552, 38.927718],\n              [-77.115532, 38.927734],\n              [-77.115522, 38.927762],\n              [-77.115517, 38.927795],\n              [-77.11552, 38.927826],\n              [-77.11555, 38.927835],\n              [-77.115576, 38.927851],\n              [-77.115608, 38.927864],\n              [-77.115621, 38.927883],\n              [-77.115646, 38.927907],\n              [-77.115676, 38.927926],\n              [-77.115701, 38.927945],\n              [-77.115716, 38.927967],\n              [-77.115737, 38.927987],\n              [-77.115746, 38.928017],\n              [-77.115767, 38.928027],\n              [-77.115799, 38.928029],\n              [-77.115823, 38.928048],\n              [-77.115832, 38.928071],\n              [-77.115815, 38.928093],\n              [-77.11583, 38.928113],\n              [-77.115862, 38.928102],\n              [-77.115884, 38.92811],\n              [-77.115903, 38.928127],\n              [-77.115909, 38.928154],\n              [-77.115928, 38.928168],\n              [-77.115959, 38.928173],\n              [-77.115972, 38.928194],\n              [-77.115982, 38.92822],\n              [-77.115992, 38.928245],\n              [-77.116005, 38.92827],\n              [-77.116024, 38.928294],\n              [-77.116041, 38.928319],\n              [-77.116048, 38.928338],\n              [-77.116046, 38.928356],\n              [-77.116031, 38.928372],\n              [-77.116015, 38.928385],\n              [-77.116017, 38.928403],\n              [-77.116029, 38.92842],\n              [-77.116054, 38.928409],\n              [-77.116083, 38.92841],\n              [-77.116107, 38.928419],\n              [-77.116121, 38.928439],\n              [-77.116134, 38.92846],\n              [-77.116137, 38.928481],\n              [-77.116158, 38.928491],\n              [-77.116182, 38.928507],\n              [-77.116195, 38.928528],\n              [-77.116209, 38.928553],\n              [-77.116214, 38.92858],\n              [-77.116214, 38.928599],\n              [-77.116189, 38.928658],\n              [-77.116194, 38.928684],\n              [-77.116208, 38.928707],\n              [-77.116228, 38.92873],\n              [-77.116244, 38.928757],\n              [-77.116251, 38.928783],\n              [-77.116263, 38.928809],\n              [-77.116285, 38.928825],\n              [-77.116312, 38.928839],\n              [-77.116333, 38.928858],\n              [-77.11634, 38.928877],\n              [-77.116324, 38.928899],\n              [-77.116317, 38.928923],\n              [-77.116324, 38.928952],\n              [-77.11633, 38.929004],\n              [-77.116353, 38.929108],\n              [-77.116367, 38.929126],\n              [-77.116376, 38.929146],\n              [-77.11639, 38.929172],\n              [-77.116409, 38.929194],\n              [-77.116423, 38.929219],\n              [-77.116437, 38.929248],\n              [-77.116442, 38.929277],\n              [-77.116439, 38.92931],\n              [-77.116444, 38.929339],\n              [-77.116455, 38.929366],\n              [-77.116446, 38.929397],\n              [-77.116441, 38.929425],\n              [-77.116436, 38.929447],\n              [-77.116411, 38.92946],\n              [-77.11641, 38.929486],\n              [-77.116417, 38.92951],\n              [-77.116438, 38.929579],\n              [-77.116468, 38.929639],\n              [-77.116515, 38.929707],\n              [-77.116526, 38.929722],\n              [-77.116544, 38.929747],\n              [-77.11656, 38.929771],\n              [-77.116573, 38.929789],\n              [-77.116589, 38.929812],\n              [-77.1166, 38.929828],\n              [-77.11661, 38.929843],\n              [-77.116623, 38.92986],\n              [-77.116639, 38.929885],\n              [-77.116656, 38.929909],\n              [-77.116672, 38.929932],\n              [-77.116691, 38.929958],\n              [-77.116708, 38.929982],\n              [-77.11673, 38.930014],\n              [-77.116746, 38.930039],\n              [-77.116758, 38.930054],\n              [-77.11677, 38.930071],\n              [-77.116785, 38.930093],\n              [-77.116796, 38.93011],\n              [-77.116804, 38.93012],\n              [-77.11682, 38.930143],\n              [-77.116832, 38.93016],\n              [-77.116843, 38.930175],\n              [-77.116874, 38.930222],\n              [-77.116886, 38.930239],\n              [-77.116919, 38.930287],\n              [-77.116933, 38.930304],\n              [-77.116944, 38.93032],\n              [-77.116956, 38.930338],\n              [-77.116971, 38.930361],\n              [-77.116982, 38.930377],\n              [-77.116999, 38.9304],\n              [-77.117012, 38.930417],\n              [-77.117023, 38.930434],\n              [-77.11704, 38.930458],\n              [-77.117046, 38.930467],\n              [-77.117057, 38.930482],\n              [-77.117077, 38.930513],\n              [-77.117089, 38.93053],\n              [-77.117106, 38.930555],\n              [-77.117124, 38.930577],\n              [-77.117136, 38.930596],\n              [-77.117146, 38.930611],\n              [-77.117153, 38.93062],\n              [-77.117166, 38.930641],\n              [-77.11718, 38.930661],\n              [-77.117191, 38.930677],\n              [-77.117209, 38.9307],\n              [-77.117226, 38.930725],\n              [-77.117239, 38.930745],\n              [-77.117247, 38.930757],\n              [-77.117254, 38.930765],\n              [-77.117271, 38.930788],\n              [-77.117291, 38.930819],\n              [-77.11731, 38.930845],\n              [-77.117326, 38.93087],\n              [-77.117338, 38.930884],\n              [-77.11735, 38.930901],\n              [-77.117361, 38.930918],\n              [-77.11737, 38.930932],\n              [-77.117383, 38.93095],\n              [-77.1174, 38.930974],\n              [-77.117421, 38.931005],\n              [-77.117438, 38.93103],\n              [-77.117451, 38.931047],\n              [-77.117462, 38.931063],\n              [-77.117482, 38.931094],\n              [-77.117496, 38.931112],\n              [-77.117509, 38.931133],\n              [-77.117524, 38.931151],\n              [-77.117541, 38.931176],\n              [-77.117562, 38.931208],\n              [-77.11758, 38.931232],\n              [-77.117592, 38.931249],\n              [-77.117597, 38.931257],\n              [-77.117608, 38.931272],\n              [-77.117625, 38.931297],\n              [-77.117645, 38.931326],\n              [-77.117665, 38.931354],\n              [-77.117686, 38.931385],\n              [-77.117704, 38.93141],\n              [-77.11772, 38.931435],\n              [-77.117732, 38.93145],\n              [-77.117747, 38.931474],\n              [-77.11776, 38.931489],\n              [-77.117774, 38.931512],\n              [-77.117786, 38.93153],\n              [-77.117804, 38.931554],\n              [-77.117817, 38.931572],\n              [-77.117834, 38.931596],\n              [-77.117856, 38.931627],\n              [-77.117877, 38.93166],\n              [-77.11789, 38.931677],\n              [-77.117905, 38.9317],\n              [-77.11792, 38.931722],\n              [-77.117935, 38.931741],\n              [-77.117951, 38.931765],\n              [-77.117963, 38.931781],\n              [-77.117974, 38.931796],\n              [-77.117988, 38.931818],\n              [-77.118, 38.931835],\n              [-77.118011, 38.931852],\n              [-77.118029, 38.931878],\n              [-77.118047, 38.931902],\n              [-77.118059, 38.931919],\n              [-77.118076, 38.931942],\n              [-77.118096, 38.931973],\n              [-77.118113, 38.931998],\n              [-77.118132, 38.932024],\n              [-77.118149, 38.932048],\n              [-77.11816, 38.932063],\n              [-77.118175, 38.932087],\n              [-77.118183, 38.932097],\n              [-77.118199, 38.93212],\n              [-77.118216, 38.932144],\n              [-77.118232, 38.932169],\n              [-77.118244, 38.932184],\n              [-77.11826, 38.932209],\n              [-77.118277, 38.932234],\n              [-77.118295, 38.932257],\n              [-77.118306, 38.932273],\n              [-77.118323, 38.932297],\n              [-77.118338, 38.932321],\n              [-77.118351, 38.932338],\n              [-77.118373, 38.93237],\n              [-77.118385, 38.932386],\n              [-77.118396, 38.932401],\n              [-77.11841, 38.932424],\n              [-77.118424, 38.932442],\n              [-77.118436, 38.93246],\n              [-77.118453, 38.932484],\n              [-77.118468, 38.932507],\n              [-77.118479, 38.932522],\n              [-77.118492, 38.932539],\n              [-77.118506, 38.932561],\n              [-77.118524, 38.932588],\n              [-77.118537, 38.932604],\n              [-77.118553, 38.932629],\n              [-77.118564, 38.932645],\n              [-77.118577, 38.932662],\n              [-77.118588, 38.932677],\n              [-77.118598, 38.932693],\n              [-77.118613, 38.932715],\n              [-77.118631, 38.932741],\n              [-77.118647, 38.932764],\n              [-77.118655, 38.932774],\n              [-77.118675, 38.932803],\n              [-77.118689, 38.932822],\n              [-77.118706, 38.932847],\n              [-77.118723, 38.932871],\n              [-77.118739, 38.932895],\n              [-77.118748, 38.932908],\n              [-77.11876, 38.932926],\n              [-77.118783, 38.932958],\n              [-77.118802, 38.932984],\n              [-77.118819, 38.933009],\n              [-77.118836, 38.933033],\n              [-77.118852, 38.933056],\n              [-77.118864, 38.933073],\n              [-77.118877, 38.933093],\n              [-77.118892, 38.933113],\n              [-77.118912, 38.933143],\n              [-77.118926, 38.933161],\n              [-77.11894, 38.933183],\n              [-77.118953, 38.933202],\n              [-77.118965, 38.933217],\n              [-77.118985, 38.933248],\n              [-77.119004, 38.933273],\n              [-77.119016, 38.93329],\n              [-77.119031, 38.933314],\n              [-77.119049, 38.933338],\n              [-77.119072, 38.933371],\n              [-77.119083, 38.933386],\n              [-77.119094, 38.933403],\n              [-77.119106, 38.93342],\n              [-77.119121, 38.933442],\n              [-77.119139, 38.933468],\n              [-77.119156, 38.933492],\n              [-77.119164, 38.933504],\n              [-77.119183, 38.933532],\n              [-77.1192, 38.933555],\n              [-77.119213, 38.933574],\n              [-77.11923, 38.933597],\n              [-77.119246, 38.933621],\n              [-77.119263, 38.933645],\n              [-77.119282, 38.933673],\n              [-77.119296, 38.933693],\n              [-77.119312, 38.933715],\n              [-77.119328, 38.933739],\n              [-77.119342, 38.933759],\n              [-77.119361, 38.933786],\n              [-77.11937, 38.933799],\n              [-77.119384, 38.933819],\n              [-77.119395, 38.933835],\n              [-77.119414, 38.933862],\n              [-77.119432, 38.933887],\n              [-77.119466, 38.933937],\n              [-77.119488, 38.933968],\n              [-77.11951, 38.934],\n              [-77.119528, 38.934025],\n              [-77.119545, 38.93405],\n              [-77.119562, 38.934074],\n              [-77.119582, 38.934103],\n              [-77.119595, 38.934122],\n              [-77.119629, 38.93417],\n              [-77.119648, 38.934195],\n              [-77.119674, 38.934226],\n              [-77.119692, 38.934244],\n              [-77.119761, 38.934351],\n              [-77.120029, 38.934597],\n              [-77.120273, 38.934753],\n              [-77.120289, 38.934845],\n              [-77.120338, 38.934886],\n              [-77.120398, 38.934902],\n              [-77.120497, 38.934979],\n              [-77.12052, 38.935004],\n              [-77.120636, 38.935174],\n              [-77.120657, 38.935194],\n              [-77.120704, 38.935225],\n              [-77.120765, 38.935256],\n              [-77.120809, 38.935262],\n              [-77.120862, 38.935244],\n              [-77.120875, 38.935252],\n              [-77.12091, 38.935274],\n              [-77.120939, 38.9353],\n              [-77.121011, 38.935366],\n              [-77.121039, 38.935399],\n              [-77.121111, 38.935466],\n              [-77.121124, 38.935486],\n              [-77.121146, 38.935544],\n              [-77.121202, 38.935621],\n              [-77.121264, 38.935683],\n              [-77.121352, 38.93576],\n              [-77.121434, 38.935862],\n              [-77.121475, 38.935887],\n              [-77.121502, 38.935909],\n              [-77.121622, 38.936047],\n              [-77.121651, 38.936067],\n              [-77.121759, 38.936126],\n              [-77.121785, 38.936164],\n              [-77.121825, 38.936199],\n              [-77.121881, 38.93622],\n              [-77.121927, 38.936246],\n              [-77.121963, 38.936259],\n              [-77.121989, 38.936276],\n              [-77.122052, 38.936329],\n              [-77.122108, 38.936397],\n              [-77.122165, 38.936432],\n              [-77.122228, 38.93645],\n              [-77.122305, 38.936534],\n              [-77.122489, 38.936686],\n              [-77.122579, 38.936807],\n              [-77.122743, 38.936934],\n              [-77.122753, 38.936956],\n              [-77.122754, 38.936987],\n              [-77.122782, 38.937004],\n              [-77.12282, 38.936996],\n              [-77.122871, 38.936996],\n              [-77.122903, 38.937],\n              [-77.122943, 38.937013],\n              [-77.122991, 38.937042],\n              [-77.123017, 38.937076],\n              [-77.123047, 38.937139],\n              [-77.123079, 38.937159],\n              [-77.123134, 38.937164],\n              [-77.123171, 38.937185],\n              [-77.123249, 38.937267],\n              [-77.123316, 38.937324],\n              [-77.123375, 38.937336],\n              [-77.123422, 38.937358],\n              [-77.12352, 38.937429],\n              [-77.123603, 38.937512],\n              [-77.123648, 38.937547],\n              [-77.123683, 38.937591],\n              [-77.123724, 38.937629],\n              [-77.123786, 38.937666],\n              [-77.123848, 38.937719],\n              [-77.123881, 38.937739],\n              [-77.123912, 38.937772],\n              [-77.123965, 38.937843],\n              [-77.124031, 38.937951],\n              [-77.124074, 38.938004],\n              [-77.124132, 38.938087],\n              [-77.12427, 38.938229],\n              [-77.124302, 38.938267],\n              [-77.124321, 38.938283],\n              [-77.124417, 38.938364],\n              [-77.1245, 38.938456],\n              [-77.124564, 38.9385],\n              [-77.124633, 38.938556],\n              [-77.124675, 38.938575],\n              [-77.1247, 38.938592],\n              [-77.124865, 38.938688],\n              [-77.124967, 38.938759],\n              [-77.125009, 38.938794],\n              [-77.125063, 38.938825],\n              [-77.125107, 38.938859],\n              [-77.125119, 38.93889],\n              [-77.125132, 38.938908],\n              [-77.125222, 38.938928],\n              [-77.1253, 38.939008],\n              [-77.125297, 38.939032],\n              [-77.1253, 38.939052],\n              [-77.12536, 38.939069],\n              [-77.125411, 38.939107],\n              [-77.125453, 38.93916],\n              [-77.125522, 38.939223],\n              [-77.125624, 38.939287],\n              [-77.125701, 38.93935],\n              [-77.12578, 38.939389],\n              [-77.125877, 38.939445],\n              [-77.125891, 38.939475],\n              [-77.125924, 38.939506],\n              [-77.125984, 38.939543],\n              [-77.126021, 38.939566],\n              [-77.126056, 38.939583],\n              [-77.126165, 38.939665],\n              [-77.126194, 38.939675],\n              [-77.126223, 38.939677],\n              [-77.126275, 38.9397],\n              [-77.126383, 38.939774],\n              [-77.126406, 38.939832],\n              [-77.126454, 38.939871],\n              [-77.126598, 38.939949],\n              [-77.126687, 38.940007],\n              [-77.12674, 38.940036],\n              [-77.126762, 38.940063],\n              [-77.126784, 38.94008],\n              [-77.126859, 38.940083],\n              [-77.126899, 38.940106],\n              [-77.126935, 38.940142],\n              [-77.127042, 38.940225],\n              [-77.127149, 38.940267],\n              [-77.127182, 38.940286],\n              [-77.127218, 38.940319],\n              [-77.127264, 38.940353],\n              [-77.127285, 38.940361],\n              [-77.127322, 38.940388],\n              [-77.127387, 38.940445],\n              [-77.127465, 38.940488],\n              [-77.127539, 38.9405],\n              [-77.127651, 38.940541],\n              [-77.127676, 38.940557],\n              [-77.127737, 38.940611],\n              [-77.127782, 38.940641],\n              [-77.127819, 38.940655],\n              [-77.12784, 38.94067],\n              [-77.127885, 38.940685],\n              [-77.127924, 38.940693],\n              [-77.127976, 38.940733],\n              [-77.128052, 38.940783],\n              [-77.128138, 38.940832],\n              [-77.128202, 38.940882],\n              [-77.128284, 38.940972],\n              [-77.128296, 38.940992],\n              [-77.1283, 38.941025],\n              [-77.128314, 38.941043],\n              [-77.12838, 38.941081],\n              [-77.128408, 38.941104],\n              [-77.128424, 38.941138],\n              [-77.128426, 38.941165],\n              [-77.128439, 38.941206],\n              [-77.128458, 38.941235],\n              [-77.128478, 38.94125],\n              [-77.128505, 38.941263],\n              [-77.128613, 38.941358],\n              [-77.128656, 38.941406],\n              [-77.128711, 38.941504],\n              [-77.128746, 38.941531],\n              [-77.128765, 38.94158],\n              [-77.12882, 38.941694],\n              [-77.128842, 38.941774],\n              [-77.128856, 38.941789],\n              [-77.12889, 38.941809],\n              [-77.128904, 38.941826],\n              [-77.128951, 38.941906],\n              [-77.128969, 38.941928],\n              [-77.129014, 38.942004],\n              [-77.129052, 38.942103],\n              [-77.129074, 38.942145],\n              [-77.129124, 38.942221],\n              [-77.129141, 38.942262],\n              [-77.129171, 38.942452],\n              [-77.129242, 38.942613],\n              [-77.129253, 38.942672],\n              [-77.129268, 38.942709],\n              [-77.129291, 38.942744],\n              [-77.129317, 38.942768],\n              [-77.129339, 38.9428],\n              [-77.129355, 38.942835],\n              [-77.129357, 38.942863],\n              [-77.129343, 38.942891],\n              [-77.129333, 38.942935],\n              [-77.129335, 38.942977],\n              [-77.129385, 38.943041],\n              [-77.129415, 38.943068],\n              [-77.129451, 38.943083],\n              [-77.12947, 38.943099],\n              [-77.129486, 38.94313],\n              [-77.129533, 38.943178],\n              [-77.129555, 38.943215],\n              [-77.129584, 38.94334],\n              [-77.12959, 38.943408],\n              [-77.129631, 38.943519],\n              [-77.129678, 38.943595],\n              [-77.129706, 38.943615],\n              [-77.129714, 38.943644],\n              [-77.129722, 38.943771],\n              [-77.129752, 38.94382],\n              [-77.129802, 38.943947],\n              [-77.129927, 38.944144],\n              [-77.129938, 38.944177],\n              [-77.129974, 38.94424],\n              [-77.130009, 38.944282],\n              [-77.130151, 38.944421],\n              [-77.130186, 38.94448],\n              [-77.130247, 38.944564],\n              [-77.130289, 38.944617],\n              [-77.130296, 38.944646],\n              [-77.130311, 38.944664],\n              [-77.130331, 38.944678],\n              [-77.130359, 38.944692],\n              [-77.13037, 38.944697],\n              [-77.130388, 38.944738],\n              [-77.130417, 38.944784],\n              [-77.130461, 38.944837],\n              [-77.130515, 38.944929],\n              [-77.130558, 38.945062],\n              [-77.1306, 38.945158],\n              [-77.130626, 38.945218],\n              [-77.13069, 38.945364],\n              [-77.130748, 38.945575],\n              [-77.130867, 38.945915],\n              [-77.130882, 38.94593],\n              [-77.13099, 38.946146],\n              [-77.131054, 38.946248],\n              [-77.131102, 38.946368],\n              [-77.131118, 38.946396],\n              [-77.131159, 38.946439],\n              [-77.131192, 38.946508],\n              [-77.131205, 38.946551],\n              [-77.131196, 38.946573],\n              [-77.13119, 38.946606],\n              [-77.131237, 38.946617],\n              [-77.131273, 38.946669],\n              [-77.13129, 38.9467],\n              [-77.131308, 38.946732],\n              [-77.131317, 38.946762],\n              [-77.131332, 38.946782],\n              [-77.131357, 38.946794],\n              [-77.131379, 38.94681],\n              [-77.131413, 38.946874],\n              [-77.131481, 38.946978],\n              [-77.131528, 38.947109],\n              [-77.13155, 38.94713],\n              [-77.131641, 38.947311],\n              [-77.131634, 38.947334],\n              [-77.131645, 38.947375],\n              [-77.131653, 38.947405],\n              [-77.131696, 38.947434],\n              [-77.131707, 38.947452],\n              [-77.131699, 38.947471],\n              [-77.131717, 38.947494],\n              [-77.131738, 38.947521],\n              [-77.131716, 38.947529],\n              [-77.131712, 38.947532],\n              [-77.131689, 38.947548],\n              [-77.13168, 38.947565],\n              [-77.131697, 38.947592],\n              [-77.131721, 38.947593],\n              [-77.131789, 38.947584],\n              [-77.131923, 38.947546],\n              [-77.131935, 38.947522],\n              [-77.13194, 38.947499],\n              [-77.131969, 38.947498],\n              [-77.131985, 38.947511],\n              [-77.131996, 38.947554],\n              [-77.13205, 38.947621],\n              [-77.132039, 38.947641],\n              [-77.132022, 38.94766],\n              [-77.132017, 38.947678],\n              [-77.132028, 38.947694],\n              [-77.132017, 38.947711],\n              [-77.131996, 38.947731],\n              [-77.132022, 38.947764],\n              [-77.132092, 38.947883],\n              [-77.13225, 38.948143],\n              [-77.1323, 38.948248],\n              [-77.132322, 38.948285],\n              [-77.132352, 38.948324],\n              [-77.132472, 38.948458],\n              [-77.13249, 38.948487],\n              [-77.132504, 38.948532],\n              [-77.13253, 38.948584],\n              [-77.132562, 38.948667],\n              [-77.132618, 38.948764],\n              [-77.132661, 38.948825],\n              [-77.132674, 38.948857],\n              [-77.132712, 38.948918],\n              [-77.132769, 38.948981],\n              [-77.13284, 38.949111],\n              [-77.132917, 38.949212],\n              [-77.132918, 38.949234],\n              [-77.132937, 38.949245],\n              [-77.132929, 38.949278],\n              [-77.132999, 38.949393],\n              [-77.133021, 38.94944],\n              [-77.13305, 38.949501],\n              [-77.133086, 38.949566],\n              [-77.133156, 38.949692],\n              [-77.133185, 38.949766],\n              [-77.133329, 38.950001],\n              [-77.133359, 38.950022],\n              [-77.133377, 38.950075],\n              [-77.13352, 38.950349],\n              [-77.133559, 38.950447],\n              [-77.133651, 38.950632],\n              [-77.133693, 38.950693],\n              [-77.133773, 38.950841],\n              [-77.133784, 38.950932],\n              [-77.133794, 38.950957],\n              [-77.133849, 38.951002],\n              [-77.133883, 38.951047],\n              [-77.133908, 38.951097],\n              [-77.13391, 38.95114],\n              [-77.134004, 38.951331],\n              [-77.134007, 38.951349],\n              [-77.134044, 38.95141],\n              [-77.134062, 38.951482],\n              [-77.134074, 38.951507],\n              [-77.134166, 38.951642],\n              [-77.134191, 38.951722],\n              [-77.134209, 38.951764],\n              [-77.13426, 38.951813],\n              [-77.134312, 38.951896],\n              [-77.134351, 38.951992],\n              [-77.134395, 38.952055],\n              [-77.13448, 38.95216],\n              [-77.134488, 38.95217],\n              [-77.134598, 38.952391],\n              [-77.134658, 38.952476],\n              [-77.134783, 38.952669],\n              [-77.134882, 38.952858],\n              [-77.134907, 38.95289],\n              [-77.134923, 38.952923],\n              [-77.134923, 38.952945],\n              [-77.134952, 38.953013],\n              [-77.134987, 38.953071],\n              [-77.1351, 38.95322],\n              [-77.135255, 38.953521],\n              [-77.135326, 38.953609],\n              [-77.135445, 38.953708],\n              [-77.13547, 38.953738],\n              [-77.135488, 38.953788],\n              [-77.135543, 38.953857],\n              [-77.135578, 38.953888],\n              [-77.135629, 38.953922],\n              [-77.13565, 38.953939],\n              [-77.135649, 38.953957],\n              [-77.135668, 38.953968],\n              [-77.1357, 38.954018],\n              [-77.135714, 38.954039],\n              [-77.135736, 38.954065],\n              [-77.135745, 38.954094],\n              [-77.135773, 38.95412],\n              [-77.135834, 38.954163],\n              [-77.135881, 38.954211],\n              [-77.135948, 38.954308],\n              [-77.136002, 38.954373],\n              [-77.136086, 38.954457],\n              [-77.13612, 38.954483],\n              [-77.136145, 38.954509],\n              [-77.136188, 38.954543],\n              [-77.136206, 38.954577],\n              [-77.136234, 38.954603],\n              [-77.136268, 38.954627],\n              [-77.136377, 38.954749],\n              [-77.136438, 38.954791],\n              [-77.136492, 38.954815],\n              [-77.136576, 38.954872],\n              [-77.136678, 38.95496],\n              [-77.136775, 38.95502],\n              [-77.13682, 38.955054],\n              [-77.136942, 38.955184],\n              [-77.13699, 38.955209],\n              [-77.137032, 38.955237],\n              [-77.137089, 38.955309],\n              [-77.137111, 38.955327],\n              [-77.137208, 38.955386],\n              [-77.137265, 38.95541],\n              [-77.137394, 38.95552],\n              [-77.137572, 38.955621],\n              [-77.137662, 38.955658],\n              [-77.137709, 38.955687],\n              [-77.137754, 38.955709],\n              [-77.137881, 38.95576],\n              [-77.137921, 38.955759],\n              [-77.137944, 38.955765],\n              [-77.13797, 38.95578],\n              [-77.138008, 38.95581],\n              [-77.138013, 38.955828],\n              [-77.13803, 38.956025],\n              [-77.138075, 38.956085],\n              [-77.13812, 38.956103],\n              [-77.13816, 38.956108],\n              [-77.138187, 38.956127],\n              [-77.138327, 38.956283],\n              [-77.138377, 38.956345],\n              [-77.138753, 38.956733],\n              [-77.138904, 38.956904],\n              [-77.139181, 38.957173],\n              [-77.139234, 38.957215],\n              [-77.139279, 38.957258],\n              [-77.139393, 38.957348],\n              [-77.139468, 38.957424],\n              [-77.139561, 38.957486],\n              [-77.139646, 38.957549],\n              [-77.139749, 38.957604],\n              [-77.139773, 38.9576],\n              [-77.139857, 38.957555],\n              [-77.139865, 38.957572],\n              [-77.139852, 38.957588],\n              [-77.139806, 38.957619],\n              [-77.13981, 38.957649],\n              [-77.139838, 38.957676],\n              [-77.139916, 38.957719],\n              [-77.13995, 38.957742],\n              [-77.140089, 38.95782],\n              [-77.140117, 38.95784],\n              [-77.140141, 38.957865],\n              [-77.1402, 38.957897],\n              [-77.140271, 38.957945],\n              [-77.140311, 38.957966],\n              [-77.140499, 38.958087],\n              [-77.140609, 38.958172],\n              [-77.140696, 38.958233],\n              [-77.140836, 38.958364],\n              [-77.140898, 38.958412],\n              [-77.140931, 38.958452],\n              [-77.140953, 38.958478],\n              [-77.140997, 38.958522],\n              [-77.141047, 38.958588],\n              [-77.141111, 38.958734],\n              [-77.141156, 38.958789],\n              [-77.14128, 38.958894],\n              [-77.141447, 38.959084],\n              [-77.141533, 38.959171],\n              [-77.141674, 38.959348],\n              [-77.141765, 38.959496],\n              [-77.141838, 38.959577],\n              [-77.141863, 38.959663],\n              [-77.141897, 38.95971],\n              [-77.141929, 38.95973],\n              [-77.141978, 38.959796],\n              [-77.142004, 38.959822],\n              [-77.142077, 38.959854],\n              [-77.142107, 38.959878],\n              [-77.142177, 38.959973],\n              [-77.142229, 38.960025],\n              [-77.142309, 38.960115],\n              [-77.142328, 38.960144],\n              [-77.142371, 38.960188],\n              [-77.142405, 38.960271],\n              [-77.142437, 38.960297],\n              [-77.14245, 38.96031],\n              [-77.14247, 38.960332],\n              [-77.142506, 38.960403],\n              [-77.142519, 38.960468],\n              [-77.142549, 38.960529],\n              [-77.142632, 38.960618],\n              [-77.142692, 38.960664],\n              [-77.142839, 38.960844],\n              [-77.142904, 38.960908],\n              [-77.143008, 38.960974],\n              [-77.143115, 38.961097],\n              [-77.143228, 38.961209],\n              [-77.143412, 38.961436],\n              [-77.143559, 38.961583],\n              [-77.143668, 38.961718],\n              [-77.143872, 38.961884],\n              [-77.143937, 38.961942],\n              [-77.144098, 38.962073],\n              [-77.144199, 38.962171],\n              [-77.144297, 38.962298],\n              [-77.144322, 38.962322],\n              [-77.144429, 38.962396],\n              [-77.144469, 38.962419],\n              [-77.144509, 38.962449],\n              [-77.144586, 38.962541],\n              [-77.144684, 38.962649],\n              [-77.144723, 38.962716],\n              [-77.144805, 38.962816],\n              [-77.144916, 38.96293],\n              [-77.14492, 38.962934],\n              [-77.14501, 38.963035],\n              [-77.145083, 38.963154],\n              [-77.145353, 38.963317],\n              [-77.145534, 38.963412],\n              [-77.145618, 38.963447],\n              [-77.145685, 38.963459],\n              [-77.145727, 38.963495],\n              [-77.145802, 38.963498],\n              [-77.145849, 38.963512],\n              [-77.145973, 38.963532],\n              [-77.146025, 38.963552],\n              [-77.146071, 38.96358],\n              [-77.146111, 38.963613],\n              [-77.146142, 38.963654],\n              [-77.146195, 38.963704],\n              [-77.146215, 38.963732],\n              [-77.146263, 38.963763],\n              [-77.146455, 38.963903],\n              [-77.146546, 38.963986],\n              [-77.146636, 38.964054],\n              [-77.146806, 38.964208],\n              [-77.146949, 38.964274],\n              [-77.147102, 38.964386],\n              [-77.147199, 38.964447],\n              [-77.147305, 38.964494],\n              [-77.147432, 38.964534],\n              [-77.147547, 38.964584],\n              [-77.147648, 38.964611],\n              [-77.147649, 38.964612],\n              [-77.147755, 38.964623],\n              [-77.147979, 38.96468],\n              [-77.148056, 38.964715],\n              [-77.148174, 38.964751],\n              [-77.148268, 38.964773],\n              [-77.148348, 38.964791],\n              [-77.148381, 38.964802],\n              [-77.148411, 38.964817],\n              [-77.148482, 38.964863],\n              [-77.148548, 38.964923],\n              [-77.148593, 38.964956],\n              [-77.148677, 38.965006],\n              [-77.148775, 38.965044],\n              [-77.148955, 38.96508],\n              [-77.149071, 38.965113],\n              [-77.149242, 38.965183],\n              [-77.149333, 38.965209],\n              [-77.14939, 38.965213],\n              [-77.149521, 38.965249],\n              [-77.149656, 38.965268],\n              [-77.14969, 38.965278],\n              [-77.149721, 38.965293],\n              [-77.149759, 38.965329],\n              [-77.149801, 38.965367],\n              [-77.149849, 38.965384],\n              [-77.149963, 38.965404],\n              [-77.149975, 38.965405],\n              [-77.150028, 38.965411],\n              [-77.150091, 38.965423],\n              [-77.150327, 38.965526],\n              [-77.150383, 38.965544],\n              [-77.150411, 38.965548],\n              [-77.150499, 38.96555],\n              [-77.150554, 38.965559],\n              [-77.150598, 38.965591],\n              [-77.150648, 38.965603],\n              [-77.150682, 38.965623],\n              [-77.150694, 38.96563],\n              [-77.150879, 38.96567],\n              [-77.150939, 38.965673],\n              [-77.151121, 38.965667],\n              [-77.15131, 38.965648],\n              [-77.151371, 38.965652],\n              [-77.151441, 38.965676],\n              [-77.15167, 38.965715],\n              [-77.1518, 38.965717],\n              [-77.152007, 38.965751],\n              [-77.152068, 38.965754],\n              [-77.152367, 38.965748],\n              [-77.152501, 38.96574],\n              [-77.152562, 38.965731],\n              [-77.152744, 38.965691],\n              [-77.152873, 38.965721],\n              [-77.153086, 38.965723],\n              [-77.153201, 38.965719],\n              [-77.153243, 38.965725],\n              [-77.153365, 38.96576],\n              [-77.153413, 38.965763],\n              [-77.153569, 38.965761],\n              [-77.153691, 38.965765],\n              [-77.153745, 38.965781],\n              [-77.154064, 38.965771],\n              [-77.154323, 38.965782],\n              [-77.154375, 38.965795],\n              [-77.154463, 38.9658],\n              [-77.154774, 38.965842],\n              [-77.154904, 38.965844],\n              [-77.154952, 38.965837],\n              [-77.154996, 38.96584],\n              [-77.155432, 38.965949],\n              [-77.155547, 38.965971],\n              [-77.15561, 38.965973],\n              [-77.155624, 38.965975],\n              [-77.155626, 38.965975],\n              [-77.155694, 38.965985],\n              [-77.155921, 38.96599],\n              [-77.156037, 38.965996],\n              [-77.156114, 38.965989],\n              [-77.156132, 38.966017],\n              [-77.156153, 38.966025],\n              [-77.156252, 38.965985],\n              [-77.156281, 38.96598],\n              [-77.156416, 38.965972],\n              [-77.156442, 38.965974],\n              [-77.156501, 38.965979],\n              [-77.156562, 38.965978],\n              [-77.156624, 38.965969],\n              [-77.156672, 38.965954],\n              [-77.156779, 38.96591],\n              [-77.156882, 38.965851],\n              [-77.156904, 38.96583],\n              [-77.156895, 38.965874],\n              [-77.156878, 38.965902],\n              [-77.156849, 38.965926],\n              [-77.15672, 38.965984],\n              [-77.156696, 38.96601],\n              [-77.156734, 38.966018],\n              [-77.156773, 38.966016],\n              [-77.156826, 38.966007],\n              [-77.156868, 38.966006],\n              [-77.15691, 38.96601],\n              [-77.156954, 38.966025],\n              [-77.157024, 38.966026],\n              [-77.157079, 38.966041],\n              [-77.15712, 38.966041],\n              [-77.157142, 38.966049],\n              [-77.157157, 38.966067],\n              [-77.157277, 38.966062],\n              [-77.157326, 38.966013],\n              [-77.157356, 38.96597],\n              [-77.157363, 38.965944],\n              [-77.157353, 38.965907],\n              [-77.157336, 38.965878],\n              [-77.157297, 38.965854],\n              [-77.157275, 38.965825],\n              [-77.157269, 38.965784],\n              [-77.157299, 38.965804],\n              [-77.157362, 38.965825],\n              [-77.157363, 38.965853],\n              [-77.157385, 38.96586],\n              [-77.157571, 38.96586],\n              [-77.157651, 38.965858],\n              [-77.157701, 38.965856],\n              [-77.157836, 38.965851],\n              [-77.157907, 38.965838],\n              [-77.158029, 38.965824],\n              [-77.1581, 38.965801],\n              [-77.158163, 38.965795],\n              [-77.158223, 38.965799],\n              [-77.158278, 38.965816],\n              [-77.158312, 38.965833],\n              [-77.158566, 38.965833],\n              [-77.15865, 38.965845],\n              [-77.158872, 38.965861],\n              [-77.158957, 38.965883],\n              [-77.15901, 38.965892],\n              [-77.159134, 38.965914],\n              [-77.159265, 38.965956],\n              [-77.159318, 38.965971],\n              [-77.159378, 38.965979],\n              [-77.159542, 38.965988],\n              [-77.159686, 38.966029],\n              [-77.159817, 38.966057],\n              [-77.159901, 38.966079],\n              [-77.16002, 38.966137],\n              [-77.160086, 38.966153],\n              [-77.160166, 38.966167],\n              [-77.160215, 38.966176],\n              [-77.160424, 38.966214],\n              [-77.16049, 38.966199],\n              [-77.160599, 38.966182],\n              [-77.160645, 38.966186],\n              [-77.16069, 38.966199],\n              [-77.16091, 38.966288],\n              [-77.161026, 38.966328],\n              [-77.161075, 38.96635],\n              [-77.161132, 38.966379],\n              [-77.161209, 38.966435],\n              [-77.161351, 38.966517],\n              [-77.161502, 38.966569],\n              [-77.161571, 38.966579],\n              [-77.161621, 38.966593],\n              [-77.161655, 38.966617],\n              [-77.161733, 38.966714],\n              [-77.161782, 38.966741],\n              [-77.16183, 38.966735],\n              [-77.161876, 38.966724],\n              [-77.161933, 38.966728],\n              [-77.161979, 38.966755],\n              [-77.162166, 38.966828],\n              [-77.162253, 38.966871],\n              [-77.162313, 38.966916],\n              [-77.162346, 38.966951],\n              [-77.162414, 38.967005],\n              [-77.16251, 38.967053],\n              [-77.162588, 38.967121],\n              [-77.162749, 38.96723],\n              [-77.162791, 38.96725],\n              [-77.163003, 38.967305],\n              [-77.163053, 38.967333],\n              [-77.163099, 38.967371],\n              [-77.16315, 38.967384],\n              [-77.163194, 38.967367],\n              [-77.163224, 38.967326],\n              [-77.163224, 38.967287],\n              [-77.163242, 38.967188],\n              [-77.163257, 38.967161],\n              [-77.163279, 38.967141],\n              [-77.163308, 38.967127],\n              [-77.163327, 38.967181],\n              [-77.163364, 38.967206],\n              [-77.163377, 38.967248],\n              [-77.163341, 38.967297],\n              [-77.163334, 38.967332],\n              [-77.163353, 38.96735],\n              [-77.163405, 38.967364],\n              [-77.163517, 38.967383],\n              [-77.163552, 38.967409],\n              [-77.163618, 38.967417],\n              [-77.163709, 38.967444],\n              [-77.163762, 38.967467],\n              [-77.163852, 38.967518],\n              [-77.16389, 38.967548],\n              [-77.163994, 38.967604],\n              [-77.164078, 38.967638],\n              [-77.164146, 38.967654],\n              [-77.164269, 38.967703],\n              [-77.164352, 38.967724],\n              [-77.164399, 38.967729],\n              [-77.16455, 38.96773],\n              [-77.164697, 38.967756],\n              [-77.164841, 38.967757],\n              [-77.164994, 38.967769],\n              [-77.165163, 38.967767],\n              [-77.165215, 38.967767],\n              [-77.165364, 38.967766],\n              [-77.165463, 38.967747],\n              [-77.165513, 38.967754],\n              [-77.165551, 38.967772],\n              [-77.165581, 38.967759],\n              [-77.165651, 38.967711],\n              [-77.165697, 38.967701],\n              [-77.165864, 38.967678],\n              [-77.165925, 38.967661],\n              [-77.165957, 38.967656],\n              [-77.166043, 38.96763],\n              [-77.16618, 38.967624],\n              [-77.166269, 38.967604],\n              [-77.166367, 38.967609],\n              [-77.166425, 38.967604],\n              [-77.166479, 38.967594],\n              [-77.166529, 38.967578],\n              [-77.166576, 38.967558],\n              [-77.166626, 38.967531],\n              [-77.166705, 38.967489],\n              [-77.166795, 38.967473],\n              [-77.166834, 38.967458],\n              [-77.166956, 38.967396],\n              [-77.166986, 38.967398],\n              [-77.167046, 38.967405],\n              [-77.167135, 38.967389],\n              [-77.167279, 38.967347],\n              [-77.167446, 38.967326],\n              [-77.16757, 38.967322],\n              [-77.167633, 38.967306],\n              [-77.167694, 38.967278],\n              [-77.167766, 38.96723],\n              [-77.167832, 38.967199],\n              [-77.167902, 38.967176],\n              [-77.168171, 38.967125],\n              [-77.168244, 38.967102],\n              [-77.168302, 38.967095],\n              [-77.168394, 38.967072],\n              [-77.168447, 38.967047],\n              [-77.168485, 38.967019],\n              [-77.168502, 38.967],\n              [-77.168532, 38.966937],\n              [-77.168545, 38.966885],\n              [-77.16855, 38.966805],\n              [-77.168559, 38.966778],\n              [-77.168661, 38.966675],\n              [-77.168777, 38.966586],\n              [-77.16878, 38.966571],\n              [-77.168787, 38.966543],\n              [-77.168846, 38.966489],\n              [-77.16888, 38.966446],\n              [-77.168952, 38.966415],\n              [-77.168971, 38.966387],\n              [-77.169005, 38.966354],\n              [-77.169029, 38.966342],\n              [-77.169107, 38.966322],\n              [-77.169114, 38.966318],\n              [-77.169127, 38.966312],\n              [-77.169142, 38.966283],\n              [-77.169198, 38.966316],\n              [-77.169228, 38.966326],\n              [-77.169259, 38.96633],\n              [-77.169804, 38.966323],\n              [-77.169851, 38.966331],\n              [-77.169983, 38.966371],\n              [-77.170043, 38.966402],\n              [-77.170178, 38.966452],\n              [-77.170223, 38.966462],\n              [-77.170267, 38.966463],\n              [-77.170401, 38.966447],\n              [-77.170533, 38.966448],\n              [-77.17061, 38.966456],\n              [-77.170683, 38.966477],\n              [-77.170807, 38.966498],\n              [-77.171012, 38.966498],\n              [-77.171125, 38.966534],\n              [-77.171294, 38.966616],\n              [-77.171321, 38.966638],\n              [-77.171346, 38.966668],\n              [-77.171422, 38.966779],\n              [-77.171447, 38.966797],\n              [-77.171539, 38.966847],\n              [-77.171586, 38.966924],\n              [-77.17161, 38.966945],\n              [-77.17174, 38.967007],\n              [-77.171783, 38.96704],\n              [-77.17184, 38.967075],\n              [-77.171889, 38.967119],\n              [-77.171938, 38.967162],\n              [-77.171947, 38.967184],\n              [-77.171994, 38.967255],\n              [-77.172193, 38.967408],\n              [-77.172286, 38.96746],\n              [-77.172323, 38.967473],\n              [-77.172444, 38.967502],\n              [-77.17256, 38.967502],\n              [-77.172592, 38.967505],\n              [-77.172763, 38.967542],\n              [-77.172813, 38.967568],\n              [-77.172865, 38.967618],\n              [-77.172906, 38.967641],\n              [-77.172966, 38.967659],\n              [-77.173028, 38.967668],\n              [-77.173205, 38.96767],\n              [-77.173266, 38.967683],\n              [-77.173323, 38.967706],\n              [-77.173429, 38.967767],\n              [-77.173514, 38.967786],\n              [-77.173573, 38.967819],\n              [-77.173605, 38.967823],\n              [-77.173718, 38.967825],\n              [-77.173787, 38.967836],\n              [-77.173923, 38.967848],\n              [-77.174029, 38.967876],\n              [-77.174102, 38.967882],\n              [-77.174183, 38.967919],\n              [-77.174286, 38.967923],\n              [-77.174406, 38.96796],\n              [-77.174464, 38.96799],\n              [-77.174562, 38.968014],\n              [-77.17458, 38.968026],\n              [-77.174809, 38.96806],\n              [-77.174909, 38.968049],\n              [-77.174966, 38.96805],\n              [-77.175007, 38.968063],\n              [-77.175037, 38.968095],\n              [-77.175057, 38.968132],\n              [-77.175094, 38.968172],\n              [-77.175119, 38.96818],\n              [-77.175145, 38.968183],\n              [-77.175185, 38.968168],\n              [-77.175264, 38.968126],\n              [-77.175301, 38.968122],\n              [-77.175434, 38.968123],\n              [-77.175513, 38.96811],\n              [-77.175571, 38.968108],\n              [-77.17563, 38.968112],\n              [-77.175704, 38.968136],\n              [-77.175757, 38.968141],\n              [-77.175811, 38.968139],\n              [-77.175868, 38.968123],\n              [-77.175981, 38.968116],\n              [-77.176055, 38.968088],\n              [-77.176103, 38.968082],\n              [-77.176173, 38.968086],\n              [-77.176249, 38.968081],\n              [-77.176273, 38.968089],\n              [-77.176288, 38.968118],\n              [-77.176311, 38.968115],\n              [-77.176331, 38.968084],\n              [-77.176406, 38.968089],\n              [-77.176422, 38.968106],\n              [-77.176451, 38.968091],\n              [-77.176474, 38.968086],\n              [-77.176576, 38.968077],\n              [-77.176651, 38.968054],\n              [-77.176683, 38.968054],\n              [-77.176748, 38.968041],\n              [-77.176812, 38.968034],\n              [-77.176832, 38.968043],\n              [-77.176883, 38.968079],\n              [-77.176909, 38.96808],\n              [-77.176995, 38.968057],\n              [-77.177056, 38.968047],\n              [-77.177287, 38.968046],\n              [-77.177331, 38.968058],\n              [-77.177564, 38.968058],\n              [-77.177624, 38.968052],\n              [-77.177652, 38.968043],\n              [-77.177743, 38.967995],\n              [-77.177793, 38.967995],\n              [-77.177879, 38.968013],\n              [-77.177986, 38.968035],\n              [-77.178106, 38.968041],\n              [-77.178219, 38.968047],\n              [-77.17833, 38.968065],\n              [-77.178419, 38.968086],\n              [-77.178451, 38.968107],\n              [-77.178468, 38.968137],\n              [-77.178467, 38.968155],\n              [-77.178479, 38.968172],\n              [-77.178502, 38.968178],\n              [-77.17853, 38.968149],\n              [-77.178592, 38.968154],\n              [-77.178688, 38.968139],\n              [-77.178761, 38.968134],\n              [-77.178805, 38.968137],\n              [-77.178849, 38.968147],\n              [-77.178889, 38.968171],\n              [-77.178912, 38.968173],\n              [-77.178944, 38.968153],\n              [-77.178971, 38.96815],\n              [-77.178997, 38.968147],\n              [-77.179032, 38.968151],\n              [-77.179128, 38.968186],\n              [-77.179252, 38.968213],\n              [-77.17933, 38.968249],\n              [-77.179429, 38.968274],\n              [-77.179549, 38.968299],\n              [-77.179656, 38.968315],\n              [-77.17979, 38.968334],\n              [-77.179892, 38.968346],\n              [-77.17991, 38.968348],\n              [-77.180042, 38.968347],\n              [-77.180067, 38.968336],\n              [-77.18009, 38.968331],\n              [-77.180169, 38.968374],\n              [-77.18023, 38.968397],\n              [-77.180331, 38.968425],\n              [-77.180361, 38.968428],\n              [-77.180516, 38.968424],\n              [-77.180575, 38.968415],\n              [-77.180732, 38.968439],\n              [-77.180786, 38.968463],\n              [-77.180943, 38.968554],\n              [-77.180975, 38.968585],\n              [-77.181026, 38.968619],\n              [-77.181053, 38.968647],\n              [-77.181102, 38.9687],\n              [-77.181148, 38.968739],\n              [-77.181202, 38.968773],\n              [-77.181256, 38.968787],\n              [-77.181308, 38.968786],\n              [-77.181366, 38.968784],\n              [-77.181449, 38.968796],\n              [-77.181519, 38.968785],\n              [-77.181584, 38.96877],\n              [-77.181817, 38.968735],\n              [-77.181871, 38.968745],\n              [-77.18195, 38.968748],\n              [-77.182023, 38.968758],\n              [-77.182201, 38.968764],\n              [-77.18229, 38.968754],\n              [-77.182334, 38.968735],\n              [-77.182386, 38.968732],\n              [-77.182458, 38.968759],\n              [-77.182491, 38.968763],\n              [-77.182521, 38.96876],\n              [-77.182543, 38.968753],\n              [-77.182579, 38.968729],\n              [-77.182614, 38.968724],\n              [-77.182649, 38.968727],\n              [-77.182673, 38.968733],\n              [-77.182698, 38.96871],\n              [-77.182725, 38.968721],\n              [-77.182753, 38.968738],\n              [-77.182797, 38.968711],\n              [-77.182795, 38.968692],\n              [-77.182818, 38.968686],\n              [-77.182893, 38.968698],\n              [-77.182901, 38.968674],\n              [-77.18294, 38.968674],\n              [-77.182962, 38.968668],\n              [-77.183007, 38.968631],\n              [-77.183058, 38.968632],\n              [-77.183165, 38.968655],\n              [-77.183189, 38.968633],\n              [-77.183178, 38.968603],\n              [-77.1832, 38.968579],\n              [-77.183206, 38.968546],\n              [-77.183228, 38.968511],\n              [-77.183262, 38.96848],\n              [-77.183319, 38.968468],\n              [-77.183354, 38.968442],\n              [-77.183392, 38.968449],\n              [-77.183425, 38.968465],\n              [-77.183439, 38.968447],\n              [-77.18342, 38.968425],\n              [-77.183407, 38.968403],\n              [-77.183436, 38.968384],\n              [-77.183458, 38.968344],\n              [-77.183501, 38.968309],\n              [-77.183571, 38.968237],\n              [-77.183611, 38.968177],\n              [-77.183656, 38.968145],\n              [-77.183683, 38.968135],\n              [-77.183794, 38.968116],\n              [-77.183946, 38.967973],\n              [-77.18408, 38.967908],\n              [-77.184172, 38.967858],\n              [-77.184205, 38.967851],\n              [-77.184239, 38.967856],\n              [-77.184263, 38.967891],\n              [-77.184277, 38.967912],\n              [-77.184318, 38.967916],\n              [-77.184358, 38.967908],\n              [-77.184399, 38.9679],\n              [-77.184401, 38.9679],\n              [-77.184448, 38.967895],\n              [-77.184477, 38.967879],\n              [-77.184509, 38.967874],\n              [-77.184542, 38.967852],\n              [-77.18455, 38.967832],\n              [-77.184578, 38.967825],\n              [-77.184599, 38.967838],\n              [-77.184607, 38.967858],\n              [-77.184605, 38.9679],\n              [-77.18462, 38.967914],\n              [-77.184631, 38.967894],\n              [-77.184678, 38.967847],\n              [-77.184718, 38.967821],\n              [-77.184738, 38.96778],\n              [-77.184779, 38.967792],\n              [-77.184828, 38.967812],\n              [-77.184909, 38.967831],\n              [-77.185081, 38.967874],\n              [-77.185111, 38.967874],\n              [-77.185143, 38.967865],\n              [-77.185175, 38.967853],\n              [-77.185216, 38.967851],\n              [-77.185251, 38.967854],\n              [-77.185295, 38.967857],\n              [-77.185324, 38.967852],\n              [-77.18553, 38.967845],\n              [-77.185596, 38.967834],\n              [-77.185774, 38.967772],\n              [-77.185836, 38.967765],\n              [-77.185933, 38.967768],\n              [-77.186013, 38.967756],\n              [-77.186072, 38.967766],\n              [-77.186111, 38.967796],\n              [-77.186147, 38.967797],\n              [-77.186198, 38.967764],\n              [-77.186258, 38.967771],\n              [-77.186385, 38.967773],\n              [-77.186427, 38.967787],\n              [-77.186494, 38.967782],\n              [-77.186586, 38.967762],\n              [-77.186647, 38.967731],\n              [-77.186791, 38.967738],\n              [-77.186835, 38.967728],\n              [-77.187064, 38.967728],\n              [-77.187131, 38.967732],\n              [-77.187201, 38.967743],\n              [-77.187257, 38.967757],\n              [-77.187392, 38.9678],\n              [-77.187432, 38.967801],\n              [-77.187464, 38.967781],\n              [-77.187499, 38.967772],\n              [-77.187551, 38.967768],\n              [-77.187604, 38.96777],\n              [-77.187821, 38.967799],\n              [-77.187864, 38.967826],\n              [-77.187901, 38.967828],\n              [-77.187923, 38.967822],\n              [-77.187951, 38.967791],\n              [-77.187983, 38.967768],\n              [-77.188094, 38.967771],\n              [-77.188158, 38.967768],\n              [-77.188205, 38.967758],\n              [-77.188333, 38.967709],\n              [-77.188512, 38.967613],\n              [-77.188572, 38.967577],\n              [-77.188627, 38.967529],\n              [-77.188656, 38.967512],\n              [-77.188728, 38.967491],\n              [-77.188768, 38.967487],\n              [-77.188914, 38.967488],\n              [-77.188972, 38.967484],\n              [-77.189049, 38.967503],\n              [-77.189235, 38.967523],\n              [-77.189332, 38.967544],\n              [-77.189342, 38.967546],\n              [-77.189383, 38.967554],\n              [-77.189435, 38.967565],\n              [-77.189589, 38.967568],\n              [-77.189677, 38.967578],\n              [-77.189694, 38.967583],\n              [-77.189813, 38.967617],\n              [-77.189921, 38.967648],\n              [-77.18999, 38.967674],\n              [-77.190249, 38.967793],\n              [-77.190423, 38.967849],\n              [-77.190501, 38.967867],\n              [-77.190653, 38.967915],\n              [-77.190901, 38.967972],\n              [-77.191001, 38.96801],\n              [-77.191096, 38.968047],\n              [-77.191136, 38.968057],\n              [-77.191222, 38.968067],\n              [-77.191389, 38.968081],\n              [-77.191531, 38.968092],\n              [-77.191708, 38.968099],\n              [-77.191748, 38.968104],\n              [-77.19186, 38.968127],\n              [-77.192033, 38.968151],\n              [-77.192227, 38.968152],\n              [-77.192283, 38.968148],\n              [-77.192361, 38.968153],\n              [-77.192433, 38.968167],\n              [-77.192665, 38.968164],\n              [-77.192754, 38.968156],\n              [-77.192988, 38.968153],\n              [-77.19316, 38.968137],\n              [-77.193616, 38.968093],\n              [-77.193672, 38.968094],\n              [-77.193822, 38.968123],\n              [-77.193928, 38.968154],\n              [-77.194038, 38.9682],\n              [-77.19407, 38.968224],\n              [-77.194096, 38.968236],\n              [-77.194136, 38.968216],\n              [-77.194149, 38.968168],\n              [-77.194177, 38.968111],\n              [-77.1942, 38.968105],\n              [-77.194239, 38.968189],\n              [-77.194256, 38.968204],\n              [-77.194333, 38.968206],\n              [-77.194359, 38.9682],\n              [-77.194348, 38.968161],\n              [-77.194364, 38.968075],\n              [-77.194364, 38.968042],\n              [-77.194381, 38.968019],\n              [-77.194414, 38.96799],\n              [-77.194443, 38.967923],\n              [-77.194471, 38.967895],\n              [-77.194488, 38.967866],\n              [-77.194518, 38.96786],\n              [-77.194533, 38.967839],\n              [-77.194605, 38.967778],\n              [-77.194666, 38.967723],\n              [-77.194681, 38.967699],\n              [-77.194714, 38.96768],\n              [-77.194838, 38.967657],\n              [-77.194883, 38.967633],\n              [-77.194906, 38.967627],\n              [-77.19495, 38.967604],\n              [-77.194985, 38.96757],\n              [-77.195016, 38.967553],\n              [-77.195074, 38.967549],\n              [-77.195104, 38.967562],\n              [-77.195127, 38.967571],\n              [-77.195165, 38.967573],\n              [-77.195197, 38.967544],\n              [-77.195209, 38.967519],\n              [-77.195243, 38.967499],\n              [-77.195275, 38.96748],\n              [-77.195327, 38.96746],\n              [-77.195368, 38.967437],\n              [-77.195428, 38.967428],\n              [-77.195484, 38.967433],\n              [-77.195535, 38.967437],\n              [-77.195576, 38.967444],\n              [-77.195631, 38.967448],\n              [-77.195669, 38.967461],\n              [-77.195707, 38.967481],\n              [-77.195728, 38.967506],\n              [-77.195729, 38.967524],\n              [-77.195715, 38.967547],\n              [-77.19573, 38.967563],\n              [-77.195773, 38.96755],\n              [-77.195841, 38.967559],\n              [-77.195858, 38.967516],\n              [-77.195845, 38.967475],\n              [-77.195821, 38.96746],\n              [-77.195804, 38.967435],\n              [-77.195807, 38.967412],\n              [-77.195883, 38.96737],\n              [-77.195884, 38.967334],\n              [-77.195898, 38.967302],\n              [-77.195919, 38.967275],\n              [-77.196035, 38.967171],\n              [-77.196078, 38.967151],\n              [-77.196116, 38.967125],\n              [-77.196138, 38.967094],\n              [-77.19618, 38.967068],\n              [-77.19623, 38.967048],\n              [-77.196295, 38.967032],\n              [-77.196335, 38.967017],\n              [-77.196485, 38.966985],\n              [-77.196561, 38.966965],\n              [-77.196664, 38.966951],\n              [-77.196737, 38.966952],\n              [-77.196803, 38.966953],\n              [-77.196847, 38.966948],\n              [-77.196951, 38.966921],\n              [-77.197045, 38.966881],\n              [-77.197247, 38.966819],\n              [-77.197318, 38.966811],\n              [-77.197419, 38.966793],\n              [-77.197471, 38.966776],\n              [-77.197614, 38.96675],\n              [-77.197697, 38.966743],\n              [-77.197776, 38.966748],\n              [-77.19781, 38.966756],\n              [-77.1979, 38.966786],\n              [-77.198105, 38.966825],\n              [-77.198191, 38.966858],\n              [-77.198273, 38.966878],\n              [-77.19851, 38.966966],\n              [-77.198652, 38.967002],\n              [-77.198763, 38.967016],\n              [-77.199003, 38.967078],\n              [-77.199198, 38.967088],\n              [-77.199322, 38.967073],\n              [-77.199376, 38.967091],\n              [-77.199752, 38.967145],\n              [-77.199862, 38.967177],\n              [-77.19993, 38.967192],\n              [-77.200043, 38.967202],\n              [-77.200285, 38.967242],\n              [-77.200694, 38.967269],\n              [-77.200819, 38.9673],\n              [-77.200886, 38.967311],\n              [-77.201016, 38.967347],\n              [-77.201328, 38.967415],\n              [-77.20158, 38.967493],\n              [-77.201671, 38.967525],\n              [-77.201732, 38.967549],\n              [-77.201905, 38.967634],\n              [-77.202035, 38.967683],\n              [-77.202163, 38.967727],\n              [-77.202213, 38.967739],\n              [-77.202308, 38.967748],\n              [-77.202352, 38.967744],\n              [-77.2024, 38.967734],\n              [-77.202629, 38.967684],\n              [-77.202681, 38.967685],\n              [-77.202691, 38.967709],\n              [-77.202677, 38.967735],\n              [-77.20261, 38.967801],\n              [-77.202591, 38.967828],\n              [-77.202579, 38.967855],\n              [-77.202598, 38.967894],\n              [-77.202631, 38.967923],\n              [-77.20287, 38.968064],\n              [-77.202925, 38.968085],\n              [-77.203154, 38.968131],\n              [-77.203384, 38.968169],\n              [-77.203499, 38.96818],\n              [-77.203612, 38.968197],\n              [-77.203688, 38.968223],\n              [-77.203931, 38.968328],\n              [-77.204174, 38.968404],\n              [-77.204225, 38.968416],\n              [-77.204288, 38.968421],\n              [-77.204296, 38.968422],\n              [-77.204522, 38.968423],\n              [-77.204572, 38.968431],\n              [-77.20471, 38.968494],\n              [-77.204755, 38.968523],\n              [-77.204804, 38.968606],\n              [-77.204876, 38.968695],\n              [-77.204903, 38.968727],\n              [-77.204946, 38.968761],\n              [-77.204978, 38.968778],\n              [-77.205011, 38.968795],\n              [-77.205115, 38.968823],\n              [-77.205204, 38.96884],\n              [-77.205336, 38.96885],\n              [-77.205465, 38.968868],\n              [-77.2055, 38.968886],\n              [-77.205662, 38.969017],\n              [-77.205722, 38.969075],\n              [-77.205942, 38.969212],\n              [-77.205975, 38.969237],\n              [-77.206057, 38.969321],\n              [-77.206121, 38.969422],\n              [-77.206172, 38.969526],\n              [-77.206195, 38.969597],\n              [-77.206217, 38.969626],\n              [-77.206251, 38.969652],\n              [-77.206346, 38.969711],\n              [-77.206465, 38.969759],\n              [-77.2068, 38.969826],\n              [-77.206884, 38.96986],\n              [-77.206959, 38.969907],\n              [-77.206999, 38.969942],\n              [-77.207043, 38.96997],\n              [-77.207147, 38.969985],\n              [-77.207253, 38.969995],\n              [-77.207334, 38.970009],\n              [-77.207434, 38.970046],\n              [-77.207671, 38.970109],\n              [-77.207804, 38.97016],\n              [-77.207855, 38.970174],\n              [-77.207941, 38.97019],\n              [-77.208035, 38.970194],\n              [-77.20808, 38.970195],\n              [-77.208124, 38.970222],\n              [-77.20814, 38.970255],\n              [-77.208172, 38.97026],\n              [-77.208203, 38.970218],\n              [-77.20825, 38.970195],\n              [-77.208494, 38.970199],\n              [-77.208526, 38.970212],\n              [-77.208552, 38.970236],\n              [-77.208576, 38.970287],\n              [-77.208618, 38.970307],\n              [-77.208684, 38.970287],\n              [-77.208768, 38.970274],\n              [-77.208849, 38.970254],\n              [-77.208954, 38.97021],\n              [-77.209005, 38.970204],\n              [-77.209057, 38.970211],\n              [-77.209147, 38.970238],\n              [-77.209197, 38.97026],\n              [-77.209243, 38.970268],\n              [-77.20929, 38.970267],\n              [-77.209341, 38.970257],\n              [-77.209391, 38.970242],\n              [-77.209525, 38.970191],\n              [-77.209568, 38.970165],\n              [-77.209614, 38.970144],\n              [-77.209655, 38.970142],\n              [-77.209785, 38.97015],\n              [-77.209934, 38.970121],\n              [-77.210058, 38.970089],\n              [-77.210198, 38.970088],\n              [-77.210258, 38.970062],\n              [-77.210406, 38.969921],\n              [-77.210534, 38.969791],\n              [-77.210599, 38.969711],\n              [-77.210636, 38.969675],\n              [-77.210682, 38.969645],\n              [-77.211018, 38.969518],\n              [-77.211097, 38.969495],\n              [-77.211212, 38.96941],\n              [-77.211246, 38.969413],\n              [-77.211288, 38.96939],\n              [-77.211329, 38.969376],\n              [-77.211371, 38.969361],\n              [-77.211431, 38.969352],\n              [-77.211522, 38.969352],\n              [-77.211582, 38.969363],\n              [-77.211665, 38.969392],\n              [-77.211722, 38.969426],\n              [-77.211773, 38.969414],\n              [-77.211824, 38.969409],\n              [-77.211873, 38.969412],\n              [-77.211922, 38.96942],\n              [-77.212038, 38.969451],\n              [-77.21221, 38.969481],\n              [-77.212492, 38.96949],\n              [-77.212576, 38.969512],\n              [-77.212752, 38.969588],\n              [-77.212762, 38.969614],\n              [-77.212872, 38.969719],\n              [-77.213096, 38.969804],\n              [-77.213102, 38.969803],\n              [-77.213281, 38.969782],\n              [-77.213382, 38.969777],\n              [-77.213518, 38.969783],\n              [-77.21365, 38.969804],\n              [-77.213896, 38.969892],\n              [-77.214004, 38.969957],\n              [-77.214095, 38.970029],\n              [-77.214419, 38.970367],\n              [-77.214496, 38.97042],\n              [-77.21458, 38.970467],\n              [-77.2147, 38.970519],\n              [-77.214862, 38.970564],\n              [-77.214996, 38.970584],\n              [-77.215134, 38.970589],\n              [-77.215305, 38.97058],\n              [-77.215476, 38.970585],\n              [-77.215645, 38.97061],\n              [-77.215776, 38.970644],\n              [-77.2159, 38.970689],\n              [-77.216577, 38.970967],\n              [-77.216697, 38.971021],\n              [-77.216826, 38.971062],\n              [-77.216961, 38.971087],\n              [-77.217099, 38.971097],\n              [-77.217342, 38.971093],\n              [-77.217514, 38.971106],\n              [-77.217674, 38.971134],\n              [-77.217795, 38.971166],\n              [-77.218606, 38.971499],\n              [-77.218766, 38.971549],\n              [-77.218932, 38.971582],\n              [-77.219102, 38.971598],\n              [-77.219274, 38.971597],\n              [-77.21941, 38.971584],\n              [-77.219544, 38.97156],\n              [-77.22, 38.97144],\n              [-77.220356, 38.971368],\n              [-77.220517, 38.971343],\n              [-77.220682, 38.971329],\n              [-77.220751, 38.971327],\n              [-77.220834, 38.971326],\n              [-77.221003, 38.971333],\n              [-77.221112, 38.971346],\n              [-77.221168, 38.971352],\n              [-77.221346, 38.971385],\n              [-77.221477, 38.971421],\n              [-77.221494, 38.971426],\n              [-77.222029, 38.971599],\n              [-77.222095, 38.97162],\n              [-77.223347, 38.971985],\n              [-77.223568, 38.972055],\n              [-77.223751, 38.972128],\n              [-77.223775, 38.97214],\n              [-77.223898, 38.972199],\n              [-77.223955, 38.972227],\n              [-77.22412, 38.972324],\n              [-77.224313, 38.972473],\n              [-77.224898, 38.97287],\n              [-77.225246, 38.973107],\n              [-77.225453, 38.973255],\n              [-77.225724, 38.97347],\n              [-77.225953, 38.973672],\n              [-77.226187, 38.973899],\n              [-77.226385, 38.974113],\n              [-77.226581, 38.974368],\n              [-77.226776, 38.974655],\n              [-77.226935, 38.974926],\n              [-77.227052, 38.975151],\n              [-77.22717, 38.975407],\n              [-77.227243, 38.975617],\n              [-77.227369, 38.976119],\n              [-77.227472, 38.97643],\n              [-77.227585, 38.976711],\n              [-77.228028, 38.977571],\n              [-77.228498, 38.978337],\n              [-77.228591, 38.978507],\n              [-77.228688, 38.978646],\n              [-77.228783, 38.978754],\n              [-77.229143, 38.979091],\n              [-77.229579, 38.979524],\n              [-77.229619, 38.979551],\n              [-77.229898, 38.979701],\n              [-77.229952, 38.979717],\n              [-77.230035, 38.979727],\n              [-77.230223, 38.97976],\n              [-77.230357, 38.979764],\n              [-77.230393, 38.979758],\n              [-77.230479, 38.979734],\n              [-77.230534, 38.979707],\n              [-77.230604, 38.979653],\n              [-77.230671, 38.979574],\n              [-77.23069, 38.979544],\n              [-77.230826, 38.979401],\n              [-77.230887, 38.979327],\n              [-77.230942, 38.979291],\n              [-77.231028, 38.979278],\n              [-77.231054, 38.979279],\n              [-77.231338, 38.979263],\n              [-77.231437, 38.979263],\n              [-77.231594, 38.979321],\n              [-77.231729, 38.979326],\n              [-77.231812, 38.979318],\n              [-77.231919, 38.979312],\n              [-77.231971, 38.979328],\n              [-77.23208, 38.979352],\n              [-77.232135, 38.979353],\n              [-77.232282, 38.979319],\n              [-77.23233, 38.979296],\n              [-77.23236, 38.979272],\n              [-77.232459, 38.979174],\n              [-77.232511, 38.979098],\n              [-77.23253, 38.979059],\n              [-77.232576, 38.978985],\n              [-77.232732, 38.978802],\n              [-77.232776, 38.978725],\n              [-77.232842, 38.978485],\n              [-77.232861, 38.978354],\n              [-77.232875, 38.978299],\n              [-77.232907, 38.978246],\n              [-77.23301, 38.978144],\n              [-77.233111, 38.97811],\n              [-77.233213, 38.978061],\n              [-77.233426, 38.977862],\n              [-77.233461, 38.977814],\n              [-77.233507, 38.97773],\n              [-77.233545, 38.977614],\n              [-77.233556, 38.977563],\n              [-77.23357, 38.977409],\n              [-77.233582, 38.977372],\n              [-77.233599, 38.977354],\n              [-77.233628, 38.977341],\n              [-77.233753, 38.977304],\n              [-77.233822, 38.977268],\n              [-77.233846, 38.977241],\n              [-77.233915, 38.977142],\n              [-77.233963, 38.977044],\n              [-77.233969, 38.977018],\n              [-77.234105, 38.976809],\n              [-77.234187, 38.976703],\n              [-77.234195, 38.976683],\n              [-77.234398, 38.9764],\n              [-77.234541, 38.976238],\n              [-77.234637, 38.976153],\n              [-77.234697, 38.97612],\n              [-77.234734, 38.9761],\n              [-77.234845, 38.97603],\n              [-77.234877, 38.975984],\n              [-77.235198, 38.976088],\n              [-77.235307, 38.976229],\n              [-77.235371, 38.976312],\n              [-77.235438, 38.976435],\n              [-77.235448, 38.976464],\n              [-77.235497, 38.976565],\n              [-77.235504, 38.976591],\n              [-77.235534, 38.976701],\n              [-77.235564, 38.976727],\n              [-77.235696, 38.976824],\n              [-77.235756, 38.976842],\n              [-77.235838, 38.976838],\n              [-77.235861, 38.97684],\n              [-77.235946, 38.976832],\n              [-77.23609, 38.976846],\n              [-77.236124, 38.976861],\n              [-77.236162, 38.976887],\n              [-77.236211, 38.97693],\n              [-77.236724, 38.97747],\n              [-77.236803, 38.977553],\n              [-77.236876, 38.97763],\n              [-77.237031, 38.977793],\n              [-77.237067, 38.977847],\n              [-77.237133, 38.977931],\n              [-77.237165, 38.977962],\n              [-77.237212, 38.978021],\n              [-77.237277, 38.978078],\n              [-77.237393, 38.97819],\n              [-77.237639, 38.978389],\n              [-77.237662, 38.978425],\n              [-77.237726, 38.978548],\n              [-77.237799, 38.978649],\n              [-77.237855, 38.978705],\n              [-77.238077, 38.978861],\n              [-77.238124, 38.978926],\n              [-77.238199, 38.978995],\n              [-77.238249, 38.97906],\n              [-77.238314, 38.979156],\n              [-77.238452, 38.979331],\n              [-77.238484, 38.979361],\n              [-77.238629, 38.97946],\n              [-77.238652, 38.979471],\n              [-77.23872, 38.979526],\n              [-77.238753, 38.979559],\n              [-77.238932, 38.979716],\n              [-77.239403, 38.980069],\n              [-77.239499, 38.980116],\n              [-77.239546, 38.980131],\n              [-77.239656, 38.980201],\n              [-77.239834, 38.980379],\n              [-77.239885, 38.980441],\n              [-77.239901, 38.980481],\n              [-77.239902, 38.980517],\n              [-77.239874, 38.980569],\n              [-77.239868, 38.9806],\n              [-77.239871, 38.980624],\n              [-77.239904, 38.980717],\n              [-77.239952, 38.980762],\n              [-77.240039, 38.980804],\n              [-77.24013, 38.98086],\n              [-77.240346, 38.980983],\n              [-77.240455, 38.981057],\n              [-77.240568, 38.981127],\n              [-77.240723, 38.981185],\n              [-77.240857, 38.981206],\n              [-77.241083, 38.981214],\n              [-77.241112, 38.981228],\n              [-77.241153, 38.981258],\n              [-77.241334, 38.981415],\n              [-77.241382, 38.981435],\n              [-77.241432, 38.98147],\n              [-77.241467, 38.981528],\n              [-77.241552, 38.981623],\n              [-77.241725, 38.981709],\n              [-77.242006, 38.981771],\n              [-77.242239, 38.981862],\n              [-77.242305, 38.981896],\n              [-77.242392, 38.981927],\n              [-77.242595, 38.981999],\n              [-77.242785, 38.982056],\n              [-77.243007, 38.982109],\n              [-77.243106, 38.982124],\n              [-77.243425, 38.98215],\n              [-77.243565, 38.982161],\n              [-77.243667, 38.982189],\n              [-77.243706, 38.982209],\n              [-77.243743, 38.982234],\n              [-77.243831, 38.982314],\n              [-77.243879, 38.982342],\n              [-77.243918, 38.982358],\n              [-77.243967, 38.982366],\n              [-77.244058, 38.982333],\n              [-77.244081, 38.982216],\n              [-77.244046, 38.982137],\n              [-77.24407, 38.982122],\n              [-77.244098, 38.982133],\n              [-77.24418, 38.982185],\n              [-77.244254, 38.982293],\n              [-77.244434, 38.982449],\n              [-77.244623, 38.982543],\n              [-77.244913, 38.982622],\n              [-77.244994, 38.982666],\n              [-77.245032, 38.982692],\n              [-77.245058, 38.982746],\n              [-77.245069, 38.98279],\n              [-77.245077, 38.982915],\n              [-77.245069, 38.982996],\n              [-77.245082, 38.983133],\n              [-77.245095, 38.983261],\n              [-77.245199, 38.983543],\n              [-77.245248, 38.983621],\n              [-77.24528, 38.983682],\n              [-77.245319, 38.983736],\n              [-77.245332, 38.983794],\n              [-77.245325, 38.983827],\n              [-77.245319, 38.983856],\n              [-77.24531, 38.983935],\n              [-77.245324, 38.984025],\n              [-77.245348, 38.984073],\n              [-77.245407, 38.984243],\n              [-77.24548, 38.984404],\n              [-77.245517, 38.9845],\n              [-77.245613, 38.984699],\n              [-77.24567, 38.984844],\n              [-77.245725, 38.984958],\n              [-77.245751, 38.985038],\n              [-77.24591, 38.985368],\n              [-77.245939, 38.985409],\n              [-77.24599, 38.98552],\n              [-77.246017, 38.985568],\n              [-77.246026, 38.985583],\n              [-77.246174, 38.985757],\n              [-77.246198, 38.985805],\n              [-77.246214, 38.985884],\n              [-77.246283, 38.986155],\n              [-77.246307, 38.986229],\n              [-77.246787, 38.98739],\n              [-77.246982, 38.987861],\n              [-77.246988, 38.987893],\n              [-77.247015, 38.987957],\n              [-77.247085, 38.988052],\n              [-77.247122, 38.988246],\n              [-77.247149, 38.988335],\n              [-77.247191, 38.988409],\n              [-77.247234, 38.988469],\n              [-77.247288, 38.988556],\n              [-77.24736, 38.988715],\n              [-77.247385, 38.988793],\n              [-77.247416, 38.988986],\n              [-77.247471, 38.989144],\n              [-77.2475, 38.989192],\n              [-77.247609, 38.989319],\n              [-77.247691, 38.989442],\n              [-77.247713, 38.989492],\n              [-77.247755, 38.989658],\n              [-77.247842, 38.9899],\n              [-77.247867, 38.989999],\n              [-77.247954, 38.99016],\n              [-77.247986, 38.990241],\n              [-77.24802, 38.99031],\n              [-77.248071, 38.990448],\n              [-77.248119, 38.990579],\n              [-77.248159, 38.990714],\n              [-77.248212, 38.990847],\n              [-77.248226, 38.990924],\n              [-77.248225, 38.991081],\n              [-77.248231, 38.991197],\n              [-77.248545, 38.992474],\n              [-77.248577, 38.992555],\n              [-77.248616, 38.992632],\n              [-77.248656, 38.992698],\n              [-77.248759, 38.992837],\n              [-77.248897, 38.992999],\n              [-77.249188, 38.993428],\n              [-77.249217, 38.993483],\n              [-77.249333, 38.993666],\n              [-77.249387, 38.993733],\n              [-77.249457, 38.993798],\n              [-77.249528, 38.993857],\n              [-77.249642, 38.993921],\n              [-77.249761, 38.993952],\n              [-77.249873, 38.99399],\n              [-77.249919, 38.994014],\n              [-77.249955, 38.994054],\n              [-77.249966, 38.994092],\n              [-77.24996, 38.994131],\n              [-77.249927, 38.994182],\n              [-77.249887, 38.994256],\n              [-77.249862, 38.994335],\n              [-77.249855, 38.994416],\n              [-77.249864, 38.994509],\n              [-77.249887, 38.994565],\n              [-77.249927, 38.994614],\n              [-77.249982, 38.994653],\n              [-77.250341, 38.994825],\n              [-77.250404, 38.994848],\n              [-77.250473, 38.994859],\n              [-77.250602, 38.994853],\n              [-77.250662, 38.994856],\n              [-77.25154, 38.994993],\n              [-77.25159, 38.995005],\n              [-77.251629, 38.995031],\n              [-77.251667, 38.995088],\n              [-77.251706, 38.995126],\n              [-77.251755, 38.995155],\n              [-77.252345, 38.995372],\n              [-77.252482, 38.995423],\n              [-77.252582, 38.995441],\n              [-77.252684, 38.995441],\n              [-77.252742, 38.995432],\n              [-77.252796, 38.995423],\n              [-77.252843, 38.995424],\n              [-77.252901, 38.995438],\n              [-77.252942, 38.995459],\n              [-77.252967, 38.995492],\n              [-77.252974, 38.995529],\n              [-77.252915, 38.995722],\n              [-77.25291, 38.995799],\n              [-77.252925, 38.995876],\n              [-77.253006, 38.996062],\n              [-77.253052, 38.996168],\n              [-77.253065, 38.996199],\n              [-77.253137, 38.996336],\n              [-77.25314, 38.996342],\n              [-77.253157, 38.996374],\n              [-77.253252, 38.996518],\n              [-77.253302, 38.996574],\n              [-77.25335, 38.996628],\n              [-77.253439, 38.996704],\n              [-77.253498, 38.996771],\n              [-77.253518, 38.996813],\n              [-77.253525, 38.996857],\n              [-77.253517, 38.996901],\n              [-77.253482, 38.996976],\n              [-77.253476, 38.997005],\n              [-77.253466, 38.99705],\n              [-77.253469, 38.9971],\n              [-77.253483, 38.997149],\n              [-77.253519, 38.997221],\n              [-77.253546, 38.997301],\n              [-77.253583, 38.997645],\n              [-77.253601, 38.997746],\n              [-77.253635, 38.997836],\n              [-77.253669, 38.99788],\n              [-77.253714, 38.997917],\n              [-77.253777, 38.997948],\n              [-77.253828, 38.997973],\n              [-77.253936, 38.998026],\n              [-77.25399, 38.99806],\n              [-77.254011, 38.998074],\n              [-77.254036, 38.99809],\n              [-77.254064, 38.998112],\n              [-77.254121, 38.998165],\n              [-77.254185, 38.998236],\n              [-77.254224, 38.998304],\n              [-77.254239, 38.998378],\n              [-77.25427, 38.998581],\n              [-77.254311, 38.998638],\n              [-77.254411, 38.998723],\n              [-77.254485, 38.998804],\n              [-77.254529, 38.998872],\n              [-77.254727, 38.999356],\n              [-77.254743, 38.999406],\n              [-77.254746, 38.999439],\n              [-77.254748, 38.999457],\n              [-77.254736, 38.999503],\n              [-77.254729, 38.999531],\n              [-77.254707, 38.999576],\n              [-77.254654, 38.999658],\n              [-77.254636, 38.999686],\n              [-77.254622, 38.999737],\n              [-77.254625, 38.999789],\n              [-77.254733, 39.000082],\n              [-77.254752, 39.000133],\n              [-77.254835, 39.000357],\n              [-77.25484, 39.000371],\n              [-77.254956, 39.000733],\n              [-77.255027, 39.000886],\n              [-77.255086, 39.000953],\n              [-77.255174, 39.001037],\n              [-77.255269, 39.001112],\n              [-77.255388, 39.001201],\n              [-77.255419, 39.001228],\n              [-77.255476, 39.001282],\n              [-77.255509, 39.001313],\n              [-77.255604, 39.001428],\n              [-77.255678, 39.001543],\n              [-77.255682, 39.00155],\n              [-77.255725, 39.001652],\n              [-77.255753, 39.001757],\n              [-77.255767, 39.001891],\n              [-77.255761, 39.001999],\n              [-77.255739, 39.002105],\n              [-77.255703, 39.002209],\n              [-77.255635, 39.002536],\n              [-77.255581, 39.002713],\n              [-77.255507, 39.003048],\n              [-77.255483, 39.003232],\n              [-77.255478, 39.003467],\n              [-77.255454, 39.003677],\n              [-77.255428, 39.00381],\n              [-77.255385, 39.003941],\n              [-77.255276, 39.00416],\n              [-77.255236, 39.004283],\n              [-77.255237, 39.004357],\n              [-77.255337, 39.004661],\n              [-77.255342, 39.004687],\n              [-77.255345, 39.004795],\n              [-77.255326, 39.004884],\n              [-77.255287, 39.004981],\n              [-77.255244, 39.005049],\n              [-77.255061, 39.005402],\n              [-77.254979, 39.005592],\n              [-77.254973, 39.005619],\n              [-77.254925, 39.00575],\n              [-77.254871, 39.005851],\n              [-77.254785, 39.00597],\n              [-77.254547, 39.006162],\n              [-77.254482, 39.006221],\n              [-77.254434, 39.006287],\n              [-77.254404, 39.00636],\n              [-77.254363, 39.006667],\n              [-77.254357, 39.006716],\n              [-77.254335, 39.006906],\n              [-77.254277, 39.007113],\n              [-77.254267, 39.007138],\n              [-77.254226, 39.007237],\n              [-77.254116, 39.007414],\n              [-77.254073, 39.007496],\n              [-77.253841, 39.007882],\n              [-77.253341, 39.008924],\n              [-77.253311, 39.009038],\n              [-77.253261, 39.009166],\n              [-77.253192, 39.009267],\n              [-77.253106, 39.009344],\n              [-77.253091, 39.009357],\n              [-77.252981, 39.009488],\n              [-77.25261, 39.009972],\n              [-77.252496, 39.010103],\n              [-77.252441, 39.010176],\n              [-77.252331, 39.010324],\n              [-77.252262, 39.010399],\n              [-77.252051, 39.010627],\n              [-77.251875, 39.010869],\n              [-77.251837, 39.010945],\n              [-77.251789, 39.010964],\n              [-77.251768, 39.010989],\n              [-77.251757, 39.011018],\n              [-77.251773, 39.011067],\n              [-77.251671, 39.011247],\n              [-77.251631, 39.011328],\n              [-77.251582, 39.01141],\n              [-77.251436, 39.011622],\n              [-77.251266, 39.011812],\n              [-77.251181, 39.011897],\n              [-77.250916, 39.012118],\n              [-77.250672, 39.012298],\n              [-77.250416, 39.012472],\n              [-77.250304, 39.012541],\n              [-77.250285, 39.012553],\n              [-77.250067, 39.012699],\n              [-77.249906, 39.012748],\n              [-77.249096, 39.013181],\n              [-77.248483, 39.01354],\n              [-77.248311, 39.013681],\n              [-77.248135, 39.013778],\n              [-77.24803, 39.013849],\n              [-77.24791, 39.013892],\n              [-77.24783, 39.014001],\n              [-77.247243, 39.014475],\n              [-77.247152, 39.014561],\n              [-77.246947, 39.014778],\n              [-77.24687, 39.014874],\n              [-77.246743, 39.015084],\n              [-77.246684, 39.015199],\n              [-77.246583, 39.015476],\n              [-77.246555, 39.015595],\n              [-77.246549, 39.015697],\n              [-77.246552, 39.015762],\n              [-77.246526, 39.015982],\n              [-77.246435, 39.016173],\n              [-77.246287, 39.016456],\n              [-77.246232, 39.016536],\n              [-77.24617, 39.016604],\n              [-77.245933, 39.016827],\n              [-77.24586, 39.016883],\n              [-77.24568, 39.017053],\n              [-77.245643, 39.017098],\n              [-77.245572, 39.017201],\n              [-77.245516, 39.017306],\n              [-77.245465, 39.017422],\n              [-77.245451, 39.017442],\n              [-77.245429, 39.017473],\n              [-77.245382, 39.017539],\n              [-77.24531, 39.017785],\n              [-77.245301, 39.017996],\n              [-77.245328, 39.018196],\n              [-77.24533, 39.018205],\n              [-77.245349, 39.018272],\n              [-77.245324, 39.018368],\n              [-77.245302, 39.018505],\n              [-77.245282, 39.018514],\n              [-77.24525, 39.018514],\n              [-77.245227, 39.018544],\n              [-77.245211, 39.018593],\n              [-77.245101, 39.018823],\n              [-77.245069, 39.018861],\n              [-77.245076, 39.018917],\n              [-77.245067, 39.018946],\n              [-77.245025, 39.019079],\n              [-77.245025, 39.019107],\n              [-77.244974, 39.019438],\n              [-77.244933, 39.019524],\n              [-77.244923, 39.019575],\n              [-77.244929, 39.019615],\n              [-77.24494, 39.019646],\n              [-77.244954, 39.019665],\n              [-77.244965, 39.019694],\n              [-77.244966, 39.019714],\n              [-77.244952, 39.019741],\n              [-77.244932, 39.019767],\n              [-77.244926, 39.019795],\n              [-77.24491, 39.020003],\n              [-77.24487, 39.020162],\n              [-77.244849, 39.020244],\n              [-77.244844, 39.020335],\n              [-77.244843, 39.020347],\n              [-77.244854, 39.020457],\n              [-77.244864, 39.02051],\n              [-77.244882, 39.020604],\n              [-77.244886, 39.020749],\n              [-77.244914, 39.021082],\n              [-77.244921, 39.021166],\n              [-77.244918, 39.02123],\n              [-77.244916, 39.021281],\n              [-77.244941, 39.021524],\n              [-77.244981, 39.021664],\n              [-77.244992, 39.021734],\n              [-77.245019, 39.021804],\n              [-77.245058, 39.021975],\n              [-77.245074, 39.022046],\n              [-77.245083, 39.022069],\n              [-77.2451, 39.022113],\n              [-77.245095, 39.022154],\n              [-77.245113, 39.022198],\n              [-77.245138, 39.022242],\n              [-77.245154, 39.022288],\n              [-77.24518, 39.02234],\n              [-77.245178, 39.022364],\n              [-77.245209, 39.022422],\n              [-77.245221, 39.022467],\n              [-77.245259, 39.022495],\n              [-77.24528, 39.022532],\n              [-77.245283, 39.022587],\n              [-77.245336, 39.022678],\n              [-77.245372, 39.022784],\n              [-77.245456, 39.022965],\n              [-77.245456, 39.02301],\n              [-77.245491, 39.023029],\n              [-77.245536, 39.023079],\n              [-77.245661, 39.023305],\n              [-77.245667, 39.023366],\n              [-77.245712, 39.023433],\n              [-77.245706, 39.023481],\n              [-77.245717, 39.023537],\n              [-77.245768, 39.023537],\n              [-77.245784, 39.023579],\n              [-77.24581, 39.023626],\n              [-77.245857, 39.023645],\n              [-77.245886, 39.023682],\n              [-77.24591, 39.023705],\n              [-77.245928, 39.023773],\n              [-77.246031, 39.023918],\n              [-77.246064, 39.023981],\n              [-77.246115, 39.02405],\n              [-77.246136, 39.024126],\n              [-77.24614, 39.024184],\n              [-77.246161, 39.024222],\n              [-77.246189, 39.024275],\n              [-77.246211, 39.024316],\n              [-77.246243, 39.024408],\n              [-77.246319, 39.024689],\n              [-77.246385, 39.02476],\n              [-77.246455, 39.0248],\n              [-77.246493, 39.024867],\n              [-77.24657, 39.024968],\n              [-77.246665, 39.025064],\n              [-77.246757, 39.025144],\n              [-77.246876, 39.02526],\n              [-77.24693, 39.025304],\n              [-77.247015, 39.025401],\n              [-77.247136, 39.025512],\n              [-77.247202, 39.025593],\n              [-77.247286, 39.025659],\n              [-77.247355, 39.025734],\n              [-77.247431, 39.025804],\n              [-77.247522, 39.025877],\n              [-77.2477, 39.026046],\n              [-77.247747, 39.026087],\n              [-77.247795, 39.026137],\n              [-77.24791, 39.026211],\n              [-77.247981, 39.026245],\n              [-77.248093, 39.026314],\n              [-77.248156, 39.026364],\n              [-77.248207, 39.026393],\n              [-77.248295, 39.026475],\n              [-77.248323, 39.026498],\n              [-77.248356, 39.026525],\n              [-77.248421, 39.026562],\n              [-77.248621, 39.026649],\n              [-77.248688, 39.026687],\n              [-77.248896, 39.026783],\n              [-77.248934, 39.026794],\n              [-77.248946, 39.026797],\n              [-77.249003, 39.02682],\n              [-77.249093, 39.026883],\n              [-77.249168, 39.026858],\n              [-77.249259, 39.026878],\n              [-77.249332, 39.026889],\n              [-77.249396, 39.026912],\n              [-77.249449, 39.026936],\n              [-77.249499, 39.02695],\n              [-77.249546, 39.026957],\n              [-77.249594, 39.026953],\n              [-77.249637, 39.026938],\n              [-77.249667, 39.026932],\n              [-77.24971, 39.026887],\n              [-77.249772, 39.026908],\n              [-77.249876, 39.026928],\n              [-77.249895, 39.026935],\n              [-77.249955, 39.026958],\n              [-77.250026, 39.026973],\n              [-77.250109, 39.026998],\n              [-77.250199, 39.027051],\n              [-77.250324, 39.027113],\n              [-77.250373, 39.02713],\n              [-77.250492, 39.027204],\n              [-77.250511, 39.027234],\n              [-77.25051, 39.027336],\n              [-77.250504, 39.027363],\n              [-77.250519, 39.027384],\n              [-77.250548, 39.027411],\n              [-77.250587, 39.027426],\n              [-77.250618, 39.027425],\n              [-77.250694, 39.027429],\n              [-77.250742, 39.027442],\n              [-77.250793, 39.027467],\n              [-77.250833, 39.027494],\n              [-77.250916, 39.027583],\n              [-77.251095, 39.027726],\n              [-77.251242, 39.027821],\n              [-77.251369, 39.027895],\n              [-77.251419, 39.027934],\n              [-77.251595, 39.028048],\n              [-77.251682, 39.028121],\n              [-77.25175, 39.028161],\n              [-77.251904, 39.028198],\n              [-77.252185, 39.028315],\n              [-77.252343, 39.028409],\n              [-77.252421, 39.028449],\n              [-77.252617, 39.028536],\n              [-77.252764, 39.028609],\n              [-77.252876, 39.028673],\n              [-77.252991, 39.028749],\n              [-77.253138, 39.028862],\n              [-77.253271, 39.028985],\n              [-77.253314, 39.02902],\n              [-77.253383, 39.029041],\n              [-77.253408, 39.029036],\n              [-77.253454, 39.029036],\n              [-77.253506, 39.029053],\n              [-77.253604, 39.029133],\n              [-77.25367, 39.029174],\n              [-77.253734, 39.029207],\n              [-77.253808, 39.029254],\n              [-77.253951, 39.029323],\n              [-77.254088, 39.029403],\n              [-77.254159, 39.029452],\n              [-77.254289, 39.029521],\n              [-77.25438, 39.029575],\n              [-77.254471, 39.02962],\n              [-77.254527, 39.029638],\n              [-77.254634, 39.029698],\n              [-77.254748, 39.029741],\n              [-77.254952, 39.029781],\n              [-77.254997, 39.029784],\n              [-77.255066, 39.029795],\n              [-77.255228, 39.029846],\n              [-77.255438, 39.029919],\n              [-77.25551, 39.029938],\n              [-77.255571, 39.029969],\n              [-77.255638, 39.029965],\n              [-77.255652, 39.029967],\n              [-77.255699, 39.029974],\n              [-77.255791, 39.030002],\n              [-77.255867, 39.030019],\n              [-77.255924, 39.030036],\n              [-77.256155, 39.030132],\n              [-77.256191, 39.03013],\n              [-77.256246, 39.030117],\n              [-77.256294, 39.030096],\n              [-77.256333, 39.030064],\n              [-77.256366, 39.030047],\n              [-77.256463, 39.030047],\n              [-77.256548, 39.030051],\n              [-77.256829, 39.030089],\n              [-77.256928, 39.030108],\n              [-77.257089, 39.030127],\n              [-77.257189, 39.030171],\n              [-77.257284, 39.030197],\n              [-77.257356, 39.03021],\n              [-77.257551, 39.030216],\n              [-77.257672, 39.030243],\n              [-77.257723, 39.030258],\n              [-77.257783, 39.030265],\n              [-77.257849, 39.030266],\n              [-77.257931, 39.030279],\n              [-77.258017, 39.030303],\n              [-77.258092, 39.030319],\n              [-77.258173, 39.030324],\n              [-77.258216, 39.030327],\n              [-77.258263, 39.030326],\n              [-77.258363, 39.03037],\n              [-77.258385, 39.030379],\n              [-77.258495, 39.030401],\n              [-77.258565, 39.030405],\n              [-77.258654, 39.030422],\n              [-77.258749, 39.030433],\n              [-77.258848, 39.030465],\n              [-77.258952, 39.030487],\n              [-77.259006, 39.030502],\n              [-77.259051, 39.030515],\n              [-77.259288, 39.030618],\n              [-77.259334, 39.030647],\n              [-77.259438, 39.030683],\n              [-77.259506, 39.030693],\n              [-77.259559, 39.030711],\n              [-77.259631, 39.030742],\n              [-77.259707, 39.030761],\n              [-77.25985, 39.03079],\n              [-77.259927, 39.030822],\n              [-77.259951, 39.030832],\n              [-77.260045, 39.030855],\n              [-77.260218, 39.030859],\n              [-77.260446, 39.030887],\n              [-77.260789, 39.03099],\n              [-77.260833, 39.031007],\n              [-77.260824, 39.031037],\n              [-77.260766, 39.031069],\n              [-77.260711, 39.031048],\n              [-77.260646, 39.031031],\n              [-77.260478, 39.031002],\n              [-77.260389, 39.030978],\n              [-77.260298, 39.030977],\n              [-77.260205, 39.030989],\n              [-77.26011, 39.030993],\n              [-77.260047, 39.030987],\n              [-77.259984, 39.030964],\n              [-77.259943, 39.03091],\n              [-77.259876, 39.03087],\n              [-77.259837, 39.030866],\n              [-77.259672, 39.030803],\n              [-77.259596, 39.03077],\n              [-77.259547, 39.030768],\n              [-77.259504, 39.030793],\n              [-77.259478, 39.030835],\n              [-77.259473, 39.030884],\n              [-77.259482, 39.030917],\n              [-77.259529, 39.030968],\n              [-77.259656, 39.031005],\n              [-77.25973, 39.031032],\n              [-77.259893, 39.031081],\n              [-77.259968, 39.031098],\n              [-77.260072, 39.031129],\n              [-77.260131, 39.031154],\n              [-77.260237, 39.03119],\n              [-77.260296, 39.031199],\n              [-77.260339, 39.031197],\n              [-77.260382, 39.031171],\n              [-77.260438, 39.031145],\n              [-77.260514, 39.031137],\n              [-77.260569, 39.03114],\n              [-77.260802, 39.031214],\n              [-77.26085, 39.031223],\n              [-77.261148, 39.031239],\n              [-77.261251, 39.031256],\n              [-77.261434, 39.031262],\n              [-77.261574, 39.031287],\n              [-77.261635, 39.031318],\n              [-77.261685, 39.031337],\n              [-77.261731, 39.031343],\n              [-77.261775, 39.031354],\n              [-77.261972, 39.031382],\n              [-77.262133, 39.031396],\n              [-77.262351, 39.031396],\n              [-77.262401, 39.031392],\n              [-77.262469, 39.031397],\n              [-77.262563, 39.031416],\n              [-77.262576, 39.03144],\n              [-77.262612, 39.031462],\n              [-77.262657, 39.03146],\n              [-77.262699, 39.031437],\n              [-77.262788, 39.031473],\n              [-77.262939, 39.031476],\n              [-77.262989, 39.031485],\n              [-77.263022, 39.031491],\n              [-77.263093, 39.031493],\n              [-77.26314, 39.031503],\n              [-77.263221, 39.031534],\n              [-77.263345, 39.031557],\n              [-77.263412, 39.03156],\n              [-77.26345, 39.031567],\n              [-77.26356, 39.031609],\n              [-77.263665, 39.031635],\n              [-77.263774, 39.031651],\n              [-77.26388, 39.031652],\n              [-77.264006, 39.031695],\n              [-77.264139, 39.031728],\n              [-77.264203, 39.031726],\n              [-77.264303, 39.031744],\n              [-77.264444, 39.031786],\n              [-77.264486, 39.031791],\n              [-77.26452, 39.031786],\n              [-77.264634, 39.031793],\n              [-77.264836, 39.031797],\n              [-77.2649, 39.031807],\n              [-77.265088, 39.03182],\n              [-77.26516, 39.031819],\n              [-77.265316, 39.031835],\n              [-77.265396, 39.031837],\n              [-77.265508, 39.031848],\n              [-77.265626, 39.03186],\n              [-77.26575, 39.031884],\n              [-77.265832, 39.031906],\n              [-77.265881, 39.031924],\n              [-77.265917, 39.031943],\n              [-77.265939, 39.03195],\n              [-77.265965, 39.031945],\n              [-77.265988, 39.031947],\n              [-77.266043, 39.031961],\n              [-77.266189, 39.032008],\n              [-77.266235, 39.031997],\n              [-77.26631, 39.032011],\n              [-77.266336, 39.032023],\n              [-77.266344, 39.032027],\n              [-77.26637, 39.032048],\n              [-77.26642, 39.032058],\n              [-77.266461, 39.03206],\n              [-77.266579, 39.032079],\n              [-77.266648, 39.032086],\n              [-77.266888, 39.032123],\n              [-77.266981, 39.032132],\n              [-77.267163, 39.032158],\n              [-77.26733, 39.032159],\n              [-77.267399, 39.03217],\n              [-77.267517, 39.032172],\n              [-77.267578, 39.032169],\n              [-77.267723, 39.032181],\n              [-77.267821, 39.032193],\n              [-77.267913, 39.032209],\n              [-77.267997, 39.032217],\n              [-77.268078, 39.032234],\n              [-77.268225, 39.032276],\n              [-77.268228, 39.032277],\n              [-77.268244, 39.032282],\n              [-77.26837, 39.032318],\n              [-77.268382, 39.032321],\n              [-77.268468, 39.032346],\n              [-77.268525, 39.032347],\n              [-77.268571, 39.032357],\n              [-77.268622, 39.03238],\n              [-77.268673, 39.032396],\n              [-77.268958, 39.032469],\n              [-77.269006, 39.032489],\n              [-77.269073, 39.032536],\n              [-77.269111, 39.032551],\n              [-77.269152, 39.032557],\n              [-77.269188, 39.032571],\n              [-77.269236, 39.032584],\n              [-77.269275, 39.032604],\n              [-77.269368, 39.03262],\n              [-77.269474, 39.032661],\n              [-77.269571, 39.032716],\n              [-77.269621, 39.032736],\n              [-77.269686, 39.03274],\n              [-77.269739, 39.032755],\n              [-77.269785, 39.032775],\n              [-77.269975, 39.032805],\n              [-77.270025, 39.032825],\n              [-77.270084, 39.032856],\n              [-77.270137, 39.032874],\n              [-77.270194, 39.032887],\n              [-77.270253, 39.032912],\n              [-77.270345, 39.032958],\n              [-77.27038, 39.032959],\n              [-77.270413, 39.032945],\n              [-77.270473, 39.032951],\n              [-77.270514, 39.032975],\n              [-77.270537, 39.03298],\n              [-77.270609, 39.032994],\n              [-77.270657, 39.033013],\n              [-77.270752, 39.033059],\n              [-77.270829, 39.033084],\n              [-77.270879, 39.033105],\n              [-77.271011, 39.033144],\n              [-77.271048, 39.033163],\n              [-77.271133, 39.033176],\n              [-77.271213, 39.0332],\n              [-77.271239, 39.03321],\n              [-77.27141, 39.033276],\n              [-77.271499, 39.033299],\n              [-77.271506, 39.033301],\n              [-77.271539, 39.03331],\n              [-77.271592, 39.033338],\n              [-77.271619, 39.033359],\n              [-77.271648, 39.033373],\n              [-77.271689, 39.033376],\n              [-77.271783, 39.033396],\n              [-77.271846, 39.033426],\n              [-77.271937, 39.033488],\n              [-77.271973, 39.033501],\n              [-77.272062, 39.033498],\n              [-77.272125, 39.033514],\n              [-77.272176, 39.033535],\n              [-77.272242, 39.033554],\n              [-77.272312, 39.03358],\n              [-77.272336, 39.033589],\n              [-77.272451, 39.033619],\n              [-77.272529, 39.033648],\n              [-77.272609, 39.033671],\n              [-77.272676, 39.033695],\n              [-77.272715, 39.033715],\n              [-77.272834, 39.033762],\n              [-77.272868, 39.033787],\n              [-77.27291, 39.033811],\n              [-77.272947, 39.033815],\n              [-77.272974, 39.033828],\n              [-77.273033, 39.033845],\n              [-77.273172, 39.033871],\n              [-77.273193, 39.03388],\n              [-77.273226, 39.033872],\n              [-77.27325, 39.033857],\n              [-77.27339, 39.033818],\n              [-77.273432, 39.033813],\n              [-77.273499, 39.033815],\n              [-77.273622, 39.033832],\n              [-77.27367, 39.033843],\n              [-77.273736, 39.033849],\n              [-77.273796, 39.033861],\n              [-77.273852, 39.033866],\n              [-77.273995, 39.033899],\n              [-77.274094, 39.033928],\n              [-77.274098, 39.033929],\n              [-77.2741, 39.03393],\n              [-77.274115, 39.033934],\n              [-77.27416, 39.033955],\n              [-77.274201, 39.033963],\n              [-77.274236, 39.033982],\n              [-77.274295, 39.034002],\n              [-77.274337, 39.034026],\n              [-77.274353, 39.034047],\n              [-77.274496, 39.034106],\n              [-77.274761, 39.034193],\n              [-77.2748, 39.034216],\n              [-77.274842, 39.034235],\n              [-77.274898, 39.034254],\n              [-77.275039, 39.034292],\n              [-77.275088, 39.034316],\n              [-77.275141, 39.03435],\n              [-77.27516, 39.034362],\n              [-77.2752, 39.03438],\n              [-77.275302, 39.034456],\n              [-77.27536, 39.034485],\n              [-77.275404, 39.034494],\n              [-77.27547, 39.034528],\n              [-77.275507, 39.034558],\n              [-77.275655, 39.034628],\n              [-77.275862, 39.03474],\n              [-77.275957, 39.034803],\n              [-77.276042, 39.034836],\n              [-77.276154, 39.034892],\n              [-77.276305, 39.034991],\n              [-77.276527, 39.035108],\n              [-77.276568, 39.035137],\n              [-77.276613, 39.035179],\n              [-77.27671, 39.035283],\n              [-77.276803, 39.035334],\n              [-77.276892, 39.035362],\n              [-77.276956, 39.035393],\n              [-77.277021, 39.035434],\n              [-77.277476, 39.035764],\n              [-77.277497, 39.035773],\n              [-77.277541, 39.035792],\n              [-77.277639, 39.035841],\n              [-77.277758, 39.035917],\n              [-77.277797, 39.035953],\n              [-77.277928, 39.036051],\n              [-77.277977, 39.036093],\n              [-77.278095, 39.03618],\n              [-77.278166, 39.036261],\n              [-77.278213, 39.036306],\n              [-77.278372, 39.036421],\n              [-77.278427, 39.036453],\n              [-77.278519, 39.036519],\n              [-77.278654, 39.036635],\n              [-77.278666, 39.036645],\n              [-77.278745, 39.036714],\n              [-77.279059, 39.036905],\n              [-77.279106, 39.03696],\n              [-77.279129, 39.037012],\n              [-77.27917, 39.037073],\n              [-77.279217, 39.037123],\n              [-77.279306, 39.037153],\n              [-77.279361, 39.03719],\n              [-77.279472, 39.03725],\n              [-77.279541, 39.037294],\n              [-77.279627, 39.037371],\n              [-77.279861, 39.037523],\n              [-77.280018, 39.037617],\n              [-77.280106, 39.037679],\n              [-77.28029, 39.037793],\n              [-77.280397, 39.037869],\n              [-77.280412, 39.037882],\n              [-77.280507, 39.037963],\n              [-77.280666, 39.038053],\n              [-77.280872, 39.038201],\n              [-77.281006, 39.038282],\n              [-77.281063, 39.038302],\n              [-77.281128, 39.038331],\n              [-77.281179, 39.03836],\n              [-77.281318, 39.038455],\n              [-77.281405, 39.038503],\n              [-77.281459, 39.038542],\n              [-77.281547, 39.038628],\n              [-77.281596, 39.038658],\n              [-77.281659, 39.03875],\n              [-77.281722, 39.038803],\n              [-77.281745, 39.038815],\n              [-77.28184, 39.038924],\n              [-77.28188, 39.03895],\n              [-77.281924, 39.038967],\n              [-77.281949, 39.039009],\n              [-77.282139, 39.039159],\n              [-77.282189, 39.039176],\n              [-77.282279, 39.039177],\n              [-77.282406, 39.039186],\n              [-77.28248, 39.039218],\n              [-77.282502, 39.039228],\n              [-77.282515, 39.039239],\n              [-77.282557, 39.039275],\n              [-77.282613, 39.039311],\n              [-77.282663, 39.039328],\n              [-77.282688, 39.039338],\n              [-77.282766, 39.039368],\n              [-77.2828, 39.039386],\n              [-77.282848, 39.039412],\n              [-77.283007, 39.039455],\n              [-77.283054, 39.039483],\n              [-77.2831, 39.03951],\n              [-77.28321, 39.039546],\n              [-77.283248, 39.039571],\n              [-77.283265, 39.039582],\n              [-77.283298, 39.03962],\n              [-77.283454, 39.039698],\n              [-77.283604, 39.039794],\n              [-77.283754, 39.039917],\n              [-77.283842, 39.039964],\n              [-77.283919, 39.040013],\n              [-77.283997, 39.040052],\n              [-77.284125, 39.040149],\n              [-77.284167, 39.040192],\n              [-77.28427, 39.040252],\n              [-77.28442, 39.040324],\n              [-77.284477, 39.040364],\n              [-77.284552, 39.040431],\n              [-77.284603, 39.040451],\n              [-77.284734, 39.040517],\n              [-77.284846, 39.040574],\n              [-77.285129, 39.040746],\n              [-77.285177, 39.040788],\n              [-77.285225, 39.040841],\n              [-77.285339, 39.040906],\n              [-77.285417, 39.040923],\n              [-77.285502, 39.040971],\n              [-77.285861, 39.041206],\n              [-77.285923, 39.041254],\n              [-77.286075, 39.041356],\n              [-77.286223, 39.041501],\n              [-77.286285, 39.041577],\n              [-77.286413, 39.04167],\n              [-77.286543, 39.041784],\n              [-77.286576, 39.041836],\n              [-77.286587, 39.04189],\n              [-77.286597, 39.041939],\n              [-77.286653, 39.042023],\n              [-77.286683, 39.042052],\n              [-77.286715, 39.042082],\n              [-77.286782, 39.042116],\n              [-77.286839, 39.042126],\n              [-77.286891, 39.042126],\n              [-77.287134, 39.042293],\n              [-77.287188, 39.042325],\n              [-77.287236, 39.042369],\n              [-77.287277, 39.042414],\n              [-77.287306, 39.042456],\n              [-77.287344, 39.042495],\n              [-77.287397, 39.042532],\n              [-77.287532, 39.042644],\n              [-77.287586, 39.042744],\n              [-77.287627, 39.042771],\n              [-77.287666, 39.042819],\n              [-77.287694, 39.042874],\n              [-77.287696, 39.042906],\n              [-77.287715, 39.042938],\n              [-77.287754, 39.042956],\n              [-77.2879, 39.043112],\n              [-77.287996, 39.043179],\n              [-77.288032, 39.043213],\n              [-77.288089, 39.043247],\n              [-77.288127, 39.043282],\n              [-77.288171, 39.043283],\n              [-77.288227, 39.043312],\n              [-77.288279, 39.043353],\n              [-77.28842, 39.043481],\n              [-77.288468, 39.043515],\n              [-77.288518, 39.043541],\n              [-77.28861, 39.043611],\n              [-77.288766, 39.043741],\n              [-77.2888, 39.043777],\n              [-77.288815, 39.043813],\n              [-77.288834, 39.043838],\n              [-77.288872, 39.04387],\n              [-77.288911, 39.04389],\n              [-77.288979, 39.043906],\n              [-77.28903, 39.043934],\n              [-77.289057, 39.043968],\n              [-77.289074, 39.044001],\n              [-77.28911, 39.044049],\n              [-77.289156, 39.044082],\n              [-77.289198, 39.044096],\n              [-77.289237, 39.044101],\n              [-77.28929, 39.044096],\n              [-77.289332, 39.044104],\n              [-77.289456, 39.044182],\n              [-77.289594, 39.044319],\n              [-77.289645, 39.044341],\n              [-77.289658, 39.04435],\n              [-77.289675, 39.044361],\n              [-77.289741, 39.044396],\n              [-77.289854, 39.044479],\n              [-77.289861, 39.044489],\n              [-77.289872, 39.044506],\n              [-77.290036, 39.044676],\n              [-77.290076, 39.044704],\n              [-77.290175, 39.044799],\n              [-77.29039, 39.044948],\n              [-77.290766, 39.045165],\n              [-77.290842, 39.045205],\n              [-77.290975, 39.045292],\n              [-77.291158, 39.045391],\n              [-77.291371, 39.045524],\n              [-77.291604, 39.045651],\n              [-77.291911, 39.045857],\n              [-77.292058, 39.045923],\n              [-77.292119, 39.045946],\n              [-77.292193, 39.045986],\n              [-77.292275, 39.046039],\n              [-77.292357, 39.046081],\n              [-77.29256, 39.046195],\n              [-77.292771, 39.046291],\n              [-77.29288, 39.046351],\n              [-77.292944, 39.046386],\n              [-77.292964, 39.046397],\n              [-77.292987, 39.04641],\n              [-77.292991, 39.046412],\n              [-77.293068, 39.046477],\n              [-77.293165, 39.046522],\n              [-77.293279, 39.046565],\n              [-77.2937, 39.04676],\n              [-77.293791, 39.046814],\n              [-77.293848, 39.046842],\n              [-77.293864, 39.04685],\n              [-77.294078, 39.046954],\n              [-77.294218, 39.047013],\n              [-77.294301, 39.047045],\n              [-77.294376, 39.047073],\n              [-77.294474, 39.047118],\n              [-77.29461, 39.047167],\n              [-77.294669, 39.047197],\n              [-77.294727, 39.047227],\n              [-77.294848, 39.047269],\n              [-77.295143, 39.047389],\n              [-77.295182, 39.047424],\n              [-77.295221, 39.047429],\n              [-77.295276, 39.047414],\n              [-77.295313, 39.047424],\n              [-77.295368, 39.04745],\n              [-77.295437, 39.047467],\n              [-77.295519, 39.047474],\n              [-77.295655, 39.047528],\n              [-77.29589, 39.047605],\n              [-77.29599, 39.047634],\n              [-77.296105, 39.047673],\n              [-77.296199, 39.0477],\n              [-77.296289, 39.047718],\n              [-77.296359, 39.047747],\n              [-77.296436, 39.047785],\n              [-77.296529, 39.047824],\n              [-77.296617, 39.047841],\n              [-77.296701, 39.047878],\n              [-77.296793, 39.047909],\n              [-77.296929, 39.047947],\n              [-77.297078, 39.047988],\n              [-77.297157, 39.04802],\n              [-77.297162, 39.048022],\n              [-77.297218, 39.048039],\n              [-77.297289, 39.048027],\n              [-77.297311, 39.048038],\n              [-77.297339, 39.048066],\n              [-77.297499, 39.048125],\n              [-77.297593, 39.048151],\n              [-77.29778, 39.048211],\n              [-77.297992, 39.048268],\n              [-77.298099, 39.048313],\n              [-77.298172, 39.048338],\n              [-77.298377, 39.048426],\n              [-77.298444, 39.048443],\n              [-77.29856, 39.048485],\n              [-77.298607, 39.048486],\n              [-77.298733, 39.048464],\n              [-77.298766, 39.048449],\n              [-77.298799, 39.048427],\n              [-77.298819, 39.048408],\n              [-77.298841, 39.048398],\n              [-77.298861, 39.048407],\n              [-77.298873, 39.048431],\n              [-77.298845, 39.048464],\n              [-77.2988, 39.048494],\n              [-77.298712, 39.048521],\n              [-77.29867, 39.048564],\n              [-77.298645, 39.048599],\n              [-77.298646, 39.048617],\n              [-77.298664, 39.048638],\n              [-77.2989, 39.048723],\n              [-77.298955, 39.048757],\n              [-77.299057, 39.048757],\n              [-77.299143, 39.048791],\n              [-77.299249, 39.048847],\n              [-77.299346, 39.048878],\n              [-77.29943, 39.04891],\n              [-77.29949, 39.04892],\n              [-77.299669, 39.048922],\n              [-77.29972, 39.048919],\n              [-77.299771, 39.048923],\n              [-77.299774, 39.048924],\n              [-77.299845, 39.048952],\n              [-77.299989, 39.049038],\n              [-77.300062, 39.049073],\n              [-77.300291, 39.049155],\n              [-77.300376, 39.049192],\n              [-77.300669, 39.049378],\n              [-77.300754, 39.049411],\n              [-77.300833, 39.049429],\n              [-77.301121, 39.049545],\n              [-77.301382, 39.049676],\n              [-77.301502, 39.049732],\n              [-77.301584, 39.049785],\n              [-77.30163, 39.0498],\n              [-77.301658, 39.049817],\n              [-77.301711, 39.049901],\n              [-77.301797, 39.04995],\n              [-77.301879, 39.049979],\n              [-77.302014, 39.050013],\n              [-77.302085, 39.050025],\n              [-77.302148, 39.050049],\n              [-77.302189, 39.050074],\n              [-77.302266, 39.050095],\n              [-77.302296, 39.050108],\n              [-77.302409, 39.050156],\n              [-77.302604, 39.050257],\n              [-77.302715, 39.050321],\n              [-77.302907, 39.05044],\n              [-77.303017, 39.050493],\n              [-77.303131, 39.050554],\n              [-77.303218, 39.05061],\n              [-77.303368, 39.05069],\n              [-77.303425, 39.050734],\n              [-77.303478, 39.050758],\n              [-77.303483, 39.050761],\n              [-77.30354, 39.050796],\n              [-77.303703, 39.050873],\n              [-77.303871, 39.050942],\n              [-77.30391, 39.050962],\n              [-77.303943, 39.050986],\n              [-77.304087, 39.051063],\n              [-77.304217, 39.051132],\n              [-77.304339, 39.051201],\n              [-77.304358, 39.051206],\n              [-77.304413, 39.05122],\n              [-77.30455, 39.051291],\n              [-77.304589, 39.051318],\n              [-77.304618, 39.05135],\n              [-77.304664, 39.051378],\n              [-77.304715, 39.051386],\n              [-77.304764, 39.0514],\n              [-77.304875, 39.051449],\n              [-77.3049, 39.05146],\n              [-77.305129, 39.051532],\n              [-77.305365, 39.051624],\n              [-77.30542, 39.051655],\n              [-77.305456, 39.051667],\n              [-77.305502, 39.051689],\n              [-77.30559, 39.051722],\n              [-77.305671, 39.051759],\n              [-77.305719, 39.051771],\n              [-77.305728, 39.051776],\n              [-77.305754, 39.051789],\n              [-77.305801, 39.0518],\n              [-77.305911, 39.051835],\n              [-77.305964, 39.051838],\n              [-77.306016, 39.05185],\n              [-77.306048, 39.05187],\n              [-77.306051, 39.051872],\n              [-77.306105, 39.051887],\n              [-77.30616, 39.051888],\n              [-77.306258, 39.051915],\n              [-77.306299, 39.051932],\n              [-77.306541, 39.051991],\n              [-77.306661, 39.052024],\n              [-77.306757, 39.052023],\n              [-77.306812, 39.052037],\n              [-77.306971, 39.052094],\n              [-77.307021, 39.052098],\n              [-77.307167, 39.052123],\n              [-77.307266, 39.05212],\n              [-77.30733, 39.05213],\n              [-77.307424, 39.052139],\n              [-77.307462, 39.052148],\n              [-77.307656, 39.052174],\n              [-77.307704, 39.052175],\n              [-77.307746, 39.052189],\n              [-77.307846, 39.05221],\n              [-77.3079, 39.052212],\n              [-77.308037, 39.052206],\n              [-77.308101, 39.052215],\n              [-77.308153, 39.052216],\n              [-77.308199, 39.052209],\n              [-77.308261, 39.052208],\n              [-77.308339, 39.052219],\n              [-77.308389, 39.05223],\n              [-77.308507, 39.052243],\n              [-77.308627, 39.05224],\n              [-77.308863, 39.052253],\n              [-77.308953, 39.05222],\n              [-77.309005, 39.052214],\n              [-77.309052, 39.052199],\n              [-77.309172, 39.052187],\n              [-77.309254, 39.052172],\n              [-77.309393, 39.052155],\n              [-77.309607, 39.05211],\n              [-77.309806, 39.052085],\n              [-77.309858, 39.052066],\n              [-77.309956, 39.052047],\n              [-77.310035, 39.052027],\n              [-77.310088, 39.052008],\n              [-77.310254, 39.051979],\n              [-77.310335, 39.051955],\n              [-77.310433, 39.051932],\n              [-77.310501, 39.051921],\n              [-77.310542, 39.051904],\n              [-77.31061, 39.05189],\n              [-77.310893, 39.05187],\n              [-77.310949, 39.051861],\n              [-77.310989, 39.051845],\n              [-77.311159, 39.051821],\n              [-77.31116, 39.051821],\n              [-77.311294, 39.051816],\n              [-77.311341, 39.051808],\n              [-77.311499, 39.051807],\n              [-77.311536, 39.051816],\n              [-77.311586, 39.051808],\n              [-77.311695, 39.051808],\n              [-77.311894, 39.051796],\n              [-77.31195, 39.05178],\n              [-77.31202, 39.051785],\n              [-77.312051, 39.051779],\n              [-77.312139, 39.051786],\n              [-77.312175, 39.051776],\n              [-77.312205, 39.051781],\n              [-77.312281, 39.051789],\n              [-77.312368, 39.051768],\n              [-77.312407, 39.051779],\n              [-77.312482, 39.051776],\n              [-77.312528, 39.051783],\n              [-77.312572, 39.05178],\n              [-77.312683, 39.051784],\n              [-77.312811, 39.051764],\n              [-77.312839, 39.051779],\n              [-77.312933, 39.051806],\n              [-77.313006, 39.051817],\n              [-77.313115, 39.05184],\n              [-77.313235, 39.051852],\n              [-77.313362, 39.051875],\n              [-77.31343, 39.051894],\n              [-77.313481, 39.051913],\n              [-77.313609, 39.051941],\n              [-77.313729, 39.051949],\n              [-77.313806, 39.051963],\n              [-77.313878, 39.051982],\n              [-77.313978, 39.052017],\n              [-77.314063, 39.052039],\n              [-77.314121, 39.05206],\n              [-77.314178, 39.052071],\n              [-77.314222, 39.052072],\n              [-77.314388, 39.052128],\n              [-77.314468, 39.052129],\n              [-77.314509, 39.052123],\n              [-77.314549, 39.05213],\n              [-77.314661, 39.05216],\n              [-77.314735, 39.052191],\n              [-77.314847, 39.0522],\n              [-77.314836, 39.052169],\n              [-77.314845, 39.052151],\n              [-77.314893, 39.052133],\n              [-77.314937, 39.052137],\n              [-77.315001, 39.052183],\n              [-77.315132, 39.052184],\n              [-77.315176, 39.052193],\n              [-77.315292, 39.052226],\n              [-77.315343, 39.052247],\n              [-77.315411, 39.052262],\n              [-77.315476, 39.05227],\n              [-77.315519, 39.052289],\n              [-77.315601, 39.052315],\n              [-77.315645, 39.052314],\n              [-77.315775, 39.052371],\n              [-77.315834, 39.052382],\n              [-77.315963, 39.052429],\n              [-77.316088, 39.052481],\n              [-77.316196, 39.05252],\n              [-77.316338, 39.052541],\n              [-77.316493, 39.052571],\n              [-77.316538, 39.052574],\n              [-77.316615, 39.052614],\n              [-77.316696, 39.05265],\n              [-77.316718, 39.052643],\n              [-77.316757, 39.052649],\n              [-77.316813, 39.052667],\n              [-77.316947, 39.052698],\n              [-77.317006, 39.052725],\n              [-77.31705, 39.052751],\n              [-77.317155, 39.052787],\n              [-77.317205, 39.052814],\n              [-77.317336, 39.052896],\n              [-77.31742, 39.052938],\n              [-77.317425, 39.052969],\n              [-77.317461, 39.053],\n              [-77.317542, 39.053087],\n              [-77.317572, 39.053125],\n              [-77.317595, 39.053145],\n              [-77.317665, 39.053243],\n              [-77.317767, 39.053321],\n              [-77.317832, 39.053389],\n              [-77.317866, 39.053393],\n              [-77.317907, 39.053405],\n              [-77.317967, 39.053452],\n              [-77.318003, 39.053462],\n              [-77.318077, 39.053495],\n              [-77.318144, 39.053532],\n              [-77.318305, 39.053591],\n              [-77.318359, 39.053584],\n              [-77.318423, 39.053593],\n              [-77.318529, 39.053597],\n              [-77.318588, 39.053582],\n              [-77.318697, 39.05354],\n              [-77.31879, 39.053487],\n              [-77.318824, 39.05346],\n              [-77.318892, 39.053417],\n              [-77.318914, 39.053398],\n              [-77.318941, 39.053388],\n              [-77.31899, 39.053381],\n              [-77.319017, 39.05337],\n              [-77.319105, 39.05335],\n              [-77.319155, 39.053347],\n              [-77.319209, 39.053349],\n              [-77.319385, 39.053341],\n              [-77.319535, 39.053344],\n              [-77.319732, 39.053392],\n              [-77.319831, 39.053427],\n              [-77.319868, 39.053452],\n              [-77.319964, 39.053495],\n              [-77.320173, 39.053566],\n              [-77.320293, 39.05364],\n              [-77.320336, 39.053649],\n              [-77.320384, 39.05367],\n              [-77.320457, 39.053723],\n              [-77.320479, 39.053749],\n              [-77.320564, 39.053804],\n              [-77.3206, 39.05382],\n              [-77.320666, 39.05386],\n              [-77.320682, 39.053882],\n              [-77.320736, 39.053924],\n              [-77.320819, 39.053957],\n              [-77.320966, 39.054069],\n              [-77.321085, 39.054147],\n              [-77.321119, 39.054175],\n              [-77.321175, 39.054222],\n              [-77.321269, 39.054331],\n              [-77.321312, 39.054361],\n              [-77.321358, 39.054412],\n              [-77.321405, 39.054443],\n              [-77.321462, 39.054461],\n              [-77.321539, 39.054496],\n              [-77.321746, 39.054602],\n              [-77.321762, 39.054623],\n              [-77.32176, 39.054655],\n              [-77.321772, 39.054681],\n              [-77.321785, 39.05469],\n              [-77.321806, 39.054705],\n              [-77.321895, 39.054766],\n              [-77.321983, 39.054803],\n              [-77.322089, 39.054866],\n              [-77.322119, 39.054895],\n              [-77.322162, 39.054949],\n              [-77.322237, 39.054991],\n              [-77.322313, 39.055042],\n              [-77.322418, 39.055139],\n              [-77.32247, 39.05515],\n              [-77.322508, 39.055164],\n              [-77.322524, 39.055194],\n              [-77.322621, 39.055274],\n              [-77.322666, 39.055289],\n              [-77.322799, 39.055376],\n              [-77.32284, 39.055392],\n              [-77.322889, 39.055401],\n              [-77.322929, 39.055419],\n              [-77.32298, 39.055435],\n              [-77.323016, 39.055454],\n              [-77.323134, 39.055454],\n              [-77.323239, 39.05546],\n              [-77.323357, 39.055505],\n              [-77.323392, 39.055518],\n              [-77.323423, 39.055513],\n              [-77.323472, 39.055515],\n              [-77.323652, 39.05554],\n              [-77.323719, 39.055559],\n              [-77.323822, 39.055577],\n              [-77.323868, 39.055589],\n              [-77.323905, 39.055592],\n              [-77.323951, 39.055605],\n              [-77.32405, 39.055647],\n              [-77.324082, 39.055672],\n              [-77.324107, 39.055689],\n              [-77.32415, 39.055706],\n              [-77.32419, 39.055717],\n              [-77.324207, 39.055738],\n              [-77.324226, 39.055749],\n              [-77.324252, 39.055738],\n              [-77.324348, 39.055809],\n              [-77.324442, 39.055848],\n              [-77.324493, 39.055863],\n              [-77.324538, 39.055882],\n              [-77.324589, 39.055911],\n              [-77.324627, 39.055926],\n              [-77.324738, 39.055992],\n              [-77.324776, 39.056019],\n              [-77.324824, 39.056044],\n              [-77.324925, 39.056116],\n              [-77.325016, 39.056173],\n              [-77.32505, 39.056202],\n              [-77.325103, 39.056261],\n              [-77.325144, 39.056294],\n              [-77.325216, 39.056333],\n              [-77.325246, 39.056359],\n              [-77.32531, 39.056393],\n              [-77.325352, 39.056423],\n              [-77.325378, 39.056448],\n              [-77.325414, 39.056471],\n              [-77.325431, 39.056499],\n              [-77.325452, 39.056523],\n              [-77.325486, 39.056543],\n              [-77.325637, 39.056653],\n              [-77.32568, 39.056694],\n              [-77.32572, 39.056711],\n              [-77.325762, 39.056723],\n              [-77.325808, 39.056743],\n              [-77.32598, 39.05684],\n              [-77.326025, 39.056857],\n              [-77.326145, 39.056925],\n              [-77.326185, 39.05698],\n              [-77.326226, 39.056999],\n              [-77.326244, 39.057012],\n              [-77.326267, 39.057016],\n              [-77.326317, 39.057042],\n              [-77.326347, 39.057076],\n              [-77.326371, 39.05712],\n              [-77.326414, 39.057155],\n              [-77.326437, 39.057164],\n              [-77.32654, 39.057204],\n              [-77.326634, 39.057235],\n              [-77.326635, 39.057236],\n              [-77.326639, 39.057236],\n              [-77.326649, 39.057239],\n              [-77.326687, 39.057266],\n              [-77.32673, 39.057305],\n              [-77.326774, 39.057335],\n              [-77.326823, 39.05736],\n              [-77.326882, 39.057384],\n              [-77.327477, 39.057539],\n              [-77.327505, 39.05754],\n              [-77.327507, 39.05754],\n              [-77.327515, 39.057541],\n              [-77.327519, 39.057541],\n              [-77.327558, 39.057535],\n              [-77.327588, 39.057503],\n              [-77.327619, 39.05748],\n              [-77.327693, 39.057442],\n              [-77.32773, 39.057431],\n              [-77.327801, 39.057422],\n              [-77.327882, 39.057425],\n              [-77.327936, 39.057439],\n              [-77.328043, 39.057485],\n              [-77.328175, 39.057569],\n              [-77.32832, 39.057686],\n              [-77.328407, 39.05775],\n              [-77.328457, 39.057782],\n              [-77.328509, 39.057822],\n              [-77.328647, 39.057906],\n              [-77.328892, 39.058027],\n              [-77.328994, 39.058084],\n              [-77.32907, 39.058121],\n              [-77.329162, 39.058159],\n              [-77.329259, 39.058188],\n              [-77.329339, 39.058205],\n              [-77.329503, 39.058229],\n              [-77.329592, 39.058246],\n              [-77.329678, 39.058253],\n              [-77.329837, 39.058281],\n              [-77.329884, 39.058307],\n              [-77.329917, 39.058335],\n              [-77.33002, 39.058393],\n              [-77.330081, 39.058414],\n              [-77.330132, 39.058419],\n              [-77.330176, 39.058416],\n              [-77.330322, 39.05842],\n              [-77.330389, 39.058429],\n              [-77.330606, 39.058479],\n              [-77.330761, 39.058505],\n              [-77.330928, 39.05854],\n              [-77.331003, 39.058545],\n              [-77.331135, 39.058574],\n              [-77.33134, 39.058638],\n              [-77.331355, 39.058641],\n              [-77.331449, 39.05866],\n              [-77.331543, 39.058687],\n              [-77.331645, 39.058736],\n              [-77.331784, 39.058795],\n              [-77.331787, 39.058796],\n              [-77.331861, 39.058828],\n              [-77.332352, 39.059071],\n              [-77.332686, 39.059226],\n              [-77.332775, 39.059257],\n              [-77.332874, 39.059285],\n              [-77.333055, 39.05931],\n              [-77.333128, 39.059314],\n              [-77.333231, 39.059314],\n              [-77.333318, 39.059324],\n              [-77.333404, 39.059339],\n              [-77.333483, 39.059365],\n              [-77.333496, 39.059371],\n              [-77.333553, 39.059398],\n              [-77.333605, 39.059434],\n              [-77.333642, 39.059471],\n              [-77.333658, 39.059486],\n              [-77.33369, 39.059518],\n              [-77.33371, 39.059529],\n              [-77.333793, 39.05962],\n              [-77.333794, 39.059651],\n              [-77.333839, 39.059699],\n              [-77.333863, 39.059725],\n              [-77.333905, 39.059788],\n              [-77.333958, 39.059882],\n              [-77.333965, 39.059925],\n              [-77.333963, 39.059983],\n              [-77.333953, 39.060026],\n              [-77.333882, 39.06015],\n              [-77.333876, 39.060234],\n              [-77.333882, 39.060624],\n              [-77.333888, 39.06068],\n              [-77.333898, 39.060772],\n              [-77.3339, 39.060903],\n              [-77.333908, 39.060972],\n              [-77.333924, 39.061018],\n              [-77.333931, 39.061041],\n              [-77.333965, 39.061089],\n              [-77.334017, 39.061164],\n              [-77.334065, 39.061214],\n              [-77.334193, 39.061311],\n              [-77.334246, 39.061338],\n              [-77.334414, 39.061393],\n              [-77.334584, 39.061439],\n              [-77.334608, 39.061444],\n              [-77.334652, 39.061453],\n              [-77.33474, 39.061488],\n              [-77.334742, 39.061489],\n              [-77.334904, 39.061553],\n              [-77.335158, 39.061629],\n              [-77.335281, 39.061675],\n              [-77.335347, 39.061692],\n              [-77.335666, 39.061805],\n              [-77.33588, 39.061859],\n              [-77.335992, 39.061894],\n              [-77.336274, 39.061971],\n              [-77.336495, 39.062048],\n              [-77.336752, 39.062132],\n              [-77.33681, 39.062156],\n              [-77.336875, 39.062189],\n              [-77.337006, 39.062239],\n              [-77.337139, 39.062273],\n              [-77.337252, 39.062284],\n              [-77.33735, 39.062301],\n              [-77.337507, 39.062316],\n              [-77.337602, 39.062311],\n              [-77.337737, 39.062328],\n              [-77.337743, 39.062328],\n              [-77.337795, 39.06233],\n              [-77.337862, 39.06234],\n              [-77.337922, 39.062357],\n              [-77.337945, 39.062367],\n              [-77.337946, 39.062368],\n              [-77.337992, 39.062388],\n              [-77.338112, 39.062432],\n              [-77.338195, 39.062468],\n              [-77.338303, 39.062502],\n              [-77.338368, 39.062515],\n              [-77.338509, 39.062524],\n              [-77.338628, 39.062538],\n              [-77.338632, 39.062539],\n              [-77.338635, 39.062539],\n              [-77.338638, 39.06254],\n              [-77.338695, 39.062553],\n              [-77.338793, 39.062582],\n              [-77.338803, 39.062585],\n              [-77.338805, 39.062586],\n              [-77.338825, 39.062592],\n              [-77.338967, 39.062626],\n              [-77.339035, 39.062648],\n              [-77.339039, 39.062649],\n              [-77.339042, 39.06265],\n              [-77.339044, 39.062651],\n              [-77.339123, 39.062677],\n              [-77.339165, 39.062694],\n              [-77.339459, 39.062769],\n              [-77.33961, 39.062796],\n              [-77.339726, 39.062804],\n              [-77.33977, 39.062818],\n              [-77.339821, 39.062827],\n              [-77.339935, 39.062859],\n              [-77.339986, 39.062882],\n              [-77.340042, 39.062898],\n              [-77.340146, 39.062917],\n              [-77.340359, 39.062924],\n              [-77.340434, 39.062935],\n              [-77.340615, 39.062947],\n              [-77.340779, 39.062958],\n              [-77.341008, 39.062962],\n              [-77.341152, 39.06296],\n              [-77.341342, 39.062966],\n              [-77.341344, 39.062966],\n              [-77.341485, 39.062971],\n              [-77.341489, 39.062971],\n              [-77.341671, 39.062973],\n              [-77.341728, 39.06297],\n              [-77.34192, 39.062941],\n              [-77.341986, 39.062938],\n              [-77.34199, 39.062938],\n              [-77.34211, 39.062934],\n              [-77.34246, 39.062972],\n              [-77.342644, 39.062975],\n              [-77.342811, 39.063025],\n              [-77.343153, 39.063036],\n              [-77.343351, 39.063012],\n              [-77.343596, 39.062924],\n              [-77.344412, 39.062868],\n              [-77.344801, 39.06282],\n              [-77.345433, 39.062804],\n              [-77.345798, 39.062762],\n              [-77.346323, 39.062725],\n              [-77.347138, 39.062629],\n              [-77.348626, 39.062509],\n              [-77.349035, 39.062488],\n              [-77.349346, 39.062451],\n              [-77.349844, 39.062403],\n              [-77.35025, 39.062392],\n              [-77.350677, 39.062374],\n              [-77.351233, 39.062355],\n              [-77.351711, 39.062318],\n              [-77.352414, 39.062326],\n              [-77.353066, 39.062392],\n              [-77.353448, 39.062408],\n              [-77.354718, 39.062467],\n              [-77.355397, 39.062507],\n              [-77.356121, 39.062547],\n              [-77.357247, 39.062632],\n              [-77.357615, 39.062632],\n              [-77.358155, 39.062656],\n              [-77.358824, 39.062653],\n              [-77.359301, 39.06261],\n              [-77.360042, 39.062597],\n              [-77.360465, 39.062589],\n              [-77.360813, 39.062578],\n              [-77.361342, 39.062544],\n              [-77.361919, 39.062528],\n              [-77.362291, 39.062568],\n              [-77.363028, 39.062488],\n              [-77.363492, 39.062379],\n              [-77.364138, 39.062294],\n              [-77.364434, 39.062286],\n              [-77.364632, 39.062289],\n              [-77.364909, 39.06227],\n              [-77.3651, 39.062228],\n              [-77.365264, 39.062236],\n              [-77.365533, 39.062238],\n              [-77.365687, 39.06222],\n              [-77.365796, 39.062145],\n              [-77.365902, 39.062105],\n              [-77.366349, 39.062033],\n              [-77.366728, 39.06201],\n              [-77.367247, 39.061906],\n              [-77.367557, 39.06194],\n              [-77.367902, 39.061877],\n              [-77.36796, 39.06181],\n              [-77.367954, 39.061768],\n              [-77.367957, 39.061765],\n              [-77.367956, 39.061759],\n              [-77.367951, 39.061723],\n              [-77.368155, 39.061598],\n              [-77.368161, 39.061641],\n              [-77.368269, 39.061576],\n              [-77.368303, 39.061605],\n              [-77.368325, 39.061624],\n              [-77.368426, 39.061634],\n              [-77.368489, 39.06164],\n              [-77.369847, 39.061613],\n              [-77.370168, 39.061587],\n              [-77.371274, 39.061672],\n              [-77.371779, 39.061778],\n              [-77.372469, 39.061847],\n              [-77.372919, 39.061805],\n              [-77.373772, 39.061762],\n              [-77.37418, 39.061746],\n              [-77.374402, 39.06176],\n              [-77.375039, 39.061857],\n              [-77.375316, 39.061946],\n              [-77.375428, 39.061976],\n              [-77.375918, 39.062057],\n              [-77.376224, 39.06212],\n              [-77.376282, 39.062129],\n              [-77.376308, 39.062142],\n              [-77.376436, 39.062167],\n              [-77.376608, 39.062187],\n              [-77.376953, 39.062247],\n              [-77.377069, 39.062261],\n              [-77.377255, 39.062298],\n              [-77.377497, 39.062331],\n              [-77.377566, 39.062344],\n              [-77.377662, 39.062354],\n              [-77.37784, 39.062395],\n              [-77.377992, 39.062421],\n              [-77.378045, 39.062422],\n              [-77.378096, 39.062408],\n              [-77.378242, 39.062434],\n              [-77.378369, 39.062456],\n              [-77.378435, 39.062453],\n              [-77.378544, 39.062529],\n              [-77.378899, 39.062571],\n              [-77.380008, 39.062635],\n              [-77.38052, 39.062622],\n              [-77.380765, 39.062625],\n              [-77.381096, 39.062593],\n              [-77.381294, 39.062571],\n              [-77.382015, 39.062524],\n              [-77.38237, 39.062486],\n              [-77.382687, 39.06242],\n              [-77.38309, 39.062276],\n              [-77.383813, 39.062165],\n              [-77.384369, 39.062124],\n              [-77.384769, 39.062153],\n              [-77.385796, 39.06214],\n              [-77.38682, 39.062249],\n              [-77.387475, 39.062352],\n              [-77.388107, 39.062467],\n              [-77.389161, 39.062637],\n              [-77.390455, 39.062842],\n              [-77.391755, 39.063113],\n              [-77.392547, 39.06327],\n              [-77.393178, 39.063429],\n              [-77.393789, 39.063618],\n              [-77.394188, 39.063767],\n              [-77.394741, 39.063878],\n              [-77.395386, 39.064056],\n              [-77.395892, 39.064163],\n              [-77.396905, 39.064399],\n              [-77.397554, 39.064532],\n              [-77.398356, 39.064665],\n              [-77.39897, 39.064705],\n              [-77.399731, 39.064686],\n              [-77.400458, 39.064634],\n              [-77.400543, 39.064628],\n              [-77.401127, 39.064546],\n              [-77.401598, 39.064458],\n              [-77.401646, 39.064411],\n              [-77.401647, 39.06441],\n              [-77.401695, 39.064417],\n              [-77.401708, 39.064419],\n              [-77.40171, 39.064419],\n              [-77.401711, 39.06442],\n              [-77.401713, 39.06442],\n              [-77.401905, 39.06445],\n              [-77.40192, 39.064463],\n              [-77.40195, 39.06449],\n              [-77.402362, 39.064511],\n              [-77.402789, 39.0645],\n              [-77.404472, 39.06449],\n              [-77.405018, 39.064514],\n              [-77.405448, 39.064532],\n              [-77.406004, 39.064607],\n              [-77.406196, 39.064633],\n              [-77.406224, 39.064637],\n              [-77.40626, 39.064642],\n              [-77.406263, 39.064642],\n              [-77.406271, 39.064643],\n              [-77.406276, 39.064644],\n              [-77.406283, 39.064645],\n              [-77.406912, 39.064729],\n              [-77.406914, 39.06473],\n              [-77.406916, 39.06473],\n              [-77.406925, 39.064731],\n              [-77.407424, 39.064798],\n              [-77.408919, 39.06508],\n              [-77.409379, 39.065175],\n              [-77.410042, 39.065316],\n              [-77.410693, 39.065468],\n              [-77.410932, 39.065526],\n              [-77.41184, 39.065712],\n              [-77.412461, 39.065853],\n              [-77.413564, 39.06605],\n              [-77.41428, 39.066207],\n              [-77.41468, 39.066279],\n              [-77.415403, 39.066364],\n              [-77.415632, 39.066401],\n              [-77.41584, 39.06642],\n              [-77.416127, 39.066462],\n              [-77.416687, 39.066478],\n              [-77.416939, 39.066457],\n              [-77.417465, 39.066462],\n              [-77.417864, 39.066478],\n              [-77.418089, 39.066443],\n              [-77.418468, 39.066475],\n              [-77.418813, 39.066486],\n              [-77.419079, 39.066465],\n              [-77.419642, 39.066396],\n              [-77.420007, 39.066377],\n              [-77.420461, 39.066406],\n              [-77.42069, 39.066433],\n              [-77.420691, 39.066432],\n              [-77.420695, 39.066427],\n              [-77.420722, 39.066396],\n              [-77.420736, 39.066337],\n              [-77.420796, 39.066446],\n              [-77.420799, 39.066451],\n              [-77.421304, 39.066571],\n              [-77.42198, 39.066693],\n              [-77.422284, 39.066776],\n              [-77.423229, 39.06702],\n              [-77.424717, 39.067363],\n              [-77.425359, 39.067475],\n              [-77.42611, 39.06761],\n              [-77.426687, 39.067682],\n              [-77.426966, 39.067783],\n              [-77.427202, 39.06782],\n              [-77.427663, 39.067913],\n              [-77.428065, 39.068038],\n              [-77.428499, 39.068238],\n              [-77.428953, 39.06852],\n              [-77.429014, 39.068549],\n              [-77.429243, 39.068658],\n              [-77.429567, 39.068785],\n              [-77.430762, 39.069274],\n              [-77.431458, 39.069413],\n              [-77.431936, 39.069552],\n              [-77.431945, 39.069555],\n              [-77.431947, 39.069555],\n              [-77.431955, 39.069557],\n              [-77.432171, 39.06962],\n              [-77.432258, 39.06963],\n              [-77.43226, 39.06963],\n              [-77.432262, 39.069631],\n              [-77.432274, 39.069632],\n              [-77.432499, 39.069657],\n              [-77.432919, 39.069782],\n              [-77.433267, 39.069878],\n              [-77.433536, 39.069926],\n              [-77.434171, 39.070077],\n              [-77.43484, 39.07021],\n              [-77.435185, 39.070274],\n              [-77.436495, 39.070508],\n              [-77.437342, 39.070657],\n              [-77.438031, 39.070726],\n              [-77.438755, 39.070848],\n              [-77.439427, 39.070936],\n              [-77.439473, 39.070945],\n              [-77.439905, 39.071026],\n              [-77.44014, 39.071079],\n              [-77.44084, 39.071207],\n              [-77.4417, 39.071321],\n              [-77.442451, 39.071335],\n              [-77.443007, 39.071335],\n              [-77.443509, 39.071276],\n              [-77.443627, 39.071228],\n              [-77.443738, 39.071263],\n              [-77.443879, 39.071264],\n              [-77.444031, 39.071265],\n              [-77.444321, 39.071284],\n              [-77.444406, 39.07129],\n              [-77.444553, 39.0713],\n              [-77.444772, 39.071287],\n              [-77.44512, 39.071228],\n              [-77.44542, 39.071242],\n              [-77.44568, 39.071305],\n              [-77.445837, 39.071341],\n              [-77.445839, 39.071341],\n              [-77.445842, 39.071342],\n              [-77.445946, 39.071366],\n              [-77.446045, 39.071465],\n              [-77.446113, 39.071494],\n              [-77.446338, 39.071587],\n              [-77.446632, 39.071656],\n              [-77.446942, 39.071704],\n              [-77.447584, 39.071877],\n              [-77.448263, 39.072012],\n              [-77.448854, 39.072169],\n              [-77.44943, 39.072278],\n              [-77.449618, 39.07231],\n              [-77.449871, 39.072281],\n              [-77.450035, 39.072287],\n              [-77.450092, 39.072289],\n              [-77.450263, 39.072323],\n              [-77.450591, 39.072326],\n              [-77.450949, 39.072326],\n              [-77.451864, 39.072334],\n              [-77.452546, 39.072406],\n              [-77.453557, 39.072592],\n              [-77.454731, 39.072815],\n              [-77.455594, 39.073041],\n              [-77.456164, 39.073166],\n              [-77.456963, 39.073403],\n              [-77.456973, 39.073407],\n              [-77.457009, 39.07342],\n              [-77.457202, 39.073493],\n              [-77.45751, 39.073599],\n              [-77.45772, 39.073671],\n              [-77.459017, 39.074189],\n              [-77.459546, 39.074405],\n              [-77.460007, 39.074588],\n              [-77.460284, 39.074721],\n              [-77.460604, 39.074851],\n              [-77.460973, 39.075064],\n              [-77.460984, 39.075072],\n              [-77.461475, 39.075434],\n              [-77.46199, 39.075851],\n              [-77.462225, 39.076069],\n              [-77.462502, 39.076412],\n              [-77.462609, 39.076599],\n              [-77.462618, 39.076616],\n              [-77.462881, 39.07723],\n              [-77.463065, 39.077762],\n              [-77.463161, 39.078052],\n              [-77.463273, 39.078219],\n              [-77.463382, 39.078405],\n              [-77.463475, 39.078573],\n              [-77.46384, 39.079049],\n              [-77.463884, 39.079195],\n              [-77.464045, 39.079434],\n              [-77.464107, 39.079458],\n              [-77.464133, 39.079562],\n              [-77.464157, 39.079615],\n              [-77.464162, 39.079626],\n              [-77.464263, 39.079836],\n              [-77.464901, 39.080729],\n              [-77.465246, 39.081149],\n              [-77.465567, 39.081545],\n              [-77.465877, 39.081922],\n              [-77.466089, 39.082212],\n              [-77.46628, 39.082433],\n              [-77.4664, 39.082552],\n              [-77.466686, 39.082861],\n              [-77.466898, 39.0831],\n              [-77.467184, 39.08344],\n              [-77.467451, 39.083746],\n              [-77.467662, 39.084009],\n              [-77.467823, 39.084184],\n              [-77.468062, 39.084416],\n              [-77.468242, 39.08466],\n              [-77.468331, 39.084801],\n              [-77.468635, 39.085109],\n              [-77.468686, 39.085175],\n              [-77.468826, 39.085354],\n              [-77.468959, 39.08563],\n              [-77.469099, 39.086],\n              [-77.469137, 39.086306],\n              [-77.469099, 39.086649],\n              [-77.46899, 39.08696],\n              [-77.468393, 39.088095],\n              [-77.468304, 39.088344],\n              [-77.468331, 39.088549],\n              [-77.468458, 39.08899],\n              [-77.468662, 39.089397],\n              [-77.468911, 39.089687],\n              [-77.469188, 39.089852],\n              [-77.469618, 39.090104],\n              [-77.469935, 39.090351],\n              [-77.47013, 39.090516],\n              [-77.470335, 39.090777],\n              [-77.470447, 39.090992],\n              [-77.470792, 39.091266],\n              [-77.471427, 39.091797],\n              [-77.471536, 39.091901],\n              [-77.471727, 39.092079],\n              [-77.472208, 39.092566],\n              [-77.472423, 39.092786],\n              [-77.472833, 39.09319],\n              [-77.473065, 39.093499],\n              [-77.473492, 39.094052],\n              [-77.473911, 39.094785],\n              [-77.474358, 39.095609],\n              [-77.474621, 39.096202],\n              [-77.474812, 39.096588],\n              [-77.474963, 39.096928],\n              [-77.475143, 39.0973],\n              [-77.475335, 39.097728],\n              [-77.475461, 39.098028],\n              [-77.475587, 39.098286],\n              [-77.475676, 39.098523],\n              [-77.475816, 39.09877],\n              [-77.475891, 39.098921],\n              [-77.476024, 39.099179],\n              [-77.476072, 39.099318],\n              [-77.476198, 39.099573],\n              [-77.476475, 39.100006],\n              [-77.476713, 39.10028],\n              [-77.476801, 39.100302],\n              [-77.47703, 39.100797],\n              [-77.477044, 39.100827],\n              [-77.477379, 39.101279],\n              [-77.477464, 39.101423],\n              [-77.477498, 39.101469],\n              [-77.477771, 39.101848],\n              [-77.47813, 39.102343],\n              [-77.478219, 39.102523],\n              [-77.47841, 39.102752],\n              [-77.478952, 39.103418],\n              [-77.479217, 39.103693],\n              [-77.479695, 39.104146],\n              [-77.479846, 39.104291],\n              [-77.479986, 39.104455],\n              [-77.480033, 39.104509],\n              [-77.48004, 39.104517],\n              [-77.480041, 39.104518],\n              [-77.480128, 39.104617],\n              [-77.480129, 39.104618],\n              [-77.48014, 39.104631],\n              [-77.480324, 39.104892],\n              [-77.480608, 39.105221],\n              [-77.48085, 39.105516],\n              [-77.481017, 39.105697],\n              [-77.481111, 39.105761],\n              [-77.481172, 39.105805],\n              [-77.481367, 39.105893],\n              [-77.481425, 39.105944],\n              [-77.481655, 39.106133],\n              [-77.482051, 39.10647],\n              [-77.482055, 39.106474],\n              [-77.482065, 39.106482],\n              [-77.482077, 39.106492],\n              [-77.482283, 39.106667],\n              [-77.482451, 39.106824],\n              [-77.48249, 39.106871],\n              [-77.482857, 39.107226],\n              [-77.483095, 39.107448],\n              [-77.483096, 39.107449],\n              [-77.483242, 39.107547],\n              [-77.483406, 39.107686],\n              [-77.483573, 39.107885],\n              [-77.483778, 39.10801],\n              [-77.484007, 39.108193],\n              [-77.484212, 39.108332],\n              [-77.484457, 39.108552],\n              [-77.48516, 39.109124],\n              [-77.485403, 39.109318],\n              [-77.485782, 39.109504],\n              [-77.486474, 39.109833],\n              [-77.486481, 39.109836],\n              [-77.486483, 39.109837],\n              [-77.486485, 39.109837],\n              [-77.486647, 39.109901],\n              [-77.486651, 39.109903],\n              [-77.486672, 39.109911],\n              [-77.487317, 39.110291],\n              [-77.487829, 39.110554],\n              [-77.488207, 39.110626],\n              [-77.488266, 39.110653],\n              [-77.488524, 39.110771],\n              [-77.488818, 39.110914],\n              [-77.488973, 39.110983],\n              [-77.489025, 39.111011],\n              [-77.489179, 39.111066],\n              [-77.489225, 39.111089],\n              [-77.489298, 39.111137],\n              [-77.48957, 39.111251],\n              [-77.489626, 39.11127],\n              [-77.489633, 39.111272],\n              [-77.489678, 39.111292],\n              [-77.489837, 39.111382],\n              [-77.48993, 39.111444],\n              [-77.489961, 39.11146],\n              [-77.490002, 39.111465],\n              [-77.490014, 39.111467],\n              [-77.490053, 39.111468],\n              [-77.490097, 39.111456],\n              [-77.490185, 39.111448],\n              [-77.49021, 39.111455],\n              [-77.490227, 39.111468],\n              [-77.490262, 39.111525],\n              [-77.490291, 39.111557],\n              [-77.490367, 39.111596],\n              [-77.490379, 39.111602],\n              [-77.490424, 39.111615],\n              [-77.490443, 39.111618],\n              [-77.49046, 39.111621],\n              [-77.490487, 39.111635],\n              [-77.490489, 39.111636],\n              [-77.490587, 39.111688],\n              [-77.490662, 39.111741],\n              [-77.490703, 39.111759],\n              [-77.49078, 39.111776],\n              [-77.490944, 39.111784],\n              [-77.490984, 39.111794],\n              [-77.491056, 39.111823],\n              [-77.491087, 39.111829],\n              [-77.491123, 39.111836],\n              [-77.491291, 39.111883],\n              [-77.491338, 39.111904],\n              [-77.491365, 39.111916],\n              [-77.491403, 39.111945],\n              [-77.491521, 39.111964],\n              [-77.491633, 39.111999],\n              [-77.491801, 39.112062],\n              [-77.491801, 39.112055],\n              [-77.491802, 39.112014],\n              [-77.491886, 39.112044],\n              [-77.492261, 39.112192],\n              [-77.492544, 39.112311],\n              [-77.492653, 39.112346],\n              [-77.492727, 39.112363],\n              [-77.49292, 39.112431],\n              [-77.493159, 39.112504],\n              [-77.493534, 39.1126],\n              [-77.49385, 39.112691],\n              [-77.494004, 39.112743],\n              [-77.494097, 39.11278],\n              [-77.494304, 39.112842],\n              [-77.494712, 39.112955],\n              [-77.494844, 39.112996],\n              [-77.495289, 39.11315],\n              [-77.495433, 39.113192],\n              [-77.495761, 39.113262],\n              [-77.495785, 39.11326],\n              [-77.495838, 39.113224],\n              [-77.495863, 39.113267],\n              [-77.495945, 39.113322],\n              [-77.495981, 39.113341],\n              [-77.496086, 39.11338],\n              [-77.496274, 39.113426],\n              [-77.49646, 39.113479],\n              [-77.496585, 39.113508],\n              [-77.496847, 39.113556],\n              [-77.497111, 39.11361],\n              [-77.497392, 39.11365],\n              [-77.497476, 39.113657],\n              [-77.497498, 39.113664],\n              [-77.497507, 39.113684],\n              [-77.497511, 39.113709],\n              [-77.497522, 39.113736],\n              [-77.497532, 39.113743],\n              [-77.497553, 39.113758],\n              [-77.497576, 39.113767],\n              [-77.497646, 39.113769],\n              [-77.49779, 39.113743],\n              [-77.497793, 39.113743],\n              [-77.497795, 39.113742],\n              [-77.497892, 39.113724],\n              [-77.498012, 39.11371],\n              [-77.498128, 39.113707],\n              [-77.49813, 39.113707],\n              [-77.498221, 39.113705],\n              [-77.498418, 39.113694],\n              [-77.498454, 39.113687],\n              [-77.498484, 39.113673],\n              [-77.498508, 39.113662],\n              [-77.498517, 39.113672],\n              [-77.498527, 39.113682],\n              [-77.498556, 39.113692],\n              [-77.49868, 39.113699],\n              [-77.498778, 39.113709],\n              [-77.498971, 39.113747],\n              [-77.499144, 39.113763],\n              [-77.49943, 39.11382],\n              [-77.499895, 39.113942],\n              [-77.500052, 39.113969],\n              [-77.500141, 39.114001],\n              [-77.500332, 39.114083],\n              [-77.500416, 39.114106],\n              [-77.500594, 39.114138],\n              [-77.500719, 39.114161],\n              [-77.500753, 39.114146],\n              [-77.500781, 39.114182],\n              [-77.500831, 39.114201],\n              [-77.500911, 39.114225],\n              [-77.500977, 39.114252],\n              [-77.501127, 39.114299],\n              [-77.501398, 39.114398],\n              [-77.501679, 39.114487],\n              [-77.501906, 39.114558],\n              [-77.502083, 39.114645],\n              [-77.502098, 39.114651],\n              [-77.502159, 39.114676],\n              [-77.502569, 39.114768],\n              [-77.502779, 39.114825],\n              [-77.502809, 39.114835],\n              [-77.503162, 39.114954],\n              [-77.503375, 39.115015],\n              [-77.503464, 39.115036],\n              [-77.503594, 39.115084],\n              [-77.503693, 39.115116],\n              [-77.503894, 39.115167],\n              [-77.504088, 39.115228],\n              [-77.504215, 39.115274],\n              [-77.504217, 39.115275],\n              [-77.504647, 39.115431],\n              [-77.504682, 39.115435],\n              [-77.504757, 39.115464],\n              [-77.504789, 39.115471],\n              [-77.504813, 39.115482],\n              [-77.504888, 39.115504],\n              [-77.504895, 39.115506],\n              [-77.5049, 39.115508],\n              [-77.504912, 39.115512],\n              [-77.505105, 39.115556],\n              [-77.505149, 39.11557],\n              [-77.505152, 39.115571],\n              [-77.505179, 39.115579],\n              [-77.505207, 39.115579],\n              [-77.505229, 39.115587],\n              [-77.505231, 39.115588],\n              [-77.505238, 39.11559],\n              [-77.505255, 39.115593],\n              [-77.505259, 39.115594],\n              [-77.505264, 39.115595],\n              [-77.505267, 39.115595],\n              [-77.505281, 39.115597],\n              [-77.505289, 39.1156],\n              [-77.505312, 39.115609],\n              [-77.505338, 39.115611],\n              [-77.505346, 39.115611],\n              [-77.505354, 39.115614],\n              [-77.505417, 39.115638],\n              [-77.505556, 39.115672],\n              [-77.505596, 39.11569],\n              [-77.505697, 39.115717],\n              [-77.505946, 39.115796],\n              [-77.505984, 39.115801],\n              [-77.506105, 39.115837],\n              [-77.506134, 39.11584],\n              [-77.506176, 39.115855],\n              [-77.506199, 39.115857],\n              [-77.506237, 39.115867],\n              [-77.506265, 39.115867],\n              [-77.506288, 39.115876],\n              [-77.50633, 39.115878],\n              [-77.50642, 39.1159],\n              [-77.506503, 39.115913],\n              [-77.506526, 39.115911],\n              [-77.506554, 39.115915],\n              [-77.506577, 39.115925],\n              [-77.506654, 39.115935],\n              [-77.506686, 39.115944],\n              [-77.506717, 39.115947],\n              [-77.5068, 39.115971],\n              [-77.506842, 39.115983],\n              [-77.506909, 39.115996],\n              [-77.506937, 39.115998],\n              [-77.507008, 39.116034],\n              [-77.507016, 39.116038],\n              [-77.507075, 39.116061],\n              [-77.5071, 39.116076],\n              [-77.507154, 39.116096],\n              [-77.507233, 39.116136],\n              [-77.507259, 39.116142],\n              [-77.507287, 39.116155],\n              [-77.507317, 39.116161],\n              [-77.507417, 39.116206],\n              [-77.507496, 39.116233],\n              [-77.507531, 39.116241],\n              [-77.507603, 39.116273],\n              [-77.507682, 39.116299],\n              [-77.507775, 39.116339],\n              [-77.507794, 39.116347],\n              [-77.507827, 39.116365],\n              [-77.50785, 39.116373],\n              [-77.507895, 39.1164],\n              [-77.507913, 39.11642],\n              [-77.507961, 39.116455],\n              [-77.507986, 39.116473],\n              [-77.508058, 39.116523],\n              [-77.50812, 39.116554],\n              [-77.508147, 39.116576],\n              [-77.508274, 39.116642],\n              [-77.508343, 39.116668],\n              [-77.508371, 39.116674],\n              [-77.508453, 39.116702],\n              [-77.508474, 39.116706],\n              [-77.508569, 39.116725],\n              [-77.508699, 39.11676],\n              [-77.508731, 39.116778],\n              [-77.508864, 39.116828],\n              [-77.50889, 39.116841],\n              [-77.508896, 39.116843],\n              [-77.508898, 39.116844],\n              [-77.5089, 39.116844],\n              [-77.509011, 39.116877],\n              [-77.509039, 39.116878],\n              [-77.509073, 39.11689],\n              [-77.509101, 39.116892],\n              [-77.509125, 39.116906],\n              [-77.509145, 39.116913],\n              [-77.50926, 39.116952],\n              [-77.509309, 39.116981],\n              [-77.509369, 39.117002],\n              [-77.509397, 39.117017],\n              [-77.509523, 39.117069],\n              [-77.50956, 39.117092],\n              [-77.509609, 39.117112],\n              [-77.509702, 39.117141],\n              [-77.509742, 39.117159],\n              [-77.509772, 39.117163],\n              [-77.509805, 39.117181],\n              [-77.509832, 39.117186],\n              [-77.509881, 39.117208],\n              [-77.509905, 39.117213],\n              [-77.509968, 39.117235],\n              [-77.510002, 39.11724],\n              [-77.510065, 39.117258],\n              [-77.510233, 39.117323],\n              [-77.510307, 39.117345],\n              [-77.510356, 39.117365],\n              [-77.510393, 39.117374],\n              [-77.510419, 39.11739],\n              [-77.510488, 39.117418],\n              [-77.51057, 39.117439],\n              [-77.510605, 39.117458],\n              [-77.510689, 39.117482],\n              [-77.51079, 39.117524],\n              [-77.510792, 39.117525],\n              [-77.510854, 39.117551],\n              [-77.510882, 39.117559],\n              [-77.510929, 39.117581],\n              [-77.511091, 39.117627],\n              [-77.511143, 39.117654],\n              [-77.511171, 39.117661],\n              [-77.511399, 39.117761],\n              [-77.511541, 39.117819],\n              [-77.511564, 39.117824],\n              [-77.511697, 39.117875],\n              [-77.511857, 39.11792],\n              [-77.511889, 39.117926],\n              [-77.512004, 39.117962],\n              [-77.512045, 39.117969],\n              [-77.512069, 39.117982],\n              [-77.512091, 39.118],\n              [-77.512209, 39.118052],\n              [-77.512325, 39.118081],\n              [-77.512364, 39.118084],\n              [-77.512397, 39.118092],\n              [-77.512422, 39.118104],\n              [-77.512577, 39.118133],\n              [-77.512624, 39.118135],\n              [-77.512701, 39.118146],\n              [-77.512777, 39.118152],\n              [-77.512884, 39.118181],\n              [-77.512925, 39.118181],\n              [-77.512955, 39.118175],\n              [-77.512978, 39.118166],\n              [-77.51305, 39.118171],\n              [-77.51319, 39.118151],\n              [-77.513225, 39.118143],\n              [-77.513404, 39.11813],\n              [-77.513433, 39.118128],\n              [-77.513479, 39.118128],\n              [-77.513597, 39.118141],\n              [-77.513699, 39.118147],\n              [-77.513852, 39.118144],\n              [-77.513991, 39.118161],\n              [-77.514027, 39.118169],\n              [-77.514114, 39.118188],\n              [-77.514287, 39.118208],\n              [-77.514464, 39.118249],\n              [-77.51462, 39.118296],\n              [-77.514708, 39.118312],\n              [-77.514743, 39.118325],\n              [-77.515017, 39.118391],\n              [-77.515168, 39.118433],\n              [-77.515228, 39.118457],\n              [-77.515265, 39.118464],\n              [-77.515305, 39.118483],\n              [-77.515351, 39.118496],\n              [-77.515461, 39.118538],\n              [-77.515674, 39.118596],\n              [-77.515725, 39.118611],\n              [-77.515729, 39.118612],\n              [-77.51589, 39.11866],\n              [-77.516372, 39.118844],\n              [-77.516408, 39.118863],\n              [-77.516409, 39.118864],\n              [-77.516411, 39.118865],\n              [-77.516414, 39.118866],\n              [-77.516438, 39.118878],\n              [-77.516566, 39.118926],\n              [-77.516579, 39.118931],\n              [-77.516591, 39.118935],\n              [-77.516633, 39.118958],\n              [-77.516841, 39.119023],\n              [-77.517025, 39.119104],\n              [-77.517172, 39.119174],\n              [-77.517281, 39.119238],\n              [-77.517361, 39.119276],\n              [-77.517467, 39.119335],\n              [-77.517477, 39.119341],\n              [-77.517527, 39.119376],\n              [-77.517582, 39.119404],\n              [-77.517716, 39.119492],\n              [-77.517765, 39.119518],\n              [-77.517788, 39.119522],\n              [-77.517932, 39.119583],\n              [-77.517989, 39.119613],\n              [-77.518039, 39.119626],\n              [-77.518244, 39.119719],\n              [-77.518349, 39.119747],\n              [-77.518449, 39.11979],\n              [-77.518489, 39.119812],\n              [-77.518524, 39.119841],\n              [-77.518611, 39.119893],\n              [-77.518628, 39.119898],\n              [-77.518639, 39.119901],\n              [-77.518664, 39.11992],\n              [-77.518665, 39.119921],\n              [-77.518686, 39.119937],\n              [-77.518696, 39.11994],\n              [-77.518709, 39.119944],\n              [-77.518825, 39.120004],\n              [-77.518912, 39.12007],\n              [-77.519041, 39.120139],\n              [-77.519071, 39.120162],\n              [-77.519092, 39.120171],\n              [-77.519193, 39.120243],\n              [-77.519266, 39.120295],\n              [-77.519291, 39.120313],\n              [-77.51935, 39.120348],\n              [-77.519408, 39.120378],\n              [-77.51941, 39.120379],\n              [-77.519413, 39.12038],\n              [-77.519445, 39.120397],\n              [-77.519456, 39.120407],\n              [-77.519457, 39.120408],\n              [-77.51957, 39.120516],\n              [-77.51968, 39.120604],\n              [-77.519701, 39.120613],\n              [-77.519747, 39.120643],\n              [-77.519773, 39.120665],\n              [-77.519797, 39.120679],\n              [-77.519799, 39.120681],\n              [-77.519853, 39.120716],\n              [-77.519923, 39.120769],\n              [-77.519945, 39.120791],\n              [-77.520021, 39.120828],\n              [-77.520094, 39.120877],\n              [-77.520204, 39.120973],\n              [-77.52031, 39.121076],\n              [-77.520372, 39.121146],\n              [-77.520374, 39.121148],\n              [-77.520555, 39.121326],\n              [-77.520595, 39.121377],\n              [-77.52067, 39.121443],\n              [-77.52078, 39.121588],\n              [-77.520813, 39.121621],\n              [-77.520903, 39.121739],\n              [-77.520997, 39.121843],\n              [-77.521086, 39.121926],\n              [-77.521195, 39.122063],\n              [-77.521261, 39.122162],\n              [-77.521321, 39.122231],\n              [-77.521356, 39.12226],\n              [-77.521428, 39.122339],\n              [-77.521574, 39.12256],\n              [-77.521592, 39.12258],\n              [-77.5216, 39.122595],\n              [-77.521603, 39.122601],\n              [-77.521605, 39.122606],\n              [-77.521607, 39.122609],\n              [-77.521684, 39.122757],\n              [-77.521688, 39.122763],\n              [-77.521728, 39.122832],\n              [-77.52173, 39.122836],\n              [-77.521758, 39.122884],\n              [-77.521827, 39.122981],\n              [-77.521869, 39.123046],\n              [-77.521904, 39.123081],\n              [-77.52193, 39.123096],\n              [-77.521981, 39.123145],\n              [-77.521982, 39.123146],\n              [-77.522118, 39.123275],\n              [-77.522251, 39.123447],\n              [-77.522344, 39.123649],\n              [-77.522349, 39.12368],\n              [-77.522511, 39.124011],\n              [-77.522514, 39.124019],\n              [-77.522515, 39.124021],\n              [-77.522552, 39.124106],\n              [-77.522611, 39.124213],\n              [-77.522662, 39.124318],\n              [-77.522667, 39.124329],\n              [-77.522692, 39.124372],\n              [-77.522729, 39.124435],\n              [-77.522763, 39.124503],\n              [-77.522764, 39.124504],\n              [-77.522783, 39.124542],\n              [-77.522833, 39.124622],\n              [-77.52285, 39.124661],\n              [-77.522876, 39.124702],\n              [-77.522879, 39.12472],\n              [-77.522932, 39.124813],\n              [-77.522975, 39.124878],\n              [-77.522989, 39.124916],\n              [-77.523075, 39.125079],\n              [-77.523171, 39.125243],\n              [-77.523223, 39.125321],\n              [-77.523264, 39.125395],\n              [-77.523348, 39.125581],\n              [-77.523406, 39.125649],\n              [-77.523419, 39.125679],\n              [-77.523438, 39.125706],\n              [-77.523467, 39.125767],\n              [-77.52362, 39.125967],\n              [-77.523659, 39.126026],\n              [-77.523701, 39.126081],\n              [-77.523769, 39.126169],\n              [-77.523783, 39.126192],\n              [-77.523796, 39.126215],\n              [-77.523839, 39.126297],\n              [-77.523844, 39.126307],\n              [-77.523889, 39.126377],\n              [-77.523901, 39.126406],\n              [-77.523934, 39.126464],\n              [-77.523987, 39.126558],\n              [-77.524037, 39.12667],\n              [-77.524138, 39.126848],\n              [-77.524167, 39.126909],\n              [-77.524242, 39.127017],\n              [-77.524316, 39.127104],\n              [-77.52443, 39.127311],\n              [-77.524466, 39.127355],\n              [-77.524537, 39.12746],\n              [-77.524602, 39.127594],\n              [-77.524617, 39.127639],\n              [-77.524666, 39.127728],\n              [-77.524701, 39.127842],\n              [-77.524736, 39.12799],\n              [-77.524776, 39.128127],\n              [-77.52481, 39.128192],\n              [-77.524829, 39.128254],\n              [-77.524843, 39.128272],\n              [-77.524869, 39.128329],\n              [-77.524874, 39.128361],\n              [-77.524889, 39.1284],\n              [-77.524891, 39.12842],\n              [-77.524926, 39.128516],\n              [-77.524939, 39.128579],\n              [-77.524967, 39.128643],\n              [-77.524971, 39.128705],\n              [-77.525, 39.128792],\n              [-77.525001, 39.12881],\n              [-77.525048, 39.128926],\n              [-77.525069, 39.129014],\n              [-77.525083, 39.129043],\n              [-77.525091, 39.129079],\n              [-77.525112, 39.129088],\n              [-77.525131, 39.129152],\n              [-77.525146, 39.129182],\n              [-77.525177, 39.129274],\n              [-77.5252, 39.129398],\n              [-77.525214, 39.129446],\n              [-77.525214, 39.129448],\n              [-77.525215, 39.129449],\n              [-77.525218, 39.129461],\n              [-77.525238, 39.129567],\n              [-77.525239, 39.129583],\n              [-77.525239, 39.129599],\n              [-77.525264, 39.129733],\n              [-77.525266, 39.129846],\n              [-77.525255, 39.129898],\n              [-77.525257, 39.129969],\n              [-77.525267, 39.129996],\n              [-77.525275, 39.130063],\n              [-77.525287, 39.130103],\n              [-77.52529, 39.13013],\n              [-77.525309, 39.130198],\n              [-77.52531, 39.130235],\n              [-77.52533, 39.130347],\n              [-77.525329, 39.130375],\n              [-77.525342, 39.130456],\n              [-77.525351, 39.130587],\n              [-77.525359, 39.130641],\n              [-77.525358, 39.130722],\n              [-77.525377, 39.130856],\n              [-77.525386, 39.130881],\n              [-77.525411, 39.131004],\n              [-77.525474, 39.131136],\n              [-77.525505, 39.131248],\n              [-77.525506, 39.131267],\n              [-77.525506, 39.13128],\n              [-77.525508, 39.131318],\n              [-77.525529, 39.131392],\n              [-77.525547, 39.131495],\n              [-77.525562, 39.13153],\n              [-77.525602, 39.131705],\n              [-77.525636, 39.131813],\n              [-77.525647, 39.131879],\n              [-77.525687, 39.132036],\n              [-77.525692, 39.132054],\n              [-77.52572, 39.132108],\n              [-77.5258, 39.132317],\n              [-77.525815, 39.132342],\n              [-77.525885, 39.132503],\n              [-77.525904, 39.132538],\n              [-77.525962, 39.132709],\n              [-77.525984, 39.132774],\n              [-77.525985, 39.132796],\n              [-77.526027, 39.132981],\n              [-77.526064, 39.133121],\n              [-77.526072, 39.133169],\n              [-77.526086, 39.133204],\n              [-77.526112, 39.133302],\n              [-77.526194, 39.133507],\n              [-77.526199, 39.133531],\n              [-77.52629, 39.133697],\n              [-77.526307, 39.133746],\n              [-77.526328, 39.133789],\n              [-77.526329, 39.133791],\n              [-77.52633, 39.133794],\n              [-77.526342, 39.133816],\n              [-77.526346, 39.133833],\n              [-77.526346, 39.133835],\n              [-77.526402, 39.134077],\n              [-77.526411, 39.134132],\n              [-77.526427, 39.134167],\n              [-77.52644, 39.134216],\n              [-77.526441, 39.134217],\n              [-77.526441, 39.134219],\n              [-77.526444, 39.134229],\n              [-77.526465, 39.134285],\n              [-77.526546, 39.134503],\n              [-77.526581, 39.134612],\n              [-77.526619, 39.134694],\n              [-77.526632, 39.134732],\n              [-77.526663, 39.134789],\n              [-77.52667, 39.134821],\n              [-77.526713, 39.134895],\n              [-77.526779, 39.135097],\n              [-77.526804, 39.135204],\n              [-77.526843, 39.135325],\n              [-77.526844, 39.135327],\n              [-77.526865, 39.135392],\n              [-77.526921, 39.135521],\n              [-77.526948, 39.135613],\n              [-77.526951, 39.135634],\n              [-77.526961, 39.135696],\n              [-77.526972, 39.135786],\n              [-77.526972, 39.135791],\n              [-77.526983, 39.135893],\n              [-77.527003, 39.135979],\n              [-77.527011, 39.136035],\n              [-77.527013, 39.13605],\n              [-77.527023, 39.136079],\n              [-77.527024, 39.136107],\n              [-77.527081, 39.136333],\n              [-77.527116, 39.136527],\n              [-77.527112, 39.136625],\n              [-77.527122, 39.136705],\n              [-77.527122, 39.136717],\n              [-77.527142, 39.136778],\n              [-77.527174, 39.137167],\n              [-77.527175, 39.137323],\n              [-77.527175, 39.137352],\n              [-77.527184, 39.137422],\n              [-77.527182, 39.137446],\n              [-77.527197, 39.137547],\n              [-77.527201, 39.137629],\n              [-77.527195, 39.13766],\n              [-77.5272, 39.137852],\n              [-77.527217, 39.137887],\n              [-77.52725, 39.137906],\n              [-77.527236, 39.137929],\n              [-77.527195, 39.137942],\n              [-77.527201, 39.138042],\n              [-77.527197, 39.138076],\n              [-77.5272, 39.138104],\n              [-77.527196, 39.13814],\n              [-77.52723, 39.138339],\n              [-77.527228, 39.138371],\n              [-77.52726, 39.138619],\n              [-77.527268, 39.138794],\n              [-77.527267, 39.138883],\n              [-77.527272, 39.138929],\n              [-77.527272, 39.138997],\n              [-77.527284, 39.139151],\n              [-77.52728, 39.139335],\n              [-77.527272, 39.139408],\n              [-77.527273, 39.139447],\n              [-77.527266, 39.139473],\n              [-77.527272, 39.139505],\n              [-77.52727, 39.139535],\n              [-77.527275, 39.139561],\n              [-77.527271, 39.139617],\n              [-77.527273, 39.13975],\n              [-77.527267, 39.139806],\n              [-77.527257, 39.139843],\n              [-77.527262, 39.139888],\n              [-77.52726, 39.140038],\n              [-77.527245, 39.140091],\n              [-77.527237, 39.140156],\n              [-77.527247, 39.140224],\n              [-77.52723, 39.140417],\n              [-77.527231, 39.140478],\n              [-77.527223, 39.140552],\n              [-77.527224, 39.140703],\n              [-77.527231, 39.140759],\n              [-77.527228, 39.140824],\n              [-77.527234, 39.140904],\n              [-77.527243, 39.14093],\n              [-77.527243, 39.140997],\n              [-77.527252, 39.141118],\n              [-77.527252, 39.141247],\n              [-77.527275, 39.141513],\n              [-77.527302, 39.141729],\n              [-77.52732, 39.141984],\n              [-77.527319, 39.142016],\n              [-77.527328, 39.142046],\n              [-77.527326, 39.142077],\n              [-77.527334, 39.142107],\n              [-77.527331, 39.142192],\n              [-77.527356, 39.142415],\n              [-77.527399, 39.142611],\n              [-77.527408, 39.142632],\n              [-77.527409, 39.142656],\n              [-77.527437, 39.142732],\n              [-77.527494, 39.142934],\n              [-77.527521, 39.14312],\n              [-77.52753, 39.143155],\n              [-77.527542, 39.143279],\n              [-77.52758, 39.143474],\n              [-77.527581, 39.143513],\n              [-77.527598, 39.143579],\n              [-77.527619, 39.143731],\n              [-77.527616, 39.143791],\n              [-77.527635, 39.143962],\n              [-77.527642, 39.144336],\n              [-77.527647, 39.144398],\n              [-77.527637, 39.144552],\n              [-77.527635, 39.144582],\n              [-77.527642, 39.144616],\n              [-77.527658, 39.14464],\n              [-77.527664, 39.14465],\n              [-77.527668, 39.144651],\n              [-77.527687, 39.144658],\n              [-77.527661, 39.144733],\n              [-77.527647, 39.144738],\n              [-77.527639, 39.14474],\n              [-77.527624, 39.144745],\n              [-77.527588, 39.144785],\n              [-77.527584, 39.144827],\n              [-77.527566, 39.144862],\n              [-77.527542, 39.144965],\n              [-77.52754, 39.145116],\n              [-77.527531, 39.145228],\n              [-77.527541, 39.145426],\n              [-77.527555, 39.145556],\n              [-77.527546, 39.145686],\n              [-77.527526, 39.145762],\n              [-77.527516, 39.145843],\n              [-77.527517, 39.145919],\n              [-77.527505, 39.145982],\n              [-77.527512, 39.146029],\n              [-77.527505, 39.146223],\n              [-77.527491, 39.146396],\n              [-77.527466, 39.146548],\n              [-77.527436, 39.14668],\n              [-77.527432, 39.146719],\n              [-77.527421, 39.146762],\n              [-77.52737, 39.146865],\n              [-77.527362, 39.146893],\n              [-77.527332, 39.146945],\n              [-77.527324, 39.146969],\n              [-77.527271, 39.147028],\n              [-77.527251, 39.147057],\n              [-77.527229, 39.147075],\n              [-77.527183, 39.147139],\n              [-77.527174, 39.14716],\n              [-77.52707, 39.147269],\n              [-77.526999, 39.147317],\n              [-77.526942, 39.147366],\n              [-77.526685, 39.147529],\n              [-77.526609, 39.147568],\n              [-77.526588, 39.147588],\n              [-77.526552, 39.147613],\n              [-77.526485, 39.147645],\n              [-77.526302, 39.14772],\n              [-77.526188, 39.147777],\n              [-77.526162, 39.147799],\n              [-77.526094, 39.147828],\n              [-77.526075, 39.147845],\n              [-77.525919, 39.147912],\n              [-77.525865, 39.147944],\n              [-77.525683, 39.148024],\n              [-77.525533, 39.14811],\n              [-77.525364, 39.148226],\n              [-77.525275, 39.148313],\n              [-77.525214, 39.148357],\n              [-77.525109, 39.148457],\n              [-77.525024, 39.14858],\n              [-77.524995, 39.148634],\n              [-77.524936, 39.148723],\n              [-77.524911, 39.148778],\n              [-77.524869, 39.148851],\n              [-77.524853, 39.148903],\n              [-77.524782, 39.149044],\n              [-77.524776, 39.149066],\n              [-77.524742, 39.149139],\n              [-77.524678, 39.149322],\n              [-77.524643, 39.14939],\n              [-77.524597, 39.149543],\n              [-77.524482, 39.149836],\n              [-77.524478, 39.149869],\n              [-77.524449, 39.149942],\n              [-77.524438, 39.149977],\n              [-77.524405, 39.150036],\n              [-77.524367, 39.15014],\n              [-77.524345, 39.150176],\n              [-77.524336, 39.150221],\n              [-77.524271, 39.150393],\n              [-77.524256, 39.150527],\n              [-77.524209, 39.150675],\n              [-77.524202, 39.150714],\n              [-77.524128, 39.150965],\n              [-77.524126, 39.150995],\n              [-77.524111, 39.151034],\n              [-77.524123, 39.15105],\n              [-77.524084, 39.151188],\n              [-77.524069, 39.151261],\n              [-77.524069, 39.151282],\n              [-77.524047, 39.151362],\n              [-77.524001, 39.15146],\n              [-77.523946, 39.151651],\n              [-77.523926, 39.151807],\n              [-77.523908, 39.151835],\n              [-77.523887, 39.151933],\n              [-77.523828, 39.152106],\n              [-77.523821, 39.152148],\n              [-77.523789, 39.15225],\n              [-77.523784, 39.152283],\n              [-77.523773, 39.152312],\n              [-77.523734, 39.152533],\n              [-77.523734, 39.152587],\n              [-77.523716, 39.152712],\n              [-77.523606, 39.153019],\n              [-77.523572, 39.153195],\n              [-77.523548, 39.15329],\n              [-77.523526, 39.153351],\n              [-77.523459, 39.153497],\n              [-77.523414, 39.153639],\n              [-77.523395, 39.153776],\n              [-77.523372, 39.153867],\n              [-77.523372, 39.153887],\n              [-77.523293, 39.15412],\n              [-77.523228, 39.154347],\n              [-77.523198, 39.154482],\n              [-77.523184, 39.154525],\n              [-77.523183, 39.154551],\n              [-77.523075, 39.154891],\n              [-77.523065, 39.154951],\n              [-77.523028, 39.15506],\n              [-77.523025, 39.155069],\n              [-77.523015, 39.155105],\n              [-77.522993, 39.155188],\n              [-77.522933, 39.15533],\n              [-77.522888, 39.155486],\n              [-77.522872, 39.155528],\n              [-77.522855, 39.155617],\n              [-77.522848, 39.155692],\n              [-77.522837, 39.155723],\n              [-77.52283, 39.155781],\n              [-77.522806, 39.155835],\n              [-77.522668, 39.15626],\n              [-77.522655, 39.156316],\n              [-77.522644, 39.156332],\n              [-77.52262, 39.156398],\n              [-77.522594, 39.156489],\n              [-77.522558, 39.156665],\n              [-77.522531, 39.156733],\n              [-77.522485, 39.156902],\n              [-77.522462, 39.157011],\n              [-77.522445, 39.157057],\n              [-77.522421, 39.157156],\n              [-77.522374, 39.157266],\n              [-77.522298, 39.15752],\n              [-77.52225, 39.157711],\n              [-77.522145, 39.15798],\n              [-77.522118, 39.158068],\n              [-77.522087, 39.158237],\n              [-77.522049, 39.15833],\n              [-77.522022, 39.158458],\n              [-77.522022, 39.158493],\n              [-77.522037, 39.158528],\n              [-77.522061, 39.158544],\n              [-77.522072, 39.158551],\n              [-77.522097, 39.158561],\n              [-77.522103, 39.158589],\n              [-77.522038, 39.158619],\n              [-77.521993, 39.158639],\n              [-77.521961, 39.158667],\n              [-77.521926, 39.158769],\n              [-77.521925, 39.15885],\n              [-77.521914, 39.158875],\n              [-77.521916, 39.158912],\n              [-77.521886, 39.15901],\n              [-77.521816, 39.159208],\n              [-77.521807, 39.159249],\n              [-77.521793, 39.15928],\n              [-77.521769, 39.159443],\n              [-77.521765, 39.159612],\n              [-77.52177, 39.159874],\n              [-77.521766, 39.159918],\n              [-77.521771, 39.159959],\n              [-77.521767, 39.160007],\n              [-77.521771, 39.160045],\n              [-77.521764, 39.160083],\n              [-77.521757, 39.160201],\n              [-77.521749, 39.160232],\n              [-77.521745, 39.160301],\n              [-77.521706, 39.160481],\n              [-77.521617, 39.1608],\n              [-77.521587, 39.160869],\n              [-77.521581, 39.160917],\n              [-77.521552, 39.161034],\n              [-77.521517, 39.161206],\n              [-77.521448, 39.161416],\n              [-77.521431, 39.161448],\n              [-77.5214, 39.161541],\n              [-77.521398, 39.161569],\n              [-77.521374, 39.161662],\n              [-77.521343, 39.161742],\n              [-77.521315, 39.161799],\n              [-77.5213, 39.161881],\n              [-77.521255, 39.161978],\n              [-77.521231, 39.162007],\n              [-77.521213, 39.162038],\n              [-77.521206, 39.162062],\n              [-77.521175, 39.162112],\n              [-77.521058, 39.162422],\n              [-77.520989, 39.162584],\n              [-77.520868, 39.162776],\n              [-77.520725, 39.163064],\n              [-77.520609, 39.163383],\n              [-77.520518, 39.163526],\n              [-77.520456, 39.163661],\n              [-77.520421, 39.163725],\n              [-77.520381, 39.163851],\n              [-77.520356, 39.163882],\n              [-77.520317, 39.163958],\n              [-77.520307, 39.163979],\n              [-77.520292, 39.164019],\n              [-77.520208, 39.164213],\n              [-77.519913, 39.164689],\n              [-77.519808, 39.164882],\n              [-77.519791, 39.16494],\n              [-77.519751, 39.164998],\n              [-77.519556, 39.165379],\n              [-77.519502, 39.165458],\n              [-77.519481, 39.165532],\n              [-77.519393, 39.165702],\n              [-77.519338, 39.165846],\n              [-77.519258, 39.165986],\n              [-77.519192, 39.166083],\n              [-77.519152, 39.166161],\n              [-77.519006, 39.166535],\n              [-77.518918, 39.166723],\n              [-77.518887, 39.166799],\n              [-77.518872, 39.166869],\n              [-77.518873, 39.166941],\n              [-77.518881, 39.167012],\n              [-77.518869, 39.167073],\n              [-77.518795, 39.167203],\n              [-77.518692, 39.167439],\n              [-77.51866, 39.167578],\n              [-77.518606, 39.167748],\n              [-77.518572, 39.167787],\n              [-77.518543, 39.167839],\n              [-77.518451, 39.167974],\n              [-77.518294, 39.168279],\n              [-77.518218, 39.168403],\n              [-77.518144, 39.1685],\n              [-77.518105, 39.168559],\n              [-77.518003, 39.168764],\n              [-77.517888, 39.168948],\n              [-77.517803, 39.169114],\n              [-77.517653, 39.169367],\n              [-77.517624, 39.169425],\n              [-77.517575, 39.169498],\n              [-77.517534, 39.169549],\n              [-77.51741, 39.169731],\n              [-77.517219, 39.169997],\n              [-77.517138, 39.170132],\n              [-77.517109, 39.170173],\n              [-77.517067, 39.170256],\n              [-77.517033, 39.170305],\n              [-77.516927, 39.170429],\n              [-77.516904, 39.170466],\n              [-77.516896, 39.170478],\n              [-77.516837, 39.170574],\n              [-77.516796, 39.170648],\n              [-77.516695, 39.170798],\n              [-77.51651, 39.171039],\n              [-77.516479, 39.171093],\n              [-77.516344, 39.171286],\n              [-77.516256, 39.171394],\n              [-77.516219, 39.17146],\n              [-77.516202, 39.171501],\n              [-77.516162, 39.171549],\n              [-77.516114, 39.17163],\n              [-77.516067, 39.171682],\n              [-77.515858, 39.171992],\n              [-77.515817, 39.172032],\n              [-77.515548, 39.172384],\n              [-77.515436, 39.172553],\n              [-77.515292, 39.172753],\n              [-77.515267, 39.172795],\n              [-77.515051, 39.173077],\n              [-77.514757, 39.173476],\n              [-77.514573, 39.173753],\n              [-77.514487, 39.173874],\n              [-77.514403, 39.17403],\n              [-77.514138, 39.174455],\n              [-77.513998, 39.174669],\n              [-77.513956, 39.17475],\n              [-77.513902, 39.174833],\n              [-77.513792, 39.174983],\n              [-77.513756, 39.175056],\n              [-77.513646, 39.17523],\n              [-77.513503, 39.175401],\n              [-77.513226, 39.175774],\n              [-77.513159, 39.175858],\n              [-77.51312, 39.175918],\n              [-77.513119, 39.17592],\n              [-77.513118, 39.175921],\n              [-77.513104, 39.175942],\n              [-77.513066, 39.175992],\n              [-77.513062, 39.175998],\n              [-77.512933, 39.176171],\n              [-77.512827, 39.176284],\n              [-77.512784, 39.176336],\n              [-77.512748, 39.176388],\n              [-77.512539, 39.176604],\n              [-77.512356, 39.176808],\n              [-77.51216, 39.177062],\n              [-77.512133, 39.177105],\n              [-77.511967, 39.177299],\n              [-77.511854, 39.177412],\n              [-77.511802, 39.177451],\n              [-77.51168, 39.177609],\n              [-77.511632, 39.177737],\n              [-77.511614, 39.177774],\n              [-77.511578, 39.177813],\n              [-77.511546, 39.177857],\n              [-77.511526, 39.177875],\n              [-77.511496, 39.17792],\n              [-77.511467, 39.177975],\n              [-77.511422, 39.178022],\n              [-77.511338, 39.178086],\n              [-77.511217, 39.1782],\n              [-77.511156, 39.178267],\n              [-77.511131, 39.178308],\n              [-77.511107, 39.178377],\n              [-77.511087, 39.178419],\n              [-77.511, 39.178534],\n              [-77.510942, 39.178588],\n              [-77.510852, 39.178707],\n              [-77.510821, 39.178741],\n              [-77.510791, 39.178785],\n              [-77.510742, 39.178833],\n              [-77.510569, 39.178969],\n              [-77.510532, 39.179007],\n              [-77.510472, 39.179094],\n              [-77.510308, 39.179282],\n              [-77.510131, 39.179443],\n              [-77.510081, 39.179469],\n              [-77.510028, 39.179491],\n              [-77.509951, 39.179537],\n              [-77.509915, 39.179572],\n              [-77.509845, 39.179657],\n              [-77.509708, 39.179773],\n              [-77.509656, 39.179812],\n              [-77.509616, 39.17983],\n              [-77.509508, 39.179859],\n              [-77.509228, 39.180034],\n              [-77.509125, 39.180109],\n              [-77.50897, 39.180238],\n              [-77.508898, 39.180291],\n              [-77.508845, 39.180321],\n              [-77.50879, 39.180343],\n              [-77.508676, 39.180436],\n              [-77.508622, 39.180485],\n              [-77.508567, 39.180528],\n              [-77.508528, 39.180566],\n              [-77.508494, 39.180588],\n              [-77.50842, 39.18066],\n              [-77.50826, 39.180786],\n              [-77.50821, 39.180837],\n              [-77.508165, 39.180909],\n              [-77.508141, 39.180959],\n              [-77.508107, 39.181014],\n              [-77.508, 39.18109],\n              [-77.507909, 39.181144],\n              [-77.507858, 39.181184],\n              [-77.507776, 39.181235],\n              [-77.507731, 39.181268],\n              [-77.50756, 39.181375],\n              [-77.50754, 39.181393],\n              [-77.507533, 39.18141],\n              [-77.507386, 39.18145],\n              [-77.507338, 39.181413],\n              [-77.50729, 39.181398],\n              [-77.507236, 39.181392],\n              [-77.507183, 39.181396],\n              [-77.507117, 39.181413],\n              [-77.507073, 39.181435],\n              [-77.507009, 39.181458],\n              [-77.506934, 39.181494],\n              [-77.506851, 39.181522],\n              [-77.506818, 39.181539],\n              [-77.506625, 39.181637],\n              [-77.506579, 39.181665],\n              [-77.506372, 39.181743],\n              [-77.506294, 39.181777],\n              [-77.50613, 39.181863],\n              [-77.505977, 39.181937],\n              [-77.505731, 39.182039],\n              [-77.505639, 39.18207],\n              [-77.505515, 39.182103],\n              [-77.504921, 39.182295],\n              [-77.504654, 39.182357],\n              [-77.504555, 39.182387],\n              [-77.504351, 39.182432],\n              [-77.504272, 39.182441],\n              [-77.504059, 39.182495],\n              [-77.503944, 39.182514],\n              [-77.503834, 39.182542],\n              [-77.503748, 39.182564],\n              [-77.503656, 39.182582],\n              [-77.50356, 39.182607],\n              [-77.503263, 39.182643],\n              [-77.503122, 39.182655],\n              [-77.503066, 39.18266],\n              [-77.503009, 39.182667],\n              [-77.503007, 39.182667],\n              [-77.502675, 39.182711],\n              [-77.502601, 39.182714],\n              [-77.502317, 39.182748],\n              [-77.50209, 39.182787],\n              [-77.501878, 39.182815],\n              [-77.501813, 39.182816],\n              [-77.501811, 39.182816],\n              [-77.501659, 39.182846],\n              [-77.50147, 39.182892],\n              [-77.501423, 39.1829],\n              [-77.50141, 39.1829],\n              [-77.50122, 39.182936],\n              [-77.501121, 39.182947],\n              [-77.501024, 39.182958],\n              [-77.500942, 39.18297],\n              [-77.500939, 39.18297],\n              [-77.500937, 39.182971],\n              [-77.500905, 39.182976],\n              [-77.500903, 39.182976],\n              [-77.500823, 39.182992],\n              [-77.500637, 39.183044],\n              [-77.500516, 39.183093],\n              [-77.500337, 39.183148],\n              [-77.500202, 39.183204],\n              [-77.499915, 39.183287],\n              [-77.499815, 39.183316],\n              [-77.499812, 39.183317],\n              [-77.499779, 39.183327],\n              [-77.499772, 39.183329],\n              [-77.49977, 39.183329],\n              [-77.499644, 39.183365],\n              [-77.499628, 39.183369],\n              [-77.499278, 39.183467],\n              [-77.499166, 39.183492],\n              [-77.4989, 39.183574],\n              [-77.498897, 39.183575],\n              [-77.498626, 39.183644],\n              [-77.498297, 39.183704],\n              [-77.498255, 39.183707],\n              [-77.498168, 39.183722],\n              [-77.498089, 39.183731],\n              [-77.497908, 39.183762],\n              [-77.497785, 39.183775],\n              [-77.497749, 39.183782],\n              [-77.497702, 39.183785],\n              [-77.49761, 39.183807],\n              [-77.497447, 39.18383],\n              [-77.497136, 39.18385],\n              [-77.497002, 39.183864],\n              [-77.496979, 39.183872],\n              [-77.496802, 39.183904],\n              [-77.49656, 39.183964],\n              [-77.496386, 39.184014],\n              [-77.496356, 39.184029],\n              [-77.496332, 39.184036],\n              [-77.496276, 39.184052],\n              [-77.496128, 39.184082],\n              [-77.495866, 39.184149],\n              [-77.495804, 39.184159],\n              [-77.495802, 39.184159],\n              [-77.495777, 39.184163],\n              [-77.495551, 39.184222],\n              [-77.495471, 39.184249],\n              [-77.495207, 39.184303],\n              [-77.495041, 39.184345],\n              [-77.494533, 39.184456],\n              [-77.49442, 39.184487],\n              [-77.494257, 39.184517],\n              [-77.493885, 39.184602],\n              [-77.493722, 39.184636],\n              [-77.49372, 39.184636],\n              [-77.493379, 39.184705],\n              [-77.493243, 39.184744],\n              [-77.493151, 39.18477],\n              [-77.493032, 39.184793],\n              [-77.492815, 39.184846],\n              [-77.492719, 39.184879],\n              [-77.492494, 39.184932],\n              [-77.492349, 39.184975],\n              [-77.492305, 39.184981],\n              [-77.492188, 39.185018],\n              [-77.492083, 39.185042],\n              [-77.492053, 39.185051],\n              [-77.491901, 39.185098],\n              [-77.491823, 39.185117],\n              [-77.491653, 39.185158],\n              [-77.491432, 39.185207],\n              [-77.4914, 39.185219],\n              [-77.491127, 39.185287],\n              [-77.49106, 39.185299],\n              [-77.490938, 39.185321],\n              [-77.490809, 39.185364],\n              [-77.490793, 39.185371],\n              [-77.490743, 39.185394],\n              [-77.490616, 39.185414],\n              [-77.490239, 39.185463],\n              [-77.490114, 39.185494],\n              [-77.490057, 39.185503],\n              [-77.48994, 39.18553],\n              [-77.489739, 39.185562],\n              [-77.489603, 39.185547],\n              [-77.489478, 39.18555],\n              [-77.489257, 39.185607],\n              [-77.489212, 39.185614],\n              [-77.489168, 39.185612],\n              [-77.488949, 39.185626],\n              [-77.488841, 39.185645],\n              [-77.488709, 39.185679],\n              [-77.488638, 39.185687],\n              [-77.488553, 39.18569],\n              [-77.488499, 39.185686],\n              [-77.488444, 39.185687],\n              [-77.488285, 39.185703],\n              [-77.488198, 39.185716],\n              [-77.488159, 39.185733],\n              [-77.488025, 39.185759],\n              [-77.487938, 39.185761],\n              [-77.487838, 39.185767],\n              [-77.487474, 39.185811],\n              [-77.48732, 39.185819],\n              [-77.487163, 39.185841],\n              [-77.48703, 39.185855],\n              [-77.48673, 39.185903],\n              [-77.486548, 39.185901],\n              [-77.486331, 39.185921],\n              [-77.486207, 39.185949],\n              [-77.48605, 39.185975],\n              [-77.486011, 39.185988],\n              [-77.485954, 39.185997],\n              [-77.485904, 39.186012],\n              [-77.485797, 39.186033],\n              [-77.485405, 39.186158],\n              [-77.485368, 39.186175],\n              [-77.485238, 39.186209],\n              [-77.485081, 39.186264],\n              [-77.484933, 39.186327],\n              [-77.484629, 39.18649],\n              [-77.484512, 39.186533],\n              [-77.484466, 39.186545],\n              [-77.484433, 39.186559],\n              [-77.484342, 39.18658],\n              [-77.484159, 39.186676],\n              [-77.48412, 39.186689],\n              [-77.484014, 39.186742],\n              [-77.483946, 39.186787],\n              [-77.483813, 39.186851],\n              [-77.483619, 39.186959],\n              [-77.483486, 39.187016],\n              [-77.483411, 39.187042],\n              [-77.483324, 39.18709],\n              [-77.4832, 39.187144],\n              [-77.48315, 39.187161],\n              [-77.48311, 39.18718],\n              [-77.482982, 39.187218],\n              [-77.482895, 39.187254],\n              [-77.482803, 39.187301],\n              [-77.482765, 39.187329],\n              [-77.482715, 39.187357],\n              [-77.482639, 39.18739],\n              [-77.482595, 39.187421],\n              [-77.482403, 39.187515],\n              [-77.48224, 39.187562],\n              [-77.482206, 39.187575],\n              [-77.482176, 39.18758],\n              [-77.482089, 39.187608],\n              [-77.482041, 39.187633],\n              [-77.481846, 39.187711],\n              [-77.481756, 39.187743],\n              [-77.481658, 39.187768],\n              [-77.481618, 39.187772],\n              [-77.481485, 39.187809],\n              [-77.481204, 39.187917],\n              [-77.481101, 39.187984],\n              [-77.481056, 39.188025],\n              [-77.481039, 39.188048],\n              [-77.481014, 39.18807],\n              [-77.480859, 39.188141],\n              [-77.480727, 39.188224],\n              [-77.480643, 39.188287],\n              [-77.480622, 39.188327],\n              [-77.480646, 39.188362],\n              [-77.480687, 39.188375],\n              [-77.48072, 39.188374],\n              [-77.480867, 39.188342],\n              [-77.480889, 39.188334],\n              [-77.480948, 39.188311],\n              [-77.480963, 39.188315],\n              [-77.480991, 39.188321],\n              [-77.480978, 39.188439],\n              [-77.480947, 39.188414],\n              [-77.480901, 39.188398],\n              [-77.480831, 39.188403],\n              [-77.480786, 39.188413],\n              [-77.480724, 39.188427],\n              [-77.480691, 39.188431],\n              [-77.480664, 39.188427],\n              [-77.480629, 39.18841],\n              [-77.480615, 39.188395],\n              [-77.48058, 39.188386],\n              [-77.480547, 39.188391],\n              [-77.480483, 39.188425],\n              [-77.480406, 39.188491],\n              [-77.480179, 39.18867],\n              [-77.480099, 39.188722],\n              [-77.48006, 39.188743],\n              [-77.479906, 39.188793],\n              [-77.479845, 39.18883],\n              [-77.479778, 39.188882],\n              [-77.47974, 39.188901],\n              [-77.479159, 39.189329],\n              [-77.478959, 39.189483],\n              [-77.478674, 39.189679],\n              [-77.478513, 39.189833],\n              [-77.478472, 39.189878],\n              [-77.478281, 39.190056],\n              [-77.477948, 39.190387],\n              [-77.477768, 39.19054],\n              [-77.4777, 39.190608],\n              [-77.477609, 39.190752],\n              [-77.47757, 39.190806],\n              [-77.477535, 39.190876],\n              [-77.477445, 39.191012],\n              [-77.477424, 39.191033],\n              [-77.477324, 39.191095],\n              [-77.477285, 39.191125],\n              [-77.477247, 39.191144],\n              [-77.477151, 39.191228],\n              [-77.477097, 39.191295],\n              [-77.477067, 39.191323],\n              [-77.477004, 39.191407],\n              [-77.476918, 39.1915],\n              [-77.476833, 39.191611],\n              [-77.476713, 39.191755],\n              [-77.476666, 39.191828],\n              [-77.476532, 39.192069],\n              [-77.476455, 39.192233],\n              [-77.476399, 39.192382],\n              [-77.476342, 39.192485],\n              [-77.476242, 39.192743],\n              [-77.4762, 39.192826],\n              [-77.476139, 39.192909],\n              [-77.476105, 39.192948],\n              [-77.476072, 39.193004],\n              [-77.476054, 39.193056],\n              [-77.476025, 39.193112],\n              [-77.475999, 39.193186],\n              [-77.475965, 39.193246],\n              [-77.475952, 39.193292],\n              [-77.475851, 39.193508],\n              [-77.475819, 39.193557],\n              [-77.475742, 39.193626],\n              [-77.475701, 39.193681],\n              [-77.475684, 39.193716],\n              [-77.475648, 39.193885],\n              [-77.475619, 39.193961],\n              [-77.475579, 39.194046],\n              [-77.475548, 39.194143],\n              [-77.475425, 39.194456],\n              [-77.47539, 39.194566],\n              [-77.475398, 39.194588],\n              [-77.475329, 39.194743],\n              [-77.475332, 39.194768],\n              [-77.475324, 39.194906],\n              [-77.475324, 39.194908],\n              [-77.475322, 39.194934],\n              [-77.475314, 39.194937],\n              [-77.47525, 39.194958],\n              [-77.475227, 39.194975],\n              [-77.475202, 39.195013],\n              [-77.475185, 39.195102],\n              [-77.47518, 39.195193],\n              [-77.475154, 39.19528],\n              [-77.475121, 39.195344],\n              [-77.475115, 39.19538],\n              [-77.47509, 39.195441],\n              [-77.47505, 39.195657],\n              [-77.475047, 39.195705],\n              [-77.475, 39.195891],\n              [-77.474975, 39.196069],\n              [-77.474917, 39.196326],\n              [-77.474912, 39.196366],\n              [-77.474918, 39.196467],\n              [-77.474919, 39.196658],\n              [-77.474909, 39.196733],\n              [-77.474917, 39.196821],\n              [-77.474911, 39.197079],\n              [-77.47493, 39.197337],\n              [-77.474929, 39.197399],\n              [-77.474961, 39.197511],\n              [-77.474985, 39.197576],\n              [-77.474993, 39.19761],\n              [-77.475024, 39.197666],\n              [-77.475085, 39.197733],\n              [-77.475126, 39.197821],\n              [-77.475175, 39.198007],\n              [-77.475226, 39.198105],\n              [-77.475238, 39.19814],\n              [-77.475333, 39.198298],\n              [-77.475402, 39.198509],\n              [-77.475408, 39.198565],\n              [-77.475497, 39.198801],\n              [-77.475503, 39.198848],\n              [-77.475547, 39.199008],\n              [-77.475574, 39.199206],\n              [-77.475612, 39.199362],\n              [-77.475655, 39.199466],\n              [-77.475703, 39.199693],\n              [-77.475709, 39.199746],\n              [-77.475712, 39.199882],\n              [-77.475719, 39.19992],\n              [-77.475753, 39.199995],\n              [-77.475805, 39.200085],\n              [-77.47583, 39.2002],\n              [-77.475829, 39.200376],\n              [-77.475835, 39.200464],\n              [-77.475895, 39.20059],\n              [-77.475908, 39.20064],\n              [-77.475913, 39.200681],\n              [-77.475907, 39.200802],\n              [-77.475924, 39.200889],\n              [-77.475921, 39.201093],\n              [-77.475927, 39.201124],\n              [-77.475925, 39.201159],\n              [-77.47596, 39.20132],\n              [-77.475959, 39.201513],\n              [-77.475968, 39.201531],\n              [-77.475968, 39.201617],\n              [-77.475979, 39.201735],\n              [-77.475989, 39.201771],\n              [-77.475997, 39.201835],\n              [-77.475983, 39.201952],\n              [-77.475969, 39.202005],\n              [-77.475953, 39.202062],\n              [-77.47594, 39.202095],\n              [-77.475926, 39.20211],\n              [-77.475912, 39.202205],\n              [-77.475918, 39.202297],\n              [-77.475921, 39.202342],\n              [-77.475913, 39.202409],\n              [-77.475902, 39.202435],\n              [-77.475873, 39.202481],\n              [-77.47584, 39.202533],\n              [-77.475822, 39.20258],\n              [-77.475812, 39.202727],\n              [-77.475812, 39.202729],\n              [-77.475811, 39.202749],\n              [-77.475788, 39.202861],\n              [-77.47576, 39.202942],\n              [-77.475759, 39.202945],\n              [-77.475758, 39.202947],\n              [-77.475751, 39.202967],\n              [-77.475703, 39.203104],\n              [-77.475672, 39.203173],\n              [-77.475665, 39.203205],\n              [-77.475601, 39.203361],\n              [-77.475539, 39.203458],\n              [-77.475429, 39.203587],\n              [-77.475392, 39.20363],\n              [-77.47526, 39.20384],\n              [-77.475188, 39.203967],\n              [-77.475132, 39.204029],\n              [-77.475107, 39.204084],\n              [-77.475113, 39.204185],\n              [-77.475103, 39.204252],\n              [-77.475095, 39.204278],\n              [-77.475086, 39.204308],\n              [-77.475041, 39.204369],\n              [-77.475039, 39.204371],\n              [-77.475014, 39.204415],\n              [-77.475005, 39.204444],\n              [-77.474968, 39.20452],\n              [-77.474948, 39.204561],\n              [-77.474914, 39.204621],\n              [-77.474822, 39.204749],\n              [-77.474808, 39.204779],\n              [-77.47479, 39.204802],\n              [-77.474759, 39.204875],\n              [-77.474742, 39.204933],\n              [-77.474691, 39.205039],\n              [-77.474648, 39.205099],\n              [-77.474617, 39.205125],\n              [-77.474594, 39.205162],\n              [-77.474654, 39.205173],\n              [-77.474683, 39.205201],\n              [-77.474695, 39.205228],\n              [-77.4747, 39.205252],\n              [-77.474694, 39.205287],\n              [-77.474658, 39.205336],\n              [-77.474576, 39.205399],\n              [-77.474521, 39.205435],\n              [-77.474491, 39.205471],\n              [-77.474478, 39.205502],\n              [-77.474473, 39.205565],\n              [-77.474495, 39.205665],\n              [-77.474503, 39.205747],\n              [-77.47452, 39.205768],\n              [-77.474557, 39.205781],\n              [-77.474599, 39.205785],\n              [-77.474662, 39.205812],\n              [-77.474706, 39.205814],\n              [-77.474791, 39.205799],\n              [-77.474835, 39.205785],\n              [-77.474916, 39.205716],\n              [-77.47495, 39.205679],\n              [-77.475002, 39.205587],\n              [-77.475043, 39.205494],\n              [-77.475075, 39.205469],\n              [-77.475101, 39.20546],\n              [-77.475129, 39.205468],\n              [-77.475159, 39.205497],\n              [-77.475146, 39.205546],\n              [-77.475145, 39.205608],\n              [-77.475125, 39.205665],\n              [-77.475053, 39.205746],\n              [-77.475039, 39.205769],\n              [-77.475043, 39.205831],\n              [-77.475053, 39.20587],\n              [-77.475052, 39.205924],\n              [-77.475027, 39.205994],\n              [-77.475005, 39.206114],\n              [-77.474967, 39.206181],\n              [-77.474945, 39.206262],\n              [-77.474891, 39.206349],\n              [-77.474763, 39.206498],\n              [-77.474756, 39.206516],\n              [-77.474761, 39.206553],\n              [-77.474603, 39.206636],\n              [-77.474553, 39.206662],\n              [-77.474551, 39.206663],\n              [-77.474533, 39.206679],\n              [-77.474529, 39.206688],\n              [-77.474475, 39.206806],\n              [-77.474434, 39.206947],\n              [-77.47438, 39.207135],\n              [-77.474327, 39.207292],\n              [-77.47431, 39.207375],\n              [-77.474277, 39.207458],\n              [-77.474201, 39.207603],\n              [-77.47419, 39.207635],\n              [-77.474178, 39.207716],\n              [-77.474158, 39.207771],\n              [-77.474066, 39.207868],\n              [-77.474027, 39.207922],\n              [-77.474016, 39.207954],\n              [-77.473929, 39.208116],\n              [-77.473879, 39.208232],\n              [-77.473807, 39.208358],\n              [-77.473681, 39.208508],\n              [-77.473669, 39.208527],\n              [-77.473657, 39.208572],\n              [-77.47363, 39.208627],\n              [-77.473531, 39.208768],\n              [-77.47342, 39.208904],\n              [-77.473326, 39.209008],\n              [-77.473287, 39.209062],\n              [-77.473219, 39.209134],\n              [-77.473129, 39.209204],\n              [-77.472995, 39.209376],\n              [-77.472937, 39.20943],\n              [-77.472903, 39.209455],\n              [-77.472868, 39.209488],\n              [-77.472837, 39.209505],\n              [-77.472807, 39.209528],\n              [-77.472768, 39.209547],\n              [-77.472645, 39.209626],\n              [-77.472638, 39.209632],\n              [-77.472563, 39.209691],\n              [-77.472499, 39.209741],\n              [-77.472443, 39.209799],\n              [-77.472343, 39.209931],\n              [-77.472287, 39.209976],\n              [-77.472113, 39.210062],\n              [-77.472049, 39.210107],\n              [-77.471963, 39.210187],\n              [-77.471909, 39.210265],\n              [-77.471836, 39.210335],\n              [-77.471762, 39.210388],\n              [-77.471736, 39.210413],\n              [-77.471714, 39.210425],\n              [-77.471657, 39.210472],\n              [-77.471496, 39.210641],\n              [-77.471417, 39.210724],\n              [-77.471398, 39.210743],\n              [-77.471321, 39.210816],\n              [-77.471223, 39.210926],\n              [-77.471039, 39.211133],\n              [-77.471014, 39.211156],\n              [-77.470941, 39.211198],\n              [-77.470837, 39.21128],\n              [-77.470803, 39.211307],\n              [-77.470791, 39.211316],\n              [-77.470702, 39.211395],\n              [-77.470533, 39.211584],\n              [-77.470474, 39.211626],\n              [-77.470383, 39.211722],\n              [-77.470367, 39.211746],\n              [-77.470248, 39.211881],\n              [-77.470162, 39.211971],\n              [-77.470136, 39.211991],\n              [-77.470068, 39.212044],\n              [-77.46988, 39.212225],\n              [-77.469551, 39.212474],\n              [-77.469471, 39.212528],\n              [-77.469312, 39.212664],\n              [-77.469182, 39.212764],\n              [-77.469074, 39.212812],\n              [-77.469036, 39.212835],\n              [-77.468972, 39.212861],\n              [-77.468874, 39.212922],\n              [-77.468817, 39.212967],\n              [-77.468625, 39.2131],\n              [-77.468455, 39.213226],\n              [-77.468421, 39.213255],\n              [-77.468363, 39.213284],\n              [-77.468302, 39.213324],\n              [-77.468239, 39.213378],\n              [-77.468128, 39.213448],\n              [-77.468115, 39.213456],\n              [-77.467983, 39.213538],\n              [-77.467755, 39.213661],\n              [-77.467684, 39.213694],\n              [-77.467359, 39.213869],\n              [-77.467284, 39.213899],\n              [-77.467259, 39.213913],\n              [-77.467163, 39.213988],\n              [-77.467037, 39.214069],\n              [-77.466985, 39.214114],\n              [-77.466888, 39.214179],\n              [-77.466801, 39.214253],\n              [-77.46679, 39.214262],\n              [-77.466749, 39.214312],\n              [-77.46674, 39.214323],\n              [-77.466723, 39.214367],\n              [-77.466726, 39.214452],\n              [-77.466659, 39.2144],\n              [-77.466635, 39.21439],\n              [-77.466573, 39.214364],\n              [-77.46655, 39.214368],\n              [-77.466352, 39.214515],\n              [-77.466326, 39.214547],\n              [-77.466208, 39.214634],\n              [-77.465999, 39.214766],\n              [-77.465818, 39.214875],\n              [-77.465782, 39.214891],\n              [-77.465615, 39.215007],\n              [-77.465545, 39.215067],\n              [-77.465461, 39.215147],\n              [-77.46539, 39.215193],\n              [-77.465306, 39.21524],\n              [-77.465083, 39.215396],\n              [-77.465019, 39.215454],\n              [-77.464942, 39.215511],\n              [-77.464611, 39.215676],\n              [-77.464411, 39.21578],\n              [-77.464375, 39.215812],\n              [-77.46404, 39.216022],\n              [-77.463983, 39.216046],\n              [-77.463748, 39.21619],\n              [-77.463711, 39.216217],\n              [-77.46362, 39.216266],\n              [-77.463426, 39.216385],\n              [-77.463324, 39.216463],\n              [-77.463137, 39.216579],\n              [-77.462956, 39.216677],\n              [-77.462831, 39.216739],\n              [-77.462441, 39.216996],\n              [-77.4624, 39.217019],\n              [-77.462366, 39.217045],\n              [-77.462268, 39.2171],\n              [-77.462112, 39.2172],\n              [-77.461829, 39.217362],\n              [-77.461795, 39.217395],\n              [-77.46167, 39.217487],\n              [-77.461623, 39.217544],\n              [-77.461607, 39.217585],\n              [-77.461606, 39.217589],\n              [-77.461603, 39.217597],\n              [-77.461597, 39.217595],\n              [-77.461557, 39.217579],\n              [-77.461515, 39.217576],\n              [-77.461453, 39.217596],\n              [-77.461314, 39.217668],\n              [-77.4612, 39.217754],\n              [-77.461164, 39.217791],\n              [-77.461061, 39.217874],\n              [-77.461023, 39.217899],\n              [-77.460995, 39.217925],\n              [-77.460926, 39.217974],\n              [-77.460797, 39.218101],\n              [-77.460617, 39.218244],\n              [-77.4605, 39.218365],\n              [-77.460362, 39.218469],\n              [-77.460059, 39.218729],\n              [-77.459974, 39.218809],\n              [-77.459898, 39.21887],\n              [-77.459861, 39.218895],\n              [-77.459711, 39.219067],\n              [-77.459709, 39.21907],\n              [-77.459708, 39.219071],\n              [-77.459707, 39.219073],\n              [-77.459695, 39.219087],\n              [-77.45954, 39.219285],\n              [-77.459485, 39.219366],\n              [-77.459422, 39.219447],\n              [-77.459399, 39.21947],\n              [-77.459103, 39.219881],\n              [-77.459052, 39.219969],\n              [-77.459034, 39.220008],\n              [-77.45903, 39.220052],\n              [-77.459052, 39.220093],\n              [-77.458918, 39.22013],\n              [-77.4589, 39.220142],\n              [-77.458889, 39.220163],\n              [-77.45884, 39.220227],\n              [-77.45881, 39.220278],\n              [-77.458663, 39.220512],\n              [-77.458663, 39.22054],\n              [-77.458642, 39.220562],\n              [-77.458501, 39.220825],\n              [-77.458165, 39.221586],\n              [-77.458141, 39.221643],\n              [-77.457951, 39.222198],\n              [-77.457951, 39.222269],\n              [-77.457888, 39.22244],\n              [-77.457874, 39.222637],\n              [-77.457803, 39.222939],\n              [-77.457803, 39.223049],\n              [-77.45769, 39.223538],\n              [-77.457634, 39.224317],\n              [-77.457641, 39.224603],\n              [-77.457712, 39.224987],\n              [-77.45791, 39.225454],\n              [-77.458106, 39.225814],\n              [-77.458221, 39.226025],\n              [-77.45875, 39.226853],\n              [-77.458902, 39.227042],\n              [-77.459174, 39.22738],\n              [-77.459499, 39.227732],\n              [-77.460651, 39.22874],\n              [-77.460728, 39.228807],\n              [-77.462083, 39.229603],\n              [-77.462107, 39.229604],\n              [-77.462655, 39.229905],\n              [-77.463276, 39.23019],\n              [-77.46387, 39.230481],\n              [-77.464279, 39.23069],\n              [-77.464442, 39.230761],\n              [-77.464837, 39.230958],\n              [-77.465253, 39.231189],\n              [-77.466835, 39.232012],\n              [-77.466857, 39.232006],\n              [-77.467082, 39.232155],\n              [-77.467113, 39.23217],\n              [-77.467605, 39.232407],\n              [-77.468007, 39.232626],\n              [-77.468699, 39.233098],\n              [-77.46919, 39.233449],\n              [-77.469342, 39.233557],\n              [-77.46938, 39.233585],\n              [-77.469584, 39.23373],\n              [-77.469744, 39.233845],\n              [-77.470271, 39.23402],\n              [-77.470422, 39.23407],\n              [-77.470514, 39.234064],\n              [-77.470542, 39.234108],\n              [-77.470768, 39.234163],\n              [-77.471107, 39.234311],\n              [-77.471594, 39.23469],\n              [-77.471606, 39.234702],\n              [-77.471863, 39.234948],\n              [-77.474081, 39.236649],\n              [-77.474627, 39.237114],\n              [-77.474893, 39.23734],\n              [-77.475295, 39.237603],\n              [-77.475415, 39.237642],\n              [-77.475725, 39.237768],\n              [-77.475832, 39.237812],\n              [-77.476206, 39.238081],\n              [-77.476235, 39.238086],\n              [-77.476352, 39.238173],\n              [-77.476559, 39.238328],\n              [-77.476588, 39.238328],\n              [-77.476811, 39.238485],\n              [-77.476814, 39.238503],\n              [-77.476849, 39.238509],\n              [-77.477252, 39.238887],\n              [-77.47728, 39.238887],\n              [-77.47808, 39.239587],\n              [-77.47834, 39.239815],\n              [-77.478679, 39.24004],\n              [-77.479015, 39.240259],\n              [-77.480026, 39.240918],\n              [-77.480042, 39.240929],\n              [-77.480334, 39.241178],\n              [-77.480753, 39.241535],\n              [-77.481137, 39.241861],\n              [-77.481243, 39.242026],\n              [-77.481321, 39.242119],\n              [-77.481384, 39.242235],\n              [-77.481638, 39.242608],\n              [-77.481674, 39.242674],\n              [-77.481766, 39.242822],\n              [-77.481914, 39.243019],\n              [-77.481999, 39.243173],\n              [-77.482073, 39.243279],\n              [-77.482429, 39.243789],\n              [-77.482451, 39.243821],\n              [-77.482663, 39.24404],\n              [-77.483094, 39.244282],\n              [-77.483596, 39.244655],\n              [-77.483907, 39.244916],\n              [-77.48402, 39.245011],\n              [-77.484308, 39.24539],\n              [-77.484323, 39.24541],\n              [-77.484387, 39.245494],\n              [-77.484454, 39.24566],\n              [-77.484472, 39.245703],\n              [-77.484536, 39.245824],\n              [-77.484733, 39.24606],\n              [-77.484775, 39.246087],\n              [-77.484926, 39.246187],\n              [-77.484979, 39.246221],\n              [-77.485191, 39.246361],\n              [-77.485707, 39.2467],\n              [-77.486217, 39.247036],\n              [-77.486648, 39.247289],\n              [-77.487057, 39.24748],\n              [-77.487331, 39.247582],\n              [-77.487396, 39.247607],\n              [-77.487488, 39.247607],\n              [-77.487509, 39.247585],\n              [-77.487531, 39.247513],\n              [-77.48741, 39.24725],\n              [-77.487446, 39.2472],\n              [-77.487573, 39.247206],\n              [-77.487742, 39.247374],\n              [-77.487756, 39.247387],\n              [-77.487771, 39.247442],\n              [-77.488293, 39.247798],\n              [-77.488612, 39.248003],\n              [-77.488621, 39.248009],\n              [-77.48893, 39.248207],\n              [-77.489048, 39.248283],\n              [-77.489404, 39.248512],\n              [-77.489523, 39.248589],\n              [-77.4896, 39.248638],\n              [-77.489803, 39.248745],\n              [-77.49013, 39.248917],\n              [-77.49054, 39.24912],\n              [-77.490669, 39.249164],\n              [-77.490973, 39.249268],\n              [-77.492284, 39.249718],\n              [-77.493224, 39.250008],\n              [-77.4939, 39.2503],\n              [-77.494515, 39.250486],\n              [-77.494797, 39.250607],\n              [-77.495475, 39.250782],\n              [-77.496214, 39.251053],\n              [-77.496238, 39.251062],\n              [-77.496577, 39.251139],\n              [-77.497269, 39.251336],\n              [-77.497562, 39.251364],\n              [-77.498575, 39.251618],\n              [-77.499634, 39.251722],\n              [-77.500148, 39.251727],\n              [-77.501049, 39.251824],\n              [-77.501556, 39.251891],\n              [-77.502528, 39.25205],\n              [-77.50384, 39.252271],\n              [-77.504213, 39.252319],\n              [-77.504573, 39.252302],\n              [-77.505014, 39.252286],\n              [-77.505572, 39.252262],\n              [-77.506789, 39.252491],\n              [-77.507992, 39.252707],\n              [-77.508473, 39.252815],\n              [-77.508761, 39.252859],\n              [-77.509079, 39.252843],\n              [-77.509648, 39.252987],\n              [-77.510058, 39.253085],\n              [-77.510451, 39.253211],\n              [-77.51067, 39.253264],\n              [-77.510936, 39.253406],\n              [-77.511067, 39.253467],\n              [-77.511141, 39.253514],\n              [-77.511241, 39.253588],\n              [-77.511424, 39.253697],\n              [-77.511803, 39.253915],\n              [-77.512274, 39.254197],\n              [-77.512965, 39.254542],\n              [-77.513502, 39.254794],\n              [-77.514882, 39.255424],\n              [-77.515405, 39.255788],\n              [-77.515909, 39.255976],\n              [-77.51636, 39.256145],\n              [-77.516377, 39.256151],\n              [-77.516438, 39.256173],\n              [-77.516458, 39.25618],\n              [-77.516464, 39.256182],\n              [-77.516467, 39.256184],\n              [-77.516469, 39.256185],\n              [-77.516493, 39.256195],\n              [-77.516737, 39.256285],\n              [-77.51753, 39.256581],\n              [-77.518035, 39.256771],\n              [-77.51845, 39.256921],\n              [-77.518711, 39.257015],\n              [-77.519008, 39.257127],\n              [-77.519026, 39.257134],\n              [-77.519027, 39.257135],\n              [-77.519291, 39.257246],\n              [-77.519505, 39.257358],\n              [-77.519555, 39.257384],\n              [-77.519708, 39.257463],\n              [-77.519759, 39.25749],\n              [-77.519786, 39.257504],\n              [-77.519868, 39.257547],\n              [-77.519896, 39.257562],\n              [-77.520059, 39.257647],\n              [-77.52009, 39.25768],\n              [-77.520406, 39.258019],\n              [-77.520517, 39.258218],\n              [-77.520624, 39.258409],\n              [-77.520626, 39.258421],\n              [-77.520719, 39.25844],\n              [-77.521, 39.258499],\n              [-77.521094, 39.258519],\n              [-77.521134, 39.258545],\n              [-77.521346, 39.258633],\n              [-77.523591, 39.259507],\n              [-77.524283, 39.259732],\n              [-77.524708, 39.259851],\n              [-77.524967, 39.259924],\n              [-77.52525, 39.259985],\n              [-77.525617, 39.260029],\n              [-77.525659, 39.260007],\n              [-77.525659, 39.259985],\n              [-77.525476, 39.259886],\n              [-77.525052, 39.259727],\n              [-77.523817, 39.259375],\n              [-77.521783, 39.258677],\n              [-77.52167, 39.2586],\n              [-77.52167, 39.258523],\n              [-77.521727, 39.258479],\n              [-77.521783, 39.258479],\n              [-77.522984, 39.258946],\n              [-77.524367, 39.259408],\n              [-77.525518, 39.259809],\n              [-77.525984, 39.25993],\n              [-77.527255, 39.260359],\n              [-77.527317, 39.260365],\n              [-77.528371, 39.260474],\n              [-77.528569, 39.260518],\n              [-77.528696, 39.260507],\n              [-77.528748, 39.260521],\n              [-77.52879, 39.260527],\n              [-77.528982, 39.260562],\n              [-77.529173, 39.260624],\n              [-77.529352, 39.260655],\n              [-77.52963, 39.260739],\n              [-77.529734, 39.260755],\n              [-77.529813, 39.260772],\n              [-77.529957, 39.260819],\n              [-77.530026, 39.260832],\n              [-77.530084, 39.260854],\n              [-77.530148, 39.260885],\n              [-77.530187, 39.260898],\n              [-77.530296, 39.260922],\n              [-77.530382, 39.260955],\n              [-77.53044, 39.260975],\n              [-77.530794, 39.261062],\n              [-77.53084, 39.261079],\n              [-77.530868, 39.261081],\n              [-77.530973, 39.26111],\n              [-77.531092, 39.261169],\n              [-77.531214, 39.261218],\n              [-77.531258, 39.261241],\n              [-77.531396, 39.261288],\n              [-77.531466, 39.261326],\n              [-77.531739, 39.261442],\n              [-77.531857, 39.261469],\n              [-77.531901, 39.261493],\n              [-77.532004, 39.261575],\n              [-77.532103, 39.261627],\n              [-77.532153, 39.261662],\n              [-77.532351, 39.261747],\n              [-77.532548, 39.261911],\n              [-77.532611, 39.261958],\n              [-77.532726, 39.262022],\n              [-77.532864, 39.262089],\n              [-77.533101, 39.262186],\n              [-77.533236, 39.262255],\n              [-77.533391, 39.262343],\n              [-77.533587, 39.262428],\n              [-77.533632, 39.262441],\n              [-77.533657, 39.262439],\n              [-77.533671, 39.262397],\n              [-77.533685, 39.262375],\n              [-77.533731, 39.262381],\n              [-77.533772, 39.262397],\n              [-77.533839, 39.262412],\n              [-77.533883, 39.262418],\n              [-77.533914, 39.262419],\n              [-77.534373, 39.262527],\n              [-77.534591, 39.262578],\n              [-77.534789, 39.262644],\n              [-77.535315, 39.262852],\n              [-77.535429, 39.262897],\n              [-77.535548, 39.262944],\n              [-77.535608, 39.262968],\n              [-77.535624, 39.262974],\n              [-77.535792, 39.26304],\n              [-77.536363, 39.263303],\n              [-77.536434, 39.263336],\n              [-77.536971, 39.263595],\n              [-77.537395, 39.263825],\n              [-77.537734, 39.264056],\n              [-77.537861, 39.2641],\n              [-77.538443, 39.264537],\n              [-77.53868, 39.264715],\n              [-77.538863, 39.264781],\n              [-77.539175, 39.264847],\n              [-77.539208, 39.264864],\n              [-77.539311, 39.264917],\n              [-77.539345, 39.264935],\n              [-77.539432, 39.264925],\n              [-77.53965, 39.264782],\n              [-77.539724, 39.264735],\n              [-77.539825, 39.26477],\n              [-77.540129, 39.264876],\n              [-77.540182, 39.264895],\n              [-77.540227, 39.264921],\n              [-77.540842, 39.265277],\n              [-77.543088, 39.266924],\n              [-77.543504, 39.2673],\n              [-77.543869, 39.268024],\n              [-77.544007, 39.268574],\n              [-77.544101, 39.269443],\n              [-77.544181, 39.269647],\n              [-77.54463, 39.270168],\n              [-77.545211, 39.27097],\n              [-77.545503, 39.2713],\n              [-77.5456, 39.271337],\n              [-77.545658, 39.271397],\n              [-77.545759, 39.271491],\n              [-77.546327, 39.272118],\n              [-77.546473, 39.272236],\n              [-77.54709, 39.272738],\n              [-77.547528, 39.273135],\n              [-77.54798, 39.273486],\n              [-77.54834, 39.273816],\n              [-77.548819, 39.274388],\n              [-77.549003, 39.274552],\n              [-77.549412, 39.274854],\n              [-77.549441, 39.274854],\n              [-77.549526, 39.27492],\n              [-77.550048, 39.275196],\n              [-77.550677, 39.275613],\n              [-77.550704, 39.275628],\n              [-77.550834, 39.275696],\n              [-77.550953, 39.275946],\n              [-77.551063, 39.276178],\n              [-77.551064, 39.276192],\n              [-77.55107, 39.276247],\n              [-77.551072, 39.276262],\n              [-77.5511, 39.276328],\n              [-77.551383, 39.276624],\n              [-77.551559, 39.27685],\n              [-77.551983, 39.277393],\n              [-77.552092, 39.277577],\n              [-77.552548, 39.278343],\n              [-77.552965, 39.279166],\n              [-77.553219, 39.279539],\n              [-77.553247, 39.279605],\n              [-77.553284, 39.279975],\n              [-77.553304, 39.280165],\n              [-77.553622, 39.280714],\n              [-77.553678, 39.280769],\n              [-77.553876, 39.28112],\n              [-77.554158, 39.281439],\n              [-77.554441, 39.281637],\n              [-77.554794, 39.281812],\n              [-77.555062, 39.281906],\n              [-77.555642, 39.282048],\n              [-77.555687, 39.28205],\n              [-77.556037, 39.28207],\n              [-77.556327, 39.282202],\n              [-77.556624, 39.2824],\n              [-77.557217, 39.28274],\n              [-77.557683, 39.283119],\n              [-77.558093, 39.283558],\n              [-77.55875, 39.284118],\n              [-77.559597, 39.284975],\n              [-77.560551, 39.285749],\n              [-77.560692, 39.285968],\n              [-77.560862, 39.286353],\n              [-77.561078, 39.286909],\n              [-77.561349, 39.287604],\n              [-77.561406, 39.287846],\n              [-77.561589, 39.28801],\n              [-77.56166, 39.288285],\n              [-77.561702, 39.288592],\n              [-77.561747, 39.289252],\n              [-77.561751, 39.289313],\n              [-77.561764, 39.289499],\n              [-77.561766, 39.289526],\n              [-77.561794, 39.289548],\n              [-77.56178, 39.289602],\n              [-77.561853, 39.289848],\n              [-77.56195, 39.290173],\n              [-77.562006, 39.290668],\n              [-77.562009, 39.290768],\n              [-77.562013, 39.290854],\n              [-77.561979, 39.291078],\n              [-77.561972, 39.29112],\n              [-77.561948, 39.291249],\n              [-77.561932, 39.291319],\n              [-77.561928, 39.291389],\n              [-77.561873, 39.291683],\n              [-77.561856, 39.291782],\n              [-77.561856, 39.291798],\n              [-77.561857, 39.291847],\n              [-77.561858, 39.291864],\n              [-77.56183, 39.291886],\n              [-77.561744, 39.292244],\n              [-77.561667, 39.292567],\n              [-77.561696, 39.292874],\n              [-77.561809, 39.293072],\n              [-77.562027, 39.293338],\n              [-77.562035, 39.293347],\n              [-77.562338, 39.293597],\n              [-77.562364, 39.293618],\n              [-77.562472, 39.293706],\n              [-77.562515, 39.293742],\n              [-77.562591, 39.293866],\n              [-77.562642, 39.29395],\n              [-77.562748, 39.294225],\n              [-77.562772, 39.294437],\n              [-77.562777, 39.294477],\n              [-77.562782, 39.294639],\n              [-77.562805, 39.295466],\n              [-77.562788, 39.29558],\n              [-77.562642, 39.296575],\n              [-77.562409, 39.29764],\n              [-77.562315, 39.298366],\n              [-77.562296, 39.298518],\n              [-77.562254, 39.29871],\n              [-77.562094, 39.299282],\n              [-77.562091, 39.29929],\n              [-77.562084, 39.299314],\n              [-77.562082, 39.299323],\n              [-77.562063, 39.299391],\n              [-77.56171, 39.300313],\n              [-77.561682, 39.3005],\n              [-77.561705, 39.300885],\n              [-77.561717, 39.301071],\n              [-77.56183, 39.301477],\n              [-77.562028, 39.302059],\n              [-77.562261, 39.302531],\n              [-77.562614, 39.303047],\n              [-77.562826, 39.3033],\n              [-77.56325, 39.303777],\n              [-77.564332, 39.304732],\n              [-77.564426, 39.304797],\n              [-77.564982, 39.305182],\n              [-77.565604, 39.305556],\n              [-77.565932, 39.30572],\n              [-77.565963, 39.305736],\n              [-77.5666, 39.306055],\n              [-77.567095, 39.306242],\n              [-77.567844, 39.30645],\n              [-77.568338, 39.306489],\n              [-77.568734, 39.306445],\n              [-77.568755, 39.306455],\n              [-77.569336, 39.306354],\n              [-77.569638, 39.306302],\n              [-77.571235, 39.306121],\n              [-77.571942, 39.306022],\n              [-77.572373, 39.305928],\n              [-77.573602, 39.305588],\n              [-77.57421, 39.305473],\n              [-77.574592, 39.30544],\n              [-77.575637, 39.305406],\n              [-77.577305, 39.305225],\n              [-77.578648, 39.305175],\n              [-77.579227, 39.305088],\n              [-77.579789, 39.304938],\n              [-77.580301, 39.304802],\n              [-77.581396, 39.304335],\n              [-77.581933, 39.304181],\n              [-77.582004, 39.304148],\n              [-77.582512, 39.30378],\n              [-77.58299, 39.303524],\n              [-77.583106, 39.303462],\n              [-77.583459, 39.303341],\n              [-77.583784, 39.303319],\n              [-77.584392, 39.303022],\n              [-77.584997, 39.302881],\n              [-77.58555, 39.302753],\n              [-77.585854, 39.302665],\n              [-77.586334, 39.302489],\n              [-77.587521, 39.301968],\n              [-77.588171, 39.301759],\n              [-77.588779, 39.301599],\n              [-77.589175, 39.301533],\n              [-77.589641, 39.301489],\n              [-77.590771, 39.30144],\n              [-77.59115, 39.30138],\n              [-77.591478, 39.30133],\n              [-77.592424, 39.301242],\n              [-77.592622, 39.301209],\n              [-77.59323, 39.301203],\n              [-77.593269, 39.301207],\n              [-77.593979, 39.30128],\n              [-77.595081, 39.30151],\n              [-77.595732, 39.301647],\n              [-77.596212, 39.30168],\n              [-77.597244, 39.301652],\n              [-77.597597, 39.301685],\n              [-77.598515, 39.301827],\n              [-77.599194, 39.301893],\n              [-77.599802, 39.302052],\n              [-77.600544, 39.302152],\n              [-77.600607, 39.302161],\n              [-77.601243, 39.302359],\n              [-77.601865, 39.302518],\n              [-77.602289, 39.302561],\n              [-77.602332, 39.302563],\n              [-77.602344, 39.302563],\n              [-77.602383, 39.302565],\n              [-77.602396, 39.302566],\n              [-77.602631, 39.302575],\n              [-77.602798, 39.302583],\n              [-77.603325, 39.302702],\n              [-77.603556, 39.302755],\n              [-77.603575, 39.302759],\n              [-77.603612, 39.302774],\n              [-77.603778, 39.302844],\n              [-77.603834, 39.302868],\n              [-77.60387, 39.302883],\n              [-77.603978, 39.302929],\n              [-77.604017, 39.302938],\n              [-77.60405, 39.302945],\n              [-77.604151, 39.302969],\n              [-77.604185, 39.302977],\n              [-77.604402, 39.303027],\n              [-77.604436, 39.30304],\n              [-77.60484, 39.303203],\n              [-77.605151, 39.303334],\n              [-77.605156, 39.303336],\n              [-77.605385, 39.303459],\n              [-77.605485, 39.303511],\n              [-77.60551, 39.303525],\n              [-77.605646, 39.303598],\n              [-77.605929, 39.303718],\n              [-77.606178, 39.303754],\n              [-77.606268, 39.303768],\n              [-77.606762, 39.303745],\n              [-77.60696, 39.30369],\n              [-77.607172, 39.30357],\n              [-77.607327, 39.303427],\n              [-77.607341, 39.303218],\n              [-77.607384, 39.303185],\n              [-77.607666, 39.303163],\n              [-77.607864, 39.303185],\n              [-77.607949, 39.303141],\n              [-77.607941, 39.303087],\n              [-77.607921, 39.302932],\n              [-77.607942, 39.3029],\n              [-77.608069, 39.302894],\n              [-77.608288, 39.303037],\n              [-77.608359, 39.303015],\n              [-77.6084, 39.302978],\n              [-77.608507, 39.302883],\n              [-77.608535, 39.302575],\n              [-77.60862, 39.302487],\n              [-77.608733, 39.302454],\n              [-77.609256, 39.302476],\n              [-77.609736, 39.302586],\n              [-77.61009, 39.302619],\n              [-77.610358, 39.302624],\n              [-77.610669, 39.302602],\n              [-77.610697, 39.302635],\n              [-77.610612, 39.302679],\n              [-77.610485, 39.302712],\n              [-77.61032, 39.302726],\n              [-77.610061, 39.30275],\n              [-77.610019, 39.302783],\n              [-77.610033, 39.302871],\n              [-77.61038, 39.303107],\n              [-77.610719, 39.303261],\n              [-77.611115, 39.303315],\n              [-77.611298, 39.303414],\n              [-77.611397, 39.303414],\n              [-77.611963, 39.303381],\n              [-77.612259, 39.303326],\n              [-77.612457, 39.303199],\n              [-77.61257, 39.303035],\n              [-77.61269, 39.302936],\n              [-77.612817, 39.302881],\n              [-77.613213, 39.302826],\n              [-77.613693, 39.302705],\n              [-77.61399, 39.302694],\n              [-77.614541, 39.302765],\n              [-77.614908, 39.302743],\n              [-77.615064, 39.302721],\n              [-77.615643, 39.302567],\n              [-77.615912, 39.302556],\n              [-77.616392, 39.302643],\n              [-77.616618, 39.302703],\n              [-77.61683, 39.302791],\n              [-77.617099, 39.302945],\n              [-77.617233, 39.302988],\n              [-77.617954, 39.303131],\n              [-77.61811, 39.303186],\n              [-77.618376, 39.303313],\n              [-77.618845, 39.303537],\n              [-77.619651, 39.30386],\n              [-77.620242, 39.304035],\n              [-77.620428, 39.30409],\n              [-77.620577, 39.304127],\n              [-77.621284, 39.304302],\n              [-77.621641, 39.304391],\n              [-77.621644, 39.304392],\n              [-77.622287, 39.304754],\n              [-77.622527, 39.304841],\n              [-77.622635, 39.304866],\n              [-77.622994, 39.304951],\n              [-77.623347, 39.305027],\n              [-77.624442, 39.305087],\n              [-77.624633, 39.305142],\n              [-77.624718, 39.305131],\n              [-77.624823, 39.305146],\n              [-77.625353, 39.305366],\n              [-77.62548, 39.305399],\n              [-77.626618, 39.305811],\n              [-77.627324, 39.305932],\n              [-77.627833, 39.305976],\n              [-77.628271, 39.306097],\n              [-77.628539, 39.306218],\n              [-77.628638, 39.306295],\n              [-77.628737, 39.306449],\n              [-77.629062, 39.306679],\n              [-77.629486, 39.306828],\n              [-77.630093, 39.307125],\n              [-77.630249, 39.307223],\n              [-77.630425, 39.307368],\n              [-77.630771, 39.30765],\n              [-77.63087, 39.307694],\n              [-77.630927, 39.307727],\n              [-77.63111, 39.307726],\n              [-77.631383, 39.307774],\n              [-77.63142, 39.307781],\n              [-77.631943, 39.307929],\n              [-77.632282, 39.30794],\n              [-77.63272, 39.307897],\n              [-77.632819, 39.307853],\n              [-77.633018, 39.307721],\n              [-77.633244, 39.307655],\n              [-77.633485, 39.307613],\n              [-77.633859, 39.307632],\n              [-77.633923, 39.307635],\n              [-77.634163, 39.307679],\n              [-77.634262, 39.307767],\n              [-77.63429, 39.307898],\n              [-77.634331, 39.307948],\n              [-77.634458, 39.308025],\n              [-77.634543, 39.308047],\n              [-77.6346, 39.308047],\n              [-77.634798, 39.307992],\n              [-77.635152, 39.307806],\n              [-77.635308, 39.307784],\n              [-77.635661, 39.307796],\n              [-77.636749, 39.307983],\n              [-77.637579, 39.308044],\n              [-77.638148, 39.308085],\n              [-77.63836, 39.3081],\n              [-77.639321, 39.308221],\n              [-77.639521, 39.308254],\n              [-77.639688, 39.308281],\n              [-77.639699, 39.308283],\n              [-77.64023, 39.308404],\n              [-77.640407, 39.308445],\n              [-77.640748, 39.308523],\n              [-77.641076, 39.308577],\n              [-77.641603, 39.308666],\n              [-77.641829, 39.308721],\n              [-77.642225, 39.308771],\n              [-77.642719, 39.308793],\n              [-77.643106, 39.308782],\n              [-77.643518, 39.308771],\n              [-77.643783, 39.308713],\n              [-77.643786, 39.308728],\n              [-77.643795, 39.308768],\n              [-77.643796, 39.308776],\n              [-77.6438, 39.308793],\n              [-77.643829, 39.308789],\n              [-77.643918, 39.308778],\n              [-77.643948, 39.308775],\n              [-77.643975, 39.308771],\n              [-77.644058, 39.308761],\n              [-77.644086, 39.308758],\n              [-77.64411, 39.308774],\n              [-77.644184, 39.308822],\n              [-77.644209, 39.308838],\n              [-77.64423, 39.308847],\n              [-77.644259, 39.308858],\n              [-77.644348, 39.308892],\n              [-77.644465, 39.308937],\n              [-77.644627, 39.309041],\n              [-77.644768, 39.309085],\n              [-77.644866, 39.309095],\n              [-77.645362, 39.309151],\n              [-77.645616, 39.309217],\n              [-77.645715, 39.309261],\n              [-77.646152, 39.309367],\n              [-77.64621, 39.309382],\n              [-77.646569, 39.309508],\n              [-77.646921, 39.309632],\n              [-77.647114, 39.3097],\n              [-77.647496, 39.309904],\n              [-77.647919, 39.31009],\n              [-77.647942, 39.310095],\n              [-77.648305, 39.310187],\n              [-77.648357, 39.3102],\n              [-77.648668, 39.310244],\n              [-77.649364, 39.3104],\n              [-77.649403, 39.310409],\n              [-77.650195, 39.310612],\n              [-77.650901, 39.310854],\n              [-77.652308, 39.311696],\n              [-77.653236, 39.312252],\n              [-77.653352, 39.312321],\n              [-77.653526, 39.312412],\n              [-77.65396, 39.312639],\n              [-77.65439, 39.312905],\n              [-77.65444, 39.312936],\n              [-77.654681, 39.313066],\n              [-77.655521, 39.313518],\n              [-77.656313, 39.313831],\n              [-77.656496, 39.313897],\n              [-77.656693, 39.313951],\n              [-77.658645, 39.314496],\n              [-77.6588, 39.314562],\n              [-77.659365, 39.314726],\n              [-77.659662, 39.314847],\n              [-77.660015, 39.314957],\n              [-77.661103, 39.31538],\n              [-77.662015, 39.315666],\n              [-77.662891, 39.315907],\n              [-77.662992, 39.315946],\n              [-77.663852, 39.316275],\n              [-77.66446, 39.316572],\n              [-77.665027, 39.316792],\n              [-77.665082, 39.316813],\n              [-77.666462, 39.3176],\n              [-77.666537, 39.317643],\n              [-77.667251, 39.318126],\n              [-77.667604, 39.3184],\n              [-77.668367, 39.319081],\n              [-77.668749, 39.319476],\n              [-77.669194, 39.319883],\n              [-77.669505, 39.320234],\n              [-77.669802, 39.320525],\n              [-77.670111, 39.320905],\n              [-77.670339, 39.321184],\n              [-77.670395, 39.321283],\n              [-77.671003, 39.3217],\n              [-77.671399, 39.321887],\n              [-77.671561, 39.321963],\n              [-77.67159, 39.321963],\n              [-77.671943, 39.322183],\n              [-77.672568, 39.322452],\n              [-77.672798, 39.322551],\n              [-77.673356, 39.322814],\n              [-77.674275, 39.323473],\n              [-77.674741, 39.323923],\n              [-77.675066, 39.324154],\n              [-77.675108, 39.324185],\n              [-77.675187, 39.324242],\n              [-77.675469, 39.324368],\n              [-77.675872, 39.324457],\n              [-77.676063, 39.3245],\n              [-77.67619, 39.324511],\n              [-77.676445, 39.324533],\n              [-77.676466, 39.324523],\n              [-77.676812, 39.324566],\n              [-77.677031, 39.324549],\n              [-77.677166, 39.324542],\n              [-77.677353, 39.324531],\n              [-77.677448, 39.324526],\n              [-77.677731, 39.324511],\n              [-77.677917, 39.324486],\n              [-77.678103, 39.324462],\n              [-77.678225, 39.324445],\n              [-77.678268, 39.32444],\n              [-77.678589, 39.324367],\n              [-77.678607, 39.324363],\n              [-77.678712, 39.32435],\n              [-77.678812, 39.324337],\n              [-77.678911, 39.324324],\n              [-77.679173, 39.324286],\n              [-77.679391, 39.324242],\n              [-77.679943, 39.324132],\n              [-77.681145, 39.323995],\n              [-77.681173, 39.323973],\n              [-77.681426, 39.323937],\n              [-77.681724, 39.323896],\n              [-77.682078, 39.323737],\n              [-77.68224, 39.323627],\n              [-77.683081, 39.322903],\n              [-77.683435, 39.322716],\n              [-77.683866, 39.322408],\n              [-77.684064, 39.322233],\n              [-77.684233, 39.322046],\n              [-77.684572, 39.321761],\n              [-77.684896, 39.321436],\n              [-77.685039, 39.321294],\n              [-77.686177, 39.320405],\n              [-77.686502, 39.320207],\n              [-77.688042, 39.319642],\n              [-77.688438, 39.319521],\n              [-77.68865, 39.319477],\n              [-77.689032, 39.319433],\n              [-77.689512, 39.319406],\n              [-77.690064, 39.319351],\n              [-77.690198, 39.319318],\n              [-77.690537, 39.319197],\n              [-77.690989, 39.318966],\n              [-77.692007, 39.31862],\n              [-77.692544, 39.318511],\n              [-77.69301, 39.318445],\n              [-77.693675, 39.318423],\n              [-77.694268, 39.318461],\n              [-77.694622, 39.318505],\n              [-77.695151, 39.318514],\n              [-77.695244, 39.318516],\n              [-77.695696, 39.318472],\n              [-77.696078, 39.318461],\n              [-77.696742, 39.318554],\n              [-77.697378, 39.318752],\n              [-77.698, 39.318905],\n              [-77.698283, 39.318938],\n              [-77.698745, 39.318964],\n              [-77.698876, 39.318971],\n              [-77.699329, 39.319075],\n              [-77.699409, 39.319103],\n              [-77.699922, 39.319284],\n              [-77.701366, 39.319686],\n              [-77.701378, 39.31969],\n              [-77.702015, 39.319896],\n              [-77.702141, 39.319937],\n              [-77.703251, 39.320233],\n              [-77.703788, 39.320397],\n              [-77.704566, 39.320655],\n              [-77.704834, 39.320776],\n              [-77.706262, 39.321303],\n              [-77.706898, 39.3215],\n              [-77.70728, 39.321637],\n              [-77.707676, 39.321736],\n              [-77.708086, 39.321758],\n              [-77.708298, 39.321736],\n              [-77.709095, 39.321526],\n              [-77.709346, 39.321463],\n              [-77.709431, 39.321453],\n              [-77.709677, 39.321478],\n              [-77.709871, 39.321493],\n              [-77.710223, 39.321426],\n              [-77.710406, 39.321359],\n              [-77.710574, 39.321359],\n              [-77.710828, 39.3214],\n              [-77.710958, 39.32141],\n              [-77.71111, 39.321422],\n              [-77.711238, 39.321444],\n              [-77.711379, 39.321521],\n              [-77.711478, 39.321543],\n              [-77.711591, 39.321543],\n              [-77.711704, 39.321521],\n              [-77.711944, 39.321433],\n              [-77.712215, 39.321398],\n              [-77.712241, 39.321395],\n              [-77.71226, 39.321394],\n              [-77.712396, 39.32139],\n              [-77.712442, 39.321389],\n              [-77.712908, 39.321375],\n              [-77.713032, 39.321372],\n              [-77.713471, 39.321306],\n              [-77.71364, 39.321263],\n              [-77.713725, 39.321219],\n              [-77.714022, 39.321262],\n              [-77.714078, 39.321295],\n              [-77.714272, 39.321335],\n              [-77.71429, 39.321339],\n              [-77.714738, 39.321306],\n              [-77.714799, 39.321301],\n              [-77.714997, 39.321257],\n              [-77.715266, 39.321235],\n              [-77.715548, 39.321191],\n              [-77.715591, 39.321158],\n              [-77.715573, 39.320973],\n              [-77.715569, 39.320927],\n              [-77.715612, 39.320872],\n              [-77.715796, 39.320828],\n              [-77.716333, 39.32085],\n              [-77.716884, 39.320811],\n              [-77.717294, 39.320855],\n              [-77.717414, 39.320894],\n              [-77.717859, 39.32102],\n              [-77.718439, 39.321096],\n              [-77.718623, 39.321152],\n              [-77.718764, 39.321195],\n              [-77.718901, 39.321222],\n              [-77.718985, 39.321239],\n              [-77.719209, 39.321283],\n              [-77.719521, 39.321322],\n              [-77.719553, 39.321277],\n              [-77.71971, 39.321096],\n              [-77.719905, 39.320912],\n              [-77.720148, 39.320233],\n              [-77.720356, 39.319674],\n              [-77.720596, 39.319282],\n              [-77.720785, 39.318985],\n              [-77.72164, 39.318502],\n              [-77.72239, 39.31815],\n              [-77.722763, 39.318203],\n              [-77.723138, 39.318072],\n              [-77.723368, 39.317956],\n              [-77.723662, 39.317756],\n              [-77.724166, 39.31763],\n              [-77.724992, 39.317556],\n              [-77.725638, 39.317646],\n              [-77.725908, 39.317683],\n              [-77.72656, 39.317401],\n              [-77.727363, 39.317043],\n              [-77.727958, 39.3166],\n              [-77.72826, 39.31638],\n              [-77.728747, 39.316301],\n              [-77.728977, 39.316066],\n              [-77.729568, 39.315862],\n              [-77.730699, 39.315611],\n              [-77.731099, 39.315263],\n              [-77.731344, 39.314924],\n              [-77.732169, 39.314124],\n              [-77.73269, 39.313775],\n              [-77.734221, 39.313062],\n              [-77.734769, 39.312694],\n              [-77.734897, 39.312578],\n              [-77.73512, 39.312204],\n              [-77.735413, 39.311977],\n              [-77.73552, 39.311879],\n              [-77.73628, 39.310608],\n              [-77.736669, 39.310028],\n              [-77.736932, 39.309635],\n              [-77.737634, 39.308998],\n              [-77.73802, 39.308496],\n              [-77.738106, 39.308412],\n              [-77.738412, 39.308199],\n              [-77.73908, 39.307155],\n              [-77.739524, 39.30639],\n              [-77.739976, 39.305523],\n              [-77.740624, 39.304676],\n              [-77.740996, 39.303685],\n              [-77.741212, 39.303202],\n              [-77.741368, 39.302853],\n              [-77.741861, 39.301876],\n              [-77.742151, 39.301373],\n              [-77.742824, 39.300557],\n              [-77.743224, 39.300111],\n              [-77.743832, 39.29919],\n              [-77.744635, 39.298425],\n              [-77.746593, 39.296011],\n              [-77.747082, 39.295449],\n              [-77.747589, 39.294842],\n              [-77.747888, 39.294427],\n              [-77.748297, 39.293704],\n              [-77.748962, 39.291976],\n              [-77.749717, 39.290506],\n              [-77.750269, 39.289292],\n              [-77.750418, 39.288886],\n              [-77.750681, 39.288143],\n              [-77.751259, 39.286841],\n              [-77.751841, 39.284911],\n              [-77.752728, 39.283381],\n              [-77.753096, 39.281807],\n              [-77.753071, 39.281275],\n              [-77.753359, 39.280339],\n              [-77.753244, 39.279428],\n              [-77.753292, 39.278918],\n              [-77.753285, 39.278808],\n              [-77.753254, 39.278409],\n              [-77.753178, 39.278291],\n              [-77.753062, 39.277979],\n              [-77.752987, 39.277776],\n              [-77.753064, 39.277499],\n              [-77.753107, 39.277348],\n              [-77.753188, 39.277216],\n              [-77.753456, 39.276849],\n              [-77.753581, 39.27668],\n              [-77.754051, 39.276038],\n              [-77.754767, 39.275701],\n              [-77.754808, 39.275656],\n              [-77.755198, 39.275225],\n              [-77.755414, 39.275052],\n              [-77.755629, 39.274879],\n              [-77.755835, 39.274713],\n              [-77.756027, 39.274577],\n              [-77.75689, 39.274069],\n              [-77.757074, 39.273804],\n              [-77.757203, 39.273618],\n              [-77.757412, 39.273266],\n              [-77.757659, 39.272855],\n              [-77.757969, 39.27226],\n              [-77.758045, 39.271827],\n              [-77.758045, 39.271685],\n              [-77.758026, 39.271444],\n              [-77.758048, 39.271396],\n              [-77.758067, 39.271238],\n              [-77.758081, 39.271135],\n              [-77.758129, 39.2708],\n              [-77.758162, 39.270569],\n              [-77.758194, 39.27034],\n              [-77.758198, 39.270311],\n              [-77.758255, 39.270135],\n              [-77.758394, 39.269709],\n              [-77.758463, 39.269496],\n              [-77.758617, 39.269021],\n              [-77.758756, 39.268592],\n              [-77.758826, 39.268376],\n              [-77.758896, 39.268161],\n              [-77.758903, 39.268139],\n              [-77.7588, 39.268004],\n              [-77.758755, 39.267922],\n              [-77.758565, 39.267645],\n              [-77.758557, 39.267028],\n              [-77.758378, 39.266682],\n              [-77.758127, 39.266194],\n              [-77.758108, 39.266158],\n              [-77.758184, 39.265869],\n              [-77.758382, 39.265094],\n              [-77.758467, 39.264961],\n              [-77.758654, 39.264666],\n              [-77.759073, 39.264263],\n              [-77.759591, 39.263767],\n              [-77.759624, 39.26375],\n              [-77.759948, 39.263591],\n              [-77.760905, 39.263769],\n              [-77.761095, 39.263804],\n              [-77.761144, 39.263738],\n              [-77.761219, 39.263729],\n              [-77.76177, 39.263039],\n              [-77.761828, 39.262822],\n              [-77.761928, 39.262597],\n              [-77.762172, 39.26205],\n              [-77.762179, 39.262028],\n              [-77.762311, 39.261611],\n              [-77.762369, 39.261379],\n              [-77.762458, 39.261283],\n              [-77.762583, 39.261219],\n              [-77.762843, 39.261002],\n              [-77.762909, 39.260947],\n              [-77.763114, 39.26044],\n              [-77.763115, 39.260362],\n              [-77.763117, 39.260138],\n              [-77.762963, 39.259839],\n              [-77.762872, 39.259667],\n              [-77.762873, 39.259583],\n              [-77.762763, 39.259236],\n              [-77.762761, 39.259196],\n              [-77.762906, 39.258424],\n              [-77.76293, 39.258281],\n              [-77.763436, 39.258078],\n              [-77.763667, 39.257986],\n              [-77.763733, 39.257959],\n              [-77.763875, 39.257956],\n              [-77.764347, 39.257946],\n              [-77.765158, 39.257929],\n              [-77.765217, 39.257928],\n              [-77.765684, 39.257786],\n              [-77.765829, 39.257775],\n              [-77.766399, 39.257729],\n              [-77.767282, 39.257816],\n              [-77.767626, 39.257786],\n              [-77.767882, 39.25765],\n              [-77.767999, 39.257588],\n              [-77.768326, 39.257259],\n              [-77.768376, 39.257197],\n              [-77.768756, 39.256447],\n              [-77.768961, 39.256466],\n              [-77.768986, 39.256468],\n              [-77.769325, 39.256499],\n              [-77.76986, 39.256415],\n              [-77.770104, 39.256377],\n              [-77.770263, 39.255992],\n              [-77.770283, 39.255985],\n              [-77.770367, 39.255752],\n              [-77.770671, 39.25527],\n              [-77.770666, 39.255047],\n              [-77.770663, 39.254018],\n              [-77.770835, 39.253748],\n              [-77.770881, 39.253678],\n              [-77.77084, 39.253621],\n              [-77.770596, 39.25328],\n              [-77.770596, 39.252235],\n              [-77.770625, 39.251669],\n              [-77.770668, 39.25082],\n              [-77.770676, 39.250772],\n              [-77.770878, 39.249768],\n              [-77.770939, 39.249454],\n              [-77.769801, 39.249459],\n              [-77.768544, 39.249551],\n              [-77.767278, 39.249759],\n              [-77.767229, 39.249017],\n              [-77.767382, 39.24866],\n              [-77.767814, 39.24809],\n              [-77.768233, 39.246707],\n              [-77.768052, 39.245549],\n              [-77.76878, 39.24494],\n              [-77.768923, 39.24463],\n              [-77.769279, 39.243908],\n              [-77.76993, 39.242944],\n              [-77.769859, 39.242176],\n              [-77.770187, 39.241188],\n              [-77.770219, 39.241069],\n              [-77.770235, 39.240884],\n              [-77.770246, 39.24056],\n              [-77.770262, 39.240086],\n              [-77.770423, 39.239328],\n              [-77.770469, 39.239112],\n              [-77.770978, 39.238242],\n              [-77.771119, 39.238055],\n              [-77.771126, 39.238025],\n              [-77.770984, 39.237482],\n              [-77.771367, 39.236501],\n              [-77.772406, 39.235816],\n              [-77.773229, 39.235055],\n              [-77.773261, 39.235025],\n              [-77.773662, 39.2345],\n              [-77.773682, 39.234474],\n              [-77.773682, 39.234443],\n              [-77.773691, 39.233937],\n              [-77.773695, 39.233739],\n              [-77.77392, 39.233644],\n              [-77.774163, 39.233543],\n              [-77.774782, 39.233025],\n              [-77.774943, 39.23273],\n              [-77.775211, 39.232476],\n              [-77.775774, 39.232197],\n              [-77.77587, 39.232149],\n              [-77.776677, 39.231324],\n              [-77.777118, 39.23054],\n              [-77.777129, 39.230509],\n              [-77.777405, 39.229747],\n              [-77.777418, 39.22971],\n              [-77.777587, 39.229748],\n              [-77.777708, 39.229773],\n              [-77.777996, 39.229839],\n              [-77.778895, 39.229927],\n              [-77.779245, 39.229758],\n              [-77.779337, 39.229713],\n              [-77.779863, 39.229331],\n              [-77.780629, 39.228914],\n              [-77.780801, 39.228729],\n              [-77.781383, 39.228017],\n              [-77.78161, 39.227617],\n              [-77.781665, 39.227506],\n              [-77.781641, 39.2272],\n              [-77.781321, 39.226869],\n              [-77.781257, 39.226808],\n              [-77.781299, 39.226754],\n              [-77.781765, 39.22616],\n              [-77.782357, 39.225406],\n              [-77.783018, 39.224881],\n              [-77.783537, 39.224197],\n              [-77.783642, 39.224089],\n              [-77.784169, 39.223533],\n              [-77.78437, 39.22325],\n              [-77.784388, 39.223225],\n              [-77.784702, 39.222784],\n              [-77.78586, 39.222061],\n              [-77.786324, 39.221815],\n              [-77.78647, 39.221512],\n              [-77.786505, 39.22148],\n              [-77.786495, 39.221443],\n              [-77.786448, 39.22141],\n              [-77.786231, 39.221268],\n              [-77.786252, 39.221162],\n              [-77.786286, 39.220994],\n              [-77.786163, 39.220478],\n              [-77.786105, 39.220326],\n              [-77.785979, 39.21999],\n              [-77.785962, 39.219881],\n              [-77.785929, 39.219674],\n              [-77.786131, 39.219503],\n              [-77.786219, 39.219443],\n              [-77.786273, 39.219348],\n              [-77.786494, 39.218957],\n              [-77.786785, 39.218604],\n              [-77.787477, 39.217485],\n              [-77.787715, 39.217023],\n              [-77.787918, 39.216771],\n              [-77.788105, 39.216469],\n              [-77.788312, 39.216176],\n              [-77.788472, 39.215794],\n              [-77.788596, 39.215487],\n              [-77.788843, 39.214873],\n              [-77.788982, 39.214788],\n              [-77.789561, 39.214348],\n              [-77.790494, 39.213553],\n              [-77.791535, 39.212534],\n              [-77.791973, 39.212261],\n              [-77.792665, 39.211396],\n              [-77.793115, 39.210303],\n              [-77.792988, 39.210229],\n              [-77.792805, 39.209697],\n              [-77.792785, 39.209637],\n              [-77.792634, 39.209006],\n              [-77.792921, 39.208638],\n              [-77.792996, 39.208541],\n              [-77.793392, 39.208184],\n              [-77.793603, 39.207631],\n              [-77.793958, 39.207098],\n              [-77.794291, 39.206573],\n              [-77.794665, 39.205996],\n              [-77.794827, 39.205729],\n              [-77.79496, 39.205511],\n              [-77.795305, 39.204795],\n              [-77.79573, 39.204145],\n              [-77.796182, 39.203477],\n              [-77.79668, 39.202521],\n              [-77.796773, 39.202342],\n              [-77.796816, 39.202258],\n              [-77.797027, 39.202067],\n              [-77.797595, 39.201553],\n              [-77.798159, 39.200711],\n              [-77.798377, 39.19924],\n              [-77.798382, 39.199181],\n              [-77.798447, 39.198878],\n              [-77.798494, 39.198317],\n              [-77.798634, 39.197884],\n              [-77.798645, 39.197489],\n              [-77.798249, 39.196536],\n              [-77.79825, 39.196523],\n              [-77.798261, 39.196146],\n              [-77.798273, 39.195756],\n              [-77.798551, 39.194881],\n              [-77.798309, 39.194609],\n              [-77.797839, 39.194079],\n              [-77.798028, 39.193445],\n              [-77.79804, 39.193368],\n              [-77.798146, 39.192659],\n              [-77.798166, 39.192526],\n              [-77.798508, 39.192271],\n              [-77.798886, 39.191989],\n              [-77.799145, 39.191798],\n              [-77.799436, 39.19116],\n              [-77.799641, 39.19052],\n              [-77.799778, 39.190189],\n              [-77.799897, 39.189901],\n              [-77.800212, 39.188829],\n              [-77.800214, 39.188821],\n              [-77.800287, 39.188573],\n              [-77.800292, 39.188558],\n              [-77.800546, 39.188244],\n              [-77.800728, 39.188018],\n              [-77.801117, 39.187794],\n              [-77.801108, 39.187404],\n              [-77.801103, 39.18716],\n              [-77.801098, 39.18691],\n              [-77.80128, 39.186376],\n              [-77.801306, 39.186303],\n              [-77.801342, 39.185991],\n              [-77.801345, 39.185968],\n              [-77.801409, 39.185413],\n              [-77.801716, 39.185044],\n              [-77.801801, 39.184942],\n              [-77.801932, 39.184784],\n              [-77.801996, 39.184656],\n              [-77.802111, 39.184424],\n              [-77.80232, 39.184112],\n              [-77.802334, 39.184075],\n              [-77.802651, 39.183579],\n              [-77.802765, 39.183259],\n              [-77.802814, 39.183097],\n              [-77.802931, 39.182712],\n              [-77.803063, 39.1824],\n              [-77.803104, 39.182301],\n              [-77.803097, 39.182233],\n              [-77.803091, 39.182171],\n              [-77.803072, 39.181986],\n              [-77.80346, 39.18089],\n              [-77.803639, 39.180657],\n              [-77.804113, 39.180313],\n              [-77.80473, 39.179334],\n              [-77.804907, 39.179059],\n              [-77.804665, 39.17891],\n              [-77.804093, 39.17856],\n              [-77.804253, 39.178121],\n              [-77.804453, 39.177833],\n              [-77.804472, 39.177721],\n              [-77.804895, 39.177102],\n              [-77.804973, 39.176988],\n              [-77.804616, 39.176644],\n              [-77.80451, 39.176204],\n              [-77.805054, 39.175441],\n              [-77.805146, 39.175003],\n              [-77.805342, 39.174074],\n              [-77.805877, 39.173125],\n              [-77.806051, 39.171745],\n              [-77.806589, 39.171101],\n              [-77.80822, 39.17007],\n              [-77.808587, 39.16975],\n              [-77.80904, 39.16935],\n              [-77.809294, 39.168926],\n              [-77.809736, 39.168187],\n              [-77.809817, 39.168051],\n              [-77.810122, 39.167682],\n              [-77.810174, 39.167619],\n              [-77.810858, 39.167275],\n              [-77.811062, 39.167236],\n              [-77.811212, 39.167208],\n              [-77.811442, 39.167053],\n              [-77.811497, 39.166875],\n              [-77.81144, 39.166592],\n              [-77.811673, 39.166075],\n              [-77.811872, 39.165844],\n              [-77.812356, 39.165284],\n              [-77.812465, 39.165027],\n              [-77.812652, 39.16456],\n              [-77.812615, 39.164232],\n              [-77.813372, 39.164335],\n              [-77.813628, 39.164426],\n              [-77.81392, 39.164006],\n              [-77.814276, 39.163135],\n              [-77.814332, 39.162998],\n              [-77.814466, 39.162782],\n              [-77.814715, 39.162388],\n              [-77.815075, 39.161685],\n              [-77.815494, 39.160774],\n              [-77.81603, 39.159694],\n              [-77.816058, 39.159551],\n              [-77.816147, 39.159366],\n              [-77.816308, 39.158694],\n              [-77.816785, 39.157851],\n              [-77.817236, 39.157153],\n              [-77.817358, 39.157122],\n              [-77.817605, 39.157059],\n              [-77.81777, 39.156741],\n              [-77.818357, 39.156049],\n              [-77.818261, 39.155851],\n              [-77.818383, 39.155744],\n              [-77.818661, 39.155514],\n              [-77.818617, 39.155242],\n              [-77.818575, 39.155105],\n              [-77.81899, 39.154514],\n              [-77.81965, 39.153943],\n              [-77.819851, 39.153546],\n              [-77.820482, 39.153127],\n              [-77.820525, 39.153099],\n              [-77.821372, 39.152359],\n              [-77.82155, 39.152041],\n              [-77.821627, 39.151876],\n              [-77.821754, 39.150462],\n              [-77.821774, 39.149987],\n              [-77.821795, 39.149601],\n              [-77.82228, 39.149223],\n              [-77.822827, 39.148021],\n              [-77.823017, 39.147701],\n              [-77.823142, 39.147508],\n              [-77.822464, 39.147146],\n              [-77.822565, 39.14689],\n              [-77.822609, 39.146464],\n              [-77.822957, 39.145942],\n              [-77.823264, 39.145727],\n              [-77.823375, 39.145603],\n              [-77.823195, 39.145097],\n              [-77.823157, 39.144445],\n              [-77.822584, 39.144],\n              [-77.822072, 39.142718],\n              [-77.821947, 39.141717],\n              [-77.82192, 39.141136],\n              [-77.822103, 39.140113],\n              [-77.822203, 39.140009],\n              [-77.822714, 39.139478],\n              [-77.823372, 39.138999],\n              [-77.823592, 39.138848],\n              [-77.823746, 39.138692],\n              [-77.823948, 39.138512],\n              [-77.824377, 39.138003],\n              [-77.824507, 39.13721],\n              [-77.824513, 39.1372],\n              [-77.824528, 39.137116],\n              [-77.824734, 39.136727],\n              [-77.824694, 39.136636],\n              [-77.82449, 39.136157],\n              [-77.825161, 39.135383],\n              [-77.825657, 39.135676],\n              [-77.825774, 39.135746],\n              [-77.826233, 39.135694],\n              [-77.826851, 39.135505],\n              [-77.827162, 39.135268],\n              [-77.827191, 39.135243],\n              [-77.827547, 39.134686],\n              [-77.827682, 39.134409],\n              [-77.827853, 39.134062],\n              [-77.82791, 39.133593],\n              [-77.827986, 39.132986],\n              [-77.828098, 39.132782],\n              [-77.828265, 39.13248],\n              [-77.828267, 39.13248],\n              [-77.828301, 39.132434],\n              [-77.828456, 39.13254],\n              [-77.828666, 39.132684],\n              [-77.828678, 39.132692],\n              [-77.828793, 39.132771],\n              [-77.828808, 39.132781],\n              [-77.830003, 39.133549],\n              [-77.830016, 39.133558],\n              [-77.833634, 39.135886],\n              [-77.833638, 39.135889],\n              [-77.834845, 39.136666],\n              [-77.835225, 39.13691],\n              [-77.836362, 39.137641],\n              [-77.836363, 39.137642],\n              [-77.836741, 39.137886],\n              [-77.838498, 39.139016],\n              [-77.839102, 39.139405],\n              [-77.843771, 39.142409],\n              [-77.845529, 39.14354],\n              [-77.846131, 39.143927],\n              [-77.846182, 39.14396],\n              [-77.847939, 39.14509],\n              [-77.848542, 39.145478],\n              [-77.84909, 39.145831],\n              [-77.850056, 39.146452],\n              [-77.854597, 39.149373],\n              [-77.85611, 39.150346],\n              [-77.856929, 39.150875],\n              [-77.859386, 39.15246],\n              [-77.859387, 39.152461],\n              [-77.860205, 39.152989],\n              [-77.86034, 39.153076],\n              [-77.860343, 39.153078],\n              [-77.860743, 39.153336],\n              [-77.860757, 39.153345],\n              [-77.860877, 39.153422],\n              [-77.860896, 39.153435],\n              [-77.860906, 39.153441],\n              [-77.860916, 39.153446],\n              [-77.860921, 39.15345],\n              [-77.860925, 39.153452],\n              [-77.860934, 39.153458],\n              [-77.860938, 39.153461],\n              [-77.860943, 39.153464],\n              [-77.861019, 39.153513],\n              [-77.861244, 39.15366],\n              [-77.861319, 39.153708],\n              [-77.86437, 39.155664],\n              [-77.873524, 39.161532],\n              [-77.874699, 39.162285],\n              [-77.876559, 39.163512],\n              [-77.877425, 39.164072],\n              [-77.879696, 39.165539],\n              [-77.880026, 39.165752],\n              [-77.880893, 39.166312],\n              [-77.880991, 39.166376],\n              [-77.881429, 39.166659],\n              [-77.883041, 39.167699],\n              [-77.883548, 39.168027],\n              [-77.883578, 39.168047],\n              [-77.883993, 39.168315],\n              [-77.885241, 39.169121],\n              [-77.88551, 39.169295],\n              [-77.885657, 39.16939],\n              [-77.885722, 39.169432],\n              [-77.88592, 39.169559],\n              [-77.885986, 39.169602],\n              [-77.887256, 39.170423],\n              [-77.889104, 39.171617],\n              [-77.891068, 39.172885],\n              [-77.89231, 39.173688],\n              [-77.892339, 39.173707],\n              [-77.892387, 39.173738],\n              [-77.892516, 39.173822],\n              [-77.892534, 39.173834],\n              [-77.892584, 39.173866],\n              [-77.897053, 39.176759],\n              [-77.897137, 39.176814],\n              [-77.91046, 39.185441],\n              [-77.910792, 39.185656],\n              [-77.914929, 39.188335],\n              [-77.914993, 39.188376],\n              [-77.915007, 39.188385],\n              [-77.915026, 39.188397],\n              [-77.915242, 39.188538],\n              [-77.915321, 39.188589],\n              [-77.915344, 39.188604],\n              [-77.916142, 39.189111],\n              [-77.91617, 39.189129],\n              [-77.918605, 39.190678],\n              [-77.918647, 39.190705],\n              [-77.919426, 39.191201],\n              [-77.919472, 39.19123],\n              [-77.92038, 39.191819],\n              [-77.920405, 39.191835],\n              [-77.923101, 39.193585],\n              [-77.923342, 39.193741],\n              [-77.924008, 39.194173],\n              [-77.924322, 39.194376],\n              [-77.924837, 39.19471],\n              [-77.925087, 39.194872],\n              [-77.92732, 39.196321],\n              [-77.927382, 39.196361],\n              [-77.928147, 39.196858],\n              [-77.929704, 39.197868],\n              [-77.934375, 39.200899],\n              [-77.935931, 39.201909],\n              [-77.935958, 39.201927],\n              [-77.936037, 39.20198],\n              [-77.936064, 39.201998],\n              [-77.937026, 39.202622],\n              [-77.937055, 39.202641],\n              [-77.939913, 39.204493],\n              [-77.940028, 39.204568],\n              [-77.940876, 39.205118],\n              [-77.941018, 39.20521],\n              [-77.941213, 39.205337],\n              [-77.941328, 39.205411],\n              [-77.942227, 39.205994],\n              [-77.942257, 39.206014],\n              [-77.942565, 39.206214],\n              [-77.942804, 39.20637],\n              [-77.942806, 39.206371],\n              [-77.943525, 39.206837],\n              [-77.943764, 39.206992],\n              [-77.943982, 39.207133],\n              [-77.944636, 39.207558],\n              [-77.944855, 39.2077],\n              [-77.94651, 39.208774],\n              [-77.946979, 39.209078],\n              [-77.953351, 39.213212],\n              [-77.954747, 39.214118],\n              [-77.955381, 39.21453],\n              [-77.955476, 39.214591],\n              [-77.955873, 39.214849],\n              [-77.957067, 39.215623],\n              [-77.957465, 39.215882],\n              [-77.957493, 39.2159],\n              [-77.957935, 39.216185],\n              [-77.959348, 39.217095],\n              [-77.959427, 39.217146],\n              [-77.959819, 39.217399],\n              [-77.961315, 39.218363],\n              [-77.965227, 39.220884],\n              [-77.965803, 39.221255],\n              [-77.96716, 39.22213],\n              [-77.9673, 39.22222],\n              [-77.968721, 39.223136],\n              [-77.971242, 39.224761],\n              [-77.972984, 39.225884],\n              [-77.974391, 39.226791],\n              [-77.974406, 39.226801],\n              [-77.975542, 39.227533],\n              [-77.975827, 39.227717],\n              [-77.975851, 39.227733],\n              [-77.9766, 39.228215],\n              [-77.97892, 39.22971],\n              [-77.979694, 39.230209],\n              [-77.981268, 39.231224],\n              [-77.983487, 39.232654],\n              [-77.985993, 39.234269],\n              [-77.987568, 39.235284],\n              [-77.987596, 39.235302],\n              [-77.987679, 39.235356],\n              [-77.987706, 39.235373],\n              [-77.987883, 39.235487],\n              [-77.988417, 39.235831],\n              [-77.988421, 39.235834],\n              [-77.988595, 39.235946],\n              [-77.988917, 39.236153],\n              [-77.989883, 39.236776],\n              [-77.990206, 39.236984],\n              [-77.990418, 39.237121],\n              [-77.990564, 39.237215],\n              [-77.991057, 39.237532],\n              [-77.991271, 39.23767],\n              [-77.992961, 39.238767],\n              [-77.992967, 39.238771],\n              [-77.995327, 39.240302],\n              [-77.998031, 39.242057],\n              [-77.998033, 39.242058],\n              [-77.999722, 39.243154],\n              [-78.001105, 39.244001],\n              [-78.005252, 39.24654],\n              [-78.006634, 39.247386],\n              [-78.006696, 39.247422],\n              [-78.006803, 39.247484],\n              [-78.006826, 39.247498],\n              [-78.006878, 39.247532],\n              [-78.006938, 39.24757],\n              [-78.007294, 39.247808],\n              [-78.007458, 39.247918],\n              [-78.00923, 39.2491],\n              [-78.009643, 39.249376],\n              [-78.010611, 39.250024],\n              [-78.014384, 39.252438],\n              [-78.016171, 39.253573],\n              [-78.016275, 39.253639],\n              [-78.017432, 39.254375],\n              [-78.018484, 39.255063],\n              [-78.018858, 39.255307],\n              [-78.019977, 39.256038],\n              [-78.019978, 39.256039],\n              [-78.02035, 39.256283],\n              [-78.022217, 39.257502],\n              [-78.022742, 39.257845],\n              [-78.027796, 39.261191],\n              [-78.029654, 39.262422],\n              [-78.029846, 39.262549],\n              [-78.03042, 39.26293],\n              [-78.030611, 39.263056],\n              [-78.03105, 39.263323],\n              [-78.031073, 39.263337],\n              [-78.032368, 39.264123],\n              [-78.03246, 39.264179],\n              [-78.032806, 39.264389],\n              [-78.032843, 39.264411],\n              [-78.032925, 39.264457],\n              [-78.032929, 39.264459],\n              [-78.032943, 39.264467],\n              [-78.032948, 39.26447],\n              [-78.032974, 39.264485],\n              [-78.032997, 39.264498],\n              [-78.033011, 39.264506],\n              [-78.033051, 39.264528],\n              [-78.033076, 39.264542],\n              [-78.033143, 39.26459],\n              [-78.033145, 39.264591],\n              [-78.033193, 39.26462],\n              [-78.033317, 39.264667],\n              [-78.036261, 39.266521],\n              [-78.036321, 39.266559],\n              [-78.038647, 39.268013],\n              [-78.038664, 39.268024],\n              [-78.0394, 39.268485],\n              [-78.040396, 39.269106],\n              [-78.040523, 39.269185],\n              [-78.040715, 39.269304],\n              [-78.040905, 39.269423],\n              [-78.041033, 39.269503],\n              [-78.043081, 39.270779],\n              [-78.049225, 39.27461],\n              [-78.050902, 39.275656],\n              [-78.051274, 39.275888],\n              [-78.0514, 39.275966],\n              [-78.054771, 39.278069],\n              [-78.057616, 39.279874],\n              [-78.059256, 39.28094],\n              [-78.061052, 39.282107],\n              [-78.06763, 39.28638],\n              [-78.067733, 39.286447],\n              [-78.067877, 39.28654],\n              [-78.067884, 39.286544],\n              [-78.069086, 39.287325],\n              [-78.069514, 39.287603],\n              [-78.074421, 39.290791],\n              [-78.078997, 39.293764],\n              [-78.079782, 39.294261],\n              [-78.079953, 39.294369],\n              [-78.079956, 39.294371],\n              [-78.080238, 39.294549],\n              [-78.081085, 39.295084],\n              [-78.081317, 39.295231],\n              [-78.081368, 39.295263],\n              [-78.081613, 39.295418],\n              [-78.082498, 39.295978],\n              [-78.093595, 39.303101],\n              [-78.094082, 39.303402],\n              [-78.10015, 39.307155],\n              [-78.100165, 39.307164],\n              [-78.100266, 39.307226],\n              [-78.103352, 39.309135],\n              [-78.10428, 39.309709],\n              [-78.1077, 39.31182],\n              [-78.10828, 39.312178],\n              [-78.108309, 39.312195],\n              [-78.108749, 39.312468],\n              [-78.113043, 39.315388],\n              [-78.117235, 39.318235],\n              [-78.123758, 39.322655],\n              [-78.123809, 39.322683],\n              [-78.123811, 39.322685],\n              [-78.124726, 39.323216],\n              [-78.135, 39.329918],\n              [-78.135926, 39.330524],\n              [-78.135939, 39.330526],\n              [-78.136371, 39.330805],\n              [-78.137667, 39.331644],\n              [-78.138099, 39.331924],\n              [-78.13848, 39.332171],\n              [-78.13884, 39.332404],\n              [-78.139624, 39.332912],\n              [-78.140006, 39.333159],\n              [-78.140923, 39.333753],\n              [-78.14135, 39.333991],\n              [-78.143173, 39.335008],\n              [-78.143785, 39.33535],\n              [-78.146082, 39.336632],\n              [-78.148123, 39.337771],\n              [-78.150697, 39.339336],\n              [-78.154172, 39.341284],\n              [-78.156104, 39.342368],\n              [-78.156965, 39.342792],\n              [-78.157018, 39.342818],\n              [-78.158196, 39.343399],\n              [-78.158714, 39.343775],\n              [-78.159246, 39.344162],\n              [-78.161374, 39.345714],\n              [-78.162602, 39.346609],\n              [-78.164446, 39.347953],\n              [-78.166289, 39.349296],\n              [-78.167518, 39.350192],\n              [-78.168248, 39.350723],\n              [-78.168281, 39.350747],\n              [-78.168814, 39.351136],\n              [-78.17057, 39.352415],\n              [-78.171334, 39.352972],\n              [-78.171343, 39.352979],\n              [-78.171373, 39.353],\n              [-78.171383, 39.353008],\n              [-78.171398, 39.353018],\n              [-78.171458, 39.353062],\n              [-78.171573, 39.353146],\n              [-78.171921, 39.353399],\n              [-78.172037, 39.353484],\n              [-78.176464, 39.356437],\n              [-78.181312, 39.359876],\n              [-78.184157, 39.361809],\n              [-78.184165, 39.361815],\n              [-78.186504, 39.363406],\n              [-78.187373, 39.363997],\n              [-78.188461, 39.364659],\n              [-78.192675, 39.367226],\n              [-78.194411, 39.368302],\n              [-78.196388, 39.369527],\n              [-78.196688, 39.369713],\n              [-78.197542, 39.370243],\n              [-78.197589, 39.370272],\n              [-78.197598, 39.370278],\n              [-78.197888, 39.370462],\n              [-78.201859, 39.372978],\n              [-78.205404, 39.375106],\n              [-78.206415, 39.375778],\n              [-78.206447, 39.375801],\n              [-78.208286, 39.377073],\n              [-78.213804, 39.38089],\n              [-78.215644, 39.382163],\n              [-78.216498, 39.382753],\n              [-78.219061, 39.384526],\n              [-78.219762, 39.385011],\n              [-78.219915, 39.385118],\n              [-78.219972, 39.385157],\n              [-78.220144, 39.385275],\n              [-78.220202, 39.385315],\n              [-78.220214, 39.385323],\n              [-78.220217, 39.385326],\n              [-78.228769, 39.391241],\n              [-78.233361, 39.394418],\n              [-78.236217, 39.396394],\n              [-78.237945, 39.397589],\n              [-78.239456, 39.398633],\n              [-78.244818, 39.402342],\n              [-78.244968, 39.402446],\n              [-78.244981, 39.402454],\n              [-78.245366, 39.402721],\n              [-78.24548, 39.402785],\n              [-78.24973, 39.405161],\n              [-78.25852, 39.411333],\n              [-78.26268, 39.414255],\n              [-78.262788, 39.414331],\n              [-78.262818, 39.414348],\n              [-78.271916, 39.419557],\n              [-78.271922, 39.419561],\n              [-78.27423, 39.420882],\n              [-78.274347, 39.420948],\n              [-78.274367, 39.42096],\n              [-78.286943, 39.428156],\n              [-78.287983, 39.428763],\n              [-78.289236, 39.429541],\n              [-78.289313, 39.429588],\n              [-78.292623, 39.431645],\n              [-78.299964, 39.436206],\n              [-78.300161, 39.436329],\n              [-78.300168, 39.436333],\n              [-78.303299, 39.438252],\n              [-78.303624, 39.438452],\n              [-78.306111, 39.439976],\n              [-78.307207, 39.440649],\n              [-78.307215, 39.440654],\n              [-78.307451, 39.440799],\n              [-78.307453, 39.4408],\n              [-78.30855, 39.441494],\n              [-78.312969, 39.444302],\n              [-78.312973, 39.444304],\n              [-78.315385, 39.445839],\n              [-78.319451, 39.448427],\n              [-78.322212, 39.450184],\n              [-78.322445, 39.450333],\n              [-78.330313, 39.45534],\n              [-78.337183, 39.459714],\n              [-78.338225, 39.460377],\n              [-78.339533, 39.46122],\n              [-78.339883, 39.461445],\n              [-78.34084, 39.462063],\n              [-78.343697, 39.463905],\n              [-78.344395, 39.464356],\n              [-78.344554, 39.46445],\n              [-78.344575, 39.464462],\n              [-78.345455, 39.464979],\n              [-78.345599, 39.465069],\n              [-78.347039, 39.465987],\n              [-78.34709, 39.46602],\n              [-78.347428, 39.465365],\n              [-78.347698, 39.464976],\n              [-78.347925, 39.464458],\n              [-78.348306, 39.463907],\n              [-78.348918, 39.463072],\n              [-78.349268, 39.462521],\n              [-78.349479, 39.462213],\n              [-78.34968, 39.461954],\n              [-78.349801, 39.461815],\n              [-78.349571, 39.461697],\n              [-78.349097, 39.461767],\n              [-78.34733, 39.460716],\n              [-78.34637, 39.460227],\n              [-78.345455, 39.459915],\n              [-78.345146, 39.459492],\n              [-78.345084, 39.458495],\n              [-78.345531, 39.456991],\n              [-78.345606, 39.45674],\n              [-78.345846, 39.455937],\n              [-78.345587, 39.454886],\n              [-78.345826, 39.453507],\n              [-78.346643, 39.4516],\n              [-78.346965, 39.450687],\n              [-78.347049, 39.450244],\n              [-78.347122, 39.449595],\n              [-78.347127, 39.449546],\n              [-78.347287, 39.448099],\n              [-78.347289, 39.448085],\n              [-78.347336, 39.447667],\n              [-78.346744, 39.446705],\n              [-78.346741, 39.4467],\n              [-78.346704, 39.446644],\n              [-78.346226, 39.445949],\n              [-78.346064, 39.445621],\n              [-78.346363, 39.44409],\n              [-78.346549, 39.442624],\n              [-78.347776, 39.440591],\n              [-78.350124, 39.438845],\n              [-78.351081, 39.438215],\n              [-78.35236, 39.437646],\n              [-78.353067, 39.437226],\n              [-78.353104, 39.437203],\n              [-78.35323, 39.4368],\n              [-78.35288, 39.436353],\n              [-78.352529, 39.435962],\n              [-78.351305, 39.4346],\n              [-78.350391, 39.433331],\n              [-78.349439, 39.432407],\n              [-78.349063, 39.432042],\n              [-78.347945, 39.430887],\n              [-78.347841, 39.429859],\n              [-78.347704, 39.428726],\n              [-78.347397, 39.428367],\n              [-78.347039, 39.428041],\n              [-78.346721, 39.427626],\n              [-78.347026, 39.426931],\n              [-78.34759, 39.426265],\n              [-78.347902, 39.425377],\n              [-78.348357, 39.424439],\n              [-78.349338, 39.423503],\n              [-78.350114, 39.42257],\n              [-78.350597, 39.421527],\n              [-78.351239, 39.420603],\n              [-78.352347, 39.41981],\n              [-78.353384, 39.419091],\n              [-78.355186, 39.417929],\n              [-78.356547, 39.417343],\n              [-78.356941, 39.416937],\n              [-78.357027, 39.416646],\n              [-78.356771, 39.416247],\n              [-78.35663, 39.41591],\n              [-78.356455, 39.415438],\n              [-78.357203, 39.414689],\n              [-78.358375, 39.41351],\n              [-78.359355, 39.412542],\n              [-78.359517, 39.411905],\n              [-78.359854, 39.410735],\n              [-78.359921, 39.409036],\n              [-78.358797, 39.405639],\n              [-78.357952, 39.4042],\n              [-78.357199, 39.403733],\n              [-78.356251, 39.403309],\n              [-78.355791, 39.402517],\n              [-78.35434, 39.401246],\n              [-78.35295, 39.40036],\n              [-78.352293, 39.399818],\n              [-78.35205, 39.399618],\n              [-78.35106, 39.398803],\n              [-78.350596, 39.398326],\n              [-78.349887, 39.397947],\n              [-78.349439, 39.39726],\n              [-78.349301, 39.396578],\n              [-78.349616, 39.393887],\n              [-78.350017, 39.392869],\n              [-78.350773, 39.392025],\n              [-78.351214, 39.391408],\n              [-78.350927, 39.390993],\n              [-78.350033, 39.390665],\n              [-78.347884, 39.390511],\n              [-78.346678, 39.390564],\n              [-78.345879, 39.390299],\n              [-78.345221, 39.389454],\n              [-78.344678, 39.389114],\n              [-78.343414, 39.388846],\n              [-78.343217, 39.388815],\n              [-78.344308, 39.387187],\n              [-78.345596, 39.385162],\n              [-78.346878, 39.383314],\n              [-78.348002, 39.381371],\n              [-78.350111, 39.379152],\n              [-78.351101, 39.377669],\n              [-78.351672, 39.376375],\n              [-78.3521, 39.375106],\n              [-78.353083, 39.374],\n              [-78.354555, 39.372057],\n              [-78.35484, 39.371624],\n              [-78.355365, 39.370993],\n              [-78.356296, 39.370235],\n              [-78.356656, 39.369506],\n              [-78.357715, 39.368395],\n              [-78.35837, 39.368142],\n              [-78.35879, 39.367622],\n              [-78.360548, 39.365214],\n              [-78.36165, 39.363911],\n              [-78.362635, 39.362896],\n              [-78.364048, 39.361538],\n              [-78.365676, 39.360407],\n              [-78.366472, 39.359625],\n              [-78.36687, 39.359298],\n              [-78.365539, 39.358895],\n              [-78.364538, 39.358557],\n              [-78.36433, 39.358483],\n              [-78.362545, 39.357884],\n              [-78.362431, 39.357846],\n              [-78.362407, 39.357842],\n              [-78.361441, 39.357689],\n              [-78.361052, 39.357631],\n              [-78.361021, 39.357626],\n              [-78.360537, 39.357545],\n              [-78.36, 39.357458],\n              [-78.359928, 39.357446],\n              [-78.359425, 39.357362],\n              [-78.359419, 39.357361],\n              [-78.358967, 39.357276],\n              [-78.357962, 39.357051],\n              [-78.357868, 39.357027],\n              [-78.357524, 39.356941],\n              [-78.356971, 39.356791],\n              [-78.356873, 39.356764],\n              [-78.355914, 39.356492],\n              [-78.35562, 39.356412],\n              [-78.35528, 39.356307],\n              [-78.354863, 39.35619],\n              [-78.354415, 39.356057],\n              [-78.353549, 39.35581],\n              [-78.353057, 39.355665],\n              [-78.352944, 39.355633],\n              [-78.351823, 39.355322],\n              [-78.351394, 39.35521],\n              [-78.350912, 39.3551],\n              [-78.350807, 39.355076],\n              [-78.350629, 39.355035],\n              [-78.349906, 39.354884],\n              [-78.349898, 39.354883],\n              [-78.349473, 39.354805],\n              [-78.349053, 39.35474],\n              [-78.34893, 39.354721],\n              [-78.34872, 39.354694],\n              [-78.348043, 39.354605],\n              [-78.346974, 39.354481],\n              [-78.346229, 39.354383],\n              [-78.344769, 39.354207],\n              [-78.343785, 39.354094],\n              [-78.342439, 39.35393],\n              [-78.342313, 39.353915],\n              [-78.341805, 39.353856],\n              [-78.341797, 39.353855],\n              [-78.341465, 39.353812],\n              [-78.341356, 39.353797],\n              [-78.341012, 39.353748],\n              [-78.340673, 39.353689],\n              [-78.340418, 39.353636],\n              [-78.340629, 39.353174],\n              [-78.340875, 39.352532],\n              [-78.340713, 39.352241],\n              [-78.340022, 39.352019],\n              [-78.339526, 39.351936],\n              [-78.339154, 39.351957],\n              [-78.339053, 39.351731],\n              [-78.33953, 39.35081],\n              [-78.339163, 39.350308],\n              [-78.338961, 39.349897],\n              [-78.339287, 39.348613],\n              [-78.340195, 39.347155],\n              [-78.340665, 39.346484],\n              [-78.341037, 39.345955],\n              [-78.341311, 39.345563],\n              [-78.341549, 39.345548],\n              [-78.341731, 39.345895],\n              [-78.341886, 39.34613],\n              [-78.342189, 39.34659],\n              [-78.342517, 39.346777],\n              [-78.343117, 39.346838],\n              [-78.343285, 39.346803],\n              [-78.343688, 39.346721],\n              [-78.344542, 39.346285],\n              [-78.345159, 39.345742],\n              [-78.346167, 39.344828],\n              [-78.34678, 39.344274],\n              [-78.347412, 39.34341],\n              [-78.347637, 39.342728],\n              [-78.34693, 39.342176],\n              [-78.346116, 39.341808],\n              [-78.345644, 39.341532],\n              [-78.345577, 39.341236],\n              [-78.345549, 39.341117],\n              [-78.345463, 39.341032],\n              [-78.346304, 39.339116],\n              [-78.346936, 39.33818],\n              [-78.347743, 39.337357],\n              [-78.348246, 39.336841],\n              [-78.348329, 39.336758],\n              [-78.348758, 39.336129],\n              [-78.348961, 39.33583],\n              [-78.349515, 39.335343],\n              [-78.350175, 39.33468],\n              [-78.35015, 39.334157],\n              [-78.350515, 39.333098],\n              [-78.351535, 39.331714],\n              [-78.351711, 39.331471],\n              [-78.35172, 39.331458],\n              [-78.352324, 39.330626],\n              [-78.352742, 39.330235],\n              [-78.353089, 39.329754],\n              [-78.353481, 39.329033],\n              [-78.353853, 39.328216],\n              [-78.353918, 39.327927],\n              [-78.354989, 39.327532],\n              [-78.355435, 39.327414],\n              [-78.355472, 39.327381],\n              [-78.355717, 39.327183],\n              [-78.355712, 39.327152],\n              [-78.355667, 39.326881],\n              [-78.35556, 39.326426],\n              [-78.355565, 39.326249],\n              [-78.355566, 39.326212],\n              [-78.355579, 39.325734],\n              [-78.355808, 39.325195],\n              [-78.35643, 39.32373],\n              [-78.356912, 39.322992],\n              [-78.357115, 39.322681],\n              [-78.357181, 39.322556],\n              [-78.357803, 39.321391],\n              [-78.358396, 39.320197],\n              [-78.358943, 39.319492],\n              [-78.359075, 39.319364],\n              [-78.3592, 39.319243],\n              [-78.359249, 39.319195],\n              [-78.359288, 39.319157],\n              [-78.359304, 39.319137],\n              [-78.359407, 39.31901],\n              [-78.359865, 39.318446],\n              [-78.359914, 39.318303],\n              [-78.359983, 39.318101],\n              [-78.360038, 39.317779],\n              [-78.360252, 39.317555],\n              [-78.360574, 39.317605],\n              [-78.361925, 39.31825],\n              [-78.361959, 39.318275],\n              [-78.362867, 39.318965],\n              [-78.363424, 39.319089],\n              [-78.364077, 39.318828],\n              [-78.36418, 39.318674],\n              [-78.364351, 39.318451],\n              [-78.36439, 39.318398],\n              [-78.364657, 39.317988],\n              [-78.364743, 39.317715],\n              [-78.364687, 39.31732],\n              [-78.364402, 39.316973],\n              [-78.364064, 39.316689],\n              [-78.363874, 39.316261],\n              [-78.363965, 39.315635],\n              [-78.364206, 39.315226],\n              [-78.364353, 39.315132],\n              [-78.365082, 39.314663],\n              [-78.365457, 39.314422],\n              [-78.365845, 39.313991],\n              [-78.366231, 39.312795],\n              [-78.366571, 39.312128],\n              [-78.366718, 39.311841],\n              [-78.366874, 39.310909],\n              [-78.367245, 39.310156],\n              [-78.367894, 39.309493],\n              [-78.369608, 39.308805],\n              [-78.370544, 39.308409],\n              [-78.371607, 39.3077],\n              [-78.374731, 39.305144],\n              [-78.375948, 39.303839],\n              [-78.376719, 39.302934],\n              [-78.377884, 39.30187],\n              [-78.37848, 39.300996],\n              [-78.378971, 39.30021],\n              [-78.379991, 39.299267],\n              [-78.380874, 39.298539],\n              [-78.380905, 39.29852],\n              [-78.380987, 39.298467],\n              [-78.382199, 39.297733],\n              [-78.383798, 39.296583],\n              [-78.385055, 39.295672],\n              [-78.385887, 39.294896],\n              [-78.386398, 39.294263],\n              [-78.386908, 39.293767],\n              [-78.387241, 39.293438],\n              [-78.387249, 39.293359],\n              [-78.387257, 39.293314],\n              [-78.387279, 39.293093],\n              [-78.38721, 39.292554],\n              [-78.387152, 39.292014],\n              [-78.387197, 39.291452],\n              [-78.387606, 39.290722],\n              [-78.388085, 39.290137],\n              [-78.388376, 39.289691],\n              [-78.388503, 39.289496],\n              [-78.388661, 39.289062],\n              [-78.388726, 39.288815],\n              [-78.388788, 39.28858],\n              [-78.389102, 39.288123],\n              [-78.389612, 39.287482],\n              [-78.389987, 39.28705],\n              [-78.390322, 39.286645],\n              [-78.390571, 39.286345],\n              [-78.390936, 39.285912],\n              [-78.391321, 39.285488],\n              [-78.391757, 39.285168],\n              [-78.392061, 39.285047],\n              [-78.392109, 39.285028],\n              [-78.39226, 39.284968],\n              [-78.392262, 39.284967],\n              [-78.392305, 39.284922],\n              [-78.392409, 39.284796],\n              [-78.392536, 39.284641],\n              [-78.392839, 39.284047],\n              [-78.392891, 39.283923],\n              [-78.392961, 39.283758],\n              [-78.393102, 39.283421],\n              [-78.393374, 39.282996],\n              [-78.393706, 39.282796],\n              [-78.394555, 39.282446],\n              [-78.395166, 39.282329],\n              [-78.395214, 39.282324],\n              [-78.395811, 39.282266],\n              [-78.395951, 39.282252],\n              [-78.396562, 39.282086],\n              [-78.397029, 39.281758],\n              [-78.397133, 39.281563],\n              [-78.397364, 39.281132],\n              [-78.397542, 39.280836],\n              [-78.397688, 39.280643],\n              [-78.397772, 39.280614],\n              [-78.397899, 39.28057],\n              [-78.397916, 39.280567],\n              [-78.39806, 39.280645],\n              [-78.398336, 39.281097],\n              [-78.398685, 39.28134],\n              [-78.399231, 39.281527],\n              [-78.399894, 39.281353],\n              [-78.400549, 39.28093],\n              [-78.401558, 39.279945],\n              [-78.402889, 39.278632],\n              [-78.40316, 39.278296],\n              [-78.403244, 39.278055],\n              [-78.402999, 39.277595],\n              [-78.402705, 39.277464],\n              [-78.402278, 39.277246],\n              [-78.402051, 39.277117],\n              [-78.401897, 39.277003],\n              [-78.401816, 39.276762],\n              [-78.402181, 39.276273],\n              [-78.402786, 39.275479],\n              [-78.403712, 39.274687],\n              [-78.404929, 39.273462],\n              [-78.406563, 39.271644],\n              [-78.407468, 39.270764],\n              [-78.407831, 39.270508],\n              [-78.407826, 39.270462],\n              [-78.407812, 39.270328],\n              [-78.407802, 39.27022],\n              [-78.40824, 39.269553],\n              [-78.408893, 39.269194],\n              [-78.409288, 39.268834],\n              [-78.409715, 39.268417],\n              [-78.409978, 39.267719],\n              [-78.410341, 39.267423],\n              [-78.41115, 39.267],\n              [-78.411504, 39.266503],\n              [-78.412191, 39.265774],\n              [-78.412886, 39.265295],\n              [-78.414207, 39.263918],\n              [-78.414564, 39.263132],\n              [-78.415031, 39.262512],\n              [-78.415811, 39.261971],\n              [-78.416456, 39.261377],\n              [-78.41648, 39.261358],\n              [-78.416498, 39.261344],\n              [-78.417016, 39.260875],\n              [-78.417299, 39.260481],\n              [-78.417798, 39.259785],\n              [-78.418166, 39.258894],\n              [-78.418416, 39.258509],\n              [-78.418977, 39.258029],\n              [-78.419425, 39.257484],\n              [-78.419169, 39.257032],\n              [-78.418677, 39.256459],\n              [-78.418658, 39.256381],\n              [-78.418587, 39.256073],\n              [-78.418092, 39.255982],\n              [-78.417597, 39.255907],\n              [-78.416753, 39.255509],\n              [-78.416123, 39.255418],\n              [-78.41563, 39.255601],\n              [-78.41559, 39.255616],\n              [-78.41544, 39.255673],\n              [-78.414634, 39.255741],\n              [-78.413151, 39.254922],\n              [-78.412504, 39.254485],\n              [-78.412176, 39.254025],\n              [-78.411661, 39.253927],\n              [-78.410785, 39.253617],\n              [-78.410035, 39.253002],\n              [-78.409593, 39.252759],\n              [-78.409119, 39.252572],\n              [-78.407663, 39.251126],\n              [-78.407231, 39.250786],\n              [-78.40682, 39.250583],\n              [-78.406399, 39.25011],\n              [-78.40571, 39.249064],\n              [-78.40496, 39.248434],\n              [-78.404323, 39.247901],\n              [-78.403923, 39.247651],\n              [-78.403462, 39.246845],\n              [-78.403011, 39.246425],\n              [-78.402438, 39.246024],\n              [-78.401716, 39.245601],\n              [-78.401222, 39.245399],\n              [-78.400555, 39.244761],\n              [-78.399856, 39.244285],\n              [-78.399846, 39.244262],\n              [-78.399788, 39.244137],\n              [-78.399672, 39.243882],\n              [-78.400819, 39.243113],\n              [-78.40211, 39.24244],\n              [-78.40335, 39.241751],\n              [-78.404217, 39.241222],\n              [-78.404623, 39.240258],\n              [-78.404516, 39.239539],\n              [-78.404509, 39.239488],\n              [-78.404503, 39.239445],\n              [-78.404556, 39.239083],\n              [-78.404615, 39.238881],\n              [-78.404644, 39.238785],\n              [-78.404671, 39.238697],\n              [-78.404868, 39.238359],\n              [-78.404983, 39.238014],\n              [-78.404985, 39.237619],\n              [-78.404811, 39.2372],\n              [-78.404515, 39.236661],\n              [-78.404348, 39.236103],\n              [-78.404332, 39.236049],\n              [-78.404228, 39.23584],\n              [-78.404251, 39.235718],\n              [-78.404242, 39.235413],\n              [-78.404572, 39.235156],\n              [-78.405079, 39.234642],\n              [-78.405258, 39.234317],\n              [-78.40533, 39.234186],\n              [-78.405764, 39.233437],\n              [-78.405909, 39.23317],\n              [-78.406034, 39.232939],\n              [-78.406076, 39.232714],\n              [-78.406118, 39.232513],\n              [-78.405728, 39.232318],\n              [-78.405462, 39.231706],\n              [-78.405588, 39.231184],\n              [-78.405602, 39.231171],\n              [-78.40594, 39.230855],\n              [-78.406704, 39.230438],\n              [-78.406982, 39.230399],\n              [-78.407117, 39.230343],\n              [-78.407354, 39.230158],\n              [-78.407769, 39.229395],\n              [-78.408246, 39.228631],\n              [-78.408681, 39.228182],\n              [-78.409106, 39.227475],\n              [-78.409871, 39.226897],\n              [-78.41046, 39.226513],\n              [-78.410594, 39.226336],\n              [-78.410575, 39.226022],\n              [-78.410648, 39.225877],\n              [-78.411485, 39.225067],\n              [-78.412117, 39.224345],\n              [-78.413049, 39.22314],\n              [-78.414424, 39.221832],\n              [-78.415282, 39.221126],\n              [-78.415644, 39.220717],\n              [-78.41579, 39.220186],\n              [-78.416683, 39.219049],\n              [-78.417243, 39.218337],\n              [-78.417893, 39.217512],\n              [-78.420551, 39.214806],\n              [-78.420934, 39.214642],\n              [-78.420943, 39.214638],\n              [-78.42109, 39.214489],\n              [-78.421326, 39.214245],\n              [-78.422164, 39.213281],\n              [-78.423021, 39.212583],\n              [-78.423765, 39.21211],\n              [-78.423971, 39.212057],\n              [-78.424462, 39.211811],\n              [-78.424487, 39.211789],\n              [-78.424532, 39.211749],\n              [-78.424609, 39.211681],\n              [-78.425385, 39.210993],\n              [-78.425981, 39.21045],\n              [-78.426476, 39.210008],\n              [-78.426607, 39.209892],\n              [-78.426745, 39.209769],\n              [-78.427451, 39.209154],\n              [-78.427813, 39.208833],\n              [-78.427879, 39.208772],\n              [-78.427898, 39.208684],\n              [-78.428044, 39.208],\n              [-78.428737, 39.207382],\n              [-78.429479, 39.207111],\n              [-78.429862, 39.207008],\n              [-78.429899, 39.206998],\n              [-78.430366, 39.206871],\n              [-78.430821, 39.206397],\n              [-78.431173, 39.205915],\n              [-78.431171, 39.205808],\n              [-78.431712, 39.205307],\n              [-78.432191, 39.204836],\n              [-78.432207, 39.204805],\n              [-78.432798, 39.203658],\n              [-78.433296, 39.202629],\n              [-78.43403, 39.202084],\n              [-78.435683, 39.200534],\n              [-78.436509, 39.200013],\n              [-78.437057, 39.199774],\n              [-78.437103, 39.199751],\n              [-78.437176, 39.199715],\n              [-78.437195, 39.199695],\n              [-78.437226, 39.199662],\n              [-78.437609, 39.199255],\n              [-78.437721, 39.199137],\n              [-78.438239, 39.198594],\n              [-78.438698, 39.198101],\n              [-78.438237, 39.197643],\n              [-78.438221, 39.197626],\n              [-78.438001, 39.197391],\n              [-78.437632, 39.196998],\n              [-78.436665, 39.196666],\n              [-78.435213, 39.196687],\n              [-78.434245, 39.196685],\n              [-78.433782, 39.196668],\n              [-78.433052, 39.196272],\n              [-78.432882, 39.19616],\n              [-78.43282, 39.196133],\n              [-78.43267, 39.196067],\n              [-78.432483, 39.195985],\n              [-78.432364, 39.195933],\n              [-78.431833, 39.196097],\n              [-78.431813, 39.196103],\n              [-78.431663, 39.196149],\n              [-78.431271, 39.196293],\n              [-78.430849, 39.196235],\n              [-78.43043, 39.195381],\n              [-78.430094, 39.194375],\n              [-78.429623, 39.193585],\n              [-78.429172, 39.193037],\n              [-78.428679, 39.192641],\n              [-78.4271, 39.193636],\n              [-78.42644, 39.194093],\n              [-78.426027, 39.194148],\n              [-78.424908, 39.193309],\n              [-78.424334, 39.192663],\n              [-78.424295, 39.192164],\n              [-78.425867, 39.190285],\n              [-78.427201, 39.1888],\n              [-78.427424, 39.188593],\n              [-78.428462, 39.187628],\n              [-78.42862, 39.187361],\n              [-78.4287, 39.187225],\n              [-78.428686, 39.187217],\n              [-78.428392, 39.187055],\n              [-78.428115, 39.186725],\n              [-78.428021, 39.186467],\n              [-78.42799, 39.186382],\n              [-78.42786, 39.186113],\n              [-78.427708, 39.185983],\n              [-78.427604, 39.185893],\n              [-78.427388, 39.185782],\n              [-78.427151, 39.185733],\n              [-78.426935, 39.185571],\n              [-78.426783, 39.184975],\n              [-78.426929, 39.184485],\n              [-78.427044, 39.184187],\n              [-78.426901, 39.183737],\n              [-78.426635, 39.183269],\n              [-78.426513, 39.183011],\n              [-78.426318, 39.18277],\n              [-78.426092, 39.182713],\n              [-78.425732, 39.182712],\n              [-78.425723, 39.182712],\n              [-78.425453, 39.182711],\n              [-78.424948, 39.182863],\n              [-78.424403, 39.182741],\n              [-78.424314, 39.182689],\n              [-78.423992, 39.182499],\n              [-78.423644, 39.182039],\n              [-78.423619, 39.181845],\n              [-78.423614, 39.181809],\n              [-78.423574, 39.181509],\n              [-78.423328, 39.181355],\n              [-78.422948, 39.181057],\n              [-78.422856, 39.180969],\n              [-78.422106, 39.180254],\n              [-78.421724, 39.179889],\n              [-78.421645, 39.179814],\n              [-78.42102, 39.179153],\n              [-78.42064, 39.178935],\n              [-78.419993, 39.178426],\n              [-78.419541, 39.178071],\n              [-78.419152, 39.17774],\n              [-78.419152, 39.177587],\n              [-78.418947, 39.177362],\n              [-78.418535, 39.177377],\n              [-78.416907, 39.177622],\n              [-78.415918, 39.177724],\n              [-78.414847, 39.177843],\n              [-78.414421, 39.176329],\n              [-78.414192, 39.175909],\n              [-78.413889, 39.175354],\n              [-78.413728, 39.174428],\n              [-78.413134, 39.173646],\n              [-78.411975, 39.172742],\n              [-78.410743, 39.171991],\n              [-78.409991, 39.172005],\n              [-78.409209, 39.171818],\n              [-78.408109, 39.171469],\n              [-78.406969, 39.170911],\n              [-78.406283, 39.170096],\n              [-78.405772, 39.169234],\n              [-78.405249, 39.168637],\n              [-78.40449, 39.16812],\n              [-78.40391, 39.167746],\n              [-78.4037, 39.167459],\n              [-78.403999, 39.167363],\n              [-78.404845, 39.166866],\n              [-78.405734, 39.165959],\n              [-78.406767, 39.164899],\n              [-78.407232, 39.164386],\n              [-78.40779, 39.164057],\n              [-78.408625, 39.163536],\n              [-78.40909, 39.163143],\n              [-78.409359, 39.162838],\n              [-78.409701, 39.162179],\n              [-78.410672, 39.161393],\n              [-78.41159, 39.160767],\n              [-78.412323, 39.160206],\n              [-78.412602, 39.160046],\n              [-78.412954, 39.159451],\n              [-78.413172, 39.158937],\n              [-78.413946, 39.158423],\n              [-78.416852, 39.157626],\n              [-78.417533, 39.157338],\n              [-78.417915, 39.157001],\n              [-78.41838, 39.156664],\n              [-78.419977, 39.156048],\n              [-78.420421, 39.1558],\n              [-78.421668, 39.155296],\n              [-78.424564, 39.154104],\n              [-78.427297, 39.152734],\n              [-78.428753, 39.151321],\n              [-78.430078, 39.149208],\n              [-78.431432, 39.147537],\n              [-78.432146, 39.146686],\n              [-78.432281, 39.146324],\n              [-78.432664, 39.145754],\n              [-78.433396, 39.145313],\n              [-78.434098, 39.144703],\n              [-78.43446, 39.144188],\n              [-78.434566, 39.143368],\n              [-78.434814, 39.143055],\n              [-78.436661, 39.141699],\n              [-78.436873, 39.139881],\n              [-78.437218, 39.13841],\n              [-78.437735, 39.136838],\n              [-78.437769, 39.136737],\n              [-78.437774, 39.135434],\n              [-78.438189, 39.134421],\n              [-78.438925, 39.133006],\n              [-78.439432, 39.132154],\n              [-78.44039, 39.131617],\n              [-78.441134, 39.130718],\n              [-78.441951, 39.129585],\n              [-78.443055, 39.128614],\n              [-78.444263, 39.127618],\n              [-78.445542, 39.126647],\n              [-78.446563, 39.125772],\n              [-78.447182, 39.125113],\n              [-78.448299, 39.124059],\n              [-78.449823, 39.122921],\n              [-78.451008, 39.12181],\n              [-78.452224, 39.120723],\n              [-78.453805, 39.120012],\n              [-78.45479, 39.118451],\n              [-78.456127, 39.117169],\n              [-78.457333, 39.116171],\n              [-78.457954, 39.115289],\n              [-78.459314, 39.114281],\n              [-78.459872, 39.113359],\n              [-78.460748, 39.113354],\n              [-78.463816, 39.113294],\n              [-78.465564, 39.112977],\n              [-78.466665, 39.112866],\n              [-78.468048, 39.112043],\n              [-78.469533, 39.111212],\n              [-78.470152, 39.110246],\n              [-78.470264, 39.110071],\n              [-78.47137, 39.109323],\n              [-78.471622, 39.109163],\n              [-78.473212, 39.108151],\n              [-78.473757, 39.107966],\n              [-78.474588, 39.107683],\n              [-78.475106, 39.107548],\n              [-78.475379, 39.107477],\n              [-78.476061, 39.107762],\n              [-78.476585, 39.108637],\n              [-78.477323, 39.109406],\n              [-78.477542, 39.109496],\n              [-78.477799, 39.109599],\n              [-78.477835, 39.109613],\n              [-78.478429, 39.109851],\n              [-78.4796, 39.109513],\n              [-78.482544, 39.108213],\n              [-78.484286, 39.10738],\n              [-78.486795, 39.105857],\n              [-78.489763, 39.103864],\n              [-78.493737, 39.101598],\n              [-78.494812, 39.101147],\n              [-78.495163, 39.101],\n              [-78.495174, 39.10098],\n              [-78.495622, 39.100133],\n              [-78.495987, 39.098988],\n              [-78.497358, 39.098045],\n              [-78.498715, 39.096803],\n              [-78.499734, 39.095941],\n              [-78.500666, 39.095295],\n              [-78.500866, 39.095156],\n              [-78.501731, 39.094557],\n              [-78.503281, 39.092981],\n              [-78.504387, 39.091406],\n              [-78.505198, 39.090808],\n              [-78.507036, 39.089424],\n              [-78.508135, 39.088638],\n              [-78.50915, 39.08737],\n              [-78.509374, 39.086765],\n              [-78.510123, 39.086174],\n              [-78.510325, 39.085558],\n              [-78.510488, 39.08541],\n              [-78.510527, 39.085375],\n              [-78.510706, 39.085213],\n              [-78.512106, 39.084886],\n              [-78.5134, 39.084028],\n              [-78.514478, 39.083033],\n              [-78.515556, 39.082312],\n              [-78.516482, 39.08181],\n              [-78.516427, 39.081036],\n              [-78.515958, 39.080054],\n              [-78.516318, 39.079618],\n              [-78.516345, 39.078828],\n              [-78.516792, 39.077577],\n              [-78.517449, 39.076914],\n              [-78.518115, 39.07613],\n              [-78.520035, 39.074738],\n              [-78.520856, 39.074115],\n              [-78.521564, 39.07346],\n              [-78.522247, 39.071862],\n              [-78.522717, 39.07107],\n              [-78.524276, 39.069719],\n              [-78.526546, 39.068229],\n              [-78.529128, 39.067567],\n              [-78.531698, 39.066527],\n              [-78.532233, 39.066058],\n              [-78.532919, 39.065459],\n              [-78.534583, 39.064414],\n              [-78.535111, 39.062913],\n              [-78.53656, 39.062207],\n              [-78.537536, 39.061704],\n              [-78.540219, 39.060639],\n              [-78.541406, 39.059127],\n              [-78.542872, 39.057631],\n              [-78.544093, 39.05666],\n              [-78.545682, 39.05506],\n              [-78.547737, 39.054077],\n              [-78.54831, 39.053293],\n              [-78.5495, 39.052507],\n              [-78.5503, 39.051763],\n              [-78.550758, 39.050794],\n              [-78.55167, 39.049824],\n              [-78.552744, 39.048498],\n              [-78.554266, 39.048066],\n              [-78.554786, 39.046943],\n              [-78.555965, 39.045932],\n              [-78.556751, 39.044535],\n              [-78.558452, 39.042989],\n              [-78.56, 39.041581],\n              [-78.561612, 39.04085],\n              [-78.562646, 39.039694],\n              [-78.564607, 39.038566],\n              [-78.565361, 39.03708],\n              [-78.56804, 39.035451],\n              [-78.568929, 39.03419],\n              [-78.570581, 39.032967],\n              [-78.571904, 39.032003],\n              [-78.571065, 39.030958],\n              [-78.569049, 39.029483],\n              [-78.567972, 39.028503],\n              [-78.566564, 39.027026],\n              [-78.56584, 39.026311],\n              [-78.565076, 39.025943],\n              [-78.5641, 39.026285],\n              [-78.563297, 39.026336],\n              [-78.562522, 39.025743],\n              [-78.562088, 39.02539],\n              [-78.560448, 39.024719],\n              [-78.559643, 39.024464],\n              [-78.558951, 39.024015],\n              [-78.558317, 39.02272],\n              [-78.558169, 39.022043],\n              [-78.557383, 39.021401],\n              [-78.554225, 39.01968],\n              [-78.55246, 39.018784],\n              [-78.55047, 39.018073],\n              [-78.552324, 39.016382],\n              [-78.554922, 39.015132],\n              [-78.556388, 39.01408],\n              [-78.55765, 39.013197],\n              [-78.559403, 39.011885],\n              [-78.561714, 39.009015],\n              [-78.562631, 39.007206],\n              [-78.568334, 39.003454],\n              [-78.569032, 39.002959],\n              [-78.569666, 39.002248],\n              [-78.570465, 39.00156],\n              [-78.571651, 39.000116],\n              [-78.572421, 38.999453],\n              [-78.573391, 38.998485],\n              [-78.575041, 38.996542],\n              [-78.57792, 38.993011],\n              [-78.580468, 38.990575],\n              [-78.581984, 38.988406],\n              [-78.582931, 38.985424],\n              [-78.585975, 38.982867],\n              [-78.587656, 38.980722],\n              [-78.587324, 38.979755],\n              [-78.588707, 38.978587],\n              [-78.588932, 38.976966],\n              [-78.59083, 38.975547],\n              [-78.591914, 38.97395],\n              [-78.593264, 38.971926],\n              [-78.596018, 38.9702],\n              [-78.598897, 38.969554],\n              [-78.599183, 38.969239],\n              [-78.600144, 38.968183],\n              [-78.601402, 38.966538],\n              [-78.601658, 38.964611],\n              [-78.607721, 38.969203],\n              [-78.608372, 38.969751],\n              [-78.609652, 38.969903],\n              [-78.610128, 38.970408],\n              [-78.6102, 38.970484],\n              [-78.610305, 38.971943],\n              [-78.610379, 38.973587],\n              [-78.610577, 38.975111],\n              [-78.611187, 38.976142],\n              [-78.612591, 38.976295],\n              [-78.614315, 38.975858],\n              [-78.617361, 38.974615],\n              [-78.618679, 38.97409],\n              [-78.618752, 38.975074],\n              [-78.619342, 38.976122],\n              [-78.619502, 38.97649],\n              [-78.619985, 38.977346],\n              [-78.620121, 38.978878],\n              [-78.620194, 38.979837],\n              [-78.619917, 38.981296],\n              [-78.620456, 38.982609],\n              [-78.621148, 38.982512],\n              [-78.621787, 38.982391],\n              [-78.62347, 38.982599],\n              [-78.624739, 38.982653],\n              [-78.625675, 38.982583],\n              [-78.627801, 38.981798],\n              [-78.629556, 38.980874],\n              [-78.630849, 38.979594],\n              [-78.63171, 38.97835],\n              [-78.631843, 38.97816],\n              [-78.632455, 38.976991],\n              [-78.632474, 38.974747],\n              [-78.633903, 38.972725],\n              [-78.635374, 38.97042],\n              [-78.636854, 38.968519],\n              [-78.638426, 38.966827],\n              [-78.640136, 38.967017],\n              [-78.641998, 38.967692],\n              [-78.644675, 38.968061],\n              [-78.646592, 38.968146],\n              [-78.648268, 38.966052],\n              [-78.648261, 38.965164],\n              [-78.649338, 38.963608],\n              [-78.651002, 38.961998],\n              [-78.652355, 38.960685],\n              [-78.65247, 38.960387],\n              [-78.653053, 38.958548],\n              [-78.653966, 38.956565],\n              [-78.655046, 38.953774],\n              [-78.657466, 38.950906],\n              [-78.658141, 38.949156],\n              [-78.659053, 38.947383],\n              [-78.660373, 38.946974],\n              [-78.662086, 38.94571],\n              [-78.664277, 38.943237],\n              [-78.665889, 38.941587],\n              [-78.666597, 38.939208],\n              [-78.66826, 38.937403],\n              [-78.669844, 38.935042],\n              [-78.670682, 38.933808],\n              [-78.672498, 38.932553],\n              [-78.674275, 38.9307],\n              [-78.676256, 38.929235],\n              [-78.677452, 38.927916],\n              [-78.67763, 38.927721],\n              [-78.679384, 38.926578],\n              [-78.679977, 38.925885],\n              [-78.680459, 38.925321],\n              [-78.680953, 38.925241],\n              [-78.68162, 38.925848],\n              [-78.684907, 38.925129],\n              [-78.685968, 38.925002],\n              [-78.687275, 38.925069],\n              [-78.688269, 38.924788],\n              [-78.688398, 38.924678],\n              [-78.689037, 38.924136],\n              [-78.689116, 38.924068],\n              [-78.689551, 38.92372],\n              [-78.689599, 38.923682],\n              [-78.689611, 38.923673],\n              [-78.689617, 38.923668],\n              [-78.689628, 38.923659],\n              [-78.691453, 38.922203],\n              [-78.691898, 38.921421],\n              [-78.692717, 38.919598],\n              [-78.694491, 38.918456],\n              [-78.695558, 38.917618],\n              [-78.696138, 38.917177],\n              [-78.696405, 38.916781],\n              [-78.696487, 38.916563],\n              [-78.696734, 38.916264],\n              [-78.697115, 38.915933],\n              [-78.697383, 38.91561],\n              [-78.697495, 38.915303],\n              [-78.697453, 38.915061],\n              [-78.697421, 38.914827],\n              [-78.697327, 38.914569],\n              [-78.697327, 38.91448],\n              [-78.69744, 38.914367],\n              [-78.697626, 38.914286],\n              [-78.69776, 38.91431],\n              [-78.697874, 38.914374],\n              [-78.698144, 38.914544],\n              [-78.698485, 38.914697],\n              [-78.698827, 38.914817],\n              [-78.699302, 38.914938],\n              [-78.699685, 38.915067],\n              [-78.700192, 38.915098],\n              [-78.70076, 38.915122],\n              [-78.701226, 38.915258],\n              [-78.701619, 38.915411],\n              [-78.701888, 38.915572],\n              [-78.70224, 38.915629],\n              [-78.702715, 38.915604],\n              [-78.703211, 38.915547],\n              [-78.703758, 38.915449],\n              [-78.704326, 38.915239],\n              [-78.704584, 38.915045],\n              [-78.704903, 38.91477],\n              [-78.705253, 38.914487],\n              [-78.705437, 38.914289],\n              [-78.707478, 38.912733],\n              [-78.708944, 38.911072],\n              [-78.712625, 38.908673],\n              [-78.714972, 38.906436],\n              [-78.714981, 38.906427],\n              [-78.715107, 38.906311],\n              [-78.71543, 38.905816],\n              [-78.715646, 38.905501],\n              [-78.715872, 38.90521],\n              [-78.716171, 38.904838],\n              [-78.716397, 38.904652],\n              [-78.716634, 38.904483],\n              [-78.717181, 38.904304],\n              [-78.717553, 38.90428],\n              [-78.717947, 38.904303],\n              [-78.71833, 38.904416],\n              [-78.71865, 38.904569],\n              [-78.71891, 38.904819],\n              [-78.719294, 38.905238],\n              [-78.719574, 38.905601],\n              [-78.719813, 38.905915],\n              [-78.719917, 38.906084],\n              [-78.719925, 38.906405],\n              [-78.719923, 38.906411],\n              [-78.719917, 38.90643],\n              [-78.719863, 38.906609],\n              [-78.719858, 38.906861],\n              [-78.719858, 38.906925],\n              [-78.719856, 38.907077],\n              [-78.71985, 38.907532],\n              [-78.71985, 38.907553],\n              [-78.719898, 38.908004],\n              [-78.719899, 38.908013],\n              [-78.7199, 38.908018],\n              [-78.719904, 38.90806],\n              [-78.720175, 38.908457],\n              [-78.720261, 38.908534],\n              [-78.72029, 38.90856],\n              [-78.72039, 38.908649],\n              [-78.720444, 38.908682],\n              [-78.72046, 38.908692],\n              [-78.720491, 38.908711],\n              [-78.7205, 38.908716],\n              [-78.720508, 38.908721],\n              [-78.720536, 38.908738],\n              [-78.720703, 38.908997],\n              [-78.72083, 38.909449],\n              [-78.720893, 38.909797],\n              [-78.720895, 38.909808],\n              [-78.720896, 38.909814],\n              [-78.720903, 38.909853],\n              [-78.720904, 38.909858],\n              [-78.720908, 38.909898],\n              [-78.720908, 38.909905],\n              [-78.720909, 38.909915],\n              [-78.720911, 38.909934],\n              [-78.720934, 38.910168],\n              [-78.720802, 38.910448],\n              [-78.720493, 38.910869],\n              [-78.720474, 38.911264],\n              [-78.720474, 38.911269],\n              [-78.720475, 38.911274],\n              [-78.720573, 38.91213],\n              [-78.720574, 38.912142],\n              [-78.720575, 38.912149],\n              [-78.720576, 38.912154],\n              [-78.720577, 38.912163],\n              [-78.720578, 38.912175],\n              [-78.720579, 38.912185],\n              [-78.720649, 38.912308],\n              [-78.720664, 38.912333],\n              [-78.720667, 38.912339],\n              [-78.72067, 38.912344],\n              [-78.72068, 38.912361],\n              [-78.720686, 38.912371],\n              [-78.720757, 38.912527],\n              [-78.720801, 38.912778],\n              [-78.720802, 38.913093],\n              [-78.720802, 38.913227],\n              [-78.720835, 38.913641],\n              [-78.720774, 38.913982],\n              [-78.720734, 38.914174],\n              [-78.720683, 38.914297],\n              [-78.72057, 38.914361],\n              [-78.720469, 38.914387],\n              [-78.720457, 38.91439],\n              [-78.720447, 38.914392],\n              [-78.720423, 38.914397],\n              [-78.719847, 38.914822],\n              [-78.719351, 38.915757],\n              [-78.71981, 38.916433],\n              [-78.719826, 38.916456],\n              [-78.720152, 38.916936],\n              [-78.719454, 38.920268],\n              [-78.719338, 38.920665],\n              [-78.719312, 38.920737],\n              [-78.719291, 38.920797],\n              [-78.719291, 38.920894],\n              [-78.719351, 38.920981],\n              [-78.719374, 38.921015],\n              [-78.719509, 38.921208],\n              [-78.719594, 38.921725],\n              [-78.719667, 38.922023],\n              [-78.719758, 38.922143],\n              [-78.719809, 38.922647],\n              [-78.719853, 38.923002],\n              [-78.719862, 38.923073],\n              [-78.719866, 38.923103],\n              [-78.719879, 38.923209],\n              [-78.720076, 38.923499],\n              [-78.720098, 38.923871],\n              [-78.719987, 38.924452],\n              [-78.719843, 38.924767],\n              [-78.719576, 38.925171],\n              [-78.719713, 38.925703],\n              [-78.719623, 38.926518],\n              [-78.719388, 38.927366],\n              [-78.719185, 38.928125],\n              [-78.718991, 38.928827],\n              [-78.718693, 38.929384],\n              [-78.718355, 38.930232],\n              [-78.718162, 38.930999],\n              [-78.717908, 38.932218],\n              [-78.717512, 38.934066],\n              [-78.71726, 38.935366],\n              [-78.717079, 38.936036],\n              [-78.717394, 38.935673],\n              [-78.718486, 38.934274],\n              [-78.719187, 38.933886],\n              [-78.719789, 38.933324],\n              [-78.721055, 38.932226],\n              [-78.721874, 38.931689],\n              [-78.722445, 38.931416],\n              [-78.723587, 38.93112],\n              [-78.724097, 38.931105],\n              [-78.724537, 38.931001],\n              [-78.724924, 38.930974],\n              [-78.725713, 38.930981],\n              [-78.726225, 38.93094],\n              [-78.726705, 38.930747],\n              [-78.727289, 38.930624],\n              [-78.729159, 38.93001],\n              [-78.729878, 38.929837],\n              [-78.730718, 38.929667],\n              [-78.731483, 38.929545],\n              [-78.732151, 38.929384],\n              [-78.732587, 38.929169],\n              [-78.733224, 38.928883],\n              [-78.734183, 38.928513],\n              [-78.735089, 38.928159],\n              [-78.735846, 38.927951],\n              [-78.736537, 38.927651],\n              [-78.736974, 38.927528],\n              [-78.737414, 38.927489],\n              [-78.737882, 38.927446],\n              [-78.738271, 38.927406],\n              [-78.738574, 38.927405],\n              [-78.738637, 38.927385],\n              [-78.738683, 38.92737],\n              [-78.738766, 38.927343],\n              [-78.738923, 38.927293],\n              [-78.73915, 38.927142],\n              [-78.740254, 38.926222],\n              [-78.741129, 38.925397],\n              [-78.742118, 38.924524],\n              [-78.742776, 38.923708],\n              [-78.743135, 38.923136],\n              [-78.743383, 38.922966],\n              [-78.743671, 38.922594],\n              [-78.744206, 38.92202],\n              [-78.744658, 38.921503],\n              [-78.744946, 38.92114],\n              [-78.744966, 38.921083],\n              [-78.744894, 38.920973],\n              [-78.744699, 38.920821],\n              [-78.744548, 38.920666],\n              [-78.744457, 38.920454],\n              [-78.744436, 38.920236],\n              [-78.744507, 38.920067],\n              [-78.744662, 38.919946],\n              [-78.744992, 38.919784],\n              [-78.745312, 38.919614],\n              [-78.745611, 38.919468],\n              [-78.746013, 38.919225],\n              [-78.746581, 38.918829],\n              [-78.747044, 38.918489],\n              [-78.747507, 38.918021],\n              [-78.748115, 38.917519],\n              [-78.748805, 38.917074],\n              [-78.749228, 38.916799],\n              [-78.749745, 38.916455],\n              [-78.75052, 38.916036],\n              [-78.751159, 38.914698],\n              [-78.750893, 38.913078],\n              [-78.75036, 38.911683],\n              [-78.752088, 38.910877],\n              [-78.753693, 38.909572],\n              [-78.754661, 38.907589],\n              [-78.754519, 38.905736],\n              [-78.756237, 38.904092],\n              [-78.757281, 38.903211],\n              [-78.757595, 38.902947],\n              [-78.758429, 38.901255],\n              [-78.759088, 38.900537],\n              [-78.760353, 38.900054],\n              [-78.761771, 38.899643],\n              [-78.764312, 38.898167],\n              [-78.767428, 38.897128],\n              [-78.769361, 38.897072],\n              [-78.770728, 38.896112],\n              [-78.772796, 38.89375],\n              [-78.776302, 38.89304],\n              [-78.779201, 38.892306],\n              [-78.784198, 38.88863],\n              [-78.786028, 38.887195],\n              [-78.788034, 38.885131],\n              [-78.789309, 38.882511],\n              [-78.790081, 38.880084],\n              [-78.791068, 38.879036],\n              [-78.791613, 38.877601],\n              [-78.79299, 38.876908],\n              [-78.794224, 38.87644],\n              [-78.795139, 38.876004],\n              [-78.796333, 38.875119],\n              [-78.796216, 38.874614],\n              [-78.79666, 38.873654],\n              [-78.797404, 38.872634],\n              [-78.798086, 38.871598],\n              [-78.798819, 38.87061],\n              [-78.799695, 38.869222],\n              [-78.800484, 38.868018],\n              [-78.801242, 38.866797],\n              [-78.801713, 38.866007],\n              [-78.801848, 38.865723],\n              [-78.802275, 38.864832],\n              [-78.802521, 38.864441],\n              [-78.802871, 38.863979],\n              [-78.803158, 38.863589],\n              [-78.803559, 38.863128],\n              [-78.80392, 38.862594],\n              [-78.804422, 38.861796],\n              [-78.804774, 38.861254],\n              [-78.804891, 38.86062],\n              [-78.805059, 38.860035],\n              [-78.805049, 38.859746],\n              [-78.805048, 38.85972],\n              [-78.805046, 38.859664],\n              [-78.8051, 38.859134],\n              [-78.805162, 38.858628],\n              [-78.805367, 38.858236],\n              [-78.805757, 38.857839],\n              [-78.806028, 38.857215],\n              [-78.806228, 38.857009],\n              [-78.806611, 38.856926],\n              [-78.80726, 38.856959],\n              [-78.807572, 38.856794],\n              [-78.808183, 38.856183],\n              [-78.808697, 38.855329],\n              [-78.808945, 38.854818],\n              [-78.809102, 38.854216],\n              [-78.809429, 38.853416],\n              [-78.80949, 38.852548],\n              [-78.809562, 38.852066],\n              [-78.809702, 38.851794],\n              [-78.810184, 38.850996],\n              [-78.810731, 38.850023],\n              [-78.810946, 38.849624],\n              [-78.811135, 38.848966],\n              [-78.811226, 38.848597],\n              [-78.811516, 38.84807],\n              [-78.811909, 38.847496],\n              [-78.812238, 38.847066],\n              [-78.812774, 38.846132],\n              [-78.813259, 38.845141],\n              [-78.813994, 38.843558],\n              [-78.81453, 38.842632],\n              [-78.814903, 38.842041],\n              [-78.815119, 38.841602],\n              [-78.815487, 38.840794],\n              [-78.815725, 38.840242],\n              [-78.815857, 38.839898],\n              [-78.815999, 38.839522],\n              [-78.816518, 38.838869],\n              [-78.817091, 38.838064],\n              [-78.817666, 38.837195],\n              [-78.817967, 38.83666],\n              [-78.818397, 38.835797],\n              [-78.818849, 38.834942],\n              [-78.81916, 38.834367],\n              [-78.819609, 38.8336],\n              [-78.820187, 38.833053],\n              [-78.820445, 38.832558],\n              [-78.820749, 38.831886],\n              [-78.82117, 38.83099],\n              [-78.821785, 38.83017],\n              [-78.822186, 38.829709],\n              [-78.822875, 38.828793],\n              [-78.823431, 38.827851],\n              [-78.823891, 38.827093],\n              [-78.824256, 38.826414],\n              [-78.824731, 38.825873],\n              [-78.825477, 38.825159],\n              [-78.826141, 38.824444],\n              [-78.826664, 38.82367],\n              [-78.827029, 38.822983],\n              [-78.82723, 38.822262],\n              [-78.827243, 38.822005],\n              [-78.827265, 38.821618],\n              [-78.827647, 38.821068],\n              [-78.82817, 38.820239],\n              [-78.828457, 38.819816],\n              [-78.828739, 38.819168],\n              [-78.829059, 38.818633],\n              [-78.829442, 38.818083],\n              [-78.829963, 38.817318],\n              [-78.8306, 38.816441],\n              [-78.831322, 38.815389],\n              [-78.831662, 38.814903],\n              [-78.83227, 38.814396],\n              [-78.833002, 38.813859],\n              [-78.833693, 38.813345],\n              [-78.834346, 38.81263],\n              [-78.834884, 38.812042],\n              [-78.835194, 38.811507],\n              [-78.835426, 38.810786],\n              [-78.835439, 38.810182],\n              [-78.835496, 38.809933],\n              [-78.836728, 38.809121],\n              [-78.83759, 38.808304],\n              [-78.838312, 38.807564],\n              [-78.838769, 38.807097],\n              [-78.839711, 38.805879],\n              [-78.840467, 38.804706],\n              [-78.840714, 38.804226],\n              [-78.841042, 38.803812],\n              [-78.841562, 38.803111],\n              [-78.842352, 38.802237],\n              [-78.843057, 38.801506],\n              [-78.843848, 38.800649],\n              [-78.844701, 38.799727],\n              [-78.845665, 38.798476],\n              [-78.846314, 38.797455],\n              [-78.846426, 38.797038],\n              [-78.846575, 38.796356],\n              [-78.846633, 38.796043],\n              [-78.846781, 38.7959],\n              [-78.847241, 38.795585],\n              [-78.84819, 38.794986],\n              [-78.848625, 38.794388],\n              [-78.849257, 38.793696],\n              [-78.849817, 38.79302],\n              [-78.850246, 38.792189],\n              [-78.850365, 38.791941],\n              [-78.85045, 38.791314],\n              [-78.850569, 38.791083],\n              [-78.850852, 38.790813],\n              [-78.851421, 38.790185],\n              [-78.852082, 38.789115],\n              [-78.852794, 38.788063],\n              [-78.85325, 38.786958],\n              [-78.853379, 38.786686],\n              [-78.853441, 38.786617],\n              [-78.853559, 38.786488],\n              [-78.85399, 38.786043],\n              [-78.854915, 38.784639],\n              [-78.855194, 38.784095],\n              [-78.855209, 38.783895],\n              [-78.855206, 38.783581],\n              [-78.855333, 38.783405],\n              [-78.855543, 38.783207],\n              [-78.856268, 38.782492],\n              [-78.857239, 38.781363],\n              [-78.85891, 38.779196],\n              [-78.859813, 38.777864],\n              [-78.860033, 38.777224],\n              [-78.860153, 38.776903],\n              [-78.860417, 38.776561],\n              [-78.861485, 38.775231],\n              [-78.861588, 38.774734],\n              [-78.861585, 38.774371],\n              [-78.861671, 38.774212],\n              [-78.861818, 38.774061],\n              [-78.862133, 38.773775],\n              [-78.862723, 38.773139],\n              [-78.863687, 38.771808],\n              [-78.863894, 38.771256],\n              [-78.864081, 38.770687],\n              [-78.86416, 38.77039],\n              [-78.864769, 38.769312],\n              [-78.865022, 38.768551],\n              [-78.865224, 38.767765],\n              [-78.865426, 38.767438],\n              [-78.865656, 38.767288],\n              [-78.865908, 38.767042],\n              [-78.866617, 38.766077],\n              [-78.867388, 38.765154],\n              [-78.868159, 38.764223],\n              [-78.8687, 38.763482],\n              [-78.868974, 38.763147],\n              [-78.869279, 38.762999],\n              [-78.87475, 38.766819],\n              [-78.877449, 38.768704],\n              [-78.887735, 38.775879],\n              [-78.891405, 38.778455],\n              [-78.893339, 38.779805],\n              [-78.893342, 38.779807],\n              [-78.894722, 38.78076],\n              [-78.896001, 38.781664],\n              [-78.896014, 38.781673],\n              [-78.897409, 38.782651],\n              [-78.901276, 38.785352],\n              [-78.92227, 38.800017],\n              [-78.924418, 38.801517],\n              [-78.931568, 38.80651],\n              [-78.939745, 38.812204],\n              [-78.939843, 38.81228],\n              [-78.93994, 38.812357],\n              [-78.94001, 38.812406],\n              [-78.940079, 38.812454],\n              [-78.940149, 38.812503],\n              [-78.941203, 38.813239],\n              [-78.941436, 38.813394],\n              [-78.941737, 38.813595],\n              [-78.941969, 38.813763],\n              [-78.942908, 38.814409],\n              [-78.945518, 38.816245],\n              [-78.945654, 38.81634],\n              [-78.946121, 38.816666],\n              [-78.946312, 38.8168],\n              [-78.948294, 38.818173],\n              [-78.949963, 38.81935],\n              [-78.95047, 38.819707],\n              [-78.950822, 38.819953],\n              [-78.956272, 38.823763],\n              [-78.977283, 38.838418],\n              [-78.987232, 38.845398],\n              [-78.989245, 38.846826],\n              [-78.991272, 38.848279],\n              [-78.993764, 38.850029],\n              [-78.994, 38.85011],\n              [-78.994437, 38.849808],\n              [-78.994823, 38.849529],\n              [-78.99484, 38.849517],\n              [-78.994863, 38.8495],\n              [-78.995017, 38.849399],\n              [-78.995322, 38.849186],\n              [-78.995546, 38.848926],\n              [-78.995798, 38.84865],\n              [-78.996113, 38.848381],\n              [-78.996453, 38.848145],\n              [-78.997185, 38.847902],\n              [-78.997522, 38.84773],\n              [-78.998174, 38.847361],\n              [-78.998804, 38.846871],\n              [-78.999343, 38.846438],\n              [-78.999755, 38.84617],\n              [-79.000155, 38.84562],\n              [-79.000255, 38.84542],\n              [-79.000255, 38.84502],\n              [-79.000155, 38.84472],\n              [-78.999855, 38.84412],\n              [-78.999755, 38.84372],\n              [-78.999755, 38.84347],\n              [-78.999485, 38.843076],\n              [-78.999368, 38.842827],\n              [-78.999365, 38.842797],\n              [-78.999319, 38.842312],\n              [-78.999093, 38.841637],\n              [-78.998866, 38.84097],\n              [-78.998911, 38.840518],\n              [-78.999017, 38.840082],\n              [-78.999318, 38.839514],\n              [-78.999755, 38.83917],\n              [-79.000255, 38.83852],\n              [-79.000955, 38.83772],\n              [-79.001755, 38.83712],\n              [-79.002355, 38.83652],\n              [-79.002517, 38.836116],\n              [-79.002679, 38.835711],\n              [-79.003202, 38.834362],\n              [-79.003755, 38.83302],\n              [-79.003766, 38.832999],\n              [-79.003855, 38.83282],\n              [-79.003943, 38.832319],\n              [-79.004355, 38.83152],\n              [-79.004491, 38.831301],\n              [-79.004855, 38.83072],\n              [-79.005155, 38.82992],\n              [-79.005455, 38.82892],\n              [-79.005655, 38.82822],\n              [-79.005855, 38.82732],\n              [-79.006155, 38.82672],\n              [-79.006355, 38.82612],\n              [-79.006335, 38.825939],\n              [-79.006255, 38.82512],\n              [-79.00614, 38.824519],\n              [-79.006555, 38.82372],\n              [-79.006949, 38.823323],\n              [-79.007355, 38.82292],\n              [-79.007955, 38.82232],\n              [-79.008755, 38.82202],\n              [-79.009352, 38.821914],\n              [-79.009748, 38.82162],\n              [-79.010155, 38.821319],\n              [-79.010655, 38.821119],\n              [-79.011455, 38.820819],\n              [-79.011955, 38.82042],\n              [-79.012655, 38.82012],\n              [-79.013559, 38.820017],\n              [-79.013588, 38.820022],\n              [-79.013618, 38.820026],\n              [-79.014155, 38.82012],\n              [-79.014659, 38.820326],\n              [-79.014731, 38.820324],\n              [-79.014778, 38.820322],\n              [-79.015355, 38.82032],\n              [-79.015634, 38.820206],\n              [-79.016255, 38.82012],\n              [-79.016553, 38.820062],\n              [-79.016598, 38.820053],\n              [-79.016759, 38.820015],\n              [-79.017259, 38.819716],\n              [-79.017548, 38.819332],\n              [-79.017906, 38.819148],\n              [-79.018154, 38.819021],\n              [-79.018555, 38.81882],\n              [-79.019053, 38.818322],\n              [-79.019232, 38.818166],\n              [-79.019233, 38.818165],\n              [-79.019537, 38.817915],\n              [-79.019756, 38.817021],\n              [-79.020056, 38.81662],\n              [-79.020156, 38.81612],\n              [-79.019857, 38.815422],\n              [-79.019656, 38.814721],\n              [-79.019635, 38.814423],\n              [-79.019628, 38.814352],\n              [-79.019609, 38.814161],\n              [-79.019602, 38.814001],\n              [-79.0196, 38.813938],\n              [-79.019598, 38.813903],\n              [-79.019548, 38.813326],\n              [-79.019655, 38.812326],\n              [-79.019656, 38.812319],\n              [-79.019845, 38.811719],\n              [-79.020256, 38.81142],\n              [-79.020753, 38.811234],\n              [-79.020765, 38.811222],\n              [-79.02078, 38.811206],\n              [-79.020806, 38.811178],\n              [-79.020856, 38.81112],\n              [-79.021556, 38.81092],\n              [-79.022056, 38.81072],\n              [-79.023056, 38.81022],\n              [-79.023656, 38.80982],\n              [-79.024056, 38.80922],\n              [-79.024113, 38.808624],\n              [-79.024124, 38.808567],\n              [-79.024135, 38.808509],\n              [-79.024156, 38.80832],\n              [-79.024256, 38.80772],\n              [-79.024256, 38.80742],\n              [-79.024056, 38.80692],\n              [-79.023656, 38.80652],\n              [-79.023456, 38.80612],\n              [-79.023556, 38.80562],\n              [-79.023956, 38.80522],\n              [-79.024356, 38.80452],\n              [-79.024456, 38.80372],\n              [-79.024256, 38.80342],\n              [-79.023456, 38.80262],\n              [-79.022956, 38.800121],\n              [-79.022956, 38.799321],\n              [-79.023056, 38.798921],\n              [-79.023044, 38.798619],\n              [-79.023756, 38.797921],\n              [-79.024256, 38.797221],\n              [-79.024856, 38.796121],\n              [-79.025256, 38.795321],\n              [-79.025556, 38.794621],\n              [-79.026156, 38.793421],\n              [-79.026756, 38.792721],\n              [-79.027256, 38.792121],\n              [-79.028156, 38.791521],\n              [-79.029256, 38.791021],\n              [-79.030257, 38.791014],\n              [-79.031256, 38.791021],\n              [-79.033156, 38.791021],\n              [-79.034356, 38.791221],\n              [-79.035756, 38.791421],\n              [-79.036856, 38.791721],\n              [-79.037556, 38.791821],\n              [-79.038856, 38.791921],\n              [-79.039656, 38.791821],\n              [-79.040556, 38.791721],\n              [-79.041156, 38.791721],\n              [-79.041656, 38.791921],\n              [-79.042256, 38.791921],\n              [-79.043056, 38.791821],\n              [-79.043656, 38.791621],\n              [-79.044457, 38.791615],\n              [-79.045056, 38.791821],\n              [-79.045761, 38.792116],\n              [-79.045954, 38.792121],\n              [-79.046557, 38.792121],\n              [-79.047352, 38.791818],\n              [-79.048057, 38.791321],\n              [-79.048957, 38.790721],\n              [-79.049557, 38.790121],\n              [-79.050257, 38.789621],\n              [-79.051157, 38.788921],\n              [-79.051857, 38.788221],\n              [-79.051972, 38.78812],\n              [-79.052555, 38.787613],\n              [-79.052846, 38.787441],\n              [-79.052873, 38.787426],\n              [-79.053252, 38.787218],\n              [-79.053757, 38.786821],\n              [-79.054057, 38.786521],\n              [-79.054305, 38.786272],\n              [-79.054357, 38.786221],\n              [-79.054657, 38.786021],\n              [-79.054957, 38.785721],\n              [-79.055257, 38.785121],\n              [-79.055457, 38.784321],\n              [-79.055645, 38.783619],\n              [-79.055657, 38.783021],\n              [-79.055357, 38.782221],\n              [-79.055057, 38.781821],\n              [-79.054557, 38.781121],\n              [-79.054357, 38.780621],\n              [-79.053957, 38.780221],\n              [-79.053257, 38.779721],\n              [-79.052457, 38.779221],\n              [-79.052438, 38.779197],\n              [-79.052057, 38.778721],\n              [-79.051657, 38.778021],\n              [-79.051657, 38.777221],\n              [-79.052057, 38.775521],\n              [-79.052057, 38.775321],\n              [-79.051957, 38.775121],\n              [-79.051448, 38.774417],\n              [-79.051272, 38.773909],\n              [-79.051271, 38.77361],\n              [-79.051315, 38.773359],\n              [-79.051357, 38.773121],\n              [-79.051557, 38.772621],\n              [-79.052157, 38.772421],\n              [-79.053257, 38.772321],\n              [-79.053757, 38.772321],\n              [-79.054457, 38.772021],\n              [-79.055099, 38.77162],\n              [-79.055257, 38.771521],\n              [-79.055657, 38.770921],\n              [-79.055757, 38.770321],\n              [-79.055757, 38.769521],\n              [-79.05578, 38.768926],\n              [-79.055957, 38.768321],\n              [-79.056557, 38.767321],\n              [-79.056757, 38.766521],\n              [-79.056857, 38.765821],\n              [-79.056857, 38.765221],\n              [-79.056957, 38.764721],\n              [-79.057057, 38.764021],\n              [-79.057157, 38.763421],\n              [-79.057157, 38.763121],\n              [-79.057257, 38.762821],\n              [-79.057257, 38.762321],\n              [-79.057357, 38.761921],\n              [-79.057257, 38.761721],\n              [-79.057257, 38.761521],\n              [-79.057256, 38.761421],\n              [-79.057257, 38.761121],\n              [-79.057257, 38.760721],\n              [-79.057557, 38.760221],\n              [-79.057857, 38.759921],\n              [-79.058257, 38.759721],\n              [-79.058957, 38.759121],\n              [-79.059057, 38.758921],\n              [-79.059557, 38.758321],\n              [-79.059857, 38.757921],\n              [-79.060257, 38.757521],\n              [-79.060957, 38.756721],\n              [-79.062057, 38.756021],\n              [-79.062957, 38.755521],\n              [-79.063657, 38.755121],\n              [-79.064257, 38.754821],\n              [-79.064857, 38.754421],\n              [-79.065657, 38.754021],\n              [-79.066457, 38.753221],\n              [-79.066957, 38.752521],\n              [-79.067357, 38.752221],\n              [-79.067457, 38.752121],\n              [-79.067576, 38.752051],\n              [-79.067957, 38.751821],\n              [-79.067993, 38.751802],\n              [-79.068022, 38.751788],\n              [-79.068357, 38.751621],\n              [-79.068657, 38.751421],\n              [-79.068857, 38.751321],\n              [-79.069057, 38.751121],\n              [-79.069147, 38.751018],\n              [-79.069206, 38.750121],\n              [-79.069457, 38.749821],\n              [-79.069457, 38.749721],\n              [-79.069557, 38.749621],\n              [-79.069657, 38.749421],\n              [-79.069757, 38.749321],\n              [-79.070157, 38.749121],\n              [-79.070457, 38.749121],\n              [-79.070757, 38.748921],\n              [-79.071157, 38.748721],\n              [-79.071457, 38.748621],\n              [-79.071757, 38.748321],\n              [-79.072058, 38.748121],\n              [-79.072358, 38.747821],\n              [-79.072558, 38.747521],\n              [-79.072658, 38.747121],\n              [-79.072658, 38.745122],\n              [-79.072758, 38.744622],\n              [-79.072946, 38.744223],\n              [-79.073058, 38.743822],\n              [-79.073258, 38.743422],\n              [-79.073346, 38.743245],\n              [-79.073458, 38.743022],\n              [-79.073658, 38.742522],\n              [-79.073858, 38.742122],\n              [-79.074158, 38.741722],\n              [-79.074358, 38.741522],\n              [-79.074758, 38.741222],\n              [-79.075258, 38.740722],\n              [-79.075458, 38.740422],\n              [-79.075658, 38.740022],\n              [-79.075958, 38.739822],\n              [-79.076558, 38.739222],\n              [-79.076958, 38.739022],\n              [-79.077258, 38.738822],\n              [-79.077758, 38.738522],\n              [-79.078158, 38.738222],\n              [-79.078758, 38.737622],\n              [-79.079058, 38.737222],\n              [-79.079158, 38.736922],\n              [-79.079158, 38.736889],\n              [-79.079258, 38.736522],\n              [-79.079458, 38.736122],\n              [-79.079458, 38.735622],\n              [-79.079558, 38.735122],\n              [-79.079758, 38.734322],\n              [-79.079858, 38.734022],\n              [-79.080058, 38.733622],\n              [-79.080158, 38.733222],\n              [-79.080258, 38.732722],\n              [-79.080358, 38.732522],\n              [-79.081058, 38.731822],\n              [-79.081358, 38.731422],\n              [-79.081558, 38.731022],\n              [-79.081658, 38.730622],\n              [-79.081858, 38.730122],\n              [-79.081958, 38.729722],\n              [-79.082158, 38.729422],\n              [-79.082858, 38.728722],\n              [-79.082925, 38.728388],\n              [-79.083058, 38.728122],\n              [-79.083158, 38.727722],\n              [-79.083358, 38.727422],\n              [-79.083658, 38.727122],\n              [-79.08391, 38.726871],\n              [-79.083958, 38.726822],\n              [-79.084258, 38.726522],\n              [-79.08437, 38.726228],\n              [-79.084568, 38.725908],\n              [-79.084658, 38.725622],\n              [-79.084958, 38.725422],\n              [-79.085258, 38.725022],\n              [-79.085458, 38.724622],\n              [-79.085488, 38.724439],\n              [-79.085558, 38.724122],\n              [-79.085586, 38.724017],\n              [-79.085671, 38.723825],\n              [-79.085858, 38.723622],\n              [-79.086069, 38.723226],\n              [-79.086258, 38.722922],\n              [-79.086363, 38.722524],\n              [-79.086384, 38.722418],\n              [-79.086458, 38.722122],\n              [-79.086458, 38.721722],\n              [-79.086758, 38.720822],\n              [-79.086958, 38.720422],\n              [-79.087258, 38.720122],\n              [-79.087244, 38.719935],\n              [-79.087258, 38.719622],\n              [-79.087258, 38.719122],\n              [-79.087058, 38.718622],\n              [-79.086861, 38.718129],\n              [-79.086658, 38.717722],\n              [-79.086458, 38.717423],\n              [-79.086458, 38.717023],\n              [-79.086558, 38.716823],\n              [-79.086558, 38.716023],\n              [-79.086758, 38.715523],\n              [-79.086958, 38.714923],\n              [-79.087558, 38.713723],\n              [-79.087858, 38.713223],\n              [-79.088058, 38.712823],\n              [-79.088158, 38.712523],\n              [-79.088261, 38.712213],\n              [-79.088358, 38.711923],\n              [-79.088458, 38.711623],\n              [-79.088446, 38.711323],\n              [-79.088658, 38.711123],\n              [-79.088758, 38.710823],\n              [-79.088958, 38.710623],\n              [-79.089059, 38.710325],\n              [-79.089058, 38.710023],\n              [-79.089258, 38.709423],\n              [-79.089358, 38.709223],\n              [-79.089558, 38.709023],\n              [-79.089658, 38.708723],\n              [-79.089958, 38.708323],\n              [-79.090165, 38.707927],\n              [-79.090166, 38.707892],\n              [-79.090258, 38.707523],\n              [-79.090358, 38.707123],\n              [-79.090553, 38.70683],\n              [-79.090569, 38.706812],\n              [-79.090758, 38.706623],\n              [-79.090858, 38.706423],\n              [-79.091069, 38.706027],\n              [-79.091064, 38.705997],\n              [-79.091158, 38.705623],\n              [-79.091258, 38.705223],\n              [-79.091345, 38.704962],\n              [-79.091558, 38.704523],\n              [-79.091758, 38.703923],\n              [-79.092158, 38.703323],\n              [-79.09235, 38.702921],\n              [-79.092558, 38.702623],\n              [-79.092758, 38.702323],\n              [-79.092958, 38.70201],\n              [-79.092958, 38.701723],\n              [-79.09285, 38.701425],\n              [-79.092758, 38.701123],\n              [-79.092658, 38.700823],\n              [-79.092558, 38.700423],\n              [-79.092558, 38.700157],\n              [-79.092531, 38.70003],\n              [-79.092471, 38.699787],\n              [-79.092465, 38.69972],\n              [-79.09245, 38.69965],\n              [-79.092359, 38.699426],\n              [-79.092274, 38.699216],\n              [-79.092058, 38.698923],\n              [-79.091758, 38.698723],\n              [-79.091679, 38.698605],\n              [-79.091558, 38.698423],\n              [-79.091358, 38.698023],\n              [-79.091358, 38.697623],\n              [-79.091458, 38.697123],\n              [-79.091458, 38.696623],\n              [-79.091358, 38.696123],\n              [-79.091358, 38.694523],\n              [-79.091258, 38.694123],\n              [-79.091147, 38.693721],\n              [-79.091058, 38.693323],\n              [-79.091012, 38.69314],\n              [-79.090958, 38.692923],\n              [-79.090758, 38.692523],\n              [-79.090449, 38.692127],\n              [-79.090058, 38.691723],\n              [-79.089658, 38.691323],\n              [-79.089258, 38.691023],\n              [-79.088858, 38.690823],\n              [-79.088547, 38.690527],\n              [-79.088317, 38.690363],\n              [-79.088252, 38.690327],\n              [-79.088058, 38.690123],\n              [-79.087658, 38.689923],\n              [-79.087258, 38.689823],\n              [-79.086858, 38.689724],\n              [-79.086458, 38.689524],\n              [-79.086158, 38.689224],\n              [-79.085758, 38.688924],\n              [-79.08555, 38.688832],\n              [-79.085358, 38.688624],\n              [-79.085158, 38.688324],\n              [-79.085058, 38.688024],\n              [-79.084958, 38.687624],\n              [-79.084867, 38.687333],\n              [-79.084458, 38.686924],\n              [-79.084303, 38.686515],\n              [-79.084458, 38.686024],\n              [-79.084458, 38.685124],\n              [-79.084545, 38.684816],\n              [-79.084658, 38.684524],\n              [-79.084958, 38.684124],\n              [-79.085358, 38.683724],\n              [-79.085525, 38.683389],\n              [-79.085558, 38.683324],\n              [-79.085649, 38.682922],\n              [-79.085858, 38.682724],\n              [-79.086158, 38.682324],\n              [-79.086258, 38.682124],\n              [-79.086358, 38.681824],\n              [-79.086406, 38.681633],\n              [-79.086458, 38.681424],\n              [-79.086345, 38.680924],\n              [-79.086458, 38.680424],\n              [-79.086558, 38.679924],\n              [-79.086658, 38.679524],\n              [-79.086658, 38.679124],\n              [-79.086758, 38.678724],\n              [-79.086858, 38.678224],\n              [-79.087058, 38.677424],\n              [-79.087058, 38.677024],\n              [-79.087158, 38.676624],\n              [-79.087358, 38.676024],\n              [-79.087558, 38.675724],\n              [-79.087658, 38.675324],\n              [-79.087758, 38.675024],\n              [-79.087758, 38.674724],\n              [-79.087858, 38.674424],\n              [-79.087858, 38.673824],\n              [-79.088058, 38.673424],\n              [-79.088258, 38.672924],\n              [-79.088558, 38.672624],\n              [-79.088758, 38.672324],\n              [-79.088858, 38.672124],\n              [-79.089158, 38.671724],\n              [-79.089358, 38.671424],\n              [-79.089458, 38.671124],\n              [-79.089558, 38.671024],\n              [-79.089758, 38.670924],\n              [-79.089958, 38.670624],\n              [-79.090258, 38.670424],\n              [-79.090458, 38.670124],\n              [-79.090658, 38.669724],\n              [-79.091058, 38.669324],\n              [-79.091181, 38.66916],\n              [-79.091261, 38.669044],\n              [-79.091358, 38.668924],\n              [-79.091658, 38.668724],\n              [-79.092058, 38.668424],\n              [-79.092171, 38.668254],\n              [-79.092249, 38.668122],\n              [-79.092363, 38.667676],\n              [-79.092658, 38.666424],\n              [-79.092658, 38.665724],\n              [-79.09274, 38.665324],\n              [-79.092858, 38.664924],\n              [-79.09295, 38.66444],\n              [-79.092958, 38.664417],\n              [-79.092958, 38.664024],\n              [-79.092858, 38.663524],\n              [-79.092858, 38.663224],\n              [-79.092758, 38.662824],\n              [-79.092758, 38.662424],\n              [-79.092858, 38.662224],\n              [-79.092858, 38.661425],\n              [-79.092842, 38.661362],\n              [-79.092758, 38.661025],\n              [-79.092758, 38.660825],\n              [-79.092658, 38.660425],\n              [-79.092758, 38.660125],\n              [-79.092758, 38.659825],\n              [-79.092958, 38.659525],\n              [-79.093358, 38.659325],\n              [-79.093658, 38.659225],\n              [-79.094058, 38.659125],\n              [-79.094458, 38.658925],\n              [-79.094758, 38.658925],\n              [-79.095258, 38.659025],\n              [-79.096558, 38.659025],\n              [-79.097058, 38.658825],\n              [-79.097558, 38.658725],\n              [-79.097959, 38.658625],\n              [-79.098359, 38.658325],\n              [-79.098659, 38.658225],\n              [-79.098859, 38.658125],\n              [-79.099159, 38.658125],\n              [-79.099759, 38.657925],\n              [-79.100159, 38.657725],\n              [-79.100659, 38.657525],\n              [-79.101659, 38.657325],\n              [-79.102159, 38.657325],\n              [-79.102759, 38.657225],\n              [-79.103359, 38.657225],\n              [-79.103955, 38.657015],\n              [-79.104659, 38.656825],\n              [-79.105159, 38.656625],\n              [-79.105659, 38.656325],\n              [-79.106059, 38.656225],\n              [-79.106359, 38.656225],\n              [-79.106759, 38.656325],\n              [-79.107059, 38.656425],\n              [-79.107459, 38.656725],\n              [-79.107759, 38.657025],\n              [-79.108159, 38.657325],\n              [-79.108577, 38.657608],\n              [-79.108859, 38.657725],\n              [-79.109259, 38.657925],\n              [-79.109459, 38.658225],\n              [-79.109659, 38.658425],\n              [-79.109674, 38.658444],\n              [-79.109959, 38.658825],\n              [-79.110459, 38.659225],\n              [-79.110959, 38.659525],\n              [-79.111559, 38.659725],\n              [-79.112062, 38.659813],\n              [-79.112459, 38.659825],\n              [-79.113259, 38.659825],\n              [-79.113659, 38.659625],\n              [-79.114059, 38.659525],\n              [-79.11421, 38.659423],\n              [-79.11434, 38.659335],\n              [-79.114392, 38.659309],\n              [-79.114759, 38.659125],\n              [-79.115559, 38.658925],\n              [-79.115958, 38.658817],\n              [-79.116359, 38.658925],\n              [-79.116659, 38.659025],\n              [-79.117159, 38.659125],\n              [-79.117172, 38.65913],\n              [-79.117201, 38.659142],\n              [-79.117304, 38.659183],\n              [-79.117659, 38.659325],\n              [-79.118259, 38.659525],\n              [-79.118859, 38.659825],\n              [-79.119359, 38.660025],\n              [-79.119759, 38.660125],\n              [-79.120259, 38.660224],\n              [-79.120456, 38.660216],\n              [-79.120759, 38.660124],\n              [-79.120959, 38.660025],\n              [-79.121259, 38.659925],\n              [-79.121459, 38.659825],\n              [-79.121773, 38.659816],\n              [-79.122059, 38.659825],\n              [-79.122259, 38.659825],\n              [-79.122359, 38.659725],\n              [-79.122659, 38.659525],\n              [-79.123059, 38.659125],\n              [-79.12326, 38.658925],\n              [-79.12336, 38.658625],\n              [-79.12356, 38.658225],\n              [-79.12366, 38.657925],\n              [-79.12356, 38.657725],\n              [-79.12356, 38.657525],\n              [-79.12346, 38.657425],\n              [-79.12346, 38.657225],\n              [-79.123458, 38.657081],\n              [-79.123457, 38.657025],\n              [-79.123457, 38.656925],\n              [-79.123559, 38.656725],\n              [-79.123659, 38.656625],\n              [-79.123759, 38.656425],\n              [-79.124359, 38.655825],\n              [-79.124759, 38.655625],\n              [-79.125058, 38.655526],\n              [-79.125859, 38.655225],\n              [-79.126359, 38.655116],\n              [-79.126958, 38.655326],\n              [-79.12796, 38.655425],\n              [-79.12886, 38.655525],\n              [-79.129458, 38.655326],\n              [-79.129759, 38.655026],\n              [-79.130059, 38.654626],\n              [-79.130104, 38.654523],\n              [-79.130115, 38.654499],\n              [-79.13036, 38.654026],\n              [-79.13046, 38.653925],\n              [-79.130759, 38.653726],\n              [-79.131059, 38.653226],\n              [-79.131225, 38.652447],\n              [-79.131228, 38.652433],\n              [-79.13126, 38.652225],\n              [-79.13126, 38.651925],\n              [-79.13116, 38.651325],\n              [-79.13112, 38.651205],\n              [-79.131069, 38.651084],\n              [-79.131046, 38.651028],\n              [-79.131087, 38.65093],\n              [-79.131125, 38.650794],\n              [-79.131164, 38.650658],\n              [-79.131253, 38.650323],\n              [-79.13186, 38.649825],\n              [-79.13256, 38.649125],\n              [-79.132744, 38.648427],\n              [-79.132726, 38.648177],\n              [-79.13276, 38.648125],\n              [-79.13266, 38.647525],\n              [-79.13286, 38.647225],\n              [-79.133253, 38.646819],\n              [-79.13346, 38.646625],\n              [-79.133544, 38.646347],\n              [-79.13356, 38.646025],\n              [-79.13356, 38.645325],\n              [-79.13366, 38.645225],\n              [-79.134256, 38.644817],\n              [-79.135007, 38.644545],\n              [-79.135061, 38.644523],\n              [-79.135563, 38.644091],\n              [-79.135578, 38.644072],\n              [-79.135646, 38.643962],\n              [-79.135651, 38.643725],\n              [-79.135654, 38.643609],\n              [-79.135677, 38.643375],\n              [-79.135747, 38.643121],\n              [-79.13616, 38.642625],\n              [-79.136377, 38.642408],\n              [-79.136739, 38.641722],\n              [-79.137014, 38.640662],\n              [-79.137059, 38.640563],\n              [-79.137064, 38.640544],\n              [-79.13716, 38.640325],\n              [-79.137351, 38.640024],\n              [-79.137356, 38.639658],\n              [-79.137356, 38.639631],\n              [-79.13736, 38.639125],\n              [-79.13726, 38.638525],\n              [-79.13756, 38.638025],\n              [-79.138257, 38.637721],\n              [-79.13896, 38.637525],\n              [-79.139495, 38.637296],\n              [-79.13966, 38.637225],\n              [-79.14016, 38.636825],\n              [-79.14056, 38.636125],\n              [-79.14126, 38.635625],\n              [-79.14186, 38.634925],\n              [-79.14226, 38.634825],\n              [-79.14266, 38.634425],\n              [-79.14276, 38.634025],\n              [-79.14286, 38.633525],\n              [-79.14326, 38.632825],\n              [-79.143654, 38.632324],\n              [-79.14366, 38.631725],\n              [-79.14366, 38.631225],\n              [-79.14378, 38.630946],\n              [-79.143953, 38.630519],\n              [-79.14436, 38.630326],\n              [-79.144457, 38.630225],\n              [-79.14466, 38.630026],\n              [-79.14486, 38.629226],\n              [-79.14596, 38.626826],\n              [-79.14606, 38.626726],\n              [-79.14636, 38.626526],\n              [-79.146452, 38.626262],\n              [-79.146509, 38.626177],\n              [-79.146655, 38.626023],\n              [-79.146744, 38.625827],\n              [-79.146802, 38.625775],\n              [-79.146977, 38.625649],\n              [-79.147008, 38.62553],\n              [-79.147038, 38.62541],\n              [-79.14706, 38.625326],\n              [-79.14726, 38.625126],\n              [-79.147377, 38.625126],\n              [-79.147439, 38.625127],\n              [-79.147444, 38.625077],\n              [-79.147446, 38.62507],\n              [-79.14746, 38.625026],\n              [-79.14756, 38.625026],\n              [-79.147869, 38.624831],\n              [-79.148061, 38.624726],\n              [-79.148081, 38.62467],\n              [-79.148085, 38.624661],\n              [-79.148095, 38.624654],\n              [-79.148239, 38.624551],\n              [-79.148291, 38.62451],\n              [-79.148387, 38.624433],\n              [-79.148436, 38.624384],\n              [-79.148555, 38.624263],\n              [-79.148602, 38.624211],\n              [-79.148752, 38.624043],\n              [-79.148787, 38.623999],\n              [-79.148819, 38.623967],\n              [-79.14909, 38.623665],\n              [-79.149136, 38.623575],\n              [-79.149139, 38.623569],\n              [-79.14916, 38.623526],\n              [-79.149173, 38.623501],\n              [-79.14926, 38.623326],\n              [-79.14946, 38.623026],\n              [-79.149644, 38.622842],\n              [-79.14967, 38.622832],\n              [-79.14966, 38.622811],\n              [-79.14966, 38.622726],\n              [-79.14976, 38.622426],\n              [-79.14986, 38.622326],\n              [-79.14996, 38.622126],\n              [-79.15006, 38.622126],\n              [-79.15016, 38.621926],\n              [-79.15096, 38.621126],\n              [-79.15106, 38.620826],\n              [-79.15126, 38.620626],\n              [-79.15146, 38.620226],\n              [-79.15166, 38.619426],\n              [-79.15176, 38.619226],\n              [-79.151762, 38.618973],\n              [-79.15176, 38.618926],\n              [-79.15186, 38.618726],\n              [-79.15206, 38.618126],\n              [-79.15226, 38.617826],\n              [-79.15236, 38.617526],\n              [-79.15246, 38.617126],\n              [-79.15256, 38.617026],\n              [-79.15246, 38.616826],\n              [-79.15256, 38.616526],\n              [-79.15266, 38.616526],\n              [-79.15276, 38.616326],\n              [-79.15286, 38.616226],\n              [-79.15306, 38.615926],\n              [-79.15326, 38.615726],\n              [-79.15336, 38.615526],\n              [-79.15346, 38.615426],\n              [-79.153473, 38.615399],\n              [-79.15356, 38.615226],\n              [-79.153568, 38.615211],\n              [-79.15366, 38.615026],\n              [-79.15386, 38.614726],\n              [-79.15396, 38.614526],\n              [-79.15406, 38.614126],\n              [-79.15416, 38.613926],\n              [-79.154155, 38.613623],\n              [-79.15426, 38.613526],\n              [-79.15436, 38.613126],\n              [-79.15446, 38.612826],\n              [-79.15486, 38.612226],\n              [-79.15496, 38.611926],\n              [-79.15516, 38.611726],\n              [-79.15526, 38.611426],\n              [-79.155358, 38.611233],\n              [-79.15546, 38.610926],\n              [-79.15546, 38.610763],\n              [-79.155562, 38.610492],\n              [-79.15556, 38.610126],\n              [-79.15556, 38.609226],\n              [-79.15546, 38.609126],\n              [-79.15536, 38.608926],\n              [-79.15536, 38.608826],\n              [-79.15516, 38.608726],\n              [-79.15486, 38.608126],\n              [-79.15466, 38.607926],\n              [-79.15466, 38.607726],\n              [-79.154597, 38.607674],\n              [-79.154594, 38.607662],\n              [-79.154588, 38.607636],\n              [-79.154565, 38.607542],\n              [-79.154558, 38.607522],\n              [-79.15456, 38.607226],\n              [-79.15456, 38.607026],\n              [-79.15446, 38.607026],\n              [-79.15446, 38.606726],\n              [-79.15436, 38.606526],\n              [-79.15446, 38.606326],\n              [-79.154545, 38.606154],\n              [-79.154561, 38.606123],\n              [-79.154659, 38.605927],\n              [-79.154713, 38.60589],\n              [-79.15476, 38.605826],\n              [-79.15516, 38.605426],\n              [-79.15536, 38.605326],\n              [-79.15556, 38.605126],\n              [-79.15586, 38.604926],\n              [-79.15666, 38.604126],\n              [-79.15686, 38.603726],\n              [-79.15736, 38.603226],\n              [-79.15766, 38.602826],\n              [-79.15786, 38.602626],\n              [-79.15816, 38.602526],\n              [-79.15836, 38.602226],\n              [-79.15856, 38.602126],\n              [-79.15876, 38.601926],\n              [-79.15876, 38.601826],\n              [-79.15886, 38.601626],\n              [-79.15896, 38.601527],\n              [-79.159161, 38.601227],\n              [-79.159261, 38.600927],\n              [-79.159261, 38.600627],\n              [-79.159361, 38.600327],\n              [-79.159261, 38.600027],\n              [-79.159261, 38.599827],\n              [-79.159161, 38.599627],\n              [-79.15906, 38.599427],\n              [-79.15886, 38.599227],\n              [-79.15876, 38.598927],\n              [-79.15866, 38.598827],\n              [-79.15866, 38.597627],\n              [-79.15876, 38.597427],\n              [-79.15876, 38.597227],\n              [-79.15886, 38.596927],\n              [-79.15896, 38.596727],\n              [-79.15896, 38.596527],\n              [-79.15916, 38.596127],\n              [-79.159361, 38.595927],\n              [-79.159461, 38.595927],\n              [-79.159461, 38.595727],\n              [-79.159761, 38.595427],\n              [-79.159761, 38.595127],\n              [-79.159661, 38.594927],\n              [-79.159561, 38.594827],\n              [-79.159361, 38.594727],\n              [-79.15916, 38.594627],\n              [-79.15896, 38.594527],\n              [-79.15879, 38.594443],\n              [-79.158759, 38.594427],\n              [-79.158737, 38.594404],\n              [-79.158711, 38.594377],\n              [-79.15866, 38.594327],\n              [-79.15846, 38.594227],\n              [-79.15836, 38.594127],\n              [-79.15826, 38.593927],\n              [-79.15826, 38.593527],\n              [-79.15816, 38.593527],\n              [-79.15826, 38.593427],\n              [-79.15826, 38.593127],\n              [-79.15836, 38.593027],\n              [-79.15856, 38.592727],\n              [-79.15866, 38.592327],\n              [-79.15906, 38.591927],\n              [-79.15906, 38.591727],\n              [-79.15926, 38.591527],\n              [-79.159361, 38.591327],\n              [-79.159561, 38.591127],\n              [-79.159661, 38.590827],\n              [-79.159761, 38.590627],\n              [-79.159861, 38.590227],\n              [-79.160061, 38.590027],\n              [-79.160261, 38.589927],\n              [-79.160361, 38.589727],\n              [-79.160661, 38.589527],\n              [-79.160861, 38.589227],\n              [-79.161361, 38.588727],\n              [-79.161461, 38.588427],\n              [-79.161661, 38.588227],\n              [-79.161961, 38.587327],\n              [-79.162005, 38.587194],\n              [-79.162061, 38.587027],\n              [-79.162261, 38.586427],\n              [-79.162352, 38.586223],\n              [-79.162361, 38.585927],\n              [-79.162428, 38.585794],\n              [-79.162461, 38.585727],\n              [-79.16245, 38.585662],\n              [-79.162661, 38.585327],\n              [-79.162761, 38.585027],\n              [-79.162961, 38.584827],\n              [-79.163053, 38.584422],\n              [-79.163161, 38.584227],\n              [-79.163261, 38.583927],\n              [-79.163288, 38.583873],\n              [-79.163324, 38.5838],\n              [-79.163361, 38.583727],\n              [-79.163361, 38.583427],\n              [-79.163461, 38.583127],\n              [-79.163461, 38.582927],\n              [-79.163445, 38.582825],\n              [-79.163661, 38.582627],\n              [-79.164261, 38.582027],\n              [-79.16446, 38.581728],\n              [-79.16466, 38.581628],\n              [-79.16476, 38.581428],\n              [-79.16506, 38.581228],\n              [-79.16536, 38.580928],\n              [-79.16546, 38.580928],\n              [-79.16576, 38.580728],\n              [-79.16606, 38.580628],\n              [-79.166265, 38.580532],\n              [-79.166295, 38.580515],\n              [-79.166372, 38.580472],\n              [-79.16666, 38.580328],\n              [-79.167059, 38.580111],\n              [-79.16726, 38.580028],\n              [-79.167561, 38.579827],\n              [-79.167861, 38.579527],\n              [-79.168061, 38.579227],\n              [-79.168061, 38.578927],\n              [-79.168104, 38.57883],\n              [-79.168061, 38.578582],\n              [-79.168061, 38.578127],\n              [-79.168153, 38.577747],\n              [-79.168155, 38.57769],\n              [-79.168158, 38.577613],\n              [-79.168161, 38.577527],\n              [-79.168361, 38.577127],\n              [-79.168561, 38.576827],\n              [-79.168661, 38.576627],\n              [-79.168948, 38.576352],\n              [-79.169159, 38.576127],\n              [-79.169361, 38.576027],\n              [-79.169461, 38.575827],\n              [-79.16954, 38.575708],\n              [-79.169661, 38.575527],\n              [-79.169861, 38.575227],\n              [-79.170061, 38.575027],\n              [-79.1702, 38.574912],\n              [-79.170266, 38.574828],\n              [-79.170288, 38.574783],\n              [-79.170461, 38.574527],\n              [-79.170661, 38.574227],\n              [-79.170861, 38.574127],\n              [-79.171161, 38.573227],\n              [-79.171261, 38.573027],\n              [-79.171393, 38.572762],\n              [-79.171661, 38.572228],\n              [-79.171553, 38.572027],\n              [-79.171661, 38.571928],\n              [-79.171661, 38.571628],\n              [-79.171561, 38.571328],\n              [-79.171514, 38.571233],\n              [-79.171492, 38.571188],\n              [-79.171362, 38.570928],\n              [-79.171148, 38.570731],\n              [-79.171062, 38.570428],\n              [-79.170862, 38.570128],\n              [-79.170861, 38.569928],\n              [-79.170761, 38.569628],\n              [-79.170661, 38.569228],\n              [-79.170661, 38.568728],\n              [-79.170861, 38.568328],\n              [-79.170957, 38.568124],\n              [-79.171161, 38.568028],\n              [-79.171561, 38.567828],\n              [-79.17174, 38.567768],\n              [-79.171861, 38.567728],\n              [-79.172051, 38.567621],\n              [-79.172361, 38.567528],\n              [-79.172761, 38.567328],\n              [-79.173361, 38.567128],\n              [-79.173761, 38.566828],\n              [-79.174115, 38.566651],\n              [-79.174156, 38.566621],\n              [-79.174514, 38.566542],\n              [-79.174541, 38.566515],\n              [-79.174764, 38.566393],\n              [-79.174846, 38.566345],\n              [-79.174884, 38.566322],\n              [-79.175258, 38.566223],\n              [-79.175561, 38.566128],\n              [-79.175861, 38.566028],\n              [-79.176258, 38.565923],\n              [-79.176461, 38.565728],\n              [-79.176661, 38.565528],\n              [-79.176761, 38.565128],\n              [-79.176961, 38.564728],\n              [-79.177161, 38.563928],\n              [-79.177161, 38.563628],\n              [-79.177261, 38.563328],\n              [-79.177661, 38.562728],\n              [-79.177756, 38.562525],\n              [-79.177961, 38.562328],\n              [-79.178361, 38.562128],\n              [-79.179161, 38.561528],\n              [-79.179661, 38.561028],\n              [-79.179961, 38.560828],\n              [-79.180361, 38.560428],\n              [-79.180561, 38.560128],\n              [-79.180861, 38.559928],\n              [-79.180961, 38.559628],\n              [-79.181161, 38.559328],\n              [-79.181261, 38.559128],\n              [-79.181661, 38.558528],\n              [-79.181652, 38.558401],\n              [-79.181661, 38.558328],\n              [-79.181761, 38.558128],\n              [-79.181761, 38.557828],\n              [-79.181861, 38.557528],\n              [-79.181852, 38.557458],\n              [-79.181861, 38.557128],\n              [-79.182061, 38.556328],\n              [-79.1821, 38.556242],\n              [-79.182261, 38.556028],\n              [-79.182261, 38.555728],\n              [-79.182308, 38.555734],\n              [-79.182461, 38.555428],\n              [-79.182561, 38.555128],\n              [-79.182961, 38.554528],\n              [-79.182961, 38.554428],\n              [-79.183061, 38.554128],\n              [-79.183161, 38.554028],\n              [-79.183261, 38.553828],\n              [-79.183461, 38.553228],\n              [-79.183561, 38.553028],\n              [-79.183561, 38.552728],\n              [-79.183661, 38.552328],\n              [-79.183761, 38.552128],\n              [-79.183861, 38.551828],\n              [-79.184061, 38.551528],\n              [-79.184261, 38.551328],\n              [-79.184461, 38.551228],\n              [-79.184761, 38.551128],\n              [-79.185061, 38.550828],\n              [-79.185361, 38.550628],\n              [-79.185561, 38.550528],\n              [-79.186161, 38.550128],\n              [-79.186161, 38.550028],\n              [-79.186361, 38.549928],\n              [-79.186961, 38.549328],\n              [-79.186993, 38.549246],\n              [-79.187261, 38.548928],\n              [-79.187461, 38.548628],\n              [-79.187861, 38.548228],\n              [-79.188461, 38.547828],\n              [-79.188661, 38.547628],\n              [-79.188961, 38.547428],\n              [-79.189161, 38.547128],\n              [-79.189361, 38.546728],\n              [-79.189561, 38.546528],\n              [-79.189661, 38.546328],\n              [-79.189788, 38.546138],\n              [-79.189861, 38.546028],\n              [-79.189961, 38.545828],\n              [-79.189961, 38.545728],\n              [-79.190061, 38.545428],\n              [-79.191061, 38.544428],\n              [-79.192061, 38.543828],\n              [-79.192461, 38.543428],\n              [-79.192807, 38.543052],\n              [-79.193361, 38.542529],\n              [-79.193461, 38.542429],\n              [-79.193561, 38.542029],\n              [-79.193661, 38.541729],\n              [-79.193962, 38.541429],\n              [-79.194062, 38.541029],\n              [-79.194207, 38.540811],\n              [-79.194262, 38.540729],\n              [-79.194362, 38.540529],\n              [-79.195062, 38.539829],\n              [-79.195169, 38.539618],\n              [-79.195362, 38.539329],\n              [-79.195362, 38.539129],\n              [-79.195462, 38.538929],\n              [-79.195562, 38.538629],\n              [-79.195662, 38.538229],\n              [-79.195662, 38.538029],\n              [-79.195762, 38.537829],\n              [-79.195962, 38.537529],\n              [-79.196162, 38.537329],\n              [-79.196162, 38.537229],\n              [-79.196362, 38.537129],\n              [-79.196962, 38.536729],\n              [-79.197762, 38.535929],\n              [-79.198062, 38.535729],\n              [-79.198462, 38.535529],\n              [-79.198762, 38.535229],\n              [-79.198962, 38.535129],\n              [-79.199062, 38.535029],\n              [-79.199062, 38.534329],\n              [-79.198962, 38.534129],\n              [-79.198962, 38.532829],\n              [-79.198862, 38.532729],\n              [-79.198862, 38.532129],\n              [-79.198962, 38.531929],\n              [-79.199262, 38.531729],\n              [-79.199962, 38.531029],\n              [-79.20014, 38.530763],\n              [-79.200162, 38.530729],\n              [-79.200462, 38.530129],\n              [-79.200662, 38.529929],\n              [-79.200862, 38.529429],\n              [-79.201067, 38.529013],\n              [-79.201162, 38.528729],\n              [-79.201262, 38.528429],\n              [-79.201362, 38.528029],\n              [-79.201462, 38.527829],\n              [-79.202062, 38.527229],\n              [-79.202262, 38.527129],\n              [-79.202562, 38.526829],\n              [-79.203062, 38.526429],\n              [-79.203962, 38.525829],\n              [-79.204262, 38.525729],\n              [-79.204362, 38.525629],\n              [-79.204662, 38.525529],\n              [-79.204862, 38.525429],\n              [-79.205162, 38.525229],\n              [-79.20535, 38.525021],\n              [-79.205662, 38.524829],\n              [-79.205862, 38.524529],\n              [-79.206062, 38.523929],\n              [-79.206062, 38.523629],\n              [-79.206162, 38.523529],\n              [-79.206263, 38.523127],\n              [-79.206462, 38.522729],\n              [-79.206462, 38.522329],\n              [-79.206362, 38.522129],\n              [-79.206362, 38.520529],\n              [-79.206562, 38.519729],\n              [-79.206562, 38.519529],\n              [-79.206662, 38.519229],\n              [-79.206662, 38.519129],\n              [-79.206762, 38.518829],\n              [-79.206862, 38.518429],\n              [-79.207062, 38.518029],\n              [-79.207162, 38.517629],\n              [-79.207359, 38.517437],\n              [-79.207462, 38.517129],\n              [-79.207762, 38.516729],\n              [-79.207862, 38.516429],\n              [-79.208062, 38.516229],\n              [-79.208062, 38.515929],\n              [-79.208262, 38.515729],\n              [-79.208662, 38.514929],\n              [-79.208862, 38.514629],\n              [-79.208962, 38.514329],\n              [-79.208962, 38.514129],\n              [-79.209062, 38.513929],\n              [-79.209162, 38.513629],\n              [-79.209062, 38.513429],\n              [-79.209062, 38.513229],\n              [-79.209162, 38.51283],\n              [-79.209662, 38.51203],\n              [-79.209762, 38.51193],\n              [-79.209762, 38.51113],\n              [-79.209731, 38.511036],\n              [-79.209662, 38.51083],\n              [-79.209762, 38.51053],\n              [-79.209762, 38.51033],\n              [-79.209962, 38.51003],\n              [-79.209962, 38.50993],\n              [-79.210162, 38.50953],\n              [-79.210362, 38.50923],\n              [-79.210462, 38.50893],\n              [-79.210662, 38.50853],\n              [-79.210762, 38.50823],\n              [-79.210962, 38.50803],\n              [-79.210962, 38.50743],\n              [-79.210462, 38.50693],\n              [-79.210462, 38.50683],\n              [-79.210362, 38.50683],\n              [-79.210362, 38.50673],\n              [-79.210262, 38.50673],\n              [-79.210262, 38.50663],\n              [-79.210062, 38.50643],\n              [-79.209862, 38.50633],\n              [-79.209762, 38.50613],\n              [-79.209662, 38.50603],\n              [-79.209362, 38.50583],\n              [-79.208962, 38.50543],\n              [-79.208362, 38.50503],\n              [-79.207462, 38.50413],\n              [-79.207362, 38.50393],\n              [-79.207262, 38.50383],\n              [-79.207162, 38.50383],\n              [-79.207062, 38.50363],\n              [-79.206962, 38.50353],\n              [-79.206962, 38.50323],\n              [-79.207162, 38.50303],\n              [-79.207162, 38.50293],\n              [-79.207262, 38.50283],\n              [-79.207462, 38.50253],\n              [-79.207562, 38.50243],\n              [-79.207562, 38.50213],\n              [-79.207662, 38.50203],\n              [-79.207662, 38.50173],\n              [-79.207762, 38.50163],\n              [-79.207762, 38.50073],\n              [-79.207851, 38.500652],\n              [-79.207762, 38.50053],\n              [-79.207887, 38.500436],\n              [-79.207876, 38.50013],\n              [-79.207998, 38.50013],\n              [-79.208086, 38.499757],\n              [-79.208149, 38.499486],\n              [-79.20834, 38.498794],\n              [-79.208417, 38.498336],\n              [-79.208394, 38.497976],\n              [-79.208469, 38.497321],\n              [-79.208493, 38.496999],\n              [-79.208567, 38.496782],\n              [-79.208723, 38.496509],\n              [-79.209461, 38.495813],\n              [-79.209583, 38.495698],\n              [-79.209706, 38.495582],\n              [-79.209729, 38.495301],\n              [-79.209767, 38.49504],\n              [-79.210011, 38.494291],\n              [-79.210029, 38.494239],\n              [-79.210101, 38.49407],\n              [-79.210174, 38.493901],\n              [-79.210594, 38.492921],\n              [-79.212413, 38.491834],\n              [-79.213795, 38.491008],\n              [-79.214431, 38.490819],\n              [-79.21475, 38.490684],\n              [-79.214947, 38.490451],\n              [-79.215013, 38.48996],\n              [-79.215215, 38.489269],\n              [-79.215362, 38.488899],\n              [-79.215693, 38.488603],\n              [-79.21628, 38.488425],\n              [-79.216647, 38.488319],\n              [-79.217816, 38.488013],\n              [-79.218628, 38.487695],\n              [-79.21907, 38.487449],\n              [-79.220147, 38.486223],\n              [-79.221409, 38.484845],\n              [-79.221483, 38.484701],\n              [-79.221313, 38.483889],\n              [-79.221026, 38.482507],\n              [-79.221012, 38.482094],\n              [-79.221012, 38.482072],\n              [-79.221011, 38.482026],\n              [-79.221008, 38.48173],\n              [-79.221002, 38.481492],\n              [-79.220902, 38.480726],\n              [-79.220964, 38.480598],\n              [-79.222171, 38.479647],\n              [-79.223738, 38.478481],\n              [-79.224344, 38.477852],\n              [-79.224586, 38.477596],\n              [-79.224701, 38.477482],\n              [-79.225058, 38.477113],\n              [-79.225073, 38.477098],\n              [-79.225106, 38.477064],\n              [-79.225154, 38.477014],\n              [-79.225474, 38.476658],\n              [-79.225672, 38.476479],\n              [-79.225918, 38.476368],\n              [-79.226798, 38.476186],\n              [-79.226814, 38.476183],\n              [-79.227135, 38.476118],\n              [-79.227405, 38.476063],\n              [-79.227692, 38.476008],\n              [-79.228794, 38.475153],\n              [-79.229319, 38.474826],\n              [-79.229812, 38.474668],\n              [-79.230477, 38.474592],\n              [-79.230785, 38.474497],\n              [-79.231573, 38.474077],\n              [-79.231588, 38.47407],\n              [-79.231644, 38.474046],\n              [-79.231658, 38.474041],\n              [-79.231805, 38.473988],\n              [-79.231859, 38.473964],\n              [-79.232094, 38.473859],\n              [-79.23273, 38.473554],\n              [-79.232844, 38.473504],\n              [-79.233136, 38.473388],\n              [-79.233437, 38.473285],\n              [-79.233744, 38.473197],\n              [-79.234019, 38.47311],\n              [-79.234198, 38.473061],\n              [-79.234369, 38.473014],\n              [-79.234408, 38.473005],\n              [-79.234471, 38.472991],\n              [-79.234501, 38.472977],\n              [-79.234544, 38.472957],\n              [-79.234552, 38.472953],\n              [-79.234566, 38.472947],\n              [-79.234584, 38.472939],\n              [-79.23571, 38.472418],\n              [-79.235952, 38.472264],\n              [-79.23624, 38.471878],\n              [-79.23689, 38.471471],\n              [-79.236903, 38.471463],\n              [-79.238328, 38.471062],\n              [-79.239117, 38.470753],\n              [-79.239128, 38.470749],\n              [-79.23963, 38.470338],\n              [-79.23976, 38.47021],\n              [-79.239779, 38.470191],\n              [-79.239862, 38.470109],\n              [-79.239884, 38.470087],\n              [-79.239887, 38.470045],\n              [-79.23992, 38.469933],\n              [-79.239997, 38.469769],\n              [-79.240079, 38.469571],\n              [-79.24018, 38.469248],\n              [-79.240297, 38.468925],\n              [-79.24042, 38.468641],\n              [-79.240461, 38.468518],\n              [-79.240487, 38.468392],\n              [-79.240499, 38.468224],\n              [-79.240518, 38.468114],\n              [-79.240554, 38.468007],\n              [-79.240621, 38.467885],\n              [-79.240941, 38.467472],\n              [-79.241174, 38.467146],\n              [-79.241428, 38.466814],\n              [-79.241625, 38.466521],\n              [-79.241802, 38.46622],\n              [-79.241891, 38.466036],\n              [-79.24196, 38.465845],\n              [-79.242007, 38.46565],\n              [-79.242037, 38.465317],\n              [-79.242052, 38.465158],\n              [-79.242059, 38.465145],\n              [-79.242068, 38.465128],\n              [-79.24204, 38.465059],\n              [-79.24205, 38.464985],\n              [-79.242079, 38.464912],\n              [-79.242191, 38.464631],\n              [-79.242017, 38.464314],\n              [-79.241876, 38.462769],\n              [-79.241842, 38.46263],\n              [-79.241834, 38.462594],\n              [-79.241753, 38.462273],\n              [-79.241668, 38.461934],\n              [-79.241665, 38.461922],\n              [-79.241638, 38.461568],\n              [-79.241694, 38.46124],\n              [-79.24174, 38.460968],\n              [-79.24177, 38.4608],\n              [-79.241948, 38.459799],\n              [-79.24195, 38.459762],\n              [-79.242004, 38.458714],\n              [-79.241996, 38.458009],\n              [-79.241856, 38.457109],\n              [-79.241889, 38.456747],\n              [-79.242077, 38.456378],\n              [-79.242164, 38.456012],\n              [-79.242298, 38.455527],\n              [-79.242231, 38.454905],\n              [-79.242391, 38.454494],\n              [-79.242671, 38.454189],\n              [-79.242952, 38.454031],\n              [-79.244126, 38.453936],\n              [-79.244327, 38.453915],\n              [-79.245675, 38.453388],\n              [-79.246489, 38.453283],\n              [-79.247477, 38.453314],\n              [-79.247904, 38.453409],\n              [-79.248318, 38.453649],\n              [-79.248746, 38.45401],\n              [-79.248752, 38.454015],\n              [-79.2491, 38.454309],\n              [-79.249226, 38.454389],\n              [-79.249733, 38.454505],\n              [-79.250067, 38.454642],\n              [-79.25036, 38.454663],\n              [-79.250801, 38.4546],\n              [-79.251255, 38.454653],\n              [-79.252431, 38.455333],\n              [-79.252977, 38.455759],\n              [-79.253177, 38.455843],\n              [-79.253524, 38.455906],\n              [-79.254298, 38.456012],\n              [-79.254485, 38.455938],\n              [-79.255767, 38.454284],\n              [-79.25586, 38.453999],\n              [-79.255994, 38.453032],\n              [-79.256087, 38.452903],\n              [-79.256407, 38.452261],\n              [-79.256488, 38.45205],\n              [-79.256821, 38.45088],\n              [-79.256981, 38.450575],\n              [-79.257369, 38.450164],\n              [-79.257862, 38.449774],\n              [-79.258463, 38.449437],\n              [-79.260159, 38.448826],\n              [-79.260559, 38.448584],\n              [-79.261106, 38.448078],\n              [-79.261949, 38.446592],\n              [-79.262073, 38.446325],\n              [-79.262575, 38.445851],\n              [-79.26269, 38.445634],\n              [-79.262835, 38.44523],\n              [-79.262906, 38.44466],\n              [-79.263497, 38.443805],\n              [-79.263571, 38.443695],\n              [-79.264226, 38.443442],\n              [-79.265044, 38.442698],\n              [-79.265157, 38.44247],\n              [-79.265272, 38.442235],\n              [-79.265318, 38.441889],\n              [-79.265324, 38.441843],\n              [-79.265469, 38.441555],\n              [-79.26558, 38.441336],\n              [-79.265664, 38.441199],\n              [-79.265771, 38.440987],\n              [-79.265873, 38.440714],\n              [-79.26595, 38.440488],\n              [-79.265983, 38.440393],\n              [-79.266057, 38.440176],\n              [-79.266202, 38.43977],\n              [-79.266332, 38.439448],\n              [-79.266366, 38.439388],\n              [-79.266398, 38.439333],\n              [-79.266496, 38.439195],\n              [-79.266608, 38.439064],\n              [-79.266657, 38.439017],\n              [-79.266669, 38.439005],\n              [-79.26685, 38.438834],\n              [-79.266994, 38.438686],\n              [-79.267128, 38.438531],\n              [-79.267161, 38.438493],\n              [-79.267322, 38.438282],\n              [-79.267355, 38.438274],\n              [-79.267466, 38.438249],\n              [-79.267478, 38.438246],\n              [-79.267485, 38.438245],\n              [-79.267493, 38.438243],\n              [-79.267502, 38.438241],\n              [-79.267624, 38.438213],\n              [-79.267849, 38.438161],\n              [-79.268037, 38.438052],\n              [-79.268427, 38.437714],\n              [-79.269183, 38.437387],\n              [-79.269228, 38.437389],\n              [-79.269324, 38.437394],\n              [-79.269364, 38.437396],\n              [-79.269372, 38.437397],\n              [-79.269393, 38.437398],\n              [-79.269448, 38.437401],\n              [-79.271537, 38.437507],\n              [-79.272041, 38.437388],\n              [-79.274521, 38.436366],\n              [-79.274912, 38.436019],\n              [-79.275025, 38.435463],\n              [-79.275202, 38.435115],\n              [-79.275345, 38.435],\n              [-79.277461, 38.434534],\n              [-79.277762, 38.43441],\n              [-79.278001, 38.434181],\n              [-79.278181, 38.433941],\n              [-79.278605, 38.433281],\n              [-79.278837, 38.433018],\n              [-79.279117, 38.432845],\n              [-79.281158, 38.432188],\n              [-79.281963, 38.432179],\n              [-79.282241, 38.432099],\n              [-79.28253, 38.431921],\n              [-79.282757, 38.431702],\n              [-79.282854, 38.431467],\n              [-79.282693, 38.431094],\n              [-79.282707, 38.430972],\n              [-79.282727, 38.430672],\n              [-79.282728, 38.430333],\n              [-79.282728, 38.430328],\n              [-79.282729, 38.430184],\n              [-79.282729, 38.430172],\n              [-79.282717, 38.4301],\n              [-79.28271, 38.430057],\n              [-79.282674, 38.429944],\n              [-79.282568, 38.429727],\n              [-79.282427, 38.429396],\n              [-79.282312, 38.429072],\n              [-79.282299, 38.429038],\n              [-79.282228, 38.428854],\n              [-79.282131, 38.428639],\n              [-79.282059, 38.428507],\n              [-79.281919, 38.428285],\n              [-79.281764, 38.428069],\n              [-79.281461, 38.427695],\n              [-79.28128, 38.427494],\n              [-79.281084, 38.427303],\n              [-79.28103, 38.427235],\n              [-79.280969, 38.427147],\n              [-79.280907, 38.427058],\n              [-79.280799, 38.426876],\n              [-79.280527, 38.426305],\n              [-79.280376, 38.425956],\n              [-79.280343, 38.425846],\n              [-79.280305, 38.425668],\n              [-79.280303, 38.425659],\n              [-79.280285, 38.4255],\n              [-79.280269, 38.425488],\n              [-79.280014, 38.425294],\n              [-79.279695, 38.424219],\n              [-79.279686, 38.423741],\n              [-79.279875, 38.423282],\n              [-79.280055, 38.421338],\n              [-79.280153, 38.420757],\n              [-79.280316, 38.420369],\n              [-79.282943, 38.418108],\n              [-79.283222, 38.418037],\n              [-79.283508, 38.418057],\n              [-79.285627, 38.419258],\n              [-79.286042, 38.419675],\n              [-79.286305, 38.419939],\n              [-79.28691, 38.420574],\n              [-79.288453, 38.420974],\n              [-79.290376, 38.42105],\n              [-79.290575, 38.421057],\n              [-79.290609, 38.421054],\n              [-79.290698, 38.421046],\n              [-79.290784, 38.421024],\n              [-79.290862, 38.420988],\n              [-79.29093, 38.420941],\n              [-79.290937, 38.420934],\n              [-79.290959, 38.420911],\n              [-79.290971, 38.420899],\n              [-79.291031, 38.420838],\n              [-79.291317, 38.420528],\n              [-79.291361, 38.42048],\n              [-79.291497, 38.420319],\n              [-79.291507, 38.420307],\n              [-79.291673, 38.42011],\n              [-79.291758, 38.420015],\n              [-79.291764, 38.420009],\n              [-79.291894, 38.419864],\n              [-79.292009, 38.419744],\n              [-79.292901, 38.419573],\n              [-79.293065, 38.419464],\n              [-79.293203, 38.419325],\n              [-79.293417, 38.419017],\n              [-79.293668, 38.41869],\n              [-79.29392, 38.41857],\n              [-79.295547, 38.418273],\n              [-79.295625, 38.418258],\n              [-79.295728, 38.41833],\n              [-79.29582, 38.418358],\n              [-79.295918, 38.418372],\n              [-79.296016, 38.418371],\n              [-79.296114, 38.418357],\n              [-79.296239, 38.418285],\n              [-79.296324, 38.418228],\n              [-79.296329, 38.418224],\n              [-79.296349, 38.418211],\n              [-79.296356, 38.418206],\n              [-79.296493, 38.418098],\n              [-79.296616, 38.417981],\n              [-79.296668, 38.417922],\n              [-79.297243, 38.417266],\n              [-79.297272, 38.417223],\n              [-79.29739, 38.417046],\n              [-79.29752, 38.416821],\n              [-79.297588, 38.416688],\n              [-79.29759, 38.416683],\n              [-79.297613, 38.416637],\n              [-79.297639, 38.416577],\n              [-79.297692, 38.416454],\n              [-79.297728, 38.416429],\n              [-79.298415, 38.415947],\n              [-79.298736, 38.41585],\n              [-79.298904, 38.415701],\n              [-79.299237, 38.41536],\n              [-79.299653, 38.415127],\n              [-79.300088, 38.414899],\n              [-79.300691, 38.414821],\n              [-79.301068, 38.414879],\n              [-79.302515, 38.415368],\n              [-79.303835, 38.415464],\n              [-79.304584, 38.415519],\n              [-79.304841, 38.41546],\n              [-79.305233, 38.41537],\n              [-79.305554, 38.415297],\n              [-79.305709, 38.415248],\n              [-79.306232, 38.415083],\n              [-79.306395, 38.414942],\n              [-79.306672, 38.414497],\n              [-79.307214, 38.413873],\n              [-79.307894, 38.413302],\n              [-79.308733, 38.412853],\n              [-79.308923, 38.412754],\n              [-79.309516, 38.412685],\n              [-79.309719, 38.41269],\n              [-79.310287, 38.412739],\n              [-79.310541, 38.412684],\n              [-79.310765, 38.412636],\n              [-79.311051, 38.412479],\n              [-79.311136, 38.412412],\n              [-79.311355, 38.41224],\n              [-79.31168, 38.412037],\n              [-79.312214, 38.411901],\n              [-79.312279, 38.411884],\n              [-79.312652, 38.411979],\n              [-79.316529, 38.412984],\n              [-79.316723, 38.413035],\n              [-79.318441, 38.413484],\n              [-79.323594, 38.414829],\n              [-79.32531, 38.415277],\n              [-79.325346, 38.415287],\n              [-79.325453, 38.415316],\n              [-79.325488, 38.415325],\n              [-79.325974, 38.41546],\n              [-79.32743, 38.415863],\n              [-79.327915, 38.415997],\n              [-79.328183, 38.416071],\n              [-79.328986, 38.416294],\n              [-79.329253, 38.416368],\n              [-79.3302, 38.416619],\n              [-79.333039, 38.417372],\n              [-79.333985, 38.417623],\n              [-79.334421, 38.417739],\n              [-79.335729, 38.418086],\n              [-79.336164, 38.418201],\n              [-79.336466, 38.418281],\n              [-79.336526, 38.418297],\n              [-79.33737, 38.418521],\n              [-79.33761, 38.418585],\n              [-79.337671, 38.418601],\n              [-79.337911, 38.418665],\n              [-79.338628, 38.418855],\n              [-79.338671, 38.418866],\n              [-79.338867, 38.418918],\n              [-79.343488, 38.420143],\n              [-79.35735, 38.423816],\n              [-79.361971, 38.42504],\n              [-79.363342, 38.425403],\n              [-79.367451, 38.426492],\n              [-79.368821, 38.426855],\n              [-79.369084, 38.426925],\n              [-79.369485, 38.427032],\n              [-79.369873, 38.427135],\n              [-79.370135, 38.427205],\n              [-79.371596, 38.42762],\n              [-79.374159, 38.428349],\n              [-79.374756, 38.42852],\n              [-79.375976, 38.428861],\n              [-79.377437, 38.429269],\n              [-79.378193, 38.429481],\n              [-79.38046, 38.430115],\n              [-79.381215, 38.430326],\n              [-79.383092, 38.430852],\n              [-79.384501, 38.431246],\n              [-79.388722, 38.432424],\n              [-79.390598, 38.432948],\n              [-79.392126, 38.433377],\n              [-79.394448, 38.434029],\n              [-79.396559, 38.434617],\n              [-79.396708, 38.434659],\n              [-79.398223, 38.435082],\n              [-79.398235, 38.435085],\n              [-79.400136, 38.435617],\n              [-79.403063, 38.436437],\n              [-79.405835, 38.437215],\n              [-79.407735, 38.437748],\n              [-79.407769, 38.437757],\n              [-79.407988, 38.437818],\n              [-79.408027, 38.437829],\n              [-79.408148, 38.437862],\n              [-79.408536, 38.437969],\n              [-79.408904, 38.438072],\n              [-79.409196, 38.438154],\n              [-79.409227, 38.438162],\n              [-79.4095, 38.438238],\n              [-79.409912, 38.438354],\n              [-79.41041, 38.438493],\n              [-79.410713, 38.438578],\n              [-79.413144, 38.439259],\n              [-79.420435, 38.4413],\n              [-79.422866, 38.44198],\n              [-79.422931, 38.441998],\n              [-79.424815, 38.442527],\n              [-79.425391, 38.442691],\n              [-79.425718, 38.442784],\n              [-79.427117, 38.44318],\n              [-79.427692, 38.443343],\n              [-79.427938, 38.443413],\n              [-79.428676, 38.443622],\n              [-79.428921, 38.443691],\n              [-79.428942, 38.443697],\n              [-79.429174, 38.443763],\n              [-79.429811, 38.443944],\n              [-79.429933, 38.443978],\n              [-79.430185, 38.444049],\n              [-79.430453, 38.444126],\n              [-79.430734, 38.444207],\n              [-79.431258, 38.444359],\n              [-79.431526, 38.444436],\n              [-79.431579, 38.444452],\n              [-79.431738, 38.444501],\n              [-79.431791, 38.444517],\n              [-79.431806, 38.444521],\n              [-79.43185, 38.444534],\n              [-79.431864, 38.444538],\n              [-79.432059, 38.444591],\n              [-79.43264, 38.444751],\n              [-79.432834, 38.444804],\n              [-79.435612, 38.445592],\n              [-79.437035, 38.445995],\n              [-79.443947, 38.447955],\n              [-79.446724, 38.448743],\n              [-79.446762, 38.448754],\n              [-79.446874, 38.448786],\n              [-79.446911, 38.448796],\n              [-79.446973, 38.448814],\n              [-79.44762, 38.448998],\n              [-79.447677, 38.449014],\n              [-79.449974, 38.449665],\n              [-79.45074, 38.449882],\n              [-79.451114, 38.449988],\n              [-79.451657, 38.450142],\n              [-79.452234, 38.450306],\n              [-79.452607, 38.450412],\n              [-79.457287, 38.451741],\n              [-79.471327, 38.455727],\n              [-79.476006, 38.457055],\n              [-79.476085, 38.457078],\n              [-79.476321, 38.457145],\n              [-79.476399, 38.457167],\n              [-79.476641, 38.457236],\n              [-79.478361, 38.46025],\n              [-79.479204, 38.461727],\n              [-79.483893, 38.469944],\n              [-79.485737, 38.473175],\n              [-79.486067, 38.473752],\n              [-79.487055, 38.475483],\n              [-79.487384, 38.47606],\n              [-79.487755, 38.476709],\n              [-79.488865, 38.478656],\n              [-79.489235, 38.479304],\n              [-79.490705, 38.481879],\n              [-79.495113, 38.4896],\n              [-79.496502, 38.492033],\n              [-79.496579, 38.492176],\n              [-79.496588, 38.492192],\n              [-79.496615, 38.492238],\n              [-79.496624, 38.492254],\n              [-79.496636, 38.492275],\n              [-79.496652, 38.492304],\n              [-79.496659, 38.492316],\n              [-79.496915, 38.492763],\n              [-79.49768, 38.4941],\n              [-79.497935, 38.494545],\n              [-79.498041, 38.494731],\n              [-79.498229, 38.49506],\n              [-79.498359, 38.495288],\n              [-79.498465, 38.495473],\n              [-79.498544, 38.49561],\n              [-79.49868, 38.495844],\n              [-79.498726, 38.495924],\n              [-79.49951, 38.497277],\n              [-79.499771, 38.497728],\n              [-79.499771, 38.497587],\n              [-79.499779, 38.497598],\n              [-79.499805, 38.497633],\n              [-79.499813, 38.497644],\n              [-79.499826, 38.497663],\n              [-79.499865, 38.497719],\n              [-79.499877, 38.497737],\n              [-79.499969, 38.497869],\n              [-79.500243, 38.498263],\n              [-79.500334, 38.498394],\n              [-79.500359, 38.498429],\n              [-79.500433, 38.498534],\n              [-79.500457, 38.498568],\n              [-79.500574, 38.498743],\n              [-79.500925, 38.499269],\n              [-79.501041, 38.499444],\n              [-79.501063, 38.499485],\n              [-79.501128, 38.499608],\n              [-79.50115, 38.499649],\n              [-79.501171, 38.499688],\n              [-79.501233, 38.499805],\n              [-79.501237, 38.499812],\n              [-79.501248, 38.499834],\n              [-79.501254, 38.499845],\n              [-79.501559, 38.500396],\n              [-79.502475, 38.502051],\n              [-79.502781, 38.502604],\n              [-79.503001, 38.503001],\n              [-79.503471, 38.50385],\n              [-79.503651, 38.504198],\n              [-79.503859, 38.504603],\n              [-79.503935, 38.504731],\n              [-79.503947, 38.504752],\n              [-79.504165, 38.505115],\n              [-79.504233, 38.505229],\n              [-79.504242, 38.505243],\n              [-79.504521, 38.505689],\n              [-79.505022, 38.506488],\n              [-79.505337, 38.50704],\n              [-79.505599, 38.507498],\n              [-79.506181, 38.508468],\n              [-79.506508, 38.509012],\n              [-79.507929, 38.511378],\n              [-79.508512, 38.512348],\n              [-79.508698, 38.512657],\n              [-79.509257, 38.513587],\n              [-79.509443, 38.513897],\n              [-79.509625, 38.5142],\n              [-79.510173, 38.515113],\n              [-79.510356, 38.515417],\n              [-79.51042, 38.515525],\n              [-79.510437, 38.515552],\n              [-79.510596, 38.515816],\n              [-79.511247, 38.516901],\n              [-79.511293, 38.516978],\n              [-79.511309, 38.517004],\n              [-79.512344, 38.518727],\n              [-79.515261, 38.523584],\n              [-79.515448, 38.523896],\n              [-79.516484, 38.52562],\n              [-79.51653, 38.525696],\n              [-79.516669, 38.525928],\n              [-79.516715, 38.526005],\n              [-79.516885, 38.526289],\n              [-79.517398, 38.527142],\n              [-79.517569, 38.527427],\n              [-79.517857, 38.527906],\n              [-79.518298, 38.52864],\n              [-79.518722, 38.529347],\n              [-79.51901, 38.529827],\n              [-79.519412, 38.530496],\n              [-79.520618, 38.532504],\n              [-79.52102, 38.533173],\n              [-79.52111, 38.533323],\n              [-79.521381, 38.533775],\n              [-79.521472, 38.533926],\n              [-79.521472, 38.534126],\n              [-79.521672, 38.534226],\n              [-79.521702, 38.534257],\n              [-79.521762, 38.534317],\n              [-79.521791, 38.534331],\n              [-79.521822, 38.534329],\n              [-79.521872, 38.534326],\n              [-79.521912, 38.534345],\n              [-79.52194, 38.534359],\n              [-79.522005, 38.534392],\n              [-79.522072, 38.534426],\n              [-79.522195, 38.534507],\n              [-79.522257, 38.534548],\n              [-79.522372, 38.534626],\n              [-79.522672, 38.534726],\n              [-79.523072, 38.534926],\n              [-79.523572, 38.535026],\n              [-79.523872, 38.535326],\n              [-79.524072, 38.535626],\n              [-79.524572, 38.536126],\n              [-79.524974, 38.536322],\n              [-79.525372, 38.536426],\n              [-79.525872, 38.536726],\n              [-79.526372, 38.536926],\n              [-79.526464, 38.536987],\n              [-79.526672, 38.537126],\n              [-79.526772, 38.537526],\n              [-79.526872, 38.538025],\n              [-79.527073, 38.538325],\n              [-79.528273, 38.539125],\n              [-79.528273, 38.539825],\n              [-79.528373, 38.540225],\n              [-79.528573, 38.540525],\n              [-79.528573, 38.540625],\n              [-79.528673, 38.540625],\n              [-79.530173, 38.541825],\n              [-79.530273, 38.541925],\n              [-79.530573, 38.541925],\n              [-79.531073, 38.542025],\n              [-79.531473, 38.542125],\n              [-79.531773, 38.542325],\n              [-79.531973, 38.542425],\n              [-79.531873, 38.542825],\n              [-79.531973, 38.543025],\n              [-79.531973, 38.543125],\n              [-79.533173, 38.544725],\n              [-79.533573, 38.544925],\n              [-79.533773, 38.545225],\n              [-79.533373, 38.546025],\n              [-79.533373, 38.546225],\n              [-79.533673, 38.546625],\n              [-79.534473, 38.547425],\n              [-79.534631, 38.547543],\n              [-79.534873, 38.547725],\n              [-79.535673, 38.548325],\n              [-79.535873, 38.548725],\n              [-79.536073, 38.549025],\n              [-79.536273, 38.549425],\n              [-79.536273, 38.549825],\n              [-79.536473, 38.550325],\n              [-79.536873, 38.550925],\n              [-79.537373, 38.551225],\n              [-79.537525, 38.551347],\n              [-79.537873, 38.551625],\n              [-79.538273, 38.551825],\n              [-79.538673, 38.551925],\n              [-79.539173, 38.552025],\n              [-79.539773, 38.552125],\n              [-79.540773, 38.552125],\n              [-79.541173, 38.552325],\n              [-79.541573, 38.552625],\n              [-79.542573, 38.553225],\n              [-79.543173, 38.553525],\n              [-79.543673, 38.553725],\n              [-79.544173, 38.554025],\n              [-79.544573, 38.554125],\n              [-79.545073, 38.554325],\n              [-79.545673, 38.554525],\n              [-79.545973, 38.554925],\n              [-79.546273, 38.555125],\n              [-79.547073, 38.555525],\n              [-79.547134, 38.555537],\n              [-79.547574, 38.555625],\n              [-79.548174, 38.555925],\n              [-79.548674, 38.556125],\n              [-79.548974, 38.556425],\n              [-79.549374, 38.556725],\n              [-79.549474, 38.556725],\n              [-79.554674, 38.559925],\n              [-79.554974, 38.560025],\n              [-79.555474, 38.560225],\n              [-79.555974, 38.560225],\n              [-79.556774, 38.560325],\n              [-79.557374, 38.560425],\n              [-79.558074, 38.560725],\n              [-79.558774, 38.560925],\n              [-79.560174, 38.560925],\n              [-79.560974, 38.560825],\n              [-79.561674, 38.560825],\n              [-79.562174, 38.560925],\n              [-79.562474, 38.560925],\n              [-79.562674, 38.561025],\n              [-79.565574, 38.562325],\n              [-79.566274, 38.562525],\n              [-79.567074, 38.562725],\n              [-79.567974, 38.562825],\n              [-79.568265, 38.562854],\n              [-79.568974, 38.562925],\n              [-79.570574, 38.562925],\n              [-79.571574, 38.563125],\n              [-79.571774, 38.563125],\n              [-79.571962, 38.563194],\n              [-79.572527, 38.563402],\n              [-79.572715, 38.563471],\n              [-79.572804, 38.563504],\n              [-79.573072, 38.563601],\n              [-79.573162, 38.563634],\n              [-79.575935, 38.564657],\n              [-79.584256, 38.567724],\n              [-79.58703, 38.568747],\n              [-79.589188, 38.569543],\n              [-79.595664, 38.571932],\n              [-79.597823, 38.572729],\n              [-79.597841, 38.572734],\n              [-79.59788, 38.572745],\n              [-79.597898, 38.572752],\n              [-79.597916, 38.57276],\n              [-79.597929, 38.572765],\n              [-79.597955, 38.572776],\n              [-79.59797, 38.572783],\n              [-79.597984, 38.572789],\n              [-79.598219, 38.572874],\n              [-79.598926, 38.573132],\n              [-79.599163, 38.573218],\n              [-79.606664, 38.575973],\n              [-79.615338, 38.579158],\n              [-79.624777, 38.582624],\n              [-79.629169, 38.584232],\n              [-79.636673, 38.586981],\n              [-79.636767, 38.587015],\n              [-79.637049, 38.587118],\n              [-79.637143, 38.587153],\n              [-79.638292, 38.587574],\n              [-79.641741, 38.588836],\n              [-79.642892, 38.589257],\n              [-79.643856, 38.589611],\n              [-79.64675, 38.590672],\n              [-79.647715, 38.591026],\n              [-79.647987, 38.591125],\n              [-79.648805, 38.591424],\n              [-79.649078, 38.591523],\n              [-79.649178, 38.591423],\n              [-79.649178, 38.591023],\n              [-79.649378, 38.590723],\n              [-79.649878, 38.590323],\n              [-79.650478, 38.589123],\n              [-79.650578, 38.588523],\n              [-79.65063, 38.58839],\n              [-79.650778, 38.588023],\n              [-79.651178, 38.587223],\n              [-79.651878, 38.586523],\n              [-79.653078, 38.585523],\n              [-79.653578, 38.585123],\n              [-79.653978, 38.584723],\n              [-79.654478, 38.584024],\n              [-79.655178, 38.583124],\n              [-79.655478, 38.582424],\n              [-79.655878, 38.581424],\n              [-79.655878, 38.581024],\n              [-79.655778, 38.580424],\n              [-79.655478, 38.579924],\n              [-79.655407, 38.579502],\n              [-79.655378, 38.579324],\n              [-79.655478, 38.578724],\n              [-79.655578, 38.578324],\n              [-79.655778, 38.577724],\n              [-79.655878, 38.576924],\n              [-79.656116, 38.576203],\n              [-79.656262, 38.576019],\n              [-79.65636, 38.575958],\n              [-79.656578, 38.575824],\n              [-79.656658, 38.575783],\n              [-79.656761, 38.575732],\n              [-79.656931, 38.575647],\n              [-79.656978, 38.575624],\n              [-79.657345, 38.575256],\n              [-79.657378, 38.575224],\n              [-79.657494, 38.575137],\n              [-79.657593, 38.575062],\n              [-79.657778, 38.574924],\n              [-79.657841, 38.574797],\n              [-79.657897, 38.574686],\n              [-79.657978, 38.574524],\n              [-79.657978, 38.574224],\n              [-79.657938, 38.574106],\n              [-79.657878, 38.573924],\n              [-79.657878, 38.573524],\n              [-79.657978, 38.573324],\n              [-79.658178, 38.573024],\n              [-79.658783, 38.572822],\n              [-79.659358, 38.572631],\n              [-79.659478, 38.572624],\n              [-79.659778, 38.572624],\n              [-79.660378, 38.572524],\n              [-79.660436, 38.57248],\n              [-79.660778, 38.572224],\n              [-79.661173, 38.571925],\n              [-79.661578, 38.571524],\n              [-79.662278, 38.570924],\n              [-79.662678, 38.570624],\n              [-79.662878, 38.570424],\n              [-79.662852, 38.570321],\n              [-79.662778, 38.570024],\n              [-79.662678, 38.569624],\n              [-79.662588, 38.569252],\n              [-79.662451, 38.568778],\n              [-79.662378, 38.568524],\n              [-79.662278, 38.568024],\n              [-79.661978, 38.567624],\n              [-79.661813, 38.5675],\n              [-79.661578, 38.567324],\n              [-79.661478, 38.567324],\n              [-79.661389, 38.567282],\n              [-79.661332, 38.567253],\n              [-79.661164, 38.567167],\n              [-79.661078, 38.567124],\n              [-79.660578, 38.566724],\n              [-79.660589, 38.566667],\n              [-79.660677, 38.566226],\n              [-79.660678, 38.565624],\n              [-79.660678, 38.565224],\n              [-79.660578, 38.564824],\n              [-79.660478, 38.564524],\n              [-79.660467, 38.564518],\n              [-79.660078, 38.564324],\n              [-79.659902, 38.564086],\n              [-79.659478, 38.563524],\n              [-79.659415, 38.563336],\n              [-79.659378, 38.563224],\n              [-79.659278, 38.563024],\n              [-79.659178, 38.562724],\n              [-79.659278, 38.562424],\n              [-79.659578, 38.562224],\n              [-79.660278, 38.561524],\n              [-79.66063, 38.561382],\n              [-79.660778, 38.561324],\n              [-79.661278, 38.561024],\n              [-79.661428, 38.560968],\n              [-79.662078, 38.560724],\n              [-79.662376, 38.560604],\n              [-79.662578, 38.560524],\n              [-79.663178, 38.560524],\n              [-79.663478, 38.560624],\n              [-79.663878, 38.560724],\n              [-79.664478, 38.560824],\n              [-79.664878, 38.560924],\n              [-79.665078, 38.560924],\n              [-79.665178, 38.560724],\n              [-79.665196, 38.560668],\n              [-79.665278, 38.560424],\n              [-79.665278, 38.560124],\n              [-79.665378, 38.559824],\n              [-79.665442, 38.559697],\n              [-79.665478, 38.559645],\n              [-79.66549, 38.559629],\n              [-79.665532, 38.559467],\n              [-79.665549, 38.559407],\n              [-79.665563, 38.559365],\n              [-79.665578, 38.559324],\n              [-79.665639, 38.559262],\n              [-79.665671, 38.559231],\n              [-79.665703, 38.559198],\n              [-79.665778, 38.559124],\n              [-79.665778, 38.559024],\n              [-79.665855, 38.558714],\n              [-79.665878, 38.558624],\n              [-79.665978, 38.558224],\n              [-79.665978, 38.557824],\n              [-79.665957, 38.557722],\n              [-79.665892, 38.557392],\n              [-79.665878, 38.557325],\n              [-79.665978, 38.556924],\n              [-79.666278, 38.556524],\n              [-79.666878, 38.555924],\n              [-79.667178, 38.555024],\n              [-79.667178, 38.554924],\n              [-79.667078, 38.554424],\n              [-79.667078, 38.553924],\n              [-79.667079, 38.553793],\n              [-79.667081, 38.553604],\n              [-79.667089, 38.55356],\n              [-79.667278, 38.552624],\n              [-79.667678, 38.552124],\n              [-79.667978, 38.551824],\n              [-79.668378, 38.551524],\n              [-79.668678, 38.551324],\n              [-79.669078, 38.551124],\n              [-79.669378, 38.551024],\n              [-79.669578, 38.550824],\n              [-79.669778, 38.550324],\n              [-79.669778, 38.550124],\n              [-79.669678, 38.550024],\n              [-79.669478, 38.549724],\n              [-79.669278, 38.549524],\n              [-79.669078, 38.549124],\n              [-79.668878, 38.548524],\n              [-79.668878, 38.548024],\n              [-79.669078, 38.547524],\n              [-79.669378, 38.547124],\n              [-79.669578, 38.546824],\n              [-79.669678, 38.546524],\n              [-79.669578, 38.546224],\n              [-79.669378, 38.545924],\n              [-79.669178, 38.545724],\n              [-79.669178, 38.545324],\n              [-79.669378, 38.544924],\n              [-79.669678, 38.544524],\n              [-79.669678, 38.543424],\n              [-79.670078, 38.542824],\n              [-79.670378, 38.542524],\n              [-79.670578, 38.542224],\n              [-79.670678, 38.541824],\n              [-79.670778, 38.541524],\n              [-79.670778, 38.541324],\n              [-79.670878, 38.541024],\n              [-79.670678, 38.540724],\n              [-79.670678, 38.540324],\n              [-79.670378, 38.540224],\n              [-79.669878, 38.540224],\n              [-79.669377, 38.540125],\n              [-79.669202, 38.540096],\n              [-79.668907, 38.540054],\n              [-79.668777, 38.540024],\n              [-79.668376, 38.539824],\n              [-79.667977, 38.539625],\n              [-79.667776, 38.539425],\n              [-79.667377, 38.539124],\n              [-79.667076, 38.538825],\n              [-79.666876, 38.538624],\n              [-79.666876, 38.538325],\n              [-79.667076, 38.538024],\n              [-79.667377, 38.537824],\n              [-79.667576, 38.537524],\n              [-79.667834, 38.537329],\n              [-79.667777, 38.537184],\n              [-79.667776, 38.537107],\n              [-79.667776, 38.536924],\n              [-79.667876, 38.536524],\n              [-79.667876, 38.536324],\n              [-79.668076, 38.535624],\n              [-79.668076, 38.535524],\n              [-79.668476, 38.534724],\n              [-79.668776, 38.534224],\n              [-79.669276, 38.533824],\n              [-79.669576, 38.533624],\n              [-79.669776, 38.533325],\n              [-79.670076, 38.532825],\n              [-79.670276, 38.532325],\n              [-79.670317, 38.53224],\n              [-79.670437, 38.532017],\n              [-79.670579, 38.531825],\n              [-79.670658, 38.531765],\n              [-79.670676, 38.531751],\n              [-79.670977, 38.531525],\n              [-79.671277, 38.531125],\n              [-79.671777, 38.530725],\n              [-79.671796, 38.530696],\n              [-79.671977, 38.530425],\n              [-79.672277, 38.530125],\n              [-79.672577, 38.529625],\n              [-79.672777, 38.529325],\n              [-79.672977, 38.528725],\n              [-79.672777, 38.528625],\n              [-79.672577, 38.528625],\n              [-79.671977, 38.528225],\n              [-79.671777, 38.528025],\n              [-79.671777, 38.527825],\n              [-79.671677, 38.527725],\n              [-79.671575, 38.527522],\n              [-79.671203, 38.527374],\n              [-79.671077, 38.527325],\n              [-79.670977, 38.527225],\n              [-79.670477, 38.527125],\n              [-79.670077, 38.527125],\n              [-79.669781, 38.526927],\n              [-79.669759, 38.526905],\n              [-79.669477, 38.526625],\n              [-79.669179, 38.526229],\n              [-79.668977, 38.525725],\n              [-79.668777, 38.525325],\n              [-79.668377, 38.525025],\n              [-79.668191, 38.524972],\n              [-79.667677, 38.524825],\n              [-79.667177, 38.524625],\n              [-79.666777, 38.524325],\n              [-79.666577, 38.523925],\n              [-79.666177, 38.523425],\n              [-79.665977, 38.523025],\n              [-79.665677, 38.522525],\n              [-79.665377, 38.522125],\n              [-79.665177, 38.521625],\n              [-79.664977, 38.521325],\n              [-79.664677, 38.521025],\n              [-79.664577, 38.520725],\n              [-79.664377, 38.520425],\n              [-79.664277, 38.520125],\n              [-79.663577, 38.519425],\n              [-79.663277, 38.519025],\n              [-79.662977, 38.518725],\n              [-79.662777, 38.518325],\n              [-79.662777, 38.517725],\n              [-79.662677, 38.517425],\n              [-79.662677, 38.517125],\n              [-79.662745, 38.516918],\n              [-79.662777, 38.516825],\n              [-79.662477, 38.516125],\n              [-79.662377, 38.515925],\n              [-79.662254, 38.51574],\n              [-79.662177, 38.515625],\n              [-79.662077, 38.515525],\n              [-79.662177, 38.515225],\n              [-79.662377, 38.514925],\n              [-79.662777, 38.514625],\n              [-79.663077, 38.514425],\n              [-79.663477, 38.514125],\n              [-79.663977, 38.514025],\n              [-79.664177, 38.514025],\n              [-79.664985, 38.513946],\n              [-79.66506, 38.513937],\n              [-79.665177, 38.513925],\n              [-79.665677, 38.513825],\n              [-79.6663, 38.513557],\n              [-79.666377, 38.513525],\n              [-79.666577, 38.513424],\n              [-79.666977, 38.513225],\n              [-79.667404, 38.513011],\n              [-79.667577, 38.512925],\n              [-79.667977, 38.512625],\n              [-79.668219, 38.51248],\n              [-79.668477, 38.512325],\n              [-79.668777, 38.512025],\n              [-79.668777, 38.511807],\n              [-79.668868, 38.511728],\n              [-79.668882, 38.511549],\n              [-79.668962, 38.511446],\n              [-79.668977, 38.511425],\n              [-79.669077, 38.511025],\n              [-79.669131, 38.510981],\n              [-79.669131, 38.51096],\n              [-79.669132, 38.510926],\n              [-79.669131, 38.510885],\n              [-79.669282, 38.510502],\n              [-79.669489, 38.50997],\n              [-79.669694, 38.509543],\n              [-79.669741, 38.509306],\n              [-79.669795, 38.509035],\n              [-79.669893, 38.508545],\n              [-79.669978, 38.508288],\n              [-79.669991, 38.508252],\n              [-79.670091, 38.507959],\n              [-79.67019, 38.507763],\n              [-79.670489, 38.507667],\n              [-79.670986, 38.507978],\n              [-79.671584, 38.508289],\n              [-79.671983, 38.508597],\n              [-79.672272, 38.508993],\n              [-79.672281, 38.509005],\n              [-79.672579, 38.509517],\n              [-79.672926, 38.509787],\n              [-79.672977, 38.509825],\n              [-79.673477, 38.510125],\n              [-79.674077, 38.510425],\n              [-79.674577, 38.510525],\n              [-79.675377, 38.510525],\n              [-79.675477, 38.510425],\n              [-79.675577, 38.510425],\n              [-79.675977, 38.510325],\n              [-79.676477, 38.510325],\n              [-79.677177, 38.510225],\n              [-79.678177, 38.510225],\n              [-79.678977, 38.510325],\n              [-79.679377, 38.510425],\n              [-79.680077, 38.510625],\n              [-79.680377, 38.510625],\n              [-79.680477, 38.510525],\n              [-79.680577, 38.510125],\n              [-79.680877, 38.509625],\n              [-79.681077, 38.509325],\n              [-79.681112, 38.509243],\n              [-79.681377, 38.508625],\n              [-79.681577, 38.508225],\n              [-79.681677, 38.507725],\n              [-79.681677, 38.507325],\n              [-79.681377, 38.506025],\n              [-79.681377, 38.505925],\n              [-79.681077, 38.505325],\n              [-79.681177, 38.504925],\n              [-79.681577, 38.504525],\n              [-79.681609, 38.504512],\n              [-79.682077, 38.504325],\n              [-79.682677, 38.504125],\n              [-79.682977, 38.503925],\n              [-79.683077, 38.503625],\n              [-79.682977, 38.503425],\n              [-79.682677, 38.503125],\n              [-79.682477, 38.502525],\n              [-79.682577, 38.502025],\n              [-79.682603, 38.501972],\n              [-79.682777, 38.501625],\n              [-79.682977, 38.501325],\n              [-79.683177, 38.501125],\n              [-79.683477, 38.500925],\n              [-79.683577, 38.500925],\n              [-79.683777, 38.500825],\n              [-79.683777, 38.500625],\n              [-79.684202, 38.500125],\n              [-79.685625, 38.498777],\n              [-79.686995, 38.497477],\n              [-79.688348, 38.496191],\n              [-79.689234, 38.496421],\n              [-79.689586, 38.496495],\n              [-79.690406, 38.496667],\n              [-79.690794, 38.496714],\n              [-79.691304, 38.496776],\n              [-79.692276, 38.496482],\n              [-79.6927, 38.495768],\n              [-79.693023, 38.494925],\n              [-79.693628, 38.494542],\n              [-79.694509, 38.49424],\n              [-79.694736, 38.493919],\n              [-79.694986, 38.493261],\n              [-79.695075, 38.492289],\n              [-79.695602, 38.491663],\n              [-79.695779, 38.491306],\n              [-79.69611, 38.490644],\n              [-79.696047, 38.489421],\n              [-79.695995, 38.488245],\n              [-79.695995, 38.488238],\n              [-79.696038, 38.488183],\n              [-79.696096, 38.488111],\n              [-79.696221, 38.488053],\n              [-79.696292, 38.488022],\n              [-79.696318, 38.48801],\n              [-79.696364, 38.48799],\n              [-79.697128, 38.48771],\n              [-79.697235, 38.487672],\n              [-79.697575, 38.487231],\n              [-79.697371, 38.485831],\n              [-79.697186, 38.485267],\n              [-79.696962, 38.484582],\n              [-79.696892, 38.484426],\n              [-79.696677, 38.483948],\n              [-79.696032, 38.482515],\n              [-79.695878, 38.482172],\n              [-79.695804, 38.482045],\n              [-79.695708, 38.481879],\n              [-79.695465, 38.481462],\n              [-79.695377, 38.481447],\n              [-79.695189, 38.481415],\n              [-79.694642, 38.481322],\n              [-79.694058, 38.481223],\n              [-79.693507, 38.481252],\n              [-79.693427, 38.481019],\n              [-79.693418, 38.480745],\n              [-79.6934, 38.480191],\n              [-79.693427, 38.480033],\n              [-79.693477, 38.479748],\n              [-79.693586, 38.479592],\n              [-79.693601, 38.479571],\n              [-79.693688, 38.479469],\n              [-79.693941, 38.479179],\n              [-79.693986, 38.479014],\n              [-79.694057, 38.478761],\n              [-79.694183, 38.478319],\n              [-79.694367, 38.478191],\n              [-79.695054, 38.477978],\n              [-79.695585, 38.477815],\n              [-79.695603, 38.477809],\n              [-79.695658, 38.477793],\n              [-79.695677, 38.477788],\n              [-79.695825, 38.477733],\n              [-79.695963, 38.477665],\n              [-79.696038, 38.477605],\n              [-79.69613, 38.477518],\n              [-79.696231, 38.477403],\n              [-79.696314, 38.477316],\n              [-79.696366, 38.477273],\n              [-79.69641, 38.477237],\n              [-79.696452, 38.477199],\n              [-79.69649, 38.477144],\n              [-79.696512, 38.477083],\n              [-79.696544, 38.477031],\n              [-79.69661, 38.476948],\n              [-79.69669, 38.476873],\n              [-79.696886, 38.47673],\n              [-79.697158, 38.476515],\n              [-79.697439, 38.476265],\n              [-79.697632, 38.476108],\n              [-79.698302, 38.475629],\n              [-79.698356, 38.475591],\n              [-79.698437, 38.475538],\n              [-79.698629, 38.475391],\n              [-79.698704, 38.475317],\n              [-79.698821, 38.475176],\n              [-79.698902, 38.475076],\n              [-79.698991, 38.474996],\n              [-79.699476, 38.474535],\n              [-79.699625, 38.473975],\n              [-79.69944, 38.472888],\n              [-79.699324, 38.472732],\n              [-79.698773, 38.471992],\n              [-79.698891, 38.471236],\n              [-79.699123, 38.470296],\n              [-79.698933, 38.469877],\n              [-79.698368, 38.469734],\n              [-79.696893, 38.469627],\n              [-79.695591, 38.469066],\n              [-79.694913, 38.46829],\n              [-79.694909, 38.468283],\n              [-79.694037, 38.466702],\n              [-79.69377, 38.466324],\n              [-79.693641, 38.46608],\n              [-79.693092, 38.465042],\n              [-79.691923, 38.464432],\n              [-79.691139, 38.463792],\n              [-79.691089, 38.463751],\n              [-79.69086, 38.463049],\n              [-79.690659, 38.461914],\n              [-79.688876, 38.458701],\n              [-79.688537, 38.457869],\n              [-79.688369, 38.456878],\n              [-79.688166, 38.454327],\n              [-79.688246, 38.453915],\n              [-79.688441, 38.452923],\n              [-79.688108, 38.450452],\n              [-79.688249, 38.450278],\n              [-79.688402, 38.450092],\n              [-79.688674, 38.449759],\n              [-79.688816, 38.449587],\n              [-79.689438, 38.448913],\n              [-79.689678, 38.448655],\n              [-79.690698, 38.447684],\n              [-79.691336, 38.446927],\n              [-79.691427, 38.44682],\n              [-79.691482, 38.446291],\n              [-79.691391, 38.446064],\n              [-79.691383, 38.446044],\n              [-79.69137, 38.44601],\n              [-79.691361, 38.445985],\n              [-79.691355, 38.445966],\n              [-79.691215, 38.445616],\n              [-79.691082, 38.445284],\n              [-79.690624, 38.444661],\n              [-79.690402, 38.444358],\n              [-79.690201, 38.444023],\n              [-79.6897, 38.443184],\n              [-79.689634, 38.443003],\n              [-79.689503, 38.442636],\n              [-79.689467, 38.442597],\n              [-79.689411, 38.442537],\n              [-79.689367, 38.442477],\n              [-79.689345, 38.442446],\n              [-79.689296, 38.442348],\n              [-79.689264, 38.442246],\n              [-79.68925, 38.442147],\n              [-79.68925, 38.442142],\n              [-79.689253, 38.442072],\n              [-79.689254, 38.442037],\n              [-79.689292, 38.441874],\n              [-79.689326, 38.441779],\n              [-79.689347, 38.441726],\n              [-79.689418, 38.441582],\n              [-79.689537, 38.441387],\n              [-79.689621, 38.441283],\n              [-79.689741, 38.441169],\n              [-79.689856, 38.441085],\n              [-79.689872, 38.441072],\n              [-79.690025, 38.44096],\n              [-79.690113, 38.440889],\n              [-79.690341, 38.440705],\n              [-79.690376, 38.440678],\n              [-79.690466, 38.44062],\n              [-79.690682, 38.440468],\n              [-79.690884, 38.440305],\n              [-79.690943, 38.440243],\n              [-79.691017, 38.44015],\n              [-79.691031, 38.440133],\n              [-79.691104, 38.440017],\n              [-79.691161, 38.439896],\n              [-79.691167, 38.43987],\n              [-79.691188, 38.439795],\n              [-79.691195, 38.439771],\n              [-79.691626, 38.439364],\n              [-79.691746, 38.437072],\n              [-79.691659, 38.436444],\n              [-79.691429, 38.435855],\n              [-79.69105, 38.434784],\n              [-79.690933, 38.434003],\n              [-79.690385, 38.433653],\n              [-79.690219, 38.433381],\n              [-79.689911, 38.432872],\n              [-79.68967, 38.43147],\n              [-79.690455, 38.430785],\n              [-79.691001, 38.430504],\n              [-79.69146, 38.430264],\n              [-79.691725, 38.430147],\n              [-79.691871, 38.430083],\n              [-79.692148, 38.429962],\n              [-79.69258, 38.429505],\n              [-79.692817, 38.429229],\n              [-79.693125, 38.428872],\n              [-79.693849, 38.428228],\n              [-79.693854, 38.428224],\n              [-79.694265, 38.427888],\n              [-79.694828, 38.427665],\n              [-79.696035, 38.427155],\n              [-79.696834, 38.426765],\n              [-79.69656, 38.426546],\n              [-79.696097, 38.42612],\n              [-79.69577, 38.425819],\n              [-79.695434, 38.424882],\n              [-79.695391, 38.424763],\n              [-79.695276, 38.423693],\n              [-79.695471, 38.423603],\n              [-79.69629, 38.423231],\n              [-79.698426, 38.422556],\n              [-79.699416, 38.422043],\n              [-79.699737, 38.421878],\n              [-79.700112, 38.42089],\n              [-79.700504, 38.420305],\n              [-79.701822, 38.419956],\n              [-79.702785, 38.419365],\n              [-79.704063, 38.417585],\n              [-79.704576, 38.417201],\n              [-79.705559, 38.416664],\n              [-79.705631, 38.416626],\n              [-79.706637, 38.415738],\n              [-79.707174, 38.414847],\n              [-79.708072, 38.413379],\n              [-79.708435, 38.41264],\n              [-79.709143, 38.412072],\n              [-79.709292, 38.411244],\n              [-79.708822, 38.409971],\n              [-79.708968, 38.409561],\n              [-79.709625, 38.408921],\n              [-79.709926, 38.408246],\n              [-79.710919, 38.407663],\n              [-79.712328, 38.407404],\n              [-79.712397, 38.406358],\n              [-79.712907, 38.405042],\n              [-79.713563, 38.404594],\n              [-79.714372, 38.404115],\n              [-79.714878, 38.403264],\n              [-79.716435, 38.40229],\n              [-79.717368, 38.40157],\n              [-79.717594, 38.401169],\n              [-79.717636, 38.401096],\n              [-79.717549, 38.400492],\n              [-79.718828, 38.398446],\n              [-79.719397, 38.397164],\n              [-79.71972, 38.396439],\n              [-79.720971, 38.395081],\n              [-79.721138, 38.3949],\n              [-79.720995, 38.393516],\n              [-79.722124, 38.391059],\n              [-79.722656, 38.389525],\n              [-79.723825, 38.388596],\n              [-79.725646, 38.387614],\n              [-79.726353, 38.387078],\n              [-79.726841, 38.385978],\n              [-79.727134, 38.384829],\n              [-79.727051, 38.384509],\n              [-79.726926, 38.384024],\n              [-79.727278, 38.383325],\n              [-79.728296, 38.382066],\n              [-79.729515, 38.381202],\n              [-79.729898, 38.380359],\n              [-79.729934, 38.3797],\n              [-79.730274, 38.37917],\n              [-79.730824, 38.377757],\n              [-79.730971, 38.375762],\n              [-79.73123, 38.375128],\n              [-79.731432, 38.374749],\n              [-79.731664, 38.374151],\n              [-79.731734, 38.373723],\n              [-79.731701, 38.373384],\n              [-79.731494, 38.373005],\n              [-79.730497, 38.372225],\n              [-79.729964, 38.372106],\n              [-79.729052, 38.372036],\n              [-79.727679, 38.371709],\n              [-79.727206, 38.371445],\n              [-79.726793, 38.37084],\n              [-79.726784, 38.36904],\n              [-79.726751, 38.368677],\n              [-79.726585, 38.368249],\n              [-79.725975, 38.366959],\n              [-79.725778, 38.366548],\n              [-79.725807, 38.366136],\n              [-79.725905, 38.365409],\n              [-79.725832, 38.365054],\n              [-79.7256, 38.363836],\n              [-79.725976, 38.363237],\n              [-79.726668, 38.362476],\n              [-79.727056, 38.362241],\n              [-79.72858, 38.362034],\n              [-79.729347, 38.361838],\n              [-79.730603, 38.361132],\n              [-79.731215, 38.360711],\n              [-79.732062, 38.360176],\n              [-79.732324, 38.359488],\n              [-79.732353, 38.359093],\n              [-79.732433, 38.358745],\n              [-79.733615, 38.357748],\n              [-79.734603, 38.356736],\n              [-79.734753, 38.356162],\n              [-79.734904, 38.355556],\n              [-79.735119, 38.355393],\n              [-79.735312, 38.355248],\n              [-79.736466, 38.354849],\n              [-79.737101, 38.354968],\n              [-79.737982, 38.354973],\n              [-79.740618, 38.354109],\n              [-79.741577, 38.35342],\n              [-79.74218, 38.353256],\n              [-79.742774, 38.353375],\n              [-79.743585, 38.353776],\n              [-79.744108, 38.353976],\n              [-79.744835, 38.354031],\n              [-79.745256, 38.354166],\n              [-79.745953, 38.354366],\n              [-79.74755, 38.354336],\n              [-79.748022, 38.354634],\n              [-79.748272, 38.355077],\n              [-79.748642, 38.355423],\n              [-79.749001, 38.355559],\n              [-79.749206, 38.355599],\n              [-79.749778, 38.355604],\n              [-79.750671, 38.355915],\n              [-79.75106, 38.355948],\n              [-79.753096, 38.356045],\n              [-79.753365, 38.356091],\n              [-79.753618, 38.356136],\n              [-79.755187, 38.35695],\n              [-79.755563, 38.35738],\n              [-79.757629, 38.357574],\n              [-79.761505, 38.356864],\n              [-79.762714, 38.356749],\n              [-79.764178, 38.356642],\n              [-79.764435, 38.356522],\n              [-79.764965, 38.355636],\n              [-79.766131, 38.354455],\n              [-79.7671, 38.353636],\n              [-79.767266, 38.353403],\n              [-79.767217, 38.353185],\n              [-79.766219, 38.352486],\n              [-79.765956, 38.352098],\n              [-79.765919, 38.351694],\n              [-79.765983, 38.351299],\n              [-79.766406, 38.350881],\n              [-79.766424, 38.350866],\n              [-79.767241, 38.350255],\n              [-79.768232, 38.349211],\n              [-79.769488, 38.348337],\n              [-79.770001, 38.348162],\n              [-79.770279, 38.347969],\n              [-79.770352, 38.347808],\n              [-79.769414, 38.346852],\n              [-79.769103, 38.346536],\n              [-79.76889, 38.346481],\n              [-79.768491, 38.34638],\n              [-79.768113, 38.346241],\n              [-79.7678, 38.345715],\n              [-79.767761, 38.345497],\n              [-79.767727, 38.345161],\n              [-79.767695, 38.344827],\n              [-79.767636, 38.344506],\n              [-79.767615, 38.3444],\n              [-79.767597, 38.34431],\n              [-79.767654, 38.344088],\n              [-79.76766, 38.344069],\n              [-79.767712, 38.344],\n              [-79.767765, 38.343925],\n              [-79.767867, 38.343787],\n              [-79.767944, 38.343719],\n              [-79.768014, 38.34366],\n              [-79.768454, 38.343272],\n              [-79.769238, 38.342582],\n              [-79.769722, 38.342054],\n              [-79.769909, 38.341851],\n              [-79.770005, 38.341556],\n              [-79.77056, 38.339876],\n              [-79.770684, 38.339683],\n              [-79.770814, 38.339602],\n              [-79.77088, 38.339563],\n              [-79.771579, 38.339154],\n              [-79.771961, 38.338809],\n              [-79.772178, 38.338487],\n              [-79.772474, 38.337302],\n              [-79.773093, 38.335537],\n              [-79.774215, 38.334646],\n              [-79.774303, 38.334534],\n              [-79.774464, 38.334333],\n              [-79.776199, 38.333573],\n              [-79.77662, 38.333381],\n              [-79.777155, 38.333028],\n              [-79.778556, 38.331945],\n              [-79.779275, 38.331617],\n              [-79.780259, 38.331403],\n              [-79.780453, 38.331415],\n              [-79.780956, 38.331446],\n              [-79.782979, 38.331818],\n              [-79.783684, 38.331917],\n              [-79.784371, 38.331791],\n              [-79.785809, 38.331103],\n              [-79.785975, 38.330886],\n              [-79.786749, 38.328718],\n              [-79.786987, 38.328445],\n              [-79.787983, 38.328037],\n              [-79.788229, 38.327998],\n              [-79.789915, 38.328303],\n              [-79.790048, 38.328247],\n              [-79.790299, 38.327627],\n              [-79.790526, 38.327378],\n              [-79.791092, 38.327001],\n              [-79.791514, 38.326631],\n              [-79.792039, 38.326218],\n              [-79.794294, 38.324447],\n              [-79.796165, 38.323742],\n              [-79.796223, 38.323721],\n              [-79.796553, 38.323488],\n              [-79.796687, 38.323311],\n              [-79.796869, 38.322471],\n              [-79.797048, 38.32165],\n              [-79.797832, 38.32083],\n              [-79.797998, 38.320556],\n              [-79.798168, 38.319758],\n              [-79.798162, 38.319169],\n              [-79.798286, 38.318967],\n              [-79.798702, 38.318401],\n              [-79.79962, 38.317157],\n              [-79.800042, 38.316828],\n              [-79.800432, 38.316684],\n              [-79.801661, 38.31656],\n              [-79.801917, 38.316504],\n              [-79.802328, 38.316272],\n              [-79.803128, 38.315198],\n              [-79.803269, 38.315009],\n              [-79.804096, 38.31393],\n              [-79.80549, 38.312306],\n              [-79.805892, 38.311888],\n              [-79.808415, 38.309759],\n              [-79.808714, 38.309437],\n              [-79.809452, 38.307915],\n              [-79.810074, 38.306892],\n              [-79.810157, 38.306715],\n              [-79.810118, 38.305078],\n              [-79.810118, 38.305045],\n              [-79.809937, 38.304689],\n              [-79.807545, 38.301702],\n              [-79.805927, 38.300302],\n              [-79.804182, 38.298792],\n              [-79.804029, 38.29863],\n              [-79.803349, 38.29669],\n              [-79.803253, 38.294862],\n              [-79.803197, 38.293774],\n              [-79.802945, 38.292756],\n              [-79.802781, 38.292081],\n              [-79.802578, 38.291894],\n              [-79.802302, 38.291837],\n              [-79.800173, 38.29199],\n              [-79.798225, 38.292049],\n              [-79.797851, 38.292061],\n              [-79.797698, 38.292012],\n              [-79.795451, 38.290236],\n              [-79.794837, 38.288886],\n              [-79.794627, 38.288264],\n              [-79.794546, 38.288086],\n              [-79.792844, 38.286118],\n              [-79.792336, 38.285592],\n              [-79.792002, 38.285195],\n              [-79.791658, 38.284661],\n              [-79.790974, 38.283238],\n              [-79.789975, 38.281483],\n              [-79.789794, 38.281175],\n              [-79.789735, 38.280901],\n              [-79.789707, 38.280529],\n              [-79.789893, 38.280199],\n              [-79.790095, 38.27943],\n              [-79.790284, 38.278716],\n              [-79.790308, 38.278264],\n              [-79.790229, 38.277876],\n              [-79.790008, 38.277359],\n              [-79.787896, 38.275422],\n              [-79.787696, 38.275331],\n              [-79.787598, 38.275311],\n              [-79.787253, 38.275241],\n              [-79.786904, 38.275081],\n              [-79.786846, 38.275054],\n              [-79.786612, 38.274892],\n              [-79.78647, 38.274657],\n              [-79.786544, 38.274407],\n              [-79.786926, 38.273997],\n              [-79.787433, 38.273431],\n              [-79.787547, 38.273305],\n              [-79.787803, 38.272801],\n              [-79.788194, 38.272037],\n              [-79.788272, 38.271888],\n              [-79.788429, 38.271397],\n              [-79.788818, 38.270043],\n              [-79.788864, 38.269564],\n              [-79.788948, 38.268711],\n              [-79.78916, 38.268474],\n              [-79.789228, 38.2684],\n              [-79.78989, 38.267862],\n              [-79.790137, 38.267662],\n              [-79.790381, 38.267644],\n              [-79.790701, 38.267589],\n              [-79.791906, 38.267384],\n              [-79.792235, 38.267224],\n              [-79.792335, 38.267152],\n              [-79.792799, 38.266821],\n              [-79.793026, 38.266694],\n              [-79.793432, 38.266587],\n              [-79.794788, 38.266233],\n              [-79.795199, 38.266009],\n              [-79.795345, 38.265918],\n              [-79.795924, 38.26556],\n              [-79.797173, 38.266162],\n              [-79.797623, 38.266172],\n              [-79.797972, 38.266133],\n              [-79.798301, 38.265965],\n              [-79.799517, 38.264275],\n              [-79.801276, 38.261481],\n              [-79.802205, 38.260825],\n              [-79.80486, 38.260075],\n              [-79.805078, 38.260014],\n              [-79.806339, 38.259201],\n              [-79.806516, 38.25921],\n              [-79.809317, 38.259988],\n              [-79.810689, 38.260371],\n              [-79.811424, 38.260394],\n              [-79.811992, 38.260406],\n              [-79.81215, 38.26026],\n              [-79.812223, 38.260193],\n              [-79.812787, 38.259654],\n              [-79.813646, 38.258861],\n              [-79.814204, 38.258183],\n              [-79.814618, 38.257454],\n              [-79.814623, 38.25728],\n              [-79.814623, 38.257268],\n              [-79.81464, 38.256669],\n              [-79.815712, 38.255075],\n              [-79.815721, 38.253658],\n              [-79.815152, 38.252362],\n              [-79.814867, 38.251577],\n              [-79.815013, 38.251376],\n              [-79.815735, 38.250709],\n              [-79.816316, 38.250131],\n              [-79.816771, 38.24984],\n              [-79.817148, 38.249517],\n              [-79.817525, 38.249327],\n              [-79.818211, 38.249062],\n              [-79.818869, 38.248721],\n              [-79.819074, 38.248645],\n              [-79.819214, 38.248549],\n              [-79.819314, 38.248459],\n              [-79.819496, 38.248337],\n              [-79.819628, 38.24824],\n              [-79.819859, 38.248158],\n              [-79.820046, 38.248122],\n              [-79.820445, 38.248104],\n              [-79.821013, 38.248287],\n              [-79.821985, 38.248821],\n              [-79.822471, 38.249116],\n              [-79.822897, 38.249376],\n              [-79.82353, 38.24974],\n              [-79.824363, 38.25013],\n              [-79.824966, 38.250391],\n              [-79.825286, 38.250496],\n              [-79.825606, 38.250444],\n              [-79.826118, 38.250314],\n              [-79.826445, 38.25013],\n              [-79.8265, 38.2501],\n              [-79.826889, 38.249887],\n              [-79.827353, 38.249831],\n              [-79.828071, 38.249836],\n              [-79.828308, 38.249831],\n              [-79.828501, 38.24975],\n              [-79.828938, 38.249568],\n              [-79.829254, 38.249512],\n              [-79.829619, 38.249531],\n              [-79.830716, 38.249721],\n              [-79.830889, 38.249697],\n              [-79.831194, 38.249488],\n              [-79.831448, 38.249117],\n              [-79.83152, 38.249012],\n              [-79.832031, 38.248564],\n              [-79.832593, 38.247992],\n              [-79.832972, 38.247565],\n              [-79.833064, 38.247283],\n              [-79.833146, 38.247025],\n              [-79.833208, 38.246662],\n              [-79.833281, 38.246274],\n              [-79.833475, 38.245896],\n              [-79.83367, 38.245533],\n              [-79.833925, 38.245243],\n              [-79.834032, 38.244964],\n              [-79.834038, 38.244251],\n              [-79.834035, 38.243549],\n              [-79.83417, 38.242919],\n              [-79.834563, 38.242344],\n              [-79.835116, 38.241905],\n              [-79.836105, 38.241536],\n              [-79.837484, 38.241288],\n              [-79.838293, 38.24124],\n              [-79.83967, 38.241322],\n              [-79.840753, 38.241458],\n              [-79.84152, 38.241554],\n              [-79.84296, 38.241602],\n              [-79.84366, 38.241513],\n              [-79.843985, 38.241467],\n              [-79.844312, 38.241329],\n              [-79.844631, 38.241271],\n              [-79.844959, 38.241205],\n              [-79.845215, 38.241082],\n              [-79.845791, 38.240661],\n              [-79.846258, 38.240284],\n              [-79.846457, 38.239997],\n              [-79.846536, 38.239586],\n              [-79.84674, 38.239224],\n              [-79.847158, 38.23832],\n              [-79.847758, 38.237437],\n              [-79.848376, 38.236411],\n              [-79.84893, 38.23555],\n              [-79.849288, 38.235139],\n              [-79.849557, 38.234796],\n              [-79.849666, 38.234596],\n              [-79.849838, 38.234165],\n              [-79.850102, 38.233569],\n              [-79.850329, 38.233332],\n              [-79.851065, 38.23306],\n              [-79.851719, 38.232873],\n              [-79.852773, 38.232457],\n              [-79.853425, 38.232163],\n              [-79.854751, 38.231894],\n              [-79.855933, 38.231552],\n              [-79.856709, 38.2312],\n              [-79.856975, 38.231075],\n              [-79.857428, 38.230612],\n              [-79.857869, 38.230014],\n              [-79.858519, 38.229239],\n              [-79.85988, 38.227859],\n              [-79.860277, 38.227378],\n              [-79.860459, 38.227105],\n              [-79.86052, 38.226855],\n              [-79.860436, 38.226633],\n              [-79.860389, 38.2265],\n              [-79.860412, 38.226143],\n              [-79.86054, 38.225688],\n              [-79.860893, 38.225251],\n              [-79.86177, 38.224627],\n              [-79.862501, 38.224203],\n              [-79.863183, 38.22401],\n              [-79.863459, 38.223976],\n              [-79.863626, 38.223953],\n              [-79.863935, 38.223784],\n              [-79.864305, 38.223511],\n              [-79.866811, 38.221194],\n              [-79.867146, 38.220841],\n              [-79.867409, 38.220439],\n              [-79.867673, 38.2199],\n              [-79.867794, 38.219643],\n              [-79.867999, 38.21945],\n              [-79.86852, 38.219185],\n              [-79.868979, 38.218976],\n              [-79.86948, 38.218726],\n              [-79.869899, 38.218566],\n              [-79.870276, 38.218373],\n              [-79.873211, 38.215917],\n              [-79.87364, 38.215587],\n              [-79.873782, 38.215514],\n              [-79.873937, 38.215393],\n              [-79.873944, 38.215289],\n              [-79.873947, 38.215224],\n              [-79.874074, 38.214629],\n              [-79.874358, 38.213615],\n              [-79.874597, 38.212984],\n              [-79.874785, 38.212955],\n              [-79.875714, 38.212319],\n              [-79.877224, 38.211652],\n              [-79.877917, 38.211326],\n              [-79.878183, 38.211289],\n              [-79.878301, 38.211272],\n              [-79.87842, 38.211254],\n              [-79.878481, 38.211214],\n              [-79.878611, 38.211128],\n              [-79.87909, 38.211024],\n              [-79.879253, 38.210928],\n              [-79.879315, 38.210791],\n              [-79.879582, 38.210316],\n              [-79.87989, 38.209817],\n              [-79.880054, 38.209584],\n              [-79.880238, 38.209439],\n              [-79.880345, 38.209442],\n              [-79.880457, 38.209444],\n              [-79.880568, 38.209446],\n              [-79.880655, 38.209396],\n              [-79.880742, 38.209345],\n              [-79.880849, 38.209279],\n              [-79.88138, 38.209112],\n              [-79.881583, 38.208958],\n              [-79.881706, 38.208805],\n              [-79.881993, 38.208265],\n              [-79.882062, 38.208126],\n              [-79.882213, 38.207916],\n              [-79.882528, 38.20746],\n              [-79.882827, 38.207106],\n              [-79.882958, 38.206947],\n              [-79.883111, 38.206891],\n              [-79.883325, 38.206851],\n              [-79.883872, 38.207585],\n              [-79.884236, 38.207876],\n              [-79.884553, 38.207965],\n              [-79.885021, 38.207974],\n              [-79.885653, 38.207943],\n              [-79.886152, 38.207961],\n              [-79.886416, 38.207961],\n              [-79.887588, 38.207633],\n              [-79.888048, 38.207368],\n              [-79.88834, 38.207183],\n              [-79.888547, 38.207047],\n              [-79.889202, 38.206468],\n              [-79.89027, 38.205899],\n              [-79.890325, 38.205867],\n              [-79.89051, 38.205697],\n              [-79.890685, 38.20544],\n              [-79.890758, 38.205053],\n              [-79.890993, 38.204844],\n              [-79.891594, 38.20466],\n              [-79.891727, 38.204515],\n              [-79.89184, 38.20433],\n              [-79.891885, 38.203556],\n              [-79.892004, 38.20338],\n              [-79.891959, 38.203245],\n              [-79.891935, 38.203097],\n              [-79.891939, 38.202962],\n              [-79.891965, 38.202859],\n              [-79.892012, 38.202747],\n              [-79.892164, 38.202535],\n              [-79.892429, 38.202206],\n              [-79.892564, 38.201865],\n              [-79.892648, 38.201455],\n              [-79.892691, 38.200746],\n              [-79.892775, 38.200182],\n              [-79.892919, 38.199876],\n              [-79.893186, 38.199562],\n              [-79.89343, 38.199458],\n              [-79.893657, 38.199424],\n              [-79.893681, 38.199423],\n              [-79.894144, 38.199354],\n              [-79.894266, 38.199274],\n              [-79.894328, 38.199153],\n              [-79.894375, 38.198798],\n              [-79.894379, 38.198755],\n              [-79.89435, 38.198646],\n              [-79.894463, 38.198509],\n              [-79.894619, 38.198477],\n              [-79.894741, 38.198454],\n              [-79.894983, 38.198405],\n              [-79.895167, 38.198252],\n              [-79.895802, 38.197545],\n              [-79.896599, 38.196748],\n              [-79.896886, 38.196467],\n              [-79.897135, 38.196257],\n              [-79.897187, 38.196177],\n              [-79.897255, 38.196089],\n              [-79.897398, 38.195855],\n              [-79.897471, 38.195622],\n              [-79.897411, 38.195356],\n              [-79.89732, 38.195138],\n              [-79.897057, 38.194701],\n              [-79.897007, 38.194525],\n              [-79.897019, 38.194219],\n              [-79.897133, 38.193744],\n              [-79.897338, 38.193389],\n              [-79.897583, 38.193261],\n              [-79.897828, 38.193141],\n              [-79.898429, 38.193053],\n              [-79.898674, 38.192941],\n              [-79.898969, 38.192812],\n              [-79.899643, 38.192467],\n              [-79.900266, 38.192106],\n              [-79.900531, 38.191921],\n              [-79.900736, 38.191744],\n              [-79.900961, 38.191503],\n              [-79.901288, 38.191173],\n              [-79.901553, 38.191037],\n              [-79.901788, 38.190932],\n              [-79.902623, 38.190837],\n              [-79.902929, 38.190757],\n              [-79.903245, 38.190637],\n              [-79.903623, 38.19042],\n              [-79.905103, 38.189464],\n              [-79.905328, 38.189376],\n              [-79.905685, 38.18924],\n              [-79.906093, 38.189007],\n              [-79.90641, 38.188741],\n              [-79.906951, 38.188219],\n              [-79.907176, 38.188066],\n              [-79.90739, 38.187978],\n              [-79.907624, 38.187954],\n              [-79.908336, 38.188116],\n              [-79.909497, 38.188223],\n              [-79.909793, 38.188199],\n              [-79.910037, 38.188191],\n              [-79.910503, 38.18806],\n              [-79.910964, 38.187928],\n              [-79.911423, 38.187776],\n              [-79.911739, 38.187655],\n              [-79.912085, 38.187624],\n              [-79.912411, 38.187721],\n              [-79.913081, 38.188157],\n              [-79.913935, 38.188489],\n              [-79.914199, 38.18849],\n              [-79.914413, 38.188426],\n              [-79.914618, 38.188241],\n              [-79.914874, 38.187911],\n              [-79.915242, 38.187541],\n              [-79.916152, 38.186559],\n              [-79.916286, 38.186386],\n              [-79.916306, 38.186344],\n              [-79.916347, 38.186286],\n              [-79.916388, 38.186012],\n              [-79.916349, 38.185754],\n              [-79.916188, 38.185286],\n              [-79.916148, 38.18498],\n              [-79.916186, 38.184232],\n              [-79.9163, 38.18412],\n              [-79.916447, 38.183993],\n              [-79.916643, 38.183844],\n              [-79.916678, 38.183821],\n              [-79.917803, 38.183613],\n              [-79.918323, 38.183485],\n              [-79.919057, 38.183196],\n              [-79.919812, 38.182746],\n              [-79.920078, 38.182537],\n              [-79.92017, 38.182368],\n              [-79.920324, 38.182111],\n              [-79.920621, 38.18166],\n              [-79.920816, 38.181386],\n              [-79.921041, 38.181113],\n              [-79.921113, 38.18096],\n              [-79.921185, 38.180783],\n              [-79.921199, 38.180386],\n              [-79.921029, 38.179962],\n              [-79.92066, 38.179734],\n              [-79.9201, 38.179572],\n              [-79.919796, 38.179418],\n              [-79.919507, 38.179313],\n              [-79.919339, 38.179095],\n              [-79.919105, 38.178917],\n              [-79.91876, 38.17882],\n              [-79.918159, 38.178722],\n              [-79.91764, 38.178658],\n              [-79.917437, 38.178632],\n              [-79.917142, 38.178487],\n              [-79.916625, 38.178002],\n              [-79.916565, 38.177704],\n              [-79.916457, 38.176825],\n              [-79.916529, 38.176592],\n              [-79.916714, 38.176189],\n              [-79.916797, 38.175923],\n              [-79.916768, 38.175512],\n              [-79.91685, 38.175319],\n              [-79.916994, 38.175078],\n              [-79.917834, 38.174095],\n              [-79.917894, 38.174029],\n              [-79.918068, 38.173822],\n              [-79.918242, 38.173492],\n              [-79.918296, 38.173395],\n              [-79.918447, 38.173106],\n              [-79.918632, 38.172679],\n              [-79.918797, 38.17226],\n              [-79.918951, 38.171898],\n              [-79.918992, 38.171737],\n              [-79.919014, 38.171471],\n              [-79.918924, 38.171052],\n              [-79.918884, 38.170786],\n              [-79.918916, 38.170447],\n              [-79.918886, 38.170318],\n              [-79.918826, 38.170125],\n              [-79.918694, 38.169988],\n              [-79.918257, 38.16981],\n              [-79.918105, 38.169624],\n              [-79.918045, 38.169447],\n              [-79.918107, 38.169132],\n              [-79.918169, 38.168883],\n              [-79.918201, 38.168754],\n              [-79.91816, 38.168609],\n              [-79.917928, 38.168407],\n              [-79.917602, 38.168366],\n              [-79.917032, 38.168397],\n              [-79.916681, 38.168409],\n              [-79.916075, 38.168436],\n              [-79.915068, 38.168096],\n              [-79.914927, 38.167919],\n              [-79.914867, 38.167732],\n              [-79.914887, 38.167532],\n              [-79.915021, 38.167347],\n              [-79.915194, 38.16721],\n              [-79.915245, 38.167106],\n              [-79.915307, 38.16692],\n              [-79.915247, 38.166654],\n              [-79.915309, 38.166477],\n              [-79.915442, 38.166284],\n              [-79.915688, 38.166051],\n              [-79.91582, 38.165898],\n              [-79.916056, 38.165536],\n              [-79.916231, 38.164996],\n              [-79.916172, 38.164545],\n              [-79.915981, 38.164085],\n              [-79.915942, 38.163666],\n              [-79.916014, 38.163376],\n              [-79.916117, 38.163207],\n              [-79.916209, 38.163102],\n              [-79.916382, 38.16303],\n              [-79.916657, 38.163014],\n              [-79.917196, 38.163048],\n              [-79.917908, 38.163097],\n              [-79.918478, 38.163155],\n              [-79.918722, 38.163155],\n              [-79.919049, 38.163035],\n              [-79.919395, 38.162858],\n              [-79.919518, 38.162657],\n              [-79.91955, 38.162431],\n              [-79.91949, 38.162189],\n              [-79.919258, 38.161544],\n              [-79.919097, 38.161109],\n              [-79.9191, 38.160537],\n              [-79.919081, 38.16011],\n              [-79.919297, 38.15957],\n              [-79.919522, 38.15924],\n              [-79.919809, 38.158805],\n              [-79.91985, 38.158709],\n              [-79.91979, 38.158515],\n              [-79.919577, 38.15837],\n              [-79.919231, 38.158337],\n              [-79.918783, 38.158288],\n              [-79.918671, 38.158231],\n              [-79.91857, 38.15807],\n              [-79.91847, 38.157586],\n              [-79.918513, 38.157167],\n              [-79.918769, 38.15666],\n              [-79.919016, 38.156169],\n              [-79.919047, 38.156032],\n              [-79.919007, 38.155871],\n              [-79.918774, 38.155532],\n              [-79.918602, 38.155274],\n              [-79.918583, 38.155056],\n              [-79.918665, 38.154798],\n              [-79.918788, 38.154613],\n              [-79.919207, 38.154098],\n              [-79.919412, 38.153792],\n              [-79.919555, 38.153648],\n              [-79.919708, 38.153527],\n              [-79.919933, 38.153439],\n              [-79.920513, 38.15323],\n              [-79.920881, 38.152917],\n              [-79.921351, 38.152377],\n              [-79.921617, 38.152168],\n              [-79.922004, 38.152032],\n              [-79.922493, 38.151848],\n              [-79.922728, 38.151663],\n              [-79.922841, 38.151486],\n              [-79.922944, 38.151131],\n              [-79.923036, 38.150962],\n              [-79.923128, 38.150882],\n              [-79.923413, 38.150794],\n              [-79.924941, 38.150619],\n              [-79.925254, 38.150473],\n              [-79.925515, 38.150245],\n              [-79.925737, 38.149976],\n              [-79.925992, 38.149767],\n              [-79.926146, 38.149565],\n              [-79.926228, 38.149412],\n              [-79.926198, 38.149235],\n              [-79.926199, 38.148889],\n              [-79.92623, 38.148744],\n              [-79.926302, 38.148566],\n              [-79.926272, 38.148413],\n              [-79.926194, 38.147704],\n              [-79.926225, 38.147543],\n              [-79.926358, 38.147325],\n              [-79.926685, 38.147068],\n              [-79.926797, 38.146972],\n              [-79.92691, 38.146786],\n              [-79.927074, 38.146497],\n              [-79.927269, 38.146038],\n              [-79.927494, 38.145716],\n              [-79.927688, 38.145579],\n              [-79.927923, 38.14541],\n              [-79.928422, 38.145177],\n              [-79.928686, 38.144936],\n              [-79.928704, 38.144568],\n              [-79.92875, 38.144444],\n              [-79.928673, 38.143357],\n              [-79.928696, 38.142696],\n              [-79.928771, 38.141914],\n              [-79.928846, 38.140915],\n              [-79.928889, 38.140254],\n              [-79.928951, 38.13999],\n              [-79.928997, 38.139874],\n              [-79.929034, 38.139779],\n              [-79.92931, 38.139441],\n              [-79.929882, 38.138725],\n              [-79.930525, 38.138162],\n              [-79.931066, 38.137832],\n              [-79.931525, 38.137575],\n              [-79.931903, 38.137342],\n              [-79.932098, 38.137085],\n              [-79.932282, 38.136811],\n              [-79.932579, 38.136344],\n              [-79.932752, 38.136167],\n              [-79.933754, 38.135516],\n              [-79.933835, 38.135389],\n              [-79.933977, 38.135307],\n              [-79.934057, 38.13522],\n              [-79.934155, 38.135141],\n              [-79.934266, 38.135073],\n              [-79.934319, 38.135052],\n              [-79.934471, 38.135014],\n              [-79.934628, 38.13499],\n              [-79.935353, 38.134954],\n              [-79.935385, 38.13495],\n              [-79.935632, 38.134909],\n              [-79.936194, 38.134868],\n              [-79.936309, 38.134848],\n              [-79.936837, 38.134785],\n              [-79.937067, 38.134779],\n              [-79.937297, 38.134788],\n              [-79.937644, 38.134824],\n              [-79.937903, 38.134867],\n              [-79.938157, 38.134924],\n              [-79.938239, 38.134946],\n              [-79.9394, 38.135115],\n              [-79.939939, 38.135002],\n              [-79.940232, 38.134832],\n              [-79.94067, 38.134529],\n              [-79.940827, 38.13443],\n              [-79.940917, 38.134391],\n              [-79.941015, 38.134365],\n              [-79.941138, 38.134353],\n              [-79.941593, 38.134362],\n              [-79.941995, 38.134387],\n              [-79.942586, 38.134342],\n              [-79.942674, 38.134336],\n              [-79.94275, 38.134341],\n              [-79.942852, 38.134258],\n              [-79.942975, 38.13409],\n              [-79.942945, 38.13392],\n              [-79.942905, 38.133718],\n              [-79.942946, 38.133541],\n              [-79.943058, 38.133396],\n              [-79.943212, 38.133291],\n              [-79.943548, 38.133227],\n              [-79.94367, 38.133155],\n              [-79.943772, 38.133066],\n              [-79.943905, 38.13297],\n              [-79.944323, 38.132616],\n              [-79.944476, 38.132519],\n              [-79.944721, 38.13248],\n              [-79.945087, 38.132464],\n              [-79.945219, 38.132392],\n              [-79.945261, 38.132247],\n              [-79.945241, 38.132134],\n              [-79.94519, 38.131997],\n              [-79.945039, 38.131787],\n              [-79.944846, 38.131593],\n              [-79.944745, 38.131408],\n              [-79.944624, 38.131182],\n              [-79.944513, 38.130827],\n              [-79.944332, 38.1304],\n              [-79.944292, 38.130174],\n              [-79.944354, 38.129949],\n              [-79.944416, 38.129739],\n              [-79.944406, 38.129473],\n              [-79.944336, 38.129183],\n              [-79.944256, 38.128965],\n              [-79.944104, 38.128651],\n              [-79.943871, 38.128336],\n              [-79.943527, 38.127965],\n              [-79.942817, 38.127303],\n              [-79.942665, 38.127158],\n              [-79.942524, 38.126883],\n              [-79.942331, 38.12669],\n              [-79.941987, 38.126375],\n              [-79.941794, 38.126125],\n              [-79.941298, 38.125487],\n              [-79.941177, 38.125278],\n              [-79.941178, 38.125131],\n              [-79.94112, 38.124784],\n              [-79.941236, 38.124584],\n              [-79.941628, 38.124435],\n              [-79.941967, 38.124304],\n              [-79.943084, 38.123663],\n              [-79.943212, 38.123398],\n              [-79.943245, 38.123174],\n              [-79.943247, 38.123155],\n              [-79.943249, 38.123143],\n              [-79.942475, 38.122508],\n              [-79.942137, 38.122092],\n              [-79.941674, 38.121723],\n              [-79.940998, 38.121335],\n              [-79.94067, 38.120881],\n              [-79.940728, 38.120498],\n              [-79.94092, 38.120086],\n              [-79.941012, 38.119673],\n              [-79.940855, 38.119331],\n              [-79.940719, 38.119029],\n              [-79.94077, 38.118535],\n              [-79.941027, 38.118018],\n              [-79.941453, 38.117666],\n              [-79.941467, 38.117377],\n              [-79.941266, 38.11719],\n              [-79.940954, 38.116888],\n              [-79.940355, 38.115914],\n              [-79.94006, 38.115211],\n              [-79.939595, 38.11437],\n              [-79.939551, 38.113965],\n              [-79.939707, 38.113572],\n              [-79.939469, 38.11322],\n              [-79.939091, 38.112674],\n              [-79.938949, 38.111636],\n              [-79.938415, 38.110997],\n              [-79.938051, 38.110774],\n              [-79.937687, 38.110821],\n              [-79.937174, 38.11105],\n              [-79.936863, 38.11122],\n              [-79.936521, 38.111208],\n              [-79.936157, 38.111143],\n              [-79.935667, 38.111161],\n              [-79.935214, 38.110938],\n              [-79.934724, 38.110563],\n              [-79.93468, 38.110099],\n              [-79.934353, 38.10973],\n              [-79.933172, 38.109589],\n              [-79.932719, 38.109654],\n              [-79.932474, 38.109736],\n              [-79.932044, 38.109665],\n              [-79.931576, 38.109366],\n              [-79.930893, 38.109266],\n              [-79.930454, 38.10929],\n              [-79.92969, 38.109202],\n              [-79.928888, 38.108885],\n              [-79.926333, 38.107155],\n              [-79.926296, 38.106826],\n              [-79.9264, 38.106551],\n              [-79.926794, 38.106181],\n              [-79.927046, 38.105806],\n              [-79.927618, 38.104879],\n              [-79.927878, 38.104462],\n              [-79.928011, 38.104345],\n              [-79.928687, 38.103846],\n              [-79.928828, 38.103653],\n              [-79.929296, 38.103013],\n              [-79.929499, 38.102892],\n              [-79.929742, 38.102756],\n              [-79.93008, 38.102514],\n              [-79.930484, 38.102246],\n              [-79.930931, 38.101682],\n              [-79.931047, 38.101381],\n              [-79.93107, 38.10137],\n              [-79.931189, 38.101321],\n              [-79.931406, 38.101192],\n              [-79.931592, 38.101063],\n              [-79.932168, 38.100663],\n              [-79.932395, 38.100494],\n              [-79.932483, 38.100422],\n              [-79.933155, 38.099786],\n              [-79.933921, 38.099123],\n              [-79.934007, 38.098538],\n              [-79.934259, 38.097684],\n              [-79.934614, 38.097325],\n              [-79.934907, 38.096997],\n              [-79.935109, 38.096555],\n              [-79.935472, 38.096261],\n              [-79.936353, 38.095602],\n              [-79.937848, 38.09495],\n              [-79.93828, 38.094753],\n              [-79.939877, 38.093092],\n              [-79.941357, 38.092085],\n              [-79.941903, 38.091842],\n              [-79.942368, 38.091597],\n              [-79.942659, 38.091301],\n              [-79.942913, 38.090885],\n              [-79.943321, 38.090373],\n              [-79.943574, 38.090021],\n              [-79.944027, 38.089817],\n              [-79.94434, 38.089522],\n              [-79.945167, 38.088532],\n              [-79.945704, 38.087944],\n              [-79.946609, 38.086958],\n              [-79.947012, 38.086229],\n              [-79.947134, 38.085294],\n              [-79.947292, 38.085053],\n              [-79.947601, 38.08492],\n              [-79.947981, 38.084804],\n              [-79.948312, 38.084614],\n              [-79.949116, 38.084245],\n              [-79.949931, 38.083819],\n              [-79.951114, 38.082914],\n              [-79.951267, 38.082737],\n              [-79.951308, 38.082689],\n              [-79.951349, 38.08264],\n              [-79.951459, 38.082507],\n              [-79.952131, 38.082177],\n              [-79.953514, 38.081487],\n              [-79.953713, 38.081243],\n              [-79.954373, 38.080408],\n              [-79.954534, 38.080109],\n              [-79.954533, 38.079987],\n              [-79.954537, 38.079923],\n              [-79.954542, 38.07986],\n              [-79.954539, 38.079752],\n              [-79.954403, 38.079419],\n              [-79.954217, 38.079021],\n              [-79.95413, 38.07877],\n              [-79.954197, 38.078528],\n              [-79.954509, 38.078218],\n              [-79.955553, 38.077625],\n              [-79.955647, 38.077505],\n              [-79.955671, 38.077328],\n              [-79.955639, 38.076916],\n              [-79.955715, 38.076683],\n              [-79.955748, 38.076562],\n              [-79.955752, 38.076376],\n              [-79.955768, 38.076118],\n              [-79.955919, 38.075732],\n              [-79.956107, 38.075492],\n              [-79.956273, 38.075398],\n              [-79.956419, 38.075214],\n              [-79.956506, 38.074973],\n              [-79.95739, 38.073183],\n              [-79.957518, 38.072926],\n              [-79.957616, 38.072637],\n              [-79.957685, 38.072283],\n              [-79.957761, 38.072057],\n              [-79.957875, 38.071938],\n              [-79.958206, 38.071732],\n              [-79.958608, 38.07156],\n              [-79.959169, 38.071294],\n              [-79.959354, 38.071174],\n              [-79.959372, 38.070771],\n              [-79.959135, 38.070405],\n              [-79.959151, 38.070107],\n              [-79.960097, 38.068682],\n              [-79.96095, 38.068139],\n              [-79.96116, 38.068],\n              [-79.96165, 38.067422],\n              [-79.961583, 38.066597],\n              [-79.96158, 38.066528],\n              [-79.961575, 38.066463],\n              [-79.961807, 38.066118],\n              [-79.961808, 38.065882],\n              [-79.96082, 38.06521],\n              [-79.96031, 38.064871],\n              [-79.95991, 38.064541],\n              [-79.959692, 38.064522],\n              [-79.959499, 38.064304],\n              [-79.959567, 38.063934],\n              [-79.959847, 38.063704],\n              [-79.959863, 38.063429],\n              [-79.95998, 38.063133],\n              [-79.960057, 38.062875],\n              [-79.960165, 38.062554],\n              [-79.960438, 38.062162],\n              [-79.960688, 38.061867],\n              [-79.960927, 38.061644],\n              [-79.96116, 38.061211],\n              [-79.961237, 38.061053],\n              [-79.961266, 38.060995],\n              [-79.961497, 38.060667],\n              [-79.961566, 38.060589],\n              [-79.961904, 38.060196],\n              [-79.962167, 38.059748],\n              [-79.962254, 38.059499],\n              [-79.962333, 38.059072],\n              [-79.962324, 38.0585],\n              [-79.962381, 38.058194],\n              [-79.962478, 38.057913],\n              [-79.962677, 38.057673],\n              [-79.963131, 38.057388],\n              [-79.963556, 38.057039],\n              [-79.963788, 38.05663],\n              [-79.963987, 38.055294],\n              [-79.964288, 38.054523],\n              [-79.964582, 38.054051],\n              [-79.965319, 38.053415],\n              [-79.965627, 38.052765],\n              [-79.965906, 38.052043],\n              [-79.965926, 38.051551],\n              [-79.965953, 38.051221],\n              [-79.966083, 38.050827],\n              [-79.96671, 38.050028],\n              [-79.967138, 38.049501],\n              [-79.967844, 38.048865],\n              [-79.968076, 38.048472],\n              [-79.968142, 38.048199],\n              [-79.968148, 38.047909],\n              [-79.968192, 38.047716],\n              [-79.968587, 38.047333],\n              [-79.969197, 38.046897],\n              [-79.96951, 38.046538],\n              [-79.969794, 38.046082],\n              [-79.970106, 38.045731],\n              [-79.970833, 38.045046],\n              [-79.971147, 38.044655],\n              [-79.971234, 38.044333],\n              [-79.971396, 38.043884],\n              [-79.972282, 38.042943],\n              [-79.972618, 38.042423],\n              [-79.972694, 38.042166],\n              [-79.972856, 38.041716],\n              [-79.972995, 38.041363],\n              [-79.973372, 38.040851],\n              [-79.973675, 38.04046],\n              [-79.973898, 38.040011],\n              [-79.973972, 38.039326],\n              [-79.97378, 38.038751],\n              [-79.973238, 38.037744],\n              [-79.972168, 38.036109],\n              [-79.971969, 38.035881],\n              [-79.971677, 38.035668],\n              [-79.971528, 38.035456],\n              [-79.971604, 38.035239],\n              [-79.972108, 38.034979],\n              [-79.973143, 38.034718],\n              [-79.97386, 38.034574],\n              [-79.974088, 38.034399],\n              [-79.974176, 38.034077],\n              [-79.974137, 38.033964],\n              [-79.973823, 38.033355],\n              [-79.973623, 38.03307],\n              [-79.973704, 38.032563],\n              [-79.973873, 38.032315],\n              [-79.974283, 38.032199],\n              [-79.974942, 38.031861],\n              [-79.97541, 38.031398],\n              [-79.975425, 38.031116],\n              [-79.97535, 38.030809],\n              [-79.975265, 38.030421],\n              [-79.975272, 38.030082],\n              [-79.975603, 38.029836],\n              [-79.976158, 38.029601],\n              [-79.976735, 38.029285],\n              [-79.976893, 38.029013],\n              [-79.976958, 38.028812],\n              [-79.977337, 38.02872],\n              [-79.97778, 38.02896],\n              [-79.978042, 38.02914],\n              [-79.97843, 38.029089],\n              [-79.978977, 38.02874],\n              [-79.979464, 38.028351],\n              [-79.980012, 38.027947],\n              [-79.980293, 38.027603],\n              [-79.980446, 38.027089],\n              [-79.980568, 38.026558],\n              [-79.980781, 38.026117],\n              [-79.981124, 38.025718],\n              [-79.981469, 38.025271],\n              [-79.981888, 38.024695],\n              [-79.982091, 38.02423],\n              [-79.982444, 38.023879],\n              [-79.98285, 38.023448],\n              [-79.98331, 38.022801],\n              [-79.983598, 38.022167],\n              [-79.983821, 38.021678],\n              [-79.983881, 38.021195],\n              [-79.983992, 38.020744],\n              [-79.984376, 38.020394],\n              [-79.985087, 38.019943],\n              [-79.985622, 38.019167],\n              [-79.985788, 38.018475],\n              [-79.985795, 38.018096],\n              [-79.985012, 38.016941],\n              [-79.984845, 38.016617],\n              [-79.984995, 38.016255],\n              [-79.985457, 38.016051],\n              [-79.985889, 38.015887],\n              [-79.986142, 38.015431],\n              [-79.986163, 38.014842],\n              [-79.986049, 38.014413],\n              [-79.986145, 38.014189],\n              [-79.986954, 38.013989],\n              [-79.988392, 38.013926],\n              [-79.989539, 38.013617],\n              [-79.990117, 38.013253],\n              [-79.990791, 38.012108],\n              [-79.99126, 38.011549],\n              [-79.99146, 38.011213],\n              [-79.991921, 38.010533],\n              [-79.992726, 38.010027],\n              [-79.993706, 38.009353],\n              [-79.99432, 38.008723],\n              [-79.994988, 38.00786],\n              [-79.995491, 38.007132],\n              [-79.995768, 38.006498],\n              [-79.995904, 38.005798],\n              [-79.995851, 38.005362],\n              [-79.995694, 38.005054],\n              [-79.995395, 38.004703],\n              [-79.995125, 38.004385],\n              [-79.994907, 38.004084],\n              [-79.995127, 38.00378],\n              [-79.995401, 38.003316],\n              [-79.995602, 38.002891],\n              [-79.996137, 38.001003],\n              [-79.996399, 38.000611],\n              [-79.99672, 38.000365],\n              [-79.99714, 38.000131],\n              [-79.998217, 38.000033],\n              [-79.99845, 37.999944],\n              [-79.998582, 37.999968],\n              [-79.998755, 37.999847],\n              [-79.998856, 37.999718],\n              [-79.998886, 37.999573],\n              [-79.998886, 37.999484],\n              [-79.998835, 37.999266],\n              [-79.998825, 37.999089],\n              [-79.998824, 37.998944],\n              [-79.998794, 37.998767],\n              [-79.998814, 37.998694],\n              [-79.998813, 37.99842],\n              [-79.998783, 37.99826],\n              [-79.998772, 37.998163],\n              [-79.99866, 37.997922],\n              [-79.998559, 37.997736],\n              [-79.99866, 37.997615],\n              [-79.998832, 37.997519],\n              [-79.998923, 37.997438],\n              [-79.999004, 37.997357],\n              [-79.999146, 37.99726],\n              [-79.999166, 37.997139],\n              [-79.999197, 37.997083],\n              [-79.999278, 37.996946],\n              [-79.999308, 37.996768],\n              [-79.999389, 37.996559],\n              [-79.999378, 37.996414],\n              [-79.999418, 37.996228],\n              [-79.999388, 37.996115],\n              [-79.999388, 37.996011],\n              [-79.999387, 37.995849],\n              [-79.999357, 37.995777],\n              [-79.999336, 37.995608],\n              [-79.999316, 37.995471],\n              [-79.999265, 37.995302],\n              [-79.999244, 37.995197],\n              [-79.999275, 37.995092],\n              [-79.999386, 37.994915],\n              [-79.999487, 37.994898],\n              [-79.999609, 37.994906],\n              [-79.999784, 37.994788],\n              [-80.000984, 37.994719],\n              [-80.001646, 37.994375],\n              [-80.001995, 37.993844],\n              [-80.002284, 37.993168],\n              [-80.00251, 37.992774],\n              [-80.003273, 37.992543],\n              [-80.003985, 37.992328],\n              [-80.004547, 37.991959],\n              [-80.005219, 37.991736],\n              [-80.006226, 37.991586],\n              [-80.006735, 37.99141],\n              [-80.007296, 37.990945],\n              [-80.007654, 37.990616],\n              [-80.007958, 37.990649],\n              [-80.008485, 37.990804],\n              [-80.008891, 37.990837],\n              [-80.009126, 37.990677],\n              [-80.00969, 37.989776],\n              [-80.010262, 37.989343],\n              [-80.010985, 37.989071],\n              [-80.011686, 37.988921],\n              [-80.012196, 37.98864],\n              [-80.012605, 37.988207],\n              [-80.012894, 37.98745],\n              [-80.012558, 37.986006],\n              [-80.012773, 37.985669],\n              [-80.013133, 37.985057],\n              [-80.013148, 37.98426],\n              [-80.014338, 37.983925],\n              [-80.015938, 37.983092],\n              [-80.016144, 37.982521],\n              [-80.016714, 37.982345],\n              [-80.017172, 37.98217],\n              [-80.017419, 37.981671],\n              [-80.01795, 37.981278],\n              [-80.018701, 37.98124],\n              [-80.020165, 37.980987],\n              [-80.020634, 37.980755],\n              [-80.020891, 37.980304],\n              [-80.021067, 37.979636],\n              [-80.021648, 37.979372],\n              [-80.021995, 37.979075],\n              [-80.022131, 37.978382],\n              [-80.022144, 37.978028],\n              [-80.022755, 37.977635],\n              [-80.023062, 37.977297],\n              [-80.023703, 37.977082],\n              [-80.024171, 37.976914],\n              [-80.024622, 37.976255],\n              [-80.025576, 37.976403],\n              [-80.025983, 37.976259],\n              [-80.026209, 37.975809],\n              [-80.026325, 37.975059],\n              [-80.026711, 37.974996],\n              [-80.027057, 37.974868],\n              [-80.027181, 37.974546],\n              [-80.027254, 37.974273],\n              [-80.027823, 37.974186],\n              [-80.028778, 37.9741],\n              [-80.029186, 37.974061],\n              [-80.029492, 37.973796],\n              [-80.029841, 37.973185],\n              [-80.030271, 37.972654],\n              [-80.030944, 37.972181],\n              [-80.031496, 37.971554],\n              [-80.032159, 37.97096],\n              [-80.032689, 37.970647],\n              [-80.03472, 37.968937],\n              [-80.035555, 37.968489],\n              [-80.035983, 37.968256],\n              [-80.036239, 37.967927],\n              [-80.036599, 37.967162],\n              [-80.036755, 37.966446],\n              [-80.036911, 37.965914],\n              [-80.039613, 37.965697],\n              [-80.040426, 37.965627],\n              [-80.040439, 37.965071],\n              [-80.040443, 37.96445],\n              [-80.040894, 37.963751],\n              [-80.041311, 37.963607],\n              [-80.04188, 37.96348],\n              [-80.043216, 37.962412],\n              [-80.043716, 37.962035],\n              [-80.044074, 37.961617],\n              [-80.044374, 37.960699],\n              [-80.044479, 37.960087],\n              [-80.045525, 37.959905],\n              [-80.046246, 37.959971],\n              [-80.046875, 37.960062],\n              [-80.047099, 37.959885],\n              [-80.047326, 37.959233],\n              [-80.047637, 37.958267],\n              [-80.048413, 37.957488],\n              [-80.049663, 37.957202],\n              [-80.050324, 37.957091],\n              [-80.051046, 37.956859],\n              [-80.051506, 37.956264],\n              [-80.052189, 37.955751],\n              [-80.052821, 37.955349],\n              [-80.053617, 37.954635],\n              [-80.054452, 37.954371],\n              [-80.054666, 37.954211],\n              [-80.055147, 37.953559],\n              [-80.055638, 37.952803],\n              [-80.056059, 37.951966],\n              [-80.056378, 37.951914],\n              [-80.056842, 37.95184],\n              [-80.058399, 37.951055],\n              [-80.059611, 37.950309],\n              [-80.060943, 37.94999],\n              [-80.061779, 37.949275],\n              [-80.06239, 37.949068],\n              [-80.062929, 37.948755],\n              [-80.063685, 37.947975],\n              [-80.063606, 37.947637],\n              [-80.064753, 37.947568],\n              [-80.065911, 37.947466],\n              [-80.066572, 37.947178],\n              [-80.06699, 37.946833],\n              [-80.068354, 37.946144],\n              [-80.06919, 37.945574],\n              [-80.069434, 37.94547],\n              [-80.069578, 37.945099],\n              [-80.070052, 37.943892],\n              [-80.071068, 37.943661],\n              [-80.071973, 37.943398],\n              [-80.072583, 37.943069],\n              [-80.073449, 37.942532],\n              [-80.074517, 37.942228],\n              [-80.074564, 37.942074],\n              [-80.074621, 37.94191],\n              [-80.074626, 37.941871],\n              [-80.074713, 37.941564],\n              [-80.07494, 37.940803],\n              [-80.075444, 37.939636],\n              [-80.076108, 37.938953],\n              [-80.077126, 37.938246],\n              [-80.0796, 37.936988],\n              [-80.080826, 37.935533],\n              [-80.082303, 37.934554],\n              [-80.083982, 37.933696],\n              [-80.084389, 37.933552],\n              [-80.084572, 37.933407],\n              [-80.084584, 37.933109],\n              [-80.0853, 37.931999],\n              [-80.085798, 37.931896],\n              [-80.086347, 37.931639],\n              [-80.0868, 37.930424],\n              [-80.086957, 37.929554],\n              [-80.087978, 37.928509],\n              [-80.088935, 37.927818],\n              [-80.090145, 37.927306],\n              [-80.091061, 37.926913],\n              [-80.091634, 37.925956],\n              [-80.092063, 37.925417],\n              [-80.091812, 37.924965],\n              [-80.091713, 37.924425],\n              [-80.092022, 37.923523],\n              [-80.092939, 37.922736],\n              [-80.094315, 37.921667],\n              [-80.094968, 37.921016],\n              [-80.095167, 37.919832],\n              [-80.095708, 37.919165],\n              [-80.096239, 37.918401],\n              [-80.096566, 37.918119],\n              [-80.097358, 37.917993],\n              [-80.099334, 37.918376],\n              [-80.100316, 37.918871],\n              [-80.101513, 37.919019],\n              [-80.102669, 37.918998],\n              [-80.102934, 37.918918],\n              [-80.10313, 37.918241],\n              [-80.103779, 37.916285],\n              [-80.10565, 37.915733],\n              [-80.106822, 37.914705],\n              [-80.107149, 37.914246],\n              [-80.107244, 37.913521],\n              [-80.107156, 37.912747],\n              [-80.107208, 37.912449],\n              [-80.107483, 37.912297],\n              [-80.107909, 37.912233],\n              [-80.108753, 37.912018],\n              [-80.109017, 37.911962],\n              [-80.109201, 37.911721],\n              [-80.109659, 37.911271],\n              [-80.110594, 37.910967],\n              [-80.111469, 37.910534],\n              [-80.112009, 37.910116],\n              [-80.112397, 37.909561],\n              [-80.112805, 37.909111],\n              [-80.113053, 37.908185],\n              [-80.11336, 37.907557],\n              [-80.113717, 37.907259],\n              [-80.114195, 37.907099],\n              [-80.115067, 37.907021],\n              [-80.116165, 37.906652],\n              [-80.116887, 37.906299],\n              [-80.117033, 37.905477],\n              [-80.117242, 37.904285],\n              [-80.117496, 37.904189],\n              [-80.117496, 37.904117],\n              [-80.117618, 37.904077],\n              [-80.11774, 37.904061],\n              [-80.118187, 37.903973],\n              [-80.118491, 37.903926],\n              [-80.118786, 37.903805],\n              [-80.11897, 37.903621],\n              [-80.119146, 37.902783],\n              [-80.119109, 37.902025],\n              [-80.118868, 37.901557],\n              [-80.118474, 37.901234],\n              [-80.117624, 37.900798],\n              [-80.117483, 37.900588],\n              [-80.117335, 37.899612],\n              [-80.117483, 37.898508],\n              [-80.11775, 37.897727],\n              [-80.118066, 37.897502],\n              [-80.118483, 37.897213],\n              [-80.11891, 37.897053],\n              [-80.119579, 37.897087],\n              [-80.119894, 37.896983],\n              [-80.120616, 37.896742],\n              [-80.121254, 37.896969],\n              [-80.121618, 37.897131],\n              [-80.122499, 37.897464],\n              [-80.123024, 37.898053],\n              [-80.123623, 37.89795],\n              [-80.123948, 37.897733],\n              [-80.124789, 37.896934],\n              [-80.125577, 37.89647],\n              [-80.125924, 37.896125],\n              [-80.126436, 37.895361],\n              [-80.127049, 37.894815],\n              [-80.127964, 37.894448],\n              [-80.129558, 37.894141],\n              [-80.129771, 37.894166],\n              [-80.130219, 37.893837],\n              [-80.130495, 37.893499],\n              [-80.130467, 37.893201],\n              [-80.130094, 37.892958],\n              [-80.129984, 37.89278],\n              [-80.130239, 37.892507],\n              [-80.130689, 37.892017],\n              [-80.131043, 37.890704],\n              [-80.131484, 37.890013],\n              [-80.131934, 37.889507],\n              [-80.132584, 37.889268],\n              [-80.133349, 37.88865],\n              [-80.133758, 37.888289],\n              [-80.134579, 37.888292],\n              [-80.135056, 37.888246],\n              [-80.135271, 37.887948],\n              [-80.135427, 37.887393],\n              [-80.136608, 37.88672],\n              [-80.137329, 37.886514],\n              [-80.13799, 37.886291],\n              [-80.138245, 37.886098],\n              [-80.139349, 37.884861],\n              [-80.140214, 37.884268],\n              [-80.140612, 37.883939],\n              [-80.141269, 37.882837],\n              [-80.141341, 37.882717],\n              [-80.141525, 37.882443],\n              [-80.141728, 37.882428],\n              [-80.14195, 37.882623],\n              [-80.142775, 37.883384],\n              [-80.142722, 37.883682],\n              [-80.142952, 37.884126],\n              [-80.143246, 37.884224],\n              [-80.143853, 37.884307],\n              [-80.144167, 37.88434],\n              [-80.144471, 37.884342],\n              [-80.144531, 37.884328],\n              [-80.144583, 37.884315],\n              [-80.145263, 37.884159],\n              [-80.145608, 37.884136],\n              [-80.145981, 37.884366],\n              [-80.146133, 37.88446],\n              [-80.146711, 37.885101],\n              [-80.147172, 37.885628],\n              [-80.147304, 37.885911],\n              [-80.147319, 37.885943],\n              [-80.14742, 37.885933],\n              [-80.147561, 37.886006],\n              [-80.147652, 37.886007],\n              [-80.148458, 37.886744],\n              [-80.14874, 37.886962],\n              [-80.148954, 37.886899],\n              [-80.149089, 37.886456],\n              [-80.14905, 37.886182],\n              [-80.149154, 37.8859],\n              [-80.149379, 37.885602],\n              [-80.149694, 37.885426],\n              [-80.149909, 37.885145],\n              [-80.149921, 37.884879],\n              [-80.149883, 37.884516],\n              [-80.149851, 37.883371],\n              [-80.150399, 37.883172],\n              [-80.151578, 37.882838],\n              [-80.152665, 37.882487],\n              [-80.153095, 37.882318],\n              [-80.153234, 37.882264],\n              [-80.153835, 37.881831],\n              [-80.155324, 37.880555],\n              [-80.156497, 37.879431],\n              [-80.157528, 37.878435],\n              [-80.158294, 37.877713],\n              [-80.158809, 37.877373],\n              [-80.162205, 37.875129],\n              [-80.162655, 37.873621],\n              [-80.163784, 37.872986],\n              [-80.165376, 37.870874],\n              [-80.165575, 37.870438],\n              [-80.16557, 37.869907],\n              [-80.165364, 37.869465],\n              [-80.165076, 37.869032],\n              [-80.165538, 37.868522],\n              [-80.167449, 37.868107],\n              [-80.167995, 37.867967],\n              [-80.168579, 37.867625],\n              [-80.16896, 37.867123],\n              [-80.169527, 37.865992],\n              [-80.169775, 37.865403],\n              [-80.170347, 37.864698],\n              [-80.170879, 37.864147],\n              [-80.171156, 37.863397],\n              [-80.171233, 37.863018],\n              [-80.171614, 37.862556],\n              [-80.172036, 37.862151],\n              [-80.172045, 37.860863],\n              [-80.172079, 37.860073],\n              [-80.171934, 37.859696],\n              [-80.1718, 37.859447],\n              [-80.171656, 37.85919],\n              [-80.171644, 37.858973],\n              [-80.172046, 37.8586],\n              [-80.172557, 37.858033],\n              [-80.173019, 37.857523],\n              [-80.173448, 37.856852],\n              [-80.174023, 37.85659],\n              [-80.175184, 37.856099],\n              [-80.175717, 37.85575],\n              [-80.176199, 37.855272],\n              [-80.176538, 37.854609],\n              [-80.176715, 37.854036],\n              [-80.176751, 37.853496],\n              [-80.176727, 37.853046],\n              [-80.176744, 37.852764],\n              [-80.177919, 37.852772],\n              [-80.178516, 37.852648],\n              [-80.179031, 37.85254],\n              [-80.179577, 37.852472],\n              [-80.180196, 37.852588],\n              [-80.180674, 37.85277],\n              [-80.180999, 37.852897],\n              [-80.181414, 37.85291],\n              [-80.181818, 37.852731],\n              [-80.182128, 37.852254],\n              [-80.182758, 37.851372],\n              [-80.183065, 37.850653],\n              [-80.183067, 37.850577],\n              [-80.183114, 37.849276],\n              [-80.18305, 37.848898],\n              [-80.183047, 37.848632],\n              [-80.18328, 37.848319],\n              [-80.183368, 37.848203],\n              [-80.183597, 37.847847],\n              [-80.183641, 37.847511],\n              [-80.183654, 37.84742],\n              [-80.183558, 37.846817],\n              [-80.183091, 37.84562],\n              [-80.182764, 37.845188],\n              [-80.182202, 37.844644],\n              [-80.181629, 37.844035],\n              [-80.181213, 37.842758],\n              [-80.180747, 37.841601],\n              [-80.180388, 37.841121],\n              [-80.179786, 37.840529],\n              [-80.179468, 37.840088],\n              [-80.179394, 37.839758],\n              [-80.180038, 37.839239],\n              [-80.180832, 37.838691],\n              [-80.181004, 37.838572],\n              [-80.181771, 37.83835],\n              [-80.183351, 37.838315],\n              [-80.185242, 37.838117],\n              [-80.186383, 37.837748],\n              [-80.187085, 37.837034],\n              [-80.187788, 37.836378],\n              [-80.188575, 37.836074],\n              [-80.189441, 37.835481],\n              [-80.189912, 37.834962],\n              [-80.190134, 37.834848],\n              [-80.191219, 37.834897],\n              [-80.191633, 37.834904],\n              [-80.192262, 37.834915],\n              [-80.192707, 37.834871],\n              [-80.192969, 37.834757],\n              [-80.193128, 37.834434],\n              [-80.193215, 37.833966],\n              [-80.19363, 37.83286],\n              [-80.194653, 37.831766],\n              [-80.195546, 37.830851],\n              [-80.197524, 37.829098],\n              [-80.199636, 37.827514],\n              [-80.201173, 37.826151],\n              [-80.201467, 37.825817],\n              [-80.202856, 37.824247],\n              [-80.203593, 37.822913],\n              [-80.204826, 37.820562],\n              [-80.205844, 37.818928],\n              [-80.206121, 37.81821],\n              [-80.20607, 37.8178],\n              [-80.206011, 37.817317],\n              [-80.206107, 37.81676],\n              [-80.206485, 37.815977],\n              [-80.207692, 37.815123],\n              [-80.209411, 37.813823],\n              [-80.210968, 37.812605],\n              [-80.212439, 37.811878],\n              [-80.213666, 37.81119],\n              [-80.215284, 37.81036],\n              [-80.216232, 37.809827],\n              [-80.216868, 37.809544],\n              [-80.216942, 37.809512],\n              [-80.217926, 37.809819],\n              [-80.218271, 37.809833],\n              [-80.218614, 37.80979],\n              [-80.219143, 37.809014],\n              [-80.221045, 37.806609],\n              [-80.222794, 37.804254],\n              [-80.224315, 37.802464],\n              [-80.225084, 37.801347],\n              [-80.225365, 37.801104],\n              [-80.225372, 37.800798],\n              [-80.225288, 37.800436],\n              [-80.225286, 37.800275],\n              [-80.226071, 37.799762],\n              [-80.227095, 37.798893],\n              [-80.227693, 37.797899],\n              [-80.22798, 37.797204],\n              [-80.228027, 37.797126],\n              [-80.228498, 37.796347],\n              [-80.229231, 37.794667],\n              [-80.229503, 37.793514],\n              [-80.229638, 37.792852],\n              [-80.229492, 37.792338],\n              [-80.229054, 37.792084],\n              [-80.227968, 37.791721],\n              [-80.227283, 37.790993],\n              [-80.226985, 37.790495],\n              [-80.226333, 37.790073],\n              [-80.226058, 37.789842],\n              [-80.225932, 37.789375],\n              [-80.226099, 37.788811],\n              [-80.226186, 37.788432],\n              [-80.225848, 37.78812],\n              [-80.225086, 37.787747],\n              [-80.224451, 37.787502],\n              [-80.224343, 37.787461],\n              [-80.224271, 37.787439],\n              [-80.223421, 37.787186],\n              [-80.223043, 37.78673],\n              [-80.222917, 37.78628],\n              [-80.223197, 37.785924],\n              [-80.22361, 37.785792],\n              [-80.224155, 37.785635],\n              [-80.224475, 37.785222],\n              [-80.22454, 37.784602],\n              [-80.224338, 37.783589],\n              [-80.22407, 37.782995],\n              [-80.223488, 37.782451],\n              [-80.222684, 37.781966],\n              [-80.222085, 37.781776],\n              [-80.221479, 37.781918],\n              [-80.221017, 37.782235],\n              [-80.220586, 37.782673],\n              [-80.220095, 37.783167],\n              [-80.21958, 37.783316],\n              [-80.219085, 37.783375],\n              [-80.218619, 37.783298],\n              [-80.217979, 37.783021],\n              [-80.217255, 37.782398],\n              [-80.216626, 37.782209],\n              [-80.216271, 37.782139],\n              [-80.215895, 37.781996],\n              [-80.21573, 37.781603],\n              [-80.215938, 37.781199],\n              [-80.216102, 37.780344],\n              [-80.216289, 37.779795],\n              [-80.216367, 37.779408],\n              [-80.216172, 37.779168],\n              [-80.215645, 37.77901],\n              [-80.215521, 37.778786],\n              [-80.215639, 37.778423],\n              [-80.215638, 37.778262],\n              [-80.215634, 37.777891],\n              [-80.215661, 37.777488],\n              [-80.215941, 37.777197],\n              [-80.216303, 37.776872],\n              [-80.216501, 37.776452],\n              [-80.216608, 37.775968],\n              [-80.216819, 37.77587],\n              [-80.216902, 37.776063],\n              [-80.217179, 37.776512],\n              [-80.217637, 37.776782],\n              [-80.21847, 37.777067],\n              [-80.219483, 37.777205],\n              [-80.220387, 37.777625],\n              [-80.221181, 37.778127],\n              [-80.22183, 37.7783],\n              [-80.222365, 37.778215],\n              [-80.222567, 37.777916],\n              [-80.222678, 37.777766],\n              [-80.223034, 37.777285],\n              [-80.223629, 37.777063],\n              [-80.224185, 37.777035],\n              [-80.224195, 37.777033],\n              [-80.22466, 37.776943],\n              [-80.225166, 37.776924],\n              [-80.22545, 37.777083],\n              [-80.225799, 37.777612],\n              [-80.226301, 37.778212],\n              [-80.22671, 37.778701],\n              [-80.227056, 37.778867],\n              [-80.227501, 37.778896],\n              [-80.227648, 37.778877],\n              [-80.228148, 37.778827],\n              [-80.229048, 37.77862],\n              [-80.229795, 37.778518],\n              [-80.230461, 37.778312],\n              [-80.230712, 37.778119],\n              [-80.230863, 37.778003],\n              [-80.230862, 37.777976],\n              [-80.230852, 37.777621],\n              [-80.230848, 37.777464],\n              [-80.230865, 37.777251],\n              [-80.230872, 37.777156],\n              [-80.230884, 37.777005],\n              [-80.231462, 37.776707],\n              [-80.231518, 37.776678],\n              [-80.231533, 37.776643],\n              [-80.231756, 37.776137],\n              [-80.231798, 37.776053],\n              [-80.231858, 37.775937],\n              [-80.232014, 37.775628],\n              [-80.232547, 37.775353],\n              [-80.232678, 37.775285],\n              [-80.233304, 37.775095],\n              [-80.233715, 37.774746],\n              [-80.234016, 37.774487],\n              [-80.234461, 37.774467],\n              [-80.235069, 37.774576],\n              [-80.235452, 37.774444],\n              [-80.235558, 37.773856],\n              [-80.235895, 37.773137],\n              [-80.236328, 37.772981],\n              [-80.238562, 37.772715],\n              [-80.239514, 37.772829],\n              [-80.240271, 37.772711],\n              [-80.240866, 37.772449],\n              [-80.241244, 37.771802],\n              [-80.241245, 37.771714],\n              [-80.241248, 37.771441],\n              [-80.241251, 37.771174],\n              [-80.241255, 37.77086],\n              [-80.241393, 37.76945],\n              [-80.241394, 37.768928],\n              [-80.241394, 37.768548],\n              [-80.24144, 37.768065],\n              [-80.241994, 37.767755],\n              [-80.242831, 37.767499],\n              [-80.243771, 37.767444],\n              [-80.244264, 37.767191],\n              [-80.244566, 37.767012],\n              [-80.244921, 37.767098],\n              [-80.245318, 37.767337],\n              [-80.245887, 37.767614],\n              [-80.246526, 37.767851],\n              [-80.246872, 37.768042],\n              [-80.246905, 37.768316],\n              [-80.24709, 37.768572],\n              [-80.247495, 37.768618],\n              [-80.24798, 37.768518],\n              [-80.248392, 37.768257],\n              [-80.248499, 37.767862],\n              [-80.248827, 37.767263],\n              [-80.249399, 37.766776],\n              [-80.249793, 37.766579],\n              [-80.250404, 37.765826],\n              [-80.251331, 37.763973],\n              [-80.251659, 37.763254],\n              [-80.251322, 37.762965],\n              [-80.250895, 37.76279],\n              [-80.250476, 37.762446],\n              [-80.250311, 37.762156],\n              [-80.250473, 37.761064],\n              [-80.250531, 37.7609],\n              [-80.250668, 37.76053],\n              [-80.250831, 37.760088],\n              [-80.250916, 37.759402],\n              [-80.250739, 37.758871],\n              [-80.250177, 37.758374],\n              [-80.249793, 37.758053],\n              [-80.249606, 37.757957],\n              [-80.249442, 37.757781],\n              [-80.249349, 37.757508],\n              [-80.249438, 37.757282],\n              [-80.249638, 37.757144],\n              [-80.249793, 37.757118],\n              [-80.250456, 37.756687],\n              [-80.250578, 37.756376],\n              [-80.250655, 37.756185],\n              [-80.250793, 37.755757],\n              [-80.250882, 37.755523],\n              [-80.251177, 37.755594],\n              [-80.251625, 37.755873],\n              [-80.252111, 37.755863],\n              [-80.252761, 37.755996],\n              [-80.2533, 37.75613],\n              [-80.253903, 37.75618],\n              [-80.253939, 37.756183],\n              [-80.2549, 37.755984],\n              [-80.255763, 37.756221],\n              [-80.256413, 37.756379],\n              [-80.257082, 37.756294],\n              [-80.257414, 37.756091],\n              [-80.2576, 37.755291],\n              [-80.257605, 37.754743],\n              [-80.257741, 37.75404],\n              [-80.258019, 37.753426],\n              [-80.258451, 37.75302],\n              [-80.259055, 37.752524],\n              [-80.259093, 37.752234],\n              [-80.258936, 37.751622],\n              [-80.258941, 37.751089],\n              [-80.259454, 37.750618],\n              [-80.260099, 37.750129],\n              [-80.260293, 37.749898],\n              [-80.260251, 37.74977],\n              [-80.259927, 37.749733],\n              [-80.259505, 37.749477],\n              [-80.259301, 37.748923],\n              [-80.259065, 37.748283],\n              [-80.259304, 37.747402],\n              [-80.259034, 37.746244],\n              [-80.259318, 37.744968],\n              [-80.259696, 37.744545],\n              [-80.260418, 37.743491],\n              [-80.261311, 37.742298],\n              [-80.262151, 37.741653],\n              [-80.261834, 37.740818],\n              [-80.261701, 37.740046],\n              [-80.262062, 37.7398],\n              [-80.262259, 37.739468],\n              [-80.262374, 37.739032],\n              [-80.262712, 37.73865],\n              [-80.262768, 37.738343],\n              [-80.261979, 37.737682],\n              [-80.261303, 37.737173],\n              [-80.261185, 37.73669],\n              [-80.261315, 37.735343],\n              [-80.260997, 37.734411],\n              [-80.260316, 37.733524],\n              [-80.259671, 37.733038],\n              [-80.257584, 37.732156],\n              [-80.255024, 37.731423],\n              [-80.253538, 37.730648],\n              [-80.252027, 37.729832],\n              [-80.251901, 37.729552],\n              [-80.252027, 37.728551],\n              [-80.25223, 37.727268],\n              [-80.25308, 37.725906],\n              [-80.254148, 37.724993],\n              [-80.254964, 37.724139],\n              [-80.256764, 37.722163],\n              [-80.258146, 37.720619],\n              [-80.259079, 37.720094],\n              [-80.26036, 37.719888],\n              [-80.261491, 37.719773],\n              [-80.262637, 37.719294],\n              [-80.263939, 37.719144],\n              [-80.264409, 37.718793],\n              [-80.264987, 37.718256],\n              [-80.265438, 37.717325],\n              [-80.266915, 37.716005],\n              [-80.267173, 37.715696],\n              [-80.267101, 37.714923],\n              [-80.267454, 37.714235],\n              [-80.267882, 37.713779],\n              [-80.268152, 37.71289],\n              [-80.268992, 37.712399],\n              [-80.269612, 37.711917],\n              [-80.270439, 37.71178],\n              [-80.271993, 37.711539],\n              [-80.272343, 37.711286],\n              [-80.272958, 37.710547],\n              [-80.274228, 37.708923],\n              [-80.27501, 37.707851],\n              [-80.276097, 37.706222],\n              [-80.27658, 37.705556],\n              [-80.28057, 37.702637],\n              [-80.281146, 37.702032],\n              [-80.281342, 37.701826],\n              [-80.281472, 37.70169],\n              [-80.281948, 37.701191],\n              [-80.282332, 37.700788],\n              [-80.283285, 37.699788],\n              [-80.285304, 37.697998],\n              [-80.285791, 37.697583],\n              [-80.28583, 37.697558],\n              [-80.286546, 37.69698],\n              [-80.28711, 37.696411],\n              [-80.287471, 37.696172],\n              [-80.287747, 37.696071],\n              [-80.288004, 37.695972],\n              [-80.29411, 37.693859],\n              [-80.29479, 37.693701],\n              [-80.295353, 37.693415],\n              [-80.295919, 37.692845],\n              [-80.296146, 37.692371],\n              [-80.296141, 37.69179],\n              [-80.296127, 37.691778],\n              [-80.296103, 37.691757],\n              [-80.296092, 37.691748],\n              [-80.296081, 37.691738],\n              [-80.29608, 37.691737],\n              [-80.293873, 37.687184],\n              [-80.293732, 37.686955],\n              [-80.293267, 37.6862],\n              [-80.293124, 37.685859],\n              [-80.293121, 37.685853],\n              [-80.293058, 37.685703],\n              [-80.292335, 37.683979],\n              [-80.292328, 37.683962],\n              [-80.292313, 37.683928],\n              [-80.292257, 37.683895],\n              [-80.292213, 37.683852],\n              [-80.292184, 37.683802],\n              [-80.292173, 37.683756],\n              [-80.292162, 37.683708],\n              [-80.292159, 37.683612],\n              [-80.29217, 37.683542],\n              [-80.292156, 37.683511],\n              [-80.290017, 37.678833],\n              [-80.289904, 37.678602],\n              [-80.286927, 37.672499],\n              [-80.282955, 37.664354],\n              [-80.279375, 37.657084],\n              [-80.278679, 37.656202],\n              [-80.278115, 37.655728],\n              [-80.277401, 37.655128],\n              [-80.277373, 37.655105],\n              [-80.273892, 37.652084],\n              [-80.273635, 37.651861],\n              [-80.273354, 37.651617],\n              [-80.273342, 37.651606],\n              [-80.273292, 37.651563],\n              [-80.272373, 37.650765],\n              [-80.270326, 37.648989],\n              [-80.270332, 37.648914],\n              [-80.269872, 37.648466],\n              [-80.269123, 37.647737],\n              [-80.269089, 37.647704],\n              [-80.269085, 37.6477],\n              [-80.26908, 37.647696],\n              [-80.269073, 37.647689],\n              [-80.269036, 37.647653],\n              [-80.268982, 37.6476],\n              [-80.26886, 37.647481],\n              [-80.268801, 37.647423],\n              [-80.267999, 37.646642],\n              [-80.267705, 37.646356],\n              [-80.267507, 37.646163],\n              [-80.267231, 37.646018],\n              [-80.267206, 37.646012],\n              [-80.266219, 37.645803],\n              [-80.266209, 37.645801],\n              [-80.2662, 37.645799],\n              [-80.264835, 37.645509],\n              [-80.264792, 37.645522],\n              [-80.264544, 37.645454],\n              [-80.26355, 37.645182],\n              [-80.263524, 37.645175],\n              [-80.263469, 37.64516],\n              [-80.263388, 37.645138],\n              [-80.263347, 37.645127],\n              [-80.263333, 37.645104],\n              [-80.254953, 37.64249],\n              [-80.254544, 37.642363],\n              [-80.254507, 37.642379],\n              [-80.246322, 37.639963],\n              [-80.240794, 37.638331],\n              [-80.239973, 37.637961],\n              [-80.239332, 37.637696],\n              [-80.239323, 37.637692],\n              [-80.239306, 37.637682],\n              [-80.239298, 37.637677],\n              [-80.239272, 37.637662],\n              [-80.238862, 37.637423],\n              [-80.238792, 37.637382],\n              [-80.237192, 37.636446],\n              [-80.237031, 37.636355],\n              [-80.234183, 37.634958],\n              [-80.233435, 37.634552],\n              [-80.231332, 37.63341],\n              [-80.22793, 37.631556],\n              [-80.225263, 37.63013],\n              [-80.22511, 37.630048],\n              [-80.222944, 37.628847],\n              [-80.221728, 37.628181],\n              [-80.221167, 37.627873],\n              [-80.221079, 37.627825],\n              [-80.220987, 37.627774],\n              [-80.221441, 37.627357],\n              [-80.222037, 37.626697],\n              [-80.222498, 37.625837],\n              [-80.222578, 37.625132],\n              [-80.223389, 37.623192],\n              [-80.224284, 37.621975],\n              [-80.22602, 37.620066],\n              [-80.22881, 37.617512],\n              [-80.230623, 37.61611],\n              [-80.231941, 37.614809],\n              [-80.233133, 37.613897],\n              [-80.234967, 37.612543],\n              [-80.236019, 37.611752],\n              [-80.236504, 37.610966],\n              [-80.236947, 37.610035],\n              [-80.238136, 37.608977],\n              [-80.238956, 37.608245],\n              [-80.239348, 37.608064],\n              [-80.239816, 37.607456],\n              [-80.240275, 37.606968],\n              [-80.240928, 37.606696],\n              [-80.241291, 37.60654],\n              [-80.242248, 37.60629],\n              [-80.243423, 37.605644],\n              [-80.243952, 37.605075],\n              [-80.244394, 37.604845],\n              [-80.245007, 37.604598],\n              [-80.245931, 37.604115],\n              [-80.246713, 37.603584],\n              [-80.24808, 37.60296],\n              [-80.248742, 37.602519],\n              [-80.249283, 37.602103],\n              [-80.249783, 37.602124],\n              [-80.250561, 37.601524],\n              [-80.251456, 37.600972],\n              [-80.252802, 37.599975],\n              [-80.253758, 37.599454],\n              [-80.255014, 37.598417],\n              [-80.25633, 37.597428],\n              [-80.257768, 37.596503],\n              [-80.258561, 37.595871],\n              [-80.258922, 37.595506],\n              [-80.260382, 37.594871],\n              [-80.262113, 37.594049],\n              [-80.263563, 37.593381],\n              [-80.265187, 37.593083],\n              [-80.266255, 37.592771],\n              [-80.26691, 37.592462],\n              [-80.268449, 37.591673],\n              [-80.270345, 37.591156],\n              [-80.272377, 37.590002],\n              [-80.274624, 37.589233],\n              [-80.275195, 37.588682],\n              [-80.276162, 37.58825],\n              [-80.277037, 37.587827],\n              [-80.27778, 37.587203],\n              [-80.278684, 37.586474],\n              [-80.279195, 37.58598],\n              [-80.279496, 37.585696],\n              [-80.279737, 37.585542],\n              [-80.280039, 37.585444],\n              [-80.280625, 37.585408],\n              [-80.281767, 37.585499],\n              [-80.282443, 37.585488],\n              [-80.282978, 37.585332],\n              [-80.283401, 37.585185],\n              [-80.283753, 37.584997],\n              [-80.284114, 37.584641],\n              [-80.284676, 37.584284],\n              [-80.285975, 37.583721],\n              [-80.286769, 37.58325],\n              [-80.287855, 37.582608],\n              [-80.288769, 37.581967],\n              [-80.289654, 37.581447],\n              [-80.290761, 37.580893],\n              [-80.292058, 37.580226],\n              [-80.293115, 37.579785],\n              [-80.293869, 37.579298],\n              [-80.294885, 37.578777],\n              [-80.295651, 37.57858],\n              [-80.296609, 37.578365],\n              [-80.297565, 37.577925],\n              [-80.29971, 37.577189],\n              [-80.300676, 37.576749],\n              [-80.301392, 37.576632],\n              [-80.302558, 37.575925],\n              [-80.304117, 37.575128],\n              [-80.30617, 37.574223],\n              [-80.306995, 37.573791],\n              [-80.308845, 37.572855],\n              [-80.310232, 37.572026],\n              [-80.310846, 37.571765],\n              [-80.311995, 37.571509],\n              [-80.313476, 37.571074],\n              [-80.314604, 37.570681],\n              [-80.3155, 37.570322],\n              [-80.316784, 37.56926],\n              [-80.31801, 37.568584],\n              [-80.319188, 37.568086],\n              [-80.321694, 37.567122],\n              [-80.323465, 37.566291],\n              [-80.328507, 37.564322],\n              [-80.328246, 37.564029],\n              [-80.32728, 37.562945],\n              [-80.326313, 37.56186],\n              [-80.323833, 37.559077],\n              [-80.321352, 37.556293],\n              [-80.320041, 37.554841],\n              [-80.316727, 37.551102],\n              [-80.314528, 37.548644],\n              [-80.313367, 37.547334],\n              [-80.312373, 37.546232],\n              [-80.312289, 37.546229],\n              [-80.312204, 37.546227],\n              [-80.312415, 37.54611],\n              [-80.312501, 37.546038],\n              [-80.312506, 37.546034],\n              [-80.312724, 37.545852],\n              [-80.312753, 37.545828],\n              [-80.312767, 37.545761],\n              [-80.312813, 37.545547],\n              [-80.312836, 37.54553],\n              [-80.312978, 37.545423],\n              [-80.312981, 37.545413],\n              [-80.313001, 37.545318],\n              [-80.313392, 37.545007],\n              [-80.314029, 37.544589],\n              [-80.314174, 37.544568],\n              [-80.314186, 37.54454],\n              [-80.314263, 37.544179],\n              [-80.314473, 37.544062],\n              [-80.31533, 37.543956],\n              [-80.31551, 37.54398],\n              [-80.316975, 37.543627],\n              [-80.317569, 37.543715],\n              [-80.317667, 37.543862],\n              [-80.318155, 37.543962],\n              [-80.318598, 37.543839],\n              [-80.319072, 37.543574],\n              [-80.319275, 37.543273],\n              [-80.319325, 37.543041],\n              [-80.319342, 37.542958],\n              [-80.319485, 37.542724],\n              [-80.319913, 37.542454],\n              [-80.320466, 37.542419],\n              [-80.320477, 37.542418],\n              [-80.320608, 37.542365],\n              [-80.320688, 37.542325],\n              [-80.320766, 37.542301],\n              [-80.320839, 37.542271],\n              [-80.320879, 37.542254],\n              [-80.320889, 37.542247],\n              [-80.320911, 37.542223],\n              [-80.320919, 37.542215],\n              [-80.320922, 37.542211],\n              [-80.321002, 37.542125],\n              [-80.3211, 37.541667],\n              [-80.321228, 37.541503],\n              [-80.321491, 37.541356],\n              [-80.324004, 37.541285],\n              [-80.324691, 37.541121],\n              [-80.325059, 37.540916],\n              [-80.325383, 37.540921],\n              [-80.326164, 37.540734],\n              [-80.326568, 37.54057],\n              [-80.326765, 37.540522],\n              [-80.327494, 37.540147],\n              [-80.32777, 37.539833],\n              [-80.327799, 37.539794],\n              [-80.327834, 37.539759],\n              [-80.327922, 37.539659],\n              [-80.328109, 37.539213],\n              [-80.328395, 37.538961],\n              [-80.32847, 37.538609],\n              [-80.328372, 37.538198],\n              [-80.32838, 37.537643],\n              [-80.32868, 37.537406],\n              [-80.329987, 37.536708],\n              [-80.330371, 37.536274],\n              [-80.330314, 37.53625],\n              [-80.326562, 37.534668],\n              [-80.325369, 37.534167],\n              [-80.323002, 37.533172],\n              [-80.319429, 37.53166],\n              [-80.312981, 37.52893],\n              [-80.30935, 37.527387],\n              [-80.29167, 37.536523],\n              [-80.291628, 37.536503],\n              [-80.282394, 37.533526],\n              [-80.282571, 37.533257],\n              [-80.282895, 37.53279],\n              [-80.28378, 37.531506],\n              [-80.284663, 37.530223],\n              [-80.285809, 37.528561],\n              [-80.289297, 37.523501],\n              [-80.290515, 37.521734],\n              [-80.291734, 37.519967],\n              [-80.292829, 37.518378],\n              [-80.293925, 37.516789],\n              [-80.294727, 37.515625],\n              [-80.29553, 37.51446],\n              [-80.299792, 37.508278],\n              [-80.309836, 37.503834],\n              [-80.309531, 37.503333],\n              [-80.309336, 37.50289],\n              [-80.313338, 37.501571],\n              [-80.314809, 37.50095],\n              [-80.315649, 37.500599],\n              [-80.316763, 37.500133],\n              [-80.32063, 37.498887],\n              [-80.322252, 37.498192],\n              [-80.324313, 37.497016],\n              [-80.327103, 37.495384],\n              [-80.329262, 37.494643],\n              [-80.332037, 37.493752],\n              [-80.334243, 37.493334],\n              [-80.336945, 37.492959],\n              [-80.338866, 37.492878],\n              [-80.340455, 37.492699],\n              [-80.341523, 37.492543],\n              [-80.342438, 37.49241],\n              [-80.343783, 37.492158],\n              [-80.346366, 37.491435],\n              [-80.348675, 37.490783],\n              [-80.351826, 37.489736],\n              [-80.354827, 37.488563],\n              [-80.357153, 37.487915],\n              [-80.360339, 37.487004],\n              [-80.362494, 37.486506],\n              [-80.364531, 37.485535],\n              [-80.365788, 37.484938],\n              [-80.36684, 37.484886],\n              [-80.363174, 37.480008],\n              [-80.365327, 37.479003],\n              [-80.367412, 37.477878],\n              [-80.369454, 37.476604],\n              [-80.370572, 37.475482],\n              [-80.371954, 37.474076],\n              [-80.374756, 37.472931],\n              [-80.378285, 37.471396],\n              [-80.382511, 37.470383],\n              [-80.39062, 37.466615],\n              [-80.391698, 37.466121],\n              [-80.391719, 37.466111],\n              [-80.395099, 37.464542],\n              [-80.395146, 37.46452],\n              [-80.399462, 37.462512],\n              [-80.399849, 37.462332],\n              [-80.402748, 37.460368],\n              [-80.402761, 37.460358],\n              [-80.402783, 37.460341],\n              [-80.40516, 37.459253],\n              [-80.406041, 37.45885],\n              [-80.406358, 37.458705],\n              [-80.406521, 37.458631],\n              [-80.406667, 37.458564],\n              [-80.407337, 37.458257],\n              [-80.40761, 37.458132],\n              [-80.413151, 37.455599],\n              [-80.414262, 37.455091],\n              [-80.418297, 37.453247],\n              [-80.418751, 37.453039],\n              [-80.418855, 37.452992],\n              [-80.418883, 37.452979],\n              [-80.419525, 37.452685],\n              [-80.421147, 37.451943],\n              [-80.421749, 37.451668],\n              [-80.424063, 37.45061],\n              [-80.424152, 37.450569],\n              [-80.424292, 37.450505],\n              [-80.425632, 37.449892],\n              [-80.430041, 37.44691],\n              [-80.443012, 37.438138],\n              [-80.451358, 37.43405],\n              [-80.457307, 37.432277],\n              [-80.464819, 37.426152],\n              [-80.472828, 37.423778],\n              [-80.475604, 37.422956],\n              [-80.475799, 37.423078],\n              [-80.491611, 37.432943],\n              [-80.491617, 37.432947],\n              [-80.494863, 37.435079],\n              [-80.497282, 37.444787],\n              [-80.497154, 37.445174],\n              [-80.497136, 37.445228],\n              [-80.497128, 37.445254],\n              [-80.497125, 37.445263],\n              [-80.496808, 37.446222],\n              [-80.496803, 37.446236],\n              [-80.494587, 37.452918],\n              [-80.492984, 37.457756],\n              [-80.499787, 37.466924],\n              [-80.501711, 37.46931],\n              [-80.503966, 37.472105],\n              [-80.506068, 37.474815],\n              [-80.511394, 37.481679],\n              [-80.513412, 37.479453],\n              [-80.51416, 37.478897],\n              [-80.515142, 37.478573],\n              [-80.516369, 37.478481],\n              [-80.517602, 37.478777],\n              [-80.518645, 37.479311],\n              [-80.51966, 37.479205],\n              [-80.520756, 37.478254],\n              [-80.52161, 37.477547],\n              [-80.522341, 37.477192],\n              [-80.523484, 37.476912],\n              [-80.523791, 37.476905],\n              [-80.525406, 37.476869],\n              [-80.528352, 37.477375],\n              [-80.530761, 37.477311],\n              [-80.532375, 37.477131],\n              [-80.533452, 37.476413],\n              [-80.533825, 37.475622],\n              [-80.534413, 37.474739],\n              [-80.535112, 37.474416],\n              [-80.536892, 37.474015],\n              [-80.537942, 37.474159],\n              [-80.539296, 37.474458],\n              [-80.539789, 37.474534],\n              [-80.544159, 37.47475],\n              [-80.544839, 37.474702],\n              [-80.547454, 37.473688],\n              [-80.548808, 37.473704],\n              [-80.550942, 37.473714],\n              [-80.552039, 37.47357],\n              [-80.553165, 37.472885],\n              [-80.554464, 37.47218],\n              [-80.555141, 37.47163],\n              [-80.557972, 37.471066],\n              [-80.558985, 37.470718],\n              [-80.561445, 37.469782],\n              [-80.563795, 37.468237],\n              [-80.564032, 37.468097],\n              [-80.565176, 37.467281],\n              [-80.565194, 37.467268],\n              [-80.565717, 37.466943],\n              [-80.5663, 37.466582],\n              [-80.568186, 37.465584],\n              [-80.570566, 37.464613],\n              [-80.571286, 37.464319],\n              [-80.571368, 37.464254],\n              [-80.5725, 37.463688],\n              [-80.572639, 37.463475],\n              [-80.572735, 37.46333],\n              [-80.573361, 37.463062],\n              [-80.576258, 37.462055],\n              [-80.576511, 37.461762],\n              [-80.577426, 37.461031],\n              [-80.578028, 37.460593],\n              [-80.579437, 37.459923],\n              [-80.580776, 37.459485],\n              [-80.581466, 37.459145],\n              [-80.581864, 37.458726],\n              [-80.582349, 37.457889],\n              [-80.582571, 37.457046],\n              [-80.582887, 37.456665],\n              [-80.583893, 37.456527],\n              [-80.584689, 37.456586],\n              [-80.585337, 37.456843],\n              [-80.585859, 37.456661],\n              [-80.586639, 37.456057],\n              [-80.587635, 37.455313],\n              [-80.58966, 37.453799],\n              [-80.590243, 37.453303],\n              [-80.590564, 37.452786],\n              [-80.591096, 37.452046],\n              [-80.59138, 37.451447],\n              [-80.592417, 37.450695],\n              [-80.594151, 37.449668],\n              [-80.594773, 37.449513],\n              [-80.595381, 37.449454],\n              [-80.596189, 37.448915],\n              [-80.596885, 37.448374],\n              [-80.598134, 37.447627],\n              [-80.598968, 37.447194],\n              [-80.600207, 37.44618],\n              [-80.601469, 37.44595],\n              [-80.602673, 37.445332],\n              [-80.604334, 37.444934],\n              [-80.606591, 37.443984],\n              [-80.608257, 37.443141],\n              [-80.609562, 37.442258],\n              [-80.610112, 37.44185],\n              [-80.611903, 37.441205],\n              [-80.613859, 37.440159],\n              [-80.615267, 37.439779],\n              [-80.616805, 37.43945],\n              [-80.620904, 37.436942],\n              [-80.621378, 37.436678],\n              [-80.62212, 37.435976],\n              [-80.622293, 37.435067],\n              [-80.622372, 37.434228],\n              [-80.622667, 37.433314],\n              [-80.624792, 37.43297],\n              [-80.625292, 37.432882],\n              [-80.625952, 37.43316],\n              [-80.626368, 37.433335],\n              [-80.627276, 37.433056],\n              [-80.628623, 37.432057],\n              [-80.629049, 37.432167],\n              [-80.630133, 37.432314],\n              [-80.630701, 37.432488],\n              [-80.631858, 37.43224],\n              [-80.632368, 37.432132],\n              [-80.633194, 37.431749],\n              [-80.634393, 37.431234],\n              [-80.635561, 37.430534],\n              [-80.635904, 37.430427],\n              [-80.636488, 37.43017],\n              [-80.636851, 37.43001],\n              [-80.637382, 37.429379],\n              [-80.637557, 37.428563],\n              [-80.637359, 37.427944],\n              [-80.63695, 37.427478],\n              [-80.641901, 37.424515],\n              [-80.645896, 37.422154],\n              [-80.647935, 37.421691],\n              [-80.64921, 37.421579],\n              [-80.649675, 37.421503],\n              [-80.650191, 37.421508],\n              [-80.652429, 37.420641],\n              [-80.653143, 37.420169],\n              [-80.653592, 37.419521],\n              [-80.65669, 37.417592],\n              [-80.658385, 37.417058],\n              [-80.65929, 37.416521],\n              [-80.659613, 37.416382],\n              [-80.6605, 37.416103],\n              [-80.661193, 37.415575],\n              [-80.662173, 37.415359],\n              [-80.664115, 37.414227],\n              [-80.664974, 37.414222],\n              [-80.66578, 37.413846],\n              [-80.666484, 37.413366],\n              [-80.67, 37.41187],\n              [-80.67158, 37.410965],\n              [-80.672054, 37.410866],\n              [-80.672971, 37.410425],\n              [-80.674252, 37.41003],\n              [-80.674925, 37.409543],\n              [-80.675306, 37.409097],\n              [-80.678097, 37.407943],\n              [-80.679252, 37.407161],\n              [-80.684579, 37.404637],\n              [-80.68511, 37.404102],\n              [-80.685726, 37.403977],\n              [-80.686312, 37.403941],\n              [-80.687267, 37.403379],\n              [-80.687833, 37.403287],\n              [-80.68982, 37.402711],\n              [-80.690986, 37.402018],\n              [-80.691712, 37.401756],\n              [-80.693348, 37.400488],\n              [-80.69374, 37.400155],\n              [-80.694182, 37.399918],\n              [-80.696014, 37.399907],\n              [-80.697477, 37.399608],\n              [-80.69837, 37.398884],\n              [-80.699438, 37.398402],\n              [-80.700711, 37.397282],\n              [-80.70099, 37.39682],\n              [-80.70112, 37.396715],\n              [-80.701251, 37.396609],\n              [-80.702582, 37.396246],\n              [-80.703115, 37.395944],\n              [-80.705206, 37.394625],\n              [-80.706013, 37.394402],\n              [-80.70716, 37.393855],\n              [-80.708402, 37.393645],\n              [-80.709116, 37.393197],\n              [-80.710504, 37.39252],\n              [-80.712512, 37.392047],\n              [-80.713548, 37.391507],\n              [-80.71386, 37.391345],\n              [-80.714175, 37.391416],\n              [-80.715482, 37.390714],\n              [-80.715963, 37.39026],\n              [-80.71603, 37.389957],\n              [-80.716303, 37.388855],\n              [-80.716301, 37.388701],\n              [-80.716523, 37.388652],\n              [-80.717698, 37.388829],\n              [-80.719527, 37.389592],\n              [-80.720687, 37.389326],\n              [-80.723104, 37.388335],\n              [-80.723599, 37.388268],\n              [-80.723928, 37.387766],\n              [-80.724188, 37.386498],\n              [-80.724288, 37.386336],\n              [-80.725705, 37.385529],\n              [-80.726049, 37.385567],\n              [-80.727046, 37.386085],\n              [-80.72732, 37.386228],\n              [-80.727807, 37.386386],\n              [-80.731592, 37.384717],\n              [-80.732124, 37.384278],\n              [-80.733169, 37.383699],\n              [-80.734168, 37.383442],\n              [-80.734804, 37.383341],\n              [-80.736765, 37.383312],\n              [-80.737432, 37.383308],\n              [-80.737634, 37.38321],\n              [-80.738043, 37.382554],\n              [-80.738394, 37.38227],\n              [-80.738655, 37.382179],\n              [-80.740976, 37.38172],\n              [-80.742866, 37.380595],\n              [-80.742976, 37.38049],\n              [-80.743203, 37.37998],\n              [-80.743394, 37.379858],\n              [-80.744202, 37.379732],\n              [-80.744323, 37.379723],\n              [-80.744414, 37.37973],\n              [-80.744465, 37.379754],\n              [-80.745419, 37.380087],\n              [-80.74553, 37.380118],\n              [-80.745907, 37.380076],\n              [-80.74757, 37.379895],\n              [-80.748106, 37.379908],\n              [-80.748523, 37.380066],\n              [-80.748725, 37.380057],\n              [-80.749798, 37.37935],\n              [-80.75033, 37.378986],\n              [-80.750615, 37.378665],\n              [-80.75088, 37.378392],\n              [-80.751033, 37.378216],\n              [-80.751428, 37.377984],\n              [-80.751782, 37.377897],\n              [-80.752206, 37.377834],\n              [-80.753659, 37.377833],\n              [-80.754145, 37.377577],\n              [-80.754458, 37.377506],\n              [-80.754923, 37.377428],\n              [-80.755257, 37.377357],\n              [-80.755591, 37.377189],\n              [-80.756766, 37.376622],\n              [-80.757121, 37.376406],\n              [-80.757559, 37.375901],\n              [-80.757802, 37.375773],\n              [-80.758207, 37.375597],\n              [-80.758955, 37.375544],\n              [-80.759646, 37.375128],\n              [-80.759788, 37.37493],\n              [-80.759889, 37.374889],\n              [-80.760223, 37.374895],\n              [-80.761941, 37.374673],\n              [-80.762597, 37.374474],\n              [-80.762838, 37.374311],\n              [-80.763442, 37.373968],\n              [-80.764027, 37.373729],\n              [-80.765167, 37.373382],\n              [-80.765631, 37.373266],\n              [-80.765935, 37.373264],\n              [-80.766796, 37.37333],\n              [-80.766947, 37.373337],\n              [-80.768481, 37.37285],\n              [-80.770085, 37.37237],\n              [-80.771674, 37.375128],\n              [-80.775481, 37.381648],\n              [-80.775593, 37.381841],\n              [-80.776652, 37.383686],\n              [-80.776659, 37.383768],\n              [-80.776694, 37.383966],\n              [-80.776762, 37.384119],\n              [-80.776911, 37.384492],\n              [-80.77701, 37.384847],\n              [-80.777309, 37.385197],\n              [-80.777953, 37.385532],\n              [-80.778376, 37.385712],\n              [-80.778807, 37.385957],\n              [-80.779311, 37.386203],\n              [-80.779594, 37.3864],\n              [-80.779645, 37.386436],\n              [-80.779752, 37.386512],\n              [-80.780103, 37.386845],\n              [-80.780464, 37.387202],\n              [-80.780663, 37.387493],\n              [-80.780792, 37.387801],\n              [-80.780953, 37.388019],\n              [-80.781101, 37.388311],\n              [-80.781472, 37.388612],\n              [-80.781744, 37.388694],\n              [-80.781955, 37.388739],\n              [-80.782037, 37.388753],\n              [-80.782071, 37.388794],\n              [-80.782117, 37.388842],\n              [-80.782288, 37.389025],\n              [-80.782355, 37.389136],\n              [-80.782476, 37.389328],\n              [-80.7826, 37.389501],\n              [-80.782785, 37.389755],\n              [-80.782852, 37.389841],\n              [-80.782931, 37.389963],\n              [-80.783128, 37.39026],\n              [-80.783144, 37.390292],\n              [-80.783385, 37.390656],\n              [-80.783431, 37.39085],\n              [-80.783463, 37.390987],\n              [-80.783479, 37.391414],\n              [-80.783497, 37.391728],\n              [-80.783465, 37.392014],\n              [-80.783446, 37.392189],\n              [-80.783444, 37.392205],\n              [-80.783443, 37.39222],\n              [-80.783339, 37.39259],\n              [-80.783334, 37.392686],\n              [-80.783331, 37.392735],\n              [-80.783327, 37.392796],\n              [-80.78334, 37.392815],\n              [-80.783346, 37.392824],\n              [-80.78345, 37.392944],\n              [-80.783507, 37.39301],\n              [-80.783518, 37.393039],\n              [-80.783526, 37.39306],\n              [-80.783546, 37.393115],\n              [-80.783655, 37.393406],\n              [-80.783874, 37.39381],\n              [-80.784153, 37.394214],\n              [-80.784191, 37.394594],\n              [-80.784351, 37.394621],\n              [-80.784753, 37.394621],\n              [-80.785128, 37.394659],\n              [-80.78538, 37.394694],\n              [-80.786532, 37.394804],\n              [-80.786985, 37.394819],\n              [-80.78791, 37.39485],\n              [-80.788449, 37.395031],\n              [-80.788487, 37.395044],\n              [-80.789195, 37.395289],\n              [-80.789595, 37.395426],\n              [-80.789761, 37.395483],\n              [-80.789829, 37.395506],\n              [-80.790038, 37.395578],\n              [-80.790112, 37.395604],\n              [-80.790202, 37.395635],\n              [-80.79032, 37.395675],\n              [-80.791296, 37.395675],\n              [-80.792731, 37.395332],\n              [-80.793219, 37.395401],\n              [-80.794055, 37.395287],\n              [-80.794093, 37.395282],\n              [-80.794568, 37.395218],\n              [-80.795429, 37.395195],\n              [-80.795602, 37.395259],\n              [-80.795862, 37.395356],\n              [-80.796944, 37.395573],\n              [-80.797006, 37.395585],\n              [-80.79719, 37.395653],\n              [-80.797259, 37.395678],\n              [-80.797693, 37.395837],\n              [-80.798879, 37.395823],\n              [-80.79892, 37.395746],\n              [-80.799017, 37.395751],\n              [-80.799292, 37.39574],\n              [-80.799451, 37.395751],\n              [-80.799549, 37.395774],\n              [-80.799568, 37.395779],\n              [-80.799685, 37.395817],\n              [-80.80016, 37.395878],\n              [-80.800369, 37.395927],\n              [-80.800511, 37.39596],\n              [-80.800628, 37.396015],\n              [-80.800739, 37.396081],\n              [-80.800821, 37.396141],\n              [-80.800863, 37.39618],\n              [-80.801021, 37.396345],\n              [-80.80109, 37.396433],\n              [-80.801159, 37.396543],\n              [-80.801186, 37.396636],\n              [-80.801193, 37.396696],\n              [-80.801179, 37.396795],\n              [-80.801152, 37.396872],\n              [-80.801145, 37.396955],\n              [-80.801152, 37.397043],\n              [-80.801179, 37.397103],\n              [-80.801214, 37.397147],\n              [-80.801248, 37.39718],\n              [-80.801269, 37.397191],\n              [-80.801292, 37.397229],\n              [-80.801296, 37.397235],\n              [-80.801356, 37.397293],\n              [-80.80138, 37.397316],\n              [-80.801462, 37.397396],\n              [-80.801524, 37.397455],\n              [-80.801586, 37.397526],\n              [-80.80162, 37.397581],\n              [-80.801675, 37.397702],\n              [-80.801723, 37.397807],\n              [-80.801765, 37.397867],\n              [-80.801861, 37.397933],\n              [-80.802013, 37.398026],\n              [-80.80213, 37.398087],\n              [-80.802212, 37.398136],\n              [-80.802502, 37.398268],\n              [-80.802811, 37.398367],\n              [-80.802977, 37.398411],\n              [-80.80317, 37.398438],\n              [-80.803528, 37.398466],\n              [-80.803672, 37.39845],\n              [-80.803845, 37.398417],\n              [-80.803941, 37.398389],\n              [-80.804072, 37.398367],\n              [-80.804182, 37.398334],\n              [-80.80423, 37.398312],\n              [-80.804285, 37.398268],\n              [-80.804368, 37.39818],\n              [-80.80443, 37.398103],\n              [-80.804499, 37.397961],\n              [-80.804588, 37.397829],\n              [-80.804623, 37.397807],\n              [-80.804657, 37.397796],\n              [-80.804726, 37.39779],\n              [-80.80525, 37.397834],\n              [-80.805491, 37.397873],\n              [-80.805635, 37.397917],\n              [-80.805746, 37.397961],\n              [-80.805808, 37.397999],\n              [-80.805932, 37.398092],\n              [-80.806166, 37.398224],\n              [-80.806269, 37.398301],\n              [-80.806352, 37.398411],\n              [-80.806365, 37.398461],\n              [-80.806379, 37.398549],\n              [-80.806263, 37.399164],\n              [-80.806262, 37.39917],\n              [-80.806255, 37.399181],\n              [-80.806241, 37.399362],\n              [-80.806255, 37.399451],\n              [-80.806262, 37.399499],\n              [-80.806358, 37.39984],\n              [-80.8064, 37.400021],\n              [-80.806434, 37.400142],\n              [-80.806482, 37.40034],\n              [-80.806537, 37.400532],\n              [-80.806634, 37.400774],\n              [-80.806703, 37.400884],\n              [-80.80673, 37.400911],\n              [-80.806937, 37.401225],\n              [-80.806992, 37.401357],\n              [-80.807027, 37.401499],\n              [-80.807043, 37.401623],\n              [-80.807047, 37.401653],\n              [-80.80702, 37.401922],\n              [-80.806992, 37.402071],\n              [-80.806978, 37.402247],\n              [-80.806937, 37.402461],\n              [-80.806911, 37.402531],\n              [-80.806854, 37.402681],\n              [-80.806772, 37.403049],\n              [-80.806751, 37.403126],\n              [-80.806641, 37.403324],\n              [-80.806579, 37.403406],\n              [-80.806434, 37.403544],\n              [-80.806393, 37.403593],\n              [-80.806193, 37.403774],\n              [-80.806159, 37.40384],\n              [-80.806145, 37.403967],\n              [-80.806152, 37.404033],\n              [-80.806165, 37.404071],\n              [-80.806227, 37.404153],\n              [-80.806303, 37.40423],\n              [-80.806393, 37.404307],\n              [-80.806462, 37.404346],\n              [-80.806537, 37.404379],\n              [-80.806689, 37.404428],\n              [-80.80684, 37.404467],\n              [-80.806896, 37.404489],\n              [-80.807095, 37.404582],\n              [-80.807267, 37.404692],\n              [-80.807515, 37.404934],\n              [-80.807646, 37.405027],\n              [-80.80766, 37.405055],\n              [-80.807701, 37.405071],\n              [-80.807832, 37.405192],\n              [-80.808135, 37.405544],\n              [-80.808232, 37.405698],\n              [-80.808266, 37.405774],\n              [-80.808301, 37.405901],\n              [-80.808349, 37.406],\n              [-80.808418, 37.406236],\n              [-80.808466, 37.406362],\n              [-80.808528, 37.406461],\n              [-80.80859, 37.406544],\n              [-80.808686, 37.406626],\n              [-80.808803, 37.406692],\n              [-80.809024, 37.406791],\n              [-80.809148, 37.406841],\n              [-80.809368, 37.406906],\n              [-80.809844, 37.407027],\n              [-80.810064, 37.407093],\n              [-80.810133, 37.407121],\n              [-80.810325, 37.407175],\n              [-80.810484, 37.40722],\n              [-80.810774, 37.407286],\n              [-80.811035, 37.407335],\n              [-80.811097, 37.407352],\n              [-80.811159, 37.40739],\n              [-80.811207, 37.407429],\n              [-80.811331, 37.407577],\n              [-80.811414, 37.407632],\n              [-80.811538, 37.407736],\n              [-80.81169, 37.407824],\n              [-80.811772, 37.407846],\n              [-80.811883, 37.407857],\n              [-80.812013, 37.407846],\n              [-80.8121, 37.407825],\n              [-80.817065, 37.411162],\n              [-80.817361, 37.41134],\n              [-80.820202, 37.413275],\n              [-80.820231, 37.413295],\n              [-80.823839, 37.41572],\n              [-80.823936, 37.415785],\n              [-80.82396, 37.415801],\n              [-80.825369, 37.41675],\n              [-80.826115, 37.417252],\n              [-80.828316, 37.418674],\n              [-80.828827, 37.419039],\n              [-80.830854, 37.420514],\n              [-80.831469, 37.42095],\n              [-80.832566, 37.421634],\n              [-80.83262, 37.421667],\n              [-80.832943, 37.421865],\n              [-80.834113, 37.422581],\n              [-80.835654, 37.423532],\n              [-80.835868, 37.423664],\n              [-80.83614, 37.423831],\n              [-80.836411, 37.423999],\n              [-80.836449, 37.424362],\n              [-80.836617, 37.42475],\n              [-80.836927, 37.425178],\n              [-80.837238, 37.425413],\n              [-80.837467, 37.425543],\n              [-80.837681, 37.425665],\n              [-80.837824, 37.425696],\n              [-80.838426, 37.425821],\n              [-80.838926, 37.425866],\n              [-80.83908, 37.42588],\n              [-80.83955, 37.426012],\n              [-80.839747, 37.426068],\n              [-80.840463, 37.426151],\n              [-80.841028, 37.42613],\n              [-80.841675, 37.425978],\n              [-80.842162, 37.425625],\n              [-80.843037, 37.42479],\n              [-80.843383, 37.424365],\n              [-80.84379, 37.423923],\n              [-80.844216, 37.423562],\n              [-80.844328, 37.423523],\n              [-80.844702, 37.423394],\n              [-80.845389, 37.423358],\n              [-80.845682, 37.423342],\n              [-80.846002, 37.423371],\n              [-80.846328, 37.423402],\n              [-80.84685, 37.423694],\n              [-80.847201, 37.424041],\n              [-80.847373, 37.424139],\n              [-80.848447, 37.424779],\n              [-80.848848, 37.425144],\n              [-80.849305, 37.425463],\n              [-80.84937, 37.425508],\n              [-80.849689, 37.425665],\n              [-80.849772, 37.425711],\n              [-80.850445, 37.425983],\n              [-80.850659, 37.426069],\n              [-80.85123, 37.426286],\n              [-80.85146, 37.426368],\n              [-80.851666, 37.426452],\n              [-80.852229, 37.426664],\n              [-80.853166, 37.426909],\n              [-80.853539, 37.426932],\n              [-80.853741, 37.426944],\n              [-80.85423, 37.426878],\n              [-80.854429, 37.42685],\n              [-80.855145, 37.426877],\n              [-80.855385, 37.426878],\n              [-80.855821, 37.426879],\n              [-80.856281, 37.426942],\n              [-80.856707, 37.427012],\n              [-80.85672, 37.427014],\n              [-80.856757, 37.427022],\n              [-80.857015, 37.427077],\n              [-80.857362, 37.427213],\n              [-80.857486, 37.427305],\n              [-80.857718, 37.42748],\n              [-80.858173, 37.427929],\n              [-80.858177, 37.427933],\n              [-80.858404, 37.428248],\n              [-80.858415, 37.428263],\n              [-80.858469, 37.428314],\n              [-80.858561, 37.428433],\n              [-80.858683, 37.428915],\n              [-80.858763, 37.428975],\n              [-80.858842, 37.429035],\n              [-80.858883, 37.429066],\n              [-80.85946, 37.429498],\n              [-80.859521, 37.429464],\n              [-80.85953, 37.429459],\n              [-80.859668, 37.429376],\n              [-80.860033, 37.429107],\n              [-80.860081, 37.42909],\n              [-80.860109, 37.429035],\n              [-80.860363, 37.428799],\n              [-80.860535, 37.428618],\n              [-80.860604, 37.42853],\n              [-80.860708, 37.428425],\n              [-80.860776, 37.428337],\n              [-80.860845, 37.428233],\n              [-80.861065, 37.427821],\n              [-80.861172, 37.427581],\n              [-80.861231, 37.427447],\n              [-80.861437, 37.427073],\n              [-80.86152, 37.426941],\n              [-80.861692, 37.426688],\n              [-80.861898, 37.426419],\n              [-80.862063, 37.426188],\n              [-80.862084, 37.42615],\n              [-80.862105, 37.426133],\n              [-80.862153, 37.426062],\n              [-80.862208, 37.425996],\n              [-80.862483, 37.425589],\n              [-80.862531, 37.425501],\n              [-80.8626, 37.425402],\n              [-80.862814, 37.425127],\n              [-80.862889, 37.425039],\n              [-80.86291, 37.425023],\n              [-80.863027, 37.424897],\n              [-80.863096, 37.424814],\n              [-80.863172, 37.424732],\n              [-80.863275, 37.424633],\n              [-80.863309, 37.424583],\n              [-80.863337, 37.424528],\n              [-80.86344, 37.424391],\n              [-80.863523, 37.424253],\n              [-80.863578, 37.424138],\n              [-80.863647, 37.423957],\n              [-80.863715, 37.423704],\n              [-80.86408, 37.42277],\n              [-80.86419, 37.422522],\n              [-80.864252, 37.422368],\n              [-80.8643, 37.422176],\n              [-80.864389, 37.421907],\n              [-80.864492, 37.421615],\n              [-80.864527, 37.421544],\n              [-80.864547, 37.421456],\n              [-80.864582, 37.421374],\n              [-80.864671, 37.421236],\n              [-80.864891, 37.420961],\n              [-80.864933, 37.420879],\n              [-80.865022, 37.420763],\n              [-80.865036, 37.420709],\n              [-80.86507, 37.420675],\n              [-80.865146, 37.420549],\n              [-80.86518, 37.420461],\n              [-80.865277, 37.42012],\n              [-80.865318, 37.419895],\n              [-80.865421, 37.419186],\n              [-80.865421, 37.419131],\n              [-80.865455, 37.418868],\n              [-80.865441, 37.418813],\n              [-80.865564, 37.417538],\n              [-80.865571, 37.417384],\n              [-80.86555, 37.41717],\n              [-80.865509, 37.416906],\n              [-80.865419, 37.416593],\n              [-80.865308, 37.416241],\n              [-80.865281, 37.41611],\n              [-80.865246, 37.415944],\n              [-80.865184, 37.415779],\n              [-80.865136, 37.41567],\n              [-80.865094, 37.415554],\n              [-80.865046, 37.415378],\n              [-80.865011, 37.415148],\n              [-80.86497, 37.414939],\n              [-80.864873, 37.414582],\n              [-80.864859, 37.41445],\n              [-80.864832, 37.414367],\n              [-80.864797, 37.414236],\n              [-80.864742, 37.414104],\n              [-80.864659, 37.413862],\n              [-80.864604, 37.413769],\n              [-80.864576, 37.413692],\n              [-80.864452, 37.413411],\n              [-80.864328, 37.413186],\n              [-80.864162, 37.412917],\n              [-80.86408, 37.412796],\n              [-80.863962, 37.412703],\n              [-80.86388, 37.412626],\n              [-80.863645, 37.412368],\n              [-80.863631, 37.41234],\n              [-80.863542, 37.412225],\n              [-80.86348, 37.412154],\n              [-80.863335, 37.411934],\n              [-80.863301, 37.411895],\n              [-80.863266, 37.411835],\n              [-80.863045, 37.41156],\n              [-80.863006, 37.411521],\n              [-80.863179, 37.411297],\n              [-80.863298, 37.411143],\n              [-80.863418, 37.41099],\n              [-80.864493, 37.409606],\n              [-80.867249, 37.4059],\n              [-80.868146, 37.404685],\n              [-80.869522, 37.402816],\n              [-80.87226, 37.399131],\n              [-80.872269, 37.399119],\n              [-80.874808, 37.395473],\n              [-80.875355, 37.394601],\n              [-80.87547, 37.394444],\n              [-80.880809, 37.387231],\n              [-80.882608, 37.384807],\n              [-80.882705, 37.384677],\n              [-80.882711, 37.384669],\n              [-80.882777, 37.38458],\n              [-80.882813, 37.384531],\n              [-80.88302, 37.384252],\n              [-80.883029, 37.38424],\n              [-80.88325, 37.38394],\n              [-80.88224, 37.382804],\n              [-80.882204, 37.382764],\n              [-80.881912, 37.382436],\n              [-80.880523, 37.38093],\n              [-80.88048, 37.380883],\n              [-80.880086, 37.380455],\n              [-80.880045, 37.380411],\n              [-80.879919, 37.380274],\n              [-80.879914, 37.380269],\n              [-80.878963, 37.379239],\n              [-80.878072, 37.378276],\n              [-80.878012, 37.378211],\n              [-80.877849, 37.378031],\n              [-80.87775, 37.377927],\n              [-80.877679, 37.377851],\n              [-80.876961, 37.377226],\n              [-80.876273, 37.376628],\n              [-80.876251, 37.376609],\n              [-80.876242, 37.376597],\n              [-80.875247, 37.37519],\n              [-80.874812, 37.374666],\n              [-80.873648, 37.373453],\n              [-80.873287, 37.37308],\n              [-80.87259, 37.372354],\n              [-80.872422, 37.372167],\n              [-80.872368, 37.372107],\n              [-80.872362, 37.372101],\n              [-80.872325, 37.372059],\n              [-80.872272, 37.372001],\n              [-80.87218, 37.371901],\n              [-80.872169, 37.371889],\n              [-80.872164, 37.371884],\n              [-80.872037, 37.371746],\n              [-80.869327, 37.368766],\n              [-80.868488, 37.367843],\n              [-80.868406, 37.367751],\n              [-80.868398, 37.367742],\n              [-80.868379, 37.367721],\n              [-80.868291, 37.367625],\n              [-80.868286, 37.36762],\n              [-80.868274, 37.367607],\n              [-80.86786, 37.367152],\n              [-80.867236, 37.366467],\n              [-80.867212, 37.366441],\n              [-80.866904, 37.3661],\n              [-80.86675, 37.365932],\n              [-80.866696, 37.365873],\n              [-80.866642, 37.365815],\n              [-80.866609, 37.365778],\n              [-80.866602, 37.36577],\n              [-80.866598, 37.365765],\n              [-80.866576, 37.36574],\n              [-80.866006, 37.365114],\n              [-80.865957, 37.36506],\n              [-80.865948, 37.365051],\n              [-80.865929, 37.36503],\n              [-80.865913, 37.365012],\n              [-80.865872, 37.364967],\n              [-80.865688, 37.364765],\n              [-80.86561, 37.364679],\n              [-80.865553, 37.364616],\n              [-80.865422, 37.364472],\n              [-80.865303, 37.364341],\n              [-80.858813, 37.357206],\n              [-80.855682, 37.353762],\n              [-80.849454, 37.346916],\n              [-80.85064, 37.346438],\n              [-80.850916, 37.34633],\n              [-80.851181, 37.346238],\n              [-80.85159, 37.346085],\n              [-80.851948, 37.34593],\n              [-80.853378, 37.345416],\n              [-80.853657, 37.345211],\n              [-80.854056, 37.345057],\n              [-80.854281, 37.344948],\n              [-80.854547, 37.34484],\n              [-80.854843, 37.344749],\n              [-80.855574, 37.344286],\n              [-80.855729, 37.344152],\n              [-80.855924, 37.344075],\n              [-80.856177, 37.344056],\n              [-80.856695, 37.343944],\n              [-80.857021, 37.343862],\n              [-80.857359, 37.343731],\n              [-80.857604, 37.343614],\n              [-80.858062, 37.34351],\n              [-80.859052, 37.342826],\n              [-80.859433, 37.342599],\n              [-80.859782, 37.34242],\n              [-80.86013, 37.342257],\n              [-80.860448, 37.342109],\n              [-80.860806, 37.341938],\n              [-80.862557, 37.341519],\n              [-80.862985, 37.34139],\n              [-80.863955, 37.341029],\n              [-80.865324, 37.34053],\n              [-80.865865, 37.340338],\n              [-80.866051, 37.340213],\n              [-80.866728, 37.339894],\n              [-80.867045, 37.339763],\n              [-80.868382, 37.33894],\n              [-80.868989, 37.33858],\n              [-80.86914, 37.338464],\n              [-80.869516, 37.338178],\n              [-80.869766, 37.337932],\n              [-80.870718, 37.336802],\n              [-80.870916, 37.336588],\n              [-80.87164, 37.336028],\n              [-80.87192, 37.335767],\n              [-80.872916, 37.335212],\n              [-80.873072, 37.335061],\n              [-80.873383, 37.334793],\n              [-80.873642, 37.334563],\n              [-80.874346, 37.333987],\n              [-80.874804, 37.333434],\n              [-80.876537, 37.331943],\n              [-80.880106, 37.32891],\n              [-80.882955, 37.32716],\n              [-80.885293, 37.325702],\n              [-80.885751, 37.324965],\n              [-80.886917, 37.324647],\n              [-80.8906, 37.321454],\n              [-80.891206, 37.321372],\n              [-80.898053, 37.316786],\n              [-80.899163, 37.315685],\n              [-80.900011, 37.315662],\n              [-80.900538, 37.315007],\n              [-80.901569, 37.314865],\n              [-80.905095, 37.312936],\n              [-80.907954, 37.311612],\n              [-80.910392, 37.311243],\n              [-80.911061, 37.310501],\n              [-80.912156, 37.310182],\n              [-80.913565, 37.308762],\n              [-80.914852, 37.308502],\n              [-80.915947, 37.307642],\n              [-80.918028, 37.306891],\n              [-80.919262, 37.30617],\n              [-80.927043, 37.30369],\n              [-80.928134, 37.303573],\n              [-80.931121, 37.302879],\n              [-80.934007, 37.301676],\n              [-80.936967, 37.300361],\n              [-80.938138, 37.300285],\n              [-80.938411, 37.299731],\n              [-80.939349, 37.299677],\n              [-80.939827, 37.298916],\n              [-80.94133, 37.29889],\n              [-80.942403, 37.298119],\n              [-80.943159, 37.298119],\n              [-80.943417, 37.297824],\n              [-80.942987, 37.297634],\n              [-80.942976, 37.297133],\n              [-80.944176, 37.296582],\n              [-80.944328, 37.296638],\n              [-80.945491, 37.29691],\n              [-80.947899, 37.295879],\n              [-80.951021, 37.294977],\n              [-80.956118, 37.29416],\n              [-80.957598, 37.29374],\n              [-80.964882, 37.292905],\n              [-80.966559, 37.292165],\n              [-80.968371, 37.292297],\n              [-80.969961, 37.291894],\n              [-80.971878, 37.292374],\n              [-80.973892, 37.291451],\n              [-80.97406, 37.291512],\n              [-80.974404, 37.291637],\n              [-80.975424, 37.292007],\n              [-80.977011, 37.291814],\n              [-80.977817, 37.292355],\n              [-80.980149, 37.29275],\n              [-80.981325, 37.293472],\n              [-80.981326, 37.294561],\n              [-80.982176, 37.29603],\n              [-80.980902, 37.297348],\n              [-80.980749, 37.298548],\n              [-80.979109, 37.300588],\n              [-80.979659, 37.301384],\n              [-80.979592, 37.302286],\n              [-80.980757, 37.301968],\n              [-80.981866, 37.30089],\n              [-80.98318, 37.301235],\n              [-80.985269, 37.300571],\n              [-80.985768, 37.301407],\n              [-80.987322, 37.301366],\n              [-80.988049, 37.300745],\n              [-80.988772, 37.300938],\n              [-80.993686, 37.299633],\n              [-80.994439, 37.299802],\n              [-80.996016, 37.299552],\n              [-80.997199, 37.298814],\n              [-80.998514, 37.298578],\n              [-80.999086, 37.298148],\n              [-80.99981, 37.297936],\n              [-81.000579, 37.297875],\n              [-81.001778, 37.297553],\n              [-81.002645, 37.297424],\n              [-81.003975, 37.297191],\n              [-81.005375, 37.296926],\n              [-81.006081, 37.2967],\n              [-81.006806, 37.296523],\n              [-81.007673, 37.296435],\n              [-81.00846, 37.29608],\n              [-81.009467, 37.295928],\n              [-81.010213, 37.295783],\n              [-81.01121, 37.295686],\n              [-81.01255, 37.295525],\n              [-81.013225, 37.295437],\n              [-81.013467, 37.295381],\n              [-81.014192, 37.295276],\n              [-81.015381, 37.295228],\n              [-81.016772, 37.294833],\n              [-81.01795, 37.294697],\n              [-81.019159, 37.29452],\n              [-81.020368, 37.294302],\n              [-81.021023, 37.29419],\n              [-81.02194, 37.29415],\n              [-81.02332, 37.293795],\n              [-81.024459, 37.293489],\n              [-81.025255, 37.293336],\n              [-81.026645, 37.292893],\n              [-81.028026, 37.292587],\n              [-81.029195, 37.2922],\n              [-81.030676, 37.291862],\n              [-81.032207, 37.291661],\n              [-81.033607, 37.291258],\n              [-81.034655, 37.290758],\n              [-81.034927, 37.290637],\n              [-81.035522, 37.290508],\n              [-81.036136, 37.290259],\n              [-81.037194, 37.290258],\n              [-81.037839, 37.290379],\n              [-81.038463, 37.290322],\n              [-81.038927, 37.290056],\n              [-81.040417, 37.289847],\n              [-81.041586, 37.289629],\n              [-81.042503, 37.289387],\n              [-81.043107, 37.289404],\n              [-81.044125, 37.289396],\n              [-81.045666, 37.289113],\n              [-81.046724, 37.289057],\n              [-81.048447, 37.289121],\n              [-81.049303, 37.289025],\n              [-81.049938, 37.288799],\n              [-81.050452, 37.288743],\n              [-81.051086, 37.288743],\n              [-81.051912, 37.288573],\n              [-81.052889, 37.288614],\n              [-81.053746, 37.288428],\n              [-81.054662, 37.288218],\n              [-81.055367, 37.288033],\n              [-81.055599, 37.287848],\n              [-81.056224, 37.287823],\n              [-81.057281, 37.287686],\n              [-81.058107, 37.287501],\n              [-81.058641, 37.287372],\n              [-81.059538, 37.287275],\n              [-81.060797, 37.287073],\n              [-81.062247, 37.286904],\n              [-81.063768, 37.286831],\n              [-81.064554, 37.286831],\n              [-81.065128, 37.286654],\n              [-81.066358, 37.286444],\n              [-81.067537, 37.286347],\n              [-81.067939, 37.286202],\n              [-81.068655, 37.286226],\n              [-81.070548, 37.285959],\n              [-81.071999, 37.285693],\n              [-81.073127, 37.285322],\n              [-81.074507, 37.285185],\n              [-81.075292, 37.285032],\n              [-81.075897, 37.284894],\n              [-81.076531, 37.284967],\n              [-81.077841, 37.284991],\n              [-81.079543, 37.284813],\n              [-81.080671, 37.284603],\n              [-81.082373, 37.284562],\n              [-81.084015, 37.284408],\n              [-81.085688, 37.284086],\n              [-81.087743, 37.283787],\n              [-81.090452, 37.28331],\n              [-81.09297, 37.282842],\n              [-81.094823, 37.282647],\n              [-81.096928, 37.281873],\n              [-81.098801, 37.281679],\n              [-81.100101, 37.281404],\n              [-81.102205, 37.281016],\n              [-81.10415, 37.280612],\n              [-81.104986, 37.280273],\n              [-81.10559, 37.280007],\n              [-81.107594, 37.279716],\n              [-81.109326, 37.27911],\n              [-81.110192, 37.278795],\n              [-81.112599, 37.278504],\n              [-81.113203, 37.278262],\n              [-81.114009, 37.278132],\n              [-81.115066, 37.277745],\n              [-81.115831, 37.277406],\n              [-81.116304, 37.277333],\n              [-81.116767, 37.277002],\n              [-81.117936, 37.276752],\n              [-81.119315, 37.27634],\n              [-81.120503, 37.276081],\n              [-81.121994, 37.275669],\n              [-81.123245, 37.275408],\n              [-81.123352, 37.275386],\n              [-81.123443, 37.275368],\n              [-81.123483, 37.27536],\n              [-81.123491, 37.275359],\n              [-81.1235, 37.275357],\n              [-81.123542, 37.275349],\n              [-81.123571, 37.275343],\n              [-81.123641, 37.275329],\n              [-81.12372, 37.275314],\n              [-81.123741, 37.27531],\n              [-81.124229, 37.275216],\n              [-81.124816, 37.27503],\n              [-81.126828, 37.2742],\n              [-81.127744, 37.273963],\n              [-81.128043, 37.273887],\n              [-81.129102, 37.273619],\n              [-81.130148, 37.27322],\n              [-81.131376, 37.273005],\n              [-81.132019, 37.272809],\n              [-81.133609, 37.272424],\n              [-81.134514, 37.272058],\n              [-81.135931, 37.271496],\n              [-81.137147, 37.27087],\n              [-81.138384, 37.270454],\n              [-81.139551, 37.270232],\n              [-81.140706, 37.269695],\n              [-81.141432, 37.269588],\n              [-81.142407, 37.269172],\n              [-81.143233, 37.269113],\n              [-81.144178, 37.268843],\n              [-81.145195, 37.26867],\n              [-81.145607, 37.268442],\n              [-81.14635, 37.268165],\n              [-81.14769, 37.26807],\n              [-81.149611, 37.267522],\n              [-81.150707, 37.267244],\n              [-81.151694, 37.267111],\n              [-81.152679, 37.266744],\n              [-81.154037, 37.266352],\n              [-81.155686, 37.265974],\n              [-81.157347, 37.265645],\n              [-81.158967, 37.265389],\n              [-81.16114, 37.264759],\n              [-81.162778, 37.264115],\n              [-81.164116, 37.263666],\n              [-81.165614, 37.263289],\n              [-81.167032, 37.262888],\n              [-81.168248, 37.262415],\n              [-81.169655, 37.261837],\n              [-81.170449, 37.261495],\n              [-81.171645, 37.261095],\n              [-81.173444, 37.260305],\n              [-81.174608, 37.259679],\n              [-81.175842, 37.259104],\n              [-81.176899, 37.258613],\n              [-81.178154, 37.257986],\n              [-81.1794, 37.25732],\n              [-81.180294, 37.256969],\n              [-81.180635, 37.256661],\n              [-81.181006, 37.256345],\n              [-81.181307, 37.256207],\n              [-81.181616, 37.256078],\n              [-81.181739, 37.256027],\n              [-81.182271, 37.25563],\n              [-81.182939, 37.25474],\n              [-81.183282, 37.254495],\n              [-81.183485, 37.254461],\n              [-81.183523, 37.254455],\n              [-81.183566, 37.254448],\n              [-81.183624, 37.254438],\n              [-81.184066, 37.254372],\n              [-81.18431, 37.25433],\n              [-81.184528, 37.254193],\n              [-81.18479, 37.254014],\n              [-81.185572, 37.253623],\n              [-81.186245, 37.253266],\n              [-81.186786, 37.252867],\n              [-81.187087, 37.25281],\n              [-81.187421, 37.252736],\n              [-81.187588, 37.252658],\n              [-81.187732, 37.25259],\n              [-81.187822, 37.252525],\n              [-81.187846, 37.252508],\n              [-81.187852, 37.252503],\n              [-81.187911, 37.25246],\n              [-81.188102, 37.252201],\n              [-81.18991, 37.251403],\n              [-81.190002, 37.251363],\n              [-81.190693, 37.251061],\n              [-81.190944, 37.250834],\n              [-81.191265, 37.250639],\n              [-81.191657, 37.2505],\n              [-81.191969, 37.250483],\n              [-81.19211, 37.250434],\n              [-81.19223, 37.250361],\n              [-81.19245, 37.250124],\n              [-81.193053, 37.24967],\n              [-81.19416, 37.249041],\n              [-81.196171, 37.247942],\n              [-81.197756, 37.247115],\n              [-81.198995, 37.24643],\n              [-81.199577, 37.245886],\n              [-81.200462, 37.245295],\n              [-81.203001, 37.243886],\n              [-81.204777, 37.24302],\n              [-81.206368, 37.24237],\n              [-81.207767, 37.241815],\n              [-81.208566, 37.241603],\n              [-81.209965, 37.24096],\n              [-81.211605, 37.240488],\n              [-81.212649, 37.240043],\n              [-81.21433, 37.239459],\n              [-81.215691, 37.238807],\n              [-81.217302, 37.238181],\n              [-81.218557, 37.237754],\n              [-81.218774, 37.237659],\n              [-81.220159, 37.237056],\n              [-81.222838, 37.235744],\n              [-81.225107, 37.234881],\n              [-81.225981, 37.234298],\n              [-81.227546, 37.233333],\n              [-81.228966, 37.232682],\n              [-81.230539, 37.23187],\n              [-81.232672, 37.230659],\n              [-81.23451, 37.229615],\n              [-81.235864, 37.228559],\n              [-81.237603, 37.227313],\n              [-81.239167, 37.226396],\n              [-81.24067, 37.225535],\n              [-81.242232, 37.224788],\n              [-81.243439, 37.224199],\n              [-81.244652, 37.223925],\n              [-81.245561, 37.223714],\n              [-81.24638, 37.223462],\n              [-81.24675, 37.223348],\n              [-81.246774, 37.22334],\n              [-81.246781, 37.223338],\n              [-81.246824, 37.223325],\n              [-81.24715, 37.223225],\n              [-81.248201, 37.22299],\n              [-81.249048, 37.222705],\n              [-81.249234, 37.222642],\n              [-81.249825, 37.222653],\n              [-81.250032, 37.222553],\n              [-81.250038, 37.22255],\n              [-81.250055, 37.222541],\n              [-81.250297, 37.222423],\n              [-81.250898, 37.222143],\n              [-81.251398, 37.221798],\n              [-81.251837, 37.221519],\n              [-81.252196, 37.221376],\n              [-81.252202, 37.221374],\n              [-81.252659, 37.221193],\n              [-81.253875, 37.220877],\n              [-81.255127, 37.220675],\n              [-81.256482, 37.220457],\n              [-81.258263, 37.220105],\n              [-81.258859, 37.219963],\n              [-81.259732, 37.219702],\n              [-81.260188, 37.219543],\n              [-81.260726, 37.219311],\n              [-81.261284, 37.219105],\n              [-81.261619, 37.218954],\n              [-81.261895, 37.218736],\n              [-81.262214, 37.218439],\n              [-81.262541, 37.218182],\n              [-81.263069, 37.217967],\n              [-81.263713, 37.217996],\n              [-81.26461, 37.21801],\n              [-81.265405, 37.218135],\n              [-81.266009, 37.218139],\n              [-81.267291, 37.218001],\n              [-81.268694, 37.217913],\n              [-81.270023, 37.217945],\n              [-81.271458, 37.217817],\n              [-81.272548, 37.217655],\n              [-81.274302, 37.217163],\n              [-81.275699, 37.216769],\n              [-81.276722, 37.216484],\n              [-81.277651, 37.216368],\n              [-81.278105, 37.216428],\n              [-81.278223, 37.216416],\n              [-81.278251, 37.216447],\n              [-81.278318, 37.216497],\n              [-81.278393, 37.216534],\n              [-81.278459, 37.216555],\n              [-81.278546, 37.21657],\n              [-81.278635, 37.216571],\n              [-81.279082, 37.216524],\n              [-81.279185, 37.2166],\n              [-81.279238, 37.216594],\n              [-81.284254, 37.215993],\n              [-81.284261, 37.215992],\n              [-81.284328, 37.215984],\n              [-81.284339, 37.215983],\n              [-81.284768, 37.215909],\n              [-81.283725, 37.213774],\n              [-81.283719, 37.213762],\n              [-81.282447, 37.211097],\n              [-81.281555, 37.209273],\n              [-81.281057, 37.208256],\n              [-81.27941, 37.204885],\n              [-81.278791, 37.20371],\n              [-81.278775, 37.203678],\n              [-81.278736, 37.203599],\n              [-81.276981, 37.199997],\n              [-81.275441, 37.196837],\n              [-81.274803, 37.195528],\n              [-81.274788, 37.195497],\n              [-81.274702, 37.195319],\n              [-81.272915, 37.191653],\n              [-81.272902, 37.191626],\n              [-81.271853, 37.189474],\n              [-81.271813, 37.189393],\n              [-81.271795, 37.189356],\n              [-81.271779, 37.189323],\n              [-81.270095, 37.185869],\n              [-81.270066, 37.185807],\n              [-81.269959, 37.185575],\n              [-81.267158, 37.179834],\n              [-81.263874, 37.173104],\n              [-81.265834, 37.172616],\n              [-81.267085, 37.172371],\n              [-81.268533, 37.171845],\n              [-81.269221, 37.171627],\n              [-81.271965, 37.17118],\n              [-81.272835, 37.170882],\n              [-81.27408, 37.170411],\n              [-81.275867, 37.170018],\n              [-81.281173, 37.168508],\n              [-81.28485, 37.167578],\n              [-81.28767, 37.166735],\n              [-81.289125, 37.166323],\n              [-81.291975, 37.165513],\n              [-81.295661, 37.164615],\n              [-81.296096, 37.164514],\n              [-81.297738, 37.163781],\n              [-81.300841, 37.163417],\n              [-81.305245, 37.162317],\n              [-81.310573, 37.160595],\n              [-81.313749, 37.159513],\n              [-81.31686, 37.158075],\n              [-81.321509, 37.155555],\n              [-81.324139, 37.154016],\n              [-81.325137, 37.153235],\n              [-81.325698, 37.152788],\n              [-81.326188, 37.152317],\n              [-81.326473, 37.152126],\n              [-81.327184, 37.151705],\n              [-81.327764, 37.151267],\n              [-81.328081, 37.150972],\n              [-81.328181, 37.150896],\n              [-81.328336, 37.150781],\n              [-81.329084, 37.150538],\n              [-81.329933, 37.150232],\n              [-81.330835, 37.149845],\n              [-81.333097, 37.149214],\n              [-81.332835, 37.148677],\n              [-81.332462, 37.147821],\n              [-81.332313, 37.147522],\n              [-81.332272, 37.147439],\n              [-81.332238, 37.14737],\n              [-81.32812, 37.139014],\n              [-81.327171, 37.139279],\n              [-81.32599, 37.139566],\n              [-81.325366, 37.139616],\n              [-81.324441, 37.139582],\n              [-81.323136, 37.139504],\n              [-81.321802, 37.139321],\n              [-81.32059, 37.139067],\n              [-81.319908, 37.138972],\n              [-81.318861, 37.139042],\n              [-81.317591, 37.139239],\n              [-81.316917, 37.13928],\n              [-81.316193, 37.139273],\n              [-81.315085, 37.138833],\n              [-81.314397, 37.138407],\n              [-81.313801, 37.137981],\n              [-81.312864, 37.136954],\n              [-81.312034, 37.136113],\n              [-81.311492, 37.13547],\n              [-81.310395, 37.135547],\n              [-81.309268, 37.135592],\n              [-81.308223, 37.135598],\n              [-81.306424, 37.135547],\n              [-81.304545, 37.135495],\n              [-81.303944, 37.135392],\n              [-81.303447, 37.135056],\n              [-81.302863, 37.134533],\n              [-81.30156, 37.133712],\n              [-81.299532, 37.132988],\n              [-81.296664, 37.131989],\n              [-81.295397, 37.131411],\n              [-81.29447, 37.131006],\n              [-81.293488, 37.130818],\n              [-81.292011, 37.13077],\n              [-81.290634, 37.130763],\n              [-81.288851, 37.130898],\n              [-81.286406, 37.131042],\n              [-81.284909, 37.131002],\n              [-81.284005, 37.130968],\n              [-81.282854, 37.130698],\n              [-81.280864, 37.13012],\n              [-81.278812, 37.129597],\n              [-81.277331, 37.129226],\n              [-81.275652, 37.128659],\n              [-81.274673, 37.128334],\n              [-81.27365, 37.128226],\n              [-81.272676, 37.128159],\n              [-81.271578, 37.128261],\n              [-81.270574, 37.128242],\n              [-81.269753, 37.128031],\n              [-81.268805, 37.127626],\n              [-81.268019, 37.127205],\n              [-81.267401, 37.126916],\n              [-81.267062, 37.126735],\n              [-81.266565, 37.126357],\n              [-81.266523, 37.126325],\n              [-81.266397, 37.126227],\n              [-81.26602, 37.125981],\n              [-81.265691, 37.125767],\n              [-81.265402, 37.125611],\n              [-81.265233, 37.125512],\n              [-81.265104, 37.125422],\n              [-81.265046, 37.125276],\n              [-81.265008, 37.125124],\n              [-81.264945, 37.124827],\n              [-81.264683, 37.124618],\n              [-81.26427, 37.124385],\n              [-81.263998, 37.124264],\n              [-81.263948, 37.123985],\n              [-81.263916, 37.123804],\n              [-81.263893, 37.123053],\n              [-81.263929, 37.121914],\n              [-81.263846, 37.121043],\n              [-81.263409, 37.119921],\n              [-81.263125, 37.119131],\n              [-81.262821, 37.118388],\n              [-81.262375, 37.117509],\n              [-81.262161, 37.116735],\n              [-81.261717, 37.116187],\n              [-81.261424, 37.115848],\n              [-81.261312, 37.115469],\n              [-81.2614, 37.114774],\n              [-81.262403, 37.111654],\n              [-81.262401, 37.111105],\n              [-81.26246, 37.110596],\n              [-81.263018, 37.10948],\n              [-81.263376, 37.108381],\n              [-81.263464, 37.107606],\n              [-81.263401, 37.107008],\n              [-81.263329, 37.106467],\n              [-81.263739, 37.105788],\n              [-81.264429, 37.104914],\n              [-81.266361, 37.102825],\n              [-81.266991, 37.102161],\n              [-81.267382, 37.10174],\n              [-81.267562, 37.101578],\n              [-81.267508, 37.100513],\n              [-81.267596, 37.100012],\n              [-81.267896, 37.099542],\n              [-81.268051, 37.099388],\n              [-81.268707, 37.098741],\n              [-81.269017, 37.098417],\n              [-81.269127, 37.098239],\n              [-81.269126, 37.097972],\n              [-81.269074, 37.09773],\n              [-81.269313, 37.097035],\n              [-81.269382, 37.096776],\n              [-81.26941, 37.096122],\n              [-81.269579, 37.095645],\n              [-81.269668, 37.095266],\n              [-81.269686, 37.094878],\n              [-81.269974, 37.093948],\n              [-81.270262, 37.093011],\n              [-81.270502, 37.092647],\n              [-81.270893, 37.092379],\n              [-81.271464, 37.092111],\n              [-81.272769, 37.091793],\n              [-81.273632, 37.091548],\n              [-81.274434, 37.091166],\n              [-81.275035, 37.090696],\n              [-81.275506, 37.090283],\n              [-81.277579, 37.088485],\n              [-81.277949, 37.088241],\n              [-81.278581, 37.088038],\n              [-81.279345, 37.087922],\n              [-81.280389, 37.087758],\n              [-81.281371, 37.08715],\n              [-81.282142, 37.08655],\n              [-81.282733, 37.086055],\n              [-81.283696, 37.085576],\n              [-81.284951, 37.085435],\n              [-81.285483, 37.085313],\n              [-81.285794, 37.085053],\n              [-81.286054, 37.084794],\n              [-81.286485, 37.084583],\n              [-81.28763, 37.084418],\n              [-81.287921, 37.084321],\n              [-81.288231, 37.084126],\n              [-81.288852, 37.083599],\n              [-81.289303, 37.083339],\n              [-81.289534, 37.083298],\n              [-81.289865, 37.083306],\n              [-81.290187, 37.083442],\n              [-81.29054, 37.083619],\n              [-81.290952, 37.083682],\n              [-81.291214, 37.083891],\n              [-81.291425, 37.084012],\n              [-81.291676, 37.083833],\n              [-81.291825, 37.083615],\n              [-81.291985, 37.083259],\n              [-81.292295, 37.082927],\n              [-81.293058, 37.082755],\n              [-81.293599, 37.082633],\n              [-81.293989, 37.081977],\n              [-81.29465, 37.081507],\n              [-81.297247, 37.080498],\n              [-81.298521, 37.080098],\n              [-81.300208, 37.079884],\n              [-81.30088, 37.07955],\n              [-81.301701, 37.078942],\n              [-81.302563, 37.078544],\n              [-81.303658, 37.078371],\n              [-81.30421, 37.078337],\n              [-81.304471, 37.078175],\n              [-81.304862, 37.07794],\n              [-81.305494, 37.077752],\n              [-81.306236, 37.077548],\n              [-81.306657, 37.077232],\n              [-81.306949, 37.077054],\n              [-81.306969, 37.07704],\n              [-81.307027, 37.077],\n              [-81.307066, 37.076973],\n              [-81.307127, 37.076721],\n              [-81.307628, 37.07651],\n              [-81.30837, 37.076306],\n              [-81.309364, 37.076149],\n              [-81.309866, 37.075994],\n              [-81.312708, 37.07366],\n              [-81.313138, 37.073247],\n              [-81.314101, 37.072816],\n              [-81.31433, 37.0725],\n              [-81.31466, 37.072176],\n              [-81.316154, 37.071606],\n              [-81.317488, 37.071166],\n              [-81.31812, 37.071027],\n              [-81.320437, 37.070196],\n              [-81.322383, 37.069414],\n              [-81.324217, 37.068609],\n              [-81.325239, 37.068],\n              [-81.326271, 37.067399],\n              [-81.326732, 37.067276],\n              [-81.327665, 37.067136],\n              [-81.328911, 37.067068],\n              [-81.330095, 37.066886],\n              [-81.331239, 37.066608],\n              [-81.332623, 37.06624],\n              [-81.333265, 37.066028],\n              [-81.333956, 37.065727],\n              [-81.334408, 37.065588],\n              [-81.33513, 37.065465],\n              [-81.336534, 37.064919],\n              [-81.337967, 37.064341],\n              [-81.339099, 37.063675],\n              [-81.340473, 37.063307],\n              [-81.341688, 37.0631],\n              [-81.342791, 37.06266],\n              [-81.343823, 37.0621],\n              [-81.345097, 37.061894],\n              [-81.346392, 37.0618],\n              [-81.347296, 37.061797],\n              [-81.348008, 37.061609],\n              [-81.349291, 37.061169],\n              [-81.350194, 37.060964],\n              [-81.350986, 37.060654],\n              [-81.351688, 37.060426],\n              [-81.353102, 37.060082],\n              [-81.354868, 37.059624],\n              [-81.356261, 37.059166],\n              [-81.357503, 37.058548],\n              [-81.358496, 37.058238],\n              [-81.359289, 37.058163],\n              [-81.359832, 37.058161],\n              [-81.361177, 37.057938],\n              [-81.362602, 37.057723],\n              [-81.363154, 37.057754],\n              [-81.363615, 37.057607],\n              [-81.364197, 37.057419],\n              [-81.364608, 37.057353],\n              [-81.36487, 37.057408],\n              [-81.365967, 37.057833],\n              [-81.366449, 37.057944],\n              [-81.366961, 37.05791],\n              [-81.367874, 37.057753],\n              [-81.368647, 37.057645],\n              [-81.369198, 37.057361],\n              [-81.370049, 37.056881],\n              [-81.371332, 37.056505],\n              [-81.372186, 37.056518],\n              [-81.372899, 37.056532],\n              [-81.373652, 37.056545],\n              [-81.374194, 37.056479],\n              [-81.374222, 37.055986],\n              [-81.374319, 37.055299],\n              [-81.374488, 37.055105],\n              [-81.37483, 37.054997],\n              [-81.374904, 37.054973],\n              [-81.375036, 37.0549],\n              [-81.375167, 37.054779],\n              [-81.375248, 37.054625],\n              [-81.375389, 37.054415],\n              [-81.375702, 37.054149],\n              [-81.376167, 37.053938],\n              [-81.377044, 37.053583],\n              [-81.377417, 37.053543],\n              [-81.37777, 37.053551],\n              [-81.378183, 37.053874],\n              [-81.378486, 37.054149],\n              [-81.378737, 37.054546],\n              [-81.378787, 37.054626],\n              [-81.378968, 37.055054],\n              [-81.379109, 37.055119],\n              [-81.379643, 37.055289],\n              [-81.380509, 37.055628],\n              [-81.380811, 37.055725],\n              [-81.381114, 37.055604],\n              [-81.381366, 37.055458],\n              [-81.38173, 37.055305],\n              [-81.382345, 37.055054],\n              [-81.382778, 37.055063],\n              [-81.383252, 37.055127],\n              [-81.383776, 37.055232],\n              [-81.384078, 37.055362],\n              [-81.384431, 37.055475],\n              [-81.384582, 37.05541],\n              [-81.384905, 37.055257],\n              [-81.385157, 37.055119],\n              [-81.385571, 37.055047],\n              [-81.385873, 37.055063],\n              [-81.386347, 37.055232],\n              [-81.386951, 37.055531],\n              [-81.387626, 37.05579],\n              [-81.38809, 37.055879],\n              [-81.388644, 37.05579],\n              [-81.389149, 37.05554],\n              [-81.389714, 37.055305],\n              [-81.390187, 37.055289],\n              [-81.3905, 37.05533],\n              [-81.390802, 37.055459],\n              [-81.391064, 37.055653],\n              [-81.391437, 37.055839],\n              [-81.392152, 37.055992],\n              [-81.392948, 37.056202],\n              [-81.393744, 37.056526],\n              [-81.39456, 37.056784],\n              [-81.395306, 37.057043],\n              [-81.396223, 37.057196],\n              [-81.397352, 37.057261],\n              [-81.398017, 37.057423],\n              [-81.398692, 37.057584],\n              [-81.399155, 37.057778],\n              [-81.399458, 37.05756],\n              [-81.399691, 37.057463],\n              [-81.399832, 37.057374],\n              [-81.400711, 37.056606],\n              [-81.401165, 37.056226],\n              [-81.40175, 37.056032],\n              [-81.402668, 37.055773],\n              [-81.403908, 37.055385],\n              [-81.404998, 37.054957],\n              [-81.405422, 37.054731],\n              [-81.40639, 37.054302],\n              [-81.408216, 37.053655],\n              [-81.409113, 37.053372],\n              [-81.409718, 37.053283],\n              [-81.410949, 37.05279],\n              [-81.411968, 37.052249],\n              [-81.413027, 37.051602],\n              [-81.413754, 37.051214],\n              [-81.415488, 37.050551],\n              [-81.41679, 37.050098],\n              [-81.417087, 37.049967],\n              [-81.417618, 37.049734],\n              [-81.418455, 37.049225],\n              [-81.41898, 37.048901],\n              [-81.419433, 37.048715],\n              [-81.419917, 37.048562],\n              [-81.420573, 37.048376],\n              [-81.421017, 37.048222],\n              [-81.42143, 37.047842],\n              [-81.421733, 37.047527],\n              [-81.421955, 37.047341],\n              [-81.42249, 37.04705],\n              [-81.423095, 37.046831],\n              [-81.423619, 37.046694],\n              [-81.424063, 37.046451],\n              [-81.424527, 37.046136],\n              [-81.425022, 37.045659],\n              [-81.425335, 37.045352],\n              [-81.425738, 37.04515],\n              [-81.426757, 37.044713],\n              [-81.427664, 37.044414],\n              [-81.42831, 37.044179],\n              [-81.428481, 37.04409],\n              [-81.428723, 37.043945],\n              [-81.428965, 37.043872],\n              [-81.429278, 37.043783],\n              [-81.42953, 37.04375],\n              [-81.429731, 37.043807],\n              [-81.429993, 37.043871],\n              [-81.430497, 37.043847],\n              [-81.431001, 37.04379],\n              [-81.431354, 37.043701],\n              [-81.431657, 37.04354],\n              [-81.432373, 37.043232],\n              [-81.43321, 37.042909],\n              [-81.434391, 37.042487],\n              [-81.435641, 37.04201],\n              [-81.436055, 37.041783],\n              [-81.436257, 37.041419],\n              [-81.4366, 37.041161],\n              [-81.436892, 37.041088],\n              [-81.437567, 37.040983],\n              [-81.438293, 37.041031],\n              [-81.438968, 37.041039],\n              [-81.439422, 37.040949],\n              [-81.439795, 37.04082],\n              [-81.440178, 37.040577],\n              [-81.440541, 37.040343],\n              [-81.441751, 37.040011],\n              [-81.442477, 37.03997],\n              [-81.443142, 37.04001],\n              [-81.443606, 37.040123],\n              [-81.444049, 37.040252],\n              [-81.444543, 37.040333],\n              [-81.444926, 37.040406],\n              [-81.44548, 37.040616],\n              [-81.446145, 37.040672],\n              [-81.446682, 37.040659],\n              [-81.44684, 37.040655],\n              [-81.447788, 37.040542],\n              [-81.448645, 37.040339],\n              [-81.449232, 37.040211],\n              [-81.449239, 37.040208],\n              [-81.450147, 37.039878],\n              [-81.451135, 37.039514],\n              [-81.451973, 37.039271],\n              [-81.453132, 37.039036],\n              [-81.453888, 37.038761],\n              [-81.454665, 37.038647],\n              [-81.455037, 37.038736],\n              [-81.45538, 37.038825],\n              [-81.455813, 37.039002],\n              [-81.456438, 37.039212],\n              [-81.456982, 37.039276],\n              [-81.457315, 37.039268],\n              [-81.457547, 37.039211],\n              [-81.457789, 37.039082],\n              [-81.460582, 37.037577],\n              [-81.461318, 37.037181],\n              [-81.46156, 37.036978],\n              [-81.461719, 37.036762],\n              [-81.461736, 37.03673],\n              [-81.461913, 37.036388],\n              [-81.462024, 37.036105],\n              [-81.462216, 37.035548],\n              [-81.45954, 37.032975],\n              [-81.459334, 37.032777],\n              [-81.457398, 37.030916],\n              [-81.457355, 37.030874],\n              [-81.457258, 37.030779],\n              [-81.457209, 37.030694],\n              [-81.45706, 37.030535],\n              [-81.456572, 37.030012],\n              [-81.456536, 37.029975],\n              [-81.452865, 37.026205],\n              [-81.449741, 37.022997],\n              [-81.448954, 37.022181],\n              [-81.448936, 37.022162],\n              [-81.448002, 37.021194],\n              [-81.447851, 37.021044],\n              [-81.447835, 37.021022],\n              [-81.447816, 37.021002],\n              [-81.441363, 37.014315],\n              [-81.441316, 37.014287],\n              [-81.440794, 37.013743],\n              [-81.437185, 37.010098],\n              [-81.437483, 37.010094],\n              [-81.437795, 37.010126],\n              [-81.438208, 37.01011],\n              [-81.43851, 37.010013],\n              [-81.438804, 37.009859],\n              [-81.439066, 37.00977],\n              [-81.439348, 37.009778],\n              [-81.43969, 37.009794],\n              [-81.439952, 37.009737],\n              [-81.440194, 37.0096],\n              [-81.440537, 37.009252],\n              [-81.440951, 37.008985],\n              [-81.441414, 37.008832],\n              [-81.441868, 37.008654],\n              [-81.442493, 37.00816],\n              [-81.443058, 37.007691],\n              [-81.444237, 37.007028],\n              [-81.445064, 37.006559],\n              [-81.44581, 37.006017],\n              [-81.446606, 37.005564],\n              [-81.44703, 37.005354],\n              [-81.447503, 37.005119],\n              [-81.448713, 37.004392],\n              [-81.449015, 37.004109],\n              [-81.449358, 37.003704],\n              [-81.449852, 37.003276],\n              [-81.450417, 37.002944],\n              [-81.451062, 37.002814],\n              [-81.451626, 37.00279],\n              [-81.451968, 37.002765],\n              [-81.45221, 37.002725],\n              [-81.452372, 37.002555],\n              [-81.452533, 37.002385],\n              [-81.453017, 37.001827],\n              [-81.453351, 37.001375],\n              [-81.453805, 37.001003],\n              [-81.454228, 37.000833],\n              [-81.45456, 37.000711],\n              [-81.454822, 37.000582],\n              [-81.455004, 37.00038],\n              [-81.455336, 37.000122],\n              [-81.455636, 37.000022],\n              [-81.456036, 36.999922],\n              [-81.456536, 37.000022],\n              [-81.456736, 37.000022],\n              [-81.457136, 36.999822],\n              [-81.457336, 36.999622],\n              [-81.457436, 36.999322],\n              [-81.457736, 36.999022],\n              [-81.458136, 36.998722],\n              [-81.458636, 36.998422],\n              [-81.459136, 36.998022],\n              [-81.460136, 36.997022],\n              [-81.460417, 36.996742],\n              [-81.460563, 36.996595],\n              [-81.460936, 36.996222],\n              [-81.461336, 36.995922],\n              [-81.461736, 36.995322],\n              [-81.462336, 36.994922],\n              [-81.462736, 36.994822],\n              [-81.463336, 36.994522],\n              [-81.463536, 36.994522],\n              [-81.463836, 36.994422],\n              [-81.464036, 36.994322],\n              [-81.464136, 36.994122],\n              [-81.46424, 36.993886],\n              [-81.464269, 36.993821],\n              [-81.464436, 36.993622],\n              [-81.464836, 36.993522],\n              [-81.465236, 36.993522],\n              [-81.466036, 36.993222],\n              [-81.466136, 36.993122],\n              [-81.466436, 36.993122],\n              [-81.466836, 36.993022],\n              [-81.467136, 36.992922],\n              [-81.467436, 36.992622],\n              [-81.467536, 36.992422],\n              [-81.467736, 36.992122],\n              [-81.468036, 36.991822],\n              [-81.468236, 36.991722],\n              [-81.468736, 36.991322],\n              [-81.469236, 36.991122],\n              [-81.469836, 36.990922],\n              [-81.470337, 36.990922],\n              [-81.470837, 36.990822],\n              [-81.470937, 36.990722],\n              [-81.470937, 36.990622],\n              [-81.471037, 36.990522],\n              [-81.471137, 36.990322],\n              [-81.471237, 36.990222],\n              [-81.472037, 36.990222],\n              [-81.472537, 36.990122],\n              [-81.473237, 36.990022],\n              [-81.473837, 36.989722],\n              [-81.474437, 36.989322],\n              [-81.474937, 36.988922],\n              [-81.475337, 36.988622],\n              [-81.475737, 36.988422],\n              [-81.476037, 36.988322],\n              [-81.476137, 36.988222],\n              [-81.476258, 36.988222],\n              [-81.476337, 36.988122],\n              [-81.476426, 36.988092],\n              [-81.476484, 36.988073],\n              [-81.476637, 36.988022],\n              [-81.477137, 36.988022],\n              [-81.477537, 36.987822],\n              [-81.477637, 36.987822],\n              [-81.477637, 36.987722],\n              [-81.477837, 36.987622],\n              [-81.478137, 36.987422],\n              [-81.478637, 36.987122],\n              [-81.478937, 36.986922],\n              [-81.479137, 36.986922],\n              [-81.479337, 36.986722],\n              [-81.479837, 36.986622],\n              [-81.480237, 36.986522],\n              [-81.480537, 36.986422],\n              [-81.481137, 36.986622],\n              [-81.481537, 36.986722],\n              [-81.481937, 36.987022],\n              [-81.482337, 36.987422],\n              [-81.482424, 36.987531],\n              [-81.482583, 36.98773],\n              [-81.482737, 36.987922],\n              [-81.483037, 36.988422],\n              [-81.483237, 36.988822],\n              [-81.483337, 36.989322],\n              [-81.483337, 36.989622],\n              [-81.483237, 36.990022],\n              [-81.483037, 36.990422],\n              [-81.483037, 36.990522],\n              [-81.482937, 36.990522],\n              [-81.482937, 36.990622],\n              [-81.482837, 36.990722],\n              [-81.482337, 36.991122],\n              [-81.481037, 36.992422],\n              [-81.480137, 36.993022],\n              [-81.479437, 36.993422],\n              [-81.478637, 36.993822],\n              [-81.478137, 36.994022],\n              [-81.477737, 36.994122],\n              [-81.477337, 36.994322],\n              [-81.476937, 36.994422],\n              [-81.476737, 36.994522],\n              [-81.476437, 36.994922],\n              [-81.476037, 36.995422],\n              [-81.475737, 36.995722],\n              [-81.475137, 36.996122],\n              [-81.474937, 36.996222],\n              [-81.474537, 36.996622],\n              [-81.474337, 36.997022],\n              [-81.474137, 36.997222],\n              [-81.473837, 36.997322],\n              [-81.473637, 36.997422],\n              [-81.473337, 36.997522],\n              [-81.473237, 36.997622],\n              [-81.472937, 36.997822],\n              [-81.472637, 36.998122],\n              [-81.472637, 36.998622],\n              [-81.472837, 36.998822],\n              [-81.473037, 36.998822],\n              [-81.473537, 36.999322],\n              [-81.473937, 36.999522],\n              [-81.474237, 36.999822],\n              [-81.474136, 37.000122],\n              [-81.474447, 37.000594],\n              [-81.474749, 37.000788],\n              [-81.475242, 37.001256],\n              [-81.476027, 37.002104],\n              [-81.475796, 37.002234],\n              [-81.475221, 37.002687],\n              [-81.474405, 37.003116],\n              [-81.473145, 37.003593],\n              [-81.472863, 37.003715],\n              [-81.472813, 37.003957],\n              [-81.473034, 37.004701],\n              [-81.473386, 37.005606],\n              [-81.473869, 37.006527],\n              [-81.473983, 37.006683],\n              [-81.474573, 37.007488],\n              [-81.475227, 37.008304],\n              [-81.4756, 37.008869],\n              [-81.47559, 37.009087],\n              [-81.475418, 37.009257],\n              [-81.474985, 37.009484],\n              [-81.474349, 37.009775],\n              [-81.473855, 37.009953],\n              [-81.47324, 37.010172],\n              [-81.472626, 37.010439],\n              [-81.472162, 37.010924],\n              [-81.471254, 37.011927],\n              [-81.470186, 37.013067],\n              [-81.469419, 37.013852],\n              [-81.469016, 37.014418],\n              [-81.468844, 37.015048],\n              [-81.468813, 37.015606],\n              [-81.468924, 37.01622],\n              [-81.469105, 37.016608],\n              [-81.469487, 37.01685],\n              [-81.4698, 37.01689],\n              [-81.470142, 37.016963],\n              [-81.470575, 37.017092],\n              [-81.47125, 37.017309],\n              [-81.472358, 37.017721],\n              [-81.473436, 37.018294],\n              [-81.47401, 37.018423],\n              [-81.474363, 37.018431],\n              [-81.474907, 37.018236],\n              [-81.475603, 37.017904],\n              [-81.476429, 37.017581],\n              [-81.477276, 37.017127],\n              [-81.478092, 37.016723],\n              [-81.478809, 37.016383],\n              [-81.479545, 37.016132],\n              [-81.480109, 37.01601],\n              [-81.480613, 37.015937],\n              [-81.481802, 37.015726],\n              [-81.482689, 37.015539],\n              [-81.483797, 37.015215],\n              [-81.484029, 37.015247],\n              [-81.48423, 37.015336],\n              [-81.484553, 37.015506],\n              [-81.484855, 37.015602],\n              [-81.485207, 37.015748],\n              [-81.48561, 37.015788],\n              [-81.486588, 37.015989],\n              [-81.488089, 37.016198],\n              [-81.488502, 37.016125],\n              [-81.488673, 37.015971],\n              [-81.488925, 37.015543],\n              [-81.489177, 37.015308],\n              [-81.489651, 37.014823],\n              [-81.490125, 37.014507],\n              [-81.49076, 37.014208],\n              [-81.491253, 37.014062],\n              [-81.491626, 37.014021],\n              [-81.492009, 37.014053],\n              [-81.492402, 37.014077],\n              [-81.492916, 37.01423],\n              [-81.493258, 37.01444],\n              [-81.493641, 37.014609],\n              [-81.494004, 37.01469],\n              [-81.4948, 37.015012],\n              [-81.495203, 37.015206],\n              [-81.495656, 37.01523],\n              [-81.495857, 37.015108],\n              [-81.496887, 37.014057],\n              [-81.497287, 37.013289],\n              [-81.497779, 37.012892],\n              [-81.498435, 37.012136],\n              [-81.498741, 37.011398],\n              [-81.498891, 37.011036],\n              [-81.499813, 37.010502],\n              [-81.499838, 37.010487],\n              [-81.50002, 37.010296],\n              [-81.50022, 37.0102],\n              [-81.500682, 37.009998],\n              [-81.500853, 37.009862],\n              [-81.501094, 37.009588],\n              [-81.501355, 37.009322],\n              [-81.501726, 37.009088],\n              [-81.502248, 37.008903],\n              [-81.50289, 37.008775],\n              [-81.503281, 37.008775],\n              [-81.503732, 37.008945],\n              [-81.504243, 37.009139],\n              [-81.504328, 37.00918],\n              [-81.504354, 37.009193],\n              [-81.504668, 37.009344],\n              [-81.504985, 37.00947],\n              [-81.505306, 37.009503],\n              [-81.505777, 37.009535],\n              [-81.506208, 37.009471],\n              [-81.506599, 37.009359],\n              [-81.506921, 37.00919],\n              [-81.507202, 37.009029],\n              [-81.507352, 37.008851],\n              [-81.507493, 37.008634],\n              [-81.507539, 37.008248],\n              [-81.507559, 37.007999],\n              [-81.507574, 37.0079],\n              [-81.507635, 37.007662],\n              [-81.507737, 37.007438],\n              [-81.507793, 37.007339],\n              [-81.507846, 37.00721],\n              [-81.507934, 37.006854],\n              [-81.507952, 37.006823],\n              [-81.508013, 37.006769],\n              [-81.508043, 37.006727],\n              [-81.508213, 37.006239],\n              [-81.508262, 37.006136],\n              [-81.508477, 37.005807],\n              [-81.508623, 37.005415],\n              [-81.50864, 37.005353],\n              [-81.508694, 37.005204],\n              [-81.508764, 37.00506],\n              [-81.508896, 37.004881],\n              [-81.509301, 37.004393],\n              [-81.509431, 37.004266],\n              [-81.509613, 37.004136],\n              [-81.509767, 37.004041],\n              [-81.510056, 37.003774],\n              [-81.510102, 37.00372],\n              [-81.510221, 37.003564],\n              [-81.510283, 37.003503],\n              [-81.510374, 37.003444],\n              [-81.510448, 37.00341],\n              [-81.510561, 37.003374],\n              [-81.51159, 37.003183],\n              [-81.512021, 37.002942],\n              [-81.512043, 37.002928],\n              [-81.512341, 37.002748],\n              [-81.512529, 37.002621],\n              [-81.512541, 37.002614],\n              [-81.512675, 37.002542],\n              [-81.51283, 37.002476],\n              [-81.513072, 37.00238],\n              [-81.513123, 37.002364],\n              [-81.513202, 37.002338],\n              [-81.513987, 37.002083],\n              [-81.514669, 37.001811],\n              [-81.514899, 37.001719],\n              [-81.516183, 37.001577],\n              [-81.516523, 37.001539],\n              [-81.517093, 37.001152],\n              [-81.51715, 37.000856],\n              [-81.519262, 37.000925],\n              [-81.520434, 37.000644],\n              [-81.520702, 37.000839],\n              [-81.520912, 37.000928],\n              [-81.521173, 37.000912],\n              [-81.521444, 37.00084],\n              [-81.521845, 37.000719],\n              [-81.522457, 37.00055],\n              [-81.523279, 37.000414],\n              [-81.524101, 37.000326],\n              [-81.524853, 37.000326],\n              [-81.525606, 37.00027],\n              [-81.526348, 37.00019],\n              [-81.526776, 37.000122],\n              [-81.527552, 36.999257],\n              [-81.528578, 36.999107],\n              [-81.529927, 36.998667],\n              [-81.530818, 36.998415],\n              [-81.531174, 36.998316],\n              [-81.53163, 36.997624],\n              [-81.532106, 36.997005],\n              [-81.53264, 36.996676],\n              [-81.533425, 36.996323],\n              [-81.533767, 36.996251],\n              [-81.534939, 36.996022],\n              [-81.536539, 36.995822],\n              [-81.543139, 36.995422],\n              [-81.548039, 36.994322],\n              [-81.550139, 36.994222],\n              [-81.554039, 36.992922],\n              [-81.557439, 36.991822],\n              [-81.561239, 36.990522],\n              [-81.569339, 36.989422],\n              [-81.573439, 36.989322],\n              [-81.576939, 36.989522],\n              [-81.579939, 36.987022],\n              [-81.582039, 36.985022],\n              [-81.583639, 36.985022],\n              [-81.586778, 36.983277],\n              [-81.592639, 36.980022],\n              [-81.596639, 36.977022],\n              [-81.599739, 36.973422],\n              [-81.601139, 36.973422],\n              [-81.60384, 36.972322],\n              [-81.60554, 36.971022],\n              [-81.60874, 36.969022],\n              [-81.61044, 36.968022],\n              [-81.61224, 36.967622],\n              [-81.62484, 36.960122],\n              [-81.62504, 36.959822],\n              [-81.62534, 36.959422],\n              [-81.62584, 36.959122],\n              [-81.62654, 36.958322],\n              [-81.62714, 36.957622],\n              [-81.62754, 36.957122],\n              [-81.62834, 36.956921],\n              [-81.62894, 36.956521],\n              [-81.62944, 36.956221],\n              [-81.629836, 36.956068],\n              [-81.63074, 36.955721],\n              [-81.63174, 36.955121],\n              [-81.63254, 36.954421],\n              [-81.63324, 36.953721],\n              [-81.63374, 36.953321],\n              [-81.63434, 36.953121],\n              [-81.63504, 36.952921],\n              [-81.63594, 36.952621],\n              [-81.63714, 36.951721],\n              [-81.63844, 36.950721],\n              [-81.63954, 36.949721],\n              [-81.64024, 36.949021],\n              [-81.64094, 36.948521],\n              [-81.64134, 36.948221],\n              [-81.64184, 36.948121],\n              [-81.64274, 36.947921],\n              [-81.64334, 36.947521],\n              [-81.64414, 36.947221],\n              [-81.64504, 36.947021],\n              [-81.64614, 36.946621],\n              [-81.64744, 36.945921],\n              [-81.64854, 36.945121],\n              [-81.649741, 36.944721],\n              [-81.650941, 36.944221],\n              [-81.653141, 36.943021],\n              [-81.654141, 36.942521],\n              [-81.655141, 36.942221],\n              [-81.656141, 36.941721],\n              [-81.657041, 36.941121],\n              [-81.658241, 36.940721],\n              [-81.659541, 36.940621],\n              [-81.660941, 36.940421],\n              [-81.662041, 36.940121],\n              [-81.663241, 36.940021],\n              [-81.664141, 36.939921],\n              [-81.664741, 36.939621],\n              [-81.665141, 36.939621],\n              [-81.665841, 36.939521],\n              [-81.666041, 36.939421],\n              [-81.666141, 36.939321],\n              [-81.666241, 36.939321],\n              [-81.666241, 36.939221],\n              [-81.666441, 36.938921],\n              [-81.667441, 36.938621],\n              [-81.667741, 36.938521],\n              [-81.673441, 36.935121],\n              [-81.673641, 36.934821],\n              [-81.676961, 36.934186],\n              [-81.677922, 36.934004],\n              [-81.678001, 36.933989],\n              [-81.678096, 36.933971],\n              [-81.678652, 36.933864],\n              [-81.683041, 36.933021],\n              [-81.685593, 36.937322],\n              [-81.685781, 36.93764],\n              [-81.685969, 36.937957],\n              [-81.687407, 36.940381],\n              [-81.695441, 36.953921],\n              [-81.696041, 36.95494],\n              [-81.697579, 36.957548],\n              [-81.698791, 36.959605],\n              [-81.69883, 36.95967],\n              [-81.700682, 36.962812],\n              [-81.703077, 36.966875],\n              [-81.703219, 36.967115],\n              [-81.703537, 36.967654],\n              [-81.708941, 36.976821],\n              [-81.709075, 36.976865],\n              [-81.709241, 36.976921],\n              [-81.710241, 36.976121],\n              [-81.710741, 36.975821],\n              [-81.712241, 36.975821],\n              [-81.712541, 36.975621],\n              [-81.713441, 36.975221],\n              [-81.714641, 36.975121],\n              [-81.715541, 36.974721],\n              [-81.716041, 36.974021],\n              [-81.716441, 36.973521],\n              [-81.717241, 36.973021],\n              [-81.717641, 36.972921],\n              [-81.718641, 36.973021],\n              [-81.719341, 36.973221],\n              [-81.720341, 36.972921],\n              [-81.721041, 36.973021],\n              [-81.721741, 36.972821],\n              [-81.723041, 36.972221],\n              [-81.723541, 36.971621],\n              [-81.724541, 36.971221],\n              [-81.725141, 36.971221],\n              [-81.725841, 36.971021],\n              [-81.726741, 36.970521],\n              [-81.727641, 36.970121],\n              [-81.728641, 36.969921],\n              [-81.729641, 36.969921],\n              [-81.730341, 36.970021],\n              [-81.730941, 36.970121],\n              [-81.731741, 36.970221],\n              [-81.732241, 36.969921],\n              [-81.733041, 36.969321],\n              [-81.733441, 36.968921],\n              [-81.734041, 36.968521],\n              [-81.734541, 36.967921],\n              [-81.735541, 36.967721],\n              [-81.736641, 36.967921],\n              [-81.737041, 36.968021],\n              [-81.738141, 36.967721],\n              [-81.738841, 36.967321],\n              [-81.739641, 36.967221],\n              [-81.740341, 36.967021],\n              [-81.740941, 36.966421],\n              [-81.741541, 36.966021],\n              [-81.742241, 36.965721],\n              [-81.742541, 36.965821],\n              [-81.742641, 36.965821],\n              [-81.744741, 36.966121],\n              [-81.745541, 36.965421],\n              [-81.746041, 36.965121],\n              [-81.746541, 36.965221],\n              [-81.746941, 36.965221],\n              [-81.747541, 36.964821],\n              [-81.747941, 36.964421],\n              [-81.748541, 36.963721],\n              [-81.748941, 36.963421],\n              [-81.749741, 36.963621],\n              [-81.749841, 36.963671],\n              [-81.750041, 36.963621],\n              [-81.750942, 36.963521],\n              [-81.751542, 36.963321],\n              [-81.752142, 36.963221],\n              [-81.752642, 36.963121],\n              [-81.753142, 36.962921],\n              [-81.753442, 36.962721],\n              [-81.753742, 36.962621],\n              [-81.754342, 36.962521],\n              [-81.754942, 36.962521],\n              [-81.755642, 36.962621],\n              [-81.756342, 36.962621],\n              [-81.756742, 36.962521],\n              [-81.757442, 36.962321],\n              [-81.757942, 36.962121],\n              [-81.758142, 36.962021],\n              [-81.758442, 36.961721],\n              [-81.758542, 36.961521],\n              [-81.758842, 36.961321],\n              [-81.759242, 36.961021],\n              [-81.760242, 36.960621],\n              [-81.761642, 36.960621],\n              [-81.762042, 36.960721],\n              [-81.762242, 36.960721],\n              [-81.762642, 36.960921],\n              [-81.762742, 36.960921],\n              [-81.763142, 36.960821],\n              [-81.763442, 36.960721],\n              [-81.764142, 36.960621],\n              [-81.764442, 36.960621],\n              [-81.765042, 36.960721],\n              [-81.765642, 36.960621],\n              [-81.766442, 36.960521],\n              [-81.767242, 36.960521],\n              [-81.767442, 36.960721],\n              [-81.767642, 36.960721],\n              [-81.767942, 36.960821],\n              [-81.768742, 36.960621],\n              [-81.769042, 36.960721],\n              [-81.769342, 36.960721],\n              [-81.769942, 36.961021],\n              [-81.770242, 36.961221],\n              [-81.770442, 36.961221],\n              [-81.770742, 36.961321],\n              [-81.771042, 36.961321],\n              [-81.771242, 36.961221],\n              [-81.771542, 36.961021],\n              [-81.771842, 36.960721],\n              [-81.772042, 36.960721],\n              [-81.772342, 36.960621],\n              [-81.773842, 36.960621],\n              [-81.774042, 36.960521],\n              [-81.774343, 36.960321],\n              [-81.774743, 36.960221],\n              [-81.775243, 36.960021],\n              [-81.776443, 36.959621],\n              [-81.776843, 36.959521],\n              [-81.777343, 36.959221],\n              [-81.777643, 36.959121],\n              [-81.778043, 36.959021],\n              [-81.778543, 36.958821],\n              [-81.778743, 36.958821],\n              [-81.779043, 36.958721],\n              [-81.779643, 36.958721],\n              [-81.779843, 36.958621],\n              [-81.780542, 36.958621],\n              [-81.782764, 36.964013],\n              [-81.784868, 36.969115],\n              [-81.785567, 36.970813],\n              [-81.78564, 36.970991],\n              [-81.785652, 36.97102],\n              [-81.785666, 36.971054],\n              [-81.785668, 36.97106],\n              [-81.785703, 36.971145],\n              [-81.785827, 36.971446],\n              [-81.786027, 36.971931],\n              [-81.786166, 36.97227],\n              [-81.787926, 36.976538],\n              [-81.794528, 36.992559],\n              [-81.79489, 36.993432],\n              [-81.796398, 36.997096],\n              [-81.7964, 36.997101],\n              [-81.796404, 36.997112],\n              [-81.79644, 36.997199],\n              [-81.796462, 36.997252],\n              [-81.796765, 36.997988],\n              [-81.796919, 36.998359],\n              [-81.797008, 36.998573],\n              [-81.797014, 36.998587],\n              [-81.797106, 36.998811],\n              [-81.797651, 37.000132],\n              [-81.797673, 37.000184],\n              [-81.797768, 37.000408],\n              [-81.798326, 37.001731],\n              [-81.798996, 37.003317],\n              [-81.799079, 37.003513],\n              [-81.799191, 37.003778],\n              [-81.799197, 37.003792],\n              [-81.79921, 37.003824],\n              [-81.799238, 37.00389],\n              [-81.79932, 37.004084],\n              [-81.799382, 37.004231],\n              [-81.799414, 37.004308],\n              [-81.799419, 37.004319],\n              [-81.799538, 37.0046],\n              [-81.799548, 37.004623],\n              [-81.799554, 37.004637],\n              [-81.799562, 37.004657],\n              [-81.799575, 37.004689],\n              [-81.799591, 37.00473],\n              [-81.799813, 37.005294],\n              [-81.799817, 37.005305],\n              [-81.799831, 37.005341],\n              [-81.799853, 37.005396],\n              [-81.799891, 37.005492],\n              [-81.799895, 37.005502],\n              [-81.799941, 37.005618],\n              [-81.800023, 37.005826],\n              [-81.800085, 37.005983],\n              [-81.80013, 37.006097],\n              [-81.800163, 37.006181],\n              [-81.800193, 37.006257],\n              [-81.800208, 37.006294],\n              [-81.800221, 37.006326],\n              [-81.800277, 37.006468],\n              [-81.800297, 37.006519],\n              [-81.800299, 37.006524],\n              [-81.800303, 37.006535],\n              [-81.800316, 37.006568],\n              [-81.80038, 37.00673],\n              [-81.800429, 37.006854],\n              [-81.800495, 37.007022],\n              [-81.801206, 37.008829],\n              [-81.805167, 37.017734],\n              [-81.805169, 37.017739],\n              [-81.805399, 37.018255],\n              [-81.805408, 37.018275],\n              [-81.805446, 37.018361],\n              [-81.805459, 37.018392],\n              [-81.805464, 37.018404],\n              [-81.805466, 37.018409],\n              [-81.805485, 37.018457],\n              [-81.805503, 37.018494],\n              [-81.80557, 37.018633],\n              [-81.805658, 37.018798],\n              [-81.806157, 37.019733],\n              [-81.807917, 37.023031],\n              [-81.80792, 37.023037],\n              [-81.807993, 37.023175],\n              [-81.811718, 37.030212],\n              [-81.811721, 37.030218],\n              [-81.812088, 37.030893],\n              [-81.81211, 37.030933],\n              [-81.812188, 37.031081],\n              [-81.812309, 37.031306],\n              [-81.812401, 37.031477],\n              [-81.812409, 37.031491],\n              [-81.812813, 37.032243],\n              [-81.813326, 37.033197],\n              [-81.813488, 37.033498],\n              [-81.813773, 37.034028],\n              [-81.813854, 37.034178],\n              [-81.813921, 37.034303],\n              [-81.813924, 37.034309],\n              [-81.813937, 37.034334],\n              [-81.813969, 37.034393],\n              [-81.813995, 37.034441],\n              [-81.813998, 37.034446],\n              [-81.814001, 37.034452],\n              [-81.814081, 37.034598],\n              [-81.814088, 37.034611],\n              [-81.814127, 37.034687],\n              [-81.814182, 37.034789],\n              [-81.814252, 37.034919],\n              [-81.814265, 37.034943],\n              [-81.814285, 37.034981],\n              [-81.814334, 37.035072],\n              [-81.814894, 37.036114],\n              [-81.814951, 37.03622],\n              [-81.814959, 37.036233],\n              [-81.815058, 37.036391],\n              [-81.815063, 37.0364],\n              [-81.815742, 37.037688],\n              [-81.815816, 37.037829],\n              [-81.815819, 37.037835],\n              [-81.81585, 37.037893],\n              [-81.815881, 37.03795],\n              [-81.815922, 37.038027],\n              [-81.815962, 37.038105],\n              [-81.816812, 37.039731],\n              [-81.818342, 37.042654],\n              [-81.818394, 37.042757],\n              [-81.818398, 37.042762],\n              [-81.818459, 37.04284],\n              [-81.818476, 37.042862],\n              [-81.820634, 37.045577],\n              [-81.820738, 37.045709],\n              [-81.827268, 37.05393],\n              [-81.837004, 37.062351],\n              [-81.840779, 37.065631],\n              [-81.840797, 37.065646],\n              [-81.840974, 37.065788],\n              [-81.84453, 37.068829],\n              [-81.850112, 37.073594],\n              [-81.850137, 37.073616],\n              [-81.851359, 37.07466],\n              [-81.852714, 37.075816],\n              [-81.85287, 37.075949],\n              [-81.853109, 37.076153],\n              [-81.853234, 37.07626],\n              [-81.853262, 37.076284],\n              [-81.853366, 37.076374],\n              [-81.853394, 37.076398],\n              [-81.853463, 37.076457],\n              [-81.853505, 37.076491],\n              [-81.853525, 37.076507],\n              [-81.855089, 37.077762],\n              [-81.856677, 37.079128],\n              [-81.856709, 37.079158],\n              [-81.856726, 37.079174],\n              [-81.856734, 37.079181],\n              [-81.856843, 37.079277],\n              [-81.857355, 37.079736],\n              [-81.859387, 37.081561],\n              [-81.85948, 37.081645],\n              [-81.859519, 37.08168],\n              [-81.860937, 37.082954],\n              [-81.86098, 37.082993],\n              [-81.861186, 37.083179],\n              [-81.861409, 37.083378],\n              [-81.861414, 37.083382],\n              [-81.861718, 37.083634],\n              [-81.861751, 37.083657],\n              [-81.862356, 37.084268],\n              [-81.862433, 37.084323],\n              [-81.862708, 37.084598],\n              [-81.862747, 37.084646],\n              [-81.862762, 37.084658],\n              [-81.863187, 37.08501],\n              [-81.863354, 37.085152],\n              [-81.863439, 37.085224],\n              [-81.863475, 37.085253],\n              [-81.863503, 37.085276],\n              [-81.863778, 37.085498],\n              [-81.863931, 37.085603],\n              [-81.863941, 37.085639],\n              [-81.863982, 37.085868],\n              [-81.863986, 37.08591],\n              [-81.864009, 37.086183],\n              [-81.864011, 37.086209],\n              [-81.864021, 37.086265],\n              [-81.864058, 37.086509],\n              [-81.864065, 37.086566],\n              [-81.864096, 37.086822],\n              [-81.864109, 37.086924],\n              [-81.864131, 37.087017],\n              [-81.864174, 37.087147],\n              [-81.864253, 37.087332],\n              [-81.864357, 37.08749],\n              [-81.864422, 37.087569],\n              [-81.864565, 37.087709],\n              [-81.864737, 37.087866],\n              [-81.864919, 37.088051],\n              [-81.86497, 37.088092],\n              [-81.865136, 37.088204],\n              [-81.865263, 37.088276],\n              [-81.865457, 37.088371],\n              [-81.865808, 37.088613],\n              [-81.865936, 37.088692],\n              [-81.866194, 37.088883],\n              [-81.86622, 37.088914],\n              [-81.866471, 37.089132],\n              [-81.866618, 37.089272],\n              [-81.866842, 37.089505],\n              [-81.866972, 37.089649],\n              [-81.867076, 37.089751],\n              [-81.867205, 37.089867],\n              [-81.867473, 37.090059],\n              [-81.867637, 37.090202],\n              [-81.867697, 37.09027],\n              [-81.867888, 37.090586],\n              [-81.86807, 37.090787],\n              [-81.86826, 37.090938],\n              [-81.868381, 37.091044],\n              [-81.868699, 37.091262],\n              [-81.869044, 37.091508],\n              [-81.869503, 37.091866],\n              [-81.869571, 37.091924],\n              [-81.869744, 37.092102],\n              [-81.869828, 37.09221],\n              [-81.869891, 37.092276],\n              [-81.870089, 37.092458],\n              [-81.870206, 37.09254],\n              [-81.870417, 37.092652],\n              [-81.870494, 37.092686],\n              [-81.871329, 37.092971],\n              [-81.871492, 37.093042],\n              [-81.871566, 37.093085],\n              [-81.872087, 37.09339],\n              [-81.872233, 37.093485],\n              [-81.872457, 37.093652],\n              [-81.87257, 37.093758],\n              [-81.872693, 37.093904],\n              [-81.872726, 37.093957],\n              [-81.872751, 37.093984],\n              [-81.872795, 37.094059],\n              [-81.872821, 37.094087],\n              [-81.872847, 37.094135],\n              [-81.872873, 37.094162],\n              [-81.873029, 37.094409],\n              [-81.873107, 37.094498],\n              [-81.873142, 37.094552],\n              [-81.873196, 37.094616],\n              [-81.873237, 37.094683],\n              [-81.873263, 37.09471],\n              [-81.873523, 37.095114],\n              [-81.87361, 37.095203],\n              [-81.873696, 37.095278],\n              [-81.874395, 37.095828],\n              [-81.874568, 37.096002],\n              [-81.874611, 37.096036],\n              [-81.874723, 37.096111],\n              [-81.874783, 37.096132],\n              [-81.874847, 37.096181],\n              [-81.875047, 37.096398],\n              [-81.875202, 37.096593],\n              [-81.87522, 37.096634],\n              [-81.875278, 37.096734],\n              [-81.875285, 37.096748],\n              [-81.875303, 37.096786],\n              [-81.875513, 37.097233],\n              [-81.875542, 37.097327],\n              [-81.875593, 37.097681],\n              [-81.875622, 37.09778],\n              [-81.875656, 37.097828],\n              [-81.875717, 37.097965],\n              [-81.875743, 37.097993],\n              [-81.875819, 37.09812],\n              [-81.87589, 37.098212],\n              [-81.875908, 37.098246],\n              [-81.87628, 37.098699],\n              [-81.876297, 37.098733],\n              [-81.876721, 37.09923],\n              [-81.876798, 37.099295],\n              [-81.876872, 37.099305],\n              [-81.87706, 37.099311],\n              [-81.877511, 37.099306],\n              [-81.877863, 37.099352],\n              [-81.878012, 37.099405],\n              [-81.878134, 37.099475],\n              [-81.878191, 37.099516],\n              [-81.878329, 37.099639],\n              [-81.878363, 37.099677],\n              [-81.878459, 37.099838],\n              [-81.878493, 37.099914],\n              [-81.878713, 37.100731],\n              [-81.878796, 37.100988],\n              [-81.878831, 37.101074],\n              [-81.878992, 37.101348],\n              [-81.879074, 37.101433],\n              [-81.879147, 37.101498],\n              [-81.879276, 37.101577],\n              [-81.880318, 37.102064],\n              [-81.880404, 37.102119],\n              [-81.880491, 37.102188],\n              [-81.880728, 37.102465],\n              [-81.881259, 37.102913],\n              [-81.881346, 37.10305],\n              [-81.881372, 37.103078],\n              [-81.881407, 37.103139],\n              [-81.881433, 37.103167],\n              [-81.881476, 37.103242],\n              [-81.881562, 37.103345],\n              [-81.881606, 37.103379],\n              [-81.881718, 37.103434],\n              [-81.881838, 37.103474],\n              [-81.881887, 37.103501],\n              [-81.88195, 37.103536],\n              [-81.88195, 37.103591],\n              [-81.881947, 37.103608],\n              [-81.881909, 37.103852],\n              [-81.881901, 37.103955],\n              [-81.881902, 37.104093],\n              [-81.881926, 37.104232],\n              [-81.881955, 37.104312],\n              [-81.881989, 37.104353],\n              [-81.882033, 37.104429],\n              [-81.882119, 37.104518],\n              [-81.882223, 37.1046],\n              [-81.882295, 37.10464],\n              [-81.882317, 37.10465],\n              [-81.882509, 37.1047],\n              [-81.882678, 37.104729],\n              [-81.882868, 37.104755],\n              [-81.8834, 37.104815],\n              [-81.883512, 37.104842],\n              [-81.883581, 37.104869],\n              [-81.883701, 37.104938],\n              [-81.883796, 37.105013],\n              [-81.883891, 37.105109],\n              [-81.883926, 37.105171],\n              [-81.883961, 37.105208],\n              [-81.88413, 37.105493],\n              [-81.884199, 37.105633],\n              [-81.884222, 37.105753],\n              [-81.884224, 37.105789],\n              [-81.884215, 37.105817],\n              [-81.884227, 37.105838],\n              [-81.884238, 37.105862],\n              [-81.884229, 37.105885],\n              [-81.884248, 37.10625],\n              [-81.88429, 37.106447],\n              [-81.884336, 37.106531],\n              [-81.884399, 37.106608],\n              [-81.884597, 37.106776],\n              [-81.884884, 37.106984],\n              [-81.885011, 37.107056],\n              [-81.885106, 37.107097],\n              [-81.88551, 37.107157],\n              [-81.885639, 37.107195],\n              [-81.885785, 37.107252],\n              [-81.885888, 37.107314],\n              [-81.886121, 37.107505],\n              [-81.886173, 37.10756],\n              [-81.886217, 37.107636],\n              [-81.886234, 37.107704],\n              [-81.886226, 37.107775],\n              [-81.886225, 37.10778],\n              [-81.886214, 37.10788],\n              [-81.88621, 37.108],\n              [-81.886228, 37.108082],\n              [-81.886254, 37.10813],\n              [-81.886327, 37.108185],\n              [-81.886409, 37.108198],\n              [-81.886478, 37.108184],\n              [-81.886512, 37.108164],\n              [-81.88658, 37.108143],\n              [-81.886636, 37.108136],\n              [-81.886709, 37.108156],\n              [-81.886752, 37.10819],\n              [-81.886796, 37.108238],\n              [-81.886839, 37.108317],\n              [-81.886904, 37.108468],\n              [-81.886908, 37.108503],\n              [-81.886915, 37.108564],\n              [-81.886922, 37.108626],\n              [-81.886906, 37.108784],\n              [-81.886911, 37.108829],\n              [-81.886955, 37.108952],\n              [-81.886998, 37.109021],\n              [-81.88705, 37.109082],\n              [-81.887231, 37.109226],\n              [-81.887335, 37.109322],\n              [-81.887441, 37.109447],\n              [-81.887482, 37.109514],\n              [-81.887508, 37.109541],\n              [-81.887542, 37.109603],\n              [-81.887586, 37.109651],\n              [-81.887629, 37.109733],\n              [-81.887739, 37.10986],\n              [-81.887811, 37.109932],\n              [-81.888182, 37.110226],\n              [-81.888242, 37.11026],\n              [-81.888502, 37.110362],\n              [-81.888758, 37.110443],\n              [-81.888801, 37.110464],\n              [-81.888905, 37.110546],\n              [-81.888976, 37.11063],\n              [-81.889017, 37.110696],\n              [-81.88907, 37.110742],\n              [-81.889075, 37.110747],\n              [-81.889104, 37.110772],\n              [-81.889192, 37.110813],\n              [-81.889276, 37.110833],\n              [-81.889465, 37.110833],\n              [-81.889619, 37.110832],\n              [-81.889692, 37.110852],\n              [-81.889757, 37.1109],\n              [-81.8898, 37.110958],\n              [-81.889826, 37.111018],\n              [-81.889851, 37.111097],\n              [-81.889901, 37.111329],\n              [-81.890002, 37.111593],\n              [-81.890049, 37.111668],\n              [-81.890132, 37.111854],\n              [-81.890315, 37.112203],\n              [-81.890442, 37.112359],\n              [-81.890703, 37.112573],\n              [-81.890946, 37.11297],\n              [-81.890972, 37.112998],\n              [-81.891089, 37.113183],\n              [-81.891128, 37.113231],\n              [-81.891054, 37.113376],\n              [-81.891052, 37.113378],\n              [-81.891035, 37.1134],\n              [-81.890939, 37.113485],\n              [-81.890774, 37.113631],\n              [-81.890651, 37.113775],\n              [-81.890588, 37.11393],\n              [-81.890552, 37.114401],\n              [-81.890571, 37.114448],\n              [-81.89057, 37.114501],\n              [-81.89057, 37.114525],\n              [-81.890553, 37.114594],\n              [-81.890528, 37.114656],\n              [-81.890375, 37.114885],\n              [-81.890312, 37.115093],\n              [-81.890279, 37.115306],\n              [-81.890301, 37.115467],\n              [-81.890329, 37.115838],\n              [-81.890373, 37.116058],\n              [-81.890482, 37.116298],\n              [-81.890565, 37.116456],\n              [-81.89072, 37.116606],\n              [-81.89079, 37.116785],\n              [-81.890774, 37.116991],\n              [-81.890837, 37.117098],\n              [-81.890848, 37.117116],\n              [-81.890904, 37.11721],\n              [-81.890939, 37.117306],\n              [-81.891, 37.117409],\n              [-81.891009, 37.11745],\n              [-81.89105, 37.117529],\n              [-81.891057, 37.117553],\n              [-81.891053, 37.117574],\n              [-81.891084, 37.117614],\n              [-81.8911, 37.117636],\n              [-81.89127, 37.118013],\n              [-81.891366, 37.118181],\n              [-81.891514, 37.1185],\n              [-81.891574, 37.118579],\n              [-81.8916, 37.118664],\n              [-81.891909, 37.119185],\n              [-81.892092, 37.119642],\n              [-81.892119, 37.119862],\n              [-81.892107, 37.120023],\n              [-81.89213, 37.120212],\n              [-81.89222, 37.120596],\n              [-81.892257, 37.120703],\n              [-81.892386, 37.120987],\n              [-81.892527, 37.121224],\n              [-81.892596, 37.121313],\n              [-81.892613, 37.121347],\n              [-81.892666, 37.121519],\n              [-81.892618, 37.122814],\n              [-81.892581, 37.122983],\n              [-81.892551, 37.123069],\n              [-81.892539, 37.123127],\n              [-81.892501, 37.123227],\n              [-81.892492, 37.123801],\n              [-81.892519, 37.124048],\n              [-81.892576, 37.124295],\n              [-81.892668, 37.124494],\n              [-81.892767, 37.124652],\n              [-81.89285, 37.124837],\n              [-81.892919, 37.12494],\n              [-81.893023, 37.125119],\n              [-81.89305, 37.125162],\n              [-81.893572, 37.126009],\n              [-81.894875, 37.127411],\n              [-81.895513, 37.128471],\n              [-81.895808, 37.1289],\n              [-81.895938, 37.129202],\n              [-81.896226, 37.129543],\n              [-81.89648, 37.1299],\n              [-81.896562, 37.130296],\n              [-81.896582, 37.130516],\n              [-81.896733, 37.130878],\n              [-81.896932, 37.13145],\n              [-81.897597, 37.132879],\n              [-81.897837, 37.133439],\n              [-81.898111, 37.133852],\n              [-81.898989, 37.134802],\n              [-81.899442, 37.13516],\n              [-81.899846, 37.135462],\n              [-81.900114, 37.135968],\n              [-81.900155, 37.136385],\n              [-81.900152, 37.136521],\n              [-81.900151, 37.136571],\n              [-81.900148, 37.136693],\n              [-81.90012, 37.136726],\n              [-81.899976, 37.137231],\n              [-81.900072, 37.13744],\n              [-81.900394, 37.137786],\n              [-81.900703, 37.138314],\n              [-81.900902, 37.138611],\n              [-81.901451, 37.139067],\n              [-81.901567, 37.139188],\n              [-81.901512, 37.139243],\n              [-81.901512, 37.139331],\n              [-81.901553, 37.139479],\n              [-81.901793, 37.140172],\n              [-81.90169, 37.14043],\n              [-81.90167, 37.140479],\n              [-81.9017, 37.140589],\n              [-81.901525, 37.141012],\n              [-81.90151, 37.141036],\n              [-81.901257, 37.141441],\n              [-81.901256, 37.141515],\n              [-81.901254, 37.141737],\n              [-81.901254, 37.141752],\n              [-81.901251, 37.141761],\n              [-81.901248, 37.141772],\n              [-81.901238, 37.141809],\n              [-81.901229, 37.141843],\n              [-81.901193, 37.141976],\n              [-81.901172, 37.142315],\n              [-81.901173, 37.142367],\n              [-81.901104, 37.142441],\n              [-81.901094, 37.142451],\n              [-81.901091, 37.142553],\n              [-81.900952, 37.14276],\n              [-81.900926, 37.142799],\n              [-81.900902, 37.142861],\n              [-81.900894, 37.142881],\n              [-81.90085, 37.142995],\n              [-81.900727, 37.143223],\n              [-81.900631, 37.143514],\n              [-81.9007, 37.143817],\n              [-81.900706, 37.143844],\n              [-81.900707, 37.14385],\n              [-81.900708, 37.143855],\n              [-81.900711, 37.143869],\n              [-81.900715, 37.143885],\n              [-81.90072, 37.143901],\n              [-81.900731, 37.143934],\n              [-81.900744, 37.143974],\n              [-81.900792, 37.144122],\n              [-81.900805, 37.14432],\n              [-81.900805, 37.144325],\n              [-81.900806, 37.144339],\n              [-81.900822, 37.144582],\n              [-81.900745, 37.144762],\n              [-81.900687, 37.144897],\n              [-81.900641, 37.145005],\n              [-81.900626, 37.145041],\n              [-81.900623, 37.145048],\n              [-81.900606, 37.145088],\n              [-81.900518, 37.145294],\n              [-81.900089, 37.145762],\n              [-81.900011, 37.145828],\n              [-81.899881, 37.14594],\n              [-81.89976, 37.14613],\n              [-81.899533, 37.146291],\n              [-81.899219, 37.146511],\n              [-81.898944, 37.14666],\n              [-81.898924, 37.146662],\n              [-81.898912, 37.146664],\n              [-81.898725, 37.146783],\n              [-81.898565, 37.146977],\n              [-81.898423, 37.147274],\n              [-81.898353, 37.147493],\n              [-81.898358, 37.147517],\n              [-81.898451, 37.14797],\n              [-81.898623, 37.148226],\n              [-81.898604, 37.148274],\n              [-81.898585, 37.14838],\n              [-81.898583, 37.148391],\n              [-81.898582, 37.148412],\n              [-81.898579, 37.148509],\n              [-81.898584, 37.148554],\n              [-81.898593, 37.148627],\n              [-81.898613, 37.148696],\n              [-81.898617, 37.149441],\n              [-81.898617, 37.149484],\n              [-81.898622, 37.149534],\n              [-81.898559, 37.150008],\n              [-81.898567, 37.150138],\n              [-81.898578, 37.150306],\n              [-81.898584, 37.150548],\n              [-81.89854, 37.150781],\n              [-81.898486, 37.150965],\n              [-81.898413, 37.151118],\n              [-81.898217, 37.151389],\n              [-81.89793, 37.151708],\n              [-81.897724, 37.15198],\n              [-81.897581, 37.152107],\n              [-81.897468, 37.15225],\n              [-81.897166, 37.152239],\n              [-81.896797, 37.152097],\n              [-81.896558, 37.151973],\n              [-81.896389, 37.151907],\n              [-81.895999, 37.151757],\n              [-81.895699, 37.151721],\n              [-81.895227, 37.151683],\n              [-81.894867, 37.151574],\n              [-81.894569, 37.151442],\n              [-81.894363, 37.151351],\n              [-81.893873, 37.151134],\n              [-81.893785, 37.151053],\n              [-81.893773, 37.151042],\n              [-81.893769, 37.151038],\n              [-81.893737, 37.151008],\n              [-81.893684, 37.150959],\n              [-81.893099, 37.150416],\n              [-81.892622, 37.150161],\n              [-81.892214, 37.149946],\n              [-81.891844, 37.149797],\n              [-81.891504, 37.149744],\n              [-81.891083, 37.149699],\n              [-81.890772, 37.149655],\n              [-81.890514, 37.14949],\n              [-81.890325, 37.149359],\n              [-81.889935, 37.149233],\n              [-81.889635, 37.149197],\n              [-81.889209, 37.149369],\n              [-81.888607, 37.149886],\n              [-81.888294, 37.150286],\n              [-81.888198, 37.150408],\n              [-81.888107, 37.150412],\n              [-81.888033, 37.150416],\n              [-81.886608, 37.15049],\n              [-81.885664, 37.150856],\n              [-81.885658, 37.150862],\n              [-81.885595, 37.150921],\n              [-81.885524, 37.150947],\n              [-81.882253, 37.152122],\n              [-81.881745, 37.15209],\n              [-81.881467, 37.15211],\n              [-81.881188, 37.152158],\n              [-81.880111, 37.152347],\n              [-81.880094, 37.152345],\n              [-81.880086, 37.152342],\n              [-81.879908, 37.152214],\n              [-81.879696, 37.152061],\n              [-81.879687, 37.152055],\n              [-81.879272, 37.151757],\n              [-81.879257, 37.151746],\n              [-81.879049, 37.151605],\n              [-81.878991, 37.151532],\n              [-81.878924, 37.151434],\n              [-81.878429, 37.151673],\n              [-81.878087, 37.151916],\n              [-81.878081, 37.15192],\n              [-81.878069, 37.151929],\n              [-81.878056, 37.151939],\n              [-81.877899, 37.152057],\n              [-81.877892, 37.152062],\n              [-81.877853, 37.152091],\n              [-81.877669, 37.152217],\n              [-81.877587, 37.152244],\n              [-81.877556, 37.152254],\n              [-81.877549, 37.152256],\n              [-81.877477, 37.152279],\n              [-81.876914, 37.152297],\n              [-81.876729, 37.152311],\n              [-81.876715, 37.152312],\n              [-81.876708, 37.152313],\n              [-81.876562, 37.152324],\n              [-81.87623, 37.15232],\n              [-81.876013, 37.15231],\n              [-81.875848, 37.15234],\n              [-81.875753, 37.152374],\n              [-81.875728, 37.152383],\n              [-81.875696, 37.152394],\n              [-81.875642, 37.152452],\n              [-81.875627, 37.152468],\n              [-81.875619, 37.152476],\n              [-81.875553, 37.152546],\n              [-81.875508, 37.152596],\n              [-81.875496, 37.15261],\n              [-81.875477, 37.152631],\n              [-81.875349, 37.152823],\n              [-81.875327, 37.152855],\n              [-81.875201, 37.153044],\n              [-81.875198, 37.153049],\n              [-81.875152, 37.153118],\n              [-81.875143, 37.153132],\n              [-81.87499, 37.153363],\n              [-81.874985, 37.15337],\n              [-81.874981, 37.153377],\n              [-81.874965, 37.153401],\n              [-81.874942, 37.153435],\n              [-81.874933, 37.153448],\n              [-81.874901, 37.153496],\n              [-81.874846, 37.153578],\n              [-81.874666, 37.153865],\n              [-81.874474, 37.153968],\n              [-81.874292, 37.154031],\n              [-81.874061, 37.154036],\n              [-81.873829, 37.154058],\n              [-81.873649, 37.154032],\n              [-81.873458, 37.15403],\n              [-81.873336, 37.154125],\n              [-81.873213, 37.154302],\n              [-81.8731, 37.154438],\n              [-81.872927, 37.15459],\n              [-81.872875, 37.154678],\n              [-81.872733, 37.154798],\n              [-81.87262, 37.154893],\n              [-81.872589, 37.154906],\n              [-81.872347, 37.155004],\n              [-81.871668, 37.155046],\n              [-81.871608, 37.155081],\n              [-81.871561, 37.155127],\n              [-81.871446, 37.155322],\n              [-81.871442, 37.155328],\n              [-81.87136, 37.155468],\n              [-81.871331, 37.155504],\n              [-81.871279, 37.155575],\n              [-81.871185, 37.155703],\n              [-81.871138, 37.155729],\n              [-81.87067, 37.155989],\n              [-81.870372, 37.156155],\n              [-81.870209, 37.156205],\n              [-81.870007, 37.156267],\n              [-81.869892, 37.156429],\n              [-81.869731, 37.156653],\n              [-81.869396, 37.156858],\n              [-81.868234, 37.157169],\n              [-81.868078, 37.157282],\n              [-81.867881, 37.157424],\n              [-81.867807, 37.157528],\n              [-81.86769, 37.157691],\n              [-81.867255, 37.157714],\n              [-81.867186, 37.157735],\n              [-81.867127, 37.157767],\n              [-81.867087, 37.157801],\n              [-81.867073, 37.157817],\n              [-81.867063, 37.157829],\n              [-81.866925, 37.158046],\n              [-81.866891, 37.158081],\n              [-81.8668, 37.158147],\n              [-81.866752, 37.158202],\n              [-81.866717, 37.158276],\n              [-81.866687, 37.15837],\n              [-81.866659, 37.158425],\n              [-81.866639, 37.158463],\n              [-81.866574, 37.158549],\n              [-81.866428, 37.15866],\n              [-81.866213, 37.158806],\n              [-81.866451, 37.158961],\n              [-81.866703, 37.159125],\n              [-81.86746, 37.159637],\n              [-81.867507, 37.159649],\n              [-81.867675, 37.159752],\n              [-81.867865, 37.159837],\n              [-81.868341, 37.160049],\n              [-81.868466, 37.160087],\n              [-81.868597, 37.16011],\n              [-81.868731, 37.160118],\n              [-81.868937, 37.160106],\n              [-81.869028, 37.160113],\n              [-81.869116, 37.160134],\n              [-81.869181, 37.160162],\n              [-81.869234, 37.160213],\n              [-81.869277, 37.160286],\n              [-81.86936, 37.16055],\n              [-81.869406, 37.160633],\n              [-81.86948, 37.160723],\n              [-81.869542, 37.160778],\n              [-81.86963, 37.160836],\n              [-81.869707, 37.160874],\n              [-81.869811, 37.160911],\n              [-81.869876, 37.160927],\n              [-81.870201, 37.160974],\n              [-81.870281, 37.160998],\n              [-81.87034, 37.161026],\n              [-81.870404, 37.161071],\n              [-81.870456, 37.161125],\n              [-81.870486, 37.161174],\n              [-81.87051, 37.16124],\n              [-81.870542, 37.161455],\n              [-81.87056, 37.1615],\n              [-81.870572, 37.161529],\n              [-81.870619, 37.161597],\n              [-81.870681, 37.161656],\n              [-81.870725, 37.161687],\n              [-81.87089, 37.161777],\n              [-81.870867, 37.161807],\n              [-81.870803, 37.161891],\n              [-81.870767, 37.161938],\n              [-81.870574, 37.162193],\n              [-81.87072, 37.162509],\n              [-81.870889, 37.162647],\n              [-81.87109, 37.162618],\n              [-81.871318, 37.162585],\n              [-81.871377, 37.162576],\n              [-81.871394, 37.16273],\n              [-81.871397, 37.162737],\n              [-81.871414, 37.162778],\n              [-81.871428, 37.162797],\n              [-81.871591, 37.162939],\n              [-81.871749, 37.163055],\n              [-81.871824, 37.163115],\n              [-81.871843, 37.163174],\n              [-81.871853, 37.163204],\n              [-81.871859, 37.163223],\n              [-81.872093, 37.163954],\n              [-81.872149, 37.16413],\n              [-81.872183, 37.164236],\n              [-81.872266, 37.164496],\n              [-81.872302, 37.164569],\n              [-81.872343, 37.164651],\n              [-81.872311, 37.164791],\n              [-81.872185, 37.165193],\n              [-81.871906, 37.165635],\n              [-81.871729, 37.166012],\n              [-81.871605, 37.166221],\n              [-81.871482, 37.166373],\n              [-81.87133, 37.166493],\n              [-81.871198, 37.16658],\n              [-81.871042, 37.166613],\n              [-81.870919, 37.166638],\n              [-81.870848, 37.166653],\n              [-81.870719, 37.166635],\n              [-81.870669, 37.166643],\n              [-81.870617, 37.16667],\n              [-81.8706, 37.166697],\n              [-81.870596, 37.166734],\n              [-81.870619, 37.166794],\n              [-81.870615, 37.166844],\n              [-81.870614, 37.166851],\n              [-81.870591, 37.166896],\n              [-81.870452, 37.167045],\n              [-81.870293, 37.167181],\n              [-81.870037, 37.167401],\n              [-81.869844, 37.167566],\n              [-81.869716, 37.167668],\n              [-81.86936, 37.167781],\n              [-81.868997, 37.167818],\n              [-81.868676, 37.167823],\n              [-81.868435, 37.167813],\n              [-81.868245, 37.167771],\n              [-81.868095, 37.167721],\n              [-81.867964, 37.167728],\n              [-81.867783, 37.167726],\n              [-81.867651, 37.167781],\n              [-81.86761, 37.167861],\n              [-81.867608, 37.168015],\n              [-81.867626, 37.168128],\n              [-81.867633, 37.168281],\n              [-81.867561, 37.16841],\n              [-81.867409, 37.168521],\n              [-81.867207, 37.168584],\n              [-81.867015, 37.168638],\n              [-81.866843, 37.168709],\n              [-81.8665, 37.168779],\n              [-81.866239, 37.168776],\n              [-81.866009, 37.168693],\n              [-81.865761, 37.168489],\n              [-81.865454, 37.168212],\n              [-81.865393, 37.168174],\n              [-81.865377, 37.168164],\n              [-81.86537, 37.16816],\n              [-81.865255, 37.168089],\n              [-81.865118, 37.168058],\n              [-81.865109, 37.168056],\n              [-81.864893, 37.168086],\n              [-81.864806, 37.168135],\n              [-81.864792, 37.168143],\n              [-81.86464, 37.168229],\n              [-81.864168, 37.168511],\n              [-81.864133, 37.168522],\n              [-81.864084, 37.168559],\n              [-81.864005, 37.168663],\n              [-81.863829, 37.16906],\n              [-81.86382, 37.169061],\n              [-81.86349, 37.169097],\n              [-81.863198, 37.169127],\n              [-81.862916, 37.169148],\n              [-81.862634, 37.169137],\n              [-81.862354, 37.169167],\n              [-81.862057, 37.169406],\n              [-81.861863, 37.169582],\n              [-81.86157, 37.169686],\n              [-81.861247, 37.169802],\n              [-81.860884, 37.169822],\n              [-81.860375, 37.17015],\n              [-81.860261, 37.170258],\n              [-81.860133, 37.17038],\n              [-81.85983, 37.170619],\n              [-81.859736, 37.170707],\n              [-81.859686, 37.170753],\n              [-81.859625, 37.170809],\n              [-81.859613, 37.170831],\n              [-81.859498, 37.171041],\n              [-81.859396, 37.171243],\n              [-81.859359, 37.171432],\n              [-81.859341, 37.171526],\n              [-81.859329, 37.171541],\n              [-81.859262, 37.171623],\n              [-81.859237, 37.171821],\n              [-81.859184, 37.171966],\n              [-81.859113, 37.172038],\n              [-81.85909, 37.172191],\n              [-81.859066, 37.172401],\n              [-81.85881, 37.172689],\n              [-81.858494, 37.172953],\n              [-81.858239, 37.173201],\n              [-81.858054, 37.173449],\n              [-81.85797, 37.173674],\n              [-81.857855, 37.173947],\n              [-81.857701, 37.174123],\n              [-81.857507, 37.174307],\n              [-81.857314, 37.174451],\n              [-81.856887, 37.174546],\n              [-81.856568, 37.17452],\n              [-81.856473, 37.174508],\n              [-81.856465, 37.174507],\n              [-81.856452, 37.174505],\n              [-81.856329, 37.17449],\n              [-81.856025, 37.174592],\n              [-81.855761, 37.174743],\n              [-81.855367, 37.174869],\n              [-81.854944, 37.174897],\n              [-81.854602, 37.174942],\n              [-81.854398, 37.174999],\n              [-81.854391, 37.175001],\n              [-81.854238, 37.175043],\n              [-81.854101, 37.174995],\n              [-81.854095, 37.174993],\n              [-81.853859, 37.174911],\n              [-81.853508, 37.174867],\n              [-81.852955, 37.174862],\n              [-81.852726, 37.174738],\n              [-81.85252, 37.174422],\n              [-81.852202, 37.174162],\n              [-81.851582, 37.17401],\n              [-81.851043, 37.173771],\n              [-81.850501, 37.173726],\n              [-81.850121, 37.173601],\n              [-81.849853, 37.173372],\n              [-81.849604, 37.173241],\n              [-81.849213, 37.173173],\n              [-81.848923, 37.173137],\n              [-81.848703, 37.173063],\n              [-81.848544, 37.172908],\n              [-81.848405, 37.172834],\n              [-81.848204, 37.172832],\n              [-81.847941, 37.17295],\n              [-81.847657, 37.173093],\n              [-81.847496, 37.173095],\n              [-81.847454, 37.173095],\n              [-81.847247, 37.173206],\n              [-81.847125, 37.173213],\n              [-81.845621, 37.17329],\n              [-81.84557, 37.173293],\n              [-81.845558, 37.173293],\n              [-81.845551, 37.173294],\n              [-81.845473, 37.173298],\n              [-81.84538, 37.173322],\n              [-81.845364, 37.173326],\n              [-81.84535, 37.17333],\n              [-81.845332, 37.173335],\n              [-81.845318, 37.173339],\n              [-81.8453, 37.173344],\n              [-81.845271, 37.173352],\n              [-81.84525, 37.173358],\n              [-81.845099, 37.173399],\n              [-81.844947, 37.17347],\n              [-81.844584, 37.17358],\n              [-81.844343, 37.173545],\n              [-81.844001, 37.17355],\n              [-81.843828, 37.17389],\n              [-81.843806, 37.173903],\n              [-81.843775, 37.173922],\n              [-81.843714, 37.173972],\n              [-81.843641, 37.174044],\n              [-81.843519, 37.174192],\n              [-81.843459, 37.174288],\n              [-81.843446, 37.174308],\n              [-81.843323, 37.174578],\n              [-81.843223, 37.174756],\n              [-81.843011, 37.175071],\n              [-81.842744, 37.175241],\n              [-81.842599, 37.175333],\n              [-81.842246, 37.175557],\n              [-81.842165, 37.175613],\n              [-81.842106, 37.175655],\n              [-81.84206, 37.175714],\n              [-81.842035, 37.175765],\n              [-81.841964, 37.175956],\n              [-81.841932, 37.176025],\n              [-81.841928, 37.176032],\n              [-81.841875, 37.176127],\n              [-81.84179, 37.176288],\n              [-81.841566, 37.176511],\n              [-81.841558, 37.176512],\n              [-81.841537, 37.176517],\n              [-81.841255, 37.176573],\n              [-81.840922, 37.17652],\n              [-81.840651, 37.176477],\n              [-81.840604, 37.17647],\n              [-81.840331, 37.176589],\n              [-81.840152, 37.176667],\n              [-81.839677, 37.176697],\n              [-81.839639, 37.176735],\n              [-81.839617, 37.17678],\n              [-81.839612, 37.176831],\n              [-81.839617, 37.176858],\n              [-81.839639, 37.176977],\n              [-81.839648, 37.177086],\n              [-81.839638, 37.17715],\n              [-81.839617, 37.177204],\n              [-81.839486, 37.17738],\n              [-81.839482, 37.177385],\n              [-81.839352, 37.177559],\n              [-81.839342, 37.177569],\n              [-81.83917, 37.17774],\n              [-81.839008, 37.177902],\n              [-81.83866, 37.178083],\n              [-81.838436, 37.1782],\n              [-81.837406, 37.177994],\n              [-81.836433, 37.177559],\n              [-81.835993, 37.177549],\n              [-81.83597, 37.177665],\n              [-81.835939, 37.177881],\n              [-81.835937, 37.177898],\n              [-81.835901, 37.178022],\n              [-81.835878, 37.178084],\n              [-81.835782, 37.178405],\n              [-81.835747, 37.178521],\n              [-81.835461, 37.17875],\n              [-81.834836, 37.178841],\n              [-81.834488, 37.179002],\n              [-81.833686, 37.179999],\n              [-81.833659, 37.180032],\n              [-81.833572, 37.180064],\n              [-81.833475, 37.1801],\n              [-81.833287, 37.18017],\n              [-81.833149, 37.180161],\n              [-81.832995, 37.180152],\n              [-81.832915, 37.180147],\n              [-81.832299, 37.179869],\n              [-81.83223, 37.179833],\n              [-81.831712, 37.179952],\n              [-81.831376, 37.180068],\n              [-81.831226, 37.180198],\n              [-81.83096, 37.180395],\n              [-81.830685, 37.180566],\n              [-81.830414, 37.180649],\n              [-81.830331, 37.180625],\n              [-81.830173, 37.18061],\n              [-81.829996, 37.180514],\n              [-81.829966, 37.180519],\n              [-81.829423, 37.180606],\n              [-81.829194, 37.180537],\n              [-81.828336, 37.180789],\n              [-81.827535, 37.180743],\n              [-81.826648, 37.1804],\n              [-81.825418, 37.180254],\n              [-81.825103, 37.180217],\n              [-81.82453, 37.179896],\n              [-81.823586, 37.179645],\n              [-81.822842, 37.179027],\n              [-81.822241, 37.178821],\n              [-81.821661, 37.178804],\n              [-81.821441, 37.178797],\n              [-81.821441, 37.178865],\n              [-81.821427, 37.178877],\n              [-81.821313, 37.178974],\n              [-81.821254, 37.179025],\n              [-81.821245, 37.179032],\n              [-81.821217, 37.179056],\n              [-81.82061, 37.179326],\n              [-81.820345, 37.179404],\n              [-81.820335, 37.179409],\n              [-81.82028, 37.179433],\n              [-81.820274, 37.179436],\n              [-81.820258, 37.179443],\n              [-81.819812, 37.179641],\n              [-81.819506, 37.179771],\n              [-81.819499, 37.179774],\n              [-81.819271, 37.179941],\n              [-81.819157, 37.180128],\n              [-81.819145, 37.180148],\n              [-81.819075, 37.180263],\n              [-81.818932, 37.180382],\n              [-81.818534, 37.180506],\n              [-81.818401, 37.18053],\n              [-81.818368, 37.180536],\n              [-81.81836, 37.180537],\n              [-81.818349, 37.180539],\n              [-81.81829, 37.18055],\n              [-81.818198, 37.180567],\n              [-81.818063, 37.180592],\n              [-81.817867, 37.180657],\n              [-81.817738, 37.180722],\n              [-81.817728, 37.180727],\n              [-81.817609, 37.18094],\n              [-81.816973, 37.181211],\n              [-81.816867, 37.181278],\n              [-81.816822, 37.181311],\n              [-81.816804, 37.181324],\n              [-81.816799, 37.181328],\n              [-81.816768, 37.181351],\n              [-81.816675, 37.181433],\n              [-81.816608, 37.181508],\n              [-81.816566, 37.181555],\n              [-81.816484, 37.181639],\n              [-81.816451, 37.181683],\n              [-81.816268, 37.181958],\n              [-81.816097, 37.18218],\n              [-81.815988, 37.182294],\n              [-81.815872, 37.182405],\n              [-81.815623, 37.182571],\n              [-81.815592, 37.182591],\n              [-81.815434, 37.182696],\n              [-81.814602, 37.182891],\n              [-81.814496, 37.182916],\n              [-81.814385, 37.182942],\n              [-81.81435, 37.18295],\n              [-81.81415, 37.183098],\n              [-81.814042, 37.183195],\n              [-81.814019, 37.183215],\n              [-81.813977, 37.183261],\n              [-81.813929, 37.183327],\n              [-81.813716, 37.183675],\n              [-81.8134, 37.184148],\n              [-81.813336, 37.184237],\n              [-81.813295, 37.184284],\n              [-81.813233, 37.184316],\n              [-81.812893, 37.184491],\n              [-81.812864, 37.184504],\n              [-81.812778, 37.184541],\n              [-81.812704, 37.184589],\n              [-81.812623, 37.184661],\n              [-81.812544, 37.184753],\n              [-81.812424, 37.184928],\n              [-81.812396, 37.184969],\n              [-81.81237, 37.185015],\n              [-81.812349, 37.185054],\n              [-81.812333, 37.185083],\n              [-81.812293, 37.185116],\n              [-81.812004, 37.185349],\n              [-81.811862, 37.18538],\n              [-81.811712, 37.185346],\n              [-81.811494, 37.185166],\n              [-81.811372, 37.185094],\n              [-81.811315, 37.18506],\n              [-81.811025, 37.184843],\n              [-81.810826, 37.184744],\n              [-81.81007, 37.184935],\n              [-81.809941, 37.184989],\n              [-81.809907, 37.185015],\n              [-81.809791, 37.185055],\n              [-81.809693, 37.185269],\n              [-81.808735, 37.18537],\n              [-81.807648, 37.185393],\n              [-81.806586, 37.184792],\n              [-81.806526, 37.184758],\n              [-81.806475, 37.184729],\n              [-81.806397, 37.184623],\n              [-81.806353, 37.184524],\n              [-81.806257, 37.184309],\n              [-81.806189, 37.184157],\n              [-81.80576, 37.18379],\n              [-81.805747, 37.183795],\n              [-81.805393, 37.183927],\n              [-81.80504, 37.184029],\n              [-81.804696, 37.18413],\n              [-81.804342, 37.184312],\n              [-81.804139, 37.184415],\n              [-81.803956, 37.184526],\n              [-81.803783, 37.184654],\n              [-81.80368, 37.184822],\n              [-81.803647, 37.184983],\n              [-81.803642, 37.185282],\n              [-81.803638, 37.185507],\n              [-81.803566, 37.185628],\n              [-81.803282, 37.185762],\n              [-81.802656, 37.185933],\n              [-81.802233, 37.185953],\n              [-81.801862, 37.185941],\n              [-81.801512, 37.185817],\n              [-81.801232, 37.185645],\n              [-81.801013, 37.185513],\n              [-81.800766, 37.185309],\n              [-81.800436, 37.185153],\n              [-81.799994, 37.18514],\n              [-81.799692, 37.185202],\n              [-81.799568, 37.185378],\n              [-81.799434, 37.185586],\n              [-81.799128, 37.185874],\n              [-81.798785, 37.185927],\n              [-81.798562, 37.185965],\n              [-81.79822, 37.186026],\n              [-81.797848, 37.186038],\n              [-81.797566, 37.186084],\n              [-81.797414, 37.186155],\n              [-81.797197, 37.186508],\n              [-81.796804, 37.187166],\n              [-81.796384, 37.187621],\n              [-81.796005, 37.188069],\n              [-81.795535, 37.188517],\n              [-81.79515, 37.188658],\n              [-81.794867, 37.188776],\n              [-81.794795, 37.188864],\n              [-81.794752, 37.189041],\n              [-81.794679, 37.189202],\n              [-81.794465, 37.189353],\n              [-81.79405, 37.189526],\n              [-81.793986, 37.189554],\n              [-81.793916, 37.18955],\n              [-81.793597, 37.189673],\n              [-81.792337, 37.190108],\n              [-81.791947, 37.190109],\n              [-81.791726, 37.190109],\n              [-81.791468, 37.189985],\n              [-81.791469, 37.189959],\n              [-81.79147, 37.189885],\n              [-81.791475, 37.189613],\n              [-81.79144, 37.189322],\n              [-81.791321, 37.189224],\n              [-81.791091, 37.189182],\n              [-81.790809, 37.189163],\n              [-81.790537, 37.189208],\n              [-81.790335, 37.189263],\n              [-81.790193, 37.189342],\n              [-81.790091, 37.189454],\n              [-81.789884, 37.189783],\n              [-81.789702, 37.189878],\n              [-81.789428, 37.18998],\n              [-81.78914, 37.190065],\n              [-81.789044, 37.190094],\n              [-81.788903, 37.190136],\n              [-81.788589, 37.190286],\n              [-81.788314, 37.190485],\n              [-81.78813, 37.190669],\n              [-81.787936, 37.19078],\n              [-81.787684, 37.190842],\n              [-81.787442, 37.19088],\n              [-81.787289, 37.190983],\n              [-81.787225, 37.191224],\n              [-81.787188, 37.191619],\n              [-81.787107, 37.191675],\n              [-81.78702, 37.19172],\n              [-81.786953, 37.191755],\n              [-81.786863, 37.191802],\n              [-81.78669, 37.191929],\n              [-81.786344, 37.192216],\n              [-81.786138, 37.192456],\n              [-81.785986, 37.192543],\n              [-81.785692, 37.192686],\n              [-81.785116, 37.192898],\n              [-81.784851, 37.193088],\n              [-81.784798, 37.193142],\n              [-81.784714, 37.193226],\n              [-81.784679, 37.193262],\n              [-81.78443, 37.193583],\n              [-81.784411, 37.193633],\n              [-81.784409, 37.193638],\n              [-81.784404, 37.193652],\n              [-81.784351, 37.193789],\n              [-81.784349, 37.193794],\n              [-81.784346, 37.193801],\n              [-81.784341, 37.193814],\n              [-81.784332, 37.193838],\n              [-81.784328, 37.193849],\n              [-81.784263, 37.194019],\n              [-81.78423, 37.194106],\n              [-81.784224, 37.194149],\n              [-81.784216, 37.194209],\n              [-81.784128, 37.194846],\n              [-81.784136, 37.194971],\n              [-81.78398, 37.195291],\n              [-81.783896, 37.19549],\n              [-81.783749, 37.19579],\n              [-81.783678, 37.195958],\n              [-81.783669, 37.195994],\n              [-81.783654, 37.196122],\n              [-81.783663, 37.196214],\n              [-81.783686, 37.19629],\n              [-81.783732, 37.196387],\n              [-81.783927, 37.196669],\n              [-81.783966, 37.196737],\n              [-81.784114, 37.196911],\n              [-81.784143, 37.196945],\n              [-81.784148, 37.196953],\n              [-81.784327, 37.197255],\n              [-81.784365, 37.197475],\n              [-81.784402, 37.197685],\n              [-81.784311, 37.197879],\n              [-81.784285, 37.197933],\n              [-81.784053, 37.198109],\n              [-81.783788, 37.198283],\n              [-81.783524, 37.198434],\n              [-81.783503, 37.198444],\n              [-81.783247, 37.198568],\n              [-81.78323, 37.198576],\n              [-81.782947, 37.198678],\n              [-81.782514, 37.198714],\n              [-81.781972, 37.198588],\n              [-81.781712, 37.198512],\n              [-81.781463, 37.198413],\n              [-81.781352, 37.198404],\n              [-81.781231, 37.198435],\n              [-81.780965, 37.198682],\n              [-81.780621, 37.198855],\n              [-81.780257, 37.199024],\n              [-81.780246, 37.199029],\n              [-81.779983, 37.199097],\n              [-81.779822, 37.199138],\n              [-81.779684, 37.199173],\n              [-81.779519, 37.199215],\n              [-81.779406, 37.199225],\n              [-81.779116, 37.199251],\n              [-81.778923, 37.199184],\n              [-81.778885, 37.199183],\n              [-81.778853, 37.199182],\n              [-81.778552, 37.199174],\n              [-81.778504, 37.199173],\n              [-81.778252, 37.199186],\n              [-81.7781, 37.199306],\n              [-81.778048, 37.199343],\n              [-81.77793, 37.199429],\n              [-81.777835, 37.199497],\n              [-81.77758, 37.199696],\n              [-81.777372, 37.200081],\n              [-81.777177, 37.200361],\n              [-81.776978, 37.200502],\n              [-81.77677, 37.200648],\n              [-81.77675, 37.200663],\n              [-81.776454, 37.200886],\n              [-81.776185, 37.201287],\n              [-81.775925, 37.201753],\n              [-81.775675, 37.202283],\n              [-81.77547, 37.202495],\n              [-81.775138, 37.202839],\n              [-81.775068, 37.202911],\n              [-81.774822, 37.202894],\n              [-81.774732, 37.202888],\n              [-81.774608, 37.202868],\n              [-81.774532, 37.202874],\n              [-81.774485, 37.202889],\n              [-81.774442, 37.202912],\n              [-81.774386, 37.202966],\n              [-81.774365, 37.203002],\n              [-81.774355, 37.203068],\n              [-81.774365, 37.203138],\n              [-81.774391, 37.203206],\n              [-81.774435, 37.203269],\n              [-81.774414, 37.203293],\n              [-81.774303, 37.203423],\n              [-81.773998, 37.203846],\n              [-81.773956, 37.203894],\n              [-81.773877, 37.203984],\n              [-81.773693, 37.204038],\n              [-81.773509, 37.204051],\n              [-81.773363, 37.203994],\n              [-81.773241, 37.20385],\n              [-81.773142, 37.203731],\n              [-81.773118, 37.203702],\n              [-81.772948, 37.203703],\n              [-81.77212, 37.203497],\n              [-81.771313, 37.203048],\n              [-81.77109, 37.202924],\n              [-81.770262, 37.202718],\n              [-81.769632, 37.202717],\n              [-81.768631, 37.202877],\n              [-81.768273, 37.202896],\n              [-81.768202, 37.2029],\n              [-81.768132, 37.202864],\n              [-81.767573, 37.202579],\n              [-81.766145, 37.201274],\n              [-81.765949, 37.201172],\n              [-81.765942, 37.201168],\n              [-81.765573, 37.200976],\n              [-81.764714, 37.200792],\n              [-81.764027, 37.200769],\n              [-81.763878, 37.200833],\n              [-81.763295, 37.201083],\n              [-81.761957, 37.201884],\n              [-81.761737, 37.202072],\n              [-81.761637, 37.20218],\n              [-81.761552, 37.202297],\n              [-81.761486, 37.202416],\n              [-81.761446, 37.202514],\n              [-81.761411, 37.20264],\n              [-81.761393, 37.202768],\n              [-81.761375, 37.203032],\n              [-81.761378, 37.203245],\n              [-81.761389, 37.203425],\n              [-81.761386, 37.203481],\n              [-81.761386, 37.203486],\n              [-81.761383, 37.203553],\n              [-81.761373, 37.203598],\n              [-81.761114, 37.204028],\n              [-81.760968, 37.204266],\n              [-81.760905, 37.204367],\n              [-81.760901, 37.204371],\n              [-81.760888, 37.204395],\n              [-81.760828, 37.204444],\n              [-81.760067, 37.205061],\n              [-81.759, 37.205614],\n              [-81.75896, 37.205634],\n              [-81.757813, 37.205987],\n              [-81.757682, 37.206131],\n              [-81.757631, 37.206204],\n              [-81.757587, 37.206289],\n              [-81.75739, 37.206666],\n              [-81.75735, 37.206738],\n              [-81.75714, 37.207122],\n              [-81.757035, 37.20734],\n              [-81.756929, 37.207612],\n              [-81.756922, 37.207632],\n              [-81.757012, 37.207726],\n              [-81.757289, 37.208015],\n              [-81.757417, 37.20817],\n              [-81.757456, 37.208259],\n              [-81.757442, 37.20846],\n              [-81.757479, 37.208622],\n              [-81.757585, 37.208808],\n              [-81.757685, 37.20889],\n              [-81.757733, 37.209068],\n              [-81.75772, 37.209229],\n              [-81.757686, 37.209471],\n              [-81.757642, 37.209688],\n              [-81.757668, 37.209914],\n              [-81.757642, 37.209985],\n              [-81.757606, 37.21008],\n              [-81.757604, 37.210086],\n              [-81.757588, 37.210131],\n              [-81.757608, 37.210179],\n              [-81.757626, 37.210273],\n              [-81.757631, 37.210299],\n              [-81.757622, 37.210345],\n              [-81.757577, 37.210472],\n              [-81.757282, 37.210859],\n              [-81.756876, 37.211291],\n              [-81.7567, 37.211478],\n              [-81.756612, 37.211571],\n              [-81.756555, 37.211602],\n              [-81.756532, 37.21161],\n              [-81.756494, 37.211711],\n              [-81.756472, 37.211768],\n              [-81.756301, 37.212214],\n              [-81.756204, 37.212587],\n              [-81.756063, 37.213014],\n              [-81.755754, 37.21343],\n              [-81.755636, 37.214387],\n              [-81.755486, 37.214777],\n              [-81.755526, 37.214824],\n              [-81.755539, 37.21484],\n              [-81.755603, 37.214917],\n              [-81.755607, 37.214923],\n              [-81.755629, 37.214961],\n              [-81.755648, 37.214994],\n              [-81.755693, 37.215134],\n              [-81.75572, 37.21524],\n              [-81.755731, 37.215285],\n              [-81.755745, 37.21535],\n              [-81.75575, 37.215366],\n              [-81.755851, 37.215671],\n              [-81.755989, 37.216025],\n              [-81.75602, 37.216114],\n              [-81.755834, 37.216375],\n              [-81.755831, 37.21666],\n              [-81.755831, 37.216674],\n              [-81.755877, 37.217236],\n              [-81.75587, 37.217647],\n              [-81.755849, 37.217701],\n              [-81.755765, 37.217918],\n              [-81.755561, 37.218125],\n              [-81.755504, 37.218193],\n              [-81.755499, 37.218199],\n              [-81.755495, 37.218204],\n              [-81.755387, 37.218334],\n              [-81.755382, 37.218357],\n              [-81.755377, 37.218378],\n              [-81.755376, 37.218383],\n              [-81.755372, 37.218397],\n              [-81.755343, 37.218524],\n              [-81.755354, 37.219035],\n              [-81.755354, 37.21908],\n              [-81.755356, 37.219236],\n              [-81.755357, 37.21943],\n              [-81.755304, 37.219566],\n              [-81.754707, 37.219899],\n              [-81.754359, 37.220256],\n              [-81.754185, 37.220465],\n              [-81.754132, 37.220496],\n              [-81.754106, 37.220511],\n              [-81.754099, 37.220515],\n              [-81.753978, 37.220585],\n              [-81.753824, 37.220584],\n              [-81.753468, 37.2206],\n              [-81.753384, 37.220604],\n              [-81.753375, 37.220606],\n              [-81.753183, 37.220666],\n              [-81.752989, 37.220825],\n              [-81.752787, 37.220847],\n              [-81.752628, 37.220813],\n              [-81.752489, 37.220691],\n              [-81.75223, 37.220567],\n              [-81.75198, 37.220485],\n              [-81.751698, 37.22053],\n              [-81.751476, 37.220593],\n              [-81.751163, 37.22071],\n              [-81.7509, 37.220788],\n              [-81.750497, 37.220816],\n              [-81.750195, 37.220821],\n              [-81.74984, 37.220993],\n              [-81.749535, 37.221218],\n              [-81.749303, 37.221451],\n              [-81.749291, 37.221465],\n              [-81.749035, 37.22177],\n              [-81.748881, 37.222067],\n              [-81.748727, 37.222265],\n              [-81.748533, 37.222427],\n              [-81.748252, 37.22258],\n              [-81.748208, 37.222648],\n              [-81.748138, 37.222778],\n              [-81.748098, 37.222905],\n              [-81.74763, 37.22327],\n              [-81.747657, 37.223475],\n              [-81.747338, 37.223574],\n              [-81.747198, 37.223617],\n              [-81.746477, 37.22384],\n              [-81.745439, 37.223922],\n              [-81.744719, 37.223983],\n              [-81.744566, 37.223981],\n              [-81.744544, 37.223989],\n              [-81.744534, 37.223992],\n              [-81.744523, 37.223996],\n              [-81.744367, 37.224051],\n              [-81.744324, 37.224066],\n              [-81.74424, 37.224148],\n              [-81.744035, 37.224349],\n              [-81.74403, 37.224354],\n              [-81.743714, 37.224689],\n              [-81.743319, 37.224991],\n              [-81.742971, 37.225114],\n              [-81.742432, 37.225348],\n              [-81.742386, 37.225368],\n              [-81.742368, 37.225376],\n              [-81.742353, 37.225382],\n              [-81.742217, 37.225441],\n              [-81.742089, 37.225497],\n              [-81.741749, 37.225678],\n              [-81.74171, 37.225699],\n              [-81.741537, 37.225791],\n              [-81.741507, 37.225807],\n              [-81.741312, 37.225915],\n              [-81.741229, 37.226095],\n              [-81.741211, 37.226305],\n              [-81.74121, 37.226315],\n              [-81.741209, 37.22633],\n              [-81.741207, 37.226353],\n              [-81.741205, 37.226372],\n              [-81.741173, 37.226744],\n              [-81.740995, 37.226956],\n              [-81.740672, 37.227209],\n              [-81.740677, 37.227385],\n              [-81.740677, 37.227397],\n              [-81.740678, 37.227422],\n              [-81.74068, 37.227476],\n              [-81.74068, 37.227483],\n              [-81.740723, 37.227948],\n              [-81.740724, 37.227953],\n              [-81.740676, 37.228386],\n              [-81.740637, 37.228749],\n              [-81.740634, 37.228777],\n              [-81.740633, 37.228787],\n              [-81.740632, 37.228792],\n              [-81.740463, 37.229121],\n              [-81.740359, 37.229371],\n              [-81.740357, 37.229377],\n              [-81.740353, 37.229387],\n              [-81.740341, 37.229415],\n              [-81.74033, 37.229459],\n              [-81.740329, 37.229465],\n              [-81.740328, 37.22947],\n              [-81.740325, 37.229482],\n              [-81.740323, 37.229489],\n              [-81.740319, 37.229505],\n              [-81.740279, 37.229671],\n              [-81.740329, 37.229703],\n              [-81.740376, 37.229748],\n              [-81.740396, 37.229767],\n              [-81.740412, 37.229783],\n              [-81.740417, 37.229786],\n              [-81.740589, 37.229899],\n              [-81.740824, 37.230053],\n              [-81.741356, 37.230384],\n              [-81.741575, 37.23052],\n              [-81.742314, 37.231034],\n              [-81.742455, 37.23117],\n              [-81.742409, 37.231326],\n              [-81.742416, 37.231358],\n              [-81.742427, 37.231406],\n              [-81.742431, 37.231424],\n              [-81.742475, 37.231542],\n              [-81.742535, 37.231656],\n              [-81.742668, 37.231842],\n              [-81.742679, 37.231878],\n              [-81.742699, 37.231916],\n              [-81.742774, 37.232058],\n              [-81.742683, 37.232706],\n              [-81.742568, 37.232934],\n              [-81.742545, 37.233001],\n              [-81.742522, 37.233066],\n              [-81.742434, 37.233146],\n              [-81.74239, 37.23321],\n              [-81.742364, 37.23328],\n              [-81.742358, 37.23335],\n              [-81.742368, 37.233455],\n              [-81.742396, 37.233558],\n              [-81.742447, 37.233668],\n              [-81.742473, 37.233763],\n              [-81.74248, 37.233873],\n              [-81.742475, 37.233938],\n              [-81.742466, 37.23404],\n              [-81.742444, 37.234165],\n              [-81.742443, 37.234172],\n              [-81.742432, 37.234207],\n              [-81.742339, 37.234466],\n              [-81.742269, 37.234565],\n              [-81.74224, 37.234606],\n              [-81.742234, 37.234615],\n              [-81.742158, 37.234612],\n              [-81.741833, 37.234802],\n              [-81.741498, 37.235001],\n              [-81.74107, 37.2354],\n              [-81.740683, 37.235727],\n              [-81.740578, 37.236],\n              [-81.740593, 37.236387],\n              [-81.7407, 37.23671],\n              [-81.740737, 37.237041],\n              [-81.740673, 37.23729],\n              [-81.740539, 37.237491],\n              [-81.740244, 37.237698],\n              [-81.740127, 37.237759],\n              [-81.740287, 37.23827],\n              [-81.740456, 37.238514],\n              [-81.740604, 37.238708],\n              [-81.740802, 37.239033],\n              [-81.74093, 37.239227],\n              [-81.740956, 37.239371],\n              [-81.740957, 37.239379],\n              [-81.740977, 37.239486],\n              [-81.74097, 37.239729],\n              [-81.74095, 37.239779],\n              [-81.740901, 37.23992],\n              [-81.740788, 37.240097],\n              [-81.740695, 37.240297],\n              [-81.740631, 37.240514],\n              [-81.740699, 37.240724],\n              [-81.740815, 37.24108],\n              [-81.740982, 37.241428],\n              [-81.74109, 37.241655],\n              [-81.741368, 37.241907],\n              [-81.742071, 37.242026],\n              [-81.742864, 37.242179],\n              [-81.743427, 37.242272],\n              [-81.743808, 37.242372],\n              [-81.744007, 37.242535],\n              [-81.744235, 37.242828],\n              [-81.744342, 37.243143],\n              [-81.74438, 37.243337],\n              [-81.744387, 37.243554],\n              [-81.744343, 37.243796],\n              [-81.744294, 37.244187],\n              [-81.744219, 37.24428],\n              [-81.744122, 37.244422],\n              [-81.744038, 37.244658],\n              [-81.744023, 37.244743],\n              [-81.743962, 37.245293],\n              [-81.743953, 37.245324],\n              [-81.743921, 37.245446],\n              [-81.743902, 37.245492],\n              [-81.743869, 37.245569],\n              [-81.743834, 37.245633],\n              [-81.743806, 37.245677],\n              [-81.743803, 37.245682],\n              [-81.743799, 37.245687],\n              [-81.743795, 37.245693],\n              [-81.74379, 37.2457],\n              [-81.743753, 37.245755],\n              [-81.743567, 37.245959],\n              [-81.743578, 37.24749],\n              [-81.743662, 37.247569],\n              [-81.743674, 37.247584],\n              [-81.743703, 37.247623],\n              [-81.743693, 37.247708],\n              [-81.74362, 37.247932],\n              [-81.743408, 37.248434],\n              [-81.743325, 37.248673],\n              [-81.743277, 37.248841],\n              [-81.743248, 37.248996],\n              [-81.743234, 37.249172],\n              [-81.74323, 37.249392],\n              [-81.743213, 37.249524],\n              [-81.743182, 37.249664],\n              [-81.743146, 37.249757],\n              [-81.743142, 37.249768],\n              [-81.743128, 37.249791],\n              [-81.743083, 37.249867],\n              [-81.743008, 37.249957],\n              [-81.742967, 37.249995],\n              [-81.742958, 37.250004],\n              [-81.742903, 37.250056],\n              [-81.742773, 37.250153],\n              [-81.742756, 37.250165],\n              [-81.742681, 37.250221],\n              [-81.742647, 37.250242],\n              [-81.742596, 37.250273],\n              [-81.742519, 37.250368],\n              [-81.742242, 37.250853],\n              [-81.742133, 37.25099],\n              [-81.742041, 37.251135],\n              [-81.741993, 37.251225],\n              [-81.741958, 37.251344],\n              [-81.741913, 37.251543],\n              [-81.741888, 37.251704],\n              [-81.741883, 37.251721],\n              [-81.741812, 37.25197],\n              [-81.741775, 37.252078],\n              [-81.741701, 37.252295],\n              [-81.741625, 37.252517],\n              [-81.741538, 37.25273],\n              [-81.741461, 37.252872],\n              [-81.741366, 37.253008],\n              [-81.741337, 37.253042],\n              [-81.741256, 37.253135],\n              [-81.741207, 37.253183],\n              [-81.741116, 37.253348],\n              [-81.741043, 37.253518],\n              [-81.741019, 37.253585],\n              [-81.741016, 37.253593],\n              [-81.740946, 37.253792],\n              [-81.740905, 37.253966],\n              [-81.740881, 37.254142],\n              [-81.740879, 37.254231],\n              [-81.740901, 37.254324],\n              [-81.740944, 37.254416],\n              [-81.74095, 37.25443],\n              [-81.740965, 37.254451],\n              [-81.741009, 37.254511],\n              [-81.741067, 37.254571],\n              [-81.741177, 37.254654],\n              [-81.741315, 37.254739],\n              [-81.741403, 37.254784],\n              [-81.741596, 37.254857],\n              [-81.741651, 37.254867],\n              [-81.741687, 37.254874],\n              [-81.74175, 37.254885],\n              [-81.74215, 37.254923],\n              [-81.742325, 37.254952],\n              [-81.742495, 37.254993],\n              [-81.74258, 37.255025],\n              [-81.742705, 37.25509],\n              [-81.742819, 37.255166],\n              [-81.742922, 37.255253],\n              [-81.743012, 37.25535],\n              [-81.74311, 37.255477],\n              [-81.743228, 37.255594],\n              [-81.743307, 37.255655],\n              [-81.743341, 37.255681],\n              [-81.743465, 37.255756],\n              [-81.743566, 37.255808],\n              [-81.743647, 37.255864],\n              [-81.743738, 37.255942],\n              [-81.743816, 37.25603],\n              [-81.743878, 37.256126],\n              [-81.743925, 37.256228],\n              [-81.743956, 37.256334],\n              [-81.743931, 37.25647],\n              [-81.743915, 37.256517],\n              [-81.743892, 37.256582],\n              [-81.743837, 37.256689],\n              [-81.743716, 37.25686],\n              [-81.743666, 37.256959],\n              [-81.743638, 37.257045],\n              [-81.743632, 37.257063],\n              [-81.743626, 37.257112],\n              [-81.74363, 37.257252],\n              [-81.743637, 37.257304],\n              [-81.743646, 37.257363],\n              [-81.743683, 37.2575],\n              [-81.743753, 37.257671],\n              [-81.743787, 37.257719],\n              [-81.743841, 37.257771],\n              [-81.743908, 37.257814],\n              [-81.743984, 37.257845],\n              [-81.744049, 37.25786],\n              [-81.744413, 37.257855],\n              [-81.744538, 37.257874],\n              [-81.744658, 37.257909],\n              [-81.744782, 37.257956],\n              [-81.744879, 37.257978],\n              [-81.74498, 37.257987],\n              [-81.745081, 37.257982],\n              [-81.74518, 37.257962],\n              [-81.745235, 37.257948],\n              [-81.745279, 37.257937],\n              [-81.745358, 37.257933],\n              [-81.745437, 37.257942],\n              [-81.745512, 37.257965],\n              [-81.745578, 37.257999],\n              [-81.745615, 37.258033],\n              [-81.745664, 37.258101],\n              [-81.745701, 37.258192],\n              [-81.745711, 37.25827],\n              [-81.745711, 37.258426],\n              [-81.745689, 37.258613],\n              [-81.74563, 37.25876],\n              [-81.745603, 37.258862],\n              [-81.745579, 37.259026],\n              [-81.745567, 37.259234],\n              [-81.74557, 37.259728],\n              [-81.74558, 37.259885],\n              [-81.745581, 37.259909],\n              [-81.745584, 37.26008],\n              [-81.745569, 37.260251],\n              [-81.745548, 37.260364],\n              [-81.745499, 37.260497],\n              [-81.745486, 37.260521],\n              [-81.74544, 37.260602],\n              [-81.745366, 37.260701],\n              [-81.745305, 37.260771],\n              [-81.745268, 37.260845],\n              [-81.745256, 37.260911],\n              [-81.745261, 37.260978],\n              [-81.745283, 37.261044],\n              [-81.745476, 37.261352],\n              [-81.745648, 37.261656],\n              [-81.745761, 37.261816],\n              [-81.745827, 37.26189],\n              [-81.74584, 37.261904],\n              [-81.745912, 37.261958],\n              [-81.745993, 37.262001],\n              [-81.746082, 37.262031],\n              [-81.746165, 37.262046],\n              [-81.746362, 37.262072],\n              [-81.746413, 37.262092],\n              [-81.74643, 37.262104],\n              [-81.746466, 37.262139],\n              [-81.746486, 37.262181],\n              [-81.746491, 37.262216],\n              [-81.746481, 37.262299],\n              [-81.746453, 37.262379],\n              [-81.74637, 37.262513],\n              [-81.746295, 37.262661],\n              [-81.74621, 37.262894],\n              [-81.746136, 37.263149],\n              [-81.746113, 37.263212],\n              [-81.746043, 37.263405],\n              [-81.746027, 37.263501],\n              [-81.746028, 37.263598],\n              [-81.746053, 37.263657],\n              [-81.746094, 37.263709],\n              [-81.746149, 37.263752],\n              [-81.746215, 37.263784],\n              [-81.746288, 37.263802],\n              [-81.746349, 37.263807],\n              [-81.746482, 37.263794],\n              [-81.74666, 37.263776],\n              [-81.747035, 37.263723],\n              [-81.747244, 37.263687],\n              [-81.747331, 37.263687],\n              [-81.747416, 37.263701],\n              [-81.747495, 37.263729],\n              [-81.747565, 37.26377],\n              [-81.747682, 37.263849],\n              [-81.747757, 37.263918],\n              [-81.747783, 37.263948],\n              [-81.747838, 37.264028],\n              [-81.747864, 37.264079],\n              [-81.747926, 37.264224],\n              [-81.747942, 37.264263],\n              [-81.748309, 37.264168],\n              [-81.748832, 37.264046],\n              [-81.749214, 37.264037],\n              [-81.749465, 37.264061],\n              [-81.749836, 37.264088],\n              [-81.750111, 37.264193],\n              [-81.750291, 37.26454],\n              [-81.750542, 37.264799],\n              [-81.750652, 37.264912],\n              [-81.750773, 37.265009],\n              [-81.751065, 37.26497],\n              [-81.751159, 37.265039],\n              [-81.751242, 37.265049],\n              [-81.751298, 37.265065],\n              [-81.751322, 37.265076],\n              [-81.751411, 37.265115],\n              [-81.751515, 37.265178],\n              [-81.751542, 37.2652],\n              [-81.751606, 37.265252],\n              [-81.751822, 37.265457],\n              [-81.751889, 37.265528],\n              [-81.752127, 37.265575],\n              [-81.752342, 37.265618],\n              [-81.752573, 37.265764],\n              [-81.752642, 37.266103],\n              [-81.752813, 37.266264],\n              [-81.752916, 37.266621],\n              [-81.752945, 37.266723],\n              [-81.752973, 37.266733],\n              [-81.753611, 37.266979],\n              [-81.753715, 37.267035],\n              [-81.753733, 37.267048],\n              [-81.75381, 37.267102],\n              [-81.754022, 37.267273],\n              [-81.754109, 37.267327],\n              [-81.754275, 37.26741],\n              [-81.75438, 37.267452],\n              [-81.754451, 37.267481],\n              [-81.754597, 37.26753],\n              [-81.754712, 37.267556],\n              [-81.754822, 37.267595],\n              [-81.754942, 37.267659],\n              [-81.755023, 37.267718],\n              [-81.755029, 37.267722],\n              [-81.755387, 37.267577],\n              [-81.755559, 37.267513],\n              [-81.755821, 37.267458],\n              [-81.756042, 37.267547],\n              [-81.756323, 37.267781],\n              [-81.756625, 37.268],\n              [-81.756896, 37.268234],\n              [-81.757248, 37.268421],\n              [-81.75758, 37.268559],\n              [-81.75765, 37.268841],\n              [-81.757528, 37.269155],\n              [-81.757486, 37.269486],\n              [-81.757535, 37.270017],\n              [-81.757562, 37.270311],\n              [-81.75757, 37.270335],\n              [-81.757608, 37.270466],\n              [-81.757642, 37.270585],\n              [-81.757713, 37.270871],\n              [-81.757714, 37.270877],\n              [-81.757744, 37.271077],\n              [-81.757749, 37.271128],\n              [-81.757754, 37.271171],\n              [-81.757758, 37.271193],\n              [-81.757843, 37.271325],\n              [-81.757892, 37.271591],\n              [-81.757807, 37.271781],\n              [-81.757808, 37.27182],\n              [-81.757803, 37.271924],\n              [-81.757795, 37.272082],\n              [-81.757735, 37.272738],\n              [-81.757721, 37.2731],\n              [-81.75768, 37.273552],\n              [-81.757678, 37.273704],\n              [-81.75767, 37.273757],\n              [-81.757634, 37.27401],\n              [-81.757491, 37.274187],\n              [-81.757228, 37.274605],\n              [-81.756964, 37.275169],\n              [-81.756952, 37.275693],\n              [-81.756991, 37.27608],\n              [-81.757141, 37.276154],\n              [-81.757247, 37.276164],\n              [-81.757286, 37.276168],\n              [-81.757313, 37.27617],\n              [-81.757877, 37.276139],\n              [-81.758411, 37.276237],\n              [-81.758743, 37.276262],\n              [-81.758913, 37.276105],\n              [-81.758924, 37.276095],\n              [-81.759279, 37.27561],\n              [-81.759563, 37.275264],\n              [-81.759805, 37.275176],\n              [-81.760184, 37.275253],\n              [-81.760194, 37.27525],\n              [-81.760223, 37.275248],\n              [-81.76029, 37.275242],\n              [-81.760366, 37.275245],\n              [-81.76046, 37.275261],\n              [-81.760548, 37.275292],\n              [-81.760826, 37.275391],\n              [-81.761038, 37.275475],\n              [-81.761137, 37.275514],\n              [-81.761467, 37.275624],\n              [-81.761654, 37.275677],\n              [-81.76173, 37.27571],\n              [-81.761752, 37.275719],\n              [-81.762, 37.275827],\n              [-81.762292, 37.275828],\n              [-81.762675, 37.275675],\n              [-81.762711, 37.275577],\n              [-81.762816, 37.275524],\n              [-81.762995, 37.275416],\n              [-81.763175, 37.275325],\n              [-81.763379, 37.275258],\n              [-81.763548, 37.275226],\n              [-81.763688, 37.275219],\n              [-81.763825, 37.275231],\n              [-81.76384, 37.275225],\n              [-81.76444, 37.274987],\n              [-81.765199, 37.275106],\n              [-81.765282, 37.275119],\n              [-81.765401, 37.275043],\n              [-81.765663, 37.274855],\n              [-81.76572, 37.274814],\n              [-81.765726, 37.27481],\n              [-81.765765, 37.274781],\n              [-81.766259, 37.274469],\n              [-81.766627, 37.274288],\n              [-81.766775, 37.274222],\n              [-81.766894, 37.274169],\n              [-81.767106, 37.274109],\n              [-81.76713, 37.274102],\n              [-81.767273, 37.274091],\n              [-81.767388, 37.27409],\n              [-81.767508, 37.274105],\n              [-81.767661, 37.274141],\n              [-81.76778, 37.274182],\n              [-81.7678, 37.274189],\n              [-81.767851, 37.274218],\n              [-81.767899, 37.274194],\n              [-81.768403, 37.27394],\n              [-81.768625, 37.27378],\n              [-81.768706, 37.27357],\n              [-81.768868, 37.273313],\n              [-81.769221, 37.273257],\n              [-81.769583, 37.273314],\n              [-81.769725, 37.273404],\n              [-81.769803, 37.273477],\n              [-81.769846, 37.273517],\n              [-81.769864, 37.273535],\n              [-81.769983, 37.2737],\n              [-81.772723, 37.274321],\n              [-81.77283, 37.274224],\n              [-81.772836, 37.27422],\n              [-81.772956, 37.274128],\n              [-81.773248, 37.273919],\n              [-81.773601, 37.274001],\n              [-81.773872, 37.274195],\n              [-81.773865, 37.274396],\n              [-81.773863, 37.274423],\n              [-81.773854, 37.274513],\n              [-81.773911, 37.274731],\n              [-81.774208, 37.274834],\n              [-81.774626, 37.274718],\n              [-81.774651, 37.274734],\n              [-81.775181, 37.274835],\n              [-81.775392, 37.275021],\n              [-81.775704, 37.27507],\n              [-81.776076, 37.275281],\n              [-81.776297, 37.275467],\n              [-81.776841, 37.275476],\n              [-81.777214, 37.275558],\n              [-81.777241, 37.275639],\n              [-81.777279, 37.27575],\n              [-81.777286, 37.275771],\n              [-81.777323, 37.27588],\n              [-81.777493, 37.276292],\n              [-81.777734, 37.276591],\n              [-81.77816, 37.276809],\n              [-81.778181, 37.276821],\n              [-81.778843, 37.277128],\n              [-81.779153, 37.277272],\n              [-81.779307, 37.277371],\n              [-81.779354, 37.277401],\n              [-81.779363, 37.277423],\n              [-81.779415, 37.277548],\n              [-81.779464, 37.277667],\n              [-81.779392, 37.278175],\n              [-81.779367, 37.278315],\n              [-81.779279, 37.27882],\n              [-81.779267, 37.279352],\n              [-81.779331, 37.279761],\n              [-81.779366, 37.279989],\n              [-81.779637, 37.280304],\n              [-81.779972, 37.280466],\n              [-81.780068, 37.280513],\n              [-81.780422, 37.280685],\n              [-81.780996, 37.280775],\n              [-81.781162, 37.28078],\n              [-81.781338, 37.280785],\n              [-81.78155, 37.280728],\n              [-81.781791, 37.281003],\n              [-81.781817, 37.281585],\n              [-81.782128, 37.281949],\n              [-81.782162, 37.281989],\n              [-81.782452, 37.282327],\n              [-81.783126, 37.282587],\n              [-81.783549, 37.282588],\n              [-81.783702, 37.282545],\n              [-81.78375, 37.282531],\n              [-81.783822, 37.282511],\n              [-81.783837, 37.282507],\n              [-81.783862, 37.2825],\n              [-81.783961, 37.282445],\n              [-81.784346, 37.282235],\n              [-81.784649, 37.282268],\n              [-81.785021, 37.282333],\n              [-81.78516, 37.282641],\n              [-81.785181, 37.282688],\n              [-81.785291, 37.283011],\n              [-81.785462, 37.283237],\n              [-81.786036, 37.283263],\n              [-81.786076, 37.283256],\n              [-81.786146, 37.283244],\n              [-81.786248, 37.283227],\n              [-81.786505, 37.283179],\n              [-81.786611, 37.283167],\n              [-81.786622, 37.283173],\n              [-81.786902, 37.283321],\n              [-81.786902, 37.283539],\n              [-81.786907, 37.283656],\n              [-81.786909, 37.283704],\n              [-81.786911, 37.28374],\n              [-81.786921, 37.283958],\n              [-81.787223, 37.284056],\n              [-81.787726, 37.284105],\n              [-81.787795, 37.284154],\n              [-81.787907, 37.284235],\n              [-81.788412, 37.284357],\n              [-81.788774, 37.28435],\n              [-81.789036, 37.284415],\n              [-81.789298, 37.284423],\n              [-81.78952, 37.284238],\n              [-81.789974, 37.284143],\n              [-81.790206, 37.284095],\n              [-81.790236, 37.284022],\n              [-81.790238, 37.284016],\n              [-81.790251, 37.283971],\n              [-81.790318, 37.283748],\n              [-81.790324, 37.283671],\n              [-81.790328, 37.283613],\n              [-81.790338, 37.28349],\n              [-81.790673, 37.28312],\n              [-81.791006, 37.282911],\n              [-81.791349, 37.282799],\n              [-81.791462, 37.282681],\n              [-81.791751, 37.282381],\n              [-81.791814, 37.282011],\n              [-81.791837, 37.281863],\n              [-81.791866, 37.281672],\n              [-81.792127, 37.281519],\n              [-81.792702, 37.281311],\n              [-81.793126, 37.281175],\n              [-81.793267, 37.281256],\n              [-81.793414, 37.281341],\n              [-81.79355, 37.281626],\n              [-81.793636, 37.281807],\n              [-81.793669, 37.281877],\n              [-81.793693, 37.281969],\n              [-81.79372, 37.282072],\n              [-81.793643, 37.282195],\n              [-81.793404, 37.282578],\n              [-81.793201, 37.283191],\n              [-81.793119, 37.283545],\n              [-81.793299, 37.284303],\n              [-81.793378, 37.284634],\n              [-81.793599, 37.284845],\n              [-81.794019, 37.284803],\n              [-81.794083, 37.284797],\n              [-81.794456, 37.284717],\n              [-81.794778, 37.284605],\n              [-81.794785, 37.284608],\n              [-81.79483, 37.284624],\n              [-81.794903, 37.28465],\n              [-81.795322, 37.2848],\n              [-81.795543, 37.285002],\n              [-81.796198, 37.285133],\n              [-81.797316, 37.285208],\n              [-81.798122, 37.285258],\n              [-81.7983, 37.285174],\n              [-81.798485, 37.285089],\n              [-81.798658, 37.28488],\n              [-81.798686, 37.284853],\n              [-81.798899, 37.284639],\n              [-81.799131, 37.284712],\n              [-81.799473, 37.284882],\n              [-81.799504, 37.284997],\n              [-81.799508, 37.285011],\n              [-81.799535, 37.285109],\n              [-81.799633, 37.285334],\n              [-81.799965, 37.285496],\n              [-81.800347, 37.285642],\n              [-81.80068, 37.285683],\n              [-81.801164, 37.285474],\n              [-81.801201, 37.285377],\n              [-81.801207, 37.285362],\n              [-81.801222, 37.285322],\n              [-81.801346, 37.285144],\n              [-81.801648, 37.285129],\n              [-81.80195, 37.285194],\n              [-81.802167, 37.28536],\n              [-81.802223, 37.285404],\n              [-81.802351, 37.285534],\n              [-81.802494, 37.285679],\n              [-81.802997, 37.285857],\n              [-81.803279, 37.285923],\n              [-81.803984, 37.285923],\n              [-81.804729, 37.285933],\n              [-81.805385, 37.285628],\n              [-81.805418, 37.285484],\n              [-81.805421, 37.285471],\n              [-81.805498, 37.28512],\n              [-81.805635, 37.284772],\n              [-81.805791, 37.284581],\n              [-81.806275, 37.284364],\n              [-81.806699, 37.283994],\n              [-81.806882, 37.283641],\n              [-81.806974, 37.283391],\n              [-81.807236, 37.283182],\n              [-81.807639, 37.283199],\n              [-81.807911, 37.283288],\n              [-81.808204, 37.283103],\n              [-81.808547, 37.282983],\n              [-81.809173, 37.283009],\n              [-81.809186, 37.283004],\n              [-81.809474, 37.282902],\n              [-81.809598, 37.282869],\n              [-81.809756, 37.282839],\n              [-81.809879, 37.282839],\n              [-81.809976, 37.282851],\n              [-81.81012, 37.282884],\n              [-81.810192, 37.282901],\n              [-81.81034, 37.282921],\n              [-81.810489, 37.282927],\n              [-81.810685, 37.282921],\n              [-81.810849, 37.282902],\n              [-81.811041, 37.28286],\n              [-81.811073, 37.282847],\n              [-81.81108, 37.282844],\n              [-81.811207, 37.282793],\n              [-81.811364, 37.282713],\n              [-81.811391, 37.282697],\n              [-81.811516, 37.282632],\n              [-81.81166, 37.282548],\n              [-81.811797, 37.282465],\n              [-81.811911, 37.282395],\n              [-81.812246, 37.282237],\n              [-81.812305, 37.282219],\n              [-81.812521, 37.282151],\n              [-81.812589, 37.28213],\n              [-81.812736, 37.282084],\n              [-81.812871, 37.282001],\n              [-81.812906, 37.281979],\n              [-81.812896, 37.281936],\n              [-81.812894, 37.281928],\n              [-81.81289, 37.281911],\n              [-81.812887, 37.2819],\n              [-81.812862, 37.281791],\n              [-81.812812, 37.281517],\n              [-81.812974, 37.281243],\n              [-81.813226, 37.281098],\n              [-81.813771, 37.280954],\n              [-81.814259, 37.280972],\n              [-81.814312, 37.280982],\n              [-81.814435, 37.281004],\n              [-81.814779, 37.280755],\n              [-81.815192, 37.280699],\n              [-81.815655, 37.280733],\n              [-81.815938, 37.280587],\n              [-81.816069, 37.280306],\n              [-81.816283, 37.280016],\n              [-81.816706, 37.279872],\n              [-81.817412, 37.279809],\n              [-81.817804, 37.279931],\n              [-81.818096, 37.279923],\n              [-81.81815, 37.279978],\n              [-81.818167, 37.279996],\n              [-81.818257, 37.280077],\n              [-81.818439, 37.280013],\n              [-81.81862, 37.27986],\n              [-81.819014, 37.27957],\n              [-81.819629, 37.279418],\n              [-81.820193, 37.27946],\n              [-81.820506, 37.279415],\n              [-81.820619, 37.27941],\n              [-81.820926, 37.279397],\n              [-81.82112, 37.279389],\n              [-81.821463, 37.279398],\n              [-81.821724, 37.279644],\n              [-81.821921, 37.27974],\n              [-81.821952, 37.279755],\n              [-81.822016, 37.279786],\n              [-81.822267, 37.279867],\n              [-81.822761, 37.279901],\n              [-81.823173, 37.279799],\n              [-81.823226, 37.279786],\n              [-81.82326, 37.279765],\n              [-81.82327, 37.279759],\n              [-81.823547, 37.279628],\n              [-81.823759, 37.279637],\n              [-81.824021, 37.279694],\n              [-81.824394, 37.27963],\n              [-81.824657, 37.279596],\n              [-81.824969, 37.279556],\n              [-81.825069, 37.279543],\n              [-81.825102, 37.27949],\n              [-81.82514, 37.27943],\n              [-81.825594, 37.279108],\n              [-81.825755, 37.2791],\n              [-81.825855, 37.279318],\n              [-81.826065, 37.280165],\n              [-81.826346, 37.280722],\n              [-81.826527, 37.280739],\n              [-81.826759, 37.280699],\n              [-81.827403, 37.280797],\n              [-81.827776, 37.28079],\n              [-81.827997, 37.280976],\n              [-81.828269, 37.28125],\n              [-81.82851, 37.281477],\n              [-81.828862, 37.281485],\n              [-81.829014, 37.281357],\n              [-81.829377, 37.281212],\n              [-81.829401, 37.281214],\n              [-81.829689, 37.281237],\n              [-81.829981, 37.281302],\n              [-81.830345, 37.281158],\n              [-81.830547, 37.281038],\n              [-81.830829, 37.280973],\n              [-81.831131, 37.280958],\n              [-81.831574, 37.281112],\n              [-81.831738, 37.281307],\n              [-81.831826, 37.281411],\n              [-81.831844, 37.281509],\n              [-81.831845, 37.281517],\n              [-81.831852, 37.28156],\n              [-81.831875, 37.281685],\n              [-81.831936, 37.281725],\n              [-81.832141, 37.281708],\n              [-81.83276, 37.281651],\n              [-81.833248, 37.281622],\n              [-81.83394, 37.281529],\n              [-81.834474, 37.281769],\n              [-81.834624, 37.282078],\n              [-81.834544, 37.282667],\n              [-81.834391, 37.283094],\n              [-81.833865, 37.283399],\n              [-81.833811, 37.283646],\n              [-81.833804, 37.283682],\n              [-81.833789, 37.283709],\n              [-81.833768, 37.283736],\n              [-81.833757, 37.28375],\n              [-81.833744, 37.283767],\n              [-81.833511, 37.284067],\n              [-81.833409, 37.284544],\n              [-81.833413, 37.284557],\n              [-81.833562, 37.285019],\n              [-81.833701, 37.285108],\n              [-81.833902, 37.285237],\n              [-81.834436, 37.285424],\n              [-81.834822, 37.285469],\n              [-81.83506, 37.285496],\n              [-81.835289, 37.285417],\n              [-81.835297, 37.285414],\n              [-81.835313, 37.285409],\n              [-81.835331, 37.285403],\n              [-81.83538, 37.285386],\n              [-81.835463, 37.285357],\n              [-81.835493, 37.285347],\n              [-81.835524, 37.285336],\n              [-81.836007, 37.285337],\n              [-81.836403, 37.285628],\n              [-81.836783, 37.285771],\n              [-81.836833, 37.28579],\n              [-81.836924, 37.285823],\n              [-81.837276, 37.286033],\n              [-81.837598, 37.28609],\n              [-81.838112, 37.28618],\n              [-81.838302, 37.286256],\n              [-81.838469, 37.286324],\n              [-81.838494, 37.286334],\n              [-81.838525, 37.286336],\n              [-81.838766, 37.28635],\n              [-81.839028, 37.286174],\n              [-81.839402, 37.285973],\n              [-81.839694, 37.285997],\n              [-81.839966, 37.286079],\n              [-81.840369, 37.286095],\n              [-81.840893, 37.285855],\n              [-81.841206, 37.285678],\n              [-81.841246, 37.285655],\n              [-81.841276, 37.285638],\n              [-81.841369, 37.285509],\n              [-81.841499, 37.285332],\n              [-81.841842, 37.28526],\n              [-81.841976, 37.285242],\n              [-81.842083, 37.285228],\n              [-81.842243, 37.285309],\n              [-81.842268, 37.285396],\n              [-81.842272, 37.28541],\n              [-81.84235, 37.285431],\n              [-81.842368, 37.285439],\n              [-81.842589, 37.285535],\n              [-81.842641, 37.285554],\n              [-81.842651, 37.285558],\n              [-81.842791, 37.285607],\n              [-81.842899, 37.285625],\n              [-81.842996, 37.285628],\n              [-81.843009, 37.285629],\n              [-81.843119, 37.285618],\n              [-81.843174, 37.285606],\n              [-81.843203, 37.285599],\n              [-81.843293, 37.285565],\n              [-81.843324, 37.285555],\n              [-81.843695, 37.285433],\n              [-81.844169, 37.285369],\n              [-81.844563, 37.285265],\n              [-81.845017, 37.285096],\n              [-81.845157, 37.285201],\n              [-81.845464, 37.285249],\n              [-81.84551, 37.285315],\n              [-81.845973, 37.285356],\n              [-81.846284, 37.28535],\n              [-81.846505, 37.285237],\n              [-81.846528, 37.285162],\n              [-81.846534, 37.285144],\n              [-81.846637, 37.284802],\n              [-81.846811, 37.284656],\n              [-81.847234, 37.28477],\n              [-81.847395, 37.284838],\n              [-81.847425, 37.284851],\n              [-81.847498, 37.284882],\n              [-81.847566, 37.284964],\n              [-81.847858, 37.284948],\n              [-81.84812, 37.284909],\n              [-81.84818, 37.284989],\n              [-81.848321, 37.285191],\n              [-81.848542, 37.285401],\n              [-81.848774, 37.285442],\n              [-81.848938, 37.285374],\n              [-81.849151, 37.285339],\n              [-81.849211, 37.285329],\n              [-81.849246, 37.285323],\n              [-81.849349, 37.285299],\n              [-81.849356, 37.285297],\n              [-81.849671, 37.285202],\n              [-81.849953, 37.285234],\n              [-81.850124, 37.285452],\n              [-81.850244, 37.285783],\n              [-81.850082, 37.286097],\n              [-81.84987, 37.286411],\n              [-81.849799, 37.286887],\n              [-81.849842, 37.287153],\n              [-81.849848, 37.287193],\n              [-81.849861, 37.287276],\n              [-81.849969, 37.287436],\n              [-81.85015, 37.287557],\n              [-81.851026, 37.287583],\n              [-81.851299, 37.287535],\n              [-81.85155, 37.287559],\n              [-81.852155, 37.28773],\n              [-81.852316, 37.287779],\n              [-81.852416, 37.287803],\n              [-81.852658, 37.287763],\n              [-81.852809, 37.287704],\n              [-81.853322, 37.287628],\n              [-81.853445, 37.287633],\n              [-81.853557, 37.287713],\n              [-81.853634, 37.288174],\n              [-81.853781, 37.289048],\n              [-81.853928, 37.289711],\n              [-81.854069, 37.290044],\n              [-81.854081, 37.290397],\n              [-81.854028, 37.290778],\n              [-81.854063, 37.291215],\n              [-81.854299, 37.291888],\n              [-81.854312, 37.291926],\n              [-81.854264, 37.292147],\n              [-81.854191, 37.292353],\n              [-81.854149, 37.292472],\n              [-81.853996, 37.292865],\n              [-81.853949, 37.293032],\n              [-81.853923, 37.293196],\n              [-81.853911, 37.293274],\n              [-81.853849, 37.293576],\n              [-81.853705, 37.294068],\n              [-81.853689, 37.294154],\n              [-81.853642, 37.294205],\n              [-81.853201, 37.294675],\n              [-81.853042, 37.295257],\n              [-81.852683, 37.295964],\n              [-81.852377, 37.29631],\n              [-81.852286, 37.296582],\n              [-81.852318, 37.296671],\n              [-81.852319, 37.296694],\n              [-81.852454, 37.297363],\n              [-81.852477, 37.297446],\n              [-81.852481, 37.297571],\n              [-81.852487, 37.297712],\n              [-81.852506, 37.297809],\n              [-81.852707, 37.298011],\n              [-81.852848, 37.298116],\n              [-81.853149, 37.298204],\n              [-81.85333, 37.298277],\n              [-81.853533, 37.298279],\n              [-81.853698, 37.298168],\n              [-81.853784, 37.298069],\n              [-81.853806, 37.298045],\n              [-81.853877, 37.297969],\n              [-81.854121, 37.297886],\n              [-81.854447, 37.297876],\n              [-81.854621, 37.29792],\n              [-81.854845, 37.298038],\n              [-81.854867, 37.29826],\n              [-81.85493, 37.298597],\n              [-81.854944, 37.298905],\n              [-81.855006, 37.299094],\n              [-81.855051, 37.299465],\n              [-81.854994, 37.29977],\n              [-81.854914, 37.299861],\n              [-81.854527, 37.300008],\n              [-81.854514, 37.300018],\n              [-81.854473, 37.300049],\n              [-81.854298, 37.300157],\n              [-81.854216, 37.30022],\n              [-81.854147, 37.300292],\n              [-81.854132, 37.300315],\n              [-81.854114, 37.300343],\n              [-81.854092, 37.300405],\n              [-81.85375, 37.300774],\n              [-81.853757, 37.301236],\n              [-81.853812, 37.301528],\n              [-81.85398, 37.301927],\n              [-81.853991, 37.3023],\n              [-81.853978, 37.302544],\n              [-81.854126, 37.302698],\n              [-81.854291, 37.30289],\n              [-81.854322, 37.302925],\n              [-81.85435, 37.302957],\n              [-81.854531, 37.303441],\n              [-81.85457, 37.303812],\n              [-81.854529, 37.304102],\n              [-81.854448, 37.304464],\n              [-81.854347, 37.304819],\n              [-81.854303, 37.304927],\n              [-81.854298, 37.304939],\n              [-81.854205, 37.305166],\n              [-81.854157, 37.305233],\n              [-81.854083, 37.305431],\n              [-81.854143, 37.305633],\n              [-81.854264, 37.305883],\n              [-81.854384, 37.306182],\n              [-81.854404, 37.306303],\n              [-81.854464, 37.306577],\n              [-81.854756, 37.306747],\n              [-81.854973, 37.306754],\n              [-81.855015, 37.306756],\n              [-81.855528, 37.306776],\n              [-81.855602, 37.306779],\n              [-81.856036, 37.306749],\n              [-81.856408, 37.306591],\n              [-81.856489, 37.306553],\n              [-81.856566, 37.306517],\n              [-81.857206, 37.306219],\n              [-81.858033, 37.305737],\n              [-81.858377, 37.305514],\n              [-81.858413, 37.305491],\n              [-81.858931, 37.305158],\n              [-81.859284, 37.304873],\n              [-81.859316, 37.304847],\n              [-81.859436, 37.304747],\n              [-81.859628, 37.304772],\n              [-81.859849, 37.304958],\n              [-81.86003, 37.305208],\n              [-81.860252, 37.305402],\n              [-81.860705, 37.30554],\n              [-81.861249, 37.305597],\n              [-81.862035, 37.305655],\n              [-81.862259, 37.305874],\n              [-81.862588, 37.306478],\n              [-81.864018, 37.307319],\n              [-81.864036, 37.307381],\n              [-81.864049, 37.307426],\n              [-81.864058, 37.307456],\n              [-81.864072, 37.307586],\n              [-81.864087, 37.307714],\n              [-81.864167, 37.307851],\n              [-81.864349, 37.307941],\n              [-81.8645, 37.308215],\n              [-81.864764, 37.308411],\n              [-81.864945, 37.308505],\n              [-81.865092, 37.308582],\n              [-81.865153, 37.308614],\n              [-81.865251, 37.308692],\n              [-81.865303, 37.308718],\n              [-81.865317, 37.308745],\n              [-81.865379, 37.308865],\n              [-81.865556, 37.309209],\n              [-81.865687, 37.309491],\n              [-81.865525, 37.309813],\n              [-81.865433, 37.310127],\n              [-81.865282, 37.310401],\n              [-81.864999, 37.310788],\n              [-81.864514, 37.311287],\n              [-81.864009, 37.311867],\n              [-81.863716, 37.312237],\n              [-81.863212, 37.312438],\n              [-81.862798, 37.312687],\n              [-81.862324, 37.31292],\n              [-81.861931, 37.313016],\n              [-81.861608, 37.313096],\n              [-81.861487, 37.313306],\n              [-81.861234, 37.313523],\n              [-81.86077, 37.313732],\n              [-81.860164, 37.313827],\n              [-81.859932, 37.313972],\n              [-81.859821, 37.314149],\n              [-81.859871, 37.314319],\n              [-81.859961, 37.314593],\n              [-81.860051, 37.314932],\n              [-81.860151, 37.315351],\n              [-81.860271, 37.315722],\n              [-81.860493, 37.315949],\n              [-81.860839, 37.316117],\n              [-81.860884, 37.316139],\n              [-81.861098, 37.31624],\n              [-81.86139, 37.316168],\n              [-81.861673, 37.316144],\n              [-81.861935, 37.316169],\n              [-81.862106, 37.316314],\n              [-81.862226, 37.316645],\n              [-81.862387, 37.316992],\n              [-81.862648, 37.317371],\n              [-81.86291, 37.317549],\n              [-81.863393, 37.317953],\n              [-81.863745, 37.318276],\n              [-81.864047, 37.31847],\n              [-81.864174, 37.318527],\n              [-81.864951, 37.318876],\n              [-81.864984, 37.318891],\n              [-81.865205, 37.319045],\n              [-81.865507, 37.319343],\n              [-81.865587, 37.319521],\n              [-81.865607, 37.319698],\n              [-81.865718, 37.319795],\n              [-81.86602, 37.319787],\n              [-81.866234, 37.319811],\n              [-81.866292, 37.319755],\n              [-81.866485, 37.319763],\n              [-81.866533, 37.319763],\n              [-81.866675, 37.319764],\n              [-81.866867, 37.319788],\n              [-81.867058, 37.319877],\n              [-81.867098, 37.320039],\n              [-81.867037, 37.320216],\n              [-81.867039, 37.320235],\n              [-81.867043, 37.320274],\n              [-81.867059, 37.320423],\n              [-81.867077, 37.320579],\n              [-81.867198, 37.320724],\n              [-81.867429, 37.320845],\n              [-81.867974, 37.320814],\n              [-81.868821, 37.32059],\n              [-81.869143, 37.320582],\n              [-81.869728, 37.320502],\n              [-81.870183, 37.320674],\n              [-81.870289, 37.320782],\n              [-81.870324, 37.320818],\n              [-81.870363, 37.320858],\n              [-81.870443, 37.321068],\n              [-81.870694, 37.321423],\n              [-81.870925, 37.32173],\n              [-81.871046, 37.322004],\n              [-81.871267, 37.322303],\n              [-81.871539, 37.322295],\n              [-81.871943, 37.32224],\n              [-81.872255, 37.322208],\n              [-81.872456, 37.322369],\n              [-81.872728, 37.32266],\n              [-81.87297, 37.322975],\n              [-81.872949, 37.32308],\n              [-81.872666, 37.323321],\n              [-81.872474, 37.323651],\n              [-81.872423, 37.324119],\n              [-81.872432, 37.324149],\n              [-81.872434, 37.324155],\n              [-81.872448, 37.324204],\n              [-81.872461, 37.324248],\n              [-81.87249, 37.324347],\n              [-81.872514, 37.324431],\n              [-81.872543, 37.32453],\n              [-81.873016, 37.325008],\n              [-81.873217, 37.325073],\n              [-81.87336, 37.325119],\n              [-81.873371, 37.325138],\n              [-81.873567, 37.325474],\n              [-81.873664, 37.325642],\n              [-81.8737, 37.325727],\n              [-81.873716, 37.325815],\n              [-81.873714, 37.325919],\n              [-81.873721, 37.326001],\n              [-81.873748, 37.326088],\n              [-81.873769, 37.326129],\n              [-81.873843, 37.326201],\n              [-81.873977, 37.326356],\n              [-81.874036, 37.326465],\n              [-81.874101, 37.326612],\n              [-81.874119, 37.326652],\n              [-81.874141, 37.326812],\n              [-81.874138, 37.327073],\n              [-81.874124, 37.327198],\n              [-81.874092, 37.327322],\n              [-81.87406, 37.327393],\n              [-81.874005, 37.327485],\n              [-81.873992, 37.327534],\n              [-81.873996, 37.327585],\n              [-81.874017, 37.327633],\n              [-81.874063, 37.327681],\n              [-81.874308, 37.32782],\n              [-81.874736, 37.328078],\n              [-81.874868, 37.328158],\n              [-81.874922, 37.328181],\n              [-81.874995, 37.328197],\n              [-81.875071, 37.3282],\n              [-81.875146, 37.328188],\n              [-81.875194, 37.328169],\n              [-81.875282, 37.32811],\n              [-81.875357, 37.32804],\n              [-81.875528, 37.327826],\n              [-81.875541, 37.32781],\n              [-81.875699, 37.327611],\n              [-81.875738, 37.327582],\n              [-81.875763, 37.327569],\n              [-81.875812, 37.327544],\n              [-81.875894, 37.327519],\n              [-81.875943, 37.327513],\n              [-81.875981, 37.327508],\n              [-81.876117, 37.32751],\n              [-81.87624, 37.327527],\n              [-81.876336, 37.327551],\n              [-81.876739, 37.327702],\n              [-81.876812, 37.327729],\n              [-81.876909, 37.327782],\n              [-81.877054, 37.327862],\n              [-81.877155, 37.32795],\n              [-81.87721, 37.328016],\n              [-81.877266, 37.328105],\n              [-81.877437, 37.328512],\n              [-81.877508, 37.328636],\n              [-81.877597, 37.328753],\n              [-81.877649, 37.328803],\n              [-81.877712, 37.328841],\n              [-81.877774, 37.328863],\n              [-81.877831, 37.328875],\n              [-81.87791, 37.328877],\n              [-81.877941, 37.328872],\n              [-81.878018, 37.328858],\n              [-81.878184, 37.328834],\n              [-81.878252, 37.328826],\n              [-81.878327, 37.328835],\n              [-81.878349, 37.328837],\n              [-81.878112, 37.330246],\n              [-81.877989, 37.33048],\n              [-81.877929, 37.330595],\n              [-81.877744, 37.330816],\n              [-81.87765, 37.330911],\n              [-81.877527, 37.331036],\n              [-81.87738, 37.331216],\n              [-81.877325, 37.331426],\n              [-81.877471, 37.331625],\n              [-81.877675, 37.331742],\n              [-81.877849, 37.331796],\n              [-81.878142, 37.331698],\n              [-81.878228, 37.331669],\n              [-81.878407, 37.331586],\n              [-81.878598, 37.331591],\n              [-81.87869, 37.331662],\n              [-81.878717, 37.33176],\n              [-81.878721, 37.331912],\n              [-81.878956, 37.332007],\n              [-81.879004, 37.332037],\n              [-81.879093, 37.332107],\n              [-81.8791, 37.332113],\n              [-81.879172, 37.332192],\n              [-81.879306, 37.332461],\n              [-81.879321, 37.332479],\n              [-81.879358, 37.3325],\n              [-81.879401, 37.332507],\n              [-81.879437, 37.332503],\n              [-81.879476, 37.332486],\n              [-81.879504, 37.332458],\n              [-81.879513, 37.332424],\n              [-81.879513, 37.332354],\n              [-81.879487, 37.332261],\n              [-81.87948, 37.332196],\n              [-81.87949, 37.332131],\n              [-81.879518, 37.33207],\n              [-81.879523, 37.332064],\n              [-81.879562, 37.332015],\n              [-81.879623, 37.33197],\n              [-81.87966, 37.331928],\n              [-81.879713, 37.331789],\n              [-81.879724, 37.331767],\n              [-81.879739, 37.331735],\n              [-81.879825, 37.331594],\n              [-81.879835, 37.331578],\n              [-81.879932, 37.331454],\n              [-81.880037, 37.331345],\n              [-81.88018, 37.331226],\n              [-81.880292, 37.331179],\n              [-81.880411, 37.331144],\n              [-81.880986, 37.331041],\n              [-81.881209, 37.33078],\n              [-81.881565, 37.330516],\n              [-81.88189, 37.330262],\n              [-81.88218, 37.33016],\n              [-81.882482, 37.330172],\n              [-81.882704, 37.330192],\n              [-81.882835, 37.33019],\n              [-81.882965, 37.33018],\n              [-81.883154, 37.330072],\n              [-81.883304, 37.330054],\n              [-81.883596, 37.330065],\n              [-81.883841, 37.330198],\n              [-81.884064, 37.330258],\n              [-81.884328, 37.330351],\n              [-81.884492, 37.330461],\n              [-81.884796, 37.33052],\n              [-81.884836, 37.330541],\n              [-81.884889, 37.330514],\n              [-81.885038, 37.33045],\n              [-81.885049, 37.330446],\n              [-81.885167, 37.330404],\n              [-81.885369, 37.330366],\n              [-81.885575, 37.33034],\n              [-81.885794, 37.330328],\n              [-81.885983, 37.330328],\n              [-81.886219, 37.330341],\n              [-81.886279, 37.330355],\n              [-81.886373, 37.330377],\n              [-81.886522, 37.330426],\n              [-81.886546, 37.330437],\n              [-81.886558, 37.330442],\n              [-81.886663, 37.330488],\n              [-81.886915, 37.33066],\n              [-81.886975, 37.3307],\n              [-81.887054, 37.330754],\n              [-81.887131, 37.3308],\n              [-81.887266, 37.330867],\n              [-81.88741, 37.330922],\n              [-81.887662, 37.330991],\n              [-81.887782, 37.331036],\n              [-81.88779, 37.33104],\n              [-81.887813, 37.331052],\n              [-81.887872, 37.331081],\n              [-81.887975, 37.331148],\n              [-81.888249, 37.331375],\n              [-81.888439, 37.331521],\n              [-81.888542, 37.331579],\n              [-81.888655, 37.331626],\n              [-81.888747, 37.331652],\n              [-81.888775, 37.33166],\n              [-81.889018, 37.33168],\n              [-81.889312, 37.331684],\n              [-81.889459, 37.331697],\n              [-81.889603, 37.331724],\n              [-81.889692, 37.331754],\n              [-81.889713, 37.331754],\n              [-81.890012, 37.331835],\n              [-81.890221, 37.331876],\n              [-81.890352, 37.331885],\n              [-81.890482, 37.33188],\n              [-81.890611, 37.331861],\n              [-81.890691, 37.331837],\n              [-81.890785, 37.331796],\n              [-81.8909, 37.331729],\n              [-81.89102, 37.331672],\n              [-81.891046, 37.331663],\n              [-81.89115, 37.331628],\n              [-81.891206, 37.331614],\n              [-81.891213, 37.331608],\n              [-81.891589, 37.331306],\n              [-81.891935, 37.331083],\n              [-81.892155, 37.330875],\n              [-81.892405, 37.330559],\n              [-81.892524, 37.330387],\n              [-81.892671, 37.330232],\n              [-81.89288, 37.330137],\n              [-81.892919, 37.330119],\n              [-81.893033, 37.329997],\n              [-81.893286, 37.329905],\n              [-81.893341, 37.329892],\n              [-81.893442, 37.329868],\n              [-81.893585, 37.329852],\n              [-81.893704, 37.329922],\n              [-81.893726, 37.329967],\n              [-81.893784, 37.329982],\n              [-81.893888, 37.330023],\n              [-81.893992, 37.330097],\n              [-81.894065, 37.330165],\n              [-81.894173, 37.330291],\n              [-81.894316, 37.330438],\n              [-81.894331, 37.330454],\n              [-81.894504, 37.330608],\n              [-81.894729, 37.330785],\n              [-81.89484, 37.330894],\n              [-81.894935, 37.331013],\n              [-81.894993, 37.33111],\n              [-81.895016, 37.331162],\n              [-81.895048, 37.331235],\n              [-81.895055, 37.331261],\n              [-81.895089, 37.331389],\n              [-81.895096, 37.331476],\n              [-81.895008, 37.331533],\n              [-81.894949, 37.331587],\n              [-81.894794, 37.331781],\n              [-81.894781, 37.33181],\n              [-81.894774, 37.331862],\n              [-81.894781, 37.331903],\n              [-81.894806, 37.33195],\n              [-81.894847, 37.331991],\n              [-81.894891, 37.332016],\n              [-81.894961, 37.332041],\n              [-81.895021, 37.332051],\n              [-81.895098, 37.332052],\n              [-81.895173, 37.332038],\n              [-81.89539, 37.331957],\n              [-81.895421, 37.331968],\n              [-81.895478, 37.331975],\n              [-81.895499, 37.331978],\n              [-81.89556, 37.331985],\n              [-81.8957, 37.331987],\n              [-81.895709, 37.331986],\n              [-81.895926, 37.331965],\n              [-81.896005, 37.331966],\n              [-81.896104, 37.331975],\n              [-81.896498, 37.331977],\n              [-81.896793, 37.332101],\n              [-81.896874, 37.332155],\n              [-81.897335, 37.332463],\n              [-81.897342, 37.332476],\n              [-81.897367, 37.332523],\n              [-81.897386, 37.332558],\n              [-81.897442, 37.332661],\n              [-81.897747, 37.333221],\n              [-81.89794, 37.333677],\n              [-81.897302, 37.333897],\n              [-81.896817, 37.334203],\n              [-81.896683, 37.334392],\n              [-81.896632, 37.334464],\n              [-81.896603, 37.334907],\n              [-81.896631, 37.33531],\n              [-81.896636, 37.33539],\n              [-81.896825, 37.336095],\n              [-81.897011, 37.33668],\n              [-81.897062, 37.336765],\n              [-81.897152, 37.336921],\n              [-81.897195, 37.337002],\n              [-81.8972, 37.33701],\n              [-81.898467, 37.33929],\n              [-81.898916, 37.339556],\n              [-81.899168, 37.339566],\n              [-81.899303, 37.339547],\n              [-81.899357, 37.339539],\n              [-81.899559, 37.339511],\n              [-81.899681, 37.339581],\n              [-81.899725, 37.33971],\n              [-81.89979, 37.33996],\n              [-81.899768, 37.340268],\n              [-81.899668, 37.340715],\n              [-81.899664, 37.340733],\n              [-81.899657, 37.34084],\n              [-81.899661, 37.340886],\n              [-81.899663, 37.340903],\n              [-81.899498, 37.341108],\n              [-81.899448, 37.341186],\n              [-81.899426, 37.34142],\n              [-81.899605, 37.341614],\n              [-81.899951, 37.34191],\n              [-81.900499, 37.342079],\n              [-81.901061, 37.342038],\n              [-81.901814, 37.341986],\n              [-81.902183, 37.341893],\n              [-81.902234, 37.34188],\n              [-81.902323, 37.341858],\n              [-81.902536, 37.341783],\n              [-81.902667, 37.341797],\n              [-81.902894, 37.341987],\n              [-81.902979, 37.342171],\n              [-81.902993, 37.34232],\n              [-81.903008, 37.342331],\n              [-81.903149, 37.342435],\n              [-81.903303, 37.342565],\n              [-81.903405, 37.34267],\n              [-81.903516, 37.342813],\n              [-81.903588, 37.342888],\n              [-81.903613, 37.342915],\n              [-81.903717, 37.343002],\n              [-81.903779, 37.34304],\n              [-81.903793, 37.343046],\n              [-81.903822, 37.343098],\n              [-81.903899, 37.343233],\n              [-81.90401, 37.343248],\n              [-81.90417, 37.343213],\n              [-81.904285, 37.343155],\n              [-81.904309, 37.343143],\n              [-81.90443, 37.343082],\n              [-81.904685, 37.342891],\n              [-81.905013, 37.342717],\n              [-81.905949, 37.342782],\n              [-81.906272, 37.342771],\n              [-81.906369, 37.342751],\n              [-81.906403, 37.342744],\n              [-81.906531, 37.342645],\n              [-81.906852, 37.3426],\n              [-81.907165, 37.342643],\n              [-81.907269, 37.342779],\n              [-81.907281, 37.342852],\n              [-81.907288, 37.342891],\n              [-81.907422, 37.342976],\n              [-81.907462, 37.343002],\n              [-81.907569, 37.343088],\n              [-81.907653, 37.343179],\n              [-81.907749, 37.343305],\n              [-81.907823, 37.343427],\n              [-81.907907, 37.343541],\n              [-81.908029, 37.34367],\n              [-81.908151, 37.343801],\n              [-81.908421, 37.343849],\n              [-81.908535, 37.34387],\n              [-81.908667, 37.343932],\n              [-81.908712, 37.344148],\n              [-81.908636, 37.344326],\n              [-81.90845, 37.34457],\n              [-81.908329, 37.344641],\n              [-81.90829, 37.344664],\n              [-81.908124, 37.344761],\n              [-81.907946, 37.344885],\n              [-81.90785, 37.345039],\n              [-81.907915, 37.345231],\n              [-81.908211, 37.345388],\n              [-81.908848, 37.345275],\n              [-81.908904, 37.345266],\n              [-81.908972, 37.345255],\n              [-81.909173, 37.345244],\n              [-81.909537, 37.345303],\n              [-81.909652, 37.345462],\n              [-81.90964, 37.345539],\n              [-81.909617, 37.345666],\n              [-81.909561, 37.345984],\n              [-81.909472, 37.346286],\n              [-81.909538, 37.346904],\n              [-81.909607, 37.347808],\n              [-81.909608, 37.347823],\n              [-81.909628, 37.348078],\n              [-81.909749, 37.348463],\n              [-81.909977, 37.348749],\n              [-81.910224, 37.348962],\n              [-81.910375, 37.348952],\n              [-81.91089, 37.348766],\n              [-81.910941, 37.348747],\n              [-81.911005, 37.348725],\n              [-81.911138, 37.348732],\n              [-81.911406, 37.348754],\n              [-81.911784, 37.349172],\n              [-81.911873, 37.349275],\n              [-81.911955, 37.349346],\n              [-81.912061, 37.349352],\n              [-81.912333, 37.349316],\n              [-81.912579, 37.349284],\n              [-81.91263, 37.349277],\n              [-81.912795, 37.349256],\n              [-81.913266, 37.349176],\n              [-81.913458, 37.349213],\n              [-81.913731, 37.349281],\n              [-81.91426, 37.349551],\n              [-81.914413, 37.34956],\n              [-81.914615, 37.349597],\n              [-81.914857, 37.349601],\n              [-81.915047, 37.349581],\n              [-81.915135, 37.349475],\n              [-81.915144, 37.349411],\n              [-81.915152, 37.349354],\n              [-81.915349, 37.349158],\n              [-81.915571, 37.349194],\n              [-81.915846, 37.349327],\n              [-81.916129, 37.349386],\n              [-81.916493, 37.349421],\n              [-81.916682, 37.349353],\n              [-81.916782, 37.349288],\n              [-81.916821, 37.349262],\n              [-81.91693, 37.349196],\n              [-81.91718, 37.349127],\n              [-81.917451, 37.349123],\n              [-81.917488, 37.34913],\n              [-81.917654, 37.34916],\n              [-81.917798, 37.349294],\n              [-81.917831, 37.349423],\n              [-81.918037, 37.349572],\n              [-81.917762, 37.350369],\n              [-81.917711, 37.350463],\n              [-81.917586, 37.35065],\n              [-81.917573, 37.35067],\n              [-81.917537, 37.350723],\n              [-81.917544, 37.351005],\n              [-81.917728, 37.351123],\n              [-81.91786, 37.351153],\n              [-81.917946, 37.351227],\n              [-81.918199, 37.351445],\n              [-81.91825, 37.351847],\n              [-81.91824, 37.352242],\n              [-81.91845, 37.352568],\n              [-81.9186, 37.352944],\n              [-81.918878, 37.353165],\n              [-81.919413, 37.353245],\n              [-81.919897, 37.353286],\n              [-81.920283, 37.353409],\n              [-81.920441, 37.353672],\n              [-81.920647, 37.35428],\n              [-81.920654, 37.354399],\n              [-81.920657, 37.354453],\n              [-81.920681, 37.354851],\n              [-81.920711, 37.355359],\n              [-81.920741, 37.355408],\n              [-81.920828, 37.355553],\n              [-81.920901, 37.355652],\n              [-81.920926, 37.355685],\n              [-81.92095, 37.355715],\n              [-81.920985, 37.355758],\n              [-81.921022, 37.355801],\n              [-81.921061, 37.355845],\n              [-81.921152, 37.356011],\n              [-81.921234, 37.356156],\n              [-81.921574, 37.356428],\n              [-81.921625, 37.356704],\n              [-81.921766, 37.35708],\n              [-81.922256, 37.357338],\n              [-81.923242, 37.357725],\n              [-81.9235, 37.357962],\n              [-81.923636, 37.358177],\n              [-81.92382, 37.358279],\n              [-81.92409, 37.358211],\n              [-81.924364, 37.357925],\n              [-81.924509, 37.357542],\n              [-81.92453, 37.357418],\n              [-81.924536, 37.357383],\n              [-81.924541, 37.35735],\n              [-81.925034, 37.356948],\n              [-81.925306, 37.356976],\n              [-81.926273, 37.357943],\n              [-81.926311, 37.358078],\n              [-81.926412, 37.358355],\n              [-81.926484, 37.358522],\n              [-81.926574, 37.358683],\n              [-81.926595, 37.358714],\n              [-81.926645, 37.358817],\n              [-81.926749, 37.359033],\n              [-81.927099, 37.359757],\n              [-81.927486, 37.359936],\n              [-81.928146, 37.360167],\n              [-81.928466, 37.360468],\n              [-81.928501, 37.360652],\n              [-81.928467, 37.360878],\n              [-81.928199, 37.361414],\n              [-81.927835, 37.36216],\n              [-81.927587, 37.362767],\n              [-81.927576, 37.362794],\n              [-81.927551, 37.362857],\n              [-81.927372, 37.36331],\n              [-81.927322, 37.364132],\n              [-81.927187, 37.364335],\n              [-81.926949, 37.364492],\n              [-81.926701, 37.364625],\n              [-81.926664, 37.3647],\n              [-81.92655, 37.364922],\n              [-81.926448, 37.365065],\n              [-81.926224, 37.365196],\n              [-81.926187, 37.365218],\n              [-81.926083, 37.365278],\n              [-81.926006, 37.365384],\n              [-81.926024, 37.365441],\n              [-81.926049, 37.36552],\n              [-81.926193, 37.365639],\n              [-81.92668, 37.365768],\n              [-81.927026, 37.365816],\n              [-81.927195, 37.365814],\n              [-81.92732, 37.365806],\n              [-81.927403, 37.3658],\n              [-81.927774, 37.365774],\n              [-81.928333, 37.365855],\n              [-81.928678, 37.36597],\n              [-81.928838, 37.366043],\n              [-81.928862, 37.366055],\n              [-81.928866, 37.366241],\n              [-81.928921, 37.366393],\n              [-81.929083, 37.366422],\n              [-81.929333, 37.366386],\n              [-81.929659, 37.36641],\n              [-81.929811, 37.366456],\n              [-81.929911, 37.366601],\n              [-81.92993, 37.366629],\n              [-81.929977, 37.36662],\n              [-81.929989, 37.366625],\n              [-81.930025, 37.366641],\n              [-81.930078, 37.366723],\n              [-81.930084, 37.366741],\n              [-81.930198, 37.366735],\n              [-81.930311, 37.36673],\n              [-81.930434, 37.366791],\n              [-81.930568, 37.367027],\n              [-81.930879, 37.3674],\n              [-81.931219, 37.367676],\n              [-81.931562, 37.368089],\n              [-81.931956, 37.368558],\n              [-81.93256, 37.368951],\n              [-81.932979, 37.369186],\n              [-81.933386, 37.369348],\n              [-81.933334, 37.369655],\n              [-81.933239, 37.369898],\n              [-81.933198, 37.370261],\n              [-81.933239, 37.370671],\n              [-81.933178, 37.371018],\n              [-81.933089, 37.371502],\n              [-81.932944, 37.372092],\n              [-81.93306, 37.3723],\n              [-81.933377, 37.372512],\n              [-81.933783, 37.37265],\n              [-81.933899, 37.372754],\n              [-81.934031, 37.372872],\n              [-81.933978, 37.37317],\n              [-81.933797, 37.373584],\n              [-81.933415, 37.37396],\n              [-81.932767, 37.374236],\n              [-81.932166, 37.374342],\n              [-81.931769, 37.374558],\n              [-81.93121, 37.375118],\n              [-81.931143, 37.375231],\n              [-81.931064, 37.375473],\n              [-81.931147, 37.375764],\n              [-81.931451, 37.376013],\n              [-81.931467, 37.376073],\n              [-81.931575, 37.376488],\n              [-81.93176, 37.377004],\n              [-81.931819, 37.377051],\n              [-81.932074, 37.377253],\n              [-81.932102, 37.377259],\n              [-81.932549, 37.377356],\n              [-81.932924, 37.377685],\n              [-81.933147, 37.377846],\n              [-81.933884, 37.377803],\n              [-81.93463, 37.377848],\n              [-81.934965, 37.378137],\n              [-81.935189, 37.378467],\n              [-81.93537, 37.378453],\n              [-81.935411, 37.37845],\n              [-81.935876, 37.378561],\n              [-81.93607, 37.378851],\n              [-81.936379, 37.379738],\n              [-81.936538, 37.380168],\n              [-81.936748, 37.380737],\n              [-81.936246, 37.381183],\n              [-81.936087, 37.381514],\n              [-81.93597, 37.382096],\n              [-81.935874, 37.382863],\n              [-81.935714, 37.383154],\n              [-81.935001, 37.38365],\n              [-81.934116, 37.384024],\n              [-81.933252, 37.38469],\n              [-81.93261, 37.385185],\n              [-81.931815, 37.385486],\n              [-81.931753, 37.385918],\n              [-81.931728, 37.386092],\n              [-81.931509, 37.386601],\n              [-81.931735, 37.387198],\n              [-81.93205, 37.38756],\n              [-81.932112, 37.387575],\n              [-81.932546, 37.387679],\n              [-81.933062, 37.387983],\n              [-81.933267, 37.388443],\n              [-81.933462, 37.388918],\n              [-81.933695, 37.389095],\n              [-81.933605, 37.389224],\n              [-81.933749, 37.389731],\n              [-81.933853, 37.390095],\n              [-81.933887, 37.390659],\n              [-81.933175, 37.39142],\n              [-81.933095, 37.3915],\n              [-81.932837, 37.391756],\n              [-81.932784, 37.391809],\n              [-81.932725, 37.392043],\n              [-81.932272, 37.39211],\n              [-81.931656, 37.392097],\n              [-81.930892, 37.392455],\n              [-81.929906, 37.392887],\n              [-81.929515, 37.393308],\n              [-81.928992, 37.393536],\n              [-81.928782, 37.393852],\n              [-81.928966, 37.394206],\n              [-81.929392, 37.394632],\n              [-81.929323, 37.394882],\n              [-81.929052, 37.395264],\n              [-81.928973, 37.395375],\n              [-81.928975, 37.395666],\n              [-81.929279, 37.395907],\n              [-81.929857, 37.396292],\n              [-81.92993, 37.396703],\n              [-81.929976, 37.396862],\n              [-81.930054, 37.397131],\n              [-81.929744, 37.397503],\n              [-81.929141, 37.397957],\n              [-81.928284, 37.398066],\n              [-81.92814, 37.398291],\n              [-81.928025, 37.39847],\n              [-81.927931, 37.398585],\n              [-81.927754, 37.398802],\n              [-81.927948, 37.399181],\n              [-81.928283, 37.399406],\n              [-81.92871, 37.399815],\n              [-81.928862, 37.39996],\n              [-81.928856, 37.400167],\n              [-81.928845, 37.400541],\n              [-81.929057, 37.400605],\n              [-81.929976, 37.400714],\n              [-81.930215, 37.401022],\n              [-81.930333, 37.401173],\n              [-81.93079, 37.401663],\n              [-81.930741, 37.401898],\n              [-81.930353, 37.402731],\n              [-81.930292, 37.402986],\n              [-81.930159, 37.40354],\n              [-81.930097, 37.403797],\n              [-81.930234, 37.404636],\n              [-81.930205, 37.40474],\n              [-81.930046, 37.405298],\n              [-81.929641, 37.4054],\n              [-81.929492, 37.405438],\n              [-81.928918, 37.405561],\n              [-81.928794, 37.405649],\n              [-81.928596, 37.405788],\n              [-81.928509, 37.406337],\n              [-81.928177, 37.40646],\n              [-81.928048, 37.40652],\n              [-81.927342, 37.406851],\n              [-81.925768, 37.406881],\n              [-81.925013, 37.407344],\n              [-81.924955, 37.407342],\n              [-81.924286, 37.407323],\n              [-81.924483, 37.407584],\n              [-81.92451, 37.40762],\n              [-81.924603, 37.407991],\n              [-81.924676, 37.40837],\n              [-81.924588, 37.408483],\n              [-81.924346, 37.408791],\n              [-81.924449, 37.409122],\n              [-81.924418, 37.40929],\n              [-81.92439, 37.409437],\n              [-81.924556, 37.409993],\n              [-81.924153, 37.410221],\n              [-81.923438, 37.410453],\n              [-81.923398, 37.410466],\n              [-81.923168, 37.410822],\n              [-81.92296, 37.411396],\n              [-81.923152, 37.411419],\n              [-81.923485, 37.411386],\n              [-81.92404, 37.411512],\n              [-81.924728, 37.411744],\n              [-81.925233, 37.411814],\n              [-81.925942, 37.412143],\n              [-81.926349, 37.412738],\n              [-81.926805, 37.412922],\n              [-81.927494, 37.413258],\n              [-81.927821, 37.41379],\n              [-81.928158, 37.414507],\n              [-81.929047, 37.414608],\n              [-81.929551, 37.414469],\n              [-81.930036, 37.414556],\n              [-81.93015, 37.414599],\n              [-81.930223, 37.414678],\n              [-81.930395, 37.41475],\n              [-81.930455, 37.414798],\n              [-81.930631, 37.414832],\n              [-81.930758, 37.414829],\n              [-81.931, 37.414811],\n              [-81.931172, 37.414835],\n              [-81.931219, 37.41489],\n              [-81.932472, 37.415224],\n              [-81.932802, 37.415582],\n              [-81.932909, 37.415698],\n              [-81.933644, 37.416882],\n              [-81.933969, 37.417139],\n              [-81.934293, 37.417412],\n              [-81.934448, 37.417936],\n              [-81.934555, 37.418888],\n              [-81.934977, 37.420024],\n              [-81.935239, 37.420103],\n              [-81.935996, 37.42002],\n              [-81.936954, 37.419927],\n              [-81.937581, 37.420054],\n              [-81.937884, 37.420093],\n              [-81.93781, 37.421191],\n              [-81.938062, 37.421529],\n              [-81.938157, 37.421657],\n              [-81.938916, 37.422009],\n              [-81.938888, 37.422373],\n              [-81.938912, 37.422954],\n              [-81.938573, 37.423585],\n              [-81.938294, 37.424054],\n              [-81.938495, 37.424276],\n              [-81.938578, 37.424367],\n              [-81.939046, 37.424955],\n              [-81.93912, 37.425455],\n              [-81.939286, 37.426084],\n              [-81.939543, 37.426777],\n              [-81.940158, 37.428195],\n              [-81.940306, 37.428428],\n              [-81.940423, 37.428613],\n              [-81.940557, 37.429065],\n              [-81.940287, 37.429332],\n              [-81.939937, 37.429874],\n              [-81.939465, 37.430191],\n              [-81.938831, 37.430581],\n              [-81.938481, 37.431115],\n              [-81.938334, 37.431697],\n              [-81.937842, 37.432118],\n              [-81.936913, 37.432146],\n              [-81.936317, 37.432036],\n              [-81.935651, 37.432006],\n              [-81.935601, 37.432216],\n              [-81.935826, 37.432514],\n              [-81.935979, 37.43286],\n              [-81.936614, 37.433187],\n              [-81.936648, 37.433205],\n              [-81.936713, 37.433314],\n              [-81.936923, 37.433664],\n              [-81.937178, 37.434002],\n              [-81.937111, 37.434623],\n              [-81.936843, 37.435286],\n              [-81.936847, 37.435827],\n              [-81.936778, 37.436053],\n              [-81.936752, 37.436117],\n              [-81.93655, 37.436174],\n              [-81.935471, 37.436324],\n              [-81.93532, 37.436397],\n              [-81.935211, 37.436616],\n              [-81.935213, 37.43693],\n              [-81.93522, 37.436949],\n              [-81.93548, 37.437687],\n              [-81.935544, 37.438005],\n              [-81.935625, 37.438404],\n              [-81.935879, 37.438564],\n              [-81.93596, 37.438725],\n              [-81.936265, 37.43903],\n              [-81.936802, 37.439342],\n              [-81.936954, 37.43943],\n              [-81.937793, 37.439669],\n              [-81.938015, 37.439651],\n              [-81.938086, 37.439812],\n              [-81.938122, 37.439856],\n              [-81.93832, 37.440102],\n              [-81.938544, 37.440351],\n              [-81.938847, 37.44047],\n              [-81.939321, 37.440395],\n              [-81.939569, 37.440324],\n              [-81.939634, 37.440305],\n              [-81.939689, 37.440318],\n              [-81.939997, 37.440392],\n              [-81.940644, 37.440494],\n              [-81.941179, 37.440492],\n              [-81.941642, 37.440417],\n              [-81.941963, 37.440117],\n              [-81.942094, 37.439963],\n              [-81.942082, 37.439817],\n              [-81.942072, 37.439697],\n              [-81.942121, 37.439479],\n              [-81.942243, 37.439648],\n              [-81.942343, 37.439714],\n              [-81.942537, 37.43984],\n              [-81.94286, 37.439936],\n              [-81.942996, 37.439932],\n              [-81.943214, 37.439926],\n              [-81.943617, 37.439956],\n              [-81.943679, 37.439965],\n              [-81.943941, 37.440003],\n              [-81.944293, 37.439929],\n              [-81.944606, 37.439879],\n              [-81.945144, 37.439986],\n              [-81.945202, 37.439998],\n              [-81.945769, 37.440221],\n              [-81.945831, 37.440495],\n              [-81.945847, 37.44068],\n              [-81.945896, 37.441252],\n              [-81.945899, 37.441712],\n              [-81.945981, 37.441825],\n              [-81.946274, 37.441888],\n              [-81.946799, 37.442022],\n              [-81.947418, 37.442471],\n              [-81.947805, 37.443074],\n              [-81.947919, 37.443461],\n              [-81.947901, 37.443864],\n              [-81.947983, 37.444106],\n              [-81.948379, 37.444523],\n              [-81.948855, 37.44465],\n              [-81.94916, 37.445028],\n              [-81.949166, 37.445218],\n              [-81.949172, 37.445391],\n              [-81.949128, 37.445582],\n              [-81.949371, 37.445694],\n              [-81.949937, 37.445813],\n              [-81.950817, 37.445963],\n              [-81.951958, 37.445974],\n              [-81.952898, 37.446196],\n              [-81.95406, 37.446328],\n              [-81.954114, 37.446372],\n              [-81.954252, 37.446484],\n              [-81.954284, 37.44651],\n              [-81.954446, 37.446642],\n              [-81.955095, 37.447034],\n              [-81.955695, 37.447605],\n              [-81.955988, 37.447716],\n              [-81.95687, 37.44827],\n              [-81.957429, 37.4488],\n              [-81.957431, 37.449058],\n              [-81.957583, 37.44913],\n              [-81.957794, 37.448936],\n              [-81.958184, 37.448482],\n              [-81.958676, 37.448052],\n              [-81.959424, 37.447944],\n              [-81.960162, 37.448143],\n              [-81.960597, 37.448222],\n              [-81.960828, 37.448059],\n              [-81.961133, 37.44782],\n              [-81.961147, 37.447809],\n              [-81.96121, 37.447759],\n              [-81.961824, 37.447603],\n              [-81.962032, 37.447652],\n              [-81.96233, 37.447722],\n              [-81.962947, 37.447881],\n              [-81.963026, 37.447859],\n              [-81.96336, 37.447766],\n              [-81.964146, 37.447488],\n              [-81.964276, 37.447522],\n              [-81.964331, 37.447536],\n              [-81.964404, 37.447555],\n              [-81.964571, 37.447599],\n              [-81.964843, 37.447477],\n              [-81.96556, 37.446944],\n              [-81.965586, 37.446925],\n              [-81.966322, 37.446728],\n              [-81.967019, 37.446838],\n              [-81.967977, 37.4466],\n              [-81.968524, 37.44684],\n              [-81.969051, 37.447136],\n              [-81.969658, 37.447408],\n              [-81.970387, 37.447695],\n              [-81.970474, 37.448574],\n              [-81.970255, 37.448995],\n              [-81.970058, 37.449374],\n              [-81.97004, 37.449409],\n              [-81.970016, 37.449456],\n              [-81.969646, 37.44995],\n              [-81.969346, 37.450331],\n              [-81.969097, 37.45084],\n              [-81.968799, 37.451503],\n              [-81.969082, 37.451631],\n              [-81.969467, 37.451799],\n              [-81.969903, 37.452104],\n              [-81.970268, 37.452256],\n              [-81.970653, 37.45244],\n              [-81.971169, 37.452647],\n              [-81.971435, 37.452828],\n              [-81.971758, 37.453048],\n              [-81.972415, 37.453215],\n              [-81.972669, 37.453407],\n              [-81.972813, 37.45377],\n              [-81.972967, 37.454116],\n              [-81.973303, 37.454438],\n              [-81.973558, 37.45488],\n              [-81.973489, 37.455139],\n              [-81.973339, 37.455333],\n              [-81.973181, 37.455439],\n              [-81.973163, 37.455451],\n              [-81.973153, 37.455458],\n              [-81.972997, 37.455561],\n              [-81.97313, 37.455697],\n              [-81.973282, 37.455858],\n              [-81.973385, 37.456076],\n              [-81.973406, 37.456197],\n              [-81.973698, 37.456074],\n              [-81.974364, 37.456039],\n              [-81.974492, 37.456056],\n              [-81.97478, 37.456095],\n              [-81.974829, 37.456102],\n              [-81.974835, 37.456117],\n              [-81.974844, 37.456141],\n              [-81.974932, 37.456367],\n              [-81.975015, 37.456633],\n              [-81.975308, 37.456713],\n              [-81.975652, 37.456784],\n              [-81.97618, 37.457193],\n              [-81.976655, 37.457207],\n              [-81.977503, 37.457187],\n              [-81.978089, 37.457322],\n              [-81.978654, 37.457223],\n              [-81.979187, 37.457111],\n              [-81.9794, 37.457066],\n              [-81.980017, 37.457217],\n              [-81.980258, 37.456981],\n              [-81.980671, 37.45677],\n              [-81.98141, 37.456147],\n              [-81.981614, 37.455975],\n              [-81.982412, 37.455613],\n              [-81.982439, 37.4556],\n              [-81.983094, 37.455234],\n              [-81.984554, 37.45459],\n              [-81.984895, 37.454322],\n              [-81.985531, 37.454335],\n              [-81.986209, 37.454526],\n              [-81.98701, 37.454885],\n              [-81.987538, 37.455343],\n              [-81.987642, 37.455786],\n              [-81.987735, 37.456093],\n              [-81.98793, 37.456431],\n              [-81.987817, 37.457468],\n              [-81.987816, 37.45748],\n              [-81.987633, 37.458668],\n              [-81.987857, 37.458893],\n              [-81.988223, 37.459222],\n              [-81.988457, 37.459536],\n              [-81.988905, 37.460042],\n              [-81.989526, 37.460677],\n              [-81.99, 37.460602],\n              [-81.990839, 37.460776],\n              [-81.991577, 37.460893],\n              [-81.992274, 37.460923],\n              [-81.992237, 37.461326],\n              [-81.992433, 37.461866],\n              [-81.992761, 37.462502],\n              [-81.993427, 37.463879],\n              [-81.993574, 37.464637],\n              [-81.993322, 37.466059],\n              [-81.993409, 37.466946],\n              [-81.993141, 37.467529],\n              [-81.993014, 37.468175],\n              [-81.992976, 37.468457],\n              [-81.993373, 37.468851],\n              [-81.994021, 37.469154],\n              [-81.994111, 37.469198],\n              [-81.994152, 37.469218],\n              [-81.994873, 37.46957],\n              [-81.995653, 37.46984],\n              [-81.99582, 37.470663],\n              [-81.996079, 37.471533],\n              [-81.996022, 37.47205],\n              [-81.995711, 37.472229],\n              [-81.995257, 37.472312],\n              [-81.995308, 37.472473],\n              [-81.995478, 37.472696],\n              [-81.995507, 37.472735],\n              [-81.995553, 37.472795],\n              [-81.995537, 37.473311],\n              [-81.995628, 37.47365],\n              [-81.995682, 37.473851],\n              [-81.995959, 37.474447],\n              [-81.995942, 37.474646],\n              [-81.995933, 37.474758],\n              [-81.995913, 37.474996],\n              [-81.995837, 37.475659],\n              [-81.99595, 37.475835],\n              [-81.99596, 37.47585],\n              [-81.996164, 37.476166],\n              [-81.996582, 37.476712],\n              [-81.996503, 37.476931],\n              [-81.996237, 37.477066],\n              [-81.996222, 37.477073],\n              [-81.9961, 37.477134],\n              [-81.995859, 37.477413],\n              [-81.99578, 37.477507],\n              [-81.995601, 37.477887],\n              [-81.994927, 37.478229],\n              [-81.994563, 37.478473],\n              [-81.993981, 37.478863],\n              [-81.992978, 37.479804],\n              [-81.993061, 37.480199],\n              [-81.993155, 37.48057],\n              [-81.992975, 37.480853],\n              [-81.992746, 37.481225],\n              [-81.992537, 37.481686],\n              [-81.992528, 37.481832],\n              [-81.992771, 37.482115],\n              [-81.992803, 37.482153],\n              [-81.992836, 37.482556],\n              [-81.99292, 37.482976],\n              [-81.992628, 37.48313],\n              [-81.992401, 37.483181],\n              [-81.99171, 37.483336],\n              [-81.991517, 37.48358],\n              [-81.99139, 37.483741],\n              [-81.991231, 37.484138],\n              [-81.9909, 37.484438],\n              [-81.990265, 37.484618],\n              [-81.989853, 37.484886],\n              [-81.989659, 37.484918],\n              [-81.989137, 37.485003],\n              [-81.988047, 37.485177],\n              [-81.987549, 37.485179],\n              [-81.987138, 37.485181],\n              [-81.986667, 37.485409],\n              [-81.986584, 37.48545],\n              [-81.985808, 37.485661],\n              [-81.985707, 37.485688],\n              [-81.984806, 37.485474],\n              [-81.98454, 37.485246],\n              [-81.984328, 37.485064],\n              [-81.983863, 37.484978],\n              [-81.983066, 37.485159],\n              [-81.982278, 37.485114],\n              [-81.98135, 37.48532],\n              [-81.980331, 37.485454],\n              [-81.979763, 37.485117],\n              [-81.979173, 37.484611],\n              [-81.978122, 37.484584],\n              [-81.977597, 37.48461],\n              [-81.977447, 37.484853],\n              [-81.977407, 37.484918],\n              [-81.977346, 37.48494],\n              [-81.976833, 37.485122],\n              [-81.976472, 37.485472],\n              [-81.976444, 37.485826],\n              [-81.976495, 37.486089],\n              [-81.976518, 37.486205],\n              [-81.976397, 37.486303],\n              [-81.976206, 37.486456],\n              [-81.976027, 37.486788],\n              [-81.975948, 37.48724],\n              [-81.975759, 37.487701],\n              [-81.975175, 37.487873],\n              [-81.973882, 37.487912],\n              [-81.973236, 37.488004],\n              [-81.972853, 37.488167],\n              [-81.972522, 37.488499],\n              [-81.972199, 37.488557],\n              [-81.971664, 37.488568],\n              [-81.971076, 37.488513],\n              [-81.970663, 37.488475],\n              [-81.970604, 37.488621],\n              [-81.970707, 37.488959],\n              [-81.970832, 37.489443],\n              [-81.970734, 37.489911],\n              [-81.9702, 37.490107],\n              [-81.969515, 37.490377],\n              [-81.968718, 37.490501],\n              [-81.967707, 37.490506],\n              [-81.967489, 37.490599],\n              [-81.967133, 37.49075],\n              [-81.966754, 37.491389],\n              [-81.966633, 37.491562],\n              [-81.966584, 37.491632],\n              [-81.966636, 37.491898],\n              [-81.96668, 37.492214],\n              [-81.9667, 37.492358],\n              [-81.966645, 37.492409],\n              [-81.966348, 37.492682],\n              [-81.965967, 37.493023],\n              [-81.965327, 37.493334],\n              [-81.96499, 37.493495],\n              [-81.963929, 37.4935],\n              [-81.963514, 37.493365],\n              [-81.962547, 37.49305],\n              [-81.961114, 37.492584],\n              [-81.960346, 37.492555],\n              [-81.960313, 37.492543],\n              [-81.959587, 37.492292],\n              [-81.959357, 37.492189],\n              [-81.958411, 37.491764],\n              [-81.958055, 37.491689],\n              [-81.957217, 37.491511],\n              [-81.955915, 37.491581],\n              [-81.954369, 37.491684],\n              [-81.953842, 37.491509],\n              [-81.953268, 37.49177],\n              [-81.952685, 37.492281],\n              [-81.95276, 37.492886],\n              [-81.952694, 37.493507],\n              [-81.952739, 37.494169],\n              [-81.953092, 37.494259],\n              [-81.953174, 37.49428],\n              [-81.953571, 37.494698],\n              [-81.954171, 37.495309],\n              [-81.954368, 37.496091],\n              [-81.954273, 37.496979],\n              [-81.954277, 37.497536],\n              [-81.954078, 37.497994],\n              [-81.953999, 37.498175],\n              [-81.954032, 37.49861],\n              [-81.953853, 37.499095],\n              [-81.953896, 37.499434],\n              [-81.954081, 37.499829],\n              [-81.95389, 37.500117],\n              [-81.953151, 37.501321],\n              [-81.952645, 37.501685],\n              [-81.951835, 37.502057],\n              [-81.950549, 37.50226],\n              [-81.949192, 37.502383],\n              [-81.948321, 37.50227],\n              [-81.94745, 37.502133],\n              [-81.946335, 37.5019],\n              [-81.945961, 37.501908],\n              [-81.945353, 37.502272],\n              [-81.944715, 37.502604],\n              [-81.943916, 37.502936],\n              [-81.943825, 37.503291],\n              [-81.943897, 37.505683],\n              [-81.944161, 37.506337],\n              [-81.944192, 37.506983],\n              [-81.943251, 37.508293],\n              [-81.943049, 37.508616],\n              [-81.942644, 37.508851],\n              [-81.941439, 37.509312],\n              [-81.941155, 37.50949],\n              [-81.940801, 37.509442],\n              [-81.940193, 37.509216],\n              [-81.939453, 37.509508],\n              [-81.938147, 37.510114],\n              [-81.936547, 37.510479],\n              [-81.935058, 37.510512],\n              [-81.933428, 37.511248],\n              [-81.932283, 37.511968],\n              [-81.931918, 37.512211],\n              [-81.92773, 37.512121],\n              [-81.927685, 37.51212],\n              [-81.92764, 37.512152],\n              [-81.927399, 37.512372],\n              [-81.927216, 37.512554],\n              [-81.927054, 37.512718],\n              [-81.926681, 37.513064],\n              [-81.92644, 37.513328],\n              [-81.926247, 37.513581],\n              [-81.926171, 37.513778],\n              [-81.926143, 37.513987],\n              [-81.926162, 37.514066],\n              [-81.926198, 37.514218],\n              [-81.926254, 37.514377],\n              [-81.926357, 37.51457],\n              [-81.926416, 37.514647],\n              [-81.926467, 37.514712],\n              [-81.926729, 37.51496],\n              [-81.926943, 37.515086],\n              [-81.927053, 37.515163],\n              [-81.927198, 37.515339],\n              [-81.927302, 37.515377],\n              [-81.927516, 37.515432],\n              [-81.927771, 37.515526],\n              [-81.928074, 37.515614],\n              [-81.928281, 37.515685],\n              [-81.928542, 37.515802],\n              [-81.928943, 37.515982],\n              [-81.929185, 37.516108],\n              [-81.929343, 37.51618],\n              [-81.929509, 37.516235],\n              [-81.92964, 37.516251],\n              [-81.929957, 37.516262],\n              [-81.930137, 37.516306],\n              [-81.930247, 37.51635],\n              [-81.930461, 37.51646],\n              [-81.930502, 37.516487],\n              [-81.930585, 37.51657],\n              [-81.93075, 37.51663],\n              [-81.930957, 37.516746],\n              [-81.931068, 37.516839],\n              [-81.931364, 37.51713],\n              [-81.931647, 37.51746],\n              [-81.931806, 37.517619],\n              [-81.932082, 37.518026],\n              [-81.932185, 37.518147],\n              [-81.932351, 37.518421],\n              [-81.932792, 37.518993],\n              [-81.93304, 37.519251],\n              [-81.933206, 37.519377],\n              [-81.933268, 37.51941],\n              [-81.933358, 37.519443],\n              [-81.933523, 37.519482],\n              [-81.933744, 37.519498],\n              [-81.934061, 37.519476],\n              [-81.934179, 37.519454],\n              [-81.934468, 37.519372],\n              [-81.934492, 37.519362],\n              [-81.93473, 37.519268],\n              [-81.934792, 37.519229],\n              [-81.934834, 37.519191],\n              [-81.935006, 37.519009],\n              [-81.935324, 37.518603],\n              [-81.935496, 37.518306],\n              [-81.935558, 37.518169],\n              [-81.935606, 37.518009],\n              [-81.935867, 37.517397],\n              [-81.935896, 37.517328],\n              [-81.935986, 37.517048],\n              [-81.936013, 37.516889],\n              [-81.936041, 37.516466],\n              [-81.93603, 37.516295],\n              [-81.936013, 37.515999],\n              [-81.936103, 37.515427],\n              [-81.93642, 37.514949],\n              [-81.93642, 37.514894],\n              [-81.936503, 37.514724],\n              [-81.936669, 37.51446],\n              [-81.937014, 37.514158],\n              [-81.937393, 37.513845],\n              [-81.937736, 37.513607],\n              [-81.937765, 37.513587],\n              [-81.938255, 37.513372],\n              [-81.938739, 37.513102],\n              [-81.938903, 37.51301],\n              [-81.939007, 37.512965],\n              [-81.939088, 37.512931],\n              [-81.939168, 37.512897],\n              [-81.939469, 37.512768],\n              [-81.939993, 37.512598],\n              [-81.940204, 37.512572],\n              [-81.940642, 37.512521],\n              [-81.940938, 37.512521],\n              [-81.941352, 37.512477],\n              [-81.941462, 37.512477],\n              [-81.941911, 37.512504],\n              [-81.942449, 37.512592],\n              [-81.942621, 37.51263],\n              [-81.943421, 37.512878],\n              [-81.94378, 37.513026],\n              [-81.944263, 37.513284],\n              [-81.944659, 37.513578],\n              [-81.944752, 37.513647],\n              [-81.944821, 37.513746],\n              [-81.944821, 37.513927],\n              [-81.944801, 37.514114],\n              [-81.944677, 37.514229],\n              [-81.944635, 37.514306],\n              [-81.944649, 37.514367],\n              [-81.944718, 37.514487],\n              [-81.944752, 37.514564],\n              [-81.944877, 37.514773],\n              [-81.944954, 37.514932],\n              [-81.945015, 37.515059],\n              [-81.945035, 37.515075],\n              [-81.945056, 37.51518],\n              [-81.945056, 37.515295],\n              [-81.945084, 37.515377],\n              [-81.945187, 37.515603],\n              [-81.945318, 37.515822],\n              [-81.945415, 37.516075],\n              [-81.945449, 37.516229],\n              [-81.945453, 37.516357],\n              [-81.945456, 37.51641],\n              [-81.945442, 37.51652],\n              [-81.945374, 37.51673],\n              [-81.945325, 37.516883],\n              [-81.945208, 37.517141],\n              [-81.945029, 37.517388],\n              [-81.944953, 37.517503],\n              [-81.944691, 37.517899],\n              [-81.944553, 37.518081],\n              [-81.944529, 37.518121],\n              [-81.944153, 37.518767],\n              [-81.944091, 37.518971],\n              [-81.943989, 37.519107],\n              [-81.943884, 37.519245],\n              [-81.943774, 37.519421],\n              [-81.943677, 37.519553],\n              [-81.943587, 37.519647],\n              [-81.943511, 37.519795],\n              [-81.943463, 37.52002],\n              [-81.943498, 37.520273],\n              [-81.943505, 37.520553],\n              [-81.943498, 37.520641],\n              [-81.943512, 37.520767],\n              [-81.943622, 37.52113],\n              [-81.943725, 37.52135],\n              [-81.943919, 37.521657],\n              [-81.944174, 37.521949],\n              [-81.944236, 37.522004],\n              [-81.94436, 37.52208],\n              [-81.944652, 37.522284],\n              [-81.944698, 37.522317],\n              [-81.94505, 37.52258],\n              [-81.945312, 37.522745],\n              [-81.945719, 37.523042],\n              [-81.945996, 37.523218],\n              [-81.946099, 37.523284],\n              [-81.94625, 37.52341],\n              [-81.94663, 37.523696],\n              [-81.946726, 37.5238],\n              [-81.947037, 37.524239],\n              [-81.947172, 37.524454],\n              [-81.947196, 37.524492],\n              [-81.947299, 37.524635],\n              [-81.947485, 37.524965],\n              [-81.947617, 37.525448],\n              [-81.947603, 37.525712],\n              [-81.947617, 37.525915],\n              [-81.947596, 37.526064],\n              [-81.947596, 37.526657],\n              [-81.947582, 37.526805],\n              [-81.947465, 37.526998],\n              [-81.947424, 37.527091],\n              [-81.947403, 37.527168],\n              [-81.947389, 37.5273],\n              [-81.947348, 37.527459],\n              [-81.947127, 37.527833],\n              [-81.946982, 37.528036],\n              [-81.946817, 37.528239],\n              [-81.946672, 37.528399],\n              [-81.946389, 37.528679],\n              [-81.946042, 37.528985],\n              [-81.94601, 37.529014],\n              [-81.945768, 37.529206],\n              [-81.945685, 37.52925],\n              [-81.945437, 37.529338],\n              [-81.945278, 37.529432],\n              [-81.94494, 37.529586],\n              [-81.944588, 37.529783],\n              [-81.944541, 37.52982],\n              [-81.944457, 37.529888],\n              [-81.944414, 37.52991],\n              [-81.944285, 37.529981],\n              [-81.944175, 37.530053],\n              [-81.944027, 37.530173],\n              [-81.943926, 37.530256],\n              [-81.943911, 37.530277],\n              [-81.943816, 37.530404],\n              [-81.943781, 37.530514],\n              [-81.943733, 37.530734],\n              [-81.94374, 37.530888],\n              [-81.943761, 37.530976],\n              [-81.943806, 37.531091],\n              [-81.943809, 37.531097],\n              [-81.943857, 37.531168],\n              [-81.943968, 37.531289],\n              [-81.944078, 37.531366],\n              [-81.944257, 37.531448],\n              [-81.944444, 37.531487],\n              [-81.944982, 37.531558],\n              [-81.945168, 37.531563],\n              [-81.945348, 37.53158],\n              [-81.945493, 37.531613],\n              [-81.945762, 37.53186],\n              [-81.945913, 37.531943],\n              [-81.945982, 37.53197],\n              [-81.946136, 37.531978],\n              [-81.946189, 37.531981],\n              [-81.946258, 37.53197],\n              [-81.946479, 37.53191],\n              [-81.946624, 37.531838],\n              [-81.946686, 37.531794],\n              [-81.946755, 37.531728],\n              [-81.9469, 37.531635],\n              [-81.94691, 37.53163],\n              [-81.946986, 37.531595],\n              [-81.947045, 37.531569],\n              [-81.947094, 37.53153],\n              [-81.947107, 37.531514],\n              [-81.947072, 37.531475],\n              [-81.947021, 37.53146],\n              [-81.94694, 37.531438],\n              [-81.946914, 37.531431],\n              [-81.946893, 37.531404],\n              [-81.946902, 37.531387],\n              [-81.947203, 37.531316],\n              [-81.947562, 37.531206],\n              [-81.947779, 37.531146],\n              [-81.947962, 37.531096],\n              [-81.948128, 37.531036],\n              [-81.9483, 37.530986],\n              [-81.948583, 37.530865],\n              [-81.948624, 37.53086],\n              [-81.948659, 37.530871],\n              [-81.948666, 37.53092],\n              [-81.948659, 37.530981],\n              [-81.948714, 37.530981],\n              [-81.948873, 37.530893],\n              [-81.949142, 37.530712],\n              [-81.949356, 37.530607],\n              [-81.949466, 37.530541],\n              [-81.949777, 37.530321],\n              [-81.949901, 37.530211],\n              [-81.950025, 37.530124],\n              [-81.950149, 37.530019],\n              [-81.950272, 37.529944],\n              [-81.950908, 37.529563],\n              [-81.951046, 37.52947],\n              [-81.951094, 37.529431],\n              [-81.951108, 37.529415],\n              [-81.951163, 37.529354],\n              [-81.951171, 37.52934],\n              [-81.951232, 37.529239],\n              [-81.951301, 37.529162],\n              [-81.95136, 37.52912],\n              [-81.951441, 37.529064],\n              [-81.951598, 37.528953],\n              [-81.951742, 37.528882],\n              [-81.952005, 37.528843],\n              [-81.952115, 37.52881],\n              [-81.952281, 37.528739],\n              [-81.952584, 37.528535],\n              [-81.952722, 37.528415],\n              [-81.952783, 37.528382],\n              [-81.952846, 37.528349],\n              [-81.952915, 37.528321],\n              [-81.953025, 37.528294],\n              [-81.953398, 37.528217],\n              [-81.953764, 37.528167],\n              [-81.954184, 37.528151],\n              [-81.954847, 37.528205],\n              [-81.955357, 37.528288],\n              [-81.955599, 37.528315],\n              [-81.955799, 37.528354],\n              [-81.955971, 37.528398],\n              [-81.956254, 37.528485],\n              [-81.956413, 37.528546],\n              [-81.956509, 37.528601],\n              [-81.956647, 37.528694],\n              [-81.956758, 37.528787],\n              [-81.957065, 37.529144],\n              [-81.957075, 37.529156],\n              [-81.957393, 37.529612],\n              [-81.957476, 37.529798],\n              [-81.957552, 37.530035],\n              [-81.957558, 37.530095],\n              [-81.957565, 37.530359],\n              [-81.957579, 37.53048],\n              [-81.957576, 37.530542],\n              [-81.957572, 37.530606],\n              [-81.957586, 37.530716],\n              [-81.957593, 37.530941],\n              [-81.957559, 37.531348],\n              [-81.957393, 37.532375],\n              [-81.957387, 37.532551],\n              [-81.957394, 37.532661],\n              [-81.957336, 37.533115],\n              [-81.957332, 37.53315],\n              [-81.957263, 37.533469],\n              [-81.957166, 37.533688],\n              [-81.95709, 37.533809],\n              [-81.956814, 37.534172],\n              [-81.956649, 37.534425],\n              [-81.956677, 37.5346],\n              [-81.956822, 37.53487],\n              [-81.956987, 37.53504],\n              [-81.957084, 37.535166],\n              [-81.957215, 37.535309],\n              [-81.957291, 37.53538],\n              [-81.957381, 37.535446],\n              [-81.957532, 37.535512],\n              [-81.957622, 37.535523],\n              [-81.957732, 37.535529],\n              [-81.958057, 37.535512],\n              [-81.958312, 37.535545],\n              [-81.95854, 37.535545],\n              [-81.95874, 37.535572],\n              [-81.958843, 37.535578],\n              [-81.958933, 37.535578],\n              [-81.959285, 37.535545],\n              [-81.959664, 37.535468],\n              [-81.960354, 37.535276],\n              [-81.960775, 37.535089],\n              [-81.961009, 37.534962],\n              [-81.961347, 37.534797],\n              [-81.96181, 37.534616],\n              [-81.962151, 37.534498],\n              [-81.962355, 37.534429],\n              [-81.962582, 37.534308],\n              [-81.962741, 37.534242],\n              [-81.963045, 37.53416],\n              [-81.963486, 37.534022],\n              [-81.964203, 37.53372],\n              [-81.964321, 37.533659],\n              [-81.964567, 37.533572],\n              [-81.964679, 37.533527],\n              [-81.964828, 37.533485],\n              [-81.964893, 37.533467],\n              [-81.964983, 37.53345],\n              [-81.965328, 37.533335],\n              [-81.965622, 37.53325],\n              [-81.965888, 37.533175],\n              [-81.9661, 37.53311],\n              [-81.966314, 37.53306],\n              [-81.966611, 37.532977],\n              [-81.966804, 37.532939],\n              [-81.966949, 37.532923],\n              [-81.967087, 37.532928],\n              [-81.967177, 37.532944],\n              [-81.967349, 37.532993],\n              [-81.967466, 37.533027],\n              [-81.967618, 37.53306],\n              [-81.967722, 37.533104],\n              [-81.967908, 37.533224],\n              [-81.968205, 37.533461],\n              [-81.96844, 37.533691],\n              [-81.968543, 37.533812],\n              [-81.96864, 37.533906],\n              [-81.968833, 37.534175],\n              [-81.96893, 37.534372],\n              [-81.968992, 37.534548],\n              [-81.969006, 37.534636],\n              [-81.96902, 37.535087],\n              [-81.968978, 37.535559],\n              [-81.968958, 37.53568],\n              [-81.96893, 37.535708],\n              [-81.968896, 37.535768],\n              [-81.968882, 37.535823],\n              [-81.968696, 37.536257],\n              [-81.968522, 37.536592],\n              [-81.968489, 37.536658],\n              [-81.96842, 37.536812],\n              [-81.96833, 37.536949],\n              [-81.96831, 37.537043],\n              [-81.968337, 37.53718],\n              [-81.968331, 37.537252],\n              [-81.968275, 37.537378],\n              [-81.968241, 37.53751],\n              [-81.968158, 37.53773],\n              [-81.968119, 37.537816],\n              [-81.968016, 37.538042],\n              [-81.979919, 37.529665],\n              [-81.980096, 37.529542],\n              [-81.985175, 37.526007],\n              [-81.988927, 37.523389],\n              [-81.996059, 37.518423],\n              [-82.002675, 37.513796],\n              [-82.002748, 37.513746],\n              [-82.008864, 37.50946],\n              [-82.009015, 37.509353],\n              [-82.018232, 37.502889],\n              [-82.018307, 37.502836],\n              [-82.02079, 37.501096],\n              [-82.022371, 37.499985],\n              [-82.02375, 37.499043],\n              [-82.027692, 37.496343],\n              [-82.031326, 37.493857],\n              [-82.035261, 37.491164],\n              [-82.042408, 37.486274],\n              [-82.043166, 37.485755],\n              [-82.050306, 37.48087],\n              [-82.050659, 37.480628],\n              [-82.050721, 37.480585],\n              [-82.051073, 37.480344],\n              [-82.062024, 37.471645],\n              [-82.062055, 37.471627],\n              [-82.062441, 37.471353],\n              [-82.062896, 37.471034],\n              [-82.062936, 37.471007],\n              [-82.062979, 37.470976],\n              [-82.063199, 37.470823],\n              [-82.075044, 37.462521],\n              [-82.079471, 37.459419],\n              [-82.079651, 37.459292],\n              [-82.079866, 37.459143],\n              [-82.087333, 37.453909],\n              [-82.087392, 37.453868],\n              [-82.092264, 37.450453],\n              [-82.095156, 37.448392],\n              [-82.096005, 37.447788],\n              [-82.096746, 37.447262],\n              [-82.10104, 37.444202],\n              [-82.110064, 37.437853],\n              [-82.110123, 37.437812],\n              [-82.110262, 37.437715],\n              [-82.111545, 37.436816],\n              [-82.111872, 37.43659],\n              [-82.112119, 37.436417],\n              [-82.117034, 37.432984],\n              [-82.117098, 37.432939],\n              [-82.118777, 37.431767],\n              [-82.123409, 37.428446],\n              [-82.123973, 37.428056],\n              [-82.124049, 37.427999],\n              [-82.136748, 37.419182],\n              [-82.138149, 37.418209],\n              [-82.141568, 37.415834],\n              [-82.142987, 37.414849],\n              [-82.144445, 37.413859],\n              [-82.144495, 37.413826],\n              [-82.144805, 37.413615],\n              [-82.14978, 37.410235],\n              [-82.150076, 37.410035],\n              [-82.155342, 37.406461],\n              [-82.160024, 37.403295],\n              [-82.163859, 37.400667],\n              [-82.166556, 37.398807],\n              [-82.173417, 37.394078],\n              [-82.178978, 37.390302],\n              [-82.184016, 37.386873],\n              [-82.184909, 37.386268],\n              [-82.189043, 37.383451],\n              [-82.189857, 37.382898],\n              [-82.193687, 37.380287],\n              [-82.19643, 37.378399],\n              [-82.20258, 37.37417],\n              [-82.203026, 37.373862],\n              [-82.20311, 37.373805],\n              [-82.204146, 37.373092],\n              [-82.2115, 37.368033],\n              [-82.212214, 37.367541],\n              [-82.215094, 37.365503],\n              [-82.215163, 37.365455],\n              [-82.216574, 37.364455],\n              [-82.216929, 37.364203],\n              [-82.217195, 37.364015],\n              [-82.217294, 37.363944],\n              [-82.217449, 37.363837],\n              [-82.217629, 37.363708],\n              [-82.217824, 37.363572],\n              [-82.218713, 37.362939],\n              [-82.223917, 37.359249],\n              [-82.224947, 37.358528],\n              [-82.225235, 37.358322],\n              [-82.226291, 37.357576],\n              [-82.226629, 37.357334],\n              [-82.227567, 37.356666],\n              [-82.231715, 37.353729],\n              [-82.233632, 37.352383],\n              [-82.234007, 37.352122],\n              [-82.234113, 37.352048],\n              [-82.240977, 37.347236],\n              [-82.24144, 37.346913],\n              [-82.241915, 37.346578],\n              [-82.242122, 37.346435],\n              [-82.246197, 37.343572],\n              [-82.247064, 37.342967],\n              [-82.254517, 37.337748],\n              [-82.259933, 37.33395],\n              [-82.263768, 37.331228],\n              [-82.265686, 37.329868],\n              [-82.268335, 37.328007],\n              [-82.274741, 37.323541],\n              [-82.275688, 37.322884],\n              [-82.275873, 37.322756],\n              [-82.277501, 37.321637],\n              [-82.278902, 37.320673],\n              [-82.279442, 37.3203],\n              [-82.280872, 37.319318],\n              [-82.282213, 37.318395],\n              [-82.283111, 37.317767],\n              [-82.286158, 37.315635],\n              [-82.286394, 37.315469],\n              [-82.286449, 37.31543],\n              [-82.286796, 37.315188],\n              [-82.287674, 37.314574],\n              [-82.288878, 37.313731],\n              [-82.289008, 37.313641],\n              [-82.289106, 37.313573],\n              [-82.289287, 37.313443],\n              [-82.292194, 37.311411],\n              [-82.301019, 37.305236],\n              [-82.308456, 37.30007],\n              [-82.309294, 37.29949],\n              [-82.314356, 37.295973],\n              [-82.314624, 37.295789],\n              [-82.314845, 37.295631],\n              [-82.315615, 37.295095],\n              [-82.315759, 37.295005],\n              [-82.315883, 37.294926],\n              [-82.316012, 37.294837],\n              [-82.316128, 37.294727],\n              [-82.316252, 37.294529],\n              [-82.316285, 37.294381],\n              [-82.316277, 37.294249],\n              [-82.316324, 37.294084],\n              [-82.316427, 37.293907],\n              [-82.316475, 37.293831],\n              [-82.316604, 37.293757],\n              [-82.316769, 37.29368],\n              [-82.316907, 37.293647],\n              [-82.317085, 37.293589],\n              [-82.317167, 37.293561],\n              [-82.317216, 37.293542],\n              [-82.317294, 37.29349],\n              [-82.317346, 37.293267],\n              [-82.317385, 37.293052],\n              [-82.317377, 37.292925],\n              [-82.317383, 37.292782],\n              [-82.317334, 37.292667],\n              [-82.317292, 37.292557],\n              [-82.317265, 37.292448],\n              [-82.317285, 37.292337],\n              [-82.317311, 37.292178],\n              [-82.317351, 37.292062],\n              [-82.31742, 37.291842],\n              [-82.317431, 37.291709],\n              [-82.317462, 37.291553],\n              [-82.317465, 37.29138],\n              [-82.317471, 37.291335],\n              [-82.317485, 37.291214],\n              [-82.317506, 37.291123],\n              [-82.317514, 37.290961],\n              [-82.31754, 37.290878],\n              [-82.317625, 37.290632],\n              [-82.317694, 37.29045],\n              [-82.317761, 37.290333],\n              [-82.317843, 37.290163],\n              [-82.317953, 37.290015],\n              [-82.318013, 37.2899],\n              [-82.318124, 37.289844],\n              [-82.31826, 37.289795],\n              [-82.318391, 37.289694],\n              [-82.318513, 37.289611],\n              [-82.318684, 37.289413],\n              [-82.318787, 37.289237],\n              [-82.318861, 37.289037],\n              [-82.318889, 37.28889],\n              [-82.318889, 37.288724],\n              [-82.318901, 37.288618],\n              [-82.318871, 37.288412],\n              [-82.318905, 37.288197],\n              [-82.318911, 37.288132],\n              [-82.318965, 37.287972],\n              [-82.319033, 37.287813],\n              [-82.319142, 37.287608],\n              [-82.319189, 37.287485],\n              [-82.31934, 37.2873],\n              [-82.319442, 37.287144],\n              [-82.319552, 37.287023],\n              [-82.319654, 37.286907],\n              [-82.319722, 37.286835],\n              [-82.319804, 37.286749],\n              [-82.319941, 37.286642],\n              [-82.320141, 37.286494],\n              [-82.32032, 37.286384],\n              [-82.320483, 37.286267],\n              [-82.320619, 37.286185],\n              [-82.320847, 37.286068],\n              [-82.321052, 37.285986],\n              [-82.321292, 37.285892],\n              [-82.321485, 37.285802],\n              [-82.321601, 37.285753],\n              [-82.321827, 37.285651],\n              [-82.321944, 37.285609],\n              [-82.32217, 37.285497],\n              [-82.3223, 37.285387],\n              [-82.322465, 37.285283],\n              [-82.322629, 37.285127],\n              [-82.322794, 37.285012],\n              [-82.322924, 37.284907],\n              [-82.323027, 37.284812],\n              [-82.323129, 37.284762],\n              [-82.323261, 37.284697],\n              [-82.32374, 37.284293],\n              [-82.323811, 37.284179],\n              [-82.32386, 37.284086],\n              [-82.323897, 37.283919],\n              [-82.323975, 37.283816],\n              [-82.324118, 37.283565],\n              [-82.324234, 37.283435],\n              [-82.324352, 37.283262],\n              [-82.324475, 37.28312],\n              [-82.324575, 37.283036],\n              [-82.324722, 37.282988],\n              [-82.324921, 37.282931],\n              [-82.324967, 37.282937],\n              [-82.325168, 37.282974],\n              [-82.325375, 37.282995],\n              [-82.325513, 37.283022],\n              [-82.32576, 37.283004],\n              [-82.325905, 37.282988],\n              [-82.325964, 37.282987],\n              [-82.326111, 37.282961],\n              [-82.326246, 37.282938],\n              [-82.326457, 37.282948],\n              [-82.32669, 37.282935],\n              [-82.326819, 37.282935],\n              [-82.327087, 37.282899],\n              [-82.327207, 37.282897],\n              [-82.327352, 37.282907],\n              [-82.327569, 37.282896],\n              [-82.327851, 37.282855],\n              [-82.328085, 37.282826],\n              [-82.328291, 37.282782],\n              [-82.32852, 37.282746],\n              [-82.328881, 37.282643],\n              [-82.329039, 37.282613],\n              [-82.329198, 37.282582],\n              [-82.329568, 37.28254],\n              [-82.329836, 37.282519],\n              [-82.330064, 37.282447],\n              [-82.33031, 37.282385],\n              [-82.330689, 37.28229],\n              [-82.330984, 37.2822],\n              [-82.3311, 37.282175],\n              [-82.331321, 37.282161],\n              [-82.331527, 37.282133],\n              [-82.331692, 37.281989],\n              [-82.331821, 37.281902],\n              [-82.331945, 37.281819],\n              [-82.332019, 37.28168],\n              [-82.332094, 37.281548],\n              [-82.332225, 37.281461],\n              [-82.332334, 37.281409],\n              [-82.33254, 37.281419],\n              [-82.332746, 37.281351],\n              [-82.333069, 37.281348],\n              [-82.333342, 37.281334],\n              [-82.333537, 37.281301],\n              [-82.33365, 37.281274],\n              [-82.333833, 37.281191],\n              [-82.334018, 37.281135],\n              [-82.334206, 37.281111],\n              [-82.334451, 37.281162],\n              [-82.334537, 37.281181],\n              [-82.335006, 37.281375],\n              [-82.335521, 37.281584],\n              [-82.335732, 37.281597],\n              [-82.335811, 37.281598],\n              [-82.335905, 37.281572],\n              [-82.336035, 37.281546],\n              [-82.336214, 37.281467],\n              [-82.336543, 37.281246],\n              [-82.336589, 37.281131],\n              [-82.336638, 37.281009],\n              [-82.336594, 37.28087],\n              [-82.336452, 37.28036],\n              [-82.336423, 37.280257],\n              [-82.336396, 37.280013],\n              [-82.336411, 37.279832],\n              [-82.336467, 37.279746],\n              [-82.336616, 37.279654],\n              [-82.33675, 37.279609],\n              [-82.336931, 37.279586],\n              [-82.33731, 37.279588],\n              [-82.337723, 37.279609],\n              [-82.338005, 37.279683],\n              [-82.338357, 37.279782],\n              [-82.338721, 37.279907],\n              [-82.33901, 37.280013],\n              [-82.339272, 37.280116],\n              [-82.339427, 37.280176],\n              [-82.339653, 37.280306],\n              [-82.339751, 37.280432],\n              [-82.339806, 37.280542],\n              [-82.339855, 37.280641],\n              [-82.339886, 37.280782],\n              [-82.339877, 37.280878],\n              [-82.339932, 37.280988],\n              [-82.340098, 37.281074],\n              [-82.340284, 37.28114],\n              [-82.340415, 37.281172],\n              [-82.340619, 37.281187],\n              [-82.340794, 37.281123],\n              [-82.340978, 37.281056],\n              [-82.341224, 37.280974],\n              [-82.341491, 37.28089],\n              [-82.341614, 37.280867],\n              [-82.341753, 37.280844],\n              [-82.34182, 37.28083],\n              [-82.341953, 37.280829],\n              [-82.342169, 37.280876],\n              [-82.34234, 37.280986],\n              [-82.342485, 37.28115],\n              [-82.342582, 37.28121],\n              [-82.342678, 37.281258],\n              [-82.342796, 37.281237],\n              [-82.342919, 37.281147],\n              [-82.343393, 37.280922],\n              [-82.343614, 37.280859],\n              [-82.343805, 37.280684],\n              [-82.343816, 37.280545],\n              [-82.343837, 37.280433],\n              [-82.34382, 37.280304],\n              [-82.343814, 37.280144],\n              [-82.343771, 37.279924],\n              [-82.343771, 37.279832],\n              [-82.343767, 37.279633],\n              [-82.343772, 37.27951],\n              [-82.343808, 37.27936],\n              [-82.343774, 37.279287],\n              [-82.343732, 37.279154],\n              [-82.343594, 37.278985],\n              [-82.34344, 37.278769],\n              [-82.343385, 37.278661],\n              [-82.343322, 37.278562],\n              [-82.343253, 37.278462],\n              [-82.343129, 37.278347],\n              [-82.342991, 37.278249],\n              [-82.342935, 37.278123],\n              [-82.342878, 37.278009],\n              [-82.342793, 37.277684],\n              [-82.342796, 37.277594],\n              [-82.3428, 37.277497],\n              [-82.342804, 37.277379],\n              [-82.342848, 37.277235],\n              [-82.342942, 37.276996],\n              [-82.342934, 37.276892],\n              [-82.342895, 37.276819],\n              [-82.342823, 37.276683],\n              [-82.342786, 37.276513],\n              [-82.342767, 37.276381],\n              [-82.342682, 37.276193],\n              [-82.342585, 37.276074],\n              [-82.342495, 37.275969],\n              [-82.342418, 37.275804],\n              [-82.342377, 37.275684],\n              [-82.342313, 37.275514],\n              [-82.342251, 37.275408],\n              [-82.342244, 37.275293],\n              [-82.34228, 37.275067],\n              [-82.342251, 37.274908],\n              [-82.342033, 37.274598],\n              [-82.341995, 37.274346],\n              [-82.341989, 37.274139],\n              [-82.342093, 37.273959],\n              [-82.342446, 37.273619],\n              [-82.342694, 37.273447],\n              [-82.343112, 37.273227],\n              [-82.343341, 37.27316],\n              [-82.343861, 37.273103],\n              [-82.344253, 37.273136],\n              [-82.344756, 37.273109],\n              [-82.345078, 37.272944],\n              [-82.345258, 37.272845],\n              [-82.345468, 37.272734],\n              [-82.34568, 37.272686],\n              [-82.345879, 37.272658],\n              [-82.346306, 37.272634],\n              [-82.346533, 37.272611],\n              [-82.346847, 37.27259],\n              [-82.347075, 37.272588],\n              [-82.347247, 37.272532],\n              [-82.347364, 37.272486],\n              [-82.347673, 37.272458],\n              [-82.347853, 37.272406],\n              [-82.348058, 37.272347],\n              [-82.348328, 37.27225],\n              [-82.348517, 37.272154],\n              [-82.348682, 37.272055],\n              [-82.348866, 37.271927],\n              [-82.348976, 37.271793],\n              [-82.34912, 37.271684],\n              [-82.349236, 37.271525],\n              [-82.349256, 37.27142],\n              [-82.349228, 37.271266],\n              [-82.349179, 37.271171],\n              [-82.349081, 37.271061],\n              [-82.348991, 37.270887],\n              [-82.348873, 37.270695],\n              [-82.348853, 37.27064],\n              [-82.348818, 37.27047],\n              [-82.348824, 37.270333],\n              [-82.348884, 37.270145],\n              [-82.348945, 37.270056],\n              [-82.34902, 37.269985],\n              [-82.349088, 37.269929],\n              [-82.349171, 37.269897],\n              [-82.349274, 37.269863],\n              [-82.349294, 37.269798],\n              [-82.349253, 37.269749],\n              [-82.349108, 37.269665],\n              [-82.348907, 37.269574],\n              [-82.348845, 37.269492],\n              [-82.348803, 37.26936],\n              [-82.348789, 37.269244],\n              [-82.348817, 37.26906],\n              [-82.348889, 37.268946],\n              [-82.348964, 37.268781],\n              [-82.348981, 37.268725],\n              [-82.348998, 37.268665],\n              [-82.348991, 37.268561],\n              [-82.348929, 37.268446],\n              [-82.348811, 37.268358],\n              [-82.348679, 37.268299],\n              [-82.34859, 37.268255],\n              [-82.348582, 37.268162],\n              [-82.348645, 37.268045],\n              [-82.348761, 37.267951],\n              [-82.348898, 37.26788],\n              [-82.349103, 37.267803],\n              [-82.349268, 37.267757],\n              [-82.349501, 37.267694],\n              [-82.349749, 37.267619],\n              [-82.349996, 37.267479],\n              [-82.350216, 37.267369],\n              [-82.350455, 37.267252],\n              [-82.350634, 37.267149],\n              [-82.350873, 37.267025],\n              [-82.351023, 37.266971],\n              [-82.351196, 37.266926],\n              [-82.351346, 37.266875],\n              [-82.351477, 37.266781],\n              [-82.351592, 37.266677],\n              [-82.351772, 37.266549],\n              [-82.35197, 37.26646],\n              [-82.352162, 37.266405],\n              [-82.352361, 37.266366],\n              [-82.353421, 37.266092],\n              [-82.354475, 37.265791],\n              [-82.354839, 37.265493],\n              [-82.355287, 37.265263],\n              [-82.355334, 37.26524],\n              [-82.355429, 37.2652],\n              [-82.35554, 37.265154],\n              [-82.355751, 37.265128],\n              [-82.355964, 37.265105],\n              [-82.356232, 37.26507],\n              [-82.356602, 37.26502],\n              [-82.356815, 37.264981],\n              [-82.357022, 37.264975],\n              [-82.357169, 37.264989],\n              [-82.357476, 37.264977],\n              [-82.357683, 37.264941],\n              [-82.357984, 37.264883],\n              [-82.358224, 37.264815],\n              [-82.358746, 37.264759],\n              [-82.35878, 37.264758],\n              [-82.359159, 37.26475],\n              [-82.359443, 37.264751],\n              [-82.359771, 37.264735],\n              [-82.359998, 37.264721],\n              [-82.360334, 37.264704],\n              [-82.360522, 37.264692],\n              [-82.36102, 37.264652],\n              [-82.361194, 37.264641],\n              [-82.361384, 37.264642],\n              [-82.361678, 37.264625],\n              [-82.362277, 37.264587],\n              [-82.362458, 37.264558],\n              [-82.362711, 37.264476],\n              [-82.363014, 37.264398],\n              [-82.363229, 37.264327],\n              [-82.363496, 37.264266],\n              [-82.363711, 37.264228],\n              [-82.363915, 37.264212],\n              [-82.36404, 37.264193],\n              [-82.364299, 37.264189],\n              [-82.364513, 37.264182],\n              [-82.364645, 37.26416],\n              [-82.364745, 37.264144],\n              [-82.364979, 37.264071],\n              [-82.365123, 37.26396],\n              [-82.365271, 37.263804],\n              [-82.36539, 37.263678],\n              [-82.365473, 37.263607],\n              [-82.365596, 37.263535],\n              [-82.365815, 37.263413],\n              [-82.36596, 37.263331],\n              [-82.366138, 37.26323],\n              [-82.366348, 37.263098],\n              [-82.366568, 37.262965],\n              [-82.366719, 37.2629],\n              [-82.366891, 37.262848],\n              [-82.367089, 37.262808],\n              [-82.367254, 37.262803],\n              [-82.367618, 37.262739],\n              [-82.367805, 37.262685],\n              [-82.367952, 37.262616],\n              [-82.368154, 37.26253],\n              [-82.368305, 37.262464],\n              [-82.368468, 37.26238],\n              [-82.368537, 37.262381],\n              [-82.368992, 37.262362],\n              [-82.369294, 37.26237],\n              [-82.369507, 37.262383],\n              [-82.369724, 37.262371],\n              [-82.369933, 37.26237],\n              [-82.370127, 37.262357],\n              [-82.370278, 37.262323],\n              [-82.37047, 37.262258],\n              [-82.370587, 37.262224],\n              [-82.37075, 37.262145],\n              [-82.370908, 37.262064],\n              [-82.371005, 37.261937],\n              [-82.371096, 37.26186],\n              [-82.371256, 37.261711],\n              [-82.371495, 37.261592],\n              [-82.37189, 37.261609],\n              [-82.372102, 37.261525],\n              [-82.372178, 37.261476],\n              [-82.372402, 37.261393],\n              [-82.372692, 37.261285],\n              [-82.372851, 37.261226],\n              [-82.373061, 37.26118],\n              [-82.373253, 37.261093],\n              [-82.373465, 37.261],\n              [-82.373593, 37.260917],\n              [-82.373877, 37.260737],\n              [-82.374392, 37.260503],\n              [-82.374749, 37.260363],\n              [-82.374872, 37.260343],\n              [-82.374962, 37.260316],\n              [-82.376057, 37.260029],\n              [-82.376601, 37.259864],\n              [-82.376814, 37.259832],\n              [-82.376944, 37.259826],\n              [-82.377075, 37.259858],\n              [-82.377171, 37.259913],\n              [-82.377336, 37.259989],\n              [-82.37746, 37.260017],\n              [-82.377578, 37.260035],\n              [-82.37773, 37.260028],\n              [-82.3779, 37.260034],\n              [-82.37819, 37.260028],\n              [-82.378369, 37.260023],\n              [-82.378514, 37.260013],\n              [-82.378735, 37.259968],\n              [-82.378961, 37.259902],\n              [-82.379251, 37.25988],\n              [-82.379485, 37.259878],\n              [-82.379542, 37.259871],\n              [-82.379655, 37.259863],\n              [-82.379767, 37.25988],\n              [-82.380015, 37.259912],\n              [-82.380167, 37.259918],\n              [-82.381093, 37.260042],\n              [-82.381671, 37.259995],\n              [-82.381972, 37.259957],\n              [-82.3825, 37.259923],\n              [-82.38263, 37.259945],\n              [-82.382803, 37.25996],\n              [-82.383106, 37.260026],\n              [-82.383518, 37.260035],\n              [-82.383673, 37.259981],\n              [-82.383789, 37.259857],\n              [-82.38392, 37.259738],\n              [-82.384112, 37.25968],\n              [-82.384302, 37.259645],\n              [-82.38439, 37.259625],\n              [-82.384479, 37.259609],\n              [-82.384599, 37.259548],\n              [-82.384717, 37.259517],\n              [-82.384847, 37.259502],\n              [-82.384881, 37.259508],\n              [-82.385012, 37.259545],\n              [-82.385077, 37.259551],\n              [-82.385141, 37.259572],\n              [-82.385456, 37.25967],\n              [-82.385633, 37.259652],\n              [-82.385788, 37.259604],\n              [-82.386771, 37.258875],\n              [-82.387406, 37.258872],\n              [-82.388258, 37.259027],\n              [-82.388456, 37.259039],\n              [-82.388524, 37.25904],\n              [-82.388673, 37.258987],\n              [-82.388886, 37.258795],\n              [-82.38916, 37.258547],\n              [-82.389585, 37.258266],\n              [-82.389835, 37.258143],\n              [-82.389888, 37.258131],\n              [-82.390153, 37.258075],\n              [-82.390441, 37.258095],\n              [-82.390591, 37.258107],\n              [-82.390785, 37.258133],\n              [-82.391147, 37.258107],\n              [-82.391329, 37.258071],\n              [-82.3914, 37.258049],\n              [-82.391528, 37.258038],\n              [-82.391621, 37.258035],\n              [-82.391875, 37.257977],\n              [-82.391961, 37.257974],\n              [-82.392268, 37.257979],\n              [-82.392468, 37.257937],\n              [-82.392625, 37.257837],\n              [-82.392694, 37.257764],\n              [-82.392864, 37.257491],\n              [-82.392971, 37.25741],\n              [-82.393064, 37.257344],\n              [-82.393213, 37.257273],\n              [-82.393494, 37.257205],\n              [-82.393578, 37.257226],\n              [-82.393832, 37.257265],\n              [-82.39417, 37.257315],\n              [-82.394433, 37.257322],\n              [-82.39464, 37.25727],\n              [-82.394847, 37.257165],\n              [-82.395042, 37.25709],\n              [-82.395303, 37.25697],\n              [-82.395437, 37.256932],\n              [-82.395873, 37.256912],\n              [-82.396043, 37.25687],\n              [-82.396163, 37.256805],\n              [-82.396294, 37.256727],\n              [-82.396376, 37.256712],\n              [-82.396612, 37.256644],\n              [-82.396815, 37.256533],\n              [-82.396955, 37.256327],\n              [-82.39728, 37.256098],\n              [-82.397416, 37.256016],\n              [-82.397633, 37.255969],\n              [-82.398185, 37.255663],\n              [-82.398221, 37.255586],\n              [-82.398268, 37.255497],\n              [-82.398412, 37.255463],\n              [-82.398627, 37.255394],\n              [-82.398895, 37.255434],\n              [-82.399148, 37.255455],\n              [-82.399343, 37.255483],\n              [-82.39957, 37.255508],\n              [-82.399726, 37.255498],\n              [-82.399871, 37.255466],\n              [-82.400013, 37.255444],\n              [-82.400147, 37.255456],\n              [-82.400196, 37.255478],\n              [-82.400319, 37.255494],\n              [-82.400492, 37.255509],\n              [-82.400605, 37.255521],\n              [-82.400746, 37.255515],\n              [-82.400822, 37.255471],\n              [-82.400907, 37.255451],\n              [-82.401007, 37.255403],\n              [-82.401118, 37.255343],\n              [-82.401313, 37.25526],\n              [-82.401482, 37.255195],\n              [-82.401651, 37.255147],\n              [-82.402071, 37.255026],\n              [-82.402652, 37.254916],\n              [-82.402819, 37.254788],\n              [-82.403444, 37.254808],\n              [-82.403654, 37.254831],\n              [-82.403859, 37.254837],\n              [-82.404278, 37.254579],\n              [-82.40449, 37.254513],\n              [-82.404839, 37.254402],\n              [-82.405066, 37.254366],\n              [-82.40517, 37.254388],\n              [-82.405369, 37.254398],\n              [-82.4055, 37.254416],\n              [-82.405672, 37.254351],\n              [-82.405758, 37.254231],\n              [-82.4063, 37.253862],\n              [-82.40688, 37.253624],\n              [-82.407206, 37.2536],\n              [-82.407372, 37.253611],\n              [-82.407549, 37.253575],\n              [-82.407677, 37.25349],\n              [-82.407748, 37.253445],\n              [-82.40779, 37.253418],\n              [-82.407866, 37.253387],\n              [-82.408032, 37.253319],\n              [-82.40817, 37.253262],\n              [-82.408567, 37.253191],\n              [-82.40993, 37.253118],\n              [-82.410331, 37.253111],\n              [-82.410447, 37.253121],\n              [-82.410788, 37.253143],\n              [-82.410991, 37.253191],\n              [-82.411271, 37.253276],\n              [-82.411535, 37.253404],\n              [-82.411738, 37.253437],\n              [-82.411972, 37.253389],\n              [-82.412145, 37.25329],\n              [-82.412361, 37.253075],\n              [-82.412504, 37.252939],\n              [-82.412692, 37.252782],\n              [-82.412736, 37.252762],\n              [-82.412934, 37.252715],\n              [-82.413529, 37.25247],\n              [-82.414094, 37.252254],\n              [-82.414688, 37.252056],\n              [-82.415239, 37.25194],\n              [-82.415797, 37.251928],\n              [-82.41664, 37.251836],\n              [-82.417236, 37.251738],\n              [-82.417553, 37.251643],\n              [-82.417806, 37.251551],\n              [-82.418206, 37.251256],\n              [-82.418618, 37.250798],\n              [-82.418784, 37.250754],\n              [-82.419338, 37.250624],\n              [-82.420414, 37.250348],\n              [-82.420993, 37.250163],\n              [-82.422401, 37.249551],\n              [-82.422869, 37.249219],\n              [-82.423267, 37.249047],\n              [-82.423872, 37.248911],\n              [-82.425405, 37.248711],\n              [-82.426307, 37.248721],\n              [-82.426505, 37.248607],\n              [-82.427802, 37.247773],\n              [-82.428375, 37.247594],\n              [-82.429437, 37.24714],\n              [-82.430335, 37.246862],\n              [-82.433196, 37.246416],\n              [-82.43368, 37.246547],\n              [-82.433988, 37.246624],\n              [-82.434596, 37.246806],\n              [-82.434756, 37.246818],\n              [-82.43496, 37.246781],\n              [-82.435707, 37.246502],\n              [-82.435996, 37.246531],\n              [-82.436105, 37.246589],\n              [-82.436195, 37.246658],\n              [-82.436417, 37.246802],\n              [-82.436553, 37.246915],\n              [-82.436649, 37.247004],\n              [-82.436857, 37.247152],\n              [-82.437033, 37.247222],\n              [-82.437334, 37.247213],\n              [-82.437698, 37.247133],\n              [-82.437888, 37.247079],\n              [-82.438319, 37.247015],\n              [-82.438532, 37.247018],\n              [-82.438717, 37.247037],\n              [-82.438896, 37.247051],\n              [-82.439178, 37.247088],\n              [-82.439363, 37.247109],\n              [-82.439498, 37.247119],\n              [-82.43965, 37.247102],\n              [-82.439771, 37.247069],\n              [-82.439897, 37.247012],\n              [-82.439964, 37.246937],\n              [-82.44004, 37.246802],\n              [-82.440068, 37.246614],\n              [-82.440087, 37.246434],\n              [-82.440152, 37.24634],\n              [-82.440246, 37.246267],\n              [-82.440344, 37.24623],\n              [-82.440563, 37.246144],\n              [-82.440881, 37.246019],\n              [-82.441203, 37.245888],\n              [-82.441471, 37.245776],\n              [-82.441719, 37.245656],\n              [-82.442003, 37.245452],\n              [-82.442332, 37.245235],\n              [-82.442527, 37.245103],\n              [-82.442645, 37.244966],\n              [-82.442715, 37.244736],\n              [-82.442733, 37.244487],\n              [-82.44274, 37.244329],\n              [-82.442762, 37.244218],\n              [-82.442816, 37.243979],\n              [-82.442939, 37.243718],\n              [-82.443077, 37.243548],\n              [-82.443175, 37.243435],\n              [-82.443342, 37.243309],\n              [-82.44355, 37.24324],\n              [-82.443804, 37.243202],\n              [-82.44394, 37.243203],\n              [-82.44419, 37.243217],\n              [-82.44447, 37.243264],\n              [-82.44467, 37.243292],\n              [-82.444792, 37.243337],\n              [-82.444921, 37.243406],\n              [-82.445057, 37.243517],\n              [-82.445137, 37.243616],\n              [-82.445216, 37.243723],\n              [-82.445303, 37.243857],\n              [-82.445373, 37.243956],\n              [-82.44545, 37.244029],\n              [-82.445597, 37.244139],\n              [-82.445666, 37.244166],\n              [-82.445731, 37.244165],\n              [-82.445915, 37.244126],\n              [-82.446029, 37.244085],\n              [-82.446192, 37.244049],\n              [-82.446517, 37.243938],\n              [-82.4467, 37.243879],\n              [-82.446756, 37.243877],\n              [-82.44693, 37.243873],\n              [-82.447056, 37.243906],\n              [-82.447127, 37.243963],\n              [-82.447161, 37.24401],\n              [-82.447189, 37.244089],\n              [-82.447256, 37.244155],\n              [-82.447432, 37.244193],\n              [-82.447714, 37.244191],\n              [-82.447884, 37.244154],\n              [-82.448003, 37.244106],\n              [-82.448204, 37.243989],\n              [-82.44831, 37.243876],\n              [-82.448435, 37.243822],\n              [-82.448539, 37.243797],\n              [-82.448641, 37.243792],\n              [-82.448786, 37.243795],\n              [-82.448939, 37.243799],\n              [-82.449077, 37.243754],\n              [-82.449646, 37.243517],\n              [-82.450208, 37.243278],\n              [-82.450488, 37.243146],\n              [-82.450648, 37.243054],\n              [-82.450796, 37.242936],\n              [-82.450901, 37.242838],\n              [-82.451082, 37.242769],\n              [-82.451302, 37.242704],\n              [-82.451442, 37.242675],\n              [-82.451655, 37.242629],\n              [-82.45185, 37.242567],\n              [-82.452072, 37.242449],\n              [-82.452253, 37.242276],\n              [-82.452361, 37.2421],\n              [-82.452401, 37.241978],\n              [-82.452388, 37.241835],\n              [-82.452358, 37.24169],\n              [-82.452376, 37.241569],\n              [-82.452414, 37.241437],\n              [-82.452506, 37.241302],\n              [-82.452658, 37.241146],\n              [-82.452789, 37.241013],\n              [-82.452921, 37.240939],\n              [-82.453121, 37.240887],\n              [-82.453323, 37.240829],\n              [-82.453584, 37.240796],\n              [-82.453745, 37.240726],\n              [-82.453863, 37.240663],\n              [-82.453995, 37.240602],\n              [-82.454223, 37.24053],\n              [-82.454631, 37.240512],\n              [-82.454707, 37.240501],\n              [-82.454824, 37.240467],\n              [-82.455031, 37.240399],\n              [-82.455194, 37.240311],\n              [-82.45529, 37.240226],\n              [-82.455361, 37.240123],\n              [-82.455385, 37.24001],\n              [-82.455378, 37.239716],\n              [-82.455437, 37.239599],\n              [-82.455541, 37.239491],\n              [-82.455738, 37.239408],\n              [-82.455963, 37.239333],\n              [-82.456207, 37.23926],\n              [-82.456336, 37.239215],\n              [-82.456514, 37.23913],\n              [-82.456655, 37.239045],\n              [-82.456756, 37.23895],\n              [-82.456894, 37.238744],\n              [-82.457061, 37.238406],\n              [-82.457117, 37.238347],\n              [-82.457216, 37.238277],\n              [-82.457365, 37.238221],\n              [-82.457422, 37.238214],\n              [-82.457683, 37.238179],\n              [-82.457818, 37.238126],\n              [-82.458045, 37.238081],\n              [-82.458246, 37.23808],\n              [-82.458475, 37.238104],\n              [-82.458636, 37.238126],\n              [-82.458784, 37.238166],\n              [-82.458931, 37.238207],\n              [-82.459086, 37.238242],\n              [-82.459181, 37.238275],\n              [-82.459232, 37.238291],\n              [-82.459473, 37.238393],\n              [-82.459674, 37.238483],\n              [-82.459959, 37.238634],\n              [-82.460231, 37.23866],\n              [-82.460492, 37.238594],\n              [-82.461205, 37.238371],\n              [-82.461356, 37.238372],\n              [-82.461823, 37.238455],\n              [-82.462085, 37.238493],\n              [-82.462461, 37.23853],\n              [-82.462662, 37.238488],\n              [-82.462861, 37.238387],\n              [-82.463028, 37.23822],\n              [-82.46317, 37.237901],\n              [-82.463241, 37.237724],\n              [-82.463496, 37.237428],\n              [-82.463796, 37.23705],\n              [-82.464013, 37.236772],\n              [-82.464168, 37.236575],\n              [-82.464321, 37.236365],\n              [-82.464513, 37.236084],\n              [-82.464662, 37.235887],\n              [-82.464812, 37.235771],\n              [-82.465057, 37.235693],\n              [-82.465403, 37.235682],\n              [-82.465766, 37.235713],\n              [-82.466617, 37.235828],\n              [-82.467136, 37.235994],\n              [-82.467454, 37.236143],\n              [-82.467601, 37.236193],\n              [-82.467776, 37.236209],\n              [-82.46798, 37.236188],\n              [-82.468267, 37.236134],\n              [-82.46844, 37.236001],\n              [-82.468658, 37.235694],\n              [-82.468801, 37.235416],\n              [-82.468905, 37.235241],\n              [-82.469098, 37.235132],\n              [-82.469305, 37.235086],\n              [-82.469552, 37.235064],\n              [-82.469675, 37.235085],\n              [-82.469931, 37.235238],\n              [-82.470149, 37.235357],\n              [-82.470198, 37.235402],\n              [-82.470334, 37.235448],\n              [-82.470453, 37.235475],\n              [-82.470588, 37.235448],\n              [-82.470753, 37.235375],\n              [-82.470912, 37.235325],\n              [-82.471061, 37.235333],\n              [-82.47124, 37.235403],\n              [-82.471411, 37.23554],\n              [-82.47154, 37.23564],\n              [-82.471783, 37.235708],\n              [-82.472013, 37.235714],\n              [-82.472477, 37.235685],\n              [-82.47283, 37.235592],\n              [-82.473387, 37.235391],\n              [-82.473816, 37.235175],\n              [-82.474005, 37.235056],\n              [-82.474241, 37.234919],\n              [-82.474483, 37.234813],\n              [-82.474766, 37.234707],\n              [-82.475058, 37.234639],\n              [-82.4753, 37.234561],\n              [-82.475527, 37.23456],\n              [-82.475843, 37.234528],\n              [-82.476107, 37.234454],\n              [-82.476329, 37.234411],\n              [-82.476635, 37.234322],\n              [-82.477028, 37.234186],\n              [-82.4773, 37.234093],\n              [-82.477514, 37.234036],\n              [-82.47768, 37.233981],\n              [-82.477964, 37.233885],\n              [-82.478077, 37.233819],\n              [-82.478362, 37.233629],\n              [-82.478543, 37.233577],\n              [-82.478709, 37.233514],\n              [-82.478918, 37.233461],\n              [-82.479211, 37.233348],\n              [-82.479485, 37.233256],\n              [-82.479667, 37.233181],\n              [-82.479798, 37.233145],\n              [-82.479978, 37.233065],\n              [-82.480035, 37.233024],\n              [-82.480231, 37.232865],\n              [-82.480566, 37.232601],\n              [-82.480687, 37.232525],\n              [-82.480825, 37.232438],\n              [-82.481079, 37.232334],\n              [-82.481214, 37.232295],\n              [-82.481535, 37.23221],\n              [-82.481892, 37.232134],\n              [-82.482109, 37.232081],\n              [-82.482337, 37.23202],\n              [-82.482763, 37.231876],\n              [-82.483065, 37.231791],\n              [-82.483387, 37.231748],\n              [-82.483617, 37.231783],\n              [-82.483778, 37.231802],\n              [-82.484013, 37.231823],\n              [-82.484273, 37.231757],\n              [-82.484553, 37.231643],\n              [-82.484698, 37.231604],\n              [-82.484855, 37.231538],\n              [-82.485157, 37.231385],\n              [-82.485388, 37.231294],\n              [-82.485574, 37.231214],\n              [-82.485802, 37.23118],\n              [-82.486009, 37.231176],\n              [-82.486174, 37.231163],\n              [-82.486305, 37.231165],\n              [-82.486443, 37.231112],\n              [-82.486698, 37.230935],\n              [-82.486836, 37.230841],\n              [-82.486926, 37.230784],\n              [-82.487142, 37.230639],\n              [-82.487297, 37.230525],\n              [-82.487366, 37.23046],\n              [-82.487378, 37.230389],\n              [-82.48734, 37.230288],\n              [-82.48729, 37.230214],\n              [-82.487245, 37.230141],\n              [-82.487093, 37.230067],\n              [-82.486942, 37.230021],\n              [-82.486807, 37.229982],\n              [-82.486671, 37.229905],\n              [-82.486642, 37.229857],\n              [-82.486585, 37.229793],\n              [-82.486581, 37.229649],\n              [-82.486672, 37.229554],\n              [-82.486862, 37.22943],\n              [-82.486966, 37.229355],\n              [-82.487072, 37.229263],\n              [-82.487142, 37.229038],\n              [-82.487178, 37.228832],\n              [-82.487243, 37.228497],\n              [-82.487249, 37.228123],\n              [-82.487257, 37.227774],\n              [-82.487328, 37.227683],\n              [-82.487441, 37.227575],\n              [-82.4878, 37.227273],\n              [-82.488297, 37.226947],\n              [-82.488523, 37.226877],\n              [-82.488757, 37.226879],\n              [-82.488975, 37.226881],\n              [-82.489325, 37.226885],\n              [-82.489467, 37.22687],\n              [-82.489598, 37.226776],\n              [-82.489697, 37.226678],\n              [-82.48984, 37.226522],\n              [-82.489931, 37.22639],\n              [-82.490375, 37.225941],\n              [-82.490538, 37.225767],\n              [-82.490578, 37.225718],\n              [-82.490665, 37.22561],\n              [-82.490751, 37.225485],\n              [-82.490878, 37.225328],\n              [-82.491004, 37.225208],\n              [-82.491117, 37.225123],\n              [-82.491269, 37.225025],\n              [-82.49145, 37.224978],\n              [-82.491619, 37.224921],\n              [-82.492378, 37.224982],\n              [-82.492598, 37.225017],\n              [-82.493016, 37.225128],\n              [-82.493471, 37.225244],\n              [-82.49389, 37.225264],\n              [-82.49421, 37.225218],\n              [-82.494395, 37.225221],\n              [-82.494658, 37.22522],\n              [-82.494787, 37.225245],\n              [-82.494978, 37.22529],\n              [-82.495169, 37.225353],\n              [-82.495235, 37.225453],\n              [-82.495343, 37.225577],\n              [-82.495441, 37.225788],\n              [-82.495756, 37.226653],\n              [-82.495874, 37.226999],\n              [-82.495917, 37.22724],\n              [-82.49607, 37.227399],\n              [-82.496313, 37.227501],\n              [-82.496654, 37.22752],\n              [-82.496895, 37.227426],\n              [-82.497, 37.227347],\n              [-82.497135, 37.227255],\n              [-82.49735, 37.227168],\n              [-82.49768, 37.227129],\n              [-82.497985, 37.227058],\n              [-82.498413, 37.226993],\n              [-82.498634, 37.22697],\n              [-82.498751, 37.226965],\n              [-82.498917, 37.22689],\n              [-82.499057, 37.226783],\n              [-82.499226, 37.226632],\n              [-82.499311, 37.226534],\n              [-82.499542, 37.226356],\n              [-82.499717, 37.226248],\n              [-82.499806, 37.226206],\n              [-82.499883, 37.226169],\n              [-82.500232, 37.226017],\n              [-82.500518, 37.225956],\n              [-82.501185, 37.225592],\n              [-82.501584, 37.225458],\n              [-82.502102, 37.225404],\n              [-82.50247, 37.225211],\n              [-82.502836, 37.22502],\n              [-82.503199, 37.224916],\n              [-82.503813, 37.224857],\n              [-82.504118, 37.224699],\n              [-82.504147, 37.224608],\n              [-82.504358, 37.22442],\n              [-82.504892, 37.224114],\n              [-82.505955, 37.223805],\n              [-82.506258, 37.223565],\n              [-82.506688, 37.22336],\n              [-82.5077, 37.223013],\n              [-82.508061, 37.22276],\n              [-82.508471, 37.222581],\n              [-82.508512, 37.22243],\n              [-82.508488, 37.222183],\n              [-82.508423, 37.22192],\n              [-82.50832, 37.221503],\n              [-82.508271, 37.221049],\n              [-82.508373, 37.220731],\n              [-82.508556, 37.220576],\n              [-82.508993, 37.220379],\n              [-82.509202, 37.220188],\n              [-82.509309, 37.21994],\n              [-82.509294, 37.219541],\n              [-82.509338, 37.219347],\n              [-82.509628, 37.219135],\n              [-82.510076, 37.218708],\n              [-82.510654, 37.2183],\n              [-82.511206, 37.218078],\n              [-82.512272, 37.21786],\n              [-82.512607, 37.217618],\n              [-82.512903, 37.217271],\n              [-82.512982, 37.217223],\n              [-82.513294, 37.217048],\n              [-82.513483, 37.216937],\n              [-82.513528, 37.216914],\n              [-82.513748, 37.21683],\n              [-82.513946, 37.216779],\n              [-82.514124, 37.216756],\n              [-82.514152, 37.216751],\n              [-82.514359, 37.216718],\n              [-82.514561, 37.21671],\n              [-82.514873, 37.216686],\n              [-82.514967, 37.216685],\n              [-82.515093, 37.216647],\n              [-82.515202, 37.21659],\n              [-82.515302, 37.216452],\n              [-82.515324, 37.216424],\n              [-82.515439, 37.216259],\n              [-82.515492, 37.216157],\n              [-82.515588, 37.21601],\n              [-82.515676, 37.215884],\n              [-82.515829, 37.215763],\n              [-82.516012, 37.215615],\n              [-82.516281, 37.215345],\n              [-82.516446, 37.215203],\n              [-82.516575, 37.215064],\n              [-82.516716, 37.214865],\n              [-82.516789, 37.214766],\n              [-82.516859, 37.21466],\n              [-82.517085, 37.214446],\n              [-82.517212, 37.214325],\n              [-82.517472, 37.214199],\n              [-82.517678, 37.214156],\n              [-82.517935, 37.214127],\n              [-82.51831, 37.213936],\n              [-82.518539, 37.213787],\n              [-82.518656, 37.213702],\n              [-82.518888, 37.213555],\n              [-82.519134, 37.213382],\n              [-82.519291, 37.213293],\n              [-82.51945, 37.213228],\n              [-82.519682, 37.213115],\n              [-82.519935, 37.213025],\n              [-82.520153, 37.212945],\n              [-82.520269, 37.212813],\n              [-82.520337, 37.212671],\n              [-82.520437, 37.212461],\n              [-82.520593, 37.212255],\n              [-82.520757, 37.212117],\n              [-82.521011, 37.212023],\n              [-82.521161, 37.212004],\n              [-82.52138, 37.212057],\n              [-82.521551, 37.212125],\n              [-82.521725, 37.212199],\n              [-82.521876, 37.212263],\n              [-82.522252, 37.212435],\n              [-82.522425, 37.21253],\n              [-82.522624, 37.212618],\n              [-82.522782, 37.212743],\n              [-82.522915, 37.212879],\n              [-82.523026, 37.213007],\n              [-82.523137, 37.213229],\n              [-82.523237, 37.213422],\n              [-82.523294, 37.213643],\n              [-82.52333, 37.213818],\n              [-82.523318, 37.213939],\n              [-82.523298, 37.214109],\n              [-82.523318, 37.21416],\n              [-82.523376, 37.214374],\n              [-82.523452, 37.214451],\n              [-82.523585, 37.214559],\n              [-82.523687, 37.214575],\n              [-82.523894, 37.214591],\n              [-82.524107, 37.214629],\n              [-82.524259, 37.214704],\n              [-82.524382, 37.214823],\n              [-82.524473, 37.214906],\n              [-82.524557, 37.214966],\n              [-82.52466, 37.215006],\n              [-82.524798, 37.214992],\n              [-82.524962, 37.214916],\n              [-82.525161, 37.21482],\n              [-82.525429, 37.21469],\n              [-82.525561, 37.21465],\n              [-82.52582, 37.21463],\n              [-82.525938, 37.214612],\n              [-82.526088, 37.214598],\n              [-82.52633, 37.214508],\n              [-82.52662, 37.214397],\n              [-82.526783, 37.214327],\n              [-82.526981, 37.214276],\n              [-82.527242, 37.214213],\n              [-82.527475, 37.21415],\n              [-82.527941, 37.214022],\n              [-82.528216, 37.21396],\n              [-82.528506, 37.21389],\n              [-82.528716, 37.213814],\n              [-82.528862, 37.213737],\n              [-82.529092, 37.213502],\n              [-82.529216, 37.213443],\n              [-82.529322, 37.213393],\n              [-82.529377, 37.213376],\n              [-82.52957, 37.213367],\n              [-82.52981, 37.213344],\n              [-82.530022, 37.213328],\n              [-82.530594, 37.213043],\n              [-82.531393, 37.212605],\n              [-82.532021, 37.212117],\n              [-82.532046, 37.211846],\n              [-82.5319, 37.211534],\n              [-82.531926, 37.211405],\n              [-82.532232, 37.211038],\n              [-82.532228, 37.210824],\n              [-82.532083, 37.210546],\n              [-82.532147, 37.210177],\n              [-82.532061, 37.209863],\n              [-82.531649, 37.209097],\n              [-82.53111, 37.208586],\n              [-82.530795, 37.208354],\n              [-82.530796, 37.208293],\n              [-82.53085, 37.208236],\n              [-82.531862, 37.207599],\n              [-82.532297, 37.207233],\n              [-82.532526, 37.206933],\n              [-82.53263, 37.206743],\n              [-82.532944, 37.206563],\n              [-82.53313, 37.206541],\n              [-82.533381, 37.206508],\n              [-82.533517, 37.206497],\n              [-82.534154, 37.206496],\n              [-82.534363, 37.206518],\n              [-82.534711, 37.206547],\n              [-82.534992, 37.206594],\n              [-82.535192, 37.206628],\n              [-82.535269, 37.206656],\n              [-82.535399, 37.206762],\n              [-82.535493, 37.206838],\n              [-82.535585, 37.206835],\n              [-82.53577, 37.206839],\n              [-82.53604, 37.206836],\n              [-82.536171, 37.206821],\n              [-82.536392, 37.206804],\n              [-82.53672, 37.206803],\n              [-82.536824, 37.206892],\n              [-82.536892, 37.20703],\n              [-82.536928, 37.207074],\n              [-82.536981, 37.207121],\n              [-82.537127, 37.207201],\n              [-82.537234, 37.207178],\n              [-82.537283, 37.207052],\n              [-82.537338, 37.206975],\n              [-82.537361, 37.206927],\n              [-82.537491, 37.206733],\n              [-82.537567, 37.206643],\n              [-82.537753, 37.20654],\n              [-82.53801, 37.206451],\n              [-82.538281, 37.206421],\n              [-82.538391, 37.206438],\n              [-82.538642, 37.206522],\n              [-82.53879, 37.206591],\n              [-82.538874, 37.206646],\n              [-82.538949, 37.206693],\n              [-82.539019, 37.206741],\n              [-82.539142, 37.206804],\n              [-82.539293, 37.206894],\n              [-82.539372, 37.206925],\n              [-82.539516, 37.206938],\n              [-82.539605, 37.206937],\n              [-82.539796, 37.206863],\n              [-82.540008, 37.20679],\n              [-82.540221, 37.206723],\n              [-82.54044, 37.206655],\n              [-82.540673, 37.206587],\n              [-82.540851, 37.206572],\n              [-82.541064, 37.206575],\n              [-82.541188, 37.206553],\n              [-82.541432, 37.206512],\n              [-82.541486, 37.20646],\n              [-82.541507, 37.206416],\n              [-82.541606, 37.20626],\n              [-82.541821, 37.20595],\n              [-82.542029, 37.205699],\n              [-82.542214, 37.205544],\n              [-82.5424, 37.205472],\n              [-82.542633, 37.205427],\n              [-82.542893, 37.205376],\n              [-82.543086, 37.205336],\n              [-82.543243, 37.205301],\n              [-82.543438, 37.205178],\n              [-82.543441, 37.205028],\n              [-82.543432, 37.204959],\n              [-82.543465, 37.204855],\n              [-82.543512, 37.204771],\n              [-82.543641, 37.204639],\n              [-82.543771, 37.204529],\n              [-82.543893, 37.204369],\n              [-82.544111, 37.204211],\n              [-82.544378, 37.204052],\n              [-82.54448, 37.203984],\n              [-82.544624, 37.203879],\n              [-82.544746, 37.203784],\n              [-82.544916, 37.203559],\n              [-82.545017, 37.203448],\n              [-82.545282, 37.203264],\n              [-82.545515, 37.203126],\n              [-82.545617, 37.203089],\n              [-82.5457, 37.203059],\n              [-82.545878, 37.203034],\n              [-82.546036, 37.20304],\n              [-82.546195, 37.203093],\n              [-82.546313, 37.203193],\n              [-82.546838, 37.203491],\n              [-82.547038, 37.203551],\n              [-82.547097, 37.203558],\n              [-82.547309, 37.203545],\n              [-82.547486, 37.203464],\n              [-82.547716, 37.203353],\n              [-82.548094, 37.203163],\n              [-82.548223, 37.203092],\n              [-82.548415, 37.202986],\n              [-82.54872, 37.202815],\n              [-82.548976, 37.202705],\n              [-82.549101, 37.202755],\n              [-82.549146, 37.202894],\n              [-82.549174, 37.202953],\n              [-82.549182, 37.202972],\n              [-82.549259, 37.203141],\n              [-82.549364, 37.203289],\n              [-82.549482, 37.203427],\n              [-82.549566, 37.203567],\n              [-82.549664, 37.203683],\n              [-82.549664, 37.203805],\n              [-82.549666, 37.203913],\n              [-82.549646, 37.204128],\n              [-82.549662, 37.204316],\n              [-82.54976, 37.204448],\n              [-82.549919, 37.204544],\n              [-82.550078, 37.204566],\n              [-82.550227, 37.20456],\n              [-82.55038, 37.204532],\n              [-82.550593, 37.20449],\n              [-82.550716, 37.20443],\n              [-82.550858, 37.204356],\n              [-82.550907, 37.204329],\n              [-82.55105, 37.204251],\n              [-82.551267, 37.20411],\n              [-82.551754, 37.203728],\n              [-82.552264, 37.203491],\n              [-82.552452, 37.203385],\n              [-82.552643, 37.203273],\n              [-82.552777, 37.203195],\n              [-82.552872, 37.203135],\n              [-82.552975, 37.203096],\n              [-82.553071, 37.203096],\n              [-82.553208, 37.20311],\n              [-82.553299, 37.203115],\n              [-82.553394, 37.203103],\n              [-82.553545, 37.203063],\n              [-82.553661, 37.202998],\n              [-82.553714, 37.202955],\n              [-82.553848, 37.202861],\n              [-82.553782, 37.202454],\n              [-82.553318, 37.199254],\n              [-82.553309, 37.19919],\n              [-82.552577, 37.18992],\n              [-82.552558, 37.189767],\n              [-82.552554, 37.189729],\n              [-82.551871, 37.182759],\n              [-82.55177, 37.181738],\n              [-82.551701, 37.181011],\n              [-82.551668, 37.180667],\n              [-82.551653, 37.180516],\n              [-82.551652, 37.180509],\n              [-82.551413, 37.177891],\n              [-82.551385, 37.177583],\n              [-82.551073, 37.174167],\n              [-82.550729, 37.17039],\n              [-82.550631, 37.169314],\n              [-82.550624, 37.169247],\n              [-82.55062, 37.169207],\n              [-82.550611, 37.169146],\n              [-82.55039, 37.166185],\n              [-82.550191, 37.163522],\n              [-82.549904, 37.159711],\n              [-82.549809, 37.158441],\n              [-82.549807, 37.158418],\n              [-82.549473, 37.155728],\n              [-82.549473, 37.155723],\n              [-82.549395, 37.154884],\n              [-82.548927, 37.150282],\n              [-82.54882, 37.149222],\n              [-82.548664, 37.147687],\n              [-82.548237, 37.144551],\n              [-82.548233, 37.144299],\n              [-82.548231, 37.144206],\n              [-82.548189, 37.141345],\n              [-82.548188, 37.141307],\n              [-82.547965, 37.139079],\n              [-82.547964, 37.139067],\n              [-82.547782, 37.137245],\n              [-82.547688, 37.136309],\n              [-82.547635, 37.135739],\n              [-82.547458, 37.13387],\n              [-82.547458, 37.133862],\n              [-82.547398, 37.133217],\n              [-82.547379, 37.133142],\n              [-82.547202, 37.132487],\n              [-82.54716, 37.13234],\n              [-82.547155, 37.132321],\n              [-82.54694, 37.131628],\n              [-82.546936, 37.131597],\n              [-82.546721, 37.129836],\n              [-82.546642, 37.129194],\n              [-82.54637, 37.126445],\n              [-82.546243, 37.125109],\n              [-82.546224, 37.124989],\n              [-82.545454, 37.124995],\n              [-82.5442, 37.124998],\n              [-82.544059, 37.125005],\n              [-82.543915, 37.124999],\n              [-82.543515, 37.124451],\n              [-82.541897, 37.122236],\n              [-82.540486, 37.120304],\n              [-82.540432, 37.120231],\n              [-82.540371, 37.120148],\n              [-82.540318, 37.120074],\n              [-82.540227, 37.119957],\n              [-82.54012, 37.119817],\n              [-82.540086, 37.119773],\n              [-82.540048, 37.119724],\n              [-82.539895, 37.119526],\n              [-82.539741, 37.119326],\n              [-82.539075, 37.118462],\n              [-82.537401, 37.116291],\n              [-82.53673, 37.11542],\n              [-82.535178, 37.113407],\n              [-82.534064, 37.111962],\n              [-82.533363, 37.111052],\n              [-82.533357, 37.111044],\n              [-82.533034, 37.110625],\n              [-82.532679, 37.110165],\n              [-82.532673, 37.110158],\n              [-82.532029, 37.109322],\n              [-82.531713, 37.108911],\n              [-82.530848, 37.107789],\n              [-82.530325, 37.107111],\n              [-82.530222, 37.106978],\n              [-82.528975, 37.105345],\n              [-82.527587, 37.103529],\n              [-82.527575, 37.103513],\n              [-82.526216, 37.101715],\n              [-82.524653, 37.099647],\n              [-82.523788, 37.098503],\n              [-82.523763, 37.098471],\n              [-82.522946, 37.097439],\n              [-82.52213, 37.096409],\n              [-82.521541, 37.095648],\n              [-82.520317, 37.094063],\n              [-82.519595, 37.09313],\n              [-82.518332, 37.091495],\n              [-82.516824, 37.089543],\n              [-82.51622, 37.088761],\n              [-82.516209, 37.088747],\n              [-82.515007, 37.087192],\n              [-82.514564, 37.086618],\n              [-82.514024, 37.085916],\n              [-82.513573, 37.085329],\n              [-82.513439, 37.085155],\n              [-82.513345, 37.085032],\n              [-82.513227, 37.08488],\n              [-82.513069, 37.084687],\n              [-82.51243, 37.083911],\n              [-82.512123, 37.083515],\n              [-82.511771, 37.08306],\n              [-82.511398, 37.082577],\n              [-82.511075, 37.082157],\n              [-82.510704, 37.081675],\n              [-82.510311, 37.081164],\n              [-82.509927, 37.080666],\n              [-82.509537, 37.080159],\n              [-82.509087, 37.079575],\n              [-82.508682, 37.079049],\n              [-82.508267, 37.078509],\n              [-82.507902, 37.078035],\n              [-82.507503, 37.077516],\n              [-82.507067, 37.076951],\n              [-82.506666, 37.07643],\n              [-82.506234, 37.075869],\n              [-82.505844, 37.075361],\n              [-82.505453, 37.074854],\n              [-82.505094, 37.074388],\n              [-82.504744, 37.073933],\n              [-82.504373, 37.07345],\n              [-82.503998, 37.072963],\n              [-82.50361, 37.072459],\n              [-82.502749, 37.07134],\n              [-82.501418, 37.069611],\n              [-82.500273, 37.068123],\n              [-82.499899, 37.067637],\n              [-82.499879, 37.067611],\n              [-82.499279, 37.066841],\n              [-82.498023, 37.06523],\n              [-82.49765, 37.064751],\n              [-82.49743, 37.064472],\n              [-82.496697, 37.063545],\n              [-82.4966, 37.063423],\n              [-82.496861, 37.063319],\n              [-82.497065, 37.063238],\n              [-82.497277, 37.063167],\n              [-82.497366, 37.063112],\n              [-82.497496, 37.062953],\n              [-82.497592, 37.062793],\n              [-82.497852, 37.062524],\n              [-82.498216, 37.062265],\n              [-82.498394, 37.062023],\n              [-82.4984, 37.06193],\n              [-82.498297, 37.061771],\n              [-82.498078, 37.061612],\n              [-82.497865, 37.061496],\n              [-82.497701, 37.061436],\n              [-82.497605, 37.061299],\n              [-82.497323, 37.061228],\n              [-82.496974, 37.061288],\n              [-82.496686, 37.061255],\n              [-82.496323, 37.061288],\n              [-82.495911, 37.061338],\n              [-82.495761, 37.061322],\n              [-82.495637, 37.061283],\n              [-82.495424, 37.061031],\n              [-82.495246, 37.060844],\n              [-82.494931, 37.060548],\n              [-82.494498, 37.05996],\n              [-82.494421, 37.059833],\n              [-82.494354, 37.059724],\n              [-82.494272, 37.059553],\n              [-82.493997, 37.059262],\n              [-82.493949, 37.059152],\n              [-82.493928, 37.058834],\n              [-82.493866, 37.058548],\n              [-82.493859, 37.058345],\n              [-82.493777, 37.058175],\n              [-82.493749, 37.057999],\n              [-82.493619, 37.057812],\n              [-82.493598, 37.057762],\n              [-82.49355, 37.057647],\n              [-82.493372, 37.057378],\n              [-82.493235, 37.057241],\n              [-82.493207, 37.057164],\n              [-82.493207, 37.057065],\n              [-82.493275, 37.056928],\n              [-82.493282, 37.056834],\n              [-82.493269, 37.056741],\n              [-82.49285, 37.056225],\n              [-82.492788, 37.055994],\n              [-82.492774, 37.055846],\n              [-82.492774, 37.0555],\n              [-82.492801, 37.055274],\n              [-82.492861, 37.055068],\n              [-82.492952, 37.054752],\n              [-82.492986, 37.054456],\n              [-82.493054, 37.054368],\n              [-82.493205, 37.054263],\n              [-82.493411, 37.054181],\n              [-82.493637, 37.054027],\n              [-82.493993, 37.053691],\n              [-82.494301, 37.053422],\n              [-82.494315, 37.053378],\n              [-82.494315, 37.053307],\n              [-82.494267, 37.053175],\n              [-82.494191, 37.052873],\n              [-82.494143, 37.052455],\n              [-82.494136, 37.052043],\n              [-82.494149, 37.051829],\n              [-82.494164, 37.051747],\n              [-82.494217, 37.05145],\n              [-82.494272, 37.051351],\n              [-82.494608, 37.050917],\n              [-82.494628, 37.050779],\n              [-82.494545, 37.050269],\n              [-82.494559, 37.050043],\n              [-82.49499, 37.049307],\n              [-82.494997, 37.049164],\n              [-82.494976, 37.049093],\n              [-82.494921, 37.049054],\n              [-82.494784, 37.049043],\n              [-82.494599, 37.049065],\n              [-82.494428, 37.049137],\n              [-82.494305, 37.049175],\n              [-82.494222, 37.04917],\n              [-82.494169, 37.049141],\n              [-82.49414, 37.049126],\n              [-82.494044, 37.049027],\n              [-82.494023, 37.048813],\n              [-82.494058, 37.04867],\n              [-82.494153, 37.04856],\n              [-82.494188, 37.04845],\n              [-82.494201, 37.048351],\n              [-82.494174, 37.04823],\n              [-82.494043, 37.048066],\n              [-82.493934, 37.047873],\n              [-82.493892, 37.047659],\n              [-82.493775, 37.047302],\n              [-82.49359, 37.046912],\n              [-82.493254, 37.046561],\n              [-82.493103, 37.046396],\n              [-82.493041, 37.04627],\n              [-82.493034, 37.046149],\n              [-82.493041, 37.046],\n              [-82.493069, 37.045858],\n              [-82.493075, 37.04572],\n              [-82.493027, 37.045605],\n              [-82.492616, 37.04538],\n              [-82.492862, 37.045248],\n              [-82.492903, 37.045017],\n              [-82.492574, 37.044858],\n              [-82.492444, 37.044649],\n              [-82.49217, 37.044391],\n              [-82.492169, 37.044232],\n              [-82.49206, 37.044149],\n              [-82.491943, 37.044078],\n              [-82.491806, 37.043919],\n              [-82.491765, 37.043836],\n              [-82.491761, 37.04367],\n              [-82.491758, 37.043529],\n              [-82.491675, 37.04343],\n              [-82.491579, 37.043347],\n              [-82.491264, 37.043282],\n              [-82.49101, 37.043271],\n              [-82.490558, 37.043057],\n              [-82.49038, 37.043002],\n              [-82.490284, 37.042832],\n              [-82.489817, 37.042398],\n              [-82.489659, 37.042283],\n              [-82.489509, 37.04225],\n              [-82.489303, 37.042255],\n              [-82.489077, 37.042283],\n              [-82.488871, 37.042321],\n              [-82.488714, 37.042431],\n              [-82.488618, 37.042459],\n              [-82.488453, 37.04247],\n              [-82.488118, 37.042388],\n              [-82.488028, 37.042322],\n              [-82.487699, 37.042141],\n              [-82.487507, 37.042064],\n              [-82.487213, 37.04191],\n              [-82.487123, 37.041828],\n              [-82.486884, 37.041828],\n              [-82.486733, 37.041762],\n              [-82.486582, 37.041652],\n              [-82.48652, 37.041636],\n              [-82.48641, 37.04163],\n              [-82.486301, 37.041636],\n              [-82.486246, 37.041603],\n              [-82.486171, 37.04152],\n              [-82.486006, 37.041405],\n              [-82.485889, 37.041345],\n              [-82.48578, 37.041312],\n              [-82.48567, 37.041257],\n              [-82.485622, 37.041208],\n              [-82.485622, 37.041125],\n              [-82.48556, 37.040944],\n              [-82.485642, 37.040878],\n              [-82.485718, 37.040834],\n              [-82.485731, 37.040631],\n              [-82.485683, 37.040565],\n              [-82.485574, 37.040477],\n              [-82.485471, 37.040422],\n              [-82.485409, 37.040378],\n              [-82.485368, 37.040307],\n              [-82.485265, 37.040241],\n              [-82.485224, 37.04023],\n              [-82.485128, 37.04023],\n              [-82.485078, 37.040233],\n              [-82.484868, 37.040131],\n              [-82.484731, 37.040179],\n              [-82.484688, 37.040195],\n              [-82.484378, 37.040302],\n              [-82.484162, 37.040376],\n              [-82.484085, 37.040283],\n              [-82.484028, 37.040214],\n              [-82.482233, 37.038052],\n              [-82.482089, 37.037878],\n              [-82.482058, 37.037841],\n              [-82.481414, 37.037065],\n              [-82.480949, 37.036526],\n              [-82.480076, 37.036134],\n              [-82.478984, 37.035611],\n              [-82.477947, 37.034958],\n              [-82.477565, 37.034609],\n              [-82.477511, 37.033128],\n              [-82.477292, 37.032518],\n              [-82.477453, 37.031678],\n              [-82.477978, 37.028938],\n              [-82.478002, 37.028815],\n              [-82.478329, 37.027421],\n              [-82.478329, 37.027029],\n              [-82.478153, 37.026868],\n              [-82.477947, 37.02668],\n              [-82.477729, 37.02607],\n              [-82.477784, 37.025286],\n              [-82.478384, 37.024676],\n              [-82.478606, 37.024541],\n              [-82.478924, 37.024471],\n              [-82.479302, 37.024457],\n              [-82.479292, 37.024447],\n              [-82.479087, 37.024248],\n              [-82.478759, 37.023929],\n              [-82.477499, 37.022703],\n              [-82.477479, 37.022684],\n              [-82.477421, 37.022683],\n              [-82.476963, 37.022869],\n              [-82.476821, 37.022927],\n              [-82.476149, 37.022987],\n              [-82.47495, 37.022338],\n              [-82.474456, 37.022041],\n              [-82.473864, 37.022068],\n              [-82.473594, 37.022166],\n              [-82.473065, 37.02258],\n              [-82.472483, 37.022646],\n              [-82.4719, 37.022439],\n              [-82.471633, 37.022349],\n              [-82.471427, 37.022279],\n              [-82.471096, 37.02216],\n              [-82.470684, 37.022178],\n              [-82.469651, 37.022238],\n              [-82.469068, 37.022119],\n              [-82.468385, 37.021969],\n              [-82.467451, 37.022146],\n              [-82.467423, 37.022151],\n              [-82.467079, 37.021949],\n              [-82.466952, 37.021875],\n              [-82.463414, 37.019854],\n              [-82.463301, 37.01979],\n              [-82.460591, 37.018237],\n              [-82.460546, 37.018211],\n              [-82.45206, 37.013353],\n              [-82.4517, 37.013147],\n              [-82.450697, 37.012573],\n              [-82.450638, 37.012539],\n              [-82.44912, 37.011671],\n              [-82.448822, 37.0115],\n              [-82.443852, 37.008654],\n              [-82.443625, 37.008524],\n              [-82.442205, 37.00771],\n              [-82.442, 37.007593],\n              [-82.438485, 37.005581],\n              [-82.438331, 37.005493],\n              [-82.437658, 37.005117],\n              [-82.437513, 37.005036],\n              [-82.435962, 37.004149],\n              [-82.435936, 37.004134],\n              [-82.435461, 37.003862],\n              [-82.435039, 37.003621],\n              [-82.434906, 37.003545],\n              [-82.431847, 37.001794],\n              [-82.429864, 37.000654],\n              [-82.428916, 37.00011],\n              [-82.426219, 36.998547],\n              [-82.423359, 36.996889],\n              [-82.422577, 36.996436],\n              [-82.422464, 36.996371],\n              [-82.416023, 36.992636],\n              [-82.412582, 36.990644],\n              [-82.411653, 36.990106],\n              [-82.408756, 36.988429],\n              [-82.406283, 36.986997],\n              [-82.406138, 36.986913],\n              [-82.405994, 36.986829],\n              [-82.404714, 36.986088],\n              [-82.404503, 36.985966],\n              [-82.40432, 36.98586],\n              [-82.404288, 36.985842],\n              [-82.404078, 36.985794],\n              [-82.403617, 36.985794],\n              [-82.403455, 36.985857],\n              [-82.402897, 36.986076],\n              [-82.402758, 36.986122],\n              [-82.402287, 36.986277],\n              [-82.402077, 36.986357],\n              [-82.401786, 36.986469],\n              [-82.400966, 36.985802],\n              [-82.400742, 36.985627],\n              [-82.400673, 36.985614],\n              [-82.39931, 36.9847],\n              [-82.399268, 36.984656],\n              [-82.399143, 36.984588],\n              [-82.398687, 36.984342],\n              [-82.397336, 36.983876],\n              [-82.396576, 36.983498],\n              [-82.396235, 36.983185],\n              [-82.396195, 36.982814],\n              [-82.396055, 36.982372],\n              [-82.395695, 36.982202],\n              [-82.395065, 36.982119],\n              [-82.395024, 36.982114],\n              [-82.394481, 36.982194],\n              [-82.39424, 36.982229],\n              [-82.393549, 36.982406],\n              [-82.393356, 36.982463],\n              [-82.393247, 36.982496],\n              [-82.392906, 36.982448],\n              [-82.392709, 36.982279],\n              [-82.392635, 36.982215],\n              [-82.392578, 36.982192],\n              [-82.392137, 36.982022],\n              [-82.391268, 36.981685],\n              [-82.390795, 36.981484],\n              [-82.390684, 36.981433],\n              [-82.390667, 36.981425],\n              [-82.390461, 36.981228],\n              [-82.390115, 36.980788],\n              [-82.389939, 36.980629],\n              [-82.389866, 36.980566],\n              [-82.389323, 36.980335],\n              [-82.389059, 36.98024],\n              [-82.388952, 36.980201],\n              [-82.388888, 36.979965],\n              [-82.388867, 36.979936],\n              [-82.388769, 36.979804],\n              [-82.388307, 36.979732],\n              [-82.388261, 36.979725],\n              [-82.388188, 36.979735],\n              [-82.388082, 36.97975],\n              [-82.387858, 36.979781],\n              [-82.387468, 36.980002],\n              [-82.387425, 36.980027],\n              [-82.387037, 36.98022],\n              [-82.386955, 36.980334],\n              [-82.386614, 36.980632],\n              [-82.385035, 36.980661],\n              [-82.38491, 36.98066],\n              [-82.384599, 36.980646],\n              [-82.384295, 36.980633],\n              [-82.384093, 36.980585],\n              [-82.383585, 36.980464],\n              [-82.383356, 36.980413],\n              [-82.383349, 36.980411],\n              [-82.383345, 36.98041],\n              [-82.382776, 36.980384],\n              [-82.382766, 36.980384],\n              [-82.382545, 36.980389],\n              [-82.382495, 36.980411],\n              [-82.382307, 36.980507],\n              [-82.382033, 36.980581],\n              [-82.381966, 36.980565],\n              [-82.381958, 36.980563],\n              [-82.381833, 36.980532],\n              [-82.381115, 36.980357],\n              [-82.380244, 36.980293],\n              [-82.379493, 36.980543],\n              [-82.378862, 36.980786],\n              [-82.378672, 36.980601],\n              [-82.378861, 36.980038],\n              [-82.379006, 36.979622],\n              [-82.379021, 36.979579],\n              [-82.379682, 36.979256],\n              [-82.379849, 36.979106],\n              [-82.379919, 36.979043],\n              [-82.37993, 36.979033],\n              [-82.379989, 36.978859],\n              [-82.380082, 36.97858],\n              [-82.380282, 36.97829],\n              [-82.380362, 36.978231],\n              [-82.380586, 36.97758],\n              [-82.380539, 36.977476],\n              [-82.380531, 36.977302],\n              [-82.380527, 36.977228],\n              [-82.380527, 36.977223],\n              [-82.380507, 36.976809],\n              [-82.380314, 36.976148],\n              [-82.380197, 36.975739],\n              [-82.380191, 36.975515],\n              [-82.379859, 36.975381],\n              [-82.379835, 36.975371],\n              [-82.379377, 36.975186],\n              [-82.379323, 36.974983],\n              [-82.379309, 36.97493],\n              [-82.379019, 36.974882],\n              [-82.378877, 36.974864],\n              [-82.378781, 36.974851],\n              [-82.378605, 36.974827],\n              [-82.378527, 36.974815],\n              [-82.378448, 36.974803],\n              [-82.37837, 36.97479],\n              [-82.378291, 36.974777],\n              [-82.378214, 36.974763],\n              [-82.378136, 36.974749],\n              [-82.378058, 36.974734],\n              [-82.377927, 36.974709],\n              [-82.377444, 36.974984],\n              [-82.376831, 36.97492],\n              [-82.375726, 36.975018],\n              [-82.375205, 36.975195],\n              [-82.374874, 36.975501],\n              [-82.374683, 36.97564],\n              [-82.374421, 36.975618],\n              [-82.374415, 36.975567],\n              [-82.374404, 36.975531],\n              [-82.374387, 36.975478],\n              [-82.374326, 36.975288],\n              [-82.374003, 36.975171],\n              [-82.373542, 36.97528],\n              [-82.373254, 36.975461],\n              [-82.373225, 36.97549],\n              [-82.373106, 36.975608],\n              [-82.372687, 36.976029],\n              [-82.372611, 36.976105],\n              [-82.37226, 36.975908],\n              [-82.371432, 36.975443],\n              [-82.371389, 36.975418],\n              [-82.371356, 36.9754],\n              [-82.371402, 36.975365],\n              [-82.371466, 36.975317],\n              [-82.371435, 36.97523],\n              [-82.370891, 36.973715],\n              [-82.37072, 36.973555],\n              [-82.370593, 36.973512],\n              [-82.36915, 36.973029],\n              [-82.367808, 36.971931],\n              [-82.367812, 36.971565],\n              [-82.367813, 36.971451],\n              [-82.367776, 36.970983],\n              [-82.367621, 36.970679],\n              [-82.367238, 36.970586],\n              [-82.366785, 36.970526],\n              [-82.366599, 36.970469],\n              [-82.366145, 36.970329],\n              [-82.366104, 36.970316],\n              [-82.365956, 36.970164],\n              [-82.365381, 36.969574],\n              [-82.365268, 36.968885],\n              [-82.365259, 36.968832],\n              [-82.36525, 36.968777],\n              [-82.365427, 36.968555],\n              [-82.365625, 36.968304],\n              [-82.365638, 36.96829],\n              [-82.365662, 36.968264],\n              [-82.365686, 36.968228],\n              [-82.365737, 36.968152],\n              [-82.365741, 36.968146],\n              [-82.365772, 36.9681],\n              [-82.365738, 36.967826],\n              [-82.365552, 36.9674],\n              [-82.365416, 36.967098],\n              [-82.365107, 36.966412],\n              [-82.365078, 36.966235],\n              [-82.36504, 36.966002],\n              [-82.364926, 36.965728],\n              [-82.364702, 36.965481],\n              [-82.364278, 36.965308],\n              [-82.364228, 36.96528],\n              [-82.364179, 36.965252],\n              [-82.363701, 36.964983],\n              [-82.363669, 36.964838],\n              [-82.363917, 36.96465],\n              [-82.364003, 36.964629],\n              [-82.364267, 36.964565],\n              [-82.364559, 36.964643],\n              [-82.364836, 36.964652],\n              [-82.365007, 36.964377],\n              [-82.365178, 36.963897],\n              [-82.36512, 36.962843],\n              [-82.365319, 36.962408],\n              [-82.365397, 36.962353],\n              [-82.365376, 36.96234],\n              [-82.36533, 36.962313],\n              [-82.365293, 36.962292],\n              [-82.365247, 36.962265],\n              [-82.365206, 36.96224],\n              [-82.365159, 36.962214],\n              [-82.365109, 36.962183],\n              [-82.365091, 36.962172],\n              [-82.365015, 36.962131],\n              [-82.364889, 36.962063],\n              [-82.364478, 36.961835],\n              [-82.364436, 36.961804],\n              [-82.364, 36.961462],\n              [-82.363953, 36.961133],\n              [-82.363425, 36.960709],\n              [-82.363052, 36.960495],\n              [-82.36305, 36.960359],\n              [-82.363248, 36.96026],\n              [-82.363436, 36.959976],\n              [-82.363634, 36.959989],\n              [-82.363855, 36.960111],\n              [-82.36397, 36.960117],\n              [-82.363606, 36.959845],\n              [-82.362606, 36.958976],\n              [-82.362491, 36.958747],\n              [-82.362194, 36.958245],\n              [-82.36232, 36.95797],\n              [-82.362397, 36.957711],\n              [-82.362474, 36.957524],\n              [-82.362623, 36.957434],\n              [-82.3627, 36.957159],\n              [-82.362756, 36.956892],\n              [-82.362883, 36.956681],\n              [-82.363042, 36.956583],\n              [-82.363084, 36.956576],\n              [-82.363118, 36.95657],\n              [-82.363113, 36.956538],\n              [-82.36309, 36.956388],\n              [-82.362756, 36.9561],\n              [-82.362746, 36.956091],\n              [-82.362233, 36.955862],\n              [-82.361771, 36.955844],\n              [-82.36174, 36.955861],\n              [-82.361657, 36.955904],\n              [-82.361566, 36.95595],\n              [-82.361473, 36.955995],\n              [-82.361381, 36.956039],\n              [-82.361288, 36.956083],\n              [-82.360946, 36.956266],\n              [-82.360901, 36.956288],\n              [-82.360853, 36.956306],\n              [-82.360803, 36.956319],\n              [-82.360767, 36.956326],\n              [-82.360732, 36.956331],\n              [-82.36062, 36.956342],\n              [-82.360506, 36.956344],\n              [-82.360393, 36.956337],\n              [-82.360281, 36.956317],\n              [-82.360199, 36.956298],\n              [-82.35978, 36.95629],\n              [-82.359114, 36.956278],\n              [-82.35906, 36.956277],\n              [-82.358625, 36.956426],\n              [-82.358555, 36.956466],\n              [-82.358504, 36.956507],\n              [-82.358468, 36.956563],\n              [-82.358459, 36.956587],\n              [-82.358327, 36.956538],\n              [-82.358186, 36.956601],\n              [-82.358063, 36.956842],\n              [-82.357875, 36.957405],\n              [-82.3577, 36.957776],\n              [-82.357691, 36.957776],\n              [-82.357606, 36.95777],\n              [-82.357483, 36.957744],\n              [-82.3574, 36.957719],\n              [-82.357185, 36.957719],\n              [-82.356757, 36.957527],\n              [-82.35666, 36.957345],\n              [-82.356589, 36.95723],\n              [-82.356372, 36.956821],\n              [-82.355823, 36.956342],\n              [-82.355544, 36.956506],\n              [-82.355341, 36.956659],\n              [-82.355217, 36.956752],\n              [-82.354685, 36.956765],\n              [-82.354175, 36.956875],\n              [-82.354014, 36.957047],\n              [-82.353977, 36.957087],\n              [-82.353993, 36.957161],\n              [-82.353134, 36.957354],\n              [-82.352981, 36.957457],\n              [-82.353055, 36.957831],\n              [-82.352845, 36.957921],\n              [-82.352559, 36.957874],\n              [-82.352529, 36.957869],\n              [-82.352258, 36.957565],\n              [-82.351895, 36.957368],\n              [-82.351393, 36.957366],\n              [-82.351129, 36.957464],\n              [-82.351107, 36.957472],\n              [-82.350918, 36.957728],\n              [-82.350751, 36.957982],\n              [-82.350552, 36.958163],\n              [-82.350184, 36.958161],\n              [-82.350141, 36.958161],\n              [-82.349024, 36.958114],\n              [-82.348594, 36.958207],\n              [-82.348156, 36.958413],\n              [-82.347537, 36.958645],\n              [-82.34714, 36.958948],\n              [-82.346764, 36.959339],\n              [-82.346619, 36.959711],\n              [-82.341069, 36.963051],\n              [-82.341044, 36.963066],\n              [-82.339815, 36.963806],\n              [-82.338993, 36.964301],\n              [-82.338672, 36.964494],\n              [-82.338302, 36.964717],\n              [-82.336095, 36.966045],\n              [-82.336075, 36.966057],\n              [-82.334634, 36.966925],\n              [-82.332464, 36.968231],\n              [-82.332457, 36.968235],\n              [-82.328013, 36.970912],\n              [-82.327399, 36.96957],\n              [-82.327164, 36.969055],\n              [-82.3271, 36.968913],\n              [-82.324203, 36.962442],\n              [-82.32406, 36.962145],\n              [-82.323489, 36.960875],\n              [-82.321992, 36.957543],\n              [-82.320909, 36.955138],\n              [-82.320856, 36.955021],\n              [-82.318725, 36.950289],\n              [-82.318687, 36.950203],\n              [-82.318302, 36.949332],\n              [-82.317769, 36.948146],\n              [-82.315111, 36.942231],\n              [-82.314915, 36.941794],\n              [-82.314785, 36.941484],\n              [-82.312252, 36.935855],\n              [-82.312184, 36.935698],\n              [-82.310192, 36.931275],\n              [-82.309041, 36.928744],\n              [-82.308547, 36.927614],\n              [-82.308461, 36.927417],\n              [-82.305637, 36.921161],\n              [-82.305195, 36.920182],\n              [-82.305154, 36.920091],\n              [-82.3038, 36.917164],\n              [-82.303662, 36.916868],\n              [-82.303281, 36.916047],\n              [-82.302221, 36.913585],\n              [-82.302176, 36.913481],\n              [-82.301702, 36.91238],\n              [-82.301485, 36.911924],\n              [-82.301391, 36.911727],\n              [-82.30115, 36.9112],\n              [-82.300364, 36.909552],\n              [-82.299778, 36.908172],\n              [-82.299726, 36.908036],\n              [-82.299231, 36.906899],\n              [-82.299008, 36.906382],\n              [-82.298827, 36.905961],\n              [-82.298789, 36.905872],\n              [-82.298754, 36.90579],\n              [-82.298598, 36.905426],\n              [-82.300881, 36.90486],\n              [-82.300887, 36.904859],\n              [-82.301416, 36.904728],\n              [-82.301824, 36.904678],\n              [-82.30184, 36.904676],\n              [-82.301933, 36.904664],\n              [-82.30194, 36.904663],\n              [-82.302222, 36.904628],\n              [-82.302332, 36.904615],\n              [-82.303257, 36.904679],\n              [-82.303968, 36.904691],\n              [-82.304123, 36.904694],\n              [-82.304229, 36.904703],\n              [-82.304334, 36.904708],\n              [-82.304549, 36.904715],\n              [-82.30492, 36.904612],\n              [-82.305243, 36.904568],\n              [-82.305512, 36.904358],\n              [-82.305747, 36.904254],\n              [-82.305973, 36.904027],\n              [-82.306076, 36.903911],\n              [-82.306859, 36.903321],\n              [-82.308033, 36.902547],\n              [-82.308796, 36.902234],\n              [-82.308935, 36.902177],\n              [-82.30901, 36.902157],\n              [-82.309028, 36.902152],\n              [-82.309121, 36.902127],\n              [-82.309168, 36.902114],\n              [-82.309293, 36.902083],\n              [-82.309326, 36.902075],\n              [-82.309789, 36.902016],\n              [-82.311402, 36.901907],\n              [-82.3126, 36.901896],\n              [-82.31355, 36.901927],\n              [-82.314586, 36.902083],\n              [-82.314951, 36.902138],\n              [-82.315107, 36.902161],\n              [-82.315388, 36.902225],\n              [-82.315977, 36.90237],\n              [-82.315986, 36.902372],\n              [-82.316315, 36.902506],\n              [-82.316985, 36.902916],\n              [-82.317076, 36.903342],\n              [-82.317048, 36.903826],\n              [-82.316968, 36.904024],\n              [-82.316873, 36.904215],\n              [-82.316864, 36.904234],\n              [-82.316791, 36.904382],\n              [-82.316489, 36.904999],\n              [-82.316391, 36.9052],\n              [-82.316365, 36.90525],\n              [-82.316332, 36.905314],\n              [-82.316131, 36.90574],\n              [-82.31599, 36.906534],\n              [-82.316, 36.907171],\n              [-82.316351, 36.907805],\n              [-82.316965, 36.907927],\n              [-82.317797, 36.907855],\n              [-82.318258, 36.907626],\n              [-82.318414, 36.907552],\n              [-82.318469, 36.907526],\n              [-82.318793, 36.907369],\n              [-82.319485, 36.906661],\n              [-82.319588, 36.906487],\n              [-82.320065, 36.905679],\n              [-82.320542, 36.90487],\n              [-82.320562, 36.904836],\n              [-82.320574, 36.904781],\n              [-82.32062, 36.904579],\n              [-82.320665, 36.904376],\n              [-82.320722, 36.904124],\n              [-82.320685, 36.903828],\n              [-82.320642, 36.90348],\n              [-82.320188, 36.902646],\n              [-82.319462, 36.901685],\n              [-82.319186, 36.901322],\n              [-82.319172, 36.901303],\n              [-82.319089, 36.901195],\n              [-82.319006, 36.901086],\n              [-82.318993, 36.901068],\n              [-82.318983, 36.901055],\n              [-82.31883, 36.900854],\n              [-82.318732, 36.900725],\n              [-82.318633, 36.900595],\n              [-82.318439, 36.900401],\n              [-82.318251, 36.900239],\n              [-82.318229, 36.90022],\n              [-82.318221, 36.900207],\n              [-82.318208, 36.900186],\n              [-82.318154, 36.900098],\n              [-82.318099, 36.900009],\n              [-82.318032, 36.899901],\n              [-82.317978, 36.899813],\n              [-82.317813, 36.899453],\n              [-82.317755, 36.899347],\n              [-82.317652, 36.899246],\n              [-82.317547, 36.899143],\n              [-82.317426, 36.899052],\n              [-82.317343, 36.898951],\n              [-82.316693, 36.898195],\n              [-82.316436, 36.897553],\n              [-82.316404, 36.897472],\n              [-82.316371, 36.897392],\n              [-82.316349, 36.897336],\n              [-82.316357, 36.897244],\n              [-82.316409, 36.896674],\n              [-82.316834, 36.895834],\n              [-82.316897, 36.895709],\n              [-82.31753, 36.894864],\n              [-82.317585, 36.894791],\n              [-82.317618, 36.894655],\n              [-82.317841, 36.89374],\n              [-82.317786, 36.892137],\n              [-82.31777, 36.89166],\n              [-82.317738, 36.889491],\n              [-82.318153, 36.887814],\n              [-82.318164, 36.887769],\n              [-82.318197, 36.887751],\n              [-82.318831, 36.887408],\n              [-82.320023, 36.887324],\n              [-82.320528, 36.887593],\n              [-82.320966, 36.88804],\n              [-82.321664, 36.889155],\n              [-82.321899, 36.89012],\n              [-82.322041, 36.890869],\n              [-82.322482, 36.891582],\n              [-82.32322, 36.892207],\n              [-82.323508, 36.892451],\n              [-82.323637, 36.89263],\n              [-82.324257, 36.893493],\n              [-82.324669, 36.894465],\n              [-82.324754, 36.894665],\n              [-82.324957, 36.895319],\n              [-82.325039, 36.895582],\n              [-82.325274, 36.896715],\n              [-82.325298, 36.89683],\n              [-82.325377, 36.897442],\n              [-82.325423, 36.897804],\n              [-82.325447, 36.898102],\n              [-82.325643, 36.898488],\n              [-82.325826, 36.898634],\n              [-82.326323, 36.899029],\n              [-82.327193, 36.899481],\n              [-82.327862, 36.899675],\n              [-82.327873, 36.899678],\n              [-82.327898, 36.899684],\n              [-82.327964, 36.899669],\n              [-82.328648, 36.899523],\n              [-82.329263, 36.899049],\n              [-82.329525, 36.898624],\n              [-82.329596, 36.898506],\n              [-82.329597, 36.898465],\n              [-82.329604, 36.897643],\n              [-82.329187, 36.895953],\n              [-82.328944, 36.89487],\n              [-82.328832, 36.894368],\n              [-82.32877, 36.894156],\n              [-82.328409, 36.892928],\n              [-82.328335, 36.89228],\n              [-82.328411, 36.891678],\n              [-82.328814, 36.891126],\n              [-82.329422, 36.890797],\n              [-82.330199, 36.890483],\n              [-82.330729, 36.890372],\n              [-82.331232, 36.890392],\n              [-82.331402, 36.890398],\n              [-82.332005, 36.890521],\n              [-82.33282, 36.890682],\n              [-82.333502, 36.890789],\n              [-82.333885, 36.890849],\n              [-82.334175, 36.890651],\n              [-82.334402, 36.890497],\n              [-82.334836, 36.890017],\n              [-82.335068, 36.88945],\n              [-82.335188, 36.888788],\n              [-82.335344, 36.887786],\n              [-82.335577, 36.887451],\n              [-82.335599, 36.887448],\n              [-82.335888, 36.887297],\n              [-82.336478, 36.887162],\n              [-82.336931, 36.887319],\n              [-82.337418, 36.887669],\n              [-82.337956, 36.888124],\n              [-82.338427, 36.888724],\n              [-82.338979, 36.889436],\n              [-82.339341, 36.890167],\n              [-82.339656, 36.891099],\n              [-82.339769, 36.891961],\n              [-82.339564, 36.892987],\n              [-82.339463, 36.894295],\n              [-82.339641, 36.894801],\n              [-82.339926, 36.895062],\n              [-82.340129, 36.895248],\n              [-82.340552, 36.895562],\n              [-82.34164, 36.89637],\n              [-82.341813, 36.896408],\n              [-82.342063, 36.896463],\n              [-82.342574, 36.896465],\n              [-82.342614, 36.896465],\n              [-82.343261, 36.896128],\n              [-82.343806, 36.895696],\n              [-82.344671, 36.895195],\n              [-82.345368, 36.894833],\n              [-82.346625, 36.894377],\n              [-82.346725, 36.89433],\n              [-82.347288, 36.894067],\n              [-82.34785, 36.893804],\n              [-82.34814, 36.893669],\n              [-82.349148, 36.893124],\n              [-82.349981, 36.892739],\n              [-82.350756, 36.892417],\n              [-82.350798, 36.8924],\n              [-82.35155, 36.892385],\n              [-82.351647, 36.892424],\n              [-82.352004, 36.892566],\n              [-82.352611, 36.892931],\n              [-82.353711, 36.894025],\n              [-82.354615, 36.894742],\n              [-82.355344, 36.895186],\n              [-82.356003, 36.895247],\n              [-82.35676, 36.895317],\n              [-82.357545, 36.895134],\n              [-82.357739, 36.895089],\n              [-82.357907, 36.895019],\n              [-82.358646, 36.894701],\n              [-82.358754, 36.894632],\n              [-82.35949, 36.894177],\n              [-82.359607, 36.89381],\n              [-82.359672, 36.893594],\n              [-82.359671, 36.893425],\n              [-82.359669, 36.892739],\n              [-82.359422, 36.892331],\n              [-82.35889, 36.891626],\n              [-82.358031, 36.891207],\n              [-82.357232, 36.890756],\n              [-82.356891, 36.890081],\n              [-82.35683, 36.889915],\n              [-82.356787, 36.889795],\n              [-82.356743, 36.889675],\n              [-82.356692, 36.889535],\n              [-82.356795, 36.889042],\n              [-82.357258, 36.888497],\n              [-82.357984, 36.888143],\n              [-82.358565, 36.888073],\n              [-82.358709, 36.888095],\n              [-82.359184, 36.888173],\n              [-82.359659, 36.888252],\n              [-82.359771, 36.88827],\n              [-82.359857, 36.888309],\n              [-82.36067, 36.888673],\n              [-82.361238, 36.889086],\n              [-82.362197, 36.890133],\n              [-82.363146, 36.891221],\n              [-82.363754, 36.891741],\n              [-82.36404, 36.891986],\n              [-82.364874, 36.892703],\n              [-82.365353, 36.893182],\n              [-82.365526, 36.893252],\n              [-82.365782, 36.893355],\n              [-82.366039, 36.893458],\n              [-82.367063, 36.893442],\n              [-82.367433, 36.893436],\n              [-82.368576, 36.8934],\n              [-82.369699, 36.893389],\n              [-82.369822, 36.893368],\n              [-82.370299, 36.893286],\n              [-82.370897, 36.89307],\n              [-82.371413, 36.892702],\n              [-82.371879, 36.892326],\n              [-82.372564, 36.891876],\n              [-82.372766, 36.891789],\n              [-82.373122, 36.891636],\n              [-82.373277, 36.891573],\n              [-82.373919, 36.891314],\n              [-82.374872, 36.890979],\n              [-82.375912, 36.890541],\n              [-82.376162, 36.890396],\n              [-82.37622, 36.890349],\n              [-82.376481, 36.890138],\n              [-82.376482, 36.890138],\n              [-82.376744, 36.889927],\n              [-82.377012, 36.889711],\n              [-82.377762, 36.889429],\n              [-82.378516, 36.889211],\n              [-82.378682, 36.889163],\n              [-82.379722, 36.8888],\n              [-82.380349, 36.888464],\n              [-82.380882, 36.888131],\n              [-82.382021, 36.887413],\n              [-82.382747, 36.887032],\n              [-82.383068, 36.886863],\n              [-82.383388, 36.886695],\n              [-82.383602, 36.886583],\n              [-82.383979, 36.886497],\n              [-82.384692, 36.886333],\n              [-82.385418, 36.886164],\n              [-82.386292, 36.885961],\n              [-82.387632, 36.885847],\n              [-82.387835, 36.885848],\n              [-82.388723, 36.885854],\n              [-82.389273, 36.885749],\n              [-82.389743, 36.885628],\n              [-82.390102, 36.885282],\n              [-82.390211, 36.884959],\n              [-82.39026, 36.884595],\n              [-82.390311, 36.884373],\n              [-82.390333, 36.884279],\n              [-82.3904, 36.883994],\n              [-82.390466, 36.883708],\n              [-82.390468, 36.883697],\n              [-82.390491, 36.883591],\n              [-82.390778, 36.883072],\n              [-82.390848, 36.882945],\n              [-82.390919, 36.882818],\n              [-82.39099, 36.882689],\n              [-82.391829, 36.881908],\n              [-82.392049, 36.881786],\n              [-82.392909, 36.881311],\n              [-82.394389, 36.880842],\n              [-82.394859, 36.880672],\n              [-82.395901, 36.880288],\n              [-82.396238, 36.880164],\n              [-82.398068, 36.879695],\n              [-82.399048, 36.879485],\n              [-82.400138, 36.879009],\n              [-82.400839, 36.878671],\n              [-82.401618, 36.878292],\n              [-82.402248, 36.877945],\n              [-82.402804, 36.877806],\n              [-82.402958, 36.877767],\n              [-82.404048, 36.87742],\n              [-82.40445, 36.877291],\n              [-82.405027, 36.877105],\n              [-82.405749, 36.87682],\n              [-82.406083, 36.876688],\n              [-82.406436, 36.876483],\n              [-82.406536, 36.876425],\n              [-82.40663, 36.876367],\n              [-82.406637, 36.876363],\n              [-82.406659, 36.876436],\n              [-82.406709, 36.876604],\n              [-82.40696, 36.876943],\n              [-82.407078, 36.877102],\n              [-82.407196, 36.877262],\n              [-82.407248, 36.877333],\n              [-82.407376, 36.877505],\n              [-82.407445, 36.877782],\n              [-82.407445, 36.878528],\n              [-82.407375, 36.878618],\n              [-82.407143, 36.878727],\n              [-82.40603, 36.878806],\n              [-82.405646, 36.878918],\n              [-82.405246, 36.878974],\n              [-82.404787, 36.8791],\n              [-82.404601, 36.879212],\n              [-82.404562, 36.879229],\n              [-82.404512, 36.879266],\n              [-82.403971, 36.879593],\n              [-82.40371, 36.879922],\n              [-82.403515, 36.880469],\n              [-82.40325, 36.88088],\n              [-82.402944, 36.881231],\n              [-82.402693, 36.881435],\n              [-82.402297, 36.881899],\n              [-82.402066, 36.88217],\n              [-82.401979, 36.882407],\n              [-82.402003, 36.882583],\n              [-82.402478, 36.883054],\n              [-82.402822, 36.883594],\n              [-82.402814, 36.883737],\n              [-82.402602, 36.884088],\n              [-82.402543, 36.884441],\n              [-82.402605, 36.884647],\n              [-82.403291, 36.885341],\n              [-82.403694, 36.885613],\n              [-82.405239, 36.885377],\n              [-82.406452, 36.884988],\n              [-82.406762, 36.884939],\n              [-82.407166, 36.884908],\n              [-82.408064, 36.884955],\n              [-82.408549, 36.885033],\n              [-82.408966, 36.885166],\n              [-82.409053, 36.885222],\n              [-82.409293, 36.885216],\n              [-82.411184, 36.885168],\n              [-82.421111, 36.884916],\n              [-82.421203, 36.884914],\n              [-82.4229, 36.884882],\n              [-82.433363, 36.884682],\n              [-82.43355, 36.88468],\n              [-82.43383, 36.884677],\n              [-82.433901, 36.884674],\n              [-82.433925, 36.884673],\n              [-82.434905, 36.884653],\n              [-82.435039, 36.88465],\n              [-82.439317, 36.884563],\n              [-82.439402, 36.884561],\n              [-82.44014, 36.884545],\n              [-82.44045, 36.884536],\n              [-82.440489, 36.884535],\n              [-82.440623, 36.884531],\n              [-82.44067, 36.88453],\n              [-82.440838, 36.884525],\n              [-82.440882, 36.884524],\n              [-82.44092, 36.884522],\n              [-82.440929, 36.884522],\n              [-82.441168, 36.884515],\n              [-82.441553, 36.884504],\n              [-82.445962, 36.884422],\n              [-82.448605, 36.884371],\n              [-82.450617, 36.884332],\n              [-82.46214, 36.884085],\n              [-82.463306, 36.88406],\n              [-82.464919, 36.884026],\n              [-82.472471, 36.883869],\n              [-82.480345, 36.88372],\n              [-82.481206, 36.883704],\n              [-82.492096, 36.883495],\n              [-82.500028, 36.883342],\n              [-82.502601, 36.883276],\n              [-82.505727, 36.883197],\n              [-82.50594, 36.883194],\n              [-82.512954, 36.883088],\n              [-82.513032, 36.883086],\n              [-82.517301, 36.882999],\n              [-82.52068, 36.882936],\n              [-82.521701, 36.882914],\n              [-82.52513, 36.882839],\n              [-82.528146, 36.882778],\n              [-82.5327, 36.882668],\n              [-82.537581, 36.882584],\n              [-82.538855, 36.882566],\n              [-82.539161, 36.882551],\n              [-82.541657, 36.8825],\n              [-82.541716, 36.882499],\n              [-82.541776, 36.882498],\n              [-82.541805, 36.882497],\n              [-82.546667, 36.882364],\n              [-82.547286, 36.88236],\n              [-82.553667, 36.882224],\n              [-82.554556, 36.882205],\n              [-82.561421, 36.882063],\n              [-82.561564, 36.88206],\n              [-82.564575, 36.881997],\n              [-82.564733, 36.881994],\n              [-82.56631, 36.881961],\n              [-82.566593, 36.881955],\n              [-82.566622, 36.881954],\n              [-82.567023, 36.881946],\n              [-82.567032, 36.881946],\n              [-82.567139, 36.881944],\n              [-82.567154, 36.881944],\n              [-82.567161, 36.881943],\n              [-82.567171, 36.881943],\n              [-82.56722, 36.881942],\n              [-82.567423, 36.881938],\n              [-82.569182, 36.881901],\n              [-82.573455, 36.881811],\n              [-82.580065, 36.88164],\n              [-82.587168, 36.881481],\n              [-82.587185, 36.881481],\n              [-82.5906, 36.881404],\n              [-82.590963, 36.881396],\n              [-82.591888, 36.88138],\n              [-82.592328, 36.881372],\n              [-82.592899, 36.881362],\n              [-82.593022, 36.88136],\n              [-82.593031, 36.88136],\n              [-82.59316, 36.881358],\n              [-82.593506, 36.881352],\n              [-82.594948, 36.881352],\n              [-82.61616, 36.880905],\n              [-82.616701, 36.880893],\n              [-82.616768, 36.880892],\n              [-82.616836, 36.880891],\n              [-82.616864, 36.88089],\n              [-82.617093, 36.880885],\n              [-82.617279, 36.880881],\n              [-82.623381, 36.879958],\n              [-82.623573, 36.879928],\n              [-82.627075, 36.879476],\n              [-82.634495, 36.878506],\n              [-82.634502, 36.878505],\n              [-82.634612, 36.878491],\n              [-82.634687, 36.878424],\n              [-82.634784, 36.878317],\n              [-82.634989, 36.87804],\n              [-82.635126, 36.877886],\n              [-82.635304, 36.877675],\n              [-82.635473, 36.87746],\n              [-82.635666, 36.877161],\n              [-82.635832, 36.876927],\n              [-82.635916, 36.876836],\n              [-82.636067, 36.876691],\n              [-82.636231, 36.876555],\n              [-82.636296, 36.876517],\n              [-82.636413, 36.876465],\n              [-82.636539, 36.876427],\n              [-82.636716, 36.876404],\n              [-82.63689, 36.876365],\n              [-82.637093, 36.876302],\n              [-82.637255, 36.876236],\n              [-82.637409, 36.876158],\n              [-82.638047, 36.875748],\n              [-82.638432, 36.875472],\n              [-82.638548, 36.875377],\n              [-82.638623, 36.875297],\n              [-82.638868, 36.874309],\n              [-82.638902, 36.874174],\n              [-82.638942, 36.874014],\n              [-82.639254, 36.873356],\n              [-82.639257, 36.873349],\n              [-82.639583, 36.873244],\n              [-82.639895, 36.872931],\n              [-82.640029, 36.872689],\n              [-82.639927, 36.872532],\n              [-82.639891, 36.872478],\n              [-82.639887, 36.872469],\n              [-82.640328, 36.871999],\n              [-82.640341, 36.871999],\n              [-82.640366, 36.871998],\n              [-82.640413, 36.871996],\n              [-82.640471, 36.871994],\n              [-82.640482, 36.871994],\n              [-82.640791, 36.871904],\n              [-82.641188, 36.871756],\n              [-82.641605, 36.871528],\n              [-82.641802, 36.871318],\n              [-82.64175, 36.871108],\n              [-82.641744, 36.871085],\n              [-82.641744, 36.871079],\n              [-82.641888, 36.870875],\n              [-82.641998, 36.8702],\n              [-82.641868, 36.870026],\n              [-82.641904, 36.869611],\n              [-82.642156, 36.869279],\n              [-82.642546, 36.869146],\n              [-82.642565, 36.869139],\n              [-82.642574, 36.86913],\n              [-82.642669, 36.869078],\n              [-82.642758, 36.869048],\n              [-82.642871, 36.86903],\n              [-82.643233, 36.869035],\n              [-82.643273, 36.869031],\n              [-82.643352, 36.869016],\n              [-82.643445, 36.868986],\n              [-82.643546, 36.868934],\n              [-82.643671, 36.868854],\n              [-82.643815, 36.868745],\n              [-82.643916, 36.868675],\n              [-82.644177, 36.86851],\n              [-82.645027, 36.868036],\n              [-82.645136, 36.86797],\n              [-82.645214, 36.86791],\n              [-82.645301, 36.867826],\n              [-82.645597, 36.867444],\n              [-82.64568, 36.867336],\n              [-82.64572, 36.867266],\n              [-82.645773, 36.867175],\n              [-82.645959, 36.866932],\n              [-82.646276, 36.866752],\n              [-82.646653, 36.866508],\n              [-82.646888, 36.8662],\n              [-82.647055, 36.865925],\n              [-82.647228, 36.865805],\n              [-82.64723, 36.86579],\n              [-82.647245, 36.865679],\n              [-82.647958, 36.863481],\n              [-82.648122, 36.863345],\n              [-82.64878, 36.8628],\n              [-82.648827, 36.862731],\n              [-82.648832, 36.862724],\n              [-82.64896, 36.862713],\n              [-82.649229, 36.862647],\n              [-82.649487, 36.862499],\n              [-82.649704, 36.862345],\n              [-82.649912, 36.86219],\n              [-82.65022, 36.862107],\n              [-82.650518, 36.861959],\n              [-82.650655, 36.861773],\n              [-82.650572, 36.861508],\n              [-82.650459, 36.861284],\n              [-82.650396, 36.861003],\n              [-82.650411, 36.860689],\n              [-82.650466, 36.860294],\n              [-82.650292, 36.859974],\n              [-82.650087, 36.859802],\n              [-82.649817, 36.859496],\n              [-82.649722, 36.859134],\n              [-82.649837, 36.858731],\n              [-82.650051, 36.858351],\n              [-82.650507, 36.858381],\n              [-82.650621, 36.858394],\n              [-82.650765, 36.858416],\n              [-82.650871, 36.858432],\n              [-82.6511, 36.858374],\n              [-82.651338, 36.858275],\n              [-82.651642, 36.857846],\n              [-82.65189, 36.85761],\n              [-82.652297, 36.857422],\n              [-82.65265, 36.856952],\n              [-82.652756, 36.856613],\n              [-82.652601, 36.856244],\n              [-82.652187, 36.855862],\n              [-82.652074, 36.855678],\n              [-82.6521, 36.855356],\n              [-82.652056, 36.855058],\n              [-82.651773, 36.854812],\n              [-82.651462, 36.854758],\n              [-82.651391, 36.854725],\n              [-82.651385, 36.854723],\n              [-82.651379, 36.85472],\n              [-82.651343, 36.854703],\n              [-82.6513, 36.854683],\n              [-82.651236, 36.854654],\n              [-82.651151, 36.854614],\n              [-82.650712, 36.854376],\n              [-82.650562, 36.854182],\n              [-82.65062, 36.853886],\n              [-82.650742, 36.853583],\n              [-82.65101, 36.853429],\n              [-82.651042, 36.85341],\n              [-82.65129, 36.85332],\n              [-82.651659, 36.853418],\n              [-82.651751, 36.853452],\n              [-82.651765, 36.853454],\n              [-82.6519, 36.85347],\n              [-82.651958, 36.853477],\n              [-82.651983, 36.85348],\n              [-82.651997, 36.853482],\n              [-82.65202, 36.853485],\n              [-82.652123, 36.853497],\n              [-82.652332, 36.853463],\n              [-82.652479, 36.853309],\n              [-82.652638, 36.853146],\n              [-82.652829, 36.853096],\n              [-82.653249, 36.853189],\n              [-82.653722, 36.853378],\n              [-82.65386, 36.853296],\n              [-82.653977, 36.853046],\n              [-82.654043, 36.85278],\n              [-82.654188, 36.852424],\n              [-82.654222, 36.851973],\n              [-82.654299, 36.851715],\n              [-82.654419, 36.851632],\n              [-82.654546, 36.851544],\n              [-82.654755, 36.851486],\n              [-82.654883, 36.851332],\n              [-82.654844, 36.851137],\n              [-82.654434, 36.850524],\n              [-82.654384, 36.850353],\n              [-82.654525, 36.849961],\n              [-82.654586, 36.849757],\n              [-82.654706, 36.849544],\n              [-82.654897, 36.849419],\n              [-82.655389, 36.848795],\n              [-82.655619, 36.848497],\n              [-82.65582, 36.84796],\n              [-82.655803, 36.847942],\n              [-82.655764, 36.847901],\n              [-82.655726, 36.847861],\n              [-82.655684, 36.847833],\n              [-82.655656, 36.847803],\n              [-82.655713, 36.847299],\n              [-82.656045, 36.847049],\n              [-82.656098, 36.847008],\n              [-82.656141, 36.846976],\n              [-82.656281, 36.84679],\n              [-82.656519, 36.846715],\n              [-82.656757, 36.846536],\n              [-82.656873, 36.846237],\n              [-82.656849, 36.845972],\n              [-82.656795, 36.845618],\n              [-82.65678, 36.845305],\n              [-82.656798, 36.845287],\n              [-82.656968, 36.845118],\n              [-82.657342, 36.844769],\n              [-82.657571, 36.844606],\n              [-82.65787, 36.844643],\n              [-82.658352, 36.844564],\n              [-82.658725, 36.844378],\n              [-82.65879, 36.84386],\n              [-82.658791, 36.84385],\n              [-82.658842, 36.843388],\n              [-82.659108, 36.843326],\n              [-82.659245, 36.843307],\n              [-82.660302, 36.843287],\n              [-82.660401, 36.843279],\n              [-82.660538, 36.843253],\n              [-82.660597, 36.843231],\n              [-82.660663, 36.843192],\n              [-82.660804, 36.843054],\n              [-82.661443, 36.842125],\n              [-82.661449, 36.842116],\n              [-82.661788, 36.84177],\n              [-82.662705, 36.840911],\n              [-82.662762, 36.840876],\n              [-82.662988, 36.840738],\n              [-82.663265, 36.840631],\n              [-82.663408, 36.840562],\n              [-82.663602, 36.840445],\n              [-82.663761, 36.840338],\n              [-82.664647, 36.839861],\n              [-82.66465, 36.839859],\n              [-82.66467, 36.839892],\n              [-82.664722, 36.839983],\n              [-82.664764, 36.840055],\n              [-82.66502, 36.840119],\n              [-82.665074, 36.840096],\n              [-82.665534, 36.839897],\n              [-82.665975, 36.839728],\n              [-82.666158, 36.839605],\n              [-82.666516, 36.839358],\n              [-82.666577, 36.839314],\n              [-82.666656, 36.839103],\n              [-82.66673, 36.838904],\n              [-82.666766, 36.838807],\n              [-82.668263, 36.838206],\n              [-82.668384, 36.838266],\n              [-82.668987, 36.838404],\n              [-82.669245, 36.838448],\n              [-82.669517, 36.838491],\n              [-82.669982, 36.838684],\n              [-82.670055, 36.83875],\n              [-82.670075, 36.838769],\n              [-82.670143, 36.838834],\n              [-82.670632, 36.838813],\n              [-82.671211, 36.838832],\n              [-82.67136, 36.838787],\n              [-82.671386, 36.838779],\n              [-82.671414, 36.838771],\n              [-82.67142, 36.838769],\n              [-82.671427, 36.838767],\n              [-82.671433, 36.838765],\n              [-82.671457, 36.838758],\n              [-82.671495, 36.838746],\n              [-82.671529, 36.838735],\n              [-82.671536, 36.838733],\n              [-82.671552, 36.838729],\n              [-82.671559, 36.838727],\n              [-82.671577, 36.838721],\n              [-82.67162, 36.838707],\n              [-82.671983, 36.83835],\n              [-82.671992, 36.838317],\n              [-82.67207, 36.838045],\n              [-82.672093, 36.838031],\n              [-82.672693, 36.837683],\n              [-82.672782, 36.837706],\n              [-82.672856, 36.837726],\n              [-82.673134, 36.8378],\n              [-82.673373, 36.83775],\n              [-82.673789, 36.837513],\n              [-82.673965, 36.837221],\n              [-82.673915, 36.8371],\n              [-82.673909, 36.837085],\n              [-82.673886, 36.837028],\n              [-82.673876, 36.837005],\n              [-82.67387, 36.836991],\n              [-82.67394, 36.836934],\n              [-82.674285, 36.836657],\n              [-82.674311, 36.836634],\n              [-82.67505, 36.835988],\n              [-82.675334, 36.83574],\n              [-82.676303, 36.834893],\n              [-82.677532, 36.833819],\n              [-82.677779, 36.83344],\n              [-82.678095, 36.832956],\n              [-82.67813, 36.832903],\n              [-82.678386, 36.832652],\n              [-82.678754, 36.832567],\n              [-82.679262, 36.832466],\n              [-82.68, 36.83241],\n              [-82.680785, 36.832186],\n              [-82.681132, 36.831998],\n              [-82.681338, 36.831722],\n              [-82.681634, 36.83143],\n              [-82.682089, 36.831184],\n              [-82.682254, 36.830829],\n              [-82.68241, 36.830513],\n              [-82.682784, 36.830132],\n              [-82.683199, 36.829838],\n              [-82.683505, 36.82957],\n              [-82.683918, 36.829091],\n              [-82.684412, 36.828717],\n              [-82.684553, 36.828291],\n              [-82.684651, 36.828257],\n              [-82.684907, 36.828051],\n              [-82.685534, 36.826998],\n              [-82.68673, 36.825921],\n              [-82.687494, 36.825328],\n              [-82.68746, 36.825268],\n              [-82.687408, 36.825115],\n              [-82.687404, 36.824818],\n              [-82.68751, 36.824495],\n              [-82.687679, 36.824389],\n              [-82.687812, 36.823952],\n              [-82.688229, 36.823423],\n              [-82.688323, 36.823305],\n              [-82.6887, 36.82318],\n              [-82.689097, 36.823064],\n              [-82.689285, 36.822909],\n              [-82.689681, 36.822664],\n              [-82.689838, 36.82251],\n              [-82.689945, 36.82226],\n              [-82.689919, 36.821915],\n              [-82.68986, 36.821898],\n              [-82.689936, 36.8216],\n              [-82.690243, 36.821412],\n              [-82.690606, 36.820942],\n              [-82.690871, 36.820602],\n              [-82.691048, 36.820415],\n              [-82.691346, 36.820324],\n              [-82.691675, 36.820296],\n              [-82.691972, 36.820149],\n              [-82.692078, 36.819882],\n              [-82.692297, 36.819776],\n              [-82.692635, 36.819684],\n              [-82.693084, 36.819672],\n              [-82.693601, 36.819546],\n              [-82.69391, 36.819495],\n              [-82.694277, 36.819371],\n              [-82.694604, 36.819207],\n              [-82.69494, 36.81897],\n              [-82.695276, 36.818701],\n              [-82.695452, 36.818434],\n              [-82.695778, 36.818214],\n              [-82.695947, 36.818116],\n              [-82.696246, 36.818081],\n              [-82.696854, 36.818019],\n              [-82.697469, 36.817796],\n              [-82.697933, 36.817389],\n              [-82.698167, 36.817025],\n              [-82.698375, 36.816894],\n              [-82.698635, 36.816892],\n              [-82.699415, 36.817029],\n              [-82.700317, 36.817294],\n              [-82.700747, 36.817362],\n              [-82.700996, 36.81732],\n              [-82.701283, 36.817132],\n              [-82.70171, 36.816959],\n              [-82.702099, 36.816971],\n              [-82.702642, 36.817256],\n              [-82.702907, 36.817447],\n              [-82.703116, 36.817597],\n              [-82.703229, 36.817869],\n              [-82.703213, 36.818143],\n              [-82.70314, 36.818618],\n              [-82.703194, 36.818956],\n              [-82.70337, 36.819381],\n              [-82.703563, 36.819604],\n              [-82.703535, 36.819773],\n              [-82.70345, 36.820104],\n              [-82.703547, 36.820674],\n              [-82.703812, 36.821017],\n              [-82.704304, 36.821254],\n              [-82.704827, 36.821515],\n              [-82.705102, 36.821946],\n              [-82.705304, 36.822081],\n              [-82.705735, 36.822262],\n              [-82.706068, 36.822508],\n              [-82.706523, 36.822898],\n              [-82.706682, 36.823049],\n              [-82.706775, 36.823137],\n              [-82.707145, 36.823158],\n              [-82.707784, 36.8232],\n              [-82.708535, 36.823329],\n              [-82.709474, 36.823369],\n              [-82.70987, 36.823156],\n              [-82.710215, 36.822863],\n              [-82.710475, 36.822884],\n              [-82.710887, 36.82309],\n              [-82.711266, 36.823086],\n              [-82.711714, 36.822961],\n              [-82.71259, 36.822775],\n              [-82.713426, 36.822647],\n              [-82.714714, 36.822691],\n              [-82.715664, 36.82281],\n              [-82.716568, 36.823196],\n              [-82.717392, 36.82359],\n              [-82.717805, 36.823859],\n              [-82.718284, 36.823839],\n              [-82.718665, 36.823948],\n              [-82.718876, 36.824066],\n              [-82.719114, 36.824],\n              [-82.719293, 36.823942],\n              [-82.719705, 36.824106],\n              [-82.720559, 36.824549],\n              [-82.721356, 36.82504],\n              [-82.722038, 36.825307],\n              [-82.722309, 36.825417],\n              [-82.722634, 36.825767],\n              [-82.723078, 36.826101],\n              [-82.723312, 36.826453],\n              [-82.723512, 36.827143],\n              [-82.723569, 36.827689],\n              [-82.723405, 36.828069],\n              [-82.723239, 36.828344],\n              [-82.723084, 36.828659],\n              [-82.723172, 36.829077],\n              [-82.723201, 36.829213],\n              [-82.723186, 36.829551],\n              [-82.72303, 36.829826],\n              [-82.722677, 36.830232],\n              [-82.722411, 36.830492],\n              [-82.722365, 36.830766],\n              [-82.72244, 36.831127],\n              [-82.722495, 36.831497],\n              [-82.722418, 36.831723],\n              [-82.72238, 36.831828],\n              [-82.722472, 36.832037],\n              [-82.722534, 36.832181],\n              [-82.722989, 36.832368],\n              [-82.723217, 36.832463],\n              [-82.723877, 36.832611],\n              [-82.724489, 36.832749],\n              [-82.724855, 36.832536],\n              [-82.725299, 36.83221],\n              [-82.725932, 36.831875],\n              [-82.726296, 36.831461],\n              [-82.726767, 36.830821],\n              [-82.727235, 36.830188],\n              [-82.727627, 36.829694],\n              [-82.72786, 36.829521],\n              [-82.727984, 36.829425],\n              [-82.72846, 36.829226],\n              [-82.728789, 36.829192],\n              [-82.72911, 36.829317],\n              [-82.729432, 36.829499],\n              [-82.729745, 36.829592],\n              [-82.730083, 36.82958],\n              [-82.730383, 36.829611],\n              [-82.730645, 36.829793],\n              [-82.730875, 36.829871],\n              [-82.731196, 36.829892],\n              [-82.731602, 36.829752],\n              [-82.731798, 36.829685],\n              [-82.73185, 36.829667],\n              [-82.731871, 36.82966],\n              [-82.731881, 36.829656],\n              [-82.731971, 36.829626],\n              [-82.732309, 36.829648],\n              [-82.732511, 36.829775],\n              [-82.733225, 36.830097],\n              [-82.733626, 36.830165],\n              [-82.733753, 36.830044],\n              [-82.733822, 36.829984],\n              [-82.73384, 36.829968],\n              [-82.733865, 36.829946],\n              [-82.733961, 36.829864],\n              [-82.73427, 36.829813],\n              [-82.734867, 36.829702],\n              [-82.735134, 36.829633],\n              [-82.735513, 36.829535],\n              [-82.73579, 36.829377],\n              [-82.735958, 36.829282],\n              [-82.736252, 36.828804],\n              [-82.736466, 36.828319],\n              [-82.736578, 36.827827],\n              [-82.736689, 36.827457],\n              [-82.736722, 36.827361],\n              [-82.737137, 36.827162],\n              [-82.737548, 36.827303],\n              [-82.738023, 36.82737],\n              [-82.738031, 36.827371],\n              [-82.738201, 36.827369],\n              [-82.738369, 36.827368],\n              [-82.738384, 36.827378],\n              [-82.738512, 36.827511],\n              [-82.738539, 36.827531],\n              [-82.738974, 36.82786],\n              [-82.739486, 36.828104],\n              [-82.739626, 36.828272],\n              [-82.73976, 36.828431],\n              [-82.740035, 36.828782],\n              [-82.740242, 36.828866],\n              [-82.740336, 36.829071],\n              [-82.740649, 36.829657],\n              [-82.740716, 36.829775],\n              [-82.740748, 36.829832],\n              [-82.740723, 36.830191],\n              [-82.740869, 36.830616],\n              [-82.741332, 36.830885],\n              [-82.741762, 36.830906],\n              [-82.74225, 36.83078],\n              [-82.742404, 36.830392],\n              [-82.742674, 36.830175],\n              [-82.743281, 36.829708],\n              [-82.743967, 36.829524],\n              [-82.744574, 36.829406],\n              [-82.745083, 36.829433],\n              [-82.745843, 36.829868],\n              [-82.745891, 36.829895],\n              [-82.746304, 36.830257],\n              [-82.747255, 36.831173],\n              [-82.747308, 36.831382],\n              [-82.747375, 36.831872],\n              [-82.747623, 36.832416],\n              [-82.748039, 36.832839],\n              [-82.748397, 36.832771],\n              [-82.748653, 36.832511],\n              [-82.749106, 36.832104],\n              [-82.749141, 36.831709],\n              [-82.7496, 36.831029],\n              [-82.749886, 36.830742],\n              [-82.750259, 36.83045],\n              [-82.750539, 36.830128],\n              [-82.75074, 36.829895],\n              [-82.751016, 36.829722],\n              [-82.7511, 36.829669],\n              [-82.75163, 36.829525],\n              [-82.752061, 36.828929],\n              [-82.752391, 36.828446],\n              [-82.752651, 36.827963],\n              [-82.752822, 36.827721],\n              [-82.753762, 36.827263],\n              [-82.754523, 36.826916],\n              [-82.755074, 36.826457],\n              [-82.755524, 36.826256],\n              [-82.755824, 36.826095],\n              [-82.755904, 36.825886],\n              [-82.756074, 36.82541],\n              [-82.756285, 36.824685],\n              [-82.756725, 36.824041],\n              [-82.757335, 36.823365],\n              [-82.758026, 36.822753],\n              [-82.758606, 36.822181],\n              [-82.758957, 36.82165],\n              [-82.759297, 36.820885],\n              [-82.759627, 36.820442],\n              [-82.760197, 36.820023],\n              [-82.760768, 36.819508],\n              [-82.761068, 36.819025],\n              [-82.761098, 36.818477],\n              [-82.76212, 36.817632],\n              [-82.76229, 36.816947],\n              [-82.76242, 36.81652],\n              [-82.76268, 36.816287],\n              [-82.76317, 36.816037],\n              [-82.763871, 36.815796],\n              [-82.764241, 36.815571],\n              [-82.764311, 36.815329],\n              [-82.764361, 36.81491],\n              [-82.764511, 36.814451],\n              [-82.764921, 36.81396],\n              [-82.764941, 36.813735],\n              [-82.764991, 36.813299],\n              [-82.765301, 36.8128],\n              [-82.765812, 36.812067],\n              [-82.766412, 36.811359],\n              [-82.766982, 36.81098],\n              [-82.767793, 36.810755],\n              [-82.768683, 36.810756],\n              [-82.769464, 36.810571],\n              [-82.769514, 36.810418],\n              [-82.769764, 36.809758],\n              [-82.770294, 36.809549],\n              [-82.770755, 36.809436],\n              [-82.771035, 36.809227],\n              [-82.771075, 36.808856],\n              [-82.771335, 36.808502],\n              [-82.771415, 36.808244],\n              [-82.771314, 36.807825],\n              [-82.771344, 36.807527],\n              [-82.771575, 36.807326],\n              [-82.772765, 36.806996],\n              [-82.773075, 36.806626],\n              [-82.773395, 36.805917],\n              [-82.773655, 36.804967],\n              [-82.773845, 36.804116],\n              [-82.77394, 36.803678],\n              [-82.773725, 36.803256],\n              [-82.773358, 36.802957],\n              [-82.773144, 36.802772],\n              [-82.772561, 36.802547],\n              [-82.771985, 36.802574],\n              [-82.77141, 36.802541],\n              [-82.770851, 36.802316],\n              [-82.770738, 36.802227],\n              [-82.769725, 36.801435],\n              [-82.769498, 36.801257],\n              [-82.769058, 36.800848],\n              [-82.7686, 36.800325],\n              [-82.768442, 36.799906],\n              [-82.768653, 36.7994],\n              [-82.768944, 36.799061],\n              [-82.769025, 36.798973],\n              [-82.76951, 36.798985],\n              [-82.769641, 36.799044],\n              [-82.770359, 36.799371],\n              [-82.77071, 36.799557],\n              [-82.771232, 36.799849],\n              [-82.771312, 36.799887],\n              [-82.772234, 36.800639],\n              [-82.772361, 36.800733],\n              [-82.772372, 36.800741],\n              [-82.77241, 36.800769],\n              [-82.772474, 36.800816],\n              [-82.772583, 36.800896],\n              [-82.772593, 36.800903],\n              [-82.772611, 36.800916],\n              [-82.772799, 36.801052],\n              [-82.77285, 36.801089],\n              [-82.785824, 36.810609],\n              [-82.785978, 36.810722],\n              [-82.786036, 36.810764],\n              [-82.786049, 36.810774],\n              [-82.786091, 36.810805],\n              [-82.786114, 36.810822],\n              [-82.786259, 36.810928],\n              [-82.786311, 36.810966],\n              [-82.786322, 36.810974],\n              [-82.786329, 36.810979],\n              [-82.786621, 36.811231],\n              [-82.78682, 36.811405],\n              [-82.787056, 36.811568],\n              [-82.787072, 36.811579],\n              [-82.787309, 36.811742],\n              [-82.787475, 36.811862],\n              [-82.78751, 36.811887],\n              [-82.789039, 36.812968],\n              [-82.790498, 36.814058],\n              [-82.790505, 36.814063],\n              [-82.790817, 36.814295],\n              [-82.790824, 36.8143],\n              [-82.791506, 36.814803],\n              [-82.791544, 36.814817],\n              [-82.791598, 36.814845],\n              [-82.791757, 36.814942],\n              [-82.792392, 36.815404],\n              [-82.792588, 36.815591],\n              [-82.792608, 36.81561],\n              [-82.792725, 36.815706],\n              [-82.792855, 36.815796],\n              [-82.79286, 36.815799],\n              [-82.793044, 36.815926],\n              [-82.793575, 36.816333],\n              [-82.793963, 36.816589],\n              [-82.794058, 36.816662],\n              [-82.79444, 36.816982],\n              [-82.794461, 36.816995],\n              [-82.794733, 36.817215],\n              [-82.79498, 36.817415],\n              [-82.794981, 36.817416],\n              [-82.795206, 36.817582],\n              [-82.79523, 36.8176],\n              [-82.79536, 36.817696],\n              [-82.798342, 36.819896],\n              [-82.799439, 36.820768],\n              [-82.8003, 36.821452],\n              [-82.801913, 36.822632],\n              [-82.805161, 36.825007],\n              [-82.805225, 36.825054],\n              [-82.805232, 36.825059],\n              [-82.805244, 36.825067],\n              [-82.805249, 36.825071],\n              [-82.805443, 36.825213],\n              [-82.805485, 36.825244],\n              [-82.807298, 36.82657],\n              [-82.809234, 36.827991],\n              [-82.812414, 36.830321],\n              [-82.812586, 36.830447],\n              [-82.818029, 36.834436],\n              [-82.818519, 36.834805],\n              [-82.819311, 36.835401],\n              [-82.819473, 36.835522],\n              [-82.820776, 36.836503],\n              [-82.821282, 36.836884],\n              [-82.821308, 36.836904],\n              [-82.821549, 36.837093],\n              [-82.821561, 36.837102],\n              [-82.821587, 36.837122],\n              [-82.821601, 36.837133],\n              [-82.821607, 36.837138],\n              [-82.821799, 36.837289],\n              [-82.822025, 36.83746],\n              [-82.82203, 36.837464],\n              [-82.822036, 36.837468],\n              [-82.822065, 36.83749],\n              [-82.822695, 36.837968],\n              [-82.823285, 36.83843],\n              [-82.8233, 36.838442],\n              [-82.823362, 36.838491],\n              [-82.823431, 36.838544],\n              [-82.823497, 36.838598],\n              [-82.823613, 36.83869],\n              [-82.823839, 36.838869],\n              [-82.82493, 36.839737],\n              [-82.825066, 36.839842],\n              [-82.835471, 36.848095],\n              [-82.835543, 36.848152],\n              [-82.838437, 36.848869],\n              [-82.839068, 36.848869],\n              [-82.839708, 36.848724],\n              [-82.840569, 36.848257],\n              [-82.841309, 36.847854],\n              [-82.84201, 36.847629],\n              [-82.84264, 36.847484],\n              [-82.843181, 36.84746],\n              [-82.843511, 36.847443],\n              [-82.844071, 36.847194],\n              [-82.844751, 36.846967],\n              [-82.844892, 36.84692],\n              [-82.846274, 36.847089],\n              [-82.846915, 36.847395],\n              [-82.846961, 36.847432],\n              [-82.846979, 36.847447],\n              [-82.847048, 36.847503],\n              [-82.847134, 36.847572],\n              [-82.847273, 36.847685],\n              [-82.847977, 36.848257],\n              [-82.848228, 36.848838],\n              [-82.84868, 36.849812],\n              [-82.849011, 36.850457],\n              [-82.849162, 36.850699],\n              [-82.849443, 36.850924],\n              [-82.849513, 36.851287],\n              [-82.849234, 36.851585],\n              [-82.849163, 36.851666],\n              [-82.848583, 36.852141],\n              [-82.848503, 36.852511],\n              [-82.848524, 36.852729],\n              [-82.849127, 36.854316],\n              [-82.849238, 36.855098],\n              [-82.848278, 36.856008],\n              [-82.847227, 36.856161],\n              [-82.844245, 36.857982],\n              [-82.844386, 36.858256],\n              [-82.844736, 36.858412],\n              [-82.845127, 36.858586],\n              [-82.845298, 36.859207],\n              [-82.845429, 36.859674],\n              [-82.845749, 36.859803],\n              [-82.84611, 36.859795],\n              [-82.84623, 36.859867],\n              [-82.846291, 36.860423],\n              [-82.846412, 36.861213],\n              [-82.847384, 36.861583],\n              [-82.849367, 36.862067],\n              [-82.849918, 36.862123],\n              [-82.850369, 36.862212],\n              [-82.850489, 36.862711],\n              [-82.85076, 36.863259],\n              [-82.851392, 36.863735],\n              [-82.851903, 36.864291],\n              [-82.852525, 36.864718],\n              [-82.852663, 36.865764],\n              [-82.852788, 36.8667],\n              [-82.85237, 36.867111],\n              [-82.852333, 36.867148],\n              [-82.852005, 36.867472],\n              [-82.851787, 36.867687],\n              [-82.851746, 36.867728],\n              [-82.85174, 36.867733],\n              [-82.851734, 36.867739],\n              [-82.851367, 36.868101],\n              [-82.851355, 36.868241],\n              [-82.851355, 36.868246],\n              [-82.851354, 36.868257],\n              [-82.85135, 36.868302],\n              [-82.851348, 36.86832],\n              [-82.851388, 36.868915],\n              [-82.851357, 36.869077],\n              [-82.851351, 36.869108],\n              [-82.85135, 36.869113],\n              [-82.851348, 36.869122],\n              [-82.851324, 36.869252],\n              [-82.851321, 36.869269],\n              [-82.85132, 36.869276],\n              [-82.851318, 36.869283],\n              [-82.851317, 36.86929],\n              [-82.851199, 36.869985],\n              [-82.85118, 36.8701],\n              [-82.851411, 36.870365],\n              [-82.851627, 36.870464],\n              [-82.851653, 36.870476],\n              [-82.851992, 36.870631],\n              [-82.852183, 36.870721],\n              [-82.852687, 36.87096],\n              [-82.852724, 36.870978],\n              [-82.853075, 36.871397],\n              [-82.853425, 36.871598],\n              [-82.853806, 36.871598],\n              [-82.854256, 36.87134],\n              [-82.854497, 36.871509],\n              [-82.855139, 36.87209],\n              [-82.855229, 36.872444],\n              [-82.85553, 36.872798],\n              [-82.855851, 36.872984],\n              [-82.856265, 36.873062],\n              [-82.85641, 36.873089],\n              [-82.856778, 36.873656],\n              [-82.856884, 36.873713],\n              [-82.856949, 36.873748],\n              [-82.856982, 36.873738],\n              [-82.857746, 36.873496],\n              [-82.857974, 36.873518],\n              [-82.858145, 36.873656],\n              [-82.858317, 36.874136],\n              [-82.858402, 36.874182],\n              [-82.858515, 36.874322],\n              [-82.859599, 36.875101],\n              [-82.859397, 36.875101],\n              [-82.859509, 36.875176],\n              [-82.859588, 36.875229],\n              [-82.859613, 36.875277],\n              [-82.859781, 36.875278],\n              [-82.860035, 36.875263],\n              [-82.860307, 36.875313],\n              [-82.860566, 36.875494],\n              [-82.860574, 36.8755],\n              [-82.860821, 36.875647],\n              [-82.861066, 36.875793],\n              [-82.861249, 36.875871],\n              [-82.861259, 36.875875],\n              [-82.861471, 36.875991],\n              [-82.861616, 36.87607],\n              [-82.861647, 36.876087],\n              [-82.861657, 36.876117],\n              [-82.861765, 36.876453],\n              [-82.862033, 36.876689],\n              [-82.8622, 36.87699],\n              [-82.862286, 36.877275],\n              [-82.862513, 36.877479],\n              [-82.862779, 36.877666],\n              [-82.86305, 36.877955],\n              [-82.863151, 36.878063],\n              [-82.863408, 36.878352],\n              [-82.86341, 36.878408],\n              [-82.863435, 36.878449],\n              [-82.863442, 36.87846],\n              [-82.863473, 36.878511],\n              [-82.863494, 36.878546],\n              [-82.863498, 36.878552],\n              [-82.863515, 36.87858],\n              [-82.86352, 36.878588],\n              [-82.863522, 36.878593],\n              [-82.863526, 36.878599],\n              [-82.863555, 36.878648],\n              [-82.863726, 36.878898],\n              [-82.863776, 36.879391],\n              [-82.863926, 36.879974],\n              [-82.864162, 36.88015],\n              [-82.864226, 36.880198],\n              [-82.864332, 36.880361],\n              [-82.864366, 36.880411],\n              [-82.864386, 36.880475],\n              [-82.864432, 36.880608],\n              [-82.864569, 36.881005],\n              [-82.86458, 36.881038],\n              [-82.864822, 36.881343],\n              [-82.865241, 36.881693],\n              [-82.865378, 36.881856],\n              [-82.865383, 36.881861],\n              [-82.865387, 36.881866],\n              [-82.865468, 36.881962],\n              [-82.865651, 36.882179],\n              [-82.865901, 36.882814],\n              [-82.865935, 36.882886],\n              [-82.866019, 36.883059],\n              [-82.866351, 36.88336],\n              [-82.866369, 36.883376],\n              [-82.86672, 36.883861],\n              [-82.866989, 36.88449],\n              [-82.867336, 36.884895],\n              [-82.867354, 36.884916],\n              [-82.867498, 36.885086],\n              [-82.868354, 36.885752],\n              [-82.868845, 36.88616],\n              [-82.86911, 36.88639],\n              [-82.869739, 36.886936],\n              [-82.870106, 36.887244],\n              [-82.87012, 36.887256],\n              [-82.870125, 36.88726],\n              [-82.87015, 36.887281],\n              [-82.870544, 36.887595],\n              [-82.870562, 36.887609],\n              [-82.870573, 36.88785],\n              [-82.870736, 36.888614],\n              [-82.87128, 36.889255],\n              [-82.871995, 36.889872],\n              [-82.872003, 36.889879],\n              [-82.872519, 36.890196],\n              [-82.872524, 36.890199],\n              [-82.872863, 36.890533],\n              [-82.873337, 36.890902],\n              [-82.873788, 36.891133],\n              [-82.874469, 36.891282],\n              [-82.874895, 36.891457],\n              [-82.875556, 36.891788],\n              [-82.876345, 36.892125],\n              [-82.876825, 36.892247],\n              [-82.877405, 36.892392],\n              [-82.877903, 36.892866],\n              [-82.878068, 36.892988],\n              [-82.878527, 36.893353],\n              [-82.878459, 36.893074],\n              [-82.878312, 36.892769],\n              [-82.877865, 36.891963],\n              [-82.877896, 36.891568],\n              [-82.878359, 36.890003],\n              [-82.878687, 36.889539],\n              [-82.879084, 36.889262],\n              [-82.879748, 36.889033],\n              [-82.880285, 36.888939],\n              [-82.881031, 36.888981],\n              [-82.881804, 36.888981],\n              [-82.883443, 36.888702],\n              [-82.884465, 36.888505],\n              [-82.884847, 36.8883],\n              [-82.885261, 36.887979],\n              [-82.885713, 36.887713],\n              [-82.887028, 36.887168],\n              [-82.887575, 36.886861],\n              [-82.887989, 36.886508],\n              [-82.888591, 36.885516],\n              [-82.889347, 36.884668],\n              [-82.890278, 36.884072],\n              [-82.891188, 36.883698],\n              [-82.891603, 36.883635],\n              [-82.892128, 36.883541],\n              [-82.892758, 36.88343],\n              [-82.893611, 36.883484],\n              [-82.893976, 36.883333],\n              [-82.894589, 36.882739],\n              [-82.895155, 36.882238],\n              [-82.895414, 36.882151],\n              [-82.895869, 36.882088],\n              [-82.896409, 36.881919],\n              [-82.896826, 36.881843],\n              [-82.897277, 36.881911],\n              [-82.897811, 36.881891],\n              [-82.898226, 36.881849],\n              [-82.898837, 36.88194],\n              [-82.899336, 36.881816],\n              [-82.899821, 36.881699],\n              [-82.900248, 36.881658],\n              [-82.90053, 36.881622],\n              [-82.900872, 36.881405],\n              [-82.901452, 36.880949],\n              [-82.901806, 36.880777],\n              [-82.90248, 36.880579],\n              [-82.903979, 36.880147],\n              [-82.904893, 36.879947],\n              [-82.906089, 36.879764],\n              [-82.906655, 36.879618],\n              [-82.907389, 36.879305],\n              [-82.907911, 36.878913],\n              [-82.908011, 36.878754],\n              [-82.907999, 36.8784],\n              [-82.908058, 36.877608],\n              [-82.907946, 36.87709],\n              [-82.907396, 36.875876],\n              [-82.907369, 36.875595],\n              [-82.907505, 36.875158],\n              [-82.907827, 36.874771],\n              [-82.908179, 36.874695],\n              [-82.909032, 36.874696],\n              [-82.909408, 36.874632],\n              [-82.910089, 36.874284],\n              [-82.91028, 36.874171],\n              [-82.910969, 36.874262],\n              [-82.911661, 36.87432],\n              [-82.911755, 36.874327],\n              [-82.911945, 36.874335],\n              [-82.912386, 36.874352],\n              [-82.912607, 36.874361],\n              [-82.91395, 36.87413],\n              [-82.914504, 36.873951],\n              [-82.914983, 36.873975],\n              [-82.916199, 36.873922],\n              [-82.917101, 36.873721],\n              [-82.917615, 36.873509],\n              [-82.918023, 36.873669],\n              [-82.91842, 36.873755],\n              [-82.918993, 36.873759],\n              [-82.919888, 36.87374],\n              [-82.920465, 36.873627],\n              [-82.920805, 36.873443],\n              [-82.920966, 36.873457],\n              [-82.921148, 36.873549],\n              [-82.922081, 36.873905],\n              [-82.922467, 36.873905],\n              [-82.922751, 36.873816],\n              [-82.923244, 36.873529],\n              [-82.923811, 36.873307],\n              [-82.92411, 36.873043],\n              [-82.92456, 36.872808],\n              [-82.924874, 36.872623],\n              [-82.925424, 36.871907],\n              [-82.925865, 36.871545],\n              [-82.926105, 36.871219],\n              [-82.926283, 36.871127],\n              [-82.926548, 36.871167],\n              [-82.92695, 36.871122],\n              [-82.927275, 36.870972],\n              [-82.928311, 36.870419],\n              [-82.928566, 36.870428],\n              [-82.928975, 36.8705],\n              [-82.929899, 36.870719],\n              [-82.930232, 36.870728],\n              [-82.930966, 36.870591],\n              [-82.931708, 36.870364],\n              [-82.931898, 36.870306],\n              [-82.932163, 36.870313],\n              [-82.93297, 36.870484],\n              [-82.93349, 36.870475],\n              [-82.9343, 36.870239],\n              [-82.934778, 36.869983],\n              [-82.935066, 36.869766],\n              [-82.935272, 36.869622],\n              [-82.936381, 36.869265],\n              [-82.936626, 36.869132],\n              [-82.936712, 36.868964],\n              [-82.936787, 36.86875],\n              [-82.936732, 36.868491],\n              [-82.936717, 36.868212],\n              [-82.936846, 36.867991],\n              [-82.937025, 36.867835],\n              [-82.937295, 36.867788],\n              [-82.937502, 36.86761],\n              [-82.937682, 36.867326],\n              [-82.939127, 36.867301],\n              [-82.940236, 36.867287],\n              [-82.941331, 36.867218],\n              [-82.941695, 36.867132],\n              [-82.942144, 36.866917],\n              [-82.942269, 36.866771],\n              [-82.942459, 36.866358],\n              [-82.94257, 36.866276],\n              [-82.94269, 36.866268],\n              [-82.943097, 36.866418],\n              [-82.943825, 36.866565],\n              [-82.944543, 36.866596],\n              [-82.945167, 36.86651],\n              [-82.945613, 36.866383],\n              [-82.946212, 36.866045],\n              [-82.946404, 36.865932],\n              [-82.946722, 36.865982],\n              [-82.948689, 36.866463],\n              [-82.948836, 36.866468],\n              [-82.949158, 36.8664],\n              [-82.949721, 36.866039],\n              [-82.949975, 36.866014],\n              [-82.951393, 36.866213],\n              [-82.95158, 36.866197],\n              [-82.951758, 36.866115],\n              [-82.952766, 36.865251],\n              [-82.952975, 36.86501],\n              [-82.953194, 36.864554],\n              [-82.953334, 36.86443],\n              [-82.953606, 36.864286],\n              [-82.953942, 36.86421],\n              [-82.954394, 36.864243],\n              [-82.954691, 36.864165],\n              [-82.955745, 36.863463],\n              [-82.95626, 36.863262],\n              [-82.956717, 36.86321],\n              [-82.957488, 36.863241],\n              [-82.958049, 36.863203],\n              [-82.958495, 36.863075],\n              [-82.959386, 36.862799],\n              [-82.959644, 36.862697],\n              [-82.960714, 36.862618],\n              [-82.961439, 36.862487],\n              [-82.961968, 36.862276],\n              [-82.962463, 36.861892],\n              [-82.962622, 36.861595],\n              [-82.96276, 36.86147],\n              [-82.963191, 36.861374],\n              [-82.963768, 36.861272],\n              [-82.963972, 36.861171],\n              [-82.96449, 36.860571],\n              [-82.964859, 36.860336],\n              [-82.965913, 36.860009],\n              [-82.966367, 36.859666],\n              [-82.966656, 36.859417],\n              [-82.967021, 36.859319],\n              [-82.967434, 36.85934],\n              [-82.968024, 36.859216],\n              [-82.968515, 36.85894],\n              [-82.968837, 36.858607],\n              [-82.969104, 36.858237],\n              [-82.969247, 36.858026],\n              [-82.969571, 36.857906],\n              [-82.969655, 36.857886],\n              [-82.970796, 36.857648],\n              [-82.971142, 36.857637],\n              [-82.971554, 36.857669],\n              [-82.971981, 36.857823],\n              [-82.972439, 36.858373],\n              [-82.973304, 36.859082],\n              [-82.973805, 36.8592],\n              [-82.97459, 36.859243],\n              [-82.975142, 36.859451],\n              [-82.975684, 36.859573],\n              [-82.976171, 36.859544],\n              [-82.976569, 36.859465],\n              [-82.977501, 36.85949],\n              [-82.977923, 36.859588],\n              [-82.978212, 36.859735],\n              [-82.978581, 36.85982],\n              [-82.979116, 36.859779],\n              [-82.979506, 36.859705],\n              [-82.980321, 36.859338],\n              [-82.98113, 36.859093],\n              [-82.981778, 36.858905],\n              [-82.982151, 36.858904],\n              [-82.982614, 36.859012],\n              [-82.98292, 36.858989],\n              [-82.983467, 36.85867],\n              [-82.983792, 36.858528],\n              [-82.984059, 36.858534],\n              [-82.984599, 36.85871],\n              [-82.985458, 36.858872],\n              [-82.986005, 36.858886],\n              [-82.986261, 36.858818],\n              [-82.986682, 36.858614],\n              [-82.986856, 36.858629],\n              [-82.987013, 36.858677],\n              [-82.987245, 36.858876],\n              [-82.987556, 36.859107],\n              [-82.988085, 36.859217],\n              [-82.989, 36.859163],\n              [-82.989606, 36.859005],\n              [-82.990204, 36.858742],\n              [-82.990684, 36.858422],\n              [-82.991061, 36.858313],\n              [-82.991384, 36.858259],\n              [-82.991842, 36.857808],\n              [-82.992004, 36.857771],\n              [-82.99223, 36.857756],\n              [-82.992853, 36.857878],\n              [-82.99325, 36.857922],\n              [-82.993628, 36.857823],\n              [-82.994302, 36.857481],\n              [-82.994811, 36.857408],\n              [-82.995761, 36.857326],\n              [-82.996289, 36.857136],\n              [-82.996699, 36.856869],\n              [-82.997594, 36.856858],\n              [-82.998389, 36.856633],\n              [-82.998591, 36.856574],\n              [-82.998689, 36.856458],\n              [-82.999488, 36.855514],\n              [-82.999984, 36.855088],\n              [-83.000349, 36.854978],\n              [-83.000825, 36.854744],\n              [-83.001105, 36.854398],\n              [-83.001792, 36.85357],\n              [-83.002024, 36.853424],\n              [-83.002908, 36.852997],\n              [-83.003061, 36.852797],\n              [-83.003349, 36.852354],\n              [-83.003815, 36.851637],\n              [-83.004048, 36.850828],\n              [-83.004259, 36.850522],\n              [-83.004684, 36.850266],\n              [-83.004918, 36.850075],\n              [-83.005112, 36.849879],\n              [-83.005731, 36.84906],\n              [-83.006378, 36.847886],\n              [-83.006581, 36.84765],\n              [-83.007467, 36.84749],\n              [-83.00862, 36.847327],\n              [-83.009246, 36.847415],\n              [-83.010238, 36.847541],\n              [-83.010868, 36.847792],\n              [-83.0111, 36.847815],\n              [-83.011574, 36.847644],\n              [-83.012287, 36.847128],\n              [-83.012441, 36.846937],\n              [-83.012775, 36.846937],\n              [-83.013034, 36.847146],\n              [-83.013547, 36.84733],\n              [-83.013909, 36.847577],\n              [-83.01523, 36.848564],\n              [-83.015764, 36.848868],\n              [-83.016321, 36.848957],\n              [-83.016737, 36.849038],\n              [-83.017612, 36.849374],\n              [-83.018198, 36.849516],\n              [-83.019003, 36.849707],\n              [-83.019937, 36.850042],\n              [-83.021015, 36.8501],\n              [-83.021499, 36.849995],\n              [-83.021917, 36.849887],\n              [-83.022083, 36.849942],\n              [-83.022336, 36.85007],\n              [-83.023252, 36.850867],\n              [-83.023738, 36.851152],\n              [-83.024151, 36.851393],\n              [-83.024632, 36.851684],\n              [-83.024835, 36.851947],\n              [-83.02523, 36.852729],\n              [-83.025696, 36.853406],\n              [-83.025856, 36.853774],\n              [-83.025974, 36.85485],\n              [-83.026082, 36.855111],\n              [-83.026314, 36.855429],\n              [-83.026611, 36.855563],\n              [-83.027052, 36.855564],\n              [-83.028324, 36.855393],\n              [-83.029072, 36.855348],\n              [-83.029672, 36.855407],\n              [-83.030205, 36.855377],\n              [-83.031745, 36.854847],\n              [-83.032814, 36.854457],\n              [-83.033755, 36.854297],\n              [-83.035708, 36.854124],\n              [-83.036093, 36.854175],\n              [-83.036366, 36.854333],\n              [-83.036581, 36.854628],\n              [-83.036894, 36.854819],\n              [-83.037528, 36.854964],\n              [-83.038724, 36.855058],\n              [-83.03998, 36.855003],\n              [-83.041032, 36.85502],\n              [-83.041381, 36.854964],\n              [-83.042003, 36.854724],\n              [-83.042821, 36.854283],\n              [-83.042913, 36.8542],\n              [-83.043125, 36.854011],\n              [-83.043668, 36.853468],\n              [-83.044709, 36.852756],\n              [-83.045294, 36.852448],\n              [-83.046956, 36.851868],\n              [-83.047804, 36.851687],\n              [-83.048228, 36.85174],\n              [-83.048834, 36.851937],\n              [-83.04967, 36.852033],\n              [-83.050901, 36.852017],\n              [-83.051517, 36.852],\n              [-83.05226, 36.852117],\n              [-83.05355, 36.85218],\n              [-83.054239, 36.852273],\n              [-83.054577, 36.85253],\n              [-83.055923, 36.852885],\n              [-83.056701, 36.853076],\n              [-83.057298, 36.853224],\n              [-83.057957, 36.853388],\n              [-83.058807, 36.853461],\n              [-83.060753, 36.853955],\n              [-83.062543, 36.852521],\n              [-83.063045, 36.851977],\n              [-83.06336, 36.851727],\n              [-83.063698, 36.85165],\n              [-83.064247, 36.85159],\n              [-83.064802, 36.851689],\n              [-83.065369, 36.851863],\n              [-83.066249, 36.851865],\n              [-83.066858, 36.851956],\n              [-83.067406, 36.852229],\n              [-83.0679, 36.852582],\n              [-83.068496, 36.853048],\n              [-83.068992, 36.853305],\n              [-83.069533, 36.85345],\n              [-83.070465, 36.853482],\n              [-83.070782, 36.853545],\n              [-83.071704, 36.854202],\n              [-83.072267, 36.854472],\n              [-83.072623, 36.854568],\n              [-83.07284, 36.854464],\n              [-83.075684, 36.850935],\n              [-83.075853, 36.850701],\n              [-83.075768, 36.850487],\n              [-83.075474, 36.850157],\n              [-83.075127, 36.849495],\n              [-83.075113, 36.849161],\n              [-83.075108, 36.848636],\n              [-83.074983, 36.848053],\n              [-83.074692, 36.847307],\n              [-83.074224, 36.84635],\n              [-83.074071, 36.8458],\n              [-83.074144, 36.844945],\n              [-83.074162, 36.844161],\n              [-83.074295, 36.843148],\n              [-83.074445, 36.842722],\n              [-83.074797, 36.84227],\n              [-83.074917, 36.841918],\n              [-83.075008, 36.840934],\n              [-83.075176, 36.840735],\n              [-83.075257, 36.840706],\n              [-83.076145, 36.840846],\n              [-83.076913, 36.840973],\n              [-83.077569, 36.840871],\n              [-83.078117, 36.840852],\n              [-83.078819, 36.840623],\n              [-83.080269, 36.84036],\n              [-83.080971, 36.84012],\n              [-83.081997, 36.839438],\n              [-83.083264, 36.839083],\n              [-83.084074, 36.839013],\n              [-83.084771, 36.838936],\n              [-83.085011, 36.838909],\n              [-83.085872, 36.838725],\n              [-83.086383, 36.83852],\n              [-83.086635, 36.838417],\n              [-83.087463, 36.838231],\n              [-83.087885, 36.838015],\n              [-83.088284, 36.837693],\n              [-83.088462, 36.837214],\n              [-83.089017, 36.836483],\n              [-83.089485, 36.835777],\n              [-83.089845, 36.835422],\n              [-83.090215, 36.835195],\n              [-83.090505, 36.834912],\n              [-83.090904, 36.834601],\n              [-83.092051, 36.834211],\n              [-83.092637, 36.833872],\n              [-83.093109, 36.833734],\n              [-83.094455, 36.833414],\n              [-83.09629, 36.832983],\n              [-83.096858, 36.832792],\n              [-83.097404, 36.832452],\n              [-83.098083, 36.832159],\n              [-83.098688, 36.832012],\n              [-83.099028, 36.831818],\n              [-83.099908, 36.831154],\n              [-83.100268, 36.830767],\n              [-83.10074, 36.829951],\n              [-83.10194, 36.828245],\n              [-83.102009, 36.828039],\n              [-83.102089, 36.827799],\n              [-83.102084, 36.827252],\n              [-83.10176, 36.826665],\n              [-83.101313, 36.826161],\n              [-83.10045, 36.825379],\n              [-83.099488, 36.824752],\n              [-83.099009, 36.824376],\n              [-83.098611, 36.823992],\n              [-83.098512, 36.823806],\n              [-83.098546, 36.823616],\n              [-83.098851, 36.823146],\n              [-83.099228, 36.822339],\n              [-83.099216, 36.821964],\n              [-83.099111, 36.821596],\n              [-83.099195, 36.820817],\n              [-83.099265, 36.819702],\n              [-83.099113, 36.819109],\n              [-83.099062, 36.818723],\n              [-83.099027, 36.81826],\n              [-83.099115, 36.817373],\n              [-83.099088, 36.816696],\n              [-83.098958, 36.816253],\n              [-83.099011, 36.815924],\n              [-83.099146, 36.815529],\n              [-83.099006, 36.81498],\n              [-83.098664, 36.814187],\n              [-83.098484, 36.813524],\n              [-83.09856, 36.813246],\n              [-83.099072, 36.812788],\n              [-83.099756, 36.812344],\n              [-83.100679, 36.811874],\n              [-83.101096, 36.811787],\n              [-83.101954, 36.811637],\n              [-83.102346, 36.811509],\n              [-83.102568, 36.811277],\n              [-83.102809, 36.810742],\n              [-83.103343, 36.809651],\n              [-83.103461, 36.809022],\n              [-83.103396, 36.808624],\n              [-83.103395, 36.808313],\n              [-83.103431, 36.807736],\n              [-83.103315, 36.807304],\n              [-83.10341, 36.806931],\n              [-83.103459, 36.806319],\n              [-83.103619, 36.805615],\n              [-83.103812, 36.805117],\n              [-83.104121, 36.804341],\n              [-83.104335, 36.804004],\n              [-83.104868, 36.803643],\n              [-83.105419, 36.803183],\n              [-83.10559, 36.802887],\n              [-83.10606, 36.802461],\n              [-83.106428, 36.802255],\n              [-83.1069, 36.802085],\n              [-83.108161, 36.80187],\n              [-83.108744, 36.801625],\n              [-83.109751, 36.801073],\n              [-83.110653, 36.800494],\n              [-83.111066, 36.800109],\n              [-83.111532, 36.799433],\n              [-83.11237, 36.798447],\n              [-83.112947, 36.797999],\n              [-83.113156, 36.797758],\n              [-83.113687, 36.797119],\n              [-83.114029, 36.796859],\n              [-83.114582, 36.796346],\n              [-83.114797, 36.795965],\n              [-83.114994, 36.795305],\n              [-83.115166, 36.794856],\n              [-83.115362, 36.794603],\n              [-83.115981, 36.794103],\n              [-83.116242, 36.793864],\n              [-83.116475, 36.793563],\n              [-83.116593, 36.793412],\n              [-83.117046, 36.792372],\n              [-83.117269, 36.792098],\n              [-83.117802, 36.791613],\n              [-83.117986, 36.791349],\n              [-83.118146, 36.790635],\n              [-83.118261, 36.790423],\n              [-83.118934, 36.789695],\n              [-83.118983, 36.789658],\n              [-83.119211, 36.789567],\n              [-83.120712, 36.788994],\n              [-83.120949, 36.788732],\n              [-83.121092, 36.78829],\n              [-83.121332, 36.787985],\n              [-83.12144, 36.787924],\n              [-83.121759, 36.78792],\n              [-83.122225, 36.787942],\n              [-83.122348, 36.787849],\n              [-83.122576, 36.787458],\n              [-83.122834, 36.786983],\n              [-83.123165, 36.7867],\n              [-83.123436, 36.786568],\n              [-83.123704, 36.78651],\n              [-83.123997, 36.78654],\n              [-83.124235, 36.786589],\n              [-83.124585, 36.786479],\n              [-83.124989, 36.786393],\n              [-83.125388, 36.786381],\n              [-83.125797, 36.786486],\n              [-83.126061, 36.786558],\n              [-83.126891, 36.786272],\n              [-83.127295, 36.786155],\n              [-83.12757, 36.785947],\n              [-83.127718, 36.785919],\n              [-83.128127, 36.785993],\n              [-83.128303, 36.785933],\n              [-83.128699, 36.785665],\n              [-83.12889, 36.785583],\n              [-83.129131, 36.785503],\n              [-83.129343, 36.785551],\n              [-83.129523, 36.785727],\n              [-83.129838, 36.785852],\n              [-83.130131, 36.785828],\n              [-83.130686, 36.785596],\n              [-83.131223, 36.785513],\n              [-83.131786, 36.785398],\n              [-83.132219, 36.785225],\n              [-83.133235, 36.784592],\n              [-83.133255, 36.784464],\n              [-83.133228, 36.783765],\n              [-83.133248, 36.78322],\n              [-83.133047, 36.782583],\n              [-83.132756, 36.782157],\n              [-83.132257, 36.781618],\n              [-83.131976, 36.781125],\n              [-83.131537, 36.780106],\n              [-83.131246, 36.77966],\n              [-83.13119, 36.779433],\n              [-83.131271, 36.779016],\n              [-83.131184, 36.778842],\n              [-83.130851, 36.778503],\n              [-83.130626, 36.778153],\n              [-83.130081, 36.777588],\n              [-83.129599, 36.776944],\n              [-83.129419, 36.776445],\n              [-83.129139, 36.776084],\n              [-83.128991, 36.775791],\n              [-83.129106, 36.775569],\n              [-83.129295, 36.775499],\n              [-83.129431, 36.775395],\n              [-83.129806, 36.775029],\n              [-83.130046, 36.774659],\n              [-83.130009, 36.774063],\n              [-83.130123, 36.773873],\n              [-83.130432, 36.773784],\n              [-83.130763, 36.773835],\n              [-83.131458, 36.773799],\n              [-83.131705, 36.773603],\n              [-83.131921, 36.773157],\n              [-83.132118, 36.772884],\n              [-83.132839, 36.772139],\n              [-83.133084, 36.771686],\n              [-83.132969, 36.771553],\n              [-83.132689, 36.771535],\n              [-83.132169, 36.771565],\n              [-83.131756, 36.771554],\n              [-83.131495, 36.771409],\n              [-83.131131, 36.771176],\n              [-83.130629, 36.771076],\n              [-83.13013, 36.770893],\n              [-83.129832, 36.770672],\n              [-83.12957, 36.770193],\n              [-83.129546, 36.769827],\n              [-83.129776, 36.769384],\n              [-83.129885, 36.768946],\n              [-83.130082, 36.768682],\n              [-83.130341, 36.768508],\n              [-83.130634, 36.768547],\n              [-83.130979, 36.768534],\n              [-83.131092, 36.768386],\n              [-83.13126, 36.768155],\n              [-83.13138, 36.767804],\n              [-83.131263, 36.767114],\n              [-83.131196, 36.766716],\n              [-83.131146, 36.766286],\n              [-83.13126, 36.766097],\n              [-83.131406, 36.766068],\n              [-83.131901, 36.766027],\n              [-83.132231, 36.765912],\n              [-83.132366, 36.765716],\n              [-83.132466, 36.765204],\n              [-83.132616, 36.764715],\n              [-83.132549, 36.764402],\n              [-83.132328, 36.764257],\n              [-83.13159, 36.764222],\n              [-83.131208, 36.764117],\n              [-83.130886, 36.763861],\n              [-83.13038, 36.763485],\n              [-83.129763, 36.763243],\n              [-83.129557, 36.76309],\n              [-83.129064, 36.762734],\n              [-83.128152, 36.762561],\n              [-83.127256, 36.762292],\n              [-83.126693, 36.762033],\n              [-83.12639, 36.76196],\n              [-83.12594, 36.761896],\n              [-83.125667, 36.761749],\n              [-83.125577, 36.76163],\n              [-83.125638, 36.761458],\n              [-83.125699, 36.761405],\n              [-83.125976, 36.761163],\n              [-83.126566, 36.761027],\n              [-83.12685, 36.760905],\n              [-83.126977, 36.760747],\n              [-83.126988, 36.760448],\n              [-83.127137, 36.760043],\n              [-83.127401, 36.759761],\n              [-83.127603, 36.75968],\n              [-83.127884, 36.759664],\n              [-83.128373, 36.759752],\n              [-83.128573, 36.759725],\n              [-83.128642, 36.759662],\n              [-83.128621, 36.759533],\n              [-83.128462, 36.759154],\n              [-83.128428, 36.758671],\n              [-83.128544, 36.758427],\n              [-83.128809, 36.758102],\n              [-83.128899, 36.757846],\n              [-83.128822, 36.757393],\n              [-83.12846, 36.756753],\n              [-83.128363, 36.756504],\n              [-83.128387, 36.756257],\n              [-83.128642, 36.755866],\n              [-83.12873, 36.755645],\n              [-83.128714, 36.755022],\n              [-83.128634, 36.754313],\n              [-83.128736, 36.753746],\n              [-83.128927, 36.753259],\n              [-83.129022, 36.752895],\n              [-83.128901, 36.75254],\n              [-83.128657, 36.752351],\n              [-83.128422, 36.752172],\n              [-83.128024, 36.75181],\n              [-83.12784, 36.751388],\n              [-83.127814, 36.751065],\n              [-83.127989, 36.750652],\n              [-83.128208, 36.750485],\n              [-83.128401, 36.75035],\n              [-83.128945, 36.750343],\n              [-83.129627, 36.750284],\n              [-83.129975, 36.750239],\n              [-83.12977, 36.750009],\n              [-83.129737, 36.749826],\n              [-83.129902, 36.74968],\n              [-83.130134, 36.749546],\n              [-83.130873, 36.749737],\n              [-83.131656, 36.749809],\n              [-83.131969, 36.749977],\n              [-83.132165, 36.750047],\n              [-83.13268, 36.749813],\n              [-83.133687, 36.749612],\n              [-83.134319, 36.749457],\n              [-83.134429, 36.749364],\n              [-83.133957, 36.748794],\n              [-83.133944, 36.74846],\n              [-83.13407, 36.748294],\n              [-83.134142, 36.748134],\n              [-83.133981, 36.74784],\n              [-83.134037, 36.747091],\n              [-83.133814, 36.746625],\n              [-83.133631, 36.746525],\n              [-83.133276, 36.746429],\n              [-83.133027, 36.746316],\n              [-83.132996, 36.746101],\n              [-83.133067, 36.745973],\n              [-83.133238, 36.745656],\n              [-83.133402, 36.745574],\n              [-83.133634, 36.745419],\n              [-83.133698, 36.745153],\n              [-83.133865, 36.744954],\n              [-83.133908, 36.744516],\n              [-83.133963, 36.74411],\n              [-83.134637, 36.743526],\n              [-83.134737, 36.743203],\n              [-83.134851, 36.742832],\n              [-83.135124, 36.742636],\n              [-83.136497, 36.742949],\n              [-83.13712, 36.743061],\n              [-83.137546, 36.743028],\n              [-83.138247, 36.74269],\n              [-83.138399, 36.742641],\n              [-83.138784, 36.742662],\n              [-83.13993, 36.742648],\n              [-83.14037, 36.742604],\n              [-83.141019, 36.742364],\n              [-83.141479, 36.742192],\n              [-83.142002, 36.742067],\n              [-83.142426, 36.741808],\n              [-83.143823, 36.741811],\n              [-83.144415, 36.741643],\n              [-83.145212, 36.741696],\n              [-83.147261, 36.742046],\n              [-83.148029, 36.74215],\n              [-83.148522, 36.742164],\n              [-83.149126, 36.742017],\n              [-83.149446, 36.742002],\n              [-83.149844, 36.742044],\n              [-83.150426, 36.742144],\n              [-83.151011, 36.742149],\n              [-83.151477, 36.74216],\n              [-83.151867, 36.742427],\n              [-83.152228, 36.742693],\n              [-83.152494, 36.742711],\n              [-83.152925, 36.742571],\n              [-83.153064, 36.742423],\n              [-83.153162, 36.741956],\n              [-83.153279, 36.741689],\n              [-83.153441, 36.74164],\n              [-83.153777, 36.741552],\n              [-83.154826, 36.741611],\n              [-83.156011, 36.741606],\n              [-83.156503, 36.741629],\n              [-83.156763, 36.741764],\n              [-83.157311, 36.741372],\n              [-83.157744, 36.741198],\n              [-83.158411, 36.74115],\n              [-83.158821, 36.740905],\n              [-83.159302, 36.740807],\n              [-83.159814, 36.740648],\n              [-83.160185, 36.740347],\n              [-83.160652, 36.739972],\n              [-83.161249, 36.739687],\n              [-83.161853, 36.73954],\n              [-83.162467, 36.739513],\n              [-83.163128, 36.739305],\n              [-83.16391, 36.739377],\n              [-83.164974, 36.739425],\n              [-83.165983, 36.739448],\n              [-83.166385, 36.739385],\n              [-83.166732, 36.739372],\n              [-83.166987, 36.739303],\n              [-83.167132, 36.739337],\n              [-83.16676, 36.739683],\n              [-83.166607, 36.739861],\n              [-83.166898, 36.740232],\n              [-83.167274, 36.740522],\n              [-83.168028, 36.740648],\n              [-83.168631, 36.740522],\n              [-83.169927, 36.74006],\n              [-83.17138, 36.739998],\n              [-83.171822, 36.739945],\n              [-83.172006, 36.740014],\n              [-83.172441, 36.740112],\n              [-83.172757, 36.739849],\n              [-83.173159, 36.739774],\n              [-83.173502, 36.739493],\n              [-83.174441, 36.739323],\n              [-83.174832, 36.739182],\n              [-83.174939, 36.739185],\n              [-83.17525, 36.739387],\n              [-83.175631, 36.739523],\n              [-83.176318, 36.7397],\n              [-83.176801, 36.739585],\n              [-83.177356, 36.739331],\n              [-83.177608, 36.739348],\n              [-83.178039, 36.739218],\n              [-83.1785, 36.73939],\n              [-83.17871, 36.739428],\n              [-83.17911, 36.739394],\n              [-83.179481, 36.7395],\n              [-83.17972, 36.739495],\n              [-83.18022, 36.739303],\n              [-83.180496, 36.739364],\n              [-83.180986, 36.73944],\n              [-83.181417, 36.739333],\n              [-83.181803, 36.739309],\n              [-83.182375, 36.739323],\n              [-83.183653, 36.739677],\n              [-83.184186, 36.739647],\n              [-83.184741, 36.739401],\n              [-83.185049, 36.739366],\n              [-83.185767, 36.739396],\n              [-83.186351, 36.739431],\n              [-83.187407, 36.739306],\n              [-83.188827, 36.739438],\n              [-83.1892, 36.739414],\n              [-83.190463, 36.739488],\n              [-83.191109, 36.739265],\n              [-83.191351, 36.739199],\n              [-83.191564, 36.739215],\n              [-83.192168, 36.739421],\n              [-83.192475, 36.73944],\n              [-83.193212, 36.739285],\n              [-83.193307, 36.739277],\n              [-83.193831, 36.739461],\n              [-83.194256, 36.739526],\n              [-83.194843, 36.739455],\n              [-83.195249, 36.739272],\n              [-83.195642, 36.738755],\n              [-83.195835, 36.738694],\n              [-83.196248, 36.738565],\n              [-83.196967, 36.738552],\n              [-83.19759, 36.7383],\n              [-83.198507, 36.737966],\n              [-83.199752, 36.737396],\n              [-83.200006, 36.73735],\n              [-83.200722, 36.737087],\n              [-83.201298, 36.737015],\n              [-83.201606, 36.736937],\n              [-83.20222, 36.736909],\n              [-83.203017, 36.73695],\n              [-83.203683, 36.736591],\n              [-83.204318, 36.736327],\n              [-83.204893, 36.736233],\n              [-83.205223, 36.735962],\n              [-83.206179, 36.735655],\n              [-83.206922, 36.735746],\n              [-83.207086, 36.735623],\n              [-83.207387, 36.735405],\n              [-83.207876, 36.735137],\n              [-83.208443, 36.734914],\n              [-83.208858, 36.73485],\n              [-83.209272, 36.734828],\n              [-83.209554, 36.73477],\n              [-83.210514, 36.734343],\n              [-83.210783, 36.734275],\n              [-83.211684, 36.734359],\n              [-83.21229, 36.733849],\n              [-83.213126, 36.73357],\n              [-83.214208, 36.733456],\n              [-83.2148, 36.733277],\n              [-83.215316, 36.733354],\n              [-83.216246, 36.733408],\n              [-83.216822, 36.733316],\n              [-83.217363, 36.733081],\n              [-83.217609, 36.732916],\n              [-83.217699, 36.732619],\n              [-83.217948, 36.732388],\n              [-83.218871, 36.731895],\n              [-83.219576, 36.73157],\n              [-83.220665, 36.731274],\n              [-83.221733, 36.730828],\n              [-83.223029, 36.730687],\n              [-83.223365, 36.730598],\n              [-83.223723, 36.730265],\n              [-83.224004, 36.730229],\n              [-83.22454, 36.730122],\n              [-83.225246, 36.730129],\n              [-83.225614, 36.730256],\n              [-83.225879, 36.730295],\n              [-83.226603, 36.730109],\n              [-83.227014, 36.72984],\n              [-83.227393, 36.729677],\n              [-83.227766, 36.729644],\n              [-83.228101, 36.729575],\n              [-83.228483, 36.729328],\n              [-83.228883, 36.728952],\n              [-83.229098, 36.728902],\n              [-83.229751, 36.728875],\n              [-83.23021, 36.728682],\n              [-83.231242, 36.728493],\n              [-83.232253, 36.728506],\n              [-83.232442, 36.728425],\n              [-83.232771, 36.728187],\n              [-83.233208, 36.727875],\n              [-83.233677, 36.727779],\n              [-83.234545, 36.727682],\n              [-83.235679, 36.727259],\n              [-83.236183, 36.726971],\n              [-83.237225, 36.726846],\n              [-83.238057, 36.726672],\n              [-83.238658, 36.726621],\n              [-83.239815, 36.726649],\n              [-83.240068, 36.726635],\n              [-83.240473, 36.726472],\n              [-83.240673, 36.726455],\n              [-83.240877, 36.726331],\n              [-83.241224, 36.725966],\n              [-83.241521, 36.725843],\n              [-83.24216, 36.725827],\n              [-83.242442, 36.725779],\n              [-83.243752, 36.725983],\n              [-83.244153, 36.725939],\n              [-83.245055, 36.726012],\n              [-83.245484, 36.725947],\n              [-83.246136, 36.725589],\n              [-83.246865, 36.725264],\n              [-83.247462, 36.725181],\n              [-83.247924, 36.725074],\n              [-83.248223, 36.724899],\n              [-83.248667, 36.724437],\n              [-83.24894, 36.724241],\n              [-83.24981, 36.7241],\n              [-83.250988, 36.723727],\n              [-83.251508, 36.723739],\n              [-83.252282, 36.723659],\n              [-83.252733, 36.723681],\n              [-83.253301, 36.723791],\n              [-83.253609, 36.723767],\n              [-83.253961, 36.723593],\n              [-83.254362, 36.723184],\n              [-83.255239, 36.722476],\n              [-83.255973, 36.722064],\n              [-83.256158, 36.722079],\n              [-83.256995, 36.722152],\n              [-83.257853, 36.72197],\n              [-83.258364, 36.722009],\n              [-83.258783, 36.722168],\n              [-83.259274, 36.722222],\n              [-83.259677, 36.722136],\n              [-83.260528, 36.721791],\n              [-83.261296, 36.721508],\n              [-83.262476, 36.721291],\n              [-83.263627, 36.720938],\n              [-83.263867, 36.72092],\n              [-83.264368, 36.72104],\n              [-83.264583, 36.72097],\n              [-83.264831, 36.720772],\n              [-83.265266, 36.720493],\n              [-83.266671, 36.719916],\n              [-83.267807, 36.719427],\n              [-83.270041, 36.71872],\n              [-83.271274, 36.718479],\n              [-83.272576, 36.718178],\n              [-83.273656, 36.718117],\n              [-83.27477, 36.717877],\n              [-83.275635, 36.71751],\n              [-83.276171, 36.717405],\n              [-83.277637, 36.716604],\n              [-83.278033, 36.716511],\n              [-83.279601, 36.716204],\n              [-83.280343, 36.715943],\n              [-83.281247, 36.715954],\n              [-83.281997, 36.715833],\n              [-83.28326, 36.715861],\n              [-83.284583, 36.715689],\n              [-83.284894, 36.715579],\n              [-83.285306, 36.715234],\n              [-83.286098, 36.715006],\n              [-83.286527, 36.714587],\n              [-83.286789, 36.714336],\n              [-83.287042, 36.714288],\n              [-83.287766, 36.714155],\n              [-83.287878, 36.714019],\n              [-83.2883, 36.713717],\n              [-83.289455, 36.713467],\n              [-83.290468, 36.713392],\n              [-83.29075, 36.713314],\n              [-83.291361, 36.713006],\n              [-83.291561, 36.712989],\n              [-83.2934, 36.712905],\n              [-83.29392, 36.712905],\n              [-83.294843, 36.713099],\n              [-83.295905, 36.713553],\n              [-83.296635, 36.713611],\n              [-83.296837, 36.71353],\n              [-83.297049, 36.713203],\n              [-83.298412, 36.712656],\n              [-83.299533, 36.712222],\n              [-83.299868, 36.712154],\n              [-83.301311, 36.711953],\n              [-83.302356, 36.711771],\n              [-83.302654, 36.71163],\n              [-83.302931, 36.711303],\n              [-83.303137, 36.711158],\n              [-83.303657, 36.711127],\n              [-83.30454, 36.710997],\n              [-83.305032, 36.710976],\n              [-83.305704, 36.711197],\n              [-83.30634, 36.711244],\n              [-83.307195, 36.711145],\n              [-83.308121, 36.710941],\n              [-83.308496, 36.710885],\n              [-83.309715, 36.710646],\n              [-83.310443, 36.710397],\n              [-83.311391, 36.709892],\n              [-83.311948, 36.709625],\n              [-83.312642, 36.709138],\n              [-83.313659, 36.708615],\n              [-83.314628, 36.708294],\n              [-83.315821, 36.708085],\n              [-83.316541, 36.708017],\n              [-83.317266, 36.707862],\n              [-83.317864, 36.707845],\n              [-83.318338, 36.707652],\n              [-83.319212, 36.707424],\n              [-83.321015, 36.706618],\n              [-83.321277, 36.706551],\n              [-83.321719, 36.706475],\n              [-83.322676, 36.706498],\n              [-83.323133, 36.70639],\n              [-83.324361, 36.705935],\n              [-83.325074, 36.705653],\n              [-83.327971, 36.704878],\n              [-83.328741, 36.70453],\n              [-83.329508, 36.704281],\n              [-83.330228, 36.704242],\n              [-83.331094, 36.70397],\n              [-83.332272, 36.703781],\n              [-83.332599, 36.703586],\n              [-83.333205, 36.703374],\n              [-83.334971, 36.702739],\n              [-83.335506, 36.702632],\n              [-83.336164, 36.702664],\n              [-83.337491, 36.702394],\n              [-83.338156, 36.702045],\n              [-83.33857, 36.702001],\n              [-83.339422, 36.701967],\n              [-83.340039, 36.701841],\n              [-83.340848, 36.701506],\n              [-83.342016, 36.701035],\n              [-83.342808, 36.70087],\n              [-83.3442, 36.700582],\n              [-83.345903, 36.700423],\n              [-83.346699, 36.700494],\n              [-83.34709, 36.700331],\n              [-83.347639, 36.700206],\n              [-83.347967, 36.699977],\n              [-83.348986, 36.699001],\n              [-83.350052, 36.697847],\n              [-83.350392, 36.69761],\n              [-83.351567, 36.697121],\n              [-83.353386, 36.696631],\n              [-83.3539, 36.696417],\n              [-83.354746, 36.695815],\n              [-83.355386, 36.695578],\n              [-83.358285, 36.693693],\n              [-83.358771, 36.693513],\n              [-83.35955, 36.693273],\n              [-83.359911, 36.693248],\n              [-83.360373, 36.693354],\n              [-83.360774, 36.693675],\n              [-83.361319, 36.694064],\n              [-83.361682, 36.694349],\n              [-83.363274, 36.69445],\n              [-83.363837, 36.694314],\n              [-83.364977, 36.694103],\n              [-83.365709, 36.693713],\n              [-83.366469, 36.693248],\n              [-83.367636, 36.692587],\n              [-83.368785, 36.692066],\n              [-83.369924, 36.691439],\n              [-83.370433, 36.69099],\n              [-83.371096, 36.690693],\n              [-83.371709, 36.690653],\n              [-83.372211, 36.690364],\n              [-83.372671, 36.690493],\n              [-83.373293, 36.690228],\n              [-83.374051, 36.690094],\n              [-83.374546, 36.690141],\n              [-83.37515, 36.690377],\n              [-83.37527, 36.690735],\n              [-83.376556, 36.690143],\n              [-83.37698, 36.689787],\n              [-83.377752, 36.689752],\n              [-83.378823, 36.689208],\n              [-83.378956, 36.688813],\n              [-83.379111, 36.68855],\n              [-83.379326, 36.688447],\n              [-83.379754, 36.688403],\n              [-83.380694, 36.688541],\n              [-83.380859, 36.688407],\n              [-83.380983, 36.687884],\n              [-83.381242, 36.687333],\n              [-83.381496, 36.687295],\n              [-83.382012, 36.687361],\n              [-83.382373, 36.687326],\n              [-83.382756, 36.687408],\n              [-83.383248, 36.687387],\n              [-83.383441, 36.68721],\n              [-83.38382, 36.686598],\n              [-83.384089, 36.686581],\n              [-83.384773, 36.686789],\n              [-83.384986, 36.686784],\n              [-83.385494, 36.68669],\n              [-83.386465, 36.686689],\n              [-83.386813, 36.686621],\n              [-83.387455, 36.686175],\n              [-83.388321, 36.685735],\n              [-83.389962, 36.685037],\n              [-83.389879, 36.684746],\n              [-83.389503, 36.684446],\n              [-83.389129, 36.684117],\n              [-83.389121, 36.683935],\n              [-83.389357, 36.68366],\n              [-83.392654, 36.682111],\n              [-83.392709, 36.682097],\n              [-83.392985, 36.681855],\n              [-83.392967, 36.681609],\n              [-83.392938, 36.681275],\n              [-83.393079, 36.681011],\n              [-83.393391, 36.680847],\n              [-83.39425, 36.680641],\n              [-83.394902, 36.680269],\n              [-83.395518, 36.679759],\n              [-83.395874, 36.679433],\n              [-83.395911, 36.679135],\n              [-83.395762, 36.67882],\n              [-83.395218, 36.678058],\n              [-83.395243, 36.677716],\n              [-83.395559, 36.677411],\n              [-83.396487, 36.676912],\n              [-83.397441, 36.676677],\n              [-83.399601, 36.675706],\n              [-83.400705, 36.675291],\n              [-83.402113, 36.67498],\n              [-83.402693, 36.674757],\n              [-83.403457, 36.674217],\n              [-83.404294, 36.673839],\n              [-83.404844, 36.673711],\n              [-83.40558, 36.673578],\n              [-83.406118, 36.673376],\n              [-83.407163, 36.673176],\n              [-83.407634, 36.673002],\n              [-83.408804, 36.672268],\n              [-83.409273, 36.672171],\n              [-83.409705, 36.671966],\n              [-83.41061, 36.671536],\n              [-83.411468, 36.671372],\n              [-83.411926, 36.671179],\n              [-83.412282, 36.670877],\n              [-83.412712, 36.670737],\n              [-83.413167, 36.670649],\n              [-83.413573, 36.670477],\n              [-83.414333, 36.670441],\n              [-83.414833, 36.670215],\n              [-83.415756, 36.670022],\n              [-83.417382, 36.669532],\n              [-83.4182, 36.668971],\n              [-83.418686, 36.668736],\n              [-83.419116, 36.668628],\n              [-83.420736, 36.668289],\n              [-83.421551, 36.668178],\n              [-83.422232, 36.668068],\n              [-83.424717, 36.667347],\n              [-83.425827, 36.667189],\n              [-83.426712, 36.66714],\n              [-83.427882, 36.667188],\n              [-83.428416, 36.667103],\n              [-83.428993, 36.666987],\n              [-83.430027, 36.667074],\n              [-83.430547, 36.667011],\n              [-83.431755, 36.666694],\n              [-83.432771, 36.666558],\n              [-83.433278, 36.666472],\n              [-83.435288, 36.666407],\n              [-83.436358, 36.666228],\n              [-83.437102, 36.666266],\n              [-83.437641, 36.666417],\n              [-83.43832, 36.666411],\n              [-83.439513, 36.666545],\n              [-83.440092, 36.666729],\n              [-83.440724, 36.66692],\n              [-83.441548, 36.667001],\n              [-83.441963, 36.666982],\n              [-83.442486, 36.667107],\n              [-83.443549, 36.667186],\n              [-83.444222, 36.667004],\n              [-83.445171, 36.666526],\n              [-83.44631, 36.666052],\n              [-83.447045, 36.665575],\n              [-83.447838, 36.665323],\n              [-83.448675, 36.665321],\n              [-83.449831, 36.665379],\n              [-83.450548, 36.665404],\n              [-83.450972, 36.66532],\n              [-83.451383, 36.665152],\n              [-83.451965, 36.665189],\n              [-83.452313, 36.665143],\n              [-83.452916, 36.664986],\n              [-83.453694, 36.6648],\n              [-83.454491, 36.664828],\n              [-83.455366, 36.664879],\n              [-83.456307, 36.664986],\n              [-83.45694, 36.665149],\n              [-83.45725, 36.665446],\n              [-83.457789, 36.665606],\n              [-83.458348, 36.665598],\n              [-83.458642, 36.66552],\n              [-83.459033, 36.665389],\n              [-83.459674, 36.665341],\n              [-83.460084, 36.665262],\n              [-83.460487, 36.665056],\n              [-83.460724, 36.664941],\n              [-83.46102, 36.664867],\n              [-83.461502, 36.664771],\n              [-83.462026, 36.6648],\n              [-83.463112, 36.664958],\n              [-83.46352, 36.664953],\n              [-83.464975, 36.664753],\n              [-83.466016, 36.664783],\n              [-83.466615, 36.664716],\n              [-83.466959, 36.664771],\n              [-83.467283, 36.664907],\n              [-83.467993, 36.665027],\n              [-83.469038, 36.664993],\n              [-83.469642, 36.665031],\n              [-83.470477, 36.66493],\n              [-83.471001, 36.665044],\n              [-83.471778, 36.665277],\n              [-83.473266, 36.665573],\n              [-83.474015, 36.665453],\n              [-83.474459, 36.665518],\n              [-83.475244, 36.665769],\n              [-83.476591, 36.665854],\n              [-83.477797, 36.665975],\n              [-83.478479, 36.66611],\n              [-83.479613, 36.666617],\n              [-83.479883, 36.666542],\n              [-83.48013, 36.666308],\n              [-83.480681, 36.666119],\n              [-83.481332, 36.665981],\n              [-83.481832, 36.666113],\n              [-83.482684, 36.666194],\n              [-83.483356, 36.666577],\n              [-83.484073, 36.666785],\n              [-83.484813, 36.667061],\n              [-83.485504, 36.66718],\n              [-83.486467, 36.667168],\n              [-83.486926, 36.667378],\n              [-83.48838, 36.667703],\n              [-83.488981, 36.667826],\n              [-83.490551, 36.668397],\n              [-83.491161, 36.668539],\n              [-83.491867, 36.669099],\n              [-83.492809, 36.670194],\n              [-83.493194, 36.670219],\n              [-83.494252, 36.670065],\n              [-83.49463, 36.670049],\n              [-83.495787, 36.670187],\n              [-83.496743, 36.670071],\n              [-83.497157, 36.670153],\n              [-83.497962, 36.670418],\n              [-83.498589, 36.6704],\n              [-83.499223, 36.670446],\n              [-83.499578, 36.67022],\n              [-83.49991, 36.670061],\n              [-83.500178, 36.669769],\n              [-83.500454, 36.669536],\n              [-83.500834, 36.669439],\n              [-83.501568, 36.669472],\n              [-83.503033, 36.66956],\n              [-83.503709, 36.669551],\n              [-83.504247, 36.669449],\n              [-83.505363, 36.669034],\n              [-83.505754, 36.668953],\n              [-83.506964, 36.668973],\n              [-83.507771, 36.668837],\n              [-83.508425, 36.668933],\n              [-83.509263, 36.668781],\n              [-83.509809, 36.66904],\n              [-83.510525, 36.669007],\n              [-83.510762, 36.669053],\n              [-83.512112, 36.669635],\n              [-83.512441, 36.669608],\n              [-83.513064, 36.66939],\n              [-83.513403, 36.669022],\n              [-83.513523, 36.668712],\n              [-83.513822, 36.66839],\n              [-83.514014, 36.668236],\n              [-83.514661, 36.668201],\n              [-83.515258, 36.667853],\n              [-83.515588, 36.667782],\n              [-83.515805, 36.667818],\n              [-83.516129, 36.667928],\n              [-83.516858, 36.668425],\n              [-83.517092, 36.668508],\n              [-83.517292, 36.668505],\n              [-83.517453, 36.668422],\n              [-83.517741, 36.66814],\n              [-83.517933, 36.66799],\n              [-83.518726, 36.668049],\n              [-83.519026, 36.667975],\n              [-83.51953, 36.667728],\n              [-83.520076, 36.667429],\n              [-83.520546, 36.667334],\n              [-83.521077, 36.667179],\n              [-83.521744, 36.66684],\n              [-83.522132, 36.666694],\n              [-83.522813, 36.666583],\n              [-83.523214, 36.666455],\n              [-83.523668, 36.666234],\n              [-83.523998, 36.666176],\n              [-83.524632, 36.66619],\n              [-83.52502, 36.666165],\n              [-83.525762, 36.665982],\n              [-83.526428, 36.6659],\n              [-83.526829, 36.66593],\n              [-83.527311, 36.666084],\n              [-83.527636, 36.666138],\n              [-83.528057, 36.666036],\n              [-83.528824, 36.665634],\n              [-83.529145, 36.665563],\n              [-83.529441, 36.665592],\n              [-83.529725, 36.665726],\n              [-83.530034, 36.666006],\n              [-83.53015, 36.666056],\n              [-83.530343, 36.66594],\n              [-83.530573, 36.665584],\n              [-83.530837, 36.665445],\n              [-83.531766, 36.665218],\n              [-83.5322, 36.665003],\n              [-83.532408, 36.664696],\n              [-83.532321, 36.664326],\n              [-83.532016, 36.663943],\n              [-83.531837, 36.663668],\n              [-83.531835, 36.663091],\n              [-83.53194, 36.662597],\n              [-83.532061, 36.662255],\n              [-83.53231, 36.661972],\n              [-83.532836, 36.661632],\n              [-83.533318, 36.66149],\n              [-83.533817, 36.661396],\n              [-83.534459, 36.661178],\n              [-83.535285, 36.660797],\n              [-83.535861, 36.660629],\n              [-83.536212, 36.660525],\n              [-83.536396, 36.660377],\n              [-83.536453, 36.66016],\n              [-83.536453, 36.659818],\n              [-83.536483, 36.659561],\n              [-83.536722, 36.65919],\n              [-83.537058, 36.658941],\n              [-83.53738, 36.658797],\n              [-83.537849, 36.658743],\n              [-83.538118, 36.658668],\n              [-83.538582, 36.658494],\n              [-83.53912, 36.658417],\n              [-83.539699, 36.658317],\n              [-83.540091, 36.658126],\n              [-83.540358, 36.657859],\n              [-83.540723, 36.657331],\n              [-83.540997, 36.657145],\n              [-83.541429, 36.656986],\n              [-83.541651, 36.656855],\n              [-83.541746, 36.65669],\n              [-83.54205, 36.656502],\n              [-83.542841, 36.65628],\n              [-83.543255, 36.656039],\n              [-83.543861, 36.655462],\n              [-83.544262, 36.655303],\n              [-83.544639, 36.655309],\n              [-83.545059, 36.655216],\n              [-83.545373, 36.655044],\n              [-83.545825, 36.654582],\n              [-83.546199, 36.654359],\n              [-83.546821, 36.65414],\n              [-83.548121, 36.653822],\n              [-83.549068, 36.653723],\n              [-83.549642, 36.653742],\n              [-83.550089, 36.653728],\n              [-83.550577, 36.653675],\n              [-83.551657, 36.654035],\n              [-83.552184, 36.654046],\n              [-83.552532, 36.653948],\n              [-83.552865, 36.653811],\n              [-83.553572, 36.653441],\n              [-83.554095, 36.653221],\n              [-83.554798, 36.652963],\n              [-83.555049, 36.652897],\n              [-83.555968, 36.653004],\n              [-83.556466, 36.65291],\n              [-83.556879, 36.652745],\n              [-83.557778, 36.652259],\n              [-83.558347, 36.652151],\n              [-83.559242, 36.652089],\n              [-83.560098, 36.651995],\n              [-83.560632, 36.651752],\n              [-83.560969, 36.651617],\n              [-83.56145, 36.651491],\n              [-83.561918, 36.651431],\n              [-83.56243, 36.651256],\n              [-83.562725, 36.651023],\n              [-83.562903, 36.650763],\n              [-83.562892, 36.65049],\n              [-83.562651, 36.649909],\n              [-83.562637, 36.649742],\n              [-83.562767, 36.649577],\n              [-83.562833, 36.649519],\n              [-83.56345, 36.64919],\n              [-83.564232, 36.648614],\n              [-83.56457, 36.648293],\n              [-83.564724, 36.64816],\n              [-83.56541, 36.647789],\n              [-83.566055, 36.647173],\n              [-83.566225, 36.647119],\n              [-83.566524, 36.647101],\n              [-83.567073, 36.646993],\n              [-83.567297, 36.646846],\n              [-83.567702, 36.646279],\n              [-83.567857, 36.646058],\n              [-83.568189, 36.645921],\n              [-83.568958, 36.645761],\n              [-83.569179, 36.645668],\n              [-83.570063, 36.645041],\n              [-83.570596, 36.644819],\n              [-83.571649, 36.64448],\n              [-83.572117, 36.644435],\n              [-83.572675, 36.644358],\n              [-83.573032, 36.644326],\n              [-83.574021, 36.644433],\n              [-83.574338, 36.644441],\n              [-83.57462, 36.644343],\n              [-83.574753, 36.644225],\n              [-83.574829, 36.64402],\n              [-83.575018, 36.643678],\n              [-83.575337, 36.643325],\n              [-83.576661, 36.642539],\n              [-83.576867, 36.64231],\n              [-83.576928, 36.641992],\n              [-83.577065, 36.64173],\n              [-83.57732, 36.641503],\n              [-83.577611, 36.641397],\n              [-83.577958, 36.641452],\n              [-83.578471, 36.641847],\n              [-83.578841, 36.641727],\n              [-83.579428, 36.641708],\n              [-83.580299, 36.641764],\n              [-83.580619, 36.641661],\n              [-83.581667, 36.641475],\n              [-83.582548, 36.641541],\n              [-83.582659, 36.64147],\n              [-83.582926, 36.641211],\n              [-83.583128, 36.641111],\n              [-83.583324, 36.641164],\n              [-83.58368, 36.641556],\n              [-83.584242, 36.6416],\n              [-83.584578, 36.641662],\n              [-83.584916, 36.641933],\n              [-83.585656, 36.643013],\n              [-83.58596, 36.643763],\n              [-83.586175, 36.643857],\n              [-83.586453, 36.64387],\n              [-83.58709, 36.643647],\n              [-83.587423, 36.643447],\n              [-83.587441, 36.643215],\n              [-83.587299, 36.643004],\n              [-83.587059, 36.642742],\n              [-83.587064, 36.642567],\n              [-83.5873, 36.642308],\n              [-83.587602, 36.642193],\n              [-83.588505, 36.642189],\n              [-83.588936, 36.642021],\n              [-83.589549, 36.64153],\n              [-83.58986, 36.641385],\n              [-83.590942, 36.641392],\n              [-83.591182, 36.641315],\n              [-83.591762, 36.640904],\n              [-83.592179, 36.640693],\n              [-83.592917, 36.640547],\n              [-83.593708, 36.64066],\n              [-83.594301, 36.640753],\n              [-83.594929, 36.64035],\n              [-83.595753, 36.640047],\n              [-83.597872, 36.638875],\n              [-83.598517, 36.638624],\n              [-83.599278, 36.638399],\n              [-83.599854, 36.638051],\n              [-83.600436, 36.637856],\n              [-83.601687, 36.637678],\n              [-83.601996, 36.637587],\n              [-83.602681, 36.637299],\n              [-83.603072, 36.637154],\n              [-83.60347, 36.637123],\n              [-83.603707, 36.637184],\n              [-83.603881, 36.637299],\n              [-83.604062, 36.637878],\n              [-83.604106, 36.637993],\n              [-83.604647, 36.637866],\n              [-83.605905, 36.637908],\n              [-83.607131, 36.637414],\n              [-83.607932, 36.637165],\n              [-83.60898, 36.637003],\n              [-83.609491, 36.636831],\n              [-83.61008, 36.636442],\n              [-83.610558, 36.635741],\n              [-83.611072, 36.635159],\n              [-83.611254, 36.635043],\n              [-83.611586, 36.634905],\n              [-83.611934, 36.634864],\n              [-83.612584, 36.635038],\n              [-83.61303, 36.635055],\n              [-83.613677, 36.634956],\n              [-83.6139, 36.634857],\n              [-83.614088, 36.634524],\n              [-83.614295, 36.634258],\n              [-83.61463, 36.634048],\n              [-83.614996, 36.633752],\n              [-83.615165, 36.633372],\n              [-83.615171, 36.632939],\n              [-83.615152, 36.632569],\n              [-83.615246, 36.632397],\n              [-83.615381, 36.632272],\n              [-83.615921, 36.632107],\n              [-83.616364, 36.631908],\n              [-83.616638, 36.631688],\n              [-83.616867, 36.631373],\n              [-83.617103, 36.630787],\n              [-83.617437, 36.630305],\n              [-83.617666, 36.629918],\n              [-83.618046, 36.628917],\n              [-83.618265, 36.628594],\n              [-83.618569, 36.628359],\n              [-83.619278, 36.627871],\n              [-83.619833, 36.627609],\n              [-83.620514, 36.627383],\n              [-83.620847, 36.627239],\n              [-83.621393, 36.626914],\n              [-83.621824, 36.626746],\n              [-83.621956, 36.626644],\n              [-83.622676, 36.626023],\n              [-83.622956, 36.62594],\n              [-83.623437, 36.625808],\n              [-83.624021, 36.625516],\n              [-83.624579, 36.62543],\n              [-83.624887, 36.62538],\n              [-83.625239, 36.625237],\n              [-83.626315, 36.62509],\n              [-83.626757, 36.624947],\n              [-83.627303, 36.624926],\n              [-83.627903, 36.624779],\n              [-83.628334, 36.624611],\n              [-83.628611, 36.624337],\n              [-83.629384, 36.624278],\n              [-83.630396, 36.623937],\n              [-83.63188, 36.623504],\n              [-83.634152, 36.622944],\n              [-83.634718, 36.622897],\n              [-83.634936, 36.622894],\n              [-83.63507, 36.622954],\n              [-83.635347, 36.623113],\n              [-83.635576, 36.623157],\n              [-83.635832, 36.623248],\n              [-83.636508, 36.6237],\n              [-83.637008, 36.624021],\n              [-83.637247, 36.624086],\n              [-83.637895, 36.624066],\n              [-83.638446, 36.624101],\n              [-83.638861, 36.624201],\n              [-83.640731, 36.62477],\n              [-83.641075, 36.624768],\n              [-83.641422, 36.624684],\n              [-83.641813, 36.624523],\n              [-83.642467, 36.624006],\n              [-83.642762, 36.623869],\n              [-83.642961, 36.623873],\n              [-83.643188, 36.623945],\n              [-83.64388, 36.624514],\n              [-83.644055, 36.62462],\n              [-83.644307, 36.624549],\n              [-83.644603, 36.624386],\n              [-83.645128, 36.624313],\n              [-83.645382, 36.624191],\n              [-83.645555, 36.623984],\n              [-83.645675, 36.623474],\n              [-83.645852, 36.623191],\n              [-83.646203, 36.622937],\n              [-83.646467, 36.622868],\n              [-83.646694, 36.622906],\n              [-83.647398, 36.623106],\n              [-83.647707, 36.62309],\n              [-83.64809, 36.622846],\n              [-83.648321, 36.622454],\n              [-83.648364, 36.622061],\n              [-83.648188, 36.621342],\n              [-83.648242, 36.620996],\n              [-83.648653, 36.620328],\n              [-83.648724, 36.620084],\n              [-83.64858, 36.619704],\n              [-83.64854, 36.619315],\n              [-83.648647, 36.618888],\n              [-83.649215, 36.617706],\n              [-83.649288, 36.617395],\n              [-83.649231, 36.616872],\n              [-83.649317, 36.616781],\n              [-83.64973, 36.616907],\n              [-83.650311, 36.617004],\n              [-83.65097, 36.616958],\n              [-83.651361, 36.616806],\n              [-83.651662, 36.616551],\n              [-83.651851, 36.616167],\n              [-83.652076, 36.615625],\n              [-83.652686, 36.615132],\n              [-83.652923, 36.614877],\n              [-83.653192, 36.61435],\n              [-83.6542, 36.613437],\n              [-83.654573, 36.613184],\n              [-83.654922, 36.613023],\n              [-83.65513, 36.613002],\n              [-83.656997, 36.61309],\n              [-83.657113, 36.613035],\n              [-83.657405, 36.612693],\n              [-83.657749, 36.612027],\n              [-83.65791, 36.611872],\n              [-83.658229, 36.611692],\n              [-83.658464, 36.611487],\n              [-83.658663, 36.611145],\n              [-83.659016, 36.610876],\n              [-83.659278, 36.610527],\n              [-83.659439, 36.610379],\n              [-83.659873, 36.610143],\n              [-83.660741, 36.609428],\n              [-83.660985, 36.609291],\n              [-83.661544, 36.609059],\n              [-83.662045, 36.608749],\n              [-83.662537, 36.608312],\n              [-83.662971, 36.607783],\n              [-83.663163, 36.607307],\n              [-83.663359, 36.607075],\n              [-83.663552, 36.606935],\n              [-83.664014, 36.606801],\n              [-83.66455, 36.606703],\n              [-83.664889, 36.606499],\n              [-83.665733, 36.605876],\n              [-83.66597, 36.605776],\n              [-83.666148, 36.605764],\n              [-83.668808, 36.605931],\n              [-83.668956, 36.605849],\n              [-83.669433, 36.60532],\n              [-83.669782, 36.605151],\n              [-83.67037, 36.604994],\n              [-83.671011, 36.604873],\n              [-83.672024, 36.604817],\n              [-83.672964, 36.604769],\n              [-83.673208, 36.604648],\n              [-83.673306, 36.604531],\n              [-83.673342, 36.604395],\n              [-83.6734, 36.604171],\n              [-83.673699, 36.60394],\n              [-83.673903, 36.603854],\n              [-83.67444, 36.603628],\n              [-83.674723, 36.603246],\n              [-83.67501, 36.602033],\n              [-83.675202, 36.601566],\n              [-83.675297, 36.601161],\n              [-83.675399, 36.600791]\n            ],\n            [\n              [-81.37943, 36.952424],\n              [-81.379131, 36.952724],\n              [-81.37908, 36.952878],\n              [-81.378931, 36.953324],\n              [-81.378631, 36.953724],\n              [-81.378431, 36.953924],\n              [-81.378331, 36.954124],\n              [-81.378231, 36.954224],\n              [-81.377931, 36.954624],\n              [-81.377731, 36.955124],\n              [-81.377531, 36.955524],\n              [-81.377331, 36.956024],\n              [-81.376931, 36.956824],\n              [-81.376631, 36.957324],\n              [-81.376031, 36.957924],\n              [-81.375631, 36.958424],\n              [-81.375431, 36.958624],\n              [-81.375231, 36.958924],\n              [-81.375031, 36.959424],\n              [-81.375031, 36.959724],\n              [-81.374531, 36.960224],\n              [-81.374531, 36.960524],\n              [-81.374431, 36.960724],\n              [-81.374231, 36.961024],\n              [-81.374131, 36.961324],\n              [-81.373931, 36.961424],\n              [-81.373631, 36.961624],\n              [-81.373431, 36.961724],\n              [-81.373231, 36.962224],\n              [-81.373131, 36.962424],\n              [-81.373231, 36.962524],\n              [-81.373131, 36.962924],\n              [-81.372931, 36.963324],\n              [-81.371831, 36.964424],\n              [-81.371331, 36.965024],\n              [-81.370931, 36.965424],\n              [-81.370531, 36.965724],\n              [-81.369931, 36.966024],\n              [-81.369331, 36.966224],\n              [-81.368831, 36.966424],\n              [-81.368531, 36.966724],\n              [-81.367831, 36.967124],\n              [-81.367231, 36.967224],\n              [-81.366731, 36.967024],\n              [-81.366431, 36.966724],\n              [-81.365931, 36.966524],\n              [-81.365131, 36.966524],\n              [-81.364831, 36.966424],\n              [-81.364431, 36.966424],\n              [-81.364031, 36.966324],\n              [-81.363731, 36.966124],\n              [-81.363131, 36.965524],\n              [-81.363031, 36.965324],\n              [-81.362831, 36.965224],\n              [-81.362731, 36.965124],\n              [-81.36083, 36.965124],\n              [-81.36043, 36.964924],\n              [-81.35993, 36.965024],\n              [-81.35943, 36.965224],\n              [-81.359014, 36.965307],\n              [-81.35893, 36.965324],\n              [-81.35863, 36.965324],\n              [-81.358586, 36.965309],\n              [-81.35833, 36.965224],\n              [-81.35773, 36.965224],\n              [-81.35703, 36.965124],\n              [-81.35663, 36.965024],\n              [-81.35623, 36.964824],\n              [-81.35583, 36.964524],\n              [-81.35493, 36.964524],\n              [-81.35453, 36.964624],\n              [-81.35413, 36.964924],\n              [-81.35353, 36.965224],\n              [-81.35253, 36.965424],\n              [-81.35213, 36.965524],\n              [-81.35183, 36.965524],\n              [-81.35063, 36.965824],\n              [-81.35023, 36.966124],\n              [-81.34993, 36.966324],\n              [-81.34973, 36.966424],\n              [-81.34913, 36.966924],\n              [-81.34853, 36.967224],\n              [-81.34803, 36.967524],\n              [-81.34783, 36.967724],\n              [-81.34783, 36.968124],\n              [-81.34763, 36.968524],\n              [-81.34713, 36.968924],\n              [-81.34653, 36.969224],\n              [-81.34613, 36.969524],\n              [-81.345882, 36.969854],\n              [-81.34583, 36.969924],\n              [-81.34563, 36.970124],\n              [-81.34543, 36.970424],\n              [-81.34513, 36.970824],\n              [-81.344829, 36.970924],\n              [-81.344429, 36.971124],\n              [-81.344429, 36.971324],\n              [-81.344129, 36.971524],\n              [-81.343931, 36.971643],\n              [-81.343629, 36.971824],\n              [-81.343529, 36.971924],\n              [-81.343329, 36.972224],\n              [-81.343029, 36.972624],\n              [-81.342629, 36.973024],\n              [-81.342129, 36.973624],\n              [-81.341629, 36.974024],\n              [-81.341129, 36.974524],\n              [-81.340621, 36.974714],\n              [-81.340329, 36.974824],\n              [-81.339729, 36.974924],\n              [-81.339129, 36.974924],\n              [-81.338629, 36.975224],\n              [-81.338329, 36.975424],\n              [-81.338229, 36.975824],\n              [-81.338129, 36.976124],\n              [-81.338129, 36.977424],\n              [-81.337529, 36.977524],\n              [-81.337229, 36.977724],\n              [-81.335829, 36.979124],\n              [-81.335229, 36.979624],\n              [-81.334729, 36.980124],\n              [-81.334229, 36.980724],\n              [-81.333629, 36.981324],\n              [-81.333129, 36.981924],\n              [-81.331829, 36.983224],\n              [-81.331629, 36.983624],\n              [-81.331329, 36.984024],\n              [-81.331029, 36.984224],\n              [-81.330829, 36.984324],\n              [-81.330529, 36.984724],\n              [-81.330329, 36.985124],\n              [-81.330029, 36.985524],\n              [-81.329729, 36.985524],\n              [-81.329529, 36.985424],\n              [-81.329129, 36.985624],\n              [-81.328629, 36.985924],\n              [-81.328429, 36.986224],\n              [-81.328129, 36.986724],\n              [-81.327737, 36.987124],\n              [-81.326928, 36.987224],\n              [-81.326628, 36.987424],\n              [-81.326428, 36.987724],\n              [-81.326328, 36.988024],\n              [-81.326157, 36.988281],\n              [-81.326128, 36.988324],\n              [-81.326091, 36.988352],\n              [-81.325728, 36.988624],\n              [-81.325228, 36.988924],\n              [-81.324728, 36.989324],\n              [-81.324428, 36.989724],\n              [-81.324241, 36.989911],\n              [-81.323628, 36.990224],\n              [-81.323028, 36.990424],\n              [-81.322528, 36.990724],\n              [-81.322328, 36.991024],\n              [-81.321628, 36.991724],\n              [-81.321528, 36.991924],\n              [-81.321028, 36.992424],\n              [-81.320628, 36.992524],\n              [-81.320428, 36.992724],\n              [-81.320028, 36.993024],\n              [-81.319428, 36.993424],\n              [-81.319128, 36.993724],\n              [-81.319128, 36.993824],\n              [-81.319028, 36.994324],\n              [-81.319028, 36.994524],\n              [-81.319036, 36.994654],\n              [-81.319028, 36.994724],\n              [-81.318928, 36.994724],\n              [-81.318528, 36.994824],\n              [-81.318428, 36.994924],\n              [-81.318428, 36.995224],\n              [-81.318293, 36.995403],\n              [-81.318128, 36.995624],\n              [-81.317628, 36.996124],\n              [-81.317128, 36.996424],\n              [-81.316828, 36.996524],\n              [-81.316428, 36.996824],\n              [-81.316228, 36.997224],\n              [-81.315928, 36.997624],\n              [-81.315828, 36.997924],\n              [-81.315728, 36.998124],\n              [-81.315528, 36.998324],\n              [-81.315428, 36.998524],\n              [-81.315228, 36.998524],\n              [-81.314828, 36.998724],\n              [-81.314328, 36.998824],\n              [-81.313628, 36.999224],\n              [-81.313328, 36.999424],\n              [-81.313028, 36.999724],\n              [-81.312627, 37.000124],\n              [-81.311457, 37.000901],\n              [-81.310257, 37.001696],\n              [-81.309525, 37.002159],\n              [-81.308914, 37.002427],\n              [-81.308243, 37.002736],\n              [-81.307993, 37.002858],\n              [-81.307433, 37.003449],\n              [-81.306893, 37.003855],\n              [-81.305893, 37.004689],\n              [-81.305153, 37.005265],\n              [-81.303492, 37.006522],\n              [-81.302181, 37.007277],\n              [-81.301662, 37.007852],\n              [-81.300431, 37.008857],\n              [-81.299161, 37.00991],\n              [-81.298371, 37.010478],\n              [-81.297592, 37.011385],\n              [-81.296612, 37.012357],\n              [-81.2952, 37.013063],\n              [-81.294089, 37.013753],\n              [-81.292276, 37.014994],\n              [-81.291447, 37.01578],\n              [-81.290345, 37.016364],\n              [-81.289073, 37.017159],\n              [-81.287922, 37.017938],\n              [-81.287122, 37.018554],\n              [-81.286461, 37.019],\n              [-81.285318, 37.019334],\n              [-81.283744, 37.01967],\n              [-81.283073, 37.020076],\n              [-81.282261, 37.020369],\n              [-81.281047, 37.02055],\n              [-81.278739, 37.020766],\n              [-81.277948, 37.021075],\n              [-81.276716, 37.021838],\n              [-81.275142, 37.022504],\n              [-81.273789, 37.023178],\n              [-81.272417, 37.02399],\n              [-81.271104, 37.024534],\n              [-81.270162, 37.024892],\n              [-81.268811, 37.025833],\n              [-81.267609, 37.026668],\n              [-81.266538, 37.027406],\n              [-81.265827, 37.027997],\n              [-81.265138, 37.028758],\n              [-81.264257, 37.029592],\n              [-81.263697, 37.03007],\n              [-81.263127, 37.030564],\n              [-81.262295, 37.031132],\n              [-81.261183, 37.031628],\n              [-81.25988, 37.032181],\n              [-81.257482, 37.032712],\n              [-81.256458, 37.032933],\n              [-81.254964, 37.033373],\n              [-81.253529, 37.033603],\n              [-81.252325, 37.033816],\n              [-81.251011, 37.033997],\n              [-81.249824, 37.034339],\n              [-81.249322, 37.034527],\n              [-81.248569, 37.034663],\n              [-81.247907, 37.034823],\n              [-81.247033, 37.035152],\n              [-81.24621, 37.035424],\n              [-81.245135, 37.035841],\n              [-81.243689, 37.036427],\n              [-81.242514, 37.036852],\n              [-81.24168, 37.037334],\n              [-81.240876, 37.037824],\n              [-81.23977, 37.038387],\n              [-81.238565, 37.038844],\n              [-81.238113, 37.03902],\n              [-81.237399, 37.039478],\n              [-81.236123, 37.04033],\n              [-81.234876, 37.041158],\n              [-81.234062, 37.041777],\n              [-81.233066, 37.04242],\n              [-81.232292, 37.04304],\n              [-81.231874, 37.043334],\n              [-81.231448, 37.043635],\n              [-81.230664, 37.044028],\n              [-81.22998, 37.044422],\n              [-81.229317, 37.044848],\n              [-81.228714, 37.045266],\n              [-81.228261, 37.04566],\n              [-81.228239, 37.045678],\n              [-81.227903, 37.045948],\n              [-81.226636, 37.046717],\n              [-81.22544, 37.047439],\n              [-81.224616, 37.047847],\n              [-81.223555, 37.047943],\n              [-81.222181, 37.047955],\n              [-81.221569, 37.047952],\n              [-81.220768, 37.047805],\n              [-81.220046, 37.047649],\n              [-81.219325, 37.047454],\n              [-81.218788, 37.047327],\n              [-81.218463, 37.047251],\n              [-81.217681, 37.047201],\n              [-81.217199, 37.047208],\n              [-81.216999, 37.047167],\n              [-81.215927, 37.046713],\n              [-81.214123, 37.046217],\n              [-81.212819, 37.046076],\n              [-81.211867, 37.0458],\n              [-81.210854, 37.045612],\n              [-81.210202, 37.045514],\n              [-81.20937, 37.045318],\n              [-81.208198, 37.044703],\n              [-81.207086, 37.044111],\n              [-81.206155, 37.043593],\n              [-81.205624, 37.043414],\n              [-81.205062, 37.043413],\n              [-81.204571, 37.043259],\n              [-81.20379, 37.04295],\n              [-81.202527, 37.042455],\n              [-81.201236, 37.041831],\n              [-81.200184, 37.041313],\n              [-81.198922, 37.040769],\n              [-81.197761, 37.040121],\n              [-81.196709, 37.039651],\n              [-81.195658, 37.039124],\n              [-81.194627, 37.038492],\n              [-81.192945, 37.037561],\n              [-81.191822, 37.037042],\n              [-81.191392, 37.036686],\n              [-81.191133, 37.036266],\n              [-81.190873, 37.035854],\n              [-81.190664, 37.035442],\n              [-81.190255, 37.034917],\n              [-81.189696, 37.034077],\n              [-81.189238, 37.033173],\n              [-81.18871, 37.032212],\n              [-81.18842, 37.031937],\n              [-81.1879, 37.031629],\n              [-81.18744, 37.031104],\n              [-81.186361, 37.030036],\n              [-81.185231, 37.029001],\n              [-81.184451, 37.028491],\n              [-81.18293, 37.027487],\n              [-81.181199, 37.026362],\n              [-81.180258, 37.026053],\n              [-81.179737, 37.025858],\n              [-81.179587, 37.025769],\n              [-81.179367, 37.025526],\n              [-81.179067, 37.025268],\n              [-81.178857, 37.025106],\n              [-81.178216, 37.024983],\n              [-81.176782, 37.024874],\n              [-81.175658, 37.024759],\n              [-81.174465, 37.024667],\n              [-81.173482, 37.02468],\n              [-81.172509, 37.024662],\n              [-81.172028, 37.024596],\n              [-81.171546, 37.024603],\n              [-81.170754, 37.024673],\n              [-81.169781, 37.024791],\n              [-81.169149, 37.024773],\n              [-81.167454, 37.024664],\n              [-81.16606, 37.02466],\n              [-81.164876, 37.024851],\n              [-81.16337, 37.025137],\n              [-81.161784, 37.025536],\n              [-81.160397, 37.025919],\n              [-81.158288, 37.026703],\n              [-81.154319, 37.028321],\n              [-81.151385, 37.029579],\n              [-81.147968, 37.031327],\n              [-81.147626, 37.031526],\n              [-81.145726, 37.032635],\n              [-81.143091, 37.033982],\n              [-81.141513, 37.034671],\n              [-81.140238, 37.034885],\n              [-81.138731, 37.035542],\n              [-81.135979, 37.036372],\n              [-81.13418, 37.037085],\n              [-81.132491, 37.037822],\n              [-81.131997, 37.038045],\n              [-81.131342, 37.038342],\n              [-81.13123, 37.03826],\n              [-81.131039, 37.038102],\n              [-81.129615, 37.036926],\n              [-81.126973, 37.03476],\n              [-81.126731, 37.034561],\n              [-81.126305, 37.034198],\n              [-81.124816, 37.032938],\n              [-81.122805, 37.030921],\n              [-81.122587, 37.030708],\n              [-81.122542, 37.030664],\n              [-81.118201, 37.026415],\n              [-81.116144, 37.024402],\n              [-81.114322, 37.022619],\n              [-81.113446, 37.022987],\n              [-81.112105, 37.023536],\n              [-81.110037, 37.024187],\n              [-81.108061, 37.024797],\n              [-81.107107, 37.025108],\n              [-81.106953, 37.025154],\n              [-81.106898, 37.02517],\n              [-81.106812, 37.025197],\n              [-81.106412, 37.025316],\n              [-81.105531, 37.025584],\n              [-81.104475, 37.025948],\n              [-81.103273, 37.026179],\n              [-81.101355, 37.026246],\n              [-81.100285, 37.026375],\n              [-81.100119, 37.026393],\n              [-81.099826, 37.026441],\n              [-81.099723, 37.026458],\n              [-81.099699, 37.026462],\n              [-81.098967, 37.026554],\n              [-81.097656, 37.026994],\n              [-81.096422, 37.027575],\n              [-81.095356, 37.027997],\n              [-81.094164, 37.028328],\n              [-81.093837, 37.028499],\n              [-81.09333, 37.02902],\n              [-81.092624, 37.029527],\n              [-81.09202, 37.029795],\n              [-81.091006, 37.030094],\n              [-81.089644, 37.030579],\n              [-81.088123, 37.030987],\n              [-81.086667, 37.031207],\n              [-81.086206, 37.031376],\n              [-81.08591, 37.031643],\n              [-81.084941, 37.032391],\n              [-81.083642, 37.03306],\n              [-81.082157, 37.033605],\n              [-81.080335, 37.034126],\n              [-81.078956, 37.034464],\n              [-81.077255, 37.034792],\n              [-81.075778, 37.035123],\n              [-81.07473, 37.035151],\n              [-81.072672, 37.035333],\n              [-81.072065, 37.035299],\n              [-81.07173, 37.035304],\n              [-81.071168, 37.035552],\n              [-81.0708, 37.035651],\n              [-81.070033, 37.035736],\n              [-81.068471, 37.035957],\n              [-81.066398, 37.036365],\n              [-81.064554, 37.036798],\n              [-81.064312, 37.036851],\n              [-81.063617, 37.03741],\n              [-81.06311, 37.037567],\n              [-81.062177, 37.037697],\n              [-81.061161, 37.037769],\n              [-81.060508, 37.038017],\n              [-81.059815, 37.038387],\n              [-81.058981, 37.038739],\n              [-81.057978, 37.039036],\n              [-81.057125, 37.039252],\n              [-81.056231, 37.039451],\n              [-81.055399, 37.039418],\n              [-81.054768, 37.039441],\n              [-81.054506, 37.039561],\n              [-81.054305, 37.039754],\n              [-81.053852, 37.040172],\n              [-81.053481, 37.04026],\n              [-81.052769, 37.040226],\n              [-81.052308, 37.040282],\n              [-81.051596, 37.040264],\n              [-81.050994, 37.040328],\n              [-81.050482, 37.040464],\n              [-81.049981, 37.040519],\n              [-81.048787, 37.040589],\n              [-81.048124, 37.040636],\n              [-81.047823, 37.040789],\n              [-81.04741, 37.041086],\n              [-81.047099, 37.04119],\n              [-81.044963, 37.041395],\n              [-81.044691, 37.041484],\n              [-81.04441, 37.041652],\n              [-81.043808, 37.04178],\n              [-81.043276, 37.041803],\n              [-81.042835, 37.041955],\n              [-81.042372, 37.042164],\n              [-81.042041, 37.042324],\n              [-81.04153, 37.042315],\n              [-81.040958, 37.042378],\n              [-81.040586, 37.042515],\n              [-81.038035, 37.043581],\n              [-81.037, 37.044183],\n              [-81.036587, 37.044561],\n              [-81.036184, 37.044955],\n              [-81.035501, 37.04526],\n              [-81.034828, 37.045581],\n              [-81.034004, 37.046095],\n              [-81.0333, 37.046512],\n              [-81.033029, 37.046721],\n              [-81.032517, 37.046865],\n              [-81.032004, 37.046904],\n              [-81.031592, 37.047032],\n              [-81.031, 37.0472],\n              [-81.030358, 37.047151],\n              [-81.027409, 37.047491],\n              [-81.026807, 37.047497],\n              [-81.026506, 37.047497],\n              [-81.026025, 37.047576],\n              [-81.025613, 37.047753],\n              [-81.02516, 37.047977],\n              [-81.024518, 37.048177],\n              [-81.02223, 37.048575],\n              [-81.019079, 37.048955],\n              [-81.016078, 37.049392],\n              [-81.013299, 37.049595],\n              [-81.012416, 37.049698],\n              [-81.011894, 37.049761],\n              [-81.011463, 37.049897],\n              [-81.011171, 37.049985],\n              [-81.009446, 37.050086],\n              [-81.00755, 37.050218],\n              [-81.005403, 37.050568],\n              [-81.003909, 37.050733],\n              [-81.003627, 37.050765],\n              [-81.002874, 37.050836],\n              [-81.001951, 37.051051],\n              [-81.000967, 37.051202],\n              [-81.000526, 37.051225],\n              [-81.000235, 37.051249],\n              [-80.999808, 37.051321],\n              [-80.999611, 37.051341],\n              [-80.998949, 37.051388],\n              [-80.998277, 37.05148],\n              [-80.997577, 37.051573],\n              [-80.997017, 37.051619],\n              [-80.995728, 37.051648],\n              [-80.995696, 37.051654],\n              [-80.99106, 37.051704],\n              [-80.986351, 37.052472],\n              [-80.983601, 37.05298],\n              [-80.981403, 37.053559],\n              [-80.980727, 37.053035],\n              [-80.979668, 37.053112],\n              [-80.974834, 37.054596],\n              [-80.972966, 37.054824],\n              [-80.971956, 37.056063],\n              [-80.971463, 37.056086],\n              [-80.970932, 37.05636],\n              [-80.970431, 37.056632],\n              [-80.969707, 37.057025],\n              [-80.967863, 37.057568],\n              [-80.967189, 37.057556],\n              [-80.966192, 37.057661],\n              [-80.965571, 37.057962],\n              [-80.964744, 37.058364],\n              [-80.963857, 37.058777],\n              [-80.962582, 37.059079],\n              [-80.96138, 37.059109],\n              [-80.96048, 37.059133],\n              [-80.960189, 37.059595],\n              [-80.960038, 37.059698],\n              [-80.957928, 37.060996],\n              [-80.956416, 37.061018],\n              [-80.955415, 37.06124],\n              [-80.953929, 37.061717],\n              [-80.952687, 37.062114],\n              [-80.952332, 37.062229],\n              [-80.949058, 37.063281],\n              [-80.943137, 37.065414],\n              [-80.938532, 37.066639],\n              [-80.937, 37.066897],\n              [-80.935713, 37.066464],\n              [-80.934556, 37.066693],\n              [-80.933859, 37.067043],\n              [-80.933087, 37.067433],\n              [-80.929772, 37.06849],\n              [-80.926995, 37.069255],\n              [-80.924577, 37.070307],\n              [-80.922619, 37.071494],\n              [-80.92125, 37.071945],\n              [-80.919677, 37.07199],\n              [-80.916716, 37.072954],\n              [-80.915782, 37.072757],\n              [-80.913966, 37.073412],\n              [-80.912677, 37.073356],\n              [-80.91215, 37.072109],\n              [-80.911077, 37.069568],\n              [-80.911075, 37.069563],\n              [-80.911072, 37.069556],\n              [-80.910993, 37.069368],\n              [-80.910572, 37.068372],\n              [-80.910046, 37.067127],\n              [-80.910022, 37.067062],\n              [-80.909952, 37.066871],\n              [-80.909928, 37.066807],\n              [-80.909739, 37.066287],\n              [-80.909174, 37.064727],\n              [-80.908986, 37.064207],\n              [-80.908165, 37.06228],\n              [-80.905704, 37.056501],\n              [-80.904884, 37.054575],\n              [-80.904879, 37.054563],\n              [-80.904694, 37.054129],\n              [-80.904139, 37.052825],\n              [-80.903954, 37.052392],\n              [-80.903947, 37.052376],\n              [-80.90379, 37.052007],\n              [-80.903319, 37.050901],\n              [-80.903162, 37.050533],\n              [-80.90221, 37.048304],\n              [-80.900237, 37.043683],\n              [-80.900187, 37.043566],\n              [-80.900167, 37.04352],\n              [-80.90015, 37.043479],\n              [-80.90014, 37.043455],\n              [-80.900132, 37.043437],\n              [-80.90005, 37.043245],\n              [-80.899355, 37.041618],\n              [-80.898467, 37.039539],\n              [-80.898387, 37.039398],\n              [-80.898321, 37.039276],\n              [-80.898125, 37.038909],\n              [-80.89806, 37.038787],\n              [-80.897953, 37.038575],\n              [-80.897854, 37.03838],\n              [-80.897837, 37.038346],\n              [-80.897835, 37.038341],\n              [-80.897632, 37.037938],\n              [-80.897525, 37.037726],\n              [-80.897491, 37.037638],\n              [-80.897191, 37.036882],\n              [-80.896744, 37.035757],\n              [-80.896731, 37.035725],\n              [-80.896685, 37.03561],\n              [-80.896666, 37.035562],\n              [-80.896661, 37.035548],\n              [-80.896601, 37.035397],\n              [-80.896185, 37.03435],\n              [-80.89585, 37.033507],\n              [-80.895836, 37.033475],\n              [-80.895834, 37.03347],\n              [-80.894789, 37.031011],\n              [-80.894747, 37.030913],\n              [-80.894733, 37.03088],\n              [-80.894725, 37.03086],\n              [-80.894708, 37.03082],\n              [-80.894679, 37.030752],\n              [-80.894518, 37.030373],\n              [-80.893258, 37.027408],\n              [-80.888027, 37.022769],\n              [-80.887137, 37.02198],\n              [-80.887002, 37.02186],\n              [-80.88689, 37.021761],\n              [-80.886805, 37.021686],\n              [-80.88548, 37.020511],\n              [-80.885247, 37.020303],\n              [-80.885236, 37.020293],\n              [-80.884841, 37.019941],\n              [-80.884832, 37.019933],\n              [-80.884804, 37.019908],\n              [-80.884795, 37.0199],\n              [-80.88387, 37.01908],\n              [-80.883199, 37.018485],\n              [-80.883194, 37.018481],\n              [-80.883156, 37.018447],\n              [-80.881095, 37.01662],\n              [-80.880171, 37.015801],\n              [-80.880168, 37.015799],\n              [-80.879895, 37.015557],\n              [-80.879077, 37.014831],\n              [-80.878805, 37.014589],\n              [-80.878494, 37.014313],\n              [-80.877563, 37.013485],\n              [-80.877376, 37.013319],\n              [-80.877247, 37.013217],\n              [-80.876645, 37.012734],\n              [-80.876537, 37.012647],\n              [-80.876323, 37.012475],\n              [-80.876124, 37.012316],\n              [-80.876102, 37.012298],\n              [-80.876083, 37.012283],\n              [-80.875862, 37.012105],\n              [-80.87585, 37.012095],\n              [-80.875636, 37.011923],\n              [-80.87551, 37.011822],\n              [-80.87548, 37.011798],\n              [-80.875444, 37.011769],\n              [-80.875403, 37.011736],\n              [-80.875265, 37.011625],\n              [-80.87515, 37.011533],\n              [-80.875068, 37.011467],\n              [-80.874998, 37.01141],\n              [-80.874912, 37.011341],\n              [-80.874851, 37.011292],\n              [-80.874838, 37.011282],\n              [-80.874816, 37.011265],\n              [-80.874787, 37.011241],\n              [-80.874706, 37.011226],\n              [-80.87455, 37.011203],\n              [-80.874538, 37.011201],\n              [-80.87453, 37.0112],\n              [-80.874523, 37.011199],\n              [-80.87451, 37.011197],\n              [-80.874491, 37.011194],\n              [-80.87436, 37.011174],\n              [-80.874225, 37.011087],\n              [-80.874129, 37.011025],\n              [-80.874104, 37.011009],\n              [-80.874091, 37.011],\n              [-80.874054, 37.010977],\n              [-80.874049, 37.010974],\n              [-80.874035, 37.010965],\n              [-80.87398, 37.01093],\n              [-80.873814, 37.010824],\n              [-80.873758, 37.010788],\n              [-80.873696, 37.010748],\n              [-80.873444, 37.010588],\n              [-80.87194, 37.009627],\n              [-80.867427, 37.006745],\n              [-80.865922, 37.005784],\n              [-80.864638, 37.004964],\n              [-80.864587, 37.004931],\n              [-80.864558, 37.004913],\n              [-80.864545, 37.004905],\n              [-80.864507, 37.004881],\n              [-80.864454, 37.004847],\n              [-80.864174, 37.004668],\n              [-80.863175, 37.00403],\n              [-80.862579, 37.003649],\n              [-80.858601, 37.000126],\n              [-80.858562, 37.00009],\n              [-80.858551, 37.00008],\n              [-80.858544, 37.000074],\n              [-80.858535, 37.000066],\n              [-80.857627, 36.999244],\n              [-80.855816, 36.997603],\n              [-80.8534, 36.995413],\n              [-80.852658, 36.994743],\n              [-80.850429, 36.992732],\n              [-80.849686, 36.992061],\n              [-80.84883, 36.99129],\n              [-80.846261, 36.988973],\n              [-80.845405, 36.988201],\n              [-80.843401, 36.986392],\n              [-80.837388, 36.980965],\n              [-80.835383, 36.979156],\n              [-80.83536, 36.979136],\n              [-80.83529, 36.979075],\n              [-80.835266, 36.979054],\n              [-80.835243, 36.979033],\n              [-80.835172, 36.97897],\n              [-80.835147, 36.978949],\n              [-80.835009, 36.978824],\n              [-80.834967, 36.978786],\n              [-80.834949, 36.978768],\n              [-80.834646, 36.978468],\n              [-80.834558, 36.97838],\n              [-80.834375, 36.978199],\n              [-80.834184, 36.978009],\n              [-80.834152, 36.977977],\n              [-80.834054, 36.977881],\n              [-80.834048, 36.977876],\n              [-80.833988, 36.977816],\n              [-80.833953, 36.97778],\n              [-80.833748, 36.977573],\n              [-80.83368, 36.977504],\n              [-80.831737, 36.975582],\n              [-80.825906, 36.969817],\n              [-80.823962, 36.967895],\n              [-80.823959, 36.967892],\n              [-80.82307, 36.967013],\n              [-80.820402, 36.964375],\n              [-80.819512, 36.963495],\n              [-80.817966, 36.961966],\n              [-80.813327, 36.957379],\n              [-80.81178, 36.95585],\n              [-80.810513, 36.954558],\n              [-80.80936, 36.953382],\n              [-80.809356, 36.953378],\n              [-80.809471, 36.953289],\n              [-80.809478, 36.953284],\n              [-80.810039, 36.952852],\n              [-80.812118, 36.95257],\n              [-80.811827, 36.951806],\n              [-80.811183, 36.950114],\n              [-80.810709, 36.948838],\n              [-80.809494, 36.945568],\n              [-80.809457, 36.944973],\n              [-80.809375, 36.943644],\n              [-80.809373, 36.943614],\n              [-80.809247, 36.941373],\n              [-80.809198, 36.940493],\n              [-80.803841, 36.942857],\n              [-80.801786, 36.943764],\n              [-80.801721, 36.943793],\n              [-80.801826, 36.94395],\n              [-80.802237, 36.944561],\n              [-80.802412, 36.944819],\n              [-80.803186, 36.945966],\n              [-80.803098, 36.946134],\n              [-80.803068, 36.946191],\n              [-80.803032, 36.94626],\n              [-80.803021, 36.946282],\n              [-80.803012, 36.946299],\n              [-80.802823, 36.946662],\n              [-80.799853, 36.943797],\n              [-80.798727, 36.942711],\n              [-80.79872, 36.942704],\n              [-80.798666, 36.942648],\n              [-80.798503, 36.942477],\n              [-80.798448, 36.94242],\n              [-80.797844, 36.941788],\n              [-80.79603, 36.939892],\n              [-80.795425, 36.939259],\n              [-80.79541, 36.939243],\n              [-80.795362, 36.939193],\n              [-80.795346, 36.939177],\n              [-80.795305, 36.939134],\n              [-80.795181, 36.939004],\n              [-80.79514, 36.938961],\n              [-80.795124, 36.938944],\n              [-80.795106, 36.938925],\n              [-80.79479, 36.938587],\n              [-80.793741, 36.937465],\n              [-80.793391, 36.93709],\n              [-80.793359, 36.937056],\n              [-80.793315, 36.937008],\n              [-80.793262, 36.936952],\n              [-80.793229, 36.936917],\n              [-80.793192, 36.936877],\n              [-80.79308, 36.936756],\n              [-80.793072, 36.936748],\n              [-80.793042, 36.936716],\n              [-80.792869, 36.936547],\n              [-80.792519, 36.936205],\n              [-80.792353, 36.936042],\n              [-80.792181, 36.935874],\n              [-80.791868, 36.935567],\n              [-80.790931, 36.934647],\n              [-80.790618, 36.93434],\n              [-80.790586, 36.934304],\n              [-80.790558, 36.934273],\n              [-80.790376, 36.934073],\n              [-80.790315, 36.934006],\n              [-80.790239, 36.93392],\n              [-80.790115, 36.933781],\n              [-80.790006, 36.933665],\n              [-80.789927, 36.93358],\n              [-80.789882, 36.93353],\n              [-80.789781, 36.933419],\n              [-80.789628, 36.933251],\n              [-80.789476, 36.933084],\n              [-80.789374, 36.932972],\n              [-80.78924, 36.93282],\n              [-80.788839, 36.932365],\n              [-80.788753, 36.932268],\n              [-80.788719, 36.932229],\n              [-80.788705, 36.932213],\n              [-80.787628, 36.931029],\n              [-80.784397, 36.927476],\n              [-80.783324, 36.926297],\n              [-80.78332, 36.926292],\n              [-80.782845, 36.92578],\n              [-80.781422, 36.924244],\n              [-80.780947, 36.923732],\n              [-80.780848, 36.923625],\n              [-80.780669, 36.923432],\n              [-80.780604, 36.923362],\n              [-80.780585, 36.923341],\n              [-80.78055, 36.923304],\n              [-80.78045, 36.923196],\n              [-80.7798, 36.922495],\n              [-80.779219, 36.921868],\n              [-80.779163, 36.921808],\n              [-80.778883, 36.921506],\n              [-80.778865, 36.921486],\n              [-80.778852, 36.921472],\n              [-80.778814, 36.921431],\n              [-80.778626, 36.921228],\n              [-80.777851, 36.920392],\n              [-80.777202, 36.919692],\n              [-80.776558, 36.918993],\n              [-80.774625, 36.916896],\n              [-80.774051, 36.916274],\n              [-80.773994, 36.916212],\n              [-80.773981, 36.916198],\n              [-80.77347, 36.915581],\n              [-80.772117, 36.913948],\n              [-80.772111, 36.913941],\n              [-80.772104, 36.913932],\n              [-80.772071, 36.913892],\n              [-80.772031, 36.913844],\n              [-80.771939, 36.913733],\n              [-80.771429, 36.913118],\n              [-80.771366, 36.913042],\n              [-80.771179, 36.912816],\n              [-80.771149, 36.91278],\n              [-80.771115, 36.912743],\n              [-80.771101, 36.912727],\n              [-80.77106, 36.912681],\n              [-80.771047, 36.912666],\n              [-80.771036, 36.912654],\n              [-80.771004, 36.912619],\n              [-80.770994, 36.912608],\n              [-80.770863, 36.912462],\n              [-80.770859, 36.912457],\n              [-80.770681, 36.912258],\n              [-80.769744, 36.911209],\n              [-80.769432, 36.91086],\n              [-80.769428, 36.910845],\n              [-80.769197, 36.91053],\n              [-80.769107, 36.910431],\n              [-80.768318, 36.909565],\n              [-80.764858, 36.905769],\n              [-80.76377, 36.904576],\n              [-80.763705, 36.904505],\n              [-80.763127, 36.903862],\n              [-80.762781, 36.903478],\n              [-80.762378, 36.90303],\n              [-80.761394, 36.901936],\n              [-80.760817, 36.901294],\n              [-80.760505, 36.900947],\n              [-80.760377, 36.900805],\n              [-80.760161, 36.900565],\n              [-80.75957, 36.899908],\n              [-80.759259, 36.899562],\n              [-80.759046, 36.899325],\n              [-80.758973, 36.899244],\n              [-80.758969, 36.89924],\n              [-80.758951, 36.89922],\n              [-80.758927, 36.899193],\n              [-80.758406, 36.898615],\n              [-80.758193, 36.898379],\n              [-80.757196, 36.897271],\n              [-80.754205, 36.893946],\n              [-80.753209, 36.892838],\n              [-80.753027, 36.892635],\n              [-80.752479, 36.892026],\n              [-80.752297, 36.891824],\n              [-80.752271, 36.891795],\n              [-80.750942, 36.890322],\n              [-80.749829, 36.889088],\n              [-80.746844, 36.885843],\n              [-80.746432, 36.885394],\n              [-80.746427, 36.885389],\n              [-80.746391, 36.88535],\n              [-80.74638, 36.885338],\n              [-80.746376, 36.885333],\n              [-80.746321, 36.885273],\n              [-80.746293, 36.885243],\n              [-80.746168, 36.885107],\n              [-80.746152, 36.88509],\n              [-80.746038, 36.884966],\n              [-80.745989, 36.884913],\n              [-80.745474, 36.884353],\n              [-80.745368, 36.884238],\n              [-80.745122, 36.883971],\n              [-80.74509, 36.883936],\n              [-80.745082, 36.883928],\n              [-80.745046, 36.883889],\n              [-80.74503, 36.883872],\n              [-80.744989, 36.883827],\n              [-80.744985, 36.883822],\n              [-80.744939, 36.883772],\n              [-80.744913, 36.883743],\n              [-80.744833, 36.883656],\n              [-80.744806, 36.883627],\n              [-80.744793, 36.883613],\n              [-80.744759, 36.883577],\n              [-80.744687, 36.883499],\n              [-80.744614, 36.883421],\n              [-80.744565, 36.883368],\n              [-80.744118, 36.88289],\n              [-80.742775, 36.881454],\n              [-80.742327, 36.880975],\n              [-80.741959, 36.880582],\n              [-80.741493, 36.880084],\n              [-80.741484, 36.880075],\n              [-80.741478, 36.880068],\n              [-80.741474, 36.880064],\n              [-80.741341, 36.879921],\n              [-80.740855, 36.879402],\n              [-80.740486, 36.879008],\n              [-80.741889, 36.87859],\n              [-80.744222, 36.877895],\n              [-80.744238, 36.87789],\n              [-80.746157, 36.877318],\n              [-80.747212, 36.876942],\n              [-80.74981, 36.876016],\n              [-80.753074, 36.875125],\n              [-80.753921, 36.874869],\n              [-80.756231, 36.874177],\n              [-80.757334, 36.873865],\n              [-80.757804, 36.873734],\n              [-80.760401, 36.873007],\n              [-80.760451, 36.872993],\n              [-80.761528, 36.872692],\n              [-80.763468, 36.87215],\n              [-80.763535, 36.872131],\n              [-80.763885, 36.872033],\n              [-80.76972, 36.870402],\n              [-80.770145, 36.870282],\n              [-80.771542, 36.869891],\n              [-80.774163, 36.869159],\n              [-80.774273, 36.869128],\n              [-80.774348, 36.869107],\n              [-80.782349, 36.866869],\n              [-80.784506, 36.866266],\n              [-80.790156, 36.864686],\n              [-80.792699, 36.863975],\n              [-80.79295, 36.863905],\n              [-80.793995, 36.863613],\n              [-80.794343, 36.863516],\n              [-80.794779, 36.863394],\n              [-80.796024, 36.862507],\n              [-80.79644, 36.86221],\n              [-80.797771, 36.861283],\n              [-80.799871, 36.860975],\n              [-80.801673, 36.859678],\n              [-80.802794, 36.858897],\n              [-80.804185, 36.858622],\n              [-80.806746, 36.857034],\n              [-80.809477, 36.855447],\n              [-80.810397, 36.854858],\n              [-80.811608, 36.854447],\n              [-80.812178, 36.853802],\n              [-80.812738, 36.853239],\n              [-80.813736, 36.853132],\n              [-80.813919, 36.853108],\n              [-80.814851, 36.853209],\n              [-80.815568, 36.85272],\n              [-80.816314, 36.852626],\n              [-80.816514, 36.852601],\n              [-80.816884, 36.852554],\n              [-80.819747, 36.852191],\n              [-80.82082, 36.852055],\n              [-80.82123, 36.852291],\n              [-80.822231, 36.852866],\n              [-80.822294, 36.852864],\n              [-80.824202, 36.852807],\n              [-80.824562, 36.852195],\n              [-80.825972, 36.851759],\n              [-80.826475, 36.851783],\n              [-80.827102, 36.851814],\n              [-80.828213, 36.851781],\n              [-80.829053, 36.851377],\n              [-80.830053, 36.85144],\n              [-80.831033, 36.85115],\n              [-80.831713, 36.850666],\n              [-80.832593, 36.850456],\n              [-80.833223, 36.8499],\n              [-80.833482, 36.849781],\n              [-80.834079, 36.849507],\n              [-80.836494, 36.849549],\n              [-80.837294, 36.849474],\n              [-80.838214, 36.849392],\n              [-80.838664, 36.849486],\n              [-80.840345, 36.849243],\n              [-80.840895, 36.848784],\n              [-80.841995, 36.84839],\n              [-80.843366, 36.848132],\n              [-80.843596, 36.847845],\n              [-80.843894, 36.847318],\n              [-80.845005, 36.847002],\n              [-80.846217, 36.84655],\n              [-80.849095, 36.846942],\n              [-80.849685, 36.847109],\n              [-80.849966, 36.84763],\n              [-80.850745, 36.848255],\n              [-80.851747, 36.848907],\n              [-80.852534, 36.849076],\n              [-80.856258, 36.848247],\n              [-80.856425, 36.848203],\n              [-80.859586, 36.847499],\n              [-80.859898, 36.84743],\n              [-80.859986, 36.84741],\n              [-80.860196, 36.847363],\n              [-80.860437, 36.847307],\n              [-80.870696, 36.845018],\n              [-80.872822, 36.844543],\n              [-80.874075, 36.844251],\n              [-80.874773, 36.844089],\n              [-80.876329, 36.843811],\n              [-80.876445, 36.84379],\n              [-80.878002, 36.843469],\n              [-80.878011, 36.843467],\n              [-80.878457, 36.843375],\n              [-80.879015, 36.843259],\n              [-80.879793, 36.843099],\n              [-80.880064, 36.843043],\n              [-80.882098, 36.842624],\n              [-80.882691, 36.84249],\n              [-80.882924, 36.842436],\n              [-80.883589, 36.84228],\n              [-80.884115, 36.842158],\n              [-80.884187, 36.842141],\n              [-80.884318, 36.842111],\n              [-80.884386, 36.842095],\n              [-80.885911, 36.841739],\n              [-80.886234, 36.841666],\n              [-80.887035, 36.841485],\n              [-80.89286, 36.84017],\n              [-80.893399, 36.840049],\n              [-80.895378, 36.839599],\n              [-80.895455, 36.839581],\n              [-80.901197, 36.838274],\n              [-80.907159, 36.836917],\n              [-80.907333, 36.836878],\n              [-80.90748, 36.836845],\n              [-80.907506, 36.836839],\n              [-80.911049, 36.836044],\n              [-80.911883, 36.835857],\n              [-80.919045, 36.834252],\n              [-80.919615, 36.834125],\n              [-80.919667, 36.834113],\n              [-80.91972, 36.834101],\n              [-80.920894, 36.833837],\n              [-80.925107, 36.832897],\n              [-80.926925, 36.83251],\n              [-80.932295, 36.831364],\n              [-80.937863, 36.830176],\n              [-80.944032, 36.82886],\n              [-80.947352, 36.828152],\n              [-80.947855, 36.828043],\n              [-80.94811, 36.827989],\n              [-80.948365, 36.827936],\n              [-80.94841, 36.827928],\n              [-80.948486, 36.827912],\n              [-80.94891, 36.827814],\n              [-80.951229, 36.827324],\n              [-80.951637, 36.827234],\n              [-80.951783, 36.827202],\n              [-80.95371, 36.826796],\n              [-80.957972, 36.825921],\n              [-80.958716, 36.825745],\n              [-80.960235, 36.82537],\n              [-80.960942, 36.825191],\n              [-80.961307, 36.825098],\n              [-80.962861, 36.824708],\n              [-80.963856, 36.824459],\n              [-80.963996, 36.824428],\n              [-80.972877, 36.822445],\n              [-80.97309, 36.822397],\n              [-80.990982, 36.818435],\n              [-80.999807, 36.81648],\n              [-81.015825, 36.8128],\n              [-81.015971, 36.812766],\n              [-81.016042, 36.81275],\n              [-81.022272, 36.81132],\n              [-81.024409, 36.810829],\n              [-81.025609, 36.812329],\n              [-81.025609, 36.812429],\n              [-81.025709, 36.812629],\n              [-81.026609, 36.813529],\n              [-81.027009, 36.813829],\n              [-81.027409, 36.813929],\n              [-81.027909, 36.814129],\n              [-81.028309, 36.814429],\n              [-81.028509, 36.814429],\n              [-81.028909, 36.814529],\n              [-81.029509, 36.814629],\n              [-81.030309, 36.814529],\n              [-81.030909, 36.814229],\n              [-81.03121, 36.813829],\n              [-81.03181, 36.813329],\n              [-81.03261, 36.812829],\n              [-81.03311, 36.812429],\n              [-81.03371, 36.812029],\n              [-81.034059, 36.81161],\n              [-81.03421, 36.811429],\n              [-81.03441, 36.811129],\n              [-81.03461, 36.811029],\n              [-81.03491, 36.810929],\n              [-81.034992, 36.81088],\n              [-81.03541, 36.810629],\n              [-81.035648, 36.81045],\n              [-81.03581, 36.810329],\n              [-81.03621, 36.810329],\n              [-81.036233, 36.810325],\n              [-81.03681, 36.810229],\n              [-81.03741, 36.809929],\n              [-81.03771, 36.809829],\n              [-81.03821, 36.809629],\n              [-81.03881, 36.809229],\n              [-81.03921, 36.808929],\n              [-81.03961, 36.808429],\n              [-81.03981, 36.808129],\n              [-81.039879, 36.808043],\n              [-81.04021, 36.807629],\n              [-81.04041, 36.807529],\n              [-81.04081, 36.807129],\n              [-81.04101, 36.807029],\n              [-81.04131, 36.806829],\n              [-81.04161, 36.806729],\n              [-81.04171, 36.806729],\n              [-81.04201, 36.806629],\n              [-81.04211, 36.806529],\n              [-81.042409, 36.806429],\n              [-81.04271, 36.806329],\n              [-81.04321, 36.806229],\n              [-81.04383, 36.805875],\n              [-81.04391, 36.805829],\n              [-81.043948, 36.805807],\n              [-81.04461, 36.805429],\n              [-81.04531, 36.805029],\n              [-81.045633, 36.804867],\n              [-81.04591, 36.804729],\n              [-81.04671, 36.804729],\n              [-81.047511, 36.804929],\n              [-81.048211, 36.805329],\n              [-81.048911, 36.805529],\n              [-81.049411, 36.805429],\n              [-81.049711, 36.805229],\n              [-81.050311, 36.805029],\n              [-81.052711, 36.803729],\n              [-81.053011, 36.803629],\n              [-81.053511, 36.803429],\n              [-81.054411, 36.803229],\n              [-81.055111, 36.803029],\n              [-81.055611, 36.802829],\n              [-81.056611, 36.802829],\n              [-81.056811, 36.802329],\n              [-81.056811, 36.802129],\n              [-81.056411, 36.801529],\n              [-81.056211, 36.801129],\n              [-81.056211, 36.800629],\n              [-81.057411, 36.799429],\n              [-81.057711, 36.799029],\n              [-81.057911, 36.798629],\n              [-81.058111, 36.798129],\n              [-81.058311, 36.797829],\n              [-81.058511, 36.797629],\n              [-81.059111, 36.797529],\n              [-81.060311, 36.797429],\n              [-81.061311, 36.797329],\n              [-81.061711, 36.797329],\n              [-81.062711, 36.797229],\n              [-81.062858, 36.797174],\n              [-81.063512, 36.796929],\n              [-81.064112, 36.796729],\n              [-81.064912, 36.796529],\n              [-81.065512, 36.796429],\n              [-81.066412, 36.796329],\n              [-81.067412, 36.795729],\n              [-81.067712, 36.795529],\n              [-81.068112, 36.795229],\n              [-81.068812, 36.795029],\n              [-81.068853, 36.795013],\n              [-81.069312, 36.794829],\n              [-81.069712, 36.794429],\n              [-81.069912, 36.794129],\n              [-81.070312, 36.793329],\n              [-81.070412, 36.793029],\n              [-81.070712, 36.792629],\n              [-81.071512, 36.791829],\n              [-81.072112, 36.791029],\n              [-81.072312, 36.790829],\n              [-81.072812, 36.790629],\n              [-81.073144, 36.790582],\n              [-81.073512, 36.790529],\n              [-81.073812, 36.790529],\n              [-81.07444, 36.790617],\n              [-81.074512, 36.790629],\n              [-81.075212, 36.790529],\n              [-81.076712, 36.790029],\n              [-81.077512, 36.789729],\n              [-81.078212, 36.789729],\n              [-81.078913, 36.789829],\n              [-81.079513, 36.790029],\n              [-81.080013, 36.790129],\n              [-81.080613, 36.790229],\n              [-81.080913, 36.790129],\n              [-81.081413, 36.789929],\n              [-81.081913, 36.789529],\n              [-81.083313, 36.788729],\n              [-81.083413, 36.788629],\n              [-81.083513, 36.788429],\n              [-81.083813, 36.788229],\n              [-81.08418, 36.788082],\n              [-81.084313, 36.788029],\n              [-81.084637, 36.787936],\n              [-81.085013, 36.787829],\n              [-81.085547, 36.787753],\n              [-81.085713, 36.787729],\n              [-81.086035, 36.787665],\n              [-81.086213, 36.787629],\n              [-81.086513, 36.787529],\n              [-81.086613, 36.787229],\n              [-81.086413, 36.786729],\n              [-81.085913, 36.786529],\n              [-81.085513, 36.786329],\n              [-81.084813, 36.786229],\n              [-81.084413, 36.786029],\n              [-81.084113, 36.785629],\n              [-81.084013, 36.785229],\n              [-81.084113, 36.785029],\n              [-81.084613, 36.784729],\n              [-81.085113, 36.784629],\n              [-81.086013, 36.784529],\n              [-81.086713, 36.784429],\n              [-81.087013, 36.784329],\n              [-81.087313, 36.784029],\n              [-81.087513, 36.783729],\n              [-81.087813, 36.783029],\n              [-81.087813, 36.782629],\n              [-81.087713, 36.782129],\n              [-81.087613, 36.781429],\n              [-81.087313, 36.781029],\n              [-81.086913, 36.780429],\n              [-81.086413, 36.779929],\n              [-81.085513, 36.779529],\n              [-81.085113, 36.779129],\n              [-81.084913, 36.778629],\n              [-81.084813, 36.778229],\n              [-81.085013, 36.777829],\n              [-81.085213, 36.777529],\n              [-81.085713, 36.776929],\n              [-81.085793, 36.776595],\n              [-81.085813, 36.77653],\n              [-81.086013, 36.77593],\n              [-81.086413, 36.77533],\n              [-81.086613, 36.77473],\n              [-81.086513, 36.77443],\n              [-81.086513, 36.77393],\n              [-81.086613, 36.77363],\n              [-81.086813, 36.77313],\n              [-81.087213, 36.77263],\n              [-81.088213, 36.77163],\n              [-81.088513, 36.77113],\n              [-81.088613, 36.77073],\n              [-81.088413, 36.76993],\n              [-81.088313, 36.76933],\n              [-81.088113, 36.76873],\n              [-81.088113, 36.76813],\n              [-81.088513, 36.767429],\n              [-81.088814, 36.76733],\n              [-81.089179, 36.767237],\n              [-81.089213, 36.767229],\n              [-81.090013, 36.767229],\n              [-81.090713, 36.767329],\n              [-81.091413, 36.767629],\n              [-81.092013, 36.767729],\n              [-81.093913, 36.767529],\n              [-81.094103, 36.767532],\n              [-81.094413, 36.767529],\n              [-81.094913, 36.767529],\n              [-81.095414, 36.767629],\n              [-81.095714, 36.767829],\n              [-81.095814, 36.768029],\n              [-81.096014, 36.768329],\n              [-81.096314, 36.768529],\n              [-81.096714, 36.768729],\n              [-81.097414, 36.768929],\n              [-81.098114, 36.768929],\n              [-81.098514, 36.769029],\n              [-81.099014, 36.768929],\n              [-81.099503, 36.768685],\n              [-81.099614, 36.768629],\n              [-81.100814, 36.768029],\n              [-81.101514, 36.767829],\n              [-81.102414, 36.767629],\n              [-81.103314, 36.767529],\n              [-81.104014, 36.767429],\n              [-81.104614, 36.767229],\n              [-81.105114, 36.767429],\n              [-81.105814, 36.767529],\n              [-81.107614, 36.767529],\n              [-81.108314, 36.767429],\n              [-81.109214, 36.767629],\n              [-81.109814, 36.767729],\n              [-81.110214, 36.767829],\n              [-81.111515, 36.767829],\n              [-81.112115, 36.767729],\n              [-81.112615, 36.767729],\n              [-81.113115, 36.767829],\n              [-81.113815, 36.767929],\n              [-81.114715, 36.768029],\n              [-81.115215, 36.768029],\n              [-81.115515, 36.767929],\n              [-81.116015, 36.767729],\n              [-81.116415, 36.767429],\n              [-81.117015, 36.767129],\n              [-81.117615, 36.766929],\n              [-81.118015, 36.766829],\n              [-81.118415, 36.766829],\n              [-81.118415, 36.766729],\n              [-81.118815, 36.766729],\n              [-81.119315, 36.766629],\n              [-81.119915, 36.766429],\n              [-81.120315, 36.766429],\n              [-81.120615, 36.766329],\n              [-81.122315, 36.766329],\n              [-81.122615, 36.766229],\n              [-81.123215, 36.766229],\n              [-81.123615, 36.766329],\n              [-81.123715, 36.766429],\n              [-81.124815, 36.766429],\n              [-81.124915, 36.766529],\n              [-81.125015, 36.766529],\n              [-81.125115, 36.766629],\n              [-81.125215, 36.766629],\n              [-81.125515, 36.766729],\n              [-81.126116, 36.766729],\n              [-81.126316, 36.766629],\n              [-81.126716, 36.766529],\n              [-81.127016, 36.766429],\n              [-81.127216, 36.766329],\n              [-81.127816, 36.766329],\n              [-81.127916, 36.766429],\n              [-81.128316, 36.766529],\n              [-81.129016, 36.766829],\n              [-81.129567, 36.767036],\n              [-81.129816, 36.767129],\n              [-81.130052, 36.76723],\n              [-81.130222, 36.767303],\n              [-81.130297, 36.767335],\n              [-81.13042, 36.767388],\n              [-81.130516, 36.767429],\n              [-81.131016, 36.767429],\n              [-81.131516, 36.767329],\n              [-81.131616, 36.767229],\n              [-81.131816, 36.766929],\n              [-81.132116, 36.766429],\n              [-81.132216, 36.766029],\n              [-81.132216, 36.764729],\n              [-81.132383, 36.764506],\n              [-81.132516, 36.764329],\n              [-81.132816, 36.764029],\n              [-81.1329, 36.763946],\n              [-81.133116, 36.763729],\n              [-81.133316, 36.763629],\n              [-81.133816, 36.763429],\n              [-81.134616, 36.763129],\n              [-81.135016, 36.763129],\n              [-81.135616, 36.763029],\n              [-81.136716, 36.763029],\n              [-81.137216, 36.763129],\n              [-81.137716, 36.763129],\n              [-81.138216, 36.763329],\n              [-81.138616, 36.763429],\n              [-81.138916, 36.763629],\n              [-81.139516, 36.763929],\n              [-81.139774, 36.764121],\n              [-81.139916, 36.764228],\n              [-81.140316, 36.764428],\n              [-81.140716, 36.764828],\n              [-81.141017, 36.765028],\n              [-81.141417, 36.765228],\n              [-81.141817, 36.765328],\n              [-81.142217, 36.765328],\n              [-81.142617, 36.765228],\n              [-81.143617, 36.765228],\n              [-81.143917, 36.765328],\n              [-81.145517, 36.765328],\n              [-81.145717, 36.765428],\n              [-81.145817, 36.765428],\n              [-81.146117, 36.765528],\n              [-81.146317, 36.765528],\n              [-81.147017, 36.765328],\n              [-81.147217, 36.765328],\n              [-81.147817, 36.765228],\n              [-81.148217, 36.765328],\n              [-81.148317, 36.765428],\n              [-81.148517, 36.765528],\n              [-81.149017, 36.765528],\n              [-81.149217, 36.765728],\n              [-81.149617, 36.765928],\n              [-81.149817, 36.766128],\n              [-81.150117, 36.766528],\n              [-81.150217, 36.766628],\n              [-81.150239, 36.766657],\n              [-81.150517, 36.767028],\n              [-81.150817, 36.767328],\n              [-81.151017, 36.767428],\n              [-81.151117, 36.767528],\n              [-81.151417, 36.767628],\n              [-81.151617, 36.767728],\n              [-81.152117, 36.767928],\n              [-81.152217, 36.768028],\n              [-81.152617, 36.768128],\n              [-81.153217, 36.768428],\n              [-81.153317, 36.768528],\n              [-81.153917, 36.768828],\n              [-81.154117, 36.769028],\n              [-81.154917, 36.769028],\n              [-81.155317, 36.768928],\n              [-81.155817, 36.768828],\n              [-81.156039, 36.768717],\n              [-81.156282, 36.768596],\n              [-81.156818, 36.768328],\n              [-81.157118, 36.768228],\n              [-81.157218, 36.768128],\n              [-81.157618, 36.767928],\n              [-81.158118, 36.767928],\n              [-81.158618, 36.767828],\n              [-81.158718, 36.767628],\n              [-81.159718, 36.767628],\n              [-81.160318, 36.767428],\n              [-81.160918, 36.767128],\n              [-81.160918, 36.767028],\n              [-81.161118, 36.766928],\n              [-81.161318, 36.766728],\n              [-81.161618, 36.766528],\n              [-81.162018, 36.766228],\n              [-81.162518, 36.765928],\n              [-81.162718, 36.765928],\n              [-81.163118, 36.765728],\n              [-81.163318, 36.765528],\n              [-81.163518, 36.765528],\n              [-81.163718, 36.765428],\n              [-81.163718, 36.765328],\n              [-81.163818, 36.765228],\n              [-81.163818, 36.765028],\n              [-81.163718, 36.764828],\n              [-81.163718, 36.764628],\n              [-81.163618, 36.764428],\n              [-81.163618, 36.763928],\n              [-81.163518, 36.763728],\n              [-81.163518, 36.763628],\n              [-81.163418, 36.763328],\n              [-81.163418, 36.763228],\n              [-81.163818, 36.762928],\n              [-81.164018, 36.762828],\n              [-81.164518, 36.762628],\n              [-81.165118, 36.762528],\n              [-81.168318, 36.762528],\n              [-81.168918, 36.762628],\n              [-81.169418, 36.762628],\n              [-81.169718, 36.762728],\n              [-81.169818, 36.762728],\n              [-81.170418, 36.762828],\n              [-81.171018, 36.762828],\n              [-81.171619, 36.762928],\n              [-81.172051, 36.76305],\n              [-81.172315, 36.763128],\n              [-81.172827, 36.763297],\n              [-81.172919, 36.763328],\n              [-81.173119, 36.763328],\n              [-81.173519, 36.763428],\n              [-81.173819, 36.763528],\n              [-81.174119, 36.763728],\n              [-81.174519, 36.763928],\n              [-81.174619, 36.763928],\n              [-81.174819, 36.764128],\n              [-81.175119, 36.764228],\n              [-81.175219, 36.764328],\n              [-81.175319, 36.764328],\n              [-81.175419, 36.764428],\n              [-81.176219, 36.764428],\n              [-81.176819, 36.764328],\n              [-81.177019, 36.764228],\n              [-81.177619, 36.764128],\n              [-81.179419, 36.764128],\n              [-81.180019, 36.764228],\n              [-81.180419, 36.764328],\n              [-81.181019, 36.764328],\n              [-81.181419, 36.764428],\n              [-81.181919, 36.764428],\n              [-81.182219, 36.764528],\n              [-81.182619, 36.764528],\n              [-81.183219, 36.764628],\n              [-81.183519, 36.764728],\n              [-81.183819, 36.764628],\n              [-81.184319, 36.764628],\n              [-81.185519, 36.764028],\n              [-81.186119, 36.763428],\n              [-81.186384, 36.763082],\n              [-81.186419, 36.763028],\n              [-81.186519, 36.762828],\n              [-81.186619, 36.762728],\n              [-81.18682, 36.762528],\n              [-81.18682, 36.762028],\n              [-81.186619, 36.761728],\n              [-81.186519, 36.761428],\n              [-81.186319, 36.761128],\n              [-81.186119, 36.760728],\n              [-81.185919, 36.760228],\n              [-81.185819, 36.759928],\n              [-81.185819, 36.759228],\n              [-81.185919, 36.758828],\n              [-81.185919, 36.758728],\n              [-81.186019, 36.758428],\n              [-81.18782, 36.758428],\n              [-81.18842, 36.758328],\n              [-81.18962, 36.758228],\n              [-81.18982, 36.758328],\n              [-81.190219, 36.758327],\n              [-81.19038, 36.758408],\n              [-81.190419, 36.758428],\n              [-81.19052, 36.758428],\n              [-81.190559, 36.758401],\n              [-81.19082, 36.758228],\n              [-81.19102, 36.758028],\n              [-81.19112, 36.758028],\n              [-81.191365, 36.757945],\n              [-81.19202, 36.757728],\n              [-81.19222, 36.757728],\n              [-81.19302, 36.757628],\n              [-81.19372, 36.757728],\n              [-81.19412, 36.757828],\n              [-81.19422, 36.757928],\n              [-81.19482, 36.758228],\n              [-81.19502, 36.758428],\n              [-81.19522, 36.758428],\n              [-81.19542, 36.758528],\n              [-81.19592, 36.758528],\n              [-81.19632, 36.758628],\n              [-81.19662, 36.758828],\n              [-81.19722, 36.759028],\n              [-81.19762, 36.759128],\n              [-81.19812, 36.759328],\n              [-81.19852, 36.759328],\n              [-81.19892, 36.759428],\n              [-81.19952, 36.759528],\n              [-81.19962, 36.759628],\n              [-81.20002, 36.759628],\n              [-81.20012, 36.759528],\n              [-81.20042, 36.759528],\n              [-81.20062, 36.759428],\n              [-81.20112, 36.759428],\n              [-81.20162, 36.759528],\n              [-81.20182, 36.759628],\n              [-81.20192, 36.759528],\n              [-81.202321, 36.759528],\n              [-81.202726, 36.759416],\n              [-81.202876, 36.75948],\n              [-81.203016, 36.75954],\n              [-81.203399, 36.759703],\n              [-81.203619, 36.75974],\n              [-81.203634, 36.759743],\n              [-81.204082, 36.759818],\n              [-81.204566, 36.759726],\n              [-81.206418, 36.759132],\n              [-81.206435, 36.759127],\n              [-81.206921, 36.759127],\n              [-81.207292, 36.759074],\n              [-81.207473, 36.759048],\n              [-81.20779, 36.759053],\n              [-81.210279, 36.7591],\n              [-81.211448, 36.759102],\n              [-81.212075, 36.759263],\n              [-81.213015, 36.759836],\n              [-81.213957, 36.76009],\n              [-81.214469, 36.760181],\n              [-81.214492, 36.760177],\n              [-81.215238, 36.760127],\n              [-81.215621, 36.760127],\n              [-81.215634, 36.760124],\n              [-81.216421, 36.759927],\n              [-81.218722, 36.759927],\n              [-81.219322, 36.760027],\n              [-81.219622, 36.760127],\n              [-81.220022, 36.760227],\n              [-81.221022, 36.760627],\n              [-81.221365, 36.760764],\n              [-81.221525, 36.760828],\n              [-81.221826, 36.760911],\n              [-81.222422, 36.761227],\n              [-81.223322, 36.761527],\n              [-81.223522, 36.761727],\n              [-81.223622, 36.761927],\n              [-81.223622, 36.762327],\n              [-81.223718, 36.762713],\n              [-81.223722, 36.763027],\n              [-81.223722, 36.763727],\n              [-81.223728, 36.763844],\n              [-81.224022, 36.764327],\n              [-81.224622, 36.764527],\n              [-81.224822, 36.764627],\n              [-81.225235, 36.76473],\n              [-81.225228, 36.764758],\n              [-81.225399, 36.764941],\n              [-81.226345, 36.76491],\n              [-81.22685, 36.764895],\n              [-81.227109, 36.76483],\n              [-81.227461, 36.764742],\n              [-81.22777, 36.764664],\n              [-81.228328, 36.764554],\n              [-81.229138, 36.764458],\n              [-81.230424, 36.764156],\n              [-81.231109, 36.763787],\n              [-81.231511, 36.763147],\n              [-81.231623, 36.762613],\n              [-81.231798, 36.762241],\n              [-81.232104, 36.76194],\n              [-81.232701, 36.761604],\n              [-81.233059, 36.761448],\n              [-81.233256, 36.761394],\n              [-81.233544, 36.761419],\n              [-81.23479, 36.761526],\n              [-81.235241, 36.761501],\n              [-81.235387, 36.761446],\n              [-81.235699, 36.761327],\n              [-81.235923, 36.761327],\n              [-81.236523, 36.761427],\n              [-81.236923, 36.761427],\n              [-81.237305, 36.761488],\n              [-81.23737, 36.761482],\n              [-81.237526, 36.761627],\n              [-81.238925, 36.761627],\n              [-81.239424, 36.761427],\n              [-81.239724, 36.761427],\n              [-81.239824, 36.761327],\n              [-81.240223, 36.761027],\n              [-81.240423, 36.760927],\n              [-81.240723, 36.760627],\n              [-81.240777, 36.760467],\n              [-81.240823, 36.760327],\n              [-81.240923, 36.760227],\n              [-81.241023, 36.760027],\n              [-81.241123, 36.759927],\n              [-81.241223, 36.759927],\n              [-81.241423, 36.759827],\n              [-81.242623, 36.759827],\n              [-81.242923, 36.759927],\n              [-81.243023, 36.759927],\n              [-81.243623, 36.760527],\n              [-81.243782, 36.760606],\n              [-81.24417, 36.760766],\n              [-81.244323, 36.760827],\n              [-81.244624, 36.760927],\n              [-81.244821, 36.761026],\n              [-81.245323, 36.761227],\n              [-81.245523, 36.761327],\n              [-81.245823, 36.761427],\n              [-81.246423, 36.761827],\n              [-81.246523, 36.762027],\n              [-81.246574, 36.762078],\n              [-81.246722, 36.762227],\n              [-81.246809, 36.762357],\n              [-81.246899, 36.762491],\n              [-81.246923, 36.762527],\n              [-81.247223, 36.762827],\n              [-81.247624, 36.763027],\n              [-81.247624, 36.763127],\n              [-81.247824, 36.763427],\n              [-81.248324, 36.763827],\n              [-81.248624, 36.764027],\n              [-81.248817, 36.764021],\n              [-81.248927, 36.764012],\n              [-81.249206, 36.763929],\n              [-81.249386, 36.763879],\n              [-81.249824, 36.763627],\n              [-81.250324, 36.763627],\n              [-81.250624, 36.763827],\n              [-81.251424, 36.764227],\n              [-81.251624, 36.764227],\n              [-81.251824, 36.764327],\n              [-81.252824, 36.764327],\n              [-81.253324, 36.764127],\n              [-81.253524, 36.764027],\n              [-81.254024, 36.763927],\n              [-81.254624, 36.763927],\n              [-81.255124, 36.763827],\n              [-81.255824, 36.763727],\n              [-81.256224, 36.763627],\n              [-81.256624, 36.763427],\n              [-81.257424, 36.763227],\n              [-81.257624, 36.763127],\n              [-81.258524, 36.763127],\n              [-81.259024, 36.763227],\n              [-81.259524, 36.763227],\n              [-81.260124, 36.763427],\n              [-81.260524, 36.763427],\n              [-81.260624, 36.763327],\n              [-81.260824, 36.763327],\n              [-81.260924, 36.763227],\n              [-81.261524, 36.763227],\n              [-81.261623, 36.763127],\n              [-81.263274, 36.767656],\n              [-81.266408, 36.77626],\n              [-81.271011, 36.788893],\n              [-81.272225, 36.792226],\n              [-81.273354, 36.794484],\n              [-81.27346, 36.794697],\n              [-81.274854, 36.797485],\n              [-81.279949, 36.807674],\n              [-81.281671, 36.811117],\n              [-81.281803, 36.811382],\n              [-81.281819, 36.811414],\n              [-81.283127, 36.814029],\n              [-81.284355, 36.816484],\n              [-81.284726, 36.817224],\n              [-81.285607, 36.818985],\n              [-81.285633, 36.819038],\n              [-81.286282, 36.820337],\n              [-81.286413, 36.820599],\n              [-81.287999, 36.823772],\n              [-81.288778, 36.82533],\n              [-81.288882, 36.825537],\n              [-81.289397, 36.826566],\n              [-81.289966, 36.827716],\n              [-81.290008, 36.827748],\n              [-81.290156, 36.82782],\n              [-81.290166, 36.827825],\n              [-81.2902, 36.827858],\n              [-81.2902, 36.827984],\n              [-81.290159, 36.828089],\n              [-81.290158, 36.828096],\n              [-81.290353, 36.828475],\n              [-81.290405, 36.82857],\n              [-81.290835, 36.829353],\n              [-81.292198, 36.831855],\n              [-81.292212, 36.83188],\n              [-81.292245, 36.831941],\n              [-81.292269, 36.831985],\n              [-81.292411, 36.832245],\n              [-81.298349, 36.843117],\n              [-81.298947, 36.844212],\n              [-81.298997, 36.844303],\n              [-81.299067, 36.844432],\n              [-81.299409, 36.845057],\n              [-81.301862, 36.849549],\n              [-81.307262, 36.859439],\n              [-81.308269, 36.861282],\n              [-81.310039, 36.864524],\n              [-81.311032, 36.866342],\n              [-81.311408, 36.86703],\n              [-81.312406, 36.868858],\n              [-81.313017, 36.869977],\n              [-81.313214, 36.870337],\n              [-81.313394, 36.870666],\n              [-81.313639, 36.871115],\n              [-81.315828, 36.875125],\n              [-81.316463, 36.876546],\n              [-81.320757, 36.886159],\n              [-81.322607, 36.890299],\n              [-81.322993, 36.891163],\n              [-81.32303, 36.891247],\n              [-81.323087, 36.891374],\n              [-81.32319, 36.891605],\n              [-81.326594, 36.899223],\n              [-81.326708, 36.89948],\n              [-81.326732, 36.899534],\n              [-81.327494, 36.900299],\n              [-81.327646, 36.900452],\n              [-81.327879, 36.900687],\n              [-81.334918, 36.907776],\n              [-81.337836, 36.910715],\n              [-81.338566, 36.91145],\n              [-81.338596, 36.91148],\n              [-81.339272, 36.912161],\n              [-81.343131, 36.916048],\n              [-81.343819, 36.91649],\n              [-81.344054, 36.916641],\n              [-81.344203, 36.916792],\n              [-81.344346, 36.916915],\n              [-81.344488, 36.91703],\n              [-81.344676, 36.917232],\n              [-81.344733, 36.917328],\n              [-81.345804, 36.918429],\n              [-81.345949, 36.918577],\n              [-81.346853, 36.919489],\n              [-81.36129, 36.934179],\n              [-81.36226, 36.935174],\n              [-81.364169, 36.937135],\n              [-81.364242, 36.93721],\n              [-81.369286, 36.94239],\n              [-81.371491, 36.944611],\n              [-81.371667, 36.944788],\n              [-81.374831, 36.947974],\n              [-81.377243, 36.950309],\n              [-81.378825, 36.951839],\n              [-81.37943, 36.952424]\n            ],\n            [\n              [-78.386685, 38.83016],\n              [-78.386457, 38.830335],\n              [-78.385811, 38.830956],\n              [-78.385238, 38.831738],\n              [-78.384715, 38.832205],\n              [-78.384131, 38.832512],\n              [-78.383865, 38.833019],\n              [-78.383415, 38.83368],\n              [-78.382933, 38.834196],\n              [-78.382369, 38.834663],\n              [-78.381806, 38.835389],\n              [-78.381224, 38.836445],\n              [-78.380506, 38.836993],\n              [-78.379912, 38.83759],\n              [-78.37903, 38.838324],\n              [-78.378498, 38.838969],\n              [-78.37773, 38.840089],\n              [-78.377238, 38.840702],\n              [-78.376695, 38.841065],\n              [-78.376182, 38.841387],\n              [-78.375434, 38.842202],\n              [-78.375097, 38.842806],\n              [-78.37473, 38.843145],\n              [-78.37401, 38.84458],\n              [-78.373088, 38.84516],\n              [-78.372187, 38.84574],\n              [-78.370447, 38.847358],\n              [-78.369537, 38.848494],\n              [-78.368924, 38.84938],\n              [-78.368863, 38.849613],\n              [-78.367172, 38.850628],\n              [-78.366774, 38.851337],\n              [-78.366089, 38.852198],\n              [-78.364984, 38.85335],\n              [-78.364114, 38.854373],\n              [-78.363387, 38.854791],\n              [-78.362332, 38.855661],\n              [-78.362087, 38.856321],\n              [-78.36178, 38.856668],\n              [-78.361463, 38.857022],\n              [-78.361033, 38.857288],\n              [-78.3605, 38.857594],\n              [-78.360039, 38.857779],\n              [-78.359483, 38.857978],\n              [-78.359311, 38.858222],\n              [-78.358984, 38.858681],\n              [-78.358585, 38.859374],\n              [-78.357366, 38.860445],\n              [-78.355847, 38.861584],\n              [-78.353654, 38.863369],\n              [-78.352776, 38.863941],\n              [-78.351255, 38.864765],\n              [-78.35107, 38.864923],\n              [-78.350492, 38.865526],\n              [-78.349796, 38.866259],\n              [-78.349478, 38.8665],\n              [-78.347509, 38.867193],\n              [-78.346617, 38.86758],\n              [-78.34552, 38.868272],\n              [-78.345193, 38.868762],\n              [-78.344938, 38.869471],\n              [-78.34416, 38.870139],\n              [-78.343453, 38.870831],\n              [-78.342644, 38.871612],\n              [-78.34204, 38.872192],\n              [-78.341045, 38.872691],\n              [-78.340831, 38.873142],\n              [-78.340432, 38.873867],\n              [-78.339798, 38.874712],\n              [-78.339274, 38.87512],\n              [-78.339039, 38.875393],\n              [-78.338732, 38.875572],\n              [-78.338569, 38.875726],\n              [-78.338468, 38.875888],\n              [-78.33842, 38.876259],\n              [-78.338349, 38.87642],\n              [-78.337222, 38.878015],\n              [-78.336713, 38.878517],\n              [-78.336355, 38.878785],\n              [-78.336048, 38.878956],\n              [-78.335885, 38.879167],\n              [-78.33543, 38.880032],\n              [-78.335116, 38.880557],\n              [-78.334637, 38.881076],\n              [-78.334373, 38.881448],\n              [-78.334252, 38.881683],\n              [-78.334144, 38.882167],\n              [-78.334063, 38.882329],\n              [-78.333941, 38.882466],\n              [-78.333725, 38.882564],\n              [-78.333627, 38.883032],\n              [-78.333497, 38.88346],\n              [-78.333135, 38.884373],\n              [-78.332851, 38.884737],\n              [-78.332596, 38.88498],\n              [-78.332505, 38.885158],\n              [-78.332438, 38.885691],\n              [-78.332218, 38.886417],\n              [-78.331894, 38.886991],\n              [-78.331815, 38.88729],\n              [-78.331776, 38.887548],\n              [-78.332051, 38.88836],\n              [-78.332313, 38.888794],\n              [-78.332396, 38.888898],\n              [-78.33362, 38.888803],\n              [-78.33397, 38.888712],\n              [-78.334885, 38.888691],\n              [-78.335286, 38.88864],\n              [-78.335851, 38.888475],\n              [-78.338622, 38.888653],\n              [-78.338424, 38.890596],\n              [-78.338041, 38.891445],\n              [-78.337971, 38.89163],\n              [-78.337471, 38.892052],\n              [-78.336738, 38.892992],\n              [-78.336444, 38.893445],\n              [-78.336262, 38.8938],\n              [-78.33613, 38.893962],\n              [-78.335874, 38.894085],\n              [-78.335413, 38.894305],\n              [-78.334872, 38.894759],\n              [-78.334076, 38.89557],\n              [-78.333904, 38.895804],\n              [-78.333713, 38.896289],\n              [-78.333509, 38.896564],\n              [-78.333204, 38.896897],\n              [-78.332642, 38.897416],\n              [-78.332521, 38.897618],\n              [-78.332487, 38.898351],\n              [-78.332386, 38.898553],\n              [-78.332233, 38.898724],\n              [-78.331486, 38.899251],\n              [-78.331007, 38.899713],\n              [-78.330916, 38.899875],\n              [-78.330848, 38.90031],\n              [-78.330737, 38.900553],\n              [-78.33039, 38.900941],\n              [-78.330144, 38.901064],\n              [-78.329899, 38.901186],\n              [-78.329512, 38.901648],\n              [-78.329266, 38.901794],\n              [-78.328804, 38.901982],\n              [-78.328654, 38.902442],\n              [-78.327996, 38.903607],\n              [-78.327803, 38.903898],\n              [-78.327609, 38.904068],\n              [-78.327385, 38.904287],\n              [-78.327284, 38.904489],\n              [-78.327056, 38.905482],\n              [-78.326856, 38.906031],\n              [-78.326562, 38.90654],\n              [-78.326226, 38.906937],\n              [-78.326174, 38.907058],\n              [-78.326156, 38.907332],\n              [-78.325989, 38.908123],\n              [-78.32592, 38.908502],\n              [-78.325851, 38.908769],\n              [-78.324731, 38.911185],\n              [-78.324376, 38.911775],\n              [-78.324144, 38.912341],\n              [-78.324116, 38.912591],\n              [-78.324058, 38.913026],\n              [-78.324009, 38.913252],\n              [-78.323696, 38.91389],\n              [-78.323626, 38.914181],\n              [-78.323293, 38.914836],\n              [-78.323039, 38.915296],\n              [-78.321812, 38.917326],\n              [-78.321672, 38.917714],\n              [-78.321523, 38.918303],\n              [-78.321319, 38.91853],\n              [-78.320972, 38.91883],\n              [-78.320419, 38.91922],\n              [-78.319804, 38.919538],\n              [-78.318881, 38.919873],\n              [-78.318253, 38.920083],\n              [-78.317186, 38.920383],\n              [-78.316776, 38.92057],\n              [-78.316336, 38.920847],\n              [-78.315895, 38.921107],\n              [-78.315198, 38.921417],\n              [-78.31486, 38.92158],\n              [-78.314215, 38.922035],\n              [-78.313776, 38.922392],\n              [-78.31348, 38.922724],\n              [-78.313318, 38.923024],\n              [-78.313144, 38.923178],\n              [-78.312816, 38.923333],\n              [-78.311883, 38.923757],\n              [-78.311187, 38.924188],\n              [-78.310849, 38.924423],\n              [-78.310278, 38.925007],\n              [-78.310125, 38.925233],\n              [-78.309963, 38.925573],\n              [-78.309729, 38.925848],\n              [-78.309392, 38.926148],\n              [-78.309085, 38.926384],\n              [-78.308788, 38.926514],\n              [-78.308625, 38.926725],\n              [-78.308505, 38.92708],\n              [-78.308476, 38.92737],\n              [-78.308567, 38.928272],\n              [-78.30856, 38.928651],\n              [-78.308481, 38.928958],\n              [-78.308391, 38.929256],\n              [-78.307963, 38.929838],\n              [-78.307842, 38.930081],\n              [-78.307743, 38.930468],\n              [-78.307734, 38.930613],\n              [-78.307318, 38.931308],\n              [-78.307177, 38.931648],\n              [-78.307148, 38.931857],\n              [-78.307212, 38.932179],\n              [-78.307214, 38.932365],\n              [-78.307144, 38.932599],\n              [-78.306757, 38.933036],\n              [-78.306413, 38.933699],\n              [-78.306312, 38.933941],\n              [-78.306037, 38.934297],\n              [-78.305823, 38.934605],\n              [-78.305774, 38.934823],\n              [-78.305721, 38.935774],\n              [-78.305661, 38.935968],\n              [-78.305591, 38.936161],\n              [-78.305286, 38.936679],\n              [-78.305249, 38.936728],\n              [-78.305062, 38.936986],\n              [-78.30491, 38.937261],\n              [-78.304374, 38.938336],\n              [-78.304303, 38.938457],\n              [-78.303935, 38.938774],\n              [-78.303304, 38.939535],\n              [-78.302255, 38.940878],\n              [-78.30195, 38.941347],\n              [-78.301412, 38.942269],\n              [-78.301179, 38.942673],\n              [-78.300547, 38.943538],\n              [-78.303295, 38.945982],\n              [-78.303362, 38.946041],\n              [-78.303426, 38.946098],\n              [-78.303559, 38.946216],\n              [-78.303766, 38.9464],\n              [-78.30454, 38.947089],\n              [-78.309274, 38.953051],\n              [-78.310647, 38.952522],\n              [-78.311268, 38.952273],\n              [-78.311987, 38.951851],\n              [-78.312436, 38.951805],\n              [-78.312745, 38.951681],\n              [-78.312852, 38.951639],\n              [-78.313155, 38.951517],\n              [-78.313402, 38.95168],\n              [-78.313758, 38.951774],\n              [-78.314092, 38.951979],\n              [-78.3144, 38.952236],\n              [-78.314759, 38.952467],\n              [-78.315093, 38.95275],\n              [-78.315401, 38.952955],\n              [-78.315786, 38.953109],\n              [-78.316197, 38.953314],\n              [-78.316428, 38.953289],\n              [-78.316633, 38.953289],\n              [-78.316916, 38.953314],\n              [-78.317173, 38.953314],\n              [-78.317327, 38.953391],\n              [-78.317506, 38.953494],\n              [-78.317814, 38.953751],\n              [-78.318071, 38.954033],\n              [-78.318377, 38.954358],\n              [-78.318687, 38.95456],\n              [-78.319138, 38.954839],\n              [-78.319674, 38.955161],\n              [-78.320097, 38.955309],\n              [-78.320383, 38.955294],\n              [-78.320482, 38.955258],\n              [-78.320848, 38.955305],\n              [-78.321276, 38.95548],\n              [-78.321871, 38.955734],\n              [-78.323121, 38.956269],\n              [-78.323563, 38.956432],\n              [-78.326594, 38.955651],\n              [-78.326839, 38.95742],\n              [-78.327929, 38.96325],\n              [-78.328492, 38.964281],\n              [-78.328598, 38.96449],\n              [-78.332855, 38.97089],\n              [-78.33466, 38.973951],\n              [-78.334943, 38.974204],\n              [-78.335099, 38.974344],\n              [-78.335297, 38.974518],\n              [-78.335314, 38.974675],\n              [-78.335686, 38.975091],\n              [-78.335791, 38.975433],\n              [-78.336079, 38.975983],\n              [-78.336469, 38.976729],\n              [-78.336666, 38.97693],\n              [-78.336924, 38.977194],\n              [-78.337015, 38.977207],\n              [-78.337608, 38.977692],\n              [-78.338872, 38.979109],\n              [-78.338998, 38.979563],\n              [-78.338745, 38.980398],\n              [-78.338313, 38.980808],\n              [-78.336898, 38.981548],\n              [-78.336371, 38.981763],\n              [-78.336216, 38.981813],\n              [-78.335987, 38.98178],\n              [-78.334882, 38.981839],\n              [-78.334049, 38.981755],\n              [-78.333737, 38.981674],\n              [-78.333047, 38.981393],\n              [-78.331387, 38.980428],\n              [-78.331084, 38.980311],\n              [-78.330861, 38.980061],\n              [-78.330632, 38.980028],\n              [-78.330346, 38.979842],\n              [-78.329742, 38.97921],\n              [-78.328649, 38.978254],\n              [-78.327957, 38.977791],\n              [-78.327771, 38.977583],\n              [-78.32755, 38.977515],\n              [-78.327142, 38.977114],\n              [-78.326901, 38.976876],\n              [-78.326764, 38.976857],\n              [-78.326169, 38.97619],\n              [-78.325948, 38.976122],\n              [-78.32491, 38.975137],\n              [-78.324772, 38.975117],\n              [-78.323863, 38.974187],\n              [-78.323789, 38.974104],\n              [-78.323082, 38.973893],\n              [-78.322002, 38.973846],\n              [-78.321911, 38.973833],\n              [-78.321421, 38.97409],\n              [-78.320997, 38.974464],\n              [-78.32071, 38.97544],\n              [-78.320626, 38.975972],\n              [-78.320366, 38.976262],\n              [-78.31985, 38.976623],\n              [-78.319237, 38.977188],\n              [-78.318947, 38.977982],\n              [-78.318984, 38.978604],\n              [-78.318906, 38.97892],\n              [-78.31898, 38.979003],\n              [-78.318974, 38.97922],\n              [-78.319598, 38.979964],\n              [-78.319675, 38.980229],\n              [-78.319574, 38.980832],\n              [-78.319468, 38.981071],\n              [-78.319196, 38.981213],\n              [-78.31899, 38.981474],\n              [-78.318448, 38.981941],\n              [-78.317614, 38.982438],\n              [-78.317018, 38.982933],\n              [-78.316357, 38.98331],\n              [-78.316614, 38.98342],\n              [-78.316641, 38.983441],\n              [-78.316892, 38.983641],\n              [-78.318099, 38.984905],\n              [-78.318422, 38.985133],\n              [-78.318728, 38.985431],\n              [-78.318969, 38.985611],\n              [-78.319106, 38.985631],\n              [-78.319218, 38.985756],\n              [-78.319355, 38.985776],\n              [-78.319678, 38.986004],\n              [-78.320663, 38.986436],\n              [-78.320737, 38.986519],\n              [-78.321012, 38.986559],\n              [-78.321252, 38.986739],\n              [-78.321564, 38.98682],\n              [-78.321676, 38.986945],\n              [-78.32222, 38.987242],\n              [-78.323281, 38.98852],\n              [-78.324131, 38.989115],\n              [-78.324317, 38.989323],\n              [-78.324454, 38.989343],\n              [-78.324806, 38.989648],\n              [-78.325433, 38.989992],\n              [-78.326286, 38.990188],\n              [-78.326484, 38.990369],\n              [-78.326589, 38.990304],\n              [-78.326976, 38.990469],\n              [-78.327526, 38.990548],\n              [-78.328109, 38.990769],\n              [-78.32823, 38.990901],\n              [-78.328238, 38.99091],\n              [-78.328579, 38.991281],\n              [-78.32908, 38.991752],\n              [-78.329104, 38.991787],\n              [-78.32917, 38.991882],\n              [-78.329264, 38.992017],\n              [-78.329642, 38.992561],\n              [-78.329861, 38.992877],\n              [-78.32992, 38.992963],\n              [-78.330026, 38.993305],\n              [-78.329877, 38.993719],\n              [-78.329605, 38.993861],\n              [-78.328903, 38.994015],\n              [-78.328513, 38.994249],\n              [-78.32843, 38.994782],\n              [-78.328895, 38.995303],\n              [-78.330791, 38.996756],\n              [-78.331681, 38.997574],\n              [-78.332156, 38.998151],\n              [-78.332331, 38.998212],\n              [-78.332665, 38.998587],\n              [-78.332794, 38.998642],\n              [-78.333389, 38.999309],\n              [-78.333495, 38.999651],\n              [-78.333443, 39.000022],\n              [-78.333404, 39.000255],\n              [-78.333207, 39.000481],\n              [-78.332145, 39.00108],\n              [-78.33172, 39.00132],\n              [-78.331419, 39.001385],\n              [-78.330311, 39.001262],\n              [-78.328933, 39.000882],\n              [-78.327884, 39.000227],\n              [-78.327827, 39.000192],\n              [-78.327806, 39.000179],\n              [-78.327797, 39.000173],\n              [-78.327789, 39.000168],\n              [-78.327703, 39.000115],\n              [-78.327696, 39.00011],\n              [-78.327556, 39.000023],\n              [-78.327538, 38.999955],\n              [-78.327272, 38.99988],\n              [-78.326356, 38.999748],\n              [-78.325488, 38.999805],\n              [-78.324987, 38.999914],\n              [-78.324882, 39.000023],\n              [-78.324862, 39.000078],\n              [-78.324786, 39.000127],\n              [-78.324511, 39.000305],\n              [-78.32447, 39.000331],\n              [-78.324128, 39.000553],\n              [-78.323257, 39.00159],\n              [-78.32303, 39.00168],\n              [-78.322987, 39.001914],\n              [-78.322474, 39.002458],\n              [-78.322242, 39.002824],\n              [-78.32193, 39.00373],\n              [-78.321927, 39.00374],\n              [-78.321909, 39.003793],\n              [-78.321696, 39.004117],\n              [-78.321689, 39.004128],\n              [-78.321605, 39.004257],\n              [-78.321415, 39.00443],\n              [-78.321373, 39.004469],\n              [-78.320197, 39.005543],\n              [-78.319309, 39.006069],\n              [-78.318945, 39.006198],\n              [-78.318883, 39.006202],\n              [-78.31887, 39.006203],\n              [-78.318269, 39.006246],\n              [-78.317759, 39.00639],\n              [-78.317477, 39.00642],\n              [-78.317321, 39.006436],\n              [-78.316803, 39.006616],\n              [-78.316678, 39.006675],\n              [-78.316669, 39.006684],\n              [-78.31666, 39.006694],\n              [-78.316629, 39.006698],\n              [-78.315622, 39.007172],\n              [-78.314943, 39.007619],\n              [-78.314676, 39.00779],\n              [-78.314415, 39.007958],\n              [-78.314219, 39.007983],\n              [-78.314199, 39.007985],\n              [-78.314055, 39.007976],\n              [-78.314032, 39.007975],\n              [-78.313911, 39.007968],\n              [-78.312583, 39.007892],\n              [-78.312449, 39.007901],\n              [-78.311731, 39.007949],\n              [-78.311657, 39.007954],\n              [-78.311419, 39.007969],\n              [-78.310699, 39.008018],\n              [-78.310126, 39.008055],\n              [-78.308876, 39.008139],\n              [-78.308092, 39.008192],\n              [-78.302349, 39.008578],\n              [-78.302259, 39.008584],\n              [-78.302233, 39.008586],\n              [-78.302113, 39.008594],\n              [-78.299427, 39.008729],\n              [-78.299354, 39.008733],\n              [-78.298774, 39.008764],\n              [-78.297005, 39.008888],\n              [-78.295451, 39.008997],\n              [-78.294959, 39.009032],\n              [-78.294531, 39.009062],\n              [-78.294328, 39.009077],\n              [-78.289655, 39.009426],\n              [-78.289411, 39.009443],\n              [-78.286501, 39.009641],\n              [-78.286175, 39.009663],\n              [-78.281665, 39.009973],\n              [-78.278663, 39.010132],\n              [-78.278537, 39.01014],\n              [-78.275254, 39.010366],\n              [-78.273244, 39.010504],\n              [-78.273083, 39.010515],\n              [-78.270345, 39.010703],\n              [-78.267525, 39.010896],\n              [-78.267318, 39.01091],\n              [-78.262702, 39.011227],\n              [-78.255554, 39.011718],\n              [-78.251994, 39.011964],\n              [-78.251912, 39.01197],\n              [-78.25183, 39.011975],\n              [-78.251663, 39.011985],\n              [-78.251655, 39.011985],\n              [-78.251526, 39.011996],\n              [-78.251449, 39.012002],\n              [-78.251371, 39.012007],\n              [-78.249726, 39.01212],\n              [-78.24741, 39.012283],\n              [-78.243816, 39.012535],\n              [-78.241807, 39.012676],\n              [-78.239415, 39.012842],\n              [-78.23096, 39.013429],\n              [-78.228561, 39.013597],\n              [-78.228557, 39.013597],\n              [-78.228524, 39.0136],\n              [-78.228468, 39.013606],\n              [-78.222743, 39.014002],\n              [-78.222411, 39.014026],\n              [-78.220957, 39.014127],\n              [-78.220295, 39.014173],\n              [-78.220152, 39.014183],\n              [-78.219513, 39.014228],\n              [-78.218992, 39.014264],\n              [-78.217147, 39.014393],\n              [-78.217072, 39.014398],\n              [-78.217038, 39.014401],\n              [-78.216903, 39.01441],\n              [-78.213514, 39.014646],\n              [-78.213392, 39.014654],\n              [-78.21327, 39.014663],\n              [-78.209401, 39.014933],\n              [-78.209298, 39.01494],\n              [-78.208951, 39.014965],\n              [-78.208837, 39.014973],\n              [-78.204241, 39.015322],\n              [-78.204171, 39.015327],\n              [-78.204112, 39.015332],\n              [-78.200463, 39.015592],\n              [-78.191993, 39.016196],\n              [-78.191522, 39.016229],\n              [-78.191261, 39.016248],\n              [-78.186462, 39.016587],\n              [-78.18621, 39.01659],\n              [-78.185888, 39.016596],\n              [-78.182323, 39.016845],\n              [-78.18136, 39.016904],\n              [-78.170649, 39.017556],\n              [-78.169353, 39.017631],\n              [-78.168815, 39.017664],\n              [-78.168711, 39.017667],\n              [-78.167852, 39.017691],\n              [-78.167755, 39.017694],\n              [-78.167659, 39.017696],\n              [-78.167285, 39.017707],\n              [-78.167208, 39.017711],\n              [-78.165143, 39.01783],\n              [-78.164475, 39.017869],\n              [-78.16425, 39.017878],\n              [-78.16417, 39.017881],\n              [-78.163978, 39.017888],\n              [-78.163113, 39.019492],\n              [-78.163043, 39.019822],\n              [-78.163017, 39.019945],\n              [-78.162945, 39.020308],\n              [-78.162653, 39.021376],\n              [-78.162467, 39.021708],\n              [-78.162378, 39.021868],\n              [-78.161897, 39.022472],\n              [-78.161835, 39.022554],\n              [-78.16175, 39.022657],\n              [-78.161712, 39.022704],\n              [-78.15838, 39.026906],\n              [-78.157764, 39.027673],\n              [-78.157636, 39.027833],\n              [-78.157521, 39.027978],\n              [-78.157044, 39.028579],\n              [-78.156865, 39.028736],\n              [-78.15657, 39.028995],\n              [-78.156553, 39.029011],\n              [-78.156426, 39.029126],\n              [-78.156302, 39.029234],\n              [-78.156019, 39.02948],\n              [-78.155572, 39.029873],\n              [-78.155489, 39.029946],\n              [-78.154717, 39.030626],\n              [-78.153611, 39.031669],\n              [-78.153186, 39.032725],\n              [-78.153234, 39.033216],\n              [-78.15327, 39.03359],\n              [-78.153274, 39.033636],\n              [-78.153297, 39.033866],\n              [-78.153254, 39.034078],\n              [-78.153218, 39.034252],\n              [-78.152883, 39.034802],\n              [-78.152797, 39.034942],\n              [-78.15231, 39.035747],\n              [-78.151984, 39.036285],\n              [-78.151773, 39.036195],\n              [-78.151497, 39.036078],\n              [-78.14541, 39.033492],\n              [-78.144689, 39.033185],\n              [-78.134739, 39.028951],\n              [-78.126122, 39.025298],\n              [-78.124808, 39.024741],\n              [-78.117764, 39.021667],\n              [-78.11739, 39.021504],\n              [-78.11731, 39.021469],\n              [-78.116979, 39.02131],\n              [-78.116896, 39.021275],\n              [-78.114843, 39.020401],\n              [-78.114713, 39.020346],\n              [-78.114408, 39.020216],\n              [-78.114337, 39.020186],\n              [-78.114201, 39.020128],\n              [-78.114149, 39.020106],\n              [-78.114133, 39.020099],\n              [-78.114115, 39.020091],\n              [-78.114082, 39.020077],\n              [-78.113923, 39.020009],\n              [-78.11276, 39.019515],\n              [-78.112726, 39.0195],\n              [-78.112692, 39.019486],\n              [-78.11267, 39.019476],\n              [-78.112647, 39.019466],\n              [-78.112628, 39.019458],\n              [-78.112621, 39.019455],\n              [-78.112596, 39.019445],\n              [-78.111387, 39.01893],\n              [-78.111315, 39.018899],\n              [-78.109113, 39.017962],\n              [-78.107364, 39.017217],\n              [-78.106518, 39.016857],\n              [-78.104426, 39.015952],\n              [-78.102365, 39.01506],\n              [-78.100377, 39.0142],\n              [-78.100197, 39.014122],\n              [-78.100093, 39.014077],\n              [-78.10006, 39.014063],\n              [-78.100053, 39.01406],\n              [-78.100043, 39.014056],\n              [-78.099994, 39.014035],\n              [-78.099569, 39.013851],\n              [-78.099066, 39.013633],\n              [-78.097557, 39.01298],\n              [-78.09711, 39.012777],\n              [-78.097009, 39.012731],\n              [-78.096886, 39.012676],\n              [-78.094555, 39.013017],\n              [-78.093691, 39.013143],\n              [-78.093675, 39.013145],\n              [-78.09314, 39.013223],\n              [-78.093054, 39.013236],\n              [-78.090657, 39.013587],\n              [-78.087961, 39.013981],\n              [-78.087231, 39.014088],\n              [-78.084686, 39.0147],\n              [-78.08411, 39.014839],\n              [-78.083811, 39.014911],\n              [-78.083712, 39.014935],\n              [-78.083701, 39.014938],\n              [-78.08349, 39.014989],\n              [-78.083006, 39.015105],\n              [-78.082994, 39.015108],\n              [-78.0829, 39.01513],\n              [-78.082672, 39.015185],\n              [-78.082627, 39.015196],\n              [-78.082472, 39.015233],\n              [-78.082008, 39.015346],\n              [-78.081678, 39.015426],\n              [-78.081492, 39.015471],\n              [-78.08129, 39.015503],\n              [-78.080484, 39.015632],\n              [-78.080449, 39.015638],\n              [-78.080413, 39.015644],\n              [-78.080363, 39.015652],\n              [-78.080343, 39.015655],\n              [-78.080299, 39.015662],\n              [-78.079232, 39.015833],\n              [-78.077322, 39.016139],\n              [-78.075354, 39.016454],\n              [-78.073565, 39.016741],\n              [-78.071064, 39.017141],\n              [-78.070279, 39.017267],\n              [-78.070006, 39.017311],\n              [-78.069955, 39.017319],\n              [-78.069947, 39.01732],\n              [-78.069353, 39.017415],\n              [-78.068225, 39.017597],\n              [-78.065528, 39.01801],\n              [-78.065493, 39.018015],\n              [-78.062968, 39.018401],\n              [-78.060577, 39.018767],\n              [-78.060231, 39.01882],\n              [-78.059671, 39.018905],\n              [-78.05954, 39.018926],\n              [-78.05891, 39.019023],\n              [-78.058815, 39.018958],\n              [-78.058795, 39.018944],\n              [-78.058763, 39.018922],\n              [-78.058743, 39.018908],\n              [-78.058721, 39.018893],\n              [-78.058715, 39.018889],\n              [-78.058677, 39.018864],\n              [-78.058422, 39.018688],\n              [-78.05837, 39.018653],\n              [-78.058324, 39.018621],\n              [-78.058281, 39.018592],\n              [-78.058245, 39.018568],\n              [-78.058059, 39.01844],\n              [-78.057987, 39.018389],\n              [-78.056873, 39.017596],\n              [-78.056653, 39.017439],\n              [-78.056389, 39.01726],\n              [-78.056342, 39.017228],\n              [-78.056138, 39.017089],\n              [-78.052136, 39.01437],\n              [-78.051994, 39.014274],\n              [-78.051836, 39.014167],\n              [-78.051824, 39.014159],\n              [-78.051771, 39.014123],\n              [-78.051701, 39.014075],\n              [-78.051696, 39.014072],\n              [-78.051684, 39.014064],\n              [-78.051228, 39.013754],\n              [-78.051072, 39.013648],\n              [-78.051064, 39.013643],\n              [-78.051034, 39.013623],\n              [-78.051002, 39.013601],\n              [-78.050952, 39.013567],\n              [-78.050741, 39.013424],\n              [-78.050506, 39.013264],\n              [-78.049995, 39.012917],\n              [-78.049189, 39.012331],\n              [-78.049047, 39.012228],\n              [-78.048738, 39.012003],\n              [-78.04865, 39.011939],\n              [-78.048119, 39.011553],\n              [-78.047919, 39.011408],\n              [-78.047889, 39.011386],\n              [-78.047867, 39.01137],\n              [-78.047859, 39.011364],\n              [-78.047853, 39.01136],\n              [-78.047471, 39.011082],\n              [-78.047233, 39.01091],\n              [-78.047216, 39.010898],\n              [-78.046908, 39.010674],\n              [-78.046577, 39.010433],\n              [-78.045459, 39.00962],\n              [-78.043448, 39.008157],\n              [-78.043443, 39.008153],\n              [-78.041069, 39.006428],\n              [-78.041025, 39.006396],\n              [-78.040996, 39.006375],\n              [-78.040937, 39.006332],\n              [-78.040827, 39.006252],\n              [-78.038991, 39.004917],\n              [-78.03734, 39.003717],\n              [-78.036647, 39.003213],\n              [-78.036467, 39.003082],\n              [-78.036382, 39.00302],\n              [-78.036305, 39.002964],\n              [-78.036265, 39.002935],\n              [-78.036259, 39.002931],\n              [-78.035946, 39.002704],\n              [-78.033444, 39.000885],\n              [-78.032461, 39.00017],\n              [-78.032453, 39.000165],\n              [-78.032164, 38.999966],\n              [-78.032156, 38.999961],\n              [-78.03215, 38.999956],\n              [-78.032141, 38.99995],\n              [-78.032119, 38.999935],\n              [-78.032108, 38.999928],\n              [-78.032048, 38.999887],\n              [-78.029323, 38.998043],\n              [-78.029304, 38.99803],\n              [-78.028798, 38.997688],\n              [-78.028566, 38.997531],\n              [-78.027982, 38.997137],\n              [-78.02788, 38.997068],\n              [-78.027844, 38.997044],\n              [-78.027821, 38.997028],\n              [-78.027789, 38.997006],\n              [-78.027383, 38.996705],\n              [-78.022158, 38.992828],\n              [-78.013605, 38.986485],\n              [-78.009203, 38.98322],\n              [-78.005343, 38.980356],\n              [-78.005315, 38.980335],\n              [-78.005219, 38.980265],\n              [-78.004673, 38.979913],\n              [-78.004538, 38.979799],\n              [-78.0045, 38.979767],\n              [-78.004443, 38.979718],\n              [-78.004169, 38.979487],\n              [-78.00441, 38.979305],\n              [-78.004798, 38.979005],\n              [-78.005057, 38.978556],\n              [-78.005188, 38.9783],\n              [-78.005208, 38.978261],\n              [-78.005271, 38.97824],\n              [-78.005717, 38.978092],\n              [-78.005978, 38.977926],\n              [-78.006497, 38.977338],\n              [-78.00686, 38.976811],\n              [-78.007728, 38.976269],\n              [-78.007991, 38.976031],\n              [-78.008145, 38.976017],\n              [-78.008183, 38.975995],\n              [-78.008397, 38.975868],\n              [-78.009185, 38.975638],\n              [-78.009557, 38.975168],\n              [-78.009691, 38.974735],\n              [-78.010038, 38.974442],\n              [-78.011311, 38.973719],\n              [-78.012073, 38.973303],\n              [-78.012253, 38.973088],\n              [-78.012613, 38.972699],\n              [-78.013211, 38.972256],\n              [-78.014696, 38.971287],\n              [-78.015029, 38.971139],\n              [-78.015515, 38.971041],\n              [-78.016164, 38.97105],\n              [-78.016737, 38.970817],\n              [-78.017327, 38.970254],\n              [-78.01773, 38.96976],\n              [-78.01782, 38.969463],\n              [-78.01782, 38.969044],\n              [-78.017732, 38.968012],\n              [-78.017707, 38.967762],\n              [-78.017549, 38.967485],\n              [-78.017346, 38.966532],\n              [-78.017294, 38.966112],\n              [-78.017373, 38.965839],\n              [-78.017941, 38.96534],\n              [-78.018663, 38.964883],\n              [-78.019201, 38.964609],\n              [-78.020244, 38.964143],\n              [-78.020363, 38.963934],\n              [-78.020461, 38.963742],\n              [-78.020409, 38.96345],\n              [-78.02045, 38.963207],\n              [-78.020469, 38.963096],\n              [-78.020511, 38.962845],\n              [-78.020931, 38.961771],\n              [-78.021464, 38.960696],\n              [-78.021895, 38.959792],\n              [-78.022193, 38.959315],\n              [-78.022383, 38.959109],\n              [-78.023222, 38.958207],\n              [-78.02342, 38.957636],\n              [-78.023505, 38.957541],\n              [-78.02371, 38.957149],\n              [-78.023902, 38.956854],\n              [-78.02427, 38.956521],\n              [-78.024615, 38.956324],\n              [-78.024764, 38.956117],\n              [-78.024964, 38.955508],\n              [-78.025033, 38.955202],\n              [-78.025339, 38.954925],\n              [-78.026198, 38.954269],\n              [-78.026783, 38.953668],\n              [-78.027026, 38.953233],\n              [-78.027131, 38.952735],\n              [-78.027137, 38.952494],\n              [-78.027198, 38.952116],\n              [-78.027453, 38.951773],\n              [-78.027643, 38.951582],\n              [-78.027966, 38.951402],\n              [-78.028354, 38.951101],\n              [-78.028589, 38.950766],\n              [-78.028706, 38.950591],\n              [-78.028836, 38.950327],\n              [-78.029057, 38.950153],\n              [-78.029284, 38.950132],\n              [-78.029651, 38.95025],\n              [-78.030184, 38.950346],\n              [-78.030636, 38.950377],\n              [-78.030952, 38.950381],\n              [-78.031182, 38.950436],\n              [-78.031518, 38.950518],\n              [-78.031866, 38.950572],\n              [-78.032433, 38.950556],\n              [-78.032725, 38.950383],\n              [-78.032902, 38.950297],\n              [-78.033401, 38.950086],\n              [-78.034155, 38.949889],\n              [-78.034534, 38.949532],\n              [-78.034765, 38.94914],\n              [-78.035061, 38.948637],\n              [-78.035645, 38.947848],\n              [-78.036365, 38.947223],\n              [-78.036481, 38.947123],\n              [-78.03671, 38.946926],\n              [-78.037508, 38.946176],\n              [-78.037783, 38.945363],\n              [-78.038142, 38.944282],\n              [-78.038693, 38.943265],\n              [-78.038768, 38.942987],\n              [-78.038887, 38.942578],\n              [-78.03895, 38.942342],\n              [-78.038953, 38.941915],\n              [-78.038954, 38.94181],\n              [-78.038963, 38.94133],\n              [-78.039226, 38.940598],\n              [-78.039487, 38.939656],\n              [-78.039521, 38.939535],\n              [-78.039755, 38.939199],\n              [-78.04026, 38.938775],\n              [-78.041252, 38.938203],\n              [-78.041977, 38.938012],\n              [-78.042368, 38.938018],\n              [-78.042626, 38.93815],\n              [-78.042886, 38.938283],\n              [-78.043276, 38.938313],\n              [-78.043556, 38.938252],\n              [-78.044313, 38.937989],\n              [-78.045061, 38.937702],\n              [-78.046341, 38.937076],\n              [-78.046849, 38.936954],\n              [-78.047271, 38.936928],\n              [-78.048269, 38.936926],\n              [-78.04861, 38.936906],\n              [-78.048662, 38.936903],\n              [-78.048826, 38.936894],\n              [-78.049271, 38.936779],\n              [-78.049453, 38.936674],\n              [-78.049539, 38.936624],\n              [-78.049584, 38.936598],\n              [-78.050407, 38.936181],\n              [-78.051065, 38.935766],\n              [-78.052526, 38.934898],\n              [-78.053028, 38.934575],\n              [-78.053614, 38.934156],\n              [-78.053994, 38.933767],\n              [-78.054332, 38.933385],\n              [-78.054791, 38.933142],\n              [-78.055755, 38.932834],\n              [-78.056922, 38.932649],\n              [-78.057517, 38.93273],\n              [-78.057826, 38.932711],\n              [-78.058149, 38.932547],\n              [-78.058492, 38.93239],\n              [-78.059, 38.932374],\n              [-78.059124, 38.932389],\n              [-78.059249, 38.932404],\n              [-78.060084, 38.932501],\n              [-78.060649, 38.932549],\n              [-78.060999, 38.932521],\n              [-78.061588, 38.932369],\n              [-78.061728, 38.932145],\n              [-78.061758, 38.931718],\n              [-78.061787, 38.931388],\n              [-78.061763, 38.931105],\n              [-78.061815, 38.930966],\n              [-78.061872, 38.930817],\n              [-78.06195, 38.930576],\n              [-78.061956, 38.930487],\n              [-78.061959, 38.930434],\n              [-78.06212, 38.929918],\n              [-78.062366, 38.929526],\n              [-78.062889, 38.929179],\n              [-78.063162, 38.928933],\n              [-78.063278, 38.928806],\n              [-78.063561, 38.928617],\n              [-78.063989, 38.928317],\n              [-78.064372, 38.927799],\n              [-78.064661, 38.927336],\n              [-78.064776, 38.92683],\n              [-78.064615, 38.926155],\n              [-78.064598, 38.926086],\n              [-78.064239, 38.925179],\n              [-78.063955, 38.924619],\n              [-78.063836, 38.924408],\n              [-78.063809, 38.924246],\n              [-78.063878, 38.923949],\n              [-78.064335, 38.923327],\n              [-78.065, 38.922636],\n              [-78.065905, 38.921756],\n              [-78.066409, 38.921336],\n              [-78.066692, 38.921131],\n              [-78.066959, 38.920691],\n              [-78.067479, 38.92003],\n              [-78.067871, 38.919544],\n              [-78.068188, 38.919218],\n              [-78.068678, 38.918516],\n              [-78.068952, 38.918238],\n              [-78.069228, 38.917855],\n              [-78.069403, 38.917398],\n              [-78.06952, 38.917255],\n              [-78.069751, 38.917155],\n              [-78.070204, 38.917031],\n              [-78.07071, 38.916941],\n              [-78.071246, 38.916506],\n              [-78.071761, 38.916054],\n              [-78.072316, 38.915224],\n              [-78.072558, 38.91482],\n              [-78.072699, 38.914585],\n              [-78.074587, 38.913508],\n              [-78.074703, 38.912828],\n              [-78.074826, 38.912141],\n              [-78.074984, 38.911981],\n              [-78.074995, 38.911886],\n              [-78.07503, 38.911578],\n              [-78.075031, 38.91157],\n              [-78.075076, 38.911155],\n              [-78.075081, 38.911052],\n              [-78.075069, 38.910143],\n              [-78.075157, 38.909674],\n              [-78.075197, 38.909476],\n              [-78.075213, 38.909445],\n              [-78.075383, 38.90911],\n              [-78.075668, 38.908783],\n              [-78.075816, 38.908561],\n              [-78.075825, 38.908528],\n              [-78.075883, 38.908345],\n              [-78.075753, 38.908019],\n              [-78.075604, 38.907724],\n              [-78.07551, 38.90759],\n              [-78.075156, 38.907335],\n              [-78.074589, 38.90717],\n              [-78.074287, 38.907081],\n              [-78.074216, 38.907048],\n              [-78.073791, 38.906768],\n              [-78.073166, 38.906228],\n              [-78.07214, 38.905238],\n              [-78.071959, 38.905059],\n              [-78.071896, 38.904695],\n              [-78.072051, 38.903763],\n              [-78.07205, 38.903678],\n              [-78.063699, 38.901635],\n              [-78.063699, 38.900483],\n              [-78.062529, 38.90039],\n              [-78.062194, 38.900022],\n              [-78.061192, 38.899745],\n              [-78.061532, 38.897845],\n              [-78.061629, 38.896709],\n              [-78.061362, 38.89647],\n              [-78.061708, 38.895785],\n              [-78.06174, 38.895294],\n              [-78.06157, 38.895099],\n              [-78.061396, 38.895019],\n              [-78.061316, 38.894982],\n              [-78.061188, 38.891381],\n              [-78.062272, 38.891156],\n              [-78.062978, 38.891094],\n              [-78.063725, 38.891094],\n              [-78.064492, 38.891105],\n              [-78.065149, 38.891014],\n              [-78.066551, 38.890544],\n              [-78.066933, 38.890921],\n              [-78.067231, 38.891125],\n              [-78.067143, 38.891186],\n              [-78.067072, 38.891258],\n              [-78.067036, 38.891313],\n              [-78.066979, 38.891433],\n              [-78.066878, 38.891747],\n              [-78.066822, 38.891888],\n              [-78.068103, 38.892486],\n              [-78.068011, 38.891727],\n              [-78.068089, 38.891677],\n              [-78.068695, 38.891577],\n              [-78.072243, 38.890772],\n              [-78.07267, 38.890719],\n              [-78.073305, 38.886112],\n              [-78.075384, 38.885592],\n              [-78.077122, 38.887239],\n              [-78.077473, 38.887285],\n              [-78.077513, 38.887321],\n              [-78.079242, 38.885949],\n              [-78.080518, 38.88598],\n              [-78.081451, 38.885957],\n              [-78.081547, 38.885955],\n              [-78.084158, 38.885938],\n              [-78.084654, 38.885824],\n              [-78.085673, 38.885592],\n              [-78.08667, 38.885434],\n              [-78.087323, 38.885368],\n              [-78.088125, 38.885377],\n              [-78.08892, 38.88546],\n              [-78.089831, 38.885742],\n              [-78.090664, 38.885903],\n              [-78.090898, 38.885816],\n              [-78.091092, 38.885708],\n              [-78.091873, 38.88543],\n              [-78.092099, 38.885353],\n              [-78.092474, 38.88481],\n              [-78.093012, 38.883611],\n              [-78.0931, 38.882973],\n              [-78.093147, 38.882343],\n              [-78.093407, 38.881484],\n              [-78.093822, 38.880537],\n              [-78.094533, 38.879476],\n              [-78.096804, 38.879413],\n              [-78.09987, 38.878984],\n              [-78.101641, 38.878846],\n              [-78.10234, 38.878953],\n              [-78.102697, 38.879042],\n              [-78.103467, 38.879203],\n              [-78.106172, 38.879398],\n              [-78.107693, 38.879631],\n              [-78.111434, 38.880268],\n              [-78.1115, 38.880059],\n              [-78.111562, 38.879868],\n              [-78.111657, 38.879572],\n              [-78.111819, 38.879179],\n              [-78.112011, 38.878602],\n              [-78.11266, 38.877676],\n              [-78.113741, 38.876531],\n              [-78.114518, 38.876477],\n              [-78.116499, 38.876284],\n              [-78.122242, 38.874077],\n              [-78.122363, 38.874075],\n              [-78.122482, 38.874057],\n              [-78.122582, 38.874028],\n              [-78.122722, 38.873995],\n              [-78.124376, 38.873327],\n              [-78.125633, 38.872854],\n              [-78.126149, 38.872537],\n              [-78.126571, 38.872166],\n              [-78.127217, 38.87132],\n              [-78.127569, 38.870733],\n              [-78.128949, 38.870791],\n              [-78.129297, 38.870557],\n              [-78.130438, 38.86979],\n              [-78.130851, 38.867419],\n              [-78.130512, 38.866395],\n              [-78.130592, 38.865596],\n              [-78.13061, 38.865411],\n              [-78.130646, 38.865049],\n              [-78.130576, 38.864873],\n              [-78.13055, 38.864808],\n              [-78.130081, 38.863622],\n              [-78.130011, 38.863349],\n              [-78.129876, 38.862815],\n              [-78.130197, 38.862155],\n              [-78.130211, 38.862126],\n              [-78.130268, 38.862009],\n              [-78.130339, 38.861864],\n              [-78.13076, 38.861637],\n              [-78.131177, 38.861705],\n              [-78.131596, 38.861773],\n              [-78.131835, 38.861812],\n              [-78.132188, 38.861869],\n              [-78.132348, 38.861895],\n              [-78.132768, 38.861963],\n              [-78.13299, 38.861999],\n              [-78.134373, 38.861282],\n              [-78.134901, 38.861008],\n              [-78.135005, 38.860954],\n              [-78.135139, 38.860885],\n              [-78.135453, 38.860761],\n              [-78.136514, 38.860342],\n              [-78.137807, 38.859833],\n              [-78.138294, 38.859641],\n              [-78.140411, 38.859405],\n              [-78.141426, 38.859652],\n              [-78.14223, 38.859847],\n              [-78.14295, 38.859274],\n              [-78.142944, 38.859157],\n              [-78.142889, 38.858038],\n              [-78.142827, 38.856775],\n              [-78.143433, 38.855596],\n              [-78.143532, 38.855403],\n              [-78.144092, 38.854314],\n              [-78.144574, 38.85322],\n              [-78.144912, 38.852454],\n              [-78.144948, 38.852371],\n              [-78.145004, 38.852245],\n              [-78.145212, 38.851773],\n              [-78.145251, 38.85168],\n              [-78.145501, 38.851078],\n              [-78.145716, 38.850563],\n              [-78.14582, 38.850555],\n              [-78.148336, 38.850368],\n              [-78.149068, 38.84961],\n              [-78.149477, 38.849189],\n              [-78.149857, 38.849102],\n              [-78.150801, 38.848887],\n              [-78.151143, 38.848809],\n              [-78.151426, 38.84849],\n              [-78.153177, 38.846525],\n              [-78.154976, 38.845855],\n              [-78.157236, 38.844918],\n              [-78.158654, 38.84311],\n              [-78.159106, 38.841981],\n              [-78.158767, 38.840836],\n              [-78.161069, 38.838947],\n              [-78.159671, 38.837005],\n              [-78.160267, 38.836214],\n              [-78.162175, 38.836387],\n              [-78.162571, 38.836423],\n              [-78.162625, 38.836423],\n              [-78.162856, 38.836422],\n              [-78.164377, 38.83588],\n              [-78.166174, 38.834378],\n              [-78.168291, 38.833957],\n              [-78.168878, 38.831933],\n              [-78.168896, 38.831871],\n              [-78.169074, 38.83126],\n              [-78.169316, 38.830742],\n              [-78.169693, 38.830313],\n              [-78.170163, 38.829907],\n              [-78.170541, 38.829622],\n              [-78.170797, 38.829492],\n              [-78.170806, 38.829435],\n              [-78.170764, 38.82925],\n              [-78.170398, 38.828622],\n              [-78.170282, 38.828251],\n              [-78.170093, 38.827752],\n              [-78.169904, 38.827317],\n              [-78.169701, 38.826929],\n              [-78.16958, 38.826697],\n              [-78.169536, 38.826455],\n              [-78.169667, 38.826051],\n              [-78.170514, 38.824453],\n              [-78.170935, 38.823845],\n              [-78.170968, 38.823799],\n              [-78.171055, 38.823695],\n              [-78.171023, 38.823542],\n              [-78.170939, 38.823405],\n              [-78.170825, 38.823244],\n              [-78.17068, 38.823091],\n              [-78.170697, 38.822784],\n              [-78.170664, 38.82247],\n              [-78.170518, 38.822196],\n              [-78.170422, 38.82189],\n              [-78.17042, 38.821615],\n              [-78.170397, 38.821293],\n              [-78.170458, 38.821008],\n              [-78.170548, 38.819296],\n              [-78.17252, 38.818882],\n              [-78.174976, 38.819227],\n              [-78.177934, 38.818998],\n              [-78.180029, 38.818003],\n              [-78.179505, 38.817101],\n              [-78.178508, 38.815917],\n              [-78.178847, 38.81436],\n              [-78.179318, 38.811223],\n              [-78.18019, 38.809157],\n              [-78.180775, 38.807108],\n              [-78.180854, 38.806907],\n              [-78.181565, 38.805116],\n              [-78.182068, 38.80447],\n              [-78.182098, 38.803744],\n              [-78.181995, 38.802527],\n              [-78.182365, 38.801744],\n              [-78.182303, 38.801051],\n              [-78.18146, 38.800181],\n              [-78.18183, 38.799358],\n              [-78.182569, 38.799123],\n              [-78.183606, 38.7978],\n              [-78.184149, 38.795985],\n              [-78.184333, 38.793857],\n              [-78.184476, 38.792986],\n              [-78.185862, 38.792339],\n              [-78.187258, 38.7912],\n              [-78.188665, 38.790602],\n              [-78.188694, 38.790579],\n              [-78.188706, 38.790569],\n              [-78.188692, 38.790097],\n              [-78.188686, 38.78985],\n              [-78.188682, 38.789713],\n              [-78.188664, 38.789037],\n              [-78.188664, 38.789021],\n              [-78.190378, 38.788277],\n              [-78.193057, 38.787644],\n              [-78.193088, 38.787637],\n              [-78.193344, 38.786701],\n              [-78.194021, 38.785587],\n              [-78.194923, 38.782691],\n              [-78.195569, 38.780618],\n              [-78.198186, 38.779042],\n              [-78.200012, 38.77704],\n              [-78.200767, 38.776673],\n              [-78.202197, 38.775981],\n              [-78.204681, 38.775018],\n              [-78.206723, 38.774088],\n              [-78.207883, 38.774376],\n              [-78.210358, 38.774833],\n              [-78.21218, 38.77477],\n              [-78.212472, 38.77476],\n              [-78.212678, 38.774716],\n              [-78.21551, 38.774075],\n              [-78.218373, 38.773016],\n              [-78.220117, 38.771949],\n              [-78.221534, 38.770608],\n              [-78.222569, 38.769461],\n              [-78.224241, 38.768072],\n              [-78.226663, 38.76802],\n              [-78.228091, 38.768558],\n              [-78.229161, 38.768937],\n              [-78.229821, 38.7692],\n              [-78.230118, 38.769134],\n              [-78.230404, 38.768971],\n              [-78.231386, 38.768498],\n              [-78.232113, 38.768187],\n              [-78.232544, 38.768096],\n              [-78.232945, 38.767925],\n              [-78.233448, 38.76771],\n              [-78.233884, 38.767499],\n              [-78.234242, 38.767392],\n              [-78.234519, 38.767278],\n              [-78.234774, 38.767123],\n              [-78.234977, 38.766864],\n              [-78.235077, 38.766589],\n              [-78.235147, 38.766314],\n              [-78.235145, 38.766128],\n              [-78.235163, 38.765918],\n              [-78.235254, 38.765724],\n              [-78.235488, 38.765529],\n              [-78.235959, 38.765325],\n              [-78.236215, 38.765259],\n              [-78.236377, 38.765016],\n              [-78.236447, 38.764765],\n              [-78.236752, 38.764384],\n              [-78.236976, 38.764205],\n              [-78.23718, 38.764043],\n              [-78.237435, 38.763831],\n              [-78.237524, 38.763508],\n              [-78.237653, 38.763023],\n              [-78.237762, 38.762635],\n              [-78.237934, 38.762327],\n              [-78.238117, 38.762108],\n              [-78.238331, 38.761954],\n              [-78.238607, 38.761855],\n              [-78.239153, 38.761973],\n              [-78.239678, 38.762067],\n              [-78.240192, 38.762097],\n              [-78.240634, 38.762151],\n              [-78.241066, 38.762132],\n              [-78.241384, 38.762155],\n              [-78.241848, 38.76229],\n              [-78.241965, 38.76237],\n              [-78.241988, 38.762385],\n              [-78.242272, 38.762578],\n              [-78.242686, 38.762858],\n              [-78.243088, 38.76305],\n              [-78.243316, 38.763202],\n              [-78.243583, 38.763176],\n              [-78.243801, 38.763057],\n              [-78.244043, 38.762923],\n              [-78.244166, 38.762856],\n              [-78.244338, 38.762655],\n              [-78.244675, 38.762427],\n              [-78.245135, 38.762199],\n              [-78.24586, 38.761694],\n              [-78.246237, 38.761369],\n              [-78.246469, 38.76094],\n              [-78.246649, 38.760455],\n              [-78.247085, 38.759928],\n              [-78.247433, 38.759724],\n              [-78.248843, 38.759088],\n              [-78.249059, 38.759061],\n              [-78.249724, 38.758899],\n              [-78.250346, 38.758833],\n              [-78.250582, 38.75876],\n              [-78.250911, 38.758621],\n              [-78.2511, 38.758498],\n              [-78.251268, 38.758388],\n              [-78.251555, 38.758202],\n              [-78.251879, 38.757869],\n              [-78.252002, 38.75775],\n              [-78.252339, 38.757477],\n              [-78.252616, 38.757235],\n              [-78.252872, 38.75705],\n              [-78.253271, 38.756994],\n              [-78.253712, 38.757059],\n              [-78.254214, 38.757172],\n              [-78.254522, 38.757365],\n              [-78.255035, 38.757591],\n              [-78.255373, 38.757768],\n              [-78.25565, 38.75801],\n              [-78.255713, 38.758085],\n              [-78.255809, 38.758198],\n              [-78.255865, 38.758265],\n              [-78.256071, 38.758509],\n              [-78.256492, 38.758992],\n              [-78.256943, 38.759282],\n              [-78.257722, 38.759403],\n              [-78.258347, 38.759404],\n              [-78.25928, 38.759307],\n              [-78.260458, 38.759083],\n              [-78.261308, 38.758842],\n              [-78.262098, 38.758617],\n              [-78.262369, 38.758558],\n              [-78.26278, 38.758468],\n              [-78.263543, 38.758392],\n              [-78.264219, 38.75844],\n              [-78.264895, 38.758529],\n              [-78.265449, 38.758602],\n              [-78.26551, 38.758626],\n              [-78.265818, 38.758747],\n              [-78.266126, 38.758948],\n              [-78.266454, 38.759295],\n              [-78.266752, 38.759641],\n              [-78.267131, 38.759955],\n              [-78.267706, 38.760398],\n              [-78.268055, 38.760583],\n              [-78.268465, 38.76068],\n              [-78.268998, 38.760769],\n              [-78.269387, 38.760874],\n              [-78.269859, 38.760978],\n              [-78.270382, 38.761301],\n              [-78.271049, 38.761567],\n              [-78.271346, 38.761671],\n              [-78.272043, 38.76176],\n              [-78.273222, 38.761938],\n              [-78.274391, 38.761938],\n              [-78.274455, 38.761937],\n              [-78.274995, 38.76193],\n              [-78.276215, 38.762237],\n              [-78.27744, 38.76201],\n              [-78.277455, 38.762008],\n              [-78.277919, 38.761968],\n              [-78.278659, 38.761997],\n              [-78.278967, 38.76199],\n              [-78.27947, 38.761932],\n              [-78.27987, 38.761803],\n              [-78.280597, 38.761503],\n              [-78.28157, 38.761105],\n              [-78.281877, 38.76096],\n              [-78.282075, 38.760869],\n              [-78.283048, 38.760436],\n              [-78.283447, 38.760194],\n              [-78.283693, 38.760041],\n              [-78.283949, 38.759921],\n              [-78.284441, 38.759832],\n              [-78.284768, 38.759494],\n              [-78.28488, 38.759237],\n              [-78.286226, 38.761153],\n              [-78.288383, 38.764188],\n              [-78.290253, 38.766957],\n              [-78.290922, 38.768228],\n              [-78.29123, 38.768928],\n              [-78.29116, 38.769605],\n              [-78.291216, 38.769708],\n              [-78.291235, 38.769744],\n              [-78.291448, 38.770356],\n              [-78.29148, 38.770417],\n              [-78.291585, 38.77068],\n              [-78.29162, 38.770806],\n              [-78.291634, 38.771009],\n              [-78.291627, 38.771108],\n              [-78.291585, 38.771388],\n              [-78.291627, 38.771734],\n              [-78.291613, 38.771888],\n              [-78.291585, 38.771998],\n              [-78.29155, 38.772102],\n              [-78.291501, 38.772217],\n              [-78.291339, 38.772481],\n              [-78.290855, 38.773046],\n              [-78.290722, 38.773216],\n              [-78.290645, 38.773326],\n              [-78.290322, 38.77382],\n              [-78.290301, 38.773842],\n              [-78.290154, 38.774062],\n              [-78.290091, 38.774177],\n              [-78.29002, 38.77433],\n              [-78.289929, 38.774627],\n              [-78.289852, 38.774814],\n              [-78.28974, 38.775066],\n              [-78.289655, 38.775225],\n              [-78.289564, 38.775379],\n              [-78.289501, 38.775467],\n              [-78.289333, 38.775824],\n              [-78.289319, 38.775878],\n              [-78.289312, 38.775955],\n              [-78.28939, 38.776542],\n              [-78.289568, 38.77704],\n              [-78.289569, 38.777368],\n              [-78.28964, 38.778058],\n              [-78.289638, 38.778339],\n              [-78.289755, 38.778905],\n              [-78.289871, 38.779142],\n              [-78.289944, 38.779292],\n              [-78.290185, 38.779981],\n              [-78.290747, 38.780569],\n              [-78.291118, 38.780824],\n              [-78.291782, 38.78128],\n              [-78.292253, 38.781545],\n              [-78.292726, 38.781769],\n              [-78.29309, 38.781941],\n              [-78.293412, 38.782132],\n              [-78.293532, 38.782209],\n              [-78.293812, 38.782452],\n              [-78.29404, 38.782747],\n              [-78.294044, 38.782752],\n              [-78.294304, 38.783019],\n              [-78.294495, 38.783385],\n              [-78.294881, 38.784006],\n              [-78.295235, 38.784224],\n              [-78.295446, 38.784169],\n              [-78.295746, 38.783886],\n              [-78.296005, 38.783814],\n              [-78.296772, 38.783829],\n              [-78.296954, 38.783862],\n              [-78.297192, 38.783917],\n              [-78.299442, 38.784602],\n              [-78.299744, 38.784839],\n              [-78.299952, 38.784736],\n              [-78.300617, 38.784278],\n              [-78.300993, 38.784166],\n              [-78.301401, 38.783906],\n              [-78.301721, 38.783866],\n              [-78.301917, 38.783899],\n              [-78.30244, 38.783966],\n              [-78.302703, 38.784097],\n              [-78.302894, 38.784182],\n              [-78.303139, 38.78425],\n              [-78.303366, 38.78417],\n              [-78.303508, 38.784244],\n              [-78.303606, 38.784452],\n              [-78.30367, 38.784555],\n              [-78.303715, 38.784582],\n              [-78.304815, 38.78504],\n              [-78.30521, 38.785374],\n              [-78.30555, 38.785605],\n              [-78.30711, 38.785724],\n              [-78.307468, 38.785768],\n              [-78.307685, 38.785801],\n              [-78.308057, 38.785888],\n              [-78.308668, 38.78585],\n              [-78.309109, 38.786114],\n              [-78.309195, 38.786161],\n              [-78.309363, 38.786444],\n              [-78.309544, 38.786652],\n              [-78.309666, 38.786781],\n              [-78.309825, 38.786806],\n              [-78.310207, 38.786713],\n              [-78.310413, 38.786701],\n              [-78.31054, 38.786707],\n              [-78.310764, 38.786745],\n              [-78.310883, 38.786794],\n              [-78.310947, 38.786816],\n              [-78.311136, 38.786904],\n              [-78.311402, 38.787107],\n              [-78.311515, 38.787184],\n              [-78.311599, 38.787217],\n              [-78.31176, 38.787261],\n              [-78.311936, 38.787288],\n              [-78.312097, 38.787305],\n              [-78.312216, 38.787332],\n              [-78.312721, 38.787497],\n              [-78.312882, 38.78753],\n              [-78.313044, 38.787557],\n              [-78.313612, 38.787684],\n              [-78.313794, 38.787777],\n              [-78.313921, 38.787826],\n              [-78.314089, 38.787876],\n              [-78.314215, 38.787903],\n              [-78.314454, 38.787931],\n              [-78.314622, 38.787942],\n              [-78.314699, 38.787958],\n              [-78.314748, 38.78798],\n              [-78.314854, 38.788046],\n              [-78.314945, 38.788117],\n              [-78.315001, 38.788167],\n              [-78.315113, 38.788249],\n              [-78.315352, 38.788359],\n              [-78.315562, 38.788425],\n              [-78.31585, 38.788491],\n              [-78.316116, 38.788584],\n              [-78.316193, 38.788628],\n              [-78.316404, 38.788776],\n              [-78.31646, 38.788831],\n              [-78.316482, 38.788838],\n              [-78.316558, 38.788919],\n              [-78.316663, 38.789007],\n              [-78.316783, 38.789095],\n              [-78.317084, 38.789259],\n              [-78.317442, 38.789408],\n              [-78.317765, 38.78949],\n              [-78.318171, 38.789517],\n              [-78.318726, 38.789528],\n              [-78.319048, 38.789501],\n              [-78.319203, 38.789462],\n              [-78.319259, 38.78944],\n              [-78.319385, 38.78938],\n              [-78.319403, 38.789367],\n              [-78.319532, 38.789314],\n              [-78.319588, 38.789303],\n              [-78.31968, 38.789292],\n              [-78.319771, 38.789298],\n              [-78.320023, 38.789352],\n              [-78.320185, 38.789374],\n              [-78.320676, 38.789396],\n              [-78.320956, 38.789418],\n              [-78.321146, 38.789457],\n              [-78.321342, 38.789534],\n              [-78.321447, 38.789594],\n              [-78.32156, 38.789671],\n              [-78.321714, 38.789824],\n              [-78.321777, 38.789879],\n              [-78.321945, 38.790066],\n              [-78.32217, 38.790286],\n              [-78.322471, 38.790511],\n              [-78.322626, 38.790598],\n              [-78.322892, 38.790736],\n              [-78.322998, 38.790807],\n              [-78.32311, 38.790895],\n              [-78.323306, 38.791087],\n              [-78.323419, 38.791252],\n              [-78.323517, 38.791367],\n              [-78.323538, 38.791378],\n              [-78.323601, 38.791427],\n              [-78.323692, 38.791471],\n              [-78.323853, 38.791532],\n              [-78.324155, 38.791614],\n              [-78.324345, 38.791652],\n              [-78.324492, 38.791674],\n              [-78.324597, 38.79168],\n              [-78.325228, 38.791691],\n              [-78.325895, 38.791669],\n              [-78.325965, 38.791674],\n              [-78.326042, 38.791691],\n              [-78.326126, 38.791724],\n              [-78.326168, 38.791745],\n              [-78.326239, 38.791767],\n              [-78.326309, 38.791773],\n              [-78.326372, 38.791767],\n              [-78.326498, 38.791729],\n              [-78.326709, 38.791614],\n              [-78.326786, 38.791592],\n              [-78.326891, 38.791586],\n              [-78.326982, 38.791592],\n              [-78.32708, 38.791619],\n              [-78.327129, 38.791641],\n              [-78.327384, 38.791778],\n              [-78.327634, 38.792194],\n              [-78.32802, 38.792399],\n              [-78.328049, 38.792404],\n              [-78.328092, 38.792405],\n              [-78.328544, 38.792417],\n              [-78.328843, 38.792605],\n              [-78.329012, 38.79262],\n              [-78.329255, 38.792731],\n              [-78.329851, 38.792975],\n              [-78.329969, 38.793015],\n              [-78.330155, 38.793256],\n              [-78.330844, 38.793462],\n              [-78.331627, 38.794528],\n              [-78.331725, 38.794643],\n              [-78.331788, 38.794731],\n              [-78.331886, 38.794918],\n              [-78.331935, 38.795],\n              [-78.331942, 38.795028],\n              [-78.331963, 38.795061],\n              [-78.332013, 38.795121],\n              [-78.33209, 38.795198],\n              [-78.332153, 38.795242],\n              [-78.332244, 38.795291],\n              [-78.332405, 38.79534],\n              [-78.332588, 38.795384],\n              [-78.332889, 38.795439],\n              [-78.333009, 38.795467],\n              [-78.33311, 38.795499],\n              [-78.333198, 38.795527],\n              [-78.333745, 38.795757],\n              [-78.333893, 38.795829],\n              [-78.333928, 38.79584],\n              [-78.334054, 38.795911],\n              [-78.334293, 38.796076],\n              [-78.334454, 38.796208],\n              [-78.334637, 38.796416],\n              [-78.334763, 38.796581],\n              [-78.334903, 38.796718],\n              [-78.335058, 38.796861],\n              [-78.33517, 38.796932],\n              [-78.33538, 38.797086],\n              [-78.335822, 38.797333],\n              [-78.335871, 38.797355],\n              [-78.335977, 38.797421],\n              [-78.336222, 38.797552],\n              [-78.336328, 38.797624],\n              [-78.336447, 38.797717],\n              [-78.336467, 38.797728],\n              [-78.336601, 38.79786],\n              [-78.336671, 38.797958],\n              [-78.336689, 38.797996],\n              [-78.336707, 38.798035],\n              [-78.336716, 38.79808],\n              [-78.336735, 38.798178],\n              [-78.336721, 38.798277],\n              [-78.3367, 38.798376],\n              [-78.33658, 38.798721],\n              [-78.336538, 38.798958],\n              [-78.336553, 38.799029],\n              [-78.336595, 38.799166],\n              [-78.33663, 38.799232],\n              [-78.336665, 38.799276],\n              [-78.336707, 38.799314],\n              [-78.336917, 38.799419],\n              [-78.336932, 38.799424],\n              [-78.337198, 38.799517],\n              [-78.337352, 38.799616],\n              [-78.337423, 38.799666],\n              [-78.337436, 38.799682],\n              [-78.337528, 38.799759],\n              [-78.337626, 38.799874],\n              [-78.33764, 38.799902],\n              [-78.337682, 38.799956],\n              [-78.337753, 38.800072],\n              [-78.337991, 38.8005],\n              [-78.338132, 38.80072],\n              [-78.338251, 38.800934],\n              [-78.338349, 38.801246],\n              [-78.338462, 38.801526],\n              [-78.338514, 38.801611],\n              [-78.338567, 38.801697],\n              [-78.338623, 38.801757],\n              [-78.338679, 38.80179],\n              [-78.338777, 38.801834],\n              [-78.339065, 38.801916],\n              [-78.339304, 38.802037],\n              [-78.339395, 38.802108],\n              [-78.339458, 38.802169],\n              [-78.339563, 38.802284],\n              [-78.339612, 38.802366],\n              [-78.339732, 38.802613],\n              [-78.33983, 38.802893],\n              [-78.3399, 38.803069],\n              [-78.339935, 38.80314],\n              [-78.339966, 38.803191],\n              [-78.340078, 38.803378],\n              [-78.340083, 38.803387],\n              [-78.340223, 38.803552],\n              [-78.3403, 38.803629],\n              [-78.340364, 38.803684],\n              [-78.340785, 38.803963],\n              [-78.340846, 38.803993],\n              [-78.340876, 38.804007],\n              [-78.340995, 38.804057],\n              [-78.341157, 38.804139],\n              [-78.341718, 38.804463],\n              [-78.341907, 38.804589],\n              [-78.342167, 38.804803],\n              [-78.342181, 38.804819],\n              [-78.342399, 38.80499],\n              [-78.342427, 38.805006],\n              [-78.342602, 38.805149],\n              [-78.342609, 38.805154],\n              [-78.342623, 38.805171],\n              [-78.342647, 38.805191],\n              [-78.342691, 38.805226],\n              [-78.342719, 38.805248],\n              [-78.342785, 38.805302],\n              [-78.343065, 38.805467],\n              [-78.343311, 38.805626],\n              [-78.343529, 38.805752],\n              [-78.343655, 38.805813],\n              [-78.343732, 38.80584],\n              [-78.343809, 38.805862],\n              [-78.343865, 38.805884],\n              [-78.344027, 38.805912],\n              [-78.344146, 38.805928],\n              [-78.344427, 38.805939],\n              [-78.3451, 38.805944],\n              [-78.345549, 38.805933],\n              [-78.34583, 38.805895],\n              [-78.34589, 38.805856],\n              [-78.345949, 38.805818],\n              [-78.346091, 38.805856],\n              [-78.346197, 38.805829],\n              [-78.346391, 38.805779],\n              [-78.346566, 38.805753],\n              [-78.346625, 38.805745],\n              [-78.34687, 38.805733],\n              [-78.3473, 38.805722],\n              [-78.347404, 38.805719],\n              [-78.34764, 38.805713],\n              [-78.347698, 38.805715],\n              [-78.347801, 38.805718],\n              [-78.3479, 38.805729],\n              [-78.348019, 38.805757],\n              [-78.348159, 38.805817],\n              [-78.348265, 38.805877],\n              [-78.34837, 38.805976],\n              [-78.348419, 38.806015],\n              [-78.348451, 38.80603],\n              [-78.348489, 38.806048],\n              [-78.348776, 38.806149],\n              [-78.348829, 38.806224],\n              [-78.348872, 38.806254],\n              [-78.348956, 38.806311],\n              [-78.349203, 38.806478],\n              [-78.349381, 38.806598],\n              [-78.349451, 38.806645],\n              [-78.349619, 38.806758],\n              [-78.349788, 38.806871],\n              [-78.349822, 38.806894],\n              [-78.350136, 38.807106],\n              [-78.350264, 38.807189],\n              [-78.350387, 38.807249],\n              [-78.350409, 38.807259],\n              [-78.351779, 38.808134],\n              [-78.359974, 38.813364],\n              [-78.360056, 38.813417],\n              [-78.366264, 38.817321],\n              [-78.366709, 38.817601],\n              [-78.367139, 38.817871],\n              [-78.378581, 38.825067],\n              [-78.378644, 38.825107],\n              [-78.386685, 38.83016]\n            ],\n            [\n              [-77.619031, 36.877851],\n              [-77.616206, 36.879209],\n              [-77.606771, 36.884094],\n              [-77.600964, 36.887124],\n              [-77.594965, 36.890254],\n              [-77.594081, 36.890715],\n              [-77.587133, 36.894342],\n              [-77.586292, 36.894781],\n              [-77.582882, 36.896562],\n              [-77.574928, 36.900726],\n              [-77.57453, 36.900948],\n              [-77.569216, 36.903554],\n              [-77.566874, 36.904885],\n              [-77.560868, 36.908014],\n              [-77.557926, 36.909547],\n              [-77.555821, 36.910641],\n              [-77.555534, 36.91079],\n              [-77.553021, 36.912101],\n              [-77.543031, 36.917313],\n              [-77.542486, 36.917512],\n              [-77.536064, 36.920892],\n              [-77.535396, 36.921243],\n              [-77.534265, 36.921836],\n              [-77.534221, 36.92186],\n              [-77.525674, 36.926362],\n              [-77.521866, 36.928312],\n              [-77.518309, 36.930185],\n              [-77.517858, 36.930441],\n              [-77.51122, 36.933852],\n              [-77.508593, 36.935204],\n              [-77.502305, 36.938517],\n              [-77.500973, 36.939207],\n              [-77.499706, 36.939885],\n              [-77.496345, 36.941541],\n              [-77.491098, 36.944307],\n              [-77.490856, 36.944433],\n              [-77.49012, 36.944822],\n              [-77.486225, 36.946767],\n              [-77.481076, 36.949441],\n              [-77.476035, 36.952062],\n              [-77.473468, 36.953398],\n              [-77.472943, 36.953672],\n              [-77.472869, 36.95371],\n              [-77.463354, 36.958666],\n              [-77.461117, 36.959833],\n              [-77.456419, 36.96232],\n              [-77.452137, 36.964587],\n              [-77.452131, 36.96459],\n              [-77.449411, 36.966029],\n              [-77.44549, 36.968106],\n              [-77.441989, 36.96996],\n              [-77.440146, 36.970939],\n              [-77.437683, 36.972247],\n              [-77.434507, 36.973935],\n              [-77.427773, 36.977513],\n              [-77.42774, 36.97753],\n              [-77.427039, 36.977902],\n              [-77.423376, 36.979848],\n              [-77.422005, 36.980577],\n              [-77.416777, 36.983376],\n              [-77.41527, 36.984287],\n              [-77.414755, 36.984482],\n              [-77.414546, 36.984652],\n              [-77.412944, 36.98537],\n              [-77.411721, 36.986102],\n              [-77.411629, 36.986147],\n              [-77.411504, 36.986209],\n              [-77.411367, 36.986325],\n              [-77.410179, 36.986863],\n              [-77.409458, 36.987239],\n              [-77.403108, 36.990588],\n              [-77.400343, 36.992021],\n              [-77.399497, 36.992466],\n              [-77.399351, 36.992541],\n              [-77.399083, 36.992684],\n              [-77.3985, 36.992992],\n              [-77.395134, 36.99446],\n              [-77.392723, 36.995561],\n              [-77.392537, 36.995646],\n              [-77.392501, 36.995663],\n              [-77.392465, 36.995679],\n              [-77.392362, 36.995726],\n              [-77.392316, 36.995747],\n              [-77.391816, 36.995975],\n              [-77.382386, 37.000157],\n              [-77.372911, 37.005315],\n              [-77.371767, 37.00594],\n              [-77.37141, 37.006134],\n              [-77.371221, 37.006237],\n              [-77.370946, 37.006373],\n              [-77.36985, 37.006916],\n              [-77.362233, 37.010688],\n              [-77.361001, 37.011295],\n              [-77.359163, 37.012264],\n              [-77.35802, 37.012861],\n              [-77.357939, 37.012899],\n              [-77.356673, 37.013501],\n              [-77.355092, 37.014253],\n              [-77.354864, 37.014372],\n              [-77.353314, 37.015152],\n              [-77.352432, 37.015597],\n              [-77.342959, 37.02028],\n              [-77.342787, 37.020365],\n              [-77.340378, 37.021556],\n              [-77.340278, 37.021606],\n              [-77.337297, 37.023072],\n              [-77.337175, 37.023144],\n              [-77.335699, 37.023866],\n              [-77.335529, 37.023947],\n              [-77.335299, 37.024061],\n              [-77.331643, 37.025846],\n              [-77.329174, 37.027075],\n              [-77.323521, 37.029902],\n              [-77.322563, 37.030381],\n              [-77.320096, 37.031634],\n              [-77.319424, 37.031972],\n              [-77.318863, 37.03225],\n              [-77.318479, 37.032441],\n              [-77.317925, 37.032714],\n              [-77.317829, 37.032763],\n              [-77.313955, 37.034685],\n              [-77.313916, 37.034704],\n              [-77.313868, 37.034728],\n              [-77.309451, 37.036892],\n              [-77.308291, 37.037458],\n              [-77.305738, 37.038764],\n              [-77.302328, 37.040512],\n              [-77.299634, 37.041885],\n              [-77.296315, 37.043506],\n              [-77.295872, 37.043722],\n              [-77.290691, 37.046252],\n              [-77.283806, 37.049678],\n              [-77.275921, 37.053596],\n              [-77.269133, 37.056861],\n              [-77.26593, 37.058415],\n              [-77.258545, 37.061884],\n              [-77.254925, 37.06363],\n              [-77.251565, 37.06525],\n              [-77.249696, 37.066151],\n              [-77.246553, 37.06777],\n              [-77.246484, 37.067781],\n              [-77.246391, 37.067854],\n              [-77.246084, 37.068011],\n              [-77.244518, 37.068753],\n              [-77.239063, 37.071523],\n              [-77.237985, 37.07207],\n              [-77.228735, 37.076768],\n              [-77.226532, 37.077893],\n              [-77.226488, 37.077915],\n              [-77.221378, 37.080511],\n              [-77.221082, 37.080661],\n              [-77.220854, 37.080777],\n              [-77.219873, 37.081276],\n              [-77.209826, 37.086319],\n              [-77.205309, 37.088602],\n              [-77.205088, 37.088714],\n              [-77.20291, 37.089823],\n              [-77.196691, 37.092965],\n              [-77.194241, 37.094568],\n              [-77.191776, 37.096205],\n              [-77.19002, 37.097359],\n              [-77.189071, 37.097993],\n              [-77.18704, 37.09894],\n              [-77.173442, 37.105245],\n              [-77.173167, 37.105373],\n              [-77.173097, 37.105398],\n              [-77.170539, 37.106356],\n              [-77.156951, 37.111467],\n              [-77.155417, 37.112041],\n              [-77.155768, 37.112317],\n              [-77.155978, 37.112667],\n              [-77.156092, 37.113186],\n              [-77.155969, 37.113954],\n              [-77.155941, 37.113975],\n              [-77.15509, 37.114617],\n              [-77.15111, 37.117619],\n              [-77.15101, 37.117695],\n              [-77.148833, 37.119362],\n              [-77.148671, 37.119463],\n              [-77.146263, 37.121292],\n              [-77.144922, 37.122297],\n              [-77.140975, 37.125265],\n              [-77.139394, 37.126456],\n              [-77.130596, 37.133076],\n              [-77.127136, 37.135638],\n              [-77.124772, 37.137371],\n              [-77.123849, 37.13799],\n              [-77.123736, 37.138115],\n              [-77.123714, 37.138139],\n              [-77.123361, 37.138438],\n              [-77.123354, 37.138444],\n              [-77.123344, 37.138452],\n              [-77.121639, 37.139895],\n              [-77.121618, 37.139913],\n              [-77.121589, 37.139938],\n              [-77.121086, 37.140363],\n              [-77.121026, 37.140415],\n              [-77.118553, 37.14256],\n              [-77.118524, 37.142585],\n              [-77.115242, 37.145432],\n              [-77.108808, 37.150959],\n              [-77.101161, 37.157553],\n              [-77.10078, 37.157881],\n              [-77.100422, 37.158194],\n              [-77.095681, 37.162245],\n              [-77.093904, 37.163767],\n              [-77.093612, 37.164013],\n              [-77.092981, 37.164566],\n              [-77.092259, 37.1652],\n              [-77.09225, 37.165208],\n              [-77.092236, 37.16522],\n              [-77.090988, 37.166314],\n              [-77.090024, 37.16716],\n              [-77.087778, 37.169078],\n              [-77.087128, 37.169085],\n              [-77.086528, 37.169314],\n              [-77.084841, 37.170848],\n              [-77.083897, 37.171077],\n              [-77.083297, 37.171077],\n              [-77.082239, 37.171306],\n              [-77.081123, 37.171696],\n              [-77.079007, 37.172611],\n              [-77.07815, 37.173161],\n              [-77.077063, 37.174031],\n              [-77.075547, 37.175564],\n              [-77.0751, 37.176278],\n              [-77.074661, 37.176983],\n              [-77.074204, 37.177922],\n              [-77.074119, 37.178693],\n              [-77.074118, 37.1787],\n              [-77.073321, 37.18276],\n              [-77.073318, 37.182774],\n              [-77.073147, 37.184079],\n              [-77.072975, 37.184422],\n              [-77.072746, 37.184605],\n              [-77.072722, 37.184612],\n              [-77.072715, 37.184614],\n              [-77.072589, 37.184648],\n              [-77.072174, 37.18472],\n              [-77.071701, 37.184742],\n              [-77.071651, 37.184744],\n              [-77.071202, 37.184765],\n              [-77.071097, 37.184804],\n              [-77.070949, 37.184859],\n              [-77.070086, 37.185178],\n              [-77.068027, 37.186345],\n              [-77.06607, 37.187748],\n              [-77.066058, 37.187756],\n              [-77.065878, 37.187885],\n              [-77.065281, 37.188313],\n              [-77.064022, 37.189023],\n              [-77.063279, 37.189298],\n              [-77.062788, 37.189411],\n              [-77.062755, 37.189419],\n              [-77.062432, 37.189493],\n              [-77.061982, 37.189596],\n              [-77.059589, 37.190145],\n              [-77.059125, 37.19049],\n              [-77.058929, 37.190636],\n              [-77.058792, 37.190738],\n              [-77.058657, 37.19081],\n              [-77.058444, 37.190923],\n              [-77.058361, 37.190906],\n              [-77.058267, 37.190887],\n              [-77.058237, 37.190881],\n              [-77.05823, 37.190879],\n              [-77.058214, 37.190876],\n              [-77.057214, 37.190671],\n              [-77.055956, 37.190648],\n              [-77.052379, 37.191106],\n              [-77.051796, 37.191267],\n              [-77.051756, 37.191278],\n              [-77.051738, 37.191283],\n              [-77.051703, 37.191293],\n              [-77.051622, 37.191315],\n              [-77.050805, 37.19154],\n              [-77.048774, 37.192295],\n              [-77.048088, 37.192273],\n              [-77.047487, 37.192021],\n              [-77.0466, 37.191403],\n              [-77.046057, 37.191448],\n              [-77.045313, 37.192181],\n              [-77.044712, 37.192387],\n              [-77.043997, 37.192432],\n              [-77.043367, 37.192798],\n              [-77.042795, 37.193508],\n              [-77.042765, 37.193566],\n              [-77.042652, 37.193782],\n              [-77.042758, 37.194764],\n              [-77.042907, 37.195278],\n              [-77.042909, 37.195285],\n              [-77.042912, 37.195294],\n              [-77.043013, 37.195549],\n              [-77.043015, 37.195554],\n              [-77.04316, 37.195919],\n              [-77.043749, 37.19656],\n              [-77.04391, 37.196735],\n              [-77.044711, 37.197353],\n              [-77.045912, 37.198086],\n              [-77.046313, 37.198521],\n              [-77.046284, 37.19907],\n              [-77.04554, 37.200214],\n              [-77.045483, 37.200443],\n              [-77.04469, 37.20155],\n              [-77.04467, 37.201577],\n              [-77.044342, 37.202013],\n              [-77.043942, 37.202221],\n              [-77.043935, 37.202224],\n              [-77.043817, 37.202285],\n              [-77.043413, 37.202285],\n              [-77.043402, 37.202276],\n              [-77.042564, 37.201593],\n              [-77.042026, 37.201505],\n              [-77.04158, 37.201497],\n              [-77.041523, 37.201497],\n              [-77.04116, 37.201492],\n              [-77.040384, 37.20169],\n              [-77.040377, 37.201692],\n              [-77.040369, 37.201694],\n              [-77.039503, 37.201915],\n              [-77.038739, 37.201933],\n              [-77.038731, 37.201933],\n              [-77.038136, 37.201947],\n              [-77.037645, 37.201882],\n              [-77.037472, 37.201792],\n              [-77.037071, 37.201838],\n              [-77.036842, 37.201975],\n              [-77.036642, 37.202273],\n              [-77.036384, 37.203051],\n              [-77.036098, 37.203257],\n              [-77.035612, 37.203348],\n              [-77.035011, 37.203234],\n              [-77.034124, 37.202959],\n              [-77.033809, 37.202707],\n              [-77.033781, 37.201631],\n              [-77.033467, 37.200166],\n              [-77.033267, 37.199823],\n              [-77.032437, 37.198953],\n              [-77.031493, 37.198678],\n              [-77.031121, 37.198793],\n              [-77.030663, 37.199456],\n              [-77.030635, 37.199891],\n              [-77.030262, 37.200875],\n              [-77.029947, 37.201287],\n              [-77.029604, 37.201584],\n              [-77.029089, 37.201813],\n              [-77.028459, 37.201905],\n              [-77.028145, 37.201744],\n              [-77.027687, 37.201355],\n              [-77.027601, 37.201103],\n              [-77.027463, 37.200463],\n              [-77.027299, 37.2001],\n              [-77.026825, 37.20003],\n              [-77.026291, 37.200097],\n              [-77.025568, 37.200415],\n              [-77.024907, 37.200734],\n              [-77.024795, 37.200789],\n              [-77.024071, 37.201035],\n              [-77.023852, 37.201351],\n              [-77.023787, 37.202062],\n              [-77.023838, 37.20341],\n              [-77.023968, 37.204662],\n              [-77.024164, 37.205637],\n              [-77.024178, 37.205703],\n              [-77.024266, 37.206607],\n              [-77.023947, 37.207117],\n              [-77.023445, 37.207386],\n              [-77.022841, 37.207445],\n              [-77.021783, 37.207385],\n              [-77.020331, 37.20731],\n              [-77.01927, 37.207016],\n              [-77.018442, 37.206858],\n              [-77.017879, 37.206965],\n              [-77.017619, 37.207265],\n              [-77.016951, 37.208229],\n              [-77.01656, 37.208505],\n              [-77.015664, 37.208687],\n              [-77.014941, 37.209085],\n              [-77.014462, 37.209652],\n              [-77.014312, 37.20982],\n              [-77.014236, 37.209905],\n              [-77.013672, 37.210543],\n              [-77.01218, 37.211737],\n              [-77.011782, 37.212417],\n              [-77.011775, 37.212789],\n              [-77.011842, 37.213003],\n              [-77.012002, 37.213515],\n              [-77.012745, 37.214311],\n              [-77.013823, 37.215615],\n              [-77.014521, 37.215968],\n              [-77.015461, 37.216303],\n              [-77.016845, 37.216677],\n              [-77.018061, 37.217415],\n              [-77.018703, 37.218349],\n              [-77.018813, 37.2196],\n              [-77.017842, 37.221696],\n              [-77.016765, 37.223244],\n              [-77.015751, 37.223846],\n              [-77.014303, 37.224312],\n              [-77.01346, 37.224768],\n              [-77.013141, 37.225181],\n              [-77.013124, 37.225585],\n              [-77.013319, 37.226093],\n              [-77.013666, 37.226633],\n              [-77.014158, 37.227656],\n              [-77.014241, 37.228019],\n              [-77.014206, 37.228674],\n              [-77.013655, 37.230405],\n              [-77.012732, 37.232379],\n              [-77.012303, 37.23289],\n              [-77.01163, 37.23324],\n              [-77.010763, 37.233308],\n              [-77.009188, 37.232983],\n              [-77.008196, 37.232446],\n              [-77.006385, 37.23167],\n              [-77.004853, 37.231677],\n              [-77.003818, 37.232069],\n              [-77.003429, 37.232676],\n              [-77.003185, 37.233743],\n              [-77.002542, 37.236702],\n              [-77.002177, 37.23785],\n              [-77.00173, 37.2387],\n              [-77.000665, 37.239237],\n              [-76.999691, 37.239257],\n              [-76.999219, 37.239097],\n              [-76.998897, 37.238985],\n              [-76.998736, 37.238768],\n              [-76.998453, 37.238043],\n              [-76.99797, 37.237302],\n              [-76.996059, 37.23641],\n              [-76.994913, 37.236315],\n              [-76.993487, 37.236527],\n              [-76.991912, 37.237109],\n              [-76.990307, 37.238175],\n              [-76.983226, 37.24235],\n              [-76.981417, 37.243418],\n              [-76.972441, 37.248508],\n              [-76.969591, 37.246228],\n              [-76.965636, 37.244052],\n              [-76.964384, 37.243736],\n              [-76.960116, 37.242068],\n              [-76.956177, 37.2404],\n              [-76.952239, 37.23901],\n              [-76.948628, 37.237342],\n              [-76.946001, 37.235952],\n              [-76.943703, 37.234562],\n              [-76.941404, 37.233172],\n              [-76.939726, 37.232134],\n              [-76.938035, 37.231088],\n              [-76.936283, 37.229977],\n              [-76.933666, 37.229017],\n              [-76.929461, 37.227475],\n              [-76.921571, 37.225347],\n              [-76.917083, 37.224372],\n              [-76.910176, 37.223416],\n              [-76.904764, 37.223117],\n              [-76.900139, 37.222946],\n              [-76.895928, 37.222959],\n              [-76.889713, 37.223079],\n              [-76.884231, 37.222996],\n              [-76.883158, 37.223064],\n              [-76.878864, 37.22334],\n              [-76.874686, 37.223631],\n              [-76.861852, 37.223989],\n              [-76.851482, 37.22435],\n              [-76.844391, 37.224552],\n              [-76.835038, 37.224896],\n              [-76.831085, 37.224915],\n              [-76.827223, 37.22495],\n              [-76.823442, 37.224945],\n              [-76.818513, 37.224625],\n              [-76.815527, 37.22408],\n              [-76.812491, 37.223456],\n              [-76.808932, 37.222354],\n              [-76.804873, 37.220196],\n              [-76.801679, 37.217853],\n              [-76.798837, 37.215205],\n              [-76.797742, 37.214094],\n              [-76.795725, 37.212048],\n              [-76.791557, 37.207571],\n              [-76.791178, 37.207163],\n              [-76.785478, 37.201051],\n              [-76.781731, 37.19715],\n              [-76.781244, 37.196642],\n              [-76.781166, 37.196563],\n              [-76.77727, 37.192653],\n              [-76.773528, 37.188857],\n              [-76.769706, 37.185287],\n              [-76.765954, 37.181821],\n              [-76.760316, 37.176806],\n              [-76.75632, 37.174259],\n              [-76.753128, 37.172687],\n              [-76.749682, 37.171597],\n              [-76.74797, 37.171482],\n              [-76.745474, 37.171306],\n              [-76.743554, 37.171178],\n              [-76.741346, 37.171258],\n              [-76.739506, 37.171322],\n              [-76.737858, 37.17145],\n              [-76.736066, 37.171706],\n              [-76.734946, 37.171962],\n              [-76.733234, 37.172378],\n              [-76.732657, 37.172549],\n              [-76.731938, 37.172762],\n              [-76.73053, 37.173498],\n              [-76.728514, 37.17481],\n              [-76.726882, 37.176266],\n              [-76.726257, 37.177031],\n              [-76.725745, 37.177658],\n              [-76.724753, 37.17929],\n              [-76.723937, 37.181258],\n              [-76.723936, 37.181258],\n              [-76.723029, 37.183382],\n              [-76.722993, 37.183466],\n              [-76.721937, 37.186074],\n              [-76.721217, 37.187674],\n              [-76.721505, 37.189114],\n              [-76.721153, 37.189994],\n              [-76.720353, 37.191194],\n              [-76.718497, 37.194298],\n              [-76.718466, 37.194354],\n              [-76.717265, 37.196554],\n              [-76.715057, 37.199146],\n              [-76.712849, 37.201594],\n              [-76.710961, 37.202986],\n              [-76.708833, 37.204682],\n              [-76.705633, 37.206442],\n              [-76.701665, 37.208154],\n              [-76.697312, 37.209706],\n              [-76.691808, 37.210874],\n              [-76.689888, 37.210969],\n              [-76.686784, 37.210953],\n              [-76.683088, 37.210969],\n              [-76.679744, 37.210937],\n              [-76.677661, 37.210701],\n              [-76.676352, 37.210553],\n              [-76.673088, 37.209689],\n              [-76.6708, 37.208953],\n              [-76.668768, 37.208121],\n              [-76.666793, 37.207283],\n              [-76.666016, 37.206953],\n              [-76.663503, 37.205833],\n              [-76.660447, 37.204153],\n              [-76.658829, 37.203052],\n              [-76.658143, 37.202585],\n              [-76.655663, 37.200969],\n              [-76.652447, 37.198825],\n              [-76.650175, 37.196985],\n              [-76.649497, 37.196409],\n              [-76.648031, 37.195161],\n              [-76.646175, 37.193737],\n              [-76.644879, 37.192169],\n              [-76.643679, 37.190345],\n              [-76.642847, 37.188793],\n              [-76.642927, 37.187545],\n              [-76.642655, 37.185881],\n              [-76.642303, 37.178777],\n              [-76.642047, 37.169529],\n              [-76.641615, 37.155194],\n              [-76.641583, 37.153834],\n              [-76.67159, 37.142067],\n              [-76.671776, 37.141994],\n              [-76.671929, 37.141928],\n              [-76.672264, 37.141783],\n              [-76.672736, 37.141578],\n              [-76.673328, 37.141274],\n              [-76.673792, 37.140986],\n              [-76.674144, 37.140698],\n              [-76.674704, 37.140154],\n              [-76.675424, 37.13905],\n              [-76.675712, 37.138346],\n              [-76.67584, 37.137658],\n              [-76.675824, 37.136986],\n              [-76.675744, 37.136506],\n              [-76.675504, 37.13601],\n              [-76.675136, 37.13553],\n              [-76.674656, 37.13505],\n              [-76.673056, 37.134154],\n              [-76.672608, 37.133882],\n              [-76.672432, 37.133674],\n              [-76.672416, 37.133498],\n              [-76.672528, 37.132986],\n              [-76.672656, 37.132778],\n              [-76.673056, 37.13265],\n              [-76.673952, 37.132538],\n              [-76.674944, 37.132378],\n              [-76.675824, 37.132154],\n              [-76.676416, 37.131866],\n              [-76.67712, 37.131466],\n              [-76.67768, 37.131034],\n              [-76.678224, 37.13041],\n              [-76.679008, 37.129114],\n              [-76.679116, 37.128953],\n              [-76.679808, 37.12793],\n              [-76.680128, 37.127226],\n              [-76.680256, 37.126762],\n              [-76.680288, 37.126298],\n              [-76.680176, 37.125722],\n              [-76.680032, 37.125146],\n              [-76.68016, 37.12409],\n              [-76.680192, 37.12353],\n              [-76.680096, 37.122794],\n              [-76.679872, 37.121722],\n              [-76.679792, 37.12113],\n              [-76.679792, 37.121082],\n              [-76.679808, 37.120634],\n              [-76.679856, 37.119882],\n              [-76.679968, 37.119194],\n              [-76.680016, 37.118554],\n              [-76.680048, 37.118106],\n              [-76.679968, 37.11769],\n              [-76.679904, 37.117578],\n              [-76.679472, 37.116938],\n              [-76.6792, 37.116442],\n              [-76.679008, 37.115898],\n              [-76.678608, 37.115434],\n              [-76.678304, 37.115226],\n              [-76.678048, 37.115082],\n              [-76.677936, 37.11505],\n              [-76.677712, 37.114938],\n              [-76.67744, 37.114794],\n              [-76.677168, 37.114554],\n              [-76.677088, 37.114458],\n              [-76.67704, 37.114298],\n              [-76.677136, 37.11393],\n              [-76.677408, 37.113642],\n              [-76.677952, 37.113226],\n              [-76.678656, 37.112874],\n              [-76.679104, 37.112634],\n              [-76.67936, 37.112218],\n              [-76.679392, 37.111882],\n              [-76.67938, 37.111726],\n              [-76.67936, 37.111434],\n              [-76.6792, 37.111226],\n              [-76.678848, 37.111002],\n              [-76.678496, 37.110458],\n              [-76.678176, 37.110154],\n              [-76.678016, 37.11001],\n              [-76.677792, 37.109818],\n              [-76.677472, 37.109674],\n              [-76.676896, 37.109434],\n              [-76.676496, 37.109306],\n              [-76.676128, 37.109242],\n              [-76.675936, 37.10921],\n              [-76.675728, 37.109194],\n              [-76.675504, 37.10913],\n              [-76.675408, 37.109066],\n              [-76.675328, 37.108954],\n              [-76.675168, 37.10865],\n              [-76.675184, 37.108378],\n              [-76.675296, 37.108106],\n              [-76.675504, 37.107914],\n              [-76.675872, 37.107578],\n              [-76.6764, 37.106842],\n              [-76.676464, 37.106458],\n              [-76.677056, 37.105274],\n              [-76.677392, 37.104714],\n              [-76.67768, 37.104474],\n              [-76.677968, 37.104186],\n              [-76.678432, 37.104058],\n              [-76.679008, 37.10441],\n              [-76.679232, 37.105274],\n              [-76.679456, 37.105914],\n              [-76.679872, 37.106266],\n              [-76.680096, 37.10649],\n              [-76.680672, 37.10681],\n              [-76.68112, 37.10689],\n              [-76.681408, 37.106746],\n              [-76.681744, 37.106426],\n              [-76.682128, 37.105818],\n              [-76.682624, 37.105034],\n              [-76.683424, 37.104378],\n              [-76.684032, 37.104058],\n              [-76.684192, 37.103898],\n              [-76.684256, 37.103466],\n              [-76.684192, 37.103178],\n              [-76.68384, 37.10281],\n              [-76.683456, 37.102426],\n              [-76.683152, 37.102234],\n              [-76.682976, 37.101978],\n              [-76.682784, 37.101306],\n              [-76.682528, 37.100666],\n              [-76.682272, 37.099898],\n              [-76.682144, 37.099322],\n              [-76.68208, 37.098666],\n              [-76.68232, 37.098458],\n              [-76.68312, 37.098042],\n              [-76.683664, 37.097818],\n              [-76.684064, 37.097434],\n              [-76.684144, 37.097018],\n              [-76.684016, 37.096858],\n              [-76.683776, 37.096426],\n              [-76.683616, 37.09593],\n              [-76.683232, 37.095514],\n              [-76.68256, 37.095034],\n              [-76.681936, 37.094522],\n              [-76.681792, 37.094234],\n              [-76.681696, 37.093786],\n              [-76.682144, 37.093403],\n              [-76.683232, 37.093003],\n              [-76.68384, 37.092635],\n              [-76.684048, 37.092443],\n              [-76.684272, 37.092155],\n              [-76.68432, 37.091803],\n              [-76.684, 37.091291],\n              [-76.683824, 37.090843],\n              [-76.683904, 37.090427],\n              [-76.684128, 37.090075],\n              [-76.684224, 37.089499],\n              [-76.68432, 37.089003],\n              [-76.684352, 37.088475],\n              [-76.68448, 37.088171],\n              [-76.684928, 37.087979],\n              [-76.685777, 37.087963],\n              [-76.686433, 37.087851],\n              [-76.687041, 37.087675],\n              [-76.687681, 37.087419],\n              [-76.687873, 37.087323],\n              [-76.687969, 37.087083],\n              [-76.687809, 37.086555],\n              [-76.687777, 37.086027],\n              [-76.687855, 37.085966],\n              [-76.687921, 37.085915],\n              [-76.688385, 37.085563],\n              [-76.689025, 37.085339],\n              [-76.689777, 37.085131],\n              [-76.690513, 37.085403],\n              [-76.691089, 37.085467],\n              [-76.691585, 37.085339],\n              [-76.692593, 37.085067],\n              [-76.693249, 37.084763],\n              [-76.693378, 37.084729],\n              [-76.69342, 37.084719],\n              [-76.693729, 37.084635],\n              [-76.694433, 37.084171],\n              [-76.694977, 37.083739],\n              [-76.695233, 37.083547],\n              [-76.695649, 37.083291],\n              [-76.695457, 37.082875],\n              [-76.695073, 37.082475],\n              [-76.694305, 37.082267],\n              [-76.693761, 37.082171],\n              [-76.693409, 37.081883],\n              [-76.693297, 37.081419],\n              [-76.693409, 37.080459],\n              [-76.693729, 37.079755],\n              [-76.694129, 37.079067],\n              [-76.694401, 37.078331],\n              [-76.694753, 37.077531],\n              [-76.695009, 37.076667],\n              [-76.694641, 37.076139],\n              [-76.694225, 37.075835],\n              [-76.693569, 37.075307],\n              [-76.693457, 37.075147],\n              [-76.693324, 37.074845],\n              [-76.693233, 37.074347],\n              [-76.693169, 37.074059],\n              [-76.693393, 37.073563],\n              [-76.694017, 37.073195],\n              [-76.694465, 37.072891],\n              [-76.695153, 37.072667],\n              [-76.695809, 37.072651],\n              [-76.696161, 37.072571],\n              [-76.696817, 37.071851],\n              [-76.697185, 37.071003],\n              [-76.697777, 37.070299],\n              [-76.698433, 37.069579],\n              [-76.698929, 37.068955],\n              [-76.699153, 37.068747],\n              [-76.699841, 37.067867],\n              [-76.700753, 37.066939],\n              [-76.701185, 37.066203],\n              [-76.701153, 37.065291],\n              [-76.700993, 37.064331],\n              [-76.700657, 37.063579],\n              [-76.699969, 37.062859],\n              [-76.698881, 37.062171],\n              [-76.697969, 37.061275],\n              [-76.697617, 37.060491],\n              [-76.697633, 37.059803],\n              [-76.698257, 37.059147],\n              [-76.699313, 37.058427],\n              [-76.701681, 37.057211],\n              [-76.702881, 37.056779],\n              [-76.704129, 37.056891],\n              [-76.705089, 37.056347],\n              [-76.705601, 37.055931],\n              [-76.706209, 37.055755],\n              [-76.706229, 37.055759],\n              [-76.706945, 37.055931],\n              [-76.707633, 37.056331],\n              [-76.708129, 37.056507],\n              [-76.708929, 37.056475],\n              [-76.709537, 37.056459],\n              [-76.709857, 37.056331],\n              [-76.710177, 37.055931],\n              [-76.710401, 37.055483],\n              [-76.710721, 37.055259],\n              [-76.710902, 37.055298],\n              [-76.711457, 37.055419],\n              [-76.711777, 37.055387],\n              [-76.712401, 37.054971],\n              [-76.712978, 37.054843],\n              [-76.713586, 37.054715],\n              [-76.714306, 37.054395],\n              [-76.71527, 37.053994],\n              [-76.722162, 37.051138],\n              [-76.729755, 37.04813],\n              [-76.733682, 37.046521],\n              [-76.738791, 37.044436],\n              [-76.741602, 37.043291],\n              [-76.748194, 37.040583],\n              [-76.748321, 37.040531],\n              [-76.748351, 37.040519],\n              [-76.748419, 37.040491],\n              [-76.749683, 37.039966],\n              [-76.749764, 37.03992],\n              [-76.763179, 37.034373],\n              [-76.763405, 37.03428],\n              [-76.767661, 37.032525],\n              [-76.771011, 37.03114],\n              [-76.771097, 37.031106],\n              [-76.771588, 37.030914],\n              [-76.774167, 37.02984],\n              [-76.774556, 37.029679],\n              [-76.77547, 37.029301],\n              [-76.779229, 37.027676],\n              [-76.779841, 37.027411],\n              [-76.790927, 37.022569],\n              [-76.791088, 37.022499],\n              [-76.796429, 37.020169],\n              [-76.796638, 37.020078],\n              [-76.796846, 37.019987],\n              [-76.79752, 37.019693],\n              [-76.801042, 37.01815],\n              [-76.807334, 37.01541],\n              [-76.809572, 37.014435],\n              [-76.818955, 37.010345],\n              [-76.819074, 37.010293],\n              [-76.822799, 37.00871],\n              [-76.825669, 37.00749],\n              [-76.825901, 37.007388],\n              [-76.831641, 37.004855],\n              [-76.835664, 37.00308],\n              [-76.837583, 37.002244],\n              [-76.841602, 37.000163],\n              [-76.842866, 36.999547],\n              [-76.845246, 36.998386],\n              [-76.847668, 36.997204],\n              [-76.849142, 36.996484],\n              [-76.849686, 36.996218],\n              [-76.850553, 36.995779],\n              [-76.850631, 36.99574],\n              [-76.850697, 36.995706],\n              [-76.851851, 36.995122],\n              [-76.854982, 36.993525],\n              [-76.856242, 36.992911],\n              [-76.86384, 36.989206],\n              [-76.870707, 36.985673],\n              [-76.871841, 36.98508],\n              [-76.874623, 36.983644],\n              [-76.875895, 36.983009],\n              [-76.875985, 36.982965],\n              [-76.885132, 36.978464],\n              [-76.887442, 36.977328],\n              [-76.890302, 36.975818],\n              [-76.892956, 36.974486],\n              [-76.89314, 36.974395],\n              [-76.896906, 36.972526],\n              [-76.904399, 36.968796],\n              [-76.90686, 36.967546],\n              [-76.910512, 36.96573],\n              [-76.916094, 36.962943],\n              [-76.918647, 36.961669],\n              [-76.920678, 36.960662],\n              [-76.920823, 36.96059],\n              [-76.921045, 36.960479],\n              [-76.944177, 36.94894],\n              [-76.944393, 36.948832],\n              [-76.952272, 36.94509],\n              [-76.95301, 36.944745],\n              [-76.953321, 36.944572],\n              [-76.953403, 36.944531],\n              [-76.953423, 36.94452],\n              [-76.953482, 36.94449],\n              [-76.953548, 36.944457],\n              [-76.953785, 36.94434],\n              [-76.957481, 36.942506],\n              [-76.961191, 36.940663],\n              [-76.964197, 36.938919],\n              [-76.96481, 36.938567],\n              [-76.966432, 36.937766],\n              [-76.966739, 36.937614],\n              [-76.966967, 36.937501],\n              [-76.967236, 36.937368],\n              [-76.968388, 36.936797],\n              [-76.968897, 36.936545],\n              [-76.969029, 36.936479],\n              [-76.969106, 36.93644],\n              [-76.971436, 36.93526],\n              [-76.975496, 36.933205],\n              [-76.982592, 36.929616],\n              [-76.989131, 36.926581],\n              [-76.994368, 36.92415],\n              [-76.998429, 36.922265],\n              [-76.999606, 36.921719],\n              [-76.999685, 36.921681],\n              [-77.002105, 36.920754],\n              [-77.002148, 36.920733],\n              [-77.008169, 36.917547],\n              [-77.008275, 36.917491],\n              [-77.018385, 36.912204],\n              [-77.020667, 36.911026],\n              [-77.021719, 36.910482],\n              [-77.025736, 36.908358],\n              [-77.027017, 36.907684],\n              [-77.027133, 36.907623],\n              [-77.028458, 36.907007],\n              [-77.029517, 36.906418],\n              [-77.031251, 36.905529],\n              [-77.031356, 36.905475],\n              [-77.031462, 36.905421],\n              [-77.031762, 36.905251],\n              [-77.038869, 36.901239],\n              [-77.043628, 36.898711],\n              [-77.043689, 36.898679],\n              [-77.051531, 36.894532],\n              [-77.051539, 36.894528],\n              [-77.056871, 36.89154],\n              [-77.06992, 36.884573],\n              [-77.071151, 36.883914],\n              [-77.073702, 36.88255],\n              [-77.085927, 36.87619],\n              [-77.087917, 36.87516],\n              [-77.090621, 36.873661],\n              [-77.090724, 36.873603],\n              [-77.091565, 36.873174],\n              [-77.094212, 36.871826],\n              [-77.097826, 36.869986],\n              [-77.099534, 36.869114],\n              [-77.113839, 36.861826],\n              [-77.11981, 36.858766],\n              [-77.121795, 36.857748],\n              [-77.123608, 36.856842],\n              [-77.124691, 36.856292],\n              [-77.128303, 36.854533],\n              [-77.133015, 36.85224],\n              [-77.134095, 36.851726],\n              [-77.138719, 36.849471],\n              [-77.142286, 36.847731],\n              [-77.148457, 36.844728],\n              [-77.163735, 36.837345],\n              [-77.167277, 36.835634],\n              [-77.179084, 36.829867],\n              [-77.179244, 36.829788],\n              [-77.17991, 36.829464],\n              [-77.189565, 36.824762],\n              [-77.195471, 36.82188],\n              [-77.197924, 36.820693],\n              [-77.207273, 36.816138],\n              [-77.210626, 36.814507],\n              [-77.218701, 36.810611],\n              [-77.221044, 36.809481],\n              [-77.224443, 36.80782],\n              [-77.226045, 36.80705],\n              [-77.239096, 36.800663],\n              [-77.249705, 36.795556],\n              [-77.252459, 36.794301],\n              [-77.25663, 36.792402],\n              [-77.256977, 36.792244],\n              [-77.258176, 36.791698],\n              [-77.258762, 36.791494],\n              [-77.260767, 36.790618],\n              [-77.267344, 36.787611],\n              [-77.274377, 36.784429],\n              [-77.279113, 36.782287],\n              [-77.279514, 36.782107],\n              [-77.279847, 36.781957],\n              [-77.286906, 36.778764],\n              [-77.288974, 36.777831],\n              [-77.31145, 36.767665],\n              [-77.312307, 36.767279],\n              [-77.312845, 36.767035],\n              [-77.313139, 36.766902],\n              [-77.314078, 36.766478],\n              [-77.316186, 36.765525],\n              [-77.318078, 36.76467],\n              [-77.323858, 36.762058],\n              [-77.324235, 36.761888],\n              [-77.324914, 36.761579],\n              [-77.325192, 36.761456],\n              [-77.325212, 36.76143],\n              [-77.32525, 36.761429],\n              [-77.325325, 36.761395],\n              [-77.330089, 36.759242],\n              [-77.330349, 36.759124],\n              [-77.334703, 36.757156],\n              [-77.339672, 36.75491],\n              [-77.3448, 36.752593],\n              [-77.345117, 36.752422],\n              [-77.349324, 36.75016],\n              [-77.350933, 36.749434],\n              [-77.359581, 36.74493],\n              [-77.363185, 36.743053],\n              [-77.369254, 36.739919],\n              [-77.374698, 36.737124],\n              [-77.377705, 36.735539],\n              [-77.377994, 36.735399],\n              [-77.382868, 36.732819],\n              [-77.387736, 36.730254],\n              [-77.397049, 36.725349],\n              [-77.405107, 36.721082],\n              [-77.406009, 36.7206],\n              [-77.406831, 36.720169],\n              [-77.407147, 36.720001],\n              [-77.411931, 36.717444],\n              [-77.413202, 36.71684],\n              [-77.414837, 36.715953],\n              [-77.414895, 36.715923],\n              [-77.418481, 36.714055],\n              [-77.418488, 36.714051],\n              [-77.418594, 36.713996],\n              [-77.418782, 36.713898],\n              [-77.419022, 36.713751],\n              [-77.419266, 36.713601],\n              [-77.419692, 36.713368],\n              [-77.430129, 36.707665],\n              [-77.430379, 36.708178],\n              [-77.430692, 36.708635],\n              [-77.431516, 36.709688],\n              [-77.432255, 36.710626],\n              [-77.433422, 36.711427],\n              [-77.43399, 36.71161],\n              [-77.434814, 36.711633],\n              [-77.435724, 36.711473],\n              [-77.436974, 36.710992],\n              [-77.438083, 36.710741],\n              [-77.439532, 36.709985],\n              [-77.439873, 36.710031],\n              [-77.439987, 36.710123],\n              [-77.439959, 36.710535],\n              [-77.439675, 36.710878],\n              [-77.439078, 36.71129],\n              [-77.439049, 36.711656],\n              [-77.439504, 36.711953],\n              [-77.439981, 36.711981],\n              [-77.440744, 36.711768],\n              [-77.441067, 36.711679],\n              [-77.441124, 36.71161],\n              [-77.442119, 36.711381],\n              [-77.442773, 36.711381],\n              [-77.447121, 36.71193],\n              [-77.447917, 36.71225],\n              [-77.448912, 36.712822],\n              [-77.449395, 36.713005],\n              [-77.449735, 36.713028],\n              [-77.449822, 36.71312],\n              [-77.450959, 36.713302],\n              [-77.451226, 36.713407],\n              [-77.45184, 36.713646],\n              [-77.452352, 36.713829],\n              [-77.452977, 36.713714],\n              [-77.453687, 36.713348],\n              [-77.454341, 36.713187],\n              [-77.454995, 36.713164],\n              [-77.455536, 36.71337],\n              [-77.455991, 36.713805],\n              [-77.456417, 36.714606],\n              [-77.456759, 36.71488],\n              [-77.457213, 36.714995],\n              [-77.458976, 36.715177],\n              [-77.460113, 36.715406],\n              [-77.463296, 36.715291],\n              [-77.46466, 36.715085],\n              [-77.467304, 36.715221],\n              [-77.46773, 36.715381],\n              [-77.468811, 36.716113],\n              [-77.469465, 36.716822],\n              [-77.469892, 36.717692],\n              [-77.470375, 36.718332],\n              [-77.471313, 36.718996],\n              [-77.472508, 36.719384],\n              [-77.473303, 36.71927],\n              [-77.474014, 36.719041],\n              [-77.474582, 36.719086],\n              [-77.47572, 36.719749],\n              [-77.476289, 36.719726],\n              [-77.477369, 36.719566],\n              [-77.478705, 36.719634],\n              [-77.479359, 36.719862],\n              [-77.481037, 36.720869],\n              [-77.481862, 36.721669],\n              [-77.482402, 36.721875],\n              [-77.483596, 36.722058],\n              [-77.48425, 36.72192],\n              [-77.485188, 36.721462],\n              [-77.486495, 36.72153],\n              [-77.487177, 36.721484],\n              [-77.48749, 36.721392],\n              [-77.488257, 36.720843],\n              [-77.48874, 36.720659],\n              [-77.489422, 36.72075],\n              [-77.490001, 36.721016],\n              [-77.489028, 36.725533],\n              [-77.487739, 36.731198],\n              [-77.487015, 36.734446],\n              [-77.486165, 36.73823],\n              [-77.48472, 36.744758],\n              [-77.483566, 36.750156],\n              [-77.483211, 36.751719],\n              [-77.483031, 36.752536],\n              [-77.482227, 36.756078],\n              [-77.482142, 36.756453],\n              [-77.482041, 36.756901],\n              [-77.481163, 36.760811],\n              [-77.480894, 36.76206],\n              [-77.480263, 36.765029],\n              [-77.480213, 36.765274],\n              [-77.480206, 36.765305],\n              [-77.480112, 36.765743],\n              [-77.480036, 36.766103],\n              [-77.47998, 36.766316],\n              [-77.479925, 36.766553],\n              [-77.479468, 36.768562],\n              [-77.478587, 36.772433],\n              [-77.478191, 36.774173],\n              [-77.476565, 36.781371],\n              [-77.476532, 36.781519],\n              [-77.476454, 36.781885],\n              [-77.476289, 36.782625],\n              [-77.47586, 36.784582],\n              [-77.47556, 36.785954],\n              [-77.475395, 36.786706],\n              [-77.475386, 36.786745],\n              [-77.475384, 36.786755],\n              [-77.474134, 36.792467],\n              [-77.474127, 36.7925],\n              [-77.473521, 36.795265],\n              [-77.472834, 36.798399],\n              [-77.472751, 36.798777],\n              [-77.472432, 36.800229],\n              [-77.472287, 36.800847],\n              [-77.471821, 36.802859],\n              [-77.471806, 36.802921],\n              [-77.471449, 36.804472],\n              [-77.471213, 36.805486],\n              [-77.471004, 36.806372],\n              [-77.470981, 36.806488],\n              [-77.470909, 36.806804],\n              [-77.470439, 36.808897],\n              [-77.470277, 36.809592],\n              [-77.470139, 36.810186],\n              [-77.470127, 36.810239],\n              [-77.469982, 36.810863],\n              [-77.469501, 36.812945],\n              [-77.469078, 36.814792],\n              [-77.468758, 36.816206],\n              [-77.467469, 36.821791],\n              [-77.467429, 36.821971],\n              [-77.466857, 36.82466],\n              [-77.466578, 36.825964],\n              [-77.465968, 36.828811],\n              [-77.462429, 36.845386],\n              [-77.461473, 36.849877],\n              [-77.461469, 36.849894],\n              [-77.461455, 36.84996],\n              [-77.459501, 36.85911],\n              [-77.458938, 36.861765],\n              [-77.458915, 36.861872],\n              [-77.45868, 36.86297],\n              [-77.45905, 36.862878],\n              [-77.459516, 36.862669],\n              [-77.466254, 36.861366],\n              [-77.46782, 36.861228],\n              [-77.471263, 36.861651],\n              [-77.472462, 36.861799],\n              [-77.473146, 36.861684],\n              [-77.475196, 36.861134],\n              [-77.475632, 36.86091],\n              [-77.475822, 36.860813],\n              [-77.476505, 36.860241],\n              [-77.477445, 36.859943],\n              [-77.477758, 36.859714],\n              [-77.478071, 36.859142],\n              [-77.478583, 36.858684],\n              [-77.479494, 36.858272],\n              [-77.482199, 36.85644],\n              [-77.484533, 36.854425],\n              [-77.486184, 36.853349],\n              [-77.486211, 36.853142],\n              [-77.487847, 36.851003],\n              [-77.489629, 36.849505],\n              [-77.491245, 36.848481],\n              [-77.493142, 36.847736],\n              [-77.493169, 36.847726],\n              [-77.493728, 36.847508],\n              [-77.497, 36.846613],\n              [-77.499706, 36.845574],\n              [-77.501222, 36.845084],\n              [-77.503272, 36.84504],\n              [-77.503841, 36.845109],\n              [-77.504781, 36.845224],\n              [-77.505977, 36.845248],\n              [-77.508768, 36.84502],\n              [-77.509053, 36.844997],\n              [-77.509878, 36.844997],\n              [-77.510362, 36.845089],\n              [-77.511102, 36.845547],\n              [-77.512184, 36.846783],\n              [-77.513208, 36.847402],\n              [-77.514489, 36.847951],\n              [-77.518503, 36.849188],\n              [-77.519917, 36.849418],\n              [-77.520221, 36.849468],\n              [-77.520453, 36.849506],\n              [-77.52061, 36.849532],\n              [-77.523684, 36.850426],\n              [-77.525934, 36.850884],\n              [-77.526702, 36.85125],\n              [-77.528639, 36.852372],\n              [-77.529778, 36.852853],\n              [-77.531031, 36.852944],\n              [-77.53365, 36.852716],\n              [-77.536583, 36.852785],\n              [-77.539003, 36.853037],\n              [-77.54037, 36.8529],\n              [-77.541224, 36.852763],\n              [-77.541765, 36.852763],\n              [-77.543075, 36.853107],\n              [-77.543417, 36.853084],\n              [-77.544698, 36.852924],\n              [-77.544801, 36.852893],\n              [-77.545723, 36.852626],\n              [-77.546321, 36.852329],\n              [-77.548141, 36.850935],\n              [-77.549401, 36.850216],\n              [-77.549896, 36.849933],\n              [-77.551475, 36.849034],\n              [-77.552187, 36.848348],\n              [-77.552813, 36.847181],\n              [-77.553725, 36.846242],\n              [-77.55532, 36.845579],\n              [-77.5568, 36.845464],\n              [-77.55754, 36.845579],\n              [-77.560729, 36.847043],\n              [-77.560997, 36.847202],\n              [-77.562155, 36.847887],\n              [-77.562442, 36.848057],\n              [-77.56277, 36.848252],\n              [-77.564149, 36.848899],\n              [-77.564247, 36.848977],\n              [-77.565854, 36.850407],\n              [-77.566224, 36.850864],\n              [-77.566338, 36.851276],\n              [-77.566367, 36.852329],\n              [-77.56668, 36.852809],\n              [-77.567278, 36.853107],\n              [-77.568019, 36.85329],\n              [-77.568466, 36.853172],\n              [-77.571521, 36.852077],\n              [-77.57246, 36.851573],\n              [-77.572916, 36.851459],\n              [-77.573029, 36.851275],\n              [-77.573627, 36.851024],\n              [-77.574616, 36.850994],\n              [-77.576279, 36.851518],\n              [-77.576447, 36.851572],\n              [-77.577323, 36.852412],\n              [-77.577359, 36.852739],\n              [-77.577827, 36.852977],\n              [-77.578897, 36.854206],\n              [-77.579096, 36.854432],\n              [-77.579239, 36.855302],\n              [-77.579537, 36.855681],\n              [-77.57978, 36.855988],\n              [-77.58015, 36.856308],\n              [-77.580336, 36.856358],\n              [-77.58337, 36.857183],\n              [-77.5842, 36.85752],\n              [-77.584883, 36.85811],\n              [-77.585401, 36.858455],\n              [-77.586501, 36.85919],\n              [-77.586615, 36.85919],\n              [-77.586643, 36.859373],\n              [-77.586926, 36.85967],\n              [-77.587755, 36.861135],\n              [-77.588032, 36.862231],\n              [-77.588097, 36.862485],\n              [-77.588126, 36.863309],\n              [-77.588753, 36.864384],\n              [-77.588724, 36.864498],\n              [-77.588924, 36.864681],\n              [-77.589095, 36.865048],\n              [-77.590348, 36.866329],\n              [-77.590861, 36.866717],\n              [-77.591374, 36.867381],\n              [-77.591517, 36.867747],\n              [-77.592144, 36.868456],\n              [-77.592942, 36.868936],\n              [-77.594053, 36.869966],\n              [-77.594339, 36.870675],\n              [-77.594737, 36.871087],\n              [-77.595991, 36.871681],\n              [-77.5977, 36.872115],\n              [-77.599437, 36.872],\n              [-77.600387, 36.871841],\n              [-77.601625, 36.871624],\n              [-77.603338, 36.871152],\n              [-77.603708, 36.870878],\n              [-77.604306, 36.870603],\n              [-77.604733, 36.870648],\n              [-77.605275, 36.870946],\n              [-77.605319, 36.871029],\n              [-77.60554, 36.871438],\n              [-77.605476, 36.872354],\n              [-77.605475, 36.872364],\n              [-77.605361, 36.872845],\n              [-77.604365, 36.874104],\n              [-77.604053, 36.874666],\n              [-77.604107, 36.875156],\n              [-77.604189, 36.875517],\n              [-77.606156, 36.877276],\n              [-77.606668, 36.877414],\n              [-77.609146, 36.877069],\n              [-77.610712, 36.87668],\n              [-77.61282, 36.875878],\n              [-77.613739, 36.875844],\n              [-77.614757, 36.876037],\n              [-77.615343, 36.876272],\n              [-77.615954, 36.876517],\n              [-77.616951, 36.877066],\n              [-77.61809, 36.877477],\n              [-77.618489, 36.877523],\n              [-77.618602, 36.877684],\n              [-77.619031, 36.877851]\n            ],\n            [\n              [-76.755513, 37.354227],\n              [-76.755479, 37.354332],\n              [-76.755403, 37.354392],\n              [-76.755183, 37.354518],\n              [-76.755049, 37.354602],\n              [-76.755041, 37.354607],\n              [-76.754832, 37.354738],\n              [-76.754749, 37.354809],\n              [-76.754652, 37.354974],\n              [-76.754501, 37.355155],\n              [-76.754439, 37.355331],\n              [-76.754404, 37.355737],\n              [-76.754335, 37.355869],\n              [-76.754191, 37.356012],\n              [-76.753681, 37.356308],\n              [-76.753206, 37.356506],\n              [-76.752628, 37.356698],\n              [-76.752243, 37.356846],\n              [-76.752064, 37.356939],\n              [-76.751671, 37.357225],\n              [-76.751465, 37.357389],\n              [-76.751258, 37.357626],\n              [-76.750934, 37.358686],\n              [-76.750789, 37.359103],\n              [-76.750665, 37.3594],\n              [-76.750513, 37.35968],\n              [-76.750238, 37.36007],\n              [-76.749685, 37.360599],\n              [-76.748743, 37.360989],\n              [-76.748165, 37.361187],\n              [-76.747876, 37.361303],\n              [-76.747635, 37.361429],\n              [-76.747071, 37.361776],\n              [-76.746893, 37.361875],\n              [-76.746714, 37.361957],\n              [-76.746177, 37.362282],\n              [-76.745943, 37.362474],\n              [-76.745826, 37.362633],\n              [-76.745703, 37.362881],\n              [-76.745627, 37.363183],\n              [-76.745579, 37.363458],\n              [-76.745552, 37.363705],\n              [-76.745463, 37.36415],\n              [-76.745412, 37.364352],\n              [-76.745312, 37.364751],\n              [-76.74531, 37.364758],\n              [-76.745257, 37.364968],\n              [-76.745184, 37.36514],\n              [-76.745168, 37.365177],\n              [-76.745065, 37.365293],\n              [-76.744975, 37.365413],\n              [-76.744927, 37.365622],\n              [-76.744907, 37.365639],\n              [-76.744865, 37.365705],\n              [-76.744769, 37.365765],\n              [-76.744563, 37.365831],\n              [-76.744301, 37.365936],\n              [-76.744074, 37.366101],\n              [-76.743889, 37.366298],\n              [-76.743448, 37.367281],\n              [-76.743445, 37.367287],\n              [-76.743264, 37.367662],\n              [-76.743043, 37.368125],\n              [-76.743044, 37.368201],\n              [-76.743046, 37.368276],\n              [-76.743046, 37.368279],\n              [-76.743049, 37.368431],\n              [-76.743049, 37.368436],\n              [-76.743057, 37.368863],\n              [-76.742835, 37.369153],\n              [-76.742796, 37.369204],\n              [-76.74278, 37.369225],\n              [-76.742785, 37.369287],\n              [-76.742804, 37.369507],\n              [-76.742529, 37.369666],\n              [-76.742485, 37.369716],\n              [-76.742384, 37.369831],\n              [-76.742247, 37.370117],\n              [-76.742082, 37.370265],\n              [-76.741813, 37.370403],\n              [-76.741669, 37.370447],\n              [-76.74138, 37.370453],\n              [-76.741139, 37.370557],\n              [-76.741029, 37.370574],\n              [-76.740974, 37.370568],\n              [-76.74076, 37.370508],\n              [-76.740698, 37.370508],\n              [-76.740581, 37.37053],\n              [-76.740403, 37.370607],\n              [-76.740258, 37.37064],\n              [-76.739907, 37.370624],\n              [-76.739721, 37.37064],\n              [-76.739556, 37.370684],\n              [-76.739033, 37.370932],\n              [-76.738827, 37.370992],\n              [-76.737829, 37.371092],\n              [-76.737457, 37.371191],\n              [-76.737285, 37.371218],\n              [-76.737023, 37.371229],\n              [-76.736397, 37.371213],\n              [-76.736067, 37.371235],\n              [-76.735909, 37.371263],\n              [-76.735792, 37.371301],\n              [-76.735042, 37.371604],\n              [-76.73478, 37.371648],\n              [-76.734473, 37.37165],\n              [-76.734023, 37.371653],\n              [-76.733851, 37.371648],\n              [-76.733686, 37.371665],\n              [-76.733562, 37.371654],\n              [-76.73328, 37.371665],\n              [-76.732639, 37.37166],\n              [-76.731972, 37.371632],\n              [-76.731566, 37.371605],\n              [-76.730313, 37.371567],\n              [-76.729962, 37.371523],\n              [-76.729535, 37.371386],\n              [-76.72926, 37.371375],\n              [-76.729087, 37.371326],\n              [-76.728791, 37.371178],\n              [-76.728688, 37.371145],\n              [-76.728468, 37.371112],\n              [-76.728014, 37.371128],\n              [-76.727787, 37.371167],\n              [-76.727408, 37.371233],\n              [-76.727105, 37.371255],\n              [-76.726899, 37.371233],\n              [-76.726733, 37.371184],\n              [-76.726713, 37.371162],\n              [-76.726665, 37.371145],\n              [-76.726417, 37.370997],\n              [-76.726307, 37.370964],\n              [-76.726217, 37.370953],\n              [-76.725871, 37.370614],\n              [-76.725513, 37.369477],\n              [-76.725211, 37.369078],\n              [-76.724199, 37.369023],\n              [-76.724012, 37.369034],\n              [-76.722022, 37.36915],\n              [-76.721298, 37.369192],\n              [-76.719825, 37.36921],\n              [-76.719644, 37.369131],\n              [-76.719543, 37.369087],\n              [-76.719443, 37.369043],\n              [-76.718933, 37.368818],\n              [-76.718465, 37.367924],\n              [-76.718409, 37.367817],\n              [-76.718085, 37.36749],\n              [-76.717779, 37.36718],\n              [-76.717294, 37.366689],\n              [-76.716657, 37.366428],\n              [-76.716491, 37.366462],\n              [-76.715975, 37.366569],\n              [-76.715849, 37.366584],\n              [-76.715625, 37.366578],\n              [-76.715423, 37.366573],\n              [-76.715336, 37.366555],\n              [-76.715264, 37.36654],\n              [-76.71514, 37.366485],\n              [-76.715092, 37.366448],\n              [-76.71501, 37.366386],\n              [-76.714858, 37.366188],\n              [-76.714762, 37.366128],\n              [-76.714631, 37.366095],\n              [-76.714473, 37.366084],\n              [-76.714177, 37.366117],\n              [-76.713805, 37.366057],\n              [-76.713027, 37.366024],\n              [-76.712387, 37.366013],\n              [-76.712208, 37.36598],\n              [-76.71205, 37.365898],\n              [-76.711926, 37.365783],\n              [-76.711898, 37.365766],\n              [-76.711713, 37.365717],\n              [-76.711615, 37.36571],\n              [-76.71154, 37.365706],\n              [-76.711437, 37.365678],\n              [-76.711162, 37.365673],\n              [-76.710701, 37.365756],\n              [-76.710584, 37.365745],\n              [-76.710391, 37.365679],\n              [-76.710212, 37.365558],\n              [-76.709964, 37.365305],\n              [-76.709833, 37.365201],\n              [-76.709703, 37.365173],\n              [-76.709558, 37.365168],\n              [-76.709131, 37.365245],\n              [-76.708719, 37.36525],\n              [-76.708588, 37.365322],\n              [-76.708471, 37.365349],\n              [-76.70834, 37.365333],\n              [-76.708264, 37.365338],\n              [-76.708079, 37.365421],\n              [-76.707975, 37.365415],\n              [-76.707803, 37.365366],\n              [-76.707693, 37.365355],\n              [-76.707617, 37.365388],\n              [-76.707583, 37.365421],\n              [-76.707473, 37.365586],\n              [-76.707432, 37.365613],\n              [-76.707356, 37.365641],\n              [-76.707308, 37.365619],\n              [-76.707081, 37.365564],\n              [-76.706785, 37.365454],\n              [-76.706613, 37.365465],\n              [-76.706351, 37.365592],\n              [-76.706241, 37.365624],\n              [-76.706151, 37.365608],\n              [-76.706034, 37.365531],\n              [-76.70589, 37.365377],\n              [-76.705731, 37.365262],\n              [-76.705663, 37.365224],\n              [-76.705546, 37.365196],\n              [-76.70536, 37.365207],\n              [-76.70514, 37.365301],\n              [-76.705002, 37.365389],\n              [-76.704946, 37.365487],\n              [-76.705025, 37.365786],\n              [-76.704981, 37.365892],\n              [-76.704814, 37.365945],\n              [-76.704516, 37.365948],\n              [-76.704076, 37.365867],\n              [-76.703806, 37.365958],\n              [-76.703523, 37.366046],\n              [-76.703282, 37.366041],\n              [-76.703076, 37.365944],\n              [-76.702929, 37.3659],\n              [-76.702629, 37.365982],\n              [-76.701961, 37.366225],\n              [-76.701644, 37.366293],\n              [-76.701451, 37.366395],\n              [-76.701302, 37.366454],\n              [-76.701142, 37.366463],\n              [-76.700928, 37.366374],\n              [-76.700801, 37.36627],\n              [-76.700426, 37.366148],\n              [-76.700211, 37.366038],\n              [-76.700102, 37.365926],\n              [-76.700117, 37.36582],\n              [-76.70021, 37.365585],\n              [-76.700216, 37.365479],\n              [-76.700091, 37.365452],\n              [-76.699907, 37.36554],\n              [-76.699683, 37.365826],\n              [-76.699428, 37.366311],\n              [-76.699383, 37.366637],\n              [-76.69944, 37.366827],\n              [-76.699764, 37.367049],\n              [-76.700003, 37.367427],\n              [-76.699921, 37.367704],\n              [-76.698751, 37.368089],\n              [-76.698336, 37.368166],\n              [-76.697938, 37.3682],\n              [-76.697732, 37.368118],\n              [-76.697815, 37.367869],\n              [-76.69815, 37.36739],\n              [-76.69842, 37.36716],\n              [-76.698638, 37.367008],\n              [-76.698794, 37.366872],\n              [-76.698783, 37.366759],\n              [-76.698603, 37.366641],\n              [-76.698196, 37.366307],\n              [-76.697887, 37.365937],\n              [-76.697416, 37.365894],\n              [-76.697116, 37.365934],\n              [-76.695965, 37.366007],\n              [-76.695613, 37.365949],\n              [-76.695394, 37.365592],\n              [-76.695128, 37.365282],\n              [-76.694799, 37.365141],\n              [-76.694502, 37.365169],\n              [-76.694323, 37.365332],\n              [-76.694281, 37.365578],\n              [-76.694385, 37.365959],\n              [-76.69439, 37.366158],\n              [-76.69421, 37.36626],\n              [-76.693807, 37.366243],\n              [-76.693557, 37.366208],\n              [-76.693148, 37.366382],\n              [-76.69281, 37.366693],\n              [-76.692652, 37.366902],\n              [-76.692586, 37.366979],\n              [-76.692519, 37.367057],\n              [-76.692584, 37.367214],\n              [-76.692749, 37.367249],\n              [-76.693007, 37.367208],\n              [-76.693249, 37.367152],\n              [-76.69331, 37.367132],\n              [-76.693609, 37.367045],\n              [-76.693865, 37.366952],\n              [-76.69413, 37.366839],\n              [-76.694426, 37.36682],\n              [-76.694475, 37.366932],\n              [-76.694447, 37.367009],\n              [-76.694413, 37.367101],\n              [-76.694276, 37.367272],\n              [-76.69405, 37.367466],\n              [-76.694004, 37.367517],\n              [-76.693959, 37.367569],\n              [-76.693807, 37.367725],\n              [-76.693673, 37.367813],\n              [-76.693522, 37.367973],\n              [-76.693326, 37.368054],\n              [-76.693138, 37.368042],\n              [-76.692962, 37.367928],\n              [-76.692812, 37.367732],\n              [-76.692744, 37.367667],\n              [-76.692677, 37.367602],\n              [-76.692586, 37.367545],\n              [-76.692496, 37.367489],\n              [-76.692407, 37.367475],\n              [-76.692337, 37.367465],\n              [-76.692318, 37.367462],\n              [-76.692267, 37.367454],\n              [-76.69187, 37.367419],\n              [-76.691513, 37.367405],\n              [-76.691119, 37.367422],\n              [-76.690958, 37.367383],\n              [-76.690774, 37.367367],\n              [-76.690656, 37.367339],\n              [-76.690612, 37.367249],\n              [-76.690619, 37.367148],\n              [-76.690696, 37.367035],\n              [-76.690836, 37.366973],\n              [-76.691191, 37.366889],\n              [-76.691556, 37.366827],\n              [-76.691813, 37.366764],\n              [-76.691975, 37.366671],\n              [-76.69208, 37.366516],\n              [-76.692346, 37.366021],\n              [-76.692441, 37.365769],\n              [-76.692376, 37.365604],\n              [-76.692118, 37.365598],\n              [-76.691939, 37.365776],\n              [-76.691758, 37.365876],\n              [-76.691539, 37.365997],\n              [-76.691202, 37.365949],\n              [-76.690974, 37.365917],\n              [-76.69075, 37.365858],\n              [-76.690728, 37.365852],\n              [-76.690544, 37.365865],\n              [-76.690435, 37.365915],\n              [-76.690404, 37.366179],\n              [-76.690428, 37.366697],\n              [-76.690249, 37.366895],\n              [-76.69008, 37.367035],\n              [-76.689643, 37.367217],\n              [-76.689377, 37.367367],\n              [-76.689271, 37.367525],\n              [-76.689386, 37.367748],\n              [-76.689601, 37.368039],\n              [-76.689891, 37.368416],\n              [-76.690032, 37.368678],\n              [-76.689974, 37.368845],\n              [-76.68977, 37.369043],\n              [-76.689441, 37.369097],\n              [-76.689283, 37.369177],\n              [-76.68914, 37.369336],\n              [-76.689046, 37.369533],\n              [-76.688858, 37.369526],\n              [-76.688344, 37.369357],\n              [-76.687335, 37.369137],\n              [-76.687076, 37.369092],\n              [-76.686806, 37.369056],\n              [-76.686475, 37.369032],\n              [-76.686183, 37.369114],\n              [-76.685956, 37.369371],\n              [-76.685887, 37.369588],\n              [-76.685657, 37.369718],\n              [-76.684643, 37.36982],\n              [-76.68358, 37.369972],\n              [-76.683361, 37.370015],\n              [-76.683091, 37.369989],\n              [-76.682904, 37.369845],\n              [-76.682895, 37.369811],\n              [-76.682864, 37.369689],\n              [-76.682856, 37.369337],\n              [-76.683044, 37.368425],\n              [-76.683089, 37.368259],\n              [-76.68316, 37.368179],\n              [-76.683376, 37.367961],\n              [-76.683435, 37.367843],\n              [-76.683419, 37.367667],\n              [-76.683218, 37.367465],\n              [-76.682958, 37.367332],\n              [-76.682242, 37.367097],\n              [-76.681494, 37.367049],\n              [-76.681048, 37.36685],\n              [-76.680591, 37.366681],\n              [-76.680297, 37.366656],\n              [-76.680015, 37.366669],\n              [-76.679848, 37.366867],\n              [-76.679848, 37.367405],\n              [-76.679662, 37.367848],\n              [-76.67929, 37.368195],\n              [-76.678711, 37.368585],\n              [-76.678385, 37.368814],\n              [-76.677982, 37.368888],\n              [-76.676938, 37.368971],\n              [-76.676491, 37.369007],\n              [-76.676053, 37.369034],\n              [-76.675684, 37.369003],\n              [-76.675622, 37.368963],\n              [-76.675437, 37.368842],\n              [-76.675258, 37.36858],\n              [-76.675112, 37.368365],\n              [-76.675055, 37.368219],\n              [-76.674966, 37.367992],\n              [-76.674794, 37.367792],\n              [-76.674243, 37.367597],\n              [-76.674153, 37.367603],\n              [-76.67399, 37.367613],\n              [-76.673937, 37.367617],\n              [-76.673828, 37.367624],\n              [-76.673637, 37.367636],\n              [-76.673613, 37.367638],\n              [-76.673188, 37.367863],\n              [-76.673182, 37.367866],\n              [-76.67311, 37.367904],\n              [-76.673099, 37.36791],\n              [-76.67309, 37.367915],\n              [-76.673049, 37.367936],\n              [-76.673029, 37.367947],\n              [-76.672971, 37.368017],\n              [-76.67289, 37.368116],\n              [-76.672754, 37.36828],\n              [-76.672538, 37.368543],\n              [-76.672533, 37.368549],\n              [-76.672479, 37.368614],\n              [-76.672164, 37.368997],\n              [-76.671714, 37.369376],\n              [-76.671707, 37.369382],\n              [-76.671661, 37.369421],\n              [-76.671608, 37.369465],\n              [-76.670826, 37.370135],\n              [-76.670765, 37.370187],\n              [-76.670704, 37.37024],\n              [-76.664973, 37.375151],\n              [-76.658653, 37.380146],\n              [-76.654401, 37.377462],\n              [-76.650738, 37.375151],\n              [-76.650509, 37.374989],\n              [-76.650093, 37.374693],\n              [-76.649675, 37.374397],\n              [-76.649522, 37.374289],\n              [-76.648128, 37.372426],\n              [-76.648057, 37.372331],\n              [-76.647455, 37.371529],\n              [-76.646972, 37.370779],\n              [-76.646707, 37.370367],\n              [-76.64516, 37.367964],\n              [-76.644846, 37.367457],\n              [-76.644385, 37.366714],\n              [-76.642949, 37.364398],\n              [-76.642778, 37.36411],\n              [-76.641746, 37.362379],\n              [-76.641277, 37.361592],\n              [-76.640802, 37.360794],\n              [-76.640264, 37.359891],\n              [-76.639652, 37.358864],\n              [-76.639307, 37.35839],\n              [-76.637279, 37.355602],\n              [-76.63533, 37.353598],\n              [-76.63354, 37.351758],\n              [-76.632435, 37.350623],\n              [-76.632129, 37.350259],\n              [-76.629382, 37.346998],\n              [-76.628518, 37.345791],\n              [-76.626664, 37.343202],\n              [-76.624678, 37.340321],\n              [-76.623519, 37.339175],\n              [-76.623486, 37.339145],\n              [-76.621491, 37.337314],\n              [-76.619921, 37.336067],\n              [-76.619625, 37.335832],\n              [-76.618092, 37.334632],\n              [-76.616327, 37.333094],\n              [-76.615066, 37.331595],\n              [-76.613481, 37.329686],\n              [-76.612249, 37.327914],\n              [-76.611683, 37.32669],\n              [-76.611061, 37.325663],\n              [-76.610531, 37.324789],\n              [-76.608974, 37.322862],\n              [-76.607252, 37.32093],\n              [-76.606196, 37.31981],\n              [-76.604942, 37.318481],\n              [-76.602852, 37.316239],\n              [-76.602621, 37.315992],\n              [-76.600756, 37.314083],\n              [-76.600715, 37.314045],\n              [-76.599386, 37.312798],\n              [-76.599229, 37.312651],\n              [-76.598497, 37.312071],\n              [-76.597765, 37.31149],\n              [-76.59745, 37.311239],\n              [-76.597134, 37.310989],\n              [-76.59682, 37.310741],\n              [-76.596506, 37.310492],\n              [-76.596011, 37.310099],\n              [-76.595516, 37.309707],\n              [-76.595416, 37.309628],\n              [-76.59537, 37.309591],\n              [-76.595225, 37.309476],\n              [-76.59075, 37.305929],\n              [-76.588957, 37.304599],\n              [-76.586199, 37.302686],\n              [-76.585981, 37.302535],\n              [-76.583411, 37.301031],\n              [-76.580109, 37.299255],\n              [-76.576733, 37.296903],\n              [-76.575783, 37.295977],\n              [-76.5735, 37.293751],\n              [-76.571401, 37.290887],\n              [-76.57126, 37.290695],\n              [-76.56998, 37.289111],\n              [-76.568812, 37.287991],\n              [-76.566604, 37.286359],\n              [-76.564805, 37.285352],\n              [-76.563916, 37.284855],\n              [-76.56126, 37.283543],\n              [-76.557212, 37.282359],\n              [-76.555053, 37.281595],\n              [-76.554917, 37.281547],\n              [-76.554851, 37.281523],\n              [-76.554646, 37.281451],\n              [-76.553324, 37.280983],\n              [-76.551156, 37.279918],\n              [-76.549612, 37.279159],\n              [-76.546653, 37.277524],\n              [-76.546308, 37.277333],\n              [-76.545964, 37.277143],\n              [-76.545791, 37.277061],\n              [-76.544684, 37.276535],\n              [-76.542351, 37.2751],\n              [-76.542108, 37.274951],\n              [-76.539691, 37.273335],\n              [-76.536412, 37.271126],\n              [-76.533468, 37.268234],\n              [-76.53317, 37.267941],\n              [-76.533081, 37.267854],\n              [-76.533072, 37.267845],\n              [-76.532694, 37.267473],\n              [-76.532635, 37.267415],\n              [-76.530091, 37.264599],\n              [-76.529505, 37.263768],\n              [-76.529267, 37.263431],\n              [-76.529029, 37.263093],\n              [-76.528523, 37.262375],\n              [-76.526894, 37.260541],\n              [-76.525693, 37.259425],\n              [-76.524492, 37.25831],\n              [-76.524459, 37.258279],\n              [-76.522911, 37.256933],\n              [-76.521755, 37.255927],\n              [-76.520283, 37.254583],\n              [-76.518811, 37.252663],\n              [-76.517131, 37.250183],\n              [-76.516884, 37.249862],\n              [-76.516491, 37.249351],\n              [-76.516059, 37.248759],\n              [-76.515925, 37.248657],\n              [-76.515791, 37.248554],\n              [-76.514717, 37.247736],\n              [-76.512591, 37.246377],\n              [-76.510129, 37.245082],\n              [-76.50698, 37.243596],\n              [-76.506423, 37.243434],\n              [-76.506314, 37.243399],\n              [-76.501941, 37.241763],\n              [-76.499252, 37.241111],\n              [-76.498874, 37.241015],\n              [-76.497753, 37.240738],\n              [-76.49577, 37.240247],\n              [-76.491034, 37.239223],\n              [-76.488138, 37.238455],\n              [-76.486553, 37.23808],\n              [-76.484959, 37.237721],\n              [-76.483948, 37.237488],\n              [-76.482938, 37.237255],\n              [-76.480804, 37.236711],\n              [-76.48017, 37.236549],\n              [-76.479525, 37.236384],\n              [-76.478361, 37.236086],\n              [-76.473782, 37.234936],\n              [-76.471946, 37.234464],\n              [-76.468921, 37.233878],\n              [-76.465359, 37.233552],\n              [-76.464073, 37.233542],\n              [-76.460339, 37.233368],\n              [-76.459385, 37.233323],\n              [-76.455192, 37.233623],\n              [-76.452568, 37.233814],\n              [-76.446872, 37.234598],\n              [-76.441523, 37.235645],\n              [-76.436268, 37.236679],\n              [-76.430428, 37.237835],\n              [-76.425139, 37.238894],\n              [-76.413543, 37.241173],\n              [-76.410866, 37.241443],\n              [-76.409094, 37.241621],\n              [-76.405345, 37.241716],\n              [-76.404068, 37.241761],\n              [-76.383023, 37.247762],\n              [-76.377819, 37.249247],\n              [-76.374669, 37.250148],\n              [-76.372532, 37.251007],\n              [-76.371772, 37.251313],\n              [-76.357837, 37.256918],\n              [-76.304502, 37.278368],\n              [-76.249663, 37.278995],\n              [-76.136303, 37.282144],\n              [-76.136141, 37.26405],\n              [-76.136016, 37.250145],\n              [-76.135862, 37.232025],\n              [-76.135859, 37.231628],\n              [-76.13555, 37.195344],\n              [-76.135522, 37.191977],\n              [-76.249663, 37.191023],\n              [-76.330437, 37.190991],\n              [-76.330419, 37.197845],\n              [-76.344302, 37.191063],\n              [-76.354451, 37.186106],\n              [-76.355448, 37.185619],\n              [-76.355491, 37.185598],\n              [-76.355537, 37.185576],\n              [-76.355768, 37.185463],\n              [-76.355823, 37.185436],\n              [-76.355855, 37.18542],\n              [-76.355986, 37.185356],\n              [-76.356444, 37.185132],\n              [-76.357534, 37.1846],\n              [-76.357859, 37.184441],\n              [-76.358303, 37.184224],\n              [-76.358492, 37.184132],\n              [-76.358513, 37.184122],\n              [-76.358624, 37.184068],\n              [-76.359509, 37.183636],\n              [-76.360393, 37.183204],\n              [-76.362145, 37.182348],\n              [-76.362168, 37.182337],\n              [-76.362246, 37.182299],\n              [-76.362253, 37.182295],\n              [-76.362277, 37.182283],\n              [-76.36229, 37.182277],\n              [-76.363551, 37.181661],\n              [-76.364532, 37.181182],\n              [-76.368672, 37.17916],\n              [-76.3776, 37.174799],\n              [-76.386529, 37.170437],\n              [-76.387286, 37.170067],\n              [-76.389185, 37.169139],\n              [-76.391675, 37.167923],\n              [-76.39239, 37.167574],\n              [-76.392892, 37.167286],\n              [-76.3944, 37.166421],\n              [-76.396656, 37.165128],\n              [-76.397891, 37.164419],\n              [-76.399214, 37.163659],\n              [-76.399799, 37.163322],\n              [-76.40044, 37.162954],\n              [-76.400528, 37.162905],\n              [-76.400536, 37.1629],\n              [-76.400709, 37.162801],\n              [-76.40074, 37.162783],\n              [-76.403161, 37.161394],\n              [-76.403222, 37.161359],\n              [-76.403242, 37.161347],\n              [-76.403612, 37.161135],\n              [-76.403631, 37.161124],\n              [-76.403637, 37.161121],\n              [-76.403651, 37.161113],\n              [-76.403684, 37.161094],\n              [-76.403794, 37.161031],\n              [-76.403961, 37.160935],\n              [-76.404407, 37.160681],\n              [-76.404853, 37.160424],\n              [-76.404882, 37.160407],\n              [-76.405064, 37.160302],\n              [-76.405147, 37.160255],\n              [-76.405156, 37.16025],\n              [-76.405223, 37.160212],\n              [-76.405245, 37.160199],\n              [-76.405416, 37.160102],\n              [-76.405586, 37.160005],\n              [-76.40589, 37.159829],\n              [-76.405997, 37.159768],\n              [-76.4061, 37.159708],\n              [-76.406106, 37.159705],\n              [-76.406113, 37.159701],\n              [-76.406165, 37.159671],\n              [-76.406174, 37.159666],\n              [-76.406176, 37.159665],\n              [-76.406236, 37.159631],\n              [-76.406528, 37.159463],\n              [-76.409236, 37.157909],\n              [-76.412887, 37.155815],\n              [-76.412599, 37.151559],\n              [-76.412053, 37.149417],\n              [-76.411889, 37.148773],\n              [-76.411735, 37.148167],\n              [-76.411914, 37.147644],\n              [-76.412295, 37.146535],\n              [-76.412266, 37.146142],\n              [-76.41225, 37.145916],\n              [-76.412215, 37.145431],\n              [-76.412439, 37.144519],\n              [-76.412486, 37.144369],\n              [-76.412653, 37.143828],\n              [-76.412727, 37.143591],\n              [-76.412835, 37.143072],\n              [-76.412864, 37.142931],\n              [-76.412887, 37.142823],\n              [-76.413031, 37.142167],\n              [-76.413052, 37.141958],\n              [-76.413084, 37.14166],\n              [-76.413115, 37.141362],\n              [-76.413128, 37.141233],\n              [-76.41314, 37.141105],\n              [-76.413176, 37.140753],\n              [-76.413192, 37.140599],\n              [-76.413181, 37.140081],\n              [-76.413176, 37.139831],\n              [-76.41338, 37.139337],\n              [-76.413672, 37.138631],\n              [-76.413661, 37.138377],\n              [-76.413654, 37.138258],\n              [-76.413648, 37.138139],\n              [-76.41364, 37.137975],\n              [-76.413624, 37.137951],\n              [-76.413541, 37.137822],\n              [-76.413262, 37.137385],\n              [-76.413258, 37.13738],\n              [-76.412824, 37.136826],\n              [-76.412515, 37.136441],\n              [-76.412337, 37.136226],\n              [-76.412103, 37.135956],\n              [-76.411686, 37.13578],\n              [-76.411399, 37.135645],\n              [-76.411196, 37.135442],\n              [-76.410974, 37.135219],\n              [-76.410574, 37.13481],\n              [-76.41047, 37.134609],\n              [-76.410408, 37.134109],\n              [-76.410393, 37.134082],\n              [-76.410375, 37.13405],\n              [-76.41037, 37.134041],\n              [-76.410367, 37.134036],\n              [-76.410338, 37.133985],\n              [-76.410268, 37.13386],\n              [-76.410216, 37.133767],\n              [-76.410184, 37.133709],\n              [-76.410119, 37.133591],\n              [-76.410436, 37.132781],\n              [-76.410488, 37.132647],\n              [-76.410613, 37.132513],\n              [-76.410618, 37.132508],\n              [-76.410651, 37.132472],\n              [-76.410792, 37.132321],\n              [-76.410844, 37.132267],\n              [-76.41085, 37.132261],\n              [-76.410872, 37.132238],\n              [-76.410884, 37.132225],\n              [-76.41089, 37.132218],\n              [-76.410905, 37.132202],\n              [-76.410946, 37.132158],\n              [-76.411063, 37.132034],\n              [-76.411095, 37.132],\n              [-76.411105, 37.131989],\n              [-76.411114, 37.13198],\n              [-76.41124, 37.131847],\n              [-76.412024, 37.130775],\n              [-76.413239, 37.128952],\n              [-76.410311, 37.1254],\n              [-76.410115, 37.125165],\n              [-76.410121, 37.125279],\n              [-76.410107, 37.125515],\n              [-76.410074, 37.12575],\n              [-76.41002, 37.126009],\n              [-76.409857, 37.12665],\n              [-76.40977, 37.126935],\n              [-76.409691, 37.127134],\n              [-76.409627, 37.127256],\n              [-76.409543, 37.127383],\n              [-76.409443, 37.127502],\n              [-76.4094, 37.127543],\n              [-76.409193, 37.127744],\n              [-76.409189, 37.127748],\n              [-76.409179, 37.127757],\n              [-76.409163, 37.127773],\n              [-76.409036, 37.127896],\n              [-76.408373, 37.12854],\n              [-76.408089, 37.128811],\n              [-76.408074, 37.128825],\n              [-76.407907, 37.128981],\n              [-76.407798, 37.129087],\n              [-76.407218, 37.12965],\n              [-76.407129, 37.129743],\n              [-76.407063, 37.129621],\n              [-76.406694, 37.128932],\n              [-76.406273, 37.128146],\n              [-76.404957, 37.125691],\n              [-76.403356, 37.122666],\n              [-76.402047, 37.120196],\n              [-76.401557, 37.119272],\n              [-76.399684, 37.115812],\n              [-76.399172, 37.114866],\n              [-76.399149, 37.114823],\n              [-76.399129, 37.114786],\n              [-76.399121, 37.114772],\n              [-76.399118, 37.114767],\n              [-76.399027, 37.114599],\n              [-76.398752, 37.114091],\n              [-76.397978, 37.112661],\n              [-76.397843, 37.112411],\n              [-76.396118, 37.109224],\n              [-76.395938, 37.108899],\n              [-76.394531, 37.106362],\n              [-76.394502, 37.106309],\n              [-76.394472, 37.106255],\n              [-76.394527, 37.106207],\n              [-76.394642, 37.106155],\n              [-76.394731, 37.106142],\n              [-76.394776, 37.106144],\n              [-76.394818, 37.106156],\n              [-76.394856, 37.106175],\n              [-76.394993, 37.106268],\n              [-76.395037, 37.10633],\n              [-76.395131, 37.10649],\n              [-76.395328, 37.106728],\n              [-76.39544, 37.106843],\n              [-76.395521, 37.106925],\n              [-76.395537, 37.106939],\n              [-76.395755, 37.107139],\n              [-76.395782, 37.107168],\n              [-76.395872, 37.107248],\n              [-76.396011, 37.107338],\n              [-76.396077, 37.107386],\n              [-76.396294, 37.107515],\n              [-76.3965, 37.107586],\n              [-76.39663, 37.107617],\n              [-76.396752, 37.107641],\n              [-76.396777, 37.107646],\n              [-76.396825, 37.107655],\n              [-76.397051, 37.107667],\n              [-76.397263, 37.10766],\n              [-76.397367, 37.107658],\n              [-76.3975, 37.107636],\n              [-76.39754, 37.107619],\n              [-76.397574, 37.107608],\n              [-76.397623, 37.107592],\n              [-76.397703, 37.107558],\n              [-76.397737, 37.107534],\n              [-76.397795, 37.107479],\n              [-76.397819, 37.107449],\n              [-76.397844, 37.107381],\n              [-76.39785, 37.107346],\n              [-76.397851, 37.107168],\n              [-76.397864, 37.106991],\n              [-76.397875, 37.106921],\n              [-76.397874, 37.106885],\n              [-76.397895, 37.106816],\n              [-76.397914, 37.106784],\n              [-76.39799, 37.106695],\n              [-76.398134, 37.10661],\n              [-76.398175, 37.106595],\n              [-76.39835, 37.106558],\n              [-76.398572, 37.106526],\n              [-76.398886, 37.106501],\n              [-76.399151, 37.106455],\n              [-76.399454, 37.106382],\n              [-76.399645, 37.106287],\n              [-76.399861, 37.106157],\n              [-76.400138, 37.105976],\n              [-76.400318, 37.105867],\n              [-76.400394, 37.105829],\n              [-76.400515, 37.105782],\n              [-76.400813, 37.105696],\n              [-76.400986, 37.105654],\n              [-76.401067, 37.105623],\n              [-76.401178, 37.105562],\n              [-76.401207, 37.105536],\n              [-76.401223, 37.105502],\n              [-76.401235, 37.105432],\n              [-76.401234, 37.105255],\n              [-76.401226, 37.10522],\n              [-76.401133, 37.105019],\n              [-76.401096, 37.104954],\n              [-76.401025, 37.104864],\n              [-76.400916, 37.10475],\n              [-76.400899, 37.104718],\n              [-76.400893, 37.104682],\n              [-76.400901, 37.104576],\n              [-76.400928, 37.104508],\n              [-76.401006, 37.10442],\n              [-76.401074, 37.104373],\n              [-76.401113, 37.104355],\n              [-76.401335, 37.104319],\n              [-76.401514, 37.104299],\n              [-76.401819, 37.104231],\n              [-76.401902, 37.104202],\n              [-76.401981, 37.104169],\n              [-76.402016, 37.104066],\n              [-76.402016, 37.104061],\n              [-76.402013, 37.10403],\n              [-76.402004, 37.103995],\n              [-76.401959, 37.103894],\n              [-76.401921, 37.10383],\n              [-76.401872, 37.10377],\n              [-76.40184, 37.103704],\n              [-76.401608, 37.103358],\n              [-76.401551, 37.103261],\n              [-76.40147, 37.103098],\n              [-76.401447, 37.103067],\n              [-76.401368, 37.10298],\n              [-76.401338, 37.102954],\n              [-76.40127, 37.102907],\n              [-76.401193, 37.102872],\n              [-76.401151, 37.102858],\n              [-76.401056, 37.102846],\n              [-76.400922, 37.10286],\n              [-76.400883, 37.102876],\n              [-76.400782, 37.102946],\n              [-76.400755, 37.102975],\n              [-76.400669, 37.1031],\n              [-76.400537, 37.103243],\n              [-76.400462, 37.103283],\n              [-76.400419, 37.103294],\n              [-76.400285, 37.10331],\n              [-76.40015, 37.103312],\n              [-76.400105, 37.103307],\n              [-76.400015, 37.103308],\n              [-76.399884, 37.103283],\n              [-76.399755, 37.103253],\n              [-76.399634, 37.103204],\n              [-76.399549, 37.10318],\n              [-76.399326, 37.103157],\n              [-76.39928, 37.103156],\n              [-76.399147, 37.103172],\n              [-76.399108, 37.103189],\n              [-76.398981, 37.103291],\n              [-76.398958, 37.103322],\n              [-76.398923, 37.103589],\n              [-76.398907, 37.103711],\n              [-76.39885, 37.103883],\n              [-76.39879, 37.104017],\n              [-76.398749, 37.10408],\n              [-76.398681, 37.104171],\n              [-76.398623, 37.104226],\n              [-76.398587, 37.104248],\n              [-76.398509, 37.104283],\n              [-76.398383, 37.104323],\n              [-76.398339, 37.10433],\n              [-76.398293, 37.104328],\n              [-76.398208, 37.104304],\n              [-76.398169, 37.104286],\n              [-76.398136, 37.104262],\n              [-76.398049, 37.10418],\n              [-76.397924, 37.104033],\n              [-76.397869, 37.103977],\n              [-76.397825, 37.103877],\n              [-76.39781, 37.103807],\n              [-76.397801, 37.103736],\n              [-76.397802, 37.103701],\n              [-76.397822, 37.103595],\n              [-76.39789, 37.1035],\n              [-76.397965, 37.103414],\n              [-76.398027, 37.103362],\n              [-76.398421, 37.103071],\n              [-76.398441, 37.103039],\n              [-76.39848, 37.102937],\n              [-76.398486, 37.102902],\n              [-76.398551, 37.102659],\n              [-76.398624, 37.102529],\n              [-76.398728, 37.102373],\n              [-76.398773, 37.102272],\n              [-76.398787, 37.102166],\n              [-76.398781, 37.102095],\n              [-76.398768, 37.102061],\n              [-76.398743, 37.102032],\n              [-76.398535, 37.101845],\n              [-76.398285, 37.101691],\n              [-76.398074, 37.101506],\n              [-76.397965, 37.101392],\n              [-76.397733, 37.10113],\n              [-76.397685, 37.10107],\n              [-76.39765, 37.101004],\n              [-76.397589, 37.100909],\n              [-76.397403, 37.100708],\n              [-76.396936, 37.100374],\n              [-76.396885, 37.100331],\n              [-76.396721, 37.100193],\n              [-76.39667, 37.100134],\n              [-76.396656, 37.1001],\n              [-76.396661, 37.099959],\n              [-76.396666, 37.099923],\n              [-76.396684, 37.09989],\n              [-76.396712, 37.099863],\n              [-76.396733, 37.099851],\n              [-76.396749, 37.099842],\n              [-76.396839, 37.099832],\n              [-76.397064, 37.099841],\n              [-76.397193, 37.099875],\n              [-76.397319, 37.099913],\n              [-76.397536, 37.099965],\n              [-76.397712, 37.099995],\n              [-76.397892, 37.100008],\n              [-76.398481, 37.10003],\n              [-76.398614, 37.100045],\n              [-76.398657, 37.100057],\n              [-76.398745, 37.100072],\n              [-76.398875, 37.100101],\n              [-76.398916, 37.100116],\n              [-76.398991, 37.100155],\n              [-76.39911, 37.100206],\n              [-76.399196, 37.100229],\n              [-76.399284, 37.100242],\n              [-76.399329, 37.100242],\n              [-76.399373, 37.100234],\n              [-76.399442, 37.100188],\n              [-76.399469, 37.100159],\n              [-76.399485, 37.100126],\n              [-76.399492, 37.100091],\n              [-76.399493, 37.100056],\n              [-76.399508, 37.099996],\n              [-76.399475, 37.099714],\n              [-76.399419, 37.0994],\n              [-76.399398, 37.099368],\n              [-76.399298, 37.099296],\n              [-76.39926, 37.099278],\n              [-76.399215, 37.099272],\n              [-76.399126, 37.099268],\n              [-76.398414, 37.099206],\n              [-76.398341, 37.099193],\n              [-76.39806, 37.099145],\n              [-76.398023, 37.099125],\n              [-76.397922, 37.099053],\n              [-76.397897, 37.099024],\n              [-76.397896, 37.098991],\n              [-76.397916, 37.098959],\n              [-76.397944, 37.098931],\n              [-76.398031, 37.098868],\n              [-76.398044, 37.098858],\n              [-76.398081, 37.098838],\n              [-76.398295, 37.098785],\n              [-76.398474, 37.098764],\n              [-76.398518, 37.098756],\n              [-76.39869, 37.098711],\n              [-76.398813, 37.098666],\n              [-76.398886, 37.098625],\n              [-76.39949, 37.098195],\n              [-76.39952, 37.098168],\n              [-76.3996, 37.098082],\n              [-76.399701, 37.097964],\n              [-76.399716, 37.097931],\n              [-76.399724, 37.097825],\n              [-76.39972, 37.09779],\n              [-76.399709, 37.097755],\n              [-76.399659, 37.097697],\n              [-76.399594, 37.097647],\n              [-76.399554, 37.097631],\n              [-76.399511, 37.09762],\n              [-76.399423, 37.097605],\n              [-76.399381, 37.097592],\n              [-76.399293, 37.097579],\n              [-76.399248, 37.097583],\n              [-76.399068, 37.097586],\n              [-76.398983, 37.097608],\n              [-76.398944, 37.097625],\n              [-76.39886, 37.097652],\n              [-76.398703, 37.097722],\n              [-76.398598, 37.097788],\n              [-76.398429, 37.097904],\n              [-76.398184, 37.09806],\n              [-76.398061, 37.098104],\n              [-76.397889, 37.098149],\n              [-76.397845, 37.098156],\n              [-76.397665, 37.098172],\n              [-76.397484, 37.098168],\n              [-76.397395, 37.098157],\n              [-76.397352, 37.098145],\n              [-76.397328, 37.098132],\n              [-76.397315, 37.098125],\n              [-76.397282, 37.0981],\n              [-76.397255, 37.098072],\n              [-76.397244, 37.098044],\n              [-76.397242, 37.098038],\n              [-76.39721, 37.097898],\n              [-76.397208, 37.097862],\n              [-76.397218, 37.097828],\n              [-76.397321, 37.097592],\n              [-76.397364, 37.09753],\n              [-76.397416, 37.097472],\n              [-76.397508, 37.097394],\n              [-76.397617, 37.09733],\n              [-76.397702, 37.097305],\n              [-76.397968, 37.097269],\n              [-76.398057, 37.09726],\n              [-76.398233, 37.097224],\n              [-76.39836, 37.097188],\n              [-76.398398, 37.097169],\n              [-76.398461, 37.097118],\n              [-76.398483, 37.097087],\n              [-76.398532, 37.096951],\n              [-76.398501, 37.096811],\n              [-76.398483, 37.096779],\n              [-76.398355, 37.096679],\n              [-76.398244, 37.096619],\n              [-76.398084, 37.096553],\n              [-76.398046, 37.096544],\n              [-76.397998, 37.096533],\n              [-76.397679, 37.096401],\n              [-76.397522, 37.096331],\n              [-76.397491, 37.096305],\n              [-76.39744, 37.096247],\n              [-76.39742, 37.096215],\n              [-76.397401, 37.096166],\n              [-76.397412, 37.096132],\n              [-76.397431, 37.096099],\n              [-76.397484, 37.096042],\n              [-76.397543, 37.095989],\n              [-76.397598, 37.095932],\n              [-76.397632, 37.095908],\n              [-76.397696, 37.095883],\n              [-76.397876, 37.095871],\n              [-76.397965, 37.095881],\n              [-76.398005, 37.095898],\n              [-76.398346, 37.096071],\n              [-76.398424, 37.096106],\n              [-76.398535, 37.096167],\n              [-76.398606, 37.096212],\n              [-76.398636, 37.096239],\n              [-76.398704, 37.096285],\n              [-76.398952, 37.096491],\n              [-76.399179, 37.096713],\n              [-76.399242, 37.096763],\n              [-76.39927, 37.096792],\n              [-76.399405, 37.096884],\n              [-76.399572, 37.096938],\n              [-76.399661, 37.096945],\n              [-76.399978, 37.09693],\n              [-76.400067, 37.096918],\n              [-76.400108, 37.096903],\n              [-76.400144, 37.096882],\n              [-76.400176, 37.096857],\n              [-76.4002, 37.096827],\n              [-76.400218, 37.096794],\n              [-76.400222, 37.096759],\n              [-76.400217, 37.096723],\n              [-76.400155, 37.09659],\n              [-76.40009, 37.096498],\n              [-76.399986, 37.096382],\n              [-76.399969, 37.096349],\n              [-76.399955, 37.096279],\n              [-76.399956, 37.096243],\n              [-76.399965, 37.096208],\n              [-76.399981, 37.096175],\n              [-76.40003, 37.096115],\n              [-76.40013, 37.096017],\n              [-76.400136, 37.096011],\n              [-76.40019, 37.095958],\n              [-76.400226, 37.095922],\n              [-76.400284, 37.095865],\n              [-76.400292, 37.095858],\n              [-76.400313, 37.09584],\n              [-76.400377, 37.095787],\n              [-76.400438, 37.095736],\n              [-76.400448, 37.09573],\n              [-76.400508, 37.095692],\n              [-76.40054, 37.095666],\n              [-76.400575, 37.095644],\n              [-76.400615, 37.095627],\n              [-76.400658, 37.095616],\n              [-76.400717, 37.095613],\n              [-76.400747, 37.095611],\n              [-76.400877, 37.095642],\n              [-76.400954, 37.095679],\n              [-76.401035, 37.09571],\n              [-76.401228, 37.095798],\n              [-76.401301, 37.095839],\n              [-76.401423, 37.095884],\n              [-76.401557, 37.095894],\n              [-76.401647, 37.095887],\n              [-76.40169, 37.095875],\n              [-76.40173, 37.095858],\n              [-76.401764, 37.095835],\n              [-76.401987, 37.095614],\n              [-76.402112, 37.095513],\n              [-76.402153, 37.095496],\n              [-76.402377, 37.095488],\n              [-76.402512, 37.095498],\n              [-76.402554, 37.095512],\n              [-76.402709, 37.095585],\n              [-76.402752, 37.095596],\n              [-76.402797, 37.0956],\n              [-76.402955, 37.095593],\n              [-76.402983, 37.095553],\n              [-76.402971, 37.095519],\n              [-76.402953, 37.095486],\n              [-76.402881, 37.095396],\n              [-76.402863, 37.095363],\n              [-76.402861, 37.095328],\n              [-76.402901, 37.095264],\n              [-76.402932, 37.095238],\n              [-76.403046, 37.09518],\n              [-76.403167, 37.095133],\n              [-76.403292, 37.095092],\n              [-76.403465, 37.095055],\n              [-76.403549, 37.095028],\n              [-76.403593, 37.095019],\n              [-76.403755, 37.094957],\n              [-76.403828, 37.094916],\n              [-76.403863, 37.094852],\n              [-76.403867, 37.094817],\n              [-76.403847, 37.094748],\n              [-76.403832, 37.094714],\n              [-76.403787, 37.094652],\n              [-76.403607, 37.094449],\n              [-76.40359, 37.094416],\n              [-76.403581, 37.094359],\n              [-76.403578, 37.094341],\n              [-76.403629, 37.094206],\n              [-76.403678, 37.094155],\n              [-76.403888, 37.09402],\n              [-76.403925, 37.094001],\n              [-76.40395, 37.093991],\n              [-76.404084, 37.093936],\n              [-76.404129, 37.093932],\n              [-76.404237, 37.093997],\n              [-76.404295, 37.094046],\n              [-76.40445, 37.094178],\n              [-76.404514, 37.094228],\n              [-76.404558, 37.094236],\n              [-76.404646, 37.094224],\n              [-76.404679, 37.094199],\n              [-76.404694, 37.094165],\n              [-76.404701, 37.09413],\n              [-76.4047, 37.09406],\n              [-76.404684, 37.093876],\n              [-76.404682, 37.093849],\n              [-76.404672, 37.093778],\n              [-76.404679, 37.093708],\n              [-76.404708, 37.093681],\n              [-76.404811, 37.093613],\n              [-76.404926, 37.093559],\n              [-76.405044, 37.093509],\n              [-76.405132, 37.093495],\n              [-76.405223, 37.093493],\n              [-76.405266, 37.093503],\n              [-76.4053, 37.093524],\n              [-76.405332, 37.09355],\n              [-76.405355, 37.093583],\n              [-76.405397, 37.093643],\n              [-76.405447, 37.093742],\n              [-76.405492, 37.093804],\n              [-76.405528, 37.093869],\n              [-76.405554, 37.093936],\n              [-76.405574, 37.093968],\n              [-76.405586, 37.094002],\n              [-76.405596, 37.094108],\n              [-76.405586, 37.094248],\n              [-76.405588, 37.094319],\n              [-76.405582, 37.094354],\n              [-76.40559, 37.094389],\n              [-76.405628, 37.094419],\n              [-76.405674, 37.094422],\n              [-76.405808, 37.094419],\n              [-76.405851, 37.094408],\n              [-76.40593, 37.094375],\n              [-76.406005, 37.094337],\n              [-76.406047, 37.094324],\n              [-76.40622, 37.09429],\n              [-76.406489, 37.09426],\n              [-76.406528, 37.094244],\n              [-76.406558, 37.094217],\n              [-76.406571, 37.094184],\n              [-76.406577, 37.094149],\n              [-76.406571, 37.094114],\n              [-76.406541, 37.094048],\n              [-76.406517, 37.09398],\n              [-76.406498, 37.093875],\n              [-76.406465, 37.093593],\n              [-76.406468, 37.093522],\n              [-76.406465, 37.093486],\n              [-76.406469, 37.093416],\n              [-76.406454, 37.093345],\n              [-76.40643, 37.093315],\n              [-76.406356, 37.093275],\n              [-76.406312, 37.093268],\n              [-76.4061, 37.093257],\n              [-76.406086, 37.093256],\n              [-76.405997, 37.093245],\n              [-76.40591, 37.093228],\n              [-76.405869, 37.093213],\n              [-76.405797, 37.093171],\n              [-76.405765, 37.093146],\n              [-76.405693, 37.093104],\n              [-76.405611, 37.093019],\n              [-76.405609, 37.092913],\n              [-76.405627, 37.09288],\n              [-76.405652, 37.092851],\n              [-76.405685, 37.092827],\n              [-76.405728, 37.092815],\n              [-76.405997, 37.092827],\n              [-76.406086, 37.09282],\n              [-76.406173, 37.0928],\n              [-76.406245, 37.092765],\n              [-76.406364, 37.092708],\n              [-76.406405, 37.092692],\n              [-76.406578, 37.092655],\n              [-76.406622, 37.09265],\n              [-76.406668, 37.09265],\n              [-76.406702, 37.09267],\n              [-76.406718, 37.092704],\n              [-76.406723, 37.092739],\n              [-76.40668, 37.092911],\n              [-76.406674, 37.092982],\n              [-76.406677, 37.093005],\n              [-76.406689, 37.093088],\n              [-76.406712, 37.093118],\n              [-76.406743, 37.093144],\n              [-76.406786, 37.093155],\n              [-76.406964, 37.093172],\n              [-76.407099, 37.09316],\n              [-76.407365, 37.093128],\n              [-76.407496, 37.093104],\n              [-76.407667, 37.093063],\n              [-76.407755, 37.093049],\n              [-76.407792, 37.093029],\n              [-76.40789, 37.092955],\n              [-76.407908, 37.092923],\n              [-76.40791, 37.092887],\n              [-76.407893, 37.092818],\n              [-76.407837, 37.092763],\n              [-76.407803, 37.092739],\n              [-76.407764, 37.092722],\n              [-76.407677, 37.092704],\n              [-76.407638, 37.092687],\n              [-76.407539, 37.092628],\n              [-76.407494, 37.092601],\n              [-76.407307, 37.092449],\n              [-76.407303, 37.092377],\n              [-76.407308, 37.092342],\n              [-76.40732, 37.092308],\n              [-76.40734, 37.092276],\n              [-76.407427, 37.092195],\n              [-76.407495, 37.092148],\n              [-76.407699, 37.092076],\n              [-76.407833, 37.092061],\n              [-76.407909, 37.092067],\n              [-76.407955, 37.092101],\n              [-76.407979, 37.092131],\n              [-76.408072, 37.092395],\n              [-76.408088, 37.092439],\n              [-76.408108, 37.092471],\n              [-76.408199, 37.092549],\n              [-76.408272, 37.09259],\n              [-76.408397, 37.092632],\n              [-76.408594, 37.092715],\n              [-76.408727, 37.092736],\n              [-76.408772, 37.092739],\n              [-76.408859, 37.092754],\n              [-76.408939, 37.092785],\n              [-76.408979, 37.092786],\n              [-76.40904, 37.092786],\n              [-76.409115, 37.092599],\n              [-76.409527, 37.092231],\n              [-76.409527, 37.092126],\n              [-76.409451, 37.092044],\n              [-76.409479, 37.091923],\n              [-76.409541, 37.091901],\n              [-76.409616, 37.091912],\n              [-76.410432, 37.092335],\n              [-76.410508, 37.092434],\n              [-76.410459, 37.092654],\n              [-76.41048, 37.092704],\n              [-76.410665, 37.092726],\n              [-76.410789, 37.092704],\n              [-76.410905, 37.092621],\n              [-76.410988, 37.092599],\n              [-76.411049, 37.092621],\n              [-76.411097, 37.092868],\n              [-76.411255, 37.09289],\n              [-76.411475, 37.092819],\n              [-76.411797, 37.092808],\n              [-76.411975, 37.092852],\n              [-76.412176, 37.092961],\n              [-76.412311, 37.093034],\n              [-76.412544, 37.093149],\n              [-76.41258, 37.09322],\n              [-76.412648, 37.093353],\n              [-76.412675, 37.093407],\n              [-76.412853, 37.09355],\n              [-76.413017, 37.093539],\n              [-76.413237, 37.093429],\n              [-76.413559, 37.093407],\n              [-76.413676, 37.09355],\n              [-76.413744, 37.093583],\n              [-76.41382, 37.093594],\n              [-76.414087, 37.09355],\n              [-76.414156, 37.093561],\n              [-76.414286, 37.093622],\n              [-76.414526, 37.093633],\n              [-76.414979, 37.093594],\n              [-76.415015, 37.093589],\n              [-76.415834, 37.093485],\n              [-76.4166, 37.093388],\n              [-76.420967, 37.092827],\n              [-76.425253, 37.092277],\n              [-76.425384, 37.092261],\n              [-76.425419, 37.092285],\n              [-76.425453, 37.092308],\n              [-76.425498, 37.092339],\n              [-76.425507, 37.092345],\n              [-76.425512, 37.092348],\n              [-76.425521, 37.092354],\n              [-76.425652, 37.092441],\n              [-76.427248, 37.093527],\n              [-76.42881, 37.094589],\n              [-76.430371, 37.095652],\n              [-76.4308, 37.095588],\n              [-76.431228, 37.095525],\n              [-76.432939, 37.095271],\n              [-76.43465, 37.095018],\n              [-76.434826, 37.094992],\n              [-76.435003, 37.094966],\n              [-76.435117, 37.094949],\n              [-76.435158, 37.094943],\n              [-76.435262, 37.094927],\n              [-76.435521, 37.094889],\n              [-76.43853, 37.094443],\n              [-76.440426, 37.094162],\n              [-76.440683, 37.094124],\n              [-76.441688, 37.093976],\n              [-76.450504, 37.096648],\n              [-76.451472, 37.098152],\n              [-76.45434, 37.098694],\n              [-76.455172, 37.098852],\n              [-76.45836, 37.100582],\n              [-76.458518, 37.100668],\n              [-76.458673, 37.100752],\n              [-76.463385, 37.103608],\n              [-76.464073, 37.104852],\n              [-76.466673, 37.107152],\n              [-76.467388, 37.10799],\n              [-76.467772, 37.10844],\n              [-76.468326, 37.10909],\n              [-76.468518, 37.109315],\n              [-76.469156, 37.110063],\n              [-76.469528, 37.110499],\n              [-76.46977, 37.110782],\n              [-76.469846, 37.110871],\n              [-76.470068, 37.111132],\n              [-76.47095, 37.112165],\n              [-76.47096, 37.112177],\n              [-76.470972, 37.112192],\n              [-76.471046, 37.112279],\n              [-76.47112, 37.112365],\n              [-76.47125, 37.112517],\n              [-76.471562, 37.112883],\n              [-76.471638, 37.112972],\n              [-76.471695, 37.113039],\n              [-76.472028, 37.113429],\n              [-76.472116, 37.113532],\n              [-76.472172, 37.113598],\n              [-76.473075, 37.114657],\n              [-76.47319, 37.114858],\n              [-76.473307, 37.115016],\n              [-76.473337, 37.115056],\n              [-76.473352, 37.115071],\n              [-76.473505, 37.115231],\n              [-76.473832, 37.115544],\n              [-76.473871, 37.11559],\n              [-76.47398, 37.115725],\n              [-76.474036, 37.115836],\n              [-76.474282, 37.116327],\n              [-76.474308, 37.116361],\n              [-76.481239, 37.125448],\n              [-76.482347, 37.125689],\n              [-76.482507, 37.125726],\n              [-76.482531, 37.12574],\n              [-76.482165, 37.125932],\n              [-76.481742, 37.126154],\n              [-76.482575, 37.127153],\n              [-76.482627, 37.127216],\n              [-76.484621, 37.128723],\n              [-76.48577, 37.129592],\n              [-76.486124, 37.130046],\n              [-76.486245, 37.130202],\n              [-76.48625, 37.130208],\n              [-76.486674, 37.130752],\n              [-76.486915, 37.131048],\n              [-76.487541, 37.131818],\n              [-76.491834, 37.137097],\n              [-76.492818, 37.138307],\n              [-76.496584, 37.142939],\n              [-76.496709, 37.143092],\n              [-76.49673, 37.143118],\n              [-76.498392, 37.145161],\n              [-76.500056, 37.147207],\n              [-76.500264, 37.147453],\n              [-76.50027, 37.14746],\n              [-76.500313, 37.147511],\n              [-76.50357, 37.151237],\n              [-76.50456, 37.15237],\n              [-76.506012, 37.154032],\n              [-76.506103, 37.154136],\n              [-76.506243, 37.154295],\n              [-76.505179, 37.155456],\n              [-76.504879, 37.155788],\n              [-76.504465, 37.156249],\n              [-76.505583, 37.157265],\n              [-76.504903, 37.158017],\n              [-76.504455, 37.158513],\n              [-76.507202, 37.162215],\n              [-76.5079, 37.163155],\n              [-76.508001, 37.163297],\n              [-76.510615, 37.167012],\n              [-76.511593, 37.168402],\n              [-76.514169, 37.172082],\n              [-76.514872, 37.17308],\n              [-76.514987, 37.173231],\n              [-76.515104, 37.173192],\n              [-76.515069, 37.173347],\n              [-76.515058, 37.173402],\n              [-76.51501, 37.173707],\n              [-76.514944, 37.174415],\n              [-76.514882, 37.174752],\n              [-76.514804, 37.175241],\n              [-76.514779, 37.17541],\n              [-76.514768, 37.175568],\n              [-76.514775, 37.175726],\n              [-76.514806, 37.175914],\n              [-76.514852, 37.176067],\n              [-76.5149, 37.176188],\n              [-76.514963, 37.176312],\n              [-76.515057, 37.176462],\n              [-76.515166, 37.176605],\n              [-76.515264, 37.176714],\n              [-76.515773, 37.17737],\n              [-76.516157, 37.177955],\n              [-76.516232, 37.178049],\n              [-76.516339, 37.17816],\n              [-76.517072, 37.17867],\n              [-76.51716, 37.178737],\n              [-76.517437, 37.178643],\n              [-76.521739, 37.177243],\n              [-76.521786, 37.177228],\n              [-76.521988, 37.177168],\n              [-76.522192, 37.177114],\n              [-76.522398, 37.177068],\n              [-76.522605, 37.177028],\n              [-76.522814, 37.176996],\n              [-76.523023, 37.176971],\n              [-76.523233, 37.176953],\n              [-76.523277, 37.17695],\n              [-76.524108, 37.176898],\n              [-76.524327, 37.176885],\n              [-76.524408, 37.17688],\n              [-76.52445, 37.176877],\n              [-76.524734, 37.176863],\n              [-76.524688, 37.176593],\n              [-76.524661, 37.176433],\n              [-76.52471, 37.176428],\n              [-76.524914, 37.176405],\n              [-76.524993, 37.176396],\n              [-76.525166, 37.176628],\n              [-76.525351, 37.176627],\n              [-76.525626, 37.176635],\n              [-76.525668, 37.176707],\n              [-76.525875, 37.177052],\n              [-76.529914, 37.181402],\n              [-76.530351, 37.181844],\n              [-76.530438, 37.181932],\n              [-76.530699, 37.182198],\n              [-76.530811, 37.182312],\n              [-76.53246, 37.184162],\n              [-76.532545, 37.184257],\n              [-76.532651, 37.184376],\n              [-76.532975, 37.184852],\n              [-76.533707, 37.185496],\n              [-76.534075, 37.186152],\n              [-76.534891, 37.187032],\n              [-76.538572, 37.191016],\n              [-76.539194, 37.19169],\n              [-76.53934, 37.191848],\n              [-76.539676, 37.192252],\n              [-76.54518, 37.19828],\n              [-76.546376, 37.199652],\n              [-76.553476, 37.207852],\n              [-76.555676, 37.210254],\n              [-76.555864, 37.210469],\n              [-76.555952, 37.210569],\n              [-76.556481, 37.211172],\n              [-76.557012, 37.211779],\n              [-76.56028, 37.215514],\n              [-76.560394, 37.215644],\n              [-76.560615, 37.215896],\n              [-76.562443, 37.217986],\n              [-76.562676, 37.218252],\n              [-76.562895, 37.218515],\n              [-76.563224, 37.218909],\n              [-76.563676, 37.219452],\n              [-76.564447, 37.220104],\n              [-76.565094, 37.220652],\n              [-76.56539, 37.220329],\n              [-76.565719, 37.219969],\n              [-76.565768, 37.219915],\n              [-76.565838, 37.219838],\n              [-76.566541, 37.21907],\n              [-76.56726, 37.218161],\n              [-76.56777, 37.21752],\n              [-76.568002, 37.217228],\n              [-76.568196, 37.217192],\n              [-76.56838, 37.217153],\n              [-76.568501, 37.217128],\n              [-76.568694, 37.217083],\n              [-76.568702, 37.217081],\n              [-76.568797, 37.217059],\n              [-76.569873, 37.21682],\n              [-76.570074, 37.216775],\n              [-76.570177, 37.216752],\n              [-76.57029, 37.216525],\n              [-76.570677, 37.215752],\n              [-76.573977, 37.215752],\n              [-76.574375, 37.213961],\n              [-76.574553, 37.213162],\n              [-76.574577, 37.213052],\n              [-76.575076, 37.212979],\n              [-76.57537, 37.213021],\n              [-76.576473, 37.213087],\n              [-76.57724, 37.213006],\n              [-76.577506, 37.212958],\n              [-76.579608, 37.212926],\n              [-76.580781, 37.212905],\n              [-76.581577, 37.212852],\n              [-76.581581, 37.212822],\n              [-76.581715, 37.212798],\n              [-76.581883, 37.21276],\n              [-76.582077, 37.212713],\n              [-76.582317, 37.212652],\n              [-76.58237, 37.212638],\n              [-76.582448, 37.212607],\n              [-76.582489, 37.212621],\n              [-76.583125, 37.212681],\n              [-76.584092, 37.212762],\n              [-76.586322, 37.212972],\n              [-76.58753, 37.213093],\n              [-76.587651, 37.213166],\n              [-76.588041, 37.21339],\n              [-76.588259, 37.213515],\n              [-76.588878, 37.213853],\n              [-76.589381, 37.214114],\n              [-76.589748, 37.214296],\n              [-76.590017, 37.214429],\n              [-76.590663, 37.214732],\n              [-76.591485, 37.21509],\n              [-76.591477, 37.215032],\n              [-76.591453, 37.214861],\n              [-76.591437, 37.214746],\n              [-76.591434, 37.214728],\n              [-76.591482, 37.21472],\n              [-76.591475, 37.214682],\n              [-76.591523, 37.214355],\n              [-76.591638, 37.21426],\n              [-76.591677, 37.214232],\n              [-76.591837, 37.214424],\n              [-76.591879, 37.214507],\n              [-76.591919, 37.214588],\n              [-76.592029, 37.214808],\n              [-76.592213, 37.215049],\n              [-76.592412, 37.215311],\n              [-76.59254, 37.215479],\n              [-76.592545, 37.215485],\n              [-76.592568, 37.215516],\n              [-76.592583, 37.215535],\n              [-76.592603, 37.215561],\n              [-76.592645, 37.215616],\n              [-76.5927, 37.215688],\n              [-76.592742, 37.215756],\n              [-76.592866, 37.215955],\n              [-76.592972, 37.216127],\n              [-76.593533, 37.217032],\n              [-76.593741, 37.217864],\n              [-76.594237, 37.218744],\n              [-76.594493, 37.2194],\n              [-76.594893, 37.220008],\n              [-76.595065, 37.221128],\n              [-76.595101, 37.222232],\n              [-76.594669, 37.22316],\n              [-76.594365, 37.223992],\n              [-76.594633, 37.225395],\n              [-76.594726, 37.225913],\n              [-76.594813, 37.226296],\n              [-76.594799, 37.226611],\n              [-76.594781, 37.227],\n              [-76.594653, 37.227864],\n              [-76.594717, 37.228142],\n              [-76.594835, 37.228659],\n              [-76.594914, 37.229473],\n              [-76.594935, 37.22951],\n              [-76.595021, 37.230456],\n              [-76.595358, 37.231061],\n              [-76.595362, 37.231069],\n              [-76.595645, 37.231576],\n              [-76.596349, 37.232376],\n              [-76.597309, 37.233256],\n              [-76.598141, 37.23356],\n              [-76.598957, 37.23404],\n              [-76.599261, 37.234696],\n              [-76.599821, 37.235096],\n              [-76.600285, 37.235672],\n              [-76.60032, 37.235755],\n              [-76.600442, 37.236039],\n              [-76.600493, 37.236158],\n              [-76.600525, 37.236232],\n              [-76.600749, 37.23692],\n              [-76.600813, 37.237624],\n              [-76.601117, 37.2382],\n              [-76.603197, 37.237832],\n              [-76.603457, 37.237803],\n              [-76.604667, 37.237667],\n              [-76.604682, 37.237665],\n              [-76.606336, 37.23748],\n              [-76.606495, 37.237458],\n              [-76.60947, 37.237048],\n              [-76.613636, 37.236512],\n              [-76.614015, 37.236463],\n              [-76.614482, 37.236403],\n              [-76.614579, 37.23639],\n              [-76.614862, 37.236364],\n              [-76.61491, 37.23636],\n              [-76.615496, 37.236308],\n              [-76.615663, 37.236293],\n              [-76.616288, 37.236237],\n              [-76.616346, 37.236232],\n              [-76.617196, 37.236155],\n              [-76.617224, 37.236152],\n              [-76.617582, 37.23612],\n              [-76.61804, 37.236033],\n              [-76.621118, 37.235448],\n              [-76.623004, 37.2351],\n              [-76.623198, 37.235064],\n              [-76.624518, 37.234338],\n              [-76.624757, 37.234206],\n              [-76.625763, 37.233647],\n              [-76.625918, 37.23356],\n              [-76.626093, 37.233465],\n              [-76.626334, 37.233336],\n              [-76.626379, 37.233305],\n              [-76.626386, 37.2333],\n              [-76.626583, 37.233166],\n              [-76.62673, 37.233066],\n              [-76.626941, 37.232921],\n              [-76.627182, 37.232649],\n              [-76.627427, 37.232473],\n              [-76.627603, 37.232347],\n              [-76.627624, 37.232332],\n              [-76.627689, 37.232285],\n              [-76.627838, 37.232543],\n              [-76.628003, 37.232796],\n              [-76.628123, 37.23296],\n              [-76.628316, 37.233199],\n              [-76.628453, 37.233355],\n              [-76.628597, 37.233506],\n              [-76.628825, 37.233724],\n              [-76.628914, 37.233801],\n              [-76.629068, 37.233934],\n              [-76.629229, 37.23406],\n              [-76.629932, 37.234639],\n              [-76.63014, 37.23481],\n              [-76.63018, 37.234843],\n              [-76.630197, 37.234857],\n              [-76.630207, 37.234865],\n              [-76.630241, 37.234893],\n              [-76.63028, 37.234925],\n              [-76.630364, 37.234994],\n              [-76.630503, 37.235108],\n              [-76.630566, 37.23516],\n              [-76.63058, 37.235171],\n              [-76.630721, 37.235287],\n              [-76.630752, 37.235313],\n              [-76.630768, 37.235326],\n              [-76.630984, 37.235481],\n              [-76.631021, 37.235508],\n              [-76.631288, 37.235683],\n              [-76.63143, 37.235766],\n              [-76.631471, 37.23579],\n              [-76.631756, 37.235946],\n              [-76.631825, 37.23598],\n              [-76.631953, 37.236042],\n              [-76.632088, 37.236102],\n              [-76.632252, 37.236176],\n              [-76.632384, 37.236228],\n              [-76.632558, 37.236296],\n              [-76.632724, 37.236352],\n              [-76.632848, 37.236394],\n              [-76.632972, 37.236431],\n              [-76.633001, 37.23644],\n              [-76.633132, 37.23648],\n              [-76.633202, 37.236501],\n              [-76.633243, 37.236513],\n              [-76.633346, 37.23654],\n              [-76.633568, 37.23659],\n              [-76.633681, 37.236613],\n              [-76.633729, 37.236623],\n              [-76.633805, 37.236638],\n              [-76.633868, 37.23665],\n              [-76.634636, 37.236804],\n              [-76.634666, 37.23681],\n              [-76.634788, 37.236835],\n              [-76.636625, 37.237205],\n              [-76.636787, 37.23724],\n              [-76.638594, 37.237631],\n              [-76.639827, 37.237897],\n              [-76.640159, 37.237971],\n              [-76.641098, 37.23818],\n              [-76.642024, 37.238387],\n              [-76.644028, 37.238823],\n              [-76.644712, 37.238979],\n              [-76.645052, 37.23905],\n              [-76.646074, 37.239282],\n              [-76.646318, 37.239337],\n              [-76.646405, 37.239356],\n              [-76.647472, 37.239594],\n              [-76.647846, 37.239498],\n              [-76.647903, 37.239483],\n              [-76.648574, 37.239305],\n              [-76.648648, 37.239301],\n              [-76.648739, 37.239296],\n              [-76.649045, 37.23928],\n              [-76.649207, 37.239271],\n              [-76.651279, 37.239161],\n              [-76.65279, 37.240181],\n              [-76.653151, 37.240425],\n              [-76.65322, 37.240467],\n              [-76.653477, 37.240621],\n              [-76.653791, 37.240809],\n              [-76.654204, 37.241001],\n              [-76.654687, 37.241225],\n              [-76.65505, 37.241541],\n              [-76.655183, 37.241657],\n              [-76.655727, 37.242089],\n              [-76.656618, 37.242966],\n              [-76.656733, 37.243079],\n              [-76.657663, 37.244121],\n              [-76.658686, 37.245144],\n              [-76.659182, 37.24565],\n              [-76.659266, 37.245736],\n              [-76.659967, 37.246457],\n              [-76.660303, 37.246921],\n              [-76.660396, 37.247139],\n              [-76.660418, 37.247191],\n              [-76.660527, 37.247449],\n              [-76.660555, 37.247648],\n              [-76.660623, 37.248136],\n              [-76.660735, 37.248569],\n              [-76.660679, 37.249134],\n              [-76.660661, 37.249313],\n              [-76.660635, 37.249579],\n              [-76.660795, 37.249761],\n              [-76.661218, 37.250254],\n              [-76.661389, 37.250454],\n              [-76.661427, 37.250499],\n              [-76.66144, 37.250514],\n              [-76.661517, 37.250604],\n              [-76.661555, 37.250649],\n              [-76.661601, 37.250702],\n              [-76.661656, 37.250767],\n              [-76.661781, 37.250916],\n              [-76.661813, 37.250954],\n              [-76.661879, 37.251032],\n              [-76.661888, 37.251042],\n              [-76.66195, 37.25111],\n              [-76.662052, 37.251221],\n              [-76.662262, 37.251424],\n              [-76.662317, 37.251478],\n              [-76.662373, 37.251528],\n              [-76.662445, 37.251594],\n              [-76.662468, 37.251616],\n              [-76.662311, 37.251707],\n              [-76.6625, 37.25195],\n              [-76.662889, 37.252452],\n              [-76.662971, 37.252515],\n              [-76.663136, 37.252643],\n              [-76.663183, 37.25268],\n              [-76.66326, 37.252815],\n              [-76.663297, 37.252933],\n              [-76.663606, 37.253911],\n              [-76.663588, 37.253949],\n              [-76.663553, 37.254028],\n              [-76.663524, 37.254132],\n              [-76.66351, 37.254229],\n              [-76.663504, 37.254273],\n              [-76.663505, 37.254497],\n              [-76.663505, 37.254555],\n              [-76.663509, 37.254608],\n              [-76.663544, 37.255093],\n              [-76.663545, 37.25511],\n              [-76.663593, 37.255768],\n              [-76.663639, 37.256409],\n              [-76.663636, 37.25666],\n              [-76.663604, 37.256858],\n              [-76.663602, 37.25687],\n              [-76.663569, 37.257025],\n              [-76.663548, 37.2571],\n              [-76.663542, 37.257123],\n              [-76.663531, 37.257163],\n              [-76.663443, 37.257392],\n              [-76.663497, 37.257442],\n              [-76.663554, 37.257514],\n              [-76.663593, 37.257592],\n              [-76.663643, 37.257777],\n              [-76.663683, 37.25799],\n              [-76.6637, 37.258115],\n              [-76.663752, 37.258405],\n              [-76.663754, 37.258415],\n              [-76.663794, 37.258637],\n              [-76.663881, 37.259022],\n              [-76.663885, 37.259037],\n              [-76.663968, 37.259355],\n              [-76.66401, 37.259516],\n              [-76.664027, 37.259585],\n              [-76.664049, 37.25967],\n              [-76.664062, 37.259722],\n              [-76.664069, 37.259748],\n              [-76.664079, 37.259788],\n              [-76.664084, 37.259804],\n              [-76.664131, 37.259967],\n              [-76.664237, 37.260334],\n              [-76.664233, 37.260382],\n              [-76.664212, 37.260428],\n              [-76.664136, 37.260513],\n              [-76.664174, 37.260554],\n              [-76.664261, 37.260662],\n              [-76.664291, 37.260705],\n              [-76.664338, 37.260773],\n              [-76.66442, 37.260919],\n              [-76.664464, 37.261023],\n              [-76.664468, 37.261034],\n              [-76.664575, 37.261347],\n              [-76.664676, 37.261679],\n              [-76.664731, 37.261861],\n              [-76.664763, 37.26195],\n              [-76.664875, 37.262265],\n              [-76.664938, 37.262426],\n              [-76.66527, 37.26316],\n              [-76.665276, 37.263174],\n              [-76.665463, 37.263585],\n              [-76.665555, 37.263744],\n              [-76.665663, 37.263897],\n              [-76.665794, 37.264041],\n              [-76.665826, 37.26407],\n              [-76.66597, 37.264204],\n              [-76.666895, 37.26493],\n              [-76.667115, 37.265081],\n              [-76.667167, 37.265112],\n              [-76.667341, 37.265217],\n              [-76.667394, 37.265249],\n              [-76.667589, 37.265351],\n              [-76.667953, 37.265513],\n              [-76.668001, 37.265534],\n              [-76.668511, 37.265759],\n              [-76.668654, 37.265819],\n              [-76.668802, 37.26588],\n              [-76.669101, 37.265987],\n              [-76.669268, 37.266037],\n              [-76.669274, 37.266039],\n              [-76.669568, 37.266105],\n              [-76.669799, 37.26614],\n              [-76.66987, 37.266147],\n              [-76.669939, 37.266153],\n              [-76.669987, 37.266158],\n              [-76.670167, 37.266166],\n              [-76.670435, 37.266167],\n              [-76.670543, 37.26616],\n              [-76.670656, 37.266152],\n              [-76.670695, 37.266149],\n              [-76.670949, 37.266122],\n              [-76.67205, 37.266006],\n              [-76.672253, 37.265986],\n              [-76.672464, 37.265968],\n              [-76.673018, 37.265937],\n              [-76.674612, 37.265893],\n              [-76.675043, 37.265875],\n              [-76.675126, 37.265871],\n              [-76.675151, 37.265869],\n              [-76.675179, 37.265867],\n              [-76.675254, 37.265862],\n              [-76.675698, 37.265822],\n              [-76.676077, 37.265772],\n              [-76.6761, 37.265769],\n              [-76.67613, 37.265766],\n              [-76.67664, 37.265707],\n              [-76.677213, 37.265631],\n              [-76.677227, 37.265629],\n              [-76.677608, 37.265585],\n              [-76.677909, 37.265563],\n              [-76.678112, 37.265558],\n              [-76.678367, 37.26556],\n              [-76.678387, 37.26556],\n              [-76.678421, 37.265562],\n              [-76.678877, 37.265585],\n              [-76.679259, 37.265615],\n              [-76.679406, 37.265641],\n              [-76.67947, 37.265659],\n              [-76.679549, 37.265681],\n              [-76.679693, 37.265738],\n              [-76.679833, 37.265802],\n              [-76.679999, 37.265892],\n              [-76.680114, 37.265974],\n              [-76.680466, 37.266245],\n              [-76.681811, 37.267308],\n              [-76.681971, 37.267437],\n              [-76.682452, 37.267804],\n              [-76.682911, 37.268173],\n              [-76.68343, 37.268575],\n              [-76.684035, 37.269058],\n              [-76.684155, 37.269169],\n              [-76.684293, 37.269314],\n              [-76.684417, 37.269468],\n              [-76.684535, 37.269662],\n              [-76.684612, 37.269814],\n              [-76.684653, 37.269911],\n              [-76.684707, 37.270075],\n              [-76.68475, 37.270284],\n              [-76.684784, 37.270488],\n              [-76.684798, 37.270673],\n              [-76.684788, 37.270776],\n              [-76.684515, 37.271184],\n              [-76.684048, 37.271257],\n              [-76.683856, 37.272025],\n              [-76.683648, 37.272649],\n              [-76.683417, 37.273035],\n              [-76.683358, 37.273132],\n              [-76.683168, 37.273406],\n              [-76.68312, 37.273475],\n              [-76.683105, 37.273497],\n              [-76.683072, 37.273545],\n              [-76.683059, 37.273556],\n              [-76.682672, 37.273881],\n              [-76.682048, 37.274185],\n              [-76.681249, 37.274441],\n              [-76.680337, 37.274681],\n              [-76.680284, 37.274688],\n              [-76.680112, 37.274713],\n              [-76.678817, 37.275081],\n              [-76.678112, 37.275465],\n              [-76.677896, 37.27563],\n              [-76.677568, 37.275881],\n              [-76.677463, 37.276004],\n              [-76.67728, 37.276217],\n              [-76.677152, 37.276489],\n              [-76.677104, 37.27683],\n              [-76.677056, 37.277177],\n              [-76.6772, 37.277673],\n              [-76.677392, 37.278313],\n              [-76.677504, 37.278505],\n              [-76.677535, 37.278566],\n              [-76.677664, 37.278825],\n              [-76.67776, 37.279017],\n              [-76.67816, 37.280121],\n              [-76.678192, 37.280173],\n              [-76.678321, 37.280386],\n              [-76.67842, 37.280548],\n              [-76.678455, 37.280605],\n              [-76.679332, 37.281027],\n              [-76.679376, 37.281049],\n              [-76.679713, 37.281211],\n              [-76.680657, 37.281824],\n              [-76.680496, 37.283161],\n              [-76.680496, 37.284561],\n              [-76.680172, 37.285924],\n              [-76.680235, 37.286719],\n              [-76.680304, 37.287577],\n              [-76.680576, 37.289144],\n              [-76.680959, 37.290808],\n              [-76.681136, 37.292072],\n              [-76.681184, 37.292728],\n              [-76.681291, 37.293155],\n              [-76.681528, 37.293003],\n              [-76.68172, 37.292811],\n              [-76.68183, 37.292717],\n              [-76.681885, 37.292629],\n              [-76.681927, 37.292531],\n              [-76.68192, 37.292179],\n              [-76.681885, 37.292108],\n              [-76.681659, 37.29202],\n              [-76.6817, 37.291976],\n              [-76.681837, 37.291954],\n              [-76.68192, 37.29197],\n              [-76.681968, 37.291981],\n              [-76.68203, 37.292053],\n              [-76.682023, 37.292179],\n              [-76.681982, 37.292333],\n              [-76.682002, 37.292476],\n              [-76.682037, 37.292547],\n              [-76.682099, 37.292624],\n              [-76.682257, 37.292679],\n              [-76.682539, 37.292717],\n              [-76.682869, 37.292811],\n              [-76.683426, 37.293003],\n              [-76.683776, 37.293162],\n              [-76.684168, 37.293311],\n              [-76.68489, 37.293497],\n              [-76.685055, 37.293569],\n              [-76.685179, 37.293646],\n              [-76.685234, 37.293734],\n              [-76.68533, 37.293789],\n              [-76.68544, 37.293794],\n              [-76.685667, 37.293717],\n              [-76.685853, 37.293547],\n              [-76.685997, 37.293437],\n              [-76.686451, 37.293124],\n              [-76.686857, 37.292965],\n              [-76.686874, 37.292961],\n              [-76.68698, 37.292938],\n              [-76.686975, 37.292966],\n              [-76.6871, 37.292936],\n              [-76.687815, 37.292954],\n              [-76.68821, 37.292931],\n              [-76.688709, 37.292729],\n              [-76.688838, 37.2927],\n              [-76.688999, 37.292665],\n              [-76.689141, 37.292678],\n              [-76.689263, 37.29269],\n              [-76.689745, 37.292805],\n              [-76.690219, 37.292663],\n              [-76.690391, 37.292272],\n              [-76.690906, 37.29147],\n              [-76.691154, 37.291069],\n              [-76.691285, 37.290855],\n              [-76.691257, 37.290125],\n              [-76.690824, 37.289707],\n              [-76.690707, 37.28907],\n              [-76.690913, 37.288724],\n              [-76.691656, 37.288081],\n              [-76.691656, 37.288053],\n              [-76.691738, 37.287466],\n              [-76.692398, 37.286988],\n              [-76.692914, 37.286828],\n              [-76.693113, 37.286691],\n              [-76.693368, 37.286642],\n              [-76.693856, 37.286762],\n              [-76.693945, 37.286642],\n              [-76.694516, 37.286438],\n              [-76.694703, 37.286116],\n              [-76.69471, 37.286103],\n              [-76.694832, 37.285894],\n              [-76.6951, 37.285708],\n              [-76.696214, 37.285685],\n              [-76.696874, 37.285383],\n              [-76.697988, 37.285295],\n              [-76.698503, 37.285136],\n              [-76.699101, 37.284768],\n              [-76.699672, 37.28413],\n              [-76.699729, 37.284086],\n              [-76.699742, 37.284076],\n              [-76.699752, 37.284069],\n              [-76.699767, 37.284058],\n              [-76.699789, 37.284041],\n              [-76.700467, 37.283522],\n              [-76.700992, 37.28312],\n              [-76.701123, 37.28288],\n              [-76.701529, 37.282969],\n              [-76.701632, 37.282992],\n              [-76.701761, 37.28302],\n              [-76.701837, 37.283037],\n              [-76.70214, 37.283158],\n              [-76.702346, 37.283141],\n              [-76.702772, 37.283075],\n              [-76.702903, 37.283075],\n              [-76.70324, 37.283134],\n              [-76.703925, 37.282945],\n              [-76.705074, 37.282601],\n              [-76.70605, 37.282361],\n              [-76.706849, 37.282265],\n              [-76.708513, 37.282297],\n              [-76.709777, 37.282297],\n              [-76.709746, 37.281634],\n              [-76.709745, 37.281619],\n              [-76.709745, 37.281609],\n              [-76.709729, 37.281161],\n              [-76.70973, 37.281149],\n              [-76.709848, 37.280194],\n              [-76.709857, 37.280121],\n              [-76.71001, 37.279147],\n              [-76.710033, 37.279001],\n              [-76.710049, 37.277657],\n              [-76.710369, 37.277657],\n              [-76.711009, 37.277865],\n              [-76.711561, 37.278223],\n              [-76.71187, 37.278306],\n              [-76.711965, 37.278344],\n              [-76.712385, 37.278554],\n              [-76.712714, 37.278741],\n              [-76.712783, 37.278779],\n              [-76.713217, 37.279049],\n              [-76.713825, 37.279488],\n              [-76.713866, 37.279518],\n              [-76.714166, 37.279699],\n              [-76.714341, 37.279822],\n              [-76.714462, 37.279916],\n              [-76.714764, 37.280153],\n              [-76.714847, 37.280218],\n              [-76.715316, 37.280569],\n              [-76.71566, 37.280903],\n              [-76.716642, 37.281873],\n              [-76.717121, 37.282345],\n              [-76.717905, 37.283257],\n              [-76.718385, 37.284073],\n              [-76.718604, 37.284372],\n              [-76.718617, 37.28439],\n              [-76.719089, 37.285033],\n              [-76.719221, 37.285248],\n              [-76.719345, 37.285449],\n              [-76.719569, 37.285897],\n              [-76.719574, 37.285921],\n              [-76.719662, 37.286096],\n              [-76.719715, 37.2862],\n              [-76.719752, 37.286273],\n              [-76.720064, 37.286732],\n              [-76.720247, 37.287088],\n              [-76.720498, 37.287576],\n              [-76.720809, 37.288369],\n              [-76.720959, 37.288695],\n              [-76.721106, 37.289045],\n              [-76.721534, 37.290007],\n              [-76.721731, 37.290466],\n              [-76.722583, 37.292415],\n              [-76.723093, 37.293581],\n              [-76.723167, 37.293751],\n              [-76.723514, 37.293863],\n              [-76.72377, 37.294418],\n              [-76.723956, 37.294846],\n              [-76.724181, 37.295363],\n              [-76.724298, 37.295633],\n              [-76.725491, 37.295199],\n              [-76.725611, 37.295441],\n              [-76.725714, 37.29565],\n              [-76.725782, 37.295789],\n              [-76.725961, 37.296152],\n              [-76.72606, 37.296345],\n              [-76.726253, 37.296736],\n              [-76.726564, 37.297373],\n              [-76.726842, 37.297929],\n              [-76.727036, 37.29832],\n              [-76.727266, 37.29879],\n              [-76.727316, 37.298917],\n              [-76.727375, 37.299099],\n              [-76.727397, 37.299175],\n              [-76.727437, 37.29935],\n              [-76.727469, 37.299553],\n              [-76.727563, 37.300334],\n              [-76.727628, 37.300834],\n              [-76.727548, 37.300955],\n              [-76.72747, 37.301096],\n              [-76.727441, 37.3011],\n              [-76.726985, 37.301168],\n              [-76.727201, 37.301824],\n              [-76.72715, 37.302152],\n              [-76.727138, 37.302232],\n              [-76.727129, 37.302323],\n              [-76.727089, 37.302737],\n              [-76.727116, 37.302799],\n              [-76.727211, 37.303061],\n              [-76.727282, 37.303328],\n              [-76.727321, 37.303554],\n              [-76.727347, 37.303806],\n              [-76.727368, 37.304001],\n              [-76.727409, 37.304221],\n              [-76.72756, 37.304816],\n              [-76.72759, 37.304928],\n              [-76.727894, 37.306057],\n              [-76.728026, 37.306482],\n              [-76.728125, 37.306733],\n              [-76.728307, 37.30711],\n              [-76.728432, 37.307349],\n              [-76.728436, 37.307356],\n              [-76.728536, 37.307546],\n              [-76.728742, 37.307974],\n              [-76.728764, 37.308023],\n              [-76.728822, 37.308185],\n              [-76.728905, 37.308458],\n              [-76.728951, 37.308677],\n              [-76.728975, 37.308884],\n              [-76.728984, 37.309145],\n              [-76.728975, 37.309381],\n              [-76.728935, 37.309798],\n              [-76.728932, 37.310107],\n              [-76.728946, 37.310315],\n              [-76.72897, 37.31048],\n              [-76.729019, 37.310703],\n              [-76.729046, 37.310821],\n              [-76.729075, 37.310933],\n              [-76.729201, 37.311427],\n              [-76.729362, 37.312057],\n              [-76.729528, 37.312681],\n              [-76.729603, 37.312986],\n              [-76.729719, 37.313463],\n              [-76.729774, 37.313648],\n              [-76.72984, 37.313822],\n              [-76.729911, 37.313963],\n              [-76.729919, 37.313978],\n              [-76.729934, 37.314008],\n              [-76.730045, 37.314188],\n              [-76.730174, 37.314365],\n              [-76.730277, 37.314515],\n              [-76.730283, 37.314524],\n              [-76.730374, 37.314674],\n              [-76.73039, 37.314704],\n              [-76.730479, 37.314875],\n              [-76.730618, 37.315202],\n              [-76.730771, 37.315528],\n              [-76.730887, 37.315732],\n              [-76.730992, 37.315892],\n              [-76.731051, 37.315971],\n              [-76.731138, 37.316086],\n              [-76.731149, 37.3161],\n              [-76.731395, 37.316413],\n              [-76.731448, 37.31648],\n              [-76.731535, 37.316586],\n              [-76.73165, 37.316707],\n              [-76.731778, 37.316818],\n              [-76.731893, 37.316902],\n              [-76.731999, 37.316967],\n              [-76.732044, 37.316994],\n              [-76.732746, 37.317342],\n              [-76.733253, 37.317594],\n              [-76.733491, 37.317731],\n              [-76.733567, 37.317786],\n              [-76.733685, 37.317887],\n              [-76.733789, 37.317997],\n              [-76.733879, 37.318115],\n              [-76.733937, 37.318211],\n              [-76.733978, 37.318299],\n              [-76.734029, 37.318441],\n              [-76.734061, 37.318586],\n              [-76.734106, 37.319023],\n              [-76.734124, 37.319238],\n              [-76.734131, 37.319303],\n              [-76.734174, 37.319721],\n              [-76.734194, 37.319831],\n              [-76.734227, 37.31997],\n              [-76.734287, 37.320172],\n              [-76.734366, 37.320366],\n              [-76.73442, 37.320465],\n              [-76.734451, 37.320521],\n              [-76.734548, 37.320691],\n              [-76.734717, 37.32096],\n              [-76.734772, 37.321046],\n              [-76.734777, 37.321054],\n              [-76.73561, 37.322389],\n              [-76.735675, 37.322502],\n              [-76.735698, 37.322548],\n              [-76.735712, 37.322577],\n              [-76.73577, 37.322694],\n              [-76.735847, 37.322891],\n              [-76.735893, 37.323049],\n              [-76.73593, 37.323247],\n              [-76.73595, 37.323447],\n              [-76.735949, 37.323645],\n              [-76.735908, 37.324417],\n              [-76.735877, 37.3247],\n              [-76.735863, 37.324788],\n              [-76.735823, 37.32497],\n              [-76.735752, 37.325184],\n              [-76.735557, 37.325814],\n              [-76.735526, 37.325954],\n              [-76.735511, 37.326068],\n              [-76.735505, 37.326119],\n              [-76.735504, 37.326172],\n              [-76.735502, 37.326227],\n              [-76.7355, 37.326319],\n              [-76.735515, 37.326545],\n              [-76.735556, 37.326815],\n              [-76.735568, 37.326947],\n              [-76.735565, 37.327053],\n              [-76.735544, 37.327185],\n              [-76.73546, 37.327467],\n              [-76.735309, 37.327877],\n              [-76.735257, 37.328018],\n              [-76.735144, 37.328327],\n              [-76.735002, 37.328688],\n              [-76.734788, 37.329183],\n              [-76.734766, 37.329248],\n              [-76.73473, 37.329351],\n              [-76.734668, 37.329436],\n              [-76.734621, 37.329527],\n              [-76.734596, 37.329604],\n              [-76.734562, 37.329763],\n              [-76.734543, 37.329939],\n              [-76.734528, 37.330189],\n              [-76.734526, 37.330227],\n              [-76.734519, 37.330363],\n              [-76.734496, 37.330806],\n              [-76.734509, 37.331036],\n              [-76.73454, 37.331264],\n              [-76.734555, 37.331333],\n              [-76.734578, 37.331434],\n              [-76.734643, 37.331637],\n              [-76.734667, 37.331692],\n              [-76.734839, 37.33181],\n              [-76.734886, 37.331843],\n              [-76.734958, 37.331892],\n              [-76.73539, 37.332114],\n              [-76.735498, 37.33219],\n              [-76.73565, 37.332285],\n              [-76.736001, 37.332456],\n              [-76.736282, 37.332576],\n              [-76.736303, 37.332585],\n              [-76.736323, 37.332593],\n              [-76.736426, 37.332633],\n              [-76.736633, 37.332721],\n              [-76.736914, 37.332831],\n              [-76.73709, 37.332891],\n              [-76.737116, 37.3329],\n              [-76.737172, 37.332917],\n              [-76.737206, 37.332925],\n              [-76.737364, 37.332962],\n              [-76.737719, 37.333022],\n              [-76.737962, 37.333076],\n              [-76.738189, 37.33315],\n              [-76.73845, 37.333257],\n              [-76.738701, 37.333382],\n              [-76.738725, 37.333394],\n              [-76.738953, 37.333511],\n              [-76.739116, 37.333589],\n              [-76.739185, 37.333622],\n              [-76.739428, 37.333737],\n              [-76.73963, 37.333827],\n              [-76.739973, 37.333967],\n              [-76.740223, 37.334058],\n              [-76.740384, 37.334116],\n              [-76.740576, 37.334185],\n              [-76.741006, 37.334335],\n              [-76.741164, 37.33439],\n              [-76.741995, 37.33468],\n              [-76.742287, 37.33478],\n              [-76.74308, 37.335053],\n              [-76.743258, 37.335114],\n              [-76.743268, 37.335117],\n              [-76.743877, 37.335329],\n              [-76.744187, 37.335447],\n              [-76.744418, 37.33555],\n              [-76.744693, 37.33569],\n              [-76.745223, 37.336],\n              [-76.745495, 37.336153],\n              [-76.745825, 37.33633],\n              [-76.745861, 37.336349],\n              [-76.746091, 37.336459],\n              [-76.746421, 37.336603],\n              [-76.746644, 37.336687],\n              [-76.746778, 37.336731],\n              [-76.747184, 37.336855],\n              [-76.747366, 37.336907],\n              [-76.747721, 37.336999],\n              [-76.747978, 37.33708],\n              [-76.748336, 37.337213],\n              [-76.748674, 37.337354],\n              [-76.749038, 37.337523],\n              [-76.749205, 37.33761],\n              [-76.749393, 37.337607],\n              [-76.749528, 37.337604],\n              [-76.749578, 37.337603],\n              [-76.74965, 37.337603],\n              [-76.749711, 37.337602],\n              [-76.749732, 37.337601],\n              [-76.749855, 37.3376],\n              [-76.749918, 37.337599],\n              [-76.750071, 37.337597],\n              [-76.750132, 37.337643],\n              [-76.75028, 37.337754],\n              [-76.75065, 37.337985],\n              [-76.750756, 37.338035],\n              [-76.75087, 37.338072],\n              [-76.751116, 37.338113],\n              [-76.751442, 37.338146],\n              [-76.751717, 37.338182],\n              [-76.751754, 37.33818],\n              [-76.751767, 37.33818],\n              [-76.751779, 37.338179],\n              [-76.751785, 37.338179],\n              [-76.751796, 37.338176],\n              [-76.751806, 37.338173],\n              [-76.751814, 37.33817],\n              [-76.751821, 37.338168],\n              [-76.751831, 37.338165],\n              [-76.751848, 37.33816],\n              [-76.751967, 37.338092],\n              [-76.752038, 37.338052],\n              [-76.752237, 37.33793],\n              [-76.75233, 37.338014],\n              [-76.752782, 37.33842],\n              [-76.753074, 37.338682],\n              [-76.754544, 37.340161],\n              [-76.754848, 37.340521],\n              [-76.754728, 37.340744],\n              [-76.75472, 37.34076],\n              [-76.754252, 37.342537],\n              [-76.754236, 37.342596],\n              [-76.753699, 37.344642],\n              [-76.753394, 37.345443],\n              [-76.753013, 37.345778],\n              [-76.753008, 37.34592],\n              [-76.753136, 37.346365],\n              [-76.753487, 37.34678],\n              [-76.753553, 37.347054],\n              [-76.7535, 37.347402],\n              [-76.753489, 37.347468],\n              [-76.753433, 37.347808],\n              [-76.753426, 37.347931],\n              [-76.753274, 37.348403],\n              [-76.753274, 37.348585],\n              [-76.753322, 37.34876],\n              [-76.753515, 37.348925],\n              [-76.753686, 37.34903],\n              [-76.75401, 37.349162],\n              [-76.754478, 37.349299],\n              [-76.754636, 37.349371],\n              [-76.754766, 37.349464],\n              [-76.754821, 37.349596],\n              [-76.75478, 37.34975],\n              [-76.75478, 37.349794],\n              [-76.75476, 37.349836],\n              [-76.754725, 37.349909],\n              [-76.754656, 37.35014],\n              [-76.754621, 37.350365],\n              [-76.754656, 37.35059],\n              [-76.754937, 37.351189],\n              [-76.75496, 37.351317],\n              [-76.754972, 37.351387],\n              [-76.75493, 37.351799],\n              [-76.754833, 37.352255],\n              [-76.754826, 37.35242],\n              [-76.754854, 37.352612],\n              [-76.754922, 37.352843],\n              [-76.754946, 37.352889],\n              [-76.754991, 37.352975],\n              [-76.754991, 37.353018],\n              [-76.755211, 37.353485],\n              [-76.755266, 37.353508],\n              [-76.755403, 37.353793],\n              [-76.755513, 37.354227]\n            ]\n          ],\n          [\n            [\n              [-82.662938, 36.921225],\n              [-82.661772, 36.918901],\n              [-82.661686, 36.918731],\n              [-82.661606, 36.918571],\n              [-82.661268, 36.91863],\n              [-82.660588, 36.918749],\n              [-82.660295, 36.918811],\n              [-82.660191, 36.918833],\n              [-82.658902, 36.919109],\n              [-82.658132, 36.918783],\n              [-82.656159, 36.917985],\n              [-82.655907, 36.917883],\n              [-82.655406, 36.917678],\n              [-82.655377, 36.917666],\n              [-82.655367, 36.917662],\n              [-82.655343, 36.917652],\n              [-82.655203, 36.917595],\n              [-82.655161, 36.917578],\n              [-82.655142, 36.91757],\n              [-82.655142, 36.917245],\n              [-82.653515, 36.917222],\n              [-82.651847, 36.917136],\n              [-82.651684, 36.917128],\n              [-82.651263, 36.917106],\n              [-82.650266, 36.9165],\n              [-82.650412, 36.912724],\n              [-82.646916, 36.914524],\n              [-82.646508, 36.914734],\n              [-82.646976, 36.913551],\n              [-82.647046, 36.913375],\n              [-82.648757, 36.90952],\n              [-82.647921, 36.907715],\n              [-82.646794, 36.904551],\n              [-82.643685, 36.900484],\n              [-82.640351, 36.902461],\n              [-82.637077, 36.904428],\n              [-82.636921, 36.904523],\n              [-82.637298, 36.906573],\n              [-82.633994, 36.906548],\n              [-82.633992, 36.906534],\n              [-82.63398, 36.906451],\n              [-82.633965, 36.906404],\n              [-82.633904, 36.906407],\n              [-82.629622, 36.906585],\n              [-82.629491, 36.906584],\n              [-82.624881, 36.906522],\n              [-82.624803, 36.906521],\n              [-82.618509, 36.906848],\n              [-82.617587, 36.906418],\n              [-82.616748, 36.90602],\n              [-82.615141, 36.905258],\n              [-82.613417, 36.910209],\n              [-82.613347, 36.910409],\n              [-82.613162, 36.910941],\n              [-82.612771, 36.912066],\n              [-82.612609, 36.91255],\n              [-82.615813, 36.912644],\n              [-82.61781, 36.912656],\n              [-82.613955, 36.913772],\n              [-82.618033, 36.915512],\n              [-82.620035, 36.914889],\n              [-82.620284, 36.914817],\n              [-82.61954, 36.915789],\n              [-82.619361, 36.916209],\n              [-82.619355, 36.916901],\n              [-82.619382, 36.917396],\n              [-82.61941, 36.917649],\n              [-82.619413, 36.917679],\n              [-82.619458, 36.918099],\n              [-82.619605, 36.918733],\n              [-82.61963, 36.918841],\n              [-82.619781, 36.919187],\n              [-82.619945, 36.91939],\n              [-82.620185, 36.919774],\n              [-82.620288, 36.92012],\n              [-82.620726, 36.920944],\n              [-82.620932, 36.921235],\n              [-82.621261, 36.921631],\n              [-82.621562, 36.922098],\n              [-82.621651, 36.9224],\n              [-82.621822, 36.922707],\n              [-82.621973, 36.923158],\n              [-82.622076, 36.923372],\n              [-82.622207, 36.923905],\n              [-82.622385, 36.924394],\n              [-82.622412, 36.924635],\n              [-82.622358, 36.924916],\n              [-82.622406, 36.925113],\n              [-82.622502, 36.925267],\n              [-82.622516, 36.925454],\n              [-82.622496, 36.925734],\n              [-82.622304, 36.926256],\n              [-82.622291, 36.926393],\n              [-82.622359, 36.926525],\n              [-82.622366, 36.926641],\n              [-82.622202, 36.927003],\n              [-82.622134, 36.927239],\n              [-82.622186, 36.927766],\n              [-82.621908, 36.928061],\n              [-82.620588, 36.929461],\n              [-82.618253, 36.930025],\n              [-82.618906, 36.931299],\n              [-82.617597, 36.932579],\n              [-82.616951, 36.932794],\n              [-82.614597, 36.933492],\n              [-82.612093, 36.934236],\n              [-82.609782, 36.934404],\n              [-82.605369, 36.934922],\n              [-82.6051, 36.934906],\n              [-82.6049, 36.93501],\n              [-82.598377, 36.935618],\n              [-82.598399, 36.935796],\n              [-82.598434, 36.935972],\n              [-82.598451, 36.936059],\n              [-82.598391, 36.936052],\n              [-82.598187, 36.936064],\n              [-82.598153, 36.936098],\n              [-82.598001, 36.936084],\n              [-82.597997, 36.936084],\n              [-82.597023, 36.935994],\n              [-82.595853, 36.935889],\n              [-82.590927, 36.934886],\n              [-82.59027, 36.935627],\n              [-82.590898, 36.937162],\n              [-82.590955, 36.937296],\n              [-82.590991, 36.937381],\n              [-82.591241, 36.937969],\n              [-82.591385, 36.938373],\n              [-82.592055, 36.94025],\n              [-82.592129, 36.940458],\n              [-82.592176, 36.940592],\n              [-82.592194, 36.940647],\n              [-82.591791, 36.94091],\n              [-82.591525, 36.941088],\n              [-82.590943, 36.941478],\n              [-82.590792, 36.941579],\n              [-82.590714, 36.941631],\n              [-82.590647, 36.941676],\n              [-82.590593, 36.941713],\n              [-82.590547, 36.941744],\n              [-82.590539, 36.941749],\n              [-82.589991, 36.942119],\n              [-82.589961, 36.942139],\n              [-82.589954, 36.942144],\n              [-82.589931, 36.94216],\n              [-82.589841, 36.94222],\n              [-82.589794, 36.942252],\n              [-82.589725, 36.942299],\n              [-82.589626, 36.942366],\n              [-82.589579, 36.942398],\n              [-82.589378, 36.942534],\n              [-82.589484, 36.943357],\n              [-82.589865, 36.943292],\n              [-82.590844, 36.943127],\n              [-82.591737, 36.94295],\n              [-82.591801, 36.942939],\n              [-82.591846, 36.94293],\n              [-82.594386, 36.942515],\n              [-82.595479, 36.942507],\n              [-82.597399, 36.94259],\n              [-82.597663, 36.94248],\n              [-82.597839, 36.942337],\n              [-82.597863, 36.942318],\n              [-82.598041, 36.942172],\n              [-82.598317, 36.941919],\n              [-82.598362, 36.941962],\n              [-82.598657, 36.94219],\n              [-82.598674, 36.942203],\n              [-82.597466, 36.943335],\n              [-82.597232, 36.943506],\n              [-82.596779, 36.943837],\n              [-82.595616, 36.944451],\n              [-82.595377, 36.944577],\n              [-82.594355, 36.945265],\n              [-82.594009, 36.945419],\n              [-82.593266, 36.945751],\n              [-82.593018, 36.945862],\n              [-82.592966, 36.945885],\n              [-82.592937, 36.945898],\n              [-82.592931, 36.945901],\n              [-82.59292, 36.945906],\n              [-82.592889, 36.94592],\n              [-82.592808, 36.945956],\n              [-82.592734, 36.945989],\n              [-82.592391, 36.946142],\n              [-82.592377, 36.946148],\n              [-82.592312, 36.946177],\n              [-82.591864, 36.946378],\n              [-82.591848, 36.946385],\n              [-82.591813, 36.946401],\n              [-82.591764, 36.946423],\n              [-82.591748, 36.94643],\n              [-82.591586, 36.946502],\n              [-82.591547, 36.946542],\n              [-82.591477, 36.946612],\n              [-82.591398, 36.946693],\n              [-82.591342, 36.946748],\n              [-82.591276, 36.946816],\n              [-82.591254, 36.946838],\n              [-82.591044, 36.947051],\n              [-82.590645, 36.947669],\n              [-82.590511, 36.947938],\n              [-82.590424, 36.948114],\n              [-82.590303, 36.948356],\n              [-82.588894, 36.951189],\n              [-82.589505, 36.951373],\n              [-82.589592, 36.951482],\n              [-82.593212, 36.956017],\n              [-82.59333, 36.956077],\n              [-82.593432, 36.956131],\n              [-82.597533, 36.958321],\n              [-82.597724, 36.958058],\n              [-82.597789, 36.957968],\n              [-82.597913, 36.957797],\n              [-82.597465, 36.957467],\n              [-82.597109, 36.956933],\n              [-82.597083, 36.956895],\n              [-82.597016, 36.956775],\n              [-82.596812, 36.956407],\n              [-82.595542, 36.956388],\n              [-82.595603, 36.956212],\n              [-82.596446, 36.955393],\n              [-82.596812, 36.955129],\n              [-82.596824, 36.954973],\n              [-82.599003, 36.956048],\n              [-82.598915, 36.956165],\n              [-82.598826, 36.956376],\n              [-82.598509, 36.956499],\n              [-82.599056, 36.956631],\n              [-82.598979, 36.956829],\n              [-82.598947, 36.95691],\n              [-82.59892, 36.95698],\n              [-82.599072, 36.957102],\n              [-82.599302, 36.957286],\n              [-82.600177, 36.957417],\n              [-82.601216, 36.957439],\n              [-82.601322, 36.957567],\n              [-82.601954, 36.958334],\n              [-82.601845, 36.958574],\n              [-82.602152, 36.958686],\n              [-82.602123, 36.958737],\n              [-82.60223, 36.958787],\n              [-82.60208, 36.959052],\n              [-82.602043, 36.959118],\n              [-82.601985, 36.959222],\n              [-82.601944, 36.959294],\n              [-82.601872, 36.959422],\n              [-82.601845, 36.959469],\n              [-82.602337, 36.959731],\n              [-82.60235, 36.959763],\n              [-82.602419, 36.959928],\n              [-82.6033, 36.959644],\n              [-82.60337, 36.959621],\n              [-82.603531, 36.959569],\n              [-82.603619, 36.959599],\n              [-82.604946, 36.959157],\n              [-82.605073, 36.959115],\n              [-82.605275, 36.95852],\n              [-82.605365, 36.958253],\n              [-82.605325, 36.958088],\n              [-82.605403, 36.958017],\n              [-82.605416, 36.957909],\n              [-82.605554, 36.95716],\n              [-82.605775, 36.957052],\n              [-82.605903, 36.95699],\n              [-82.606226, 36.955872],\n              [-82.606091, 36.955866],\n              [-82.606283, 36.955566],\n              [-82.606283, 36.954966],\n              [-82.606447, 36.954584],\n              [-82.606477, 36.954379],\n              [-82.60654, 36.953937],\n              [-82.606657, 36.953431],\n              [-82.606775, 36.953082],\n              [-82.606801, 36.953014],\n              [-82.606963, 36.952599],\n              [-82.607805, 36.95103],\n              [-82.608405, 36.950469],\n              [-82.609593, 36.949709],\n              [-82.610282, 36.949192],\n              [-82.61085, 36.948719],\n              [-82.611053, 36.948466],\n              [-82.611159, 36.948536],\n              [-82.611323, 36.948646],\n              [-82.611452, 36.948717],\n              [-82.611497, 36.948741],\n              [-82.611635, 36.948817],\n              [-82.612069, 36.949056],\n              [-82.614604, 36.950527],\n              [-82.61476, 36.950617],\n              [-82.614764, 36.950635],\n              [-82.614808, 36.950823],\n              [-82.614932, 36.951114],\n              [-82.615062, 36.951328],\n              [-82.615028, 36.951454],\n              [-82.614935, 36.951522],\n              [-82.614795, 36.951625],\n              [-82.614487, 36.951669],\n              [-82.614328, 36.951635],\n              [-82.614282, 36.951625],\n              [-82.614206, 36.951609],\n              [-82.614148, 36.951569],\n              [-82.613885, 36.951389],\n              [-82.613684, 36.951196],\n              [-82.613667, 36.951179],\n              [-82.613405, 36.950928],\n              [-82.613076, 36.95078],\n              [-82.612809, 36.950785],\n              [-82.612679, 36.950879],\n              [-82.61252, 36.951115],\n              [-82.612461, 36.951203],\n              [-82.612201, 36.951615],\n              [-82.612165, 36.951837],\n              [-82.612139, 36.951994],\n              [-82.612111, 36.952046],\n              [-82.611982, 36.952285],\n              [-82.611789, 36.9526],\n              [-82.61149, 36.953088],\n              [-82.611196, 36.953632],\n              [-82.611135, 36.953983],\n              [-82.610964, 36.954555],\n              [-82.611073, 36.954818],\n              [-82.611265, 36.955137],\n              [-82.6113, 36.955163],\n              [-82.611532, 36.955335],\n              [-82.611882, 36.955532],\n              [-82.612115, 36.955598],\n              [-82.612317, 36.955638],\n              [-82.61297, 36.955768],\n              [-82.613525, 36.95583],\n              [-82.613533, 36.955831],\n              [-82.613662, 36.955845],\n              [-82.614144, 36.95588],\n              [-82.614279, 36.95589],\n              [-82.614467, 36.955904],\n              [-82.614623, 36.955969],\n              [-82.614737, 36.956017],\n              [-82.614854, 36.956066],\n              [-82.614926, 36.956096],\n              [-82.614942, 36.956103],\n              [-82.61495, 36.956106],\n              [-82.614999, 36.956127],\n              [-82.615036, 36.956142],\n              [-82.615068, 36.956155],\n              [-82.615209, 36.956322],\n              [-82.615193, 36.956746],\n              [-82.615768, 36.956723],\n              [-82.616379, 36.956701],\n              [-82.616937, 36.956378],\n              [-82.617405, 36.956014],\n              [-82.617851, 36.955778],\n              [-82.617998, 36.955594],\n              [-82.618366, 36.955134],\n              [-82.618608, 36.955149],\n              [-82.619667, 36.955156],\n              [-82.619791, 36.955459],\n              [-82.620242, 36.954922],\n              [-82.622981, 36.955189],\n              [-82.623053, 36.955196],\n              [-82.623811, 36.955267],\n              [-82.622706, 36.953859],\n              [-82.622638, 36.953791],\n              [-82.622478, 36.95363],\n              [-82.622421, 36.953403],\n              [-82.625356, 36.952693],\n              [-82.626024, 36.95236],\n              [-82.626091, 36.952326],\n              [-82.626435, 36.952149],\n              [-82.626469, 36.952131],\n              [-82.628073, 36.951295],\n              [-82.628781, 36.951295],\n              [-82.630761, 36.951649],\n              [-82.633385, 36.952475],\n              [-82.633866, 36.952626],\n              [-82.633893, 36.952634],\n              [-82.633897, 36.952636],\n              [-82.634, 36.952446],\n              [-82.634047, 36.952358],\n              [-82.634094, 36.952275],\n              [-82.634105, 36.952255],\n              [-82.634144, 36.952195],\n              [-82.634255, 36.952052],\n              [-82.634382, 36.951917],\n              [-82.634516, 36.951798],\n              [-82.634522, 36.951793],\n              [-82.634997, 36.951373],\n              [-82.635154, 36.951211],\n              [-82.635282, 36.951049],\n              [-82.635532, 36.95071],\n              [-82.635625, 36.950569],\n              [-82.635636, 36.950549],\n              [-82.635672, 36.950484],\n              [-82.635725, 36.950387],\n              [-82.636005, 36.949671],\n              [-82.636008, 36.949664],\n              [-82.636033, 36.949594],\n              [-82.63606, 36.949512],\n              [-82.636108, 36.949336],\n              [-82.636165, 36.949047],\n              [-82.636213, 36.948864],\n              [-82.636257, 36.94875],\n              [-82.636331, 36.948597],\n              [-82.636589, 36.948149],\n              [-82.636695, 36.947889],\n              [-82.636768, 36.947636],\n              [-82.636822, 36.947503],\n              [-82.636894, 36.947376],\n              [-82.637191, 36.946961],\n              [-82.637339, 36.946776],\n              [-82.637346, 36.946768],\n              [-82.637426, 36.946669],\n              [-82.637661, 36.946413],\n              [-82.637802, 36.946252],\n              [-82.638345, 36.945576],\n              [-82.638518, 36.945388],\n              [-82.638704, 36.945208],\n              [-82.638973, 36.944988],\n              [-82.639366, 36.944697],\n              [-82.640005, 36.944251],\n              [-82.640132, 36.944173],\n              [-82.640301, 36.944087],\n              [-82.640443, 36.944028],\n              [-82.640902, 36.943903],\n              [-82.641071, 36.943847],\n              [-82.641164, 36.94381],\n              [-82.641341, 36.943727],\n              [-82.641523, 36.943621],\n              [-82.64167, 36.943522],\n              [-82.641842, 36.943388],\n              [-82.642, 36.943244],\n              [-82.642157, 36.943078],\n              [-82.64266, 36.942534],\n              [-82.643044, 36.942152],\n              [-82.643062, 36.94213],\n              [-82.643097, 36.94207],\n              [-82.643116, 36.941993],\n              [-82.643112, 36.941932],\n              [-82.643112, 36.941927],\n              [-82.643054, 36.941738],\n              [-82.642995, 36.941546],\n              [-82.642983, 36.941488],\n              [-82.642983, 36.941414],\n              [-82.643002, 36.941341],\n              [-82.643037, 36.941273],\n              [-82.643284, 36.940982],\n              [-82.644281, 36.939926],\n              [-82.644509, 36.93969],\n              [-82.644874, 36.939311],\n              [-82.645034, 36.939132],\n              [-82.645178, 36.938944],\n              [-82.645235, 36.938847],\n              [-82.645352, 36.938613],\n              [-82.645467, 36.938451],\n              [-82.645579, 36.938319],\n              [-82.645597, 36.938297],\n              [-82.645735, 36.93817],\n              [-82.645842, 36.938072],\n              [-82.64585, 36.938065],\n              [-82.645869, 36.938046],\n              [-82.645877, 36.938037],\n              [-82.645914, 36.937993],\n              [-82.645936, 36.937963],\n              [-82.64596, 36.937921],\n              [-82.645966, 36.937907],\n              [-82.645986, 36.937865],\n              [-82.646003, 36.937796],\n              [-82.646009, 36.937772],\n              [-82.646011, 36.93776],\n              [-82.646024, 36.937652],\n              [-82.64603, 36.937543],\n              [-82.646029, 36.937536],\n              [-82.646023, 36.937445],\n              [-82.646008, 36.937308],\n              [-82.645969, 36.937086],\n              [-82.645891, 36.936792],\n              [-82.645845, 36.936676],\n              [-82.645773, 36.936536],\n              [-82.6457, 36.936425],\n              [-82.645581, 36.936278],\n              [-82.645447, 36.936141],\n              [-82.645182, 36.935908],\n              [-82.645128, 36.935861],\n              [-82.645117, 36.935851],\n              [-82.645029, 36.935754],\n              [-82.645006, 36.935715],\n              [-82.644989, 36.935655],\n              [-82.644983, 36.935574],\n              [-82.644996, 36.935495],\n              [-82.645026, 36.935418],\n              [-82.645187, 36.935158],\n              [-82.645338, 36.934934],\n              [-82.645382, 36.934878],\n              [-82.645455, 36.934801],\n              [-82.645588, 36.934682],\n              [-82.645883, 36.934463],\n              [-82.646325, 36.934113],\n              [-82.646345, 36.934097],\n              [-82.646671, 36.93384],\n              [-82.646725, 36.933805],\n              [-82.64704, 36.933601],\n              [-82.647172, 36.933509],\n              [-82.647292, 36.933406],\n              [-82.647432, 36.933261],\n              [-82.647444, 36.933248],\n              [-82.64746, 36.933231],\n              [-82.647505, 36.933182],\n              [-82.64769, 36.932968],\n              [-82.647725, 36.932938],\n              [-82.647786, 36.932886],\n              [-82.647937, 36.932785],\n              [-82.648074, 36.932713],\n              [-82.648217, 36.932658],\n              [-82.648366, 36.932617],\n              [-82.648519, 36.932589],\n              [-82.649095, 36.932534],\n              [-82.649248, 36.932514],\n              [-82.649302, 36.932504],\n              [-82.64931, 36.932502],\n              [-82.649437, 36.932476],\n              [-82.649589, 36.932433],\n              [-82.649599, 36.93243],\n              [-82.650108, 36.932285],\n              [-82.650241, 36.932244],\n              [-82.650287, 36.93223],\n              [-82.650419, 36.93219],\n              [-82.650604, 36.932133],\n              [-82.65067, 36.932113],\n              [-82.650757, 36.932081],\n              [-82.651156, 36.931935],\n              [-82.651301, 36.931873],\n              [-82.651627, 36.931735],\n              [-82.651742, 36.931721],\n              [-82.65175, 36.93172],\n              [-82.65234, 36.931644],\n              [-82.652739, 36.931644],\n              [-82.652683, 36.930728],\n              [-82.652684, 36.930712],\n              [-82.652691, 36.930524],\n              [-82.652692, 36.930507],\n              [-82.652695, 36.930449],\n              [-82.652701, 36.930266],\n              [-82.652726, 36.929661],\n              [-82.654557, 36.929929],\n              [-82.654621, 36.929652],\n              [-82.654887, 36.929175],\n              [-82.655086, 36.928822],\n              [-82.655126, 36.928751],\n              [-82.65523, 36.928566],\n              [-82.655333, 36.928385],\n              [-82.655392, 36.928279],\n              [-82.655535, 36.927928],\n              [-82.655522, 36.927559],\n              [-82.655473, 36.926086],\n              [-82.655469, 36.925957],\n              [-82.655464, 36.925758],\n              [-82.655419, 36.925365],\n              [-82.654928, 36.925399],\n              [-82.654892, 36.92502],\n              [-82.655678, 36.924684],\n              [-82.655459, 36.923603],\n              [-82.657558, 36.922901],\n              [-82.662938, 36.921225]\n            ]\n          ],\n          [\n            [\n              [-82.243386, 36.595658],\n              [-82.242908, 36.59566],\n              [-82.242067, 36.595666],\n              [-82.241922, 36.595665],\n              [-82.237078, 36.595673],\n              [-82.235868, 36.595676],\n              [-82.235568, 36.595676],\n              [-82.235494, 36.595677],\n              [-82.235153, 36.595677],\n              [-82.235069, 36.595678],\n              [-82.234943, 36.595678],\n              [-82.234566, 36.595679],\n              [-82.234441, 36.59568],\n              [-82.234174, 36.595679],\n              [-82.234123, 36.595679],\n              [-82.233169, 36.595681],\n              [-82.232852, 36.595682],\n              [-82.232235, 36.595683],\n              [-82.230387, 36.595686],\n              [-82.229771, 36.595688],\n              [-82.22943, 36.595688],\n              [-82.229346, 36.595689],\n              [-82.228935, 36.595681],\n              [-82.228928, 36.595681],\n              [-82.227702, 36.595718],\n              [-82.227292, 36.595731],\n              [-82.227227, 36.595732],\n              [-82.227036, 36.595738],\n              [-82.226972, 36.59574],\n              [-82.226951, 36.595753],\n              [-82.226889, 36.595795],\n              [-82.226869, 36.595809],\n              [-82.226751, 36.595862],\n              [-82.226671, 36.595874],\n              [-82.226566, 36.595891],\n              [-82.226259, 36.595903],\n              [-82.226104, 36.59589],\n              [-82.226049, 36.595868],\n              [-82.22599, 36.595846],\n              [-82.225879, 36.595751],\n              [-82.225514, 36.595747],\n              [-82.224419, 36.595737],\n              [-82.224054, 36.595734],\n              [-82.224036, 36.595751],\n              [-82.223935, 36.595833],\n              [-82.223841, 36.59591],\n              [-82.223736, 36.595959],\n              [-82.223523, 36.59599],\n              [-82.22351, 36.59599],\n              [-82.223356, 36.595999],\n              [-82.223034, 36.596015],\n              [-82.222619, 36.596037],\n              [-82.222293, 36.596019],\n              [-82.222071, 36.595977],\n              [-82.222031, 36.59597],\n              [-82.221942, 36.595932],\n              [-82.22185, 36.59587],\n              [-82.221801, 36.595816],\n              [-82.221717, 36.595821],\n              [-82.221571, 36.595821],\n              [-82.220883, 36.595823],\n              [-82.220654, 36.595825],\n              [-82.220195, 36.595826],\n              [-82.218821, 36.595832],\n              [-82.218363, 36.595835],\n              [-82.217541, 36.595835],\n              [-82.215718, 36.595845],\n              [-82.215074, 36.595848],\n              [-82.214619, 36.59585],\n              [-82.214501, 36.59585],\n              [-82.214335, 36.595852],\n              [-82.21428, 36.595853],\n              [-82.213683, 36.595853],\n              [-82.213055, 36.595855],\n              [-82.212846, 36.595857],\n              [-82.212678, 36.595857],\n              [-82.212173, 36.59586],\n              [-82.212006, 36.595861],\n              [-82.211389, 36.595865],\n              [-82.210796, 36.595868],\n              [-82.210711, 36.595785],\n              [-82.210445, 36.595769],\n              [-82.210349, 36.595766],\n              [-82.210226, 36.595764],\n              [-82.210063, 36.595755],\n              [-82.209968, 36.595751],\n              [-82.209855, 36.595745],\n              [-82.209516, 36.595729],\n              [-82.209404, 36.595724],\n              [-82.209342, 36.59572],\n              [-82.209158, 36.59571],\n              [-82.209097, 36.595707],\n              [-82.209077, 36.595706],\n              [-82.209019, 36.595703],\n              [-82.209, 36.595702],\n              [-82.208804, 36.595696],\n              [-82.208217, 36.59568],\n              [-82.208022, 36.595675],\n              [-82.207988, 36.595674],\n              [-82.207887, 36.595671],\n              [-82.207854, 36.59567],\n              [-82.20778, 36.595667],\n              [-82.207558, 36.595661],\n              [-82.207485, 36.595659],\n              [-82.207413, 36.595657],\n              [-82.207198, 36.595653],\n              [-82.207127, 36.595652],\n              [-82.207073, 36.59565],\n              [-82.206914, 36.595646],\n              [-82.206861, 36.595645],\n              [-82.206753, 36.595641],\n              [-82.206727, 36.595641],\n              [-82.20645, 36.595634],\n              [-82.205621, 36.595613],\n              [-82.205345, 36.595607],\n              [-82.205287, 36.595605],\n              [-82.205115, 36.595601],\n              [-82.205058, 36.5956],\n              [-82.204767, 36.595592],\n              [-82.203893, 36.595569],\n              [-82.203857, 36.595569],\n              [-82.203603, 36.595562],\n              [-82.203458, 36.595557],\n              [-82.203023, 36.595545],\n              [-82.202944, 36.595543],\n              [-82.202848, 36.595543],\n              [-82.202666, 36.595537],\n              [-82.20203, 36.59552],\n              [-82.201818, 36.595515],\n              [-82.201604, 36.595509],\n              [-82.200962, 36.595492],\n              [-82.200749, 36.595487],\n              [-82.200557, 36.595481],\n              [-82.199793, 36.595461],\n              [-82.199778, 36.59546],\n              [-82.199733, 36.595459],\n              [-82.199719, 36.595459],\n              [-82.1996, 36.595454],\n              [-82.199128, 36.595438],\n              [-82.198951, 36.595433],\n              [-82.198421, 36.595418],\n              [-82.198245, 36.595413],\n              [-82.198219, 36.595412],\n              [-82.198144, 36.595409],\n              [-82.198119, 36.595409],\n              [-82.197997, 36.595406],\n              [-82.197631, 36.5954],\n              [-82.19751, 36.595398],\n              [-82.197459, 36.595396],\n              [-82.197309, 36.595391],\n              [-82.197259, 36.59539],\n              [-82.197231, 36.595388],\n              [-82.197149, 36.595385],\n              [-82.197122, 36.595385],\n              [-82.197012, 36.595381],\n              [-82.19701, 36.59538],\n              [-82.196676, 36.595371],\n              [-82.196565, 36.595369],\n              [-82.196398, 36.595364],\n              [-82.195897, 36.59535],\n              [-82.195731, 36.595346],\n              [-82.195664, 36.595344],\n              [-82.195465, 36.595338],\n              [-82.195399, 36.595337],\n              [-82.194814, 36.595322],\n              [-82.194706, 36.595318],\n              [-82.19468, 36.595318],\n              [-82.1946, 36.595315],\n              [-82.19436, 36.595309],\n              [-82.194281, 36.595307],\n              [-82.194054, 36.5953],\n              [-82.193936, 36.595297],\n              [-82.193374, 36.595278],\n              [-82.193148, 36.595271],\n              [-82.193067, 36.595269],\n              [-82.192824, 36.595265],\n              [-82.192744, 36.595264],\n              [-82.192711, 36.595263],\n              [-82.192642, 36.595262],\n              [-82.192615, 36.595261],\n              [-82.192584, 36.59526],\n              [-82.192416, 36.595254],\n              [-82.191912, 36.595238],\n              [-82.191744, 36.595233],\n              [-82.191711, 36.595232],\n              [-82.191615, 36.595229],\n              [-82.191584, 36.595228],\n              [-82.191468, 36.595225],\n              [-82.191121, 36.595216],\n              [-82.191006, 36.595214],\n              [-82.190924, 36.595211],\n              [-82.190596, 36.595203],\n              [-82.190513, 36.595201],\n              [-82.190265, 36.595195],\n              [-82.190183, 36.595193],\n              [-82.190099, 36.595191],\n              [-82.190036, 36.595189],\n              [-82.190005, 36.595187],\n              [-82.18989, 36.595184],\n              [-82.189834, 36.595182],\n              [-82.189744, 36.59518],\n              [-82.189327, 36.595168],\n              [-82.189239, 36.595165],\n              [-82.188976, 36.595158],\n              [-82.188889, 36.595156],\n              [-82.188875, 36.595155],\n              [-82.188836, 36.595154],\n              [-82.188823, 36.595154],\n              [-82.188733, 36.595152],\n              [-82.188694, 36.59515],\n              [-82.188678, 36.59515],\n              [-82.188308, 36.595137],\n              [-82.18818, 36.595133],\n              [-82.188084, 36.595129],\n              [-82.187799, 36.595119],\n              [-82.187704, 36.595116],\n              [-82.187252, 36.595108],\n              [-82.18714, 36.595107],\n              [-82.186428, 36.595096],\n              [-82.185384, 36.595083],\n              [-82.185251, 36.595039],\n              [-82.185143, 36.595069],\n              [-82.183415, 36.595014],\n              [-82.183352, 36.595012],\n              [-82.183139, 36.595006],\n              [-82.1825, 36.59499],\n              [-82.182406, 36.594988],\n              [-82.182288, 36.594985],\n              [-82.18196, 36.594977],\n              [-82.181879, 36.594975],\n              [-82.181695, 36.594967],\n              [-82.181144, 36.594946],\n              [-82.180961, 36.594939],\n              [-82.180933, 36.594937],\n              [-82.180888, 36.594936],\n              [-82.180851, 36.594934],\n              [-82.180824, 36.594934],\n              [-82.180711, 36.59493],\n              [-82.180371, 36.59492],\n              [-82.180313, 36.594919],\n              [-82.180259, 36.594917],\n              [-82.180224, 36.594915],\n              [-82.180121, 36.594912],\n              [-82.180087, 36.594912],\n              [-82.180067, 36.594911],\n              [-82.18001, 36.594909],\n              [-82.179991, 36.594909],\n              [-82.179879, 36.594906],\n              [-82.179856, 36.594906],\n              [-82.179628, 36.594899],\n              [-82.179547, 36.594896],\n              [-82.179436, 36.594894],\n              [-82.179379, 36.594892],\n              [-82.17921, 36.594887],\n              [-82.179154, 36.594886],\n              [-82.179071, 36.594883],\n              [-82.178823, 36.594876],\n              [-82.178741, 36.594874],\n              [-82.178672, 36.594871],\n              [-82.178465, 36.594865],\n              [-82.178396, 36.594864],\n              [-82.178198, 36.594858],\n              [-82.177605, 36.59484],\n              [-82.177408, 36.594835],\n              [-82.177188, 36.594828],\n              [-82.17669, 36.594815],\n              [-82.176531, 36.594809],\n              [-82.176312, 36.594803],\n              [-82.176269, 36.594801],\n              [-82.176143, 36.594797],\n              [-82.176101, 36.594796],\n              [-82.175737, 36.594787],\n              [-82.175163, 36.594775],\n              [-82.174773, 36.594766],\n              [-82.174647, 36.594761],\n              [-82.174541, 36.594758],\n              [-82.174323, 36.59474],\n              [-82.174285, 36.594733],\n              [-82.174253, 36.594728],\n              [-82.174233, 36.594723],\n              [-82.17408, 36.594684],\n              [-82.174029, 36.594672],\n              [-82.173994, 36.594663],\n              [-82.173976, 36.594659],\n              [-82.173891, 36.59463],\n              [-82.173858, 36.594619],\n              [-82.173841, 36.594617],\n              [-82.173794, 36.594614],\n              [-82.173775, 36.594614],\n              [-82.173471, 36.594613],\n              [-82.172559, 36.594611],\n              [-82.172256, 36.594611],\n              [-82.172048, 36.59461],\n              [-82.171424, 36.594608],\n              [-82.171217, 36.594608],\n              [-82.170956, 36.594607],\n              [-82.169916, 36.594603],\n              [-82.169895, 36.594602],\n              [-82.169823, 36.594601],\n              [-82.169545, 36.5946],\n              [-82.169453, 36.5946],\n              [-82.167953, 36.594595],\n              [-82.167331, 36.594592],\n              [-82.167218, 36.594592],\n              [-82.16212, 36.594615],\n              [-82.161318, 36.594625],\n              [-82.161152, 36.594626],\n              [-82.160657, 36.594633],\n              [-82.160492, 36.594636],\n              [-82.160286, 36.594639],\n              [-82.160241, 36.59464],\n              [-82.159671, 36.59465],\n              [-82.159466, 36.594654],\n              [-82.159409, 36.594654],\n              [-82.159217, 36.594656],\n              [-82.158644, 36.594666],\n              [-82.158454, 36.594669],\n              [-82.158243, 36.594672],\n              [-82.15761, 36.594684],\n              [-82.157431, 36.594688],\n              [-82.1574, 36.594688],\n              [-82.157239, 36.59469],\n              [-82.156757, 36.594699],\n              [-82.156597, 36.594702],\n              [-82.156005, 36.594711],\n              [-82.154229, 36.594739],\n              [-82.153638, 36.594749],\n              [-82.153618, 36.594751],\n              [-82.153568, 36.594765],\n              [-82.15335, 36.594758],\n              [-82.152483, 36.594732],\n              [-82.152194, 36.594724],\n              [-82.15193, 36.594716],\n              [-82.151865, 36.594714],\n              [-82.151215, 36.594697],\n              [-82.151002, 36.594722],\n              [-82.150977, 36.594723],\n              [-82.150574, 36.594716],\n              [-82.15051, 36.594717],\n              [-82.150106, 36.594735],\n              [-82.149758, 36.594761],\n              [-82.149317, 36.594761],\n              [-82.14889, 36.594731],\n              [-82.148574, 36.594725],\n              [-82.147379, 36.594728],\n              [-82.146283, 36.594731],\n              [-82.146074, 36.594731],\n              [-82.145001, 36.595859],\n              [-82.14481, 36.596059],\n              [-82.143953, 36.596961],\n              [-82.141397, 36.599651],\n              [-82.133053, 36.608429],\n              [-82.132977, 36.608509],\n              [-82.129234, 36.612448],\n              [-82.128537, 36.612951],\n              [-82.127946, 36.613378],\n              [-82.127918, 36.6134],\n              [-82.126469, 36.614532],\n              [-82.125589, 36.615219],\n              [-82.125459, 36.615321],\n              [-82.125008, 36.615673],\n              [-82.123614, 36.616739],\n              [-82.123047, 36.617172],\n              [-82.122551, 36.61755],\n              [-82.121803, 36.618121],\n              [-82.121149, 36.61862],\n              [-82.121051, 36.618695],\n              [-82.120921, 36.618795],\n              [-82.115303, 36.623108],\n              [-82.115294, 36.623115],\n              [-82.11269, 36.625115],\n              [-82.111814, 36.625843],\n              [-82.110643, 36.626819],\n              [-82.10738, 36.628117],\n              [-82.105746, 36.628767],\n              [-82.108317, 36.631894],\n              [-82.108486, 36.632099],\n              [-82.109569, 36.633415],\n              [-82.110051, 36.634],\n              [-82.110654, 36.634715],\n              [-82.110732, 36.634809],\n              [-82.113189, 36.637724],\n              [-82.112756, 36.637859],\n              [-82.111201, 36.638343],\n              [-82.110999, 36.638406],\n              [-82.11098, 36.638412],\n              [-82.110921, 36.638431],\n              [-82.110736, 36.638853],\n              [-82.110246, 36.639579],\n              [-82.110232, 36.639649],\n              [-82.110126, 36.640092],\n              [-82.110095, 36.640251],\n              [-82.110031, 36.640574],\n              [-82.108758, 36.641652],\n              [-82.10777, 36.642223],\n              [-82.107739, 36.642522],\n              [-82.107728, 36.642578],\n              [-82.107678, 36.642825],\n              [-82.107675, 36.642957],\n              [-82.107376, 36.643173],\n              [-82.107134, 36.64337],\n              [-82.107193, 36.643467],\n              [-82.107318, 36.643675],\n              [-82.107361, 36.643759],\n              [-82.107156, 36.643856],\n              [-82.107084, 36.643866],\n              [-82.106928, 36.643888],\n              [-82.106096, 36.644004],\n              [-82.106223, 36.644185],\n              [-82.106652, 36.644783],\n              [-82.105993, 36.645134],\n              [-82.105417, 36.645575],\n              [-82.10514, 36.645787],\n              [-82.104849, 36.645912],\n              [-82.103076, 36.646674],\n              [-82.103095, 36.646704],\n              [-82.103156, 36.646783],\n              [-82.103344, 36.647036],\n              [-82.10364, 36.647443],\n              [-82.103943, 36.647847],\n              [-82.104052, 36.647973],\n              [-82.104098, 36.648115],\n              [-82.104117, 36.648964],\n              [-82.104125, 36.649393],\n              [-82.10417, 36.65102],\n              [-82.10657, 36.651057],\n              [-82.106977, 36.651114],\n              [-82.107435, 36.651178],\n              [-82.107771, 36.650975],\n              [-82.107943, 36.650871],\n              [-82.108115, 36.650768],\n              [-82.10824, 36.650691],\n              [-82.108366, 36.650615],\n              [-82.108766, 36.650371],\n              [-82.109166, 36.650128],\n              [-82.109448, 36.649956],\n              [-82.109736, 36.649776],\n              [-82.109792, 36.649747],\n              [-82.109852, 36.64971],\n              [-82.110147, 36.649509],\n              [-82.110271, 36.649602],\n              [-82.110408, 36.649757],\n              [-82.110546, 36.649912],\n              [-82.110802, 36.6502],\n              [-82.111007, 36.650422],\n              [-82.111077, 36.650498],\n              [-82.111274, 36.650697],\n              [-82.116673, 36.65613],\n              [-82.117513, 36.655693],\n              [-82.119436, 36.657769],\n              [-82.119413, 36.657929],\n              [-82.119295, 36.658119],\n              [-82.119076, 36.658312],\n              [-82.119101, 36.658437],\n              [-82.119401, 36.658861],\n              [-82.119415, 36.658875],\n              [-82.11944, 36.658902],\n              [-82.119578, 36.658784],\n              [-82.119853, 36.65851],\n              [-82.120662, 36.657763],\n              [-82.1208, 36.65799],\n              [-82.120866, 36.65807],\n              [-82.121002, 36.658285],\n              [-82.119813, 36.659089],\n              [-82.118245, 36.65981],\n              [-82.117446, 36.66011],\n              [-82.1172, 36.660154],\n              [-82.117069, 36.66013],\n              [-82.116485, 36.660816],\n              [-82.116448, 36.660855],\n              [-82.116089, 36.661203],\n              [-82.115529, 36.661473],\n              [-82.114542, 36.661962],\n              [-82.114525, 36.662107],\n              [-82.114198, 36.664699],\n              [-82.116699, 36.667793],\n              [-82.116872, 36.667917],\n              [-82.119578, 36.669757],\n              [-82.121324, 36.671077],\n              [-82.121793, 36.671431],\n              [-82.122062, 36.671304],\n              [-82.122347, 36.671081],\n              [-82.122618, 36.670821],\n              [-82.123566, 36.672031],\n              [-82.124059, 36.672672],\n              [-82.124203, 36.672812],\n              [-82.124347, 36.672946],\n              [-82.124655, 36.673086],\n              [-82.124837, 36.673064],\n              [-82.124984, 36.673046],\n              [-82.125214, 36.672886],\n              [-82.125482, 36.67249],\n              [-82.127389, 36.672759],\n              [-82.127929, 36.673332],\n              [-82.127602, 36.673709],\n              [-82.12774, 36.673907],\n              [-82.128071, 36.67397],\n              [-82.128317, 36.673838],\n              [-82.128452, 36.674321],\n              [-82.128899, 36.675013],\n              [-82.129141, 36.675254],\n              [-82.12867, 36.67574],\n              [-82.128493, 36.676055],\n              [-82.128401, 36.676245],\n              [-82.128559, 36.676277],\n              [-82.128755, 36.676158],\n              [-82.128799, 36.676062],\n              [-82.128857, 36.675922],\n              [-82.128998, 36.675785],\n              [-82.129201, 36.675643],\n              [-82.129588, 36.67563],\n              [-82.129807, 36.675559],\n              [-82.130027, 36.675451],\n              [-82.130117, 36.675438],\n              [-82.130184, 36.67543],\n              [-82.130241, 36.675453],\n              [-82.13035, 36.675497],\n              [-82.130419, 36.67568],\n              [-82.130428, 36.675704],\n              [-82.130431, 36.675724],\n              [-82.130461, 36.675961],\n              [-82.130494, 36.676051],\n              [-82.130521, 36.676082],\n              [-82.130555, 36.67612],\n              [-82.130592, 36.67614],\n              [-82.130617, 36.676155],\n              [-82.130621, 36.676156],\n              [-82.130677, 36.676175],\n              [-82.130784, 36.676212],\n              [-82.130824, 36.67623],\n              [-82.130863, 36.676247],\n              [-82.130925, 36.676318],\n              [-82.130946, 36.676368],\n              [-82.130981, 36.676452],\n              [-82.13102, 36.676518],\n              [-82.131047, 36.676539],\n              [-82.131079, 36.676565],\n              [-82.131233, 36.676613],\n              [-82.131341, 36.676623],\n              [-82.131489, 36.676681],\n              [-82.131589, 36.676707],\n              [-82.131672, 36.676729],\n              [-82.131727, 36.676791],\n              [-82.13178, 36.676923],\n              [-82.131937, 36.676936],\n              [-82.132184, 36.676911],\n              [-82.132323, 36.67678],\n              [-82.132319, 36.676727],\n              [-82.132295, 36.676431],\n              [-82.132143, 36.67617],\n              [-82.131866, 36.675918],\n              [-82.131797, 36.675856],\n              [-82.131751, 36.675783],\n              [-82.131748, 36.67575],\n              [-82.131747, 36.675738],\n              [-82.131738, 36.67564],\n              [-82.131807, 36.675603],\n              [-82.131938, 36.675588],\n              [-82.132626, 36.675493],\n              [-82.132016, 36.675337],\n              [-82.131619, 36.675292],\n              [-82.131469, 36.675276],\n              [-82.131276, 36.675205],\n              [-82.131247, 36.675122],\n              [-82.131242, 36.675099],\n              [-82.131203, 36.674923],\n              [-82.131138, 36.674871],\n              [-82.131083, 36.674845],\n              [-82.130767, 36.674807],\n              [-82.130279, 36.672975],\n              [-82.130274, 36.672955],\n              [-82.130072, 36.672191],\n              [-82.13004, 36.67207],\n              [-82.130027, 36.672021],\n              [-82.129965, 36.671785],\n              [-82.129552, 36.671365],\n              [-82.129548, 36.671361],\n              [-82.129411, 36.671037],\n              [-82.129718, 36.670858],\n              [-82.13002, 36.670704],\n              [-82.130102, 36.670485],\n              [-82.129968, 36.670042],\n              [-82.130604, 36.670135],\n              [-82.132077, 36.670351],\n              [-82.132122, 36.670447],\n              [-82.132168, 36.670545],\n              [-82.132327, 36.670571],\n              [-82.13256, 36.670488],\n              [-82.132631, 36.670463],\n              [-82.132818, 36.670289],\n              [-82.133068, 36.670132],\n              [-82.133072, 36.670131],\n              [-82.133486, 36.670022],\n              [-82.133592, 36.670148],\n              [-82.133592, 36.670165],\n              [-82.133593, 36.670214],\n              [-82.133593, 36.670254],\n              [-82.133594, 36.670309],\n              [-82.134033, 36.670351],\n              [-82.134201, 36.670243],\n              [-82.135287, 36.670309],\n              [-82.135492, 36.670374],\n              [-82.135495, 36.670375],\n              [-82.135777, 36.670598],\n              [-82.135852, 36.670657],\n              [-82.135929, 36.670757],\n              [-82.135948, 36.670846],\n              [-82.135959, 36.670898],\n              [-82.136209, 36.670441],\n              [-82.136856, 36.670439],\n              [-82.137682, 36.670364],\n              [-82.139182, 36.670217],\n              [-82.139522, 36.67044],\n              [-82.139937, 36.67062],\n              [-82.14029, 36.670683],\n              [-82.141243, 36.670657],\n              [-82.141605, 36.670641],\n              [-82.142781, 36.671042],\n              [-82.144593, 36.67166],\n              [-82.144579, 36.671225],\n              [-82.144578, 36.671039],\n              [-82.144578, 36.670859],\n              [-82.144576, 36.670713],\n              [-82.144574, 36.670632],\n              [-82.144574, 36.670614],\n              [-82.144573, 36.670515],\n              [-82.144572, 36.670465],\n              [-82.144549, 36.670033],\n              [-82.144548, 36.669987],\n              [-82.14385, 36.669886],\n              [-82.143692, 36.669931],\n              [-82.14363, 36.669949],\n              [-82.143493, 36.670059],\n              [-82.143328, 36.67019],\n              [-82.143138, 36.669917],\n              [-82.142807, 36.669844],\n              [-82.142512, 36.669915],\n              [-82.142306, 36.669997],\n              [-82.141099, 36.669757],\n              [-82.139067, 36.669556],\n              [-82.138844, 36.669469],\n              [-82.138769, 36.669316],\n              [-82.138441, 36.669488],\n              [-82.138244, 36.669533],\n              [-82.135959, 36.669537],\n              [-82.135767, 36.669466],\n              [-82.135635, 36.669358],\n              [-82.135493, 36.669311],\n              [-82.135356, 36.669422],\n              [-82.134859, 36.669446],\n              [-82.134165, 36.66938],\n              [-82.133639, 36.669358],\n              [-82.133084, 36.669248],\n              [-82.132502, 36.669137],\n              [-82.132003, 36.668916],\n              [-82.131918, 36.668696],\n              [-82.131855, 36.668681],\n              [-82.13178, 36.668475],\n              [-82.131615, 36.668254],\n              [-82.13134, 36.668254],\n              [-82.13101, 36.668232],\n              [-82.130542, 36.668254],\n              [-82.13046, 36.667746],\n              [-82.130377, 36.667282],\n              [-82.130295, 36.667061],\n              [-82.12914, 36.666046],\n              [-82.128948, 36.665869],\n              [-82.12881, 36.665648],\n              [-82.127958, 36.662844],\n              [-82.127793, 36.662689],\n              [-82.12738, 36.662645],\n              [-82.127215, 36.662601],\n              [-82.126968, 36.662446],\n              [-82.124396, 36.659063],\n              [-82.124108, 36.658737],\n              [-82.123806, 36.658516],\n              [-82.123393, 36.658383],\n              [-82.121274, 36.658105],\n              [-82.121129, 36.657884],\n              [-82.121052, 36.657762],\n              [-82.120989, 36.657663],\n              [-82.121102, 36.657575],\n              [-82.121185, 36.657523],\n              [-82.121221, 36.657505],\n              [-82.12171, 36.657161],\n              [-82.121992, 36.65695],\n              [-82.122166, 36.656811],\n              [-82.122406, 36.656575],\n              [-82.122474, 36.65652],\n              [-82.122644, 36.656395],\n              [-82.122817, 36.656256],\n              [-82.123016, 36.656082],\n              [-82.123126, 36.655999],\n              [-82.123198, 36.655937],\n              [-82.123274, 36.655886],\n              [-82.123282, 36.655881],\n              [-82.123294, 36.655873],\n              [-82.122877, 36.655742],\n              [-82.122874, 36.655741],\n              [-82.122844, 36.6557],\n              [-82.122591, 36.655363],\n              [-82.123862, 36.65458],\n              [-82.123973, 36.65451],\n              [-82.123655, 36.654179],\n              [-82.123887, 36.653985],\n              [-82.124086, 36.653818],\n              [-82.124642, 36.654418],\n              [-82.124704, 36.654485],\n              [-82.124722, 36.654504],\n              [-82.124828, 36.654617],\n              [-82.125025, 36.654611],\n              [-82.126554, 36.653297],\n              [-82.126571, 36.653197],\n              [-82.126538, 36.653076],\n              [-82.126365, 36.652844],\n              [-82.126343, 36.652814],\n              [-82.125365, 36.651604],\n              [-82.124448, 36.650471],\n              [-82.124071, 36.650482],\n              [-82.118896, 36.650597],\n              [-82.117196, 36.648942],\n              [-82.121917, 36.646112],\n              [-82.11547, 36.639535],\n              [-82.114501, 36.638549],\n              [-82.114887, 36.638357],\n              [-82.115073, 36.638265],\n              [-82.116564, 36.637526],\n              [-82.116582, 36.637517],\n              [-82.116591, 36.637513],\n              [-82.116615, 36.637501],\n              [-82.117994, 36.636817],\n              [-82.118163, 36.636735],\n              [-82.118764, 36.636435],\n              [-82.119719, 36.635962],\n              [-82.121681, 36.63499],\n              [-82.121944, 36.63479],\n              [-82.122311, 36.634516],\n              [-82.122343, 36.63449],\n              [-82.122847, 36.634494],\n              [-82.124985, 36.634513],\n              [-82.127123, 36.634542],\n              [-82.127209, 36.634543],\n              [-82.13199, 36.634601],\n              [-82.132894, 36.634615],\n              [-82.133669, 36.634627],\n              [-82.134812, 36.63464],\n              [-82.135091, 36.634643],\n              [-82.135188, 36.63457],\n              [-82.137162, 36.632939],\n              [-82.137549, 36.633558],\n              [-82.138393, 36.634893],\n              [-82.139904, 36.637296],\n              [-82.140215, 36.637789],\n              [-82.140415, 36.638107],\n              [-82.140502, 36.638071],\n              [-82.141941, 36.637473],\n              [-82.142062, 36.637424],\n              [-82.142068, 36.637421],\n              [-82.142203, 36.637367],\n              [-82.142227, 36.637357],\n              [-82.142879, 36.637089],\n              [-82.143985, 36.636644],\n              [-82.144553, 36.636415],\n              [-82.144979, 36.636242],\n              [-82.149027, 36.634603],\n              [-82.15191, 36.633436],\n              [-82.15203, 36.633385],\n              [-82.152167, 36.633333],\n              [-82.152404, 36.633216],\n              [-82.155157, 36.631899],\n              [-82.156246, 36.631502],\n              [-82.156404, 36.63144],\n              [-82.156474, 36.631412],\n              [-82.15787, 36.630898],\n              [-82.158567, 36.630641],\n              [-82.158107, 36.626752],\n              [-82.158164, 36.626752],\n              [-82.159523, 36.626755],\n              [-82.160191, 36.626757],\n              [-82.161172, 36.626758],\n              [-82.161607, 36.62676],\n              [-82.162078, 36.626771],\n              [-82.16268, 36.626794],\n              [-82.163453, 36.626837],\n              [-82.164125, 36.626895],\n              [-82.165025, 36.626987],\n              [-82.166299, 36.627128],\n              [-82.166525, 36.627153],\n              [-82.166559, 36.627156],\n              [-82.166777, 36.627179],\n              [-82.166795, 36.627181],\n              [-82.166947, 36.627196],\n              [-82.167348, 36.627239],\n              [-82.167682, 36.62727],\n              [-82.168103, 36.62731],\n              [-82.168466, 36.627335],\n              [-82.168592, 36.62734],\n              [-82.168966, 36.627354],\n              [-82.169639, 36.627372],\n              [-82.169772, 36.627372],\n              [-82.1702, 36.627374],\n              [-82.170861, 36.627363],\n              [-82.171423, 36.627345],\n              [-82.17227, 36.62732],\n              [-82.172628, 36.627305],\n              [-82.175581, 36.627221],\n              [-82.17572, 36.627214],\n              [-82.176104, 36.627205],\n              [-82.177239, 36.627173],\n              [-82.177331, 36.62717],\n              [-82.177367, 36.627169],\n              [-82.177451, 36.627165],\n              [-82.177888, 36.627142],\n              [-82.177895, 36.627142],\n              [-82.17829, 36.627104],\n              [-82.178506, 36.627073],\n              [-82.178697, 36.627037],\n              [-82.179007, 36.626972],\n              [-82.179641, 36.62684],\n              [-82.179846, 36.626744],\n              [-82.180584, 36.626398],\n              [-82.180712, 36.626338],\n              [-82.181457, 36.625875],\n              [-82.18246, 36.625262],\n              [-82.183098, 36.624873],\n              [-82.183279, 36.624764],\n              [-82.184292, 36.624151],\n              [-82.185427, 36.623642],\n              [-82.185786, 36.623481],\n              [-82.186326, 36.623238],\n              [-82.186382, 36.623213],\n              [-82.186862, 36.622998],\n              [-82.186884, 36.622988],\n              [-82.186904, 36.622979],\n              [-82.187112, 36.622886],\n              [-82.187278, 36.622767],\n              [-82.18754, 36.62258],\n              [-82.187753, 36.622428],\n              [-82.187919, 36.622309],\n              [-82.188089, 36.622188],\n              [-82.188311, 36.622103],\n              [-82.188931, 36.621868],\n              [-82.188951, 36.62186],\n              [-82.189115, 36.621805],\n              [-82.189186, 36.621782],\n              [-82.189299, 36.621744],\n              [-82.190361, 36.621391],\n              [-82.190837, 36.621231],\n              [-82.191612, 36.62095],\n              [-82.191969, 36.620823],\n              [-82.192417, 36.62066],\n              [-82.192431, 36.620654],\n              [-82.192457, 36.620642],\n              [-82.194112, 36.619828],\n              [-82.195022, 36.61938],\n              [-82.196673, 36.618518],\n              [-82.203207, 36.615106],\n              [-82.204706, 36.614323],\n              [-82.207338, 36.612904],\n              [-82.20885, 36.612305],\n              [-82.208991, 36.612248],\n              [-82.209488, 36.612167],\n              [-82.209585, 36.612152],\n              [-82.209692, 36.612136],\n              [-82.209763, 36.612078],\n              [-82.210537, 36.61146],\n              [-82.210805, 36.611245],\n              [-82.210977, 36.611171],\n              [-82.211316, 36.611026],\n              [-82.213937, 36.609888],\n              [-82.214647, 36.609582],\n              [-82.214783, 36.609512],\n              [-82.214896, 36.609459],\n              [-82.216841, 36.608485],\n              [-82.218854, 36.607484],\n              [-82.219017, 36.607441],\n              [-82.219631, 36.607276],\n              [-82.220666, 36.606747],\n              [-82.221602, 36.60633],\n              [-82.222971, 36.605646],\n              [-82.224, 36.605426],\n              [-82.224058, 36.605414],\n              [-82.224321, 36.605064],\n              [-82.224412, 36.60494],\n              [-82.224449, 36.60489],\n              [-82.225122, 36.6046],\n              [-82.227099, 36.603863],\n              [-82.228252, 36.603501],\n              [-82.229264, 36.603453],\n              [-82.23035, 36.603643],\n              [-82.231201, 36.603742],\n              [-82.23214, 36.604185],\n              [-82.232473, 36.604326],\n              [-82.232619, 36.604477],\n              [-82.232865, 36.604731],\n              [-82.232955, 36.604827],\n              [-82.233202, 36.604656],\n              [-82.233321, 36.6046],\n              [-82.23373, 36.604402],\n              [-82.232939, 36.602594],\n              [-82.232912, 36.60183],\n              [-82.233009, 36.601616],\n              [-82.233122, 36.601366],\n              [-82.233238, 36.601299],\n              [-82.233374, 36.601219],\n              [-82.233435, 36.601184],\n              [-82.233535, 36.600967],\n              [-82.23367, 36.600894],\n              [-82.233583, 36.600559],\n              [-82.233527, 36.600341],\n              [-82.233443, 36.600074],\n              [-82.233776, 36.599924],\n              [-82.234822, 36.599465],\n              [-82.235144, 36.599322],\n              [-82.235372, 36.59922],\n              [-82.236695, 36.59863],\n              [-82.23698, 36.598503],\n              [-82.237123, 36.59844],\n              [-82.237573, 36.59824],\n              [-82.237605, 36.598133],\n              [-82.237679, 36.598048],\n              [-82.23805, 36.597618],\n              [-82.238151, 36.597501],\n              [-82.239314, 36.596927],\n              [-82.239665, 36.596757],\n              [-82.240311, 36.596448],\n              [-82.241151, 36.59644],\n              [-82.241711, 36.596402],\n              [-82.242917, 36.595867],\n              [-82.243238, 36.595724],\n              [-82.243386, 36.595658]\n            ]\n          ],\n          [\n            [\n              [-82.128527, 36.649083],\n              [-82.12839, 36.64861],\n              [-82.128329, 36.648412],\n              [-82.12787, 36.646923],\n              [-82.125808, 36.646978],\n              [-82.1254, 36.646723],\n              [-82.12506, 36.646414],\n              [-82.124901, 36.645996],\n              [-82.124615, 36.645298],\n              [-82.124357, 36.644668],\n              [-82.12289, 36.645544],\n              [-82.121917, 36.646112],\n              [-82.122459, 36.646648],\n              [-82.125785, 36.650034],\n              [-82.125988, 36.649852],\n              [-82.126349, 36.649523],\n              [-82.12662, 36.64934],\n              [-82.126846, 36.649159],\n              [-82.127026, 36.648957],\n              [-82.127208, 36.649067],\n              [-82.127184, 36.649267],\n              [-82.127387, 36.649442],\n              [-82.127537, 36.64951],\n              [-82.128011, 36.649704],\n              [-82.128251, 36.649667],\n              [-82.128468, 36.649334],\n              [-82.128527, 36.649083]\n            ]\n          ],\n          [\n            [\n              [-77.532688, 38.308475],\n              [-77.532315, 38.308506],\n              [-77.53102, 38.308439],\n              [-77.530585, 38.308475],\n              [-77.52962, 38.308388],\n              [-77.529195, 38.308295],\n              [-77.528813, 38.308193],\n              [-77.528682, 38.308142],\n              [-77.528526, 38.308058],\n              [-77.527558, 38.30765],\n              [-77.527106, 38.307477],\n              [-77.526538, 38.30726],\n              [-77.526378, 38.307202],\n              [-77.52623, 38.307159],\n              [-77.526041, 38.30712],\n              [-77.525617, 38.307072],\n              [-77.525003, 38.307025],\n              [-77.524811, 38.30701],\n              [-77.52404, 38.306963],\n              [-77.523798, 38.306937],\n              [-77.523656, 38.306915],\n              [-77.523607, 38.306907],\n              [-77.523424, 38.306869],\n              [-77.523372, 38.306856],\n              [-77.523209, 38.306812],\n              [-77.523164, 38.306799],\n              [-77.522853, 38.306697],\n              [-77.522664, 38.30665],\n              [-77.522435, 38.306612],\n              [-77.522274, 38.306597],\n              [-77.522076, 38.306593],\n              [-77.521918, 38.3066],\n              [-77.520908, 38.30668],\n              [-77.520579, 38.306698],\n              [-77.520167, 38.306707],\n              [-77.520051, 38.306706],\n              [-77.519698, 38.306698],\n              [-77.51949, 38.306683],\n              [-77.519331, 38.306672],\n              [-77.518534, 38.306595],\n              [-77.518292, 38.30657],\n              [-77.518257, 38.306566],\n              [-77.517672, 38.306513],\n              [-77.517565, 38.306502],\n              [-77.517066, 38.306464],\n              [-77.516346, 38.30641],\n              [-77.516353, 38.306337],\n              [-77.516423, 38.305622],\n              [-77.514885, 38.305507],\n              [-77.515288, 38.302539],\n              [-77.51613, 38.300022],\n              [-77.517085, 38.298471],\n              [-77.517835, 38.297697],\n              [-77.51785, 38.297682],\n              [-77.517994, 38.297533],\n              [-77.517713, 38.297315],\n              [-77.517895, 38.296922],\n              [-77.517134, 38.295438],\n              [-77.51695, 38.295463],\n              [-77.516834, 38.295197],\n              [-77.516807, 38.295136],\n              [-77.516693, 38.295174],\n              [-77.51572, 38.295496],\n              [-77.515485, 38.295574],\n              [-77.514601, 38.295867],\n              [-77.514314, 38.29603],\n              [-77.514117, 38.296148],\n              [-77.514052, 38.296184],\n              [-77.514045, 38.296186],\n              [-77.513602, 38.296312],\n              [-77.513571, 38.296276],\n              [-77.513351, 38.29602],\n              [-77.513274, 38.295845],\n              [-77.513252, 38.295796],\n              [-77.51311, 38.295475],\n              [-77.513038, 38.295392],\n              [-77.513, 38.295347],\n              [-77.512886, 38.295048],\n              [-77.51279, 38.294797],\n              [-77.512798, 38.294737],\n              [-77.51277, 38.294705],\n              [-77.512756, 38.294688],\n              [-77.512679, 38.294699],\n              [-77.512596, 38.294693],\n              [-77.512517, 38.294666],\n              [-77.51245, 38.294644],\n              [-77.512352, 38.2946],\n              [-77.512269, 38.294528],\n              [-77.512195, 38.294452],\n              [-77.512178, 38.294435],\n              [-77.51213, 38.294379],\n              [-77.512067, 38.294303],\n              [-77.511948, 38.294221],\n              [-77.511816, 38.294111],\n              [-77.511649, 38.294012],\n              [-77.511537, 38.29394],\n              [-77.511294, 38.293814],\n              [-77.511184, 38.293772],\n              [-77.511036, 38.293715],\n              [-77.510876, 38.293638],\n              [-77.510722, 38.293611],\n              [-77.510297, 38.293517],\n              [-77.510143, 38.293467],\n              [-77.510012, 38.293424],\n              [-77.509803, 38.293363],\n              [-77.509724, 38.293325],\n              [-77.509678, 38.293303],\n              [-77.509603, 38.293272],\n              [-77.509517, 38.293237],\n              [-77.509253, 38.293198],\n              [-77.509197, 38.29316],\n              [-77.509141, 38.29311],\n              [-77.509072, 38.293072],\n              [-77.508898, 38.293017],\n              [-77.508807, 38.292962],\n              [-77.508584, 38.292753],\n              [-77.508438, 38.292654],\n              [-77.508236, 38.292528],\n              [-77.508104, 38.29244],\n              [-77.507936, 38.292347],\n              [-77.50779, 38.292259],\n              [-77.507623, 38.292182],\n              [-77.507565, 38.292151],\n              [-77.508165, 38.290399],\n              [-77.50935, 38.286936],\n              [-77.509406, 38.286778],\n              [-77.511828, 38.279961],\n              [-77.511751, 38.279976],\n              [-77.511661, 38.279993],\n              [-77.511366, 38.280049],\n              [-77.511101, 38.280093],\n              [-77.510875, 38.280144],\n              [-77.510787, 38.280164],\n              [-77.510516, 38.280213],\n              [-77.510244, 38.28029],\n              [-77.509875, 38.280356],\n              [-77.509547, 38.280427],\n              [-77.509324, 38.280487],\n              [-77.508969, 38.280531],\n              [-77.508321, 38.28058],\n              [-77.508043, 38.280569],\n              [-77.5079, 38.280541],\n              [-77.507736, 38.280508],\n              [-77.507464, 38.280481],\n              [-77.507158, 38.280459],\n              [-77.507012, 38.280426],\n              [-77.506893, 38.280404],\n              [-77.506629, 38.280365],\n              [-77.506576, 38.280357],\n              [-77.506371, 38.280327],\n              [-77.506232, 38.280321],\n              [-77.506009, 38.280304],\n              [-77.505855, 38.28026],\n              [-77.505591, 38.280178],\n              [-77.505382, 38.280139],\n              [-77.504978, 38.280112],\n              [-77.504769, 38.280112],\n              [-77.504532, 38.280101],\n              [-77.504323, 38.280117],\n              [-77.503982, 38.280155],\n              [-77.503856, 38.280155],\n              [-77.503731, 38.280111],\n              [-77.503571, 38.280067],\n              [-77.503341, 38.280067],\n              [-77.50325, 38.280034],\n              [-77.503188, 38.279963],\n              [-77.503146, 38.279869],\n              [-77.503084, 38.27977],\n              [-77.503014, 38.279748],\n              [-77.502916, 38.279726],\n              [-77.502763, 38.27971],\n              [-77.50268, 38.279677],\n              [-77.502589, 38.279633],\n              [-77.502429, 38.279501],\n              [-77.502331, 38.279484],\n              [-77.502255, 38.279457],\n              [-77.50215, 38.279336],\n              [-77.501976, 38.279188],\n              [-77.501775, 38.279089],\n              [-77.501607, 38.279045],\n              [-77.501412, 38.279072],\n              [-77.50121, 38.279116],\n              [-77.500952, 38.279204],\n              [-77.500785, 38.279231],\n              [-77.500597, 38.279308],\n              [-77.500472, 38.279374],\n              [-77.500325, 38.279478],\n              [-77.500186, 38.279588],\n              [-77.500081, 38.279665],\n              [-77.500005, 38.279677],\n              [-77.499747, 38.279606],\n              [-77.499608, 38.279606],\n              [-77.499468, 38.279612],\n              [-77.499451, 38.279624],\n              [-77.499349, 38.279669],\n              [-77.499218, 38.279727],\n              [-77.499023, 38.279854],\n              [-77.498647, 38.280084],\n              [-77.498563, 38.280408],\n              [-77.498522, 38.28048],\n              [-77.498515, 38.280655],\n              [-77.498515, 38.280842],\n              [-77.498522, 38.281001],\n              [-77.498453, 38.281205],\n              [-77.498231, 38.281412],\n              [-77.498195, 38.281446],\n              [-77.498, 38.281759],\n              [-77.498008, 38.282072],\n              [-77.498064, 38.28227],\n              [-77.497911, 38.282918],\n              [-77.497667, 38.283061],\n              [-77.497507, 38.283099],\n              [-77.497186, 38.283006],\n              [-77.496922, 38.282962],\n              [-77.496789, 38.282869],\n              [-77.49674, 38.28277],\n              [-77.496594, 38.282622],\n              [-77.496266, 38.28226],\n              [-77.496057, 38.282189],\n              [-77.495709, 38.282172],\n              [-77.495221, 38.282206],\n              [-77.494567, 38.282371],\n              [-77.494531, 38.281349],\n              [-77.494489, 38.281091],\n              [-77.494433, 38.28068],\n              [-77.494402, 38.280544],\n              [-77.494377, 38.280432],\n              [-77.494147, 38.279823],\n              [-77.493931, 38.279516],\n              [-77.492955, 38.278951],\n              [-77.492815, 38.278812],\n              [-77.49471, 38.273842],\n              [-77.492047, 38.273645],\n              [-77.491954, 38.273638],\n              [-77.491894, 38.273634],\n              [-77.489498, 38.273482],\n              [-77.488694, 38.273431],\n              [-77.487462, 38.273349],\n              [-77.48718, 38.27333],\n              [-77.485136, 38.273192],\n              [-77.484626, 38.273157],\n              [-77.483211, 38.273063],\n              [-77.482809, 38.273036],\n              [-77.482583, 38.272996],\n              [-77.482347, 38.272964],\n              [-77.482603, 38.272747],\n              [-77.482564, 38.272736],\n              [-77.479772, 38.27198],\n              [-77.479687, 38.271957],\n              [-77.478713, 38.271693],\n              [-77.477466, 38.271356],\n              [-77.47738, 38.271333],\n              [-77.475452, 38.270811],\n              [-77.47339, 38.270253],\n              [-77.472442, 38.271419],\n              [-77.471033, 38.27328],\n              [-77.471001, 38.273322],\n              [-77.470068, 38.274884],\n              [-77.46947, 38.275901],\n              [-77.46884, 38.276951],\n              [-77.468808, 38.277001],\n              [-77.468572, 38.277374],\n              [-77.467194, 38.27955],\n              [-77.46715, 38.279618],\n              [-77.467151, 38.27967],\n              [-77.467153, 38.279788],\n              [-77.465923, 38.2798],\n              [-77.465359, 38.279807],\n              [-77.465312, 38.279671],\n              [-77.465313, 38.279308],\n              [-77.465315, 38.279049],\n              [-77.465029, 38.278977],\n              [-77.463991, 38.278588],\n              [-77.463092, 38.278209],\n              [-77.462187, 38.277896],\n              [-77.461741, 38.277814],\n              [-77.461365, 38.277787],\n              [-77.461056, 38.277812],\n              [-77.461035, 38.277618],\n              [-77.460877, 38.276769],\n              [-77.460652, 38.275942],\n              [-77.460425, 38.275516],\n              [-77.460196, 38.275085],\n              [-77.459198, 38.273406],\n              [-77.458867, 38.272848],\n              [-77.457839, 38.271116],\n              [-77.45747, 38.2713],\n              [-77.457173, 38.271445],\n              [-77.456865, 38.271597],\n              [-77.454064, 38.272965],\n              [-77.454052, 38.272971],\n              [-77.452775, 38.273595],\n              [-77.45216, 38.273895],\n              [-77.450572, 38.274857],\n              [-77.450839, 38.275128],\n              [-77.451397, 38.275694],\n              [-77.451893, 38.276195],\n              [-77.452549, 38.277147],\n              [-77.452634, 38.277384],\n              [-77.45276, 38.277702],\n              [-77.453185, 38.278783],\n              [-77.453214, 38.279249],\n              [-77.453279, 38.279489],\n              [-77.453626, 38.280766],\n              [-77.453716, 38.281078],\n              [-77.453955, 38.281873],\n              [-77.454608, 38.283636],\n              [-77.45464, 38.283707],\n              [-77.454511, 38.283737],\n              [-77.453247, 38.284037],\n              [-77.451741, 38.28451],\n              [-77.45169, 38.284464],\n              [-77.45155, 38.284397],\n              [-77.451464, 38.284356],\n              [-77.450587, 38.283938],\n              [-77.450212, 38.283674],\n              [-77.450116, 38.283546],\n              [-77.449797, 38.283118],\n              [-77.448285, 38.283431],\n              [-77.448595, 38.284147],\n              [-77.447151, 38.284615],\n              [-77.447128, 38.284622],\n              [-77.447192, 38.284683],\n              [-77.447713, 38.285553],\n              [-77.448271, 38.286421],\n              [-77.448602, 38.286847],\n              [-77.44871, 38.286986],\n              [-77.449189, 38.287785],\n              [-77.449574, 38.288425],\n              [-77.449649, 38.288679],\n              [-77.449706, 38.288869],\n              [-77.449818, 38.289138],\n              [-77.450106, 38.289676],\n              [-77.450114, 38.289691],\n              [-77.450154, 38.289762],\n              [-77.450168, 38.289786],\n              [-77.450187, 38.289819],\n              [-77.45022, 38.289894],\n              [-77.450234, 38.289927],\n              [-77.450536, 38.290626],\n              [-77.451031, 38.291554],\n              [-77.451236, 38.291978],\n              [-77.451512, 38.292548],\n              [-77.452, 38.294365],\n              [-77.452174, 38.294744],\n              [-77.452702, 38.29583],\n              [-77.45278, 38.295991],\n              [-77.453317, 38.296984],\n              [-77.453464, 38.297127],\n              [-77.453631, 38.297264],\n              [-77.453777, 38.297391],\n              [-77.454203, 38.298467],\n              [-77.45461, 38.299217],\n              [-77.454656, 38.299301],\n              [-77.454947, 38.299826],\n              [-77.455276, 38.300416],\n              [-77.455598, 38.301135],\n              [-77.455694, 38.301349],\n              [-77.455833, 38.301547],\n              [-77.45584, 38.301556],\n              [-77.456036, 38.301832],\n              [-77.456161, 38.301986],\n              [-77.456559, 38.302475],\n              [-77.456973, 38.302874],\n              [-77.457315, 38.303173],\n              [-77.457672, 38.303633],\n              [-77.457699, 38.303668],\n              [-77.457866, 38.303884],\n              [-77.457979, 38.304077],\n              [-77.458108, 38.304298],\n              [-77.458154, 38.304384],\n              [-77.458159, 38.304393],\n              [-77.458163, 38.304399],\n              [-77.458172, 38.304416],\n              [-77.458189, 38.304447],\n              [-77.458365, 38.304768],\n              [-77.458678, 38.305394],\n              [-77.459136, 38.306465],\n              [-77.459164, 38.306513],\n              [-77.459714, 38.307449],\n              [-77.459961, 38.307811],\n              [-77.460128, 38.30802],\n              [-77.460358, 38.308289],\n              [-77.460533, 38.308459],\n              [-77.461069, 38.308871],\n              [-77.461627, 38.309343],\n              [-77.462018, 38.30982],\n              [-77.462492, 38.310205],\n              [-77.463098, 38.310913],\n              [-77.463293, 38.311083],\n              [-77.463691, 38.311226],\n              [-77.463886, 38.311319],\n              [-77.463948, 38.311396],\n              [-77.463969, 38.311418],\n              [-77.463907, 38.311467],\n              [-77.463795, 38.311522],\n              [-77.46351, 38.311478],\n              [-77.4633, 38.311407],\n              [-77.463203, 38.311428],\n              [-77.463175, 38.311434],\n              [-77.463147, 38.311533],\n              [-77.463283, 38.311966],\n              [-77.463289, 38.311984],\n              [-77.463419, 38.312401],\n              [-77.463468, 38.312966],\n              [-77.463698, 38.313419],\n              [-77.463703, 38.313429],\n              [-77.463838, 38.313696],\n              [-77.463998, 38.314212],\n              [-77.46395, 38.314278],\n              [-77.463873, 38.3143],\n              [-77.46381, 38.314355],\n              [-77.464075, 38.315014],\n              [-77.464096, 38.315223],\n              [-77.464152, 38.315437],\n              [-77.4642, 38.315545],\n              [-77.46445, 38.315808],\n              [-77.46488, 38.316262],\n              [-77.464904, 38.316288],\n              [-77.464922, 38.316307],\n              [-77.466381, 38.317848],\n              [-77.466943, 38.318533],\n              [-77.467048, 38.318662],\n              [-77.467055, 38.318668],\n              [-77.467652, 38.318939],\n              [-77.468468, 38.31912],\n              [-77.469869, 38.31912],\n              [-77.469978, 38.319129],\n              [-77.470294, 38.319158],\n              [-77.470322, 38.319163],\n              [-77.470503, 38.319229],\n              [-77.470921, 38.319493],\n              [-77.471305, 38.319536],\n              [-77.47136, 38.319536],\n              [-77.47203, 38.319542],\n              [-77.473033, 38.319783],\n              [-77.473319, 38.319915],\n              [-77.47334, 38.320085],\n              [-77.473438, 38.320596],\n              [-77.473682, 38.320936],\n              [-77.473891, 38.320974],\n              [-77.473915, 38.320978],\n              [-77.474254, 38.32104],\n              [-77.474728, 38.321029],\n              [-77.475139, 38.320968],\n              [-77.475557, 38.320759],\n              [-77.475815, 38.320518],\n              [-77.47594, 38.320133],\n              [-77.476052, 38.320106],\n              [-77.476484, 38.319958],\n              [-77.476567, 38.319897],\n              [-77.47695, 38.319589],\n              [-77.477403, 38.319046],\n              [-77.477821, 38.318343],\n              [-77.47789, 38.31803],\n              [-77.478026, 38.317611],\n              [-77.478029, 38.317601],\n              [-77.478036, 38.317596],\n              [-77.47821, 38.317299],\n              [-77.478754, 38.316882],\n              [-77.478998, 38.316701],\n              [-77.479792, 38.316508],\n              [-77.48012, 38.316491],\n              [-77.480531, 38.316469],\n              [-77.481388, 38.316485],\n              [-77.482461, 38.316677],\n              [-77.483103, 38.316913],\n              [-77.483527, 38.317157],\n              [-77.483832, 38.317333],\n              [-77.485083, 38.318356],\n              [-77.485766, 38.318916],\n              [-77.485973, 38.319078],\n              [-77.486087, 38.319168],\n              [-77.487084, 38.319959],\n              [-77.487747, 38.320403],\n              [-77.48873, 38.321116],\n              [-77.489567, 38.321984],\n              [-77.489992, 38.321654],\n              [-77.490007, 38.321642],\n              [-77.490038, 38.32162],\n              [-77.490073, 38.321594],\n              [-77.490117, 38.321561],\n              [-77.490201, 38.32167],\n              [-77.490375, 38.32178],\n              [-77.490598, 38.321813],\n              [-77.490743, 38.321873],\n              [-77.490822, 38.321906],\n              [-77.491372, 38.322241],\n              [-77.492279, 38.32257],\n              [-77.493053, 38.323053],\n              [-77.493806, 38.323332],\n              [-77.496407, 38.324458],\n              [-77.497125, 38.324769],\n              [-77.497466, 38.324906],\n              [-77.497532, 38.324933],\n              [-77.498756, 38.325438],\n              [-77.498959, 38.325443],\n              [-77.499037, 38.325446],\n              [-77.499115, 38.325448],\n              [-77.499544, 38.32546],\n              [-77.499879, 38.325635],\n              [-77.500004, 38.325602],\n              [-77.500107, 38.325622],\n              [-77.500204, 38.325655],\n              [-77.50035, 38.325716],\n              [-77.500504, 38.325738],\n              [-77.500664, 38.325732],\n              [-77.50088, 38.325738],\n              [-77.500999, 38.325749],\n              [-77.501208, 38.325804],\n              [-77.501396, 38.325815],\n              [-77.501449, 38.325828],\n              [-77.501556, 38.325854],\n              [-77.501574, 38.325858],\n              [-77.501648, 38.325876],\n              [-77.501863, 38.325881],\n              [-77.501926, 38.325832],\n              [-77.502079, 38.325793],\n              [-77.502225, 38.325837],\n              [-77.502256, 38.325863],\n              [-77.502406, 38.325997],\n              [-77.502713, 38.326068],\n              [-77.502908, 38.326118],\n              [-77.502992, 38.326162],\n              [-77.503131, 38.326211],\n              [-77.50318, 38.326206],\n              [-77.503333, 38.326145],\n              [-77.503494, 38.326151],\n              [-77.503605, 38.3262],\n              [-77.503654, 38.326343],\n              [-77.503737, 38.326448],\n              [-77.503877, 38.326453],\n              [-77.504114, 38.326426],\n              [-77.504351, 38.326376],\n              [-77.504595, 38.326316],\n              [-77.504874, 38.3263],\n              [-77.505452, 38.326234],\n              [-77.505682, 38.326262],\n              [-77.505738, 38.326289],\n              [-77.505884, 38.326273],\n              [-77.506045, 38.32618],\n              [-77.506212, 38.326152],\n              [-77.506393, 38.326147],\n              [-77.506554, 38.326092],\n              [-77.506784, 38.325933],\n              [-77.506937, 38.325801],\n              [-77.507104, 38.32568],\n              [-77.507195, 38.325631],\n              [-77.507279, 38.325593],\n              [-77.507418, 38.325461],\n              [-77.507607, 38.325395],\n              [-77.507844, 38.325379],\n              [-77.508589, 38.325313],\n              [-77.50944, 38.325292],\n              [-77.509969, 38.325325],\n              [-77.510513, 38.325391],\n              [-77.511022, 38.325473],\n              [-77.511273, 38.325495],\n              [-77.511677, 38.325479],\n              [-77.512165, 38.325441],\n              [-77.51252, 38.325364],\n              [-77.512737, 38.325194],\n              [-77.512904, 38.32509],\n              [-77.513239, 38.325002],\n              [-77.513434, 38.324925],\n              [-77.513713, 38.324766],\n              [-77.513936, 38.324492],\n              [-77.514048, 38.324371],\n              [-77.514208, 38.324272],\n              [-77.514459, 38.324151],\n              [-77.514891, 38.323987],\n              [-77.515574, 38.323696],\n              [-77.516341, 38.323356],\n              [-77.517017, 38.323126],\n              [-77.517471, 38.323011],\n              [-77.517958, 38.322917],\n              [-77.51837, 38.322868],\n              [-77.518725, 38.322846],\n              [-77.51975, 38.322863],\n              [-77.519754, 38.322863],\n              [-77.520489, 38.322869],\n              [-77.521339, 38.322885],\n              [-77.522043, 38.322875],\n              [-77.522865, 38.32282],\n              [-77.523304, 38.32271],\n              [-77.523562, 38.322617],\n              [-77.523904, 38.322431],\n              [-77.524141, 38.322293],\n              [-77.524357, 38.322233],\n              [-77.52451, 38.322173],\n              [-77.524727, 38.322057],\n              [-77.524894, 38.321931],\n              [-77.52511, 38.321843],\n              [-77.525493, 38.321607],\n              [-77.525779, 38.32141],\n              [-77.526023, 38.321267],\n              [-77.526393, 38.321119],\n              [-77.526832, 38.320872],\n              [-77.527187, 38.320663],\n              [-77.527404, 38.320455],\n              [-77.527641, 38.320241],\n              [-77.527954, 38.319802],\n              [-77.528094, 38.319571],\n              [-77.528178, 38.319379],\n              [-77.528303, 38.319132],\n              [-77.528352, 38.318918],\n              [-77.528387, 38.318709],\n              [-77.528387, 38.31855],\n              [-77.528338, 38.318358],\n              [-77.528269, 38.318149],\n              [-77.528157, 38.317913],\n              [-77.528025, 38.317688],\n              [-77.527865, 38.317479],\n              [-77.527712, 38.317303],\n              [-77.527565, 38.31715],\n              [-77.527419, 38.317018],\n              [-77.527238, 38.316864],\n              [-77.527085, 38.316771],\n              [-77.526945, 38.316721],\n              [-77.526785, 38.316611],\n              [-77.526687, 38.316534],\n              [-77.526354, 38.316213],\n              [-77.526314, 38.316175],\n              [-77.526151, 38.315958],\n              [-77.526081, 38.315809],\n              [-77.526082, 38.31565],\n              [-77.52595, 38.314673],\n              [-77.525839, 38.313196],\n              [-77.525804, 38.312674],\n              [-77.525902, 38.312136],\n              [-77.525819, 38.311664],\n              [-77.525826, 38.311406],\n              [-77.525854, 38.310928],\n              [-77.525923, 38.310632],\n              [-77.525958, 38.310385],\n              [-77.525973, 38.310187],\n              [-77.526099, 38.309798],\n              [-77.526107, 38.309773],\n              [-77.526126, 38.309715],\n              [-77.526245, 38.309539],\n              [-77.526433, 38.309429],\n              [-77.526726, 38.309325],\n              [-77.52706, 38.309106],\n              [-77.527276, 38.308979],\n              [-77.527506, 38.30887],\n              [-77.527807, 38.308782],\n              [-77.527959, 38.308738],\n              [-77.528217, 38.308689],\n              [-77.52837, 38.308656],\n              [-77.528684, 38.308634],\n              [-77.52906, 38.308639],\n              [-77.529283, 38.3087],\n              [-77.529464, 38.308804],\n              [-77.529597, 38.308903],\n              [-77.52982, 38.308996],\n              [-77.530022, 38.309057],\n              [-77.530233, 38.309144],\n              [-77.530291, 38.30918],\n              [-77.530297, 38.309176],\n              [-77.530298, 38.30917],\n              [-77.530366, 38.309057],\n              [-77.530394, 38.309011],\n              [-77.530547, 38.308923],\n              [-77.530687, 38.308852],\n              [-77.530861, 38.308797],\n              [-77.531077, 38.308786],\n              [-77.531537, 38.308814],\n              [-77.532053, 38.308836],\n              [-77.532234, 38.30883],\n              [-77.532387, 38.308814],\n              [-77.532547, 38.308765],\n              [-77.532617, 38.308666],\n              [-77.532673, 38.308539],\n              [-77.532681, 38.308511],\n              [-77.532688, 38.308475]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-77.782516, 38.067545],\n              [-77.782616, 38.067145],\n              [-77.783116, 38.066345],\n              [-77.783405, 38.06623],\n              [-77.784116, 38.065945],\n              [-77.784616, 38.065645],\n              [-77.784916, 38.065145],\n              [-77.784616, 38.064245],\n              [-77.784516, 38.063345],\n              [-77.784216, 38.063145],\n              [-77.783016, 38.063245],\n              [-77.782616, 38.063245],\n              [-77.781716, 38.062645],\n              [-77.781116, 38.061545],\n              [-77.780216, 38.060345],\n              [-77.779216, 38.059445],\n              [-77.778516, 38.058745],\n              [-77.777816, 38.058445],\n              [-77.776916, 38.058445],\n              [-77.775816, 38.058245],\n              [-77.774216, 38.057845],\n              [-77.773416, 38.057845],\n              [-77.77196, 38.057457],\n              [-77.771916, 38.057445],\n              [-77.771687, 38.057267],\n              [-77.771016, 38.056745],\n              [-77.770916, 38.056345],\n              [-77.771116, 38.055745],\n              [-77.771405, 38.055263],\n              [-77.771416, 38.055245],\n              [-77.771716, 38.054745],\n              [-77.771716, 38.054245],\n              [-77.771416, 38.053745],\n              [-77.770716, 38.053145],\n              [-77.769816, 38.052545],\n              [-77.769016, 38.052045],\n              [-77.768516, 38.051745],\n              [-77.768116, 38.051745],\n              [-77.767816, 38.051945],\n              [-77.767316, 38.052645],\n              [-77.766516, 38.053045],\n              [-77.766493, 38.053062],\n              [-77.766116, 38.053345],\n              [-77.765116, 38.053445],\n              [-77.764116, 38.053145],\n              [-77.764026, 38.053145],\n              [-77.763916, 38.053145],\n              [-77.763816, 38.053045],\n              [-77.763516, 38.052845],\n              [-77.763442, 38.052771],\n              [-77.763316, 38.052645],\n              [-77.763316, 38.052345],\n              [-77.763316, 38.051745],\n              [-77.763316, 38.051245],\n              [-77.7633, 38.051229],\n              [-77.762916, 38.050845],\n              [-77.762516, 38.050545],\n              [-77.759716, 38.049545],\n              [-77.759616, 38.049445],\n              [-77.759316, 38.049345],\n              [-77.759116, 38.049145],\n              [-77.759016, 38.049145],\n              [-77.758816, 38.049045],\n              [-77.758515, 38.048945],\n              [-77.758215, 38.048945],\n              [-77.757615, 38.048845],\n              [-77.757015, 38.048645],\n              [-77.756515, 38.048445],\n              [-77.756115, 38.048245],\n              [-77.755915, 38.048345],\n              [-77.755715, 38.048645],\n              [-77.755415, 38.048845],\n              [-77.754915, 38.049445],\n              [-77.754115, 38.049945],\n              [-77.753615, 38.050345],\n              [-77.752815, 38.050645],\n              [-77.752315, 38.050945],\n              [-77.751615, 38.051345],\n              [-77.751515, 38.051745],\n              [-77.751415, 38.051945],\n              [-77.751333, 38.052],\n              [-77.751115, 38.052145],\n              [-77.750715, 38.052345],\n              [-77.750615, 38.052445],\n              [-77.750515, 38.052445],\n              [-77.750415, 38.052445],\n              [-77.750215, 38.052545],\n              [-77.750115, 38.052545],\n              [-77.749815, 38.052545],\n              [-77.749715, 38.052695],\n              [-77.749515, 38.052845],\n              [-77.749315, 38.052845],\n              [-77.748615, 38.052845],\n              [-77.747815, 38.052545],\n              [-77.747315, 38.052245],\n              [-77.746615, 38.051845],\n              [-77.746415, 38.051645],\n              [-77.746215, 38.051445],\n              [-77.745515, 38.051345],\n              [-77.745215, 38.051145],\n              [-77.745215, 38.050845],\n              [-77.745915, 38.050045],\n              [-77.746615, 38.049545],\n              [-77.747215, 38.049145],\n              [-77.747415, 38.048945],\n              [-77.747615, 38.048645],\n              [-77.747715, 38.048345],\n              [-77.747815, 38.047945],\n              [-77.747715, 38.047645],\n              [-77.747615, 38.047045],\n              [-77.747515, 38.045845],\n              [-77.747515, 38.045545],\n              [-77.747815, 38.044945],\n              [-77.748115, 38.044445],\n              [-77.748415, 38.043445],\n              [-77.748415, 38.043386],\n              [-77.748415, 38.043145],\n              [-77.748215, 38.042145],\n              [-77.748015, 38.042045],\n              [-77.747415, 38.041645],\n              [-77.746715, 38.041445],\n              [-77.745715, 38.040945],\n              [-77.745215, 38.040845],\n              [-77.745074, 38.040845],\n              [-77.744515, 38.040845],\n              [-77.743815, 38.040945],\n              [-77.742915, 38.040745],\n              [-77.742215, 38.040245],\n              [-77.741615, 38.039645],\n              [-77.741315, 38.039045],\n              [-77.741115, 38.038545],\n              [-77.740915, 38.038245],\n              [-77.740915, 38.037745],\n              [-77.741315, 38.037245],\n              [-77.741816, 38.037078],\n              [-77.741915, 38.037045],\n              [-77.742315, 38.037145],\n              [-77.742715, 38.037445],\n              [-77.742915, 38.037945],\n              [-77.742915, 38.038545],\n              [-77.742915, 38.038845],\n              [-77.742975, 38.038965],\n              [-77.743115, 38.039245],\n              [-77.743329, 38.039245],\n              [-77.743415, 38.039245],\n              [-77.744015, 38.039045],\n              [-77.744815, 38.038745],\n              [-77.745515, 38.038445],\n              [-77.746615, 38.038245],\n              [-77.747915, 38.037645],\n              [-77.748315, 38.037345],\n              [-77.748615, 38.037145],\n              [-77.748715, 38.036945],\n              [-77.748815, 38.036745],\n              [-77.748815, 38.035346],\n              [-77.748815, 38.035246],\n              [-77.748815, 38.035146],\n              [-77.748715, 38.034946],\n              [-77.748615, 38.034746],\n              [-77.748515, 38.034546],\n              [-77.748315, 38.034246],\n              [-77.748015, 38.033846],\n              [-77.747715, 38.033346],\n              [-77.747615, 38.032946],\n              [-77.747815, 38.031746],\n              [-77.748115, 38.031046],\n              [-77.748415, 38.030146],\n              [-77.748515, 38.029546],\n              [-77.748515, 38.029346],\n              [-77.748515, 38.028746],\n              [-77.748315, 38.028446],\n              [-77.747815, 38.027246],\n              [-77.747715, 38.026746],\n              [-77.747615, 38.026346],\n              [-77.747715, 38.025746],\n              [-77.747715, 38.025346],\n              [-77.747715, 38.024546],\n              [-77.747715, 38.024346],\n              [-77.747672, 38.024303],\n              [-77.747315, 38.023946],\n              [-77.746915, 38.023646],\n              [-77.746215, 38.023546],\n              [-77.745415, 38.023646],\n              [-77.744915, 38.023746],\n              [-77.744615, 38.023946],\n              [-77.744415, 38.024346],\n              [-77.744515, 38.024646],\n              [-77.744515, 38.025146],\n              [-77.744215, 38.025546],\n              [-77.743915, 38.025846],\n              [-77.743515, 38.026346],\n              [-77.743015, 38.026746],\n              [-77.742315, 38.027446],\n              [-77.741515, 38.028446],\n              [-77.740915, 38.029246],\n              [-77.740715, 38.029646],\n              [-77.740715, 38.030361],\n              [-77.740715, 38.031246],\n              [-77.740515, 38.032046],\n              [-77.740215, 38.032646],\n              [-77.739815, 38.032946],\n              [-77.739515, 38.033046],\n              [-77.738915, 38.032945],\n              [-77.738215, 38.032645],\n              [-77.737615, 38.032445],\n              [-77.736315, 38.032045],\n              [-77.734815, 38.031845],\n              [-77.733815, 38.031845],\n              [-77.733415, 38.031745],\n              [-77.732315, 38.031645],\n              [-77.731815, 38.031445],\n              [-77.731015, 38.031045],\n              [-77.730615, 38.030445],\n              [-77.730515, 38.030145],\n              [-77.73032, 38.029564],\n              [-77.730214, 38.029246],\n              [-77.729814, 38.028746],\n              [-77.72953, 38.028557],\n              [-77.728314, 38.027746],\n              [-77.728214, 38.027546],\n              [-77.728114, 38.027146],\n              [-77.728114, 38.026746],\n              [-77.728114, 38.026446],\n              [-77.728314, 38.026046],\n              [-77.728514, 38.025946],\n              [-77.728914, 38.025846],\n              [-77.729514, 38.025746],\n              [-77.729814, 38.025646],\n              [-77.730114, 38.025346],\n              [-77.730314, 38.025246],\n              [-77.730514, 38.025246],\n              [-77.730814, 38.025046],\n              [-77.731014, 38.024846],\n              [-77.731095, 38.024034],\n              [-77.731114, 38.023846],\n              [-77.731314, 38.022546],\n              [-77.731515, 38.021846],\n              [-77.731515, 38.021546],\n              [-77.731314, 38.021246],\n              [-77.730614, 38.020846],\n              [-77.729714, 38.021046],\n              [-77.729214, 38.021346],\n              [-77.728541, 38.02175],\n              [-77.728214, 38.021946],\n              [-77.727514, 38.022346],\n              [-77.727114, 38.022646],\n              [-77.726314, 38.022946],\n              [-77.725614, 38.023146],\n              [-77.724314, 38.023346],\n              [-77.723414, 38.023446],\n              [-77.722214, 38.023246],\n              [-77.721714, 38.022946],\n              [-77.721514, 38.022746],\n              [-77.721214, 38.022446],\n              [-77.720914, 38.021946],\n              [-77.720414, 38.021246],\n              [-77.719814, 38.020846],\n              [-77.719314, 38.020646],\n              [-77.719114, 38.020246],\n              [-77.719214, 38.019746],\n              [-77.719714, 38.018746],\n              [-77.719814, 38.018646],\n              [-77.720014, 38.018146],\n              [-77.720014, 38.017346],\n              [-77.719814, 38.017046],\n              [-77.719314, 38.016646],\n              [-77.718614, 38.016446],\n              [-77.717914, 38.016546],\n              [-77.717014, 38.016446],\n              [-77.716575, 38.016277],\n              [-77.715714, 38.015946],\n              [-77.714714, 38.015446],\n              [-77.713954, 38.015245],\n              [-77.713259, 38.014849],\n              [-77.712866, 38.014602],\n              [-77.71286, 38.014588],\n              [-77.712854, 38.014574],\n              [-77.712849, 38.014564],\n              [-77.712732, 38.014306],\n              [-77.712575, 38.014015],\n              [-77.71247, 38.013835],\n              [-77.712028, 38.013019],\n              [-77.711882, 38.012977],\n              [-77.711892, 38.012729],\n              [-77.7117, 38.012755],\n              [-77.711527, 38.012779],\n              [-77.711023, 38.012606],\n              [-77.710578, 38.012585],\n              [-77.710521, 38.012583],\n              [-77.710294, 38.012609],\n              [-77.70987, 38.012744],\n              [-77.709066, 38.013213],\n              [-77.708606, 38.01337],\n              [-77.708152, 38.013415],\n              [-77.706686, 38.013424],\n              [-77.705608, 38.013582],\n              [-77.7053, 38.013519],\n              [-77.704229, 38.01297],\n              [-77.703882, 38.012826],\n              [-77.703873, 38.012822],\n              [-77.703664, 38.012735],\n              [-77.703303, 38.012701],\n              [-77.702636, 38.01275],\n              [-77.70217, 38.012765],\n              [-77.701583, 38.012783],\n              [-77.701359, 38.012754],\n              [-77.701341, 38.012752],\n              [-77.700861, 38.012691],\n              [-77.700405, 38.012703],\n              [-77.700244, 38.01264],\n              [-77.7, 38.012556],\n              [-77.699668, 38.012312],\n              [-77.699364, 38.012003],\n              [-77.699323, 38.011831],\n              [-77.698854, 38.011166],\n              [-77.698206, 38.009955],\n              [-77.697344, 38.008905],\n              [-77.696981, 38.008475],\n              [-77.696027, 38.007521],\n              [-77.695551, 38.007308],\n              [-77.694572, 38.007125],\n              [-77.694548, 38.007126],\n              [-77.694161, 38.007135],\n              [-77.693895, 38.007188],\n              [-77.69323, 38.007566],\n              [-77.692618, 38.00771],\n              [-77.692357, 38.007855],\n              [-77.692062, 38.007951],\n              [-77.688643, 38.008137],\n              [-77.687667, 38.008057],\n              [-77.68746, 38.00804],\n              [-77.687296, 38.008019],\n              [-77.687184, 38.008005],\n              [-77.687118, 38.007997],\n              [-77.687089, 38.007993],\n              [-77.686418, 38.007908],\n              [-77.685548, 38.007873],\n              [-77.685193, 38.007936],\n              [-77.684635, 38.008172],\n              [-77.684067, 38.008291],\n              [-77.682387, 38.007879],\n              [-77.680594, 38.007595],\n              [-77.677863, 38.00687],\n              [-77.676959, 38.006541],\n              [-77.676938, 38.006533],\n              [-77.67662, 38.006417],\n              [-77.674818, 38.005569],\n              [-77.672847, 38.004731],\n              [-77.671557, 38.004163],\n              [-77.6709, 38.003777],\n              [-77.668794, 38.001628],\n              [-77.668376, 38.001119],\n              [-77.668203, 38.000829],\n              [-77.667923, 38.000128],\n              [-77.66798, 37.998585],\n              [-77.667987, 37.998387],\n              [-77.667904, 37.997921],\n              [-77.667813, 37.997721],\n              [-77.667456, 37.997311],\n              [-77.667162, 37.997087],\n              [-77.666843, 37.996948],\n              [-77.666365, 37.996827],\n              [-77.665362, 37.996848],\n              [-77.664781, 37.99691],\n              [-77.66379, 37.99735],\n              [-77.66234, 37.997772],\n              [-77.661751, 37.997807],\n              [-77.661263, 37.997717],\n              [-77.660935, 37.997592],\n              [-77.66075, 37.997449],\n              [-77.660604, 37.997153],\n              [-77.660646, 37.996124],\n              [-77.660412, 37.994831],\n              [-77.660471, 37.993734],\n              [-77.660278, 37.993012],\n              [-77.6597, 37.99209],\n              [-77.659556, 37.992002],\n              [-77.6593, 37.991931],\n              [-77.658219, 37.9918],\n              [-77.657918, 37.991872],\n              [-77.656938, 37.992513],\n              [-77.655833, 37.993017],\n              [-77.65503, 37.993275],\n              [-77.653672, 37.993603],\n              [-77.652786, 37.993776],\n              [-77.652338, 37.993837],\n              [-77.651705, 37.993925],\n              [-77.649478, 37.994161],\n              [-77.649203, 37.994176],\n              [-77.648298, 37.994112],\n              [-77.648107, 37.994099],\n              [-77.647529, 37.994011],\n              [-77.647165, 37.993956],\n              [-77.645028, 37.993326],\n              [-77.64368, 37.992983],\n              [-77.643366, 37.992862],\n              [-77.6429, 37.992684],\n              [-77.642528, 37.992478],\n              [-77.64232, 37.992292],\n              [-77.642148, 37.991816],\n              [-77.642137, 37.991248],\n              [-77.642154, 37.991165],\n              [-77.642202, 37.990936],\n              [-77.642038, 37.991055],\n              [-77.639932, 37.992591],\n              [-77.635521, 37.996137],\n              [-77.629875, 38.000801],\n              [-77.626221, 38.003437],\n              [-77.62496, 38.004707],\n              [-77.622844, 38.006841],\n              [-77.620189, 38.009518],\n              [-77.617635, 38.011751],\n              [-77.612655, 38.016109],\n              [-77.61222, 38.016511],\n              [-77.610903, 38.017765],\n              [-77.606126, 38.022229],\n              [-77.603937, 38.024276],\n              [-77.600198, 38.027771],\n              [-77.597954, 38.02997],\n              [-77.596181, 38.031709],\n              [-77.596133, 38.031748],\n              [-77.595682, 38.032105],\n              [-77.595626, 38.032127],\n              [-77.595362, 38.032319],\n              [-77.59521, 38.032462],\n              [-77.595106, 38.032577],\n              [-77.59394, 38.03361],\n              [-77.593121, 38.034455],\n              [-77.59279, 38.034791],\n              [-77.591822, 38.035796],\n              [-77.591434, 38.036197],\n              [-77.590779, 38.036874],\n              [-77.588322, 38.039036],\n              [-77.586015, 38.041068],\n              [-77.579828, 38.046772],\n              [-77.574496, 38.051688],\n              [-77.572659, 38.053534],\n              [-77.570661, 38.055449],\n              [-77.567535, 38.058446],\n              [-77.567383, 38.058592],\n              [-77.563062, 38.062734],\n              [-77.56033, 38.065355],\n              [-77.554772, 38.070623],\n              [-77.551613, 38.073617],\n              [-77.550603, 38.074574],\n              [-77.548738, 38.076343],\n              [-77.547345, 38.077606],\n              [-77.546339, 38.07851],\n              [-77.541087, 38.083255],\n              [-77.540585, 38.083728],\n              [-77.539296, 38.084948],\n              [-77.537913, 38.086257],\n              [-77.536646, 38.087454],\n              [-77.531372, 38.092442],\n              [-77.530112, 38.093636],\n              [-77.527605, 38.096004],\n              [-77.523833, 38.09957],\n              [-77.52142, 38.101852],\n              [-77.518181, 38.104898],\n              [-77.517618, 38.105428],\n              [-77.512155, 38.110564],\n              [-77.51079, 38.111851],\n              [-77.510156, 38.112445],\n              [-77.510114, 38.112484],\n              [-77.510051, 38.112543],\n              [-77.506042, 38.116303],\n              [-77.504161, 38.118067],\n              [-77.496621, 38.125136],\n              [-77.494678, 38.126958],\n              [-77.492605, 38.129045],\n              [-77.492556, 38.129082],\n              [-77.485041, 38.136273],\n              [-77.480084, 38.141019],\n              [-77.480016, 38.141085],\n              [-77.479917, 38.14118],\n              [-77.473063, 38.147742],\n              [-77.471163, 38.149477],\n              [-77.469415, 38.151073],\n              [-77.468975, 38.151475],\n              [-77.468587, 38.151817],\n              [-77.468129, 38.152248],\n              [-77.467404, 38.152911],\n              [-77.467169, 38.153135],\n              [-77.467126, 38.153162],\n              [-77.467055, 38.153226],\n              [-77.466935, 38.153334],\n              [-77.466537, 38.153695],\n              [-77.466484, 38.153791],\n              [-77.466417, 38.153873],\n              [-77.465972, 38.154212],\n              [-77.465731, 38.154416],\n              [-77.465581, 38.154554],\n              [-77.46266, 38.157293],\n              [-77.459003, 38.160725],\n              [-77.457354, 38.162183],\n              [-77.457031, 38.162468],\n              [-77.456492, 38.162946],\n              [-77.455772, 38.163582],\n              [-77.455476, 38.163844],\n              [-77.45275, 38.166256],\n              [-77.445682, 38.172506],\n              [-77.444516, 38.173537],\n              [-77.442338, 38.175463],\n              [-77.441131, 38.176529],\n              [-77.440231, 38.177326],\n              [-77.437543, 38.180042],\n              [-77.437347, 38.18024],\n              [-77.433499, 38.18413],\n              [-77.433478, 38.18415],\n              [-77.428491, 38.189191],\n              [-77.424336, 38.19358],\n              [-77.419067, 38.199146],\n              [-77.418605, 38.199635],\n              [-77.416743, 38.20144],\n              [-77.408548, 38.209343],\n              [-77.40632, 38.211492],\n              [-77.403134, 38.214564],\n              [-77.402354, 38.215317],\n              [-77.40031, 38.21742],\n              [-77.384868, 38.233307],\n              [-77.384405, 38.233785],\n              [-77.379696, 38.238421],\n              [-77.379684, 38.238432],\n              [-77.379475, 38.238631],\n              [-77.379381, 38.238731],\n              [-77.379376, 38.238736],\n              [-77.379359, 38.238755],\n              [-77.37933, 38.238782],\n              [-77.377784, 38.240195],\n              [-77.37708, 38.240838],\n              [-77.375455, 38.242345],\n              [-77.375316, 38.242474],\n              [-77.374892, 38.242891],\n              [-77.37488, 38.242903],\n              [-77.374687, 38.243092],\n              [-77.374672, 38.243107],\n              [-77.371342, 38.245753],\n              [-77.371337, 38.245757],\n              [-77.370425, 38.246481],\n              [-77.370367, 38.24653],\n              [-77.37031, 38.246578],\n              [-77.370303, 38.246584],\n              [-77.370356, 38.246624],\n              [-77.37041, 38.246664],\n              [-77.370696, 38.246877],\n              [-77.370724, 38.246898],\n              [-77.370977, 38.247084],\n              [-77.370983, 38.247089],\n              [-77.371432, 38.247422],\n              [-77.371553, 38.247493],\n              [-77.373513, 38.248646],\n              [-77.374044, 38.24892],\n              [-77.374628, 38.249221],\n              [-77.375654, 38.249647],\n              [-77.375694, 38.249664],\n              [-77.376894, 38.249958],\n              [-77.377456, 38.249993],\n              [-77.377966, 38.24997],\n              [-77.379031, 38.249819],\n              [-77.379933, 38.249635],\n              [-77.380386, 38.249422],\n              [-77.380724, 38.249243],\n              [-77.380734, 38.249238],\n              [-77.38074, 38.249235],\n              [-77.380816, 38.249196],\n              [-77.380824, 38.249192],\n              [-77.380925, 38.24914],\n              [-77.380971, 38.249107],\n              [-77.38098, 38.249101],\n              [-77.38099, 38.249093],\n              [-77.381351, 38.248848],\n              [-77.381357, 38.248844],\n              [-77.381743, 38.248372],\n              [-77.382221, 38.24791],\n              [-77.38261, 38.247278],\n              [-77.382775, 38.247032],\n              [-77.382787, 38.247015],\n              [-77.383061, 38.246606],\n              [-77.383531, 38.24603],\n              [-77.383908, 38.245693],\n              [-77.384027, 38.245587],\n              [-77.384039, 38.245576],\n              [-77.384223, 38.245482],\n              [-77.384237, 38.245475],\n              [-77.38425, 38.245468],\n              [-77.384265, 38.24546],\n              [-77.384278, 38.245453],\n              [-77.384293, 38.245445],\n              [-77.384544, 38.245315],\n              [-77.384964, 38.245239],\n              [-77.385002, 38.245231],\n              [-77.385017, 38.245228],\n              [-77.385025, 38.245226],\n              [-77.38561, 38.2451],\n              [-77.386493, 38.244982],\n              [-77.386501, 38.244981],\n              [-77.387222, 38.244981],\n              [-77.387348, 38.244981],\n              [-77.387705, 38.245014],\n              [-77.387725, 38.245016],\n              [-77.387733, 38.245017],\n              [-77.387826, 38.245026],\n              [-77.38785, 38.245029],\n              [-77.387917, 38.245039],\n              [-77.387975, 38.245048],\n              [-77.388897, 38.245191],\n              [-77.390404, 38.245504],\n              [-77.390415, 38.245506],\n              [-77.390852, 38.245597],\n              [-77.391047, 38.24567],\n              [-77.391391, 38.245799],\n              [-77.391495, 38.245838],\n              [-77.39284, 38.246343],\n              [-77.393781, 38.246869],\n              [-77.393848, 38.246905],\n              [-77.395734, 38.247904],\n              [-77.397375, 38.249015],\n              [-77.3974, 38.249032],\n              [-77.397419, 38.249045],\n              [-77.397434, 38.249055],\n              [-77.397632, 38.249189],\n              [-77.397644, 38.249197],\n              [-77.398942, 38.250044],\n              [-77.399085, 38.250137],\n              [-77.400969, 38.251425],\n              [-77.400978, 38.251431],\n              [-77.401314, 38.251696],\n              [-77.40204, 38.252268],\n              [-77.404028, 38.253336],\n              [-77.405529, 38.25411],\n              [-77.407994, 38.254603],\n              [-77.408564, 38.254717],\n              [-77.412586, 38.255499],\n              [-77.413954, 38.255724],\n              [-77.414689, 38.255846],\n              [-77.414731, 38.255853],\n              [-77.41475, 38.255856],\n              [-77.414769, 38.255859],\n              [-77.41501, 38.255898],\n              [-77.415923, 38.256049],\n              [-77.416091, 38.256077],\n              [-77.41677, 38.256211],\n              [-77.41711, 38.256279],\n              [-77.417162, 38.25629],\n              [-77.417214, 38.2563],\n              [-77.417362, 38.256329],\n              [-77.417435, 38.256343],\n              [-77.41746, 38.256355],\n              [-77.417468, 38.256359],\n              [-77.417475, 38.256362],\n              [-77.417488, 38.256368],\n              [-77.41845, 38.256832],\n              [-77.41986, 38.257796],\n              [-77.419865, 38.2578],\n              [-77.419873, 38.257805],\n              [-77.419911, 38.257831],\n              [-77.42015, 38.257994],\n              [-77.420248, 38.258177],\n              [-77.420986, 38.259562],\n              [-77.421211, 38.259983],\n              [-77.421982, 38.261343],\n              [-77.421988, 38.261353],\n              [-77.422261, 38.261835],\n              [-77.422339, 38.262071],\n              [-77.422387, 38.262218],\n              [-77.42313, 38.264475],\n              [-77.423322, 38.265024],\n              [-77.423324, 38.265031],\n              [-77.423326, 38.265036],\n              [-77.423337, 38.265067],\n              [-77.423343, 38.265083],\n              [-77.423535, 38.26563],\n              [-77.423551, 38.265657],\n              [-77.423702, 38.265912],\n              [-77.423722, 38.265945],\n              [-77.423737, 38.26597],\n              [-77.423743, 38.26598],\n              [-77.423747, 38.265988],\n              [-77.424156, 38.266681],\n              [-77.42417, 38.26669],\n              [-77.425149, 38.267319],\n              [-77.425157, 38.267324],\n              [-77.42517, 38.267333],\n              [-77.425192, 38.267347],\n              [-77.425211, 38.267359],\n              [-77.426446, 38.268153],\n              [-77.427428, 38.268667],\n              [-77.427437, 38.268672],\n              [-77.427447, 38.268677],\n              [-77.427455, 38.268681],\n              [-77.427474, 38.268691],\n              [-77.427795, 38.268859],\n              [-77.428622, 38.269292],\n              [-77.428689, 38.269327],\n              [-77.430362, 38.269555],\n              [-77.432835, 38.270174],\n              [-77.433833, 38.270925],\n              [-77.433838, 38.270929],\n              [-77.433858, 38.270944],\n              [-77.434313, 38.271286],\n              [-77.43573, 38.27309],\n              [-77.435833, 38.273221],\n              [-77.436593, 38.274418],\n              [-77.436613, 38.27445],\n              [-77.436629, 38.274475],\n              [-77.436632, 38.27448],\n              [-77.436638, 38.274489],\n              [-77.436907, 38.274912],\n              [-77.437308, 38.277372],\n              [-77.437494, 38.278319],\n              [-77.437609, 38.278904],\n              [-77.437979, 38.280325],\n              [-77.438419, 38.280991],\n              [-77.438828, 38.281515],\n              [-77.438884, 38.281587],\n              [-77.439615, 38.282067],\n              [-77.440742, 38.282516],\n              [-77.442022, 38.282587],\n              [-77.442048, 38.282589],\n              [-77.443877, 38.282502],\n              [-77.443891, 38.282506],\n              [-77.445734, 38.283057],\n              [-77.445749, 38.283061],\n              [-77.445787, 38.283108],\n              [-77.446016, 38.283345],\n              [-77.446147, 38.283484],\n              [-77.446667, 38.284025],\n              [-77.44709, 38.284512],\n              [-77.447128, 38.284622],\n              [-77.447151, 38.284615],\n              [-77.448595, 38.284147],\n              [-77.448285, 38.283431],\n              [-77.449797, 38.283118],\n              [-77.450116, 38.283546],\n              [-77.450212, 38.283674],\n              [-77.450587, 38.283938],\n              [-77.451464, 38.284356],\n              [-77.45155, 38.284397],\n              [-77.45169, 38.284464],\n              [-77.451741, 38.28451],\n              [-77.453247, 38.284037],\n              [-77.454511, 38.283737],\n              [-77.45464, 38.283707],\n              [-77.454608, 38.283636],\n              [-77.453955, 38.281873],\n              [-77.453716, 38.281078],\n              [-77.453626, 38.280766],\n              [-77.453279, 38.279489],\n              [-77.453214, 38.279249],\n              [-77.453185, 38.278783],\n              [-77.45276, 38.277702],\n              [-77.452634, 38.277384],\n              [-77.452549, 38.277147],\n              [-77.451893, 38.276195],\n              [-77.451397, 38.275694],\n              [-77.450839, 38.275128],\n              [-77.450572, 38.274857],\n              [-77.45216, 38.273895],\n              [-77.452775, 38.273595],\n              [-77.454052, 38.272971],\n              [-77.454064, 38.272965],\n              [-77.456865, 38.271597],\n              [-77.457173, 38.271445],\n              [-77.45747, 38.2713],\n              [-77.457839, 38.271116],\n              [-77.458867, 38.272848],\n              [-77.459198, 38.273406],\n              [-77.460196, 38.275085],\n              [-77.460425, 38.275516],\n              [-77.460652, 38.275942],\n              [-77.460877, 38.276769],\n              [-77.461035, 38.277618],\n              [-77.461056, 38.277812],\n              [-77.461365, 38.277787],\n              [-77.461741, 38.277814],\n              [-77.462187, 38.277896],\n              [-77.463092, 38.278209],\n              [-77.463991, 38.278588],\n              [-77.465029, 38.278977],\n              [-77.465315, 38.279049],\n              [-77.465313, 38.279308],\n              [-77.465312, 38.279671],\n              [-77.465359, 38.279807],\n              [-77.465923, 38.2798],\n              [-77.467153, 38.279788],\n              [-77.467151, 38.27967],\n              [-77.46715, 38.279618],\n              [-77.467194, 38.27955],\n              [-77.468572, 38.277374],\n              [-77.468808, 38.277001],\n              [-77.46884, 38.276951],\n              [-77.46947, 38.275901],\n              [-77.470068, 38.274884],\n              [-77.471001, 38.273322],\n              [-77.471033, 38.27328],\n              [-77.472442, 38.271419],\n              [-77.47339, 38.270253],\n              [-77.475452, 38.270811],\n              [-77.47738, 38.271333],\n              [-77.477466, 38.271356],\n              [-77.478713, 38.271693],\n              [-77.479687, 38.271957],\n              [-77.479772, 38.27198],\n              [-77.482564, 38.272736],\n              [-77.482603, 38.272747],\n              [-77.482347, 38.272964],\n              [-77.482583, 38.272996],\n              [-77.482809, 38.273036],\n              [-77.483211, 38.273063],\n              [-77.484626, 38.273157],\n              [-77.485136, 38.273192],\n              [-77.48718, 38.27333],\n              [-77.487462, 38.273349],\n              [-77.488694, 38.273431],\n              [-77.489498, 38.273482],\n              [-77.491894, 38.273634],\n              [-77.491954, 38.273638],\n              [-77.492047, 38.273645],\n              [-77.49471, 38.273842],\n              [-77.492815, 38.278812],\n              [-77.492955, 38.278951],\n              [-77.493931, 38.279516],\n              [-77.494147, 38.279823],\n              [-77.494377, 38.280432],\n              [-77.494402, 38.280544],\n              [-77.494433, 38.28068],\n              [-77.494489, 38.281091],\n              [-77.494531, 38.281349],\n              [-77.494567, 38.282371],\n              [-77.495221, 38.282206],\n              [-77.495709, 38.282172],\n              [-77.496057, 38.282189],\n              [-77.496266, 38.28226],\n              [-77.496594, 38.282622],\n              [-77.49674, 38.28277],\n              [-77.496789, 38.282869],\n              [-77.496922, 38.282962],\n              [-77.497186, 38.283006],\n              [-77.497507, 38.283099],\n              [-77.497667, 38.283061],\n              [-77.497911, 38.282918],\n              [-77.498064, 38.28227],\n              [-77.498008, 38.282072],\n              [-77.498, 38.281759],\n              [-77.498195, 38.281446],\n              [-77.498231, 38.281412],\n              [-77.498453, 38.281205],\n              [-77.498522, 38.281001],\n              [-77.498515, 38.280842],\n              [-77.498515, 38.280655],\n              [-77.498522, 38.28048],\n              [-77.498563, 38.280408],\n              [-77.498647, 38.280084],\n              [-77.499023, 38.279854],\n              [-77.499218, 38.279727],\n              [-77.499349, 38.279669],\n              [-77.499451, 38.279624],\n              [-77.499468, 38.279612],\n              [-77.499608, 38.279606],\n              [-77.499747, 38.279606],\n              [-77.500005, 38.279677],\n              [-77.500081, 38.279665],\n              [-77.500186, 38.279588],\n              [-77.500325, 38.279478],\n              [-77.500472, 38.279374],\n              [-77.500597, 38.279308],\n              [-77.500785, 38.279231],\n              [-77.500952, 38.279204],\n              [-77.50121, 38.279116],\n              [-77.501412, 38.279072],\n              [-77.501607, 38.279045],\n              [-77.501775, 38.279089],\n              [-77.501976, 38.279188],\n              [-77.50215, 38.279336],\n              [-77.502255, 38.279457],\n              [-77.502331, 38.279484],\n              [-77.502429, 38.279501],\n              [-77.502589, 38.279633],\n              [-77.50268, 38.279677],\n              [-77.502763, 38.27971],\n              [-77.502916, 38.279726],\n              [-77.503014, 38.279748],\n              [-77.503084, 38.27977],\n              [-77.503146, 38.279869],\n              [-77.503188, 38.279963],\n              [-77.50325, 38.280034],\n              [-77.503341, 38.280067],\n              [-77.503571, 38.280067],\n              [-77.503731, 38.280111],\n              [-77.503856, 38.280155],\n              [-77.503982, 38.280155],\n              [-77.504323, 38.280117],\n              [-77.504532, 38.280101],\n              [-77.504769, 38.280112],\n              [-77.504978, 38.280112],\n              [-77.505382, 38.280139],\n              [-77.505591, 38.280178],\n              [-77.505855, 38.28026],\n              [-77.506009, 38.280304],\n              [-77.506232, 38.280321],\n              [-77.506371, 38.280327],\n              [-77.506576, 38.280357],\n              [-77.506629, 38.280365],\n              [-77.506893, 38.280404],\n              [-77.507012, 38.280426],\n              [-77.507158, 38.280459],\n              [-77.507464, 38.280481],\n              [-77.507736, 38.280508],\n              [-77.5079, 38.280541],\n              [-77.508043, 38.280569],\n              [-77.508321, 38.28058],\n              [-77.508969, 38.280531],\n              [-77.509324, 38.280487],\n              [-77.509547, 38.280427],\n              [-77.509875, 38.280356],\n              [-77.510244, 38.28029],\n              [-77.510516, 38.280213],\n              [-77.510787, 38.280164],\n              [-77.510875, 38.280144],\n              [-77.511101, 38.280093],\n              [-77.511366, 38.280049],\n              [-77.511661, 38.279993],\n              [-77.511751, 38.279976],\n              [-77.511828, 38.279961],\n              [-77.509406, 38.286778],\n              [-77.50935, 38.286936],\n              [-77.508165, 38.290399],\n              [-77.507565, 38.292151],\n              [-77.507623, 38.292182],\n              [-77.50779, 38.292259],\n              [-77.507936, 38.292347],\n              [-77.508104, 38.29244],\n              [-77.508236, 38.292528],\n              [-77.508438, 38.292654],\n              [-77.508584, 38.292753],\n              [-77.508807, 38.292962],\n              [-77.508898, 38.293017],\n              [-77.509072, 38.293072],\n              [-77.509141, 38.29311],\n              [-77.509197, 38.29316],\n              [-77.509253, 38.293198],\n              [-77.509517, 38.293237],\n              [-77.509603, 38.293272],\n              [-77.509678, 38.293303],\n              [-77.509724, 38.293325],\n              [-77.509803, 38.293363],\n              [-77.510012, 38.293424],\n              [-77.510143, 38.293467],\n              [-77.510297, 38.293517],\n              [-77.510722, 38.293611],\n              [-77.510876, 38.293638],\n              [-77.511036, 38.293715],\n              [-77.511184, 38.293772],\n              [-77.511294, 38.293814],\n              [-77.511537, 38.29394],\n              [-77.511649, 38.294012],\n              [-77.511816, 38.294111],\n              [-77.511948, 38.294221],\n              [-77.512067, 38.294303],\n              [-77.51213, 38.294379],\n              [-77.512178, 38.294435],\n              [-77.512195, 38.294452],\n              [-77.512269, 38.294528],\n              [-77.512352, 38.2946],\n              [-77.51245, 38.294644],\n              [-77.512517, 38.294666],\n              [-77.512596, 38.294693],\n              [-77.512679, 38.294699],\n              [-77.512756, 38.294688],\n              [-77.51277, 38.294705],\n              [-77.512798, 38.294737],\n              [-77.51279, 38.294797],\n              [-77.512886, 38.295048],\n              [-77.513, 38.295347],\n              [-77.513038, 38.295392],\n              [-77.51311, 38.295475],\n              [-77.513252, 38.295796],\n              [-77.513274, 38.295845],\n              [-77.513351, 38.29602],\n              [-77.513571, 38.296276],\n              [-77.513602, 38.296312],\n              [-77.514045, 38.296186],\n              [-77.514052, 38.296184],\n              [-77.514117, 38.296148],\n              [-77.514314, 38.29603],\n              [-77.514601, 38.295867],\n              [-77.515485, 38.295574],\n              [-77.51572, 38.295496],\n              [-77.516693, 38.295174],\n              [-77.516807, 38.295136],\n              [-77.516834, 38.295197],\n              [-77.51695, 38.295463],\n              [-77.517134, 38.295438],\n              [-77.517895, 38.296922],\n              [-77.517713, 38.297315],\n              [-77.517994, 38.297533],\n              [-77.51785, 38.297682],\n              [-77.517835, 38.297697],\n              [-77.517085, 38.298471],\n              [-77.51613, 38.300022],\n              [-77.515288, 38.302539],\n              [-77.514885, 38.305507],\n              [-77.516423, 38.305622],\n              [-77.516353, 38.306337],\n              [-77.516346, 38.30641],\n              [-77.517066, 38.306464],\n              [-77.517565, 38.306502],\n              [-77.517672, 38.306513],\n              [-77.518257, 38.306566],\n              [-77.518292, 38.30657],\n              [-77.518534, 38.306595],\n              [-77.519331, 38.306672],\n              [-77.51949, 38.306683],\n              [-77.519698, 38.306698],\n              [-77.520051, 38.306706],\n              [-77.520167, 38.306707],\n              [-77.520579, 38.306698],\n              [-77.520908, 38.30668],\n              [-77.521918, 38.3066],\n              [-77.522076, 38.306593],\n              [-77.522274, 38.306597],\n              [-77.522435, 38.306612],\n              [-77.522664, 38.30665],\n              [-77.522853, 38.306697],\n              [-77.523164, 38.306799],\n              [-77.523209, 38.306812],\n              [-77.523372, 38.306856],\n              [-77.523424, 38.306869],\n              [-77.523607, 38.306907],\n              [-77.523656, 38.306915],\n              [-77.523798, 38.306937],\n              [-77.52404, 38.306963],\n              [-77.524811, 38.30701],\n              [-77.525003, 38.307025],\n              [-77.525617, 38.307072],\n              [-77.526041, 38.30712],\n              [-77.52623, 38.307159],\n              [-77.526378, 38.307202],\n              [-77.526538, 38.30726],\n              [-77.527106, 38.307477],\n              [-77.527558, 38.30765],\n              [-77.528526, 38.308058],\n              [-77.528682, 38.308142],\n              [-77.528813, 38.308193],\n              [-77.529195, 38.308295],\n              [-77.52962, 38.308388],\n              [-77.530585, 38.308475],\n              [-77.53102, 38.308439],\n              [-77.532315, 38.308506],\n              [-77.532688, 38.308475],\n              [-77.532681, 38.308511],\n              [-77.532673, 38.308539],\n              [-77.532617, 38.308666],\n              [-77.532547, 38.308765],\n              [-77.532387, 38.308814],\n              [-77.532234, 38.30883],\n              [-77.532053, 38.308836],\n              [-77.531537, 38.308814],\n              [-77.531077, 38.308786],\n              [-77.530861, 38.308797],\n              [-77.530687, 38.308852],\n              [-77.530547, 38.308923],\n              [-77.530394, 38.309011],\n              [-77.530366, 38.309057],\n              [-77.530298, 38.30917],\n              [-77.530297, 38.309176],\n              [-77.530291, 38.30918],\n              [-77.530549, 38.309311],\n              [-77.530393, 38.309415],\n              [-77.530461, 38.30946],\n              [-77.530487, 38.309477],\n              [-77.530497, 38.309484],\n              [-77.530549, 38.309518],\n              [-77.530822, 38.309698],\n              [-77.531721, 38.309955],\n              [-77.531919, 38.310012],\n              [-77.531982, 38.31003],\n              [-77.53202, 38.310041],\n              [-77.532076, 38.310057],\n              [-77.532083, 38.310059],\n              [-77.532405, 38.310151],\n              [-77.532426, 38.310154],\n              [-77.532434, 38.310155],\n              [-77.532444, 38.310156],\n              [-77.532477, 38.31016],\n              [-77.532529, 38.310166],\n              [-77.532674, 38.310183],\n              [-77.5349, 38.310444],\n              [-77.535791, 38.310744],\n              [-77.535797, 38.310746],\n              [-77.535805, 38.310749],\n              [-77.536345, 38.310931],\n              [-77.53642, 38.310974],\n              [-77.53643, 38.31098],\n              [-77.537696, 38.311707],\n              [-77.537712, 38.311716],\n              [-77.537793, 38.311776],\n              [-77.537802, 38.311783],\n              [-77.537807, 38.311787],\n              [-77.539076, 38.312729],\n              [-77.540226, 38.313637],\n              [-77.540426, 38.313795],\n              [-77.540431, 38.313799],\n              [-77.540462, 38.313824],\n              [-77.540598, 38.313985],\n              [-77.540732, 38.314143],\n              [-77.541154, 38.314698],\n              [-77.542956, 38.317066],\n              [-77.543082, 38.317402],\n              [-77.54326, 38.317876],\n              [-77.543264, 38.317887],\n              [-77.54327, 38.317903],\n              [-77.543273, 38.31791],\n              [-77.543366, 38.318151],\n              [-77.543439, 38.318817],\n              [-77.54344, 38.318828],\n              [-77.543451, 38.318931],\n              [-77.543638, 38.320261],\n              [-77.543639, 38.32027],\n              [-77.54364, 38.320278],\n              [-77.543681, 38.320573],\n              [-77.543782, 38.320894],\n              [-77.543819, 38.321011],\n              [-77.544266, 38.322279],\n              [-77.54436, 38.322546],\n              [-77.544426, 38.32296],\n              [-77.544427, 38.322969],\n              [-77.544429, 38.32298],\n              [-77.544432, 38.322997],\n              [-77.544435, 38.323013],\n              [-77.544437, 38.323023],\n              [-77.544488, 38.323336],\n              [-77.544489, 38.323342],\n              [-77.54453, 38.323596],\n              [-77.544849, 38.324289],\n              [-77.544851, 38.324294],\n              [-77.544886, 38.32437],\n              [-77.544957, 38.324463],\n              [-77.544961, 38.324468],\n              [-77.544973, 38.324484],\n              [-77.545268, 38.324874],\n              [-77.54533, 38.324942],\n              [-77.545337, 38.324949],\n              [-77.545342, 38.324954],\n              [-77.545462, 38.325089],\n              [-77.545692, 38.325286],\n              [-77.545696, 38.32529],\n              [-77.545805, 38.325383],\n              [-77.546099, 38.325609],\n              [-77.546397, 38.325871],\n              [-77.546927, 38.326209],\n              [-77.547408, 38.326468],\n              [-77.54817, 38.326939],\n              [-77.548901, 38.327524],\n              [-77.549607, 38.328128],\n              [-77.549939, 38.328446],\n              [-77.550544, 38.329038],\n              [-77.550603, 38.329095],\n              [-77.550821, 38.329215],\n              [-77.550828, 38.329219],\n              [-77.551956, 38.329838],\n              [-77.55204, 38.329884],\n              [-77.55208, 38.3299],\n              [-77.553174, 38.330346],\n              [-77.553181, 38.330349],\n              [-77.553916, 38.330648],\n              [-77.554078, 38.330714],\n              [-77.554323, 38.330885],\n              [-77.555876, 38.332159],\n              [-77.555882, 38.332164],\n              [-77.556012, 38.332271],\n              [-77.557484, 38.333334],\n              [-77.558224, 38.333781],\n              [-77.558257, 38.333801],\n              [-77.558298, 38.333817],\n              [-77.558844, 38.334035],\n              [-77.559718, 38.334348],\n              [-77.55973, 38.334352],\n              [-77.560657, 38.334517],\n              [-77.560797, 38.334542],\n              [-77.56087, 38.334555],\n              [-77.560889, 38.334558],\n              [-77.560899, 38.33456],\n              [-77.561234, 38.334619],\n              [-77.561467, 38.334642],\n              [-77.56289, 38.334784],\n              [-77.563005, 38.334796],\n              [-77.563157, 38.334755],\n              [-77.563713, 38.334606],\n              [-77.564555, 38.334606],\n              [-77.564577, 38.334606],\n              [-77.564774, 38.334634],\n              [-77.564801, 38.334638],\n              [-77.564809, 38.334639],\n              [-77.564817, 38.33464],\n              [-77.565009, 38.334667],\n              [-77.565542, 38.335068],\n              [-77.565553, 38.33507],\n              [-77.56583, 38.335108],\n              [-77.566835, 38.335246],\n              [-77.566843, 38.335248],\n              [-77.567121, 38.335287],\n              [-77.567229, 38.335346],\n              [-77.567731, 38.335626],\n              [-77.567831, 38.335711],\n              [-77.568146, 38.335978],\n              [-77.568478, 38.336259],\n              [-77.569125, 38.33733],\n              [-77.569495, 38.338629],\n              [-77.569498, 38.338638],\n              [-77.569581, 38.338883],\n              [-77.569712, 38.339152],\n              [-77.569764, 38.339259],\n              [-77.569774, 38.339353],\n              [-77.569775, 38.339358],\n              [-77.569825, 38.33983],\n              [-77.569534, 38.340715],\n              [-77.569356, 38.341235],\n              [-77.569293, 38.341302],\n              [-77.568847, 38.341778],\n              [-77.568778, 38.341852],\n              [-77.568727, 38.341918],\n              [-77.568278, 38.342499],\n              [-77.568058, 38.342744],\n              [-77.568053, 38.342749],\n              [-77.567022, 38.343897],\n              [-77.566975, 38.343949],\n              [-77.566888, 38.344103],\n              [-77.566834, 38.344198],\n              [-77.566771, 38.34431],\n              [-77.566788, 38.344481],\n              [-77.566827, 38.344861],\n              [-77.566854, 38.345127],\n              [-77.566987, 38.345355],\n              [-77.567463, 38.346028],\n              [-77.567475, 38.346038],\n              [-77.567481, 38.346044],\n              [-77.567486, 38.346048],\n              [-77.567525, 38.346081],\n              [-77.567547, 38.346099],\n              [-77.567655, 38.34619],\n              [-77.567671, 38.346203],\n              [-77.568458, 38.346865],\n              [-77.569614, 38.347581],\n              [-77.570602, 38.347959],\n              [-77.571092, 38.348002],\n              [-77.571371, 38.348026],\n              [-77.571529, 38.34804],\n              [-77.57165, 38.348051],\n              [-77.571682, 38.348054],\n              [-77.57185, 38.348069],\n              [-77.572031, 38.34802],\n              [-77.572065, 38.348021],\n              [-77.572078, 38.348022],\n              [-77.572086, 38.348022],\n              [-77.572119, 38.348023],\n              [-77.572127, 38.348023],\n              [-77.57261, 38.348038],\n              [-77.573054, 38.348012],\n              [-77.573925, 38.347961],\n              [-77.575424, 38.347752],\n              [-77.575434, 38.347751],\n              [-77.575441, 38.34775],\n              [-77.575793, 38.347701],\n              [-77.576248, 38.347572],\n              [-77.576256, 38.34757],\n              [-77.576262, 38.347568],\n              [-77.576477, 38.347507],\n              [-77.576879, 38.347334],\n              [-77.576915, 38.347352],\n              [-77.576946, 38.34737],\n              [-77.577781, 38.347025],\n              [-77.578599, 38.346865],\n              [-77.57891, 38.346854],\n              [-77.578947, 38.346853],\n              [-77.578955, 38.346852],\n              [-77.578969, 38.346852],\n              [-77.579207, 38.346843],\n              [-77.579596, 38.346886],\n              [-77.579837, 38.346912],\n              [-77.579897, 38.346918],\n              [-77.581106, 38.347086],\n              [-77.581259, 38.347107],\n              [-77.581302, 38.347113],\n              [-77.581948, 38.34723],\n              [-77.582377, 38.347215],\n              [-77.582465, 38.347212],\n              [-77.582477, 38.347211],\n              [-77.582484, 38.347211],\n              [-77.582513, 38.34721],\n              [-77.583187, 38.347185],\n              [-77.583195, 38.347184],\n              [-77.583941, 38.347075],\n              [-77.58397, 38.347065],\n              [-77.584675, 38.346814],\n              [-77.584794, 38.346736],\n              [-77.584982, 38.346613],\n              [-77.584989, 38.346608],\n              [-77.585223, 38.346456],\n              [-77.585308, 38.346365],\n              [-77.585484, 38.346175],\n              [-77.5859, 38.345814],\n              [-77.586298, 38.345472],\n              [-77.586306, 38.345465],\n              [-77.586403, 38.345381],\n              [-77.586517, 38.345282],\n              [-77.586631, 38.345182],\n              [-77.587057, 38.344813],\n              [-77.587528, 38.343809],\n              [-77.588308, 38.342472],\n              [-77.588866, 38.341895],\n              [-77.589277, 38.341473],\n              [-77.589933, 38.340797],\n              [-77.59058, 38.340017],\n              [-77.591071, 38.339573],\n              [-77.591587, 38.338952],\n              [-77.592777, 38.337794],\n              [-77.593355, 38.337233],\n              [-77.594223, 38.336497],\n              [-77.594481, 38.336288],\n              [-77.594492, 38.336278],\n              [-77.594798, 38.33603],\n              [-77.595418, 38.335724],\n              [-77.595596, 38.335636],\n              [-77.595887, 38.335379],\n              [-77.596298, 38.335015],\n              [-77.59674, 38.334702],\n              [-77.597287, 38.334317],\n              [-77.59763, 38.334075],\n              [-77.598542, 38.333398],\n              [-77.599738, 38.332782],\n              [-77.600646, 38.332573],\n              [-77.601679, 38.332555],\n              [-77.60239, 38.332726],\n              [-77.603196, 38.333065],\n              [-77.603729, 38.333472],\n              [-77.603867, 38.333586],\n              [-77.604478, 38.334089],\n              [-77.605089, 38.334592],\n              [-77.605261, 38.334735],\n              [-77.60543, 38.334962],\n              [-77.605434, 38.334967],\n              [-77.605442, 38.334978],\n              [-77.605568, 38.335148],\n              [-77.605893, 38.335576],\n              [-77.606157, 38.335924],\n              [-77.60657, 38.336464],\n              [-77.606576, 38.336472],\n              [-77.606609, 38.336515],\n              [-77.606618, 38.336526],\n              [-77.606635, 38.336548],\n              [-77.606646, 38.336562],\n              [-77.60665, 38.336567],\n              [-77.606716, 38.336653],\n              [-77.606851, 38.336719],\n              [-77.606879, 38.336732],\n              [-77.606888, 38.336807],\n              [-77.606888, 38.336813],\n              [-77.606889, 38.336821],\n              [-77.606891, 38.336836],\n              [-77.606926, 38.337127],\n              [-77.60693, 38.337137],\n              [-77.607147, 38.337665],\n              [-77.607123, 38.337806],\n              [-77.607091, 38.337996],\n              [-77.607009, 38.338577],\n              [-77.606696, 38.339265],\n              [-77.60614, 38.340051],\n              [-77.605842, 38.340418],\n              [-77.60535, 38.341333],\n              [-77.604699, 38.342468],\n              [-77.604516, 38.342869],\n              [-77.604072, 38.343844],\n              [-77.603469, 38.345406],\n              [-77.603031, 38.346555],\n              [-77.60273, 38.347448],\n              [-77.602625, 38.34784],\n              [-77.602616, 38.347882],\n              [-77.602603, 38.347945],\n              [-77.60258, 38.34849],\n              [-77.602579, 38.348497],\n              [-77.602579, 38.348503],\n              [-77.602567, 38.348671],\n              [-77.60257, 38.348679],\n              [-77.602799, 38.349241],\n              [-77.603217, 38.35006],\n              [-77.6038, 38.351078],\n              [-77.603812, 38.351093],\n              [-77.604502, 38.351951],\n              [-77.60516, 38.352517],\n              [-77.605897, 38.35301],\n              [-77.606577, 38.353737],\n              [-77.607013, 38.354251],\n              [-77.607433, 38.354745],\n              [-77.608319, 38.355632],\n              [-77.608958, 38.356368],\n              [-77.609464, 38.356984],\n              [-77.609777, 38.357545],\n              [-77.60987, 38.357897],\n              [-77.609879, 38.357931],\n              [-77.609883, 38.357945],\n              [-77.609887, 38.357961],\n              [-77.609888, 38.357966],\n              [-77.60989, 38.357974],\n              [-77.609907, 38.358037],\n              [-77.609939, 38.358157],\n              [-77.609941, 38.358162],\n              [-77.610215, 38.35896],\n              [-77.610261, 38.359068],\n              [-77.610263, 38.359073],\n              [-77.610267, 38.359083],\n              [-77.610277, 38.359106],\n              [-77.610385, 38.359359],\n              [-77.610614, 38.359899],\n              [-77.610888, 38.360533],\n              [-77.611049, 38.360851],\n              [-77.611051, 38.360856],\n              [-77.611156, 38.361064],\n              [-77.611233, 38.361215],\n              [-77.611288, 38.361437],\n              [-77.611292, 38.361454],\n              [-77.611293, 38.361459],\n              [-77.611295, 38.361466],\n              [-77.611374, 38.361786],\n              [-77.611587, 38.362336],\n              [-77.611898, 38.362918],\n              [-77.612143, 38.363446],\n              [-77.612145, 38.363451],\n              [-77.61221, 38.36359],\n              [-77.612215, 38.363602],\n              [-77.612219, 38.363611],\n              [-77.61223, 38.363635],\n              [-77.612246, 38.363669],\n              [-77.612298, 38.36378],\n              [-77.612649, 38.364306],\n              [-77.613101, 38.364689],\n              [-77.613938, 38.3651],\n              [-77.614562, 38.365264],\n              [-77.614571, 38.365267],\n              [-77.614763, 38.365318],\n              [-77.615243, 38.365548],\n              [-77.616, 38.365872],\n              [-77.616012, 38.365877],\n              [-77.616034, 38.365886],\n              [-77.61614, 38.365931],\n              [-77.61715, 38.366312],\n              [-77.617238, 38.366339],\n              [-77.617326, 38.366366],\n              [-77.618076, 38.366618],\n              [-77.618362, 38.366704],\n              [-77.618379, 38.366762],\n              [-77.61849, 38.367138],\n              [-77.618681, 38.36766],\n              [-77.618729, 38.367843],\n              [-77.618811, 38.367861],\n              [-77.618918, 38.367885],\n              [-77.619197, 38.367948],\n              [-77.619477, 38.36801],\n              [-77.619973, 38.368031],\n              [-77.620165, 38.368038],\n              [-77.620704, 38.368061],\n              [-77.621634, 38.368158],\n              [-77.621884, 38.368213],\n              [-77.621907, 38.368218],\n              [-77.62192, 38.368221],\n              [-77.622107, 38.368269],\n              [-77.622779, 38.36844],\n              [-77.622859, 38.36846],\n              [-77.623079, 38.368473],\n              [-77.623197, 38.368436],\n              [-77.624233, 38.368433],\n              [-77.624406, 38.368396],\n              [-77.624518, 38.368372],\n              [-77.624605, 38.368385],\n              [-77.624695, 38.368399],\n              [-77.624723, 38.368403],\n              [-77.624731, 38.368404],\n              [-77.624881, 38.368427],\n              [-77.624989, 38.368371],\n              [-77.625002, 38.368373],\n              [-77.625236, 38.368409],\n              [-77.625397, 38.368433],\n              [-77.625634, 38.368558],\n              [-77.625795, 38.368642],\n              [-77.625979, 38.368739],\n              [-77.62656, 38.368863],\n              [-77.626795, 38.368862],\n              [-77.627248, 38.368749],\n              [-77.628359, 38.36808],\n              [-77.628575, 38.367786],\n              [-77.628655, 38.367471],\n              [-77.628814, 38.36727],\n              [-77.62887, 38.367199],\n              [-77.62892, 38.367135],\n              [-77.628947, 38.367101],\n              [-77.628974, 38.367066],\n              [-77.629142, 38.366853],\n              [-77.62943, 38.366642],\n              [-77.629646, 38.366348],\n              [-77.629825, 38.365829],\n              [-77.630023, 38.365605],\n              [-77.63024, 38.365492],\n              [-77.630349, 38.36535],\n              [-77.630383, 38.365305],\n              [-77.630663, 38.364938],\n              [-77.630887, 38.364426],\n              [-77.630995, 38.36437],\n              [-77.631137, 38.363627],\n              [-77.631424, 38.363053],\n              [-77.632152, 38.362035],\n              [-77.632448, 38.361426],\n              [-77.632817, 38.3609],\n              [-77.632925, 38.360843],\n              [-77.633096, 38.360542],\n              [-77.63342, 38.360191],\n              [-77.634089, 38.359783],\n              [-77.634966, 38.359479],\n              [-77.635193, 38.359513],\n              [-77.635573, 38.359316],\n              [-77.63608, 38.359356],\n              [-77.636297, 38.359244],\n              [-77.636696, 38.359158],\n              [-77.637104, 38.35922],\n              [-77.637321, 38.359107],\n              [-77.637719, 38.359022],\n              [-77.637991, 38.359063],\n              [-77.6381, 38.359007],\n              [-77.638262, 38.358922],\n              [-77.638552, 38.358893],\n              [-77.639504, 38.359037],\n              [-77.63985, 38.359162],\n              [-77.640086, 38.359343],\n              [-77.640358, 38.359385],\n              [-77.640541, 38.359594],\n              [-77.641177, 38.359872],\n              [-77.641532, 38.360144],\n              [-77.641849, 38.360192],\n              [-77.641995, 38.360359],\n              [-77.642849, 38.360706],\n              [-77.643158, 38.360971],\n              [-77.643476, 38.361019],\n              [-77.643731, 38.361312],\n              [-77.643858, 38.361368],\n              [-77.644169, 38.361815],\n              [-77.644413, 38.362453],\n              [-77.644509, 38.362702],\n              [-77.644503, 38.363283],\n              [-77.644586, 38.363514],\n              [-77.644524, 38.363759],\n              [-77.644588, 38.363878],\n              [-77.644482, 38.364298],\n              [-77.644522, 38.365068],\n              [-77.644505, 38.365138],\n              [-77.644214, 38.366658],\n              [-77.644, 38.367316],\n              [-77.643614, 38.368094],\n              [-77.643571, 38.368144],\n              [-77.642741, 38.369126],\n              [-77.642443, 38.369372],\n              [-77.641196, 38.37002],\n              [-77.640119, 38.370366],\n              [-77.639794, 38.370535],\n              [-77.63906, 38.370643],\n              [-77.638697, 38.370588],\n              [-77.638253, 38.370666],\n              [-77.637494, 38.371061],\n              [-77.637196, 38.371307],\n              [-77.637107, 38.371657],\n              [-77.637145, 38.371881],\n              [-77.638112, 38.373081],\n              [-77.638086, 38.373187],\n              [-77.638516, 38.373906],\n              [-77.638517, 38.374088],\n              [-77.639083, 38.374828],\n              [-77.639092, 38.375009],\n              [-77.639075, 38.375072],\n              [-77.639185, 38.375197],\n              [-77.639312, 38.375253],\n              [-77.64005, 38.376055],\n              [-77.64015, 38.376034],\n              [-77.641084, 38.377065],\n              [-77.641181, 38.377171],\n              [-77.641364, 38.377199],\n              [-77.641407, 38.377206],\n              [-77.641667, 38.377378],\n              [-77.641689, 38.377394],\n              [-77.641998, 38.377477],\n              [-77.642097, 38.377481],\n              [-77.642325, 38.37749],\n              [-77.642487, 38.377405],\n              [-77.64285, 38.37746],\n              [-77.642969, 38.377551],\n              [-77.644275, 38.377784],\n              [-77.644514, 38.377875],\n              [-77.644748, 38.377965],\n              [-77.645097, 38.378017],\n              [-77.645746, 38.378115],\n              [-77.646071, 38.377946],\n              [-77.646687, 38.37793],\n              [-77.646959, 38.377789],\n              [-77.647257, 38.377725],\n              [-77.647666, 38.377787],\n              [-77.647948, 38.377641],\n              [-77.6481, 38.377562],\n              [-77.648236, 38.377582],\n              [-77.649194, 38.377145],\n              [-77.64933, 38.377166],\n              [-77.650234, 38.376757],\n              [-77.65159, 38.376004],\n              [-77.651933, 38.375813],\n              [-77.652013, 38.375781],\n              [-77.652774, 38.375467],\n              [-77.653028, 38.375397],\n              [-77.653391, 38.375451],\n              [-77.653608, 38.375339],\n              [-77.654569, 38.375447],\n              [-77.65485, 38.375453],\n              [-77.654959, 38.375397],\n              [-77.655229, 38.375434],\n              [-77.655572, 38.37548],\n              [-77.655587, 38.375482],\n              [-77.655594, 38.375483],\n              [-77.655601, 38.375484],\n              [-77.65561, 38.375485],\n              [-77.655655, 38.375491],\n              [-77.65612, 38.375554],\n              [-77.656572, 38.37535],\n              [-77.656935, 38.375404],\n              [-77.657622, 38.375108],\n              [-77.657633, 38.375008],\n              [-77.657657, 38.374942],\n              [-77.658633, 38.374434],\n              [-77.658778, 38.37442],\n              [-77.659113, 38.374228],\n              [-77.65933, 38.374103],\n              [-77.659482, 38.373871],\n              [-77.659862, 38.373674],\n              [-77.660006, 38.373478],\n              [-77.660331, 38.373309],\n              [-77.660513, 38.373336],\n              [-77.661055, 38.373054],\n              [-77.661245, 38.373047],\n              [-77.66167, 38.372856],\n              [-77.661906, 38.372855],\n              [-77.663271, 38.372207],\n              [-77.664716, 38.371243],\n              [-77.665583, 38.370792],\n              [-77.665719, 38.370813],\n              [-77.66619, 38.370629],\n              [-77.666507, 38.370677],\n              [-77.667077, 38.370472],\n              [-77.667713, 38.370659],\n              [-77.667794, 38.370616],\n              [-77.668066, 38.370658],\n              [-77.668346, 38.370482],\n              [-77.66988, 38.370749],\n              [-77.670169, 38.37072],\n              [-77.670332, 38.370636],\n              [-77.670514, 38.370663],\n              [-77.67093, 38.370508],\n              [-77.671364, 38.370464],\n              [-77.671446, 38.370513],\n              [-77.671609, 38.370428],\n              [-77.671799, 38.37033],\n              [-77.67244, 38.369935],\n              [-77.673088, 38.369233],\n              [-77.673466, 38.368672],\n              [-77.673688, 38.367978],\n              [-77.673769, 38.367845],\n              [-77.673796, 38.367827],\n              [-77.673995, 38.367697],\n              [-77.674192, 38.367291],\n              [-77.67449, 38.367045],\n              [-77.675863, 38.36627],\n              [-77.676657, 38.365735],\n              [-77.677144, 38.3653],\n              [-77.677467, 38.364767],\n              [-77.677647, 38.364612],\n              [-77.67762, 38.364535],\n              [-77.677764, 38.364339],\n              [-77.678075, 38.363295],\n              [-77.678037, 38.363071],\n              [-77.678213, 38.362188],\n              [-77.678288, 38.361145],\n              [-77.678629, 38.360542],\n              [-77.679107, 38.360141],\n              [-77.679338, 38.360021],\n              [-77.679541, 38.359916],\n              [-77.679885, 38.359859],\n              [-77.680293, 38.35992],\n              [-77.680555, 38.359814],\n              [-77.681018, 38.359848],\n              [-77.681362, 38.359791],\n              [-77.68177, 38.359852],\n              [-77.681987, 38.359739],\n              [-77.682282, 38.359744],\n              [-77.683065, 38.359756],\n              [-77.68341, 38.359699],\n              [-77.684643, 38.359849],\n              [-77.685168, 38.359819],\n              [-77.685548, 38.359621],\n              [-77.685681, 38.359651],\n              [-77.685793, 38.359677],\n              [-77.685899, 38.359622],\n              [-77.685983, 38.359578],\n              [-77.686444, 38.359429],\n              [-77.687224, 38.35951],\n              [-77.687495, 38.359369],\n              [-77.688111, 38.359353],\n              [-77.688274, 38.359269],\n              [-77.688953, 38.359189],\n              [-77.690672, 38.358721],\n              [-77.690704, 38.35873],\n              [-77.691846, 38.35816],\n              [-77.692963, 38.357351],\n              [-77.693231, 38.357125],\n              [-77.694116, 38.356629],\n              [-77.694619, 38.356501],\n              [-77.695473, 38.356429],\n              [-77.695785, 38.356473],\n              [-77.696786, 38.356655],\n              [-77.697111, 38.356731],\n              [-77.697592, 38.357077],\n              [-77.700328, 38.359586],\n              [-77.701038, 38.36007],\n              [-77.701244, 38.360137],\n              [-77.701301, 38.360155],\n              [-77.701894, 38.360347],\n              [-77.702, 38.360368],\n              [-77.703191, 38.360606],\n              [-77.703197, 38.36058],\n              [-77.703209, 38.360536],\n              [-77.703451, 38.360367],\n              [-77.703458, 38.360362],\n              [-77.703466, 38.360357],\n              [-77.704066, 38.359938],\n              [-77.704154, 38.359588],\n              [-77.703542, 38.358841],\n              [-77.703578, 38.358701],\n              [-77.70374, 38.358617],\n              [-77.704529, 38.358663],\n              [-77.704737, 38.358585],\n              [-77.705271, 38.35852],\n              [-77.705533, 38.358414],\n              [-77.705987, 38.358482],\n              [-77.706669, 38.358766],\n              [-77.707077, 38.358828],\n              [-77.707548, 38.358826],\n              [-77.707765, 38.358713],\n              [-77.7078, 38.358573],\n              [-77.707016, 38.357764],\n              [-77.706941, 38.357499],\n              [-77.706686, 38.357206],\n              [-77.70615, 38.357089],\n              [-77.705661, 38.357161],\n              [-77.705299, 38.357106],\n              [-77.705324, 38.356819],\n              [-77.705522, 38.356594],\n              [-77.705584, 38.356349],\n              [-77.705146, 38.355847],\n              [-77.705064, 38.355624],\n              [-77.704955, 38.355548],\n              [-77.705082, 38.355531],\n              [-77.705109, 38.355466],\n              [-77.705134, 38.355366],\n              [-77.705151, 38.355258],\n              [-77.705213, 38.355021],\n              [-77.705493, 38.354845],\n              [-77.706536, 38.355002],\n              [-77.70758, 38.355341],\n              [-77.709086, 38.355531],\n              [-77.709465, 38.355333],\n              [-77.709591, 38.355116],\n              [-77.709162, 38.35467],\n              [-77.708689, 38.35449],\n              [-77.708478, 38.354364],\n              [-77.70828, 38.354246],\n              [-77.70796, 38.353834],\n              [-77.70783, 38.353233],\n              [-77.707637, 38.352877],\n              [-77.707708, 38.352597],\n              [-77.70796, 38.352344],\n              [-77.708267, 38.352245],\n              [-77.708997, 38.352395],\n              [-77.709325, 38.35245],\n              [-77.710071, 38.352499],\n              [-77.710949, 38.352642],\n              [-77.711005, 38.352603],\n              [-77.710999, 38.352449],\n              [-77.710998, 38.352428],\n              [-77.710726, 38.351895],\n              [-77.710705, 38.351786],\n              [-77.710768, 38.351549],\n              [-77.710782, 38.351077],\n              [-77.710851, 38.350951],\n              [-77.711018, 38.350836],\n              [-77.711199, 38.350873],\n              [-77.7115, 38.350934],\n              [-77.711723, 38.351028],\n              [-77.711981, 38.351165],\n              [-77.712357, 38.351242],\n              [-77.712657, 38.351379],\n              [-77.713034, 38.351439],\n              [-77.713089, 38.351395],\n              [-77.71311, 38.351335],\n              [-77.713043, 38.351172],\n              [-77.713006, 38.351082],\n              [-77.713033, 38.350907],\n              [-77.713189, 38.350725],\n              [-77.713249, 38.350654],\n              [-77.713256, 38.350588],\n              [-77.713192, 38.350455],\n              [-77.71311, 38.350286],\n              [-77.713096, 38.350204],\n              [-77.713264, 38.350084],\n              [-77.713312, 38.35005],\n              [-77.713786, 38.349836],\n              [-77.714037, 38.349742],\n              [-77.714253, 38.349567],\n              [-77.714601, 38.349166],\n              [-77.714664, 38.348985],\n              [-77.714667, 38.348959],\n              [-77.714706, 38.348611],\n              [-77.714671, 38.348441],\n              [-77.714531, 38.348249],\n              [-77.714492, 38.348189],\n              [-77.714399, 38.348046],\n              [-77.714329, 38.347974],\n              [-77.714085, 38.347898],\n              [-77.713562, 38.347673],\n              [-77.713422, 38.347596],\n              [-77.713262, 38.347475],\n              [-77.713171, 38.347371],\n              [-77.713039, 38.347173],\n              [-77.712948, 38.347085],\n              [-77.71269, 38.346525],\n              [-77.712453, 38.346152],\n              [-77.712397, 38.346026],\n              [-77.712383, 38.345801],\n              [-77.712418, 38.345697],\n              [-77.712452, 38.345455],\n              [-77.712641, 38.345241],\n              [-77.712884, 38.344906],\n              [-77.713087, 38.34473],\n              [-77.713219, 38.344686],\n              [-77.713379, 38.344587],\n              [-77.713546, 38.344274],\n              [-77.713797, 38.344055],\n              [-77.714097, 38.344038],\n              [-77.714116, 38.344027],\n              [-77.714123, 38.344027],\n              [-77.714257, 38.343972],\n              [-77.714376, 38.343972],\n              [-77.714564, 38.344029],\n              [-77.71492, 38.344137],\n              [-77.715059, 38.344164],\n              [-77.715303, 38.344175],\n              [-77.715512, 38.344147],\n              [-77.715756, 38.344016],\n              [-77.715833, 38.343933],\n              [-77.715903, 38.343645],\n              [-77.715923, 38.343565],\n              [-77.715979, 38.343494],\n              [-77.71646, 38.343411],\n              [-77.716691, 38.343337],\n              [-77.716697, 38.343335],\n              [-77.716767, 38.343269],\n              [-77.71685, 38.343071],\n              [-77.716982, 38.342884],\n              [-77.717247, 38.342308],\n              [-77.717428, 38.342198],\n              [-77.717958, 38.342071],\n              [-77.718091, 38.342022],\n              [-77.718411, 38.341846],\n              [-77.718648, 38.34161],\n              [-77.718745, 38.341292],\n              [-77.718815, 38.340572],\n              [-77.718752, 38.340441],\n              [-77.718675, 38.340122],\n              [-77.718591, 38.339947],\n              [-77.718208, 38.339656],\n              [-77.718068, 38.339464],\n              [-77.717803, 38.339217],\n              [-77.717476, 38.33903],\n              [-77.717057, 38.338728],\n              [-77.71653, 38.338397],\n              [-77.716367, 38.338295],\n              [-77.716151, 38.338119],\n              [-77.716111, 38.338072],\n              [-77.716043, 38.33799],\n              [-77.715921, 38.337845],\n              [-77.715544, 38.337466],\n              [-77.715425, 38.337378],\n              [-77.71523, 38.337296],\n              [-77.715121, 38.33721],\n              [-77.715035, 38.337142],\n              [-77.714861, 38.337005],\n              [-77.7147, 38.336698],\n              [-77.714679, 38.336582],\n              [-77.714714, 38.33639],\n              [-77.714818, 38.336077],\n              [-77.715139, 38.335825],\n              [-77.715278, 38.335748],\n              [-77.715383, 38.33572],\n              [-77.715655, 38.335605],\n              [-77.71594, 38.335517],\n              [-77.71608, 38.335495],\n              [-77.716303, 38.335506],\n              [-77.716561, 38.335594],\n              [-77.716735, 38.335632],\n              [-77.716993, 38.335615],\n              [-77.717113, 38.335587],\n              [-77.717279, 38.335549],\n              [-77.717836, 38.335489],\n              [-77.717949, 38.335487],\n              [-77.717972, 38.335487],\n              [-77.717991, 38.335487],\n              [-77.717999, 38.335487],\n              [-77.718007, 38.335486],\n              [-77.71802, 38.335486],\n              [-77.718248, 38.335483],\n              [-77.718259, 38.335484],\n              [-77.719286, 38.335582],\n              [-77.7196, 38.335565],\n              [-77.719739, 38.335516],\n              [-77.719837, 38.335411],\n              [-77.71984, 38.335404],\n              [-77.719885, 38.335302],\n              [-77.719892, 38.335148],\n              [-77.71939, 38.334659],\n              [-77.719439, 38.334522],\n              [-77.719808, 38.334248],\n              [-77.720108, 38.33428],\n              [-77.720213, 38.334264],\n              [-77.720533, 38.334126],\n              [-77.720728, 38.33411],\n              [-77.720944, 38.334137],\n              [-77.721105, 38.334055],\n              [-77.721195, 38.333934],\n              [-77.721265, 38.333566],\n              [-77.721341, 38.333434],\n              [-77.721377, 38.33338],\n              [-77.721488, 38.333215],\n              [-77.721585, 38.333023],\n              [-77.721648, 38.33283],\n              [-77.721696, 38.332529],\n              [-77.721877, 38.332089],\n              [-77.721989, 38.331963],\n              [-77.722128, 38.331743],\n              [-77.722532, 38.331298],\n              [-77.722678, 38.331062],\n              [-77.722915, 38.330848],\n              [-77.722977, 38.330756],\n              [-77.723082, 38.330601],\n              [-77.723284, 38.330233],\n              [-77.723792, 38.329481],\n              [-77.723883, 38.329305],\n              [-77.724315, 38.328761],\n              [-77.724475, 38.328531],\n              [-77.724684, 38.328174],\n              [-77.724865, 38.327971],\n              [-77.725025, 38.327751],\n              [-77.725227, 38.327257],\n              [-77.72529, 38.327048],\n              [-77.725401, 38.326905],\n              [-77.72554, 38.326658],\n              [-77.725693, 38.326434],\n              [-77.725909, 38.32612],\n              [-77.725932, 38.325962],\n              [-77.725937, 38.325928],\n              [-77.725993, 38.325736],\n              [-77.726133, 38.325567],\n              [-77.726188, 38.3255],\n              [-77.726225, 38.325309],\n              [-77.726243, 38.325215],\n              [-77.726264, 38.32511],\n              [-77.726344, 38.324804],\n              [-77.726424, 38.3245],\n              [-77.726689, 38.323973],\n              [-77.72669, 38.323942],\n              [-77.726691, 38.323913],\n              [-77.727475, 38.323214],\n              [-77.727481, 38.323209],\n              [-77.727486, 38.323205],\n              [-77.72749, 38.323201],\n              [-77.729086, 38.321779],\n              [-77.729172, 38.321703],\n              [-77.729199, 38.321625],\n              [-77.729265, 38.32157],\n              [-77.730211, 38.320743],\n              [-77.731793, 38.319358],\n              [-77.736611, 38.315151],\n              [-77.738362, 38.313621],\n              [-77.739019, 38.313051],\n              [-77.740035, 38.312164],\n              [-77.740558, 38.311707],\n              [-77.742, 38.310445],\n              [-77.742004, 38.310441],\n              [-77.744454, 38.308302],\n              [-77.744524, 38.308241],\n              [-77.744534, 38.308232],\n              [-77.744695, 38.308092],\n              [-77.746672, 38.306366],\n              [-77.748167, 38.305044],\n              [-77.748307, 38.304918],\n              [-77.748419, 38.304817],\n              [-77.749583, 38.303731],\n              [-77.74972, 38.30361],\n              [-77.751229, 38.302191],\n              [-77.751336, 38.302092],\n              [-77.757204, 38.296574],\n              [-77.758601, 38.295265],\n              [-77.761298, 38.292741],\n              [-77.766253, 38.288078],\n              [-77.769463, 38.285061],\n              [-77.772244, 38.282446],\n              [-77.773299, 38.281455],\n              [-77.777867, 38.27717],\n              [-77.780507, 38.274689],\n              [-77.783264, 38.272098],\n              [-77.7835, 38.271896],\n              [-77.783527, 38.271873],\n              [-77.785812, 38.269936],\n              [-77.786394, 38.269445],\n              [-77.789503, 38.266911],\n              [-77.793984, 38.263186],\n              [-77.7983, 38.259448],\n              [-77.798321, 38.25943],\n              [-77.798533, 38.259245],\n              [-77.798571, 38.259213],\n              [-77.801566, 38.256698],\n              [-77.80602, 38.252954],\n              [-77.807464, 38.25174],\n              [-77.809368, 38.250137],\n              [-77.812299, 38.247637],\n              [-77.814042, 38.246244],\n              [-77.815901, 38.244694],\n              [-77.817417, 38.243429],\n              [-77.817855, 38.243063],\n              [-77.818526, 38.242504],\n              [-77.819149, 38.241985],\n              [-77.820078, 38.24121],\n              [-77.826772, 38.235628],\n              [-77.826809, 38.235597],\n              [-77.827629, 38.234913],\n              [-77.82987, 38.233045],\n              [-77.834097, 38.229498],\n              [-77.835743, 38.227854],\n              [-77.836435, 38.227166],\n              [-77.837005, 38.226593],\n              [-77.840033, 38.223571],\n              [-77.84173, 38.221874],\n              [-77.845562, 38.218045],\n              [-77.845973, 38.217633],\n              [-77.846902, 38.216706],\n              [-77.852286, 38.211323],\n              [-77.853574, 38.210035],\n              [-77.856035, 38.207575],\n              [-77.858041, 38.205571],\n              [-77.865098, 38.198517],\n              [-77.866582, 38.19706],\n              [-77.869763, 38.193937],\n              [-77.872123, 38.19162],\n              [-77.872181, 38.191563],\n              [-77.874778, 38.189039],\n              [-77.875736, 38.188181],\n              [-77.876205, 38.187761],\n              [-77.881313, 38.183198],\n              [-77.884938, 38.179961],\n              [-77.889071, 38.176269],\n              [-77.889422, 38.175957],\n              [-77.889731, 38.175683],\n              [-77.89319, 38.17259],\n              [-77.896021, 38.170045],\n              [-77.899196, 38.167186],\n              [-77.902363, 38.164333],\n              [-77.902894, 38.163858],\n              [-77.904562, 38.162356],\n              [-77.904953, 38.162006],\n              [-77.90698, 38.160181],\n              [-77.908399, 38.158908],\n              [-77.915042, 38.152928],\n              [-77.916843, 38.151308],\n              [-77.917833, 38.150414],\n              [-77.921958, 38.146772],\n              [-77.924242, 38.144759],\n              [-77.924472, 38.144556],\n              [-77.924702, 38.144353],\n              [-77.925407, 38.143718],\n              [-77.925967, 38.143216],\n              [-77.926587, 38.142662],\n              [-77.926596, 38.142654],\n              [-77.9266, 38.14265],\n              [-77.926609, 38.142642],\n              [-77.92689, 38.142391],\n              [-77.928886, 38.140626],\n              [-77.929208, 38.140341],\n              [-77.929416, 38.140157],\n              [-77.929436, 38.140139],\n              [-77.929469, 38.14011],\n              [-77.929483, 38.140098],\n              [-77.929489, 38.140093],\n              [-77.929499, 38.140084],\n              [-77.930881, 38.138862],\n              [-77.932596, 38.137347],\n              [-77.93439, 38.135753],\n              [-77.935031, 38.135185],\n              [-77.938702, 38.131933],\n              [-77.938751, 38.13189],\n              [-77.944577, 38.126731],\n              [-77.946398, 38.125119],\n              [-77.946627, 38.124908],\n              [-77.947546, 38.124067],\n              [-77.952372, 38.119648],\n              [-77.953573, 38.118567],\n              [-77.954821, 38.117445],\n              [-77.954378, 38.117753],\n              [-77.953524, 38.118137],\n              [-77.953426, 38.11822],\n              [-77.953426, 38.118412],\n              [-77.953362, 38.118477],\n              [-77.953327, 38.118513],\n              [-77.953028, 38.118614],\n              [-77.95273, 38.118716],\n              [-77.95263, 38.118616],\n              [-77.952232, 38.118618],\n              [-77.952232, 38.118519],\n              [-77.952232, 38.118419],\n              [-77.952232, 38.118319],\n              [-77.951899, 38.118153],\n              [-77.951834, 38.118121],\n              [-77.951735, 38.118021],\n              [-77.951436, 38.118023],\n              [-77.951337, 38.118023],\n              [-77.951138, 38.118025],\n              [-77.951038, 38.118025],\n              [-77.95074, 38.117827],\n              [-77.95064, 38.117827],\n              [-77.950342, 38.117729],\n              [-77.950143, 38.11763],\n              [-77.949679, 38.117709],\n              [-77.949546, 38.117733],\n              [-77.949148, 38.117835],\n              [-77.94875, 38.117837],\n              [-77.948451, 38.118038],\n              [-77.948252, 38.118239],\n              [-77.948152, 38.118439],\n              [-77.948251, 38.118739],\n              [-77.948251, 38.119018],\n              [-77.948251, 38.119038],\n              [-77.948251, 38.119438],\n              [-77.948093, 38.119597],\n              [-77.947952, 38.119739],\n              [-77.947554, 38.119941],\n              [-77.94715, 38.120024],\n              [-77.947056, 38.120043],\n              [-77.946757, 38.119845],\n              [-77.946657, 38.119746],\n              [-77.946458, 38.119547],\n              [-77.946271, 38.119357],\n              [-77.946263, 38.119352],\n              [-77.946245, 38.119341],\n              [-77.94606, 38.119249],\n              [-77.945861, 38.11915],\n              [-77.945463, 38.119252],\n              [-77.945165, 38.119354],\n              [-77.944866, 38.119355],\n              [-77.944767, 38.119356],\n              [-77.944567, 38.119457],\n              [-77.944368, 38.119558],\n              [-77.944169, 38.119459],\n              [-77.943771, 38.119161],\n              [-77.943672, 38.119062],\n              [-77.943473, 38.118963],\n              [-77.943453, 38.118963],\n              [-77.943175, 38.118964],\n              [-77.943075, 38.118965],\n              [-77.942777, 38.118866],\n              [-77.942578, 38.118767],\n              [-77.942279, 38.118669],\n              [-77.94218, 38.11867],\n              [-77.941981, 38.118671],\n              [-77.941682, 38.118672],\n              [-77.941401, 38.118767],\n              [-77.941383, 38.118773],\n              [-77.941365, 38.118779],\n              [-77.940985, 38.118875],\n              [-77.940886, 38.118876],\n              [-77.940587, 38.118877],\n              [-77.940488, 38.118778],\n              [-77.940189, 38.11858],\n              [-77.93999, 38.118381],\n              [-77.939891, 38.118182],\n              [-77.939891, 38.117982],\n              [-77.939792, 38.117683],\n              [-77.939593, 38.117584],\n              [-77.939494, 38.117485],\n              [-77.93912, 38.117487],\n              [-77.939055, 38.117488],\n              [-77.938996, 38.117488],\n              [-77.938897, 38.117488],\n              [-77.938499, 38.117291],\n              [-77.938001, 38.116894],\n              [-77.937902, 38.116794],\n              [-77.937603, 38.116796],\n              [-77.937305, 38.116697],\n              [-77.937206, 38.116598],\n              [-77.936939, 38.116511],\n              [-77.936907, 38.1165],\n              [-77.936708, 38.116201],\n              [-77.936656, 38.116149],\n              [-77.936509, 38.116002],\n              [-77.936509, 38.115902],\n              [-77.93631, 38.115903],\n              [-77.936111, 38.115904],\n              [-77.936012, 38.115905],\n              [-77.936012, 38.115205],\n              [-77.935913, 38.115105],\n              [-77.935614, 38.114907],\n              [-77.935216, 38.114609],\n              [-77.934868, 38.114331],\n              [-77.934719, 38.114212],\n              [-77.93452, 38.114113],\n              [-77.93432, 38.114014],\n              [-77.934221, 38.114114],\n              [-77.934022, 38.114115],\n              [-77.933524, 38.114118],\n              [-77.933126, 38.11402],\n              [-77.932728, 38.113922],\n              [-77.93243, 38.113923],\n              [-77.932131, 38.114025],\n              [-77.931932, 38.114026],\n              [-77.931733, 38.113927],\n              [-77.931634, 38.113927],\n              [-77.930937, 38.114031],\n              [-77.930439, 38.113934],\n              [-77.930141, 38.113835],\n              [-77.929743, 38.113737],\n              [-77.929345, 38.113739],\n              [-77.929146, 38.11384],\n              [-77.928947, 38.113941],\n              [-77.928847, 38.114142],\n              [-77.928748, 38.114242],\n              [-77.928648, 38.114343],\n              [-77.928449, 38.114444],\n              [-77.928051, 38.114446],\n              [-77.927554, 38.114549],\n              [-77.927355, 38.11465],\n              [-77.927079, 38.11479],\n              [-77.926963, 38.114849],\n              [-77.926942, 38.114861],\n              [-77.926459, 38.114954],\n              [-77.926441, 38.114958],\n              [-77.926395, 38.114971],\n              [-77.926061, 38.115056],\n              [-77.925364, 38.11496],\n              [-77.925165, 38.114961],\n              [-77.924866, 38.115062],\n              [-77.924668, 38.114863],\n              [-77.924668, 38.114763],\n              [-77.924568, 38.114664],\n              [-77.924469, 38.114465],\n              [-77.92427, 38.114466],\n              [-77.923971, 38.114566],\n              [-77.923903, 38.11456],\n              [-77.923812, 38.114552],\n              [-77.92372, 38.114544],\n              [-77.92342, 38.114744],\n              [-77.92332, 38.114744],\n              [-77.92312, 38.114744],\n              [-77.92272, 38.114844],\n              [-77.92272, 38.114944],\n              [-77.92262, 38.115144],\n              [-77.92242, 38.115144],\n              [-77.92232, 38.115144],\n              [-77.92202, 38.115244],\n              [-77.92192, 38.115244],\n              [-77.92182, 38.115444],\n              [-77.92172, 38.115544],\n              [-77.92152, 38.115844],\n              [-77.92122, 38.115944],\n              [-77.92092, 38.116144],\n              [-77.92042, 38.116344],\n              [-77.92032, 38.116544],\n              [-77.92032, 38.116696],\n              [-77.92032, 38.116744],\n              [-77.92032, 38.116944],\n              [-77.92022, 38.117044],\n              [-77.920146, 38.117069],\n              [-77.91992, 38.117144],\n              [-77.91962, 38.117244],\n              [-77.91942, 38.117344],\n              [-77.91922, 38.117444],\n              [-77.91902, 38.117344],\n              [-77.91862, 38.117344],\n              [-77.91822, 38.117444],\n              [-77.91802, 38.117644],\n              [-77.91792, 38.117844],\n              [-77.91762, 38.118044],\n              [-77.91742, 38.118144],\n              [-77.91712, 38.118244],\n              [-77.91692, 38.118344],\n              [-77.91672, 38.118344],\n              [-77.91592, 38.118144],\n              [-77.91562, 38.117944],\n              [-77.91532, 38.117744],\n              [-77.91502, 38.117544],\n              [-77.91492, 38.117544],\n              [-77.914868, 38.117518],\n              [-77.91452, 38.117344],\n              [-77.914333, 38.11725],\n              [-77.91412, 38.117144],\n              [-77.91402, 38.117044],\n              [-77.91402, 38.116944],\n              [-77.91392, 38.116644],\n              [-77.91372, 38.116444],\n              [-77.91372, 38.116244],\n              [-77.91362, 38.116044],\n              [-77.913702, 38.115881],\n              [-77.91372, 38.115844],\n              [-77.91372, 38.115805],\n              [-77.91372, 38.115799],\n              [-77.91372, 38.115644],\n              [-77.91362, 38.115344],\n              [-77.91342, 38.115044],\n              [-77.913346, 38.114933],\n              [-77.91322, 38.114744],\n              [-77.91312, 38.114544],\n              [-77.91322, 38.114344],\n              [-77.913267, 38.114204],\n              [-77.91332, 38.114044],\n              [-77.91332, 38.113944],\n              [-77.91322, 38.113544],\n              [-77.91312, 38.113044],\n              [-77.91302, 38.112644],\n              [-77.91302, 38.112144],\n              [-77.91272, 38.111744],\n              [-77.91252, 38.111544],\n              [-77.91202, 38.111644],\n              [-77.91182, 38.111644],\n              [-77.911659, 38.11174],\n              [-77.91132, 38.111944],\n              [-77.911094, 38.112095],\n              [-77.91102, 38.112144],\n              [-77.91072, 38.112244],\n              [-77.91032, 38.112244],\n              [-77.910062, 38.112179],\n              [-77.90992, 38.112144],\n              [-77.90942, 38.112044],\n              [-77.90922, 38.111944],\n              [-77.90872, 38.112044],\n              [-77.90862, 38.111944],\n              [-77.90802, 38.111944],\n              [-77.907719, 38.111844],\n              [-77.907519, 38.111644],\n              [-77.907419, 38.111444],\n              [-77.907146, 38.111171],\n              [-77.907119, 38.111144],\n              [-77.906619, 38.111044],\n              [-77.906119, 38.110944],\n              [-77.905919, 38.110844],\n              [-77.905859, 38.110829],\n              [-77.905519, 38.110744],\n              [-77.905019, 38.110644],\n              [-77.904619, 38.110444],\n              [-77.904119, 38.110144],\n              [-77.903819, 38.109944],\n              [-77.903519, 38.109744],\n              [-77.903316, 38.109436],\n              [-77.903219, 38.109144],\n              [-77.903219, 38.108844],\n              [-77.903119, 38.108644],\n              [-77.903019, 38.108444],\n              [-77.902719, 38.108344],\n              [-77.902419, 38.108144],\n              [-77.902219, 38.108144],\n              [-77.901819, 38.108144],\n              [-77.901519, 38.108244],\n              [-77.901119, 38.108344],\n              [-77.900819, 38.108544],\n              [-77.900619, 38.108844],\n              [-77.900594, 38.108918],\n              [-77.900519, 38.109144],\n              [-77.900219, 38.109444],\n              [-77.899919, 38.109444],\n              [-77.899618, 38.109344],\n              [-77.899518, 38.109344],\n              [-77.899148, 38.109344],\n              [-77.898918, 38.109344],\n              [-77.898718, 38.109444],\n              [-77.898488, 38.109674],\n              [-77.898418, 38.109744],\n              [-77.898318, 38.110044],\n              [-77.898318, 38.110244],\n              [-77.898418, 38.110544],\n              [-77.898318, 38.110744],\n              [-77.898318, 38.111244],\n              [-77.898018, 38.111444],\n              [-77.897418, 38.111644],\n              [-77.897218, 38.111644],\n              [-77.896918, 38.111544],\n              [-77.896818, 38.111444],\n              [-77.896818, 38.111244],\n              [-77.896918, 38.111044],\n              [-77.896918, 38.110644],\n              [-77.896818, 38.110444],\n              [-77.89673, 38.110356],\n              [-77.896518, 38.110144],\n              [-77.896118, 38.110044],\n              [-77.895618, 38.110044],\n              [-77.895318, 38.110144],\n              [-77.895218, 38.110244],\n              [-77.895018, 38.110544],\n              [-77.894818, 38.110744],\n              [-77.894218, 38.110944],\n              [-77.893818, 38.111044],\n              [-77.893418, 38.111044],\n              [-77.893218, 38.111244],\n              [-77.893018, 38.111344],\n              [-77.89277, 38.111406],\n              [-77.892618, 38.111444],\n              [-77.891918, 38.111544],\n              [-77.891418, 38.111444],\n              [-77.890815, 38.111444],\n              [-77.890777, 38.111444],\n              [-77.890718, 38.111444],\n              [-77.890518, 38.111444],\n              [-77.890518, 38.111544],\n              [-77.890518, 38.111585],\n              [-77.890518, 38.111744],\n              [-77.890518, 38.112044],\n              [-77.890418, 38.112244],\n              [-77.890118, 38.112444],\n              [-77.889718, 38.112744],\n              [-77.889318, 38.113044],\n              [-77.889018, 38.113144],\n              [-77.888418, 38.113144],\n              [-77.888118, 38.112944],\n              [-77.88787, 38.112696],\n              [-77.887818, 38.112644],\n              [-77.887718, 38.112544],\n              [-77.887418, 38.112444],\n              [-77.886918, 38.112344],\n              [-77.886895, 38.112338],\n              [-77.886531, 38.112243],\n              [-77.886496, 38.112244],\n              [-77.886318, 38.112244],\n              [-77.886118, 38.111944],\n              [-77.886118, 38.11172],\n              [-77.886118, 38.111544],\n              [-77.88609, 38.111501],\n              [-77.885918, 38.111244],\n              [-77.885818, 38.111044],\n              [-77.885618, 38.110844],\n              [-77.885518, 38.110744],\n              [-77.885452, 38.110711],\n              [-77.885441, 38.110705],\n              [-77.885434, 38.110702],\n              [-77.885319, 38.110644],\n              [-77.885019, 38.110444],\n              [-77.884819, 38.110444],\n              [-77.884619, 38.110444],\n              [-77.884319, 38.110544],\n              [-77.884119, 38.110544],\n              [-77.883919, 38.110444],\n              [-77.883767, 38.110383],\n              [-77.883419, 38.110244],\n              [-77.883119, 38.110144],\n              [-77.882919, 38.109944],\n              [-77.882719, 38.109644],\n              [-77.882719, 38.109444],\n              [-77.882719, 38.109404],\n              [-77.882719, 38.109244],\n              [-77.882619, 38.109144],\n              [-77.882457, 38.109036],\n              [-77.882319, 38.108944],\n              [-77.882119, 38.108844],\n              [-77.881719, 38.108744],\n              [-77.881319, 38.108744],\n              [-77.880819, 38.108644],\n              [-77.880419, 38.108544],\n              [-77.879719, 38.108444],\n              [-77.879319, 38.108444],\n              [-77.879019, 38.108444],\n              [-77.878619, 38.108344],\n              [-77.878119, 38.108244],\n              [-77.877619, 38.108044],\n              [-77.877319, 38.107944],\n              [-77.877019, 38.107844],\n              [-77.876619, 38.107644],\n              [-77.876319, 38.107444],\n              [-77.876119, 38.107444],\n              [-77.876008, 38.107481],\n              [-77.876003, 38.107483],\n              [-77.875819, 38.107544],\n              [-77.875619, 38.107544],\n              [-77.875319, 38.107444],\n              [-77.875119, 38.107444],\n              [-77.874783, 38.107234],\n              [-77.874719, 38.107194],\n              [-77.874319, 38.106744],\n              [-77.874219, 38.106444],\n              [-77.873919, 38.106344],\n              [-77.873836, 38.106344],\n              [-77.873119, 38.106344],\n              [-77.872419, 38.106445],\n              [-77.871913, 38.106517],\n              [-77.871719, 38.106545],\n              [-77.871538, 38.106467],\n              [-77.871019, 38.106245],\n              [-77.870119, 38.105945],\n              [-77.869419, 38.105745],\n              [-77.869119, 38.105645],\n              [-77.867918, 38.105945],\n              [-77.866618, 38.106245],\n              [-77.866265, 38.106245],\n              [-77.865718, 38.106245],\n              [-77.865111, 38.106194],\n              [-77.864518, 38.106145],\n              [-77.864408, 38.106104],\n              [-77.863718, 38.105845],\n              [-77.862318, 38.105545],\n              [-77.861218, 38.105545],\n              [-77.860718, 38.105545],\n              [-77.860618, 38.105545],\n              [-77.860035, 38.105326],\n              [-77.859818, 38.105245],\n              [-77.859418, 38.104745],\n              [-77.859318, 38.104445],\n              [-77.859118, 38.103945],\n              [-77.858912, 38.103739],\n              [-77.858419, 38.103245],\n              [-77.858219, 38.103045],\n              [-77.858519, 38.102545],\n              [-77.858719, 38.101745],\n              [-77.858819, 38.101345],\n              [-77.858776, 38.101136],\n              [-77.858718, 38.100844],\n              [-77.858119, 38.100345],\n              [-77.857219, 38.100045],\n              [-77.857115, 38.100032],\n              [-77.856419, 38.099945],\n              [-77.856119, 38.099845],\n              [-77.855919, 38.099945],\n              [-77.855119, 38.100745],\n              [-77.854719, 38.100945],\n              [-77.854419, 38.100945],\n              [-77.854219, 38.101745],\n              [-77.854419, 38.102445],\n              [-77.854694, 38.102582],\n              [-77.854819, 38.102645],\n              [-77.854819, 38.103245],\n              [-77.854756, 38.103392],\n              [-77.854519, 38.103945],\n              [-77.854119, 38.104245],\n              [-77.853135, 38.104442],\n              [-77.852619, 38.104546],\n              [-77.851519, 38.104446],\n              [-77.85122, 38.104345],\n              [-77.851419, 38.104046],\n              [-77.851518, 38.103445],\n              [-77.851019, 38.102946],\n              [-77.850619, 38.102746],\n              [-77.849719, 38.102146],\n              [-77.849219, 38.102046],\n              [-77.849009, 38.101993],\n              [-77.848418, 38.101844],\n              [-77.848119, 38.101345],\n              [-77.8479, 38.100689],\n              [-77.847819, 38.100446],\n              [-77.847819, 38.099946],\n              [-77.847819, 38.099793],\n              [-77.847818, 38.099444],\n              [-77.847419, 38.098746],\n              [-77.847019, 38.098446],\n              [-77.846219, 38.098346],\n              [-77.845419, 38.098546],\n              [-77.844819, 38.099046],\n              [-77.844019, 38.099746],\n              [-77.843919, 38.099846],\n              [-77.843819, 38.099946],\n              [-77.843719, 38.099946],\n              [-77.843619, 38.100046],\n              [-77.843519, 38.100146],\n              [-77.843419, 38.100246],\n              [-77.843319, 38.100346],\n              [-77.843219, 38.100546],\n              [-77.843019, 38.101046],\n              [-77.842919, 38.101446],\n              [-77.843219, 38.101946],\n              [-77.843915, 38.102642],\n              [-77.844119, 38.102846],\n              [-77.844919, 38.103346],\n              [-77.845319, 38.103846],\n              [-77.845519, 38.104346],\n              [-77.844919, 38.104746],\n              [-77.844419, 38.104846],\n              [-77.843419, 38.105046],\n              [-77.842719, 38.105046],\n              [-77.842119, 38.105146],\n              [-77.840919, 38.105746],\n              [-77.839719, 38.106046],\n              [-77.839218, 38.105844],\n              [-77.838568, 38.105925],\n              [-77.838538, 38.105927],\n              [-77.838219, 38.106247],\n              [-77.837719, 38.106047],\n              [-77.837418, 38.105744],\n              [-77.837319, 38.105347],\n              [-77.837418, 38.105045],\n              [-77.837219, 38.104746],\n              [-77.837218, 38.104647],\n              [-77.837019, 38.104647],\n              [-77.836319, 38.104447],\n              [-77.836318, 38.104345],\n              [-77.836119, 38.103847],\n              [-77.836419, 38.103647],\n              [-77.836238, 38.103194],\n              [-77.836219, 38.103146],\n              [-77.836214, 38.103114],\n              [-77.836119, 38.102447],\n              [-77.836282, 38.102162],\n              [-77.836518, 38.101744],\n              [-77.836219, 38.101147],\n              [-77.835319, 38.100847],\n              [-77.834986, 38.100799],\n              [-77.833919, 38.100647],\n              [-77.833219, 38.100447],\n              [-77.832019, 38.099847],\n              [-77.831033, 38.099309],\n              [-77.830919, 38.099247],\n              [-77.830618, 38.098944],\n              [-77.830419, 38.098047],\n              [-77.830318, 38.097746],\n              [-77.830045, 38.097564],\n              [-77.830019, 38.097547],\n              [-77.828919, 38.097247],\n              [-77.827919, 38.097247],\n              [-77.827119, 38.097247],\n              [-77.826519, 38.097147],\n              [-77.825019, 38.096547],\n              [-77.824388, 38.096006],\n              [-77.824384, 38.096002],\n              [-77.824318, 38.095945],\n              [-77.824248, 38.095815],\n              [-77.824241, 38.095802],\n              [-77.824238, 38.095797],\n              [-77.824235, 38.095791],\n              [-77.824198, 38.095722],\n              [-77.823988, 38.095333],\n              [-77.823742, 38.094875],\n              [-77.823619, 38.094647],\n              [-77.823462, 38.093791],\n              [-77.823418, 38.093547],\n              [-77.823219, 38.093547],\n              [-77.823019, 38.093547],\n              [-77.822054, 38.093354],\n              [-77.822019, 38.093347],\n              [-77.821219, 38.093047],\n              [-77.820619, 38.092847],\n              [-77.819718, 38.092444],\n              [-77.819519, 38.091848],\n              [-77.819919, 38.091348],\n              [-77.820119, 38.090748],\n              [-77.820219, 38.090248],\n              [-77.820219, 38.090068],\n              [-77.820219, 38.089748],\n              [-77.820225, 38.089716],\n              [-77.820319, 38.089248],\n              [-77.820315, 38.08924],\n              [-77.820299, 38.089201],\n              [-77.820019, 38.088548],\n              [-77.819719, 38.087848],\n              [-77.819119, 38.087248],\n              [-77.818219, 38.086348],\n              [-77.817819, 38.085848],\n              [-77.817619, 38.085648],\n              [-77.816919, 38.085448],\n              [-77.816519, 38.085548],\n              [-77.816119, 38.085948],\n              [-77.815919, 38.086248],\n              [-77.815819, 38.086548],\n              [-77.815319, 38.086848],\n              [-77.815219, 38.086848],\n              [-77.815019, 38.086748],\n              [-77.814437, 38.086385],\n              [-77.814219, 38.086248],\n              [-77.813519, 38.085848],\n              [-77.812919, 38.085326],\n              [-77.812895, 38.085304],\n              [-77.812718, 38.085145],\n              [-77.812419, 38.084347],\n              [-77.812618, 38.083647],\n              [-77.812684, 38.083117],\n              [-77.812718, 38.082846],\n              [-77.812718, 38.081947],\n              [-77.812618, 38.081246],\n              [-77.812418, 38.080946],\n              [-77.812351, 38.080846],\n              [-77.812284, 38.080746],\n              [-77.812017, 38.080346],\n              [-77.81144, 38.079933],\n              [-77.811317, 38.079845],\n              [-77.811123, 38.0797],\n              [-77.810917, 38.079545],\n              [-77.810617, 38.079445],\n              [-77.809317, 38.079245],\n              [-77.808609, 38.079156],\n              [-77.808517, 38.079145],\n              [-77.807617, 38.078945],\n              [-77.806517, 38.078545],\n              [-77.806017, 38.078445],\n              [-77.805517, 38.078445],\n              [-77.804817, 38.078545],\n              [-77.803817, 38.078545],\n              [-77.802717, 38.078345],\n              [-77.801317, 38.078245],\n              [-77.800117, 38.078245],\n              [-77.799517, 38.078545],\n              [-77.798817, 38.078745],\n              [-77.798711, 38.078745],\n              [-77.798252, 38.078745],\n              [-77.798192, 38.078745],\n              [-77.797617, 38.078695],\n              [-77.797059, 38.078602],\n              [-77.796717, 38.078545],\n              [-77.796417, 38.078545],\n              [-77.795417, 38.078745],\n              [-77.794362, 38.078621],\n              [-77.79404, 38.078583],\n              [-77.793717, 38.078545],\n              [-77.791616, 38.077445],\n              [-77.790716, 38.076945],\n              [-77.790016, 38.076145],\n              [-77.789316, 38.075945],\n              [-77.78925, 38.075952],\n              [-77.788416, 38.076045],\n              [-77.787916, 38.076145],\n              [-77.787416, 38.076345],\n              [-77.786616, 38.076345],\n              [-77.786616, 38.076245],\n              [-77.786616, 38.076045],\n              [-77.786316, 38.075445],\n              [-77.785816, 38.074845],\n              [-77.785816, 38.074545],\n              [-77.785616, 38.073845],\n              [-77.785116, 38.073245],\n              [-77.784716, 38.072445],\n              [-77.784516, 38.071845],\n              [-77.784616, 38.071545],\n              [-77.784516, 38.070945],\n              [-77.784175, 38.070661],\n              [-77.783916, 38.070445],\n              [-77.782916, 38.069445],\n              [-77.782616, 38.068545],\n              [-77.782516, 38.067545]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-union/test/in/not-overlapping.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.88571166992188, 32.887659962078956],\n            [-80.09788513183594, 32.927436533285565],\n            [-80.15350341796875, 32.82825010814964],\n            [-80.00312805175781, 32.69428812316933],\n            [-79.89395141601562, 32.75551989829049],\n            [-79.88571166992188, 32.887659962078956]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.85618591308594, 32.85997876713845],\n            [-79.78958129882812, 32.913603231028915],\n            [-79.64881896972656, 32.915908931564864],\n            [-79.63233947753906, 32.804590457442565],\n            [-79.79232788085938, 32.679840539897484],\n            [-79.88433837890625, 32.687931474529464],\n            [-79.85618591308594, 32.85997876713845]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-union/test/in/unable-to-complete-output-ring-1983-1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-138.73721748279914, 2.0783782250758946],\n            [-141.54971748279917, 6.2849421612509815],\n            [-134.07528251720086, 11.208361735012105],\n            [-131.26278251720083, 7.043979226170151],\n            [-138.73721748279914, 2.0783782250758946]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-160.6896965377851, 40.88860081193033],\n            [-160.6583451950261, 40.510672000926164],\n            [-160.66190372037752, 40.51037133348589],\n            [-160.55753360319002, 39.79663191716156],\n            [-160.55397491337683, 39.796935800275115],\n            [-160.5499089989524, 39.74740308604976],\n            [-160.44421528791327, 39.320082232246875],\n            [-160.2699121404418, 38.90384497183405],\n            [-160.10443662874945, 38.629423306699906],\n            [-160.11113808103656, 38.62686332599969],\n            [-158.70488808103653, 36.396208817797614],\n            [-158.69818219705635, 36.398850979301976],\n            [-158.62349842129717, 36.2712317120243],\n            [-158.32126165579726, 35.88632497556583],\n            [-157.9617182982814, 35.53342756235644],\n            [-157.85881540923663, 35.454636702811],\n            [-157.86352414522221, 35.45092643468119],\n            [-156.4572741452222, 34.29726262080686],\n            [-156.4572741452222, 34.29726262080683],\n            [-153.6447741452222, 31.94201233811576],\n            [-153.64006527501178, 31.945887812934107],\n            [-153.64006527501172, 31.94588781293406],\n            [-153.64477414522213, 31.942012338115703],\n            [-152.7580924416708, 31.184737367454044],\n            [-151.6736380810366, 29.316714166213814],\n            [-151.66691734698864, 29.319592686835602],\n            [-151.5922484212972, 29.18135443047673],\n            [-151.2900116557973, 28.764710578780907],\n            [-150.93046829828143, 28.383033827238847],\n            [-150.82756518327554, 28.297881796676013],\n            [-150.83227414522221, 28.293848637631797],\n            [-148.54231573224416, 26.254481087538338],\n            [-146.04863808103656, 21.710149065891883],\n            [-146.04190027704684, 21.71323661891839],\n            [-145.9672484212972, 21.565942101783975],\n            [-145.66501165579726, 21.12236003249639],\n            [-145.3054682982814, 20.716395937851374],\n            [-145.20256517950813, 20.62590423782137],\n            [-145.20727414522216, 20.62158943658075],\n            [-141.64443015181178, 17.246138281182418],\n            [-139.77228869117522, 12.721283006524027],\n            [-140.21920699785207, 12.48151816830945],\n            [-140.6755385622785, 12.157608896072702],\n            [-141.08671829828143, 11.779880155476036],\n            [-141.44626165579726, 11.354094542168014],\n            [-141.74849842129723, 10.886789091976254],\n            [-141.9886621404418, 10.385185343533806],\n            [-142.16296528791327, 9.85708541123391],\n            [-142.2686589989524, 9.310754969389762],\n            [-142.30407642059762, 8.754794702435646],\n            [-142.2686589989524, 8.198002417459364],\n            [-142.16296528791327, 7.649228576493812],\n            [-141.9886621404418, 7.117228426861487],\n            [-141.74849842129723, 6.610514144945441],\n            [-141.44626165579726, 6.137210441272217],\n            [-141.08671829828143, 5.704916907523355],\n            [-140.6755385622785, 5.320580048136904],\n            [-140.21920699785207, 4.990377478814594],\n            [-139.72492022637246, 4.719616250957969],\n            [-139.4877534841437, 4.626019936874601],\n            [-139.4915764205976, 4.565473550710294],\n            [-139.45615899895233, 4.004105450791968],\n            [-139.35046528791327, 3.451213987601406],\n            [-139.17616214044176, 2.9155938231043734],\n            [-138.93599842129717, 2.4057718307890354],\n            [-138.7307903740528, 2.0826480404896484],\n            [-138.73721748279917, 2.078378225075909],\n            [-135.92471748279917, -2.139418494751368],\n            [-135.91828230639197, -2.1351298091717252],\n            [-135.82126165579726, -2.287911612394268],\n            [-135.46171829828143, -2.722108514777048],\n            [-135.35881716745445, -2.818613899829967],\n            [-135.36352414522216, -2.8233183805339905],\n            [-131.66025962391583, -6.512074033718909],\n            [-130.57988808103653, -8.655273541009365],\n            [-130.57307698563218, -8.65189168023775],\n            [-130.49849842129717, -8.808614737044621],\n            [-130.19626165579723, -9.278941809131354],\n            [-129.8367182982814, -9.707601974613453],\n            [-129.42553856227846, -10.087977628647835],\n            [-128.96920699785207, -10.414229095773521],\n            [-128.4749202263724, -10.681373630031246],\n            [-127.95047344549843, -10.885350042822523],\n            [-127.4041374942538, -11.023069333499564],\n            [-126.84452841695492, -11.09245189439632],\n            [-126.56249999999999, -11.09245189439632],\n            [-126.56249999999999, -11.10114928472835],\n            [-125.15624999999999, -11.10114928472835],\n            [-125.15624999999999, -11.09245189439632],\n            [-124.87422158304506, -11.09245189439632],\n            [-124.31461250574617, -11.023069333499564],\n            [-123.76827655450154, -10.885350042822523],\n            [-123.24382977362757, -10.681373630031246],\n            [-122.74954300214795, -10.414229095773521],\n            [-122.29321143772151, -10.087977628647835],\n            [-121.88203170171857, -9.707601974613468],\n            [-121.52248834420274, -9.278941809131354],\n            [-121.22025157870283, -8.808614737044621],\n            [-120.98008785955822, -8.303922905899086],\n            [-120.80578471208672, -7.772745720890754],\n            [-120.70009100104764, -7.223419751437234],\n            [-120.66467357940238, -6.6646075621725345],\n            [-120.66467357940238, -5.266007882805482],\n            [-120.70009100104764, -4.705196218483266],\n            [-120.80578471208672, -4.152787095858088],\n            [-120.98008785955822, -3.6175719807714444],\n            [-121.2202515787028, -3.108078602871174],\n            [-121.52248834420274, -2.63242849864686],\n            [-121.88203170171857, -2.198202391381244],\n            [-121.9849335215584, -2.1016305086610645],\n            [-121.98022585477779, -2.096945069926207],\n            [-123.3864758547778, -0.691146592624932],\n            [-123.39118333960779, -0.6958409934070753],\n            [-123.39118333960789, -0.6958409934069764],\n            [-123.38647585477788, -0.6911465926248184],\n            [-123.50766945008958, -0.5699560417625025],\n            [-123.51259100104767, -0.49173766653407824],\n            [-123.61828471208676, 0.06232212094137424],\n            [-123.71595348826418, 0.36290960538168665],\n            [-123.70766646786156, 0.3656711949315081],\n            [-125.11391646786154, 4.579539815662798],\n            [-125.12221533513642, 4.576778020412499],\n            [-125.19883785955825, 4.81185565150021],\n            [-125.36441457809373, 5.162348372750518],\n            [-125.35761191896344, 5.165743831278121],\n            [-126.76386191896341, 7.959530796303497],\n            [-126.7706713392258, 7.95614520389963],\n            [-126.84525157870281, 8.113146620363906],\n            [-127.05047956609502, 8.433106178826797],\n            [-127.04403251720086, 8.437379616632285],\n            [-129.70078671927314, 12.354727326722355],\n            [-130.90361628448954, 14.693864989481934],\n            [-133.6359250839431, 21.19092402842235],\n            [-133.63633785955824, 21.19211050070126],\n            [-133.63685064122322, 21.193124877862967],\n            [-133.6421759881453, 21.205787829196495],\n            [-133.64307983026706, 21.205447368180977],\n            [-133.8765015787028, 21.667198844155763],\n            [-134.17873834420274, 22.109115131915928],\n            [-134.5382817017186, 22.51119320766078],\n            [-134.64117871395456, 22.600341802546218],\n            [-134.63647585477784, 22.604769237348435],\n            [-138.3458118725443, 25.97860069463627],\n            [-140.8263619189634, 30.36183966418845],\n            [-140.83322212303318, 30.35882881270289],\n            [-140.9077515787028, 30.495610093036802],\n            [-141.20998834420274, 30.905110807080362],\n            [-141.56953170171857, 31.277289181267648],\n            [-141.67242637169784, 31.35972599692654],\n            [-141.6677258547778, 31.36385129809915],\n            [-143.96601717531868, 33.30090148459311],\n            [-145.0451119189634, 35.091469225371696],\n            [-145.05198163997304, 35.08860290822834],\n            [-145.12650157870283, 35.218310913523766],\n            [-145.42873834420274, 35.60645353663534],\n            [-145.78828170171857, 35.959028058764005],\n            [-145.89117505429087, 36.03708360338239],\n            [-145.88647585477787, 36.041004510381356],\n            [-147.29272585477787, 37.169848760576585],\n            [-147.29272585477787, 37.16984876057657],\n            [-150.1052258547778, 39.37752590372085],\n            [-150.1052258547778, 39.37752590372084],\n            [-151.00153308598706, 40.06494873317625],\n            [-151.71763492940048, 41.15175148455148],\n            [-151.73433651399748, 41.264680637113344],\n            [-151.7379176861147, 41.26437805619925],\n            [-151.74196111823514, 41.312807656725454],\n            [-151.84765482927423, 41.7276464729546],\n            [-152.02195797674574, 42.12676009771624],\n            [-152.26212169589033, 42.504153999354656],\n            [-152.56435846139027, 42.854271974661685],\n            [-152.9239018189061, 43.172058758712296],\n            [-153.33508155490907, 43.45301018304946],\n            [-153.79141311933543, 43.69321200722706],\n            [-154.28569989081507, 43.889368886946215],\n            [-154.81014667168907, 44.0388251177572],\n            [-155.3564826229337, 44.139578807949164],\n            [-155.91609170023258, 44.19029100023394],\n            [-156.48014853414242, 44.19029100023394],\n            [-157.0397576114413, 44.139578807949164],\n            [-157.58609356268596, 44.0388251177572],\n            [-158.11054034355993, 43.889368886946215],\n            [-158.60482711503957, 43.69321200722706],\n            [-159.06115867946593, 43.45301018304946],\n            [-159.47233841546893, 43.172058758712296],\n            [-159.83188177298476, 42.854271974661685],\n            [-160.13411853848467, 42.504153999354656],\n            [-160.37428225762926, 42.12676009771624],\n            [-160.54858540510077, 41.7276464729546],\n            [-160.65427911613986, 41.312807656725454],\n            [-160.6896965377851, 40.88860081193033]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-union/test/in/unable-to-complete-output-ring-1983-2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [119.26792227000003, 26.09133855399999],\n            [119.26827343900003, 26.091289528000004],\n            [119.268373409, 26.091262625999995],\n            [119.268373463, 26.091262593999986],\n            [119.26851724000005, 26.091171713999987],\n            [119.26918610999996, 26.090842504],\n            [119.26919957700002, 26.090865310999995],\n            [119.26943968, 26.091271921999976],\n            [119.26962150899998, 26.091529384000022],\n            [119.26966249500005, 26.091587418000014],\n            [119.27003378300003, 26.09192920999999],\n            [119.27041757200007, 26.092110158000033],\n            [119.27091753499998, 26.09231781900001],\n            [119.270981785, 26.09234426599999],\n            [119.27113544199995, 26.092407525999985],\n            [119.27139502100002, 26.092449202],\n            [119.271933239, 26.092572995000015],\n            [119.27294777500005, 26.092688886],\n            [119.27359170800003, 26.092905836],\n            [119.27366611599997, 26.092919462999983],\n            [119.27370475199997, 26.092896025000012],\n            [119.27370482000008, 26.092895977999987],\n            [119.27388310000008, 26.092771592000016],\n            [119.27398498100004, 26.09271955899999],\n            [119.27410025500002, 26.09270411799997],\n            [119.27443945799996, 26.092623322000012],\n            [119.27446330299995, 26.09248727800002],\n            [119.27457582199996, 26.09250312],\n            [119.27467098600005, 26.092153184999976],\n            [119.27470517500001, 26.092093467999966],\n            [119.27473463099999, 26.09204201699998],\n            [119.27485925799999, 26.091922878999984],\n            [119.27489255600005, 26.091891044999993],\n            [119.27528952800004, 26.09167620099998],\n            [119.27565197900006, 26.09208567399996],\n            [119.27590847199998, 26.09214010999999],\n            [119.27646200599996, 26.092176559999988],\n            [119.27667630999998, 26.09216992299997],\n            [119.27702867400001, 26.092095195999985],\n            [119.27734837000004, 26.09204297000003],\n            [119.27733686700003, 26.091840850999972],\n            [119.27740100999996, 26.090045427999996],\n            [119.27740185600003, 26.09002172800001],\n            [119.27740308300001, 26.089987430000008],\n            [119.27740528000004, 26.089925934000004],\n            [119.27743051499999, 26.08921948400001],\n            [119.27749059500002, 26.088078816999996],\n            [119.27753907600004, 26.08750046199999],\n            [119.27756799600004, 26.08715545299998],\n            [119.277579687, 26.087015983999997],\n            [119.27774168200007, 26.085083374999986],\n            [119.279599867, 26.085852784999986],\n            [119.27964342400003, 26.08587082000002],\n            [119.27966465500003, 26.085879610999992],\n            [119.27985183500009, 26.085957113000003],\n            [119.28082740200003, 26.086361044999983],\n            [119.28120701700007, 26.086518220999988],\n            [119.28280495700005, 26.087179541999998],\n            [119.283082874, 26.087294557],\n            [119.28359686099998, 26.087507265],\n            [119.28390780700002, 26.087590218],\n            [119.283996207, 26.087613800999964],\n            [119.28400513400004, 26.087616181999977],\n            [119.28447277299996, 26.087740930999985],\n            [119.285337701, 26.087874160000005],\n            [119.28569185100004, 26.087928712000014],\n            [119.28636738499996, 26.088032763999976],\n            [119.28686264700004, 26.08810904500001],\n            [119.28688445399996, 26.088112405000007],\n            [119.28740812299998, 26.088193061000027],\n            [119.28744890300008, 26.088200452999995],\n            [119.28747632199997, 26.088205424000016],\n            [119.288289687, 26.088352864999987],\n            [119.28857068200003, 26.088403801000027],\n            [119.28939130000003, 26.08855254899998],\n            [119.28940446399997, 26.08855493499999],\n            [119.28953208300005, 26.088578068999993],\n            [119.29001057200006, 26.088664795999996],\n            [119.29004381799999, 26.088671143999992],\n            [119.29010271699998, 26.08868238799999],\n            [119.29028644799995, 26.08871746199997],\n            [119.29029319700001, 26.088718749000012],\n            [119.29032127800001, 26.088724108999997],\n            [119.29106401700005, 26.088865881000004],\n            [119.29144868799996, 26.088890004000007],\n            [119.29145798699996, 26.08889058800003],\n            [119.29147025600001, 26.088891262999994],\n            [119.29448168600004, 26.089056912999975],\n            [119.29475537500002, 26.087851934000014],\n            [119.29476505900004, 26.087809299000014],\n            [119.29477158500005, 26.087780598],\n            [119.29480424400005, 26.087636948000018],\n            [119.29480721000007, 26.087623896000018],\n            [119.29480912400007, 26.087615481999975],\n            [119.29481181300002, 26.087603648000023],\n            [119.29498015099999, 26.086862591],\n            [119.29498124700001, 26.08685776499998],\n            [119.29501659100004, 26.086702160999987],\n            [119.29503741600001, 26.08661048699997],\n            [119.295190372, 26.086087195999994],\n            [119.29519121400008, 26.086084304999975],\n            [119.29520515599995, 26.08603660500001],\n            [119.295400463, 26.085368404999983],\n            [119.29540177700007, 26.085363916],\n            [119.29540819700004, 26.085341946000025],\n            [119.29552614299996, 26.08493841500001],\n            [119.29576637400001, 26.084116497000025],\n            [119.29576696599999, 26.084114479999965],\n            [119.29584204900004, 26.083873901999993],\n            [119.298732505, 26.084446225000008],\n            [119.29886870400004, 26.084473193000004],\n            [119.29899598099999, 26.08449839500003],\n            [119.30148191, 26.084990560999987],\n            [119.30167684900003, 26.08408462599998],\n            [119.30193896900005, 26.084062775999996],\n            [119.302088432, 26.084015709000028],\n            [119.30211186099996, 26.084008331000007],\n            [119.30245265600003, 26.083700234999988],\n            [119.30259336600002, 26.083699799999973],\n            [119.30360708600006, 26.083679443999984],\n            [119.30428010499998, 26.083462051000026],\n            [119.304297636, 26.083456387000002],\n            [119.30451040100002, 26.083418869000013],\n            [119.30516094200004, 26.08352380399998],\n            [119.30527010900006, 26.083087960999986],\n            [119.30609187799995, 26.08324918400001],\n            [119.30614589200005, 26.08325978099997],\n            [119.30617918600005, 26.08326631199997],\n            [119.30747144700003, 26.083519831999972],\n            [119.30814750900002, 26.083559037999976],\n            [119.30817862900005, 26.083560843999958],\n            [119.30894618500001, 26.083605346999995],\n            [119.30897813000001, 26.083607201999996],\n            [119.30899601800002, 26.083608237999997],\n            [119.31036787799997, 26.08370109600003],\n            [119.31049752900002, 26.08370987699999],\n            [119.31186102799998, 26.083802155000004],\n            [119.31284842800007, 26.083861716999998],\n            [119.31293800399999, 26.08386712200001],\n            [119.31416202800006, 26.083940944000005],\n            [119.31417288700005, 26.083941600000006],\n            [119.31517620000001, 26.084002102999982],\n            [119.31514259899996, 26.08407781199997],\n            [119.31484726999997, 26.08474323799997],\n            [119.31353783300007, 26.086738449],\n            [119.31313363499999, 26.087354318999978],\n            [119.31305608599999, 26.087472479999974],\n            [119.31273692800005, 26.087958765999986],\n            [119.31256064800006, 26.088556896],\n            [119.31256063100001, 26.088556949999987],\n            [119.31253415100002, 26.088702188000013],\n            [119.31212274699999, 26.090958447000002],\n            [119.31212269599997, 26.090958619999977],\n            [119.312085575, 26.091084587000008],\n            [119.31201279300001, 26.091495786999975],\n            [119.311894876, 26.09216196699998],\n            [119.31177712900002, 26.092827178999983],\n            [119.31164283299995, 26.093585881000024],\n            [119.31153050800003, 26.094220441000008],\n            [119.31151263100004, 26.094317014999994],\n            [119.31151012199997, 26.09433057299998],\n            [119.31129391399998, 26.095498737000014],\n            [119.311246248, 26.095756271000035],\n            [119.31111729500003, 26.09645296500002],\n            [119.31108367300001, 26.096634611999995],\n            [119.31092776000004, 26.097476958000016],\n            [119.31074179500001, 26.098481644000003],\n            [119.31070430499997, 26.098684192999983],\n            [119.310701948, 26.098696933999967],\n            [119.31063682000006, 26.099048783],\n            [119.31063240100002, 26.099074847999987],\n            [119.31055972099999, 26.099503630999997],\n            [119.31052681300005, 26.09969775399998],\n            [119.31035327400006, 26.100327902999986],\n            [119.310237271, 26.100589915999986],\n            [119.31001505999996, 26.101091823999976],\n            [119.30963210899998, 26.10195676699998],\n            [119.30962586099997, 26.101970891999983],\n            [119.309610776, 26.10200495800001],\n            [119.30940705600008, 26.102465086],\n            [119.30924338, 26.102834764000026],\n            [119.30923976300008, 26.102842939000027],\n            [119.30857120899998, 26.104352902000016],\n            [119.30847835899999, 26.104562610000016],\n            [119.30841339999996, 26.104709318999987],\n            [119.308368417, 26.104810914999963],\n            [119.30833914300001, 26.10487702699999],\n            [119.30750594999995, 26.10675876200003],\n            [119.30749660100004, 26.106779883999987],\n            [119.30597177300001, 26.106411965999996],\n            [119.305952973, 26.106407429],\n            [119.305903341, 26.106395453],\n            [119.30510922900002, 26.106204389000016],\n            [119.30434964899997, 26.106021624999997],\n            [119.304202092, 26.10598612400002],\n            [119.304163951, 26.105976946999984],\n            [119.304147589, 26.105973011],\n            [119.30396597699998, 26.10592931100001],\n            [119.30311475500002, 26.105724494000018],\n            [119.30305377900007, 26.10570982100001],\n            [119.30269559299997, 26.105623632000004],\n            [119.30134310999996, 26.105348354000004],\n            [119.30140594600006, 26.10424925],\n            [119.30141243100002, 26.10413581599999],\n            [119.30144344200005, 26.103593376],\n            [119.301477438, 26.10299870799997],\n            [119.30147935599997, 26.102965155999975],\n            [119.301498788, 26.102625284000005],\n            [119.30149879400007, 26.10262514999998],\n            [119.30155428700007, 26.101654460000024],\n            [119.30158182499999, 26.101172729999973],\n            [119.30164042300001, 26.100062831999978],\n            [119.30164396600001, 26.09999582400002],\n            [119.30164591300003, 26.09995891599999],\n            [119.30167080599998, 26.099487694],\n            [119.30168516249151, 26.09921588003469],\n            [119.30157350999384, 26.10116897056351],\n            [119.30148804155813, 26.102651681148387],\n            [119.30133489504965, 26.105344191491753],\n            [119.2995770252021, 26.10498130378754],\n            [119.29917638368264, 26.104898690308694],\n            [119.29766313833464, 26.1045860742631],\n            [119.2957679372748, 26.10419363718654],\n            [119.29569109087862, 26.103727349157232],\n            [119.29574826294841, 26.102924937871634],\n            [119.29571437469058, 26.102133471638474],\n            [119.29571168336672, 26.102073236312435],\n            [119.29665560939513, 26.100835883817965],\n            [119.29479793505608, 26.100042483347874],\n            [119.29436350685195, 26.099857009381875],\n            [119.29370790546564, 26.099658147687336],\n            [119.29222800371282, 26.099405729816166],\n            [119.29224878147363, 26.099299730556208],\n            [119.29296858645722, 26.09563821197875],\n            [119.29172982499996, 26.09542004299999],\n            [119.291548166, 26.09538804699997],\n            [119.29147919100002, 26.09537589799999],\n            [119.29092879400005, 26.09527896299999],\n            [119.290861736, 26.095267149999984],\n            [119.29083662400001, 26.09526272800002],\n            [119.289772184, 26.09507523899998],\n            [119.28976558500005, 26.095074079000018],\n            [119.28976121500001, 26.095073307999996],\n            [119.28883611400002, 26.094874480999977],\n            [119.28879492500006, 26.094865389999992],\n            [119.28865346900001, 26.094801206000003],\n            [119.28821295099999, 26.095722943999988],\n            [119.288176617, 26.09579861399998],\n            [119.28795602599996, 26.096258008999996],\n            [119.28762952600006, 26.09708954600001],\n            [119.28719542900002, 26.097248298999986],\n            [119.286943029, 26.09746719399998],\n            [119.286784678, 26.09774015900002],\n            [119.28666949000001, 26.097938716999963],\n            [119.28627131300006, 26.098625089999974],\n            [119.285836732, 26.09920938699998],\n            [119.28542934799998, 26.099757109999977],\n            [119.28526723699997, 26.099975060000013],\n            [119.28517774600006, 26.100134378000007],\n            [119.28513023300002, 26.100344265999972],\n            [119.28510031300004, 26.100605428999984],\n            [119.28509363700003, 26.100841851999974],\n            [119.28509584799998, 26.101470849999984],\n            [119.28518487300005, 26.101774998999982],\n            [119.28541082200003, 26.102118226000023],\n            [119.28497389899997, 26.10275779300002],\n            [119.28460118500006, 26.102778033000007],\n            [119.28457926900002, 26.103068271999966],\n            [119.28429292199999, 26.103701686999997],\n            [119.28420452399999, 26.103923237999993],\n            [119.28418653200004, 26.10394198199998],\n            [119.28417865100005, 26.104082022],\n            [119.28413037600001, 26.104080791999994],\n            [119.28412894300006, 26.104136270000023],\n            [119.28409585300005, 26.10413805799999],\n            [119.28403167199998, 26.104137579999986],\n            [119.28396366100003, 26.104137460999993],\n            [119.28394906200003, 26.103910285999962],\n            [119.28437865599996, 26.10338549300002],\n            [119.28449004000004, 26.103015801000026],\n            [119.28383831400002, 26.102447643999987],\n            [119.28334218600003, 26.102179993999982],\n            [119.28330546999996, 26.102062236999977],\n            [119.28343273500002, 26.101705144],\n            [119.28329874799999, 26.10102850099996],\n            [119.28335355599995, 26.10027773600001],\n            [119.28396047900003, 26.09910991699999],\n            [119.28400039300007, 26.098942828000016],\n            [119.28400837599996, 26.098856662999996],\n            [119.28401123000002, 26.098631735000026],\n            [119.28400563100001, 26.098559797999993],\n            [119.28252444800002, 26.09799482499999],\n            [119.28103801000002, 26.09726104999997],\n            [119.280739339, 26.09652067899998],\n            [119.27997057699999, 26.096583657999975],\n            [119.27985074200001, 26.096896754],\n            [119.27910538599996, 26.09783521399997],\n            [119.27793710799995, 26.09854491200002],\n            [119.27693595100007, 26.098456449999986],\n            [119.27693682600001, 26.098453353000025],\n            [119.27717338699998, 26.097615093999995],\n            [119.27746324500004, 26.096757853999964],\n            [119.27758203400005, 26.096399650000023],\n            [119.27761161800005, 26.096098638],\n            [119.27725976800002, 26.096006373000026],\n            [119.27724631000002, 26.096040566999985],\n            [119.27713601400002, 26.096013003999982],\n            [119.27714704100005, 26.095976813999982],\n            [119.27651605799998, 26.095811351999988],\n            [119.275653337, 26.095736605000003],\n            [119.27495428400006, 26.095676043000008],\n            [119.273803544, 26.095374116000013],\n            [119.273463622, 26.095328902000002],\n            [119.272790181, 26.095132858],\n            [119.27186121900002, 26.09489626499998],\n            [119.27154874800003, 26.094802835],\n            [119.27133072599997, 26.09467379900002],\n            [119.27066023900004, 26.094224418000017],\n            [119.27035268700001, 26.09403649699999],\n            [119.27035264500003, 26.094036472000006],\n            [119.26863135300003, 26.092673284999993],\n            [119.26839284799996, 26.09253755999999],\n            [119.26810974900006, 26.092259415999976],\n            [119.26810976700007, 26.09225939800001],\n            [119.26825405200002, 26.09210043399997],\n            [119.26825405000002, 26.09210040300002],\n            [119.268231282, 26.091870476999983],\n            [119.26792227000003, 26.09133855399999]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [119.28447277299996, 26.087740930999985],\n            [119.285337701, 26.08787416000001],\n            [119.28569185100004, 26.087928712000007],\n            [119.28636738499996, 26.088032763999983],\n            [119.28686264700004, 26.08810904500001],\n            [119.28688445399996, 26.088112405000007],\n            [119.28740812299998, 26.088193061000027],\n            [119.28744890300005, 26.088200453000006],\n            [119.28747632199997, 26.088205424000016],\n            [119.288289687, 26.088352864999994],\n            [119.28857068200001, 26.088403801000023],\n            [119.28939130000003, 26.08855254899998],\n            [119.28940446399997, 26.08855493499999],\n            [119.28953208300005, 26.088578068999993],\n            [119.29001057200006, 26.088664795999993],\n            [119.29004381799999, 26.088671143999992],\n            [119.29010271699998, 26.08868238799999],\n            [119.29028644799995, 26.088717461999973],\n            [119.29029319700001, 26.088718749000012],\n            [119.29032127800001, 26.088724108999997],\n            [119.29106401700005, 26.088865881000004],\n            [119.29144868799996, 26.088890004000007],\n            [119.29145798699996, 26.08889058800003],\n            [119.29147025600001, 26.088891262999994],\n            [119.29448168600004, 26.089056912999975],\n            [119.29475537500002, 26.087851934000014],\n            [119.29476505900004, 26.087809299000014],\n            [119.29477158500005, 26.087780598],\n            [119.29480424400005, 26.087636948000018],\n            [119.29480721000004, 26.087623896000018],\n            [119.29480912400007, 26.08761548199998],\n            [119.29481181300002, 26.087603648000023],\n            [119.29498015099999, 26.086862591],\n            [119.29498124700001, 26.086857764999987],\n            [119.29501659100004, 26.086702160999998],\n            [119.29503741600001, 26.08661048699997],\n            [119.295190372, 26.086087195999994],\n            [119.29519121400008, 26.08608430499998],\n            [119.29520515599995, 26.086036605000007],\n            [119.295400463, 26.085368404999986],\n            [119.29540177700007, 26.085363916000002],\n            [119.29540819700004, 26.085341946000025],\n            [119.29552614299996, 26.08493841500001],\n            [119.29576637400001, 26.08411649700002],\n            [119.29576696599999, 26.084114479999975],\n            [119.29584204900004, 26.083873901999993],\n            [119.295167775, 26.08366118399999],\n            [119.29455955699996, 26.083469300999983],\n            [119.29388822199998, 26.083264799999988],\n            [119.29356201300007, 26.083165427999976],\n            [119.29352399300004, 26.08315390600001],\n            [119.29266532800001, 26.08289364900003],\n            [119.29314036800001, 26.081207388],\n            [119.29302534900002, 26.08115973100001],\n            [119.29249488000004, 26.08106307499996],\n            [119.29199401000008, 26.080972540000005],\n            [119.29136559200003, 26.080871537000007],\n            [119.29113559600002, 26.080841222000004],\n            [119.29113210000003, 26.080840760999983],\n            [119.29097417000003, 26.080726428],\n            [119.290930272, 26.08069553799998],\n            [119.29085149199999, 26.080540573000007],\n            [119.290518517, 26.08003612300001],\n            [119.29047453299995, 26.07996948499999],\n            [119.29034672200001, 26.079949881999998],\n            [119.29029318100005, 26.07994166999998],\n            [119.28949736100006, 26.079819612999977],\n            [119.28943621400003, 26.079810232000007],\n            [119.28903911400003, 26.079768845999975],\n            [119.28900435900003, 26.079765220000013],\n            [119.28885292999996, 26.079749439000004],\n            [119.28885289100003, 26.07974940100001],\n            [119.28809546699996, 26.07952285499999],\n            [119.28713699000004, 26.079334507999988],\n            [119.287066762, 26.07930869900002],\n            [119.28701893100003, 26.079291119],\n            [119.28610159899996, 26.079238470000014],\n            [119.28611796200006, 26.079101594000004],\n            [119.28615825199996, 26.078927819000004],\n            [119.28616068400005, 26.078917363000016],\n            [119.28616069099998, 26.07891733000002],\n            [119.28547518799999, 26.078877547999983],\n            [119.28508176200002, 26.078836285000026],\n            [119.28482341200004, 26.078777521000003],\n            [119.28439674000003, 26.078680471999974],\n            [119.28445328600004, 26.07811491400002],\n            [119.28446478599994, 26.078032192000023],\n            [119.28335089400002, 26.077821433999986],\n            [119.28341639799999, 26.077392630000023],\n            [119.28324177499996, 26.077382264999983],\n            [119.28297829999997, 26.077326976000002],\n            [119.283034348, 26.076808007000004],\n            [119.282957982, 26.076717181999978],\n            [119.28282427000002, 26.076753122000014],\n            [119.282704135, 26.07664956500003],\n            [119.28275328300003, 26.076519449999978],\n            [119.282530598, 26.07630241700001],\n            [119.28230909499997, 26.076278419999998],\n            [119.28187985800002, 26.076394515000004],\n            [119.28187259900005, 26.07648242300002],\n            [119.28186935400005, 26.076538104000008],\n            [119.28187371700007, 26.076620633999998],\n            [119.28191131400001, 26.076718883000012],\n            [119.28190801599999, 26.076784131000004],\n            [119.28189076700005, 26.07678172599998],\n            [119.28186454900002, 26.076924373],\n            [119.28184189499996, 26.076971404000002],\n            [119.281795494, 26.076998112000012],\n            [119.28124538400004, 26.07695633100002],\n            [119.28073570900008, 26.07688780799998],\n            [119.28072823699996, 26.076951188000006],\n            [119.28070882300008, 26.077097228000014],\n            [119.28019503300006, 26.07701174200001],\n            [119.279794294, 26.076934321999996],\n            [119.27969403500005, 26.076929843000013],\n            [119.279597611, 26.077295248999974],\n            [119.27951207399997, 26.077657567000017],\n            [119.279245135, 26.078788229000008],\n            [119.27922207999994, 26.07889336800003],\n            [119.27921921599999, 26.07890642199998],\n            [119.279218714, 26.078908712999972],\n            [119.27896359200001, 26.08007220399998],\n            [119.27895592499998, 26.080107171000005],\n            [119.27880070500002, 26.080815044000012],\n            [119.27878032000001, 26.080897214000004],\n            [119.27873174800003, 26.081092991999977],\n            [119.278598356, 26.081630636000007],\n            [119.27859539200008, 26.081642573999996],\n            [119.278473641, 26.08213329],\n            [119.278421053, 26.082345246999967],\n            [119.27840012399997, 26.082429605000012],\n            [119.278111814, 26.083591618999996],\n            [119.27810495300002, 26.083619285999987],\n            [119.27809264899997, 26.083668857000017],\n            [119.27805475900004, 26.08382156900001],\n            [119.27774168200007, 26.085083375000007],\n            [119.279599867, 26.085852784999986],\n            [119.27964342400003, 26.08587082000002],\n            [119.27966465500003, 26.085879610999992],\n            [119.27985183500009, 26.085957113000006],\n            [119.280827402, 26.086361044999993],\n            [119.28120701700007, 26.086518221],\n            [119.28280495700005, 26.087179541999998],\n            [119.283082874, 26.087294557],\n            [119.28359686099998, 26.087507265],\n            [119.28390780700002, 26.087590218],\n            [119.283996207, 26.087613800999968],\n            [119.28400513400004, 26.087616181999977],\n            [119.28447277299996, 26.087740930999985]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-union/test/in/unable-to-find-segment-2258-1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-73.06244448903232, 18.596801939748655],\n              [-73.05407828100999, 18.559574884443432],\n              [-73.02449897675693, 18.427747962201135],\n              [-73.00856378482453, 18.50884874486772],\n              [-72.99260735779502, 18.590014564484544],\n              [-73.06244448903232, 18.596801939748655]\n            ]\n          ],\n          [\n            [\n              [-73.04849828566886, 19.74713670181383],\n              [-73.01761830156346, 19.69103613572505],\n              [-73.03138982758604, 19.750747500261227],\n              [-73.04849828566886, 19.74713670181383]\n            ]\n          ],\n          [\n            [\n              [-72.65364940830283, 20.124248055459326],\n              [-72.65319619909113, 20.122267081451863],\n              [-72.6476195782836, 20.123415333285244],\n              [-72.65364940830283, 20.124248055459326]\n            ]\n          ],\n          [\n            [\n              [-72.55108447575863, 17.974866348840024],\n              [-72.45710334056436, 17.97227551144358],\n              [-72.46320521992928, 17.999399006529142],\n              [-72.50754265521213, 18.195904425399238],\n              [-72.51657860925029, 18.150057440187584],\n              [-72.54370663234872, 18.012340247890656],\n              [-72.55108447575863, 17.974866348840024]\n            ]\n          ],\n          [\n            [\n              [-71.8267836792031, 20.010057535093836],\n              [-71.80745153630141, 19.91312439376248],\n              [-71.78921192211703, 20.004868858937943],\n              [-71.8267836792031, 20.010057535093836]\n            ]\n          ],\n          [\n            [\n              [-71.66191017921575, 19.182076213197288],\n              [-71.6562049006765, 19.153360535270046],\n              [-71.65740874033601, 19.20458800272359],\n              [-71.66191017921575, 19.182076213197288]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-73.06244448903232, 18.596801939748655],\n              [-73.05407828100999, 18.559574884443432],\n              [-73.02449897675693, 18.427747962201135],\n              [-73.00856378482453, 18.50884874486772],\n              [-72.99260735779502, 18.590014564484544],\n              [-73.06244448903232, 18.596801939748655]\n            ]\n          ],\n          [\n            [\n              [-73.04849828566886, 19.74713670181383],\n              [-73.01761830156346, 19.691036135725053],\n              [-73.03138982758604, 19.750747500261227],\n              [-73.04849828566886, 19.74713670181383]\n            ]\n          ],\n          [\n            [\n              [-72.65364940830283, 20.12424805545933],\n              [-72.65319619909113, 20.122267081451863],\n              [-72.6476195782836, 20.123415333285244],\n              [-72.65364940830283, 20.12424805545933]\n            ]\n          ],\n          [\n            [\n              [-72.55108447575863, 17.974866348840024],\n              [-72.45710334056436, 17.97227551144358],\n              [-72.46320521992928, 17.999399006529142],\n              [-72.50754265521213, 18.195904425399238],\n              [-72.51657860925029, 18.150057440187584],\n              [-72.54370663234872, 18.012340247890656],\n              [-72.55108447575863, 17.974866348840024]\n            ]\n          ],\n          [\n            [\n              [-71.8267836792031, 20.010057535093836],\n              [-71.80745153630141, 19.913124393762487],\n              [-71.78921192211703, 20.004868858937943],\n              [-71.8267836792031, 20.010057535093836]\n            ]\n          ],\n          [\n            [\n              [-71.66191017921577, 19.182076213197277],\n              [-71.6562049006765, 19.15336053527002],\n              [-71.65740874033601, 19.204588002723632],\n              [-71.66191017921577, 19.182076213197277]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-union/test/in/unable-to-find-segment-2258-2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"id\": \"4343a1bb-c298-49be-a44f-3bc81a0e79da\",\n      \"properties\": {\n        \"id\": \"4343a1bb-c298-49be-a44f-3bc81a0e79da\"\n      },\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [17.650443, 59.85602],\n              [17.650443, 59.85602],\n              [17.650443, 59.85602],\n              [17.650441, 59.856021],\n              [17.650439, 59.856023],\n              [17.650438, 59.856023],\n              [17.650438, 59.856023],\n              [17.650436, 59.856024],\n              [17.650433, 59.856025],\n              [17.650431, 59.856027],\n              [17.650429, 59.856028],\n              [17.650426, 59.856029],\n              [17.650424, 59.856031],\n              [17.650421, 59.856032],\n              [17.650419, 59.856033],\n              [17.650417, 59.856035],\n              [17.650416, 59.856035],\n              [17.650414, 59.856036],\n              [17.650414, 59.856036],\n              [17.650412, 59.856037],\n              [17.65041, 59.856038],\n              [17.650409, 59.856039],\n              [17.650409, 59.856039],\n              [17.650406, 59.85604],\n              [17.650404, 59.856042],\n              [17.650402, 59.856043],\n              [17.650399, 59.856044],\n              [17.650397, 59.856046],\n              [17.650397, 59.856046],\n              [17.650396, 59.856046],\n              [17.650394, 59.856047],\n              [17.650392, 59.856048],\n              [17.65039, 59.85605],\n              [17.650387, 59.856051],\n              [17.650385, 59.856052],\n              [17.650411, 59.856064],\n              [17.650377, 59.856083],\n              [17.650379, 59.856083],\n              [17.650379, 59.856083],\n              [17.650518, 59.856146],\n              [17.650519, 59.856146],\n              [17.650519, 59.856146],\n              [17.650583, 59.856175],\n              [17.650658, 59.856133],\n              [17.650659, 59.856133],\n              [17.651039, 59.855921],\n              [17.65104, 59.855921],\n              [17.65104, 59.855921],\n              [17.65105, 59.855915],\n              [17.65105, 59.855915],\n              [17.651044, 59.855912],\n              [17.651044, 59.855912],\n              [17.651043, 59.855913],\n              [17.651015, 59.8559],\n              [17.651015, 59.8559],\n              [17.651014, 59.8559],\n              [17.651014, 59.8559],\n              [17.650968, 59.855879],\n              [17.650968, 59.855879],\n              [17.650968, 59.855878],\n              [17.650967, 59.855879],\n              [17.650935, 59.855864],\n              [17.650935, 59.855864],\n              [17.650934, 59.855863],\n              [17.650918, 59.855872],\n              [17.650901, 59.855882],\n              [17.650885, 59.855891],\n              [17.650885, 59.855891],\n              [17.650884, 59.855891],\n              [17.650844, 59.855873],\n              [17.650844, 59.855874],\n              [17.650827, 59.855866],\n              [17.650794, 59.855884],\n              [17.650763, 59.85587],\n              [17.650665, 59.855924],\n              [17.650665, 59.855924],\n              [17.650682, 59.855914],\n              [17.65068, 59.855914],\n              [17.650663, 59.855923],\n              [17.650637, 59.855912],\n              [17.65061, 59.855927],\n              [17.650609, 59.855927],\n              [17.650606, 59.855929],\n              [17.650606, 59.855929],\n              [17.65059, 59.855938],\n              [17.650573, 59.855947],\n              [17.650557, 59.855956],\n              [17.65054, 59.855965],\n              [17.650525, 59.855974],\n              [17.650508, 59.855983],\n              [17.650492, 59.855992],\n              [17.650476, 59.856001],\n              [17.650475, 59.856002],\n              [17.65046, 59.85601],\n              [17.650459, 59.856011],\n              [17.650443, 59.85602],\n              [17.650443, 59.85602]\n            ]\n          ],\n          [\n            [\n              [17.650637, 59.855906],\n              [17.650664, 59.855918],\n              [17.650727, 59.855883],\n              [17.6507, 59.855871],\n              [17.650637, 59.855906]\n            ]\n          ],\n          [\n            [\n              [17.650796, 59.855849],\n              [17.650797, 59.855849],\n              [17.650795, 59.855849],\n              [17.650795, 59.855849],\n              [17.650795, 59.855849],\n              [17.650795, 59.855849],\n              [17.650794, 59.855848],\n              [17.650794, 59.855848],\n              [17.650795, 59.855849],\n              [17.650796, 59.855849],\n              [17.650798, 59.85585],\n              [17.650798, 59.85585],\n              [17.650798, 59.85585],\n              [17.650797, 59.855849],\n              [17.650796, 59.855849],\n              [17.650796, 59.855849]\n            ]\n          ],\n          [\n            [\n              [17.6508, 59.855851],\n              [17.6508, 59.855851],\n              [17.650798, 59.85585],\n              [17.650798, 59.85585],\n              [17.650798, 59.85585],\n              [17.6508, 59.855851],\n              [17.6508, 59.855851]\n            ]\n          ],\n          [\n            [\n              [17.650826, 59.855863],\n              [17.650827, 59.855863],\n              [17.650827, 59.855863],\n              [17.650827, 59.855863],\n              [17.650827, 59.855863],\n              [17.650827, 59.855863],\n              [17.650826, 59.855863],\n              [17.650826, 59.855863],\n              [17.650826, 59.855863],\n              [17.650826, 59.855863]\n            ]\n          ],\n          [\n            [\n              [17.650829, 59.855864],\n              [17.650827, 59.855863],\n              [17.650827, 59.855863],\n              [17.650828, 59.855864],\n              [17.650828, 59.855864],\n              [17.650829, 59.855864]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"id\": \"4ea314e7-c8d4-4325-b4ba-91b1ac4a4b67\",\n      \"properties\": {\n        \"id\": \"4ea314e7-c8d4-4325-b4ba-91b1ac4a4b67\"\n      },\n      \"type\": \"Feature\",\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [17.65042, 59.856055],\n              [17.650421, 59.856056],\n              [17.650421, 59.856056],\n              [17.650421, 59.856056],\n              [17.65042, 59.856055],\n              [17.65042, 59.856055],\n              [17.65042, 59.856055],\n              [17.650406, 59.856063],\n              [17.650407, 59.856063],\n              [17.650408, 59.856063],\n              [17.650408, 59.856064],\n              [17.650406, 59.856063],\n              [17.650406, 59.856063],\n              [17.650406, 59.856063],\n              [17.65039, 59.856072],\n              [17.65039, 59.856072],\n              [17.650391, 59.856072],\n              [17.650391, 59.856073],\n              [17.650391, 59.856073],\n              [17.650391, 59.856072],\n              [17.650391, 59.856072],\n              [17.650391, 59.856072],\n              [17.65039, 59.856072],\n              [17.65039, 59.856072],\n              [17.650369, 59.856083],\n              [17.650369, 59.856083],\n              [17.650372, 59.856083],\n              [17.650372, 59.856083],\n              [17.650372, 59.856083],\n              [17.650369, 59.856083],\n              [17.650369, 59.856083],\n              [17.650386, 59.856091],\n              [17.650386, 59.856091],\n              [17.650387, 59.85609],\n              [17.650387, 59.85609],\n              [17.650387, 59.85609],\n              [17.650386, 59.856091],\n              [17.650386, 59.856091],\n              [17.650404, 59.856099],\n              [17.650405, 59.856099],\n              [17.650405, 59.856098],\n              [17.650405, 59.856098],\n              [17.650404, 59.856099],\n              [17.650404, 59.856099],\n              [17.650422, 59.856107],\n              [17.650423, 59.856107],\n              [17.650423, 59.856106],\n              [17.650423, 59.856106],\n              [17.650422, 59.856107],\n              [17.650422, 59.856107],\n              [17.65044, 59.856115],\n              [17.650441, 59.856115],\n              [17.650441, 59.856115],\n              [17.650441, 59.856115],\n              [17.65044, 59.856115],\n              [17.65044, 59.856115],\n              [17.650453, 59.856121],\n              [17.650453, 59.856121],\n              [17.650453, 59.856121],\n              [17.650453, 59.856121],\n              [17.650452, 59.856121],\n              [17.650452, 59.856121],\n              [17.650452, 59.856122],\n              [17.650452, 59.856122],\n              [17.650452, 59.856122],\n              [17.650452, 59.856122],\n              [17.650452, 59.856122],\n              [17.650452, 59.856122],\n              [17.650452, 59.856122],\n              [17.650452, 59.856122],\n              [17.650452, 59.856122],\n              [17.650452, 59.856122],\n              [17.650452, 59.856122],\n              [17.650452, 59.856122],\n              [17.650452, 59.856122],\n              [17.650452, 59.856122],\n              [17.650452, 59.856122],\n              [17.650452, 59.856122],\n              [17.650454, 59.856122],\n              [17.650458, 59.856123],\n              [17.650459, 59.856123],\n              [17.65046, 59.856123],\n              [17.65046, 59.856123],\n              [17.650458, 59.856123],\n              [17.650458, 59.856123],\n              [17.650467, 59.856128],\n              [17.650467, 59.856129],\n              [17.650467, 59.856129],\n              [17.650467, 59.856129],\n              [17.650467, 59.856129],\n              [17.650467, 59.856129],\n              [17.650467, 59.856129],\n              [17.650467, 59.856129],\n              [17.650467, 59.856129],\n              [17.650467, 59.856129],\n              [17.650467, 59.856129],\n              [17.650468, 59.856129],\n              [17.650468, 59.856129],\n              [17.650468, 59.856129],\n              [17.650468, 59.856129],\n              [17.650468, 59.856129],\n              [17.650468, 59.856129],\n              [17.650468, 59.856129],\n              [17.650468, 59.856128],\n              [17.650468, 59.856128],\n              [17.650468, 59.856128],\n              [17.650468, 59.856128],\n              [17.650468, 59.856128],\n              [17.650468, 59.856128],\n              [17.650468, 59.856128],\n              [17.650468, 59.856128],\n              [17.650468, 59.856128],\n              [17.650476, 59.856132],\n              [17.650477, 59.856131],\n              [17.650477, 59.856131],\n              [17.650477, 59.856131],\n              [17.650477, 59.856131],\n              [17.650477, 59.856131],\n              [17.650477, 59.856131],\n              [17.650477, 59.856131],\n              [17.650476, 59.856131],\n              [17.650476, 59.856132],\n              [17.650494, 59.85614],\n              [17.650494, 59.85614],\n              [17.650495, 59.856139],\n              [17.650494, 59.856139],\n              [17.650494, 59.856138],\n              [17.650494, 59.856138],\n              [17.650494, 59.856138],\n              [17.650494, 59.856138],\n              [17.650494, 59.856138],\n              [17.650494, 59.856139],\n              [17.650496, 59.85614],\n              [17.650496, 59.85614],\n              [17.650495, 59.856139],\n              [17.650495, 59.856139],\n              [17.650494, 59.85614],\n              [17.65051, 59.856147],\n              [17.650511, 59.856147],\n              [17.650511, 59.856147],\n              [17.650511, 59.856147],\n              [17.65051, 59.856147],\n              [17.65051, 59.856147],\n              [17.650526, 59.856154],\n              [17.650527, 59.856154],\n              [17.650527, 59.856154],\n              [17.650527, 59.856154],\n              [17.650526, 59.856154],\n              [17.650526, 59.856154],\n              [17.650542, 59.856161],\n              [17.650543, 59.856161],\n              [17.650543, 59.856161],\n              [17.650542, 59.85616],\n              [17.650542, 59.85616],\n              [17.650542, 59.85616],\n              [17.650542, 59.85616],\n              [17.650544, 59.856162],\n              [17.650544, 59.856162],\n              [17.650545, 59.856162],\n              [17.650545, 59.856162],\n              [17.650545, 59.856162],\n              [17.650545, 59.856162],\n              [17.650544, 59.856162],\n              [17.650543, 59.856161],\n              [17.650542, 59.856161],\n              [17.650542, 59.856162],\n              [17.65056, 59.85617],\n              [17.650561, 59.856169],\n              [17.650561, 59.856169],\n              [17.650561, 59.856169],\n              [17.650561, 59.856169],\n              [17.65056, 59.85617],\n              [17.65056, 59.85617],\n              [17.65056, 59.85617],\n              [17.650583, 59.85618],\n              [17.650583, 59.85618],\n              [17.650583, 59.856179],\n              [17.650578, 59.856177],\n              [17.650578, 59.856177],\n              [17.650579, 59.856177],\n              [17.650579, 59.856177],\n              [17.650579, 59.856177],\n              [17.650579, 59.856177],\n              [17.650583, 59.856179],\n              [17.650587, 59.856177],\n              [17.650586, 59.856177],\n              [17.650586, 59.856177],\n              [17.650587, 59.856177],\n              [17.650587, 59.856177],\n              [17.650587, 59.856177],\n              [17.650588, 59.856177],\n              [17.650588, 59.856177],\n              [17.650583, 59.856179],\n              [17.650583, 59.85618],\n              [17.650583, 59.85618],\n              [17.650604, 59.856169],\n              [17.650603, 59.856168],\n              [17.650603, 59.856168],\n              [17.650603, 59.856168],\n              [17.650604, 59.856169],\n              [17.65062, 59.856159],\n              [17.650619, 59.856159],\n              [17.650618, 59.85616],\n              [17.650618, 59.85616],\n              [17.650619, 59.856159],\n              [17.650619, 59.856159],\n              [17.650619, 59.856159],\n              [17.650619, 59.856159],\n              [17.65062, 59.856158],\n              [17.65062, 59.856158],\n              [17.650619, 59.856159],\n              [17.650619, 59.856159],\n              [17.65062, 59.856159],\n              [17.650633, 59.856152],\n              [17.650633, 59.856152],\n              [17.650633, 59.856152],\n              [17.650633, 59.856152],\n              [17.650633, 59.856152],\n              [17.650633, 59.856152],\n              [17.650647, 59.856144],\n              [17.650646, 59.856144],\n              [17.650645, 59.856145],\n              [17.650645, 59.856145],\n              [17.650646, 59.856144],\n              [17.650646, 59.856144],\n              [17.650646, 59.856144],\n              [17.650646, 59.856144],\n              [17.650647, 59.856143],\n              [17.650647, 59.856143],\n              [17.650646, 59.856144],\n              [17.650646, 59.856144],\n              [17.650647, 59.856144],\n              [17.650647, 59.856144],\n              [17.650663, 59.856135],\n              [17.650663, 59.856135],\n              [17.650662, 59.856135],\n              [17.650662, 59.856135],\n              [17.650663, 59.856135],\n              [17.650663, 59.856135],\n              [17.650679, 59.856126],\n              [17.650679, 59.856126],\n              [17.650677, 59.856127],\n              [17.650677, 59.856127],\n              [17.650678, 59.856126],\n              [17.650678, 59.856126],\n              [17.650679, 59.856126],\n              [17.650679, 59.856126],\n              [17.65068, 59.856125],\n              [17.65068, 59.856125],\n              [17.650679, 59.856126],\n              [17.650679, 59.856126],\n              [17.650679, 59.856126],\n              [17.650679, 59.856126],\n              [17.650695, 59.856117],\n              [17.650695, 59.856117],\n              [17.650695, 59.856117],\n              [17.650695, 59.856117],\n              [17.650695, 59.856117],\n              [17.650696, 59.856117],\n              [17.650696, 59.856117],\n              [17.650712, 59.856108],\n              [17.650711, 59.856108],\n              [17.65071, 59.856109],\n              [17.65071, 59.856109],\n              [17.650711, 59.856108],\n              [17.650711, 59.856108],\n              [17.650711, 59.856108],\n              [17.650711, 59.856108],\n              [17.650712, 59.856107],\n              [17.650712, 59.856107],\n              [17.650711, 59.856108],\n              [17.650711, 59.856108],\n              [17.650712, 59.856108],\n              [17.650712, 59.856108],\n              [17.650728, 59.856099],\n              [17.650728, 59.856099],\n              [17.650727, 59.856099],\n              [17.650727, 59.856099],\n              [17.650728, 59.856099],\n              [17.650728, 59.856099],\n              [17.650744, 59.85609],\n              [17.650743, 59.85609],\n              [17.650742, 59.85609],\n              [17.650742, 59.85609],\n              [17.650743, 59.85609],\n              [17.650743, 59.85609],\n              [17.650743, 59.85609],\n              [17.650743, 59.85609],\n              [17.650745, 59.856089],\n              [17.650745, 59.856089],\n              [17.650743, 59.85609],\n              [17.650743, 59.85609],\n              [17.650744, 59.85609],\n              [17.650744, 59.85609],\n              [17.65076, 59.856081],\n              [17.65076, 59.856081],\n              [17.65076, 59.856081],\n              [17.65076, 59.856081],\n              [17.65076, 59.856081],\n              [17.65076, 59.856081],\n              [17.65076, 59.856081],\n              [17.650777, 59.856072],\n              [17.650776, 59.856072],\n              [17.650775, 59.856072],\n              [17.650775, 59.856072],\n              [17.650776, 59.856072],\n              [17.650776, 59.856072],\n              [17.650776, 59.856072],\n              [17.650776, 59.856072],\n              [17.650777, 59.856071],\n              [17.650777, 59.856071],\n              [17.650776, 59.856072],\n              [17.650776, 59.856072],\n              [17.650777, 59.856072],\n              [17.650777, 59.856072],\n              [17.650793, 59.856063],\n              [17.650793, 59.856063],\n              [17.650793, 59.856063],\n              [17.650792, 59.856063],\n              [17.650792, 59.856063],\n              [17.650792, 59.856063],\n              [17.650793, 59.856063],\n              [17.650793, 59.856063],\n              [17.650809, 59.856054],\n              [17.650808, 59.856054],\n              [17.650807, 59.856054],\n              [17.650807, 59.856054],\n              [17.650808, 59.856054],\n              [17.650808, 59.856054],\n              [17.650808, 59.856053],\n              [17.650808, 59.856053],\n              [17.65081, 59.856053],\n              [17.65081, 59.856053],\n              [17.650808, 59.856054],\n              [17.650808, 59.856054],\n              [17.650809, 59.856054],\n              [17.650809, 59.856054],\n              [17.650825, 59.856045],\n              [17.650825, 59.856045],\n              [17.650825, 59.856044],\n              [17.650825, 59.856044],\n              [17.650825, 59.856044],\n              [17.650825, 59.856045],\n              [17.650825, 59.856045],\n              [17.650842, 59.856036],\n              [17.650841, 59.856035],\n              [17.65084, 59.856036],\n              [17.65084, 59.856036],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650841, 59.856035],\n              [17.650841, 59.856035],\n              [17.650842, 59.856036],\n              [17.650842, 59.856036],\n              [17.650858, 59.856027],\n              [17.650858, 59.856027],\n              [17.650857, 59.856026],\n              [17.650857, 59.856026],\n              [17.650857, 59.856026],\n              [17.650858, 59.856027],\n              [17.650858, 59.856027],\n              [17.650874, 59.856018],\n              [17.650873, 59.856017],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650874, 59.856017],\n              [17.650874, 59.856017],\n              [17.650873, 59.856017],\n              [17.650873, 59.856017],\n              [17.650874, 59.856018],\n              [17.650874, 59.856018],\n              [17.650874, 59.856018],\n              [17.65089, 59.856009],\n              [17.650889, 59.856008],\n              [17.650889, 59.856008],\n              [17.65089, 59.856009],\n              [17.65089, 59.856009],\n              [17.65089, 59.856009],\n              [17.650906, 59.856],\n              [17.650906, 59.855999],\n              [17.650905, 59.856],\n              [17.650905, 59.856],\n              [17.650906, 59.855999],\n              [17.650906, 59.855999],\n              [17.650906, 59.855999],\n              [17.650906, 59.855999],\n              [17.650907, 59.855999],\n              [17.650907, 59.855999],\n              [17.650906, 59.855999],\n              [17.650906, 59.855999],\n              [17.650906, 59.856],\n              [17.650906, 59.856],\n              [17.650906, 59.856],\n              [17.650923, 59.855991],\n              [17.650922, 59.85599],\n              [17.650922, 59.85599],\n              [17.650923, 59.85599],\n              [17.650923, 59.85599],\n              [17.650923, 59.85599],\n              [17.650939, 59.855981],\n              [17.650938, 59.855981],\n              [17.650937, 59.855982],\n              [17.650937, 59.855982],\n              [17.650938, 59.855981],\n              [17.650938, 59.855981],\n              [17.650938, 59.855981],\n              [17.650938, 59.855981],\n              [17.650939, 59.85598],\n              [17.650939, 59.85598],\n              [17.650938, 59.855981],\n              [17.650938, 59.855981],\n              [17.650939, 59.855981],\n              [17.650939, 59.855981],\n              [17.650939, 59.855981],\n              [17.650955, 59.855972],\n              [17.650954, 59.855972],\n              [17.650954, 59.855972],\n              [17.650955, 59.855972],\n              [17.650955, 59.855972],\n              [17.650955, 59.855972],\n              [17.650971, 59.855963],\n              [17.650971, 59.855963],\n              [17.650969, 59.855964],\n              [17.650969, 59.855964],\n              [17.650971, 59.855963],\n              [17.650971, 59.855963],\n              [17.650971, 59.855963],\n              [17.650971, 59.855963],\n              [17.650972, 59.855962],\n              [17.650972, 59.855962],\n              [17.650971, 59.855963],\n              [17.650971, 59.855963],\n              [17.650971, 59.855963],\n              [17.650971, 59.855963],\n              [17.650971, 59.855963],\n              [17.650988, 59.855954],\n              [17.650987, 59.855954],\n              [17.650987, 59.855954],\n              [17.650987, 59.855954],\n              [17.650988, 59.855954],\n              [17.650988, 59.855954],\n              [17.650988, 59.855954],\n              [17.651008, 59.855943],\n              [17.651008, 59.855943],\n              [17.651007, 59.855943],\n              [17.651002, 59.855946],\n              [17.651002, 59.855946],\n              [17.651003, 59.855945],\n              [17.651003, 59.855945],\n              [17.651003, 59.855945],\n              [17.651003, 59.855945],\n              [17.651007, 59.855943],\n              [17.651003, 59.855941],\n              [17.651003, 59.855941],\n              [17.651003, 59.855941],\n              [17.651003, 59.855941],\n              [17.651001, 59.855941],\n              [17.651001, 59.855941],\n              [17.651003, 59.855942],\n              [17.651003, 59.855942],\n              [17.651007, 59.855943],\n              [17.651008, 59.855943],\n              [17.651008, 59.855943],\n              [17.651004, 59.855941],\n              [17.651051, 59.855915],\n              [17.650934, 59.855862],\n              [17.650888, 59.855888],\n              [17.650888, 59.855888],\n              [17.650887, 59.855888],\n              [17.650887, 59.855888],\n              [17.650887, 59.855888],\n              [17.650883, 59.855886],\n              [17.650883, 59.855887],\n              [17.650883, 59.855887],\n              [17.650884, 59.855887],\n              [17.650884, 59.855888],\n              [17.650884, 59.855887],\n              [17.650884, 59.855887],\n              [17.650881, 59.855886],\n              [17.650881, 59.855886],\n              [17.650881, 59.855886],\n              [17.650881, 59.855886],\n              [17.650882, 59.855887],\n              [17.650883, 59.855886],\n              [17.650883, 59.855886],\n              [17.650865, 59.855878],\n              [17.650864, 59.855879],\n              [17.650864, 59.855879],\n              [17.650865, 59.855878],\n              [17.650865, 59.855878],\n              [17.650847, 59.85587],\n              [17.650846, 59.855871],\n              [17.650848, 59.855871],\n              [17.650848, 59.855871],\n              [17.650848, 59.855871],\n              [17.650848, 59.855871],\n              [17.650842, 59.855869],\n              [17.650841, 59.85587],\n              [17.650841, 59.85587],\n              [17.650841, 59.855869],\n              [17.650842, 59.855869],\n              [17.650846, 59.855871],\n              [17.650846, 59.855871],\n              [17.650847, 59.85587],\n              [17.650847, 59.85587],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650829, 59.855861],\n              [17.650829, 59.855861],\n              [17.650829, 59.855861],\n              [17.650829, 59.855861],\n              [17.650829, 59.855861],\n              [17.650829, 59.855861],\n              [17.650829, 59.855861],\n              [17.650828, 59.855862],\n              [17.650811, 59.855854],\n              [17.65081, 59.855854],\n              [17.650809, 59.855855],\n              [17.650809, 59.855855],\n              [17.650811, 59.855854],\n              [17.650811, 59.855854],\n              [17.650794, 59.855846],\n              [17.650794, 59.855846],\n              [17.650794, 59.855848],\n              [17.650794, 59.855848],\n              [17.650794, 59.855846],\n              [17.650794, 59.855846],\n              [17.650774, 59.855858],\n              [17.650774, 59.855858],\n              [17.650774, 59.855858],\n              [17.650775, 59.855858],\n              [17.650775, 59.855858],\n              [17.650774, 59.855858],\n              [17.650774, 59.855858],\n              [17.650774, 59.855858],\n              [17.650758, 59.855867],\n              [17.650758, 59.855867],\n              [17.650759, 59.855867],\n              [17.650759, 59.855867],\n              [17.650758, 59.855867],\n              [17.650758, 59.855867],\n              [17.650741, 59.855876],\n              [17.650742, 59.855876],\n              [17.650743, 59.855876],\n              [17.650743, 59.855876],\n              [17.650741, 59.855876],\n              [17.650741, 59.855876],\n              [17.650725, 59.855885],\n              [17.650725, 59.855885],\n              [17.650727, 59.855885],\n              [17.650727, 59.855886],\n              [17.650725, 59.855885],\n              [17.650725, 59.855885],\n              [17.650709, 59.855894],\n              [17.650709, 59.855894],\n              [17.650711, 59.855895],\n              [17.650711, 59.855895],\n              [17.650709, 59.855894],\n              [17.650709, 59.855894],\n              [17.650709, 59.855894],\n              [17.650693, 59.855903],\n              [17.650693, 59.855903],\n              [17.650694, 59.855904],\n              [17.650694, 59.855904],\n              [17.650693, 59.855903],\n              [17.650693, 59.855903],\n              [17.650681, 59.855909],\n              [17.650681, 59.855909],\n              [17.650682, 59.855909],\n              [17.650682, 59.855909],\n              [17.650682, 59.855909],\n              [17.650681, 59.855909],\n              [17.650681, 59.855909],\n              [17.650681, 59.855909],\n              [17.650681, 59.855909],\n              [17.650681, 59.855909],\n              [17.650681, 59.855909],\n              [17.650681, 59.855909],\n              [17.650681, 59.855909],\n              [17.650681, 59.855909],\n              [17.650681, 59.855909],\n              [17.650681, 59.855909],\n              [17.65068, 59.855909],\n              [17.65068, 59.855909],\n              [17.65068, 59.855909],\n              [17.65068, 59.855909],\n              [17.65068, 59.855909],\n              [17.65068, 59.855909],\n              [17.65068, 59.855909],\n              [17.65068, 59.855909],\n              [17.65068, 59.855909],\n              [17.650681, 59.855909],\n              [17.650681, 59.855909],\n              [17.650681, 59.85591],\n              [17.650677, 59.855912],\n              [17.650677, 59.855912],\n              [17.650678, 59.855913],\n              [17.650678, 59.855913],\n              [17.650677, 59.855912],\n              [17.650677, 59.855912],\n              [17.650673, 59.855914],\n              [17.650671, 59.855914],\n              [17.650671, 59.855914],\n              [17.650671, 59.855914],\n              [17.650671, 59.855914],\n              [17.650671, 59.855914],\n              [17.650671, 59.855914],\n              [17.650671, 59.855914],\n              [17.650671, 59.855914],\n              [17.650671, 59.855914],\n              [17.650671, 59.855914],\n              [17.650671, 59.855914],\n              [17.650671, 59.855914],\n              [17.650671, 59.855914],\n              [17.650671, 59.855914],\n              [17.650671, 59.855914],\n              [17.650671, 59.855914],\n              [17.650671, 59.855914],\n              [17.650671, 59.855914],\n              [17.650671, 59.855915],\n              [17.650671, 59.855915],\n              [17.650671, 59.855915],\n              [17.650671, 59.855915],\n              [17.650672, 59.855915],\n              [17.650672, 59.855915],\n              [17.650672, 59.855915],\n              [17.650672, 59.855914],\n              [17.650672, 59.855915],\n              [17.65066, 59.855921],\n              [17.65066, 59.855921],\n              [17.650662, 59.855922],\n              [17.650662, 59.855922],\n              [17.65066, 59.855921],\n              [17.65066, 59.855921],\n              [17.650644, 59.85593],\n              [17.650644, 59.85593],\n              [17.650646, 59.855931],\n              [17.650646, 59.855931],\n              [17.650645, 59.85593],\n              [17.650644, 59.85593],\n              [17.650644, 59.85593],\n              [17.650628, 59.855939],\n              [17.650628, 59.855939],\n              [17.65063, 59.85594],\n              [17.650629, 59.85594],\n              [17.650628, 59.855939],\n              [17.650628, 59.855939],\n              [17.650612, 59.855948],\n              [17.650613, 59.855949],\n              [17.650613, 59.855949],\n              [17.650613, 59.855949],\n              [17.650612, 59.855948],\n              [17.650612, 59.855948],\n              [17.650612, 59.855948],\n              [17.650595, 59.855957],\n              [17.650595, 59.855957],\n              [17.650597, 59.855958],\n              [17.650597, 59.855958],\n              [17.650595, 59.855957],\n              [17.650595, 59.855957],\n              [17.650595, 59.855957],\n              [17.650579, 59.855966],\n              [17.650581, 59.855967],\n              [17.650581, 59.855967],\n              [17.650579, 59.855966],\n              [17.650579, 59.855966],\n              [17.650579, 59.855966],\n              [17.650563, 59.855975],\n              [17.650565, 59.855976],\n              [17.650565, 59.855976],\n              [17.650563, 59.855975],\n              [17.650563, 59.855975],\n              [17.650563, 59.855975],\n              [17.650547, 59.855984],\n              [17.650548, 59.855985],\n              [17.650548, 59.855985],\n              [17.650547, 59.855984],\n              [17.650547, 59.855984],\n              [17.650547, 59.855984],\n              [17.650546, 59.855985],\n              [17.650546, 59.855985],\n              [17.650546, 59.855984],\n              [17.650546, 59.855984],\n              [17.650546, 59.855984],\n              [17.650546, 59.855984],\n              [17.650546, 59.855984],\n              [17.650546, 59.855984],\n              [17.650546, 59.855984],\n              [17.650546, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855984],\n              [17.650545, 59.855985],\n              [17.650531, 59.855993],\n              [17.650532, 59.855994],\n              [17.650532, 59.855994],\n              [17.650531, 59.855994],\n              [17.650531, 59.855993],\n              [17.65053, 59.855993],\n              [17.65053, 59.855993],\n              [17.650514, 59.856002],\n              [17.650514, 59.856002],\n              [17.650516, 59.856003],\n              [17.650516, 59.856003],\n              [17.650514, 59.856003],\n              [17.650514, 59.856003],\n              [17.650514, 59.856002],\n              [17.650498, 59.856012],\n              [17.650499, 59.856012],\n              [17.6505, 59.856012],\n              [17.6505, 59.856012],\n              [17.650498, 59.856012],\n              [17.650498, 59.856012],\n              [17.650498, 59.856012],\n              [17.650482, 59.856021],\n              [17.650482, 59.856021],\n              [17.650483, 59.856021],\n              [17.650483, 59.856021],\n              [17.650482, 59.856021],\n              [17.650482, 59.856021],\n              [17.650482, 59.856021],\n              [17.650466, 59.85603],\n              [17.650466, 59.85603],\n              [17.650467, 59.85603],\n              [17.650467, 59.85603],\n              [17.650466, 59.85603],\n              [17.650466, 59.85603],\n              [17.650466, 59.85603],\n              [17.650449, 59.856039],\n              [17.650449, 59.856039],\n              [17.650451, 59.856039],\n              [17.650451, 59.856039],\n              [17.650449, 59.856039],\n              [17.650449, 59.856039],\n              [17.650449, 59.856039],\n              [17.650433, 59.856048],\n              [17.650433, 59.856048],\n              [17.650435, 59.856049],\n              [17.650435, 59.856049],\n              [17.650433, 59.856048],\n              [17.650433, 59.856048],\n              [17.650433, 59.856048],\n              [17.65042, 59.856055]\n            ],\n            [\n              [17.650642, 59.856143],\n              [17.650642, 59.856143],\n              [17.650645, 59.856142],\n              [17.650645, 59.856142],\n              [17.650645, 59.856142],\n              [17.650645, 59.856142],\n              [17.650642, 59.856143]\n            ],\n            [\n              [17.650677, 59.856124],\n              [17.650677, 59.856124],\n              [17.650675, 59.856125],\n              [17.650675, 59.856125],\n              [17.650677, 59.856124]\n            ],\n            [\n              [17.650707, 59.856107],\n              [17.650707, 59.856107],\n              [17.650707, 59.856107],\n              [17.650707, 59.856107],\n              [17.650707, 59.856107],\n              [17.650707, 59.856107],\n              [17.650707, 59.856107]\n            ],\n            [\n              [17.650708, 59.856107],\n              [17.650709, 59.856106],\n              [17.650709, 59.856106],\n              [17.650708, 59.856107],\n              [17.650708, 59.856107]\n            ],\n            [\n              [17.650683, 59.856095],\n              [17.650682, 59.856095],\n              [17.650705, 59.856106],\n              [17.650706, 59.856105],\n              [17.650708, 59.856106],\n              [17.650708, 59.856107],\n              [17.650683, 59.856095]\n            ],\n            [\n              [17.650681, 59.856095],\n              [17.650675, 59.856099],\n              [17.650675, 59.856099],\n              [17.650675, 59.856099],\n              [17.650673, 59.8561],\n              [17.650673, 59.8561],\n              [17.650654, 59.856111],\n              [17.650649, 59.856113],\n              [17.650649, 59.856113],\n              [17.650641, 59.85611],\n              [17.650641, 59.856109],\n              [17.650639, 59.856109],\n              [17.650639, 59.856109],\n              [17.650649, 59.856113],\n              [17.650683, 59.856095],\n              [17.650683, 59.856095],\n              [17.650682, 59.856095],\n              [17.650681, 59.856095]\n            ],\n            [\n              [17.650602, 59.856093],\n              [17.650588, 59.856101],\n              [17.650603, 59.856092],\n              [17.650602, 59.856093]\n            ],\n            [\n              [17.650576, 59.856095],\n              [17.650578, 59.856094],\n              [17.65058, 59.856093],\n              [17.65058, 59.856093],\n              [17.650576, 59.856095],\n              [17.650576, 59.856095]\n            ],\n            [\n              [17.650588, 59.856088],\n              [17.65059, 59.856087],\n              [17.65059, 59.856087],\n              [17.650588, 59.856088],\n              [17.650587, 59.856088],\n              [17.650592, 59.856085],\n              [17.650577, 59.856078],\n              [17.650588, 59.856072],\n              [17.650578, 59.856068],\n              [17.650597, 59.856057],\n              [17.650597, 59.856057],\n              [17.650588, 59.856053],\n              [17.65059, 59.856051],\n              [17.650588, 59.856051],\n              [17.650603, 59.856042],\n              [17.650617, 59.856034],\n              [17.650618, 59.856035],\n              [17.650604, 59.856042],\n              [17.650605, 59.856043],\n              [17.650604, 59.856043],\n              [17.650604, 59.856042],\n              [17.650604, 59.856043],\n              [17.650604, 59.856043],\n              [17.650593, 59.856049],\n              [17.650593, 59.856049],\n              [17.650593, 59.856049],\n              [17.650592, 59.856049],\n              [17.650609, 59.856057],\n              [17.650605, 59.856059],\n              [17.650606, 59.85606],\n              [17.65061, 59.856057],\n              [17.650612, 59.856058],\n              [17.650618, 59.856061],\n              [17.650614, 59.856063],\n              [17.650615, 59.856064],\n              [17.650619, 59.856061],\n              [17.650628, 59.856065],\n              [17.650628, 59.856065],\n              [17.650623, 59.856068],\n              [17.650624, 59.856068],\n              [17.650629, 59.856066],\n              [17.650636, 59.856062],\n              [17.65064, 59.856059],\n              [17.650655, 59.856051],\n              [17.650655, 59.856051],\n              [17.650588, 59.856088],\n              [17.650588, 59.856088]\n            ],\n            [\n              [17.650657, 59.85605],\n              [17.650657, 59.85605],\n              [17.650673, 59.856041],\n              [17.650673, 59.856041],\n              [17.650673, 59.856041],\n              [17.650657, 59.85605],\n              [17.650657, 59.85605]\n            ],\n            [\n              [17.650665, 59.856038],\n              [17.650664, 59.856038],\n              [17.650667, 59.856039],\n              [17.650665, 59.856038]\n            ],\n            [\n              [17.650656, 59.856034],\n              [17.650653, 59.856032],\n              [17.650652, 59.856032],\n              [17.650657, 59.856034],\n              [17.650656, 59.856034]\n            ],\n            [\n              [17.650636, 59.856025],\n              [17.650636, 59.856025],\n              [17.65064, 59.856026],\n              [17.650636, 59.856025]\n            ],\n            [\n              [17.650641, 59.856021],\n              [17.650639, 59.856022],\n              [17.65065, 59.856016],\n              [17.650643, 59.85602],\n              [17.650641, 59.856021]\n            ],\n            [\n              [17.650628, 59.856022],\n              [17.65062, 59.856019],\n              [17.650619, 59.856018],\n              [17.650634, 59.856025],\n              [17.650628, 59.856022]\n            ],\n            [\n              [17.650618, 59.856018],\n              [17.650595, 59.856007],\n              [17.650591, 59.856006],\n              [17.650619, 59.856018],\n              [17.650618, 59.856018]\n            ],\n            [\n              [17.650548, 59.856057],\n              [17.650617, 59.856018],\n              [17.650618, 59.856018],\n              [17.650548, 59.856057]\n            ],\n            [\n              [17.650566, 59.855996],\n              [17.650594, 59.856008],\n              [17.650617, 59.856018],\n              [17.650566, 59.855996]\n            ],\n            [\n              [17.65056, 59.855981],\n              [17.65057, 59.855985],\n              [17.650576, 59.855988],\n              [17.65058, 59.85599],\n              [17.650592, 59.855995],\n              [17.650614, 59.856005],\n              [17.650621, 59.856008],\n              [17.650624, 59.85601],\n              [17.65056, 59.855981],\n              [17.65056, 59.855981]\n            ],\n            [\n              [17.65063, 59.856006],\n              [17.650632, 59.856007],\n              [17.65063, 59.856006],\n              [17.65063, 59.856006]\n            ],\n            [\n              [17.650675, 59.855983],\n              [17.650659, 59.855993],\n              [17.650659, 59.855993],\n              [17.650658, 59.855993],\n              [17.650654, 59.855992],\n              [17.650653, 59.855991],\n              [17.650639, 59.855985],\n              [17.650656, 59.855976],\n              [17.650696, 59.855953],\n              [17.650713, 59.855944],\n              [17.650732, 59.855953],\n              [17.650726, 59.855956],\n              [17.650719, 59.855959],\n              [17.650714, 59.855961],\n              [17.650709, 59.855965],\n              [17.650707, 59.855964],\n              [17.650707, 59.855964],\n              [17.650697, 59.85596],\n              [17.650689, 59.855964],\n              [17.650699, 59.855969],\n              [17.650699, 59.855969],\n              [17.650699, 59.855969],\n              [17.650699, 59.855969],\n              [17.6507, 59.855969],\n              [17.6507, 59.855969],\n              [17.6507, 59.855969],\n              [17.650689, 59.855975],\n              [17.650688, 59.855975],\n              [17.650688, 59.855975],\n              [17.650678, 59.85597],\n              [17.650678, 59.85597],\n              [17.650678, 59.85597],\n              [17.650674, 59.855973],\n              [17.65067, 59.855975],\n              [17.65067, 59.855975],\n              [17.65067, 59.855975],\n              [17.650681, 59.85598],\n              [17.650681, 59.85598],\n              [17.650675, 59.855983],\n              [17.650675, 59.855983],\n              [17.650675, 59.855983]\n            ],\n            [\n              [17.650714, 59.855926],\n              [17.650714, 59.855926],\n              [17.650744, 59.855939],\n              [17.650744, 59.855939],\n              [17.650751, 59.855942],\n              [17.650751, 59.855942],\n              [17.650714, 59.855926]\n            ],\n            [\n              [17.650714, 59.855926],\n              [17.650683, 59.855912],\n              [17.650684, 59.855912],\n              [17.650683, 59.855912],\n              [17.650714, 59.855926],\n              [17.650714, 59.855926]\n            ],\n            [\n              [17.650545, 59.856161],\n              [17.650545, 59.856161],\n              [17.650545, 59.856161],\n              [17.650545, 59.856161],\n              [17.650545, 59.856161]\n            ],\n            [\n              [17.65058, 59.856175],\n              [17.650583, 59.856177],\n              [17.650585, 59.856175],\n              [17.650585, 59.856175],\n              [17.650583, 59.856177],\n              [17.65058, 59.856175],\n              [17.65058, 59.856176],\n              [17.65058, 59.856176],\n              [17.65058, 59.856175]\n            ],\n            [\n              [17.650499, 59.856139],\n              [17.650498, 59.856139],\n              [17.650498, 59.856139],\n              [17.650499, 59.856139],\n              [17.650496, 59.856137],\n              [17.650496, 59.856137],\n              [17.650481, 59.85613],\n              [17.650481, 59.85613],\n              [17.650496, 59.856137],\n              [17.650496, 59.856137],\n              [17.650481, 59.85613],\n              [17.650481, 59.85613],\n              [17.650497, 59.856138],\n              [17.650518, 59.856126],\n              [17.650499, 59.856137],\n              [17.6505, 59.856137],\n              [17.650531, 59.85612],\n              [17.65053, 59.85612],\n              [17.65053, 59.856119],\n              [17.650529, 59.856119],\n              [17.65053, 59.856118],\n              [17.650521, 59.856114],\n              [17.650521, 59.856114],\n              [17.650531, 59.856109],\n              [17.650541, 59.856113],\n              [17.650542, 59.856113],\n              [17.650532, 59.856119],\n              [17.650533, 59.856119],\n              [17.650498, 59.856138],\n              [17.650499, 59.856139],\n              [17.650499, 59.856139],\n              [17.650499, 59.856139]\n            ],\n            [\n              [17.650531, 59.856108],\n              [17.65053, 59.856109],\n              [17.65052, 59.856114],\n              [17.65052, 59.856114],\n              [17.650531, 59.856108],\n              [17.650542, 59.856113],\n              [17.650531, 59.856108]\n            ],\n            [\n              [17.650557, 59.856105],\n              [17.650557, 59.856105],\n              [17.650547, 59.85611],\n              [17.650542, 59.856113],\n              [17.650543, 59.856114],\n              [17.650542, 59.856113],\n              [17.650557, 59.856105]\n            ],\n            [\n              [17.650544, 59.856113],\n              [17.650544, 59.856113],\n              [17.650541, 59.856114],\n              [17.650541, 59.856114],\n              [17.650543, 59.856114],\n              [17.650544, 59.856113]\n            ],\n            [\n              [17.650575, 59.856094],\n              [17.650559, 59.856103],\n              [17.650559, 59.856103],\n              [17.650575, 59.856094],\n              [17.650575, 59.856094]\n            ],\n            [\n              [17.650577, 59.856093],\n              [17.650576, 59.856094],\n              [17.650576, 59.856094],\n              [17.650577, 59.856093],\n              [17.650577, 59.856093]\n            ],\n            [\n              [17.65058, 59.856093],\n              [17.650578, 59.856094],\n              [17.650577, 59.856093],\n              [17.650577, 59.856093],\n              [17.650579, 59.856092],\n              [17.65058, 59.856093]\n            ],\n            [\n              [17.650597, 59.856057],\n              [17.650578, 59.856068],\n              [17.650578, 59.856068],\n              [17.650597, 59.856057]\n            ],\n            [\n              [17.650627, 59.856023],\n              [17.650633, 59.856025],\n              [17.650627, 59.856023],\n              [17.650627, 59.856023]\n            ],\n            [\n              [17.650598, 59.85599],\n              [17.650598, 59.85599],\n              [17.650597, 59.855989],\n              [17.650597, 59.855989],\n              [17.650595, 59.855988],\n              [17.650595, 59.855988],\n              [17.650594, 59.855988],\n              [17.650594, 59.855988],\n              [17.650594, 59.855988],\n              [17.65059, 59.855986],\n              [17.65059, 59.855986],\n              [17.650589, 59.855985],\n              [17.65059, 59.855985],\n              [17.650589, 59.855985],\n              [17.650598, 59.85599],\n              [17.650598, 59.85599],\n              [17.650598, 59.85599],\n              [17.650598, 59.85599],\n              [17.650598, 59.85599]\n            ],\n            [\n              [17.65059, 59.855985],\n              [17.65059, 59.855985],\n              [17.6506, 59.855989],\n              [17.65059, 59.855985],\n              [17.65059, 59.855985]\n            ],\n            [\n              [17.650598, 59.855959],\n              [17.650598, 59.855959],\n              [17.650598, 59.855959],\n              [17.650598, 59.855959]\n            ],\n            [\n              [17.650461, 59.856122],\n              [17.65046, 59.856121],\n              [17.650463, 59.856122],\n              [17.650461, 59.856122]\n            ],\n            [\n              [17.65046, 59.856121],\n              [17.650457, 59.856119],\n              [17.650455, 59.856119],\n              [17.650455, 59.856119],\n              [17.650449, 59.856116],\n              [17.650449, 59.856116],\n              [17.650447, 59.856115],\n              [17.650435, 59.85611],\n              [17.650429, 59.856107],\n              [17.650427, 59.856106],\n              [17.650427, 59.856106],\n              [17.65046, 59.856121],\n              [17.65046, 59.856121],\n              [17.65046, 59.856121]\n            ],\n            [\n              [17.650454, 59.856089],\n              [17.650446, 59.856093],\n              [17.650447, 59.856093],\n              [17.650454, 59.856089],\n              [17.650454, 59.856089]\n            ],\n            [\n              [17.65046, 59.856088],\n              [17.65046, 59.856087],\n              [17.65046, 59.856088],\n              [17.65046, 59.856088]\n            ],\n            [\n              [17.650456, 59.856087],\n              [17.650457, 59.856086],\n              [17.650412, 59.856066],\n              [17.650413, 59.856065],\n              [17.650458, 59.856086],\n              [17.650458, 59.856086],\n              [17.650456, 59.856087],\n              [17.650456, 59.856087]\n            ],\n            [\n              [17.650534, 59.855995],\n              [17.650535, 59.855994],\n              [17.650534, 59.855995],\n              [17.650533, 59.855995],\n              [17.650533, 59.855995],\n              [17.650534, 59.855995]\n            ],\n            [\n              [17.650535, 59.855994],\n              [17.650535, 59.855994],\n              [17.650535, 59.855994],\n              [17.650535, 59.855994]\n            ],\n            [\n              [17.650532, 59.855994],\n              [17.650532, 59.855994],\n              [17.650532, 59.855994],\n              [17.650532, 59.855994],\n              [17.650532, 59.855994]\n            ],\n            [\n              [17.6505, 59.856012],\n              [17.6505, 59.856012],\n              [17.6505, 59.856012],\n              [17.6505, 59.856012],\n              [17.6505, 59.856012]\n            ],\n            [\n              [17.650424, 59.856106],\n              [17.650424, 59.856106],\n              [17.650424, 59.856106],\n              [17.650424, 59.856106],\n              [17.650424, 59.856106]\n            ],\n            [\n              [17.650408, 59.856065],\n              [17.65041, 59.856064],\n              [17.65041, 59.856064],\n              [17.650408, 59.856065]\n            ],\n            [\n              [17.650409, 59.856065],\n              [17.650409, 59.856065],\n              [17.650408, 59.856065],\n              [17.650409, 59.856065]\n            ],\n            [\n              [17.650435, 59.856049],\n              [17.650435, 59.856049],\n              [17.650435, 59.856049],\n              [17.650435, 59.856049],\n              [17.650435, 59.856049]\n            ],\n            [\n              [17.650376, 59.856083],\n              [17.650378, 59.856082],\n              [17.650376, 59.856083],\n              [17.650376, 59.856083]\n            ],\n            [\n              [17.650378, 59.856082],\n              [17.650378, 59.856082],\n              [17.650378, 59.856082],\n              [17.650378, 59.856082]\n            ],\n            [\n              [17.650433, 59.856092],\n              [17.650417, 59.856101],\n              [17.650417, 59.856101],\n              [17.650434, 59.856092],\n              [17.650433, 59.856092]\n            ],\n            [\n              [17.650379, 59.856084],\n              [17.650379, 59.856084],\n              [17.650379, 59.856084],\n              [17.650379, 59.856084]\n            ],\n            [\n              [17.65044, 59.856095],\n              [17.650441, 59.856095],\n              [17.650424, 59.856105],\n              [17.650418, 59.856102],\n              [17.650434, 59.856093],\n              [17.65044, 59.856095]\n            ],\n            [\n              [17.650424, 59.856105],\n              [17.650424, 59.856105],\n              [17.650426, 59.856104],\n              [17.650424, 59.856105]\n            ],\n            [\n              [17.650453, 59.856121],\n              [17.650453, 59.856121],\n              [17.650454, 59.856121],\n              [17.650453, 59.856121]\n            ],\n            [\n              [17.650467, 59.856031],\n              [17.650468, 59.856031],\n              [17.650468, 59.856031],\n              [17.650467, 59.856031],\n              [17.650467, 59.856031]\n            ],\n            [\n              [17.650472, 59.856126],\n              [17.650463, 59.856122],\n              [17.650463, 59.856122],\n              [17.650472, 59.856126],\n              [17.650472, 59.856126],\n              [17.650463, 59.856122],\n              [17.650463, 59.856122],\n              [17.650472, 59.856126],\n              [17.650472, 59.856126]\n            ],\n            [\n              [17.650525, 59.856117],\n              [17.650519, 59.856115],\n              [17.650519, 59.856115],\n              [17.65052, 59.856115],\n              [17.650525, 59.856117]\n            ],\n            [\n              [17.650468, 59.856128],\n              [17.650468, 59.856128],\n              [17.650468, 59.856128],\n              [17.650468, 59.856128]\n            ],\n            [\n              [17.650546, 59.855985],\n              [17.650546, 59.855985],\n              [17.650546, 59.855985],\n              [17.650546, 59.855985]\n            ],\n            [\n              [17.650548, 59.856058],\n              [17.650609, 59.856024],\n              [17.650479, 59.856096],\n              [17.65054, 59.856062],\n              [17.65054, 59.856062],\n              [17.650548, 59.856058]\n            ],\n            [\n              [17.650547, 59.85616],\n              [17.650547, 59.85616],\n              [17.650544, 59.856159],\n              [17.650544, 59.856159],\n              [17.650544, 59.856159],\n              [17.650544, 59.856159],\n              [17.650547, 59.85616]\n            ],\n            [\n              [17.650567, 59.855976],\n              [17.650568, 59.855976],\n              [17.650568, 59.855976],\n              [17.650567, 59.855976]\n            ],\n            [\n              [17.650566, 59.855978],\n              [17.650566, 59.855978],\n              [17.650565, 59.855977],\n              [17.650566, 59.855978]\n            ],\n            [\n              [17.650588, 59.855987],\n              [17.650585, 59.855988],\n              [17.650588, 59.855987],\n              [17.650588, 59.855987]\n            ],\n            [\n              [17.650541, 59.856115],\n              [17.650534, 59.856118],\n              [17.650541, 59.856115],\n              [17.650541, 59.856115]\n            ],\n            [\n              [17.650547, 59.856111],\n              [17.650546, 59.856112],\n              [17.650546, 59.856112],\n              [17.650548, 59.856111],\n              [17.650558, 59.856105],\n              [17.650558, 59.856105],\n              [17.650548, 59.85611],\n              [17.650548, 59.85611],\n              [17.650547, 59.856111]\n            ],\n            [\n              [17.65063, 59.855991],\n              [17.650633, 59.855992],\n              [17.650643, 59.855997],\n              [17.65063, 59.855991]\n            ],\n            [\n              [17.65061, 59.855953],\n              [17.650611, 59.855952],\n              [17.65062, 59.855947],\n              [17.65062, 59.855947],\n              [17.65063, 59.855941],\n              [17.65063, 59.855941],\n              [17.6506, 59.855958],\n              [17.6506, 59.855958],\n              [17.650601, 59.855958],\n              [17.65061, 59.855953]\n            ],\n            [\n              [17.650653, 59.855929],\n              [17.650653, 59.855929],\n              [17.650663, 59.855923],\n              [17.650663, 59.855923],\n              [17.650633, 59.85594],\n              [17.650633, 59.85594],\n              [17.650636, 59.855939],\n              [17.650638, 59.855937],\n              [17.650653, 59.855929]\n            ],\n            [\n              [17.650644, 59.855998],\n              [17.650648, 59.855995],\n              [17.650652, 59.855997],\n              [17.65065, 59.855998],\n              [17.650649, 59.855999],\n              [17.650642, 59.856003],\n              [17.650637, 59.856007],\n              [17.650635, 59.856008],\n              [17.650631, 59.856006],\n              [17.650638, 59.856002],\n              [17.650644, 59.855998]\n            ],\n            [\n              [17.650665, 59.855922],\n              [17.650663, 59.855923],\n              [17.650663, 59.855923],\n              [17.650665, 59.855922],\n              [17.650665, 59.855922]\n            ],\n            [\n              [17.650672, 59.855914],\n              [17.650672, 59.855914],\n              [17.650672, 59.855914],\n              [17.650672, 59.855914]\n            ],\n            [\n              [17.650648, 59.856046],\n              [17.650655, 59.856049],\n              [17.650654, 59.85605],\n              [17.65062, 59.856034],\n              [17.650621, 59.856034],\n              [17.650637, 59.856041],\n              [17.650648, 59.856046]\n            ],\n            [\n              [17.650618, 59.856157],\n              [17.650618, 59.856157],\n              [17.650615, 59.856159],\n              [17.650615, 59.856159],\n              [17.650618, 59.856157]\n            ],\n            [\n              [17.650841, 59.856034],\n              [17.650841, 59.856034],\n              [17.650841, 59.856034],\n              [17.650841, 59.856034],\n              [17.650841, 59.856034]\n            ],\n            [\n              [17.650841, 59.856034],\n              [17.650841, 59.856034],\n              [17.650841, 59.856034],\n              [17.650841, 59.856034]\n            ],\n            [\n              [17.650841, 59.856034],\n              [17.650841, 59.856034],\n              [17.650841, 59.856034],\n              [17.650841, 59.856034]\n            ],\n            [\n              [17.650841, 59.856034],\n              [17.650841, 59.856034],\n              [17.650841, 59.856034],\n              [17.650841, 59.856034],\n              [17.650841, 59.856034]\n            ],\n            [\n              [17.650841, 59.856034],\n              [17.650841, 59.856034],\n              [17.650841, 59.856034],\n              [17.650841, 59.856034]\n            ],\n            [\n              [17.650841, 59.856034],\n              [17.650841, 59.856034],\n              [17.650841, 59.856034],\n              [17.650841, 59.856034]\n            ],\n            [\n              [17.650841, 59.856034],\n              [17.650841, 59.856034],\n              [17.650841, 59.856034],\n              [17.650841, 59.856034]\n            ],\n            [\n              [17.650806, 59.856053],\n              [17.650806, 59.856053],\n              [17.650805, 59.856053],\n              [17.650805, 59.856053],\n              [17.650807, 59.856052],\n              [17.650807, 59.856052],\n              [17.650805, 59.856053],\n              [17.650806, 59.856053]\n            ],\n            [\n              [17.650807, 59.856052],\n              [17.650807, 59.856052],\n              [17.650807, 59.856052],\n              [17.650807, 59.856052]\n            ],\n            [\n              [17.650827, 59.85603],\n              [17.650835, 59.856033],\n              [17.650836, 59.856033],\n              [17.650839, 59.856034],\n              [17.650837, 59.856035],\n              [17.650837, 59.856035],\n              [17.650838, 59.856034],\n              [17.650827, 59.85603]\n            ],\n            [\n              [17.650801, 59.856017],\n              [17.650733, 59.855987],\n              [17.650733, 59.855987],\n              [17.650801, 59.856017],\n              [17.650801, 59.856017],\n              [17.650803, 59.856018],\n              [17.650802, 59.856018],\n              [17.6508, 59.856018],\n              [17.650801, 59.856017]\n            ],\n            [\n              [17.650867, 59.856015],\n              [17.650867, 59.856015],\n              [17.650867, 59.856015],\n              [17.65087, 59.856017],\n              [17.650872, 59.856015],\n              [17.650872, 59.856015],\n              [17.650872, 59.856015],\n              [17.650872, 59.856015],\n              [17.65087, 59.856017],\n              [17.65087, 59.856017],\n              [17.650869, 59.856017],\n              [17.650869, 59.856017],\n              [17.650869, 59.856017],\n              [17.650869, 59.856017],\n              [17.650869, 59.856017],\n              [17.650847, 59.856007],\n              [17.650847, 59.856007],\n              [17.650867, 59.856015]\n            ],\n            [\n              [17.650809, 59.855965],\n              [17.650815, 59.855968],\n              [17.650809, 59.855965],\n              [17.650809, 59.855965],\n              [17.650809, 59.855965]\n            ],\n            [\n              [17.650896, 59.855915],\n              [17.650916, 59.855904],\n              [17.650918, 59.855905],\n              [17.650918, 59.855905],\n              [17.650918, 59.855905],\n              [17.650918, 59.855905],\n              [17.650918, 59.855905],\n              [17.650918, 59.855905],\n              [17.650918, 59.855905],\n              [17.650916, 59.855904],\n              [17.650896, 59.855916],\n              [17.650896, 59.855916],\n              [17.650896, 59.855915]\n            ],\n            [\n              [17.65086, 59.8559],\n              [17.650861, 59.8559],\n              [17.650879, 59.85589],\n              [17.650877, 59.855889],\n              [17.650876, 59.855889],\n              [17.650877, 59.855889],\n              [17.650877, 59.855889],\n              [17.650878, 59.855888],\n              [17.650879, 59.855888],\n              [17.650879, 59.855888],\n              [17.650879, 59.855888],\n              [17.650879, 59.855888],\n              [17.650879, 59.855888],\n              [17.650879, 59.855888],\n              [17.650879, 59.855888],\n              [17.650879, 59.855888],\n              [17.650879, 59.855888],\n              [17.650881, 59.855889],\n              [17.650861, 59.8559],\n              [17.650861, 59.8559],\n              [17.650861, 59.8559],\n              [17.650861, 59.8559],\n              [17.650861, 59.8559],\n              [17.650861, 59.8559],\n              [17.65086, 59.8559],\n              [17.65086, 59.8559]\n            ],\n            [\n              [17.650848, 59.855906],\n              [17.650848, 59.855907],\n              [17.650857, 59.855902],\n              [17.650857, 59.855902],\n              [17.650848, 59.855907],\n              [17.650848, 59.855906]\n            ],\n            [\n              [17.650844, 59.855909],\n              [17.650844, 59.855909],\n              [17.650845, 59.855908],\n              [17.650846, 59.855908],\n              [17.650846, 59.855908],\n              [17.650845, 59.855908],\n              [17.65083, 59.855916],\n              [17.650831, 59.855915],\n              [17.650822, 59.855911],\n              [17.650837, 59.855903],\n              [17.650845, 59.855907],\n              [17.650844, 59.855907],\n              [17.650846, 59.855908],\n              [17.650842, 59.85591],\n              [17.650844, 59.855909]\n            ],\n            [\n              [17.650817, 59.85591],\n              [17.650819, 59.855911],\n              [17.65082, 59.855911],\n              [17.65083, 59.855916],\n              [17.650817, 59.85591]\n            ],\n            [\n              [17.650811, 59.855891],\n              [17.650811, 59.855891],\n              [17.65081, 59.855892],\n              [17.650813, 59.855891],\n              [17.65081, 59.85589],\n              [17.650812, 59.85589],\n              [17.650812, 59.85589],\n              [17.650813, 59.855891],\n              [17.650812, 59.855891],\n              [17.650846, 59.855906],\n              [17.650845, 59.855907],\n              [17.650811, 59.855891],\n              [17.650811, 59.855891]\n            ],\n            [\n              [17.650846, 59.855906],\n              [17.650847, 59.855906],\n              [17.650846, 59.855906],\n              [17.650846, 59.855906],\n              [17.650846, 59.855906]\n            ],\n            [\n              [17.650813, 59.855891],\n              [17.650813, 59.855891],\n              [17.650813, 59.855891],\n              [17.650847, 59.855906],\n              [17.650846, 59.855906],\n              [17.650813, 59.855891]\n            ],\n            [\n              [17.650845, 59.855873],\n              [17.650845, 59.855873],\n              [17.650843, 59.855874],\n              [17.65084, 59.855873],\n              [17.650842, 59.855871],\n              [17.650842, 59.855871],\n              [17.650844, 59.855871],\n              [17.650843, 59.855871],\n              [17.650845, 59.855872],\n              [17.650845, 59.855872],\n              [17.650845, 59.855873],\n              [17.650845, 59.855873]\n            ],\n            [\n              [17.65074, 59.856089],\n              [17.65074, 59.856089],\n              [17.65074, 59.856089],\n              [17.65074, 59.856089],\n              [17.65074, 59.856089]\n            ],\n            [\n              [17.650741, 59.856088],\n              [17.650741, 59.856088],\n              [17.650741, 59.856088],\n              [17.65074, 59.856089],\n              [17.65074, 59.856089],\n              [17.650741, 59.856088],\n              [17.650741, 59.856088]\n            ],\n            [\n              [17.650739, 59.856087],\n              [17.650741, 59.856088],\n              [17.65074, 59.856088],\n              [17.65074, 59.856088],\n              [17.65074, 59.856089],\n              [17.650738, 59.856088],\n              [17.650739, 59.856087]\n            ],\n            [\n              [17.650715, 59.856077],\n              [17.650714, 59.856077],\n              [17.650731, 59.856085],\n              [17.650715, 59.856077],\n              [17.650714, 59.856077],\n              [17.650715, 59.856077],\n              [17.650715, 59.856077]\n            ],\n            [\n              [17.650756, 59.856054],\n              [17.650747, 59.856059],\n              [17.650745, 59.85606],\n              [17.650739, 59.856063],\n              [17.650739, 59.856063],\n              [17.650756, 59.856054],\n              [17.650756, 59.856054],\n              [17.650756, 59.856054]\n            ],\n            [\n              [17.650774, 59.856044],\n              [17.650774, 59.856044],\n              [17.650779, 59.856041],\n              [17.650779, 59.856041],\n              [17.650774, 59.856044]\n            ],\n            [\n              [17.65077, 59.856036],\n              [17.650769, 59.856036],\n              [17.65077, 59.856037],\n              [17.65077, 59.856037],\n              [17.650771, 59.856037],\n              [17.650773, 59.856038],\n              [17.650768, 59.856036],\n              [17.650769, 59.856035],\n              [17.65077, 59.856036]\n            ],\n            [\n              [17.650841, 59.855911],\n              [17.650827, 59.855919],\n              [17.650841, 59.855911],\n              [17.650841, 59.855911]\n            ],\n            [\n              [17.650814, 59.855909],\n              [17.650806, 59.855905],\n              [17.650814, 59.855909],\n              [17.650814, 59.855909]\n            ],\n            [\n              [17.650784, 59.855906],\n              [17.650784, 59.855906],\n              [17.650784, 59.855906],\n              [17.650794, 59.85591],\n              [17.650784, 59.855906],\n              [17.650784, 59.855906]\n            ],\n            [\n              [17.6508, 59.855913],\n              [17.6508, 59.855913],\n              [17.65081, 59.855917],\n              [17.65081, 59.855917],\n              [17.6508, 59.855913]\n            ],\n            [\n              [17.650783, 59.855943],\n              [17.650784, 59.855943],\n              [17.650808, 59.855929],\n              [17.650773, 59.855949],\n              [17.650779, 59.855946],\n              [17.650781, 59.855944],\n              [17.650781, 59.855944],\n              [17.65078, 59.855945],\n              [17.650784, 59.855942],\n              [17.650768, 59.855935],\n              [17.650791, 59.855923],\n              [17.650791, 59.855923],\n              [17.650799, 59.855919],\n              [17.65079, 59.855915],\n              [17.650759, 59.855932],\n              [17.650757, 59.855931],\n              [17.650756, 59.855932],\n              [17.650746, 59.855928],\n              [17.650748, 59.855927],\n              [17.650748, 59.855927],\n              [17.650762, 59.855919],\n              [17.650772, 59.855923],\n              [17.650773, 59.855923],\n              [17.650789, 59.855914],\n              [17.650777, 59.855909],\n              [17.650784, 59.855905],\n              [17.650786, 59.855905],\n              [17.650793, 59.855901],\n              [17.650792, 59.8559],\n              [17.650785, 59.855904],\n              [17.650794, 59.855899],\n              [17.650794, 59.855899],\n              [17.650794, 59.855899],\n              [17.650794, 59.855899],\n              [17.650808, 59.855891],\n              [17.650807, 59.855891],\n              [17.650792, 59.855884],\n              [17.650809, 59.855892],\n              [17.65081, 59.855892],\n              [17.650809, 59.855892],\n              [17.650796, 59.855899],\n              [17.650795, 59.8559],\n              [17.650795, 59.8559],\n              [17.650784, 59.855906],\n              [17.650784, 59.855906],\n              [17.650784, 59.855906],\n              [17.650784, 59.855906],\n              [17.650784, 59.855906],\n              [17.650784, 59.855906],\n              [17.65078, 59.855908],\n              [17.65078, 59.855908],\n              [17.650784, 59.855906],\n              [17.650798, 59.855913],\n              [17.6508, 59.855913],\n              [17.650809, 59.855918],\n              [17.65081, 59.855918],\n              [17.650819, 59.855922],\n              [17.650814, 59.855924],\n              [17.650815, 59.855925],\n              [17.650816, 59.855925],\n              [17.650813, 59.855926],\n              [17.650813, 59.855926],\n              [17.650783, 59.855943]\n            ],\n            [\n              [17.650763, 59.855918],\n              [17.650762, 59.855918],\n              [17.650773, 59.855923],\n              [17.650763, 59.855918]\n            ],\n            [\n              [17.650747, 59.855926],\n              [17.650747, 59.855926],\n              [17.650762, 59.855918],\n              [17.650747, 59.855926]\n            ],\n            [\n              [17.650796, 59.8559],\n              [17.650796, 59.8559],\n              [17.650796, 59.855899],\n              [17.650796, 59.8559]\n            ],\n            [\n              [17.650821, 59.855922],\n              [17.650821, 59.855922],\n              [17.650815, 59.855925],\n              [17.650821, 59.855922]\n            ],\n            [\n              [17.650771, 59.85595],\n              [17.650769, 59.855951],\n              [17.650771, 59.85595],\n              [17.650771, 59.85595]\n            ],\n            [\n              [17.650771, 59.85595],\n              [17.650771, 59.85595],\n              [17.650771, 59.85595],\n              [17.650769, 59.855951],\n              [17.650769, 59.855951],\n              [17.650771, 59.85595]\n            ],\n            [\n              [17.650752, 59.855943],\n              [17.650741, 59.855949],\n              [17.650741, 59.855949],\n              [17.650743, 59.855948],\n              [17.650752, 59.855943]\n            ],\n            [\n              [17.650709, 59.855965],\n              [17.650709, 59.855965],\n              [17.650708, 59.855965],\n              [17.650709, 59.855965]\n            ],\n            [\n              [17.650724, 59.855982],\n              [17.650733, 59.855986],\n              [17.650733, 59.855986],\n              [17.650724, 59.855982]\n            ],\n            [\n              [17.650733, 59.855952],\n              [17.650737, 59.85595],\n              [17.650737, 59.85595],\n              [17.650724, 59.855957],\n              [17.650726, 59.855956],\n              [17.650732, 59.855953],\n              [17.650733, 59.855952]\n            ],\n            [\n              [17.650762, 59.855901],\n              [17.650761, 59.855902],\n              [17.650761, 59.855902],\n              [17.650729, 59.85592],\n              [17.650729, 59.85592],\n              [17.650778, 59.855892],\n              [17.650782, 59.855894],\n              [17.650788, 59.855897],\n              [17.650789, 59.855897],\n              [17.650778, 59.855892],\n              [17.650762, 59.855901],\n              [17.650762, 59.855901]\n            ],\n            [\n              [17.650795, 59.855852],\n              [17.650824, 59.855865],\n              [17.650821, 59.855866],\n              [17.650819, 59.855868],\n              [17.650819, 59.855868],\n              [17.650814, 59.85587],\n              [17.650793, 59.855882],\n              [17.650777, 59.855891],\n              [17.650729, 59.855918],\n              [17.6507, 59.855905],\n              [17.650795, 59.855852]\n            ],\n            [\n              [17.650795, 59.855852],\n              [17.650795, 59.855852],\n              [17.650795, 59.855852],\n              [17.650795, 59.855852]\n            ],\n            [\n              [17.650795, 59.855852],\n              [17.6507, 59.855905],\n              [17.650698, 59.855904],\n              [17.650708, 59.855898],\n              [17.650716, 59.855894],\n              [17.650716, 59.855894],\n              [17.650728, 59.855887],\n              [17.65073, 59.855888],\n              [17.65073, 59.855888],\n              [17.650732, 59.855887],\n              [17.650732, 59.855887],\n              [17.65073, 59.855886],\n              [17.650732, 59.855885],\n              [17.650736, 59.855882],\n              [17.650752, 59.855874],\n              [17.650754, 59.855873],\n              [17.650755, 59.855872],\n              [17.650756, 59.855871],\n              [17.650756, 59.855871],\n              [17.650761, 59.855869],\n              [17.650762, 59.85587],\n              [17.650762, 59.85587],\n              [17.650761, 59.855869],\n              [17.650762, 59.855868],\n              [17.650764, 59.855869],\n              [17.650764, 59.855869],\n              [17.650762, 59.855868],\n              [17.650763, 59.855867],\n              [17.650763, 59.855867],\n              [17.650763, 59.855868],\n              [17.65077, 59.855864],\n              [17.650776, 59.85586],\n              [17.650777, 59.85586],\n              [17.650777, 59.85586],\n              [17.65078, 59.855858],\n              [17.650788, 59.855854],\n              [17.650793, 59.855851],\n              [17.650795, 59.855852],\n              [17.650795, 59.855852],\n              [17.650796, 59.855851],\n              [17.650825, 59.855864],\n              [17.650824, 59.855865],\n              [17.650795, 59.855852],\n              [17.650795, 59.855852]\n            ],\n            [\n              [17.65073, 59.855888],\n              [17.650728, 59.855887],\n              [17.65073, 59.855886],\n              [17.650732, 59.855887],\n              [17.65073, 59.855888],\n              [17.65073, 59.855888]\n            ],\n            [\n              [17.650795, 59.855852],\n              [17.650793, 59.855851],\n              [17.650794, 59.85585],\n              [17.650794, 59.85585],\n              [17.650796, 59.855851],\n              [17.650796, 59.855851],\n              [17.650795, 59.855852],\n              [17.650795, 59.855852]\n            ],\n            [\n              [17.650681, 59.855909],\n              [17.650681, 59.855909],\n              [17.650681, 59.855909],\n              [17.650681, 59.855909]\n            ],\n            [\n              [17.650726, 59.855919],\n              [17.650727, 59.85592],\n              [17.650704, 59.855909],\n              [17.650726, 59.855919]\n            ],\n            [\n              [17.650697, 59.855904],\n              [17.650697, 59.855904],\n              [17.650699, 59.855905],\n              [17.650698, 59.855906],\n              [17.650696, 59.855905],\n              [17.650697, 59.855904],\n              [17.650697, 59.855904]\n            ],\n            [\n              [17.650745, 59.85594],\n              [17.650744, 59.855939],\n              [17.650745, 59.855939],\n              [17.650745, 59.855938],\n              [17.650747, 59.855939],\n              [17.650745, 59.85594]\n            ],\n            [\n              [17.650714, 59.855925],\n              [17.650744, 59.855939],\n              [17.650745, 59.855939],\n              [17.650714, 59.855925]\n            ],\n            [\n              [17.650745, 59.855938],\n              [17.650745, 59.855938],\n              [17.650744, 59.855939],\n              [17.650745, 59.855938]\n            ],\n            [\n              [17.650728, 59.85592],\n              [17.650728, 59.85592],\n              [17.650728, 59.85592],\n              [17.650728, 59.85592],\n              [17.650728, 59.85592]\n            ],\n            [\n              [17.650755, 59.855933],\n              [17.650756, 59.855932],\n              [17.650757, 59.855933],\n              [17.650755, 59.855934],\n              [17.650754, 59.855934],\n              [17.650753, 59.855934],\n              [17.650755, 59.855933]\n            ],\n            [\n              [17.650745, 59.855928],\n              [17.650746, 59.855928],\n              [17.650745, 59.855928],\n              [17.650745, 59.855928]\n            ],\n            [\n              [17.650755, 59.856055],\n              [17.650756, 59.856054],\n              [17.650756, 59.856054],\n              [17.650756, 59.856054],\n              [17.650755, 59.856055]\n            ],\n            [\n              [17.65078, 59.856041],\n              [17.65078, 59.856041],\n              [17.65078, 59.856041],\n              [17.65078, 59.856041]\n            ],\n            [\n              [17.65078, 59.856041],\n              [17.65078, 59.856041],\n              [17.650781, 59.856041],\n              [17.65078, 59.856041]\n            ],\n            [\n              [17.650771, 59.856036],\n              [17.650781, 59.856041],\n              [17.650781, 59.856041],\n              [17.650781, 59.856041],\n              [17.650771, 59.856036]\n            ],\n            [\n              [17.65074, 59.856064],\n              [17.650743, 59.856062],\n              [17.65074, 59.856064],\n              [17.65074, 59.856064]\n            ],\n            [\n              [17.650826, 59.855865],\n              [17.650826, 59.855865],\n              [17.650826, 59.855865],\n              [17.650826, 59.855865]\n            ],\n            [\n              [17.650796, 59.855883],\n              [17.650796, 59.855883],\n              [17.650795, 59.855883],\n              [17.650818, 59.85587],\n              [17.650796, 59.855883]\n            ],\n            [\n              [17.650795, 59.855883],\n              [17.650794, 59.855883],\n              [17.650795, 59.855883],\n              [17.650795, 59.855883]\n            ],\n            [\n              [17.650793, 59.855899],\n              [17.650794, 59.855899],\n              [17.650793, 59.855899],\n              [17.650793, 59.855899],\n              [17.650793, 59.855899]\n            ],\n            [\n              [17.650827, 59.855863],\n              [17.650829, 59.855862],\n              [17.650829, 59.855862],\n              [17.650827, 59.855863],\n              [17.650827, 59.855863]\n            ],\n            [\n              [17.650812, 59.855907],\n              [17.650825, 59.855899],\n              [17.650824, 59.855899],\n              [17.650813, 59.855894],\n              [17.650825, 59.855899],\n              [17.650812, 59.855907]\n            ],\n            [\n              [17.650835, 59.855903],\n              [17.650835, 59.855903],\n              [17.650836, 59.855903],\n              [17.650836, 59.855903],\n              [17.650829, 59.855907],\n              [17.650835, 59.855903]\n            ],\n            [\n              [17.650827, 59.855919],\n              [17.65083, 59.855917],\n              [17.650827, 59.855919],\n              [17.650827, 59.855919]\n            ],\n            [\n              [17.650897, 59.855963],\n              [17.650897, 59.855963],\n              [17.650896, 59.855963],\n              [17.650896, 59.855963],\n              [17.650897, 59.855963],\n              [17.650897, 59.855963]\n            ],\n            [\n              [17.650899, 59.855962],\n              [17.650899, 59.855962],\n              [17.650899, 59.855962],\n              [17.650899, 59.855962],\n              [17.650899, 59.855962]\n            ],\n            [\n              [17.650899, 59.855962],\n              [17.650899, 59.855962],\n              [17.650899, 59.855962],\n              [17.650899, 59.855962]\n            ],\n            [\n              [17.650899, 59.855962],\n              [17.650899, 59.855962],\n              [17.650899, 59.855962],\n              [17.650899, 59.855962]\n            ],\n            [\n              [17.650864, 59.855982],\n              [17.650864, 59.855982],\n              [17.650864, 59.855982],\n              [17.650864, 59.855981],\n              [17.650864, 59.855981],\n              [17.650864, 59.855982]\n            ],\n            [\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018]\n            ],\n            [\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018]\n            ],\n            [\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018]\n            ],\n            [\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018]\n            ],\n            [\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018]\n            ],\n            [\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018],\n              [17.650872, 59.856018]\n            ],\n            [\n              [17.650871, 59.856017],\n              [17.650871, 59.856017],\n              [17.650871, 59.856017],\n              [17.650871, 59.856017]\n            ],\n            [\n              [17.650871, 59.856017],\n              [17.650871, 59.856017],\n              [17.650871, 59.856017],\n              [17.650871, 59.856017]\n            ],\n            [\n              [17.650871, 59.856017],\n              [17.650871, 59.856017],\n              [17.650871, 59.856017],\n              [17.650871, 59.856017]\n            ],\n            [\n              [17.650871, 59.856017],\n              [17.650871, 59.856017],\n              [17.650871, 59.856017],\n              [17.650871, 59.856017]\n            ],\n            [\n              [17.650871, 59.856017],\n              [17.650871, 59.856017],\n              [17.650871, 59.856017],\n              [17.650871, 59.856017],\n              [17.650871, 59.856017]\n            ],\n            [\n              [17.65087, 59.856017],\n              [17.65087, 59.856017],\n              [17.65087, 59.856017],\n              [17.65087, 59.856017]\n            ],\n            [\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035]\n            ],\n            [\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035]\n            ],\n            [\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035]\n            ],\n            [\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035]\n            ],\n            [\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035]\n            ],\n            [\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035]\n            ],\n            [\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035]\n            ],\n            [\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035]\n            ],\n            [\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035]\n            ],\n            [\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650842, 59.856035]\n            ],\n            [\n              [17.650842, 59.856035],\n              [17.650842, 59.856035],\n              [17.650841, 59.856035],\n              [17.650841, 59.856035],\n              [17.650841, 59.856035],\n              [17.650842, 59.856035]\n            ],\n            [\n              [17.6509, 59.855895],\n              [17.6509, 59.855895],\n              [17.6509, 59.855895],\n              [17.6509, 59.855895],\n              [17.6509, 59.855895]\n            ],\n            [\n              [17.650917, 59.855903],\n              [17.650917, 59.855902],\n              [17.650917, 59.855902],\n              [17.650917, 59.855903],\n              [17.650917, 59.855903]\n            ],\n            [\n              [17.650903, 59.855999],\n              [17.650903, 59.855999],\n              [17.650903, 59.855999],\n              [17.650903, 59.855999],\n              [17.650903, 59.855999],\n              [17.650903, 59.855999],\n              [17.650903, 59.855999]\n            ],\n            [\n              [17.650904, 59.855997],\n              [17.650902, 59.855999],\n              [17.650902, 59.855999],\n              [17.650904, 59.855997],\n              [17.650904, 59.855997],\n              [17.650904, 59.855997]\n            ],\n            [\n              [17.650873, 59.856016],\n              [17.650873, 59.856016],\n              [17.650873, 59.856016],\n              [17.650873, 59.856016],\n              [17.650873, 59.856016]\n            ],\n            [\n              [17.650999, 59.855942],\n              [17.651002, 59.855943],\n              [17.651003, 59.855943],\n              [17.651003, 59.855943],\n              [17.650999, 59.855944],\n              [17.650999, 59.855944],\n              [17.650999, 59.855944],\n              [17.650999, 59.855944],\n              [17.651002, 59.855943],\n              [17.650999, 59.855942],\n              [17.650999, 59.855942],\n              [17.650999, 59.855942],\n              [17.651, 59.855941],\n              [17.651, 59.855941],\n              [17.650999, 59.855942]\n            ],\n            [\n              [17.650966, 59.855927],\n              [17.650963, 59.855926],\n              [17.650963, 59.855926],\n              [17.650963, 59.855926],\n              [17.650963, 59.855926],\n              [17.650966, 59.855927],\n              [17.650966, 59.855927]\n            ],\n            [\n              [17.650967, 59.855926],\n              [17.650967, 59.855926],\n              [17.650967, 59.855926],\n              [17.650967, 59.855926],\n              [17.650967, 59.855926],\n              [17.650967, 59.855926],\n              [17.650967, 59.855926],\n              [17.650967, 59.855926],\n              [17.650967, 59.855926]\n            ],\n            [\n              [17.650968, 59.855926],\n              [17.650968, 59.855926],\n              [17.650968, 59.855926],\n              [17.650968, 59.855926],\n              [17.650968, 59.855926],\n              [17.650968, 59.855926],\n              [17.650968, 59.855926],\n              [17.650968, 59.855926]\n            ],\n            [\n              [17.650907, 59.855958],\n              [17.650929, 59.855945],\n              [17.650906, 59.855958],\n              [17.650907, 59.855958]\n            ],\n            [\n              [17.650906, 59.855958],\n              [17.650906, 59.855958],\n              [17.650906, 59.855958],\n              [17.650906, 59.855958],\n              [17.650906, 59.855958]\n            ],\n            [\n              [17.650967, 59.855962],\n              [17.650967, 59.855962],\n              [17.650969, 59.855961],\n              [17.650969, 59.855961],\n              [17.650967, 59.855962]\n            ],\n            [\n              [17.65097, 59.855962],\n              [17.65097, 59.855962],\n              [17.65097, 59.855962],\n              [17.65097, 59.855962],\n              [17.650971, 59.855962],\n              [17.650971, 59.855962],\n              [17.65097, 59.855962]\n            ],\n            [\n              [17.651, 59.855945],\n              [17.651, 59.855945],\n              [17.651001, 59.855945],\n              [17.651001, 59.855945],\n              [17.651, 59.855945]\n            ],\n            [\n              [17.650934, 59.855981],\n              [17.650934, 59.855981],\n              [17.650937, 59.855979],\n              [17.650937, 59.855979],\n              [17.650934, 59.855981]\n            ],\n            [\n              [17.650938, 59.85598],\n              [17.650938, 59.85598],\n              [17.650938, 59.85598],\n              [17.650938, 59.85598],\n              [17.650938, 59.85598],\n              [17.650938, 59.85598]\n            ],\n            [\n              [17.650968, 59.855963],\n              [17.650968, 59.855963],\n              [17.650968, 59.855963],\n              [17.650968, 59.855963],\n              [17.650968, 59.855963]\n            ],\n            [\n              [17.650937, 59.855979],\n              [17.650937, 59.855979],\n              [17.650937, 59.855979],\n              [17.650937, 59.855979]\n            ],\n            [\n              [17.650936, 59.855981],\n              [17.650936, 59.855981],\n              [17.650936, 59.855981],\n              [17.650935, 59.855981],\n              [17.650936, 59.855981]\n            ],\n            [\n              [17.650906, 59.855998],\n              [17.650905, 59.855998],\n              [17.650905, 59.855998],\n              [17.650905, 59.855998],\n              [17.650906, 59.855998],\n              [17.650906, 59.855998]\n            ]\n          ],\n          [\n            [\n              [17.650458, 59.856086],\n              [17.650413, 59.856065],\n              [17.650412, 59.856066],\n              [17.650457, 59.856086],\n              [17.650458, 59.856086]\n            ]\n          ],\n          [\n            [\n              [17.650622, 59.856069],\n              [17.650592, 59.856086],\n              [17.650592, 59.856086],\n              [17.650622, 59.856069],\n              [17.650622, 59.856069]\n            ]\n          ],\n          [\n            [\n              [17.650713, 59.855945],\n              [17.650698, 59.855954],\n              [17.650713, 59.855961],\n              [17.650729, 59.855953],\n              [17.650713, 59.855945]\n            ]\n          ],\n          [\n            [\n              [17.650764, 59.855869],\n              [17.650764, 59.855869],\n              [17.650762, 59.85587],\n              [17.650763, 59.85587],\n              [17.650764, 59.855869]\n            ]\n          ],\n          [\n            [\n              [17.650799, 59.855913],\n              [17.650795, 59.855916],\n              [17.650795, 59.855916],\n              [17.6508, 59.855914],\n              [17.650799, 59.855913]\n            ]\n          ],\n          [\n            [\n              [17.650809, 59.855918],\n              [17.650804, 59.85592],\n              [17.650805, 59.85592],\n              [17.65081, 59.855918],\n              [17.650809, 59.855918]\n            ]\n          ],\n          [\n            [\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022],\n              [17.650867, 59.856022]\n            ],\n            [\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022],\n              [17.650868, 59.856022]\n            ]\n          ],\n          [\n            [\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025],\n              [17.650862, 59.856025]\n            ],\n            [\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025],\n              [17.650863, 59.856025]\n            ]\n          ],\n          [\n            [\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028]\n            ],\n            [\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028],\n              [17.650857, 59.856028]\n            ]\n          ],\n          [\n            [\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019]\n            ],\n            [\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019],\n              [17.650873, 59.856019]\n            ]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-union/test/in/union1.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.88571166992188, 32.887659962078956],\n            [-80.09788513183594, 32.927436533285565],\n            [-80.15350341796875, 32.82825010814964],\n            [-80.00312805175781, 32.69428812316933],\n            [-79.89395141601562, 32.75551989829049],\n            [-79.88571166992188, 32.887659962078956]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.92141723632812, 32.953944317478246],\n            [-79.97428894042969, 32.83690450361482],\n            [-79.97360229492188, 32.76071688548088],\n            [-79.93034362792969, 32.76475877693074],\n            [-79.93789672851562, 32.74108223150125],\n            [-79.80537414550781, 32.7231762754146],\n            [-79.81773376464844, 32.923402043498875],\n            [-79.92141723632812, 32.953944317478246]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-union/test/in/union2.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.92141723632812, 32.953944317478246],\n            [-79.97428894042969, 32.83690450361482],\n            [-79.97360229492188, 32.76071688548088],\n            [-79.93034362792969, 32.76475877693074],\n            [-79.93789672851562, 32.74108223150125],\n            [-79.80537414550781, 32.7231762754146],\n            [-79.81773376464844, 32.923402043498875],\n            [-79.92141723632812, 32.953944317478246]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-80.10543823242188, 32.94760622243483],\n            [-80.14389038085938, 32.8149783969858],\n            [-80.07453918457031, 32.85536439443039],\n            [-79.99351501464844, 32.84440429734253],\n            [-79.98184204101562, 32.90495631913751],\n            [-80.10543823242188, 32.94760622243483]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.9200439453125, 32.9372338139709],\n            [-80.03128051757812, 32.936657533381286],\n            [-79.99008178710938, 32.77226465992344],\n            [-79.90219116210938, 32.8432505241666],\n            [-79.96604919433594, 32.87497382061986],\n            [-79.9200439453125, 32.9372338139709]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.95025634765625, 32.97007559940924],\n            [-80.00175476074217, 32.732418508353746],\n            [-79.84725952148438, 32.753210028851896],\n            [-79.82048034667969, 32.848442385344136],\n            [-79.85481262207031, 32.923402043498875],\n            [-79.95025634765625, 32.97007559940924]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-union/test/in/union3.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.88571166992188, 32.887659962078956],\n            [-80.09788513183594, 32.927436533285565],\n            [-80.15350341796875, 32.82825010814964],\n            [-80.00312805175781, 32.69428812316933],\n            [-79.89395141601562, 32.75551989829049],\n            [-79.88571166992188, 32.887659962078956]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.92141723632812, 32.953944317478246],\n            [-79.97428894042969, 32.83690450361482],\n            [-79.97360229492188, 32.76071688548088],\n            [-79.93034362792969, 32.76475877693074],\n            [-79.93789672851562, 32.74108223150125],\n            [-79.80537414550781, 32.7231762754146],\n            [-79.81773376464844, 32.923402043498875],\n            [-79.92141723632812, 32.953944317478246]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-79.85618591308594, 32.85997876713845],\n            [-79.78958129882812, 32.913603231028915],\n            [-79.64881896972656, 32.915908931564864],\n            [-79.63233947753906, 32.804590457442565],\n            [-79.79232788085938, 32.679840539897484],\n            [-79.88433837890625, 32.687931474529464],\n            [-79.85618591308594, 32.85997876713845]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-union/test/in/union4.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.732, 45.337],\n            [-75.728, 45.331],\n            [-75.719, 45.328],\n            [-75.71, 45.331],\n            [-75.70745454545455, 45.33481818181818],\n            [-75.702, 45.333],\n            [-75.693, 45.336],\n            [-75.689, 45.342],\n            [-75.693, 45.349],\n            [-75.69445161290322, 45.34932258064516],\n            [-75.692, 45.353],\n            [-75.696, 45.36],\n            [-75.705, 45.362],\n            [-75.714, 45.36],\n            [-75.717, 45.353],\n            [-75.714, 45.347],\n            [-75.71244, 45.34648],\n            [-75.71342253521127, 45.344760563380284],\n            [-75.719, 45.346],\n            [-75.728, 45.344],\n            [-75.732, 45.337]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.719, 45.346],\n            [-75.71, 45.344],\n            [-75.706, 45.337],\n            [-75.71, 45.331],\n            [-75.719, 45.328],\n            [-75.728, 45.331],\n            [-75.732, 45.337],\n            [-75.728, 45.344],\n            [-75.719, 45.346]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-union/test/out/jsts/not-overlapping.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [-79.88571166992188, 32.887659962078956],\n          [-79.89395141601562, 32.75551989829049],\n          [-80.00312805175781, 32.69428812316933],\n          [-80.15350341796875, 32.82825010814964],\n          [-80.09788513183594, 32.927436533285565],\n          [-79.88571166992188, 32.887659962078956]\n        ]\n      ],\n      [\n        [\n          [-79.85618591308594, 32.85997876713845],\n          [-79.78958129882812, 32.913603231028915],\n          [-79.64881896972656, 32.915908931564864],\n          [-79.63233947753906, 32.804590457442565],\n          [-79.79232788085938, 32.679840539897484],\n          [-79.88433837890625, 32.687931474529464],\n          [-79.85618591308594, 32.85997876713845]\n        ]\n      ]\n    ]\n  },\n  \"properties\": {}\n}\n"
  },
  {
    "path": "packages/turf-union/test/out/jsts/union1.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-79.92322780260464, 32.73910022106017],\n        [-80.00312805175781, 32.69428812316933],\n        [-80.15350341796875, 32.82825010814964],\n        [-80.09788513183594, 32.927436533285565],\n        [-79.94623496447946, 32.89900638172028],\n        [-79.92141723632812, 32.953944317478246],\n        [-79.81773376464844, 32.923402043498875],\n        [-79.80537414550781, 32.7231762754146],\n        [-79.92322780260464, 32.73910022106017]\n      ]\n    ]\n  },\n  \"properties\": {}\n}\n"
  },
  {
    "path": "packages/turf-union/test/out/jsts/union2.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-79.91098503795921, 32.95087128128811],\n        [-79.81773376464844, 32.923402043498875],\n        [-79.80537414550781, 32.7231762754146],\n        [-79.93763756501369, 32.741047214297545],\n        [-80.00175476074217, 32.732418508353746],\n        [-79.99171138057724, 32.77876713098757],\n        [-80.00867471875296, 32.846454942587876],\n        [-80.07453918457031, 32.85536439443039],\n        [-80.14389038085938, 32.8149783969858],\n        [-80.10543823242188, 32.94760622243483],\n        [-80.02726389659408, 32.92063024667495],\n        [-80.03128051757812, 32.936657533381286],\n        [-79.95741485597672, 32.93704020740793],\n        [-79.95025634765625, 32.97007559940924],\n        [-79.91098503795921, 32.95087128128811]\n      ]\n    ]\n  },\n  \"properties\": {}\n}\n"
  },
  {
    "path": "packages/turf-union/test/out/jsts/union3.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-79.92322780260464, 32.73910022106017],\n        [-80.00312805175781, 32.69428812316933],\n        [-80.15350341796875, 32.82825010814964],\n        [-80.09788513183594, 32.927436533285565],\n        [-79.94623496447946, 32.89900638172028],\n        [-79.92141723632812, 32.953944317478246],\n        [-79.81773376464844, 32.923402043498875],\n        [-79.81582464318822, 32.89247428541929],\n        [-79.78958129882812, 32.913603231028915],\n        [-79.64881896972656, 32.915908931564864],\n        [-79.63233947753906, 32.804590457442565],\n        [-79.79232788085938, 32.679840539897484],\n        [-79.88433837890625, 32.687931474529464],\n        [-79.87698786324371, 32.73285245328464],\n        [-79.92322780260464, 32.73910022106017]\n      ]\n    ]\n  },\n  \"properties\": {}\n}\n"
  },
  {
    "path": "packages/turf-union/test/out/not-overlapping.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [-80.15350341796875, 32.82825010814964],\n          [-80.00312805175781, 32.69428812316933],\n          [-79.89395141601562, 32.75551989829049],\n          [-79.88571166992188, 32.887659962078956],\n          [-80.09788513183594, 32.927436533285565],\n          [-80.15350341796875, 32.82825010814964]\n        ]\n      ],\n      [\n        [\n          [-79.88433837890625, 32.687931474529464],\n          [-79.79232788085938, 32.679840539897484],\n          [-79.63233947753906, 32.804590457442565],\n          [-79.64881896972656, 32.915908931564864],\n          [-79.78958129882812, 32.913603231028915],\n          [-79.85618591308594, 32.85997876713845],\n          [-79.88433837890625, 32.687931474529464]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-union/test/out/union1.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-80.15350341796875, 32.82825010814964],\n        [-80.00312805175781, 32.69428812316933],\n        [-79.92322780260464, 32.73910022106017],\n        [-79.80537414550781, 32.7231762754146],\n        [-79.81773376464844, 32.923402043498875],\n        [-79.92141723632812, 32.953944317478246],\n        [-79.94623496447946, 32.89900638172028],\n        [-80.09788513183594, 32.927436533285565],\n        [-80.15350341796875, 32.82825010814964]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-union/test/out/union2.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-80.14389038085938, 32.8149783969858],\n        [-80.07453918457031, 32.85536439443039],\n        [-80.00867471875296, 32.84645494258788],\n        [-79.99171138057724, 32.77876713098755],\n        [-80.00175476074217, 32.732418508353746],\n        [-79.9376375650137, 32.741047214297545],\n        [-79.80537414550781, 32.7231762754146],\n        [-79.81773376464844, 32.923402043498875],\n        [-79.91098503795921, 32.950871281288116],\n        [-79.95025634765625, 32.97007559940924],\n        [-79.95741485597672, 32.93704020740794],\n        [-80.03128051757812, 32.936657533381286],\n        [-80.02726389659406, 32.92063024667495],\n        [-80.10543823242188, 32.94760622243483],\n        [-80.14389038085938, 32.8149783969858]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-union/test/out/union3.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-80.15350341796875, 32.82825010814964],\n        [-80.00312805175781, 32.69428812316933],\n        [-79.92322780260464, 32.73910022106017],\n        [-79.87698786324371, 32.73285245328464],\n        [-79.88433837890625, 32.687931474529464],\n        [-79.79232788085938, 32.679840539897484],\n        [-79.63233947753906, 32.804590457442565],\n        [-79.64881896972656, 32.915908931564864],\n        [-79.78958129882812, 32.913603231028915],\n        [-79.81582464318822, 32.89247428541929],\n        [-79.81773376464844, 32.923402043498875],\n        [-79.92141723632812, 32.953944317478246],\n        [-79.94623496447946, 32.89900638172028],\n        [-80.09788513183594, 32.927436533285565],\n        [-80.15350341796875, 32.82825010814964]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-union/test/out/union4.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [-75.732, 45.337],\n        [-75.728, 45.331],\n        [-75.719, 45.328],\n        [-75.71, 45.331],\n        [-75.70745454545455, 45.33481818181818],\n        [-75.702, 45.333],\n        [-75.693, 45.336],\n        [-75.689, 45.342],\n        [-75.693, 45.349],\n        [-75.69445161290322, 45.34932258064516],\n        [-75.692, 45.353],\n        [-75.696, 45.36],\n        [-75.705, 45.362],\n        [-75.714, 45.36],\n        [-75.717, 45.353],\n        [-75.714, 45.347],\n        [-75.71244, 45.34648],\n        [-75.71342253521127, 45.344760563380284],\n        [-75.719, 45.346],\n        [-75.728, 45.344],\n        [-75.732, 45.337]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-union/test.ts",
    "content": "import fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport {\n  type FeatureCollection,\n  type Polygon,\n  type MultiPolygon,\n} from \"geojson\";\nimport { union } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directories.in + filename),\n  };\n});\n\ntest(\"union\", function (t) {\n  for (const { name, geojson, filename } of fixtures) {\n    // Only test the input fixture this way if there is a corresponding output\n    // fixture to compare.\n    if (fs.existsSync(path.join(directories.out, filename))) {\n      const result = union(geojson);\n      if (result === null) {\n        t.fail(\"result was null\");\n      }\n\n      if (process.env.REGEN)\n        writeJsonFileSync(directories.out + filename, result);\n      t.deepEqual(result, loadJsonFileSync(directories.out + filename), name);\n    }\n  }\n  t.end();\n});\n\ntest(\"union - unable to complete output ring ex 1 - issue 1983\", function (t) {\n  const polys = loadJsonFileSync(\n    directories.in + \"unable-to-complete-output-ring-1983-1.geojson\"\n  ) as FeatureCollection<Polygon>;\n\n  // This used to fail with \"Unable to complete output ring starting at ...\"\n  t.doesNotThrow(() => union(polys), \"does not throw\");\n\n  t.end();\n});\n\ntest(\"union - unable to complete output ring ex 2 - issue 1983\", function (t) {\n  const polys = loadJsonFileSync(\n    directories.in + \"unable-to-complete-output-ring-1983-2.geojson\"\n  ) as FeatureCollection<Polygon>;\n\n  // This used to fail with \"Unable to complete output ring starting at ...\"\n  t.doesNotThrow(() => union(polys), \"does not throw\");\n\n  t.end();\n});\n\ntest(\"union - maximum call stack size exceeded - issue 2317\", function (t) {\n  const polys = loadJsonFileSync(\n    directories.in + \"maximum-callstack-size-exceeded-2317.geojson\"\n  ) as FeatureCollection<MultiPolygon>;\n\n  // This used to fail with \"Maximum call stack size exceeded ...\"\n  t.doesNotThrow(() => union(polys), \"does not throw\");\n\n  t.end();\n});\n\ntest(\"union - unable to find segment ex 1 - issue 2258\", function (t) {\n  // Example from https://github.com/Turfjs/turf/issues/2258#issue-1125017544\n  const polys = loadJsonFileSync(\n    directories.in + \"unable-to-find-segment-2258-1.geojson\"\n  ) as FeatureCollection<MultiPolygon>;\n\n  // This used to fail with \"Unable to find segment ...\"\n  t.doesNotThrow(() => union(polys), \"does not throw\");\n\n  t.end();\n});\n\ntest(\"union - unable to find segment ex 2 - issue 2258\", function (t) {\n  // Example from https://github.com/Turfjs/turf/issues/2258#issuecomment-1635573555\n  const polys = loadJsonFileSync(\n    directories.in + \"unable-to-find-segment-2258-2.geojson\"\n  ) as FeatureCollection<MultiPolygon>;\n\n  // This used to fail with \"Unable to find segment ...\"\n  t.doesNotThrow(() => union(polys), \"does not throw\");\n\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-union/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-union/types.ts",
    "content": "import { polygon, featureCollection } from \"@turf/helpers\";\nimport { union } from \"./index.js\";\n\nconst poly1 = polygon([\n  [\n    [0, 0],\n    [10, 10],\n    [20, 20],\n    [0, 0],\n  ],\n]);\nconst poly2 = polygon([\n  [\n    [20, 30],\n    [10, 10],\n    [20, 20],\n    [20, 30],\n  ],\n]);\nunion(featureCollection([poly1, poly2]));\n"
  },
  {
    "path": "packages/turf-unkink-polygon/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-unkink-polygon/README.md",
    "content": "# @turf/unkink-polygon\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## unkinkPolygon\n\nTakes a kinked polygon and returns a feature collection of polygons that have\nno kinks.\n\nUses [simplepolygon][1] internally.\n\n### Parameters\n\n*   `geojson` **([FeatureCollection][2]<([Polygon][3] | [MultiPolygon][4])> | [Feature][5]<([Polygon][3] | [MultiPolygon][4])> | [Polygon][3] | [MultiPolygon][4])** polygons to unkink\n\n### Examples\n\n```javascript\nconst poly = turf.polygon([[[0, 0], [2, 0], [0, 2], [2, 2], [0, 0]]]);\n\nconst result = turf.unkinkPolygon(poly);\n\n//addToMap\nconst addToMap = [poly, result]\n```\n\nReturns **[FeatureCollection][2]<[Polygon][3]>** Unkinked polygons\n\n[1]: https://github.com/mclaeysb/simplepolygon\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[3]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n[4]: https://tools.ietf.org/html/rfc7946#section-3.1.7\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.2\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/unkink-polygon\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-unkink-polygon/bench.ts",
    "content": "import { Feature, FeatureCollection, Polygon } from \"geojson\";\nimport fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport Benchmark, { Event } from \"benchmark\";\nimport { unkinkPolygon as unkink } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  const geojson: FeatureCollection<Polygon> | Feature<Polygon> =\n    loadJsonFileSync(directories.in + filename);\n  return { filename, geojson };\n});\n\nconst suite = new Benchmark.Suite(\"unkink-polygon\");\n\n// Add all fixtures to Benchmark\nfor (const fixture of fixtures) {\n  suite.add(fixture.filename, () => unkink(fixture.geojson));\n}\n\nsuite\n  .on(\"cycle\", (event: Event) => {\n    console.log(String(event.target));\n  })\n  .run();\n"
  },
  {
    "path": "packages/turf-unkink-polygon/index.ts",
    "content": "import { Polygon, MultiPolygon, Feature, FeatureCollection } from \"geojson\";\nimport { flattenEach, featureEach } from \"@turf/meta\";\nimport { polygon, featureCollection } from \"@turf/helpers\";\nimport { simplepolygon } from \"./lib/simplepolygon.js\";\n\n/**\n * Takes a kinked polygon and returns a feature collection of polygons that have\n * no kinks.\n *\n * Uses [simplepolygon](https://github.com/mclaeysb/simplepolygon) internally.\n *\n * @function\n * @param {FeatureCollection<Polygon|MultiPolygon>|Feature<Polygon|MultiPolygon>|Polygon|MultiPolygon} geojson polygons to unkink\n * @returns {FeatureCollection<Polygon>} Unkinked polygons\n * @example\n * const poly = turf.polygon([[[0, 0], [2, 0], [0, 2], [2, 2], [0, 0]]]);\n *\n * const result = turf.unkinkPolygon(poly);\n *\n * //addToMap\n * const addToMap = [poly, result]\n */\nfunction unkinkPolygon<T extends Polygon | MultiPolygon>(\n  geojson: Feature<T> | FeatureCollection<T> | T\n): FeatureCollection<Polygon> {\n  var features: Feature<Polygon>[] = [];\n  flattenEach(geojson, function (feature) {\n    if (feature.geometry.type !== \"Polygon\") return;\n    // Safe to treat feature as Feature<Polygon>\n    featureEach(simplepolygon(feature as Feature<Polygon>), function (poly) {\n      features.push(polygon(poly.geometry.coordinates, feature.properties));\n    });\n  });\n  return featureCollection(features);\n}\n\nexport { unkinkPolygon };\nexport default unkinkPolygon;\n"
  },
  {
    "path": "packages/turf-unkink-polygon/lib/geojson-polygon-self-intersections.ts",
    "content": "// Find self-intersections in geojson polygon (possibly with interior rings)\nimport { Feature, Polygon, Position } from \"geojson\";\nimport rbush from \"rbush\";\n\nexport function geojsonPolygonSelfIntersections<T>(\n  feature: Feature<Polygon>,\n  filterFn: (\n    isect: number[],\n    ring0: number,\n    edge0: number,\n    start0: Position,\n    end0: Position,\n    frac0: number,\n    ring1: number,\n    edge1: number,\n    start1: Position,\n    end1: Position,\n    frac1: number,\n    unique: boolean\n  ) => T\n): T[] {\n  if (feature.geometry.type !== \"Polygon\")\n    throw new Error(\"The input feature must be a Polygon\");\n\n  var coord = feature.geometry.coordinates;\n\n  var output: T[] = [];\n  var seen: Record<string, boolean> = {};\n\n  var allEdgesAsRbushTreeItems = [];\n  for (var ring0 = 0; ring0 < coord.length; ring0++) {\n    for (var edge0 = 0; edge0 < coord[ring0].length - 1; edge0++) {\n      allEdgesAsRbushTreeItems.push(rbushTreeItem(ring0, edge0));\n    }\n  }\n  var tree = new rbush<{\n    minX: number;\n    minY: number;\n    maxX: number;\n    maxY: number;\n    ring: number;\n    edge: number;\n  }>();\n  tree.load(allEdgesAsRbushTreeItems);\n\n  for (var ringA = 0; ringA < coord.length; ringA++) {\n    for (var edgeA = 0; edgeA < coord[ringA].length - 1; edgeA++) {\n      var bboxOverlaps = tree.search(rbushTreeItem(ringA, edgeA));\n      bboxOverlaps.forEach(function (bboxIsect) {\n        var ring1 = bboxIsect.ring;\n        var edge1 = bboxIsect.edge;\n        ifIsectAddToOutput(ringA, edgeA, ring1, edge1);\n      });\n    }\n  }\n\n  return output;\n\n  // Function to check if two edges intersect and add the intersection to the output\n  function ifIsectAddToOutput(\n    ring0: number,\n    edge0: number,\n    ring1: number,\n    edge1: number\n  ) {\n    var start0 = coord[ring0][edge0];\n    var end0 = coord[ring0][edge0 + 1];\n    var start1 = coord[ring1][edge1];\n    var end1 = coord[ring1][edge1 + 1];\n\n    var isect = intersect(start0, end0, start1, end1);\n\n    if (isect === null) return; // discard parallels and coincidence\n    var frac0;\n    var frac1;\n    if (end0[0] !== start0[0]) {\n      frac0 = (isect[0] - start0[0]) / (end0[0] - start0[0]);\n    } else {\n      frac0 = (isect[1] - start0[1]) / (end0[1] - start0[1]);\n    }\n    if (end1[0] !== start1[0]) {\n      frac1 = (isect[0] - start1[0]) / (end1[0] - start1[0]);\n    } else {\n      frac1 = (isect[1] - start1[1]) / (end1[1] - start1[1]);\n    }\n    if (frac0 >= 1 || frac0 <= 0 || frac1 >= 1 || frac1 <= 0) return; // require segment intersection\n\n    var key = isect;\n    var unique = !seen[key.toString()];\n    if (unique) {\n      seen[key.toString()] = true;\n    }\n\n    if (filterFn) {\n      output.push(\n        filterFn(\n          isect,\n          ring0,\n          edge0,\n          start0,\n          end0,\n          frac0,\n          ring1,\n          edge1,\n          start1,\n          end1,\n          frac1,\n          unique\n        )\n      );\n    }\n  }\n\n  // Function to return a rbush tree item given an ring and edge number\n  function rbushTreeItem(ring: number, edge: number) {\n    var start = coord[ring][edge];\n    var end = coord[ring][edge + 1];\n    var minX;\n    var maxX;\n    var minY;\n    var maxY;\n    if (start[0] < end[0]) {\n      minX = start[0];\n      maxX = end[0];\n    } else {\n      minX = end[0];\n      maxX = start[0];\n    }\n    if (start[1] < end[1]) {\n      minY = start[1];\n      maxY = end[1];\n    } else {\n      minY = end[1];\n      maxY = start[1];\n    }\n    return {\n      minX: minX,\n      minY: minY,\n      maxX: maxX,\n      maxY: maxY,\n      ring: ring,\n      edge: edge,\n    };\n  }\n}\n\n// Function to compute where two lines (not segments) intersect. From https://en.wikipedia.org/wiki/Line%E2%80%93line_intersection\nfunction intersect(\n  start0: number[],\n  end0: number[],\n  start1: number[],\n  end1: number[]\n) {\n  if (\n    equalArrays(start0, start1) ||\n    equalArrays(start0, end1) ||\n    equalArrays(end0, start1) ||\n    equalArrays(end1, start1)\n  )\n    return null;\n  var x0 = start0[0],\n    y0 = start0[1],\n    x1 = end0[0],\n    y1 = end0[1],\n    x2 = start1[0],\n    y2 = start1[1],\n    x3 = end1[0],\n    y3 = end1[1];\n  var denom = (x0 - x1) * (y2 - y3) - (y0 - y1) * (x2 - x3);\n  if (denom === 0) return null;\n  var x4 =\n    ((x0 * y1 - y0 * x1) * (x2 - x3) - (x0 - x1) * (x2 * y3 - y2 * x3)) / denom;\n  var y4 =\n    ((x0 * y1 - y0 * x1) * (y2 - y3) - (y0 - y1) * (x2 * y3 - y2 * x3)) / denom;\n  return [x4, y4];\n}\n\n// Function to compare Arrays of numbers. From http://stackoverflow.com/questions/7837456/how-to-compare-arrays-in-javascript\nfunction equalArrays(array1: any[], array2: any[]) {\n  // if the other array is a falsy value, return\n  if (!array1 || !array2) return false;\n\n  // compare lengths - can save a lot of time\n  if (array1.length !== array2.length) return false;\n\n  for (var i = 0, l = array1.length; i < l; i++) {\n    // Check if we have nested arrays\n    if (array1[i] instanceof Array && array2[i] instanceof Array) {\n      // recurse into the nested arrays\n      if (!equalArrays(array1[i], array2[i])) return false;\n    } else if (array1[i] !== array2[i]) {\n      // Warning - two different object instances will never be equal: {x:20} !== {x:20}\n      return false;\n    }\n  }\n  return true;\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/lib/simplepolygon.ts",
    "content": "import { geojsonPolygonSelfIntersections as isects } from \"./geojson-polygon-self-intersections.js\";\nimport { area } from \"@turf/area\";\nimport { featureCollection, polygon } from \"@turf/helpers\";\nimport { booleanPointInPolygon } from \"@turf/boolean-point-in-polygon\";\nimport rbush from \"rbush\";\nimport { Feature, FeatureCollection, Polygon, Position } from \"geojson\";\n\n/**\n * Takes a complex (i.e. self-intersecting) geojson polygon, and breaks it down into its composite simple, non-self-intersecting one-ring polygons.\n *\n * @module simplepolygon\n * @param {Feature} feature Input polygon. This polygon may be unconform the {@link https://en.wikipedia.org/wiki/Simple_Features|Simple Features standard} in the sense that it's inner and outer rings may cross-intersect or self-intersect, that the outer ring must not contain the optional inner rings and that the winding number must not be positive for the outer and negative for the inner rings.\n * @return {FeatureCollection} Feature collection containing the simple, non-self-intersecting one-ring polygon features that the complex polygon is composed of. These simple polygons have properties such as their parent polygon, winding number and net winding number.\n *\n * @example\n * var poly = {\n *   \"type\": \"Feature\",\n *   \"geometry\": {\n *     \"type\": \"Polygon\",\n *     \"coordinates\": [[[0,0],[2,0],[0,2],[2,2],[0,0]]]\n *   }\n * };\n *\n * var result = simplepolygon(poly);\n *\n * // =result\n * // which will be a featureCollection of two polygons, one with coordinates [[[0,0],[2,0],[1,1],[0,0]]], parent -1, winding 1 and net winding 1, and one with coordinates [[[1,1],[0,2],[2,2],[1,1]]], parent -1, winding -1 and net winding -1\n */\nexport function simplepolygon(\n  feature: Feature<Polygon>\n): FeatureCollection<Polygon> {\n  // Check input\n  if (feature.type != \"Feature\")\n    throw new Error(\"The input must a geojson object of type Feature\");\n  if (feature.geometry === undefined || feature.geometry == null)\n    throw new Error(\n      \"The input must a geojson object with a non-empty geometry\"\n    );\n  if (feature.geometry.type != \"Polygon\")\n    throw new Error(\"The input must be a geojson Polygon\");\n\n  // Process input\n  var numRings = feature.geometry.coordinates.length;\n  var vertices = [];\n  for (var i = 0; i < numRings; i++) {\n    var ring = feature.geometry.coordinates[i];\n    if (!equalArrays(ring[0], ring[ring.length - 1])) {\n      ring.push(ring[0]); // Close input ring if it is not\n    }\n    for (var j = 0; j < ring.length - 1; j++) {\n      vertices.push(ring[j]);\n    }\n  }\n  if (!isUnique(vertices))\n    throw new Error(\n      \"The input polygon may not have duplicate vertices (except for the first and last vertex of each ring)\"\n    );\n  var numvertices = vertices.length; // number of input ring vertices, with the last closing vertices not counted\n\n  // Compute self-intersections\n  var selfIsectsData = isects(\n    feature,\n    function filterFn(\n      isect,\n      ring0,\n      edge0,\n      start0,\n      end0,\n      frac0,\n      ring1,\n      edge1,\n      start1,\n      end1,\n      frac1,\n      unique\n    ) {\n      return [\n        isect,\n        ring0,\n        edge0,\n        start0,\n        end0,\n        frac0,\n        ring1,\n        edge1,\n        start1,\n        end1,\n        frac1,\n        unique,\n      ] as const;\n    }\n  );\n  var numSelfIsect = selfIsectsData.length;\n\n  // If no self-intersections are found, the input rings are the output rings. Hence, we must only compute their winding numbers, net winding numbers and (since ohers rings could lie outside the first ring) parents.\n  if (numSelfIsect == 0) {\n    var outputFeatureArray = [];\n    for (var i = 0; i < numRings; i++) {\n      outputFeatureArray.push(\n        polygon([feature.geometry.coordinates[i]], {\n          parent: -1,\n          winding: windingOfRing(feature.geometry.coordinates[i]),\n        })\n      );\n    }\n    let output = featureCollection(outputFeatureArray) as FeatureCollection<\n      Polygon,\n      {\n        index: number;\n        parent: number;\n        winding: number;\n        netWinding: number | undefined;\n      }\n    >;\n    determineParents(output);\n    setNetWinding(output);\n\n    return output;\n  }\n\n  // If self-intersections are found, we will compute the output rings with the help of two intermediate variables\n  // First, we build the pseudo vertex list and intersection list\n  // The Pseudo vertex list is an array with for each ring an array with for each edge an array containing the pseudo-vertices (as made by their constructor) that have this ring and edge as ringAndEdgeIn, sorted for each edge by their fractional distance on this edge. It's length hence equals numRings.\n  var pseudoVtxListByRingAndEdge: PseudoVtx[][][] = [];\n  // The intersection list is an array containing intersections (as made by their constructor). First all numvertices ring-vertex-intersections, then all self-intersections (intra- and inter-ring). The order of the latter is not important but is permanent once given.\n  var isectList: Isect[] = [];\n  // Adding ring-pseudo-vertices to pseudoVtxListByRingAndEdge and ring-vertex-intersections to isectList\n  for (var i = 0; i < numRings; i++) {\n    pseudoVtxListByRingAndEdge.push([]);\n    for (var j = 0; j < feature.geometry.coordinates[i].length - 1; j++) {\n      // Each edge will feature one ring-pseudo-vertex in its array, on the last position. i.e. edge j features the ring-pseudo-vertex of the ring vertex j+1, which has ringAndEdgeIn = [i,j], on the last position.\n      pseudoVtxListByRingAndEdge[i].push([\n        new PseudoVtx(\n          feature.geometry.coordinates[i][\n            modulo(j + 1, feature.geometry.coordinates[i].length - 1)\n          ],\n          1,\n          [i, j],\n          [i, modulo(j + 1, feature.geometry.coordinates[i].length - 1)],\n          undefined\n        ),\n      ]);\n      // The first numvertices elements in isectList correspond to the ring-vertex-intersections\n      isectList.push(\n        new Isect(\n          feature.geometry.coordinates[i][j],\n          [i, modulo(j - 1, feature.geometry.coordinates[i].length - 1)],\n          [i, j],\n          undefined,\n          undefined,\n          false,\n          true\n        )\n      );\n    }\n  }\n  // Adding intersection-pseudo-vertices to pseudoVtxListByRingAndEdge and self-intersections to isectList\n  for (var i = 0; i < numSelfIsect; i++) {\n    // Adding intersection-pseudo-vertices made using selfIsectsData to pseudoVtxListByRingAndEdge's array corresponding to the incomming ring and edge\n    pseudoVtxListByRingAndEdge[selfIsectsData[i][1]][selfIsectsData[i][2]].push(\n      new PseudoVtx(\n        selfIsectsData[i][0],\n        selfIsectsData[i][5],\n        [selfIsectsData[i][1], selfIsectsData[i][2]],\n        [selfIsectsData[i][6], selfIsectsData[i][7]],\n        undefined\n      )\n    );\n    // selfIsectsData contains double mentions of each intersection, but we only want to add them once to isectList\n    if (selfIsectsData[i][11])\n      isectList.push(\n        new Isect(\n          selfIsectsData[i][0],\n          [selfIsectsData[i][1], selfIsectsData[i][2]],\n          [selfIsectsData[i][6], selfIsectsData[i][7]],\n          undefined,\n          undefined,\n          true,\n          true\n        )\n      );\n  }\n  var numIsect = isectList.length;\n  // Sort edge arrays of pseudoVtxListByRingAndEdge by the fractional distance 'param'\n  for (var i = 0; i < pseudoVtxListByRingAndEdge.length; i++) {\n    for (var j = 0; j < pseudoVtxListByRingAndEdge[i].length; j++) {\n      pseudoVtxListByRingAndEdge[i][j].sort(function (a, b) {\n        return a.param < b.param ? -1 : 1;\n      });\n    }\n  }\n\n  // Make a spatial index of intersections, in preperation for the following two steps\n  var allIsectsAsIsectRbushTreeItem = [];\n  for (var i = 0; i < numIsect; i++) {\n    allIsectsAsIsectRbushTreeItem.push({\n      minX: isectList[i].coord[0],\n      minY: isectList[i].coord[1],\n      maxX: isectList[i].coord[0],\n      maxY: isectList[i].coord[1],\n      index: i,\n    }); // could pass isect: isectList[i], but not necessary\n  }\n  var isectRbushTree = new rbush<{\n    minX: number;\n    minY: number;\n    maxX: number;\n    maxY: number;\n    index: number;\n  }>();\n  isectRbushTree.load(allIsectsAsIsectRbushTreeItem);\n\n  // Now we will teach each intersection in isectList which is the next intersection along both it's [ring, edge]'s, in two steps.\n  // First, we find the next intersection for each pseudo-vertex in pseudoVtxListByRingAndEdge:\n  // For each pseudovertex in pseudoVtxListByRingAndEdge (3 loops) look at the next pseudovertex on that edge and find the corresponding intersection by comparing coordinates\n  for (var i = 0; i < pseudoVtxListByRingAndEdge.length; i++) {\n    for (var j = 0; j < pseudoVtxListByRingAndEdge[i].length; j++) {\n      for (var k = 0; k < pseudoVtxListByRingAndEdge[i][j].length; k++) {\n        let coordToFind;\n        if (k == pseudoVtxListByRingAndEdge[i][j].length - 1) {\n          // If it's the last pseudoVertex on that edge, then the next pseudoVertex is the first one on the next edge of that ring.\n          coordToFind =\n            pseudoVtxListByRingAndEdge[i][\n              modulo(j + 1, feature.geometry.coordinates[i].length - 1)\n            ][0].coord;\n        } else {\n          coordToFind = pseudoVtxListByRingAndEdge[i][j][k + 1].coord;\n        }\n        var IsectRbushTreeItemFound = isectRbushTree.search({\n          minX: coordToFind[0],\n          minY: coordToFind[1],\n          maxX: coordToFind[0],\n          maxY: coordToFind[1],\n        })[0]; // We can take [0] of the result, because there is only one isect correponding to a pseudo-vertex\n        pseudoVtxListByRingAndEdge[i][j][k].nxtIsectAlongEdgeIn =\n          IsectRbushTreeItemFound.index;\n      }\n    }\n  }\n\n  // Second, we port this knowledge of the next intersection over to the intersections in isectList, by finding the intersection corresponding to each pseudo-vertex and copying the pseudo-vertex' knownledge of the next-intersection over to the intersection\n  for (var i = 0; i < pseudoVtxListByRingAndEdge.length; i++) {\n    for (var j = 0; j < pseudoVtxListByRingAndEdge[i].length; j++) {\n      for (var k = 0; k < pseudoVtxListByRingAndEdge[i][j].length; k++) {\n        let coordToFind = pseudoVtxListByRingAndEdge[i][j][k].coord;\n        var IsectRbushTreeItemFound = isectRbushTree.search({\n          minX: coordToFind[0],\n          minY: coordToFind[1],\n          maxX: coordToFind[0],\n          maxY: coordToFind[1],\n        })[0]; // We can take [0] of the result, because there is only one isect correponding to a pseudo-vertex\n        var l = IsectRbushTreeItemFound.index;\n        if (l < numvertices) {\n          // Special treatment at ring-vertices: we correct the misnaming that happened in the previous block, since ringAndEdgeOut = ringAndEdge2 for ring vertices.\n          isectList[l].nxtIsectAlongRingAndEdge2 =\n            pseudoVtxListByRingAndEdge[i][j][k].nxtIsectAlongEdgeIn;\n        } else {\n          // Port the knowledge of the next intersection from the pseudo-vertices to the intersections, depending on how the edges are labeled in the pseudo-vertex and intersection.\n          if (\n            equalArrays(\n              isectList[l].ringAndEdge1,\n              pseudoVtxListByRingAndEdge[i][j][k].ringAndEdgeIn\n            )\n          ) {\n            isectList[l].nxtIsectAlongRingAndEdge1 =\n              pseudoVtxListByRingAndEdge[i][j][k].nxtIsectAlongEdgeIn;\n          } else {\n            isectList[l].nxtIsectAlongRingAndEdge2 =\n              pseudoVtxListByRingAndEdge[i][j][k].nxtIsectAlongEdgeIn;\n          }\n        }\n      }\n    }\n  }\n  // This explains why, eventhough when we will walk away from an intersection, we will walk way from the corresponding pseudo-vertex along edgeOut, pseudo-vertices have the property 'nxtIsectAlongEdgeIn' in stead of some propery 'nxtPseudoVtxAlongEdgeOut'. This is because this property (which is easy to find out) is used in the above for nxtIsectAlongRingAndEdge1 and nxtIsectAlongRingAndEdge2!\n\n  // Before we start walking over the intersections to build the output rings, we prepare a queue that stores information on intersections we still have to deal with, and put at least one intersection in it.\n  // This queue will contain information on intersections where we can start walking from once the current walk is finished, and its parent output ring (the smallest output ring it lies within, -1 if no parent or parent unknown yet) and its winding number (which we can already determine).\n  var queue: { isect: number; parent: number; winding: number }[] = [];\n  // For each output ring, add the ring-vertex-intersection with the smalles x-value (i.e. the left-most) as a start intersection. By choosing such an extremal intersections, we are sure to start at an intersection that is a convex vertex of its output ring. By adding them all to the queue, we are sure that no rings will be forgotten. If due to ring-intersections such an intersection will be encountered while walking, it will be removed from the queue.\n  var i = 0;\n  for (var j = 0; j < numRings; j++) {\n    var leftIsect = i;\n    for (var k = 0; k < feature.geometry.coordinates[j].length - 1; k++) {\n      if (isectList[i].coord[0] < isectList[leftIsect].coord[0]) {\n        leftIsect = i;\n      }\n      i++;\n    }\n    // Compute winding at this left-most ring-vertex-intersection. We thus this by using our knowledge that this extremal vertex must be a convex vertex.\n    // We first find the intersection before and after it, and then use them to determine the winding number of the corresponding output ring, since we know that an extremal vertex of a simple, non-self-intersecting ring is always convex, so the only reason it would not be is because the winding number we use to compute it is wrong\n    var isectAfterLeftIsect = isectList[leftIsect].nxtIsectAlongRingAndEdge2;\n    for (var k = 0; k < isectList.length; k++) {\n      if (\n        isectList[k].nxtIsectAlongRingAndEdge1 == leftIsect ||\n        isectList[k].nxtIsectAlongRingAndEdge2 == leftIsect\n      ) {\n        var isectBeforeLeftIsect = k;\n        break;\n      }\n    }\n    var windingAtIsect = isConvex(\n      [\n        isectList[isectBeforeLeftIsect!].coord,\n        isectList[leftIsect].coord,\n        isectList[isectAfterLeftIsect!].coord,\n      ],\n      true\n    )\n      ? 1\n      : -1;\n\n    queue.push({ isect: leftIsect, parent: -1, winding: windingAtIsect });\n  }\n  // Sort the queue by the same criterion used to find the leftIsect: the left-most leftIsect must be last in the queue, such that it will be popped first, such that we will work from out to in regarding input rings. This assumtion is used when predicting the winding number and parent of a new queue member.\n  queue.sort(function (a, b) {\n    return isectList[a.isect].coord > isectList[b.isect].coord ? -1 : 1;\n  });\n\n  // Initialise output\n  var outputFeatureArray = [];\n\n  // While the queue is not empty, take the last object (i.e. its intersection) out and start making an output ring by walking in the direction that has not been walked away over yet.\n  while (queue.length > 0) {\n    // Get the last object out of the queue\n    var popped = queue.pop()!;\n    var startIsect = popped.isect;\n    var currentOutputRingParent = popped.parent;\n    var currentOutputRingWinding = popped.winding;\n    // Make new output ring and add vertex from starting intersection\n    var currentOutputRing: number = outputFeatureArray.length;\n    var currentOutputRingCoords = [isectList[startIsect].coord];\n    // Set up the variables used while walking over intersections: 'currentIsect', 'nxtIsect' and 'walkingRingAndEdge'\n    var currentIsect = startIsect;\n    if (isectList[startIsect].ringAndEdge1Walkable) {\n      var walkingRingAndEdge = isectList[startIsect].ringAndEdge1;\n      var nxtIsect = isectList[startIsect].nxtIsectAlongRingAndEdge1!;\n    } else {\n      var walkingRingAndEdge = isectList[startIsect].ringAndEdge2;\n      var nxtIsect = isectList[startIsect].nxtIsectAlongRingAndEdge2!;\n    }\n    // While we have not arrived back at the same intersection, keep walking\n    while (\n      !equalArrays(isectList[startIsect].coord, isectList[nxtIsect].coord)\n    ) {\n      currentOutputRingCoords.push(isectList[nxtIsect].coord);\n      // If the next intersection is queued, we can remove it, because we will go there now.\n      var nxtIsectInQueue = undefined;\n      for (var i = 0; i < queue.length; i++) {\n        if (queue[i].isect == nxtIsect) {\n          nxtIsectInQueue = i;\n          break;\n        }\n      }\n      if (nxtIsectInQueue != undefined) {\n        queue.splice(nxtIsectInQueue, 1);\n      }\n      // Arriving at this new intersection, we know which will be our next walking ring and edge (if we came from 1 we will walk away from 2 and vice versa),\n      // So we can set it as our new walking ring and intersection and remember that we (will) have walked over it\n      // If we have never walked away from this new intersection along the other ring and edge then we will soon do, add the intersection (and the parent wand winding number) to the queue\n      // (We can predict the winding number and parent as follows: if the edge is convex, the other output ring started from there will have the alternate winding and lie outside of the current one, and thus have the same parent ring as the current ring. Otherwise, it will have the same winding number and lie inside of the current ring. We are, however, only sure of this of an output ring started from there does not enclose the current ring. This is why the initial queue's intersections must be sorted such that outer ones come out first.)\n      // We then update the other two walking variables.\n      if (equalArrays(walkingRingAndEdge, isectList[nxtIsect].ringAndEdge1)) {\n        walkingRingAndEdge = isectList[nxtIsect].ringAndEdge2;\n        isectList[nxtIsect].ringAndEdge2Walkable = false;\n        if (isectList[nxtIsect].ringAndEdge1Walkable) {\n          var pushing: { isect: number; parent: number; winding: number } = {\n            isect: nxtIsect,\n          } as any; // as any because parent and winding are filled in below\n          if (\n            isConvex(\n              [\n                isectList[currentIsect].coord,\n                isectList[nxtIsect].coord,\n                isectList[isectList[nxtIsect].nxtIsectAlongRingAndEdge2!].coord,\n              ],\n              currentOutputRingWinding == 1\n            )\n          ) {\n            pushing.parent = currentOutputRingParent;\n            pushing.winding = -currentOutputRingWinding;\n          } else {\n            pushing.parent = currentOutputRing;\n            pushing.winding = currentOutputRingWinding;\n          }\n          queue.push(pushing);\n        }\n        currentIsect = nxtIsect;\n        nxtIsect = isectList[nxtIsect].nxtIsectAlongRingAndEdge2!;\n      } else {\n        walkingRingAndEdge = isectList[nxtIsect].ringAndEdge1;\n        isectList[nxtIsect].ringAndEdge1Walkable = false;\n        if (isectList[nxtIsect].ringAndEdge2Walkable) {\n          var pushing: { isect: number; parent: number; winding: number } = {\n            isect: nxtIsect,\n          } as any; // another instance of parent/winding being filled in below\n          if (\n            isConvex(\n              [\n                isectList[currentIsect].coord,\n                isectList[nxtIsect].coord,\n                isectList[isectList[nxtIsect].nxtIsectAlongRingAndEdge1!].coord,\n              ],\n              currentOutputRingWinding == 1\n            )\n          ) {\n            pushing.parent = currentOutputRingParent;\n            pushing.winding = -currentOutputRingWinding;\n          } else {\n            pushing.parent = currentOutputRing;\n            pushing.winding = currentOutputRingWinding;\n          }\n          queue.push(pushing);\n        }\n        currentIsect = nxtIsect;\n        nxtIsect = isectList[nxtIsect].nxtIsectAlongRingAndEdge1!;\n      }\n    }\n    // Close output ring\n    currentOutputRingCoords.push(isectList[nxtIsect].coord);\n    // Push output ring to output\n    outputFeatureArray.push(\n      polygon([currentOutputRingCoords], {\n        index: currentOutputRing,\n        parent: currentOutputRingParent,\n        winding: currentOutputRingWinding,\n        netWinding: undefined as number | undefined,\n      })\n    );\n  }\n\n  let output = featureCollection(outputFeatureArray);\n\n  determineParents(output);\n\n  setNetWinding(output);\n\n  // These functions are also used if no intersections are found\n  function determineParents(\n    output: FeatureCollection<\n      Polygon,\n      {\n        index: number;\n        parent: number;\n        winding: number;\n        netWinding: number | undefined;\n      }\n    >\n  ) {\n    var featuresWithoutParent = [];\n    for (var i = 0; i < output.features.length; i++) {\n      if (output.features[i].properties.parent == -1)\n        featuresWithoutParent.push(i);\n    }\n    if (featuresWithoutParent.length > 1) {\n      for (var i = 0; i < featuresWithoutParent.length; i++) {\n        var parent = -1;\n        var parentArea = Infinity;\n        for (var j = 0; j < output.features.length; j++) {\n          if (featuresWithoutParent[i] == j) continue;\n          if (\n            booleanPointInPolygon(\n              output.features[featuresWithoutParent[i]].geometry\n                .coordinates[0][0],\n              output.features[j],\n              { ignoreBoundary: true }\n            )\n          ) {\n            if (area(output.features[j]) < parentArea) {\n              parent = j;\n            }\n          }\n        }\n        output.features[featuresWithoutParent[i]].properties.parent = parent;\n      }\n    }\n  }\n\n  function setNetWinding(\n    output: FeatureCollection<\n      Polygon,\n      {\n        index: number;\n        parent: number;\n        winding: number;\n        netWinding: number | undefined;\n      }\n    >\n  ) {\n    for (var i = 0; i < output.features.length; i++) {\n      if (output.features[i].properties.parent == -1) {\n        var netWinding = output.features[i].properties.winding;\n        output.features[i].properties.netWinding = netWinding;\n        setNetWindingOfChildren(output, i, netWinding);\n      }\n    }\n  }\n\n  function setNetWindingOfChildren(\n    output: FeatureCollection<\n      Polygon,\n      {\n        index: number;\n        parent: number;\n        winding: number;\n        netWinding: number | undefined;\n      }\n    >,\n    parent: number,\n    ParentNetWinding: number\n  ) {\n    for (var i = 0; i < output.features.length; i++) {\n      if (output.features[i].properties.parent == parent) {\n        var netWinding =\n          ParentNetWinding + output.features[i].properties.winding;\n        output.features[i].properties.netWinding = netWinding;\n        setNetWindingOfChildren(output, i, netWinding);\n      }\n    }\n  }\n\n  return output;\n}\n\nclass PseudoVtx {\n  coord: number[]; // [x,y] of this pseudo-vertex\n  param: number; // fractional distance of this intersection on incomming edge\n  ringAndEdgeIn: [number, number]; // [ring index, edge index] of incomming edge\n  ringAndEdgeOut: [number, number]; // [ring index, edge index] of outgoing edge\n  nxtIsectAlongEdgeIn: number | undefined; // The next intersection when following the incomming edge (so not when following ringAndEdgeOut!)\n\n  // Constructor for (ring- or intersection-) pseudo-vertices.\n  constructor(\n    coord: number[],\n    param: number,\n    ringAndEdgeIn: [number, number],\n    ringAndEdgeOut: [number, number],\n    nxtIsectAlongEdgeIn?: number\n  ) {\n    this.coord = coord;\n    this.param = param;\n    this.ringAndEdgeIn = ringAndEdgeIn;\n    this.ringAndEdgeOut = ringAndEdgeOut;\n    this.nxtIsectAlongEdgeIn = nxtIsectAlongEdgeIn;\n  }\n}\n\nclass Isect {\n  coord: number[];\n  ringAndEdge1: [number, number];\n  ringAndEdge2: [number, number];\n  nxtIsectAlongRingAndEdge1?: number;\n  nxtIsectAlongRingAndEdge2?: number;\n  ringAndEdge1Walkable: boolean;\n  ringAndEdge2Walkable: boolean;\n\n  // Constructor for an intersection. There are two intersection-pseudo-vertices per self-intersection and one ring-pseudo-vertex per ring-vertex-intersection. Their labels 1 and 2 are not assigned a particular meaning but are permanent once given.\n  constructor(\n    coord: number[],\n    ringAndEdge1: [number, number],\n    ringAndEdge2: [number, number],\n    nxtIsectAlongRingAndEdge1: number | undefined,\n    nxtIsectAlongRingAndEdge2: number | undefined,\n    ringAndEdge1Walkable: boolean,\n    ringAndEdge2Walkable: boolean\n  ) {\n    this.coord = coord; // [x,y] of this intersection\n    this.ringAndEdge1 = ringAndEdge1; // first edge of this intersection\n    this.ringAndEdge2 = ringAndEdge2; // second edge of this intersection\n    this.nxtIsectAlongRingAndEdge1 = nxtIsectAlongRingAndEdge1; // the next intersection when following ringAndEdge1\n    this.nxtIsectAlongRingAndEdge2 = nxtIsectAlongRingAndEdge2; // the next intersection when following ringAndEdge2\n    this.ringAndEdge1Walkable = ringAndEdge1Walkable; // May we (still) walk away from this intersection over ringAndEdge1?\n    this.ringAndEdge2Walkable = ringAndEdge2Walkable; // May we (still) walk away from this intersection over ringAndEdge2?\n  }\n}\n\n// Function to determine if three consecutive points of a simple, non-self-intersecting ring make up a convex vertex, assuming the ring is right- or lefthanded\nfunction isConvex(pts: number[][], righthanded?: boolean) {\n  // 'pts' is an [x,y] pair\n  // 'righthanded' is a boolean\n  if (typeof righthanded === \"undefined\") righthanded = true;\n  if (pts.length != 3)\n    throw new Error(\"This function requires an array of three points [x,y]\");\n  var d =\n    (pts[1][0] - pts[0][0]) * (pts[2][1] - pts[0][1]) -\n    (pts[1][1] - pts[0][1]) * (pts[2][0] - pts[0][0]);\n  return d >= 0 == righthanded;\n}\n\n// Function to compute winding of simple, non-self-intersecting ring\nfunction windingOfRing(ring: number[][]) {\n  // 'ring' is an array of [x,y] pairs with the last equal to the first\n  // Compute the winding number based on the vertex with the smallest x-value, it precessor and successor. An extremal vertex of a simple, non-self-intersecting ring is always convex, so the only reason it is not is because the winding number we use to compute it is wrong\n  var leftVtx = 0;\n  for (var i = 0; i < ring.length - 1; i++) {\n    if (ring[i][0] < ring[leftVtx][0]) leftVtx = i;\n  }\n  if (\n    isConvex(\n      [\n        ring[modulo(leftVtx - 1, ring.length - 1)],\n        ring[leftVtx],\n        ring[modulo(leftVtx + 1, ring.length - 1)],\n      ],\n      true\n    )\n  ) {\n    var winding = 1;\n  } else {\n    var winding = -1;\n  }\n  return winding;\n}\n\n// Function to compare Arrays of numbers. From http://stackoverflow.com/questions/7837456/how-to-compare-arrays-in-javascript\nfunction equalArrays(array1: any[], array2: any[]) {\n  // if the other array is a falsy value, return\n  if (!array1 || !array2) return false;\n\n  // compare lengths - can save a lot of time\n  if (array1.length != array2.length) return false;\n\n  for (var i = 0, l = array1.length; i < l; i++) {\n    // Check if we have nested arrays\n    if (array1[i] instanceof Array && array2[i] instanceof Array) {\n      // recurse into the nested arrays\n      if (!equalArrays(array1[i], array2[i])) return false;\n    } else if (array1[i] != array2[i]) {\n      // Warning - two different object instances will never be equal: {x:20} != {x:20}\n      return false;\n    }\n  }\n  return true;\n}\n\n// Fix Javascript modulo for negative number. From http://stackoverflow.com/questions/4467539/javascript-modulo-not-behaving\nfunction modulo(n: number, m: number) {\n  return ((n % m) + m) % m;\n}\n\n// Function to check if array is unique (i.e. all unique elements, i.e. no duplicate elements)\nfunction isUnique(array: Position[]) {\n  var u: Record<string, number> = {};\n  var isUnique = 1;\n  for (var i = 0, l = array.length; i < l; ++i) {\n    if (Object.prototype.hasOwnProperty.call(u, array[i].toString())) {\n      isUnique = 0;\n      break;\n    }\n    u[array[i].toString()] = 1;\n  }\n  return isUnique;\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/package.json",
    "content": "{\n  \"name\": \"@turf/unkink-polygon\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a kinked polygon and returns a feature collection of polygons that have no kinks.\",\n  \"author\": \"Turf Authors\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"kinks\",\n    \"unkink\",\n    \"polygon\",\n    \"self-intersection\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\",\n    \"test:types\": \"tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts\"\n  },\n  \"devDependencies\": {\n    \"@turf/kinks\": \"workspace:*\",\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/rbush\": \"^3.0.4\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/area\": \"workspace:*\",\n    \"@turf/boolean-point-in-polygon\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/meta\": \"workspace:*\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"rbush\": \"^3.0.1\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/test/in/complex.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"foo\": \"bar\"\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [113.291015625, -18.062312304546715],\n        [141.15234374999997, -37.090239803072066],\n        [129.55078125, -13.752724664396975],\n        [114.2578125, -35.81781315869662],\n        [122.34374999999999, -34.95799531086791],\n        [133.59375, -18.895892559415024],\n        [119.17968749999999, -20.879342971957897],\n        [121.55273437499999, -25.324166525738384],\n        [127.705078125, -29.382175075145277],\n        [142.03125, -31.802892586706747],\n        [122.51953124999999, -20.550508894195637],\n        [122.51953124999999, -31.278550858946517],\n        [113.291015625, -18.062312304546715]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/test/in/hourglass.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#ff0000\"\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [0, 0],\n        [2, 0],\n        [0, 2],\n        [2, 2],\n        [0, 0]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/test/in/hourglassFeatureCollection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff0000\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [2, 2],\n            [0, 2],\n            [2, 0],\n            [0, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0000ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2, 2],\n            [4, 0],\n            [2, 0],\n            [4, 2],\n            [2, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/test/in/hourglassFeatureCollectionMultiPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff0000\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [0, 0],\n              [2, 0],\n              [0, 2],\n              [2, 2],\n              [0, 0]\n            ]\n          ],\n          [\n            [\n              [2, 2],\n              [4, 2],\n              [2, 0],\n              [4, 0],\n              [2, 2]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0000ff\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2, 2],\n            [4, 4],\n            [2, 4],\n            [4, 2],\n            [2, 2]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/test/in/hourglassMultiPolygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#ff0000\"\n  },\n  \"geometry\": {\n    \"type\": \"MultiPolygon\",\n    \"coordinates\": [\n      [\n        [\n          [0, 0],\n          [2, 2],\n          [0, 2],\n          [2, 0],\n          [0, 0]\n        ]\n      ],\n      [\n        [\n          [2, 2],\n          [4, 0],\n          [2, 0],\n          [4, 2],\n          [2, 2]\n        ]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/test/in/issue-#1094.geojson",
    "content": "{\n  \"type\": \"Polygon\",\n  \"coordinates\": [\n    [\n      [-91.92218713423073, 42.750854798206724],\n      [-91.9139393415105, 42.75096509455043],\n      [-91.91403053661699, 42.74800278177934],\n      [-91.91407345196123, 42.74679733206786],\n      [-91.91410563846941, 42.74537912592471],\n      [-91.91653571983723, 42.745359428388724],\n      [-91.9165088977471, 42.74624187186039],\n      [-91.91667519470603, 42.746249750763376],\n      [-91.91669128796013, 42.74536730740387],\n      [-91.91752277275486, 42.745359428388724],\n      [-91.91750131508273, 42.74636399474419],\n      [-91.91750667950076, 42.74737248420069],\n      [-91.91857047641793, 42.74735355619808],\n      [-91.91856615206176, 42.74748869579865],\n      [-91.91859029194288, 42.746734301373],\n      [-91.918995305504, 42.7463029333329],\n      [-91.91905967852034, 42.7461453552181],\n      [-91.9191481914178, 42.74588535045296],\n      [-91.91914282699976, 42.74558594967556],\n      [-91.91900871654907, 42.74558004043513],\n      [-91.91898457666794, 42.745357458635716],\n      [-91.92070119043696, 42.74535154937352],\n      [-91.92096672912932, 42.745483522761845],\n      [-91.92110352178906, 42.74550912950613],\n      [-91.92127786537496, 42.745485492511776],\n      [-91.92160241266565, 42.74565292102763],\n      [-91.9217257942803, 42.745786863514724],\n      [-91.92172311207129, 42.74599959510529],\n      [-91.92183040043186, 42.746527481454386],\n      [-91.92210935016931, 42.74716369671481],\n      [-91.92166678568198, 42.747210969414716],\n      [-91.92159704824762, 42.7472739996252],\n      [-91.92226760050114, 42.74730157532212],\n      [-91.92218713423073, 42.750854798206724]\n    ]\n  ]\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/test/in/polygon-with-holes.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {},\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [119.88281249999999, -36.244273184939075],\n        [141.4599609375, -36.244273184939075],\n        [141.4599609375, -16.383391123608387],\n        [119.88281249999999, -16.383391123608387],\n        [119.88281249999999, -36.244273184939075]\n      ],\n      [\n        [124.1455078125, -32.69486597787506],\n        [124.1455078125, -21.002471054356715],\n        [137.373046875, -21.002471054356715],\n        [137.373046875, -32.69486597787506],\n        [124.1455078125, -32.69486597787506]\n      ],\n      [\n        [137.197265625, -19.601194161263145],\n        [137.197265625, -17.35063837604883],\n        [139.70214843749997, -17.35063837604883],\n        [139.70214843749997, -19.601194161263145],\n        [137.197265625, -19.601194161263145]\n      ],\n      [\n        [128.232421875, -29.343875399418],\n        [128.232421875, -24.607069137709694],\n        [133.330078125, -24.607069137709694],\n        [133.330078125, -29.343875399418],\n        [128.232421875, -29.343875399418]\n      ],\n      [\n        [129.8583984375, -27.761329874505233],\n        [132.01171875, -27.761329874505233],\n        [132.01171875, -25.878994400196202],\n        [129.8583984375, -25.878994400196202],\n        [129.8583984375, -27.761329874505233]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/test/in/polygon.geojson",
    "content": "{\n  \"type\": \"Feature\",\n  \"properties\": {\n    \"stroke\": \"#ff0000\"\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [0, 0],\n        [2, 0],\n        [1, 1],\n        [0, 0]\n      ]\n    ]\n  }\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/test/out/complex.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5,\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [113.291015625, -18.062312304546715],\n            [120.19191432980932, -22.77528936151462],\n            [121.54318810392384, -25.306285930551976],\n            [119.95218306756827, -27.601828901700827],\n            [113.291015625, -18.062312304546715]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5,\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [119.95218306756827, -27.601828901700827],\n            [114.2578125, -35.81781315869662],\n            [122.34374999999999, -34.95799531086791],\n            [126.70917631831458, -28.72529077054203],\n            [127.705078125, -29.382175075145277],\n            [130.57632387458509, -29.86733432959661],\n            [141.15234374999997, -37.090239803072066],\n            [138.20226137399294, -31.155901897259547],\n            [142.03125, -31.802892586706747],\n            [137.11424234536216, -28.96726044902029],\n            [132.72450925246426, -20.136944488541086],\n            [133.59375, -18.895892559415024],\n            [132.20271250042364, -19.087306597088112],\n            [129.55078125, -13.752724664396975],\n            [125.18408486195614, -20.05310648070893],\n            [119.17968749999999, -20.879342971957897],\n            [120.19191432980932, -22.77528936151462],\n            [122.29968447674261, -24.214793514348397],\n            [121.54318810392384, -25.306285930551976],\n            [121.55273437499999, -25.324166525738384],\n            [122.51953125000001, -25.961853583502375],\n            [122.51953124999999, -31.278550858946517],\n            [119.95218306756827, -27.601828901700827]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5,\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122.51953125000001, -25.961853583502375],\n            [126.70917631831458, -28.72529077054203],\n            [127.41938336121612, -27.71129801517406],\n            [130.57632387458509, -29.86733432959661],\n            [138.20226137399294, -31.155901897259547],\n            [137.11424234536216, -28.96726044902029],\n            [129.58210608948366, -24.623486932121974],\n            [132.72450925246426, -20.136944488541086],\n            [132.20271250042364, -19.087306597088112],\n            [125.18408486195614, -20.05310648070893],\n            [124.17689372322495, -21.50630775052635],\n            [122.51953124999999, -20.550508894195637],\n            [122.51953125, -23.897592937638223],\n            [122.29968447674261, -24.214793514348397],\n            [122.51953124999999, -24.36493813213397],\n            [122.51953125000001, -25.961853583502375]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F0F\",\n        \"fill\": \"#F0F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5,\n        \"foo\": \"bar\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [122.51953124999999, -24.36493813213397],\n            [127.41938336121612, -27.71129801517406],\n            [129.58210608948366, -24.623486932121974],\n            [124.17689372322495, -21.50630775052635],\n            [122.51953125, -23.897592937638223],\n            [122.51953124999999, -24.36493813213397]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/test/out/hourglass.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff0000\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [2, 0],\n            [1, 1],\n            [0, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff0000\",\n        \"fill\": \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [0, 2],\n            [2, 2],\n            [1, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/test/out/hourglassFeatureCollection.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff0000\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [1, 1],\n            [2, 0],\n            [0, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff0000\",\n        \"fill\": \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [2, 2],\n            [0, 2],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0000ff\",\n        \"fill\": \"#0F0\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2, 2],\n            [3, 1],\n            [4, 2],\n            [2, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0000ff\",\n        \"fill\": \"#F0F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [3, 1],\n            [4, 0],\n            [2, 0],\n            [3, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/test/out/hourglassFeatureCollectionMultiPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff0000\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [2, 0],\n            [1, 1],\n            [0, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff0000\",\n        \"fill\": \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [0, 2],\n            [2, 2],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff0000\",\n        \"fill\": \"#0F0\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2, 2],\n            [4, 2],\n            [3, 1],\n            [2, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff0000\",\n        \"fill\": \"#F0F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [3, 1],\n            [2, 0],\n            [4, 0],\n            [3, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0000ff\",\n        \"fill\": \"#FFF\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2, 2],\n            [3, 3],\n            [4, 2],\n            [2, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0000ff\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [3, 3],\n            [4, 4],\n            [2, 4],\n            [3, 3]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/test/out/hourglassMultiPolygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff0000\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [1, 1],\n            [2, 0],\n            [0, 0]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff0000\",\n        \"fill\": \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [1, 1],\n            [2, 2],\n            [0, 2],\n            [1, 1]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff0000\",\n        \"fill\": \"#0F0\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2, 2],\n            [3, 1],\n            [4, 2],\n            [2, 2]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff0000\",\n        \"fill\": \"#F0F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [3, 1],\n            [4, 0],\n            [2, 0],\n            [3, 1]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/test/out/issue-#1094.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-91.92218713423073, 42.750854798206724],\n            [-91.9139393415105, 42.75096509455043],\n            [-91.91403053661699, 42.74800278177934],\n            [-91.91407345196123, 42.74679733206786],\n            [-91.91410563846941, 42.74537912592471],\n            [-91.91653571983723, 42.745359428388724],\n            [-91.9165088977471, 42.74624187186039],\n            [-91.91667519470603, 42.746249750763376],\n            [-91.91669128796013, 42.74536730740387],\n            [-91.91752277275486, 42.745359428388724],\n            [-91.91750131508273, 42.74636399474419],\n            [-91.91750667950076, 42.74737248420069],\n            [-91.91857047641793, 42.74735355619808],\n            [-91.91856615206176, 42.74748869579865],\n            [-91.91859029194288, 42.746734301373],\n            [-91.918995305504, 42.7463029333329],\n            [-91.91905967852034, 42.7461453552181],\n            [-91.9191481914178, 42.74588535045296],\n            [-91.91914282699976, 42.74558594967556],\n            [-91.91900871654907, 42.74558004043513],\n            [-91.91898457666794, 42.745357458635716],\n            [-91.92070119043696, 42.74535154937352],\n            [-91.92096672912932, 42.745483522761845],\n            [-91.92110352178906, 42.74550912950613],\n            [-91.92127786537496, 42.745485492511776],\n            [-91.92160241266565, 42.74565292102763],\n            [-91.9217257942803, 42.745786863514724],\n            [-91.92172311207129, 42.74599959510529],\n            [-91.92183040043186, 42.746527481454386],\n            [-91.92210935016931, 42.74716369671481],\n            [-91.92166678568198, 42.747210969414716],\n            [-91.92159704824762, 42.7472739996252],\n            [-91.92226760050114, 42.74730157532212],\n            [-91.92218713423073, 42.750854798206724]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/test/out/polygon-with-holes.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F00\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [119.88281249999999, -36.244273184939075],\n            [141.4599609375, -36.244273184939075],\n            [141.4599609375, -16.383391123608387],\n            [119.88281249999999, -16.383391123608387],\n            [119.88281249999999, -36.244273184939075]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#00F\",\n        \"fill\": \"#00F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [124.1455078125, -32.69486597787506],\n            [124.1455078125, -21.002471054356715],\n            [137.373046875, -21.002471054356715],\n            [137.373046875, -32.69486597787506],\n            [124.1455078125, -32.69486597787506]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#0F0\",\n        \"fill\": \"#0F0\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [137.197265625, -19.601194161263145],\n            [137.197265625, -17.35063837604883],\n            [139.70214843749997, -17.35063837604883],\n            [139.70214843749997, -19.601194161263145],\n            [137.197265625, -19.601194161263145]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#F0F\",\n        \"fill\": \"#F0F\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [128.232421875, -29.343875399418],\n            [128.232421875, -24.607069137709694],\n            [133.330078125, -24.607069137709694],\n            [133.330078125, -29.343875399418],\n            [128.232421875, -29.343875399418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#FFF\",\n        \"fill\": \"#FFF\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [129.8583984375, -27.761329874505233],\n            [132.01171875, -27.761329874505233],\n            [132.01171875, -25.878994400196202],\n            [129.8583984375, -25.878994400196202],\n            [129.8583984375, -27.761329874505233]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/test/out/polygon.geojson",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stroke\": \"#ff0000\",\n        \"fill\": \"#F00\",\n        \"stroke-width\": 6,\n        \"fill-opacity\": 0.5\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0, 0],\n            [2, 0],\n            [1, 1],\n            [0, 0]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/test.ts",
    "content": "import { Feature, FeatureCollection, Polygon } from \"geojson\";\nimport fs from \"fs\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport test from \"tape\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { featureEach } from \"@turf/meta\";\nimport { featureCollection } from \"@turf/helpers\";\nimport { kinks } from \"@turf/kinks\";\nimport { unkinkPolygon } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directories = {\n  in: path.join(__dirname, \"test\", \"in\") + path.sep,\n  out: path.join(__dirname, \"test\", \"out\") + path.sep,\n};\n\nconst fixtures = fs.readdirSync(directories.in).map((filename) => {\n  const geojson: FeatureCollection<Polygon> | Feature<Polygon> =\n    loadJsonFileSync(directories.in + filename);\n  return { filename, geojson };\n});\n\ntest(\"unkink-polygon\", (t) => {\n  for (const { filename, geojson } of fixtures) {\n    const unkinked = unkinkPolygon(geojson);\n\n    // Detect if kinks exists\n    featureEach(unkinked, (feature) => {\n      // Throw Error when Issue #1094 is fixed\n      if (kinks(feature).features.length) t.skip(filename + \" has kinks\");\n    });\n\n    colorize(unkinked);\n    if (process.env.REGEN)\n      writeJsonFileSync(directories.out + filename, unkinked);\n\n    const expected = loadJsonFileSync(directories.out + filename);\n    t.deepEquals(unkinked, expected, path.parse(filename).name);\n  }\n  t.end();\n});\n\ntest(\"issue #2504\", (t) => {\n  // fill coords with a circle with an arbitrary number of points\n  const coords = [];\n  const points = 1000000;\n  for (let i = 0; i < points; i++) {\n    const theta = (i / points) * (2 * Math.PI);\n    coords.push([Math.sin(theta), Math.cos(theta)]);\n  }\n  coords.push(coords[0]);\n\n  try {\n    unkinkPolygon({ type: \"Polygon\", coordinates: [coords] });\n    t.pass(\n      \"large number of coordinates in a single ring should not cause an error\"\n    );\n  } catch (e: any) {\n    t.fail(e);\n  }\n\n  t.end();\n});\n\ntest(\"unkink-polygon -- throws\", (t) => {\n  var array = [1, 2, 3, 4, 5];\n  for (const value in array) {\n    t.true(value !== \"isUnique\", \"isUnique\");\n    t.true(value !== \"getUnique\", \"getUnique\");\n  }\n  // @ts-expect-error intentional non-existent function\n  t.throws(() => Array.isUnique(), \"isUnique()\");\n  // @ts-expect-error intentional non-existent function\n  t.throws(() => Array.getUnique(), \"getUnique()\");\n  t.end();\n});\n\nfunction colorize(\n  features: FeatureCollection,\n  colors = [\"#F00\", \"#00F\", \"#0F0\", \"#F0F\", \"#FFF\"],\n  width = 6\n) {\n  const results: Feature[] = [];\n  featureEach(features, (feature, index) => {\n    const color = colors[index % colors.length];\n    feature.properties = Object.assign(\n      {\n        stroke: color,\n        fill: color,\n        \"stroke-width\": width,\n        \"fill-opacity\": 0.5,\n      },\n      feature.properties\n    );\n    results.push(feature);\n  });\n  return featureCollection(results);\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "packages/turf-unkink-polygon/types.ts",
    "content": "import { polygon, multiPolygon } from \"@turf/helpers\";\nimport { unkinkPolygon as unkink } from \"./index.js\";\n\nconst poly = polygon([\n  [\n    [20, 30],\n    [10, 10],\n    [20, 20],\n    [20, 30],\n  ],\n]);\nconst multiPoly = multiPolygon([\n  [\n    [\n      [20, 30],\n      [10, 10],\n      [20, 20],\n      [20, 30],\n    ],\n  ],\n  [\n    [\n      [0, 0],\n      [10, 10],\n      [20, 20],\n      [0, 0],\n    ],\n  ],\n]);\n\nunkink(poly);\nunkink(multiPoly);\n"
  },
  {
    "path": "packages/turf-voronoi/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2017 TurfJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "packages/turf-voronoi/README.md",
    "content": "# @turf/voronoi\n\n<!-- Generated by documentation.js. Update this documentation by updating the source code. -->\n\n## voronoi\n\nTakes a collection of points and a bounding box, and returns a collection\nof Voronoi polygons.\n\nThe Voronoi algorithim used comes from the d3-voronoi package.\n\n### Parameters\n\n*   `points` **[FeatureCollection][1]<[Point][2]>** points around which to calculate the Voronoi polygons\n*   `options` **[Object][3]** Optional parameters (optional, default `{}`)\n\n    *   `options.bbox` **[BBox][4]** clipping rectangle, in \\[minX, minY, maxX, MaxY] order (optional, default `[-180,-85,180,-85]`)\n\n### Examples\n\n```javascript\nconst options = {\n  bbox: [-70, 40, -60, 60]\n};\nconst points = turf.randomPoint(100, options);\nconst voronoiPolygons = turf.voronoi(points, options);\n\n//addToMap\nconst addToMap = [voronoiPolygons, points];\n```\n\nReturns **[FeatureCollection][1]<[Polygon][5]>** a set of polygons, one per input point\n\n[1]: https://tools.ietf.org/html/rfc7946#section-3.3\n\n[2]: https://tools.ietf.org/html/rfc7946#section-3.1.2\n\n[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object\n\n[4]: https://tools.ietf.org/html/rfc7946#section-5\n\n[5]: https://tools.ietf.org/html/rfc7946#section-3.1.6\n\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install @turf/voronoi\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "packages/turf-voronoi/bench.ts",
    "content": "import Benchmark, { Event } from \"benchmark\";\nimport { FeatureCollection, Point } from \"geojson\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport fs from \"fs\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { voronoi } from \"./index.js\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\nconst directory = path.join(__dirname, \"test\", \"in\") + path.sep;\nconst fixtures = fs.readdirSync(directory).map((filename) => {\n  return {\n    filename,\n    name: path.parse(filename).name,\n    geojson: loadJsonFileSync(directory + filename) as FeatureCollection<Point>,\n  };\n});\n\n/**\n * Benchmark Results\n * ninepoints x 22,169 ops/sec ±1.47% (88 runs sampled)\n * simple x 142,285 ops/sec ±3.02% (73 runs sampled)\n */\nconst suite = new Benchmark.Suite(\"turf-voronoi\");\nfor (const { name, geojson } of fixtures) {\n  suite.add(name, () => voronoi(geojson, { bbox: geojson.bbox }));\n}\n\nsuite.on(\"cycle\", (e: Event) => console.log(String(e.target))).run();\n"
  },
  {
    "path": "packages/turf-voronoi/index.ts",
    "content": "import {\n  BBox,\n  Feature,\n  FeatureCollection,\n  Point,\n  Polygon,\n  Position,\n} from \"geojson\";\nimport { polygon, featureCollection, isObject } from \"@turf/helpers\";\nimport { collectionOf } from \"@turf/invariant\";\nimport { cloneProperties } from \"@turf/clone\";\nimport * as d3voronoi from \"d3-voronoi\";\n\n/**\n * Creates a polygon from a list of coordinates. Ensures the polygon is closed.\n *\n * @private\n * @param {Position[]} coords representing a polygon\n * @returns {Feature<Polygon>} polygon\n */\nfunction coordsToPolygon(coords: Position[]) {\n  coords = coords.slice();\n  coords.push(coords[0]);\n  return polygon([coords]);\n}\n\n/**\n * Takes a collection of points and a bounding box, and returns a collection\n * of Voronoi polygons.\n *\n * The Voronoi algorithim used comes from the d3-voronoi package.\n *\n * @function\n * @param {FeatureCollection<Point>} points points around which to calculate the Voronoi polygons\n * @param {Object} [options={}] Optional parameters\n * @param {BBox} [options.bbox=[-180, -85, 180, -85]] clipping rectangle, in [minX, minY, maxX, MaxY] order\n * @returns {FeatureCollection<Polygon>} a set of polygons, one per input point\n * @example\n * const options = {\n *   bbox: [-70, 40, -60, 60]\n * };\n * const points = turf.randomPoint(100, options);\n * const voronoiPolygons = turf.voronoi(points, options);\n *\n * //addToMap\n * const addToMap = [voronoiPolygons, points];\n */\nfunction voronoi(\n  points: FeatureCollection<Point>,\n  options?: { bbox?: BBox }\n): FeatureCollection<Polygon> {\n  // Optional params\n  options = options || {};\n  if (!isObject(options)) throw new Error(\"options is invalid\");\n  const bbox = options.bbox || [-180, -85, 180, 85];\n\n  // Input Validation\n  if (!points) throw new Error(\"points is required\");\n  if (!Array.isArray(bbox)) throw new Error(\"bbox is invalid\");\n  collectionOf(points, \"Point\", \"points\");\n\n  // Main\n  return featureCollection(\n    d3voronoi\n      .voronoi<Feature<Point>>()\n      .x((feature) => feature.geometry.coordinates[0])\n      .y((feature) => feature.geometry.coordinates[1])\n      .extent([\n        [bbox[0], bbox[1]],\n        [bbox[2], bbox[3]],\n      ])\n      .polygons(points.features)\n      .map(function (coords, index) {\n        return Object.assign(coordsToPolygon(coords), {\n          properties: cloneProperties(points.features[index].properties),\n        });\n      })\n  );\n}\n\nexport { voronoi };\nexport default voronoi;\n"
  },
  {
    "path": "packages/turf-voronoi/package.json",
    "content": "{\n  \"name\": \"@turf/voronoi\",\n  \"version\": \"7.3.4\",\n  \"description\": \"Takes a collection of points and a bounding box, and returns a collection of Voronoi polygons.\",\n  \"author\": \"Turf Authors\",\n  \"contributors\": [\n    \"Philippe Riviere <@Fil>\",\n    \"Mike Bostock <@mbostock>\",\n    \"Steve Bennett <@stevage1>\",\n    \"Denis Carriere <@DenisCarriere>\"\n  ],\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/Turfjs/turf/issues\"\n  },\n  \"homepage\": \"https://github.com/Turfjs/turf\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/Turfjs/turf.git\"\n  },\n  \"funding\": \"https://opencollective.com/turf\",\n  \"publishConfig\": {\n    \"access\": \"public\"\n  },\n  \"keywords\": [\n    \"turf\",\n    \"geometry\",\n    \"voronoi\",\n    \"polygons\",\n    \"points\"\n  ],\n  \"type\": \"module\",\n  \"main\": \"dist/cjs/index.cjs\",\n  \"module\": \"dist/esm/index.js\",\n  \"types\": \"dist/esm/index.d.ts\",\n  \"exports\": {\n    \"./package.json\": \"./package.json\",\n    \".\": {\n      \"import\": {\n        \"types\": \"./dist/esm/index.d.ts\",\n        \"default\": \"./dist/esm/index.js\"\n      },\n      \"require\": {\n        \"types\": \"./dist/cjs/index.d.cts\",\n        \"default\": \"./dist/cjs/index.cjs\"\n      }\n    }\n  },\n  \"sideEffects\": false,\n  \"files\": [\n    \"dist\"\n  ],\n  \"scripts\": {\n    \"bench\": \"tsx bench.ts\",\n    \"build\": \"tsup --config ../../tsup.config.ts\",\n    \"test\": \"pnpm run /test:.*/\",\n    \"test:tape\": \"tsx test.ts\"\n  },\n  \"devDependencies\": {\n    \"@types/benchmark\": \"^2.1.5\",\n    \"@types/tape\": \"^5.8.1\",\n    \"benchmark\": \"^2.1.4\",\n    \"load-json-file\": \"^7.0.1\",\n    \"tape\": \"^5.9.0\",\n    \"tsup\": \"^8.4.0\",\n    \"tsx\": \"^4.19.4\",\n    \"typescript\": \"^5.8.3\",\n    \"write-json-file\": \"^6.0.0\"\n  },\n  \"dependencies\": {\n    \"@turf/clone\": \"workspace:*\",\n    \"@turf/helpers\": \"workspace:*\",\n    \"@turf/invariant\": \"workspace:*\",\n    \"@types/d3-voronoi\": \"^1.1.12\",\n    \"@types/geojson\": \"^7946.0.10\",\n    \"d3-voronoi\": \"1.1.2\",\n    \"tslib\": \"^2.8.1\"\n  }\n}\n"
  },
  {
    "path": "packages/turf-voronoi/test/in/ninepoints.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"bbox\": [143, -38, 146, -35],\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [144.33837890625, -37.14280344371683]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [144.931640625, -37.35269280367274]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [145.140380859375, -36.456636011596196]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [145.469970703125, -36.77409249464194]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [145.755615234375, -37.090239803072066]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [145.4150390625, -37.52715361723378]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [145.887451171875, -37.483576550426996]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [144.60205078125, -36.57142382346275]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [144.86572265625, -37.596824001083654]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-voronoi/test/in/simple.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"bbox\": [140, -40, 160, -30],\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [145, -37]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-voronoi/test/in/with-properties.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"bbox\": [143, -38, 146, -35],\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"property1\": 1,\n        \"property2\": 2\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [144.33837890625, -37.14280344371683]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"property1\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [144.931640625, -37.35269280367274]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stringProperty\": \"string\"\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [145.140380859375, -36.456636011596196]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"multiLevelProperty\": {\n          \"property1\": 1\n        }\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [145.469970703125, -36.77409249464194]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"floatProperty\": 1.1\n      },\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [145.755615234375, -37.090239803072066]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [145.4150390625, -37.52715361723378]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [145.887451171875, -37.483576550426996]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [144.60205078125, -36.57142382346275]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [144.86572265625, -37.596824001083654]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-voronoi/test/in/world.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-77.6953125, 59.5343180010956]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-78.75, 41.244772343082076]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-1.7578125, 65.80277639340238]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [31.289062500000004, 32.84267363195431]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [72.0703125, 60.06484046010452]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [-29.8828125, 1.0546279422758869]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [81.9140625, 12.554563528593656]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Point\",\n        \"coordinates\": [50.625, -4.214943141390639]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-voronoi/test/out/ninepoints.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143, -36.17865921750102],\n            [144.7306872649525, -36.97731260260012],\n            [144.58469067823404, -37.38997746052463],\n            [144.05948693381836, -38],\n            [143, -38],\n            [143, -36.17865921750102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.58469067823404, -37.38997746052463],\n            [144.7306872649525, -36.97731260260012],\n            [144.9502509842771, -36.88468636726737],\n            [145.02826439034735, -36.902859896834244],\n            [145.28197625539775, -37.13891325365974],\n            [145.13749583645568, -37.53924080856172],\n            [144.58469067823404, -37.38997746052463]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146, -35.89398200640089],\n            [145.02826439034735, -36.902859896834244],\n            [144.9502509842771, -36.88468636726737],\n            [144.54837968093918, -35],\n            [146, -35],\n            [146, -35.89398200640089]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.02826439034735, -36.902859896834244],\n            [146, -35.89398200640089],\n            [146, -36.58231923105632],\n            [145.37634807465002, -37.145797192532186],\n            [145.28197625539775, -37.13891325365974],\n            [145.02826439034735, -36.902859896834244]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.37634807465002, -37.145797192532186],\n            [146, -36.58231923105632],\n            [146, -37.22709115402949],\n            [145.63680507441603, -37.348824340099675],\n            [145.37634807465002, -37.145797192532186]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.13749583645568, -37.53924080856172],\n            [145.28197625539775, -37.13891325365974],\n            [145.37634807465002, -37.145797192532186],\n            [145.63680507441603, -37.348824340099675],\n            [145.69687188417421, -38],\n            [145.1959341358453, -38],\n            [145.13749583645568, -37.53924080856172]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.63680507441603, -37.348824340099675],\n            [146, -37.22709115402949],\n            [146, -38],\n            [145.69687188417421, -38],\n            [145.63680507441603, -37.348824340099675]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.54837968093918, -35],\n            [144.9502509842771, -36.88468636726737],\n            [144.7306872649525, -36.97731260260012],\n            [143, -36.17865921750102],\n            [143, -35],\n            [144.54837968093918, -35]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.05948693381836, -38],\n            [144.58469067823404, -37.38997746052463],\n            [145.13749583645568, -37.53924080856172],\n            [145.1959341358453, -38],\n            [144.05948693381836, -38]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-voronoi/test/out/simple.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [140, -40],\n            [140, -30],\n            [160, -30],\n            [160, -40],\n            [140, -40]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-voronoi/test/out/with-properties.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"property1\": 1,\n        \"property2\": 2\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [143, -36.17865921750102],\n            [144.7306872649525, -36.97731260260012],\n            [144.58469067823404, -37.38997746052463],\n            [144.05948693381836, -38],\n            [143, -38],\n            [143, -36.17865921750102]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"property1\": 1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.58469067823404, -37.38997746052463],\n            [144.7306872649525, -36.97731260260012],\n            [144.9502509842771, -36.88468636726737],\n            [145.02826439034735, -36.902859896834244],\n            [145.28197625539775, -37.13891325365974],\n            [145.13749583645568, -37.53924080856172],\n            [144.58469067823404, -37.38997746052463]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"stringProperty\": \"string\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [146, -35.89398200640089],\n            [145.02826439034735, -36.902859896834244],\n            [144.9502509842771, -36.88468636726737],\n            [144.54837968093918, -35],\n            [146, -35],\n            [146, -35.89398200640089]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"multiLevelProperty\": {\n          \"property1\": 1\n        }\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.02826439034735, -36.902859896834244],\n            [146, -35.89398200640089],\n            [146, -36.58231923105632],\n            [145.37634807465002, -37.145797192532186],\n            [145.28197625539775, -37.13891325365974],\n            [145.02826439034735, -36.902859896834244]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"floatProperty\": 1.1\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.37634807465002, -37.145797192532186],\n            [146, -36.58231923105632],\n            [146, -37.22709115402949],\n            [145.63680507441603, -37.348824340099675],\n            [145.37634807465002, -37.145797192532186]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.13749583645568, -37.53924080856172],\n            [145.28197625539775, -37.13891325365974],\n            [145.37634807465002, -37.145797192532186],\n            [145.63680507441603, -37.348824340099675],\n            [145.69687188417421, -38],\n            [145.1959341358453, -38],\n            [145.13749583645568, -37.53924080856172]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [145.63680507441603, -37.348824340099675],\n            [146, -37.22709115402949],\n            [146, -38],\n            [145.69687188417421, -38],\n            [145.63680507441603, -37.348824340099675]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.54837968093918, -35],\n            [144.9502509842771, -36.88468636726737],\n            [144.7306872649525, -36.97731260260012],\n            [143, -36.17865921750102],\n            [143, -35],\n            [144.54837968093918, -35]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [144.05948693381836, -38],\n            [144.58469067823404, -37.38997746052463],\n            [145.13749583645568, -37.53924080856172],\n            [145.1959341358453, -38],\n            [144.05948693381836, -38]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-voronoi/test/out/world.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-41.56996973938402, 85],\n            [-38.52398617447919, 48.100274906530274],\n            [-180, 56.25865423806812],\n            [-180, 85],\n            [-41.56996973938402, 85]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-180, 56.25865423806812],\n            [-38.52398617447919, 48.100274906530274],\n            [-36.7431204146418, 42.51705440603022],\n            [-141.6177610228591, -85],\n            [-180, -85],\n            [-180, 56.25865423806812]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [36.871239164004564, 85],\n            [35.7322116127175, 70.34450916934847],\n            [-5.540315755817815, 28.96332494600883],\n            [-36.7431204146418, 42.51705440603022],\n            [-38.52398617447919, 48.100274906530274],\n            [-41.56996973938402, 85],\n            [36.871239164004564, 85]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-5.540315755817815, 28.96332494600883],\n            [35.7322116127175, 70.34450916934847],\n            [60.7037698542609, 32.93487176070357],\n            [56.489203502863305, 22.418247908629482],\n            [10.366680994657429, -1.6475788146525692],\n            [-5.540315755817815, 28.96332494600883]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [35.7322116127175, 70.34450916934847],\n            [36.871239164004564, 85],\n            [180, 85],\n            [180, 57.65209852438559],\n            [60.7037698542609, 32.93487176070357],\n            [35.7322116127175, 70.34450916934847]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-141.6177610228591, -85],\n            [-36.7431204146418, 42.51705440603022],\n            [-5.540315755817815, 28.96332494600883],\n            [10.366680994657429, -1.6475788146525692],\n            [4.910918497247953, -85],\n            [-141.6177610228591, -85]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [56.489203502863305, 22.418247908629482],\n            [60.7037698542609, 32.93487176070357],\n            [180, 57.65209852438559],\n            [180, -85],\n            [114.06047242298075, -85],\n            [56.489203502863305, 22.418247908629482]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {},\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [4.910918497247953, -85],\n            [10.366680994657429, -1.6475788146525692],\n            [56.489203502863305, 22.418247908629482],\n            [114.06047242298075, -85],\n            [4.910918497247953, -85]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "packages/turf-voronoi/test.ts",
    "content": "import test from \"tape\";\nimport { glob } from \"glob\";\nimport path from \"path\";\nimport { fileURLToPath } from \"url\";\nimport { loadJsonFileSync } from \"load-json-file\";\nimport { writeJsonFileSync } from \"write-json-file\";\nimport { voronoi } from \"./index.js\";\nimport { FeatureCollection, Point } from \"geojson\";\n\nconst __dirname = path.dirname(fileURLToPath(import.meta.url));\n\ntest(\"turf-voronoi\", (t) => {\n  glob\n    .sync(path.join(__dirname, \"test\", \"in\", \"*.json\"))\n    .forEach((filepath) => {\n      const { name } = path.parse(filepath);\n      const geojson = loadJsonFileSync(filepath) as FeatureCollection<Point>;\n      const results = voronoi(geojson, { bbox: geojson.bbox });\n\n      const out = filepath.replace(\n        path.join(\"test\", \"in\"),\n        path.join(\"test\", \"out\")\n      );\n      if (process.env.REGEN) writeJsonFileSync(out, results);\n      t.deepEqual(results, loadJsonFileSync(out), name);\n    });\n  t.end();\n});\n"
  },
  {
    "path": "packages/turf-voronoi/tsconfig.json",
    "content": "{\n  \"extends\": \"../../tsconfig.shared.json\"\n}\n"
  },
  {
    "path": "pnpm-workspace.yaml",
    "content": "packages:\n  - \"packages/*\"\n"
  },
  {
    "path": "releases/4.1.0.md",
    "content": "# New minor Release! Turf 4.1.0 🎉 \n\n**Note:** GitHub Milestones are now used to track TurfJS releases ([4.1.0 Milestone](https://github.com/Turfjs/turf/milestone/5?closed=1))\n\n## New Modules\n\n- [`@turf/line-arc`](https://github.com/Turfjs/turf/pull/657)\n- [`@turf/polygon-to-linestring`](https://github.com/Turfjs/turf/pull/646)\n- [`@turf/bbox-clip`](https://github.com/Turfjs/turf/pull/652)\n- [`@turf/line-overlap`](https://github.com/Turfjs/turf/pull/640)\n\n## Enhancements\n\n- added centered param to point-grid (PR: https://github.com/Turfjs/turf/pull/650)\n- Single `module.export` helpers, invariant & meta (Commit: https://github.com/Turfjs/turf/commit/9cebb2100cf545fec49488c80140909ab54358b5)\n\n## Bug Fixes\n\n- Turf.invariant fails on string value as coordinate (PR: https://github.com/Turfjs/turf/pull/643)\n- Handle precision=0 turf-truncate (PR: https://github.com/Turfjs/turf/pull/641)\n- Added `radiansToDistance`, `distanceToRadians` & `distanceToDegrees` to Turf core library from `@turf/helpers`. (Commit: https://github.com/Turfjs/turf/commit/a88d77a3e7f76860b3c138a716da8b603a407c8e)\n- Removed process.hrtime in `@turf/polygon-unkink`(issue: https://github.com/mclaeysb/simplepolygon/issues/5)\n\nCC: @Turfjs/ownership \n"
  },
  {
    "path": "releases/4.2.0.md",
    "content": "# New minor Release! Turf 4.2.0 🎉 \n\nTurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/6?closed=1).\n\n## Contributors\n\n- @rowanwins \n- @stebogit \n- @DenisCarriere\n\n## New Modules\n\n- [`@turf/sector`](https://github.com/Turfjs/turf/pull/653)\n- [`@turf/linestring-to-polygon`](https://github.com/Turfjs/turf/pull/672)\n\n## Enhancements\n\n- [Add mutate param to `@turf/flip`](https://github.com/Turfjs/turf/issues/693)\n- [Add Geometry & GeometryCollection support to `@turf/truncate`](https://github.com/Turfjs/turf/pull/677)\n- [`@turf/inside` performance increase](https://github.com/Turfjs/turf/pull/675)\n- [Add properties param to `@turf/circle`](https://github.com/Turfjs/turf/pull/668)\n- [Added `bearingToAngle` method to turf-helpers](https://github.com/Turfjs/turf/pull/663)\n\n## Bug Fixes\n\n- [Fix `@turf/buffer` points in high latitudes](https://github.com/Turfjs/turf/pull/667)\n- [lineIntersect returns the same point several times](https://github.com/Turfjs/turf/issues/688)\n- [`@turf/flip` incorrect if z-elevation is present](https://github.com/Turfjs/turf/issues/669)\n\n## Changes\n\n- [Change output types `@turf/polygon-to-linestring`](https://github.com/Turfjs/turf/pull/686)\n\n## Documentation\n- [Update JSDocs examples](https://github.com/Turfjs/turf/pull/670/files)\n- [Include many more AddToMap to modules](https://github.com/Turfjs/turf/pull/664)\n\nCC: @Turfjs/ownership \n"
  },
  {
    "path": "releases/4.3.0.md",
    "content": "# New minor Release! Turf 4.3.1 🎉\n\nTurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/6?closed=1).\n\n## Contributors\n\n- @chrisveness\n- @dpmcmlxxvi\n- @stebogit\n- @rowanwins\n- @AbelVM\n- @morganherlocker \n- @DenisCarriere\n- @RaumZeit\n- @Tgroup\n\n## 🚀 New Modules\n\n- [Rhumb Line](https://en.wikipedia.org/wiki/Rhumb_line) Modules (https://github.com/Turfjs/turf/pull/728)\n  - [`@turf/rhumb-bearing`](https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-bearing)\n  - [`@turf/rhumb-distance`](https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-distance)\n  - [`@turf/rhumb-destination`](https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-destination)\n- [`@turf/polygon-tangents`](https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-tangents) Finds the tangents of a (Multi)Polygon from a Point. (https://github.com/Turfjs/turf/pull/708)\n- [`@turf/rewind`](https://github.com/Turfjs/turf/tree/master/packages/turf-rewind) Rewind LineString or Polygon outer ring ~clockwise~ counter-clockwise and inner rings ~counterclockwise~ clockwise (https://github.com/Turfjs/turf/pull/700 & https://github.com/Turfjs/turf/issues/66)\n- [`@turf/isobands`](https://github.com/Turfjs/turf/tree/master/packages/turf-isobands) - Takes a grid FeatureCollection of Point features with z-values and an array of value breaks and generates filled contour isobands. (https://github.com/Turfjs/turf/pull/619)\n\n## 🏅 New Features\n\n- New function [convertDistance](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#convertdistance) to [`@turf/helpers`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers) (https://github.com/Turfjs/turf/pull/732)\n- Add ignoreBoundary param [`@turf/inside`](https://github.com/Turfjs/turf/tree/master/packages/turf-inside) (https://github.com/Turfjs/turf/pull/706)\n- Add [flattenEach](https://github.com/Turfjs/turf/tree/master/packages/turf-meta#flatteneach)/[flattenReduce](https://github.com/Turfjs/turf/tree/master/packages/turf-meta#flattenreduce) to [`@turf/meta`](https://github.com/Turfjs/turf/tree/master/packages/turf-meta). (https://github.com/Turfjs/turf/pull/712 & https://github.com/Turfjs/turf/issues/692)\n- New Feature [`getGeom`](https://github.com/Turfjs/turf/tree/master/packages/turf-invariant#getgeom) & [`getGeomType`](https://github.com/Turfjs/turf/tree/master/packages/turf-invariant#getgeomtype) in [`@turf/invariant`](https://github.com/Turfjs/turf/tree/master/packages/turf-invariant) (https://github.com/Turfjs/turf/pull/720)\n- Adds [`round()`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#round), [`radians2degrees()`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#radians2degrees) and [`degrees2radians()`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#degrees2radians) to [`turf-helpers`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers)\n (https://github.com/Turfjs/turf/pull/715)\n- **⭐️ New** Add FeatureCollection & GeometryCollection support to [`@turf/rewind`](https://github.com/Turfjs/turf/tree/master/packages/turf-rewind) (https://github.com/Turfjs/turf/pull/741)\n\n## 🐛 Bug Fixes\n\n- Fix [`@turf/circle`](https://github.com/Turfjs/turf/tree/master/packages/turf-circle) translate properties (https://github.com/Turfjs/turf/pull/717)\n- Apply equidistance [`@turf/buffer`](https://github.com/Turfjs/turf/tree/master/packages/turf-buffer) to polygons (https://github.com/Turfjs/turf/issues/660 & https://github.com/Turfjs/turf/pull/718)\n- Fix jsts empty (Multi)Polygon error [`@turf/difference`](https://github.com/Turfjs/turf/tree/master/packages/turf-difference) (https://github.com/Turfjs/turf/pull/725)\n- Support Geometry Objects & Collection (https://github.com/Turfjs/turf/issues/710)\n  - [`@turf/line-intersect`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-intersect) (https://github.com/Turfjs/turf/pull/731)\n  - [`@turf/line-chunk`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-chunk) (https://github.com/Turfjs/turf/pull/726)\n  - [`@turf/line-segment`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-segment) (https://github.com/Turfjs/turf/pull/727 & https://github.com/Turfjs/turf/pull/711)\n  - [`@turf/line-overlap`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-overlap) (https://github.com/Turfjs/turf/pull/711)\n- **New** Reverse winding - Polygon CCW & Polygon CW [`@turf/rewind`](https://github.com/Turfjs/turf/tree/master/packages/turf-rewind) (https://github.com/Turfjs/turf/pull/741)\n- **⭐️ New** Fix Feature GeometryCollection to [`@turf/buffer`](https://github.com/Turfjs/turf/tree/master/packages/turf-buffer) (https://github.com/Turfjs/turf/pull/739)\n- **⭐️ New** Re-enable negative `radius` to [`@turf/buffer`](https://github.com/Turfjs/turf/tree/master/packages/turf-buffer) (https://github.com/Turfjs/turf/pull/736)\n \nTwitter: https://twitter.com/DenisCarriere/status/862854876484829185\nCC: @Turfjs/ownership \n"
  },
  {
    "path": "releases/4.4.0.md",
    "content": "# New minor release! Turf 4.4.0 🎉\n\nTurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/8?closed=1).\n\n## Contributors\n\n- @stebogit\n- @dpmcmlxxvi\n- @rowanwins\n- @NickCis\n- @morganherlocker \n- @DenisCarriere\n\n## 🚀 New Modules\n\n- [`@turf/line-offset`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-offset)\nAdds a new lineOffset module as per this issue. Basically takes an input line and returns a new line offset by the distance. (PR https://github.com/Turfjs/turf/pull/729 - Author @rowanwins)\n- [`@turf/polygonize`](https://github.com/Turfjs/turf/tree/master/packages/turf-polygonize)\nPolygonizes (Multi)LineString(s) into Polygons. Implementation of GEOSPolygonize function (geos::operation::polygonize::Polygonizer). (PR https://github.com/Turfjs/turf/pull/767 - Author @NickCis)\n- [`@turf/transform-rotate`](https://github.com/Turfjs/turf/tree/master/packages/turf-transform-rotate)\nRotates any geojson Feature or Geometry of a specified angle, around its centroid or a given pivot point; all rotations follow the right-hand rule. (Issue https://github.com/Turfjs/turf/issues/747 - Author @stebogit)\n- [`@turf/transform-translate`](https://github.com/Turfjs/turf/tree/master/packages/turf-transform-translate)\nMoves any geojson Feature or Geometry of a specified distance along a Rhumb Line on the provided direction angle. (Issue https://github.com/Turfjs/turf/issues/747 - Author @stebogit)\n- [`@turf/transform-scale`](https://github.com/Turfjs/turf/tree/master/packages/turf-transform-scale)\nScale a GeoJSON from a given point by a factor of scaling (ex: factor=2 would make the GeoJSON 200% larger). If a FeatureCollection is provided, the origin point will be calculated based on each individual Feature. (Issue https://github.com/Turfjs/turf/issues/747 - Author @stebogit)\n\n## 🏅 New Features\n- Support z-coordinate as input for [`@turf/turf-tin`](https://github.com/Turfjs/turf/tree/master/packages/turf-tin) (PR https://github.com/Turfjs/turf/pull/772)\n- Adds properties parameter to [`@turf/centroid`](https://github.com/Turfjs/turf/tree/master/packages/turf-centroid) and [`@turf/center`](https://github.com/Turfjs/turf/tree/master/packages/turf-center) (PR https://github.com/Turfjs/turf/pull/769)\n- Include Yarn.lock for all modules & Lerna uses Yarn (Issue https://github.com/Turfjs/turf/issues/704, https://github.com/Turfjs/turf/issues/765, PR https://github.com/Turfjs/turf/pull/766)\n- Use `Tap` at root which enables code coverage reports (Issue https://github.com/Turfjs/turf/issues/328 & PR https://github.com/Turfjs/turf/pull/762)\n- Support z-coordinate as input for [`@turf/pointplane`](https://github.com/Turfjs/turf/tree/master/packages/turf-planepoint) (PR https://github.com/Turfjs/turf/pull/754)\n- Add core tests - file management & package.json rules (PR https://github.com/Turfjs/turf/pull/749 & https://github.com/Turfjs/turf/pull/756)\n\n## 🐛 Bug Fixes\n- Website http://turfjs.org is back up and running (Issue https://github.com/Turfjs/turf/issues/777)\n- [`@turf/rhumb-destination`](https://github.com/Turfjs/turf/tree/master/packages/turf-planepoint) issue at 180th meridian (Issue https://github.com/Turfjs/turf/issues/770 & PR https://github.com/Turfjs/turf/pull/771)\n- Getting too large numbers for Longitude (Issue https://github.com/Turfjs/turf/issues/758 & PR https://github.com/Turfjs/turf/pull/763)\n- Throw error if FeatureCollection not array #751 (PR https://github.com/Turfjs/turf/pull/760)\n- Change default param coordinates to 3 @turf/truncate (PR https://github.com/Turfjs/turf/pull/757)\n- along returns a point that is not found by [`@turf/point-on-line`](https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-line) (Issue https://github.com/Turfjs/turf/issues/691)\n- Fix location of intersect point for [`@turf/point-on-line`](https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-line). (PR https://github.com/Turfjs/turf/pull/750)\n- Handle empty geometries as undefined [`@turf/buffer`](https://github.com/Turfjs/turf/tree/master/packages/turf-buffer) (PR https://github.com/Turfjs/turf/pull/746)\n\nTwitter: https://twitter.com/DenisCarriere/status/871909188787724288\nCC: @Turfjs/ownership \n"
  },
  {
    "path": "releases/4.5.0.md",
    "content": "# New minor release! Turf 4.5.2 🎉\n\nTurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/9?closed=1).\n\n## Contributors\n\n- @wnordmann\n- @rowanwins\n- @stebogit\n- @mcdeurloo\n- @NickCis\n- @dpmcmlxxvi\n- @morganherlocker \n- @DenisCarriere\n\n## 🚀 New Modules\n\n- [`@turf/clusters`](https://github.com/Turfjs/turf/tree/master/packages/turf-clusters) Takes a set of points and partition them into clusters using the [k-means clustering](https://en.wikipedia.org/wiki/K-means_clustering) algorithm.\n(PR https://github.com/Turfjs/turf/pull/787 - Author @stebogit )\n\n- [`@turf/boolean-disjoint`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-disjoint) Boolean-disjoint returns (TRUE) if the intersection of the two geometries is an empty set.\n(PR https://github.com/Turfjs/turf/pull/805 - Author @rowanwins)\n\n- [`@turf/boolean-contains`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-contains) Boolean-contains returns True if the second geometry is completely contained by the first geometry. The interiors of both geometries must intersect and, the interior and boundary of the secondary (geometry b) must not intersect the exterior of the primary (geometry a). Boolean-contains returns the exact opposite result of the `@turf/boolean-within`.\n(PR https://github.com/Turfjs/turf/pull/797 - Author @rowanwins)\n\n- [`@turf/boolean-crosses`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-crosses) Boolean-Crosses returns True if the intersection results in a geometry whose dimension is one less than the maximum dimension of the two source geometries and the intersection set is interior to both source geometries.\nBoolean-Crosses returns t (TRUE) for only multipoint/polygon, multipoint/linestring, linestring/linestring, linestring/polygon, and linestring/multipolygon comparisons.\n(PR https://github.com/Turfjs/turf/pull/796 - Author @rowanwins)\n\n- [`@turf/boolean-clockwise`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-clockwise) Takes a ring and return true or false whether or not the ring is clockwise or counter-clockwise.\n(PR https://github.com/Turfjs/turf/pull/789 - Authors @morganherlocker @stebogit)\n\n- [`@turf/clone`](https://github.com/Turfjs/turf/tree/master/packages/turf-clone) Prevents GeoJSON coordinates from being mutated, similar to `JSON.parse(JSON.stringify(geojson))`.\nOnly cloning the coordinates can be 3x-20x faster than the **parse + stringify** approach.\n(PR https://github.com/Turfjs/turf/pull/824 - Author @DenisCarriere)\n\n## 🏅 New Features/Enhancements\n\n- [`convertArea`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#convertarea) Converts a area to the requested unit. (PR https://github.com/Turfjs/turf/pull/821 - Author @wnordmann)\n- Adds mask option to `@turf/point-grid` (PR https://github.com/Turfjs/turf/pull/791)\n- New @turf/isolines based on MarchingSquares.js (PR https://github.com/Turfjs/turf/pull/781)\n- Use ES6 modules / Add module.js to @turf/turf (PR https://github.com/Turfjs/turf/pull/793)\n- Create-new-module script (PR https://github.com/Turfjs/turf/pull/823)\n\n## 🐛 Bug Fixes\n\n- Buffer - Drop circle buffer operation (PR https://github.com/Turfjs/turf/pull/786)\n- Fixes `@turf/idw` bad property name #774  (PR https://github.com/Turfjs/turf/pull/800)\n- Fix for @turf/polygon-tangents - Resolves #785 (PR https://github.com/Turfjs/turf/pull/792)\n\nTwitter: https://twitter.com/DenisCarriere/status/880839653242408961\nCC: @Turfjs/ownership \nRef: https://github.com/Turfjs/turf/issues/825\n"
  },
  {
    "path": "releases/4.6.0.md",
    "content": "# New minor release! Turf 4.6.0 🎉\n\nTurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/10?closed=1).\n\n## Contributors\n\n- @stebogit\n- @rowanwins\n- @DenisCarriere\n- @grundid\n- @tcql \n- @thiagoxvo\n- @andrewharvey\n\n## 🚀 New Modules\n\n- [`@turf/clean-coords`](https://github.com/Turfjs/turf/tree/master/packages/turf-clean-coords) Removes redundant coordinates from any GeoJSON Geometry.\n(PR https://github.com/Turfjs/turf/pull/875 - Author @stebogit)\n- [`@turf/interpolate`](https://github.com/Turfjs/turf/tree/master/packages/turf-interpolate) Takes a set of points and estimates their 'property' values on a grid using the [Inverse Distance Weighting (IDW) method.](https://en.wikipedia.org/wiki/Inverse_distance_weighting).\n(PR https://github.com/Turfjs/turf/pull/832 - Author @stebogit)\n- [`@turf/clusters-dbscan`](https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-dbscan) Takes a set of Points and partition them into clusters according to [DBSCAN's](https://en.wikipedia.org/wiki/DBSCAN) data clustering algorithm.\n(PR https://github.com/Turfjs/turf/pull/812 and https://github.com/Turfjs/turf/pull/851 - Author @DenisCarriere)\n    > special mention to [this incredibly instructive and fun interactive map](https://github.com/DenisCarriere/turf-example-clusters-dbscan) by @DenisCarriere 😎👏 \n- [`@turf/clusters`](https://github.com/Turfjs/turf/tree/master/packages/turf-clusters) Provides `getCluster`, `clusterEach`, and `clusterReduce` functions.\n(PR https://github.com/Turfjs/turf/pull/847 - Author @DenisCarriere)\n- [`@turf/boolean-point-on-line`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-on-line) Returns true if a point is on a line. Accepts a optional parameter to ignore the start and end vertices of the linestring.\n(PR https://github.com/Turfjs/turf/pull/858 - Author @rowanwins)\n- [`@turf/boolean-overlap`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-overlap) Takes two features and returns true or false whether or not they overlap, i.e. whether any pair of edges on the two polygons intersect. If there \nare any edge intersections, the polygons overlap.\n(PR https://github.com/Turfjs/turf/pull/856 and https://github.com/Turfjs/turf/pull/868 - Author @stebogit @tcql)\n- [`@turf/boolean-equal`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-equal) Determine whether two geometries of the same type have identical X,Y coordinate values.\n(PR https://github.com/Turfjs/turf/pull/869 - Author @stebogit @tcql)\n\n## 🏅 New Features/Enhancements\n\n- Sets `centered` param default to `true` in [`@turf/point-grid`](https://github.com/Turfjs/turf/tree/master/packages/turf-point-grid) \n(PR https://github.com/Turfjs/turf/pull/836 - Contributor @stebogit)\n- Adds `MultiLineString` support for [`@turf/point-on-line`](https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-line) \n(PR https://github.com/Turfjs/turf/pull/838 - Contributor @stebogit)\n- Renames `@turf/clusters` => `@turf/clusters-kmeans`, plus adds deprecated warning message to `@turf/clusters@4.5.2`\n(See Issue https://github.com/Turfjs/turf/issues/845)\n- Changes output type of `@turf/clusters-kmeans`\n(See Issue https://github.com/Turfjs/turf/issues/850 - Contributor @DenisCarriere)\n- Adds `segmentEach` and `segmentReduce` functions to `@turf/meta`\n(See Issue https://github.com/Turfjs/turf/issues/850 - Contributor @DenisCarriere)\n- Adds tests and linting on JSDoc in TurfJS core from `turf-www`; see Issue https://github.com/Turfjs/turf/issues/859\n(PR https://github.com/Turfjs/turf/issues/857 + https://github.com/Turfjs/turf/issues/864 + https://github.com/Turfjs/turf/issues/870 - Contributor @DenisCarriere @stebogit)\n- Introduces `null` Geometry support across TurfJS modules (See Issue https://github.com/Turfjs/turf/issues/853)\n(PR https://github.com/Turfjs/turf/issues/866 - Contributor @DenisCarriere)\n- Includes feature(Sub)Index in `coordEach`/`coordReduce` (@turf/meta) 🎉\n(PR https://github.com/Turfjs/turf/issues/872 - Contributor @DenisCarriere)\n- Adds `bbox` and `id` params plus `geometry` method to `@turf/helpers`\n(PR https://github.com/Turfjs/turf/issues/877 - Contributor @DenisCarriere)\n\n\n## 🐛 Bug Fixes\n\n- Applies `@turf/truncate` to [`@turf/line-split`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-split) \n`splitter` input to avoid approximation errors. Fixed #852 \n(PR https://github.com/Turfjs/turf/pull/855)\n- Fixes `@turf-mask` error (See Issue https://github.com/Turfjs/turf/issues/837)\n(PR https://github.com/Turfjs/turf/pull/865 - Contributor @thiagoxvo)\n- Fixes `create-new-module` script error on `LICENSE` file creation (See Issue https://github.com/Turfjs/turf/issues/861)\n(commit [df6986e](https://github.com/Turfjs/turf/commit/df6986ec0a5c353babb60836ec97c21923913e79))\n- Fixes `@turf/isobands` error on `commonProperties` (See Issue https://github.com/Turfjs/turf/issues/831)\n(commit [1663f07](https://github.com/Turfjs/turf/commit/1663f077c075c8902dbeff4acf68b1c8e0151853))\n\nTwitter: <Tweet>\nCC: @Turfjs/ownership \n"
  },
  {
    "path": "releases/4.7.0.md",
    "content": "# New minor release! Turf 4.7.0 🎉\n\nTurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/11?closed=1).\n\n## Contributors\n\n- @stebogit\n- @rowanwins\n- @DenisCarriere\n- @tjdett\n- @vicvolk\n\n## 🚀 New Modules\n### [`@turf/projection`][projection]\n- **toMercator**: Converts a WGS84 GeoJSON object into Mercator (EPSG:900913) projection\n- **toWgs84**: Converts a Mercator (EPSG:900913) GeoJSON object into WGS84 projection\n\n(PR https://github.com/Turfjs/turf/pull/927 - Author @stebogit)\n\n### [`@turf/point-to-line-distance`][point-to-line-distance]\n\nReturns the minimum distance between a {@link Point} and a {@link LineString}, being the distance from a line the minimum distance between the point and any segment of the `LineString`.\n\n(PR https://github.com/Turfjs/turf/pull/925 - Author @stebogit)\n\n### [`@turf/boolean-within`][boolean-within]\n\nBoolean-within returns true if the first geometry is completely within the second geometry. The interiors of both geometries must intersect and, the interior and boundary of the primary (geometry a) must not intersect the exterior of the secondary (geometry b). Boolean-within returns the exact opposite result of the [`@turf/boolean-contains`][boolean-contains].\n\n(PR https://github.com/Turfjs/turf/pull/924 - Author @rowanwins)\n\n## 🏅 New Features/Enhancements\n- Updates [`@turf/unkink-polygon`][unkink-polygon] testing & added `flattenEach` instead of using `flatten`.\n(PR https://github.com/Turfjs/turf/pull/889)\n- [`@turf/concave`][concave] refactoring, replacing [`@turf/union`][union] with `geojson-dissolve` to increase speed and added support to `null` geometries\n(PR https://github.com/Turfjs/turf/pull/907 - Contributor @stebogit @DenisCarriere)\n- Adds doc note on [`@turf/polygonize`][polygonize] about \"Edges must be correctly noded\"\n(PR https://github.com/Turfjs/turf/pull/898 - Contributor @stebogit @NickCis)\n- Adds support to foreign Members to [`@turf/clone`][clone]\n(PR https://github.com/Turfjs/turf/pull/904 - Contributor @DenisCarriere)\n- Extends support of any `GeoJSON` to [`@turf/simplify`][simplify]\n(PR https://github.com/Turfjs/turf/pull/903 - Contributor @DenisCarriere @stebogit)\n- Adds new `isNumber` function and improves type checking for few [`@turf/helpers`][helpers] methods\n(PR https://github.com/Turfjs/turf/pull/920 - Contributor @DenisCarriere @stebogit)\n- Adds throw errors to invalid `MultiPolygons` for [`@turf/simplify`][simplify]\n(PR https://github.com/Turfjs/turf/pull/922 - Contributor @DenisCarriere)\n\n\n## 🐛 Bug Fixes\n- Fixes [`@turf/bbox-clip`](bbox-clip) point intersection handling, adding sanity-checks the lineclip output\n(PR https://github.com/Turfjs/turf/pull/886)\n- Fixes [`@turf/line-split`][line-split] endpoint case handling applying [`@turf/truncate`][truncate] on `splitter`\n(PR https://github.com/Turfjs/turf/pull/892 and https://github.com/Turfjs/turf/pull/855 - Contributor @stebogit)\n- Fixes [`@turf/intersect`][intersect] throwing \"uncaught exception\", adding [`@turf/truncate`][truncate] to inputs and returning `Feature<null>` if no geometry\n(PR https://github.com/Turfjs/turf/pull/890 - Contributor @stebogit @vicvolk)\n- Fixes [`@turf/hex-grid`][hex-grid] not properly cloning the last ring vertex\n(PR https://github.com/Turfjs/turf/pull/897 - Contributor @stebogit @DenisCarriere)\n- Fixes [`@turf/boolean-disjoint`][boolean-disjoint] incorrect behaviour where a poly was completely contained within another poly\n(PR https://github.com/Turfjs/turf/pull/908 - Contributor @rowanwins)\n- Fixes [`@turf/simplify`][simplify] process pending on particular geometries, applying [`@turf/clean-coords`][clean-coords] to input.\n(PR https://github.com/Turfjs/turf/pull/903 - Contributor @stebogit @DenisCarriere)\n- Fixes `boolean` properties not being translated with [`@turf/clone`][clone]\n(PR https://github.com/Turfjs/turf/pull/909 - Contributor @DenisCarriere)\n- Fixes [`@turf/boolean-contains`][boolean-contains] incorrect output when checking two polygons\n(PR https://github.com/Turfjs/turf/pull/923 - Contributor @rowanwins @DenisCarriere)\n\n\nTwitter: <Tweet>\nCC: @Turfjs/ownership\n\n\n[point-to-line-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-to-line-distance\n[projection]: https://github.com/Turfjs/turf/tree/master/packages/turf-projection\n[boolean-within]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-within\n\n[helpers]: https://github.com/Turfjs/turf/tree/master/packages/turf-helpers\n[invariant]: https://github.com/Turfjs/turf/tree/master/packages/turf-invariant\n[meta]: https://github.com/Turfjs/turf/tree/master/packages/turf-meta\n[clusters]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters\n[isolines]: https://github.com/Turfjs/turf/tree/master/packages/turf-isolines\n[convex]: https://github.com/Turfjs/turf/tree/master/packages/turf-convex\n[within]: https://github.com/Turfjs/turf/tree/master/packages/turf-within\n[concave]: https://github.com/Turfjs/turf/tree/master/packages/turf-concave\n[difference]: https://github.com/Turfjs/turf/tree/master/packages/turf-difference\n[dissolve]: https://github.com/Turfjs/turf/tree/master/packages/turf-dissolve\n[collect]: https://github.com/Turfjs/turf/tree/master/packages/turf-collect\n[flip]: https://github.com/Turfjs/turf/tree/master/packages/turf-flip\n[simplify]: https://github.com/Turfjs/turf/tree/master/packages/turf-simplify\n[bezier]: https://github.com/Turfjs/turf/tree/master/packages/turf-bezier\n[tag]: https://github.com/Turfjs/turf/tree/master/packages/turf-tag\n[sample]: https://github.com/Turfjs/turf/tree/master/packages/turf-sample\n[envelope]: https://github.com/Turfjs/turf/tree/master/packages/turf-envelope\n[square]: https://github.com/Turfjs/turf/tree/master/packages/turf-square\n[circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-circle\n[midpoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-midpoint\n[buffer]: https://github.com/Turfjs/turf/tree/master/packages/turf-buffer\n[center]: https://github.com/Turfjs/turf/tree/master/packages/turf-center\n[center-of-mass]: https://github.com/Turfjs/turf/tree/master/packages/turf-center-of-mass\n[centroid]: https://github.com/Turfjs/turf/tree/master/packages/turf-centroid\n[combine]: https://github.com/Turfjs/turf/tree/master/packages/turf-combine\n[distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-distance\n[explode]: https://github.com/Turfjs/turf/tree/master/packages/turf-explode\n[bbox]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox\n[tesselate]: https://github.com/Turfjs/turf/tree/master/packages/turf-tesselate\n[bbox-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-polygon\n[inside]: https://github.com/Turfjs/turf/tree/master/packages/turf-inside\n[intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-intersect\n[nearest]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest\n[planepoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-planepoint\n[random]: https://github.com/Turfjs/turf/tree/master/packages/turf-random\n[tin]: https://github.com/Turfjs/turf/tree/master/packages/turf-tin\n[union]: https://github.com/Turfjs/turf/tree/master/packages/turf-union\n[bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-bearing\n[destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-destination\n[kinks]: https://github.com/Turfjs/turf/tree/master/packages/turf-kinks\n[point-on-surface]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-surface\n[area]: https://github.com/Turfjs/turf/tree/master/packages/turf-area\n[along]: https://github.com/Turfjs/turf/tree/master/packages/turf-along\n[line-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-distance\n[line-slice]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice\n[line-slice-along]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice-along\n[point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-line\n[point-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-grid\n[square-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-square-grid\n[triangle-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-triangle-grid\n[hex-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-hex-grid\n[idw]: https://github.com/Turfjs/turf/tree/master/packages/turf-idw\n[truncate]: https://github.com/Turfjs/turf/tree/master/packages/turf-truncate\n[flatten]: https://github.com/Turfjs/turf/tree/master/packages/turf-flatten\n[line-intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-intersect\n[mask]: https://github.com/Turfjs/turf/tree/master/packages/turf-mask\n[line-chunk]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-chunk\n[unkink-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-unkink-polygon\n[great-circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-great-circle\n[line-segment]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-segment\n[line-split]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-split\n[line-arc]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-arc\n[polygon-to-linestring]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-to-linestring\n[linestring-to-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-linestring-to-polygon\n[bbox-clip]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-clip\n[line-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-overlap\n[sector]: https://github.com/Turfjs/turf/tree/master/packages/turf-sector\n[rhumb-bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-bearing\n[rhumb-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-distance\n[rhumb-destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-destination\n[polygon-tangents]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-tangents\n[rewind]: https://github.com/Turfjs/turf/tree/master/packages/turf-rewind\n[isobands]: https://github.com/Turfjs/turf/tree/master/packages/turf-isobands\n[transform-rotate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-rotate\n[transform-scale]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-scale\n[transform-translate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-translate\n[line-offset]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-offset\n[polygonize]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygonize\n[boolean-disjoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-disjoint\n[boolean-contains]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-contains\n[boolean-crosses]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-crosses\n[boolean-clockwise]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-clockwise\n[boolean-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-overlap\n[boolean-point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-on-line\n[boolean-equal]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-equal\n[clone]: https://github.com/Turfjs/turf/tree/master/packages/turf-clone\n[clean-coords]: https://github.com/Turfjs/turf/tree/master/packages/turf-clean-coords\n[interpolate]: https://github.com/Turfjs/turf/tree/master/packages/turf-interpolate\n[clusters-dbscan]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-dbscan\n[clusters-kmeans]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-kmeans\n"
  },
  {
    "path": "releases/5.0.0.md",
    "content": "# New major release! Turf 5.0.0 🎉\n\nTurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/4?closed=1).\n\n## Contributors\n\n- @DenisCarriere\n- @rowanwins\n- @stebogit\n- @stevage\n- And MORE...\n\n## ⭐️ Major Updates\n\n- TurfJS now supports ES Modules ([Related PR's](https://github.com/Turfjs/turf/pulls?q=is%3Apr+modules+is%3Aclosed+label%3Aes-module))\n- Optional parameters are now defined as an `Object`.\n\n## 🚀 New Modules\n\n### [`@turf/voronoi`][voronoi]\nTakes a FeatureCollection of points, and a bounding box, and returns a FeatureCollection of Voronoi polygons.\n(PR https://github.com/Turfjs/turf/pull/1043 - Author @stevage)\n\n### [`@turf/shortest-path`][shortest-path]\nReturns the shortest path from start to end without colliding with any feature in obstacles\n(PR https://github.com/Turfjs/turf/pull/956 - Author @stebogit)\n\n### [`@turf/boolean-parallel`][boolean-parallel]\nBoolean-Parallel returns True if each segment of `line1` is parallel to the correspondent segment of `line2`\n(PR https://github.com/Turfjs/turf/pull/941 - Author @stebogit)\n\n### [`@turf/nearest-point-on-line`][nearest-point-on-line]\nTakes a {@link Point} and a {@link LineString} and calculates the closest Point on the (Multi)LineString.\n(PR https://github.com/Turfjs/turf/pull/939 - Author @stebogit)\n\n\n\n## 🏅 New Features/Enhancements\n- Updates [`@turf/unkink-polygon`][unkink-polygon] testing & added `flattenEach` instead of using `flatten`.\n(PR https://github.com/Turfjs/turf/pull/889)\n\n- Add multi-geomtry support to [`@turf/line-split`](line-split)\n(PR https://github.com/Turfjs/turf/pull/1078)\n\n- Improve [`@turf/meta`](meta) `lineEach` method to provide properties, id and bbox \n(PR https://github.com/Turfjs/turf/pull/1010)\n\n\n\n## 🐛 Bug Fixes\n- Fixes [`@turf/helpers`](helpers) earth radius variable \n(PR https://github.com/Turfjs/turf/pull/1012)\n\n- Fixes [`@turf/polygon-tangents`](polygon-tangents) bug \n(PR https://github.com/Turfjs/turf/pull/1058)\n\n- Fixes [`@turf/line-chunk`](line-chunk) bug when the number of segments is integer\n(PR https://github.com/Turfjs/turf/pull/1046)\n\n- Fixes `segmentEach` and `segmentReduce` methods in [`@turf/meta`](meta) to ensure something is returned \n(PR https://github.com/Turfjs/turf/pull/968)\n\n\n## ⚠️ Breaking Change\n\n- Optional parameters are now defined as an `Object`:\n\n**Before**\n```js\nvar from = [-75.343, 39.984];\nvar to = [-75.534, 39.123];\nvar units = 'miles';\nvar distance = turf.distance(from, to, units);\n```\n\n**After**\n```js\nvar from = [-75.343, 39.984];\nvar to = [-75.534, 39.123];\nvar options = {units: 'miles'};\nvar distance = turf.distance(from, to, options);\n```\n\n- Reworked `@turf/random` PR https://github.com/Turfjs/turf/issues/994\n- Deprecate `@turf/idw` Issue https://github.com/Turfjs/turf/issues/887\n- Reworked Grid modules `@turf/point-grid/hex/square/triangle` PR https://github.com/Turfjs/turf/pull/1029\n- Renamed Modules/Methods\n  - [x] `@turf/inside` => `@turf/boolean-point-in-polygon` https://github.com/Turfjs/turf/issues/860#issuecomment-317216235\n  - [x] `@turf/within` => `@turf/points-within-polygon` https://github.com/Turfjs/turf/issues/860#issuecomment-317216235\n  - [x] [`@turf/bezier`](https://github.com/Turfjs/turf/blob/master/packages/turf-bezier/index.js) => `@turf/bezier-spline` Issue https://github.com/Turfjs/turf/issues/661\n  - [x] [`@turf/nearest`](https://github.com/Turfjs/turf/blob/master/packages/turf-nearest/index.js) => `@turf/nearest-point` https://github.com/Turfjs/turf/pull/858#issuecomment-317197295\n  - [x] [`@turf/point-on-line`](https://github.com/Turfjs/turf/blob/master/packages/turf-point-on-line/index.js) => `@turf/nearest-point-on-line` https://github.com/Turfjs/turf/pull/858#issuecomment-317197295\n  - [x] [`@turf/lineDistance`](https://github.com/Turfjs/turf/blob/master/packages/turf-line-distance/index.js) => `@turf/length` https://github.com/Turfjs/turf/issues/860#issuecomment-317229869\n  - [x] [`@turf/helpers`](https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/index.js)\n    - [x] `radians2degrees` => `radiansToDegrees`\n    - [x] `degrees2radians` => `degreesToRadians`\n    - [x] `distanceToDegrees` => `lengthToDegrees`\n    - [x] `distanceToRadians` => `lengthToRadians`\n    - [x] `radiansToDistance` => `radiansToLength`\n    - [x] `bearingToAngle` => `bearingToAzimuth`\n    - [x] `convertDistance` => `convertLength`\n\nTwitter: <Tweet>\nCC: @Turfjs/ownership\n\n\n[along]: https://github.com/Turfjs/turf/tree/master/packages/turf-along\n[area]: https://github.com/Turfjs/turf/tree/master/packages/turf-area\n[bbox]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox\n[bbox-clip]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-clip\n[bbox-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-polygon\n[bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-bearing\n[bezier-spline]: https://github.com/Turfjs/turf/tree/master/packages/turf-bezier-spline\n[boolean-clockwise]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-clockwise\n[boolean-contains]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-contains\n[boolean-crosses]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-crosses\n[boolean-disjoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-disjoint\n[boolean-equal]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-equal\n[boolean-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-overlap\n[boolean-parallel]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-parallel\n[boolean-point-in-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-in-polygon\n[boolean-point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-on-line\n[boolean-within]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-within\n[buffer]: https://github.com/Turfjs/turf/tree/master/packages/turf-buffer\n[center]: https://github.com/Turfjs/turf/tree/master/packages/turf-center\n[center-of-mass]: https://github.com/Turfjs/turf/tree/master/packages/turf-center-of-mass\n[centroid]: https://github.com/Turfjs/turf/tree/master/packages/turf-centroid\n[circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-circle\n[clean-coords]: https://github.com/Turfjs/turf/tree/master/packages/turf-clean-coords\n[clone]: https://github.com/Turfjs/turf/tree/master/packages/turf-clone\n[clusters]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters\n[clusters-dbscan]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-dbscan\n[clusters-kmeans]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-kmeans\n[collect]: https://github.com/Turfjs/turf/tree/master/packages/turf-collect\n[combine]: https://github.com/Turfjs/turf/tree/master/packages/turf-combine\n[concave]: https://github.com/Turfjs/turf/tree/master/packages/turf-concave\n[convex]: https://github.com/Turfjs/turf/tree/master/packages/turf-convex\n[destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-destination\n[difference]: https://github.com/Turfjs/turf/tree/master/packages/turf-difference\n[dissolve]: https://github.com/Turfjs/turf/tree/master/packages/turf-dissolve\n[distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-distance\n[envelope]: https://github.com/Turfjs/turf/tree/master/packages/turf-envelope\n[explode]: https://github.com/Turfjs/turf/tree/master/packages/turf-explode\n[flatten]: https://github.com/Turfjs/turf/tree/master/packages/turf-flatten\n[flip]: https://github.com/Turfjs/turf/tree/master/packages/turf-flip\n[great-circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-great-circle\n[helpers]: https://github.com/Turfjs/turf/tree/master/packages/turf-helpers\n[hex-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-hex-grid\n[interpolate]: https://github.com/Turfjs/turf/tree/master/packages/turf-interpolate\n[intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-intersect\n[invariant]: https://github.com/Turfjs/turf/tree/master/packages/turf-invariant\n[isobands]: https://github.com/Turfjs/turf/tree/master/packages/turf-isobands\n[isolines]: https://github.com/Turfjs/turf/tree/master/packages/turf-isolines\n[kinks]: https://github.com/Turfjs/turf/tree/master/packages/turf-kinks\n[length]: https://github.com/Turfjs/turf/tree/master/packages/turf-length\n[line-arc]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-arc\n[line-chunk]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-chunk\n[line-intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-intersect\n[line-offset]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-offset\n[line-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-overlap\n[line-segment]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-segment\n[line-slice]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice\n[line-slice-along]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice-along\n[line-split]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-split\n[line-to-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-to-polygon\n[mask]: https://github.com/Turfjs/turf/tree/master/packages/turf-mask\n[meta]: https://github.com/Turfjs/turf/tree/master/packages/turf-meta\n[midpoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-midpoint\n[nearest-point]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point\n[nearest-point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point-on-line\n[nearest-point-to-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point-to-line\n[planepoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-planepoint\n[point-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-grid\n[point-on-feature]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-feature\n[point-to-line-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-to-line-distance\n[points-within-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-points-within-polygon\n[polygon-tangents]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-tangents\n[polygon-to-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-to-line\n[polygonize]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygonize\n[projection]: https://github.com/Turfjs/turf/tree/master/packages/turf-projection\n[random]: https://github.com/Turfjs/turf/tree/master/packages/turf-random\n[rewind]: https://github.com/Turfjs/turf/tree/master/packages/turf-rewind\n[rhumb-bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-bearing\n[rhumb-destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-destination\n[rhumb-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-distance\n[sample]: https://github.com/Turfjs/turf/tree/master/packages/turf-sample\n[sector]: https://github.com/Turfjs/turf/tree/master/packages/turf-sector\n[shortest-path]: https://github.com/Turfjs/turf/tree/master/packages/turf-shortest-path\n[simplify]: https://github.com/Turfjs/turf/tree/master/packages/turf-simplify\n[square]: https://github.com/Turfjs/turf/tree/master/packages/turf-square\n[square-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-square-grid\n[tag]: https://github.com/Turfjs/turf/tree/master/packages/turf-tag\n[tesselate]: https://github.com/Turfjs/turf/tree/master/packages/turf-tesselate\n[tin]: https://github.com/Turfjs/turf/tree/master/packages/turf-tin\n[transform-rotate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-rotate\n[transform-scale]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-scale\n[transform-translate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-translate\n[triangle-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-triangle-grid\n[truncate]: https://github.com/Turfjs/turf/tree/master/packages/turf-truncate\n[union]: https://github.com/Turfjs/turf/tree/master/packages/turf-union\n[unkink-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-unkink-polygon\n[voronoi]: https://github.com/Turfjs/turf/tree/master/packages/turf-voronoi\n"
  },
  {
    "path": "releases/5.1.0.md",
    "content": "# New minor release! Turf 5.1.0 🎉\n\nTurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/13?closed=1).\n\n## Contributors\n\n- @muziejus 🥇\n- @rowanwins 🥇\n- @DenisCarriere\n- @tmcw\n- @stebogit\n- @woutervh-\n- @dwaggenspack\n\n### Crowdsourced Funding\n\n#### Why we're looking for support\n\nTurfJS is a community-driven project maintained by a small group of core contributors who work on the project in their spare time. Time is spent supporting users, improving documentation, fixing bugs as well as creating new modules. Your funding will directly go to development costs, marketing campaigns, promotional events & any other financial costs to operate & maintain TurfJS.\n\nIn particular, we're looking for corporate sponsors who use TurfJS in revenue-generating ways, either by creating applications for clients, or through use in an app used by customers. Of course individuals are welcome to support us as well if TurfJS has helped you :)\n\n### https://opencollective.com/turf\n\n### Help TurfJS by becoming a **Backer** for only 2$/mo.\n\n## 🚀 New Modules\n\n### [`@turf/center-median`][center-median]\n\nTakes a FeatureCollection of points and calculates the median center, algorithimically. The median center is understood as the point that is requires the least total travel from all other points.\n\n(PR https://github.com/Turfjs/turf/pull/1122 - Author @muziejus)\n\n\n### [`@turf/center-mean`][center-mean]\n\nTakes a Feature or FeatureCollection and returns the mean center. Can be weighted.\n\n(PR https://github.com/Turfjs/turf/pull/1089 - Author @muziejus)\n\n![artboard 1](https://user-images.githubusercontent.com/827683/33585310-9596d15e-d931-11e7-901e-18f40a2b8cd7.png)\n\n\n### [`@turf/standard-deviational-ellipse`][standard-deviational-ellipse]\n\nTakes a FeatureCollection and returns a standard deviational ellipse, also known as a “directional distribution.” The standard deviational ellipse aims to show the direction and the distribution of a dataset by drawing an ellipse that contains about one standard deviation’s worth (~ 70%) of the data.\n\nThis module mirrors the functionality of Directional Distribution in ArcGIS and the QGIS Standard Deviational Ellipse Plugin\n\n(PR https://github.com/Turfjs/turf/pull/1120 - Author @muziejus)\n\n<img width=\"348\" alt=\"screen shot 2017-11-24 at 23 41 13\" src=\"https://user-images.githubusercontent.com/827683/33227583-c21d068c-d173-11e7-8a62-698930fe42c1.png\">\n\n### [`@turf/ellipse`][ellipse]\n\nTakes a Point and calculates the ellipse polygon given two semi-axes expressed in variable units and steps for precision.\n\n(PR https://github.com/Turfjs/turf/pull/1087 - Author @muziejus)\n\n![ellipse](https://user-images.githubusercontent.com/12717225/32702074-d8ea0708-c795-11e7-9d0a-5d8fa3e03987.png)\n\n## 📖 Documentation\n\n- TurfJS's website has a fresh new look! 🚀 http://turfjs.org (Author @rowanwins PR https://github.com/Turfjs/turf-www/pull/127)\n  - This uses nuxt to generate the pages as static html which should be better for search engines\n  - The docs are now all on a single page\n  - Built sizes are much better than the current\n  - The map moves to a module when its description comes into view, I think this functions reasonably nicely.\n\n## 🏅 New Features/Enhancements\n\n- Add points/lineStrings/polygons to [@turf/helpers][helpers] (https://github.com/Turfjs/turf/pull/1108)\n- Internalize `@types/geojson` (https://github.com/Turfjs/turf/pull/1138)\n- Add extra geometry support to [@turf/points-within-polygon][points-within-polygon] (https://github.com/Turfjs/turf/pull/1117)\n- ES Modules now work in the latest version of Chrome!\n\n```html\n<script type='module'>\n  import {point} from \"https://unpkg.com/@turf/helpers?module\"\n\n  console.log(point([100, 0]));\n</script>\n```\n\n## 🐛 Bug Fixes\n\n- Prevent Window Freeze when using [@turf/simplify][simplify] (https://github.com/Turfjs/turf/pull/1145)\n- Take care of zero handling for weight in [@turf/center-mean][center-mean] (https://github.com/Turfjs/turf/pull/1127)\n- Add input validation to [@turf/bbox-polygon][bbox-polygon] (https://github.com/Turfjs/turf/pull/1121)\n- Use rhumb lines to calculate [@turf/ellipse][ellipse] axes, except when units are \"degrees\" (https://github.com/Turfjs/turf/pull/1115)\n- [coordEach][meta] indexing bug (https://github.com/Turfjs/turf/issues/1092)\n- Add null handling for property cloning on @turf/clone. Fixes issue #1095 (https://github.com/Turfjs/turf/pull/1096)\n\nTwitter: https://twitter.com/DenisCarriere/status/938895355541778432\nCC: @Turfjs/ownership\n\n[along]: https://github.com/Turfjs/turf/tree/master/packages/turf-along\n[area]: https://github.com/Turfjs/turf/tree/master/packages/turf-area\n[bbox]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox\n[bbox-clip]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-clip\n[bbox-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-polygon\n[bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-bearing\n[bezier-spline]: https://github.com/Turfjs/turf/tree/master/packages/turf-bezier-spline\n[boolean-clockwise]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-clockwise\n[boolean-contains]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-contains\n[boolean-crosses]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-crosses\n[boolean-disjoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-disjoint\n[boolean-equal]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-equal\n[boolean-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-overlap\n[boolean-parallel]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-parallel\n[boolean-point-in-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-in-polygon\n[boolean-point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-on-line\n[boolean-within]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-within\n[buffer]: https://github.com/Turfjs/turf/tree/master/packages/turf-buffer\n[center]: https://github.com/Turfjs/turf/tree/master/packages/turf-center\n[center-mean]: https://github.com/Turfjs/turf/tree/master/packages/turf-center-mean\n[center-median]: https://github.com/Turfjs/turf/tree/master/packages/turf-center-median\n[center-of-mass]: https://github.com/Turfjs/turf/tree/master/packages/turf-center-of-mass\n[centroid]: https://github.com/Turfjs/turf/tree/master/packages/turf-centroid\n[circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-circle\n[clean-coords]: https://github.com/Turfjs/turf/tree/master/packages/turf-clean-coords\n[clone]: https://github.com/Turfjs/turf/tree/master/packages/turf-clone\n[clusters]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters\n[clusters-dbscan]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-dbscan\n[clusters-kmeans]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-kmeans\n[collect]: https://github.com/Turfjs/turf/tree/master/packages/turf-collect\n[combine]: https://github.com/Turfjs/turf/tree/master/packages/turf-combine\n[concave]: https://github.com/Turfjs/turf/tree/master/packages/turf-concave\n[convex]: https://github.com/Turfjs/turf/tree/master/packages/turf-convex\n[destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-destination\n[difference]: https://github.com/Turfjs/turf/tree/master/packages/turf-difference\n[dissolve]: https://github.com/Turfjs/turf/tree/master/packages/turf-dissolve\n[distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-distance\n[ellipse]: https://github.com/Turfjs/turf/tree/master/packages/turf-ellipse\n[envelope]: https://github.com/Turfjs/turf/tree/master/packages/turf-envelope\n[explode]: https://github.com/Turfjs/turf/tree/master/packages/turf-explode\n[flatten]: https://github.com/Turfjs/turf/tree/master/packages/turf-flatten\n[flip]: https://github.com/Turfjs/turf/tree/master/packages/turf-flip\n[great-circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-great-circle\n[helpers]: https://github.com/Turfjs/turf/tree/master/packages/turf-helpers\n[hex-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-hex-grid\n[interpolate]: https://github.com/Turfjs/turf/tree/master/packages/turf-interpolate\n[intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-intersect\n[invariant]: https://github.com/Turfjs/turf/tree/master/packages/turf-invariant\n[isobands]: https://github.com/Turfjs/turf/tree/master/packages/turf-isobands\n[isolines]: https://github.com/Turfjs/turf/tree/master/packages/turf-isolines\n[kinks]: https://github.com/Turfjs/turf/tree/master/packages/turf-kinks\n[length]: https://github.com/Turfjs/turf/tree/master/packages/turf-length\n[line-arc]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-arc\n[line-chunk]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-chunk\n[line-intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-intersect\n[line-offset]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-offset\n[line-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-overlap\n[line-segment]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-segment\n[line-slice]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice\n[line-slice-along]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice-along\n[line-split]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-split\n[line-to-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-to-polygon\n[mask]: https://github.com/Turfjs/turf/tree/master/packages/turf-mask\n[meta]: https://github.com/Turfjs/turf/tree/master/packages/turf-meta\n[midpoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-midpoint\n[nearest-point]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point\n[nearest-point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point-on-line\n[nearest-point-to-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point-to-line\n[planepoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-planepoint\n[point-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-grid\n[point-on-feature]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-feature\n[point-to-line-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-to-line-distance\n[points-within-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-points-within-polygon\n[polygon-tangents]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-tangents\n[polygon-to-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-to-line\n[polygonize]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygonize\n[projection]: https://github.com/Turfjs/turf/tree/master/packages/turf-projection\n[random]: https://github.com/Turfjs/turf/tree/master/packages/turf-random\n[rewind]: https://github.com/Turfjs/turf/tree/master/packages/turf-rewind\n[rhumb-bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-bearing\n[rhumb-destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-destination\n[rhumb-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-distance\n[sample]: https://github.com/Turfjs/turf/tree/master/packages/turf-sample\n[sector]: https://github.com/Turfjs/turf/tree/master/packages/turf-sector\n[shortest-path]: https://github.com/Turfjs/turf/tree/master/packages/turf-shortest-path\n[simplify]: https://github.com/Turfjs/turf/tree/master/packages/turf-simplify\n[square]: https://github.com/Turfjs/turf/tree/master/packages/turf-square\n[square-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-square-grid\n[standard-deviational-ellipse]: https://github.com/Turfjs/turf/tree/master/packages/turf-standard-deviational-ellipse\n[tag]: https://github.com/Turfjs/turf/tree/master/packages/turf-tag\n[tesselate]: https://github.com/Turfjs/turf/tree/master/packages/turf-tesselate\n[tin]: https://github.com/Turfjs/turf/tree/master/packages/turf-tin\n[transform-rotate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-rotate\n[transform-scale]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-scale\n[transform-translate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-translate\n[triangle-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-triangle-grid\n[truncate]: https://github.com/Turfjs/turf/tree/master/packages/turf-truncate\n[union]: https://github.com/Turfjs/turf/tree/master/packages/turf-union\n[unkink-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-unkink-polygon\n[voronoi]: https://github.com/Turfjs/turf/tree/master/packages/turf-voronoi\n"
  },
  {
    "path": "releases/5.2.0.md",
    "content": "# New minor release! Turf 5.2.0 🎉\n\nTurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/15?closed=1).\n\n## Contributors\n\n- @Spown\n- @DenisCarriere\n- @rowanwins\n- @stebogit\n- @woutervh-\n- @muziejus\n- And more...\n\n### Crowdsourced Funding\n\n#### Why we're looking for support\n\nTurfJS is a community-driven project maintained by a small group of core contributors who work on the project in their spare time. Time is spent supporting users, improving documentation, fixing bugs as well as creating new modules. Your funding will directly go to development costs, marketing campaigns, promotional events & any other financial costs to operate & maintain TurfJS.\n\nIn particular, we're looking for corporate sponsors who use TurfJS in revenue-generating ways, either by creating applications for clients, or through use in an app used by customers. Of course individuals are welcome to support us as well if TurfJS has helped you :)\n\n### https://opencollective.com/turf\n\n### Help TurfJS by becoming a **Backer** for only 2$/mo.\n\n## 🚀 New Modules\n\n### [`@turf/angle`][angle]\n\nFinds the Interior or Explementary angle between 3 points.\n\n(PR https://github.com/Turfjs/turf/pull/1192 & https://github.com/Turfjs/turf/pull/1173 - Authors @DenisCarriere & @stebogit)\n\n## Obtuse Angle\n\n- **Red**: Interior Angle\n- **Blue**: Explementary Angle\n\n![image](https://user-images.githubusercontent.com/550895/34275070-a6565d26-e669-11e7-88ee-d6c44c5cc517.png)\n\n## Acute Angle\n\n- **Red**: Interior Angle\n- **Blue**: Explementary Angle\n\n![image](https://user-images.githubusercontent.com/550895/34275145-f30b2930-e669-11e7-97ce-d6cbbacabfed.png)\n\n## 📖 Documentation\n\n-\n\n## 🏅 New Features/Enhancements\n\n-\n\n## 🐛 Bug Fixes\n\n-\n\nTwitter:\nCC: @Turfjs/ownership\n\n[along]: https://github.com/Turfjs/turf/tree/master/packages/turf-along\n[angle]: https://github.com/Turfjs/turf/tree/master/packages/turf-angle\n[area]: https://github.com/Turfjs/turf/tree/master/packages/turf-area\n[bbox]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox\n[bbox-clip]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-clip\n[bbox-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-polygon\n[bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-bearing\n[bezier-spline]: https://github.com/Turfjs/turf/tree/master/packages/turf-bezier-spline\n[boolean-clockwise]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-clockwise\n[boolean-contains]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-contains\n[boolean-crosses]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-crosses\n[boolean-disjoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-disjoint\n[boolean-equal]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-equal\n[boolean-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-overlap\n[boolean-parallel]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-parallel\n[boolean-point-in-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-in-polygon\n[boolean-point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-on-line\n[boolean-within]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-within\n[buffer]: https://github.com/Turfjs/turf/tree/master/packages/turf-buffer\n[center]: https://github.com/Turfjs/turf/tree/master/packages/turf-center\n[center-mean]: https://github.com/Turfjs/turf/tree/master/packages/turf-center-mean\n[center-median]: https://github.com/Turfjs/turf/tree/master/packages/turf-center-median\n[center-of-mass]: https://github.com/Turfjs/turf/tree/master/packages/turf-center-of-mass\n[centroid]: https://github.com/Turfjs/turf/tree/master/packages/turf-centroid\n[circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-circle\n[clean-coords]: https://github.com/Turfjs/turf/tree/master/packages/turf-clean-coords\n[clone]: https://github.com/Turfjs/turf/tree/master/packages/turf-clone\n[clusters]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters\n[clusters-dbscan]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-dbscan\n[clusters-kmeans]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-kmeans\n[collect]: https://github.com/Turfjs/turf/tree/master/packages/turf-collect\n[combine]: https://github.com/Turfjs/turf/tree/master/packages/turf-combine\n[concave]: https://github.com/Turfjs/turf/tree/master/packages/turf-concave\n[convex]: https://github.com/Turfjs/turf/tree/master/packages/turf-convex\n[destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-destination\n[difference]: https://github.com/Turfjs/turf/tree/master/packages/turf-difference\n[dissolve]: https://github.com/Turfjs/turf/tree/master/packages/turf-dissolve\n[distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-distance\n[ellipse]: https://github.com/Turfjs/turf/tree/master/packages/turf-ellipse\n[envelope]: https://github.com/Turfjs/turf/tree/master/packages/turf-envelope\n[explode]: https://github.com/Turfjs/turf/tree/master/packages/turf-explode\n[flatten]: https://github.com/Turfjs/turf/tree/master/packages/turf-flatten\n[flip]: https://github.com/Turfjs/turf/tree/master/packages/turf-flip\n[great-circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-great-circle\n[helpers]: https://github.com/Turfjs/turf/tree/master/packages/turf-helpers\n[hex-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-hex-grid\n[interpolate]: https://github.com/Turfjs/turf/tree/master/packages/turf-interpolate\n[intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-intersect\n[invariant]: https://github.com/Turfjs/turf/tree/master/packages/turf-invariant\n[isobands]: https://github.com/Turfjs/turf/tree/master/packages/turf-isobands\n[isolines]: https://github.com/Turfjs/turf/tree/master/packages/turf-isolines\n[kinks]: https://github.com/Turfjs/turf/tree/master/packages/turf-kinks\n[length]: https://github.com/Turfjs/turf/tree/master/packages/turf-length\n[line-arc]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-arc\n[line-chunk]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-chunk\n[line-intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-intersect\n[line-offset]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-offset\n[line-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-overlap\n[line-segment]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-segment\n[line-slice]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice\n[line-slice-along]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice-along\n[line-split]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-split\n[line-to-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-to-polygon\n[mask]: https://github.com/Turfjs/turf/tree/master/packages/turf-mask\n[meta]: https://github.com/Turfjs/turf/tree/master/packages/turf-meta\n[midpoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-midpoint\n[nearest-point]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point\n[nearest-point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point-on-line\n[nearest-point-to-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point-to-line\n[planepoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-planepoint\n[point-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-grid\n[point-on-feature]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-feature\n[point-to-line-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-to-line-distance\n[points-within-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-points-within-polygon\n[polygon-tangents]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-tangents\n[polygon-to-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-to-line\n[polygonize]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygonize\n[projection]: https://github.com/Turfjs/turf/tree/master/packages/turf-projection\n[random]: https://github.com/Turfjs/turf/tree/master/packages/turf-random\n[rewind]: https://github.com/Turfjs/turf/tree/master/packages/turf-rewind\n[rhumb-bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-bearing\n[rhumb-destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-destination\n[rhumb-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-distance\n[sample]: https://github.com/Turfjs/turf/tree/master/packages/turf-sample\n[sector]: https://github.com/Turfjs/turf/tree/master/packages/turf-sector\n[shortest-path]: https://github.com/Turfjs/turf/tree/master/packages/turf-shortest-path\n[simplify]: https://github.com/Turfjs/turf/tree/master/packages/turf-simplify\n[square]: https://github.com/Turfjs/turf/tree/master/packages/turf-square\n[square-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-square-grid\n[standard-deviational-ellipse]: https://github.com/Turfjs/turf/tree/master/packages/turf-standard-deviational-ellipse\n[tag]: https://github.com/Turfjs/turf/tree/master/packages/turf-tag\n[tesselate]: https://github.com/Turfjs/turf/tree/master/packages/turf-tesselate\n[tin]: https://github.com/Turfjs/turf/tree/master/packages/turf-tin\n[transform-rotate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-rotate\n[transform-scale]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-scale\n[transform-translate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-translate\n[triangle-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-triangle-grid\n[truncate]: https://github.com/Turfjs/turf/tree/master/packages/turf-truncate\n[union]: https://github.com/Turfjs/turf/tree/master/packages/turf-union\n[unkink-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-unkink-polygon\n[voronoi]: https://github.com/Turfjs/turf/tree/master/packages/turf-voronoi\n"
  },
  {
    "path": "scripts/check-dependencies.js",
    "content": "// Check dependencies to figure out which ones would require transpilation to support ES5\n// This is used to create the list of packages that require transpilation when using @turf/* packages,\n// which is documented in the root README.md file\n\nvar dependencyTree = require(\"dependency-tree\");\nvar acorn = require(\"acorn\");\nvar fs = require(\"fs\");\n\nconst acornOpts = {\n  ecmaVersion: 5,\n  silent: true,\n};\n\n// from @turf/turf's cjs root, spider all of the .js dependencies\nvar files = dependencyTree\n  .toList({\n    filename: \"packages/turf/dist/js/index.js\",\n    directory: __dirname,\n  })\n  .filter((file) => {\n    // filter to only include files that are NOT es5 compliant already\n    const source = fs.readFileSync(file, \"utf8\");\n    try {\n      acorn.parse(source, acornOpts);\n      return false;\n    } catch (e) {\n      return true;\n    }\n  });\n\n// same as above, but run through the esm files instead, since they can be different\nacornOpts.sourceType = \"module\";\nvar files2 = dependencyTree\n  .toList({\n    filename: \"packages/turf/dist/es/index.js\",\n    directory: __dirname,\n    nodeModulesConfig: {\n      entry: \"module\",\n    },\n  })\n  .filter((file) => {\n    // again, only keep the files that aren't already es5\n    const source = fs.readFileSync(file, \"utf8\");\n    try {\n      acorn.parse(source, acornOpts);\n      return false;\n    } catch (e) {\n      return true;\n    }\n  });\n\n// take the files from the steps above and transform them into their package name\n// filter out the ones that are @turf/* since we're just going to claim all of them\n// as needing transpilation\nvar needsTranspile = Array.from(new Set([...files, ...files2]))\n  .map((file) => {\n    const match = file.match(/node_modules(.*)$/);\n    const partial = match[1].substring(1);\n    if (partial.startsWith(\"@\")) {\n      return partial.match(/^([^/]+\\/[^/]+)/)[1];\n    } else {\n      return partial.match(/^([^/]+)/)[1];\n    }\n  })\n  .filter((package) => !package.startsWith(\"@turf/\"));\n\n// get the unique list of modules and then add @turf/* to the front of the list\nvar simpleNeedsTranspile = Array.from(new Set(needsTranspile));\nsimpleNeedsTranspile.unshift(\"@turf/*\");\n\n// output the list of modules that need to be transpiled\nconsole.log(simpleNeedsTranspile);\n"
  },
  {
    "path": "scripts/generate-readmes.mts",
    "content": "#!/usr/bin/env node\n\nimport path from \"path\";\nimport { readdir, readFile, writeFile } from \"fs/promises\";\nimport { parse as yamlParse } from \"yaml\";\nimport * as documentation from \"documentation\";\nimport { existsSync } from \"fs\";\n\n// Template for README Markdown\nconst postfix = await readFile(\n  path.join(process.cwd(), \"scripts/postfix.md\"),\n  \"utf8\"\n);\n\nconst paths = yamlParse(\n  await readFile(path.join(process.cwd(), \"documentation.yml\"), \"utf8\")\n).paths;\n\nconst packagesPath = path.join(process.cwd(), \"packages\");\nfor (const dir of await readdir(packagesPath)) {\n  if (dir === \"turf\") {\n    continue;\n  }\n\n  const packagePath = path.join(packagesPath, dir, \"package.json\");\n  const directory = path.parse(packagePath).dir;\n  let indexPath = path.join(directory, \"index.js\");\n  const pckg = JSON.parse(await readFile(packagePath, \"utf-8\"));\n  const name = pckg.name;\n\n  const diagramsPath = path.join(directory, \"diagrams\");\n  const images = existsSync(diagramsPath)\n    ? (await readdir(diagramsPath)).filter((file) =>\n        /\\.(jpg|jpeg|png|gif)$/i.test(path.extname(file))\n      )\n    : [];\n\n  // some of the packages are typescript instead\n  if (!existsSync(indexPath)) {\n    indexPath = path.join(directory, \"index.ts\");\n  }\n\n  // Build Documentation\n  let res = await documentation.build(indexPath, {\n    shallow: true,\n    external: [],\n  });\n\n  if (res === undefined) {\n    console.warn(`Failed to build docs for ${packagePath}`);\n    continue;\n  }\n\n  console.log(\"Building Docs: \" + name);\n\n  // Workaround to exclude @deprecated tags from docs\n  // See https://github.com/documentationjs/documentation/issues/1596\n  res = res.filter((item: any) =>\n    item.tags.every((tag: any) => tag.title !== \"deprecated\")\n  );\n\n  // Format Markdown\n  let markdown = await documentation.formats.md(res, { paths });\n  markdown = `# ${name}\\n\\n${markdown}${postfix.replace(/{module}/, name)}`;\n  if (images.length) {\n    markdown +=\n      \"\\n\\n### Diagrams\\n\\n\" +\n      images\n        .map((img) => `![${path.parse(img).name}](diagrams/${img})`)\n        .join(\"\\n\");\n  }\n\n  await writeFile(path.join(directory, \"README.md\"), markdown);\n}\n"
  },
  {
    "path": "scripts/postfix.md",
    "content": "\n<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run \"yarn docs\" from the root of the turf project. -->\n\n---\n\nThis module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues.\n\n### Installation\n\nInstall this single module individually:\n\n```sh\n$ npm install {module}\n```\n\nOr install the all-encompassing @turf/turf module that includes all modules as functions:\n\n```sh\n$ npm install @turf/turf\n```\n"
  },
  {
    "path": "tsconfig.shared.json",
    "content": "{\n  \"compilerOptions\": {\n    \"target\": \"es2017\",\n    \"module\": \"node16\",\n    \"declaration\": true,\n    \"esModuleInterop\": true,\n    \"strict\": true,\n    \"moduleResolution\": \"node16\",\n    \"importHelpers\": true,\n    \"skipLibCheck\": true,\n    \"erasableSyntaxOnly\": true\n  }\n}\n"
  },
  {
    "path": "tsup.config.ts",
    "content": "import { defineConfig, type Options } from \"tsup\";\n\nconst baseOptions: Options = {\n  clean: true,\n  dts: true,\n  entry: [\"index.?s\"], // while we have a mix of TS and JS packages\n  minify: false,\n  skipNodeModulesBundle: true,\n  sourcemap: true,\n  target: \"es2017\",\n  tsconfig: \"./tsconfig.json\",\n  // treeshake: true, causes \"chunk.default\" warning, breaks CJS exports?\n  cjsInterop: true,\n  splitting: true,\n};\n\nexport default [\n  defineConfig({\n    ...baseOptions,\n    outDir: \"dist/cjs\",\n    format: \"cjs\",\n  }),\n  defineConfig({\n    ...baseOptions,\n    outDir: \"dist/esm\",\n    format: \"esm\",\n  }),\n];\n"
  }
]